From f87a8b6eb7710ce4f86c3a35dfbec3649bd089f9 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Mon, 1 Jan 2018 19:56:07 +0100 Subject: [PATCH 01/43] Changed from UDP to HTTP Implemented access point, station mode and basic web configuration page Actual lighting control is completely broken --- .gitignore | 7 +- DEVELOPING.md | 57 + README.md | 17 + Stairs.sublime-project | 18 +- WIRING.md | 4 + build.ps1 | 3 - case/StairCase.scad | 97 - devserver.js | 60 + docs/protocol.md | 170 -- gulp-cppstringify.js | 168 ++ gulpfile.js | 244 ++ package.json | 40 + platformio.ini | 8 +- src/assets/css.h | 111 + src/assets/html.h | 59 + src/assets/images.h | 32 + src/assets/js.h | 1248 ++++++++ src/assets/version.h | 14 + src/charproperties.cpp | 26 + src/charproperties.h | 18 + src/config.h | 52 +- src/credentials.example.h | 3 - src/debug.cpp | 17 + src/debug.h | 24 + src/global.cpp | 15 + src/global.h | 21 + src/main.cpp | 232 +- src/modes/alternate.cpp | 27 - src/modes/alternate.h | 33 - src/modes/base.h | 32 - src/modes/custom.cpp | 29 - src/modes/custom.h | 21 - src/modes/slide.h | 15 - src/modes/static.cpp | 52 - src/modes/static.h | 45 - src/server/api.cpp | 101 + src/server/api.h | 13 + src/server/static.cpp | 35 + src/server/static.h | 14 + src/settings/connection.cpp | 149 + src/settings/connection.h | 73 + src/stairs.cpp | 13 +- src/stairs.h | 4 +- updateversion.ps1 | 23 - upload.ps1 | 2 - web/.bowerrc | 3 - web/app.js | 380 ++- web/bower.json | 26 - web/client.js | 342 --- web/dist/bundle.css | 1 + web/dist/bundle.js | 1 + web/gulpfile.js | 96 - web/index.html | 124 + web/lang.js | 127 + web/logo.ai | 333 ++ web/logo.png | Bin 0 -> 462 bytes web/package.json | 31 - web/protocol.js | 24 - web/site.scss | 222 ++ web/static/assets/dist/appstart.js | 1 - web/static/assets/dist/bundle.css | 1 - .../assets/dist/components/page-firmware.html | 26 - .../assets/dist/components/page-firmware.js | 1 - .../assets/dist/components/page-home.html | 1 - .../assets/dist/components/page-home.js | 1 - .../assets/dist/components/page-mode.html | 71 - .../assets/dist/components/page-mode.js | 1 - .../assets/dist/components/page-settings.html | 23 - .../assets/dist/components/page-settings.js | 1 - web/static/assets/dist/debug.js | 1 - .../assets/dist/font-awesome/HELP-US-OUT.txt | 7 - .../dist/font-awesome/css/font-awesome.css | 2337 -------------- .../font-awesome/css/font-awesome.min.css | 4 - .../dist/font-awesome/fonts/FontAwesome.otf | Bin 134808 -> 0 bytes .../fonts/fontawesome-webfont.eot | Bin 165742 -> 0 bytes .../fonts/fontawesome-webfont.svg | 2671 ----------------- .../fonts/fontawesome-webfont.ttf | Bin 165548 -> 0 bytes .../fonts/fontawesome-webfont.woff | Bin 98024 -> 0 bytes .../fonts/fontawesome-webfont.woff2 | Bin 77160 -> 0 bytes .../dist/font-awesome/less/animated.less | 34 - .../font-awesome/less/bordered-pulled.less | 25 - .../assets/dist/font-awesome/less/core.less | 12 - .../dist/font-awesome/less/fixed-width.less | 6 - .../dist/font-awesome/less/font-awesome.less | 18 - .../assets/dist/font-awesome/less/icons.less | 789 ----- .../assets/dist/font-awesome/less/larger.less | 13 - .../assets/dist/font-awesome/less/list.less | 19 - .../assets/dist/font-awesome/less/mixins.less | 60 - .../assets/dist/font-awesome/less/path.less | 15 - .../font-awesome/less/rotated-flipped.less | 20 - .../dist/font-awesome/less/screen-reader.less | 5 - .../dist/font-awesome/less/stacked.less | 20 - .../dist/font-awesome/less/variables.less | 800 ----- .../dist/font-awesome/scss/_animated.scss | 34 - .../font-awesome/scss/_bordered-pulled.scss | 25 - .../assets/dist/font-awesome/scss/_core.scss | 12 - .../dist/font-awesome/scss/_fixed-width.scss | 6 - .../assets/dist/font-awesome/scss/_icons.scss | 789 ----- .../dist/font-awesome/scss/_larger.scss | 13 - .../assets/dist/font-awesome/scss/_list.scss | 19 - .../dist/font-awesome/scss/_mixins.scss | 60 - .../assets/dist/font-awesome/scss/_path.scss | 15 - .../font-awesome/scss/_rotated-flipped.scss | 20 - .../font-awesome/scss/_screen-reader.scss | 5 - .../dist/font-awesome/scss/_stacked.scss | 20 - .../dist/font-awesome/scss/_variables.scss | 800 ----- .../dist/font-awesome/scss/font-awesome.scss | 18 - web/static/assets/dist/index.js | 1 - web/static/assets/dist/log.js | 1 - web/static/assets/dist/router.js | 1 - web/static/assets/dist/stairs.js | 1 - web/static/assets/dist/text.js | 0 web/static/assets/sass/layout.scss | 16 - web/static/assets/ts/appstart.ts | 33 - .../assets/ts/components/page-firmware.html | 26 - .../assets/ts/components/page-firmware.ts | 19 - .../assets/ts/components/page-mode.html | 71 - web/static/assets/ts/components/page-mode.ts | 11 - .../assets/ts/components/page-settings.html | 23 - .../assets/ts/components/page-settings.ts | 24 - web/static/assets/ts/index.ts | 73 - web/static/assets/ts/log.ts | 79 - web/static/assets/ts/stairs.ts | 389 --- web/static/assets/ts/text.ts | 4 - web/static/index.html | 43 - web/typings.json | 8 - 126 files changed, 3851 insertions(+), 10947 deletions(-) create mode 100644 DEVELOPING.md create mode 100644 README.md create mode 100644 WIRING.md delete mode 100644 build.ps1 delete mode 100644 case/StairCase.scad create mode 100644 devserver.js delete mode 100644 docs/protocol.md create mode 100644 gulp-cppstringify.js create mode 100644 gulpfile.js create mode 100644 package.json create mode 100644 src/assets/css.h create mode 100644 src/assets/html.h create mode 100644 src/assets/images.h create mode 100644 src/assets/js.h create mode 100644 src/assets/version.h create mode 100644 src/charproperties.cpp create mode 100644 src/charproperties.h delete mode 100644 src/credentials.example.h create mode 100644 src/debug.cpp create mode 100644 src/debug.h create mode 100644 src/global.cpp create mode 100644 src/global.h delete mode 100644 src/modes/alternate.cpp delete mode 100644 src/modes/alternate.h delete mode 100644 src/modes/base.h delete mode 100644 src/modes/custom.cpp delete mode 100644 src/modes/custom.h delete mode 100644 src/modes/slide.h delete mode 100644 src/modes/static.cpp delete mode 100644 src/modes/static.h create mode 100644 src/server/api.cpp create mode 100644 src/server/api.h create mode 100644 src/server/static.cpp create mode 100644 src/server/static.h create mode 100644 src/settings/connection.cpp create mode 100644 src/settings/connection.h delete mode 100644 updateversion.ps1 delete mode 100644 upload.ps1 delete mode 100644 web/.bowerrc delete mode 100644 web/bower.json delete mode 100644 web/client.js create mode 100644 web/dist/bundle.css create mode 100644 web/dist/bundle.js delete mode 100644 web/gulpfile.js create mode 100644 web/index.html create mode 100644 web/lang.js create mode 100644 web/logo.ai create mode 100644 web/logo.png delete mode 100644 web/package.json delete mode 100644 web/protocol.js create mode 100644 web/site.scss delete mode 100644 web/static/assets/dist/appstart.js delete mode 100644 web/static/assets/dist/bundle.css delete mode 100644 web/static/assets/dist/components/page-firmware.html delete mode 100644 web/static/assets/dist/components/page-firmware.js delete mode 100644 web/static/assets/dist/components/page-home.html delete mode 100644 web/static/assets/dist/components/page-home.js delete mode 100644 web/static/assets/dist/components/page-mode.html delete mode 100644 web/static/assets/dist/components/page-mode.js delete mode 100644 web/static/assets/dist/components/page-settings.html delete mode 100644 web/static/assets/dist/components/page-settings.js delete mode 100644 web/static/assets/dist/debug.js delete mode 100644 web/static/assets/dist/font-awesome/HELP-US-OUT.txt delete mode 100644 web/static/assets/dist/font-awesome/css/font-awesome.css delete mode 100644 web/static/assets/dist/font-awesome/css/font-awesome.min.css delete mode 100644 web/static/assets/dist/font-awesome/fonts/FontAwesome.otf delete mode 100644 web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.eot delete mode 100644 web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.svg delete mode 100644 web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.ttf delete mode 100644 web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.woff delete mode 100644 web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.woff2 delete mode 100644 web/static/assets/dist/font-awesome/less/animated.less delete mode 100644 web/static/assets/dist/font-awesome/less/bordered-pulled.less delete mode 100644 web/static/assets/dist/font-awesome/less/core.less delete mode 100644 web/static/assets/dist/font-awesome/less/fixed-width.less delete mode 100644 web/static/assets/dist/font-awesome/less/font-awesome.less delete mode 100644 web/static/assets/dist/font-awesome/less/icons.less delete mode 100644 web/static/assets/dist/font-awesome/less/larger.less delete mode 100644 web/static/assets/dist/font-awesome/less/list.less delete mode 100644 web/static/assets/dist/font-awesome/less/mixins.less delete mode 100644 web/static/assets/dist/font-awesome/less/path.less delete mode 100644 web/static/assets/dist/font-awesome/less/rotated-flipped.less delete mode 100644 web/static/assets/dist/font-awesome/less/screen-reader.less delete mode 100644 web/static/assets/dist/font-awesome/less/stacked.less delete mode 100644 web/static/assets/dist/font-awesome/less/variables.less delete mode 100644 web/static/assets/dist/font-awesome/scss/_animated.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_bordered-pulled.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_core.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_fixed-width.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_icons.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_larger.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_list.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_mixins.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_path.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_rotated-flipped.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_screen-reader.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_stacked.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/_variables.scss delete mode 100644 web/static/assets/dist/font-awesome/scss/font-awesome.scss delete mode 100644 web/static/assets/dist/index.js delete mode 100644 web/static/assets/dist/log.js delete mode 100644 web/static/assets/dist/router.js delete mode 100644 web/static/assets/dist/stairs.js delete mode 100644 web/static/assets/dist/text.js delete mode 100644 web/static/assets/sass/layout.scss delete mode 100644 web/static/assets/ts/appstart.ts delete mode 100644 web/static/assets/ts/components/page-firmware.html delete mode 100644 web/static/assets/ts/components/page-firmware.ts delete mode 100644 web/static/assets/ts/components/page-mode.html delete mode 100644 web/static/assets/ts/components/page-mode.ts delete mode 100644 web/static/assets/ts/components/page-settings.html delete mode 100644 web/static/assets/ts/components/page-settings.ts delete mode 100644 web/static/assets/ts/index.ts delete mode 100644 web/static/assets/ts/log.ts delete mode 100644 web/static/assets/ts/stairs.ts delete mode 100644 web/static/assets/ts/text.ts delete mode 100644 web/static/index.html delete mode 100644 web/typings.json diff --git a/.gitignore b/.gitignore index 7c54a73..1a4aa9d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,4 @@ .pioenvs .piolibdeps -src/credentials.h *.sublime-workspace -web/node_modules/ -web/update/ -src/version.h -web/version.js -web/static/bower_components/ +node_modules diff --git a/DEVELOPING.md b/DEVELOPING.md new file mode 100644 index 0000000..693ea78 --- /dev/null +++ b/DEVELOPING.md @@ -0,0 +1,57 @@ +# Stairs + +This Stairs firmware was developed using [PlatformIO Core](http://platformio.org/). You can probably use the PlatformIO IDE as well, although I have no experience using it, so this guide will only use the command line tools. + +## Programming the ESP8266 + +You can either use an ESP8266 module with built-in USB like the Wemos D1, a programming fixture (my method of choice, search for "esp8266 fixture" on Google or AliExpress) or wire it up yourself using a CH340 or FTDI USB-to-serial module. + +To upload the code, open a console, go to the Stairs folder and run: + +``` +platformio run -t upload +``` + +It should auto-detect the USB COM port. + + +## Frontend development + +The frontend is compiled into C++ source files so that all the files can be served directly from the ESP8266, since there is no internet connection when running in access point mode. These steps are performed by a [Gulp script](https://gulpjs.com/). The Gulp script also updates the version based on the [GitVersion](http://gitversion.readthedocs.io/en/stable/) of the working copy. + +Note that GitVersion requires Windows, so some changes are probably required if you want to build on a different platform. + +To get started: + +1. Install [Node.js](https://nodejs.org/en/) +1. Install the [GitVersion command line](http://gitversion.readthedocs.io/en/stable/usage/command-line/) tool +1. Open a command line and navigate to the Stairs folder +1. Run ```npm update``` to install all the dependencies + + +### Compiling the assets + +Run ```gulp``` to compile the SASS files, and embed the CSS, JavaScript, images and HTML into C++ header files located in the src\assets folder. + +You may need to run ```npm install -g gulp``` to install Gulp into the global Node packages. + + +### Development server + +To make it easier to develop the frontend, a development server is included which serves the webpages and acts as a mock service for the API. + +To start the development server, run: + +```node devserver.js``` + +You can now open the frontend on [http://localhost:3000/](http://localhost:3000/). + +If you make any changes to the SCSS files, make sure to run ```gulp compileSass``` and ```gulp compileJS``` to update the CSS/JS files so your changes are visible in the development server. To keep gulp running and watch for changes in the SCSS and JS files, run ```gulp watch``` + + +## Building and/or uploading + +To rebuild all the assets and compile or upload the source in one go, two tasks have been added to the gulpfile.js: + +1. ```gulp build``` first runs all the tasks run by a regular ```gulp```, then builds the source code using ```platformio run``` +1. ```gulp upload``` is similar, but executes ```platformio run -t upload``` to directly upload the newly compiled source to the ESP8266 \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..46b9351 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Stairs + +ESP8266 firmware for controlling up to 16 LED strips on a flight of stairs. + +## Features + +- Configurable using WiFi (can act as an access point or connect to a router) +- Turn on or off at specific times +- Turn on when movement is detected by connecting one or two PIR sensors +- ReST API for configuration and controlling the lights + +Most notably it does not support RGB LED strips out of the box, but feel free to add support if you're up to the task! + +## Further reading + +- [Wiring information](WIRING.md) +- [Programming the ESP8266 and/or modifying the source](DEVELOPING.md) \ No newline at end of file diff --git a/Stairs.sublime-project b/Stairs.sublime-project index 7d06507..a3375cb 100644 --- a/Stairs.sublime-project +++ b/Stairs.sublime-project @@ -5,18 +5,8 @@ "path": ".", "file_exclude_patterns": ["*.sublime-project"] } - ]/*, - "build_systems": - [ - { - "name": "PlatformIO - Build", - "cmd": ["platformio", "run"], - "working_dir": "$project_path" - }, - { - "name": "PlatformIO - Upload", - "cmd": ["platformio", "run", "--target", "upload"], - "working_dir": "$project_path" - } - ]*/ + ], + "completions":[ + ["t", "{{ \\$t('${1:}') }}"] + ] } \ No newline at end of file diff --git a/WIRING.md b/WIRING.md new file mode 100644 index 0000000..2def5e3 --- /dev/null +++ b/WIRING.md @@ -0,0 +1,4 @@ +## Bill of materials + +1. ESP8266 module (I based mine on a vanilla ESP8266 ESP-12F, but friendlier modules like the Wemos D1 should work as well) +1. PCA9685 16-channel PWM module \ No newline at end of file diff --git a/build.ps1 b/build.ps1 deleted file mode 100644 index 7969cc9..0000000 --- a/build.ps1 +++ /dev/null @@ -1,3 +0,0 @@ -& .\updateversion.ps1 -& platformio run -Copy-Item .\.pioenvs\esp12e\firmware.bin .\web\update\ \ No newline at end of file diff --git a/case/StairCase.scad b/case/StairCase.scad deleted file mode 100644 index 74bcce5..0000000 --- a/case/StairCase.scad +++ /dev/null @@ -1,97 +0,0 @@ -caseBottom(); - -$fa = 1; -$fs = 1; - -module caseBottom() -{ - innerX = 80; - innerY = 70; - innerZ = 35; - wallThickness = 2; - - totalX = innerX + (2 * wallThickness); - totalY = innerY + (2 * wallThickness); - totalZ = innerZ + wallThickness; - - difference() - { - cube([totalX, totalY, totalZ]); - translate([wallThickness, wallThickness, wallThickness]) - cube([innerX, innerY, totalZ]); - - // Hole for the LED cables - translate([-1, totalY / 2, 25]) - rotate([0, 90, 0]) - cylinder(d = 15, h = wallThickness + 2); - - // Hole for the power cable - translate([62, totalY + 1, wallThickness + 2.5]) - rotate([90, 0, 0]) - cylinder(d = 5, h = wallThickness + 2); - } - - translate([wallThickness, wallThickness, wallThickness]) - { - translate([4, 4, 0]) - PCA9685Mount(); - - translate([40, 20, 0]) - ESP8266PlusPowerMount(); - } -} - - -module PCA9685Mount() -{ - totalX = 25.5; - totalY = 62.5; - pinDistanceX = 19; - pinDistanceY = 56; - pinDiameter = 2.3; - pinHeight = 3; - supportDiameter = 4; - supportHeight = 4; - - offsetX = (totalX - pinDistanceX) / 2; - offsetY = (totalY - pinDistanceY) / 2; - - for (x = [offsetX, offsetX + pinDistanceX]) - for (y = [offsetY, offsetY + pinDistanceY]) - translate([x, y, 0]) - { - cylinder(d = supportDiameter, h = supportHeight); - translate([0, 0, supportHeight]) - cylinder(d = pinDiameter, h = pinHeight); - } -} - - -// I didn't put any actual mount points in the perfboard, -// so I'll settle for some corner pieces to align it and -// use the ultimate maker's friend: hot glue. -module ESP8266PlusPowerMount() -{ - innerX = 34; - innerY = 35; - cornerSize = 6; - cornerThickness = 2; - cornerHeight = 2; - - totalX = innerX + (2 * cornerThickness); - totalY = innerY + (2 * cornerThickness); - - difference() - { - cube([totalX, totalY, cornerHeight]); - - translate([cornerThickness, cornerThickness, -1]) - cube([innerX, innerY, cornerHeight + 2]); - - translate([-1, cornerSize, -1]) - cube([totalX + 2, totalY - (2 * cornerSize), cornerHeight + 2]); - - translate([cornerSize, -1, -1]) - cube([totalX - (2 * cornerSize), totalY + 2, cornerHeight + 2]); - } -} \ No newline at end of file diff --git a/devserver.js b/devserver.js new file mode 100644 index 0000000..16aa45d --- /dev/null +++ b/devserver.js @@ -0,0 +1,60 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +const express = require('express'); +const app = express(); + +app.use(express.static('web')); +app.use(express.static('web/dist')); + +app.get('/api/version', function(req, res) +{ + res.send({ + systemID: 'dev-server', + version: 'dev-server' + }); +}); + +app.get('/api/connection', function(req, res) +{ + res.send({ + hostname: 'dev-server', + accesspoint: true, + station: true, + ssid: 'MyWiFiSSID', + password: 'supersecret', + dhcp: true, + ip: '192.168.1.234', + subnetmask: '255.255.255.0', + gateway: '192.168.1.0' + }); +}); + +app.get('/api/connection/status', function(req, res) +{ + res.send({ + "ap": { + "enabled": true, + "ip": "192.168.4.1" + }, + "station": { + "enabled": true, + "status": 1, + "ip": "0.0.0.0" + } + }); +}); + +app.post('/api/connection', function(req, res) +{ + res.sendStatus(200); +}); + +app.listen(3000, function() +{ + console.log('Development server listening on port 3000') + console.log('Press Ctrl-C to stop') +}); \ No newline at end of file diff --git a/docs/protocol.md b/docs/protocol.md deleted file mode 100644 index 2827f1f..0000000 --- a/docs/protocol.md +++ /dev/null @@ -1,170 +0,0 @@ -The Stairs firmware on the ESP8266 can be accessed using a custom light-weight UDP protocol. It is not intended to be accessed directly from the internet, and thus there is no security on the device itself. This is by design. Authentication should in my opinion be handled by a device with more processing power, such as a Raspberry Pi. - -A Node.js application is included which provides a ReST interface. It is also not intended to be accessible from the internet, and does not provide any authentication either! - - -Protocol -======== - -The default port for UDP communication is 3126. Every request message will result in a response message which is either an error, the requested information or a confirmation of the newly stored data. Each message should be a separate packet. - -16-bit (word) values are expected in little endian order (least significant byte first). - - -Request -------- - -The first byte of a request is the command. Further data depends on the command. - -| Command | Name | -| ------- | ---- | -| 0x01 | Ping | -| 0x03 | GetMode | -| 0x04 | SetMode | -| 0x05 | GetRange | -| 0x06 | SetRange | -| 0xFF | UpdateFirmware | - - -Response --------- - -A response is sent to the source address and port and starts with the Reply command. - -| Command | Name | -| ------- | ---- | -| 0x02 | Reply | - - -The second byte is the request command for which this reply is intended, or Error if the request command was not recognized or contained invalid parameters. - -| Command | Name | -| ------- | ---- | -| 0x00 | Error | - -In the case of an Error, the third byte will be the actual request command (or unrecognized value). - - -### Ping -A no-op command which can be used to tell if the device is responding. Returns the number of steps. - -Input parameters:
-_none_ - -Output parameters:
-**steps** (byte): The number of steps. - - -### GetMode -Returns the current mode. - -Input parameters:
-_none_ - -Output parameters:
-**mode** (byte): The identifier of the current mode. See Modes below.
-**data** (0..n bytes): The parameters specific to the current mode. See Modes below. - - -### SetMode -Changed the current mode. - -Input parameters:
-**mode** (byte): The identifier of the current mode.
-**data** (0..n bytes): The parameters specific to the current mode. - -Output parameters:
-_Same as input parameters_ - - -### GetRange -Gets the current range configuration. Each step has it's own parameters which adjust the PWM curve, which can be used to compensate for the differences in LED strips or signal strength. - -The ranges are stored on the ESP8266's filesystem and will be restored after a power loss. - -Input parameters:
-_none_ - -Output parameters:
-*useScaling* (byte): 0 (off) or 1 (on), default 1. If enabled, the brightness value will be converted to a PWM value using an exponential function. If disabled, the brightness is used as is (but still accounting for rangeStart/rangeEnd). -_repeated for each step:_
-*rangeStart* (word): value in range 0 (off) to 4095 (fully on), default 0. Determines the minimum PWM on value for a brightness of 1. -*rangeEnd* (word): value in range 0 (off) to 4095 (fully on), default 4094. Determines the maximum PWM on value for a brightness of 4094. - - -### SetRange -Sets the current range configuration. - -Input parameters:
-_See GetRange_ - -Output parameters:
-_Same as input parameters_ - - -### UpdateFirmware -Updates the firmware over WiFi. This functionality may be limited in the configuration which is hardcoded into the firmware. There are three modes of operation: - -1. Disabled, firmware can not be updated over WiFi -2. Enabled with a hardcoded URL. You may request an update check but any source provided will be ignored. -3. Enabled with the URL as input parameters. - -You can only request an update once every 5 seconds (by default), otherwise an error will be returned. - -Please note that the entire packet must not exceed 254 bytes or the remainder will be discarded. - - -For further information on implementing an update server, see [Arduino ESP8266's HTTPUpdate reference](https://github.com/esp8266/Arduino/blob/master/doc/ota_updates/readme.md#advanced-updater-1). - - -Input parameters:
-_If enabled_ -*port* (word): the port on which the HTTP update server runs -*host* (null-terminated string): the host name or IP address on which the HTTP update server runs -*path* (null-terminated string): the path to - -Output parameters:
-1 if succesful, 0 if no updates are available. - - -Modes -===== - -| Mode | Name | -| ---- | ---- | -| 0x01 | Static | -| 0x02 | Custom | -| 0x03 | Alternate | -| 0x04 | Slide | - -### Static -Sets all steps to the same brightness. - -Parameters:
-**brightness** (word): value in range 0 (off) to 4095 (fully on). -**easeTime** (word): the time in milliseconds to ease into the new brightness value (only applies if the mode was already set to static before). - - -### Custom -Sets the brightness for each of the steps individually. - -Parameters:
-**brightness** (word[stepCount]): array of brightness values in range 0 - 4095. The number of values must be equal to the number of steps are reported in the Ping response. Bottom step first. - - -### Alternate -Alternates between even and odd steps being lit. Bring out our next contestant! - -Parameters:
-**interval** (word): The time each set of steps is lit in milliseconds.
-**brightness** (word): value in range 0 (off) to 4095 (fully on). - - -### Slide -Lights one step at a time, moving up or down. - -Parameters:
-**interval** (word): How long each step is lit before moving to the next.
-**brightness** (word): value in range 0 (off) to 4095 (fully on). -**direction** (byte): Determines the starting step / direction. Either Bottom/Up (0) or Top/Down (1).
-**fadeOutTime** (word): If greater than 0 each step will fade out instead of turning off instantly after moving to the next. Specified in milliseconds. \ No newline at end of file diff --git a/gulp-cppstringify.js b/gulp-cppstringify.js new file mode 100644 index 0000000..bfc5ac1 --- /dev/null +++ b/gulp-cppstringify.js @@ -0,0 +1,168 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +'use strict'; + +// Borrowed heavily from gulp-concat: +// https://github.com/contra/gulp-concat/ +// +// It's very much hardcoded for the ESP8266 Arduino at the moment, +// but feel free to hack away at it if you need it for other purposes! +var through = require('through2'); +var path = require('path'); +var File = require('vinyl'); +var _ = require('lodash'); +var Readable = require('stream').Readable; + + +function escapeContent(content, lineLength) +{ + var lineRegexp = new RegExp('(.{1,' + (lineLength - 1) + '}[^\\\\])', 'g'); + + return content + .replace(/\\/g, '\\\\') + .replace(/"/g, '\\"') + .replace(/\r?\n/g, '\\r\\n') + .replace(lineRegexp, ' "$1"\r\n') + .replace(/\r\n$/, ''); +}; + + +function escapeContentAsByteArray(content, lineLength) +{ + var bytesPerLine = Math.floor(lineLength / 5); + var lineRegexp = new RegExp('((?:0x..,){1,' + bytesPerLine + '})', 'g'); + + return content + .replace(/(.{2})/g, '0x$1,') + .replace(lineRegexp, ' $1\r\n') + .replace(/,\r\n$/, ''); +}; + + +function encodeFile(file, opts) +{ + var variableName; + + if (opts.map.hasOwnProperty(file.relative)) + variableName = opts.map[file.relative]; + else + variableName = file.relative.replace(/[^a-zA-Z0-9_]/g, '_'); + + if (variableName === null) + return ''; + + variableName = opts.variablePrefix + variableName; + + var escapedContent; + var output; + + if (opts.byteArray) + { + escapedContent = escapeContentAsByteArray(file.contents.toString('hex'), opts.lineLength); + output = "const uint8_t " + variableName + "[] PROGMEM = {\r\n" + escapedContent + "};\r\n\r\n"; + } + else + { + escapedContent = escapeContent(file.contents.toString('utf-8'), opts.lineLength); + output = "const char " + variableName + "[] PROGMEM = \r\n" + escapedContent + ";\r\n\r\n"; + } + + return output; +} + + +module.exports = function(file, opts) +{ + if (!file) + throw new Error('gulp-cppstringify: Missing file option'); + + opts = _.extend({ + map: [], + headerDefineName: '__Embedded', + variablePrefix: 'Embedded', + lineLength: 100, + byteArray: false + }, opts || {}); + + var fileName; + var latestFile = false; + var latestMod = 0; + var output = null; + + + if (typeof file === 'string') + fileName = file; + else if (typeof file.path === 'string') + fileName = path.basename(file.path); + else + throw new Error('gulp-cppstringify: Missing path in file options'); + + + function bufferContents(file, enc, cb) + { + if (file.isNull()) + { + cb(); + return; + } + + if (file.isStream()) + { + this.emit('error', new Error('gulp-cppstringify: Streaming not supported')); + cb(); + return; + } + + if (!latestMod || file.stat && file.stat.mtime > latestMod) + { + latestFile = file; + latestMod = file.stat && file.stat.mtime; + } + + if (output == null) + { + output = new Readable(); + output._read = function noop() {}; + + output.push("#ifndef " + opts.headerDefineName + "\r\n"); + output.push("#define " + opts.headerDefineName + "\r\n\r\n"); + output.push("#include \r\n\r\n"); + } + + output.push(encodeFile(file, opts)); + cb(); + } + + + function endStream(cb) + { + if (!latestFile) + { + cb(); + return; + } + + var headerFile; + + if (typeof file === 'string') + { + headerFile = latestFile.clone({contents: false}); + headerFile.path = path.join(latestFile.base, file); + } + else + headerFile = new File(file); + + output.push("#endif\r\n"); + output.push(null); + headerFile.contents = output; + + this.push(headerFile); + cb(); + } + + return through.obj(bufferContents, endStream); +}; \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..1d9bc71 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,244 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +'use strict'; + +const gulp = require('gulp'); +const htmlmin = require('gulp-htmlmin'); +const cppstringify = require('./gulp-cppstringify'); +const fs = require('fs'); +const plumber = require('gulp-plumber'); +const sass = require('gulp-sass'); +const cleanCSS = require('gulp-clean-css'); +const watch = require('gulp-debounced-watch'); +const uglify = require('gulp-uglify'); +const concat = require('gulp-concat'); +const print = require('gulp-print'); + + +const config = { + assetsPath: 'web/', + distPath: 'web/dist/', + outputPath: 'src/assets/' +}; + + +const HTMLMap = { + 'index.html': 'Index' +}; + +const JSMap = { + 'bundle.js': 'BundleJS' +}; + +const CSSMap = { + 'bundle.css': 'BundleCSS' +}; + + +// There is an issue in the AsyncWebServer where it's apparantly running +// out of memory on simultaneous requests. We'll work around it by +// merging all the JS into one big file. +// +// https://github.com/me-no-dev/ESPAsyncWebServer/issues/256 +const JSSrc = [ + 'node_modules/axios/dist/axios.min.js', + 'node_modules/vue/dist/vue.min.js', + 'node_modules/vue-i18n/dist/vue-i18n.min.js', + 'web/lang.js', + 'web/app.js' +]; + +const SCSSSrc = [ + 'web/site.scss' +] + + + + +gulp.task('default', + [ + 'embedAssets' + ], + function(){}); + + +gulp.task('watch', + [ + 'compileScss', + 'compileJS' + ], + function() + { + watch(config.assetsPath + '*.scss', function() { gulp.start('compileScss'); }); + watch(config.assetsPath + '*.js', function() { gulp.start('compileJS'); }); + }); + + + +gulp.task('embedHTML', function() +{ + return gulp.src(config.assetsPath + '*.html') + .pipe(print(function(filepath) { return 'HTML: ' + filepath })) + .pipe(htmlmin({ + collapseWhitespace: true, + removeComments: true, + minifyCSS: true, + minifyJS: true + })) + .pipe(cppstringify('html.h', { + headerDefineName: '__assets_html', + map: HTMLMap + })) + .pipe(gulp.dest(config.outputPath)); +}); + + +gulp.task('compileScss', function() +{ + return gulp.src(SCSSSrc) + .pipe(plumber({ + errorHandler: function (error) + { + console.log(error.toString()); + this.emit('end'); + }})) + .pipe(print(function(filepath) { return 'SCSS: ' + filepath })) + .pipe(sass({ + includePaths: ['node_modules/milligram/src'] + })) + .pipe(cleanCSS({compatibility: 'ie9'})) + .pipe(concat('bundle.css')) + .pipe(gulp.dest(config.distPath)); +}); + + +gulp.task('compileJS', function() +{ + return gulp.src(JSSrc) + .pipe(plumber({ + errorHandler: function (error) + { + console.log(error.toString()); + this.emit('end'); + }})) + .pipe(print(function(filepath) { return 'JS: ' + filepath })) + .pipe(concat('bundle.js')) + .pipe(uglify()) + .pipe(gulp.dest(config.distPath)); +}); + + +gulp.task('embedJS', ['compileJS'], function() +{ + return gulp.src([config.distPath + 'bundle.js']) + .pipe(cppstringify('js.h', { + headerDefineName: '__assets_js', + map: JSMap + })) + .pipe(gulp.dest(config.outputPath)); +}); + + +gulp.task('embedCSS', ['compileScss'], function() +{ + return gulp.src([config.distPath + 'bundle.css']) + .pipe(cppstringify('css.h', { + headerDefineName: '__embed_css', + map: CSSMap + })) + .pipe(gulp.dest(config.outputPath)); +}); + + +gulp.task('embedVersion', function() +{ + var versionData = ''; + const cmd = spawn('gitversion'); + + cmd.stdout.on('data', function(data) + { + versionData += data; + }); + + cmd.stderr.on('data', function(data) + { + console.log(data.toString().trim()); + }); + + cmd.on('exit', function(code) + { + if (code != 0) return; + + var version = JSON.parse(versionData); + var headerFile = "#ifndef __assets_version\r\n"; + headerFile += "#define __assets_version\r\n\r\n"; + headerFile += "const uint8_t VersionMajor = " + version.Major + ";\r\n"; + headerFile += "const uint8_t VersionMinor = " + version.Minor + ";\r\n"; + headerFile += "const uint8_t VersionPatch = " + version.Patch + ";\r\n"; + headerFile += "const uint8_t VersionMetadata = " + version.BuildMetaData + ";\r\n"; + + headerFile += "const char VersionBranch[] = \"" + version.BranchName + "\";\r\n"; + headerFile += "const char VersionSha[] = \"" + version.Sha + "\";\r\n"; + + headerFile += "const char VersionSemVer[] = \"" + version.SemVer + "\";\r\n"; + headerFile += "const char VersionFullSemVer[] = \"" + version.FullSemVer + "\";\r\n"; + + headerFile += "const char VersionCommitDate[] = \"" + version.CommitDate + "\";\r\n"; + + headerFile += "\r\n#endif\r\n"; + + fs.writeFile(config.outputPath + 'version.h', headerFile, function(err) + { + if (err) throw err; + }); + }); +}); + + +gulp.task('embedAssets', ['embedHTML', 'embedJS', 'embedCSS', 'embedVersion'], function() { }) + + + +// PlatformIO +const spawn = require('child_process').spawn; +const argv = require('yargs').argv; + +var platformio = function(target) +{ + var args = ['run']; + if ("e" in argv) + { + args.push('-e'); + args.push(argv.e); + } + + if ("p" in argv) + { + args.push('--upload-port'); + args.push(argv.p); + } + + if (target) + { + args.push('-t'); + args.push(target); + } + + const cmd = spawn('platformio', args); + cmd.stdout.on('data', function(data) + { + console.log(data.toString().trim()); + }); + + cmd.stderr.on('data', function(data) + { + console.log(data.toString().trim()); + }); +} + +gulp.task('upload', ['embedHTML', 'embedAssets'], function() { platformio('upload'); }); +gulp.task('build', ['embedHTML', 'embedAssets'], function() { platformio(false); }); \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..0731a34 --- /dev/null +++ b/package.json @@ -0,0 +1,40 @@ +{ + "name": "stairs", + "version": "2.0.0", + "description": "Stairs", + "main": "gulpfile.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "dev": "node devserver.js" + }, + "repository": { + "type": "git", + "url": "https://git.x2software.net/pub/Stairs.git" + }, + "author": "Mark van Renswoude ", + "license": "Unlicense", + "devDependencies": { + "axios": "^0.17.1", + "child_process": "^1.0.2", + "express": "^4.16.2", + "gulp": "^3.9.1", + "gulp-clean-css": "^3.9.0", + "gulp-concat": "^2.6.1", + "gulp-debounced-watch": "^1.0.4", + "gulp-htmlmin": "^3.0.0", + "gulp-plumber": "^1.1.0", + "gulp-print": "^2.0.1", + "gulp-sass": "^3.1.0", + "gulp-uglify": "^3.0.0", + "lodash": "^4.17.4", + "milligram": "^1.3.0", + "path": "^0.12.7", + "through2": "^2.0.3", + "vinyl": "^2.1.0", + "vue": "^2.5.13", + "yargs": "^10.0.3" + }, + "dependencies": { + "vue-i18n": "^7.3.3" + } +} diff --git a/platformio.ini b/platformio.ini index 36408bd..0c18779 100644 --- a/platformio.ini +++ b/platformio.ini @@ -9,7 +9,11 @@ ; http://docs.platformio.org/page/projectconf.html [env:esp12e] -platform = espressif8266_stage +platform = https://github.com/platformio/platform-espressif8266.git#feature/stage board = esp12e framework = arduino -upload_speed = 115200 \ No newline at end of file +upload_speed = 115200 +lib_deps = + Hash + ArduinoJson + ESP Async WebServer \ No newline at end of file diff --git a/src/assets/css.h b/src/assets/css.h new file mode 100644 index 0000000..12589ae --- /dev/null +++ b/src/assets/css.h @@ -0,0 +1,111 @@ +#ifndef __embed_css +#define __embed_css + +#include + +const char EmbeddedBundleCSS[] PROGMEM = + "*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;fo" + "nt-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-" + "spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:" + "0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input" + "[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;co" + "lor:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-s" + "pacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform" + ":uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=butto" + "n]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]" + ":focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}." + "button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[typ" + "e=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button" + "[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabl" + "ed]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][dis" + "abled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.butt" + "on-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline," + "input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:foc" + "us,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=b" + "utton].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline" + ":focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=sub" + "mit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.bu" + "tton-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:" + "focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[" + "type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[t" + "ype=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[ty" + "pe=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,butto" + "n.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].but" + "ton-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focu" + "s,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button]." + "button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[" + "type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear" + ":hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disa" + "bled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-c" + "lear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear" + "[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disab" + "led]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]" + ":hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:." + "2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}" + "pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1" + "rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type" + "=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background" + "-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit" + ";height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[" + "type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[typ" + "e=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:ima" + "ge/svg+xml;utf8,') center r" + "ight no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}labe" + "l,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;" + "padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;f" + "ont-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:r" + "elative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{" + "padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-item" + "s:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretc" + "h{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 aut" + "o;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column" + ".column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-" + "offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-le" + "ft:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column" + ".column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-" + "offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{f" + "lex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,." + "row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-w" + "idth:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-w" + "idth:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .co" + "lumn.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .co" + "lumn.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .colum" + "n .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width" + ":40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom" + ":inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{li" + "st-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font" + "-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.butt" + "on,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote" + ",dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{borde" + "r-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{pad" + "ding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h" + "2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6" + "rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font" + "-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line" + "-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{" + "clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{displ" + "ay:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;pa" + "dding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#f" + "ff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;bord" + "er:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin" + "-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}.header .wifistatus{" + "position:absolute;right:0;top:0}.header .wifistatus .indicator{display:inline-block;width:1rem;heigh" + "t:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{ba" + "ckground-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}." + "header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .ind" + "icator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size" + ":10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.v" + "ersion{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}." + "tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-ou" + "tline{background-color:transparent}input[disabled]{cursor:not-allowed;color:grey;background-color:#2" + "62626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5" + "rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:cent" + "er}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;o" + "utline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2re" + "m;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2r" + "em;border-radius:50%;background:#fcf6cf;cursor:pointer}"; + +#endif diff --git a/src/assets/html.h b/src/assets/html.h new file mode 100644 index 0000000..17713c5 --- /dev/null +++ b/src/assets/html.h @@ -0,0 +1,59 @@ +#ifndef __assets_html +#define __assets_html + +#include + +const char EmbeddedIndex[] PROGMEM = + "

{{ $t('title') }}

{{ version.systemID !== null ? $t('systemID') + ': ' + version.syst" + "emID : '' }}

{{ $t('wifiStatus.accesspoint." + "title') }} {{ wifiStatus.ap.enabled ? wifiStatus.ap.ip : $t('wifiStatus.accesspoint.disabled') }}
" + "{{ $t('wifiStatus.stationmode.title') }} {{ getWiFiStationStatusText() }}
{{ $t('loading') }} {{ loadingIndicator }}

{{ $t('status.title') }}

{{ index + 1 }} {{ step.value }}

{{ $t('triggers.timeTitle') }}

{{ $t('triggers.motionTitle') }}

{{ $t('connection.title') }}

{{ $t('conn" + "ection.accesspointHint') }} {{ $t('connection.stationmodeHint') }} {{ $t('connection.dhc" + "pHint') }}
{{ $t('copyright') }}
{{ version.ve" + "rsion !== null ? $t('firmwareVersion') + version.version : '' }}
"; + +#endif diff --git a/src/assets/images.h b/src/assets/images.h new file mode 100644 index 0000000..51d9d72 --- /dev/null +++ b/src/assets/images.h @@ -0,0 +1,32 @@ +#ifndef __assets_images +#define __assets_images + +#include + +const uint8_t EmbeddedLogo[] PROGMEM = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30, + 0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57,0x02,0xf9,0x87,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c,0x00,0x00,0x01,0x70,0x49,0x44,0x41,0x54,0x78,0xda, + 0xec,0x59,0xd1,0x0d,0x82,0x30,0x10,0x2d,0xc6,0x01,0x70,0x03,0xdc,0x00,0x27,0x50,0x37,0x80,0x0d,0xd8, + 0xc0,0xb8,0x81,0x1b,0x18,0x27,0xd1,0x0d,0x74,0x03,0xd8,0x00,0x36,0x80,0x0d,0xea,0x5d,0x52,0x13,0x35, + 0xa8,0x58,0xee,0xae,0x0a,0x7d,0x49,0xc3,0x07,0x81,0xde,0xf5,0xdd,0x5d,0xdf,0xb5,0x4a,0x79,0x78,0x78, + 0x0c,0x17,0x5a,0xeb,0x18,0x46,0xae,0xe9,0x51,0xc3,0xd8,0x73,0x1b,0x1f,0x9a,0x89,0x38,0xb1,0xeb,0x6b, + 0xe7,0xe4,0xcd,0xbb,0x18,0x46,0xc8,0x4c,0xf2,0x92,0xd3,0x81,0x42,0x20,0x4a,0x0b,0xee,0x30,0xca,0x18, + 0xc3,0xe8,0x8c,0x61,0x3a,0xfa,0x42,0x13,0x58,0x32,0xb3,0x62,0x37,0x2c,0x08,0x2e,0x5c,0x95,0x29,0xd7, + 0x32,0xc8,0xfb,0x26,0x71,0x1b,0x32,0x53,0x9d,0x24,0x80,0x7b,0x50,0x42,0xed,0x80,0x74,0xd2,0x45,0xa4, + 0x39,0x00,0x2b,0x82,0x3f,0x2c,0x85,0x8c,0x6f,0x60,0x2c,0x20,0x17,0x2a,0xd2,0x24,0x46,0x79,0x01,0x8f, + 0x4d,0x97,0xd5,0xe9,0x01,0x34,0xfa,0x00,0xc6,0x17,0x6a,0xe8,0xb0,0x61,0x20,0x31,0x0c,0x48,0x02,0x19, + 0xd9,0x02,0x23,0xcd,0xf3,0x8b,0xa9,0x45,0xfd,0x3f,0x3a,0x5a,0x6c,0x2c,0x20,0x69,0xdf,0x2a,0xb4,0x72, + 0x18,0x2d,0x09,0x45,0x19,0xad,0x1c,0x3a,0x40,0x33,0xb7,0x11,0x61,0xd2,0xa8,0x5f,0x6d,0x6a,0xb6,0x5a, + 0x48,0xa2,0x57,0x78,0x90,0xdd,0x6d,0x09,0x6c,0x13,0x42,0x83,0xe8,0x93,0x7f,0x2a,0x84,0x6c,0x1a,0x1c, + 0x57,0x28,0x29,0x42,0x28,0x72,0x48,0x7e,0x44,0xe1,0xc0,0xc5,0xa1,0x03,0xa7,0x41,0x4a,0x89,0x51,0x8a, + 0x39,0x09,0x39,0xdd,0x59,0x52,0xff,0x72,0x43,0xd3,0xa9,0xa9,0xb1,0xe9,0x89,0xa5,0x15,0x68,0x46,0xd9, + 0x13,0xbb,0x48,0x22,0x3a,0x01,0x29,0x7c,0xac,0xa2,0xcd,0x5c,0xe1,0x5f,0x1e,0x6c,0xb1,0x1d,0x6e,0xfd, + 0x9b,0x70,0xcb,0x04,0xee,0x08,0xee,0x05,0xdb,0xd7,0x45,0x22,0x78,0x17,0xef,0xf0,0xa8,0x85,0xd7,0xac, + 0x81,0xb0,0x99,0x7d,0xf3,0xc1,0xa7,0x0b,0x0e,0x17,0x8d,0x3b,0xdd,0x4e,0x8c,0xb4,0x0a,0x77,0x5e,0x15, + 0x30,0x30,0xa7,0x62,0x00,0xb1,0x56,0x32,0x37,0x35,0x37,0xb5,0x99,0x2a,0x0f,0x0f,0x8f,0x71,0xe1,0x2a, + 0xc0,0x00,0x6f,0x6a,0x3e,0x7e,0x1e,0xa2,0xf0,0x8c,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42, + 0x60,0x82}; + +#endif diff --git a/src/assets/js.h b/src/assets/js.h new file mode 100644 index 0000000..d2662c8 --- /dev/null +++ b/src/assets/js.h @@ -0,0 +1,1248 @@ +#ifndef __assets_js +#define __assets_js + +#include + +const char EmbeddedBundleJS[] PROGMEM = + "!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"" + "==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.axios=e():t.axios=e()}(t" + "his,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},i" + "d:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t" + ",e.c=n,e.p=\"\",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){\"use strict\";function r(t){" + "var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2" + "),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23)," + "c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.expor" + "ts=c,t.exports.default=c},function(t,e,n){\"use strict\";function r(t){return\"[object Array]\"===u." + "call(t)}function i(t){return null!==t&&\"object\"==typeof t}function o(t){return\"[object Function]" + "\"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if(\"object\"!=typeof t&&(t=[t]),r(t))for(var" + " n=0,i=t.length;n=200&&t<300}};s.headers={common" + ":{Accept:\"application/json, text/plain, */*\"}},i.forEach([\"delete\",\"get\",\"head\"],function(t)" + "{s.headers[t]={}}),i.forEach([\"post\",\"put\",\"patch\"],function(t){s.headers[t]=i.merge(a)}),t.ex" + "ports=s},function(t,e,n){\"use strict\";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r)" + "{r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){\"use strict\";v" + "ar r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u=\"undefined\"!=typeof window&&window.btoa&&window" + ".btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.he" + "aders;r.isFormData(f)&&delete p[\"Content-Type\"];var d=new XMLHttpRequest,h=\"onreadystatechange\"," + "v=!1;if(\"undefined\"==typeof window||!window.XDomainRequest||\"withCredentials\"in d||s(t.url)||(d=" + "new window.XDomainRequest,h=\"onload\",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.au" + "th){var m=t.auth.username||\"\",g=t.auth.password||\"\";p.Authorization=\"Basic \"+u(m+\":\"+g)}if(d" + ".open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=funct" + "ion(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf(\"file:\"" + "))){var n=\"getAllResponseHeaders\"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&\"" + "text\"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:122" + "3===d.status?\"No Content\":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=f" + "unction(){l(c(\"Network Error\",t,null,d)),d=null},d.ontimeout=function(){l(c(\"timeout of \"+t.time" + "out+\"ms exceeded\",t,\"ECONNABORTED\",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCr" + "edentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if" + "(\"setRequestHeader\"in d&&r.forEach(p,function(t,e){void 0===f&&\"content-type\"===e.toLowerCase()?" + "delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d" + ".responseType=t.responseType}catch(e){if(\"json\"!==t.responseType)throw e}\"function\"==typeof t.on" + "DownloadProgress&&d.addEventListener(\"progress\",t.onDownloadProgress),\"function\"==typeof t.onUpl" + "oadProgress&&d.upload&&d.upload.addEventListener(\"progress\",t.onUploadProgress),t.cancelToken&&t.c" + "ancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}}," + "function(t,e,n){\"use strict\";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n" + ".status&&i&&!i(n.status)?e(r(\"Request failed with status code \"+n.status,n.config,null,n.request,n" + ")):t(n)}},function(t,e,n){\"use strict\";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t" + ");return r(a,e,n,i,o)}},function(t,e){\"use strict\";t.exports=function(t,e,n,r,i){return t.config=e" + ",n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){\"use strict\";function r(t){return enco" + "deURIComponent(t).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/g" + "i,\",\").replace(/%20/g,\"+\").replace(/%5B/gi,\"[\").replace(/%5D/gi,\"]\")}var i=n(2);t.exports=fu" + "nction(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{va" + "r a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+=\"[]\"),i.isArray(t)||(t=[" + "t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.pus" + "h(r(e)+\"=\"+r(t))}))}),o=a.join(\"&\")}return o&&(t+=(-1===t.indexOf(\"?\")?\"?\":\"&\")+o),t}},fun" + "ction(t,e,n){\"use strict\";var r=n(2),i=[\"age\",\"authorization\",\"content-length\",\"content-typ" + "e\",\"etag\",\"expires\",\"from\",\"host\",\"if-modified-since\",\"if-unmodified-since\",\"last-modi" + "fied\",\"location\",\"max-forwards\",\"proxy-authorization\",\"referer\",\"retry-after\",\"user-agen" + "t\"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split(\"\\n\"),function(t){if(o=t.in" + "dexOf(\":\"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>" + "=0)return;a[e]=\"set-cookie\"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+\", \"+n:n}}),a):a}},function" + "(t,e,n){\"use strict\";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=" + "t;return n&&(i.setAttribute(\"href\",e),e=i.href),i.setAttribute(\"href\",e),{href:i.href,protocol:i" + ".protocol?i.protocol.replace(/:$/,\"\"):\"\",host:i.host,search:i.search?i.search.replace(/^\\?/,\"" + "\"):\"\",hash:i.hash?i.hash.replace(/^#/,\"\"):\"\",hostname:i.hostname,port:i.port,pathname:\"/\"==" + "=i.pathname.charAt(0)?i.pathname:\"/\"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgen" + "t),i=document.createElement(\"a\");return e=t(window.location.href),function(n){var i=r.isString(n)?" + "t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){\"use" + " strict\";function n(){this.message=\"String contains an invalid character\"}var r=\"ABCDEFGHIJKLMNO" + "PQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";n.prototype=new Error,n.prototype.code=5,n.prot" + "otype.name=\"InvalidCharacterError\",t.exports=function(t){for(var e,i,o=String(t),a=\"\",s=0,c=r;o." + "charAt(0|s)||(c=\"=\",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e" + "=e<<8|i}return a}},function(t,e,n){\"use strict\";var r=n(2);t.exports=r.isStandardBrowserEnv()?{wri" + "te:function(t,e,n,i,o,a){var s=[];s.push(t+\"=\"+encodeURIComponent(e)),r.isNumber(n)&&s.push(\"expi" + "res=\"+new Date(n).toGMTString()),r.isString(i)&&s.push(\"path=\"+i),r.isString(o)&&s.push(\"domain=" + "\"+o),!0===a&&s.push(\"secure\"),document.cookie=s.join(\"; \")},read:function(t){var e=document.coo" + "kie.match(new RegExp(\"(^|;\\\\s*)(\"+t+\")=([^;]*)\"));return e?decodeURIComponent(e[3]):null},remo" + "ve:function(t){this.write(t,\"\",Date.now()-864e5)}}:{write:function(){},read:function(){return null" + "},remove:function(){}}},function(t,e,n){\"use strict\";function r(){this.handlers=[]}var i=n(2);r.pr" + "ototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1" + "},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=funct" + "ion(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){\"use stri" + "ct\";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6)" + ",c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.heade" + "rs=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{" + "},t.headers[t.method]||{},t.headers||{}),i.forEach([\"delete\",\"get\",\"head\",\"post\",\"put\",\"p" + "atch\",\"common\"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e" + "){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e." + "response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.rejec" + "t(e)})}},function(t,e,n){\"use strict\";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,func" + "tion(n){t=n(t,e)}),t}},function(t,e){\"use strict\";t.exports=function(t){return!(!t||!t.__CANCEL__)" + "}},function(t,e){\"use strict\";t.exports=function(t){return/^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.te" + "st(t)}},function(t,e){\"use strict\";t.exports=function(t,e){return e?t.replace(/\\/+$/,\"\")+\"/\"+" + "e.replace(/^\\/+/,\"\"):t}},function(t,e){\"use strict\";function n(t){this.message=t}n.prototype.to" + "String=function(){return\"Cancel\"+(this.message?\": \"+this.message:\"\")},n.prototype.__CANCEL__=!" + "0,t.exports=n},function(t,e,n){\"use strict\";function r(t){if(\"function\"!=typeof t)throw new Type" + "Error(\"executor must be a function.\");var e;this.promise=new Promise(function(t){e=t});var n=this;" + "t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=f" + "unction(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e)" + "{t=e}),cancel:t}},t.exports=r},function(t,e){\"use strict\";t.exports=function(t){return function(e)" + "{return t.apply(null,e)}}}])}),function(t,e){\"object\"==typeof exports&&\"undefined\"!=typeof modul" + "e?module.exports=e():\"function\"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){\"" + "use strict\";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}fun" + "ction n(t){return!0===t}function r(t){return\"string\"==typeof t||\"number\"==typeof t||\"symbol\"==" + "typeof t||\"boolean\"==typeof t}function i(t){return null!==t&&\"object\"==typeof t}function o(t){re" + "turn\"[object Object]\"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.flo" + "or(e)===e&&isFinite(t)}function s(t){return null==t?\"\":\"object\"==typeof t?JSON.stringify(t,null," + "2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object." + "create(null),r=t.split(\",\"),i=0;i-1)return t.sp" + "lice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return functi" + "on(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t." + "apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var " + "n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];retur" + "n t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||\"\")+\"_\"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.ap" + "ply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):\"\"!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._i" + "sVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key=\"__vlist\"+a+\"_\"+s+\"__\"),f.push(c)));return f}(u):voi" + "d 0:c===Dr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0" + ")&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.option" + "s=F(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}functi" + "on Lt(t){return t&&(t.Ctor.options.name||t.tag)}function It(t,e){return Array.isArray(t)?t.indexOf(e" + ")>-1:\"string\"==typeof t?t.split(\",\").indexOf(e)>-1:(n=t,!(\"[object RegExp]\"!==mn.call(n))&&t.t" + "est(e));var n}function Dt(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){va" + "r s=Lt(a.componentOptions);s&&!e(s)&&Ft(n,o,r,i)}}}function Ft(t,e,n,r){var i=t[e];!i||r&&i.tag===r." + "tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.static" + "Class,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+\" \"" + "+e:t:e||\"\"}function Mt(t){return Array.isArray(t)?function(t){for(var n,r=\"\",i=0,o=t.length;i=0&&\" \"===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).t" + "rim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'\"'+t.slice(zr+1)+'\"'}:{exp:t,key:n" + "ull};for(Hr=t,zr=Wr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(Wr=zr;!ce();)if(" + "t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Vr);return{exp:t.slice(0,Wr)" + ",key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+\"=\"+e:\"$set(\"+n.exp+\", \"+n.key+\", \"+e+\")\"" + "}function se(){return Hr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||" + "39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(" + "o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){va" + "r r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener" + "(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTas" + "k||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.e" + "lm,function(t){if(e(t[bi])){var n=Pn?\"change\":\"input\";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi" + "]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void" + " 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps|" + "|{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]=\"\");f" + "or(i in u){if(o=u[i],\"textContent\"===i||\"innerHTML\"===i){if(r.children&&(r.children.length=0),o=" + "==s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if(\"value\"===i){a._value=o" + ";var l=t(o)?\"\":String(o);p=l,!(f=a).composing&&(\"OPTION\"===f.tagName||function(t,e){var n=!0;try" + "{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t" + "._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==" + "n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);retu" + "rn t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):\"string\"==typeof" + " t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle" + ")&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data." + "style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.com" + "ponentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n" + ");for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,\"" + "\");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?\"\":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.cla" + "ssList)e.indexOf(\" \")>-1?e.split(/\\s+/).forEach(function(e){return t.classList.add(e)}):t.classLi" + "st.add(e);else{var n=\" \"+(t.getAttribute(\"class\")||\"\")+\" \";n.indexOf(\" \"+e+\" \")<0&&t.set" + "Attribute(\"class\",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(\" " + "\")>-1?e.split(/\\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.cl" + "assList.length||t.removeAttribute(\"class\");else{for(var n=\" \"+(t.getAttribute(\"class\")||\"\")+" + "\" \",r=\" \"+e+\" \";n.indexOf(r)>=0;)n=n.replace(r,\" \");(n=n.trim())?t.setAttribute(\"class\",n)" + ":t.removeAttribute(\"class\")}}function be(t){if(t){if(\"object\"==typeof t){var e={};return!1!==t.c" + "ss&&v(e,Ei(t.name||\"v\")),v(e,t),e}return\"string\"==typeof t?Ei(t):void 0}}function we(t){Ri(funct" + "ion(){Ri(t)})}function $e(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&" + "&(n.push(e),ye(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}functi" + "on ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ii?Ni:Mi,c=" + "0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(f" + "unction(){c0&&(n=Ii,l=a,f=o.leng" + "th):e===Di?u>0&&(n=Di,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ii:Di:null)?n===Ii?o.length:c.len" + "gth:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ii&&Bi.test(r[Fi+\"Property\"])}}function Ae(t," + "e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Oe(e)}function Ie(t,e,n){De(t,e,n),(Pn||Rn)&&se" + "tTimeout(function(){De(t,e,n)},0)}function De(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray" + "(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&" + "(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.select" + "edIndex=-1)}}function Fe(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return\"_val" + "ue\"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t" + ".target.composing=!1,Re(t.target,\"input\"))}function Re(t,e){var n=document.createEvent(\"HTMLEvent" + "s\");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.da" + "ta.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&" + "e.Ctor.options.abstract?Ue(Q(e.children)):t}function He(t){var e={},n=t.$options;for(var r in n.prop" + "sData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/" + "\\d-keep-alive$/.test(e.tag))return t(\"keep-alive\",{props:e.componentOptions.propsData})}function " + "ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t" + ".elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top" + "-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform=\"translate(\"+r+\"p" + "x,\"+i+\"px)\",o.transitionDuration=\"0s\"}}function Je(t,e){var n=e?jo:To;return t.replace(n,functi" + "on(t){return Oo[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var" + " e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(\" \")>0}var vn=Object.f" + "reeze({}),mn=Object.prototype.toString,gn=u(\"slot,component\",!0),yn=u(\"key,ref,slot,slot-scope,is" + "\"),_n=Object.prototype.hasOwnProperty,bn=/-(\\w)/g,wn=p(function(t){return t.replace(bn,function(t," + "e){return e?e.toUpperCase():\"\"})}),$n=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)})," + "xn=/\\B([A-Z])/g,kn=p(function(t){return t.replace(xn,\"-$1\").toLowerCase()}),Cn=function(t,e,n){re" + "turn!1},An=function(t){return t},Sn=\"data-server-rendered\",On=[\"component\",\"directive\",\"filte" + "r\"],Tn=[\"beforeCreate\",\"created\",\"beforeMount\",\"mounted\",\"beforeUpdate\",\"updated\",\"bef" + "oreDestroy\",\"destroyed\",\"activated\",\"deactivated\",\"errorCaptured\"],jn={optionMergeStrategie" + "s:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHa" + "ndler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnkn" + "ownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:Tn},En=/[^\\w" + ".$]/,Ln=\"__proto__\"in{},In=\"undefined\"!=typeof window,Dn=\"undefined\"!=typeof WXEnvironment&&!!" + "WXEnvironment.platform,Fn=Dn&&WXEnvironment.platform.toLowerCase(),Nn=In&&window.navigator.userAgent" + ".toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf(\"msie 9.0\")>0,Rn=Nn&&Nn.indexOf(\"" + "edge/\")>0,Bn=Nn&&Nn.indexOf(\"android\")>0||\"android\"===Fn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)" + "||\"ios\"===Fn,Hn=(Nn&&/chrome\\/\\d+/.test(Nn),{}.watch),Vn=!1;if(In)try{var zn={};Object.definePro" + "perty(zn,\"passive\",{get:function(){Vn=!0}}),window.addEventListener(\"test-passive\",null,zn)}catc" + "h(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!In&&\"undefined\"!=typeof global&&\"server\"=" + "==global.process.env.VUE_ENV),Wn},Kn=In&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn=\"undefined\"!=typeo" + "f Symbol&&x(Symbol)&&\"undefined\"!=typeof Reflect&&x(Reflect.ownKeys);qn=\"undefined\"!=typeof Set&" + "&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){" + "return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){thi" + "s.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype." + "addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototyp" + "e.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this" + ".subs.slice(),e=0,n=t.length;eSr&&$r[n].id>t.id;)n--;$r.splice(n+1,0,t)}else $r.push(t" + ");Cr||(Cr=!0,z(ut))}}(this)},Tr.prototype.run=function(){if(this.active){var t=this.get();if(t!==thi" + "s.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}c" + "atch(t){B(t,this.vm,'callback for watcher \"'+this.expression+'\"')}else this.cb.call(this.vm,t,e)}}" + "},Tr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Tr.prototype.depend=function" + "(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Tr.prototype.teardown=function(){if(this.a" + "ctive){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.dep" + "s[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0" + "};Ct(At.prototype);var Lr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDe" + "stroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_pare" + "ntElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRende" + "rFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data." + "keepAlive){var o=t;Lr.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e," + "n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$option" + "s._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.da" + "ta&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props," + "s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0" + ",o=n.length;iparseInt(this.max)&&Ft(a,s[0],s," + "this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return" + " jn},Object.defineProperty(t,\"config\",e),t.util={warn:Gn,extend:v,mergeOptions:F,defineReactive:O}" + ",t.set=T,t.delete=j,t.nextTick=z,t.options=Object.create(null),On.forEach(function(e){t.options[e+\"" + "s\"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this" + "._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);" + "return n.unshift(this),\"function\"==typeof t.install?t.install.apply(t,n):\"function\"==typeof t&&t" + ".apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=F(this.options,t),this},funct" + "ion(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[" + "r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.c" + "reate(n.prototype)).constructor=a,a.cid=e++,a.options=F(n.options,t),a.super=n,a.options.props&&func" + "tion(t){var e=t.options.props;for(var n in e)lt(t.prototype,\"_props\",n)}(a),a.options.computed&&fu" + "nction(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mix" + "in=n.mixin,a.use=n.use,On.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOpti" + "ons=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,On.forEach(functio" + "n(t){n[t]=function(e,n){return n?(\"component\"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.ex" + "tend(n)),\"directive\"===t&&\"function\"==typeof n&&(n={bind:n,update:n}),this.options[t+\"s\"][e]=n" + ",n):this.options[t+\"s\"][e]}});var n}(Et),Object.defineProperty(Et.prototype,\"$isServer\",{get:Jn}" + "),Object.defineProperty(Et.prototype,\"$ssrContext\",{get:function(){return this.$vnode&&this.$vnode" + ".ssrContext}}),Et.version=\"2.5.13\";var Ur,Hr,Vr,zr,Wr,qr,Jr,Kr,Xr=u(\"style,class\"),Gr=u(\"input," + "textarea,option,select,progress\"),Zr=function(t,e,n){return\"value\"===n&&Gr(t)&&\"button\"!==e||\"" + "selected\"===n&&\"option\"===t||\"checked\"===n&&\"input\"===t||\"muted\"===n&&\"video\"===t},Yr=u(" + "\"contenteditable,draggable,spellcheck\"),Qr=u(\"allowfullscreen,async,autofocus,autoplay,checked,co" + "mpact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,fo" + "rmnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade," + "novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,tran" + "slate,truespeed,typemustmatch,visible\"),ti=\"http://www.w3.org/1999/xlink\",ei=function(t){return\"" + ":\"===t.charAt(5)&&\"xlink\"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):\"\"},r" + "i=function(t){return null==t||!1===t},ii={svg:\"http://www.w3.org/2000/svg\",math:\"http://www.w3.or" + "g/1998/Math/MathML\"},oi=u(\"html,body,base,head,link,meta,style,title,address,article,aside,footer," + "header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol" + ",p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,st" + "rong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscr" + "ipt,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,labe" + "l,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary," + "content,element,shadow,template,blockquote,iframe,tfoot\"),ai=u(\"svg,animate,circle,clippath,cursor" + ",defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path," + "pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view\",!0),si=function(t){return" + " oi(t)||ai(t)},ci=Object.create(null),ui=u(\"text,number,password,search,email,tel,url\"),li=Object." + "freeze({createElement:function(t,e){var n=document.createElement(t);return\"select\"!==t?n:(e.data&&" + "e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute(\"multiple\",\"multiple\"),n)},createEl" + "ementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return do" + "cument.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:f" + "unction(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function" + "(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t" + ".nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},se" + "tAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t," + "e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr(\"\",{},[]),d" + "i=[\"create\",\"activate\",\"update\",\"remove\",\"destroy\"],hi={create:zt,update:zt,destroy:functi" + "on(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt}" + ",_i=/[\\w).+\\-_$\\]]/,bi=\"__r\",wi=\"__c\",$i={create:de,update:de},xi={create:he,update:he},ki=p(" + "function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\\))/g).forEach(function(t){if(t){var r=t.sp" + "lit(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\\s*!important$/,Si=function(t,e" + ",n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,\"" + "\"),\"important\");else{var r=Ti(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e" + "(d)?(e(r.text)&&C.setTextContent(c,\"\"),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.te" + "xt)&&C.setTextContent(c,\"\"):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.p" + "ostpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(va" + "r o=0;o-1?ci[t]=e.constructor===window" + ".HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString()" + ")},v(Et.options.directives,Vi),v(Et.options.components,Ji),Et.prototype.__patch__=In?Ui:g,Et.prototy" + "pe.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(" + "t,\"beforeMount\");return new Tr(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vno" + "de&&(t._isMounted=!0,ct(t,\"mounted\")),t}(this,t=t&&In?Bt(t):void 0,e)},Et.nextTick(function(){jn.d" + "evtools&&Kn&&Kn.emit(\"init\",Et)},0);var Ki,Xi=/\\{\\{((?:.|\\n)+?)\\}\\}/g,Gi=/[-.*+?^${}()|[\\]" + "\\/\\\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,\"\\\\$&\"),n=t[1].replace(Gi,\"\\\\$&\");return n" + "ew RegExp(e+\"((?:.|\\\\n)+?)\"+n,\"g\")}),Yi={staticKeys:[\"staticClass\"],transformNode:function(t" + ",e){e.warn;var n=ie(t,\"class\");n&&(t.staticClass=JSON.stringify(n));var r=re(t,\"class\",!1);r&&(t" + ".classBinding=r)},genData:function(t){var e=\"\";return t.staticClass&&(e+=\"staticClass:\"+t.static" + "Class+\",\"),t.classBinding&&(e+=\"class:\"+t.classBinding+\",\"),e}},Qi={staticKeys:[\"staticStyle" + "\"],transformNode:function(t,e){e.warn;var n=ie(t,\"style\");n&&(t.staticStyle=JSON.stringify(ki(n))" + ");var r=re(t,\"style\",!1);r&&(t.styleBinding=r)},genData:function(t){var e=\"\";return t.staticStyl" + "e&&(e+=\"staticStyle:\"+t.staticStyle+\",\"),t.styleBinding&&(e+=\"style:(\"+t.styleBinding+\"),\")," + "e}},to=u(\"area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr" + "\"),eo=u(\"colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source\"),no=u(\"address,article,aside,b" + "ase,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,foot" + "er,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,r" + "p,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track\"),ro=/^\\s*([^\\s\"'<>\\/=]+)(?:" + "\\s*(=)\\s*(?:\"([^\"]*)\"+|'([^']*)'+|([^\\s\"'=<>`]+)))?/,io=\"[a-zA-Z_][\\\\w\\\\-\\\\.]*\",oo=\"" + "((?:\"+io+\"\\\\:)?\"+io+\")\",ao=new RegExp(\"^<\"+oo),so=/^\\s*(\\/?)>/,co=new RegExp(\"^<\\\\/\"+" + "oo+\"[^>]*>\"),uo=/^]+>/i,lo=/^/g,\"$1\").replace(//g,\"$1\")),Lo(p,n)&&(n=n.slice(1)" + "),e.chars&&e.chars(n),\"\"});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf(\"<\");if(0===" + "v){if(lo.test(t)){var m=t.indexOf(\"--\\x3e\");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4" + ",m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf(\"]>\");if(g>=0){n(g+2);continue}}var y=t.match" + "(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);contin" + "ue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for" + "(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=" + "i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&(\"p\"===o&&n" + "o(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for(x=t.slice(v);!(co.test(x)||ao.test(x)||lo.test(x)||fo.test(x)||(k" + "=x.indexOf(\"<\",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=\"\"),e.chars&&$&&e.c" + "hars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.is" + "UnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecod" + "eNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){va" + "r l=i&&i.ns||wo(t);Pn&&\"svg\"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(" + "c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push(\"_s(\"+u+\")\"),s.push({\"@binding\":" + "u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;va" + "r n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for" + "(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?\"ident\":e>=49&&e<=57?\"number\":\"else\"}funct" + "ion d(t){var e=t.trim();return(\"0\"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.c" + "harCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):\"*\"+e);var n}" + "var h,v=Object.prototype.toString,m=\"[object Object]\",g=Object.prototype.hasOwnProperty,y=\"undefi" + "ned\"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_=\"undefined\"!=typeof Intl&&void 0!==Intl.NumberF" + "ormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if" + "(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),O" + "bject.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,th" + "is._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=" + "!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=t" + "his.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=t" + "his.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON" + ".parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watch" + "I18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n" + ".sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$roo" + "t.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subsc" + "ribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i" + "18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._s" + "ubscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(" + "this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete thi" + "s._localeWatcher),this._i18n=null)}},w={name:\"i18n\",functional:!0,props:{tag:{type:String,default:" + "\"span\"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:f" + "unction(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){re" + "turn t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array" + ".isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=" + "t.data.attrs.place;return void 0!==e&&\"\"!==e}});return f&&o.length>0&&!p&&t(\"If places prop is se" + "t, all child elements must have place prop set.\"),Array.isArray(l)?l.forEach(function(t,e){u[e]=t})" + ":Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?\"\"+t.data.attrs.pl" + "ace:\"\"+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototy" + "pe.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r=\"\";" + "n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if" + "(u++,\"\\\\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&\"'\"===e||l===L&&'\"'===e)return u++,r" + "=\"\\\\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=F[l])[i]||s.else||D)===D)return;if(l=o[0],(a=h[o[1]])&&(r=" + "o[2],r=void 0===r?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototyp" + "e.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0" + "===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListene" + "rs,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch(\"$data\",function(){f" + "or(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e]" + ".$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return" + " null;var t=this._vm;return this._root.vm.$watch(\"locale\",function(e){t.$set(t,\"locale\",e),t.$fo" + "rceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return " + "a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.num" + "berFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._v" + "m.locale},R.locale.set=function(t){this._vm.$set(this._vm,\"locale\",t)},R.fallbackLocale.get=functi" + "on(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,\"fallb" + "ackLocale\",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missi" + "ng=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter" + "=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWa" + "rn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._v" + "m.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype." + "_getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n," + "i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=fun" + "ction(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s" + "){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){i" + "f(!n(e))return null;if(\"string\"!=typeof(u=e[i]))return null}else{if(\"string\"!=typeof c)return nu" + "ll;u=c}return u.indexOf(\"@:\")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype" + "._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\\w\\-_|.]+)/g);for(var c in s)if(s.hasOwnProper" + "ty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,\"raw\"===i?\"string\":i,\"raw\"===i?voi" + "d 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error(\"unexpected error\");var p=this._root" + ";f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))" + "?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t," + "n);return\"string\"===e?r.join(\"\"):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._i" + "nterpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype." + "_t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return\"\";" + "var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,\"string\",s.par" + "ams);if(this._isFallbackRoot(u)){if(!this._root)throw Error(\"unexpected error\");return(l=this._roo" + "t).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(v" + "ar e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,th" + "is._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n" + ",e,this.fallbackLocale,t,r,\"raw\",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error(\"unexp" + "ected error\");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(" + "t,e,n){return t?(\"string\"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):\"\"" + "},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];" + "return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):\"\";var c},M.prototype.t" + "c=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.app" + "ly(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){fo" + "r(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return" + " this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages()" + ",e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLoc" + "aleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._" + "vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){" + "return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.date" + "TimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.e" + "xtend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e," + "s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+\"__\"+o,l=this._da" + "teTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(" + "t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._loc" + "alizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!" + "this._root)throw Error(\"unexpected error\");return this._root.d(t,n,e)}return r||\"\"},M.prototype." + "d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null" + ";return 1===n.length?\"string\"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&" + "&(o=n[0].key)):2===n.length&&(\"string\"==typeof n[0]&&(o=n[0]),\"string\"==typeof n[1]&&(i=n[1])),t" + "his._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.pr" + "ototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=fun" + "ction(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._lo" + "calizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))retur" + "n null;var c=s[o],u=a+\"__\"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=ne" + "w Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFo" + "rmat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(" + "this._isFallbackRoot(r)){if(!this._root)throw Error(\"unexpected error\");return this._root.n(t,n,e)" + "}return r||\"\"},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[" + "r+1];var i=this.locale,o=null;return 1===n.length?\"string\"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].loca" + "le&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&(\"string\"==typeof n[0]&&(o=n[0]),\"strin" + "g\"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities=" + "{dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(\"." + "\")[0]),t.installed=!0,Object.defineProperty(h.prototype,\"$i18n\",{get:function(){return this._i18n" + "}}),n=h,Object.defineProperty(n.prototype,\"$t\",{get:function(){var t=this;return function(e){for(v" + "ar n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.loca" + "le,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,\"$tc\",{get:function(){var " + "t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i" + "18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.pr" + "ototype,\"$te\",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.local" + "e,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,\"$d\",{get:function(){var t=this;return" + " function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply" + "(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,\"$n\",{get:function(){var t=this;retu" + "rn function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.app" + "ly(i,[e].concat(n));var i}}}),h.mixin(b),h.directive(\"t\",{bind:c,update:u}),h.component(w.name,w);" + "var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version=\"7.3.3\",\"undefined\"!=typeof w" + "indow&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:\"Stairs\",systemID:\"System ID\",f" + "irmwareVersion:\"Firmware version: \",copyright:\"Copyright © 2017 Mark van Renswoude\",loading:\"Pl" + "ease wait, loading configuration...\",applyButton:\"Apply\",applyButtonSaving:\"Saving...\",wifiStat" + "us:{accesspoint:{title:\"AP: \",disabled:\"Disabled\"},stationmode:{title:\"WiFi: \",disabled:\"Disa" + "bled\",idle:\"Idle\",noSSID:\"SSID not found\",scanCompleted:\"Scan completed\",connectFailed:\"Fail" + "ed to connect\",connectionLost:\"Connection lost\",disconnected:\"Disconnected\"}},status:{tabTitle:" + "\"Status\",title:\"Current status\"},triggers:{tabTitle:\"Triggers\",timeTitle:\"Time\",motionTitle:" + "\"Motion\"},connection:{tabTitle:\"Connection\",title:\"Connection parameters\",accesspoint:\"Enable" + " access point\",accesspointHint:\"Allows for a direct connection from your device to this Stairs mod" + "ule for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when yo" + "u are connected to it. Turn it off as soon as station mode is configured, as it is not secured in an" + "y way. You can always turn this option back on by pushing the access point button until the LED ligh" + "ts up.\",stationmode:\"Enable station mode\",stationmodeHint:\"Connect this Stairs module to your ow" + "n WiFi router. Please enter the SSID, password and further configuration below.\",ssid:\"SSID\",pass" + "word:\"Password\",dhcp:\"Use DHCP\",dhcpHint:\"Automatically assigns an IP address to this Stairs mo" + "dule. You probably want to keep this on unless you know what you're doing.\",ipaddress:\"IP address" + "\",subnetmask:\"Subnet mask\",gateway:\"Gateway\",hostname:\"Hostname\",hostnamePlaceholder:\"Defaul" + "t: mac address\"}},nl:{title:\"Trap\",systemID:\"Systeem ID\",firmwareVersion:\"Firmware versie: \"," + "copyright:\"Copyright © 2017 Mark van Renswoude\",loading:\"Een ogenblik geduld, bezig met laden van" + " configuratie...\",applyButton:\"Apply\",applyButtonSaving:\"Saving...\",wifiStatus:{accesspoint:{ti" + "tle:\"AP: \",disabled:\"Uitgeschakeld\"},stationmode:{title:\"WiFi: \",disabled:\"Uitgeschakeld\",id" + "le:\"Slaapstand\",noSSID:\"SSID niet gevonden\",scanCompleted:\"Scan afgerond\",connectFailed:\"Kan " + "geen verbinding maken\",connectionLost:\"Verbinding verloren\",disconnected:\"Niet verbonden\"}},sta" + "tus:{tabTitle:\"Status\",title:\"Huidige status\"},triggers:{tabTitle:\"Triggers\",timeTitle:\"Tijd" + "\",motionTitle:\"Beweging\"},connection:{tabTitle:\"Verbinding\",title:\"Verbinding configuratie\",a" + "ccesspoint:\"Access point inschakelen\",accesspointhint:\"Maakt het mogelijk om een directe connecti" + "e vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is " + "te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het " + "configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access" + " point knop te drukken totdat de LED aan gaat.\",stationmode:\"Verbinding met WiFi maken\",stationmo" + "dehint:\"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in," + " en configureer eventuel de overige opties.\",ssid:\"SSID\",password:\"Wachtwoord\",dhcp:\"Gebruik D" + "HCP\",dhcphint:\"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze" + " optie aan laten, tenzij je weet waar je mee bezig bent.\",ipaddress:\"IP adres\",subnetmask:\"Subne" + "t masker\",gateway:\"Gateway\",hostname:\"Hostnaam\",hostnamePlaceholder:\"Standaard: mac adres\"}}}" + ";function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:\"en\",messages:mes" + "sages});new Vue({el:\"#app\",i18n:t,data:{loading:!0,saving:!1,loadingIndicator:\"|\",activeTab:\"st" + "atus\",version:{systemID:\"loading...\",version:\"loading...\"},wifiStatus:{ap:{enabled:!1,ip:\"0.0." + "0.0\"},station:{enabled:!1,status:0,ip:\"0.0.0.0\"}},connection:{hostname:null,accesspoint:!0,statio" + "n:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},steps:[{value:50},{value:" + "0},{value:0},{value:0},{value:0},{value:70},{value:0},{value:0},{value:0},{value:0},{value:25},{valu" + "e:0},{value:0},{value:0}]},created:function(){var e=this;document.title=t.t(\"title\"),e.startLoadin" + "gIndicator(),e.updateWiFiStatus(),setInterval(e.updateWiFiStatus,5e3),axios.get(\"/api/version\").th" + "en(function(t){\"object\"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),ax" + "ios.all([axios.get(\"/api/connection\").then(function(t){\"object\"==typeof t.data&&(e.connection=t." + "data)}).catch(function(t){console.log(t)})]).then(axios.spread(function(t,n){e.stopLoadingIndicator(" + "),e.loading=!1}))},methods:{applyConnection:function(){var t=this;t.saving||(t.saving=!0,axios.post(" + "\"/api/connection\",{hostname:t.connection.hostname,accesspoint:t.connection.accesspoint,station:t.c" + "onnection.station,ssid:t.connection.ssid,password:t.connection.password,dhcp:t.connection.dhcp,ip:t." + "connection.ip,subnetmask:t.connection.subnetmask,gateway:t.connection.gateway}).then(function(t){})." + "catch(function(t){console.log(t)}).then(function(){t.saving=!1}))},startLoadingIndicator:function(){" + "var t=this;t.loadingStage=0,t.loadingTimer=setInterval(function(){switch(t.loadingStage++,console.lo" + "g(t.loadingStage),t.loadingStage){case 1:t.loadingIndicator=\"/\";break;case 2:t.loadingIndicator=\"" + "-\";break;case 3:t.loadingIndicator=\"\\\\\";break;case 4:t.loadingIndicator=\"|\",t.loadingStage=0}" + "},250)},stopLoadingIndicator:function(){clearInterval(this.loadingTimer)},getWiFiStationStatus:funct" + "ion(){if(!this.wifiStatus.station.enabled)return\"disconnected\";switch(this.wifiStatus.station.stat" + "us){case 0:case 2:return\"connecting\";case 1:case 4:case 5:return\"error\";case 3:return\"connected" + "\";case 6:default:return\"disconnected\"}},getWiFiStationStatusText:function(){if(!this.wifiStatus.s" + "tation.enabled)return t.t(\"wifiStatus.stationmode.disabled\");switch(this.wifiStatus.station.status" + "){case 0:return t.t(\"wifiStatus.stationmode.idle\");case 1:return t.t(\"wifiStatus.stationmode.noSS" + "ID\");case 2:return t.t(\"wifiStatus.stationmode.scanCompleted\");case 3:return this.wifiStatus.stat" + "ion.ip;case 4:return t.t(\"wifiStatus.stationmode.connectFailed\");case 5:return t.t(\"wifiStatus.st" + "ationmode.connectionLost\");case 6:default:return t.t(\"wifiStatus.stationmode.disconnected\")}},upd" + "ateWiFiStatus:function(){var t=this;t.saving||axios.get(\"/api/connection/status\").then(function(e)" + "{\"object\"==typeof e.data&&(t.wifiStatus=e.data)}).catch(function(t){console.log(t)})}}})}"; + +#endif diff --git a/src/assets/version.h b/src/assets/version.h new file mode 100644 index 0000000..76ae8d0 --- /dev/null +++ b/src/assets/version.h @@ -0,0 +1,14 @@ +#ifndef __assets_version +#define __assets_version + +const uint8_t VersionMajor = 2; +const uint8_t VersionMinor = 0; +const uint8_t VersionPatch = 0; +const uint8_t VersionMetadata = 0; +const char VersionBranch[] = "release/2.0"; +const char VersionSha[] = "3099dd8a0e2e5fa771e6a864a1daa83de5998df0"; +const char VersionSemVer[] = "2.0.0-beta.1"; +const char VersionFullSemVer[] = "2.0.0-beta.1+0"; +const char VersionCommitDate[] = "2017-10-05"; + +#endif diff --git a/src/charproperties.cpp b/src/charproperties.cpp new file mode 100644 index 0000000..9c651e6 --- /dev/null +++ b/src/charproperties.cpp @@ -0,0 +1,26 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "charproperties.h" +#include +#include +#include "debug.h" + +void CharProperties::assignChar(char** field, const char* newValue) +{ + if (*field != NULL) + delete *field; + + if (newValue != NULL) + { + // Include the terminating null character + size_t length = strlen(newValue) + 1; + *field = new char[length]; + strncpy(*field, newValue, length); + } + else + *field = NULL; +} \ No newline at end of file diff --git a/src/charproperties.h b/src/charproperties.h new file mode 100644 index 0000000..3ef9df4 --- /dev/null +++ b/src/charproperties.h @@ -0,0 +1,18 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __charproperties +#define __charproperties + +#include + +class CharProperties +{ + protected: + void assignChar(char** field, const char* newValue); +}; + +#endif \ No newline at end of file diff --git a/src/config.h b/src/config.h index c7ee869..c0569d5 100644 --- a/src/config.h +++ b/src/config.h @@ -1,26 +1,20 @@ -#ifndef __Config -#define __Config +#ifndef __config +#define __config -#include #include -#include "credentials.h" + +#define SerialDebug +static const uint32_t SerialDebugBaudrate = 115200; +static const uint32_t SerialDebugStartupDelay = 2000; -//#define SerialDebug - - -// The name of this device on the network -static const char* WiFiHostname = "Stairs"; - - -// The number of steps (assumed to be <= 16, as the code currently only controls 1 PCA9685 board) -static const uint8_t StepCount = 14; - - -// The port number on which the UDP server listens -static const uint16_t UDPPort = 3126; +static const char* ConnectionSettingsFile = "/settings.json"; +static const char* DefaultAPSSIDPrefix = "Stairs-"; + +static const uint32_t StationModeTimeout = 30000; +/* // Pins for the I2C bus static const uint8_t PinSDA = 13; static const uint8_t PinSCL = 12; @@ -29,28 +23,6 @@ static const uint8_t PinSCL = 12; // I2C address and PWM frequency of the PCA9685 board static const uint8_t PWMDriverAddress = 0x40; static const uint16_t PWMDriverPWMFrequency = 1600; - - -// Determines if OTA firmware updates are enabled -// 0 - Disabled -// 1 - Enabled (fixed URL) -// 2 - Enabled (use URL in command) -static const uint8_t OTAUpdateEnabled = 2; - -static const char* OTAUpdateFixedHost = ""; -static const uint16_t OTAUpdateFixedPort = 80; -static const char* OTAUpdateFixedPath = "/"; - -// The minimum amount of time (in milliseconds) between update requests -static const uint32_t OTAUpdateThrottle = 5000; - - -#ifdef SerialDebug -#define _d(msg) Serial.print(msg) -#define _dln(msg) Serial.println(msg) -#else -#define _d(msg) do { } while (0) -#define _dln(msg) do { } while (0) -#endif +*/ #endif \ No newline at end of file diff --git a/src/credentials.example.h b/src/credentials.example.h deleted file mode 100644 index b77597e..0000000 --- a/src/credentials.example.h +++ /dev/null @@ -1,3 +0,0 @@ -// Create a copy of this file called "credentials.h" -static const char* WiFiSSID = "example"; -static const char* WiFiPassword = "example"; \ No newline at end of file diff --git a/src/debug.cpp b/src/debug.cpp new file mode 100644 index 0000000..a43be50 --- /dev/null +++ b/src/debug.cpp @@ -0,0 +1,17 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "debug.h" + + +void _dinit() +{ + #ifdef SerialDebug + Serial.begin(SerialDebugBaudrate); + Serial.setDebugOutput(true); + delay(SerialDebugStartupDelay); + #endif +} \ No newline at end of file diff --git a/src/debug.h b/src/debug.h new file mode 100644 index 0000000..f722331 --- /dev/null +++ b/src/debug.h @@ -0,0 +1,24 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __serialdebug +#define __serialdebug + +#include "config.h" +#include + +void _dinit(); + +#ifdef SerialDebug + #define _d(msg) Serial.print(msg) + #define _dln(msg) Serial.println(msg) +#else + #define _d(msg) do { } while (0) + #define _dln(msg) do { } while (0) +#endif + + +#endif \ No newline at end of file diff --git a/src/global.cpp b/src/global.cpp new file mode 100644 index 0000000..ed8fd77 --- /dev/null +++ b/src/global.cpp @@ -0,0 +1,15 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "global.h" + +ConnectionSettings* connectionSettings = new ConnectionSettings(); +bool connectionSettingsChanged = false; + +uint32_t currentTime; + + +IPAddress emptyIP(0, 0, 0, 0); diff --git a/src/global.h b/src/global.h new file mode 100644 index 0000000..1931b61 --- /dev/null +++ b/src/global.h @@ -0,0 +1,21 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __global +#define __global + +#include +#include +#include +#include "settings/connection.h" + +extern ConnectionSettings* connectionSettings; +extern bool connectionSettingsChanged; +extern uint32_t currentTime; + +extern IPAddress emptyIP; + +#endif \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp index e5b5fd1..24198fb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,28 +1,225 @@ /* * Stairs lighting * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs */ -#include -#include +#include #include -#include -#include +#include +#include + +extern "C" { + #include +} #include "config.h" -#include "protocol.h" -#include "components\PCA9685.h" -//#include "modes\adc.h" -#include "modes\alternate.h" -#include "modes\custom.h" -#include "modes\slide.h" -#include "modes\static.h" -#include "stairs.h" -#include "version.h" +#include "debug.h" +#include "settings/connection.h" +#include "global.h" +#include "server/static.h" +#include "server/api.h" -PCA9685* pwmDriver; -Stairs* stairs; -WiFiUDP udpServer; +ADC_MODE(ADC_VCC); + +// Forward declarations +void initWiFi(); +#ifdef SerialDebug +void wifiEvent(WiFiEvent_t event); +#endif +void updateLED(); + +void startServer(); +void stopServer(); +void handleNotFound(AsyncWebServerRequest* request); + + +AsyncWebServer server(80); +bool accessPoint = false; +bool stationMode = false; +bool forceAccessPoint = false; + +uint32_t stationModeStart = 0; + + +void setup() +{ + _dinit(); + currentTime = millis(); + + if (!SPIFFS.begin()) + _dln("Setup :: failed to mount file system"); + + connectionSettings->read(); + + _dln("Setup :: initializing WiFi"); + WiFi.persistent(false); + WiFi.mode(WIFI_OFF); + + #ifdef SerialDebug + // onEvent is already deprecated, but since I'm only using it + // for debug purposes we'll see how long it lasts... + WiFi.onEvent(wifiEvent); + _d("WiFi :: MAC address: "); + _dln(WiFi.macAddress()); + #endif + + initWiFi(); + + _dln("Setup :: registering routes"); + registerStaticRoutes(&server); + registerAPIRoutes(&server); + + _dln("Setup :: starting HTTP server"); + server.onNotFound(handleNotFound); + server.begin(); +} + + +void loop() +{ + currentTime = millis(); + + if (connectionSettingsChanged) + { + _dln("Loop :: connection settings changed"); + initWiFi(); + connectionSettingsChanged = false; + } + + + if (stationModeStart > 0) + { + bool isConnected = WiFi.status() == WL_CONNECTED; + + if (isConnected) + { + _d("WiFi :: connected, IP address: "); + _dln(WiFi.localIP()); + + stationModeStart = 0; + } + else if (stationMode && accessPoint && + currentTime - stationModeStart >= StationModeTimeout) + { + _dln("WiFi :: unable to connect, switching off station mode, status:"); + _dln(WiFi.status()); + + #ifdef SerialDebug + WiFi.printDiag(Serial); + #endif + + // Connecting to access point is taking too long and is blocking + // the access point mode, stop trying + stationMode = false; + WiFi.disconnect(); + WiFi.mode(WIFI_AP); + } + } + + updateLED(); +} + + +void initWiFi() +{ + WiFi.disconnect(); + WiFi.softAPdisconnect(); + + accessPoint = connectionSettings->flag(AccessPoint) || forceAccessPoint; + stationMode = connectionSettings->flag(StationMode) && connectionSettings->ssid() != NULL; + + WiFi.mode(accessPoint && stationMode ? WIFI_AP_STA : + accessPoint ? WIFI_AP : + stationMode ? WIFI_STA : + WIFI_OFF); + + if (accessPoint) + { + _dln("WiFi :: starting access point"); + String ssidString = DefaultAPSSIDPrefix + String(ESP.getChipId(), HEX); + if (WiFi.softAP((const char *)ssidString.c_str())) + { + _d("WiFi :: IP address: "); + _dln(WiFi.softAPIP()); + } + else + _d("WiFi :: failed to start soft access point"); + } + + if (stationMode) + { + _d("WiFi :: starting station mode to: "); + _dln(connectionSettings->ssid()); + + stationModeStart = currentTime; + + if (WiFi.begin(connectionSettings->ssid(), connectionSettings->password())) + { + if (connectionSettings->flag(DHCP)) + // I've had the same issue as described here with config(0, 0, 0): + // https://stackoverflow.com/questions/40069654/how-to-clear-static-ip-configuration-and-start-dhcp + wifi_station_dhcpc_start(); + else + WiFi.config(connectionSettings->ip(), connectionSettings->gateway(), connectionSettings->subnetMask()); + } + else + _d("WiFi :: failed to start station mode"); + } +} + + +#ifdef SerialDebug +void wifiEvent(WiFiEvent_t event) +{ + switch (event) + { + case WIFI_EVENT_STAMODE_CONNECTED: + _dln("WiFi:: station mode: connected"); break; + + case WIFI_EVENT_STAMODE_DISCONNECTED: + _dln("WiFi:: station mode: disconnected"); break; + + case WIFI_EVENT_STAMODE_AUTHMODE_CHANGE: + _dln("WiFi:: station mode: authmode change"); break; + + case WIFI_EVENT_STAMODE_GOT_IP: + _dln("WiFi:: station mode: got IP"); + _dln(WiFi.localIP()); + break; + + case WIFI_EVENT_STAMODE_DHCP_TIMEOUT: + _dln("WiFi:: station mode: DHCP timeout"); break; + + case WIFI_EVENT_SOFTAPMODE_STACONNECTED: + _dln("WiFi:: soft AP mode: station connected"); break; + + case WIFI_EVENT_SOFTAPMODE_STADISCONNECTED: + _dln("WiFi:: soft AP mode: station disconnected"); break; + } +} +#endif + + +void updateLED() +{ + //while (WiFi.status() != WL_CONNECTED) + //{ + + //} +} + + +void handleNotFound(AsyncWebServerRequest *request) +{ + _d("HTTP :: not found: "); _dln(request->url()); + request->send(404); +} + + + +/* uint8_t currentModeIdentifier; IMode* currentMode; @@ -362,4 +559,5 @@ void setCurrentMode(IMode* mode, uint8_t identifier) void handleCurrentMode() { currentMode->tick(stairs, currentTime); -} \ No newline at end of file +} +*/ \ No newline at end of file diff --git a/src/modes/alternate.cpp b/src/modes/alternate.cpp deleted file mode 100644 index 29e119a..0000000 --- a/src/modes/alternate.cpp +++ /dev/null @@ -1,27 +0,0 @@ -#include "alternate.h" -#include - - -void AlternateMode::init(IStairs* stairs, uint32_t currentTime) -{ - stairs->setAll(0); - - this->lastChange = currentTime; - this->even = false; -} - - -void AlternateMode::tick(IStairs* stairs, uint32_t currentTime) -{ - if (currentTime - this->lastChange < this->parameters.interval) - return; - - this->lastChange = currentTime; - this->even = !this->even; - - uint8_t stepCount = stairs->getCount(); - for (uint8_t step = 0; step < stepCount; step++) - { - stairs->set(step, ((step % 2) == 0) == this->even ? this->parameters.brightness : 0); - } -} \ No newline at end of file diff --git a/src/modes/alternate.h b/src/modes/alternate.h deleted file mode 100644 index 70c2c1f..0000000 --- a/src/modes/alternate.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef __AlternateMode -#define __AlternateMode - -#include -#include "base.h" -#include "../config.h" - - -struct AlternateModeParameters -{ - uint16_t interval; - uint16_t brightness; -}; - - -class AlternateMode : public BaseMode -{ - private: - uint32_t lastChange; - bool even = false; - - public: - AlternateMode() - { - parameters.interval = 500; - parameters.brightness = IStairs::On; - } - - void init(IStairs* stairs, uint32_t currentTime); - void tick(IStairs* stairs, uint32_t currentTime); -}; - -#endif \ No newline at end of file diff --git a/src/modes/base.h b/src/modes/base.h deleted file mode 100644 index 255756e..0000000 --- a/src/modes/base.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef __BaseMode -#define __BaseMode - -#include -#include -#include "../config.h" -#include "../mode.h" - - -template -class BaseMode : public IMode -{ - protected: - T parameters; - - public: - virtual void read(uint8_t* data) - { - _d("Reading parameters, size "); - _dln(sizeof(T)); - memcpy(&this->parameters, data, sizeof(T)); - } - - virtual void write(Stream* stream) - { - _d("Writing parameters, size "); - _dln(sizeof(T)); - stream->write((uint8_t*)&this->parameters, sizeof(T)); - } -}; - -#endif \ No newline at end of file diff --git a/src/modes/custom.cpp b/src/modes/custom.cpp deleted file mode 100644 index 49119e2..0000000 --- a/src/modes/custom.cpp +++ /dev/null @@ -1,29 +0,0 @@ -#include "custom.h" -#include - - -void CustomMode::read(uint8_t* data) -{ - // The packet is zeroed before we get our hands on it and - // the size should also be larger as noted in main.cpp, - // so a straight-up copy should be safe. - memcpy(this->values, data, sizeof(this->values)); -} - - -void CustomMode::write(Stream* stream) -{ - stream->write((uint8_t*)&this->values, sizeof(this->values)); -} - - -void CustomMode::init(IStairs* stairs, uint32_t currentTime) -{ - for (uint8_t step = 0; step < StepCount; step++) - stairs->set(step, this->values[step]); -} - - -void CustomMode::tick(IStairs* stairs, uint32_t currentTime) -{ -} diff --git a/src/modes/custom.h b/src/modes/custom.h deleted file mode 100644 index dd3a23e..0000000 --- a/src/modes/custom.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef __CustomMode -#define __CustomMode - -#include -#include "base.h" -#include "../config.h" - -class CustomMode : public IMode -{ - private: - uint16_t values[StepCount]; - - public: - void read(uint8_t* data); - void write(Stream* stream); - - void init(IStairs* stairs, uint32_t currentTime); - void tick(IStairs* stairs, uint32_t currentTime); -}; - -#endif \ No newline at end of file diff --git a/src/modes/slide.h b/src/modes/slide.h deleted file mode 100644 index 26885ad..0000000 --- a/src/modes/slide.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef __SlideMode -#define __SlideMode - -#include -#include "base.h" -#include "../config.h" - -class SlideMode : public IMode -{ - private: - uint16_t interval; - bool up; -}; - -#endif \ No newline at end of file diff --git a/src/modes/static.cpp b/src/modes/static.cpp deleted file mode 100644 index 7398bf2..0000000 --- a/src/modes/static.cpp +++ /dev/null @@ -1,52 +0,0 @@ -#include "static.h" - -void StaticMode::init(IStairs* stairs, uint32_t currentTime) -{ - _dln("Initializing static mode:"); - _d("currentBrightness: "); _dln(this->currentBrightness); - _d("brightness: "); _dln(this->parameters.brightness); - _d("easeTime: "); _dln(this->parameters.easeTime); - - if (this->parameters.easeTime > 0 && this->parameters.brightness != this->currentBrightness) - { - _dln("Easing..."); - - this->easeStartTime = currentTime; - this->easeStartBrightness = currentBrightness; - - if (this->parameters.brightness > this->currentBrightness) - this->easeState = Up; - else - this->easeState = Down; - } - else - { - _dln("Updating immediately..."); - this->easeState = None; - - stairs->setAll(this->parameters.brightness); - this->currentBrightness = this->parameters.brightness; - } -} - - -void StaticMode::tick(IStairs* stairs, uint32_t currentTime) -{ - if (this->easeState == None) - return; - - uint32_t elapsedTime = currentTime - this->easeStartTime; - uint32_t diff = this->easeState == Up ? this->parameters.brightness - this->easeStartBrightness : this->easeStartBrightness - this->parameters.brightness; - uint32_t delta = (diff * elapsedTime) / this->parameters.easeTime; - - this->currentBrightness = this->easeState == Up ? this->easeStartBrightness + delta : this->easeStartBrightness - delta; - - - if (elapsedTime >= this->parameters.easeTime) - { - this->currentBrightness = this->parameters.brightness; - this->easeState = None; - } - - stairs->setAll(this->currentBrightness); -} \ No newline at end of file diff --git a/src/modes/static.h b/src/modes/static.h deleted file mode 100644 index 5ee9472..0000000 --- a/src/modes/static.h +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef __StaticMode -#define __StaticMode - -#include -#include "base.h" -#include "../config.h" - - -struct StaticModeParameters -{ - uint16_t brightness; - uint16_t easeTime; -}; - -enum EaseState -{ - None, - Up, - Down -}; - - -class StaticMode : public BaseMode -{ - private: - uint16_t currentBrightness; - uint32_t easeStartTime; - uint16_t easeStartBrightness; - EaseState easeState; - - public: - StaticMode() - { - parameters.brightness = 0; - parameters.easeTime = 0; - - easeState = None; - currentBrightness = 0; - } - - void init(IStairs* stairs, uint32_t currentTime); - void tick(IStairs* stairs, uint32_t currentTime); -}; - -#endif \ No newline at end of file diff --git a/src/server/api.cpp b/src/server/api.cpp new file mode 100644 index 0000000..a8e743b --- /dev/null +++ b/src/server/api.cpp @@ -0,0 +1,101 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "api.h" +#include +#include +#include +#include "../assets/version.h" +#include "../debug.h" +#include "../global.h" +#include "../settings/connection.h" + + +void handleVersion(AsyncWebServerRequest *request) +{ + _dln("API :: version"); + + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(2)); + + JsonObject& root = jsonBuffer.createObject(); + root["systemID"] = String(ESP.getChipId(), HEX); + root["version"] = String(VersionFullSemVer) + " sha." + String(VersionSha); + + AsyncResponseStream *response = request->beginResponseStream("application/json"); + root.printTo(*response); + + request->send(response); +} + + +void handleConnectionStatus(AsyncWebServerRequest *request) +{ + _dln("API :: connection status"); + + WiFiMode_t mode = WiFi.getMode(); + + + DynamicJsonBuffer jsonBuffer((2 * JSON_OBJECT_SIZE(2)) + JSON_OBJECT_SIZE(3)); + + JsonObject& root = jsonBuffer.createObject(); + JsonObject& ap = root.createNestedObject("ap"); + ap["enabled"] = (mode == WIFI_AP || mode == WIFI_AP_STA); + ap["ip"] = WiFi.softAPIP().toString(); + + JsonObject& station = root.createNestedObject("station"); + station["enabled"] = (mode == WIFI_STA || mode == WIFI_AP_STA); + station["status"] = (uint8_t)WiFi.status(); + station["ip"] = WiFi.localIP().toString(); + + AsyncResponseStream *response = request->beginResponseStream("application/json"); + root.printTo(*response); + + request->send(response); +} + + +void handleGetConnection(AsyncWebServerRequest *request) +{ + _dln("API :: get connection"); + + AsyncResponseStream *response = request->beginResponseStream("application/json"); + connectionSettings->toJson(*response); + request->send(response); +} + + +void handlePostConnection(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total) +{ + _dln("API :: post connection"); + + bool changed; + if (connectionSettings->fromJson((char*)data, &changed)) + { + connectionSettings->write(); + + if (changed) + connectionSettingsChanged = true; + + request->send(200); + } + else + request->send(400); +} + + +void devNullRequest(AsyncWebServerRequest *request) { } +void devNullFileUpload(AsyncWebServerRequest *request, const String& filename, size_t index, uint8_t *data, size_t len, bool final) { } + + +void registerAPIRoutes(AsyncWebServer* server) +{ + server->on("/api/version", HTTP_GET, handleVersion); + + server->on("/api/connection/status", HTTP_GET, handleConnectionStatus); + + server->on("/api/connection", HTTP_GET, handleGetConnection); + server->on("/api/connection", HTTP_POST, devNullRequest, devNullFileUpload, handlePostConnection); +} \ No newline at end of file diff --git a/src/server/api.h b/src/server/api.h new file mode 100644 index 0000000..4de41f8 --- /dev/null +++ b/src/server/api.h @@ -0,0 +1,13 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __server_api +#define __server_api +#include + +void registerAPIRoutes(AsyncWebServer* server); + +#endif \ No newline at end of file diff --git a/src/server/static.cpp b/src/server/static.cpp new file mode 100644 index 0000000..8864355 --- /dev/null +++ b/src/server/static.cpp @@ -0,0 +1,35 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "static.h" +#include "../debug.h" +#include "../assets/html.h" +#include "../assets/js.h" +#include "../assets/css.h" +#include "../assets/images.h" + + +void handleStatic(AsyncWebServerRequest *request, const String& contentType, PGM_P content) +{ + _d("HTTP :: static: "); _dln(request->url()); + request->send_P(200, contentType, content); +} + + +void registerStaticRoutes(AsyncWebServer* server) +{ + server->on("/", HTTP_GET, [](AsyncWebServerRequest *request) { handleStatic(request, "text/html", EmbeddedIndex); }); + + server->on("/bundle.js", HTTP_GET, [](AsyncWebServerRequest *request) { handleStatic(request, "text/javascript", EmbeddedBundleJS); }); + server->on("/bundle.css", HTTP_GET, [](AsyncWebServerRequest *request) { handleStatic(request, "text/css", EmbeddedBundleCSS); }); + + server->on("/logo.png", HTTP_GET, [](AsyncWebServerRequest *request) + { + _d("HTTP :: static: "); _dln(request->url()); + AsyncWebServerResponse *response = request->beginResponse_P(200, "image/png", EmbeddedLogo, sizeof(EmbeddedLogo)); + request->send(response); + }); +} \ No newline at end of file diff --git a/src/server/static.h b/src/server/static.h new file mode 100644 index 0000000..285ea37 --- /dev/null +++ b/src/server/static.h @@ -0,0 +1,14 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __server_static +#define __server_static + +#include + +void registerStaticRoutes(AsyncWebServer* server); + +#endif \ No newline at end of file diff --git a/src/settings/connection.cpp b/src/settings/connection.cpp new file mode 100644 index 0000000..32bdaf1 --- /dev/null +++ b/src/settings/connection.cpp @@ -0,0 +1,149 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "connection.h" +#include +#include +#include "../debug.h" +#include "../global.h" +#include "../config.h" + + + +void ConnectionSettings::read() +{ + _dln("ConnectionSettings :: opening file"); + File settingsFile = SPIFFS.open(ConnectionSettingsFile, "r"); + if (!settingsFile) + { + _dln("ConnectionSettings :: failed to open file"); + return; + } + + size_t size = settingsFile.size(); + if (size > 1024) + { + _dln("ConnectionSettings :: file size is too large"); + return; + } + + if (size == 0) + { + _dln("ConnectionSettings :: zero size file"); + return; + } + + std::unique_ptr buf(new char[size]); + settingsFile.readBytes(buf.get(), size); + + _dln(buf.get()); + + if (fromJson(buf.get())) + _dln("ConnectionSettings :: read from file"); + else + _dln("ConnectionSettings :: failed to parse file"); +} + + +void ConnectionSettings::write() +{ + _dln("ConnectionSettings :: opening file for writing"); + File settingsFile = SPIFFS.open(ConnectionSettingsFile, "w"); + if (!settingsFile) + { + _dln("ConnectionSettings:: failed to open file for writing"); + return; + } + + toJson(settingsFile); + _dln("ConnectionSettings:: written to file"); +} + + +void ConnectionSettings::toJson(Print &print) +{ + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(9)); + + JsonObject& root = jsonBuffer.createObject(); + root["hostname"] = hostname(); + root["accesspoint"] = flag(AccessPoint); + root["station"] = flag(StationMode); + root["ssid"] = ssid(); + root["password"] = password(); + root["dhcp"] = flag(DHCP); + root["ip"] = ip() != 0 ? ip().toString() : ""; + root["subnetmask"] = subnetMask() != 0 ? subnetMask().toString() : ""; + root["gateway"] = gateway() != 0 ? gateway().toString() : ""; + + root.printTo(print); +} + + +bool ConnectionSettings::fromJson(char* data) +{ + return fromJson(data, NULL); +} + + +bool ConnectionSettings::fromJson(char* data, bool* changed) +{ + if (changed != NULL) + *changed = false; + + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(9) + 250); + JsonObject& root = jsonBuffer.parseObject(data); + + if (!root.success()) + return false; + + IPAddress jsonIP; + IPAddress jsonSubnetMask; + IPAddress jsonGateway; + + const char* jsonHostname = root["hostname"]; + bool jsonAccessPoint = root["accesspoint"]; + bool jsonStation = root["station"]; + const char* jsonSSID = root["ssid"]; + const char* jsonPassword = root["password"]; + bool jsonDHCP = root["dhcp"]; + const char* jsonIPText = root["ip"]; + const char* jsonSubnetMaskText = root["subnetmask"]; + const char* jsonGatewayText = root["gateway"]; + + if (jsonIPText == NULL || !jsonIP.fromString(jsonIPText)) jsonIP = emptyIP; + if (jsonSubnetMaskText == NULL || !jsonSubnetMask.fromString(jsonSubnetMaskText)) jsonSubnetMask = emptyIP; + if (jsonGatewayText == NULL || !jsonGateway.fromString(jsonGatewayText)) jsonGateway = emptyIP; + + + if (!(jsonAccessPoint || jsonStation)) + jsonAccessPoint = true; + + if ((jsonHostname != hostname()) || + (jsonAccessPoint != flag(AccessPoint)) || + (jsonStation != flag(StationMode)) || + (jsonSSID != ssid()) || + (jsonPassword != password()) || + (jsonDHCP != flag(DHCP)) || + (jsonIP != ip()) || + (jsonSubnetMask != subnetMask()) || + (jsonGateway != gateway())) + { + hostname(jsonHostname); + flag(AccessPoint, jsonAccessPoint); + flag(StationMode, jsonStation); + ssid(jsonSSID); + password(jsonPassword); + flag(DHCP, jsonDHCP); + ip(jsonIP); + subnetMask(jsonSubnetMask); + gateway(jsonGateway); + + if (changed != NULL) + *changed = true; + } + + return true; +} \ No newline at end of file diff --git a/src/settings/connection.h b/src/settings/connection.h new file mode 100644 index 0000000..a7dd4d8 --- /dev/null +++ b/src/settings/connection.h @@ -0,0 +1,73 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __settingsconnection +#define __settingsconnection + +#include +#include +#include +#include "../charproperties.h" + + +enum ConnectionSettingsFlags +{ + AccessPoint = 1, + StationMode = 2, + DHCP = 4 +}; + + +class ConnectionSettings : CharProperties +{ + private: + char* mHostname = NULL; + uint8_t mFlags = AccessPoint | DHCP; + char* mSSID = NULL; + char* mPassword = NULL; + IPAddress mIP = (uint32_t)0; + IPAddress mSubnetMask = (uint32_t)0; + IPAddress mGateway = (uint32_t)0; + + public: + void read(); + void write(); + + + void toJson(Print &print); + bool fromJson(char* data); + bool fromJson(char* data, bool* changed); + + + char* hostname() { return mHostname; } + void hostname(const char* value) { assignChar(&mHostname, value); } + + bool flag(ConnectionSettingsFlags flag) { return (mFlags & flag) != 0; } + void flag(ConnectionSettingsFlags flag, bool enabled) + { + if (enabled) + mFlags |= flag; + else + mFlags &= ~flag; + } + + char* ssid() { return mSSID; } + void ssid(const char* value) { assignChar(&mSSID, value); } + + char* password() { return mPassword; } + void password(const char* value) { assignChar(&mPassword, value); } + + IPAddress ip() { return mIP; } + void ip(IPAddress value) { mIP = value; } + + IPAddress subnetMask() { return mSubnetMask; } + void subnetMask(IPAddress value) { mSubnetMask = value; } + + IPAddress gateway() { return mGateway; } + void gateway(IPAddress value) { mGateway = value; } +}; + +#endif \ No newline at end of file diff --git a/src/stairs.cpp b/src/stairs.cpp index 0653b36..559a7ad 100644 --- a/src/stairs.cpp +++ b/src/stairs.cpp @@ -1,6 +1,7 @@ +#include "stairs.h" #include #include -#include "stairs.h" +#include "debug.h" @@ -19,11 +20,13 @@ void Stairs::init(PCA9685* pwmDriver) { this->useScaling = false; +/* for (uint8_t i = 0; i < StepCount; i++) { this->ranges[i].start = IStairs::Off; this->ranges[i].end = IStairs::On; } + */ this->pwmDriver = pwmDriver; @@ -35,7 +38,7 @@ void Stairs::init(PCA9685* pwmDriver) uint8_t Stairs::getCount() { - return StepCount; + return 0;//StepCount; } @@ -49,8 +52,10 @@ void Stairs::setAll(uint16_t brightness) { //pwmDriver->setAll(this->getPWMValue(brightness)); +/* for (uint8_t step = 0; step < StepCount; step++) pwmDriver->setPWM(step, this->getPWMValue(step, brightness)); + */ } @@ -63,7 +68,7 @@ uint16_t Stairs::getPWMValue(uint8_t step, uint16_t brightness) return brightness; } - if (step < 0 || step >= StepCount) + if (step < 0 || step >= getCount()) { _dln("Step out of bounds, returning input"); return brightness; @@ -141,7 +146,7 @@ void Stairs::writeRange() Header header; header.version = 1; header.useScaling = this->useScaling; - header.rangeCount = StepCount; + header.rangeCount = getCount(); f.write((uint8_t*)&header, sizeof(Header)); f.write((uint8_t*)&this->ranges, sizeof(this->ranges)); diff --git a/src/stairs.h b/src/stairs.h index e98a171..a61c6d0 100644 --- a/src/stairs.h +++ b/src/stairs.h @@ -2,8 +2,8 @@ #define __Stairs #include "components/PCA9685.h" -#include "modes/base.h" #include "config.h" +#include "mode.h" struct Range @@ -19,7 +19,7 @@ class Stairs : public IStairs PCA9685* pwmDriver; bool useScaling; - Range ranges[StepCount]; + Range ranges[16]; protected: void readRange(); diff --git a/updateversion.ps1 b/updateversion.ps1 deleted file mode 100644 index b183a54..0000000 --- a/updateversion.ps1 +++ /dev/null @@ -1,23 +0,0 @@ -$output = & GitVersion /output json /nofetch -if ($LASTEXITCODE -ne 0) { - Write-Verbose "$output" - throw "GitVersion failed with exit code: $LASTEXITCODE" -} - -$version = $output | ConvertFrom-Json - -@" -#ifndef __Version -#define __Version - -static const char* FirmwareVersion = "{0}"; - -#endif -"@ -f $version.FullSemVer | Out-File -Encoding UTF8 .\src\version.h - -@" -module.exports = -{{ - Version: "{0}" -}}; -"@ -f $version.FullSemVer | Out-File -Encoding UTF8 .\web\version.js diff --git a/upload.ps1 b/upload.ps1 deleted file mode 100644 index 32ed813..0000000 --- a/upload.ps1 +++ /dev/null @@ -1,2 +0,0 @@ -& .\updateversion.ps1 -& platformio run --target upload \ No newline at end of file diff --git a/web/.bowerrc b/web/.bowerrc deleted file mode 100644 index d058d74..0000000 --- a/web/.bowerrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "directory": "static/bower_components" -} \ No newline at end of file diff --git a/web/app.js b/web/app.js index 2e52159..0f9421c 100644 --- a/web/app.js +++ b/web/app.js @@ -1,160 +1,248 @@ -var fs = require('fs'); -var md5File = require('md5-file'); -var express = require('express'); -var semverUtils = require('semver-utils') -var client = require('./client'); - -var httpPort = 3127; - -var stairsHost = '10.138.2.25'; -var stairsUdpPort = 3126; - -var firmwareFile = './update/firmware.bin'; -var alwaysUpdate = true; - - -function requireNoCache(filename) +function startApp() { - delete require.cache[require.resolve(filename)]; - return require(filename); -} - - -function isNewer(version1, version2) -{ - if (alwaysUpdate) return true; - - if (version1.major > version2.major) return true; - if (version1.major < version2.major) return false; - - if (version1.minor > version2.minor) return true; - if (version1.minor < version2.minor) return false; - - if (version1.patch > version2.patch) return true; - if (version1.patch < version2.patch) return false; - - if (parseInt(version1.build, 10) > parseInt(version2.build, 10)) return true; - return false; -} - - -client.init(stairsHost, stairsUdpPort); - - -var app = express(); - -app.get('/ping', function(req, res) -{ - client.ping(function(data, error) - { - if (error) - res.status(500); - - res.send(data); + var i18n = new VueI18n({ + locale: navigator.language, + fallbackLocale: 'en', + messages: messages }); -}); -app.get('/getMode', function(req, res) -{ - client.getMode(function(data, error) - { - if (error) - res.status(500); + var app = new Vue({ + el: '#app', - res.send(data); - }); -}); + i18n: i18n, -app.get('/setMode/:mode', function(req, res) -{ - client.setMode(req.params.mode, req.query, function(data, error) - { - if (error) - res.status(500); + data: { + loading: true, + saving: false, + loadingIndicator: '|', - res.send(data); - }); -}); + activeTab: 'status', -app.get('/getRange', function(req, res) -{ - client.getRange(function(data, error) - { - if (error) - res.status(500); + version: { + systemID: 'loading...', + version: 'loading...', + }, - res.send(data); - }); -}); + wifiStatus: { + ap: { + enabled: false, + ip: '0.0.0.0' + }, + station: { + enabled: false, + status: 0, + ip: '0.0.0.0' + } + }, -app.get('/setRange', function(req, res) -{ - client.setRange(req.query, function(data, error) - { - if (error) - res.status(500); + connection: { + hostname: null, + accesspoint: true, + station: false, + ssid: null, + password: null, + dhcp: true, + ip: null, + subnetmask: null, + gateway: null + }, - res.send(data); - }); -}); + steps: [ + { value: 50 }, + { value: 0 }, + { value: 0 }, + { value: 0 }, + { value: 0 }, + { value: 70 }, + { value: 0 }, + { value: 0 }, + { value: 0 }, + { value: 0 }, + { value: 25 }, + { value: 0 }, + { value: 0 }, + { value: 0 } + ] + }, -app.get('/updateFirmware', function(req, res) -{ - client.updateFirmware(req.query, function(data, error) - { - if (error) - res.status(500); - - res.send(data); - }); -}) - -app.get('/checkUpdate', function(req, res) -{ - if (!fs.existsSync(firmwareFile)) - { - console.log('checkUpdate: ' + firmwareFile + ' not found!'); - res.sendStatus(304); - return; - } - - var version = requireNoCache('./version.js'); - var deviceVersion = semverUtils.parse(req.headers['x-esp8266-version']); - var localVersion = semverUtils.parse(version.Version); - - console.log('checkUpdate:'); - console.log(' Device version = ' + semverUtils.stringify(deviceVersion)); - console.log(' Local version = ' + semverUtils.stringify(localVersion)); - - if (isNewer(localVersion, deviceVersion)) - { - console.log('Sending update'); - - md5File(firmwareFile, function(err, hash) + created: function() { - if (err) + var self = this; + + document.title = i18n.t('title'); + self.startLoadingIndicator(); + + self.updateWiFiStatus(); + setInterval(self.updateWiFiStatus, 5000); + + axios.get('/api/version') + .then(function(response) + { + if (typeof response.data == 'object') + self.version = response.data; + }) + .catch(function(error) + { + console.log(error); + }); + + axios.all([ + axios.get('/api/connection') + .then(function(response) + { + if (typeof response.data == 'object') + self.connection = response.data; + }) + .catch(function(error) + { + console.log(error); + })/*, + + axios.get('/api/actions') + .then(function(response) + { + if (typeof response.data == 'object') + self.actions = response.data; + }) + .catch(function(error) + { + console.log(error); + })*/ + ]) + .then(axios.spread(function(acct, perms) { + self.stopLoadingIndicator(); + self.loading = false; + })); + }, + + methods: { + applyConnection: function() { - res.sendStatus(500); - return; + var self = this; + if (self.saving) return; + + self.saving = true; + + axios.post('/api/connection', { + hostname: self.connection.hostname, + accesspoint: self.connection.accesspoint, + station: self.connection.station, + ssid: self.connection.ssid, + password: self.connection.password, + dhcp: self.connection.dhcp, + ip: self.connection.ip, + subnetmask: self.connection.subnetmask, + gateway: self.connection.gateway, + }) + .then(function(response) + { + }) + .catch(function(error) + { + console.log(error); + }) + .then(function() + { + self.saving = false; + }) + }, + + startLoadingIndicator: function() + { + var self = this; + + self.loadingStage = 0; + self.loadingTimer = setInterval(function() + { + self.loadingStage++; + console.log(self.loadingStage); + switch (self.loadingStage) + { + case 1: self.loadingIndicator = '/'; break; + case 2: self.loadingIndicator = '-'; break; + case 3: self.loadingIndicator = '\\'; break; + case 4: self.loadingIndicator = '|'; self.loadingStage = 0; break; + } + }, 250); + }, + + stopLoadingIndicator: function() + { + clearInterval(this.loadingTimer); + }, + + getWiFiStationStatus: function() + { + if (!this.wifiStatus.station.enabled) + return 'disconnected'; + + switch (this.wifiStatus.station.status) + { + case 0: // WL_IDLE_STATUS + case 2: // WL_SCAN_COMPLETED + return 'connecting'; + + case 1: // WL_NO_SSID_AVAIL + case 4: // WL_CONNECT_FAILED + case 5: // WL_CONNECTION_LOST + return 'error'; + + case 3: // WL_CONNECTED + return 'connected'; + + case 6: // WL_DISCONNECTED + default: + return 'disconnected'; + } + }, + + getWiFiStationStatusText: function() + { + if (!this.wifiStatus.station.enabled) + return i18n.t('wifiStatus.stationmode.disabled'); + + switch (this.wifiStatus.station.status) + { + case 0: // WL_IDLE_STATUS + return i18n.t('wifiStatus.stationmode.idle'); + + case 1: // WL_NO_SSID_AVAIL + return i18n.t('wifiStatus.stationmode.noSSID'); + + case 2: // WL_SCAN_COMPLETED + return i18n.t('wifiStatus.stationmode.scanCompleted'); + + case 3: // WL_CONNECTED + return this.wifiStatus.station.ip; + + case 4: // WL_CONNECT_FAILED + return i18n.t('wifiStatus.stationmode.connectFailed'); + + case 5: // WL_CONNECTION_LOST + return i18n.t('wifiStatus.stationmode.connectionLost'); + + case 6: // WL_DISCONNECTED + default: + return i18n.t('wifiStatus.stationmode.disconnected'); + } + }, + + updateWiFiStatus: function() + { + var self = this; + if (self.saving) return; + + axios.get('/api/connection/status') + .then(function(response) + { + if (typeof response.data == 'object') + self.wifiStatus = response.data; + }) + .catch(function(error) + { + console.log(error); + }); } - - res.set('Content-Length', fs.statSync(firmwareFile).size); - res.set('x-MD5', hash); - res.download(firmwareFile); - }); - } - else - { - console.log('No update required'); - res.sendStatus(304); - } -}); - -app.use(express.static(__dirname + '/static')); - - - -app.listen(httpPort, function () -{ - console.log('Stairs ReST service running on port ' + httpPort); -}); \ No newline at end of file + } + }); +} \ No newline at end of file diff --git a/web/bower.json b/web/bower.json deleted file mode 100644 index f60658d..0000000 --- a/web/bower.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "stairs", - "description": "Stairs lighting project", - "main": "index.html", - "authors": [ - "Mark van Renswoude" - ], - "license": "ISC", - "homepage": "", - "private": true, - "ignore": [ - "**/.*", - "node_modules", - "src/bower_components" - ], - "dependencies": { - "knockout": "^3.4.2", - "jquery": "^3.2.1", - "crossroads": "^0.12.2", - "hasher": "^1.2.0", - "requirejs": "^2.3.3", - "text": "requirejs/text#^2.0.15", - "bootstrap": "v4.0.0-alpha.6", - "nprogress": "^0.2.0" - } -} diff --git a/web/client.js b/web/client.js deleted file mode 100644 index 5762db1..0000000 --- a/web/client.js +++ /dev/null @@ -1,342 +0,0 @@ -var dgram = require('dgram'); -var protocol = require('./protocol'); -var BufferReader = require('buffer-reader'); - - -var responseHandlers = {}; - -function registerResponseHandler(command, callback) -{ - if (!responseHandlers.hasOwnProperty(command)) - responseHandlers[command] = [callback]; - else - responseHandlers[command].push(callback); -} - - -function callResponseHandlers(command, reader, error) -{ - if (!responseHandlers.hasOwnProperty(command)) - return; - - newHandlers = []; - responseHandlers[command].forEach(function(callback) - { - if (!callback(reader, error)) - newHandlers.push(callback); - }); - - responseHandlers[command] = newHandlers; -} - - -var serverHost = ''; -var serverPort = 0; - -var client = dgram.createSocket('udp4'); -client.on('message', function (message, remote) -{ - console.log(message.toString('hex')); - if (message.length < 2) - return; - - var reader = new BufferReader(message); - - if (reader.nextInt8() !== protocol.Command.Reply) - return; - - var command = reader.nextInt8(); - if (command === protocol.Command.Error) - callResponseHandlers(reader.nextInt8(), reader, true) - else - callResponseHandlers(command, reader, false); -}); - - -function requestResponse(buffer, callback, withTimeout) -{ - if (buffer === null || buffer.length == 0) return; - console.log('> ' + buffer.toString('hex')); - - var command = buffer.readInt8(0); - var cancelled = false; - - if (typeof(withTimeout) == 'undefined') withTimeout = true; - if (withTimeout) - { - var timeout = setTimeout(function() - { - cancelled = true; - callback(null, true); - clearTimeout(timeout); - }, 2000); - } - - registerResponseHandler(command, function(reader, error) - { - if (cancelled) return; - if (withTimeout) clearTimeout(timeout); - - callback(reader, error); - return true; - }); - - client.send(buffer, 0, buffer.length, serverPort, serverHost, function(err, bytes) - { - if (err) - onError(); - }); -} - - -function readModeData(mode, reader) -{ - switch (mode) - { - case protocol.Mode.Static: - return { - brightness: reader.nextInt16LE(), - easeTime: reader.nextInt16LE() - }; - - case protocol.Mode.Custom: - var values = []; - while (reader.tell() < reader.buf.length) - values.push(reader.nextInt16LE()); - - return { - brightness: values - }; - - case protocol.Mode.Alternate: - return { - interval: reader.nextInt16LE(), - brightness: reader.nextInt16LE() - }; - - case protocol.Mode.Slide: - return { - interval: reader.nextInt16LE(), - brightness: reader.nextInt16LE(), - direction: reader.nextInt8(), - fadeOutTime: reader.nextInt16LE() - }; - } - - return null; -} - - -function readRangeData(reader) -{ - var data = { useScaling: reader.nextInt8() == 1, values: [] }; - - while (reader.tell() < reader.buf.length) - data.values.push({ start: reader.nextInt16LE(), end: reader.nextInt16LE() }); - - return data; -} - - -function lsb(value) { return value & 0xFF; } -function msb(value) { return (value >> 8) & 0xFF; } - - -function getBrightness(value) -{ - if (typeof(value) == 'string' && value.substr(-1) === '%') - return (Number(value.substr(0, value.length - 1)) * 4096 / 100); - - return Number(value) || 0; -} - - -function writeModeData(mode, data) -{ - switch (mode) - { - case protocol.Mode.Static: - var brightness = getBrightness(data.brightness); - - return new Buffer([protocol.Command.SetMode, mode, lsb(brightness), msb(brightness), lsb(500), msb(500)]); - - case protocol.Mode.Custom: - var brightness = typeof(data.brightness) !== 'undefined' ? data.brightness.split(',') : []; - - var valueCount = Math.min(16, brightness.length); - var buffer = Buffer.alloc(2 + (valueCount * 2)); - buffer.writeUInt8(protocol.Command.SetMode, 0); - buffer.writeUInt8(mode, 1); - - for (var index = 0; index < valueCount; index++) - buffer.writeUInt16LE(getBrightness(brightness[index]), 2 + (index * 2)); - - return buffer; - - case protocol.Mode.Alternate: - var brightness = getBrightness(data.brightness); - if (typeof(data.interval) == 'undefined') data.interval = 500; - - return new Buffer([protocol.Command.SetMode, mode, - lsb(data.interval), msb(data.interval), - lsb(brightness), msb(brightness)]); - - case protocol.Mode.Slide: - var brightness = getBrightness(data.brightness); - if (typeof(data.interval) == 'undefined') data.interval = 500; - if (typeof(data.direction) == 'undefined') data.direction = 0; - if (typeof(data.fadeOutTime) == 'undefined') data.fadeOutTime = 0; - - return new Buffer([protocol.Command.SetMode, mode, - lsb(data.interval), msb(data.interval), - lsb(brightness), msb(brightness), - data.direction, - lsb(data.fadeOutTime), msb(data.fadeOutTime)]); - } -} - - -function writeRangeData(data) -{ - var start = typeof(data.start) !== 'undefined' ? data.start.split(',') : []; - var end = typeof(data.end) !== 'undefined' ? data.end.split(',') : []; - - var valueCount = Math.min(16, start.length, end.length); - var buffer = Buffer.alloc(2 + (valueCount * 4)); - buffer.writeUInt8(protocol.Command.SetRange, 0); - buffer.writeUInt8(data.useScaling ? 1 : 0, 1); - - for (var index = 0; index < valueCount; index++) - { - buffer.writeUInt16LE(getBrightness(start[index]), 2 + (index * 4)); - buffer.writeUInt16LE(getBrightness(end[index]), 4 + (index * 4)); - } - - return buffer; -} - - -module.exports = -{ - init: function(host, port) - { - serverHost = host; - serverPort = port; - }, - - - ping: function(callback) - { - requestResponse(new Buffer([protocol.Command.Ping]), - function(reader, error) - { - if (!error) - { - callback( - { - stepCount: reader.nextInt8() - }, false); - } - else - callback(null, true); - }); - }, - - getMode: function(callback) - { - requestResponse(new Buffer([protocol.Command.GetMode]), - function(reader, error) - { - if (!error) - { - var data = { mode: reader.nextInt8() }; - data.data = readModeData(data.mode, reader); - callback(data, false); - } - else - callback(null, true); - }); - }, - - setMode: function(mode, data, callback) - { - if (!protocol.Mode.hasOwnProperty(mode)) - return; - - requestResponse(writeModeData(protocol.Mode[mode], data), - function(reader, error) - { - if (!error) - { - var data = { mode: reader.nextInt8() }; - data.data = readModeData(data.mode, reader); - callback(data, false); - } - else - callback(null, true); - }); - }, - - getRange: function(callback) - { - requestResponse(new Buffer([protocol.Command.GetRange]), - function(reader, error) - { - if (!error) - { - callback(readRangeData(reader), false); - } - else - callback(null, true); - }); - }, - - setRange: function(data, callback) - { - requestResponse(writeRangeData(data), - function(reader, error) - { - if (!error) - { - callback(readRangeData(reader), false); - } - else - callback(null, true); - }); - }, - - updateFirmware: function(data, callback) - { - if (typeof(data.host) == 'undefined') data.host = ''; - if (typeof(data.port) == 'undefined') data.port = 80; - if (typeof(data.path) == 'undefined') data.path = ''; - - var buffer = Buffer.alloc(1 + (data.host.length + 1) + 2 + (data.path.length + 1)); - buffer.writeUInt8(protocol.Command.UpdateFirmware, 0); - var position = 1; - - buffer.writeUInt16LE(data.port, position); - position += 2; - - buffer.write(data.host, position); - position += data.host.length; - buffer.writeUInt8(0, position); - position++; - - buffer.write(data.path, position); - position += data.path.length; - buffer.writeUInt8(0, position); - - requestResponse(buffer, - function(reader, error) - { - if (!error) - { - var data = { hasUpdates: reader.nextInt8() == 1 }; - callback(data, false); - } - else - callback(null, true); - }, false); - } -} \ No newline at end of file diff --git a/web/dist/bundle.css b/web/dist/bundle.css new file mode 100644 index 0000000..60286a2 --- /dev/null +++ b/web/dist/bundle.css @@ -0,0 +1 @@ +*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}.header .wifistatus{position:absolute;right:0;top:0}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js new file mode 100644 index 0000000..6ded72a --- /dev/null +++ b/web/dist/bundle.js @@ -0,0 +1 @@ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Dr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=F(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function Lt(t){return t&&(t.Ctor.options.name||t.tag)}function It(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Dt(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Lt(a.componentOptions);s&&!e(s)&&Ft(n,o,r,i)}}}function Ft(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Hr=t,zr=Wr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Vr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Hr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function $e(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ii?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ii,l=a,f=o.length):e===Di?u>0&&(n=Di,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ii:Di:null)?n===Ii?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ii&&Bi.test(r[Fi+"Property"])}}function Ae(t,e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Oe(e)}function Ie(t,e,n){De(t,e,n),(Pn||Rn)&&setTimeout(function(){De(t,e,n)},0)}function De(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function Fe(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function He(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:To;return t.replace(n,function(t){return Oo[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),$n=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),xn=/\B([A-Z])/g,kn=p(function(t){return t.replace(xn,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",On=["component","directive","filter"],Tn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:Tn},En=/[^\w.$]/,Ln="__proto__"in{},In="undefined"!=typeof window,Dn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Fn=Dn&&WXEnvironment.platform.toLowerCase(),Nn=In&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Fn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Fn,Hn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Vn=!1;if(In)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!In&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=In&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);qn="undefined"!=typeof Set&&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&$r[n].id>t.id;)n--;$r.splice(n+1,0,t)}else $r.push(t);Cr||(Cr=!0,z(ut))}}(this)},Tr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Tr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Tr.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Tr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(At.prototype);var Lr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Lr.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ft(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:F,defineReactive:O},t.set=T,t.delete=j,t.nextTick=z,t.options=Object.create(null),On.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=F(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=F(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,On.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,On.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Hr,Vr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",$i={create:de,update:de},xi={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Ti(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Vi),v(Et.options.components,Ji),Et.prototype.__patch__=In?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Tr(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&In?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Lo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for(x=t.slice(v);!(co.test(x)||ao.test(x)||lo.test(x)||fo.test(x)||(k=x.indexOf("<",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=""),e.chars&&$&&e.chars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===L&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=F[l])[i]||s.else||D)===D)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status"},triggers:{tabTitle:"Triggers",timeTitle:"Time",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,loadingIndicator:"|",activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},steps:[{value:50},{value:0},{value:0},{value:0},{value:0},{value:70},{value:0},{value:0},{value:0},{value:0},{value:25},{value:0},{value:0},{value:0}]},created:function(){var e=this;document.title=t.t("title"),e.startLoadingIndicator(),e.updateWiFiStatus(),setInterval(e.updateWiFiStatus,5e3),axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)})]).then(axios.spread(function(t,n){e.stopLoadingIndicator(),e.loading=!1}))},methods:{applyConnection:function(){var t=this;t.saving||(t.saving=!0,axios.post("/api/connection",{hostname:t.connection.hostname,accesspoint:t.connection.accesspoint,station:t.connection.station,ssid:t.connection.ssid,password:t.connection.password,dhcp:t.connection.dhcp,ip:t.connection.ip,subnetmask:t.connection.subnetmask,gateway:t.connection.gateway}).then(function(t){}).catch(function(t){console.log(t)}).then(function(){t.saving=!1}))},startLoadingIndicator:function(){var t=this;t.loadingStage=0,t.loadingTimer=setInterval(function(){switch(t.loadingStage++,console.log(t.loadingStage),t.loadingStage){case 1:t.loadingIndicator="/";break;case 2:t.loadingIndicator="-";break;case 3:t.loadingIndicator="\\";break;case 4:t.loadingIndicator="|",t.loadingStage=0}},250)},stopLoadingIndicator:function(){clearInterval(this.loadingTimer)},getWiFiStationStatus:function(){if(!this.wifiStatus.station.enabled)return"disconnected";switch(this.wifiStatus.station.status){case 0:case 2:return"connecting";case 1:case 4:case 5:return"error";case 3:return"connected";case 6:default:return"disconnected"}},getWiFiStationStatusText:function(){if(!this.wifiStatus.station.enabled)return t.t("wifiStatus.stationmode.disabled");switch(this.wifiStatus.station.status){case 0:return t.t("wifiStatus.stationmode.idle");case 1:return t.t("wifiStatus.stationmode.noSSID");case 2:return t.t("wifiStatus.stationmode.scanCompleted");case 3:return this.wifiStatus.station.ip;case 4:return t.t("wifiStatus.stationmode.connectFailed");case 5:return t.t("wifiStatus.stationmode.connectionLost");case 6:default:return t.t("wifiStatus.stationmode.disconnected")}},updateWiFiStatus:function(){var t=this;t.saving||axios.get("/api/connection/status").then(function(e){"object"==typeof e.data&&(t.wifiStatus=e.data)}).catch(function(t){console.log(t)})}}})} \ No newline at end of file diff --git a/web/gulpfile.js b/web/gulpfile.js deleted file mode 100644 index 06a443f..0000000 --- a/web/gulpfile.js +++ /dev/null @@ -1,96 +0,0 @@ -'use strict'; - -var gulp = require('gulp'); -var ts = require('gulp-typescript'); -var uglify = require('gulp-uglify'); -var sass = require('gulp-sass'); -var cleanCSS = require('gulp-clean-css'); -var concat = require('gulp-concat'); -var watch = require('gulp-debounced-watch'); -var plumber = require('gulp-plumber'); - - -var config = -{ - dest: 'static/assets/dist/', - typescriptBase: 'static/assets/ts/', - sassBase: 'static/assets/sass/', - - assets: ['static/assets/ts/**/*.html', 'static/assets/js/**/*.js'] -}; - -config.typescriptSrc = config.typescriptBase + '**/*.ts'; -config.sassSrc = config.sassBase + '**/*.scss'; - - -gulp.task('default', - [ - 'compileTypescript', - 'compileSass', - 'copyAssets' - ], - function(){}); - -gulp.task('watch', - [ - 'compileTypescript', - 'compileSass', - 'copyAssets' - ], - function() - { - watch(config.typescriptSrc, function() { gulp.start('compileTypescript'); }); - watch(config.sassSrc, function() { gulp.start('compileSass'); }); - watch(config.assets, function() { gulp.start('copyAssets'); }); - }); - - -gulp.task('compileTypescript', function() -{ - return gulp.src(config.typescriptSrc, { base: config.typescriptBase }) - .pipe(plumber({ - errorHandler: function (error) - { - console.log(error.message); - this.emit('end'); - }})) - .pipe(ts( - { - noImplicitAny: true, - removeComments: true, - preserveConstEnums: true, - sourceMap: true, - module: 'amd' - })) - .pipe(uglify()) - .pipe(gulp.dest(config.dest)); -}); - - -gulp.task('compileSass', function() -{ - return gulp.src(config.sassSrc) - .pipe(plumber({ - errorHandler: function (error) - { - console.log(error.message); - this.emit('end'); - }})) - .pipe(sass()) - .pipe(concat('bundle.css')) - .pipe(cleanCSS()) - .pipe(gulp.dest(config.dest)); -}); - - -gulp.task('copyAssets', function() -{ - return gulp.src(config.assets) - .pipe(plumber({ - errorHandler: function (error) - { - console.log(error.message); - this.emit('end'); - }})) - .pipe(gulp.dest(config.dest)); -}); \ No newline at end of file diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..1e9d39d --- /dev/null +++ b/web/index.html @@ -0,0 +1,124 @@ + + + + + + + + + + + +
+
+
+
+ +

{{ $t('title') }}

+

{{ version.systemID !== null ? $t('systemID') + ': ' + version.systemID : '' }}

+ +
+
+
{{ $t('wifiStatus.accesspoint.title') }} {{ wifiStatus.ap.enabled ? wifiStatus.ap.ip : $t('wifiStatus.accesspoint.disabled') }} +
+
+
{{ $t('wifiStatus.stationmode.title') }} {{ getWiFiStationStatusText() }} +
+
+
+ +
+ {{ $t('loading') }} {{ loadingIndicator }} +
+ +
+
+ + + +
+ +
+

{{ $t('status.title') }}

+ +
+ {{ index + 1 }} + + {{ step.value }} +
+
+ +
+
+
+

{{ $t('triggers.timeTitle') }}

+
+ +
+

{{ $t('triggers.motionTitle') }}

+
+
+
+ +
+
+
+

{{ $t('connection.title') }}

+ + + + {{ $t('connection.accesspointHint') }} + + + + {{ $t('connection.stationmodeHint') }} + + + + + + + + + + {{ $t('connection.dhcpHint') }} + + +
+ + + + + + + + +
+ + + + + +
+ +
+
+
+
+
+ +
+
+
+ {{ $t('copyright') }}
+ {{ version.version !== null ? $t('firmwareVersion') + version.version : '' }} +
+
+
+ + + + \ No newline at end of file diff --git a/web/lang.js b/web/lang.js new file mode 100644 index 0000000..01a9d49 --- /dev/null +++ b/web/lang.js @@ -0,0 +1,127 @@ +var messages = { + en: { + title: 'Stairs', + systemID: 'System ID', + firmwareVersion: 'Firmware version: ', + copyright: 'Copyright © 2017 Mark van Renswoude', + loading: 'Please wait, loading configuration...', + + applyButton: 'Apply', + applyButtonSaving: 'Saving...', + + wifiStatus: { + accesspoint: { + title: 'AP: ', + disabled: 'Disabled' + }, + + stationmode: { + title: 'WiFi: ', + disabled: 'Disabled', + idle: 'Idle', + noSSID: 'SSID not found', + scanCompleted: 'Scan completed', + connectFailed: 'Failed to connect', + connectionLost: 'Connection lost', + disconnected: 'Disconnected' + } + }, + + status: { + tabTitle: 'Status', + title: 'Current status' + }, + + triggers: { + tabTitle: 'Triggers', + timeTitle: 'Time', + motionTitle: 'Motion' + }, + + connection: { + tabTitle: 'Connection', + title: 'Connection parameters', + + accesspoint: 'Enable access point', + accesspointHint: 'Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.', + + stationmode: 'Enable station mode', + stationmodeHint: 'Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.', + + ssid: 'SSID', + password: 'Password', + + dhcp: 'Use DHCP', + dhcpHint: 'Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you\'re doing.', + + ipaddress: 'IP address', + subnetmask: 'Subnet mask', + gateway: 'Gateway', + hostname: 'Hostname', + hostnamePlaceholder: 'Default: mac address' + } + }, + + nl: { + title: 'Trap', + systemID: 'Systeem ID', + firmwareVersion: 'Firmware versie: ', + copyright: 'Copyright © 2017 Mark van Renswoude', + loading: 'Een ogenblik geduld, bezig met laden van configuratie...', + + applyButton: 'Apply', + applyButtonSaving: 'Saving...', + + wifiStatus: { + accesspoint: { + title: 'AP: ', + disabled: 'Uitgeschakeld' + }, + + stationmode: { + title: 'WiFi: ', + disabled: 'Uitgeschakeld', + idle: 'Slaapstand', + noSSID: 'SSID niet gevonden', + scanCompleted: 'Scan afgerond', + connectFailed: 'Kan geen verbinding maken', + connectionLost: 'Verbinding verloren', + disconnected: 'Niet verbonden' + } + }, + + status: { + tabTitle: 'Status', + title: 'Huidige status' + }, + + triggers: { + tabTitle: 'Triggers', + timeTitle: 'Tijd', + motionTitle: 'Beweging' + }, + + connection: { + tabTitle: 'Verbinding', + title: 'Verbinding configuratie', + + accesspoint: 'Access point inschakelen', + accesspointhint: 'Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.', + + stationmode: 'Verbinding met WiFi maken', + stationmodehint: 'Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.', + + ssid: 'SSID', + password: 'Wachtwoord', + + dhcp: 'Gebruik DHCP', + dhcphint: 'Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.', + + ipaddress: 'IP adres', + subnetmask: 'Subnet masker', + gateway: 'Gateway', + hostname: 'Hostnaam', + hostnamePlaceholder: 'Standaard: mac adres' + } + } +} \ No newline at end of file diff --git a/web/logo.ai b/web/logo.ai new file mode 100644 index 0000000..1b09e41 --- /dev/null +++ b/web/logo.ai @@ -0,0 +1,333 @@ +%PDF-1.5 % +1 0 obj <>/OCGs[5 0 R 21 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + Adobe Illustrator CS6 (Windows) + 2017-12-30T16:13+01:00 + 2017-12-30T16:17:16+01:00 + 2017-12-30T16:17:16+01:00 + + + + 248 + 256 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAD4AwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FX//2Q== + + + + + + 1 + False + False + + 512.000000 + 512.000000 + Points + + + + + Default Swatch Group + 0 + + + + + + application/pdf + + + Document + + + xmp.did:89DEF0EC73EDE7119CCADB31B93B2005 + uuid:b03a2483-4f32-4465-b083-e0550ab05b88 + xmp.did:89DEF0EC73EDE7119CCADB31B93B2005 + proof:pdf + + + + + saved + xmp.iid:89DEF0EC73EDE7119CCADB31B93B2005 + 2017-12-30T16:13:01+01:00 + Adobe Illustrator CS6 (Windows) + / + + + + + + + + + + + + + + + + + + + + + + + + + + + + +endstream endobj 3 0 obj <> endobj 7 0 obj <>/Resources<>/Properties<>>>/Thumb 26 0 R/TrimBox[0.0 0.0 512.0 512.0]/Type/Page>> endobj 23 0 obj <>stream +H +0 y&Mj0dxq + )r: L`Q_Ha} *"`|)6VdFfvn8'|E]D yL9{7\Qr g1Ċ)4 V5M.W!7] CPt +endstream endobj 26 0 obj <>stream +8;Z]L!=]#/!5bE.$"(^o%O_;W!8uZ9(]Y: +endstream endobj 27 0 obj [/Indexed/DeviceRGB 255 28 0 R] endobj 28 0 obj <>stream +8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 +b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` +E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn +6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( +l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> +endstream endobj 21 0 obj <> endobj 29 0 obj [/View/Design] endobj 30 0 obj <>>> endobj 25 0 obj <> endobj 24 0 obj <> endobj 31 0 obj <> endobj 32 0 obj <>stream +%!PS-Adobe-3.0 +%%Creator: Adobe Illustrator(R) 16.0 +%%AI8_CreatorVersion: 16.0.0 +%%For: (PsychoMark) () +%%Title: (logo.ai) +%%CreationDate: 12/30/2017 4:17 PM +%%Canvassize: 16383 +%%BoundingBox: 113 218 501 623 +%%HiResBoundingBox: 113.6367 218.375 500.3867 622.625 +%%DocumentProcessColors: +%AI5_FileFormat 12.0 +%AI12_BuildNumber: 682 +%AI3_ColorUsage: Color +%AI7_ImageSettings: 0 +%%RGBProcessColor: 0 0 0 ([Registration]) +%AI3_Cropmarks: 41.5 164.5 553.5 676.5 +%AI3_TemplateBox: 297.5 420.5 297.5 420.5 +%AI3_TileBox: -8.5 24.5 603.5 816.5 +%AI3_DocumentPreview: None +%AI5_ArtSize: 14400 14400 +%AI5_RulerUnits: 2 +%AI9_ColorModel: 1 +%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 +%AI5_TargetResolution: 800 +%AI5_NumLayers: 1 +%AI9_OpenToView: -1232 1218 0.5 1789 914 26 0 0 82 117 0 0 0 1 1 1 1 1 0 1 +%AI5_OpenViewLayers: 7 +%%PageOrigin:0 0 +%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments + +endstream endobj 33 0 obj <>stream +%%BoundingBox: 113 218 501 623 +%%HiResBoundingBox: 113.6367 218.375 500.3867 622.625 +%AI7_Thumbnail: 124 128 8 +%%BeginData: 2021 Hex Bytes +%0000330000660000990000CC0033000033330033660033990033CC0033FF +%0066000066330066660066990066CC0066FF009900009933009966009999 +%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 +%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 +%3333663333993333CC3333FF3366003366333366663366993366CC3366FF +%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 +%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 +%6600666600996600CC6600FF6633006633336633666633996633CC6633FF +%6666006666336666666666996666CC6666FF669900669933669966669999 +%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 +%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF +%9933009933339933669933999933CC9933FF996600996633996666996699 +%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 +%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF +%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 +%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 +%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF +%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC +%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 +%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 +%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 +%000011111111220000002200000022222222440000004400000044444444 +%550000005500000055555555770000007700000077777777880000008800 +%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB +%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF +%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF +%524C45FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFF +%FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFF +%FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFF +%FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFF +%FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFF +%FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFF +%FDFCFFFDFCFFFDFCFFFDF7FFFF +%%EndData + +endstream endobj 34 0 obj <>stream +%AI12_CompressedDataxܽgw:0z>(I`z ))Ɔ]o?dFsghf;cL#w?r9olVzOMrU-;$E/z<- |46o/+}3mT߃1"Y1_֏&9[ 4qn  xA@ P8zEEqGg)j^"^@Wݐ,m2ԾP @_Q"b'i;!W Dq5D4Ayl{0a.cPw䦽>LHo85D/D3pb?!q8p`&bĸN%j173D?h (`=X+1 +~jA$]ÉJ,T; [Zl ?gAcuKlۛ?cN 4bbC oΦ" S. +'` +_ ?vn&!n=a'C@2.kvH%FBH~nȮ̈́3_%g~z]-5w{7L7=7ە@HdjϼA7Cw熫bF wXs»h.QGv D?eڦp?2ԂXpztuXIa4u p-XKnp\.MeAgEnm7@$yIi-ACUlwi?p } |>Ԏo׺>2x Ó0LnCᘀ0;~z +?aR`ҦNcdԐCkBoxMR M&g`20JNs%G <ogH@)_*g# 8]_HPjLAkr?K +^c9Sv1C 'Jp `=EA{ijl[\ wvE }T ~kh= P3 z{fL[MjFDia7ܑ^+( l2nc,nЯ@ |ހ"4"՘c^+7}lA1_7°LFK W4 IO&ޣhZ9FaX2@IiX݄[&4.,oPPAbn' "8~oHPrjU{/,Q.|YW69n&'T\PjP: zPp!ɿ85cW($9]D hF:9Y!x5~geu<||o!UDs^~#)BJ!! fv"WVh4 1["[qnw7jsh`r&! kTՊ!r7eIq8&3JkiL'MGB"Pn )_{TΈpG5UԓgٶɫxQn8Tȃ7F*mAJK=E>j4@wV)MQ[_cϋ SWm7e)-X݊Ɋ6yp_ <) +&IICwؐzOm?HhcUAOJHD^ aTyĜ%4Wx@Wjv ?Ir9` ~MbCI^5N3F\ZPc!^FI-=/U\g@ @L";?ΓV1iZ(,_/o )ZmJaD(Jz5=[Y=YiHDюn7#fTAjN7l(ۊ ^h@[y)u@`+rW?$r['׌; hGC쨩BCVeb72!=@cAǡءUhݍ$jAM?j19;*a֡JPa3VFC f^x[ZWwmx#GçVo| 45qQ&ڑkmH9X~p3FJ"GD<"o()g7qO}or )9bdBY%j8&.* gvFUBj06o[(-1.&t225Nz HfXaO؈xC;ӘMe3S#ȷ5ZFC~Q" ѦGmۿʋܸQ.лQ(% C +E6* +mn2PgpXśap삋geZJ%̓PTÑx{ć]ʦzmEj-n6Z.̱k)Hj4uS gN6sGФ5#ŵzggZ: [Crw-#\I w{i]z[3~Ḣb>pYYxB Ggswb_IJ#;A*~-]W4;w"N,o i:ןo2m2oNt@:ƅqŚD>;嵘#d<%p9Kxajq[']Lu `KPlƖ) ?ᰇ3Ըu,c^8Hw2'&E3}zdvn1jw\%a~+8AX^|pnw$:odBp;0dnz l ٥-b3/S3Lw + }5h@_bx+T9gᛁ*#,8}O~h6xlCZe.| ]Z@;Oҩ@=3δ?S- lhmu_3\߯<% ACdLy?!O|sS07'[af5{M u8Z3K~~q:_fHPdLq8%RFT z'w3w"'i?w9}@tIX+e^7 .]N hl1EBf,Zw<\5wQWz[$lZ d4X]{08-7p|̄}oyhWpSrr]@i?M@$l/j+Sx +>W +<ϾQ5Vb>s$K߰_xZ,lU ;N5ٳ?:t{ `T<]}]Ls:׾!GmΊN[~j)@sF$:2'W_LPG[nLgUgJ &Fh}$٥u(&J^+&ߛ!N[0%FM< tl5|;z +zL1>fӉr |wrg A@h"[lƅץT;-ZK|h>285~k?2!噃ąhij%?Nd&4>c*#ɑJDa>q'FgZOH+ 47 +>._ 4rbQ5l,KW بY +D"aVfIVM2F22 rK]5pVE~ع N%& waϾgM ;`hhMCPŒ) v)-dS? ОZ+nrp3e:-tagtfc ewEo݁ޚA]\c6*OA1œX|WY|HintOqJb4ZĞ .nO=&pT;dCN s-,O eB!*І>#u̻- B8*nvgv P_\usAQ]ppc-KT׻%k6uH%_x ʟj6dlKÞ}#Sx,y2]P՝NAfSwVvZl)ãBO|PίRv} ܃㮒|iyGu1ܗvQ4pk +>L +RJ;_︙ү(ζ$2/͹1z<p,vC)]>9Ҙ~C?=<zEzyҡl1QtP\,lpy_[G$<=f_[?]=2/ϭtɹo?~{"<Dm^:IIPsSڨ3ibOo)!Nhl%W(~&{a3ME 8@f8ptbߤ^0G+HٿYN;c!4We eJD1 \[Ns zB0* +9 H (sn\uļ3^cf.ϓdur,h5w>Ese3\[c hC0F~ߓ, Ovnz" 5U>@gooU؜> Cw +A[6H~ U4oOX3M ,XPLm +"}Ӊ}^|d;bo2Ͷ]+]z'n0 +|i&@V'Zrݏo[ŁeW[gj"Gȼ-gDMmk.5j.8)|~sk`gоVNa6vD,FQJ0xO?ilayy3SvMk֪c?uI8ٷ-Q-VJ!2Shg&' 4#5\kV̥g탷z&OӮ fS:Fґ5@L4͎ Rcw'(֎dT=gf!#?δ}'C9qc?Kr!SqcnuCXV9Mp|OyXHn^G~z2x4/&ΖȀ{@ m +t- +]+i[-÷QGg69-)8Z aeLmgAy# 1qƋ :PZtdCm"j0J?7xjN$wf|Qr4`$h{((d ^4jk*)S)˒ `z63*ԯF`XQEbO?Э{%+~vn'`97—*& +̧˻_s M^z9*E!;af5MPXXSFdWݷ8 SˆHXpbdVCifink; H 4)<#U,De[n֐;wL$ M8Dbh +hwK>Xn9 -Xm.R^p- o`I=*J(:/`= s,ں\` ZY!){*Z]uMiQ'ȼD:5&Ţ󐉌v3LC 2,#pKħ +=(ǯ7xXL6g('Co>`$2-g̾AG(+nM hn.!"LohodW.o}nBi_9 ɵqh2 'С̌L=70f4y9'V6Dp; {w@Ľ,eگ@2S_œo@g:C$wX +kIgpLYp4hv bMLZOԧG|.sW,DB;Փiz¦VT^8d flExSyq ]~SEf߅eyS+#ŖEό@`_rĕro3|j6b$ECX@5X AALPCc+ M(~[|pQ|SB |ЏWf(}ѐEv ʍGg>8(fҕ'G>6]'6Zޠ' V1}w?Ӟ')ds9j jG}>lzۿ6YzhZw[7rQI01 +J̉kݦkx-Z׶I6E͊ +iK*Be-MHQz}mV+Zf6ry:m}mk?LZ=״M w;Il?' l͔ ɍ pGh! 2iS݆W xi1|P3fcugo!1iXa5vFZ0gMxWQN p,:nu S+-W`(#|1|YiَvM +B(;]c89 RR3"~(UBU|tJ:)xNT +_VK@^yjq h ' +eRԪu:: ԲQbVhJٽ NbB1N=P*`0sWhUX!0֏C@z}QUj(dv43wPʬ"l@GBbXEVۓ0_'w4*He^}r0 ~FK˲0`I ͍6XFё\&9_gSqΧn"|gEƜ%@'л2'و?zQVO|et5J'#ě}t +;/Ňkτ7,iC,h|0:;qE$h-+m]M) zAIF˷?m})/iБ/e.Ҋ@j4ET OU xOXދQ&n-rp$K{a2(aS_yKMY{C kټy&Ci˲}y$cG98P2;A V!މb6Tj*Dn7xC+QˊX}^Y2 &DDZ}#8ѼZ1kbAX4gSA}; vPǺ+?1bk虈~ە\C'+@# ͻlQ k9xl=G|,T b|j/Y!]0L)` ޠ:cqF_e^"ű޻nv^ ˢh.(mI;i~4`-NVyb\VXA] +9 {_X+CGdWdY+@Su |8V ׊ŔQkX܈Bo%yCXk.s{2Ba?ЊXN JeoCXpߝ"SU"9Lϯe)K~;Pĺ%S֙'P#Ӥk_*rX)ef6qD?uhڗHc# b_Jyb۞ź%X) +=oE,+Dⳋ<…V(=tpn8X 忍bH:"k+GїV47d?ۇ’zgE(7rS~m6#SAIFd=`'$R# +OG>X޿Z3Pz!jj=hd'[DQWJOD+Kb͇huF?D;dUz$^n #fK2y5>0O+>}$:3WJixfx7x&B RzC|u풧>ԩgJO 4*<V^ *4Zoߓӑٛӣ2[ҷPx}b~OM;ؿ+G7#ӱEty*ʘQoˑӜdB ݒ;ngF%vwV$oH$RT{-b;!4^HoD1usvkw+?Cm[SqCՇ D=O򇀨&xYwQtdq"9")jl/NbZA}u#[P_[u8!Gznn%B9w" x)0|ERvxSqy{=aɇB2+|v˓dVk: >>\f1Ȇ>%vd.5иUO¸q|@M}Hh4S& 3NٽT"N\6e GC_=, 8@F"4EP/@h|:F-QF**:8Xœh<,YMg + +g F("Pάq<9FLsa_3aY%{4-ԥHqui%M%kMMIaK,O=ɓwxk)00+E 5jadUrA||x3Oɬ=ԡLIֆY#Q;aL^ Ȏ(fnN&V0E{=i| s_hv2H'%ޭ/+#,ͬwV+5[W^gNY]ַ4]kyLwڦ03Lƫ2uTF(!NW#s<;%4{dQ' CKد'i'½"7tɉײ +@̼)k~gW!=aV<"GAHR]rBPP^'.v+ͩ5b_?L&]ՠQ<♐e" +Z@.R1ˆџ괟f,%. Rl/T[hb;H$76% +GIlG! 53۟z3JgBZ󰫞cR^JVҋU9a%bxI>.awwUB=b+BlHh .p(9z0%*+(?3H4BY2P-ئ.YڣVr:swWwh@Gi׍(- +Ihx٬( +;ڀ'uG~r\e\es 0As_VyqvvvoO`@xfg1ѮΝBEjN}zv(ďn $ aޙƊy}XItddqvtS0`@kH +eNGCaz$vw^S*jmhzZ.FLI;ʑ=Q6 ~TWrkrUc̊1f=PH4́|Fjڡ(bVeQ-OTęFv:WZ5+&ZH}6Ż.ЎSnw +1o=>al!uj397Η\5%IVtzjj +O2M&;NJlw.`1iέ<Ƃjss'S|ٞC3tBSX#Z.Csf%r4YȸD1\KUg8ț'B1zF4)s`EKZǵ|71aXejDknKk||7x%||7kXvy9z-bk9OR-<-OWGArş;xƾK I*;yq@ RqmGe>ǩl"LP5OvPV*VtQ W>ai* +ti'O;AfA{БbRdOd@]4K'ΣYvwj~\\ݝi>RޭӍ*ӟ_,:mdRLRC-ӓEo4 +1ɯL]:4 Lړ![z$'`ҧ ETmX#4J  IFNYq"{-㔚ᤂBA&W3rX#52Kj&֘P+^MlR ^BM$L24 +c<>h{MD/&3e,]fnY*)Z=͍?ֹWSVr\έp(>j'`ܟC I2H\\~ȢU0Kq[>XQqd׭D +hRDw B1Uw8dHYbL_l/GKla*04P'8l9Q!˲ζ~*k_X$u+qOXJx禎kD}9I>$pZ?qL_NH(qa/K7/oc[9OO$ltzGoNj7`pJʈz8ћsP=ܥX ǂ%=ްFVP9z:l N*RMH K4V!]U̹9B21qF?Q̪سAkp6\iZՙ U!ı3K%.{jhU]L!JNO F V$LtCxٕyo+λvez*49:yLt8t@y'$^RXq޵+B'U橥ZqF*n d*{iq޵+ڕyޚҾPF?TyS/(NSG%滆4o5 kQl]vyNJVZ;XFQ9Ԙ>9/A>lwQa\U }~a\ _Oɱv>pU S0 }>L(^R'WOec>]kT\O]a|UE}rʉ@]OO +$](쓛C~\OY|>> &i}ZDRa\UߩDQ'WwPuAaMz#ON`JZ}r-y>1{M>VX9%ngFMߜYا{*R>y\PvnaܐnUح }D&_ FYvZ׉ +q7+M!19qq[2WɚHy0ƪLR_=zet2ga6* + l]&mtLR8I3S=%Y<'lt:/8M} +.rhG_tfTJSg^'wb7GwF P5\bRJj$rͮKaL M)`lw|=u sG(gƼ^r]*)8W +t' +nC>z ++c:od# L %&;^7sg'_wz@]o{tǙWXpߩ.ɨ5(fse}RhIĪվgeէqj_Iֵj_)椎BL^+х]V틠0j7ճH{R}Ae#:ځedM6 &gFO,ꢽ*e&_KV-7R:r޽Ж:B.r{(u?TPR1[%cRb@TkNGƭ B vxۜ[9O +73U*.9UhW sD [Qz-;C@;Qnja>2VXF!; 5|{X >F{԰ P_w/!IT#G;JZ|5W%Lyۭ\$|3M|j:[jw*Ŀ"N[Xo։b@CG-l9<'*"2φaD~)b%QYk|\rX8\GS(c-9;X-5<]Ғ@֚E+E&rX1jr'v2lZOa !oЭk Yc',HQ,º>5LaQ_څ7` :%qK<ή耝V z#9XW5GFFk=r-۝<\.s's5<9z#=XhώzMuz.ikB e|tDAP6XqzDukZ^MA5L_$QوߜQ(^72P(r=>K#r@GRqEr{k'$*zD9DmUpRII%ԩ%CxH'U.i#*{WquY!. +q7ꨶzjtYJeڿtY!R=b@aBi[exxY|vvLwNo;.cUOͶSSθPqp8J(\T+tNs᡾zϋ/<$c.5:x鵸g]x( +'\xx~F̅߰_x(ZG2hp!WU'!+.P=1np᡺wjWMzI*Ck(o;&+3.3ﺍH|kJ<[ͫ]%~+J47T3v%'VVsJ^i֌l/]ްJ腈VzEwogCX#ᷤb%#Q?is?4ŴFax<xTHNx?$u~Ox&7z] PBZO?Q1_nد ȃ}a`Ȭ5:S}{`e ۄh ܃{6=pr./T<`2܃v"<; ?K9G]͝v>AӋSF𵑶vD,(:a+;0,,P.FlEpm=0"D|}Epy~Sk 3|kӫp}sh]y0qm,D!OF/w˹6E9A,p E]=F^R1m!`h]/m#;Jg[ ,~CFu5__=,wT܌>E}hŷ~$`l".׮}wApύF%幜g}P>;v4u6ɾm*b`adB{d+r>³yce}[}v@g7?Iwh}h%T~"Ea +9 +n9Sf $?MB4ۿVBo] +C \56ѵy5*wy1,=ym2G2 nul鶿Pt:X r [| >4)!&*Ewf_ ǵ i +ra\=f SG- eNWH~C q$Ýr{Dl * bTp4R!0A:xlGhc ƈS$D]6EoUB^24˩&z/vI/m| 0̤)K±S4S`:7~?/m>7J-K6Ӷu3HަcϘ?dڹgXxӿO&_Y/b~Ͳ&D ;=d3HX7 ,cfX3'2:rV-4G wA#:^}Ǩ|y;V쿼㲩>`&-9jr$F efϣ(h ++d՚"Z_&TFY@粿DAib9X6ZcV0`-ZP(Ԓ| rfl\d!vױ K~ tԌSx}SFZȔ5MS|n5KF v2KBN;E + j}:yQ8ɡ3F|ٳ>Ђ^` :UEZ&N+ꋝB6N1!M Ncl24 ҸAMHw+G0#VS:*@0 c|tQwtP6Cy$6û\ywM6# *,N6P0RtGR@>mT>zG}Z;ɀRЬQW1*Q݈ӅuvΛU nI< gj9X+횈cF=23A%˻5*P4:G atޘmNj)5JhFp`gw͹^TOS\0.,ӛ_7߄G蝠mTUZcV06ۼz~bDqvOwfh\srExA8el&a3}es:;sip,j2RǀqNӳ5@s:;s8Yg: +A!:e7sY7+e{Hg/||81KʔCi{/P_zw0V`[8XjύB G6ZENO950~4)3?8ʴeý I7gېgM=fM=@/ D>z>_Sv +/}47gM8 +ϸU}ڎp ͤD cE5Gu؁U4" feL^UGtK&޹(H`8r`ў_dJJo*(H`t caŊ* `e2 +q>Y-L%# aǍ~=v48K=(4Bxї3MtOpnOهHYS_xc(= өC8]r8[nj/V+ `KKYI(\\m^T\eq0BfaѦR5' n7xorsrGQN`w, ]%yK,tswI'N]9s00d/OCqF>祝p93s` FmF|zL9! .W>X$'i|pJT@r蹜Kk +L..fe|QOKFurÖu.ߠL-F6ܰ +| 20i >84Y߶._xYw|?Mv4#l4ojfW=Okjb1bڊ'C +,/}J>d? mYgݩ_44۟ȕ~)D9\~bBL<8{6, Z3<>"cOL!8-e+SJKv|k|E ~˹i ]UmhIʂĆqd ++/jq14+œcYō +,O1%@.WLDt( Ki\OpF¬.]܌VBjJ-H- \,/e0[‘h y}O":-6?5wֶo*|1DEԢJJh$Vw +8<آaty2w`!Ae@ +& 7]2Bcf;@Ů' :iL!=XvbDkɧ/Lsnxӟ2 +X/ +dGpE:B960{l8j'^`Hnd#Ju3{ +EՇ +CV半KAJ̒i.'Mt/3_ \n6̹$>ۭ4^͡9i pJB鑃1J`;N\>L;yc~( Y +.~ɾI՜؉́91sPĻRq;Y4Za f.bA\(ˡ;7‰ރhF\I'JSqXN{-3ÃT|t0g~/s$ ˫~P:, ҋ5Hw ~J&~Xi%x!bp1\@)sØ&M3'2g1޵^SL; AJ} ,?(m+/ܶ"lMRT"D%/ɕ_evQ6QJ r `lÖ ,l@0޳/Y쀟o707^+yC67qpa?ݿ&C]|1n_K _ar(a?t ?arnh)u# )f06344c9VSKƦz&0"0113! D#;,-E0 tAj@bzjHQbf('*$$ҋRKR3A" Mp Mٖ +endstream endobj 5 0 obj <> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 22 0 obj [21 0 R] endobj 35 0 obj <> endobj xref +0 36 +0000000004 65535 f +0000000016 00000 n +0000000159 00000 n +0000009448 00000 n +0000000000 00000 f +0000039045 00000 n +0000000000 00000 f +0000009499 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000039112 00000 n +0000039143 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000010825 00000 n +0000039228 00000 n +0000009835 00000 n +0000011122 00000 n +0000011009 00000 n +0000010082 00000 n +0000010263 00000 n +0000010311 00000 n +0000010893 00000 n +0000010924 00000 n +0000011196 00000 n +0000011370 00000 n +0000012385 00000 n +0000014612 00000 n +0000039253 00000 n +trailer +<<716E2DB4294F6749B3E5ADF7E13AF65C>]>> +startxref +39388 +%%EOF diff --git a/web/logo.png b/web/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..4bd33263790315ffc3e0108ad0856a4d8d991b48 GIT binary patch literal 462 zcmV;<0WtoGP)04st&EQO43U@RaPD$*oIc>#}2m(}S3H2MI>7i#FR zVIVOKNCFwz0wc}yi>XEZKRQ}$EFfv$DztJKEeS;#tsFW)Gq(|8(x_i;YPMQPqE~p3 z-E9eM6GDUNlYc6NY#JO_C@DfHa!7te;lRbA1E)bsiBXC<2|3+aQvY&8)2XSk>4~Kk zXhzu+yGSBB0V#Z}qRm|4Umk3+9d7-baLWYl2<`>j*F_?D7w_<>h1aZsu$g`H!KVuj z7mYjJPK>k)cU~1RFsEVwu~srSH8-`HDi05jap5Y!0B>qOejcLmi~s-t07*qoM6N<$ Eg1t<((*OVf literal 0 HcmV?d00001 diff --git a/web/package.json b/web/package.json deleted file mode 100644 index 6589ead..0000000 --- a/web/package.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "stairs", - "version": "1.0.0", - "description": "Stairs lighting project", - "main": "app.js", - "author": "Mark van Renswoude", - "license": "ISC", - "dependencies": { - "buffer-reader": "^0.1.0", - "express": "^4.15.2", - "md5-file": "^3.1.1", - "semver-utils": "^1.1.1" - }, - "devDependencies": { - "@types/crossroads": "0.0.29", - "@types/hasher": "0.0.29", - "@types/jquery": "^2.0.41", - "@types/knockout": "^3.4.40", - "@types/nprogress": "0.0.29", - "@types/requirejs": "^2.1.29", - "gulp": "^3.9.1", - "gulp-clean-css": "^3.0.4", - "gulp-concat": "^2.6.1", - "gulp-debounced-watch": "^1.0.4", - "gulp-plumber": "^1.1.0", - "gulp-sass": "^3.1.0", - "gulp-typescript": "^3.1.6", - "gulp-uglify": "^2.1.2", - "typescript": "^2.2.2" - } -} diff --git a/web/protocol.js b/web/protocol.js deleted file mode 100644 index d29744a..0000000 --- a/web/protocol.js +++ /dev/null @@ -1,24 +0,0 @@ -module.exports = -{ - Command: - { - Error: 0x00, - Ping: 0x01, - Reply: 0x02, - GetMode: 0x03, - SetMode: 0x04, - GetRange: 0x05, - SetRange: 0x06, - UpdateFirmware: 0xFF - }, - - - Mode: - { - Static: 0x01, - Custom: 0x02, - Alternate: 0x03, - Slide: 0x04 - //ADC: 0x05 - } -}; \ No newline at end of file diff --git a/web/site.scss b/web/site.scss new file mode 100644 index 0000000..8a63343 --- /dev/null +++ b/web/site.scss @@ -0,0 +1,222 @@ +$color-primary: #0066ff; +$color-quaternary: #404040; + +@import "milligram"; + + + +$bodyBackgroundColor: black; +$textColor: white; + +$containerBackgroundColor: #202020; +$containerShadow: 0 0 50px #fcf6cf; + +$buttonBorderColor: #404040; + +$sliderBarColor: #404040; +$sliderBarSize: .5rem; +$sliderThumbColor: #fcf6cf; +$sliderThumbSize: 2rem; + + +$smallScreen: "screen and (min-width: 768px)"; + + +[v-cloak] +{ + display: none; +} + +body +{ + background-color: $bodyBackgroundColor; + color: $textColor; + font-family: 'Verdana', 'Arial', sans-serif; + font-size: 10pt; + + padding-bottom: 3rem; + + @media #{$smallScreen} + { + padding-top: 3rem; + } +} + + +input, textarea +{ + color: $textColor; +} + + +#container +{ + background-color: $containerBackgroundColor; + margin-top: 2rem; + padding: 1rem; + + box-shadow: $containerShadow; + border: solid 1px black; + + @media #{$smallScreen} + { + width: 768px; + margin-left: auto; + margin-right: auto; + } +} + + +.header +{ + position: relative; + + img + { + float: left; + margin-right: 1rem; + } + + .wifistatus + { + position: absolute; + right: 0; + top: 0; + + .indicator + { + display: inline-block; + width: 1rem; + height: 1rem; + border-radius: 50%; + margin-right: 0.5rem; + + &[data-status=connected] { background-color: #339966; } + &[data-status=disconnected] { border: solid 1px #808080; } + &[data-status=connecting] { background-color: #ff9933; } + &[data-status=error] { background-color: #cc0000; } + } + } +} + +h1 +{ + font-size: 16pt; + margin: 0; +} + +h2 +{ + color: #c0c0c0; + font-size: 10pt; + margin: 0; +} + +h3 +{ + color: #808080; + background-color: #282828; + font-size: 14pt; + border-bottom: solid 1px #808080; +} + + +.version +{ + color: #808080; + font-size: 8pt; + text-align: center; + margin-top: 2rem; +} + + +.tabs +{ + clear: both; + margin-top: 3rem; + + .button + { + background-color: $buttonBorderColor; + color: $textColor !important; + border-color: #808080; + + &.button-outline + { + background-color: transparent; + } + } +} + + +input[disabled] +{ + cursor: not-allowed; + color: #808080; + background-color: #262626; +} + + +.label-inline +{ + margin-right: 2rem; +} + + +.hint +{ + display: block; + font-size: 8pt; + color: #808080; + margin-bottom: 1.5rem; +} + + +.loading +{ + margin-top: 3rem; + text-align: center; +} + + +.suboptions +{ + margin-left: 5rem; +} + + +.buttons +{ + text-align: center; +} + + +.slider +{ + -webkit-appearance: none; + width: 100%; + height: $sliderBarSize; + border-radius: $sliderBarSize / 2; + background: $sliderBarColor; + outline: none; + + &::-webkit-slider-thumb + { + -webkit-appearance: none; + appearance: none; + width: $sliderThumbSize; + height: $sliderThumbSize; + border-radius: 50%; + background: $sliderThumbColor; + cursor: pointer; + } + + &::-moz-range-thumb + { + width: $sliderThumbSize; + height: $sliderThumbSize; + border-radius: 50%; + background: $sliderThumbColor; + cursor: pointer; + } +} \ No newline at end of file diff --git a/web/static/assets/dist/appstart.js b/web/static/assets/dist/appstart.js deleted file mode 100644 index 3d64687..0000000 --- a/web/static/assets/dist/appstart.js +++ /dev/null @@ -1 +0,0 @@ -var bowerBase="../../bower_components/",config={baseUrl:"assets/dist/",shim:{bootstrap:{deps:["jquery","tether"],exports:"Bootstrap"}},paths:{crossroads:bowerBase+"crossroads/dist/crossroads.min",hasher:bowerBase+"hasher/dist/js/hasher.min",jquery:bowerBase+"jquery/dist/jquery.min",knockout:bowerBase+"knockout/dist/knockout",signals:bowerBase+"js-signals/dist/signals.min",text:bowerBase+"text/text",bootstrap:bowerBase+"bootstrap/dist/js/bootstrap.min",tether:bowerBase+"tether/dist/js/tether.min",nprogress:bowerBase+"nprogress/nprogress"}};config.wrapShim=!0,requirejs.config(config),window.Tether=require(["tether"],function(){require(["bootstrap","index"])}); \ No newline at end of file diff --git a/web/static/assets/dist/bundle.css b/web/static/assets/dist/bundle.css deleted file mode 100644 index eeec680..0000000 --- a/web/static/assets/dist/bundle.css +++ /dev/null @@ -1 +0,0 @@ -body{background-color:#fff}#page{margin-top:16px}.row .header{font-weight:700;padding-bottom:8px} \ No newline at end of file diff --git a/web/static/assets/dist/components/page-firmware.html b/web/static/assets/dist/components/page-firmware.html deleted file mode 100644 index 53a9482..0000000 --- a/web/static/assets/dist/components/page-firmware.html +++ /dev/null @@ -1,26 +0,0 @@ -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
- -
-
- -
-
-
diff --git a/web/static/assets/dist/components/page-firmware.js b/web/static/assets/dist/components/page-firmware.js deleted file mode 100644 index da58b54..0000000 --- a/web/static/assets/dist/components/page-firmware.js +++ /dev/null @@ -1 +0,0 @@ -define(["require","exports","text!./page-firmware.html","knockout"],function(t,e,o,r){"use strict";return{viewModel:function(){function t(){this.Host=r.observable(location.hostname),this.Port=r.observable(location.port),this.Path=r.observable("/updateFirmware"),this.updateFirmware=function(){}}return t}(),template:o}}); \ No newline at end of file diff --git a/web/static/assets/dist/components/page-home.html b/web/static/assets/dist/components/page-home.html deleted file mode 100644 index 6769dd6..0000000 --- a/web/static/assets/dist/components/page-home.html +++ /dev/null @@ -1 +0,0 @@ -Hello world! \ No newline at end of file diff --git a/web/static/assets/dist/components/page-home.js b/web/static/assets/dist/components/page-home.js deleted file mode 100644 index 1110264..0000000 --- a/web/static/assets/dist/components/page-home.js +++ /dev/null @@ -1 +0,0 @@ -define(["require","exports","text!./page-home.html"],function(e,t,n){"use strict";return{viewModel:function(){function e(){}return e.prototype.dispose=function(){},e}(),template:n}}); \ No newline at end of file diff --git a/web/static/assets/dist/components/page-mode.html b/web/static/assets/dist/components/page-mode.html deleted file mode 100644 index 0cab795..0000000 --- a/web/static/assets/dist/components/page-mode.html +++ /dev/null @@ -1,71 +0,0 @@ -
-
-
- -
-
- -
-
- -
-
-
- - -
-
-
Brightness
-
-
-
-
- -
- -
-
-
Step
-
Value
-
- -
-
-
-
-
-
-
-
-
- -
-
-
Interval
-
-
-
- -
-
Brightness
-
-
-
-
- - \ No newline at end of file diff --git a/web/static/assets/dist/components/page-mode.js b/web/static/assets/dist/components/page-mode.js deleted file mode 100644 index b1432cf..0000000 --- a/web/static/assets/dist/components/page-mode.js +++ /dev/null @@ -1 +0,0 @@ -define(["require","exports","text!./page-mode.html","stairs"],function(t,e,i,r){"use strict";return{viewModel:function(){function t(){this.StairsMode=r.StairsMode,this.Stairs=r.Stairs.instance()}return t}(),template:i}}); \ No newline at end of file diff --git a/web/static/assets/dist/components/page-settings.html b/web/static/assets/dist/components/page-settings.html deleted file mode 100644 index 65c8535..0000000 --- a/web/static/assets/dist/components/page-settings.html +++ /dev/null @@ -1,23 +0,0 @@ -
-
- -
- -
-
Step
-
Start (min. 0)
-
End (max. 4095)
-
- -
-
-
-
-
-
-
- - -
\ No newline at end of file diff --git a/web/static/assets/dist/components/page-settings.js b/web/static/assets/dist/components/page-settings.js deleted file mode 100644 index 29a58c1..0000000 --- a/web/static/assets/dist/components/page-settings.js +++ /dev/null @@ -1 +0,0 @@ -define(["require","exports","text!./page-settings.html","stairs"],function(t,e,n,r){"use strict";return{viewModel:function(){function t(){var t=this;this.Stairs=r.Stairs.instance(),this.resetRanges=function(){return t.Stairs.Range.Values(t.Stairs.Range.Values().map(function(t){var e=new r.StairsRangeValue;return e.Start(0),e.End(4095),e})),!1}}return t}(),template:n}}); \ No newline at end of file diff --git a/web/static/assets/dist/debug.js b/web/static/assets/dist/debug.js deleted file mode 100644 index 9673267..0000000 --- a/web/static/assets/dist/debug.js +++ /dev/null @@ -1 +0,0 @@ -define(["require","exports"],function(e,n){"use strict";n.__esModule=!0;var u=function(){function e(){}return e}();n.Debug=u}); \ No newline at end of file diff --git a/web/static/assets/dist/font-awesome/HELP-US-OUT.txt b/web/static/assets/dist/font-awesome/HELP-US-OUT.txt deleted file mode 100644 index 83d083d..0000000 --- a/web/static/assets/dist/font-awesome/HELP-US-OUT.txt +++ /dev/null @@ -1,7 +0,0 @@ -I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, -Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, -comprehensive icon sets or copy and paste your own. - -Please. Check it out. - --Dave Gandy diff --git a/web/static/assets/dist/font-awesome/css/font-awesome.css b/web/static/assets/dist/font-awesome/css/font-awesome.css deleted file mode 100644 index ee906a8..0000000 --- a/web/static/assets/dist/font-awesome/css/font-awesome.css +++ /dev/null @@ -1,2337 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ -/* FONT PATH - * -------------------------- */ -@font-face { - font-family: 'FontAwesome'; - src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); - font-weight: normal; - font-style: normal; -} -.fa { - display: inline-block; - font: normal normal normal 14px/1 FontAwesome; - font-size: inherit; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -/* makes the font 33% larger relative to the icon container */ -.fa-lg { - font-size: 1.33333333em; - line-height: 0.75em; - vertical-align: -15%; -} -.fa-2x { - font-size: 2em; -} -.fa-3x { - font-size: 3em; -} -.fa-4x { - font-size: 4em; -} -.fa-5x { - font-size: 5em; -} -.fa-fw { - width: 1.28571429em; - text-align: center; -} -.fa-ul { - padding-left: 0; - margin-left: 2.14285714em; - list-style-type: none; -} -.fa-ul > li { - position: relative; -} -.fa-li { - position: absolute; - left: -2.14285714em; - width: 2.14285714em; - top: 0.14285714em; - text-align: center; -} -.fa-li.fa-lg { - left: -1.85714286em; -} -.fa-border { - padding: .2em .25em .15em; - border: solid 0.08em #eeeeee; - border-radius: .1em; -} -.fa-pull-left { - float: left; -} -.fa-pull-right { - float: right; -} -.fa.fa-pull-left { - margin-right: .3em; -} -.fa.fa-pull-right { - margin-left: .3em; -} -/* Deprecated as of 4.4.0 */ -.pull-right { - float: right; -} -.pull-left { - float: left; -} -.fa.pull-left { - margin-right: .3em; -} -.fa.pull-right { - margin-left: .3em; -} -.fa-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} -.fa-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -.fa-rotate-90 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); -} -.fa-rotate-180 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} -.fa-rotate-270 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); -} -.fa-flip-horizontal { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; - -webkit-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - transform: scale(-1, 1); -} -.fa-flip-vertical { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(1, -1); - -ms-transform: scale(1, -1); - transform: scale(1, -1); -} -:root .fa-rotate-90, -:root .fa-rotate-180, -:root .fa-rotate-270, -:root .fa-flip-horizontal, -:root .fa-flip-vertical { - filter: none; -} -.fa-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.fa-stack-1x, -.fa-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.fa-stack-1x { - line-height: inherit; -} -.fa-stack-2x { - font-size: 2em; -} -.fa-inverse { - color: #ffffff; -} -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.fa-glass:before { - content: "\f000"; -} -.fa-music:before { - content: "\f001"; -} -.fa-search:before { - content: "\f002"; -} -.fa-envelope-o:before { - content: "\f003"; -} -.fa-heart:before { - content: "\f004"; -} -.fa-star:before { - content: "\f005"; -} -.fa-star-o:before { - content: "\f006"; -} -.fa-user:before { - content: "\f007"; -} -.fa-film:before { - content: "\f008"; -} -.fa-th-large:before { - content: "\f009"; -} -.fa-th:before { - content: "\f00a"; -} -.fa-th-list:before { - content: "\f00b"; -} -.fa-check:before { - content: "\f00c"; -} -.fa-remove:before, -.fa-close:before, -.fa-times:before { - content: "\f00d"; -} -.fa-search-plus:before { - content: "\f00e"; -} -.fa-search-minus:before { - content: "\f010"; -} -.fa-power-off:before { - content: "\f011"; -} -.fa-signal:before { - content: "\f012"; -} -.fa-gear:before, -.fa-cog:before { - content: "\f013"; -} -.fa-trash-o:before { - content: "\f014"; -} -.fa-home:before { - content: "\f015"; -} -.fa-file-o:before { - content: "\f016"; -} -.fa-clock-o:before { - content: "\f017"; -} -.fa-road:before { - content: "\f018"; -} -.fa-download:before { - content: "\f019"; -} -.fa-arrow-circle-o-down:before { - content: "\f01a"; -} -.fa-arrow-circle-o-up:before { - content: "\f01b"; -} -.fa-inbox:before { - content: "\f01c"; -} -.fa-play-circle-o:before { - content: "\f01d"; -} -.fa-rotate-right:before, -.fa-repeat:before { - content: "\f01e"; -} -.fa-refresh:before { - content: "\f021"; -} -.fa-list-alt:before { - content: "\f022"; -} -.fa-lock:before { - content: "\f023"; -} -.fa-flag:before { - content: "\f024"; -} -.fa-headphones:before { - content: "\f025"; -} -.fa-volume-off:before { - content: "\f026"; -} -.fa-volume-down:before { - content: "\f027"; -} -.fa-volume-up:before { - content: "\f028"; -} -.fa-qrcode:before { - content: "\f029"; -} -.fa-barcode:before { - content: "\f02a"; -} -.fa-tag:before { - content: "\f02b"; -} -.fa-tags:before { - content: "\f02c"; -} -.fa-book:before { - content: "\f02d"; -} -.fa-bookmark:before { - content: "\f02e"; -} -.fa-print:before { - content: "\f02f"; -} -.fa-camera:before { - content: "\f030"; -} -.fa-font:before { - content: "\f031"; -} -.fa-bold:before { - content: "\f032"; -} -.fa-italic:before { - content: "\f033"; -} -.fa-text-height:before { - content: "\f034"; -} -.fa-text-width:before { - content: "\f035"; -} -.fa-align-left:before { - content: "\f036"; -} -.fa-align-center:before { - content: "\f037"; -} -.fa-align-right:before { - content: "\f038"; -} -.fa-align-justify:before { - content: "\f039"; -} -.fa-list:before { - content: "\f03a"; -} -.fa-dedent:before, -.fa-outdent:before { - content: "\f03b"; -} -.fa-indent:before { - content: "\f03c"; -} -.fa-video-camera:before { - content: "\f03d"; -} -.fa-photo:before, -.fa-image:before, -.fa-picture-o:before { - content: "\f03e"; -} -.fa-pencil:before { - content: "\f040"; -} -.fa-map-marker:before { - content: "\f041"; -} -.fa-adjust:before { - content: "\f042"; -} -.fa-tint:before { - content: "\f043"; -} -.fa-edit:before, -.fa-pencil-square-o:before { - content: "\f044"; -} -.fa-share-square-o:before { - content: "\f045"; -} -.fa-check-square-o:before { - content: "\f046"; -} -.fa-arrows:before { - content: "\f047"; -} -.fa-step-backward:before { - content: "\f048"; -} -.fa-fast-backward:before { - content: "\f049"; -} -.fa-backward:before { - content: "\f04a"; -} -.fa-play:before { - content: "\f04b"; -} -.fa-pause:before { - content: "\f04c"; -} -.fa-stop:before { - content: "\f04d"; -} -.fa-forward:before { - content: "\f04e"; -} -.fa-fast-forward:before { - content: "\f050"; -} -.fa-step-forward:before { - content: "\f051"; -} -.fa-eject:before { - content: "\f052"; -} -.fa-chevron-left:before { - content: "\f053"; -} -.fa-chevron-right:before { - content: "\f054"; -} -.fa-plus-circle:before { - content: "\f055"; -} -.fa-minus-circle:before { - content: "\f056"; -} -.fa-times-circle:before { - content: "\f057"; -} -.fa-check-circle:before { - content: "\f058"; -} -.fa-question-circle:before { - content: "\f059"; -} -.fa-info-circle:before { - content: "\f05a"; -} -.fa-crosshairs:before { - content: "\f05b"; -} -.fa-times-circle-o:before { - content: "\f05c"; -} -.fa-check-circle-o:before { - content: "\f05d"; -} -.fa-ban:before { - content: "\f05e"; -} -.fa-arrow-left:before { - content: "\f060"; -} -.fa-arrow-right:before { - content: "\f061"; -} -.fa-arrow-up:before { - content: "\f062"; -} -.fa-arrow-down:before { - content: "\f063"; -} -.fa-mail-forward:before, -.fa-share:before { - content: "\f064"; -} -.fa-expand:before { - content: "\f065"; -} -.fa-compress:before { - content: "\f066"; -} -.fa-plus:before { - content: "\f067"; -} -.fa-minus:before { - content: "\f068"; -} -.fa-asterisk:before { - content: "\f069"; -} -.fa-exclamation-circle:before { - content: "\f06a"; -} -.fa-gift:before { - content: "\f06b"; -} -.fa-leaf:before { - content: "\f06c"; -} -.fa-fire:before { - content: "\f06d"; -} -.fa-eye:before { - content: "\f06e"; -} -.fa-eye-slash:before { - content: "\f070"; -} -.fa-warning:before, -.fa-exclamation-triangle:before { - content: "\f071"; -} -.fa-plane:before { - content: "\f072"; -} -.fa-calendar:before { - content: "\f073"; -} -.fa-random:before { - content: "\f074"; -} -.fa-comment:before { - content: "\f075"; -} -.fa-magnet:before { - content: "\f076"; -} -.fa-chevron-up:before { - content: "\f077"; -} -.fa-chevron-down:before { - content: "\f078"; -} -.fa-retweet:before { - content: "\f079"; -} -.fa-shopping-cart:before { - content: "\f07a"; -} -.fa-folder:before { - content: "\f07b"; -} -.fa-folder-open:before { - content: "\f07c"; -} -.fa-arrows-v:before { - content: "\f07d"; -} -.fa-arrows-h:before { - content: "\f07e"; -} -.fa-bar-chart-o:before, -.fa-bar-chart:before { - content: "\f080"; -} -.fa-twitter-square:before { - content: "\f081"; -} -.fa-facebook-square:before { - content: "\f082"; -} -.fa-camera-retro:before { - content: "\f083"; -} -.fa-key:before { - content: "\f084"; -} -.fa-gears:before, -.fa-cogs:before { - content: "\f085"; -} -.fa-comments:before { - content: "\f086"; -} -.fa-thumbs-o-up:before { - content: "\f087"; -} -.fa-thumbs-o-down:before { - content: "\f088"; -} -.fa-star-half:before { - content: "\f089"; -} -.fa-heart-o:before { - content: "\f08a"; -} -.fa-sign-out:before { - content: "\f08b"; -} -.fa-linkedin-square:before { - content: "\f08c"; -} -.fa-thumb-tack:before { - content: "\f08d"; -} -.fa-external-link:before { - content: "\f08e"; -} -.fa-sign-in:before { - content: "\f090"; -} -.fa-trophy:before { - content: "\f091"; -} -.fa-github-square:before { - content: "\f092"; -} -.fa-upload:before { - content: "\f093"; -} -.fa-lemon-o:before { - content: "\f094"; -} -.fa-phone:before { - content: "\f095"; -} -.fa-square-o:before { - content: "\f096"; -} -.fa-bookmark-o:before { - content: "\f097"; -} -.fa-phone-square:before { - content: "\f098"; -} -.fa-twitter:before { - content: "\f099"; -} -.fa-facebook-f:before, -.fa-facebook:before { - content: "\f09a"; -} -.fa-github:before { - content: "\f09b"; -} -.fa-unlock:before { - content: "\f09c"; -} -.fa-credit-card:before { - content: "\f09d"; -} -.fa-feed:before, -.fa-rss:before { - content: "\f09e"; -} -.fa-hdd-o:before { - content: "\f0a0"; -} -.fa-bullhorn:before { - content: "\f0a1"; -} -.fa-bell:before { - content: "\f0f3"; -} -.fa-certificate:before { - content: "\f0a3"; -} -.fa-hand-o-right:before { - content: "\f0a4"; -} -.fa-hand-o-left:before { - content: "\f0a5"; -} -.fa-hand-o-up:before { - content: "\f0a6"; -} -.fa-hand-o-down:before { - content: "\f0a7"; -} -.fa-arrow-circle-left:before { - content: "\f0a8"; -} -.fa-arrow-circle-right:before { - content: "\f0a9"; -} -.fa-arrow-circle-up:before { - content: "\f0aa"; -} -.fa-arrow-circle-down:before { - content: "\f0ab"; -} -.fa-globe:before { - content: "\f0ac"; -} -.fa-wrench:before { - content: "\f0ad"; -} -.fa-tasks:before { - content: "\f0ae"; -} -.fa-filter:before { - content: "\f0b0"; -} -.fa-briefcase:before { - content: "\f0b1"; -} -.fa-arrows-alt:before { - content: "\f0b2"; -} -.fa-group:before, -.fa-users:before { - content: "\f0c0"; -} -.fa-chain:before, -.fa-link:before { - content: "\f0c1"; -} -.fa-cloud:before { - content: "\f0c2"; -} -.fa-flask:before { - content: "\f0c3"; -} -.fa-cut:before, -.fa-scissors:before { - content: "\f0c4"; -} -.fa-copy:before, -.fa-files-o:before { - content: "\f0c5"; -} -.fa-paperclip:before { - content: "\f0c6"; -} -.fa-save:before, -.fa-floppy-o:before { - content: "\f0c7"; -} -.fa-square:before { - content: "\f0c8"; -} -.fa-navicon:before, -.fa-reorder:before, -.fa-bars:before { - content: "\f0c9"; -} -.fa-list-ul:before { - content: "\f0ca"; -} -.fa-list-ol:before { - content: "\f0cb"; -} -.fa-strikethrough:before { - content: "\f0cc"; -} -.fa-underline:before { - content: "\f0cd"; -} -.fa-table:before { - content: "\f0ce"; -} -.fa-magic:before { - content: "\f0d0"; -} -.fa-truck:before { - content: "\f0d1"; -} -.fa-pinterest:before { - content: "\f0d2"; -} -.fa-pinterest-square:before { - content: "\f0d3"; -} -.fa-google-plus-square:before { - content: "\f0d4"; -} -.fa-google-plus:before { - content: "\f0d5"; -} -.fa-money:before { - content: "\f0d6"; -} -.fa-caret-down:before { - content: "\f0d7"; -} -.fa-caret-up:before { - content: "\f0d8"; -} -.fa-caret-left:before { - content: "\f0d9"; -} -.fa-caret-right:before { - content: "\f0da"; -} -.fa-columns:before { - content: "\f0db"; -} -.fa-unsorted:before, -.fa-sort:before { - content: "\f0dc"; -} -.fa-sort-down:before, -.fa-sort-desc:before { - content: "\f0dd"; -} -.fa-sort-up:before, -.fa-sort-asc:before { - content: "\f0de"; -} -.fa-envelope:before { - content: "\f0e0"; -} -.fa-linkedin:before { - content: "\f0e1"; -} -.fa-rotate-left:before, -.fa-undo:before { - content: "\f0e2"; -} -.fa-legal:before, -.fa-gavel:before { - content: "\f0e3"; -} -.fa-dashboard:before, -.fa-tachometer:before { - content: "\f0e4"; -} -.fa-comment-o:before { - content: "\f0e5"; -} -.fa-comments-o:before { - content: "\f0e6"; -} -.fa-flash:before, -.fa-bolt:before { - content: "\f0e7"; -} -.fa-sitemap:before { - content: "\f0e8"; -} -.fa-umbrella:before { - content: "\f0e9"; -} -.fa-paste:before, -.fa-clipboard:before { - content: "\f0ea"; -} -.fa-lightbulb-o:before { - content: "\f0eb"; -} -.fa-exchange:before { - content: "\f0ec"; -} -.fa-cloud-download:before { - content: "\f0ed"; -} -.fa-cloud-upload:before { - content: "\f0ee"; -} -.fa-user-md:before { - content: "\f0f0"; -} -.fa-stethoscope:before { - content: "\f0f1"; -} -.fa-suitcase:before { - content: "\f0f2"; -} -.fa-bell-o:before { - content: "\f0a2"; -} -.fa-coffee:before { - content: "\f0f4"; -} -.fa-cutlery:before { - content: "\f0f5"; -} -.fa-file-text-o:before { - content: "\f0f6"; -} -.fa-building-o:before { - content: "\f0f7"; -} -.fa-hospital-o:before { - content: "\f0f8"; -} -.fa-ambulance:before { - content: "\f0f9"; -} -.fa-medkit:before { - content: "\f0fa"; -} -.fa-fighter-jet:before { - content: "\f0fb"; -} -.fa-beer:before { - content: "\f0fc"; -} -.fa-h-square:before { - content: "\f0fd"; -} -.fa-plus-square:before { - content: "\f0fe"; -} -.fa-angle-double-left:before { - content: "\f100"; -} -.fa-angle-double-right:before { - content: "\f101"; -} -.fa-angle-double-up:before { - content: "\f102"; -} -.fa-angle-double-down:before { - content: "\f103"; -} -.fa-angle-left:before { - content: "\f104"; -} -.fa-angle-right:before { - content: "\f105"; -} -.fa-angle-up:before { - content: "\f106"; -} -.fa-angle-down:before { - content: "\f107"; -} -.fa-desktop:before { - content: "\f108"; -} -.fa-laptop:before { - content: "\f109"; -} -.fa-tablet:before { - content: "\f10a"; -} -.fa-mobile-phone:before, -.fa-mobile:before { - content: "\f10b"; -} -.fa-circle-o:before { - content: "\f10c"; -} -.fa-quote-left:before { - content: "\f10d"; -} -.fa-quote-right:before { - content: "\f10e"; -} -.fa-spinner:before { - content: "\f110"; -} -.fa-circle:before { - content: "\f111"; -} -.fa-mail-reply:before, -.fa-reply:before { - content: "\f112"; -} -.fa-github-alt:before { - content: "\f113"; -} -.fa-folder-o:before { - content: "\f114"; -} -.fa-folder-open-o:before { - content: "\f115"; -} -.fa-smile-o:before { - content: "\f118"; -} -.fa-frown-o:before { - content: "\f119"; -} -.fa-meh-o:before { - content: "\f11a"; -} -.fa-gamepad:before { - content: "\f11b"; -} -.fa-keyboard-o:before { - content: "\f11c"; -} -.fa-flag-o:before { - content: "\f11d"; -} -.fa-flag-checkered:before { - content: "\f11e"; -} -.fa-terminal:before { - content: "\f120"; -} -.fa-code:before { - content: "\f121"; -} -.fa-mail-reply-all:before, -.fa-reply-all:before { - content: "\f122"; -} -.fa-star-half-empty:before, -.fa-star-half-full:before, -.fa-star-half-o:before { - content: "\f123"; -} -.fa-location-arrow:before { - content: "\f124"; -} -.fa-crop:before { - content: "\f125"; -} -.fa-code-fork:before { - content: "\f126"; -} -.fa-unlink:before, -.fa-chain-broken:before { - content: "\f127"; -} -.fa-question:before { - content: "\f128"; -} -.fa-info:before { - content: "\f129"; -} -.fa-exclamation:before { - content: "\f12a"; -} -.fa-superscript:before { - content: "\f12b"; -} -.fa-subscript:before { - content: "\f12c"; -} -.fa-eraser:before { - content: "\f12d"; -} -.fa-puzzle-piece:before { - content: "\f12e"; -} -.fa-microphone:before { - content: "\f130"; -} -.fa-microphone-slash:before { - content: "\f131"; -} -.fa-shield:before { - content: "\f132"; -} -.fa-calendar-o:before { - content: "\f133"; -} -.fa-fire-extinguisher:before { - content: "\f134"; -} -.fa-rocket:before { - content: "\f135"; -} -.fa-maxcdn:before { - content: "\f136"; -} -.fa-chevron-circle-left:before { - content: "\f137"; -} -.fa-chevron-circle-right:before { - content: "\f138"; -} -.fa-chevron-circle-up:before { - content: "\f139"; -} -.fa-chevron-circle-down:before { - content: "\f13a"; -} -.fa-html5:before { - content: "\f13b"; -} -.fa-css3:before { - content: "\f13c"; -} -.fa-anchor:before { - content: "\f13d"; -} -.fa-unlock-alt:before { - content: "\f13e"; -} -.fa-bullseye:before { - content: "\f140"; -} -.fa-ellipsis-h:before { - content: "\f141"; -} -.fa-ellipsis-v:before { - content: "\f142"; -} -.fa-rss-square:before { - content: "\f143"; -} -.fa-play-circle:before { - content: "\f144"; -} -.fa-ticket:before { - content: "\f145"; -} -.fa-minus-square:before { - content: "\f146"; -} -.fa-minus-square-o:before { - content: "\f147"; -} -.fa-level-up:before { - content: "\f148"; -} -.fa-level-down:before { - content: "\f149"; -} -.fa-check-square:before { - content: "\f14a"; -} -.fa-pencil-square:before { - content: "\f14b"; -} -.fa-external-link-square:before { - content: "\f14c"; -} -.fa-share-square:before { - content: "\f14d"; -} -.fa-compass:before { - content: "\f14e"; -} -.fa-toggle-down:before, -.fa-caret-square-o-down:before { - content: "\f150"; -} -.fa-toggle-up:before, -.fa-caret-square-o-up:before { - content: "\f151"; -} -.fa-toggle-right:before, -.fa-caret-square-o-right:before { - content: "\f152"; -} -.fa-euro:before, -.fa-eur:before { - content: "\f153"; -} -.fa-gbp:before { - content: "\f154"; -} -.fa-dollar:before, -.fa-usd:before { - content: "\f155"; -} -.fa-rupee:before, -.fa-inr:before { - content: "\f156"; -} -.fa-cny:before, -.fa-rmb:before, -.fa-yen:before, -.fa-jpy:before { - content: "\f157"; -} -.fa-ruble:before, -.fa-rouble:before, -.fa-rub:before { - content: "\f158"; -} -.fa-won:before, -.fa-krw:before { - content: "\f159"; -} -.fa-bitcoin:before, -.fa-btc:before { - content: "\f15a"; -} -.fa-file:before { - content: "\f15b"; -} -.fa-file-text:before { - content: "\f15c"; -} -.fa-sort-alpha-asc:before { - content: "\f15d"; -} -.fa-sort-alpha-desc:before { - content: "\f15e"; -} -.fa-sort-amount-asc:before { - content: "\f160"; -} -.fa-sort-amount-desc:before { - content: "\f161"; -} -.fa-sort-numeric-asc:before { - content: "\f162"; -} -.fa-sort-numeric-desc:before { - content: "\f163"; -} -.fa-thumbs-up:before { - content: "\f164"; -} -.fa-thumbs-down:before { - content: "\f165"; -} -.fa-youtube-square:before { - content: "\f166"; -} -.fa-youtube:before { - content: "\f167"; -} -.fa-xing:before { - content: "\f168"; -} -.fa-xing-square:before { - content: "\f169"; -} -.fa-youtube-play:before { - content: "\f16a"; -} -.fa-dropbox:before { - content: "\f16b"; -} -.fa-stack-overflow:before { - content: "\f16c"; -} -.fa-instagram:before { - content: "\f16d"; -} -.fa-flickr:before { - content: "\f16e"; -} -.fa-adn:before { - content: "\f170"; -} -.fa-bitbucket:before { - content: "\f171"; -} -.fa-bitbucket-square:before { - content: "\f172"; -} -.fa-tumblr:before { - content: "\f173"; -} -.fa-tumblr-square:before { - content: "\f174"; -} -.fa-long-arrow-down:before { - content: "\f175"; -} -.fa-long-arrow-up:before { - content: "\f176"; -} -.fa-long-arrow-left:before { - content: "\f177"; -} -.fa-long-arrow-right:before { - content: "\f178"; -} -.fa-apple:before { - content: "\f179"; -} -.fa-windows:before { - content: "\f17a"; -} -.fa-android:before { - content: "\f17b"; -} -.fa-linux:before { - content: "\f17c"; -} -.fa-dribbble:before { - content: "\f17d"; -} -.fa-skype:before { - content: "\f17e"; -} -.fa-foursquare:before { - content: "\f180"; -} -.fa-trello:before { - content: "\f181"; -} -.fa-female:before { - content: "\f182"; -} -.fa-male:before { - content: "\f183"; -} -.fa-gittip:before, -.fa-gratipay:before { - content: "\f184"; -} -.fa-sun-o:before { - content: "\f185"; -} -.fa-moon-o:before { - content: "\f186"; -} -.fa-archive:before { - content: "\f187"; -} -.fa-bug:before { - content: "\f188"; -} -.fa-vk:before { - content: "\f189"; -} -.fa-weibo:before { - content: "\f18a"; -} -.fa-renren:before { - content: "\f18b"; -} -.fa-pagelines:before { - content: "\f18c"; -} -.fa-stack-exchange:before { - content: "\f18d"; -} -.fa-arrow-circle-o-right:before { - content: "\f18e"; -} -.fa-arrow-circle-o-left:before { - content: "\f190"; -} -.fa-toggle-left:before, -.fa-caret-square-o-left:before { - content: "\f191"; -} -.fa-dot-circle-o:before { - content: "\f192"; -} -.fa-wheelchair:before { - content: "\f193"; -} -.fa-vimeo-square:before { - content: "\f194"; -} -.fa-turkish-lira:before, -.fa-try:before { - content: "\f195"; -} -.fa-plus-square-o:before { - content: "\f196"; -} -.fa-space-shuttle:before { - content: "\f197"; -} -.fa-slack:before { - content: "\f198"; -} -.fa-envelope-square:before { - content: "\f199"; -} -.fa-wordpress:before { - content: "\f19a"; -} -.fa-openid:before { - content: "\f19b"; -} -.fa-institution:before, -.fa-bank:before, -.fa-university:before { - content: "\f19c"; -} -.fa-mortar-board:before, -.fa-graduation-cap:before { - content: "\f19d"; -} -.fa-yahoo:before { - content: "\f19e"; -} -.fa-google:before { - content: "\f1a0"; -} -.fa-reddit:before { - content: "\f1a1"; -} -.fa-reddit-square:before { - content: "\f1a2"; -} -.fa-stumbleupon-circle:before { - content: "\f1a3"; -} -.fa-stumbleupon:before { - content: "\f1a4"; -} -.fa-delicious:before { - content: "\f1a5"; -} -.fa-digg:before { - content: "\f1a6"; -} -.fa-pied-piper-pp:before { - content: "\f1a7"; -} -.fa-pied-piper-alt:before { - content: "\f1a8"; -} -.fa-drupal:before { - content: "\f1a9"; -} -.fa-joomla:before { - content: "\f1aa"; -} -.fa-language:before { - content: "\f1ab"; -} -.fa-fax:before { - content: "\f1ac"; -} -.fa-building:before { - content: "\f1ad"; -} -.fa-child:before { - content: "\f1ae"; -} -.fa-paw:before { - content: "\f1b0"; -} -.fa-spoon:before { - content: "\f1b1"; -} -.fa-cube:before { - content: "\f1b2"; -} -.fa-cubes:before { - content: "\f1b3"; -} -.fa-behance:before { - content: "\f1b4"; -} -.fa-behance-square:before { - content: "\f1b5"; -} -.fa-steam:before { - content: "\f1b6"; -} -.fa-steam-square:before { - content: "\f1b7"; -} -.fa-recycle:before { - content: "\f1b8"; -} -.fa-automobile:before, -.fa-car:before { - content: "\f1b9"; -} -.fa-cab:before, -.fa-taxi:before { - content: "\f1ba"; -} -.fa-tree:before { - content: "\f1bb"; -} -.fa-spotify:before { - content: "\f1bc"; -} -.fa-deviantart:before { - content: "\f1bd"; -} -.fa-soundcloud:before { - content: "\f1be"; -} -.fa-database:before { - content: "\f1c0"; -} -.fa-file-pdf-o:before { - content: "\f1c1"; -} -.fa-file-word-o:before { - content: "\f1c2"; -} -.fa-file-excel-o:before { - content: "\f1c3"; -} -.fa-file-powerpoint-o:before { - content: "\f1c4"; -} -.fa-file-photo-o:before, -.fa-file-picture-o:before, -.fa-file-image-o:before { - content: "\f1c5"; -} -.fa-file-zip-o:before, -.fa-file-archive-o:before { - content: "\f1c6"; -} -.fa-file-sound-o:before, -.fa-file-audio-o:before { - content: "\f1c7"; -} -.fa-file-movie-o:before, -.fa-file-video-o:before { - content: "\f1c8"; -} -.fa-file-code-o:before { - content: "\f1c9"; -} -.fa-vine:before { - content: "\f1ca"; -} -.fa-codepen:before { - content: "\f1cb"; -} -.fa-jsfiddle:before { - content: "\f1cc"; -} -.fa-life-bouy:before, -.fa-life-buoy:before, -.fa-life-saver:before, -.fa-support:before, -.fa-life-ring:before { - content: "\f1cd"; -} -.fa-circle-o-notch:before { - content: "\f1ce"; -} -.fa-ra:before, -.fa-resistance:before, -.fa-rebel:before { - content: "\f1d0"; -} -.fa-ge:before, -.fa-empire:before { - content: "\f1d1"; -} -.fa-git-square:before { - content: "\f1d2"; -} -.fa-git:before { - content: "\f1d3"; -} -.fa-y-combinator-square:before, -.fa-yc-square:before, -.fa-hacker-news:before { - content: "\f1d4"; -} -.fa-tencent-weibo:before { - content: "\f1d5"; -} -.fa-qq:before { - content: "\f1d6"; -} -.fa-wechat:before, -.fa-weixin:before { - content: "\f1d7"; -} -.fa-send:before, -.fa-paper-plane:before { - content: "\f1d8"; -} -.fa-send-o:before, -.fa-paper-plane-o:before { - content: "\f1d9"; -} -.fa-history:before { - content: "\f1da"; -} -.fa-circle-thin:before { - content: "\f1db"; -} -.fa-header:before { - content: "\f1dc"; -} -.fa-paragraph:before { - content: "\f1dd"; -} -.fa-sliders:before { - content: "\f1de"; -} -.fa-share-alt:before { - content: "\f1e0"; -} -.fa-share-alt-square:before { - content: "\f1e1"; -} -.fa-bomb:before { - content: "\f1e2"; -} -.fa-soccer-ball-o:before, -.fa-futbol-o:before { - content: "\f1e3"; -} -.fa-tty:before { - content: "\f1e4"; -} -.fa-binoculars:before { - content: "\f1e5"; -} -.fa-plug:before { - content: "\f1e6"; -} -.fa-slideshare:before { - content: "\f1e7"; -} -.fa-twitch:before { - content: "\f1e8"; -} -.fa-yelp:before { - content: "\f1e9"; -} -.fa-newspaper-o:before { - content: "\f1ea"; -} -.fa-wifi:before { - content: "\f1eb"; -} -.fa-calculator:before { - content: "\f1ec"; -} -.fa-paypal:before { - content: "\f1ed"; -} -.fa-google-wallet:before { - content: "\f1ee"; -} -.fa-cc-visa:before { - content: "\f1f0"; -} -.fa-cc-mastercard:before { - content: "\f1f1"; -} -.fa-cc-discover:before { - content: "\f1f2"; -} -.fa-cc-amex:before { - content: "\f1f3"; -} -.fa-cc-paypal:before { - content: "\f1f4"; -} -.fa-cc-stripe:before { - content: "\f1f5"; -} -.fa-bell-slash:before { - content: "\f1f6"; -} -.fa-bell-slash-o:before { - content: "\f1f7"; -} -.fa-trash:before { - content: "\f1f8"; -} -.fa-copyright:before { - content: "\f1f9"; -} -.fa-at:before { - content: "\f1fa"; -} -.fa-eyedropper:before { - content: "\f1fb"; -} -.fa-paint-brush:before { - content: "\f1fc"; -} -.fa-birthday-cake:before { - content: "\f1fd"; -} -.fa-area-chart:before { - content: "\f1fe"; -} -.fa-pie-chart:before { - content: "\f200"; -} -.fa-line-chart:before { - content: "\f201"; -} -.fa-lastfm:before { - content: "\f202"; -} -.fa-lastfm-square:before { - content: "\f203"; -} -.fa-toggle-off:before { - content: "\f204"; -} -.fa-toggle-on:before { - content: "\f205"; -} -.fa-bicycle:before { - content: "\f206"; -} -.fa-bus:before { - content: "\f207"; -} -.fa-ioxhost:before { - content: "\f208"; -} -.fa-angellist:before { - content: "\f209"; -} -.fa-cc:before { - content: "\f20a"; -} -.fa-shekel:before, -.fa-sheqel:before, -.fa-ils:before { - content: "\f20b"; -} -.fa-meanpath:before { - content: "\f20c"; -} -.fa-buysellads:before { - content: "\f20d"; -} -.fa-connectdevelop:before { - content: "\f20e"; -} -.fa-dashcube:before { - content: "\f210"; -} -.fa-forumbee:before { - content: "\f211"; -} -.fa-leanpub:before { - content: "\f212"; -} -.fa-sellsy:before { - content: "\f213"; -} -.fa-shirtsinbulk:before { - content: "\f214"; -} -.fa-simplybuilt:before { - content: "\f215"; -} -.fa-skyatlas:before { - content: "\f216"; -} -.fa-cart-plus:before { - content: "\f217"; -} -.fa-cart-arrow-down:before { - content: "\f218"; -} -.fa-diamond:before { - content: "\f219"; -} -.fa-ship:before { - content: "\f21a"; -} -.fa-user-secret:before { - content: "\f21b"; -} -.fa-motorcycle:before { - content: "\f21c"; -} -.fa-street-view:before { - content: "\f21d"; -} -.fa-heartbeat:before { - content: "\f21e"; -} -.fa-venus:before { - content: "\f221"; -} -.fa-mars:before { - content: "\f222"; -} -.fa-mercury:before { - content: "\f223"; -} -.fa-intersex:before, -.fa-transgender:before { - content: "\f224"; -} -.fa-transgender-alt:before { - content: "\f225"; -} -.fa-venus-double:before { - content: "\f226"; -} -.fa-mars-double:before { - content: "\f227"; -} -.fa-venus-mars:before { - content: "\f228"; -} -.fa-mars-stroke:before { - content: "\f229"; -} -.fa-mars-stroke-v:before { - content: "\f22a"; -} -.fa-mars-stroke-h:before { - content: "\f22b"; -} -.fa-neuter:before { - content: "\f22c"; -} -.fa-genderless:before { - content: "\f22d"; -} -.fa-facebook-official:before { - content: "\f230"; -} -.fa-pinterest-p:before { - content: "\f231"; -} -.fa-whatsapp:before { - content: "\f232"; -} -.fa-server:before { - content: "\f233"; -} -.fa-user-plus:before { - content: "\f234"; -} -.fa-user-times:before { - content: "\f235"; -} -.fa-hotel:before, -.fa-bed:before { - content: "\f236"; -} -.fa-viacoin:before { - content: "\f237"; -} -.fa-train:before { - content: "\f238"; -} -.fa-subway:before { - content: "\f239"; -} -.fa-medium:before { - content: "\f23a"; -} -.fa-yc:before, -.fa-y-combinator:before { - content: "\f23b"; -} -.fa-optin-monster:before { - content: "\f23c"; -} -.fa-opencart:before { - content: "\f23d"; -} -.fa-expeditedssl:before { - content: "\f23e"; -} -.fa-battery-4:before, -.fa-battery:before, -.fa-battery-full:before { - content: "\f240"; -} -.fa-battery-3:before, -.fa-battery-three-quarters:before { - content: "\f241"; -} -.fa-battery-2:before, -.fa-battery-half:before { - content: "\f242"; -} -.fa-battery-1:before, -.fa-battery-quarter:before { - content: "\f243"; -} -.fa-battery-0:before, -.fa-battery-empty:before { - content: "\f244"; -} -.fa-mouse-pointer:before { - content: "\f245"; -} -.fa-i-cursor:before { - content: "\f246"; -} -.fa-object-group:before { - content: "\f247"; -} -.fa-object-ungroup:before { - content: "\f248"; -} -.fa-sticky-note:before { - content: "\f249"; -} -.fa-sticky-note-o:before { - content: "\f24a"; -} -.fa-cc-jcb:before { - content: "\f24b"; -} -.fa-cc-diners-club:before { - content: "\f24c"; -} -.fa-clone:before { - content: "\f24d"; -} -.fa-balance-scale:before { - content: "\f24e"; -} -.fa-hourglass-o:before { - content: "\f250"; -} -.fa-hourglass-1:before, -.fa-hourglass-start:before { - content: "\f251"; -} -.fa-hourglass-2:before, -.fa-hourglass-half:before { - content: "\f252"; -} -.fa-hourglass-3:before, -.fa-hourglass-end:before { - content: "\f253"; -} -.fa-hourglass:before { - content: "\f254"; -} -.fa-hand-grab-o:before, -.fa-hand-rock-o:before { - content: "\f255"; -} -.fa-hand-stop-o:before, -.fa-hand-paper-o:before { - content: "\f256"; -} -.fa-hand-scissors-o:before { - content: "\f257"; -} -.fa-hand-lizard-o:before { - content: "\f258"; -} -.fa-hand-spock-o:before { - content: "\f259"; -} -.fa-hand-pointer-o:before { - content: "\f25a"; -} -.fa-hand-peace-o:before { - content: "\f25b"; -} -.fa-trademark:before { - content: "\f25c"; -} -.fa-registered:before { - content: "\f25d"; -} -.fa-creative-commons:before { - content: "\f25e"; -} -.fa-gg:before { - content: "\f260"; -} -.fa-gg-circle:before { - content: "\f261"; -} -.fa-tripadvisor:before { - content: "\f262"; -} -.fa-odnoklassniki:before { - content: "\f263"; -} -.fa-odnoklassniki-square:before { - content: "\f264"; -} -.fa-get-pocket:before { - content: "\f265"; -} -.fa-wikipedia-w:before { - content: "\f266"; -} -.fa-safari:before { - content: "\f267"; -} -.fa-chrome:before { - content: "\f268"; -} -.fa-firefox:before { - content: "\f269"; -} -.fa-opera:before { - content: "\f26a"; -} -.fa-internet-explorer:before { - content: "\f26b"; -} -.fa-tv:before, -.fa-television:before { - content: "\f26c"; -} -.fa-contao:before { - content: "\f26d"; -} -.fa-500px:before { - content: "\f26e"; -} -.fa-amazon:before { - content: "\f270"; -} -.fa-calendar-plus-o:before { - content: "\f271"; -} -.fa-calendar-minus-o:before { - content: "\f272"; -} -.fa-calendar-times-o:before { - content: "\f273"; -} -.fa-calendar-check-o:before { - content: "\f274"; -} -.fa-industry:before { - content: "\f275"; -} -.fa-map-pin:before { - content: "\f276"; -} -.fa-map-signs:before { - content: "\f277"; -} -.fa-map-o:before { - content: "\f278"; -} -.fa-map:before { - content: "\f279"; -} -.fa-commenting:before { - content: "\f27a"; -} -.fa-commenting-o:before { - content: "\f27b"; -} -.fa-houzz:before { - content: "\f27c"; -} -.fa-vimeo:before { - content: "\f27d"; -} -.fa-black-tie:before { - content: "\f27e"; -} -.fa-fonticons:before { - content: "\f280"; -} -.fa-reddit-alien:before { - content: "\f281"; -} -.fa-edge:before { - content: "\f282"; -} -.fa-credit-card-alt:before { - content: "\f283"; -} -.fa-codiepie:before { - content: "\f284"; -} -.fa-modx:before { - content: "\f285"; -} -.fa-fort-awesome:before { - content: "\f286"; -} -.fa-usb:before { - content: "\f287"; -} -.fa-product-hunt:before { - content: "\f288"; -} -.fa-mixcloud:before { - content: "\f289"; -} -.fa-scribd:before { - content: "\f28a"; -} -.fa-pause-circle:before { - content: "\f28b"; -} -.fa-pause-circle-o:before { - content: "\f28c"; -} -.fa-stop-circle:before { - content: "\f28d"; -} -.fa-stop-circle-o:before { - content: "\f28e"; -} -.fa-shopping-bag:before { - content: "\f290"; -} -.fa-shopping-basket:before { - content: "\f291"; -} -.fa-hashtag:before { - content: "\f292"; -} -.fa-bluetooth:before { - content: "\f293"; -} -.fa-bluetooth-b:before { - content: "\f294"; -} -.fa-percent:before { - content: "\f295"; -} -.fa-gitlab:before { - content: "\f296"; -} -.fa-wpbeginner:before { - content: "\f297"; -} -.fa-wpforms:before { - content: "\f298"; -} -.fa-envira:before { - content: "\f299"; -} -.fa-universal-access:before { - content: "\f29a"; -} -.fa-wheelchair-alt:before { - content: "\f29b"; -} -.fa-question-circle-o:before { - content: "\f29c"; -} -.fa-blind:before { - content: "\f29d"; -} -.fa-audio-description:before { - content: "\f29e"; -} -.fa-volume-control-phone:before { - content: "\f2a0"; -} -.fa-braille:before { - content: "\f2a1"; -} -.fa-assistive-listening-systems:before { - content: "\f2a2"; -} -.fa-asl-interpreting:before, -.fa-american-sign-language-interpreting:before { - content: "\f2a3"; -} -.fa-deafness:before, -.fa-hard-of-hearing:before, -.fa-deaf:before { - content: "\f2a4"; -} -.fa-glide:before { - content: "\f2a5"; -} -.fa-glide-g:before { - content: "\f2a6"; -} -.fa-signing:before, -.fa-sign-language:before { - content: "\f2a7"; -} -.fa-low-vision:before { - content: "\f2a8"; -} -.fa-viadeo:before { - content: "\f2a9"; -} -.fa-viadeo-square:before { - content: "\f2aa"; -} -.fa-snapchat:before { - content: "\f2ab"; -} -.fa-snapchat-ghost:before { - content: "\f2ac"; -} -.fa-snapchat-square:before { - content: "\f2ad"; -} -.fa-pied-piper:before { - content: "\f2ae"; -} -.fa-first-order:before { - content: "\f2b0"; -} -.fa-yoast:before { - content: "\f2b1"; -} -.fa-themeisle:before { - content: "\f2b2"; -} -.fa-google-plus-circle:before, -.fa-google-plus-official:before { - content: "\f2b3"; -} -.fa-fa:before, -.fa-font-awesome:before { - content: "\f2b4"; -} -.fa-handshake-o:before { - content: "\f2b5"; -} -.fa-envelope-open:before { - content: "\f2b6"; -} -.fa-envelope-open-o:before { - content: "\f2b7"; -} -.fa-linode:before { - content: "\f2b8"; -} -.fa-address-book:before { - content: "\f2b9"; -} -.fa-address-book-o:before { - content: "\f2ba"; -} -.fa-vcard:before, -.fa-address-card:before { - content: "\f2bb"; -} -.fa-vcard-o:before, -.fa-address-card-o:before { - content: "\f2bc"; -} -.fa-user-circle:before { - content: "\f2bd"; -} -.fa-user-circle-o:before { - content: "\f2be"; -} -.fa-user-o:before { - content: "\f2c0"; -} -.fa-id-badge:before { - content: "\f2c1"; -} -.fa-drivers-license:before, -.fa-id-card:before { - content: "\f2c2"; -} -.fa-drivers-license-o:before, -.fa-id-card-o:before { - content: "\f2c3"; -} -.fa-quora:before { - content: "\f2c4"; -} -.fa-free-code-camp:before { - content: "\f2c5"; -} -.fa-telegram:before { - content: "\f2c6"; -} -.fa-thermometer-4:before, -.fa-thermometer:before, -.fa-thermometer-full:before { - content: "\f2c7"; -} -.fa-thermometer-3:before, -.fa-thermometer-three-quarters:before { - content: "\f2c8"; -} -.fa-thermometer-2:before, -.fa-thermometer-half:before { - content: "\f2c9"; -} -.fa-thermometer-1:before, -.fa-thermometer-quarter:before { - content: "\f2ca"; -} -.fa-thermometer-0:before, -.fa-thermometer-empty:before { - content: "\f2cb"; -} -.fa-shower:before { - content: "\f2cc"; -} -.fa-bathtub:before, -.fa-s15:before, -.fa-bath:before { - content: "\f2cd"; -} -.fa-podcast:before { - content: "\f2ce"; -} -.fa-window-maximize:before { - content: "\f2d0"; -} -.fa-window-minimize:before { - content: "\f2d1"; -} -.fa-window-restore:before { - content: "\f2d2"; -} -.fa-times-rectangle:before, -.fa-window-close:before { - content: "\f2d3"; -} -.fa-times-rectangle-o:before, -.fa-window-close-o:before { - content: "\f2d4"; -} -.fa-bandcamp:before { - content: "\f2d5"; -} -.fa-grav:before { - content: "\f2d6"; -} -.fa-etsy:before { - content: "\f2d7"; -} -.fa-imdb:before { - content: "\f2d8"; -} -.fa-ravelry:before { - content: "\f2d9"; -} -.fa-eercast:before { - content: "\f2da"; -} -.fa-microchip:before { - content: "\f2db"; -} -.fa-snowflake-o:before { - content: "\f2dc"; -} -.fa-superpowers:before { - content: "\f2dd"; -} -.fa-wpexplorer:before { - content: "\f2de"; -} -.fa-meetup:before { - content: "\f2e0"; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} diff --git a/web/static/assets/dist/font-awesome/css/font-awesome.min.css b/web/static/assets/dist/font-awesome/css/font-awesome.min.css deleted file mode 100644 index 540440c..0000000 --- a/web/static/assets/dist/font-awesome/css/font-awesome.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/web/static/assets/dist/font-awesome/fonts/FontAwesome.otf b/web/static/assets/dist/font-awesome/fonts/FontAwesome.otf deleted file mode 100644 index 401ec0f36e4f73b8efa40bd6f604fe80d286db70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134808 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 diff --git a/web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.eot b/web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca953f93e35eab4108bd414bc02ddcf3928..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165742 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 G*yFsbY~cLNXLP73aA74Mq6M9f^&YV`isWW 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

5q!RY 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 - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.ttf b/web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2fa1196aad98c2adf4378a7611dd713aa3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165548 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 z 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 d0mRO}xo^G_%I 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 SdSQM28?+M|D(2r_;{O0|uQ74} diff --git a/web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.woff2 b/web/static/assets/dist/font-awesome/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc60404b91e398a37200c4a77b645cfd9586..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 77160 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 diff --git a/web/static/assets/dist/font-awesome/less/animated.less b/web/static/assets/dist/font-awesome/less/animated.less deleted file mode 100644 index 66ad52a..0000000 --- a/web/static/assets/dist/font-awesome/less/animated.less +++ /dev/null @@ -1,34 +0,0 @@ -// Animated Icons -// -------------------------- - -.@{fa-css-prefix}-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} - -.@{fa-css-prefix}-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} diff --git a/web/static/assets/dist/font-awesome/less/bordered-pulled.less b/web/static/assets/dist/font-awesome/less/bordered-pulled.less deleted file mode 100644 index f1c8ad7..0000000 --- a/web/static/assets/dist/font-awesome/less/bordered-pulled.less +++ /dev/null @@ -1,25 +0,0 @@ -// Bordered & Pulled -// ------------------------- - -.@{fa-css-prefix}-border { - padding: .2em .25em .15em; - border: solid .08em @fa-border-color; - border-radius: .1em; -} - -.@{fa-css-prefix}-pull-left { float: left; } -.@{fa-css-prefix}-pull-right { float: right; } - -.@{fa-css-prefix} { - &.@{fa-css-prefix}-pull-left { margin-right: .3em; } - &.@{fa-css-prefix}-pull-right { margin-left: .3em; } -} - -/* Deprecated as of 4.4.0 */ -.pull-right { float: right; } -.pull-left { float: left; } - -.@{fa-css-prefix} { - &.pull-left { margin-right: .3em; } - &.pull-right { margin-left: .3em; } -} diff --git a/web/static/assets/dist/font-awesome/less/core.less b/web/static/assets/dist/font-awesome/less/core.less deleted file mode 100644 index c577ac8..0000000 --- a/web/static/assets/dist/font-awesome/less/core.less +++ /dev/null @@ -1,12 +0,0 @@ -// Base Class Definition -// ------------------------- - -.@{fa-css-prefix} { - display: inline-block; - font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -} diff --git a/web/static/assets/dist/font-awesome/less/fixed-width.less b/web/static/assets/dist/font-awesome/less/fixed-width.less deleted file mode 100644 index 110289f..0000000 --- a/web/static/assets/dist/font-awesome/less/fixed-width.less +++ /dev/null @@ -1,6 +0,0 @@ -// Fixed Width Icons -// ------------------------- -.@{fa-css-prefix}-fw { - width: (18em / 14); - text-align: center; -} diff --git a/web/static/assets/dist/font-awesome/less/font-awesome.less b/web/static/assets/dist/font-awesome/less/font-awesome.less deleted file mode 100644 index c3677de..0000000 --- a/web/static/assets/dist/font-awesome/less/font-awesome.less +++ /dev/null @@ -1,18 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ - -@import "variables.less"; -@import "mixins.less"; -@import "path.less"; -@import "core.less"; -@import "larger.less"; -@import "fixed-width.less"; -@import "list.less"; -@import "bordered-pulled.less"; -@import "animated.less"; -@import "rotated-flipped.less"; -@import "stacked.less"; -@import "icons.less"; -@import "screen-reader.less"; diff --git a/web/static/assets/dist/font-awesome/less/icons.less b/web/static/assets/dist/font-awesome/less/icons.less deleted file mode 100644 index 159d600..0000000 --- a/web/static/assets/dist/font-awesome/less/icons.less +++ /dev/null @@ -1,789 +0,0 @@ -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ - -.@{fa-css-prefix}-glass:before { content: @fa-var-glass; } -.@{fa-css-prefix}-music:before { content: @fa-var-music; } -.@{fa-css-prefix}-search:before { content: @fa-var-search; } -.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; } -.@{fa-css-prefix}-heart:before { content: @fa-var-heart; } -.@{fa-css-prefix}-star:before { content: @fa-var-star; } -.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; } -.@{fa-css-prefix}-user:before { content: @fa-var-user; } -.@{fa-css-prefix}-film:before { content: @fa-var-film; } -.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; } -.@{fa-css-prefix}-th:before { content: @fa-var-th; } -.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; } -.@{fa-css-prefix}-check:before { content: @fa-var-check; } -.@{fa-css-prefix}-remove:before, -.@{fa-css-prefix}-close:before, -.@{fa-css-prefix}-times:before { content: @fa-var-times; } -.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; } -.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; } -.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; } -.@{fa-css-prefix}-signal:before { content: @fa-var-signal; } -.@{fa-css-prefix}-gear:before, -.@{fa-css-prefix}-cog:before { content: @fa-var-cog; } -.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; } -.@{fa-css-prefix}-home:before { content: @fa-var-home; } -.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; } -.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; } -.@{fa-css-prefix}-road:before { content: @fa-var-road; } -.@{fa-css-prefix}-download:before { content: @fa-var-download; } -.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; } -.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; } -.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; } -.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; } -.@{fa-css-prefix}-rotate-right:before, -.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; } -.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; } -.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; } -.@{fa-css-prefix}-lock:before { content: @fa-var-lock; } -.@{fa-css-prefix}-flag:before { content: @fa-var-flag; } -.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; } -.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; } -.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; } -.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; } -.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; } -.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; } -.@{fa-css-prefix}-tag:before { content: @fa-var-tag; } -.@{fa-css-prefix}-tags:before { content: @fa-var-tags; } -.@{fa-css-prefix}-book:before { content: @fa-var-book; } -.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; } -.@{fa-css-prefix}-print:before { content: @fa-var-print; } -.@{fa-css-prefix}-camera:before { content: @fa-var-camera; } -.@{fa-css-prefix}-font:before { content: @fa-var-font; } -.@{fa-css-prefix}-bold:before { content: @fa-var-bold; } -.@{fa-css-prefix}-italic:before { content: @fa-var-italic; } -.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; } -.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; } -.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; } -.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; } -.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; } -.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; } -.@{fa-css-prefix}-list:before { content: @fa-var-list; } -.@{fa-css-prefix}-dedent:before, -.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; } -.@{fa-css-prefix}-indent:before { content: @fa-var-indent; } -.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; } -.@{fa-css-prefix}-photo:before, -.@{fa-css-prefix}-image:before, -.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; } -.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; } -.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; } -.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; } -.@{fa-css-prefix}-tint:before { content: @fa-var-tint; } -.@{fa-css-prefix}-edit:before, -.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; } -.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; } -.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; } -.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; } -.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; } -.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; } -.@{fa-css-prefix}-backward:before { content: @fa-var-backward; } -.@{fa-css-prefix}-play:before { content: @fa-var-play; } -.@{fa-css-prefix}-pause:before { content: @fa-var-pause; } -.@{fa-css-prefix}-stop:before { content: @fa-var-stop; } -.@{fa-css-prefix}-forward:before { content: @fa-var-forward; } -.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; } -.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; } -.@{fa-css-prefix}-eject:before { content: @fa-var-eject; } -.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; } -.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; } -.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; } -.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; } -.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; } -.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; } -.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; } -.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; } -.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; } -.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; } -.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; } -.@{fa-css-prefix}-ban:before { content: @fa-var-ban; } -.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; } -.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; } -.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; } -.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; } -.@{fa-css-prefix}-mail-forward:before, -.@{fa-css-prefix}-share:before { content: @fa-var-share; } -.@{fa-css-prefix}-expand:before { content: @fa-var-expand; } -.@{fa-css-prefix}-compress:before { content: @fa-var-compress; } -.@{fa-css-prefix}-plus:before { content: @fa-var-plus; } -.@{fa-css-prefix}-minus:before { content: @fa-var-minus; } -.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; } -.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; } -.@{fa-css-prefix}-gift:before { content: @fa-var-gift; } -.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; } -.@{fa-css-prefix}-fire:before { content: @fa-var-fire; } -.@{fa-css-prefix}-eye:before { content: @fa-var-eye; } -.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; } -.@{fa-css-prefix}-warning:before, -.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; } -.@{fa-css-prefix}-plane:before { content: @fa-var-plane; } -.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; } -.@{fa-css-prefix}-random:before { content: @fa-var-random; } -.@{fa-css-prefix}-comment:before { content: @fa-var-comment; } -.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; } -.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; } -.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; } -.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; } -.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; } -.@{fa-css-prefix}-folder:before { content: @fa-var-folder; } -.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; } -.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; } -.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; } -.@{fa-css-prefix}-bar-chart-o:before, -.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; } -.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; } -.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; } -.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; } -.@{fa-css-prefix}-key:before { content: @fa-var-key; } -.@{fa-css-prefix}-gears:before, -.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; } -.@{fa-css-prefix}-comments:before { content: @fa-var-comments; } -.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; } -.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; } -.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; } -.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; } -.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; } -.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; } -.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; } -.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; } -.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; } -.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; } -.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; } -.@{fa-css-prefix}-upload:before { content: @fa-var-upload; } -.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; } -.@{fa-css-prefix}-phone:before { content: @fa-var-phone; } -.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; } -.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; } -.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } -.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; } -.@{fa-css-prefix}-facebook-f:before, -.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; } -.@{fa-css-prefix}-github:before { content: @fa-var-github; } -.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; } -.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; } -.@{fa-css-prefix}-feed:before, -.@{fa-css-prefix}-rss:before { content: @fa-var-rss; } -.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; } -.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; } -.@{fa-css-prefix}-bell:before { content: @fa-var-bell; } -.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; } -.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; } -.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; } -.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; } -.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; } -.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; } -.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; } -.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; } -.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; } -.@{fa-css-prefix}-globe:before { content: @fa-var-globe; } -.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; } -.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; } -.@{fa-css-prefix}-filter:before { content: @fa-var-filter; } -.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; } -.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; } -.@{fa-css-prefix}-group:before, -.@{fa-css-prefix}-users:before { content: @fa-var-users; } -.@{fa-css-prefix}-chain:before, -.@{fa-css-prefix}-link:before { content: @fa-var-link; } -.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; } -.@{fa-css-prefix}-flask:before { content: @fa-var-flask; } -.@{fa-css-prefix}-cut:before, -.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; } -.@{fa-css-prefix}-copy:before, -.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; } -.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; } -.@{fa-css-prefix}-save:before, -.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; } -.@{fa-css-prefix}-square:before { content: @fa-var-square; } -.@{fa-css-prefix}-navicon:before, -.@{fa-css-prefix}-reorder:before, -.@{fa-css-prefix}-bars:before { content: @fa-var-bars; } -.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; } -.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; } -.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; } -.@{fa-css-prefix}-underline:before { content: @fa-var-underline; } -.@{fa-css-prefix}-table:before { content: @fa-var-table; } -.@{fa-css-prefix}-magic:before { content: @fa-var-magic; } -.@{fa-css-prefix}-truck:before { content: @fa-var-truck; } -.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; } -.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; } -.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; } -.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; } -.@{fa-css-prefix}-money:before { content: @fa-var-money; } -.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; } -.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; } -.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; } -.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; } -.@{fa-css-prefix}-columns:before { content: @fa-var-columns; } -.@{fa-css-prefix}-unsorted:before, -.@{fa-css-prefix}-sort:before { content: @fa-var-sort; } -.@{fa-css-prefix}-sort-down:before, -.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; } -.@{fa-css-prefix}-sort-up:before, -.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; } -.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; } -.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; } -.@{fa-css-prefix}-rotate-left:before, -.@{fa-css-prefix}-undo:before { content: @fa-var-undo; } -.@{fa-css-prefix}-legal:before, -.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; } -.@{fa-css-prefix}-dashboard:before, -.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; } -.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; } -.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; } -.@{fa-css-prefix}-flash:before, -.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; } -.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; } -.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; } -.@{fa-css-prefix}-paste:before, -.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; } -.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; } -.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; } -.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; } -.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; } -.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; } -.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; } -.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; } -.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; } -.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; } -.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; } -.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; } -.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; } -.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; } -.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; } -.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; } -.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; } -.@{fa-css-prefix}-beer:before { content: @fa-var-beer; } -.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; } -.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; } -.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; } -.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; } -.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; } -.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; } -.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; } -.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; } -.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; } -.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; } -.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; } -.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; } -.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; } -.@{fa-css-prefix}-mobile-phone:before, -.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; } -.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; } -.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; } -.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; } -.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; } -.@{fa-css-prefix}-circle:before { content: @fa-var-circle; } -.@{fa-css-prefix}-mail-reply:before, -.@{fa-css-prefix}-reply:before { content: @fa-var-reply; } -.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; } -.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; } -.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; } -.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; } -.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; } -.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; } -.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; } -.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; } -.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; } -.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; } -.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; } -.@{fa-css-prefix}-code:before { content: @fa-var-code; } -.@{fa-css-prefix}-mail-reply-all:before, -.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; } -.@{fa-css-prefix}-star-half-empty:before, -.@{fa-css-prefix}-star-half-full:before, -.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; } -.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; } -.@{fa-css-prefix}-crop:before { content: @fa-var-crop; } -.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; } -.@{fa-css-prefix}-unlink:before, -.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; } -.@{fa-css-prefix}-question:before { content: @fa-var-question; } -.@{fa-css-prefix}-info:before { content: @fa-var-info; } -.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; } -.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; } -.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; } -.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; } -.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; } -.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; } -.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; } -.@{fa-css-prefix}-shield:before { content: @fa-var-shield; } -.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; } -.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; } -.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; } -.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; } -.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; } -.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; } -.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; } -.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; } -.@{fa-css-prefix}-html5:before { content: @fa-var-html5; } -.@{fa-css-prefix}-css3:before { content: @fa-var-css3; } -.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; } -.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; } -.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; } -.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; } -.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; } -.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; } -.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; } -.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; } -.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; } -.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; } -.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; } -.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; } -.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; } -.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; } -.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; } -.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; } -.@{fa-css-prefix}-compass:before { content: @fa-var-compass; } -.@{fa-css-prefix}-toggle-down:before, -.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; } -.@{fa-css-prefix}-toggle-up:before, -.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; } -.@{fa-css-prefix}-toggle-right:before, -.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; } -.@{fa-css-prefix}-euro:before, -.@{fa-css-prefix}-eur:before { content: @fa-var-eur; } -.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; } -.@{fa-css-prefix}-dollar:before, -.@{fa-css-prefix}-usd:before { content: @fa-var-usd; } -.@{fa-css-prefix}-rupee:before, -.@{fa-css-prefix}-inr:before { content: @fa-var-inr; } -.@{fa-css-prefix}-cny:before, -.@{fa-css-prefix}-rmb:before, -.@{fa-css-prefix}-yen:before, -.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; } -.@{fa-css-prefix}-ruble:before, -.@{fa-css-prefix}-rouble:before, -.@{fa-css-prefix}-rub:before { content: @fa-var-rub; } -.@{fa-css-prefix}-won:before, -.@{fa-css-prefix}-krw:before { content: @fa-var-krw; } -.@{fa-css-prefix}-bitcoin:before, -.@{fa-css-prefix}-btc:before { content: @fa-var-btc; } -.@{fa-css-prefix}-file:before { content: @fa-var-file; } -.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; } -.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; } -.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; } -.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; } -.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; } -.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; } -.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; } -.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; } -.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; } -.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; } -.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; } -.@{fa-css-prefix}-xing:before { content: @fa-var-xing; } -.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; } -.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; } -.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; } -.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; } -.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; } -.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; } -.@{fa-css-prefix}-adn:before { content: @fa-var-adn; } -.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; } -.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; } -.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; } -.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; } -.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; } -.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; } -.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; } -.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; } -.@{fa-css-prefix}-apple:before { content: @fa-var-apple; } -.@{fa-css-prefix}-windows:before { content: @fa-var-windows; } -.@{fa-css-prefix}-android:before { content: @fa-var-android; } -.@{fa-css-prefix}-linux:before { content: @fa-var-linux; } -.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; } -.@{fa-css-prefix}-skype:before { content: @fa-var-skype; } -.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; } -.@{fa-css-prefix}-trello:before { content: @fa-var-trello; } -.@{fa-css-prefix}-female:before { content: @fa-var-female; } -.@{fa-css-prefix}-male:before { content: @fa-var-male; } -.@{fa-css-prefix}-gittip:before, -.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; } -.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; } -.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; } -.@{fa-css-prefix}-archive:before { content: @fa-var-archive; } -.@{fa-css-prefix}-bug:before { content: @fa-var-bug; } -.@{fa-css-prefix}-vk:before { content: @fa-var-vk; } -.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; } -.@{fa-css-prefix}-renren:before { content: @fa-var-renren; } -.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; } -.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; } -.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; } -.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; } -.@{fa-css-prefix}-toggle-left:before, -.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; } -.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; } -.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; } -.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; } -.@{fa-css-prefix}-turkish-lira:before, -.@{fa-css-prefix}-try:before { content: @fa-var-try; } -.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; } -.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; } -.@{fa-css-prefix}-slack:before { content: @fa-var-slack; } -.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; } -.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; } -.@{fa-css-prefix}-openid:before { content: @fa-var-openid; } -.@{fa-css-prefix}-institution:before, -.@{fa-css-prefix}-bank:before, -.@{fa-css-prefix}-university:before { content: @fa-var-university; } -.@{fa-css-prefix}-mortar-board:before, -.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; } -.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; } -.@{fa-css-prefix}-google:before { content: @fa-var-google; } -.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; } -.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; } -.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; } -.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } -.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } -.@{fa-css-prefix}-digg:before { content: @fa-var-digg; } -.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } -.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } -.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } -.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } -.@{fa-css-prefix}-language:before { content: @fa-var-language; } -.@{fa-css-prefix}-fax:before { content: @fa-var-fax; } -.@{fa-css-prefix}-building:before { content: @fa-var-building; } -.@{fa-css-prefix}-child:before { content: @fa-var-child; } -.@{fa-css-prefix}-paw:before { content: @fa-var-paw; } -.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; } -.@{fa-css-prefix}-cube:before { content: @fa-var-cube; } -.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; } -.@{fa-css-prefix}-behance:before { content: @fa-var-behance; } -.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; } -.@{fa-css-prefix}-steam:before { content: @fa-var-steam; } -.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; } -.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; } -.@{fa-css-prefix}-automobile:before, -.@{fa-css-prefix}-car:before { content: @fa-var-car; } -.@{fa-css-prefix}-cab:before, -.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; } -.@{fa-css-prefix}-tree:before { content: @fa-var-tree; } -.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; } -.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; } -.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; } -.@{fa-css-prefix}-database:before { content: @fa-var-database; } -.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; } -.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; } -.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; } -.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; } -.@{fa-css-prefix}-file-photo-o:before, -.@{fa-css-prefix}-file-picture-o:before, -.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; } -.@{fa-css-prefix}-file-zip-o:before, -.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; } -.@{fa-css-prefix}-file-sound-o:before, -.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; } -.@{fa-css-prefix}-file-movie-o:before, -.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; } -.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; } -.@{fa-css-prefix}-vine:before { content: @fa-var-vine; } -.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; } -.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; } -.@{fa-css-prefix}-life-bouy:before, -.@{fa-css-prefix}-life-buoy:before, -.@{fa-css-prefix}-life-saver:before, -.@{fa-css-prefix}-support:before, -.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } -.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; } -.@{fa-css-prefix}-ra:before, -.@{fa-css-prefix}-resistance:before, -.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } -.@{fa-css-prefix}-ge:before, -.@{fa-css-prefix}-empire:before { content: @fa-var-empire; } -.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; } -.@{fa-css-prefix}-git:before { content: @fa-var-git; } -.@{fa-css-prefix}-y-combinator-square:before, -.@{fa-css-prefix}-yc-square:before, -.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; } -.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; } -.@{fa-css-prefix}-qq:before { content: @fa-var-qq; } -.@{fa-css-prefix}-wechat:before, -.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; } -.@{fa-css-prefix}-send:before, -.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; } -.@{fa-css-prefix}-send-o:before, -.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; } -.@{fa-css-prefix}-history:before { content: @fa-var-history; } -.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; } -.@{fa-css-prefix}-header:before { content: @fa-var-header; } -.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; } -.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; } -.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; } -.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; } -.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; } -.@{fa-css-prefix}-soccer-ball-o:before, -.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; } -.@{fa-css-prefix}-tty:before { content: @fa-var-tty; } -.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; } -.@{fa-css-prefix}-plug:before { content: @fa-var-plug; } -.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; } -.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; } -.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; } -.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; } -.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; } -.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; } -.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; } -.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; } -.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; } -.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; } -.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; } -.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; } -.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; } -.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; } -.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; } -.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; } -.@{fa-css-prefix}-trash:before { content: @fa-var-trash; } -.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; } -.@{fa-css-prefix}-at:before { content: @fa-var-at; } -.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; } -.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; } -.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; } -.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; } -.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; } -.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; } -.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; } -.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; } -.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; } -.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; } -.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; } -.@{fa-css-prefix}-bus:before { content: @fa-var-bus; } -.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; } -.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; } -.@{fa-css-prefix}-cc:before { content: @fa-var-cc; } -.@{fa-css-prefix}-shekel:before, -.@{fa-css-prefix}-sheqel:before, -.@{fa-css-prefix}-ils:before { content: @fa-var-ils; } -.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; } -.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; } -.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; } -.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; } -.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; } -.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; } -.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; } -.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; } -.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; } -.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; } -.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; } -.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; } -.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; } -.@{fa-css-prefix}-ship:before { content: @fa-var-ship; } -.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; } -.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; } -.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; } -.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; } -.@{fa-css-prefix}-venus:before { content: @fa-var-venus; } -.@{fa-css-prefix}-mars:before { content: @fa-var-mars; } -.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; } -.@{fa-css-prefix}-intersex:before, -.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; } -.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; } -.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; } -.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; } -.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; } -.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; } -.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; } -.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; } -.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; } -.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; } -.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; } -.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; } -.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; } -.@{fa-css-prefix}-server:before { content: @fa-var-server; } -.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; } -.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; } -.@{fa-css-prefix}-hotel:before, -.@{fa-css-prefix}-bed:before { content: @fa-var-bed; } -.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; } -.@{fa-css-prefix}-train:before { content: @fa-var-train; } -.@{fa-css-prefix}-subway:before { content: @fa-var-subway; } -.@{fa-css-prefix}-medium:before { content: @fa-var-medium; } -.@{fa-css-prefix}-yc:before, -.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; } -.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; } -.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } -.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } -.@{fa-css-prefix}-battery-4:before, -.@{fa-css-prefix}-battery:before, -.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } -.@{fa-css-prefix}-battery-3:before, -.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } -.@{fa-css-prefix}-battery-2:before, -.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; } -.@{fa-css-prefix}-battery-1:before, -.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; } -.@{fa-css-prefix}-battery-0:before, -.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; } -.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; } -.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; } -.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; } -.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; } -.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; } -.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; } -.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; } -.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; } -.@{fa-css-prefix}-clone:before { content: @fa-var-clone; } -.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; } -.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; } -.@{fa-css-prefix}-hourglass-1:before, -.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; } -.@{fa-css-prefix}-hourglass-2:before, -.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; } -.@{fa-css-prefix}-hourglass-3:before, -.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; } -.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; } -.@{fa-css-prefix}-hand-grab-o:before, -.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; } -.@{fa-css-prefix}-hand-stop-o:before, -.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; } -.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; } -.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; } -.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; } -.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; } -.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; } -.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; } -.@{fa-css-prefix}-registered:before { content: @fa-var-registered; } -.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; } -.@{fa-css-prefix}-gg:before { content: @fa-var-gg; } -.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; } -.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; } -.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; } -.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; } -.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; } -.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; } -.@{fa-css-prefix}-safari:before { content: @fa-var-safari; } -.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; } -.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; } -.@{fa-css-prefix}-opera:before { content: @fa-var-opera; } -.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; } -.@{fa-css-prefix}-tv:before, -.@{fa-css-prefix}-television:before { content: @fa-var-television; } -.@{fa-css-prefix}-contao:before { content: @fa-var-contao; } -.@{fa-css-prefix}-500px:before { content: @fa-var-500px; } -.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; } -.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; } -.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; } -.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; } -.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; } -.@{fa-css-prefix}-industry:before { content: @fa-var-industry; } -.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; } -.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; } -.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; } -.@{fa-css-prefix}-map:before { content: @fa-var-map; } -.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; } -.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; } -.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; } -.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; } -.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; } -.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; } -.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; } -.@{fa-css-prefix}-edge:before { content: @fa-var-edge; } -.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; } -.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; } -.@{fa-css-prefix}-modx:before { content: @fa-var-modx; } -.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; } -.@{fa-css-prefix}-usb:before { content: @fa-var-usb; } -.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; } -.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; } -.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; } -.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; } -.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; } -.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; } -.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; } -.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; } -.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; } -.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; } -.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; } -.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; } -.@{fa-css-prefix}-percent:before { content: @fa-var-percent; } -.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; } -.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; } -.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; } -.@{fa-css-prefix}-envira:before { content: @fa-var-envira; } -.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; } -.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; } -.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; } -.@{fa-css-prefix}-blind:before { content: @fa-var-blind; } -.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; } -.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; } -.@{fa-css-prefix}-braille:before { content: @fa-var-braille; } -.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; } -.@{fa-css-prefix}-asl-interpreting:before, -.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; } -.@{fa-css-prefix}-deafness:before, -.@{fa-css-prefix}-hard-of-hearing:before, -.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; } -.@{fa-css-prefix}-glide:before { content: @fa-var-glide; } -.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; } -.@{fa-css-prefix}-signing:before, -.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; } -.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; } -.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; } -.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; } -.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } -.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } -.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } -.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } -.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } -.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } -.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } -.@{fa-css-prefix}-google-plus-circle:before, -.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; } -.@{fa-css-prefix}-fa:before, -.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } -.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; } -.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; } -.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; } -.@{fa-css-prefix}-linode:before { content: @fa-var-linode; } -.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; } -.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; } -.@{fa-css-prefix}-vcard:before, -.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; } -.@{fa-css-prefix}-vcard-o:before, -.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; } -.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; } -.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; } -.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; } -.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; } -.@{fa-css-prefix}-drivers-license:before, -.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; } -.@{fa-css-prefix}-drivers-license-o:before, -.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; } -.@{fa-css-prefix}-quora:before { content: @fa-var-quora; } -.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; } -.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; } -.@{fa-css-prefix}-thermometer-4:before, -.@{fa-css-prefix}-thermometer:before, -.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; } -.@{fa-css-prefix}-thermometer-3:before, -.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; } -.@{fa-css-prefix}-thermometer-2:before, -.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; } -.@{fa-css-prefix}-thermometer-1:before, -.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; } -.@{fa-css-prefix}-thermometer-0:before, -.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; } -.@{fa-css-prefix}-shower:before { content: @fa-var-shower; } -.@{fa-css-prefix}-bathtub:before, -.@{fa-css-prefix}-s15:before, -.@{fa-css-prefix}-bath:before { content: @fa-var-bath; } -.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; } -.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; } -.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; } -.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; } -.@{fa-css-prefix}-times-rectangle:before, -.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; } -.@{fa-css-prefix}-times-rectangle-o:before, -.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; } -.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; } -.@{fa-css-prefix}-grav:before { content: @fa-var-grav; } -.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; } -.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; } -.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; } -.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; } -.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; } -.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; } -.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; } -.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; } -.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; } diff --git a/web/static/assets/dist/font-awesome/less/larger.less b/web/static/assets/dist/font-awesome/less/larger.less deleted file mode 100644 index c9d6467..0000000 --- a/web/static/assets/dist/font-awesome/less/larger.less +++ /dev/null @@ -1,13 +0,0 @@ -// Icon Sizes -// ------------------------- - -/* makes the font 33% larger relative to the icon container */ -.@{fa-css-prefix}-lg { - font-size: (4em / 3); - line-height: (3em / 4); - vertical-align: -15%; -} -.@{fa-css-prefix}-2x { font-size: 2em; } -.@{fa-css-prefix}-3x { font-size: 3em; } -.@{fa-css-prefix}-4x { font-size: 4em; } -.@{fa-css-prefix}-5x { font-size: 5em; } diff --git a/web/static/assets/dist/font-awesome/less/list.less b/web/static/assets/dist/font-awesome/less/list.less deleted file mode 100644 index 0b44038..0000000 --- a/web/static/assets/dist/font-awesome/less/list.less +++ /dev/null @@ -1,19 +0,0 @@ -// List Icons -// ------------------------- - -.@{fa-css-prefix}-ul { - padding-left: 0; - margin-left: @fa-li-width; - list-style-type: none; - > li { position: relative; } -} -.@{fa-css-prefix}-li { - position: absolute; - left: -@fa-li-width; - width: @fa-li-width; - top: (2em / 14); - text-align: center; - &.@{fa-css-prefix}-lg { - left: (-@fa-li-width + (4em / 14)); - } -} diff --git a/web/static/assets/dist/font-awesome/less/mixins.less b/web/static/assets/dist/font-awesome/less/mixins.less deleted file mode 100644 index beef231..0000000 --- a/web/static/assets/dist/font-awesome/less/mixins.less +++ /dev/null @@ -1,60 +0,0 @@ -// Mixins -// -------------------------- - -.fa-icon() { - display: inline-block; - font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -} - -.fa-icon-rotate(@degrees, @rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; - -webkit-transform: rotate(@degrees); - -ms-transform: rotate(@degrees); - transform: rotate(@degrees); -} - -.fa-icon-flip(@horiz, @vert, @rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; - -webkit-transform: scale(@horiz, @vert); - -ms-transform: scale(@horiz, @vert); - transform: scale(@horiz, @vert); -} - - -// Only display content to screen readers. A la Bootstrap 4. -// -// See: http://a11yproject.com/posts/how-to-hide-content/ - -.sr-only() { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0,0,0,0); - border: 0; -} - -// Use in conjunction with .sr-only to only display content when it's focused. -// -// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 -// -// Credit: HTML5 Boilerplate - -.sr-only-focusable() { - &:active, - &:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; - } -} diff --git a/web/static/assets/dist/font-awesome/less/path.less b/web/static/assets/dist/font-awesome/less/path.less deleted file mode 100644 index 835be41..0000000 --- a/web/static/assets/dist/font-awesome/less/path.less +++ /dev/null @@ -1,15 +0,0 @@ -/* FONT PATH - * -------------------------- */ - -@font-face { - font-family: 'FontAwesome'; - src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); - src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), - url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), - url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), - url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), - url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); - // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts - font-weight: normal; - font-style: normal; -} diff --git a/web/static/assets/dist/font-awesome/less/rotated-flipped.less b/web/static/assets/dist/font-awesome/less/rotated-flipped.less deleted file mode 100644 index f6ba814..0000000 --- a/web/static/assets/dist/font-awesome/less/rotated-flipped.less +++ /dev/null @@ -1,20 +0,0 @@ -// Rotated & Flipped Icons -// ------------------------- - -.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } -.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } -.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } - -.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } -.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } - -// Hook for IE8-9 -// ------------------------- - -:root .@{fa-css-prefix}-rotate-90, -:root .@{fa-css-prefix}-rotate-180, -:root .@{fa-css-prefix}-rotate-270, -:root .@{fa-css-prefix}-flip-horizontal, -:root .@{fa-css-prefix}-flip-vertical { - filter: none; -} diff --git a/web/static/assets/dist/font-awesome/less/screen-reader.less b/web/static/assets/dist/font-awesome/less/screen-reader.less deleted file mode 100644 index 11c1881..0000000 --- a/web/static/assets/dist/font-awesome/less/screen-reader.less +++ /dev/null @@ -1,5 +0,0 @@ -// Screen Readers -// ------------------------- - -.sr-only { .sr-only(); } -.sr-only-focusable { .sr-only-focusable(); } diff --git a/web/static/assets/dist/font-awesome/less/stacked.less b/web/static/assets/dist/font-awesome/less/stacked.less deleted file mode 100644 index fc53fb0..0000000 --- a/web/static/assets/dist/font-awesome/less/stacked.less +++ /dev/null @@ -1,20 +0,0 @@ -// Stacked Icons -// ------------------------- - -.@{fa-css-prefix}-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.@{fa-css-prefix}-stack-1x { line-height: inherit; } -.@{fa-css-prefix}-stack-2x { font-size: 2em; } -.@{fa-css-prefix}-inverse { color: @fa-inverse; } diff --git a/web/static/assets/dist/font-awesome/less/variables.less b/web/static/assets/dist/font-awesome/less/variables.less deleted file mode 100644 index 7ddbbc0..0000000 --- a/web/static/assets/dist/font-awesome/less/variables.less +++ /dev/null @@ -1,800 +0,0 @@ -// Variables -// -------------------------- - -@fa-font-path: "../fonts"; -@fa-font-size-base: 14px; -@fa-line-height-base: 1; -//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly -@fa-css-prefix: fa; -@fa-version: "4.7.0"; -@fa-border-color: #eee; -@fa-inverse: #fff; -@fa-li-width: (30em / 14); - -@fa-var-500px: "\f26e"; -@fa-var-address-book: "\f2b9"; -@fa-var-address-book-o: "\f2ba"; -@fa-var-address-card: "\f2bb"; -@fa-var-address-card-o: "\f2bc"; -@fa-var-adjust: "\f042"; -@fa-var-adn: "\f170"; -@fa-var-align-center: "\f037"; -@fa-var-align-justify: "\f039"; -@fa-var-align-left: "\f036"; -@fa-var-align-right: "\f038"; -@fa-var-amazon: "\f270"; -@fa-var-ambulance: "\f0f9"; -@fa-var-american-sign-language-interpreting: "\f2a3"; -@fa-var-anchor: "\f13d"; -@fa-var-android: "\f17b"; -@fa-var-angellist: "\f209"; -@fa-var-angle-double-down: "\f103"; -@fa-var-angle-double-left: "\f100"; -@fa-var-angle-double-right: "\f101"; -@fa-var-angle-double-up: "\f102"; -@fa-var-angle-down: "\f107"; -@fa-var-angle-left: "\f104"; -@fa-var-angle-right: "\f105"; -@fa-var-angle-up: "\f106"; -@fa-var-apple: "\f179"; -@fa-var-archive: "\f187"; -@fa-var-area-chart: "\f1fe"; -@fa-var-arrow-circle-down: "\f0ab"; -@fa-var-arrow-circle-left: "\f0a8"; -@fa-var-arrow-circle-o-down: "\f01a"; -@fa-var-arrow-circle-o-left: "\f190"; -@fa-var-arrow-circle-o-right: "\f18e"; -@fa-var-arrow-circle-o-up: "\f01b"; -@fa-var-arrow-circle-right: "\f0a9"; -@fa-var-arrow-circle-up: "\f0aa"; -@fa-var-arrow-down: "\f063"; -@fa-var-arrow-left: "\f060"; -@fa-var-arrow-right: "\f061"; -@fa-var-arrow-up: "\f062"; -@fa-var-arrows: "\f047"; -@fa-var-arrows-alt: "\f0b2"; -@fa-var-arrows-h: "\f07e"; -@fa-var-arrows-v: "\f07d"; -@fa-var-asl-interpreting: "\f2a3"; -@fa-var-assistive-listening-systems: "\f2a2"; -@fa-var-asterisk: "\f069"; -@fa-var-at: "\f1fa"; -@fa-var-audio-description: "\f29e"; -@fa-var-automobile: "\f1b9"; -@fa-var-backward: "\f04a"; -@fa-var-balance-scale: "\f24e"; -@fa-var-ban: "\f05e"; -@fa-var-bandcamp: "\f2d5"; -@fa-var-bank: "\f19c"; -@fa-var-bar-chart: "\f080"; -@fa-var-bar-chart-o: "\f080"; -@fa-var-barcode: "\f02a"; -@fa-var-bars: "\f0c9"; -@fa-var-bath: "\f2cd"; -@fa-var-bathtub: "\f2cd"; -@fa-var-battery: "\f240"; -@fa-var-battery-0: "\f244"; -@fa-var-battery-1: "\f243"; -@fa-var-battery-2: "\f242"; -@fa-var-battery-3: "\f241"; -@fa-var-battery-4: "\f240"; -@fa-var-battery-empty: "\f244"; -@fa-var-battery-full: "\f240"; -@fa-var-battery-half: "\f242"; -@fa-var-battery-quarter: "\f243"; -@fa-var-battery-three-quarters: "\f241"; -@fa-var-bed: "\f236"; -@fa-var-beer: "\f0fc"; -@fa-var-behance: "\f1b4"; -@fa-var-behance-square: "\f1b5"; -@fa-var-bell: "\f0f3"; -@fa-var-bell-o: "\f0a2"; -@fa-var-bell-slash: "\f1f6"; -@fa-var-bell-slash-o: "\f1f7"; -@fa-var-bicycle: "\f206"; -@fa-var-binoculars: "\f1e5"; -@fa-var-birthday-cake: "\f1fd"; -@fa-var-bitbucket: "\f171"; -@fa-var-bitbucket-square: "\f172"; -@fa-var-bitcoin: "\f15a"; -@fa-var-black-tie: "\f27e"; -@fa-var-blind: "\f29d"; -@fa-var-bluetooth: "\f293"; -@fa-var-bluetooth-b: "\f294"; -@fa-var-bold: "\f032"; -@fa-var-bolt: "\f0e7"; -@fa-var-bomb: "\f1e2"; -@fa-var-book: "\f02d"; -@fa-var-bookmark: "\f02e"; -@fa-var-bookmark-o: "\f097"; -@fa-var-braille: "\f2a1"; -@fa-var-briefcase: "\f0b1"; -@fa-var-btc: "\f15a"; -@fa-var-bug: "\f188"; -@fa-var-building: "\f1ad"; -@fa-var-building-o: "\f0f7"; -@fa-var-bullhorn: "\f0a1"; -@fa-var-bullseye: "\f140"; -@fa-var-bus: "\f207"; -@fa-var-buysellads: "\f20d"; -@fa-var-cab: "\f1ba"; -@fa-var-calculator: "\f1ec"; -@fa-var-calendar: "\f073"; -@fa-var-calendar-check-o: "\f274"; -@fa-var-calendar-minus-o: "\f272"; -@fa-var-calendar-o: "\f133"; -@fa-var-calendar-plus-o: "\f271"; -@fa-var-calendar-times-o: "\f273"; -@fa-var-camera: "\f030"; -@fa-var-camera-retro: "\f083"; -@fa-var-car: "\f1b9"; -@fa-var-caret-down: "\f0d7"; -@fa-var-caret-left: "\f0d9"; -@fa-var-caret-right: "\f0da"; -@fa-var-caret-square-o-down: "\f150"; -@fa-var-caret-square-o-left: "\f191"; -@fa-var-caret-square-o-right: "\f152"; -@fa-var-caret-square-o-up: "\f151"; -@fa-var-caret-up: "\f0d8"; -@fa-var-cart-arrow-down: "\f218"; -@fa-var-cart-plus: "\f217"; -@fa-var-cc: "\f20a"; -@fa-var-cc-amex: "\f1f3"; -@fa-var-cc-diners-club: "\f24c"; -@fa-var-cc-discover: "\f1f2"; -@fa-var-cc-jcb: "\f24b"; -@fa-var-cc-mastercard: "\f1f1"; -@fa-var-cc-paypal: "\f1f4"; -@fa-var-cc-stripe: "\f1f5"; -@fa-var-cc-visa: "\f1f0"; -@fa-var-certificate: "\f0a3"; -@fa-var-chain: "\f0c1"; -@fa-var-chain-broken: "\f127"; -@fa-var-check: "\f00c"; -@fa-var-check-circle: "\f058"; -@fa-var-check-circle-o: "\f05d"; -@fa-var-check-square: "\f14a"; -@fa-var-check-square-o: "\f046"; -@fa-var-chevron-circle-down: "\f13a"; -@fa-var-chevron-circle-left: "\f137"; -@fa-var-chevron-circle-right: "\f138"; -@fa-var-chevron-circle-up: "\f139"; -@fa-var-chevron-down: "\f078"; -@fa-var-chevron-left: "\f053"; -@fa-var-chevron-right: "\f054"; -@fa-var-chevron-up: "\f077"; -@fa-var-child: "\f1ae"; -@fa-var-chrome: "\f268"; -@fa-var-circle: "\f111"; -@fa-var-circle-o: "\f10c"; -@fa-var-circle-o-notch: "\f1ce"; -@fa-var-circle-thin: "\f1db"; -@fa-var-clipboard: "\f0ea"; -@fa-var-clock-o: "\f017"; -@fa-var-clone: "\f24d"; -@fa-var-close: "\f00d"; -@fa-var-cloud: "\f0c2"; -@fa-var-cloud-download: "\f0ed"; -@fa-var-cloud-upload: "\f0ee"; -@fa-var-cny: "\f157"; -@fa-var-code: "\f121"; -@fa-var-code-fork: "\f126"; -@fa-var-codepen: "\f1cb"; -@fa-var-codiepie: "\f284"; -@fa-var-coffee: "\f0f4"; -@fa-var-cog: "\f013"; -@fa-var-cogs: "\f085"; -@fa-var-columns: "\f0db"; -@fa-var-comment: "\f075"; -@fa-var-comment-o: "\f0e5"; -@fa-var-commenting: "\f27a"; -@fa-var-commenting-o: "\f27b"; -@fa-var-comments: "\f086"; -@fa-var-comments-o: "\f0e6"; -@fa-var-compass: "\f14e"; -@fa-var-compress: "\f066"; -@fa-var-connectdevelop: "\f20e"; -@fa-var-contao: "\f26d"; -@fa-var-copy: "\f0c5"; -@fa-var-copyright: "\f1f9"; -@fa-var-creative-commons: "\f25e"; -@fa-var-credit-card: "\f09d"; -@fa-var-credit-card-alt: "\f283"; -@fa-var-crop: "\f125"; -@fa-var-crosshairs: "\f05b"; -@fa-var-css3: "\f13c"; -@fa-var-cube: "\f1b2"; -@fa-var-cubes: "\f1b3"; -@fa-var-cut: "\f0c4"; -@fa-var-cutlery: "\f0f5"; -@fa-var-dashboard: "\f0e4"; -@fa-var-dashcube: "\f210"; -@fa-var-database: "\f1c0"; -@fa-var-deaf: "\f2a4"; -@fa-var-deafness: "\f2a4"; -@fa-var-dedent: "\f03b"; -@fa-var-delicious: "\f1a5"; -@fa-var-desktop: "\f108"; -@fa-var-deviantart: "\f1bd"; -@fa-var-diamond: "\f219"; -@fa-var-digg: "\f1a6"; -@fa-var-dollar: "\f155"; -@fa-var-dot-circle-o: "\f192"; -@fa-var-download: "\f019"; -@fa-var-dribbble: "\f17d"; -@fa-var-drivers-license: "\f2c2"; -@fa-var-drivers-license-o: "\f2c3"; -@fa-var-dropbox: "\f16b"; -@fa-var-drupal: "\f1a9"; -@fa-var-edge: "\f282"; -@fa-var-edit: "\f044"; -@fa-var-eercast: "\f2da"; -@fa-var-eject: "\f052"; -@fa-var-ellipsis-h: "\f141"; -@fa-var-ellipsis-v: "\f142"; -@fa-var-empire: "\f1d1"; -@fa-var-envelope: "\f0e0"; -@fa-var-envelope-o: "\f003"; -@fa-var-envelope-open: "\f2b6"; -@fa-var-envelope-open-o: "\f2b7"; -@fa-var-envelope-square: "\f199"; -@fa-var-envira: "\f299"; -@fa-var-eraser: "\f12d"; -@fa-var-etsy: "\f2d7"; -@fa-var-eur: "\f153"; -@fa-var-euro: "\f153"; -@fa-var-exchange: "\f0ec"; -@fa-var-exclamation: "\f12a"; -@fa-var-exclamation-circle: "\f06a"; -@fa-var-exclamation-triangle: "\f071"; -@fa-var-expand: "\f065"; -@fa-var-expeditedssl: "\f23e"; -@fa-var-external-link: "\f08e"; -@fa-var-external-link-square: "\f14c"; -@fa-var-eye: "\f06e"; -@fa-var-eye-slash: "\f070"; -@fa-var-eyedropper: "\f1fb"; -@fa-var-fa: "\f2b4"; -@fa-var-facebook: "\f09a"; -@fa-var-facebook-f: "\f09a"; -@fa-var-facebook-official: "\f230"; -@fa-var-facebook-square: "\f082"; -@fa-var-fast-backward: "\f049"; -@fa-var-fast-forward: "\f050"; -@fa-var-fax: "\f1ac"; -@fa-var-feed: "\f09e"; -@fa-var-female: "\f182"; -@fa-var-fighter-jet: "\f0fb"; -@fa-var-file: "\f15b"; -@fa-var-file-archive-o: "\f1c6"; -@fa-var-file-audio-o: "\f1c7"; -@fa-var-file-code-o: "\f1c9"; -@fa-var-file-excel-o: "\f1c3"; -@fa-var-file-image-o: "\f1c5"; -@fa-var-file-movie-o: "\f1c8"; -@fa-var-file-o: "\f016"; -@fa-var-file-pdf-o: "\f1c1"; -@fa-var-file-photo-o: "\f1c5"; -@fa-var-file-picture-o: "\f1c5"; -@fa-var-file-powerpoint-o: "\f1c4"; -@fa-var-file-sound-o: "\f1c7"; -@fa-var-file-text: "\f15c"; -@fa-var-file-text-o: "\f0f6"; -@fa-var-file-video-o: "\f1c8"; -@fa-var-file-word-o: "\f1c2"; -@fa-var-file-zip-o: "\f1c6"; -@fa-var-files-o: "\f0c5"; -@fa-var-film: "\f008"; -@fa-var-filter: "\f0b0"; -@fa-var-fire: "\f06d"; -@fa-var-fire-extinguisher: "\f134"; -@fa-var-firefox: "\f269"; -@fa-var-first-order: "\f2b0"; -@fa-var-flag: "\f024"; -@fa-var-flag-checkered: "\f11e"; -@fa-var-flag-o: "\f11d"; -@fa-var-flash: "\f0e7"; -@fa-var-flask: "\f0c3"; -@fa-var-flickr: "\f16e"; -@fa-var-floppy-o: "\f0c7"; -@fa-var-folder: "\f07b"; -@fa-var-folder-o: "\f114"; -@fa-var-folder-open: "\f07c"; -@fa-var-folder-open-o: "\f115"; -@fa-var-font: "\f031"; -@fa-var-font-awesome: "\f2b4"; -@fa-var-fonticons: "\f280"; -@fa-var-fort-awesome: "\f286"; -@fa-var-forumbee: "\f211"; -@fa-var-forward: "\f04e"; -@fa-var-foursquare: "\f180"; -@fa-var-free-code-camp: "\f2c5"; -@fa-var-frown-o: "\f119"; -@fa-var-futbol-o: "\f1e3"; -@fa-var-gamepad: "\f11b"; -@fa-var-gavel: "\f0e3"; -@fa-var-gbp: "\f154"; -@fa-var-ge: "\f1d1"; -@fa-var-gear: "\f013"; -@fa-var-gears: "\f085"; -@fa-var-genderless: "\f22d"; -@fa-var-get-pocket: "\f265"; -@fa-var-gg: "\f260"; -@fa-var-gg-circle: "\f261"; -@fa-var-gift: "\f06b"; -@fa-var-git: "\f1d3"; -@fa-var-git-square: "\f1d2"; -@fa-var-github: "\f09b"; -@fa-var-github-alt: "\f113"; -@fa-var-github-square: "\f092"; -@fa-var-gitlab: "\f296"; -@fa-var-gittip: "\f184"; -@fa-var-glass: "\f000"; -@fa-var-glide: "\f2a5"; -@fa-var-glide-g: "\f2a6"; -@fa-var-globe: "\f0ac"; -@fa-var-google: "\f1a0"; -@fa-var-google-plus: "\f0d5"; -@fa-var-google-plus-circle: "\f2b3"; -@fa-var-google-plus-official: "\f2b3"; -@fa-var-google-plus-square: "\f0d4"; -@fa-var-google-wallet: "\f1ee"; -@fa-var-graduation-cap: "\f19d"; -@fa-var-gratipay: "\f184"; -@fa-var-grav: "\f2d6"; -@fa-var-group: "\f0c0"; -@fa-var-h-square: "\f0fd"; -@fa-var-hacker-news: "\f1d4"; -@fa-var-hand-grab-o: "\f255"; -@fa-var-hand-lizard-o: "\f258"; -@fa-var-hand-o-down: "\f0a7"; -@fa-var-hand-o-left: "\f0a5"; -@fa-var-hand-o-right: "\f0a4"; -@fa-var-hand-o-up: "\f0a6"; -@fa-var-hand-paper-o: "\f256"; -@fa-var-hand-peace-o: "\f25b"; -@fa-var-hand-pointer-o: "\f25a"; -@fa-var-hand-rock-o: "\f255"; -@fa-var-hand-scissors-o: "\f257"; -@fa-var-hand-spock-o: "\f259"; -@fa-var-hand-stop-o: "\f256"; -@fa-var-handshake-o: "\f2b5"; -@fa-var-hard-of-hearing: "\f2a4"; -@fa-var-hashtag: "\f292"; -@fa-var-hdd-o: "\f0a0"; -@fa-var-header: "\f1dc"; -@fa-var-headphones: "\f025"; -@fa-var-heart: "\f004"; -@fa-var-heart-o: "\f08a"; -@fa-var-heartbeat: "\f21e"; -@fa-var-history: "\f1da"; -@fa-var-home: "\f015"; -@fa-var-hospital-o: "\f0f8"; -@fa-var-hotel: "\f236"; -@fa-var-hourglass: "\f254"; -@fa-var-hourglass-1: "\f251"; -@fa-var-hourglass-2: "\f252"; -@fa-var-hourglass-3: "\f253"; -@fa-var-hourglass-end: "\f253"; -@fa-var-hourglass-half: "\f252"; -@fa-var-hourglass-o: "\f250"; -@fa-var-hourglass-start: "\f251"; -@fa-var-houzz: "\f27c"; -@fa-var-html5: "\f13b"; -@fa-var-i-cursor: "\f246"; -@fa-var-id-badge: "\f2c1"; -@fa-var-id-card: "\f2c2"; -@fa-var-id-card-o: "\f2c3"; -@fa-var-ils: "\f20b"; -@fa-var-image: "\f03e"; -@fa-var-imdb: "\f2d8"; -@fa-var-inbox: "\f01c"; -@fa-var-indent: "\f03c"; -@fa-var-industry: "\f275"; -@fa-var-info: "\f129"; -@fa-var-info-circle: "\f05a"; -@fa-var-inr: "\f156"; -@fa-var-instagram: "\f16d"; -@fa-var-institution: "\f19c"; -@fa-var-internet-explorer: "\f26b"; -@fa-var-intersex: "\f224"; -@fa-var-ioxhost: "\f208"; -@fa-var-italic: "\f033"; -@fa-var-joomla: "\f1aa"; -@fa-var-jpy: "\f157"; -@fa-var-jsfiddle: "\f1cc"; -@fa-var-key: "\f084"; -@fa-var-keyboard-o: "\f11c"; -@fa-var-krw: "\f159"; -@fa-var-language: "\f1ab"; -@fa-var-laptop: "\f109"; -@fa-var-lastfm: "\f202"; -@fa-var-lastfm-square: "\f203"; -@fa-var-leaf: "\f06c"; -@fa-var-leanpub: "\f212"; -@fa-var-legal: "\f0e3"; -@fa-var-lemon-o: "\f094"; -@fa-var-level-down: "\f149"; -@fa-var-level-up: "\f148"; -@fa-var-life-bouy: "\f1cd"; -@fa-var-life-buoy: "\f1cd"; -@fa-var-life-ring: "\f1cd"; -@fa-var-life-saver: "\f1cd"; -@fa-var-lightbulb-o: "\f0eb"; -@fa-var-line-chart: "\f201"; -@fa-var-link: "\f0c1"; -@fa-var-linkedin: "\f0e1"; -@fa-var-linkedin-square: "\f08c"; -@fa-var-linode: "\f2b8"; -@fa-var-linux: "\f17c"; -@fa-var-list: "\f03a"; -@fa-var-list-alt: "\f022"; -@fa-var-list-ol: "\f0cb"; -@fa-var-list-ul: "\f0ca"; -@fa-var-location-arrow: "\f124"; -@fa-var-lock: "\f023"; -@fa-var-long-arrow-down: "\f175"; -@fa-var-long-arrow-left: "\f177"; -@fa-var-long-arrow-right: "\f178"; -@fa-var-long-arrow-up: "\f176"; -@fa-var-low-vision: "\f2a8"; -@fa-var-magic: "\f0d0"; -@fa-var-magnet: "\f076"; -@fa-var-mail-forward: "\f064"; -@fa-var-mail-reply: "\f112"; -@fa-var-mail-reply-all: "\f122"; -@fa-var-male: "\f183"; -@fa-var-map: "\f279"; -@fa-var-map-marker: "\f041"; -@fa-var-map-o: "\f278"; -@fa-var-map-pin: "\f276"; -@fa-var-map-signs: "\f277"; -@fa-var-mars: "\f222"; -@fa-var-mars-double: "\f227"; -@fa-var-mars-stroke: "\f229"; -@fa-var-mars-stroke-h: "\f22b"; -@fa-var-mars-stroke-v: "\f22a"; -@fa-var-maxcdn: "\f136"; -@fa-var-meanpath: "\f20c"; -@fa-var-medium: "\f23a"; -@fa-var-medkit: "\f0fa"; -@fa-var-meetup: "\f2e0"; -@fa-var-meh-o: "\f11a"; -@fa-var-mercury: "\f223"; -@fa-var-microchip: "\f2db"; -@fa-var-microphone: "\f130"; -@fa-var-microphone-slash: "\f131"; -@fa-var-minus: "\f068"; -@fa-var-minus-circle: "\f056"; -@fa-var-minus-square: "\f146"; -@fa-var-minus-square-o: "\f147"; -@fa-var-mixcloud: "\f289"; -@fa-var-mobile: "\f10b"; -@fa-var-mobile-phone: "\f10b"; -@fa-var-modx: "\f285"; -@fa-var-money: "\f0d6"; -@fa-var-moon-o: "\f186"; -@fa-var-mortar-board: "\f19d"; -@fa-var-motorcycle: "\f21c"; -@fa-var-mouse-pointer: "\f245"; -@fa-var-music: "\f001"; -@fa-var-navicon: "\f0c9"; -@fa-var-neuter: "\f22c"; -@fa-var-newspaper-o: "\f1ea"; -@fa-var-object-group: "\f247"; -@fa-var-object-ungroup: "\f248"; -@fa-var-odnoklassniki: "\f263"; -@fa-var-odnoklassniki-square: "\f264"; -@fa-var-opencart: "\f23d"; -@fa-var-openid: "\f19b"; -@fa-var-opera: "\f26a"; -@fa-var-optin-monster: "\f23c"; -@fa-var-outdent: "\f03b"; -@fa-var-pagelines: "\f18c"; -@fa-var-paint-brush: "\f1fc"; -@fa-var-paper-plane: "\f1d8"; -@fa-var-paper-plane-o: "\f1d9"; -@fa-var-paperclip: "\f0c6"; -@fa-var-paragraph: "\f1dd"; -@fa-var-paste: "\f0ea"; -@fa-var-pause: "\f04c"; -@fa-var-pause-circle: "\f28b"; -@fa-var-pause-circle-o: "\f28c"; -@fa-var-paw: "\f1b0"; -@fa-var-paypal: "\f1ed"; -@fa-var-pencil: "\f040"; -@fa-var-pencil-square: "\f14b"; -@fa-var-pencil-square-o: "\f044"; -@fa-var-percent: "\f295"; -@fa-var-phone: "\f095"; -@fa-var-phone-square: "\f098"; -@fa-var-photo: "\f03e"; -@fa-var-picture-o: "\f03e"; -@fa-var-pie-chart: "\f200"; -@fa-var-pied-piper: "\f2ae"; -@fa-var-pied-piper-alt: "\f1a8"; -@fa-var-pied-piper-pp: "\f1a7"; -@fa-var-pinterest: "\f0d2"; -@fa-var-pinterest-p: "\f231"; -@fa-var-pinterest-square: "\f0d3"; -@fa-var-plane: "\f072"; -@fa-var-play: "\f04b"; -@fa-var-play-circle: "\f144"; -@fa-var-play-circle-o: "\f01d"; -@fa-var-plug: "\f1e6"; -@fa-var-plus: "\f067"; -@fa-var-plus-circle: "\f055"; -@fa-var-plus-square: "\f0fe"; -@fa-var-plus-square-o: "\f196"; -@fa-var-podcast: "\f2ce"; -@fa-var-power-off: "\f011"; -@fa-var-print: "\f02f"; -@fa-var-product-hunt: "\f288"; -@fa-var-puzzle-piece: "\f12e"; -@fa-var-qq: "\f1d6"; -@fa-var-qrcode: "\f029"; -@fa-var-question: "\f128"; -@fa-var-question-circle: "\f059"; -@fa-var-question-circle-o: "\f29c"; -@fa-var-quora: "\f2c4"; -@fa-var-quote-left: "\f10d"; -@fa-var-quote-right: "\f10e"; -@fa-var-ra: "\f1d0"; -@fa-var-random: "\f074"; -@fa-var-ravelry: "\f2d9"; -@fa-var-rebel: "\f1d0"; -@fa-var-recycle: "\f1b8"; -@fa-var-reddit: "\f1a1"; -@fa-var-reddit-alien: "\f281"; -@fa-var-reddit-square: "\f1a2"; -@fa-var-refresh: "\f021"; -@fa-var-registered: "\f25d"; -@fa-var-remove: "\f00d"; -@fa-var-renren: "\f18b"; -@fa-var-reorder: "\f0c9"; -@fa-var-repeat: "\f01e"; -@fa-var-reply: "\f112"; -@fa-var-reply-all: "\f122"; -@fa-var-resistance: "\f1d0"; -@fa-var-retweet: "\f079"; -@fa-var-rmb: "\f157"; -@fa-var-road: "\f018"; -@fa-var-rocket: "\f135"; -@fa-var-rotate-left: "\f0e2"; -@fa-var-rotate-right: "\f01e"; -@fa-var-rouble: "\f158"; -@fa-var-rss: "\f09e"; -@fa-var-rss-square: "\f143"; -@fa-var-rub: "\f158"; -@fa-var-ruble: "\f158"; -@fa-var-rupee: "\f156"; -@fa-var-s15: "\f2cd"; -@fa-var-safari: "\f267"; -@fa-var-save: "\f0c7"; -@fa-var-scissors: "\f0c4"; -@fa-var-scribd: "\f28a"; -@fa-var-search: "\f002"; -@fa-var-search-minus: "\f010"; -@fa-var-search-plus: "\f00e"; -@fa-var-sellsy: "\f213"; -@fa-var-send: "\f1d8"; -@fa-var-send-o: "\f1d9"; -@fa-var-server: "\f233"; -@fa-var-share: "\f064"; -@fa-var-share-alt: "\f1e0"; -@fa-var-share-alt-square: "\f1e1"; -@fa-var-share-square: "\f14d"; -@fa-var-share-square-o: "\f045"; -@fa-var-shekel: "\f20b"; -@fa-var-sheqel: "\f20b"; -@fa-var-shield: "\f132"; -@fa-var-ship: "\f21a"; -@fa-var-shirtsinbulk: "\f214"; -@fa-var-shopping-bag: "\f290"; -@fa-var-shopping-basket: "\f291"; -@fa-var-shopping-cart: "\f07a"; -@fa-var-shower: "\f2cc"; -@fa-var-sign-in: "\f090"; -@fa-var-sign-language: "\f2a7"; -@fa-var-sign-out: "\f08b"; -@fa-var-signal: "\f012"; -@fa-var-signing: "\f2a7"; -@fa-var-simplybuilt: "\f215"; -@fa-var-sitemap: "\f0e8"; -@fa-var-skyatlas: "\f216"; -@fa-var-skype: "\f17e"; -@fa-var-slack: "\f198"; -@fa-var-sliders: "\f1de"; -@fa-var-slideshare: "\f1e7"; -@fa-var-smile-o: "\f118"; -@fa-var-snapchat: "\f2ab"; -@fa-var-snapchat-ghost: "\f2ac"; -@fa-var-snapchat-square: "\f2ad"; -@fa-var-snowflake-o: "\f2dc"; -@fa-var-soccer-ball-o: "\f1e3"; -@fa-var-sort: "\f0dc"; -@fa-var-sort-alpha-asc: "\f15d"; -@fa-var-sort-alpha-desc: "\f15e"; -@fa-var-sort-amount-asc: "\f160"; -@fa-var-sort-amount-desc: "\f161"; -@fa-var-sort-asc: "\f0de"; -@fa-var-sort-desc: "\f0dd"; -@fa-var-sort-down: "\f0dd"; -@fa-var-sort-numeric-asc: "\f162"; -@fa-var-sort-numeric-desc: "\f163"; -@fa-var-sort-up: "\f0de"; -@fa-var-soundcloud: "\f1be"; -@fa-var-space-shuttle: "\f197"; -@fa-var-spinner: "\f110"; -@fa-var-spoon: "\f1b1"; -@fa-var-spotify: "\f1bc"; -@fa-var-square: "\f0c8"; -@fa-var-square-o: "\f096"; -@fa-var-stack-exchange: "\f18d"; -@fa-var-stack-overflow: "\f16c"; -@fa-var-star: "\f005"; -@fa-var-star-half: "\f089"; -@fa-var-star-half-empty: "\f123"; -@fa-var-star-half-full: "\f123"; -@fa-var-star-half-o: "\f123"; -@fa-var-star-o: "\f006"; -@fa-var-steam: "\f1b6"; -@fa-var-steam-square: "\f1b7"; -@fa-var-step-backward: "\f048"; -@fa-var-step-forward: "\f051"; -@fa-var-stethoscope: "\f0f1"; -@fa-var-sticky-note: "\f249"; -@fa-var-sticky-note-o: "\f24a"; -@fa-var-stop: "\f04d"; -@fa-var-stop-circle: "\f28d"; -@fa-var-stop-circle-o: "\f28e"; -@fa-var-street-view: "\f21d"; -@fa-var-strikethrough: "\f0cc"; -@fa-var-stumbleupon: "\f1a4"; -@fa-var-stumbleupon-circle: "\f1a3"; -@fa-var-subscript: "\f12c"; -@fa-var-subway: "\f239"; -@fa-var-suitcase: "\f0f2"; -@fa-var-sun-o: "\f185"; -@fa-var-superpowers: "\f2dd"; -@fa-var-superscript: "\f12b"; -@fa-var-support: "\f1cd"; -@fa-var-table: "\f0ce"; -@fa-var-tablet: "\f10a"; -@fa-var-tachometer: "\f0e4"; -@fa-var-tag: "\f02b"; -@fa-var-tags: "\f02c"; -@fa-var-tasks: "\f0ae"; -@fa-var-taxi: "\f1ba"; -@fa-var-telegram: "\f2c6"; -@fa-var-television: "\f26c"; -@fa-var-tencent-weibo: "\f1d5"; -@fa-var-terminal: "\f120"; -@fa-var-text-height: "\f034"; -@fa-var-text-width: "\f035"; -@fa-var-th: "\f00a"; -@fa-var-th-large: "\f009"; -@fa-var-th-list: "\f00b"; -@fa-var-themeisle: "\f2b2"; -@fa-var-thermometer: "\f2c7"; -@fa-var-thermometer-0: "\f2cb"; -@fa-var-thermometer-1: "\f2ca"; -@fa-var-thermometer-2: "\f2c9"; -@fa-var-thermometer-3: "\f2c8"; -@fa-var-thermometer-4: "\f2c7"; -@fa-var-thermometer-empty: "\f2cb"; -@fa-var-thermometer-full: "\f2c7"; -@fa-var-thermometer-half: "\f2c9"; -@fa-var-thermometer-quarter: "\f2ca"; -@fa-var-thermometer-three-quarters: "\f2c8"; -@fa-var-thumb-tack: "\f08d"; -@fa-var-thumbs-down: "\f165"; -@fa-var-thumbs-o-down: "\f088"; -@fa-var-thumbs-o-up: "\f087"; -@fa-var-thumbs-up: "\f164"; -@fa-var-ticket: "\f145"; -@fa-var-times: "\f00d"; -@fa-var-times-circle: "\f057"; -@fa-var-times-circle-o: "\f05c"; -@fa-var-times-rectangle: "\f2d3"; -@fa-var-times-rectangle-o: "\f2d4"; -@fa-var-tint: "\f043"; -@fa-var-toggle-down: "\f150"; -@fa-var-toggle-left: "\f191"; -@fa-var-toggle-off: "\f204"; -@fa-var-toggle-on: "\f205"; -@fa-var-toggle-right: "\f152"; -@fa-var-toggle-up: "\f151"; -@fa-var-trademark: "\f25c"; -@fa-var-train: "\f238"; -@fa-var-transgender: "\f224"; -@fa-var-transgender-alt: "\f225"; -@fa-var-trash: "\f1f8"; -@fa-var-trash-o: "\f014"; -@fa-var-tree: "\f1bb"; -@fa-var-trello: "\f181"; -@fa-var-tripadvisor: "\f262"; -@fa-var-trophy: "\f091"; -@fa-var-truck: "\f0d1"; -@fa-var-try: "\f195"; -@fa-var-tty: "\f1e4"; -@fa-var-tumblr: "\f173"; -@fa-var-tumblr-square: "\f174"; -@fa-var-turkish-lira: "\f195"; -@fa-var-tv: "\f26c"; -@fa-var-twitch: "\f1e8"; -@fa-var-twitter: "\f099"; -@fa-var-twitter-square: "\f081"; -@fa-var-umbrella: "\f0e9"; -@fa-var-underline: "\f0cd"; -@fa-var-undo: "\f0e2"; -@fa-var-universal-access: "\f29a"; -@fa-var-university: "\f19c"; -@fa-var-unlink: "\f127"; -@fa-var-unlock: "\f09c"; -@fa-var-unlock-alt: "\f13e"; -@fa-var-unsorted: "\f0dc"; -@fa-var-upload: "\f093"; -@fa-var-usb: "\f287"; -@fa-var-usd: "\f155"; -@fa-var-user: "\f007"; -@fa-var-user-circle: "\f2bd"; -@fa-var-user-circle-o: "\f2be"; -@fa-var-user-md: "\f0f0"; -@fa-var-user-o: "\f2c0"; -@fa-var-user-plus: "\f234"; -@fa-var-user-secret: "\f21b"; -@fa-var-user-times: "\f235"; -@fa-var-users: "\f0c0"; -@fa-var-vcard: "\f2bb"; -@fa-var-vcard-o: "\f2bc"; -@fa-var-venus: "\f221"; -@fa-var-venus-double: "\f226"; -@fa-var-venus-mars: "\f228"; -@fa-var-viacoin: "\f237"; -@fa-var-viadeo: "\f2a9"; -@fa-var-viadeo-square: "\f2aa"; -@fa-var-video-camera: "\f03d"; -@fa-var-vimeo: "\f27d"; -@fa-var-vimeo-square: "\f194"; -@fa-var-vine: "\f1ca"; -@fa-var-vk: "\f189"; -@fa-var-volume-control-phone: "\f2a0"; -@fa-var-volume-down: "\f027"; -@fa-var-volume-off: "\f026"; -@fa-var-volume-up: "\f028"; -@fa-var-warning: "\f071"; -@fa-var-wechat: "\f1d7"; -@fa-var-weibo: "\f18a"; -@fa-var-weixin: "\f1d7"; -@fa-var-whatsapp: "\f232"; -@fa-var-wheelchair: "\f193"; -@fa-var-wheelchair-alt: "\f29b"; -@fa-var-wifi: "\f1eb"; -@fa-var-wikipedia-w: "\f266"; -@fa-var-window-close: "\f2d3"; -@fa-var-window-close-o: "\f2d4"; -@fa-var-window-maximize: "\f2d0"; -@fa-var-window-minimize: "\f2d1"; -@fa-var-window-restore: "\f2d2"; -@fa-var-windows: "\f17a"; -@fa-var-won: "\f159"; -@fa-var-wordpress: "\f19a"; -@fa-var-wpbeginner: "\f297"; -@fa-var-wpexplorer: "\f2de"; -@fa-var-wpforms: "\f298"; -@fa-var-wrench: "\f0ad"; -@fa-var-xing: "\f168"; -@fa-var-xing-square: "\f169"; -@fa-var-y-combinator: "\f23b"; -@fa-var-y-combinator-square: "\f1d4"; -@fa-var-yahoo: "\f19e"; -@fa-var-yc: "\f23b"; -@fa-var-yc-square: "\f1d4"; -@fa-var-yelp: "\f1e9"; -@fa-var-yen: "\f157"; -@fa-var-yoast: "\f2b1"; -@fa-var-youtube: "\f167"; -@fa-var-youtube-play: "\f16a"; -@fa-var-youtube-square: "\f166"; - diff --git a/web/static/assets/dist/font-awesome/scss/_animated.scss b/web/static/assets/dist/font-awesome/scss/_animated.scss deleted file mode 100644 index 8a020db..0000000 --- a/web/static/assets/dist/font-awesome/scss/_animated.scss +++ /dev/null @@ -1,34 +0,0 @@ -// Spinning Icons -// -------------------------- - -.#{$fa-css-prefix}-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} - -.#{$fa-css-prefix}-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} diff --git a/web/static/assets/dist/font-awesome/scss/_bordered-pulled.scss b/web/static/assets/dist/font-awesome/scss/_bordered-pulled.scss deleted file mode 100644 index d4b85a0..0000000 --- a/web/static/assets/dist/font-awesome/scss/_bordered-pulled.scss +++ /dev/null @@ -1,25 +0,0 @@ -// Bordered & Pulled -// ------------------------- - -.#{$fa-css-prefix}-border { - padding: .2em .25em .15em; - border: solid .08em $fa-border-color; - border-radius: .1em; -} - -.#{$fa-css-prefix}-pull-left { float: left; } -.#{$fa-css-prefix}-pull-right { float: right; } - -.#{$fa-css-prefix} { - &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } - &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } -} - -/* Deprecated as of 4.4.0 */ -.pull-right { float: right; } -.pull-left { float: left; } - -.#{$fa-css-prefix} { - &.pull-left { margin-right: .3em; } - &.pull-right { margin-left: .3em; } -} diff --git a/web/static/assets/dist/font-awesome/scss/_core.scss b/web/static/assets/dist/font-awesome/scss/_core.scss deleted file mode 100644 index 7425ef8..0000000 --- a/web/static/assets/dist/font-awesome/scss/_core.scss +++ /dev/null @@ -1,12 +0,0 @@ -// Base Class Definition -// ------------------------- - -.#{$fa-css-prefix} { - display: inline-block; - font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -} diff --git a/web/static/assets/dist/font-awesome/scss/_fixed-width.scss b/web/static/assets/dist/font-awesome/scss/_fixed-width.scss deleted file mode 100644 index b221c98..0000000 --- a/web/static/assets/dist/font-awesome/scss/_fixed-width.scss +++ /dev/null @@ -1,6 +0,0 @@ -// Fixed Width Icons -// ------------------------- -.#{$fa-css-prefix}-fw { - width: (18em / 14); - text-align: center; -} diff --git a/web/static/assets/dist/font-awesome/scss/_icons.scss b/web/static/assets/dist/font-awesome/scss/_icons.scss deleted file mode 100644 index e63e702..0000000 --- a/web/static/assets/dist/font-awesome/scss/_icons.scss +++ /dev/null @@ -1,789 +0,0 @@ -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ - -.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; } -.#{$fa-css-prefix}-music:before { content: $fa-var-music; } -.#{$fa-css-prefix}-search:before { content: $fa-var-search; } -.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; } -.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; } -.#{$fa-css-prefix}-star:before { content: $fa-var-star; } -.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; } -.#{$fa-css-prefix}-user:before { content: $fa-var-user; } -.#{$fa-css-prefix}-film:before { content: $fa-var-film; } -.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; } -.#{$fa-css-prefix}-th:before { content: $fa-var-th; } -.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; } -.#{$fa-css-prefix}-check:before { content: $fa-var-check; } -.#{$fa-css-prefix}-remove:before, -.#{$fa-css-prefix}-close:before, -.#{$fa-css-prefix}-times:before { content: $fa-var-times; } -.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; } -.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; } -.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; } -.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; } -.#{$fa-css-prefix}-gear:before, -.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; } -.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; } -.#{$fa-css-prefix}-home:before { content: $fa-var-home; } -.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; } -.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; } -.#{$fa-css-prefix}-road:before { content: $fa-var-road; } -.#{$fa-css-prefix}-download:before { content: $fa-var-download; } -.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; } -.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; } -.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; } -.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; } -.#{$fa-css-prefix}-rotate-right:before, -.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; } -.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; } -.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; } -.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; } -.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; } -.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; } -.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; } -.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; } -.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; } -.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; } -.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; } -.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; } -.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; } -.#{$fa-css-prefix}-book:before { content: $fa-var-book; } -.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; } -.#{$fa-css-prefix}-print:before { content: $fa-var-print; } -.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; } -.#{$fa-css-prefix}-font:before { content: $fa-var-font; } -.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; } -.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; } -.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; } -.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; } -.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; } -.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; } -.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; } -.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; } -.#{$fa-css-prefix}-list:before { content: $fa-var-list; } -.#{$fa-css-prefix}-dedent:before, -.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; } -.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; } -.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; } -.#{$fa-css-prefix}-photo:before, -.#{$fa-css-prefix}-image:before, -.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; } -.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; } -.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; } -.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; } -.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; } -.#{$fa-css-prefix}-edit:before, -.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; } -.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; } -.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; } -.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; } -.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; } -.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; } -.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; } -.#{$fa-css-prefix}-play:before { content: $fa-var-play; } -.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; } -.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; } -.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; } -.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; } -.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; } -.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; } -.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; } -.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; } -.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; } -.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; } -.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; } -.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; } -.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; } -.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; } -.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; } -.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; } -.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; } -.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; } -.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; } -.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; } -.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; } -.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; } -.#{$fa-css-prefix}-mail-forward:before, -.#{$fa-css-prefix}-share:before { content: $fa-var-share; } -.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; } -.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; } -.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; } -.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; } -.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; } -.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; } -.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; } -.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; } -.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; } -.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; } -.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; } -.#{$fa-css-prefix}-warning:before, -.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; } -.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; } -.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; } -.#{$fa-css-prefix}-random:before { content: $fa-var-random; } -.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; } -.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; } -.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; } -.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; } -.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; } -.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; } -.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; } -.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; } -.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; } -.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; } -.#{$fa-css-prefix}-bar-chart-o:before, -.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; } -.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; } -.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; } -.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; } -.#{$fa-css-prefix}-key:before { content: $fa-var-key; } -.#{$fa-css-prefix}-gears:before, -.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; } -.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; } -.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; } -.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; } -.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; } -.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; } -.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; } -.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; } -.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; } -.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; } -.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; } -.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; } -.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; } -.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; } -.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; } -.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; } -.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; } -.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; } -.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; } -.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; } -.#{$fa-css-prefix}-facebook-f:before, -.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; } -.#{$fa-css-prefix}-github:before { content: $fa-var-github; } -.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; } -.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; } -.#{$fa-css-prefix}-feed:before, -.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; } -.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; } -.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; } -.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; } -.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; } -.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; } -.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; } -.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; } -.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; } -.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; } -.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; } -.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; } -.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; } -.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; } -.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; } -.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; } -.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; } -.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; } -.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; } -.#{$fa-css-prefix}-group:before, -.#{$fa-css-prefix}-users:before { content: $fa-var-users; } -.#{$fa-css-prefix}-chain:before, -.#{$fa-css-prefix}-link:before { content: $fa-var-link; } -.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; } -.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; } -.#{$fa-css-prefix}-cut:before, -.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; } -.#{$fa-css-prefix}-copy:before, -.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; } -.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; } -.#{$fa-css-prefix}-save:before, -.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; } -.#{$fa-css-prefix}-square:before { content: $fa-var-square; } -.#{$fa-css-prefix}-navicon:before, -.#{$fa-css-prefix}-reorder:before, -.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; } -.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; } -.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; } -.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; } -.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; } -.#{$fa-css-prefix}-table:before { content: $fa-var-table; } -.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; } -.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; } -.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; } -.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; } -.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; } -.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; } -.#{$fa-css-prefix}-money:before { content: $fa-var-money; } -.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; } -.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; } -.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; } -.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; } -.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; } -.#{$fa-css-prefix}-unsorted:before, -.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; } -.#{$fa-css-prefix}-sort-down:before, -.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; } -.#{$fa-css-prefix}-sort-up:before, -.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; } -.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; } -.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; } -.#{$fa-css-prefix}-rotate-left:before, -.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; } -.#{$fa-css-prefix}-legal:before, -.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; } -.#{$fa-css-prefix}-dashboard:before, -.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; } -.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; } -.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; } -.#{$fa-css-prefix}-flash:before, -.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; } -.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; } -.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; } -.#{$fa-css-prefix}-paste:before, -.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; } -.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; } -.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; } -.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; } -.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; } -.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; } -.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; } -.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; } -.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; } -.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; } -.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; } -.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; } -.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; } -.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; } -.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; } -.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; } -.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; } -.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; } -.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; } -.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; } -.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; } -.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; } -.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; } -.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; } -.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; } -.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; } -.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; } -.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; } -.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; } -.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; } -.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; } -.#{$fa-css-prefix}-mobile-phone:before, -.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; } -.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; } -.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; } -.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; } -.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; } -.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; } -.#{$fa-css-prefix}-mail-reply:before, -.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; } -.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; } -.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; } -.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; } -.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; } -.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; } -.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; } -.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; } -.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; } -.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; } -.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; } -.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; } -.#{$fa-css-prefix}-code:before { content: $fa-var-code; } -.#{$fa-css-prefix}-mail-reply-all:before, -.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; } -.#{$fa-css-prefix}-star-half-empty:before, -.#{$fa-css-prefix}-star-half-full:before, -.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; } -.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; } -.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; } -.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; } -.#{$fa-css-prefix}-unlink:before, -.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; } -.#{$fa-css-prefix}-question:before { content: $fa-var-question; } -.#{$fa-css-prefix}-info:before { content: $fa-var-info; } -.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; } -.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; } -.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; } -.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; } -.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; } -.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; } -.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; } -.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; } -.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; } -.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; } -.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; } -.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; } -.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; } -.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; } -.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; } -.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; } -.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; } -.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; } -.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; } -.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; } -.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; } -.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; } -.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; } -.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; } -.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; } -.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; } -.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; } -.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; } -.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; } -.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; } -.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; } -.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; } -.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; } -.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; } -.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; } -.#{$fa-css-prefix}-toggle-down:before, -.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; } -.#{$fa-css-prefix}-toggle-up:before, -.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; } -.#{$fa-css-prefix}-toggle-right:before, -.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; } -.#{$fa-css-prefix}-euro:before, -.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; } -.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; } -.#{$fa-css-prefix}-dollar:before, -.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; } -.#{$fa-css-prefix}-rupee:before, -.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; } -.#{$fa-css-prefix}-cny:before, -.#{$fa-css-prefix}-rmb:before, -.#{$fa-css-prefix}-yen:before, -.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; } -.#{$fa-css-prefix}-ruble:before, -.#{$fa-css-prefix}-rouble:before, -.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; } -.#{$fa-css-prefix}-won:before, -.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; } -.#{$fa-css-prefix}-bitcoin:before, -.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; } -.#{$fa-css-prefix}-file:before { content: $fa-var-file; } -.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; } -.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; } -.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; } -.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; } -.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; } -.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; } -.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; } -.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; } -.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; } -.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; } -.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; } -.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; } -.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; } -.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; } -.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; } -.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; } -.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; } -.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; } -.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; } -.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; } -.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; } -.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; } -.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; } -.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; } -.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; } -.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; } -.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; } -.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; } -.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; } -.#{$fa-css-prefix}-android:before { content: $fa-var-android; } -.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; } -.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; } -.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; } -.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; } -.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; } -.#{$fa-css-prefix}-female:before { content: $fa-var-female; } -.#{$fa-css-prefix}-male:before { content: $fa-var-male; } -.#{$fa-css-prefix}-gittip:before, -.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; } -.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; } -.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; } -.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; } -.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; } -.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; } -.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; } -.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; } -.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; } -.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; } -.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; } -.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; } -.#{$fa-css-prefix}-toggle-left:before, -.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; } -.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; } -.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; } -.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; } -.#{$fa-css-prefix}-turkish-lira:before, -.#{$fa-css-prefix}-try:before { content: $fa-var-try; } -.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; } -.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; } -.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; } -.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; } -.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; } -.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; } -.#{$fa-css-prefix}-institution:before, -.#{$fa-css-prefix}-bank:before, -.#{$fa-css-prefix}-university:before { content: $fa-var-university; } -.#{$fa-css-prefix}-mortar-board:before, -.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; } -.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; } -.#{$fa-css-prefix}-google:before { content: $fa-var-google; } -.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; } -.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; } -.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; } -.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; } -.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; } -.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; } -.#{$fa-css-prefix}-pied-piper-pp:before { content: $fa-var-pied-piper-pp; } -.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; } -.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; } -.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; } -.#{$fa-css-prefix}-language:before { content: $fa-var-language; } -.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; } -.#{$fa-css-prefix}-building:before { content: $fa-var-building; } -.#{$fa-css-prefix}-child:before { content: $fa-var-child; } -.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; } -.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; } -.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; } -.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; } -.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; } -.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; } -.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; } -.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; } -.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; } -.#{$fa-css-prefix}-automobile:before, -.#{$fa-css-prefix}-car:before { content: $fa-var-car; } -.#{$fa-css-prefix}-cab:before, -.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; } -.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; } -.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; } -.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; } -.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; } -.#{$fa-css-prefix}-database:before { content: $fa-var-database; } -.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; } -.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; } -.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; } -.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; } -.#{$fa-css-prefix}-file-photo-o:before, -.#{$fa-css-prefix}-file-picture-o:before, -.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; } -.#{$fa-css-prefix}-file-zip-o:before, -.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; } -.#{$fa-css-prefix}-file-sound-o:before, -.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; } -.#{$fa-css-prefix}-file-movie-o:before, -.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; } -.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; } -.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; } -.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; } -.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; } -.#{$fa-css-prefix}-life-bouy:before, -.#{$fa-css-prefix}-life-buoy:before, -.#{$fa-css-prefix}-life-saver:before, -.#{$fa-css-prefix}-support:before, -.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; } -.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; } -.#{$fa-css-prefix}-ra:before, -.#{$fa-css-prefix}-resistance:before, -.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; } -.#{$fa-css-prefix}-ge:before, -.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; } -.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; } -.#{$fa-css-prefix}-git:before { content: $fa-var-git; } -.#{$fa-css-prefix}-y-combinator-square:before, -.#{$fa-css-prefix}-yc-square:before, -.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; } -.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; } -.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; } -.#{$fa-css-prefix}-wechat:before, -.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; } -.#{$fa-css-prefix}-send:before, -.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; } -.#{$fa-css-prefix}-send-o:before, -.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; } -.#{$fa-css-prefix}-history:before { content: $fa-var-history; } -.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; } -.#{$fa-css-prefix}-header:before { content: $fa-var-header; } -.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; } -.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; } -.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; } -.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; } -.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; } -.#{$fa-css-prefix}-soccer-ball-o:before, -.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; } -.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; } -.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; } -.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; } -.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; } -.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; } -.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; } -.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; } -.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; } -.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; } -.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; } -.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; } -.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; } -.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; } -.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; } -.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; } -.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; } -.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; } -.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; } -.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; } -.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; } -.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; } -.#{$fa-css-prefix}-at:before { content: $fa-var-at; } -.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; } -.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; } -.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; } -.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; } -.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; } -.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; } -.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; } -.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; } -.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; } -.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; } -.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; } -.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; } -.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; } -.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; } -.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; } -.#{$fa-css-prefix}-shekel:before, -.#{$fa-css-prefix}-sheqel:before, -.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; } -.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; } -.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; } -.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; } -.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; } -.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; } -.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; } -.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; } -.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; } -.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; } -.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; } -.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; } -.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; } -.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; } -.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; } -.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; } -.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; } -.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; } -.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; } -.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; } -.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; } -.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; } -.#{$fa-css-prefix}-intersex:before, -.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; } -.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; } -.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; } -.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; } -.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; } -.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; } -.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; } -.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; } -.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; } -.#{$fa-css-prefix}-genderless:before { content: $fa-var-genderless; } -.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; } -.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; } -.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; } -.#{$fa-css-prefix}-server:before { content: $fa-var-server; } -.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; } -.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; } -.#{$fa-css-prefix}-hotel:before, -.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; } -.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; } -.#{$fa-css-prefix}-train:before { content: $fa-var-train; } -.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; } -.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; } -.#{$fa-css-prefix}-yc:before, -.#{$fa-css-prefix}-y-combinator:before { content: $fa-var-y-combinator; } -.#{$fa-css-prefix}-optin-monster:before { content: $fa-var-optin-monster; } -.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; } -.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; } -.#{$fa-css-prefix}-battery-4:before, -.#{$fa-css-prefix}-battery:before, -.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; } -.#{$fa-css-prefix}-battery-3:before, -.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; } -.#{$fa-css-prefix}-battery-2:before, -.#{$fa-css-prefix}-battery-half:before { content: $fa-var-battery-half; } -.#{$fa-css-prefix}-battery-1:before, -.#{$fa-css-prefix}-battery-quarter:before { content: $fa-var-battery-quarter; } -.#{$fa-css-prefix}-battery-0:before, -.#{$fa-css-prefix}-battery-empty:before { content: $fa-var-battery-empty; } -.#{$fa-css-prefix}-mouse-pointer:before { content: $fa-var-mouse-pointer; } -.#{$fa-css-prefix}-i-cursor:before { content: $fa-var-i-cursor; } -.#{$fa-css-prefix}-object-group:before { content: $fa-var-object-group; } -.#{$fa-css-prefix}-object-ungroup:before { content: $fa-var-object-ungroup; } -.#{$fa-css-prefix}-sticky-note:before { content: $fa-var-sticky-note; } -.#{$fa-css-prefix}-sticky-note-o:before { content: $fa-var-sticky-note-o; } -.#{$fa-css-prefix}-cc-jcb:before { content: $fa-var-cc-jcb; } -.#{$fa-css-prefix}-cc-diners-club:before { content: $fa-var-cc-diners-club; } -.#{$fa-css-prefix}-clone:before { content: $fa-var-clone; } -.#{$fa-css-prefix}-balance-scale:before { content: $fa-var-balance-scale; } -.#{$fa-css-prefix}-hourglass-o:before { content: $fa-var-hourglass-o; } -.#{$fa-css-prefix}-hourglass-1:before, -.#{$fa-css-prefix}-hourglass-start:before { content: $fa-var-hourglass-start; } -.#{$fa-css-prefix}-hourglass-2:before, -.#{$fa-css-prefix}-hourglass-half:before { content: $fa-var-hourglass-half; } -.#{$fa-css-prefix}-hourglass-3:before, -.#{$fa-css-prefix}-hourglass-end:before { content: $fa-var-hourglass-end; } -.#{$fa-css-prefix}-hourglass:before { content: $fa-var-hourglass; } -.#{$fa-css-prefix}-hand-grab-o:before, -.#{$fa-css-prefix}-hand-rock-o:before { content: $fa-var-hand-rock-o; } -.#{$fa-css-prefix}-hand-stop-o:before, -.#{$fa-css-prefix}-hand-paper-o:before { content: $fa-var-hand-paper-o; } -.#{$fa-css-prefix}-hand-scissors-o:before { content: $fa-var-hand-scissors-o; } -.#{$fa-css-prefix}-hand-lizard-o:before { content: $fa-var-hand-lizard-o; } -.#{$fa-css-prefix}-hand-spock-o:before { content: $fa-var-hand-spock-o; } -.#{$fa-css-prefix}-hand-pointer-o:before { content: $fa-var-hand-pointer-o; } -.#{$fa-css-prefix}-hand-peace-o:before { content: $fa-var-hand-peace-o; } -.#{$fa-css-prefix}-trademark:before { content: $fa-var-trademark; } -.#{$fa-css-prefix}-registered:before { content: $fa-var-registered; } -.#{$fa-css-prefix}-creative-commons:before { content: $fa-var-creative-commons; } -.#{$fa-css-prefix}-gg:before { content: $fa-var-gg; } -.#{$fa-css-prefix}-gg-circle:before { content: $fa-var-gg-circle; } -.#{$fa-css-prefix}-tripadvisor:before { content: $fa-var-tripadvisor; } -.#{$fa-css-prefix}-odnoklassniki:before { content: $fa-var-odnoklassniki; } -.#{$fa-css-prefix}-odnoklassniki-square:before { content: $fa-var-odnoklassniki-square; } -.#{$fa-css-prefix}-get-pocket:before { content: $fa-var-get-pocket; } -.#{$fa-css-prefix}-wikipedia-w:before { content: $fa-var-wikipedia-w; } -.#{$fa-css-prefix}-safari:before { content: $fa-var-safari; } -.#{$fa-css-prefix}-chrome:before { content: $fa-var-chrome; } -.#{$fa-css-prefix}-firefox:before { content: $fa-var-firefox; } -.#{$fa-css-prefix}-opera:before { content: $fa-var-opera; } -.#{$fa-css-prefix}-internet-explorer:before { content: $fa-var-internet-explorer; } -.#{$fa-css-prefix}-tv:before, -.#{$fa-css-prefix}-television:before { content: $fa-var-television; } -.#{$fa-css-prefix}-contao:before { content: $fa-var-contao; } -.#{$fa-css-prefix}-500px:before { content: $fa-var-500px; } -.#{$fa-css-prefix}-amazon:before { content: $fa-var-amazon; } -.#{$fa-css-prefix}-calendar-plus-o:before { content: $fa-var-calendar-plus-o; } -.#{$fa-css-prefix}-calendar-minus-o:before { content: $fa-var-calendar-minus-o; } -.#{$fa-css-prefix}-calendar-times-o:before { content: $fa-var-calendar-times-o; } -.#{$fa-css-prefix}-calendar-check-o:before { content: $fa-var-calendar-check-o; } -.#{$fa-css-prefix}-industry:before { content: $fa-var-industry; } -.#{$fa-css-prefix}-map-pin:before { content: $fa-var-map-pin; } -.#{$fa-css-prefix}-map-signs:before { content: $fa-var-map-signs; } -.#{$fa-css-prefix}-map-o:before { content: $fa-var-map-o; } -.#{$fa-css-prefix}-map:before { content: $fa-var-map; } -.#{$fa-css-prefix}-commenting:before { content: $fa-var-commenting; } -.#{$fa-css-prefix}-commenting-o:before { content: $fa-var-commenting-o; } -.#{$fa-css-prefix}-houzz:before { content: $fa-var-houzz; } -.#{$fa-css-prefix}-vimeo:before { content: $fa-var-vimeo; } -.#{$fa-css-prefix}-black-tie:before { content: $fa-var-black-tie; } -.#{$fa-css-prefix}-fonticons:before { content: $fa-var-fonticons; } -.#{$fa-css-prefix}-reddit-alien:before { content: $fa-var-reddit-alien; } -.#{$fa-css-prefix}-edge:before { content: $fa-var-edge; } -.#{$fa-css-prefix}-credit-card-alt:before { content: $fa-var-credit-card-alt; } -.#{$fa-css-prefix}-codiepie:before { content: $fa-var-codiepie; } -.#{$fa-css-prefix}-modx:before { content: $fa-var-modx; } -.#{$fa-css-prefix}-fort-awesome:before { content: $fa-var-fort-awesome; } -.#{$fa-css-prefix}-usb:before { content: $fa-var-usb; } -.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; } -.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; } -.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; } -.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; } -.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; } -.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; } -.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; } -.#{$fa-css-prefix}-shopping-bag:before { content: $fa-var-shopping-bag; } -.#{$fa-css-prefix}-shopping-basket:before { content: $fa-var-shopping-basket; } -.#{$fa-css-prefix}-hashtag:before { content: $fa-var-hashtag; } -.#{$fa-css-prefix}-bluetooth:before { content: $fa-var-bluetooth; } -.#{$fa-css-prefix}-bluetooth-b:before { content: $fa-var-bluetooth-b; } -.#{$fa-css-prefix}-percent:before { content: $fa-var-percent; } -.#{$fa-css-prefix}-gitlab:before { content: $fa-var-gitlab; } -.#{$fa-css-prefix}-wpbeginner:before { content: $fa-var-wpbeginner; } -.#{$fa-css-prefix}-wpforms:before { content: $fa-var-wpforms; } -.#{$fa-css-prefix}-envira:before { content: $fa-var-envira; } -.#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; } -.#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; } -.#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; } -.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; } -.#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; } -.#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; } -.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; } -.#{$fa-css-prefix}-assistive-listening-systems:before { content: $fa-var-assistive-listening-systems; } -.#{$fa-css-prefix}-asl-interpreting:before, -.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: $fa-var-american-sign-language-interpreting; } -.#{$fa-css-prefix}-deafness:before, -.#{$fa-css-prefix}-hard-of-hearing:before, -.#{$fa-css-prefix}-deaf:before { content: $fa-var-deaf; } -.#{$fa-css-prefix}-glide:before { content: $fa-var-glide; } -.#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; } -.#{$fa-css-prefix}-signing:before, -.#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; } -.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; } -.#{$fa-css-prefix}-viadeo:before { content: $fa-var-viadeo; } -.#{$fa-css-prefix}-viadeo-square:before { content: $fa-var-viadeo-square; } -.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; } -.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; } -.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; } -.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; } -.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; } -.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; } -.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; } -.#{$fa-css-prefix}-google-plus-circle:before, -.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; } -.#{$fa-css-prefix}-fa:before, -.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; } -.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; } -.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; } -.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; } -.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; } -.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; } -.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; } -.#{$fa-css-prefix}-vcard:before, -.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; } -.#{$fa-css-prefix}-vcard-o:before, -.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; } -.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; } -.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; } -.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; } -.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; } -.#{$fa-css-prefix}-drivers-license:before, -.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; } -.#{$fa-css-prefix}-drivers-license-o:before, -.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; } -.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; } -.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; } -.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; } -.#{$fa-css-prefix}-thermometer-4:before, -.#{$fa-css-prefix}-thermometer:before, -.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; } -.#{$fa-css-prefix}-thermometer-3:before, -.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; } -.#{$fa-css-prefix}-thermometer-2:before, -.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; } -.#{$fa-css-prefix}-thermometer-1:before, -.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; } -.#{$fa-css-prefix}-thermometer-0:before, -.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; } -.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; } -.#{$fa-css-prefix}-bathtub:before, -.#{$fa-css-prefix}-s15:before, -.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; } -.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; } -.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; } -.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; } -.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; } -.#{$fa-css-prefix}-times-rectangle:before, -.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; } -.#{$fa-css-prefix}-times-rectangle-o:before, -.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; } -.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; } -.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; } -.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; } -.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; } -.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; } -.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; } -.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; } -.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; } -.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; } -.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; } -.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; } diff --git a/web/static/assets/dist/font-awesome/scss/_larger.scss b/web/static/assets/dist/font-awesome/scss/_larger.scss deleted file mode 100644 index 41e9a81..0000000 --- a/web/static/assets/dist/font-awesome/scss/_larger.scss +++ /dev/null @@ -1,13 +0,0 @@ -// Icon Sizes -// ------------------------- - -/* makes the font 33% larger relative to the icon container */ -.#{$fa-css-prefix}-lg { - font-size: (4em / 3); - line-height: (3em / 4); - vertical-align: -15%; -} -.#{$fa-css-prefix}-2x { font-size: 2em; } -.#{$fa-css-prefix}-3x { font-size: 3em; } -.#{$fa-css-prefix}-4x { font-size: 4em; } -.#{$fa-css-prefix}-5x { font-size: 5em; } diff --git a/web/static/assets/dist/font-awesome/scss/_list.scss b/web/static/assets/dist/font-awesome/scss/_list.scss deleted file mode 100644 index 7d1e4d5..0000000 --- a/web/static/assets/dist/font-awesome/scss/_list.scss +++ /dev/null @@ -1,19 +0,0 @@ -// List Icons -// ------------------------- - -.#{$fa-css-prefix}-ul { - padding-left: 0; - margin-left: $fa-li-width; - list-style-type: none; - > li { position: relative; } -} -.#{$fa-css-prefix}-li { - position: absolute; - left: -$fa-li-width; - width: $fa-li-width; - top: (2em / 14); - text-align: center; - &.#{$fa-css-prefix}-lg { - left: -$fa-li-width + (4em / 14); - } -} diff --git a/web/static/assets/dist/font-awesome/scss/_mixins.scss b/web/static/assets/dist/font-awesome/scss/_mixins.scss deleted file mode 100644 index c3bbd57..0000000 --- a/web/static/assets/dist/font-awesome/scss/_mixins.scss +++ /dev/null @@ -1,60 +0,0 @@ -// Mixins -// -------------------------- - -@mixin fa-icon() { - display: inline-block; - font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -} - -@mixin fa-icon-rotate($degrees, $rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; - -webkit-transform: rotate($degrees); - -ms-transform: rotate($degrees); - transform: rotate($degrees); -} - -@mixin fa-icon-flip($horiz, $vert, $rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; - -webkit-transform: scale($horiz, $vert); - -ms-transform: scale($horiz, $vert); - transform: scale($horiz, $vert); -} - - -// Only display content to screen readers. A la Bootstrap 4. -// -// See: http://a11yproject.com/posts/how-to-hide-content/ - -@mixin sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0,0,0,0); - border: 0; -} - -// Use in conjunction with .sr-only to only display content when it's focused. -// -// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 -// -// Credit: HTML5 Boilerplate - -@mixin sr-only-focusable { - &:active, - &:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; - } -} diff --git a/web/static/assets/dist/font-awesome/scss/_path.scss b/web/static/assets/dist/font-awesome/scss/_path.scss deleted file mode 100644 index bb457c2..0000000 --- a/web/static/assets/dist/font-awesome/scss/_path.scss +++ /dev/null @@ -1,15 +0,0 @@ -/* FONT PATH - * -------------------------- */ - -@font-face { - font-family: 'FontAwesome'; - src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); - src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), - url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), - url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), - url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), - url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); -// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts - font-weight: normal; - font-style: normal; -} diff --git a/web/static/assets/dist/font-awesome/scss/_rotated-flipped.scss b/web/static/assets/dist/font-awesome/scss/_rotated-flipped.scss deleted file mode 100644 index a3558fd..0000000 --- a/web/static/assets/dist/font-awesome/scss/_rotated-flipped.scss +++ /dev/null @@ -1,20 +0,0 @@ -// Rotated & Flipped Icons -// ------------------------- - -.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } -.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } -.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } - -.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } -.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } - -// Hook for IE8-9 -// ------------------------- - -:root .#{$fa-css-prefix}-rotate-90, -:root .#{$fa-css-prefix}-rotate-180, -:root .#{$fa-css-prefix}-rotate-270, -:root .#{$fa-css-prefix}-flip-horizontal, -:root .#{$fa-css-prefix}-flip-vertical { - filter: none; -} diff --git a/web/static/assets/dist/font-awesome/scss/_screen-reader.scss b/web/static/assets/dist/font-awesome/scss/_screen-reader.scss deleted file mode 100644 index 637426f..0000000 --- a/web/static/assets/dist/font-awesome/scss/_screen-reader.scss +++ /dev/null @@ -1,5 +0,0 @@ -// Screen Readers -// ------------------------- - -.sr-only { @include sr-only(); } -.sr-only-focusable { @include sr-only-focusable(); } diff --git a/web/static/assets/dist/font-awesome/scss/_stacked.scss b/web/static/assets/dist/font-awesome/scss/_stacked.scss deleted file mode 100644 index aef7403..0000000 --- a/web/static/assets/dist/font-awesome/scss/_stacked.scss +++ /dev/null @@ -1,20 +0,0 @@ -// Stacked Icons -// ------------------------- - -.#{$fa-css-prefix}-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.#{$fa-css-prefix}-stack-1x { line-height: inherit; } -.#{$fa-css-prefix}-stack-2x { font-size: 2em; } -.#{$fa-css-prefix}-inverse { color: $fa-inverse; } diff --git a/web/static/assets/dist/font-awesome/scss/_variables.scss b/web/static/assets/dist/font-awesome/scss/_variables.scss deleted file mode 100644 index 498fc4a..0000000 --- a/web/static/assets/dist/font-awesome/scss/_variables.scss +++ /dev/null @@ -1,800 +0,0 @@ -// Variables -// -------------------------- - -$fa-font-path: "../fonts" !default; -$fa-font-size-base: 14px !default; -$fa-line-height-base: 1 !default; -//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly -$fa-css-prefix: fa !default; -$fa-version: "4.7.0" !default; -$fa-border-color: #eee !default; -$fa-inverse: #fff !default; -$fa-li-width: (30em / 14) !default; - -$fa-var-500px: "\f26e"; -$fa-var-address-book: "\f2b9"; -$fa-var-address-book-o: "\f2ba"; -$fa-var-address-card: "\f2bb"; -$fa-var-address-card-o: "\f2bc"; -$fa-var-adjust: "\f042"; -$fa-var-adn: "\f170"; -$fa-var-align-center: "\f037"; -$fa-var-align-justify: "\f039"; -$fa-var-align-left: "\f036"; -$fa-var-align-right: "\f038"; -$fa-var-amazon: "\f270"; -$fa-var-ambulance: "\f0f9"; -$fa-var-american-sign-language-interpreting: "\f2a3"; -$fa-var-anchor: "\f13d"; -$fa-var-android: "\f17b"; -$fa-var-angellist: "\f209"; -$fa-var-angle-double-down: "\f103"; -$fa-var-angle-double-left: "\f100"; -$fa-var-angle-double-right: "\f101"; -$fa-var-angle-double-up: "\f102"; -$fa-var-angle-down: "\f107"; -$fa-var-angle-left: "\f104"; -$fa-var-angle-right: "\f105"; -$fa-var-angle-up: "\f106"; -$fa-var-apple: "\f179"; -$fa-var-archive: "\f187"; -$fa-var-area-chart: "\f1fe"; -$fa-var-arrow-circle-down: "\f0ab"; -$fa-var-arrow-circle-left: "\f0a8"; -$fa-var-arrow-circle-o-down: "\f01a"; -$fa-var-arrow-circle-o-left: "\f190"; -$fa-var-arrow-circle-o-right: "\f18e"; -$fa-var-arrow-circle-o-up: "\f01b"; -$fa-var-arrow-circle-right: "\f0a9"; -$fa-var-arrow-circle-up: "\f0aa"; -$fa-var-arrow-down: "\f063"; -$fa-var-arrow-left: "\f060"; -$fa-var-arrow-right: "\f061"; -$fa-var-arrow-up: "\f062"; -$fa-var-arrows: "\f047"; -$fa-var-arrows-alt: "\f0b2"; -$fa-var-arrows-h: "\f07e"; -$fa-var-arrows-v: "\f07d"; -$fa-var-asl-interpreting: "\f2a3"; -$fa-var-assistive-listening-systems: "\f2a2"; -$fa-var-asterisk: "\f069"; -$fa-var-at: "\f1fa"; -$fa-var-audio-description: "\f29e"; -$fa-var-automobile: "\f1b9"; -$fa-var-backward: "\f04a"; -$fa-var-balance-scale: "\f24e"; -$fa-var-ban: "\f05e"; -$fa-var-bandcamp: "\f2d5"; -$fa-var-bank: "\f19c"; -$fa-var-bar-chart: "\f080"; -$fa-var-bar-chart-o: "\f080"; -$fa-var-barcode: "\f02a"; -$fa-var-bars: "\f0c9"; -$fa-var-bath: "\f2cd"; -$fa-var-bathtub: "\f2cd"; -$fa-var-battery: "\f240"; -$fa-var-battery-0: "\f244"; -$fa-var-battery-1: "\f243"; -$fa-var-battery-2: "\f242"; -$fa-var-battery-3: "\f241"; -$fa-var-battery-4: "\f240"; -$fa-var-battery-empty: "\f244"; -$fa-var-battery-full: "\f240"; -$fa-var-battery-half: "\f242"; -$fa-var-battery-quarter: "\f243"; -$fa-var-battery-three-quarters: "\f241"; -$fa-var-bed: "\f236"; -$fa-var-beer: "\f0fc"; -$fa-var-behance: "\f1b4"; -$fa-var-behance-square: "\f1b5"; -$fa-var-bell: "\f0f3"; -$fa-var-bell-o: "\f0a2"; -$fa-var-bell-slash: "\f1f6"; -$fa-var-bell-slash-o: "\f1f7"; -$fa-var-bicycle: "\f206"; -$fa-var-binoculars: "\f1e5"; -$fa-var-birthday-cake: "\f1fd"; -$fa-var-bitbucket: "\f171"; -$fa-var-bitbucket-square: "\f172"; -$fa-var-bitcoin: "\f15a"; -$fa-var-black-tie: "\f27e"; -$fa-var-blind: "\f29d"; -$fa-var-bluetooth: "\f293"; -$fa-var-bluetooth-b: "\f294"; -$fa-var-bold: "\f032"; -$fa-var-bolt: "\f0e7"; -$fa-var-bomb: "\f1e2"; -$fa-var-book: "\f02d"; -$fa-var-bookmark: "\f02e"; -$fa-var-bookmark-o: "\f097"; -$fa-var-braille: "\f2a1"; -$fa-var-briefcase: "\f0b1"; -$fa-var-btc: "\f15a"; -$fa-var-bug: "\f188"; -$fa-var-building: "\f1ad"; -$fa-var-building-o: "\f0f7"; -$fa-var-bullhorn: "\f0a1"; -$fa-var-bullseye: "\f140"; -$fa-var-bus: "\f207"; -$fa-var-buysellads: "\f20d"; -$fa-var-cab: "\f1ba"; -$fa-var-calculator: "\f1ec"; -$fa-var-calendar: "\f073"; -$fa-var-calendar-check-o: "\f274"; -$fa-var-calendar-minus-o: "\f272"; -$fa-var-calendar-o: "\f133"; -$fa-var-calendar-plus-o: "\f271"; -$fa-var-calendar-times-o: "\f273"; -$fa-var-camera: "\f030"; -$fa-var-camera-retro: "\f083"; -$fa-var-car: "\f1b9"; -$fa-var-caret-down: "\f0d7"; -$fa-var-caret-left: "\f0d9"; -$fa-var-caret-right: "\f0da"; -$fa-var-caret-square-o-down: "\f150"; -$fa-var-caret-square-o-left: "\f191"; -$fa-var-caret-square-o-right: "\f152"; -$fa-var-caret-square-o-up: "\f151"; -$fa-var-caret-up: "\f0d8"; -$fa-var-cart-arrow-down: "\f218"; -$fa-var-cart-plus: "\f217"; -$fa-var-cc: "\f20a"; -$fa-var-cc-amex: "\f1f3"; -$fa-var-cc-diners-club: "\f24c"; -$fa-var-cc-discover: "\f1f2"; -$fa-var-cc-jcb: "\f24b"; -$fa-var-cc-mastercard: "\f1f1"; -$fa-var-cc-paypal: "\f1f4"; -$fa-var-cc-stripe: "\f1f5"; -$fa-var-cc-visa: "\f1f0"; -$fa-var-certificate: "\f0a3"; -$fa-var-chain: "\f0c1"; -$fa-var-chain-broken: "\f127"; -$fa-var-check: "\f00c"; -$fa-var-check-circle: "\f058"; -$fa-var-check-circle-o: "\f05d"; -$fa-var-check-square: "\f14a"; -$fa-var-check-square-o: "\f046"; -$fa-var-chevron-circle-down: "\f13a"; -$fa-var-chevron-circle-left: "\f137"; -$fa-var-chevron-circle-right: "\f138"; -$fa-var-chevron-circle-up: "\f139"; -$fa-var-chevron-down: "\f078"; -$fa-var-chevron-left: "\f053"; -$fa-var-chevron-right: "\f054"; -$fa-var-chevron-up: "\f077"; -$fa-var-child: "\f1ae"; -$fa-var-chrome: "\f268"; -$fa-var-circle: "\f111"; -$fa-var-circle-o: "\f10c"; -$fa-var-circle-o-notch: "\f1ce"; -$fa-var-circle-thin: "\f1db"; -$fa-var-clipboard: "\f0ea"; -$fa-var-clock-o: "\f017"; -$fa-var-clone: "\f24d"; -$fa-var-close: "\f00d"; -$fa-var-cloud: "\f0c2"; -$fa-var-cloud-download: "\f0ed"; -$fa-var-cloud-upload: "\f0ee"; -$fa-var-cny: "\f157"; -$fa-var-code: "\f121"; -$fa-var-code-fork: "\f126"; -$fa-var-codepen: "\f1cb"; -$fa-var-codiepie: "\f284"; -$fa-var-coffee: "\f0f4"; -$fa-var-cog: "\f013"; -$fa-var-cogs: "\f085"; -$fa-var-columns: "\f0db"; -$fa-var-comment: "\f075"; -$fa-var-comment-o: "\f0e5"; -$fa-var-commenting: "\f27a"; -$fa-var-commenting-o: "\f27b"; -$fa-var-comments: "\f086"; -$fa-var-comments-o: "\f0e6"; -$fa-var-compass: "\f14e"; -$fa-var-compress: "\f066"; -$fa-var-connectdevelop: "\f20e"; -$fa-var-contao: "\f26d"; -$fa-var-copy: "\f0c5"; -$fa-var-copyright: "\f1f9"; -$fa-var-creative-commons: "\f25e"; -$fa-var-credit-card: "\f09d"; -$fa-var-credit-card-alt: "\f283"; -$fa-var-crop: "\f125"; -$fa-var-crosshairs: "\f05b"; -$fa-var-css3: "\f13c"; -$fa-var-cube: "\f1b2"; -$fa-var-cubes: "\f1b3"; -$fa-var-cut: "\f0c4"; -$fa-var-cutlery: "\f0f5"; -$fa-var-dashboard: "\f0e4"; -$fa-var-dashcube: "\f210"; -$fa-var-database: "\f1c0"; -$fa-var-deaf: "\f2a4"; -$fa-var-deafness: "\f2a4"; -$fa-var-dedent: "\f03b"; -$fa-var-delicious: "\f1a5"; -$fa-var-desktop: "\f108"; -$fa-var-deviantart: "\f1bd"; -$fa-var-diamond: "\f219"; -$fa-var-digg: "\f1a6"; -$fa-var-dollar: "\f155"; -$fa-var-dot-circle-o: "\f192"; -$fa-var-download: "\f019"; -$fa-var-dribbble: "\f17d"; -$fa-var-drivers-license: "\f2c2"; -$fa-var-drivers-license-o: "\f2c3"; -$fa-var-dropbox: "\f16b"; -$fa-var-drupal: "\f1a9"; -$fa-var-edge: "\f282"; -$fa-var-edit: "\f044"; -$fa-var-eercast: "\f2da"; -$fa-var-eject: "\f052"; -$fa-var-ellipsis-h: "\f141"; -$fa-var-ellipsis-v: "\f142"; -$fa-var-empire: "\f1d1"; -$fa-var-envelope: "\f0e0"; -$fa-var-envelope-o: "\f003"; -$fa-var-envelope-open: "\f2b6"; -$fa-var-envelope-open-o: "\f2b7"; -$fa-var-envelope-square: "\f199"; -$fa-var-envira: "\f299"; -$fa-var-eraser: "\f12d"; -$fa-var-etsy: "\f2d7"; -$fa-var-eur: "\f153"; -$fa-var-euro: "\f153"; -$fa-var-exchange: "\f0ec"; -$fa-var-exclamation: "\f12a"; -$fa-var-exclamation-circle: "\f06a"; -$fa-var-exclamation-triangle: "\f071"; -$fa-var-expand: "\f065"; -$fa-var-expeditedssl: "\f23e"; -$fa-var-external-link: "\f08e"; -$fa-var-external-link-square: "\f14c"; -$fa-var-eye: "\f06e"; -$fa-var-eye-slash: "\f070"; -$fa-var-eyedropper: "\f1fb"; -$fa-var-fa: "\f2b4"; -$fa-var-facebook: "\f09a"; -$fa-var-facebook-f: "\f09a"; -$fa-var-facebook-official: "\f230"; -$fa-var-facebook-square: "\f082"; -$fa-var-fast-backward: "\f049"; -$fa-var-fast-forward: "\f050"; -$fa-var-fax: "\f1ac"; -$fa-var-feed: "\f09e"; -$fa-var-female: "\f182"; -$fa-var-fighter-jet: "\f0fb"; -$fa-var-file: "\f15b"; -$fa-var-file-archive-o: "\f1c6"; -$fa-var-file-audio-o: "\f1c7"; -$fa-var-file-code-o: "\f1c9"; -$fa-var-file-excel-o: "\f1c3"; -$fa-var-file-image-o: "\f1c5"; -$fa-var-file-movie-o: "\f1c8"; -$fa-var-file-o: "\f016"; -$fa-var-file-pdf-o: "\f1c1"; -$fa-var-file-photo-o: "\f1c5"; -$fa-var-file-picture-o: "\f1c5"; -$fa-var-file-powerpoint-o: "\f1c4"; -$fa-var-file-sound-o: "\f1c7"; -$fa-var-file-text: "\f15c"; -$fa-var-file-text-o: "\f0f6"; -$fa-var-file-video-o: "\f1c8"; -$fa-var-file-word-o: "\f1c2"; -$fa-var-file-zip-o: "\f1c6"; -$fa-var-files-o: "\f0c5"; -$fa-var-film: "\f008"; -$fa-var-filter: "\f0b0"; -$fa-var-fire: "\f06d"; -$fa-var-fire-extinguisher: "\f134"; -$fa-var-firefox: "\f269"; -$fa-var-first-order: "\f2b0"; -$fa-var-flag: "\f024"; -$fa-var-flag-checkered: "\f11e"; -$fa-var-flag-o: "\f11d"; -$fa-var-flash: "\f0e7"; -$fa-var-flask: "\f0c3"; -$fa-var-flickr: "\f16e"; -$fa-var-floppy-o: "\f0c7"; -$fa-var-folder: "\f07b"; -$fa-var-folder-o: "\f114"; -$fa-var-folder-open: "\f07c"; -$fa-var-folder-open-o: "\f115"; -$fa-var-font: "\f031"; -$fa-var-font-awesome: "\f2b4"; -$fa-var-fonticons: "\f280"; -$fa-var-fort-awesome: "\f286"; -$fa-var-forumbee: "\f211"; -$fa-var-forward: "\f04e"; -$fa-var-foursquare: "\f180"; -$fa-var-free-code-camp: "\f2c5"; -$fa-var-frown-o: "\f119"; -$fa-var-futbol-o: "\f1e3"; -$fa-var-gamepad: "\f11b"; -$fa-var-gavel: "\f0e3"; -$fa-var-gbp: "\f154"; -$fa-var-ge: "\f1d1"; -$fa-var-gear: "\f013"; -$fa-var-gears: "\f085"; -$fa-var-genderless: "\f22d"; -$fa-var-get-pocket: "\f265"; -$fa-var-gg: "\f260"; -$fa-var-gg-circle: "\f261"; -$fa-var-gift: "\f06b"; -$fa-var-git: "\f1d3"; -$fa-var-git-square: "\f1d2"; -$fa-var-github: "\f09b"; -$fa-var-github-alt: "\f113"; -$fa-var-github-square: "\f092"; -$fa-var-gitlab: "\f296"; -$fa-var-gittip: "\f184"; -$fa-var-glass: "\f000"; -$fa-var-glide: "\f2a5"; -$fa-var-glide-g: "\f2a6"; -$fa-var-globe: "\f0ac"; -$fa-var-google: "\f1a0"; -$fa-var-google-plus: "\f0d5"; -$fa-var-google-plus-circle: "\f2b3"; -$fa-var-google-plus-official: "\f2b3"; -$fa-var-google-plus-square: "\f0d4"; -$fa-var-google-wallet: "\f1ee"; -$fa-var-graduation-cap: "\f19d"; -$fa-var-gratipay: "\f184"; -$fa-var-grav: "\f2d6"; -$fa-var-group: "\f0c0"; -$fa-var-h-square: "\f0fd"; -$fa-var-hacker-news: "\f1d4"; -$fa-var-hand-grab-o: "\f255"; -$fa-var-hand-lizard-o: "\f258"; -$fa-var-hand-o-down: "\f0a7"; -$fa-var-hand-o-left: "\f0a5"; -$fa-var-hand-o-right: "\f0a4"; -$fa-var-hand-o-up: "\f0a6"; -$fa-var-hand-paper-o: "\f256"; -$fa-var-hand-peace-o: "\f25b"; -$fa-var-hand-pointer-o: "\f25a"; -$fa-var-hand-rock-o: "\f255"; -$fa-var-hand-scissors-o: "\f257"; -$fa-var-hand-spock-o: "\f259"; -$fa-var-hand-stop-o: "\f256"; -$fa-var-handshake-o: "\f2b5"; -$fa-var-hard-of-hearing: "\f2a4"; -$fa-var-hashtag: "\f292"; -$fa-var-hdd-o: "\f0a0"; -$fa-var-header: "\f1dc"; -$fa-var-headphones: "\f025"; -$fa-var-heart: "\f004"; -$fa-var-heart-o: "\f08a"; -$fa-var-heartbeat: "\f21e"; -$fa-var-history: "\f1da"; -$fa-var-home: "\f015"; -$fa-var-hospital-o: "\f0f8"; -$fa-var-hotel: "\f236"; -$fa-var-hourglass: "\f254"; -$fa-var-hourglass-1: "\f251"; -$fa-var-hourglass-2: "\f252"; -$fa-var-hourglass-3: "\f253"; -$fa-var-hourglass-end: "\f253"; -$fa-var-hourglass-half: "\f252"; -$fa-var-hourglass-o: "\f250"; -$fa-var-hourglass-start: "\f251"; -$fa-var-houzz: "\f27c"; -$fa-var-html5: "\f13b"; -$fa-var-i-cursor: "\f246"; -$fa-var-id-badge: "\f2c1"; -$fa-var-id-card: "\f2c2"; -$fa-var-id-card-o: "\f2c3"; -$fa-var-ils: "\f20b"; -$fa-var-image: "\f03e"; -$fa-var-imdb: "\f2d8"; -$fa-var-inbox: "\f01c"; -$fa-var-indent: "\f03c"; -$fa-var-industry: "\f275"; -$fa-var-info: "\f129"; -$fa-var-info-circle: "\f05a"; -$fa-var-inr: "\f156"; -$fa-var-instagram: "\f16d"; -$fa-var-institution: "\f19c"; -$fa-var-internet-explorer: "\f26b"; -$fa-var-intersex: "\f224"; -$fa-var-ioxhost: "\f208"; -$fa-var-italic: "\f033"; -$fa-var-joomla: "\f1aa"; -$fa-var-jpy: "\f157"; -$fa-var-jsfiddle: "\f1cc"; -$fa-var-key: "\f084"; -$fa-var-keyboard-o: "\f11c"; -$fa-var-krw: "\f159"; -$fa-var-language: "\f1ab"; -$fa-var-laptop: "\f109"; -$fa-var-lastfm: "\f202"; -$fa-var-lastfm-square: "\f203"; -$fa-var-leaf: "\f06c"; -$fa-var-leanpub: "\f212"; -$fa-var-legal: "\f0e3"; -$fa-var-lemon-o: "\f094"; -$fa-var-level-down: "\f149"; -$fa-var-level-up: "\f148"; -$fa-var-life-bouy: "\f1cd"; -$fa-var-life-buoy: "\f1cd"; -$fa-var-life-ring: "\f1cd"; -$fa-var-life-saver: "\f1cd"; -$fa-var-lightbulb-o: "\f0eb"; -$fa-var-line-chart: "\f201"; -$fa-var-link: "\f0c1"; -$fa-var-linkedin: "\f0e1"; -$fa-var-linkedin-square: "\f08c"; -$fa-var-linode: "\f2b8"; -$fa-var-linux: "\f17c"; -$fa-var-list: "\f03a"; -$fa-var-list-alt: "\f022"; -$fa-var-list-ol: "\f0cb"; -$fa-var-list-ul: "\f0ca"; -$fa-var-location-arrow: "\f124"; -$fa-var-lock: "\f023"; -$fa-var-long-arrow-down: "\f175"; -$fa-var-long-arrow-left: "\f177"; -$fa-var-long-arrow-right: "\f178"; -$fa-var-long-arrow-up: "\f176"; -$fa-var-low-vision: "\f2a8"; -$fa-var-magic: "\f0d0"; -$fa-var-magnet: "\f076"; -$fa-var-mail-forward: "\f064"; -$fa-var-mail-reply: "\f112"; -$fa-var-mail-reply-all: "\f122"; -$fa-var-male: "\f183"; -$fa-var-map: "\f279"; -$fa-var-map-marker: "\f041"; -$fa-var-map-o: "\f278"; -$fa-var-map-pin: "\f276"; -$fa-var-map-signs: "\f277"; -$fa-var-mars: "\f222"; -$fa-var-mars-double: "\f227"; -$fa-var-mars-stroke: "\f229"; -$fa-var-mars-stroke-h: "\f22b"; -$fa-var-mars-stroke-v: "\f22a"; -$fa-var-maxcdn: "\f136"; -$fa-var-meanpath: "\f20c"; -$fa-var-medium: "\f23a"; -$fa-var-medkit: "\f0fa"; -$fa-var-meetup: "\f2e0"; -$fa-var-meh-o: "\f11a"; -$fa-var-mercury: "\f223"; -$fa-var-microchip: "\f2db"; -$fa-var-microphone: "\f130"; -$fa-var-microphone-slash: "\f131"; -$fa-var-minus: "\f068"; -$fa-var-minus-circle: "\f056"; -$fa-var-minus-square: "\f146"; -$fa-var-minus-square-o: "\f147"; -$fa-var-mixcloud: "\f289"; -$fa-var-mobile: "\f10b"; -$fa-var-mobile-phone: "\f10b"; -$fa-var-modx: "\f285"; -$fa-var-money: "\f0d6"; -$fa-var-moon-o: "\f186"; -$fa-var-mortar-board: "\f19d"; -$fa-var-motorcycle: "\f21c"; -$fa-var-mouse-pointer: "\f245"; -$fa-var-music: "\f001"; -$fa-var-navicon: "\f0c9"; -$fa-var-neuter: "\f22c"; -$fa-var-newspaper-o: "\f1ea"; -$fa-var-object-group: "\f247"; -$fa-var-object-ungroup: "\f248"; -$fa-var-odnoklassniki: "\f263"; -$fa-var-odnoklassniki-square: "\f264"; -$fa-var-opencart: "\f23d"; -$fa-var-openid: "\f19b"; -$fa-var-opera: "\f26a"; -$fa-var-optin-monster: "\f23c"; -$fa-var-outdent: "\f03b"; -$fa-var-pagelines: "\f18c"; -$fa-var-paint-brush: "\f1fc"; -$fa-var-paper-plane: "\f1d8"; -$fa-var-paper-plane-o: "\f1d9"; -$fa-var-paperclip: "\f0c6"; -$fa-var-paragraph: "\f1dd"; -$fa-var-paste: "\f0ea"; -$fa-var-pause: "\f04c"; -$fa-var-pause-circle: "\f28b"; -$fa-var-pause-circle-o: "\f28c"; -$fa-var-paw: "\f1b0"; -$fa-var-paypal: "\f1ed"; -$fa-var-pencil: "\f040"; -$fa-var-pencil-square: "\f14b"; -$fa-var-pencil-square-o: "\f044"; -$fa-var-percent: "\f295"; -$fa-var-phone: "\f095"; -$fa-var-phone-square: "\f098"; -$fa-var-photo: "\f03e"; -$fa-var-picture-o: "\f03e"; -$fa-var-pie-chart: "\f200"; -$fa-var-pied-piper: "\f2ae"; -$fa-var-pied-piper-alt: "\f1a8"; -$fa-var-pied-piper-pp: "\f1a7"; -$fa-var-pinterest: "\f0d2"; -$fa-var-pinterest-p: "\f231"; -$fa-var-pinterest-square: "\f0d3"; -$fa-var-plane: "\f072"; -$fa-var-play: "\f04b"; -$fa-var-play-circle: "\f144"; -$fa-var-play-circle-o: "\f01d"; -$fa-var-plug: "\f1e6"; -$fa-var-plus: "\f067"; -$fa-var-plus-circle: "\f055"; -$fa-var-plus-square: "\f0fe"; -$fa-var-plus-square-o: "\f196"; -$fa-var-podcast: "\f2ce"; -$fa-var-power-off: "\f011"; -$fa-var-print: "\f02f"; -$fa-var-product-hunt: "\f288"; -$fa-var-puzzle-piece: "\f12e"; -$fa-var-qq: "\f1d6"; -$fa-var-qrcode: "\f029"; -$fa-var-question: "\f128"; -$fa-var-question-circle: "\f059"; -$fa-var-question-circle-o: "\f29c"; -$fa-var-quora: "\f2c4"; -$fa-var-quote-left: "\f10d"; -$fa-var-quote-right: "\f10e"; -$fa-var-ra: "\f1d0"; -$fa-var-random: "\f074"; -$fa-var-ravelry: "\f2d9"; -$fa-var-rebel: "\f1d0"; -$fa-var-recycle: "\f1b8"; -$fa-var-reddit: "\f1a1"; -$fa-var-reddit-alien: "\f281"; -$fa-var-reddit-square: "\f1a2"; -$fa-var-refresh: "\f021"; -$fa-var-registered: "\f25d"; -$fa-var-remove: "\f00d"; -$fa-var-renren: "\f18b"; -$fa-var-reorder: "\f0c9"; -$fa-var-repeat: "\f01e"; -$fa-var-reply: "\f112"; -$fa-var-reply-all: "\f122"; -$fa-var-resistance: "\f1d0"; -$fa-var-retweet: "\f079"; -$fa-var-rmb: "\f157"; -$fa-var-road: "\f018"; -$fa-var-rocket: "\f135"; -$fa-var-rotate-left: "\f0e2"; -$fa-var-rotate-right: "\f01e"; -$fa-var-rouble: "\f158"; -$fa-var-rss: "\f09e"; -$fa-var-rss-square: "\f143"; -$fa-var-rub: "\f158"; -$fa-var-ruble: "\f158"; -$fa-var-rupee: "\f156"; -$fa-var-s15: "\f2cd"; -$fa-var-safari: "\f267"; -$fa-var-save: "\f0c7"; -$fa-var-scissors: "\f0c4"; -$fa-var-scribd: "\f28a"; -$fa-var-search: "\f002"; -$fa-var-search-minus: "\f010"; -$fa-var-search-plus: "\f00e"; -$fa-var-sellsy: "\f213"; -$fa-var-send: "\f1d8"; -$fa-var-send-o: "\f1d9"; -$fa-var-server: "\f233"; -$fa-var-share: "\f064"; -$fa-var-share-alt: "\f1e0"; -$fa-var-share-alt-square: "\f1e1"; -$fa-var-share-square: "\f14d"; -$fa-var-share-square-o: "\f045"; -$fa-var-shekel: "\f20b"; -$fa-var-sheqel: "\f20b"; -$fa-var-shield: "\f132"; -$fa-var-ship: "\f21a"; -$fa-var-shirtsinbulk: "\f214"; -$fa-var-shopping-bag: "\f290"; -$fa-var-shopping-basket: "\f291"; -$fa-var-shopping-cart: "\f07a"; -$fa-var-shower: "\f2cc"; -$fa-var-sign-in: "\f090"; -$fa-var-sign-language: "\f2a7"; -$fa-var-sign-out: "\f08b"; -$fa-var-signal: "\f012"; -$fa-var-signing: "\f2a7"; -$fa-var-simplybuilt: "\f215"; -$fa-var-sitemap: "\f0e8"; -$fa-var-skyatlas: "\f216"; -$fa-var-skype: "\f17e"; -$fa-var-slack: "\f198"; -$fa-var-sliders: "\f1de"; -$fa-var-slideshare: "\f1e7"; -$fa-var-smile-o: "\f118"; -$fa-var-snapchat: "\f2ab"; -$fa-var-snapchat-ghost: "\f2ac"; -$fa-var-snapchat-square: "\f2ad"; -$fa-var-snowflake-o: "\f2dc"; -$fa-var-soccer-ball-o: "\f1e3"; -$fa-var-sort: "\f0dc"; -$fa-var-sort-alpha-asc: "\f15d"; -$fa-var-sort-alpha-desc: "\f15e"; -$fa-var-sort-amount-asc: "\f160"; -$fa-var-sort-amount-desc: "\f161"; -$fa-var-sort-asc: "\f0de"; -$fa-var-sort-desc: "\f0dd"; -$fa-var-sort-down: "\f0dd"; -$fa-var-sort-numeric-asc: "\f162"; -$fa-var-sort-numeric-desc: "\f163"; -$fa-var-sort-up: "\f0de"; -$fa-var-soundcloud: "\f1be"; -$fa-var-space-shuttle: "\f197"; -$fa-var-spinner: "\f110"; -$fa-var-spoon: "\f1b1"; -$fa-var-spotify: "\f1bc"; -$fa-var-square: "\f0c8"; -$fa-var-square-o: "\f096"; -$fa-var-stack-exchange: "\f18d"; -$fa-var-stack-overflow: "\f16c"; -$fa-var-star: "\f005"; -$fa-var-star-half: "\f089"; -$fa-var-star-half-empty: "\f123"; -$fa-var-star-half-full: "\f123"; -$fa-var-star-half-o: "\f123"; -$fa-var-star-o: "\f006"; -$fa-var-steam: "\f1b6"; -$fa-var-steam-square: "\f1b7"; -$fa-var-step-backward: "\f048"; -$fa-var-step-forward: "\f051"; -$fa-var-stethoscope: "\f0f1"; -$fa-var-sticky-note: "\f249"; -$fa-var-sticky-note-o: "\f24a"; -$fa-var-stop: "\f04d"; -$fa-var-stop-circle: "\f28d"; -$fa-var-stop-circle-o: "\f28e"; -$fa-var-street-view: "\f21d"; -$fa-var-strikethrough: "\f0cc"; -$fa-var-stumbleupon: "\f1a4"; -$fa-var-stumbleupon-circle: "\f1a3"; -$fa-var-subscript: "\f12c"; -$fa-var-subway: "\f239"; -$fa-var-suitcase: "\f0f2"; -$fa-var-sun-o: "\f185"; -$fa-var-superpowers: "\f2dd"; -$fa-var-superscript: "\f12b"; -$fa-var-support: "\f1cd"; -$fa-var-table: "\f0ce"; -$fa-var-tablet: "\f10a"; -$fa-var-tachometer: "\f0e4"; -$fa-var-tag: "\f02b"; -$fa-var-tags: "\f02c"; -$fa-var-tasks: "\f0ae"; -$fa-var-taxi: "\f1ba"; -$fa-var-telegram: "\f2c6"; -$fa-var-television: "\f26c"; -$fa-var-tencent-weibo: "\f1d5"; -$fa-var-terminal: "\f120"; -$fa-var-text-height: "\f034"; -$fa-var-text-width: "\f035"; -$fa-var-th: "\f00a"; -$fa-var-th-large: "\f009"; -$fa-var-th-list: "\f00b"; -$fa-var-themeisle: "\f2b2"; -$fa-var-thermometer: "\f2c7"; -$fa-var-thermometer-0: "\f2cb"; -$fa-var-thermometer-1: "\f2ca"; -$fa-var-thermometer-2: "\f2c9"; -$fa-var-thermometer-3: "\f2c8"; -$fa-var-thermometer-4: "\f2c7"; -$fa-var-thermometer-empty: "\f2cb"; -$fa-var-thermometer-full: "\f2c7"; -$fa-var-thermometer-half: "\f2c9"; -$fa-var-thermometer-quarter: "\f2ca"; -$fa-var-thermometer-three-quarters: "\f2c8"; -$fa-var-thumb-tack: "\f08d"; -$fa-var-thumbs-down: "\f165"; -$fa-var-thumbs-o-down: "\f088"; -$fa-var-thumbs-o-up: "\f087"; -$fa-var-thumbs-up: "\f164"; -$fa-var-ticket: "\f145"; -$fa-var-times: "\f00d"; -$fa-var-times-circle: "\f057"; -$fa-var-times-circle-o: "\f05c"; -$fa-var-times-rectangle: "\f2d3"; -$fa-var-times-rectangle-o: "\f2d4"; -$fa-var-tint: "\f043"; -$fa-var-toggle-down: "\f150"; -$fa-var-toggle-left: "\f191"; -$fa-var-toggle-off: "\f204"; -$fa-var-toggle-on: "\f205"; -$fa-var-toggle-right: "\f152"; -$fa-var-toggle-up: "\f151"; -$fa-var-trademark: "\f25c"; -$fa-var-train: "\f238"; -$fa-var-transgender: "\f224"; -$fa-var-transgender-alt: "\f225"; -$fa-var-trash: "\f1f8"; -$fa-var-trash-o: "\f014"; -$fa-var-tree: "\f1bb"; -$fa-var-trello: "\f181"; -$fa-var-tripadvisor: "\f262"; -$fa-var-trophy: "\f091"; -$fa-var-truck: "\f0d1"; -$fa-var-try: "\f195"; -$fa-var-tty: "\f1e4"; -$fa-var-tumblr: "\f173"; -$fa-var-tumblr-square: "\f174"; -$fa-var-turkish-lira: "\f195"; -$fa-var-tv: "\f26c"; -$fa-var-twitch: "\f1e8"; -$fa-var-twitter: "\f099"; -$fa-var-twitter-square: "\f081"; -$fa-var-umbrella: "\f0e9"; -$fa-var-underline: "\f0cd"; -$fa-var-undo: "\f0e2"; -$fa-var-universal-access: "\f29a"; -$fa-var-university: "\f19c"; -$fa-var-unlink: "\f127"; -$fa-var-unlock: "\f09c"; -$fa-var-unlock-alt: "\f13e"; -$fa-var-unsorted: "\f0dc"; -$fa-var-upload: "\f093"; -$fa-var-usb: "\f287"; -$fa-var-usd: "\f155"; -$fa-var-user: "\f007"; -$fa-var-user-circle: "\f2bd"; -$fa-var-user-circle-o: "\f2be"; -$fa-var-user-md: "\f0f0"; -$fa-var-user-o: "\f2c0"; -$fa-var-user-plus: "\f234"; -$fa-var-user-secret: "\f21b"; -$fa-var-user-times: "\f235"; -$fa-var-users: "\f0c0"; -$fa-var-vcard: "\f2bb"; -$fa-var-vcard-o: "\f2bc"; -$fa-var-venus: "\f221"; -$fa-var-venus-double: "\f226"; -$fa-var-venus-mars: "\f228"; -$fa-var-viacoin: "\f237"; -$fa-var-viadeo: "\f2a9"; -$fa-var-viadeo-square: "\f2aa"; -$fa-var-video-camera: "\f03d"; -$fa-var-vimeo: "\f27d"; -$fa-var-vimeo-square: "\f194"; -$fa-var-vine: "\f1ca"; -$fa-var-vk: "\f189"; -$fa-var-volume-control-phone: "\f2a0"; -$fa-var-volume-down: "\f027"; -$fa-var-volume-off: "\f026"; -$fa-var-volume-up: "\f028"; -$fa-var-warning: "\f071"; -$fa-var-wechat: "\f1d7"; -$fa-var-weibo: "\f18a"; -$fa-var-weixin: "\f1d7"; -$fa-var-whatsapp: "\f232"; -$fa-var-wheelchair: "\f193"; -$fa-var-wheelchair-alt: "\f29b"; -$fa-var-wifi: "\f1eb"; -$fa-var-wikipedia-w: "\f266"; -$fa-var-window-close: "\f2d3"; -$fa-var-window-close-o: "\f2d4"; -$fa-var-window-maximize: "\f2d0"; -$fa-var-window-minimize: "\f2d1"; -$fa-var-window-restore: "\f2d2"; -$fa-var-windows: "\f17a"; -$fa-var-won: "\f159"; -$fa-var-wordpress: "\f19a"; -$fa-var-wpbeginner: "\f297"; -$fa-var-wpexplorer: "\f2de"; -$fa-var-wpforms: "\f298"; -$fa-var-wrench: "\f0ad"; -$fa-var-xing: "\f168"; -$fa-var-xing-square: "\f169"; -$fa-var-y-combinator: "\f23b"; -$fa-var-y-combinator-square: "\f1d4"; -$fa-var-yahoo: "\f19e"; -$fa-var-yc: "\f23b"; -$fa-var-yc-square: "\f1d4"; -$fa-var-yelp: "\f1e9"; -$fa-var-yen: "\f157"; -$fa-var-yoast: "\f2b1"; -$fa-var-youtube: "\f167"; -$fa-var-youtube-play: "\f16a"; -$fa-var-youtube-square: "\f166"; - diff --git a/web/static/assets/dist/font-awesome/scss/font-awesome.scss b/web/static/assets/dist/font-awesome/scss/font-awesome.scss deleted file mode 100644 index f1c83aa..0000000 --- a/web/static/assets/dist/font-awesome/scss/font-awesome.scss +++ /dev/null @@ -1,18 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ - -@import "variables"; -@import "mixins"; -@import "path"; -@import "core"; -@import "larger"; -@import "fixed-width"; -@import "list"; -@import "bordered-pulled"; -@import "animated"; -@import "rotated-flipped"; -@import "stacked"; -@import "icons"; -@import "screen-reader"; diff --git a/web/static/assets/dist/index.js b/web/static/assets/dist/index.js deleted file mode 100644 index df4d3a2..0000000 --- a/web/static/assets/dist/index.js +++ /dev/null @@ -1 +0,0 @@ -define(["require","exports","knockout","hasher","crossroads","nprogress","stairs"],function(e,n,t,r,o,a,i){"use strict";n.__esModule=!0;var s=function(){function e(){this.Page=t.observable({pattern:"",component:""}),o.normalizeFn=o.NORM_AS_OBJECT,this.addPage(":rest*:","mode",-1/0),this.addPage("settings","settings"),this.addPage("firmware","firmware"),r.initialized.add(function(e){return o.parse(e)}),r.changed.add(function(e){return o.parse(e)}),r.init(),a.configure({parent:"#progress"});var e=i.Stairs.instance(),n=!0;this.progress=t.computed(function(){e.Saving()?a.start():n&&e.Loading()?a.start():(a.done(),n=!1)})}return e.prototype.addPage=function(e,n,r){var a=this,i={pattern:e,component:"page-"+n};t.components.register(i.component,{require:"components/"+i.component}),o.addRoute(e,function(){a.Page(i)},r)},e}();t.applyBindings(new s)}); \ No newline at end of file diff --git a/web/static/assets/dist/log.js b/web/static/assets/dist/log.js deleted file mode 100644 index 1a2a794..0000000 --- a/web/static/assets/dist/log.js +++ /dev/null @@ -1 +0,0 @@ -define(["require","exports"],function(e,o){"use strict";o.__esModule=!0;var n;!function(e){e[e.None=0]="None",e[e.Fatal=1]="Fatal",e[e.Error=2]="Error",e[e.Warning=3]="Warning",e[e.Info=4]="Info",e[e.Verbose=5]="Verbose"}(n=o.LogLevel||(o.LogLevel={}));var l=function(){function e(){}return e.fatal=function(e,o){this.Level>=n.Fatal&&this.log(e,o)},e.error=function(e,o){this.Level>=n.Error&&this.log(e,o)},e.warning=function(e,o){this.Level>=n.Warning&&this.log(e,o)},e.info=function(e,o){this.Level>=n.Info&&this.log(e,o)},e.verbose=function(e,o){this.Level>=n.Verbose&&this.log(e,o)},e.log=function(e,o){switch(typeof o){case"undefined":console.log(e+": undefined");break;case"boolean":case"number":case"string":case"symbol":console.log(e+": "+o);break;default:null===o?console.log(e+": null"):(console.log(e+": (object)"),console.log(o))}},e}();l.Level=n.Verbose,o.Log=l}); \ No newline at end of file diff --git a/web/static/assets/dist/router.js b/web/static/assets/dist/router.js deleted file mode 100644 index 5e68d7b..0000000 --- a/web/static/assets/dist/router.js +++ /dev/null @@ -1 +0,0 @@ -define(["require","exports","hasher","knockout","crossroads"],function(n,r,e,t,o){"use strict";r.__esModule=!0;var u=function(){function n(n){var r=this;this.CurrentRoute=t.observable(null),t.utils.arrayForEach(n.routes,function(n){o.addRoute(n.url,function(e){console.log("changing route"),r.CurrentRoute({url:n.url,component:n.component,params:t.utils.extend(e,n.params)})})}),o.normalizeFn=o.NORM_AS_OBJECT,e.initialized.add(function(n){return o.parse(n)}),e.changed.add(function(n){return o.parse(n)}),e.init()}return n}();r.Router=u}); \ No newline at end of file diff --git a/web/static/assets/dist/stairs.js b/web/static/assets/dist/stairs.js deleted file mode 100644 index 99e6c62..0000000 --- a/web/static/assets/dist/stairs.js +++ /dev/null @@ -1 +0,0 @@ -define(["require","exports","knockout","log"],function(e,t,n,i){"use strict";t.__esModule=!0;var r=null,o=function(){function e(){this.Brightness=n.observable(0),this.Ease=n.observable(!1)}return e.prototype.read=function(e){this.Brightness(e.brightness)},e}();t.StairsStaticMode=o;var a=function(){function e(){this.Brightness=n.observableArray([])}return e.prototype.init=function(e){for(var t=[],i=0;i -var bowerBase = '../../bower_components/'; - -var config: RequireConfig = { - baseUrl: "assets/dist/", - shim: { - 'bootstrap': { - deps: ['jquery', 'tether'], - exports: 'Bootstrap' - } - }, - paths: { - crossroads: bowerBase + 'crossroads/dist/crossroads.min', - hasher: bowerBase + 'hasher/dist/js/hasher.min', - jquery: bowerBase + 'jquery/dist/jquery.min', - knockout: bowerBase + 'knockout/dist/knockout', - signals: bowerBase + 'js-signals/dist/signals.min', - text: bowerBase + 'text/text', - bootstrap: bowerBase + 'bootstrap/dist/js/bootstrap.min', - tether: bowerBase + 'tether/dist/js/tether.min', - nprogress: bowerBase + 'nprogress/nprogress' - } -}; - -// No definition in the typing -(config).wrapShim = true; - -requirejs.config(config); - -(window).Tether = require(['tether'], function() -{ - require(['bootstrap', 'index']); -}); \ No newline at end of file diff --git a/web/static/assets/ts/components/page-firmware.html b/web/static/assets/ts/components/page-firmware.html deleted file mode 100644 index 53a9482..0000000 --- a/web/static/assets/ts/components/page-firmware.html +++ /dev/null @@ -1,26 +0,0 @@ -

-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
- -
-
- -
-
- diff --git a/web/static/assets/ts/components/page-firmware.ts b/web/static/assets/ts/components/page-firmware.ts deleted file mode 100644 index cb96579..0000000 --- a/web/static/assets/ts/components/page-firmware.ts +++ /dev/null @@ -1,19 +0,0 @@ -import template = require('text!./page-firmware.html'); -import ko = require('knockout'); -import stairs = require('stairs'); - -class FirmwareController -{ -// public Stairs = stairs.Stairs.instance(); - public Host = ko.observable(location.hostname); - public Port = ko.observable(location.port); - public Path = ko.observable("/updateFirmware"); - - - public updateFirmware = () => - { - - } -} - -export = { viewModel: FirmwareController, template: template }; \ No newline at end of file diff --git a/web/static/assets/ts/components/page-mode.html b/web/static/assets/ts/components/page-mode.html deleted file mode 100644 index 0cab795..0000000 --- a/web/static/assets/ts/components/page-mode.html +++ /dev/null @@ -1,71 +0,0 @@ -
-
-
- -
-
- -
-
- -
-
-
- - -
-
-
Brightness
-
-
-
-
- -
- -
-
-
Step
-
Value
-
- -
-
-
-
-
-
-
-
-
- -
-
-
Interval
-
-
-
- -
-
Brightness
-
-
-
-
- - \ No newline at end of file diff --git a/web/static/assets/ts/components/page-mode.ts b/web/static/assets/ts/components/page-mode.ts deleted file mode 100644 index 3196167..0000000 --- a/web/static/assets/ts/components/page-mode.ts +++ /dev/null @@ -1,11 +0,0 @@ -import template = require('text!./page-mode.html'); -import ko = require('knockout'); -import stairs = require('stairs'); - -class ModeController -{ - public StairsMode = stairs.StairsMode; - public Stairs = stairs.Stairs.instance(); -} - -export = { viewModel: ModeController, template: template }; \ No newline at end of file diff --git a/web/static/assets/ts/components/page-settings.html b/web/static/assets/ts/components/page-settings.html deleted file mode 100644 index 65c8535..0000000 --- a/web/static/assets/ts/components/page-settings.html +++ /dev/null @@ -1,23 +0,0 @@ -
-
- -
- -
-
Step
-
Start (min. 0)
-
End (max. 4095)
-
- -
-
-
-
-
-
-
- - -
\ No newline at end of file diff --git a/web/static/assets/ts/components/page-settings.ts b/web/static/assets/ts/components/page-settings.ts deleted file mode 100644 index ac069b1..0000000 --- a/web/static/assets/ts/components/page-settings.ts +++ /dev/null @@ -1,24 +0,0 @@ -import template = require('text!./page-settings.html'); -import ko = require('knockout'); -import stairs = require('stairs'); - -class SettingsController -{ - public Stairs = stairs.Stairs.instance(); - - - public resetRanges = (): boolean => - { - this.Stairs.Range.Values(this.Stairs.Range.Values().map((item: stairs.StairsRangeValue): stairs.StairsRangeValue => - { - var value = new stairs.StairsRangeValue(); - value.Start(0); - value.End(4095); - return value; - })); - - return false; - } -} - -export = { viewModel: SettingsController, template: template }; \ No newline at end of file diff --git a/web/static/assets/ts/index.ts b/web/static/assets/ts/index.ts deleted file mode 100644 index 45bc8a6..0000000 --- a/web/static/assets/ts/index.ts +++ /dev/null @@ -1,73 +0,0 @@ -import ko = require('knockout'); -import hasher = require('hasher'); -import crossroads = require('crossroads'); -import NProgress = require('nprogress'); -import stairs = require('stairs'); - - -export interface IPage -{ - pattern: string; - component: string; -} - - - -class IndexController -{ - public Page = ko.observable({ pattern: '', component: '' }); - - private progress: KnockoutComputed; - - - constructor() - { - crossroads.normalizeFn = crossroads.NORM_AS_OBJECT; - - this.addPage(':rest*:', 'mode', -Infinity); - this.addPage('settings', 'settings'); - this.addPage('firmware', 'firmware'); - - hasher.initialized.add((hash: string) => crossroads.parse(hash)); - hasher.changed.add((hash: string) => crossroads.parse(hash)); - hasher.init(); - - NProgress.configure({ - parent: '#progress' - }); - - var instance = stairs.Stairs.instance(); - var initialProgress = true; - - this.progress = ko.computed(() => - { - if (instance.Saving()) - NProgress.start() - else - { - // Only show the progress bar initially, not for later refreshes - if (initialProgress && instance.Loading()) - NProgress.start(); - else - { - NProgress.done(); - initialProgress = false; - } - } - }); - } - - - private addPage(pattern: string, pageName: string, priority?: number): void - { - var page: IPage = { pattern: pattern, component: 'page-' + pageName }; - ko.components.register(page.component, { require: 'components/' + page.component }); - crossroads.addRoute(pattern, () => - { - this.Page(page); - }, priority); - } -} - - -ko.applyBindings(new IndexController()); \ No newline at end of file diff --git a/web/static/assets/ts/log.ts b/web/static/assets/ts/log.ts deleted file mode 100644 index fb2e430..0000000 --- a/web/static/assets/ts/log.ts +++ /dev/null @@ -1,79 +0,0 @@ -export enum LogLevel -{ - None, - Fatal, - Error, - Warning, - Info, - Verbose -} - - -export class Log -{ - public static Level = LogLevel.Verbose; - - - public static fatal(context: string, message: any): void - { - if (this.Level >= LogLevel.Fatal) - this.log(context, message); - } - - - public static error(context: string, message: any): void - { - if (this.Level >= LogLevel.Error) - this.log(context, message); - } - - - public static warning(context: string, message: any): void - { - if (this.Level >= LogLevel.Warning) - this.log(context, message); - } - - - public static info(context: string, message: any): void - { - if (this.Level >= LogLevel.Info) - this.log(context, message); - } - - - public static verbose(context: string, message: any): void - { - if (this.Level >= LogLevel.Verbose) - this.log(context, message); - } - - - private static log(context: string, message: any): void - { - switch (typeof(message)) - { - case 'undefined': - console.log(context + ': undefined'); - break; - - case 'boolean': - case 'number': - case 'string': - case 'symbol': - console.log(context + ': ' + message); - break; - - default: - if (message === null) - console.log(context + ': null'); - else - { - console.log(context + ': (object)'); - console.log(message); - } - - break; - } - } -} \ No newline at end of file diff --git a/web/static/assets/ts/stairs.ts b/web/static/assets/ts/stairs.ts deleted file mode 100644 index cb60384..0000000 --- a/web/static/assets/ts/stairs.ts +++ /dev/null @@ -1,389 +0,0 @@ -import jquery = require('jquery'); -import ko = require('knockout'); -import { Log } from 'log'; - - -var instance: Stairs = null; - - -export class StairsStaticMode -{ - public Brightness = ko.observable(0); - public Ease = ko.observable(false); - - public read(data: any): void - { - this.Brightness(data.brightness); - } -} - -export interface IStairsCustomBrightness -{ - value: KnockoutObservable; -} - -export class StairsCustomMode -{ - public Brightness = ko.observableArray([]); - - public init(stepCount: number): void - { - // Each item is an object containing an observable; we can't - // add the observable directly otherwise the foreach template - // will unwrap it before we can attach it to the range input. - var values: Array = []; - for (var index = 0; index < stepCount; index++) - values.push({ value: ko.observable(0) }); - - this.Brightness(values); - } - - public read(data: any): void - { - var brightness = data.brightness.map((item: number): IStairsCustomBrightness => - { - return { value: ko.observable(item) }; - }); - - brightness.reverse(); - this.Brightness(brightness); - } -} - -export class StairsAlternateMode -{ - public Interval = ko.observable(500); - public Brightness = ko.observable(0); - - public read(data: any): void - { - this.Interval(data.interval); - this.Brightness(data.brightness); - } -} - - -export enum StairsMode -{ - Unknown = 0, - Static = 1, - Custom = 2, - Alternate = 3 -} - -export class StairsModeParameters -{ - public Static = new StairsStaticMode(); - public Custom = new StairsCustomMode(); - public Alternate = new StairsAlternateMode(); - - public Current = ko.observable(StairsMode.Unknown); - - - public read(data: any): void - { - switch (this.Current()) - { - case StairsMode.Static: this.Static.read(data); break; - case StairsMode.Custom: this.Custom.read(data); break; - case StairsMode.Alternate: this.Alternate.read(data); break; - } - } -} - - -export class StairsRangeValue -{ - public Start = ko.observable(0); - public End = ko.observable(4095); -} - - -export class StairsRange -{ - public UseScaling = ko.observable(false); - public Values = ko.observableArray([]); - - public read(data: any): void - { - this.UseScaling(data.useScaling); - - var values = data.values.map((item: any): StairsRangeValue => - { - var value = new StairsRangeValue(); - value.Start(item.start); - value.End(item.end); - - return value; - }); - - values.reverse(); - this.Values(values); - } -} - - -export class Stairs -{ - public Loading = ko.observable(false); - public SavingMode = ko.observable(false); - public SavingSettings = ko.observable(false); - public Saving = ko.pureComputed(() => - { - return this.SavingMode() || this.SavingSettings(); - }); - - public Mode = new StairsModeParameters(); - public Range = new StairsRange(); - - private pingTimer: number = null; - private pingRequest: JQueryXHR = null; - - private updatingFromServer = true; - private updateModeTimeout: number = null; - private updateRangeTimeout: number = null; - - - public static instance(): Stairs - { - if (instance == null) - instance = new Stairs(); - - return instance; - } - - - constructor() - { - this.ping(); - } - - - public ping(): void - { - if (this.pingRequest !== null) - { - Log.verbose('Stairs.ping', 'Ping request already running, skipping'); - return; - } - - if (this.pingTimer !== null) - { - clearTimeout(this.pingTimer); - this.pingTimer = null; - } - - if (this.Loading() || this.Saving()) - { - this.pingTimer = setTimeout(() => this.ping(), 5000); - return; - } - - Log.verbose('Stairs.ping', 'Starting Ping request'); - this.updatingFromServer = true; - this.Loading(true); - - this.pingRequest = $.ajax({ - url: '/ping', - dataType: 'json', - cache: false - }); - - this.pingRequest.done((data: any) => - { - Log.verbose('Stairs.ping', data); - - this.Mode.Custom.init(data.stepCount); - $.when(this.getMode(), this.getRange()) - .done(() => this.pingComplete(true)) - .fail(() => this.pingComplete(false)); - }); - - this.pingRequest.fail(() => - { - Log.warning('Stairs.ping', 'Ping failed'); - this.pingComplete(true); - }); - } - - - private pingComplete(success: boolean) - { - this.pingRequest = null; - - if (success) - //this.pingTimer = setTimeout(() => this.ping(), 5000); - {} - else - this.pingTimer = setTimeout(() => this.ping(), 5000); - - if (success) - { - this.Loading(false); - this.updatingFromServer = false; - } - } - - - private getMode(): JQueryPromise - { - Log.verbose('Stairs.getMode', 'Requesting Mode'); - - var request = $.ajax({ - url: '/getMode', - dataType: 'json', - cache: false - }); - - request.done((response) => - { - Log.verbose('Stairs.getMode', response); - - this.Mode.Current(response.mode); - this.Mode.read(response.data); - }); - - return request; - } - - - private getRange(): JQueryPromise - { - Log.verbose('Stairs.getRange', 'Requesting Range configuration'); - - var request = $.ajax({ - url: '/getRange', - dataType: 'json', - cache: false - }); - - request.done((response) => - { - Log.verbose('Stairs.getRange', response); - - this.Range.read(response); - }); - - return request; - } - - - private updateMode = ko.computed(() => - { - if (this.Loading() || this.SavingMode.peek()) return; - - var url = '/setMode/'; - switch (this.Mode.Current()) - { - case StairsMode.Static: - url += 'Static?brightness=' + encodeURIComponent(this.Mode.Static.Brightness().toString()); - break; - - case StairsMode.Custom: - var values = this.Mode.Custom.Brightness().map((item: IStairsCustomBrightness) => { return item.value(); }); - values.reverse(); - url += 'Custom?brightness=' + encodeURIComponent(values.join()); - break; - - case StairsMode.Alternate: - url += 'Alternate?interval=' + encodeURIComponent(this.Mode.Alternate.Interval().toString()) + - '&brightness=' + encodeURIComponent(this.Mode.Alternate.Brightness().toString()); - break; - -/* - case 'Slide': - url += '?interval=' + encodeURIComponent(this.slide.interval()) + - '&brightness=' + encodeURIComponent(this.slide.brightness()) + - '&direction=' + encodeURIComponent(this.slide.direction()) + - '&fadeOutTime=' + encodeURIComponent(this.slide.fadeOutTime()); - break; -*/ - } - - - // Exit after checking all the parameters, so the observers - // are properly subscribed - if (this.updatingFromServer) return; - - if (this.updateModeTimeout !== null) - { - clearTimeout(this.updateModeTimeout); - this.updateModeTimeout = null; - } - - this.updateModeTimeout = setTimeout(() => - { - Log.info("Stairs.updateMode", url); - - // TODO retry on failure - this.SavingMode(true); - - $.ajax( - { - url: url, - dataType: 'json', - cache: false - }) - .always(() => - { - this.SavingMode(false); - }); - - clearTimeout(this.updateModeTimeout); - this.updateModeTimeout = null; - }, 200); - - return true; - }); - - - private updateSettings = ko.computed(() => - { - if (this.Loading() || this.SavingSettings.peek()) return; - - var url = '/setRange?useScaling=' + this.Range.UseScaling().toString(); - - var start = this.Range.Values().map((item: StairsRangeValue): number => { return item.Start(); }); - var end = this.Range.Values().map((item: StairsRangeValue): number => { return item.End(); }); - - start.reverse(); - end.reverse(); - - url += '&start=' + encodeURIComponent(start.join()); - url += '&end=' + encodeURIComponent(end.join()); - - // Exit after checking all the parameters, so the observers - // are properly subscribed - if (this.updatingFromServer) return; - - if (this.updateRangeTimeout !== null) - { - clearTimeout(this.updateRangeTimeout); - this.updateRangeTimeout = null; - } - - this.updateRangeTimeout = setTimeout(() => - { - Log.info("Stairs.updateSettings", url); - - // TODO retry on failure - this.SavingSettings(true); - - $.ajax( - { - url: url, - dataType: 'json', - cache: false - }) - .always(() => - { - this.SavingSettings(false); - }); - - clearTimeout(this.updateRangeTimeout); - this.updateRangeTimeout = null; - }, 200); - - return true; - }); -} \ No newline at end of file diff --git a/web/static/assets/ts/text.ts b/web/static/assets/ts/text.ts deleted file mode 100644 index c3bade7..0000000 --- a/web/static/assets/ts/text.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare module 'text!*' { - var _: string; - export default _; -} \ No newline at end of file diff --git a/web/static/index.html b/web/static/index.html deleted file mode 100644 index 9914776..0000000 --- a/web/static/index.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - Stairs frontend - - - - - - - - - - - - - - \ No newline at end of file diff --git a/web/typings.json b/web/typings.json deleted file mode 100644 index 3d66f59..0000000 --- a/web/typings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "dependencies": { - "crossroads": "registry:dt/crossroads#0.0.0+20160628004037", - "hasher": "registry:dt/hasher#0.0.0+20170105185230", - "knockout": "registry:npm/knockout#3.4.0+20160516171930", - "requirejs": "registry:npm/requirejs#2.2.0+20160319062357" - } -} From d9ae78ba0787731f85a8ad56d0ea26fcd1b4e10e Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Mon, 1 Jan 2018 21:00:56 +0100 Subject: [PATCH 02/43] Added basis for firmware uploading --- src/server/firmware.cpp | 55 +++++++++++++++++++++++++++++++++++++++++ src/server/firmware.h | 13 ++++++++++ web/app.js | 5 ++++ web/dist/bundle.js | 2 +- web/index.html | 15 +++++++++++ web/lang.js | 14 +++++++++-- 6 files changed, 101 insertions(+), 3 deletions(-) create mode 100644 src/server/firmware.cpp create mode 100644 src/server/firmware.h diff --git a/src/server/firmware.cpp b/src/server/firmware.cpp new file mode 100644 index 0000000..e99ccf8 --- /dev/null +++ b/src/server/firmware.cpp @@ -0,0 +1,55 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "firmware.h" +#include "../debug.h" +#include "../global.h" + + +void handleFileUpload(AsyncWebServerRequest *request, const String& filename, size_t index, uint8_t *data, size_t len, bool final) +{ + _d("Firmware :: handleFileUpload: index = "); _d(index); + _d(", len = "); _d(len); + _d(", final = "); _dln(final); + + uint32_t maxSketchSpace = (ESP.getFreeSketchSpace() - 0x1000) & 0xFFFFF000; + if (index == 0) + { + if (Update.begin(maxSketchSpace)) + Update.runAsync(true); + else + _dln("Firmware :: failed to start"); + } + + if (Update.write(data, len) == len) + { + if(final) + { + #ifdef SerialDebug + + if (Update.end(true)) + Serial.println("Update succesful!"); + else + Update.printError(Serial); + + #else + + Update.end(true); + + #endif + } + } + #ifdef SerialDebug + else + Update.printError(Serial); + #endif +} + + +void registerFirmwareRoutes(AsyncWebServer* server) +{ + server.onFileUpload(handleFileUpload); +} \ No newline at end of file diff --git a/src/server/firmware.h b/src/server/firmware.h new file mode 100644 index 0000000..54a79d7 --- /dev/null +++ b/src/server/firmware.h @@ -0,0 +1,13 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __server_firmware +#define __server_firmware +#include + +void registerFirmwareRoutes(AsyncWebServer* server); + +#endif \ No newline at end of file diff --git a/web/app.js b/web/app.js index 0f9421c..0e46695 100644 --- a/web/app.js +++ b/web/app.js @@ -242,6 +242,11 @@ function startApp() { console.log(error); }); + }, + + uploadFirmware: function() + { + // } } }); diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 6ded72a..2f6a6c4 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Dr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=F(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function Lt(t){return t&&(t.Ctor.options.name||t.tag)}function It(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Dt(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Lt(a.componentOptions);s&&!e(s)&&Ft(n,o,r,i)}}}function Ft(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Hr=t,zr=Wr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Vr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Hr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function $e(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ii?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ii,l=a,f=o.length):e===Di?u>0&&(n=Di,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ii:Di:null)?n===Ii?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ii&&Bi.test(r[Fi+"Property"])}}function Ae(t,e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Oe(e)}function Ie(t,e,n){De(t,e,n),(Pn||Rn)&&setTimeout(function(){De(t,e,n)},0)}function De(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function Fe(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function He(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:To;return t.replace(n,function(t){return Oo[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),$n=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),xn=/\B([A-Z])/g,kn=p(function(t){return t.replace(xn,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",On=["component","directive","filter"],Tn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:Tn},En=/[^\w.$]/,Ln="__proto__"in{},In="undefined"!=typeof window,Dn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Fn=Dn&&WXEnvironment.platform.toLowerCase(),Nn=In&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Fn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Fn,Hn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Vn=!1;if(In)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!In&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=In&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);qn="undefined"!=typeof Set&&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&$r[n].id>t.id;)n--;$r.splice(n+1,0,t)}else $r.push(t);Cr||(Cr=!0,z(ut))}}(this)},Tr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Tr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Tr.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Tr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(At.prototype);var Lr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Lr.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ft(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:F,defineReactive:O},t.set=T,t.delete=j,t.nextTick=z,t.options=Object.create(null),On.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=F(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=F(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,On.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,On.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Hr,Vr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",$i={create:de,update:de},xi={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Ti(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Vi),v(Et.options.components,Ji),Et.prototype.__patch__=In?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Tr(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&In?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Lo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for(x=t.slice(v);!(co.test(x)||ao.test(x)||lo.test(x)||fo.test(x)||(k=x.indexOf("<",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=""),e.chars&&$&&e.chars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===L&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=F[l])[i]||s.else||D)===D)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status"},triggers:{tabTitle:"Triggers",timeTitle:"Time",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,loadingIndicator:"|",activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},steps:[{value:50},{value:0},{value:0},{value:0},{value:0},{value:70},{value:0},{value:0},{value:0},{value:0},{value:25},{value:0},{value:0},{value:0}]},created:function(){var e=this;document.title=t.t("title"),e.startLoadingIndicator(),e.updateWiFiStatus(),setInterval(e.updateWiFiStatus,5e3),axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)})]).then(axios.spread(function(t,n){e.stopLoadingIndicator(),e.loading=!1}))},methods:{applyConnection:function(){var t=this;t.saving||(t.saving=!0,axios.post("/api/connection",{hostname:t.connection.hostname,accesspoint:t.connection.accesspoint,station:t.connection.station,ssid:t.connection.ssid,password:t.connection.password,dhcp:t.connection.dhcp,ip:t.connection.ip,subnetmask:t.connection.subnetmask,gateway:t.connection.gateway}).then(function(t){}).catch(function(t){console.log(t)}).then(function(){t.saving=!1}))},startLoadingIndicator:function(){var t=this;t.loadingStage=0,t.loadingTimer=setInterval(function(){switch(t.loadingStage++,console.log(t.loadingStage),t.loadingStage){case 1:t.loadingIndicator="/";break;case 2:t.loadingIndicator="-";break;case 3:t.loadingIndicator="\\";break;case 4:t.loadingIndicator="|",t.loadingStage=0}},250)},stopLoadingIndicator:function(){clearInterval(this.loadingTimer)},getWiFiStationStatus:function(){if(!this.wifiStatus.station.enabled)return"disconnected";switch(this.wifiStatus.station.status){case 0:case 2:return"connecting";case 1:case 4:case 5:return"error";case 3:return"connected";case 6:default:return"disconnected"}},getWiFiStationStatusText:function(){if(!this.wifiStatus.station.enabled)return t.t("wifiStatus.stationmode.disabled");switch(this.wifiStatus.station.status){case 0:return t.t("wifiStatus.stationmode.idle");case 1:return t.t("wifiStatus.stationmode.noSSID");case 2:return t.t("wifiStatus.stationmode.scanCompleted");case 3:return this.wifiStatus.station.ip;case 4:return t.t("wifiStatus.stationmode.connectFailed");case 5:return t.t("wifiStatus.stationmode.connectionLost");case 6:default:return t.t("wifiStatus.stationmode.disconnected")}},updateWiFiStatus:function(){var t=this;t.saving||axios.get("/api/connection/status").then(function(e){"object"==typeof e.data&&(t.wifiStatus=e.data)}).catch(function(t){console.log(t)})}}})} \ No newline at end of file +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function Lt(t){return t&&(t.Ctor.options.name||t.tag)}function It(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Ft(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Lt(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Hr=t,zr=Wr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Vr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Hr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function $e(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ii?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ii,l=a,f=o.length):e===Fi?u>0&&(n=Fi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ii:Fi:null)?n===Ii?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ii&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Oe(e)}function Ie(t,e,n){Fe(t,e,n),(Pn||Rn)&&setTimeout(function(){Fe(t,e,n)},0)}function Fe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function He(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:To;return t.replace(n,function(t){return Oo[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),$n=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),xn=/\B([A-Z])/g,kn=p(function(t){return t.replace(xn,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",On=["component","directive","filter"],Tn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:Tn},En=/[^\w.$]/,Ln="__proto__"in{},In="undefined"!=typeof window,Fn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=Fn&&WXEnvironment.platform.toLowerCase(),Nn=In&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Dn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Dn,Hn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Vn=!1;if(In)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!In&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=In&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);qn="undefined"!=typeof Set&&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&$r[n].id>t.id;)n--;$r.splice(n+1,0,t)}else $r.push(t);Cr||(Cr=!0,z(ut))}}(this)},Tr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Tr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Tr.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Tr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(At.prototype);var Lr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Lr.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:D,defineReactive:O},t.set=T,t.delete=j,t.nextTick=z,t.options=Object.create(null),On.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,On.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,On.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Hr,Vr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",$i={create:de,update:de},xi={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Ti(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Vi),v(Et.options.components,Ji),Et.prototype.__patch__=In?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Tr(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&In?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Lo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for(x=t.slice(v);!(co.test(x)||ao.test(x)||lo.test(x)||fo.test(x)||(k=x.indexOf("<",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=""),e.chars&&$&&e.chars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===L&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status"},triggers:{tabTitle:"Triggers",timeTitle:"Time",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,loadingIndicator:"|",activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},steps:[{value:50},{value:0},{value:0},{value:0},{value:0},{value:70},{value:0},{value:0},{value:0},{value:0},{value:25},{value:0},{value:0},{value:0}]},created:function(){var e=this;document.title=t.t("title"),e.startLoadingIndicator(),e.updateWiFiStatus(),setInterval(e.updateWiFiStatus,5e3),axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)})]).then(axios.spread(function(t,n){e.stopLoadingIndicator(),e.loading=!1}))},methods:{applyConnection:function(){var t=this;t.saving||(t.saving=!0,axios.post("/api/connection",{hostname:t.connection.hostname,accesspoint:t.connection.accesspoint,station:t.connection.station,ssid:t.connection.ssid,password:t.connection.password,dhcp:t.connection.dhcp,ip:t.connection.ip,subnetmask:t.connection.subnetmask,gateway:t.connection.gateway}).then(function(t){}).catch(function(t){console.log(t)}).then(function(){t.saving=!1}))},startLoadingIndicator:function(){var t=this;t.loadingStage=0,t.loadingTimer=setInterval(function(){switch(t.loadingStage++,console.log(t.loadingStage),t.loadingStage){case 1:t.loadingIndicator="/";break;case 2:t.loadingIndicator="-";break;case 3:t.loadingIndicator="\\";break;case 4:t.loadingIndicator="|",t.loadingStage=0}},250)},stopLoadingIndicator:function(){clearInterval(this.loadingTimer)},getWiFiStationStatus:function(){if(!this.wifiStatus.station.enabled)return"disconnected";switch(this.wifiStatus.station.status){case 0:case 2:return"connecting";case 1:case 4:case 5:return"error";case 3:return"connected";case 6:default:return"disconnected"}},getWiFiStationStatusText:function(){if(!this.wifiStatus.station.enabled)return t.t("wifiStatus.stationmode.disabled");switch(this.wifiStatus.station.status){case 0:return t.t("wifiStatus.stationmode.idle");case 1:return t.t("wifiStatus.stationmode.noSSID");case 2:return t.t("wifiStatus.stationmode.scanCompleted");case 3:return this.wifiStatus.station.ip;case 4:return t.t("wifiStatus.stationmode.connectFailed");case 5:return t.t("wifiStatus.stationmode.connectionLost");case 6:default:return t.t("wifiStatus.stationmode.disconnected")}},updateWiFiStatus:function(){var t=this;t.saving||axios.get("/api/connection/status").then(function(e){"object"==typeof e.data&&(t.wifiStatus=e.data)}).catch(function(t){console.log(t)})},uploadFirmware:function(){}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 1e9d39d..4d9adf8 100644 --- a/web/index.html +++ b/web/index.html @@ -36,6 +36,7 @@ +
@@ -105,6 +106,20 @@
+ +
+
+
+

{{ $t('firmware.title') }}

+ + + +
+ +
+
+
+
diff --git a/web/lang.js b/web/lang.js index 01a9d49..72b4579 100644 --- a/web/lang.js +++ b/web/lang.js @@ -59,6 +59,11 @@ var messages = { gateway: 'Gateway', hostname: 'Hostname', hostnamePlaceholder: 'Default: mac address' + }, + + firmware: { + tabTitle: 'Firmware', + title: 'Firmware update' } }, @@ -69,8 +74,8 @@ var messages = { copyright: 'Copyright © 2017 Mark van Renswoude', loading: 'Een ogenblik geduld, bezig met laden van configuratie...', - applyButton: 'Apply', - applyButtonSaving: 'Saving...', + applyButton: 'Toepassen', + applyButtonSaving: 'Bezig met opslaan...', wifiStatus: { accesspoint: { @@ -122,6 +127,11 @@ var messages = { gateway: 'Gateway', hostname: 'Hostnaam', hostnamePlaceholder: 'Standaard: mac adres' + }, + + firmware: { + tabTitle: 'Firmware', + title: 'Firmware bijwerken' } } } \ No newline at end of file From 0aca40c71e3aa365ded66aba2054aae8a3544035 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Wed, 3 Jan 2018 21:44:34 +0100 Subject: [PATCH 03/43] Fixed firmware uploading GZipped HTML, JS and CSS Added gulp task for copying firmware binary to bin folder --- .gitignore | 1 + gulpfile.js | 62 +- package.json | 1 + src/assets/css.h | 236 +-- src/assets/html.h | 145 +- src/assets/images.h | 32 - src/assets/js.h | 3361 ++++++++++++++++++++++++--------------- src/assets/version.h | 8 +- src/debug.cpp | 3 +- src/global.cpp | 2 + src/global.h | 3 + src/main.cpp | 25 + src/server/firmware.cpp | 73 +- src/server/static.cpp | 20 +- web/app.js | 74 +- web/dist/bundle.js | 2 +- web/index.html | 8 +- 17 files changed, 2559 insertions(+), 1497 deletions(-) delete mode 100644 src/assets/images.h diff --git a/.gitignore b/.gitignore index 1a4aa9d..db3a52d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .pioenvs .piolibdeps +bin *.sublime-workspace node_modules diff --git a/gulpfile.js b/gulpfile.js index 1d9bc71..5d99ce7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -17,12 +17,17 @@ const watch = require('gulp-debounced-watch'); const uglify = require('gulp-uglify'); const concat = require('gulp-concat'); const print = require('gulp-print'); +const path = require('path'); +const gzip = require('gulp-gzip'); const config = { assetsPath: 'web/', distPath: 'web/dist/', - outputPath: 'src/assets/' + outputPath: 'src/assets/', + + firmwareArtifact: '.pioenvs/esp12e/firmware.bin', + firmwareOutputPath: 'bin/' }; @@ -89,9 +94,11 @@ gulp.task('embedHTML', function() minifyCSS: true, minifyJS: true })) + .pipe(gzip({ append: false })) .pipe(cppstringify('html.h', { headerDefineName: '__assets_html', - map: HTMLMap + map: HTMLMap, + byteArray: true })) .pipe(gulp.dest(config.outputPath)); }); @@ -135,9 +142,11 @@ gulp.task('compileJS', function() gulp.task('embedJS', ['compileJS'], function() { return gulp.src([config.distPath + 'bundle.js']) + .pipe(gzip({ append: false })) .pipe(cppstringify('js.h', { headerDefineName: '__assets_js', - map: JSMap + map: JSMap, + byteArray: true })) .pipe(gulp.dest(config.outputPath)); }); @@ -146,16 +155,26 @@ gulp.task('embedJS', ['compileJS'], function() gulp.task('embedCSS', ['compileScss'], function() { return gulp.src([config.distPath + 'bundle.css']) + .pipe(gzip({ append: false })) .pipe(cppstringify('css.h', { headerDefineName: '__embed_css', - map: CSSMap + map: CSSMap, + byteArray: true })) .pipe(gulp.dest(config.outputPath)); }); -gulp.task('embedVersion', function() + +var version = false; +function getVersion(callback) { + if (version !== false) + { + callback(version); + return; + } + var versionData = ''; const cmd = spawn('gitversion'); @@ -174,6 +193,15 @@ gulp.task('embedVersion', function() if (code != 0) return; var version = JSON.parse(versionData); + callback(version); + }); +} + + +gulp.task('embedVersion', function(cb) +{ + getVersion(function(version) + { var headerFile = "#ifndef __assets_version\r\n"; headerFile += "#define __assets_version\r\n\r\n"; headerFile += "const uint8_t VersionMajor = " + version.Major + ";\r\n"; @@ -194,11 +222,29 @@ gulp.task('embedVersion', function() fs.writeFile(config.outputPath + 'version.h', headerFile, function(err) { if (err) throw err; + cb(); }); }); }); +gulp.task('copyBinary', function(cb) +{ + if (!fs.existsSync(config.firmwareOutputPath)) + fs.mkdirSync(config.firmwareOutputPath, '0777', true); + + getVersion(function(version) + { + var target = path.join(config.firmwareOutputPath, version.FullSemVer + '.bin'); + console.log('Target: ' + target); + + var reader = fs.createReadStream(config.firmwareArtifact); + reader.pipe(fs.createWriteStream(target)); + reader.on('end', cb); + }); +}); + + gulp.task('embedAssets', ['embedHTML', 'embedJS', 'embedCSS', 'embedVersion'], function() { }) @@ -238,6 +284,12 @@ var platformio = function(target) { console.log(data.toString().trim()); }); + + cmd.on('exit', function(code) + { + if (code != 0) return; + gulp.start('copyBinary'); + }); } gulp.task('upload', ['embedHTML', 'embedAssets'], function() { platformio('upload'); }); diff --git a/package.json b/package.json index 0731a34..49f7238 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "gulp-clean-css": "^3.9.0", "gulp-concat": "^2.6.1", "gulp-debounced-watch": "^1.0.4", + "gulp-gzip": "^1.4.1", "gulp-htmlmin": "^3.0.0", "gulp-plumber": "^1.1.0", "gulp-print": "^2.0.1", diff --git a/src/assets/css.h b/src/assets/css.h index 12589ae..0e08926 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -3,109 +3,137 @@ #include -const char EmbeddedBundleCSS[] PROGMEM = - "*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;fo" - "nt-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-" - "spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:" - "0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input" - "[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;co" - "lor:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-s" - "pacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform" - ":uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=butto" - "n]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]" - ":focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}." - "button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[typ" - "e=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button" - "[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabl" - "ed]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][dis" - "abled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.butt" - "on-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline," - "input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:foc" - "us,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=b" - "utton].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline" - ":focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=sub" - "mit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.bu" - "tton-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:" - "focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[" - "type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[t" - "ype=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[ty" - "pe=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,butto" - "n.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].but" - "ton-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focu" - "s,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button]." - "button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[" - "type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear" - ":hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disa" - "bled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-c" - "lear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear" - "[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disab" - "led]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]" - ":hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:." - "2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}" - "pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1" - "rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type" - "=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background" - "-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit" - ";height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[" - "type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[typ" - "e=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:ima" - "ge/svg+xml;utf8,') center r" - "ight no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}labe" - "l,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;" - "padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;f" - "ont-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:r" - "elative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{" - "padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-item" - "s:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretc" - "h{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 aut" - "o;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column" - ".column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-" - "offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-le" - "ft:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column" - ".column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-" - "offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{f" - "lex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,." - "row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-w" - "idth:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-w" - "idth:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .co" - "lumn.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .co" - "lumn.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .colum" - "n .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width" - ":40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom" - ":inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{li" - "st-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font" - "-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.butt" - "on,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote" - ",dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{borde" - "r-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{pad" - "ding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h" - "2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6" - "rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font" - "-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line" - "-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{" - "clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{displ" - "ay:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;pa" - "dding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#f" - "ff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;bord" - "er:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin" - "-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}.header .wifistatus{" - "position:absolute;right:0;top:0}.header .wifistatus .indicator{display:inline-block;width:1rem;heigh" - "t:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{ba" - "ckground-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}." - "header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .ind" - "icator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size" - ":10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.v" - "ersion{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}." - "tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-ou" - "tline{background-color:transparent}input[disabled]{cursor:not-allowed;color:grey;background-color:#2" - "62626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5" - "rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:cent" - "er}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;o" - "utline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2re" - "m;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2r" - "em;border-radius:50%;background:#fcf6cf;cursor:pointer}"; +const uint8_t EmbeddedBundleCSS[] PROGMEM = { + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0x99, + 0xda,0x9a,0xb7,0x79,0xc0,0x62,0x6c,0x33,0x63,0xbc,0xb3,0x95,0xe4,0x94,0x43,0x92,0x43,0x0e,0xb9,0x6c, + 0xed,0x41,0x06,0x61,0x54,0x8b,0x91,0x03,0x62,0x3c,0xf3,0x28,0xfe,0x7b,0x5a,0x1f,0x18,0x09,0x04,0x9e, + 0xc9,0x4b,0x55,0xd6,0xb5,0x63,0xd3,0xea,0x6e,0xb5,0xba,0x5b,0xad,0xee,0x16,0x7f,0x74,0x63,0x94,0x31, + 0x5c,0xb9,0xf1,0x01,0x67,0xb4,0xc2,0xed,0x81,0xbe,0x7a,0x35,0xf9,0x8d,0x94,0xc7,0x98,0x94,0x39,0xae, + 0x08,0xeb,0x72,0x76,0x2a,0x74,0xf8,0x81,0x56,0x29,0xae,0x3c,0x80,0xec,0x33,0x5a,0x32,0x0e,0xc6,0x71, + 0x14,0xfa,0xdb,0x4f,0xdd,0x81,0xa6,0x6f,0x6d,0x42,0x0b,0x5a,0xc5,0xf7,0x51,0x10,0x25,0x8f,0x91,0x44, + 0xc9,0xd0,0x89,0x14,0x6f,0xf1,0x3f,0xe9,0x81,0x32,0xea,0x3e,0xfc,0x15,0x17,0x2f,0x98,0x91,0x04,0x39, + 0xff,0xc0,0x0d,0x7e,0x70,0xaf,0xcf,0xee,0x9f,0x2b,0x82,0x0a,0xb7,0x46,0x65,0xed,0xd5,0x30,0x79,0xa6, + 0xcd,0xb0,0xf2,0x23,0x7c,0x92,0xcf,0x17,0x4c,0x8e,0x39,0x8b,0xd7,0x41,0xb0,0x2f,0x30,0x03,0xf1,0xbd, + 0xfa,0x8c,0x12,0x2e,0x9b,0x1f,0xac,0x00,0xa9,0x20,0x25,0xf6,0x72,0x89,0x04,0x64,0xdd,0xa1,0xa0,0xc9, + 0xcf,0x7f,0x37,0x94,0xf1,0xf5,0x09,0xe1,0x0b,0x9c,0xb1,0xd8,0x5f,0x57,0xf8,0xe4,0xd4,0xb4,0x20,0xa9, + 0x73,0xbf,0x09,0xf8,0x67,0x7f,0x42,0xd5,0x91,0x94,0x72,0xfc,0xfa,0x54,0x09,0x4e,0xc1,0xfe,0x8c,0xd2, + 0x94,0xcf,0xb2,0xe2,0x74,0x2b,0x7f,0x0b,0x5f,0x1a,0x6f,0x27,0x2e,0x50,0xcd,0xbc,0x24,0x27,0x45,0xda, + 0x2a,0x4a,0x58,0x2f,0xa3,0xa7,0x38,0xe8,0xfc,0x43,0x03,0xbf,0x4a,0x57,0x7d,0x91,0xf2,0xdc,0xb0,0xef, + 0xec,0xed,0x8c,0x9f,0x25,0xe4,0x87,0x0e,0xaa,0x70,0x8d,0x99,0x01,0xa9,0x9b,0xc3,0x89,0xb0,0x1f,0xed, + 0x01,0x25,0x3f,0x8f,0x15,0x6d,0xca,0xd4,0x53,0x6a,0x0e,0xa2,0x6c,0x2f,0x17,0x15,0xfb,0x2b,0x6d,0x3d, + 0x03,0xdc,0xab,0x50,0x4a,0x9a,0x3a,0xf6,0x37,0x30,0xbc,0x57,0x64,0x59,0x96,0xed,0x93,0xa6,0xaa,0xe1, + 0xf7,0x99,0x92,0x12,0x74,0xb8,0x4f,0x49,0x7d,0x2e,0xd0,0x1b,0xd8,0x5d,0xe8,0x4f,0x2c,0xcc,0xd0,0x3f, + 0x67,0x6f,0x18,0xe0,0x11,0x0c,0xa0,0xd4,0xbc,0xf6,0x9f,0xf8,0xe8,0xd8,0x1c,0x82,0x44,0x37,0x87,0xc2, + 0xeb,0x35,0x19,0x38,0xdc,0x06,0x7b,0x86,0x5f,0x99,0x87,0x0a,0x72,0x2c,0xe3,0x04,0x0b,0x61,0x04,0x24, + 0xc5,0x09,0xad,0x10,0x23,0xb4,0x8c,0x4b,0x5a,0x62,0x09,0x64,0x15,0x78,0x07,0xf8,0xea,0x29,0x6e,0xce, + 0x67,0x5c,0x25,0xa8,0xc6,0xfb,0x4b,0x4e,0x18,0x16,0xb3,0x62,0xc0,0xbc,0x54,0xe8,0xdc,0x2b,0x3c,0xce, + 0x68,0xd2,0xd4,0x6e,0xff,0x94,0xd3,0x17,0x70,0x76,0x63,0xc8,0x18,0x99,0xda,0x45,0x61,0x59,0x06,0x26, + 0x14,0xd2,0x6c,0x53,0x02,0x05,0x9f,0xe0,0x2b,0xa3,0x4e,0x09,0xfa,0x01,0x41,0x61,0xb1,0xb9,0xda,0x5a, + 0xca,0xbc,0x26,0x50,0xb3,0x2f,0x6d,0x18,0x57,0xfd,0xe0,0x7d,0xdf,0xc1,0xc4,0xe8,0x50,0xe0,0xf4,0x87, + 0x3b,0x01,0x4c,0x17,0x68,0x1f,0x94,0x8b,0xb1,0x8f,0x29,0xb9,0x87,0xc1,0x56,0xb9,0x58,0x8a,0x33,0xd4, + 0x14,0x6c,0x4f,0xb9,0x5f,0xb0,0xb7,0xd8,0xdf,0x4e,0x45,0x32,0x2d,0xa5,0xc1,0x75,0x9b,0x4d,0xd0,0x67, + 0xb0,0x97,0x56,0x33,0x6b,0xd1,0x25,0x2e,0xe3,0x65,0xcf,0x59,0x79,0x89,0xc7,0x44,0x3d,0xb3,0x96,0x1f, + 0x73,0x59,0xdc,0xf7,0x1a,0xa4,0xd7,0xaa,0xfa,0xf2,0x94,0x07,0xb8,0x76,0xe8,0x54,0x03,0x0b,0x18,0x72, + 0x79,0x0b,0x08,0x4a,0xf4,0x11,0xc6,0x54,0x72,0xb1,0x7f,0xcf,0xa8,0x82,0x7d,0xbe,0xbf,0x29,0xb9,0xe9, + 0x14,0xe3,0x41,0xdd,0x33,0xec,0x84,0x4b,0x74,0x37,0x97,0x3f,0xeb,0x28,0x37,0xf9,0x59,0x95,0x35,0xe7, + 0x32,0x37,0xb9,0xd9,0x35,0x3b,0xeb,0x3c,0x56,0x7e,0xcb,0x76,0x58,0x8a,0x24,0xf2,0x69,0xc6,0x3e,0x73, + 0xdb,0x77,0x1e,0x6d,0xc1,0x66,0x33,0x9b,0xfb,0x16,0xaf,0x9b,0xf6,0x79,0xc7,0xd6,0xff,0xc0,0x1c,0x56, + 0xa3,0xdd,0x0e,0x0c,0x1f,0x98,0xc1,0x6e,0xc7,0x77,0x84,0x8d,0x1b,0x73,0xb4,0x86,0x99,0x55,0x7a,0xb7, + 0xb0,0x07,0x93,0x02,0xa3,0xb1,0xa9,0x24,0x6c,0x5e,0x81,0x93,0x71,0x73,0xf5,0x93,0xe1,0x91,0xe4,0x62, + 0xfc,0x03,0xbe,0xfa,0xbe,0x60,0x22,0xb8,0xda,0x1d,0x54,0x0e,0xd9,0x9c,0x52,0x27,0x9a,0xa7,0xb9,0xa1, + 0x89,0x9b,0x0e,0x37,0xc3,0xcb,0xa2,0xb5,0x5b,0x8e,0x35,0xc3,0xc9,0xa6,0xe0,0x9b,0x0e,0xa4,0xf1,0xfa, + 0x7d,0xc6,0xb0,0x07,0x0f,0xc1,0xfe,0x56,0xe8,0x18,0x23,0xcd,0xda,0xe8,0x46,0xd8,0xb0,0xf3,0xb9,0x61, + 0x91,0x0f,0x84,0x8c,0x9b,0xfc,0x2d,0x66,0x7a,0x7f,0xb8,0xb8,0xc9,0xdd,0x66,0xb9,0x0f,0x84,0x0a,0x2b, + 0xff,0x56,0xdb,0x4a,0x09,0x4d,0xf5,0x43,0x1c,0x32,0xcb,0x4d,0xb6,0xcd,0x22,0x6b,0x6d,0x31,0x14,0x0b, + 0x4f,0xd1,0x27,0x55,0x3c,0x41,0x8a,0xef,0x87,0x7a,0xca,0x2f,0x9e,0x1c,0x51,0x3c,0xd9,0xf2,0xf6,0x73, + 0xb5,0x34,0xdd,0xb4,0x6e,0xe3,0x79,0x10,0x97,0x39,0x2b,0xe8,0xc5,0x7b,0x8b,0x73,0x92,0xa6,0xb8,0xe4, + 0x5c,0xbe,0x49,0xc9,0x0d,0x31,0x83,0x6b,0x91,0x23,0xab,0x1b,0x4b,0x41,0x67,0xc8,0x04,0x6c,0xba,0xbc, + 0x8f,0x9b,0x40,0xad,0xb8,0x31,0x7a,0x36,0x8b,0x2d,0x25,0xa4,0x5a,0xb1,0x10,0x2f,0xe8,0x34,0xa5,0xe3, + 0x13,0x22,0x85,0x91,0x2a,0x97,0xcd,0xe9,0x80,0x2b,0x03,0x74,0x46,0x75,0x7d,0x81,0x09,0xcc,0x94,0x1a, + 0xcc,0x93,0xe4,0x06,0x88,0xe1,0x62,0xf4,0xfc,0x6a,0x16,0x8b,0x4d,0x05,0x08,0x35,0x2e,0x70,0xc2,0x5c, + 0x3e,0x08,0x3b,0x12,0xb5,0x08,0x8a,0x25,0x04,0x1b,0x54,0x68,0x1a,0x6a,0xa9,0x77,0x6c,0x6b,0x73,0x8d, + 0xaa,0x40,0xb6,0xd9,0x5d,0x34,0x07,0x72,0x94,0xd2,0x8b,0xe2,0x3d,0x69,0x22,0xec,0xed,0xe5,0x9f,0x1f, + 0x09,0xc5,0x0b,0xb5,0x93,0x94,0xe5,0xf1,0x2a,0x08,0x3e,0x4d,0x15,0x37,0xf5,0x62,0xa5,0xbe,0xe9,0xc0, + 0x55,0x89,0x16,0xcf,0x97,0xaa,0x9c,0x0e,0x70,0x85,0xda,0xa0,0xaf,0xb6,0xda,0x8c,0x2b,0x57,0x41,0xa5, + 0x8a,0xd5,0x43,0xaf,0x68,0xf9,0xd8,0x4e,0x52,0x73,0xad,0x1a,0x93,0x74,0xba,0x97,0x03,0xd3,0x5f,0x1e, + 0x52,0xc4,0x50,0x4c,0x4e,0xe8,0x88,0xbf,0xd4,0x2f,0xc7,0x5f,0x5f,0x4f,0xc5,0xbe,0x61,0xd9,0x93,0xfb, + 0x15,0x9e,0x1c,0x78,0x2a,0xeb,0xe7,0xbb,0x9c,0xb1,0x73,0xfc,0xe5,0xcb,0xe5,0x72,0xf1,0x2f,0x6b,0x9f, + 0x56,0xc7,0x2f,0x61,0x10,0x04,0x1c,0xff,0xce,0x91,0x2a,0x7e,0xbe,0x5b,0x6d,0xee,0x9c,0x17,0x82,0x2f, + 0x7f,0xa1,0xaf,0xcf,0x77,0x81,0x13,0x38,0xe1,0xce,0xe1,0x30,0xa1,0xe1,0xe7,0xbb,0x70,0x77,0xf7,0xed, + 0xeb,0x19,0xb1,0xdc,0xc9,0x48,0x51,0x3c,0xdf,0xdd,0xa7,0x2b,0xfe,0xb9,0x73,0xd2,0xe7,0xbb,0xbf,0xef, + 0xfc,0xf5,0xe3,0x63,0xf8,0xe8,0xac,0xfd,0x28,0xdc,0x16,0x5b,0x3f,0x78,0x5a,0x6d,0x37,0x4e,0xe4,0xef, + 0xd6,0xdb,0x70,0xfd,0xb7,0xd5,0xce,0xdf,0x6e,0x82,0x75,0x24,0x87,0xef,0xbe,0x7c,0xfb,0xca,0x67,0xfe, + 0xf6,0xf0,0xd9,0x91,0x55,0xbb,0x23,0x1a,0x25,0x4e,0x49,0xbd,0x0a,0x83,0xb7,0xb1,0xde,0xce,0xaa,0x81, + 0xc2,0xf7,0x45,0xa7,0x2b,0x4d,0x3f,0x5b,0xc4,0xc2,0xff,0xbf,0x8a,0xd8,0x1d,0x36,0x69,0x82,0x7e,0x97, + 0x22,0xba,0xeb,0x7e,0x3b,0x91,0xb2,0xef,0x79,0x44,0xb2,0x53,0x54,0xa0,0x03,0x2e,0xdc,0x02,0x1f,0x71, + 0x99,0xb6,0x66,0x1c,0x32,0xba,0x5c,0xb6,0x2e,0x8b,0xd9,0x4e,0x92,0xfc,0x32,0x82,0x8b,0x14,0xce,0x8a, + 0xde,0xd7,0xe4,0x0e,0x1a,0xba,0x54,0x46,0x04,0x4a,0x72,0x9c,0xfc,0x84,0x7d,0x69,0xd6,0xf2,0xb0,0x89, + 0xe9,0x8f,0xab,0x2c,0xb2,0xf1,0xd3,0xf9,0x42,0x50,0x4f,0x3e,0x8d,0x06,0xf5,0xae,0x90,0x12,0x6f,0x13, + 0x98,0x5d,0x33,0x29,0x9c,0x9f,0x00,0x0a,0x02,0x8a,0xaa,0xbd,0x9e,0x03,0xa8,0x61,0x14,0x50,0x5f,0x95, + 0xa4,0xab,0x55,0x68,0xb6,0x82,0xe4,0x23,0xad,0x89,0xe8,0xf8,0x54,0xb8,0x40,0x8c,0xbc,0x60,0x3d,0x32, + 0xf8,0x15,0xbd,0x5c,0x25,0xca,0x0a,0xfc,0xba,0xe7,0x7f,0xbc,0x94,0x54,0xe0,0x53,0x9c,0x08,0xf6,0x5b, + 0x73,0x2a,0x07,0x9e,0x63,0x62,0xfe,0xdf,0x03,0xff,0x54,0x08,0xed,0xa0,0x2b,0xcb,0xe8,0x37,0x5f,0xb2, + 0xb3,0x61,0xf1,0xb3,0xaa,0x15,0x93,0xf3,0x5f,0xb1,0x6c,0x39,0xf5,0x83,0x70,0x3e,0xb4,0xa2,0x9b,0xe5, + 0xc1,0x51,0x72,0xaa,0x85,0xa4,0x5e,0x0d,0x7e,0xc1,0x06,0x1c,0x69,0xca,0x29,0x1a,0x38,0xc7,0x80,0x24, + 0xb7,0x95,0x81,0x24,0x41,0x03,0x4a,0xcd,0x2a,0xcc,0x92,0xdc,0xc0,0x51,0x30,0x6d,0x32,0x04,0xdb,0x8e, + 0x5b,0x53,0xc7,0xea,0x81,0x02,0xcd,0xe9,0xd7,0x3a,0x72,0x4c,0x10,0x29,0x5e,0x39,0xab,0xde,0x76,0x66, + 0x73,0xf4,0x6a,0x49,0x50,0xef,0x58,0xd3,0x3d,0x43,0xf5,0xe5,0xd1,0x2c,0x03,0x5f,0xf5,0x56,0x41,0xab, + 0x73,0x59,0x2d,0x63,0x87,0x26,0x76,0x78,0x03,0x7b,0x6b,0x62,0x6f,0x17,0xb1,0xd7,0x6b,0x77,0x69,0x74, + 0x63,0xf0,0x5a,0xaf,0xfd,0x35,0xfc,0x5b,0x64,0xb8,0x35,0x85,0xdd,0x2e,0x0b,0x1b,0x45,0x4b,0xd3,0x47, + 0x8f,0x06,0xaf,0x28,0xf2,0x23,0xf8,0xb7,0xc8,0xf0,0xd1,0x5c,0xfd,0xe3,0xf2,0xea,0x9f,0x4c,0x61,0x9f, + 0x96,0x85,0xdd,0x99,0xd8,0xbb,0x19,0x6c,0x30,0xae,0x70,0x18,0x1e,0x6b,0xc1,0xb2,0x86,0x87,0xd8,0x29, + 0x42,0x8d,0x22,0x34,0x28,0xe6,0x6c,0x0d,0x46,0x1e,0x28,0xb6,0x06,0xc5,0xcc,0x8a,0x67,0x0c,0x0d,0x16, + 0xbe,0x32,0xea,0xcd,0xab,0x71,0x5b,0xb4,0xf8,0x46,0x13,0x7b,0x63,0x88,0xbd,0x99,0x11,0x7b,0xab,0x51, + 0x6c,0x0d,0x8a,0x39,0x3f,0x89,0x34,0x8a,0xc8,0xa0,0x88,0xe6,0x28,0xec,0x2e,0x05,0xbe,0x34,0x30,0x52, + 0x8e,0xa4,0x73,0x5b,0xf2,0xad,0x47,0x4d,0xdb,0x8f,0x86,0xb6,0xe7,0xfc,0xeb,0x49,0x13,0xfb,0xc9,0x10, + 0x7b,0xce,0xc7,0x76,0x1a,0xc5,0xce,0xa0,0x18,0xfb,0x59,0xff,0xad,0x05,0x58,0x08,0x61,0xd9,0x38,0xbe, + 0x4e,0xd0,0x8d,0x58,0x3b,0x50,0xf4,0xa1,0x76,0x82,0x6f,0x84,0x5d,0x81,0xaf,0xa2,0xee,0x9f,0x4e,0x38, + 0x25,0xc8,0xf9,0x85,0x1f,0xee,0xbd,0xbd,0xe1,0xd0,0xfa,0xdc,0x8a,0x83,0x69,0x74,0x16,0x01,0xc8,0x88, + 0x98,0x9e,0x96,0xe7,0x26,0xa8,0x48,0x7e,0xe1,0xb1,0xd2,0xf9,0x55,0x1c,0x7b,0x9f,0xcd,0x20,0x6c,0x1e, + 0xf7,0x7d,0x0e,0x3d,0x9c,0x94,0x9c,0x53,0xd7,0x21,0xad,0x4e,0xb3,0x5e,0x98,0x74,0x2a,0x1b,0x75,0x91, + 0x59,0xd7,0xa9,0xaa,0x3c,0x2d,0x5c,0x5a,0xb8,0x4d,0xd1,0x16,0xa4,0x86,0xf4,0x83,0xbd,0x15,0xaa,0x36, + 0x50,0xd3,0xf3,0x32,0xe7,0x9a,0x4e,0xa8,0xa8,0x0f,0x44,0x0e,0xd0,0xc1,0x5f,0x2a,0xfe,0x36,0x9c,0x87, + 0x23,0x38,0x71,0x08,0x15,0x90,0x46,0x40,0x1a,0x01,0x69,0x38,0xa4,0x1d,0x12,0x1c,0x69,0x61,0x91,0x11, + 0xc8,0x82,0x8b,0xc7,0x0a,0xf9,0x43,0xe4,0x87,0xd4,0x10,0x07,0x16,0x04,0x89,0x60,0xe1,0x90,0xb2,0x26, + 0x29,0xee,0x4c,0x59,0x13,0x52,0x41,0xf9,0xda,0x8f,0x8d,0x6e,0xd8,0xd2,0xd4,0x4d,0x99,0x5b,0x90,0x91, + 0x2e,0x57,0x7a,0xe6,0x24,0x73,0xa1,0x49,0xa9,0x34,0xa2,0x18,0xdf,0xf3,0xc1,0xb2,0xdd,0x8c,0x1c,0x9b, + 0x0a,0xbb,0xfc,0x1a,0x8a,0xeb,0xf0,0xec,0x42,0xa5,0xe8,0x32,0x5e,0x43,0x73,0x7d,0x9a,0x0c,0x42,0xc9, + 0x40,0x8c,0xf6,0xb9,0x5a,0x7f,0x41,0x66,0x24,0x28,0x2c,0x75,0x59,0xde,0x5e,0xaf,0x57,0x65,0xaa,0xa7, + 0x97,0x60,0x78,0xc5,0x3f,0x43,0xd5,0x2a,0x4b,0x69,0x55,0xb7,0x6a,0x77,0x68,0xdc,0x54,0xc0,0x2d,0xce, + 0x48,0xd5,0x5f,0x48,0x02,0x67,0xfd,0xb1,0x1d,0x59,0x15,0x90,0x87,0xcb,0x4b,0x8e,0xab,0x5d,0x65,0x9a, + 0x49,0x7c,0xd0,0x1d,0x5c,0xc8,0x2f,0x28,0x24,0x4f,0xa3,0x24,0xb5,0x3b,0xb7,0xba,0xe3,0x74,0xf9,0xca, + 0xcd,0x43,0x37,0x5f,0xbb,0xf9,0xc6,0xcd,0xb7,0x6e,0x1e,0xb5,0x37,0x2e,0x6f,0x3d,0x79,0x5d,0x38,0xd2, + 0x9e,0x06,0xea,0xf9,0x6a,0xee,0xb4,0x91,0xf9,0xb2,0x79,0xe3,0x1b,0x76,0x79,0xa8,0xe1,0xac,0xad,0x38, + 0xdb,0x2e,0x5f,0x6b,0x48,0xa1,0xba,0xc0,0x34,0x90,0xd6,0x5d,0xbe,0x31,0x70,0x42,0xcb,0x25,0xa7,0x07, + 0xc5,0x81,0x85,0x14,0xf8,0x6f,0x5b,0x3d,0xb1,0xb7,0x5d,0x90,0x02,0xed,0x76,0x4a,0x0b,0xa4,0x51,0x3b, + 0xa9,0x09,0x46,0xa4,0xc1,0x88,0x68,0xd3,0x91,0xd3,0xb1,0x35,0x93,0x32,0x48,0xc3,0x79,0x7f,0x27,0x23, + 0xaf,0xf2,0x9a,0xbf,0x95,0x8d,0x3d,0x50,0x6d,0xbe,0xe7,0x09,0x3a,0x44,0xb5,0xf8,0xc1,0x79,0xb8,0x76, + 0x45,0x84,0x8f,0x76,0x7e,0x56,0x50,0xc4,0x84,0x6b,0xb4,0xe2,0xa7,0x74,0x28,0x05,0x16,0x6e,0xa0,0xe0, + 0xe2,0x77,0xf7,0xfd,0xc5,0x4b,0xe0,0xf1,0xe7,0x50,0x49,0x88,0xe0,0x23,0x5e,0x06,0xb0,0x5c,0x5c,0x81, + 0xe1,0xb5,0x4b,0x4a,0xfd,0xfd,0x80,0x7f,0xe1,0x2a,0x45,0xe5,0xf2,0x5b,0x00,0xc1,0x79,0x28,0x2b,0x95, + 0x8b,0x88,0xb8,0xa1,0x42,0x73,0x9d,0x54,0x18,0x97,0x0e,0x2a,0x53,0x3d,0x4a,0x3f,0x46,0x4f,0xe7,0xd7, + 0xcf,0xad,0x90,0xa8,0x27,0xe6,0xce,0x24,0x28,0x65,0x99,0x34,0x6c,0xff,0x41,0xb8,0xee,0x7e,0xa8,0x62, + 0xa6,0x0b,0x09,0x03,0xfe,0xd1,0x7d,0xd3,0xa8,0x67,0x56,0xa3,0xce,0x88,0x3c,0xf9,0xcf,0xaf,0xce,0x7d, + 0x96,0x64,0x51,0x72,0xbd,0xb5,0x97,0x7b,0x7b,0xc5,0x07,0x40,0x35,0xef,0x5a,0x87,0x26,0x96,0x06,0x37, + 0x0e,0x1b,0x3d,0x5f,0x97,0x1b,0x97,0x43,0xba,0xce,0xcf,0x31,0x82,0x59,0xdb,0x49,0x99,0xd5,0x8f,0x38, + 0xdc,0x8b,0x06,0xab,0x9b,0x3c,0x44,0xf4,0xec,0x11,0xfd,0x0b,0xc9,0x20,0x18,0x23,0x06,0x85,0xfc,0x95, + 0x1d,0x3a,0xc0,0x7a,0x1a,0x86,0xf7,0xfd,0x3b,0x13,0x72,0xcf,0x5a,0x68,0x1c,0x9f,0x94,0x29,0x49,0x10, + 0xa3,0x95,0xbd,0xc8,0x54,0x6e,0xcc,0xd5,0xd8,0x3b,0xb9,0x54,0xa9,0xde,0x80,0xda,0x5e,0x8f,0x13,0x25, + 0xa2,0x2a,0x3f,0x17,0xe7,0xfb,0xce,0x3b,0x0c,0x9e,0x04,0x3f,0x83,0x2e,0x4b,0x08,0xff,0xfc,0xb6,0x7a, + 0x6a,0xe3,0xf5,0x2e,0xfa,0x08,0x2f,0x58,0x87,0xce,0x6e,0x6c,0xe0,0x63,0x85,0xdf,0xfe,0x0b,0xd1,0xc0, + 0x9b,0x6c,0xb2,0x65,0xbb,0xf5,0x47,0x98,0xe1,0xaa,0xa2,0x95,0x8d,0x4f,0x12,0x8c,0x62,0xea,0x2a,0x3a, + 0xf7,0x76,0xe7,0xe1,0x36,0x54,0x3b,0xa2,0x26,0x05,0xe4,0x10,0xe3,0xbd,0x38,0xe0,0xad,0x15,0x1e,0x5f, + 0xe5,0xb4,0xbd,0x78,0x1f,0x3e,0xf1,0x8f,0x4e,0xbe,0x39,0x5f,0x2f,0x10,0xd4,0x4e,0x1e,0xab,0x0a,0xe6, + 0xab,0xc1,0xab,0x74,0xc6,0x5a,0x8f,0x19,0xc8,0xa7,0x2f,0x8e,0x8c,0xb6,0x63,0xe7,0x43,0x4c,0xab,0xf5, + 0xb8,0xa7,0x21,0xac,0xaf,0x08,0x8e,0xca,0x1e,0x2c,0xea,0x51,0x7d,0xcf,0x21,0x2a,0xfc,0x81,0x9c,0xce, + 0xb4,0x62,0x68,0x7c,0xfd,0x21,0x45,0xd6,0xb9,0x7d,0xe4,0x2e,0x5c,0x35,0x6b,0x26,0xaf,0x4e,0x94,0x94, + 0x2f,0xb0,0xa0,0x17,0x9c,0xee,0x97,0xf5,0x1b,0xf1,0xcf,0xa8,0x7b,0x63,0x6c,0x0d,0xa9,0x8f,0x9c,0x94, + 0x6c,0xb6,0xfd,0xc4,0x75,0xaa,0xcd,0x62,0xcd,0x84,0x7c,0x08,0x0e,0xa2,0x79,0x32,0xd2,0xe4,0xd4,0x18, + 0x9d,0x5f,0x37,0x07,0x7a,0xe6,0x81,0xa1,0x36,0x6b,0x63,0xc1,0x47,0x6a,0xa7,0x6e,0x6d,0x74,0xe0,0x07, + 0x10,0xa5,0x20,0x59,0x38,0xfc,0x24,0x30,0x38,0x6a,0x5e,0x6b,0x6d,0x07,0x15,0x1a,0x64,0x0e,0x34,0x6a, + 0x4e,0x87,0x12,0xa8,0xdd,0x26,0x28,0x63,0x6a,0x6f,0xc6,0xc8,0x99,0xe2,0xb8,0x9f,0x4a,0x3e,0x7b,0x2c, + 0x6f,0x4e,0x87,0xd9,0xf9,0xed,0xf2,0x84,0x5a,0xa8,0x0a,0xed,0xa1,0xca,0xb8,0xd9,0x90,0xc7,0x80,0xf9, + 0x16,0x96,0x26,0xd0,0x89,0xfe,0x06,0xa4,0xe5,0x11,0x2b,0x61,0xfe,0x87,0x93,0xfc,0x07,0xdc,0x88,0xab, + 0x59,0xf7,0x27,0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index 17713c5..a4a9566 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -3,57 +3,98 @@ #include -const char EmbeddedIndex[] PROGMEM = - "

{{ $t('title') }}

{{ version.systemID !== null ? $t('systemID') + ': ' + version.syst" - "emID : '' }}

{{ $t('wifiStatus.accesspoint." - "title') }} {{ wifiStatus.ap.enabled ? wifiStatus.ap.ip : $t('wifiStatus.accesspoint.disabled') }}
" - "{{ $t('wifiStatus.stationmode.title') }} {{ getWiFiStationStatusText() }}
{{ $t('loading') }} {{ loadingIndicator }}

{{ $t('status.title') }}

{{ index + 1 }} {{ step.value }}

{{ $t('triggers.timeTitle') }}

{{ $t('triggers.motionTitle') }}

{{ $t('connection.title') }}

{{ $t('conn" - "ection.accesspointHint') }} {{ $t('connection.stationmodeHint') }} {{ $t('connection.dhc" - "pHint') }}
{{ $t('copyright') }}
{{ version.ve" - "rsion !== null ? $t('firmwareVersion') + version.version : '' }}
"; +const uint8_t EmbeddedIndex[] PROGMEM = { + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x58,0xe9,0x77,0xda,0x38,0x10,0xff,0x57,0x5c, + 0xef,0xee,0x23,0x79,0x29,0x67,0x68,0x5a,0xb2,0xc0,0xd6,0xdc,0xf7,0x0d,0x01,0xbe,0xc9,0xb6,0xb0,0x05, + 0xf2,0x11,0x4b,0xe6,0xe8,0xf1,0xbf,0xaf,0x7c,0x60,0x1b,0x02,0x49,0xbb,0x7d,0x7d,0x6f,0xf9,0x80,0xd1, + 0x9c,0xbf,0x19,0x66,0xa4,0xb1,0xf2,0xef,0x2a,0xfd,0xf2,0x64,0x31,0xa8,0x72,0x2a,0xd5,0x70,0x31,0xef, + 0x7f,0x43,0x20,0x17,0xf3,0x1a,0xa4,0x80,0x93,0x54,0x60,0x11,0x48,0x0b,0xfc,0x74,0x52,0x8b,0x7f,0xe2, + 0x8b,0x79,0x8a,0x28,0x86,0xc5,0x7c,0xd2,0x7f,0xba,0x42,0x3a,0xd0,0x60,0x81,0xa7,0x2a,0xd4,0x60,0x5c, + 0x32,0xb0,0x61,0xf1,0x9c,0x64,0xe8,0x14,0xea,0x4c,0xef,0x8f,0x94,0xfb,0xe1,0x4f,0x44,0xb7,0x08,0xee, + 0x4c,0xc3,0xa2,0x11,0xb9,0x1d,0x92,0xa9,0x5a,0x90,0xe1,0x16,0x49,0x30,0xee,0x2e,0xde,0x23,0x1d,0x51, + 0x04,0x70,0x9c,0x48,0x00,0xc3,0x42,0x9a,0x99,0xc0,0x48,0xdf,0x70,0x16,0xc4,0x05,0x9e,0xd0,0x03,0x86, + 0x44,0x85,0x90,0xd9,0x50,0x2d,0xb8,0x2a,0xf0,0xa2,0xad,0xcb,0x18,0x26,0x24,0x42,0x98,0x20,0x91,0x2c, + 0x64,0x52,0x8e,0x58,0x52,0xc0,0x58,0x3b,0xf4,0xa4,0xc7,0x60,0x3f,0xbc,0x18,0x45,0x43,0x3e,0x14,0xf3, + 0x32,0xda,0x72,0x48,0x2e,0xf0,0xc0,0x34,0x79,0x6f,0xb5,0x8d,0x4b,0xd8,0x00,0x9b,0x90,0xe5,0xe0,0x04, + 0x48,0x87,0x96,0x2f,0x20,0x61,0x40,0x48,0x81,0x77,0xac,0xb8,0x34,0xa4,0x29,0x9e,0x37,0x19,0x50,0xf0, + 0x88,0x34,0xa0,0xc0,0xa4,0xa9,0x2b,0x7f,0x8b,0x80,0xc0,0x87,0xec,0x7b,0x34,0x2b,0xf5,0x47,0xbb,0x54, + 0xbb,0xae,0x18,0x02,0xfb,0xf4,0xc6,0x53,0xb5,0x3a,0x55,0xd8,0xaf,0x8a,0xb3,0x14,0x76,0x65,0x61,0xc1, + 0x1e,0xa5,0xb9,0xb0,0xd5,0x1a,0x0e,0xa1,0x3e,0x1f,0xd5,0x9e,0x1a,0xa3,0x89,0x98,0x59,0xa6,0xe4,0x4c, + 0xed,0xb0,0x1c,0x96,0x4a,0xcb,0x7a,0x0e,0x2d,0xc7,0xa5,0x96,0xf8,0x54,0xd3,0x97,0xb3,0x16,0x5e,0x3c, + 0x8d,0x3e,0x48,0x12,0xc6,0x03,0x47,0x61,0x5e,0x6a,0x8d,0xaa,0xb5,0x29,0xec,0x59,0xe4,0x49,0xae,0xf6, + 0x94,0xb5,0x30,0xec,0x48,0x8b,0x92,0x24,0x0c,0x24,0xa1,0x2c,0x0f,0x7b,0x59,0xa1,0x97,0xe9,0x96,0xb3, + 0xca,0x88,0x2c,0x5a,0xb9,0x6a,0x4f,0x16,0x06,0x0b,0xa1,0x02,0x84,0x0a,0x34,0xe5,0xa9,0xda,0x4d,0x3f, + 0xd7,0xd6,0xb6,0xa5,0x98,0xb9,0xb1,0xd4,0x6d,0x28,0xf2,0xc7,0xf4,0xfd,0xec,0x7e,0x45,0xa7,0xe6,0x07, + 0xd8,0x50,0xba,0xb5,0xb4,0x65,0xd5,0xab,0xc0,0x7e,0x98,0x35,0x2a,0x99,0x46,0x57,0x6c,0x7c,0x78,0x6e, + 0xf5,0x3b,0x0d,0x0b,0xdc,0xad,0x36,0x5f,0x44,0xb2,0x18,0x11,0xb5,0xfb,0xc9,0xec,0x4c,0x94,0x69,0x53, + 0x19,0x2b,0x5b,0xbb,0xdb,0x35,0x16,0xbb,0x3b,0xd4,0x5d,0x4c,0xac,0x87,0xa1,0xda,0x5b,0x74,0xad,0x1e, + 0xea,0x1d,0x76,0xcd,0x0e,0x3e,0xcc,0xda,0xb2,0x74,0x38,0x0c,0x88,0x26,0x8d,0xc8,0x61,0xfa,0x21,0xb5, + 0x51,0x1a,0x74,0x38,0xb4,0x33,0x82,0xdc,0x6b,0xd5,0xcc,0xca,0x46,0x68,0x67,0x9b,0xc9,0x4e,0xf3,0xa9, + 0x2b,0x66,0x04,0xd2,0x2c,0x49,0xcf,0x29,0x34,0xaa,0xc3,0x61,0x7d,0x30,0x59,0xae,0x66,0x0f,0xc3,0x6a, + 0xea,0x4e,0xa9,0xd4,0x6b,0x19,0xcb,0x20,0xf5,0xaa,0xd2,0x1d,0xee,0x9b,0x82,0xaa,0x2f,0x05,0x34,0xe8, + 0x7d,0xca,0xda,0xe6,0x68,0x95,0x4a,0xf6,0xb1,0x49,0x3a,0xe5,0x92,0x79,0x7f,0x78,0x4e,0x49,0xaa,0x42, + 0xcb,0xd3,0xe9,0xd2,0x1a,0xed,0x1e,0x86,0x95,0xfe,0x7d,0xf5,0xa9,0x31,0x7e,0xae,0xe5,0x28,0xb0,0x96, + 0x60,0xdc,0x6e,0xcd,0x61,0xab,0x22,0x8b,0x43,0x4c,0xaa,0xa9,0x76,0xe5,0xa1,0xd5,0x4b,0xb6,0x8d,0x11, + 0xa9,0xab,0xfb,0x79,0xbb,0x8c,0xcb,0xed,0x46,0xab,0xb9,0xda,0x4c,0xd4,0x5d,0xf7,0x49,0x15,0x1e,0xe4, + 0xd2,0xd8,0xc0,0x23,0xb4,0xde,0xb4,0xfa,0x72,0x7a,0x39,0xdd,0xe6,0x0e,0xc3,0x5c,0xdf,0x7c,0x16,0x1b, + 0x26,0x02,0xd3,0x19,0xa8,0x8a,0xcb,0xea,0x47,0xda,0x6c,0xae,0x8d,0x52,0x7b,0x7e,0x20,0x06,0x49,0x4b, + 0xd9,0xd9,0x27,0x28,0x76,0xaa,0xb2,0xb8,0xcd,0x88,0x52,0x97,0x54,0x3f,0x2a,0x6b,0xbb,0x24,0x6f,0xe7, + 0xa3,0x71,0x2b,0x5b,0xbb,0x4b,0xee,0x9e,0x9b,0xf3,0xb9,0xd5,0xac,0xef,0xb4,0xf9,0xfd,0x97,0x1d,0x90, + 0x3a,0x15,0x15,0xf6,0xfa,0xb9,0x74,0x7f,0xdd,0x19,0xb6,0xe5,0x74,0x76,0xd6,0xad,0x94,0xf5,0x85,0x52, + 0xde,0xcf,0xd6,0xcd,0xfb,0xde,0x04,0xa6,0xb5,0xb1,0x31,0xa8,0x64,0x73,0xfb,0xec,0xd8,0x62,0xc5,0x91, + 0x7b,0x1e,0xe8,0x59,0x68,0x6c,0xcb,0x5d,0xb7,0x7a,0xaa,0xb8,0x36,0xd9,0x8c,0xed,0xa1,0x56,0x2e,0xb3, + 0x4a,0x54,0xd3,0xc5,0xaf,0x5f,0xb9,0x3f,0xe9,0x4d,0xcc,0x6d,0xd1,0xd8,0x2d,0xf7,0xfd,0x3b,0x2b,0xf7, + 0x34,0xe3,0x64,0x1c,0xce,0x16,0x5a,0x04,0x19,0x7a,0x82,0x1c,0x08,0x85,0x5a,0xb3,0xc2,0xbd,0x2b,0x14, + 0x38,0xdd,0xc6,0x98,0xfb,0xc7,0xd5,0x3a,0xd2,0x99,0xe2,0x1d,0x17,0x7b,0xe4,0x62,0xec,0xf1,0x42,0x87, + 0x91,0x63,0x9e,0xdd,0xcc,0x49,0x3f,0xec,0xd0,0x0a,0x11,0x0a,0xa8,0x4d,0x4e,0xfb,0x84,0xb5,0x8f,0x0e, + 0x25,0xca,0x6c,0x9c,0xd2,0x91,0x2e,0x23,0x09,0x50,0x67,0xc7,0x78,0x74,0x3a,0x27,0xee,0x29,0x7b,0x86, + 0xc6,0xee,0xef,0x04,0x30,0x13,0x50,0x07,0x22,0x86,0x32,0x43,0x18,0xf3,0x2d,0x41,0x39,0xe6,0x80,0x90, + 0x11,0x09,0x09,0x4e,0x7f,0x33,0xdb,0xc7,0xf0,0xa3,0x26,0x24,0x09,0x12,0x62,0x1a,0x48,0xa7,0x89,0x30, + 0x2b,0x1c,0x13,0xbc,0xe6,0xe7,0x94,0x8e,0x4c,0xe6,0xec,0x15,0x9b,0x0c,0x86,0xab,0xe8,0x27,0xdb,0x01, + 0xf1,0x4b,0xd1,0x2b,0x90,0x3e,0xa1,0x9a,0xeb,0x89,0x29,0x79,0x0e,0x6f,0x6e,0xaf,0xc7,0x47,0x3c,0x41, + 0xcd,0x90,0xe1,0x59,0x7c,0x97,0x2c,0x4d,0xe0,0x9e,0xde,0x44,0x90,0x46,0xbf,0xbd,0xcd,0x0f,0xb1,0xfd, + 0x94,0xed,0x7f,0x32,0xd2,0x15,0xfe,0x08,0xf6,0xb8,0x3e,0xba,0xf7,0xd7,0x81,0x27,0x7f,0xdd,0x3c,0xc6, + 0x74,0x9a,0x09,0xcf,0xe6,0xbb,0xc0,0x48,0x34,0x0d,0x14,0x88,0x4e,0xb9,0x88,0x36,0xa5,0x86,0x7e,0x24, + 0x7a,0x2b,0x96,0x18,0x7f,0xfd,0x95,0x8b,0x79,0xa4,0xb8,0x61,0x53,0x76,0x0e,0x40,0x56,0x9a,0x80,0xe5, + 0x74,0x0b,0x27,0x40,0x64,0x35,0xcc,0xc5,0xbc,0xe4,0xb1,0xb2,0xe4,0xb9,0xcf,0x12,0x46,0xd2,0x86,0x6d, + 0xe8,0x81,0x40,0xc8,0x0f,0x02,0xf0,0xd6,0x09,0xe6,0x7d,0x12,0x69,0x14,0xcf,0x49,0x91,0xfb,0x65,0x38, + 0xd4,0x42,0x8a,0xc2,0xfa,0xe6,0x3a,0xa0,0x40,0x22,0x80,0x74,0xa4,0xfc,0x36,0x50,0x61,0x25,0x5e,0x87, + 0x15,0x91,0x09,0x80,0x85,0xb4,0xdf,0x06,0x6d,0x85,0x2c,0x6d,0x07,0x2c,0x78,0x1d,0x58,0x20,0x11,0xc0, + 0x3a,0x52,0xae,0x80,0x7a,0x51,0x7f,0x11,0x73,0xd1,0x82,0xc8,0xab,0xf7,0xe7,0x45,0x11,0xdd,0x3a,0xef, + 0x4f,0xaa,0x95,0x60,0x24,0xc3,0x70,0x1c,0x60,0x96,0x57,0x86,0x55,0xe0,0x6f,0xd8,0xce,0x68,0xbe,0xe7, + 0x58,0x4b,0xc3,0xfd,0x2d,0x7b,0x70,0xce,0x9a,0xb8,0x48,0x5d,0x1a,0xdb,0x45,0xd3,0x4e,0xa7,0xe4,0x91, + 0x6e,0xda,0x94,0xa3,0x07,0x93,0xcd,0x41,0x16,0xd0,0x15,0xc8,0x73,0x1a,0xd2,0x0b,0x7c,0x8a,0x3d,0xc1, + 0xbe,0xc0,0xa7,0xd9,0xb0,0x74,0xe2,0xcb,0xf5,0xe1,0xb4,0xb6,0x3b,0xf6,0x40,0x33,0xb1,0x05,0xd8,0x86, + 0x7c,0xd1,0x69,0xba,0x70,0x7d,0xde,0xce,0xd7,0x82,0x8e,0x14,0x5d,0x9e,0x01,0xd7,0xb8,0xcf,0xc4,0x16, + 0x35,0x44,0x13,0xa6,0x05,0xb7,0xee,0x24,0xc6,0xa6,0x20,0x7c,0x98,0xf8,0x62,0x8e,0x14,0x82,0x58,0x66, + 0x33,0x60,0x34,0x4d,0x61,0xa1,0x22,0x0d,0x4e,0xce,0x92,0x95,0x0c,0x35,0x5e,0xd5,0xd5,0x0c,0xa7,0xa0, + 0x5e,0xd1,0x4e,0x3a,0x00,0xdf,0x0a,0xe8,0xa4,0x5c,0x5f,0x0b,0xa9,0x1c,0xdd,0x85,0x2f,0x01,0x8b,0x16, + 0xf9,0x19,0xa8,0xe8,0x9f,0x26,0xa9,0x50,0xda,0x88,0xc6,0x9e,0xf7,0x66,0xc6,0xf0,0x18,0x88,0xfc,0x4f, + 0x11,0x53,0x51,0x01,0x36,0xc1,0x02,0x11,0xe2,0x60,0x4b,0x75,0x16,0x71,0xa4,0x3b,0xfd,0xc0,0x73,0x6e, + 0x19,0x9d,0x48,0xbf,0xc4,0x15,0x61,0xfb,0xe8,0x5c,0x1b,0x6c,0xe0,0x35,0x41,0xd0,0x7b,0xea,0xdb,0xca, + 0x8d,0xd0,0x80,0xa3,0x59,0xe4,0x5e,0x89,0xd0,0x3f,0x5c,0x2e,0x47,0x77,0x64,0xbe,0x1d,0x59,0x20,0xf9, + 0x12,0x58,0xe4,0xf8,0xfa,0xf9,0xa8,0x22,0xca,0xe7,0x51,0xf9,0x98,0x3c,0xf7,0x04,0xc9,0x17,0xd5,0x19, + 0xfd,0xd4,0x69,0x34,0x13,0x94,0x1d,0x95,0x7e,0x16,0x1c,0xfd,0xcb,0x29,0x70,0x39,0x8f,0xc7,0x19,0x80, + 0x9d,0x72,0xaf,0xe4,0xc7,0xc5,0x62,0xb2,0x80,0x76,0x86,0x75,0x11,0xcf,0x91,0x77,0x1d,0x53,0xa0,0xed, + 0xe2,0x0a,0x57,0x97,0xb0,0x85,0xdc,0xb7,0xf0,0xbd,0x56,0x01,0xb2,0x2a,0x99,0x97,0xed,0x7b,0x9c,0x1f, + 0x8c,0xfd,0x7a,0x6d,0xb8,0x66,0x2e,0x24,0xc3,0xa1,0xff,0x7c,0x45,0x38,0x5a,0x2f,0x4a,0x21,0xba,0x83, + 0xdb,0xa2,0x61,0x3a,0x92,0xe4,0xf4,0x6f,0x41,0x17,0x31,0x20,0x13,0xc8,0xb2,0xc5,0x1a,0xe7,0x47,0xaa, + 0x04,0x5d,0xc9,0x13,0x7a,0x33,0x4b,0xdc,0xb7,0x6f,0xdc,0x79,0x62,0x4f,0x0b,0xd8,0x16,0x75,0x48,0x35, + 0x40,0x36,0x17,0xcb,0x38,0xe0,0xfe,0x50,0x31,0x87,0xb6,0x2e,0x97,0x74,0x84,0xff,0x8b,0xb0,0x15,0x40, + 0xe1,0x0e,0x1c,0x2e,0x61,0xf6,0x59,0x3f,0x02,0xf8,0x68,0xe5,0x22,0xda,0x80,0xf9,0x5f,0xa0,0x7a,0x87, + 0x4b,0x04,0xb0,0x6a,0x10,0xea,0xdc,0x52,0x5c,0x42,0x7c,0xe4,0xbd,0x05,0xf9,0xd1,0xc4,0x40,0x82,0xaa, + 0x81,0xd9,0xe9,0x5d,0xe0,0xaf,0x18,0x19,0x84,0x32,0xb1,0x5b,0x2f,0xcc,0xc0,0xf7,0xc5,0x38,0x43,0xee, + 0x9b,0x0d,0x17,0xa9,0x76,0x6f,0x16,0x72,0x4a,0xdd,0xc3,0x79,0x42,0x8e,0x9b,0x16,0xd2,0x80,0xc5,0x72, + 0xe7,0xc1,0xf7,0x0e,0xce,0x13,0x07,0x04,0x6c,0xdd,0xd7,0x80,0x47,0x77,0xcc,0x38,0xae,0xfd,0x97,0x45, + 0xf7,0x60,0x2d,0xb9,0xa6,0xc6,0x2e,0x9d,0x65,0xe6,0xf1,0x9c,0x13,0x0b,0xde,0x5c,0x7e,0xfa,0x70,0x8f, + 0x8c,0x7c,0x57,0x8e,0x76,0xdb,0x74,0xde,0x29,0x6a,0xbe,0x9c,0x97,0xc6,0xa3,0xd6,0x95,0x73,0x3e,0x9c, + 0x1a,0x5f,0x39,0xe5,0x57,0x08,0x9f,0x59,0xab,0x39,0x94,0xff,0x6f,0x6a,0xc3,0x14,0x7a,0x29,0x19,0x58, + 0x86,0xe2,0x6c,0x5b,0xee,0xfb,0xfd,0x0a,0x60,0xe2,0x55,0xf4,0x19,0xf3,0xfb,0xf7,0xbf,0xde,0xf8,0x6b, + 0x5e,0xbe,0xcd,0x62,0x08,0xac,0x15,0xda,0xf3,0x57,0x25,0xfc,0xeb,0x82,0x48,0x07,0x99,0x07,0x36,0xf4, + 0xa9,0xfe,0x8e,0x2c,0x5a,0xd1,0x7b,0x08,0xff,0x79,0x7e,0x0d,0x71,0xcc,0xfa,0xcc,0x63,0xbb,0xb7,0x11, + 0xe7,0x2a,0xc1,0x2d,0xc4,0x8b,0xd7,0x58,0xff,0xfe,0x0f,0xb3,0xf9,0xda,0x06,0x0a,0x4b,0xed,0x1a,0x6c, + 0x81,0x47,0xe4,0x8b,0xac,0x63,0x88,0x81,0x61,0x02,0x1b,0xca,0x0d,0xdf,0xf4,0x2e,0x19,0xd1,0x17,0x96, + 0xe1,0x44,0x22,0xc1,0xdf,0xbe,0x67,0x5d,0x64,0x51,0xc1,0x34,0x6f,0x6e,0x23,0xd7,0x85,0xde,0x45,0x61, + 0xd2,0xbd,0x1f,0xfd,0x17,0x25,0x0b,0x23,0x59,0x35,0x15,0x00,0x00}; #endif diff --git a/src/assets/images.h b/src/assets/images.h deleted file mode 100644 index 51d9d72..0000000 --- a/src/assets/images.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef __assets_images -#define __assets_images - -#include - -const uint8_t EmbeddedLogo[] PROGMEM = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30, - 0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57,0x02,0xf9,0x87,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c,0x00,0x00,0x01,0x70,0x49,0x44,0x41,0x54,0x78,0xda, - 0xec,0x59,0xd1,0x0d,0x82,0x30,0x10,0x2d,0xc6,0x01,0x70,0x03,0xdc,0x00,0x27,0x50,0x37,0x80,0x0d,0xd8, - 0xc0,0xb8,0x81,0x1b,0x18,0x27,0xd1,0x0d,0x74,0x03,0xd8,0x00,0x36,0x80,0x0d,0xea,0x5d,0x52,0x13,0x35, - 0xa8,0x58,0xee,0xae,0x0a,0x7d,0x49,0xc3,0x07,0x81,0xde,0xf5,0xdd,0x5d,0xdf,0xb5,0x4a,0x79,0x78,0x78, - 0x0c,0x17,0x5a,0xeb,0x18,0x46,0xae,0xe9,0x51,0xc3,0xd8,0x73,0x1b,0x1f,0x9a,0x89,0x38,0xb1,0xeb,0x6b, - 0xe7,0xe4,0xcd,0xbb,0x18,0x46,0xc8,0x4c,0xf2,0x92,0xd3,0x81,0x42,0x20,0x4a,0x0b,0xee,0x30,0xca,0x18, - 0xc3,0xe8,0x8c,0x61,0x3a,0xfa,0x42,0x13,0x58,0x32,0xb3,0x62,0x37,0x2c,0x08,0x2e,0x5c,0x95,0x29,0xd7, - 0x32,0xc8,0xfb,0x26,0x71,0x1b,0x32,0x53,0x9d,0x24,0x80,0x7b,0x50,0x42,0xed,0x80,0x74,0xd2,0x45,0xa4, - 0x39,0x00,0x2b,0x82,0x3f,0x2c,0x85,0x8c,0x6f,0x60,0x2c,0x20,0x17,0x2a,0xd2,0x24,0x46,0x79,0x01,0x8f, - 0x4d,0x97,0xd5,0xe9,0x01,0x34,0xfa,0x00,0xc6,0x17,0x6a,0xe8,0xb0,0x61,0x20,0x31,0x0c,0x48,0x02,0x19, - 0xd9,0x02,0x23,0xcd,0xf3,0x8b,0xa9,0x45,0xfd,0x3f,0x3a,0x5a,0x6c,0x2c,0x20,0x69,0xdf,0x2a,0xb4,0x72, - 0x18,0x2d,0x09,0x45,0x19,0xad,0x1c,0x3a,0x40,0x33,0xb7,0x11,0x61,0xd2,0xa8,0x5f,0x6d,0x6a,0xb6,0x5a, - 0x48,0xa2,0x57,0x78,0x90,0xdd,0x6d,0x09,0x6c,0x13,0x42,0x83,0xe8,0x93,0x7f,0x2a,0x84,0x6c,0x1a,0x1c, - 0x57,0x28,0x29,0x42,0x28,0x72,0x48,0x7e,0x44,0xe1,0xc0,0xc5,0xa1,0x03,0xa7,0x41,0x4a,0x89,0x51,0x8a, - 0x39,0x09,0x39,0xdd,0x59,0x52,0xff,0x72,0x43,0xd3,0xa9,0xa9,0xb1,0xe9,0x89,0xa5,0x15,0x68,0x46,0xd9, - 0x13,0xbb,0x48,0x22,0x3a,0x01,0x29,0x7c,0xac,0xa2,0xcd,0x5c,0xe1,0x5f,0x1e,0x6c,0xb1,0x1d,0x6e,0xfd, - 0x9b,0x70,0xcb,0x04,0xee,0x08,0xee,0x05,0xdb,0xd7,0x45,0x22,0x78,0x17,0xef,0xf0,0xa8,0x85,0xd7,0xac, - 0x81,0xb0,0x99,0x7d,0xf3,0xc1,0xa7,0x0b,0x0e,0x17,0x8d,0x3b,0xdd,0x4e,0x8c,0xb4,0x0a,0x77,0x5e,0x15, - 0x30,0x30,0xa7,0x62,0x00,0xb1,0x56,0x32,0x37,0x35,0x37,0xb5,0x99,0x2a,0x0f,0x0f,0x8f,0x71,0xe1,0x2a, - 0xc0,0x00,0x6f,0x6a,0x3e,0x7e,0x1e,0xa2,0xf0,0x8c,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42, - 0x60,0x82}; - -#endif diff --git a/src/assets/js.h b/src/assets/js.h index d2662c8..15f5db8 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -3,1246 +3,2125 @@ #include -const char EmbeddedBundleJS[] PROGMEM = - "!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"" - "==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.axios=e():t.axios=e()}(t" - "his,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},i" - "d:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t" - ",e.c=n,e.p=\"\",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){\"use strict\";function r(t){" - "var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2" - "),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23)," - "c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.expor" - "ts=c,t.exports.default=c},function(t,e,n){\"use strict\";function r(t){return\"[object Array]\"===u." - "call(t)}function i(t){return null!==t&&\"object\"==typeof t}function o(t){return\"[object Function]" - "\"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if(\"object\"!=typeof t&&(t=[t]),r(t))for(var" - " n=0,i=t.length;n=200&&t<300}};s.headers={common" - ":{Accept:\"application/json, text/plain, */*\"}},i.forEach([\"delete\",\"get\",\"head\"],function(t)" - "{s.headers[t]={}}),i.forEach([\"post\",\"put\",\"patch\"],function(t){s.headers[t]=i.merge(a)}),t.ex" - "ports=s},function(t,e,n){\"use strict\";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r)" - "{r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){\"use strict\";v" - "ar r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u=\"undefined\"!=typeof window&&window.btoa&&window" - ".btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.he" - "aders;r.isFormData(f)&&delete p[\"Content-Type\"];var d=new XMLHttpRequest,h=\"onreadystatechange\"," - "v=!1;if(\"undefined\"==typeof window||!window.XDomainRequest||\"withCredentials\"in d||s(t.url)||(d=" - "new window.XDomainRequest,h=\"onload\",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.au" - "th){var m=t.auth.username||\"\",g=t.auth.password||\"\";p.Authorization=\"Basic \"+u(m+\":\"+g)}if(d" - ".open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=funct" - "ion(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf(\"file:\"" - "))){var n=\"getAllResponseHeaders\"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&\"" - "text\"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:122" - "3===d.status?\"No Content\":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=f" - "unction(){l(c(\"Network Error\",t,null,d)),d=null},d.ontimeout=function(){l(c(\"timeout of \"+t.time" - "out+\"ms exceeded\",t,\"ECONNABORTED\",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCr" - "edentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if" - "(\"setRequestHeader\"in d&&r.forEach(p,function(t,e){void 0===f&&\"content-type\"===e.toLowerCase()?" - "delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d" - ".responseType=t.responseType}catch(e){if(\"json\"!==t.responseType)throw e}\"function\"==typeof t.on" - "DownloadProgress&&d.addEventListener(\"progress\",t.onDownloadProgress),\"function\"==typeof t.onUpl" - "oadProgress&&d.upload&&d.upload.addEventListener(\"progress\",t.onUploadProgress),t.cancelToken&&t.c" - "ancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}}," - "function(t,e,n){\"use strict\";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n" - ".status&&i&&!i(n.status)?e(r(\"Request failed with status code \"+n.status,n.config,null,n.request,n" - ")):t(n)}},function(t,e,n){\"use strict\";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t" - ");return r(a,e,n,i,o)}},function(t,e){\"use strict\";t.exports=function(t,e,n,r,i){return t.config=e" - ",n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){\"use strict\";function r(t){return enco" - "deURIComponent(t).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/g" - "i,\",\").replace(/%20/g,\"+\").replace(/%5B/gi,\"[\").replace(/%5D/gi,\"]\")}var i=n(2);t.exports=fu" - "nction(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{va" - "r a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+=\"[]\"),i.isArray(t)||(t=[" - "t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.pus" - "h(r(e)+\"=\"+r(t))}))}),o=a.join(\"&\")}return o&&(t+=(-1===t.indexOf(\"?\")?\"?\":\"&\")+o),t}},fun" - "ction(t,e,n){\"use strict\";var r=n(2),i=[\"age\",\"authorization\",\"content-length\",\"content-typ" - "e\",\"etag\",\"expires\",\"from\",\"host\",\"if-modified-since\",\"if-unmodified-since\",\"last-modi" - "fied\",\"location\",\"max-forwards\",\"proxy-authorization\",\"referer\",\"retry-after\",\"user-agen" - "t\"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split(\"\\n\"),function(t){if(o=t.in" - "dexOf(\":\"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>" - "=0)return;a[e]=\"set-cookie\"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+\", \"+n:n}}),a):a}},function" - "(t,e,n){\"use strict\";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=" - "t;return n&&(i.setAttribute(\"href\",e),e=i.href),i.setAttribute(\"href\",e),{href:i.href,protocol:i" - ".protocol?i.protocol.replace(/:$/,\"\"):\"\",host:i.host,search:i.search?i.search.replace(/^\\?/,\"" - "\"):\"\",hash:i.hash?i.hash.replace(/^#/,\"\"):\"\",hostname:i.hostname,port:i.port,pathname:\"/\"==" - "=i.pathname.charAt(0)?i.pathname:\"/\"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgen" - "t),i=document.createElement(\"a\");return e=t(window.location.href),function(n){var i=r.isString(n)?" - "t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){\"use" - " strict\";function n(){this.message=\"String contains an invalid character\"}var r=\"ABCDEFGHIJKLMNO" - "PQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";n.prototype=new Error,n.prototype.code=5,n.prot" - "otype.name=\"InvalidCharacterError\",t.exports=function(t){for(var e,i,o=String(t),a=\"\",s=0,c=r;o." - "charAt(0|s)||(c=\"=\",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e" - "=e<<8|i}return a}},function(t,e,n){\"use strict\";var r=n(2);t.exports=r.isStandardBrowserEnv()?{wri" - "te:function(t,e,n,i,o,a){var s=[];s.push(t+\"=\"+encodeURIComponent(e)),r.isNumber(n)&&s.push(\"expi" - "res=\"+new Date(n).toGMTString()),r.isString(i)&&s.push(\"path=\"+i),r.isString(o)&&s.push(\"domain=" - "\"+o),!0===a&&s.push(\"secure\"),document.cookie=s.join(\"; \")},read:function(t){var e=document.coo" - "kie.match(new RegExp(\"(^|;\\\\s*)(\"+t+\")=([^;]*)\"));return e?decodeURIComponent(e[3]):null},remo" - "ve:function(t){this.write(t,\"\",Date.now()-864e5)}}:{write:function(){},read:function(){return null" - "},remove:function(){}}},function(t,e,n){\"use strict\";function r(){this.handlers=[]}var i=n(2);r.pr" - "ototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1" - "},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=funct" - "ion(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){\"use stri" - "ct\";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6)" - ",c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.heade" - "rs=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{" - "},t.headers[t.method]||{},t.headers||{}),i.forEach([\"delete\",\"get\",\"head\",\"post\",\"put\",\"p" - "atch\",\"common\"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e" - "){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e." - "response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.rejec" - "t(e)})}},function(t,e,n){\"use strict\";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,func" - "tion(n){t=n(t,e)}),t}},function(t,e){\"use strict\";t.exports=function(t){return!(!t||!t.__CANCEL__)" - "}},function(t,e){\"use strict\";t.exports=function(t){return/^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.te" - "st(t)}},function(t,e){\"use strict\";t.exports=function(t,e){return e?t.replace(/\\/+$/,\"\")+\"/\"+" - "e.replace(/^\\/+/,\"\"):t}},function(t,e){\"use strict\";function n(t){this.message=t}n.prototype.to" - "String=function(){return\"Cancel\"+(this.message?\": \"+this.message:\"\")},n.prototype.__CANCEL__=!" - "0,t.exports=n},function(t,e,n){\"use strict\";function r(t){if(\"function\"!=typeof t)throw new Type" - "Error(\"executor must be a function.\");var e;this.promise=new Promise(function(t){e=t});var n=this;" - "t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=f" - "unction(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e)" - "{t=e}),cancel:t}},t.exports=r},function(t,e){\"use strict\";t.exports=function(t){return function(e)" - "{return t.apply(null,e)}}}])}),function(t,e){\"object\"==typeof exports&&\"undefined\"!=typeof modul" - "e?module.exports=e():\"function\"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){\"" - "use strict\";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}fun" - "ction n(t){return!0===t}function r(t){return\"string\"==typeof t||\"number\"==typeof t||\"symbol\"==" - "typeof t||\"boolean\"==typeof t}function i(t){return null!==t&&\"object\"==typeof t}function o(t){re" - "turn\"[object Object]\"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.flo" - "or(e)===e&&isFinite(t)}function s(t){return null==t?\"\":\"object\"==typeof t?JSON.stringify(t,null," - "2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object." - "create(null),r=t.split(\",\"),i=0;i-1)return t.sp" - "lice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return functi" - "on(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t." - "apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var " - "n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];retur" - "n t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||\"\")+\"_\"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.ap" - "ply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):\"\"!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._i" - "sVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key=\"__vlist\"+a+\"_\"+s+\"__\"),f.push(c)));return f}(u):voi" - "d 0:c===Dr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0" - ")&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.option" - "s=F(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}functi" - "on Lt(t){return t&&(t.Ctor.options.name||t.tag)}function It(t,e){return Array.isArray(t)?t.indexOf(e" - ")>-1:\"string\"==typeof t?t.split(\",\").indexOf(e)>-1:(n=t,!(\"[object RegExp]\"!==mn.call(n))&&t.t" - "est(e));var n}function Dt(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){va" - "r s=Lt(a.componentOptions);s&&!e(s)&&Ft(n,o,r,i)}}}function Ft(t,e,n,r){var i=t[e];!i||r&&i.tag===r." - "tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.static" - "Class,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+\" \"" - "+e:t:e||\"\"}function Mt(t){return Array.isArray(t)?function(t){for(var n,r=\"\",i=0,o=t.length;i=0&&\" \"===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).t" - "rim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'\"'+t.slice(zr+1)+'\"'}:{exp:t,key:n" - "ull};for(Hr=t,zr=Wr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(Wr=zr;!ce();)if(" - "t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Vr);return{exp:t.slice(0,Wr)" - ",key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+\"=\"+e:\"$set(\"+n.exp+\", \"+n.key+\", \"+e+\")\"" - "}function se(){return Hr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||" - "39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(" - "o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){va" - "r r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener" - "(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTas" - "k||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.e" - "lm,function(t){if(e(t[bi])){var n=Pn?\"change\":\"input\";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi" - "]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void" - " 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps|" - "|{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]=\"\");f" - "or(i in u){if(o=u[i],\"textContent\"===i||\"innerHTML\"===i){if(r.children&&(r.children.length=0),o=" - "==s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if(\"value\"===i){a._value=o" - ";var l=t(o)?\"\":String(o);p=l,!(f=a).composing&&(\"OPTION\"===f.tagName||function(t,e){var n=!0;try" - "{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t" - "._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==" - "n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);retu" - "rn t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):\"string\"==typeof" - " t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle" - ")&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data." - "style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.com" - "ponentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n" - ");for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,\"" - "\");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?\"\":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.cla" - "ssList)e.indexOf(\" \")>-1?e.split(/\\s+/).forEach(function(e){return t.classList.add(e)}):t.classLi" - "st.add(e);else{var n=\" \"+(t.getAttribute(\"class\")||\"\")+\" \";n.indexOf(\" \"+e+\" \")<0&&t.set" - "Attribute(\"class\",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(\" " - "\")>-1?e.split(/\\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.cl" - "assList.length||t.removeAttribute(\"class\");else{for(var n=\" \"+(t.getAttribute(\"class\")||\"\")+" - "\" \",r=\" \"+e+\" \";n.indexOf(r)>=0;)n=n.replace(r,\" \");(n=n.trim())?t.setAttribute(\"class\",n)" - ":t.removeAttribute(\"class\")}}function be(t){if(t){if(\"object\"==typeof t){var e={};return!1!==t.c" - "ss&&v(e,Ei(t.name||\"v\")),v(e,t),e}return\"string\"==typeof t?Ei(t):void 0}}function we(t){Ri(funct" - "ion(){Ri(t)})}function $e(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&" - "&(n.push(e),ye(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}functi" - "on ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ii?Ni:Mi,c=" - "0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(f" - "unction(){c0&&(n=Ii,l=a,f=o.leng" - "th):e===Di?u>0&&(n=Di,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ii:Di:null)?n===Ii?o.length:c.len" - "gth:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ii&&Bi.test(r[Fi+\"Property\"])}}function Ae(t," - "e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Oe(e)}function Ie(t,e,n){De(t,e,n),(Pn||Rn)&&se" - "tTimeout(function(){De(t,e,n)},0)}function De(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray" - "(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&" - "(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.select" - "edIndex=-1)}}function Fe(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return\"_val" - "ue\"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t" - ".target.composing=!1,Re(t.target,\"input\"))}function Re(t,e){var n=document.createEvent(\"HTMLEvent" - "s\");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.da" - "ta.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&" - "e.Ctor.options.abstract?Ue(Q(e.children)):t}function He(t){var e={},n=t.$options;for(var r in n.prop" - "sData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/" - "\\d-keep-alive$/.test(e.tag))return t(\"keep-alive\",{props:e.componentOptions.propsData})}function " - "ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t" - ".elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top" - "-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform=\"translate(\"+r+\"p" - "x,\"+i+\"px)\",o.transitionDuration=\"0s\"}}function Je(t,e){var n=e?jo:To;return t.replace(n,functi" - "on(t){return Oo[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var" - " e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(\" \")>0}var vn=Object.f" - "reeze({}),mn=Object.prototype.toString,gn=u(\"slot,component\",!0),yn=u(\"key,ref,slot,slot-scope,is" - "\"),_n=Object.prototype.hasOwnProperty,bn=/-(\\w)/g,wn=p(function(t){return t.replace(bn,function(t," - "e){return e?e.toUpperCase():\"\"})}),$n=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)})," - "xn=/\\B([A-Z])/g,kn=p(function(t){return t.replace(xn,\"-$1\").toLowerCase()}),Cn=function(t,e,n){re" - "turn!1},An=function(t){return t},Sn=\"data-server-rendered\",On=[\"component\",\"directive\",\"filte" - "r\"],Tn=[\"beforeCreate\",\"created\",\"beforeMount\",\"mounted\",\"beforeUpdate\",\"updated\",\"bef" - "oreDestroy\",\"destroyed\",\"activated\",\"deactivated\",\"errorCaptured\"],jn={optionMergeStrategie" - "s:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHa" - "ndler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnkn" - "ownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:Tn},En=/[^\\w" - ".$]/,Ln=\"__proto__\"in{},In=\"undefined\"!=typeof window,Dn=\"undefined\"!=typeof WXEnvironment&&!!" - "WXEnvironment.platform,Fn=Dn&&WXEnvironment.platform.toLowerCase(),Nn=In&&window.navigator.userAgent" - ".toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf(\"msie 9.0\")>0,Rn=Nn&&Nn.indexOf(\"" - "edge/\")>0,Bn=Nn&&Nn.indexOf(\"android\")>0||\"android\"===Fn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)" - "||\"ios\"===Fn,Hn=(Nn&&/chrome\\/\\d+/.test(Nn),{}.watch),Vn=!1;if(In)try{var zn={};Object.definePro" - "perty(zn,\"passive\",{get:function(){Vn=!0}}),window.addEventListener(\"test-passive\",null,zn)}catc" - "h(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!In&&\"undefined\"!=typeof global&&\"server\"=" - "==global.process.env.VUE_ENV),Wn},Kn=In&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn=\"undefined\"!=typeo" - "f Symbol&&x(Symbol)&&\"undefined\"!=typeof Reflect&&x(Reflect.ownKeys);qn=\"undefined\"!=typeof Set&" - "&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){" - "return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){thi" - "s.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype." - "addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototyp" - "e.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this" - ".subs.slice(),e=0,n=t.length;eSr&&$r[n].id>t.id;)n--;$r.splice(n+1,0,t)}else $r.push(t" - ");Cr||(Cr=!0,z(ut))}}(this)},Tr.prototype.run=function(){if(this.active){var t=this.get();if(t!==thi" - "s.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}c" - "atch(t){B(t,this.vm,'callback for watcher \"'+this.expression+'\"')}else this.cb.call(this.vm,t,e)}}" - "},Tr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Tr.prototype.depend=function" - "(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Tr.prototype.teardown=function(){if(this.a" - "ctive){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.dep" - "s[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0" - "};Ct(At.prototype);var Lr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDe" - "stroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_pare" - "ntElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRende" - "rFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data." - "keepAlive){var o=t;Lr.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e," - "n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$option" - "s._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.da" - "ta&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props," - "s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0" - ",o=n.length;iparseInt(this.max)&&Ft(a,s[0],s," - "this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return" - " jn},Object.defineProperty(t,\"config\",e),t.util={warn:Gn,extend:v,mergeOptions:F,defineReactive:O}" - ",t.set=T,t.delete=j,t.nextTick=z,t.options=Object.create(null),On.forEach(function(e){t.options[e+\"" - "s\"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this" - "._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);" - "return n.unshift(this),\"function\"==typeof t.install?t.install.apply(t,n):\"function\"==typeof t&&t" - ".apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=F(this.options,t),this},funct" - "ion(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[" - "r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.c" - "reate(n.prototype)).constructor=a,a.cid=e++,a.options=F(n.options,t),a.super=n,a.options.props&&func" - "tion(t){var e=t.options.props;for(var n in e)lt(t.prototype,\"_props\",n)}(a),a.options.computed&&fu" - "nction(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mix" - "in=n.mixin,a.use=n.use,On.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOpti" - "ons=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,On.forEach(functio" - "n(t){n[t]=function(e,n){return n?(\"component\"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.ex" - "tend(n)),\"directive\"===t&&\"function\"==typeof n&&(n={bind:n,update:n}),this.options[t+\"s\"][e]=n" - ",n):this.options[t+\"s\"][e]}});var n}(Et),Object.defineProperty(Et.prototype,\"$isServer\",{get:Jn}" - "),Object.defineProperty(Et.prototype,\"$ssrContext\",{get:function(){return this.$vnode&&this.$vnode" - ".ssrContext}}),Et.version=\"2.5.13\";var Ur,Hr,Vr,zr,Wr,qr,Jr,Kr,Xr=u(\"style,class\"),Gr=u(\"input," - "textarea,option,select,progress\"),Zr=function(t,e,n){return\"value\"===n&&Gr(t)&&\"button\"!==e||\"" - "selected\"===n&&\"option\"===t||\"checked\"===n&&\"input\"===t||\"muted\"===n&&\"video\"===t},Yr=u(" - "\"contenteditable,draggable,spellcheck\"),Qr=u(\"allowfullscreen,async,autofocus,autoplay,checked,co" - "mpact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,fo" - "rmnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade," - "novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,tran" - "slate,truespeed,typemustmatch,visible\"),ti=\"http://www.w3.org/1999/xlink\",ei=function(t){return\"" - ":\"===t.charAt(5)&&\"xlink\"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):\"\"},r" - "i=function(t){return null==t||!1===t},ii={svg:\"http://www.w3.org/2000/svg\",math:\"http://www.w3.or" - "g/1998/Math/MathML\"},oi=u(\"html,body,base,head,link,meta,style,title,address,article,aside,footer," - "header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol" - ",p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,st" - "rong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscr" - "ipt,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,labe" - "l,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary," - "content,element,shadow,template,blockquote,iframe,tfoot\"),ai=u(\"svg,animate,circle,clippath,cursor" - ",defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path," - "pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view\",!0),si=function(t){return" - " oi(t)||ai(t)},ci=Object.create(null),ui=u(\"text,number,password,search,email,tel,url\"),li=Object." - "freeze({createElement:function(t,e){var n=document.createElement(t);return\"select\"!==t?n:(e.data&&" - "e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute(\"multiple\",\"multiple\"),n)},createEl" - "ementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return do" - "cument.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:f" - "unction(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function" - "(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t" - ".nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},se" - "tAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t," - "e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr(\"\",{},[]),d" - "i=[\"create\",\"activate\",\"update\",\"remove\",\"destroy\"],hi={create:zt,update:zt,destroy:functi" - "on(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt}" - ",_i=/[\\w).+\\-_$\\]]/,bi=\"__r\",wi=\"__c\",$i={create:de,update:de},xi={create:he,update:he},ki=p(" - "function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\\))/g).forEach(function(t){if(t){var r=t.sp" - "lit(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\\s*!important$/,Si=function(t,e" - ",n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,\"" - "\"),\"important\");else{var r=Ti(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e" - "(d)?(e(r.text)&&C.setTextContent(c,\"\"),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.te" - "xt)&&C.setTextContent(c,\"\"):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.p" - "ostpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(va" - "r o=0;o-1?ci[t]=e.constructor===window" - ".HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString()" - ")},v(Et.options.directives,Vi),v(Et.options.components,Ji),Et.prototype.__patch__=In?Ui:g,Et.prototy" - "pe.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(" - "t,\"beforeMount\");return new Tr(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vno" - "de&&(t._isMounted=!0,ct(t,\"mounted\")),t}(this,t=t&&In?Bt(t):void 0,e)},Et.nextTick(function(){jn.d" - "evtools&&Kn&&Kn.emit(\"init\",Et)},0);var Ki,Xi=/\\{\\{((?:.|\\n)+?)\\}\\}/g,Gi=/[-.*+?^${}()|[\\]" - "\\/\\\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,\"\\\\$&\"),n=t[1].replace(Gi,\"\\\\$&\");return n" - "ew RegExp(e+\"((?:.|\\\\n)+?)\"+n,\"g\")}),Yi={staticKeys:[\"staticClass\"],transformNode:function(t" - ",e){e.warn;var n=ie(t,\"class\");n&&(t.staticClass=JSON.stringify(n));var r=re(t,\"class\",!1);r&&(t" - ".classBinding=r)},genData:function(t){var e=\"\";return t.staticClass&&(e+=\"staticClass:\"+t.static" - "Class+\",\"),t.classBinding&&(e+=\"class:\"+t.classBinding+\",\"),e}},Qi={staticKeys:[\"staticStyle" - "\"],transformNode:function(t,e){e.warn;var n=ie(t,\"style\");n&&(t.staticStyle=JSON.stringify(ki(n))" - ");var r=re(t,\"style\",!1);r&&(t.styleBinding=r)},genData:function(t){var e=\"\";return t.staticStyl" - "e&&(e+=\"staticStyle:\"+t.staticStyle+\",\"),t.styleBinding&&(e+=\"style:(\"+t.styleBinding+\"),\")," - "e}},to=u(\"area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr" - "\"),eo=u(\"colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source\"),no=u(\"address,article,aside,b" - "ase,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,foot" - "er,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,r" - "p,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track\"),ro=/^\\s*([^\\s\"'<>\\/=]+)(?:" - "\\s*(=)\\s*(?:\"([^\"]*)\"+|'([^']*)'+|([^\\s\"'=<>`]+)))?/,io=\"[a-zA-Z_][\\\\w\\\\-\\\\.]*\",oo=\"" - "((?:\"+io+\"\\\\:)?\"+io+\")\",ao=new RegExp(\"^<\"+oo),so=/^\\s*(\\/?)>/,co=new RegExp(\"^<\\\\/\"+" - "oo+\"[^>]*>\"),uo=/^]+>/i,lo=/^/g,\"$1\").replace(//g,\"$1\")),Lo(p,n)&&(n=n.slice(1)" - "),e.chars&&e.chars(n),\"\"});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf(\"<\");if(0===" - "v){if(lo.test(t)){var m=t.indexOf(\"--\\x3e\");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4" - ",m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf(\"]>\");if(g>=0){n(g+2);continue}}var y=t.match" - "(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);contin" - "ue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for" - "(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=" - "i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&(\"p\"===o&&n" - "o(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for(x=t.slice(v);!(co.test(x)||ao.test(x)||lo.test(x)||fo.test(x)||(k" - "=x.indexOf(\"<\",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=\"\"),e.chars&&$&&e.c" - "hars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.is" - "UnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecod" - "eNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){va" - "r l=i&&i.ns||wo(t);Pn&&\"svg\"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(" - "c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push(\"_s(\"+u+\")\"),s.push({\"@binding\":" - "u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;va" - "r n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for" - "(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?\"ident\":e>=49&&e<=57?\"number\":\"else\"}funct" - "ion d(t){var e=t.trim();return(\"0\"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.c" - "harCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):\"*\"+e);var n}" - "var h,v=Object.prototype.toString,m=\"[object Object]\",g=Object.prototype.hasOwnProperty,y=\"undefi" - "ned\"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_=\"undefined\"!=typeof Intl&&void 0!==Intl.NumberF" - "ormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if" - "(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),O" - "bject.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,th" - "is._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=" - "!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=t" - "his.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=t" - "his.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON" - ".parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watch" - "I18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n" - ".sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$roo" - "t.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subsc" - "ribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i" - "18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._s" - "ubscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(" - "this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete thi" - "s._localeWatcher),this._i18n=null)}},w={name:\"i18n\",functional:!0,props:{tag:{type:String,default:" - "\"span\"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:f" - "unction(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){re" - "turn t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array" - ".isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=" - "t.data.attrs.place;return void 0!==e&&\"\"!==e}});return f&&o.length>0&&!p&&t(\"If places prop is se" - "t, all child elements must have place prop set.\"),Array.isArray(l)?l.forEach(function(t,e){u[e]=t})" - ":Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?\"\"+t.data.attrs.pl" - "ace:\"\"+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototy" - "pe.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r=\"\";" - "n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if" - "(u++,\"\\\\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&\"'\"===e||l===L&&'\"'===e)return u++,r" - "=\"\\\\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=F[l])[i]||s.else||D)===D)return;if(l=o[0],(a=h[o[1]])&&(r=" - "o[2],r=void 0===r?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototyp" - "e.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0" - "===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListene" - "rs,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch(\"$data\",function(){f" - "or(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e]" - ".$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return" - " null;var t=this._vm;return this._root.vm.$watch(\"locale\",function(e){t.$set(t,\"locale\",e),t.$fo" - "rceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return " - "a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.num" - "berFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._v" - "m.locale},R.locale.set=function(t){this._vm.$set(this._vm,\"locale\",t)},R.fallbackLocale.get=functi" - "on(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,\"fallb" - "ackLocale\",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missi" - "ng=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter" - "=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWa" - "rn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._v" - "m.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype." - "_getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n," - "i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=fun" - "ction(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s" - "){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){i" - "f(!n(e))return null;if(\"string\"!=typeof(u=e[i]))return null}else{if(\"string\"!=typeof c)return nu" - "ll;u=c}return u.indexOf(\"@:\")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype" - "._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\\w\\-_|.]+)/g);for(var c in s)if(s.hasOwnProper" - "ty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,\"raw\"===i?\"string\":i,\"raw\"===i?voi" - "d 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error(\"unexpected error\");var p=this._root" - ";f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))" - "?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t," - "n);return\"string\"===e?r.join(\"\"):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._i" - "nterpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype." - "_t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return\"\";" - "var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,\"string\",s.par" - "ams);if(this._isFallbackRoot(u)){if(!this._root)throw Error(\"unexpected error\");return(l=this._roo" - "t).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(v" - "ar e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,th" - "is._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n" - ",e,this.fallbackLocale,t,r,\"raw\",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error(\"unexp" - "ected error\");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(" - "t,e,n){return t?(\"string\"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):\"\"" - "},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];" - "return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):\"\";var c},M.prototype.t" - "c=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.app" - "ly(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){fo" - "r(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return" - " this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages()" - ",e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLoc" - "aleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._" - "vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){" - "return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.date" - "TimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.e" - "xtend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e," - "s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+\"__\"+o,l=this._da" - "teTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(" - "t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._loc" - "alizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!" - "this._root)throw Error(\"unexpected error\");return this._root.d(t,n,e)}return r||\"\"},M.prototype." - "d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null" - ";return 1===n.length?\"string\"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&" - "&(o=n[0].key)):2===n.length&&(\"string\"==typeof n[0]&&(o=n[0]),\"string\"==typeof n[1]&&(i=n[1])),t" - "his._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.pr" - "ototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=fun" - "ction(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._lo" - "calizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))retur" - "n null;var c=s[o],u=a+\"__\"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=ne" - "w Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFo" - "rmat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(" - "this._isFallbackRoot(r)){if(!this._root)throw Error(\"unexpected error\");return this._root.n(t,n,e)" - "}return r||\"\"},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[" - "r+1];var i=this.locale,o=null;return 1===n.length?\"string\"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].loca" - "le&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&(\"string\"==typeof n[0]&&(o=n[0]),\"strin" - "g\"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities=" - "{dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(\"." - "\")[0]),t.installed=!0,Object.defineProperty(h.prototype,\"$i18n\",{get:function(){return this._i18n" - "}}),n=h,Object.defineProperty(n.prototype,\"$t\",{get:function(){var t=this;return function(e){for(v" - "ar n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.loca" - "le,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,\"$tc\",{get:function(){var " - "t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i" - "18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.pr" - "ototype,\"$te\",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.local" - "e,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,\"$d\",{get:function(){var t=this;return" - " function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply" - "(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,\"$n\",{get:function(){var t=this;retu" - "rn function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.app" - "ly(i,[e].concat(n));var i}}}),h.mixin(b),h.directive(\"t\",{bind:c,update:u}),h.component(w.name,w);" - "var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version=\"7.3.3\",\"undefined\"!=typeof w" - "indow&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:\"Stairs\",systemID:\"System ID\",f" - "irmwareVersion:\"Firmware version: \",copyright:\"Copyright © 2017 Mark van Renswoude\",loading:\"Pl" - "ease wait, loading configuration...\",applyButton:\"Apply\",applyButtonSaving:\"Saving...\",wifiStat" - "us:{accesspoint:{title:\"AP: \",disabled:\"Disabled\"},stationmode:{title:\"WiFi: \",disabled:\"Disa" - "bled\",idle:\"Idle\",noSSID:\"SSID not found\",scanCompleted:\"Scan completed\",connectFailed:\"Fail" - "ed to connect\",connectionLost:\"Connection lost\",disconnected:\"Disconnected\"}},status:{tabTitle:" - "\"Status\",title:\"Current status\"},triggers:{tabTitle:\"Triggers\",timeTitle:\"Time\",motionTitle:" - "\"Motion\"},connection:{tabTitle:\"Connection\",title:\"Connection parameters\",accesspoint:\"Enable" - " access point\",accesspointHint:\"Allows for a direct connection from your device to this Stairs mod" - "ule for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when yo" - "u are connected to it. Turn it off as soon as station mode is configured, as it is not secured in an" - "y way. You can always turn this option back on by pushing the access point button until the LED ligh" - "ts up.\",stationmode:\"Enable station mode\",stationmodeHint:\"Connect this Stairs module to your ow" - "n WiFi router. Please enter the SSID, password and further configuration below.\",ssid:\"SSID\",pass" - "word:\"Password\",dhcp:\"Use DHCP\",dhcpHint:\"Automatically assigns an IP address to this Stairs mo" - "dule. You probably want to keep this on unless you know what you're doing.\",ipaddress:\"IP address" - "\",subnetmask:\"Subnet mask\",gateway:\"Gateway\",hostname:\"Hostname\",hostnamePlaceholder:\"Defaul" - "t: mac address\"}},nl:{title:\"Trap\",systemID:\"Systeem ID\",firmwareVersion:\"Firmware versie: \"," - "copyright:\"Copyright © 2017 Mark van Renswoude\",loading:\"Een ogenblik geduld, bezig met laden van" - " configuratie...\",applyButton:\"Apply\",applyButtonSaving:\"Saving...\",wifiStatus:{accesspoint:{ti" - "tle:\"AP: \",disabled:\"Uitgeschakeld\"},stationmode:{title:\"WiFi: \",disabled:\"Uitgeschakeld\",id" - "le:\"Slaapstand\",noSSID:\"SSID niet gevonden\",scanCompleted:\"Scan afgerond\",connectFailed:\"Kan " - "geen verbinding maken\",connectionLost:\"Verbinding verloren\",disconnected:\"Niet verbonden\"}},sta" - "tus:{tabTitle:\"Status\",title:\"Huidige status\"},triggers:{tabTitle:\"Triggers\",timeTitle:\"Tijd" - "\",motionTitle:\"Beweging\"},connection:{tabTitle:\"Verbinding\",title:\"Verbinding configuratie\",a" - "ccesspoint:\"Access point inschakelen\",accesspointhint:\"Maakt het mogelijk om een directe connecti" - "e vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is " - "te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het " - "configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access" - " point knop te drukken totdat de LED aan gaat.\",stationmode:\"Verbinding met WiFi maken\",stationmo" - "dehint:\"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in," - " en configureer eventuel de overige opties.\",ssid:\"SSID\",password:\"Wachtwoord\",dhcp:\"Gebruik D" - "HCP\",dhcphint:\"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze" - " optie aan laten, tenzij je weet waar je mee bezig bent.\",ipaddress:\"IP adres\",subnetmask:\"Subne" - "t masker\",gateway:\"Gateway\",hostname:\"Hostnaam\",hostnamePlaceholder:\"Standaard: mac adres\"}}}" - ";function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:\"en\",messages:mes" - "sages});new Vue({el:\"#app\",i18n:t,data:{loading:!0,saving:!1,loadingIndicator:\"|\",activeTab:\"st" - "atus\",version:{systemID:\"loading...\",version:\"loading...\"},wifiStatus:{ap:{enabled:!1,ip:\"0.0." - "0.0\"},station:{enabled:!1,status:0,ip:\"0.0.0.0\"}},connection:{hostname:null,accesspoint:!0,statio" - "n:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},steps:[{value:50},{value:" - "0},{value:0},{value:0},{value:0},{value:70},{value:0},{value:0},{value:0},{value:0},{value:25},{valu" - "e:0},{value:0},{value:0}]},created:function(){var e=this;document.title=t.t(\"title\"),e.startLoadin" - "gIndicator(),e.updateWiFiStatus(),setInterval(e.updateWiFiStatus,5e3),axios.get(\"/api/version\").th" - "en(function(t){\"object\"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),ax" - "ios.all([axios.get(\"/api/connection\").then(function(t){\"object\"==typeof t.data&&(e.connection=t." - "data)}).catch(function(t){console.log(t)})]).then(axios.spread(function(t,n){e.stopLoadingIndicator(" - "),e.loading=!1}))},methods:{applyConnection:function(){var t=this;t.saving||(t.saving=!0,axios.post(" - "\"/api/connection\",{hostname:t.connection.hostname,accesspoint:t.connection.accesspoint,station:t.c" - "onnection.station,ssid:t.connection.ssid,password:t.connection.password,dhcp:t.connection.dhcp,ip:t." - "connection.ip,subnetmask:t.connection.subnetmask,gateway:t.connection.gateway}).then(function(t){})." - "catch(function(t){console.log(t)}).then(function(){t.saving=!1}))},startLoadingIndicator:function(){" - "var t=this;t.loadingStage=0,t.loadingTimer=setInterval(function(){switch(t.loadingStage++,console.lo" - "g(t.loadingStage),t.loadingStage){case 1:t.loadingIndicator=\"/\";break;case 2:t.loadingIndicator=\"" - "-\";break;case 3:t.loadingIndicator=\"\\\\\";break;case 4:t.loadingIndicator=\"|\",t.loadingStage=0}" - "},250)},stopLoadingIndicator:function(){clearInterval(this.loadingTimer)},getWiFiStationStatus:funct" - "ion(){if(!this.wifiStatus.station.enabled)return\"disconnected\";switch(this.wifiStatus.station.stat" - "us){case 0:case 2:return\"connecting\";case 1:case 4:case 5:return\"error\";case 3:return\"connected" - "\";case 6:default:return\"disconnected\"}},getWiFiStationStatusText:function(){if(!this.wifiStatus.s" - "tation.enabled)return t.t(\"wifiStatus.stationmode.disabled\");switch(this.wifiStatus.station.status" - "){case 0:return t.t(\"wifiStatus.stationmode.idle\");case 1:return t.t(\"wifiStatus.stationmode.noSS" - "ID\");case 2:return t.t(\"wifiStatus.stationmode.scanCompleted\");case 3:return this.wifiStatus.stat" - "ion.ip;case 4:return t.t(\"wifiStatus.stationmode.connectFailed\");case 5:return t.t(\"wifiStatus.st" - "ationmode.connectionLost\");case 6:default:return t.t(\"wifiStatus.stationmode.disconnected\")}},upd" - "ateWiFiStatus:function(){var t=this;t.saving||axios.get(\"/api/connection/status\").then(function(e)" - "{\"object\"==typeof e.data&&(t.wifiStatus=e.data)}).catch(function(t){console.log(t)})}}})}"; +const uint8_t EmbeddedBundleJS[] PROGMEM = { + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xd2,0x2e,0xfc,0x57, + 0x24,0x5c,0x5d,0x19,0x18,0xb5,0x68,0xc9,0x49,0xe6,0x9d,0x80,0x46,0x78,0xbd,0x26,0x4e,0xbc,0x8d,0xed, + 0x2c,0x33,0x8a,0x5e,0x1d,0x88,0x6c,0x49,0x88,0x49,0x80,0x01,0x40,0xc9,0x8a,0xc4,0xfb,0xdb,0xbf,0x7a, + 0xaa,0x7a,0x03,0x08,0x39,0x99,0xf7,0xdc,0xf3,0x1d,0x1f,0x8b,0x40,0x77,0xa3,0xd7,0xea,0xea,0xda,0x7b, + 0xfb,0x6c,0x55,0x4e,0xdb,0xa2,0x2a,0xe3,0x56,0xe9,0xe4,0x26,0xaa,0x4e,0x7f,0xd3,0xd3,0x36,0xca,0xb2, + 0xf6,0x7a,0xa9,0xab,0xb3,0x2d,0xfd,0x69,0x59,0xd5,0x6d,0xb3,0xbb,0xbb,0x91,0xb3,0xa8,0x66,0xab,0xb9, + 0x9e,0xc8,0xcf,0xc8,0x94,0xcb,0x74,0x9c,0xa4,0x91,0xad,0xd3,0x17,0x9e,0xe9,0xb3,0xa2,0xd4,0xbb,0xbb, + 0xf2,0x3b,0xca,0x17,0xb3,0x89,0x3c,0xc6,0x47,0xc7,0xd4,0x6e,0x7a,0x57,0xbb,0x13,0xf3,0x3b,0xca,0x3f, + 0x15,0x95,0xd4,0xde,0xfa,0xe7,0x75,0xdc,0x5e,0x14,0x8d,0x72,0x43,0x48,0x6e,0x6a,0xdd,0xae,0xea,0x72, + 0xcb,0x0f,0x2a,0xb9,0xb1,0xcf,0x5b,0x3a,0xae,0x93,0x9b,0xe2,0x2c,0x2e,0x8f,0xea,0xe3,0xc4,0x14,0xc4, + 0xb3,0xed,0xfb,0xf8,0x32,0xaf,0xb7,0x8a,0x0c,0x49,0xd9,0x8d,0x49,0x4b,0x6f,0xd6,0xaa,0x98,0xa5,0xb5, + 0x9a,0x57,0xf9,0x4c,0xcf,0xd2,0xed,0xc3,0xf5,0xd8,0x7c,0xda,0xe2,0xd3,0x69,0x3e,0x9f,0xc7,0x85,0xad, + 0x41,0x15,0xca,0x3f,0xeb,0x84,0x5e,0xe4,0xb3,0x6c,0xfb,0xc0,0x67,0xac,0xd1,0x4c,0x99,0xdd,0xb8,0x8a, + 0xf4,0x68,0x91,0xd1,0xe4,0x8f,0xa6,0x59,0x49,0x7f,0x97,0x59,0x14,0x29,0x1d,0x1f,0xd0,0xe0,0x8e,0xc2, + 0xb5,0x51,0x65,0x72,0xd3,0xba,0x69,0x2e,0xe3,0xc3,0x64,0xad,0xfa,0xf9,0xd1,0xaa,0xd1,0x5b,0x4d,0x5b, + 0x17,0x34,0x93,0x63,0x37,0xee,0x1a,0xb3,0x80,0x46,0x75,0x56,0xea,0xab,0xad,0x9c,0x5e,0x55,0x99,0x55, + 0x71,0x3e,0x5a,0xd6,0x55,0x5b,0x61,0xc2,0x47,0xb5,0xfe,0x7d,0xa5,0x1b,0x80,0x80,0xed,0x15,0xfa,0xdb, + 0xea,0x72,0x16,0x97,0x2a,0x28,0x28,0xa3,0x72,0x39,0xf4,0x56,0xae,0xcd,0xb4,0xc5,0x0f,0x12,0x55,0xd1, + 0xcf,0x17,0x89,0xca,0xe9,0xe7,0xab,0x44,0xa1,0x9b,0x7f,0x4f,0xd4,0x34,0xab,0xe3,0x26,0x19,0x4f,0x47, + 0x8f,0x78,0xdd,0x72,0x35,0x1d,0x4d,0x6b,0x9d,0xb7,0x3a,0x0b,0x97,0xc9,0x34,0x5b,0xd3,0x6c,0x2e,0x74, + 0x7d,0xae,0xe3,0x46,0xb5,0x09,0x8d,0x71,0x3a,0x7a,0x92,0x97,0x53,0x3d,0x47,0x03,0x54,0xb5,0x7d,0xfd, + 0x50,0x7d,0xd4,0x25,0xd2,0xbe,0x44,0x5a,0xd1,0xf8,0x42,0x07,0x48,0xa0,0x65,0x19,0xaa,0xfd,0x6d,0x5d, + 0x2d,0x8a,0x46,0x23,0x9b,0x52,0x51,0x79,0xb3,0xa4,0xae,0xcc,0xf0,0x1d,0x75,0xd8,0xcf,0xef,0xd4,0x3f, + 0x8f,0x08,0x50,0xf3,0xd5,0xbc,0xcd,0xa6,0xff,0xd1,0x84,0x4b,0x8b,0xd1,0x91,0x00,0xf6,0xd6,0xa3,0xba, + 0xce,0xaf,0x8f,0x09,0xbe,0xb3,0x95,0x00,0x0d,0x35,0xef,0x3e,0x28,0x82,0x2e,0x96,0xab,0xf9,0x7c,0x9b, + 0xb6,0xc1,0xc0,0x8e,0x6b,0xfd,0x17,0xd5,0x40,0x13,0xcf,0x4d,0xe6,0x5d,0xad,0xe4,0xb2,0xc5,0xb1,0x03, + 0x5c,0x1b,0x97,0x55,0x31,0xdb,0x3a,0xc0,0x73,0x42,0xe9,0xb6,0xc5,0x6d,0xd7,0xe2,0xee,0x6e,0xdc,0x66, + 0x47,0xed,0x71,0xa2,0x30,0xa8,0xe4,0xac,0xaa,0x63,0x01,0x5f,0x02,0xe8,0xac,0x1d,0xcd,0x75,0x79,0xde, + 0x5e,0x8c,0xcb,0x87,0xc5,0xb8,0xdc,0xdb,0x4b,0xb4,0x34,0x8a,0xea,0x55,0x7b,0x54,0x1e,0xab,0x92,0xd6, + 0x70,0xac,0xe7,0x34,0x49,0xf6,0xcb,0x6a,0xab,0xa0,0xad,0x93,0xbc,0xe1,0x86,0x02,0x00,0xbc,0xc8,0x9b, + 0x37,0x57,0x25,0xad,0xcf,0x52,0xd7,0xed,0xb5,0xe9,0xbc,0xaa,0x92,0xdd,0xdd,0x6e,0xa5,0xd5,0xb1,0xaa, + 0xa8,0x52,0x06,0xba,0x46,0xa0,0x8d,0xf6,0x4d,0x4c,0x50,0xb0,0xca,0x36,0x2a,0x6d,0xab,0xf7,0xb4,0x36, + 0xe5,0xf9,0xd8,0x2f,0xec,0x4d,0xd1,0xf0,0x52,0xd0,0x96,0x36,0x4f,0x8f,0x57,0x67,0x67,0xba,0x4e,0x37, + 0xa1,0xa5,0xbb,0x76,0x52,0xac,0x37,0xb7,0x54,0x87,0xf9,0x7c,0x4a,0x8f,0xcf,0xab,0x7a,0xf1,0x34,0x6f, + 0xf3,0xa1,0xba,0x56,0xa5,0xe0,0xbb,0x99,0x9f,0x5c,0x5b,0x7c,0x77,0xb7,0xa5,0x49,0x69,0x5a,0x40,0x70, + 0x90,0xbc,0xee,0x76,0xf0,0xa7,0x42,0x5f,0xfd,0xc5,0x8a,0x83,0xaf,0x76,0x77,0x83,0x17,0xda,0x26,0xa8, + 0x65,0xb2,0x99,0x44,0xf5,0xa5,0xb4,0xd6,0xed,0xe8,0xd4,0x7c,0x65,0x9f,0xc2,0x8e,0x05,0x9f,0xa1,0x6f, + 0x32,0xb5,0x43,0x5d,0x6a,0x38,0x27,0x84,0x5b,0x2a,0xfe,0x7a,0xb5,0x38,0x1d,0x9e,0xe6,0x92,0x73,0x7a, + 0xc5,0x65,0x2d,0x53,0x42,0xa8,0xcd,0x8f,0x76,0x84,0x03,0x1f,0x6f,0x09,0x00,0xd3,0xa2,0xf0,0x57,0x34, + 0x6f,0xfa,0x73,0x2b,0x89,0xfc,0xcd,0x25,0x7c,0x5e,0xcc,0x3f,0xfb,0x15,0xf2,0x07,0x16,0x7e,0x5e,0x9d, + 0x7e,0xee,0x2b,0xe4,0x0f,0xb4,0x65,0x3e,0x48,0x2b,0x99,0x42,0x9d,0x2f,0x86,0x86,0x05,0x8c,0xb0,0xbb, + 0x4b,0xbb,0x7c,0xb4,0x2c,0x96,0x9a,0xbf,0xfc,0xf1,0xdd,0xcb,0xf7,0x3a,0xaf,0xa7,0x17,0x6f,0xf3,0x3a, + 0x5f,0x34,0x7f,0x11,0x16,0x7a,0x5f,0xf5,0x60,0xad,0x97,0x2b,0xcb,0x9a,0x97,0xb3,0xbc,0x9e,0x3d,0xae, + 0xab,0xab,0x46,0xd7,0xcf,0xca,0xcb,0x74,0xe3,0x7c,0x8d,0x83,0x96,0xdc,0xb2,0x95,0xf9,0x65,0x71,0x9e, + 0xb7,0x55,0x7d,0x7b,0x1b,0xbd,0xd3,0xf9,0xb4,0x7d,0x9d,0xb7,0xc5,0xa5,0xa6,0xae,0x64,0x2e,0x0b,0x7b, + 0x73,0xb6,0x9a,0x62,0x6c,0x43,0x9d,0xbd,0x2a,0xca,0x59,0x75,0x35,0x9c,0x37,0xab,0xa6,0xab,0x85,0x2e, + 0x69,0x99,0x09,0x95,0x3c,0xcb,0xa7,0x17,0x69,0xae,0xf8,0xa0,0x70,0xdd,0xdb,0x6a,0xe3,0xce,0x69,0xaf, + 0x55,0x3d,0x40,0xd0,0xe0,0x78,0x1f,0xc0,0xad,0x7a,0xc2,0xe7,0x7e,0xcb,0xd4,0x01,0x28,0x12,0x7e,0xd5, + 0x6b,0x8f,0xf1,0x88,0x12,0xa8,0x19,0xed,0xe5,0xf5,0x39,0xf7,0xa4,0xb1,0xe8,0xaf,0x26,0xf4,0x57,0x13, + 0xfa,0xcb,0x63,0x97,0x25,0x95,0xd8,0xb3,0xb4,0x5c,0x2b,0x39,0x32,0xd3,0xfe,0x01,0x62,0x0a,0xe4,0xd4, + 0x59,0x97,0xc5,0xfd,0x06,0x75,0x91,0x95,0xd4,0xd1,0x4d,0x5a,0x4a,0x4f,0x9a,0x18,0x1f,0xa7,0x7a,0x4d, + 0x47,0xd6,0x5a,0xd1,0x6e,0x1b,0x84,0xa1,0x96,0x4e,0xf5,0xe5,0x3c,0x9f,0xea,0xf8,0xfe,0x7f,0xff,0xda, + 0xfc,0xed,0xbe,0x8a,0xa2,0xc4,0x27,0x51,0xca,0x0e,0x27,0xad,0xd7,0xdd,0x73,0xad,0x77,0xaa,0x79,0xd4, + 0xd9,0x2d,0xd4,0xa7,0xb4,0x68,0xea,0xdd,0x54,0x81,0xcc,0x60,0x6c,0x11,0xf7,0xe7,0x2a,0xc1,0x1c,0xd2, + 0x84,0x95,0x6e,0xee,0x68,0xde,0x78,0xaa,0xc3,0xa9,0x73,0x24,0xd6,0x28,0x5f,0x2e,0xe7,0xd7,0x3c,0xda, + 0xcd,0x6e,0xba,0xa5,0x0e,0x06,0xbd,0xbd,0xdd,0x8e,0xa6,0x15,0x01,0x78,0x4d,0x50,0x56,0xd5,0x83,0xf3, + 0xd7,0x29,0x31,0xb2,0x18,0x1c,0x38,0x6f,0x28,0x1d,0xfb,0x76,0x68,0x0e,0x7a,0x07,0x36,0x4e,0x4a,0xa4, + 0xde,0xde,0xc6,0x9a,0xa8,0xb9,0xa1,0x65,0x1b,0x81,0xd2,0x78,0x4e,0x14,0x61,0xfb,0xf2,0xd9,0xf0,0xc2, + 0x8e,0x9a,0x79,0x31,0x25,0x2a,0x99,0x60,0x40,0x1e,0xe3,0x03,0x75,0x90,0x24,0x54,0x29,0xc6,0x75,0x62, + 0xbb,0x94,0x30,0xa5,0xaa,0xd7,0xff,0x11,0x3d,0x02,0x4a,0xd9,0x92,0x32,0x0d,0xf5,0x90,0xdf,0x8b,0xb2, + 0xd5,0xf5,0x54,0x2f,0x69,0xc0,0x74,0x34,0x1a,0x22,0x30,0x65,0x2a,0x51,0xd5,0xba,0x59,0xd2,0x7c,0x68, + 0x79,0x5d,0x3b,0x32,0xef,0xef,0x42,0xe6,0x3d,0x10,0x32,0xef,0xf0,0xbf,0x84,0xce,0x3b,0xfc,0x07,0x41, + 0xfb,0x26,0x41,0xd9,0x99,0xb0,0xcd,0x83,0x81,0xc9,0x8b,0xca,0x10,0x7c,0x37,0xab,0x7a,0x9e,0x7a,0x30, + 0x38,0x38,0x5e,0x2b,0xff,0x76,0x78,0x9c,0x24,0x2a,0x28,0x5c,0xa8,0xce,0x80,0xd4,0xcd,0x42,0xb7,0x17, + 0xd5,0x2c,0x8d,0xce,0x75,0x1b,0xad,0x41,0x3a,0x8e,0x24,0x85,0xa8,0x14,0x79,0x20,0x6a,0xe0,0x65,0x75, + 0xa5,0xeb,0x27,0x79,0x43,0xac,0x83,0x4c,0x61,0x76,0xd4,0x28,0x39,0x41,0x88,0x56,0xc9,0x2c,0x75,0x48, + 0x23,0xaf,0xe6,0x97,0x9a,0xba,0x3c,0x06,0x4c,0x6f,0xcc,0x94,0x1d,0xdc,0xc8,0x60,0xa2,0x38,0x1c,0xa4, + 0x1e,0xad,0xca,0xe6,0xa2,0x38,0x6b,0x09,0x77,0x9f,0xad,0xe6,0x67,0xc5,0x7c,0xae,0x67,0x0a,0x7b,0x11, + 0x08,0x47,0xcf,0x12,0x6c,0xda,0x81,0x1a,0x65,0xb2,0xef,0xa8,0x72,0xb9,0x6a,0x2e,0xee,0xae,0x6f,0xac, + 0xed,0x6e,0x4a,0x68,0xef,0x8d,0xda,0x0b,0xcd,0x00,0xc4,0x9d,0x48,0x94,0x7b,0x0a,0xd1,0x51,0xe5,0x1a, + 0x3a,0x8a,0x66,0x7a,0xae,0x5b,0x1d,0x29,0x9e,0x3a,0x15,0x5d,0x10,0x94,0xd2,0x4f,0xb5,0x44,0xf3,0x4d, + 0x74,0xac,0x3a,0x30,0xef,0x97,0x98,0xa8,0xc2,0x2c,0xc0,0x59,0x1e,0x99,0xf1,0xe8,0xcc,0x14,0xc5,0x76, + 0xbd,0xca,0xdb,0x5b,0x42,0xa0,0x76,0x95,0x5a,0x85,0xb5,0x26,0xfc,0x45,0xdb,0x3a,0xe9,0x74,0x66,0x59, + 0x35,0xe8,0xc4,0x72,0xc5,0x7f,0xf3,0x76,0x7a,0xf1,0xd7,0x7b,0x00,0xbc,0xf9,0xb9,0x3e,0xd4,0x43,0x7d, + 0x50,0x33,0x50,0x6c,0xa5,0xe9,0x8a,0xdf,0xe9,0xf5,0x7f,0xb0,0xbb,0x80,0x8d,0xb6,0x8b,0x51,0x40,0xaa, + 0xf0,0xf1,0xdd,0x4b,0x39,0x8a,0x9e,0x54,0xb4,0xe6,0x65,0xbb,0xff,0x81,0x3a,0x1f,0x1d,0x27,0x80,0xfe, + 0x7e,0x62,0xa6,0x93,0x3e,0x43,0xf5,0x5f,0xd8,0x69,0x37,0xdd,0x72,0x69,0x04,0xcc,0x58,0x4c,0x73,0x74, + 0xe1,0xfe,0xa7,0xfd,0xab,0xab,0xab,0x7d,0x9a,0xc4,0xc5,0x3e,0x8d,0x49,0x97,0xd3,0x8a,0x98,0x4e,0xda, + 0x05,0xb4,0xa7,0xf3,0x59,0xbe,0x6c,0x43,0xba,0x4b,0x58,0xc1,0x76,0x7c,0x37,0xc9,0xf0,0xcb,0xab,0x97, + 0xdf,0xb5,0xed,0xf2,0x9d,0xcc,0xde,0xa4,0xa5,0x2e,0xfc,0x83,0x38,0xf4,0x81,0x92,0xb4,0x12,0x53,0xdd, + 0x34,0xbc,0x8b,0x51,0x08,0xc7,0x11,0x41,0x5c,0x5b,0xe7,0x65,0x83,0xde,0x98,0x2a,0xd2,0xa3,0xc1,0xa3, + 0xa3,0xa2,0x35,0xeb,0x8e,0x0a,0xbc,0xa5,0x27,0xa3,0x19,0x9b,0x22,0x21,0x20,0x3c,0x5d,0x5a,0xef,0x55, + 0x28,0x29,0xf7,0x0a,0x8a,0xcd,0x17,0x25,0x42,0x8c,0x5e,0x26,0x44,0x4d,0x8e,0x36,0x48,0x6a,0xce,0x30, + 0xc4,0x2e,0xe7,0xf7,0x48,0x22,0xe4,0xc7,0x35,0x7a,0xfa,0xa7,0x13,0x3e,0x9e,0x5e,0xe4,0x75,0xa3,0xdb, + 0x6c,0xd5,0x9e,0xed,0xff,0x23,0x02,0x30,0x59,0x06,0x84,0x36,0x1f,0x57,0x2e,0x54,0xed,0x70,0x9d,0xbf, + 0x35,0x55,0xb9,0x51,0xc5,0xf7,0xef,0xdf,0xbc,0x1e,0x09,0xda,0x2c,0xce,0xae,0xc1,0x82,0xa5,0xed,0xfa, + 0x38,0x9c,0x61,0x83,0xa4,0x8f,0xc2,0x3d,0x02,0x56,0x6e,0x03,0xd7,0x26,0x6d,0x7d,0x7d,0xd3,0x66,0x5c, + 0xe3,0x12,0xad,0xe0,0x64,0x9b,0x62,0x87,0xe1,0x93,0xb5,0xdd,0x38,0xa8,0xbd,0x58,0xe8,0x6a,0xd5,0xa6, + 0x07,0xea,0x53,0x53,0x9f,0x3d,0xa9,0xaa,0x8f,0x85,0x7e,0x9d,0x2f,0x74,0x1a,0xfd,0xf2,0xfe,0xdd,0xf3, + 0xfd,0x0f,0x6f,0x7e,0x78,0xf6,0x3a,0xe2,0xbc,0xef,0x08,0x57,0xe8,0xda,0xe4,0xed,0x87,0xb9,0x8b,0xfc, + 0x93,0x59,0xda,0x97,0x8c,0x9a,0xd2,0xfd,0x43,0x75,0x99,0xcf,0x0b,0xda,0x6d,0x9a,0x48,0xcc,0x76,0x35, + 0x44,0xc0,0x6e,0xb5,0xdf,0x64,0x0f,0x0e,0x0e,0xe8,0x28,0x7e,0xf8,0xc5,0xc1,0xc1,0x7a,0x3d,0x6e,0x46, + 0x17,0xdc,0x02,0x01,0xf2,0xb4,0x5a,0x2c,0x88,0x6c,0xbe,0x79,0x34,0x05,0xce,0x4c,0x37,0xa6,0x4e,0x6d, + 0xb5,0x44,0x63,0xdd,0x27,0xea,0xa6,0xa0,0xe7,0xbf,0xdd,0xff,0x5b,0x44,0xe7,0x63,0xf1,0x27,0x68,0xae, + 0x8b,0x5a,0x5c,0x6b,0x40,0x2c,0x37,0x40,0x07,0xc5,0x7f,0x82,0x99,0x3a,0x9f,0x5b,0x29,0x46,0x9e,0x74, + 0xb0,0x4a,0xf3,0x27,0x58,0x05,0x7b,0xb3,0xe6,0xad,0x7f,0x37,0xe1,0xe5,0xfa,0xd4,0xfa,0xba,0x04,0xf7, + 0x11,0xa9,0x4d,0xd4,0x43,0x4d,0x60,0xf7,0xe3,0x72,0x69,0x4f,0x3a,0xe2,0x40,0x74,0x37,0x85,0xf1,0x8e, + 0x26,0xf2,0x52,0xc9,0x9c,0xb0,0x28,0x8b,0xfa,0xf9,0x67,0x04,0x85,0xef,0x9c,0x02,0x7a,0xfa,0x5a,0xd0, + 0xd3,0xa1,0xa5,0x04,0xbe,0x30,0x94,0xc0,0x97,0xc2,0x92,0x1f,0x1e,0x80,0x27,0xff,0x1c,0x99,0x2f,0xbf, + 0xa3,0xd3,0xb6,0xca,0x3b,0x2f,0xa3,0x53,0x7a,0x8e,0x25,0x81,0xf6,0x30,0x55,0xf5,0xd5,0xf0,0x74,0x78, + 0x1a,0x8c,0x48,0x14,0x73,0x7a,0xc7,0xc1,0x89,0x30,0x17,0x64,0x77,0x46,0x34,0x00,0xb0,0xbc,0x5a,0xd2, + 0x83,0x59,0xa3,0x71,0x1d,0x62,0x9a,0xb3,0x04,0xa2,0x49,0x9e,0x8b,0x65,0x1f,0x23,0xf3,0xb0,0x67,0x4c, + 0xd3,0x76,0x31,0xa3,0xba,0xc8,0xa2,0xaa,0x04,0x51,0x77,0x4d,0x0c,0x55,0xab,0x69,0xef,0x96,0xe7,0x04, + 0x60,0x97,0xd9,0xf6,0xe1,0x18,0x5b,0x70,0x80,0x49,0x92,0x41,0x11,0x3d,0x67,0x86,0xfb,0xcb,0xd3,0x6a, + 0x41,0x00,0x6b,0x6a,0x24,0xce,0xe9,0xaa,0x68,0x2f,0x9e,0xd4,0x7a,0x46,0xed,0x17,0xf9,0xbc,0x89,0x8a, + 0x72,0x6b,0x76,0x7b,0x4b,0x68,0x68,0x44,0x88,0x06,0xd4,0xa5,0xf4,0x64,0xf0,0x73,0xe9,0x10,0x44,0x8e, + 0xdc,0x89,0x03,0x35,0x1b,0x55,0x25,0xe1,0xe8,0x73,0xa2,0x2e,0x82,0x69,0xa3,0xcd,0xce,0x39,0x66,0x9b, + 0x77,0x32,0x00,0xab,0xf9,0x8a,0xe8,0x74,0x9e,0xb8,0x45,0x26,0x6f,0x23,0x82,0x82,0xba,0xa4,0x5d,0x4e, + 0x1d,0x8c,0xd4,0xb9,0x4d,0x5d,0xe6,0x4d,0x73,0x55,0xd5,0x33,0xa4,0x8e,0x97,0xa3,0x47,0x94,0x56,0xd5, + 0xc5,0x1f,0xbc,0x27,0xb3,0xe8,0x71,0xde,0x14,0xd3,0xad,0x68,0x6f,0x15,0x2f,0xf6,0xe8,0xbc,0xda,0x3b, + 0x4f,0xd6,0x34,0x29,0xd4,0xf0,0x92,0xc8,0x93,0x80,0x28,0x0b,0x00,0x53,0x55,0x32,0x4e,0xea,0xc4,0x92, + 0xb1,0xaf,0x7b,0x78,0xaf,0x6b,0x9a,0x8e,0xe2,0x0f,0x22,0x7e,0xd5,0x36,0x01,0x16,0x7d,0x68,0x7a,0xdf, + 0xda,0x27,0x35,0x3b,0xba,0x38,0x0e,0x07,0x83,0xd6,0x08,0xd4,0xbf,0xa4,0x0d,0x30,0x63,0xda,0xfb,0x1a, + 0x88,0x87,0xc6,0x70,0x89,0x1d,0x00,0xa1,0xd7,0x6c,0xd4,0x30,0x2a,0xba,0xbd,0x9d,0x39,0x0a,0x8c,0xf0, + 0xff,0xee,0xee,0x81,0xf9,0xc6,0x25,0x11,0xb5,0x36,0xd3,0x9f,0xde,0xd0,0xa2,0x9e,0x41,0x58,0x10,0x11, + 0x51,0x7e,0x23,0xbc,0x0e,0xd0,0xc9,0xa3,0xf9,0xdc,0x22,0x62,0xc1,0x88,0xb2,0x6e,0x93,0x9c,0x86,0x3b, + 0x98,0x8d,0xf3,0x80,0x05,0x5a,0x75,0x76,0xc3,0xf4,0x47,0xeb,0x1a,0x03,0xd0,0x11,0x77,0x00,0x64,0x06, + 0xd6,0xb9,0x9b,0x31,0xf1,0x9d,0x4a,0xfd,0xe3,0x07,0x2a,0xab,0x64,0x24,0xe9,0xe1,0x83,0x07,0x5f,0x64, + 0x7e,0x64,0x93,0x07,0x07,0x5f,0xa6,0xf6,0xc5,0x94,0x41,0xf1,0x8d,0x72,0xd1,0xeb,0x6a,0xcb,0xc0,0x7d, + 0xe4,0x3e,0xe0,0x8a,0xcd,0x86,0x49,0x4b,0x45,0xec,0xd1,0x59,0x71,0x4e,0x84,0x93,0x65,0x14,0x66,0xeb, + 0x71,0x81,0x6d,0x46,0xc8,0x47,0x11,0x5c,0xd2,0x80,0xd6,0x02,0x5a,0xba,0xae,0xab,0x3a,0x5c,0x8b,0x79, + 0x3c,0x8d,0xa3,0xd7,0xba,0x25,0x70,0xf9,0xb8,0xf5,0x0c,0xb9,0x91,0x6a,0x15,0x4f,0xc1,0x2c,0x71,0x1f, + 0xdf,0x05,0x96,0xfc,0xb5,0x49,0xdf,0xa2,0x5d,0x14,0xed,0xb9,0x55,0xdf,0x8b,0x16,0xcd,0x96,0xfe,0x34, + 0xd5,0x1a,0x24,0x0f,0xd5,0x19,0x3d,0x7b,0xf2,0xe6,0xf5,0xeb,0x47,0x8f,0xdf,0xbc,0xfb,0xf0,0xec,0x69, + 0xd4,0xa9,0xbd,0x1e,0x0d,0x89,0x37,0x62,0xb3,0x94,0xd7,0xc0,0x59,0xc4,0xdc,0x9c,0x64,0x04,0x84,0xbd, + 0x6d,0xe8,0x77,0x60,0x02,0x3e,0xb1,0x7b,0x2c,0x4e,0xae,0x19,0xba,0xe2,0x7e,0x7a,0x92,0x0a,0x6b,0x31, + 0x3e,0x21,0x70,0x5b,0x1e,0x49,0xb6,0x3f,0x31,0x8f,0xb3,0x13,0xde,0x11,0x11,0x9d,0xf7,0x66,0x03,0x4b, + 0x26,0xc3,0x0e,0xd0,0xb8,0xc5,0xf3,0xcb,0x1e,0xe3,0xeb,0x64,0x5e,0x67,0x04,0x28,0x53,0x83,0xac,0x80, + 0x60,0x22,0x83,0xeb,0x03,0x3e,0x67,0xe2,0xd0,0x9a,0x3e,0xc6,0xba,0xf6,0xda,0xa2,0xd5,0x6b,0xe5,0x84, + 0xea,0x8d,0x98,0xba,0x3c,0xeb,0xa7,0x65,0xd8,0x79,0x5d,0x80,0x64,0xa2,0x62,0xd6,0x49,0xea,0x81,0xac, + 0x21,0x31,0x44,0xf0,0x1c,0xe1,0xa4,0xde,0x04,0xeb,0xa4,0xbd,0xa0,0xe5,0x20,0x8e,0x76,0x90,0x5b,0xaf, + 0xca,0xa7,0xd5,0x15,0xa3,0xb5,0xb7,0x06,0x97,0x11,0xb2,0x1e,0xe5,0xb3,0xd9,0xb3,0x4b,0x90,0x17,0x45, + 0x43,0xe3,0xa7,0x91,0x44,0x16,0xd3,0x11,0x14,0x0c,0x7c,0x93,0x0c,0xf1,0xe4,0x28,0xf8,0xe3,0xb2,0x5f, + 0xf5,0x8a,0x53,0xfc,0xd3,0x9f,0xb6,0xd5,0xad,0x02,0x73,0x34,0xf5,0x4a,0x0a,0x16,0x2c,0xf8,0x57,0xb0, + 0x2f,0xcc,0x65,0x32,0x9b,0x16,0x9e,0x65,0x33,0x9e,0xf3,0xfc,0x94,0x0e,0x39,0x42,0x85,0x10,0x18,0x1a, + 0xc8,0xc5,0x02,0x85,0x6b,0x1e,0x9f,0x49,0xb2,0xc2,0x7a,0xd2,0x49,0x79,0xf6,0x1f,0x9c,0xdd,0x74,0x2a, + 0xdf,0x41,0x59,0xe0,0x13,0xc3,0x79,0x8c,0x64,0xa7,0x8f,0xba,0x04,0xdb,0xb8,0x34,0x68,0x81,0x38,0x9b, + 0xdd,0xdd,0xed,0x22,0xb6,0xef,0xc9,0x84,0x78,0xab,0x38,0x32,0x80,0xb5,0x75,0x96,0x13,0x8a,0x9c,0x6d, + 0x01,0x78,0xb6,0xa4,0xc0,0x16,0xe8,0x63,0xda,0xb5,0xf6,0x03,0x65,0x5b,0x10,0x0c,0x50,0x3a,0xf5,0x53, + 0x09,0xfa,0x36,0x2e,0xff,0xfa,0x68,0x0e,0xef,0x1e,0x8d,0x2a,0x54,0x25,0x23,0xca,0xf9,0xc8,0x64,0xac, + 0x03,0x9e,0xde,0x69,0x9a,0x72,0x57,0xec,0x7f,0x22,0x02,0x03,0xbf,0xa9,0x8a,0x40,0xda,0x26,0x43,0xca, + 0x28,0x03,0x04,0xd6,0x08,0x63,0xce,0x4a,0xd9,0x30,0x22,0x0b,0xa9,0x83,0xcd,0x93,0x15,0xc4,0x2b,0xfd, + 0x0f,0x14,0x4a,0x5b,0xc2,0x6c,0xfc,0xf8,0xee,0xc5,0x93,0x6a,0x41,0x35,0x11,0x54,0x52,0xa6,0x17,0xeb, + 0xfd,0xef,0x2f,0x0f,0xee,0x9f,0x17,0x2a,0xfa,0x3f,0xa1,0xac,0xef,0x7f,0x7f,0xf1,0x88,0x13,0xd3,0x4e, + 0xe2,0x83,0x2f,0xef,0x9f,0xab,0x68,0xa7,0x9b,0xf6,0x84,0x0b,0xaa,0x6e,0xe2,0x01,0x0a,0xee,0x75,0xd2, + 0xbe,0x7a,0xcc,0x05,0x8f,0xba,0x89,0x4f,0x39,0xf1,0x38,0x0a,0x79,0xd8,0xcf,0x80,0x1b,0x61,0x84,0x6d, + 0x6d,0x55,0xb1,0x2d,0xaf,0x6a,0x05,0xca,0xa9,0x4c,0x40,0x58,0x6a,0xa3,0x3a,0xa2,0x84,0x21,0xc6,0x4c, + 0x27,0x54,0x4a,0x07,0x2c,0x16,0x97,0x36,0x0b,0x7e,0x74,0x3c,0xf6,0xb4,0xbb,0xee,0x2d,0xee,0x90,0xfa, + 0x8b,0x96,0xcc,0x71,0x87,0xcc,0xbc,0xc7,0x7a,0x2f,0x8b,0x8e,0x8e,0x0d,0x4f,0x6a,0xd3,0x89,0x00,0x33, + 0xfa,0xb0,0x62,0x88,0x0c,0x07,0xef,0x35,0x12,0x35,0x04,0x33,0x96,0xa0,0x4e,0xaa,0x17,0xef,0xdf,0xd8, + 0x2e,0x76,0x99,0x40,0xe6,0x9b,0x37,0x39,0x3c,0xe8,0x5b,0x21,0xef,0x21,0xe4,0x9c,0xec,0x45,0x59,0xb4, + 0xc7,0xaa,0x37,0x08,0x28,0x40,0x70,0xe7,0xa3,0xdf,0xaa,0xa2,0x8c,0xa3,0x5d,0x9a,0x64,0xcb,0x48,0xa3, + 0xa2,0xbd,0x2c,0xde,0x3f,0x84,0x1e,0xc4,0x93,0x2a,0x93,0x28,0x99,0xd0,0x9f,0x14,0x65,0xf7,0xaa,0xe4, + 0xcf,0x01,0xae,0x43,0xe0,0x1f,0x45,0x39,0xa8,0xd9,0x28,0x0f,0xc9,0x3a,0x7a,0xb7,0x07,0x8e,0x88,0x9c, + 0x82,0x04,0x3e,0x81,0x54,0xa4,0xdb,0xfc,0x1c,0x3f,0x9f,0x96,0x05,0x01,0x3b,0x3d,0x9d,0x11,0xc2,0x03, + 0xc3,0x25,0xfc,0x53,0x71,0xb6,0xbf,0xa8,0x66,0xc5,0x59,0xa1,0x67,0xfb,0x4d,0x41,0x68,0x51,0xd2,0x56, + 0xe5,0x46,0xea,0x3c,0x6f,0x5a,0x57,0x16,0xef,0xd5,0xd4,0xf6,0x81,0xb8,0x4b,0x70,0xdf,0x57,0x74,0x90, + 0xa3,0x05,0x42,0xa9,0x9f,0xae,0xf7,0xfb,0x1d,0xad,0x35,0xf1,0xf4,0x74,0x9c,0xe2,0x89,0x8e,0xa9,0xfd, + 0xfc,0xac,0xe5,0x37,0x10,0xb3,0xfb,0x34,0x36,0xa2,0x74,0x8e,0xef,0x60,0x2b,0x58,0x38,0x48,0x1b,0xbc, + 0x82,0xe4,0xc5,0x6b,0xfc,0x89,0x6b,0xf7,0xab,0x3e,0x6a,0x88,0x01,0x6d,0xe3,0xe8,0xd7,0x92,0x60,0xa4, + 0xc7,0x7d,0x57,0xe1,0x32,0xd0,0xae,0x53,0x3a,0x23,0xae,0xac,0x2e,0x16,0xf8,0x6c,0x75,0x4a,0xf3,0x1d, + 0x1f,0x10,0xda,0x49,0xba,0x67,0xb5,0x2a,0x37,0x4a,0x55,0x7b,0x87,0x04,0x10,0x72,0x78,0xe6,0x74,0x84, + 0xb3,0x50,0xc9,0x54,0xac,0x93,0x6f,0xb2,0x03,0xb3,0x7b,0xc6,0xc8,0xcc,0x40,0x4a,0xec,0x4f,0x99,0x00, + 0x61,0x52,0x60,0xc2,0xdf,0x4c,0xf0,0x27,0x3d,0x3a,0x4e,0x80,0xa1,0x68,0x0a,0xe3,0xa3,0xf2,0x38,0x49, + 0x5d,0xce,0x5e,0xa4,0x80,0x9a,0xd3,0x12,0x0c,0x6f,0x4e,0x19,0x7f,0x1d,0x4a,0x82,0xd9,0xbb,0x8b,0xb6, + 0x9a,0x84,0x0a,0x02,0xaf,0xa8,0x71,0x16,0x09,0xad,0x13,0x4a,0xf2,0x0e,0xa4,0x01,0x3c,0x6a,0xa9,0x9d, + 0xd3,0x15,0xed,0xa0,0xe8,0x82,0x96,0x30,0x82,0x91,0x01,0xa1,0xcb,0x11,0x5e,0xb0,0xed,0xee,0x28,0x72, + 0x83,0xa7,0x54,0x8a,0x29,0x16,0x11,0x4e,0xab,0x39,0xbd,0xdb,0xc7,0x89,0x7f,0xf4,0x18,0x2b,0x15,0x15, + 0x48,0x4a,0x5c,0x0d,0xc0,0x13,0x9f,0xd3,0x8f,0x6a,0x18,0xcf,0xa4,0x68,0x0b,0x0f,0x13,0xfb,0x10,0x2a, + 0x54,0x26,0xfe,0xcb,0xbc,0x41,0x59,0xfc,0x4c,0xe4,0x27,0x28,0xf7,0xbf,0x3a,0x0d,0x80,0x87,0x32,0x8d, + 0xe0,0x51,0x61,0xee,0xd0,0x47,0xfa,0x51,0xcb,0xbc,0xbd,0xe0,0xfc,0xe8,0x3e,0x16,0x8f,0x52,0x4d,0xc2, + 0x08,0x42,0xa1,0x47,0x6d,0x7c,0x90,0x4c,0x7c,0x22,0x4a,0xed,0xf9,0x57,0x11,0xcf,0xd3,0x5a,0x65,0xf7, + 0xe3,0x45,0x53,0xe8,0x5b,0x9a,0x20,0x90,0x6d,0xc9,0xfd,0x62,0xd4,0x42,0x06,0xea,0x55,0x70,0x00,0xff, + 0x47,0x80,0x7e,0x6c,0x72,0xab,0x55,0x33,0x16,0x19,0xcf,0xe6,0x1a,0x6f,0x71,0x94,0x47,0xee,0x9c,0xa4, + 0x35,0x32,0xbc,0xf8,0xc8,0xee,0x40,0xb3,0x16,0x5e,0xfa,0x60,0x29,0x07,0x81,0x02,0xc6,0x75,0x25,0xa1, + 0x3f,0xfa,0x93,0x96,0xde,0xa0,0xc4,0xce,0x3f,0x53,0xa9,0xf6,0x05,0x10,0x8d,0xf9,0xe0,0x44,0x3c,0xac, + 0xd7,0x84,0x27,0x37,0x54,0x8e,0xdb,0x07,0x9f,0x3f,0xa3,0x03,0x65,0x90,0xd1,0x75,0x2c,0x88,0x14,0xa3, + 0x5d,0x9e,0x45,0xd2,0xa1,0x2d,0xa0,0x29,0xe2,0x95,0x9b,0xad,0x9c,0xfa,0x52,0x32,0x69,0xb3,0x85,0x99, + 0xcd,0xa7,0x40,0x0b,0x6b,0x81,0xea,0xe8,0xd1,0xe3,0x27,0x4f,0x9f,0x3d,0xff,0xf6,0xbb,0x17,0xdf,0xff, + 0xf0,0xf2,0xd5,0xeb,0x37,0x6f,0xff,0xf9,0xee,0xfd,0x87,0x1f,0x7f,0xfa,0xf9,0x97,0x7f,0xfd,0x3b,0x3f, + 0x9d,0x12,0x3b,0x7f,0x7e,0x51,0xfc,0xf6,0x71,0xbe,0x28,0xab,0xe5,0xef,0x75,0xd3,0xae,0x2e,0xaf,0x3e, + 0x5d,0xff,0x71,0x70,0xf8,0xe0,0x8b,0x2f,0xbf,0xfa,0xfb,0x7f,0xfd,0xe3,0xeb,0xbd,0xfb,0x59,0x34,0x2e, + 0xbd,0x84,0xda,0x13,0x1e,0x2a,0x48,0x15,0xd2,0xe0,0xab,0x4e,0x12,0x16,0x31,0x8b,0x5e,0x48,0xbf,0x9e, + 0xd8,0x6e,0x59,0x4e,0x69,0x10,0x49,0x59,0x7d,0x9b,0x06,0x09,0x93,0x99,0x69,0x6f,0x21,0x8c,0x21,0x68, + 0x6b,0xb2,0x03,0x18,0xde,0x8c,0x2b,0x07,0x3d,0xb7,0x0d,0x4e,0xaf,0x69,0x46,0x27,0x8a,0x6a,0xfe,0x37, + 0x11,0x4e,0xf9,0x5e,0x36,0xb5,0xb9,0x7f,0xff,0x62,0x57,0x7f,0xf3,0xcd,0x3f,0xf6,0x29,0xe3,0x6f,0xff, + 0x48,0x18,0xdd,0xc4,0x45,0x26,0x1f,0x3f,0xa1,0xde,0x52,0x91,0x66,0x2f,0x1b,0xfd,0xd7,0x57,0x49,0xf2, + 0xcd,0x83,0xaf,0xbe,0x32,0x04,0x3b,0x46,0x57,0x8e,0x75,0xa6,0x1f,0x3e,0xfc,0xc7,0x6d,0x61,0x8f,0xa3, + 0xff,0xc7,0x08,0xe4,0xe6,0xaa,0x2e,0x3a,0x5a,0x7d,0x4b,0xb5,0x11,0xb2,0xba,0x11,0x33,0x10,0x3a,0xed, + 0x1b,0xa3,0x23,0xe1,0x03,0x73,0x80,0x46,0x22,0x6a,0x81,0xf9,0x3f,0x31,0x43,0x20,0xc0,0xdc,0xdd,0x35, + 0x9f,0xd8,0x93,0x8a,0xbe,0xc3,0x78,0xf8,0xec,0x2e,0x81,0x99,0xbf,0x7d,0xf5,0xc1,0x49,0x6f,0x55,0x00, + 0xd9,0x45,0xf0,0x2d,0xf6,0x1f,0x7d,0x58,0x74,0x0a,0x54,0x41,0x81,0x19,0x0b,0x68,0xa8,0x48,0x05,0xc1, + 0x05,0x01,0x79,0xee,0xf3,0x1a,0x3d,0x5d,0xd5,0x90,0x7a,0xfb,0x5d,0xc8,0xb8,0x3b,0x6b,0xcc,0x19,0x3f, + 0xde,0xa2,0x43,0x5e,0x81,0xb9,0x4c,0x37,0x4e,0xa7,0xac,0xf7,0xd1,0x68,0xc1,0x7c,0x16,0x86,0xf0,0x4e, + 0x9f,0x3f,0xfb,0xb4,0x8c,0xa3,0xf8,0xbf,0x6f,0xc7,0xbf,0xfe,0xda,0xfc,0x2d,0x89,0x89,0x61,0x26,0xf2, + 0x2d,0x8b,0x8f,0xfe,0x7b,0x7c,0xfc,0xb7,0x24,0xf2,0xaa,0x20,0x4d,0xfc,0xe1,0xe6,0x5c,0x1d,0x7d,0x71, + 0x2c,0xf2,0x09,0x34,0xbe,0xa8,0x2e,0xbb,0xd6,0x11,0xbc,0xbb,0x78,0x51,0x68,0x2d,0x08,0xd4,0x30,0x63, + 0xa3,0xb2,0xba,0x8a,0x93,0xfd,0x7f,0xfc,0xfd,0x4b,0xfd,0x15,0x51,0xd3,0x69,0x7f,0xd1,0x20,0x73,0xea, + 0x8e,0xa3,0xa3,0x3f,0xdd,0x6c,0x87,0x3e,0xf8,0x0f,0xc8,0x63,0xd3,0xa9,0x0b,0x02,0x9f,0x39,0xa4,0xc5, + 0x47,0xc7,0x21,0x01,0x1a,0xea,0x25,0xa9,0x82,0x61,0x45,0x76,0xa7,0x02,0x59,0xa0,0x1b,0xa7,0x6f,0x63, + 0x99,0x87,0xe8,0xdb,0x44,0xeb,0xde,0x29,0x2c,0x94,0xd0,0xfe,0x21,0x24,0x0c,0xbe,0x25,0x2e,0x9f,0x6d, + 0x4c,0x9c,0xfd,0x8a,0x88,0x48,0x90,0x6d,0xbd,0x24,0xc3,0xef,0x75,0x2a,0x32,0x14,0x47,0xd6,0xa5,0x32, + 0x1d,0x1d,0x12,0xd6,0x10,0x18,0x11,0x38,0x32,0x57,0x13,0x03,0x4a,0xaf,0xc4,0x22,0xfe,0x0f,0xb5,0x5b, + 0xb0,0x3b,0xfc,0x0c,0x3f,0xcb,0xa8,0xe0,0xc5,0x99,0xe1,0xfe,0xf4,0x2c,0xde,0x50,0x60,0x1d,0x7e,0x2d, + 0x12,0x62,0x98,0xe6,0x39,0x9b,0x40,0x7a,0x3d,0x84,0x80,0x98,0x7e,0xef,0xe0,0x11,0x68,0x69,0x80,0xce, + 0xda,0xd1,0x69,0x6e,0xc4,0x72,0xdb,0x53,0x23,0x85,0x61,0x06,0x8b,0x1e,0xb2,0x55,0xec,0xb2,0x95,0x11, + 0xd0,0x28,0x27,0xe3,0xf5,0xd2,0x5e,0x56,0xfc,0x89,0x10,0x38,0x83,0x8c,0x91,0xa5,0xc1,0x2e,0x17,0x8a, + 0x9a,0x9e,0xca,0x2a,0xac,0xc5,0x8a,0xf2,0x5d,0xca,0x48,0x74,0x11,0xa6,0x52,0x27,0xf4,0x37,0x22,0xcd, + 0xe3,0x6e,0x3a,0xde,0x92,0x3f,0x55,0x44,0xa8,0x21,0xf5,0x02,0x48,0x6b,0x34,0x14,0xea,0x19,0x68,0x5d, + 0xad,0xd0,0xde,0xb5,0xac,0x8f,0xd7,0x76,0x43,0x53,0x27,0x8d,0xc6,0xef,0xf6,0xb6,0xb1,0x8f,0x09,0x38, + 0xc4,0xae,0xb8,0xc1,0xc3,0x3d,0xcf,0xb1,0xb6,0x53,0x23,0x0f,0xf4,0x3e,0x38,0x35,0xc2,0xba,0x52,0xf1, + 0xb5,0x1a,0xa8,0x29,0xa7,0x67,0x3a,0x61,0xa4,0x42,0xd8,0xed,0x59,0x5e,0x17,0xcc,0x94,0xd7,0x70,0xbb, + 0x96,0x3a,0x29,0x2a,0x78,0xff,0x5c,0xdb,0xb4,0xbe,0x5e,0x4d,0xcf,0x7c,0x94,0xfe,0x8f,0x34,0x17,0x9f, + 0xe1,0x46,0xed,0x84,0xb8,0xa5,0x2a,0x3b,0x14,0x0e,0x54,0x9c,0x40,0x18,0xeb,0x4d,0x46,0xea,0x2f,0xc8, + 0x0b,0x1c,0x1d,0x13,0x6f,0xb7,0xb7,0xb7,0xb0,0xe6,0x38,0x79,0xf2,0xe8,0xf5,0x93,0x67,0x2f,0x4f,0x4e, + 0xfe,0x07,0xd2,0x07,0x5b,0xdb,0xfd,0xff,0x8e,0x8f,0xf2,0xfd,0x3f,0x8e,0xf1,0xe7,0xd7,0xd9,0xaf,0x7b, + 0xbf,0xee,0xff,0x3a,0x3a,0xfe,0x5b,0x9a,0x4c,0x7e,0xbd,0xff,0xeb,0x7d,0x4b,0xfa,0xb5,0xff,0x23,0xf1, + 0x86,0x17,0x38,0x4c,0x02,0x43,0xa2,0x5f,0xef,0xef,0x09,0xc9,0xbc,0x07,0xfa,0x53,0x87,0x04,0xf1,0xfd, + 0x3d,0x21,0x75,0xff,0x64,0x72,0xba,0x56,0x3b,0x1d,0x4a,0xad,0x5d,0x97,0x03,0xc6,0x9b,0xd9,0xc6,0x91, + 0x11,0x89,0xb1,0x6f,0xb4,0x17,0x87,0x9f,0x13,0xa3,0x0b,0xc1,0x70,0x90,0x92,0xc2,0xba,0xa9,0x43,0x65, + 0xf9,0x49,0x87,0x7a,0x24,0x30,0xa7,0xfe,0x8f,0xd0,0x21,0x04,0x99,0x4e,0x96,0xb8,0x1d,0x28,0x58,0x1d, + 0x51,0x04,0xa1,0xa6,0xc8,0x9b,0x88,0xba,0xa0,0x53,0x9e,0xe8,0xee,0xad,0xc5,0xaa,0x69,0xb7,0x4e,0xf5, + 0x56,0xee,0x6c,0xa6,0x46,0x91,0x31,0x43,0x19,0x73,0xaf,0x8d,0x60,0x30,0x1b,0x54,0x66,0xc1,0x0c,0x84, + 0x26,0x48,0x3e,0x28,0x33,0x7c,0x30,0x6e,0x3b,0xd9,0x90,0xa2,0xe5,0x0d,0xd0,0x52,0x6c,0x1f,0xb9,0xaa, + 0x82,0xf7,0xa3,0x4b,0x83,0x18,0xc1,0x23,0xe8,0x2f,0xba,0xa7,0x63,0x1f,0x97,0xf7,0xd4,0x29,0xc6,0xaa, + 0x82,0xab,0x91,0xc1,0x06,0x29,0x38,0xb4,0x9a,0x6a,0x55,0x4f,0x75,0xf8,0x55,0x68,0x6c,0x70,0xd3,0xe2, + 0xc0,0x60,0x7b,0xa2,0xba,0x83,0x8a,0xda,0x0c,0x87,0xaa,0x1c,0x2a,0x0c,0x3f,0x77,0x1e,0x54,0xff,0xc1, + 0xde,0xd8,0x1a,0x40,0x51,0xd6,0xa0,0x8c,0xc5,0x8e,0x1a,0x36,0x65,0xd0,0x7b,0xf6,0x5b,0xb8,0xdb,0x07, + 0x62,0x40,0x99,0xf9,0xff,0xc8,0x0d,0x42,0xc3,0xb1,0xe1,0xa7,0x95,0x1e,0x76,0x6b,0x18,0x06,0xc6,0x76, + 0xd0,0x0e,0xf6,0xf6,0x16,0xa3,0x63,0x8b,0xd8,0xc0,0x18,0xb2,0x5f,0x52,0x64,0x5e,0x56,0x12,0xb6,0xee, + 0xee,0x4a,0xcb,0x72,0x75,0x2b,0x09,0xcd,0xda,0x37,0xac,0x0b,0x6e,0x6f,0x37,0xed,0x78,0x29,0xad,0xb9, + 0x5e,0x9c,0x56,0xf3,0x6e,0xda,0x69,0x55,0xcd,0x75,0x5e,0x0e,0xda,0xb5,0xff,0xbf,0xb1,0x84,0x17,0x09, + 0x1b,0x1b,0xdf,0x2e,0xca,0x41,0x43,0x78,0x4b,0x44,0xb3,0x21,0x04,0xdb,0xe4,0xc5,0x8e,0x81,0xf2,0xc4, + 0xf1,0x37,0xd9,0xc1,0xee,0xee,0x2b,0x22,0xf1,0x47,0x67,0xf3,0xaa,0x82,0x3c,0x2e,0x63,0x7a,0x0a,0x06, + 0x26,0x25,0xd3,0xbf,0x41,0xad,0x4d,0xaf,0xeb,0xd4,0xd9,0x49,0x14,0x6d,0x7a,0xb6,0xb4,0x93,0xbe,0xc8, + 0x4f,0xa4,0xe0,0x0f,0x92,0xd4,0x75,0xc1,0xd7,0x3a,0x1d,0xec,0xab,0x97,0x62,0x13,0x47,0x93,0xbf,0xa6, + 0x8e,0x4d,0x5a,0x22,0x4c,0xdd,0x57,0x2b,0x63,0x21,0xe9,0x2c,0x32,0x8d,0x69,0xbc,0x70,0xf9,0xb1,0x68, + 0x0f,0xea,0xcc,0xc9,0xb0,0x14,0xc4,0x9c,0xd9,0xc1,0xb8,0x78,0x58,0x5b,0x53,0xb2,0x42,0x0c,0x33,0x8f, + 0x8a,0xe3,0x63,0xc2,0x95,0x9e,0x5f,0x18,0xd2,0xbe,0x1f,0xb5,0x5d,0x41,0xd6,0xf1,0x7a,0xc8,0xb8,0x83, + 0x8a,0x1d,0xaf,0x7d,0x1f,0xe7,0xce,0x1d,0xc1,0xfa,0x11,0x58,0x95,0x6a,0x1b,0x88,0xb8,0x58,0x1c,0xfc, + 0xcd,0xfe,0xa1,0x93,0x12,0x73,0x97,0xe9,0xc4,0x29,0xd5,0x61,0x12,0xd4,0x76,0xd6,0x39,0xb3,0x4e,0xec, + 0xaa,0x63,0x93,0xbb,0x32,0x4b,0x3f,0x97,0x03,0xf3,0x31,0xee,0xa3,0x0d,0x4f,0x12,0xe8,0xa3,0xf2,0x18, + 0x86,0x9d,0xf4,0x03,0x0b,0xe1,0x24,0x6c,0x78,0xb6,0x61,0x8c,0x6a,0xa4,0x21,0xf5,0x80,0xa1,0xb0,0xa1, + 0x30,0x26,0xf5,0x37,0x87,0x13,0x6f,0xdc,0xea,0xca,0x01,0x07,0x70,0xbf,0xd9,0xbc,0xd7,0x3e,0x3b,0x39, + 0x6f,0x39,0x3a,0x91,0x8a,0x9c,0xe7,0x85,0x2a,0x7d,0x47,0x2e,0xa4,0x23,0x84,0x41,0x6e,0x6f,0x0f,0xc6, + 0x7e,0xe9,0x6d,0xd9,0x7d,0x4d,0x2b,0xee,0x2d,0x73,0xcb,0x64,0x5c,0xee,0xef,0x8f,0x93,0x9a,0x07,0x75, + 0x54,0xee,0x69,0x67,0x76,0x5b,0xfb,0x4a,0x2f,0x7b,0x80,0x04,0xef,0x0d,0x9d,0xc0,0xb7,0x23,0xc3,0x6c, + 0x38,0xc9,0xa8,0xff,0x62,0xd1,0x11,0x4d,0xc0,0x6a,0xba,0x24,0xc0,0x2a,0x1f,0x7a,0x67,0x11,0x02,0x2c, + 0x54,0xb0,0xbb,0x7b,0x09,0xed,0x23,0x84,0x91,0x0e,0xba,0x7c,0x35,0xe7,0xf6,0x1c,0xf6,0x49,0xd7,0x1e, + 0x60,0xb0,0x0d,0x13,0x8b,0xa5,0xcc,0x91,0xc8,0xe7,0x5c,0x4d,0x3f,0x02,0x34,0xdb,0x74,0x10,0x6e,0xd7, + 0xb6,0x10,0x71,0x2d,0xdb,0xf5,0xee,0xae,0xdb,0x60,0x54,0x81,0x79,0xa6,0xd2,0xd0,0x61,0xb2,0xee,0x21, + 0xe3,0xa9,0x09,0xc4,0xfd,0xc4,0xb6,0x74,0x93,0xa4,0xee,0x6a,0x77,0x37,0xf7,0x00,0x69,0xd6,0x04,0xf2, + 0x2b,0x79,0x04,0x87,0xa4,0x2f,0x75,0x7d,0x1d,0x9c,0xcf,0x01,0x81,0xc9,0xe3,0xc0,0xb0,0xd7,0x52,0xd9, + 0xed,0xad,0xad,0x6c,0xfb,0x70,0x2c,0x02,0x0d,0x03,0x9e,0x1f,0xf5,0x35,0xb0,0x0a,0x71,0x4b,0x61,0x82, + 0xb7,0x2b,0x6f,0x7c,0xdb,0x53,0xd7,0x76,0xd3,0x6f,0xbb,0xd3,0x32,0xbc,0x72,0x4c,0xe3,0xde,0xf8,0xcb, + 0xb6,0x1e,0x80,0xf5,0x49,0x1f,0x83,0x6c,0xac,0x21,0x75,0xdd,0xd6,0x97,0x38,0x77,0x3a,0xd3,0x33,0xe2, + 0x85,0x5d,0x4d,0xa7,0x7e,0xd7,0xd1,0xf8,0x36,0xcd,0xc6,0x35,0x9b,0x4c,0x33,0x39,0x26,0x1b,0x82,0x0f, + 0x3f,0xbf,0x27,0xc2,0xcd,0x76,0xe5,0xeb,0x82,0xa8,0x27,0x4a,0x42,0x01,0xd5,0x81,0x9b,0x97,0x2f,0xfe, + 0x8e,0xd5,0xb8,0xbd,0xfd,0xfa,0x2b,0xfc,0xfa,0xcf,0x77,0xac,0xde,0x2e,0xb9,0x31,0x13,0x2a,0xa7,0xaf, + 0x75,0x3b,0xe2,0x6c,0xaa,0x7f,0xbe,0xd2,0x69,0xa9,0x34,0x1d,0x68,0xba,0xce,0x4f,0xe7,0x3a,0xdd,0xde, + 0xae,0x15,0x24,0x1a,0xf2,0x72,0x60,0x2c,0x21,0x56,0x26,0xf3,0x60,0x1d,0x20,0x99,0x4f,0xc1,0x79,0x34, + 0xa0,0x70,0xde,0xdd,0xbd,0x5f,0xb2,0x5f,0x04,0xeb,0x44,0xef,0x1b,0x0a,0x3d,0x34,0x14,0xf4,0x55,0x7d, + 0xec,0x59,0x38,0xb5,0xb4,0x16,0x7c,0x78,0xab,0xee,0x8f,0x3f,0xb9,0xfc,0xb7,0x4f,0x8c,0xa9,0x80,0x41, + 0x01,0x53,0x2b,0xdc,0x79,0x23,0x66,0xbd,0x06,0x15,0x50,0x8d,0xd4,0x76,0x7e,0xae,0x1c,0x4b,0x3c,0xbd, + 0x28,0xe6,0xb3,0x5a,0x97,0x60,0xbe,0x60,0xfd,0x41,0x90,0x3c,0x5f,0x28,0x56,0x6e,0xf2,0x3b,0x32,0xf2, + 0xe6,0xba,0x9c,0x3e,0xcf,0x61,0x26,0x7f,0xed,0xd5,0xa9,0xa3,0x12,0x0c,0x37,0xaa,0x16,0x49,0x5e,0x5b, + 0x4c,0x81,0xc9,0xcd,0x23,0xa5,0x12,0xf0,0x66,0x0c,0xc2,0x5c,0xe2,0x09,0xb1,0xb6,0xd4,0x1f,0x2e,0x62, + 0x9e,0x29,0xfd,0xac,0x7c,0x22,0x0d,0x51,0xba,0x7b,0xe6,0x74,0xd3,0x71,0x4e,0x77,0x83,0xa0,0xe7,0xf7, + 0x53,0x5a,0xbb,0x17,0x33,0x4e,0x37,0xcf,0x52,0xff,0x9c,0xc6,0xcb,0x9e,0x97,0x5a,0xd4,0xb1,0x66,0x60, + 0xf4,0x52,0xbb,0x97,0xec,0x51,0x90,0x03,0xc3,0xa2,0x04,0xca,0xdb,0x32,0x2c,0x5c,0x86,0x85,0xcb,0x6e, + 0x61,0xc2,0x37,0x7e,0xc6,0x1f,0xf5,0x77,0x8c,0x43,0xd2,0x5d,0xb4,0x6b,0x0e,0xda,0x92,0x4f,0x58,0x9c, + 0xaf,0x19,0xad,0x15,0xfd,0x04,0xfe,0x22,0x41,0xad,0xef,0x1d,0xd2,0x13,0x97,0xa0,0xed,0xb8,0xe3,0xc0, + 0xd3,0xd6,0xd6,0x10,0xc9,0xed,0x2c,0x08,0xe5,0x4e,0x4e,0xaa,0xd3,0x93,0x93,0x88,0x8d,0x55,0xe4,0x39, + 0xfc,0xa8,0xa9,0x27,0xe8,0x9d,0x64,0xa4,0x39,0x91,0xed,0x17,0xd5,0x6a,0x3e,0xa3,0xd9,0x26,0xc4,0x41, + 0x10,0xba,0xfd,0x7d,0xc9,0x46,0x82,0x7d,0x6c,0x78,0x7b,0x0b,0x62,0x8b,0x72,0xcc,0xe6,0x29,0x9a,0x67, + 0xf0,0x6a,0x69,0x8a,0x53,0xb6,0xb6,0xa5,0x0f,0xd9,0x49,0x81,0xa8,0x58,0xcc,0x1b,0x0f,0xba,0x61,0xdd, + 0x25,0x96,0x80,0xe7,0xf5,0x72,0xf1,0xa4,0x5a,0x95,0xed,0xde,0x1e,0x1d,0x5c,0x7e,0x8c,0x1f,0x42,0x75, + 0xba,0x20,0x62,0x7c,0xfb,0xaf,0x92,0xd0,0xaf,0x69,0xea,0x5c,0xb7,0x81,0x7b,0xe0,0x53,0xdd,0x4c,0xeb, + 0x02,0x96,0xf3,0x3c,0x3b,0x8c,0xee,0x73,0x42,0xf7,0x87,0x44,0x2e,0xe6,0xa3,0x70,0x73,0x5a,0x09,0x71, + 0x4e,0x18,0x1b,0x95,0x10,0x2a,0xe5,0xc7,0x86,0x1e,0x57,0xd9,0x76,0x41,0x47,0x02,0x4e,0xc2,0xcf,0x60, + 0x83,0x10,0x0b,0x6c,0x6c,0x7c,0x45,0x55,0xf6,0x4d,0xab,0x75,0xd6,0x4c,0x1a,0x4b,0x74,0x7a,0xf5,0xc7, + 0xbf,0x4a,0xda,0x68,0x35,0x95,0xa7,0xb9,0xa9,0xa8,0xa5,0x25,0x2c,0x37,0x12,0xb5,0xa2,0xd7,0x15,0x5e, + 0x7d,0x52,0xff,0xc4,0xd9,0xdd,0x0d,0x28,0xfe,0x0e,0x84,0x99,0xfd,0x2f,0x6e,0x49,0xba,0xef,0x8e,0x44, + 0x4b,0xa0,0x61,0xd8,0x89,0x89,0x97,0xb5,0xf6,0x4f,0x9f,0x6b,0x11,0xb2,0x71,0x36,0xc2,0x88,0x59,0xdc, + 0xa2,0xd7,0xaa,0x09,0x47,0xa9,0x2d,0x79,0xd3,0x1d,0xa6,0x26,0x54,0x5b,0xdf,0xde,0xea,0x6d,0x36,0x41, + 0xdd,0xc6,0x73,0x3c,0x9d,0x4c,0x3d,0x1d,0x96,0x52,0x77,0xdc,0x9c,0x6b,0x58,0xfd,0x97,0x55,0x0b,0xfa, + 0x97,0x2d,0xef,0x03,0x70,0x78,0x13,0x98,0x07,0xf4,0x41,0x90,0xd6,0x2e,0xf6,0xc7,0x8d,0x3b,0x7b,0x99, + 0x46,0x5f,0xe4,0x9f,0x1c,0x29,0x09,0x8d,0xa0,0x23,0x15,0xb5,0x3a,0xa4,0xea,0x54,0x09,0x38,0xd1,0xec, + 0x7f,0x8a,0x7d,0xc4,0x4f,0x7d,0x97,0x51,0x5f,0xb5,0x18,0xc8,0x96,0x46,0x74,0x64,0x77,0x8b,0xf7,0x4c, + 0x12,0x40,0xbf,0xbd,0xad,0x61,0xa9,0x65,0xe0,0x7a,0x52,0xa6,0xf5,0x24,0xfe,0x40,0x08,0x86,0xcf,0x10, + 0x1e,0x05,0x21,0x23,0xcc,0xb5,0x1d,0x2b,0x08,0x3b,0x6b,0x7d,0x5b,0x06,0xf8,0xfa,0x37,0xb7,0xcf,0xef, + 0x18,0x72,0x38,0x9a,0xc0,0xd4,0xc1,0x6f,0xe4,0xb1,0xef,0x53,0xb8,0xd7,0x6e,0x6f,0x85,0x34,0x86,0x71, + 0x91,0xb5,0xf6,0xd5,0xc7,0x82,0xe6,0xc2,0x8e,0x85,0x2b,0xf0,0xcc,0x75,0x26,0x34,0xcf,0x70,0x70,0x87, + 0x8d,0xea,0xb7,0xa6,0xa1,0x49,0xa0,0x71,0x1a,0x37,0x0f,0x73,0x0b,0x85,0x0d,0xb0,0x1b,0x08,0xcb,0x2c, + 0x3f,0x6a,0x8e,0x8f,0x01,0xa0,0xa0,0x15,0xce,0x98,0x14,0x9a,0x54,0x71,0xcd,0xfe,0x8d,0xd0,0xa5,0x3c, + 0x8b,0xb1,0xf1,0x53,0x2c,0x7b,0x49,0x0f,0x03,0x34,0xe5,0x8b,0x9e,0x88,0xae,0x9c,0xf4,0xf6,0x5c,0x9d, + 0x0d,0xfa,0xc9,0x59,0xd7,0x61,0x76,0x96,0xa3,0x1e,0x0c,0x1d,0xc8,0x93,0x36,0x28,0xd4,0x7a,0x12,0xdd, + 0xf4,0xaa,0x58,0xa7,0x7a,0xd2,0x86,0xed,0x99,0x12,0xcf,0xe2,0xcf,0x35,0xc9,0x34,0x0c,0xfe,0xa0,0xe1, + 0xcf,0x35,0x1b,0x14,0x24,0xb6,0x2f,0xd5,0x69,0x30,0xec,0x97,0x7d,0x39,0xdc,0xa4,0xb5,0x2a,0x7c,0xda, + 0x4e,0x7d,0x34,0x31,0xd1,0x29,0xf4,0xfc,0xc1,0xf7,0xcf,0x3d,0xb9,0x23,0x02,0x9f,0x2e,0xd7,0x63,0x24, + 0x05,0x81,0x2e,0xe8,0x32,0x2e,0xb0,0x51,0x0b,0x5f,0xc5,0x53,0x3b,0xf3,0x81,0x14,0xc0,0x55,0x37,0xad, + 0x09,0xbd,0x10,0x7c,0xd5,0xe3,0x15,0x3c,0xf8,0xe8,0x80,0x62,0xb7,0x47,0xfc,0x41,0xa3,0x43,0xd6,0x7c, + 0x2c,0x0b,0x26,0x54,0x65,0xbc,0x8b,0xfa,0xa2,0x17,0x0b,0xd1,0xb4,0x1f,0x97,0x8d,0x58,0x02,0xc9,0xfa, + 0x32,0xc0,0xdd,0xac,0xc7,0x1b,0xfb,0xa3,0x14,0xa7,0x74,0x3a,0x62,0x1d,0xfa,0x03,0x57,0xd3,0x17,0x50, + 0xc4,0x12,0xd7,0x01,0xbb,0x20,0x3f,0xba,0x2a,0x09,0xee,0x8e,0xb3,0x1b,0x64,0x89,0x9a,0xcb,0x5b,0x1a, + 0x55,0xb6,0x46,0x3e,0x37,0x80,0x22,0xca,0x04,0xdf,0x36,0xc7,0x8a,0x3f,0x6c,0xe8,0x43,0x80,0xed,0xa4, + 0x48,0xe5,0xfb,0x62,0x3d,0x36,0xfd,0xcd,0xf2,0x35,0x50,0xe6,0x1d,0x43,0x2a,0x4a,0xcc,0x7d,0x38,0x26, + 0x97,0xf8,0xb9,0x81,0xc9,0x4c,0x33,0xc1,0x10,0x72,0xe6,0xc4,0xb5,0x31,0x67,0x7e,0x03,0xe3,0x9a,0x14, + 0xcf,0xeb,0xe1,0x21,0xe4,0x32,0x04,0x73,0x0c,0x96,0x47,0x39,0xf1,0x6c,0xf4,0x87,0xc6,0xd0,0x24,0xb4, + 0xde,0xf2,0x7d,0x4e,0x28,0x3e,0x49,0xe5,0xb9,0x59,0xaf,0xfb,0xc3,0xb0,0x83,0xd0,0xa3,0x59,0x51,0x53, + 0x7f,0x89,0x7a,0x35,0x8b,0x63,0x5b,0xa9,0x83,0x56,0x64,0xa6,0xc7,0x03,0x8b,0x5f,0x80,0x2c,0xe0,0xe8, + 0x1a,0x30,0xf0,0x4f,0x0b,0xb5,0x5a,0xc2,0xba,0x90,0xa6,0x30,0x81,0xd2,0xdf,0xc4,0xdf,0xd0,0x26,0xbc, + 0x04,0x37,0x51,0xb0,0x8d,0x14,0xa0,0xb0,0x80,0x71,0xa0,0xd2,0xa3,0x45,0xf1,0x89,0x48,0x19,0x3f,0x3e, + 0x3a,0xfb,0x9a,0xcc,0x26,0xdb,0x29,0xca,0x1f,0x36,0xe3,0x1c,0x7c,0x26,0x7f,0x6a,0x73,0x69,0xdc,0x54, + 0x09,0x37,0x33,0xa5,0x93,0x88,0x66,0x1d,0xb5,0x4c,0x25,0x22,0x01,0x3d,0x24,0xfe,0x5d,0x27,0x40,0x54, + 0x53,0x22,0x79,0x38,0xdd,0xec,0x90,0x95,0xdf,0x18,0xaf,0xfd,0xde,0x1a,0xf2,0xb6,0x71,0x73,0x01,0x64, + 0x8b,0x81,0xd0,0x50,0x30,0x00,0x2b,0xb5,0x01,0xef,0x2c,0x94,0xce,0x15,0x18,0x34,0x5b,0xa2,0x0a,0x4a, + 0x54,0x52,0x22,0xcf,0x76,0xca,0xb8,0xf2,0xd2,0x09,0x2a,0x95,0x13,0xf4,0xd1,0x58,0xd2,0x82,0xc5,0x12, + 0x28,0x89,0xbf,0x79,0x28,0x5c,0x79,0xdb,0xdf,0xfa,0x70,0x96,0x53,0x55,0xb6,0x4d,0xab,0xa6,0x98,0xaf, + 0x85,0x34,0x06,0xcd,0xbe,0x8b,0x1f,0x8b,0x3c,0x4e,0x15,0x23,0x3e,0x01,0x41,0x9f,0xd0,0xf9,0x88,0x86, + 0x22,0xe3,0x5e,0x19,0x25,0x93,0x9c,0x98,0xb7,0xf4,0x9d,0x11,0x92,0xd9,0xa2,0x30,0xfc,0xdf,0x66,0x95, + 0x76,0x4e,0x3f,0x1f,0x8d,0xff,0x6b,0x9e,0x31,0x21,0xed,0x24,0x92,0x79,0x72,0x93,0x0f,0x99,0xfe,0x9d, + 0xc1,0x03,0xca,0xb5,0x60,0x37,0x85,0xb6,0x3e,0x9d,0xee,0x1c,0x00,0x11,0xbb,0x63,0x10,0x86,0xec,0x34, + 0x89,0x9a,0xe0,0x45,0x9e,0x03,0xd9,0x22,0x60,0x70,0xa2,0xce,0xd1,0x09,0xe7,0x50,0xea,0x24,0x78,0x1e, + 0x12,0xd1,0xc2,0x67,0xf8,0xb9,0x17,0xee,0x67,0xaf,0x62,0x2d,0x83,0x9d,0xd4,0x8e,0xda,0xa9,0x09,0x5c, + 0x81,0x92,0xda,0xc4,0xf0,0xeb,0x7d,0x1a,0x7a,0xdc,0x4f,0x00,0x1f,0xf2,0x3e,0xce,0x69,0xe2,0xfb,0x19, + 0x8d,0x37,0x9b,0x70,0xab,0xf7,0x2a,0xb0,0x8f,0xc2,0xe8,0x3d,0x77,0x68,0xb4,0xfc,0xec,0xd0,0xed,0x8a, + 0xc7,0xbf,0x5e,0xed,0x25,0xf7,0x03,0x3c,0xae,0x8f,0x0e,0x69,0x6c,0x91,0xaf,0xf0,0x9d,0x3f,0xd0,0xfb, + 0xc7,0x86,0x05,0xb8,0x57,0x22,0xdd,0x7c,0x65,0xbd,0x5e,0x6d,0x98,0x8f,0xda,0x13,0x96,0xe5,0xc3,0xda, + 0x72,0xfe,0xaf,0x58,0x18,0x66,0x3f,0xf0,0xa2,0x18,0x27,0x49,0x70,0x4d,0x3f,0x0e,0x56,0x5c,0x7b,0x84, + 0x91,0xe9,0x71,0x9d,0xd5,0xa3,0x9d,0x65,0x4e,0xcc,0x54,0x3b,0xf6,0x06,0x44,0x6e,0x29,0xd9,0x87,0xe0, + 0x49,0xbe,0xa4,0x0a,0xf5,0x8c,0x71,0x81,0xfb,0xba,0x22,0x84,0x58,0x3d,0x2c,0x6c,0xbf,0x2a,0xec,0xf4, + 0xfa,0x9a,0x87,0x07,0x13,0x48,0xec,0x08,0x59,0xab,0x5a,0x49,0xe3,0xa6,0x83,0x5e,0xe2,0xf1,0x23,0xf5, + 0xaa,0x56,0x51,0xa7,0x8d,0xad,0x8b,0xaa,0xfa,0x08,0x7f,0xf8,0x1f,0x4d,0x97,0xfd,0x20,0x7e,0x0c,0x06, + 0xf1,0x5b,0x29,0x5d,0xfb,0x4e,0x74,0xee,0xdc,0xb2,0x99,0xc3,0x5e,0x56,0x18,0xb8,0x44,0x2a,0x74,0xed, + 0x7f,0x67,0xa5,0xbe,0x91,0x31,0xb5,0x0e,0xbf,0xa3,0x3e,0x7c,0xb7,0xd1,0x85,0xef,0x82,0x2e,0x6c,0xbf, + 0x84,0x3c,0xeb,0x79,0x49,0xfb,0x6f,0xc0,0xc7,0x08,0x5e,0xec,0xb4,0xa3,0xad,0x86,0x66,0x6c,0xde,0xa5, + 0x89,0x8e,0x70,0xf9,0x27,0x22,0x67,0x66,0x75,0x66,0xc4,0x4e,0x6d,0xb6,0xac,0xad,0xdb,0x79,0x32,0x5e, + 0x5a,0x49,0x70,0xe6,0x85,0x89,0x9a,0x9e,0xb5,0x97,0x02,0x69,0x96,0xe4,0xe9,0xe3,0x38,0xa8,0xf2,0x8f, + 0xe0,0xd4,0xc3,0xa2,0x51,0x35,0x6c,0x4b,0xd1,0x53,0x24,0x89,0x33,0xa2,0x13,0x70,0xba,0x79,0x11,0x68, + 0x89,0x4a,0x3a,0x02,0x3e,0x14,0x53,0xac,0x06,0x9f,0x6a,0x25,0xfb,0xc4,0x43,0x55,0x33,0x03,0x5f,0x81, + 0x3e,0x1f,0xa8,0x8b,0x7a,0x32,0xaf,0xe3,0x24,0x5d,0xd5,0x30,0xd0,0xd9,0x6e,0x87,0xf5,0x33,0x46,0x93, + 0x96,0x04,0x72,0x94,0x21,0xe5,0x5a,0x09,0xe5,0x9a,0x1f,0xc6,0xcf,0x48,0x73,0x05,0xc0,0x77,0x29,0x47, + 0x8a,0x54,0x77,0x48,0x05,0x63,0x62,0x41,0x21,0x7d,0x04,0x23,0xec,0x38,0xe4,0xe7,0x75,0xf5,0x07,0xdc, + 0xb1,0xc5,0xa6,0x4a,0x1b,0x5a,0xdd,0x9e,0xc7,0x3a,0x64,0xc7,0x0a,0x86,0xf2,0x12,0x16,0x84,0x74,0x38, + 0x5b,0xc3,0xce,0x12,0xde,0x07,0xf4,0x0e,0x57,0x91,0xdc,0xd0,0x3a,0xba,0x43,0xeb,0xc0,0x60,0xa7,0xe6, + 0x93,0xcd,0x45,0xda,0xa9,0xb3,0xb8,0xea,0xd1,0xe7,0xc9,0xc6,0x37,0x15,0x7d,0x75,0xcc,0x91,0x15,0x12, + 0x9a,0xf5,0x93,0x3a,0xa1,0xff,0xa3,0x29,0x1d,0x05,0x75,0xb8,0xa0,0xbf,0xc7,0xdd,0x18,0x5a,0x46,0xa5, + 0xe7,0x85,0xdb,0x0a,0x84,0xc1,0x59,0xc9,0xc7,0xf5,0xf6,0x06,0x0d,0xe3,0x44,0xd7,0x81,0xe2,0xcd,0xcb, + 0xf6,0xc6,0x1e,0x1f,0x94,0x06,0xf4,0x06,0x15,0x11,0x10,0x93,0x84,0x35,0xb4,0x4e,0x26,0xce,0x4d,0x23, + 0x7c,0x96,0xef,0xf1,0xf7,0xb1,0x11,0x26,0x38,0xfb,0x7f,0xd5,0x28,0x3a,0xf0,0xb9,0xb1,0x5c,0x4e,0x77, + 0x9a,0x7a,0x50,0x03,0x53,0xa6,0x88,0x88,0x16,0x38,0xad,0x81,0x9c,0xdb,0x98,0x6d,0xe4,0x5a,0x3a,0xf2, + 0x27,0xf4,0xb7,0x41,0xdd,0x38,0x0f,0xa5,0x74,0xf6,0x3b,0x96,0x45,0xd5,0xc4,0xaf,0xb3,0xf1,0x66,0xa3, + 0x56,0x23,0xa2,0xc6,0x89,0xa9,0x25,0x38,0x66,0x14,0x42,0x4f,0xf0,0x89,0x23,0xfa,0x88,0x9f,0x60,0xa6, + 0x9e,0x24,0x69,0x43,0xa7,0xc8,0x94,0x6a,0x99,0x72,0x57,0x1b,0xc5,0x75,0x4d,0x93,0xc4,0xf7,0xa7,0xe4, + 0xf5,0xc8,0x41,0x9e,0x16,0x71,0x6c,0x7a,0x93,0x48,0x2b,0xd2,0x41,0xdb,0x42,0xb0,0x30,0x3f,0xc4,0x66, + 0x88,0x81,0x5e,0x2b,0xb9,0xa9,0x86,0x85,0xa8,0x6a,0x2e,0xa3,0x21,0xda,0x61,0x5d,0x77,0x05,0x48,0x10, + 0x88,0x11,0xde,0x85,0xfc,0x6f,0x04,0x0c,0x08,0x13,0x0e,0xff,0x46,0x54,0x52,0x62,0x4e,0x39,0xd8,0x13, + 0xd2,0x3a,0x8c,0x79,0x7a,0x1a,0x9a,0x0d,0xf4,0x38,0xd5,0x32,0x2e,0x48,0x19,0xe8,0x89,0x2d,0x65,0x66, + 0x34,0x7b,0x0d,0x8d,0x10,0xe9,0xb2,0xfb,0x73,0x9a,0x05,0x7c,0x30,0x55,0xf4,0x89,0x6a,0x4c,0x31,0x6c, + 0x62,0x16,0x80,0x35,0x7e,0x54,0xbf,0x30,0x17,0x68,0x46,0x86,0x1d,0x03,0x20,0x12,0x6a,0x01,0xd4,0x8c, + 0x67,0xcf,0x11,0x1e,0x05,0x60,0x5f,0xdd,0xde,0x1a,0xbe,0x96,0x5f,0xe9,0x0c,0x32,0x85,0x8b,0x7e,0xe1, + 0xa2,0x5b,0xb8,0x40,0xe1,0xf5,0xe6,0x81,0xf5,0x6d,0xe8,0x6c,0xc1,0xfc,0x37,0x4c,0x7f,0x20,0x87,0xc4, + 0xc6,0x36,0x26,0xf6,0x56,0x64,0xe9,0x3f,0xfb,0x77,0xc8,0xac,0xc5,0x60,0xca,0x75,0xf3,0x8a,0x95,0xc2, + 0xb7,0xb7,0xbf,0x20,0x90,0x8b,0xbc,0x40,0x27,0xd9,0x1e,0xbd,0x67,0xb5,0xa8,0x3b,0xd7,0x3f,0xe4,0xe7, + 0x12,0x0d,0x20,0x6b,0x2d,0xf5,0x43,0xdb,0x00,0x1e,0x04,0x96,0x18,0x06,0xd5,0x11,0x34,0xf6,0xaf,0x4e, + 0x98,0x17,0xd7,0x1b,0xd0,0x0a,0xa1,0x70,0xd6,0x7f,0xf0,0x4f,0x63,0xb7,0xd0,0x17,0x2e,0x24,0x9f,0x11, + 0xf0,0x5b,0x2e,0x05,0xb4,0x2a,0xaf,0x44,0xcd,0x6e,0x11,0x10,0x9f,0xf6,0xa4,0xc9,0xb4,0x69,0xfe,0x45, + 0xb9,0x6e,0xc2,0xeb,0x80,0x12,0x6d,0x5b,0x7b,0x70,0x95,0x93,0x6b,0x1c,0xef,0x04,0x77,0x22,0x0f,0x92, + 0xb7,0x9e,0x8e,0x4e,0xb7,0x32,0x8f,0x9c,0x79,0x76,0xd6,0xcb,0x2d,0x5d,0x65,0xd7,0xd4,0x31,0xc5,0x3b, + 0x5d,0xcc,0xad,0x28,0x99,0xe6,0x8c,0x52,0x85,0xe6,0x0b,0xb4,0xd6,0x6d,0xc8,0x87,0x09,0xa7,0xb5,0xdd, + 0x7a,0x85,0x85,0xc7,0x40,0x9d,0x90,0x66,0x56,0x88,0x66,0xe4,0x91,0xcc,0xd9,0xe6,0x59,0xc5,0x1b,0x03, + 0x55,0xb0,0x14,0x31,0x6f,0xdb,0xba,0x71,0x0f,0x84,0xc0,0xaa,0xd6,0xf9,0x11,0x87,0x89,0xaa,0xb2,0xf2, + 0x73,0xb1,0xc7,0xab,0xbc,0x6c,0x7b,0x9b,0x15,0x15,0x90,0x5e,0x8a,0xce,0x38,0xe7,0x0f,0x92,0xb8,0xb4, + 0x80,0xc0,0xe6,0x1c,0x36,0x04,0xdd,0xd1,0x31,0xa1,0x05,0xde,0x51,0x55,0x20,0x03,0x6a,0xcc,0x57,0x8c, + 0xce,0x1a,0x68,0x2a,0xf1,0x83,0xc2,0xe3,0xa8,0xd5,0x8b,0xe5,0x9c,0x98,0x2c,0xc0,0x5d,0x05,0x51,0xff, + 0x64,0xca,0x15,0x18,0x34,0x31,0x45,0xd7,0x8c,0x48,0xfb,0xf6,0x96,0xbe,0x48,0xa7,0xb6,0xfe,0xb5,0x8b, + 0x7d,0xb4,0x12,0x1c,0x55,0x1e,0xad,0x8e,0x8d,0x6e,0xa9,0x68,0xbd,0xc3,0x34,0x92,0x7d,0x64,0x11,0xaf, + 0xc9,0x6f,0xef,0x82,0xd1,0xed,0x2e,0x90,0x12,0x11,0xb3,0xc5,0xbb,0x82,0xf7,0x58,0xa0,0xd8,0x6f,0x03, + 0x85,0xa6,0xe1,0xd5,0xee,0x80,0xd4,0x1e,0x54,0x83,0x32,0x9d,0xe0,0x73,0x51,0x4e,0xa5,0xc4,0xfb,0xd0, + 0x13,0x0e,0x42,0xd6,0x74,0x1e,0xd3,0xec,0x0f,0x68,0x1c,0x59,0xad,0xce,0xc2,0xd5,0x71,0x6b,0xf6,0xa2, + 0xa1,0x4e,0x93,0x71,0xc2,0x5a,0xea,0x93,0xa2,0xcc,0x99,0xfb,0xfd,0x1c,0xbd,0xdb,0xb4,0x8e,0xd6,0xb6, + 0xda,0xed,0x13,0x61,0x9b,0x5f,0x98,0xaf,0x89,0xde,0x52,0xdc,0x98,0xa5,0x4a,0x2d,0xe3,0xbe,0x51,0xd2, + 0xd2,0x00,0xdd,0xd6,0xbd,0x81,0x47,0xd0,0xa3,0x9b,0xe0,0x05,0x04,0x5d,0x7f,0xb6,0x76,0xec,0x2a,0x87, + 0xf3,0xc6,0xaa,0x27,0x97,0xc3,0x9a,0x58,0x38,0x26,0xa9,0x88,0xeb,0x21,0xa8,0x99,0x45,0xa1,0x58,0x70, + 0xda,0x76,0x45,0x1a,0x96,0x54,0x37,0x2c,0x6e,0x20,0x0e,0xe0,0xbd,0x54,0xf6,0xf7,0x12,0x68,0xbe,0xd2, + 0x45,0xcd,0x74,0xd1,0x27,0x4a,0x90,0x7d,0x25,0x48,0xe4,0xbd,0xc8,0xd2,0xe0,0x34,0x1a,0x22,0x83,0xbe, + 0xa3,0x17,0x76,0xbc,0x64,0x16,0x50,0x2f,0x60,0xaa,0x80,0x02,0x69,0xb4,0x17,0x62,0x85,0x15,0x02,0x7f, + 0x3d,0x02,0x4d,0x28,0x74,0xac,0xd2,0x3c,0xfc,0x1d,0xd8,0x23,0xd5,0xa1,0x91,0x54,0x68,0xee,0x4b,0xe4, + 0xd6,0xbe,0xa6,0x3f,0x44,0x53,0xbe,0x47,0x4c,0xaa,0xf7,0xf5,0xc3,0x1d,0x47,0x73,0xbc,0x47,0x77,0xa1, + 0x63,0xcc,0x76,0xea,0xa3,0xf7,0xf5,0x71,0x42,0x05,0xd5,0xc7,0x9a,0xc5,0xb6,0x4c,0x7f,0x8c,0xea,0x55, + 0x19,0x5b,0x63,0xac,0x4f,0xb5,0xa3,0x5d,0xea,0x6c,0xc7,0xbd,0x50,0x2d,0x99,0xab,0x12,0x85,0x2c,0x3d, + 0x4d,0x35,0x41,0x2f,0xfe,0xa4,0xce,0xd0,0xe9,0xc3,0x8e,0xa4,0xe5,0x4f,0x48,0xed,0x70,0x91,0x0f,0x14, + 0xd6,0x0f,0xc2,0xdc,0x6d,0x44,0x0b,0x2d,0x93,0x3b,0x2a,0xf2,0x95,0x80,0xf2,0xb3,0xab,0x87,0xef,0x40, + 0x75,0x5d,0x2e,0xc6,0xf5,0xe8,0xe4,0x0a,0x2b,0xa1,0x6b,0x02,0xaa,0x12,0xf2,0xec,0x93,0x82,0xce,0xae, + 0x15,0x21,0xa8,0xd9,0xee,0x2e,0xad,0x3a,0x71,0x4a,0x22,0xaa,0x61,0x78,0x20,0x4c,0xaf,0x7e,0xa0,0x62, + 0xbf,0x01,0x2f,0x5d,0xb6,0x55,0x05,0x6f,0xe1,0x1f,0x88,0xf5,0xe1,0xf5,0x39,0x9b,0x13,0xfa,0x88,0x82, + 0xd5,0x99,0x3b,0x9c,0xfd,0x5b,0x0d,0x15,0xcc,0xa6,0x3d,0x1f,0x5b,0x91,0x51,0x7f,0x08,0x00,0xd7,0x8a, + 0x0a,0x35,0x7a,0xd3,0x6e,0x5a,0xb2,0x11,0xe5,0xef,0x2e,0x5d,0x4d,0x49,0x9f,0x06,0xcd,0x9e,0xb9,0x66, + 0x05,0x22,0x59,0xa9,0x35,0x24,0x95,0x2a,0x27,0xb1,0xe9,0x58,0x3d,0x59,0xb2,0x64,0xb5,0xb4,0x9d,0x38, + 0x4f,0x52,0x9b,0x57,0xe2,0xef,0xa4,0x06,0x05,0x80,0x80,0x76,0x04,0xc2,0x34,0x5f,0xb6,0x3c,0xf2,0xd2, + 0x73,0xfb,0x55,0x89,0xbf,0x13,0xfe,0x9b,0x9e,0x27,0x77,0xf6,0x57,0x77,0xfb,0xbb,0x0c,0xf1,0xe5,0x86, + 0x4a,0x89,0xed,0xec,0x4e,0x70,0xee,0xae,0x68,0x15,0x7e,0x96,0xd5,0x42,0x34,0xbf,0xc1,0x74,0x23,0xda, + 0x71,0x4c,0x0f,0x0b,0xee,0xda,0x6b,0xd8,0xe4,0x6a,0x68,0x26,0x20,0xfd,0x4d,0x54,0xa0,0x91,0xd2,0x5e, + 0x17,0xa4,0x45,0x77,0x11,0x5a,0xb8,0xb4,0x5e,0x98,0xe4,0x42,0xf7,0x40,0x49,0x04,0xa9,0xab,0x42,0xc4, + 0x29,0x63,0x7e,0x9e,0xa8,0x4d,0x39,0x18,0x6b,0x02,0x19,0x23,0xd3,0xa6,0xd9,0xb9,0x12,0x5f,0x70,0x11, + 0x0f,0x7b,0xcb,0x15,0x8f,0x32,0xdb,0x3f,0x37,0x5a,0xfa,0xa5,0x9c,0xbc,0xd3,0x67,0x73,0xe4,0x54,0x57, + 0xe5,0x0f,0x62,0x22,0x31,0x3a,0x2b,0xe6,0xad,0xae,0x87,0x0c,0x9c,0xff,0x8a,0x06,0x71,0xe4,0xb5,0x7c, + 0xeb,0x24,0xed,0x59,0x5f,0x0c,0xf0,0x23,0x37,0x5e,0x12,0x01,0x02,0x96,0x28,0x03,0x44,0x26,0x1d,0x41, + 0x80,0x0a,0x69,0xe4,0xb8,0x19,0xf3,0x68,0x1a,0x16,0x35,0x5d,0x16,0x33,0xec,0x23,0xa6,0xf4,0x83,0x14, + 0x22,0x88,0xe8,0x9b,0x2c,0x48,0x81,0x70,0xf6,0x94,0x06,0xfb,0x71,0x4d,0x6c,0x82,0x3d,0x7c,0xc0,0xf7, + 0x6d,0xc3,0xf6,0xd0,0x4a,0xca,0x20,0xad,0xa4,0x0f,0x05,0x32,0xa6,0xd2,0xb0,0x15,0x99,0x71,0x8d,0x03, + 0x30,0xee,0x14,0x71,0x04,0xad,0xd3,0xb5,0xb3,0x27,0x0a,0x16,0xf9,0xb2,0x15,0x1b,0x15,0xc7,0xe2,0x82, + 0x67,0xda,0x94,0x4a,0x43,0xc0,0x37,0x10,0x5a,0xc8,0x88,0xe0,0x9d,0x96,0xdb,0x59,0x74,0xa9,0x8a,0xd0, + 0x5d,0xee,0x51,0x50,0xf5,0x30,0x67,0x71,0x4d,0x8d,0x8e,0xd2,0xe6,0xe6,0x78,0xae,0x5e,0xfa,0xbe,0x69, + 0x43,0xb8,0x59,0x35,0xd7,0x49,0x15,0xb5,0x61,0x45,0xd5,0xde,0x61,0x58,0x4f,0x61,0x49,0xdb,0x0d,0x53, + 0x9a,0xb0,0xaa,0xa6,0xd7,0xcb,0xa6,0xdf,0xcb,0x69,0xd6,0xa0,0x83,0xae,0xb3,0x53,0xe2,0x18,0x95,0x97, + 0xc5,0x1a,0x8a,0x98,0xd1,0xe5,0x4f,0x88,0x0d,0xc0,0x01,0x12,0x02,0xe5,0xfd,0x22,0xd8,0x39,0x2c,0xdf, + 0xa2,0x86,0x78,0xc7,0xee,0x34,0xb0,0x54,0x98,0xbd,0x27,0xa2,0xcd,0x6e,0xd6,0x0a,0xb1,0xdb,0x98,0x96, + 0xad,0x79,0xcf,0x5c,0xc6,0x97,0x31,0x5e,0x12,0x96,0x7b,0x17,0x19,0xb6,0xdc,0xed,0xad,0x0e,0x9d,0x9c, + 0x4d,0x55,0xb6,0x92,0x1c,0xca,0x8d,0xd1,0x09,0x01,0xcd,0x4c,0xd7,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0xb5, + 0x8d,0x96,0x0b,0x9d,0x1f,0x8a,0x3b,0xfb,0xa1,0x89,0x54,0xd1,0x73,0xfe,0x73,0x34,0xa3,0xba,0x41,0xe9, + 0x14,0x71,0x41,0x3b,0x5a,0xa1,0xf3,0x10,0x57,0xbd,0x16,0xb3,0x60,0x4b,0x0c,0xa8,0x48,0xb6,0x22,0x42, + 0x23,0x50,0x87,0x1f,0x05,0x24,0xe1,0x75,0x7f,0x3a,0x32,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f, + 0x84,0x8d,0x33,0x6b,0x9c,0x74,0xe1,0xae,0x48,0x26,0xec,0xdd,0xec,0xbd,0x5f,0x89,0x21,0x2a,0x20,0xd9, + 0x4d,0xeb,0xc9,0xc7,0x92,0x16,0x02,0x84,0x74,0xda,0x27,0xfe,0x4f,0x5c,0x8b,0x86,0x9d,0x2c,0xc1,0x61, + 0x83,0xa3,0xdc,0x54,0x79,0xd3,0x9c,0x2f,0x90,0x35,0x36,0x22,0x03,0x7f,0x04,0x15,0x22,0xe3,0x9f,0xce, + 0x89,0xb7,0x67,0xd7,0x4c,0xde,0x03,0xd7,0xc2,0xcc,0xd1,0xcb,0x35,0x8a,0x24,0xb4,0x1e,0x21,0x49,0xde, + 0x5a,0xee,0xc0,0x3c,0xb0,0x10,0x79,0x9c,0x43,0x2f,0x4e,0xa3,0x86,0x31,0xf8,0x8f,0x0d,0x1f,0x07,0x31, + 0x24,0x09,0x05,0xa2,0x90,0xcd,0xaa,0x05,0x12,0x1a,0x88,0x20,0xdc,0x0b,0x18,0xf0,0xd4,0xd4,0xc1,0x19, + 0xfc,0x84,0xd4,0x75,0x01,0x8c,0x92,0x43,0xe2,0x0e,0x26,0x5a,0x38,0xda,0x0a,0x02,0x8c,0x18,0x41,0x29, + 0xb8,0x70,0x55,0x32,0x03,0x7f,0x64,0xce,0x6f,0x22,0x9c,0x8a,0xe3,0xce,0xd9,0x8a,0xaf,0x58,0xf4,0xe5, + 0x28,0xc6,0xa9,0x50,0xfb,0x0d,0x71,0xf9,0x3e,0x28,0x98,0xb7,0xe6,0xea,0xd2,0x80,0x7c,0xfc,0x34,0x6c, + 0xe1,0xf3,0xa1,0xd6,0x9a,0x7b,0xd8,0x4f,0x03,0x23,0x82,0x7d,0x07,0x18,0xb5,0x0c,0x22,0x9d,0xa3,0xba, + 0xb7,0xc4,0x75,0x32,0x79,0x44,0x7f,0xd2,0x27,0xf8,0x13,0xef,0xb4,0xb1,0x7c,0x92,0x75,0xa0,0x6b,0x24, + 0xf5,0xbe,0x63,0x18,0x7f,0x5e,0x02,0xee,0xbd,0x1e,0xd5,0xc2,0xfe,0x5b,0xb8,0x83,0x8b,0x78,0x95,0x35, + 0xab,0xb0,0x87,0x91,0xef,0x4e,0x4e,0xa2,0xbd,0x56,0x6d,0x1f,0x26,0x9d,0xf3,0xe7,0xca,0x91,0x0a,0xa6, + 0x7b,0x3b,0xad,0x31,0xa2,0x21,0x5e,0x15,0x9f,0xe8,0xbd,0xb8,0x9c,0x44,0x27,0xf0,0x92,0x8e,0x22,0x09, + 0x40,0x14,0x4c,0xc9,0x4e,0x1b,0x88,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe7,0x2f,0x99,0xa0,0xe3,0x50, + 0xb4,0x06,0x9d,0x7a,0x47,0x02,0x4e,0xfe,0xd4,0x1a,0x75,0xea,0x1e,0x1a,0xae,0x9d,0x78,0xef,0x93,0x6d, + 0x2d,0x30,0x39,0x73,0x1d,0xf0,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xad,0x90,0xfa,0x86,0x86,0x92,0x05, + 0x7b,0xf1,0x63,0xc0,0xa6,0x40,0x11,0xaf,0x13,0x4f,0xd7,0x57,0xf2,0x67,0xc2,0x08,0x08,0x4f,0x49,0x1a, + 0xf0,0x5f,0xb5,0x48,0xd0,0x02,0x5d,0x1f,0xa1,0x4e,0x48,0x20,0xc7,0xac,0xdb,0x2b,0x26,0x47,0xc7,0x56, + 0x4b,0x5d,0x18,0x7f,0xf2,0x4d,0x30,0x7a,0xd2,0x8a,0x5f,0xd9,0x49,0x95,0x5d,0xc1,0xc8,0xec,0xa4,0xe4, + 0x90,0xeb,0x27,0x90,0x8f,0xd1,0xcf,0x3c,0xbb,0xe4,0xd4,0x36,0x5b,0xf0,0xef,0xef,0xd9,0x35,0x7e,0x8a, + 0xec,0x04,0x3f,0x8b,0xec,0x94,0x53,0xcf,0xb2,0x73,0xfe,0xfd,0x98,0x5d,0xf3,0xef,0x69,0x76,0xc2,0xbf, + 0x97,0xd9,0x47,0xfc,0xd0,0x78,0x11,0x71,0xe3,0x64,0x95,0x55,0x9c,0x7c,0x9e,0x7d,0x0c,0x7a,0xf0,0x48, + 0x26,0x2d,0x14,0x13,0x12,0x83,0x6c,0xc0,0x4c,0x1c,0x32,0xd8,0x53,0xc9,0x44,0x4a,0x15,0x0d,0xaf,0x96, + 0x17,0x67,0x11,0x56,0x9b,0x4c,0x3e,0xa9,0x33,0x13,0x93,0x74,0x6e,0xa2,0xc4,0x34,0x99,0x6c,0xc3,0xcb, + 0xd2,0x06,0xfc,0xc4,0x49,0xc4,0x46,0x6c,0x44,0xf1,0xe4,0xe6,0x9d,0xb6,0xbe,0x64,0x33,0x1e,0x1f,0x20, + 0x8e,0xeb,0x96,0x2d,0x11,0xd6,0x5d,0xd3,0x50,0x43,0x14,0x15,0xe2,0x4a,0x97,0x0b,0x0d,0x88,0xb8,0x2b, + 0xf0,0xa9,0xdb,0x9e,0x8e,0xa7,0xd6,0xb9,0xd0,0xee,0x9c,0x2c,0x57,0xc1,0x79,0x91,0xf9,0x26,0xe3,0x44, + 0x6d,0x9c,0x49,0xb0,0x0c,0xf7,0x6f,0x18,0x02,0xa2,0x52,0x9c,0x34,0x62,0x5f,0x37,0x31,0x54,0xe7,0x46, + 0x38,0x14,0x2b,0x2d,0x79,0xd3,0x22,0x7a,0xbf,0x41,0xbc,0x2b,0x77,0x5e,0x56,0x6c,0xfa,0xe4,0x4d,0xf6, + 0x7c,0x8d,0x2a,0x90,0x88,0x64,0x34,0xa6,0x6a,0x9d,0xde,0xdd,0x86,0xa5,0xeb,0xba,0x8d,0x04,0xb4,0xcc, + 0xfb,0xf6,0x0e,0xab,0x65,0xd6,0xb5,0x8a,0xe5,0x72,0x60,0x7d,0x86,0xf9,0x35,0x04,0x8f,0x68,0x57,0xda, + 0xd8,0x5a,0xd5,0xad,0xa8,0x8f,0x0e,0xf5,0x9c,0xc0,0xd1,0x90,0x15,0x51,0xe6,0xdc,0xcf,0x56,0x56,0x3a, + 0x47,0xe5,0x87,0xac,0x3c,0xcc,0x84,0xcc,0x99,0x81,0x87,0xdc,0xac,0x98,0xe1,0xc3,0x39,0xc1,0x8d,0x53, + 0x5e,0xc6,0x41,0x9c,0xac,0x5a,0x9c,0x9a,0x71,0x4e,0x51,0x69,0xd6,0xd7,0xb0,0xf8,0xd1,0x3c,0xc3,0x43, + 0xd7,0xcb,0xd8,0x7c,0x9a,0x91,0xce,0xd9,0xb8,0xb5,0xb3,0xa0,0x8c,0x4d,0x1a,0x9b,0x3a,0x11,0xa7,0x88, + 0x90,0x8d,0xa9,0xd5,0xbc,0xf5,0xea,0x0d,0x52,0x59,0x58,0x26,0x12,0x3f,0x5e,0x9b,0x26,0xb1,0x9a,0x0b, + 0x9f,0x94,0x89,0x20,0x9d,0xf0,0xcd,0x2a,0x84,0x5e,0x3b,0xf9,0x2d,0x91,0x56,0xda,0x93,0x56,0xed,0x43, + 0x3d,0x6e,0x21,0x7a,0x00,0xe6,0xde,0xa1,0x42,0x53,0xfd,0x23,0x1f,0x4d,0x71,0xb2,0x56,0xf3,0xec,0xb4, + 0xa3,0x94,0xf1,0xfd,0xcf,0x20,0x5e,0xad,0x08,0xd8,0x6f,0x6f,0x57,0x31,0xbb,0xec,0xf4,0x8a,0x76,0x27, + 0x89,0xa9,0x32,0x09,0x42,0x86,0x7e,0xc5,0x1c,0x3b,0x65,0x99,0xd5,0xf1,0x5c,0x9d,0x79,0xd7,0x89,0x98, + 0x0b,0x0e,0xac,0xdb,0x92,0xbd,0x25,0x27,0x6d,0x38,0xa7,0xbb,0xbb,0x92,0xca,0x55,0xa4,0x3a,0x5e,0x7a, + 0x29,0x68,0x32,0x18,0xcd,0x39,0x28,0xc0,0x1f,0x22,0x08,0x58,0x2f,0x89,0xeb,0x52,0xa8,0xcb,0xae,0x75, + 0x38,0x0a,0x1a,0xb3,0xc9,0x80,0x5d,0x00,0x17,0xf3,0xcb,0xd7,0x5d,0x3d,0x2e,0x6a,0xde,0x31,0x4d,0x00, + 0x2c,0xd8,0xf7,0xcd,0xf3,0xeb,0x89,0x2b,0x48,0x53,0x91,0x12,0x4f,0xfa,0x41,0x02,0xa7,0x85,0x1a,0xb9, + 0xde,0x40,0xdb,0x00,0xf8,0xe2,0xf0,0x73,0x99,0x49,0x65,0x6a,0xbe,0xbd,0x7d,0x70,0x70,0x60,0x3a,0x66, + 0xa2,0xb1,0xc1,0xf1,0xfd,0xaf,0xb4,0x20,0x57,0x50,0x70,0x55,0xf6,0xcb,0x04,0x98,0x6c,0xfb,0x50,0xb9, + 0xf6,0x26,0x9d,0x11,0xa6,0xfe,0xfb,0xb5,0x87,0x3d,0xab,0x5d,0x58,0xd3,0x4c,0xae,0x68,0xeb,0x78,0x11, + 0x74,0x1f,0x6d,0x04,0xa6,0xa5,0x75,0xec,0x31,0x52,0x47,0x12,0x99,0x41,0x50,0xcb,0x09,0xaf,0x34,0x61, + 0x7e,0x89,0xcc,0xa7,0x95,0x69,0x0c,0x01,0xf0,0x0c,0xde,0x4f,0x09,0xef,0xe7,0xe7,0x44,0x11,0x13,0xa2, + 0xa2,0x96,0x2d,0xf2,0x18,0x57,0x59,0xc5,0x14,0xfc,0x6f,0xc0,0x20,0x34,0x2f,0xd5,0x68,0x41,0xa4,0xed, + 0x3c,0xb0,0xe0,0x0c,0x98,0x2c,0x04,0xa6,0x46,0x2e,0x28,0x44,0x7e,0xe0,0x33,0x86,0x48,0x4b,0xe6,0xbf, + 0x23,0x16,0x46,0xf7,0x0a,0x68,0xc8,0xc2,0xa8,0x44,0x51,0xc2,0x4d,0x78,0x1c,0x97,0x72,0x2c,0xb1,0x88, + 0x78,0x69,0x89,0xc5,0x84,0xb5,0x1d,0xe6,0x0b,0xae,0xcb,0x58,0x9a,0x94,0x23,0xe3,0x1c,0x28,0x44,0xe1, + 0x98,0xfa,0x47,0xc4,0x5f,0x32,0xc1,0xdf,0xec,0xc8,0x7e,0x01,0x6a,0xea,0x34,0x9f,0x7e,0x74,0x87,0x38, + 0x17,0x4a,0xb9,0x50,0xbf,0xcc,0x9a,0x56,0xd5,0x92,0xfd,0x95,0x10,0xce,0x67,0x1e,0x07,0x74,0x22,0x70, + 0xb9,0x82,0xde,0xb6,0x8b,0xf0,0x6c,0xee,0xf0,0x09,0xcd,0x1a,0x1d,0x64,0x42,0xdc,0xc2,0x2b,0xdc,0x17, + 0xd3,0x31,0xcc,0x70,0x74,0xbc,0xf2,0xb4,0xd4,0x9c,0x09,0x5f,0x1b,0xdc,0x93,0xc8,0xff,0x79,0x32,0xfe, + 0x85,0x4e,0x83,0x95,0xa2,0x0d,0x05,0xf2,0xec,0xf6,0x16,0xaf,0x53,0x79,0x3d,0x74,0x74,0x6c,0xb3,0x5e, + 0x43,0x70,0x6e,0x70,0xa1,0xed,0x90,0xed,0x70,0x3e,0x1f,0x82,0x9e,0xae,0x26,0x11,0x47,0xba,0x19,0xb0, + 0xe9,0x73,0xde,0xed,0x69,0xd2,0x11,0x9a,0x4f,0x09,0xcf,0xad,0x8e,0xb3,0xb7,0xf1,0x8a,0x3a,0xc3,0xa4, + 0x80,0xa1,0xe2,0x80,0xae,0x78,0xac,0x09,0x9c,0x52,0x62,0x98,0xb2,0xcb,0xab,0x42,0x0e,0xd7,0xe8,0x73, + 0xe4,0x95,0xa7,0x77,0x2e,0xec,0x2b,0x8e,0x2c,0x9a,0x72,0x36,0x41,0x21,0x54,0x98,0x8f,0x84,0xf0,0x0d, + 0x0c,0x0e,0xe6,0x74,0x76,0xaa,0xc0,0xa9,0x69,0x43,0xe7,0x77,0x16,0x9e,0xb8,0xea,0x2c,0xb0,0xb0,0xcf, + 0xe1,0xc8,0xc9,0xaa,0x8c,0x98,0x4a,0x61,0x13,0x10,0xd4,0xc8,0x03,0xc3,0x17,0x67,0x66,0x52,0x86,0x76, + 0xed,0x19,0x6c,0x61,0xce,0x64,0x13,0x48,0x27,0x97,0x20,0xa4,0x58,0x6a,0x8d,0x5f,0x7a,0x11,0x8f,0x87, + 0x37,0xa5,0x0a,0xa7,0x3d,0x47,0x80,0x23,0xda,0x78,0x06,0x04,0x66,0x54,0x8e,0x79,0xd3,0x0a,0xf3,0x3a, + 0x63,0x52,0x81,0x1b,0x9a,0x25,0xeb,0xed,0x8e,0x34,0xd0,0x6a,0x29,0x5b,0xa7,0xa0,0xec,0x19,0x28,0xbc, + 0xac,0x43,0xb1,0xa9,0x21,0x6b,0x5f,0xd6,0x22,0xf1,0x94,0xaf,0xa0,0x19,0x28,0xb2,0x17,0x70,0x7e,0x1a, + 0xbb,0x94,0xac,0x9e,0x84,0x68,0x63,0x53,0x1a,0xe7,0x60,0xa1,0x75,0x8f,0xf0,0xac,0x35,0x8f,0x04,0x5c, + 0x05,0xd1,0x27,0x84,0x16,0x18,0xca,0xd0,0xec,0x45,0x00,0xf7,0x12,0x3f,0x75,0xea,0x54,0x25,0xe2,0x7e, + 0x11,0x5d,0xae,0xf4,0xbe,0x3b,0x15,0xf6,0x89,0xd2,0x07,0x95,0xb0,0x17,0x5f,0x4c,0x22,0x7a,0xb9,0x60, + 0x7e,0xa3,0x52,0x83,0x6e,0x1f,0xb9,0xba,0x79,0x42,0x68,0x8b,0x90,0x91,0xb3,0x7a,0x4a,0xcf,0x94,0xa3, + 0x3e,0xd3,0x25,0x23,0xa9,0xa9,0xc7,0x5a,0xc4,0xc7,0xcf,0xe1,0xf3,0xea,0x2d,0xad,0x41,0xa2,0x1b,0xec, + 0x45,0x24,0x94,0x55,0x5e,0x76,0x79,0x98,0x9c,0x8d,0xe0,0x72,0x98,0x35,0xc4,0xd3,0x0c,0x70,0x9f,0x13, + 0xc1,0x2f,0x7d,0x48,0x68,0x45,0x57,0x92,0xf1,0xb4,0x0e,0xe4,0xcf,0x45,0x87,0xa0,0x42,0x14,0x64,0x10, + 0x1c,0xb9,0xb5,0x7e,0x70,0xda,0x37,0xa0,0xe2,0x4e,0x81,0x82,0xf5,0xed,0x88,0x72,0x06,0xbe,0x8d,0xb8, + 0xd9,0xb0,0x64,0xb7,0x5f,0xcd,0xf0,0xb1,0x8b,0x8b,0x03,0x00,0xb9,0x39,0x24,0x1f,0x04,0x1b,0x21,0x21, + 0x4b,0x28,0x5d,0x04,0x65,0xa9,0x5c,0x2f,0xe0,0xfc,0xa7,0x70,0x67,0x14,0x1d,0x99,0x4f,0xeb,0x09,0x51, + 0x36,0xf1,0x2a,0x6b,0x92,0xc9,0xd1,0x47,0x1a,0xd9,0x71,0xcf,0xca,0x76,0xe5,0xe3,0x59,0x11,0xf9,0xe0, + 0x23,0xd0,0x60,0xfa,0x80,0x6c,0x10,0x89,0x46,0xc4,0x4e,0xb0,0x85,0xae,0x42,0x5b,0xe8,0x96,0xe6,0xa8, + 0x3a,0x6a,0x8e,0x93,0x21,0x0f,0x58,0x22,0x6b,0x88,0x2a,0x3c,0x3b,0x22,0x0a,0xca,0x45,0x13,0x39,0xee, + 0x99,0xe5,0x4f,0x93,0x89,0x75,0xf2,0xfa,0xe6,0x80,0x46,0xf8,0x6d,0x4c,0x35,0x16,0xf1,0x54,0xc1,0xee, + 0x84,0x3d,0xf2,0x89,0x4f,0x24,0x02,0x8d,0x46,0x46,0x33,0xf3,0x6d,0xcc,0x51,0x32,0xce,0x80,0x7e,0x3e, + 0xc6,0x73,0xd6,0xad,0xed,0x4d,0x29,0x4f,0x34,0xd9,0xb8,0xf9,0xca,0xdc,0x0a,0x40,0x7b,0x3f,0x50,0x08, + 0x9e,0xd1,0x9a,0x25,0x29,0x8c,0x1e,0x27,0xa8,0x62,0xd2,0xab,0x00,0x91,0xac,0xc4,0x9c,0x41,0xbe,0x8a, + 0x3f,0x02,0xe7,0xa5,0xdf,0xd2,0x5f,0x69,0xb3,0xff,0x81,0x34,0x97,0x12,0xc2,0xad,0x9c,0x98,0x8c,0xd7, + 0x7a,0x0a,0x65,0x24,0x13,0x1b,0x53,0xb0,0xa9,0xb2,0xfe,0x0c,0x4a,0xcc,0xb5,0x12,0xf7,0x7d,0x09,0x50, + 0x8e,0xf6,0x72,0x19,0x18,0xfd,0x3d,0x89,0x6c,0x67,0xd1,0xa8,0xc7,0x6d,0x6b,0x5a,0x17,0x23,0xfa,0x49, + 0xb1,0x8c,0xcf,0x6b,0xb6,0xd9,0xf8,0x8b,0x6a,0x95,0x4d,0xa6,0x9d,0x10,0x85,0x03,0x51,0xc9,0x0a,0x43, + 0x37,0xe1,0x50,0x34,0x93,0x75,0x74,0xac,0xda,0xc0,0x5e,0x1d,0xe6,0x21,0xbc,0xed,0x19,0x16,0xc6,0x43, + 0x76,0xa1,0xe6,0x1c,0x59,0x8e,0xcf,0xb2,0x62,0xb4,0x73,0x59,0xd2,0x71,0x8a,0x00,0x58,0xf2,0x34,0x2a, + 0x1b,0x16,0x0e,0x9d,0x13,0x09,0x95,0x9f,0x23,0x46,0x6c,0xb3,0x44,0x70,0x05,0xc2,0x32,0x73,0x88,0xca, + 0x8a,0xe6,0x9d,0x6e,0x74,0x4d,0x24,0x10,0x65,0x53,0xea,0xc4,0xe0,0x10,0xca,0x62,0xdf,0xe0,0xb7,0xf3, + 0xbc,0x45,0xb0,0x0c,0xf3,0x31,0xbe,0xc3,0x26,0xec,0x62,0x8d,0x82,0x89,0xd7,0xec,0x75,0x5c,0x04,0x22, + 0x3b,0x87,0x80,0x9a,0x08,0xb4,0xe6,0x84,0x78,0xa2,0x25,0x7d,0x5b,0xe0,0x90,0x49,0x52,0xd3,0x4c,0x35, + 0x58,0x9b,0x68,0x2f,0xe7,0x19,0x7d,0x52,0xc9,0x27,0x81,0x7c,0x94,0xe0,0x21,0x3e,0x0b,0xfc,0x57,0xea, + 0xb8,0x70,0x2c,0x4e,0x01,0x87,0xb1,0x8a,0xd8,0xa6,0xaa,0xd6,0xc5,0x79,0xf9,0xc6,0xba,0x49,0xd3,0xc4, + 0x10,0x64,0x30,0x16,0xb0,0x88,0x8e,0x45,0x99,0xc4,0xec,0x3a,0xc6,0x3b,0x30,0xd1,0xe6,0x38,0x57,0x3e, + 0xc7,0x6d,0xb9,0x87,0x53,0xde,0x76,0x86,0x8d,0xf3,0x05,0x68,0x0b,0x12,0xe5,0xb3,0x32,0xd0,0x47,0x6c, + 0xd9,0x6a,0xc4,0x06,0x0c,0xa5,0xa0,0x38,0xda,0xfd,0xdc,0xc3,0xf5,0x5a,0x88,0xf3,0x39,0x0d,0x1f,0xf6, + 0x50,0x01,0x4a,0x0b,0x9c,0x36,0xc2,0x40,0x76,0x4e,0x76,0xc0,0xda,0xda,0x66,0xb5,0xd4,0xb5,0x3d,0x7b, + 0x50,0xce,0xa4,0x30,0xf1,0xc1,0x16,0xa9,0xfc,0x6e,0x0d,0x28,0x6e,0xba,0xef,0x99,0xf5,0x3b,0xe9,0x1b, + 0x61,0x23,0xc2,0x9b,0x27,0x41,0x70,0x9a,0x09,0x07,0x6a,0x3d,0xe2,0x40,0x34,0x36,0x3a,0x9f,0x6b,0x9b, + 0xe2,0x8e,0xc6,0xca,0x2a,0xf1,0xab,0xe3,0x6d,0x31,0x91,0x84,0x31,0x07,0xfb,0x5e,0x22,0x40,0x8d,0x86, + 0x8c,0x7b,0xc0,0x48,0x77,0x43,0x9e,0x65,0x88,0x57,0x42,0x74,0x65,0xd6,0x17,0xa2,0x4e,0xca,0x94,0x55, + 0xee,0x1b,0xe6,0x71,0xe2,0x9b,0xe0,0xfa,0x22,0x1a,0x95,0x36,0xd4,0xa8,0xc4,0xda,0x4b,0x76,0x41,0x70, + 0x7e,0x93,0x1d,0xd0,0x9a,0x74,0xd3,0x1e,0x1e,0x60,0x81,0x4c,0xa0,0x2f,0x24,0x78,0x7f,0x39,0xbf,0x07, + 0x4b,0x2b,0xb1,0x57,0x18,0x63,0xe0,0xcc,0xbf,0x66,0xaf,0x79,0x78,0x1d,0xf7,0x27,0x8d,0x4e,0xae,0x38, + 0x58,0xc0,0xec,0x29,0xb4,0xd1,0xdd,0x32,0xc6,0x1a,0x8b,0x23,0xd9,0xf8,0xcd,0x72,0x24,0x71,0xdb,0x8e, + 0x33,0x84,0x58,0xd9,0xb4,0x28,0x78,0xd6,0xba,0x10,0x27,0x27,0x88,0x17,0xd0,0xb1,0xbd,0x7c,0xd1,0xb1, + 0x8f,0x60,0x17,0x45,0x9c,0xe6,0x3d,0x72,0x81,0xbd,0x33,0x83,0xaf,0x5e,0xb6,0x1d,0xca,0xa4,0xbf,0x3a, + 0x93,0xd0,0x75,0xfe,0x9b,0xfd,0xc3,0x74,0x53,0x57,0x33,0x09,0x9d,0xfe,0x7b,0xa5,0xa1,0xaa,0x53,0xdb, + 0xb1,0x8b,0xa3,0x20,0x81,0xc4,0x8e,0x81,0xf1,0x6d,0x1c,0x85,0x52,0x22,0x60,0xb3,0xdb,0xaa,0x36,0xe8, + 0x2e,0x10,0x2b,0x3e,0xef,0x99,0x08,0xb0,0x9a,0x94,0xe1,0x14,0x0a,0x18,0x06,0xcf,0x13,0xc6,0x75,0x7d, + 0xb8,0xb4,0x81,0x7a,0x61,0xf6,0xce,0x96,0x8e,0x86,0x2f,0x78,0x01,0x49,0xd9,0x86,0xbd,0xd1,0xb8,0x81, + 0x00,0x99,0x49,0x80,0xa7,0xa0,0xc5,0x2a,0x66,0xf0,0x42,0xd2,0xe6,0xe9,0x86,0xae,0x81,0x2d,0xf1,0xb7, + 0x0b,0xf6,0xd8,0x62,0x14,0x03,0x87,0x35,0xfc,0xe2,0x96,0x10,0xd7,0xc2,0x0b,0x43,0x26,0x8f,0x76,0x66, + 0x34,0xc4,0xba,0x82,0xcb,0x56,0xeb,0xf4,0xfe,0x73,0xbe,0xf3,0x32,0xf0,0x02,0x68,0x43,0xcf,0xee,0x1b, + 0x11,0x32,0x3f,0x81,0x9e,0x20,0x7d,0xcb,0x7b,0xde,0x27,0xa8,0x32,0x7c,0xa3,0x03,0x98,0x4b,0xc1,0xb4, + 0x8c,0x9f,0x88,0xe0,0x30,0x4f,0x08,0x8e,0x8c,0xdf,0xe3,0xd4,0x3c,0x84,0x66,0xfd,0xdd,0xe5,0x6f,0x27, + 0x7a,0xd2,0xee,0x45,0x5b,0xd1,0x9e,0x4e,0xdb,0x94,0xa3,0xf3,0x07,0x46,0xe4,0x21,0x80,0x6d,0x00,0xca, + 0xd0,0xe1,0x48,0x93,0x85,0xd0,0x81,0xb4,0x3b,0xa1,0xa7,0x72,0xbb,0xf3,0x61,0xc5,0x3b,0x94,0x08,0xdd, + 0x0c,0x75,0x62,0xe3,0x81,0xf4,0xe2,0x8b,0xdd,0x20,0x20,0xc0,0xff,0xbd,0x8c,0x7a,0x91,0x28,0xfa,0x2d, + 0x83,0x5d,0xc9,0x4a,0x9a,0x7e,0x6b,0x82,0x2e,0xa3,0x68,0xdc,0x11,0xcf,0xb5,0x26,0x26,0x40,0xac,0x4d, + 0xe8,0x5d,0x54,0xa7,0xc3,0xea,0x78,0x03,0x0f,0x02,0x74,0xd7,0xd4,0x3d,0x1c,0x76,0xce,0xad,0x47,0xcd, + 0xe5,0x79,0x94,0x46,0x8b,0xbc,0xbd,0x60,0x43,0xa3,0x89,0x3c,0x6e,0x68,0x8b,0x1e,0xb7,0x36,0xba,0xcf, + 0xa6,0x86,0xd3,0xd6,0xe8,0xa2,0xee,0xfd,0xbe,0xd2,0xf5,0xf5,0x7b,0x0d,0x3d,0x74,0x25,0xf7,0xd0,0xdc, + 0x15,0x4b,0x73,0x56,0x5c,0x46,0x43,0xaa,0x94,0x1f,0x7b,0x7b,0x85,0x6d,0x2e,0x6b,0x7d,0xd6,0xf3,0x11, + 0xb2,0x9e,0xd7,0x45,0xe8,0xc6,0x6d,0xc1,0x14,0x18,0x02,0x0e,0xda,0x15,0x2c,0xe7,0xe9,0xdb,0x66,0xdc, + 0x57,0xab,0x54,0x6c,0x0d,0x35,0xe7,0x5f,0x1c,0xfe,0xf8,0xc5,0x21,0x8b,0x03,0x16,0x8f,0x86,0x90,0x4f, + 0x7d,0xfb,0x2f,0xca,0xe7,0x55,0x3d,0x58,0x0b,0xfe,0x3a,0x94,0x51,0x10,0x3e,0xde,0xdd,0xe5,0x24,0xc6, + 0xc8,0xb6,0x6e,0x82,0x0f,0x79,0x28,0x02,0xc0,0xfd,0x4e,0x84,0xd8,0x3e,0xc6,0x16,0x68,0x3c,0x1c,0xf5, + 0xf4,0xcb,0x42,0x26,0xd9,0x8f,0xe6,0xe8,0x0f,0xfd,0xc3,0x59,0xe7,0xe7,0x8d,0xc7,0xb4,0x31,0x4e,0xe5, + 0x48,0x2c,0x44,0x11,0xf0,0x73,0x5f,0xbe,0x82,0x25,0x14,0x19,0x09,0x9f,0xb4,0x40,0xa1,0x9d,0x60,0x11, + 0x35,0xbc,0x11,0xe3,0xda,0xcc,0xb9,0x08,0x43,0x33,0xcf,0x90,0xd7,0xac,0xab,0xa3,0x39,0xd5,0xec,0x57, + 0xf6,0x99,0x32,0x4e,0x94,0x08,0xeb,0xba,0xdb,0xdb,0x55,0xc1,0x0e,0x8d,0xf4,0x43,0xdc,0x20,0x0f,0x18, + 0x74,0x05,0x46,0xf3,0x08,0x52,0xa5,0xb7,0x08,0x95,0x75,0x51,0xcd,0x89,0x53,0xe7,0x1a,0x3a,0xb2,0x27, + 0x8c,0x33,0x4c,0x00,0x65,0xdc,0x4d,0x31,0x32,0xb9,0xd0,0x7e,0xbf,0x15,0x01,0x85,0xd3,0x2e,0x8b,0x93, + 0x1c,0x36,0x56,0x41,0x24,0x44,0xf1,0x30,0xab,0xc7,0x7b,0x7b,0x05,0x6d,0x5d,0x58,0x30,0x16,0xc7,0x86, + 0xd0,0x8e,0x73,0x1c,0xf6,0xde,0xd3,0x32,0xf0,0x3c,0xf9,0xc3,0xc0,0xa4,0x89,0x91,0x17,0x38,0x7c,0xdd, + 0xde,0xea,0x7e,0x52,0x77,0xde,0x2d,0x24,0x0b,0x37,0x9c,0x61,0xe5,0x96,0xf0,0xda,0xd3,0xf2,0xd0,0x64, + 0x3f,0xb7,0x9b,0xb5,0xfa,0xc8,0x02,0xe0,0xc0,0xa8,0xc4,0x46,0x23,0x4a,0xfb,0x12,0x2b,0x22,0x3b,0x88, + 0x14,0x36,0x4c,0x56,0x29,0x12,0x96,0x3a,0x6b,0x84,0x9b,0x9f,0xe2,0xa7,0x9e,0xd0,0xac,0xd1,0x14,0xff, + 0x04,0xc1,0x57,0x66,0x1d,0x71,0x7f,0x07,0xa3,0x6b,0x74,0xa0,0x91,0xc2,0x9d,0x07,0xaa,0x80,0xd1,0x04, + 0x4e,0x02,0xfa,0xf1,0xfb,0x4a,0x64,0xd1,0xb3,0xdd,0xdd,0xb9,0x05,0x6a,0xe2,0x5d,0xe4,0x6b,0xf8,0xac, + 0x0d,0x7d,0x5b,0x94,0x44,0x93,0xf3,0x37,0x2b,0xf7,0x0d,0xb6,0xf0,0xaa,0x13,0xd5,0xe6,0x6c,0x48,0x36, + 0x2e,0xc6,0x79,0xab,0xd0,0x24,0x8f,0xda,0x5a,0x61,0x1c,0x91,0xad,0x56,0x9a,0x5c,0x8f,0xab,0xc9,0x0f, + 0xf0,0x97,0x92,0xe4,0x08,0x32,0xe8,0xb3,0x98,0x9d,0x02,0xe6,0x2e,0xf2,0x07,0x17,0x40,0x1c,0x41,0x13, + 0x3e,0xf0,0xce,0x16,0xe7,0xbd,0x16,0xe7,0xdc,0x62,0x7f,0x12,0x4c,0xcb,0xcc,0x86,0xbb,0xf9,0x6e,0x92, + 0x29,0x7b,0x9d,0xd1,0x57,0x3c,0xed,0xd1,0xaa,0x94,0x89,0x69,0xe9,0x1f,0x04,0xb1,0x5d,0x83,0xdd,0x9f, + 0x3b,0x38,0x6e,0x28,0xea,0x4e,0xcf,0x1c,0xd7,0x6c,0xcf,0xb1,0x98,0x7d,0x6c,0xa8,0x4c,0xe3,0x82,0x4d, + 0x71,0x93,0x91,0x89,0x0b,0xce,0x3a,0xf1,0xc2,0xbf,0x65,0x97,0x45,0xa2,0xca,0x23,0x82,0x77,0x82,0xc1, + 0x51,0x9d,0x5f,0xbd,0x66,0x32,0xaa,0x62,0x72,0x6a,0x2f,0x1a,0x45,0x7b,0xa1,0x3d,0x48,0x15,0x56,0x03, + 0x59,0x81,0x84,0x5d,0x1d,0x45,0x49,0x42,0xfb,0x43,0x96,0x99,0x38,0x25,0x1d,0x70,0x4a,0x1e,0x30,0xe9, + 0xa0,0xe4,0x5a,0x13,0x13,0xb7,0x7e,0xd3,0x04,0xf6,0xf7,0x76,0x53,0xfa,0xdc,0x0a,0xe8,0xf0,0x8f,0xb1, + 0x9b,0xac,0xd8,0x30,0xb2,0x8a,0x4b,0x09,0xb5,0x61,0xca,0x1b,0xe3,0xc8,0x1a,0xc6,0x91,0xb5,0x5c,0x98, + 0xc0,0xc7,0x80,0xef,0x01,0x5f,0x83,0x22,0xe3,0x02,0x05,0xe0,0x8d,0x27,0x03,0x57,0x88,0x36,0x0e,0x28, + 0xa0,0x4d,0xc3,0x6d,0x9e,0xfd,0x58,0x33,0xd6,0x12,0xd7,0xa9,0x2e,0x11,0x5a,0x94,0x17,0xba,0x2e,0x38, + 0xde,0x36,0xcd,0x50,0x1b,0x0b,0x32,0x74,0x48,0xb0,0xb5,0x9e,0x02,0x92,0x60,0x98,0x03,0xe6,0x93,0xa8, + 0x31,0x8c,0x66,0x9a,0x85,0x9f,0xb0,0x70,0x7c,0x95,0xd5,0xbd,0x24,0xe6,0xc7,0x8c,0x68,0x08,0xe1,0x10, + 0x3a,0x05,0x32,0xd6,0x42,0xaf,0x8c,0xbb,0x04,0x53,0x8b,0xab,0x24,0xcf,0x56,0xa0,0xf0,0xa7,0xc2,0xcc, + 0xe4,0x04,0xfa,0x90,0x94,0x82,0x6f,0x1b,0xc7,0x6f,0xcb,0xdb,0xdb,0x77,0x30,0xe8,0x58,0xc9,0xe6,0x87, + 0xb8,0x42,0x9e,0x4c,0x31,0x2b,0x60,0x37,0xf9,0x41,0xc5,0xd3,0x04,0xbb,0xaf,0x62,0x5b,0x7c,0x0d,0x24, + 0x3e,0x41,0x70,0x3b,0x04,0xa6,0x75,0x11,0xc7,0x5f,0xbf,0x8f,0xdb,0x42,0x95,0xc8,0x4c,0xd2,0x7f,0xd1, + 0x77,0x09,0x02,0x6d,0xf6,0x0a,0x21,0x33,0x58,0x85,0x1f,0x42,0x03,0x81,0x7f,0xd6,0xec,0x74,0x57,0x70, + 0x80,0xec,0x8d,0x0f,0x35,0x44,0x25,0x59,0x44,0x94,0x76,0x75,0x75,0x46,0xfb,0xa3,0xa1,0xbd,0xa2,0xcb, + 0x48,0xc2,0x8e,0x45,0xcf,0x5e,0x3d,0x7e,0xf6,0xd4,0xd8,0x4a,0x0b,0x8f,0x3f,0x89,0xda,0x9a,0xc6,0x92, + 0x42,0xc9,0xdf,0x09,0x8c,0xce,0x5e,0x6f,0xce,0x1e,0xea,0x5f,0xb5,0x09,0x21,0xd0,0x2d,0xc2,0xbd,0x20, + 0xaa,0xf1,0x2c,0xa7,0x72,0xa8,0xb7,0x9c,0x98,0xe7,0x54,0xea,0xf5,0x35,0xe8,0xe2,0x33,0xdd,0x76,0x93, + 0xa2,0x71,0x7f,0x47,0xa7,0x15,0xc9,0xd2,0xce,0x7c,0x81,0xaa,0xe2,0x4a,0x92,0xa1,0xb1,0x8b,0xfd,0x0c, + 0x15,0x79,0x0b,0xff,0xb6,0x57,0xf0,0x9a,0xf8,0xf0,0xec,0x97,0x0f,0x8f,0xde,0x3d,0x7b,0xd4,0x19,0x35, + 0xa5,0x2f,0xfd,0x59,0x6a,0x66,0x87,0x63,0x6a,0x16,0x7a,0x79,0x61,0x49,0xa7,0xd0,0x16,0x50,0x13,0xf1, + 0x5d,0x2d,0x5f,0x10,0x11,0x31,0x2b,0x08,0xf7,0xc0,0xb2,0x26,0x3f,0xcf,0x05,0x39,0x2a,0xdb,0x95,0xde, + 0x1d,0x2f,0x42,0x41,0xc0,0x52,0x64,0xdc,0x0e,0x5c,0x01,0xe3,0xb2,0x95,0x6d,0x38,0xdb,0x3e,0x58,0x0f, + 0x2c,0x43,0x00,0x09,0xbf,0xf4,0xf6,0xa3,0x25,0xdd,0x38,0xf8,0x4e,0x6e,0xf6,0x8a,0x6c,0x4a,0x5c,0x5b, + 0x19,0x32,0x0c,0xd8,0x6d,0x95,0xe1,0x15,0x58,0x6e,0x01,0xb9,0x2c,0x98,0xa3,0x7e,0xa1,0xdc,0x14,0x4a, + 0x9c,0x6e,0x65,0x90,0xd6,0xb7,0x77,0xa2,0xc1,0x8f,0xa2,0x80,0xe9,0x52,0x3c,0xc0,0x05,0x25,0x63,0x60, + 0xdc,0x21,0xf6,0x48,0xb8,0x38,0xbe,0xe4,0x72,0xc6,0xde,0xb8,0x04,0xb6,0xaf,0x5b,0x43,0x90,0x31,0xec, + 0xb1,0x25,0xbd,0x10,0x4d,0xce,0x8c,0x9e,0x83,0x65,0x84,0xe5,0x4b,0x65,0xc8,0x39,0xaf,0x92,0xcb,0x3a, + 0x8c,0x12,0xcf,0x8a,0xf0,0x45,0x9a,0x37,0x1b,0xa4,0x84,0x93,0xb7,0x10,0x36,0xbd,0x62,0xfd,0x11,0x11, + 0xff,0x63,0x83,0x75,0xd8,0x32,0x19,0xc2,0xa0,0x13,0x8e,0x1b,0x5b,0x60,0xcc,0x5c,0x89,0x26,0xb2,0x98, + 0x25,0x94,0x71,0x93,0xbd,0x05,0x0a,0x78,0xd5,0xb2,0x04,0x51,0xc1,0x35,0xab,0x80,0x01,0xa6,0xbe,0xe4, + 0x82,0x03,0x77,0x10,0x88,0xd5,0x97,0x6a,0x70,0xea,0xfb,0x82,0x59,0x13,0x2e,0xeb,0xb7,0xed,0x86,0x93, + 0x5c,0xcc,0x76,0x59,0x81,0xc3,0x46,0x6b,0xcc,0xc2,0x2f,0x08,0xb7,0xcb,0x25,0x0f,0xd4,0xfe,0x45,0x56, + 0xec,0x1d,0xae,0x03,0xb2,0x89,0x51,0xe7,0xf6,0xa1,0xa8,0x42,0x57,0xf8,0x33,0x67,0x0b,0x71,0x62,0xc9, + 0x96,0xf4,0x7f,0x46,0xff,0xad,0x43,0xe6,0x80,0x10,0x05,0x9b,0x8b,0x4d,0x72,0xdb,0x30,0x2e,0x16,0x9d, + 0x88,0x4d,0xf2,0xc5,0xd7,0x62,0xdb,0xfd,0xf5,0x03,0x1a,0xb2,0xc8,0x47,0xb7,0x0f,0xfd,0x9e,0x9c,0x26, + 0x5f,0x7c,0xd9,0x2b,0x30,0xed,0x14,0x58,0x25,0x5f,0xff,0xbd,0x57,0x60,0xd5,0x29,0x30,0x4f,0xbe,0xfc, + 0xaf,0x5e,0x81,0x79,0xa7,0xc0,0xe1,0x83,0x2f,0xc1,0x31,0xde,0xde,0xd2,0x03,0x6f,0xe6,0xb0,0x8b,0x7b, + 0x87,0xc9,0x70,0xc6,0x3e,0x32,0xce,0x6e,0x6f,0x97,0xc4,0x5f,0x25,0x37,0xcd,0x55,0x61,0x3c,0x06,0xa6, + 0x39,0xd5,0xfa,0xc5,0x97,0x29,0x0c,0x0f,0xc4,0x68,0x76,0x2c,0x49,0x5f,0xa7,0x4d,0x2f,0xe9,0xeb,0xbf, + 0xa7,0xab,0x5e,0xd2,0x97,0x07,0xe9,0x6c,0x6f,0xaf,0x93,0x72,0x98,0xce,0xf6,0xf7,0x3b,0x9f,0x1d,0xa6, + 0xcb,0x6e,0x99,0xaf,0xbf,0x48,0x97,0xdd,0x32,0x87,0x0f,0xbe,0x48,0xcf,0xba,0x85,0x0e,0x1f,0x7c,0x95, + 0x9e,0xed,0xef,0x83,0x32,0x93,0x09,0xf1,0x7b,0xee,0x32,0xa3,0xe1,0xa8,0x85,0x61,0xb9,0xc6,0x97,0x1c, + 0x5e,0x52,0x9c,0x5f,0xe2,0x85,0x19,0x37,0x8d,0xf9,0x12,0x62,0x95,0xfd,0xfd,0x64,0xbc,0xd8,0xdd,0x3d, + 0x31,0x31,0x7c,0x17,0x09,0x6b,0x08,0x60,0xe8,0x2f,0x02,0x57,0x67,0x3f,0x52,0x4d,0x62,0x86,0x22,0x66, + 0xd9,0xed,0xa5,0xd1,0x1e,0xc4,0x52,0x2d,0x2a,0x96,0xa0,0xfc,0x60,0xc1,0x14,0x6e,0xf2,0x17,0xe0,0x72, + 0x70,0x09,0x88,0x87,0xaf,0x3c,0x84,0xaf,0x2a,0x1b,0xa0,0xf7,0x33,0x2f,0xb9,0x8b,0xe2,0x48,0x04,0x9c, + 0x0f,0xed,0xbd,0x24,0xf7,0x4e,0x28,0xf5,0x1e,0x11,0x27,0xf7,0xa2,0x24,0xbe,0xc7,0x51,0xe8,0xa3,0x71, + 0x37,0xcb,0xf5,0xa5,0x4c,0x7c,0x29,0x15,0xb9,0x8c,0x92,0x60,0x63,0x0d,0xd9,0x72,0x28,0xf1,0xab,0x02, + 0xc7,0x3b,0xde,0x7c,0x5d,0x27,0xe7,0xe8,0xe8,0xa7,0x15,0x22,0xac,0xb1,0x49,0x54,0x7d,0xcc,0x81,0x81, + 0x03,0xaa,0xf4,0x5f,0x7d,0x31,0x4a,0x3b,0x5a,0xe4,0xcb,0xae,0xe9,0x89,0x0f,0x03,0xb4,0xde,0xb4,0x2e, + 0x0f,0x0a,0xac,0x93,0xf4,0x28,0xb0,0x26,0xfa,0xa7,0x3b,0xeb,0xe3,0xd6,0x69,0xe7,0x6d,0x80,0x10,0x8f, + 0x0d,0x6e,0xf8,0x0e,0x0f,0xad,0x4c,0xac,0x39,0xbe,0x81,0x8d,0xaf,0x2e,0xcd,0x42,0x5f,0x22,0x8e,0xb0, + 0x6f,0x2b,0xeb,0x5b,0x80,0xfe,0xa7,0x95,0x69,0xed,0xad,0x04,0xb9,0x86,0x57,0xf9,0x52,0xe2,0x10,0x99, + 0x77,0x1c,0x6d,0x77,0x54,0x18,0x78,0xe0,0x69,0x4f,0xd3,0x42,0x13,0x0a,0xfc,0xce,0x7a,0x6d,0xeb,0xa1, + 0xea,0xe3,0x0c,0xd5,0xce,0x2d,0x56,0x67,0xd1,0x36,0x5c,0x76,0x08,0xd9,0xc3,0xa4,0x32,0x2c,0xc2,0x0e, + 0xb4,0x94,0xff,0x7f,0x4d,0xbe,0xf1,0x9f,0x0d,0x8b,0x58,0x97,0x5a,0x2a,0xb5,0xcb,0xa5,0x08,0x27,0xc3, + 0x37,0x5c,0x8e,0x7d,0x18,0x96,0x14,0xe7,0x17,0xed,0x24,0xa6,0x7c,0x43,0x24,0x2f,0x74,0xb9,0x8a,0x94, + 0xab,0x80,0xf3,0x93,0xb4,0x1e,0x2d,0x8a,0xd9,0x6c,0x2e,0x21,0x68,0xa2,0x45,0xb5,0x6a,0xf4,0x6a,0x19, + 0x59,0x83,0xdf,0x71,0x6d,0xd4,0xd4,0x13,0xdf,0xb2,0x24,0xb0,0xfd,0xba,0x3c,0x32,0x09,0x20,0x8b,0x10, + 0x26,0xb0,0x5a,0x3c,0x45,0x31,0xed,0x0b,0x68,0x97,0x65,0x2c,0xf7,0x6c,0x60,0xc1,0xf5,0x18,0x17,0xb5, + 0x5e,0x42,0x76,0xd6,0x04,0x9c,0x8b,0xb9,0xd6,0x7d,0x9a,0xe1,0x52,0x9e,0xf1,0x86,0xee,0xaf,0x98,0x4c, + 0xdd,0xcd,0xe2,0x8d,0x73,0xd3,0x6b,0xe4,0x22,0x9f,0x6c,0x4a,0xf9,0x47,0x8d,0x9a,0x1e,0xa7,0x47,0x53, + 0xd5,0x1c,0xa7,0xcd,0x20,0x08,0xd4,0x0e,0x04,0x84,0x42,0x2a,0xf8,0x06,0x07,0xf6,0xa6,0xba,0xbd,0x95, + 0x97,0xcb,0x7d,0x8e,0xcd,0x82,0x24,0xde,0xc9,0x1c,0x83,0xd7,0x86,0xd1,0xc4,0x41,0x27,0x2a,0x0c,0xf1, + 0x82,0xb1,0x84,0x4c,0xa1,0x5d,0x1c,0x36,0xf9,0xa0,0xb0,0x1f,0xf4,0x42,0xdd,0x16,0xe1,0xa9,0x59,0x74, + 0x7b,0xe3,0xbf,0x66,0xc9,0x4c,0x00,0xa2,0x61,0x24,0x9c,0x00,0x56,0x8d,0xd5,0x7e,0xd1,0xb7,0xda,0x87, + 0x6e,0x09,0x4e,0x11,0x7c,0xa5,0x0a,0x02,0x85,0xde,0x14,0x36,0x76,0x56,0x85,0xd8,0x59,0xe2,0x62,0x61, + 0xd9,0x35,0xe7,0xc7,0xd8,0x69,0x32,0xb4,0xe2,0xaf,0x7a,0xb3,0x26,0x56,0xfa,0x45,0x16,0xed,0xec,0x5c, + 0x12,0x32,0x63,0x04,0x0a,0xc2,0x21,0x8b,0x62,0x23,0x2e,0xa4,0x8c,0x2d,0x6a,0x79,0xeb,0x9e,0x8c,0xfc, + 0xde,0x04,0x29,0x16,0xd1,0xe2,0x39,0x81,0xac,0x74,0x24,0xce,0x0e,0xf2,0xe9,0x09,0xf1,0x9d,0x7b,0x05, + 0xd0,0xa3,0xe1,0x27,0xb3,0x1c,0xd4,0x63,0x81,0x80,0xf5,0x6c,0x74,0x63,0xc1,0x87,0x70,0x2c,0x78,0xbd, + 0x84,0xb8,0xf3,0x4f,0x4b,0x5c,0x37,0x48,0x5d,0x4c,0xef,0x19,0x1c,0x7b,0x4f,0x59,0xd3,0x1c,0x1f,0xda, + 0x64,0x2b,0x46,0x83,0x5b,0x37,0xd1,0x5e,0xb5,0x17,0xad,0xa3,0x60,0x01,0x72,0x1d,0xa2,0xf1,0x10,0xb9, + 0xd1,0x14,0xfe,0x58,0xfb,0x00,0x86,0xc1,0x65,0x56,0x47,0x51,0xf2,0xf0,0x00,0x52,0x47,0xdc,0xce,0xf5, + 0xc2,0xa6,0x1e,0x53,0xea,0x8f,0xb5,0x8b,0xd2,0x1b,0xff,0xc1,0x1f,0x87,0x25,0xc0,0x53,0x7f,0xb3,0x7f, + 0x38,0xb9,0xa1,0x5e,0xa7,0xfe,0xfc,0xf9,0x83,0x28,0x36,0x62,0xc5,0x79,0x00,0x36,0xf5,0x8f,0x9a,0x30, + 0x3e,0x06,0xb3,0x4e,0xa5,0x34,0x97,0xe0,0x38,0x4d,0x4c,0xf8,0x7c,0x07,0x92,0x95,0x5a,0xf8,0xb9,0xce, + 0x7e,0x87,0x88,0x60,0x9b,0x9d,0xed,0x92,0x95,0x8e,0x7f,0xaa,0x33,0x84,0x1f,0x4e,0x26,0x73,0x3c,0x27, + 0xe9,0xd7,0x60,0x69,0x7f,0xaa,0x43,0x31,0x95,0x95,0x3f,0x8b,0x87,0x24,0x55,0xf1,0x47,0x6d,0x2b,0xe0, + 0xc0,0xb2,0x7c,0x0f,0xd7,0x0a,0x7e,0xdf,0x09,0x07,0x35,0x74,0xe4,0x0b,0xd7,0x05,0x01,0xe4,0xde,0x9e, + 0xfa,0xfa,0x0b,0xf3,0xbc,0xbf,0xcf,0xa6,0x76,0x34,0x87,0xbf,0x73,0x4d,0x02,0x5a,0x6b,0x34,0x6e,0x63, + 0x9e,0x77,0xc7,0xfb,0xb3,0x19,0xaf,0x4d,0xf9,0x99,0xc6,0xaa,0x7e,0xaf,0xa1,0x6e,0xf4,0x9a,0x64,0xe3, + 0xde,0xc9,0xbe,0x11,0x13,0x73,0xa3,0x4d,0x1a,0xed,0x10,0x5d,0x1a,0xe3,0x0e,0x45,0xaa,0xd1,0xdc,0xd9, + 0x85,0x02,0xf2,0xc8,0x10,0x11,0x38,0xa1,0x6a,0x6f,0x3f,0xfc,0x5d,0x1d,0x12,0x54,0x7b,0x7b,0x7f,0x84, + 0xa6,0xef,0xd3,0xa0,0xe0,0x1f,0xf5,0x37,0xd9,0x8f,0x01,0xdc,0xaf,0xc2,0xa8,0xe1,0x4c,0x1e,0xb6,0xb7, + 0xb7,0x4c,0x47,0x06,0x42,0x6c,0x9e,0xa4,0xd0,0xd9,0x50,0x66,0x93,0x1d,0x68,0x79,0x2d,0xe0,0x97,0x31, + 0x4e,0xc6,0x81,0x63,0x9e,0x0e,0xa5,0x22,0x1a,0x91,0x2a,0x74,0x32,0x3a,0xc1,0x75,0x91,0x1f,0xf2,0x06, + 0x86,0x3d,0x95,0x7f,0x0b,0xa5,0x66,0x17,0xde,0xc3,0x33,0xab,0xee,0x88,0x27,0x61,0x7a,0x7b,0xc1,0x7e, + 0x95,0x74,0x36,0xf3,0x5d,0x8c,0xdd,0x1b,0x5f,0xfc,0x46,0xfe,0xbe,0xee,0x87,0xa3,0xdd,0x2a,0x62,0x7f, + 0x3d,0xe0,0x70,0x13,0xbb,0xbb,0x4b,0xde,0x98,0xe2,0xc3,0xb6,0x46,0x08,0x63,0xc4,0x25,0x50,0xdf,0xd7, + 0x9b,0x3c,0x22,0x5a,0xfb,0xa9,0x9c,0xdc,0x98,0x73,0x10,0x96,0x3a,0x72,0x96,0x21,0xac,0x9c,0xc1,0xf7, + 0x01,0x25,0xb3,0xd4,0x5e,0x67,0x15,0xd3,0xa9,0xfa,0x7d,0x9d,0x0c,0x72,0xa6,0x88,0x68,0x15,0xcc,0x57, + 0xd7,0x19,0x60,0xa6,0x63,0x1b,0x95,0x6a,0xdb,0x09,0x6c,0x2a,0xb0,0xf9,0xdb,0x4e,0x5c,0x83,0x5b,0x00, + 0x1c,0x0f,0x6a,0x52,0x18,0xa9,0x55,0x59,0x19,0xbe,0x8f,0xbf,0xaf,0x0d,0x93,0xda,0x43,0x0e,0xd4,0xd1, + 0xa3,0x53,0xe8,0x81,0x0c,0xee,0x78,0x5b,0x4e,0x22,0x73,0xfd,0x75,0x6a,0xad,0x13,0x39,0x48,0xb4,0xf7, + 0x05,0xe0,0x0f,0x38,0xdc,0x33,0xfb,0x99,0xfb,0xab,0xc7,0x29,0x79,0x8d,0xfa,0xae,0x0a,0x89,0x81,0x30, + 0x92,0x8a,0x3a,0x9f,0x5e,0xe1,0x53,0x93,0xd1,0xfb,0x1c,0x9f,0xad,0xc1,0xe3,0x7c,0xcf,0x2a,0xfa,0x33, + 0xad,0x96,0x5a,0xd5,0x5e,0x66,0xfc,0xbd,0x0b,0x09,0x10,0x38,0x1c,0x0e,0xcd,0x91,0x75,0xb8,0xe9,0xcc, + 0x94,0x4b,0x0c,0x45,0xec,0x32,0x25,0x4d,0xd6,0xfb,0xb0,0x2b,0xdd,0x0a,0x53,0xef,0x12,0x70,0x39,0x1f, + 0x9f,0x8e,0x8c,0xab,0x10,0x39,0x2b,0x44,0x51,0x85,0x89,0x58,0x57,0x1c,0x67,0x51,0x14,0xe4,0xae,0xcc, + 0x2d,0x83,0x28,0xa1,0xf8,0xae,0x68,0x7b,0x77,0xb3,0x71,0x4f,0x2a,0x4a,0x02,0x94,0xef,0x3e,0xbc,0x7a, + 0xc9,0x09,0x5c,0xba,0x1e,0x0e,0x81,0x1b,0x98,0x40,0x55,0x54,0xb6,0x41,0x9b,0x98,0xbc,0xa2,0x5c,0xe9, + 0x31,0x70,0x5e,0x2e,0x45,0x5f,0xc3,0x49,0xcb,0x89,0x9a,0x73,0x03,0x98,0x4f,0x90,0x15,0x87,0x45,0x60, + 0x7e,0xc4,0xd7,0x1a,0x8b,0x94,0x4d,0x9a,0xcf,0x47,0x27,0xfc,0x9a,0x55,0xc6,0x8a,0xb1,0x85,0x70,0x2d, + 0x8a,0x6c,0xc4,0xfb,0x2a,0x19,0x2f,0xb3,0xb9,0xda,0x8e,0xcf,0xb2,0x3c,0x11,0x69,0x43,0x43,0xe9,0xb0, + 0xce,0x7e,0xf3,0xf6,0xc3,0x8b,0x37,0xaf,0x51,0xcf,0x99,0x15,0xff,0x10,0x43,0x38,0xc0,0x86,0x10,0x6e, + 0x60,0x07,0x73,0x7f,0x31,0x96,0x38,0x4a,0x1b,0x3d,0x1c,0x5f,0x73,0xe0,0xe2,0x0c,0x05,0xc7,0x7f,0xeb, + 0xc4,0x84,0x7a,0x1d,0x9f,0xa9,0x65,0xd2,0xa9,0x3e,0x50,0xc4,0x89,0x2a,0x41,0x54,0xd8,0xaf,0x2c,0xd9, + 0x26,0xe6,0x6b,0x45,0x62,0x4c,0x5a,0xe6,0xf9,0x1f,0xd7,0x3e,0x98,0xb7,0x58,0xb9,0xf0,0x29,0x6f,0x09, + 0xa2,0xa9,0xb8,0xaa,0x4d,0x4d,0xd0,0xb7,0x82,0xa9,0x02,0x6f,0x7b,0x2f,0x34,0x02,0x7b,0x18,0xcb,0xa3, + 0xed,0x28,0x48,0xc6,0x52,0xfa,0xc7,0x20,0x21,0xbd,0xc9,0xe6,0xc6,0xfe,0x86,0x41,0xa4,0x92,0x5b,0x00, + 0xa9,0x4c,0xe0,0xd7,0xa9,0xfd,0x99,0xb7,0xd0,0xac,0x92,0xbe,0x9e,0xfb,0x48,0xc3,0x56,0x45,0xfd,0x1e, + 0xa9,0x93,0xcb,0xb8,0xf3,0xce,0xb1,0x13,0x02,0x6f,0x46,0xfd,0x39,0x85,0xf2,0xe2,0x0e,0xed,0xec,0xc7, + 0xa2,0x17,0xbb,0xe4,0x5c,0x77,0x65,0x60,0x2c,0x30,0xaa,0x7a,0xb2,0xaf,0x22,0xec,0x47,0x22,0xba,0xb0, + 0xc6,0x3d,0x57,0x1b,0xb9,0x95,0xc9,0x4d,0x82,0x88,0x3f,0x66,0x9f,0xae,0xb2,0x4e,0x71,0x35,0x87,0x41, + 0x6a,0x55,0x2f,0xf8,0x3a,0xf9,0x19,0xa7,0x41,0x41,0xd0,0xc8,0x03,0xed,0xc3,0xb3,0x6c,0x75,0x7b,0x3b, + 0x57,0x4b,0xcc,0x97,0xd9,0xa8,0x52,0x39,0x6f,0x65,0x93,0xd2,0xab,0x21,0x83,0x11,0xbc,0xd9,0xe1,0xe2, + 0x37,0xb5,0x4c,0xd2,0xe5,0x58,0x0c,0x5b,0xbb,0xd0,0x1a,0x6a,0xdb,0x99,0x8e,0x6c,0xc7,0x03,0x02,0xb6, + 0xff,0x48,0xf0,0x76,0xe9,0x34,0xa1,0x09,0xec,0x5b,0xd8,0x59,0x4c,0x92,0xdb,0x7e,0xb2,0x77,0x5c,0x86, + 0xa5,0x6d,0x35,0xb2,0xf1,0xd7,0xaa,0x4e,0x6d,0x55,0xff,0x33,0xaf,0xd2,0xaf,0xa5,0x0e,0x0e,0x8d,0x79, + 0x46,0x48,0x6a,0x06,0x9b,0xc6,0xdd,0xdd,0xf7,0xb0,0x44,0x6c,0x94,0xc5,0x52,0x9c,0x3d,0x4b,0xe2,0x3c, + 0xe3,0x7c,0x02,0xde,0x33,0xfa,0x75,0xc5,0x4c,0xac,0x13,0x60,0x80,0x3c,0x64,0x09,0xae,0x75,0xe8,0x95, + 0xc6,0x91,0x42,0x8d,0x1c,0x43,0x22,0x70,0xb0,0x30,0x8e,0x4d,0x08,0x03,0xa1,0xc3,0x56,0xc4,0x94,0xa5, + 0x36,0x76,0x2d,0xf7,0x7f,0x6d,0xf6,0xee,0x27,0xee,0x12,0xa7,0x01,0x8f,0xf0,0xa0,0x1e,0x0e,0xae,0x85, + 0xc0,0x62,0xe9,0x66,0x62,0x18,0x64,0x17,0x1a,0x96,0x98,0x9d,0xc8,0x37,0x44,0x83,0x89,0xb1,0xbe,0xdc, + 0xc2,0xcd,0x8f,0x41,0xa7,0x58,0x23,0x13,0xb1,0x92,0xbc,0x1d,0x96,0x29,0xc6,0x25,0x71,0x59,0x76,0x80, + 0x61,0xec,0xfd,0xff,0xdf,0x67,0x41,0x90,0xf9,0xe6,0x44,0xb8,0x74,0x15,0xa6,0xca,0x21,0x00,0x26,0xa0, + 0x2f,0xc2,0xb7,0x53,0x22,0x53,0xe7,0x65,0xcd,0x7f,0x69,0xfa,0x60,0x7d,0x62,0xa7,0x2d,0x98,0xca,0x1a, + 0xb6,0x60,0x63,0x78,0x47,0xbb,0xdb,0xa6,0x6a,0x85,0xe1,0x02,0xc4,0x2d,0x9a,0x84,0x52,0x62,0x70,0x8e, + 0xf9,0x1e,0x8d,0xbb,0xba,0x19,0xcc,0xf9,0xa9,0x36,0xa4,0x8d,0xb1,0x00,0xd9,0xb8,0xb5,0xc5,0x22,0x51, + 0x77,0x1d,0x30,0xb3,0xc0,0x34,0x2d,0x90,0x1a,0xe3,0x26,0x8b,0x67,0x45,0xdc,0x1a,0xab,0xad,0xe8,0x32, + 0x42,0x00,0xcc,0x98,0x95,0xc5,0xda,0xa0,0xf0,0x01,0xdc,0xf8,0x8c,0x71,0xe3,0x06,0x79,0x72,0xc5,0x7d, + 0x79,0x57,0x84,0x0e,0x34,0xef,0x50,0x34,0x14,0xc4,0xec,0xe8,0xae,0xf5,0xc8,0xa6,0xcc,0x9b,0xa5,0x10, + 0x9b,0xc9,0x1c,0x17,0xa8,0x0c,0x2c,0xbf,0x00,0xa1,0x70,0x20,0x81,0x3c,0x81,0x56,0xda,0xec,0xc1,0xd0, + 0xbf,0xd4,0x34,0x35,0x54,0xdb,0xee,0xee,0x7c,0xb0,0x15,0x04,0xe0,0x36,0x70,0x1c,0x38,0x9d,0xf6,0x38, + 0xe9,0x27,0x52,0x40,0xe1,0x18,0x30,0x26,0x17,0xb5,0x75,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd, + 0xe7,0x82,0x93,0x2a,0xd8,0xd0,0x2b,0x4d,0x06,0xc3,0x8b,0x97,0xc5,0xe4,0x75,0x91,0xbe,0x2a,0x08,0xe3, + 0xf7,0x7c,0xd0,0x86,0x15,0x3b,0x8d,0x9a,0xc3,0x6e,0x9d,0xfd,0xcd,0xba,0x3a,0x22,0x09,0x87,0x21,0xbc, + 0xdd,0xde,0xde,0xf4,0x1b,0x68,0x16,0xe1,0x6e,0x36,0x1e,0x76,0x6a,0x9a,0x3e,0x34,0xf9,0x0a,0xd7,0x34, + 0xab,0x01,0x25,0x11,0x9a,0x0a,0x9c,0x5e,0xc3,0x25,0x23,0x68,0x37,0xb7,0xea,0x52,0x93,0x4f,0x4c,0x00, + 0x0f,0x3e,0x4b,0x24,0xe6,0x44,0x7d,0xf4,0xb4,0xd8,0x8b,0x9e,0xc2,0xd1,0x2a,0x3a,0x76,0x26,0x7b,0xb0, + 0x8a,0xaa,0x6c,0xde,0xaa,0x96,0xab,0xae,0xbb,0xd9,0x79,0xf6,0x48,0x73,0x28,0x59,0x28,0x61,0x8f,0xde, + 0xde,0x51,0xc9,0xd4,0xe6,0x0d,0x57,0xb2,0x42,0x25,0x30,0x76,0xa5,0x39,0x3a,0x80,0xfa,0xc1,0xdf,0x06, + 0xcc,0x13,0x9e,0xb3,0x09,0x7a,0x49,0x8f,0x54,0x20,0xa7,0x02,0xd6,0xd6,0x9d,0x28,0x06,0x58,0x60,0x17, + 0x93,0x95,0x29,0xf1,0x1c,0x25,0x56,0x54,0x62,0xea,0x4a,0x9c,0x65,0x94,0x1e,0xcf,0x7d,0xd4,0xf6,0x1c, + 0xb4,0xef,0x37,0x07,0x54,0xeb,0x6a,0xf2,0xb2,0x48,0x9f,0x17,0xcc,0xed,0x27,0x93,0x52,0x1a,0xb3,0x75, + 0xa7,0xb6,0x8a,0xf4,0x40,0x99,0xe0,0xcd,0xca,0x40,0x4b,0x3a,0x57,0x0e,0x56,0xd2,0x33,0x5c,0xc9,0xfc, + 0xc1,0x5e,0x1d,0x98,0x4a,0x2d,0xbb,0xbb,0x8f,0x8d,0x2c,0x5d,0x66,0xcf,0x46,0x02,0x89,0x8e,0x43,0x34, + 0xf0,0x48,0xfb,0x43,0x7a,0x6c,0x31,0xdd,0x43,0x17,0x6f,0x31,0x69,0x33,0x17,0x82,0xdb,0xf3,0xeb,0x76, + 0x1c,0x9d,0xcb,0xc5,0xba,0x12,0xe5,0xd0,0xbb,0xfc,0x3d,0x10,0xea,0xde,0x7b,0x2d,0x81,0xaa,0xd6,0xe1, + 0x4e,0x7b,0x1f,0x92,0x58,0x87,0xfa,0x8b,0xbf,0x99,0xeb,0x6a,0xbd,0x00,0x61,0xff,0x30,0x2c,0xff,0x21, + 0xa0,0xa5,0x40,0x42,0x11,0xbd,0x03,0xb7,0x2e,0xdc,0x13,0x94,0x13,0x71,0x7e,0xca,0xce,0x14,0xee,0xcd, + 0x5c,0xdb,0x39,0x97,0xc8,0x7b,0x3e,0x3d,0xb6,0x32,0xd0,0xec,0x54,0x5b,0x6e,0xc8,0x6f,0xe8,0xc4,0xf9, + 0x6a,0xb1,0xcd,0x25,0x7d,0x46,0x10,0xae,0x6b,0xae,0xfc,0x90,0xa3,0x8a,0x81,0x20,0xc1,0x8d,0x77,0x9e, + 0xb6,0x41,0x44,0x32,0x42,0x8c,0x0a,0xfe,0xb3,0xbc,0xb1,0x09,0x48,0x46,0xf2,0x19,0xab,0xf2,0xce,0xec, + 0xeb,0x87,0x4a,0x12,0x96,0x36,0xe1,0x11,0xd3,0xec,0x92,0x08,0x0f,0x61,0x9a,0x52,0x9d,0x9b,0xaf,0x2e, + 0xdc,0xbb,0xfd,0xec,0xd2,0xa5,0x84,0xdf,0x2d,0x28,0xf5,0x54,0xc3,0xae,0xfc,0x19,0xaa,0x54,0xe7,0xb6, + 0x72,0x75,0x8d,0xf2,0xb8,0x06,0x5e,0x32,0x4e,0x5c,0xaf,0xec,0xc4,0xa8,0x2b,0xf7,0xed,0x23,0xae,0x57, + 0xed,0xb8,0x26,0xd4,0x27,0xfb,0xb5,0xc9,0xfa,0xe8,0xfb,0xe7,0xbe,0x7f,0x42,0x69,0x33,0xb3,0xa7,0xd4, + 0xa3,0xec,0xaa,0x56,0xef,0xe9,0x8f,0x31,0xf0,0x1f,0xbf,0x27,0x0a,0xc8,0x91,0x5c,0x8f,0xb2,0xf8,0x7d, + 0x66,0x5f,0x13,0xcb,0xb1,0xf2,0x4a,0x7c,0xc8,0xb6,0x1f,0x05,0x41,0x98,0x88,0x23,0x65,0xeb,0xff,0xaa, + 0x02,0x1d,0x88,0xf8,0xc2,0x58,0x92,0x0f,0xb7,0xb7,0x3b,0x38,0x3c,0x69,0x0d,0x76,0x04,0x04,0xde,0x64, + 0x1f,0x76,0x77,0x67,0x93,0x19,0xed,0x86,0xdf,0xf0,0x78,0x39,0xb9,0x4c,0x97,0xea,0x19,0x1e,0x2f,0x26, + 0x17,0xb4,0x2f,0x5e,0x64,0x1f,0x26,0x57,0xb7,0xb7,0x8b,0x74,0xa1,0x5e,0x22,0x75,0xc0,0x7f,0x66,0x67, + 0xb2,0x93,0x9e,0xab,0xe7,0x54,0xf0,0xd3,0xed,0xed,0x75,0x7a,0xad,0x9e,0xd2,0xe3,0xc7,0xdb,0xdb,0x93, + 0xf4,0x44,0xbd,0x26,0xbe,0xa5,0x88,0x9f,0x24,0x93,0x27,0x32,0x6d,0xe9,0x93,0x44,0xbd,0xcd,0xf8,0x20, + 0x6c,0x58,0x61,0xaf,0x5e,0x65,0xcf,0x74,0xfc,0x32,0x51,0xef,0x32,0x0f,0x27,0xa1,0xa7,0x6e,0x72,0xf3, + 0x96,0x40,0xf2,0x13,0x24,0xb1,0xcf,0x12,0xc5,0xbf,0xbf,0xd1,0x51,0xf9,0xce,0x83,0xe6,0x24,0xa6,0x12, + 0x9c,0xf1,0x26,0x51,0x4f,0x77,0x77,0x9f,0xb2,0xa5,0xc5,0xf3,0xdd,0xdd,0xe7,0xf0,0x67,0x08,0x6a,0x35, + 0x81,0xdb,0x0d,0xbc,0x36,0x17,0x15,0x0d,0xec,0x07,0xda,0x0e,0xde,0x44,0xca,0x37,0x6a,0x85,0x46,0x32, + 0xd7,0xe0,0x53,0x95,0x09,0xad,0x7c,0x82,0xb0,0x47,0xcc,0x6a,0xfa,0xe7,0x23,0x16,0xac,0x1d,0x8f,0xf9, + 0x12,0x53,0x31,0x4c,0x2c,0xc5,0x30,0x51,0x63,0x87,0xb9,0x7d,0xd3,0x7f,0x8f,0x13,0xf5,0x72,0x77,0xf7, + 0x25,0x75,0xfd,0x1d,0xcc,0xa6,0x5e,0xec,0xee,0xbe,0x40,0x9f,0x31,0xe2,0x1d,0x33,0xa0,0x1d,0x19,0xb1, + 0xba,0xd2,0xe1,0x9c,0xec,0x84,0xf3,0xf1,0xa6,0x33,0x1d,0xb7,0xb7,0xaf,0xe8,0x1c,0xff,0x4d,0xc7,0xaf, + 0x93,0x49,0x70,0x0a,0xbd,0x53,0xaf,0x93,0xf4,0x23,0x8a,0xaf,0xa8,0x31,0x20,0x11,0x15,0x4c,0x84,0x58, + 0xe5,0xd6,0x61,0x7f,0xa8,0x1b,0x5c,0xd5,0xbb,0xb8,0xeb,0x01,0x66,0x10,0x88,0x17,0x76,0x53,0x77,0x3e, + 0x86,0xcd,0xc7,0x9d,0x09,0x8e,0x89,0xf3,0xf4,0x93,0xe8,0x66,0x0c,0xba,0xee,0xa1,0x74,0xf1,0x47,0x95, + 0xe9,0xcc,0xca,0x44,0x5d,0x10,0x20,0x22,0xd0,0xea,0x95,0x4c,0x49,0x0e,0x0f,0x0b,0xfe,0x9d,0x0d,0x4c, + 0x49,0x4e,0x3c,0x14,0xa6,0x84,0x4b,0x75,0xfa,0xb4,0x23,0x53,0xf2,0xa9,0x33,0x25,0x1f,0xd5,0x27,0x9e, + 0x92,0x5c,0xcd,0xd5,0x47,0x99,0x92,0x4b,0x50,0x66,0x39,0xbd,0xa9,0x2b,0xfe,0xe8,0x23,0xe8,0x6c,0x63, + 0x68,0x6e,0x70,0x65,0x1e,0xa2,0xb3,0xe0,0xad,0x8b,0x2b,0x7d,0xba,0xc5,0x95,0xcd,0xdd,0xb8,0x52,0xa2, + 0xc8,0xca,0x5d,0x34,0x0e,0x35,0x5a,0x06,0x4a,0xb4,0xb1,0xdb,0xdc,0xb0,0x45,0xd2,0xd6,0x49,0xa5,0x61, + 0x9c,0x39,0xcf,0x24,0x56,0x0c,0x21,0x49,0xc8,0x5b,0x72,0x8b,0xd5,0x96,0xf6,0xd5,0x22,0xbf,0x99,0x4d, + 0x08,0x71,0xdf,0x05,0x25,0x0a,0xfe,0x7a,0x89,0x2c,0xc2,0x90,0xa6,0x10,0x61,0xc5,0x46,0xb0,0x97,0x64, + 0x9c,0xbb,0xda,0x1d,0xee,0xba,0xa6,0x24,0xf6,0xec,0x96,0x12,0x27,0x78,0xb5,0xa8,0xec,0x4a,0xb6,0xf9, + 0x4a,0xb6,0xf9,0x0e,0xb6,0xf9,0x25,0xad,0x0e,0x23,0x04,0x62,0x79,0x4f,0xa4,0xae,0xf4,0x24,0x61,0xac, + 0x68,0x87,0xd6,0xdd,0xfa,0x21,0x88,0x40,0x84,0x34,0x00,0x30,0xbc,0x06,0x03,0xe9,0x0e,0x86,0x38,0x08, + 0xd8,0x95,0xe0,0x10,0x0f,0x20,0xb3,0xa4,0x03,0x21,0x93,0xf8,0x8a,0x71,0x08,0x43,0x0e,0xd5,0x79,0xce, + 0x86,0x22,0x31,0x36,0xc4,0x62,0x77,0x77,0x81,0x37,0x15,0x74,0xd2,0x60,0x92,0xeb,0xc9,0x35,0x6d,0xd7, + 0xb4,0x8a,0x43,0x82,0xe0,0xb7,0xe0,0x44,0xde,0x8c,0x4e,0x45,0xb3,0x21,0x17,0x30,0x86,0xda,0xe5,0x67, + 0x88,0x59,0xcb,0xac,0x84,0x0f,0x80,0x6c,0x42,0x6c,0xc3,0x9c,0x18,0xa1,0x92,0x83,0x00,0x52,0x13,0x2a, + 0xbe,0x11,0x08,0xa7,0x3e,0x3a,0x38,0x4e,0x11,0x06,0xc7,0x5d,0xf9,0x07,0x67,0x18,0x43,0x3f,0x7d,0x13, + 0x68,0xf4,0x5e,0x18,0x7a,0x65,0x1b,0xea,0x7b,0x1d,0x62,0x80,0x0f,0xcc,0xce,0x79,0xc7,0x11,0x47,0x7a, + 0x3f,0xb7,0x4f,0xca,0x9b,0xca,0x0d,0xd3,0xb7,0xae,0xe4,0x5a,0x1d,0x04,0x55,0x3d,0xef,0x51,0xf1,0x3a, + 0x90,0x8c,0x2d,0x56,0xf3,0xb6,0x58,0xce,0xb5,0xd0,0xeb,0xb7,0xb7,0xfd,0x91,0x05,0x91,0xd3,0xd8,0xd4, + 0x05,0xce,0x5b,0xce,0xf1,0xa6,0xef,0xbb,0x05,0x3f,0x10,0x9f,0x8b,0x2b,0x38,0x8a,0xa4,0xca,0x4e,0x88, + 0xfd,0x7b,0x0d,0x2b,0x20,0xf0,0xbb,0x0a,0x57,0x39,0xcd,0xf9,0x62,0x76,0x9a,0x80,0x8a,0xc1,0xc7,0x26, + 0x64,0x41,0x40,0xb0,0xeb,0x98,0x3f,0x09,0x22,0x08,0x83,0xeb,0x02,0x5d,0x65,0x0a,0xb3,0xa2,0x4a,0xce, + 0xb1,0x7e,0x6a,0x06,0xb7,0xbe,0x82,0xb9,0xa9,0x6e,0xfa,0x7e,0xe7,0x06,0xca,0xa7,0xba,0x7b,0x5d,0x4b, + 0xff,0x1a,0x3e,0x97,0xb5,0x7d,0x1d,0x8b,0x61,0x6d,0xe0,0x47,0x12,0x42,0x99,0x88,0x4a,0x39,0xce,0x1b, + 0x2e,0x2b,0x10,0xb5,0x9f,0x11,0x3f,0x06,0xae,0x20,0x5a,0x9c,0xa1,0x85,0x67,0xf1,0x32,0x53,0x18,0xa1, + 0x79,0x1f,0x90,0x3b,0x0a,0xf1,0x20,0x37,0xbf,0x3c,0x54,0xef,0xb4,0xcb,0x50,0x46,0x90,0x1f,0xd2,0x9b, + 0xef,0x3a,0x4c,0x67,0xdf,0xe1,0xe1,0x92,0xdd,0x1d,0x20,0x75,0x16,0xb5,0x78,0x24,0x7c,0x66,0xd1,0x4a, + 0x8e,0x56,0x84,0x49,0x39,0x76,0xd2,0x68,0x56,0x34,0x6c,0xa3,0x2c,0x19,0xa1,0xfa,0xe2,0x71,0x30,0x13, + 0xdb,0x77,0x38,0x3c,0x88,0xa4,0xaa,0xed,0x23,0xdf,0x49,0x9b,0x3e,0x66,0x7f,0x9a,0xbb,0x64,0x66,0x81, + 0xeb,0x45,0x20,0x15,0x65,0x32,0x60,0xc3,0x30,0xd6,0xae,0x22,0xce,0xf8,0x8e,0x49,0xac,0x75,0x5b,0x9f, + 0x50,0x1d,0xff,0x84,0x37,0x98,0x73,0x49,0x0c,0x85,0x9c,0xdf,0x05,0x0d,0xf0,0x15,0x98,0x3e,0x5a,0x6a, + 0x37,0x90,0x52,0xe9,0xaf,0xac,0x48,0x10,0x44,0x89,0xcd,0x9b,0xc7,0x26,0xb6,0x12,0xa1,0x3f,0x46,0x85, + 0x96,0x9f,0xec,0x79,0xf3,0x15,0xf4,0xc5,0x15,0x2e,0x07,0x39,0x66,0x7f,0xbe,0x81,0x98,0xb6,0x3f,0x79, + 0x49,0xd2,0xfd,0x5f,0x67,0xfb,0x1f,0xb5,0x5e,0xee,0xe7,0x73,0x3a,0x2c,0x76,0xcc,0xcd,0x83,0x4c,0xdf, + 0xf8,0x40,0xd9,0x71,0xe4,0x8b,0x44,0xea,0x86,0xbb,0x96,0xea,0x8d,0xd9,0xf1,0x7d,0x0e,0x81,0xf8,0x0f, + 0x03,0x6c,0x4c,0x12,0xb1,0x72,0xe0,0x94,0x6f,0xc2,0xf4,0xaf,0x6c,0x6b,0xc9,0xef,0xe6,0x34,0x75,0xf9, + 0xee,0x74,0x0d,0x4c,0xc7,0x4d,0x75,0x22,0x6e,0xd5,0x57,0x6f,0x2b,0x84,0x25,0x42,0x69,0x02,0xce,0xc7, + 0x44,0x18,0x73,0x68,0x90,0x79,0x41,0x9f,0xbe,0xc3,0x3d,0xf0,0x61,0xcc,0xfa,0x70,0x79,0xa5,0x02,0x02, + 0x71,0xe5,0x9c,0x6c,0xa4,0x36,0x73,0xb5,0xc5,0x59,0xbb,0x5f,0xf2,0x0f,0xdf,0xa1,0xd6,0x56,0x4b,0x7a, + 0xa5,0xbf,0xc0,0x60,0xf5,0xed,0x6d,0xe1,0xba,0x80,0x21,0xcc,0xac,0x06,0xb2,0x32,0x5d,0x61,0xc1,0xf0, + 0xb8,0xf2,0x17,0xd5,0x13,0x91,0xf9,0xb3,0x3e,0xfd,0x58,0xb4,0x8e,0xff,0xcc,0x22,0xce,0x44,0x40,0xbd, + 0x38,0xda,0xab,0xf7,0xa2,0xe5,0x27,0xc5,0xaa,0xfe,0xe5,0xa7,0x24,0x52,0x55,0x00,0xc0,0x96,0x17,0xcf, + 0xa2,0x83,0x26,0xd4,0xd3,0x7f,0xdf,0xd9,0x75,0x7a,0xf2,0x5b,0x95,0xbe,0xa9,0xbc,0x04,0xdf,0x4a,0xc5, + 0xca,0x8e,0x96,0xce,0x64,0x7f,0xa8,0x70,0xeb,0x6e,0x18,0x36,0xde,0x61,0x6f,0xa3,0xa0,0x66,0x46,0xfa, + 0x90,0x63,0x05,0xb4,0xca,0x19,0x57,0xa4,0x5a,0x59,0x73,0x88,0xce,0x5d,0xbe,0xfd,0x9b,0x5d,0x95,0x37, + 0x13,0x70,0xf7,0x83,0x98,0x78,0xcb,0xc6,0x35,0x12,0x8f,0x12,0x86,0xc4,0x3b,0x72,0xe9,0x44,0x09,0x64, + 0x87,0x41,0x55,0x8e,0xc2,0x0b,0x6c,0x7e,0xb1,0x07,0xdb,0xa6,0xea,0x9e,0xad,0x58,0x08,0x50,0xaf,0x21, + 0x67,0x64,0x4c,0xc6,0x61,0xce,0xe0,0x7b,0x10,0x58,0x3e,0xb5,0xe2,0x5a,0xb4,0x1d,0x1a,0x37,0x19,0x73, + 0x86,0xbb,0xaa,0xac,0xf5,0x99,0xab,0x92,0x9e,0x39,0x72,0x9a,0xf5,0x87,0xea,0x48,0x8a,0x02,0x23,0xda, + 0x71,0x29,0xa1,0x3e,0xdd,0x55,0x33,0x25,0x64,0xae,0xde,0xdd,0x08,0x22,0x4a,0x13,0xc8,0xd3,0xc5,0x8a, + 0x06,0x15,0x8a,0xbe,0xf6,0x94,0xaa,0x11,0xc2,0x5d,0x38,0x3b,0x67,0x58,0x6b,0xd3,0x3b,0xf4,0x5d,0xa6, + 0x7b,0x98,0xcf,0x28,0x90,0x4a,0xeb,0x6e,0x74,0x6f,0xfe,0x0a,0x56,0x50,0x62,0xc8,0xc3,0x61,0x0f,0x22, + 0xbe,0x05,0x8f,0xaa,0xe1,0x90,0x5b,0x08,0xa4,0x6d,0x32,0x29,0x69,0xdf,0x94,0x20,0x2a,0xc3,0x7d,0x13, + 0x26,0xcb,0x41,0xe8,0xbf,0xb5,0xd1,0x8e,0x6b,0x57,0x14,0xf8,0xdd,0x95,0xfa,0x20,0xb2,0xb3,0x7b,0x51, + 0x74,0x8f,0x0d,0xc9,0xef,0xb9,0x80,0xa5,0xf7,0x68,0x91,0x37,0x7b,0x0a,0x44,0xee,0x6a,0xa7,0x17,0x5f, + 0xab,0xe2,0x0b,0x96,0xfb,0x13,0x24,0x23,0x8e,0xed,0x64,0x14,0x8d,0xed,0xa2,0x43,0x4e,0xd4,0x45,0x65, + 0xcc,0x8f,0xa4,0x48,0x39,0x2f,0x4a,0xbd,0xef,0x5a,0x96,0xe2,0x92,0xfa,0xc1,0x24,0xb2,0x45,0x65,0xef, + 0xca,0x1b,0x82,0xe3,0x45,0x15,0x7a,0xc8,0xb4,0xd9,0x02,0x0e,0x6d,0x0c,0x90,0xd4,0xd3,0xf1,0x26,0x4c, + 0xaa,0xc0,0x7c,0x97,0x29,0x1a,0x07,0x73,0x5c,0xb1,0xa6,0x7d,0x52,0x3a,0x01,0xd8,0x58,0x3f,0x2c,0x6d, + 0xe4,0x81,0x3a,0x83,0xdf,0x92,0x96,0xcd,0xa2,0x2a,0x79,0x16,0x72,0xea,0x79,0x65,0xc4,0x55,0x46,0xea, + 0x7f,0x91,0x37,0x8f,0x0b,0x46,0x7a,0x30,0x70,0x55,0x71,0x78,0xa7,0x92,0x83,0x63,0x73,0x3f,0xd0,0x63, + 0x89,0x72,0x13,0x86,0xbd,0xf7,0xf7,0x65,0xf4,0x55,0x02,0x1c,0x05,0xd2,0x4a,0x98,0x0e,0x13,0x5c,0xf7, + 0x0d,0xc3,0x09,0x5c,0xc9,0x95,0x98,0xcb,0x21,0x2c,0x8a,0x79,0x5c,0x41,0xc3,0x43,0x0c,0xaa,0xef,0x5b, + 0x98,0xfd,0x8e,0xb3,0x69,0x18,0xdf,0x42,0xbf,0x2b,0x96,0xcc,0x12,0x95,0x14,0x07,0x86,0x18,0x1d,0x1f, + 0x28,0xa3,0x9c,0x6e,0x17,0xf3,0x48,0xe2,0x9f,0x5d,0x21,0x7e,0xa7,0x34,0x15,0x28,0xae,0x99,0x46,0x9f, + 0xd2,0xb4,0xcc,0x39,0x47,0x0a,0x81,0xde,0xbb,0x2e,0xa7,0xbb,0xbb,0x6c,0x87,0xe8,0xa3,0x5a,0x72,0xae, + 0xca,0xc1,0x10,0x47,0x3b,0x6c,0x79,0x17,0xb1,0x7d,0x37,0x74,0xf9,0x1e,0x42,0x76,0x77,0x4f,0x2b,0x77, + 0xe1,0xad,0x45,0x6f,0xc2,0x6c,0x11,0xd1,0xcd,0xa6,0x9b,0x88,0xb5,0x95,0x32,0x30,0xd6,0x61,0x40,0xd9, + 0x97,0xc3,0x03,0x7e,0x29,0x03,0x2e,0x4d,0x79,0x5a,0xfe,0xed,0xf0,0x72,0xc6,0x55,0xd6,0x99,0xbd,0xe7, + 0x32,0x7b,0x66,0x8d,0x5e,0x71,0x58,0x07,0x62,0xa8,0x56,0x47,0x87,0xc7,0xe3,0xb9,0x99,0x69,0x27,0xe7, + 0x73,0x7e,0x5d,0x7b,0x87,0x18,0xc9,0x32,0xab,0x89,0xe1,0x2b,0x88,0xbf,0xab,0x88,0xa7,0x9b,0x43,0xc6, + 0xa5,0xe2,0xf8,0x2c,0x6b,0x93,0x8e,0x8f,0x1e,0xe2,0xf4,0xb8,0xd7,0x0d,0x13,0xd1,0xa5,0x32,0x1e,0x51, + 0xe9,0xcc,0xd8,0x76,0x5e,0xc0,0xb2,0x25,0xbd,0x54,0xce,0x0c,0x31,0x5d,0xac,0x39,0xc8,0x86,0xb5,0x1d, + 0xe4,0x09,0x30,0xf3,0xd1,0x33,0xe6,0xab,0xf8,0xd6,0x9d,0x70,0x76,0xa3,0x05,0x84,0xd8,0x58,0xd5,0xfa, + 0xb3,0x53,0xbd,0xbb,0x6b,0xe6,0xda,0x7a,0x99,0x18,0xb5,0xb5,0x9a,0xa9,0x0b,0x45,0x9d,0x59,0x77,0xf8, + 0xa9,0x6f,0xfd,0x69,0xce,0x40,0x9d,0x59,0x4b,0x45,0x82,0xe4,0x28,0x19,0x32,0x5f,0xb3,0x76,0xc9,0x32, + 0xd1,0x4f,0x4d,0xc8,0x27,0xcb,0xaf,0xb0,0x12,0x97,0xbe,0xcd,0xca,0xa3,0x07,0xc7,0x46,0x7f,0x64,0x29, + 0x2e,0x5a,0x0a,0x93,0xe2,0x56,0xed,0xad,0x05,0xea,0xc2,0xd4,0xf7,0xda,0x47,0x00,0xae,0x26,0x88,0xe3, + 0x34,0x2f,0xf2,0x86,0x72,0xed,0x07,0xaf,0xe5,0x83,0x7a,0x54,0x10,0x4d,0x93,0x13,0xed,0x78,0x98,0x55, + 0xbe,0x5e,0x55,0x51,0xab,0x6c,0x81,0x61,0xb3,0x1f,0x64,0x95,0xef,0x08,0x82,0xaf,0xd8,0x1a,0x55,0xcd, + 0xd7,0xe2,0x95,0x1c,0xb3,0xa0,0xeb,0x48,0xf2,0x6f,0xa7,0x92,0x29,0xce,0x9e,0x54,0x84,0x15,0x98,0x2e, + 0x63,0x1e,0x25,0x4c,0xe0,0xd0,0xab,0xdd,0x24,0xab,0xe7,0x09,0xac,0xa1,0x43,0xa1,0xf3,0x0f,0xba,0xbb, + 0x6a,0x7c,0x6e,0xda,0xe8,0xf6,0xad,0x15,0x56,0x06,0xf6,0xce,0x7d,0x66,0x70,0x12,0xd9,0x68,0x4f,0xe9, + 0x4d,0x94,0x46,0x15,0x7e,0x7c,0xe0,0x07,0x73,0xd7,0xde,0x5e,0x06,0x83,0xbf,0x62,0xef,0x5e,0x94,0xde, + 0xdb,0x6b,0x11,0x2f,0x88,0xdd,0xca,0x61,0xf7,0xed,0xef,0x93,0x0e,0x44,0xde,0x6c,0xb8,0xe8,0xcd,0xa2, + 0x4b,0x47,0xd5,0xba,0xfb,0x49,0x9d,0x24,0x93,0xf8,0xd6,0x75,0xb4,0x19,0xb8,0xda,0x5d,0x74,0x16,0x1d, + 0xc1,0xb4,0xbc,0x2b,0x9c,0xf7,0x3a,0x51,0x73,0x1d,0x89,0xf5,0x04,0x54,0xd0,0x4c,0x1e,0x47,0xe6,0xe4, + 0xfb,0xa1,0xb2,0x44,0xb3,0x38,0x8e,0x11,0xed,0xf3,0x7d,0x2f,0x89,0x01,0xd4,0x1b,0xf5,0x5a,0x2b,0x87, + 0x88,0x08,0x3d,0xfc,0xc9,0xad,0xef,0x2a,0x8b,0x90,0x38,0x2c,0x65,0x50,0x98,0xbe,0xfd,0x37,0x87,0x08, + 0xaa,0xf6,0x32,0x7e,0x50,0xbf,0x54,0xac,0x35,0xcf,0xad,0xb1,0xaf,0x0f,0x94,0xad,0x3f,0xe5,0x12,0x2d, + 0xa5,0xb1,0x81,0xc0,0x83,0x9a,0xc6,0x54,0xc1,0xb7,0x55,0x7c,0x14,0x4d,0xdb,0x7a,0x4e,0x83,0x60,0xab, + 0x61,0xfa,0xcd,0xe7,0xf8,0xbb,0xd0,0x6d,0x1e,0x1d,0xdf,0x6d,0xd3,0xbe,0x3d,0x65,0x92,0xf1,0x0e,0x93, + 0x78,0x83,0x5e,0x47,0x11,0xcc,0xf4,0x7f,0x20,0x22,0xcc,0x4d,0xd6,0xed,0x2d,0x78,0x45,0x31,0x47,0x71, + 0x1d,0xb6,0x2e,0xc6,0xce,0x72,0x28,0x2e,0xf6,0x08,0xcb,0xc3,0xca,0xe3,0xde,0xe9,0xaa,0x6d,0xab,0xf2, + 0x1e,0xa6,0x41,0x2a,0x45,0x58,0x81,0xbd,0x9c,0x1b,0x26,0x86,0xca,0x54,0x4b,0x69,0xb4,0x08,0x4e,0xf5, + 0x47,0x07,0xfc,0x18,0xdb,0x51,0x6a,0xaa,0x82,0xb8,0x9b,0xb1,0xa9,0xe4,0x06,0xd4,0x75,0x5c,0x4e,0xcc, + 0x9a,0xec,0x45,0x36,0x23,0x4a,0xeb,0x09,0x9b,0xcf,0xda,0x8c,0xc4,0xe7,0xd8,0x05,0x64,0x48,0xb3,0x6d, + 0xdd,0xde,0xd6,0xb6,0x96,0x74,0xa8,0x19,0x57,0x51,0x08,0x9d,0x3a,0x38,0x8f,0x39,0x2c,0xcf,0x0b,0xbe, + 0xb5,0xe6,0xf0,0x20,0x09,0x63,0xf2,0xdb,0x69,0x34,0xe1,0xaf,0x89,0x70,0xa4,0xea,0x0c,0x9c,0xfd,0x52, + 0xf9,0x50,0xc9,0xd1,0xc9,0xc7,0xb8,0x5b,0x94,0x98,0x87,0x1e,0x22,0x6e,0x79,0xe3,0xf4,0x53,0x4b,0xa4, + 0xfa,0x4f,0x43,0xf3,0xd0,0xb2,0x63,0x38,0x85,0xf0,0x3e,0xff,0x44,0x04,0x60,0x6b,0xb2,0x2a,0xc1,0xe4, + 0xd2,0x08,0x26,0x86,0x1c,0x44,0xd6,0xed,0x0f,0x68,0xf1,0x27,0xb5,0xd8,0x45,0xa5,0xf7,0x4e,0xa6,0x26, + 0xb8,0xc1,0x3d,0x9e,0x36,0xd5,0x8b,0xcd,0x9c,0x96,0xfd,0x68,0xcd,0x01,0x02,0xab,0xfd,0x1e,0xb6,0x36, + 0x47,0x50,0x6f,0x30,0xc1,0x2e,0xaf,0x6f,0xeb,0x6a,0xaa,0x9b,0x46,0xcf,0xec,0xd2,0x1b,0x03,0x1a,0x89, + 0xaf,0x23,0x7e,0x04,0xdb,0xf2,0xb0,0x51,0x34,0x0f,0x8b,0xd2,0x7e,0xe3,0x92,0xf4,0xbb,0x51,0xb0,0x6b, + 0x18,0x1a,0x04,0x0b,0x41,0x69,0x76,0xa9,0x61,0x5c,0xcc,0x2e,0x00,0x0e,0x9d,0x4f,0x30,0xdb,0xc1,0x7b, + 0x4a,0x3b,0xbb,0x09,0x0a,0x3c,0xe8,0x15,0x78,0x00,0x1f,0x35,0xc7,0xae,0x85,0xdd,0x60,0x72,0xe8,0x64, + 0x1e,0x1b,0xdb,0x6f,0x4f,0xf0,0xc2,0x58,0x3b,0x47,0xd0,0xab,0x60,0xea,0xcd,0x94,0xd1,0x54,0xd3,0x5a, + 0x06,0xe3,0x2b,0xce,0x78,0x78,0xc5,0xd9,0xc6,0xe8,0x1a,0x3f,0x0d,0x9e,0x00,0xdf,0xee,0x11,0xe0,0x42, + 0xb8,0x0f,0x71,0x20,0x03,0x73,0xe4,0xed,0x0d,0x2c,0x73,0x72,0x7b,0x1b,0x50,0xfa,0x84,0x11,0x57,0xa5, + 0xd5,0xe9,0x47,0x27,0x6c,0xaf,0xbc,0x17,0xd7,0x3c,0x1f,0xb5,0xc4,0xb2,0xf3,0x81,0xd1,0xa3,0x1b,0x4c, + 0x92,0x04,0x47,0xbf,0xc3,0xfd,0xe6,0xaa,0x34,0x36,0x15,0x34,0xea,0x14,0xa5,0x45,0x08,0xd6,0x41,0xcf, + 0xeb,0x88,0x57,0xc7,0x19,0xef,0x1b,0x17,0x86,0xc8,0xee,0xa0,0x6d,0xdc,0x66,0x9a,0xd3,0x56,0x86,0xa7, + 0x38,0xe1,0x1e,0xe6,0x11,0x3c,0x06,0x41,0xd7,0x10,0x28,0x4b,0xde,0xe2,0x0a,0x36,0x49,0xb6,0x0c,0x6f, + 0xab,0x9c,0xc6,0xc2,0xd6,0xd5,0x32,0x97,0x3c,0x7e,0x99,0x78,0x1f,0x00,0x36,0x24,0x3f,0xba,0xa2,0xd1, + 0x2e,0xbb,0x31,0x41,0xbd,0xe9,0x8a,0xf5,0xc1,0x10,0x85,0xb9,0x4d,0x4e,0x3b,0xc9,0xb8,0x3d,0x4d,0x45, + 0x59,0xdc,0x99,0x35,0xd3,0xbc,0x6f,0x50,0x71,0x57,0x1c,0x9d,0x09,0x1e,0x9c,0x29,0xb6,0x89,0x8d,0x82, + 0xe6,0x16,0xa1,0xcf,0xf0,0xb8,0x1e,0xa0,0x9f,0xe8,0x41,0x99,0xa1,0xf5,0x7b,0x98,0x5c,0x5a,0xf3,0xbd, + 0x88,0x9e,0x3a,0x4d,0xc7,0x05,0xbf,0x14,0xae,0x1f,0xdd,0x4b,0x38,0xb5,0x17,0x7d,0xf8,0xeb,0x13,0x88, + 0xb7,0x29,0xb3,0x30,0xe7,0xa8,0x3a,0x66,0x9c,0xe1,0x9d,0xe4,0xcd,0x83,0x81,0x16,0x98,0xcc,0x70,0xcf, + 0x03,0x24,0xb5,0x71,0x61,0x4f,0x0f,0x2d,0x60,0xef,0xe8,0x3e,0x86,0x91,0x73,0x67,0x10,0x73,0xf9,0xed, + 0x13,0x21,0x22,0xfc,0x82,0x66,0x3c,0xde,0xfc,0xde,0x46,0xdf,0x4b,0xf6,0x1c,0x5e,0x92,0x78,0x28,0x91, + 0x12,0x4f,0x6b,0x37,0x0d,0xce,0x8b,0x22,0xc4,0x64,0x1d,0x6c,0x24,0x31,0xd8,0xff,0xd2,0xf6,0xec,0xb4, + 0x15,0x0a,0x18,0xa2,0x88,0x25,0x2c,0x46,0x67,0x5c,0x8f,0x8d,0x29,0x2f,0x64,0x0c,0x37,0xc4,0x8b,0x03, + 0xb3,0x5b,0x87,0x16,0xe7,0x68,0xeb,0xce,0xaf,0x49,0x74,0x52,0xc5,0xc1,0xc8,0xd9,0xab,0x0e,0x5d,0x7c, + 0x31,0xdb,0xdb,0xe3,0xd7,0x12,0x63,0x49,0x4d,0x81,0x75,0x17,0xd1,0x06,0xee,0x04,0x9b,0xd1,0xb7,0x3b, + 0x03,0xc2,0x40,0x3d,0x75,0x16,0x3b,0xe3,0xfe,0x40,0xab,0xe8,0xf7,0x74,0x3d,0xa9,0xe5,0xfc,0x90,0xd9, + 0x9a,0xe4,0xe6,0x38,0x31,0xc7,0x0a,0xdf,0x77,0x62,0x0d,0x2e,0xdc,0x6d,0xc8,0x04,0x20,0x27,0x44,0x81, + 0x46,0xc6,0x4e,0x41,0xdb,0xe8,0x85,0x9e,0xbe,0xd0,0x9f,0x96,0x7c,0xb8,0xe7,0xe2,0x1f,0x91,0x4c,0x68, + 0x5b,0x13,0xe3,0x79,0x3a,0xaf,0xa6,0x1f,0x0d,0xf6,0x70,0x1d,0xa3,0x45,0x0c,0x32,0xd7,0x3d,0xa2,0xd9, + 0x91,0xbb,0xfd,0x7b,0x6a,0xa6,0x1d,0x14,0x48,0xe8,0x4b,0xd5,0xd9,0x30,0x72,0xec,0xdf,0x93,0x7d,0x63, + 0xc2,0x5a,0x18,0x07,0xdf,0x20,0x8a,0x44,0x7a,0x14,0xb1,0xb3,0xaf,0x0d,0x78,0x31,0x74,0x6f,0xd6,0x4d, + 0x65,0xc3,0xec,0x1b,0xe9,0xe3,0xaa,0x73,0x15,0xf7,0x91,0x44,0xb7,0x38,0x1e,0xaf,0xc0,0x6a,0x67,0xdb, + 0xdb,0x2b,0xc4,0xca,0xa6,0xbd,0x71,0x95,0xd7,0xb8,0x3b,0x24,0x17,0x67,0xde,0x03,0xd5,0x10,0xd9,0x2d, + 0x8c,0x20,0x11,0xdf,0x26,0x24,0xc6,0xbd,0xc8,0xf1,0x84,0x9c,0x68,0x5e,0xe0,0x7e,0xb3,0x17,0x57,0x82, + 0x6f,0x09,0xf6,0x85,0x06,0xc2,0xb1,0xe4,0x68,0xa7,0xd0,0xff,0x68,0x83,0xf8,0x30,0xc5,0x12,0x41,0x21, + 0xd5,0x88,0xce,0x98,0xc9,0x3d,0xe6,0x35,0xb9,0x15,0x7a,0x40,0x0b,0x36,0xd7,0x11,0xae,0xd4,0x92,0xe7, + 0x44,0x07,0x2a,0xf5,0xb4,0xb2,0xec,0xc3,0xb5,0xf2,0x91,0x95,0xa6,0x93,0xa6,0xcb,0x32,0x1c,0xbb,0x08, + 0x4f,0x06,0x75,0xf3,0xc5,0x2a,0x7b,0x59,0x0d,0xc8,0x4f,0x94,0x11,0x10,0x22,0x05,0xc2,0x44,0x3e,0x5e, + 0xc4,0x9f,0x26,0x92,0x90,0x00,0x67,0x26,0x93,0x9e,0x38,0x93,0x7e,0x83,0x4c,0xde,0xa9,0xbe,0x04,0xbf, + 0xa6,0x40,0x11,0x52,0x62,0xc9,0x9e,0x90,0xc8,0xa4,0xa7,0x20,0x3d,0xe0,0x96,0x91,0x7b,0x0f,0x62,0x57, + 0xf6,0x7d,0x02,0xf2,0xa5,0xc5,0xb8,0xe7,0x45,0x51,0xe2,0x80,0x2b,0x4a,0xbd,0x6f,0x75,0xe9,0xb1,0x13, + 0xfb,0xe2,0xd2,0xc7,0x61,0x16,0xb1,0x4f,0x10,0x63,0x31,0x2a,0x31,0xe7,0x2b,0xb7,0xce,0xcf,0xc4,0x82, + 0xed,0x9d,0x95,0x36,0xc7,0xcc,0x9b,0x32,0x5e,0xa9,0xa6,0xa0,0xf5,0x45,0x70,0x65,0x25,0xea,0xb0,0x2b, + 0x2b,0xee,0x8c,0x52,0x18,0x4c,0x9f,0x49,0x50,0xdb,0x87,0x16,0xd2,0xec,0xe4,0x84,0x9e,0x91,0x41,0xf9, + 0x30,0x59,0x31,0xee,0xee,0x7c,0xe5,0x49,0x11,0xa1,0x01,0xad,0x68,0xd0,0x74,0x8f,0x2f,0xa2,0x89,0xf6, + 0xc2,0x72,0xee,0x4b,0x1f,0xe0,0x55,0x0a,0xb3,0xd6,0x30,0x48,0xc5,0x95,0x4c,0x46,0x20,0x2a,0x09,0xe9, + 0xc9,0x8a,0x98,0xa3,0x4e,0x28,0x98,0xfc,0x2e,0x7e,0x67,0xab,0x8f,0xd8,0x5c,0x46,0x69,0x28,0xcb,0xb2, + 0x43,0xd2,0xf9,0x58,0x67,0x1d,0x82,0xb2,0x34,0x04,0x65,0xe9,0x08,0xca,0xb2,0x47,0x50,0x96,0x7d,0x82, + 0xb2,0xec,0x11,0x94,0xe5,0x20,0x41,0x59,0xfe,0xcf,0x09,0x4a,0x3b,0x20,0x43,0x51,0xca,0x4b,0x1a,0xdd, + 0xc8,0x6e,0xa0,0x3d,0xae,0xce,0xca,0x34,0xa8,0xc1,0x38,0x6b,0x94,0x7e,0x71,0x92,0x4e,0x7d,0x71,0x47, + 0xca,0xcb,0x26,0x33,0x13,0xea,0xf4,0x19,0xff,0xd9,0x8b,0x08,0x23,0xc7,0x2b,0x0e,0xa2,0x9c,0x74,0x2e, + 0xae,0x06,0x76,0xf6,0x6f,0xe9,0x50,0x11,0x1c,0x0e,0x7c,0xfd,0x2b,0x75,0x75,0xcd,0x94,0x58,0x8e,0xfb, + 0xec,0x9b,0x3e,0xa7,0x4e,0x07,0x7b,0x02,0x90,0x30,0x71,0xd3,0x19,0x72,0xf8,0x39,0xb5,0xde,0x93,0x7b, + 0x6d,0x18,0x19,0x9d,0x86,0xe8,0x1d,0x26,0x5d,0x96,0x4d,0xda,0x8b,0xba,0x38,0xce,0x85,0x61,0x77,0x89, + 0x6e,0x77,0x74,0x89,0x2c,0x6b,0x90,0xd7,0x35,0xff,0x73,0x01,0xdd,0x6c,0x24,0xd2,0x03,0x0e,0xff,0x73, + 0x28,0x71,0x08,0xd9,0x7e,0xce,0xc0,0x4a,0xc9,0x11,0x7f,0x2a,0x1b,0xec,0xd0,0x10,0x89,0xdd,0x36,0x52, + 0xcb,0xa6,0x05,0x82,0x0f,0x5a,0x74,0x13,0x09,0x1c,0x1d,0xeb,0xb3,0x63,0x47,0xc8,0xee,0xd3,0x3b,0x77, + 0x30,0xf9,0x9d,0x4a,0x5b,0x66,0x70,0xbb,0x33,0x0d,0x47,0x52,0x42,0xb4,0x84,0x55,0x2b,0x99,0xe7,0x8a, + 0xb7,0xe3,0xda,0x78,0x5f,0x38,0xe8,0x0c,0xac,0xb6,0xef,0xab,0x9d,0xfb,0x2a,0x32,0x24,0x7b,0x3b,0xba, + 0xaa,0xf3,0xe5,0x53,0xeb,0x73,0xe0,0x5f,0x61,0x33,0x61,0x72,0x9d,0xda,0x33,0x28,0xe2,0xd2,0xb8,0x5c, + 0x10,0x6c,0x69,0x35,0x10,0xea,0xdf,0xcf,0xb5,0x04,0x23,0x0f,0x03,0x72,0xe5,0x59,0x15,0x2c,0x40,0x15, + 0x78,0x36,0xf1,0xae,0xee,0xf0,0x4b,0xb9,0x58,0x7f,0x09,0x7b,0x64,0xdf,0xad,0xaf,0x2b,0xf1,0x15,0x84, + 0xc6,0xe2,0xdc,0x32,0x07,0xb4,0x71,0x7b,0x61,0xc4,0x03,0xdd,0x82,0x1a,0x88,0x69,0xe5,0xe2,0x53,0xd6, + 0xae,0x3b,0x85,0x81,0x07,0xc4,0xd5,0xc0,0xe5,0x52,0x08,0x51,0x19,0x92,0x28,0xf0,0xfe,0xe8,0x92,0x2c, + 0xd5,0x42,0x0f,0x21,0xaf,0x39,0x30,0xb9,0x21,0x73,0x12,0x50,0x8c,0x0f,0x0c,0xb5,0xc8,0x4e,0x4b,0xff, + 0xe3,0x6a,0x75,0x58,0x2b,0xaf,0xce,0x61,0x12,0x5c,0x2b,0x17,0x57,0x6c,0xff,0x7a,0x7d,0xaa,0x9f,0x38, + 0x16,0x29,0xe5,0x38,0xbd,0x7d,0xd7,0x2d,0x6b,0xea,0x2a,0x3c,0x27,0x8d,0x79,0x62,0x68,0xd1,0xf4,0x0b, + 0x97,0x04,0x25,0xb1,0x8b,0x00,0x38,0x81,0x73,0xb8,0x02,0x31,0xb8,0x41,0x1e,0xd4,0x12,0x6b,0x9a,0x7d, + 0xa8,0xd3,0xe8,0xe4,0x12,0x04,0xfe,0x03,0x68,0x18,0x4a,0x48,0xc9,0xb9,0xf2,0x32,0xd8,0xbb,0xe9,0xb2, + 0x8c,0xfb,0x22,0x13,0xa9,0x21,0xe1,0x3a,0xc6,0xc6,0x4c,0xdb,0xaa,0x4e,0x20,0x38,0xac,0xee,0x3a,0x24, + 0xa6,0x83,0x72,0xc3,0xbd,0xb8,0x61,0xcc,0xdd,0x80,0x5a,0x09,0x84,0x1f,0xf3,0xf0,0x53,0xa7,0x39,0x64, + 0xd1,0x00,0xa1,0xbd,0x01,0x55,0x59,0x97,0x31,0x0f,0x7c,0x69,0x7b,0x3a,0x59,0x3a,0x37,0xfe,0xe4,0x22, + 0x67,0x2d,0xa2,0xd7,0xda,0x52,0x7f,0xe9,0xbd,0xbd,0x25,0x42,0x14,0x5a,0xe9,0x97,0x8a,0xfc,0xcd,0xea, + 0x01,0x35,0x15,0x38,0xa9,0x76,0xa2,0x5f,0xf8,0xcd,0xfd,0xeb,0xea,0xc1,0xc1,0x83,0x7f,0xdc,0x3f,0x57, + 0xd1,0xaf,0xf2,0x18,0x25,0xbd,0xcc,0xaf,0x7d,0xe6,0xd7,0xe1,0x05,0xa1,0x33,0x03,0x0b,0xf0,0xde,0xb3, + 0x20,0xa4,0xaf,0xb6,0x9e,0xfb,0x59,0xf6,0x17,0xc5,0xba,0xbe,0x89,0x56,0x43,0xd7,0x35,0x34,0xc8,0x84, + 0x95,0x53,0x38,0xfb,0x9e,0x87,0x3e,0x9e,0x41,0x3f,0xe3,0x8f,0x55,0xf6,0xb1,0xfa,0x93,0x08,0x9d,0x08, + 0x86,0x6b,0x74,0x4f,0x59,0x3b,0xb9,0xf7,0x30,0xdf,0xba,0x80,0x12,0x38,0xfa,0xb5,0x8c,0xee,0x7f,0x73, + 0x2f,0xbd,0xf7,0x90,0x4a,0x11,0xd6,0x30,0xef,0xea,0x63,0xe5,0xcb,0x7b,0x2f,0x9c,0xdd,0xff,0x75,0x78, + 0x30,0x8e,0x92,0x6f,0x0e,0x18,0x11,0x5e,0xba,0x90,0x77,0x67,0xb5,0xd6,0x7f,0xe8,0x18,0x91,0x96,0x17, + 0x2e,0xd1,0x47,0x15,0xb7,0x17,0x81,0xab,0xf3,0x32,0x5b,0x89,0x18,0x46,0x39,0x4a,0x31,0x62,0xa3,0x99, + 0x6b,0xce,0xa1,0xa3,0x59,0x51,0xaf,0x14,0x97,0xf0,0xea,0x5a,0x05,0x75,0xa8,0x3a,0x19,0xa8,0xf9,0x22, + 0x6f,0x82,0x6b,0x2f,0xd5,0x69,0x99,0xdd,0xdf,0x8f,0x7f,0xbd,0x4a,0x68,0x2d,0xae,0xca,0x6c,0x38,0xe6, + 0x89,0x5b,0xb7,0xd3,0xd0,0xa4,0x20,0xb4,0x6d,0x9a,0xa0,0xcb,0x3f,0x2e,0x97,0xb0,0x9c,0x86,0x97,0x37, + 0x22,0xb0,0xc2,0xe4,0x75,0xe7,0xce,0x2a,0x4d,0x6c,0x9b,0x83,0xa4,0xfb,0xe1,0x9e,0xd7,0x3b,0xd2,0xe7, + 0x9f,0xa8,0x77,0xbf,0x3e,0x8e,0x8f,0x1e,0xed,0xff,0xfb,0x18,0x3d,0xfc,0xf8,0xa7,0x3d,0xfc,0x54,0xaa, + 0x68,0x7f,0xe7,0x30,0x42,0xb5,0x2f,0xab,0x2b,0x5b,0x2d,0xd5,0xf5,0x64,0x53,0x26,0xe3,0x14,0xf0,0xea, + 0x51,0x57,0x5f,0xe4,0x62,0xb9,0xa8,0xf7,0xc4,0xd7,0x81,0xa8,0xde,0xe7,0x38,0xeb,0xf5,0xbe,0xbd,0x4c, + 0x31,0x52,0x1f,0xca,0xec,0x28,0x0a,0xd6,0xc4,0xf3,0x70,0x91,0xbd,0xf2,0x30,0x3a,0x56,0x6f,0x50,0x4a, + 0xec,0x2f,0x9f,0x30,0x8c,0x51,0xa6,0x00,0x1b,0x55,0x61,0x32,0xd8,0xa8,0x1b,0x72,0x78,0x31,0xee,0x76, + 0xe9,0x3f,0x9a,0xf0,0x94,0xee,0xae,0x5d,0x9b,0xf1,0x54,0x22,0x11,0xa3,0x4d,0x79,0xe2,0x3c,0x7f,0x47, + 0x33,0xd2,0xc3,0x37,0xb9,0x41,0x48,0x7c,0xce,0x67,0xd4,0xa9,0xdf,0xca,0xec,0x46,0x88,0x89,0x57,0x9a, + 0x08,0x67,0x02,0x35,0x2a,0x78,0x5e,0x10,0xf3,0x39,0x74,0xc3,0x6a,0x53,0xcc,0x61,0x98,0x41,0x74,0x3d, + 0x41,0xd1,0x6c,0xc5,0x93,0xf4,0xa1,0x58,0x22,0xc1,0x5e,0xf7,0xcb,0x99,0xba,0x86,0x68,0x07,0xf6,0x55, + 0x78,0xe5,0x36,0xbf,0x93,0x7b,0x60,0xd9,0x7b,0x43,0x81,0xba,0xef,0x24,0x14,0xe7,0x25,0x0d,0x66,0x66, + 0x76,0x1d,0xd1,0x23,0xc7,0xca,0x5e,0xfe,0x38,0xd8,0x91,0x4e,0xb8,0xfb,0xf4,0x49,0x19,0x24,0xc0,0x95, + 0x4b,0x52,0x7e,0x2c,0x3f,0x96,0xd5,0x55,0x69,0x2a,0x45,0x5a,0x2f,0x7a,0x7e,0x7a,0xae,0x86,0x82,0xe3, + 0xa7,0x8f,0x4a,0x15,0x5c,0xc2,0x88,0x0f,0x4f,0xe6,0xc5,0x99,0x9e,0x5e,0x4f,0xe7,0x1a,0xf7,0x4e,0x53, + 0x9f,0xca,0xb5,0x7a,0x46,0x10,0x79,0xf4,0xdf,0xbf,0x5e,0x8d,0x76,0x8e,0xef,0xab,0x17,0x90,0x95,0x9d, + 0xf0,0xde,0x3a,0x39,0x21,0x72,0xec,0x66,0xad,0x5e,0x52,0x92,0x27,0x53,0xdd,0x15,0x7e,0xe2,0xd9,0xa3, + 0x9e,0x0f,0xe7,0xfe,0xfc,0xcb,0xb3,0xf2,0xb2,0xa8,0xab,0xd2,0xdc,0x87,0xbe,0xdd,0x49,0x80,0x24,0x8f, + 0x7b,0xaa,0x9e,0x96,0xd9,0xf3,0x72,0x77,0x77,0x38,0xb7,0x0b,0xf0,0xea,0x75,0x99,0xbd,0xa4,0xb2,0xc6, + 0xa5,0xa8,0xcc,0x2f,0x8b,0x73,0x70,0x0a,0xa3,0x15,0x4d,0xd8,0xa3,0x73,0xbe,0x70,0xaa,0x53,0xfe,0x6d, + 0x99,0xbd,0xa6,0xf2,0xf7,0x17,0x4d,0xa1,0x6f,0x09,0xf7,0xcc,0xa8,0x88,0xb1,0x09,0x7b,0x5d,0x26,0xea, + 0x95,0x64,0xbf,0x0e,0x3c,0x1a,0x51,0x72,0xeb,0xeb,0xd1,0x01,0xb0,0x9b,0x7a,0xb7,0x99,0xaf,0x67,0xe7, + 0xfa,0x3e,0x67,0x3e,0xde,0xcc,0x24,0x38,0xa8,0xe9,0x9c,0x43,0x36,0x9d,0x66,0xf6,0x0d,0x57,0x6e,0x94, + 0xea,0x47,0xd3,0x95,0x62,0x79,0x41,0x7b,0xeb,0xb6,0x58,0xe6,0x33,0xfa,0x53,0xd1,0x9f,0xaa,0xf1,0x5d, + 0x82,0x53,0x7b,0xd5,0x98,0x4f,0xbe,0x2b,0xb3,0x98,0xbf,0x99,0x5e,0xd4,0x44,0xa2,0xfc,0x7a,0xff,0xd7, + 0xd9,0x5e,0xd0,0xfb,0x9b,0xf5,0x88,0x6f,0x1a,0x4e,0xd4,0x4f,0x50,0x62,0x83,0xaa,0x7a,0x59,0x72,0x94, + 0x4d,0x60,0xe5,0x3f,0xd8,0x1e,0x62,0xf8,0x5a,0xe6,0x3f,0x08,0x9f,0x98,0x18,0x0d,0x91,0xba,0xc1,0xb5, + 0xce,0x01,0x25,0x8c,0xca,0x0e,0xd6,0x84,0x5b,0xcc,0x2c,0x6f,0xc6,0x04,0x44,0x0f,0xf6,0xdd,0xf7,0x0c, + 0xf5,0x7f,0x94,0x49,0xe0,0x76,0x8e,0xf6,0x7f,0x2e,0xd5,0xef,0xa5,0xfa,0x3e,0x40,0x41,0x3d,0x5a,0x80, + 0xc6,0xf8,0x33,0x0c,0x6b,0x7e,0xa6,0xf6,0xb0,0xa8,0x43,0x30,0x74,0x3e,0xaf,0x4e,0xf3,0x39,0x68,0x52, + 0x46,0x54,0x98,0x17,0x49,0x02,0xee,0x07,0x2f,0x38,0xd2,0xe5,0xe5,0xe8,0xa7,0x1f,0x9f,0x9d,0x3c,0x7b, + 0xfd,0x53,0xa2,0x7e,0x26,0x58,0xfe,0xa1,0x03,0x22,0x27,0x27,0xc8,0x7c,0xfa,0xec,0xa7,0x0f,0x6f,0xde, + 0xbc,0x7c,0x7f,0xf2,0xed,0xcb,0x37,0x8f,0x1f,0xbd,0x3c,0xf9,0xee,0xcd,0x9b,0x1f,0x4e,0x4e,0xd4,0x2f, + 0xc3,0x80,0xfb,0xfe,0x7a,0x71,0x5a,0x51,0xa3,0x9f,0x62,0x79,0x4a,0x86,0xfb,0x66,0xae,0x67,0x46,0xb9, + 0xde,0x4d,0xcd,0xc9,0xf8,0xf7,0x3b,0x6a,0xd6,0x5c,0x9c,0x7e,0x92,0xc9,0xfb,0xee,0xac,0x07,0xfc,0xb7, + 0x09,0xa6,0x8f,0x4b,0xb6,0x07,0x10,0x86,0x0b,0xb1,0xdd,0x3d,0xfe,0x06,0x30,0xfd,0x36,0xa6,0xd8,0x56, + 0x05,0x65,0xa7,0x0a,0xbf,0xa1,0x65,0xed,0x7c,0x13,0x14,0xc4,0xfa,0x77,0xca,0x12,0xb2,0xc8,0xeb,0x70, + 0x21,0x3f,0xdb,0x41,0xd5,0xae,0x8d,0xa9,0xc1,0xb7,0x65,0x76,0xae,0xfe,0x0d,0x86,0xe0,0x5f,0xe5,0xc6, + 0xe7,0xc5,0x2c,0xfb,0x37,0xd1,0x6d,0xe6,0x5a,0xc8,0xd5,0x29,0xd4,0xf8,0xeb,0xf1,0xbf,0xca,0x6e,0x1f, + 0xdf,0xaf,0x4e,0x07,0xba,0x49,0xa5,0x4d,0xbc,0x41,0x6a,0xae,0xf3,0x89,0xb8,0x42,0xf6,0xbf,0x32,0x37, + 0xa7,0xe2,0x3b,0xb5,0xf1,0x89,0x5c,0x0a,0x1e,0xf6,0x2f,0xb8,0x33,0xdc,0x3d,0xa2,0x33,0x4f,0xf5,0x52, + 0xe4,0xed,0xbd,0x1a,0xca,0xaa,0x25,0xc2,0x7a,0xf8,0x5e,0x40,0xdf,0x61,0x27,0x70,0x65,0x3b,0xa9,0xb6, + 0x6f,0x27,0xc5,0x17,0xdf,0xaf,0xdc,0x2d,0x81,0xae,0x61,0x36,0xdc,0xe7,0xe9,0xfc,0x67,0x89,0xc8,0xd0, + 0x6d,0xdd,0x3b,0xf2,0xbd,0x51,0x96,0x99,0x1e,0x38,0xf3,0x98,0x0b,0x3d,0xf9,0x3a,0xab,0xfe,0x7d,0x9e, + 0xe6,0xa6,0x4e,0xbe,0x14,0xcb,0xdc,0xed,0xa9,0xe7,0x0b,0x7b,0xb1,0x67,0xd9,0xd8,0x1b,0x49,0xe4,0x2b, + 0x73,0x7b,0x56,0x25,0xaf,0xfe,0x3a,0xad,0xb0,0x90,0xbf,0x56,0xab,0x9b,0x6a,0xef,0xc0,0x0c,0x53,0xd9, + 0x8c,0x11,0x06,0xc7,0xa0,0xf2,0x4c,0x13,0x5d,0xc3,0x5b,0x7b,0x89,0xe7,0x86,0x89,0x73,0xa7,0x1e,0x73, + 0x1d,0x69,0x98,0x54,0xe7,0x57,0x1c,0x11,0x87,0xc1,0xcb,0x5d,0x11,0xeb,0x12,0xbc,0x67,0x19,0xeb,0x2c, + 0x24,0xd1,0x46,0x60,0xf7,0xc5,0x9e,0xcc,0xa9,0xd1,0x59,0x90,0xc0,0xb7,0xca,0xda,0xd7,0x4e,0x38,0xf3, + 0x26,0x48,0xe3,0xdb,0xf4,0xc2,0xde,0x6c,0xc6,0x43,0x87,0xa9,0x11,0xd1,0x10,0xd9,0x0d,0x2f,0x45,0x8a, + 0x70,0x7e,0x67,0xc5,0xf9,0x8a,0x6f,0x64,0x4f,0x81,0x74,0xc7,0xda,0x84,0x2c,0x81,0xf5,0xef,0x00,0xe6, + 0x1c,0x9e,0x96,0xb5,0x1a,0x42,0xf3,0x44,0xf9,0xc4,0x6d,0xed,0xa1,0x54,0x69,0x13,0x8b,0xa7,0xec,0x5d, + 0xb8,0x62,0xb1,0x31,0x5f,0xcf,0xc1,0x11,0x58,0x84,0xcd,0x92,0x0b,0x71,0xbc,0x49,0x1d,0xaf,0x3a,0xa2, + 0xf2,0x04,0x93,0x76,0xa0,0xa8,0xf5,0xba,0xce,0x7a,0x17,0x08,0xa9,0xa2,0xee,0xa1,0x86,0x9a,0x1a,0x3f, + 0x8a,0xb0,0x67,0x23,0x44,0xef,0x5e,0x06,0xf6,0x1a,0x26,0xde,0x1b,0x52,0x38,0x7e,0x19,0x1e,0x2a,0xb8, + 0xb6,0x45,0x35,0x9c,0x0b,0x1a,0x0d,0x33,0x8e,0x01,0x73,0x3e,0x63,0x0c,0x58,0xc3,0x8c,0x60,0x27,0x2e, + 0x08,0x92,0x87,0x63,0x81,0x1f,0xe1,0x42,0x34,0x17,0xda,0xc8,0xc9,0x24,0xf6,0xf7,0xc7,0x09,0xdf,0xe5, + 0xeb,0xb2,0x9c,0x4d,0x3a,0x82,0xe2,0x1b,0x37,0x57,0xcc,0x38,0xbc,0x48,0xcc,0x3d,0xe4,0x12,0xfc,0x62, + 0x6c,0x22,0x74,0xb6,0x12,0xa1,0x53,0x86,0x95,0xf2,0xa3,0x1d,0x4c,0x8a,0xd0,0xf4,0x3e,0x60,0xa6,0x1d, + 0x1a,0x92,0x0d,0x22,0x78,0xe0,0x50,0x79,0x01,0x79,0x4c,0x75,0xca,0x67,0x9c,0xbd,0x08,0x5c,0xe5,0xc0, + 0x4b,0x06,0xb3,0xc0,0x9e,0x0a,0x9c,0x87,0x18,0x65,0xbb,0xa9,0x25,0x18,0x09,0xb8,0x1e,0xa6,0x05,0x69, + 0x1a,0xe8,0x53,0x82,0xb0,0xe6,0xa2,0x5a,0xcd,0x67,0xb4,0x57,0x69,0x06,0x5b,0xc0,0x96,0x6a,0xea,0x4d, + 0x44,0x2a,0xe1,0x55,0x2c,0xae,0xd0,0x4b,0x5e,0xf3,0x7f,0x19,0xfc,0x70,0xb9,0x60,0x47,0x63,0xc2,0x56, + 0x3b,0xb1,0x5c,0x14,0x4d,0x43,0x8f,0xcc,0x65,0xd3,0x1b,0x91,0x51,0xe2,0xf8,0x45,0x57,0x22,0x24,0x31, + 0x18,0x1d,0x25,0x99,0xe9,0x75,0xda,0xcf,0x0e,0x6e,0x8d,0x1e,0xd4,0x08,0x19,0x87,0x5f,0xac,0xcb,0x8e, + 0x68,0x7b,0x10,0xb6,0x9a,0x68,0x13,0x7a,0xa1,0xf5,0xae,0x6a,0x73,0xa9,0x6f,0x67,0xee,0x5a,0xf8,0x28, + 0x20,0xf5,0x2a,0x9f,0x7f,0xc4,0x01,0x31,0x6e,0x82,0x5d,0xc0,0xa9,0x77,0x5c,0x9a,0x15,0x4a,0xca,0xdb, + 0xc4,0xc8,0x18,0x74,0x28,0x63,0xf8,0x80,0x9e,0x23,0x20,0x3c,0x21,0x6b,0xfa,0xa1,0xbe,0xa8,0x4e,0xe5, + 0x61,0x47,0xee,0xba,0x99,0x6b,0x08,0xf7,0xbf,0x97,0xeb,0xb8,0xe4,0xf6,0xe3,0x69,0x8d,0x6b,0xb0,0x06, + 0x59,0x99,0xf1,0x54,0x02,0xb3,0xdc,0xc1,0xf4,0x6d,0x95,0x93,0x17,0x26,0x25,0xd5,0xa1,0xdf,0xab,0xa3, + 0x40,0xf4,0xa4,0x4d,0x5f,0x88,0x14,0x87,0xb8,0xb8,0xc1,0x6d,0x35,0xc5,0x86,0xca,0x5e,0x12,0x01,0xf8, + 0xe1,0xee,0x02,0x7b,0x51,0x13,0x1d,0x67,0xcf,0xa9,0x10,0xf5,0x88,0xa9,0xd0,0x8d,0x43,0x49,0x74,0xc5, + 0x84,0x57,0xbe,0x63,0xf3,0x69,0x77,0x97,0x9e,0xb6,0x49,0xda,0x25,0x39,0xfb,0xb6,0xad,0x2e,0xd2,0x68, + 0x6f,0x6f,0x07,0xc2,0xe7,0x6b,0x63,0xc6,0x48,0xe4,0xed,0x25,0x6c,0xea,0x92,0xae,0xbf,0x88,0xb6,0x92, + 0x4f,0x78,0x8b,0x40,0x29,0x02,0xa7,0x91,0x9c,0x18,0x90,0xfe,0x85,0x7f,0xac,0x47,0x3c,0xca,0x8f,0x13, + 0xbe,0x43,0x29,0xcb,0x27,0xb9,0x75,0x7a,0x6f,0x92,0xde,0x8d,0x78,0x4d,0x32,0x21,0x4e,0xae,0x39,0x76, + 0x3b,0x76,0x8d,0x71,0x4b,0xb8,0x53,0x7a,0x58,0xe8,0xf6,0xa2,0x9a,0xf1,0xa3,0x5c,0x77,0x8d,0xa7,0xa9, + 0x89,0x76,0x30,0x3c,0x31,0x9b,0xc3,0x19,0xba,0x36,0xc0,0x12,0xcc,0x3c,0x4c,0xa5,0x61,0x22,0x59,0xb0, + 0xc5,0x83,0x6d,0xff,0x92,0x58,0x9a,0xec,0x85,0xa8,0x4b,0x6b,0x35,0xaf,0xd5,0x59,0x5f,0x59,0xdb,0xa7, + 0xb9,0x01,0x01,0x84,0xb3,0x97,0xb8,0xdc,0x4a,0xcd,0x38,0x82,0x1c,0xc7,0x91,0x63,0xf3,0x99,0x01,0x9a, + 0x95,0xa8,0x3c,0x17,0x50,0x1c,0xc4,0x6b,0xf8,0x9e,0x24,0xf3,0x0e,0x59,0x18,0xe6,0xc5,0x3f,0x11,0x38, + 0x3b,0x43,0x3e,0x5f,0xb1,0x73,0x2b,0x7c,0x45,0xe4,0x7b,0x7e,0xae,0x9f,0x5c,0xe4,0x65,0xa9,0xe7,0xb7, + 0xb7,0xdb,0x9f,0xe2,0x6e,0x12,0xe8,0x6e,0x7b,0x47,0x53,0x37,0x87,0xd0,0x5a,0xd3,0xd6,0x2b,0x9c,0xc1, + 0x7c,0x6d,0x53,0x37,0xd7,0xc9,0x99,0xe2,0x81,0xfe,0x59,0x07,0xc0,0x9f,0xe0,0xec,0xe7,0x6d,0x4b,0x2e, + 0x6b,0x46,0x7d,0xdd,0x8a,0xd4,0xa2,0xce,0x2e,0x69,0x9a,0xe9,0x30,0x7a,0x30,0x36,0x0f,0x87,0x23,0x70, + 0xa8,0x5c,0x2a,0xfb,0x49,0x75,0xab,0x5f,0xa0,0x48,0xd3,0x9a,0x4a,0x20,0xec,0x59,0xdf,0x31,0xa9,0x84, + 0xb3,0x17,0x45,0xc3,0xf3,0x69,0x1e,0x8d,0x85,0xef,0x79,0x9d,0x99,0x04,0x7b,0x11,0x30,0x91,0xd2,0xab, + 0x4e,0x2b,0xe7,0xb5,0xdc,0xaa,0x4c,0xfc,0xce,0x8f,0x65,0xc7,0xa9,0xf1,0xdc,0x86,0x4d,0xa6,0x0f,0xe6, + 0x35,0x03,0xc5,0x75,0xad,0x4e,0x64,0x68,0xc4,0x8c,0x9d,0xd6,0x3d,0x41,0x93,0x11,0xa7,0xee,0x46,0x2e, + 0x20,0x35,0x0b,0xaf,0x08,0x43,0x45,0xff,0x97,0xad,0xd6,0x5b,0x80,0x8b,0x93,0x5d,0xa5,0xf0,0xdf,0x77, + 0x85,0x6a,0x84,0xbb,0x95,0x42,0xe5,0x5d,0x85,0xac,0xad,0x1d,0xab,0xe3,0x89,0xd8,0xec,0x94,0x53,0x30, + 0x8c,0x80,0x60,0x73,0x23,0x6e,0xa0,0x66,0xf6,0xb3,0x96,0xdb,0xa8,0x76,0x18,0x52,0x3f,0xf1,0xdf,0x8f, + 0x1c,0x4c,0xea,0x09,0x43,0xed,0x23,0xfe,0xfb,0x1e,0x67,0xc7,0x07,0xfc,0x79,0x33,0x44,0x17,0xdb,0x73, + 0x6e,0x81,0xf8,0xef,0xec,0x19,0x71,0xc2,0xd8,0x8a,0x88,0x30,0x39,0xc7,0x7c,0x82,0xe5,0x28,0x38,0xb9, + 0x9e,0xc4,0xe6,0x4c,0xa4,0x43,0x71,0x7b,0xbb,0xe6,0x07,0x39,0x6c,0x20,0x6b,0xe0,0x24,0x3c,0x48,0x12, + 0xe2,0xa1,0x71,0x12,0x1e,0x0c,0x43,0x43,0x94,0x1f,0x27,0xe1,0xc1,0x1c,0x48,0x5c,0x99,0xaf,0xc3,0x7f, + 0x1a,0x7c,0x61,0xa8,0xcc,0xe9,0xa9,0xa5,0xd2,0x89,0x4d,0xda,0xdb,0xfb,0x60,0x1a,0x92,0x58,0x6f,0x8e, + 0x7a,0x9d,0x15,0x74,0xee,0xfb,0x7a,0xdc,0x31,0xde,0x30,0x9f,0xc0,0xc4,0xbc,0xbe,0x7a,0x1a,0xbe,0x53, + 0xe6,0x0b,0x42,0x54,0x06,0x20,0x82,0x22,0xfd,0x54,0xaf,0x41,0x80,0xb8,0x7d,0x20,0x82,0x02,0x01,0x06, + 0xca,0x11,0x0d,0xd2,0xd2,0x58,0x74,0x1a,0x87,0xaf,0x3d,0x9f,0x9f,0xed,0x67,0xa5,0x88,0x2d,0xec,0xcd, + 0x7a,0x70,0x58,0x33,0x81,0x58,0x46,0x91,0xbf,0xe2,0x72,0xe0,0xc0,0x1c,0x38,0x84,0x3b,0xe8,0x73,0xdc, + 0x66,0xe6,0x2c,0xf6,0x77,0x4f,0xad,0xd9,0xf5,0x2a,0xe8,0x0f,0x2c,0xc6,0x87,0x7a,0x97,0xc0,0x71,0x5f, + 0x85,0x94,0x90,0x9d,0x4a,0x6b,0x62,0x66,0x3f,0x43,0x78,0x9c,0x37,0xe1,0x49,0xdf,0xa3,0xcf,0x85,0xcf, + 0x53,0x01,0xe3,0xf8,0x4f,0x13,0x6b,0xc8,0x25,0x25,0x01,0x4b,0x27,0xf1,0x2f,0x18,0x4a,0x33,0x03,0xa0, + 0x1c,0xd6,0xcf,0xf4,0x40,0xfa,0x69,0xae,0xa2,0x53,0x4e,0xb4,0x62,0x8c,0xc1,0x1d,0x04,0x25,0xed,0x45, + 0x5d,0x5d,0xd1,0x01,0xf2,0x98,0xb5,0xda,0xf7,0xe4,0xb3,0x2d,0x9a,0xba,0x2d,0x03,0xd3,0x5b,0x30,0xba, + 0xe8,0x2e,0x27,0x2c,0x52,0x92,0x35,0xe1,0x23,0xaa,0xfc,0xfa,0xc6,0xc1,0xe5,0xee,0xee,0xcf,0x98,0x34, + 0xdf,0x45,0xf4,0xbf,0x5a,0xc6,0x66,0x7a,0x20,0x01,0x28,0x57,0x4b,0xc0,0x92,0x8f,0xd6,0x07,0xc6,0xa3, + 0xee,0xb2,0xeb,0x54,0x60,0xc0,0x61,0xa7,0x25,0x28,0x1e,0x77,0x81,0x0d,0x32,0x8b,0x18,0x26,0x71,0x71, + 0x2f,0x5d,0xa2,0x92,0x75,0xa0,0xd7,0xb2,0xfa,0x21,0x08,0xbb,0xef,0x5b,0x23,0x25,0x90,0x8d,0x9b,0xf4, + 0xba,0x14,0xf4,0xfb,0x33,0xec,0x39,0xb6,0x8c,0x85,0xb0,0x16,0x7c,0x81,0xed,0xb7,0xcd,0x04,0x8b,0x31, + 0xd4,0x7f,0x1a,0x17,0x2e,0x6b,0xf0,0x52,0x07,0x23,0x1e,0x30,0x16,0x52,0xbe,0xbb,0xe3,0x70,0xf7,0x75, + 0x6b,0xda,0xd8,0x85,0xbd,0x04,0x91,0xbe,0xc4,0x89,0xf2,0x15,0x36,0xc1,0x4e,0x0f,0x27,0xaa,0xbb,0xe7, + 0xcb,0xee,0x24,0xda,0x08,0x98,0xbd,0x19,0x12,0x89,0xc3,0x86,0x74,0x86,0x37,0x41,0x80,0x64,0xb6,0xcd, + 0x5e,0x00,0x96,0x92,0xf4,0x7a,0x45,0x85,0xd3,0x3b,0x16,0xdb,0x44,0xb9,0xce,0xb2,0x8f,0xb8,0x90,0x9a, + 0xe1,0x96,0x9f,0x80,0xba,0x1e,0x75,0x4c,0xff,0x76,0x6a,0x67,0x8d,0x38,0x2e,0xbf,0x79,0x5f,0xef,0xee, + 0xee,0xd4,0x7c,0x01,0xdb,0xec,0x1b,0xae,0x29,0x29,0x69,0x41,0xa8,0x90,0x89,0x6d,0x5d,0xee,0x1d,0xaa, + 0x03,0xc8,0x70,0xf8,0xa0,0xdb,0xb1,0xf7,0x64,0x26,0xe3,0x27,0xd8,0xe5,0x38,0x19,0x0e,0xd4,0x1f,0xf1, + 0xaa,0x15,0xe7,0x3a,0x91,0xd5,0x74,0xc6,0x4b,0xdd,0x0e,0x07,0x0b,0x1a,0xd5,0x63,0x56,0x1b,0x43,0xc5, + 0x6f,0x7b,0xb6,0x35,0xda,0x36,0x72,0x34,0x46,0x12,0xb7,0xb7,0x05,0x5f,0x84,0xe7,0xb6,0x4e,0x07,0x5a, + 0xc4,0x07,0xd4,0xd6,0xda,0xe1,0xaf,0x64,0xcb,0xd6,0x66,0xd3,0x4d,0x4f,0x65,0x7f,0x9b,0xed,0xcf,0xb6, + 0xae,0x5e,0x84,0xfa,0x38,0x6e,0x2d,0x13,0xa6,0xee,0x59,0x4b,0x8d,0xbf,0xb4,0xb3,0xc5,0x95,0xe9,0xce, + 0x16,0xd6,0xbd,0xe9,0xd0,0xe8,0xe2,0x10,0x00,0x04,0x08,0x91,0x27,0x22,0x3c,0x71,0x20,0xc6,0xe8,0xd4, + 0xb2,0x29,0x42,0xfb,0xb3,0x1d,0x16,0x6e,0x2d,0xf3,0x79,0xdc,0x5f,0xaa,0x96,0xe0,0x7e,0x56,0x5d,0x7d, + 0x76,0xbd,0xcc,0xe0,0x10,0x46,0xe8,0xb1,0x26,0x9a,0xef,0xa9,0xd5,0x1d,0xdd,0xde,0xba,0x91,0xfb,0x23, + 0x5e,0x98,0xd7,0xf1,0x7f,0xd4,0xb9,0xde,0xde,0x1e,0x77,0x0e,0xe2,0xc3,0xb5,0xf0,0x6c,0xbf,0x11,0x61, + 0xa2,0xcb,0xd5,0x42,0x5b,0x59,0x8e,0xea,0xc9,0x76,0xa0,0xb0,0x49,0xcf,0x55,0x83,0xbf,0x6b,0xf5,0x8c, + 0x8a,0x63,0x87,0x81,0x31,0x1f,0x3f,0x69,0xe3,0x47,0x81,0xb4,0x55,0xb8,0xfc,0x17,0x54,0x02,0x41,0x05, + 0x42,0x9e,0xd9,0x50,0x34,0x7c,0x06,0x0c,0xc7,0x0c,0x18,0x08,0x0a,0x50,0x34,0x6e,0x4a,0x92,0xa1,0xb0, + 0x01,0x59,0xa7,0x01,0x7f,0xd9,0x77,0x76,0x73,0xc2,0x72,0x1e,0x29,0x8d,0x11,0x18,0x5f,0xe6,0x2b,0x22, + 0x29,0xe5,0xf1,0xa7,0x92,0x55,0xd2,0xf6,0xf5,0xd9,0x7c,0x91,0xd6,0xc2,0xb1,0x11,0xd1,0xa9,0xcf,0xf0, + 0x5e,0xc8,0xfb,0x9a,0xdd,0x45,0xd9,0xc1,0xbc,0x6b,0xdf,0xe3,0x63,0x84,0xc8,0xc5,0x35,0xc6,0xb0,0x27, + 0x9b,0x9a,0x07,0xd5,0xf4,0x6d,0x79,0x28,0xab,0x97,0x02,0xcf,0xc4,0xab,0xad,0xcd,0xe8,0x06,0x1c,0xd1, + 0x80,0x58,0x37,0xf8,0xd9,0x25,0xa3,0x1d,0x56,0x44,0xc6,0x20,0x55,0x35,0x75,0xcc,0x08,0xea,0x82,0x0b, + 0x9b,0x4c,0xff,0x10,0x1a,0xe0,0xd1,0xdc,0xe1,0x02,0x44,0x10,0x7d,0x01,0xa0,0xd4,0x1c,0xca,0x21,0xae, + 0x54,0x45,0x9b,0x48,0xd9,0xf7,0xb4,0xcb,0x6c,0x59,0x97,0xbc,0x8d,0x40,0x0b,0xdb,0x43,0xa4,0xa9,0xd4, + 0xbf,0xbd,0x1d,0x17,0x58,0x3b,0x1b,0x39,0x61,0x74,0x22,0x43,0x7f,0x62,0xc4,0xb5,0xb7,0xb7,0x36,0x3c, + 0xab,0x37,0xed,0xe3,0xf2,0xc1,0x3b,0xdf,0xb4,0x60,0xec,0x22,0x7d,0x3d,0xc1,0x2a,0x41,0xce,0x6b,0xc2, + 0x73,0xf1,0xe3,0x89,0xb9,0x94,0x3b,0xb6,0x8f,0x56,0x9c,0xca,0x17,0x3d,0xdd,0xd5,0x15,0x88,0x88,0x47, + 0x3b,0x72,0x31,0x87,0xbd,0xe1,0xa8,0x7b,0xcd,0xd9,0x25,0xee,0xd9,0xd8,0x99,0x5b,0xf3,0x25,0xdc,0x22, + 0x40,0x49,0x6c,0xdc,0xe2,0x2a,0x15,0x93,0xcb,0x9b,0xbc,0x1e,0x75,0x84,0x54,0xd6,0x3c,0x58,0x98,0x77, + 0xc4,0xa9,0x42,0x39,0x76,0x39,0x09,0x86,0x44,0x69,0x50,0xb1,0x20,0x3c,0x36,0x22,0x21,0x8e,0xa7,0x0f, + 0xdd,0xd6,0x9d,0xfa,0x8b,0xb0,0x9b,0xa3,0x29,0xf1,0xfc,0xb8,0xa3,0xfd,0x6d,0xbc,0x52,0xfd,0xb6,0xe5, + 0xc6,0xbf,0xcd,0xf6,0x0f,0x36,0x4a,0x3e,0x65,0xf1,0xf9,0xda,0x5b,0x37,0xcf,0xb3,0xcd,0x09,0xf6,0x71, + 0x2b,0x3e,0x93,0x87,0x0b,0x8b,0xe4,0x1e,0xcb,0x79,0xb2,0xae,0x78,0xe2,0x77,0x60,0xd9,0x40,0x13,0x89, + 0x7b,0x17,0x83,0x50,0xde,0x94,0x41,0xd3,0x30,0x35,0x8a,0x72,0xf6,0xa2,0xd7,0x03,0xdb,0x76,0x60,0x2b, + 0xab,0x20,0xcc,0x06,0x3d,0xbb,0x55,0x00,0xc4,0xf9,0x08,0x1e,0x6b,0x25,0xa1,0xc3,0x06,0x8f,0x6e,0x7b, + 0xff,0x5e,0x39,0x54,0xff,0xb8,0xec,0x44,0x6b,0x8b,0xc3,0x57,0xcc,0xde,0x14,0x37,0x5d,0x39,0x85,0x3f, + 0x1b,0xb8,0x75,0xb7,0x14,0x5f,0x2c,0xed,0xbf,0x99,0xf0,0x3d,0x4e,0x35,0xae,0x8d,0x76,0xf8,0x94,0x18, + 0x3d,0x39,0xd2,0xeb,0x24,0x49,0x1b,0x54,0xb8,0x7d,0x60,0x82,0x51,0xd5,0x6b,0x65,0x2c,0x03,0xee,0xe8, + 0x7a,0xbf,0xbb,0x5d,0xec,0xc7,0x6e,0xa3,0xdd,0xfe,0x38,0x79,0xa5,0x58,0xbd,0x0a,0x6a,0x8d,0x4b,0xe9, + 0xa6,0x58,0x3e,0xbc,0x28,0x3d,0xcf,0x95,0xf3,0x65,0xd0,0xa0,0xf7,0x5c,0x8f,0x13,0x04,0xd4,0x0c,0xfa, + 0x7f,0x30,0x0e,0x64,0x9a,0xe3,0x9a,0x18,0x97,0x9d,0xfe,0x9d,0xed,0x90,0x6c,0xc2,0x95,0xd2,0x65,0xe0, + 0xa6,0xc7,0xf1,0x14,0x3d,0xe8,0x58,0x38,0x48,0xd8,0x7d,0x1a,0x7d,0x1a,0x5e,0xd3,0x0c,0xe4,0xf3,0xb2, + 0xee,0x88,0x2a,0x5f,0xd0,0x9e,0x7d,0x5e,0x67,0x87,0xea,0x69,0x9d,0x3d,0x50,0xaf,0xd1,0xf0,0xb3,0x50, + 0x7b,0xc7,0xb7,0x72,0x6f,0xca,0x7e,0x4f,0x56,0xc4,0x5a,0xbe,0xae,0xad,0x06,0x8e,0xa6,0xea,0xa7,0x95, + 0xb0,0x96,0x1c,0x25,0x2e,0x40,0xfe,0x93,0x21,0x24,0xe7,0x61,0xbd,0x27,0xb9,0x62,0x20,0xb2,0xe2,0x19, + 0x67,0xde,0xc9,0x61,0x48,0x42,0x8c,0x34,0xb6,0x11,0x23,0x32,0x8b,0x7b,0x54,0xd9,0x47,0x59,0x2e,0x81, + 0x8e,0x12,0xff,0x39,0xbd,0x20,0x47,0x4e,0x18,0x24,0xcb,0x93,0x11,0xa3,0x0d,0x5c,0xff,0x18,0x6c,0x8b, + 0xac,0xe8,0x6c,0x91,0x8d,0x5d,0x5a,0x04,0xbb,0xa6,0xdc,0x44,0x7f,0x6e,0x17,0x21,0xd3,0xb5,0xf3,0x21, + 0x3f,0x97,0x3b,0x7d,0x95,0x36,0xc7,0x16,0x87,0x9a,0x35,0x47,0x99,0x4d,0x53,0x1b,0x8e,0x82,0xd9,0x86, + 0x63,0x4e,0x22,0x34,0xab,0x6a,0x8d,0xc4,0x60,0xc7,0x5f,0xd6,0xfe,0x5b,0x1b,0x5b,0x7d,0x9c,0x9d,0x5c, + 0xda,0x60,0x1c,0xca,0xdb,0x48,0x32,0x78,0x15,0xa5,0xad,0xb7,0x75,0xf5,0x49,0x04,0x03,0x26,0xb9,0xd1, + 0xf3,0x33,0x79,0x1f,0xda,0x3a,0xee,0xe2,0xcf,0xd2,0x2d,0x06,0x53,0xf0,0x08,0x85,0xe9,0x42,0x01,0x99, + 0x70,0xa1,0xa5,0xc7,0x71,0x36,0x67,0x77,0x97,0x12,0x6d,0xbc,0x47,0xd8,0xc2,0xda,0x97,0x32,0x80,0x7e, + 0xab,0xae,0x6d,0x6d,0x2e,0x5f,0xc9,0xb4,0x53,0x57,0x15,0xe4,0x47,0xa5,0x3c,0x11,0x31,0xd1,0xfa,0x6f, + 0x58,0x6a,0x21,0x17,0x3e,0x43,0xec,0x13,0xc8,0x6e,0x98,0xc6,0x68,0x83,0x8d,0x67,0x13,0xfa,0x9b,0xf6, + 0x90,0x4b,0x79,0x24,0x65,0xde,0x1d,0x52,0x70,0x29,0x5d,0xe2,0x11,0x84,0x9d,0x91,0x04,0x75,0xf6,0xcd, + 0xe8,0xc4,0xdc,0x77,0x34,0x64,0xc9,0x43,0xb9,0xc4,0x14,0xc2,0xaa,0x86,0xed,0x25,0x32,0x13,0x0d,0x4d, + 0x7f,0xf6,0xc8,0x20,0x9c,0x58,0xca,0x3d,0x5d,0x77,0x34,0x28,0x67,0xb6,0x1d,0x9f,0xc0,0xcb,0x87,0x5a, + 0xeb,0xc6,0xeb,0x85,0x7b,0x4b,0xe8,0x0e,0xfa,0xee,0x86,0xa3,0x1d,0x58,0x62,0xa5,0x6c,0x04,0xce,0xf0, + 0x00,0xd2,0x7d,0x50,0x97,0x0b,0x1f,0x43,0x12,0x23,0xe3,0xa3,0xfd,0x64,0xda,0x31,0xf7,0x56,0xe1,0x75, + 0xd7,0x6f,0x82,0x8b,0x60,0x11,0x21,0x62,0xcd,0x6b,0x19,0xda,0x20,0xfe,0xd5,0x6f,0x0f,0x8c,0x26,0xa4, + 0x90,0x1e,0x73,0xc8,0x7c,0xa8,0x5e,0x22,0xa1,0x3d,0x22,0x88,0xf2,0x8a,0x80,0xe4,0x90,0x80,0x5b,0x52, + 0xc2,0xed,0xdf,0x48,0xe9,0x8d,0xe9,0xf6,0xa5,0xed,0x6c,0x4f,0x65,0x5b,0xa9,0xae,0x39,0xdb,0x40,0x50, + 0x96,0xec,0xa2,0x0d,0x89,0x2b,0x91,0xf3,0x43,0xf9,0x80,0x53,0x6d,0x80,0x96,0x51,0x21,0x8a,0xd6,0x03, + 0x31,0xca,0xe9,0xb8,0xf9,0xc0,0x04,0x81,0x96,0x00,0xb9,0x6a,0x80,0x20,0xb9,0x0b,0x28,0x2c,0x3f,0x03, + 0x47,0xfb,0x3e,0x04,0xd0,0xb1,0x67,0x3c,0x5e,0x3e,0x8f,0xb6,0x3d,0x22,0x64,0x24,0x52,0x3b,0x92,0xcb, + 0xc4,0xeb,0x1f,0xa0,0xba,0xb0,0x21,0x2b,0x04,0x1d,0xb2,0x1b,0x7c,0xa3,0xcb,0x95,0x71,0x5d,0x73,0x4d, + 0x57,0xb8,0x97,0x8a,0xf7,0x7e,0x65,0xc3,0xef,0xbe,0x85,0xe1,0x34,0x8d,0x9b,0xe6,0xee,0x43,0xcc,0xf1, + 0x44,0x12,0xc5,0x9a,0x1b,0xc2,0x66,0xf3,0x96,0x55,0x8d,0xdc,0x8f,0x08,0xa4,0x76,0x2f,0x8e,0x40,0x92, + 0xc3,0xdd,0x7e,0x60,0xa6,0xd8,0xf9,0xc9,0x90,0x96,0x30,0xcb,0x16,0x8d,0x4c,0x7f,0x0e,0xfa,0xa3,0xf7, + 0x01,0x71,0xa4,0x76,0xbe,0xcd,0x45,0x04,0x17,0x58,0x95,0xc9,0x79,0x3a,0x8b,0x45,0xdf,0x27,0x77,0x3e, + 0xdb,0x7a,0xd1,0x04,0xa0,0x72,0xf2,0x39,0x6c,0x2a,0x70,0x5b,0xc5,0x48,0x3b,0x61,0xad,0xdd,0xa0,0x18, + 0xb5,0xd7,0x43,0x6f,0x1e,0xdc,0x0a,0xfb,0xae,0x3b,0x82,0x01,0x93,0xf7,0x98,0xb7,0x0b,0x1b,0x71,0xc6, + 0xb8,0x66,0xeb,0x66,0x2d,0x97,0xf4,0x10,0xb1,0xc0,0x77,0x3c,0x13,0xb1,0xa3,0xf9,0x52,0x36,0x2f,0x68, + 0xe9,0xc2,0x23,0xaf,0x77,0x8f,0x2c,0x2e,0xb2,0x10,0xc2,0xcd,0x50,0x95,0x8b,0xc8,0x38,0x2e,0x9c,0x68, + 0x2c,0xcf,0xca,0xa3,0xe2,0x18,0xae,0x66,0x67,0xb4,0x82,0xb8,0xa3,0xf5,0x8a,0x6f,0x6a,0x35,0xcb,0x87, + 0x6e,0x45,0xb8,0x27,0xfb,0xbd,0x50,0x30,0xe0,0xc0,0xd2,0xf7,0xb1,0x9d,0x06,0x82,0x2f,0xec,0x57,0xed, + 0x54,0x64,0x77,0x81,0xea,0x89,0x2d,0xf0,0xb3,0x85,0xf7,0x21,0xbc,0x5b,0x67,0xdf,0x23,0x54,0x7a,0x27, + 0xfa,0x86,0xe3,0xde,0x34,0xee,0x8e,0x19,0x9c,0xf9,0x6a,0x52,0xa5,0x15,0x64,0x1b,0x63,0x48,0x8e,0x30, + 0x1e,0x16,0x80,0xbf,0x81,0xdf,0x26,0x6d,0x89,0x73,0x75,0x4e,0x6c,0x3a,0x11,0xb1,0x85,0x01,0xcd,0x33, + 0x8c,0xad,0x60,0xf6,0x8f,0x41,0xc1,0xf6,0x2d,0x61,0x1f,0x2f,0xea,0x1f,0x6c,0x5a,0xf8,0x61,0x5b,0x14, + 0x9c,0x77,0xb8,0x47,0x04,0xdd,0xab,0x19,0xca,0x36,0xc3,0x78,0xd4,0xe1,0x5d,0x70,0x70,0x8f,0xab,0x43, + 0x9f,0xb8,0x99,0xf0,0x11,0x35,0xdf,0x14,0xc9,0xdc,0xab,0x4d,0xb1,0x5d,0x13,0xb3,0xc0,0x21,0xdc,0xb1, + 0x01,0xa3,0x46,0x87,0x68,0xe2,0x81,0x9d,0x98,0xd7,0xd9,0x30,0xa8,0x6a,0x23,0x50,0x22,0x28,0xdb,0x44, + 0xa0,0xd6,0x00,0xd8,0x50,0x22,0xae,0x05,0xb8,0x28,0x49,0x8a,0x70,0xe0,0xfd,0x5c,0x3a,0x27,0x36,0x7b, + 0x88,0xdb,0x84,0x3e,0x67,0x03,0xc3,0x80,0xb4,0x1e,0xbb,0xb8,0x4f,0xe5,0x67,0x0b,0x33,0x78,0x0f,0x5b, + 0xc9,0x5c,0xc7,0x01,0xa9,0x4c,0xc7,0x87,0x80,0x2e,0xed,0x8f,0xbf,0x52,0xd8,0xa0,0xa9,0x32,0xe9,0x58, + 0xcb,0xed,0xb0,0x61,0x5c,0x37,0x49,0x2e,0x72,0xca,0x7e,0xeb,0xa6,0x0e,0x29,0xce,0xe5,0xce,0x23,0x1f, + 0xc9,0x85,0x17,0x97,0x09,0x39,0xb9,0x5f,0x1a,0xd7,0x41,0xc8,0x35,0xee,0xa2,0x88,0x3a,0xb0,0x21,0x57, + 0x0d,0xec,0x06,0x45,0x9d,0xef,0x5c,0xe1,0x15,0xb8,0xda,0xcb,0x04,0x95,0xf5,0x87,0x08,0xcd,0x66,0x6a, + 0x27,0x75,0xe3,0x10,0xca,0xf1,0xb3,0xa1,0x00,0x65,0xd9,0xfd,0xff,0xc6,0x25,0xec,0xe9,0xfd,0x71,0x67, + 0x38,0x55,0xc7,0x18,0x5d,0x46,0xd2,0xb7,0x13,0x49,0xba,0x36,0x1f,0x6d,0xdf,0xe6,0xc3,0x40,0x07,0x55, + 0x00,0x5f,0x60,0x23,0x9e,0x11,0x98,0x31,0xb4,0xd7,0x51,0x7b,0x6c,0xb5,0x06,0x3e,0x25,0x08,0x02,0x55, + 0x62,0x43,0x1a,0x6d,0x13,0x80,0x9a,0x0b,0x76,0x09,0xb3,0x03,0x7f,0x33,0x10,0xe5,0x76,0x6d,0x1d,0x77, + 0xaa,0x9e,0x50,0x4c,0x07,0xc6,0x99,0x32,0x43,0x3b,0xd5,0xd9,0x19,0x0f,0x50,0x59,0x2b,0xa1,0x3a,0xb8, + 0x3a,0x6d,0x6d,0xfc,0x50,0xa8,0xe6,0xc0,0x7b,0x91,0x28,0x6b,0x55,0xcb,0xc0,0xf0,0x61,0xdd,0x6f,0xf4, + 0xec,0xac,0xd7,0x26,0x58,0xd1,0xbe,0xd1,0x52,0xd2,0x81,0xea,0xcf,0x91,0xa2,0x68,0x7c,0x68,0xf6,0x7b, + 0x5e,0x5a,0x1b,0x41,0x0d,0xcd,0xf4,0x63,0x7c,0x38,0xf6,0x74,0x77,0xa2,0x8c,0x0b,0x57,0x77,0xea,0xbb, + 0x97,0x56,0xd8,0x96,0xbd,0x49,0x47,0x7f,0xa5,0x84,0x94,0x35,0xc5,0xb4,0x83,0x87,0x2a,0xbc,0xe4,0x32, + 0xc7,0x49,0x43,0xd9,0x71,0x95,0x15,0xb0,0xd0,0x80,0xdd,0x02,0xae,0x2f,0x3a,0x2b,0x7b,0x57,0x5d,0xe6, + 0x1b,0x57,0x5d,0x0e,0xac,0xa8,0x5e,0xf4,0xf8,0x5f,0x2f,0xaf,0x67,0x8e,0xa7,0x3b,0x96,0x12,0x0e,0x64, + 0xf6,0xd0,0xfb,0xe6,0x70,0x02,0x88,0x4a,0xcb,0x80,0xaf,0xbf,0x88,0xdd,0xba,0x50,0xeb,0x04,0xc4,0x07, + 0xec,0xf1,0x6a,0x31,0xf4,0xc3,0x8a,0xb1,0x34,0xdf,0xd2,0x45,0x28,0xda,0x40,0x08,0x02,0x82,0x79,0x07, + 0x9f,0xc7,0x31,0x91,0x7d,0xea,0x1e,0xb7,0xbb,0x75,0x21,0xee,0x03,0x2c,0xdd,0x87,0x54,0x5f,0xe4,0xf8, + 0x5e,0xc9,0x26,0x9b,0x30,0x7e,0x55,0x67,0xf4,0x1b,0xf2,0xf5,0x7d,0xd5,0x8d,0x10,0x10,0x86,0x99,0x37, + 0x2c,0xcf,0xee,0x6e,0x8f,0xc2,0x35,0xfe,0x17,0x36,0xce,0xa1,0x2c,0xb8,0x9e,0x2b,0xa3,0x8f,0x16,0x7e, + 0x83,0x06,0x75,0x55,0x8f,0xaf,0xea,0x90,0x85,0x14,0x9e,0xa2,0x55,0xf5,0xc4,0x7e,0x63,0x4d,0xe2,0x58, + 0x12,0x7a,0x82,0x88,0xc5,0x74,0x32,0xc4,0x77,0xe5,0xba,0x96,0x38,0x26,0xc7,0x61,0xef,0x94,0x08,0x78, + 0xfb,0x5e,0x86,0x70,0xf7,0xfd,0x53,0x25,0x10,0x0c,0x0c,0x96,0xb7,0x31,0xb4,0xeb,0xac,0xe0,0xdb,0x11, + 0x89,0x5f,0x3f,0xb9,0x5c,0xe9,0x93,0x93,0xcc,0xef,0x10,0xf4,0xc6,0x62,0x08,0x7a,0x74,0x25,0x02,0x7e, + 0x7a,0xc7,0xc8,0x49,0xe5,0x45,0xda,0xb4,0x6f,0x32,0x21,0x46,0x35,0x64,0xf2,0x02,0xc1,0x6a,0x98,0xea, + 0xa6,0x63,0x87,0xcf,0xbb,0x57,0xa1,0x96,0x23,0x94,0xf6,0x6d,0x68,0x61,0x2c,0xa5,0x6f,0xda,0xb4,0xaf, + 0x81,0x9d,0x70,0xb7,0x2e,0x23,0x27,0xea,0x69,0x4c,0xb6,0x2d,0x50,0x74,0xb9,0xdc,0xe4,0xa6,0x07,0x1b, + 0xd6,0x05,0x27,0x51,0xc3,0x1f,0xf8,0x9b,0x29,0xc3,0xd1,0x8d,0xb7,0x5b,0xc8,0xa3,0x07,0x34,0x30,0xdd, + 0x95,0xb1,0xe2,0x02,0xd6,0xcc,0x78,0x2e,0xbf,0x23,0xbe,0xb8,0x63,0xb8,0xfe,0x4c,0x1a,0x7b,0x4b,0xba, + 0x4e,0x11,0x27,0x05,0xd6,0x4e,0x81,0xe3,0xb2,0x60,0x58,0x1d,0xd4,0xe0,0x09,0x08,0x63,0xce,0x69,0x5b, + 0x0b,0x92,0xac,0xf1,0xe3,0xfe,0xbe,0x9b,0x8a,0x70,0x16,0xd4,0x10,0x6c,0x9b,0xad,0x23,0xf0,0xe5,0x66, + 0xd6,0x3b,0x33,0x39,0x10,0x26,0xec,0xfa,0x79,0x00,0x0c,0x41,0xb4,0x0b,0x4f,0x1d,0x59,0xbd,0x98,0xdb, + 0xaf,0xd5,0x93,0x36,0x8e,0xdf,0xf6,0xb0,0x43,0xa2,0xde,0x76,0x00,0xa3,0x24,0x96,0xff,0x43,0x31,0xed, + 0x9a,0x3e,0x1a,0x14,0xf3,0x87,0x51,0x36,0x12,0x34,0x75,0x3e,0x32,0x32,0x81,0x10,0x98,0xfc,0xea,0xab, + 0x0d,0xc1,0x91,0x11,0x73,0x6d,0x08,0xfa,0x58,0x2b,0xe1,0x31,0x52,0xd2,0x21,0xd4,0xad,0x14,0xc2,0x3b, + 0x33,0xcb,0x3b,0xd8,0x0b,0xdc,0xc2,0x62,0x5d,0xd3,0x08,0xfb,0x1f,0x1d,0x1c,0xef,0xee,0xe2,0x2f,0x14, + 0x38,0x49,0x20,0x42,0x07,0xe9,0xfe,0x88,0x98,0x4a,0x48,0x8a,0xd7,0x3d,0xa9,0x45,0xed,0x34,0x14,0x1d, + 0xf5,0x89,0xe8,0x29,0x8c,0x3e,0x44,0xf8,0x52,0x36,0xc0,0x40,0xc0,0x02,0x21,0x90,0x3a,0xa2,0xb4,0x0d, + 0x49,0x46,0x60,0x92,0xf1,0x98,0x2f,0x47,0x8d,0xa4,0x34,0xdf,0x4c,0x64,0xb1,0x80,0x45,0xe1,0x39,0x0d, + 0x54,0x44,0xd2,0x88,0xa6,0x0f,0x6e,0x83,0x9a,0xa9,0x63,0x8e,0xf3,0x69,0xd5,0x2e,0xca,0x50,0xb3,0x6f, + 0x6b,0xda,0xd1,0xea,0x5d,0x9d,0x1d,0x19,0x5f,0xc9,0x77,0xfa,0xfc,0xd9,0xa7,0xa5,0xd8,0xdb,0x1e,0xab, + 0xc7,0x75,0x76,0xf3,0x83,0x15,0x5f,0xa7,0x26,0xcc,0x49,0x18,0xcd,0xda,0x6e,0x32,0x56,0xd8,0x49,0xa4, + 0x8b,0xa2,0x9c,0xce,0x57,0x33,0x9d,0xbe,0xab,0x95,0xfe,0xe4,0x1e,0x17,0xf9,0xa7,0xd4,0xb6,0x21,0xf7, + 0xef,0x1c,0xc3,0xa8,0x90,0x69,0xf8,0xb4,0x8f,0x86,0xa6,0x39,0x6d,0xa4,0x3b,0x29,0x0d,0xe6,0x29,0xe1, + 0xbd,0xa1,0x1c,0xb0,0x77,0x5c,0x5b,0xac,0xb6,0x95,0xd7,0xdb,0x55,0x97,0x3c,0xb5,0x12,0x4d,0xbc,0xa9, + 0xd6,0x57,0x45,0x70,0xc8,0x5b,0xd7,0x77,0x3d,0x04,0xda,0xe7,0x66,0x67,0x79,0x59,0x92,0x03,0xe4,0x97, + 0x46,0x92,0x46,0x15,0xd8,0x91,0xfe,0xb5,0x2f,0xb7,0xfd,0x97,0x6b,0xb5,0x19,0x71,0x20,0xc4,0x79,0x0c, + 0x71,0x23,0x13,0x0b,0x8c,0x36,0xc1,0x3f,0xc5,0x54,0x58,0x48,0xeb,0xbe,0xe4,0x39,0x0c,0xc8,0xf9,0x02, + 0x21,0xe0,0x95,0x21,0x9f,0xcc,0xc0,0x10,0x28,0x4c,0x94,0xf8,0xfc,0xca,0x77,0x65,0x12,0x60,0x6f,0x13, + 0x8c,0xa0,0x4b,0x05,0x82,0x41,0x10,0xe4,0x13,0x0c,0xef,0xee,0xd2,0x7b,0x15,0x44,0xf6,0xd7,0x46,0x9a, + 0x12,0x4c,0xa1,0x31,0x06,0xc1,0x14,0xaa,0xa9,0x15,0x63,0xf0,0xf5,0xca,0xa5,0x44,0x77,0x9f,0x16,0xb3, + 0xbd,0x58,0x22,0x56,0x44,0x69,0x8a,0x58,0x1b,0x1c,0x98,0x25,0x82,0x8a,0x01,0x21,0x96,0xf2,0xa3,0xe9, + 0xf1,0x64,0x50,0xdb,0x84,0x9c,0x01,0x85,0xd3,0x5c,0x6e,0xcf,0x32,0x16,0x3a,0x53,0x44,0x59,0x46,0x49, + 0xa2,0x75,0x5d,0x92,0x2c,0x2b,0x41,0xdb,0xee,0xae,0xc5,0xd1,0xdf,0xf8,0x80,0x81,0x26,0x8f,0x76,0x33, + 0x41,0x43,0xae,0x70,0xaf,0xaa,0xea,0x10,0x1c,0x89,0x15,0xb5,0x78,0xad,0x0d,0xa4,0x3d,0x76,0x12,0xe8, + 0x8c,0x21,0xec,0x4d,0x5f,0x11,0xaf,0x32,0x10,0xb1,0xf8,0x73,0x7c,0xe4,0x6f,0xe5,0x9d,0x1c,0x21,0x31, + 0xb3,0xac,0xbd,0x67,0x46,0xb0,0x1d,0xad,0xda,0x62,0x9e,0xdd,0xc0,0xd3,0x33,0xfd,0x96,0xe8,0xb6,0x4f, + 0x2d,0x01,0x08,0xa2,0xc9,0xc2,0x36,0xdb,0xac,0x74,0xfa,0x54,0x49,0x25,0xef,0x44,0x83,0xa3,0xd3,0x0f, + 0x20,0x42,0x2d,0x27,0x18,0xb0,0x7f,0x0e,0x11,0xff,0xa1,0xdc,0xa5,0x0f,0x83,0x3b,0x6b,0xc8,0xfa,0x9a, + 0x45,0x58,0xf6,0xa6,0x08,0x2d,0x46,0xd8,0x43,0x2e,0x58,0x89,0xaf,0x7b,0x74,0x72,0x9a,0x37,0xa0,0xdb, + 0x70,0xed,0xa9,0x4d,0x73,0x2b,0xd9,0x10,0x46,0xe1,0x21,0x36,0xfa,0x0e,0x0a,0x19,0x42,0x76,0x5a,0x6d, + 0x5c,0x38,0xf2,0x76,0xbe,0x3a,0x2f,0x24,0xfe,0xea,0x60,0x06,0xdf,0xb9,0xc7,0xa1,0x41,0xad,0x47,0x64, + 0x8b,0xdb,0x2b,0x3a,0xac,0x81,0x50,0x9d,0x5d,0x12,0xda,0xb3,0x49,0xc6,0x7b,0xc2,0x88,0x16,0x06,0x64, + 0x10,0x88,0x41,0xc2,0x8d,0x4e,0xdc,0x93,0x75,0xd4,0x80,0xd1,0xfb,0xd0,0x17,0xd0,0x66,0x05,0x57,0x96, + 0x31,0xd7,0x16,0x1a,0x94,0x61,0x9d,0x16,0xc5,0xa7,0x62,0xd8,0x59,0x1a,0x03,0xf5,0x4a,0x98,0xf0,0x55, + 0xb9,0xef,0xbb,0xc2,0x59,0xda,0x64,0xd9,0x81,0x91,0xca,0x1e,0x12,0x83,0x2c,0xf0,0xd2,0xd5,0xbf,0x65, + 0xac,0xb8,0x09,0x48,0x70,0x08,0xe7,0xf1,0xa5,0x5c,0xbc,0x8b,0xcd,0x2a,0xf7,0x1a,0xe2,0x89,0xe5,0x78, + 0xc0,0x0c,0x50,0x14,0x5a,0x03,0x74,0xeb,0xab,0x82,0x13,0x53,0xae,0x63,0x74,0xa1,0x54,0x24,0xca,0x76, + 0x3e,0xa0,0xf1,0x83,0x22,0x90,0x3d,0x22,0x4c,0xc0,0x80,0xdc,0x1f,0xf6,0x7d,0x30,0x0a,0x28,0x89,0x24, + 0xd4,0x39,0x65,0x39,0xe2,0x55,0xd3,0x10,0x71,0x43,0x7c,0x1e,0x4c,0x4d,0x19,0xce,0x0b,0x9d,0xb6,0xab, + 0x25,0xf4,0x34,0xbe,0xc8,0xa6,0x50,0xda,0x4b,0xa3,0x3e,0x2b,0x93,0x85,0x4c,0x31,0x94,0xba,0x9c,0x38, + 0xa9,0xcb,0x1a,0x77,0x9d,0xe4,0x1d,0xa0,0xee,0x4b,0x13,0x37,0xdb,0xb0,0xa5,0xfa,0xcd,0x9c,0x75,0x9b, + 0xb1,0x62,0x79,0x69,0xc2,0xac,0x61,0x69,0x1e,0x28,0x45,0x20,0xa6,0x94,0x5f,0x7a,0xc7,0x06,0x2a,0xf1, + 0xf7,0x2e,0xaf,0x89,0x9c,0x79,0x5f,0x8e,0x39,0xab,0xe4,0x06,0x97,0xcd,0xcd,0xc8,0x6e,0x08,0x6e,0xf6, + 0xac,0x37,0x9c,0x9f,0x59,0xdb,0x11,0x9b,0xd3,0xf2,0xc5,0x30,0x39,0xed,0x40,0xe7,0x7e,0x87,0x4b,0x79, + 0x73,0xaf,0x75,0x2d,0xd8,0xc1,0x89,0x88,0x8b,0xb5,0x1c,0x53,0xed,0x5d,0xdd,0x43,0xcf,0x7a,0x91,0x7c, + 0x9c,0x4f,0x49,0x1c,0x44,0x04,0x10,0x3f,0xb1,0x2a,0x2e,0x39,0x20,0x0a,0x83,0x5a,0x56,0x1a,0x08,0x74, + 0xd6,0xac,0x1d,0xd4,0x63,0xfa,0xcc,0x91,0x6c,0x82,0x70,0x02,0x52,0xd1,0xc0,0x86,0x65,0x6e,0x2d,0xbb, + 0x41,0x74,0xcb,0xb4,0x54,0x26,0xf6,0x79,0xb9,0xb6,0xae,0x3e,0x06,0xf9,0x89,0x07,0x0a,0x2c,0x0a,0x4b, + 0x8e,0xb2,0x37,0x98,0xb7,0x36,0x2e,0x53,0xa5,0xb0,0xd0,0xc3,0xd8,0xfe,0x59,0x57,0xa6,0x57,0x34,0xef, + 0xc5,0xd7,0x58,0x1c,0xa3,0xbf,0x47,0xcb,0x7f,0xe9,0xc3,0xa6,0xa9,0x8d,0x6b,0xe4,0xa6,0x4f,0x75,0x88, + 0x4d,0xba,0x2c,0xa5,0x10,0xf4,0xfe,0x5b,0x58,0xbe,0x53,0xc5,0xf0,0x7b,0x2b,0x60,0x7b,0xfd,0x60,0xf4, + 0xd5,0xe8,0xf0,0x0b,0x09,0xd3,0xf2,0x63,0xad,0xbe,0xab,0xd5,0x4f,0xb5,0xfa,0xa3,0x56,0x3f,0xd7,0xea, + 0xf7,0x5a,0x7d,0x5f,0xab,0x1f,0x6a,0xf5,0x4b,0xcd,0xe1,0x34,0xf8,0xde,0x67,0x73,0xe7,0xab,0xfa,0x96, + 0xd3,0xf8,0x6e,0x1b,0x85,0x7a,0x89,0xcc,0xcc,0x95,0x4c,0x90,0x92,0xfb,0x7d,0x40,0x1e,0x9e,0xc3,0x74, + 0x90,0x4a,0xff,0xbb,0x6f,0x3b,0xef,0x42,0x24,0xb9,0xfb,0xcd,0x69,0x59,0xbe,0xad,0x59,0xa4,0x16,0x49, + 0x44,0x63,0x38,0x5e,0xe0,0x16,0x58,0x7b,0x5b,0x90,0x29,0x14,0x49,0x23,0xbc,0xbe,0x94,0x4b,0x74,0xc9, + 0xf4,0xa3,0xcf,0x94,0xcb,0x76,0x4c,0x9e,0x8b,0xa3,0x8e,0x1c,0x88,0x9d,0x2b,0xce,0x59,0xab,0x7f,0x71, + 0xe7,0xa7,0x72,0xd9,0xbb,0x9e,0x15,0x2d,0x8c,0xe8,0xd4,0xac,0xce,0xcf,0xcf,0xf9,0xa9,0x59,0xea,0xf9, + 0x9c,0x6b,0xa6,0xbe,0xff,0x93,0x0b,0xd3,0x41,0x50,0x5d,0x9d,0x11,0x82,0x6f,0x08,0x83,0x11,0x53,0xc9, + 0x2e,0x99,0x2a,0x5f,0xb5,0xd5,0x59,0x35,0x5d,0x35,0xfc,0xb4,0x9c,0xe7,0xd7,0xca,0x74,0x88,0x03,0x8f, + 0xd0,0x51,0x0d,0x3b,0x3d,0x22,0x59,0xe7,0x0d,0x9d,0xdf,0x34,0x77,0xb5,0x56,0x96,0xb4,0x33,0xbf,0xb6, + 0xbc,0x79,0xe5,0x3e,0xdb,0x17,0x3b,0x74,0xbc,0x13,0xe7,0x33,0x2b,0x1a,0x74,0x6f,0xa6,0x74,0x29,0xbf, + 0x88,0x60,0x50,0x56,0x34,0x85,0x05,0x80,0x58,0x5d,0x14,0xb3,0x19,0x75,0x0d,0x87,0x63,0xab,0xeb,0x45, + 0x51,0x22,0x91,0x20,0xaa,0x6e,0x55,0xd1,0x2c,0xf2,0xa5,0x2a,0x5a,0xbd,0x90,0x48,0x27,0xf3,0xaa,0x5a, + 0x2a,0x7b,0xcd,0x94,0x92,0x46,0xcb,0x0a,0xa1,0x5a,0x14,0xc2,0x4b,0x34,0xc5,0x1f,0xb4,0x48,0x55,0x73, + 0x91,0x83,0xe1,0xf4,0x2d,0x94,0x15,0xa2,0x47,0xd1,0x3a,0x53,0x33,0xcb,0x9c,0xb0,0x11,0x6d,0xda,0x4f, + 0x45,0x4b,0x24,0x6d,0x3e,0xab,0xca,0x39,0xa2,0xaa,0xfc,0xbe,0xa2,0x2d,0x38,0x53,0xc6,0xb5,0x72,0xa6, + 0x84,0x2d,0x22,0x98,0xc8,0x17,0x73,0x02,0x06,0xe5,0xc6,0x04,0x1f,0x4c,0x9e,0x6d,0x77,0xb1,0x0b,0xc7, + 0x06,0xa5,0xb9,0xa7,0x4c,0xc0,0x3c,0x02,0x4b,0x70,0xac,0x78,0x75,0x59,0x34,0x05,0x95,0x04,0x87,0x5b, + 0x64,0xd1,0x45,0xdb,0x2e,0xd3,0xfb,0xf7,0xaf,0xae,0xae,0x46,0x57,0x5f,0x8c,0xaa,0xfa,0xfc,0xfe,0xe1, + 0xd7,0x5f,0x7f,0x7d,0xff,0xd3,0xbc,0x28,0x3f,0x12,0x45,0x55,0x0c,0x9c,0xb3,0x51,0xda,0x71,0x41,0xf9, + 0x0a,0x50,0x26,0xe5,0x39,0xd9,0x86,0xe8,0xf9,0x8a,0x08,0xfb,0x72,0xe8,0xfb,0x2d,0x0d,0x9b,0x5c,0xe7, + 0x5d,0xf2,0x77,0x65,0x05,0x9b,0x1c,0xb3,0x45,0xd5,0x83,0xdf,0x08,0x81,0x4c,0x80,0xb8,0x7d,0x28,0x60, + 0x57,0x14,0xd9,0x4d,0x73,0x49,0x04,0xf1,0xe6,0x08,0x1e,0x1c,0x1c,0x1c,0xdc,0xa7,0xbc,0x88,0xf8,0xa6, + 0xf6,0x62,0xa8,0x04,0x8d,0xf1,0x1f,0xf7,0x71,0x47,0x2a,0xff,0x79,0xf5,0x92,0x9a,0xad,0x0a,0x40,0xe6, + 0x45,0xbb,0x98,0xab,0xd3,0x6a,0x76,0xad,0x80,0x0d,0xd5,0x05,0x2d,0x85,0xc2,0xd0,0x14,0x22,0x94,0x2b, + 0xd9,0xb5,0x6d,0xd1,0xd2,0xdf,0x7c,0x36,0xc3,0x7e,0x54,0x79,0xdd,0x16,0x53,0xbc,0x37,0xb4,0x27,0x08, + 0x88,0x2a,0xdc,0xe2,0x89,0xef,0xf0,0x73,0xa8,0x2e,0x1e,0xa8,0x8b,0x2f,0xd4,0xc5,0x97,0xea,0xe2,0x2b, + 0x75,0xf1,0x77,0x75,0x71,0x5e,0x57,0xab,0xa5,0x2a,0xf3,0x4b,0x5a,0x3b,0x1e,0x23,0x01,0xe2,0xa5,0x9a, + 0x11,0x54,0xce,0xd5,0xac,0x55,0x44,0xc7,0xc2,0xc3,0x06,0xe9,0x6c,0x90,0xaa,0xd5,0xb2,0x98,0xc2,0xe1, + 0x46,0x5d,0xd4,0xaa,0x58,0x9c,0x53,0x67,0x68,0x50,0x74,0x88,0x55,0x73,0xb5,0x84,0x61,0xa3,0x5a,0xcd, + 0x55,0xae,0x4e,0x89,0x95,0x3c,0xad,0xd5,0xe9,0xac,0xa0,0xff,0x95,0xa2,0xc7,0x29,0x81,0x27,0x47,0x21, + 0x52,0x7c,0x99,0xfd,0xec,0x8c,0xce,0xc8,0x85,0x2a,0xd4,0xc7,0xd3,0x19,0x55,0x50,0x7f,0x54,0xbf,0xab, + 0x7a,0xa9,0x08,0x98,0xeb,0x76,0xaa,0xea,0xd5,0xe9,0x35,0x51,0xf2,0x4d,0xbe,0x58,0x2a,0x82,0x6d,0x22, + 0xbc,0x9a,0x65,0x4e,0xa8,0x87,0xf6,0x1a,0x31,0x9c,0xcd,0xea,0x94,0xfe,0x2f,0xf9,0x5e,0x5b,0xb5,0x52, + 0x84,0xdc,0xd4,0xd5,0x29,0x84,0xe8,0x84,0xa4,0xf2,0xd5,0xac,0xa8,0x14,0xb6,0x03,0x18,0xd9,0x8f,0x8a, + 0x11,0x03,0xb5,0x74,0x4a,0x60,0x27,0xde,0x60,0xb0,0x44,0xcd,0x17,0x04,0xa0,0xab,0x9a,0x78,0x90,0x69, + 0x5e,0x5e,0xe6,0xd4,0xd2,0xb4,0x2e,0x96,0x2d,0x36,0x85,0x3c,0x10,0xc9,0x0d,0x43,0x37,0x65,0xc7,0x3e, + 0xa5,0xe1,0xd1,0x7f,0x99,0x2c,0x03,0xd8,0xbc,0x16,0x2d,0xaf,0x4d,0x4b,0x0f,0x17,0xd4,0xa2,0x12,0xe4, + 0xc6,0x43,0x84,0x29,0x01,0xcd,0x99,0x9e,0xcf,0x88,0x8e,0xe7,0xcd,0xac,0x04,0xa1,0xce,0xf3,0x53,0xaa, + 0x7d,0xae,0xcf,0x41,0x0b,0x2c,0xb0,0x99,0x81,0x5a,0xa5,0x6a,0x83,0x63,0xab,0x55,0x8b,0x92,0x16,0xc7, + 0x5a,0x9c,0xeb,0x50,0x31,0xa1,0x80,0xbc,0x00,0xd6,0x29,0xf2,0x79,0x75,0x4e,0x95,0x94,0x2b,0xfe,0x03, + 0x14,0x40,0x53,0xb3,0xa0,0x09,0xbd,0x56,0x06,0x03,0x2a,0x2d,0x42,0x07,0x85,0xfd,0x5e,0x5d,0x29,0x1b, + 0x3a,0x4b,0x71,0x70,0xb2,0xdf,0x57,0x15,0xd0,0xc8,0x59,0x0d,0xaa,0xaf,0x05,0xb4,0x40,0x08,0xc1,0xa0, + 0x47,0x00,0xab,0xf2,0xb2,0x58,0xa0,0xec,0xb4,0xa8,0xa7,0x7c,0x3e,0x14,0xcb,0x25,0x01,0xa8,0x9a,0xae, + 0x6a,0xda,0xe1,0xc0,0x5c,0x40,0x7d,0xcd,0x94,0x1a,0xa1,0x2c,0x02,0x50,0x89,0xf2,0x43,0xc3,0x2d,0xdb, + 0xfd,0xb3,0x7c,0x0a,0x00,0xac,0x75,0x71,0x5e,0xca,0x21,0xa8,0xce,0xd5,0xf9,0xfc,0x7a,0x79,0x41,0x90, + 0x93,0x9f,0x6b,0x00,0xb2,0xe6,0xc5,0xd7,0x90,0x28,0x34,0x04,0xd4,0x45,0x83,0x5b,0xd6,0xf6,0xa5,0x10, + 0xb7,0x44,0x7f,0xa8,0x42,0x42,0x48,0xd5,0xfc,0xfa,0xbc,0x92,0x5f,0xfe,0x0e,0xa4,0x80,0x12,0x57,0x6a, + 0xd5,0x70,0xa8,0x0d,0x9e,0x1f,0xfe,0xc3,0x5f,0xb6,0x0c,0x33,0x20,0xaa,0x2e,0x0b,0x7d,0x25,0x11,0xa2, + 0x9a,0xc1,0xbd,0x5c,0x89,0x4d,0x7e,0xce,0xf7,0x87,0xd3,0x58,0x07,0x39,0xaa,0x15,0x4f,0x8a,0xd8,0x37, + 0xb2,0xc4,0x83,0x1d,0xce,0xae,0xaa,0x9a,0xd1,0x5f,0x4d,0xbd,0xd0,0xb4,0x11,0xd0,0x89,0xb9,0x5a,0xd5, + 0x88,0x9e,0x3d,0x2f,0xfa,0xa1,0xad,0x3a,0x52,0xa0,0x41,0xeb,0xdf,0x3b,0xc2,0x6f,0xb9,0x8b,0x94,0xcd, + 0x81,0xc9,0x11,0xca,0x27,0x65,0x1a,0x6b,0x63,0x48,0xab,0x03,0x43,0xda,0xdd,0x5d,0x17,0x2f,0x2d,0x4c, + 0x76,0x17,0x0f,0xc2,0x2a,0xa6,0x7b,0x11,0xbc,0xcd,0x41,0xc4,0x25,0xfb,0x98,0xf0,0xa5,0x86,0x9d,0x6e, + 0xbc,0x7e,0xdf,0xeb,0xb3,0x55,0x32,0x0e,0x76,0xfa,0xf5,0xfb,0xb8,0x28,0x10,0x82,0x52,0xbb,0x7a,0x3e, + 0xd0,0xec,0xe1,0xce,0xca,0x74,0x60,0x11,0x7a,0x95,0xd8,0xa2,0xb2,0x24,0x9c,0x64,0xe2,0x06,0xfc,0x85, + 0x8f,0x4d,0x49,0xfe,0x56,0xec,0x55,0x1f,0xb3,0x88,0x7a,0xc3,0x87,0x9c,0xf9,0x40,0x97,0x1d,0xcb,0x45, + 0x8e,0x62,0xb3,0xcf,0xc6,0x4c,0xbd,0xf1,0xda,0xcb,0xd2,0x39,0x0f,0x17,0x84,0x28,0xdc,0x6d,0x5c,0xce, + 0x86,0xcb,0x06,0x79,0x5c,0xd6,0xdf,0xd9,0x39,0x34,0x84,0x36,0xb8,0xd3,0x93,0x0e,0x2a,0x1a,0xfe,0x7b, + 0x3a,0x16,0x69,0x37,0x0c,0x17,0x0e,0x0a,0xac,0x71,0x31,0x19,0x07,0x6c,0x1a,0x2c,0x69,0x32,0xd7,0x70, + 0x1f,0xc0,0xac,0x3e,0x11,0xbc,0xf0,0xff,0xb5,0xf7,0xed,0xfb,0x6d,0x1b,0xc9,0x9a,0xaf,0x42,0x61,0xb4, + 0x32,0x10,0xb6,0x28,0xc9,0x97,0x64,0x02,0x1a,0xe6,0x38,0xb6,0x93,0x38,0x8e,0x63,0x9f,0xd8,0xb9,0x52, + 0x8c,0x0e,0x44,0x82,0x22,0x6c,0x0a,0xe0,0x80,0xa0,0x64,0x5b,0xe4,0x03,0xed,0x6b,0xec,0x93,0x6d,0x7d, + 0x55,0xdd,0x8d,0x06,0x08,0x59,0x76,0xce,0xee,0xd9,0x7f,0x36,0xf9,0x59,0x04,0x1a,0x7d,0xef,0xea,0xea, + 0xaa,0xea,0xba,0x6c,0x75,0xb7,0xac,0xbe,0x45,0x92,0xdb,0x42,0x48,0xcb,0xbc,0xd5,0x00,0x88,0xe7,0x0d, + 0x41,0x71,0xe8,0x0c,0x94,0x15,0x68,0xd4,0xfe,0x4b,0xc9,0x33,0xa0,0xe9,0xf1,0x66,0xcb,0x0c,0xa3,0x44, + 0x9d,0x54,0x00,0x2b,0x9e,0x85,0x7f,0x81,0x5c,0x0d,0xdb,0x96,0x8b,0x07,0xed,0x1a,0xbc,0x26,0x13,0xf4, + 0xea,0x53,0xed,0x76,0xc2,0xf7,0x88,0x8a,0xde,0x28,0x44,0x76,0x99,0xa4,0xf0,0x49,0x66,0xfc,0x8c,0x19, + 0x05,0x59,0xeb,0x41,0x8c,0xfd,0x44,0x60,0x49,0x2b,0xcf,0x61,0xde,0x88,0x68,0x2d,0x3b,0x8e,0x0f,0xa5, + 0xe9,0xf5,0x87,0xb2,0xb5,0xfd,0x0f,0x68,0x7f,0x91,0xa2,0xfd,0x8b,0x76,0xcc,0x71,0x4e,0x5d,0x98,0xa6, + 0x54,0xe9,0x48,0x9d,0x55,0x15,0xff,0x60,0x2b,0xfe,0x81,0xa8,0x87,0xf7,0xd5,0x87,0xdf,0xed,0x87,0xdf, + 0xe9,0xc3,0x49,0x1a,0x1d,0x0c,0x8f,0x2f,0x83,0x5e,0xf7,0x78,0xff,0x64,0xf7,0x78,0x34,0x3a,0x50,0xa7, + 0x88,0x1b,0x70,0x42,0x3c,0xc6,0x25,0x3f,0x8c,0x3d,0xb5,0x5b,0x95,0xa6,0x03,0x56,0x97,0x06,0x18,0xbd, + 0xab,0x3e,0xcc,0xec,0x87,0x19,0x7d,0x78,0x9b,0xb6,0x5a,0xf3,0x72,0xc0,0xba,0x83,0xd0,0xef,0x75,0x83, + 0x83,0x2a,0x1c,0x83,0x18,0x5b,0x1e,0xf4,0xfd,0xc1,0xce,0xf0,0x2f,0x7f,0xf4,0xc5,0x71,0x10,0x1c,0x9c, + 0xb5,0x28,0xa5,0x89,0xbd,0x66,0x59,0xb9,0x71,0x95,0x82,0x50,0x26,0xb0,0x37,0xa2,0x50,0x8f,0x1e,0x22, + 0x76,0xab,0x0e,0xe6,0x33,0x8a,0x8a,0x2a,0xf0,0x0f,0x03,0x51,0x02,0xcf,0x74,0x34,0xea,0xbf,0xf6,0xf7, + 0x0f,0xd4,0x43,0x7a,0x38,0x5e,0x7e,0xb1,0x93,0x9e,0xc3,0x7e,0x3a,0xce,0xca,0xdd,0x03,0xf5,0x2a,0x6d, + 0xd3,0x7a,0x78,0xa4,0x43,0xd7,0x13,0xa0,0x94,0x12,0x73,0x10,0x30,0x6a,0xf9,0xad,0xc4,0xb5,0xd6,0x78, + 0xa8,0xf3,0x66,0xd7,0xe6,0xb5,0xde,0xf3,0x1e,0xa6,0x1c,0xa9,0xc8,0xb3,0x1d,0xf0,0x6a,0x41,0x05,0x5e, + 0xa4,0xbe,0x78,0xa7,0xaf,0x5f,0x96,0x67,0x35,0x1d,0x9c,0xd6,0x1b,0x5e,0x69,0x17,0x1c,0x36,0x6b,0x43, + 0x89,0xe5,0x95,0x93,0x48,0xf0,0xf4,0x1a,0xb0,0x2b,0xa1,0x12,0x09,0x3c,0x9f,0xe7,0x1f,0x80,0x9f,0x97, + 0x70,0xa1,0xd7,0x5c,0x3d,0xea,0xc0,0xb3,0x22,0x7a,0x56,0xdc,0xe0,0xbf,0x51,0xaa,0xb7,0xbe,0xf8,0x76, + 0xd8,0xfe,0x1a,0x01,0x24,0xe0,0xa1,0x94,0x25,0xec,0xcf,0x0a,0x2b,0x70,0x73,0x2f,0xcb,0x3e,0xc1,0x37, + 0xa1,0xf6,0x78,0xf1,0x3a,0x6d,0x71,0xab,0xf9,0x3a,0x1d,0x66,0xa3,0x2e,0x4b,0xa8,0x8b,0x7a,0x2b,0x05, + 0x56,0xfc,0x4d,0x05,0xa5,0x67,0x16,0x4a,0xcf,0x08,0x4a,0x9f,0x34,0xc7,0xa9,0x2d,0xc2,0x13,0x0e,0x85, + 0x09,0x66,0x35,0x24,0x76,0x7d,0x9f,0x5f,0x89,0x39,0xc0,0x8f,0x8e,0xfc,0x5c,0xa5,0xef,0x97,0xb9,0xfe, + 0xe4,0xc4,0x80,0x76,0x3e,0x8b,0xc4,0xd5,0x53,0x55,0x18,0x69,0xfe,0xc8,0xaf,0x3a,0xd5,0xad,0x93,0x13, + 0xb8,0xce,0x66,0x5c,0x69,0xe7,0xb3,0xae,0x13,0x63,0x7b,0x9a,0xb2,0x47,0x31,0x44,0x84,0xfe,0x31,0xd5, + 0x71,0x2e,0xd9,0x73,0xac,0xa7,0xbe,0xa5,0x77,0x21,0xb0,0xf8,0xf5,0x71,0xe3,0xf3,0x4f,0xb5,0x77,0x3a, + 0x49,0x3c,0xf5,0xb2,0x5e,0xe2,0xb9,0xfb,0x8a,0x0c,0xfd,0xa7,0xb8,0x00,0xb0,0xde,0x1a,0xb4,0x1b,0x33, + 0xf0,0xa8,0x4e,0x35,0x0e,0x79,0x60,0x33,0x5c,0x32,0x90,0x35,0xb2,0xf9,0xe8,0x91,0x13,0xa9,0xd3,0xe9, + 0xd7,0x65,0x23,0xf5,0x49,0x86,0x1b,0xca,0xed,0x86,0xdd,0xde,0x5d,0xdf,0x6e,0x3d,0x97,0xff,0xd2,0x36, + 0xfb,0xb0,0x3e,0xd6,0xcb,0x7a,0x22,0x37,0x2a,0x32,0x9a,0x9f,0x31,0xcb,0x03,0x5d,0x2d,0xd8,0x54,0xda, + 0xdd,0x36,0xdf,0xb7,0x20,0x6e,0x3f,0xfa,0xb1,0x07,0x79,0x91,0x2f,0x39,0x82,0xb0,0x72,0x8a,0xd0,0x7a, + 0xa0,0xe2,0xde,0xfc,0x1b,0xa0,0xa5,0x53,0xdf,0x46,0xef,0x58,0x13,0x8f,0x12,0xf8,0x6a,0xbd,0x1b,0x1c, + 0xa8,0x5f,0x1c,0xf4,0xb4,0x15,0xe0,0x41,0xa8,0xbc,0x47,0xce,0x59,0x0f,0xda,0x2e,0x61,0x89,0xd8,0xa3, + 0x1a,0x75,0x01,0x15,0x57,0x27,0x82,0x06,0xc7,0x82,0x4b,0xc5,0xc4,0x4e,0x42,0xda,0xd4,0x3c,0x52,0xc5, + 0xca,0x35,0x12,0xe3,0x9c,0x46,0xd9,0x52,0xce,0x57,0x16,0xad,0x23,0x22,0xb4,0x36,0x72,0x6a,0x8d,0x02, + 0x1c,0xc0,0x97,0x90,0xbd,0x2a,0xd1,0x45,0xa2,0xb8,0x07,0x7d,0x2d,0xfa,0x26,0x2f,0x90,0x03,0x23,0x23, + 0x8e,0xdd,0x23,0x6e,0x48,0xb5,0x57,0x66,0x63,0x78,0xa0,0x47,0x84,0x1f,0xfc,0x55,0x50,0xd3,0x6b,0x34, + 0x11,0x30,0x1c,0x1d,0x9e,0xb2,0x1f,0xb7,0x98,0xe2,0x48,0x94,0xeb,0x96,0x2f,0xe6,0xd6,0x3c,0xf1,0x73, + 0xfa,0x8c,0x61,0x72,0x2f,0xf3,0xc8,0x0d,0x19,0xab,0xf5,0x96,0x24,0x16,0xcb,0xbb,0x9e,0x21,0x01,0x0c, + 0x9a,0xea,0x76,0xf3,0xa0,0x4a,0x45,0x14,0x96,0x45,0x4a,0x93,0xdc,0xd7,0x46,0x07,0xb1,0xd1,0x10,0x1a, + 0x43,0x43,0x05,0x97,0xc7,0xd4,0xe7,0x8d,0x9d,0x63,0xb5,0x23,0xa1,0x13,0xe4,0xcd,0x4c,0xae,0x4c,0xb9, + 0x9a,0x3a,0xde,0xb5,0xd5,0x4c,0x1c,0x13,0xd3,0x5a,0xcf,0x82,0x81,0xcf,0x35,0x41,0xfa,0xbe,0x1c,0x3c, + 0xda,0x22,0x9b,0x91,0xac,0x66,0x41,0xd8,0xf8,0xe2,0xcf,0x20,0x1d,0x9f,0x40,0x16,0x3b,0xa7,0x26,0xa7, + 0x98,0xd4,0x84,0x27,0x75,0x21,0x33,0x3c,0x86,0xa7,0x17,0xee,0x22,0x75,0x25,0xcc,0x7c,0xc7,0x27,0xb4, + 0x6d,0xf2,0x51,0x93,0x44,0x16,0x7f,0xce,0x8d,0xb2,0x8d,0xcc,0x15,0x31,0xde,0x96,0xdb,0xf1,0x28,0xbc, + 0x14,0xd5,0xbd,0xc4,0x18,0x4b,0xe9,0xd0,0xf4,0x02,0xa5,0x22,0xf4,0xc5,0xac,0x9a,0x2b,0x15,0xd5,0x9a, + 0xad,0x35,0xd5,0xa8,0x35,0xe8,0x79,0xdb,0x06,0x05,0x28,0x07,0x4d,0xd9,0x97,0xd4,0x42,0xb4,0xe4,0x26, + 0xec,0xcc,0x89,0x89,0xc8,0x40,0x59,0x13,0x12,0x37,0x56,0x89,0xd6,0x7b,0x45,0x77,0xd1,0x37,0x0e,0x35, + 0x5f,0x38,0x5b,0x53,0xa4,0xcc,0x8f,0xea,0x3c,0x82,0x94,0xa1,0xb5,0x71,0xc9,0xfb,0x92,0x03,0xb2,0xda, + 0x9a,0xe7,0x0e,0x5d,0xb2,0x15,0x63,0xaf,0x19,0xbb,0xc2,0xc2,0x61,0x1a,0xc4,0x3e,0x6b,0x1c,0x67,0x7a, + 0x6e,0xf9,0xca,0x09,0xfa,0x86,0x4c,0x1c,0x14,0x66,0xf6,0xd1,0xa5,0x5a,0xe3,0x9c,0x79,0x6b,0xad,0xb4, + 0x1b,0x9b,0xd2,0x38,0xec,0x76,0x5c,0x62,0x1b,0x1f,0x19,0xfd,0x36,0xc3,0xb7,0xa0,0x6c,0x9d,0x5f,0xd9, + 0x6a,0x95,0xc9,0xad,0xc4,0xbf,0x72,0x9c,0x5e,0xcb,0xd2,0xd7,0x2d,0xd8,0xde,0xe9,0x4e,0x55,0x83,0x2c, + 0x02,0x93,0x46,0x54,0x0e,0xb6,0x1a,0xa3,0xbf,0x4b,0x63,0xe0,0xab,0x31,0x0d,0xad,0xc5,0xa5,0xce,0x46, + 0x6f,0xe6,0x51,0xb2,0x2b,0x7c,0x4b,0x0d,0x44,0xb5,0x2d,0xec,0xc4,0x62,0x5a,0x41,0x61,0xd0,0x06,0xb7, + 0xee,0x04,0x83,0xe0,0x51,0x9d,0x79,0xd1,0x73,0x0d,0x32,0x4f,0x26,0xba,0x1a,0x02,0x47,0x13,0x42,0xf9, + 0xca,0xc2,0x12,0xf8,0x85,0xad,0x94,0xec,0x35,0xc5,0x52,0xd7,0x8b,0x65,0xb9,0xae,0x62,0x55,0x45,0x1e, + 0x02,0xb2,0x8f,0x2e,0x11,0xe0,0x33,0x63,0x87,0xe6,0xba,0x62,0xf3,0x6a,0x5d,0x24,0xfe,0xbd,0x86,0x1c, + 0xe7,0xde,0xae,0x7f,0x47,0xbd,0xdc,0xc5,0xfd,0x28,0xe5,0x35,0x88,0x7d,0x8e,0x96,0x93,0xab,0x7a,0x10, + 0xa3,0x0b,0x3b,0x71,0x28,0x56,0x3b,0x39,0x52,0x01,0x5c,0xf4,0x29,0xad,0xce,0x03,0x74,0x50,0x33,0x45, + 0x18,0x50,0xe5,0xf8,0xec,0x9d,0x49,0xae,0x56,0x3e,0x0b,0x6c,0x22,0x47,0x0a,0x0e,0xaa,0xc5,0xa9,0x02, + 0xc4,0xeb,0x10,0x3f,0xec,0xff,0xbf,0x69,0xfb,0x88,0x8e,0xe3,0x1e,0xda,0x35,0x7d,0xac,0xfa,0x7e,0x5e, + 0x3f,0x51,0xaa,0xb1,0x5a,0x9b,0x83,0x82,0xa8,0x6c,0xf1,0xdc,0x45,0x3f,0x0c,0xbd,0x03,0xff,0x0c,0x57, + 0x74,0x17,0x38,0x17,0x43,0x44,0x3b,0x82,0x6e,0x90,0x8b,0xcf,0xce,0xac,0x2a,0x32,0x8e,0xe8,0xf5,0xda, + 0x20,0xb6,0xc0,0x86,0x2b,0x8a,0xde,0xe9,0x53,0xdb,0x86,0xa2,0xed,0xeb,0x79,0x0a,0x06,0x8e,0x15,0x6d, + 0x37,0x4a,0xc3,0xec,0x63,0x8a,0xc1,0x44,0x36,0xed,0xef,0x3b,0x05,0x70,0x4d,0x56,0x5a,0x67,0x29,0xce, + 0x87,0x88,0x16,0x75,0xe3,0x9b,0x93,0x88,0x36,0x43,0xd1,0xb6,0x5d,0x79,0x75,0x00,0x74,0x5a,0x11,0x82, + 0x5f,0xcd,0x09,0x79,0x86,0xd8,0x19,0x81,0x32,0x5b,0xb4,0xd6,0x7f,0xbd,0x45,0x25,0x0d,0x5b,0x94,0x63, + 0x92,0x49,0x2b,0xee,0x0e,0x4d,0x74,0xd8,0x5e,0x64,0x0b,0x4c,0xb8,0x2a,0xa8,0x7d,0xf3,0x16,0xca,0xa5, + 0x83,0xce,0xf2,0x40,0xcd,0x19,0xe4,0xcb,0x52,0xa2,0x73,0x11,0xac,0xa7,0x26,0x2a,0x67,0xca,0x38,0xbd, + 0xc0,0x5f,0xd6,0x79,0x41,0xdc,0xd7,0x2d,0xef,0x97,0x01,0xed,0xc3,0xb4,0xe6,0x3f,0xd3,0xf8,0xb8,0x9a, + 0x04,0x83,0x53,0xbf,0x90,0xf9,0x40,0x64,0xe2,0xb4,0xd5,0x77,0xe6,0xa1,0x65,0xfe,0x88,0x2a,0xb3,0xfe, + 0x3d,0x19,0x68,0x0b,0xf7,0x35,0x65,0x17,0xa3,0x91,0x84,0x0d,0xc3,0x81,0xc5,0xb9,0xc5,0xab,0x27,0x01, + 0x80,0xbc,0xbe,0x60,0xf2,0x26,0x48,0x5b,0x74,0x5d,0x8a,0x36,0x53,0x62,0x1b,0xec,0x58,0xcd,0x69,0xb4, + 0xbc,0xa9,0x12,0x7f,0xce,0xb3,0xb8,0x8a,0xe6,0xd5,0x94,0xae,0xa2,0x95,0x75,0x16,0x40,0x09,0x2b,0xcc, + 0x99,0x10,0xb8,0x8b,0xa8,0xa8,0x48,0x89,0x89,0x63,0x4b,0x2a,0x9b,0x08,0x75,0x4d,0xb1,0x47,0x19,0xf6, + 0x57,0xb4,0xb0,0x2b,0x5a,0x58,0xe1,0xa4,0xaa,0x85,0x5d,0x05,0x26,0x6d,0xb8,0x1a,0x49,0xdd,0x2d,0x1d, + 0x90,0x1c,0xb6,0xf9,0x4d,0xe9,0xa7,0x72,0x84,0x0c,0x08,0x01,0x73,0x2e,0x9a,0xf1,0x05,0x2d,0xa0,0x7b, + 0x57,0x6e,0xfc,0xc8,0x2e,0xab,0x13,0x60,0xac,0x68,0xb8,0x44,0x03,0x1d,0xaa,0x05,0xfd,0x9b,0x44,0x95, + 0xab,0x16,0x75,0x11,0x41,0x02,0xa0,0xce,0xe8,0x67,0x32,0x52,0x27,0x56,0x75,0x9b,0x3e,0x9d,0x46,0x29, + 0x3e,0x5d,0xd2,0xcf,0xc9,0x48,0xed,0x46,0x3b,0xcb,0xfe,0xf4,0x3e,0x9a,0x5a,0xdc,0x8f,0x4e,0xe8,0x6c, + 0xf2,0x2f,0x82,0x01,0x8a,0x77,0xbb,0xd3,0x51,0x08,0xaf,0x65,0x03,0xd4,0xb2,0xbf,0x3f,0x19,0x85,0xdf, + 0xd3,0x47,0x75,0x4a,0x9b,0xfa,0x3d,0x7e,0x41,0x9c,0x99,0x8c,0x5c,0x6b,0xb7,0xbb,0x18,0x05,0xc8,0x74, + 0xa6,0x2e,0x39,0x13,0xfd,0x22,0x93,0x29,0xcf,0x6d,0xee,0xef,0x9f,0x48,0xa6,0x0b,0x9d,0xe9,0x42,0x32, + 0xed,0x6e,0xd1,0x01,0x99,0xba,0xd0,0xe7,0xae,0x23,0x8a,0xf3,0xcf,0x04,0x85,0x54,0x2d,0xd7,0x2a,0x3d, + 0xd3,0xdd,0x3b,0x93,0xee,0xb5,0x55,0xca,0x15,0x48,0xd5,0x4e,0xd7,0xaa,0xfe,0xfb,0xa5,0x38,0xbb,0x18, + 0x47,0xbf,0x96,0xb4,0x3e,0x53,0x35,0x81,0xa9,0xbc,0x0f,0x82,0xfe,0x94,0x63,0x98,0x0e,0xc6,0x43,0x7e, + 0x18,0xb5,0x38,0xff,0xa8,0xe2,0x12,0x4e,0x89,0x16,0x4e,0x39,0x0a,0xa1,0x45,0x8f,0xf9,0xc8,0xf0,0x08, + 0x7b,0x7b,0xdf,0x43,0xa8,0x15,0x5b,0x0a,0x3e,0x27,0x1a,0xf7,0x94,0xaa,0x38,0x44,0x6b,0x83,0x98,0x9e, + 0x73,0xa5,0xc7,0xcf,0xe3,0x9a,0x53,0x3f,0x57,0x23,0x3d,0xb8,0xb9,0x0c,0x0e,0x29,0xc6,0xa3,0x6d,0xdb, + 0x40,0xe7,0xce,0x40,0x83,0xb0,0x5e,0x67,0x35,0xde,0xfe,0xf4,0xc1,0x04,0x4a,0xf4,0x34,0x44,0x02,0x88, + 0xee,0xd1,0x28,0x90,0xe8,0x8c,0xf2,0xa2,0x37,0xfd,0x42,0x9d,0x60,0xe3,0x2f,0x1e,0x9c,0xec,0xed,0x9d, + 0xfb,0x87,0x4a,0xa6,0x65,0xe3,0x8f,0x39,0x5c,0x36,0x80,0x32,0x64,0xa0,0x05,0x85,0x57,0x91,0x50,0x75, + 0x71,0x28,0x65,0xc6,0x39,0x3d,0xa3,0x5f,0x26,0xbb,0x26,0x18,0x6c,0x05,0x96,0x20,0x8a,0x01,0xfe,0x03, + 0xd4,0xbf,0xa0,0x6f,0x8b,0x2a,0x0c,0x62,0x78,0x63,0xb5,0xa1,0x7c,0xdf,0xe1,0xa8,0x35,0x7c,0xb6,0xb7, + 0xe4,0xd3,0xbb,0x4c,0x5d,0x8f,0x19,0xf2,0x65,0x59,0x47,0x0d,0x1b,0xe7,0xa8,0x3a,0x11,0x2e,0x84,0xd1, + 0x2b,0x18,0x4f,0x94,0xb2,0xc1,0xa8,0x03,0xf3,0xd4,0x46,0x59,0x17,0x75,0xb2,0x47,0x18,0xa5,0xc2,0xe5, + 0x8f,0x0a,0x02,0x8e,0x0a,0xfb,0xeb,0x95,0xf4,0x0b,0xf6,0xa7,0x6a,0x3b,0x70,0xda,0x60,0x3c,0xd5,0x18, + 0x31,0x9b,0xe2,0x33,0xb5,0xd2,0xee,0x3e,0x08,0x17,0x14,0xf5,0x68,0x43,0x51,0xbe,0x5e,0x23,0xba,0x3b, + 0x90,0x9e,0x2a,0x84,0xb4,0x57,0x82,0x90,0x0d,0xdf,0x22,0x07,0x97,0x8b,0xf7,0x2d,0x54,0xb6,0x1d,0x13, + 0x50,0xaf,0x26,0x5c,0xcf,0x80,0xbc,0xd2,0x47,0x3d,0x4d,0x5d,0x3b,0x03,0x5b,0x88,0x25,0x21,0x25,0xb6, + 0x60,0xed,0xc0,0xe1,0x5f,0x31,0xaf,0xb6,0xda,0x71,0xa0,0x09,0x82,0x69,0x10,0x30,0x27,0x3e,0x8b,0x97, + 0x4c,0x88,0x83,0xea,0x5e,0xfa,0x9c,0xc8,0xad,0xda,0x06,0x4d,0xdc,0x38,0xa7,0x07,0x3a,0x2a,0x8a,0x54, + 0x15,0x33,0xe5,0x57,0x25,0xda,0x20,0x1c,0x7c,0x70,0x98,0x75,0x61,0xd5,0x71,0x70,0x91,0xd3,0xb4,0x58, + 0x96,0xdc,0x22,0xa1,0x99,0xc3,0xfe,0xc5,0xfd,0xa9,0x59,0xab,0x0b,0xe3,0xe0,0x6e,0xb6,0x5e,0xef,0x9c, + 0x12,0xbf,0x38,0x1d,0x5e,0x8c,0x34,0x67,0x0a,0xb3,0x74,0xcd,0xca,0xce,0xa2,0x59,0xed,0xfe,0x00,0x25, + 0x26,0xeb,0xf5,0xac,0xde,0x30,0x71,0x31,0xd8,0x48,0x69,0x60,0x66,0x53,0xd6,0xf5,0xdc,0x75,0xb5,0x72, + 0x06,0x69,0xde,0x0a,0x23,0xde,0x79,0x48,0xb8,0x38,0xb8,0x3a,0x47,0x27,0x17,0x72,0xb6,0x48,0x63,0x3b, + 0xe7,0x58,0x60,0xd6,0x2c,0x81,0x9b,0x38,0xfd,0x68,0x9c,0x4d,0x0a,0x40,0xee,0x70,0x78,0x2f,0xde,0x18, + 0x9a,0xc0,0xd2,0xef,0xe6,0xda,0x6b,0x47,0x82,0xc5,0x5c,0xaa,0x5d,0xf5,0x0e,0x42,0xea,0xb7,0x88,0x34, + 0x9f,0x4f,0x56,0xf3,0x64,0xa9,0x1e,0xd1,0x33,0x68,0x9c,0x17,0x5a,0xfb,0xeb,0x92,0xe6,0xe4,0xf2,0xfe, + 0x24,0xad,0x00,0xf8,0x92,0xc9,0xca,0x77,0xc3,0x49,0x3a,0xbc,0x1c,0xc1,0xda,0x8b,0xce,0x95,0xc3,0xfe, + 0xee,0xfd,0xb7,0x55,0x96,0x5d,0x22,0x2f,0xde,0x0e,0x77,0x47,0x3a,0x0f,0xad,0x94,0xc9,0x2e,0xfc,0x85, + 0xfb,0x8d,0x0f,0xe4,0x87,0xac,0x37,0x82,0x7b,0x35,0xd1,0x9a,0xd1,0xa1,0xc4,0x1e,0x39,0xcf,0xaf,0x58, + 0xd8,0x4a,0xa8,0xb8,0xc5,0x49,0xa1,0x3e,0x2d,0x15,0x1d,0x92,0xda,0xc8,0x82,0x4f,0x6f,0xf1,0x12,0x83, + 0xd0,0x21,0x30,0xce,0x06,0x74,0xc1,0x9c,0x73,0xce,0xfe,0x43,0x7c,0x20,0x3a,0xe4,0xaf,0xe8,0x89,0x49, + 0x84,0xcd,0x81,0xc1,0xbf,0x66,0xdf,0x4f,0xbc,0x90,0x8c,0xbd,0xb1,0x00,0x81,0xd0,0x5c,0x0b,0xa5,0x83, + 0xa2,0xa3,0x9d,0x09,0xb7,0x26,0xf1,0xd4,0x4c,0x39,0x28,0xb9,0x13,0x0c,0x57,0xfc,0xc4,0x2b,0xd6,0xcf, + 0x32,0xd4,0x5d,0x2d,0x1d,0x16,0xdc,0xf0,0xf1,0xe9,0xe7,0x94,0xe5,0x54,0xea,0xb7,0x1b,0xe5,0x84,0xbb, + 0x88,0xef,0x45,0xff,0x45,0x04,0x65,0x7e,0x7d,0x1d,0xf3,0xc8,0x5c,0x42,0xf9,0x2f,0x1a,0x51,0x68,0xe4, + 0x9a,0x46,0x4b,0x0e,0xd5,0x0b,0xb1,0x7f,0x9b,0x09,0x31,0x48,0xc7,0x5f,0x4d,0x50,0x36,0xe3,0x01,0xca, + 0x3c,0xcc,0x7a,0x27,0x22,0xb0,0x3d,0x95,0xf3,0xe0,0xac,0x71,0x0e,0xcf,0xa0,0xfa,0x4b,0x84,0x8b,0xc1, + 0x7f,0x06,0x60,0x2f,0x23,0x93,0x46,0x30,0x00,0x8a,0xa9,0x7f,0xd9,0xaf,0xce,0xc5,0xb7,0x04,0x16,0x6f, + 0xdb,0x78,0x97,0xb7,0x0e,0xef,0xf2,0x76,0xe4,0x5f,0x72,0x4f,0x2e,0xc5,0xf1,0x3d,0x77,0x75,0xb7,0xaa, + 0xe4,0x21,0x55,0xf2,0xb0,0x85,0xf3,0x7d,0x58,0x71,0xbe,0x0f,0x99,0xf3,0xbd,0x14,0x48,0x7a,0x15,0x5d, + 0x6e,0xe1,0x56,0x54,0xff,0xaa,0xc7,0x3a,0xc2,0x95,0xc9,0xc3,0xeb,0xe8,0xa8,0xff,0xfa,0xfe,0x2b,0x62, + 0x11,0xad,0xbd,0xca,0x6b,0xb8,0x7f,0x46,0xc2,0xf0,0xf5,0xc8,0xd0,0xde,0xbf,0x94,0xe8,0xdf,0x25,0xd5, + 0xaa,0x43,0xdd,0x26,0xa0,0x92,0x70,0x6e,0x81,0xe5,0x3b,0x54,0x87,0xfa,0xc0,0x22,0xfe,0x07,0x2e,0x81, + 0x8b,0xca,0x5a,0x4c,0xd6,0x0f,0x61,0x65,0x30,0x26,0x5e,0x8a,0x17,0x20,0xfd,0x6d,0x3e,0xff,0x4a,0x6f, + 0xb4,0x10,0x6a,0x1f,0xb2,0xff,0xc2,0xe1,0x59,0xaa,0xde,0xa7,0x6a,0x37,0x55,0xef,0x52,0xf5,0x26,0x55, + 0x3f,0x66,0x03,0x23,0xcd,0x7f,0x9a,0x28,0x23,0x58,0xc3,0xb3,0xc0,0x53,0xe3,0xfa,0x6f,0x47,0xe2,0x7a, + 0x89,0x95,0xc5,0x2c,0xbf,0x1c,0xbc,0x48,0x24,0xba,0x19,0x0c,0x94,0x36,0xe1,0xd5,0x66,0x64,0x1c,0x2b, + 0x9f,0xa7,0xf0,0x62,0xfe,0x3c,0xdb,0xdb,0xb3,0x97,0x1c,0xdb,0xe1,0x45,0xe4,0x7e,0x9c,0x6a,0x1f,0xcf, + 0xe2,0xec,0x2c,0xf1,0x5c,0xf3,0x54,0xd1,0xc4,0xaf,0x0a,0xb3,0x94,0x5e,0x0b,0xd7,0xfa,0xac,0xea,0x7b, + 0xa1,0xa3,0x22,0xfe,0x8c,0x3e,0x68,0x7d,0x33,0xe3,0x3a,0xfd,0xfb,0x14,0x4e,0xd5,0xb0,0x3a,0xc9,0xa4, + 0x71,0x21,0x0a,0x21,0x92,0xb9,0x99,0xb7,0x61,0x1d,0x85,0x27,0xd9,0xdb,0xdb,0xe1,0x5f,0x62,0xc4,0xb4, + 0x9a,0xe5,0xe0,0x19,0x1c,0x1d,0xd9,0xc3,0xbc,0xd6,0xc3,0xef,0x1d,0x96,0x42,0x8c,0xba,0x26,0x5a,0x94, + 0xb4,0x09,0xc2,0x1f,0x13,0x79,0x76,0xbd,0x3d,0xd9,0x5a,0x09,0x5f,0x20,0xf0,0x9a,0xb1,0x3f,0x31,0x4a, + 0x9f,0x3f,0x25,0x90,0x81,0x79,0x46,0x73,0xc4,0xf6,0x8e,0xce,0xdd,0xd4,0x97,0xd8,0x71,0x41,0xa0,0x3d, + 0x79,0x3d,0x37,0x91,0x63,0xa3,0xa4,0x8a,0x22,0xab,0x9c,0x67,0xf6,0xeb,0xc8,0xaa,0xc5,0xdb,0xf3,0x6e, + 0xa6,0xfb,0x79,0x12,0xa8,0x6f,0xb2,0xeb,0x32,0x61,0x6c,0x22,0x95,0x25,0x14,0x09,0x2f,0xfd,0x2f,0x59, + 0x47,0xfe,0xa3,0x39,0xf9,0xe6,0xe3,0x39,0x74,0xf9,0x9f,0xb3,0x2f,0x70,0xbd,0x48,0xc0,0x43,0xb8,0x13, + 0x6e,0xce,0xd7,0xd6,0x5d,0x35,0x07,0x6d,0xaf,0xaf,0x4d,0x70,0xb5,0x35,0x97,0x7d,0x73,0x67,0x69,0x67, + 0x54,0xb4,0xa9,0x6f,0x9e,0xdf,0x7e,0xda,0x8c,0x01,0x58,0xa9,0x46,0xec,0x40,0xb5,0x9c,0x9d,0x58,0x6e, + 0x64,0x96,0x8d,0x7a,0xc5,0x20,0x11,0xf3,0xe9,0x6b,0xc3,0x07,0x3e,0x46,0x07,0x01,0xf0,0xa1,0xce,0xc9, + 0x97,0xe3,0x44,0xe3,0xfc,0x8a,0x97,0xbd,0x3d,0xfa,0xae,0x3f,0x00,0xd3,0x1b,0x88,0xd5,0xab,0xc0,0x9e, + 0x1a,0x7f,0x25,0x78,0x95,0xc0,0x9e,0xdf,0xa7,0x0a,0x3b,0x2b,0x14,0xb5,0xd8,0xe6,0xfc,0x68,0x5f,0x02, + 0xa6,0x32,0xc4,0x02,0xfc,0x06,0xe2,0x8b,0x40,0xab,0x96,0x88,0x0b,0x15,0x47,0xa0,0xce,0x01,0xea,0x4f, + 0x68,0x66,0x8a,0xf4,0x0c,0x9e,0x60,0x1f,0xa7,0x4b,0x28,0x47,0x46,0x5e,0x46,0xeb,0xa0,0x75,0xee,0xf8, + 0x4e,0x75,0x22,0x1f,0x10,0x2e,0xbe,0x91,0x04,0xe7,0x0f,0xe9,0xc0,0xcf,0xaa,0x6d,0x8f,0x23,0xee,0x35, + 0xf8,0x02,0xd7,0x7a,0xa8,0x5e,0x28,0xca,0x37,0xf0,0xce,0xdf,0x48,0x2c,0x06,0x79,0x28,0x2d,0xb7,0xea, + 0x17,0x6c,0x8d,0xb0,0x5f,0x34,0x66,0xd2,0xbf,0x71,0xc0,0x5b,0x1d,0x2d,0x06,0x37,0x75,0xb5,0x6d,0x82, + 0x68,0x2d,0x5f,0xdc,0x50,0x4c,0x0f,0xa4,0x75,0x98,0x6d,0x55,0xea,0x91,0x43,0xb5,0x22,0x6b,0x59,0x5c, + 0xcd,0x10,0xf0,0x6e,0xbc,0xb9,0x7f,0x0c,0x35,0x1f,0x08,0x6a,0xd8,0x30,0x4c,0x5b,0x77,0x41,0xd0,0x1c, + 0x17,0xe1,0x37,0x79,0x0e,0x67,0xb8,0x6a,0xbc,0x5c,0xda,0x67,0x00,0x97,0xc9,0x06,0x44,0x62,0x9e,0x9d, + 0xdb,0x59,0x9d,0xe2,0xdc,0xad,0xba,0x79,0xcc,0xbd,0xaa,0x9b,0xab,0x91,0xb6,0x75,0x71,0xeb,0xe6,0x6d, + 0x49,0x97,0xee,0xb6,0x24,0x5d,0x9b,0xb7,0xd1,0xe0,0x64,0x55,0xf0,0xbd,0x60,0x38,0x14,0xbb,0x36,0xa5, + 0xd3,0x45,0xb1,0x63,0xb4,0x51,0xbf,0x99,0x09,0xaa,0x5d,0xd6,0x8a,0xb5,0xdc,0x87,0xb4,0x66,0x42,0xd7, + 0xb4,0x05,0x6b,0x1a,0x8f,0xb7,0xd8,0x84,0x69,0xcf,0x59,0x2c,0x58,0x95,0x5b,0xfa,0xf6,0xe0,0x7e,0x8c, + 0xc2,0xff,0x80,0x84,0x90,0xc0,0xd6,0x8d,0xd9,0xaa,0x4d,0xc4,0xb0,0x36,0x50,0x3b,0xd0,0xf1,0x5b,0xdd, + 0x3a,0x44,0xf0,0x1f,0x19,0x8e,0xb0,0x1f,0x54,0xee,0x2b,0x9d,0x4b,0x33,0x4b,0x77,0xbb,0xb6,0xa3,0x95, + 0x40,0x40,0xdb,0x8f,0xfd,0x92,0xc0,0x33,0x0f,0x7b,0x1b,0xa8,0x3e,0x19,0x2f,0xab,0x4c,0xa1,0xd1,0xdc, + 0x99,0x2f,0xbf,0x02,0x45,0xe5,0x26,0x02,0xac,0x77,0x72,0x52,0x35,0xb7,0xef,0x75,0xad,0x5b,0xb9,0xae, + 0xb7,0xef,0xf5,0x63,0x16,0xc3,0x89,0x92,0x2d,0x3f,0x0f,0x62,0x27,0xc0,0xe9,0xb2,0x8b,0x03,0x02,0x8f, + 0x5e,0xb8,0xec,0xb2,0x2c,0x37,0x2c,0xfc,0x58,0xe4,0x1f,0xb8,0x80,0xd6,0x77,0x1f,0x92,0x62,0x0d,0x8a, + 0x96,0xc1,0x80,0x53,0xb8,0x0c,0x7e,0xf9,0xaf,0x84,0xcd,0x88,0x7c,0xb9,0x40,0x84,0x7d,0x65,0x4f,0x3b, + 0x9a,0xa1,0xa9,0xad,0xba,0x18,0x7d,0x9f,0x68,0xcb,0xa2,0x55,0xcd,0xd8,0x7d,0x8e,0x49,0x58,0x09,0x69, + 0x2a,0xb3,0x58,0x85,0x9d,0xc7,0x75,0x6a,0x23,0xe9,0x3a,0x84,0xef,0x01,0xb7,0x08,0xf2,0x04,0x74,0xf1, + 0x71,0x11,0xd7,0xb0,0x4e,0xa0,0x88,0x30,0x99,0x6b,0x1c,0xe5,0xcf,0xa2,0x58,0x9d,0x47,0x73,0x75,0x8e, + 0x21,0x10,0x46,0x9b,0xe1,0x77,0xbd,0x3e,0xc7,0x5c,0xf0,0xab,0xd0,0x77,0x3b,0x7f,0xb0,0x34,0xc1,0xdf, + 0x99,0xb7,0xf9,0x7c,0x6d,0x4b,0x35,0x2e,0x3d,0x2b,0x16,0x5c,0x00,0x6b,0x1a,0xcd,0x9b,0x40,0x22,0x06, + 0x23,0x63,0x1e,0xbb,0x97,0xaf,0xca,0xfd,0x94,0x35,0xf7,0xd3,0xba,0xf3,0x06,0x0d,0x05,0xc0,0x9b,0xcf, + 0xfc,0xa9,0xf2,0xe2,0x29,0x41,0xf5,0x8f,0xa2,0x5e,0xe1,0xa0,0xc2,0xc4,0xc9,0x89,0x78,0xe9,0x75,0x3f, + 0x96,0x9b,0x40,0x19,0xf0,0x41,0x63,0x69,0xb6,0x9f,0x8b,0x29,0x80,0x08,0x3c,0xfe,0xf0,0x2b,0x61,0xd5, + 0x4a,0x04,0xa6,0xaa,0xe6,0x51,0x78,0x01,0x1f,0xec,0xcf,0x20,0x8d,0xe1,0xe6,0x9f,0x88,0xc6,0xc8,0x24, + 0x50,0x9c,0x26,0x18,0x0b,0xa3,0x87,0x41,0x9a,0x4e,0x9f,0x42,0x23,0x8c,0xd0,0x62,0xb3,0xab,0xb4,0x64, + 0x8b,0xa8,0xdc,0x54,0x64,0x73,0x2e,0x4c,0x8b,0x3a,0x27,0xf4,0xf9,0xef,0x14,0x93,0x02,0x78,0xd4,0x78, + 0x83,0x2f,0xf4,0x1d,0x04,0x03,0x0c,0x1b,0xf4,0xc5,0xa4,0xaf,0xf3,0x6f,0xe6,0x62,0xc5,0x18,0xf3,0x07, + 0xc2,0x2b,0x95,0x42,0x45,0xf8,0x5b,0xaa,0xaa,0xb7,0xef,0xa0,0x1c,0x1c,0x5e,0x09,0x92,0xf9,0x77,0xda, + 0x86,0x58,0x1a,0x96,0xed,0x8c,0x1f,0x5c,0x23,0x11,0x59,0x3a,0x09,0x94,0xbb,0x88,0x33,0x04,0xc1,0x6d, + 0x77,0x87,0xc4,0x85,0x16,0x45,0x72,0x61,0x1d,0x17,0x8a,0x91,0xa8,0x11,0x3e,0xa7,0x6d,0x68,0x8b,0x3d, + 0xaa,0xe6,0xf5,0x9c,0xe0,0xb3,0xe3,0x6a,0xd7,0x2c,0x89,0x2d,0x5a,0xde,0xb7,0x5c,0xf9,0xd2,0x88,0x1e, + 0xc7,0x51,0x3a,0x5c,0x8e,0xfa,0x63,0x89,0x1f,0x8d,0x5e,0xec,0x44,0x63,0x11,0xbe,0x83,0x33,0xd0,0x3b, + 0x79,0x5c,0xdf,0xc9,0x84,0x3c,0x2e,0x70,0x23,0xe2,0x01,0xb6,0x73,0x6b,0x2d,0x9a,0x0d,0x39,0xdf,0x28, + 0x1a,0x2b,0x2a,0xa1,0xb7,0xf3,0xb8,0x7d,0x3b,0xc7,0x01,0xe4,0x1e,0x8e,0x37,0xf1,0x15,0x3a,0x3c,0xc7, + 0x9f,0x29,0x75,0x75,0x5a,0x49,0xc0,0xa6,0xa6,0xab,0x8b,0xa8,0x18,0x4e,0x47,0xfd,0xc5,0xd6,0x3e,0x88, + 0x95,0x4e,0x23,0x9a,0x35,0x5a,0x30,0xb9,0x7f,0x96,0x94,0xdf,0xe4,0x2b,0x16,0xb3,0x3d,0x9a,0xa7,0x04, + 0x60,0x3f,0xd3,0x5c,0xc3,0x0f,0xfb,0x70,0xc1,0x5d,0x1c,0xac,0xa4,0xd7,0x8b,0x20,0x9c,0x9b,0xa7,0x8d, + 0xb6,0xc0,0x5d,0x10,0x76,0xf6,0xc5,0x17,0x00,0xb1,0xfb,0x3a,0x3a,0x19,0xf3,0x4e,0x93,0x68,0x6e,0x5d, + 0x95,0x98,0x1c,0x39,0x9d,0xfe,0xae,0x77,0x8e,0x2d,0xfb,0xeb,0x76,0x4f,0x03,0xb6,0x2d,0x68,0x71,0x00, + 0xbb,0xd4,0x1c,0x75,0x98,0x8f,0x86,0xa6,0x9a,0x5c,0x63,0xd1,0xec,0x02,0x8a,0x4a,0xcc,0xd9,0xa3,0x41, + 0xde,0xfa,0xe7,0x67,0x03,0x2f,0xef,0x02,0x11,0x9f,0xf7,0x59,0xd9,0xb2,0x6f,0x4c,0x2c,0xb4,0x25,0xd3, + 0x2c,0x5e,0x3e,0xa7,0x74,0xbf,0xd4,0x06,0xfa,0x2a,0x11,0x72,0xd9,0xa8,0x18,0x7e,0x60,0x36,0xc1,0xbc, + 0xfd,0x56,0x7b,0xfb,0xb7,0x71,0xf8,0x0f,0xe7,0x1d,0x73,0x42,0x95,0x96,0xc1,0x83,0x6e,0x7e,0x2f,0x9f, + 0x4e,0x97,0x49,0xf9,0x7d,0x92,0x9e,0xcd,0x4a,0xa7,0x54,0x53,0x69,0x51,0xd6,0x8f,0xe7,0xb8,0x72,0x21, + 0x86,0x9e,0xc0,0xb6,0x92,0x69,0xa7,0xfe,0x2e,0x88,0x37,0x38,0x3f,0xeb,0x59,0xbd,0x9f,0xa8,0xe8,0x39, + 0x0a,0x52,0x3a,0xa5,0x02,0x8c,0xc7,0x9a,0x98,0xe0,0xa0,0xd3,0xdb,0x5c,0xce,0x4f,0x29,0x3c,0x81,0xf2, + 0x74,0x55,0x11,0x07,0x3b,0x10,0xf9,0x5c,0x11,0x7d,0xbc,0x73,0x60,0x9b,0xd9,0xd5,0x81,0x3b,0x25,0x6a, + 0x90,0x89,0xd7,0x15,0xb0,0x17,0x5d,0x01,0x8c,0xad,0x8a,0x59,0xe7,0xc1,0xd4,0xcd,0x70,0xf2,0x4e,0xba, + 0xcf,0x66,0xea,0x60,0x9c,0xb4,0x8b,0xb6,0xf0,0x4a,0x4f,0x7e,0x83,0x2f,0xc7,0xa1,0xfe,0x34,0xb5,0x22, + 0xc1,0xea,0x54,0xd7,0xd9,0xeb,0x48,0x5e,0x27,0x1a,0xa3,0xd4,0xde,0x18,0x17,0x66,0x2c,0xb5,0x09,0x68, + 0xad,0x9d,0x93,0x9e,0x01,0x03,0x27,0x63,0x5b,0x6a,0xeb,0xea,0x9c,0x24,0xa2,0x0b,0x15,0xa8,0xf7,0x7a, + 0x01,0xb2,0x56,0xaa,0xd9,0x3a,0xc5,0xa8,0x29,0x47,0x64,0x86,0xb3,0x7b,0x94,0xf8,0x59,0xcd,0x21,0x11, + 0x67,0xad,0x69,0x5c,0x19,0x38,0xd2,0x83,0x89,0x58,0x2c,0x66,0x57,0x76,0x03,0x2b,0xf1,0x27,0x7c,0x61, + 0x3f,0x4d,0xcf,0x7a,0x4e,0x64,0xdc,0xe8,0xcf,0x42,0x55,0x1f,0x6a,0x31,0x79,0xa3,0x65,0xda,0xfa,0x09, + 0x42,0xb5,0xe8,0x77,0xb7,0x58,0x23,0x26,0x6f,0xf4,0x73,0x59,0x2b,0x58,0x0f,0xe2,0xbb,0x15,0x23,0xe5, + 0xc7,0x8a,0x62,0xc3,0x4a,0x2d,0x61,0xca,0x50,0x5f,0xbb,0xa8,0x19,0xde,0x56,0xa3,0x5a,0xa8,0xe8,0x9b, + 0xb5,0xe4,0x17,0x6d,0x7d,0x7c,0x93,0x25,0x02,0x5b,0x53,0x6b,0x6c,0xbc,0xef,0xc1,0x54,0x7b,0xc0,0xc5, + 0xd9,0x81,0x79,0x65,0xf1,0x6b,0x95,0xfd,0x20,0xd9,0xae,0x0f,0x02,0xbe,0x90,0xaf,0xcd,0x6a,0x8c,0x24, + 0xa4,0xce,0x83,0xed,0xd2,0x7a,0x4b,0x24,0x6e,0xc0,0xa6,0x8d,0xba,0x80,0x61,0xa5,0x75,0xa1,0x68,0xa9, + 0x2e,0x62,0x86,0x83,0xfa,0x37,0xc7,0x88,0xfd,0x87,0x94,0xad,0x26,0x1d,0xd7,0x25,0x06,0x61,0x42,0xa9, + 0xf0,0x97,0x34,0x3c,0xab,0x7f,0x16,0x57,0x74,0xed,0x91,0xb2,0xb6,0x15,0xe5,0xe1,0xbd,0x27,0x71,0x7d, + 0x83,0xcb,0xe1,0xcd,0x3c,0x59,0x23,0x2d,0xca,0x0a,0xf1,0xfd,0x52,0x0f,0x83,0x5d,0x99,0xb8,0x1b,0x0f, + 0x83,0x35,0x0e,0x52,0x7b,0x72,0xaa,0x9c,0x8e,0xf8,0x62,0xba,0x71,0x66,0xf5,0x87,0x14,0x22,0xfc,0x2a, + 0x6d,0xb1,0xe6,0x38,0x85,0xd9,0xf6,0xc0,0x5d,0xd6,0x3d,0x70,0x1b,0x87,0xc2,0x50,0x83,0xa2,0xa9,0xf8, + 0x06,0xcb,0x6f,0x9c,0xdf,0x43,0x9f,0xff,0x49,0xe5,0x91,0xc0,0x77,0xfa,0xf4,0x06,0x4a,0x21,0x12,0x06, + 0x7b,0x6f,0xef,0x59,0x86,0x7f,0x3d,0xb8,0xd1,0x02,0xdd,0x06,0x55,0xe6,0x27,0xb0,0xcb,0x38,0x94,0x8d, + 0xf9,0x2c,0x55,0xbf,0x43,0x99,0xf2,0xea,0xf8,0xca,0xf7,0x07,0x61,0x6f,0x7d,0x9c,0x05,0xdd,0x41,0x70, + 0xbc,0x39,0xde,0x1c,0x9c,0xa9,0xef,0xa0,0xfd,0xbe,0xdf,0xfb,0xa2,0x3b,0xf8,0x6b,0xf7,0x6a,0xe3,0x07, + 0xeb,0xe1,0xf1,0xe8,0xf8,0xe0,0xf8,0x78,0x44,0xdf,0xfe,0x6c,0x57,0x61,0xe7,0x23,0xc4,0x68,0x6f,0x7f, + 0x97,0x2a,0xef,0xf8,0x78,0x77,0xcf,0x63,0xf3,0x65,0x28,0x9a,0x6f,0x7f,0x71,0x67,0x57,0xfc,0xa5,0xf8, + 0x49,0xd7,0xd3,0x9d,0x91,0xde,0x78,0xdd,0x4c,0x79,0x67,0x90,0x04,0xaa,0x3f,0x60,0xe6,0xc7,0xe2,0x7d, + 0xf8,0x34,0x0d,0x87,0x9e,0x23,0xf7,0xf7,0x46,0xca,0xa2,0xec,0x86,0x99,0x07,0x40,0x04,0xae,0x15,0x8b, + 0x4c,0xa3,0xc8,0x54,0xe4,0x35,0x62,0x70,0xdb,0x17,0xc1,0x96,0x53,0x55,0xf4,0xc3,0xab,0x17,0x3f,0x51, + 0x02,0x00,0x1b,0x31,0x1c,0x33,0xe3,0xc6,0x3c,0x2a,0x9c,0x82,0x70,0x94,0x0b,0x51,0x0a,0x94,0x62,0x90, + 0xf0,0x4d,0xca,0x04,0x47,0x54,0x60,0xf9,0x93,0x0c,0xee,0x59,0x5b,0xb8,0x4f,0xcf,0x73,0x54,0xfb,0xab, + 0x26,0x71,0x59,0xd6,0x8d,0xdc,0xf1,0x84,0x5e,0xb7,0x96,0xa3,0xeb,0x29,0x58,0x69,0xd6,0xda,0xd2,0xa5, + 0xc6,0x36,0xbf,0xfb,0x51,0x0a,0x24,0x44,0x17,0xff,0x47,0xfb,0xb4,0xf1,0x15,0xc9,0xe7,0x4f,0x1b,0xa3, + 0xff,0xc6,0xb4,0x71,0x55,0xcd,0x69,0x7b,0x9b,0x62,0xe6,0xea,0x53,0x27,0x85,0x9d,0xa9,0xe3,0x84,0xbf, + 0x3b,0x75,0xdc,0x6c,0x6d,0xea,0x38,0xc5,0x99,0x3a,0x7e,0x37,0x53,0xe7,0xb6,0x65,0x4b,0x21,0xbf,0x2f, + 0x05,0xaa,0xaf,0x5d,0x58,0x1d,0xc8,0xe4,0x95,0x39,0x5f,0x36,0xc1,0xf2,0x8f,0xad,0x40,0x61,0x4e,0x99, + 0xcf,0xb5,0x55,0xa3,0x98,0xee,0x69,0x6b,0x4c,0xb1,0x30,0x4c,0x97,0x8c,0x99,0x71,0xf5,0x44,0x43,0x71, + 0xec,0x45,0x6b,0xa6,0x8f,0x62,0x20,0x79,0x79,0x0a,0xb7,0x43,0x49,0x2e,0x36,0xd3,0xda,0xc2,0x11,0xe6, + 0x9f,0x25,0x4c,0x3b,0x8d,0x98,0x73,0xc1,0x26,0x8e,0x30,0x0f,0x64,0x43,0x47,0x31,0x7d,0x2c,0x74,0x4d, + 0xd8,0x5c,0xd2,0xc3,0x56,0x13,0x54,0xe9,0x72,0x65,0x6c,0xc8,0x16,0x93,0xad,0x86,0x95,0x68,0xb6,0x6e, + 0xd9,0xc8,0xb6,0xa8,0xda,0x10,0xd5,0x58,0x52,0x6e,0x59,0xa4,0x6a,0x1b,0x57,0x36,0xb1,0x6c,0xb1,0x70, + 0x45,0x5f,0x8d,0xfd,0xab,0xb4,0x43,0x93,0xc5,0x76,0xb5,0xda,0x06,0x13,0x77,0x19,0xc6,0x78,0x92,0xa7, + 0xa9,0x69,0x8e,0x29,0xd3,0x26,0xe6,0xa9,0x7a,0xf2,0xc4,0x90,0xc2,0x98,0x5a,0x56,0x56,0xa0,0x8d,0x29, + 0x62,0xcb,0x5c,0x9a,0x28,0x9e,0x6b,0xa8,0x01,0xe6,0xd1,0xc1,0x5f,0xc7,0xcb,0x2f,0xfc,0x21,0xfd,0xf5, + 0x6e,0xdd,0x7f,0x70,0x7c,0x10,0x8d,0xba,0x01,0xe1,0x1a,0x24,0x46,0x01,0xfe,0x0e,0x42,0x8f,0x3e,0x7b, + 0xa3,0x2f,0x08,0xed,0xac,0x6f,0xd1,0xe3,0x2d,0x7a,0xbc,0xd5,0x5d,0xeb,0x32,0xd1,0xfd,0x07,0xff,0x49, + 0x45,0x82,0x60,0x70,0xa0,0xd2,0x3c,0xf2,0x86,0xf1,0xfe,0x87,0x87,0xfb,0x7f,0x9e,0x8c,0x86,0xc7,0xc7, + 0x97,0xc7,0xc7,0xfb,0xc7,0xc7,0xbd,0xd1,0x17,0x9e,0xca,0xe9,0x13,0x70,0x98,0xd7,0x4d,0xf3,0x2e,0x61, + 0xba,0x30,0x18,0xc8,0x63,0xe0,0xa9,0x38,0x8f,0x1c,0x64,0xe7,0xfd,0x75,0xdf,0xeb,0xe6,0x39,0x71,0x68, + 0xa6,0x73,0xc7,0x07,0x83,0xe0,0xc1,0x01,0xad,0x4b,0x23,0xdb,0xf1,0xf1,0x01,0x72,0x76,0xbd,0xe1,0x5f, + 0x0f,0x46,0x5f,0x3c,0xa0,0xf1,0xac,0x50,0xe4,0xfe,0xce,0xe3,0x17,0x8f,0x5e,0xff,0xf1,0xf2,0x49,0x07, + 0xe9,0xdd,0x07,0x07,0xa9,0x9a,0x4b,0x3a,0x2c,0x78,0xa6,0xf2,0x78,0x3c,0x3c,0x50,0x8b,0x1c,0x77,0xc7, + 0xde,0x3b,0xcf,0x62,0xe1,0x83,0x77,0x7e,0x8f,0x06,0x72,0xa6,0xea,0x5b,0x9e,0x32,0x7a,0x60,0xee,0x13, + 0x7d,0xf5,0x32,0xcb,0xd5,0x45,0x4e,0xac,0xb4,0x3a,0xcb,0xd5,0xfb,0x5c,0x9d,0xe4,0x04,0x44,0xea,0x32, + 0x57,0xbb,0xb9,0x7a,0x97,0xab,0xb7,0xb9,0x7a,0x94,0xab,0x87,0x0c,0x82,0xda,0x7e,0x57,0x1b,0x46,0x9b, + 0x5b,0x0f,0x3e,0x04,0x5f,0xe5,0xb8,0x39,0x7e,0x4d,0x7f,0xbd,0xbd,0x79,0xd9,0xf7,0x42,0xef,0x3e,0x6d, + 0xca,0xbd,0x33,0x7e,0x7c,0x80,0x47,0xc0,0x27,0xbd,0xdc,0xf2,0x6e,0xd1,0x4b,0x7c,0xbe,0xc0,0x87,0x3d, + 0x7c,0xf8,0xc7,0xd1,0x21,0x9e,0x8f,0x33,0x7e,0xf9,0x9a,0x9f,0x4b,0x6f,0xa3,0x5e,0xd0,0xd8,0xf6,0x68, + 0x92,0x89,0x01,0x3e,0x2b,0xd7,0x28,0xbe,0xa6,0x62,0x41,0x9f,0x06,0xf4,0xa6,0xf5,0xd3,0x9a,0x6a,0x5a, + 0xff,0xe3,0x6b,0xce,0xf1,0x84,0x3b,0x0c,0xcd,0x87,0x7a,0x3f,0x9f,0xe6,0xed,0xa4,0x05,0x9d,0xc1,0x4f, + 0x72,0xf1,0xa1,0x70,0xcc,0x72,0x96,0x04,0x9e,0x8b,0xd4,0x8f,0x98,0xdf,0x7f,0xad,0xff,0xba,0xd8,0xcf, + 0xb3,0xf0,0x40,0x7d,0x8b,0xd7,0x8b,0xfd,0x35,0x92,0xe8,0xf5,0x31,0xbd,0xfa,0xbd,0x2f,0xe8,0x40,0x5d, + 0x76,0xa9,0x37,0x69,0xb6,0xce,0xa7,0xfc,0xdc,0xfb,0x22,0x38,0x50,0x3f,0xd1,0x57,0x45,0x70,0xa5,0xe8, + 0xb8,0x1d,0x11,0x94,0x51,0x0e,0xf7,0x35,0x18,0xec,0x1e,0xa8,0x97,0x0c,0x15,0xfe,0xfa,0x38,0xd8,0xa5, + 0x4e,0x3f,0xcf,0xd9,0x3c,0xec,0x0b,0x7a,0x51,0x3f,0xe3,0x4b,0x88,0x96,0x59,0xf4,0x7c,0xa0,0xbe,0xa1, + 0x84,0xe3,0xde,0xf0,0xaf,0xde,0xa8,0x4b,0x59,0x7f,0xc9,0x5b,0x8d,0x77,0xfc,0x67,0x69,0xf4,0x2c,0xbd, + 0xc1,0x50,0x29,0xa8,0xb4,0x21,0xa2,0x52,0x3d,0x4b,0x5d,0xe3,0x44,0x3a,0x84,0xbf,0x47,0xcb,0xef,0xce, + 0xe7,0xd9,0x32,0xfc,0xe9,0xd5,0xf1,0xa4,0x7b,0xa0,0x7e,0x45,0x0a,0x3f,0x53,0x3f,0x3e,0xe4,0xd1,0xf0, + 0x8f,0x94,0xce,0x1c,0x75,0x45,0xd3,0xfb,0xfa,0x23,0x67,0x8b,0xc8,0x92,0x8c,0x57,0x09,0xb9,0x1a,0x32, + 0x2c,0x0c,0x5f,0xee,0x3f,0x8f,0x17,0x2c,0x92,0x1d,0x7a,0x17,0xfb,0x7c,0x99,0xe2,0x8d,0x20,0x9d,0xc5, + 0x2b,0x0f,0x1a,0x04,0xa1,0x37,0x5a,0xaf,0x29,0x45,0x3f,0x1b,0xd5,0x50,0x7d,0xda,0x70,0x22,0x3c,0x77, + 0xc9,0xc9,0x75,0xb1,0x9f,0x4e,0x65,0x99,0xf3,0x28,0x1d,0x78,0x54,0x17,0xed,0x4a,0x6c,0xca,0x90,0x58, + 0xc4,0x38,0x12,0x9a,0xdc,0x64,0xc5,0x75,0xae,0xb6,0x5b,0xae,0xa5,0xd9,0x3a,0xc6,0xd1,0x1f,0x6c,0x3f, + 0xf2,0x1d,0xb4,0x52,0x54,0x92,0x40,0x96,0xc5,0x0d,0x2a,0x71,0x9d,0x71,0x9a,0xbf,0xa3,0xb6,0x7f,0x47, + 0x3a,0xb1,0x4d,0x63,0xd0,0xb0,0x63,0x42,0xd0,0x9a,0xdc,0xeb,0xa5,0x53,0xc2,0x11,0x5e,0xb7,0xa0,0xf6, + 0x69,0xf8,0xb7,0x4c,0x91,0x5b,0xb4,0xc9,0xd5,0x9f,0x28,0x74,0x95,0xbc,0x5b,0x84,0xc8,0x27,0xf8,0x3b, + 0x1c,0xeb,0xfd,0xb8,0xd2,0xed,0x52,0xa7,0x56,0xe8,0x14,0xcd,0xae,0x74,0x28,0xe1,0x04,0xdd,0x85,0x22, + 0x9e,0xa4,0xb9,0xb4,0xbf,0x42,0xfb,0x55,0x95,0x6e,0xab,0x9c,0x8b,0x9b,0x94,0x36,0x56,0xba,0x8d,0xb9, + 0x6e,0xc3,0xf8,0x2c,0x4a,0xfc,0x79,0xb3,0x29,0x4a,0x90,0x49,0x87,0xf1,0xc3,0xef,0x78,0xaf,0xb5,0x92, + 0xea,0x1a,0xe7,0x70,0x8f,0x3f,0x18,0xf7,0x30,0x75,0x08,0x45,0x07,0x4a,0x47,0xde,0x68,0x02,0xe0,0x84, + 0x1a,0x9c,0xdd,0x48,0xfd,0x46,0x98,0x81,0x8a,0x11,0xc7,0x00,0xb0,0x83,0xfc,0xde,0xdc,0x70,0x7f,0xc8, + 0x55,0xc5,0x4a,0x84,0xfa,0x52,0xed,0xa6,0x6b,0x34,0xf7,0x0e,0x35,0x17,0xd8,0x62,0xef,0x7e,0x06,0xac, + 0xf8,0xee,0x55,0xdc,0x1b,0x5a,0x5e,0xc4,0xca,0xd0,0x13,0xad,0xcc,0xa5,0x74,0x68,0xdd,0xea,0xfe,0x32, + 0x0f,0x76,0xda,0x5b,0xbe,0x85,0x9f,0xdd,0x5d,0xe3,0x81,0xe3,0xd7,0x78,0xde,0x89,0x3a,0x8d,0xc8,0xea, + 0xfa,0x4a,0x41,0x2e,0x31,0x77,0xd9,0x81,0xac,0x8e,0xd8,0x68,0x2f,0x34,0x6d,0xe5,0x79,0x65,0x1e,0xdf, + 0x33,0x95,0x6e,0x02,0xdc,0x81,0xfa,0x6e,0x1e,0xb4,0x7a,0xc1,0x6d,0x79,0x27,0xe2,0xee,0x05,0x2a,0x41, + 0x79,0x67,0x40,0xc5,0x24,0xa1,0x13,0xd2,0xa3,0xbe,0x7a,0x93,0x0a,0x6f,0x75,0x7d,0x8e,0xc1,0x20,0x76, + 0xf4,0x03,0xef,0x24,0xf3,0xe9,0x3b,0xf6,0x00,0xfd,0x40,0x48,0x44,0x20,0xe0,0xf5,0x33,0xf7,0x46,0x13, + 0x0a,0xf4,0x5d,0xaf,0xe3,0x75,0x63,0x58,0x1b,0x7b,0xf5,0xbe,0x9b,0x4b,0x55,0x6a,0xb4,0x3e,0x01,0x61, + 0xfd,0x9d,0xf0,0xa5,0x17,0x58,0xae,0x88,0xcd,0x76,0x2a,0x9b,0xd0,0x0a,0x0f,0xe4,0x84,0x61,0xed,0xf6, + 0xa1,0xf7,0xf8,0xba,0x29,0x77,0x06,0x41,0x4b,0x2c,0xfb,0x5d,0xe6,0x20,0x58,0xaf,0x3d,0xb4,0x83,0x3d, + 0xad,0xf1,0x40,0xb1,0x4a,0xf6,0xab,0x8f,0x78,0xf5,0x68,0x5b,0xcb,0xc7,0x69,0x8c,0x5d,0x5d,0x7d,0xe5, + 0x77,0xaf,0xff,0x1f,0xa5,0xcc,0x80,0x38,0xc1,0x51,0x5e,0xdd,0x94,0xc4,0xeb,0x12,0x55,0x19,0x0c,0x4e, + 0x52,0x79,0x52,0xb4,0x85,0xba,0xcc,0x87,0x7b,0x5d,0x5f,0xea,0x47,0xdf,0x07,0x5e,0xa8,0x73,0xd2,0xf4, + 0x86,0x27,0xff,0xb6,0x99,0x63,0x24,0x05,0x08,0x7f,0xe6,0x4e,0xb3,0x27,0x50,0x14,0x47,0x92,0x6d,0x17, + 0xdc,0x6b,0x6d,0xb2,0x29,0x69,0x1c,0x21,0xb9,0xa7,0xfb,0x35,0xf0,0xa5,0x2e,0x34,0x43,0x1c,0x42,0x8b, + 0x31,0x2c,0x55,0xa7,0x91,0xe2,0xee,0xee,0x05,0x55,0xec,0xcb,0x92,0x4b,0x7f,0xbd,0x30,0x0f,0xb8,0xa1, + 0x34,0xa2,0x91,0x50,0x56,0x7a,0xbc,0xe0,0x4a,0xdc,0x46,0x82,0x2b,0xca,0x70,0xff,0x90,0xd1,0x25,0xf5, + 0x8b,0x3a,0x60,0xc3,0x6d,0x0f,0x29,0x3f,0x21,0x5d,0xd1,0x95,0xa3,0x5c,0x34,0x01,0xb5,0x6c,0xc6,0xfd, + 0x0b,0x7d,0x0a,0x4c,0x99,0x2a,0x9d,0x52,0xbb,0x47,0xd0,0x23,0x90,0xf2,0x16,0xbe,0x76,0xc7,0x0c,0x87, + 0xde,0xa7,0x41,0x8b,0x60,0xba,0xff,0x22,0xa8,0x6c,0x2d,0xb7,0xb3,0x58,0x3e,0x95,0xd9,0x9a,0x34,0x84, + 0x6e,0xa8,0xaf,0x1e,0x77,0x3e,0xff,0x14,0x10,0x07,0x08,0x3a,0x3a,0x21,0xd7,0x62,0x95,0x06,0xbe,0x22, + 0xbc,0xc6,0xfe,0xe3,0x71,0x7a,0x49,0xd4,0x60,0xf8,0xdd,0xd6,0xe3,0x42,0x00,0x24,0xd8,0x71,0xd3,0xb1, + 0xb4,0x23,0xb3,0x82,0x4e,0x41,0xb7,0x4f,0xad,0xa2,0x7c,0x60,0x7a,0x19,0xea,0x0f,0xd0,0x41,0x1b,0x9c, + 0xa6,0xa1,0xee,0x95,0x9a,0x47,0x8d,0x6d,0x2d,0xf3,0xd3,0x07,0xba,0x6e,0xff,0xa6,0xad,0xc6,0xe1,0xb1, + 0x44,0xf2,0xf0,0x04,0xcd,0x79,0x66,0xfa,0x72,0x67,0xc5,0x33,0x32,0x0f,0xfa,0x63,0xca,0x40,0xa7,0x1d, + 0xc0,0xaa,0x56,0x8f,0xd6,0x33,0xb1,0x97,0x94,0x7d,0xaf,0x3b,0x0d,0x94,0xac,0x84,0xb4,0xaf,0x3c,0xb3, + 0x7f,0xf4,0x6c,0xaf,0xd4,0xb4,0x92,0xac,0xf8,0xcb,0xf5,0x1a,0x0a,0xd3,0xb2,0x0e,0xa7,0xf3,0x15,0x9d, + 0x4e,0x5e,0xfd,0xea,0xca,0x33,0xe6,0x82,0xd5,0x42,0xec,0xbc,0xc9,0xea,0x62,0x42,0xc2,0xa4,0xad,0xb8, + 0xdf,0xde,0xc2,0x32,0x8d,0xb8,0xc5,0x18,0x5f,0x88,0x06,0x83,0x74,0xd7,0x21,0x91,0x00,0x3c,0x4b,0x74, + 0x5b,0x72,0x70,0xe7,0x37,0xcc,0xf3,0x7c,0xbc,0x0a,0x4b,0x74,0xb5,0x56,0xb0,0x21,0xc6,0xf2,0x25,0xd1, + 0x53,0x71,0x9b,0x4b,0x0a,0x10,0xb2,0xda,0x01,0x17,0x84,0x95,0xc4,0x15,0x21,0x5f,0x49,0x54,0x7b,0x25, + 0x27,0x0d,0xff,0x2c,0xe0,0x70,0xe7,0x9b,0xe4,0xc7,0x64,0x5a,0xbe,0x58,0x24,0x19,0xb2,0x24,0xb9,0xaa, + 0x4d,0x45,0xb8,0x4c,0x55,0x43,0x16,0x1a,0xfe,0x5c,0x2a,0x47,0x78,0xf0,0x21,0x27,0xfe,0x61,0xb2,0x1a, + 0xb7,0xab,0xdc,0x70,0x2c,0x47,0xde,0xe5,0x26,0x40,0x96,0x09,0xf9,0x17,0xb0,0x47,0x88,0xde,0x9b,0x3c, + 0x25,0x30,0x51,0x98,0x91,0x7f,0xb7,0x93,0xa8,0x1d,0x38,0x7a,0x01,0xb4,0xf3,0x99,0x0d,0xf8,0x87,0x64, + 0x5d,0x99,0x9d,0xa0,0x88,0x77,0x49,0x33,0xed,0xce,0x43,0xd9,0x8b,0x31,0x89,0x2e,0xd4,0xf5,0xcb,0x01, + 0x76,0x6c,0x09,0xcf,0xa8,0x10,0x18,0xfd,0x60,0x59,0xbe,0xe3,0xcb,0xdd,0x93,0x51,0x77,0x7d,0x4c,0x14, + 0x76,0x30,0xfa,0x62,0x70,0x1c,0x80,0xdd,0x8b,0x1e,0xac,0xff,0x32,0x3d,0xa0,0xd7,0x63,0xff,0x40,0x3d, + 0xd3,0x25,0x86,0xc4,0xd6,0x11,0x73,0x77,0xb2,0x3b,0x42,0xd1,0x11,0x38,0x43,0xa2,0xae,0x1b,0x89,0xeb, + 0xe3,0xe1,0x2d,0xa2,0xef,0x6f,0x8d,0xe8,0xc1,0xa3,0x07,0x0f,0x0f,0x44,0x06,0xe3,0xa7,0x99,0x77,0x14, + 0x7c,0x41,0xd5,0x12,0xe5,0xfe,0x3b,0x48,0x9d,0xe5,0x38,0xbc,0xfd,0x15,0x9c,0x19,0x85,0x5f,0x8b,0x9a, + 0x45,0x78,0x74,0x47,0xc9,0x7c,0xdf,0xb9,0xad,0x56,0x8b,0xf0,0xce,0x3f,0x89,0x43,0x9e,0x96,0xe1,0x9d, + 0xaf,0x54,0x81,0xdb,0x93,0xf0,0xce,0xd7,0x0a,0x5e,0xb0,0xc3,0xbb,0x87,0x4a,0x2e,0x30,0xc3,0xe1,0x3f, + 0xd5,0xdd,0x2f,0x89,0x09,0xf9,0x2e,0x6f,0xf3,0xcb,0x05,0x94,0xd3,0x2d,0x09,0x78,0x1c,0x9f,0x59,0x7d, + 0x62,0x9b,0xfe,0xcc,0x21,0x0c,0x22,0x78,0x30,0x9b,0x1a,0x2f,0x00,0x90,0xf8,0x2c,0x16,0x11,0x62,0x1f, + 0x1a,0x15,0xfc,0xcd,0xe6,0xd1,0xef,0x8f,0xe5,0xc2,0x91,0xb3,0x20,0x2e,0x59,0xf8,0x5d,0xee,0xd7,0x71, + 0x43,0x87,0x30,0x4e,0x47,0xa7,0x8c,0x57,0x05,0x16,0xe9,0x35,0x7f,0xf0,0x20,0x5c,0x2d,0xe6,0x5c,0x62, + 0xc7,0x64,0xa0,0x84,0x67,0xd0,0xd0,0x55,0xec,0x3b,0xb4,0xf6,0x8d,0x53,0xe4,0x63,0x3c,0xaf,0x7f,0xa2, + 0x77,0xf9,0x00,0x79,0x41,0xed,0x0b,0x12,0xe4,0x13,0xcf,0x1d,0x3e,0xdd,0x12,0xaf,0x50,0xb7,0x40,0x18, + 0x49,0xae,0xce,0xde,0x9e,0xe9,0xa1,0x7c,0xe3,0x3e,0x1f,0xa2,0xbe,0x74,0x32,0x99,0x27,0x9f,0x55,0xec, + 0x08,0x72,0x05,0x5e,0x9f,0xcf,0x29,0x75,0x1b,0xf0,0xff,0x07,0x2d,0x04,0x71,0x8d,0x4d,0x7f,0x2c,0x70, + 0x03,0x57,0x45,0xb5,0x6b,0x59,0xd8,0x93,0x33,0x59,0x58,0x55,0xc3,0x10,0x84,0x20,0xb6,0x74,0x90,0x4c, + 0x75,0x1c,0x3e,0xaf,0xb2,0x16,0xaa,0x6a,0x3a,0xa5,0x9a,0x32,0xaa,0xe9,0x16,0xe4,0x5f,0xb4,0xdf,0xba, + 0x60,0xbe,0xab,0x5a,0x71,0xf6,0x39,0x94,0x34,0x1c,0x1d,0x55,0xea,0x88,0xb8,0x0c,0x1b,0x08,0xa9,0x13, + 0x6a,0x9a,0x29,0xf8,0x48,0x76,0x8e,0x3e,0xed,0x29,0x9d,0xdf,0x0b,0x74,0x9f,0xc7,0xf3,0x3c,0x7e,0x8b, + 0xb8,0xba,0xff,0x91,0x6f,0x7b,0x3d,0xcd,0xad,0xb3,0x4c,0x7e,0x85,0x24,0x92,0xce,0x44,0xfc,0xac,0xd7, + 0x7f,0xea,0x44,0x2b,0xbc,0x5c,0x46,0x7f,0xc0,0xa0,0xda,0x28,0xa6,0x7b,0xf6,0xc3,0x23,0xe2,0x18,0x8c, + 0x07,0x77,0xdc,0x33,0x7e,0x97,0x64,0x88,0xe0,0x57,0xcf,0xad,0xa5,0x8e,0x36,0x9f,0xe5,0x38,0xa2,0x0b, + 0x9f,0x15,0x2d,0xfe,0xc8,0xd9,0x34,0xda,0xa6,0x07,0x36,0x7a,0x57,0x0d,0x81,0xae,0xd7,0x8f,0xb2,0xbe, + 0xf6,0x8d,0xfc,0xfe,0x34,0xb1,0x81,0x18,0x5b,0x16,0x72,0xc7,0x9a,0xf1,0x6a,0xff,0x98,0xd9,0x38,0x79, + 0x3a,0x89,0xb4,0x87,0xfa,0x66,0xc0,0x41,0xf8,0xe8,0xa6,0x55,0xf4,0x5d,0xa1,0xd0,0xf1,0xf1,0xa9,0xd7, + 0xf5,0x26,0x84,0xc3,0xa7,0x10,0xc0,0x11,0xd0,0x97,0x08,0xa8,0x4b,0x93,0xfc,0x9e,0x1d,0xb3,0x8d,0x21, + 0xfc,0xc3,0xb1,0xa7,0x2e,0xd3,0x72,0xa6,0xe2,0xcb,0x38,0x2d,0x15,0x1b,0x06,0x28,0xf6,0x81,0xae,0x95, + 0xe7,0xf9,0x1a,0x48,0xb1,0xe3,0x52,0xc5,0x71,0xe9,0xd5,0x25,0xa1,0xd5,0x44,0xbd,0x87,0xd4,0x4f,0x23, + 0x1b,0x45,0xcc,0x59,0x0e,0x6f,0x87,0xec,0x89,0x45,0xc9,0x08,0x8c,0x07,0x30,0xeb,0x52,0x9b,0xdd,0x85, + 0x12,0x1b,0x23,0x21,0xea,0xd9,0x09,0x5a,0x9a,0xad,0xe0,0x98,0xf1,0x74,0x75,0x76,0x06,0x31,0xa1,0x9e, + 0x85,0x2a,0xe8,0x8a,0xa7,0xfd,0xd4,0xe0,0x4c,0xd0,0xa7,0x03,0x0d,0x6b,0x8d,0xa1,0x05,0x5d,0x1e,0xa1, + 0x04,0x09,0x6e,0x8c,0x59,0x3a,0x25,0x7e,0x47,0x59,0x81,0xbd,0xb5,0x1e,0x42,0xe9,0x40,0xf8,0xc7,0xc7, + 0x84,0xf2,0xe9,0x4f,0x55,0x6b,0xe3,0x03,0xb5,0xe1,0x3f,0x6a,0x4a,0x7e,0x44,0x14,0x71,0xad,0xd5,0x28, + 0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7,0xd1,0xce,0x51,0xa0,0x4e,0x72,0xbd,0x9e,0x6c,0x20,0x06,0x09,0xb7, + 0x13,0xb1,0xa5,0x9f,0xdd,0x7f,0x9f,0xbb,0xce,0x59,0xde,0xe7,0x6c,0x87,0x8b,0x9b,0x9c,0x59,0x1e,0x25, + 0x15,0x54,0x9f,0xe0,0xcd,0x9c,0xf5,0x00,0x27,0x75,0x8a,0x14,0xe7,0x24,0xe7,0xc4,0x4b,0x24,0x36,0x8e, + 0x6a,0xfe,0x70,0x9e,0x03,0xb4,0x93,0x96,0x8d,0xf0,0x93,0x6c,0x84,0xb3,0x66,0x86,0xa6,0x98,0x86,0xf2, + 0xbc,0xdf,0xca,0x93,0x2f,0xcb,0x66,0xa6,0x0b,0x74,0x81,0x56,0x22,0x3d,0x4f,0x4b,0x04,0x44,0xd4,0x46, + 0xb9,0x44,0x9e,0xb2,0xf2,0xc9,0xce,0x11,0xeb,0x7a,0x22,0xc6,0x39,0x76,0xc7,0x6f,0x33,0xca,0xc5,0xdd, + 0x54,0x98,0x2f,0xd0,0xa9,0x47,0x5b,0x96,0x19,0xcd,0x49,0xa6,0xb7,0x79,0x17,0x37,0x78,0x50,0x6b,0x5d, + 0x9d,0xca,0xdd,0x82,0xef,0x5a,0x4d,0x17,0xc6,0x8f,0x00,0xeb,0xdf,0xa9,0x65,0x15,0xbf,0x5e,0x34,0xf9, + 0xe6,0x81,0xbe,0x7b,0xc3,0x75,0x43,0x81,0xd7,0x92,0x57,0xac,0x71,0x21,0x4b,0xc9,0xac,0xea,0x9f,0x46, + 0x71,0x15,0xd4,0x3e,0x7d,0x10,0x11,0xd7,0x13,0x23,0x14,0xcc,0xdc,0x64,0xc5,0x26,0xa7,0x71,0x2d,0x11, + 0x52,0xcd,0xd0,0x94,0x11,0x5f,0xfb,0x22,0xb7,0x63,0x80,0xe9,0x56,0x34,0x7e,0x10,0xa5,0xfd,0x31,0x15, + 0x48,0x7a,0xec,0x65,0x85,0x7f,0xd8,0xdf,0x3a,0x4b,0x26,0xd0,0xff,0xbe,0xc9,0x1e,0x61,0x02,0x53,0x6e, + 0x76,0xff,0x88,0xbf,0x33,0x77,0xe4,0x9d,0x16,0xa0,0xf0,0x96,0x03,0x26,0xac,0x0a,0x58,0xa8,0xcb,0x03, + 0x8d,0x9f,0xa6,0x7b,0xe7,0x50,0x3c,0x23,0x78,0x0b,0xce,0xc5,0x71,0x70,0x5b,0xf3,0x1d,0x71,0x3e,0x55, + 0xeb,0x88,0xcc,0x20,0x4d,0xaa,0x71,0x8e,0x00,0x4f,0x27,0x58,0x44,0x28,0xa3,0x57,0x52,0x19,0x5a,0xb2, + 0xa4,0x57,0xd1,0x97,0x0c,0x6d,0x2b,0xdc,0x38,0x37,0xa8,0x4a,0xfe,0x30,0xa7,0x49,0x29,0xfb,0x2c,0xe4, + 0x4b,0x09,0x81,0x13,0x4b,0xf2,0x30,0xf7,0x73,0xab,0xce,0x06,0xbb,0xd4,0xbc,0x71,0x27,0x3e,0x89,0x5e, + 0xe5,0xc3,0x05,0x42,0x44,0xf1,0x6f,0x4d,0xfe,0x4d,0x04,0xdc,0xf1,0xf2,0xf8,0xf8,0x15,0x91,0x6e,0x81, + 0x7f,0xff,0xc0,0xeb,0x2e,0x8c,0x20,0x3c,0xa0,0x1d,0x9f,0x82,0x97,0x86,0x75,0x96,0x11,0x6d,0x4f,0x5c, + 0x99,0x36,0x83,0x87,0x81,0x34,0x6b,0x09,0xab,0xa8,0x3f,0x0b,0xe6,0xff,0xb4,0xdf,0x49,0x4c,0xdc,0x02, + 0x5a,0x1d,0x51,0xe5,0x80,0xea,0x00,0x62,0x74,0x6a,0x7b,0x29,0x2d,0xef,0xef,0x3f,0x38,0x38,0x23,0x16, + 0x83,0x4e,0x7d,0x37,0xcb,0xf1,0xf0,0xd1,0xe3,0x87,0xaf,0x1f,0x1e,0x0f,0xab,0x9c,0xa3,0x91,0xcd,0x09, + 0xa1,0xb2,0xbf,0x50,0xe2,0x76,0x19,0xfa,0x2c,0xda,0x67,0x13,0x87,0xd1,0x9b,0xc5,0x72,0x50,0xf2,0x03, + 0x94,0x20,0x3c,0xc8,0x5f,0x08,0xe6,0x8d,0x8e,0xce,0xfe,0xcc,0xf4,0xb7,0x8c,0x66,0xaa,0xa0,0x8a,0xe6, + 0xfb,0x53,0x44,0xa2,0xb6,0x76,0x48,0x17,0x91,0xa3,0x0c,0x70,0x5f,0x64,0x00,0x50,0xc3,0xbc,0xe0,0xc9, + 0x9f,0xe7,0x26,0xa2,0x96,0xb1,0x20,0x73,0x55,0x07,0xf6,0x8f,0xdf,0xdd,0x49,0xa4,0xc8,0x39,0x83,0x6f, + 0xa2,0xc3,0x33,0x22,0x52,0x85,0x56,0x41,0xd4,0xe1,0x11,0xb4,0xc3,0x92,0x6a,0x17,0xde,0x55,0xb0,0xb5, + 0xcd,0xfc,0xf3,0xee,0x1d,0x62,0xf1,0x34,0xaa,0xdf,0x40,0xaf,0x6b,0xda,0x68,0xf3,0xcc,0x6d,0x73,0xf4, + 0x40,0xda,0x3b,0xe3,0xf6,0x32,0xff,0xac,0x7b,0xdb,0x2d,0x8e,0xfc,0xd0,0x90,0x66,0xf7,0xb4,0xfe,0x4a, + 0x54,0x0e,0xdf,0x23,0xe3,0x7b,0xdc,0x2d,0x9b,0x80,0x86,0xb6,0x00,0xf2,0x9f,0xd8,0xfc,0x63,0xc9,0x7f, + 0x22,0xed,0x9e,0x46,0xf3,0x7e,0xe6,0x9f,0x38,0xe5,0x68,0x02,0x4f,0x86,0x47,0x23,0x75,0xca,0x6c,0xa9, + 0x5b,0xc7,0x65,0x33,0x56,0x4a,0x62,0x2b,0x8d,0xa5,0x52,0x1b,0xf9,0xef,0xca,0x78,0xfc,0x4b,0x50,0x15, + 0x73,0x1e,0x21,0x36,0x0b,0x76,0x59,0x38,0xdf,0x50,0x93,0x89,0xdb,0x55,0x67,0x57,0xf5,0x77,0xb0,0x19, + 0x74,0xb5,0xcb,0x9c,0x8d,0x3f,0x72,0x9b,0x50,0x50,0x42,0x3f,0xc8,0xfc,0xbc,0xd6,0x61,0xed,0x3f,0xd2, + 0x04,0xe2,0xc4,0x7e,0xaa,0x6c,0x30,0x57,0xd8,0x8b,0xaf,0xe8,0x14,0x27,0xb4,0x81,0xce,0x64,0x7e,0x5a, + 0x2f,0x0c,0xdf,0xe7,0x73,0x55,0x6c,0x36,0xbe,0x58,0x4d,0x05,0x57,0x5b,0xa1,0x16,0xb2,0xc8,0xba,0x29, + 0x64,0xab,0x8b,0xaa,0x4e,0xe6,0xfe,0x05,0xa3,0xd0,0xfe,0xcd,0xc4,0x75,0x78,0x41,0xbd,0x50,0x2b,0x7e, + 0xcc,0xc5,0x01,0x74,0xc1,0x17,0xe4,0x66,0x98,0xf3,0x68,0xcc,0xde,0x1a,0x76,0x76,0x52,0xf6,0xc1,0x23, + 0xdd,0xd7,0x30,0xbc,0xe0,0x4d,0x2d,0x92,0xa9,0x29,0x76,0xfc,0x61,0x7f,0x72,0x7f,0xda,0x9f,0x18,0x25, + 0xbf,0x99,0x29,0x30,0x9c,0x8c,0xfa,0x0b,0x6a,0x74,0x1f,0xd6,0x72,0x33,0x8c,0xc9,0x00,0xd0,0x2d,0xcf, + 0xbb,0x85,0x79,0xe3,0x3b,0xaa,0xd9,0xf0,0xce,0x68,0x6f,0x4f,0x2b,0x74,0xe2,0x45,0xe9,0xe4,0xbb,0x6e, + 0xf2,0x5d,0x9b,0x7c,0xcf,0x4d,0xbe,0xa7,0xad,0x09,0x2f,0xb8,0x9a,0xf5,0x1a,0x19,0xf1,0xf7,0x1e,0xfd, + 0xf5,0x3c,0x75,0x1e,0x79,0xb1,0x71,0x71,0x0d,0xf7,0xcd,0x52,0xc3,0xd1,0x68,0x60,0xf6,0xc8,0xe3,0x04, + 0x2e,0x75,0x7f,0x4a,0x2e,0xe1,0x12,0x75,0xf9,0x6d,0x5e,0x7c,0x4f,0xb9,0xc2,0xf6,0xaf,0xfd,0x05,0x8d, + 0x48,0xeb,0xae,0xa3,0x12,0xc5,0x24,0x76,0xf8,0x43,0xe2,0x5f,0xd0,0x36,0xda,0x6c,0xe6,0xac,0xfa,0xcc, + 0x8b,0xcc,0x0a,0xac,0x84,0x40,0xdd,0x13,0x27,0xcc,0x1a,0xb8,0x52,0xa0,0x6e,0x01,0x8f,0xf4,0x11,0xc7, + 0x45,0x68,0x20,0xfb,0x0c,0xb6,0x64,0x7c,0xe5,0x4d,0x6f,0xf0,0x68,0x93,0xc1,0x26,0xfb,0x92,0x71,0x51, + 0xae,0xd8,0x77,0x0b,0xa1,0xa0,0xc6,0xbe,0xdb,0x35,0x26,0xe3,0xef,0xcc,0xc3,0x5b,0xfd,0x00,0xd8,0xb9, + 0xb0,0xe7,0xdb,0x3b,0xeb,0xd8,0xf9,0x22,0x20,0x90,0x1e,0xeb,0xed,0xfe,0x0e,0x6e,0x5c,0x9d,0xe7,0xb9, + 0xf3,0x3c,0x75,0x9e,0xfd,0xb7,0xd1,0x3b,0x17,0x63,0x29,0xc2,0x85,0xf7,0x0f,0x09,0xf4,0x2f,0xba,0xd1, + 0x5b,0x55,0xab,0x7c,0xb7,0x76,0xee,0x1f,0xaa,0x0b,0x20,0x9c,0x8b,0x60,0x73,0xc1,0xe2,0xc8,0x5d,0x70, + 0x06,0x11,0x2c,0xc7,0x2d,0x26,0xdd,0xad,0x90,0xe9,0x2e,0xeb,0x98,0x96,0xa2,0xa6,0xbc,0x85,0x6a,0x4b, + 0x63,0x22,0xbb,0x29,0x7c,0x96,0x11,0x49,0x94,0x90,0x59,0xae,0x9c,0x6b,0x88,0xda,0xe9,0xe7,0x48,0x56, + 0xdc,0x63,0xb0,0x45,0xa8,0xb2,0x75,0x22,0xaa,0x36,0x90,0xb8,0x06,0x52,0x5a,0xf3,0x7e,0x1c,0xb8,0xf4, + 0x57,0xb5,0x85,0xba,0x43,0x8b,0xb9,0x97,0x1a,0x3d,0x39,0xc7,0x62,0x0c,0xeb,0x57,0xd9,0xb1,0x22,0x20, + 0x5d,0xae,0xd7,0x97,0xb8,0xe3,0xec,0xbf,0x04,0xc8,0xc3,0x65,0x36,0xcd,0x1d,0xa2,0x5c,0xd5,0x03,0x52, + 0x54,0xca,0xce,0x84,0xf4,0x84,0xb4,0x2d,0x5d,0xca,0xd6,0x08,0x2f,0x11,0x1f,0xf5,0xfb,0xdc,0xe8,0x4e, + 0x66,0x5a,0x67,0x52,0x9e,0x22,0xf9,0xb1,0x87,0xe8,0xaf,0xb9,0x92,0x65,0xe4,0x1d,0x00,0x5a,0xc4,0xc6, + 0xd0,0x83,0x72,0xb9,0x96,0x27,0x3e,0x4b,0xb8,0xdb,0x29,0x1d,0x90,0x90,0x28,0x52,0x8f,0x41,0xcf,0xed, + 0x68,0x07,0xfa,0xec,0x51,0x71,0x11,0x4d,0x03,0x51,0x66,0x36,0xd7,0xd1,0x48,0x5e,0x88,0xf2,0xf5,0xa2, + 0x2e,0x4f,0xa5,0x41,0x42,0x6c,0x77,0xf0,0x26,0xbe,0x88,0xdd,0xbc,0xb5,0x4c,0xd4,0x67,0xc4,0xa8,0x0d, + 0xb8,0x41,0x1a,0xfa,0x29,0x7b,0x82,0xe7,0x40,0x94,0x66,0x22,0x16,0x1a,0x8f,0x9d,0x59,0x02,0x1f,0xf8, + 0x6c,0x1a,0x9d,0xe5,0xb4,0xe7,0xfd,0xa9,0x42,0x1d,0x53,0x56,0x0c,0xa4,0xf1,0x9f,0x47,0x53,0x65,0x2f, + 0x1a,0xcf,0x71,0xa9,0x06,0xd9,0x1d,0xaa,0x3f,0x07,0xa9,0xcc,0xa6,0x06,0xd3,0x8a,0xaf,0x38,0x0c,0x98, + 0xb1,0x98,0x3a,0x8c,0x05,0x6e,0x24,0x5b,0xa3,0x17,0x5b,0x61,0x99,0x75,0x77,0xe9,0x46,0x69,0xb4,0xb7, + 0xaa,0x0e,0x0a,0x4e,0x8c,0x1f,0x9a,0x84,0x23,0x78,0xc2,0x4b,0x8f,0xc6,0x51,0x4e,0x6d,0x94,0x28,0x71, + 0x49,0x34,0xca,0xaa,0x2b,0xf9,0x34,0x32,0x4a,0x58,0xd2,0x8d,0xf1,0xa8,0x49,0xe3,0x60,0x5d,0x3b,0x16, + 0xda,0x49,0x54,0xec,0x69,0x10,0x4e,0xab,0xbb,0x50,0xfa,0xfa,0x1d,0x8c,0xf9,0x5b,0x22,0x95,0x3a,0x77, + 0xb6,0xfa,0xfc,0x2d,0x71,0x69,0x9a,0xe0,0x92,0xb1,0x94,0x4b,0x46,0xad,0xda,0x12,0x96,0x1b,0x6d,0x64, + 0xdd,0x72,0x85,0x2b,0xba,0xcc,0xfa,0xfa,0xd1,0xc4,0x4e,0x6c,0x5e,0xe8,0x1a,0x6d,0x26,0x7d,0x2f,0x09, + 0x87,0xba,0xe8,0xd4,0x85,0xbb,0x58,0x17,0x28,0x00,0x26,0x9d,0xab,0xbc,0x60,0x7e,0x9d,0x57,0xe3,0xf7, + 0x84,0x17,0x99,0xe6,0x72,0x60,0x20,0x60,0xbd,0x2e,0xa8,0xaf,0x0c,0x33,0x52,0x25,0x41,0x00,0x3f,0x51, + 0x51,0xea,0x7e,0x21,0xdd,0x37,0x1f,0xf5,0x28,0xa6,0x9b,0x20,0x2c,0xa8,0x45,0xda,0x8d,0x3b,0x0e,0xac, + 0xc1,0x44,0x68,0xab,0x9a,0x9d,0x8f,0xf3,0xaa,0x35,0x93,0x84,0x5a,0x7c,0x3d,0x63,0x81,0x5e,0x72,0x68, + 0x3d,0x00,0xb8,0x91,0xdc,0x52,0x02,0x82,0xc2,0xe6,0xb0,0xd6,0xd8,0xf8,0x95,0x93,0x1b,0x9e,0x9b,0x8c, + 0x87,0xf3,0x27,0x74,0x80,0xb9,0xeb,0x65,0xbd,0xeb,0xb0,0xc8,0xa0,0x09,0xb3,0x32,0xf6,0x69,0x0f,0x16, + 0x0a,0xec,0xf4,0x8b,0xa3,0x88,0xcb,0xf2,0x1f,0x89,0x3e,0x49,0x24,0x5f,0x45,0x2e,0xb8,0x5e,0xdf,0xf2, + 0xb4,0xfc,0xc0,0xbb,0xd5,0xa7,0x66,0x6b,0xc1,0xde,0xea,0xef,0x6c,0x46,0x30,0x9c,0x8d,0xa2,0xa9,0x18, + 0x5b,0x57,0x7d,0x14,0xbc,0x31,0xe5,0xad,0x23,0x61,0xd9,0x52,0x39,0xda,0xd5,0x79,0x7f,0x35,0xc8,0x00, + 0x74,0x44,0x79,0x4d,0x55,0x6e,0x32,0x22,0xce,0x58,0xd6,0xa2,0x57,0x9f,0x0f,0x73,0xcb,0xb6,0x8d,0x54, + 0xe2,0xb8,0xc7,0x1a,0x6e,0xf9,0xc4,0xa2,0x1c,0x08,0xbe,0x7c,0x07,0xda,0x20,0x06,0xa1,0x74,0x3c,0x79, + 0x63,0x77,0x0a,0x3b,0x63,0x68,0x5a,0x57,0x7d,0xc4,0xd4,0x2a,0x5b,0x7f,0x74,0x44,0xe4,0x56,0xbd,0xbd, + 0x4c,0x1c,0x6e,0xe3,0x80,0xaa,0x49,0xf9,0x4d,0x70,0xb1,0x97,0x99,0x7b,0x75,0x24,0x1e,0x4d,0x80,0xd8, + 0xd2,0x0a,0x67,0x2d,0x2a,0x77,0x1c,0x30,0xed,0x0e,0xec,0x6e,0xaa,0x39,0xff,0x28,0xa3,0x31,0x02,0x3f, + 0xca,0x15,0xce,0xc0,0x47,0xa8,0x4d,0xaf,0xe2,0x82,0x0a,0x63,0xab,0xc2,0x68,0xd5,0x24,0x0c,0xca,0xf0, + 0x97,0x9c,0xdd,0xfa,0xb1,0xcb,0x73,0xe9,0xf5,0x80,0x46,0x0c,0x71,0x9e,0xf6,0xf8,0xb6,0xb3,0xe4,0x39, + 0xd8,0x61,0xdf,0x7d,0x7e,0x53,0x7a,0x22,0x50,0x7a,0x91,0x0f,0xfe,0x4c,0xfd,0x8b,0x3c,0x08,0x7f,0x4f, + 0x99,0x5b,0xaf,0x98,0x05,0xeb,0xfc,0x4d,0x39,0x2c,0x28,0xfd,0x19,0xc3,0x85,0x6f,0xbc,0x2c,0x9f,0x82, + 0x68,0x00,0xc2,0xe2,0x78,0x3e,0xc9,0x18,0x87,0x55,0x70,0x45,0x2b,0x5b,0x08,0x3d,0x11,0x3c,0xc0,0x55, + 0x93,0x21,0x96,0x2d,0x21,0x31,0x86,0x95,0xae,0xd2,0xe4,0x55,0x03,0x7f,0xe5,0x46,0x43,0x71,0x15,0x7d, + 0x07,0xaf,0x2a,0x95,0x3b,0xe4,0xbe,0x2e,0x20,0x97,0x31,0x2b,0xb9,0x84,0xd2,0x75,0x5f,0x79,0xff,0x3a, + 0x15,0x4d,0x41,0x0f,0x3a,0x13,0xd4,0xc1,0xb4,0x5b,0x54,0x94,0xb7,0x39,0xbd,0xc6,0xf7,0x2b,0x53,0x8b, + 0x96,0x6e,0x7d,0xb4,0x53,0xbc,0xcf,0xa0,0xd1,0x07,0x83,0xa4,0x58,0x8b,0xb4,0xa0,0x97,0x58,0xe6,0x6f, + 0x93,0x6c,0x19,0x2e,0x37,0x1c,0x19,0x28,0x18,0x24,0x86,0x6c,0x84,0x15,0xe8,0x6d,0xe5,0x94,0xc2,0x24, + 0x99,0x17,0x53,0x0c,0x84,0x24,0x1e,0xe4,0x4e,0x8b,0xf6,0x6d,0x28,0x30,0x5b,0x56,0x6b,0x6a,0xc1,0x78, + 0x98,0x54,0xb0,0xc9,0x20,0x0d,0xa5,0x71,0xa7,0xb1,0x3b,0xb6,0x12,0xa1,0x1f,0x0b,0x36,0x08,0xdf,0x72, + 0x13,0xdf,0xdc,0xa6,0xf5,0xc2,0xca,0xda,0xba,0x85,0x3b,0x87,0x6c,0x1e,0x41,0xec,0x8a,0x6f,0x60,0x13, + 0x71,0x8c,0xb5,0x20,0x09,0xd2,0xe0,0xf3,0xf4,0x43,0xc2,0x72,0x1c,0x98,0x42,0x25,0x0a,0x32,0x9d,0xdd, + 0x3c,0xfa,0x77,0x0e,0x3c,0xe1,0x5c,0x37,0x81,0x96,0x78,0x87,0x5b,0xd2,0x2d,0xd9,0xac,0x3d,0x67,0x60, + 0xc2,0x23,0xae,0x64,0x74,0xc9,0x88,0xce,0xd6,0x44,0xdd,0xa6,0xa6,0xc6,0x7a,0x33,0xfb,0xd8,0xd9,0xf2, + 0x42,0xec,0x8c,0xbf,0x33,0xd6,0xc7,0xf2,0x18,0x96,0x09,0x5a,0x51,0x94,0x1a,0x83,0x8a,0x0e,0xfe,0x4e, + 0x11,0xf9,0xeb,0x2c,0xf3,0xd9,0x98,0x0a,0x0c,0xd0,0xbb,0xdc,0x3e,0x6f,0x9b,0x80,0x5a,0x03,0x50,0x56, + 0x83,0x32,0x71,0x21,0xb4,0x57,0x68,0xeb,0x3a,0x88,0x8b,0xd7,0x2c,0x09,0xd0,0x4c,0x65,0x1f,0x6a,0x7d, + 0xc6,0x10,0x30,0x51,0x8b,0xda,0xa8,0x0c,0x61,0x04,0x29,0xa1,0x87,0x40,0x31,0xef,0x69,0x82,0x02,0xfc, + 0xa7,0x8e,0x2c,0x9e,0x12,0xab,0x05,0xea,0x5e,0xa2,0xc9,0x0a,0x0f,0xf8,0x98,0xa3,0x02,0x55,0x86,0x60, + 0x78,0x31,0x58,0x65,0xe8,0xa5,0x19,0x28,0xcd,0x7d,0xdb,0x4f,0x63,0xb5,0xe0,0xca,0x38,0x39,0x7e,0x68, + 0xd3,0x6f,0xa0,0x09,0x4f,0xad,0xed,0x63,0xab,0x0c,0x20,0x0f,0xe1,0x77,0x45,0x99,0xa5,0x23,0x6c,0x6f, + 0xd7,0x62,0xe7,0x88,0x89,0x77,0xa2,0xb3,0xa7,0x8f,0x72,0x9a,0x68,0xbe,0x07,0xa8,0x02,0x4e,0x13,0xea, + 0x8c,0xa3,0xfa,0x47,0xd3,0x5e,0x7e,0x3f,0xae,0x3c,0x6b,0x2d,0x1b,0x99,0xe0,0x49,0x89,0x0f,0x2c,0x6a, + 0x19,0x56,0x71,0xd7,0xb4,0xcc,0xc0,0x3c,0xde,0x10,0x1d,0x5a,0x03,0x17,0xed,0xcf,0xa0,0x31,0x8f,0xb6, + 0x28,0x36,0x47,0x2e,0xde,0xff,0x6c,0xda,0xd3,0x8c,0x68,0x73,0xcb,0xa0,0x51,0x82,0x30,0x20,0xb5,0x29, + 0xa2,0xec,0x02,0xe0,0x8d,0xf4,0xf5,0xfa,0x4e,0x2d,0x99,0xdd,0xb6,0xb3,0xcb,0x08,0x8d,0x5d,0xc0,0x9a, + 0xd9,0x96,0xe0,0x8f,0x98,0x09,0x1c,0x07,0xa4,0x25,0xed,0x48,0x55,0x75,0x34,0x62,0xb8,0x6f,0x2f,0x97, + 0x0d,0xe6,0xee,0x27,0xae,0xab,0x47,0x95,0x81,0xa1,0x4f,0x18,0xf8,0xfa,0xff,0xb5,0x85,0x29,0xfd,0x6b, + 0xd6,0x84,0xc3,0x18,0xc0,0x2d,0xd4,0x91,0x55,0x1a,0x67,0x61,0x72,0x96,0xb1,0xe1,0x91,0x96,0x15,0x5f, + 0xd1,0x31,0x40,0xdc,0xb1,0x36,0xc2,0xcc,0x4d,0xe8,0xda,0xc6,0x75,0x09,0x7d,0x68,0xa4,0x6c,0xea,0xc1, + 0xfe,0xec,0xba,0x4a,0xfc,0x04,0xe3,0x50,0xbe,0x66,0x94,0x59,0x42,0x73,0x90,0x4d,0x2b,0xc5,0x1d,0x50, + 0x21,0x37,0x50,0xf5,0x33,0xcd,0x4f,0x06,0x79,0x98,0x06,0xc6,0x11,0xea,0x06,0x95,0x65,0x46,0x6e,0xce, + 0x8e,0x7c,0xf4,0x73,0x54,0x5d,0x37,0xf1,0x7d,0xb8,0xb9,0x28,0xb7,0x99,0x21,0x4c,0xab,0x99,0x2f,0xc3, + 0x67,0xa4,0x7b,0x0f,0xd5,0xe8,0x9d,0xf3,0x71,0xbd,0x16,0x03,0x52,0xb7,0xbc,0x23,0x92,0x41,0x14,0xdb, + 0x4e,0x16,0x78,0xba,0x21,0x6c,0x74,0x3a,0xc2,0xab,0x88,0x6e,0x26,0x85,0x8e,0xbf,0x18,0x1e,0xf1,0xe3, + 0x91,0xb8,0x02,0x5a,0x46,0x8f,0x72,0x0e,0x7f,0x6e,0xe4,0xf4,0xcb,0x5e,0x52,0x14,0x39,0xb1,0x10,0x29, + 0xed,0x9d,0x32,0x5d,0x2c,0xa3,0x5c,0x2d,0x35,0x12,0xba,0x82,0x36,0x47,0x3a,0x4f,0xc2,0x44,0xe9,0xa7, + 0xd7,0xf9,0xb7,0x7a,0xaa,0x96,0x2d,0xda,0xfc,0x2d,0x06,0xb0,0x5b,0xd7,0x01,0xda,0x87,0x02,0xe1,0x7b, + 0xbe,0x83,0x23,0xbe,0x90,0x97,0x40,0xdf,0x49,0x75,0x8a,0xca,0x38,0x21,0x87,0x9b,0x33,0x7b,0x15,0x31, + 0xd0,0x46,0x49,0x6e,0x5a,0xd0,0xa5,0x03,0x91,0x61,0x17,0x9e,0xd3,0x0c,0x7b,0x09,0xc7,0x7b,0x62,0x4d, + 0x0f,0x99,0x49,0x01,0x65,0x4f,0x58,0x55,0x63,0xc5,0xed,0x98,0xb5,0x7d,0xd0,0x04,0x51,0x17,0x35,0xb8, + 0x8d,0x2b,0xe4,0x51,0x5d,0xd1,0xc5,0xcd,0x94,0xba,0xbe,0x9e,0x13,0x30,0x05,0xb0,0x33,0x86,0x7e,0x02, + 0xda,0x8f,0x08,0x36,0x71,0xa5,0xb1,0x09,0xfc,0xdf,0xf2,0xa0,0xb7,0x3d,0x79,0x94,0x2d,0x8e,0x76,0x76, + 0xe0,0xc9,0x7e,0x96,0xf9,0xb8,0x6a,0xca,0xdc,0x77,0x78,0x7c,0x8a,0x5b,0xad,0x71,0xbe,0x71,0x2d,0xc6, + 0x38,0xcc,0xad,0xd5,0x31,0xa1,0xb6,0xd3,0x38,0x6a,0xb1,0xac,0x32,0xd9,0x6f,0x36,0xba,0x02,0xee,0x63, + 0xe3,0x24,0x6e,0x06,0xea,0xa4,0x35,0xdb,0x4f,0xa2,0x2f,0xdd,0x24,0xf3,0x60,0xa2,0x30,0x6f,0x47,0x16, + 0xad,0x85,0x1c,0x67,0xb7,0x06,0x99,0x9e,0x6e,0xb3,0x3d,0x41,0x29,0xca,0xf9,0xc3,0xdb,0x31,0x60,0xe5, + 0x4c,0x5e,0xe9,0x2a,0x06,0x61,0x11,0x78,0xff,0x10,0x92,0xd5,0x46,0x4d,0x60,0x82,0xa1,0x88,0x21,0x56, + 0xb0,0xae,0xb8,0x76,0x1c,0xcf,0x5d,0x6e,0x57,0x0a,0x26,0x25,0xcd,0x24,0x09,0x17,0xcb,0xe5,0xb7,0x4c, + 0x56,0xf3,0x55,0x59,0xf3,0x18,0xd7,0x71,0x92,0x3e,0x6e,0xc5,0x27,0x5a,0xd6,0x76,0x5d,0x1a,0xee,0xa4, + 0x2b,0xe3,0x4d,0x66,0xfe,0xdd,0x35,0xc3,0x34,0xcb,0xc8,0x8d,0xb7,0x09,0xb8,0xd1,0xbb,0x6a,0x17,0x2e, + 0xc5,0x1f,0x15,0x24,0x65,0x88,0x63,0x65,0xb6,0x46,0x98,0x39,0xfb,0xc4,0x90,0x70,0x48,0x35,0x8f,0x1b, + 0x1d,0xe9,0x1d,0x24,0x95,0xde,0x01,0x50,0x3d,0x6b,0x80,0x7b,0xdf,0xac,0x17,0x61,0x85,0x6c,0x7b,0x77, + 0x58,0x93,0xfd,0x34,0xd6,0x8e,0x7c,0xd8,0xbc,0xcd,0xd8,0xb2,0x69,0xb8,0xa7,0x31,0xd1,0xdb,0x26,0x68, + 0x18,0x25,0x78,0x12,0x3f,0xac,0x5a,0x67,0xb9,0x8f,0x06,0xbb,0xb1,0xca,0x24,0xba,0xe3,0x84,0xb0,0x98, + 0xfe,0x28,0x88,0x6e,0x20,0x3f,0x3d,0x9d,0x35,0x4a,0xfc,0xd6,0x30,0xb3,0x52,0x1a,0x72,0x61,0xfc,0xf6, + 0xe2,0xf3,0xc9,0x40,0x1e,0x69,0x53,0x12,0x9f,0xfb,0xeb,0x2a,0x79,0x7a,0xf4,0xcf,0x0c,0xa5,0x37,0x8d, + 0x20,0xd4,0xd4,0xad,0x15,0x01,0x08,0x40,0x90,0xba,0xd6,0x77,0x68,0x05,0xe9,0x73,0x4b,0xcf,0x70,0xd7, + 0x9e,0xb3,0xcd,0x92,0x7e,0x62,0x14,0xe6,0x7b,0xc3,0x8b,0x55,0xb2,0x9f,0x52,0x3b,0xa3,0x8e,0xd7,0x85, + 0x1f,0xca,0xbd,0xbd,0x5a,0x06,0x3e,0xd2,0xc7,0x6f,0x5d,0x47,0xdb,0x49,0x23,0x20,0x9e,0x30,0x5d,0x5b, + 0x13,0x55,0x56,0x25,0x5c,0x1c,0x74,0xa1,0xd7,0x00,0xfb,0xf6,0xbc,0x76,0x9d,0xda,0x88,0xb2,0x87,0x30, + 0x7b,0x36,0xb6,0x84,0x53,0x59,0xea,0xc6,0x07,0x17,0x51,0xa0,0xbd,0xd4,0xb7,0xc4,0x1f,0x24,0x0e,0x10, + 0x04,0x56,0x9f,0x40,0xf6,0xe9,0xdd,0x0c,0x35,0xbe,0x94,0x7f,0xcc,0x5e,0x60,0xc1,0x84,0xe1,0x2c,0xc5, + 0x20,0x9d,0xc8,0xda,0xba,0x42,0x2b,0x27,0x0e,0x52,0x36,0x35,0x0c,0xb7,0xb6,0x7f,0xc9,0xa1,0xe6,0xe1, + 0x30,0x19,0xd9,0xc2,0xdb,0x4e,0x85,0x2c,0x12,0xfc,0x68,0x76,0xe5,0xa3,0xcd,0xa3,0xb6,0x36,0x29,0x11, + 0x78,0x24,0x8d,0xe4,0x51,0x5d,0x11,0xc5,0x12,0xd3,0x61,0x57,0x88,0x7d,0xd2,0x32,0x4c,0x1d,0x6f,0xa0, + 0x79,0x65,0xc4,0x8d,0x15,0xd1,0x8d,0x5a,0x18,0x28,0x6b,0x2a,0x59,0x46,0x36,0xa7,0xd5,0x17,0xd6,0x8e, + 0x4d,0xe4,0x30,0xb9,0xc6,0x18,0x25,0x42,0xa0,0xc2,0x5e,0x7c,0x0a,0x31,0xb6,0xc2,0x18,0x93,0x01,0x5c, + 0x79,0x07,0x83,0xec,0xc1,0xd1,0xe0,0x28,0x3c,0x0c,0x8f,0xc2,0x72,0xc0,0x79,0xce,0x53,0x14,0xbd,0x1d, + 0x84,0x87,0x26,0x9c,0x2a,0xfc,0x6e,0xe9,0xfb,0xa1,0xd1,0x20,0x63,0x29,0x10,0x73,0x5a,0xa1,0xb3,0xb6, + 0xb1,0x03,0x05,0xcc,0x9a,0x72,0xd8,0xef,0x26,0x97,0x5a,0x73,0xfb,0xbe,0x74,0x85,0x4e,0x0e,0x28,0x28, + 0x43,0x55,0x09,0x39,0x45,0x4c,0xcc,0xfd,0x2d,0x30,0x49,0x0d,0xbd,0x9e,0x4b,0x38,0x1e,0x5c,0x36,0x98, + 0x68,0x25,0xb9,0x71,0x4b,0x11,0xd9,0x98,0x1a,0xfa,0x4a,0x02,0x8d,0x31,0x65,0x93,0x07,0x63,0xc2,0x38, + 0xab,0x28,0x56,0x67,0x02,0xd4,0xf0,0xd3,0xc8,0xde,0x47,0x73,0x90,0x32,0x03,0xa6,0x6a,0x96,0x4c,0xdc, + 0x28,0x4e,0x09,0x39,0x85,0x1f,0x35,0xad,0xaf,0x56,0x66,0xd2,0x8b,0x7a,0x88,0x02,0x26,0x0e,0xe7,0xec, + 0x60,0x1b,0x4e,0x9e,0xb5,0x3b,0x38,0x9b,0x65,0x55,0xb9,0xf7,0x9d,0xb3,0xba,0x2f,0x44,0x7e,0x2d,0x32, + 0x8f,0xc4,0xb8,0x3a,0xab,0x2c,0x18,0x4f,0x04,0x82,0xd8,0x2b,0xda,0x2e,0x76,0x7e,0x4f,0x12,0x36,0xba, + 0x1e,0x07,0x9b,0xf0,0x05,0x36,0x24,0x25,0x38,0xd7,0x2a,0x53,0x73,0xcd,0x51,0xf9,0xec,0x18,0x12,0x9e, + 0x02,0xf9,0xd0,0x4c,0x89,0x52,0xcf,0x4d,0x26,0x88,0x12,0x69,0x06,0x35,0x39,0x94,0x05,0x95,0x77,0x1e, + 0xca,0x5d,0x16,0xef,0xf5,0x8c,0x36,0xe3,0x27,0x11,0x15,0x54,0x4f,0x92,0xba,0x89,0x44,0x5c,0x5a,0xd8, + 0x35,0xea,0x0a,0x91,0xbd,0x51,0x87,0x94,0x50,0x58,0x4e,0x3b,0x05,0x6e,0x34,0x62,0x70,0x50,0x05,0x47, + 0x66,0x96,0xca,0xd6,0xeb,0x65,0xc5,0xda,0x8a,0xca,0x84,0xcb,0xbf,0x66,0xf0,0xf5,0xe3,0x26,0x54,0x64, + 0xe8,0xb8,0x6a,0x7b,0x65,0xdb,0x1e,0x6f,0xb5,0xed,0xb4,0x0c,0x38,0x37,0xae,0xe0,0x36,0xac,0xfb,0x54, + 0xa9,0xc1,0x11,0xf7,0xbc,0x21,0x2a,0x5c,0x4c,0x47,0x32,0xeb,0x9b,0x0c,0x5c,0x7b,0xa5,0x19,0x61,0x16, + 0x63,0xee,0xb2,0x0b,0x59,0x73,0x55,0x8b,0xc1,0x0e,0x11,0x16,0xbc,0x9a,0x10,0x7b,0xfb,0x5e,0x96,0x97, + 0x74,0x52,0xa5,0xcb,0xb2,0xa3,0x8f,0x91,0x4e,0xaa,0x3d,0xfd,0x00,0x70,0x29,0xcd,0xbe,0x7b,0x50,0x39, + 0x66,0x0f,0xd3,0xf5,0x42,0xf5,0x02,0xa0,0x0b,0x3a,0xba,0x51,0x29,0xe1,0x06,0x96,0x48,0x04,0x12,0x65, + 0x27,0x6d,0x91,0x83,0xf8,0x68,0x03,0x19,0x36,0xf1,0xe0,0x80,0x0e,0x5e,0x04,0x2d,0xe1,0x7d,0xc3,0xf2, + 0x87,0x72,0x06,0x7f,0x34,0x1a,0x28,0xf9,0x62,0x98,0xf6,0x2d,0xd1,0x00,0x57,0xf8,0x14,0x22,0xce,0xad, + 0x46,0x80,0x48,0x06,0xfa,0x23,0x6a,0x5b,0xa4,0xff,0x44,0x1b,0xe4,0x52,0x01,0xf1,0x07,0xa6,0x02,0xda, + 0xa2,0x5c,0x81,0x59,0xfa,0xf5,0x7a,0xcc,0x91,0x65,0x4c,0xd4,0x96,0xd4,0xce,0x25,0x9c,0x20,0x95,0x5a, + 0x86,0x6a,0x42,0xe2,0xf9,0x73,0x5a,0x69,0x9e,0xd7,0xa0,0x67,0x62,0xc2,0xcf,0x15,0x6d,0x60,0xc3,0x45, + 0x6d,0x6f,0xba,0xc2,0xa1,0xe1,0x4b,0x78,0x59,0x35,0x91,0xe3,0x71,0xf8,0x36,0xe3,0x82,0xc0,0xb7,0x3c, + 0xfb,0x62,0xd4,0xd9,0x12,0x16,0x42,0x11,0x2d,0x14,0x30,0x09,0x66,0xf6,0xea,0xaa,0xb6,0x53,0xc5,0x52, + 0x4a,0x13,0x89,0xbe,0x67,0x02,0xf4,0x76,0xfe,0x13,0x63,0xff,0x4f,0xac,0xd7,0xc5,0x7e,0xd9,0xa9,0xe2, + 0x66,0x6b,0xf1,0xb8,0x5e,0xe1,0xe5,0x6a,0x01,0xb2,0xa4,0x23,0x66,0x3a,0x62,0xa9,0x56,0x0b,0xe8,0xc1, + 0x5b,0xbe,0x3a,0x79,0x85,0xc7,0xc3,0x93,0xde,0x35,0x1e,0x2d,0x9c,0x67,0xb5,0x10,0x41,0xed,0x42,0xd3, + 0x91,0x29,0xde,0xbe,0x28,0xe6,0x61,0x0b,0x40,0x07,0xb0,0xf3,0xf5,0x51,0x28,0xbf,0x77,0xe4,0xf7,0xee, + 0x97,0xf2,0x7b,0xe7,0xae,0xfe,0xfd,0x5a,0xa7,0xff,0x33,0xb4,0x01,0xc8,0xa4,0xc0,0x3d,0x9d,0x41,0x17, + 0xb8,0x7b,0x2f,0x34,0xea,0xc5,0x13,0xa8,0xba,0x4b,0xae,0x3b,0xb7,0x75,0xf5,0xf2,0x73,0x74,0xa8,0x7f, + 0x75,0x6b,0x47,0x5f,0xea,0x84,0x2f,0xef,0xdd,0xfe,0x4a,0xe7,0xf9,0xe7,0x6d,0x53,0x88,0x9e,0xee,0x98, + 0x4a,0x2f,0x97,0x9e,0xbd,0xf8,0x7b,0x10,0x7d,0xfd,0x15,0xb1,0x2c,0xf7,0xa3,0xa3,0xdb,0xb7,0xd7,0x6b, + 0x7a,0xfd,0xf2,0x1e,0xbf,0x7e,0x7d,0x38,0xd0,0x8d,0x87,0x94,0x78,0xf7,0x6b,0x4e,0xbc,0xf7,0xd5,0xc0, + 0x13,0x43,0x08,0x2f,0xf4,0xf8,0xda,0xa7,0x25,0x20,0x09,0xa6,0x49,0xce,0x3a,0x0d,0x17,0xbe,0x77,0xe8, + 0xed,0x38,0xc1,0x8b,0x0f,0x21,0x43,0x4b,0x97,0x3f,0xc5,0x3f,0x49,0x50,0x36,0x42,0xb8,0x89,0xfa,0xc9, + 0x44,0xab,0x6b,0xbd,0x73,0xab,0x4f,0xbb,0xe9,0xbb,0xad,0x54,0x7f,0xb2,0xca,0x3c,0x47,0xd4,0xc2,0x9d, + 0xbb,0x10,0xeb,0xec,0xed,0xdd,0xf9,0x1a,0xbf,0x83,0x32,0xb4,0x61,0xdc,0x14,0x7d,0x07,0x2b,0x18,0x7a, + 0x5f,0x78,0xdd,0xc4,0x04,0x40,0x17,0xff,0x56,0x17,0x06,0x17,0x56,0x5c,0x99,0xf1,0xbd,0x01,0x4d,0x85, + 0xa1,0x90,0x7d,0x1d,0xed,0x29,0xcf,0x53,0x67,0xdb,0xf9,0x67,0xf1,0xf2,0xc5,0x65,0x66,0x02,0xed,0xa9, + 0xf7,0x51,0x1b,0x81,0xfa,0x34,0x2b,0xe7,0x4e,0xb0,0x30,0xbc,0xf6,0x1e,0x23,0xb2,0x4d,0x7a,0x9e,0x10, + 0xf3,0x70,0x1e,0x97,0xea,0xe4,0x93,0x0b,0x8a,0x17,0x3f,0x5d,0xec,0x34,0xba,0x12,0xc7,0x1a,0x8f,0x1a, + 0x41,0x2a,0x6b,0x3e,0x8d,0x5c,0x06,0xb0,0xec,0x61,0xb7,0x45,0xf2,0xc3,0xf7,0x88,0x27,0x27,0x78,0x1c, + 0x5c,0x6d,0x42,0x13,0x91,0x88,0x71,0xc2,0x95,0xcd,0x6c,0xd1,0x25,0xf5,0xe8,0xb9,0x4e,0x97,0x42,0x81, + 0x39,0xee,0x10,0x68,0xb1,0x6f,0x52,0x5b,0x9d,0xde,0x24,0x44,0x2d,0x24,0xca,0x21,0x7c,0x4a,0x36,0x26, + 0x70,0x0f,0xa3,0xa4,0x25,0x02,0xa3,0x84,0x34,0x45,0xa5,0xec,0x3b,0xf8,0x47,0x46,0x12,0xcf,0x93,0xe5, + 0x32,0x3e,0x63,0xdf,0x39,0x72,0xf6,0xe9,0xe3,0x87,0x9a,0x11,0x8f,0x53,0x27,0xce,0x18,0x55,0x95,0xf2, + 0x1b,0x72,0x25,0xda,0x23,0x98,0x74,0xf5,0x12,0x49,0x38,0x44,0xa0,0xa9,0xec,0x07,0x4e,0x66,0xd6,0x91, + 0x18,0x17,0xe9,0x69,0x82,0x4f,0x8f,0x60,0xea,0xc3,0xd1,0x87,0x98,0x69,0x93,0x6c,0x26,0x87,0x38,0x83, + 0xdb,0x54,0xf1,0x38,0xf4,0x14,0xca,0x5c,0xf1,0x0a,0x14,0x79,0x5e,0x9a,0x20,0xf7,0x78,0x16,0xa4,0xb7, + 0x9d,0x52,0x9b,0x6b,0xbe,0x3e,0xe5,0xbe,0x20,0x43,0xd4,0xcc,0xab,0x57,0xaa,0x37,0x25,0xfa,0xec,0x94, + 0x18,0x19,0x99,0x9c,0xad,0x6c,0x8d,0xef,0xa6,0xd4,0x92,0x18,0xc3,0x4c,0xf4,0x4f,0xe7,0x6c,0xa4,0xf0, + 0x1b,0xab,0x82,0x37,0x0b,0xb7,0x66,0x63,0x47,0xbd,0x75,0x08,0x28,0x6e,0x84,0x80,0x02,0xf4,0xe2,0x36, + 0x04,0xd8,0xe5,0xe5,0x35,0x5d,0x46,0x45,0xfb,0x62,0xe2,0x82,0xfd,0xb9,0x99,0xd8,0xff,0xb6,0x35,0x55, + 0xce,0x61,0xa1,0xa7,0xed,0x7d,0xc6,0xd7,0x7c,0xf6,0x85,0xef,0xc2,0xc5,0x2f,0x20,0xcf,0x6f,0xad,0x43, + 0xbb,0x55,0x87,0x64,0xf6,0xfd,0xc0,0x3a,0x8a,0xff,0xfb,0x70,0x31,0xf0,0x5d,0x28,0xdf,0x82,0x8a,0xbf, + 0x3f,0x5c,0xf0,0xe6,0x72,0x4b,0x82,0x4b,0x56,0x1d,0x60,0xc1,0xf4,0xa8,0xf6,0xbe,0x05,0xa7,0xee,0xb6, + 0x73,0x33,0xfe,0x97,0xba,0x63,0xfc,0xc0,0x3d,0x6e,0x86,0xa9,0x35,0x8e,0xe0,0xa4,0x6b,0xfe,0x56,0xe1, + 0x5a,0x8f,0x7a,0xab,0xec,0x63,0x2d,0x6b,0xc1,0xe7,0x56,0x1d,0x2d,0x50,0x56,0xab,0x56,0xa7,0xf9,0x8d, + 0x1a,0x9c,0x4f,0xa6,0x86,0x1a,0x60,0xb4,0x83,0x4b,0xb3,0x96,0xda,0x47,0xb7,0x27,0x12,0x36,0x6e,0xb3, + 0x51,0x97,0xc6,0x6b,0x2b,0x52,0x2b,0x6f,0x8e,0xf1,0x1c,0x86,0xde,0xe2,0x58,0x91,0xb5,0xde,0xae,0x5c, + 0x4f,0xb6,0x5a,0x2b,0x20,0x14,0x97,0x89,0x1b,0x8e,0x48,0x5e,0xcf,0x61,0x28,0x2e,0x5c,0x1c,0x1a,0x7a, + 0xd4,0xcd,0xb0,0x51,0x7c,0x1b,0xbe,0xd4,0x89,0x43,0xa6,0xf6,0xac,0x33,0xd9,0xcd,0x96,0x27,0xc7,0x1a, + 0x69,0xcf,0xdd,0x82,0x7c,0x42,0xc2,0x67,0x20,0x8a,0x6c,0x65,0x6d,0x86,0xef,0x0e,0xe0,0x48,0x3c,0x0d, + 0x3f,0x17,0xc1,0xfe,0x8d,0xae,0x63,0x75,0x58,0xb8,0x48,0x7e,0x6c,0xf8,0x5d,0xa2,0xe7,0x1d,0x47,0xae, + 0x22,0x80,0x2f,0x84,0x90,0x46,0x34,0x0f,0x4d,0x48,0xaf,0x20,0xa0,0x9e,0xe3,0x03,0x8f,0x8d,0x0d,0x42, + 0xa7,0x0d,0x76,0x6d,0x1e,0x0c,0xe6,0x26,0xe8,0xef,0x61,0xe8,0x9e,0x5b,0xf3,0xc0,0xa6,0xb3,0x06,0x76, + 0x83,0x67,0x72,0xfd,0xf1,0x61,0x1b,0x55,0x01,0xcc,0x2b,0x92,0xc7,0x09,0x6a,0xce,0x5d,0x30,0x54,0x4f, + 0x15,0xf7,0x7c,0x6f,0xcf,0xe3,0xcb,0xc4,0xcd,0xa6,0x12,0xe9,0xef,0xed,0xe5,0xb6,0x65,0x62,0x4a,0x17, + 0x54,0xbb,0xef,0x3d,0x9d,0x76,0x64,0x14,0x1d,0xcc,0x76,0x27,0x5d,0x76,0xe0,0x64,0xa6,0x43,0x67,0x40, + 0x87,0xe7,0xba,0x93,0x88,0xc8,0x74,0xd9,0x81,0xf9,0x43,0x67,0x16,0x5f,0x24,0x52,0x40,0xf2,0x53,0xe6, + 0x1e,0x71,0x41,0x2d,0x63,0xdf,0xc6,0xe9,0x60,0x0b,0x56,0xc4,0x00,0xc2,0x79,0x68,0x73,0x46,0xda,0x4e, + 0x80,0x15,0x3c,0x9f,0xcd,0xe9,0x0f,0x54,0x2c,0xaf,0xa9,0x4f,0x78,0xfb,0xc5,0xc0,0x83,0xf9,0x54,0x73, + 0x5a,0x42,0x4a,0x4d,0xfa,0x2b,0x08,0xbf,0x20,0xce,0xd4,0x5e,0xff,0x55,0xaa,0xe2,0x5e,0xea,0x4b,0xec, + 0x09,0x6c,0x8d,0xdd,0x68,0x0b,0x51,0x8c,0xa9,0x25,0x3a,0x5c,0x5a,0x2e,0x48,0x36,0xfd,0x5d,0x87,0x9e, + 0x4b,0x61,0x37,0xb8,0xc8,0x21,0x0f,0x77,0xe5,0x44,0x95,0xf9,0xb0,0x53,0x1b,0x5c,0xcb,0x19,0x26,0x15, + 0x5a,0x78,0x1f,0xd5,0xe8,0x23,0xc6,0xcf,0xf3,0x5c,0xb5,0x3e,0x2b,0x6f,0x1e,0x66,0xdd,0x2e,0xcb,0x67, + 0xbc,0x2b,0xed,0xff,0xb5,0xc0,0xb5,0x82,0x73,0xad,0xcf,0xea,0x29,0x9e,0xd6,0x15,0x2b,0x70,0x99,0x8f, + 0xba,0x84,0x25,0xa5,0x07,0xb1,0xb1,0xd0,0xf5,0x78,0x1b,0xd6,0x61,0xe9,0x07,0x79,0x37,0x4a,0x95,0x4d, + 0x16,0x99,0xc4,0x3b,0xa1,0xbb,0xf3,0x60,0xe0,0xb1,0xb3,0xd1,0xf0,0x6d,0x95,0x00,0x64,0x32,0x21,0x4a, + 0x7f,0x25,0x4e,0xe9,0xbc,0xbe,0xe9,0x82,0x34,0x9b,0x8b,0x47,0xec,0x78,0x23,0x5a,0xf2,0xde,0xff,0xe0, + 0xbe,0x0e,0xa8,0xcf,0x20,0xcc,0x69,0x45,0x20,0xf2,0xa3,0x26,0x83,0x10,0x7f,0x0d,0xc7,0x71,0xe3,0x48, + 0x20,0x9a,0x31,0xe8,0xcd,0xce,0x6a,0x54,0xd4,0x44,0xd5,0x59,0xc5,0x7c,0x2a,0x09,0x3e,0xdd,0x94,0xad, + 0x98,0xe1,0x70,0x90,0xba,0xed,0x91,0x60,0x6e,0xcd,0x0b,0xdb,0x86,0x9b,0xde,0xf1,0xd4,0xf5,0xd3,0xe6, + 0xa2,0xc4,0x34,0xa0,0x74,0x64,0x18,0xbe,0x58,0xdf,0x4b,0x83,0xb3,0x92,0xfe,0x87,0x9a,0xa3,0x8d,0x35, + 0x73,0x2e,0x5a,0xaf,0xcc,0xb7,0xe9,0x8e,0xe8,0x0c,0xd9,0x90,0x29,0x1d,0xa2,0xdb,0x4d,0x5e,0x75,0x74, + 0x18,0x8c,0x6a,0x05,0x4c,0x6f,0xe5,0x57,0xd4,0xc2,0x6d,0x71,0x5d,0x8a,0x68,0xdc,0xb4,0xdb,0xb5,0x93, + 0xba,0xe1,0x70,0x77,0x1b,0x5e,0xd4,0x77,0xd1,0xc1,0x5f,0xfe,0xf1,0x24,0xe8,0x1e,0xa8,0xb7,0xfc,0x78, + 0x89,0xc7,0x47,0x34,0x4d,0x0f,0xa3,0x23,0xf5,0x2a,0xba,0xad,0x5e,0x47,0x77,0xd4,0x0b,0x7a,0x7f,0x13, + 0xdd,0x55,0x4f,0xa2,0x7b,0xea,0x69,0xf4,0xa5,0xfa,0x31,0xfa,0x4a,0x7d,0x1b,0xfd,0x53,0x3d,0x06,0x43, + 0xff,0x78,0xf8,0x62,0x14,0x5d,0x5d,0x2e,0x43,0xfa,0x55,0xcc,0x06,0x86,0xc3,0x3b,0xea,0xd1,0x48,0x79, + 0x43,0x2f,0x1c,0xbe,0x19,0x29,0x3a,0xe4,0xc3,0xe1,0x8f,0xa3,0x8d,0x7a,0x3c,0x3c,0xd2,0x39,0x8f,0xe8, + 0x6b,0x8f,0xbe,0xde,0x6e,0xcd,0x75,0x5b,0xe7,0xba,0x5d,0xaf,0xef,0x50,0xff,0x0a,0x57,0x29,0x2f,0xc8, + 0x7e,0x87,0xb2,0xdf,0x94,0x4f,0x71,0xab,0xea,0xa1,0x69,0x97,0x9f,0xb8,0x65,0x3c,0x49,0xdb,0xf4,0x84, + 0xea,0xde,0x50,0x75,0xde,0x2d,0xfa,0xf4,0x04,0xe5,0x6e,0x79,0xb7,0xc2,0xe1,0xd3,0x6a,0x38,0xea,0x15, + 0x3d,0x8d,0x3c,0x54,0xf6,0x5a,0x0a,0x7e,0xcb,0xf6,0x7c,0xf8,0x24,0xdd,0x79,0x62,0xca,0x23,0xa1,0x96, + 0xe3,0x89,0xce,0xf1,0x94,0x72,0x70,0xbd,0x5b,0x39,0xd0,0x90,0x2c,0xcc,0x4f,0x6c,0xf3,0x4c,0xa4,0x5a, + 0xb1,0x4a,0xd6,0x6c,0xcb,0xb9,0xde,0x1f,0x0c,0x8f,0x27,0xbd,0x51,0x77,0x7d,0x8b,0x7d,0x60,0xdd,0x5a, + 0x7b,0xec,0x16,0xcb,0x0b,0x28,0x1f,0x1c,0x13,0x5d,0x83,0xb6,0xda,0xb1,0xd6,0x4b,0x07,0x6b,0x31,0x94, + 0xbd,0xa4,0x43,0x6d,0x5b,0x42,0xe5,0x62,0x2c,0x07,0x61,0x41,0x85,0x34,0x69,0x91,0x67,0x99,0xb0,0x77, + 0x31,0x42,0xf9,0x60,0xc3,0xad,0xa2,0xfd,0x23,0x3a,0x1a,0x5f,0x70,0xdc,0xbb,0x19,0xc0,0x05,0x7b,0x66, + 0x36,0x7c,0x38,0xaa,0x19,0x77,0x98,0x73,0x2a,0x63,0x5d,0x1e,0x81,0x5e,0xb8,0x28,0x94,0x0f,0xb0,0xd5, + 0x1f,0x3e,0x6a,0x29,0x01,0x49,0xed,0x20,0x8b,0x8a,0x30,0xeb,0x12,0xe1,0x4f,0x99,0x5e,0xd5,0x32,0xa1, + 0x10,0x51,0x46,0x53,0x82,0x7d,0xfa,0xf6,0xba,0xf6,0x0d,0x1a,0x91,0x0f,0x0e,0x83,0xe9,0xfe,0x3e,0x75, + 0xef,0x8d,0x92,0xac,0xf6,0x2e,0x12,0xbd,0xdd,0xc1,0xd5,0x87,0x9f,0x45,0x13,0x76,0x99,0x67,0xc5,0xa2, + 0xe8,0x3b,0xd4,0x31,0xfb,0x5a,0x06,0x3e,0x67,0x87,0xf1,0xab,0x6e,0x17,0xfe,0x13,0x59,0x59,0x08,0x3e, + 0x17,0x57,0xb8,0xb1,0xd8,0x69,0xf0,0xd3,0xfc,0xa1,0x7b,0xc4,0xd8,0x1a,0x62,0xa3,0x27,0x74,0x2a,0xdf, + 0x62,0xb5,0xae,0xf5,0x1a,0xef,0x4f,0xf7,0xf6,0x08,0x2c,0xf0,0x6e,0x7d,0x77,0x53,0xb5,0x84,0xad,0xa9, + 0xe2,0x6e,0xa2,0xfb,0x88,0x08,0xcb,0x7e,0xa0,0xad,0xb8,0x16,0x10,0x8b,0x81,0xce,0x59,0x46,0x8f,0x87, + 0xf3,0x51,0x40,0x78,0x67,0xbd,0x5e,0xb2,0x22,0xe8,0x7a,0xfd,0x2d,0x64,0xcb,0xdf,0x1a,0xad,0x20,0x6e, + 0x13,0x76,0x2c,0xca,0x8f,0xa3,0xd9,0x30,0xa7,0x3d,0x38,0x92,0x7b,0xd8,0x1c,0x1b,0xad,0x88,0xec,0x94, + 0x16,0x03,0xc8,0x10,0x79,0xf8,0xc4,0xff,0x04,0xb5,0x0a,0xa2,0xc8,0x5e,0xae,0x8e,0x45,0xd9,0xcd,0x12, + 0xa4,0x06,0x46,0xa8,0xf7,0x2a,0x01,0xd9,0xb5,0x51,0x2e,0x90,0x9d,0x25,0x25,0x40,0x8c,0x05,0xb9,0x8d, + 0xb3,0x11,0x32,0xf2,0xa4,0x72,0xd0,0x5a,0x5d,0xc2,0x18,0xef,0xdb,0x06,0x3e,0xe1,0xb1,0x96,0xc7,0x5d, + 0x34,0x28,0x0c,0x84,0x77,0x43,0xd7,0x8d,0x3b,0xed,0x5a,0x4d,0x8e,0xb5,0x4f,0x65,0x6a,0x46,0x48,0x5a, + 0xbb,0xe0,0xce,0xfb,0xc6,0xf1,0x76,0x3c,0x2c,0x86,0xcb,0x91,0x73,0xd9,0x01,0x65,0xb3,0xe0,0x4a,0xdc, + 0x50,0x69,0xdb,0x84,0x38,0x1a,0xab,0x65,0x85,0x4c,0x63,0xd9,0xad,0xcf,0xaf,0xd9,0x39,0xfd,0x8a,0xff, + 0xc3,0x3c,0x41,0x5b,0xd6,0xde,0x2e,0x09,0xf1,0xb8,0x5e,0x7b,0x49,0xb6,0xff,0xcb,0x2b,0x8f,0xe5,0xb9, + 0x75,0x5e,0xbb,0xfa,0xc6,0x16,0x49,0x9a,0xc5,0x65,0xf2,0x52,0x87,0x31,0x77,0x64,0x40,0x92,0x0e,0x2b, + 0xca,0xcc,0x11,0xf1,0x70,0x6a,0x5f,0xbb,0xb2,0x3e,0x97,0x0b,0x3e,0x79,0x9b,0xf2,0xf7,0x12,0xac,0x66, + 0xcf,0x3e,0xaf,0xd7,0x60,0x94,0x77,0x75,0x96,0xf3,0x74,0x09,0x57,0x20,0x68,0x5b,0x9e,0x44,0xe0,0x69, + 0xbc,0x4b,0xb3,0x50,0x81,0x65,0x0b,0xb5,0x74,0x70,0xb5,0x91,0xc3,0xf7,0x0a,0xcb,0xbb,0xb3,0x23,0x4f, + 0xa6,0x75,0x3d,0x50,0xd6,0x87,0x72,0x32,0xbb,0xe9,0x52,0xc8,0x4d,0x31,0x2d,0xb4,0xca,0x1e,0x2c,0x12, + 0x29,0xdb,0xa5,0x0e,0x44,0xe2,0xee,0x5c,0xf3,0x49,0xd7,0x5b,0x9f,0x50,0xdc,0xbc,0x83,0xb0,0x97,0x6f, + 0xee,0xa4,0xd6,0xbf,0x80,0x1b,0x60,0xf9,0xc2,0xcb,0xaa,0x9a,0xb8,0x72,0x17,0x40,0x48,0x50,0x92,0xf9, + 0xfe,0xa0,0x01,0xf9,0x1a,0xab,0xf8,0x3b,0x18,0x6c,0xb6,0x5e,0x17,0x7e,0x22,0x15,0xd6,0xb6,0x8b,0x84, + 0xd3,0x36,0x46,0xe9,0x27,0x70,0x1a,0xfb,0xeb,0x73,0xdf,0xdc,0x77,0x66,0xaa,0x0e,0x35,0x21,0xdc,0x37, + 0x0a,0xa8,0x10,0xd9,0xd5,0x00,0x92,0x30,0x56,0x35,0xf0,0x08,0x97,0x44,0x91,0xa9,0x9f,0xa3,0xab,0x8b, + 0xf3,0xf0,0x6a,0x53,0x15,0xa4,0xe7,0x66,0x49,0x4a,0xaa,0x17,0xbd,0xaa,0x38,0xbc,0x4d,0xb3,0x0f,0xa8, + 0x4b,0x60,0x86,0x3f,0x9a,0x69,0xc3,0x4b,0xeb,0x0a,0xd0,0x87,0x8d,0x39,0x5c,0x9e,0xbb,0xae,0x87,0x65, + 0xb0,0x2d,0xdb,0x6b,0x66,0x7c,0x41,0x4b,0x7d,0xfd,0xc6,0x3b,0xa4,0x2f,0x15,0xd8,0xd3,0xea,0x10,0x0d, + 0x89,0x85,0x81,0x6a,0xac,0x6a,0xe6,0x4d,0x36,0xca,0x6d,0xb4,0x95,0xdd,0xdf,0xf6,0x85,0x50,0x5f,0xe8, + 0x4a,0xdd,0xcc,0xad,0xea,0x1a,0xd9,0x41,0xad,0xb2,0x86,0xe1,0x00,0x73,0x7b,0x6e,0x08,0x93,0xcc,0xb1, + 0xd5,0x94,0xa0,0x76,0xd9,0x83,0xfd,0xa3,0x40,0xee,0xa7,0xc7,0x90,0x63,0x42,0x41,0xd2,0x6f,0xe9,0x93, + 0x6a,0x76,0xa7,0x26,0xdb,0x6a,0x9a,0x57,0x8a,0x88,0xb0,0xe6,0x12,0x9c,0x26,0xaf,0xb7,0xcb,0x85,0x7c, + 0x6f,0x17,0x55,0xd7,0x42,0x54,0xb8,0x06,0x0d,0x8d,0xc9,0x70,0xed,0x1b,0x66,0xad,0x4e,0x91,0x9b,0x45, + 0x88,0x11,0x64,0x27,0xe8,0xcd,0xc4,0xad,0xc0,0x17,0x1b,0x75,0x35,0x49,0x92,0x85,0xa8,0x26,0x6f,0x8f, + 0x4e,0x8b,0x31,0xeb,0x47,0xfd,0x4e,0x85,0x9a,0x68,0xa3,0x55,0xf8,0x6b,0xeb,0xc4,0x29,0x4d,0x2c,0x93, + 0xf3,0xfa,0x3c,0xb0,0x80,0xcc,0x99,0x0c,0x01,0x7c,0x67,0x36,0xd8,0xb3,0xc7,0x2e,0xb1,0xbf,0xb0,0x62, + 0x31,0x5f,0xd9,0x2f,0x7f,0xa3,0xff,0xea,0x2a,0x3d,0x27,0x52,0x3d,0x85,0xbc,0x5d,0x86,0xf0,0x33,0x2a, + 0xa6,0xfd,0xee,0xf6,0xb9,0xb1,0x08,0xc8,0x64,0xf6,0xe6,0x35,0x59,0x63,0x0d,0x00,0xf4,0x55,0x0b,0xb8, + 0x97,0xec,0x01,0xfc,0xe7,0xe6,0x39,0x71,0x73,0xf9,0xfa,0xe5,0x82,0xa9,0xa6,0xb6,0xf9,0x6f,0xae,0xc4, + 0xbd,0x68,0x30,0x55,0xc8,0xbc,0xdc,0x30,0x56,0x73,0xe9,0x5e,0xe5,0x5f,0x26,0x65,0xcb,0xee,0xc3,0x6a, + 0xf0,0x7c,0xeb,0xb7,0x6a,0xda,0x4b,0x6e,0xac,0x8e,0x91,0x6e,0x6a,0xb4,0x9e,0xbb,0xa5,0xfc,0xa7,0x76, + 0xa2,0x5e,0xcc,0x74,0x46,0x23,0xc3,0x8f,0xf6,0x42,0xe7,0x71,0xb3,0xb7,0x37,0x6a,0xcf,0x65,0xee,0xa6, + 0xc1,0xad,0x1f,0xad,0xdb,0xe6,0xaa,0x17,0x69,0xaf,0xdf,0x21,0x0d,0x90,0xbd,0x15,0x61,0x7f,0xb4,0xb5, + 0xd6,0x12,0xd7,0x57,0xd5,0xde,0x8b,0x6b,0x6e,0x18,0xea,0x5b,0xde,0x05,0xf7,0x8f,0x2d,0xaf,0xd9,0x3c, + 0xdb,0xa5,0x1b,0xc0,0xfe,0xb1,0x4a,0x1a,0x1b,0x69,0xbb,0xae,0x1a,0xcc,0x7f,0xac,0xa6,0xda,0x5e,0x6a, + 0xd4,0x03,0xe5,0x32,0xed,0xd5,0xa9,0xa6,0x6b,0x44,0xcc,0x55,0x6a,0x6b,0x82,0x81,0xb7,0x96,0xe3,0x6b, + 0x68,0xd0,0x42,0x7f,0x03,0x39,0x72,0x21,0xcf,0x64,0xd9,0x10,0x85,0xd3,0x11,0x0c,0x37,0xc2,0xac,0xd1, + 0x58,0xba,0xfc,0xd6,0xa5,0xc4,0x5a,0x5c,0xe2,0xc0,0x68,0xaa,0xf0,0x1d,0x94,0xa9,0x1b,0xaa,0x91,0x70, + 0xcd,0x5a,0xdb,0xc5,0x60,0x89,0xe1,0x0d,0x35,0xc9,0xbf,0x85,0x7d,0xc7,0x51,0x45,0x52,0xd5,0x29,0xa0, + 0x44,0xc7,0xdd,0xad,0x93,0xfd,0x63,0xcb,0x32,0x8c,0xc5,0x60,0x88,0x55,0x31,0x4d,0x44,0xe2,0x1d,0x56, + 0x20,0x70,0xdb,0x70,0xb4,0x53,0xcd,0x25,0x29,0x22,0x85,0x13,0xd7,0x54,0xcb,0xb7,0x31,0x6c,0xe0,0x96, + 0x9e,0xd8,0xb8,0x56,0xdd,0x2a,0x1a,0x1b,0x3e,0x60,0x55,0x59,0x4f,0xff,0x2b,0xf4,0x02,0xf6,0x52,0xe2, + 0x9b,0xc0,0x58,0x70,0x38,0xce,0xc3,0x5f,0xe9,0xe1,0xc3,0x5c,0xd4,0x84,0x68,0xe1,0x08,0x05,0x2b,0x4e, + 0x0e,0x57,0x8d,0x79,0x44,0xc1,0x26,0x0c,0xb8,0x21,0xa5,0xa3,0x4c,0x41,0xc7,0x59,0x7c,0x15,0x1c,0xf8, + 0xff,0x0a,0x87,0xc7,0x97,0xc7,0xfb,0x27,0xeb,0xde,0xa8,0x1b,0x1c,0x9c,0x55,0xda,0xe6,0x63,0x68,0x3e, + 0x2c,0xc1,0xa7,0x2e,0x1b,0x57,0xce,0x3c,0x57,0xa2,0xee,0xb1,0x1c,0x8e,0x11,0xef,0x67,0xa5,0xad,0xbb, + 0xfd,0xdb,0x01,0x9c,0x05,0x68,0x8a,0xd3,0xae,0x27,0xf7,0x62,0x4e,0xbd,0xf0,0x8a,0xf8,0x52,0x0b,0xf1, + 0xf4,0x2c,0x11,0xe1,0x59,0x25,0x0a,0x35,0x1e,0x8a,0x7b,0x04,0x5d,0x4b,0x0d,0xd6,0x60,0xf1,0xe7,0x1c, + 0xcd,0x0c,0x5a,0xec,0xea,0xa8,0xf3,0x04,0x0a,0xed,0x10,0xb9,0x89,0xa5,0x77,0x32,0xe9,0xb0,0x8a,0xbb, + 0xf6,0x61,0xb8,0x88,0xaa,0x02,0xfd,0x69,0xb4,0xd0,0x61,0x53,0xb8,0x6f,0x8b,0xc6,0xf1,0x87,0xa8,0xe4, + 0x22,0xa2,0x5f,0x34,0xaf,0x31,0xe7,0x7a,0x22,0x89,0xa1,0xf3,0xcd,0x30,0x9d,0x9d,0x47,0xc3,0x9c,0xab, + 0x29,0x14,0x8d,0x06,0xb1,0x35,0x89,0x5e,0xa9,0x69,0x10,0xc6,0x15,0xeb,0x57,0x5f,0x2c,0xad,0x68,0x5b, + 0x5f,0xae,0xba,0xe0,0xb7,0x42,0xbc,0xf5,0x19,0xb5,0x81,0x58,0x2a,0x2d,0xa0,0x28,0x19,0x14,0xda,0xc2, + 0x0c,0xf1,0xd2,0x1b,0x6d,0xd9,0x21,0x6f,0x61,0x08,0xb3,0xc1,0xdc,0xed,0xe4,0x36,0x96,0x28,0x58,0x95, + 0xda,0x7c,0x56,0x02,0x4d,0x80,0x30,0xa0,0x3f,0x2d,0x25,0x88,0x3b,0x1a,0x66,0x55,0x09,0x1d,0x70,0x7e, + 0x1c,0x8e,0x9b,0x7d,0xda,0x82,0xd4,0x8a,0x42,0xd4,0xfe,0x87,0x9a,0x6a,0x86,0xfb,0x77,0xfb,0xf1,0xfe, + 0x7e,0xe7,0xc1,0x61,0x3f,0x80,0xea,0x9f,0xa3,0x92,0x1a,0x77,0xef,0x32,0x1f,0xbe,0x63,0x55,0x6b,0x3c, + 0x7d,0xfd,0x92,0x6a,0xd4,0xa6,0xdd,0x21,0xe4,0xb0,0xf4,0x5b,0x5a,0x66,0x3a,0xb1,0xd1,0xe8,0x2a,0xa8, + 0xc8,0x94,0xe6,0x3a,0x9b,0x37,0xd9,0x80,0x62,0x3d,0xe1,0x8a,0xa5,0x0c,0xf1,0xf9,0xf2,0x7a,0x78,0x5d, + 0x7d,0x3e,0xbc,0x6a,0x9d,0x96,0xb9,0x03,0xb2,0x35,0x65,0xa9,0xd2,0x2a,0x4b,0xe5,0x95,0x7d,0xfd,0x36, + 0x2c,0x52,0xf7,0x09,0x75,0x14,0xda,0x0f,0x74,0x7d,0xda,0xeb,0x38,0xbb,0x71,0x6d,0xb0,0x35,0xdf,0x47, + 0xd0,0xff,0xe5,0xf9,0x4e,0x1a,0x2a,0xc0,0x10,0x4b,0xe9,0xee,0x0a,0xb4,0x06,0x34,0x85,0xba,0xa7,0x05, + 0x8e,0x10,0xee,0x96,0xde,0x4d,0x2d,0x94,0x26,0x1b,0x65,0xdb,0xe1,0x24,0xc6,0x5c,0xa8,0x79,0x30,0xb4, + 0x60,0x33,0xa3,0x1d,0xb7,0xbd,0x6c,0xc9,0xf5,0xcb,0x06,0x3c,0xa3,0x8f,0x84,0xd6,0xc5,0xca,0xff,0xee, + 0x62,0xb9,0xf4,0x7e,0x2a,0x67,0xd6,0x47,0x56,0x06,0xbd,0xc9,0x55,0xd1,0xe0,0x43,0x9a,0xa3,0xac,0xce, + 0xff,0xc1,0xf6,0x91,0x92,0x88,0x7a,0x5f,0x35,0xbb,0xf6,0xba,0x96,0x0b,0x5f,0x37,0xd5,0x90,0x08,0x84, + 0x9e,0xd7,0xdc,0x83,0xe3,0xd6,0x09,0xb6,0x56,0x47,0x62,0xbe,0xbb,0x05,0x16,0xf7,0xfa,0x4b,0x0d,0x16, + 0xf1,0x70,0xe9,0x82,0xc5,0xb2,0x7b,0xaf,0xd2,0xd8,0x1b,0x54,0x52,0xb1,0x94,0x15,0xaf,0x8f,0x02,0x95, + 0xfb,0x1a,0x67,0x38,0xe0,0x32,0x16,0x8a,0x83,0xda,0xb6,0xf0,0x10,0xd3,0x91,0x97,0x72,0x87,0xe5,0x9c, + 0x6f,0xc0,0x70,0xbd,0xd7,0xae,0xd2,0xf2,0x10,0x92,0xc9,0xad,0xfe,0xde,0xee,0x17,0xba,0xbf,0xec,0x1f, + 0xa1,0xea,0x6f,0xd1,0xbd,0x6d,0xc1,0x38,0xb5,0xfd,0x1a,0xeb,0x8e,0xa5,0x9f,0x0a,0xc7,0x2a,0xb1,0x3d, + 0x37,0x81,0x66,0xd2,0xe6,0x4c,0x37,0x51,0xaf,0x63,0x2a,0x2d,0x16,0x6a,0x5b,0xbd,0xbe,0xd3,0xcf,0x75, + 0xaf,0x0b,0xd8,0x18,0x55,0xbd,0xce,0xbb,0x77,0xcc,0x15,0x5b,0x03,0xbb,0x15,0x41,0x85,0xd9,0xea,0x00, + 0xca,0xd2,0x24,0x5c,0xf1,0x8c,0xb6,0x98,0xfc,0xf2,0x3a,0x1d,0x75,0xd9,0x60,0x38,0x70,0x6e,0x9a,0x84, + 0xa4,0x51,0x25,0x7d,0xad,0xe9,0x4e,0xb5,0x10,0x8a,0x96,0xf7,0x73,0xa8,0x6d,0x42,0x70,0x90,0x3f,0x36, + 0x2a,0x5b,0x5e,0x5f,0x19,0x3b,0xc8,0x6c,0xa9,0xa5,0x29,0xa1,0xd9,0xd6,0xe6,0xfa,0x94,0x4a,0x66,0xbd, + 0x55,0x99,0xce,0x7b,0xe2,0x13,0xf1,0xda,0xde,0xb6,0x0d,0xbe,0xce,0x24,0xdc,0x30,0xfa,0x06,0x9b,0x70, + 0xed,0x24,0x5c,0x5b,0x69,0x6d,0x00,0xdb,0xb5,0xb5,0x4e,0xc6,0xdf,0xae,0xec,0x9a,0x49,0x69,0x1f,0xc4, + 0xd6,0xdc,0x88,0xa6,0x49,0xfa,0xc1,0xb6,0xdf,0x42,0x90,0x18,0x62,0x15,0x5e,0x06,0x53,0x02,0x58,0x20, + 0x6d,0xa2,0xd2,0x97,0x01,0xe4,0x9d,0x30,0x36,0xe5,0x4b,0x04,0x21,0x66,0xf1,0x1d,0x2e,0xc1,0xdc,0x8f, + 0xdb,0x5c,0x02,0xd2,0x61,0x5d,0xd0,0xf5,0x4e,0x4e,0x10,0x29,0xc1,0x1c,0xb0,0xdb,0x02,0xdc,0xe1,0xca, + 0xe2,0x2f,0xf8,0x73,0xfa,0x68,0x46,0x16,0x13,0xb6,0x68,0x57,0xfa,0x31,0x94,0x8e,0xd5,0x5c,0xf3,0xcd, + 0x5b,0x32,0xbe,0x93,0xc9,0x16,0x2a,0x60,0xee,0xc3,0x76,0xfc,0x9a,0x6a,0x45,0x61,0x51,0x6a,0x74,0xaf, + 0x3b,0xb6,0xe6,0xb4,0x3a,0x08,0x9a,0x47,0xe1,0xb5,0x12,0x1b,0x95,0x5d,0x7f,0x36,0x16,0xff,0x27,0xce, + 0x46,0x71,0x51,0x98,0xd8,0xb3,0xb1,0x80,0x89,0x7f,0x7d,0x5e,0x26,0xad,0xa4,0xc9,0x75,0x38,0xfd,0xe8, + 0x7a,0x9c,0x7e,0x34,0xd2,0x86,0x15,0x2e,0xda,0xca,0xb7,0xcc,0x94,0x8c,0xfd,0xc3,0x60,0x4b,0x97,0x1e, + 0x86,0xda,0x03,0x89,0xfe,0x8c,0x4b,0x7e,0x18,0x16,0x71,0xd4,0x12,0x78,0x87,0xe0,0xda,0xf8,0x38,0x73, + 0xde,0x11,0x97,0x94,0x5e,0x38,0xea,0xaa,0x2f,0x05,0x39,0xe0,0xaa,0x98,0x2f,0x65,0x1f,0x31,0x5f,0xca, + 0xc4,0x7c,0x49,0xca,0x04,0xaa,0xe5,0xfb,0xd1,0x48,0xb7,0xc6,0x56,0x4b,0x1a,0x1e,0x11,0xdc,0x9e,0x23, + 0x97,0x36,0x10,0x8f,0x2b,0x51,0xb8,0x01,0xed,0xd4,0x64,0x0a,0xd7,0x22,0x9d,0x6b,0x2a,0xac,0x61,0x89, + 0x66,0x4d,0xad,0x08,0xe7,0x6f,0x55,0x74,0x0d,0xb2,0x69,0xeb,0xfa,0xf5,0xa8,0x46,0x5a,0xfe,0x7f,0x8a, + 0x68,0x9a,0xb7,0x41,0xd7,0xa0,0x99,0x96,0x6c,0x15,0x92,0x71,0x27,0xf0,0x46,0x14,0x93,0x7d,0x22,0x8a, + 0xa9,0x55,0x7a,0x23,0x82,0x91,0xdc,0x37,0xa3,0x97,0x86,0x2c,0xf7,0xff,0x3a,0x72,0xc9,0x6e,0x46,0x2e, + 0xed,0xae,0x95,0xfe,0x3f,0x72,0x69,0x41,0x2e,0x99,0x45,0x2e,0x5a,0x13,0x44,0x0c,0x05,0xb4,0x08,0x28, + 0x25,0x82,0xcf,0x99,0x58,0xf5,0x73,0x40,0xf3,0x1c,0x5f,0xc4,0xe9,0x3c,0x3e,0x4d,0xe7,0x29,0xbe,0x47, + 0x57,0xf5,0xf3,0x32,0x7c,0x5f,0xbb,0x09,0x0c,0x4f,0xb0,0x34,0xac,0xd1,0x3b,0x9f,0xbb,0x71,0x7b,0xe1, + 0x8b,0x61,0x16,0x11,0x14,0x5e,0x10,0xec,0x53,0xd2,0xde,0x9e,0x06,0xb8,0x99,0x49,0x31,0x26,0x96,0x3d, + 0x2f,0xe0,0x11,0x95,0xa6,0x1a,0x09,0xc9,0xd4,0xd6,0xdf,0xf7,0x54,0xba,0xea,0xad,0xb7,0x2b,0xfa,0xab, + 0x57,0x04,0xa5,0xe1,0x75,0x02,0x57,0x64,0x81,0x13,0x9b,0x2c,0x9a,0x5d,0x53,0x65,0x56,0xab,0xb2,0xdc, + 0xae,0x6f,0xfb,0x7e,0xcc,0xbd,0xf9,0xf9,0x3f,0x02,0x7e,0x5a,0x6f,0xd5,0x58,0x64,0x57,0xfc,0x14,0xb1, + 0x2d,0xc4,0x85,0x5a,0xb3,0xaf,0x26,0xad,0x5e,0xba,0xbc,0xca,0x66,0x53,0x59,0x45,0x7c,0x7c,0x8c,0xe3, + 0xcf,0x1b,0xe4,0x16,0x83,0x93,0xb6,0xb1,0x65,0xa9,0x65,0x70,0x52,0x77,0x98,0x29,0xd8,0x32,0xcd,0xe5, + 0xd7,0x87,0x99,0x3b,0xec,0x59,0x8e,0x71,0x5a,0xeb,0xb4,0x7c,0x6b,0x9c,0x2a,0xb3,0x23,0x2d,0x3e,0x67, + 0xa4,0xc9,0xe7,0x8f,0x54,0x23,0xcb,0x7a,0x5f,0x0b,0x66,0x9e,0x12,0x65,0xf5,0x7e,0x8b,0x2d,0xde,0xf1, + 0xd3,0x7b,0x35,0xf9,0xef,0x85,0xb1,0x8a,0x27,0x36,0x36,0x7b,0x13,0x07,0xba,0x5a,0xb8,0xdd,0x4f,0x1d, + 0x47,0xcb,0xde,0xfb,0xef,0x1d,0x47,0x76,0xf3,0x38,0x60,0x73,0xfd,0x2e,0xcd,0xfc,0x53,0x3c,0x5a,0xe3, + 0x3f,0xdf,0xc3,0x3e,0xe7,0x08,0x0d,0x63,0x1d,0xd5,0x9d,0x1d,0x87,0xcd,0xaa,0xf8,0x63,0xfe,0xa5,0xb8, + 0x59,0xbc,0xd4,0x5a,0x3b,0xd4,0x5f,0xab,0x3a,0x20,0x46,0x51,0xcf,0x41,0x0a,0xbd,0x2a,0x0b,0x2a,0x7c, + 0x46,0x98,0xb2,0x5f,0x88,0x7d,0x54,0xd1,0xd3,0xd1,0xc4,0x81,0x19,0x35,0xae,0x8b,0xbc,0xaf,0x7a,0x77, + 0x7a,0x77,0x3c,0xd5,0x66,0xaa,0x25,0x91,0x9e,0xf7,0xf6,0x74,0xc4,0xe7,0x5f,0x11,0x83,0xa6,0x7a,0xee, + 0xad,0x96,0x89,0xff,0x9c,0x10,0xb3,0x56,0x1f,0xb2,0xd6,0x2e,0x57,0x49,0x16,0x5e,0x71,0x54,0xcd,0xd0, + 0x7b,0x55,0xc6,0x69,0xb1,0xf4,0xd4,0xf2,0xfd,0xb2,0x4c,0xce,0x9f,0x3e,0xa6,0x14,0x7e,0xea,0x3c,0x7d, + 0xec,0xa9,0x69,0x5a,0x9c,0x5f,0xc6,0x45,0xf2,0xab,0xf4,0x25,0xf4,0xbe,0xd5,0x09,0x1d,0xdd,0xbb,0xb0, + 0xe3,0xa9,0x71,0xbe,0x78,0x2f,0x91,0x33,0xbc,0x47,0xe6,0xb1,0xf3,0xbf,0xfe,0x67,0xe7,0xf6,0xe1,0xd1, + 0x57,0x9d,0xe7,0x71,0xf1,0xb6,0x73,0x11,0x67,0x9d,0x9f,0x93,0x6c,0x79,0x99,0xaf,0x26,0xb4,0xad,0xe6, + 0x79,0x0c,0x8f,0x5b,0xa1,0xf7,0x72,0x9e,0xc0,0x70,0x90,0xa3,0x19,0x74,0x74,0x6a,0x47,0x26,0x4a,0x87, + 0x7c,0xef,0xf5,0x7a,0x9e,0xe2,0x95,0xfa,0x86,0x83,0x6e,0x84,0xde,0x43,0xbc,0xd4,0xd2,0x5e,0xc5,0x17, + 0x5c,0x9b,0xfc,0x72,0x89,0xcb,0x74,0x9a,0xd2,0xc0,0xca,0xd5,0x32,0xbc,0x8a,0xc7,0x70,0x50,0xb9,0xc8, + 0xd3,0xac,0xb4,0x83,0x7e,0xf8,0x12,0x1d,0x9f,0xa4,0xcb,0xf8,0x94,0xce,0x8c,0xd0,0x7b,0xac,0x9f,0x88, + 0x5a,0x60,0x6f,0x17,0x79,0x86,0xe8,0x74,0x36,0xfb,0x6f,0xe9,0xb7,0xe9,0x35,0x05,0x54,0x8a,0x40,0x23, + 0xde,0xd3,0x09,0x2e,0x6d,0xb3,0xfc,0xd5,0x2b,0x9e,0x41,0xfa,0xdb,0x81,0x69,0xe8,0x34,0xa7,0x45,0xa3, + 0xb9,0x1d,0xc7,0x19,0x02,0x48,0xc0,0xd4,0x82,0x0a,0xbf,0xa2,0xd7,0xce,0xd8,0xbc,0x63,0x02,0xb3,0x8c, + 0x80,0xeb,0x5b,0x3a,0x3c,0xf1,0x59,0x7e,0x3b,0x65,0xde,0xd1,0x1f,0x6c,0x0e,0xea,0xd7,0x8f,0xf9,0x92, + 0xe7,0xd9,0xbc,0xd3,0xb4,0x2d,0x4b,0xee,0x99,0xce,0xa3,0x7b,0x67,0xdf,0x10,0x9b,0x63,0xa9,0xa7,0xa2, + 0x8c,0x4f,0x5f,0xdb,0x55,0xa7,0x14,0x4f,0xe9,0x01,0x3e,0x92,0x00,0x2f,0x1d,0xc9,0x48,0xb3,0x40,0x14, + 0x02,0xc2,0x3c,0xd4,0xca,0xbc,0xd6,0x69,0x28,0x75,0x9e,0x98,0x44,0x7a,0xf4,0xd4,0x79,0x8e,0xbe,0xe8, + 0xa4,0xe7,0xfc,0xe2,0x6d,0x9c,0x5e,0xbb,0xd5,0x54,0x7d,0xaf,0x9a,0xaf,0x86,0xc3,0xe2,0xf4,0xa4,0xe4, + 0x66,0xdc,0x95,0xf3,0x9e,0x64,0x98,0xf0,0x8e,0xa4,0x75,0x38,0xb1,0x96,0xe3,0x7b,0xce,0xf5,0x70,0x3e, + 0xcf,0x2f,0x97,0x34,0xef,0xf0,0x95,0x24,0x7b,0xb6,0x53,0x75,0xa3,0x33,0x2d,0xf2,0xf3,0xce,0xfb,0x7c, + 0x55,0x74,0x26,0xc9,0x45,0x3a,0x4e,0x30,0xc9,0xc0,0x38,0x1d,0xd9,0x05,0xda,0xdd,0x08,0x17,0xaf,0x81, + 0x61,0x67,0xb1,0x2a,0x16,0xf9,0x32,0x59,0xf6,0x3a,0xaf,0x67,0x89,0xc9,0x5d,0xcf,0x42,0xb5,0x68,0xfa, + 0x87,0x6a,0xa0,0xf7,0x59,0x59,0x2e,0xc2,0x83,0x83,0xa3,0xaf,0x6f,0xf7,0x8e,0xbe,0xfc,0x67,0xef,0xa8, + 0x77,0xf7,0xa0,0x73,0x39,0x4b,0x32,0xb4,0xdf,0xc1,0x16,0xb2,0x4b,0x84,0x5e,0xa4,0x25,0x55,0xcd,0x27, + 0x78,0xd9,0xc9,0xa7,0xd3,0x4e,0xbc,0xec,0x2c,0x73,0x38,0x70,0x58,0x76,0x34,0x44,0xa2,0x73,0x09,0x5a, + 0x31,0xcd,0x26,0x13,0x85,0xcf,0x54,0x80,0x12,0xd9,0x10,0x39,0x19,0x23,0x15,0xb7,0x76,0x71,0xf6,0x9e, + 0xb6,0xd5,0xfb,0x5e,0xe7,0x0f,0x6a,0x0c,0xe0,0x16,0xcf,0xe9,0x75,0xd9,0xb1,0xe4,0x4d,0x47,0x10,0x51, + 0x07,0x14,0x38,0x7a,0x7b,0xfa,0xbe,0x03,0x4d,0x24,0x6c,0xc0,0x72,0x56,0x9f,0xe6,0x8e,0x8e,0x77,0xb3, + 0xca,0x88,0x09,0xe3,0xaf,0x3f,0x3e,0x79,0xdc,0x99,0x63,0x9b,0x2f,0x3b,0xab,0x05,0x6d,0x37,0x77,0xcf, + 0x98,0x85,0x72,0x7b,0x5d,0xcb,0x21,0x0b,0xa5,0x97,0xbc,0x6d,0xf6,0x69,0x36,0x78,0x89,0xf2,0xcb,0xac, + 0x83,0x9d,0xd7,0x29,0xd8,0x1d,0x4f,0xaf,0xa3,0xd1,0x05,0x47,0x59,0xe2,0x7e,0x60,0x9f,0x29,0x02,0x99, + 0x25,0x61,0x96,0x62,0x42,0x83,0x9e,0xd0,0x99,0x51,0xd0,0x97,0xe6,0xf2,0x9d,0x26,0x04,0x16,0xe8,0xe8, + 0x32,0x9d,0xc8,0xf6,0xf4,0x94,0x29,0x46,0x68,0x48,0x3f,0xd1,0x36,0x9a,0x8d,0x17,0xa1,0xf7,0x0b,0x35, + 0xf2,0xf8,0xfb,0x47,0x2f,0xe5,0x5d,0x03,0xd6,0xaa,0xcc,0xcf,0xe1,0x07,0x07,0xf1,0x50,0x68,0xda,0x97, + 0xe9,0x59,0x46,0x0b,0x9e,0x75,0x9e,0xbe,0xec,0xe8,0x80,0xcd,0xed,0xc0,0x24,0x4b,0x40,0x67,0xdf,0x29, + 0x4d,0x0b,0x16,0x85,0x26,0x94,0x32,0xbe,0x4d,0x92,0x85,0x5e,0x08,0xcc,0xec,0x1c,0xe5,0x01,0x18,0xb0, + 0x17,0x20,0x30,0x89,0x4b,0xbc,0xdd,0x22,0x28,0x99,0xe4,0x40,0x6a,0x84,0x67,0x16,0xba,0x19,0x42,0x36, + 0xb6,0x49,0x1a,0xd1,0xea,0x34,0x4b,0xca,0xf3,0x78,0xf9,0x96,0xc6,0xc5,0xcf,0x1d,0xbc,0x78,0xea,0x8c, + 0xce,0x16,0x5a,0xf2,0xd0,0xfb,0x4e,0x1e,0x3c,0x35,0x23,0x4c,0x21,0xc6,0x5b,0xdf,0xeb,0xa7,0x2a,0xed, + 0x65,0xe5,0x6c,0x94,0xd0,0x87,0xb6,0xd7,0xa2,0x9a,0xc6,0xb6,0xa5,0x8d,0x3d,0x0c,0xdc,0xcd,0x6c,0xce, + 0x03,0xbb,0x95,0xed,0x01,0x21,0x47,0x23,0xb0,0x4f,0x36,0xb7,0x88,0xf4,0x75,0x11,0x2f,0xb6,0x8e,0x9a, + 0x4f,0x3b,0x6b,0x92,0xff,0xda,0x51,0xf3,0x84,0x36,0x5e,0x7e,0x96,0x64,0xa7,0xf3,0xf4,0x6d,0xe7,0x2c, + 0xa1,0x95,0xa1,0xdd,0x73,0x9a,0x7c,0x48,0xcf,0xe8,0x58,0x2c,0x3b,0xf3,0x78,0x42,0x19,0x2e,0x18,0x2f, + 0x5b,0xc0,0x49,0xb6,0x4f,0x9f,0xd7,0x79,0x02,0xb8,0x49,0xb2,0xd6,0x13,0xe8,0x1b,0x5b,0x5f,0xbe,0x58, + 0xce,0xe3,0x38,0xfb,0x5b,0x87,0xd1,0x2f,0x69,0x49,0x87,0xf4,0x78,0x16,0xbf,0x4d,0xe6,0x9f,0x7e,0x22, + 0xd5,0x4b,0xe9,0x63,0xe9,0x15,0x75,0x62,0x01,0x93,0xc9,0x49,0xf3,0x70,0x4a,0xa9,0x93,0x67,0xc9,0x45, + 0x4e,0x34,0x45,0xd6,0x7e,0x40,0xc5,0x53,0x42,0xf6,0x79,0xb6,0x7d,0x3e,0x3d,0xa3,0x8f,0x67,0x09,0xa6, + 0x2b,0x29,0xb4,0xef,0x54,0x82,0x94,0xb7,0xa8,0xa7,0x79,0x4e,0xfd,0x5a,0xe5,0xa0,0xcc,0xf3,0xbc,0x40, + 0xa6,0xfa,0x59,0xf5,0x13,0x7a,0x82,0x9a,0xa4,0x2b,0x9f,0x72,0x5a,0x7d,0xbf,0x4a,0x27,0xe9,0x59,0xf2, + 0xb7,0x4e,0xab,0x37,0x93,0xc6,0x69,0xf5,0x4d,0x72,0x99,0x40,0xb7,0xf2,0xda,0xf3,0xaa,0x1a,0x83,0xed, + 0x80,0x33,0x2c,0x17,0x5c,0x1a,0x27,0xd6,0x43,0x17,0x87,0x12,0x83,0x2a,0x6b,0xc3,0xa0,0x53,0x65,0x9b, + 0x71,0xd6,0xe7,0x71,0xfc,0xb6,0xec,0xcc,0xb0,0x79,0x09,0x48,0xe7,0xe9,0x1b,0xc2,0xc9,0xe7,0x1d,0xcc, + 0xb1,0x9c,0x61,0xf6,0xb0,0x48,0x13,0x00,0x69,0x3c,0xe5,0x6f,0x04,0x81,0x74,0x5a,0x12,0xaa,0xc8,0xe2, + 0x18,0x27,0xda,0x87,0xa4,0x83,0x0d,0x66,0xf1,0x68,0x22,0xcb,0x82,0xaa,0xe8,0xe4,0xa8,0x52,0xed,0x01, + 0x02,0x77,0x91,0x9d,0xc7,0xf5,0x52,0x84,0x91,0x28,0xcb,0x69,0x92,0x21,0xd4,0x3b,0x16,0x39,0x8d,0x5b, + 0x8f,0x32,0xfa,0x4e,0x2d,0xbf,0x71,0x7b,0x36,0x4b,0x4e,0x01,0x54,0xe7,0x18,0x4c,0xaf,0xf3,0x4a,0xc6, + 0x2b,0xfd,0xc2,0x69,0x43,0x38,0x21,0x45,0x5f,0x79,0x9c,0x6e,0x1f,0xe8,0x18,0x43,0x28,0xcb,0x0f,0x29, + 0xc6,0x8b,0xdc,0x0c,0x9d,0xa7,0xc9,0x45,0x92,0xd2,0x29,0x43,0xe7,0x19,0x1d,0xbb,0x3f,0x24,0x9d,0xb7, + 0x74,0x00,0xb9,0xb5,0xe5,0xf9,0x5b,0x77,0x5a,0x09,0x53,0xd2,0xb1,0x9d,0x2f,0x30,0xd6,0xda,0xd4,0x13, + 0x4a,0x5d,0x60,0x4c,0x93,0x62,0xf5,0x16,0xd3,0x41,0x4c,0x08,0xba,0x3e,0x91,0x73,0x2c,0x06,0x34,0xd3, + 0x24,0x36,0x8f,0x31,0x67,0x8d,0xb1,0xa1,0xf9,0x20,0xd2,0x50,0xee,0xe4,0x93,0xe5,0xd3,0x79,0xb7,0x97, + 0x00,0x95,0xd3,0x14,0x25,0x04,0xad,0x8d,0xb3,0xec,0xd7,0xd5,0xbc,0x33,0x4b,0x79,0x83,0xd1,0x69,0x85, + 0x19,0xe1,0x7d,0x49,0xd9,0x2e,0xe3,0xf1,0xac,0xbc,0xcc,0x71,0xa0,0xa5,0x34,0x35,0x49,0x85,0x92,0x12, + 0xca,0xc9,0x11,0xe8,0x56,0x3c,0xad,0x9d,0x9c,0xb6,0x0d,0xf6,0x01,0x4f,0xc7,0xf2,0xda,0xe3,0xed,0x37, + 0x5b,0xa1,0x39,0xe0,0xbe,0x4b,0x4e,0x8b,0x15,0xe1,0xc1,0xea,0x90,0x9b,0xd5,0x0e,0x39,0x9a,0x53,0x06, + 0x30,0x3e,0x68,0x08,0xfb,0xd3,0x94,0x25,0x97,0xe9,0x9b,0x0f,0x80,0xb9,0x38,0xdb,0x1a,0x66,0xaf,0xf3, + 0x1b,0x01,0x20,0x15,0x4a,0xdf,0x64,0x0c,0xbb,0x97,0x44,0x27,0xd0,0xb0,0x9d,0xb5,0x42,0x31,0x5c,0xcf, + 0xd3,0x80,0xe8,0xcf,0x87,0xf4,0x0d,0xbe,0x5f,0x26,0x34,0xec,0x4b,0xc0,0x2e,0xbd,0x9c,0x27,0x89,0xc6, + 0xc7,0xa7,0xb0,0xc6,0xdd,0x3e,0xf0,0xe8,0xf1,0xda,0xe3,0x2e,0x29,0x3e,0xe5,0xc0,0x8b,0xcf,0xaf,0x39, + 0xf0,0x5e,0x01,0x43,0x52,0x3f,0x26,0xe6,0xc8,0x43,0x5b,0x9f,0x7b,0xe0,0x9d,0xa6,0x6f,0x2e,0x93,0xe2, + 0x2d,0xe3,0xb0,0x4d,0xe5,0x42,0x8e,0xa3,0x35,0x10,0xd3,0x62,0x39,0x5c,0x08,0x5d,0xb5,0x0f,0xa1,0x4a, + 0x19,0x9f,0x0e,0x10,0xea,0x7f,0x5e,0xf4,0xe6,0xb4,0x13,0x56,0xc4,0xa4,0x35,0x35,0xe3,0x3d,0x00,0x9e, + 0xd5,0xb3,0xb7,0x7a,0x89,0x41,0x5f,0x57,0xe7,0x5f,0x25,0xf3,0xd0,0xfb,0x07,0xa1,0x04,0x9a,0x39,0xaa, + 0x3a,0x2c,0x15,0xeb,0xad,0x5f,0x99,0x13,0x70,0xe7,0x50,0x2d,0xe5,0x98,0xda,0x39,0x32,0xc7,0xe2,0x53, + 0x82,0xef,0x31,0x9a,0x0d,0xbd,0xb5,0x47,0xcc,0x2c,0x92,0x89,0x61,0x3f,0xe3,0x59,0xa7,0x6c,0x31,0x73, + 0xbc,0xaf,0xe3,0x53,0xb8,0x67,0x13,0x14,0x6c,0xf8,0xbe,0xab,0xea,0x10,0xd7,0x95,0xf1,0x59,0x67,0x3e, + 0xbb,0x89,0x9b,0xfa,0x09,0xb8,0x08,0x89,0xfd,0x94,0x43,0x8b,0x9a,0x48,0x09,0x1c,0x0f,0x7b,0xfc,0x7f, + 0x75,0xd4,0xd5,0x72,0xe8,0xe3,0xe0,0xb0,0x9e,0xb5,0x8e,0xad,0xed,0x4a,0xf3,0x35,0xbc,0x8b,0x85,0x31, + 0x6c,0x5d,0x29,0xea,0xc2,0x06,0xe1,0x3c,0x76,0x7b,0xf0,0x1b,0x6f,0x8b,0x1d,0x6e,0x82,0xdf,0x1d,0x30, + 0xe3,0x77,0x03,0x5b,0xac,0xe6,0x47,0x15,0x26,0x8b,0x65,0x38,0xd4,0x36,0xaa,0xf7,0x0e,0x37,0x4a,0x3f, + 0x7e,0xea,0xd3,0x57,0x9f,0x5f,0xe4,0xf6,0xbd,0x1b,0x32,0x8e,0x68,0x46,0xd8,0x54,0x6f,0xcb,0x17,0xbe, + 0xb6,0x29,0xb2,0x3e,0x2c,0x19,0x70,0x61,0xb2,0xee,0x7b,0xfc,0xe8,0xd9,0xa8,0x33,0x3f,0x36,0xc0,0x02, + 0x57,0xfa,0x3d,0x21,0xe4,0x80,0xbc,0x64,0x09,0x11,0xb3,0xe6,0x5d,0x9a,0xb3,0x2e,0xb7,0xef,0x1d,0xc4, + 0x8b,0xf4,0x40,0xaf,0xba,0x17,0xf4,0x88,0xf6,0xce,0x6a,0xd6,0xd7,0xdb,0x5e,0x0c,0xb5,0x49,0xba,0x9f, + 0x58,0x09,0x87,0x24,0x05,0x9b,0xa0,0x27,0x4e,0x38,0xdc,0xf2,0xc6,0x77,0xe2,0x3c,0x3f,0xc3,0xf5,0x86, + 0x69,0x1b,0xce,0xe1,0x86,0xcd,0x6e,0x54,0x10,0xf1,0xb9,0x3d,0xa9,0x4a,0x7e,0x56,0x67,0x46,0xba,0x19, + 0xe9,0xc8,0x72,0x41,0xf3,0x3f,0x71,0x2d,0xcb,0x33,0x0e,0xc3,0x55,0xe6,0x8b,0xd6,0x89,0xd5,0x5b,0x24, + 0xda,0x39,0xda,0x40,0xcf,0x5d,0x8b,0x7e,0xb0,0x43,0x88,0xb0,0xac,0x58,0xe2,0x6b,0x64,0x64,0x65,0x4f, + 0xb6,0x33,0x3b,0x21,0x90,0x47,0xc8,0xbe,0xa5,0x2b,0x08,0xf2,0xb7,0x3d,0x29,0xaa,0xda,0x27,0xa5,0x33, + 0xe4,0x9e,0x49,0xad,0x6d,0x9c,0x5a,0x0e,0xe7,0x83,0xdd,0x4e,0xb5,0x0c,0x3a,0x51,0x36,0x58,0xfd,0x0b, + 0xa5,0x54,0xbb,0xad,0xf6,0xc9,0xa4,0xca,0xf6,0xab,0x7d,0x42,0x0a,0x76,0x63,0x2d,0x31,0x5d,0xb8,0x1b, + 0xb3,0xde,0x8a,0x4d,0xb7,0x7b,0xb5,0xf6,0x5d,0x27,0x6e,0x5a,0xe0,0xe2,0x93,0x56,0xba,0x51,0x0c,0x56, + 0x1b,0x66,0xce,0x65,0xf5,0x5a,0xf7,0xcf,0xb5,0x4b,0xa7,0x97,0x9e,0x36,0xd4,0x59,0x82,0x38,0xa1,0x26, + 0x01,0xd2,0x94,0x22,0x5a,0x26,0xe5,0x53,0xf0,0xb8,0xb4,0xb5,0xdd,0x26,0xb5,0x65,0x78,0xbd,0x74,0xb7, + 0xab,0xea,0x09,0xda,0x51,0xd8,0x51,0x68,0x93,0x6d,0x77,0x22,0xef,0xc0,0x73,0x8c,0xc0,0x3b,0xb7,0x5b, + 0xf3,0xec,0xd7,0xf2,0xdc,0x69,0xcd,0x73,0x7c,0x5c,0xcb,0x74,0xb7,0x35,0x13,0x1d,0x29,0xcd,0x91,0x12, + 0xda,0xbe,0x7d,0xef,0x90,0xa7,0x6b,0x7b,0x53,0xb8,0xb3,0x35,0x26,0x56,0xbf,0xb0,0x93,0xa0,0xef,0xd8, + 0xaa,0x29,0xa2,0x1a,0x68,0xdb,0x1b,0x9c,0x44,0x45,0xf4,0xe9,0xd2,0x66,0xbe,0x53,0x1d,0x3e,0x06,0x4a, + 0x7b,0xfa,0x74,0x31,0x3a,0xa2,0x2e,0x43,0xe2,0x19,0x03,0xfc,0xeb,0xca,0xca,0x71,0xa4,0x67,0x59,0xbb, + 0x43,0xbb,0x6d,0xdc,0x9e,0x19,0x88,0x23,0x5e,0xa1,0xaf,0x97,0x41,0x4f,0x10,0xff,0x58,0x9f,0x6b,0x72, + 0x87,0x69,0x66,0xb8,0x5e,0x18,0x7d,0x10,0x27,0x6b,0xa1,0x71,0x9c,0xd2,0xd6,0xcf,0x4d,0xfb,0x14,0xbc, + 0xae,0x05,0x38,0xff,0x9c,0x69,0xe8,0xf0,0x89,0xb0,0x9d,0x0d,0x64,0x6e,0xcf,0xf0,0x99,0x5e,0xf0,0x99, + 0xf3,0xf3,0x09,0x75,0x83,0x55,0xa5,0x7a,0xf5,0x7c,0x7d,0x42,0x01,0xe1,0x64,0x4d,0x91,0xdb,0x9f,0x52, + 0xa4,0xc6,0xe0,0x9a,0x92,0x77,0x42,0xf7,0xbe,0xaf,0x65,0x2c,0xe9,0xc2,0xc0,0xf7,0x27,0x34,0x51,0xe3, + 0x92,0x4d,0x13,0xf7,0x3e,0xa3,0xa4,0xe6,0x9a,0x4d,0xd1,0xe6,0xf2,0xdf,0xb4,0x3e,0x15,0x68,0xc0,0x1b, + 0x49,0xf3,0xd4,0xbe,0xe1,0x14,0x19,0x10,0xce,0xc1,0xce,0x22,0xee,0x84,0x10,0x4c,0xb3,0xb0,0xba,0x97, + 0xdc,0x09,0xc2,0xeb,0x8f,0xdb,0x03,0x4d,0x1d,0x36,0xd1,0x64,0xab,0xbb,0x67,0x73,0xea,0x96,0xce,0x8c, + 0x47,0xc9,0x67,0x9c,0xba,0x5b,0xb8,0xf8,0xe6,0xbe,0x43,0xa3,0x45,0xc8,0x5b,0x43,0xae,0x5f,0x33,0x1f, + 0xbc,0x5d,0xf4,0x9c,0xb8,0x48,0x1e,0x38,0xba,0x4e,0x1f,0x47,0x87,0xda,0x63,0x23,0x08,0x70,0xdc,0x68, + 0xc3,0x36,0xb2,0x6f,0x7c,0x80,0xfb,0xde,0x34,0xc5,0x8d,0x80,0x25,0xba,0x68,0xda,0xb4,0xd7,0xf0,0x6f, + 0xde,0x3f,0xe5,0xcf,0xd2,0x8f,0x6f,0x91,0x8d,0x3d,0x0d,0x25,0x4b,0xdc,0x65,0x6b,0x3b,0xef,0xab,0x52, + 0x06,0x14,0xde,0xf9,0x32,0xb9,0xab,0xf2,0xec,0x97,0x3a,0x6d,0x5e,0xb7,0x1f,0x6c,0x74,0x8c,0xdd,0x05, + 0x17,0xb8,0x79,0xf0,0x8f,0x0e,0x0f,0xbf,0x10,0x42,0x23,0x99,0x1c,0xc0,0xcf,0x60,0x19,0xc3,0x8d,0x53, + 0xbf,0x46,0x25,0x4c,0x2d,0x4b,0x83,0x4b,0xcc,0xed,0x03,0xd2,0x9d,0x7f,0x4f,0x0c,0x12,0x3b,0x4b,0xb8, + 0x6d,0xfc,0x9b,0xcb,0xb5,0xd5,0x61,0x22,0xcc,0x9d,0xe3,0xf4,0xe6,0x39,0xe3,0x98,0xad,0x30,0x9f,0xc3, + 0xba,0xe2,0xaa,0x6e,0xf3,0xbf,0x01,0x22,0xb6,0x27,0xc8,0x5c,0xdc,0x01,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 76ae8d0..5833678 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,11 +4,11 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 0; +const uint8_t VersionMetadata = 3; const char VersionBranch[] = "release/2.0"; -const char VersionSha[] = "3099dd8a0e2e5fa771e6a864a1daa83de5998df0"; +const char VersionSha[] = "61d544f6f347c875e64b1e79985eeabd52ee1c9f"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+0"; -const char VersionCommitDate[] = "2017-10-05"; +const char VersionFullSemVer[] = "2.0.0-beta.1+3"; +const char VersionCommitDate[] = "2018-01-03"; #endif diff --git a/src/debug.cpp b/src/debug.cpp index a43be50..00065a7 100644 --- a/src/debug.cpp +++ b/src/debug.cpp @@ -11,7 +11,8 @@ void _dinit() { #ifdef SerialDebug Serial.begin(SerialDebugBaudrate); - Serial.setDebugOutput(true); + // Enable if you want detailed WiFi state logging + //Serial.setDebugOutput(true); delay(SerialDebugStartupDelay); #endif } \ No newline at end of file diff --git a/src/global.cpp b/src/global.cpp index ed8fd77..e0af11a 100644 --- a/src/global.cpp +++ b/src/global.cpp @@ -9,6 +9,8 @@ ConnectionSettings* connectionSettings = new ConnectionSettings(); bool connectionSettingsChanged = false; +bool shouldReboot = false; + uint32_t currentTime; diff --git a/src/global.h b/src/global.h index 1931b61..7d5657e 100644 --- a/src/global.h +++ b/src/global.h @@ -14,6 +14,9 @@ extern ConnectionSettings* connectionSettings; extern bool connectionSettingsChanged; + +extern bool shouldReboot; + extern uint32_t currentTime; extern IPAddress emptyIP; diff --git a/src/main.cpp b/src/main.cpp index 24198fb..c611dca 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,6 +19,7 @@ extern "C" { #include "global.h" #include "server/static.h" #include "server/api.h" +#include "server/firmware.h" ADC_MODE(ADC_VCC); @@ -42,10 +43,15 @@ bool forceAccessPoint = false; uint32_t stationModeStart = 0; +#ifdef SerialDebug +uint32_t memoryStatusTime = 0; +#endif + void setup() { _dinit(); + currentTime = millis(); if (!SPIFFS.begin()) @@ -70,6 +76,7 @@ void setup() _dln("Setup :: registering routes"); registerStaticRoutes(&server); registerAPIRoutes(&server); + registerFirmwareRoutes(&server); _dln("Setup :: starting HTTP server"); server.onNotFound(handleNotFound); @@ -79,8 +86,26 @@ void setup() void loop() { + if (shouldReboot) + { + _dln("Reboot requested, bye bye!"); + delay(100); + ESP.restart(); + } + currentTime = millis(); + + #ifdef SerialDebug + if (currentTime - memoryStatusTime >= 5000) + { + _d("Memory :: available: "); + _dln(ESP.getFreeHeap()); + memoryStatusTime = currentTime; + } + #endif + + if (connectionSettingsChanged) { _dln("Loop :: connection settings changed"); diff --git a/src/server/firmware.cpp b/src/server/firmware.cpp index e99ccf8..28b932a 100644 --- a/src/server/firmware.cpp +++ b/src/server/firmware.cpp @@ -5,51 +5,70 @@ * https://git.x2software.net/pub/Stairs */ #include "firmware.h" +#include "../config.h" #include "../debug.h" #include "../global.h" -void handleFileUpload(AsyncWebServerRequest *request, const String& filename, size_t index, uint8_t *data, size_t len, bool final) + +void handleFirmware(AsyncWebServerRequest *request) { - _d("Firmware :: handleFileUpload: index = "); _d(index); + shouldReboot = !Update.hasError(); + + AsyncWebServerResponse *response = request->beginResponse(200, "text/plain", shouldReboot ? "OK" : "FAIL"); + response->addHeader("Connection", "close"); + request->send(response); +} + +void handleFirmwareFile(AsyncWebServerRequest *request, String filename, size_t index, uint8_t *data, size_t len, bool final) +{ + _d("Firmware :: file upload: index = "); _d(index); _d(", len = "); _d(len); _d(", final = "); _dln(final); - uint32_t maxSketchSpace = (ESP.getFreeSketchSpace() - 0x1000) & 0xFFFFF000; - if (index == 0) + if (!index) { - if (Update.begin(maxSketchSpace)) - Update.runAsync(true); - else - _dln("Firmware :: failed to start"); - } + uint32_t maxSketchSpace = (ESP.getFreeSketchSpace() - 0x1000) & 0xFFFFF000; + _d("Firmware :: update start, max sketch space: "); + _dln(maxSketchSpace); - if (Update.write(data, len) == len) - { - if(final) + Update.runAsync(true); + if (!Update.begin(maxSketchSpace)) { #ifdef SerialDebug - - if (Update.end(true)) - Serial.println("Update succesful!"); - else - Update.printError(Serial); - - #else - - Update.end(true); - + Update.printError(Serial); + #endif + } + } + + if (!Update.hasError()) + { + if (Update.write(data, len) != len) + { + #ifdef SerialDebug + Update.printError(Serial); + #endif + } + } + + if (final) + { + if (Update.end(true)) + { + _dln("Firmware :: success"); + } + else + { + _dln("Firmware :: failed"); + #ifdef SerialDebug + Update.printError(Serial); #endif } } - #ifdef SerialDebug - else - Update.printError(Serial); - #endif } void registerFirmwareRoutes(AsyncWebServer* server) { - server.onFileUpload(handleFileUpload); + server->on("/firmware", HTTP_POST, handleFirmware, handleFirmwareFile); } \ No newline at end of file diff --git a/src/server/static.cpp b/src/server/static.cpp index 8864355..070971d 100644 --- a/src/server/static.cpp +++ b/src/server/static.cpp @@ -9,27 +9,21 @@ #include "../assets/html.h" #include "../assets/js.h" #include "../assets/css.h" -#include "../assets/images.h" -void handleStatic(AsyncWebServerRequest *request, const String& contentType, PGM_P content) +void handleGzipped(AsyncWebServerRequest *request, const String& contentType, const uint8_t * content, size_t len) { _d("HTTP :: static: "); _dln(request->url()); - request->send_P(200, contentType, content); + AsyncWebServerResponse *response = request->beginResponse_P(200, contentType, content, len); + response->addHeader("Content-Encoding", "gzip"); + request->send(response); } void registerStaticRoutes(AsyncWebServer* server) { - server->on("/", HTTP_GET, [](AsyncWebServerRequest *request) { handleStatic(request, "text/html", EmbeddedIndex); }); + server->on("/", HTTP_GET, [](AsyncWebServerRequest *request) { handleGzipped(request, "text/html", EmbeddedIndex, sizeof(EmbeddedIndex)); }); - server->on("/bundle.js", HTTP_GET, [](AsyncWebServerRequest *request) { handleStatic(request, "text/javascript", EmbeddedBundleJS); }); - server->on("/bundle.css", HTTP_GET, [](AsyncWebServerRequest *request) { handleStatic(request, "text/css", EmbeddedBundleCSS); }); - - server->on("/logo.png", HTTP_GET, [](AsyncWebServerRequest *request) - { - _d("HTTP :: static: "); _dln(request->url()); - AsyncWebServerResponse *response = request->beginResponse_P(200, "image/png", EmbeddedLogo, sizeof(EmbeddedLogo)); - request->send(response); - }); + server->on("/bundle.js", HTTP_GET, [](AsyncWebServerRequest *request) { handleGzipped(request, "text/javascript", EmbeddedBundleJS, sizeof(EmbeddedBundleJS)); }); + server->on("/bundle.css", HTTP_GET, [](AsyncWebServerRequest *request) { handleGzipped(request, "text/css", EmbeddedBundleCSS, sizeof(EmbeddedBundleCSS)); }); } \ No newline at end of file diff --git a/web/app.js b/web/app.js index 0e46695..d63ab2f 100644 --- a/web/app.js +++ b/web/app.js @@ -15,6 +15,7 @@ function startApp() loading: true, saving: false, loadingIndicator: '|', + uploadProgress: false, activeTab: 'status', @@ -73,7 +74,6 @@ function startApp() self.startLoadingIndicator(); self.updateWiFiStatus(); - setInterval(self.updateWiFiStatus, 5000); axios.get('/api/version') .then(function(response) @@ -155,7 +155,6 @@ function startApp() self.loadingTimer = setInterval(function() { self.loadingStage++; - console.log(self.loadingStage); switch (self.loadingStage) { case 1: self.loadingIndicator = '/'; break; @@ -230,23 +229,68 @@ function startApp() updateWiFiStatus: function() { var self = this; - if (self.saving) return; - - axios.get('/api/connection/status') - .then(function(response) - { - if (typeof response.data == 'object') - self.wifiStatus = response.data; - }) - .catch(function(error) - { - console.log(error); - }); + if (!self.saving) + { + axios.get('/api/connection/status') + .then(function(response) + { + if (typeof response.data == 'object') + self.wifiStatus = response.data; + }) + .catch(function(error) + { + console.log(error); + }) + .then(function() + { + setTimeout(self.updateWiFiStatus, 5000); + }); + } + else + setTimeout(self.updateWiFiStatus, 5000); }, uploadFirmware: function() { - // + var self = this; + if (self.saving) return; + + self.saving = true; + self.uploadProgress = 0; + + + var data = new FormData(); + data.append('file', document.getElementById('firmwareFile').files[0]); + + var config = { + timeout: 360000, + onUploadProgress: function(progressEvent) + { + self.uploadProgress = Math.round((progressEvent.loaded * 100) / progressEvent.total); + } + }; + + axios.post('/firmware', data, config) + .then(function(response) + { + // TODO show "now updating, please wait" + console.log("Update sent"); + + + }) + .catch(function(error) + { + console.log(error); + //output.innerHTML = err.message; + // TODO show error + }) + .then(function() + { + self.uploadProgress = false; + self.saving = false; + + document.getElementById('firmware').reset(); + }); } } }); diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 2f6a6c4..1cbdd68 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function Lt(t){return t&&(t.Ctor.options.name||t.tag)}function It(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Ft(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Lt(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Hr=t,zr=Wr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Vr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Hr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function $e(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ii?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ii,l=a,f=o.length):e===Fi?u>0&&(n=Fi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ii:Fi:null)?n===Ii?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ii&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Oe(e)}function Ie(t,e,n){Fe(t,e,n),(Pn||Rn)&&setTimeout(function(){Fe(t,e,n)},0)}function Fe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function He(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:To;return t.replace(n,function(t){return Oo[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),$n=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),xn=/\B([A-Z])/g,kn=p(function(t){return t.replace(xn,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",On=["component","directive","filter"],Tn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:Tn},En=/[^\w.$]/,Ln="__proto__"in{},In="undefined"!=typeof window,Fn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=Fn&&WXEnvironment.platform.toLowerCase(),Nn=In&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Dn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Dn,Hn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Vn=!1;if(In)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!In&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=In&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);qn="undefined"!=typeof Set&&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&$r[n].id>t.id;)n--;$r.splice(n+1,0,t)}else $r.push(t);Cr||(Cr=!0,z(ut))}}(this)},Tr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Tr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Tr.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Tr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(At.prototype);var Lr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Lr.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:D,defineReactive:O},t.set=T,t.delete=j,t.nextTick=z,t.options=Object.create(null),On.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,On.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,On.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Hr,Vr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",$i={create:de,update:de},xi={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Ti(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Vi),v(Et.options.components,Ji),Et.prototype.__patch__=In?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Tr(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&In?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Lo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for(x=t.slice(v);!(co.test(x)||ao.test(x)||lo.test(x)||fo.test(x)||(k=x.indexOf("<",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=""),e.chars&&$&&e.chars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===L&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status"},triggers:{tabTitle:"Triggers",timeTitle:"Time",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,loadingIndicator:"|",activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},steps:[{value:50},{value:0},{value:0},{value:0},{value:0},{value:70},{value:0},{value:0},{value:0},{value:0},{value:25},{value:0},{value:0},{value:0}]},created:function(){var e=this;document.title=t.t("title"),e.startLoadingIndicator(),e.updateWiFiStatus(),setInterval(e.updateWiFiStatus,5e3),axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)})]).then(axios.spread(function(t,n){e.stopLoadingIndicator(),e.loading=!1}))},methods:{applyConnection:function(){var t=this;t.saving||(t.saving=!0,axios.post("/api/connection",{hostname:t.connection.hostname,accesspoint:t.connection.accesspoint,station:t.connection.station,ssid:t.connection.ssid,password:t.connection.password,dhcp:t.connection.dhcp,ip:t.connection.ip,subnetmask:t.connection.subnetmask,gateway:t.connection.gateway}).then(function(t){}).catch(function(t){console.log(t)}).then(function(){t.saving=!1}))},startLoadingIndicator:function(){var t=this;t.loadingStage=0,t.loadingTimer=setInterval(function(){switch(t.loadingStage++,console.log(t.loadingStage),t.loadingStage){case 1:t.loadingIndicator="/";break;case 2:t.loadingIndicator="-";break;case 3:t.loadingIndicator="\\";break;case 4:t.loadingIndicator="|",t.loadingStage=0}},250)},stopLoadingIndicator:function(){clearInterval(this.loadingTimer)},getWiFiStationStatus:function(){if(!this.wifiStatus.station.enabled)return"disconnected";switch(this.wifiStatus.station.status){case 0:case 2:return"connecting";case 1:case 4:case 5:return"error";case 3:return"connected";case 6:default:return"disconnected"}},getWiFiStationStatusText:function(){if(!this.wifiStatus.station.enabled)return t.t("wifiStatus.stationmode.disabled");switch(this.wifiStatus.station.status){case 0:return t.t("wifiStatus.stationmode.idle");case 1:return t.t("wifiStatus.stationmode.noSSID");case 2:return t.t("wifiStatus.stationmode.scanCompleted");case 3:return this.wifiStatus.station.ip;case 4:return t.t("wifiStatus.stationmode.connectFailed");case 5:return t.t("wifiStatus.stationmode.connectionLost");case 6:default:return t.t("wifiStatus.stationmode.disconnected")}},updateWiFiStatus:function(){var t=this;t.saving||axios.get("/api/connection/status").then(function(e){"object"==typeof e.data&&(t.wifiStatus=e.data)}).catch(function(t){console.log(t)})},uploadFirmware:function(){}}})} \ No newline at end of file +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function It(t){return t&&(t.Ctor.options.name||t.tag)}function Lt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Ft(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=It(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Hr=t,zr=Wr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Vr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Hr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function $e(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Li?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Li,l=a,f=o.length):e===Fi?u>0&&(n=Fi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Li:Fi:null)?n===Li?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Li&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Ie(t,e){!0!==e.data.show&&Te(e)}function Le(t,e,n){Fe(t,e,n),(Pn||Rn)&&setTimeout(function(){Fe(t,e,n)},0)}function Fe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function He(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),$n=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),xn=/\B([A-Z])/g,kn=p(function(t){return t.replace(xn,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},En=/[^\w.$]/,In="__proto__"in{},Ln="undefined"!=typeof window,Fn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=Fn&&WXEnvironment.platform.toLowerCase(),Nn=Ln&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Dn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Dn,Hn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Vn=!1;if(Ln)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!Ln&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=Ln&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);qn="undefined"!=typeof Set&&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&$r[n].id>t.id;)n--;$r.splice(n+1,0,t)}else $r.push(t);Cr||(Cr=!0,z(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(At.prototype);var Ir={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Ir.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=z,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Hr,Vr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",$i={create:de,update:de},xi={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Vi),v(Et.options.components,Ji),Et.prototype.__patch__=Ln?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&Ln?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Io(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for(x=t.slice(v);!(co.test(x)||ao.test(x)||lo.test(x)||fo.test(x)||(k=x.indexOf("<",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=""),e.chars&&$&&e.chars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===I&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===L)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status"},triggers:{tabTitle:"Triggers",timeTitle:"Time",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},steps:[{value:50},{value:0},{value:0},{value:0},{value:0},{value:70},{value:0},{value:0},{value:0},{value:0},{value:25},{value:0},{value:0},{value:0}]},created:function(){var e=this;document.title=t.t("title"),e.startLoadingIndicator(),e.updateWiFiStatus(),axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)})]).then(axios.spread(function(t,n){e.stopLoadingIndicator(),e.loading=!1}))},methods:{applyConnection:function(){var t=this;t.saving||(t.saving=!0,axios.post("/api/connection",{hostname:t.connection.hostname,accesspoint:t.connection.accesspoint,station:t.connection.station,ssid:t.connection.ssid,password:t.connection.password,dhcp:t.connection.dhcp,ip:t.connection.ip,subnetmask:t.connection.subnetmask,gateway:t.connection.gateway}).then(function(t){}).catch(function(t){console.log(t)}).then(function(){t.saving=!1}))},startLoadingIndicator:function(){var t=this;t.loadingStage=0,t.loadingTimer=setInterval(function(){switch(t.loadingStage++,t.loadingStage){case 1:t.loadingIndicator="/";break;case 2:t.loadingIndicator="-";break;case 3:t.loadingIndicator="\\";break;case 4:t.loadingIndicator="|",t.loadingStage=0}},250)},stopLoadingIndicator:function(){clearInterval(this.loadingTimer)},getWiFiStationStatus:function(){if(!this.wifiStatus.station.enabled)return"disconnected";switch(this.wifiStatus.station.status){case 0:case 2:return"connecting";case 1:case 4:case 5:return"error";case 3:return"connected";case 6:default:return"disconnected"}},getWiFiStationStatusText:function(){if(!this.wifiStatus.station.enabled)return t.t("wifiStatus.stationmode.disabled");switch(this.wifiStatus.station.status){case 0:return t.t("wifiStatus.stationmode.idle");case 1:return t.t("wifiStatus.stationmode.noSSID");case 2:return t.t("wifiStatus.stationmode.scanCompleted");case 3:return this.wifiStatus.station.ip;case 4:return t.t("wifiStatus.stationmode.connectFailed");case 5:return t.t("wifiStatus.stationmode.connectionLost");case 6:default:return t.t("wifiStatus.stationmode.disconnected")}},updateWiFiStatus:function(){var t=this;t.saving?setTimeout(t.updateWiFiStatus,5e3):axios.get("/api/connection/status").then(function(e){"object"==typeof e.data&&(t.wifiStatus=e.data)}).catch(function(t){console.log(t)}).then(function(){setTimeout(t.updateWiFiStatus,5e3)})},uploadFirmware:function(){var t=this;if(!t.saving){t.saving=!0,t.uploadProgress=0;var e=new FormData;e.append("file",document.getElementById("firmwareFile").files[0]);var n={timeout:36e4,onUploadProgress:function(e){t.uploadProgress=Math.round(100*e.loaded/e.total)}};axios.post("/firmware",e,n).then(function(t){console.log("Update sent")}).catch(function(t){console.log(t)}).then(function(){t.uploadProgress=!1,t.saving=!1,document.getElementById("firmware").reset()})}}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 4d9adf8..d8e83e8 100644 --- a/web/index.html +++ b/web/index.html @@ -108,15 +108,19 @@
-
+

{{ $t('firmware.title') }}

- +
+ +
+ {{ uploadProgress }}% +
From 42647f0db7531529325d5e5686c4dd4517708984 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Thu, 4 Jan 2018 22:53:16 +0100 Subject: [PATCH 04/43] Reintroduced PCA9685 and Stairs classes Compiles, but lacks the tick implementation --- DEVELOPING.md | 6 +- src/assets/version.h | 8 +- src/components/PCA9685.cpp | 12 +- src/components/PCA9685.h | 2 +- src/config.h | 6 +- src/global.cpp | 6 + src/global.h | 7 + src/main.cpp | 388 +++++-------------------------------- src/mode.h | 29 --- src/protocol.h | 31 --- src/server/api.cpp | 96 +++------ src/server/settings.cpp | 98 ++++++++++ src/server/settings.h | 13 ++ src/server/shared.cpp | 10 + src/server/shared.h | 15 ++ src/settings/steps.cpp | 65 +++++++ src/settings/steps.h | 38 ++++ src/stairs.cpp | 246 +++++++++++------------ src/stairs.h | 36 ++-- 19 files changed, 491 insertions(+), 621 deletions(-) delete mode 100644 src/mode.h delete mode 100644 src/protocol.h create mode 100644 src/server/settings.cpp create mode 100644 src/server/settings.h create mode 100644 src/server/shared.cpp create mode 100644 src/server/shared.h create mode 100644 src/settings/steps.cpp create mode 100644 src/settings/steps.h diff --git a/DEVELOPING.md b/DEVELOPING.md index 693ea78..9cdd25f 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -54,4 +54,8 @@ If you make any changes to the SCSS files, make sure to run ```gulp compileSass` To rebuild all the assets and compile or upload the source in one go, two tasks have been added to the gulpfile.js: 1. ```gulp build``` first runs all the tasks run by a regular ```gulp```, then builds the source code using ```platformio run``` -1. ```gulp upload``` is similar, but executes ```platformio run -t upload``` to directly upload the newly compiled source to the ESP8266 \ No newline at end of file +1. ```gulp upload``` is similar, but executes ```platformio run -t upload``` to directly upload the newly compiled source to the ESP8266 + +### version.h + +The version.h file is generated based on the current GitVersion, which means it changes if you build again right after committing, which causes a change that needs to be committed... [did you mean: recursion?](https://www.google.nl/search?q=recursion) The best way I found to deal with this is commit your changes, build, then [amend the commit](https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History) with the updated version.h before pushing the changes. This ensures the version.h is in sync when cloning the repository. \ No newline at end of file diff --git a/src/assets/version.h b/src/assets/version.h index 5833678..baad0ab 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,11 +4,11 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 3; +const uint8_t VersionMetadata = 4; const char VersionBranch[] = "release/2.0"; -const char VersionSha[] = "61d544f6f347c875e64b1e79985eeabd52ee1c9f"; +const char VersionSha[] = "176fa2a7bae0e9604a70c69da27b68819b479b73"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+3"; -const char VersionCommitDate[] = "2018-01-03"; +const char VersionFullSemVer[] = "2.0.0-beta.1+4"; +const char VersionCommitDate[] = "2018-01-04"; #endif diff --git a/src/components/PCA9685.cpp b/src/components/PCA9685.cpp index 11e4621..fcc2f26 100644 --- a/src/components/PCA9685.cpp +++ b/src/components/PCA9685.cpp @@ -18,7 +18,7 @@ void PCA9685::setAddress(uint8_t address, uint8_t pinSDA, uint8_t pinSCL) void PCA9685::setAddress(uint8_t address) { - this->address = address; + this->mAddress = address; } @@ -26,11 +26,11 @@ uint8_t PCA9685::read(uint8_t registerAddress) { uint8_t result = 0; - Wire.beginTransmission(this->address); + Wire.beginTransmission(this->mAddress); Wire.write(registerAddress); Wire.endTransmission(); - Wire.requestFrom(this->address, (uint8_t)1); + Wire.requestFrom(this->mAddress, (uint8_t)1); if (Wire.available()) result = Wire.read(); @@ -40,7 +40,7 @@ uint8_t PCA9685::read(uint8_t registerAddress) void PCA9685::write(uint8_t registerAddress, uint8_t value) { - Wire.beginTransmission(this->address); + Wire.beginTransmission(this->mAddress); Wire.write(registerAddress); Wire.write(value); Wire.endTransmission(); @@ -97,7 +97,7 @@ void PCA9685::setPWM(uint8_t pin, uint16_t value) void PCA9685::setPWM(uint8_t pin, uint16_t on, uint16_t off) { - Wire.beginTransmission(this->address); + Wire.beginTransmission(this->mAddress); this->write(PCA9685::RegisterLED0OnL + (4 * pin)); this->write(on); this->write(on >> 8); @@ -124,7 +124,7 @@ void PCA9685::setAll(uint16_t value) void PCA9685::setAll(uint16_t on, uint16_t off) { - Wire.beginTransmission(this->address); + Wire.beginTransmission(this->mAddress); this->write(PCA9685::RegisterAllLEDOnL); this->write(on); this->write(on >> 8); diff --git a/src/components/PCA9685.h b/src/components/PCA9685.h index c459def..08dc822 100644 --- a/src/components/PCA9685.h +++ b/src/components/PCA9685.h @@ -11,7 +11,7 @@ class PCA9685 { private: - uint8_t address; + uint8_t mAddress; protected: uint8_t read(uint8_t registerAddress); diff --git a/src/config.h b/src/config.h index c0569d5..55ae8a6 100644 --- a/src/config.h +++ b/src/config.h @@ -14,7 +14,9 @@ static const char* DefaultAPSSIDPrefix = "Stairs-"; static const uint32_t StationModeTimeout = 30000; -/* +static const char* StepSettingsFile = "/stepsettings"; + + // Pins for the I2C bus static const uint8_t PinSDA = 13; static const uint8_t PinSCL = 12; @@ -23,6 +25,6 @@ static const uint8_t PinSCL = 12; // I2C address and PWM frequency of the PCA9685 board static const uint8_t PWMDriverAddress = 0x40; static const uint16_t PWMDriverPWMFrequency = 1600; -*/ + #endif \ No newline at end of file diff --git a/src/global.cpp b/src/global.cpp index e0af11a..f73addf 100644 --- a/src/global.cpp +++ b/src/global.cpp @@ -9,6 +9,12 @@ ConnectionSettings* connectionSettings = new ConnectionSettings(); bool connectionSettingsChanged = false; +StepsSettings* stepsSettings = new StepsSettings(); +bool stepsSettingsChanged = false; + + +Stairs* stairs; + bool shouldReboot = false; uint32_t currentTime; diff --git a/src/global.h b/src/global.h index 7d5657e..962b7d5 100644 --- a/src/global.h +++ b/src/global.h @@ -11,10 +11,17 @@ #include #include #include "settings/connection.h" +#include "settings/steps.h" +#include "stairs.h" extern ConnectionSettings* connectionSettings; extern bool connectionSettingsChanged; +extern StepsSettings* stepsSettings; +extern bool stepsSettingsChanged; + +extern Stairs* stairs; + extern bool shouldReboot; extern uint32_t currentTime; diff --git a/src/main.cpp b/src/main.cpp index c611dca..ed3fe7b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -15,11 +15,13 @@ extern "C" { #include "config.h" #include "debug.h" -#include "settings/connection.h" #include "global.h" +#include "components/PCA9685.h" +#include "settings/connection.h" #include "server/static.h" -#include "server/api.h" +#include "server/settings.h" #include "server/firmware.h" +#include "server/api.h" ADC_MODE(ADC_VCC); @@ -37,6 +39,8 @@ void handleNotFound(AsyncWebServerRequest* request); AsyncWebServer server(80); +PCA9685* pwmDriver; + bool accessPoint = false; bool stationMode = false; bool forceAccessPoint = false; @@ -58,6 +62,34 @@ void setup() _dln("Setup :: failed to mount file system"); connectionSettings->read(); + stepsSettings->read(); + + + _dln("Setup :: initializing PCA9685"); + pwmDriver = new PCA9685(); + pwmDriver->setAddress(PWMDriverAddress, PinSDA, PinSCL); + pwmDriver->setPWMFrequency(PWMDriverPWMFrequency); + + _dln("Setup :: initializing Stairs"); + stairs = new Stairs(); + stairs->init(pwmDriver); + + + _dln("Setup :: starting initialization sequence"); + stairs->setAll(0); + + stairs->set(0, 255); + delay(300); + + uint8_t stepCount = stepsSettings->count(); + for (int step = 1; step < stepCount; step++) + { + stairs->set(step - 1, 0); + stairs->set(step, 255); + delay(300); + } + + stairs->set(stepCount - 1, 0); _dln("Setup :: initializing WiFi"); WiFi.persistent(false); @@ -75,8 +107,9 @@ void setup() _dln("Setup :: registering routes"); registerStaticRoutes(&server); - registerAPIRoutes(&server); + registerSettingsRoutes(&server); registerFirmwareRoutes(&server); + registerAPIRoutes(&server); _dln("Setup :: starting HTTP server"); server.onNotFound(handleNotFound); @@ -88,7 +121,7 @@ void loop() { if (shouldReboot) { - _dln("Reboot requested, bye bye!"); + _dln("Loop :: reboot requested, so long and thanks for all the fish!"); delay(100); ESP.restart(); } @@ -144,6 +177,7 @@ void loop() } updateLED(); + stairs->tick(); } @@ -229,80 +263,7 @@ void wifiEvent(WiFiEvent_t event) void updateLED() { - //while (WiFi.status() != WL_CONNECTED) - //{ - - //} -} - - -void handleNotFound(AsyncWebServerRequest *request) -{ - _d("HTTP :: not found: "); _dln(request->url()); - request->send(404); -} - - - -/* -uint8_t currentModeIdentifier; -IMode* currentMode; - - -// Forward declarations -void checkRequest(); -void handleRequest(uint8_t* packet); -IMode* createMode(uint8_t identifier); -void setCurrentMode(IMode *mode, uint8_t identifier); -void handleCurrentMode(); - - - - -void setup() -{ - #ifdef SerialDebug - Serial.begin(115200); - delay(5000); - #endif - - - _dln("Initializing PCA9685"); - _d("Version: "); - _dln(FirmwareVersion); - - pwmDriver = new PCA9685(); - pwmDriver->setAddress(PWMDriverAddress, PinSDA, PinSCL); - pwmDriver->setPWMFrequency(PWMDriverPWMFrequency); - - _dln("Initializing Stairs"); - - stairs = new Stairs(); - stairs->init(pwmDriver); - - _dln("Initializing WiFi"); - WiFi.mode(WIFI_STA); - WiFi.hostname(WiFiHostname); - WiFi.begin(WiFiSSID, WiFiPassword); - - - _dln("Starting initialization sequence"); - stairs->setAll(IStairs::Off); - stairs->set(0, IStairs::On); - delay(300); - - for (int step = 1; step < StepCount; step++) - { - stairs->set(step - 1, IStairs::Off); - stairs->set(step, IStairs::On); - delay(300); - } - - stairs->set(StepCount - 1, IStairs::Off); - - - _dln("Waiting for WiFi"); - + /* // Pulsate the bottom step while WiFi is connecting uint16_t brightness = 0; uint16_t speed = 16; @@ -316,273 +277,12 @@ void setup() stairs->set(0, brightness); delay(16); } - - setCurrentMode(new StaticMode(), Mode::Static); - - - _d("IP address: "); - _dln(WiFi.localIP()); - - _dln("Starting UDP server"); - - // Start the UDP server - udpServer.begin(UDPPort); + */ } -uint32_t currentTime; - -// Note: the packet size must at least be able to accomodate the -// command with the largest parameter list, there is no overflow -// checking in the mode classes! -const uint8_t maxPacketSize = 255; - -uint8_t packet[maxPacketSize]; -uint8_t* packetRef; - -void loop() +void handleNotFound(AsyncWebServerRequest *request) { - currentTime = millis(); - - checkRequest(); - handleCurrentMode(); -} - - -void checkRequest() -{ - int packetSize = udpServer.parsePacket(); - if (packetSize) - { - _dln("Handling incoming packet"); - - memset(packet, 0, sizeof(packet)); - int length = udpServer.read(packet, maxPacketSize - 1); - if (length && packet[0]) - { - packetRef = packet; - handleRequest(packetRef); - } - } -} - - -void handlePing(uint8_t* packet) -{ - _dln("Handling Ping"); - - udpServer.write(Command::Ping); - udpServer.write(StepCount); -} - - -void handleGetMode(uint8_t* packet) -{ - _dln("Handling GetMode"); - - udpServer.write(Command::GetMode); - udpServer.write(currentModeIdentifier); - currentMode->write(&udpServer); -} - - -void handleSetMode(uint8_t* packet) -{ - _dln("Handling SetMode"); - uint8_t newIdentifier = *packet; - packet++; - - IMode* newMode = createMode(newIdentifier); - - if (newMode != NULL) - { - newMode->read(packet); - - udpServer.write(Command::SetMode); - udpServer.write(newIdentifier); - newMode->write(&udpServer); - - _dln("Updating current mode"); - setCurrentMode(newMode, newIdentifier); - } - else - { - udpServer.write(Command::Error); - udpServer.write(Command::SetMode); - udpServer.write(newIdentifier); - } -} - - -void handleGetRange(uint8_t* packet) -{ - udpServer.write(Command::GetRange); - stairs->getRange(&udpServer); -} - - -void handleSetRange(uint8_t* packet) -{ - stairs->setRange(packet); - - udpServer.write(Command::SetRange); - stairs->getRange(&udpServer); - - currentMode->init(stairs, currentTime); -} - - -uint32_t lastUpdateCheck = 0; - -void handleUpdateFirmware(uint8_t* packet) -{ - _dln("Handling UpdateFirmware"); - - HTTPUpdateResult result; - - if (currentTime - lastUpdateCheck <= OTAUpdateThrottle) - { - udpServer.write(Command::Error); - udpServer.write(Command::UpdateFirmware); - udpServer.write((uint8_t)2); - return; - } - - lastUpdateCheck = currentTime; - - switch (OTAUpdateEnabled) - { - case 1: - _dln("Checking for update (fixed)"); - result = ESPhttpUpdate.update(OTAUpdateFixedHost, OTAUpdateFixedPort, OTAUpdateFixedPath, FirmwareVersion); - break; - - case 2: - { - _dln("Checking for update (client defined)"); - - uint16_t port; - memcpy(&port, packet, sizeof(port)); - packet += sizeof(port); - - _d("Port: "); - _dln(port); - - char host[255]; - char path[255]; - - strcpy(host, (char*)packet); - packet += strlen(host) + 1; - - strcpy(path, (char*)packet); - - _d("Host: "); - _dln(host); - _d("Path: "); - _dln(path); - - result = ESPhttpUpdate.update(host, port, path, FirmwareVersion); - break; - } - - default: - udpServer.write(Command::Error); - udpServer.write(Command::UpdateFirmware); - udpServer.write((uint8_t)0); - return; - } - - switch (result) - { - case HTTP_UPDATE_NO_UPDATES: - _dln("No updates"); - udpServer.write(Command::UpdateFirmware); - udpServer.write((uint8_t)0); - break; - - case HTTP_UPDATE_OK: - _dln("Update OK"); - udpServer.write(Command::UpdateFirmware); - udpServer.write((uint8_t)1); - break; - - default: - _d("Error while updating: "); - _dln(ESPhttpUpdate.getLastError()); - _dln(ESPhttpUpdate.getLastErrorString().c_str()); - - udpServer.write(Command::Error); - udpServer.write(Command::UpdateFirmware); - udpServer.write((uint8_t)2); - break; - } -} - - -void handleRequest(uint8_t* packet) -{ - _d("Handling request: "); - _dln(*packet); - - - // Every request will result in a reply, either containing the - // requested data or a copy of the input parameters for verification. - // - // Apparantly this also makes the ESP8266 more stable, as reports - // have been made that UDP communication can stall if no replies are sent. - udpServer.beginPacket(udpServer.remoteIP(), udpServer.remotePort()); - udpServer.write(Command::Reply); - - uint8_t command = *packet; - packet++; - - switch (command) - { - case Command::Ping: handlePing(packet); break; - case Command::GetMode: handleGetMode(packet); break; - case Command::SetMode: handleSetMode(packet); break; - case Command::GetRange: handleGetRange(packet); break; - case Command::SetRange: handleSetRange(packet); break; - case Command::UpdateFirmware: handleUpdateFirmware(packet); break; - - default: - udpServer.write(Command::Error); - udpServer.write(command); - break; - } - - udpServer.endPacket(); -} - - -IMode* createMode(uint8_t identifier) -{ - if (identifier == currentModeIdentifier) - return currentMode; - - switch (identifier) - { - case Mode::Static: return new StaticMode(); - case Mode::Custom: return new CustomMode(); - case Mode::Alternate: return new AlternateMode(); - //case Mode::Slide: return new SlideMode(); - //case Mode::ADC: return new ADCInputMode(); - } - - return NULL; -} - - -void setCurrentMode(IMode* mode, uint8_t identifier) -{ - currentModeIdentifier = identifier; - currentMode = mode; - currentMode->init(stairs, currentTime); -} - - -void handleCurrentMode() -{ - currentMode->tick(stairs, currentTime); -} -*/ \ No newline at end of file + _d("HTTP :: not found: "); _dln(request->url()); + request->send(404); +} \ No newline at end of file diff --git a/src/mode.h b/src/mode.h deleted file mode 100644 index fa8f43a..0000000 --- a/src/mode.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef __Mode -#define __Mode - -#include -#include - - -class IStairs -{ - public: - static const uint16_t Off = 0; - static const uint16_t On = 4095; - - virtual uint8_t getCount() = 0; - virtual void set(uint8_t step, uint16_t value) = 0; - virtual void setAll(uint16_t value) = 0; -}; - -class IMode -{ - public: - virtual void read(uint8_t* data) = 0; - virtual void write(Stream* stream) = 0; - - virtual void init(IStairs* stairs, uint32_t currentTime) = 0; - virtual void tick(IStairs* stairs, uint32_t currentTime) = 0; -}; - -#endif \ No newline at end of file diff --git a/src/protocol.h b/src/protocol.h deleted file mode 100644 index 4037b78..0000000 --- a/src/protocol.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef __Protocol -#define __Protocol - -#include - -class Command -{ - public: - static const uint8_t Error = 0x00; - - static const uint8_t Ping = 0x01; - static const uint8_t Reply = 0x02; - static const uint8_t GetMode = 0x03; - static const uint8_t SetMode = 0x04; - static const uint8_t GetRange = 0x05; - static const uint8_t SetRange = 0x06; - static const uint8_t UpdateFirmware = 0xFF; -}; - - -class Mode -{ - public: - static const uint8_t Static = 0x01; - static const uint8_t Custom = 0x02; - static const uint8_t Alternate = 0x03; - static const uint8_t Slide = 0x04; - //static const uint8_t ADC = 0x05; -}; - -#endif \ No newline at end of file diff --git a/src/server/api.cpp b/src/server/api.cpp index a8e743b..49c5097 100644 --- a/src/server/api.cpp +++ b/src/server/api.cpp @@ -8,21 +8,22 @@ #include #include #include +#include "shared.h" #include "../assets/version.h" #include "../debug.h" #include "../global.h" #include "../settings/connection.h" -void handleVersion(AsyncWebServerRequest *request) +void handleGetSteps(AsyncWebServerRequest *request) { - _dln("API :: version"); + _dln("API :: get steps"); - DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(2)); + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(17)); - JsonObject& root = jsonBuffer.createObject(); - root["systemID"] = String(ESP.getChipId(), HEX); - root["version"] = String(VersionFullSemVer) + " sha." + String(VersionSha); + JsonArray& root = jsonBuffer.createArray(); + for (uint8_t step = 0; step < stepsSettings->count(); step++) + root.add(stairs->get(step)); AsyncResponseStream *response = request->beginResponseStream("application/json"); root.printTo(*response); @@ -31,71 +32,38 @@ void handleVersion(AsyncWebServerRequest *request) } -void handleConnectionStatus(AsyncWebServerRequest *request) +void handlePostSteps(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total) { - _dln("API :: connection status"); + _dln("API :: post steps"); - WiFiMode_t mode = WiFi.getMode(); - - - DynamicJsonBuffer jsonBuffer((2 * JSON_OBJECT_SIZE(2)) + JSON_OBJECT_SIZE(3)); - - JsonObject& root = jsonBuffer.createObject(); - JsonObject& ap = root.createNestedObject("ap"); - ap["enabled"] = (mode == WIFI_AP || mode == WIFI_AP_STA); - ap["ip"] = WiFi.softAPIP().toString(); - - JsonObject& station = root.createNestedObject("station"); - station["enabled"] = (mode == WIFI_STA || mode == WIFI_AP_STA); - station["status"] = (uint8_t)WiFi.status(); - station["ip"] = WiFi.localIP().toString(); - - AsyncResponseStream *response = request->beginResponseStream("application/json"); - root.printTo(*response); - - request->send(response); -} - - -void handleGetConnection(AsyncWebServerRequest *request) -{ - _dln("API :: get connection"); - - AsyncResponseStream *response = request->beginResponseStream("application/json"); - connectionSettings->toJson(*response); - request->send(response); -} - - -void handlePostConnection(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total) -{ - _dln("API :: post connection"); - - bool changed; - if (connectionSettings->fromJson((char*)data, &changed)) + DynamicJsonBuffer jsonBuffer(2*JSON_ARRAY_SIZE(17) + JSON_OBJECT_SIZE(3) + 130); + JsonObject& root = jsonBuffer.parseObject((char*)data); + if (!root.success()) { - connectionSettings->write(); - - if (changed) - connectionSettingsChanged = true; - - request->send(200); - } - else request->send(400); + return; + } + + uint16_t transitionTime = root["transitionTime"]; + JsonArray& values = root["values"]; + + JsonArray& startTime = root["startTime"]; + size_t startTimeCount = startTime.size(); + + size_t valueCount = values.size(); + if (valueCount > stepsSettings->count()) + valueCount = stepsSettings->count(); + + + for (uint8_t step = 0; step < valueCount; step++) + stairs->set(step, values[step], transitionTime, step < startTimeCount ? 1 : 0); + + request->send(200); } -void devNullRequest(AsyncWebServerRequest *request) { } -void devNullFileUpload(AsyncWebServerRequest *request, const String& filename, size_t index, uint8_t *data, size_t len, bool final) { } - - void registerAPIRoutes(AsyncWebServer* server) { - server->on("/api/version", HTTP_GET, handleVersion); - - server->on("/api/connection/status", HTTP_GET, handleConnectionStatus); - - server->on("/api/connection", HTTP_GET, handleGetConnection); - server->on("/api/connection", HTTP_POST, devNullRequest, devNullFileUpload, handlePostConnection); + server->on("/api/steps", HTTP_GET, handleGetSteps); + server->on("/api/steps", HTTP_POST, devNullRequest, devNullFileUpload, handlePostSteps); } \ No newline at end of file diff --git a/src/server/settings.cpp b/src/server/settings.cpp new file mode 100644 index 0000000..4b0089b --- /dev/null +++ b/src/server/settings.cpp @@ -0,0 +1,98 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "settings.h" +#include +#include +#include +#include "shared.h" +#include "../assets/version.h" +#include "../debug.h" +#include "../global.h" +#include "../settings/connection.h" + + +void handleVersion(AsyncWebServerRequest *request) +{ + _dln("API :: version"); + + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(2)); + + JsonObject& root = jsonBuffer.createObject(); + root["systemID"] = String(ESP.getChipId(), HEX); + root["version"] = String(VersionFullSemVer) + " sha." + String(VersionSha); + + AsyncResponseStream *response = request->beginResponseStream("application/json"); + root.printTo(*response); + + request->send(response); +} + + +void handleConnectionStatus(AsyncWebServerRequest *request) +{ + _dln("API :: connection status"); + + WiFiMode_t mode = WiFi.getMode(); + + + DynamicJsonBuffer jsonBuffer((2 * JSON_OBJECT_SIZE(2)) + JSON_OBJECT_SIZE(3)); + + JsonObject& root = jsonBuffer.createObject(); + JsonObject& ap = root.createNestedObject("ap"); + ap["enabled"] = (mode == WIFI_AP || mode == WIFI_AP_STA); + ap["ip"] = WiFi.softAPIP().toString(); + + JsonObject& station = root.createNestedObject("station"); + station["enabled"] = (mode == WIFI_STA || mode == WIFI_AP_STA); + station["status"] = (uint8_t)WiFi.status(); + station["ip"] = WiFi.localIP().toString(); + + AsyncResponseStream *response = request->beginResponseStream("application/json"); + root.printTo(*response); + + request->send(response); +} + + +void handleGetConnection(AsyncWebServerRequest *request) +{ + _dln("API :: get connection"); + + AsyncResponseStream *response = request->beginResponseStream("application/json"); + connectionSettings->toJson(*response); + request->send(response); +} + + +void handlePostConnection(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total) +{ + _dln("API :: post connection"); + + bool changed; + if (connectionSettings->fromJson((char*)data, &changed)) + { + connectionSettings->write(); + + if (changed) + connectionSettingsChanged = true; + + request->send(200); + } + else + request->send(400); +} + + +void registerSettingsRoutes(AsyncWebServer* server) +{ + server->on("/api/version", HTTP_GET, handleVersion); + + server->on("/api/connection/status", HTTP_GET, handleConnectionStatus); + + server->on("/api/connection", HTTP_GET, handleGetConnection); + server->on("/api/connection", HTTP_POST, devNullRequest, devNullFileUpload, handlePostConnection); +} \ No newline at end of file diff --git a/src/server/settings.h b/src/server/settings.h new file mode 100644 index 0000000..579a4bd --- /dev/null +++ b/src/server/settings.h @@ -0,0 +1,13 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __server_settings +#define __server_settings +#include + +void registerSettingsRoutes(AsyncWebServer* server); + +#endif \ No newline at end of file diff --git a/src/server/shared.cpp b/src/server/shared.cpp new file mode 100644 index 0000000..6fbfd50 --- /dev/null +++ b/src/server/shared.cpp @@ -0,0 +1,10 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "shared.h" + +void devNullRequest(AsyncWebServerRequest *request) {} +void devNullFileUpload(AsyncWebServerRequest *request, const String& filename, size_t index, uint8_t *data, size_t len, bool final) {} diff --git a/src/server/shared.h b/src/server/shared.h new file mode 100644 index 0000000..a74b1ec --- /dev/null +++ b/src/server/shared.h @@ -0,0 +1,15 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __server_shared +#define __server_shared + +#include + +void devNullRequest(AsyncWebServerRequest *request); +void devNullFileUpload(AsyncWebServerRequest *request, const String& filename, size_t index, uint8_t *data, size_t len, bool final); + +#endif \ No newline at end of file diff --git a/src/settings/steps.cpp b/src/settings/steps.cpp new file mode 100644 index 0000000..18e0efd --- /dev/null +++ b/src/settings/steps.cpp @@ -0,0 +1,65 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "steps.h" +#include +#include "../debug.h" + + +struct Header +{ + uint8_t version; + uint8_t stepCount; + bool useCurve; +}; + + + +StepsSettings::StepsSettings() +{ + for (uint8_t i = 0; i < MaxStepCount; i++) + mCurveShift[i] = 0; +} + + +void StepsSettings::read() +{ + _dln("StepsSettings :: Loading step settings"); + File f = SPIFFS.open(StepSettingsFile, "r"); + if (!f) + return; + + if (!f.available()) + return; + + Header header; + f.readBytes((char*)&header, sizeof(Header)); + + if (header.version != 1) + return; + + mUseCurve = (header.useCurve == 1); + f.readBytes((char*)&mCurveShift, header.stepCount * sizeof(uint16_t)); + f.close(); +} + + +void StepsSettings::write() +{ + _dln("StepsSettings :: Saving step settings"); + File f = SPIFFS.open(StepSettingsFile, "w"); + if (!f) + return; + + Header header; + header.version = 1; + header.useCurve = mUseCurve; + header.stepCount = mCount; + + f.write((uint8_t*)&header, sizeof(Header)); + f.write((uint8_t*)&mCurveShift, header.stepCount * sizeof(uint16_t)); + f.close(); +} \ No newline at end of file diff --git a/src/settings/steps.h b/src/settings/steps.h new file mode 100644 index 0000000..0b1687c --- /dev/null +++ b/src/settings/steps.h @@ -0,0 +1,38 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __settingssteps +#define __settingssteps + +#include + +#define MaxStepCount 16 + + +class StepsSettings +{ + private: + uint8_t mCount = 16; + bool mUseCurve = true; + uint16_t mCurveShift[MaxStepCount]; + + public: + StepsSettings(); + + void read(); + void write(); + + uint8_t count() { return mCount; } + void count(uint8_t value) { mCount = value; } + + bool useCurve() { return mUseCurve; } + void useCurve(bool value) { mUseCurve = value; } + + uint16_t curveShift(uint8_t step) { return step < MaxStepCount ? mCurveShift[step] : 0; } + uint16_t curveShift(uint8_t step, uint16_t value) { if (step < MaxStepCount) mCurveShift[step] = value; } +}; + +#endif \ No newline at end of file diff --git a/src/stairs.cpp b/src/stairs.cpp index 559a7ad..7442957 100644 --- a/src/stairs.cpp +++ b/src/stairs.cpp @@ -2,153 +2,159 @@ #include #include #include "debug.h" +#include "global.h" -const static float factorBase = log10(2) / log10(PCA9685::On); - - -struct Header +const uint16_t PWMCurve[] = { - uint8_t version; - uint8_t rangeCount; - bool useScaling; + 0, 10, 11, 12, 12, 13, 13, 14, 15, 16, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 35, 36, 38, 40, 42, 44, + 46, 48, 51, 53, 56, 58, 61, 64, 67, 70, 74, 77, 81, 85, 89, 93, + 97, 102, 107, 112, 117, 123, 129, 135, 141, 148, 155, 162, 169, 177, 186, 194, + 203, 213, 222, 233, 243, 254, 266, 278, 291, 304, 318, 332, 347, 362, 378, 395, + 412, 430, 449, 468, 488, 509, 531, 553, 576, 600, 625, 651, 677, 704, 733, 762, + 792, 823, 854, 887, 920, 955, 990, 1026, 1063, 1101, 1140, 1180, 1220, 1261, 1303, 1346, + 1389, 1433, 1478, 1523, 1569, 1615, 1662, 1709, 1757, 1805, 1853, 1901, 1950, 1999, 2048, 2096, + 2145, 2194, 2242, 2290, 2338, 2386, 2433, 2480, 2526, 2572, 2617, 2662, 2706, 2749, 2792, 2834, + 2875, 2915, 2955, 2994, 3032, 3069, 3105, 3140, 3175, 3208, 3241, 3272, 3303, 3333, 3362, 3391, + 3418, 3444, 3470, 3495, 3519, 3542, 3564, 3586, 3607, 3627, 3646, 3665, 3683, 3700, 3717, 3733, + 3748, 3763, 3777, 3791, 3804, 3817, 3829, 3841, 3852, 3862, 3873, 3882, 3892, 3901, 3909, 3918, + 3926, 3933, 3940, 3947, 3954, 3960, 3966, 3972, 3978, 3983, 3988, 3993, 3998, 4002, 4006, 4010, + 4014, 4018, 4021, 4025, 4028, 4031, 4034, 4037, 4039, 4042, 4044, 4047, 4049, 4051, 4053, 4055, + 4057, 4059, 4060, 4062, 4063, 4065, 4066, 4068, 4069, 4070, 4071, 4072, 4073, 4074, 4075, 4076, + 4077, 4078, 4079, 4079, 4080, 4081, 4082, 4082, 4083, 4083, 4084, 4084, 4085, 4085, 4090, 4095 }; +const float LinearFactor = 4095.0f / 255.0f; + void Stairs::init(PCA9685* pwmDriver) { - this->useScaling = false; + mPWMDriver = pwmDriver; + + memset(&mStep[0], 0, sizeof(mStep)); +} + /* - for (uint8_t i = 0; i < StepCount; i++) +struct Step +{ + uint16_t currentValue; + uint16_t startValue; + uint16_t targetValue; + uint16_t startTime; + uint16_t endTime; +}; +*/ + + + +void Stairs::tick() +{ + if (!mTick) return; + mTick = false; + + uint32_t elapsedTime = mTransitionStart != 0 ? currentTime - mTransitionStart : 0; + + for (uint8_t step = 0; step < stepsSettings->count(); step++) { - this->ranges[i].start = IStairs::Off; - this->ranges[i].end = IStairs::On; - } - */ + if (mStep[step].currentValue != mStep[step].targetValue) + { + // TODO more maths! - this->pwmDriver = pwmDriver; + /* + uint32_t diff = this->easeState == Up ? this->parameters.brightness - this->easeStartBrightness : this->easeStartBrightness - this->parameters.brightness; + uint32_t delta = (diff * elapsedTime) / this->parameters.easeTime; - _dln("Loading range configuration"); - SPIFFS.begin(); - this->readRange(); -} + this->currentBrightness = this->easeState == Up ? this->easeStartBrightness + delta : this->easeStartBrightness - delta; -uint8_t Stairs::getCount() -{ - return 0;//StepCount; -} - - -void Stairs::set(uint8_t step, uint16_t brightness) -{ - pwmDriver->setPWM(step, this->getPWMValue(step, brightness)); -} - - -void Stairs::setAll(uint16_t brightness) -{ - //pwmDriver->setAll(this->getPWMValue(brightness)); - -/* - for (uint8_t step = 0; step < StepCount; step++) - pwmDriver->setPWM(step, this->getPWMValue(step, brightness)); - */ -} - - -uint16_t Stairs::getPWMValue(uint8_t step, uint16_t brightness) -{ - _d("Getting PWM value for step "); _d(step); _d(", brightness "); _dln(brightness); - if (brightness == IStairs::Off || brightness == IStairs::On) + if (elapsedTime >= this->parameters.easeTime) { - _dln("Full on/off, returning input"); - return brightness; + this->currentBrightness = this->parameters.brightness; + this->easeState = None; } - if (step < 0 || step >= getCount()) - { - _dln("Step out of bounds, returning input"); - return brightness; + + + + t /= d/2; + if (t < 1) return c/2*t*t + b; + t--; + return -c/2 * (t*(t-2) - 1) + b; +}; + +*/ + } } - Range* range = &this->ranges[step]; - _d("Start: "); _dln(range->start); - _d("End: "); _dln(range->end); + // TODO + // mPWMDriver->setPWM(step, this->getPWMValue(step, brightness)); - if (this->useScaling) +} + + +uint8_t Stairs::get(uint8_t step, bool target) +{ + if (step >= MaxStepCount) return 0; + return target ? mStep[step].targetValue : mStep[step].currentValue; +} + + +void Stairs::set(uint8_t step, uint8_t brightness, uint16_t transitionTime, uint16_t startTime) +{ + if (step >= MaxStepCount) return; + if (mStep[step].currentValue == brightness) + return; + + // TODO continue transition if one is already going on + + mTick = true; + mStep[step].targetValue = brightness; + + if (transitionTime > 0) { - _dln("Using scaling"); - float factor = ((range->end - range->start) + 1) * factorBase; - brightness = pow(2, (brightness / factor)) - 1 + range->start; + mTransitionStart = currentTime; + mStep[step].startValue = mStep[step].currentValue; + mStep[step].startTime = startTime; + mStep[step].endTime = transitionTime; } else { - _dln("Not using scaling"); - if (brightness < range->start) brightness = range->start; - if (brightness > range->end) brightness = range->end; + mTransitionStart = 0; + } +} + + +void Stairs::setAll(uint8_t brightness, uint16_t transitionTime, uint16_t startTime) +{ + for (uint8_t step = 0; step < stepsSettings->count(); step++) + set(step, brightness, transitionTime, startTime); +} + + +uint16_t Stairs::getPWMValue(uint8_t step, uint8_t brightness) +{ + //_d("Stairs :: Getting PWM value for step "); _d(step); _d(", brightness "); _dln(brightness); + if (brightness == 0 || brightness == 255) + { + //_dln("Stairs :: Full on/off, returning input"); + return brightness == 0 ? 0 : 4095; } - _d("Output: "); _dln(brightness); - return brightness; -} + uint16_t pwmValue; + if (stepsSettings->useCurve()) + { + //_dln("Stairs :: Using curve"); + pwmValue = PWMCurve[brightness] + stepsSettings->curveShift(step); + } + else + { + //_dln("Stairs :: Not using curve"); + pwmValue = brightness * LinearFactor; + } - -void Stairs::getRange(Stream* stream) -{ - stream->write(this->useScaling ? 1 : 0); - stream->write((uint8_t*)&this->ranges, sizeof(this->ranges)); -} - - -void Stairs::setRange(uint8_t* data) -{ - this->useScaling = *data; - data++; - - memcpy(this->ranges, data, sizeof(this->ranges)); - this->writeRange(); -} - - -void Stairs::readRange() -{ - File f = SPIFFS.open("/range", "r"); - if (!f) - return; - - if (!f.available()) - return; - - Header header; - f.readBytes((char*)&header, sizeof(Header)); - - if (header.version != 1) - return; - - this->useScaling = (header.useScaling == 1); - f.readBytes((char*)&this->ranges, header.rangeCount * sizeof(Range)); - f.close(); - - _d("- useScaling: "); - _dln(this->useScaling); -} - - -void Stairs::writeRange() -{ - File f = SPIFFS.open("/range", "w"); - if (!f) - return; - - Header header; - header.version = 1; - header.useScaling = this->useScaling; - header.rangeCount = getCount(); - - f.write((uint8_t*)&header, sizeof(Header)); - f.write((uint8_t*)&this->ranges, sizeof(this->ranges)); - f.close(); + //_d("Stairs :: Output: "); _dln(pwmValue); + return pwmValue; } \ No newline at end of file diff --git a/src/stairs.h b/src/stairs.h index a61c6d0..58bfc12 100644 --- a/src/stairs.h +++ b/src/stairs.h @@ -3,39 +3,37 @@ #include "components/PCA9685.h" #include "config.h" -#include "mode.h" +#include "settings/steps.h" - -struct Range +struct Step { - uint16_t start; - uint16_t end; + uint16_t currentValue; + uint16_t startValue; + uint16_t targetValue; + uint16_t startTime; + uint16_t endTime; }; -class Stairs : public IStairs +class Stairs { private: - PCA9685* pwmDriver; + PCA9685* mPWMDriver; + Step mStep[MaxStepCount]; - bool useScaling; - Range ranges[16]; + uint32_t mTransitionStart; + bool mTick = false; protected: - void readRange(); - void writeRange(); - - uint16_t getPWMValue(uint8_t step, uint16_t brightness); + uint16_t getPWMValue(uint8_t step, uint8_t brightness); public: void init(PCA9685* pwmDriver); + void tick(); - uint8_t getCount(); - void set(uint8_t step, uint16_t brightness); - void setAll(uint16_t brightness); - - void getRange(Stream* stream); - void setRange(uint8_t* data); + uint8_t get(uint8_t step, bool target = true); + void set(uint8_t step, uint8_t brightness, uint16_t transitionTime = 0, uint16_t startTime = 0); + void setAll(uint8_t brightness, uint16_t transitionTime = 0, uint16_t startTime = 0); }; #endif \ No newline at end of file From fea7b1dbb5175c66d9aab7fb7488cb9e8e8010f0 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Thu, 4 Jan 2018 22:56:12 +0100 Subject: [PATCH 05/43] Removed the GitVersion Sha as it was impossible to commit --- gulpfile.js | 1 - src/assets/version.h | 5 ++--- src/server/settings.cpp | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 5d99ce7..c7b95c0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -210,7 +210,6 @@ gulp.task('embedVersion', function(cb) headerFile += "const uint8_t VersionMetadata = " + version.BuildMetaData + ";\r\n"; headerFile += "const char VersionBranch[] = \"" + version.BranchName + "\";\r\n"; - headerFile += "const char VersionSha[] = \"" + version.Sha + "\";\r\n"; headerFile += "const char VersionSemVer[] = \"" + version.SemVer + "\";\r\n"; headerFile += "const char VersionFullSemVer[] = \"" + version.FullSemVer + "\";\r\n"; diff --git a/src/assets/version.h b/src/assets/version.h index baad0ab..470368b 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,11 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 4; +const uint8_t VersionMetadata = 5; const char VersionBranch[] = "release/2.0"; -const char VersionSha[] = "176fa2a7bae0e9604a70c69da27b68819b479b73"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+4"; +const char VersionFullSemVer[] = "2.0.0-beta.1+5"; const char VersionCommitDate[] = "2018-01-04"; #endif diff --git a/src/server/settings.cpp b/src/server/settings.cpp index 4b0089b..a7917b7 100644 --- a/src/server/settings.cpp +++ b/src/server/settings.cpp @@ -23,7 +23,7 @@ void handleVersion(AsyncWebServerRequest *request) JsonObject& root = jsonBuffer.createObject(); root["systemID"] = String(ESP.getChipId(), HEX); - root["version"] = String(VersionFullSemVer) + " sha." + String(VersionSha); + root["version"] = String(VersionFullSemVer); AsyncResponseStream *response = request->beginResponseStream("application/json"); root.printTo(*response); From 84ddcb3a1d0e30c69fdc7fd272b224877dd80015 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Fri, 5 Jan 2018 16:43:14 +0100 Subject: [PATCH 06/43] Theoretical implementation of tick Completely untested --- platformio.ini | 1 - src/main.cpp | 13 +++--- src/stairs.cpp | 115 ++++++++++++++++++++++++++++++------------------- src/stairs.h | 15 ++++--- 4 files changed, 88 insertions(+), 56 deletions(-) diff --git a/platformio.ini b/platformio.ini index 0c18779..390bfd9 100644 --- a/platformio.ini +++ b/platformio.ini @@ -14,6 +14,5 @@ board = esp12e framework = arduino upload_speed = 115200 lib_deps = - Hash ArduinoJson ESP Async WebServer \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp index ed3fe7b..d1b7e88 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -96,11 +96,14 @@ void setup() WiFi.mode(WIFI_OFF); #ifdef SerialDebug - // onEvent is already deprecated, but since I'm only using it - // for debug purposes we'll see how long it lasts... - WiFi.onEvent(wifiEvent); - _d("WiFi :: MAC address: "); - _dln(WiFi.macAddress()); + // onEvent is already deprecated, but since I'm only using it + // for debug purposes we'll see how long it lasts... + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" + WiFi.onEvent(wifiEvent); + _d("WiFi :: MAC address: "); + _dln(WiFi.macAddress()); + #pragma GCC diagnostic pop #endif initWiFi(); diff --git a/src/stairs.cpp b/src/stairs.cpp index 7442957..a344c68 100644 --- a/src/stairs.cpp +++ b/src/stairs.cpp @@ -37,61 +37,95 @@ void Stairs::init(PCA9685* pwmDriver) } -/* -struct Step +uint8_t Stairs::ease(uint8_t startValue, uint8_t targetValue, uint16_t transitionTime, uint16_t elapsedTime) { - uint16_t currentValue; - uint16_t startValue; - uint16_t targetValue; - uint16_t startTime; - uint16_t endTime; -}; -*/ + bool up = targetValue > startValue; + uint16_t diff = up ? targetValue - startValue : startValue - targetValue; + uint16_t delta = (diff * elapsedTime) / transitionTime; + + int16_t currentValue = up ? startValue + delta : startValue - delta; + if (currentValue < 0) currentValue = 0; + if (currentValue > 255) currentValue = 255; + + return currentValue; +} + + +inline void Stairs::updateCurrentValue(Step* stepState) +{ + int32_t stepElapsedTime = -stepState->startTime; + stepState->currentValue = ease(stepState->startValue, stepState->targetValue, stepState->remainingTime + stepElapsedTime, stepElapsedTime); +} + + +inline void Stairs::applyCurrentValue(uint8_t step) +{ + mPWMDriver->setPWM(step, this->getPWMValue(step, mStep[step].currentValue)); +} void Stairs::tick() { if (!mTick) return; + + uint32_t elapsedTime = mLastTransitionTime != 0 ? currentTime - mLastTransitionTime : 0; + if (!elapsedTime) return; + + + mLastTransitionTime = currentTime; mTick = false; - uint32_t elapsedTime = mTransitionStart != 0 ? currentTime - mTransitionStart : 0; for (uint8_t step = 0; step < stepsSettings->count(); step++) { - if (mStep[step].currentValue != mStep[step].targetValue) + Step* stepState = &mStep[step]; + + if (stepState->currentValue != stepState->targetValue) { - // TODO more maths! + // If there is a startup delay request, wait for it first + if (stepState->startTime > 0) + { + stepState->startTime -= elapsedTime; + if (stepState->startTime < 0) + { + if (stepState->remainingTime > -stepState->startTime) + { + // Shift the remaining time equally + stepState->remainingTime += stepState->startTime; + updateCurrentValue(stepState); + mTick = true; + } + else + { + // End of the transition + stepState->remainingTime = 0; + stepState->currentValue = stepState->targetValue; + } - /* - uint32_t diff = this->easeState == Up ? this->parameters.brightness - this->easeStartBrightness : this->easeStartBrightness - this->parameters.brightness; - uint32_t delta = (diff * elapsedTime) / this->parameters.easeTime; + applyCurrentValue(step); + } + } + else if (elapsedTime >= stepState->remainingTime) + { + // End of the transition + stepState->remainingTime = 0; + stepState->currentValue = stepState->targetValue; - this->currentBrightness = this->easeState == Up ? this->easeStartBrightness + delta : this->easeStartBrightness - delta; + applyCurrentValue(step); + } + else + { + stepState->startTime -= elapsedTime; + stepState->remainingTime -= elapsedTime; + updateCurrentValue(stepState); + applyCurrentValue(step); - if (elapsedTime >= this->parameters.easeTime) - { - this->currentBrightness = this->parameters.brightness; - this->easeState = None; - } - - - - - t /= d/2; - if (t < 1) return c/2*t*t + b; - t--; - return -c/2 * (t*(t-2) - 1) + b; -}; - -*/ + mTick = true; + } } } - - // TODO - // mPWMDriver->setPWM(step, this->getPWMValue(step, brightness)); - } @@ -108,21 +142,14 @@ void Stairs::set(uint8_t step, uint8_t brightness, uint16_t transitionTime, uint if (mStep[step].currentValue == brightness) return; - // TODO continue transition if one is already going on - mTick = true; mStep[step].targetValue = brightness; if (transitionTime > 0) { - mTransitionStart = currentTime; mStep[step].startValue = mStep[step].currentValue; mStep[step].startTime = startTime; - mStep[step].endTime = transitionTime; - } - else - { - mTransitionStart = 0; + mStep[step].remainingTime = transitionTime; } } diff --git a/src/stairs.h b/src/stairs.h index 58bfc12..b687b9d 100644 --- a/src/stairs.h +++ b/src/stairs.h @@ -7,11 +7,11 @@ struct Step { - uint16_t currentValue; - uint16_t startValue; - uint16_t targetValue; - uint16_t startTime; - uint16_t endTime; + uint8_t currentValue; + uint8_t startValue; + uint8_t targetValue; + int16_t startTime; + uint16_t remainingTime; }; @@ -21,10 +21,13 @@ class Stairs PCA9685* mPWMDriver; Step mStep[MaxStepCount]; - uint32_t mTransitionStart; + uint32_t mLastTransitionTime; bool mTick = false; protected: + uint8_t ease(uint8_t startValue, uint8_t targetValue, uint16_t transitionTime, uint16_t elapsedTime); + inline void updateCurrentValue(Step* stepState); + inline void applyCurrentValue(uint8_t step); uint16_t getPWMValue(uint8_t step, uint8_t brightness); public: From 1319dd43c6548380c029931355bbc95d26f0bef1 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Fri, 5 Jan 2018 20:02:30 +0100 Subject: [PATCH 07/43] Fixed minor issues with the tick code, works suprisingly well otherwise! --- API.md | 128 ++++++++++++++++++++++++++++++++++++++++ src/assets/js.h | 6 +- src/assets/version.h | 6 +- src/main.cpp | 3 +- src/server/api.cpp | 6 +- src/server/firmware.cpp | 2 +- src/stairs.cpp | 20 ++++++- web/app.js | 2 +- web/dist/bundle.js | 2 +- 9 files changed, 161 insertions(+), 14 deletions(-) create mode 100644 API.md diff --git a/API.md b/API.md new file mode 100644 index 0000000..c0f0088 --- /dev/null +++ b/API.md @@ -0,0 +1,128 @@ +# API + +- [GET /api/version](#get-version) +- [GET /api/connection/status](#get-connection-status) +- [GET /api/connection](#get-connection) +- [POST /api/connection](#post-connection) +- [GET /api/steps](#get-steps) +- [POST /api/steps](#post-steps) +- [POST /api/firmware](#post-firmware) + + +## GET /api/version + +Returns the unique identifier of the chip and the version of the firmware. + +*Example response:* +```json +{ + "systemID": "st41r", + "version": "2.0.0-beta.1+6" +} +``` + + +## GET /api/connection/status + +Returns the status of the WiFi connections. + +The value of the 'status' element corresponds to the ```wl_status_t``` enum as defined in [wl_definitions.h](https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266WiFi/src/include/wl_definitions.h). + +*Example response:* +```json +{ + "ap": { + "enabled": true, + "ip": "192.168.4.1" + }, + "station": { + "enabled": true, + "status": 3, + "ip": "10.138.1.10" + } +} +``` + + +## GET /api/connection + +Returns the settings of the WiFi connections. + +*Example response:* +```json +{ + "hostname": "stairs", + "accesspoint": true, + "station": true, + "ssid": "MyWiFi", + "password": "12345678", + "dhcp": true, + "ip": "", + "subnetmask": "", + "gateway": "" +} +``` + + + +## POST /api/connection + +Updates the settings of the WiFi connections. The module will apply the new settings immediately and will break existing connections. + +*Example request:* +```json +{ + "hostname": "LivingRoomStairs", + "accesspoint": false, + "station": true, + "ssid": "MyWiFi", + "password": "12345678", + "dhcp": false, + "ip": "10.138.1.100", + "subnetmask": "255.255.255.0", + "gateway": "10.138.1.1" +} +``` + + + +## GET /api/steps + +Returns the current brightness value for each step. The number of items in the array is equal to the number of configured steps. Each value has a range of 0 to 255. + +*Example response:* +```json +[ + 0, 10, 30, 50, 80, 110, 130, 150, + 160, 170, 180, 190, 200, 230, 255 +] +``` + + +## POST /api/steps + +Changes the brightness value for each step. If the number of values in the array is less than the number of configured steps, each subsequent step is considered to be off. + +An optional element 'transitionTime' can be included which specifies how long the transition from the current value of each step to it's new value should take, the module will then smoothly fade between the values. The transition time must be specified in milliseconds. Assume a maximum of 30 seconds, because I did not test with higher values. Ain't nobody got time for that! If no transition time or 0 is specified, the new values will be applied immediately. + +An optional array 'startTime' can be included which specifies the delay, for each step individually, before the transition will start. The example request uses this to create a sweeping effect. If no or not enough values are provided, they are assumed to be 0. + +*Example request:* +```json +{ + "transitionTime": 500, + "values": [ + 128, 128, 128, 128, 128, 128, 128, 128, + 128, 128, 128, 128, 128, 128, 128 + ], + "startTime": [ + 0, 50, 100, 150, 200, 250, 300, 350, + 400, 450, 500, 550, 600, 650, 700 + ] +} +``` + + +## POST /api/firmware + +Uploads new firmware. The bin file should be posted as a multipart/form-data file attachment. Name is not relevant. \ No newline at end of file diff --git a/src/assets/js.h b/src/assets/js.h index 15f5db8..9181159 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -2120,8 +2120,8 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xde,0x3f,0xe5,0xcf,0xd2,0x8f,0x6f,0x91,0x8d,0x3d,0x0d,0x25,0x4b,0xdc,0x65,0x6b,0x3b,0xef,0xab,0x52, 0x06,0x14,0xde,0xf9,0x32,0xb9,0xab,0xf2,0xec,0x97,0x3a,0x6d,0x5e,0xb7,0x1f,0x6c,0x74,0x8c,0xdd,0x05, 0x17,0xb8,0x79,0xf0,0x8f,0x0e,0x0f,0xbf,0x10,0x42,0x23,0x99,0x1c,0xc0,0xcf,0x60,0x19,0xc3,0x8d,0x53, - 0xbf,0x46,0x25,0x4c,0x2d,0x4b,0x83,0x4b,0xcc,0xed,0x03,0xd2,0x9d,0x7f,0x4f,0x0c,0x12,0x3b,0x4b,0xb8, - 0x6d,0xfc,0x9b,0xcb,0xb5,0xd5,0x61,0x22,0xcc,0x9d,0xe3,0xf4,0xe6,0x39,0xe3,0x98,0xad,0x30,0x9f,0xc3, - 0xba,0xe2,0xaa,0x6e,0xf3,0xbf,0x01,0x22,0xb6,0x27,0xc8,0x5c,0xdc,0x01,0x00}; + 0x7f,0x8b,0x4a,0x98,0x5a,0xb6,0x06,0x17,0x99,0xdb,0x87,0xa4,0xbb,0x06,0x9e,0x18,0x25,0x76,0x96,0x70, + 0xdd,0xf8,0x37,0x97,0x6c,0xab,0xd3,0x44,0x9c,0x3b,0x47,0xea,0xcd,0xf3,0xc6,0x71,0x5b,0x61,0x42,0x87, + 0xb5,0xc5,0x75,0xdd,0xe6,0x7f,0x03,0xa4,0x3f,0xb2,0xfe,0x60,0xdc,0x01,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 470368b..7949bcf 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 5; +const uint8_t VersionMetadata = 7; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+5"; -const char VersionCommitDate[] = "2018-01-04"; +const char VersionFullSemVer[] = "2.0.0-beta.1+7"; +const char VersionCommitDate[] = "2018-01-05"; #endif diff --git a/src/main.cpp b/src/main.cpp index d1b7e88..85041af 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -69,6 +69,7 @@ void setup() pwmDriver = new PCA9685(); pwmDriver->setAddress(PWMDriverAddress, PinSDA, PinSCL); pwmDriver->setPWMFrequency(PWMDriverPWMFrequency); + pwmDriver->setAll(0); _dln("Setup :: initializing Stairs"); stairs = new Stairs(); @@ -76,8 +77,6 @@ void setup() _dln("Setup :: starting initialization sequence"); - stairs->setAll(0); - stairs->set(0, 255); delay(300); diff --git a/src/server/api.cpp b/src/server/api.cpp index 49c5097..8639a1a 100644 --- a/src/server/api.cpp +++ b/src/server/api.cpp @@ -21,9 +21,11 @@ void handleGetSteps(AsyncWebServerRequest *request) DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(17)); + bool target = !request->hasParam("current"); + JsonArray& root = jsonBuffer.createArray(); for (uint8_t step = 0; step < stepsSettings->count(); step++) - root.add(stairs->get(step)); + root.add(stairs->get(step, target)); AsyncResponseStream *response = request->beginResponseStream("application/json"); root.printTo(*response); @@ -56,7 +58,7 @@ void handlePostSteps(AsyncWebServerRequest *request, uint8_t *data, size_t len, for (uint8_t step = 0; step < valueCount; step++) - stairs->set(step, values[step], transitionTime, step < startTimeCount ? 1 : 0); + stairs->set(step, values[step], transitionTime, step < startTimeCount ? startTime[step] : 0); request->send(200); } diff --git a/src/server/firmware.cpp b/src/server/firmware.cpp index 28b932a..5d1389d 100644 --- a/src/server/firmware.cpp +++ b/src/server/firmware.cpp @@ -70,5 +70,5 @@ void handleFirmwareFile(AsyncWebServerRequest *request, String filename, size_t void registerFirmwareRoutes(AsyncWebServer* server) { - server->on("/firmware", HTTP_POST, handleFirmware, handleFirmwareFile); + server->on("/api/firmware", HTTP_POST, handleFirmware, handleFirmwareFile); } \ No newline at end of file diff --git a/src/stairs.cpp b/src/stairs.cpp index a344c68..f440e92 100644 --- a/src/stairs.cpp +++ b/src/stairs.cpp @@ -126,6 +126,9 @@ void Stairs::tick() } } } + + if (!mTick) + mLastTransitionTime = 0; } @@ -138,11 +141,16 @@ uint8_t Stairs::get(uint8_t step, bool target) void Stairs::set(uint8_t step, uint8_t brightness, uint16_t transitionTime, uint16_t startTime) { + _d("Stairs :: set step = "); _d(step); + _d(", brightness = "); _d(brightness); + _d(", transitionTime = "); _d(transitionTime); + _d(", startTime = "); _dln(startTime); + + if (step >= MaxStepCount) return; if (mStep[step].currentValue == brightness) return; - mTick = true; mStep[step].targetValue = brightness; if (transitionTime > 0) @@ -150,6 +158,16 @@ void Stairs::set(uint8_t step, uint8_t brightness, uint16_t transitionTime, uint mStep[step].startValue = mStep[step].currentValue; mStep[step].startTime = startTime; mStep[step].remainingTime = transitionTime; + + if (!mLastTransitionTime) + mLastTransitionTime = currentTime; + + mTick = true; + } + else + { + mStep[step].currentValue = brightness; + applyCurrentValue(step); } } diff --git a/web/app.js b/web/app.js index d63ab2f..8bb6d39 100644 --- a/web/app.js +++ b/web/app.js @@ -270,7 +270,7 @@ function startApp() } }; - axios.post('/firmware', data, config) + axios.post('/api/firmware', data, config) .then(function(response) { // TODO show "now updating, please wait" diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 1cbdd68..85c07d3 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function It(t){return t&&(t.Ctor.options.name||t.tag)}function Lt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Ft(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=It(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Hr=t,zr=Wr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Vr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Hr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function $e(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Li?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Li,l=a,f=o.length):e===Fi?u>0&&(n=Fi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Li:Fi:null)?n===Li?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Li&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Ie(t,e){!0!==e.data.show&&Te(e)}function Le(t,e,n){Fe(t,e,n),(Pn||Rn)&&setTimeout(function(){Fe(t,e,n)},0)}function Fe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function He(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),$n=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),xn=/\B([A-Z])/g,kn=p(function(t){return t.replace(xn,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},En=/[^\w.$]/,In="__proto__"in{},Ln="undefined"!=typeof window,Fn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=Fn&&WXEnvironment.platform.toLowerCase(),Nn=Ln&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Dn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Dn,Hn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Vn=!1;if(Ln)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!Ln&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=Ln&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);qn="undefined"!=typeof Set&&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&$r[n].id>t.id;)n--;$r.splice(n+1,0,t)}else $r.push(t);Cr||(Cr=!0,z(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(At.prototype);var Ir={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Ir.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=z,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Hr,Vr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",$i={create:de,update:de},xi={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Vi),v(Et.options.components,Ji),Et.prototype.__patch__=Ln?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&Ln?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Io(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for(x=t.slice(v);!(co.test(x)||ao.test(x)||lo.test(x)||fo.test(x)||(k=x.indexOf("<",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=""),e.chars&&$&&e.chars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===I&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===L)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status"},triggers:{tabTitle:"Triggers",timeTitle:"Time",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},steps:[{value:50},{value:0},{value:0},{value:0},{value:0},{value:70},{value:0},{value:0},{value:0},{value:0},{value:25},{value:0},{value:0},{value:0}]},created:function(){var e=this;document.title=t.t("title"),e.startLoadingIndicator(),e.updateWiFiStatus(),axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)})]).then(axios.spread(function(t,n){e.stopLoadingIndicator(),e.loading=!1}))},methods:{applyConnection:function(){var t=this;t.saving||(t.saving=!0,axios.post("/api/connection",{hostname:t.connection.hostname,accesspoint:t.connection.accesspoint,station:t.connection.station,ssid:t.connection.ssid,password:t.connection.password,dhcp:t.connection.dhcp,ip:t.connection.ip,subnetmask:t.connection.subnetmask,gateway:t.connection.gateway}).then(function(t){}).catch(function(t){console.log(t)}).then(function(){t.saving=!1}))},startLoadingIndicator:function(){var t=this;t.loadingStage=0,t.loadingTimer=setInterval(function(){switch(t.loadingStage++,t.loadingStage){case 1:t.loadingIndicator="/";break;case 2:t.loadingIndicator="-";break;case 3:t.loadingIndicator="\\";break;case 4:t.loadingIndicator="|",t.loadingStage=0}},250)},stopLoadingIndicator:function(){clearInterval(this.loadingTimer)},getWiFiStationStatus:function(){if(!this.wifiStatus.station.enabled)return"disconnected";switch(this.wifiStatus.station.status){case 0:case 2:return"connecting";case 1:case 4:case 5:return"error";case 3:return"connected";case 6:default:return"disconnected"}},getWiFiStationStatusText:function(){if(!this.wifiStatus.station.enabled)return t.t("wifiStatus.stationmode.disabled");switch(this.wifiStatus.station.status){case 0:return t.t("wifiStatus.stationmode.idle");case 1:return t.t("wifiStatus.stationmode.noSSID");case 2:return t.t("wifiStatus.stationmode.scanCompleted");case 3:return this.wifiStatus.station.ip;case 4:return t.t("wifiStatus.stationmode.connectFailed");case 5:return t.t("wifiStatus.stationmode.connectionLost");case 6:default:return t.t("wifiStatus.stationmode.disconnected")}},updateWiFiStatus:function(){var t=this;t.saving?setTimeout(t.updateWiFiStatus,5e3):axios.get("/api/connection/status").then(function(e){"object"==typeof e.data&&(t.wifiStatus=e.data)}).catch(function(t){console.log(t)}).then(function(){setTimeout(t.updateWiFiStatus,5e3)})},uploadFirmware:function(){var t=this;if(!t.saving){t.saving=!0,t.uploadProgress=0;var e=new FormData;e.append("file",document.getElementById("firmwareFile").files[0]);var n={timeout:36e4,onUploadProgress:function(e){t.uploadProgress=Math.round(100*e.loaded/e.total)}};axios.post("/firmware",e,n).then(function(t){console.log("Update sent")}).catch(function(t){console.log(t)}).then(function(){t.uploadProgress=!1,t.saving=!1,document.getElementById("firmware").reset()})}}}})} \ No newline at end of file +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function It(t){return t&&(t.Ctor.options.name||t.tag)}function Lt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Ft(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=It(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Hr=t,zr=Wr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Vr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Hr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function $e(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Li?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Li,l=a,f=o.length):e===Fi?u>0&&(n=Fi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Li:Fi:null)?n===Li?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Li&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Ie(t,e){!0!==e.data.show&&Te(e)}function Le(t,e,n){Fe(t,e,n),(Pn||Rn)&&setTimeout(function(){Fe(t,e,n)},0)}function Fe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function He(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),$n=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),xn=/\B([A-Z])/g,kn=p(function(t){return t.replace(xn,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},En=/[^\w.$]/,In="__proto__"in{},Ln="undefined"!=typeof window,Fn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=Fn&&WXEnvironment.platform.toLowerCase(),Nn=Ln&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Dn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Dn,Hn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Vn=!1;if(Ln)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!Ln&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=Ln&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);qn="undefined"!=typeof Set&&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&$r[n].id>t.id;)n--;$r.splice(n+1,0,t)}else $r.push(t);Cr||(Cr=!0,z(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(At.prototype);var Ir={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Ir.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=z,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Hr,Vr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",$i={create:de,update:de},xi={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Vi),v(Et.options.components,Ji),Et.prototype.__patch__=Ln?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&Ln?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Io(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for(x=t.slice(v);!(co.test(x)||ao.test(x)||lo.test(x)||fo.test(x)||(k=x.indexOf("<",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=""),e.chars&&$&&e.chars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===I&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===L)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status"},triggers:{tabTitle:"Triggers",timeTitle:"Time",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},steps:[{value:50},{value:0},{value:0},{value:0},{value:0},{value:70},{value:0},{value:0},{value:0},{value:0},{value:25},{value:0},{value:0},{value:0}]},created:function(){var e=this;document.title=t.t("title"),e.startLoadingIndicator(),e.updateWiFiStatus(),axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)})]).then(axios.spread(function(t,n){e.stopLoadingIndicator(),e.loading=!1}))},methods:{applyConnection:function(){var t=this;t.saving||(t.saving=!0,axios.post("/api/connection",{hostname:t.connection.hostname,accesspoint:t.connection.accesspoint,station:t.connection.station,ssid:t.connection.ssid,password:t.connection.password,dhcp:t.connection.dhcp,ip:t.connection.ip,subnetmask:t.connection.subnetmask,gateway:t.connection.gateway}).then(function(t){}).catch(function(t){console.log(t)}).then(function(){t.saving=!1}))},startLoadingIndicator:function(){var t=this;t.loadingStage=0,t.loadingTimer=setInterval(function(){switch(t.loadingStage++,t.loadingStage){case 1:t.loadingIndicator="/";break;case 2:t.loadingIndicator="-";break;case 3:t.loadingIndicator="\\";break;case 4:t.loadingIndicator="|",t.loadingStage=0}},250)},stopLoadingIndicator:function(){clearInterval(this.loadingTimer)},getWiFiStationStatus:function(){if(!this.wifiStatus.station.enabled)return"disconnected";switch(this.wifiStatus.station.status){case 0:case 2:return"connecting";case 1:case 4:case 5:return"error";case 3:return"connected";case 6:default:return"disconnected"}},getWiFiStationStatusText:function(){if(!this.wifiStatus.station.enabled)return t.t("wifiStatus.stationmode.disabled");switch(this.wifiStatus.station.status){case 0:return t.t("wifiStatus.stationmode.idle");case 1:return t.t("wifiStatus.stationmode.noSSID");case 2:return t.t("wifiStatus.stationmode.scanCompleted");case 3:return this.wifiStatus.station.ip;case 4:return t.t("wifiStatus.stationmode.connectFailed");case 5:return t.t("wifiStatus.stationmode.connectionLost");case 6:default:return t.t("wifiStatus.stationmode.disconnected")}},updateWiFiStatus:function(){var t=this;t.saving?setTimeout(t.updateWiFiStatus,5e3):axios.get("/api/connection/status").then(function(e){"object"==typeof e.data&&(t.wifiStatus=e.data)}).catch(function(t){console.log(t)}).then(function(){setTimeout(t.updateWiFiStatus,5e3)})},uploadFirmware:function(){var t=this;if(!t.saving){t.saving=!0,t.uploadProgress=0;var e=new FormData;e.append("file",document.getElementById("firmwareFile").files[0]);var n={timeout:36e4,onUploadProgress:function(e){t.uploadProgress=Math.round(100*e.loaded/e.total)}};axios.post("/api/firmware",e,n).then(function(t){console.log("Update sent")}).catch(function(t){console.log(t)}).then(function(){t.uploadProgress=!1,t.saving=!1,document.getElementById("firmware").reset()})}}}})} \ No newline at end of file From 488e8598ecb75442c9f2afe6f5ee17bc1e5e2fa3 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Fri, 5 Jan 2018 20:17:39 +0100 Subject: [PATCH 08/43] Fixed API document internal links --- API.md | 21 +++++++-------------- src/assets/version.h | 4 ++-- 2 files changed, 9 insertions(+), 16 deletions(-) diff --git a/API.md b/API.md index c0f0088..7f89bca 100644 --- a/API.md +++ b/API.md @@ -1,14 +1,13 @@ # API -- [GET /api/version](#get-version) -- [GET /api/connection/status](#get-connection-status) -- [GET /api/connection](#get-connection) -- [POST /api/connection](#post-connection) -- [GET /api/steps](#get-steps) -- [POST /api/steps](#post-steps) -- [POST /api/firmware](#post-firmware) +- [GET /api/version](#get-apiversion) +- [GET /api/connection/status](#get-apiconnectionstatus) +- [GET /api/connection](#get-apiconnection) +- [POST /api/connection](#post-apiconnection) +- [GET /api/steps](#get-apisteps) +- [POST /api/steps](#post-apisteps) +- [POST /api/firmware](#post-apifirmware) - ## GET /api/version Returns the unique identifier of the chip and the version of the firmware. @@ -21,7 +20,6 @@ Returns the unique identifier of the chip and the version of the firmware. } ``` - ## GET /api/connection/status Returns the status of the WiFi connections. @@ -43,7 +41,6 @@ The value of the 'status' element corresponds to the ```wl_status_t``` enum as d } ``` - ## GET /api/connection Returns the settings of the WiFi connections. @@ -64,7 +61,6 @@ Returns the settings of the WiFi connections. ``` - ## POST /api/connection Updates the settings of the WiFi connections. The module will apply the new settings immediately and will break existing connections. @@ -85,7 +81,6 @@ Updates the settings of the WiFi connections. The module will apply the new sett ``` - ## GET /api/steps Returns the current brightness value for each step. The number of items in the array is equal to the number of configured steps. Each value has a range of 0 to 255. @@ -98,7 +93,6 @@ Returns the current brightness value for each step. The number of items in the a ] ``` - ## POST /api/steps Changes the brightness value for each step. If the number of values in the array is less than the number of configured steps, each subsequent step is considered to be off. @@ -122,7 +116,6 @@ An optional array 'startTime' can be included which specifies the delay, for eac } ``` - ## POST /api/firmware Uploads new firmware. The bin file should be posted as a multipart/form-data file attachment. Name is not relevant. \ No newline at end of file diff --git a/src/assets/version.h b/src/assets/version.h index 7949bcf..149b1f3 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 7; +const uint8_t VersionMetadata = 8; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+7"; +const char VersionFullSemVer[] = "2.0.0-beta.1+8"; const char VersionCommitDate[] = "2018-01-05"; #endif From 272535006b5a49661a2e60467fce2954f34a0d8e Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Fri, 5 Jan 2018 21:15:04 +0100 Subject: [PATCH 09/43] Implemented NTP client --- platformio.ini | 4 ++- src/assets/version.h | 4 +-- src/main.cpp | 58 ++++++++++++++++++++++++++++++++++++++------ 3 files changed, 56 insertions(+), 10 deletions(-) diff --git a/platformio.ini b/platformio.ini index 390bfd9..8edb478 100644 --- a/platformio.ini +++ b/platformio.ini @@ -15,4 +15,6 @@ framework = arduino upload_speed = 115200 lib_deps = ArduinoJson - ESP Async WebServer \ No newline at end of file + ESP Async WebServer + NTPClient + Time \ No newline at end of file diff --git a/src/assets/version.h b/src/assets/version.h index 149b1f3..623def7 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 8; +const uint8_t VersionMetadata = 9; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+8"; +const char VersionFullSemVer[] = "2.0.0-beta.1+9"; const char VersionCommitDate[] = "2018-01-05"; #endif diff --git a/src/main.cpp b/src/main.cpp index 85041af..d0ede4b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -8,6 +8,9 @@ #include #include #include +#include +#include +#include extern "C" { #include @@ -30,8 +33,10 @@ ADC_MODE(ADC_VCC); void initWiFi(); #ifdef SerialDebug void wifiEvent(WiFiEvent_t event); +void updateDebugStatus(); #endif void updateLED(); +void updateNTPClient(); void startServer(); void stopServer(); @@ -41,6 +46,9 @@ void handleNotFound(AsyncWebServerRequest* request); AsyncWebServer server(80); PCA9685* pwmDriver; +WiFiUDP ntpUDP; +NTPClient* ntpClient = NULL; + bool accessPoint = false; bool stationMode = false; bool forceAccessPoint = false; @@ -48,7 +56,7 @@ bool forceAccessPoint = false; uint32_t stationModeStart = 0; #ifdef SerialDebug -uint32_t memoryStatusTime = 0; +uint32_t debugStatusTime = 0; #endif @@ -132,12 +140,7 @@ void loop() #ifdef SerialDebug - if (currentTime - memoryStatusTime >= 5000) - { - _d("Memory :: available: "); - _dln(ESP.getFreeHeap()); - memoryStatusTime = currentTime; - } + updateDebugStatus(); #endif @@ -179,6 +182,7 @@ void loop() } updateLED(); + updateNTPClient(); stairs->tick(); } @@ -260,6 +264,26 @@ void wifiEvent(WiFiEvent_t event) _dln("WiFi:: soft AP mode: station disconnected"); break; } } + + +void updateDebugStatus() +{ + if (currentTime - debugStatusTime < 5000) return; + debugStatusTime = currentTime; + + + _d("Status :: available heap: "); + _dln(ESP.getFreeHeap()); + + if (ntpClient != NULL) + { + _d("Status :: time: "); + uint32_t time = ntpClient->getEpochTime(); + + _d(day(time)); _d("-"); _d(month(time)); _d("-"); _d(year(time)); _d(" "); + _d(hour(time)); _d(":"); _d(minute(time)); _d(":"); _dln(second(time)); + } +} #endif @@ -283,6 +307,26 @@ void updateLED() } +void updateNTPClient() +{ + if (ntpClient == NULL && WiFi.status() == WL_CONNECTED) + { + _dln("NTP :: initializing NTP client"); + + // TODO make NTP address and refresh interval configurable + ntpClient = new NTPClient(ntpUDP, "nl.pool.ntp.org", 0, 5 * 60 * 1000); + ntpClient->begin(); + } + + + if (ntpClient != NULL) + { + ntpClient->update(); + // TODO check for triggers every 10 seconds or so + } +} + + void handleNotFound(AsyncWebServerRequest *request) { _d("HTTP :: not found: "); _dln(request->url()); From 5d6c5f7b74fa21ff7ee19550bf2e2b225bddf384 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Sun, 7 Jan 2018 23:12:42 +0100 Subject: [PATCH 10/43] Added step control (all / individual) Added status LEDs Added start of location code (geocode latlong request crashes at the moment) --- .gitignore | 1 + devserver.js | 30 + package.json | 1 + platformio.ini | 3 +- src/ESP8266HTTPClient-h4xx0red.cpp | 1146 ++++++++ src/ESP8266HTTPClient-h4xx0red.h | 249 ++ src/assets/css.h | 263 +- src/assets/html.h | 196 +- src/assets/js.h | 4266 ++++++++++++++-------------- src/assets/version.h | 6 +- src/charproperties.cpp | 6 +- src/config.h | 7 + src/main.cpp | 100 +- src/secret.default.h | 22 + src/server/geocode.cpp | 200 ++ src/server/geocode.h | 13 + src/settings/connection.cpp | 12 +- src/settings/connection.h | 6 +- web/app.js | 181 +- web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 60 +- web/lang.js | 20 +- web/site.scss | 40 + 24 files changed, 4425 insertions(+), 2407 deletions(-) create mode 100644 src/ESP8266HTTPClient-h4xx0red.cpp create mode 100644 src/ESP8266HTTPClient-h4xx0red.h create mode 100644 src/secret.default.h create mode 100644 src/server/geocode.cpp create mode 100644 src/server/geocode.h diff --git a/.gitignore b/.gitignore index db3a52d..141b09d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ bin *.sublime-workspace node_modules +src/secret.h \ No newline at end of file diff --git a/devserver.js b/devserver.js index 16aa45d..e236d1f 100644 --- a/devserver.js +++ b/devserver.js @@ -5,8 +5,11 @@ * https://git.x2software.net/pub/Stairs */ const express = require('express'); +const bodyParser = require('body-parser'); + const app = express(); +app.use(bodyParser.json()); app.use(express.static('web')); app.use(express.static('web/dist')); @@ -53,6 +56,33 @@ app.post('/api/connection', function(req, res) res.sendStatus(200); }); +app.post('/api/firmware', function(req, res) +{ + res.sendStatus(200); +}); + + +var steps = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; + +app.get('/api/steps', function(req, res) +{ + res.send(steps); +}); + +app.post('/api/steps', function(req, res) +{ + var body = req.body; + if (body && body.hasOwnProperty('values')) + { + for (var i = 0; i < Math.min(steps.length, body.values.length); i++) + steps[i] = parseInt(body.values[i], 10) || 0; + + res.sendStatus(200); + } + else + res.sendStatus(400); +}); + app.listen(3000, function() { console.log('Development server listening on port 3000') diff --git a/package.json b/package.json index 49f7238..8d529f5 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "license": "Unlicense", "devDependencies": { "axios": "^0.17.1", + "body-parser": "^1.18.2", "child_process": "^1.0.2", "express": "^4.16.2", "gulp": "^3.9.1", diff --git a/platformio.ini b/platformio.ini index 8edb478..e3d9000 100644 --- a/platformio.ini +++ b/platformio.ini @@ -17,4 +17,5 @@ lib_deps = ArduinoJson ESP Async WebServer NTPClient - Time \ No newline at end of file + Time +build_flags = -D ASYNC_TCP_SSL_ENABLED=1 \ No newline at end of file diff --git a/src/ESP8266HTTPClient-h4xx0red.cpp b/src/ESP8266HTTPClient-h4xx0red.cpp new file mode 100644 index 0000000..cc0bcc6 --- /dev/null +++ b/src/ESP8266HTTPClient-h4xx0red.cpp @@ -0,0 +1,1146 @@ +/** + * The standard ESP8266HTTPClient requires a fingerprint for certificate + * validation as discussed in this issue, starting October 12: + * https://github.com/esp8266/Arduino/issues/1941 + * + * This is a modified version which removes validation entirely. It's not + * secure, but for our purpose it will do just fine and prevents + * complicated configuration because we're talking to a Google service + * for which we don't control the certificates. + * + * If there is a proper way to do validation without hardcoding the + * fingerprint (root certificate validation?), remove this. + * + * I've surrounded the customizations with ""//>> h4xx0red" comments. + */ + + +/** + * ESP8266HTTPClient.cpp + * + * Created on: 02.11.2015 + * + * Copyright (c) 2015 Markus Sattler. All rights reserved. + * This file is part of the ESP8266HTTPClient for Arduino. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#include +#include +#include +#include +#include + +#include "ESP8266HTTPClient-h4xx0red.h" + +class TransportTraits +{ +public: + virtual ~TransportTraits() + { + } + + virtual std::unique_ptr create() + { + return std::unique_ptr(new WiFiClient()); + } + + virtual bool verify(WiFiClient& client, const char* host) + { + return true; + } +}; + +class TLSTraits : public TransportTraits +{ +public: + TLSTraits(const String& fingerprint) : + _fingerprint(fingerprint) + { + } + + std::unique_ptr create() override + { + return std::unique_ptr(new WiFiClientSecure()); + } + + bool verify(WiFiClient& client, const char* host) override + { + return true; + } + +protected: + String _fingerprint; +}; + +/** + * constructor + */ +HTTPClient::HTTPClient() +{ +} + +/** + * destructor + */ +HTTPClient::~HTTPClient() +{ + if(_tcp) { + _tcp->stop(); + } + if(_currentHeaders) { + delete[] _currentHeaders; + } +} + +void HTTPClient::clear() +{ + _returnCode = 0; + _size = -1; + _headers = ""; +} + + +//>> h4xx0red: renamed to beginSecure, removed fingerprint parameter +bool HTTPClient::beginSecure(String url) +{ + _transportTraits.reset(nullptr); + _port = 443; + if (!beginInternal(url, "https")) { + return false; + } + _transportTraits = TransportTraitsPtr(new TLSTraits("")); + return true; +} +//<< h4xx0red + +/** + * parsing the url for all needed parameters + * @param url String + */ +bool HTTPClient::begin(String url) +{ + _transportTraits.reset(nullptr); + _port = 80; + if (!beginInternal(url, "http")) { + return false; + } + _transportTraits = TransportTraitsPtr(new TransportTraits()); + return true; +} + +bool HTTPClient::beginInternal(String url, const char* expectedProtocol) +{ + DEBUG_HTTPCLIENT("[HTTP-Client][begin] url: %s\n", url.c_str()); + clear(); + + // check for : (http: or https: + int index = url.indexOf(':'); + if(index < 0) { + DEBUG_HTTPCLIENT("[HTTP-Client][begin] failed to parse protocol\n"); + return false; + } + + _protocol = url.substring(0, index); + url.remove(0, (index + 3)); // remove http:// or https:// + + index = url.indexOf('/'); + String host = url.substring(0, index); + url.remove(0, index); // remove host part + + // get Authorization + index = host.indexOf('@'); + if(index >= 0) { + // auth info + String auth = host.substring(0, index); + host.remove(0, index + 1); // remove auth part including @ + _base64Authorization = base64::encode(auth); + } + + // get port + index = host.indexOf(':'); + if(index >= 0) { + _host = host.substring(0, index); // hostname + host.remove(0, (index + 1)); // remove hostname + : + _port = host.toInt(); // get port + } else { + _host = host; + } + _uri = url; + if (_protocol != expectedProtocol) { + DEBUG_HTTPCLIENT("[HTTP-Client][begin] unexpected protocol: %s, expected %s\n", _protocol.c_str(), expectedProtocol); + return false; + } + DEBUG_HTTPCLIENT("[HTTP-Client][begin] host: %s port: %d url: %s\n", _host.c_str(), _port, _uri.c_str()); + return true; +} + +bool HTTPClient::begin(String host, uint16_t port, String uri) +{ + clear(); + _host = host; + _port = port; + _uri = uri; + _transportTraits = TransportTraitsPtr(new TransportTraits()); + DEBUG_HTTPCLIENT("[HTTP-Client][begin] host: %s port: %d uri: %s\n", host.c_str(), port, uri.c_str()); + return true; +} + +bool HTTPClient::begin(String host, uint16_t port, String uri, bool https, String httpsFingerprint) +{ + if (https) { + return begin(host, port, uri, httpsFingerprint); + } else { + return begin(host, port, uri); + } +} + +bool HTTPClient::begin(String host, uint16_t port, String uri, String httpsFingerprint) +{ + clear(); + _host = host; + _port = port; + _uri = uri; + + if (httpsFingerprint.length() == 0) { + return false; + } + _transportTraits = TransportTraitsPtr(new TLSTraits(httpsFingerprint)); + DEBUG_HTTPCLIENT("[HTTP-Client][begin] host: %s port: %d url: %s httpsFingerprint: %s\n", host.c_str(), port, uri.c_str(), httpsFingerprint.c_str()); + return true; +} + +/** + * end + * called after the payload is handled + */ +void HTTPClient::end(void) +{ + if(connected()) { + if(_tcp->available() > 0) { + DEBUG_HTTPCLIENT("[HTTP-Client][end] still data in buffer (%d), clean up.\n", _tcp->available()); + while(_tcp->available() > 0) { + _tcp->read(); + } + } + if(_reuse && _canReuse) { + DEBUG_HTTPCLIENT("[HTTP-Client][end] tcp keep open for reuse\n"); + } else { + DEBUG_HTTPCLIENT("[HTTP-Client][end] tcp stop\n"); + _tcp->stop(); + } + } else { + DEBUG_HTTPCLIENT("[HTTP-Client][end] tcp is closed\n"); + } +} + +/** + * connected + * @return connected status + */ +bool HTTPClient::connected() +{ + if(_tcp) { + return (_tcp->connected() || (_tcp->available() > 0)); + } + return false; +} + +/** + * try to reuse the connection to the server + * keep-alive + * @param reuse bool + */ +void HTTPClient::setReuse(bool reuse) +{ + _reuse = reuse; +} + +/** + * set User Agent + * @param userAgent const char * + */ +void HTTPClient::setUserAgent(const String& userAgent) +{ + _userAgent = userAgent; +} + +/** + * set the Authorizatio for the http request + * @param user const char * + * @param password const char * + */ +void HTTPClient::setAuthorization(const char * user, const char * password) +{ + if(user && password) { + String auth = user; + auth += ":"; + auth += password; + _base64Authorization = base64::encode(auth); + } +} + +/** + * set the Authorizatio for the http request + * @param auth const char * base64 + */ +void HTTPClient::setAuthorization(const char * auth) +{ + if(auth) { + _base64Authorization = auth; + } +} + +/** + * set the timeout for the TCP connection + * @param timeout unsigned int + */ +void HTTPClient::setTimeout(uint16_t timeout) +{ + _tcpTimeout = timeout; + if(connected()) { + _tcp->setTimeout(timeout); + } +} + +/** + * use HTTP1.0 + * @param timeout + */ +void HTTPClient::useHTTP10(bool useHTTP10) +{ + _useHTTP10 = useHTTP10; +} + +/** + * send a GET request + * @return http code + */ +int HTTPClient::GET() +{ + return sendRequest("GET"); +} + +/** + * sends a post request to the server + * @param payload uint8_t * + * @param size size_t + * @return http code + */ +int HTTPClient::POST(uint8_t * payload, size_t size) +{ + return sendRequest("POST", payload, size); +} + +int HTTPClient::POST(String payload) +{ + return POST((uint8_t *) payload.c_str(), payload.length()); +} + +/** + * sends a put request to the server + * @param payload uint8_t * + * @param size size_t + * @return http code + */ +int HTTPClient::PUT(uint8_t * payload, size_t size) { + return sendRequest("PUT", payload, size); +} + +int HTTPClient::PUT(String payload) { + return PUT((uint8_t *) payload.c_str(), payload.length()); +} + +/** + * sends a patch request to the server + * @param payload uint8_t * + * @param size size_t + * @return http code + */ +int HTTPClient::PATCH(uint8_t * payload, size_t size) { + return sendRequest("PATCH", payload, size); +} + +int HTTPClient::PATCH(String payload) { + return PATCH((uint8_t *) payload.c_str(), payload.length()); +} + +/** + * sendRequest + * @param type const char * "GET", "POST", .... + * @param payload String data for the message body + * @return + */ +int HTTPClient::sendRequest(const char * type, String payload) +{ + return sendRequest(type, (uint8_t *) payload.c_str(), payload.length()); +} + +/** + * sendRequest + * @param type const char * "GET", "POST", .... + * @param payload uint8_t * data for the message body if null not send + * @param size size_t size for the message body if 0 not send + * @return -1 if no info or > 0 when Content-Length is set by server + */ +int HTTPClient::sendRequest(const char * type, uint8_t * payload, size_t size) +{ + // connect to server + if(!connect()) { + return returnError(HTTPC_ERROR_CONNECTION_REFUSED); + } + + if(payload && size > 0) { + addHeader(F("Content-Length"), String(size)); + } + + // send Header + if(!sendHeader(type)) { + return returnError(HTTPC_ERROR_SEND_HEADER_FAILED); + } + + // send Payload if needed + if(payload && size > 0) { + if(_tcp->write(&payload[0], size) != size) { + return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED); + } + } + + // handle Server Response (Header) + return returnError(handleHeaderResponse()); +} + +/** + * sendRequest + * @param type const char * "GET", "POST", .... + * @param stream Stream * data stream for the message body + * @param size size_t size for the message body if 0 not Content-Length is send + * @return -1 if no info or > 0 when Content-Length is set by server + */ +int HTTPClient::sendRequest(const char * type, Stream * stream, size_t size) +{ + + if(!stream) { + return returnError(HTTPC_ERROR_NO_STREAM); + } + + // connect to server + if(!connect()) { + return returnError(HTTPC_ERROR_CONNECTION_REFUSED); + } + + if(size > 0) { + addHeader("Content-Length", String(size)); + } + + // send Header + if(!sendHeader(type)) { + return returnError(HTTPC_ERROR_SEND_HEADER_FAILED); + } + + int buff_size = HTTP_TCP_BUFFER_SIZE; + + int len = size; + int bytesWritten = 0; + + if(len == 0) { + len = -1; + } + + // if possible create smaller buffer then HTTP_TCP_BUFFER_SIZE + if((len > 0) && (len < HTTP_TCP_BUFFER_SIZE)) { + buff_size = len; + } + + // create buffer for read + uint8_t * buff = (uint8_t *) malloc(buff_size); + + if(buff) { + // read all data from stream and send it to server + while(connected() && (stream->available() > -1) && (len > 0 || len == -1)) { + + // get available data size + int sizeAvailable = stream->available(); + + if(sizeAvailable) { + + int readBytes = sizeAvailable; + + // read only the asked bytes + if(len > 0 && readBytes > len) { + readBytes = len; + } + + // not read more the buffer can handle + if(readBytes > buff_size) { + readBytes = buff_size; + } + + // read data + int bytesRead = stream->readBytes(buff, readBytes); + + // write it to Stream + int bytesWrite = _tcp->write((const uint8_t *) buff, bytesRead); + bytesWritten += bytesWrite; + + // are all Bytes a writen to stream ? + if(bytesWrite != bytesRead) { + DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] short write, asked for %d but got %d retry...\n", bytesRead, bytesWrite); + + // check for write error + if(_tcp->getWriteError()) { + DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] stream write error %d\n", _tcp->getWriteError()); + + //reset write error for retry + _tcp->clearWriteError(); + } + + // some time for the stream + delay(1); + + int leftBytes = (readBytes - bytesWrite); + + // retry to send the missed bytes + bytesWrite = _tcp->write((const uint8_t *) (buff + bytesWrite), leftBytes); + bytesWritten += bytesWrite; + + if(bytesWrite != leftBytes) { + // failed again + DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] short write, asked for %d but got %d failed.\n", leftBytes, bytesWrite); + free(buff); + return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED); + } + } + + // check for write error + if(_tcp->getWriteError()) { + DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] stream write error %d\n", _tcp->getWriteError()); + free(buff); + return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED); + } + + // count bytes to read left + if(len > 0) { + len -= readBytes; + } + + delay(0); + } else { + delay(1); + } + } + + free(buff); + + if(size && (int) size != bytesWritten) { + DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] Stream payload bytesWritten %d and size %d mismatch!.\n", bytesWritten, size); + DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] ERROR SEND PAYLOAD FAILED!"); + return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED); + } else { + DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] Stream payload written: %d\n", bytesWritten); + } + + } else { + DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] too less ram! need %d\n", HTTP_TCP_BUFFER_SIZE); + return returnError(HTTPC_ERROR_TOO_LESS_RAM); + } + + // handle Server Response (Header) + return returnError(handleHeaderResponse()); +} + +/** + * size of message body / payload + * @return -1 if no info or > 0 when Content-Length is set by server + */ +int HTTPClient::getSize(void) +{ + return _size; +} + +/** + * returns the stream of the tcp connection + * @return WiFiClient + */ +WiFiClient& HTTPClient::getStream(void) +{ + if(connected()) { + return *_tcp; + } + + DEBUG_HTTPCLIENT("[HTTP-Client] getStream: not connected\n"); + static WiFiClient empty; + return empty; +} + +/** + * returns the stream of the tcp connection + * @return WiFiClient * + */ +WiFiClient* HTTPClient::getStreamPtr(void) +{ + if(connected()) { + return _tcp.get(); + } + + DEBUG_HTTPCLIENT("[HTTP-Client] getStreamPtr: not connected\n"); + return nullptr; +} + +/** + * write all message body / payload to Stream + * @param stream Stream * + * @return bytes written ( negative values are error codes ) + */ +int HTTPClient::writeToStream(Stream * stream) +{ + + if(!stream) { + return returnError(HTTPC_ERROR_NO_STREAM); + } + + if(!connected()) { + return returnError(HTTPC_ERROR_NOT_CONNECTED); + } + + // get length of document (is -1 when Server sends no Content-Length header) + int len = _size; + int ret = 0; + + if(_transferEncoding == HTTPC_TE_IDENTITY) { + ret = writeToStreamDataBlock(stream, len); + + // have we an error? + if(ret < 0) { + return returnError(ret); + } + } else if(_transferEncoding == HTTPC_TE_CHUNKED) { + int size = 0; + while(1) { + if(!connected()) { + return returnError(HTTPC_ERROR_CONNECTION_LOST); + } + String chunkHeader = _tcp->readStringUntil('\n'); + + if(chunkHeader.length() <= 0) { + return returnError(HTTPC_ERROR_READ_TIMEOUT); + } + + chunkHeader.trim(); // remove \r + + // read size of chunk + len = (uint32_t) strtol((const char *) chunkHeader.c_str(), NULL, 16); + size += len; + DEBUG_HTTPCLIENT("[HTTP-Client] read chunk len: %d\n", len); + + // data left? + if(len > 0) { + int r = writeToStreamDataBlock(stream, len); + if(r < 0) { + // error in writeToStreamDataBlock + return returnError(r); + } + ret += r; + } else { + + // if no length Header use global chunk size + if(_size <= 0) { + _size = size; + } + + // check if we have write all data out + if(ret != _size) { + return returnError(HTTPC_ERROR_STREAM_WRITE); + } + break; + } + + // read trailing \r\n at the end of the chunk + char buf[2]; + auto trailing_seq_len = _tcp->readBytes((uint8_t*)buf, 2); + if (trailing_seq_len != 2 || buf[0] != '\r' || buf[1] != '\n') { + return returnError(HTTPC_ERROR_READ_TIMEOUT); + } + + delay(0); + } + } else { + return returnError(HTTPC_ERROR_ENCODING); + } + + end(); + return ret; +} + +/** + * return all payload as String (may need lot of ram or trigger out of memory!) + * @return String + */ +String HTTPClient::getString(void) +{ + StreamString sstring; + + if(_size) { + // try to reserve needed memmory + if(!sstring.reserve((_size + 1))) { + DEBUG_HTTPCLIENT("[HTTP-Client][getString] not enough memory to reserve a string! need: %d\n", (_size + 1)); + return ""; + } + } + + writeToStream(&sstring); + return sstring; +} + +/** + * converts error code to String + * @param error int + * @return String + */ +String HTTPClient::errorToString(int error) +{ + switch(error) { + case HTTPC_ERROR_CONNECTION_REFUSED: + return F("connection refused"); + case HTTPC_ERROR_SEND_HEADER_FAILED: + return F("send header failed"); + case HTTPC_ERROR_SEND_PAYLOAD_FAILED: + return F("send payload failed"); + case HTTPC_ERROR_NOT_CONNECTED: + return F("not connected"); + case HTTPC_ERROR_CONNECTION_LOST: + return F("connection lost"); + case HTTPC_ERROR_NO_STREAM: + return F("no stream"); + case HTTPC_ERROR_NO_HTTP_SERVER: + return F("no HTTP server"); + case HTTPC_ERROR_TOO_LESS_RAM: + return F("too less ram"); + case HTTPC_ERROR_ENCODING: + return F("Transfer-Encoding not supported"); + case HTTPC_ERROR_STREAM_WRITE: + return F("Stream write error"); + case HTTPC_ERROR_READ_TIMEOUT: + return F("read Timeout"); + default: + return String(); + } +} + +/** + * adds Header to the request + * @param name + * @param value + * @param first + */ +void HTTPClient::addHeader(const String& name, const String& value, bool first, bool replace) +{ + // not allow set of Header handled by code + if(!name.equalsIgnoreCase(F("Connection")) && + !name.equalsIgnoreCase(F("User-Agent")) && + !name.equalsIgnoreCase(F("Host")) && + !(name.equalsIgnoreCase(F("Authorization")) && _base64Authorization.length())){ + + String headerLine = name; + headerLine += ": "; + + if (replace) { + int headerStart = _headers.indexOf(headerLine); + if (headerStart != -1) { + int headerEnd = _headers.indexOf('\n', headerStart); + _headers = _headers.substring(0, headerStart) + _headers.substring(headerEnd + 1); + } + } + + headerLine += value; + headerLine += "\r\n"; + if(first) { + _headers = headerLine + _headers; + } else { + _headers += headerLine; + } + } + +} + +void HTTPClient::collectHeaders(const char* headerKeys[], const size_t headerKeysCount) +{ + _headerKeysCount = headerKeysCount; + if(_currentHeaders) { + delete[] _currentHeaders; + } + _currentHeaders = new RequestArgument[_headerKeysCount]; + for(size_t i = 0; i < _headerKeysCount; i++) { + _currentHeaders[i].key = headerKeys[i]; + } +} + +String HTTPClient::header(const char* name) +{ + for(size_t i = 0; i < _headerKeysCount; ++i) { + if(_currentHeaders[i].key == name) { + return _currentHeaders[i].value; + } + } + return String(); +} + +String HTTPClient::header(size_t i) +{ + if(i < _headerKeysCount) { + return _currentHeaders[i].value; + } + return String(); +} + +String HTTPClient::headerName(size_t i) +{ + if(i < _headerKeysCount) { + return _currentHeaders[i].key; + } + return String(); +} + +int HTTPClient::headers() +{ + return _headerKeysCount; +} + +bool HTTPClient::hasHeader(const char* name) +{ + for(size_t i = 0; i < _headerKeysCount; ++i) { + if((_currentHeaders[i].key == name) && (_currentHeaders[i].value.length() > 0)) { + return true; + } + } + return false; +} + +/** + * init TCP connection and handle ssl verify if needed + * @return true if connection is ok + */ +bool HTTPClient::connect(void) +{ + + if(connected()) { + DEBUG_HTTPCLIENT("[HTTP-Client] connect. already connected, try reuse!\n"); + while(_tcp->available() > 0) { + _tcp->read(); + } + return true; + } + + if (!_transportTraits) { + DEBUG_HTTPCLIENT("[HTTP-Client] connect: HTTPClient::begin was not called or returned error\n"); + return false; + } + + _tcp = _transportTraits->create(); + + if(!_tcp->connect(_host.c_str(), _port)) { + DEBUG_HTTPCLIENT("[HTTP-Client] failed connect to %s:%u\n", _host.c_str(), _port); + return false; + } + + DEBUG_HTTPCLIENT("[HTTP-Client] connected to %s:%u\n", _host.c_str(), _port); + + if (!_transportTraits->verify(*_tcp, _host.c_str())) { + DEBUG_HTTPCLIENT("[HTTP-Client] transport level verify failed\n"); + _tcp->stop(); + return false; + } + + // set Timeout for readBytesUntil and readStringUntil + _tcp->setTimeout(_tcpTimeout); + +#ifdef ESP8266 + _tcp->setNoDelay(true); +#endif + return connected(); +} + +/** + * sends HTTP request header + * @param type (GET, POST, ...) + * @return status + */ +bool HTTPClient::sendHeader(const char * type) +{ + if(!connected()) { + return false; + } + + String header = String(type) + " " + _uri + F(" HTTP/1."); + + if(_useHTTP10) { + header += "0"; + } else { + header += "1"; + } + + header += String(F("\r\nHost: ")) + _host; + if (_port != 80 && _port != 443) + { + header += ':'; + header += String(_port); + } + header += String(F("\r\nUser-Agent: ")) + _userAgent + + F("\r\nConnection: "); + + if(_reuse) { + header += F("keep-alive"); + } else { + header += F("close"); + } + header += "\r\n"; + + if(!_useHTTP10) { + header += F("Accept-Encoding: identity;q=1,chunked;q=0.1,*;q=0\r\n"); + } + + if(_base64Authorization.length()) { + _base64Authorization.replace("\n", ""); + header += F("Authorization: Basic "); + header += _base64Authorization; + header += "\r\n"; + } + + header += _headers + "\r\n"; + + return (_tcp->write((const uint8_t *) header.c_str(), header.length()) == header.length()); +} + +/** + * reads the response from the server + * @return int http code + */ +int HTTPClient::handleHeaderResponse() +{ + + if(!connected()) { + return HTTPC_ERROR_NOT_CONNECTED; + } + + String transferEncoding; + _returnCode = -1; + _size = -1; + _transferEncoding = HTTPC_TE_IDENTITY; + unsigned long lastDataTime = millis(); + + while(connected()) { + size_t len = _tcp->available(); + if(len > 0) { + String headerLine = _tcp->readStringUntil('\n'); + headerLine.trim(); // remove \r + + lastDataTime = millis(); + + DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] RX: '%s'\n", headerLine.c_str()); + + if(headerLine.startsWith("HTTP/1.")) { + _returnCode = headerLine.substring(9, headerLine.indexOf(' ', 9)).toInt(); + } else if(headerLine.indexOf(':')) { + String headerName = headerLine.substring(0, headerLine.indexOf(':')); + String headerValue = headerLine.substring(headerLine.indexOf(':') + 1); + headerValue.trim(); + + if(headerName.equalsIgnoreCase("Content-Length")) { + _size = headerValue.toInt(); + } + + if(headerName.equalsIgnoreCase("Connection")) { + _canReuse = headerValue.equalsIgnoreCase("keep-alive"); + } + + if(headerName.equalsIgnoreCase("Transfer-Encoding")) { + transferEncoding = headerValue; + } + + for(size_t i = 0; i < _headerKeysCount; i++) { + if(_currentHeaders[i].key.equalsIgnoreCase(headerName)) { + _currentHeaders[i].value = headerValue; + break; + } + } + } + + if(headerLine == "") { + DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] code: %d\n", _returnCode); + + if(_size > 0) { + DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] size: %d\n", _size); + } + + if(transferEncoding.length() > 0) { + DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] Transfer-Encoding: %s\n", transferEncoding.c_str()); + if(transferEncoding.equalsIgnoreCase("chunked")) { + _transferEncoding = HTTPC_TE_CHUNKED; + } else { + return HTTPC_ERROR_ENCODING; + } + } else { + _transferEncoding = HTTPC_TE_IDENTITY; + } + + if(_returnCode) { + return _returnCode; + } else { + DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] Remote host is not an HTTP Server!"); + return HTTPC_ERROR_NO_HTTP_SERVER; + } + } + + } else { + if((millis() - lastDataTime) > _tcpTimeout) { + return HTTPC_ERROR_READ_TIMEOUT; + } + delay(0); + } + } + + return HTTPC_ERROR_CONNECTION_LOST; +} + +/** + * write one Data Block to Stream + * @param stream Stream * + * @param size int + * @return < 0 = error >= 0 = size written + */ +int HTTPClient::writeToStreamDataBlock(Stream * stream, int size) +{ + int buff_size = HTTP_TCP_BUFFER_SIZE; + int len = size; + int bytesWritten = 0; + + // if possible create smaller buffer then HTTP_TCP_BUFFER_SIZE + if((len > 0) && (len < HTTP_TCP_BUFFER_SIZE)) { + buff_size = len; + } + + // create buffer for read + uint8_t * buff = (uint8_t *) malloc(buff_size); + + if(buff) { + // read all data from server + while(connected() && (len > 0 || len == -1)) { + + // get available data size + size_t sizeAvailable = _tcp->available(); + + if(sizeAvailable) { + + int readBytes = sizeAvailable; + + // read only the asked bytes + if(len > 0 && readBytes > len) { + readBytes = len; + } + + // not read more the buffer can handle + if(readBytes > buff_size) { + readBytes = buff_size; + } + + // read data + int bytesRead = _tcp->readBytes(buff, readBytes); + + // write it to Stream + int bytesWrite = stream->write(buff, bytesRead); + bytesWritten += bytesWrite; + + // are all Bytes a writen to stream ? + if(bytesWrite != bytesRead) { + DEBUG_HTTPCLIENT("[HTTP-Client][writeToStream] short write asked for %d but got %d retry...\n", bytesRead, bytesWrite); + + // check for write error + if(stream->getWriteError()) { + DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] stream write error %d\n", stream->getWriteError()); + + //reset write error for retry + stream->clearWriteError(); + } + + // some time for the stream + delay(1); + + int leftBytes = (readBytes - bytesWrite); + + // retry to send the missed bytes + bytesWrite = stream->write((buff + bytesWrite), leftBytes); + bytesWritten += bytesWrite; + + if(bytesWrite != leftBytes) { + // failed again + DEBUG_HTTPCLIENT("[HTTP-Client][writeToStream] short write asked for %d but got %d failed.\n", leftBytes, bytesWrite); + free(buff); + return HTTPC_ERROR_STREAM_WRITE; + } + } + + // check for write error + if(stream->getWriteError()) { + DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] stream write error %d\n", stream->getWriteError()); + free(buff); + return HTTPC_ERROR_STREAM_WRITE; + } + + // count bytes to read left + if(len > 0) { + len -= readBytes; + } + + delay(0); + } else { + delay(1); + } + } + + free(buff); + + DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] connection closed or file end (written: %d).\n", bytesWritten); + + if((size > 0) && (size != bytesWritten)) { + DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] bytesWritten %d and size %d mismatch!.\n", bytesWritten, size); + return HTTPC_ERROR_STREAM_WRITE; + } + + } else { + DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] too less ram! need %d\n", HTTP_TCP_BUFFER_SIZE); + return HTTPC_ERROR_TOO_LESS_RAM; + } + + return bytesWritten; +} + +/** + * called to handle error return, may disconnect the connection if still exists + * @param error + * @return error + */ +int HTTPClient::returnError(int error) +{ + if(error < 0) { + DEBUG_HTTPCLIENT("[HTTP-Client][returnError] error(%d): %s\n", error, errorToString(error).c_str()); + if(connected()) { + DEBUG_HTTPCLIENT("[HTTP-Client][returnError] tcp stop\n"); + _tcp->stop(); + } + } + return error; +} diff --git a/src/ESP8266HTTPClient-h4xx0red.h b/src/ESP8266HTTPClient-h4xx0red.h new file mode 100644 index 0000000..3bf1b7e --- /dev/null +++ b/src/ESP8266HTTPClient-h4xx0red.h @@ -0,0 +1,249 @@ +/** + * The standard ESP8266HTTPClient requires a fingerprint for certificate + * validation as discussed in this issue, starting October 12: + * https://github.com/esp8266/Arduino/issues/1941 + * + * This is a modified version which removes validation entirely. It's not + * secure, but for our purpose it will do just fine and prevents + * complicated configuration because we're talking to a Google service + * for which we don't control the certificates. + * + * If there is a proper way to do validation without hardcoding the + * fingerprint (root certificate validation?), remove this. + * + * I've surrounded the customizations with ""//>> h4xx0red" comments. + */ + + +/** + * ESP8266HTTPClient.h + * + * Created on: 02.11.2015 + * + * Copyright (c) 2015 Markus Sattler. All rights reserved. + * This file is part of the ESP8266HTTPClient for Arduino. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifndef ESP8266HTTPClient_H_ +#define ESP8266HTTPClient_H_ + +#include +#include +#include + +#ifdef DEBUG_ESP_HTTP_CLIENT +#ifdef DEBUG_ESP_PORT +#define DEBUG_HTTPCLIENT(...) DEBUG_ESP_PORT.printf( __VA_ARGS__ ) +#endif +#endif + +#ifndef DEBUG_HTTPCLIENT +#define DEBUG_HTTPCLIENT(...) +#endif + +#define HTTPCLIENT_DEFAULT_TCP_TIMEOUT (5000) + +/// HTTP client errors +#define HTTPC_ERROR_CONNECTION_REFUSED (-1) +#define HTTPC_ERROR_SEND_HEADER_FAILED (-2) +#define HTTPC_ERROR_SEND_PAYLOAD_FAILED (-3) +#define HTTPC_ERROR_NOT_CONNECTED (-4) +#define HTTPC_ERROR_CONNECTION_LOST (-5) +#define HTTPC_ERROR_NO_STREAM (-6) +#define HTTPC_ERROR_NO_HTTP_SERVER (-7) +#define HTTPC_ERROR_TOO_LESS_RAM (-8) +#define HTTPC_ERROR_ENCODING (-9) +#define HTTPC_ERROR_STREAM_WRITE (-10) +#define HTTPC_ERROR_READ_TIMEOUT (-11) + +/// size for the stream handling +#define HTTP_TCP_BUFFER_SIZE (1460) + +/// HTTP codes see RFC7231 +typedef enum { + HTTP_CODE_CONTINUE = 100, + HTTP_CODE_SWITCHING_PROTOCOLS = 101, + HTTP_CODE_PROCESSING = 102, + HTTP_CODE_OK = 200, + HTTP_CODE_CREATED = 201, + HTTP_CODE_ACCEPTED = 202, + HTTP_CODE_NON_AUTHORITATIVE_INFORMATION = 203, + HTTP_CODE_NO_CONTENT = 204, + HTTP_CODE_RESET_CONTENT = 205, + HTTP_CODE_PARTIAL_CONTENT = 206, + HTTP_CODE_MULTI_STATUS = 207, + HTTP_CODE_ALREADY_REPORTED = 208, + HTTP_CODE_IM_USED = 226, + HTTP_CODE_MULTIPLE_CHOICES = 300, + HTTP_CODE_MOVED_PERMANENTLY = 301, + HTTP_CODE_FOUND = 302, + HTTP_CODE_SEE_OTHER = 303, + HTTP_CODE_NOT_MODIFIED = 304, + HTTP_CODE_USE_PROXY = 305, + HTTP_CODE_TEMPORARY_REDIRECT = 307, + HTTP_CODE_PERMANENT_REDIRECT = 308, + HTTP_CODE_BAD_REQUEST = 400, + HTTP_CODE_UNAUTHORIZED = 401, + HTTP_CODE_PAYMENT_REQUIRED = 402, + HTTP_CODE_FORBIDDEN = 403, + HTTP_CODE_NOT_FOUND = 404, + HTTP_CODE_METHOD_NOT_ALLOWED = 405, + HTTP_CODE_NOT_ACCEPTABLE = 406, + HTTP_CODE_PROXY_AUTHENTICATION_REQUIRED = 407, + HTTP_CODE_REQUEST_TIMEOUT = 408, + HTTP_CODE_CONFLICT = 409, + HTTP_CODE_GONE = 410, + HTTP_CODE_LENGTH_REQUIRED = 411, + HTTP_CODE_PRECONDITION_FAILED = 412, + HTTP_CODE_PAYLOAD_TOO_LARGE = 413, + HTTP_CODE_URI_TOO_LONG = 414, + HTTP_CODE_UNSUPPORTED_MEDIA_TYPE = 415, + HTTP_CODE_RANGE_NOT_SATISFIABLE = 416, + HTTP_CODE_EXPECTATION_FAILED = 417, + HTTP_CODE_MISDIRECTED_REQUEST = 421, + HTTP_CODE_UNPROCESSABLE_ENTITY = 422, + HTTP_CODE_LOCKED = 423, + HTTP_CODE_FAILED_DEPENDENCY = 424, + HTTP_CODE_UPGRADE_REQUIRED = 426, + HTTP_CODE_PRECONDITION_REQUIRED = 428, + HTTP_CODE_TOO_MANY_REQUESTS = 429, + HTTP_CODE_REQUEST_HEADER_FIELDS_TOO_LARGE = 431, + HTTP_CODE_INTERNAL_SERVER_ERROR = 500, + HTTP_CODE_NOT_IMPLEMENTED = 501, + HTTP_CODE_BAD_GATEWAY = 502, + HTTP_CODE_SERVICE_UNAVAILABLE = 503, + HTTP_CODE_GATEWAY_TIMEOUT = 504, + HTTP_CODE_HTTP_VERSION_NOT_SUPPORTED = 505, + HTTP_CODE_VARIANT_ALSO_NEGOTIATES = 506, + HTTP_CODE_INSUFFICIENT_STORAGE = 507, + HTTP_CODE_LOOP_DETECTED = 508, + HTTP_CODE_NOT_EXTENDED = 510, + HTTP_CODE_NETWORK_AUTHENTICATION_REQUIRED = 511 +} t_http_codes; + +typedef enum { + HTTPC_TE_IDENTITY, + HTTPC_TE_CHUNKED +} transferEncoding_t; + +class TransportTraits; +typedef std::unique_ptr TransportTraitsPtr; + +class HTTPClient +{ +public: + HTTPClient(); + ~HTTPClient(); + + bool begin(String url); + //>> h4xx0red: renamed to beginSecure, removed fingerprint parameter + bool beginSecure(String url); + //<< h4xx0red + bool begin(String host, uint16_t port, String uri = "/"); + bool begin(String host, uint16_t port, String uri, String httpsFingerprint); + // deprecated, use the overload above instead + bool begin(String host, uint16_t port, String uri, bool https, String httpsFingerprint) __attribute__ ((deprecated)); + + void end(void); + + bool connected(void); + + void setReuse(bool reuse); /// keep-alive + void setUserAgent(const String& userAgent); + void setAuthorization(const char * user, const char * password); + void setAuthorization(const char * auth); + void setTimeout(uint16_t timeout); + + void useHTTP10(bool usehttp10 = true); + + /// request handling + int GET(); + int POST(uint8_t * payload, size_t size); + int POST(String payload); + int PUT(uint8_t * payload, size_t size); + int PUT(String payload); + int PATCH(uint8_t * payload, size_t size); + int PATCH(String payload); + int sendRequest(const char * type, String payload); + int sendRequest(const char * type, uint8_t * payload = NULL, size_t size = 0); + int sendRequest(const char * type, Stream * stream, size_t size = 0); + + void addHeader(const String& name, const String& value, bool first = false, bool replace = true); + + /// Response handling + void collectHeaders(const char* headerKeys[], const size_t headerKeysCount); + String header(const char* name); // get request header value by name + String header(size_t i); // get request header value by number + String headerName(size_t i); // get request header name by number + int headers(); // get header count + bool hasHeader(const char* name); // check if header exists + + + int getSize(void); + + WiFiClient& getStream(void); + WiFiClient* getStreamPtr(void); + int writeToStream(Stream* stream); + String getString(void); + + static String errorToString(int error); + +protected: + struct RequestArgument { + String key; + String value; + }; + + bool beginInternal(String url, const char* expectedProtocol); + void clear(); + int returnError(int error); + bool connect(void); + bool sendHeader(const char * type); + int handleHeaderResponse(); + int writeToStreamDataBlock(Stream * stream, int len); + + + TransportTraitsPtr _transportTraits; + std::unique_ptr _tcp; + + /// request handling + String _host; + uint16_t _port = 0; + bool _reuse = false; + uint16_t _tcpTimeout = HTTPCLIENT_DEFAULT_TCP_TIMEOUT; + bool _useHTTP10 = false; + + String _uri; + String _protocol; + String _headers; + String _userAgent = "ESP8266HTTPClient"; + String _base64Authorization; + + /// Response handling + RequestArgument* _currentHeaders = nullptr; + size_t _headerKeysCount = 0; + + int _returnCode = 0; + int _size = -1; + bool _canReuse = false; + transferEncoding_t _transferEncoding = HTTPC_TE_IDENTITY; +}; + + + +#endif /* ESP8266HTTPClient_H_ */ diff --git a/src/assets/css.h b/src/assets/css.h index 0e08926..8d91255 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -5,135 +5,138 @@ const uint8_t EmbeddedBundleCSS[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0x99, - 0xda,0x9a,0xb7,0x79,0xc0,0x62,0x6c,0x33,0x63,0xbc,0xb3,0x95,0xe4,0x94,0x43,0x92,0x43,0x0e,0xb9,0x6c, - 0xed,0x41,0x06,0x61,0x54,0x8b,0x91,0x03,0x62,0x3c,0xf3,0x28,0xfe,0x7b,0x5a,0x1f,0x18,0x09,0x04,0x9e, - 0xc9,0x4b,0x55,0xd6,0xb5,0x63,0xd3,0xea,0x6e,0xb5,0xba,0x5b,0xad,0xee,0x16,0x7f,0x74,0x63,0x94,0x31, - 0x5c,0xb9,0xf1,0x01,0x67,0xb4,0xc2,0xed,0x81,0xbe,0x7a,0x35,0xf9,0x8d,0x94,0xc7,0x98,0x94,0x39,0xae, - 0x08,0xeb,0x72,0x76,0x2a,0x74,0xf8,0x81,0x56,0x29,0xae,0x3c,0x80,0xec,0x33,0x5a,0x32,0x0e,0xc6,0x71, - 0x14,0xfa,0xdb,0x4f,0xdd,0x81,0xa6,0x6f,0x6d,0x42,0x0b,0x5a,0xc5,0xf7,0x51,0x10,0x25,0x8f,0x91,0x44, - 0xc9,0xd0,0x89,0x14,0x6f,0xf1,0x3f,0xe9,0x81,0x32,0xea,0x3e,0xfc,0x15,0x17,0x2f,0x98,0x91,0x04,0x39, - 0xff,0xc0,0x0d,0x7e,0x70,0xaf,0xcf,0xee,0x9f,0x2b,0x82,0x0a,0xb7,0x46,0x65,0xed,0xd5,0x30,0x79,0xa6, - 0xcd,0xb0,0xf2,0x23,0x7c,0x92,0xcf,0x17,0x4c,0x8e,0x39,0x8b,0xd7,0x41,0xb0,0x2f,0x30,0x03,0xf1,0xbd, - 0xfa,0x8c,0x12,0x2e,0x9b,0x1f,0xac,0x00,0xa9,0x20,0x25,0xf6,0x72,0x89,0x04,0x64,0xdd,0xa1,0xa0,0xc9, - 0xcf,0x7f,0x37,0x94,0xf1,0xf5,0x09,0xe1,0x0b,0x9c,0xb1,0xd8,0x5f,0x57,0xf8,0xe4,0xd4,0xb4,0x20,0xa9, - 0x73,0xbf,0x09,0xf8,0x67,0x7f,0x42,0xd5,0x91,0x94,0x72,0xfc,0xfa,0x54,0x09,0x4e,0xc1,0xfe,0x8c,0xd2, - 0x94,0xcf,0xb2,0xe2,0x74,0x2b,0x7f,0x0b,0x5f,0x1a,0x6f,0x27,0x2e,0x50,0xcd,0xbc,0x24,0x27,0x45,0xda, - 0x2a,0x4a,0x58,0x2f,0xa3,0xa7,0x38,0xe8,0xfc,0x43,0x03,0xbf,0x4a,0x57,0x7d,0x91,0xf2,0xdc,0xb0,0xef, - 0xec,0xed,0x8c,0x9f,0x25,0xe4,0x87,0x0e,0xaa,0x70,0x8d,0x99,0x01,0xa9,0x9b,0xc3,0x89,0xb0,0x1f,0xed, - 0x01,0x25,0x3f,0x8f,0x15,0x6d,0xca,0xd4,0x53,0x6a,0x0e,0xa2,0x6c,0x2f,0x17,0x15,0xfb,0x2b,0x6d,0x3d, - 0x03,0xdc,0xab,0x50,0x4a,0x9a,0x3a,0xf6,0x37,0x30,0xbc,0x57,0x64,0x59,0x96,0xed,0x93,0xa6,0xaa,0xe1, - 0xf7,0x99,0x92,0x12,0x74,0xb8,0x4f,0x49,0x7d,0x2e,0xd0,0x1b,0xd8,0x5d,0xe8,0x4f,0x2c,0xcc,0xd0,0x3f, - 0x67,0x6f,0x18,0xe0,0x11,0x0c,0xa0,0xd4,0xbc,0xf6,0x9f,0xf8,0xe8,0xd8,0x1c,0x82,0x44,0x37,0x87,0xc2, - 0xeb,0x35,0x19,0x38,0xdc,0x06,0x7b,0x86,0x5f,0x99,0x87,0x0a,0x72,0x2c,0xe3,0x04,0x0b,0x61,0x04,0x24, - 0xc5,0x09,0xad,0x10,0x23,0xb4,0x8c,0x4b,0x5a,0x62,0x09,0x64,0x15,0x78,0x07,0xf8,0xea,0x29,0x6e,0xce, - 0x67,0x5c,0x25,0xa8,0xc6,0xfb,0x4b,0x4e,0x18,0x16,0xb3,0x62,0xc0,0xbc,0x54,0xe8,0xdc,0x2b,0x3c,0xce, - 0x68,0xd2,0xd4,0x6e,0xff,0x94,0xd3,0x17,0x70,0x76,0x63,0xc8,0x18,0x99,0xda,0x45,0x61,0x59,0x06,0x26, - 0x14,0xd2,0x6c,0x53,0x02,0x05,0x9f,0xe0,0x2b,0xa3,0x4e,0x09,0xfa,0x01,0x41,0x61,0xb1,0xb9,0xda,0x5a, - 0xca,0xbc,0x26,0x50,0xb3,0x2f,0x6d,0x18,0x57,0xfd,0xe0,0x7d,0xdf,0xc1,0xc4,0xe8,0x50,0xe0,0xf4,0x87, - 0x3b,0x01,0x4c,0x17,0x68,0x1f,0x94,0x8b,0xb1,0x8f,0x29,0xb9,0x87,0xc1,0x56,0xb9,0x58,0x8a,0x33,0xd4, - 0x14,0x6c,0x4f,0xb9,0x5f,0xb0,0xb7,0xd8,0xdf,0x4e,0x45,0x32,0x2d,0xa5,0xc1,0x75,0x9b,0x4d,0xd0,0x67, - 0xb0,0x97,0x56,0x33,0x6b,0xd1,0x25,0x2e,0xe3,0x65,0xcf,0x59,0x79,0x89,0xc7,0x44,0x3d,0xb3,0x96,0x1f, - 0x73,0x59,0xdc,0xf7,0x1a,0xa4,0xd7,0xaa,0xfa,0xf2,0x94,0x07,0xb8,0x76,0xe8,0x54,0x03,0x0b,0x18,0x72, - 0x79,0x0b,0x08,0x4a,0xf4,0x11,0xc6,0x54,0x72,0xb1,0x7f,0xcf,0xa8,0x82,0x7d,0xbe,0xbf,0x29,0xb9,0xe9, - 0x14,0xe3,0x41,0xdd,0x33,0xec,0x84,0x4b,0x74,0x37,0x97,0x3f,0xeb,0x28,0x37,0xf9,0x59,0x95,0x35,0xe7, - 0x32,0x37,0xb9,0xd9,0x35,0x3b,0xeb,0x3c,0x56,0x7e,0xcb,0x76,0x58,0x8a,0x24,0xf2,0x69,0xc6,0x3e,0x73, - 0xdb,0x77,0x1e,0x6d,0xc1,0x66,0x33,0x9b,0xfb,0x16,0xaf,0x9b,0xf6,0x79,0xc7,0xd6,0xff,0xc0,0x1c,0x56, - 0xa3,0xdd,0x0e,0x0c,0x1f,0x98,0xc1,0x6e,0xc7,0x77,0x84,0x8d,0x1b,0x73,0xb4,0x86,0x99,0x55,0x7a,0xb7, - 0xb0,0x07,0x93,0x02,0xa3,0xb1,0xa9,0x24,0x6c,0x5e,0x81,0x93,0x71,0x73,0xf5,0x93,0xe1,0x91,0xe4,0x62, - 0xfc,0x03,0xbe,0xfa,0xbe,0x60,0x22,0xb8,0xda,0x1d,0x54,0x0e,0xd9,0x9c,0x52,0x27,0x9a,0xa7,0xb9,0xa1, - 0x89,0x9b,0x0e,0x37,0xc3,0xcb,0xa2,0xb5,0x5b,0x8e,0x35,0xc3,0xc9,0xa6,0xe0,0x9b,0x0e,0xa4,0xf1,0xfa, - 0x7d,0xc6,0xb0,0x07,0x0f,0xc1,0xfe,0x56,0xe8,0x18,0x23,0xcd,0xda,0xe8,0x46,0xd8,0xb0,0xf3,0xb9,0x61, - 0x91,0x0f,0x84,0x8c,0x9b,0xfc,0x2d,0x66,0x7a,0x7f,0xb8,0xb8,0xc9,0xdd,0x66,0xb9,0x0f,0x84,0x0a,0x2b, - 0xff,0x56,0xdb,0x4a,0x09,0x4d,0xf5,0x43,0x1c,0x32,0xcb,0x4d,0xb6,0xcd,0x22,0x6b,0x6d,0x31,0x14,0x0b, - 0x4f,0xd1,0x27,0x55,0x3c,0x41,0x8a,0xef,0x87,0x7a,0xca,0x2f,0x9e,0x1c,0x51,0x3c,0xd9,0xf2,0xf6,0x73, - 0xb5,0x34,0xdd,0xb4,0x6e,0xe3,0x79,0x10,0x97,0x39,0x2b,0xe8,0xc5,0x7b,0x8b,0x73,0x92,0xa6,0xb8,0xe4, - 0x5c,0xbe,0x49,0xc9,0x0d,0x31,0x83,0x6b,0x91,0x23,0xab,0x1b,0x4b,0x41,0x67,0xc8,0x04,0x6c,0xba,0xbc, - 0x8f,0x9b,0x40,0xad,0xb8,0x31,0x7a,0x36,0x8b,0x2d,0x25,0xa4,0x5a,0xb1,0x10,0x2f,0xe8,0x34,0xa5,0xe3, - 0x13,0x22,0x85,0x91,0x2a,0x97,0xcd,0xe9,0x80,0x2b,0x03,0x74,0x46,0x75,0x7d,0x81,0x09,0xcc,0x94,0x1a, - 0xcc,0x93,0xe4,0x06,0x88,0xe1,0x62,0xf4,0xfc,0x6a,0x16,0x8b,0x4d,0x05,0x08,0x35,0x2e,0x70,0xc2,0x5c, - 0x3e,0x08,0x3b,0x12,0xb5,0x08,0x8a,0x25,0x04,0x1b,0x54,0x68,0x1a,0x6a,0xa9,0x77,0x6c,0x6b,0x73,0x8d, - 0xaa,0x40,0xb6,0xd9,0x5d,0x34,0x07,0x72,0x94,0xd2,0x8b,0xe2,0x3d,0x69,0x22,0xec,0xed,0xe5,0x9f,0x1f, - 0x09,0xc5,0x0b,0xb5,0x93,0x94,0xe5,0xf1,0x2a,0x08,0x3e,0x4d,0x15,0x37,0xf5,0x62,0xa5,0xbe,0xe9,0xc0, - 0x55,0x89,0x16,0xcf,0x97,0xaa,0x9c,0x0e,0x70,0x85,0xda,0xa0,0xaf,0xb6,0xda,0x8c,0x2b,0x57,0x41,0xa5, - 0x8a,0xd5,0x43,0xaf,0x68,0xf9,0xd8,0x4e,0x52,0x73,0xad,0x1a,0x93,0x74,0xba,0x97,0x03,0xd3,0x5f,0x1e, - 0x52,0xc4,0x50,0x4c,0x4e,0xe8,0x88,0xbf,0xd4,0x2f,0xc7,0x5f,0x5f,0x4f,0xc5,0xbe,0x61,0xd9,0x93,0xfb, - 0x15,0x9e,0x1c,0x78,0x2a,0xeb,0xe7,0xbb,0x9c,0xb1,0x73,0xfc,0xe5,0xcb,0xe5,0x72,0xf1,0x2f,0x6b,0x9f, - 0x56,0xc7,0x2f,0x61,0x10,0x04,0x1c,0xff,0xce,0x91,0x2a,0x7e,0xbe,0x5b,0x6d,0xee,0x9c,0x17,0x82,0x2f, - 0x7f,0xa1,0xaf,0xcf,0x77,0x81,0x13,0x38,0xe1,0xce,0xe1,0x30,0xa1,0xe1,0xe7,0xbb,0x70,0x77,0xf7,0xed, - 0xeb,0x19,0xb1,0xdc,0xc9,0x48,0x51,0x3c,0xdf,0xdd,0xa7,0x2b,0xfe,0xb9,0x73,0xd2,0xe7,0xbb,0xbf,0xef, - 0xfc,0xf5,0xe3,0x63,0xf8,0xe8,0xac,0xfd,0x28,0xdc,0x16,0x5b,0x3f,0x78,0x5a,0x6d,0x37,0x4e,0xe4,0xef, - 0xd6,0xdb,0x70,0xfd,0xb7,0xd5,0xce,0xdf,0x6e,0x82,0x75,0x24,0x87,0xef,0xbe,0x7c,0xfb,0xca,0x67,0xfe, - 0xf6,0xf0,0xd9,0x91,0x55,0xbb,0x23,0x1a,0x25,0x4e,0x49,0xbd,0x0a,0x83,0xb7,0xb1,0xde,0xce,0xaa,0x81, - 0xc2,0xf7,0x45,0xa7,0x2b,0x4d,0x3f,0x5b,0xc4,0xc2,0xff,0xbf,0x8a,0xd8,0x1d,0x36,0x69,0x82,0x7e,0x97, - 0x22,0xba,0xeb,0x7e,0x3b,0x91,0xb2,0xef,0x79,0x44,0xb2,0x53,0x54,0xa0,0x03,0x2e,0xdc,0x02,0x1f,0x71, - 0x99,0xb6,0x66,0x1c,0x32,0xba,0x5c,0xb6,0x2e,0x8b,0xd9,0x4e,0x92,0xfc,0x32,0x82,0x8b,0x14,0xce,0x8a, - 0xde,0xd7,0xe4,0x0e,0x1a,0xba,0x54,0x46,0x04,0x4a,0x72,0x9c,0xfc,0x84,0x7d,0x69,0xd6,0xf2,0xb0,0x89, - 0xe9,0x8f,0xab,0x2c,0xb2,0xf1,0xd3,0xf9,0x42,0x50,0x4f,0x3e,0x8d,0x06,0xf5,0xae,0x90,0x12,0x6f,0x13, - 0x98,0x5d,0x33,0x29,0x9c,0x9f,0x00,0x0a,0x02,0x8a,0xaa,0xbd,0x9e,0x03,0xa8,0x61,0x14,0x50,0x5f,0x95, - 0xa4,0xab,0x55,0x68,0xb6,0x82,0xe4,0x23,0xad,0x89,0xe8,0xf8,0x54,0xb8,0x40,0x8c,0xbc,0x60,0x3d,0x32, - 0xf8,0x15,0xbd,0x5c,0x25,0xca,0x0a,0xfc,0xba,0xe7,0x7f,0xbc,0x94,0x54,0xe0,0x53,0x9c,0x08,0xf6,0x5b, - 0x73,0x2a,0x07,0x9e,0x63,0x62,0xfe,0xdf,0x03,0xff,0x54,0x08,0xed,0xa0,0x2b,0xcb,0xe8,0x37,0x5f,0xb2, - 0xb3,0x61,0xf1,0xb3,0xaa,0x15,0x93,0xf3,0x5f,0xb1,0x6c,0x39,0xf5,0x83,0x70,0x3e,0xb4,0xa2,0x9b,0xe5, - 0xc1,0x51,0x72,0xaa,0x85,0xa4,0x5e,0x0d,0x7e,0xc1,0x06,0x1c,0x69,0xca,0x29,0x1a,0x38,0xc7,0x80,0x24, - 0xb7,0x95,0x81,0x24,0x41,0x03,0x4a,0xcd,0x2a,0xcc,0x92,0xdc,0xc0,0x51,0x30,0x6d,0x32,0x04,0xdb,0x8e, - 0x5b,0x53,0xc7,0xea,0x81,0x02,0xcd,0xe9,0xd7,0x3a,0x72,0x4c,0x10,0x29,0x5e,0x39,0xab,0xde,0x76,0x66, - 0x73,0xf4,0x6a,0x49,0x50,0xef,0x58,0xd3,0x3d,0x43,0xf5,0xe5,0xd1,0x2c,0x03,0x5f,0xf5,0x56,0x41,0xab, - 0x73,0x59,0x2d,0x63,0x87,0x26,0x76,0x78,0x03,0x7b,0x6b,0x62,0x6f,0x17,0xb1,0xd7,0x6b,0x77,0x69,0x74, - 0x63,0xf0,0x5a,0xaf,0xfd,0x35,0xfc,0x5b,0x64,0xb8,0x35,0x85,0xdd,0x2e,0x0b,0x1b,0x45,0x4b,0xd3,0x47, - 0x8f,0x06,0xaf,0x28,0xf2,0x23,0xf8,0xb7,0xc8,0xf0,0xd1,0x5c,0xfd,0xe3,0xf2,0xea,0x9f,0x4c,0x61,0x9f, - 0x96,0x85,0xdd,0x99,0xd8,0xbb,0x19,0x6c,0x30,0xae,0x70,0x18,0x1e,0x6b,0xc1,0xb2,0x86,0x87,0xd8,0x29, - 0x42,0x8d,0x22,0x34,0x28,0xe6,0x6c,0x0d,0x46,0x1e,0x28,0xb6,0x06,0xc5,0xcc,0x8a,0x67,0x0c,0x0d,0x16, - 0xbe,0x32,0xea,0xcd,0xab,0x71,0x5b,0xb4,0xf8,0x46,0x13,0x7b,0x63,0x88,0xbd,0x99,0x11,0x7b,0xab,0x51, - 0x6c,0x0d,0x8a,0x39,0x3f,0x89,0x34,0x8a,0xc8,0xa0,0x88,0xe6,0x28,0xec,0x2e,0x05,0xbe,0x34,0x30,0x52, - 0x8e,0xa4,0x73,0x5b,0xf2,0xad,0x47,0x4d,0xdb,0x8f,0x86,0xb6,0xe7,0xfc,0xeb,0x49,0x13,0xfb,0xc9,0x10, - 0x7b,0xce,0xc7,0x76,0x1a,0xc5,0xce,0xa0,0x18,0xfb,0x59,0xff,0xad,0x05,0x58,0x08,0x61,0xd9,0x38,0xbe, - 0x4e,0xd0,0x8d,0x58,0x3b,0x50,0xf4,0xa1,0x76,0x82,0x6f,0x84,0x5d,0x81,0xaf,0xa2,0xee,0x9f,0x4e,0x38, - 0x25,0xc8,0xf9,0x85,0x1f,0xee,0xbd,0xbd,0xe1,0xd0,0xfa,0xdc,0x8a,0x83,0x69,0x74,0x16,0x01,0xc8,0x88, - 0x98,0x9e,0x96,0xe7,0x26,0xa8,0x48,0x7e,0xe1,0xb1,0xd2,0xf9,0x55,0x1c,0x7b,0x9f,0xcd,0x20,0x6c,0x1e, - 0xf7,0x7d,0x0e,0x3d,0x9c,0x94,0x9c,0x53,0xd7,0x21,0xad,0x4e,0xb3,0x5e,0x98,0x74,0x2a,0x1b,0x75,0x91, - 0x59,0xd7,0xa9,0xaa,0x3c,0x2d,0x5c,0x5a,0xb8,0x4d,0xd1,0x16,0xa4,0x86,0xf4,0x83,0xbd,0x15,0xaa,0x36, - 0x50,0xd3,0xf3,0x32,0xe7,0x9a,0x4e,0xa8,0xa8,0x0f,0x44,0x0e,0xd0,0xc1,0x5f,0x2a,0xfe,0x36,0x9c,0x87, - 0x23,0x38,0x71,0x08,0x15,0x90,0x46,0x40,0x1a,0x01,0x69,0x38,0xa4,0x1d,0x12,0x1c,0x69,0x61,0x91,0x11, - 0xc8,0x82,0x8b,0xc7,0x0a,0xf9,0x43,0xe4,0x87,0xd4,0x10,0x07,0x16,0x04,0x89,0x60,0xe1,0x90,0xb2,0x26, - 0x29,0xee,0x4c,0x59,0x13,0x52,0x41,0xf9,0xda,0x8f,0x8d,0x6e,0xd8,0xd2,0xd4,0x4d,0x99,0x5b,0x90,0x91, - 0x2e,0x57,0x7a,0xe6,0x24,0x73,0xa1,0x49,0xa9,0x34,0xa2,0x18,0xdf,0xf3,0xc1,0xb2,0xdd,0x8c,0x1c,0x9b, - 0x0a,0xbb,0xfc,0x1a,0x8a,0xeb,0xf0,0xec,0x42,0xa5,0xe8,0x32,0x5e,0x43,0x73,0x7d,0x9a,0x0c,0x42,0xc9, - 0x40,0x8c,0xf6,0xb9,0x5a,0x7f,0x41,0x66,0x24,0x28,0x2c,0x75,0x59,0xde,0x5e,0xaf,0x57,0x65,0xaa,0xa7, - 0x97,0x60,0x78,0xc5,0x3f,0x43,0xd5,0x2a,0x4b,0x69,0x55,0xb7,0x6a,0x77,0x68,0xdc,0x54,0xc0,0x2d,0xce, - 0x48,0xd5,0x5f,0x48,0x02,0x67,0xfd,0xb1,0x1d,0x59,0x15,0x90,0x87,0xcb,0x4b,0x8e,0xab,0x5d,0x65,0x9a, - 0x49,0x7c,0xd0,0x1d,0x5c,0xc8,0x2f,0x28,0x24,0x4f,0xa3,0x24,0xb5,0x3b,0xb7,0xba,0xe3,0x74,0xf9,0xca, - 0xcd,0x43,0x37,0x5f,0xbb,0xf9,0xc6,0xcd,0xb7,0x6e,0x1e,0xb5,0x37,0x2e,0x6f,0x3d,0x79,0x5d,0x38,0xd2, - 0x9e,0x06,0xea,0xf9,0x6a,0xee,0xb4,0x91,0xf9,0xb2,0x79,0xe3,0x1b,0x76,0x79,0xa8,0xe1,0xac,0xad,0x38, - 0xdb,0x2e,0x5f,0x6b,0x48,0xa1,0xba,0xc0,0x34,0x90,0xd6,0x5d,0xbe,0x31,0x70,0x42,0xcb,0x25,0xa7,0x07, - 0xc5,0x81,0x85,0x14,0xf8,0x6f,0x5b,0x3d,0xb1,0xb7,0x5d,0x90,0x02,0xed,0x76,0x4a,0x0b,0xa4,0x51,0x3b, - 0xa9,0x09,0x46,0xa4,0xc1,0x88,0x68,0xd3,0x91,0xd3,0xb1,0x35,0x93,0x32,0x48,0xc3,0x79,0x7f,0x27,0x23, - 0xaf,0xf2,0x9a,0xbf,0x95,0x8d,0x3d,0x50,0x6d,0xbe,0xe7,0x09,0x3a,0x44,0xb5,0xf8,0xc1,0x79,0xb8,0x76, - 0x45,0x84,0x8f,0x76,0x7e,0x56,0x50,0xc4,0x84,0x6b,0xb4,0xe2,0xa7,0x74,0x28,0x05,0x16,0x6e,0xa0,0xe0, - 0xe2,0x77,0xf7,0xfd,0xc5,0x4b,0xe0,0xf1,0xe7,0x50,0x49,0x88,0xe0,0x23,0x5e,0x06,0xb0,0x5c,0x5c,0x81, - 0xe1,0xb5,0x4b,0x4a,0xfd,0xfd,0x80,0x7f,0xe1,0x2a,0x45,0xe5,0xf2,0x5b,0x00,0xc1,0x79,0x28,0x2b,0x95, - 0x8b,0x88,0xb8,0xa1,0x42,0x73,0x9d,0x54,0x18,0x97,0x0e,0x2a,0x53,0x3d,0x4a,0x3f,0x46,0x4f,0xe7,0xd7, - 0xcf,0xad,0x90,0xa8,0x27,0xe6,0xce,0x24,0x28,0x65,0x99,0x34,0x6c,0xff,0x41,0xb8,0xee,0x7e,0xa8,0x62, - 0xa6,0x0b,0x09,0x03,0xfe,0xd1,0x7d,0xd3,0xa8,0x67,0x56,0xa3,0xce,0x88,0x3c,0xf9,0xcf,0xaf,0xce,0x7d, - 0x96,0x64,0x51,0x72,0xbd,0xb5,0x97,0x7b,0x7b,0xc5,0x07,0x40,0x35,0xef,0x5a,0x87,0x26,0x96,0x06,0x37, - 0x0e,0x1b,0x3d,0x5f,0x97,0x1b,0x97,0x43,0xba,0xce,0xcf,0x31,0x82,0x59,0xdb,0x49,0x99,0xd5,0x8f,0x38, - 0xdc,0x8b,0x06,0xab,0x9b,0x3c,0x44,0xf4,0xec,0x11,0xfd,0x0b,0xc9,0x20,0x18,0x23,0x06,0x85,0xfc,0x95, - 0x1d,0x3a,0xc0,0x7a,0x1a,0x86,0xf7,0xfd,0x3b,0x13,0x72,0xcf,0x5a,0x68,0x1c,0x9f,0x94,0x29,0x49,0x10, - 0xa3,0x95,0xbd,0xc8,0x54,0x6e,0xcc,0xd5,0xd8,0x3b,0xb9,0x54,0xa9,0xde,0x80,0xda,0x5e,0x8f,0x13,0x25, - 0xa2,0x2a,0x3f,0x17,0xe7,0xfb,0xce,0x3b,0x0c,0x9e,0x04,0x3f,0x83,0x2e,0x4b,0x08,0xff,0xfc,0xb6,0x7a, - 0x6a,0xe3,0xf5,0x2e,0xfa,0x08,0x2f,0x58,0x87,0xce,0x6e,0x6c,0xe0,0x63,0x85,0xdf,0xfe,0x0b,0xd1,0xc0, - 0x9b,0x6c,0xb2,0x65,0xbb,0xf5,0x47,0x98,0xe1,0xaa,0xa2,0x95,0x8d,0x4f,0x12,0x8c,0x62,0xea,0x2a,0x3a, - 0xf7,0x76,0xe7,0xe1,0x36,0x54,0x3b,0xa2,0x26,0x05,0xe4,0x10,0xe3,0xbd,0x38,0xe0,0xad,0x15,0x1e,0x5f, - 0xe5,0xb4,0xbd,0x78,0x1f,0x3e,0xf1,0x8f,0x4e,0xbe,0x39,0x5f,0x2f,0x10,0xd4,0x4e,0x1e,0xab,0x0a,0xe6, - 0xab,0xc1,0xab,0x74,0xc6,0x5a,0x8f,0x19,0xc8,0xa7,0x2f,0x8e,0x8c,0xb6,0x63,0xe7,0x43,0x4c,0xab,0xf5, - 0xb8,0xa7,0x21,0xac,0xaf,0x08,0x8e,0xca,0x1e,0x2c,0xea,0x51,0x7d,0xcf,0x21,0x2a,0xfc,0x81,0x9c,0xce, - 0xb4,0x62,0x68,0x7c,0xfd,0x21,0x45,0xd6,0xb9,0x7d,0xe4,0x2e,0x5c,0x35,0x6b,0x26,0xaf,0x4e,0x94,0x94, - 0x2f,0xb0,0xa0,0x17,0x9c,0xee,0x97,0xf5,0x1b,0xf1,0xcf,0xa8,0x7b,0x63,0x6c,0x0d,0xa9,0x8f,0x9c,0x94, - 0x6c,0xb6,0xfd,0xc4,0x75,0xaa,0xcd,0x62,0xcd,0x84,0x7c,0x08,0x0e,0xa2,0x79,0x32,0xd2,0xe4,0xd4,0x18, - 0x9d,0x5f,0x37,0x07,0x7a,0xe6,0x81,0xa1,0x36,0x6b,0x63,0xc1,0x47,0x6a,0xa7,0x6e,0x6d,0x74,0xe0,0x07, - 0x10,0xa5,0x20,0x59,0x38,0xfc,0x24,0x30,0x38,0x6a,0x5e,0x6b,0x6d,0x07,0x15,0x1a,0x64,0x0e,0x34,0x6a, - 0x4e,0x87,0x12,0xa8,0xdd,0x26,0x28,0x63,0x6a,0x6f,0xc6,0xc8,0x99,0xe2,0xb8,0x9f,0x4a,0x3e,0x7b,0x2c, - 0x6f,0x4e,0x87,0xd9,0xf9,0xed,0xf2,0x84,0x5a,0xa8,0x0a,0xed,0xa1,0xca,0xb8,0xd9,0x90,0xc7,0x80,0xf9, - 0x16,0x96,0x26,0xd0,0x89,0xfe,0x06,0xa4,0xe5,0x11,0x2b,0x61,0xfe,0x87,0x93,0xfc,0x07,0xdc,0x88,0xab, - 0x59,0xf7,0x27,0x00,0x00}; + 0xda,0x9a,0xb7,0x79,0xc0,0x62,0xb0,0x99,0x31,0xde,0xd9,0x4a,0x72,0xca,0x21,0xc9,0x21,0x87,0x5c,0xb6, + 0xf6,0x20,0x83,0x30,0xaa,0xc5,0x40,0x40,0x8c,0x67,0x1e,0xc5,0x7f,0x4f,0xeb,0x03,0x23,0x81,0xc0,0x33, + 0x79,0xa9,0xca,0xba,0x76,0x6c,0x5a,0xdd,0xad,0x56,0x77,0xab,0xd5,0xdd,0xe2,0x8f,0x76,0x84,0x52,0x8a, + 0x6b,0x3b,0x3a,0xe2,0xb4,0xac,0x71,0x77,0x2c,0x5f,0x9d,0x86,0xfc,0x46,0x8a,0x53,0x44,0x8a,0x0c,0xd7, + 0x84,0xf6,0x19,0x3d,0xe7,0x2a,0xfc,0x58,0xd6,0x09,0xae,0x1d,0x80,0x1c,0xd2,0xb2,0xa0,0x0c,0x8c,0xa3, + 0xd0,0x77,0x77,0x9f,0xfa,0x63,0x99,0xbc,0x75,0x71,0x99,0x97,0x75,0x74,0x1f,0x7a,0x61,0xfc,0x18,0x0a, + 0x94,0x14,0x9d,0x49,0xfe,0x16,0xfd,0xb3,0x3c,0x96,0xb4,0xb4,0x1f,0xfe,0x8a,0xf3,0x17,0x4c,0x49,0x8c, + 0xac,0x7f,0xe0,0x16,0x3f,0xd8,0xd7,0x67,0xfb,0xcf,0x35,0x41,0xb9,0xdd,0xa0,0xa2,0x71,0x1a,0x98,0x3c, + 0x55,0x66,0xd8,0xb8,0x21,0x3e,0x8b,0xe7,0x0b,0x26,0xa7,0x8c,0x46,0x81,0xe7,0x1d,0x72,0x4c,0x41,0x7c, + 0xa7,0xa9,0x50,0xcc,0x64,0x73,0xbd,0x0d,0x20,0xe5,0xa4,0xc0,0x4e,0x26,0x90,0x80,0xac,0x3f,0xe6,0x65, + 0xfc,0xf3,0xdf,0x6d,0x49,0xd9,0xfa,0xb8,0xf0,0x39,0x4e,0x69,0xe4,0x06,0x35,0x3e,0x5b,0x4d,0x99,0x93, + 0xc4,0xba,0xdf,0x7a,0xec,0x73,0x38,0xa3,0xfa,0x44,0x0a,0x31,0x7e,0x7d,0xaa,0x39,0x27,0xef,0x50,0xa1, + 0x24,0x61,0xb3,0x6c,0x18,0xdd,0xc6,0xdd,0xc1,0x97,0xc2,0xdb,0x8a,0x72,0xd4,0x50,0x27,0xce,0x48,0x9e, + 0x74,0x92,0x12,0xd6,0x4b,0xcb,0x73,0xe4,0xf5,0xee,0xb1,0x85,0x5f,0x85,0x2d,0xbf,0x48,0x51,0xb5,0xf4, + 0x3b,0x7d,0xab,0xf0,0xb3,0x80,0xfc,0x50,0x41,0x35,0x6e,0x30,0xd5,0x20,0x4d,0x7b,0x3c,0x13,0xfa,0xa3, + 0x3b,0xa2,0xf8,0xe7,0xa9,0x2e,0xdb,0x22,0x71,0xa4,0x9a,0xbd,0x30,0x3d,0x88,0x45,0x45,0xee,0x46,0x59, + 0xcf,0x08,0x77,0x6a,0x94,0x90,0xb6,0x89,0xdc,0x2d,0x0c,0x1f,0x24,0x59,0x9a,0xa6,0x87,0xb8,0xad,0x1b, + 0xf8,0x5d,0x95,0xa4,0x00,0x1d,0x1e,0x12,0xd2,0x54,0x39,0x7a,0x03,0xbb,0x73,0xfd,0xf1,0x85,0x69,0xfa, + 0x67,0xec,0x35,0x03,0x3c,0x82,0x01,0xa4,0x9a,0x03,0xf7,0x89,0x8d,0x4e,0xcd,0xc1,0x49,0x54,0x73,0x48, + 0xbc,0x41,0x93,0x9e,0xc5,0x6c,0x70,0xa0,0xf8,0x95,0x3a,0x28,0x27,0xa7,0x22,0x8a,0x31,0x17,0x86,0x43, + 0x12,0x1c,0x97,0x35,0xa2,0xa4,0x2c,0xa2,0xa2,0x2c,0xb0,0x00,0xd2,0x1a,0xbc,0x03,0x7c,0xf5,0x1c,0xb5, + 0x55,0x85,0xeb,0x18,0x35,0xf8,0x70,0xc9,0x08,0xc5,0x7c,0x56,0x0c,0x98,0x97,0x1a,0x55,0x83,0xc2,0xa3, + 0xb4,0x8c,0xdb,0xc6,0x1e,0x9e,0xb2,0xf2,0x05,0x9c,0x5d,0x1b,0xd2,0x46,0xe6,0x76,0x91,0x58,0x86,0x81, + 0x19,0x85,0x30,0xdb,0x9c,0x40,0xc2,0x67,0xf8,0xd2,0xa8,0x73,0x82,0x61,0x80,0x53,0x18,0x6c,0x2e,0xb7, + 0x96,0x34,0xaf,0x0e,0x54,0xec,0x5b,0xb6,0x94,0xa9,0x7e,0xf4,0xbe,0xef,0x60,0x62,0x74,0xcc,0x71,0xf2, + 0xc3,0x9e,0x01,0xe6,0x0b,0x34,0x0f,0x8a,0xc5,0x98,0xc7,0xa4,0xdc,0xe3,0x60,0x27,0x5d,0x2c,0xc1,0x29, + 0x6a,0x73,0x7a,0x28,0x99,0x5f,0xd0,0xb7,0xc8,0xdd,0xcd,0x45,0xd2,0x2d,0xa5,0xc0,0x55,0x9b,0xcd,0xd0, + 0x17,0xb0,0xd7,0x56,0xb3,0x68,0xd1,0x35,0x2e,0xd3,0x65,0x2f,0x59,0x79,0x8d,0xc7,0x4c,0x3d,0x8b,0x96, + 0x9f,0x72,0x59,0xdd,0xf7,0x0a,0x64,0xd0,0xaa,0xfc,0x72,0xa4,0x07,0xd8,0x66,0xe8,0x5c,0x03,0x2b,0x18, + 0x62,0x79,0x2b,0x08,0x52,0xf4,0x09,0xc6,0x5c,0x72,0xbe,0x7f,0x2b,0x54,0xc3,0x3e,0x3f,0xdc,0x94,0x5c, + 0x77,0x8a,0xe9,0xa0,0xea,0x19,0x66,0xc2,0x35,0xba,0x9b,0xcb,0x5f,0x74,0x94,0x9b,0xfc,0x8c,0xca,0x5a, + 0x72,0x99,0x9b,0xdc,0xcc,0x9a,0x5d,0x74,0x1e,0x23,0xbf,0x75,0x3b,0xac,0x45,0x12,0xf1,0xb4,0x60,0x9f, + 0xa5,0xed,0xbb,0x8c,0xb6,0x62,0xb3,0x85,0xcd,0x7d,0x8b,0xd7,0x4d,0xfb,0xbc,0x63,0xeb,0x7f,0x60,0x0e, + 0xa3,0xd1,0x6e,0x07,0x86,0x0f,0xcc,0x60,0xb6,0xe3,0x3b,0xc2,0xc6,0x8d,0x39,0x3a,0xcd,0xcc,0x32,0xbd, + 0x5b,0xd9,0x83,0x71,0x8e,0xd1,0xd4,0x54,0x02,0xb6,0xac,0xc0,0xd9,0xb8,0xbe,0xfa,0xd9,0xf0,0x44,0x72, + 0x3e,0xfe,0x01,0x5f,0x7d,0x5f,0x30,0xe1,0x5c,0xcd,0x0e,0x2a,0x86,0x4c,0x4e,0xa9,0x12,0x2d,0xd3,0xdc, + 0xd0,0xc4,0x4d,0x87,0x5b,0xe0,0x65,0xd0,0xda,0x2d,0xc7,0x5a,0xe0,0x64,0x52,0xf0,0x4d,0x07,0x52,0x78, + 0xfd,0x3e,0x63,0x98,0x83,0x07,0x67,0x7f,0x2b,0x74,0x4c,0x91,0x16,0x6d,0x74,0x23,0x6c,0x98,0xf9,0xdc, + 0xb0,0xc8,0x07,0x42,0xc6,0x4d,0xfe,0x06,0x33,0xbd,0x3f,0x5c,0xdc,0xe4,0x6e,0xb2,0xdc,0x07,0x42,0x85, + 0x91,0x7f,0xa7,0x6c,0xa5,0xb8,0x4c,0xd4,0x43,0x1c,0x32,0xcb,0x6d,0xba,0x4b,0x43,0x63,0x6d,0x31,0x16, + 0x0b,0x4f,0xe1,0x27,0x59,0x3c,0x41,0x8a,0xef,0xfa,0x6a,0xca,0xcf,0x9f,0x2c,0x5e,0x3c,0x99,0xf2,0xf6, + 0xaa,0x5e,0x9b,0x6e,0x5e,0xb7,0xb1,0x3c,0x88,0xc9,0x9c,0xe6,0xe5,0xc5,0x79,0x8b,0x32,0x92,0x24,0xb8, + 0x60,0x5c,0xbe,0x09,0xc9,0x35,0x31,0xbd,0x6b,0x91,0x23,0xaa,0x1b,0x43,0x41,0xa7,0xc9,0x04,0x6c,0xfa, + 0x6c,0x88,0x9b,0x40,0x2d,0xb9,0xd1,0xb2,0xd2,0x8b,0x2d,0x29,0xa4,0x5c,0x31,0x17,0xcf,0xeb,0x15,0xa5, + 0xe3,0x33,0x22,0xb9,0x96,0x2a,0x17,0xed,0xf9,0x88,0x6b,0x0d,0x54,0xa1,0xa6,0xb9,0xc0,0x04,0x7a,0x4a, + 0x0d,0xe6,0x89,0x33,0x0d,0x44,0x71,0x3e,0x79,0x7e,0xd5,0x8b,0xc5,0xb6,0x06,0x84,0x06,0xe7,0x38,0xa6, + 0x36,0x1b,0x84,0x1d,0x89,0x3a,0x04,0xc5,0x12,0x82,0x0d,0xca,0x35,0x0d,0xb5,0xd4,0x3b,0xb6,0xb5,0xbe, + 0x46,0x59,0x20,0x9b,0xec,0xce,0x9b,0x03,0x19,0x4a,0xca,0x8b,0xe4,0x3d,0x6b,0x22,0x1c,0xcc,0xe5,0x9f, + 0x1b,0x72,0xc5,0x73,0xb5,0x93,0x84,0x66,0xd1,0xc6,0xf3,0x3e,0xcd,0x15,0x37,0xf7,0x62,0xa9,0xbe,0xf9, + 0xc0,0x55,0x89,0x06,0xcf,0x17,0xaa,0x9c,0x0f,0x30,0x85,0x9a,0xa0,0xaf,0xa6,0xda,0x8c,0x29,0x57,0x42, + 0x85,0x8a,0xe5,0xc3,0xa0,0x68,0xf1,0xd8,0xcd,0x52,0x73,0xa5,0x1a,0x13,0x74,0xaa,0x97,0x03,0xd3,0x5f, + 0x1e,0x12,0x44,0x51,0x44,0xce,0xe8,0x84,0xbf,0x34,0x2f,0xa7,0x5f,0x5f,0xcf,0xf9,0xa1,0xa5,0xe9,0x93, + 0xfd,0x15,0x9e,0x2c,0x78,0x2a,0x9a,0xe7,0xbb,0x8c,0xd2,0x2a,0xfa,0xf2,0xe5,0x72,0xb9,0xb8,0x97,0xc0, + 0x2d,0xeb,0xd3,0x17,0xdf,0xf3,0x3c,0x86,0x7f,0x67,0x09,0x15,0x3f,0xdf,0x6d,0xb6,0x77,0xd6,0x0b,0xc1, + 0x97,0xbf,0x94,0xaf,0xcf,0x77,0x9e,0xe5,0x59,0xfe,0xde,0x62,0x30,0xae,0xe1,0xe7,0x3b,0x7f,0x7f,0xf7, + 0xed,0x6b,0x85,0x68,0x66,0xa5,0x24,0xcf,0x9f,0xef,0xee,0x93,0x0d,0xfb,0xdc,0x59,0xc9,0xf3,0xdd,0xdf, + 0xf7,0x6e,0xf0,0xf8,0xe8,0x3f,0x5a,0x81,0x1b,0xfa,0xbb,0x7c,0xe7,0x7a,0x4f,0x9b,0xdd,0xd6,0x0a,0xdd, + 0x7d,0xb0,0xf3,0x83,0xbf,0x6d,0xf6,0xee,0x6e,0xeb,0x05,0xa1,0x18,0xbe,0xfb,0xf2,0xed,0x2b,0x9b,0xf9, + 0xdb,0xc3,0x67,0x4b,0x54,0xed,0x16,0x6f,0x94,0x58,0x45,0xe9,0xd4,0x18,0xbc,0x8d,0x0e,0x76,0x96,0x0d, + 0x14,0xb6,0x2f,0x7a,0x55,0x69,0xea,0xd9,0xc2,0x17,0xfe,0xff,0x55,0xc4,0xfe,0xb8,0x4d,0x62,0xf4,0xbb, + 0x14,0xd1,0x5f,0xf7,0xdb,0x99,0x14,0x43,0xcf,0x23,0x14,0x9d,0xa2,0x1c,0x1d,0x71,0x6e,0xe7,0xf8,0x84, + 0x8b,0xa4,0xd3,0xe3,0x90,0xd6,0xe5,0x32,0x75,0x59,0xf4,0x76,0x92,0xe0,0x97,0x12,0x9c,0x27,0x70,0x56, + 0x0c,0xbe,0x26,0x76,0xd0,0xd8,0xa5,0xd2,0x22,0x50,0x9c,0xe1,0xf8,0x27,0xec,0x4b,0xbd,0x96,0x87,0x4d, + 0x5c,0xfe,0xb8,0xca,0x22,0x1a,0x3f,0xbd,0xcb,0x05,0x75,0xc4,0xd3,0x64,0x50,0xed,0x0a,0x49,0xf1,0xb6, + 0x9e,0xde,0x35,0x13,0xc2,0xb9,0x31,0xa0,0x20,0xa0,0xa8,0xbb,0xeb,0x39,0x80,0x5a,0x5a,0x02,0xea,0xab, + 0x94,0x74,0xb3,0xf1,0xf5,0x56,0x90,0x78,0x2c,0x1b,0xc2,0x3b,0x3e,0x35,0xce,0x11,0x25,0x2f,0x58,0x8d, + 0x0c,0x6e,0x5d,0x5e,0xae,0x12,0xa5,0x39,0x7e,0x3d,0xb0,0x3f,0x4e,0x42,0x6a,0xf0,0x29,0x46,0x04,0xfb, + 0xad,0x3d,0x17,0x23,0xcf,0x29,0x31,0xfb,0xef,0x80,0x7f,0x4a,0x84,0x6e,0xd4,0x95,0x61,0xf4,0x9b,0x2b, + 0xd8,0x99,0xb0,0xd8,0x59,0xd5,0xf1,0xc9,0xd9,0xaf,0x48,0xb4,0x9c,0x86,0x41,0x38,0x1f,0x3a,0xde,0xcd, + 0x72,0xe0,0x28,0x39,0x37,0x5c,0x52,0xa7,0x01,0xbf,0xa0,0x23,0x8e,0x30,0xe5,0x1c,0x0d,0x9c,0x63,0x44, + 0x12,0xdb,0x4a,0x43,0x12,0xa0,0x11,0xa5,0xa1,0x35,0xa6,0x71,0xa6,0xe1,0x48,0x98,0x32,0x19,0x82,0x6d, + 0xc7,0xac,0xa9,0x62,0x0d,0x40,0x8e,0x66,0x0d,0x6b,0x9d,0x38,0x26,0x88,0x14,0x6d,0xac,0xcd,0x60,0x3b, + 0xbd,0x39,0x7a,0xb5,0x24,0xa8,0x77,0xaa,0xe9,0x81,0xa1,0xfc,0x72,0xca,0x34,0x05,0x5f,0x75,0x36,0x5e, + 0xa7,0x72,0xd9,0xac,0x63,0xfb,0x3a,0xb6,0x7f,0x03,0x7b,0xa7,0x63,0xef,0x56,0xb1,0x83,0xc0,0x5e,0x1b, + 0xdd,0x6a,0xbc,0x82,0xc0,0x0d,0xe0,0xdf,0x2a,0xc3,0x9d,0x2e,0xec,0x6e,0x5d,0xd8,0x30,0x5c,0x9b,0x3e, + 0x7c,0xd4,0x78,0x85,0xa1,0x1b,0xc2,0xbf,0x55,0x86,0x8f,0xfa,0xea,0x1f,0xd7,0x57,0xff,0xa4,0x0b,0xfb, + 0xb4,0x2e,0xec,0x5e,0xc7,0xde,0x2f,0x60,0x83,0x71,0xb9,0xc3,0xb0,0x58,0x0b,0x96,0xd5,0x3c,0xc4,0x4c, + 0xe1,0x2b,0x14,0xbe,0x46,0xb1,0x64,0x6b,0x30,0xf2,0x48,0xb1,0xd3,0x28,0x16,0x56,0xbc,0x60,0x68,0xb0, + 0xf0,0x95,0xd1,0x60,0x5e,0x85,0xdb,0xaa,0xc5,0xb7,0x8a,0xd8,0x5b,0x4d,0xec,0xed,0x82,0xd8,0x3b,0x85, + 0x62,0xa7,0x51,0x2c,0xf9,0x49,0xa8,0x50,0x84,0x1a,0x45,0xb8,0x44,0x61,0x76,0x29,0xf0,0xa5,0x91,0x91, + 0x74,0x24,0x95,0xdb,0x9a,0x6f,0x3d,0x2a,0xda,0x7e,0xd4,0xb4,0xbd,0xe4,0x5f,0x4f,0x8a,0xd8,0x4f,0x9a, + 0xd8,0x4b,0x3e,0xb6,0x57,0x28,0xf6,0x1a,0xc5,0xd4,0xcf,0x86,0x6f,0x25,0xc0,0x42,0x08,0x4b,0xa7,0xf1, + 0x75,0x86,0xae,0xc5,0xda,0x91,0x62,0x08,0xb5,0x33,0x7c,0x2d,0xec,0x72,0x7c,0x19,0x75,0xff,0x74,0xc6, + 0x09,0x41,0xd6,0x2f,0xec,0x70,0x1f,0xec,0x0d,0x87,0xd6,0xe7,0x8e,0x1f,0x4c,0x93,0xb3,0x08,0x40,0x5a, + 0xc4,0x74,0x94,0x3c,0x37,0x46,0x79,0xfc,0x0b,0x8b,0x95,0xd6,0xaf,0xfc,0xd8,0xfb,0xac,0x07,0x61,0xfd, + 0xb8,0x1f,0x72,0xe8,0xf1,0xa4,0x64,0x9c,0xfa,0x1e,0x29,0x75,0x9a,0xf1,0xc2,0xa4,0x97,0xd9,0xa8,0x8d, + 0xf4,0xba,0x4e,0x56,0xe5,0x49,0x6e,0x97,0xb9,0xdd,0xe6,0x5d,0x4e,0x1a,0x48,0x3f,0xe8,0x5b,0x2e,0x6b, + 0x03,0x39,0x3d,0x2b,0x73,0xae,0xe9,0x84,0x8c,0xfa,0x40,0x64,0x01,0x1d,0xfc,0x2d,0xf9,0xdf,0x96,0xf1, + 0xb0,0x38,0x27,0x06,0x29,0x39,0xa4,0xe5,0x90,0x96,0x43,0x5a,0x06,0xe9,0xc6,0x04,0x47,0x58,0x98,0x67, + 0x04,0xa2,0xe0,0x62,0xb1,0x42,0xfc,0xe0,0xf9,0x61,0xa9,0x89,0x03,0x0b,0x82,0x44,0x30,0xb7,0x48,0xd1, + 0x90,0x04,0xf7,0xba,0xac,0x31,0xa9,0xa1,0x7c,0x1d,0xc6,0x26,0x37,0x6c,0x49,0x62,0x27,0xd4,0xce,0xc9, + 0x44,0x97,0x1b,0x35,0x73,0x12,0xb9,0xd0,0xac,0x54,0x9a,0x50,0x4c,0xef,0xf9,0x60,0xd9,0x76,0x4a,0x4e, + 0x6d,0x8d,0x6d,0x76,0x0d,0xc5,0x74,0x58,0xd9,0x50,0x29,0xda,0x94,0xd5,0xd0,0x4c,0x9f,0x3a,0x03,0x5f, + 0x30,0xe0,0xa3,0x43,0xae,0x36,0x5c,0x90,0x69,0x09,0x0a,0x4d,0x6c,0x9a,0x75,0xd7,0xeb,0x55,0x91,0xea, + 0xa9,0x25,0x18,0xde,0xb0,0xcf,0x58,0xb5,0x8a,0x52,0x5a,0xd6,0xad,0xca,0x1d,0x1a,0x33,0x15,0x70,0x8b, + 0x52,0x52,0x0f,0x17,0x92,0xc0,0x59,0x7d,0xec,0x26,0x56,0x05,0xe4,0xf1,0xf2,0x92,0xe1,0x2a,0x57,0x99, + 0x7a,0x12,0xef,0xf5,0x47,0x1b,0xf2,0x8b,0x12,0x92,0xa7,0x49,0x92,0xda,0x57,0x9d,0xea,0x38,0x7d,0xb6, + 0xb1,0x33,0xdf,0xce,0x02,0x3b,0xdb,0xda,0xd9,0xce,0xce,0xc2,0xee,0xc6,0xe5,0xad,0x23,0xae,0x0b,0x27, + 0xda,0x53,0x40,0x03,0x5f,0xc5,0x9d,0xb6,0x22,0x5f,0xd6,0x6f,0x7c,0xfd,0x3e,0xf3,0x15,0x9c,0xc0,0x88, + 0xb3,0xeb,0xb3,0x40,0x41,0xf2,0xe5,0x05,0xa6,0x86,0x14,0xf4,0xd9,0x56,0xc3,0xf1,0x0d,0x97,0x9c,0x0e, + 0x14,0x07,0x06,0x52,0xe0,0xbf,0xeb,0xd4,0xc4,0xde,0x74,0x41,0x0a,0xb4,0xbb,0x39,0x2d,0x90,0x86,0xdd, + 0xac,0x26,0x98,0x90,0x7a,0x13,0xa2,0x6d,0x4f,0xce,0xa7,0x4e,0x4f,0xca,0x20,0x0d,0x67,0xfd,0x9d,0x94, + 0xbc,0x8a,0x6b,0xfe,0x4e,0x34,0xf6,0x40,0xb5,0xd9,0x81,0x25,0xe8,0x10,0xd5,0xa2,0x07,0xeb,0xe1,0xda, + 0x15,0xe1,0x3e,0xda,0xbb,0x69,0x5e,0x22,0xca,0x5d,0xa3,0xe3,0x3f,0x85,0x43,0x49,0x30,0x77,0x03,0x09, + 0xe7,0xbf,0xfb,0xef,0x2f,0x4e,0x0c,0x8f,0x3f,0xc7,0x4a,0x82,0x07,0x1f,0xfe,0x32,0x80,0xe1,0xe2,0x0a, + 0x0c,0xaf,0x5c,0x52,0xaa,0xef,0x07,0xfc,0x0b,0xd7,0x09,0x2a,0xd6,0xdf,0x02,0xf0,0xaa,0xb1,0xac,0x94, + 0x2e,0xc2,0xe3,0x86,0x0c,0xcd,0x4d,0x5c,0x63,0x5c,0x58,0xa8,0x48,0xd4,0x28,0xfd,0x18,0x3e,0x55,0xaf, + 0x9f,0x3b,0x2e,0xd1,0x40,0xcc,0x9c,0x89,0x53,0x8a,0x32,0x69,0xdc,0xfe,0xa3,0x70,0xfd,0xfd,0x58,0xc5, + 0xcc,0x17,0xe2,0x7b,0xec,0xa3,0xfa,0xa6,0x56,0xcf,0x6c,0x26,0x9d,0x11,0x71,0xf2,0x57,0xaf,0xd6,0x7d, + 0x1a,0xa7,0x61,0x7c,0xbd,0xb5,0x17,0x7b,0x7b,0xc3,0x06,0x40,0x35,0xef,0x5a,0x87,0x22,0x96,0x02,0xd7, + 0x0e,0x1b,0x35,0x5f,0x17,0x1b,0x97,0x41,0xfa,0xde,0xcd,0x30,0x82,0x59,0xbb,0x59,0x99,0x35,0x8c,0x58, + 0xcc,0x8b,0x46,0xab,0xeb,0x3c,0x78,0xf4,0x1c,0x10,0xdd,0x0b,0x49,0x21,0x18,0x23,0x0a,0x85,0xfc,0x95, + 0x1d,0x3a,0xc2,0x7a,0x5a,0x8a,0x0f,0xc3,0x3b,0x13,0x62,0xcf,0x1a,0x68,0x2c,0x97,0x14,0x09,0x89,0x11, + 0x2d,0x6b,0x73,0x91,0x29,0xdd,0x98,0xa9,0x71,0x70,0x72,0xa1,0x52,0xb5,0x01,0xb5,0xbb,0x1e,0x27,0x52, + 0x44,0x59,0x7e,0xae,0xce,0xf7,0x9d,0x75,0x18,0x1c,0x01,0x7e,0x06,0x5d,0x16,0x10,0xfe,0xd9,0x6d,0xf5, + 0xdc,0xc6,0xc1,0x3e,0xfc,0x08,0x2f,0x58,0x87,0xca,0x6e,0x6a,0xe0,0x53,0x8d,0xdf,0xfe,0x0b,0xd1,0xc0, + 0x9b,0x4c,0xb2,0xa5,0xfb,0xe0,0x23,0xcc,0x70,0x5d,0x97,0xb5,0x89,0x4f,0xec,0x4d,0x62,0xea,0x26,0xac, + 0x06,0xbb,0xb3,0x70,0xeb,0xcb,0x1d,0xd1,0x90,0x1c,0x72,0x88,0xe9,0x5e,0x1c,0xf1,0x02,0x89,0xc7,0x56, + 0x39,0x6f,0x2f,0xde,0xfb,0x4f,0xec,0xa3,0x92,0x6f,0xab,0xeb,0x05,0x82,0xdc,0xc9,0x53,0x55,0xc1,0x7c, + 0x0d,0x78,0x95,0xca,0x58,0xe9,0x31,0x03,0xf9,0xfc,0xc5,0x91,0xc9,0x76,0xec,0x5d,0x88,0x69,0x8d,0x1a, + 0xf7,0x14,0x84,0xe0,0x8a,0x60,0xc9,0xec,0xc1,0xa0,0x1e,0xd9,0xf7,0x1c,0xa3,0xc2,0x1f,0xc8,0xb9,0x2a, + 0x6b,0x8a,0xa6,0xd7,0x1f,0x42,0x64,0x95,0xdb,0x47,0xee,0xc2,0x65,0xb3,0x66,0xf6,0xea,0x44,0x51,0xb2, + 0x05,0xe6,0xe5,0x05,0x27,0x87,0x75,0xfd,0x86,0xec,0x33,0xe9,0xde,0x68,0x5b,0x43,0xe8,0x23,0x23,0x05, + 0x5d,0x6c,0x3f,0x31,0x9d,0x2a,0xb3,0x18,0x33,0x21,0x17,0x82,0x03,0x6f,0x9e,0x4c,0x34,0x39,0x37,0x46, + 0xef,0x36,0xed,0xb1,0xac,0x58,0x60,0x68,0xf4,0xda,0x98,0xf3,0x11,0xda,0x69,0x3a,0x13,0x1d,0xf8,0x01, + 0xd8,0xbe,0x9b,0x59,0xb3,0xa1,0xb8,0xd2,0x58,0x05,0x4a,0x7e,0x30,0xb6,0x19,0xe7,0x6d,0x24,0x41,0x6a, + 0x49,0xce,0xd3,0xee,0x94,0x24,0xdd,0x0e,0x53,0x58,0xee,0x0b,0xca,0x5b,0x7c,0x23,0xae,0x89,0x7c,0x45, + 0xb5,0xbe,0xe0,0xde,0x41,0x92,0x73,0xfc,0x49,0x60,0x51,0x93,0xa6,0xbb,0xd2,0x2e,0x91,0x21,0x4d,0xe4, + 0x6e,0x93,0xa6,0xba,0x2f,0x80,0xca,0x2d,0x88,0x74,0x42,0xe5,0x8d,0x1e,0x31,0x53,0x14,0x0d,0x53,0x89, + 0x67,0x87,0x66,0xed,0xf9,0xb8,0x38,0xbf,0x59,0x1e,0x5f,0x09,0xb1,0xbe,0x39,0xc4,0x6a,0x37,0x32,0xe2, + 0xf8,0xd2,0xdf,0x1e,0x53,0x04,0x3a,0x97,0xbf,0x01,0x69,0x71,0xc2,0x52,0x98,0xff,0xe5,0x24,0x17,0x54, + 0x17,0xcc,0xf5,0x54,0xd4,0xc0,0xf3,0x53,0x08,0x2c,0xc6,0xe3,0x74,0xbc,0x69,0xd8,0x19,0x33,0xcb,0xfe, + 0x3f,0xde,0x3d,0x2e,0x64,0x01,0x29,0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index a4a9566..092dd56 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,97 +4,109 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x58,0xe9,0x77,0xda,0x38,0x10,0xff,0x57,0x5c, - 0xef,0xee,0x23,0x79,0x29,0x67,0x68,0x5a,0xb2,0xc0,0xd6,0xdc,0xf7,0x0d,0x01,0xbe,0xc9,0xb6,0xb0,0x05, - 0xf2,0x11,0x4b,0xe6,0xe8,0xf1,0xbf,0xaf,0x7c,0x60,0x1b,0x02,0x49,0xbb,0x7d,0x7d,0x6f,0xf9,0x80,0xd1, - 0x9c,0xbf,0x19,0x66,0xa4,0xb1,0xf2,0xef,0x2a,0xfd,0xf2,0x64,0x31,0xa8,0x72,0x2a,0xd5,0x70,0x31,0xef, - 0x7f,0x43,0x20,0x17,0xf3,0x1a,0xa4,0x80,0x93,0x54,0x60,0x11,0x48,0x0b,0xfc,0x74,0x52,0x8b,0x7f,0xe2, - 0x8b,0x79,0x8a,0x28,0x86,0xc5,0x7c,0xd2,0x7f,0xba,0x42,0x3a,0xd0,0x60,0x81,0xa7,0x2a,0xd4,0x60,0x5c, - 0x32,0xb0,0x61,0xf1,0x9c,0x64,0xe8,0x14,0xea,0x4c,0xef,0x8f,0x94,0xfb,0xe1,0x4f,0x44,0xb7,0x08,0xee, - 0x4c,0xc3,0xa2,0x11,0xb9,0x1d,0x92,0xa9,0x5a,0x90,0xe1,0x16,0x49,0x30,0xee,0x2e,0xde,0x23,0x1d,0x51, - 0x04,0x70,0x9c,0x48,0x00,0xc3,0x42,0x9a,0x99,0xc0,0x48,0xdf,0x70,0x16,0xc4,0x05,0x9e,0xd0,0x03,0x86, - 0x44,0x85,0x90,0xd9,0x50,0x2d,0xb8,0x2a,0xf0,0xa2,0xad,0xcb,0x18,0x26,0x24,0x42,0x98,0x20,0x91,0x2c, - 0x64,0x52,0x8e,0x58,0x52,0xc0,0x58,0x3b,0xf4,0xa4,0xc7,0x60,0x3f,0xbc,0x18,0x45,0x43,0x3e,0x14,0xf3, - 0x32,0xda,0x72,0x48,0x2e,0xf0,0xc0,0x34,0x79,0x6f,0xb5,0x8d,0x4b,0xd8,0x00,0x9b,0x90,0xe5,0xe0,0x04, - 0x48,0x87,0x96,0x2f,0x20,0x61,0x40,0x48,0x81,0x77,0xac,0xb8,0x34,0xa4,0x29,0x9e,0x37,0x19,0x50,0xf0, - 0x88,0x34,0xa0,0xc0,0xa4,0xa9,0x2b,0x7f,0x8b,0x80,0xc0,0x87,0xec,0x7b,0x34,0x2b,0xf5,0x47,0xbb,0x54, - 0xbb,0xae,0x18,0x02,0xfb,0xf4,0xc6,0x53,0xb5,0x3a,0x55,0xd8,0xaf,0x8a,0xb3,0x14,0x76,0x65,0x61,0xc1, - 0x1e,0xa5,0xb9,0xb0,0xd5,0x1a,0x0e,0xa1,0x3e,0x1f,0xd5,0x9e,0x1a,0xa3,0x89,0x98,0x59,0xa6,0xe4,0x4c, - 0xed,0xb0,0x1c,0x96,0x4a,0xcb,0x7a,0x0e,0x2d,0xc7,0xa5,0x96,0xf8,0x54,0xd3,0x97,0xb3,0x16,0x5e,0x3c, - 0x8d,0x3e,0x48,0x12,0xc6,0x03,0x47,0x61,0x5e,0x6a,0x8d,0xaa,0xb5,0x29,0xec,0x59,0xe4,0x49,0xae,0xf6, - 0x94,0xb5,0x30,0xec,0x48,0x8b,0x92,0x24,0x0c,0x24,0xa1,0x2c,0x0f,0x7b,0x59,0xa1,0x97,0xe9,0x96,0xb3, - 0xca,0x88,0x2c,0x5a,0xb9,0x6a,0x4f,0x16,0x06,0x0b,0xa1,0x02,0x84,0x0a,0x34,0xe5,0xa9,0xda,0x4d,0x3f, - 0xd7,0xd6,0xb6,0xa5,0x98,0xb9,0xb1,0xd4,0x6d,0x28,0xf2,0xc7,0xf4,0xfd,0xec,0x7e,0x45,0xa7,0xe6,0x07, - 0xd8,0x50,0xba,0xb5,0xb4,0x65,0xd5,0xab,0xc0,0x7e,0x98,0x35,0x2a,0x99,0x46,0x57,0x6c,0x7c,0x78,0x6e, - 0xf5,0x3b,0x0d,0x0b,0xdc,0xad,0x36,0x5f,0x44,0xb2,0x18,0x11,0xb5,0xfb,0xc9,0xec,0x4c,0x94,0x69,0x53, - 0x19,0x2b,0x5b,0xbb,0xdb,0x35,0x16,0xbb,0x3b,0xd4,0x5d,0x4c,0xac,0x87,0xa1,0xda,0x5b,0x74,0xad,0x1e, - 0xea,0x1d,0x76,0xcd,0x0e,0x3e,0xcc,0xda,0xb2,0x74,0x38,0x0c,0x88,0x26,0x8d,0xc8,0x61,0xfa,0x21,0xb5, - 0x51,0x1a,0x74,0x38,0xb4,0x33,0x82,0xdc,0x6b,0xd5,0xcc,0xca,0x46,0x68,0x67,0x9b,0xc9,0x4e,0xf3,0xa9, - 0x2b,0x66,0x04,0xd2,0x2c,0x49,0xcf,0x29,0x34,0xaa,0xc3,0x61,0x7d,0x30,0x59,0xae,0x66,0x0f,0xc3,0x6a, - 0xea,0x4e,0xa9,0xd4,0x6b,0x19,0xcb,0x20,0xf5,0xaa,0xd2,0x1d,0xee,0x9b,0x82,0xaa,0x2f,0x05,0x34,0xe8, - 0x7d,0xca,0xda,0xe6,0x68,0x95,0x4a,0xf6,0xb1,0x49,0x3a,0xe5,0x92,0x79,0x7f,0x78,0x4e,0x49,0xaa,0x42, - 0xcb,0xd3,0xe9,0xd2,0x1a,0xed,0x1e,0x86,0x95,0xfe,0x7d,0xf5,0xa9,0x31,0x7e,0xae,0xe5,0x28,0xb0,0x96, - 0x60,0xdc,0x6e,0xcd,0x61,0xab,0x22,0x8b,0x43,0x4c,0xaa,0xa9,0x76,0xe5,0xa1,0xd5,0x4b,0xb6,0x8d,0x11, - 0xa9,0xab,0xfb,0x79,0xbb,0x8c,0xcb,0xed,0x46,0xab,0xb9,0xda,0x4c,0xd4,0x5d,0xf7,0x49,0x15,0x1e,0xe4, - 0xd2,0xd8,0xc0,0x23,0xb4,0xde,0xb4,0xfa,0x72,0x7a,0x39,0xdd,0xe6,0x0e,0xc3,0x5c,0xdf,0x7c,0x16,0x1b, - 0x26,0x02,0xd3,0x19,0xa8,0x8a,0xcb,0xea,0x47,0xda,0x6c,0xae,0x8d,0x52,0x7b,0x7e,0x20,0x06,0x49,0x4b, - 0xd9,0xd9,0x27,0x28,0x76,0xaa,0xb2,0xb8,0xcd,0x88,0x52,0x97,0x54,0x3f,0x2a,0x6b,0xbb,0x24,0x6f,0xe7, - 0xa3,0x71,0x2b,0x5b,0xbb,0x4b,0xee,0x9e,0x9b,0xf3,0xb9,0xd5,0xac,0xef,0xb4,0xf9,0xfd,0x97,0x1d,0x90, - 0x3a,0x15,0x15,0xf6,0xfa,0xb9,0x74,0x7f,0xdd,0x19,0xb6,0xe5,0x74,0x76,0xd6,0xad,0x94,0xf5,0x85,0x52, - 0xde,0xcf,0xd6,0xcd,0xfb,0xde,0x04,0xa6,0xb5,0xb1,0x31,0xa8,0x64,0x73,0xfb,0xec,0xd8,0x62,0xc5,0x91, - 0x7b,0x1e,0xe8,0x59,0x68,0x6c,0xcb,0x5d,0xb7,0x7a,0xaa,0xb8,0x36,0xd9,0x8c,0xed,0xa1,0x56,0x2e,0xb3, - 0x4a,0x54,0xd3,0xc5,0xaf,0x5f,0xb9,0x3f,0xe9,0x4d,0xcc,0x6d,0xd1,0xd8,0x2d,0xf7,0xfd,0x3b,0x2b,0xf7, - 0x34,0xe3,0x64,0x1c,0xce,0x16,0x5a,0x04,0x19,0x7a,0x82,0x1c,0x08,0x85,0x5a,0xb3,0xc2,0xbd,0x2b,0x14, - 0x38,0xdd,0xc6,0x98,0xfb,0xc7,0xd5,0x3a,0xd2,0x99,0xe2,0x1d,0x17,0x7b,0xe4,0x62,0xec,0xf1,0x42,0x87, - 0x91,0x63,0x9e,0xdd,0xcc,0x49,0x3f,0xec,0xd0,0x0a,0x11,0x0a,0xa8,0x4d,0x4e,0xfb,0x84,0xb5,0x8f,0x0e, - 0x25,0xca,0x6c,0x9c,0xd2,0x91,0x2e,0x23,0x09,0x50,0x67,0xc7,0x78,0x74,0x3a,0x27,0xee,0x29,0x7b,0x86, - 0xc6,0xee,0xef,0x04,0x30,0x13,0x50,0x07,0x22,0x86,0x32,0x43,0x18,0xf3,0x2d,0x41,0x39,0xe6,0x80,0x90, - 0x11,0x09,0x09,0x4e,0x7f,0x33,0xdb,0xc7,0xf0,0xa3,0x26,0x24,0x09,0x12,0x62,0x1a,0x48,0xa7,0x89,0x30, - 0x2b,0x1c,0x13,0xbc,0xe6,0xe7,0x94,0x8e,0x4c,0xe6,0xec,0x15,0x9b,0x0c,0x86,0xab,0xe8,0x27,0xdb,0x01, - 0xf1,0x4b,0xd1,0x2b,0x90,0x3e,0xa1,0x9a,0xeb,0x89,0x29,0x79,0x0e,0x6f,0x6e,0xaf,0xc7,0x47,0x3c,0x41, - 0xcd,0x90,0xe1,0x59,0x7c,0x97,0x2c,0x4d,0xe0,0x9e,0xde,0x44,0x90,0x46,0xbf,0xbd,0xcd,0x0f,0xb1,0xfd, - 0x94,0xed,0x7f,0x32,0xd2,0x15,0xfe,0x08,0xf6,0xb8,0x3e,0xba,0xf7,0xd7,0x81,0x27,0x7f,0xdd,0x3c,0xc6, - 0x74,0x9a,0x09,0xcf,0xe6,0xbb,0xc0,0x48,0x34,0x0d,0x14,0x88,0x4e,0xb9,0x88,0x36,0xa5,0x86,0x7e,0x24, - 0x7a,0x2b,0x96,0x18,0x7f,0xfd,0x95,0x8b,0x79,0xa4,0xb8,0x61,0x53,0x76,0x0e,0x40,0x56,0x9a,0x80,0xe5, - 0x74,0x0b,0x27,0x40,0x64,0x35,0xcc,0xc5,0xbc,0xe4,0xb1,0xb2,0xe4,0xb9,0xcf,0x12,0x46,0xd2,0x86,0x6d, - 0xe8,0x81,0x40,0xc8,0x0f,0x02,0xf0,0xd6,0x09,0xe6,0x7d,0x12,0x69,0x14,0xcf,0x49,0x91,0xfb,0x65,0x38, - 0xd4,0x42,0x8a,0xc2,0xfa,0xe6,0x3a,0xa0,0x40,0x22,0x80,0x74,0xa4,0xfc,0x36,0x50,0x61,0x25,0x5e,0x87, - 0x15,0x91,0x09,0x80,0x85,0xb4,0xdf,0x06,0x6d,0x85,0x2c,0x6d,0x07,0x2c,0x78,0x1d,0x58,0x20,0x11,0xc0, - 0x3a,0x52,0xae,0x80,0x7a,0x51,0x7f,0x11,0x73,0xd1,0x82,0xc8,0xab,0xf7,0xe7,0x45,0x11,0xdd,0x3a,0xef, - 0x4f,0xaa,0x95,0x60,0x24,0xc3,0x70,0x1c,0x60,0x96,0x57,0x86,0x55,0xe0,0x6f,0xd8,0xce,0x68,0xbe,0xe7, - 0x58,0x4b,0xc3,0xfd,0x2d,0x7b,0x70,0xce,0x9a,0xb8,0x48,0x5d,0x1a,0xdb,0x45,0xd3,0x4e,0xa7,0xe4,0x91, - 0x6e,0xda,0x94,0xa3,0x07,0x93,0xcd,0x41,0x16,0xd0,0x15,0xc8,0x73,0x1a,0xd2,0x0b,0x7c,0x8a,0x3d,0xc1, - 0xbe,0xc0,0xa7,0xd9,0xb0,0x74,0xe2,0xcb,0xf5,0xe1,0xb4,0xb6,0x3b,0xf6,0x40,0x33,0xb1,0x05,0xd8,0x86, - 0x7c,0xd1,0x69,0xba,0x70,0x7d,0xde,0xce,0xd7,0x82,0x8e,0x14,0x5d,0x9e,0x01,0xd7,0xb8,0xcf,0xc4,0x16, - 0x35,0x44,0x13,0xa6,0x05,0xb7,0xee,0x24,0xc6,0xa6,0x20,0x7c,0x98,0xf8,0x62,0x8e,0x14,0x82,0x58,0x66, - 0x33,0x60,0x34,0x4d,0x61,0xa1,0x22,0x0d,0x4e,0xce,0x92,0x95,0x0c,0x35,0x5e,0xd5,0xd5,0x0c,0xa7,0xa0, - 0x5e,0xd1,0x4e,0x3a,0x00,0xdf,0x0a,0xe8,0xa4,0x5c,0x5f,0x0b,0xa9,0x1c,0xdd,0x85,0x2f,0x01,0x8b,0x16, - 0xf9,0x19,0xa8,0xe8,0x9f,0x26,0xa9,0x50,0xda,0x88,0xc6,0x9e,0xf7,0x66,0xc6,0xf0,0x18,0x88,0xfc,0x4f, - 0x11,0x53,0x51,0x01,0x36,0xc1,0x02,0x11,0xe2,0x60,0x4b,0x75,0x16,0x71,0xa4,0x3b,0xfd,0xc0,0x73,0x6e, - 0x19,0x9d,0x48,0xbf,0xc4,0x15,0x61,0xfb,0xe8,0x5c,0x1b,0x6c,0xe0,0x35,0x41,0xd0,0x7b,0xea,0xdb,0xca, - 0x8d,0xd0,0x80,0xa3,0x59,0xe4,0x5e,0x89,0xd0,0x3f,0x5c,0x2e,0x47,0x77,0x64,0xbe,0x1d,0x59,0x20,0xf9, - 0x12,0x58,0xe4,0xf8,0xfa,0xf9,0xa8,0x22,0xca,0xe7,0x51,0xf9,0x98,0x3c,0xf7,0x04,0xc9,0x17,0xd5,0x19, - 0xfd,0xd4,0x69,0x34,0x13,0x94,0x1d,0x95,0x7e,0x16,0x1c,0xfd,0xcb,0x29,0x70,0x39,0x8f,0xc7,0x19,0x80, - 0x9d,0x72,0xaf,0xe4,0xc7,0xc5,0x62,0xb2,0x80,0x76,0x86,0x75,0x11,0xcf,0x91,0x77,0x1d,0x53,0xa0,0xed, - 0xe2,0x0a,0x57,0x97,0xb0,0x85,0xdc,0xb7,0xf0,0xbd,0x56,0x01,0xb2,0x2a,0x99,0x97,0xed,0x7b,0x9c,0x1f, - 0x8c,0xfd,0x7a,0x6d,0xb8,0x66,0x2e,0x24,0xc3,0xa1,0xff,0x7c,0x45,0x38,0x5a,0x2f,0x4a,0x21,0xba,0x83, - 0xdb,0xa2,0x61,0x3a,0x92,0xe4,0xf4,0x6f,0x41,0x17,0x31,0x20,0x13,0xc8,0xb2,0xc5,0x1a,0xe7,0x47,0xaa, - 0x04,0x5d,0xc9,0x13,0x7a,0x33,0x4b,0xdc,0xb7,0x6f,0xdc,0x79,0x62,0x4f,0x0b,0xd8,0x16,0x75,0x48,0x35, - 0x40,0x36,0x17,0xcb,0x38,0xe0,0xfe,0x50,0x31,0x87,0xb6,0x2e,0x97,0x74,0x84,0xff,0x8b,0xb0,0x15,0x40, - 0xe1,0x0e,0x1c,0x2e,0x61,0xf6,0x59,0x3f,0x02,0xf8,0x68,0xe5,0x22,0xda,0x80,0xf9,0x5f,0xa0,0x7a,0x87, - 0x4b,0x04,0xb0,0x6a,0x10,0xea,0xdc,0x52,0x5c,0x42,0x7c,0xe4,0xbd,0x05,0xf9,0xd1,0xc4,0x40,0x82,0xaa, - 0x81,0xd9,0xe9,0x5d,0xe0,0xaf,0x18,0x19,0x84,0x32,0xb1,0x5b,0x2f,0xcc,0xc0,0xf7,0xc5,0x38,0x43,0xee, - 0x9b,0x0d,0x17,0xa9,0x76,0x6f,0x16,0x72,0x4a,0xdd,0xc3,0x79,0x42,0x8e,0x9b,0x16,0xd2,0x80,0xc5,0x72, - 0xe7,0xc1,0xf7,0x0e,0xce,0x13,0x07,0x04,0x6c,0xdd,0xd7,0x80,0x47,0x77,0xcc,0x38,0xae,0xfd,0x97,0x45, - 0xf7,0x60,0x2d,0xb9,0xa6,0xc6,0x2e,0x9d,0x65,0xe6,0xf1,0x9c,0x13,0x0b,0xde,0x5c,0x7e,0xfa,0x70,0x8f, - 0x8c,0x7c,0x57,0x8e,0x76,0xdb,0x74,0xde,0x29,0x6a,0xbe,0x9c,0x97,0xc6,0xa3,0xd6,0x95,0x73,0x3e,0x9c, - 0x1a,0x5f,0x39,0xe5,0x57,0x08,0x9f,0x59,0xab,0x39,0x94,0xff,0x6f,0x6a,0xc3,0x14,0x7a,0x29,0x19,0x58, - 0x86,0xe2,0x6c,0x5b,0xee,0xfb,0xfd,0x0a,0x60,0xe2,0x55,0xf4,0x19,0xf3,0xfb,0xf7,0xbf,0xde,0xf8,0x6b, - 0x5e,0xbe,0xcd,0x62,0x08,0xac,0x15,0xda,0xf3,0x57,0x25,0xfc,0xeb,0x82,0x48,0x07,0x99,0x07,0x36,0xf4, - 0xa9,0xfe,0x8e,0x2c,0x5a,0xd1,0x7b,0x08,0xff,0x79,0x7e,0x0d,0x71,0xcc,0xfa,0xcc,0x63,0xbb,0xb7,0x11, - 0xe7,0x2a,0xc1,0x2d,0xc4,0x8b,0xd7,0x58,0xff,0xfe,0x0f,0xb3,0xf9,0xda,0x06,0x0a,0x4b,0xed,0x1a,0x6c, - 0x81,0x47,0xe4,0x8b,0xac,0x63,0x88,0x81,0x61,0x02,0x1b,0xca,0x0d,0xdf,0xf4,0x2e,0x19,0xd1,0x17,0x96, - 0xe1,0x44,0x22,0xc1,0xdf,0xbe,0x67,0x5d,0x64,0x51,0xc1,0x34,0x6f,0x6e,0x23,0xd7,0x85,0xde,0x45,0x61, - 0xd2,0xbd,0x1f,0xfd,0x17,0x25,0x0b,0x23,0x59,0x35,0x15,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x59,0x69,0x7b,0xe2,0x38,0x12,0xfe,0x2b,0x8e, + 0x77,0xf6,0x21,0xd9,0x34,0x04,0x08,0x49,0x77,0xb2,0x21,0x3b,0xdc,0x37,0xe1,0x0e,0xf0,0x4d,0xb6,0x85, + 0xad,0x20,0x1f,0xb1,0x64,0x08,0xdd,0x33,0xff,0x7d,0xe4,0x5b,0x80,0x49,0xd2,0xdb,0xcf,0x3c,0xbb,0xf9, + 0x10,0x23,0xd5,0xa1,0xb7,0x4a,0x55,0xaa,0x92,0xfd,0x70,0x56,0x7d,0xaa,0x4c,0x16,0x83,0x9a,0xa0,0x51, + 0x1d,0x3f,0x3e,0x04,0xff,0x21,0x50,0x1e,0x1f,0x74,0x48,0x81,0x20,0x6b,0xc0,0x26,0x90,0x16,0xc5,0xe9, + 0xa4,0x9e,0xfe,0x26,0x3e,0x3e,0x50,0x44,0x31,0x7c,0x7c,0xb8,0x0a,0x9e,0x1e,0x93,0x01,0x74,0x58,0x14, + 0xa9,0x06,0x75,0x98,0x96,0x4d,0x6c,0xda,0xa2,0x20,0x9b,0x06,0x85,0x06,0x93,0xfb,0x47,0xd6,0xfb,0x13, + 0xf7,0x58,0x37,0x08,0x6e,0x2d,0xd3,0xa6,0x1c,0xdf,0x16,0x29,0x54,0x2b,0x2a,0x70,0x83,0x64,0x98,0xf6, + 0x06,0x5f,0x90,0x81,0x28,0x02,0x38,0x4d,0x64,0x80,0x61,0x31,0xc7,0x54,0x60,0x64,0xac,0x05,0x1b,0xe2, + 0xa2,0x48,0xe8,0x0e,0x43,0xa2,0x41,0xc8,0x74,0x68,0x36,0x5c,0x15,0x45,0xc9,0x31,0x14,0x0c,0x33,0x32, + 0x21,0x8c,0x91,0xc8,0x36,0xb2,0xa8,0x40,0x6c,0x39,0x22,0xbc,0xb8,0xf3,0x57,0x3e,0x81,0xfd,0xf0,0x6d, + 0x94,0x4c,0x65,0xf7,0xf8,0xa0,0xa0,0x8d,0x80,0x94,0xa2,0x08,0x2c,0x4b,0xf4,0x47,0x9b,0xb4,0x8c,0x4d, + 0xb0,0x8e,0x49,0x2e,0x4e,0x80,0x0c,0x68,0x07,0x0c,0x32,0x06,0x84,0x14,0x45,0x57,0x8b,0x37,0x87,0x74, + 0xd5,0x5f,0x4d,0x01,0x14,0xdc,0x23,0x1d,0xa8,0xf0,0xca,0x32,0xd4,0x7f,0x4b,0x80,0xc0,0xdb,0xc2,0x17, + 0x34,0x2b,0x3f,0x8d,0xb6,0xd9,0x4e,0x43,0x35,0x4b,0xec,0xaf,0x3f,0x9e,0x6a,0xb5,0xa9,0xca,0x7e,0x55, + 0xdd,0x61,0x69,0x5b,0x29,0x2d,0xd8,0xa3,0x3c,0x2f,0x6d,0xf4,0xa6,0x3b,0xd1,0x98,0x8f,0xea,0xcf,0xcd, + 0xd1,0x44,0xca,0x2f,0xb3,0x4a,0xbe,0xbe,0x5b,0x0e,0xcb,0xe5,0x65,0xe3,0x0e,0x2d,0xc7,0xe5,0xb6,0xf4, + 0x5c,0x37,0x96,0xb3,0x36,0x5e,0x3c,0x8f,0x6e,0x64,0x19,0xe3,0x81,0x2b,0x30,0x2f,0xb7,0x47,0xb5,0xfa, + 0x14,0xf6,0x6d,0xf2,0xac,0xd4,0xfa,0xea,0x4b,0x69,0xd8,0x95,0x17,0x65,0xb9,0x34,0x90,0x4b,0x15,0x65, + 0xd8,0x2f,0x94,0xfa,0xf9,0x5e,0xa5,0xa0,0x8e,0xc8,0xa2,0x7d,0x57,0xeb,0x2b,0xa5,0xc1,0xa2,0x54,0x05, + 0xa5,0x2a,0xb4,0x94,0xa9,0xd6,0xcb,0xbd,0xd6,0x5f,0x1c,0x5b,0xb5,0xee,0xc6,0x72,0xaf,0xa9,0x2a,0x5f, + 0x73,0xd7,0xb3,0xeb,0x15,0x9d,0x5a,0x37,0xb0,0xa9,0xf6,0xea,0x39,0xdb,0x6e,0xd4,0x80,0x73,0x3b,0x6b, + 0x56,0xf3,0xcd,0x9e,0xd4,0xbc,0x79,0x6d,0x3f,0x75,0x9b,0x36,0xb8,0x5c,0xad,0xbf,0x4b,0x64,0x31,0x22, + 0x5a,0xef,0x9b,0xd5,0x9d,0xa8,0xd3,0x96,0x3a,0x56,0x37,0x4e,0xaf,0x67,0x2e,0xb6,0x97,0xa8,0xb7,0x98, + 0xd8,0xb7,0x43,0xad,0xbf,0xe8,0xd9,0x7d,0xd4,0xdf,0x6d,0x5b,0x5d,0xbc,0x9b,0x75,0x14,0x79,0xb7,0x1b, + 0x10,0x5d,0x1e,0x91,0xdd,0xf4,0x26,0xbb,0x56,0x9b,0x74,0x38,0x74,0xf2,0x25,0xa5,0xdf,0xae,0x5b,0xd5, + 0x75,0xa9,0x53,0x68,0x5d,0x75,0x5b,0xcf,0x3d,0x29,0x5f,0x22,0xad,0xb2,0xfc,0x9a,0x45,0xa3,0x06,0x1c, + 0x36,0x06,0x93,0xe5,0x6a,0x76,0x3b,0xac,0x65,0x2f,0xd5,0x6a,0xa3,0x9e,0xb7,0x4d,0xd2,0xa8,0xa9,0xbd, + 0xe1,0x5b,0xab,0xa4,0x19,0xcb,0x12,0x1a,0xf4,0xbf,0x15,0x1c,0x6b,0xb4,0xca,0x5e,0x3d,0x61,0x8b,0x74, + 0x2b,0x65,0xeb,0x7a,0xf7,0x9a,0x95,0x35,0x95,0x56,0xa6,0xd3,0xa5,0x3d,0xda,0xde,0x0e,0xab,0x4f,0xd7, + 0xb5,0xe7,0xe6,0xf8,0xb5,0x7e,0x47,0x81,0xbd,0x04,0xe3,0x4e,0x7b,0x0e,0xdb,0x55,0x45,0x1a,0x62,0x52, + 0xcb,0x76,0xaa,0xb7,0xed,0xfe,0x55,0xc7,0x1c,0x91,0x86,0xf6,0x36,0xef,0x54,0x70,0xa5,0xd3,0x6c,0xb7, + 0x56,0xeb,0x89,0xb6,0xed,0x3d,0x6b,0xa5,0x5b,0xa5,0x3c,0x36,0xf1,0x08,0xbd,0xac,0xdb,0x4f,0x4a,0x6e, + 0x39,0xdd,0xdc,0xed,0x86,0x77,0x4f,0xd6,0xab,0xd4,0xb4,0x10,0x98,0xce,0x40,0x4d,0x5a,0xd6,0xbe,0xd2, + 0x56,0xeb,0xc5,0x2c,0x77,0xe6,0x3b,0x62,0x92,0x9c,0x5c,0x98,0x7d,0x83,0x52,0xb7,0xa6,0x48,0x9b,0xbc, + 0x24,0xf7,0x48,0xed,0xab,0xfa,0xe2,0x94,0x95,0xcd,0x7c,0x34,0x6e,0x17,0xea,0x97,0x57,0xdb,0xd7,0xd6, + 0x7c,0x6e,0xb7,0x1a,0x5b,0x7d,0x7e,0xfd,0x7d,0x0b,0xe4,0x6e,0x55,0x83,0xfd,0xa7,0xbb,0xdc,0xd3,0x4b, + 0x77,0xd8,0x51,0x72,0x85,0x59,0xaf,0x5a,0x31,0x16,0x6a,0xe5,0x6d,0xf6,0xd2,0xba,0xee,0x4f,0x60,0x4e, + 0x1f,0x9b,0x83,0x6a,0xe1,0xee,0xad,0x30,0xb6,0x59,0x70,0xdc,0xbd,0x0e,0x8c,0x02,0x34,0x37,0x95,0x9e, + 0x17,0x3d,0x35,0x5c,0x9f,0xac,0xc7,0xce,0x50,0xaf,0x54,0x58,0x24,0x6a,0xb9,0xc7,0x1f,0x3f,0x84,0xdf, + 0xe8,0x79,0xca,0x4b,0xd1,0xd4,0x85,0xf0,0xe7,0x9f,0x2c,0xdc,0x73,0x8c,0x92,0x77,0x29,0x1b,0x68,0x13, + 0x64,0x1a,0x19,0xb2,0x23,0x14,0xea,0xad,0xaa,0x70,0x56,0x2c,0x0a,0x86,0x83,0xb1,0xf0,0x1f,0x4f,0x2a, + 0x9c,0x67,0x82,0x97,0x42,0xea,0x5e,0x48,0xb1,0xc7,0x91,0x0c,0x9b,0x4e,0xf9,0x7a,0xf3,0x7b,0xf9,0xb0, + 0x45,0x2b,0x44,0x28,0xa0,0x0e,0xd9,0xcf,0x13,0x96,0x3e,0x06,0x94,0x29,0xd3,0xb1,0x3f,0x8f,0x0c,0x05, + 0xc9,0x80,0xba,0x27,0xc6,0xbd,0x9b,0x39,0x69,0x5f,0xd8,0x57,0x34,0xf6,0x7e,0x67,0x80,0x95,0x81,0x06, + 0x90,0x30,0x54,0x18,0xc2,0x54,0xa0,0x09,0x2a,0x29,0x17,0x84,0x82,0x48,0x3c,0xe1,0xe6,0x37,0xd3,0x1d, + 0x9a,0xcf,0xab,0x90,0x65,0x48,0x88,0x65,0x22,0x83,0x66,0x62,0xaf,0x08,0x8c,0xf1,0xd4,0x3a,0xfb,0xf3, + 0xc8,0x62,0x8b,0xbd,0xa3,0x93,0xc1,0xf0,0x04,0x03,0x67,0xbb,0x20,0x7e,0xc9,0x7a,0x15,0xd2,0x67,0x54, + 0xf7,0x56,0x62,0x42,0xfe,0x82,0xe7,0x17,0xa7,0xed,0x23,0x3e,0xa3,0x6e,0x2a,0xf0,0xc0,0xbe,0x24,0x4d, + 0x13,0xf8,0x46,0xcf,0x39,0xa4,0xfc,0x7f,0xff,0xf0,0x43,0xec,0x3c,0x65,0xe7,0x9f,0x82,0x0c,0x55,0x0c, + 0xc1,0x86,0xe3,0x70,0xf9,0x60,0x1c,0xad,0x14,0x8c,0x5b,0xa1,0x4d,0xfb,0x9e,0xf0,0x75,0x9e,0x45,0x4a, + 0x78,0x37,0x50,0x20,0xb9,0xe1,0x22,0x39,0x94,0x9a,0x46,0x38,0xe9,0x8f,0x98,0x63,0x82,0xf1,0x0f,0x21, + 0xe5,0x4f,0xa5,0x4d,0x87,0xb2,0x3a,0x00,0x59,0x68,0x02,0xe6,0xd3,0x0d,0x9c,0x00,0x89,0xc5,0xb0,0x90, + 0xf2,0x9d,0xc7,0xc2,0x52,0x14,0x7e,0x97,0x31,0x92,0xd7,0xec,0x40,0x8f,0x18,0x62,0x7a,0x64,0x80,0x3f, + 0xce,0xb0,0xd5,0x27,0x5c,0xa2,0xf8,0x8b,0x3c,0x0a,0xbf,0x0c,0x87,0xda,0x48,0x55,0x59,0xde,0x9c,0x06, + 0x14,0x71,0x44,0x90,0xc2,0x99,0xbf,0x0d,0x54,0x1c,0x89,0xa7,0x61,0x71,0x3c,0x11,0xb0,0x78,0xee,0x6f, + 0x83,0xb6,0x42,0xb6,0xbe,0x05,0x36,0x3c,0x0d,0x2c,0xe2,0x88,0x60,0x85,0x33,0x27,0x40,0x1d,0xc5,0x1f, + 0xa7,0x8e,0x0f,0x88,0x07,0xed,0xfa,0x30,0x28,0xf8,0xa3,0xf3,0xda,0x53,0xc1,0x6a,0xbc,0x61,0x39,0x54, + 0xa0,0x3b,0x8b,0x75,0x30,0x36,0x8b,0x63,0x53,0x0c,0xda,0x19,0x80,0xf1,0x98,0x42,0x8b,0x30,0x73,0x37, + 0x00,0x3b,0x6e,0x2f,0x64,0x3b,0x50,0x64,0x8b,0xba,0x19,0x89,0x79,0x06,0xaf,0xcd,0x08,0x46,0x13,0x97, + 0x89,0x35,0x35,0x40,0x82,0x38,0xca,0x32,0x77,0x90,0x46,0x86,0xeb,0x22,0x51,0x58,0x99,0xf6,0x21,0xfb, + 0x3e,0x4e,0x9e,0x16,0xc0,0xf5,0x34,0x70,0xa6,0xff,0x14,0xee,0x15,0xc0,0xe4,0x63,0xe0,0x75,0x8f,0xeb, + 0xf3,0xc8,0x03,0xfe,0x64,0xe8,0x1e,0xf1,0x04,0xf6,0x50,0x37,0xc1,0x88,0xb5,0x59,0x07,0x35,0x85,0x95, + 0x22,0x4b,0x0c,0x37,0x36,0xc4,0xc9,0x5a,0x3f,0x0b,0x44,0x51,0xe8,0x59,0xe5,0x2d,0xdc,0x03,0x54,0xcb, + 0xac,0xb0,0x69,0xda,0xe7,0x21,0xef,0xcc,0x25,0x0a,0x57,0x42,0xfe,0xe6,0x46,0xf8,0x97,0x90,0xcb,0x66, + 0x5d,0x0c,0xff,0x64,0x2d,0x22,0x53,0x90,0xb0,0x3a,0xdf,0x01,0xee,0x7b,0xd4,0x50,0x99,0xc1,0x3a,0x32, + 0x8a,0x62,0x96,0x3d,0xc1,0x5b,0x51,0x64,0x2a,0xc5,0x7d,0xe9,0xc8,0xa7,0x19,0xc3,0xd1,0x25,0xc8,0x39, + 0x67,0xe6,0x63,0x3c,0x3a,0x85,0x13,0xac,0x3c,0x8b,0xb7,0x63,0x93,0xf6,0x3c,0x7c,0xee,0x92,0xbf,0x08, + 0xac,0x90,0xc0,0xb7,0x0b,0xf6,0x10,0xc8,0x67,0xbd,0xe0,0x32,0x66,0x36,0xff,0x5b,0x17,0xc4,0x18,0x0e, + 0xec,0x4f,0xae,0x48,0xfb,0xd9,0xcb,0x9d,0x9e,0x0f,0xcc,0x17,0xba,0xf0,0x3b,0x71,0x24,0x1d,0xd1,0x8c, + 0x65,0xc3,0x8d,0x77,0xa5,0x60,0xed,0x3c,0xde,0x4d,0x02,0x36,0x97,0x0b,0x41,0xac,0xb0,0xcb,0x0c,0x9f, + 0xef,0xf1,0x89,0x8b,0x74,0x38,0x39,0xce,0xfa,0xa8,0xb1,0x01,0xb6,0xe1,0x55,0xc3,0x60,0x27,0x8e,0x8b, + 0x6f,0xd4,0x3c,0xfc,0xf1,0x87,0x90,0x40,0xf5,0xa3,0xde,0x3d,0xe9,0xae,0x13,0x8e,0x7b,0xb6,0x78,0x8b, + 0x5d,0x84,0x6c,0x03,0x52,0xbe,0x87,0xf0,0x13,0xcc,0xdb,0x69,0x0c,0x28,0x36,0xb9,0xf2,0xbb,0x27,0xdb, + 0x05,0xb4,0x6b,0x06,0xb5,0x38,0xca,0x22,0x7e,0x87,0x28,0x2b,0xf9,0x7e,0x0e,0x87,0x7a,0xe2,0x1c,0xdf, + 0xd3,0x94,0x89,0xd6,0xd9,0x5b,0xdc,0x94,0x3d,0x2b,0xc4,0xc4,0x64,0x4f,0x86,0x14,0x88,0x7c,0x0a,0x53, + 0xa4,0xfe,0x14,0xa8,0x90,0xe1,0x64,0x9d,0xf1,0x0b,0x46,0xbc,0xf7,0x04,0x02,0x5b,0xd6,0xba,0x91,0xe2, + 0xfb,0xb0,0x45,0x0b,0x49,0x6c,0x33,0x23,0xea,0xbb,0x06,0x8c,0x3d,0xf6,0xc3,0xc2,0x12,0xc7,0xd2,0xbb, + 0x51,0xa5,0x9b,0xae,0x8a,0xc3,0xb8,0xe2,0xa4,0xaf,0xdc,0xd0,0xfd,0x28,0xd4,0xf7,0x2a,0xf2,0x7b,0xc1, + 0x5e,0xe1,0x1b,0xcd,0x24,0x60,0x7c,0x1d,0x3f,0x00,0xc5,0x6f,0x8d,0xac,0x41,0x79,0x2d,0x99,0x6f,0xc1, + 0xb1,0x1f,0x77,0xba,0xdc,0x0e,0x71,0xaa,0x78,0x86,0x4f,0x54,0x05,0x9e,0xfb,0x18,0x17,0x47,0xde,0x8f, + 0x1d,0xfe,0x48,0xd3,0x3e,0x16,0x6e,0xc6,0x0a,0xbc,0xe3,0x4c,0x78,0xc7,0xc2,0x20,0x49,0x93,0xad,0x0b, + 0x89,0x1f,0x5b,0x16,0x71,0x1e,0x03,0xe3,0x3a,0xf4,0x9f,0xb7,0x8a,0x13,0x3e,0xb4,0x8a,0xcf,0x52,0x42, + 0x90,0x92,0x28,0xce,0xe6,0x3f,0x93,0x86,0x9e,0x7c,0xb2,0x0b,0x3c,0x0a,0x97,0x43,0x67,0xef,0xf8,0xc7, + 0xc3,0x62,0x31,0x83,0xb6,0xa6,0x9d,0x88,0x27,0xa4,0x9d,0xc6,0x14,0x49,0x7b,0xb8,0xe2,0x51,0x12,0xb6, + 0x98,0xfa,0x11,0xbe,0xf7,0x22,0x40,0xd1,0x64,0x2b,0x59,0xbf,0x4f,0xf9,0xa4,0xed,0xa7,0x63,0xc3,0x53, + 0x93,0xe0,0x0c,0x77,0xfe,0xe7,0x23,0xc2,0x95,0x3a,0x0a,0x05,0xbe,0x5e,0x3b,0x92,0x69,0xb9,0x9c,0x64, + 0x7f,0x5b,0x50,0x22,0x06,0x64,0x01,0x45,0xb1,0x59,0xe2,0x7c,0x26,0x4a,0xd0,0x09,0x3f,0xa1,0x0f,0xbd, + 0xe4,0x56,0xc6,0x43,0xc7,0xee,0x07,0xb0,0x23,0xb1,0x02,0xa8,0x03,0xb2,0x4e,0x0c,0xe3,0x88,0xfa,0xa9, + 0x60,0x8e,0x75,0x25,0x87,0x34,0x47,0xff,0x45,0xd8,0x2a,0xa0,0x70,0x0b,0x76,0x49,0x98,0x03,0xd2,0x67, + 0x00,0x87,0x5a,0x12,0xd1,0x46,0xc4,0xff,0x06,0xea,0x51,0x2f,0xa1,0x99,0x84,0xba,0x37,0x80,0x24,0xc4, + 0x21,0xed,0x23,0xc8,0xf7,0x16,0x06,0x32,0xd4,0x4c,0xac,0xb8,0x9d,0xdc,0x09,0x25,0x83,0x98,0x27,0x75, + 0xe1,0x9b,0x19,0xad,0x9d,0x68,0x67,0x4c,0xfd,0x30,0xe1,0xb8,0x68,0xf7,0xab,0x32,0x89,0xba,0xd2,0xbd, + 0xe9,0xb4,0x65,0x23,0x1d,0xd8,0xcc,0x77,0x3e,0x7c,0xbf,0x70,0xee,0x77,0x04,0x60,0xe3,0xf5,0x76,0xe1, + 0x2d,0xc8,0x1f,0x07,0xef,0xc3,0xbc,0xc2,0x5a,0xf6,0x54,0x8d,0xbd,0x79,0xe6,0x99,0xfb,0x43,0x4a,0xea, + 0x22,0xee,0x60,0x7f,0xb2,0xb8,0x73,0xb7,0xda,0x13,0xa5,0xdd,0xb1,0xdc,0xd7,0x26,0xf5,0x80,0xcf,0x77, + 0x63,0x28,0x75,0xa2,0xce,0xc7,0x17,0xe3,0x77,0xaa,0xfc,0x0a,0xe1,0x03,0x6d,0x75,0x77,0xe6,0xff,0xd7, + 0xb5,0xb1,0x0b,0x7d,0x97,0x0c,0x6c,0x53,0x75,0x8f,0x2d,0xef,0x15,0xe6,0x2a,0xba,0x64,0x1e,0x10,0xbd, + 0x1b,0xcd,0xbb,0x5b,0x73,0xfc,0xc2,0x0e,0xb3,0xa6,0x6f,0x85,0xde,0x4e,0x5f,0xcb,0x82,0x37,0xa2,0x5c, + 0x06,0x59,0x3b,0xd6,0xf4,0x69,0xc1,0x89,0x2c,0xd9,0xfc,0xab,0xd6,0xe0,0x79,0xf8,0xa6,0x35,0xf4,0xfa, + 0xcc,0x27,0x7b,0x2f,0x5c,0x0f,0x45,0xa2,0x17,0xad,0x47,0xf7,0xa2,0xe0,0x13,0x07,0x66,0x77,0x2f,0x07, + 0xa8,0xcc,0xb5,0x2f,0x60,0x03,0xfc,0x49,0xf1,0x91,0x65,0x0c,0x31,0xb1,0xdb,0x38,0xab,0xe7,0x62,0xcb, + 0xff,0x8e,0x82,0xbe,0x33,0x0f,0x67,0x32,0x19,0xf1,0xe2,0x0b,0xcb,0x22,0x9b,0x96,0x2c,0xeb,0xfc,0x82, + 0xfb,0x22,0xe2,0x7f,0x0b,0xb9,0xf2,0x3e,0x01,0xfd,0x05,0x7b,0x73,0x38,0x18,0x18,0x1a,0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index 9181159..f3ad4a0 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -5,2123 +5,2157 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xd2,0x2e,0xfc,0x57, - 0x24,0x5c,0x5d,0x19,0x18,0xb5,0x68,0xc9,0x49,0xe6,0x9d,0x80,0x46,0x78,0xbd,0x26,0x4e,0xbc,0x8d,0xed, - 0x2c,0x33,0x8a,0x5e,0x1d,0x88,0x6c,0x49,0x88,0x49,0x80,0x01,0x40,0xc9,0x8a,0xc4,0xfb,0xdb,0xbf,0x7a, - 0xaa,0x7a,0x03,0x08,0x39,0x99,0xf7,0xdc,0xf3,0x1d,0x1f,0x8b,0x40,0x77,0xa3,0xd7,0xea,0xea,0xda,0x7b, - 0xfb,0x6c,0x55,0x4e,0xdb,0xa2,0x2a,0xe3,0x56,0xe9,0xe4,0x26,0xaa,0x4e,0x7f,0xd3,0xd3,0x36,0xca,0xb2, - 0xf6,0x7a,0xa9,0xab,0xb3,0x2d,0xfd,0x69,0x59,0xd5,0x6d,0xb3,0xbb,0xbb,0x91,0xb3,0xa8,0x66,0xab,0xb9, - 0x9e,0xc8,0xcf,0xc8,0x94,0xcb,0x74,0x9c,0xa4,0x91,0xad,0xd3,0x17,0x9e,0xe9,0xb3,0xa2,0xd4,0xbb,0xbb, - 0xf2,0x3b,0xca,0x17,0xb3,0x89,0x3c,0xc6,0x47,0xc7,0xd4,0x6e,0x7a,0x57,0xbb,0x13,0xf3,0x3b,0xca,0x3f, - 0x15,0x95,0xd4,0xde,0xfa,0xe7,0x75,0xdc,0x5e,0x14,0x8d,0x72,0x43,0x48,0x6e,0x6a,0xdd,0xae,0xea,0x72, - 0xcb,0x0f,0x2a,0xb9,0xb1,0xcf,0x5b,0x3a,0xae,0x93,0x9b,0xe2,0x2c,0x2e,0x8f,0xea,0xe3,0xc4,0x14,0xc4, - 0xb3,0xed,0xfb,0xf8,0x32,0xaf,0xb7,0x8a,0x0c,0x49,0xd9,0x8d,0x49,0x4b,0x6f,0xd6,0xaa,0x98,0xa5,0xb5, - 0x9a,0x57,0xf9,0x4c,0xcf,0xd2,0xed,0xc3,0xf5,0xd8,0x7c,0xda,0xe2,0xd3,0x69,0x3e,0x9f,0xc7,0x85,0xad, - 0x41,0x15,0xca,0x3f,0xeb,0x84,0x5e,0xe4,0xb3,0x6c,0xfb,0xc0,0x67,0xac,0xd1,0x4c,0x99,0xdd,0xb8,0x8a, - 0xf4,0x68,0x91,0xd1,0xe4,0x8f,0xa6,0x59,0x49,0x7f,0x97,0x59,0x14,0x29,0x1d,0x1f,0xd0,0xe0,0x8e,0xc2, - 0xb5,0x51,0x65,0x72,0xd3,0xba,0x69,0x2e,0xe3,0xc3,0x64,0xad,0xfa,0xf9,0xd1,0xaa,0xd1,0x5b,0x4d,0x5b, - 0x17,0x34,0x93,0x63,0x37,0xee,0x1a,0xb3,0x80,0x46,0x75,0x56,0xea,0xab,0xad,0x9c,0x5e,0x55,0x99,0x55, - 0x71,0x3e,0x5a,0xd6,0x55,0x5b,0x61,0xc2,0x47,0xb5,0xfe,0x7d,0xa5,0x1b,0x80,0x80,0xed,0x15,0xfa,0xdb, - 0xea,0x72,0x16,0x97,0x2a,0x28,0x28,0xa3,0x72,0x39,0xf4,0x56,0xae,0xcd,0xb4,0xc5,0x0f,0x12,0x55,0xd1, - 0xcf,0x17,0x89,0xca,0xe9,0xe7,0xab,0x44,0xa1,0x9b,0x7f,0x4f,0xd4,0x34,0xab,0xe3,0x26,0x19,0x4f,0x47, - 0x8f,0x78,0xdd,0x72,0x35,0x1d,0x4d,0x6b,0x9d,0xb7,0x3a,0x0b,0x97,0xc9,0x34,0x5b,0xd3,0x6c,0x2e,0x74, - 0x7d,0xae,0xe3,0x46,0xb5,0x09,0x8d,0x71,0x3a,0x7a,0x92,0x97,0x53,0x3d,0x47,0x03,0x54,0xb5,0x7d,0xfd, - 0x50,0x7d,0xd4,0x25,0xd2,0xbe,0x44,0x5a,0xd1,0xf8,0x42,0x07,0x48,0xa0,0x65,0x19,0xaa,0xfd,0x6d,0x5d, - 0x2d,0x8a,0x46,0x23,0x9b,0x52,0x51,0x79,0xb3,0xa4,0xae,0xcc,0xf0,0x1d,0x75,0xd8,0xcf,0xef,0xd4,0x3f, - 0x8f,0x08,0x50,0xf3,0xd5,0xbc,0xcd,0xa6,0xff,0xd1,0x84,0x4b,0x8b,0xd1,0x91,0x00,0xf6,0xd6,0xa3,0xba, - 0xce,0xaf,0x8f,0x09,0xbe,0xb3,0x95,0x00,0x0d,0x35,0xef,0x3e,0x28,0x82,0x2e,0x96,0xab,0xf9,0x7c,0x9b, - 0xb6,0xc1,0xc0,0x8e,0x6b,0xfd,0x17,0xd5,0x40,0x13,0xcf,0x4d,0xe6,0x5d,0xad,0xe4,0xb2,0xc5,0xb1,0x03, - 0x5c,0x1b,0x97,0x55,0x31,0xdb,0x3a,0xc0,0x73,0x42,0xe9,0xb6,0xc5,0x6d,0xd7,0xe2,0xee,0x6e,0xdc,0x66, - 0x47,0xed,0x71,0xa2,0x30,0xa8,0xe4,0xac,0xaa,0x63,0x01,0x5f,0x02,0xe8,0xac,0x1d,0xcd,0x75,0x79,0xde, - 0x5e,0x8c,0xcb,0x87,0xc5,0xb8,0xdc,0xdb,0x4b,0xb4,0x34,0x8a,0xea,0x55,0x7b,0x54,0x1e,0xab,0x92,0xd6, - 0x70,0xac,0xe7,0x34,0x49,0xf6,0xcb,0x6a,0xab,0xa0,0xad,0x93,0xbc,0xe1,0x86,0x02,0x00,0xbc,0xc8,0x9b, - 0x37,0x57,0x25,0xad,0xcf,0x52,0xd7,0xed,0xb5,0xe9,0xbc,0xaa,0x92,0xdd,0xdd,0x6e,0xa5,0xd5,0xb1,0xaa, - 0xa8,0x52,0x06,0xba,0x46,0xa0,0x8d,0xf6,0x4d,0x4c,0x50,0xb0,0xca,0x36,0x2a,0x6d,0xab,0xf7,0xb4,0x36, - 0xe5,0xf9,0xd8,0x2f,0xec,0x4d,0xd1,0xf0,0x52,0xd0,0x96,0x36,0x4f,0x8f,0x57,0x67,0x67,0xba,0x4e,0x37, - 0xa1,0xa5,0xbb,0x76,0x52,0xac,0x37,0xb7,0x54,0x87,0xf9,0x7c,0x4a,0x8f,0xcf,0xab,0x7a,0xf1,0x34,0x6f, - 0xf3,0xa1,0xba,0x56,0xa5,0xe0,0xbb,0x99,0x9f,0x5c,0x5b,0x7c,0x77,0xb7,0xa5,0x49,0x69,0x5a,0x40,0x70, - 0x90,0xbc,0xee,0x76,0xf0,0xa7,0x42,0x5f,0xfd,0xc5,0x8a,0x83,0xaf,0x76,0x77,0x83,0x17,0xda,0x26,0xa8, - 0x65,0xb2,0x99,0x44,0xf5,0xa5,0xb4,0xd6,0xed,0xe8,0xd4,0x7c,0x65,0x9f,0xc2,0x8e,0x05,0x9f,0xa1,0x6f, - 0x32,0xb5,0x43,0x5d,0x6a,0x38,0x27,0x84,0x5b,0x2a,0xfe,0x7a,0xb5,0x38,0x1d,0x9e,0xe6,0x92,0x73,0x7a, - 0xc5,0x65,0x2d,0x53,0x42,0xa8,0xcd,0x8f,0x76,0x84,0x03,0x1f,0x6f,0x09,0x00,0xd3,0xa2,0xf0,0x57,0x34, - 0x6f,0xfa,0x73,0x2b,0x89,0xfc,0xcd,0x25,0x7c,0x5e,0xcc,0x3f,0xfb,0x15,0xf2,0x07,0x16,0x7e,0x5e,0x9d, - 0x7e,0xee,0x2b,0xe4,0x0f,0xb4,0x65,0x3e,0x48,0x2b,0x99,0x42,0x9d,0x2f,0x86,0x86,0x05,0x8c,0xb0,0xbb, - 0x4b,0xbb,0x7c,0xb4,0x2c,0x96,0x9a,0xbf,0xfc,0xf1,0xdd,0xcb,0xf7,0x3a,0xaf,0xa7,0x17,0x6f,0xf3,0x3a, - 0x5f,0x34,0x7f,0x11,0x16,0x7a,0x5f,0xf5,0x60,0xad,0x97,0x2b,0xcb,0x9a,0x97,0xb3,0xbc,0x9e,0x3d,0xae, - 0xab,0xab,0x46,0xd7,0xcf,0xca,0xcb,0x74,0xe3,0x7c,0x8d,0x83,0x96,0xdc,0xb2,0x95,0xf9,0x65,0x71,0x9e, - 0xb7,0x55,0x7d,0x7b,0x1b,0xbd,0xd3,0xf9,0xb4,0x7d,0x9d,0xb7,0xc5,0xa5,0xa6,0xae,0x64,0x2e,0x0b,0x7b, - 0x73,0xb6,0x9a,0x62,0x6c,0x43,0x9d,0xbd,0x2a,0xca,0x59,0x75,0x35,0x9c,0x37,0xab,0xa6,0xab,0x85,0x2e, - 0x69,0x99,0x09,0x95,0x3c,0xcb,0xa7,0x17,0x69,0xae,0xf8,0xa0,0x70,0xdd,0xdb,0x6a,0xe3,0xce,0x69,0xaf, - 0x55,0x3d,0x40,0xd0,0xe0,0x78,0x1f,0xc0,0xad,0x7a,0xc2,0xe7,0x7e,0xcb,0xd4,0x01,0x28,0x12,0x7e,0xd5, - 0x6b,0x8f,0xf1,0x88,0x12,0xa8,0x19,0xed,0xe5,0xf5,0x39,0xf7,0xa4,0xb1,0xe8,0xaf,0x26,0xf4,0x57,0x13, - 0xfa,0xcb,0x63,0x97,0x25,0x95,0xd8,0xb3,0xb4,0x5c,0x2b,0x39,0x32,0xd3,0xfe,0x01,0x62,0x0a,0xe4,0xd4, - 0x59,0x97,0xc5,0xfd,0x06,0x75,0x91,0x95,0xd4,0xd1,0x4d,0x5a,0x4a,0x4f,0x9a,0x18,0x1f,0xa7,0x7a,0x4d, - 0x47,0xd6,0x5a,0xd1,0x6e,0x1b,0x84,0xa1,0x96,0x4e,0xf5,0xe5,0x3c,0x9f,0xea,0xf8,0xfe,0x7f,0xff,0xda, - 0xfc,0xed,0xbe,0x8a,0xa2,0xc4,0x27,0x51,0xca,0x0e,0x27,0xad,0xd7,0xdd,0x73,0xad,0x77,0xaa,0x79,0xd4, - 0xd9,0x2d,0xd4,0xa7,0xb4,0x68,0xea,0xdd,0x54,0x81,0xcc,0x60,0x6c,0x11,0xf7,0xe7,0x2a,0xc1,0x1c,0xd2, - 0x84,0x95,0x6e,0xee,0x68,0xde,0x78,0xaa,0xc3,0xa9,0x73,0x24,0xd6,0x28,0x5f,0x2e,0xe7,0xd7,0x3c,0xda, - 0xcd,0x6e,0xba,0xa5,0x0e,0x06,0xbd,0xbd,0xdd,0x8e,0xa6,0x15,0x01,0x78,0x4d,0x50,0x56,0xd5,0x83,0xf3, - 0xd7,0x29,0x31,0xb2,0x18,0x1c,0x38,0x6f,0x28,0x1d,0xfb,0x76,0x68,0x0e,0x7a,0x07,0x36,0x4e,0x4a,0xa4, - 0xde,0xde,0xc6,0x9a,0xa8,0xb9,0xa1,0x65,0x1b,0x81,0xd2,0x78,0x4e,0x14,0x61,0xfb,0xf2,0xd9,0xf0,0xc2, - 0x8e,0x9a,0x79,0x31,0x25,0x2a,0x99,0x60,0x40,0x1e,0xe3,0x03,0x75,0x90,0x24,0x54,0x29,0xc6,0x75,0x62, - 0xbb,0x94,0x30,0xa5,0xaa,0xd7,0xff,0x11,0x3d,0x02,0x4a,0xd9,0x92,0x32,0x0d,0xf5,0x90,0xdf,0x8b,0xb2, - 0xd5,0xf5,0x54,0x2f,0x69,0xc0,0x74,0x34,0x1a,0x22,0x30,0x65,0x2a,0x51,0xd5,0xba,0x59,0xd2,0x7c,0x68, - 0x79,0x5d,0x3b,0x32,0xef,0xef,0x42,0xe6,0x3d,0x10,0x32,0xef,0xf0,0xbf,0x84,0xce,0x3b,0xfc,0x07,0x41, - 0xfb,0x26,0x41,0xd9,0x99,0xb0,0xcd,0x83,0x81,0xc9,0x8b,0xca,0x10,0x7c,0x37,0xab,0x7a,0x9e,0x7a,0x30, - 0x38,0x38,0x5e,0x2b,0xff,0x76,0x78,0x9c,0x24,0x2a,0x28,0x5c,0xa8,0xce,0x80,0xd4,0xcd,0x42,0xb7,0x17, - 0xd5,0x2c,0x8d,0xce,0x75,0x1b,0xad,0x41,0x3a,0x8e,0x24,0x85,0xa8,0x14,0x79,0x20,0x6a,0xe0,0x65,0x75, - 0xa5,0xeb,0x27,0x79,0x43,0xac,0x83,0x4c,0x61,0x76,0xd4,0x28,0x39,0x41,0x88,0x56,0xc9,0x2c,0x75,0x48, - 0x23,0xaf,0xe6,0x97,0x9a,0xba,0x3c,0x06,0x4c,0x6f,0xcc,0x94,0x1d,0xdc,0xc8,0x60,0xa2,0x38,0x1c,0xa4, - 0x1e,0xad,0xca,0xe6,0xa2,0x38,0x6b,0x09,0x77,0x9f,0xad,0xe6,0x67,0xc5,0x7c,0xae,0x67,0x0a,0x7b,0x11, - 0x08,0x47,0xcf,0x12,0x6c,0xda,0x81,0x1a,0x65,0xb2,0xef,0xa8,0x72,0xb9,0x6a,0x2e,0xee,0xae,0x6f,0xac, - 0xed,0x6e,0x4a,0x68,0xef,0x8d,0xda,0x0b,0xcd,0x00,0xc4,0x9d,0x48,0x94,0x7b,0x0a,0xd1,0x51,0xe5,0x1a, - 0x3a,0x8a,0x66,0x7a,0xae,0x5b,0x1d,0x29,0x9e,0x3a,0x15,0x5d,0x10,0x94,0xd2,0x4f,0xb5,0x44,0xf3,0x4d, - 0x74,0xac,0x3a,0x30,0xef,0x97,0x98,0xa8,0xc2,0x2c,0xc0,0x59,0x1e,0x99,0xf1,0xe8,0xcc,0x14,0xc5,0x76, - 0xbd,0xca,0xdb,0x5b,0x42,0xa0,0x76,0x95,0x5a,0x85,0xb5,0x26,0xfc,0x45,0xdb,0x3a,0xe9,0x74,0x66,0x59, - 0x35,0xe8,0xc4,0x72,0xc5,0x7f,0xf3,0x76,0x7a,0xf1,0xd7,0x7b,0x00,0xbc,0xf9,0xb9,0x3e,0xd4,0x43,0x7d, - 0x50,0x33,0x50,0x6c,0xa5,0xe9,0x8a,0xdf,0xe9,0xf5,0x7f,0xb0,0xbb,0x80,0x8d,0xb6,0x8b,0x51,0x40,0xaa, - 0xf0,0xf1,0xdd,0x4b,0x39,0x8a,0x9e,0x54,0xb4,0xe6,0x65,0xbb,0xff,0x81,0x3a,0x1f,0x1d,0x27,0x80,0xfe, - 0x7e,0x62,0xa6,0x93,0x3e,0x43,0xf5,0x5f,0xd8,0x69,0x37,0xdd,0x72,0x69,0x04,0xcc,0x58,0x4c,0x73,0x74, - 0xe1,0xfe,0xa7,0xfd,0xab,0xab,0xab,0x7d,0x9a,0xc4,0xc5,0x3e,0x8d,0x49,0x97,0xd3,0x8a,0x98,0x4e,0xda, - 0x05,0xb4,0xa7,0xf3,0x59,0xbe,0x6c,0x43,0xba,0x4b,0x58,0xc1,0x76,0x7c,0x37,0xc9,0xf0,0xcb,0xab,0x97, - 0xdf,0xb5,0xed,0xf2,0x9d,0xcc,0xde,0xa4,0xa5,0x2e,0xfc,0x83,0x38,0xf4,0x81,0x92,0xb4,0x12,0x53,0xdd, - 0x34,0xbc,0x8b,0x51,0x08,0xc7,0x11,0x41,0x5c,0x5b,0xe7,0x65,0x83,0xde,0x98,0x2a,0xd2,0xa3,0xc1,0xa3, - 0xa3,0xa2,0x35,0xeb,0x8e,0x0a,0xbc,0xa5,0x27,0xa3,0x19,0x9b,0x22,0x21,0x20,0x3c,0x5d,0x5a,0xef,0x55, - 0x28,0x29,0xf7,0x0a,0x8a,0xcd,0x17,0x25,0x42,0x8c,0x5e,0x26,0x44,0x4d,0x8e,0x36,0x48,0x6a,0xce,0x30, - 0xc4,0x2e,0xe7,0xf7,0x48,0x22,0xe4,0xc7,0x35,0x7a,0xfa,0xa7,0x13,0x3e,0x9e,0x5e,0xe4,0x75,0xa3,0xdb, - 0x6c,0xd5,0x9e,0xed,0xff,0x23,0x02,0x30,0x59,0x06,0x84,0x36,0x1f,0x57,0x2e,0x54,0xed,0x70,0x9d,0xbf, - 0x35,0x55,0xb9,0x51,0xc5,0xf7,0xef,0xdf,0xbc,0x1e,0x09,0xda,0x2c,0xce,0xae,0xc1,0x82,0xa5,0xed,0xfa, - 0x38,0x9c,0x61,0x83,0xa4,0x8f,0xc2,0x3d,0x02,0x56,0x6e,0x03,0xd7,0x26,0x6d,0x7d,0x7d,0xd3,0x66,0x5c, - 0xe3,0x12,0xad,0xe0,0x64,0x9b,0x62,0x87,0xe1,0x93,0xb5,0xdd,0x38,0xa8,0xbd,0x58,0xe8,0x6a,0xd5,0xa6, - 0x07,0xea,0x53,0x53,0x9f,0x3d,0xa9,0xaa,0x8f,0x85,0x7e,0x9d,0x2f,0x74,0x1a,0xfd,0xf2,0xfe,0xdd,0xf3, - 0xfd,0x0f,0x6f,0x7e,0x78,0xf6,0x3a,0xe2,0xbc,0xef,0x08,0x57,0xe8,0xda,0xe4,0xed,0x87,0xb9,0x8b,0xfc, - 0x93,0x59,0xda,0x97,0x8c,0x9a,0xd2,0xfd,0x43,0x75,0x99,0xcf,0x0b,0xda,0x6d,0x9a,0x48,0xcc,0x76,0x35, - 0x44,0xc0,0x6e,0xb5,0xdf,0x64,0x0f,0x0e,0x0e,0xe8,0x28,0x7e,0xf8,0xc5,0xc1,0xc1,0x7a,0x3d,0x6e,0x46, - 0x17,0xdc,0x02,0x01,0xf2,0xb4,0x5a,0x2c,0x88,0x6c,0xbe,0x79,0x34,0x05,0xce,0x4c,0x37,0xa6,0x4e,0x6d, - 0xb5,0x44,0x63,0xdd,0x27,0xea,0xa6,0xa0,0xe7,0xbf,0xdd,0xff,0x5b,0x44,0xe7,0x63,0xf1,0x27,0x68,0xae, - 0x8b,0x5a,0x5c,0x6b,0x40,0x2c,0x37,0x40,0x07,0xc5,0x7f,0x82,0x99,0x3a,0x9f,0x5b,0x29,0x46,0x9e,0x74, - 0xb0,0x4a,0xf3,0x27,0x58,0x05,0x7b,0xb3,0xe6,0xad,0x7f,0x37,0xe1,0xe5,0xfa,0xd4,0xfa,0xba,0x04,0xf7, - 0x11,0xa9,0x4d,0xd4,0x43,0x4d,0x60,0xf7,0xe3,0x72,0x69,0x4f,0x3a,0xe2,0x40,0x74,0x37,0x85,0xf1,0x8e, - 0x26,0xf2,0x52,0xc9,0x9c,0xb0,0x28,0x8b,0xfa,0xf9,0x67,0x04,0x85,0xef,0x9c,0x02,0x7a,0xfa,0x5a,0xd0, - 0xd3,0xa1,0xa5,0x04,0xbe,0x30,0x94,0xc0,0x97,0xc2,0x92,0x1f,0x1e,0x80,0x27,0xff,0x1c,0x99,0x2f,0xbf, - 0xa3,0xd3,0xb6,0xca,0x3b,0x2f,0xa3,0x53,0x7a,0x8e,0x25,0x81,0xf6,0x30,0x55,0xf5,0xd5,0xf0,0x74,0x78, - 0x1a,0x8c,0x48,0x14,0x73,0x7a,0xc7,0xc1,0x89,0x30,0x17,0x64,0x77,0x46,0x34,0x00,0xb0,0xbc,0x5a,0xd2, - 0x83,0x59,0xa3,0x71,0x1d,0x62,0x9a,0xb3,0x04,0xa2,0x49,0x9e,0x8b,0x65,0x1f,0x23,0xf3,0xb0,0x67,0x4c, - 0xd3,0x76,0x31,0xa3,0xba,0xc8,0xa2,0xaa,0x04,0x51,0x77,0x4d,0x0c,0x55,0xab,0x69,0xef,0x96,0xe7,0x04, - 0x60,0x97,0xd9,0xf6,0xe1,0x18,0x5b,0x70,0x80,0x49,0x92,0x41,0x11,0x3d,0x67,0x86,0xfb,0xcb,0xd3,0x6a, - 0x41,0x00,0x6b,0x6a,0x24,0xce,0xe9,0xaa,0x68,0x2f,0x9e,0xd4,0x7a,0x46,0xed,0x17,0xf9,0xbc,0x89,0x8a, - 0x72,0x6b,0x76,0x7b,0x4b,0x68,0x68,0x44,0x88,0x06,0xd4,0xa5,0xf4,0x64,0xf0,0x73,0xe9,0x10,0x44,0x8e, - 0xdc,0x89,0x03,0x35,0x1b,0x55,0x25,0xe1,0xe8,0x73,0xa2,0x2e,0x82,0x69,0xa3,0xcd,0xce,0x39,0x66,0x9b, - 0x77,0x32,0x00,0xab,0xf9,0x8a,0xe8,0x74,0x9e,0xb8,0x45,0x26,0x6f,0x23,0x82,0x82,0xba,0xa4,0x5d,0x4e, - 0x1d,0x8c,0xd4,0xb9,0x4d,0x5d,0xe6,0x4d,0x73,0x55,0xd5,0x33,0xa4,0x8e,0x97,0xa3,0x47,0x94,0x56,0xd5, - 0xc5,0x1f,0xbc,0x27,0xb3,0xe8,0x71,0xde,0x14,0xd3,0xad,0x68,0x6f,0x15,0x2f,0xf6,0xe8,0xbc,0xda,0x3b, - 0x4f,0xd6,0x34,0x29,0xd4,0xf0,0x92,0xc8,0x93,0x80,0x28,0x0b,0x00,0x53,0x55,0x32,0x4e,0xea,0xc4,0x92, - 0xb1,0xaf,0x7b,0x78,0xaf,0x6b,0x9a,0x8e,0xe2,0x0f,0x22,0x7e,0xd5,0x36,0x01,0x16,0x7d,0x68,0x7a,0xdf, - 0xda,0x27,0x35,0x3b,0xba,0x38,0x0e,0x07,0x83,0xd6,0x08,0xd4,0xbf,0xa4,0x0d,0x30,0x63,0xda,0xfb,0x1a, - 0x88,0x87,0xc6,0x70,0x89,0x1d,0x00,0xa1,0xd7,0x6c,0xd4,0x30,0x2a,0xba,0xbd,0x9d,0x39,0x0a,0x8c,0xf0, - 0xff,0xee,0xee,0x81,0xf9,0xc6,0x25,0x11,0xb5,0x36,0xd3,0x9f,0xde,0xd0,0xa2,0x9e,0x41,0x58,0x10,0x11, - 0x51,0x7e,0x23,0xbc,0x0e,0xd0,0xc9,0xa3,0xf9,0xdc,0x22,0x62,0xc1,0x88,0xb2,0x6e,0x93,0x9c,0x86,0x3b, - 0x98,0x8d,0xf3,0x80,0x05,0x5a,0x75,0x76,0xc3,0xf4,0x47,0xeb,0x1a,0x03,0xd0,0x11,0x77,0x00,0x64,0x06, - 0xd6,0xb9,0x9b,0x31,0xf1,0x9d,0x4a,0xfd,0xe3,0x07,0x2a,0xab,0x64,0x24,0xe9,0xe1,0x83,0x07,0x5f,0x64, - 0x7e,0x64,0x93,0x07,0x07,0x5f,0xa6,0xf6,0xc5,0x94,0x41,0xf1,0x8d,0x72,0xd1,0xeb,0x6a,0xcb,0xc0,0x7d, - 0xe4,0x3e,0xe0,0x8a,0xcd,0x86,0x49,0x4b,0x45,0xec,0xd1,0x59,0x71,0x4e,0x84,0x93,0x65,0x14,0x66,0xeb, - 0x71,0x81,0x6d,0x46,0xc8,0x47,0x11,0x5c,0xd2,0x80,0xd6,0x02,0x5a,0xba,0xae,0xab,0x3a,0x5c,0x8b,0x79, - 0x3c,0x8d,0xa3,0xd7,0xba,0x25,0x70,0xf9,0xb8,0xf5,0x0c,0xb9,0x91,0x6a,0x15,0x4f,0xc1,0x2c,0x71,0x1f, - 0xdf,0x05,0x96,0xfc,0xb5,0x49,0xdf,0xa2,0x5d,0x14,0xed,0xb9,0x55,0xdf,0x8b,0x16,0xcd,0x96,0xfe,0x34, - 0xd5,0x1a,0x24,0x0f,0xd5,0x19,0x3d,0x7b,0xf2,0xe6,0xf5,0xeb,0x47,0x8f,0xdf,0xbc,0xfb,0xf0,0xec,0x69, - 0xd4,0xa9,0xbd,0x1e,0x0d,0x89,0x37,0x62,0xb3,0x94,0xd7,0xc0,0x59,0xc4,0xdc,0x9c,0x64,0x04,0x84,0xbd, - 0x6d,0xe8,0x77,0x60,0x02,0x3e,0xb1,0x7b,0x2c,0x4e,0xae,0x19,0xba,0xe2,0x7e,0x7a,0x92,0x0a,0x6b,0x31, - 0x3e,0x21,0x70,0x5b,0x1e,0x49,0xb6,0x3f,0x31,0x8f,0xb3,0x13,0xde,0x11,0x11,0x9d,0xf7,0x66,0x03,0x4b, - 0x26,0xc3,0x0e,0xd0,0xb8,0xc5,0xf3,0xcb,0x1e,0xe3,0xeb,0x64,0x5e,0x67,0x04,0x28,0x53,0x83,0xac,0x80, - 0x60,0x22,0x83,0xeb,0x03,0x3e,0x67,0xe2,0xd0,0x9a,0x3e,0xc6,0xba,0xf6,0xda,0xa2,0xd5,0x6b,0xe5,0x84, - 0xea,0x8d,0x98,0xba,0x3c,0xeb,0xa7,0x65,0xd8,0x79,0x5d,0x80,0x64,0xa2,0x62,0xd6,0x49,0xea,0x81,0xac, - 0x21,0x31,0x44,0xf0,0x1c,0xe1,0xa4,0xde,0x04,0xeb,0xa4,0xbd,0xa0,0xe5,0x20,0x8e,0x76,0x90,0x5b,0xaf, - 0xca,0xa7,0xd5,0x15,0xa3,0xb5,0xb7,0x06,0x97,0x11,0xb2,0x1e,0xe5,0xb3,0xd9,0xb3,0x4b,0x90,0x17,0x45, - 0x43,0xe3,0xa7,0x91,0x44,0x16,0xd3,0x11,0x14,0x0c,0x7c,0x93,0x0c,0xf1,0xe4,0x28,0xf8,0xe3,0xb2,0x5f, - 0xf5,0x8a,0x53,0xfc,0xd3,0x9f,0xb6,0xd5,0xad,0x02,0x73,0x34,0xf5,0x4a,0x0a,0x16,0x2c,0xf8,0x57,0xb0, - 0x2f,0xcc,0x65,0x32,0x9b,0x16,0x9e,0x65,0x33,0x9e,0xf3,0xfc,0x94,0x0e,0x39,0x42,0x85,0x10,0x18,0x1a, - 0xc8,0xc5,0x02,0x85,0x6b,0x1e,0x9f,0x49,0xb2,0xc2,0x7a,0xd2,0x49,0x79,0xf6,0x1f,0x9c,0xdd,0x74,0x2a, - 0xdf,0x41,0x59,0xe0,0x13,0xc3,0x79,0x8c,0x64,0xa7,0x8f,0xba,0x04,0xdb,0xb8,0x34,0x68,0x81,0x38,0x9b, - 0xdd,0xdd,0xed,0x22,0xb6,0xef,0xc9,0x84,0x78,0xab,0x38,0x32,0x80,0xb5,0x75,0x96,0x13,0x8a,0x9c,0x6d, - 0x01,0x78,0xb6,0xa4,0xc0,0x16,0xe8,0x63,0xda,0xb5,0xf6,0x03,0x65,0x5b,0x10,0x0c,0x50,0x3a,0xf5,0x53, - 0x09,0xfa,0x36,0x2e,0xff,0xfa,0x68,0x0e,0xef,0x1e,0x8d,0x2a,0x54,0x25,0x23,0xca,0xf9,0xc8,0x64,0xac, - 0x03,0x9e,0xde,0x69,0x9a,0x72,0x57,0xec,0x7f,0x22,0x02,0x03,0xbf,0xa9,0x8a,0x40,0xda,0x26,0x43,0xca, - 0x28,0x03,0x04,0xd6,0x08,0x63,0xce,0x4a,0xd9,0x30,0x22,0x0b,0xa9,0x83,0xcd,0x93,0x15,0xc4,0x2b,0xfd, - 0x0f,0x14,0x4a,0x5b,0xc2,0x6c,0xfc,0xf8,0xee,0xc5,0x93,0x6a,0x41,0x35,0x11,0x54,0x52,0xa6,0x17,0xeb, - 0xfd,0xef,0x2f,0x0f,0xee,0x9f,0x17,0x2a,0xfa,0x3f,0xa1,0xac,0xef,0x7f,0x7f,0xf1,0x88,0x13,0xd3,0x4e, - 0xe2,0x83,0x2f,0xef,0x9f,0xab,0x68,0xa7,0x9b,0xf6,0x84,0x0b,0xaa,0x6e,0xe2,0x01,0x0a,0xee,0x75,0xd2, - 0xbe,0x7a,0xcc,0x05,0x8f,0xba,0x89,0x4f,0x39,0xf1,0x38,0x0a,0x79,0xd8,0xcf,0x80,0x1b,0x61,0x84,0x6d, - 0x6d,0x55,0xb1,0x2d,0xaf,0x6a,0x05,0xca,0xa9,0x4c,0x40,0x58,0x6a,0xa3,0x3a,0xa2,0x84,0x21,0xc6,0x4c, - 0x27,0x54,0x4a,0x07,0x2c,0x16,0x97,0x36,0x0b,0x7e,0x74,0x3c,0xf6,0xb4,0xbb,0xee,0x2d,0xee,0x90,0xfa, - 0x8b,0x96,0xcc,0x71,0x87,0xcc,0xbc,0xc7,0x7a,0x2f,0x8b,0x8e,0x8e,0x0d,0x4f,0x6a,0xd3,0x89,0x00,0x33, - 0xfa,0xb0,0x62,0x88,0x0c,0x07,0xef,0x35,0x12,0x35,0x04,0x33,0x96,0xa0,0x4e,0xaa,0x17,0xef,0xdf,0xd8, - 0x2e,0x76,0x99,0x40,0xe6,0x9b,0x37,0x39,0x3c,0xe8,0x5b,0x21,0xef,0x21,0xe4,0x9c,0xec,0x45,0x59,0xb4, - 0xc7,0xaa,0x37,0x08,0x28,0x40,0x70,0xe7,0xa3,0xdf,0xaa,0xa2,0x8c,0xa3,0x5d,0x9a,0x64,0xcb,0x48,0xa3, - 0xa2,0xbd,0x2c,0xde,0x3f,0x84,0x1e,0xc4,0x93,0x2a,0x93,0x28,0x99,0xd0,0x9f,0x14,0x65,0xf7,0xaa,0xe4, - 0xcf,0x01,0xae,0x43,0xe0,0x1f,0x45,0x39,0xa8,0xd9,0x28,0x0f,0xc9,0x3a,0x7a,0xb7,0x07,0x8e,0x88,0x9c, - 0x82,0x04,0x3e,0x81,0x54,0xa4,0xdb,0xfc,0x1c,0x3f,0x9f,0x96,0x05,0x01,0x3b,0x3d,0x9d,0x11,0xc2,0x03, - 0xc3,0x25,0xfc,0x53,0x71,0xb6,0xbf,0xa8,0x66,0xc5,0x59,0xa1,0x67,0xfb,0x4d,0x41,0x68,0x51,0xd2,0x56, - 0xe5,0x46,0xea,0x3c,0x6f,0x5a,0x57,0x16,0xef,0xd5,0xd4,0xf6,0x81,0xb8,0x4b,0x70,0xdf,0x57,0x74,0x90, - 0xa3,0x05,0x42,0xa9,0x9f,0xae,0xf7,0xfb,0x1d,0xad,0x35,0xf1,0xf4,0x74,0x9c,0xe2,0x89,0x8e,0xa9,0xfd, - 0xfc,0xac,0xe5,0x37,0x10,0xb3,0xfb,0x34,0x36,0xa2,0x74,0x8e,0xef,0x60,0x2b,0x58,0x38,0x48,0x1b,0xbc, - 0x82,0xe4,0xc5,0x6b,0xfc,0x89,0x6b,0xf7,0xab,0x3e,0x6a,0x88,0x01,0x6d,0xe3,0xe8,0xd7,0x92,0x60,0xa4, - 0xc7,0x7d,0x57,0xe1,0x32,0xd0,0xae,0x53,0x3a,0x23,0xae,0xac,0x2e,0x16,0xf8,0x6c,0x75,0x4a,0xf3,0x1d, - 0x1f,0x10,0xda,0x49,0xba,0x67,0xb5,0x2a,0x37,0x4a,0x55,0x7b,0x87,0x04,0x10,0x72,0x78,0xe6,0x74,0x84, - 0xb3,0x50,0xc9,0x54,0xac,0x93,0x6f,0xb2,0x03,0xb3,0x7b,0xc6,0xc8,0xcc,0x40,0x4a,0xec,0x4f,0x99,0x00, - 0x61,0x52,0x60,0xc2,0xdf,0x4c,0xf0,0x27,0x3d,0x3a,0x4e,0x80,0xa1,0x68,0x0a,0xe3,0xa3,0xf2,0x38,0x49, - 0x5d,0xce,0x5e,0xa4,0x80,0x9a,0xd3,0x12,0x0c,0x6f,0x4e,0x19,0x7f,0x1d,0x4a,0x82,0xd9,0xbb,0x8b,0xb6, - 0x9a,0x84,0x0a,0x02,0xaf,0xa8,0x71,0x16,0x09,0xad,0x13,0x4a,0xf2,0x0e,0xa4,0x01,0x3c,0x6a,0xa9,0x9d, - 0xd3,0x15,0xed,0xa0,0xe8,0x82,0x96,0x30,0x82,0x91,0x01,0xa1,0xcb,0x11,0x5e,0xb0,0xed,0xee,0x28,0x72, - 0x83,0xa7,0x54,0x8a,0x29,0x16,0x11,0x4e,0xab,0x39,0xbd,0xdb,0xc7,0x89,0x7f,0xf4,0x18,0x2b,0x15,0x15, - 0x48,0x4a,0x5c,0x0d,0xc0,0x13,0x9f,0xd3,0x8f,0x6a,0x18,0xcf,0xa4,0x68,0x0b,0x0f,0x13,0xfb,0x10,0x2a, - 0x54,0x26,0xfe,0xcb,0xbc,0x41,0x59,0xfc,0x4c,0xe4,0x27,0x28,0xf7,0xbf,0x3a,0x0d,0x80,0x87,0x32,0x8d, - 0xe0,0x51,0x61,0xee,0xd0,0x47,0xfa,0x51,0xcb,0xbc,0xbd,0xe0,0xfc,0xe8,0x3e,0x16,0x8f,0x52,0x4d,0xc2, - 0x08,0x42,0xa1,0x47,0x6d,0x7c,0x90,0x4c,0x7c,0x22,0x4a,0xed,0xf9,0x57,0x11,0xcf,0xd3,0x5a,0x65,0xf7, - 0xe3,0x45,0x53,0xe8,0x5b,0x9a,0x20,0x90,0x6d,0xc9,0xfd,0x62,0xd4,0x42,0x06,0xea,0x55,0x70,0x00,0xff, - 0x47,0x80,0x7e,0x6c,0x72,0xab,0x55,0x33,0x16,0x19,0xcf,0xe6,0x1a,0x6f,0x71,0x94,0x47,0xee,0x9c,0xa4, - 0x35,0x32,0xbc,0xf8,0xc8,0xee,0x40,0xb3,0x16,0x5e,0xfa,0x60,0x29,0x07,0x81,0x02,0xc6,0x75,0x25,0xa1, - 0x3f,0xfa,0x93,0x96,0xde,0xa0,0xc4,0xce,0x3f,0x53,0xa9,0xf6,0x05,0x10,0x8d,0xf9,0xe0,0x44,0x3c,0xac, - 0xd7,0x84,0x27,0x37,0x54,0x8e,0xdb,0x07,0x9f,0x3f,0xa3,0x03,0x65,0x90,0xd1,0x75,0x2c,0x88,0x14,0xa3, - 0x5d,0x9e,0x45,0xd2,0xa1,0x2d,0xa0,0x29,0xe2,0x95,0x9b,0xad,0x9c,0xfa,0x52,0x32,0x69,0xb3,0x85,0x99, - 0xcd,0xa7,0x40,0x0b,0x6b,0x81,0xea,0xe8,0xd1,0xe3,0x27,0x4f,0x9f,0x3d,0xff,0xf6,0xbb,0x17,0xdf,0xff, - 0xf0,0xf2,0xd5,0xeb,0x37,0x6f,0xff,0xf9,0xee,0xfd,0x87,0x1f,0x7f,0xfa,0xf9,0x97,0x7f,0xfd,0x3b,0x3f, - 0x9d,0x12,0x3b,0x7f,0x7e,0x51,0xfc,0xf6,0x71,0xbe,0x28,0xab,0xe5,0xef,0x75,0xd3,0xae,0x2e,0xaf,0x3e, - 0x5d,0xff,0x71,0x70,0xf8,0xe0,0x8b,0x2f,0xbf,0xfa,0xfb,0x7f,0xfd,0xe3,0xeb,0xbd,0xfb,0x59,0x34,0x2e, - 0xbd,0x84,0xda,0x13,0x1e,0x2a,0x48,0x15,0xd2,0xe0,0xab,0x4e,0x12,0x16,0x31,0x8b,0x5e,0x48,0xbf,0x9e, - 0xd8,0x6e,0x59,0x4e,0x69,0x10,0x49,0x59,0x7d,0x9b,0x06,0x09,0x93,0x99,0x69,0x6f,0x21,0x8c,0x21,0x68, - 0x6b,0xb2,0x03,0x18,0xde,0x8c,0x2b,0x07,0x3d,0xb7,0x0d,0x4e,0xaf,0x69,0x46,0x27,0x8a,0x6a,0xfe,0x37, - 0x11,0x4e,0xf9,0x5e,0x36,0xb5,0xb9,0x7f,0xff,0x62,0x57,0x7f,0xf3,0xcd,0x3f,0xf6,0x29,0xe3,0x6f,0xff, - 0x48,0x18,0xdd,0xc4,0x45,0x26,0x1f,0x3f,0xa1,0xde,0x52,0x91,0x66,0x2f,0x1b,0xfd,0xd7,0x57,0x49,0xf2, - 0xcd,0x83,0xaf,0xbe,0x32,0x04,0x3b,0x46,0x57,0x8e,0x75,0xa6,0x1f,0x3e,0xfc,0xc7,0x6d,0x61,0x8f,0xa3, - 0xff,0xc7,0x08,0xe4,0xe6,0xaa,0x2e,0x3a,0x5a,0x7d,0x4b,0xb5,0x11,0xb2,0xba,0x11,0x33,0x10,0x3a,0xed, - 0x1b,0xa3,0x23,0xe1,0x03,0x73,0x80,0x46,0x22,0x6a,0x81,0xf9,0x3f,0x31,0x43,0x20,0xc0,0xdc,0xdd,0x35, - 0x9f,0xd8,0x93,0x8a,0xbe,0xc3,0x78,0xf8,0xec,0x2e,0x81,0x99,0xbf,0x7d,0xf5,0xc1,0x49,0x6f,0x55,0x00, - 0xd9,0x45,0xf0,0x2d,0xf6,0x1f,0x7d,0x58,0x74,0x0a,0x54,0x41,0x81,0x19,0x0b,0x68,0xa8,0x48,0x05,0xc1, - 0x05,0x01,0x79,0xee,0xf3,0x1a,0x3d,0x5d,0xd5,0x90,0x7a,0xfb,0x5d,0xc8,0xb8,0x3b,0x6b,0xcc,0x19,0x3f, - 0xde,0xa2,0x43,0x5e,0x81,0xb9,0x4c,0x37,0x4e,0xa7,0xac,0xf7,0xd1,0x68,0xc1,0x7c,0x16,0x86,0xf0,0x4e, - 0x9f,0x3f,0xfb,0xb4,0x8c,0xa3,0xf8,0xbf,0x6f,0xc7,0xbf,0xfe,0xda,0xfc,0x2d,0x89,0x89,0x61,0x26,0xf2, - 0x2d,0x8b,0x8f,0xfe,0x7b,0x7c,0xfc,0xb7,0x24,0xf2,0xaa,0x20,0x4d,0xfc,0xe1,0xe6,0x5c,0x1d,0x7d,0x71, - 0x2c,0xf2,0x09,0x34,0xbe,0xa8,0x2e,0xbb,0xd6,0x11,0xbc,0xbb,0x78,0x51,0x68,0x2d,0x08,0xd4,0x30,0x63, - 0xa3,0xb2,0xba,0x8a,0x93,0xfd,0x7f,0xfc,0xfd,0x4b,0xfd,0x15,0x51,0xd3,0x69,0x7f,0xd1,0x20,0x73,0xea, - 0x8e,0xa3,0xa3,0x3f,0xdd,0x6c,0x87,0x3e,0xf8,0x0f,0xc8,0x63,0xd3,0xa9,0x0b,0x02,0x9f,0x39,0xa4,0xc5, - 0x47,0xc7,0x21,0x01,0x1a,0xea,0x25,0xa9,0x82,0x61,0x45,0x76,0xa7,0x02,0x59,0xa0,0x1b,0xa7,0x6f,0x63, - 0x99,0x87,0xe8,0xdb,0x44,0xeb,0xde,0x29,0x2c,0x94,0xd0,0xfe,0x21,0x24,0x0c,0xbe,0x25,0x2e,0x9f,0x6d, - 0x4c,0x9c,0xfd,0x8a,0x88,0x48,0x90,0x6d,0xbd,0x24,0xc3,0xef,0x75,0x2a,0x32,0x14,0x47,0xd6,0xa5,0x32, - 0x1d,0x1d,0x12,0xd6,0x10,0x18,0x11,0x38,0x32,0x57,0x13,0x03,0x4a,0xaf,0xc4,0x22,0xfe,0x0f,0xb5,0x5b, - 0xb0,0x3b,0xfc,0x0c,0x3f,0xcb,0xa8,0xe0,0xc5,0x99,0xe1,0xfe,0xf4,0x2c,0xde,0x50,0x60,0x1d,0x7e,0x2d, - 0x12,0x62,0x98,0xe6,0x39,0x9b,0x40,0x7a,0x3d,0x84,0x80,0x98,0x7e,0xef,0xe0,0x11,0x68,0x69,0x80,0xce, - 0xda,0xd1,0x69,0x6e,0xc4,0x72,0xdb,0x53,0x23,0x85,0x61,0x06,0x8b,0x1e,0xb2,0x55,0xec,0xb2,0x95,0x11, - 0xd0,0x28,0x27,0xe3,0xf5,0xd2,0x5e,0x56,0xfc,0x89,0x10,0x38,0x83,0x8c,0x91,0xa5,0xc1,0x2e,0x17,0x8a, - 0x9a,0x9e,0xca,0x2a,0xac,0xc5,0x8a,0xf2,0x5d,0xca,0x48,0x74,0x11,0xa6,0x52,0x27,0xf4,0x37,0x22,0xcd, - 0xe3,0x6e,0x3a,0xde,0x92,0x3f,0x55,0x44,0xa8,0x21,0xf5,0x02,0x48,0x6b,0x34,0x14,0xea,0x19,0x68,0x5d, - 0xad,0xd0,0xde,0xb5,0xac,0x8f,0xd7,0x76,0x43,0x53,0x27,0x8d,0xc6,0xef,0xf6,0xb6,0xb1,0x8f,0x09,0x38, - 0xc4,0xae,0xb8,0xc1,0xc3,0x3d,0xcf,0xb1,0xb6,0x53,0x23,0x0f,0xf4,0x3e,0x38,0x35,0xc2,0xba,0x52,0xf1, - 0xb5,0x1a,0xa8,0x29,0xa7,0x67,0x3a,0x61,0xa4,0x42,0xd8,0xed,0x59,0x5e,0x17,0xcc,0x94,0xd7,0x70,0xbb, - 0x96,0x3a,0x29,0x2a,0x78,0xff,0x5c,0xdb,0xb4,0xbe,0x5e,0x4d,0xcf,0x7c,0x94,0xfe,0x8f,0x34,0x17,0x9f, - 0xe1,0x46,0xed,0x84,0xb8,0xa5,0x2a,0x3b,0x14,0x0e,0x54,0x9c,0x40,0x18,0xeb,0x4d,0x46,0xea,0x2f,0xc8, - 0x0b,0x1c,0x1d,0x13,0x6f,0xb7,0xb7,0xb7,0xb0,0xe6,0x38,0x79,0xf2,0xe8,0xf5,0x93,0x67,0x2f,0x4f,0x4e, - 0xfe,0x07,0xd2,0x07,0x5b,0xdb,0xfd,0xff,0x8e,0x8f,0xf2,0xfd,0x3f,0x8e,0xf1,0xe7,0xd7,0xd9,0xaf,0x7b, - 0xbf,0xee,0xff,0x3a,0x3a,0xfe,0x5b,0x9a,0x4c,0x7e,0xbd,0xff,0xeb,0x7d,0x4b,0xfa,0xb5,0xff,0x23,0xf1, - 0x86,0x17,0x38,0x4c,0x02,0x43,0xa2,0x5f,0xef,0xef,0x09,0xc9,0xbc,0x07,0xfa,0x53,0x87,0x04,0xf1,0xfd, - 0x3d,0x21,0x75,0xff,0x64,0x72,0xba,0x56,0x3b,0x1d,0x4a,0xad,0x5d,0x97,0x03,0xc6,0x9b,0xd9,0xc6,0x91, - 0x11,0x89,0xb1,0x6f,0xb4,0x17,0x87,0x9f,0x13,0xa3,0x0b,0xc1,0x70,0x90,0x92,0xc2,0xba,0xa9,0x43,0x65, - 0xf9,0x49,0x87,0x7a,0x24,0x30,0xa7,0xfe,0x8f,0xd0,0x21,0x04,0x99,0x4e,0x96,0xb8,0x1d,0x28,0x58,0x1d, - 0x51,0x04,0xa1,0xa6,0xc8,0x9b,0x88,0xba,0xa0,0x53,0x9e,0xe8,0xee,0xad,0xc5,0xaa,0x69,0xb7,0x4e,0xf5, - 0x56,0xee,0x6c,0xa6,0x46,0x91,0x31,0x43,0x19,0x73,0xaf,0x8d,0x60,0x30,0x1b,0x54,0x66,0xc1,0x0c,0x84, - 0x26,0x48,0x3e,0x28,0x33,0x7c,0x30,0x6e,0x3b,0xd9,0x90,0xa2,0xe5,0x0d,0xd0,0x52,0x6c,0x1f,0xb9,0xaa, - 0x82,0xf7,0xa3,0x4b,0x83,0x18,0xc1,0x23,0xe8,0x2f,0xba,0xa7,0x63,0x1f,0x97,0xf7,0xd4,0x29,0xc6,0xaa, - 0x82,0xab,0x91,0xc1,0x06,0x29,0x38,0xb4,0x9a,0x6a,0x55,0x4f,0x75,0xf8,0x55,0x68,0x6c,0x70,0xd3,0xe2, - 0xc0,0x60,0x7b,0xa2,0xba,0x83,0x8a,0xda,0x0c,0x87,0xaa,0x1c,0x2a,0x0c,0x3f,0x77,0x1e,0x54,0xff,0xc1, - 0xde,0xd8,0x1a,0x40,0x51,0xd6,0xa0,0x8c,0xc5,0x8e,0x1a,0x36,0x65,0xd0,0x7b,0xf6,0x5b,0xb8,0xdb,0x07, - 0x62,0x40,0x99,0xf9,0xff,0xc8,0x0d,0x42,0xc3,0xb1,0xe1,0xa7,0x95,0x1e,0x76,0x6b,0x18,0x06,0xc6,0x76, - 0xd0,0x0e,0xf6,0xf6,0x16,0xa3,0x63,0x8b,0xd8,0xc0,0x18,0xb2,0x5f,0x52,0x64,0x5e,0x56,0x12,0xb6,0xee, - 0xee,0x4a,0xcb,0x72,0x75,0x2b,0x09,0xcd,0xda,0x37,0xac,0x0b,0x6e,0x6f,0x37,0xed,0x78,0x29,0xad,0xb9, - 0x5e,0x9c,0x56,0xf3,0x6e,0xda,0x69,0x55,0xcd,0x75,0x5e,0x0e,0xda,0xb5,0xff,0xbf,0xb1,0x84,0x17,0x09, - 0x1b,0x1b,0xdf,0x2e,0xca,0x41,0x43,0x78,0x4b,0x44,0xb3,0x21,0x04,0xdb,0xe4,0xc5,0x8e,0x81,0xf2,0xc4, - 0xf1,0x37,0xd9,0xc1,0xee,0xee,0x2b,0x22,0xf1,0x47,0x67,0xf3,0xaa,0x82,0x3c,0x2e,0x63,0x7a,0x0a,0x06, - 0x26,0x25,0xd3,0xbf,0x41,0xad,0x4d,0xaf,0xeb,0xd4,0xd9,0x49,0x14,0x6d,0x7a,0xb6,0xb4,0x93,0xbe,0xc8, - 0x4f,0xa4,0xe0,0x0f,0x92,0xd4,0x75,0xc1,0xd7,0x3a,0x1d,0xec,0xab,0x97,0x62,0x13,0x47,0x93,0xbf,0xa6, - 0x8e,0x4d,0x5a,0x22,0x4c,0xdd,0x57,0x2b,0x63,0x21,0xe9,0x2c,0x32,0x8d,0x69,0xbc,0x70,0xf9,0xb1,0x68, - 0x0f,0xea,0xcc,0xc9,0xb0,0x14,0xc4,0x9c,0xd9,0xc1,0xb8,0x78,0x58,0x5b,0x53,0xb2,0x42,0x0c,0x33,0x8f, - 0x8a,0xe3,0x63,0xc2,0x95,0x9e,0x5f,0x18,0xd2,0xbe,0x1f,0xb5,0x5d,0x41,0xd6,0xf1,0x7a,0xc8,0xb8,0x83, - 0x8a,0x1d,0xaf,0x7d,0x1f,0xe7,0xce,0x1d,0xc1,0xfa,0x11,0x58,0x95,0x6a,0x1b,0x88,0xb8,0x58,0x1c,0xfc, - 0xcd,0xfe,0xa1,0x93,0x12,0x73,0x97,0xe9,0xc4,0x29,0xd5,0x61,0x12,0xd4,0x76,0xd6,0x39,0xb3,0x4e,0xec, - 0xaa,0x63,0x93,0xbb,0x32,0x4b,0x3f,0x97,0x03,0xf3,0x31,0xee,0xa3,0x0d,0x4f,0x12,0xe8,0xa3,0xf2,0x18, - 0x86,0x9d,0xf4,0x03,0x0b,0xe1,0x24,0x6c,0x78,0xb6,0x61,0x8c,0x6a,0xa4,0x21,0xf5,0x80,0xa1,0xb0,0xa1, - 0x30,0x26,0xf5,0x37,0x87,0x13,0x6f,0xdc,0xea,0xca,0x01,0x07,0x70,0xbf,0xd9,0xbc,0xd7,0x3e,0x3b,0x39, - 0x6f,0x39,0x3a,0x91,0x8a,0x9c,0xe7,0x85,0x2a,0x7d,0x47,0x2e,0xa4,0x23,0x84,0x41,0x6e,0x6f,0x0f,0xc6, - 0x7e,0xe9,0x6d,0xd9,0x7d,0x4d,0x2b,0xee,0x2d,0x73,0xcb,0x64,0x5c,0xee,0xef,0x8f,0x93,0x9a,0x07,0x75, - 0x54,0xee,0x69,0x67,0x76,0x5b,0xfb,0x4a,0x2f,0x7b,0x80,0x04,0xef,0x0d,0x9d,0xc0,0xb7,0x23,0xc3,0x6c, - 0x38,0xc9,0xa8,0xff,0x62,0xd1,0x11,0x4d,0xc0,0x6a,0xba,0x24,0xc0,0x2a,0x1f,0x7a,0x67,0x11,0x02,0x2c, - 0x54,0xb0,0xbb,0x7b,0x09,0xed,0x23,0x84,0x91,0x0e,0xba,0x7c,0x35,0xe7,0xf6,0x1c,0xf6,0x49,0xd7,0x1e, - 0x60,0xb0,0x0d,0x13,0x8b,0xa5,0xcc,0x91,0xc8,0xe7,0x5c,0x4d,0x3f,0x02,0x34,0xdb,0x74,0x10,0x6e,0xd7, - 0xb6,0x10,0x71,0x2d,0xdb,0xf5,0xee,0xae,0xdb,0x60,0x54,0x81,0x79,0xa6,0xd2,0xd0,0x61,0xb2,0xee,0x21, - 0xe3,0xa9,0x09,0xc4,0xfd,0xc4,0xb6,0x74,0x93,0xa4,0xee,0x6a,0x77,0x37,0xf7,0x00,0x69,0xd6,0x04,0xf2, - 0x2b,0x79,0x04,0x87,0xa4,0x2f,0x75,0x7d,0x1d,0x9c,0xcf,0x01,0x81,0xc9,0xe3,0xc0,0xb0,0xd7,0x52,0xd9, - 0xed,0xad,0xad,0x6c,0xfb,0x70,0x2c,0x02,0x0d,0x03,0x9e,0x1f,0xf5,0x35,0xb0,0x0a,0x71,0x4b,0x61,0x82, - 0xb7,0x2b,0x6f,0x7c,0xdb,0x53,0xd7,0x76,0xd3,0x6f,0xbb,0xd3,0x32,0xbc,0x72,0x4c,0xe3,0xde,0xf8,0xcb, - 0xb6,0x1e,0x80,0xf5,0x49,0x1f,0x83,0x6c,0xac,0x21,0x75,0xdd,0xd6,0x97,0x38,0x77,0x3a,0xd3,0x33,0xe2, - 0x85,0x5d,0x4d,0xa7,0x7e,0xd7,0xd1,0xf8,0x36,0xcd,0xc6,0x35,0x9b,0x4c,0x33,0x39,0x26,0x1b,0x82,0x0f, - 0x3f,0xbf,0x27,0xc2,0xcd,0x76,0xe5,0xeb,0x82,0xa8,0x27,0x4a,0x42,0x01,0xd5,0x81,0x9b,0x97,0x2f,0xfe, - 0x8e,0xd5,0xb8,0xbd,0xfd,0xfa,0x2b,0xfc,0xfa,0xcf,0x77,0xac,0xde,0x2e,0xb9,0x31,0x13,0x2a,0xa7,0xaf, - 0x75,0x3b,0xe2,0x6c,0xaa,0x7f,0xbe,0xd2,0x69,0xa9,0x34,0x1d,0x68,0xba,0xce,0x4f,0xe7,0x3a,0xdd,0xde, - 0xae,0x15,0x24,0x1a,0xf2,0x72,0x60,0x2c,0x21,0x56,0x26,0xf3,0x60,0x1d,0x20,0x99,0x4f,0xc1,0x79,0x34, - 0xa0,0x70,0xde,0xdd,0xbd,0x5f,0xb2,0x5f,0x04,0xeb,0x44,0xef,0x1b,0x0a,0x3d,0x34,0x14,0xf4,0x55,0x7d, - 0xec,0x59,0x38,0xb5,0xb4,0x16,0x7c,0x78,0xab,0xee,0x8f,0x3f,0xb9,0xfc,0xb7,0x4f,0x8c,0xa9,0x80,0x41, - 0x01,0x53,0x2b,0xdc,0x79,0x23,0x66,0xbd,0x06,0x15,0x50,0x8d,0xd4,0x76,0x7e,0xae,0x1c,0x4b,0x3c,0xbd, - 0x28,0xe6,0xb3,0x5a,0x97,0x60,0xbe,0x60,0xfd,0x41,0x90,0x3c,0x5f,0x28,0x56,0x6e,0xf2,0x3b,0x32,0xf2, - 0xe6,0xba,0x9c,0x3e,0xcf,0x61,0x26,0x7f,0xed,0xd5,0xa9,0xa3,0x12,0x0c,0x37,0xaa,0x16,0x49,0x5e,0x5b, - 0x4c,0x81,0xc9,0xcd,0x23,0xa5,0x12,0xf0,0x66,0x0c,0xc2,0x5c,0xe2,0x09,0xb1,0xb6,0xd4,0x1f,0x2e,0x62, - 0x9e,0x29,0xfd,0xac,0x7c,0x22,0x0d,0x51,0xba,0x7b,0xe6,0x74,0xd3,0x71,0x4e,0x77,0x83,0xa0,0xe7,0xf7, - 0x53,0x5a,0xbb,0x17,0x33,0x4e,0x37,0xcf,0x52,0xff,0x9c,0xc6,0xcb,0x9e,0x97,0x5a,0xd4,0xb1,0x66,0x60, - 0xf4,0x52,0xbb,0x97,0xec,0x51,0x90,0x03,0xc3,0xa2,0x04,0xca,0xdb,0x32,0x2c,0x5c,0x86,0x85,0xcb,0x6e, - 0x61,0xc2,0x37,0x7e,0xc6,0x1f,0xf5,0x77,0x8c,0x43,0xd2,0x5d,0xb4,0x6b,0x0e,0xda,0x92,0x4f,0x58,0x9c, - 0xaf,0x19,0xad,0x15,0xfd,0x04,0xfe,0x22,0x41,0xad,0xef,0x1d,0xd2,0x13,0x97,0xa0,0xed,0xb8,0xe3,0xc0, - 0xd3,0xd6,0xd6,0x10,0xc9,0xed,0x2c,0x08,0xe5,0x4e,0x4e,0xaa,0xd3,0x93,0x93,0x88,0x8d,0x55,0xe4,0x39, - 0xfc,0xa8,0xa9,0x27,0xe8,0x9d,0x64,0xa4,0x39,0x91,0xed,0x17,0xd5,0x6a,0x3e,0xa3,0xd9,0x26,0xc4,0x41, - 0x10,0xba,0xfd,0x7d,0xc9,0x46,0x82,0x7d,0x6c,0x78,0x7b,0x0b,0x62,0x8b,0x72,0xcc,0xe6,0x29,0x9a,0x67, - 0xf0,0x6a,0x69,0x8a,0x53,0xb6,0xb6,0xa5,0x0f,0xd9,0x49,0x81,0xa8,0x58,0xcc,0x1b,0x0f,0xba,0x61,0xdd, - 0x25,0x96,0x80,0xe7,0xf5,0x72,0xf1,0xa4,0x5a,0x95,0xed,0xde,0x1e,0x1d,0x5c,0x7e,0x8c,0x1f,0x42,0x75, - 0xba,0x20,0x62,0x7c,0xfb,0xaf,0x92,0xd0,0xaf,0x69,0xea,0x5c,0xb7,0x81,0x7b,0xe0,0x53,0xdd,0x4c,0xeb, - 0x02,0x96,0xf3,0x3c,0x3b,0x8c,0xee,0x73,0x42,0xf7,0x87,0x44,0x2e,0xe6,0xa3,0x70,0x73,0x5a,0x09,0x71, - 0x4e,0x18,0x1b,0x95,0x10,0x2a,0xe5,0xc7,0x86,0x1e,0x57,0xd9,0x76,0x41,0x47,0x02,0x4e,0xc2,0xcf,0x60, - 0x83,0x10,0x0b,0x6c,0x6c,0x7c,0x45,0x55,0xf6,0x4d,0xab,0x75,0xd6,0x4c,0x1a,0x4b,0x74,0x7a,0xf5,0xc7, - 0xbf,0x4a,0xda,0x68,0x35,0x95,0xa7,0xb9,0xa9,0xa8,0xa5,0x25,0x2c,0x37,0x12,0xb5,0xa2,0xd7,0x15,0x5e, - 0x7d,0x52,0xff,0xc4,0xd9,0xdd,0x0d,0x28,0xfe,0x0e,0x84,0x99,0xfd,0x2f,0x6e,0x49,0xba,0xef,0x8e,0x44, - 0x4b,0xa0,0x61,0xd8,0x89,0x89,0x97,0xb5,0xf6,0x4f,0x9f,0x6b,0x11,0xb2,0x71,0x36,0xc2,0x88,0x59,0xdc, - 0xa2,0xd7,0xaa,0x09,0x47,0xa9,0x2d,0x79,0xd3,0x1d,0xa6,0x26,0x54,0x5b,0xdf,0xde,0xea,0x6d,0x36,0x41, - 0xdd,0xc6,0x73,0x3c,0x9d,0x4c,0x3d,0x1d,0x96,0x52,0x77,0xdc,0x9c,0x6b,0x58,0xfd,0x97,0x55,0x0b,0xfa, - 0x97,0x2d,0xef,0x03,0x70,0x78,0x13,0x98,0x07,0xf4,0x41,0x90,0xd6,0x2e,0xf6,0xc7,0x8d,0x3b,0x7b,0x99, - 0x46,0x5f,0xe4,0x9f,0x1c,0x29,0x09,0x8d,0xa0,0x23,0x15,0xb5,0x3a,0xa4,0xea,0x54,0x09,0x38,0xd1,0xec, - 0x7f,0x8a,0x7d,0xc4,0x4f,0x7d,0x97,0x51,0x5f,0xb5,0x18,0xc8,0x96,0x46,0x74,0x64,0x77,0x8b,0xf7,0x4c, - 0x12,0x40,0xbf,0xbd,0xad,0x61,0xa9,0x65,0xe0,0x7a,0x52,0xa6,0xf5,0x24,0xfe,0x40,0x08,0x86,0xcf,0x10, - 0x1e,0x05,0x21,0x23,0xcc,0xb5,0x1d,0x2b,0x08,0x3b,0x6b,0x7d,0x5b,0x06,0xf8,0xfa,0x37,0xb7,0xcf,0xef, - 0x18,0x72,0x38,0x9a,0xc0,0xd4,0xc1,0x6f,0xe4,0xb1,0xef,0x53,0xb8,0xd7,0x6e,0x6f,0x85,0x34,0x86,0x71, - 0x91,0xb5,0xf6,0xd5,0xc7,0x82,0xe6,0xc2,0x8e,0x85,0x2b,0xf0,0xcc,0x75,0x26,0x34,0xcf,0x70,0x70,0x87, - 0x8d,0xea,0xb7,0xa6,0xa1,0x49,0xa0,0x71,0x1a,0x37,0x0f,0x73,0x0b,0x85,0x0d,0xb0,0x1b,0x08,0xcb,0x2c, - 0x3f,0x6a,0x8e,0x8f,0x01,0xa0,0xa0,0x15,0xce,0x98,0x14,0x9a,0x54,0x71,0xcd,0xfe,0x8d,0xd0,0xa5,0x3c, - 0x8b,0xb1,0xf1,0x53,0x2c,0x7b,0x49,0x0f,0x03,0x34,0xe5,0x8b,0x9e,0x88,0xae,0x9c,0xf4,0xf6,0x5c,0x9d, - 0x0d,0xfa,0xc9,0x59,0xd7,0x61,0x76,0x96,0xa3,0x1e,0x0c,0x1d,0xc8,0x93,0x36,0x28,0xd4,0x7a,0x12,0xdd, - 0xf4,0xaa,0x58,0xa7,0x7a,0xd2,0x86,0xed,0x99,0x12,0xcf,0xe2,0xcf,0x35,0xc9,0x34,0x0c,0xfe,0xa0,0xe1, - 0xcf,0x35,0x1b,0x14,0x24,0xb6,0x2f,0xd5,0x69,0x30,0xec,0x97,0x7d,0x39,0xdc,0xa4,0xb5,0x2a,0x7c,0xda, - 0x4e,0x7d,0x34,0x31,0xd1,0x29,0xf4,0xfc,0xc1,0xf7,0xcf,0x3d,0xb9,0x23,0x02,0x9f,0x2e,0xd7,0x63,0x24, - 0x05,0x81,0x2e,0xe8,0x32,0x2e,0xb0,0x51,0x0b,0x5f,0xc5,0x53,0x3b,0xf3,0x81,0x14,0xc0,0x55,0x37,0xad, - 0x09,0xbd,0x10,0x7c,0xd5,0xe3,0x15,0x3c,0xf8,0xe8,0x80,0x62,0xb7,0x47,0xfc,0x41,0xa3,0x43,0xd6,0x7c, - 0x2c,0x0b,0x26,0x54,0x65,0xbc,0x8b,0xfa,0xa2,0x17,0x0b,0xd1,0xb4,0x1f,0x97,0x8d,0x58,0x02,0xc9,0xfa, - 0x32,0xc0,0xdd,0xac,0xc7,0x1b,0xfb,0xa3,0x14,0xa7,0x74,0x3a,0x62,0x1d,0xfa,0x03,0x57,0xd3,0x17,0x50, - 0xc4,0x12,0xd7,0x01,0xbb,0x20,0x3f,0xba,0x2a,0x09,0xee,0x8e,0xb3,0x1b,0x64,0x89,0x9a,0xcb,0x5b,0x1a, - 0x55,0xb6,0x46,0x3e,0x37,0x80,0x22,0xca,0x04,0xdf,0x36,0xc7,0x8a,0x3f,0x6c,0xe8,0x43,0x80,0xed,0xa4, - 0x48,0xe5,0xfb,0x62,0x3d,0x36,0xfd,0xcd,0xf2,0x35,0x50,0xe6,0x1d,0x43,0x2a,0x4a,0xcc,0x7d,0x38,0x26, - 0x97,0xf8,0xb9,0x81,0xc9,0x4c,0x33,0xc1,0x10,0x72,0xe6,0xc4,0xb5,0x31,0x67,0x7e,0x03,0xe3,0x9a,0x14, - 0xcf,0xeb,0xe1,0x21,0xe4,0x32,0x04,0x73,0x0c,0x96,0x47,0x39,0xf1,0x6c,0xf4,0x87,0xc6,0xd0,0x24,0xb4, - 0xde,0xf2,0x7d,0x4e,0x28,0x3e,0x49,0xe5,0xb9,0x59,0xaf,0xfb,0xc3,0xb0,0x83,0xd0,0xa3,0x59,0x51,0x53, - 0x7f,0x89,0x7a,0x35,0x8b,0x63,0x5b,0xa9,0x83,0x56,0x64,0xa6,0xc7,0x03,0x8b,0x5f,0x80,0x2c,0xe0,0xe8, - 0x1a,0x30,0xf0,0x4f,0x0b,0xb5,0x5a,0xc2,0xba,0x90,0xa6,0x30,0x81,0xd2,0xdf,0xc4,0xdf,0xd0,0x26,0xbc, - 0x04,0x37,0x51,0xb0,0x8d,0x14,0xa0,0xb0,0x80,0x71,0xa0,0xd2,0xa3,0x45,0xf1,0x89,0x48,0x19,0x3f,0x3e, - 0x3a,0xfb,0x9a,0xcc,0x26,0xdb,0x29,0xca,0x1f,0x36,0xe3,0x1c,0x7c,0x26,0x7f,0x6a,0x73,0x69,0xdc,0x54, - 0x09,0x37,0x33,0xa5,0x93,0x88,0x66,0x1d,0xb5,0x4c,0x25,0x22,0x01,0x3d,0x24,0xfe,0x5d,0x27,0x40,0x54, - 0x53,0x22,0x79,0x38,0xdd,0xec,0x90,0x95,0xdf,0x18,0xaf,0xfd,0xde,0x1a,0xf2,0xb6,0x71,0x73,0x01,0x64, - 0x8b,0x81,0xd0,0x50,0x30,0x00,0x2b,0xb5,0x01,0xef,0x2c,0x94,0xce,0x15,0x18,0x34,0x5b,0xa2,0x0a,0x4a, - 0x54,0x52,0x22,0xcf,0x76,0xca,0xb8,0xf2,0xd2,0x09,0x2a,0x95,0x13,0xf4,0xd1,0x58,0xd2,0x82,0xc5,0x12, - 0x28,0x89,0xbf,0x79,0x28,0x5c,0x79,0xdb,0xdf,0xfa,0x70,0x96,0x53,0x55,0xb6,0x4d,0xab,0xa6,0x98,0xaf, - 0x85,0x34,0x06,0xcd,0xbe,0x8b,0x1f,0x8b,0x3c,0x4e,0x15,0x23,0x3e,0x01,0x41,0x9f,0xd0,0xf9,0x88,0x86, - 0x22,0xe3,0x5e,0x19,0x25,0x93,0x9c,0x98,0xb7,0xf4,0x9d,0x11,0x92,0xd9,0xa2,0x30,0xfc,0xdf,0x66,0x95, - 0x76,0x4e,0x3f,0x1f,0x8d,0xff,0x6b,0x9e,0x31,0x21,0xed,0x24,0x92,0x79,0x72,0x93,0x0f,0x99,0xfe,0x9d, - 0xc1,0x03,0xca,0xb5,0x60,0x37,0x85,0xb6,0x3e,0x9d,0xee,0x1c,0x00,0x11,0xbb,0x63,0x10,0x86,0xec,0x34, - 0x89,0x9a,0xe0,0x45,0x9e,0x03,0xd9,0x22,0x60,0x70,0xa2,0xce,0xd1,0x09,0xe7,0x50,0xea,0x24,0x78,0x1e, - 0x12,0xd1,0xc2,0x67,0xf8,0xb9,0x17,0xee,0x67,0xaf,0x62,0x2d,0x83,0x9d,0xd4,0x8e,0xda,0xa9,0x09,0x5c, - 0x81,0x92,0xda,0xc4,0xf0,0xeb,0x7d,0x1a,0x7a,0xdc,0x4f,0x00,0x1f,0xf2,0x3e,0xce,0x69,0xe2,0xfb,0x19, - 0x8d,0x37,0x9b,0x70,0xab,0xf7,0x2a,0xb0,0x8f,0xc2,0xe8,0x3d,0x77,0x68,0xb4,0xfc,0xec,0xd0,0xed,0x8a, - 0xc7,0xbf,0x5e,0xed,0x25,0xf7,0x03,0x3c,0xae,0x8f,0x0e,0x69,0x6c,0x91,0xaf,0xf0,0x9d,0x3f,0xd0,0xfb, - 0xc7,0x86,0x05,0xb8,0x57,0x22,0xdd,0x7c,0x65,0xbd,0x5e,0x6d,0x98,0x8f,0xda,0x13,0x96,0xe5,0xc3,0xda, - 0x72,0xfe,0xaf,0x58,0x18,0x66,0x3f,0xf0,0xa2,0x18,0x27,0x49,0x70,0x4d,0x3f,0x0e,0x56,0x5c,0x7b,0x84, - 0x91,0xe9,0x71,0x9d,0xd5,0xa3,0x9d,0x65,0x4e,0xcc,0x54,0x3b,0xf6,0x06,0x44,0x6e,0x29,0xd9,0x87,0xe0, - 0x49,0xbe,0xa4,0x0a,0xf5,0x8c,0x71,0x81,0xfb,0xba,0x22,0x84,0x58,0x3d,0x2c,0x6c,0xbf,0x2a,0xec,0xf4, - 0xfa,0x9a,0x87,0x07,0x13,0x48,0xec,0x08,0x59,0xab,0x5a,0x49,0xe3,0xa6,0x83,0x5e,0xe2,0xf1,0x23,0xf5, - 0xaa,0x56,0x51,0xa7,0x8d,0xad,0x8b,0xaa,0xfa,0x08,0x7f,0xf8,0x1f,0x4d,0x97,0xfd,0x20,0x7e,0x0c,0x06, - 0xf1,0x5b,0x29,0x5d,0xfb,0x4e,0x74,0xee,0xdc,0xb2,0x99,0xc3,0x5e,0x56,0x18,0xb8,0x44,0x2a,0x74,0xed, - 0x7f,0x67,0xa5,0xbe,0x91,0x31,0xb5,0x0e,0xbf,0xa3,0x3e,0x7c,0xb7,0xd1,0x85,0xef,0x82,0x2e,0x6c,0xbf, - 0x84,0x3c,0xeb,0x79,0x49,0xfb,0x6f,0xc0,0xc7,0x08,0x5e,0xec,0xb4,0xa3,0xad,0x86,0x66,0x6c,0xde,0xa5, - 0x89,0x8e,0x70,0xf9,0x27,0x22,0x67,0x66,0x75,0x66,0xc4,0x4e,0x6d,0xb6,0xac,0xad,0xdb,0x79,0x32,0x5e, - 0x5a,0x49,0x70,0xe6,0x85,0x89,0x9a,0x9e,0xb5,0x97,0x02,0x69,0x96,0xe4,0xe9,0xe3,0x38,0xa8,0xf2,0x8f, - 0xe0,0xd4,0xc3,0xa2,0x51,0x35,0x6c,0x4b,0xd1,0x53,0x24,0x89,0x33,0xa2,0x13,0x70,0xba,0x79,0x11,0x68, - 0x89,0x4a,0x3a,0x02,0x3e,0x14,0x53,0xac,0x06,0x9f,0x6a,0x25,0xfb,0xc4,0x43,0x55,0x33,0x03,0x5f,0x81, - 0x3e,0x1f,0xa8,0x8b,0x7a,0x32,0xaf,0xe3,0x24,0x5d,0xd5,0x30,0xd0,0xd9,0x6e,0x87,0xf5,0x33,0x46,0x93, - 0x96,0x04,0x72,0x94,0x21,0xe5,0x5a,0x09,0xe5,0x9a,0x1f,0xc6,0xcf,0x48,0x73,0x05,0xc0,0x77,0x29,0x47, - 0x8a,0x54,0x77,0x48,0x05,0x63,0x62,0x41,0x21,0x7d,0x04,0x23,0xec,0x38,0xe4,0xe7,0x75,0xf5,0x07,0xdc, - 0xb1,0xc5,0xa6,0x4a,0x1b,0x5a,0xdd,0x9e,0xc7,0x3a,0x64,0xc7,0x0a,0x86,0xf2,0x12,0x16,0x84,0x74,0x38, - 0x5b,0xc3,0xce,0x12,0xde,0x07,0xf4,0x0e,0x57,0x91,0xdc,0xd0,0x3a,0xba,0x43,0xeb,0xc0,0x60,0xa7,0xe6, - 0x93,0xcd,0x45,0xda,0xa9,0xb3,0xb8,0xea,0xd1,0xe7,0xc9,0xc6,0x37,0x15,0x7d,0x75,0xcc,0x91,0x15,0x12, - 0x9a,0xf5,0x93,0x3a,0xa1,0xff,0xa3,0x29,0x1d,0x05,0x75,0xb8,0xa0,0xbf,0xc7,0xdd,0x18,0x5a,0x46,0xa5, - 0xe7,0x85,0xdb,0x0a,0x84,0xc1,0x59,0xc9,0xc7,0xf5,0xf6,0x06,0x0d,0xe3,0x44,0xd7,0x81,0xe2,0xcd,0xcb, - 0xf6,0xc6,0x1e,0x1f,0x94,0x06,0xf4,0x06,0x15,0x11,0x10,0x93,0x84,0x35,0xb4,0x4e,0x26,0xce,0x4d,0x23, - 0x7c,0x96,0xef,0xf1,0xf7,0xb1,0x11,0x26,0x38,0xfb,0x7f,0xd5,0x28,0x3a,0xf0,0xb9,0xb1,0x5c,0x4e,0x77, - 0x9a,0x7a,0x50,0x03,0x53,0xa6,0x88,0x88,0x16,0x38,0xad,0x81,0x9c,0xdb,0x98,0x6d,0xe4,0x5a,0x3a,0xf2, - 0x27,0xf4,0xb7,0x41,0xdd,0x38,0x0f,0xa5,0x74,0xf6,0x3b,0x96,0x45,0xd5,0xc4,0xaf,0xb3,0xf1,0x66,0xa3, - 0x56,0x23,0xa2,0xc6,0x89,0xa9,0x25,0x38,0x66,0x14,0x42,0x4f,0xf0,0x89,0x23,0xfa,0x88,0x9f,0x60,0xa6, - 0x9e,0x24,0x69,0x43,0xa7,0xc8,0x94,0x6a,0x99,0x72,0x57,0x1b,0xc5,0x75,0x4d,0x93,0xc4,0xf7,0xa7,0xe4, - 0xf5,0xc8,0x41,0x9e,0x16,0x71,0x6c,0x7a,0x93,0x48,0x2b,0xd2,0x41,0xdb,0x42,0xb0,0x30,0x3f,0xc4,0x66, - 0x88,0x81,0x5e,0x2b,0xb9,0xa9,0x86,0x85,0xa8,0x6a,0x2e,0xa3,0x21,0xda,0x61,0x5d,0x77,0x05,0x48,0x10, - 0x88,0x11,0xde,0x85,0xfc,0x6f,0x04,0x0c,0x08,0x13,0x0e,0xff,0x46,0x54,0x52,0x62,0x4e,0x39,0xd8,0x13, - 0xd2,0x3a,0x8c,0x79,0x7a,0x1a,0x9a,0x0d,0xf4,0x38,0xd5,0x32,0x2e,0x48,0x19,0xe8,0x89,0x2d,0x65,0x66, - 0x34,0x7b,0x0d,0x8d,0x10,0xe9,0xb2,0xfb,0x73,0x9a,0x05,0x7c,0x30,0x55,0xf4,0x89,0x6a,0x4c,0x31,0x6c, - 0x62,0x16,0x80,0x35,0x7e,0x54,0xbf,0x30,0x17,0x68,0x46,0x86,0x1d,0x03,0x20,0x12,0x6a,0x01,0xd4,0x8c, - 0x67,0xcf,0x11,0x1e,0x05,0x60,0x5f,0xdd,0xde,0x1a,0xbe,0x96,0x5f,0xe9,0x0c,0x32,0x85,0x8b,0x7e,0xe1, - 0xa2,0x5b,0xb8,0x40,0xe1,0xf5,0xe6,0x81,0xf5,0x6d,0xe8,0x6c,0xc1,0xfc,0x37,0x4c,0x7f,0x20,0x87,0xc4, - 0xc6,0x36,0x26,0xf6,0x56,0x64,0xe9,0x3f,0xfb,0x77,0xc8,0xac,0xc5,0x60,0xca,0x75,0xf3,0x8a,0x95,0xc2, - 0xb7,0xb7,0xbf,0x20,0x90,0x8b,0xbc,0x40,0x27,0xd9,0x1e,0xbd,0x67,0xb5,0xa8,0x3b,0xd7,0x3f,0xe4,0xe7, - 0x12,0x0d,0x20,0x6b,0x2d,0xf5,0x43,0xdb,0x00,0x1e,0x04,0x96,0x18,0x06,0xd5,0x11,0x34,0xf6,0xaf,0x4e, - 0x98,0x17,0xd7,0x1b,0xd0,0x0a,0xa1,0x70,0xd6,0x7f,0xf0,0x4f,0x63,0xb7,0xd0,0x17,0x2e,0x24,0x9f,0x11, - 0xf0,0x5b,0x2e,0x05,0xb4,0x2a,0xaf,0x44,0xcd,0x6e,0x11,0x10,0x9f,0xf6,0xa4,0xc9,0xb4,0x69,0xfe,0x45, - 0xb9,0x6e,0xc2,0xeb,0x80,0x12,0x6d,0x5b,0x7b,0x70,0x95,0x93,0x6b,0x1c,0xef,0x04,0x77,0x22,0x0f,0x92, - 0xb7,0x9e,0x8e,0x4e,0xb7,0x32,0x8f,0x9c,0x79,0x76,0xd6,0xcb,0x2d,0x5d,0x65,0xd7,0xd4,0x31,0xc5,0x3b, - 0x5d,0xcc,0xad,0x28,0x99,0xe6,0x8c,0x52,0x85,0xe6,0x0b,0xb4,0xd6,0x6d,0xc8,0x87,0x09,0xa7,0xb5,0xdd, - 0x7a,0x85,0x85,0xc7,0x40,0x9d,0x90,0x66,0x56,0x88,0x66,0xe4,0x91,0xcc,0xd9,0xe6,0x59,0xc5,0x1b,0x03, - 0x55,0xb0,0x14,0x31,0x6f,0xdb,0xba,0x71,0x0f,0x84,0xc0,0xaa,0xd6,0xf9,0x11,0x87,0x89,0xaa,0xb2,0xf2, - 0x73,0xb1,0xc7,0xab,0xbc,0x6c,0x7b,0x9b,0x15,0x15,0x90,0x5e,0x8a,0xce,0x38,0xe7,0x0f,0x92,0xb8,0xb4, - 0x80,0xc0,0xe6,0x1c,0x36,0x04,0xdd,0xd1,0x31,0xa1,0x05,0xde,0x51,0x55,0x20,0x03,0x6a,0xcc,0x57,0x8c, - 0xce,0x1a,0x68,0x2a,0xf1,0x83,0xc2,0xe3,0xa8,0xd5,0x8b,0xe5,0x9c,0x98,0x2c,0xc0,0x5d,0x05,0x51,0xff, - 0x64,0xca,0x15,0x18,0x34,0x31,0x45,0xd7,0x8c,0x48,0xfb,0xf6,0x96,0xbe,0x48,0xa7,0xb6,0xfe,0xb5,0x8b, - 0x7d,0xb4,0x12,0x1c,0x55,0x1e,0xad,0x8e,0x8d,0x6e,0xa9,0x68,0xbd,0xc3,0x34,0x92,0x7d,0x64,0x11,0xaf, - 0xc9,0x6f,0xef,0x82,0xd1,0xed,0x2e,0x90,0x12,0x11,0xb3,0xc5,0xbb,0x82,0xf7,0x58,0xa0,0xd8,0x6f,0x03, - 0x85,0xa6,0xe1,0xd5,0xee,0x80,0xd4,0x1e,0x54,0x83,0x32,0x9d,0xe0,0x73,0x51,0x4e,0xa5,0xc4,0xfb,0xd0, - 0x13,0x0e,0x42,0xd6,0x74,0x1e,0xd3,0xec,0x0f,0x68,0x1c,0x59,0xad,0xce,0xc2,0xd5,0x71,0x6b,0xf6,0xa2, - 0xa1,0x4e,0x93,0x71,0xc2,0x5a,0xea,0x93,0xa2,0xcc,0x99,0xfb,0xfd,0x1c,0xbd,0xdb,0xb4,0x8e,0xd6,0xb6, - 0xda,0xed,0x13,0x61,0x9b,0x5f,0x98,0xaf,0x89,0xde,0x52,0xdc,0x98,0xa5,0x4a,0x2d,0xe3,0xbe,0x51,0xd2, - 0xd2,0x00,0xdd,0xd6,0xbd,0x81,0x47,0xd0,0xa3,0x9b,0xe0,0x05,0x04,0x5d,0x7f,0xb6,0x76,0xec,0x2a,0x87, - 0xf3,0xc6,0xaa,0x27,0x97,0xc3,0x9a,0x58,0x38,0x26,0xa9,0x88,0xeb,0x21,0xa8,0x99,0x45,0xa1,0x58,0x70, - 0xda,0x76,0x45,0x1a,0x96,0x54,0x37,0x2c,0x6e,0x20,0x0e,0xe0,0xbd,0x54,0xf6,0xf7,0x12,0x68,0xbe,0xd2, - 0x45,0xcd,0x74,0xd1,0x27,0x4a,0x90,0x7d,0x25,0x48,0xe4,0xbd,0xc8,0xd2,0xe0,0x34,0x1a,0x22,0x83,0xbe, - 0xa3,0x17,0x76,0xbc,0x64,0x16,0x50,0x2f,0x60,0xaa,0x80,0x02,0x69,0xb4,0x17,0x62,0x85,0x15,0x02,0x7f, - 0x3d,0x02,0x4d,0x28,0x74,0xac,0xd2,0x3c,0xfc,0x1d,0xd8,0x23,0xd5,0xa1,0x91,0x54,0x68,0xee,0x4b,0xe4, - 0xd6,0xbe,0xa6,0x3f,0x44,0x53,0xbe,0x47,0x4c,0xaa,0xf7,0xf5,0xc3,0x1d,0x47,0x73,0xbc,0x47,0x77,0xa1, - 0x63,0xcc,0x76,0xea,0xa3,0xf7,0xf5,0x71,0x42,0x05,0xd5,0xc7,0x9a,0xc5,0xb6,0x4c,0x7f,0x8c,0xea,0x55, - 0x19,0x5b,0x63,0xac,0x4f,0xb5,0xa3,0x5d,0xea,0x6c,0xc7,0xbd,0x50,0x2d,0x99,0xab,0x12,0x85,0x2c,0x3d, - 0x4d,0x35,0x41,0x2f,0xfe,0xa4,0xce,0xd0,0xe9,0xc3,0x8e,0xa4,0xe5,0x4f,0x48,0xed,0x70,0x91,0x0f,0x14, - 0xd6,0x0f,0xc2,0xdc,0x6d,0x44,0x0b,0x2d,0x93,0x3b,0x2a,0xf2,0x95,0x80,0xf2,0xb3,0xab,0x87,0xef,0x40, - 0x75,0x5d,0x2e,0xc6,0xf5,0xe8,0xe4,0x0a,0x2b,0xa1,0x6b,0x02,0xaa,0x12,0xf2,0xec,0x93,0x82,0xce,0xae, - 0x15,0x21,0xa8,0xd9,0xee,0x2e,0xad,0x3a,0x71,0x4a,0x22,0xaa,0x61,0x78,0x20,0x4c,0xaf,0x7e,0xa0,0x62, - 0xbf,0x01,0x2f,0x5d,0xb6,0x55,0x05,0x6f,0xe1,0x1f,0x88,0xf5,0xe1,0xf5,0x39,0x9b,0x13,0xfa,0x88,0x82, - 0xd5,0x99,0x3b,0x9c,0xfd,0x5b,0x0d,0x15,0xcc,0xa6,0x3d,0x1f,0x5b,0x91,0x51,0x7f,0x08,0x00,0xd7,0x8a, - 0x0a,0x35,0x7a,0xd3,0x6e,0x5a,0xb2,0x11,0xe5,0xef,0x2e,0x5d,0x4d,0x49,0x9f,0x06,0xcd,0x9e,0xb9,0x66, - 0x05,0x22,0x59,0xa9,0x35,0x24,0x95,0x2a,0x27,0xb1,0xe9,0x58,0x3d,0x59,0xb2,0x64,0xb5,0xb4,0x9d,0x38, - 0x4f,0x52,0x9b,0x57,0xe2,0xef,0xa4,0x06,0x05,0x80,0x80,0x76,0x04,0xc2,0x34,0x5f,0xb6,0x3c,0xf2,0xd2, - 0x73,0xfb,0x55,0x89,0xbf,0x13,0xfe,0x9b,0x9e,0x27,0x77,0xf6,0x57,0x77,0xfb,0xbb,0x0c,0xf1,0xe5,0x86, - 0x4a,0x89,0xed,0xec,0x4e,0x70,0xee,0xae,0x68,0x15,0x7e,0x96,0xd5,0x42,0x34,0xbf,0xc1,0x74,0x23,0xda, - 0x71,0x4c,0x0f,0x0b,0xee,0xda,0x6b,0xd8,0xe4,0x6a,0x68,0x26,0x20,0xfd,0x4d,0x54,0xa0,0x91,0xd2,0x5e, - 0x17,0xa4,0x45,0x77,0x11,0x5a,0xb8,0xb4,0x5e,0x98,0xe4,0x42,0xf7,0x40,0x49,0x04,0xa9,0xab,0x42,0xc4, - 0x29,0x63,0x7e,0x9e,0xa8,0x4d,0x39,0x18,0x6b,0x02,0x19,0x23,0xd3,0xa6,0xd9,0xb9,0x12,0x5f,0x70,0x11, - 0x0f,0x7b,0xcb,0x15,0x8f,0x32,0xdb,0x3f,0x37,0x5a,0xfa,0xa5,0x9c,0xbc,0xd3,0x67,0x73,0xe4,0x54,0x57, - 0xe5,0x0f,0x62,0x22,0x31,0x3a,0x2b,0xe6,0xad,0xae,0x87,0x0c,0x9c,0xff,0x8a,0x06,0x71,0xe4,0xb5,0x7c, - 0xeb,0x24,0xed,0x59,0x5f,0x0c,0xf0,0x23,0x37,0x5e,0x12,0x01,0x02,0x96,0x28,0x03,0x44,0x26,0x1d,0x41, - 0x80,0x0a,0x69,0xe4,0xb8,0x19,0xf3,0x68,0x1a,0x16,0x35,0x5d,0x16,0x33,0xec,0x23,0xa6,0xf4,0x83,0x14, - 0x22,0x88,0xe8,0x9b,0x2c,0x48,0x81,0x70,0xf6,0x94,0x06,0xfb,0x71,0x4d,0x6c,0x82,0x3d,0x7c,0xc0,0xf7, - 0x6d,0xc3,0xf6,0xd0,0x4a,0xca,0x20,0xad,0xa4,0x0f,0x05,0x32,0xa6,0xd2,0xb0,0x15,0x99,0x71,0x8d,0x03, - 0x30,0xee,0x14,0x71,0x04,0xad,0xd3,0xb5,0xb3,0x27,0x0a,0x16,0xf9,0xb2,0x15,0x1b,0x15,0xc7,0xe2,0x82, - 0x67,0xda,0x94,0x4a,0x43,0xc0,0x37,0x10,0x5a,0xc8,0x88,0xe0,0x9d,0x96,0xdb,0x59,0x74,0xa9,0x8a,0xd0, - 0x5d,0xee,0x51,0x50,0xf5,0x30,0x67,0x71,0x4d,0x8d,0x8e,0xd2,0xe6,0xe6,0x78,0xae,0x5e,0xfa,0xbe,0x69, - 0x43,0xb8,0x59,0x35,0xd7,0x49,0x15,0xb5,0x61,0x45,0xd5,0xde,0x61,0x58,0x4f,0x61,0x49,0xdb,0x0d,0x53, - 0x9a,0xb0,0xaa,0xa6,0xd7,0xcb,0xa6,0xdf,0xcb,0x69,0xd6,0xa0,0x83,0xae,0xb3,0x53,0xe2,0x18,0x95,0x97, - 0xc5,0x1a,0x8a,0x98,0xd1,0xe5,0x4f,0x88,0x0d,0xc0,0x01,0x12,0x02,0xe5,0xfd,0x22,0xd8,0x39,0x2c,0xdf, - 0xa2,0x86,0x78,0xc7,0xee,0x34,0xb0,0x54,0x98,0xbd,0x27,0xa2,0xcd,0x6e,0xd6,0x0a,0xb1,0xdb,0x98,0x96, - 0xad,0x79,0xcf,0x5c,0xc6,0x97,0x31,0x5e,0x12,0x96,0x7b,0x17,0x19,0xb6,0xdc,0xed,0xad,0x0e,0x9d,0x9c, - 0x4d,0x55,0xb6,0x92,0x1c,0xca,0x8d,0xd1,0x09,0x01,0xcd,0x4c,0xd7,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0xb5, - 0x8d,0x96,0x0b,0x9d,0x1f,0x8a,0x3b,0xfb,0xa1,0x89,0x54,0xd1,0x73,0xfe,0x73,0x34,0xa3,0xba,0x41,0xe9, - 0x14,0x71,0x41,0x3b,0x5a,0xa1,0xf3,0x10,0x57,0xbd,0x16,0xb3,0x60,0x4b,0x0c,0xa8,0x48,0xb6,0x22,0x42, - 0x23,0x50,0x87,0x1f,0x05,0x24,0xe1,0x75,0x7f,0x3a,0x32,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f, - 0x84,0x8d,0x33,0x6b,0x9c,0x74,0xe1,0xae,0x48,0x26,0xec,0xdd,0xec,0xbd,0x5f,0x89,0x21,0x2a,0x20,0xd9, - 0x4d,0xeb,0xc9,0xc7,0x92,0x16,0x02,0x84,0x74,0xda,0x27,0xfe,0x4f,0x5c,0x8b,0x86,0x9d,0x2c,0xc1,0x61, - 0x83,0xa3,0xdc,0x54,0x79,0xd3,0x9c,0x2f,0x90,0x35,0x36,0x22,0x03,0x7f,0x04,0x15,0x22,0xe3,0x9f,0xce, - 0x89,0xb7,0x67,0xd7,0x4c,0xde,0x03,0xd7,0xc2,0xcc,0xd1,0xcb,0x35,0x8a,0x24,0xb4,0x1e,0x21,0x49,0xde, - 0x5a,0xee,0xc0,0x3c,0xb0,0x10,0x79,0x9c,0x43,0x2f,0x4e,0xa3,0x86,0x31,0xf8,0x8f,0x0d,0x1f,0x07,0x31, - 0x24,0x09,0x05,0xa2,0x90,0xcd,0xaa,0x05,0x12,0x1a,0x88,0x20,0xdc,0x0b,0x18,0xf0,0xd4,0xd4,0xc1,0x19, - 0xfc,0x84,0xd4,0x75,0x01,0x8c,0x92,0x43,0xe2,0x0e,0x26,0x5a,0x38,0xda,0x0a,0x02,0x8c,0x18,0x41,0x29, - 0xb8,0x70,0x55,0x32,0x03,0x7f,0x64,0xce,0x6f,0x22,0x9c,0x8a,0xe3,0xce,0xd9,0x8a,0xaf,0x58,0xf4,0xe5, - 0x28,0xc6,0xa9,0x50,0xfb,0x0d,0x71,0xf9,0x3e,0x28,0x98,0xb7,0xe6,0xea,0xd2,0x80,0x7c,0xfc,0x34,0x6c, - 0xe1,0xf3,0xa1,0xd6,0x9a,0x7b,0xd8,0x4f,0x03,0x23,0x82,0x7d,0x07,0x18,0xb5,0x0c,0x22,0x9d,0xa3,0xba, - 0xb7,0xc4,0x75,0x32,0x79,0x44,0x7f,0xd2,0x27,0xf8,0x13,0xef,0xb4,0xb1,0x7c,0x92,0x75,0xa0,0x6b,0x24, - 0xf5,0xbe,0x63,0x18,0x7f,0x5e,0x02,0xee,0xbd,0x1e,0xd5,0xc2,0xfe,0x5b,0xb8,0x83,0x8b,0x78,0x95,0x35, - 0xab,0xb0,0x87,0x91,0xef,0x4e,0x4e,0xa2,0xbd,0x56,0x6d,0x1f,0x26,0x9d,0xf3,0xe7,0xca,0x91,0x0a,0xa6, - 0x7b,0x3b,0xad,0x31,0xa2,0x21,0x5e,0x15,0x9f,0xe8,0xbd,0xb8,0x9c,0x44,0x27,0xf0,0x92,0x8e,0x22,0x09, - 0x40,0x14,0x4c,0xc9,0x4e,0x1b,0x88,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe7,0x2f,0x99,0xa0,0xe3,0x50, - 0xb4,0x06,0x9d,0x7a,0x47,0x02,0x4e,0xfe,0xd4,0x1a,0x75,0xea,0x1e,0x1a,0xae,0x9d,0x78,0xef,0x93,0x6d, - 0x2d,0x30,0x39,0x73,0x1d,0xf0,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xad,0x90,0xfa,0x86,0x86,0x92,0x05, - 0x7b,0xf1,0x63,0xc0,0xa6,0x40,0x11,0xaf,0x13,0x4f,0xd7,0x57,0xf2,0x67,0xc2,0x08,0x08,0x4f,0x49,0x1a, - 0xf0,0x5f,0xb5,0x48,0xd0,0x02,0x5d,0x1f,0xa1,0x4e,0x48,0x20,0xc7,0xac,0xdb,0x2b,0x26,0x47,0xc7,0x56, - 0x4b,0x5d,0x18,0x7f,0xf2,0x4d,0x30,0x7a,0xd2,0x8a,0x5f,0xd9,0x49,0x95,0x5d,0xc1,0xc8,0xec,0xa4,0xe4, - 0x90,0xeb,0x27,0x90,0x8f,0xd1,0xcf,0x3c,0xbb,0xe4,0xd4,0x36,0x5b,0xf0,0xef,0xef,0xd9,0x35,0x7e,0x8a, - 0xec,0x04,0x3f,0x8b,0xec,0x94,0x53,0xcf,0xb2,0x73,0xfe,0xfd,0x98,0x5d,0xf3,0xef,0x69,0x76,0xc2,0xbf, - 0x97,0xd9,0x47,0xfc,0xd0,0x78,0x11,0x71,0xe3,0x64,0x95,0x55,0x9c,0x7c,0x9e,0x7d,0x0c,0x7a,0xf0,0x48, - 0x26,0x2d,0x14,0x13,0x12,0x83,0x6c,0xc0,0x4c,0x1c,0x32,0xd8,0x53,0xc9,0x44,0x4a,0x15,0x0d,0xaf,0x96, - 0x17,0x67,0x11,0x56,0x9b,0x4c,0x3e,0xa9,0x33,0x13,0x93,0x74,0x6e,0xa2,0xc4,0x34,0x99,0x6c,0xc3,0xcb, - 0xd2,0x06,0xfc,0xc4,0x49,0xc4,0x46,0x6c,0x44,0xf1,0xe4,0xe6,0x9d,0xb6,0xbe,0x64,0x33,0x1e,0x1f,0x20, - 0x8e,0xeb,0x96,0x2d,0x11,0xd6,0x5d,0xd3,0x50,0x43,0x14,0x15,0xe2,0x4a,0x97,0x0b,0x0d,0x88,0xb8,0x2b, - 0xf0,0xa9,0xdb,0x9e,0x8e,0xa7,0xd6,0xb9,0xd0,0xee,0x9c,0x2c,0x57,0xc1,0x79,0x91,0xf9,0x26,0xe3,0x44, - 0x6d,0x9c,0x49,0xb0,0x0c,0xf7,0x6f,0x18,0x02,0xa2,0x52,0x9c,0x34,0x62,0x5f,0x37,0x31,0x54,0xe7,0x46, - 0x38,0x14,0x2b,0x2d,0x79,0xd3,0x22,0x7a,0xbf,0x41,0xbc,0x2b,0x77,0x5e,0x56,0x6c,0xfa,0xe4,0x4d,0xf6, - 0x7c,0x8d,0x2a,0x90,0x88,0x64,0x34,0xa6,0x6a,0x9d,0xde,0xdd,0x86,0xa5,0xeb,0xba,0x8d,0x04,0xb4,0xcc, - 0xfb,0xf6,0x0e,0xab,0x65,0xd6,0xb5,0x8a,0xe5,0x72,0x60,0x7d,0x86,0xf9,0x35,0x04,0x8f,0x68,0x57,0xda, - 0xd8,0x5a,0xd5,0xad,0xa8,0x8f,0x0e,0xf5,0x9c,0xc0,0xd1,0x90,0x15,0x51,0xe6,0xdc,0xcf,0x56,0x56,0x3a, - 0x47,0xe5,0x87,0xac,0x3c,0xcc,0x84,0xcc,0x99,0x81,0x87,0xdc,0xac,0x98,0xe1,0xc3,0x39,0xc1,0x8d,0x53, - 0x5e,0xc6,0x41,0x9c,0xac,0x5a,0x9c,0x9a,0x71,0x4e,0x51,0x69,0xd6,0xd7,0xb0,0xf8,0xd1,0x3c,0xc3,0x43, - 0xd7,0xcb,0xd8,0x7c,0x9a,0x91,0xce,0xd9,0xb8,0xb5,0xb3,0xa0,0x8c,0x4d,0x1a,0x9b,0x3a,0x11,0xa7,0x88, - 0x90,0x8d,0xa9,0xd5,0xbc,0xf5,0xea,0x0d,0x52,0x59,0x58,0x26,0x12,0x3f,0x5e,0x9b,0x26,0xb1,0x9a,0x0b, - 0x9f,0x94,0x89,0x20,0x9d,0xf0,0xcd,0x2a,0x84,0x5e,0x3b,0xf9,0x2d,0x91,0x56,0xda,0x93,0x56,0xed,0x43, - 0x3d,0x6e,0x21,0x7a,0x00,0xe6,0xde,0xa1,0x42,0x53,0xfd,0x23,0x1f,0x4d,0x71,0xb2,0x56,0xf3,0xec,0xb4, - 0xa3,0x94,0xf1,0xfd,0xcf,0x20,0x5e,0xad,0x08,0xd8,0x6f,0x6f,0x57,0x31,0xbb,0xec,0xf4,0x8a,0x76,0x27, - 0x89,0xa9,0x32,0x09,0x42,0x86,0x7e,0xc5,0x1c,0x3b,0x65,0x99,0xd5,0xf1,0x5c,0x9d,0x79,0xd7,0x89,0x98, - 0x0b,0x0e,0xac,0xdb,0x92,0xbd,0x25,0x27,0x6d,0x38,0xa7,0xbb,0xbb,0x92,0xca,0x55,0xa4,0x3a,0x5e,0x7a, - 0x29,0x68,0x32,0x18,0xcd,0x39,0x28,0xc0,0x1f,0x22,0x08,0x58,0x2f,0x89,0xeb,0x52,0xa8,0xcb,0xae,0x75, - 0x38,0x0a,0x1a,0xb3,0xc9,0x80,0x5d,0x00,0x17,0xf3,0xcb,0xd7,0x5d,0x3d,0x2e,0x6a,0xde,0x31,0x4d,0x00, - 0x2c,0xd8,0xf7,0xcd,0xf3,0xeb,0x89,0x2b,0x48,0x53,0x91,0x12,0x4f,0xfa,0x41,0x02,0xa7,0x85,0x1a,0xb9, - 0xde,0x40,0xdb,0x00,0xf8,0xe2,0xf0,0x73,0x99,0x49,0x65,0x6a,0xbe,0xbd,0x7d,0x70,0x70,0x60,0x3a,0x66, - 0xa2,0xb1,0xc1,0xf1,0xfd,0xaf,0xb4,0x20,0x57,0x50,0x70,0x55,0xf6,0xcb,0x04,0x98,0x6c,0xfb,0x50,0xb9, - 0xf6,0x26,0x9d,0x11,0xa6,0xfe,0xfb,0xb5,0x87,0x3d,0xab,0x5d,0x58,0xd3,0x4c,0xae,0x68,0xeb,0x78,0x11, - 0x74,0x1f,0x6d,0x04,0xa6,0xa5,0x75,0xec,0x31,0x52,0x47,0x12,0x99,0x41,0x50,0xcb,0x09,0xaf,0x34,0x61, - 0x7e,0x89,0xcc,0xa7,0x95,0x69,0x0c,0x01,0xf0,0x0c,0xde,0x4f,0x09,0xef,0xe7,0xe7,0x44,0x11,0x13,0xa2, - 0xa2,0x96,0x2d,0xf2,0x18,0x57,0x59,0xc5,0x14,0xfc,0x6f,0xc0,0x20,0x34,0x2f,0xd5,0x68,0x41,0xa4,0xed, - 0x3c,0xb0,0xe0,0x0c,0x98,0x2c,0x04,0xa6,0x46,0x2e,0x28,0x44,0x7e,0xe0,0x33,0x86,0x48,0x4b,0xe6,0xbf, - 0x23,0x16,0x46,0xf7,0x0a,0x68,0xc8,0xc2,0xa8,0x44,0x51,0xc2,0x4d,0x78,0x1c,0x97,0x72,0x2c,0xb1,0x88, - 0x78,0x69,0x89,0xc5,0x84,0xb5,0x1d,0xe6,0x0b,0xae,0xcb,0x58,0x9a,0x94,0x23,0xe3,0x1c,0x28,0x44,0xe1, - 0x98,0xfa,0x47,0xc4,0x5f,0x32,0xc1,0xdf,0xec,0xc8,0x7e,0x01,0x6a,0xea,0x34,0x9f,0x7e,0x74,0x87,0x38, - 0x17,0x4a,0xb9,0x50,0xbf,0xcc,0x9a,0x56,0xd5,0x92,0xfd,0x95,0x10,0xce,0x67,0x1e,0x07,0x74,0x22,0x70, - 0xb9,0x82,0xde,0xb6,0x8b,0xf0,0x6c,0xee,0xf0,0x09,0xcd,0x1a,0x1d,0x64,0x42,0xdc,0xc2,0x2b,0xdc,0x17, - 0xd3,0x31,0xcc,0x70,0x74,0xbc,0xf2,0xb4,0xd4,0x9c,0x09,0x5f,0x1b,0xdc,0x93,0xc8,0xff,0x79,0x32,0xfe, - 0x85,0x4e,0x83,0x95,0xa2,0x0d,0x05,0xf2,0xec,0xf6,0x16,0xaf,0x53,0x79,0x3d,0x74,0x74,0x6c,0xb3,0x5e, - 0x43,0x70,0x6e,0x70,0xa1,0xed,0x90,0xed,0x70,0x3e,0x1f,0x82,0x9e,0xae,0x26,0x11,0x47,0xba,0x19,0xb0, - 0xe9,0x73,0xde,0xed,0x69,0xd2,0x11,0x9a,0x4f,0x09,0xcf,0xad,0x8e,0xb3,0xb7,0xf1,0x8a,0x3a,0xc3,0xa4, - 0x80,0xa1,0xe2,0x80,0xae,0x78,0xac,0x09,0x9c,0x52,0x62,0x98,0xb2,0xcb,0xab,0x42,0x0e,0xd7,0xe8,0x73, - 0xe4,0x95,0xa7,0x77,0x2e,0xec,0x2b,0x8e,0x2c,0x9a,0x72,0x36,0x41,0x21,0x54,0x98,0x8f,0x84,0xf0,0x0d, - 0x0c,0x0e,0xe6,0x74,0x76,0xaa,0xc0,0xa9,0x69,0x43,0xe7,0x77,0x16,0x9e,0xb8,0xea,0x2c,0xb0,0xb0,0xcf, - 0xe1,0xc8,0xc9,0xaa,0x8c,0x98,0x4a,0x61,0x13,0x10,0xd4,0xc8,0x03,0xc3,0x17,0x67,0x66,0x52,0x86,0x76, - 0xed,0x19,0x6c,0x61,0xce,0x64,0x13,0x48,0x27,0x97,0x20,0xa4,0x58,0x6a,0x8d,0x5f,0x7a,0x11,0x8f,0x87, - 0x37,0xa5,0x0a,0xa7,0x3d,0x47,0x80,0x23,0xda,0x78,0x06,0x04,0x66,0x54,0x8e,0x79,0xd3,0x0a,0xf3,0x3a, - 0x63,0x52,0x81,0x1b,0x9a,0x25,0xeb,0xed,0x8e,0x34,0xd0,0x6a,0x29,0x5b,0xa7,0xa0,0xec,0x19,0x28,0xbc, - 0xac,0x43,0xb1,0xa9,0x21,0x6b,0x5f,0xd6,0x22,0xf1,0x94,0xaf,0xa0,0x19,0x28,0xb2,0x17,0x70,0x7e,0x1a, - 0xbb,0x94,0xac,0x9e,0x84,0x68,0x63,0x53,0x1a,0xe7,0x60,0xa1,0x75,0x8f,0xf0,0xac,0x35,0x8f,0x04,0x5c, - 0x05,0xd1,0x27,0x84,0x16,0x18,0xca,0xd0,0xec,0x45,0x00,0xf7,0x12,0x3f,0x75,0xea,0x54,0x25,0xe2,0x7e, - 0x11,0x5d,0xae,0xf4,0xbe,0x3b,0x15,0xf6,0x89,0xd2,0x07,0x95,0xb0,0x17,0x5f,0x4c,0x22,0x7a,0xb9,0x60, - 0x7e,0xa3,0x52,0x83,0x6e,0x1f,0xb9,0xba,0x79,0x42,0x68,0x8b,0x90,0x91,0xb3,0x7a,0x4a,0xcf,0x94,0xa3, - 0x3e,0xd3,0x25,0x23,0xa9,0xa9,0xc7,0x5a,0xc4,0xc7,0xcf,0xe1,0xf3,0xea,0x2d,0xad,0x41,0xa2,0x1b,0xec, - 0x45,0x24,0x94,0x55,0x5e,0x76,0x79,0x98,0x9c,0x8d,0xe0,0x72,0x98,0x35,0xc4,0xd3,0x0c,0x70,0x9f,0x13, - 0xc1,0x2f,0x7d,0x48,0x68,0x45,0x57,0x92,0xf1,0xb4,0x0e,0xe4,0xcf,0x45,0x87,0xa0,0x42,0x14,0x64,0x10, - 0x1c,0xb9,0xb5,0x7e,0x70,0xda,0x37,0xa0,0xe2,0x4e,0x81,0x82,0xf5,0xed,0x88,0x72,0x06,0xbe,0x8d,0xb8, - 0xd9,0xb0,0x64,0xb7,0x5f,0xcd,0xf0,0xb1,0x8b,0x8b,0x03,0x00,0xb9,0x39,0x24,0x1f,0x04,0x1b,0x21,0x21, - 0x4b,0x28,0x5d,0x04,0x65,0xa9,0x5c,0x2f,0xe0,0xfc,0xa7,0x70,0x67,0x14,0x1d,0x99,0x4f,0xeb,0x09,0x51, - 0x36,0xf1,0x2a,0x6b,0x92,0xc9,0xd1,0x47,0x1a,0xd9,0x71,0xcf,0xca,0x76,0xe5,0xe3,0x59,0x11,0xf9,0xe0, - 0x23,0xd0,0x60,0xfa,0x80,0x6c,0x10,0x89,0x46,0xc4,0x4e,0xb0,0x85,0xae,0x42,0x5b,0xe8,0x96,0xe6,0xa8, - 0x3a,0x6a,0x8e,0x93,0x21,0x0f,0x58,0x22,0x6b,0x88,0x2a,0x3c,0x3b,0x22,0x0a,0xca,0x45,0x13,0x39,0xee, - 0x99,0xe5,0x4f,0x93,0x89,0x75,0xf2,0xfa,0xe6,0x80,0x46,0xf8,0x6d,0x4c,0x35,0x16,0xf1,0x54,0xc1,0xee, - 0x84,0x3d,0xf2,0x89,0x4f,0x24,0x02,0x8d,0x46,0x46,0x33,0xf3,0x6d,0xcc,0x51,0x32,0xce,0x80,0x7e,0x3e, - 0xc6,0x73,0xd6,0xad,0xed,0x4d,0x29,0x4f,0x34,0xd9,0xb8,0xf9,0xca,0xdc,0x0a,0x40,0x7b,0x3f,0x50,0x08, - 0x9e,0xd1,0x9a,0x25,0x29,0x8c,0x1e,0x27,0xa8,0x62,0xd2,0xab,0x00,0x91,0xac,0xc4,0x9c,0x41,0xbe,0x8a, - 0x3f,0x02,0xe7,0xa5,0xdf,0xd2,0x5f,0x69,0xb3,0xff,0x81,0x34,0x97,0x12,0xc2,0xad,0x9c,0x98,0x8c,0xd7, - 0x7a,0x0a,0x65,0x24,0x13,0x1b,0x53,0xb0,0xa9,0xb2,0xfe,0x0c,0x4a,0xcc,0xb5,0x12,0xf7,0x7d,0x09,0x50, - 0x8e,0xf6,0x72,0x19,0x18,0xfd,0x3d,0x89,0x6c,0x67,0xd1,0xa8,0xc7,0x6d,0x6b,0x5a,0x17,0x23,0xfa,0x49, - 0xb1,0x8c,0xcf,0x6b,0xb6,0xd9,0xf8,0x8b,0x6a,0x95,0x4d,0xa6,0x9d,0x10,0x85,0x03,0x51,0xc9,0x0a,0x43, - 0x37,0xe1,0x50,0x34,0x93,0x75,0x74,0xac,0xda,0xc0,0x5e,0x1d,0xe6,0x21,0xbc,0xed,0x19,0x16,0xc6,0x43, - 0x76,0xa1,0xe6,0x1c,0x59,0x8e,0xcf,0xb2,0x62,0xb4,0x73,0x59,0xd2,0x71,0x8a,0x00,0x58,0xf2,0x34,0x2a, - 0x1b,0x16,0x0e,0x9d,0x13,0x09,0x95,0x9f,0x23,0x46,0x6c,0xb3,0x44,0x70,0x05,0xc2,0x32,0x73,0x88,0xca, - 0x8a,0xe6,0x9d,0x6e,0x74,0x4d,0x24,0x10,0x65,0x53,0xea,0xc4,0xe0,0x10,0xca,0x62,0xdf,0xe0,0xb7,0xf3, - 0xbc,0x45,0xb0,0x0c,0xf3,0x31,0xbe,0xc3,0x26,0xec,0x62,0x8d,0x82,0x89,0xd7,0xec,0x75,0x5c,0x04,0x22, - 0x3b,0x87,0x80,0x9a,0x08,0xb4,0xe6,0x84,0x78,0xa2,0x25,0x7d,0x5b,0xe0,0x90,0x49,0x52,0xd3,0x4c,0x35, - 0x58,0x9b,0x68,0x2f,0xe7,0x19,0x7d,0x52,0xc9,0x27,0x81,0x7c,0x94,0xe0,0x21,0x3e,0x0b,0xfc,0x57,0xea, - 0xb8,0x70,0x2c,0x4e,0x01,0x87,0xb1,0x8a,0xd8,0xa6,0xaa,0xd6,0xc5,0x79,0xf9,0xc6,0xba,0x49,0xd3,0xc4, - 0x10,0x64,0x30,0x16,0xb0,0x88,0x8e,0x45,0x99,0xc4,0xec,0x3a,0xc6,0x3b,0x30,0xd1,0xe6,0x38,0x57,0x3e, - 0xc7,0x6d,0xb9,0x87,0x53,0xde,0x76,0x86,0x8d,0xf3,0x05,0x68,0x0b,0x12,0xe5,0xb3,0x32,0xd0,0x47,0x6c, - 0xd9,0x6a,0xc4,0x06,0x0c,0xa5,0xa0,0x38,0xda,0xfd,0xdc,0xc3,0xf5,0x5a,0x88,0xf3,0x39,0x0d,0x1f,0xf6, - 0x50,0x01,0x4a,0x0b,0x9c,0x36,0xc2,0x40,0x76,0x4e,0x76,0xc0,0xda,0xda,0x66,0xb5,0xd4,0xb5,0x3d,0x7b, - 0x50,0xce,0xa4,0x30,0xf1,0xc1,0x16,0xa9,0xfc,0x6e,0x0d,0x28,0x6e,0xba,0xef,0x99,0xf5,0x3b,0xe9,0x1b, - 0x61,0x23,0xc2,0x9b,0x27,0x41,0x70,0x9a,0x09,0x07,0x6a,0x3d,0xe2,0x40,0x34,0x36,0x3a,0x9f,0x6b,0x9b, - 0xe2,0x8e,0xc6,0xca,0x2a,0xf1,0xab,0xe3,0x6d,0x31,0x91,0x84,0x31,0x07,0xfb,0x5e,0x22,0x40,0x8d,0x86, - 0x8c,0x7b,0xc0,0x48,0x77,0x43,0x9e,0x65,0x88,0x57,0x42,0x74,0x65,0xd6,0x17,0xa2,0x4e,0xca,0x94,0x55, - 0xee,0x1b,0xe6,0x71,0xe2,0x9b,0xe0,0xfa,0x22,0x1a,0x95,0x36,0xd4,0xa8,0xc4,0xda,0x4b,0x76,0x41,0x70, - 0x7e,0x93,0x1d,0xd0,0x9a,0x74,0xd3,0x1e,0x1e,0x60,0x81,0x4c,0xa0,0x2f,0x24,0x78,0x7f,0x39,0xbf,0x07, - 0x4b,0x2b,0xb1,0x57,0x18,0x63,0xe0,0xcc,0xbf,0x66,0xaf,0x79,0x78,0x1d,0xf7,0x27,0x8d,0x4e,0xae,0x38, - 0x58,0xc0,0xec,0x29,0xb4,0xd1,0xdd,0x32,0xc6,0x1a,0x8b,0x23,0xd9,0xf8,0xcd,0x72,0x24,0x71,0xdb,0x8e, - 0x33,0x84,0x58,0xd9,0xb4,0x28,0x78,0xd6,0xba,0x10,0x27,0x27,0x88,0x17,0xd0,0xb1,0xbd,0x7c,0xd1,0xb1, - 0x8f,0x60,0x17,0x45,0x9c,0xe6,0x3d,0x72,0x81,0xbd,0x33,0x83,0xaf,0x5e,0xb6,0x1d,0xca,0xa4,0xbf,0x3a, - 0x93,0xd0,0x75,0xfe,0x9b,0xfd,0xc3,0x74,0x53,0x57,0x33,0x09,0x9d,0xfe,0x7b,0xa5,0xa1,0xaa,0x53,0xdb, - 0xb1,0x8b,0xa3,0x20,0x81,0xc4,0x8e,0x81,0xf1,0x6d,0x1c,0x85,0x52,0x22,0x60,0xb3,0xdb,0xaa,0x36,0xe8, - 0x2e,0x10,0x2b,0x3e,0xef,0x99,0x08,0xb0,0x9a,0x94,0xe1,0x14,0x0a,0x18,0x06,0xcf,0x13,0xc6,0x75,0x7d, - 0xb8,0xb4,0x81,0x7a,0x61,0xf6,0xce,0x96,0x8e,0x86,0x2f,0x78,0x01,0x49,0xd9,0x86,0xbd,0xd1,0xb8,0x81, - 0x00,0x99,0x49,0x80,0xa7,0xa0,0xc5,0x2a,0x66,0xf0,0x42,0xd2,0xe6,0xe9,0x86,0xae,0x81,0x2d,0xf1,0xb7, - 0x0b,0xf6,0xd8,0x62,0x14,0x03,0x87,0x35,0xfc,0xe2,0x96,0x10,0xd7,0xc2,0x0b,0x43,0x26,0x8f,0x76,0x66, - 0x34,0xc4,0xba,0x82,0xcb,0x56,0xeb,0xf4,0xfe,0x73,0xbe,0xf3,0x32,0xf0,0x02,0x68,0x43,0xcf,0xee,0x1b, - 0x11,0x32,0x3f,0x81,0x9e,0x20,0x7d,0xcb,0x7b,0xde,0x27,0xa8,0x32,0x7c,0xa3,0x03,0x98,0x4b,0xc1,0xb4, - 0x8c,0x9f,0x88,0xe0,0x30,0x4f,0x08,0x8e,0x8c,0xdf,0xe3,0xd4,0x3c,0x84,0x66,0xfd,0xdd,0xe5,0x6f,0x27, - 0x7a,0xd2,0xee,0x45,0x5b,0xd1,0x9e,0x4e,0xdb,0x94,0xa3,0xf3,0x07,0x46,0xe4,0x21,0x80,0x6d,0x00,0xca, - 0xd0,0xe1,0x48,0x93,0x85,0xd0,0x81,0xb4,0x3b,0xa1,0xa7,0x72,0xbb,0xf3,0x61,0xc5,0x3b,0x94,0x08,0xdd, - 0x0c,0x75,0x62,0xe3,0x81,0xf4,0xe2,0x8b,0xdd,0x20,0x20,0xc0,0xff,0xbd,0x8c,0x7a,0x91,0x28,0xfa,0x2d, - 0x83,0x5d,0xc9,0x4a,0x9a,0x7e,0x6b,0x82,0x2e,0xa3,0x68,0xdc,0x11,0xcf,0xb5,0x26,0x26,0x40,0xac,0x4d, - 0xe8,0x5d,0x54,0xa7,0xc3,0xea,0x78,0x03,0x0f,0x02,0x74,0xd7,0xd4,0x3d,0x1c,0x76,0xce,0xad,0x47,0xcd, - 0xe5,0x79,0x94,0x46,0x8b,0xbc,0xbd,0x60,0x43,0xa3,0x89,0x3c,0x6e,0x68,0x8b,0x1e,0xb7,0x36,0xba,0xcf, - 0xa6,0x86,0xd3,0xd6,0xe8,0xa2,0xee,0xfd,0xbe,0xd2,0xf5,0xf5,0x7b,0x0d,0x3d,0x74,0x25,0xf7,0xd0,0xdc, - 0x15,0x4b,0x73,0x56,0x5c,0x46,0x43,0xaa,0x94,0x1f,0x7b,0x7b,0x85,0x6d,0x2e,0x6b,0x7d,0xd6,0xf3,0x11, - 0xb2,0x9e,0xd7,0x45,0xe8,0xc6,0x6d,0xc1,0x14,0x18,0x02,0x0e,0xda,0x15,0x2c,0xe7,0xe9,0xdb,0x66,0xdc, - 0x57,0xab,0x54,0x6c,0x0d,0x35,0xe7,0x5f,0x1c,0xfe,0xf8,0xc5,0x21,0x8b,0x03,0x16,0x8f,0x86,0x90,0x4f, - 0x7d,0xfb,0x2f,0xca,0xe7,0x55,0x3d,0x58,0x0b,0xfe,0x3a,0x94,0x51,0x10,0x3e,0xde,0xdd,0xe5,0x24,0xc6, - 0xc8,0xb6,0x6e,0x82,0x0f,0x79,0x28,0x02,0xc0,0xfd,0x4e,0x84,0xd8,0x3e,0xc6,0x16,0x68,0x3c,0x1c,0xf5, - 0xf4,0xcb,0x42,0x26,0xd9,0x8f,0xe6,0xe8,0x0f,0xfd,0xc3,0x59,0xe7,0xe7,0x8d,0xc7,0xb4,0x31,0x4e,0xe5, - 0x48,0x2c,0x44,0x11,0xf0,0x73,0x5f,0xbe,0x82,0x25,0x14,0x19,0x09,0x9f,0xb4,0x40,0xa1,0x9d,0x60,0x11, - 0x35,0xbc,0x11,0xe3,0xda,0xcc,0xb9,0x08,0x43,0x33,0xcf,0x90,0xd7,0xac,0xab,0xa3,0x39,0xd5,0xec,0x57, - 0xf6,0x99,0x32,0x4e,0x94,0x08,0xeb,0xba,0xdb,0xdb,0x55,0xc1,0x0e,0x8d,0xf4,0x43,0xdc,0x20,0x0f,0x18, - 0x74,0x05,0x46,0xf3,0x08,0x52,0xa5,0xb7,0x08,0x95,0x75,0x51,0xcd,0x89,0x53,0xe7,0x1a,0x3a,0xb2,0x27, - 0x8c,0x33,0x4c,0x00,0x65,0xdc,0x4d,0x31,0x32,0xb9,0xd0,0x7e,0xbf,0x15,0x01,0x85,0xd3,0x2e,0x8b,0x93, - 0x1c,0x36,0x56,0x41,0x24,0x44,0xf1,0x30,0xab,0xc7,0x7b,0x7b,0x05,0x6d,0x5d,0x58,0x30,0x16,0xc7,0x86, - 0xd0,0x8e,0x73,0x1c,0xf6,0xde,0xd3,0x32,0xf0,0x3c,0xf9,0xc3,0xc0,0xa4,0x89,0x91,0x17,0x38,0x7c,0xdd, - 0xde,0xea,0x7e,0x52,0x77,0xde,0x2d,0x24,0x0b,0x37,0x9c,0x61,0xe5,0x96,0xf0,0xda,0xd3,0xf2,0xd0,0x64, - 0x3f,0xb7,0x9b,0xb5,0xfa,0xc8,0x02,0xe0,0xc0,0xa8,0xc4,0x46,0x23,0x4a,0xfb,0x12,0x2b,0x22,0x3b,0x88, - 0x14,0x36,0x4c,0x56,0x29,0x12,0x96,0x3a,0x6b,0x84,0x9b,0x9f,0xe2,0xa7,0x9e,0xd0,0xac,0xd1,0x14,0xff, - 0x04,0xc1,0x57,0x66,0x1d,0x71,0x7f,0x07,0xa3,0x6b,0x74,0xa0,0x91,0xc2,0x9d,0x07,0xaa,0x80,0xd1,0x04, - 0x4e,0x02,0xfa,0xf1,0xfb,0x4a,0x64,0xd1,0xb3,0xdd,0xdd,0xb9,0x05,0x6a,0xe2,0x5d,0xe4,0x6b,0xf8,0xac, - 0x0d,0x7d,0x5b,0x94,0x44,0x93,0xf3,0x37,0x2b,0xf7,0x0d,0xb6,0xf0,0xaa,0x13,0xd5,0xe6,0x6c,0x48,0x36, - 0x2e,0xc6,0x79,0xab,0xd0,0x24,0x8f,0xda,0x5a,0x61,0x1c,0x91,0xad,0x56,0x9a,0x5c,0x8f,0xab,0xc9,0x0f, - 0xf0,0x97,0x92,0xe4,0x08,0x32,0xe8,0xb3,0x98,0x9d,0x02,0xe6,0x2e,0xf2,0x07,0x17,0x40,0x1c,0x41,0x13, - 0x3e,0xf0,0xce,0x16,0xe7,0xbd,0x16,0xe7,0xdc,0x62,0x7f,0x12,0x4c,0xcb,0xcc,0x86,0xbb,0xf9,0x6e,0x92, - 0x29,0x7b,0x9d,0xd1,0x57,0x3c,0xed,0xd1,0xaa,0x94,0x89,0x69,0xe9,0x1f,0x04,0xb1,0x5d,0x83,0xdd,0x9f, - 0x3b,0x38,0x6e,0x28,0xea,0x4e,0xcf,0x1c,0xd7,0x6c,0xcf,0xb1,0x98,0x7d,0x6c,0xa8,0x4c,0xe3,0x82,0x4d, - 0x71,0x93,0x91,0x89,0x0b,0xce,0x3a,0xf1,0xc2,0xbf,0x65,0x97,0x45,0xa2,0xca,0x23,0x82,0x77,0x82,0xc1, - 0x51,0x9d,0x5f,0xbd,0x66,0x32,0xaa,0x62,0x72,0x6a,0x2f,0x1a,0x45,0x7b,0xa1,0x3d,0x48,0x15,0x56,0x03, - 0x59,0x81,0x84,0x5d,0x1d,0x45,0x49,0x42,0xfb,0x43,0x96,0x99,0x38,0x25,0x1d,0x70,0x4a,0x1e,0x30,0xe9, - 0xa0,0xe4,0x5a,0x13,0x13,0xb7,0x7e,0xd3,0x04,0xf6,0xf7,0x76,0x53,0xfa,0xdc,0x0a,0xe8,0xf0,0x8f,0xb1, - 0x9b,0xac,0xd8,0x30,0xb2,0x8a,0x4b,0x09,0xb5,0x61,0xca,0x1b,0xe3,0xc8,0x1a,0xc6,0x91,0xb5,0x5c,0x98, - 0xc0,0xc7,0x80,0xef,0x01,0x5f,0x83,0x22,0xe3,0x02,0x05,0xe0,0x8d,0x27,0x03,0x57,0x88,0x36,0x0e,0x28, - 0xa0,0x4d,0xc3,0x6d,0x9e,0xfd,0x58,0x33,0xd6,0x12,0xd7,0xa9,0x2e,0x11,0x5a,0x94,0x17,0xba,0x2e,0x38, - 0xde,0x36,0xcd,0x50,0x1b,0x0b,0x32,0x74,0x48,0xb0,0xb5,0x9e,0x02,0x92,0x60,0x98,0x03,0xe6,0x93,0xa8, - 0x31,0x8c,0x66,0x9a,0x85,0x9f,0xb0,0x70,0x7c,0x95,0xd5,0xbd,0x24,0xe6,0xc7,0x8c,0x68,0x08,0xe1,0x10, - 0x3a,0x05,0x32,0xd6,0x42,0xaf,0x8c,0xbb,0x04,0x53,0x8b,0xab,0x24,0xcf,0x56,0xa0,0xf0,0xa7,0xc2,0xcc, - 0xe4,0x04,0xfa,0x90,0x94,0x82,0x6f,0x1b,0xc7,0x6f,0xcb,0xdb,0xdb,0x77,0x30,0xe8,0x58,0xc9,0xe6,0x87, - 0xb8,0x42,0x9e,0x4c,0x31,0x2b,0x60,0x37,0xf9,0x41,0xc5,0xd3,0x04,0xbb,0xaf,0x62,0x5b,0x7c,0x0d,0x24, - 0x3e,0x41,0x70,0x3b,0x04,0xa6,0x75,0x11,0xc7,0x5f,0xbf,0x8f,0xdb,0x42,0x95,0xc8,0x4c,0xd2,0x7f,0xd1, - 0x77,0x09,0x02,0x6d,0xf6,0x0a,0x21,0x33,0x58,0x85,0x1f,0x42,0x03,0x81,0x7f,0xd6,0xec,0x74,0x57,0x70, - 0x80,0xec,0x8d,0x0f,0x35,0x44,0x25,0x59,0x44,0x94,0x76,0x75,0x75,0x46,0xfb,0xa3,0xa1,0xbd,0xa2,0xcb, - 0x48,0xc2,0x8e,0x45,0xcf,0x5e,0x3d,0x7e,0xf6,0xd4,0xd8,0x4a,0x0b,0x8f,0x3f,0x89,0xda,0x9a,0xc6,0x92, - 0x42,0xc9,0xdf,0x09,0x8c,0xce,0x5e,0x6f,0xce,0x1e,0xea,0x5f,0xb5,0x09,0x21,0xd0,0x2d,0xc2,0xbd,0x20, - 0xaa,0xf1,0x2c,0xa7,0x72,0xa8,0xb7,0x9c,0x98,0xe7,0x54,0xea,0xf5,0x35,0xe8,0xe2,0x33,0xdd,0x76,0x93, - 0xa2,0x71,0x7f,0x47,0xa7,0x15,0xc9,0xd2,0xce,0x7c,0x81,0xaa,0xe2,0x4a,0x92,0xa1,0xb1,0x8b,0xfd,0x0c, - 0x15,0x79,0x0b,0xff,0xb6,0x57,0xf0,0x9a,0xf8,0xf0,0xec,0x97,0x0f,0x8f,0xde,0x3d,0x7b,0xd4,0x19,0x35, - 0xa5,0x2f,0xfd,0x59,0x6a,0x66,0x87,0x63,0x6a,0x16,0x7a,0x79,0x61,0x49,0xa7,0xd0,0x16,0x50,0x13,0xf1, - 0x5d,0x2d,0x5f,0x10,0x11,0x31,0x2b,0x08,0xf7,0xc0,0xb2,0x26,0x3f,0xcf,0x05,0x39,0x2a,0xdb,0x95,0xde, - 0x1d,0x2f,0x42,0x41,0xc0,0x52,0x64,0xdc,0x0e,0x5c,0x01,0xe3,0xb2,0x95,0x6d,0x38,0xdb,0x3e,0x58,0x0f, - 0x2c,0x43,0x00,0x09,0xbf,0xf4,0xf6,0xa3,0x25,0xdd,0x38,0xf8,0x4e,0x6e,0xf6,0x8a,0x6c,0x4a,0x5c,0x5b, - 0x19,0x32,0x0c,0xd8,0x6d,0x95,0xe1,0x15,0x58,0x6e,0x01,0xb9,0x2c,0x98,0xa3,0x7e,0xa1,0xdc,0x14,0x4a, - 0x9c,0x6e,0x65,0x90,0xd6,0xb7,0x77,0xa2,0xc1,0x8f,0xa2,0x80,0xe9,0x52,0x3c,0xc0,0x05,0x25,0x63,0x60, - 0xdc,0x21,0xf6,0x48,0xb8,0x38,0xbe,0xe4,0x72,0xc6,0xde,0xb8,0x04,0xb6,0xaf,0x5b,0x43,0x90,0x31,0xec, - 0xb1,0x25,0xbd,0x10,0x4d,0xce,0x8c,0x9e,0x83,0x65,0x84,0xe5,0x4b,0x65,0xc8,0x39,0xaf,0x92,0xcb,0x3a, - 0x8c,0x12,0xcf,0x8a,0xf0,0x45,0x9a,0x37,0x1b,0xa4,0x84,0x93,0xb7,0x10,0x36,0xbd,0x62,0xfd,0x11,0x11, - 0xff,0x63,0x83,0x75,0xd8,0x32,0x19,0xc2,0xa0,0x13,0x8e,0x1b,0x5b,0x60,0xcc,0x5c,0x89,0x26,0xb2,0x98, - 0x25,0x94,0x71,0x93,0xbd,0x05,0x0a,0x78,0xd5,0xb2,0x04,0x51,0xc1,0x35,0xab,0x80,0x01,0xa6,0xbe,0xe4, - 0x82,0x03,0x77,0x10,0x88,0xd5,0x97,0x6a,0x70,0xea,0xfb,0x82,0x59,0x13,0x2e,0xeb,0xb7,0xed,0x86,0x93, - 0x5c,0xcc,0x76,0x59,0x81,0xc3,0x46,0x6b,0xcc,0xc2,0x2f,0x08,0xb7,0xcb,0x25,0x0f,0xd4,0xfe,0x45,0x56, - 0xec,0x1d,0xae,0x03,0xb2,0x89,0x51,0xe7,0xf6,0xa1,0xa8,0x42,0x57,0xf8,0x33,0x67,0x0b,0x71,0x62,0xc9, - 0x96,0xf4,0x7f,0x46,0xff,0xad,0x43,0xe6,0x80,0x10,0x05,0x9b,0x8b,0x4d,0x72,0xdb,0x30,0x2e,0x16,0x9d, - 0x88,0x4d,0xf2,0xc5,0xd7,0x62,0xdb,0xfd,0xf5,0x03,0x1a,0xb2,0xc8,0x47,0xb7,0x0f,0xfd,0x9e,0x9c,0x26, - 0x5f,0x7c,0xd9,0x2b,0x30,0xed,0x14,0x58,0x25,0x5f,0xff,0xbd,0x57,0x60,0xd5,0x29,0x30,0x4f,0xbe,0xfc, - 0xaf,0x5e,0x81,0x79,0xa7,0xc0,0xe1,0x83,0x2f,0xc1,0x31,0xde,0xde,0xd2,0x03,0x6f,0xe6,0xb0,0x8b,0x7b, - 0x87,0xc9,0x70,0xc6,0x3e,0x32,0xce,0x6e,0x6f,0x97,0xc4,0x5f,0x25,0x37,0xcd,0x55,0x61,0x3c,0x06,0xa6, - 0x39,0xd5,0xfa,0xc5,0x97,0x29,0x0c,0x0f,0xc4,0x68,0x76,0x2c,0x49,0x5f,0xa7,0x4d,0x2f,0xe9,0xeb,0xbf, - 0xa7,0xab,0x5e,0xd2,0x97,0x07,0xe9,0x6c,0x6f,0xaf,0x93,0x72,0x98,0xce,0xf6,0xf7,0x3b,0x9f,0x1d,0xa6, - 0xcb,0x6e,0x99,0xaf,0xbf,0x48,0x97,0xdd,0x32,0x87,0x0f,0xbe,0x48,0xcf,0xba,0x85,0x0e,0x1f,0x7c,0x95, - 0x9e,0xed,0xef,0x83,0x32,0x93,0x09,0xf1,0x7b,0xee,0x32,0xa3,0xe1,0xa8,0x85,0x61,0xb9,0xc6,0x97,0x1c, - 0x5e,0x52,0x9c,0x5f,0xe2,0x85,0x19,0x37,0x8d,0xf9,0x12,0x62,0x95,0xfd,0xfd,0x64,0xbc,0xd8,0xdd,0x3d, - 0x31,0x31,0x7c,0x17,0x09,0x6b,0x08,0x60,0xe8,0x2f,0x02,0x57,0x67,0x3f,0x52,0x4d,0x62,0x86,0x22,0x66, - 0xd9,0xed,0xa5,0xd1,0x1e,0xc4,0x52,0x2d,0x2a,0x96,0xa0,0xfc,0x60,0xc1,0x14,0x6e,0xf2,0x17,0xe0,0x72, - 0x70,0x09,0x88,0x87,0xaf,0x3c,0x84,0xaf,0x2a,0x1b,0xa0,0xf7,0x33,0x2f,0xb9,0x8b,0xe2,0x48,0x04,0x9c, - 0x0f,0xed,0xbd,0x24,0xf7,0x4e,0x28,0xf5,0x1e,0x11,0x27,0xf7,0xa2,0x24,0xbe,0xc7,0x51,0xe8,0xa3,0x71, - 0x37,0xcb,0xf5,0xa5,0x4c,0x7c,0x29,0x15,0xb9,0x8c,0x92,0x60,0x63,0x0d,0xd9,0x72,0x28,0xf1,0xab,0x02, - 0xc7,0x3b,0xde,0x7c,0x5d,0x27,0xe7,0xe8,0xe8,0xa7,0x15,0x22,0xac,0xb1,0x49,0x54,0x7d,0xcc,0x81,0x81, - 0x03,0xaa,0xf4,0x5f,0x7d,0x31,0x4a,0x3b,0x5a,0xe4,0xcb,0xae,0xe9,0x89,0x0f,0x03,0xb4,0xde,0xb4,0x2e, - 0x0f,0x0a,0xac,0x93,0xf4,0x28,0xb0,0x26,0xfa,0xa7,0x3b,0xeb,0xe3,0xd6,0x69,0xe7,0x6d,0x80,0x10,0x8f, - 0x0d,0x6e,0xf8,0x0e,0x0f,0xad,0x4c,0xac,0x39,0xbe,0x81,0x8d,0xaf,0x2e,0xcd,0x42,0x5f,0x22,0x8e,0xb0, - 0x6f,0x2b,0xeb,0x5b,0x80,0xfe,0xa7,0x95,0x69,0xed,0xad,0x04,0xb9,0x86,0x57,0xf9,0x52,0xe2,0x10,0x99, - 0x77,0x1c,0x6d,0x77,0x54,0x18,0x78,0xe0,0x69,0x4f,0xd3,0x42,0x13,0x0a,0xfc,0xce,0x7a,0x6d,0xeb,0xa1, - 0xea,0xe3,0x0c,0xd5,0xce,0x2d,0x56,0x67,0xd1,0x36,0x5c,0x76,0x08,0xd9,0xc3,0xa4,0x32,0x2c,0xc2,0x0e, - 0xb4,0x94,0xff,0x7f,0x4d,0xbe,0xf1,0x9f,0x0d,0x8b,0x58,0x97,0x5a,0x2a,0xb5,0xcb,0xa5,0x08,0x27,0xc3, - 0x37,0x5c,0x8e,0x7d,0x18,0x96,0x14,0xe7,0x17,0xed,0x24,0xa6,0x7c,0x43,0x24,0x2f,0x74,0xb9,0x8a,0x94, - 0xab,0x80,0xf3,0x93,0xb4,0x1e,0x2d,0x8a,0xd9,0x6c,0x2e,0x21,0x68,0xa2,0x45,0xb5,0x6a,0xf4,0x6a,0x19, - 0x59,0x83,0xdf,0x71,0x6d,0xd4,0xd4,0x13,0xdf,0xb2,0x24,0xb0,0xfd,0xba,0x3c,0x32,0x09,0x20,0x8b,0x10, - 0x26,0xb0,0x5a,0x3c,0x45,0x31,0xed,0x0b,0x68,0x97,0x65,0x2c,0xf7,0x6c,0x60,0xc1,0xf5,0x18,0x17,0xb5, - 0x5e,0x42,0x76,0xd6,0x04,0x9c,0x8b,0xb9,0xd6,0x7d,0x9a,0xe1,0x52,0x9e,0xf1,0x86,0xee,0xaf,0x98,0x4c, - 0xdd,0xcd,0xe2,0x8d,0x73,0xd3,0x6b,0xe4,0x22,0x9f,0x6c,0x4a,0xf9,0x47,0x8d,0x9a,0x1e,0xa7,0x47,0x53, - 0xd5,0x1c,0xa7,0xcd,0x20,0x08,0xd4,0x0e,0x04,0x84,0x42,0x2a,0xf8,0x06,0x07,0xf6,0xa6,0xba,0xbd,0x95, - 0x97,0xcb,0x7d,0x8e,0xcd,0x82,0x24,0xde,0xc9,0x1c,0x83,0xd7,0x86,0xd1,0xc4,0x41,0x27,0x2a,0x0c,0xf1, - 0x82,0xb1,0x84,0x4c,0xa1,0x5d,0x1c,0x36,0xf9,0xa0,0xb0,0x1f,0xf4,0x42,0xdd,0x16,0xe1,0xa9,0x59,0x74, - 0x7b,0xe3,0xbf,0x66,0xc9,0x4c,0x00,0xa2,0x61,0x24,0x9c,0x00,0x56,0x8d,0xd5,0x7e,0xd1,0xb7,0xda,0x87, - 0x6e,0x09,0x4e,0x11,0x7c,0xa5,0x0a,0x02,0x85,0xde,0x14,0x36,0x76,0x56,0x85,0xd8,0x59,0xe2,0x62,0x61, - 0xd9,0x35,0xe7,0xc7,0xd8,0x69,0x32,0xb4,0xe2,0xaf,0x7a,0xb3,0x26,0x56,0xfa,0x45,0x16,0xed,0xec,0x5c, - 0x12,0x32,0x63,0x04,0x0a,0xc2,0x21,0x8b,0x62,0x23,0x2e,0xa4,0x8c,0x2d,0x6a,0x79,0xeb,0x9e,0x8c,0xfc, - 0xde,0x04,0x29,0x16,0xd1,0xe2,0x39,0x81,0xac,0x74,0x24,0xce,0x0e,0xf2,0xe9,0x09,0xf1,0x9d,0x7b,0x05, - 0xd0,0xa3,0xe1,0x27,0xb3,0x1c,0xd4,0x63,0x81,0x80,0xf5,0x6c,0x74,0x63,0xc1,0x87,0x70,0x2c,0x78,0xbd, - 0x84,0xb8,0xf3,0x4f,0x4b,0x5c,0x37,0x48,0x5d,0x4c,0xef,0x19,0x1c,0x7b,0x4f,0x59,0xd3,0x1c,0x1f,0xda, - 0x64,0x2b,0x46,0x83,0x5b,0x37,0xd1,0x5e,0xb5,0x17,0xad,0xa3,0x60,0x01,0x72,0x1d,0xa2,0xf1,0x10,0xb9, - 0xd1,0x14,0xfe,0x58,0xfb,0x00,0x86,0xc1,0x65,0x56,0x47,0x51,0xf2,0xf0,0x00,0x52,0x47,0xdc,0xce,0xf5, - 0xc2,0xa6,0x1e,0x53,0xea,0x8f,0xb5,0x8b,0xd2,0x1b,0xff,0xc1,0x1f,0x87,0x25,0xc0,0x53,0x7f,0xb3,0x7f, - 0x38,0xb9,0xa1,0x5e,0xa7,0xfe,0xfc,0xf9,0x83,0x28,0x36,0x62,0xc5,0x79,0x00,0x36,0xf5,0x8f,0x9a,0x30, - 0x3e,0x06,0xb3,0x4e,0xa5,0x34,0x97,0xe0,0x38,0x4d,0x4c,0xf8,0x7c,0x07,0x92,0x95,0x5a,0xf8,0xb9,0xce, - 0x7e,0x87,0x88,0x60,0x9b,0x9d,0xed,0x92,0x95,0x8e,0x7f,0xaa,0x33,0x84,0x1f,0x4e,0x26,0x73,0x3c,0x27, - 0xe9,0xd7,0x60,0x69,0x7f,0xaa,0x43,0x31,0x95,0x95,0x3f,0x8b,0x87,0x24,0x55,0xf1,0x47,0x6d,0x2b,0xe0, - 0xc0,0xb2,0x7c,0x0f,0xd7,0x0a,0x7e,0xdf,0x09,0x07,0x35,0x74,0xe4,0x0b,0xd7,0x05,0x01,0xe4,0xde,0x9e, - 0xfa,0xfa,0x0b,0xf3,0xbc,0xbf,0xcf,0xa6,0x76,0x34,0x87,0xbf,0x73,0x4d,0x02,0x5a,0x6b,0x34,0x6e,0x63, - 0x9e,0x77,0xc7,0xfb,0xb3,0x19,0xaf,0x4d,0xf9,0x99,0xc6,0xaa,0x7e,0xaf,0xa1,0x6e,0xf4,0x9a,0x64,0xe3, - 0xde,0xc9,0xbe,0x11,0x13,0x73,0xa3,0x4d,0x1a,0xed,0x10,0x5d,0x1a,0xe3,0x0e,0x45,0xaa,0xd1,0xdc,0xd9, - 0x85,0x02,0xf2,0xc8,0x10,0x11,0x38,0xa1,0x6a,0x6f,0x3f,0xfc,0x5d,0x1d,0x12,0x54,0x7b,0x7b,0x7f,0x84, - 0xa6,0xef,0xd3,0xa0,0xe0,0x1f,0xf5,0x37,0xd9,0x8f,0x01,0xdc,0xaf,0xc2,0xa8,0xe1,0x4c,0x1e,0xb6,0xb7, - 0xb7,0x4c,0x47,0x06,0x42,0x6c,0x9e,0xa4,0xd0,0xd9,0x50,0x66,0x93,0x1d,0x68,0x79,0x2d,0xe0,0x97,0x31, - 0x4e,0xc6,0x81,0x63,0x9e,0x0e,0xa5,0x22,0x1a,0x91,0x2a,0x74,0x32,0x3a,0xc1,0x75,0x91,0x1f,0xf2,0x06, - 0x86,0x3d,0x95,0x7f,0x0b,0xa5,0x66,0x17,0xde,0xc3,0x33,0xab,0xee,0x88,0x27,0x61,0x7a,0x7b,0xc1,0x7e, - 0x95,0x74,0x36,0xf3,0x5d,0x8c,0xdd,0x1b,0x5f,0xfc,0x46,0xfe,0xbe,0xee,0x87,0xa3,0xdd,0x2a,0x62,0x7f, - 0x3d,0xe0,0x70,0x13,0xbb,0xbb,0x4b,0xde,0x98,0xe2,0xc3,0xb6,0x46,0x08,0x63,0xc4,0x25,0x50,0xdf,0xd7, - 0x9b,0x3c,0x22,0x5a,0xfb,0xa9,0x9c,0xdc,0x98,0x73,0x10,0x96,0x3a,0x72,0x96,0x21,0xac,0x9c,0xc1,0xf7, - 0x01,0x25,0xb3,0xd4,0x5e,0x67,0x15,0xd3,0xa9,0xfa,0x7d,0x9d,0x0c,0x72,0xa6,0x88,0x68,0x15,0xcc,0x57, - 0xd7,0x19,0x60,0xa6,0x63,0x1b,0x95,0x6a,0xdb,0x09,0x6c,0x2a,0xb0,0xf9,0xdb,0x4e,0x5c,0x83,0x5b,0x00, - 0x1c,0x0f,0x6a,0x52,0x18,0xa9,0x55,0x59,0x19,0xbe,0x8f,0xbf,0xaf,0x0d,0x93,0xda,0x43,0x0e,0xd4,0xd1, - 0xa3,0x53,0xe8,0x81,0x0c,0xee,0x78,0x5b,0x4e,0x22,0x73,0xfd,0x75,0x6a,0xad,0x13,0x39,0x48,0xb4,0xf7, - 0x05,0xe0,0x0f,0x38,0xdc,0x33,0xfb,0x99,0xfb,0xab,0xc7,0x29,0x79,0x8d,0xfa,0xae,0x0a,0x89,0x81,0x30, - 0x92,0x8a,0x3a,0x9f,0x5e,0xe1,0x53,0x93,0xd1,0xfb,0x1c,0x9f,0xad,0xc1,0xe3,0x7c,0xcf,0x2a,0xfa,0x33, - 0xad,0x96,0x5a,0xd5,0x5e,0x66,0xfc,0xbd,0x0b,0x09,0x10,0x38,0x1c,0x0e,0xcd,0x91,0x75,0xb8,0xe9,0xcc, - 0x94,0x4b,0x0c,0x45,0xec,0x32,0x25,0x4d,0xd6,0xfb,0xb0,0x2b,0xdd,0x0a,0x53,0xef,0x12,0x70,0x39,0x1f, - 0x9f,0x8e,0x8c,0xab,0x10,0x39,0x2b,0x44,0x51,0x85,0x89,0x58,0x57,0x1c,0x67,0x51,0x14,0xe4,0xae,0xcc, - 0x2d,0x83,0x28,0xa1,0xf8,0xae,0x68,0x7b,0x77,0xb3,0x71,0x4f,0x2a,0x4a,0x02,0x94,0xef,0x3e,0xbc,0x7a, - 0xc9,0x09,0x5c,0xba,0x1e,0x0e,0x81,0x1b,0x98,0x40,0x55,0x54,0xb6,0x41,0x9b,0x98,0xbc,0xa2,0x5c,0xe9, - 0x31,0x70,0x5e,0x2e,0x45,0x5f,0xc3,0x49,0xcb,0x89,0x9a,0x73,0x03,0x98,0x4f,0x90,0x15,0x87,0x45,0x60, - 0x7e,0xc4,0xd7,0x1a,0x8b,0x94,0x4d,0x9a,0xcf,0x47,0x27,0xfc,0x9a,0x55,0xc6,0x8a,0xb1,0x85,0x70,0x2d, - 0x8a,0x6c,0xc4,0xfb,0x2a,0x19,0x2f,0xb3,0xb9,0xda,0x8e,0xcf,0xb2,0x3c,0x11,0x69,0x43,0x43,0xe9,0xb0, - 0xce,0x7e,0xf3,0xf6,0xc3,0x8b,0x37,0xaf,0x51,0xcf,0x99,0x15,0xff,0x10,0x43,0x38,0xc0,0x86,0x10,0x6e, - 0x60,0x07,0x73,0x7f,0x31,0x96,0x38,0x4a,0x1b,0x3d,0x1c,0x5f,0x73,0xe0,0xe2,0x0c,0x05,0xc7,0x7f,0xeb, - 0xc4,0x84,0x7a,0x1d,0x9f,0xa9,0x65,0xd2,0xa9,0x3e,0x50,0xc4,0x89,0x2a,0x41,0x54,0xd8,0xaf,0x2c,0xd9, - 0x26,0xe6,0x6b,0x45,0x62,0x4c,0x5a,0xe6,0xf9,0x1f,0xd7,0x3e,0x98,0xb7,0x58,0xb9,0xf0,0x29,0x6f,0x09, - 0xa2,0xa9,0xb8,0xaa,0x4d,0x4d,0xd0,0xb7,0x82,0xa9,0x02,0x6f,0x7b,0x2f,0x34,0x02,0x7b,0x18,0xcb,0xa3, - 0xed,0x28,0x48,0xc6,0x52,0xfa,0xc7,0x20,0x21,0xbd,0xc9,0xe6,0xc6,0xfe,0x86,0x41,0xa4,0x92,0x5b,0x00, - 0xa9,0x4c,0xe0,0xd7,0xa9,0xfd,0x99,0xb7,0xd0,0xac,0x92,0xbe,0x9e,0xfb,0x48,0xc3,0x56,0x45,0xfd,0x1e, - 0xa9,0x93,0xcb,0xb8,0xf3,0xce,0xb1,0x13,0x02,0x6f,0x46,0xfd,0x39,0x85,0xf2,0xe2,0x0e,0xed,0xec,0xc7, - 0xa2,0x17,0xbb,0xe4,0x5c,0x77,0x65,0x60,0x2c,0x30,0xaa,0x7a,0xb2,0xaf,0x22,0xec,0x47,0x22,0xba,0xb0, - 0xc6,0x3d,0x57,0x1b,0xb9,0x95,0xc9,0x4d,0x82,0x88,0x3f,0x66,0x9f,0xae,0xb2,0x4e,0x71,0x35,0x87,0x41, - 0x6a,0x55,0x2f,0xf8,0x3a,0xf9,0x19,0xa7,0x41,0x41,0xd0,0xc8,0x03,0xed,0xc3,0xb3,0x6c,0x75,0x7b,0x3b, - 0x57,0x4b,0xcc,0x97,0xd9,0xa8,0x52,0x39,0x6f,0x65,0x93,0xd2,0xab,0x21,0x83,0x11,0xbc,0xd9,0xe1,0xe2, - 0x37,0xb5,0x4c,0xd2,0xe5,0x58,0x0c,0x5b,0xbb,0xd0,0x1a,0x6a,0xdb,0x99,0x8e,0x6c,0xc7,0x03,0x02,0xb6, - 0xff,0x48,0xf0,0x76,0xe9,0x34,0xa1,0x09,0xec,0x5b,0xd8,0x59,0x4c,0x92,0xdb,0x7e,0xb2,0x77,0x5c,0x86, - 0xa5,0x6d,0x35,0xb2,0xf1,0xd7,0xaa,0x4e,0x6d,0x55,0xff,0x33,0xaf,0xd2,0xaf,0xa5,0x0e,0x0e,0x8d,0x79, - 0x46,0x48,0x6a,0x06,0x9b,0xc6,0xdd,0xdd,0xf7,0xb0,0x44,0x6c,0x94,0xc5,0x52,0x9c,0x3d,0x4b,0xe2,0x3c, - 0xe3,0x7c,0x02,0xde,0x33,0xfa,0x75,0xc5,0x4c,0xac,0x13,0x60,0x80,0x3c,0x64,0x09,0xae,0x75,0xe8,0x95, - 0xc6,0x91,0x42,0x8d,0x1c,0x43,0x22,0x70,0xb0,0x30,0x8e,0x4d,0x08,0x03,0xa1,0xc3,0x56,0xc4,0x94,0xa5, - 0x36,0x76,0x2d,0xf7,0x7f,0x6d,0xf6,0xee,0x27,0xee,0x12,0xa7,0x01,0x8f,0xf0,0xa0,0x1e,0x0e,0xae,0x85, - 0xc0,0x62,0xe9,0x66,0x62,0x18,0x64,0x17,0x1a,0x96,0x98,0x9d,0xc8,0x37,0x44,0x83,0x89,0xb1,0xbe,0xdc, - 0xc2,0xcd,0x8f,0x41,0xa7,0x58,0x23,0x13,0xb1,0x92,0xbc,0x1d,0x96,0x29,0xc6,0x25,0x71,0x59,0x76,0x80, - 0x61,0xec,0xfd,0xff,0xdf,0x67,0x41,0x90,0xf9,0xe6,0x44,0xb8,0x74,0x15,0xa6,0xca,0x21,0x00,0x26,0xa0, - 0x2f,0xc2,0xb7,0x53,0x22,0x53,0xe7,0x65,0xcd,0x7f,0x69,0xfa,0x60,0x7d,0x62,0xa7,0x2d,0x98,0xca,0x1a, - 0xb6,0x60,0x63,0x78,0x47,0xbb,0xdb,0xa6,0x6a,0x85,0xe1,0x02,0xc4,0x2d,0x9a,0x84,0x52,0x62,0x70,0x8e, - 0xf9,0x1e,0x8d,0xbb,0xba,0x19,0xcc,0xf9,0xa9,0x36,0xa4,0x8d,0xb1,0x00,0xd9,0xb8,0xb5,0xc5,0x22,0x51, - 0x77,0x1d,0x30,0xb3,0xc0,0x34,0x2d,0x90,0x1a,0xe3,0x26,0x8b,0x67,0x45,0xdc,0x1a,0xab,0xad,0xe8,0x32, - 0x42,0x00,0xcc,0x98,0x95,0xc5,0xda,0xa0,0xf0,0x01,0xdc,0xf8,0x8c,0x71,0xe3,0x06,0x79,0x72,0xc5,0x7d, - 0x79,0x57,0x84,0x0e,0x34,0xef,0x50,0x34,0x14,0xc4,0xec,0xe8,0xae,0xf5,0xc8,0xa6,0xcc,0x9b,0xa5,0x10, - 0x9b,0xc9,0x1c,0x17,0xa8,0x0c,0x2c,0xbf,0x00,0xa1,0x70,0x20,0x81,0x3c,0x81,0x56,0xda,0xec,0xc1,0xd0, - 0xbf,0xd4,0x34,0x35,0x54,0xdb,0xee,0xee,0x7c,0xb0,0x15,0x04,0xe0,0x36,0x70,0x1c,0x38,0x9d,0xf6,0x38, - 0xe9,0x27,0x52,0x40,0xe1,0x18,0x30,0x26,0x17,0xb5,0x75,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd, - 0xe7,0x82,0x93,0x2a,0xd8,0xd0,0x2b,0x4d,0x06,0xc3,0x8b,0x97,0xc5,0xe4,0x75,0x91,0xbe,0x2a,0x08,0xe3, - 0xf7,0x7c,0xd0,0x86,0x15,0x3b,0x8d,0x9a,0xc3,0x6e,0x9d,0xfd,0xcd,0xba,0x3a,0x22,0x09,0x87,0x21,0xbc, - 0xdd,0xde,0xde,0xf4,0x1b,0x68,0x16,0xe1,0x6e,0x36,0x1e,0x76,0x6a,0x9a,0x3e,0x34,0xf9,0x0a,0xd7,0x34, - 0xab,0x01,0x25,0x11,0x9a,0x0a,0x9c,0x5e,0xc3,0x25,0x23,0x68,0x37,0xb7,0xea,0x52,0x93,0x4f,0x4c,0x00, - 0x0f,0x3e,0x4b,0x24,0xe6,0x44,0x7d,0xf4,0xb4,0xd8,0x8b,0x9e,0xc2,0xd1,0x2a,0x3a,0x76,0x26,0x7b,0xb0, - 0x8a,0xaa,0x6c,0xde,0xaa,0x96,0xab,0xae,0xbb,0xd9,0x79,0xf6,0x48,0x73,0x28,0x59,0x28,0x61,0x8f,0xde, - 0xde,0x51,0xc9,0xd4,0xe6,0x0d,0x57,0xb2,0x42,0x25,0x30,0x76,0xa5,0x39,0x3a,0x80,0xfa,0xc1,0xdf,0x06, - 0xcc,0x13,0x9e,0xb3,0x09,0x7a,0x49,0x8f,0x54,0x20,0xa7,0x02,0xd6,0xd6,0x9d,0x28,0x06,0x58,0x60,0x17, - 0x93,0x95,0x29,0xf1,0x1c,0x25,0x56,0x54,0x62,0xea,0x4a,0x9c,0x65,0x94,0x1e,0xcf,0x7d,0xd4,0xf6,0x1c, - 0xb4,0xef,0x37,0x07,0x54,0xeb,0x6a,0xf2,0xb2,0x48,0x9f,0x17,0xcc,0xed,0x27,0x93,0x52,0x1a,0xb3,0x75, - 0xa7,0xb6,0x8a,0xf4,0x40,0x99,0xe0,0xcd,0xca,0x40,0x4b,0x3a,0x57,0x0e,0x56,0xd2,0x33,0x5c,0xc9,0xfc, - 0xc1,0x5e,0x1d,0x98,0x4a,0x2d,0xbb,0xbb,0x8f,0x8d,0x2c,0x5d,0x66,0xcf,0x46,0x02,0x89,0x8e,0x43,0x34, - 0xf0,0x48,0xfb,0x43,0x7a,0x6c,0x31,0xdd,0x43,0x17,0x6f,0x31,0x69,0x33,0x17,0x82,0xdb,0xf3,0xeb,0x76, - 0x1c,0x9d,0xcb,0xc5,0xba,0x12,0xe5,0xd0,0xbb,0xfc,0x3d,0x10,0xea,0xde,0x7b,0x2d,0x81,0xaa,0xd6,0xe1, - 0x4e,0x7b,0x1f,0x92,0x58,0x87,0xfa,0x8b,0xbf,0x99,0xeb,0x6a,0xbd,0x00,0x61,0xff,0x30,0x2c,0xff,0x21, - 0xa0,0xa5,0x40,0x42,0x11,0xbd,0x03,0xb7,0x2e,0xdc,0x13,0x94,0x13,0x71,0x7e,0xca,0xce,0x14,0xee,0xcd, - 0x5c,0xdb,0x39,0x97,0xc8,0x7b,0x3e,0x3d,0xb6,0x32,0xd0,0xec,0x54,0x5b,0x6e,0xc8,0x6f,0xe8,0xc4,0xf9, - 0x6a,0xb1,0xcd,0x25,0x7d,0x46,0x10,0xae,0x6b,0xae,0xfc,0x90,0xa3,0x8a,0x81,0x20,0xc1,0x8d,0x77,0x9e, - 0xb6,0x41,0x44,0x32,0x42,0x8c,0x0a,0xfe,0xb3,0xbc,0xb1,0x09,0x48,0x46,0xf2,0x19,0xab,0xf2,0xce,0xec, - 0xeb,0x87,0x4a,0x12,0x96,0x36,0xe1,0x11,0xd3,0xec,0x92,0x08,0x0f,0x61,0x9a,0x52,0x9d,0x9b,0xaf,0x2e, - 0xdc,0xbb,0xfd,0xec,0xd2,0xa5,0x84,0xdf,0x2d,0x28,0xf5,0x54,0xc3,0xae,0xfc,0x19,0xaa,0x54,0xe7,0xb6, - 0x72,0x75,0x8d,0xf2,0xb8,0x06,0x5e,0x32,0x4e,0x5c,0xaf,0xec,0xc4,0xa8,0x2b,0xf7,0xed,0x23,0xae,0x57, - 0xed,0xb8,0x26,0xd4,0x27,0xfb,0xb5,0xc9,0xfa,0xe8,0xfb,0xe7,0xbe,0x7f,0x42,0x69,0x33,0xb3,0xa7,0xd4, - 0xa3,0xec,0xaa,0x56,0xef,0xe9,0x8f,0x31,0xf0,0x1f,0xbf,0x27,0x0a,0xc8,0x91,0x5c,0x8f,0xb2,0xf8,0x7d, - 0x66,0x5f,0x13,0xcb,0xb1,0xf2,0x4a,0x7c,0xc8,0xb6,0x1f,0x05,0x41,0x98,0x88,0x23,0x65,0xeb,0xff,0xaa, - 0x02,0x1d,0x88,0xf8,0xc2,0x58,0x92,0x0f,0xb7,0xb7,0x3b,0x38,0x3c,0x69,0x0d,0x76,0x04,0x04,0xde,0x64, - 0x1f,0x76,0x77,0x67,0x93,0x19,0xed,0x86,0xdf,0xf0,0x78,0x39,0xb9,0x4c,0x97,0xea,0x19,0x1e,0x2f,0x26, - 0x17,0xb4,0x2f,0x5e,0x64,0x1f,0x26,0x57,0xb7,0xb7,0x8b,0x74,0xa1,0x5e,0x22,0x75,0xc0,0x7f,0x66,0x67, - 0xb2,0x93,0x9e,0xab,0xe7,0x54,0xf0,0xd3,0xed,0xed,0x75,0x7a,0xad,0x9e,0xd2,0xe3,0xc7,0xdb,0xdb,0x93, - 0xf4,0x44,0xbd,0x26,0xbe,0xa5,0x88,0x9f,0x24,0x93,0x27,0x32,0x6d,0xe9,0x93,0x44,0xbd,0xcd,0xf8,0x20, - 0x6c,0x58,0x61,0xaf,0x5e,0x65,0xcf,0x74,0xfc,0x32,0x51,0xef,0x32,0x0f,0x27,0xa1,0xa7,0x6e,0x72,0xf3, - 0x96,0x40,0xf2,0x13,0x24,0xb1,0xcf,0x12,0xc5,0xbf,0xbf,0xd1,0x51,0xf9,0xce,0x83,0xe6,0x24,0xa6,0x12, - 0x9c,0xf1,0x26,0x51,0x4f,0x77,0x77,0x9f,0xb2,0xa5,0xc5,0xf3,0xdd,0xdd,0xe7,0xf0,0x67,0x08,0x6a,0x35, - 0x81,0xdb,0x0d,0xbc,0x36,0x17,0x15,0x0d,0xec,0x07,0xda,0x0e,0xde,0x44,0xca,0x37,0x6a,0x85,0x46,0x32, - 0xd7,0xe0,0x53,0x95,0x09,0xad,0x7c,0x82,0xb0,0x47,0xcc,0x6a,0xfa,0xe7,0x23,0x16,0xac,0x1d,0x8f,0xf9, - 0x12,0x53,0x31,0x4c,0x2c,0xc5,0x30,0x51,0x63,0x87,0xb9,0x7d,0xd3,0x7f,0x8f,0x13,0xf5,0x72,0x77,0xf7, - 0x25,0x75,0xfd,0x1d,0xcc,0xa6,0x5e,0xec,0xee,0xbe,0x40,0x9f,0x31,0xe2,0x1d,0x33,0xa0,0x1d,0x19,0xb1, - 0xba,0xd2,0xe1,0x9c,0xec,0x84,0xf3,0xf1,0xa6,0x33,0x1d,0xb7,0xb7,0xaf,0xe8,0x1c,0xff,0x4d,0xc7,0xaf, - 0x93,0x49,0x70,0x0a,0xbd,0x53,0xaf,0x93,0xf4,0x23,0x8a,0xaf,0xa8,0x31,0x20,0x11,0x15,0x4c,0x84,0x58, - 0xe5,0xd6,0x61,0x7f,0xa8,0x1b,0x5c,0xd5,0xbb,0xb8,0xeb,0x01,0x66,0x10,0x88,0x17,0x76,0x53,0x77,0x3e, - 0x86,0xcd,0xc7,0x9d,0x09,0x8e,0x89,0xf3,0xf4,0x93,0xe8,0x66,0x0c,0xba,0xee,0xa1,0x74,0xf1,0x47,0x95, - 0xe9,0xcc,0xca,0x44,0x5d,0x10,0x20,0x22,0xd0,0xea,0x95,0x4c,0x49,0x0e,0x0f,0x0b,0xfe,0x9d,0x0d,0x4c, - 0x49,0x4e,0x3c,0x14,0xa6,0x84,0x4b,0x75,0xfa,0xb4,0x23,0x53,0xf2,0xa9,0x33,0x25,0x1f,0xd5,0x27,0x9e, - 0x92,0x5c,0xcd,0xd5,0x47,0x99,0x92,0x4b,0x50,0x66,0x39,0xbd,0xa9,0x2b,0xfe,0xe8,0x23,0xe8,0x6c,0x63, - 0x68,0x6e,0x70,0x65,0x1e,0xa2,0xb3,0xe0,0xad,0x8b,0x2b,0x7d,0xba,0xc5,0x95,0xcd,0xdd,0xb8,0x52,0xa2, - 0xc8,0xca,0x5d,0x34,0x0e,0x35,0x5a,0x06,0x4a,0xb4,0xb1,0xdb,0xdc,0xb0,0x45,0xd2,0xd6,0x49,0xa5,0x61, - 0x9c,0x39,0xcf,0x24,0x56,0x0c,0x21,0x49,0xc8,0x5b,0x72,0x8b,0xd5,0x96,0xf6,0xd5,0x22,0xbf,0x99,0x4d, - 0x08,0x71,0xdf,0x05,0x25,0x0a,0xfe,0x7a,0x89,0x2c,0xc2,0x90,0xa6,0x10,0x61,0xc5,0x46,0xb0,0x97,0x64, - 0x9c,0xbb,0xda,0x1d,0xee,0xba,0xa6,0x24,0xf6,0xec,0x96,0x12,0x27,0x78,0xb5,0xa8,0xec,0x4a,0xb6,0xf9, - 0x4a,0xb6,0xf9,0x0e,0xb6,0xf9,0x25,0xad,0x0e,0x23,0x04,0x62,0x79,0x4f,0xa4,0xae,0xf4,0x24,0x61,0xac, - 0x68,0x87,0xd6,0xdd,0xfa,0x21,0x88,0x40,0x84,0x34,0x00,0x30,0xbc,0x06,0x03,0xe9,0x0e,0x86,0x38,0x08, - 0xd8,0x95,0xe0,0x10,0x0f,0x20,0xb3,0xa4,0x03,0x21,0x93,0xf8,0x8a,0x71,0x08,0x43,0x0e,0xd5,0x79,0xce, - 0x86,0x22,0x31,0x36,0xc4,0x62,0x77,0x77,0x81,0x37,0x15,0x74,0xd2,0x60,0x92,0xeb,0xc9,0x35,0x6d,0xd7, - 0xb4,0x8a,0x43,0x82,0xe0,0xb7,0xe0,0x44,0xde,0x8c,0x4e,0x45,0xb3,0x21,0x17,0x30,0x86,0xda,0xe5,0x67, - 0x88,0x59,0xcb,0xac,0x84,0x0f,0x80,0x6c,0x42,0x6c,0xc3,0x9c,0x18,0xa1,0x92,0x83,0x00,0x52,0x13,0x2a, - 0xbe,0x11,0x08,0xa7,0x3e,0x3a,0x38,0x4e,0x11,0x06,0xc7,0x5d,0xf9,0x07,0x67,0x18,0x43,0x3f,0x7d,0x13, - 0x68,0xf4,0x5e,0x18,0x7a,0x65,0x1b,0xea,0x7b,0x1d,0x62,0x80,0x0f,0xcc,0xce,0x79,0xc7,0x11,0x47,0x7a, - 0x3f,0xb7,0x4f,0xca,0x9b,0xca,0x0d,0xd3,0xb7,0xae,0xe4,0x5a,0x1d,0x04,0x55,0x3d,0xef,0x51,0xf1,0x3a, - 0x90,0x8c,0x2d,0x56,0xf3,0xb6,0x58,0xce,0xb5,0xd0,0xeb,0xb7,0xb7,0xfd,0x91,0x05,0x91,0xd3,0xd8,0xd4, - 0x05,0xce,0x5b,0xce,0xf1,0xa6,0xef,0xbb,0x05,0x3f,0x10,0x9f,0x8b,0x2b,0x38,0x8a,0xa4,0xca,0x4e,0x88, - 0xfd,0x7b,0x0d,0x2b,0x20,0xf0,0xbb,0x0a,0x57,0x39,0xcd,0xf9,0x62,0x76,0x9a,0x80,0x8a,0xc1,0xc7,0x26, - 0x64,0x41,0x40,0xb0,0xeb,0x98,0x3f,0x09,0x22,0x08,0x83,0xeb,0x02,0x5d,0x65,0x0a,0xb3,0xa2,0x4a,0xce, - 0xb1,0x7e,0x6a,0x06,0xb7,0xbe,0x82,0xb9,0xa9,0x6e,0xfa,0x7e,0xe7,0x06,0xca,0xa7,0xba,0x7b,0x5d,0x4b, - 0xff,0x1a,0x3e,0x97,0xb5,0x7d,0x1d,0x8b,0x61,0x6d,0xe0,0x47,0x12,0x42,0x99,0x88,0x4a,0x39,0xce,0x1b, - 0x2e,0x2b,0x10,0xb5,0x9f,0x11,0x3f,0x06,0xae,0x20,0x5a,0x9c,0xa1,0x85,0x67,0xf1,0x32,0x53,0x18,0xa1, - 0x79,0x1f,0x90,0x3b,0x0a,0xf1,0x20,0x37,0xbf,0x3c,0x54,0xef,0xb4,0xcb,0x50,0x46,0x90,0x1f,0xd2,0x9b, - 0xef,0x3a,0x4c,0x67,0xdf,0xe1,0xe1,0x92,0xdd,0x1d,0x20,0x75,0x16,0xb5,0x78,0x24,0x7c,0x66,0xd1,0x4a, - 0x8e,0x56,0x84,0x49,0x39,0x76,0xd2,0x68,0x56,0x34,0x6c,0xa3,0x2c,0x19,0xa1,0xfa,0xe2,0x71,0x30,0x13, - 0xdb,0x77,0x38,0x3c,0x88,0xa4,0xaa,0xed,0x23,0xdf,0x49,0x9b,0x3e,0x66,0x7f,0x9a,0xbb,0x64,0x66,0x81, - 0xeb,0x45,0x20,0x15,0x65,0x32,0x60,0xc3,0x30,0xd6,0xae,0x22,0xce,0xf8,0x8e,0x49,0xac,0x75,0x5b,0x9f, - 0x50,0x1d,0xff,0x84,0x37,0x98,0x73,0x49,0x0c,0x85,0x9c,0xdf,0x05,0x0d,0xf0,0x15,0x98,0x3e,0x5a,0x6a, - 0x37,0x90,0x52,0xe9,0xaf,0xac,0x48,0x10,0x44,0x89,0xcd,0x9b,0xc7,0x26,0xb6,0x12,0xa1,0x3f,0x46,0x85, - 0x96,0x9f,0xec,0x79,0xf3,0x15,0xf4,0xc5,0x15,0x2e,0x07,0x39,0x66,0x7f,0xbe,0x81,0x98,0xb6,0x3f,0x79, - 0x49,0xd2,0xfd,0x5f,0x67,0xfb,0x1f,0xb5,0x5e,0xee,0xe7,0x73,0x3a,0x2c,0x76,0xcc,0xcd,0x83,0x4c,0xdf, - 0xf8,0x40,0xd9,0x71,0xe4,0x8b,0x44,0xea,0x86,0xbb,0x96,0xea,0x8d,0xd9,0xf1,0x7d,0x0e,0x81,0xf8,0x0f, - 0x03,0x6c,0x4c,0x12,0xb1,0x72,0xe0,0x94,0x6f,0xc2,0xf4,0xaf,0x6c,0x6b,0xc9,0xef,0xe6,0x34,0x75,0xf9, - 0xee,0x74,0x0d,0x4c,0xc7,0x4d,0x75,0x22,0x6e,0xd5,0x57,0x6f,0x2b,0x84,0x25,0x42,0x69,0x02,0xce,0xc7, - 0x44,0x18,0x73,0x68,0x90,0x79,0x41,0x9f,0xbe,0xc3,0x3d,0xf0,0x61,0xcc,0xfa,0x70,0x79,0xa5,0x02,0x02, - 0x71,0xe5,0x9c,0x6c,0xa4,0x36,0x73,0xb5,0xc5,0x59,0xbb,0x5f,0xf2,0x0f,0xdf,0xa1,0xd6,0x56,0x4b,0x7a, - 0xa5,0xbf,0xc0,0x60,0xf5,0xed,0x6d,0xe1,0xba,0x80,0x21,0xcc,0xac,0x06,0xb2,0x32,0x5d,0x61,0xc1,0xf0, - 0xb8,0xf2,0x17,0xd5,0x13,0x91,0xf9,0xb3,0x3e,0xfd,0x58,0xb4,0x8e,0xff,0xcc,0x22,0xce,0x44,0x40,0xbd, - 0x38,0xda,0xab,0xf7,0xa2,0xe5,0x27,0xc5,0xaa,0xfe,0xe5,0xa7,0x24,0x52,0x55,0x00,0xc0,0x96,0x17,0xcf, - 0xa2,0x83,0x26,0xd4,0xd3,0x7f,0xdf,0xd9,0x75,0x7a,0xf2,0x5b,0x95,0xbe,0xa9,0xbc,0x04,0xdf,0x4a,0xc5, - 0xca,0x8e,0x96,0xce,0x64,0x7f,0xa8,0x70,0xeb,0x6e,0x18,0x36,0xde,0x61,0x6f,0xa3,0xa0,0x66,0x46,0xfa, - 0x90,0x63,0x05,0xb4,0xca,0x19,0x57,0xa4,0x5a,0x59,0x73,0x88,0xce,0x5d,0xbe,0xfd,0x9b,0x5d,0x95,0x37, - 0x13,0x70,0xf7,0x83,0x98,0x78,0xcb,0xc6,0x35,0x12,0x8f,0x12,0x86,0xc4,0x3b,0x72,0xe9,0x44,0x09,0x64, - 0x87,0x41,0x55,0x8e,0xc2,0x0b,0x6c,0x7e,0xb1,0x07,0xdb,0xa6,0xea,0x9e,0xad,0x58,0x08,0x50,0xaf,0x21, - 0x67,0x64,0x4c,0xc6,0x61,0xce,0xe0,0x7b,0x10,0x58,0x3e,0xb5,0xe2,0x5a,0xb4,0x1d,0x1a,0x37,0x19,0x73, - 0x86,0xbb,0xaa,0xac,0xf5,0x99,0xab,0x92,0x9e,0x39,0x72,0x9a,0xf5,0x87,0xea,0x48,0x8a,0x02,0x23,0xda, - 0x71,0x29,0xa1,0x3e,0xdd,0x55,0x33,0x25,0x64,0xae,0xde,0xdd,0x08,0x22,0x4a,0x13,0xc8,0xd3,0xc5,0x8a, - 0x06,0x15,0x8a,0xbe,0xf6,0x94,0xaa,0x11,0xc2,0x5d,0x38,0x3b,0x67,0x58,0x6b,0xd3,0x3b,0xf4,0x5d,0xa6, - 0x7b,0x98,0xcf,0x28,0x90,0x4a,0xeb,0x6e,0x74,0x6f,0xfe,0x0a,0x56,0x50,0x62,0xc8,0xc3,0x61,0x0f,0x22, - 0xbe,0x05,0x8f,0xaa,0xe1,0x90,0x5b,0x08,0xa4,0x6d,0x32,0x29,0x69,0xdf,0x94,0x20,0x2a,0xc3,0x7d,0x13, - 0x26,0xcb,0x41,0xe8,0xbf,0xb5,0xd1,0x8e,0x6b,0x57,0x14,0xf8,0xdd,0x95,0xfa,0x20,0xb2,0xb3,0x7b,0x51, - 0x74,0x8f,0x0d,0xc9,0xef,0xb9,0x80,0xa5,0xf7,0x68,0x91,0x37,0x7b,0x0a,0x44,0xee,0x6a,0xa7,0x17,0x5f, - 0xab,0xe2,0x0b,0x96,0xfb,0x13,0x24,0x23,0x8e,0xed,0x64,0x14,0x8d,0xed,0xa2,0x43,0x4e,0xd4,0x45,0x65, - 0xcc,0x8f,0xa4,0x48,0x39,0x2f,0x4a,0xbd,0xef,0x5a,0x96,0xe2,0x92,0xfa,0xc1,0x24,0xb2,0x45,0x65,0xef, - 0xca,0x1b,0x82,0xe3,0x45,0x15,0x7a,0xc8,0xb4,0xd9,0x02,0x0e,0x6d,0x0c,0x90,0xd4,0xd3,0xf1,0x26,0x4c, - 0xaa,0xc0,0x7c,0x97,0x29,0x1a,0x07,0x73,0x5c,0xb1,0xa6,0x7d,0x52,0x3a,0x01,0xd8,0x58,0x3f,0x2c,0x6d, - 0xe4,0x81,0x3a,0x83,0xdf,0x92,0x96,0xcd,0xa2,0x2a,0x79,0x16,0x72,0xea,0x79,0x65,0xc4,0x55,0x46,0xea, - 0x7f,0x91,0x37,0x8f,0x0b,0x46,0x7a,0x30,0x70,0x55,0x71,0x78,0xa7,0x92,0x83,0x63,0x73,0x3f,0xd0,0x63, - 0x89,0x72,0x13,0x86,0xbd,0xf7,0xf7,0x65,0xf4,0x55,0x02,0x1c,0x05,0xd2,0x4a,0x98,0x0e,0x13,0x5c,0xf7, - 0x0d,0xc3,0x09,0x5c,0xc9,0x95,0x98,0xcb,0x21,0x2c,0x8a,0x79,0x5c,0x41,0xc3,0x43,0x0c,0xaa,0xef,0x5b, - 0x98,0xfd,0x8e,0xb3,0x69,0x18,0xdf,0x42,0xbf,0x2b,0x96,0xcc,0x12,0x95,0x14,0x07,0x86,0x18,0x1d,0x1f, - 0x28,0xa3,0x9c,0x6e,0x17,0xf3,0x48,0xe2,0x9f,0x5d,0x21,0x7e,0xa7,0x34,0x15,0x28,0xae,0x99,0x46,0x9f, - 0xd2,0xb4,0xcc,0x39,0x47,0x0a,0x81,0xde,0xbb,0x2e,0xa7,0xbb,0xbb,0x6c,0x87,0xe8,0xa3,0x5a,0x72,0xae, - 0xca,0xc1,0x10,0x47,0x3b,0x6c,0x79,0x17,0xb1,0x7d,0x37,0x74,0xf9,0x1e,0x42,0x76,0x77,0x4f,0x2b,0x77, - 0xe1,0xad,0x45,0x6f,0xc2,0x6c,0x11,0xd1,0xcd,0xa6,0x9b,0x88,0xb5,0x95,0x32,0x30,0xd6,0x61,0x40,0xd9, - 0x97,0xc3,0x03,0x7e,0x29,0x03,0x2e,0x4d,0x79,0x5a,0xfe,0xed,0xf0,0x72,0xc6,0x55,0xd6,0x99,0xbd,0xe7, - 0x32,0x7b,0x66,0x8d,0x5e,0x71,0x58,0x07,0x62,0xa8,0x56,0x47,0x87,0xc7,0xe3,0xb9,0x99,0x69,0x27,0xe7, - 0x73,0x7e,0x5d,0x7b,0x87,0x18,0xc9,0x32,0xab,0x89,0xe1,0x2b,0x88,0xbf,0xab,0x88,0xa7,0x9b,0x43,0xc6, - 0xa5,0xe2,0xf8,0x2c,0x6b,0x93,0x8e,0x8f,0x1e,0xe2,0xf4,0xb8,0xd7,0x0d,0x13,0xd1,0xa5,0x32,0x1e,0x51, - 0xe9,0xcc,0xd8,0x76,0x5e,0xc0,0xb2,0x25,0xbd,0x54,0xce,0x0c,0x31,0x5d,0xac,0x39,0xc8,0x86,0xb5,0x1d, - 0xe4,0x09,0x30,0xf3,0xd1,0x33,0xe6,0xab,0xf8,0xd6,0x9d,0x70,0x76,0xa3,0x05,0x84,0xd8,0x58,0xd5,0xfa, - 0xb3,0x53,0xbd,0xbb,0x6b,0xe6,0xda,0x7a,0x99,0x18,0xb5,0xb5,0x9a,0xa9,0x0b,0x45,0x9d,0x59,0x77,0xf8, - 0xa9,0x6f,0xfd,0x69,0xce,0x40,0x9d,0x59,0x4b,0x45,0x82,0xe4,0x28,0x19,0x32,0x5f,0xb3,0x76,0xc9,0x32, - 0xd1,0x4f,0x4d,0xc8,0x27,0xcb,0xaf,0xb0,0x12,0x97,0xbe,0xcd,0xca,0xa3,0x07,0xc7,0x46,0x7f,0x64,0x29, - 0x2e,0x5a,0x0a,0x93,0xe2,0x56,0xed,0xad,0x05,0xea,0xc2,0xd4,0xf7,0xda,0x47,0x00,0xae,0x26,0x88,0xe3, - 0x34,0x2f,0xf2,0x86,0x72,0xed,0x07,0xaf,0xe5,0x83,0x7a,0x54,0x10,0x4d,0x93,0x13,0xed,0x78,0x98,0x55, - 0xbe,0x5e,0x55,0x51,0xab,0x6c,0x81,0x61,0xb3,0x1f,0x64,0x95,0xef,0x08,0x82,0xaf,0xd8,0x1a,0x55,0xcd, - 0xd7,0xe2,0x95,0x1c,0xb3,0xa0,0xeb,0x48,0xf2,0x6f,0xa7,0x92,0x29,0xce,0x9e,0x54,0x84,0x15,0x98,0x2e, - 0x63,0x1e,0x25,0x4c,0xe0,0xd0,0xab,0xdd,0x24,0xab,0xe7,0x09,0xac,0xa1,0x43,0xa1,0xf3,0x0f,0xba,0xbb, - 0x6a,0x7c,0x6e,0xda,0xe8,0xf6,0xad,0x15,0x56,0x06,0xf6,0xce,0x7d,0x66,0x70,0x12,0xd9,0x68,0x4f,0xe9, - 0x4d,0x94,0x46,0x15,0x7e,0x7c,0xe0,0x07,0x73,0xd7,0xde,0x5e,0x06,0x83,0xbf,0x62,0xef,0x5e,0x94,0xde, - 0xdb,0x6b,0x11,0x2f,0x88,0xdd,0xca,0x61,0xf7,0xed,0xef,0x93,0x0e,0x44,0xde,0x6c,0xb8,0xe8,0xcd,0xa2, - 0x4b,0x47,0xd5,0xba,0xfb,0x49,0x9d,0x24,0x93,0xf8,0xd6,0x75,0xb4,0x19,0xb8,0xda,0x5d,0x74,0x16,0x1d, - 0xc1,0xb4,0xbc,0x2b,0x9c,0xf7,0x3a,0x51,0x73,0x1d,0x89,0xf5,0x04,0x54,0xd0,0x4c,0x1e,0x47,0xe6,0xe4, - 0xfb,0xa1,0xb2,0x44,0xb3,0x38,0x8e,0x11,0xed,0xf3,0x7d,0x2f,0x89,0x01,0xd4,0x1b,0xf5,0x5a,0x2b,0x87, - 0x88,0x08,0x3d,0xfc,0xc9,0xad,0xef,0x2a,0x8b,0x90,0x38,0x2c,0x65,0x50,0x98,0xbe,0xfd,0x37,0x87,0x08, - 0xaa,0xf6,0x32,0x7e,0x50,0xbf,0x54,0xac,0x35,0xcf,0xad,0xb1,0xaf,0x0f,0x94,0xad,0x3f,0xe5,0x12,0x2d, - 0xa5,0xb1,0x81,0xc0,0x83,0x9a,0xc6,0x54,0xc1,0xb7,0x55,0x7c,0x14,0x4d,0xdb,0x7a,0x4e,0x83,0x60,0xab, - 0x61,0xfa,0xcd,0xe7,0xf8,0xbb,0xd0,0x6d,0x1e,0x1d,0xdf,0x6d,0xd3,0xbe,0x3d,0x65,0x92,0xf1,0x0e,0x93, - 0x78,0x83,0x5e,0x47,0x11,0xcc,0xf4,0x7f,0x20,0x22,0xcc,0x4d,0xd6,0xed,0x2d,0x78,0x45,0x31,0x47,0x71, - 0x1d,0xb6,0x2e,0xc6,0xce,0x72,0x28,0x2e,0xf6,0x08,0xcb,0xc3,0xca,0xe3,0xde,0xe9,0xaa,0x6d,0xab,0xf2, - 0x1e,0xa6,0x41,0x2a,0x45,0x58,0x81,0xbd,0x9c,0x1b,0x26,0x86,0xca,0x54,0x4b,0x69,0xb4,0x08,0x4e,0xf5, - 0x47,0x07,0xfc,0x18,0xdb,0x51,0x6a,0xaa,0x82,0xb8,0x9b,0xb1,0xa9,0xe4,0x06,0xd4,0x75,0x5c,0x4e,0xcc, - 0x9a,0xec,0x45,0x36,0x23,0x4a,0xeb,0x09,0x9b,0xcf,0xda,0x8c,0xc4,0xe7,0xd8,0x05,0x64,0x48,0xb3,0x6d, - 0xdd,0xde,0xd6,0xb6,0x96,0x74,0xa8,0x19,0x57,0x51,0x08,0x9d,0x3a,0x38,0x8f,0x39,0x2c,0xcf,0x0b,0xbe, - 0xb5,0xe6,0xf0,0x20,0x09,0x63,0xf2,0xdb,0x69,0x34,0xe1,0xaf,0x89,0x70,0xa4,0xea,0x0c,0x9c,0xfd,0x52, - 0xf9,0x50,0xc9,0xd1,0xc9,0xc7,0xb8,0x5b,0x94,0x98,0x87,0x1e,0x22,0x6e,0x79,0xe3,0xf4,0x53,0x4b,0xa4, - 0xfa,0x4f,0x43,0xf3,0xd0,0xb2,0x63,0x38,0x85,0xf0,0x3e,0xff,0x44,0x04,0x60,0x6b,0xb2,0x2a,0xc1,0xe4, - 0xd2,0x08,0x26,0x86,0x1c,0x44,0xd6,0xed,0x0f,0x68,0xf1,0x27,0xb5,0xd8,0x45,0xa5,0xf7,0x4e,0xa6,0x26, - 0xb8,0xc1,0x3d,0x9e,0x36,0xd5,0x8b,0xcd,0x9c,0x96,0xfd,0x68,0xcd,0x01,0x02,0xab,0xfd,0x1e,0xb6,0x36, - 0x47,0x50,0x6f,0x30,0xc1,0x2e,0xaf,0x6f,0xeb,0x6a,0xaa,0x9b,0x46,0xcf,0xec,0xd2,0x1b,0x03,0x1a,0x89, - 0xaf,0x23,0x7e,0x04,0xdb,0xf2,0xb0,0x51,0x34,0x0f,0x8b,0xd2,0x7e,0xe3,0x92,0xf4,0xbb,0x51,0xb0,0x6b, - 0x18,0x1a,0x04,0x0b,0x41,0x69,0x76,0xa9,0x61,0x5c,0xcc,0x2e,0x00,0x0e,0x9d,0x4f,0x30,0xdb,0xc1,0x7b, - 0x4a,0x3b,0xbb,0x09,0x0a,0x3c,0xe8,0x15,0x78,0x00,0x1f,0x35,0xc7,0xae,0x85,0xdd,0x60,0x72,0xe8,0x64, - 0x1e,0x1b,0xdb,0x6f,0x4f,0xf0,0xc2,0x58,0x3b,0x47,0xd0,0xab,0x60,0xea,0xcd,0x94,0xd1,0x54,0xd3,0x5a, - 0x06,0xe3,0x2b,0xce,0x78,0x78,0xc5,0xd9,0xc6,0xe8,0x1a,0x3f,0x0d,0x9e,0x00,0xdf,0xee,0x11,0xe0,0x42, - 0xb8,0x0f,0x71,0x20,0x03,0x73,0xe4,0xed,0x0d,0x2c,0x73,0x72,0x7b,0x1b,0x50,0xfa,0x84,0x11,0x57,0xa5, - 0xd5,0xe9,0x47,0x27,0x6c,0xaf,0xbc,0x17,0xd7,0x3c,0x1f,0xb5,0xc4,0xb2,0xf3,0x81,0xd1,0xa3,0x1b,0x4c, - 0x92,0x04,0x47,0xbf,0xc3,0xfd,0xe6,0xaa,0x34,0x36,0x15,0x34,0xea,0x14,0xa5,0x45,0x08,0xd6,0x41,0xcf, - 0xeb,0x88,0x57,0xc7,0x19,0xef,0x1b,0x17,0x86,0xc8,0xee,0xa0,0x6d,0xdc,0x66,0x9a,0xd3,0x56,0x86,0xa7, - 0x38,0xe1,0x1e,0xe6,0x11,0x3c,0x06,0x41,0xd7,0x10,0x28,0x4b,0xde,0xe2,0x0a,0x36,0x49,0xb6,0x0c,0x6f, - 0xab,0x9c,0xc6,0xc2,0xd6,0xd5,0x32,0x97,0x3c,0x7e,0x99,0x78,0x1f,0x00,0x36,0x24,0x3f,0xba,0xa2,0xd1, - 0x2e,0xbb,0x31,0x41,0xbd,0xe9,0x8a,0xf5,0xc1,0x10,0x85,0xb9,0x4d,0x4e,0x3b,0xc9,0xb8,0x3d,0x4d,0x45, - 0x59,0xdc,0x99,0x35,0xd3,0xbc,0x6f,0x50,0x71,0x57,0x1c,0x9d,0x09,0x1e,0x9c,0x29,0xb6,0x89,0x8d,0x82, - 0xe6,0x16,0xa1,0xcf,0xf0,0xb8,0x1e,0xa0,0x9f,0xe8,0x41,0x99,0xa1,0xf5,0x7b,0x98,0x5c,0x5a,0xf3,0xbd, - 0x88,0x9e,0x3a,0x4d,0xc7,0x05,0xbf,0x14,0xae,0x1f,0xdd,0x4b,0x38,0xb5,0x17,0x7d,0xf8,0xeb,0x13,0x88, - 0xb7,0x29,0xb3,0x30,0xe7,0xa8,0x3a,0x66,0x9c,0xe1,0x9d,0xe4,0xcd,0x83,0x81,0x16,0x98,0xcc,0x70,0xcf, - 0x03,0x24,0xb5,0x71,0x61,0x4f,0x0f,0x2d,0x60,0xef,0xe8,0x3e,0x86,0x91,0x73,0x67,0x10,0x73,0xf9,0xed, - 0x13,0x21,0x22,0xfc,0x82,0x66,0x3c,0xde,0xfc,0xde,0x46,0xdf,0x4b,0xf6,0x1c,0x5e,0x92,0x78,0x28,0x91, - 0x12,0x4f,0x6b,0x37,0x0d,0xce,0x8b,0x22,0xc4,0x64,0x1d,0x6c,0x24,0x31,0xd8,0xff,0xd2,0xf6,0xec,0xb4, - 0x15,0x0a,0x18,0xa2,0x88,0x25,0x2c,0x46,0x67,0x5c,0x8f,0x8d,0x29,0x2f,0x64,0x0c,0x37,0xc4,0x8b,0x03, - 0xb3,0x5b,0x87,0x16,0xe7,0x68,0xeb,0xce,0xaf,0x49,0x74,0x52,0xc5,0xc1,0xc8,0xd9,0xab,0x0e,0x5d,0x7c, - 0x31,0xdb,0xdb,0xe3,0xd7,0x12,0x63,0x49,0x4d,0x81,0x75,0x17,0xd1,0x06,0xee,0x04,0x9b,0xd1,0xb7,0x3b, - 0x03,0xc2,0x40,0x3d,0x75,0x16,0x3b,0xe3,0xfe,0x40,0xab,0xe8,0xf7,0x74,0x3d,0xa9,0xe5,0xfc,0x90,0xd9, - 0x9a,0xe4,0xe6,0x38,0x31,0xc7,0x0a,0xdf,0x77,0x62,0x0d,0x2e,0xdc,0x6d,0xc8,0x04,0x20,0x27,0x44,0x81, - 0x46,0xc6,0x4e,0x41,0xdb,0xe8,0x85,0x9e,0xbe,0xd0,0x9f,0x96,0x7c,0xb8,0xe7,0xe2,0x1f,0x91,0x4c,0x68, - 0x5b,0x13,0xe3,0x79,0x3a,0xaf,0xa6,0x1f,0x0d,0xf6,0x70,0x1d,0xa3,0x45,0x0c,0x32,0xd7,0x3d,0xa2,0xd9, - 0x91,0xbb,0xfd,0x7b,0x6a,0xa6,0x1d,0x14,0x48,0xe8,0x4b,0xd5,0xd9,0x30,0x72,0xec,0xdf,0x93,0x7d,0x63, - 0xc2,0x5a,0x18,0x07,0xdf,0x20,0x8a,0x44,0x7a,0x14,0xb1,0xb3,0xaf,0x0d,0x78,0x31,0x74,0x6f,0xd6,0x4d, - 0x65,0xc3,0xec,0x1b,0xe9,0xe3,0xaa,0x73,0x15,0xf7,0x91,0x44,0xb7,0x38,0x1e,0xaf,0xc0,0x6a,0x67,0xdb, - 0xdb,0x2b,0xc4,0xca,0xa6,0xbd,0x71,0x95,0xd7,0xb8,0x3b,0x24,0x17,0x67,0xde,0x03,0xd5,0x10,0xd9,0x2d, - 0x8c,0x20,0x11,0xdf,0x26,0x24,0xc6,0xbd,0xc8,0xf1,0x84,0x9c,0x68,0x5e,0xe0,0x7e,0xb3,0x17,0x57,0x82, - 0x6f,0x09,0xf6,0x85,0x06,0xc2,0xb1,0xe4,0x68,0xa7,0xd0,0xff,0x68,0x83,0xf8,0x30,0xc5,0x12,0x41,0x21, - 0xd5,0x88,0xce,0x98,0xc9,0x3d,0xe6,0x35,0xb9,0x15,0x7a,0x40,0x0b,0x36,0xd7,0x11,0xae,0xd4,0x92,0xe7, - 0x44,0x07,0x2a,0xf5,0xb4,0xb2,0xec,0xc3,0xb5,0xf2,0x91,0x95,0xa6,0x93,0xa6,0xcb,0x32,0x1c,0xbb,0x08, - 0x4f,0x06,0x75,0xf3,0xc5,0x2a,0x7b,0x59,0x0d,0xc8,0x4f,0x94,0x11,0x10,0x22,0x05,0xc2,0x44,0x3e,0x5e, - 0xc4,0x9f,0x26,0x92,0x90,0x00,0x67,0x26,0x93,0x9e,0x38,0x93,0x7e,0x83,0x4c,0xde,0xa9,0xbe,0x04,0xbf, - 0xa6,0x40,0x11,0x52,0x62,0xc9,0x9e,0x90,0xc8,0xa4,0xa7,0x20,0x3d,0xe0,0x96,0x91,0x7b,0x0f,0x62,0x57, - 0xf6,0x7d,0x02,0xf2,0xa5,0xc5,0xb8,0xe7,0x45,0x51,0xe2,0x80,0x2b,0x4a,0xbd,0x6f,0x75,0xe9,0xb1,0x13, - 0xfb,0xe2,0xd2,0xc7,0x61,0x16,0xb1,0x4f,0x10,0x63,0x31,0x2a,0x31,0xe7,0x2b,0xb7,0xce,0xcf,0xc4,0x82, - 0xed,0x9d,0x95,0x36,0xc7,0xcc,0x9b,0x32,0x5e,0xa9,0xa6,0xa0,0xf5,0x45,0x70,0x65,0x25,0xea,0xb0,0x2b, - 0x2b,0xee,0x8c,0x52,0x18,0x4c,0x9f,0x49,0x50,0xdb,0x87,0x16,0xd2,0xec,0xe4,0x84,0x9e,0x91,0x41,0xf9, - 0x30,0x59,0x31,0xee,0xee,0x7c,0xe5,0x49,0x11,0xa1,0x01,0xad,0x68,0xd0,0x74,0x8f,0x2f,0xa2,0x89,0xf6, - 0xc2,0x72,0xee,0x4b,0x1f,0xe0,0x55,0x0a,0xb3,0xd6,0x30,0x48,0xc5,0x95,0x4c,0x46,0x20,0x2a,0x09,0xe9, - 0xc9,0x8a,0x98,0xa3,0x4e,0x28,0x98,0xfc,0x2e,0x7e,0x67,0xab,0x8f,0xd8,0x5c,0x46,0x69,0x28,0xcb,0xb2, - 0x43,0xd2,0xf9,0x58,0x67,0x1d,0x82,0xb2,0x34,0x04,0x65,0xe9,0x08,0xca,0xb2,0x47,0x50,0x96,0x7d,0x82, - 0xb2,0xec,0x11,0x94,0xe5,0x20,0x41,0x59,0xfe,0xcf,0x09,0x4a,0x3b,0x20,0x43,0x51,0xca,0x4b,0x1a,0xdd, - 0xc8,0x6e,0xa0,0x3d,0xae,0xce,0xca,0x34,0xa8,0xc1,0x38,0x6b,0x94,0x7e,0x71,0x92,0x4e,0x7d,0x71,0x47, - 0xca,0xcb,0x26,0x33,0x13,0xea,0xf4,0x19,0xff,0xd9,0x8b,0x08,0x23,0xc7,0x2b,0x0e,0xa2,0x9c,0x74,0x2e, - 0xae,0x06,0x76,0xf6,0x6f,0xe9,0x50,0x11,0x1c,0x0e,0x7c,0xfd,0x2b,0x75,0x75,0xcd,0x94,0x58,0x8e,0xfb, - 0xec,0x9b,0x3e,0xa7,0x4e,0x07,0x7b,0x02,0x90,0x30,0x71,0xd3,0x19,0x72,0xf8,0x39,0xb5,0xde,0x93,0x7b, - 0x6d,0x18,0x19,0x9d,0x86,0xe8,0x1d,0x26,0x5d,0x96,0x4d,0xda,0x8b,0xba,0x38,0xce,0x85,0x61,0x77,0x89, - 0x6e,0x77,0x74,0x89,0x2c,0x6b,0x90,0xd7,0x35,0xff,0x73,0x01,0xdd,0x6c,0x24,0xd2,0x03,0x0e,0xff,0x73, - 0x28,0x71,0x08,0xd9,0x7e,0xce,0xc0,0x4a,0xc9,0x11,0x7f,0x2a,0x1b,0xec,0xd0,0x10,0x89,0xdd,0x36,0x52, - 0xcb,0xa6,0x05,0x82,0x0f,0x5a,0x74,0x13,0x09,0x1c,0x1d,0xeb,0xb3,0x63,0x47,0xc8,0xee,0xd3,0x3b,0x77, - 0x30,0xf9,0x9d,0x4a,0x5b,0x66,0x70,0xbb,0x33,0x0d,0x47,0x52,0x42,0xb4,0x84,0x55,0x2b,0x99,0xe7,0x8a, - 0xb7,0xe3,0xda,0x78,0x5f,0x38,0xe8,0x0c,0xac,0xb6,0xef,0xab,0x9d,0xfb,0x2a,0x32,0x24,0x7b,0x3b,0xba, - 0xaa,0xf3,0xe5,0x53,0xeb,0x73,0xe0,0x5f,0x61,0x33,0x61,0x72,0x9d,0xda,0x33,0x28,0xe2,0xd2,0xb8,0x5c, - 0x10,0x6c,0x69,0x35,0x10,0xea,0xdf,0xcf,0xb5,0x04,0x23,0x0f,0x03,0x72,0xe5,0x59,0x15,0x2c,0x40,0x15, - 0x78,0x36,0xf1,0xae,0xee,0xf0,0x4b,0xb9,0x58,0x7f,0x09,0x7b,0x64,0xdf,0xad,0xaf,0x2b,0xf1,0x15,0x84, - 0xc6,0xe2,0xdc,0x32,0x07,0xb4,0x71,0x7b,0x61,0xc4,0x03,0xdd,0x82,0x1a,0x88,0x69,0xe5,0xe2,0x53,0xd6, - 0xae,0x3b,0x85,0x81,0x07,0xc4,0xd5,0xc0,0xe5,0x52,0x08,0x51,0x19,0x92,0x28,0xf0,0xfe,0xe8,0x92,0x2c, - 0xd5,0x42,0x0f,0x21,0xaf,0x39,0x30,0xb9,0x21,0x73,0x12,0x50,0x8c,0x0f,0x0c,0xb5,0xc8,0x4e,0x4b,0xff, - 0xe3,0x6a,0x75,0x58,0x2b,0xaf,0xce,0x61,0x12,0x5c,0x2b,0x17,0x57,0x6c,0xff,0x7a,0x7d,0xaa,0x9f,0x38, - 0x16,0x29,0xe5,0x38,0xbd,0x7d,0xd7,0x2d,0x6b,0xea,0x2a,0x3c,0x27,0x8d,0x79,0x62,0x68,0xd1,0xf4,0x0b, - 0x97,0x04,0x25,0xb1,0x8b,0x00,0x38,0x81,0x73,0xb8,0x02,0x31,0xb8,0x41,0x1e,0xd4,0x12,0x6b,0x9a,0x7d, - 0xa8,0xd3,0xe8,0xe4,0x12,0x04,0xfe,0x03,0x68,0x18,0x4a,0x48,0xc9,0xb9,0xf2,0x32,0xd8,0xbb,0xe9,0xb2, - 0x8c,0xfb,0x22,0x13,0xa9,0x21,0xe1,0x3a,0xc6,0xc6,0x4c,0xdb,0xaa,0x4e,0x20,0x38,0xac,0xee,0x3a,0x24, - 0xa6,0x83,0x72,0xc3,0xbd,0xb8,0x61,0xcc,0xdd,0x80,0x5a,0x09,0x84,0x1f,0xf3,0xf0,0x53,0xa7,0x39,0x64, - 0xd1,0x00,0xa1,0xbd,0x01,0x55,0x59,0x97,0x31,0x0f,0x7c,0x69,0x7b,0x3a,0x59,0x3a,0x37,0xfe,0xe4,0x22, - 0x67,0x2d,0xa2,0xd7,0xda,0x52,0x7f,0xe9,0xbd,0xbd,0x25,0x42,0x14,0x5a,0xe9,0x97,0x8a,0xfc,0xcd,0xea, - 0x01,0x35,0x15,0x38,0xa9,0x76,0xa2,0x5f,0xf8,0xcd,0xfd,0xeb,0xea,0xc1,0xc1,0x83,0x7f,0xdc,0x3f,0x57, - 0xd1,0xaf,0xf2,0x18,0x25,0xbd,0xcc,0xaf,0x7d,0xe6,0xd7,0xe1,0x05,0xa1,0x33,0x03,0x0b,0xf0,0xde,0xb3, - 0x20,0xa4,0xaf,0xb6,0x9e,0xfb,0x59,0xf6,0x17,0xc5,0xba,0xbe,0x89,0x56,0x43,0xd7,0x35,0x34,0xc8,0x84, - 0x95,0x53,0x38,0xfb,0x9e,0x87,0x3e,0x9e,0x41,0x3f,0xe3,0x8f,0x55,0xf6,0xb1,0xfa,0x93,0x08,0x9d,0x08, - 0x86,0x6b,0x74,0x4f,0x59,0x3b,0xb9,0xf7,0x30,0xdf,0xba,0x80,0x12,0x38,0xfa,0xb5,0x8c,0xee,0x7f,0x73, - 0x2f,0xbd,0xf7,0x90,0x4a,0x11,0xd6,0x30,0xef,0xea,0x63,0xe5,0xcb,0x7b,0x2f,0x9c,0xdd,0xff,0x75,0x78, - 0x30,0x8e,0x92,0x6f,0x0e,0x18,0x11,0x5e,0xba,0x90,0x77,0x67,0xb5,0xd6,0x7f,0xe8,0x18,0x91,0x96,0x17, - 0x2e,0xd1,0x47,0x15,0xb7,0x17,0x81,0xab,0xf3,0x32,0x5b,0x89,0x18,0x46,0x39,0x4a,0x31,0x62,0xa3,0x99, - 0x6b,0xce,0xa1,0xa3,0x59,0x51,0xaf,0x14,0x97,0xf0,0xea,0x5a,0x05,0x75,0xa8,0x3a,0x19,0xa8,0xf9,0x22, - 0x6f,0x82,0x6b,0x2f,0xd5,0x69,0x99,0xdd,0xdf,0x8f,0x7f,0xbd,0x4a,0x68,0x2d,0xae,0xca,0x6c,0x38,0xe6, - 0x89,0x5b,0xb7,0xd3,0xd0,0xa4,0x20,0xb4,0x6d,0x9a,0xa0,0xcb,0x3f,0x2e,0x97,0xb0,0x9c,0x86,0x97,0x37, - 0x22,0xb0,0xc2,0xe4,0x75,0xe7,0xce,0x2a,0x4d,0x6c,0x9b,0x83,0xa4,0xfb,0xe1,0x9e,0xd7,0x3b,0xd2,0xe7, - 0x9f,0xa8,0x77,0xbf,0x3e,0x8e,0x8f,0x1e,0xed,0xff,0xfb,0x18,0x3d,0xfc,0xf8,0xa7,0x3d,0xfc,0x54,0xaa, - 0x68,0x7f,0xe7,0x30,0x42,0xb5,0x2f,0xab,0x2b,0x5b,0x2d,0xd5,0xf5,0x64,0x53,0x26,0xe3,0x14,0xf0,0xea, - 0x51,0x57,0x5f,0xe4,0x62,0xb9,0xa8,0xf7,0xc4,0xd7,0x81,0xa8,0xde,0xe7,0x38,0xeb,0xf5,0xbe,0xbd,0x4c, - 0x31,0x52,0x1f,0xca,0xec,0x28,0x0a,0xd6,0xc4,0xf3,0x70,0x91,0xbd,0xf2,0x30,0x3a,0x56,0x6f,0x50,0x4a, - 0xec,0x2f,0x9f,0x30,0x8c,0x51,0xa6,0x00,0x1b,0x55,0x61,0x32,0xd8,0xa8,0x1b,0x72,0x78,0x31,0xee,0x76, - 0xe9,0x3f,0x9a,0xf0,0x94,0xee,0xae,0x5d,0x9b,0xf1,0x54,0x22,0x11,0xa3,0x4d,0x79,0xe2,0x3c,0x7f,0x47, - 0x33,0xd2,0xc3,0x37,0xb9,0x41,0x48,0x7c,0xce,0x67,0xd4,0xa9,0xdf,0xca,0xec,0x46,0x88,0x89,0x57,0x9a, - 0x08,0x67,0x02,0x35,0x2a,0x78,0x5e,0x10,0xf3,0x39,0x74,0xc3,0x6a,0x53,0xcc,0x61,0x98,0x41,0x74,0x3d, - 0x41,0xd1,0x6c,0xc5,0x93,0xf4,0xa1,0x58,0x22,0xc1,0x5e,0xf7,0xcb,0x99,0xba,0x86,0x68,0x07,0xf6,0x55, - 0x78,0xe5,0x36,0xbf,0x93,0x7b,0x60,0xd9,0x7b,0x43,0x81,0xba,0xef,0x24,0x14,0xe7,0x25,0x0d,0x66,0x66, - 0x76,0x1d,0xd1,0x23,0xc7,0xca,0x5e,0xfe,0x38,0xd8,0x91,0x4e,0xb8,0xfb,0xf4,0x49,0x19,0x24,0xc0,0x95, - 0x4b,0x52,0x7e,0x2c,0x3f,0x96,0xd5,0x55,0x69,0x2a,0x45,0x5a,0x2f,0x7a,0x7e,0x7a,0xae,0x86,0x82,0xe3, - 0xa7,0x8f,0x4a,0x15,0x5c,0xc2,0x88,0x0f,0x4f,0xe6,0xc5,0x99,0x9e,0x5e,0x4f,0xe7,0x1a,0xf7,0x4e,0x53, - 0x9f,0xca,0xb5,0x7a,0x46,0x10,0x79,0xf4,0xdf,0xbf,0x5e,0x8d,0x76,0x8e,0xef,0xab,0x17,0x90,0x95,0x9d, - 0xf0,0xde,0x3a,0x39,0x21,0x72,0xec,0x66,0xad,0x5e,0x52,0x92,0x27,0x53,0xdd,0x15,0x7e,0xe2,0xd9,0xa3, - 0x9e,0x0f,0xe7,0xfe,0xfc,0xcb,0xb3,0xf2,0xb2,0xa8,0xab,0xd2,0xdc,0x87,0xbe,0xdd,0x49,0x80,0x24,0x8f, - 0x7b,0xaa,0x9e,0x96,0xd9,0xf3,0x72,0x77,0x77,0x38,0xb7,0x0b,0xf0,0xea,0x75,0x99,0xbd,0xa4,0xb2,0xc6, - 0xa5,0xa8,0xcc,0x2f,0x8b,0x73,0x70,0x0a,0xa3,0x15,0x4d,0xd8,0xa3,0x73,0xbe,0x70,0xaa,0x53,0xfe,0x6d, - 0x99,0xbd,0xa6,0xf2,0xf7,0x17,0x4d,0xa1,0x6f,0x09,0xf7,0xcc,0xa8,0x88,0xb1,0x09,0x7b,0x5d,0x26,0xea, - 0x95,0x64,0xbf,0x0e,0x3c,0x1a,0x51,0x72,0xeb,0xeb,0xd1,0x01,0xb0,0x9b,0x7a,0xb7,0x99,0xaf,0x67,0xe7, - 0xfa,0x3e,0x67,0x3e,0xde,0xcc,0x24,0x38,0xa8,0xe9,0x9c,0x43,0x36,0x9d,0x66,0xf6,0x0d,0x57,0x6e,0x94, - 0xea,0x47,0xd3,0x95,0x62,0x79,0x41,0x7b,0xeb,0xb6,0x58,0xe6,0x33,0xfa,0x53,0xd1,0x9f,0xaa,0xf1,0x5d, - 0x82,0x53,0x7b,0xd5,0x98,0x4f,0xbe,0x2b,0xb3,0x98,0xbf,0x99,0x5e,0xd4,0x44,0xa2,0xfc,0x7a,0xff,0xd7, - 0xd9,0x5e,0xd0,0xfb,0x9b,0xf5,0x88,0x6f,0x1a,0x4e,0xd4,0x4f,0x50,0x62,0x83,0xaa,0x7a,0x59,0x72,0x94, - 0x4d,0x60,0xe5,0x3f,0xd8,0x1e,0x62,0xf8,0x5a,0xe6,0x3f,0x08,0x9f,0x98,0x18,0x0d,0x91,0xba,0xc1,0xb5, - 0xce,0x01,0x25,0x8c,0xca,0x0e,0xd6,0x84,0x5b,0xcc,0x2c,0x6f,0xc6,0x04,0x44,0x0f,0xf6,0xdd,0xf7,0x0c, - 0xf5,0x7f,0x94,0x49,0xe0,0x76,0x8e,0xf6,0x7f,0x2e,0xd5,0xef,0xa5,0xfa,0x3e,0x40,0x41,0x3d,0x5a,0x80, - 0xc6,0xf8,0x33,0x0c,0x6b,0x7e,0xa6,0xf6,0xb0,0xa8,0x43,0x30,0x74,0x3e,0xaf,0x4e,0xf3,0x39,0x68,0x52, - 0x46,0x54,0x98,0x17,0x49,0x02,0xee,0x07,0x2f,0x38,0xd2,0xe5,0xe5,0xe8,0xa7,0x1f,0x9f,0x9d,0x3c,0x7b, - 0xfd,0x53,0xa2,0x7e,0x26,0x58,0xfe,0xa1,0x03,0x22,0x27,0x27,0xc8,0x7c,0xfa,0xec,0xa7,0x0f,0x6f,0xde, - 0xbc,0x7c,0x7f,0xf2,0xed,0xcb,0x37,0x8f,0x1f,0xbd,0x3c,0xf9,0xee,0xcd,0x9b,0x1f,0x4e,0x4e,0xd4,0x2f, - 0xc3,0x80,0xfb,0xfe,0x7a,0x71,0x5a,0x51,0xa3,0x9f,0x62,0x79,0x4a,0x86,0xfb,0x66,0xae,0x67,0x46,0xb9, - 0xde,0x4d,0xcd,0xc9,0xf8,0xf7,0x3b,0x6a,0xd6,0x5c,0x9c,0x7e,0x92,0xc9,0xfb,0xee,0xac,0x07,0xfc,0xb7, - 0x09,0xa6,0x8f,0x4b,0xb6,0x07,0x10,0x86,0x0b,0xb1,0xdd,0x3d,0xfe,0x06,0x30,0xfd,0x36,0xa6,0xd8,0x56, - 0x05,0x65,0xa7,0x0a,0xbf,0xa1,0x65,0xed,0x7c,0x13,0x14,0xc4,0xfa,0x77,0xca,0x12,0xb2,0xc8,0xeb,0x70, - 0x21,0x3f,0xdb,0x41,0xd5,0xae,0x8d,0xa9,0xc1,0xb7,0x65,0x76,0xae,0xfe,0x0d,0x86,0xe0,0x5f,0xe5,0xc6, - 0xe7,0xc5,0x2c,0xfb,0x37,0xd1,0x6d,0xe6,0x5a,0xc8,0xd5,0x29,0xd4,0xf8,0xeb,0xf1,0xbf,0xca,0x6e,0x1f, - 0xdf,0xaf,0x4e,0x07,0xba,0x49,0xa5,0x4d,0xbc,0x41,0x6a,0xae,0xf3,0x89,0xb8,0x42,0xf6,0xbf,0x32,0x37, - 0xa7,0xe2,0x3b,0xb5,0xf1,0x89,0x5c,0x0a,0x1e,0xf6,0x2f,0xb8,0x33,0xdc,0x3d,0xa2,0x33,0x4f,0xf5,0x52, - 0xe4,0xed,0xbd,0x1a,0xca,0xaa,0x25,0xc2,0x7a,0xf8,0x5e,0x40,0xdf,0x61,0x27,0x70,0x65,0x3b,0xa9,0xb6, - 0x6f,0x27,0xc5,0x17,0xdf,0xaf,0xdc,0x2d,0x81,0xae,0x61,0x36,0xdc,0xe7,0xe9,0xfc,0x67,0x89,0xc8,0xd0, - 0x6d,0xdd,0x3b,0xf2,0xbd,0x51,0x96,0x99,0x1e,0x38,0xf3,0x98,0x0b,0x3d,0xf9,0x3a,0xab,0xfe,0x7d,0x9e, - 0xe6,0xa6,0x4e,0xbe,0x14,0xcb,0xdc,0xed,0xa9,0xe7,0x0b,0x7b,0xb1,0x67,0xd9,0xd8,0x1b,0x49,0xe4,0x2b, - 0x73,0x7b,0x56,0x25,0xaf,0xfe,0x3a,0xad,0xb0,0x90,0xbf,0x56,0xab,0x9b,0x6a,0xef,0xc0,0x0c,0x53,0xd9, - 0x8c,0x11,0x06,0xc7,0xa0,0xf2,0x4c,0x13,0x5d,0xc3,0x5b,0x7b,0x89,0xe7,0x86,0x89,0x73,0xa7,0x1e,0x73, - 0x1d,0x69,0x98,0x54,0xe7,0x57,0x1c,0x11,0x87,0xc1,0xcb,0x5d,0x11,0xeb,0x12,0xbc,0x67,0x19,0xeb,0x2c, - 0x24,0xd1,0x46,0x60,0xf7,0xc5,0x9e,0xcc,0xa9,0xd1,0x59,0x90,0xc0,0xb7,0xca,0xda,0xd7,0x4e,0x38,0xf3, - 0x26,0x48,0xe3,0xdb,0xf4,0xc2,0xde,0x6c,0xc6,0x43,0x87,0xa9,0x11,0xd1,0x10,0xd9,0x0d,0x2f,0x45,0x8a, - 0x70,0x7e,0x67,0xc5,0xf9,0x8a,0x6f,0x64,0x4f,0x81,0x74,0xc7,0xda,0x84,0x2c,0x81,0xf5,0xef,0x00,0xe6, - 0x1c,0x9e,0x96,0xb5,0x1a,0x42,0xf3,0x44,0xf9,0xc4,0x6d,0xed,0xa1,0x54,0x69,0x13,0x8b,0xa7,0xec,0x5d, - 0xb8,0x62,0xb1,0x31,0x5f,0xcf,0xc1,0x11,0x58,0x84,0xcd,0x92,0x0b,0x71,0xbc,0x49,0x1d,0xaf,0x3a,0xa2, - 0xf2,0x04,0x93,0x76,0xa0,0xa8,0xf5,0xba,0xce,0x7a,0x17,0x08,0xa9,0xa2,0xee,0xa1,0x86,0x9a,0x1a,0x3f, - 0x8a,0xb0,0x67,0x23,0x44,0xef,0x5e,0x06,0xf6,0x1a,0x26,0xde,0x1b,0x52,0x38,0x7e,0x19,0x1e,0x2a,0xb8, - 0xb6,0x45,0x35,0x9c,0x0b,0x1a,0x0d,0x33,0x8e,0x01,0x73,0x3e,0x63,0x0c,0x58,0xc3,0x8c,0x60,0x27,0x2e, - 0x08,0x92,0x87,0x63,0x81,0x1f,0xe1,0x42,0x34,0x17,0xda,0xc8,0xc9,0x24,0xf6,0xf7,0xc7,0x09,0xdf,0xe5, - 0xeb,0xb2,0x9c,0x4d,0x3a,0x82,0xe2,0x1b,0x37,0x57,0xcc,0x38,0xbc,0x48,0xcc,0x3d,0xe4,0x12,0xfc,0x62, - 0x6c,0x22,0x74,0xb6,0x12,0xa1,0x53,0x86,0x95,0xf2,0xa3,0x1d,0x4c,0x8a,0xd0,0xf4,0x3e,0x60,0xa6,0x1d, - 0x1a,0x92,0x0d,0x22,0x78,0xe0,0x50,0x79,0x01,0x79,0x4c,0x75,0xca,0x67,0x9c,0xbd,0x08,0x5c,0xe5,0xc0, - 0x4b,0x06,0xb3,0xc0,0x9e,0x0a,0x9c,0x87,0x18,0x65,0xbb,0xa9,0x25,0x18,0x09,0xb8,0x1e,0xa6,0x05,0x69, - 0x1a,0xe8,0x53,0x82,0xb0,0xe6,0xa2,0x5a,0xcd,0x67,0xb4,0x57,0x69,0x06,0x5b,0xc0,0x96,0x6a,0xea,0x4d, - 0x44,0x2a,0xe1,0x55,0x2c,0xae,0xd0,0x4b,0x5e,0xf3,0x7f,0x19,0xfc,0x70,0xb9,0x60,0x47,0x63,0xc2,0x56, - 0x3b,0xb1,0x5c,0x14,0x4d,0x43,0x8f,0xcc,0x65,0xd3,0x1b,0x91,0x51,0xe2,0xf8,0x45,0x57,0x22,0x24,0x31, - 0x18,0x1d,0x25,0x99,0xe9,0x75,0xda,0xcf,0x0e,0x6e,0x8d,0x1e,0xd4,0x08,0x19,0x87,0x5f,0xac,0xcb,0x8e, - 0x68,0x7b,0x10,0xb6,0x9a,0x68,0x13,0x7a,0xa1,0xf5,0xae,0x6a,0x73,0xa9,0x6f,0x67,0xee,0x5a,0xf8,0x28, - 0x20,0xf5,0x2a,0x9f,0x7f,0xc4,0x01,0x31,0x6e,0x82,0x5d,0xc0,0xa9,0x77,0x5c,0x9a,0x15,0x4a,0xca,0xdb, - 0xc4,0xc8,0x18,0x74,0x28,0x63,0xf8,0x80,0x9e,0x23,0x20,0x3c,0x21,0x6b,0xfa,0xa1,0xbe,0xa8,0x4e,0xe5, - 0x61,0x47,0xee,0xba,0x99,0x6b,0x08,0xf7,0xbf,0x97,0xeb,0xb8,0xe4,0xf6,0xe3,0x69,0x8d,0x6b,0xb0,0x06, - 0x59,0x99,0xf1,0x54,0x02,0xb3,0xdc,0xc1,0xf4,0x6d,0x95,0x93,0x17,0x26,0x25,0xd5,0xa1,0xdf,0xab,0xa3, - 0x40,0xf4,0xa4,0x4d,0x5f,0x88,0x14,0x87,0xb8,0xb8,0xc1,0x6d,0x35,0xc5,0x86,0xca,0x5e,0x12,0x01,0xf8, - 0xe1,0xee,0x02,0x7b,0x51,0x13,0x1d,0x67,0xcf,0xa9,0x10,0xf5,0x88,0xa9,0xd0,0x8d,0x43,0x49,0x74,0xc5, - 0x84,0x57,0xbe,0x63,0xf3,0x69,0x77,0x97,0x9e,0xb6,0x49,0xda,0x25,0x39,0xfb,0xb6,0xad,0x2e,0xd2,0x68, - 0x6f,0x6f,0x07,0xc2,0xe7,0x6b,0x63,0xc6,0x48,0xe4,0xed,0x25,0x6c,0xea,0x92,0xae,0xbf,0x88,0xb6,0x92, - 0x4f,0x78,0x8b,0x40,0x29,0x02,0xa7,0x91,0x9c,0x18,0x90,0xfe,0x85,0x7f,0xac,0x47,0x3c,0xca,0x8f,0x13, - 0xbe,0x43,0x29,0xcb,0x27,0xb9,0x75,0x7a,0x6f,0x92,0xde,0x8d,0x78,0x4d,0x32,0x21,0x4e,0xae,0x39,0x76, - 0x3b,0x76,0x8d,0x71,0x4b,0xb8,0x53,0x7a,0x58,0xe8,0xf6,0xa2,0x9a,0xf1,0xa3,0x5c,0x77,0x8d,0xa7,0xa9, - 0x89,0x76,0x30,0x3c,0x31,0x9b,0xc3,0x19,0xba,0x36,0xc0,0x12,0xcc,0x3c,0x4c,0xa5,0x61,0x22,0x59,0xb0, - 0xc5,0x83,0x6d,0xff,0x92,0x58,0x9a,0xec,0x85,0xa8,0x4b,0x6b,0x35,0xaf,0xd5,0x59,0x5f,0x59,0xdb,0xa7, - 0xb9,0x01,0x01,0x84,0xb3,0x97,0xb8,0xdc,0x4a,0xcd,0x38,0x82,0x1c,0xc7,0x91,0x63,0xf3,0x99,0x01,0x9a, - 0x95,0xa8,0x3c,0x17,0x50,0x1c,0xc4,0x6b,0xf8,0x9e,0x24,0xf3,0x0e,0x59,0x18,0xe6,0xc5,0x3f,0x11,0x38, - 0x3b,0x43,0x3e,0x5f,0xb1,0x73,0x2b,0x7c,0x45,0xe4,0x7b,0x7e,0xae,0x9f,0x5c,0xe4,0x65,0xa9,0xe7,0xb7, - 0xb7,0xdb,0x9f,0xe2,0x6e,0x12,0xe8,0x6e,0x7b,0x47,0x53,0x37,0x87,0xd0,0x5a,0xd3,0xd6,0x2b,0x9c,0xc1, - 0x7c,0x6d,0x53,0x37,0xd7,0xc9,0x99,0xe2,0x81,0xfe,0x59,0x07,0xc0,0x9f,0xe0,0xec,0xe7,0x6d,0x4b,0x2e, - 0x6b,0x46,0x7d,0xdd,0x8a,0xd4,0xa2,0xce,0x2e,0x69,0x9a,0xe9,0x30,0x7a,0x30,0x36,0x0f,0x87,0x23,0x70, - 0xa8,0x5c,0x2a,0xfb,0x49,0x75,0xab,0x5f,0xa0,0x48,0xd3,0x9a,0x4a,0x20,0xec,0x59,0xdf,0x31,0xa9,0x84, - 0xb3,0x17,0x45,0xc3,0xf3,0x69,0x1e,0x8d,0x85,0xef,0x79,0x9d,0x99,0x04,0x7b,0x11,0x30,0x91,0xd2,0xab, - 0x4e,0x2b,0xe7,0xb5,0xdc,0xaa,0x4c,0xfc,0xce,0x8f,0x65,0xc7,0xa9,0xf1,0xdc,0x86,0x4d,0xa6,0x0f,0xe6, - 0x35,0x03,0xc5,0x75,0xad,0x4e,0x64,0x68,0xc4,0x8c,0x9d,0xd6,0x3d,0x41,0x93,0x11,0xa7,0xee,0x46,0x2e, - 0x20,0x35,0x0b,0xaf,0x08,0x43,0x45,0xff,0x97,0xad,0xd6,0x5b,0x80,0x8b,0x93,0x5d,0xa5,0xf0,0xdf,0x77, - 0x85,0x6a,0x84,0xbb,0x95,0x42,0xe5,0x5d,0x85,0xac,0xad,0x1d,0xab,0xe3,0x89,0xd8,0xec,0x94,0x53,0x30, - 0x8c,0x80,0x60,0x73,0x23,0x6e,0xa0,0x66,0xf6,0xb3,0x96,0xdb,0xa8,0x76,0x18,0x52,0x3f,0xf1,0xdf,0x8f, - 0x1c,0x4c,0xea,0x09,0x43,0xed,0x23,0xfe,0xfb,0x1e,0x67,0xc7,0x07,0xfc,0x79,0x33,0x44,0x17,0xdb,0x73, - 0x6e,0x81,0xf8,0xef,0xec,0x19,0x71,0xc2,0xd8,0x8a,0x88,0x30,0x39,0xc7,0x7c,0x82,0xe5,0x28,0x38,0xb9, - 0x9e,0xc4,0xe6,0x4c,0xa4,0x43,0x71,0x7b,0xbb,0xe6,0x07,0x39,0x6c,0x20,0x6b,0xe0,0x24,0x3c,0x48,0x12, - 0xe2,0xa1,0x71,0x12,0x1e,0x0c,0x43,0x43,0x94,0x1f,0x27,0xe1,0xc1,0x1c,0x48,0x5c,0x99,0xaf,0xc3,0x7f, - 0x1a,0x7c,0x61,0xa8,0xcc,0xe9,0xa9,0xa5,0xd2,0x89,0x4d,0xda,0xdb,0xfb,0x60,0x1a,0x92,0x58,0x6f,0x8e, - 0x7a,0x9d,0x15,0x74,0xee,0xfb,0x7a,0xdc,0x31,0xde,0x30,0x9f,0xc0,0xc4,0xbc,0xbe,0x7a,0x1a,0xbe,0x53, - 0xe6,0x0b,0x42,0x54,0x06,0x20,0x82,0x22,0xfd,0x54,0xaf,0x41,0x80,0xb8,0x7d,0x20,0x82,0x02,0x01,0x06, - 0xca,0x11,0x0d,0xd2,0xd2,0x58,0x74,0x1a,0x87,0xaf,0x3d,0x9f,0x9f,0xed,0x67,0xa5,0x88,0x2d,0xec,0xcd, - 0x7a,0x70,0x58,0x33,0x81,0x58,0x46,0x91,0xbf,0xe2,0x72,0xe0,0xc0,0x1c,0x38,0x84,0x3b,0xe8,0x73,0xdc, - 0x66,0xe6,0x2c,0xf6,0x77,0x4f,0xad,0xd9,0xf5,0x2a,0xe8,0x0f,0x2c,0xc6,0x87,0x7a,0x97,0xc0,0x71,0x5f, - 0x85,0x94,0x90,0x9d,0x4a,0x6b,0x62,0x66,0x3f,0x43,0x78,0x9c,0x37,0xe1,0x49,0xdf,0xa3,0xcf,0x85,0xcf, - 0x53,0x01,0xe3,0xf8,0x4f,0x13,0x6b,0xc8,0x25,0x25,0x01,0x4b,0x27,0xf1,0x2f,0x18,0x4a,0x33,0x03,0xa0, - 0x1c,0xd6,0xcf,0xf4,0x40,0xfa,0x69,0xae,0xa2,0x53,0x4e,0xb4,0x62,0x8c,0xc1,0x1d,0x04,0x25,0xed,0x45, - 0x5d,0x5d,0xd1,0x01,0xf2,0x98,0xb5,0xda,0xf7,0xe4,0xb3,0x2d,0x9a,0xba,0x2d,0x03,0xd3,0x5b,0x30,0xba, - 0xe8,0x2e,0x27,0x2c,0x52,0x92,0x35,0xe1,0x23,0xaa,0xfc,0xfa,0xc6,0xc1,0xe5,0xee,0xee,0xcf,0x98,0x34, - 0xdf,0x45,0xf4,0xbf,0x5a,0xc6,0x66,0x7a,0x20,0x01,0x28,0x57,0x4b,0xc0,0x92,0x8f,0xd6,0x07,0xc6,0xa3, - 0xee,0xb2,0xeb,0x54,0x60,0xc0,0x61,0xa7,0x25,0x28,0x1e,0x77,0x81,0x0d,0x32,0x8b,0x18,0x26,0x71,0x71, - 0x2f,0x5d,0xa2,0x92,0x75,0xa0,0xd7,0xb2,0xfa,0x21,0x08,0xbb,0xef,0x5b,0x23,0x25,0x90,0x8d,0x9b,0xf4, - 0xba,0x14,0xf4,0xfb,0x33,0xec,0x39,0xb6,0x8c,0x85,0xb0,0x16,0x7c,0x81,0xed,0xb7,0xcd,0x04,0x8b,0x31, - 0xd4,0x7f,0x1a,0x17,0x2e,0x6b,0xf0,0x52,0x07,0x23,0x1e,0x30,0x16,0x52,0xbe,0xbb,0xe3,0x70,0xf7,0x75, - 0x6b,0xda,0xd8,0x85,0xbd,0x04,0x91,0xbe,0xc4,0x89,0xf2,0x15,0x36,0xc1,0x4e,0x0f,0x27,0xaa,0xbb,0xe7, - 0xcb,0xee,0x24,0xda,0x08,0x98,0xbd,0x19,0x12,0x89,0xc3,0x86,0x74,0x86,0x37,0x41,0x80,0x64,0xb6,0xcd, - 0x5e,0x00,0x96,0x92,0xf4,0x7a,0x45,0x85,0xd3,0x3b,0x16,0xdb,0x44,0xb9,0xce,0xb2,0x8f,0xb8,0x90,0x9a, - 0xe1,0x96,0x9f,0x80,0xba,0x1e,0x75,0x4c,0xff,0x76,0x6a,0x67,0x8d,0x38,0x2e,0xbf,0x79,0x5f,0xef,0xee, - 0xee,0xd4,0x7c,0x01,0xdb,0xec,0x1b,0xae,0x29,0x29,0x69,0x41,0xa8,0x90,0x89,0x6d,0x5d,0xee,0x1d,0xaa, - 0x03,0xc8,0x70,0xf8,0xa0,0xdb,0xb1,0xf7,0x64,0x26,0xe3,0x27,0xd8,0xe5,0x38,0x19,0x0e,0xd4,0x1f,0xf1, - 0xaa,0x15,0xe7,0x3a,0x91,0xd5,0x74,0xc6,0x4b,0xdd,0x0e,0x07,0x0b,0x1a,0xd5,0x63,0x56,0x1b,0x43,0xc5, - 0x6f,0x7b,0xb6,0x35,0xda,0x36,0x72,0x34,0x46,0x12,0xb7,0xb7,0x05,0x5f,0x84,0xe7,0xb6,0x4e,0x07,0x5a, - 0xc4,0x07,0xd4,0xd6,0xda,0xe1,0xaf,0x64,0xcb,0xd6,0x66,0xd3,0x4d,0x4f,0x65,0x7f,0x9b,0xed,0xcf,0xb6, - 0xae,0x5e,0x84,0xfa,0x38,0x6e,0x2d,0x13,0xa6,0xee,0x59,0x4b,0x8d,0xbf,0xb4,0xb3,0xc5,0x95,0xe9,0xce, - 0x16,0xd6,0xbd,0xe9,0xd0,0xe8,0xe2,0x10,0x00,0x04,0x08,0x91,0x27,0x22,0x3c,0x71,0x20,0xc6,0xe8,0xd4, - 0xb2,0x29,0x42,0xfb,0xb3,0x1d,0x16,0x6e,0x2d,0xf3,0x79,0xdc,0x5f,0xaa,0x96,0xe0,0x7e,0x56,0x5d,0x7d, - 0x76,0xbd,0xcc,0xe0,0x10,0x46,0xe8,0xb1,0x26,0x9a,0xef,0xa9,0xd5,0x1d,0xdd,0xde,0xba,0x91,0xfb,0x23, - 0x5e,0x98,0xd7,0xf1,0x7f,0xd4,0xb9,0xde,0xde,0x1e,0x77,0x0e,0xe2,0xc3,0xb5,0xf0,0x6c,0xbf,0x11,0x61, - 0xa2,0xcb,0xd5,0x42,0x5b,0x59,0x8e,0xea,0xc9,0x76,0xa0,0xb0,0x49,0xcf,0x55,0x83,0xbf,0x6b,0xf5,0x8c, - 0x8a,0x63,0x87,0x81,0x31,0x1f,0x3f,0x69,0xe3,0x47,0x81,0xb4,0x55,0xb8,0xfc,0x17,0x54,0x02,0x41,0x05, - 0x42,0x9e,0xd9,0x50,0x34,0x7c,0x06,0x0c,0xc7,0x0c,0x18,0x08,0x0a,0x50,0x34,0x6e,0x4a,0x92,0xa1,0xb0, - 0x01,0x59,0xa7,0x01,0x7f,0xd9,0x77,0x76,0x73,0xc2,0x72,0x1e,0x29,0x8d,0x11,0x18,0x5f,0xe6,0x2b,0x22, - 0x29,0xe5,0xf1,0xa7,0x92,0x55,0xd2,0xf6,0xf5,0xd9,0x7c,0x91,0xd6,0xc2,0xb1,0x11,0xd1,0xa9,0xcf,0xf0, - 0x5e,0xc8,0xfb,0x9a,0xdd,0x45,0xd9,0xc1,0xbc,0x6b,0xdf,0xe3,0x63,0x84,0xc8,0xc5,0x35,0xc6,0xb0,0x27, - 0x9b,0x9a,0x07,0xd5,0xf4,0x6d,0x79,0x28,0xab,0x97,0x02,0xcf,0xc4,0xab,0xad,0xcd,0xe8,0x06,0x1c,0xd1, - 0x80,0x58,0x37,0xf8,0xd9,0x25,0xa3,0x1d,0x56,0x44,0xc6,0x20,0x55,0x35,0x75,0xcc,0x08,0xea,0x82,0x0b, - 0x9b,0x4c,0xff,0x10,0x1a,0xe0,0xd1,0xdc,0xe1,0x02,0x44,0x10,0x7d,0x01,0xa0,0xd4,0x1c,0xca,0x21,0xae, + 0x24,0x5c,0x5f,0x19,0x18,0xb5,0x68,0xc9,0x49,0xe6,0x9d,0x80,0x46,0x78,0xbd,0x26,0x4e,0xbc,0x8d,0xed, + 0x2c,0x33,0x8a,0x5e,0x1d,0x88,0x6c,0x49,0x88,0x49,0x80,0x01,0x40,0x2d,0x91,0x78,0x7f,0xfb,0x57,0x4f, + 0x55,0x6f,0x00,0x21,0x27,0xf3,0x9e,0x7b,0xbe,0xe3,0x63,0x11,0xe8,0x6e,0xf4,0x5a,0x5d,0x5d,0x7b,0x6f, + 0x9f,0xae,0xca,0x69,0x5b,0x54,0x65,0xdc,0x2a,0x9d,0xdc,0x44,0xd5,0xc9,0x6f,0x7a,0xda,0x46,0x59,0xd6, + 0x5e,0x2f,0x75,0x75,0xba,0xa5,0xaf,0x96,0x55,0xdd,0x36,0x3b,0x3b,0x1b,0x39,0x8b,0x6a,0xb6,0x9a,0xeb, + 0x89,0xfc,0x8c,0x4c,0xb9,0x4c,0xc7,0x49,0x1a,0xd9,0x3a,0x7d,0xe1,0x99,0x3e,0x2d,0x4a,0xbd,0xb3,0x23, + 0xbf,0xa3,0x7c,0x31,0x9b,0xc8,0x63,0x7c,0x78,0x44,0xed,0xa6,0x77,0xb5,0x3b,0x31,0xbf,0xa3,0xfc,0xaa, + 0xa8,0xa4,0xf6,0xd6,0x3f,0xaf,0xe3,0xf6,0xbc,0x68,0x94,0x1b,0x42,0x72,0x53,0xeb,0x76,0x55,0x97,0x5b, + 0x7e,0x50,0xc9,0x8d,0x7d,0xde,0xd2,0x71,0x9d,0xdc,0x14,0xa7,0x71,0x79,0x58,0x1f,0x25,0xa6,0x20,0x9e, + 0x6d,0xdf,0xc7,0x17,0x79,0xbd,0x55,0x64,0x48,0xca,0x6e,0x4c,0x5a,0x7a,0xb3,0x56,0xc5,0x2c,0xad,0xd5, + 0xbc,0xca,0x67,0x7a,0x96,0x6e,0x1f,0xac,0xc7,0xe6,0xd3,0x16,0x9f,0x4e,0xf3,0xf9,0x3c,0x2e,0x6c,0x0d, + 0xaa,0x50,0xfe,0x59,0x27,0xf4,0x22,0x9f,0x65,0xdb,0xfb,0x3e,0x63,0x8d,0x66,0xca,0xec,0xc6,0x55,0xa4, + 0x47,0x8b,0x8c,0x26,0x7f,0x34,0xcd,0x4a,0xfa,0xbb,0xcc,0xa2,0x48,0xe9,0x78,0x9f,0x06,0x77,0x18,0xae, + 0x8d,0x2a,0x93,0x9b,0xd6,0x4d,0x73,0x19,0x1f,0x24,0x6b,0xd5,0xcf,0x8f,0x56,0x8d,0xde,0x6a,0xda,0xba, + 0xa0,0x99,0x1c,0xbb,0x71,0xd7,0x98,0x05,0x34,0xaa,0xb3,0x52,0x5f,0x6e,0xe5,0xf4,0xaa,0xca,0xac,0x8a, + 0xf3,0xd1,0xb2,0xae,0xda,0x0a,0x13,0x3e,0xaa,0xf5,0xef,0x2b,0xdd,0x00,0x04,0x6c,0xaf,0xd0,0xdf,0x56, + 0x97,0xb3,0xb8,0x54,0x41,0x41,0x19,0x95,0xcb,0xa1,0xb7,0x72,0x6d,0xa6,0x2d,0x7e,0x98,0xa8,0x8a,0x7e, + 0xbe,0x48,0x54,0x4e,0x3f,0x5f,0x25,0x0a,0xdd,0xfc,0x7b,0xa2,0xa6,0x59,0x1d,0x37,0xc9,0x78,0x3a,0x7a, + 0xcc,0xeb,0x96,0xab,0xe9,0x68,0x5a,0xeb,0xbc,0xd5,0x59,0xb8,0x4c,0xa6,0xd9,0x9a,0x66,0x73,0xa1,0xeb, + 0x33,0x1d,0x37,0xaa,0x4d,0x68,0x8c,0xd3,0xd1,0xd3,0xbc,0x9c,0xea,0x39,0x1a,0xa0,0xaa,0xed,0xeb,0xc7, + 0xea,0x93,0x2e,0x91,0xf6,0x25,0xd2,0x8a,0xc6,0x17,0xda,0x47,0x02,0x2d,0xcb,0x50,0xed,0xef,0xea,0x6a, + 0x51,0x34,0x1a,0xd9,0x94,0x8a,0xca,0x9b,0x25,0x75,0x65,0x86,0xef,0xa8,0xc3,0x7e,0x7e,0xa7,0xfe,0x79, + 0x44,0x80,0x9a,0xaf,0xe6,0x6d,0x36,0xfd,0x8f,0x26,0x5c,0x5a,0x8c,0x0e,0x05,0xb0,0xb7,0x1e,0xd7,0x75, + 0x7e,0x7d,0x44,0xf0,0x9d,0xad,0x04,0x68,0xa8,0x79,0xf7,0x41,0x11,0x74,0xb1,0x5c,0xcd,0xe7,0xdb,0xb4, + 0x0d,0x06,0x76,0x5c,0xeb,0xbf,0xa8,0x06,0x9a,0x78,0x61,0x32,0xef,0x6a,0x25,0x97,0x2d,0x8e,0x1d,0xe0, + 0xda,0xb8,0xa8,0x8a,0xd9,0xd6,0x3e,0x9e,0x13,0x4a,0xb7,0x2d,0x6e,0xbb,0x16,0x77,0x76,0xe2,0x36,0x3b, + 0x6c,0x8f,0x12,0x85,0x41,0x25,0xa7,0x55,0x1d,0x0b,0xf8,0x12,0x40,0x67,0xed,0x68,0xae,0xcb,0xb3,0xf6, + 0x7c,0x5c,0x3e,0x2a,0xc6,0xe5,0xee,0x6e,0xa2,0xa5,0x51,0x54,0xaf,0xda,0xc3,0xf2,0x48,0x95,0xb4,0x86, + 0x63,0x3d,0xa7,0x49,0xb2,0x5f,0x56,0x5b,0x05,0x6d,0x9d,0xe4,0x2d,0x37,0x14,0x00,0xe0,0x79,0xde,0xbc, + 0xbd,0x2c,0x69,0x7d,0x96,0xba,0x6e,0xaf,0x4d,0xe7,0x55,0x95,0xec,0xec,0x74,0x2b,0xad,0x8e,0x54,0x45, + 0x95,0x32,0xd0,0x35,0x02,0x6d,0xb4,0x6f,0x62,0x82,0x82,0x55,0xb6,0x51,0x69,0x5b,0x7d,0xa0,0xb5,0x29, + 0xcf,0xc6,0x7e,0x61,0x6f,0x8a,0x86,0x97,0x82,0xb6,0xb4,0x79,0x7a,0xb2,0x3a,0x3d,0xd5,0x75,0xba,0x09, + 0x2d,0xdd,0xb5,0x93,0x62,0xbd,0xb9,0xa5,0x3a,0xcc,0xe7,0x53,0x7a,0x7c,0x51,0xd5,0x8b,0x67,0x79,0x9b, + 0x0f,0xd5,0xb5,0x2a,0x05,0xdf,0xcd,0xfc,0xe4,0xda,0xe2,0x3b,0x3b,0x2d,0x4d,0x4a,0xd3,0x02,0x82,0x83, + 0xe4,0x75,0xb7,0x83,0x3f,0x15,0xfa,0xf2,0x2f,0x56,0x1c,0x7c,0xb5,0xb3,0x13,0xbc,0xd0,0x36,0x41,0x2d, + 0x93,0xcd,0x24,0xaa,0x2f,0xa5,0xb5,0x6e,0x47,0x27,0xe6,0x2b,0xfb,0x14,0x76,0x2c,0xf8,0x0c,0x7d,0x93, + 0xa9,0x1d,0xea,0x52,0xc3,0x39,0x21,0xdc,0x52,0xf1,0x37,0xab,0xc5,0xc9,0xf0,0x34,0x97,0x9c,0xd3,0x2b, + 0x2e,0x6b,0x99,0x12,0x42,0x6d,0x7e,0xb4,0x23,0x1c,0xf8,0x78,0x4b,0x00,0x98,0x16,0x85,0xbf,0xa2,0x79, + 0xd3,0x9f,0x5b,0x49,0xe4,0x6f,0x2e,0xe1,0x8b,0x62,0xfe,0xd9,0xaf,0x90,0x3f,0xb0,0xf0,0xf3,0xea,0xe4, + 0x73,0x5f,0x21,0x7f,0xa0,0x2d,0xf3,0x41,0x5a,0xc9,0x14,0xea,0x7c,0x31,0x34,0x2c,0x60,0x84,0x9d,0x1d, + 0xda,0xe5,0xa3,0x65,0xb1,0xd4,0xfc,0xe5,0x8f,0xef,0x5f,0x7d,0xd0,0x79,0x3d,0x3d,0x7f,0x97,0xd7,0xf9, + 0xa2,0xf9,0x8b,0xb0,0xd0,0xfb,0xaa,0x07,0x6b,0xbd,0x5c,0x59,0xd6,0xbc,0x9c,0xe5,0xf5,0xec,0x49,0x5d, + 0x5d,0x36,0xba,0x7e,0x5e,0x5e,0xa4,0x1b,0xe7,0x6b,0x1c,0xb4,0xe4,0x96,0xad,0xcc,0x2f,0x8a,0xb3,0xbc, + 0xad,0xea,0xdb,0xdb,0xe8,0xbd,0xce,0xa7,0xed,0x9b,0xbc,0x2d,0x2e,0x34,0x75,0x25,0x73,0x59,0xd8,0x9b, + 0xb3,0xd5,0x14,0x63,0x1b,0xea,0xec,0x65,0x51,0xce,0xaa,0xcb,0xe1,0xbc,0x59,0x35,0x5d,0x2d,0x74,0x49, + 0xcb,0x4c,0xa8,0xe4,0x79,0x3e,0x3d,0x4f,0x73,0xc5,0x07,0x85,0xeb,0xde,0x56,0x1b,0x77,0x4e,0x7b,0xad, + 0xea,0x01,0x82,0x06,0xc7,0xfb,0x00,0x6e,0xd5,0x13,0x3e,0xf7,0x5b,0xa6,0x0e,0x40,0x91,0xf0,0xab,0x5e, + 0x7b,0x8c,0x47,0x94,0x40,0xcd,0x68,0x2f,0xaf,0xcf,0xb8,0x27,0x8d,0x45,0x7f,0x35,0xa1,0xbf,0x9a,0xd0, + 0x5f,0x1e,0xbb,0x2c,0xa9,0xc4,0x9e,0xa5,0xe5,0x5a,0xc9,0x91,0x99,0xf6,0x0f,0x10,0x53,0x20,0xa7,0xce, + 0xba,0x2c,0xee,0x37,0xa8,0x8b,0xac,0xa4,0x8e,0x6e,0xd2,0x52,0x7a,0xd2,0xc4,0xf8,0x38,0xd5,0x6b,0x3a, + 0xb2,0xd6,0x8a,0x76,0xdb,0x20,0x0c,0xb5,0x74,0xaa,0x2f,0xe7,0xf9,0x54,0xc7,0x0f,0xfe,0xfb,0xd7,0xe6, + 0x6f,0x0f,0x54,0x14,0x25,0x3e,0x89,0x52,0xee,0x71,0xd2,0x7a,0xdd,0x3d,0xd7,0x7a,0xa7,0x9a,0x47,0x9d, + 0xdd,0x42,0x7d,0x4a,0x8b,0xa6,0xde,0x4d,0x15,0xc8,0x0c,0xc6,0x16,0x71,0x7f,0xae,0x12,0xcc,0x21,0x4d, + 0x58,0xe9,0xe6,0x8e,0xe6,0x8d,0xa7,0x3a,0x9c,0x3a,0x47,0x62,0x8d,0xf2,0xe5,0x72,0x7e,0xcd,0xa3,0xdd, + 0xec,0xa6,0x5b,0xea,0x60,0xd0,0xdb,0xdb,0xed,0x68,0x5a,0x11,0x80,0xd7,0x04,0x65,0x55,0x3d,0x38,0x7f, + 0x9d,0x12,0x23,0x8b,0xc1,0x81,0xf3,0x86,0xd2,0xb1,0x6f,0x87,0xe6,0xa0,0x77,0x60,0xe3,0xa4,0x44,0xea, + 0xed,0x6d,0xac,0x89,0x9a,0x1b,0x5a,0xb6,0x11,0x28,0x8d,0x17,0x44,0x11,0xb6,0xaf,0x9e,0x0f,0x2f,0xec, + 0xa8,0x99,0x17,0x53,0xa2,0x92,0x09,0x06,0xe4,0x31,0xde,0x57,0xfb,0x49,0x42,0x95,0x62,0x5c,0xc7,0xb6, + 0x4b,0x09,0x53,0xaa,0x7a,0xfd,0x1f,0xd1,0x23,0xa0,0x94,0x2d,0x29,0xd3,0x50,0x0f,0xf9,0xbd,0x28,0x5b, + 0x5d,0x4f,0xf5,0x92,0x06,0x4c,0x47,0xa3,0x21,0x02,0x53,0xa6,0x12,0x55,0xad,0x9b,0x25,0xcd,0x87,0x96, + 0xd7,0xb5,0x23,0xf3,0xfe,0x2e,0x64,0xde,0x43,0x21,0xf3,0x0e,0xfe,0x4b,0xe8,0xbc,0x83,0x7f,0x10,0xb4, + 0x6f,0x12,0x94,0x9d,0x09,0xdb,0x3c,0x18,0x98,0xbc,0xa8,0x0c,0xc1,0x77,0xb3,0xaa,0xe7,0xa9,0x07,0x83, + 0xfd,0xa3,0xb5,0xf2,0x6f,0x07,0x47,0x49,0xa2,0x82,0xc2,0x85,0xea,0x0c,0x48,0xdd,0x2c,0x74,0x7b,0x5e, + 0xcd,0xd2,0xe8,0x4c,0xb7,0xd1,0x1a,0xa4,0xe3,0x48,0x52,0x88,0x4a,0x91,0x07,0xa2,0x06,0x5e,0x55,0x97, + 0xba,0x7e,0x9a,0x37,0xc4,0x3a,0xc8,0x14,0x66,0x87,0x8d,0x92,0x13,0x84,0x68,0x95,0xcc,0x52,0x87,0x34, + 0xf2,0x6a,0x7e,0xa1,0xa9,0xcb,0x63,0xc0,0xf4,0xc6,0x4c,0xd9,0xc1,0x8d,0x0c,0x26,0x8a,0xc3,0x41,0xea, + 0xd1,0xaa,0x6c,0xce,0x8b,0xd3,0x96,0x70,0xf7,0xe9,0x6a,0x7e,0x5a,0xcc,0xe7,0x7a,0xa6,0xb0,0x17,0x81, + 0x70,0xf4,0x2c,0xc1,0xa6,0x1d,0xa8,0x51,0x26,0xfb,0x8e,0x2a,0x97,0xab,0xe6,0xfc,0xee,0xfa,0xc6,0xda, + 0xee,0xa6,0x84,0xf6,0xde,0xa8,0x3d,0xd7,0x0c,0x40,0xdc,0x89,0x44,0xb9,0xa7,0x10,0x1d,0x55,0xae,0xa1, + 0xc3,0x68,0xa6,0xe7,0xba,0xd5,0x91,0xe2,0xa9,0x53,0xd1,0x39,0x41,0x29,0xfd,0x54,0x4b,0x34,0xdf,0x44, + 0x47,0xaa,0x03,0xf3,0x7e,0x89,0x89,0x2a,0xcc,0x02,0x9c,0xe5,0x91,0x19,0x8f,0xce,0x4c,0x51,0x6c,0xd7, + 0xab,0xbc,0xbd,0x25,0x04,0x6a,0x57,0xa9,0x55,0x58,0x6b,0xc2,0x5f,0xb4,0xad,0x93,0x4e,0x67,0x96,0x55, + 0x83,0x4e,0x2c,0x57,0xfc,0x37,0x6f,0xa7,0xe7,0x7f,0xbd,0x07,0xc0,0x9b,0x9f,0xeb,0x43,0x3d,0xd4,0x07, + 0x35,0x03,0xc5,0x56,0x9a,0xae,0xf8,0x9d,0x5e,0xff,0x07,0xbb,0x0b,0xd8,0x68,0xbb,0x18,0x05,0xa4,0x0a, + 0x1f,0xdf,0xbd,0x94,0xc3,0xe8,0x69,0x45,0x6b,0x5e,0xb6,0x7b,0x1f,0xa9,0xf3,0xd1,0x51,0x02,0xe8,0xef, + 0x27,0x66,0x3a,0xe9,0x33,0x54,0xff,0x85,0x9d,0x76,0xd3,0x2d,0x97,0x46,0xc0,0x8c,0xc5,0x34,0x47,0x17, + 0x1e,0x5c,0xed,0x5d,0x5e,0x5e,0xee,0xd1,0x24,0x2e,0xf6,0x68,0x4c,0xba,0x9c,0x56,0xc4,0x74,0xd2,0x2e, + 0xa0,0x3d,0x9d,0xcf,0xf2,0x65,0x1b,0xd2,0x5d,0xc2,0x0a,0xb6,0xe3,0xbb,0x49,0x86,0x5f,0x5e,0xbf,0xfa, + 0xae,0x6d,0x97,0xef,0x65,0xf6,0x26,0x2d,0x75,0xe1,0x1f,0xc4,0xa1,0x0f,0x94,0xa4,0x95,0x98,0xea,0xa6, + 0xe1,0x5d,0x8c,0x42,0x38,0x8e,0x08,0xe2,0xda,0x3a,0x2f,0x1b,0xf4,0xc6,0x54,0x91,0x1e,0x0e,0x1e,0x1d, + 0x15,0xad,0x59,0x77,0x54,0xe0,0x2d,0x3d,0x19,0xcd,0xd8,0x14,0x09,0x01,0xe1,0xe9,0xd2,0x7a,0xaf,0x42, + 0x49,0xb9,0x57,0x50,0x6c,0xbe,0x28,0x11,0x62,0xf4,0x32,0x21,0x6a,0x72,0xb4,0x41,0x52,0x73,0x86,0x21, + 0x76,0x39,0xbf,0x47,0x12,0x21,0x3f,0xae,0xd1,0xd3,0x3f,0x9d,0xf0,0xf1,0xf4,0x3c,0xaf,0x1b,0xdd,0x66, + 0xab,0xf6,0x74,0xef,0x1f,0x11,0x80,0xc9,0x32,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0x87,0xeb,0xfc,0xad, + 0xa9,0xca,0x8d,0x2a,0xbe,0xff,0xf0,0xf6,0xcd,0x48,0xd0,0x66,0x71,0x7a,0x0d,0x16,0x2c,0x6d,0xd7,0x47, + 0xe1,0x0c,0x1b,0x24,0x7d,0x18,0xee,0x11,0xb0,0x72,0x1b,0xb8,0x36,0x69,0xeb,0xeb,0x9b,0x36,0xe3,0x1a, + 0x97,0x68,0x05,0x27,0xdb,0x14,0x3b,0x0c,0x9f,0xac,0xed,0xc6,0x41,0xed,0xc5,0x42,0x57,0xab,0x36,0xdd, + 0x57,0x57,0x4d,0x7d,0xfa,0xb4,0xaa,0x3e,0x15,0xfa,0x4d,0xbe,0xd0,0x69,0xf4,0xcb,0x87,0xf7,0x2f,0xf6, + 0x3e,0xbe,0xfd,0xe1,0xf9,0x9b,0x88,0xf3,0xbe,0x23,0x5c,0xa1,0x6b,0x93,0xb7,0x17,0xe6,0x2e,0xf2,0x2b, + 0xb3,0xb4,0xaf,0x18,0x35,0xa5,0x7b,0x07,0xea,0x22,0x9f,0x17,0xb4,0xdb,0x34,0x91,0x98,0xed,0x6a,0x88, + 0x80,0xdd,0x6a,0xbf,0xc9,0x1e,0xee,0xef,0xd3,0x51,0xfc,0xe8,0x8b,0xfd,0xfd,0xf5,0x7a,0xdc,0x8c,0xce, + 0xb9,0x05,0x02,0xe4,0x69,0xb5,0x58,0x10,0xd9,0x7c,0xf3,0x78,0x0a,0x9c,0x99,0x6e,0x4c,0x9d,0xda,0x6a, + 0x89,0xc6,0x7a,0x40,0xd4,0x4d,0x41,0xcf,0x7f,0x7b,0xf0,0xb7,0x88,0xce,0xc7,0xe2,0x4f,0xd0,0x5c,0x17, + 0xb5,0xb8,0xd6,0x80,0x58,0x6e,0x80,0x0e,0x8a,0xff,0x04,0x33,0x75,0x3e,0xb7,0x52,0x8c,0x3c,0xe9,0x60, + 0x95,0xe6,0x4f,0xb0,0x0a,0xf6,0x66,0xcd,0x5b,0xff,0x6e,0xc2,0xcb,0xf5,0xa9,0xf5,0x75,0x09,0xee,0x23, + 0x52,0x9b,0xa8,0x87,0x9a,0xc0,0xee,0xc7,0xe5,0xd2,0x9e,0x74,0xc4,0x81,0xe8,0x6e,0x0a,0xe3,0x1d,0x4d, + 0xe4,0xa5,0x92,0x39,0x61,0x51,0x16,0xf5,0xf3,0xcf,0x08,0x0a,0xdf,0x39,0x05,0xf4,0xf4,0xb5,0xa0,0xa7, + 0x03,0x4b,0x09,0x7c,0x61,0x28,0x81,0x2f,0x85,0x25,0x3f,0xd8,0x07,0x4f,0xfe,0x39,0x32,0x5f,0x7e,0x47, + 0x27,0x6d,0x95,0x77,0x5e,0x46,0x27,0xf4,0x1c,0x4b,0x02,0xed,0x61,0xaa,0xea,0xab,0xe1,0xe9,0xf0,0x34, + 0x18,0x91,0x28,0xe6,0xf4,0x8e,0x83,0x13,0x61,0x2e,0xc8,0xee,0x94,0x68,0x00,0x60,0x79,0xb5,0xa4,0x07, + 0xb3,0x46,0xe3,0x3a,0xc4,0x34,0xa7,0x09,0x44,0x93,0x3c,0x17,0xcb,0x3e,0x46,0xe6,0x61,0xcf,0x98,0xa6, + 0xed,0x62,0x46,0x75,0x9e,0x45,0x55,0x09,0xa2,0xee,0x9a,0x18,0xaa,0x56,0xd3,0xde,0x2d,0xcf,0x08,0xc0, + 0x2e,0xb2,0xed,0x83,0x31,0xb6,0xe0,0x00,0x93,0x24,0x83,0x22,0x7a,0xce,0x0c,0xf7,0x97,0x67,0xd5,0x82, + 0x00,0xd6,0xd4,0x48,0x9c,0xd3,0x65,0xd1,0x9e,0x3f,0xad,0xf5,0x8c,0xda,0x2f,0xf2,0x79,0x13,0x15,0xe5, + 0xd6,0xec,0xf6,0x96,0xd0,0xd0,0x88,0x10,0x0d,0xa8,0x4b,0xe9,0xc9,0xe0,0xe7,0xd2,0x21,0x88,0x1c,0xb9, + 0x13,0xfb,0x6a,0x36,0xaa,0x4a,0xc2,0xd1,0x67,0x44,0x5d,0x04,0xd3,0x46,0x9b,0x9d,0x73,0xcc,0x36,0xef, + 0x64,0x00,0x56,0xf3,0x15,0xd1,0xe9,0x3c,0x71,0x8b,0x4c,0xde,0x46,0x04,0x05,0x75,0x49,0xbb,0x9c,0x3a, + 0x18,0xa9,0x33,0x9b,0xba,0xcc,0x9b,0xe6,0xb2,0xaa,0x67,0x48,0x1d,0x2f,0x47,0x8f,0x29,0xad,0xaa,0x8b, + 0x3f,0x78,0x4f,0x66,0xd1,0x93,0xbc,0x29,0xa6,0x5b,0xd1,0xee,0x2a,0x5e,0xec,0xd2,0x79,0xb5,0x7b,0x96, + 0xac,0x69,0x52,0xa8,0xe1,0x25,0x91,0x27,0x01,0x51,0x16,0x00,0xa6,0xaa,0x64,0x9c,0xd4,0x89,0x25,0x63, + 0x5f,0xf7,0xf0,0x41,0xd7,0x34,0x1d,0xc5,0x1f,0x44,0xfc,0xaa,0x6d,0x02,0x2c,0xfa,0xd0,0xf4,0xbe,0xb5, + 0x4f,0x6a,0x76,0x78,0x7e,0x14,0x0e,0x06,0xad,0x11,0xa8,0x7f,0x49,0x1b,0x60,0xc6,0xb4,0xf7,0x35,0x10, + 0x0f,0x8d,0xe1,0x02,0x3b,0x00,0x42,0xaf,0xd9,0xa8,0x61,0x54,0x74,0x7b,0x3b,0x73,0x14,0x18,0xe1,0xff, + 0x9d,0x9d,0x7d,0xf3,0x8d,0x4b,0x22,0x6a,0x6d,0xa6,0xaf,0xde,0xd2,0xa2,0x9e,0x42,0x58,0x10,0x11,0x51, + 0x7e,0x23,0xbc,0x0e,0xd0,0xc9,0xe3,0xf9,0xdc,0x22,0x62,0xc1,0x88,0xb2,0x6e,0x93,0x9c,0x86,0x3b,0x98, + 0x8d,0xf3,0x80,0x05,0x5a,0x75,0x76,0xc3,0xf4,0x47,0xeb,0x1a,0x03,0xd0,0x11,0x77,0x00,0x64,0x06,0xd6, + 0xb9,0x9b,0x31,0xf1,0x9d,0x4a,0xfd,0xe3,0x47,0x2a,0xab,0x64,0x24,0xe9,0xc1,0xc3,0x87,0x5f,0x64,0x7e, + 0x64,0x93,0x87,0xfb,0x5f,0xa6,0xf6,0xc5,0x94,0x41,0xf1,0x8d,0x72,0xd1,0x9b,0x6a,0xcb,0xc0,0x7d,0xe4, + 0x3e,0xe0,0x8a,0xcd,0x86,0x49,0x4b,0x45,0xec,0xd1,0x69,0x71,0x46,0x84,0x93,0x65,0x14,0x66,0xeb,0x71, + 0x81,0x6d,0x46,0xc8,0x47,0x11,0x5c,0xd2,0x80,0xd6,0x02,0x5a,0xba,0xae,0xab,0x3a,0x5c,0x8b,0x79,0x3c, + 0x8d,0xa3,0x37,0xba,0x25,0x70,0xf9,0xb4,0xf5,0x1c,0xb9,0x91,0x6a,0x15,0x4f,0xc1,0x2c,0x71,0x1f,0xdf, + 0x05,0x96,0xfc,0xb5,0x49,0xdf,0xa2,0x5d,0x14,0xed,0xba,0x55,0xdf,0x8d,0x16,0xcd,0x96,0xbe,0x9a,0x6a, + 0x0d,0x92,0x87,0xea,0x8c,0x9e,0x3f,0x7d,0xfb,0xe6,0xcd,0xe3,0x27,0x6f,0xdf,0x7f,0x7c,0xfe,0x2c,0xea, + 0xd4,0x5e,0x8f,0x86,0xc4,0x1b,0xb1,0x59,0xca,0x6b,0xe0,0x2c,0x62,0x6e,0x8e,0x33,0x02,0xc2,0xde,0x36, + 0xf4,0x3b,0x30,0x01,0x9f,0xd8,0x3d,0x16,0x27,0xd7,0x0c,0x5d,0x71,0x3f,0x3d,0x49,0x85,0xb5,0x18,0x1f, + 0x13,0xb8,0x2d,0x0f,0x25,0xdb,0x9f,0x98,0x47,0xd9,0x31,0xef,0x88,0x88,0xce,0x7b,0xb3,0x81,0x25,0x93, + 0x61,0x07,0x68,0xdc,0xe2,0xf9,0x65,0x8f,0xf1,0x75,0x32,0xaf,0x53,0x02,0x94,0xa9,0x41,0x56,0x40,0x30, + 0x91,0xc1,0xf5,0x01,0x9f,0x33,0x71,0x68,0x4d,0x1f,0x61,0x5d,0x7b,0x6d,0xd1,0xea,0xb5,0x72,0x42,0xf5, + 0x46,0x4c,0x5d,0x9e,0xf5,0xd3,0x32,0xec,0xbc,0x2e,0x40,0x32,0x51,0x31,0xeb,0x24,0xf5,0x40,0xd6,0x90, + 0x18,0x22,0x78,0x8e,0x70,0x52,0x6f,0x82,0x75,0xd2,0x9e,0xd3,0x72,0x10,0x47,0x3b,0xc8,0xad,0x57,0xe5, + 0xb3,0xea,0x92,0xd1,0xda,0x3b,0x83,0xcb,0x08,0x59,0x8f,0xf2,0xd9,0xec,0xf9,0x05,0xc8,0x8b,0xa2,0xa1, + 0xf1,0xd3,0x48,0x22,0x8b,0xe9,0x08,0x0a,0x06,0xbe,0x49,0x86,0x78,0x72,0x14,0xfc,0x71,0xd9,0xaf,0x7a, + 0xc5,0x29,0xfe,0xe9,0x4f,0xdb,0xea,0x56,0x81,0x39,0x9a,0x7a,0x25,0x05,0x0b,0x16,0xfc,0x2b,0xd8,0x17, + 0xe6,0x32,0x99,0x4d,0x0b,0xcf,0xb2,0x19,0xcf,0x79,0x7e,0x42,0x87,0x1c,0xa1,0x42,0x08,0x0c,0x0d,0xe4, + 0x62,0x81,0xc2,0x35,0x8f,0x4f,0x25,0x59,0x61,0x3d,0xe9,0xa4,0x3c,0xfd,0x0f,0xce,0x6e,0x3a,0x95,0xef, + 0xa0,0x2c,0xf0,0x89,0xe1,0x3c,0x46,0xb2,0xd3,0x47,0x5d,0x82,0x6d,0x5c,0x1a,0xb4,0x40,0x9c,0xcd,0xce, + 0xce,0x76,0x11,0xdb,0xf7,0x64,0x42,0xbc,0x55,0x1c,0x19,0xc0,0xda,0x3a,0xcd,0x09,0x45,0xce,0xb6,0x00, + 0x3c,0x5b,0x52,0x60,0x0b,0xf4,0x31,0xed,0x5a,0xfb,0x81,0xb2,0x2d,0x08,0x06,0x28,0x9d,0xfa,0xa9,0x04, + 0x7d,0x1b,0x97,0x7f,0x7d,0x34,0x07,0x77,0x8f,0x46,0x15,0xaa,0x92,0x11,0xe5,0x7c,0x64,0x32,0xd6,0x01, + 0x4f,0xef,0x34,0x4d,0xb9,0x2b,0xf6,0x3f,0x11,0x81,0x81,0xdf,0x54,0x45,0x20,0x6d,0x93,0x21,0x65,0x94, + 0x01,0x02,0x6b,0x84,0x31,0x67,0xa5,0x6c,0x18,0x91,0x85,0xd4,0xc1,0xe6,0xc9,0x0a,0xe2,0x95,0xfe,0x07, + 0x0a,0xa5,0x2d,0x61,0x36,0x7e,0x7c,0xff,0xf2,0x69,0xb5,0xa0,0x9a,0x08,0x2a,0x29,0xd3,0x8b,0xf5,0xfe, + 0xf7,0x97,0xfb,0x0f,0xce,0x0a,0x15,0xfd,0x9f,0x50,0xd6,0xf7,0xbf,0xbf,0x78,0xcc,0x89,0x69,0x27,0xf1, + 0xe1,0x97,0x0f,0xce,0x54,0x74,0xaf,0x9b,0xf6,0x94,0x0b,0xaa,0x6e,0xe2,0x3e,0x0a,0xee,0x76,0xd2,0xbe, + 0x7a,0xc2,0x05,0x0f,0xbb,0x89,0xcf,0x38,0xf1,0x28,0x0a,0x79,0xd8,0xcf,0x80,0x1b,0x61,0x84,0x6d,0x6d, + 0x55,0xb1,0x2d,0xaf,0x6a,0x05,0xca,0xa9,0x4c,0x40,0x58,0x6a,0xa3,0x3a,0xa2,0x84,0x21,0xc6,0x4c,0x27, + 0x54,0x4a,0x07,0x2c,0x16,0x97,0x36,0x0b,0x7e,0x78,0x34,0xf6,0xb4,0xbb,0xee,0x2d,0xee,0x90,0xfa,0x8b, + 0x96,0xcc,0x71,0x87,0xcc,0xbc,0xc7,0x7a,0x37,0x8b,0x0e,0x8f,0x0c,0x4f,0x6a,0xd3,0x89,0x00,0x33,0xfa, + 0xb0,0x62,0x88,0x0c,0x07,0xef,0x35,0x12,0x35,0x04,0x33,0x96,0xa0,0x4e,0xaa,0x97,0x1f,0xde,0xda,0x2e, + 0x76,0x99,0x40,0xe6,0x9b,0x37,0x39,0x3c,0xe8,0x5b,0x21,0xef,0x21,0xe4,0x9c,0xec,0x46,0x59,0xb4,0xcb, + 0xaa,0x37,0x08,0x28,0x40,0x70,0xe7,0xa3,0xdf,0xaa,0xa2,0x8c,0xa3,0x1d,0x9a,0x64,0xcb,0x48,0xa3,0xa2, + 0xdd,0x2c,0xde,0x3b,0x80,0x1e,0xc4,0x93,0x2a,0x93,0x28,0x99,0xd0,0x9f,0x14,0x65,0x77,0xab,0xe4,0xcf, + 0x01,0xae,0x43,0xe0,0x1f,0x46,0x39,0xa8,0xd9,0x28,0x0f,0xc9,0x3a,0x7a,0xb7,0x07,0x8e,0x88,0x9c,0x82, + 0x04,0x3e,0x81,0x54,0xa4,0xdb,0xfc,0x0c,0x3f,0x57,0xcb,0x82,0x80,0x9d,0x9e,0x4e,0x09,0xe1,0x81,0xe1, + 0x12,0xfe,0xa9,0x38,0xdd,0x5b,0x54,0xb3,0xe2,0xb4,0xd0,0xb3,0xbd,0xa6,0x20,0xb4,0x28,0x69,0xab,0x72, + 0x23,0x75,0x9e,0x37,0xad,0x2b,0x8b,0xf7,0x6a,0x6a,0xfb,0x40,0xdc,0x25,0xb8,0xef,0x4b,0x3a,0xc8,0xd1, + 0x02,0xa1,0xd4,0xab,0xeb,0xbd,0x7e,0x47,0x6b,0x4d,0x3c,0x3d,0x1d,0xa7,0x78,0xa2,0x63,0x6a,0x2f,0x3f, + 0x6d,0xf9,0x0d,0xc4,0xec,0x1e,0x8d,0x8d,0x28,0x9d,0xa3,0x3b,0xd8,0x0a,0x16,0x0e,0xd2,0x06,0xaf,0x20, + 0x79,0xf1,0x1a,0x7f,0xe2,0xda,0xfd,0xaa,0x8f,0x1a,0x62,0x40,0xdb,0x38,0xfa,0xb5,0x24,0x18,0xe9,0x71, + 0xdf,0x55,0xb8,0x0c,0xb4,0xeb,0x94,0xce,0x88,0x2b,0xab,0x8b,0x05,0x3e,0x5b,0x9d,0xd0,0x7c,0xc7,0xfb, + 0x84,0x76,0x92,0xee,0x59,0xad,0xca,0x8d,0x52,0xd5,0xee,0x01,0x01,0x84,0x1c,0x9e,0x39,0x1d,0xe1,0x2c, + 0x54,0x32,0x15,0xeb,0xe4,0x9b,0x6c,0xdf,0xec,0x9e,0x31,0x32,0x33,0x90,0x12,0x7b,0x53,0x26,0x40,0x98, + 0x14,0x98,0xf0,0x37,0x13,0xfc,0x49,0x0f,0x8f,0x12,0x60,0x28,0x9a,0xc2,0xf8,0xb0,0x3c,0x4a,0x52,0x97, + 0xb3,0x1b,0x29,0xa0,0xe6,0xb4,0x04,0xc3,0x9b,0x53,0xc6,0x5f,0x87,0x92,0x60,0xf6,0xee,0xa2,0xad,0x26, + 0xa1,0x82,0xc0,0x2b,0x6a,0x9c,0x45,0x42,0xeb,0x84,0x92,0xbc,0x03,0x69,0x00,0x8f,0x5b,0x6a,0xe7,0x64, + 0x45,0x3b,0x28,0x3a,0xa7,0x25,0x8c,0x60,0x64,0x40,0xe8,0x72,0x84,0x17,0x6c,0xbb,0x3b,0x8a,0xdc,0xe0, + 0x29,0x95,0x62,0x8a,0x45,0x84,0xd3,0x6a,0x4e,0xef,0xf6,0x71,0xe2,0x1f,0x3d,0xc6,0x4a,0x45,0x05,0x92, + 0x12,0x57,0x03,0xf0,0xc4,0xe7,0xf4,0xa3,0x1a,0xc6,0x33,0x29,0xda,0xc2,0xc3,0xc4,0x3e,0x84,0x0a,0x95, + 0x89,0xff,0x32,0x6f,0x50,0x16,0x3f,0x13,0xf9,0x09,0xca,0xfd,0xaf,0x4e,0x03,0xe0,0xa1,0x4c,0x23,0x78, + 0x54,0x98,0x3b,0xf4,0x91,0x7e,0xd4,0x32,0x6f,0xcf,0x39,0x3f,0x7a,0x80,0xc5,0xa3,0x54,0x93,0x30,0x82, + 0x50,0xe8,0x71,0x1b,0xef,0x27,0x13,0x9f,0x88,0x52,0xbb,0xfe,0x55,0xc4,0xf3,0xb4,0x56,0xd9,0x83,0x78, + 0xd1,0x14,0xfa,0x96,0x26,0x08,0x64,0x5b,0xf2,0xa0,0x18,0xb5,0x90,0x81,0x7a,0x15,0x1c,0xc0,0xff,0x31, + 0xa0,0x1f,0x9b,0xdc,0x6a,0xd5,0x8c,0x45,0xc6,0xf3,0xb9,0xc6,0x5b,0x1c,0xe5,0x91,0x3b,0x27,0x69,0x8d, + 0x0c,0x2f,0x3e,0xb2,0x3b,0xd0,0xac,0x85,0x97,0x3e,0x58,0xca,0x41,0xa0,0x80,0x71,0x5d,0x49,0xe8,0x8f, + 0xfe,0xa4,0xa5,0x37,0x28,0xb1,0xf3,0xcf,0x54,0xaa,0x7d,0x01,0x44,0x63,0x3e,0x38,0x11,0x0f,0xeb,0x35, + 0xe1,0xc9,0x0d,0x95,0xe3,0xf6,0xfe,0xe7,0xcf,0xe8,0x40,0x19,0x64,0x74,0x1d,0x0b,0x22,0xc5,0x68,0x97, + 0x67,0x91,0x74,0x68,0x0b,0x68,0x8a,0x78,0xe5,0x66,0x2b,0xa7,0xbe,0x94,0x4c,0xda,0x6c,0x61,0x66,0xf3, + 0x29,0xd0,0xc2,0x5a,0xa0,0x3a,0x7a,0xfc,0xe4,0xe9,0xb3,0xe7,0x2f,0xbe,0xfd,0xee,0xe5,0xf7,0x3f,0xbc, + 0x7a,0xfd,0xe6,0xed,0xbb,0x7f,0xbe,0xff,0xf0,0xf1,0xc7,0x9f,0x7e,0xfe,0xe5,0x5f,0xff,0xce,0x4f,0xa6, + 0xc4,0xce,0x9f,0x9d,0x17,0xbf,0x7d,0x9a,0x2f,0xca,0x6a,0xf9,0x7b,0xdd,0xb4,0xab,0x8b,0xcb,0xab,0xeb, + 0x3f,0xf6,0x0f,0x1e,0x7e,0xf1,0xe5,0x57,0x7f,0xff,0xaf,0x7f,0x7c,0xbd,0xfb,0x20,0x8b,0xc6,0xa5,0x97, + 0x50,0x7b,0xc2,0x43,0x05,0xa9,0x42,0x1a,0x7c,0xd5,0x49,0xc2,0x22,0x66,0xd1,0x4b,0xe9,0xd7,0x53,0xdb, + 0x2d,0xcb,0x29,0x0d,0x22,0x29,0xab,0x6f,0xd3,0x20,0x61,0x32,0x33,0xed,0x2d,0x84,0x31,0x04,0x6d,0x4d, + 0xb6,0x0f,0xc3,0x9b,0x71,0xe5,0xa0,0xe7,0xb6,0xc1,0xe9,0x35,0xcd,0xe8,0x44,0x51,0xcd,0xff,0x26,0xc2, + 0x29,0xdf,0xcd,0xa6,0x36,0xf7,0xef,0x5f,0xec,0xe8,0x6f,0xbe,0xf9,0xc7,0x1e,0x65,0xfc,0xed,0x1f,0x09, + 0xa3,0x9b,0xb8,0xc8,0xe4,0xe3,0xa7,0xd4,0x5b,0x2a,0xd2,0xec,0x66,0xa3,0xff,0xfa,0x2a,0x49,0xbe,0x79, + 0xf8,0xd5,0x57,0x86,0x60,0xc7,0xe8,0xca,0xb1,0xce,0xf4,0xa3,0x47,0xff,0xb8,0x2d,0xec,0x71,0xf4,0xff, + 0x18,0x81,0xdc,0x5c,0xd6,0x45,0x47,0xab,0x6f,0xa9,0x36,0x42,0x56,0x37,0x62,0x06,0x42,0xa7,0x7d,0x63, + 0x74,0x24,0x7c,0x60,0x0e,0xd0,0x48,0x44,0x2d,0x30,0xff,0x27,0x66,0x08,0x04,0x98,0x3b,0x3b,0xe6,0x13, + 0x7b,0x52,0xd1,0x77,0x18,0x0f,0x9f,0xdd,0x25,0x30,0xf3,0xb7,0xaf,0x3f,0x3a,0xe9,0xad,0x0a,0x20,0xbb, + 0x08,0xbe,0xc5,0xfe,0xa3,0x0f,0x8b,0x4e,0x81,0x2a,0x28,0x30,0x63,0x01,0x0d,0x15,0xa9,0x20,0xb8,0x20, + 0x20,0xcf,0x7d,0x5e,0xa3,0xa7,0xab,0x1a,0x52,0x6f,0xbf,0x0b,0x19,0x77,0x67,0x8d,0x39,0xe3,0xc7,0x5b, + 0x74,0xc8,0x2b,0x30,0x97,0xe9,0xc6,0xe9,0x94,0xf5,0x3e,0x1a,0x2d,0x98,0xcf,0xc2,0x10,0xde,0xeb,0xb3, + 0xe7,0x57,0xcb,0x38,0x8a,0xff,0xfb,0x76,0xfc,0xeb,0xaf,0xcd,0xdf,0x92,0x98,0x18,0x66,0x22,0xdf,0xb2, + 0xf8,0xf0,0xbf,0xc7,0x47,0x7f,0x4b,0x22,0xaf,0x0a,0xd2,0xc4,0x1f,0x6e,0xce,0xd5,0xe1,0x17,0x47,0x22, + 0x9f,0x40,0xe3,0x8b,0xea,0xa2,0x6b,0x1d,0xc1,0xbb,0x8b,0x17,0x85,0xd6,0x82,0x40,0x0d,0x33,0x36,0x2a, + 0xab,0xcb,0x38,0xd9,0xfb,0xc7,0xdf,0xbf,0xd4,0x5f,0x11,0x35,0x9d,0xf6,0x17,0x0d,0x32,0xa7,0xee,0x38, + 0x3a,0xfa,0xd3,0xcd,0x76,0xe8,0x83,0xff,0x80,0x3c,0x36,0x9d,0x3a,0x27,0xf0,0x99,0x43,0x5a,0x7c,0x78, + 0x14,0x12,0xa0,0xa1,0x5e,0x92,0x2a,0x18,0x56,0x64,0x77,0x2a,0x90,0x05,0xba,0x71,0xfa,0x36,0x96,0x79, + 0x88,0xbe,0x4d,0xb4,0xee,0x9d,0xc2,0x42,0x09,0xed,0x1d,0x40,0xc2,0xe0,0x5b,0xe2,0xf2,0xd9,0xc6,0xc4, + 0xd9,0xaf,0x88,0x88,0x04,0xd9,0xd6,0x4b,0x32,0xfc,0x5e,0xa7,0x22,0x43,0x71,0x64,0x5d,0x2a,0xd3,0xd1, + 0x21,0x61,0x0d,0x81,0x11,0x81,0x23,0x73,0x35,0x31,0xa0,0xf4,0x4a,0x2c,0xe2,0xff,0x50,0xbb,0x05,0xbb, + 0xc3,0xcf,0xf0,0xb3,0x8c,0x0a,0x5e,0x9e,0x1a,0xee,0x4f,0xcf,0xe2,0x0d,0x05,0xd6,0xc1,0xd7,0x22,0x21, + 0x86,0x69,0x9e,0xb3,0x09,0xa4,0xd7,0x03,0x08,0x88,0xe9,0xf7,0x0e,0x1e,0x81,0x96,0x06,0xe8,0xac,0x1d, + 0x9d,0xe4,0x46,0x2c,0xb7,0x3d,0x35,0x52,0x18,0x66,0xb0,0xe8,0x21,0x5b,0xc5,0x2e,0x5b,0x19,0x01,0x8d, + 0x72,0x32,0x5e,0x2f,0xed,0x65,0xc5,0x9f,0x08,0x81,0x33,0xc8,0x18,0x59,0x1a,0xec,0x72,0xa1,0xa8,0xe9, + 0xa9,0xac,0xc2,0x5a,0xac,0x28,0xdf,0xa5,0x8c,0x44,0x17,0x61,0x2a,0x75,0x42,0x7f,0x23,0xd2,0x3c,0xea, + 0xa6,0xe3,0x2d,0xf9,0x53,0x45,0x84,0x1a,0x52,0x2f,0x80,0xb4,0x46,0x43,0xa1,0x9e,0x81,0xd6,0xd5,0x0a, + 0xed,0x5d,0xcb,0xfa,0x68,0x6d,0x37,0x34,0x75,0xd2,0x68,0xfc,0x6e,0x6f,0x1b,0xfb,0x98,0x80,0x43,0xec, + 0x8a,0x1b,0x3c,0xdc,0xf3,0x1c,0x6b,0x3b,0x35,0xf2,0x40,0xef,0x83,0x53,0x23,0xac,0x2b,0x15,0x5f,0xab, + 0x81,0x9a,0x72,0x7a,0xa6,0x13,0x46,0x2a,0x84,0xdd,0x9e,0xe5,0x75,0xc1,0x4c,0x79,0x0d,0xb7,0x6b,0xa9, + 0x93,0xa2,0x82,0xf7,0xcf,0xb5,0x4d,0xeb,0xeb,0xd5,0xf4,0xcc,0x47,0xe9,0xff,0x48,0x73,0xf1,0x19,0x6e, + 0xd4,0x4e,0x88,0x5b,0xaa,0xb2,0x43,0xe1,0x40,0xc5,0x09,0x84,0xb1,0xde,0x64,0xa4,0xfe,0x82,0xbc,0xc0, + 0xd1,0x31,0xf1,0x76,0x7b,0x7b,0x0b,0x6b,0x8e,0xe3,0xa7,0x8f,0xdf,0x3c,0x7d,0xfe,0xea,0xf8,0xf8,0x7f, + 0x20,0x7d,0xb0,0xb5,0x3d,0xf8,0xef,0xf8,0x30,0xdf,0xfb,0xe3,0x08,0x7f,0x7e,0x9d,0xfd,0xba,0xfb,0xeb, + 0xde,0xaf,0xa3,0xa3,0xbf,0xa5,0xc9,0xe4,0xd7,0x07,0xbf,0x3e,0xb0,0xa4,0x5f,0xfb,0x3f,0x12,0x6f,0x78, + 0x81,0xc3,0x24,0x30,0x24,0xfa,0xf5,0xc1,0xae,0x90,0xcc,0xbb,0xa0,0x3f,0x75,0x48,0x10,0x3f,0xd8,0x15, + 0x52,0xf7,0x4f,0x26,0xa7,0x6b,0xb5,0xd3,0xa1,0xd4,0xda,0x75,0x39,0x60,0xbc,0x99,0x6d,0x1c,0x19,0x91, + 0x18,0xfb,0x46,0xbb,0x71,0xf8,0x39,0x31,0xba,0x10,0x0c,0x07,0x29,0x29,0xac,0x9b,0x3a,0x54,0x96,0x9f, + 0x74,0xa8,0x47,0x02,0x73,0xea,0xff,0x08,0x1d,0x42,0x90,0xe9,0x64,0x89,0xdb,0x81,0x82,0xd5,0x11,0x45, + 0x10,0x6a,0x8a,0xbc,0x89,0xa8,0x0b,0x3a,0xe5,0x89,0xee,0xde,0x5a,0xac,0x9a,0x76,0xeb,0x44,0x6f,0xe5, + 0xce,0x66,0x6a,0x14,0x19,0x33,0x94,0x31,0xf7,0xda,0x08,0x06,0xb3,0x41,0x65,0x16,0xcc,0x40,0x68,0x82, + 0xe4,0x83,0x32,0xc3,0x07,0xe3,0xb6,0x93,0x0d,0x29,0x5a,0xde,0x00,0x2d,0xc5,0xf6,0x91,0xab,0x2a,0x78, + 0x3f,0xba,0x34,0x88,0x11,0x3c,0x82,0xfe,0xa2,0x7b,0x3a,0xf6,0x71,0x79,0x4f,0x9d,0x62,0xac,0x2a,0xb8, + 0x1a,0x19,0x6c,0x90,0x82,0x43,0xab,0xa9,0x56,0xf5,0x54,0x87,0x5f,0x85,0xc6,0x06,0x37,0x2d,0x0e,0x0c, + 0xb6,0x27,0xaa,0x3b,0xa8,0xa8,0xcd,0x70,0xa8,0xca,0xa1,0xc2,0xf0,0x73,0xe7,0x41,0xf5,0x1f,0xec,0x8d, + 0xad,0x01,0x14,0x65,0x0d,0xca,0x58,0xec,0xa8,0x61,0x53,0x06,0xbd,0x67,0xbf,0x85,0xbb,0x7d,0x20,0x06, + 0x94,0x99,0xff,0x8f,0xdc,0x20,0x34,0x1c,0x1b,0x7e,0x5a,0xe9,0x61,0xb7,0x86,0x61,0x60,0x6c,0x07,0xed, + 0x60,0x6f,0x6f,0x31,0x3a,0xb6,0x88,0x0d,0x8c,0x21,0xfb,0x25,0x45,0xe6,0x65,0x25,0x61,0xeb,0xee,0xae, + 0xb4,0x2c,0x57,0xb7,0x92,0xd0,0xac,0x7d,0xc3,0xba,0xe0,0xf6,0x76,0xd3,0x8e,0x97,0xd2,0x9a,0xeb,0xc5, + 0x49,0x35,0xef,0xa6,0x9d,0x54,0xd5,0x5c,0xe7,0xe5,0xa0,0x5d,0xfb,0xff,0x1b,0x4b,0x78,0x91,0xb0,0xb1, + 0xf1,0xed,0xa2,0x1c,0x34,0x84,0xb7,0x44,0x34,0x1b,0x42,0xb0,0x4d,0x5e,0xec,0x18,0x28,0x4f,0x1c,0x7f, + 0x93,0xed,0xef,0xec,0xbc,0x26,0x12,0x7f,0x74,0x3a,0xaf,0x2a,0xc8,0xe3,0x32,0xa6,0xa7,0x60,0x60,0x52, + 0x32,0xfd,0x1b,0xd4,0xda,0xf4,0xba,0x4e,0x9d,0x9d,0x44,0xd1,0xa6,0x67,0x4b,0x3b,0xe9,0x8b,0xfc,0x44, + 0x0a,0xfe,0x30,0x49,0x5d,0x17,0x7c,0xad,0xd3,0xc1,0xbe,0x7a,0x29,0x36,0x71,0x34,0xf9,0x1b,0xea,0xd8, + 0xa4,0x25,0xc2,0xd4,0x7d,0xb5,0x32,0x16,0x92,0xce,0x22,0xd3,0x98,0xc6,0x0b,0x97,0x1f,0x8b,0xf6,0xa0, + 0xce,0x9c,0x0c,0x4b,0x41,0xcc,0x99,0xed,0x8f,0x8b,0x47,0xb5,0x35,0x25,0x2b,0xc4,0x30,0xf3,0xb0,0x38, + 0x3a,0x22,0x5c,0xe9,0xf9,0x85,0x21,0xed,0xfb,0x61,0xdb,0x15,0x64,0x1d,0xad,0x87,0x8c,0x3b,0xa8,0xd8, + 0xd1,0xda,0xf7,0x71,0xee,0xdc,0x11,0xac,0x1f,0x81,0x55,0xa9,0xb6,0x81,0x88,0x8b,0xc5,0xc1,0xdf,0xec, + 0x1d,0x38,0x29,0x31,0x77,0x99,0x4e,0x9c,0x52,0x1d,0x24,0x41,0x6d,0xa7,0x9d,0x33,0xeb,0xd8,0xae,0x3a, + 0x36,0xb9,0x2b,0xb3,0xf4,0x73,0x39,0x30,0x1f,0xe3,0x3e,0xda,0xf0,0x24,0x81,0x3e,0x2c,0x8f,0x60,0xd8, + 0x49,0x3f,0xb0,0x10,0x4e,0xc2,0x86,0x67,0x1b,0xc6,0xa8,0x46,0x1a,0x52,0x0f,0x18,0x0a,0x1b,0x0a,0x63, + 0x52,0x7f,0x73,0x30,0xf1,0xc6,0xad,0xae,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xed,0xb3,0x93,0xf3,0x96, + 0xa3,0x63,0xa9,0xc8,0x79,0x5e,0xa8,0xd2,0x77,0xe4,0x5c,0x3a,0x42,0x18,0xe4,0xf6,0x76,0x7f,0xec,0x97, + 0xde,0x96,0xdd,0xd3,0xb4,0xe2,0xde,0x32,0xb7,0x4c,0xc6,0xe5,0xde,0xde,0x38,0xa9,0x79,0x50,0x87,0xe5, + 0xae,0x76,0x66,0xb7,0xb5,0xaf,0xf4,0xa2,0x07,0x48,0xf0,0xde,0xd0,0x09,0x7c,0x3b,0x32,0xcc,0x86,0x93, + 0x8c,0xfa,0x2f,0x16,0x1d,0xd1,0x04,0xac,0xa6,0x4b,0x02,0xac,0xf2,0x91,0x77,0x16,0x21,0xc0,0x42,0x05, + 0x3b,0x3b,0x17,0xd0,0x3e,0x42,0x18,0xe9,0xa0,0xcb,0x57,0x73,0x66,0xcf,0x61,0x9f,0x74,0xed,0x01,0x06, + 0xdb,0x30,0xb1,0x58,0xca,0x1c,0x89,0x7c,0xce,0xd5,0xf4,0x23,0x40,0xb3,0x4d,0x07,0xe1,0x76,0x6d,0x0b, + 0x11,0xd7,0xb2,0x5d,0xef,0xec,0xb8,0x0d,0x46,0x15,0x98,0x67,0x2a,0x0d,0x1d,0x26,0xeb,0x1e,0x32,0x9e, + 0x9a,0x40,0xdc,0x4f,0x6c,0x4b,0x37,0x49,0xea,0xae,0x76,0x76,0x72,0x0f,0x90,0x66,0x4d,0x20,0xbf,0x92, + 0x47,0x70,0x48,0xfa,0x42,0xd7,0xd7,0xc1,0xf9,0x1c,0x10,0x98,0x3c,0x0e,0x0c,0x7b,0x2d,0x95,0xdd,0xde, + 0xda,0xca,0xb6,0x0f,0xc6,0x22,0xd0,0x30,0xe0,0xf9,0x49,0x5f,0x03,0xab,0x10,0xb7,0x14,0x26,0x78,0xbb, + 0xf2,0xc6,0xb7,0x3d,0x75,0x6d,0x37,0xfd,0xb6,0x3b,0x2d,0xc3,0x2b,0xc7,0x34,0xee,0x8d,0xbf,0x6c,0xeb, + 0x01,0x58,0x1f,0xf7,0x31,0xc8,0xc6,0x1a,0x52,0xd7,0x6d,0x7d,0x89,0x73,0xa7,0x33,0x3d,0x23,0x5e,0xd8, + 0xd5,0x74,0xe2,0x77,0x1d,0x8d,0x6f,0xd3,0x6c,0x5c,0xb3,0xc9,0x34,0x93,0x63,0xb2,0x21,0xf8,0xf0,0xf3, + 0x7b,0x22,0xdc,0x6c,0x97,0xbe,0x2e,0x88,0x7a,0xa2,0x24,0x14,0x50,0xed,0xbb,0x79,0xf9,0xe2,0xef,0x58, + 0x8d,0xdb,0xdb,0xaf,0xbf,0xc2,0xaf,0xff,0xfc,0xca,0xea,0xed,0x92,0x1b,0x33,0xa1,0x72,0xfa,0x5a,0xb7, + 0x23,0xce,0xa6,0xfa,0xe7,0x2b,0x9d,0x96,0x4a,0xd3,0x81,0xa6,0xeb,0xfc,0x64,0xae,0xd3,0xed,0xed,0x5a, + 0x41,0xa2,0x21,0x2f,0xfb,0xc6,0x12,0x62,0x65,0x32,0xf7,0xd7,0x01,0x92,0xb9,0x17,0x9c,0x47,0x03,0x0a, + 0xe7,0x9d,0x9d,0x07,0x25,0xfb,0x45,0xb0,0x4e,0xf4,0x81,0xa1,0xd0,0x43,0x43,0x41,0x5f,0xd5,0xa7,0x9e, + 0x85,0x53,0x4b,0x6b,0xc1,0x87,0xb7,0xea,0xfe,0xf8,0x93,0xcb,0x7f,0xfb,0xd4,0x98,0x0a,0x18,0x14,0x30, + 0xb5,0xc2,0x9d,0xb7,0x62,0xd6,0x6b,0x50,0x01,0xd5,0x48,0x6d,0xe7,0x67,0xca,0xb1,0xc4,0xd3,0xf3,0x62, + 0x3e,0xab,0x75,0x09,0xe6,0x0b,0xd6,0x1f,0x04,0xc9,0xf3,0x85,0x62,0xe5,0x26,0xbf,0x23,0x23,0x6f,0xae, + 0xcb,0xe9,0x8b,0x1c,0x66,0xf2,0xd7,0x5e,0x9d,0x3a,0x2a,0xc1,0x70,0xa3,0x6a,0x91,0xe4,0xb5,0xc5,0x14, + 0x98,0xdc,0x3c,0x52,0x2a,0x01,0x6f,0xc6,0x20,0xcc,0x25,0x9e,0x12,0x6b,0x4b,0xfd,0xe1,0x22,0xe6,0x99, + 0xd2,0x4f,0xcb,0xa7,0xd2,0x10,0xa5,0xbb,0x67,0x4e,0x37,0x1d,0xe7,0x74,0x37,0x08,0x7a,0xfe,0x30,0xa5, + 0xb5,0x7b,0x39,0xe3,0x74,0xf3,0x2c,0xf5,0xcf,0x69,0xbc,0xec,0x79,0xa9,0x45,0x1d,0x6b,0x06,0x46,0x2f, + 0xb5,0x7b,0xc9,0x3e,0x04,0x39,0x30,0x2c,0x4a,0xa0,0xbc,0x2d,0xc3,0xc2,0x65,0x58,0xb8,0xec,0x16,0x26, + 0x7c,0xe3,0x67,0xfc,0x43,0x7f,0xc7,0x38,0x24,0xdd,0x45,0xbb,0xe6,0xa0,0x2d,0xf9,0x84,0xc5,0xf9,0x9a, + 0xd1,0x5a,0xd1,0x4f,0xe0,0x2f,0x12,0xd4,0xfa,0xd8,0x21,0x3d,0x71,0x09,0xda,0x8e,0x3b,0x0e,0x3c,0x6d, + 0x6d,0x0d,0x91,0xdc,0xce,0x82,0x50,0xee,0xf8,0xb8,0x3a,0x39,0x3e,0x8e,0xd8,0x58,0x45,0x9e,0xc3,0x8f, + 0x9a,0x7a,0x82,0xde,0x49,0x46,0x9a,0x13,0xd9,0x7e,0x5e,0xad,0xe6,0x33,0x9a,0x6d,0x42,0x1c,0x04,0xa1, + 0xdb,0xdf,0x97,0x6c,0x24,0xd8,0xc7,0x86,0xb7,0xb7,0x20,0xb6,0x28,0xc7,0x6c,0x9e,0xa2,0x79,0x0e,0xaf, + 0x96,0xa6,0x38,0x61,0x6b,0x5b,0xfa,0x90,0x9d,0x14,0x88,0x8a,0xc5,0xbc,0xf1,0xa0,0x1b,0xd6,0x5d,0x62, + 0x09,0x78,0x5e,0x2f,0x16,0x4f,0xab,0x55,0xd9,0xee,0xee,0xd2,0xc1,0xe5,0xc7,0xf8,0x31,0x54,0xa7,0x0b, + 0x22,0xc6,0xb7,0xff,0x2a,0x09,0xfd,0x9a,0xa6,0xce,0x74,0x1b,0xb8,0x07,0x3e,0xd3,0xcd,0xb4,0x2e,0x60, + 0x39,0xcf,0xb3,0xc3,0xe8,0x3e,0x27,0x74,0x7f,0x40,0xe4,0x62,0x3e,0x0a,0x37,0xa7,0x95,0x10,0xe7,0x84, + 0xb1,0x51,0x09,0xa1,0x52,0x7e,0x6c,0xe8,0x71,0x95,0x6d,0x17,0x3b,0x3b,0x8f,0x71,0x12,0x7e,0x06,0x1b, + 0x84,0x58,0x60,0x63,0xe3,0x2b,0xaa,0xb2,0x6f,0x5a,0xad,0xb3,0x66,0xd2,0x58,0xa2,0xd3,0xab,0x3f,0xfe, + 0x55,0xd2,0x46,0xab,0xa9,0x3c,0xcd,0x4d,0x45,0x2d,0x2d,0x61,0xb9,0x91,0xa8,0x15,0xbd,0xae,0xf0,0xea, + 0x93,0xfa,0x27,0xce,0xce,0x4e,0x40,0xf1,0x77,0x20,0xcc,0xec,0x7f,0x71,0x4b,0xd2,0x7d,0x77,0x24,0x5a, + 0x02,0x0d,0xc3,0x4e,0x4c,0xbc,0xac,0xb5,0x7f,0xfa,0x5c,0x8b,0x90,0x8d,0xb3,0x11,0x46,0xcc,0xe2,0x16, + 0xbd,0x56,0x4d,0x38,0x4a,0x6d,0xc9,0x9b,0xee,0x30,0x35,0xa1,0xda,0xfa,0xf6,0x56,0x6f,0xb3,0x09,0xea, + 0x36,0x9e,0xe3,0xe9,0x64,0xea,0xe9,0xb0,0x94,0xba,0xe3,0xe6,0x5c,0xc3,0xea,0xbf,0xac,0x5a,0xd0,0xbf, + 0x6c,0x79,0x1f,0x80,0xc3,0xdb,0xc0,0x3c,0xa0,0x0f,0x82,0xb4,0x76,0xb1,0x3f,0x6e,0xdc,0xd9,0xcb,0x34, + 0xfa,0x22,0xbf,0x72,0xa4,0x24,0x34,0x82,0x8e,0x54,0xd4,0xea,0x80,0xaa,0x53,0x25,0xe0,0x44,0xb3,0xff, + 0x29,0xf6,0x11,0x3f,0xf5,0x5d,0x46,0x7d,0xd5,0x62,0x20,0x5b,0x1a,0xd1,0x91,0xdd,0x2d,0xde,0x33,0x49, + 0x00,0xfd,0xf6,0xb6,0x86,0xa5,0x96,0x81,0xeb,0x49,0x99,0xd6,0x93,0xf8,0x23,0x21,0x18,0x3e,0x43,0x78, + 0x14,0x84,0x8c,0x30,0xd7,0x76,0xac,0x20,0xec,0xac,0xf5,0x6d,0x19,0xe0,0xeb,0xdf,0xdc,0x3e,0xbf,0x63, + 0xc8,0xe1,0x68,0x02,0x53,0x07,0xbf,0x91,0xc7,0xbe,0x4f,0xe1,0x5e,0xbb,0xbd,0x15,0xd2,0x18,0xc6,0x45, + 0xd6,0xda,0x57,0x1f,0x09,0x9a,0x0b,0x3b,0x16,0xae,0xc0,0x73,0xd7,0x99,0xd0,0x3c,0xc3,0xc1,0x1d,0x36, + 0xaa,0xdf,0x9a,0x86,0x26,0x81,0xc6,0x69,0xdc,0x3c,0xca,0x2d,0x14,0x36,0xc0,0x6e,0x20,0x2c,0xb3,0xfc, + 0xb0,0x39,0x3a,0x02,0x80,0x82,0x56,0x38,0x65,0x52,0x68,0x52,0xc5,0x35,0xfb,0x37,0x42,0x97,0xf2,0x3c, + 0xc6,0xc6,0x4f,0xb1,0xec,0x25,0x3d,0x0c,0xd0,0x94,0xaf,0x7a,0x22,0xba,0x72,0xd2,0xdb,0x73,0x75,0x36, + 0xe8,0x27,0x67,0x5d,0x87,0xd9,0x59,0x8e,0x7a,0x30,0x74,0x20,0x4f,0xda,0xa0,0x50,0xeb,0x49,0x74,0xd3, + 0xab,0x62,0x9d,0xea,0x49,0x1b,0xb6,0x67,0x4a,0x3c,0x8f,0x3f,0xd7,0x24,0xd3,0x30,0xf8,0x83,0x86,0x3f, + 0xd7,0x6c,0x50,0x90,0xd8,0xbe,0x54,0xa7,0xc1,0xb0,0x5f,0xf6,0xe5,0x70,0x93,0xd6,0xaa,0xf0,0x69,0x3b, + 0xf5,0xd1,0xc4,0x44,0xa7,0xd0,0xf3,0x07,0xdf,0xbf,0xf0,0xe4,0x8e,0x08,0x7c,0xba,0x5c,0x8f,0x91,0x14, + 0x04,0xba,0xa0,0x8b,0xb8,0xc0,0x46,0x2d,0x7c,0x15,0xcf,0xec,0xcc,0x07,0x52,0x00,0x57,0xdd,0xb4,0x26, + 0xf4,0x42,0xf0,0x55,0x8f,0x57,0xf0,0xe0,0xa3,0x03,0x8a,0xdd,0x1e,0xf1,0x07,0x8d,0x0e,0x59,0xf3,0xb1, + 0x2c,0x98,0x50,0x95,0xf1,0x2e,0xea,0x8b,0x5e,0x2c,0x44,0xd3,0x7e,0x5c,0x36,0x62,0x09,0x24,0xeb,0xcb, + 0x00,0x77,0xb3,0x1e,0x6f,0xec,0x8f,0x52,0x9c,0xd2,0xe9,0x88,0x75,0xe8,0x0f,0x5c,0x4d,0x5f,0x40,0x11, + 0x4b,0x5c,0x07,0xec,0x82,0xfc,0xf0,0xb2,0x24,0xb8,0x3b,0xca,0x6e,0x90,0x25,0x6a,0x2e,0x6f,0x69,0x54, + 0xd9,0x1a,0xf9,0xdc,0x00,0x8a,0x28,0x13,0x7c,0xdb,0x1c,0x29,0xfe,0xb0,0xa1,0x0f,0x01,0xb6,0x93,0x22, + 0x95,0xef,0x8b,0xf5,0xd8,0xf4,0x37,0xcb,0xd7,0x40,0x99,0x77,0x0c,0xa9,0x28,0x31,0xf7,0xe1,0x98,0x5c, + 0xe2,0xe7,0x06,0x26,0x33,0xcd,0x04,0x43,0xc8,0x99,0x13,0xd7,0xc6,0x9c,0xf9,0x0d,0x8c,0x6b,0x52,0x3c, + 0xaf,0x87,0x87,0x90,0xcb,0x10,0xcc,0x31,0x58,0x1e,0xe6,0xc4,0xb3,0xd1,0x1f,0x1a,0x43,0x93,0xd0,0x7a, + 0xcb,0xf7,0x39,0xa1,0xf8,0x24,0x95,0xe7,0x66,0xbd,0xee,0x0f,0xc3,0x0e,0x42,0x8f,0x66,0x45,0x4d,0xfd, + 0x25,0xea,0xd5,0x2c,0x8e,0x6d,0xa5,0x0e,0x5a,0x91,0x99,0x1e,0x0f,0x2c,0x7e,0x01,0xb2,0x80,0xa3,0x6b, + 0xc0,0xc0,0x3f,0x2d,0xd4,0x6a,0x09,0xeb,0x42,0x9a,0xc2,0x04,0x4a,0x7f,0x13,0x7f,0x43,0x9b,0xf0,0x12, + 0xdc,0x44,0xc1,0x36,0x52,0x80,0xc2,0x02,0xc6,0x81,0x4a,0x8f,0x16,0xc5,0x15,0x91,0x32,0x7e,0x7c,0x74, + 0xf6,0x35,0x99,0x4d,0xb6,0x53,0x94,0x3f,0x6a,0xc6,0x39,0xf8,0x4c,0xfe,0xd4,0xe6,0xd2,0xb8,0xa9,0x12, + 0x6e,0x66,0x4a,0x27,0x11,0xcd,0x3a,0x6a,0x99,0x4a,0x44,0x02,0x7a,0x48,0xfc,0xbb,0x4e,0x80,0xa8,0xa6, + 0x44,0xf2,0x70,0xba,0xd9,0x21,0x2b,0xbf,0x31,0xde,0xf8,0xbd,0x35,0xe4,0x6d,0xe3,0xe6,0x02,0xc8,0x16, + 0x03,0xa1,0xa1,0x60,0x00,0x56,0x6a,0x03,0xde,0x59,0x28,0x9d,0x4b,0x30,0x68,0xb6,0x44,0x15,0x94,0xa8, + 0xa4,0x44,0x9e,0x5d,0x95,0x71,0xe5,0xa5,0x13,0x54,0x2a,0x27,0xe8,0xa3,0xb1,0xa4,0x05,0x8b,0x25,0x50, + 0x12,0x7f,0xf3,0x50,0xb8,0xf2,0xae,0xbf,0xf5,0xe1,0x2c,0xa7,0xaa,0x6c,0x9b,0x56,0x4d,0x31,0x5f,0x0b, + 0x69,0x0c,0x9a,0x7d,0x1f,0x3f,0x11,0x79,0x9c,0x2a,0x46,0x7c,0x02,0x82,0x3e,0xa1,0xf3,0x11,0x0d,0x45, + 0xc6,0xbd,0x32,0x4a,0x26,0x39,0x31,0x6f,0xe9,0x7b,0x23,0x24,0xb3,0x45,0x61,0xf8,0xbf,0xcd,0x2a,0xed, + 0x9c,0x7e,0x3e,0x19,0xff,0xd7,0x3c,0x63,0x42,0xda,0x49,0x24,0xf3,0xe4,0x26,0x1f,0x32,0xfd,0x3b,0x85, + 0x07,0x94,0x6b,0xc1,0x6e,0x0a,0x6d,0x7d,0x3a,0xdd,0x39,0x00,0x22,0xf6,0x9e,0x41,0x18,0xb2,0xd3,0x24, + 0x6a,0x82,0x17,0x79,0x0e,0x64,0x8b,0x80,0xc1,0x89,0x3a,0x47,0xc7,0x9c,0x43,0xa9,0x93,0xe0,0x79,0x48, + 0x44,0x0b,0x9f,0xe1,0x17,0x5e,0xb8,0x9f,0xbd,0x8e,0xb5,0x0c,0x76,0x52,0x3b,0x6a,0xa7,0x26,0x70,0x05, + 0x4a,0x6a,0x13,0xc3,0xaf,0xf7,0x69,0xe8,0x71,0x3f,0x01,0x7c,0xc8,0xe3,0x38,0xa7,0x89,0xef,0x67,0x34, + 0xde,0x6c,0xc2,0xad,0xde,0xeb,0xc0,0x3e,0x0a,0xa3,0xf7,0xdc,0xa1,0xd1,0xf2,0xb3,0x43,0xb7,0x2b,0x1e, + 0xff,0x7a,0xb9,0x9b,0x3c,0x08,0xf0,0xb8,0x3e,0x3c,0xa0,0xb1,0x45,0xbe,0xc2,0xf7,0xfe,0x40,0xef,0x1f, + 0x1b,0x16,0xe0,0x5e,0x8b,0x74,0xf3,0xb5,0xf5,0x7a,0xb5,0x61,0x3e,0x6a,0x4f,0x58,0x96,0x8f,0x6a,0xcb, + 0xf9,0xbf,0x66,0x61,0x98,0xfd,0xc0,0x8b,0x62,0x9c,0x24,0xc1,0x35,0xfd,0x24,0x58,0x71,0xed,0x11,0x46, + 0xa6,0xc7,0x75,0x56,0x8f,0xee,0x2d,0x73,0x62,0xa6,0xda,0xb1,0x37,0x20,0x72,0x4b,0xc9,0x3e,0x04,0x4f, + 0xf3,0x25,0x55,0xa8,0x67,0x8c,0x0b,0xdc,0xd7,0x15,0x21,0xc4,0xea,0x51,0x61,0xfb,0x55,0x61,0xa7,0xd7, + 0xd7,0x3c,0x3c,0x98,0x40,0x62,0x47,0xc8,0x5a,0xd5,0x4a,0x1a,0x37,0x1d,0xf4,0x12,0x8f,0x1f,0xa9,0x57, + 0xb5,0x8a,0x3a,0x6d,0x6c,0x9d,0x57,0xd5,0x27,0xf8,0xc3,0xff,0x68,0xba,0xec,0x07,0xf1,0x63,0x30,0x88, + 0xdf,0x4a,0xe9,0xda,0x77,0xa2,0x73,0xe7,0x96,0xcd,0x1c,0xf6,0xb2,0xc2,0xc0,0x25,0x52,0xa1,0x6b,0xff, + 0x27,0x2b,0xf5,0x8d,0x8c,0xa9,0x75,0xf8,0x1d,0xf5,0xe1,0xa7,0x8d,0x2e,0xfc,0x14,0x74,0x61,0xfb,0x25, + 0xe4,0x59,0x2f,0x4a,0xda,0x7f,0x03,0x3e,0x46,0xf0,0x62,0xa7,0x1d,0x6d,0x35,0x34,0x63,0xf3,0x2e,0x4d, + 0x74,0x84,0xcb,0xdf,0x11,0x39,0x33,0xab,0x33,0x23,0x76,0x6a,0xb3,0x65,0x6d,0xdd,0xce,0x93,0xf1,0xd2, + 0x4a,0x82,0x33,0x2f,0x4c,0xd4,0xf4,0xac,0xbd,0x14,0x48,0xb3,0x24,0x4f,0x1f,0xc5,0x41,0x95,0x7f,0x04, + 0xa7,0x1e,0x16,0x8d,0xaa,0x61,0x5b,0x8a,0x9e,0x22,0x49,0x9c,0x11,0x9d,0x80,0xd3,0xcd,0x8b,0x40,0x4b, + 0x54,0xd2,0x11,0xf0,0xb1,0x98,0x62,0x35,0xf8,0x54,0x2b,0xd9,0x27,0x1e,0xaa,0x9a,0x19,0xf8,0x0a,0xf4, + 0x79,0x5f,0x9d,0xd7,0x93,0x79,0x1d,0x27,0xe9,0xaa,0x86,0x81,0xce,0x76,0x3b,0xac,0x9f,0x31,0x9a,0xb4, + 0x24,0x90,0xa3,0x0c,0x29,0xd7,0x4a,0x28,0xd7,0xfc,0x30,0x7e,0x46,0x9a,0x2b,0x00,0xbe,0x4b,0x39,0x52, + 0xa4,0xba,0x43,0x2a,0x18,0x13,0x0b,0x0a,0xe9,0x23,0x18,0x61,0xc7,0x21,0xbf,0xa8,0xab,0x3f,0xe0,0x8e, + 0x2d,0x36,0x55,0xda,0xd0,0xea,0xf6,0x3c,0xd6,0x21,0x3b,0x56,0x30,0x94,0x97,0xb0,0x20,0xa4,0xc3,0xd9, + 0x1a,0x76,0x96,0xf0,0x3e,0xa0,0x77,0xb8,0x8a,0xe4,0x86,0xd6,0xd1,0x1d,0x5a,0x07,0x06,0x3b,0x35,0x9f, + 0x6c,0x2e,0xd2,0x4e,0x9d,0xc5,0x55,0x8f,0x3e,0x4f,0x36,0xbe,0xa9,0xe8,0xab,0x23,0x8e,0xac,0x90,0xd0, + 0xac,0x1f,0xd7,0x09,0xfd,0x1f,0x4d,0xe9,0x28,0xa8,0xc3,0x05,0xfd,0x3d,0xee,0xc6,0xd0,0x32,0x2a,0x3d, + 0x2f,0xdc,0x56,0x20,0x0c,0x4e,0x4b,0x3e,0xae,0xb7,0x37,0x68,0x18,0x27,0xba,0x0e,0x14,0x6f,0x5e,0xb6, + 0x37,0xf6,0xf8,0xa0,0x34,0xa0,0x37,0xa8,0x88,0x80,0x98,0x24,0xac,0xa1,0x75,0x32,0x71,0x6e,0x1a,0xe1, + 0xb3,0x7c,0x8f,0xbf,0x8f,0x8d,0x30,0xc1,0xd9,0xff,0xab,0x46,0xd1,0x81,0xcf,0x8d,0xe5,0x72,0xba,0xd3, + 0xd4,0x83,0x1a,0x98,0x32,0x45,0x44,0xb4,0xc0,0x49,0x0d,0xe4,0xdc,0xc6,0x6c,0x23,0xd7,0xd2,0x91,0x3f, + 0xa1,0xbf,0x0d,0xea,0xc6,0x79,0x28,0xa5,0xb3,0xdf,0xb1,0x2c,0xaa,0x26,0x7e,0x9d,0x8d,0x37,0x1b,0xb5, + 0x1a,0x11,0x35,0x4e,0x4c,0x2d,0xc1,0x31,0xa3,0x10,0x7a,0x82,0x4f,0x1c,0xd1,0x47,0xfc,0x04,0x33,0xf5, + 0x24,0x49,0x1b,0x3a,0x45,0xa6,0x54,0xcb,0x94,0xbb,0xda,0x28,0xae,0x6b,0x9a,0x24,0xbe,0x3f,0x25,0xaf, + 0x47,0x0e,0xf2,0xb4,0x88,0x63,0xd3,0x9b,0x44,0x5a,0x91,0x0e,0xda,0x16,0x82,0x85,0xf9,0x21,0x36,0x43, + 0x0c,0xf4,0x5a,0xc9,0x4d,0x35,0x2c,0x44,0x55,0x73,0x19,0x0d,0xd1,0x0e,0xeb,0xba,0x2b,0x40,0x82,0x40, + 0x8c,0xf0,0x2e,0xe4,0x7f,0x23,0x60,0x40,0x98,0x70,0xf8,0x37,0xa2,0x92,0x12,0x73,0xca,0xc1,0x9e,0x90, + 0xd6,0x61,0xcc,0xd3,0xd3,0xd0,0x6c,0xa0,0xc7,0xa9,0x96,0x71,0x41,0xca,0x40,0x4f,0x6c,0x29,0x33,0xa3, + 0xd9,0x6b,0x68,0x84,0x48,0x97,0xdd,0x9f,0xd3,0x2c,0xe0,0x83,0xa9,0xa2,0x4f,0x54,0x63,0x8a,0x61,0x13, + 0xb3,0x00,0xac,0xf1,0xa3,0xfa,0x85,0xb9,0x40,0x33,0x32,0xec,0x18,0x00,0x91,0x50,0x0b,0xa0,0x66,0x3c, + 0x7b,0x8e,0xf0,0x28,0x00,0xfb,0xea,0xf6,0xd6,0xf0,0xb5,0xfc,0x4a,0x67,0x90,0x29,0x5c,0xf4,0x0b,0x17, + 0xdd,0xc2,0x05,0x0a,0xaf,0x37,0x0f,0xac,0x6f,0x43,0x67,0x0b,0xe6,0xbf,0x61,0xfa,0x03,0x39,0x24,0x36, + 0xb6,0x31,0xb1,0xb7,0x22,0x4b,0xff,0xd9,0xbf,0x43,0x66,0x2d,0x06,0x53,0xae,0x9b,0xd7,0xac,0x14,0xbe, + 0xbd,0xfd,0x05,0x81,0x5c,0xe4,0x05,0x3a,0xc9,0xf6,0xf0,0x03,0xab,0x45,0xdd,0xb9,0xfe,0x31,0x3f,0x93, + 0x68,0x00,0x59,0x6b,0xa9,0x1f,0xda,0x06,0xf0,0x20,0xb0,0xc4,0x30,0xa8,0x8e,0xa0,0xb1,0x7f,0x75,0xc2, + 0xbc,0xb8,0xde,0x80,0x56,0x08,0x85,0xb3,0xfe,0x83,0x7f,0x1a,0xbb,0x85,0xbe,0x70,0x21,0xf9,0x8c,0x80, + 0xdf,0x72,0x29,0xa0,0x55,0x79,0x25,0x6a,0x76,0x8b,0x80,0xf8,0xb4,0x27,0x4d,0xa6,0x4d,0xf3,0x2f,0xca, + 0x75,0x13,0x5e,0x07,0x94,0x68,0xdb,0xda,0x83,0xab,0x9c,0x5c,0xe3,0x78,0x27,0xb8,0x13,0x79,0x90,0xbc, + 0xf5,0x74,0x74,0xba,0x95,0x79,0xe4,0xcc,0xd3,0xd3,0x5e,0x6e,0xe9,0x2a,0xbb,0xa6,0x8e,0x29,0xde,0xe9, + 0x62,0x6e,0x45,0xc9,0x34,0x67,0x94,0x2a,0x34,0x5f,0xa0,0xb5,0x6e,0x43,0x3e,0x4c,0x38,0xad,0xed,0xd6, + 0x2b,0x2c,0x3c,0x06,0xea,0x84,0x34,0xb3,0x42,0x34,0x23,0x8f,0x64,0xce,0x36,0xcf,0x2a,0xde,0x18,0xa8, + 0x82,0xa5,0x88,0x79,0xdb,0xd6,0x8d,0x7b,0x20,0x04,0x56,0xb5,0xce,0x8f,0x38,0x4c,0x54,0x95,0x95,0x9f, + 0x8b,0x3d,0x5e,0xe5,0x65,0xdb,0xdb,0xac,0xa8,0x80,0xf4,0x52,0x74,0xc6,0x39,0x7f,0x90,0xc4,0xa5,0x05, + 0x04,0x36,0xe7,0xb0,0x21,0xe8,0x0e,0x8f,0x08,0x2d,0xf0,0x8e,0xaa,0x02,0x19,0x50,0x63,0xbe,0x62,0x74, + 0xd6,0x40,0x53,0x89,0x1f,0x14,0x1e,0x47,0xad,0x5e,0x2c,0xe7,0xc4,0x64,0x01,0xee,0x2a,0x88,0xfa,0x27, + 0x53,0xae,0xc0,0xa0,0x89,0x29,0xba,0x66,0x44,0xda,0xb7,0xb7,0xf4,0x45,0x3a,0xb5,0xf5,0xaf,0x5d,0xec, + 0xa3,0x95,0xe0,0xa8,0xf2,0x70,0x75,0x64,0x74,0x4b,0x45,0xeb,0x1d,0xa6,0x91,0xec,0x23,0x8b,0x78,0x4d, + 0x7e,0x7b,0x17,0x8c,0x6e,0x77,0x81,0x94,0x88,0x98,0x2d,0xde,0x15,0xbc,0xc7,0x02,0xc5,0x7e,0x1b,0x28, + 0x34,0x0d,0xaf,0x76,0x07,0xa4,0xf6,0xa0,0x1a,0x94,0xe9,0x04,0x9f,0x8b,0x72,0x2a,0x25,0xde,0x87,0x9e, + 0x70,0x10,0xb2,0xa6,0xf3,0x88,0x66,0x7f,0x40,0xe3,0xc8,0x6a,0x75,0x16,0xae,0x8e,0x5b,0xb3,0x17,0x0d, + 0x75,0x9a,0x8c,0x13,0xd6,0x52,0x1f,0x17,0x65,0xce,0xdc,0xef,0xe7,0xe8,0xdd,0xa6,0x75,0xb4,0xb6,0xd5, + 0x6e,0x1f,0x0b,0xdb,0xfc,0xd2,0x7c,0x4d,0xf4,0x96,0xe2,0xc6,0x2c,0x55,0x6a,0x19,0xf7,0x8d,0x92,0x96, + 0x06,0xe8,0xb6,0xee,0x0d,0x3c,0x82,0x1e,0xdd,0x04,0x2f,0x20,0xe8,0xfa,0xb3,0x75,0xcf,0xae,0x72,0x38, + 0x6f,0xac,0x7a,0x72,0x39,0xac,0x89,0x85,0x63,0x92,0x8a,0xb8,0x1e,0x82,0x9a,0x59,0x14,0x8a,0x05,0xa7, + 0x6d,0x57,0xa4,0x61,0x49,0x75,0xc3,0xe2,0x06,0xe2,0x00,0xde,0x4b,0x65,0x7f,0x2f,0x81,0xe6,0x2b,0x5d, + 0xd4,0x4c,0x17,0x7d,0xa2,0x04,0xd9,0x57,0x82,0x44,0xde,0x8d,0x2c,0x0d,0x4e,0xa3,0x21,0x32,0xe8,0x3b, + 0x7a,0x61,0xc7,0x4b,0x66,0x01,0xf5,0x02,0xa6,0x0a,0x28,0x90,0x46,0xbb,0x21,0x56,0x58,0x21,0xf0,0xd7, + 0x07,0xd0,0x84,0x42,0xc7,0x2a,0xcd,0xc3,0xbf,0x82,0x3d,0x52,0x1d,0x1a,0x49,0x85,0xe6,0xbe,0x44,0x6e, + 0xed,0x69,0xfa,0xb3,0x86,0xf8,0x9b,0x26,0xe9,0x71,0xfd,0xe8,0xca,0xd1,0x1c,0x8f,0xd1,0x5d,0xe8,0x18, + 0xb3,0xab,0xfa,0xf0,0x71,0x7d,0x94,0x50,0x41,0xf5,0xa9,0x66,0xb1,0x2d,0xd3,0x1f,0xa3,0x7a,0x55,0xc6, + 0xd6,0x18,0xeb,0x5e,0xed,0x68,0x97,0x3a,0xbb,0x72,0x2f,0x54,0x4b,0xe6,0xaa,0x44,0x21,0x4b,0x4f,0x53, + 0x4d,0xd0,0x8b,0x3f,0xad,0x33,0x74,0xfa,0xa0,0x23,0x69,0xf9,0x13,0x52,0x3b,0x5c,0xe4,0x7d,0x85,0xf5, + 0x83,0x30,0x77,0x1b,0xd1,0x42,0xcb,0xe4,0x8e,0x8a,0x7c,0x25,0xa0,0xfc,0xec,0xea,0xe1,0x3b,0x50,0x5d, + 0x17,0x8b,0x71,0x3d,0x3a,0xbe,0xc4,0x4a,0xe8,0x9a,0x80,0xaa,0x84,0x3c,0xfb,0xb8,0xa0,0xb3,0x6b,0x45, + 0x08,0x6a,0xb6,0xb3,0x43,0xab,0x4e,0x9c,0x92,0x88,0x6a,0x18,0x1e,0x08,0xd3,0xab,0x1f,0xa8,0xd8,0x6f, + 0xc0,0x4b,0x17,0x6d,0x55,0xc1,0x5b,0xf8,0x07,0x62,0x7d,0x78,0x7d,0x4e,0xe7,0x84,0x3e,0xa2,0x60,0x75, + 0xe6,0x0e,0x67,0xff,0x56,0x43,0x05,0xb3,0x69,0xcf,0xc7,0x56,0x64,0xd4,0x1f,0x02,0xc0,0xb5,0xa2,0x42, + 0x8d,0xde,0xb4,0x9b,0x96,0x6c,0x44,0xf9,0xbb,0x4b,0x57,0x53,0xd2,0xa7,0x41,0xb3,0xa7,0xae,0x59,0x81, + 0x48,0x56,0x6a,0x0d,0x49,0xa5,0xca,0x49,0x6c,0x3a,0x56,0x4f,0x96,0x2c,0x59,0x2d,0x6d,0x27,0xce,0x92, + 0xd4,0xe6,0x95,0xf8,0x3b,0xa9,0x41,0x01,0x20,0xa0,0x1d,0x81,0x30,0xcd,0x97,0x2d,0x8f,0xbc,0xf4,0xcc, + 0x7e,0x55,0xe2,0xef,0x84,0xff,0xa6,0x67,0xc9,0x9d,0xfd,0xd5,0xdd,0xfe,0x2e,0x43,0x7c,0xb9,0xa1,0x52, + 0x62,0x3b,0xbb,0x63,0x9c,0xbb,0x2b,0x5a,0x85,0x9f,0x65,0xb5,0x10,0xcd,0x6f,0x30,0xdd,0x88,0x76,0x1c, + 0xd3,0xc3,0x82,0xbb,0xf6,0x1a,0x36,0xb9,0x1a,0x9a,0x09,0x48,0x7f,0x13,0x15,0x68,0xa4,0xb4,0xd7,0x05, + 0x69,0xd1,0x5d,0x84,0x16,0x2e,0xad,0x17,0x26,0xb9,0xd0,0x3d,0x50,0x12,0x41,0xea,0xaa,0x10,0x71,0xca, + 0x98,0x9f,0x27,0x6a,0x53,0x0e,0xc6,0x9a,0x40,0xc6,0xc8,0xb4,0x69,0xee,0x5d,0x8a,0x2f,0xb8,0x88,0x87, + 0xbd,0xe5,0x8a,0x47,0x99,0xed,0x9f,0x1b,0x2d,0xfd,0x52,0x4e,0xde,0xeb,0xd3,0x39,0x72,0xaa,0xcb,0xf2, + 0x07,0x31,0x91,0x18,0x9d,0x16,0xf3,0x56,0xd7,0x43,0x06,0xce,0x7f,0x45,0x83,0x38,0xf2,0x5a,0xbe,0x75, + 0x92,0xf6,0xac,0x2f,0x06,0xf8,0x91,0x1b,0x2f,0x89,0x00,0x01,0x4b,0x94,0x01,0x22,0x93,0x8e,0x20,0x40, + 0x85,0x34,0x72,0xdc,0x8c,0x79,0x34,0x0d,0x8b,0x9a,0x2e,0x8a,0x19,0xf6,0x11,0x53,0xfa,0x41,0x0a,0x11, + 0x44,0xf4,0x4d,0x16,0xa4,0x40,0x38,0x7b,0x42,0x83,0xfd,0xb4,0x26,0x36,0xc1,0x1e,0x3e,0xe0,0xfb,0xb6, + 0x61,0x7b,0x68,0x25,0x65,0x90,0x56,0xd2,0x87,0x02,0x19,0x53,0x69,0xd8,0x8a,0xcc,0xb8,0xc6,0x01,0x18, + 0x77,0x8a,0x38,0x82,0xd6,0xe9,0xda,0xd9,0x13,0x05,0x8b,0x7c,0xd1,0x8a,0x8d,0x8a,0x63,0x71,0xc1,0x33, + 0x6d,0x4a,0xa5,0x21,0xe0,0x1b,0x08,0x2d,0x64,0x44,0xf0,0x4e,0xcb,0xed,0x2c,0xba,0x54,0x45,0xe8,0x2e, + 0xf7,0x28,0xa8,0x7a,0x94,0xb3,0xb8,0xa6,0x46,0x47,0x69,0x73,0x73,0x3c,0x57,0x2f,0x7d,0xdf,0xb4,0x21, + 0xdc,0xac,0x9a,0xeb,0xa4,0x8a,0xda,0xb0,0xa2,0x6a,0xf7,0x20,0xac,0xa7,0xb0,0xa4,0xed,0x86,0x29,0x4d, + 0x58,0x55,0xd3,0xeb,0x65,0xd3,0xef,0xe5,0x34,0x6b,0xd0,0x41,0xd7,0xd9,0x29,0x71,0x8c,0xca,0xcb,0x62, + 0x0d,0x45,0xcc,0xe8,0xf2,0x27,0xc4,0x06,0xe0,0x00,0x09,0x81,0xf2,0x7e,0x11,0xec,0x1c,0x96,0x6f,0x51, + 0x43,0xbc,0x63,0xef,0x35,0xb0,0x54,0x98,0x7d,0x20,0xa2,0xcd,0x6e,0xd6,0x0a,0xb1,0xdb,0x98,0x96,0xad, + 0x79,0xcf,0x5c,0xc4,0x17,0x31,0x5e,0x12,0x96,0x7b,0x17,0x19,0xb6,0xdc,0xed,0xad,0x0e,0x9d,0x9c,0x4d, + 0x55,0xb6,0x92,0x1c,0xca,0x8d,0xd1,0x31,0x01,0xcd,0x4c,0xd7,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0xb5,0x8d, + 0x96,0x0b,0x9d,0x1f,0x8a,0x3b,0xfb,0xa1,0x89,0x54,0xd1,0x73,0xfe,0x73,0x34,0xa3,0xba,0x41,0xe9,0x14, + 0x71,0x41,0x3b,0x5a,0xa1,0xb3,0x10,0x57,0xbd,0x11,0xb3,0x60,0x4b,0x0c,0xa8,0x48,0xb6,0x22,0x42,0x23, + 0x50,0x87,0x3f,0x04,0x24,0xe1,0x75,0x7f,0x3a,0x32,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f,0x84, + 0x8d,0x33,0x6b,0x9c,0x74,0xe1,0xae,0x48,0x26,0xec,0xdd,0xec,0xbd,0x5f,0x89,0x21,0x2a,0x20,0xd9,0x4d, + 0xeb,0xc9,0xa7,0x92,0x16,0x02,0x84,0x74,0xda,0x27,0xfe,0x8f,0x5d,0x8b,0x86,0x9d,0x2c,0xc1,0x61,0x83, + 0xa3,0xdc,0x54,0x79,0xd3,0x9c,0x2f,0x90,0x35,0x36,0x22,0x03,0x7f,0x04,0x15,0x22,0xe3,0x9f,0xce,0x89, + 0xb7,0x67,0xd7,0x4c,0xde,0x03,0xd7,0xc2,0xcc,0xd1,0xcb,0x35,0x8a,0x24,0xb4,0x1e,0x21,0x49,0xde,0x5a, + 0xee,0xc0,0x3c,0xb0,0x10,0x79,0x9c,0x43,0x2f,0x4e,0xa3,0x86,0x31,0xf8,0x8f,0x0d,0x1f,0x07,0x31,0x24, + 0x09,0x05,0xa2,0x90,0xcd,0xaa,0x05,0x12,0x1a,0x88,0x20,0xdc,0x0b,0x18,0xf0,0xd4,0xd4,0xc1,0x19,0xfc, + 0x84,0xd4,0x75,0x01,0x8c,0x92,0x43,0xe2,0x0e,0x26,0x5a,0x38,0xda,0x0a,0x02,0x8c,0x18,0x41,0x29,0xb8, + 0x70,0x55,0x32,0x03,0x7f,0x68,0xce,0x6f,0x22,0x9c,0x8a,0xa3,0xce,0xd9,0x8a,0xaf,0x58,0xf4,0xe5,0x28, + 0xc6,0xa9,0x50,0xfb,0x0d,0x71,0xf9,0x3e,0x28,0x98,0xb7,0xe6,0xea,0xd2,0x80,0x7c,0xfc,0x34,0x6c,0xe1, + 0xf3,0xb1,0xd6,0x9a,0x7b,0xd8,0x4f,0x03,0x23,0x82,0x7d,0x07,0x18,0xb5,0x0c,0x22,0x9d,0xa3,0xba,0xb7, + 0xc4,0x75,0x32,0xf9,0x40,0x7f,0xd2,0xa7,0xf8,0x13,0x5f,0xb5,0xb1,0x7c,0x92,0x75,0xa0,0x6b,0x24,0xf5, + 0xbe,0x67,0x18,0x7f,0x51,0x02,0xee,0xbd,0x1e,0xd5,0xc2,0xfe,0x3b,0xb8,0x83,0x8b,0x78,0x95,0x35,0xab, + 0xb0,0x87,0x91,0xef,0x8e,0x8f,0xa3,0xdd,0x56,0x6d,0x1f,0x24,0x9d,0xf3,0xe7,0xd2,0x91,0x0a,0xa6,0x7b, + 0x57,0xad,0x31,0xa2,0x21,0x5e,0x15,0x9f,0xe8,0xdd,0xb8,0x9c,0x44,0xc7,0xf0,0x92,0x8e,0x22,0x09,0x40, + 0x14,0x4c,0xc9,0x55,0x1b,0x88,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe7,0x2f,0x99,0xa0,0xe3,0x50,0xb4, + 0x06,0x9d,0x7a,0x47,0x02,0x4e,0xbe,0xd7,0x1a,0x75,0xea,0x2e,0x1a,0xae,0x9d,0x78,0xef,0x9e,0x6d,0x2d, + 0x30,0x39,0x73,0x1d,0xf0,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xad,0x90,0xfa,0x96,0x86,0x92,0x05,0x7b, + 0xf1,0x53,0xc0,0xa6,0x40,0x11,0xaf,0x13,0x4f,0xd7,0x57,0xf2,0x67,0xc2,0x08,0x08,0x4f,0x49,0x1a,0xf0, + 0x5f,0xb5,0x48,0xd0,0x02,0x5d,0x1f,0xa1,0x4e,0x48,0x20,0xc7,0xac,0xdb,0x2b,0x26,0x87,0x47,0x56,0x4b, + 0x5d,0x18,0x7f,0xf2,0x4d,0x30,0x7a,0xda,0x8a,0x5f,0xd9,0x71,0x95,0x5d,0xc2,0xc8,0xec,0xb8,0xe4,0x90, + 0xeb,0xc7,0x90,0x8f,0xd1,0xcf,0x3c,0xbb,0xe0,0xd4,0x36,0x5b,0xf0,0xef,0xef,0xd9,0x35,0x7e,0x8a,0xec, + 0x18,0x3f,0x8b,0xec,0x84,0x53,0x4f,0xb3,0x33,0xfe,0xfd,0x94,0x5d,0xf3,0xef,0x49,0x76,0xcc,0xbf,0x17, + 0xd9,0x27,0xfc,0xd0,0x78,0x11,0x71,0xe3,0x78,0x95,0x55,0x9c,0x7c,0x96,0x7d,0x0a,0x7a,0xf0,0x41,0x26, + 0x2d,0x14,0x13,0x12,0x83,0x6c,0xc0,0x4c,0x1c,0x32,0xd8,0x53,0xc9,0x44,0x4a,0x15,0x0d,0xaf,0x96,0x17, + 0x67,0x11,0x56,0x9b,0x4c,0x3e,0xa9,0x33,0x13,0x93,0x74,0x6e,0xa2,0xc4,0x34,0x99,0x6c,0xc3,0x8b,0xd2, + 0x06,0xfc,0xc4,0x49,0xc4,0x46,0x6c,0x44,0xf1,0xe4,0xe6,0x9d,0xb6,0xbe,0x64,0x33,0x1e,0x1f,0x20,0x8e, + 0xeb,0x96,0x2d,0x11,0xd6,0x5d,0xd3,0x50,0x43,0x14,0x15,0xe2,0x4a,0x97,0x0b,0x0d,0x88,0xb8,0x2b,0xf0, + 0xa9,0xdb,0x9e,0x8e,0xa7,0xd6,0xb9,0xd0,0xee,0x9c,0x2c,0x57,0xc1,0x79,0x91,0xf9,0x26,0xe3,0x44,0x6d, + 0x9c,0x49,0xb0,0x0c,0xf7,0x6f,0x18,0x02,0xa2,0x52,0x1c,0x37,0x62,0x5f,0x37,0x31,0x54,0xe7,0x46,0x38, + 0x14,0x2b,0x2d,0x79,0xdb,0x22,0x7a,0xbf,0x41,0xbc,0x2b,0x77,0x5e,0x56,0x6c,0xfa,0xe4,0x4d,0xf6,0x7c, + 0x8d,0x2a,0x90,0x88,0x64,0x34,0xa6,0x6a,0x9d,0xde,0xdd,0x86,0xa5,0xeb,0xba,0x8d,0x04,0xb4,0xcc,0xe3, + 0xf6,0x0e,0xab,0x65,0xd6,0xb5,0x8a,0xe5,0x72,0x60,0x7d,0x86,0xf9,0x35,0x04,0x8f,0x68,0x57,0xda,0xd8, + 0x5a,0xd5,0xad,0xa8,0x8f,0x0e,0xf5,0x1c,0xc3,0xd1,0x90,0x15,0x51,0xe6,0xdc,0xcf,0x56,0x56,0x3a,0x47, + 0xe5,0x87,0xac,0x3c,0xcc,0x84,0xcc,0x99,0x81,0x87,0xdc,0xac,0x98,0xe1,0xc3,0x39,0xc1,0x8d,0x53,0x5e, + 0xc6,0x41,0x9c,0xac,0x5a,0x9c,0x9a,0x71,0x4e,0x51,0x69,0xd6,0xd7,0xb0,0xf8,0xd1,0x3c,0xc3,0x43,0xd7, + 0xcb,0xd8,0x7c,0x9a,0x91,0xce,0xd9,0xb8,0xb5,0xb3,0xa0,0x8c,0x4d,0x1a,0x9b,0x3a,0x11,0xa7,0x88,0x90, + 0x8d,0xa9,0xd5,0xbc,0xf5,0xea,0x0d,0x52,0x59,0x58,0x26,0x12,0x3f,0x5e,0x9b,0x26,0xb1,0x9a,0x0b,0x9f, + 0x94,0x89,0x20,0x9d,0xf0,0xcd,0x2a,0x84,0x5e,0x3b,0xf9,0x2d,0x91,0x56,0xda,0x93,0x56,0xed,0x23,0x3d, + 0x6e,0x21,0x7a,0x00,0xe6,0xbe,0x47,0x85,0xa6,0xfa,0x47,0x3e,0x9a,0xe2,0x64,0xad,0xe6,0xd9,0x49,0x47, + 0x29,0xe3,0xfb,0x9f,0x41,0xbc,0x5a,0x11,0xb0,0xdf,0xde,0xae,0x62,0x76,0xd9,0xe9,0x15,0xed,0x4e,0x12, + 0x53,0x65,0x12,0x84,0x0c,0xfd,0x8a,0x39,0x76,0xca,0x32,0xab,0xe3,0xb9,0x3a,0xf5,0xae,0x13,0x31,0x17, + 0x1c,0x58,0xb7,0x25,0x7b,0x4b,0x4e,0xda,0x70,0x4e,0x77,0x76,0x24,0x95,0xab,0x48,0x75,0xbc,0xf4,0x52, + 0xd0,0x64,0x30,0x9a,0x73,0x50,0x80,0x3f,0x44,0x10,0xb0,0x5e,0x12,0xd7,0xa5,0x50,0x97,0x5d,0xeb,0x70, + 0x14,0x34,0x66,0x93,0x01,0xbb,0x00,0x2e,0xe6,0x97,0xaf,0xbb,0x7a,0x5c,0xd4,0xbc,0x63,0x9a,0x00,0x58, + 0xb0,0xef,0x9b,0xe7,0xd7,0x13,0x57,0x90,0xa6,0x22,0x25,0x9e,0xf4,0xa3,0x04,0x4e,0x0b,0x35,0x72,0xbd, + 0x81,0xb6,0x01,0xf0,0xc5,0xe1,0xe7,0x32,0x93,0xca,0xd4,0x7c,0x7b,0xfb,0x70,0x7f,0xdf,0x74,0xcc,0x44, + 0x63,0x83,0xe3,0xfb,0x5f,0x69,0x41,0xae,0xa0,0xe0,0xaa,0xec,0x97,0x09,0x30,0xd9,0xf6,0x81,0x72,0xed, + 0x4d,0x3a,0x23,0x4c,0xfd,0xf7,0x6b,0x0f,0x7b,0x56,0xbb,0xb0,0xa6,0x99,0x5c,0xd1,0xd6,0xf1,0x22,0xe8, + 0x3e,0xda,0x08,0x4c,0x4b,0xeb,0xd8,0x63,0xa4,0x8e,0x24,0x32,0x83,0xa0,0x96,0x13,0x5e,0x6b,0xc2,0xfc, + 0x12,0x99,0x4f,0x2b,0xd3,0x18,0x02,0xe0,0x19,0xbc,0x9f,0x12,0xde,0xcf,0xcf,0x88,0x22,0x26,0x44,0x45, + 0x2d,0x5b,0xe4,0x31,0xae,0xb2,0x8a,0x29,0xf8,0xdf,0x80,0x41,0x68,0x5e,0xaa,0xd1,0x82,0x48,0xdb,0x79, + 0x60,0xc1,0x19,0x30,0x59,0x08,0x4c,0x8d,0x5c,0x50,0x88,0xfc,0xc0,0x67,0x0c,0x91,0x96,0xcc,0x7f,0x47, + 0x2c,0x8c,0xee,0x15,0xd0,0x90,0x85,0x51,0x89,0xa2,0x84,0x9b,0xf0,0x38,0x2e,0xe5,0x58,0x62,0x11,0xf1, + 0xd2,0x12,0x8b,0x09,0x6b,0x3b,0xcc,0x17,0x5c,0x97,0xb1,0x34,0x29,0x47,0xc6,0x39,0x50,0x88,0xc2,0x31, + 0xf5,0x8f,0x88,0xbf,0x64,0x82,0xbf,0xd9,0xa1,0xfd,0x02,0xd4,0xd4,0x49,0x3e,0xfd,0xe4,0x0e,0x71,0x2e, + 0x94,0x72,0xa1,0x7e,0x99,0x35,0xad,0xaa,0x25,0xfb,0x2b,0x21,0x9c,0x4f,0x3d,0x0e,0xe8,0x44,0xe0,0x72, + 0x05,0xbd,0x6d,0x17,0xe1,0xd9,0xdc,0xe1,0x13,0x9a,0x35,0x3a,0xc8,0x84,0xb8,0x85,0x57,0xb8,0x2f,0xa6, + 0x63,0x98,0xe1,0xe8,0x78,0xe5,0x69,0xa9,0x39,0x13,0xbe,0x36,0xb8,0x27,0x91,0xff,0xf3,0x64,0xfc,0x0b, + 0x9d,0x06,0x2b,0x45,0x1b,0x0a,0xe4,0xd9,0xed,0x2d,0x5e,0xa7,0xf2,0x7a,0xe0,0xe8,0xd8,0x66,0xbd,0x86, + 0xe0,0xdc,0xe0,0x42,0xdb,0x21,0xdb,0xe1,0x7c,0x3e,0x04,0x3d,0x5d,0x4d,0x22,0x8e,0x74,0x33,0x60,0xd3, + 0xe7,0xbc,0xdb,0xd3,0xa4,0x23,0x34,0x9f,0x12,0x9e,0x5b,0x1d,0x65,0xef,0xe2,0x15,0x75,0x86,0x49,0x01, + 0x43,0xc5,0x01,0x5d,0xf1,0x58,0x09,0x36,0x10,0x5b,0x43,0xd9,0x57,0x85,0x1c,0xae,0xd1,0xe7,0xc8,0x2b, + 0x4f,0xef,0x9c,0xd9,0xd7,0x0f,0x38,0xb2,0x68,0xca,0xd9,0x04,0x85,0x50,0x61,0x3e,0x12,0xc2,0x37,0x30, + 0x38,0x98,0xd3,0xd9,0xa9,0x02,0xa7,0xa6,0x0d,0x9d,0xdf,0x69,0x78,0xe2,0xaa,0xd3,0xc0,0xc2,0x3e,0x87, + 0x23,0x27,0xab,0x32,0x62,0x2a,0x85,0x4d,0x40,0x50,0x23,0x0f,0x0c,0x5f,0x9c,0x99,0x49,0x19,0xda,0xb5, + 0xa7,0xb0,0x85,0x39,0x95,0x4d,0x20,0x9d,0x5c,0x82,0x90,0x62,0xa9,0x35,0x7e,0xe9,0x45,0x3c,0x1e,0xde, + 0x96,0x2a,0x9c,0xf6,0x1c,0x01,0x8e,0x68,0xe3,0x19,0x10,0x98,0x51,0x39,0xe6,0x4d,0x2b,0xcc,0xeb,0x8c, + 0x49,0x05,0x6e,0x68,0x96,0xac,0xb7,0x3b,0xd2,0x40,0xab,0xa5,0x6c,0x9d,0x82,0xb2,0x67,0xa0,0xf0,0xb2, + 0x0e,0xc5,0xa6,0x86,0xac,0x7d,0x59,0x8b,0xc4,0x53,0xbe,0x82,0x66,0xa0,0xc8,0x5e,0xc1,0xf9,0x69,0xec, + 0x52,0xb2,0x7a,0x12,0xa2,0x8d,0x4d,0x69,0x9c,0x83,0x85,0xd6,0x3d,0xc2,0xb3,0xd6,0x3c,0x12,0x70,0x15, + 0x44,0x9f,0x10,0x5a,0x60,0x28,0x43,0xb3,0xe7,0x01,0xdc,0x4b,0xfc,0xd4,0xa9,0x53,0x95,0x88,0xfb,0x45, + 0x74,0xb1,0xd2,0x7b,0xee,0x54,0xd8,0x23,0x4a,0x1f,0x54,0xc2,0x6e,0x7c,0x3e,0x89,0xe8,0xe5,0x9c,0xf9, + 0x8d,0x4a,0x0d,0xba,0x7d,0xe4,0xea,0xe6,0x29,0xa1,0x2d,0x42,0x46,0xce,0xea,0x29,0x3d,0x55,0x8e,0xfa, + 0x4c,0x97,0x8c,0xa4,0xa6,0x1e,0x6b,0x11,0x1f,0x3f,0x87,0xcf,0xab,0xb7,0xb4,0x06,0x89,0x6e,0xb0,0x17, + 0x91,0x50,0x56,0x79,0xd9,0xe5,0x61,0x72,0x36,0x82,0xcb,0x61,0xd6,0x10,0x4f,0x33,0xc0,0x7d,0x4e,0x04, + 0xbf,0xf4,0x21,0xa1,0x15,0x5d,0x49,0xc6,0xb3,0x3a,0x90,0x3f,0x17,0x1d,0x82,0x0a,0x51,0x90,0x41,0x70, + 0xe4,0xd6,0xfa,0xc1,0x69,0xdf,0x80,0x8a,0x3b,0x05,0x0a,0xd6,0xb7,0x23,0xca,0x19,0xf8,0x36,0xe2,0x66, + 0xc3,0x92,0xdd,0x7e,0x35,0xc3,0xc7,0x2e,0x2e,0x0e,0x00,0xe4,0xe6,0x90,0x7c,0x10,0x6c,0x84,0x84,0x2c, + 0xa1,0x74,0x11,0x94,0xa5,0x72,0xbd,0x80,0xf3,0x9f,0xc2,0x9d,0x51,0x74,0x64,0x3e,0xab,0x27,0x44,0xd9, + 0xc4,0xab,0xac,0x49,0x26,0x87,0x9f,0x68,0x64,0x47,0x3d,0x2b,0xdb,0x95,0x8f,0x67,0x45,0xe4,0x83,0x8f, + 0x40,0x83,0xe9,0x03,0xb2,0x41,0x24,0x1a,0x11,0x3b,0xc1,0x16,0xba,0x0a,0x6d,0xa1,0x5b,0x9a,0xa3,0xea, + 0xb0,0x39,0x4a,0x86,0x3c,0x60,0x89,0xac,0x21,0xaa,0xf0,0xf4,0x90,0x28,0x28,0x17,0x4d,0xe4,0xa8,0x67, + 0x96,0x3f,0x4d,0x26,0xd6,0xc9,0xeb,0x9b,0x7d,0x1a,0xe1,0xb7,0x31,0xd5,0x58,0xc4,0x53,0x05,0xbb,0x13, + 0xf6,0xc8,0x27,0x3e,0x91,0x08,0x34,0x1a,0x19,0xcd,0xcc,0xb7,0x31,0x47,0xc9,0x38,0x05,0xfa,0xf9,0x14, + 0xcf,0x59,0xb7,0xb6,0x3b,0xa5,0x3c,0xd1,0x64,0xe3,0xe6,0x2b,0x73,0x2b,0x00,0xed,0xfd,0x40,0x21,0x78, + 0x4a,0x6b,0x96,0xa4,0x30,0x7a,0x9c,0xa0,0x8a,0x49,0xaf,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0xfe, + 0x04,0x9c,0x97,0x7e,0x4b,0x7f,0xa5,0xcd,0xfe,0x07,0xd2,0x5c,0x4a,0x08,0xb7,0x72,0x62,0x32,0x5e,0xeb, + 0x29,0x94,0x91,0x4c,0x6c,0x4c,0xc1,0xa6,0xca,0xfa,0x33,0x28,0x31,0xd7,0x4a,0xdc,0xf7,0x05,0x40,0x39, + 0xda,0xcd,0x65,0x60,0xf4,0xf7,0x38,0xb2,0x9d,0x45,0xa3,0x1e,0xb7,0xad,0x69,0x5d,0x8c,0xe8,0x27,0xc5, + 0x32,0xbe,0xa8,0xd9,0x66,0xe3,0x2f,0xaa,0x55,0x36,0x99,0x76,0x42,0x14,0x0e,0x44,0x25,0x2b,0x0c,0xdd, + 0x84,0x43,0xd1,0x4c,0xd6,0xe1,0x91,0x6a,0x03,0x7b,0x75,0x98,0x87,0xf0,0xb6,0x67,0x58,0x18,0x0f,0xd9, + 0x85,0x9a,0x73,0x64,0x39,0x3e,0xcd,0x8a,0xd1,0xbd,0x8b,0x92,0x8e,0x53,0x04,0xc0,0x92,0xa7,0x51,0xd9, + 0xb0,0x70,0xe8,0x8c,0x48,0xa8,0xfc,0x0c,0x31,0x62,0x9b,0x25,0x82,0x2b,0x10,0x96,0x99,0x43,0x54,0x56, + 0x34,0xef,0x75,0xa3,0x6b,0x22,0x81,0x28,0x9b,0x52,0x27,0x06,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9b,0xe7, + 0x2d,0x82,0x65,0x98,0x8f,0xf1,0x1d,0x36,0x61,0x17,0x6b,0x14,0x4c,0xbc,0x66,0x6f,0xe2,0x22,0x10,0xd9, + 0x39,0x04,0xd4,0x44,0xa0,0x35,0x27,0xc4,0x13,0x2d,0xe9,0xdb,0x02,0x87,0x4c,0x92,0x9a,0x66,0xaa,0xc1, + 0xda,0x44,0x7b,0x39,0xcf,0xe8,0x93,0x4a,0x3e,0x09,0xe4,0xa3,0x04,0x0f,0xf1,0x69,0xe0,0xbf,0x52,0xc7, + 0x85,0x63,0x71,0x0a,0x38,0x8c,0x55,0xc4,0x36,0x55,0xb5,0x2e,0xce,0xca,0xb7,0xd6,0x4d,0x9a,0x26,0x86, + 0x20,0x83,0xb1,0x80,0x45,0x74,0x2c,0xca,0x24,0x66,0xd7,0x31,0xde,0x81,0x89,0x36,0xc7,0xb9,0xf2,0x39, + 0x6e,0xcb,0x3d,0x9a,0xf2,0xb6,0x33,0x6c,0x9c,0x2f,0x40,0x5b,0x90,0x28,0x9f,0x95,0x81,0x3e,0x62,0xcb, + 0x56,0x23,0x36,0x60,0x28,0x05,0xc5,0xd1,0xee,0xe7,0x1e,0xae,0xd7,0x42,0x9c,0xcf,0x69,0xf8,0xb0,0x87, + 0x0a,0x50,0x5a,0xe0,0xb4,0x11,0x06,0xb2,0x73,0xb2,0x03,0xd6,0xd6,0x36,0xab,0xa5,0xae,0xed,0xd9,0x83, + 0x72,0x26,0x85,0x89,0x0f,0xb6,0x48,0xe5,0x77,0x6b,0x40,0x71,0xd3,0x7d,0xcf,0xac,0xdf,0x49,0xdf,0x08, + 0x1b,0x11,0xde,0x3c,0x09,0x82,0xd3,0x4c,0x38,0x50,0xeb,0x11,0x07,0xa2,0xb1,0xd1,0xf9,0x5c,0xdb,0x14, + 0x77,0x34,0x56,0x56,0x89,0x5f,0x1d,0x6d,0x8b,0x89,0x24,0x8c,0x39,0xd8,0xf7,0x12,0x01,0x6a,0x34,0x64, + 0xdc,0x03,0x46,0xba,0x1b,0xf2,0x2c,0x43,0xbc,0x12,0xa2,0x2b,0xb3,0xbe,0x10,0x75,0x52,0xa6,0xac,0x72, + 0xdf,0x30,0x8f,0x13,0xdf,0x04,0xd7,0x17,0xd1,0xa8,0xb4,0xa1,0x46,0x25,0xd6,0x5e,0xb2,0x0b,0x82,0xf3, + 0x9b,0x6c,0x9f,0xd6,0xa4,0x9b,0xf6,0x68,0x1f,0x0b,0x64,0x02,0x7d,0x21,0xc1,0xfb,0xcb,0xf9,0x3d,0x58, + 0x5a,0x89,0xbd,0xc2,0x18,0x03,0x67,0xfe,0x35,0x7b,0xcd,0xc3,0xeb,0xb8,0x3f,0x69,0x74,0x72,0xc5,0xc1, + 0x02,0x66,0xcf,0xa0,0x8d,0xee,0x96,0x31,0xd6,0x58,0x1c,0xc9,0xc6,0x6f,0x96,0x43,0x89,0xdb,0x76,0x94, + 0x21,0xc4,0xca,0xa6,0x45,0xc1,0xf3,0xd6,0x85,0x38,0x39,0x46,0xbc,0x80,0x8e,0xed,0xe5,0xab,0x8e,0x7d, + 0x04,0xbb,0x28,0xe2,0x34,0xef,0x91,0x0b,0xec,0x9d,0x19,0x7c,0xf5,0xb2,0xed,0x50,0x26,0xfd,0xd5,0x99, + 0x84,0xae,0xf3,0xdf,0xec,0x1d,0xa4,0x9b,0xba,0x9a,0x49,0xe8,0xf4,0xdf,0x2b,0x0d,0x55,0x9d,0xda,0x8e, + 0x5d,0x1c,0x05,0x09,0x24,0x76,0x04,0x8c,0x6f,0xe3,0x28,0x94,0x12,0x01,0x9b,0xdd,0x56,0xb5,0x41,0x77, + 0x81,0x58,0xf1,0x45,0xcf,0x44,0x80,0xd5,0xa4,0x0c,0xa7,0x50,0xc0,0x30,0x78,0x1e,0x33,0xae,0xeb,0xc3, + 0xa5,0x0d,0xd4,0x0b,0xb3,0x77,0xb6,0x74,0x34,0x7c,0xc1,0x2b,0x48,0xca,0x36,0xec,0x8d,0xc6,0x0d,0x04, + 0xc8,0x4c,0x02,0x3c,0x03,0x2d,0x56,0x31,0x83,0x17,0x92,0x36,0xcf,0x36,0x74,0x0d,0x6c,0x89,0xbf,0x5d, + 0xb0,0xc7,0x16,0xa3,0x18,0x38,0xac,0xe1,0x17,0xb7,0x84,0xb8,0x16,0x5e,0x1a,0x32,0x79,0x74,0x6f,0x46, + 0x43,0xac,0x2b,0xb8,0x6c,0xb5,0x4e,0xef,0x3f,0xe7,0x3b,0x2f,0x03,0x2f,0x80,0x36,0xf4,0xec,0xbe,0x11, + 0x21,0xf3,0x53,0xe8,0x09,0xd2,0x77,0xbc,0xe7,0x7d,0x82,0x2a,0xc3,0x37,0x3a,0x80,0xb9,0x14,0x4c,0xcb, + 0xf8,0x89,0x08,0x0e,0xf3,0x84,0xe0,0xc8,0xf8,0x3d,0x4a,0xcd,0x43,0x68,0xd6,0xdf,0x5d,0xfe,0x76,0xa2, + 0x27,0xed,0x6e,0xb4,0x15,0xed,0xea,0xb4,0x4d,0x39,0x3a,0x7f,0x60,0x44,0x1e,0x02,0xd8,0x06,0xa0,0x0c, + 0x1d,0x8e,0x34,0x59,0x08,0x1d,0x48,0xbb,0x13,0x7a,0x2a,0xb7,0x3b,0x1f,0x55,0xbc,0x43,0x89,0xd0,0xcd, + 0x50,0x27,0x36,0x1e,0x48,0x2f,0xbe,0xd8,0x0d,0x02,0x02,0xfc,0xdf,0xcd,0xa8,0x17,0x89,0xa2,0xdf,0x32, + 0xd8,0x95,0xac,0xa4,0xe9,0xb7,0x26,0xe8,0x32,0x8a,0xc6,0x1d,0xf1,0x5c,0x6b,0x62,0x02,0xc4,0xda,0x84, + 0xde,0x45,0x75,0x3a,0xac,0x8e,0x37,0xf0,0x20,0x40,0x77,0x4d,0xdd,0xc3,0x61,0xe7,0xdc,0x7a,0xd4,0x5c, + 0x9c,0x45,0x69,0xb4,0xc8,0xdb,0x73,0x36,0x34,0x9a,0xc8,0xe3,0x86,0xb6,0xe8,0x49,0x6b,0xa3,0xfb,0x6c, + 0x6a,0x38,0x6d,0x8d,0x2e,0xea,0xde,0xef,0x2b,0x5d,0x5f,0x7f,0xd0,0xd0,0x43,0x57,0x72,0x0f,0xcd,0x5d, + 0xb1,0x34,0x67,0xc5,0x45,0x34,0xa4,0x4a,0xf9,0xb1,0xb7,0x57,0xd8,0xe6,0xb2,0xd6,0xa7,0x3d,0x1f,0x21, + 0xeb,0x79,0x5d,0x84,0x6e,0xdc,0x16,0x4c,0x81,0x21,0xe0,0xa0,0x5d,0xc1,0x72,0x9e,0xbe,0x6d,0xc6,0x7d, + 0xb5,0x4a,0xc5,0xd6,0x50,0x73,0xfe,0xc5,0xe1,0x8f,0x5f,0x1c,0xb2,0x38,0x60,0xf1,0x68,0x08,0xf9,0xd4, + 0xb7,0xff,0xb2,0x7c,0x51,0xd5,0x83,0xb5,0xe0,0xaf,0x43,0x19,0x05,0xe1,0xe3,0x9d,0x1d,0x4e,0x62,0x8c, + 0x6c,0xeb,0x26,0xf8,0x90,0x87,0x22,0x00,0xdc,0x9f,0x44,0x88,0xed,0x63,0x6c,0x81,0xc6,0xc3,0x51,0x4f, + 0xbf,0x2c,0x64,0x92,0xfd,0x68,0x8e,0xfe,0xd0,0x3f,0x9c,0x75,0x7e,0xde,0x78,0x4c,0x1b,0xe3,0x54,0x8e, + 0xc4,0x42,0x14,0x01,0x3f,0xf7,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x09,0x16,0x51, + 0xc3,0x1b,0x31,0xae,0xcd,0x9c,0x8b,0x30,0x34,0xf3,0x0c,0x79,0xcd,0xba,0x3a,0x9a,0x53,0xcd,0x7e,0x65, + 0x9f,0x29,0xe3,0x44,0x89,0xb0,0xae,0xbb,0xbd,0x5d,0x15,0xec,0xd0,0x48,0x3f,0xc4,0x0d,0xf2,0x80,0x41, + 0x57,0x60,0x34,0x8f,0x21,0x55,0x7a,0x87,0x50,0x59,0xe7,0xd5,0x9c,0x38,0x75,0xae,0xa1,0x23,0x7b,0xc2, + 0x38,0xc3,0x04,0x50,0xc6,0xdd,0x14,0x23,0x93,0x0b,0xed,0xf7,0x5b,0x11,0x50,0x38,0xed,0xb2,0x38,0xc9, + 0x61,0x63,0x15,0x44,0x42,0x14,0x8f,0xb2,0x7a,0xbc,0xbb,0x5b,0xd0,0xd6,0x85,0x05,0x63,0x71,0x64,0x08, + 0xed,0x38,0xc7,0x61,0xef,0x3d,0x2d,0x03,0xcf,0x93,0x3f,0x0c,0x4c,0x9a,0x18,0x79,0x81,0xc3,0xd7,0xed, + 0xad,0xee,0x27,0x75,0xe7,0xdd,0x42,0xb2,0x70,0xc3,0x19,0x56,0x6e,0x09,0xaf,0x3d,0x2d,0x0f,0x4d,0xf6, + 0x73,0xbb,0x59,0xab,0x8f,0x2c,0x00,0x0e,0x8c,0x4a,0x6c,0x34,0xa2,0xb4,0x2f,0xb1,0x22,0xb2,0x83,0x48, + 0x61,0xc3,0x64,0x95,0x22,0x61,0xa9,0xb3,0x46,0xb8,0xf9,0x29,0x7e,0xea,0x09,0xcd,0x1a,0x4d,0xf1,0x4f, + 0x10,0x7c,0x65,0xd6,0x11,0xf7,0x77,0x30,0xba,0x46,0x07,0x1a,0x29,0xdc,0x79,0xa0,0x0a,0x18,0x4d,0xe0, + 0x24,0xa0,0x1f,0xbf,0xaf,0x44,0x16,0x3d,0xdb,0xd9,0x99,0x5b,0xa0,0x26,0xde,0x45,0xbe,0x86,0xcf,0xda, + 0xd0,0xb7,0x45,0x49,0x34,0x39,0x7f,0xb3,0x72,0xdf,0x60,0x0b,0xaf,0x3a,0x51,0x6d,0x4e,0x87,0x64,0xe3, + 0x62,0x9c,0xb7,0x0a,0x4d,0xf2,0xa8,0xad,0x15,0xc6,0x11,0xd9,0x6a,0xa5,0xc9,0xf5,0xb8,0x9a,0xfc,0x00, + 0x7f,0x29,0x49,0x8e,0x20,0x83,0x3e,0x8d,0xd9,0x29,0x60,0xee,0x22,0x7f,0x70,0x01,0xc4,0x11,0x34,0xe1, + 0x03,0xef,0x6c,0x71,0xde,0x6b,0x71,0xce,0x2d,0xf6,0x27,0xc1,0xb4,0xcc,0x6c,0xb8,0x9b,0xef,0x26,0x99, + 0xb2,0xd7,0x19,0x7d,0xc5,0xd3,0x1e,0xad,0x4a,0x99,0x98,0x96,0xfe,0x41,0x10,0xdb,0x35,0xd8,0xfd,0xb9, + 0x83,0xe3,0x86,0xa2,0xee,0xf4,0xcc,0x71,0xcd,0xf6,0x1c,0x8b,0xd9,0xc7,0x86,0xca,0x34,0x2e,0xd8,0x14, + 0x37,0x19,0x99,0xb8,0xe0,0xac,0x13,0x2f,0xfc,0x5b,0x76,0x51,0x24,0xaa,0x3c,0x24,0x78,0x27,0x18,0x1c, + 0xd5,0xf9,0xe5,0x1b,0x26,0xa3,0x2a,0x26,0xa7,0x76,0xa3,0x51,0xb4,0x1b,0xda,0x83,0x54,0x61,0x35,0x90, + 0x15,0x48,0xd8,0xd5,0x51,0x94,0x24,0xb4,0x3f,0x64,0x99,0x89,0x53,0xd2,0x01,0xa7,0xe4,0x01,0x93,0x0e, + 0x4a,0xae,0x35,0x31,0x71,0xeb,0x37,0x4d,0x60,0x7f,0x6f,0x37,0xa5,0xcf,0xad,0x80,0x0e,0xff,0x18,0xbb, + 0xc9,0x8a,0x0d,0x23,0xab,0xb8,0x94,0x50,0x1b,0xa6,0xbc,0x31,0x8e,0xac,0x61,0x1c,0x59,0xcb,0x85,0x09, + 0x7c,0x0c,0xf8,0x1e,0xf0,0x35,0x28,0x32,0x2e,0x50,0x00,0xde,0x78,0x32,0x70,0x85,0x68,0xe3,0x80,0x02, + 0xda,0x34,0xdc,0xe6,0xd9,0x8f,0x35,0x63,0x2d,0x71,0x9d,0xea,0x12,0xa1,0x45,0x79,0xae,0xeb,0x82,0xe3, + 0x6d,0xd3,0x0c,0xb5,0xb1,0x20,0x43,0x87,0x04,0x5b,0xeb,0x29,0x20,0x09,0x86,0x39,0x60,0x3e,0x89,0x1a, + 0xc3,0x68,0xa6,0x59,0xf8,0x09,0x0b,0xc7,0x57,0x59,0xdd,0x4b,0x62,0x7e,0xcc,0x88,0x86,0x10,0x0e,0xa1, + 0x53,0x20,0x63,0x2d,0xf4,0xca,0xb8,0x4b,0x30,0xb5,0xb8,0x4a,0xf2,0x6c,0x05,0x0a,0x7f,0x2a,0xcc,0x4c, + 0x4e,0xa0,0x0f,0x49,0x29,0xf8,0xb6,0x71,0xfc,0xae,0xbc,0xbd,0x7d,0x0f,0x83,0x8e,0x95,0x6c,0x7e,0x88, + 0x2b,0xe4,0xc9,0x14,0xb3,0x02,0x76,0x93,0x1f,0x54,0x3c,0x4d,0xb0,0xfb,0x2a,0xb6,0xc5,0xd7,0x40,0xe2, + 0x13,0x04,0xb7,0x43,0x60,0x5a,0x17,0x71,0xfc,0xcd,0x87,0xb8,0x2d,0x54,0x89,0xcc,0x24,0xfd,0x17,0x7d, + 0x97,0x20,0xd0,0x66,0xaf,0x10,0x32,0x83,0x55,0xf8,0x21,0x34,0x10,0xf8,0x67,0xcd,0x4e,0x77,0x05,0x07, + 0xc8,0xde,0xf8,0x50,0x43,0x54,0x92,0x45,0x44,0x69,0x57,0x97,0xa7,0xb4,0x3f,0x1a,0xda,0x2b,0xba,0x8c, + 0x24,0xec,0x58,0xf4,0xfc,0xf5,0x93,0xe7,0xcf,0x8c,0xad,0xb4,0xf0,0xf8,0x93,0xa8,0xad,0x69,0x2c,0x29, + 0x94,0xfc,0x9d,0xc0,0xe8,0xec,0xf5,0xe6,0xec,0xa1,0xfe,0x55,0x9b,0x10,0x02,0xdd,0x22,0xdc,0x0b,0xa2, + 0x1a,0x4f,0x73,0x2a,0x87,0x7a,0xcb,0x89,0x79,0x4e,0xa5,0x5e,0x5f,0x83,0x2e,0x3e,0xd3,0x6d,0x37,0x29, + 0x1a,0xf7,0x77,0x74,0x5a,0x91,0x2c,0xed,0xcc,0x17,0xa8,0x2a,0xae,0x24,0x19,0x1a,0xbb,0xd8,0xcf,0x50, + 0x91,0x77,0xf0,0x6f,0x7b,0x0d,0xaf,0x89,0x8f,0xcf,0x7f,0xf9,0xf8,0xf8,0xfd,0xf3,0xc7,0x9d,0x51,0x53, + 0xfa,0xd2,0x9f,0xa5,0x66,0x76,0x38,0xa6,0x66,0xa1,0x97,0xe7,0x96,0x74,0x0a,0x6d,0x01,0x35,0x11,0xdf, + 0xd5,0xf2,0x25,0x11,0x11,0xb3,0x82,0x70,0x0f,0x2c,0x6b,0xf2,0xb3,0x5c,0x90,0xa3,0xb2,0x5d,0xe9,0xdd, + 0xf1,0x22,0x14,0x04,0x2c,0x45,0xc6,0xed,0xc0,0x15,0x30,0x2e,0x5b,0xd9,0x86,0xb3,0xed,0xfd,0xf5,0xc0, + 0x32,0x04,0x90,0xf0,0x4b,0x6f,0x3f,0x5a,0xd2,0x8d,0x83,0xef,0xe4,0x66,0xaf,0xc8,0xa6,0xc4,0xb5,0x95, + 0x21,0xc3,0x80,0xdd,0x56,0x19,0x5e,0x81,0xe5,0x16,0x90,0xcb,0x82,0x39,0xea,0x17,0xca,0x4d,0xa1,0xc4, + 0xe9,0x56,0x06,0x69,0x7d,0x7b,0x27,0x1a,0xfc,0x28,0x0a,0x98,0x2e,0xc5,0x03,0x5c,0x50,0x32,0x06,0xc6, + 0x1d,0x62,0x8f,0x84,0x8b,0xe3,0x4b,0x2e,0x67,0xec,0x8d,0x4b,0x60,0xfb,0xa6,0x35,0x04,0x19,0xc3,0x1e, + 0x5b,0xd2,0x0b,0xd1,0xe4,0xcc,0xe8,0x39,0x58,0x46,0x58,0xbe,0x54,0x86,0x9c,0xf3,0x2a,0xb9,0xac,0xc3, + 0x28,0xf1,0xac,0x08,0x5f,0xa4,0x79,0xb3,0x41,0x4a,0x38,0x79,0x07,0x61,0xd3,0x6b,0xd6,0x1f,0x11,0xf1, + 0x3f,0x36,0x58,0x87,0x2d,0x93,0x21,0x0c,0x3a,0xe6,0xb8,0xb1,0x05,0xc6,0xcc,0x95,0x68,0x22,0x8b,0x59, + 0x42,0x19,0x37,0xd9,0x3b,0xa0,0x80,0xd7,0x2d,0x4b,0x10,0x15,0x5c,0xb3,0x0a,0x18,0x60,0xea,0x0b,0x2e, + 0x38,0x70,0x07,0x81,0x58,0x7d,0xa9,0x06,0xa7,0xbe,0x2f,0x98,0x35,0xe1,0xb2,0x7e,0xdb,0x6e,0x38,0xc9, + 0xc5,0x6c,0x97,0x15,0x38,0x6c,0xb4,0xc6,0x2c,0xfc,0x9c,0x70,0xbb,0x5c,0xf2,0x40,0xed,0x9f,0x67,0xc5, + 0xee,0xc1,0x3a,0x20,0x9b,0x18,0x75,0x6e,0x1f,0x88,0x2a,0x74,0x85,0x3f,0x73,0xb6,0x10,0x27,0x96,0x6c, + 0x49,0xff,0x67,0xf4,0xdf,0x3a,0x64,0x0e,0x08,0x51,0xb0,0xb9,0xd8,0x24,0xb7,0x0d,0xe3,0x62,0xd1,0x89, + 0xd8,0x24,0x5f,0x7c,0x2d,0xb6,0xdd,0x5f,0x3f,0xa4,0x21,0x8b,0x7c,0x74,0xfb,0xc0,0xef,0xc9,0x69,0xf2, + 0xc5,0x97,0xbd,0x02,0xd3,0x4e,0x81,0x55,0xf2,0xf5,0xdf,0x7b,0x05,0x56,0x9d,0x02,0xf3,0xe4,0xcb,0xff, + 0xea,0x15,0x98,0x77,0x0a,0x1c,0x3c,0xfc,0x12,0x1c,0xe3,0xed,0x2d,0x3d,0xf0,0x66,0x0e,0xbb,0xb8,0x7b, + 0x90,0x0c,0x67,0xec,0x21,0xe3,0xf4,0xf6,0x76,0x49,0xfc,0x55,0x72,0xd3,0x5c,0x16,0xc6,0x63,0x60,0x9a, + 0x53,0xad,0x5f,0x7c,0x99,0xc2,0xf0,0x40,0x8c,0x66,0xc7,0x92,0xf4,0x75,0xda,0xf4,0x92,0xbe,0xfe,0x7b, + 0xba,0xea,0x25,0x7d,0xb9,0x9f,0xce,0x76,0x77,0x3b,0x29,0x07,0xe9,0x6c,0x6f,0xaf,0xf3,0xd9,0x41,0xba, + 0xec,0x96,0xf9,0xfa,0x8b,0x74,0xd9,0x2d,0x73,0xf0,0xf0,0x8b,0xf4,0xb4,0x5b,0xe8,0xe0,0xe1,0x57,0xe9, + 0xe9,0xde,0x1e,0x28,0x33,0x99,0x10,0xbf,0xe7,0x2e,0x32,0x1a,0x8e,0x5a,0x18,0x96,0x6b,0x7c,0xc1,0xe1, + 0x25,0xc5,0xf9,0x25,0x5e,0x98,0x71,0xd3,0x98,0x2f,0x20,0x56,0xd9,0xdb,0x4b,0xc6,0x8b,0x9d,0x9d,0x63, + 0x13,0xc3,0x77,0x91,0xb0,0x86,0x00,0x86,0xfe,0x22,0x70,0x75,0xf6,0x23,0xd5,0x24,0x66,0x28,0x62,0x96, + 0xdd,0x5e,0x1a,0xed,0x41,0x2c,0xd5,0xa2,0x62,0x09,0xca,0x0f,0x16,0x4c,0xe1,0x26,0x7f,0x0e,0x2e,0x07, + 0x97,0x80,0x78,0xf8,0xca,0x43,0xf8,0xaa,0xb2,0x01,0x7a,0x3f,0xf3,0x92,0xbb,0x28,0x8e,0x44,0xc0,0xf9, + 0xc8,0xde,0x4b,0x72,0xff,0x98,0x52,0xef,0x13,0x71,0x72,0x3f,0x4a,0xe2,0xfb,0x1c,0x85,0x3e,0x1a,0x77, + 0xb3,0x5c,0x5f,0xca,0xc4,0x97,0x52,0x91,0xcb,0x28,0x09,0x36,0xd6,0x90,0x2d,0x87,0x12,0xbf,0x2a,0x70, + 0xbc,0xe3,0xcd,0xd7,0x75,0x72,0x8e,0x0e,0x7f,0x5a,0x21,0xc2,0x1a,0x9b,0x44,0xd5,0x47,0x1c,0x18,0x38, + 0xa0,0x4a,0xff,0xd5,0x17,0xa3,0xb4,0xa3,0x45,0xbe,0xec,0x9a,0x9e,0xf8,0x30,0x40,0xeb,0x4d,0xeb,0xf2, + 0xa0,0xc0,0x3a,0x49,0x0f,0x03,0x6b,0xa2,0x7f,0xba,0xb3,0x3e,0x6e,0x9d,0x76,0xde,0x06,0x08,0xf1,0xd8, + 0xe0,0x86,0xef,0xf0,0xd0,0xca,0xc4,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0x2c,0xf4,0x25,0xe2,0x08,0xfb, + 0xb6,0xb2,0xbe,0x05,0xe8,0x7f,0x5a,0x99,0xd6,0xde,0x4a,0x90,0x6b,0x78,0x9d,0x2f,0x25,0x0e,0x91,0x79, + 0xc7,0xd1,0x76,0x47,0x85,0x81,0x07,0x9e,0xf6,0x34,0x2d,0x34,0xa1,0xc0,0xef,0xac,0xd7,0xb6,0x1e,0xaa, + 0x3e,0xce,0x50,0xed,0xdc,0x62,0x75,0x16,0x6d,0xc3,0x65,0x87,0x90,0x3d,0x4c,0x2a,0xc3,0x22,0xec,0x40, + 0x4b,0xf9,0xff,0xd7,0xe4,0x1b,0xff,0xd9,0xb0,0x88,0x75,0xa9,0xa5,0x52,0x3b,0x5c,0x8a,0x70,0x32,0x7c, + 0xc3,0xe5,0xd8,0x87,0x61,0x49,0x71,0x76,0xde,0x4e,0x62,0xca,0x37,0x44,0xf2,0x42,0x97,0xab,0x48,0xb9, + 0x0a,0x38,0x3f,0x49,0xeb,0xd1,0xa2,0x98,0xcd,0xe6,0x12,0x82,0x26,0x5a,0x54,0xab,0x46,0xaf,0x96,0x91, + 0x35,0xf8,0x1d,0xd7,0x46,0x4d,0x3d,0xf1,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x61, + 0x02,0xab,0xc5,0x53,0x14,0xd3,0xbe,0x80,0x76,0x59,0xc6,0x72,0xcf,0x06,0x16,0x5c,0x8f,0x71,0x51,0xeb, + 0x05,0x64,0x67,0x4d,0xc0,0xb9,0x98,0x6b,0xdd,0xa7,0x19,0x2e,0xe5,0x19,0x6f,0xe8,0xfe,0x8a,0xc9,0xd4, + 0xdd,0x2c,0xde,0x38,0x37,0xbd,0x46,0x2e,0xf2,0xc9,0xa6,0x94,0x7f,0xd8,0xa8,0xe9,0x51,0x7a,0x38,0x55, + 0xcd,0x51,0xda,0x0c,0x82,0x40,0xed,0x40,0x40,0x28,0xa4,0x82,0x6f,0x70,0x60,0x6f,0xaa,0xdb,0x5b,0x79, + 0xb9,0xd8,0xe3,0xd8,0x2c,0x48,0xe2,0x9d,0xcc,0x31,0x78,0x6d,0x18,0x4d,0x1c,0x74,0xa2,0xc2,0x10,0x2f, + 0x18,0x4b,0xc8,0x14,0xda,0xc5,0x61,0x93,0x0f,0x0a,0xfb,0x41,0x2f,0xd4,0x6d,0x11,0x9e,0x9a,0x45,0xb7, + 0x37,0xfe,0x6b,0x96,0xcc,0x04,0x20,0x1a,0x46,0xc2,0x09,0x60,0xd5,0x58,0xed,0x17,0x7d,0xab,0x7d,0xe8, + 0x96,0xe0,0x14,0xc1,0x57,0xaa,0x20,0x50,0xe8,0x4d,0x61,0x63,0x67,0x55,0x88,0x9d,0x25,0x2e,0x16,0x96, + 0x5d,0x73,0x7e,0x8c,0x9d,0x26,0x43,0x2b,0xfe,0xaa,0x37,0x6b,0x62,0xa5,0x5f,0x64,0xd1,0xbd,0x7b,0x17, + 0x84,0xcc,0x18,0x81,0x82,0x70,0xc8,0xa2,0xd8,0x88,0x0b,0x29,0x63,0x8b,0x5a,0xde,0xba,0x2f,0x23,0xbf, + 0x3f,0x41,0x8a,0x45,0xb4,0x78,0x4e,0x20,0x2b,0x1d,0x89,0xb3,0x83,0x7c,0x7a,0x4c,0x7c,0xe7,0x6e,0x01, + 0xf4,0x68,0xf8,0xc9,0x2c,0x07,0xf5,0x58,0x20,0x60,0x3d,0x1b,0xdd,0x58,0xf0,0x21,0x1c,0x0b,0x5e,0x2f, + 0x21,0xee,0xfc,0x6a,0x89,0xeb,0x06,0xa9,0x8b,0xe9,0x7d,0x83,0x63,0xef,0x2b,0x6b,0x9a,0xe3,0x43,0x9b, + 0x6c,0xc5,0x68,0x70,0xeb,0x26,0xda,0xad,0x76,0xa3,0x75,0x14,0x2c,0x40,0xae,0x43,0x34,0x1e,0x22,0x37, + 0x9a,0xc2,0x1f,0x6b,0x1f,0xc0,0x30,0xb8,0xcc,0xea,0x30,0x4a,0x1e,0xed,0x43,0xea,0x88,0xdb,0xb9,0x5e, + 0xda,0xd4,0x23,0x4a,0xfd,0xb1,0x76,0x51,0x7a,0xe3,0x3f,0xf8,0xe3,0xb0,0x04,0x78,0xea,0x6f,0xf6,0x0e, + 0x26,0x37,0xd4,0xeb,0xd4,0x9f,0x3f,0x7f,0x10,0xc5,0x46,0xac,0x38,0x0f,0xc0,0xa6,0xfe,0x51,0x13,0xc6, + 0xc7,0x60,0xd6,0xa9,0x94,0xe6,0x12,0x1c,0xa7,0x89,0x09,0x9f,0x9f,0x40,0xb2,0x52,0x0b,0x3f,0xd7,0xd9, + 0xef,0x10,0x11,0x6c,0xb3,0xb3,0x5d,0xb2,0xd2,0xf1,0x77,0x75,0x86,0xf0,0xc3,0xc9,0x64,0x8e,0xe7,0x24, + 0xfd,0x1a,0x2c,0xed,0x77,0x75,0x28,0xa6,0xb2,0xf2,0x67,0xf1,0x90,0xa4,0x2a,0xfe,0xa8,0x6d,0x05,0x1c, + 0x58,0x96,0xef,0xe1,0x5a,0xc1,0xef,0x3b,0xe1,0xa0,0x86,0x8e,0x7c,0xe1,0xba,0x20,0x80,0xdc,0xdd,0x55, + 0x5f,0x7f,0x61,0x9e,0xf7,0xf6,0xd8,0xd4,0x8e,0xe6,0xf0,0x77,0xae,0x49,0x40,0x6b,0x8d,0xc6,0x6d,0xcc, + 0xf3,0xee,0x78,0x7f,0x36,0xe3,0xb5,0x29,0x3f,0xd3,0x58,0xd5,0xef,0x35,0xd4,0x8d,0x5e,0x93,0x6c,0xdc, + 0x3b,0xd9,0x37,0x62,0x62,0x6e,0xb4,0x49,0xa3,0x7b,0x44,0x97,0xc6,0xb8,0x43,0x91,0x6a,0x34,0x77,0x76, + 0xa1,0x80,0x3c,0x32,0x44,0x04,0x4e,0xa8,0xda,0xdb,0x0f,0xff,0x54,0x87,0x04,0xd5,0xee,0xee,0x1f,0xa1, + 0xe9,0xfb,0x34,0x28,0xf8,0x47,0xfd,0x4d,0xf6,0x63,0x00,0xf7,0xab,0x30,0x6a,0x38,0x93,0x87,0xed,0xed, + 0x2d,0xd3,0x91,0x81,0x10,0x9b,0x27,0x29,0x74,0x36,0x94,0xd9,0x64,0x07,0x5a,0x5e,0x0b,0xf8,0x65,0x8c, + 0x93,0x71,0xe0,0x98,0xa7,0x43,0xa9,0x88,0x46,0xa4,0x0a,0x9d,0x8c,0x8e,0x71,0x5d,0xe4,0xc7,0xbc,0x81, + 0x61,0x4f,0xe5,0xdf,0x42,0xa9,0xd9,0xb9,0xf7,0xf0,0xcc,0xaa,0x3b,0xe2,0x49,0x98,0xde,0x9e,0xb3,0x5f, + 0x25,0x9d,0xcd,0x7c,0x17,0x63,0xf7,0xc6,0x17,0xbf,0x91,0xbf,0xaf,0xfb,0xe1,0x68,0xb7,0x8a,0xd8,0x5f, + 0x0f,0x38,0xdc,0xc4,0xce,0xce,0x92,0x37,0xa6,0xf8,0xb0,0xad,0x11,0xc2,0x18,0x71,0x09,0xd4,0xf7,0xf5, + 0x26,0x8f,0x88,0xd6,0xbe,0x2b,0x27,0x37,0xe6,0x1c,0x84,0xa5,0x8e,0x9c,0x65,0x08,0x2b,0x67,0xf0,0x7d, + 0x40,0xc9,0x2c,0xb5,0xd7,0x59,0xc5,0x74,0xaa,0x7e,0x5f,0x27,0x83,0x9c,0x29,0x22,0x5a,0x05,0xf3,0xd5, + 0x75,0x06,0x98,0xe9,0xd8,0x46,0xa5,0xda,0x76,0x02,0x9b,0x0a,0x6c,0xfe,0xb6,0x13,0xd7,0xe0,0x16,0x00, + 0xc7,0x83,0x9a,0x14,0x46,0x6a,0x55,0x56,0x86,0xef,0xe3,0xef,0x6b,0xc3,0xa4,0xf6,0x90,0x03,0x75,0xf4, + 0xf0,0x04,0x7a,0x20,0x83,0x3b,0xde,0x95,0x93,0xc8,0x5c,0x7f,0x9d,0x5a,0xeb,0x44,0x0e,0x12,0xed,0x7d, + 0x01,0xf8,0x03,0x0e,0xf7,0xcc,0x7e,0xe6,0xfe,0xea,0x71,0x4a,0x5e,0xa3,0xbe,0xcb,0x42,0x62,0x20,0x8c, + 0xa4,0xa2,0xce,0xa7,0x97,0xf8,0xd4,0x64,0xf4,0x3e,0xc7,0x67,0x6b,0xf0,0x38,0xdf,0xb3,0x8a,0xfe,0x54, + 0xab,0xa5,0x56,0xb5,0x97,0x19,0x7f,0xef,0x42,0x02,0x04,0x0e,0x87,0x43,0x73,0x64,0x1d,0x6e,0x3a,0x33, + 0xe5,0x12,0x43,0x11,0xbb,0x4c,0x49,0x93,0xf5,0x3e,0xec,0x4a,0xb7,0xc2,0xd4,0xbb,0x04,0x5c,0xce,0xc7, + 0xa7,0x23,0xe3,0x2a,0x44,0xce,0x0a,0x51,0x54,0x61,0x22,0xd6,0x15,0x47,0x59,0x14,0x05,0xb9,0x2b,0x73, + 0xcb,0x20,0x4a,0x28,0xbe,0x2b,0xda,0xde,0xdd,0x6c,0xdc,0x93,0x8a,0x92,0x00,0xe5,0xbb,0x8f,0xaf,0x5f, + 0x71,0x02,0x97,0xae,0x87,0x43,0xe0,0x06,0x26,0x50,0x15,0x95,0x6d,0xd0,0x26,0x26,0xaf,0x28,0x57,0x7a, + 0x0c,0x9c,0x97,0x4b,0xd1,0x37,0x70,0xd2,0x72,0xa2,0xe6,0xdc,0x00,0xe6,0x53,0x64,0xc5,0x61,0x11,0x98, + 0x1f,0xf1,0xb5,0xc6,0x22,0x65,0x93,0xe6,0xf3,0xd1,0x31,0xbf,0x66,0x95,0xb1,0x62,0x6c,0x21,0x5c,0x8b, + 0x22,0x1b,0xf1,0xbe,0x4a,0xc6,0xcb,0x6c,0xae,0xb6,0xe3,0xd3,0x2c,0x4f,0x44,0xda,0xd0,0x50,0x3a,0xac, + 0xb3,0xdf,0xbe,0xfb,0xf8,0xf2,0xed,0x1b,0xd4,0x73,0x6a,0xc5,0x3f,0xc4,0x10,0x0e,0xb0,0x21,0x84,0x1b, + 0xd8,0xc1,0xdc,0x5f,0x8c,0x25,0x8e,0xd2,0x46,0x0f,0xc7,0xd7,0x1c,0xb8,0x38,0x43,0xc1,0xf1,0xdf,0x3a, + 0x31,0xa1,0x5e,0xc7,0xa7,0x6a,0x99,0x74,0xaa,0x0f,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x6b,0x4b,0xb6, + 0x89,0xf9,0x5a,0x91,0x18,0x93,0x96,0x79,0xfe,0xc7,0xb5,0x0f,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x5b,0x82, + 0x68,0x2a,0xae,0x6a,0x53,0x13,0xf4,0xad,0x60,0xaa,0xc0,0xdb,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68, + 0x3b,0x0a,0x92,0xb1,0x94,0xfe,0x31,0x48,0x48,0x6f,0xb2,0xb9,0xb1,0xbf,0x61,0x10,0xa9,0xe4,0x16,0x40, + 0x2a,0x13,0xf8,0x75,0x6a,0x7f,0xe6,0x2d,0x34,0xab,0xa4,0xaf,0xe7,0x3e,0xd2,0xb0,0x55,0x51,0x7f,0x40, + 0xea,0xe4,0x22,0xee,0xbc,0x73,0xec,0x84,0xc0,0x9b,0x51,0x7f,0x4e,0xa1,0xbc,0xb8,0x43,0x3b,0xfb,0xa9, + 0xe8,0xc5,0x2e,0x39,0xd3,0x5d,0x19,0x18,0x0b,0x8c,0xaa,0x9e,0xec,0xab,0x08,0xfb,0x91,0x88,0x2e,0xac, + 0x71,0xcf,0xd5,0x46,0x6e,0x65,0x72,0x93,0x20,0xe2,0x8f,0xd9,0xa7,0xab,0xac,0x53,0x5c,0xcd,0x61,0x90, + 0x5a,0xd5,0x0b,0xbe,0x4e,0x7e,0xc6,0x69,0x50,0x10,0x34,0xf2,0x40,0xfb,0xf0,0x34,0x5b,0xdd,0xde,0xce, + 0xd5,0x12,0xf3,0x65,0x36,0xaa,0x54,0xce,0x5b,0xd9,0xa4,0xf4,0x6a,0xc8,0x60,0x04,0x6f,0x76,0xb8,0xf8, + 0x4d,0x2d,0x93,0x74,0x39,0x16,0xc3,0xd6,0x2e,0xb4,0x86,0xda,0x76,0xa6,0x23,0xdb,0xf1,0x80,0x80,0xed, + 0x3f,0x12,0xbc,0x5d,0x38,0x4d,0x68,0x02,0xfb,0x16,0x76,0x16,0x93,0xe4,0xb6,0x9f,0xec,0x1d,0x97,0x61, + 0x69,0x5b,0x8d,0x6c,0xfc,0xb5,0xaa,0x53,0x5b,0xd5,0xff,0xcc,0xab,0xf4,0x6b,0xa9,0x83,0x43,0x63,0x9e, + 0x12,0x92,0x9a,0xc1,0xa6,0x71,0x67,0xe7,0x31,0x2c,0x11,0x1b,0x65,0xb1,0x14,0x67,0xcf,0x92,0x38,0xcf, + 0x38,0x9f,0x80,0xf7,0x94,0x7e,0x5d,0x31,0x13,0xeb,0x04,0x18,0x20,0x0f,0x59,0x82,0x6b,0x1d,0x7a,0xa5, + 0x71,0xa4,0x50,0x23,0xc7,0x90,0x08,0x1c,0x2c,0x8c,0x63,0x13,0xc2,0x40,0xe8,0xb0,0x15,0x31,0x65,0xa9, + 0x8d,0x5d,0xcb,0x83,0x5f,0x9b,0xdd,0x07,0x89,0xbb,0xc4,0x69,0xc0,0x23,0x3c,0xa8,0x87,0x83,0x6b,0x21, + 0xb0,0x58,0xba,0x99,0x18,0x06,0xd9,0x85,0x86,0x25,0x66,0x27,0xf2,0x0d,0xd1,0x60,0x62,0xac,0x2f,0xb7, + 0x70,0xf3,0x63,0xd0,0x29,0xd6,0xc8,0x44,0xac,0x24,0x6f,0x87,0x65,0x8a,0x71,0x49,0x5c,0x96,0x1d,0x60, + 0x18,0x7b,0xff,0xff,0xf7,0x59,0x10,0x64,0xbe,0x39,0x11,0x2e,0x5d,0x85,0xa9,0x72,0x08,0x80,0x09,0xe8, + 0x8b,0xf0,0xed,0x94,0xc8,0xd4,0x79,0x59,0xf3,0x5f,0x9a,0x3e,0x58,0x9f,0xd8,0x69,0x0b,0xa6,0xb2,0x86, + 0x2d,0xd8,0x18,0xde,0xd1,0xee,0xb6,0xa9,0x5a,0x61,0xb8,0x00,0x71,0x8b,0x26,0xa1,0x94,0x18,0x9c,0x63, + 0xbe,0x47,0xe3,0xae,0x6e,0x06,0x73,0x7e,0xa2,0x0d,0x69,0x63,0x2c,0x40,0x36,0x6e,0x6d,0xb1,0x48,0xd4, + 0x5d,0x07,0xcc,0x2c,0x30,0x4d,0x0b,0xa4,0xc6,0xb8,0xc9,0xe2,0x79,0x11,0xb7,0xc6,0x6a,0x2b,0xba,0x88, + 0x10,0x00,0x33,0x66,0x65,0xb1,0x36,0x28,0x7c,0x00,0x37,0x3e,0x67,0xdc,0xb8,0x41,0x9e,0x5c,0x72,0x5f, + 0xde,0x17,0xa1,0x03,0xcd,0x7b,0x14,0x0d,0x05,0x31,0x57,0xba,0x6b,0x3d,0xb2,0x29,0xf3,0x66,0x29,0xc4, + 0x66,0x32,0xc7,0x05,0x2a,0x03,0xcb,0x2f,0x40,0x28,0x1c,0x48,0x20,0x4f,0xa0,0x95,0x36,0x7b,0x30,0xf4, + 0x2f,0x35,0x4d,0x0d,0xd5,0xb6,0xb3,0x33,0x1f,0x6c,0x05,0x01,0xb8,0x0d,0x1c,0x07,0x4e,0xa7,0x3d,0x4e, + 0xfa,0xa9,0x14,0x50,0x38,0x06,0x8c,0xc9,0x45,0x6d,0x1d,0x82,0x98,0xce,0x82,0xd8,0x8c,0xa3,0x58,0xf3, + 0xb9,0xe0,0xa4,0x0a,0x36,0xf4,0x4a,0x93,0xc1,0xf0,0xe2,0x65,0x31,0x79,0x53,0xa4,0xaf,0x0b,0xc2,0xf8, + 0x3d,0x1f,0xb4,0x61,0xc5,0x4e,0xa3,0xe6,0xb0,0x5b,0x67,0x7f,0xb3,0xae,0x8e,0x48,0xc2,0x61,0x08,0x6f, + 0xb7,0xbb,0x3b,0xfd,0x06,0x9a,0x45,0xb8,0x9b,0x8d,0x87,0x9d,0x9a,0xa6,0x8f,0x4c,0xbe,0xc2,0x35,0xcd, + 0x6a,0x40,0x49,0x84,0xa6,0x02,0xa7,0xd7,0x70,0xc9,0x08,0xda,0xcd,0xad,0xba,0xd4,0xe4,0x53,0x13,0xc0, + 0x83,0xcf,0x12,0x89,0x39,0x51,0x1f,0x3e,0x2b,0x76,0xa3,0x67,0x70,0xb4,0x8a,0x8e,0x9c,0xc9,0x1e,0xac, + 0xa2,0x2a,0x9b,0xb7,0xaa,0xe5,0xaa,0xeb,0x6e,0x76,0x9e,0x7d,0xd0,0x1c,0x4a,0x16,0x4a,0xd8,0xc3,0x77, + 0x77,0x54,0x32,0xb5,0x79,0xc3,0x95,0xac,0x50,0x09,0x8c,0x5d,0x69,0x8e,0xf6,0xa1,0x7e,0xf0,0xb7,0x01, + 0xf3,0x84,0xe7,0x6c,0x82,0x5e,0xd2,0x23,0x15,0xc8,0xa9,0x80,0xb5,0x75,0x27,0x8a,0x01,0x16,0xd8,0xc5, + 0x64,0x65,0x4a,0xbc,0x40,0x89,0x15,0x95,0x98,0xba,0x12,0xa7,0x19,0xa5,0xc7,0x73,0x1f,0xb5,0x3d,0x07, + 0xed,0xfb,0xcd,0x3e,0xd5,0xba,0x9a,0xbc,0x2c,0xd2,0x17,0x05,0x73,0xfb,0xc9,0xa4,0x94,0xc6,0x6c,0xdd, + 0xa9,0xad,0x22,0xdd,0x57,0x26,0x78,0xb3,0x32,0xd0,0x92,0xce,0x95,0x83,0x95,0xf4,0x14,0x57,0x32,0x7f, + 0xb4,0x57,0x07,0xa6,0x52,0xcb,0xce,0xce,0x13,0x23,0x4b,0x97,0xd9,0xb3,0x91,0x40,0xa2,0xa3,0x10,0x0d, + 0x7c,0xd0,0xfe,0x90,0x1e,0x5b,0x4c,0xf7,0xc8,0xc5,0x5b,0x4c,0xda,0xcc,0x85,0xe0,0xf6,0xfc,0xba,0x1d, + 0x47,0xe7,0x72,0xb1,0xae,0x44,0x39,0xf4,0x2e,0x7f,0x0c,0x84,0xba,0xfb,0x58,0x4b,0xa0,0xaa,0x75,0xb8, + 0xd3,0x1e,0x87,0x24,0xd6,0x81,0xfe,0xe2,0x6f,0xe6,0xba,0x5a,0x2f,0x40,0xd8,0x3b,0x08,0xcb,0x7f,0x0c, + 0x68,0x29,0x90,0x50,0x44,0xef,0xc0,0xad,0x0b,0xf7,0x04,0xe5,0x44,0x9c,0x9f,0xb0,0x33,0x85,0x7b,0x33, + 0xd7,0x76,0xce,0x25,0xf2,0x9e,0x4f,0x8f,0xad,0x0c,0x34,0x3b,0xd1,0x96,0x1b,0xf2,0x1b,0x3a,0x71,0xbe, + 0x5a,0x6c,0x73,0x49,0x9f,0x11,0x84,0xeb,0x9a,0x2b,0x3f,0xe0,0xa8,0x62,0x20,0x48,0x70,0xe3,0x9d,0xa7, + 0x6d,0x10,0x91,0x8c,0x10,0xa3,0x82,0xff,0x2c,0x6f,0x6c,0x02,0x92,0x91,0x7c,0xc6,0xaa,0xbc,0x53,0xfb, + 0xfa,0xb1,0x92,0x84,0xa5,0x4d,0x78,0xcc,0x34,0xbb,0x24,0xc2,0x43,0x98,0xa6,0x54,0xe7,0xe6,0xab,0x73, + 0xf7,0x6e,0x3f,0xbb,0x70,0x29,0xe1,0x77,0x0b,0x4a,0x3d,0xd1,0xb0,0x2b,0x7f,0x8e,0x2a,0xd5,0x99,0xad, + 0x5c,0x5d,0xa3,0x3c,0xae,0x81,0x97,0x8c,0x63,0xd7,0x2b,0x3b,0x31,0xea,0xd2,0x7d,0xfb,0x98,0xeb,0x55, + 0x57,0xae,0x09,0x75,0xcf,0x7e,0x6d,0xb2,0x3e,0xf9,0xfe,0xb9,0xef,0x9f,0x52,0xda,0xcc,0xec,0x29,0xf5, + 0x21,0xbb,0xac,0xd5,0x63,0xfa,0x63,0x0c,0xfc,0xc7,0x8f,0x89,0x02,0x72,0x24,0xd7,0x87,0x2c,0x7e,0x9c, + 0xd9,0xd7,0xc4,0x72,0xac,0xbc,0x12,0x1f,0xb3,0xed,0x0f,0x41,0x10,0x26,0xe2,0x48,0xd9,0xfa,0xbf,0xaa, + 0x40,0x07,0x22,0xbe,0x30,0x96,0xe4,0xe3,0xed,0xed,0x15,0x0e,0x4f,0x5a,0x83,0x2b,0x01,0x81,0xb7,0xd9, + 0xc7,0x9d,0x9d,0xd9,0x64,0x46,0xbb,0xe1,0x37,0x3c,0x5e,0x4c,0x2e,0xd2,0xa5,0x7a,0x8e,0xc7,0xf3,0xc9, + 0x39,0xed,0x8b,0x57,0xd9,0xc7,0xc9,0xe5,0xed,0xed,0x22,0x5d,0xa8,0x97,0x48,0x1d,0xf0,0x9f,0xb9,0x9a, + 0x5c,0xa5,0x67,0xea,0x05,0x15,0xbc,0x77,0x7b,0x7b,0x9d,0x5e,0xab,0x67,0xf4,0xf8,0xe9,0xf6,0xf6,0x38, + 0x3d,0x56,0x6f,0x88,0x6f,0x29,0xe2,0xa7,0xc9,0xe4,0xa9,0x4c,0x5b,0xfa,0x34,0x51,0xef,0x32,0x3e,0x08, + 0x1b,0x56,0xd8,0xab,0xd7,0xd9,0x73,0x1d,0xbf,0x4c,0xd4,0xfb,0xcc,0xc3,0x49,0xe8,0xa9,0x9b,0xdc,0xbc, + 0x23,0x90,0xbc,0x07,0x49,0xec,0xf3,0x44,0xf1,0xef,0x6f,0x74,0x54,0xbe,0xf7,0xa0,0x39,0x89,0xa9,0x04, + 0x67,0xbc,0x4d,0xd4,0xb3,0x9d,0x9d,0x67,0x6c,0x69,0xf1,0x62,0x67,0xe7,0x05,0xfc,0x19,0x82,0x5a,0x4d, + 0xe0,0x76,0x03,0xaf,0xcd,0x79,0x45,0x03,0xfb,0x81,0xb6,0x83,0x37,0x91,0xf2,0x8d,0x5a,0xa1,0x91,0xcc, + 0x35,0xf8,0x54,0x65,0x42,0x2b,0x1f,0x23,0xec,0x11,0xb3,0x9a,0xfe,0xf9,0x90,0x05,0x6b,0x47,0x63,0xbe, + 0xc4,0x54,0x0c,0x13,0x4b,0x31,0x4c,0xd4,0xd8,0x61,0x6e,0xdf,0xf4,0xdf,0xe3,0x44,0xbd,0xdc,0xd9,0x79, + 0x49,0x5d,0x7f,0x0f,0xb3,0xa9,0x57,0x3b,0x3b,0xaf,0xd0,0x67,0x8c,0xf8,0xca,0x0c,0xe8,0x4a,0x46,0xac, + 0x2e,0x75,0x38,0x27,0x57,0xe1,0x7c,0xbc,0xed,0x4c,0xc7,0xed,0xed,0x6b,0x3a,0xc7,0x7f,0xd3,0xf1,0x9b, + 0x64,0x12,0x9c,0x42,0xef,0xd5,0x9b,0x24,0xfd,0x84,0xe2,0x2b,0x6a,0x0c,0x48,0x44,0x05,0x13,0x21,0x56, + 0xb9,0x75,0xd8,0x1f,0xea,0x06,0x57,0xf5,0x3e,0xee,0x7a,0x80,0x19,0x04,0xe2,0x85,0xdd,0xd4,0x9d,0x4f, + 0x61,0xf3,0x71,0x67,0x82,0x63,0xe2,0x3c,0xfd,0x24,0xba,0x19,0x83,0xae,0x7b,0x28,0x5d,0xfc,0x51,0x65, + 0x3a,0xb3,0x32,0x51,0xe7,0x04,0x88,0x08,0xb4,0x7a,0x29,0x53,0x92,0xc3,0xc3,0x82,0x7f,0x67,0x03,0x53, + 0x92,0x13,0x0f,0x85,0x29,0xe1,0x52,0x9d,0x3e,0x5d,0xc9,0x94,0xdc,0xeb,0x4c,0xc9,0x27,0x75,0x8f,0xa7, + 0x24,0x57,0x73,0xf5,0x49,0xa6,0xe4,0x02,0x94,0x59,0x4e,0x6f,0xea,0x92,0x3f,0xfa,0x04,0x3a,0xdb,0x18, + 0x9a,0x1b,0x5c,0x99,0x87,0xe8,0x2c,0x78,0xeb,0xe2,0x4a,0x9f,0x6e,0x71,0x65,0x73,0x37,0xae,0x94,0x28, + 0xb2,0x72,0x17,0x8d,0x43,0x8d,0x96,0x81,0x12,0x6d,0xec,0x36,0x37,0x6c,0x91,0xb4,0x75,0x52,0x69,0x18, + 0x67,0xce,0x33,0x89,0x15,0x43,0x48,0x12,0xf2,0x96,0xdc,0x62,0xb5,0xa5,0x7d,0xb5,0xc8,0x6f,0x66,0x13, + 0x42,0xdc,0x77,0x4e,0x89,0x82,0xbf,0x5e,0x21,0x8b,0x30,0xa4,0x29,0x44,0x58,0xb1,0x11,0xec,0x25,0x19, + 0x67,0xae,0x76,0x87,0xbb,0xae,0x29,0x89,0x3d,0xbb,0xa5,0xc4,0x31,0x5e,0x2d,0x2a,0xbb,0x94,0x6d,0xbe, + 0x92,0x6d,0x7e,0x85,0x6d,0x7e,0x41,0xab,0xc3,0x08,0x81,0x58,0xde,0x63,0xa9,0x2b,0x3d,0x4e,0x18,0x2b, + 0xda,0xa1,0x75,0xb7,0x7e,0x08,0x22,0x10,0x21,0x0d,0x00,0x0c,0xaf,0xc1,0x40,0xba,0x83,0x21,0x0e,0x02, + 0x76,0x29,0x38,0xc4,0x03,0xc8,0x2c,0xe9,0x40,0xc8,0x24,0xbe,0x64,0x1c,0xc2,0x90,0x43,0x75,0x9e,0xb1, + 0xa1,0x48,0x8c,0x0d,0xb1,0xd8,0xd9,0x59,0xe0,0x4d,0x05,0x9d,0x34,0x98,0xe4,0x7a,0x72,0x4d,0xdb,0x35, + 0xad,0xe2,0x90,0x20,0xf8,0x2d,0x38,0x91,0x37,0xa3,0x53,0xd1,0x6c,0xc8,0x05,0x8c,0xa1,0x76,0xf9,0x39, + 0x62,0xd6,0x32,0x2b,0xe1,0x03,0x20,0x9b,0x10,0xdb,0x30,0x27,0x46,0xa8,0xe4,0x20,0x80,0xd4,0x84,0x8a, + 0x6f,0x04,0xc2,0xa9,0x0f,0xf7,0x8f,0x52,0x84,0xc1,0x71,0x57,0xfe,0xc1,0x19,0xc6,0xd0,0x4f,0xdf,0x04, + 0x1a,0xbd,0x57,0x86,0x5e,0xd9,0x86,0xfa,0x5e,0x87,0x18,0xe0,0x23,0xb3,0x73,0xde,0x71,0xc4,0x91,0xde, + 0x2f,0xec,0x93,0xf2,0xa6,0x72,0xc3,0xf4,0xad,0x2b,0xb9,0x56,0xfb,0x41,0x55,0x2f,0x7a,0x54,0xbc,0x0e, + 0x24,0x63,0x8b,0xd5,0xbc,0x2d,0x96,0x73,0x2d,0xf4,0xfa,0xed,0x6d,0x7f,0x64,0x41,0xe4,0x34,0x36,0x75, + 0x81,0xf3,0x96,0x73,0xbc,0xe9,0xfb,0x6e,0xc1,0x0f,0xc4,0xe7,0xe2,0x0a,0x8e,0x22,0xa9,0xb2,0x63,0x62, + 0xff,0xde,0xc0,0x0a,0x08,0xfc,0xae,0xc2,0x55,0x4e,0x73,0xbe,0x98,0x9d,0x26,0xa0,0x62,0xf0,0xb1,0x09, + 0x59,0x10,0x10,0xec,0x3a,0xe6,0x4f,0x82,0x08,0xc2,0xe0,0xba,0x40,0x57,0x99,0xc2,0xac,0xa8,0x92,0x73, + 0xac,0x9f,0x9a,0xc1,0xad,0xaf,0x60,0x6e,0xaa,0x9b,0xbe,0xd7,0xb9,0x81,0xf2,0x99,0xee,0x5e,0xd7,0xd2, + 0xbf,0x86,0xcf,0x65,0x6d,0x5f,0xc7,0x62,0x58,0x1b,0xf8,0x91,0x84,0x50,0x26,0xa2,0x52,0x8e,0xf3,0x86, + 0xcb,0x0a,0x44,0xed,0x67,0xc4,0x8f,0x81,0x2b,0x88,0x16,0x67,0x68,0xe1,0x59,0xbc,0xcc,0x14,0x46,0x68, + 0xde,0x07,0xe4,0x8e,0x42,0x3c,0xc8,0xcd,0x2f,0x0f,0xd4,0x7b,0xed,0x32,0x94,0x11,0xe4,0x87,0xf4,0xe6, + 0xfb,0x0e,0xd3,0xd9,0x77,0x78,0xb8,0x60,0x77,0x07,0x48,0x9d,0x45,0x2d,0x1e,0x09,0x9f,0x59,0xb4,0x92, + 0xa3,0x15,0x61,0x52,0x8e,0x9d,0x34,0x9a,0x15,0x0d,0xdb,0x28,0x4b,0x46,0xa8,0xbe,0x78,0x12,0xcc,0xc4, + 0xf6,0x1d,0x0e,0x0f,0x22,0xa9,0x6a,0xfb,0xc8,0x77,0xd2,0xa6,0x4f,0xd8,0x9f,0xe6,0x2e,0x99,0x59,0xe0, + 0x7a,0x11,0x48,0x45,0x99,0x0c,0xd8,0x30,0x8c,0xb5,0xab,0x88,0x33,0xbe,0x63,0x12,0x6b,0xdd,0xd6,0x27, + 0x54,0xc7,0x3f,0xe1,0x0d,0xe6,0x5c,0x12,0x43,0x21,0xe7,0x4f,0x41,0x03,0x7c,0x05,0xa6,0x8f,0x96,0xda, + 0x0d,0xa4,0x54,0xfa,0x2b,0x2b,0x12,0x04,0x51,0x62,0xf3,0xe6,0xb1,0x89,0xad,0x44,0xe8,0x8f,0x51,0xa1, + 0xe5,0x27,0x7b,0xde,0x7c,0x05,0x7d,0x71,0x89,0xcb,0x41,0x8e,0xd8,0x9f,0x6f,0x20,0xa6,0xed,0x77,0x5e, + 0x92,0xf4,0xe0,0xd7,0xd9,0xde,0x27,0xad,0x97,0x7b,0xf9,0x9c,0x0e,0x8b,0x7b,0xe6,0xe6,0x41,0xa6,0x6f, + 0x7c,0xa0,0xec,0x38,0xf2,0x45,0x22,0x75,0xc3,0x5d,0x4b,0xf5,0xc6,0xec,0xf8,0x3e,0x87,0x40,0xfc,0x87, + 0x01,0x36,0x26,0x89,0x58,0x39,0x70,0xc2,0x37,0x61,0xfa,0x57,0xb6,0xb5,0xe4,0x77,0x73,0x9a,0xba,0x7c, + 0x77,0xba,0x06,0xa6,0xe3,0xa6,0x3a,0x11,0xb7,0xea,0xcb,0x77,0x15,0xc2,0x12,0xa1,0x34,0x01,0xe7,0x13, + 0x22,0x8c,0x39,0x34,0xc8,0xbc,0xa0,0x4f,0xdf,0xe3,0x1e,0xf8,0x30,0x66,0x7d,0xb8,0xbc,0x52,0x01,0x81, + 0xb8,0x72,0x4e,0x36,0x52,0x9b,0xb9,0xda,0xe2,0xb4,0xdd,0x2b,0xf9,0x87,0xef,0x50,0x6b,0xab,0x25,0xbd, + 0xd2,0x5f,0x60,0xb0,0xfa,0xf6,0xb6,0x70,0x5d,0xc0,0x10,0x66,0x56,0x03,0x59,0x99,0xae,0xb0,0x60,0x78, + 0x5c,0xf9,0x8b,0xea,0x89,0xc8,0xfc,0x59,0x9f,0x7c,0x2a,0x5a,0xc7,0x7f,0x66,0x11,0x67,0x22,0xa0,0x5e, + 0x1c,0xed,0xd6,0xbb,0xd1,0xf2,0x4a,0xb1,0xaa,0x7f,0x79,0x95,0x44,0xaa,0x0a,0x00,0xd8,0xf2,0xe2,0x59, + 0xb4,0xdf,0x84,0x7a,0xfa,0xef,0x3b,0xbb,0x4e,0x4f,0x7e,0xab,0xd2,0xb7,0x95,0x97,0xe0,0x5b,0xa9,0x58, + 0xd9,0xd1,0xd2,0x99,0xec,0x8f,0x15,0x6e,0xdd,0x0d,0xc3,0xc6,0x3b,0xec,0x6d,0x14,0xd4,0xcc,0x48,0x1f, + 0x70,0xac,0x80,0x56,0x39,0xe3,0x8a,0x54,0x2b,0x6b,0x0e,0xd1,0xb9,0xcb,0xb7,0x7f,0xb3,0xab,0xf2,0x66, + 0x02,0xee,0x7e,0x10,0x13,0x6f,0xd9,0xb8,0x46,0xe2,0x51,0xc2,0x90,0x78,0x47,0x2e,0x9d,0x28,0x81,0xec, + 0x30,0xa8,0xca,0x61,0x78,0x81,0xcd,0x2f,0xf6,0x60,0xdb,0x54,0xdd,0xb3,0x15,0x0b,0x01,0xea,0x35,0xe4, + 0x8c,0x8c,0xc9,0x38,0xcc,0x19,0x7c,0x0f,0x02,0xcb,0xa7,0x56,0x5c,0x8b,0xb6,0x43,0xe3,0x26,0x63,0xce, + 0x70,0x57,0x95,0xb5,0x3e,0x75,0x55,0xd2,0x33,0x47,0x4e,0xb3,0xfe,0x50,0x1d,0x49,0x51,0x60,0x44,0x3b, + 0x2e,0x25,0xd4,0xa7,0xbb,0x6a,0xa6,0x84,0xcc,0xd5,0xbb,0x1b,0x41,0x44,0x69,0x02,0x79,0xba,0x58,0xd1, + 0xa0,0x42,0xd1,0xd7,0x9e,0x52,0x35,0x42,0xb8,0x0b,0x67,0xe7,0x0c,0x6b,0x6d,0x7a,0x87,0xbe,0xcb,0x74, + 0x0f,0xf3,0x19,0x05,0x52,0x69,0xdd,0x8d,0xee,0xcd,0x5f,0xc1,0x0a,0x4a,0x0c,0x79,0x38,0xec,0x41,0xc4, + 0xb7,0xe0,0x51,0x35,0x1c,0x72,0x0b,0x81,0xb4,0x4d,0x26,0x25,0xed,0x99,0x12,0x44,0x65,0xb8,0x6f,0xc2, + 0x64,0x39,0x08,0xfd,0xb7,0x36,0xda,0x71,0xed,0x8a,0x02,0xbf,0xbb,0x52,0x1f,0x45,0x76,0x76,0x3f,0x8a, + 0xee,0xb3,0x21,0xf9,0x7d,0x17,0xb0,0xf4,0x3e,0x2d,0xf2,0x66,0x4f,0x81,0xc8,0x5d,0xed,0xf4,0xe2,0x6b, + 0x55,0x7c,0xc1,0x72,0x7f,0x82,0x64,0xc4,0xb1,0x9d,0x8c,0xa2,0xb1,0x5d,0x74,0xc8,0x89,0xba,0xa8,0x8c, + 0xf9,0x91,0x14,0x29,0xe7,0x45,0xa9,0xf7,0x5c,0xcb,0x52,0x5c,0x52,0x3f,0x9a,0x44,0xb6,0xa8,0xec,0x5d, + 0x79,0x43,0x70,0xbc,0xa8,0x42,0x0f,0x99,0x36,0x5b,0xc0,0xa1,0x8d,0x01,0x92,0x7a,0x3a,0xde,0x84,0x49, + 0x15,0x98,0xef,0x32,0x45,0xe3,0x60,0x8e,0x2b,0xd6,0xb4,0x4f,0x4a,0x27,0x00,0x1b,0xeb,0x47,0xa5,0x8d, + 0x3c,0x50,0x67,0xf0,0x5b,0xd2,0xb2,0x59,0x54,0x25,0xcf,0x42,0x4e,0xbd,0xa8,0x8c,0xb8,0xca,0x48,0xfd, + 0xcf,0xf3,0xe6,0x49,0xc1,0x48,0x0f,0x06,0xae,0x2a,0x0e,0xef,0x54,0x72,0x70,0x6c,0xee,0x07,0x7a,0x22, + 0x51,0x6e,0xc2,0xb0,0xf7,0xfe,0xbe,0x8c,0xbe,0x4a,0x80,0xa3,0x40,0x5a,0x09,0xd3,0x41,0x82,0xeb,0xbe, + 0x61,0x38,0x81,0x2b,0xb9,0x12,0x73,0x39,0x84,0x45,0x31,0x4f,0x2a,0x68,0x78,0x88,0x41,0xf5,0x7d,0x0b, + 0xb3,0xdf,0x73,0x36,0x0d,0xe3,0x5b,0xe8,0x77,0xc5,0x92,0x59,0xa2,0x92,0xe2,0xc0,0x10,0xa3,0xe3,0x7d, + 0x65,0x94,0xd3,0xed,0x62,0x1e,0x49,0xfc,0xb3,0x4b,0xc4,0xef,0x94,0xa6,0x02,0xc5,0x35,0xd3,0xe8,0x53, + 0x9a,0x96,0x39,0xe7,0x48,0x21,0xd0,0x7b,0xd7,0xe5,0x74,0x67,0x87,0xed,0x10,0x7d,0x54,0x4b,0xce,0x55, + 0x39,0x18,0xe2,0xe8,0x1e,0x5b,0xde,0x45,0x6c,0xdf,0x0d,0x5d,0xbe,0x87,0x90,0x9d,0x9d,0x93,0xca,0x5d, + 0x78,0x6b,0xd1,0x9b,0x30,0x5b,0x44,0x74,0xb3,0xe9,0x26,0x62,0x6d,0xa5,0x0c,0x8c,0x75,0x18,0x50,0xf6, + 0xe5,0xf0,0x80,0x5f,0xca,0x80,0x4b,0x53,0x9e,0x96,0x7f,0x3b,0xbc,0x9c,0x71,0x95,0x75,0x66,0xef,0x85, + 0xcc,0x9e,0x59,0xa3,0xd7,0x1c,0xd6,0x81,0x18,0xaa,0xd5,0xe1,0xc1,0xd1,0x78,0x6e,0x66,0xda,0xc9,0xf9, + 0x9c,0x5f,0xd7,0xee,0x01,0x46,0xb2,0xcc,0x6a,0x62,0xf8,0x0a,0xe2,0xef,0x2a,0xe2,0xe9,0xe6,0x90,0x71, + 0xa9,0x38,0x3e,0xcd,0xda,0xa4,0xe3,0xa3,0x87,0x38,0x3d,0xee,0x75,0xc3,0x44,0x74,0xa9,0x8c,0x47,0x54, + 0x3a,0x33,0xb6,0x9d,0xe7,0xb0,0x6c,0x49,0x2f,0x94,0x33,0x43,0x4c,0x17,0x6b,0x0e,0xb2,0x61,0x6d,0x07, + 0x79,0x02,0xcc,0x7c,0xf4,0x8c,0xf9,0x2a,0xbe,0x75,0x27,0x9c,0xdd,0x68,0x01,0x21,0x36,0x56,0xb5,0xfe, + 0xec,0x54,0xef,0xec,0x98,0xb9,0xb6,0x5e,0x26,0x46,0x6d,0xad,0x66,0xea,0x5c,0x51,0x67,0xd6,0x1d,0x7e, + 0xea,0x5b,0x7f,0x9a,0x33,0x50,0x67,0xd6,0x52,0x91,0x20,0x39,0x4a,0x86,0xcc,0xd7,0xac,0x5d,0xb2,0x4c, + 0xf4,0x33,0x13,0xf2,0xc9,0xf2,0x2b,0xac,0xc4,0xa5,0x6f,0xb3,0xf2,0xf0,0xe1,0x91,0xd1,0x1f,0x59,0x8a, + 0x8b,0x96,0xc2,0xa4,0xb8,0x55,0x7b,0x67,0x81,0xba,0x30,0xf5,0xbd,0xf1,0x11,0x80,0xab,0x09,0xe2,0x38, + 0xcd,0x8b,0xbc,0xa1,0x5c,0xfb,0xc1,0x1b,0xf9,0xa0,0x1e,0x15,0x44,0xd3,0xe4,0x44,0x3b,0x1e,0x64,0x95, + 0xaf,0x57,0x55,0xd4,0x2a,0x5b,0x60,0xd8,0xec,0x87,0x59,0xe5,0x3b,0x82,0xe0,0x2b,0xb6,0x46,0x55,0xf3, + 0xb5,0x78,0x25,0xc7,0x2c,0xe8,0x3a,0x92,0xfc,0xdb,0xa9,0x64,0x8a,0xd3,0xa7,0x15,0x61,0x05,0xa6,0xcb, + 0x98,0x47,0x09,0x13,0x38,0xf4,0x6a,0x37,0xc9,0xea,0x79,0x02,0x6b,0xe8,0x50,0xe8,0xfc,0x83,0xee,0xae, + 0x1a,0x9f,0x9b,0x36,0xba,0x7d,0x6b,0x85,0x95,0x81,0xbd,0x73,0x9f,0x19,0x9c,0x44,0x36,0xda,0x53,0x7a, + 0x13,0xa5,0x51,0x85,0x1f,0x1f,0xf8,0xc1,0xdc,0xb5,0xb7,0x9b,0xc1,0xe0,0xaf,0xd8,0xbd,0x1f,0xa5,0xf7, + 0x77,0x5b,0xc4,0x0b,0x62,0xb7,0x72,0xd8,0x7d,0xfb,0xfb,0xa4,0x03,0x91,0x37,0x1b,0x2e,0x7a,0xb3,0xe8, + 0xd2,0x51,0xb5,0xee,0x7e,0x52,0x27,0xc9,0x24,0xbe,0x75,0x1d,0x6d,0x06,0xae,0x76,0x17,0x9d,0x45,0x87, + 0x30,0x2d,0xef,0x0a,0xe7,0xbd,0x4e,0xd4,0x5c,0x47,0x62,0x3d,0x01,0x15,0x34,0x93,0x47,0x91,0x39,0xf9, + 0x7e,0xa8,0x2c,0xd1,0x2c,0x8e,0x63,0x44,0xfb,0x7c,0xdf,0x4b,0x62,0x00,0xf5,0x46,0xbd,0xd6,0xca,0x21, + 0x22,0x42,0x0f,0x7f,0x72,0xeb,0xbb,0xca,0x22,0x24,0x0e,0x4b,0x19,0x14,0xa6,0x6f,0xff,0xcd,0x21,0x82, + 0xaa,0xdd,0x8c,0x1f,0xd4,0x2f,0x15,0x6b,0xcd,0x73,0x6b,0xec,0xeb,0x03,0x65,0xeb,0xab,0x5c,0xa2,0xa5, + 0x34,0x36,0x10,0x78,0x50,0xd3,0x98,0x2a,0xf8,0xb6,0x8a,0x0f,0xa3,0x69,0x5b,0xcf,0x69,0x10,0x6c,0x35, + 0x4c,0xbf,0xf9,0x1c,0x7f,0x17,0xba,0xcd,0xa3,0xa3,0xbb,0x6d,0xda,0xb7,0xa7,0x4c,0x32,0xde,0x61,0x12, + 0x6f,0xd0,0xeb,0x28,0x82,0x99,0xfe,0x0f,0x44,0x84,0xb9,0xc9,0xba,0xbd,0x05,0xaf,0x28,0xe6,0x28,0xae, + 0xc3,0xd6,0xc5,0xd8,0x59,0x0e,0xc5,0xc5,0x2e,0x61,0x79,0x58,0x79,0xdc,0x3f,0x59,0xb5,0x6d,0x55,0xde, + 0xc7,0x34,0x48,0xa5,0x08,0x2b,0xb0,0x9b,0x73,0xc3,0xc4,0x50,0x99,0x6a,0x29,0x8d,0x16,0xc1,0xa9,0xfe, + 0xe8,0x80,0x1f,0x63,0x3b,0x4a,0x4d,0x55,0x10,0x77,0x33,0x36,0x95,0xdc,0x80,0xba,0x8e,0xcb,0x89,0x59, + 0x93,0xdd,0xc8,0x66,0x44,0x69,0x3d,0x61,0xf3,0x59,0x9b,0x91,0xf8,0x1c,0xbb,0x80,0x0c,0x69,0xb6,0xad, + 0xdb,0xdb,0xda,0xd6,0x92,0x0e,0x35,0xe3,0x2a,0x0a,0xa1,0x53,0x07,0xe7,0x31,0x87,0xe5,0x79,0xc9,0xb7, + 0xd6,0x1c,0xec,0x27,0x61,0x4c,0x7e,0x3b,0x8d,0x26,0xfc,0x35,0x11,0x8e,0x54,0x9d,0x81,0xb3,0x5f,0x2a, + 0x1f,0x2a,0x39,0x3a,0xfe,0x14,0x77,0x8b,0x12,0xf3,0xd0,0x43,0xc4,0x2d,0x6f,0x9c,0x7e,0x6a,0x89,0x54, + 0xff,0x69,0x68,0x1e,0x5a,0x76,0x0c,0xa7,0x10,0xde,0xe7,0x9f,0x88,0x00,0x6c,0x4d,0x56,0x25,0x98,0x5c, + 0x1a,0xc1,0xc4,0x90,0x83,0xc8,0xba,0xfd,0x01,0x2d,0xfe,0xa4,0x16,0xbb,0xa8,0xf4,0xfe,0xf1,0xd4,0x04, + 0x37,0xb8,0xcf,0xd3,0xa6,0x7a,0xb1,0x99,0xd3,0xb2,0x1f,0xad,0x39,0x40,0x60,0xb5,0xdf,0xc3,0xd6,0xe6, + 0x08,0xea,0x0d,0x26,0xd8,0xe5,0xf5,0x5d,0x5d,0x4d,0x75,0xd3,0xe8,0x99,0x5d,0x7a,0x63,0x40,0x23,0xf1, + 0x75,0xc4,0x8f,0x60,0x5b,0x1e,0x36,0x8a,0xe6,0x61,0x51,0xda,0x6f,0x5c,0x92,0x7e,0x37,0x0a,0x76,0x0d, + 0x43,0x83,0x60,0x21,0x28,0xcd,0x2e,0x35,0x8c,0x8b,0xd9,0x05,0xc0,0xa1,0xf3,0x09,0x66,0x3b,0x78,0x4f, + 0x69,0x67,0x37,0x41,0x81,0x87,0xbd,0x02,0x0f,0xe1,0xa3,0xe6,0xd8,0xb5,0xb0,0x1b,0x4c,0x0e,0x1d,0xcf, + 0x63,0x63,0xfb,0xed,0x09,0x5e,0x18,0x6b,0xe7,0x08,0x7a,0x15,0x4c,0xbd,0x99,0x32,0x9a,0x6a,0x5a,0xcb, + 0x60,0x7c,0xc5,0x29,0x0f,0xaf,0x38,0xdd,0x18,0x5d,0xe3,0xa7,0xc1,0x13,0xe0,0xdb,0x3d,0x02,0x5c,0x08, + 0xf7,0x21,0x0e,0x64,0x60,0x8e,0xbc,0xbd,0x81,0x65,0x4e,0x6e,0x6f,0x03,0x4a,0x9f,0x30,0xe2,0xaa,0xb4, + 0x3a,0xfd,0xe8,0x98,0xed,0x95,0x77,0xe3,0x9a,0xe7,0xa3,0x96,0x58,0x76,0x3e,0x30,0x7a,0x74,0x83,0x49, + 0x92,0xe0,0xe8,0x77,0xb8,0xdf,0x5c,0x96,0xc6,0xa6,0x82,0x46,0x9d,0xa2,0xb4,0x08,0xc1,0x3a,0xe8,0x79, + 0x1d,0xf1,0xea,0x38,0xe3,0x7d,0xe3,0xc2,0x10,0xd9,0x1d,0xb4,0x8d,0xdb,0x4c,0x73,0xda,0xca,0xf0,0x14, + 0x27,0xdc,0xc3,0x3c,0x82,0xc7,0x20,0xe8,0x1a,0x02,0x65,0xc9,0x5b,0x5c,0xc1,0x26,0xc9,0x96,0xe1,0x6d, + 0x95,0xd3,0x58,0xd8,0xba,0x5a,0xe6,0x92,0xc7,0x2f,0x13,0xef,0x03,0xc0,0x86,0xe4,0x47,0x57,0x34,0xda, + 0x65,0x37,0x26,0xa8,0x37,0x5d,0xb1,0x3e,0x18,0xa2,0x30,0xb7,0xc9,0x69,0x27,0x19,0xb7,0xa7,0xa9,0x28, + 0x8b,0x3b,0xb3,0x66,0x9a,0xf7,0x0d,0x2a,0xee,0x8a,0xa3,0x33,0xc1,0x83,0x33,0xc5,0x36,0xb1,0x51,0xd0, + 0xdc,0x22,0xf4,0x19,0x1e,0xd7,0x03,0xf4,0x13,0x3d,0x28,0x33,0xb4,0x7e,0x1f,0x93,0x4b,0x6b,0xbe,0x1b, + 0xd1,0x53,0xa7,0xe9,0xb8,0xe0,0x97,0xc2,0xf5,0xa3,0x7b,0x09,0xa7,0xf6,0xa2,0x0f,0x7f,0x7d,0x02,0xf1, + 0x36,0x65,0x16,0xe6,0x1c,0x56,0x47,0x8c,0x33,0xbc,0x93,0xbc,0x79,0x30,0xd0,0x02,0x93,0x19,0xee,0x79, + 0x80,0xa4,0x36,0x2e,0xec,0xe9,0xa1,0x05,0xec,0x1d,0xdd,0xc7,0x30,0x72,0xee,0x0c,0x62,0x2e,0xbf,0x7d, + 0x22,0x44,0x84,0x5f,0xd0,0x8c,0xc7,0x9b,0xdf,0xdb,0xe8,0x7b,0xc9,0xae,0xc3,0x4b,0x12,0x0f,0x25,0x52, + 0xe2,0x69,0xed,0xa6,0xc1,0x79,0x51,0x84,0x98,0xac,0x83,0x8d,0x24,0x06,0xfb,0x5f,0xda,0x9e,0x9d,0xb6, + 0x42,0x01,0x43,0x14,0xb1,0x84,0xc5,0xe8,0x8c,0xeb,0xb1,0x31,0xe5,0x85,0x8c,0xe1,0x86,0x78,0x71,0x60, + 0x76,0xeb,0xd0,0xe2,0x1c,0x6d,0xdd,0xf9,0x35,0x89,0x8e,0xab,0x38,0x18,0x39,0x7b,0xd5,0xa1,0x8b,0x2f, + 0x67,0xbb,0xbb,0xfc,0x5a,0x62,0x2c,0xa9,0x29,0xb0,0xee,0x22,0xda,0xc0,0x9d,0x60,0x33,0xfa,0x76,0x67, + 0x40,0x18,0xa8,0xa7,0xce,0x62,0x67,0xdc,0x1f,0x68,0x15,0xfd,0x9e,0xae,0x27,0xb5,0x9c,0x1f,0x32,0x5b, + 0x93,0xdc,0x1c,0x27,0xe6,0x58,0xe1,0xfb,0x4e,0xac,0xc1,0x85,0xbb,0x0d,0x99,0x00,0xe4,0x98,0x28,0xd0, + 0xc8,0xd8,0x29,0x68,0x1b,0xbd,0xd0,0xd3,0x17,0xfa,0x6a,0xc9,0x87,0x7b,0x2e,0xfe,0x11,0xc9,0x84,0xb6, + 0x35,0x31,0x9e,0x27,0xf3,0x6a,0xfa,0xc9,0x60,0x0f,0xd7,0x31,0x5a,0xc4,0x20,0x73,0xdd,0x23,0x9a,0x1d, + 0xb9,0xdb,0xbf,0xa7,0x66,0xda,0x41,0x81,0x84,0xbe,0x54,0x9d,0x0d,0x23,0xc7,0xfe,0x3d,0xd9,0x37,0x26, + 0xac,0x85,0x71,0xf0,0x0d,0xa2,0x48,0xa4,0x87,0x11,0x3b,0xfb,0xda,0x80,0x17,0x43,0xf7,0x66,0xdd,0x54, + 0x36,0xcc,0xbe,0x91,0x3e,0xae,0x3a,0x57,0x71,0x1f,0x4a,0x74,0x8b,0xa3,0xf1,0x0a,0xac,0x76,0xb6,0xbd, + 0xbd,0x42,0xac,0x6c,0xda,0x1b,0x97,0x79,0x8d,0xbb,0x43,0x72,0x71,0xe6,0xdd,0x57,0x0d,0x91,0xdd,0xc2, + 0x08,0x12,0xf1,0x6d,0x42,0x62,0xdc,0x8f,0x1c,0x4f,0xc8,0x89,0xe6,0x05,0xee,0x37,0xbb,0x71,0x25,0xf8, + 0x96,0x60,0x5f,0x68,0x20,0x1c,0x4b,0x8e,0x76,0x0a,0xfd,0x8f,0x36,0x88,0x0f,0x53,0x2c,0x11,0x14,0x52, + 0x8d,0xe8,0x8c,0x99,0xdc,0x67,0x5e,0x93,0x5b,0xa1,0x07,0xb4,0x60,0x73,0x1d,0xe1,0x4a,0x2d,0x79,0x4e, + 0x74,0xa0,0x52,0x4f,0x2b,0xcb,0x3e,0x5c,0x2b,0x1f,0x59,0x69,0x3a,0x69,0xba,0x2c,0xc3,0x91,0x8b,0xf0, + 0x64,0x50,0x37,0x5f,0xac,0xb2,0x9b,0xd5,0x80,0xfc,0x44,0x19,0x01,0x21,0x52,0x20,0x4c,0xe4,0xe3,0x45, + 0xfc,0x69,0x22,0x09,0x09,0x70,0x6a,0x32,0xe9,0x89,0x33,0xe9,0x37,0xc8,0xe4,0x9d,0xea,0x4b,0xf0,0x6b, + 0x0a,0x14,0x21,0x25,0x96,0xec,0x09,0x89,0x4c,0x7a,0x0a,0xd2,0x03,0x6e,0x19,0xb9,0xf7,0x21,0x76,0x65, + 0xdf,0x27,0x20,0x5f,0x5a,0x8c,0xfb,0x5e,0x14,0x25,0x0e,0xb8,0xa2,0xd4,0xfb,0x56,0x97,0x1e,0x3b,0xb1, + 0x2f,0x2e,0x7d,0x1c,0x66,0x11,0xfb,0x04,0x31,0x16,0xa3,0x12,0x73,0xbe,0x72,0xeb,0xfc,0x4c,0x2c,0xd8, + 0xee,0x69,0x69,0x73,0xcc,0xbc,0x29,0xe3,0x95,0x6a,0x0a,0x5a,0x5f,0x04,0x57,0x56,0xa2,0x0e,0xbb,0xb2, + 0xe2,0xce,0x28,0x85,0xc1,0xf4,0x99,0x04,0xb5,0x7d,0x60,0x21,0xcd,0x4e,0x4e,0xe8,0x19,0x19,0x94,0x0f, + 0x93,0x15,0xe3,0xee,0xce,0x57,0x9e,0x14,0x11,0x1a,0xd0,0x8a,0x06,0x4d,0xf7,0xf8,0x22,0x9a,0x68,0x37, + 0x2c,0xe7,0xbe,0xf4,0x01,0x5e,0xa5,0x30,0x6b,0x0d,0x83,0x54,0x5c,0xc9,0x64,0x04,0xa2,0x92,0x90,0x1e, + 0xaf,0x88,0x39,0xea,0x84,0x82,0xc9,0xef,0xe2,0x77,0xb6,0xfa,0x88,0xcd,0x65,0x94,0x86,0xb2,0x2c,0x3b, + 0x24,0x9d,0x8f,0x75,0xd6,0x21,0x28,0x4b,0x43,0x50,0x96,0x8e,0xa0,0x2c,0x7b,0x04,0x65,0xd9,0x27,0x28, + 0xcb,0x1e,0x41,0x59,0x0e,0x12,0x94,0xe5,0xff,0x9c,0xa0,0xb4,0x03,0x32,0x14,0xa5,0xbc,0xa4,0xd1,0x8d, + 0xec,0x06,0xda,0xe3,0xea,0xb4,0x4c,0x83,0x1a,0x8c,0xb3,0x46,0xe9,0x17,0x27,0xe9,0xd4,0x17,0x77,0xa4, + 0xbc,0x6c,0x32,0x33,0xa1,0x4e,0x9f,0xf2,0x9f,0xdd,0x88,0x30,0x72,0xbc,0xe2,0x20,0xca,0x49,0xe7,0xe2, + 0x6a,0x60,0x67,0xff,0x96,0x0e,0x15,0xc1,0xe1,0xc0,0xd7,0xbf,0x52,0x57,0xd7,0x4c,0x89,0xe5,0xb8,0xcf, + 0xbe,0xe9,0x73,0xea,0x74,0xb0,0x27,0x00,0x09,0x13,0x37,0x9d,0x21,0x87,0x9f,0x53,0xeb,0x3d,0xb9,0xdb, + 0x86,0x91,0xd1,0x69,0x88,0xde,0x61,0xd2,0x65,0xd9,0xa4,0xdd,0xa8,0x8b,0xe3,0x5c,0x18,0x76,0x97,0xe8, + 0x76,0x47,0x97,0xc8,0xb2,0x06,0x79,0x5d,0xf3,0x3f,0x17,0xd0,0xcd,0x46,0x22,0xdd,0xe7,0xf0,0x3f,0x07, + 0x12,0x87,0x90,0xed,0xe7,0x0c,0xac,0x94,0x1c,0xf1,0xa7,0xb2,0xc1,0x0e,0x0d,0x91,0xd8,0x6d,0x23,0xb5, + 0x6c,0x5a,0x20,0xf8,0xa0,0x45,0x37,0x91,0xc0,0xd1,0xb1,0x3e,0x3b,0x76,0x88,0xec,0x3e,0xbd,0x73,0x07, + 0x93,0xdf,0xa9,0xb4,0x65,0x06,0xb7,0x3b,0xd3,0x70,0x24,0x25,0x44,0x4b,0x58,0xb5,0x92,0x79,0xae,0x78, + 0x3b,0xae,0x8d,0xf7,0x85,0x83,0xce,0xc0,0x6a,0xfb,0x81,0xba,0xf7,0x40,0x45,0x86,0x64,0x6f,0x47,0x97, + 0x75,0xbe,0x7c,0x66,0x7d,0x0e,0xfc,0x2b,0x6c,0x26,0x4c,0xae,0x53,0x7b,0x06,0x45,0x5c,0x1a,0x97,0x0b, + 0x82,0x2d,0xad,0x06,0x42,0xfd,0xfb,0xb9,0x96,0x60,0xe4,0x61,0x40,0xae,0x3c,0xab,0x82,0x05,0xa8,0x02, + 0xcf,0x26,0xde,0xd5,0x1d,0x7e,0x29,0x17,0xeb,0x2f,0x61,0x8f,0xec,0xbb,0xf5,0x75,0x25,0xbe,0x82,0xd0, + 0x58,0x9c,0x5b,0xe6,0x80,0x36,0x6e,0x2f,0x8c,0x78,0xa0,0x5b,0x50,0x03,0x31,0xad,0x5c,0x7c,0xca,0xda, + 0x75,0xa7,0x30,0xf0,0x80,0xb8,0x1a,0xb8,0x5c,0x0a,0x21,0x2a,0x43,0x12,0x05,0xde,0x1f,0x5d,0x92,0xa5, + 0x5a,0xe8,0x21,0xe4,0x35,0x07,0x26,0x37,0x64,0x4e,0x02,0x8a,0xf1,0xa1,0xa1,0x16,0xd9,0x69,0xe9,0x7f, + 0x5c,0xad,0x0e,0x6b,0xe5,0xd5,0x39,0x48,0x82,0x6b,0xe5,0xe2,0x8a,0xed,0x5f,0xaf,0x4f,0xf4,0x53,0xc7, + 0x22,0xa5,0x1c,0xa7,0xb7,0xef,0xba,0x65,0x4d,0x5d,0x85,0xe7,0xa4,0x31,0x4f,0x0c,0x2d,0x9a,0x7e,0xe1, + 0x92,0xa0,0x24,0x76,0x11,0x00,0x27,0x70,0x0e,0x57,0x20,0x06,0x37,0xc8,0x83,0x5a,0x62,0x4d,0xb3,0x0f, + 0x75,0x1a,0x1d,0x5f,0x80,0xc0,0x7f,0x08,0x0d,0x43,0x09,0x29,0x39,0x57,0x5e,0x06,0x7b,0x37,0x5d,0x96, + 0x71,0x5f,0x64,0x22,0x35,0x24,0x5c,0xc7,0xd8,0x98,0x69,0x5b,0xd5,0x09,0x04,0x87,0xd5,0x5d,0x87,0xc4, + 0x74,0x50,0x6e,0xb8,0x1b,0x37,0x8c,0xb9,0x1b,0x50,0x2b,0x81,0xf0,0x63,0x1e,0x7e,0xea,0x34,0x87,0x2c, + 0x1a,0x20,0xb4,0x37,0xa0,0x2a,0xeb,0x32,0xe6,0x81,0x2f,0x6d,0x4f,0x27,0x4b,0xe7,0xc6,0x9f,0x5c,0xe4, + 0xac,0x45,0xf4,0x5a,0x5b,0xea,0x2f,0xbd,0xbf,0xbb,0x44,0x88,0x42,0x2b,0xfd,0x52,0x91,0xbf,0x59,0x3d, + 0xa0,0xa6,0x02,0x27,0xd5,0x4e,0xf4,0x0b,0xbf,0xb9,0x7f,0x5d,0x3d,0xdc,0x7f,0xf8,0x8f,0x07,0x67,0x2a, + 0xfa,0x55,0x1e,0xa3,0xa4,0x97,0xf9,0xb5,0xcf,0xfc,0x3a,0xbc,0x20,0x74,0x66,0x60,0x01,0xde,0x7b,0x16, + 0x84,0xf4,0xe5,0xd6,0x0b,0x3f,0xcb,0xfe,0xa2,0x58,0xd7,0x37,0xd1,0x6a,0xe8,0xba,0x86,0x06,0x99,0xb0, + 0x72,0x0a,0x67,0xdf,0xb3,0xd0,0xc7,0x33,0xe8,0x67,0xfc,0xa9,0xca,0x3e,0x55,0x7f,0x12,0xa1,0x13,0xc1, + 0x70,0x8d,0xee,0x29,0x6b,0x27,0xf7,0x1f,0xe5,0x5b,0xe7,0x50,0x02,0x47,0xbf,0x96,0xd1,0x83,0x6f,0xee, + 0xa7,0xf7,0x1f,0x51,0x29,0xc2,0x1a,0xe6,0x5d,0x7d,0xaa,0x7c,0x79,0xef,0x85,0xb3,0xf3,0xbf,0x0e,0xf6, + 0xc7,0x51,0xf2,0xcd,0x3e,0x23,0xc2,0x0b,0x17,0xf2,0xee,0xb4,0xd6,0xfa,0x0f,0x1d,0x23,0xd2,0xf2,0xc2, + 0x25,0xfa,0xa8,0xe2,0xf6,0x22,0x70,0x75,0x56,0x66,0x2b,0x11,0xc3,0x28,0x47,0x29,0x46,0x6c,0x34,0x73, + 0xcd,0x39,0x74,0x34,0x2b,0xea,0x95,0xe2,0x12,0x5e,0x5d,0xab,0xa0,0x0e,0x55,0xc7,0x03,0x35,0x9f,0xe7, + 0x4d,0x70,0xed,0xa5,0x3a,0x29,0xb3,0x07,0x7b,0xf1,0xaf,0x97,0x09,0xad,0xc5,0x65,0x99,0x0d,0xc7,0x3c, + 0x71,0xeb,0x76,0x12,0x9a,0x14,0x84,0xb6,0x4d,0x13,0x74,0xf9,0xc7,0xe5,0x12,0x96,0xd3,0xf0,0xf2,0x46, + 0x04,0x56,0x98,0xbc,0x5e,0xdd,0x59,0xa5,0x89,0x6d,0xb3,0x9f,0x74,0x3f,0xdc,0xf5,0x7a,0x47,0xfa,0xfc, + 0x1e,0xf5,0xee,0xd7,0x27,0xf1,0xe1,0xe3,0xbd,0x7f,0x1f,0xa1,0x87,0x9f,0xfe,0xb4,0x87,0xf7,0x4a,0x15, + 0xed,0xdd,0x3b,0x88,0x50,0xed,0xab,0xea,0xd2,0x56,0x4b,0x75,0x3d,0xdd,0x94,0xc9,0x38,0x05,0xbc,0xfa, + 0xd0,0xd5,0x17,0xb9,0x58,0x2e,0xea,0x31,0xf1,0x75,0x20,0xaa,0xf7,0x38,0xce,0x7a,0xbd,0x67,0x2f,0x53, + 0x8c,0xd4,0xc7,0x32,0x3b,0x8c,0x82,0x35,0xf1,0x3c,0x5c,0x64,0xaf,0x3c,0x8c,0x8e,0xd4,0x5b,0x94,0x12, + 0xfb,0xcb,0xa7,0x0c,0x63,0x94,0x29,0xc0,0x46,0x55,0x98,0x0c,0x36,0xea,0x86,0x1c,0x5e,0x8c,0xbb,0x5d, + 0xfa,0x8f,0x26,0x3c,0xa5,0xbb,0x6b,0xd7,0x66,0x3c,0x93,0x48,0xc4,0x68,0x53,0x9e,0x38,0xcf,0xdf,0xd1, + 0x8c,0xf4,0xf0,0x4d,0x6e,0x10,0x12,0x9f,0xf3,0x19,0x75,0xea,0xb7,0x32,0xbb,0x11,0x62,0xe2,0xb5,0x26, + 0xc2,0x99,0x40,0x8d,0x0a,0x9e,0x15,0xc4,0x7c,0x0e,0xdd,0xb0,0xda,0x14,0x73,0x18,0x66,0x10,0x5d,0x4f, + 0x50,0x34,0x5b,0xf1,0x24,0x7d,0x2c,0x96,0x48,0xb0,0xd7,0xfd,0x72,0xa6,0xae,0x21,0xda,0x81,0x7d,0x15, + 0x5e,0xb9,0xcd,0xef,0xe4,0x1e,0x58,0xf6,0xde,0x50,0xa0,0xee,0x3b,0x09,0xc5,0x59,0x49,0x83,0x99,0x99, + 0x5d,0x47,0xf4,0xc8,0x91,0xb2,0x97,0x3f,0x0e,0x76,0xa4,0x13,0xee,0x3e,0x7d,0x5a,0x06,0x09,0x70,0xe5, + 0x92,0x94,0x1f,0xcb,0x4f,0x65,0x75,0x59,0x9a,0x4a,0x91,0xd6,0x8b,0x9e,0x9f,0x9e,0xa9,0xa1,0xe0,0xf8, + 0xe9,0x87,0x52,0x05,0x97,0x30,0xe2,0xc3,0xe3,0x79,0x71,0xaa,0xa7,0xd7,0xd3,0xb9,0xc6,0xbd,0xd3,0xd4, + 0xa7,0x72,0xad,0x9e,0x13,0x44,0x1e,0xfe,0xf7,0xaf,0x97,0xa3,0x7b,0x47,0x0f,0xd4,0x2b,0xc8,0xca,0x8e, + 0x79,0x6f,0x1d,0x1f,0x13,0x39,0x76,0xb3,0x56,0x2f,0x29,0xc9,0x93,0xa9,0xee,0x0a,0x3f,0xf1,0xec,0x51, + 0x2f,0x86,0x73,0x7f,0xfe,0xe5,0x79,0x79,0x51,0xd4,0x55,0x69,0xee,0x43,0xdf,0xee,0x24,0x40,0x92,0xc7, + 0x3d,0x55,0xcf,0xca,0xec,0x45,0xb9,0xb3,0x33,0x9c,0xdb,0x05,0x78,0xf5,0xa6,0xcc,0x5e,0x52,0x59,0xe3, + 0x52,0x54,0xe6,0x17,0xc5,0x19,0x38,0x85,0xd1,0x8a,0x26,0xec,0xf1,0x19,0x5f,0x38,0xd5,0x29,0xff,0xae, + 0xcc,0xde,0x50,0xf9,0x07,0x8b,0xa6,0xd0,0xb7,0x84,0x7b,0x66,0x54,0xc4,0xd8,0x84,0xbd,0x29,0x13,0xf5, + 0x5a,0xb2,0xdf,0x04,0x1e,0x8d,0x28,0xb9,0xf5,0xf5,0x68,0x1f,0xd8,0x4d,0xbd,0xdf,0xcc,0xd7,0xb3,0x33, + 0xfd,0x80,0x33,0x9f,0x6c,0x66,0x12,0x1c,0xd4,0x74,0xce,0x21,0x9b,0x4e,0x33,0xfb,0x86,0x2b,0x37,0x4a, + 0xf5,0xa3,0xe9,0x4a,0xb1,0x3c,0xa7,0xbd,0x75,0x5b,0x2c,0xf3,0x19,0xfd,0xa9,0xe8,0x4f,0xd5,0xf8,0x2e, + 0xc1,0xa9,0xbd,0x6a,0xcc,0x27,0x3f,0x95,0x59,0xcc,0xdf,0x4c,0xcf,0x6b,0x22,0x51,0x7e,0x7d,0xf0,0xeb, + 0x6c,0x37,0xe8,0xfd,0xcd,0x7a,0xc4,0x37,0x0d,0x27,0xea,0x3b,0x28,0xb1,0x41,0x55,0xbd,0x2c,0x39,0xca, + 0x26,0xb0,0xf2,0x1f,0x6c,0x0f,0x31,0x7c,0x2d,0xf3,0x1f,0x84,0x4f,0x4c,0x8c,0x86,0x48,0xdd,0xe0,0x5a, + 0xe7,0x80,0x12,0x46,0x65,0xfb,0x6b,0xc2,0x2d,0x66,0x96,0x37,0x63,0x02,0xa2,0x07,0x7b,0xee,0x7b,0x86, + 0xfa,0x3f,0xca,0x24,0x70,0x3b,0x47,0xfb,0x3f,0x97,0xea,0xf7,0x52,0x7d,0x1f,0xa0,0xa0,0x1e,0x2d,0x40, + 0x63,0xfc,0x19,0x86,0x35,0x3f,0x53,0x7b,0x58,0xd4,0x21,0x18,0x3a,0x9b,0x57,0x27,0xf9,0x1c,0x34,0x29, + 0x23,0x2a,0xcc,0x8b,0x24,0x01,0xf7,0x83,0x17,0x1c,0xe9,0xf2,0x62,0xf4,0xd3,0x8f,0xcf,0x8f,0x9f,0xbf, + 0xf9,0x29,0x51,0x3f,0x13,0x2c,0xff,0xd0,0x01,0x91,0xe3,0x63,0x64,0x3e,0x7b,0xfe,0xd3,0xc7,0xb7,0x6f, + 0x5f,0x7d,0x38,0xfe,0xf6,0xd5,0xdb,0x27,0x8f,0x5f,0x1d,0x7f,0xf7,0xf6,0xed,0x0f,0xc7,0xc7,0xea,0x97, + 0x61,0xc0,0xfd,0x70,0xbd,0x38,0xa9,0xa8,0xd1,0x7b,0xb1,0x3c,0x25,0xc3,0x7d,0x33,0xd7,0x33,0xa3,0x5c, + 0xef,0xa6,0xe6,0x64,0xfc,0xfb,0x1d,0x35,0x6b,0x2e,0x4e,0x3f,0xc9,0xe4,0x43,0x77,0xd6,0x03,0xfe,0xdb, + 0x04,0xd3,0xc7,0x25,0xdb,0x03,0x08,0xc3,0x85,0xd8,0xee,0x1e,0x7f,0x03,0x98,0x7e,0x1b,0x53,0x6c,0xab, + 0x82,0xb2,0x53,0x85,0xdf,0xd0,0xb2,0x76,0xbe,0x09,0x0a,0x62,0xfd,0x3b,0x65,0x09,0x59,0xe4,0x75,0xb8, + 0x90,0x9f,0xed,0xa0,0x6a,0xd7,0xc6,0xd4,0xe0,0xdb,0x32,0x3b,0x53,0xff,0x06,0x43,0xf0,0xaf,0x72,0xe3, + 0xf3,0x62,0x96,0xfd,0x9b,0xe8,0x36,0x73,0x2d,0xe4,0xea,0x04,0x6a,0xfc,0xf5,0xf8,0x5f,0x65,0xb7,0x8f, + 0x1f,0x56,0x27,0x03,0xdd,0xa4,0xd2,0x26,0xde,0x20,0x35,0xd7,0xf9,0x44,0x5c,0x21,0xfb,0x5f,0x99,0x9b, + 0x53,0xf1,0x9d,0xda,0xf8,0x44,0x2e,0x05,0x0f,0xfb,0x17,0xdc,0x19,0xee,0x1e,0xd1,0x99,0x67,0x7a,0x29, + 0xf2,0xf6,0x5e,0x0d,0x65,0xd5,0x12,0x61,0x3d,0x7c,0x2f,0xa0,0xef,0xb0,0x13,0xb8,0xb2,0x9d,0x54,0xdb, + 0xb7,0x93,0xe2,0x8b,0xef,0x57,0xee,0x96,0x40,0xd7,0x30,0x1b,0xee,0xf3,0x74,0xfe,0xb3,0x44,0x64,0xe8, + 0xb6,0xee,0x1d,0xf9,0xde,0x28,0xcb,0x4c,0x0f,0x9c,0x79,0xcc,0x85,0x9e,0x7c,0x9d,0x55,0xff,0x3e,0x4f, + 0x73,0x53,0x27,0x5f,0x8a,0x65,0xee,0xf6,0xd4,0xf3,0x85,0xbd,0xd8,0xb3,0x6c,0xec,0x8d,0x24,0xf2,0x95, + 0xb9,0x3d,0xab,0x92,0x57,0x7f,0x9d,0x56,0x58,0xc8,0x5f,0xab,0xd5,0x4d,0xb5,0x77,0x60,0x86,0xa9,0x6c, + 0xc6,0x08,0x83,0x63,0x50,0x79,0xa6,0x89,0xae,0xe1,0xad,0xbd,0xc4,0x73,0xc3,0xc4,0xb9,0x53,0x8f,0xb9, + 0x8e,0x34,0x4c,0xaa,0xf3,0x4b,0x8e,0x88,0xc3,0xe0,0xe5,0xae,0x88,0x75,0x09,0xde,0xb3,0x8c,0x75,0x16, + 0x92,0x68,0x23,0xb0,0xfb,0x62,0x4f,0xe7,0xd4,0xe8,0x2c,0x48,0xe0,0x5b,0x65,0xed,0x6b,0x27,0x9c,0x79, + 0x13,0xa4,0xf1,0x6d,0x7a,0x61,0x6f,0x36,0xe3,0xa1,0xc3,0xd4,0x88,0x68,0x88,0xec,0x86,0x97,0x22,0x45, + 0x38,0xbf,0xd3,0xe2,0x6c,0xc5,0x37,0xb2,0xa7,0x40,0xba,0x63,0x6d,0x42,0x96,0xc0,0xfa,0x77,0x00,0x73, + 0x0e,0x4f,0xcb,0x5a,0x0d,0xa1,0x79,0xa2,0x7c,0xe2,0xb6,0xf6,0x50,0xaa,0xb4,0x89,0xc5,0x53,0xf6,0x2e, + 0x5c,0xb1,0xd8,0x98,0xaf,0xe7,0xe0,0x08,0x2c,0xc2,0x66,0xc9,0x85,0x38,0xde,0xa4,0x8e,0x57,0x1d,0x51, + 0x79,0x82,0x49,0xdb,0x57,0xd4,0x7a,0x5d,0x67,0xbd,0x0b,0x84,0x54,0x51,0xf7,0x50,0x43,0x4d,0x8d,0x1f, + 0x46,0xd8,0xb3,0x11,0xa2,0x77,0x2f,0x03,0x7b,0x0d,0x13,0xef,0x0d,0x29,0x1c,0xbf,0x0c,0x0f,0x15,0x5c, + 0xdb,0xa2,0x1a,0xce,0x05,0x8d,0x86,0x19,0xc7,0x80,0x39,0x9f,0x31,0x06,0xac,0x61,0x46,0x70,0x15,0x17, + 0x04,0xc9,0xc3,0xb1,0xc0,0x0f,0x71,0x21,0x9a,0x0b,0x6d,0xe4,0x64,0x12,0x7b,0x7b,0xe3,0x84,0xef,0xf2, + 0x75,0x59,0xce,0x26,0x1d,0x41,0xf1,0x8d,0x9b,0x2b,0x66,0x1c,0x5e,0x24,0xe6,0x1e,0x72,0x09,0x7e,0x31, + 0x36,0x11,0x3a,0x5b,0x89,0xd0,0x29,0xc3,0x4a,0xf9,0xd1,0x0e,0x26,0x45,0x68,0x7a,0x1f,0x30,0xd3,0x0e, + 0x0d,0xc9,0x06,0x11,0x3c,0x74,0xa8,0xbc,0x80,0x3c,0xa6,0x3a,0xe1,0x33,0xce,0x5e,0x04,0xae,0x72,0xe0, + 0x25,0x83,0x59,0x60,0x4f,0x05,0xce,0x43,0x8c,0xb2,0xdd,0xd4,0x12,0x8c,0x04,0x5c,0x0f,0xd3,0x82,0x34, + 0x0d,0xf4,0x29,0x41,0x58,0x73,0x5e,0xad,0xe6,0x33,0xda,0xab,0x34,0x83,0x2d,0x60,0x4b,0x35,0xf5,0x26, + 0x22,0x95,0xf0,0x2a,0x16,0x57,0xe8,0x25,0xaf,0xf9,0xbf,0x0c,0x7e,0xb8,0x58,0xb0,0xa3,0x31,0x61,0xab, + 0xab,0x58,0x2e,0x8a,0xa6,0xa1,0x47,0xe6,0xb2,0xe9,0x8d,0xc8,0x28,0x71,0xfc,0xaa,0x2b,0x11,0x92,0x18, + 0x8c,0x8e,0x92,0xcc,0xf4,0x3a,0xed,0x67,0x07,0xb7,0x46,0x0f,0x6a,0x84,0x8c,0xc3,0x2f,0xd6,0xe5,0x4a, + 0xb4,0x3d,0x08,0x5b,0x4d,0xb4,0x09,0xbd,0xd0,0x7a,0x57,0xb5,0xb9,0xd4,0xb7,0x33,0x77,0x2d,0x7c,0x14, + 0x90,0x7a,0x99,0xcf,0x3f,0xe1,0x80,0x18,0x37,0xc1,0x2e,0xe0,0xd4,0x3b,0x2e,0xcd,0x0a,0x25,0xe5,0x6d, + 0x62,0x64,0x0c,0x3a,0x94,0x31,0x7c,0x44,0xcf,0x11,0x10,0x9e,0x90,0x35,0xfd,0x50,0x5f,0x54,0xa7,0xf2, + 0xb0,0x23,0x77,0xdd,0xcc,0x35,0x84,0xfb,0x1f,0xcb,0x75,0x5c,0x72,0xfb,0xf1,0xb4,0xc6,0x35,0x58,0x83, + 0xac,0xcc,0x78,0x2a,0x81,0x59,0xee,0x60,0xfa,0xb6,0xca,0xc9,0x2b,0x93,0x92,0xea,0xd0,0xef,0xd5,0x51, + 0x20,0x7a,0xd2,0xa6,0xaf,0x44,0x8a,0x43,0x5c,0xdc,0xe0,0xb6,0x9a,0x62,0x43,0x65,0x2f,0x89,0x00,0xfc, + 0x78,0x77,0x81,0xdd,0xa8,0x89,0x8e,0xb2,0x17,0x54,0x88,0x7a,0xc4,0x54,0xe8,0xc6,0xa1,0x24,0xba,0x62, + 0xc2,0x2b,0x3f,0xb1,0xf9,0xb4,0xbb,0x4b,0x4f,0xdb,0x24,0xed,0x92,0x9c,0x7d,0xdb,0x56,0x17,0x69,0xb4, + 0xb7,0xb7,0x03,0xe1,0xf3,0xb5,0x31,0x63,0x24,0xf2,0xf6,0x02,0x36,0x75,0x49,0xd7,0x5f,0x44,0x5b,0xc9, + 0x27,0xbc,0x45,0xa0,0x14,0x81,0xd3,0x48,0x4e,0x0c,0x48,0xff,0xc2,0x3f,0xd6,0x23,0x1e,0xe6,0x47,0x09, + 0xdf,0xa1,0x94,0xe5,0x93,0xdc,0x3a,0xbd,0x37,0x49,0xef,0x46,0xbc,0x26,0x99,0x10,0x27,0xd7,0x1c,0xb9, + 0x1d,0xbb,0xc6,0xb8,0x25,0xdc,0x29,0x3d,0x2c,0x74,0x7b,0x5e,0xcd,0xf8,0x51,0xae,0xbb,0xc6,0xd3,0xd4, + 0x44,0x3b,0x18,0x9e,0x98,0xcd,0xe1,0x0c,0x5d,0x1b,0x60,0x09,0x66,0x1e,0xa6,0xd2,0x30,0x91,0x2c,0xd8, + 0xe2,0xc1,0xb6,0x7f,0x41,0x2c,0x4d,0xf6,0x4a,0xd4,0xa5,0xb5,0x9a,0xd7,0xea,0xb4,0xaf,0xac,0xed,0xd3, + 0xdc,0x80,0x00,0xc2,0xd9,0x4b,0x5c,0x6e,0xa5,0x66,0x1c,0x41,0x8e,0xe3,0xc8,0xb1,0xf9,0xcc,0x00,0xcd, + 0x4a,0x54,0x9e,0x0b,0x28,0x0e,0xe2,0x35,0x7c,0x4f,0x92,0x79,0x87,0x2c,0x0c,0xf3,0xe2,0xef,0x08,0x9c, + 0x9d,0x21,0x9f,0xaf,0xd8,0xb9,0x15,0xbe,0x26,0xf2,0x3d,0x3f,0xd3,0x4f,0xcf,0xf3,0xb2,0xd4,0xf3,0xdb, + 0xdb,0xed,0x7b,0x71,0x37,0x09,0x74,0xb7,0xbd,0xa3,0xa9,0x9b,0x43,0x68,0xad,0x69,0xeb,0x15,0xce,0x60, + 0xbe,0xb6,0xa9,0x9b,0xeb,0xe4,0x4c,0xf1,0x40,0xff,0xac,0x03,0xe0,0x77,0x70,0xf6,0xf3,0xb6,0x25,0x17, + 0x35,0xa3,0xbe,0x6e,0x45,0x6a,0x51,0x67,0x17,0x34,0xcd,0x74,0x18,0x3d,0x1c,0x9b,0x87,0x83,0x11,0x38, + 0x54,0x2e,0x95,0x7d,0xa7,0xba,0xd5,0x2f,0x50,0xa4,0x69,0x4d,0x25,0x10,0xf6,0xac,0xef,0x98,0x54,0xc2, + 0xd9,0x8b,0xa2,0xe1,0xf9,0x34,0x8f,0xc6,0xc2,0xf7,0xac,0xce,0x4c,0x82,0xbd,0x08,0x98,0x48,0xe9,0x55, + 0xa7,0x95,0xb3,0x5a,0x6e,0x55,0xfe,0x2e,0x21,0x9e,0xb2,0xe3,0xd4,0x78,0x66,0xc3,0x26,0xd3,0x07,0xf3, + 0x9a,0x81,0xe2,0xba,0x56,0xc7,0x32,0x34,0x62,0xc6,0x4e,0xea,0x9e,0xa0,0xc9,0x88,0x53,0x77,0x22,0x17, + 0x90,0x9a,0x85,0x57,0x84,0xa1,0xa2,0xff,0xcb,0x56,0xeb,0x2d,0xc0,0xc5,0xc9,0xae,0x52,0xf8,0xef,0xbb, + 0x42,0x35,0xc2,0xdd,0x4a,0xa1,0xf2,0xae,0x42,0xd6,0xd6,0x8e,0xd5,0xf1,0x44,0x6c,0x76,0xca,0x29,0x18, + 0x46,0x40,0xb0,0xb9,0x11,0x37,0x50,0x33,0xfb,0x59,0xcb,0x6d,0x54,0x57,0x0c,0xa9,0xf7,0xf8,0xef,0x27, + 0x0e,0x26,0xf5,0x94,0xa1,0xf6,0x03,0xff,0x7d,0x8c,0xb3,0xe3,0x23,0xfe,0xbc,0x1d,0xa2,0x8b,0xed,0x39, + 0xb7,0x40,0xfc,0x77,0xf6,0x8c,0x38,0x66,0x6c,0x45,0x44,0x98,0x9c,0x63,0x3e,0xc1,0x72,0x14,0x9c,0x5c, + 0x4f,0x62,0x73,0x26,0xd2,0xa1,0xb8,0xbd,0x5d,0xf3,0x83,0x1c,0x36,0x90,0x35,0x70,0x12,0x1e,0x24,0x09, + 0xf1,0xd0,0x38,0x09,0x0f,0x86,0xa1,0x21,0xca,0x8f,0x93,0xf0,0x60,0x0e,0x24,0xae,0xcc,0xd7,0xe1,0x3f, + 0x0d,0xbe,0x30,0x54,0xe6,0xf4,0xc4,0x52,0xe9,0xc4,0x26,0xed,0xee,0x7e,0x34,0x0d,0x49,0xac,0x37,0x47, + 0xbd,0xce,0x0a,0x3a,0xf7,0x7d,0x3d,0xee,0x18,0x6f,0x98,0x4f,0x60,0x62,0x5e,0x5f,0x3e,0x0b,0xdf,0x29, + 0xf3,0x25,0x21,0x2a,0x03,0x10,0x41,0x91,0x7e,0xaa,0xd7,0x20,0x40,0xdc,0x3e,0x10,0x41,0x81,0x00,0x03, + 0xe5,0x88,0x06,0x69,0x69,0x2c,0x3a,0x8d,0xc3,0xd7,0x9e,0xcf,0xcf,0xf6,0xf3,0x52,0xc4,0x16,0xf6,0x66, + 0x3d,0x38,0xac,0x99,0x40,0x2c,0xa3,0xc8,0x5f,0x71,0x39,0x70,0x60,0x0e,0x1c,0xc2,0x1d,0xf4,0x39,0x6e, + 0x33,0x73,0x16,0xfb,0xbb,0xa7,0xd6,0xec,0x7a,0x15,0xf4,0x07,0x16,0xe3,0x43,0xbd,0x4b,0xe0,0xb8,0xaf, + 0x42,0x4a,0xc8,0x4e,0xa5,0x35,0x31,0xb3,0x9f,0x21,0x3c,0xce,0xdb,0xf0,0xa4,0xef,0xd1,0xe7,0xc2,0xe7, + 0xa9,0x80,0x71,0xfc,0xa7,0x89,0x35,0xe4,0x92,0x92,0x80,0xa5,0x93,0xf8,0x17,0x0c,0xa5,0x99,0x01,0x50, + 0x0e,0xeb,0x67,0x7a,0x20,0xfd,0x34,0x57,0xd1,0x29,0x27,0x5a,0x31,0xc6,0xe0,0x0e,0x82,0x92,0xf6,0xbc, + 0xae,0x2e,0xe9,0x00,0x79,0xc2,0x5a,0xed,0xfb,0xf2,0xd9,0x16,0x4d,0xdd,0x96,0x81,0xe9,0x2d,0x18,0x5d, + 0x74,0x97,0x13,0x16,0x29,0xc9,0x9a,0xf0,0x11,0x55,0x7e,0x7d,0xe3,0xe0,0x72,0x67,0xe7,0x67,0x4c,0x9a, + 0xef,0x22,0xfa,0x5f,0x2d,0x63,0x33,0x3d,0x90,0x00,0x94,0xab,0x25,0x60,0xc9,0x47,0xeb,0x03,0xe3,0x51, + 0x77,0xd9,0x75,0x2a,0x30,0xe0,0xb0,0xd3,0x12,0x14,0x8f,0xbb,0xc0,0x06,0x99,0x45,0x0c,0x93,0xb8,0xb8, + 0x97,0x2e,0x51,0xc9,0x3a,0xd0,0x6b,0x59,0xfd,0x10,0x84,0xdd,0xf7,0xad,0x91,0x12,0xc8,0xc6,0x4d,0x7a, + 0x5d,0x0a,0xfa,0xfd,0x19,0xf6,0x1c,0x5b,0xc6,0x42,0x58,0x0b,0xbe,0xc0,0xf6,0xdb,0x66,0x82,0xc5,0x18, + 0xea,0x3f,0x8d,0x0b,0x97,0x35,0x78,0xa9,0x83,0x11,0x0f,0x18,0x0b,0x29,0xdf,0xdd,0x71,0xb8,0xfb,0xba, + 0x35,0x6d,0xec,0xc2,0x5e,0x82,0x48,0x5f,0xe2,0x44,0xf9,0x0a,0x9b,0x60,0xa7,0x87,0x13,0xd5,0xdd,0xf3, + 0x65,0x77,0x12,0x6d,0x04,0xcc,0xde,0x0c,0x89,0xc4,0x61,0x43,0x3a,0xc3,0x9b,0x20,0x40,0x32,0xdb,0x66, + 0x2f,0x00,0x4b,0x49,0x7a,0xbd,0xa2,0xc2,0xe9,0x1d,0x8b,0x6d,0xa2,0x5c,0x67,0xd9,0x27,0x5c,0x48,0xcd, + 0x70,0xcb,0x4f,0x40,0x5d,0x1f,0x3a,0xa6,0x7f,0x57,0xb5,0xb3,0x46,0x1c,0x97,0xdf,0x3c,0xae,0x77,0x76, + 0xae,0x6a,0xbe,0x80,0x6d,0xf6,0x0d,0xd7,0x94,0x94,0xb4,0x20,0x54,0xc8,0xc4,0xb6,0x2e,0x77,0x0f,0xd4, + 0x3e,0x64,0x38,0x7c,0xd0,0x5d,0xd9,0x7b,0x32,0x93,0xf1,0x53,0xec,0x72,0x9c,0x0c,0xfb,0xea,0x8f,0x78, + 0xd5,0x8a,0x73,0x9d,0xc8,0x6a,0x3a,0xe3,0xa5,0x6e,0x87,0x83,0x05,0x8d,0xea,0x31,0xab,0x8d,0xa1,0xe2, + 0xb7,0x3d,0xdb,0x1a,0x6d,0x1b,0x39,0x1a,0x23,0x89,0xdb,0xdb,0x82,0x2f,0xc2,0x73,0x5b,0xa7,0x03,0x2d, + 0xe2,0x03,0x6a,0x6b,0xed,0xf0,0x57,0xb2,0x65,0x6b,0xb3,0xe9,0xa6,0x27,0xb2,0xbf,0xcd,0xf6,0x67,0x5b, + 0x57,0x2f,0x42,0x7d,0x12,0xb7,0x96,0x09,0x53,0xf7,0xad,0xa5,0xc6,0x5f,0xda,0xd9,0xe2,0xca,0x74,0x67, + 0x0b,0xeb,0xde,0x74,0x68,0x74,0x71,0x08,0x00,0x02,0x84,0xc8,0x13,0x11,0x9e,0x38,0x10,0x63,0x74,0x6a, + 0xd9,0x14,0xa1,0xfd,0xd9,0x0e,0x0b,0xb7,0x96,0xf9,0x3c,0xee,0x2f,0x55,0x4b,0x70,0x3f,0xab,0x2e,0x3f, + 0xbb,0x5e,0x66,0x70,0x08,0x23,0xf4,0x44,0x13,0xcd,0xf7,0xcc,0xea,0x8e,0x6e,0x6f,0xdd,0xc8,0xfd,0x11, + 0x2f,0xcc,0xeb,0xf8,0x3f,0xea,0x5c,0x6f,0x6f,0x8f,0x3b,0x07,0xf1,0xc1,0x5a,0x78,0xb6,0xdf,0x88,0x30, + 0xd1,0xe5,0x6a,0xa1,0xad,0x2c,0x47,0xf5,0x64,0x3b,0x50,0xd8,0xa4,0x67,0xaa,0xc1,0xdf,0xb5,0x7a,0x4e, + 0xc5,0xb1,0xc3,0xc0,0x98,0x8f,0x9f,0xb6,0xf1,0x87,0x40,0xda,0x2a,0x5c,0xfe,0x2b,0x2a,0x81,0xa0,0x02, + 0x21,0xcf,0x6c,0x28,0x1a,0x3e,0x03,0x86,0x63,0x06,0x0c,0x04,0x05,0x28,0x1a,0x37,0x25,0xc9,0x50,0xd8, + 0x80,0xac,0xd3,0x80,0xbf,0xec,0x3b,0xbb,0x39,0x66,0x39,0x8f,0x94,0xc6,0x08,0x8c,0x2f,0xf3,0x25,0x91, + 0x94,0xf2,0xf8,0x53,0xc9,0x2a,0x69,0xfb,0xfa,0x7c,0xbe,0x48,0x6b,0xe1,0xd8,0x88,0xe8,0xd4,0xa7,0x78, + 0x2f,0xe4,0x7d,0xcd,0xee,0xa2,0xec,0x60,0xde,0xb5,0xef,0xf1,0x31,0x42,0xe4,0xe2,0x1a,0x63,0xd8,0x93, + 0x4d,0xcd,0x83,0x6a,0xfa,0xb6,0x3c,0x94,0xd5,0x4b,0x81,0x67,0xe2,0xe5,0xd6,0x66,0x74,0x03,0x8e,0x68, + 0x40,0xac,0x1b,0xfc,0xec,0x92,0xd1,0x3d,0x56,0x44,0xc6,0x20,0x55,0x35,0x75,0xcc,0x08,0xea,0x82,0x0b, + 0x9b,0x4c,0xff,0x10,0x1a,0xe0,0xf1,0xdc,0xe1,0x02,0x44,0x10,0x7d,0x05,0xa0,0xd4,0x1c,0xca,0x21,0xae, 0x54,0x45,0x9b,0x48,0xd9,0xf7,0xb4,0xcb,0x6c,0x59,0x97,0xbc,0x8d,0x40,0x0b,0xdb,0x43,0xa4,0xa9,0xd4, - 0xbf,0xbd,0x1d,0x17,0x58,0x3b,0x1b,0x39,0x61,0x74,0x22,0x43,0x7f,0x62,0xc4,0xb5,0xb7,0xb7,0x36,0x3c, + 0xbf,0xbd,0x1d,0x17,0x58,0x3b,0x1b,0x39,0x61,0x74,0x2c,0x43,0x7f,0x6a,0xc4,0xb5,0xb7,0xb7,0x36,0x3c, 0xab,0x37,0xed,0xe3,0xf2,0xc1,0x3b,0xdf,0xb4,0x60,0xec,0x22,0x7d,0x3d,0xc1,0x2a,0x41,0xce,0x6b,0xc2, - 0x73,0xf1,0xe3,0x89,0xb9,0x94,0x3b,0xb6,0x8f,0x56,0x9c,0xca,0x17,0x3d,0xdd,0xd5,0x15,0x88,0x88,0x47, - 0x3b,0x72,0x31,0x87,0xbd,0xe1,0xa8,0x7b,0xcd,0xd9,0x25,0xee,0xd9,0xd8,0x99,0x5b,0xf3,0x25,0xdc,0x22, - 0x40,0x49,0x6c,0xdc,0xe2,0x2a,0x15,0x93,0xcb,0x9b,0xbc,0x1e,0x75,0x84,0x54,0xd6,0x3c,0x58,0x98,0x77, - 0xc4,0xa9,0x42,0x39,0x76,0x39,0x09,0x86,0x44,0x69,0x50,0xb1,0x20,0x3c,0x36,0x22,0x21,0x8e,0xa7,0x0f, - 0xdd,0xd6,0x9d,0xfa,0x8b,0xb0,0x9b,0xa3,0x29,0xf1,0xfc,0xb8,0xa3,0xfd,0x6d,0xbc,0x52,0xfd,0xb6,0xe5, - 0xc6,0xbf,0xcd,0xf6,0x0f,0x36,0x4a,0x3e,0x65,0xf1,0xf9,0xda,0x5b,0x37,0xcf,0xb3,0xcd,0x09,0xf6,0x71, - 0x2b,0x3e,0x93,0x87,0x0b,0x8b,0xe4,0x1e,0xcb,0x79,0xb2,0xae,0x78,0xe2,0x77,0x60,0xd9,0x40,0x13,0x89, - 0x7b,0x17,0x83,0x50,0xde,0x94,0x41,0xd3,0x30,0x35,0x8a,0x72,0xf6,0xa2,0xd7,0x03,0xdb,0x76,0x60,0x2b, - 0xab,0x20,0xcc,0x06,0x3d,0xbb,0x55,0x00,0xc4,0xf9,0x08,0x1e,0x6b,0x25,0xa1,0xc3,0x06,0x8f,0x6e,0x7b, - 0xff,0x5e,0x39,0x54,0xff,0xb8,0xec,0x44,0x6b,0x8b,0xc3,0x57,0xcc,0xde,0x14,0x37,0x5d,0x39,0x85,0x3f, - 0x1b,0xb8,0x75,0xb7,0x14,0x5f,0x2c,0xed,0xbf,0x99,0xf0,0x3d,0x4e,0x35,0xae,0x8d,0x76,0xf8,0x94,0x18, - 0x3d,0x39,0xd2,0xeb,0x24,0x49,0x1b,0x54,0xb8,0x7d,0x60,0x82,0x51,0xd5,0x6b,0x65,0x2c,0x03,0xee,0xe8, - 0x7a,0xbf,0xbb,0x5d,0xec,0xc7,0x6e,0xa3,0xdd,0xfe,0x38,0x79,0xa5,0x58,0xbd,0x0a,0x6a,0x8d,0x4b,0xe9, - 0xa6,0x58,0x3e,0xbc,0x28,0x3d,0xcf,0x95,0xf3,0x65,0xd0,0xa0,0xf7,0x5c,0x8f,0x13,0x04,0xd4,0x0c,0xfa, - 0x7f,0x30,0x0e,0x64,0x9a,0xe3,0x9a,0x18,0x97,0x9d,0xfe,0x9d,0xed,0x90,0x6c,0xc2,0x95,0xd2,0x65,0xe0, - 0xa6,0xc7,0xf1,0x14,0x3d,0xe8,0x58,0x38,0x48,0xd8,0x7d,0x1a,0x7d,0x1a,0x5e,0xd3,0x0c,0xe4,0xf3,0xb2, - 0xee,0x88,0x2a,0x5f,0xd0,0x9e,0x7d,0x5e,0x67,0x87,0xea,0x69,0x9d,0x3d,0x50,0xaf,0xd1,0xf0,0xb3,0x50, - 0x7b,0xc7,0xb7,0x72,0x6f,0xca,0x7e,0x4f,0x56,0xc4,0x5a,0xbe,0xae,0xad,0x06,0x8e,0xa6,0xea,0xa7,0x95, - 0xb0,0x96,0x1c,0x25,0x2e,0x40,0xfe,0x93,0x21,0x24,0xe7,0x61,0xbd,0x27,0xb9,0x62,0x20,0xb2,0xe2,0x19, - 0x67,0xde,0xc9,0x61,0x48,0x42,0x8c,0x34,0xb6,0x11,0x23,0x32,0x8b,0x7b,0x54,0xd9,0x47,0x59,0x2e,0x81, - 0x8e,0x12,0xff,0x39,0xbd,0x20,0x47,0x4e,0x18,0x24,0xcb,0x93,0x11,0xa3,0x0d,0x5c,0xff,0x18,0x6c,0x8b, - 0xac,0xe8,0x6c,0x91,0x8d,0x5d,0x5a,0x04,0xbb,0xa6,0xdc,0x44,0x7f,0x6e,0x17,0x21,0xd3,0xb5,0xf3,0x21, - 0x3f,0x97,0x3b,0x7d,0x95,0x36,0xc7,0x16,0x87,0x9a,0x35,0x47,0x99,0x4d,0x53,0x1b,0x8e,0x82,0xd9,0x86, - 0x63,0x4e,0x22,0x34,0xab,0x6a,0x8d,0xc4,0x60,0xc7,0x5f,0xd6,0xfe,0x5b,0x1b,0x5b,0x7d,0x9c,0x9d,0x5c, - 0xda,0x60,0x1c,0xca,0xdb,0x48,0x32,0x78,0x15,0xa5,0xad,0xb7,0x75,0xf5,0x49,0x04,0x03,0x26,0xb9,0xd1, - 0xf3,0x33,0x79,0x1f,0xda,0x3a,0xee,0xe2,0xcf,0xd2,0x2d,0x06,0x53,0xf0,0x08,0x85,0xe9,0x42,0x01,0x99, - 0x70,0xa1,0xa5,0xc7,0x71,0x36,0x67,0x77,0x97,0x12,0x6d,0xbc,0x47,0xd8,0xc2,0xda,0x97,0x32,0x80,0x7e, - 0xab,0xae,0x6d,0x6d,0x2e,0x5f,0xc9,0xb4,0x53,0x57,0x15,0xe4,0x47,0xa5,0x3c,0x11,0x31,0xd1,0xfa,0x6f, - 0x58,0x6a,0x21,0x17,0x3e,0x43,0xec,0x13,0xc8,0x6e,0x98,0xc6,0x68,0x83,0x8d,0x67,0x13,0xfa,0x9b,0xf6, - 0x90,0x4b,0x79,0x24,0x65,0xde,0x1d,0x52,0x70,0x29,0x5d,0xe2,0x11,0x84,0x9d,0x91,0x04,0x75,0xf6,0xcd, - 0xe8,0xc4,0xdc,0x77,0x34,0x64,0xc9,0x43,0xb9,0xc4,0x14,0xc2,0xaa,0x86,0xed,0x25,0x32,0x13,0x0d,0x4d, - 0x7f,0xf6,0xc8,0x20,0x9c,0x58,0xca,0x3d,0x5d,0x77,0x34,0x28,0x67,0xb6,0x1d,0x9f,0xc0,0xcb,0x87,0x5a, - 0xeb,0xc6,0xeb,0x85,0x7b,0x4b,0xe8,0x0e,0xfa,0xee,0x86,0xa3,0x1d,0x58,0x62,0xa5,0x6c,0x04,0xce,0xf0, - 0x00,0xd2,0x7d,0x50,0x97,0x0b,0x1f,0x43,0x12,0x23,0xe3,0xa3,0xfd,0x64,0xda,0x31,0xf7,0x56,0xe1,0x75, - 0xd7,0x6f,0x82,0x8b,0x60,0x11,0x21,0x62,0xcd,0x6b,0x19,0xda,0x20,0xfe,0xd5,0x6f,0x0f,0x8c,0x26,0xa4, - 0x90,0x1e,0x73,0xc8,0x7c,0xa8,0x5e,0x22,0xa1,0x3d,0x22,0x88,0xf2,0x8a,0x80,0xe4,0x90,0x80,0x5b,0x52, - 0xc2,0xed,0xdf,0x48,0xe9,0x8d,0xe9,0xf6,0xa5,0xed,0x6c,0x4f,0x65,0x5b,0xa9,0xae,0x39,0xdb,0x40,0x50, - 0x96,0xec,0xa2,0x0d,0x89,0x2b,0x91,0xf3,0x43,0xf9,0x80,0x53,0x6d,0x80,0x96,0x51,0x21,0x8a,0xd6,0x03, - 0x31,0xca,0xe9,0xb8,0xf9,0xc0,0x04,0x81,0x96,0x00,0xb9,0x6a,0x80,0x20,0xb9,0x0b,0x28,0x2c,0x3f,0x03, - 0x47,0xfb,0x3e,0x04,0xd0,0xb1,0x67,0x3c,0x5e,0x3e,0x8f,0xb6,0x3d,0x22,0x64,0x24,0x52,0x3b,0x92,0xcb, - 0xc4,0xeb,0x1f,0xa0,0xba,0xb0,0x21,0x2b,0x04,0x1d,0xb2,0x1b,0x7c,0xa3,0xcb,0x95,0x71,0x5d,0x73,0x4d, - 0x57,0xb8,0x97,0x8a,0xf7,0x7e,0x65,0xc3,0xef,0xbe,0x85,0xe1,0x34,0x8d,0x9b,0xe6,0xee,0x43,0xcc,0xf1, - 0x44,0x12,0xc5,0x9a,0x1b,0xc2,0x66,0xf3,0x96,0x55,0x8d,0xdc,0x8f,0x08,0xa4,0x76,0x2f,0x8e,0x40,0x92, - 0xc3,0xdd,0x7e,0x60,0xa6,0xd8,0xf9,0xc9,0x90,0x96,0x30,0xcb,0x16,0x8d,0x4c,0x7f,0x0e,0xfa,0xa3,0xf7, - 0x01,0x71,0xa4,0x76,0xbe,0xcd,0x45,0x04,0x17,0x58,0x95,0xc9,0x79,0x3a,0x8b,0x45,0xdf,0x27,0x77,0x3e, - 0xdb,0x7a,0xd1,0x04,0xa0,0x72,0xf2,0x39,0x6c,0x2a,0x70,0x5b,0xc5,0x48,0x3b,0x61,0xad,0xdd,0xa0,0x18, - 0xb5,0xd7,0x43,0x6f,0x1e,0xdc,0x0a,0xfb,0xae,0x3b,0x82,0x01,0x93,0xf7,0x98,0xb7,0x0b,0x1b,0x71,0xc6, - 0xb8,0x66,0xeb,0x66,0x2d,0x97,0xf4,0x10,0xb1,0xc0,0x77,0x3c,0x13,0xb1,0xa3,0xf9,0x52,0x36,0x2f,0x68, - 0xe9,0xc2,0x23,0xaf,0x77,0x8f,0x2c,0x2e,0xb2,0x10,0xc2,0xcd,0x50,0x95,0x8b,0xc8,0x38,0x2e,0x9c,0x68, - 0x2c,0xcf,0xca,0xa3,0xe2,0x18,0xae,0x66,0x67,0xb4,0x82,0xb8,0xa3,0xf5,0x8a,0x6f,0x6a,0x35,0xcb,0x87, - 0x6e,0x45,0xb8,0x27,0xfb,0xbd,0x50,0x30,0xe0,0xc0,0xd2,0xf7,0xb1,0x9d,0x06,0x82,0x2f,0xec,0x57,0xed, - 0x54,0x64,0x77,0x81,0xea,0x89,0x2d,0xf0,0xb3,0x85,0xf7,0x21,0xbc,0x5b,0x67,0xdf,0x23,0x54,0x7a,0x27, - 0xfa,0x86,0xe3,0xde,0x34,0xee,0x8e,0x19,0x9c,0xf9,0x6a,0x52,0xa5,0x15,0x64,0x1b,0x63,0x48,0x8e,0x30, - 0x1e,0x16,0x80,0xbf,0x81,0xdf,0x26,0x6d,0x89,0x73,0x75,0x4e,0x6c,0x3a,0x11,0xb1,0x85,0x01,0xcd,0x33, - 0x8c,0xad,0x60,0xf6,0x8f,0x41,0xc1,0xf6,0x2d,0x61,0x1f,0x2f,0xea,0x1f,0x6c,0x5a,0xf8,0x61,0x5b,0x14, - 0x9c,0x77,0xb8,0x47,0x04,0xdd,0xab,0x19,0xca,0x36,0xc3,0x78,0xd4,0xe1,0x5d,0x70,0x70,0x8f,0xab,0x43, - 0x9f,0xb8,0x99,0xf0,0x11,0x35,0xdf,0x14,0xc9,0xdc,0xab,0x4d,0xb1,0x5d,0x13,0xb3,0xc0,0x21,0xdc,0xb1, - 0x01,0xa3,0x46,0x87,0x68,0xe2,0x81,0x9d,0x98,0xd7,0xd9,0x30,0xa8,0x6a,0x23,0x50,0x22,0x28,0xdb,0x44, - 0xa0,0xd6,0x00,0xd8,0x50,0x22,0xae,0x05,0xb8,0x28,0x49,0x8a,0x70,0xe0,0xfd,0x5c,0x3a,0x27,0x36,0x7b, - 0x88,0xdb,0x84,0x3e,0x67,0x03,0xc3,0x80,0xb4,0x1e,0xbb,0xb8,0x4f,0xe5,0x67,0x0b,0x33,0x78,0x0f,0x5b, - 0xc9,0x5c,0xc7,0x01,0xa9,0x4c,0xc7,0x87,0x80,0x2e,0xed,0x8f,0xbf,0x52,0xd8,0xa0,0xa9,0x32,0xe9,0x58, - 0xcb,0xed,0xb0,0x61,0x5c,0x37,0x49,0x2e,0x72,0xca,0x7e,0xeb,0xa6,0x0e,0x29,0xce,0xe5,0xce,0x23,0x1f, - 0xc9,0x85,0x17,0x97,0x09,0x39,0xb9,0x5f,0x1a,0xd7,0x41,0xc8,0x35,0xee,0xa2,0x88,0x3a,0xb0,0x21,0x57, - 0x0d,0xec,0x06,0x45,0x9d,0xef,0x5c,0xe1,0x15,0xb8,0xda,0xcb,0x04,0x95,0xf5,0x87,0x08,0xcd,0x66,0x6a, - 0x27,0x75,0xe3,0x10,0xca,0xf1,0xb3,0xa1,0x00,0x65,0xd9,0xfd,0xff,0xc6,0x25,0xec,0xe9,0xfd,0x71,0x67, - 0x38,0x55,0xc7,0x18,0x5d,0x46,0xd2,0xb7,0x13,0x49,0xba,0x36,0x1f,0x6d,0xdf,0xe6,0xc3,0x40,0x07,0x55, - 0x00,0x5f,0x60,0x23,0x9e,0x11,0x98,0x31,0xb4,0xd7,0x51,0x7b,0x6c,0xb5,0x06,0x3e,0x25,0x08,0x02,0x55, - 0x62,0x43,0x1a,0x6d,0x13,0x80,0x9a,0x0b,0x76,0x09,0xb3,0x03,0x7f,0x33,0x10,0xe5,0x76,0x6d,0x1d,0x77, - 0xaa,0x9e,0x50,0x4c,0x07,0xc6,0x99,0x32,0x43,0x3b,0xd5,0xd9,0x19,0x0f,0x50,0x59,0x2b,0xa1,0x3a,0xb8, - 0x3a,0x6d,0x6d,0xfc,0x50,0xa8,0xe6,0xc0,0x7b,0x91,0x28,0x6b,0x55,0xcb,0xc0,0xf0,0x61,0xdd,0x6f,0xf4, - 0xec,0xac,0xd7,0x26,0x58,0xd1,0xbe,0xd1,0x52,0xd2,0x81,0xea,0xcf,0x91,0xa2,0x68,0x7c,0x68,0xf6,0x7b, - 0x5e,0x5a,0x1b,0x41,0x0d,0xcd,0xf4,0x63,0x7c,0x38,0xf6,0x74,0x77,0xa2,0x8c,0x0b,0x57,0x77,0xea,0xbb, - 0x97,0x56,0xd8,0x96,0xbd,0x49,0x47,0x7f,0xa5,0x84,0x94,0x35,0xc5,0xb4,0x83,0x87,0x2a,0xbc,0xe4,0x32, - 0xc7,0x49,0x43,0xd9,0x71,0x95,0x15,0xb0,0xd0,0x80,0xdd,0x02,0xae,0x2f,0x3a,0x2b,0x7b,0x57,0x5d,0xe6, - 0x1b,0x57,0x5d,0x0e,0xac,0xa8,0x5e,0xf4,0xf8,0x5f,0x2f,0xaf,0x67,0x8e,0xa7,0x3b,0x96,0x12,0x0e,0x64, - 0xf6,0xd0,0xfb,0xe6,0x70,0x02,0x88,0x4a,0xcb,0x80,0xaf,0xbf,0x88,0xdd,0xba,0x50,0xeb,0x04,0xc4,0x07, - 0xec,0xf1,0x6a,0x31,0xf4,0xc3,0x8a,0xb1,0x34,0xdf,0xd2,0x45,0x28,0xda,0x40,0x08,0x02,0x82,0x79,0x07, - 0x9f,0xc7,0x31,0x91,0x7d,0xea,0x1e,0xb7,0xbb,0x75,0x21,0xee,0x03,0x2c,0xdd,0x87,0x54,0x5f,0xe4,0xf8, - 0x5e,0xc9,0x26,0x9b,0x30,0x7e,0x55,0x67,0xf4,0x1b,0xf2,0xf5,0x7d,0xd5,0x8d,0x10,0x10,0x86,0x99,0x37, - 0x2c,0xcf,0xee,0x6e,0x8f,0xc2,0x35,0xfe,0x17,0x36,0xce,0xa1,0x2c,0xb8,0x9e,0x2b,0xa3,0x8f,0x16,0x7e, - 0x83,0x06,0x75,0x55,0x8f,0xaf,0xea,0x90,0x85,0x14,0x9e,0xa2,0x55,0xf5,0xc4,0x7e,0x63,0x4d,0xe2,0x58, - 0x12,0x7a,0x82,0x88,0xc5,0x74,0x32,0xc4,0x77,0xe5,0xba,0x96,0x38,0x26,0xc7,0x61,0xef,0x94,0x08,0x78, - 0xfb,0x5e,0x86,0x70,0xf7,0xfd,0x53,0x25,0x10,0x0c,0x0c,0x96,0xb7,0x31,0xb4,0xeb,0xac,0xe0,0xdb,0x11, - 0x89,0x5f,0x3f,0xb9,0x5c,0xe9,0x93,0x93,0xcc,0xef,0x10,0xf4,0xc6,0x62,0x08,0x7a,0x74,0x25,0x02,0x7e, - 0x7a,0xc7,0xc8,0x49,0xe5,0x45,0xda,0xb4,0x6f,0x32,0x21,0x46,0x35,0x64,0xf2,0x02,0xc1,0x6a,0x98,0xea, - 0xa6,0x63,0x87,0xcf,0xbb,0x57,0xa1,0x96,0x23,0x94,0xf6,0x6d,0x68,0x61,0x2c,0xa5,0x6f,0xda,0xb4,0xaf, - 0x81,0x9d,0x70,0xb7,0x2e,0x23,0x27,0xea,0x69,0x4c,0xb6,0x2d,0x50,0x74,0xb9,0xdc,0xe4,0xa6,0x07,0x1b, - 0xd6,0x05,0x27,0x51,0xc3,0x1f,0xf8,0x9b,0x29,0xc3,0xd1,0x8d,0xb7,0x5b,0xc8,0xa3,0x07,0x34,0x30,0xdd, - 0x95,0xb1,0xe2,0x02,0xd6,0xcc,0x78,0x2e,0xbf,0x23,0xbe,0xb8,0x63,0xb8,0xfe,0x4c,0x1a,0x7b,0x4b,0xba, - 0x4e,0x11,0x27,0x05,0xd6,0x4e,0x81,0xe3,0xb2,0x60,0x58,0x1d,0xd4,0xe0,0x09,0x08,0x63,0xce,0x69,0x5b, - 0x0b,0x92,0xac,0xf1,0xe3,0xfe,0xbe,0x9b,0x8a,0x70,0x16,0xd4,0x10,0x6c,0x9b,0xad,0x23,0xf0,0xe5,0x66, - 0xd6,0x3b,0x33,0x39,0x10,0x26,0xec,0xfa,0x79,0x00,0x0c,0x41,0xb4,0x0b,0x4f,0x1d,0x59,0xbd,0x98,0xdb, - 0xaf,0xd5,0x93,0x36,0x8e,0xdf,0xf6,0xb0,0x43,0xa2,0xde,0x76,0x00,0xa3,0x24,0x96,0xff,0x43,0x31,0xed, - 0x9a,0x3e,0x1a,0x14,0xf3,0x87,0x51,0x36,0x12,0x34,0x75,0x3e,0x32,0x32,0x81,0x10,0x98,0xfc,0xea,0xab, - 0x0d,0xc1,0x91,0x11,0x73,0x6d,0x08,0xfa,0x58,0x2b,0xe1,0x31,0x52,0xd2,0x21,0xd4,0xad,0x14,0xc2,0x3b, - 0x33,0xcb,0x3b,0xd8,0x0b,0xdc,0xc2,0x62,0x5d,0xd3,0x08,0xfb,0x1f,0x1d,0x1c,0xef,0xee,0xe2,0x2f,0x14, - 0x38,0x49,0x20,0x42,0x07,0xe9,0xfe,0x88,0x98,0x4a,0x48,0x8a,0xd7,0x3d,0xa9,0x45,0xed,0x34,0x14,0x1d, - 0xf5,0x89,0xe8,0x29,0x8c,0x3e,0x44,0xf8,0x52,0x36,0xc0,0x40,0xc0,0x02,0x21,0x90,0x3a,0xa2,0xb4,0x0d, - 0x49,0x46,0x60,0x92,0xf1,0x98,0x2f,0x47,0x8d,0xa4,0x34,0xdf,0x4c,0x64,0xb1,0x80,0x45,0xe1,0x39,0x0d, - 0x54,0x44,0xd2,0x88,0xa6,0x0f,0x6e,0x83,0x9a,0xa9,0x63,0x8e,0xf3,0x69,0xd5,0x2e,0xca,0x50,0xb3,0x6f, - 0x6b,0xda,0xd1,0xea,0x5d,0x9d,0x1d,0x19,0x5f,0xc9,0x77,0xfa,0xfc,0xd9,0xa7,0xa5,0xd8,0xdb,0x1e,0xab, - 0xc7,0x75,0x76,0xf3,0x83,0x15,0x5f,0xa7,0x26,0xcc,0x49,0x18,0xcd,0xda,0x6e,0x32,0x56,0xd8,0x49,0xa4, - 0x8b,0xa2,0x9c,0xce,0x57,0x33,0x9d,0xbe,0xab,0x95,0xfe,0xe4,0x1e,0x17,0xf9,0xa7,0xd4,0xb6,0x21,0xf7, - 0xef,0x1c,0xc3,0xa8,0x90,0x69,0xf8,0xb4,0x8f,0x86,0xa6,0x39,0x6d,0xa4,0x3b,0x29,0x0d,0xe6,0x29,0xe1, - 0xbd,0xa1,0x1c,0xb0,0x77,0x5c,0x5b,0xac,0xb6,0x95,0xd7,0xdb,0x55,0x97,0x3c,0xb5,0x12,0x4d,0xbc,0xa9, - 0xd6,0x57,0x45,0x70,0xc8,0x5b,0xd7,0x77,0x3d,0x04,0xda,0xe7,0x66,0x67,0x79,0x59,0x92,0x03,0xe4,0x97, - 0x46,0x92,0x46,0x15,0xd8,0x91,0xfe,0xb5,0x2f,0xb7,0xfd,0x97,0x6b,0xb5,0x19,0x71,0x20,0xc4,0x79,0x0c, - 0x71,0x23,0x13,0x0b,0x8c,0x36,0xc1,0x3f,0xc5,0x54,0x58,0x48,0xeb,0xbe,0xe4,0x39,0x0c,0xc8,0xf9,0x02, - 0x21,0xe0,0x95,0x21,0x9f,0xcc,0xc0,0x10,0x28,0x4c,0x94,0xf8,0xfc,0xca,0x77,0x65,0x12,0x60,0x6f,0x13, - 0x8c,0xa0,0x4b,0x05,0x82,0x41,0x10,0xe4,0x13,0x0c,0xef,0xee,0xd2,0x7b,0x15,0x44,0xf6,0xd7,0x46,0x9a, - 0x12,0x4c,0xa1,0x31,0x06,0xc1,0x14,0xaa,0xa9,0x15,0x63,0xf0,0xf5,0xca,0xa5,0x44,0x77,0x9f,0x16,0xb3, - 0xbd,0x58,0x22,0x56,0x44,0x69,0x8a,0x58,0x1b,0x1c,0x98,0x25,0x82,0x8a,0x01,0x21,0x96,0xf2,0xa3,0xe9, - 0xf1,0x64,0x50,0xdb,0x84,0x9c,0x01,0x85,0xd3,0x5c,0x6e,0xcf,0x32,0x16,0x3a,0x53,0x44,0x59,0x46,0x49, - 0xa2,0x75,0x5d,0x92,0x2c,0x2b,0x41,0xdb,0xee,0xae,0xc5,0xd1,0xdf,0xf8,0x80,0x81,0x26,0x8f,0x76,0x33, - 0x41,0x43,0xae,0x70,0xaf,0xaa,0xea,0x10,0x1c,0x89,0x15,0xb5,0x78,0xad,0x0d,0xa4,0x3d,0x76,0x12,0xe8, - 0x8c,0x21,0xec,0x4d,0x5f,0x11,0xaf,0x32,0x10,0xb1,0xf8,0x73,0x7c,0xe4,0x6f,0xe5,0x9d,0x1c,0x21,0x31, - 0xb3,0xac,0xbd,0x67,0x46,0xb0,0x1d,0xad,0xda,0x62,0x9e,0xdd,0xc0,0xd3,0x33,0xfd,0x96,0xe8,0xb6,0x4f, - 0x2d,0x01,0x08,0xa2,0xc9,0xc2,0x36,0xdb,0xac,0x74,0xfa,0x54,0x49,0x25,0xef,0x44,0x83,0xa3,0xd3,0x0f, - 0x20,0x42,0x2d,0x27,0x18,0xb0,0x7f,0x0e,0x11,0xff,0xa1,0xdc,0xa5,0x0f,0x83,0x3b,0x6b,0xc8,0xfa,0x9a, - 0x45,0x58,0xf6,0xa6,0x08,0x2d,0x46,0xd8,0x43,0x2e,0x58,0x89,0xaf,0x7b,0x74,0x72,0x9a,0x37,0xa0,0xdb, - 0x70,0xed,0xa9,0x4d,0x73,0x2b,0xd9,0x10,0x46,0xe1,0x21,0x36,0xfa,0x0e,0x0a,0x19,0x42,0x76,0x5a,0x6d, - 0x5c,0x38,0xf2,0x76,0xbe,0x3a,0x2f,0x24,0xfe,0xea,0x60,0x06,0xdf,0xb9,0xc7,0xa1,0x41,0xad,0x47,0x64, - 0x8b,0xdb,0x2b,0x3a,0xac,0x81,0x50,0x9d,0x5d,0x12,0xda,0xb3,0x49,0xc6,0x7b,0xc2,0x88,0x16,0x06,0x64, - 0x10,0x88,0x41,0xc2,0x8d,0x4e,0xdc,0x93,0x75,0xd4,0x80,0xd1,0xfb,0xd0,0x17,0xd0,0x66,0x05,0x57,0x96, - 0x31,0xd7,0x16,0x1a,0x94,0x61,0x9d,0x16,0xc5,0xa7,0x62,0xd8,0x59,0x1a,0x03,0xf5,0x4a,0x98,0xf0,0x55, - 0xb9,0xef,0xbb,0xc2,0x59,0xda,0x64,0xd9,0x81,0x91,0xca,0x1e,0x12,0x83,0x2c,0xf0,0xd2,0xd5,0xbf,0x65, - 0xac,0xb8,0x09,0x48,0x70,0x08,0xe7,0xf1,0xa5,0x5c,0xbc,0x8b,0xcd,0x2a,0xf7,0x1a,0xe2,0x89,0xe5,0x78, - 0xc0,0x0c,0x50,0x14,0x5a,0x03,0x74,0xeb,0xab,0x82,0x13,0x53,0xae,0x63,0x74,0xa1,0x54,0x24,0xca,0x76, - 0x3e,0xa0,0xf1,0x83,0x22,0x90,0x3d,0x22,0x4c,0xc0,0x80,0xdc,0x1f,0xf6,0x7d,0x30,0x0a,0x28,0x89,0x24, - 0xd4,0x39,0x65,0x39,0xe2,0x55,0xd3,0x10,0x71,0x43,0x7c,0x1e,0x4c,0x4d,0x19,0xce,0x0b,0x9d,0xb6,0xab, - 0x25,0xf4,0x34,0xbe,0xc8,0xa6,0x50,0xda,0x4b,0xa3,0x3e,0x2b,0x93,0x85,0x4c,0x31,0x94,0xba,0x9c,0x38, - 0xa9,0xcb,0x1a,0x77,0x9d,0xe4,0x1d,0xa0,0xee,0x4b,0x13,0x37,0xdb,0xb0,0xa5,0xfa,0xcd,0x9c,0x75,0x9b, - 0xb1,0x62,0x79,0x69,0xc2,0xac,0x61,0x69,0x1e,0x28,0x45,0x20,0xa6,0x94,0x5f,0x7a,0xc7,0x06,0x2a,0xf1, - 0xf7,0x2e,0xaf,0x89,0x9c,0x79,0x5f,0x8e,0x39,0xab,0xe4,0x06,0x97,0xcd,0xcd,0xc8,0x6e,0x08,0x6e,0xf6, - 0xac,0x37,0x9c,0x9f,0x59,0xdb,0x11,0x9b,0xd3,0xf2,0xc5,0x30,0x39,0xed,0x40,0xe7,0x7e,0x87,0x4b,0x79, - 0x73,0xaf,0x75,0x2d,0xd8,0xc1,0x89,0x88,0x8b,0xb5,0x1c,0x53,0xed,0x5d,0xdd,0x43,0xcf,0x7a,0x91,0x7c, - 0x9c,0x4f,0x49,0x1c,0x44,0x04,0x10,0x3f,0xb1,0x2a,0x2e,0x39,0x20,0x0a,0x83,0x5a,0x56,0x1a,0x08,0x74, - 0xd6,0xac,0x1d,0xd4,0x63,0xfa,0xcc,0x91,0x6c,0x82,0x70,0x02,0x52,0xd1,0xc0,0x86,0x65,0x6e,0x2d,0xbb, - 0x41,0x74,0xcb,0xb4,0x54,0x26,0xf6,0x79,0xb9,0xb6,0xae,0x3e,0x06,0xf9,0x89,0x07,0x0a,0x2c,0x0a,0x4b, - 0x8e,0xb2,0x37,0x98,0xb7,0x36,0x2e,0x53,0xa5,0xb0,0xd0,0xc3,0xd8,0xfe,0x59,0x57,0xa6,0x57,0x34,0xef, - 0xc5,0xd7,0x58,0x1c,0xa3,0xbf,0x47,0xcb,0x7f,0xe9,0xc3,0xa6,0xa9,0x8d,0x6b,0xe4,0xa6,0x4f,0x75,0x88, - 0x4d,0xba,0x2c,0xa5,0x10,0xf4,0xfe,0x5b,0x58,0xbe,0x53,0xc5,0xf0,0x7b,0x2b,0x60,0x7b,0xfd,0x60,0xf4, - 0xd5,0xe8,0xf0,0x0b,0x09,0xd3,0xf2,0x63,0xad,0xbe,0xab,0xd5,0x4f,0xb5,0xfa,0xa3,0x56,0x3f,0xd7,0xea, - 0xf7,0x5a,0x7d,0x5f,0xab,0x1f,0x6a,0xf5,0x4b,0xcd,0xe1,0x34,0xf8,0xde,0x67,0x73,0xe7,0xab,0xfa,0x96, - 0xd3,0xf8,0x6e,0x1b,0x85,0x7a,0x89,0xcc,0xcc,0x95,0x4c,0x90,0x92,0xfb,0x7d,0x40,0x1e,0x9e,0xc3,0x74, - 0x90,0x4a,0xff,0xbb,0x6f,0x3b,0xef,0x42,0x24,0xb9,0xfb,0xcd,0x69,0x59,0xbe,0xad,0x59,0xa4,0x16,0x49, - 0x44,0x63,0x38,0x5e,0xe0,0x16,0x58,0x7b,0x5b,0x90,0x29,0x14,0x49,0x23,0xbc,0xbe,0x94,0x4b,0x74,0xc9, - 0xf4,0xa3,0xcf,0x94,0xcb,0x76,0x4c,0x9e,0x8b,0xa3,0x8e,0x1c,0x88,0x9d,0x2b,0xce,0x59,0xab,0x7f,0x71, - 0xe7,0xa7,0x72,0xd9,0xbb,0x9e,0x15,0x2d,0x8c,0xe8,0xd4,0xac,0xce,0xcf,0xcf,0xf9,0xa9,0x59,0xea,0xf9, - 0x9c,0x6b,0xa6,0xbe,0xff,0x93,0x0b,0xd3,0x41,0x50,0x5d,0x9d,0x11,0x82,0x6f,0x08,0x83,0x11,0x53,0xc9, - 0x2e,0x99,0x2a,0x5f,0xb5,0xd5,0x59,0x35,0x5d,0x35,0xfc,0xb4,0x9c,0xe7,0xd7,0xca,0x74,0x88,0x03,0x8f, - 0xd0,0x51,0x0d,0x3b,0x3d,0x22,0x59,0xe7,0x0d,0x9d,0xdf,0x34,0x77,0xb5,0x56,0x96,0xb4,0x33,0xbf,0xb6, - 0xbc,0x79,0xe5,0x3e,0xdb,0x17,0x3b,0x74,0xbc,0x13,0xe7,0x33,0x2b,0x1a,0x74,0x6f,0xa6,0x74,0x29,0xbf, - 0x88,0x60,0x50,0x56,0x34,0x85,0x05,0x80,0x58,0x5d,0x14,0xb3,0x19,0x75,0x0d,0x87,0x63,0xab,0xeb,0x45, - 0x51,0x22,0x91,0x20,0xaa,0x6e,0x55,0xd1,0x2c,0xf2,0xa5,0x2a,0x5a,0xbd,0x90,0x48,0x27,0xf3,0xaa,0x5a, - 0x2a,0x7b,0xcd,0x94,0x92,0x46,0xcb,0x0a,0xa1,0x5a,0x14,0xc2,0x4b,0x34,0xc5,0x1f,0xb4,0x48,0x55,0x73, - 0x91,0x83,0xe1,0xf4,0x2d,0x94,0x15,0xa2,0x47,0xd1,0x3a,0x53,0x33,0xcb,0x9c,0xb0,0x11,0x6d,0xda,0x4f, - 0x45,0x4b,0x24,0x6d,0x3e,0xab,0xca,0x39,0xa2,0xaa,0xfc,0xbe,0xa2,0x2d,0x38,0x53,0xc6,0xb5,0x72,0xa6, - 0x84,0x2d,0x22,0x98,0xc8,0x17,0x73,0x02,0x06,0xe5,0xc6,0x04,0x1f,0x4c,0x9e,0x6d,0x77,0xb1,0x0b,0xc7, - 0x06,0xa5,0xb9,0xa7,0x4c,0xc0,0x3c,0x02,0x4b,0x70,0xac,0x78,0x75,0x59,0x34,0x05,0x95,0x04,0x87,0x5b, - 0x64,0xd1,0x45,0xdb,0x2e,0xd3,0xfb,0xf7,0xaf,0xae,0xae,0x46,0x57,0x5f,0x8c,0xaa,0xfa,0xfc,0xfe,0xe1, - 0xd7,0x5f,0x7f,0x7d,0xff,0xd3,0xbc,0x28,0x3f,0x12,0x45,0x55,0x0c,0x9c,0xb3,0x51,0xda,0x71,0x41,0xf9, - 0x0a,0x50,0x26,0xe5,0x39,0xd9,0x86,0xe8,0xf9,0x8a,0x08,0xfb,0x72,0xe8,0xfb,0x2d,0x0d,0x9b,0x5c,0xe7, - 0x5d,0xf2,0x77,0x65,0x05,0x9b,0x1c,0xb3,0x45,0xd5,0x83,0xdf,0x08,0x81,0x4c,0x80,0xb8,0x7d,0x28,0x60, - 0x57,0x14,0xd9,0x4d,0x73,0x49,0x04,0xf1,0xe6,0x08,0x1e,0x1c,0x1c,0x1c,0xdc,0xa7,0xbc,0x88,0xf8,0xa6, - 0xf6,0x62,0xa8,0x04,0x8d,0xf1,0x1f,0xf7,0x71,0x47,0x2a,0xff,0x79,0xf5,0x92,0x9a,0xad,0x0a,0x40,0xe6, - 0x45,0xbb,0x98,0xab,0xd3,0x6a,0x76,0xad,0x80,0x0d,0xd5,0x05,0x2d,0x85,0xc2,0xd0,0x14,0x22,0x94,0x2b, - 0xd9,0xb5,0x6d,0xd1,0xd2,0xdf,0x7c,0x36,0xc3,0x7e,0x54,0x79,0xdd,0x16,0x53,0xbc,0x37,0xb4,0x27,0x08, - 0x88,0x2a,0xdc,0xe2,0x89,0xef,0xf0,0x73,0xa8,0x2e,0x1e,0xa8,0x8b,0x2f,0xd4,0xc5,0x97,0xea,0xe2,0x2b, - 0x75,0xf1,0x77,0x75,0x71,0x5e,0x57,0xab,0xa5,0x2a,0xf3,0x4b,0x5a,0x3b,0x1e,0x23,0x01,0xe2,0xa5,0x9a, - 0x11,0x54,0xce,0xd5,0xac,0x55,0x44,0xc7,0xc2,0xc3,0x06,0xe9,0x6c,0x90,0xaa,0xd5,0xb2,0x98,0xc2,0xe1, - 0x46,0x5d,0xd4,0xaa,0x58,0x9c,0x53,0x67,0x68,0x50,0x74,0x88,0x55,0x73,0xb5,0x84,0x61,0xa3,0x5a,0xcd, - 0x55,0xae,0x4e,0x89,0x95,0x3c,0xad,0xd5,0xe9,0xac,0xa0,0xff,0x95,0xa2,0xc7,0x29,0x81,0x27,0x47,0x21, - 0x52,0x7c,0x99,0xfd,0xec,0x8c,0xce,0xc8,0x85,0x2a,0xd4,0xc7,0xd3,0x19,0x55,0x50,0x7f,0x54,0xbf,0xab, - 0x7a,0xa9,0x08,0x98,0xeb,0x76,0xaa,0xea,0xd5,0xe9,0x35,0x51,0xf2,0x4d,0xbe,0x58,0x2a,0x82,0x6d,0x22, - 0xbc,0x9a,0x65,0x4e,0xa8,0x87,0xf6,0x1a,0x31,0x9c,0xcd,0xea,0x94,0xfe,0x2f,0xf9,0x5e,0x5b,0xb5,0x52, - 0x84,0xdc,0xd4,0xd5,0x29,0x84,0xe8,0x84,0xa4,0xf2,0xd5,0xac,0xa8,0x14,0xb6,0x03,0x18,0xd9,0x8f,0x8a, - 0x11,0x03,0xb5,0x74,0x4a,0x60,0x27,0xde,0x60,0xb0,0x44,0xcd,0x17,0x04,0xa0,0xab,0x9a,0x78,0x90,0x69, - 0x5e,0x5e,0xe6,0xd4,0xd2,0xb4,0x2e,0x96,0x2d,0x36,0x85,0x3c,0x10,0xc9,0x0d,0x43,0x37,0x65,0xc7,0x3e, - 0xa5,0xe1,0xd1,0x7f,0x99,0x2c,0x03,0xd8,0xbc,0x16,0x2d,0xaf,0x4d,0x4b,0x0f,0x17,0xd4,0xa2,0x12,0xe4, - 0xc6,0x43,0x84,0x29,0x01,0xcd,0x99,0x9e,0xcf,0x88,0x8e,0xe7,0xcd,0xac,0x04,0xa1,0xce,0xf3,0x53,0xaa, - 0x7d,0xae,0xcf,0x41,0x0b,0x2c,0xb0,0x99,0x81,0x5a,0xa5,0x6a,0x83,0x63,0xab,0x55,0x8b,0x92,0x16,0xc7, - 0x5a,0x9c,0xeb,0x50,0x31,0xa1,0x80,0xbc,0x00,0xd6,0x29,0xf2,0x79,0x75,0x4e,0x95,0x94,0x2b,0xfe,0x03, - 0x14,0x40,0x53,0xb3,0xa0,0x09,0xbd,0x56,0x06,0x03,0x2a,0x2d,0x42,0x07,0x85,0xfd,0x5e,0x5d,0x29,0x1b, - 0x3a,0x4b,0x71,0x70,0xb2,0xdf,0x57,0x15,0xd0,0xc8,0x59,0x0d,0xaa,0xaf,0x05,0xb4,0x40,0x08,0xc1,0xa0, - 0x47,0x00,0xab,0xf2,0xb2,0x58,0xa0,0xec,0xb4,0xa8,0xa7,0x7c,0x3e,0x14,0xcb,0x25,0x01,0xa8,0x9a,0xae, - 0x6a,0xda,0xe1,0xc0,0x5c,0x40,0x7d,0xcd,0x94,0x1a,0xa1,0x2c,0x02,0x50,0x89,0xf2,0x43,0xc3,0x2d,0xdb, - 0xfd,0xb3,0x7c,0x0a,0x00,0xac,0x75,0x71,0x5e,0xca,0x21,0xa8,0xce,0xd5,0xf9,0xfc,0x7a,0x79,0x41,0x90, - 0x93,0x9f,0x6b,0x00,0xb2,0xe6,0xc5,0xd7,0x90,0x28,0x34,0x04,0xd4,0x45,0x83,0x5b,0xd6,0xf6,0xa5,0x10, - 0xb7,0x44,0x7f,0xa8,0x42,0x42,0x48,0xd5,0xfc,0xfa,0xbc,0x92,0x5f,0xfe,0x0e,0xa4,0x80,0x12,0x57,0x6a, - 0xd5,0x70,0xa8,0x0d,0x9e,0x1f,0xfe,0xc3,0x5f,0xb6,0x0c,0x33,0x20,0xaa,0x2e,0x0b,0x7d,0x25,0x11,0xa2, - 0x9a,0xc1,0xbd,0x5c,0x89,0x4d,0x7e,0xce,0xf7,0x87,0xd3,0x58,0x07,0x39,0xaa,0x15,0x4f,0x8a,0xd8,0x37, - 0xb2,0xc4,0x83,0x1d,0xce,0xae,0xaa,0x9a,0xd1,0x5f,0x4d,0xbd,0xd0,0xb4,0x11,0xd0,0x89,0xb9,0x5a,0xd5, - 0x88,0x9e,0x3d,0x2f,0xfa,0xa1,0xad,0x3a,0x52,0xa0,0x41,0xeb,0xdf,0x3b,0xc2,0x6f,0xb9,0x8b,0x94,0xcd, - 0x81,0xc9,0x11,0xca,0x27,0x65,0x1a,0x6b,0x63,0x48,0xab,0x03,0x43,0xda,0xdd,0x5d,0x17,0x2f,0x2d,0x4c, - 0x76,0x17,0x0f,0xc2,0x2a,0xa6,0x7b,0x11,0xbc,0xcd,0x41,0xc4,0x25,0xfb,0x98,0xf0,0xa5,0x86,0x9d,0x6e, - 0xbc,0x7e,0xdf,0xeb,0xb3,0x55,0x32,0x0e,0x76,0xfa,0xf5,0xfb,0xb8,0x28,0x10,0x82,0x52,0xbb,0x7a,0x3e, - 0xd0,0xec,0xe1,0xce,0xca,0x74,0x60,0x11,0x7a,0x95,0xd8,0xa2,0xb2,0x24,0x9c,0x64,0xe2,0x06,0xfc,0x85, - 0x8f,0x4d,0x49,0xfe,0x56,0xec,0x55,0x1f,0xb3,0x88,0x7a,0xc3,0x87,0x9c,0xf9,0x40,0x97,0x1d,0xcb,0x45, - 0x8e,0x62,0xb3,0xcf,0xc6,0x4c,0xbd,0xf1,0xda,0xcb,0xd2,0x39,0x0f,0x17,0x84,0x28,0xdc,0x6d,0x5c,0xce, - 0x86,0xcb,0x06,0x79,0x5c,0xd6,0xdf,0xd9,0x39,0x34,0x84,0x36,0xb8,0xd3,0x93,0x0e,0x2a,0x1a,0xfe,0x7b, - 0x3a,0x16,0x69,0x37,0x0c,0x17,0x0e,0x0a,0xac,0x71,0x31,0x19,0x07,0x6c,0x1a,0x2c,0x69,0x32,0xd7,0x70, - 0x1f,0xc0,0xac,0x3e,0x11,0xbc,0xf0,0xff,0xb5,0xf7,0xed,0xfb,0x6d,0x1b,0xc9,0x9a,0xaf,0x42,0x61,0xb4, - 0x32,0x10,0xb6,0x28,0xc9,0x97,0x64,0x02,0x1a,0xe6,0x38,0xb6,0x93,0x38,0x8e,0x63,0x9f,0xd8,0xb9,0x52, - 0x8c,0x0e,0x44,0x82,0x22,0x6c,0x0a,0xe0,0x80,0xa0,0x64,0x5b,0xe4,0x03,0xed,0x6b,0xec,0x93,0x6d,0x7d, - 0x55,0xdd,0x8d,0x06,0x08,0x59,0x76,0xce,0xee,0xd9,0x7f,0x36,0xf9,0x59,0x04,0x1a,0x7d,0xef,0xea,0xea, - 0xaa,0xea,0xba,0x6c,0x75,0xb7,0xac,0xbe,0x45,0x92,0xdb,0x42,0x48,0xcb,0xbc,0xd5,0x00,0x88,0xe7,0x0d, - 0x41,0x71,0xe8,0x0c,0x94,0x15,0x68,0xd4,0xfe,0x4b,0xc9,0x33,0xa0,0xe9,0xf1,0x66,0xcb,0x0c,0xa3,0x44, - 0x9d,0x54,0x00,0x2b,0x9e,0x85,0x7f,0x81,0x5c,0x0d,0xdb,0x96,0x8b,0x07,0xed,0x1a,0xbc,0x26,0x13,0xf4, - 0xea,0x53,0xed,0x76,0xc2,0xf7,0x88,0x8a,0xde,0x28,0x44,0x76,0x99,0xa4,0xf0,0x49,0x66,0xfc,0x8c,0x19, - 0x05,0x59,0xeb,0x41,0x8c,0xfd,0x44,0x60,0x49,0x2b,0xcf,0x61,0xde,0x88,0x68,0x2d,0x3b,0x8e,0x0f,0xa5, - 0xe9,0xf5,0x87,0xb2,0xb5,0xfd,0x0f,0x68,0x7f,0x91,0xa2,0xfd,0x8b,0x76,0xcc,0x71,0x4e,0x5d,0x98,0xa6, - 0x54,0xe9,0x48,0x9d,0x55,0x15,0xff,0x60,0x2b,0xfe,0x81,0xa8,0x87,0xf7,0xd5,0x87,0xdf,0xed,0x87,0xdf, - 0xe9,0xc3,0x49,0x1a,0x1d,0x0c,0x8f,0x2f,0x83,0x5e,0xf7,0x78,0xff,0x64,0xf7,0x78,0x34,0x3a,0x50,0xa7, - 0x88,0x1b,0x70,0x42,0x3c,0xc6,0x25,0x3f,0x8c,0x3d,0xb5,0x5b,0x95,0xa6,0x03,0x56,0x97,0x06,0x18,0xbd, - 0xab,0x3e,0xcc,0xec,0x87,0x19,0x7d,0x78,0x9b,0xb6,0x5a,0xf3,0x72,0xc0,0xba,0x83,0xd0,0xef,0x75,0x83, - 0x83,0x2a,0x1c,0x83,0x18,0x5b,0x1e,0xf4,0xfd,0xc1,0xce,0xf0,0x2f,0x7f,0xf4,0xc5,0x71,0x10,0x1c,0x9c, - 0xb5,0x28,0xa5,0x89,0xbd,0x66,0x59,0xb9,0x71,0x95,0x82,0x50,0x26,0xb0,0x37,0xa2,0x50,0x8f,0x1e,0x22, - 0x76,0xab,0x0e,0xe6,0x33,0x8a,0x8a,0x2a,0xf0,0x0f,0x03,0x51,0x02,0xcf,0x74,0x34,0xea,0xbf,0xf6,0xf7, - 0x0f,0xd4,0x43,0x7a,0x38,0x5e,0x7e,0xb1,0x93,0x9e,0xc3,0x7e,0x3a,0xce,0xca,0xdd,0x03,0xf5,0x2a,0x6d, - 0xd3,0x7a,0x78,0xa4,0x43,0xd7,0x13,0xa0,0x94,0x12,0x73,0x10,0x30,0x6a,0xf9,0xad,0xc4,0xb5,0xd6,0x78, - 0xa8,0xf3,0x66,0xd7,0xe6,0xb5,0xde,0xf3,0x1e,0xa6,0x1c,0xa9,0xc8,0xb3,0x1d,0xf0,0x6a,0x41,0x05,0x5e, - 0xa4,0xbe,0x78,0xa7,0xaf,0x5f,0x96,0x67,0x35,0x1d,0x9c,0xd6,0x1b,0x5e,0x69,0x17,0x1c,0x36,0x6b,0x43, - 0x89,0xe5,0x95,0x93,0x48,0xf0,0xf4,0x1a,0xb0,0x2b,0xa1,0x12,0x09,0x3c,0x9f,0xe7,0x1f,0x80,0x9f,0x97, - 0x70,0xa1,0xd7,0x5c,0x3d,0xea,0xc0,0xb3,0x22,0x7a,0x56,0xdc,0xe0,0xbf,0x51,0xaa,0xb7,0xbe,0xf8,0x76, - 0xd8,0xfe,0x1a,0x01,0x24,0xe0,0xa1,0x94,0x25,0xec,0xcf,0x0a,0x2b,0x70,0x73,0x2f,0xcb,0x3e,0xc1,0x37, - 0xa1,0xf6,0x78,0xf1,0x3a,0x6d,0x71,0xab,0xf9,0x3a,0x1d,0x66,0xa3,0x2e,0x4b,0xa8,0x8b,0x7a,0x2b,0x05, - 0x56,0xfc,0x4d,0x05,0xa5,0x67,0x16,0x4a,0xcf,0x08,0x4a,0x9f,0x34,0xc7,0xa9,0x2d,0xc2,0x13,0x0e,0x85, - 0x09,0x66,0x35,0x24,0x76,0x7d,0x9f,0x5f,0x89,0x39,0xc0,0x8f,0x8e,0xfc,0x5c,0xa5,0xef,0x97,0xb9,0xfe, - 0xe4,0xc4,0x80,0x76,0x3e,0x8b,0xc4,0xd5,0x53,0x55,0x18,0x69,0xfe,0xc8,0xaf,0x3a,0xd5,0xad,0x93,0x13, - 0xb8,0xce,0x66,0x5c,0x69,0xe7,0xb3,0xae,0x13,0x63,0x7b,0x9a,0xb2,0x47,0x31,0x44,0x84,0xfe,0x31,0xd5, - 0x71,0x2e,0xd9,0x73,0xac,0xa7,0xbe,0xa5,0x77,0x21,0xb0,0xf8,0xf5,0x71,0xe3,0xf3,0x4f,0xb5,0x77,0x3a, - 0x49,0x3c,0xf5,0xb2,0x5e,0xe2,0xb9,0xfb,0x8a,0x0c,0xfd,0xa7,0xb8,0x00,0xb0,0xde,0x1a,0xb4,0x1b,0x33, - 0xf0,0xa8,0x4e,0x35,0x0e,0x79,0x60,0x33,0x5c,0x32,0x90,0x35,0xb2,0xf9,0xe8,0x91,0x13,0xa9,0xd3,0xe9, - 0xd7,0x65,0x23,0xf5,0x49,0x86,0x1b,0xca,0xed,0x86,0xdd,0xde,0x5d,0xdf,0x6e,0x3d,0x97,0xff,0xd2,0x36, - 0xfb,0xb0,0x3e,0xd6,0xcb,0x7a,0x22,0x37,0x2a,0x32,0x9a,0x9f,0x31,0xcb,0x03,0x5d,0x2d,0xd8,0x54,0xda, - 0xdd,0x36,0xdf,0xb7,0x20,0x6e,0x3f,0xfa,0xb1,0x07,0x79,0x91,0x2f,0x39,0x82,0xb0,0x72,0x8a,0xd0,0x7a, - 0xa0,0xe2,0xde,0xfc,0x1b,0xa0,0xa5,0x53,0xdf,0x46,0xef,0x58,0x13,0x8f,0x12,0xf8,0x6a,0xbd,0x1b,0x1c, - 0xa8,0x5f,0x1c,0xf4,0xb4,0x15,0xe0,0x41,0xa8,0xbc,0x47,0xce,0x59,0x0f,0xda,0x2e,0x61,0x89,0xd8,0xa3, - 0x1a,0x75,0x01,0x15,0x57,0x27,0x82,0x06,0xc7,0x82,0x4b,0xc5,0xc4,0x4e,0x42,0xda,0xd4,0x3c,0x52,0xc5, - 0xca,0x35,0x12,0xe3,0x9c,0x46,0xd9,0x52,0xce,0x57,0x16,0xad,0x23,0x22,0xb4,0x36,0x72,0x6a,0x8d,0x02, - 0x1c,0xc0,0x97,0x90,0xbd,0x2a,0xd1,0x45,0xa2,0xb8,0x07,0x7d,0x2d,0xfa,0x26,0x2f,0x90,0x03,0x23,0x23, - 0x8e,0xdd,0x23,0x6e,0x48,0xb5,0x57,0x66,0x63,0x78,0xa0,0x47,0x84,0x1f,0xfc,0x55,0x50,0xd3,0x6b,0x34, - 0x11,0x30,0x1c,0x1d,0x9e,0xb2,0x1f,0xb7,0x98,0xe2,0x48,0x94,0xeb,0x96,0x2f,0xe6,0xd6,0x3c,0xf1,0x73, - 0xfa,0x8c,0x61,0x72,0x2f,0xf3,0xc8,0x0d,0x19,0xab,0xf5,0x96,0x24,0x16,0xcb,0xbb,0x9e,0x21,0x01,0x0c, - 0x9a,0xea,0x76,0xf3,0xa0,0x4a,0x45,0x14,0x96,0x45,0x4a,0x93,0xdc,0xd7,0x46,0x07,0xb1,0xd1,0x10,0x1a, - 0x43,0x43,0x05,0x97,0xc7,0xd4,0xe7,0x8d,0x9d,0x63,0xb5,0x23,0xa1,0x13,0xe4,0xcd,0x4c,0xae,0x4c,0xb9, - 0x9a,0x3a,0xde,0xb5,0xd5,0x4c,0x1c,0x13,0xd3,0x5a,0xcf,0x82,0x81,0xcf,0x35,0x41,0xfa,0xbe,0x1c,0x3c, - 0xda,0x22,0x9b,0x91,0xac,0x66,0x41,0xd8,0xf8,0xe2,0xcf,0x20,0x1d,0x9f,0x40,0x16,0x3b,0xa7,0x26,0xa7, - 0x98,0xd4,0x84,0x27,0x75,0x21,0x33,0x3c,0x86,0xa7,0x17,0xee,0x22,0x75,0x25,0xcc,0x7c,0xc7,0x27,0xb4, - 0x6d,0xf2,0x51,0x93,0x44,0x16,0x7f,0xce,0x8d,0xb2,0x8d,0xcc,0x15,0x31,0xde,0x96,0xdb,0xf1,0x28,0xbc, - 0x14,0xd5,0xbd,0xc4,0x18,0x4b,0xe9,0xd0,0xf4,0x02,0xa5,0x22,0xf4,0xc5,0xac,0x9a,0x2b,0x15,0xd5,0x9a, - 0xad,0x35,0xd5,0xa8,0x35,0xe8,0x79,0xdb,0x06,0x05,0x28,0x07,0x4d,0xd9,0x97,0xd4,0x42,0xb4,0xe4,0x26, - 0xec,0xcc,0x89,0x89,0xc8,0x40,0x59,0x13,0x12,0x37,0x56,0x89,0xd6,0x7b,0x45,0x77,0xd1,0x37,0x0e,0x35, - 0x5f,0x38,0x5b,0x53,0xa4,0xcc,0x8f,0xea,0x3c,0x82,0x94,0xa1,0xb5,0x71,0xc9,0xfb,0x92,0x03,0xb2,0xda, - 0x9a,0xe7,0x0e,0x5d,0xb2,0x15,0x63,0xaf,0x19,0xbb,0xc2,0xc2,0x61,0x1a,0xc4,0x3e,0x6b,0x1c,0x67,0x7a, - 0x6e,0xf9,0xca,0x09,0xfa,0x86,0x4c,0x1c,0x14,0x66,0xf6,0xd1,0xa5,0x5a,0xe3,0x9c,0x79,0x6b,0xad,0xb4, - 0x1b,0x9b,0xd2,0x38,0xec,0x76,0x5c,0x62,0x1b,0x1f,0x19,0xfd,0x36,0xc3,0xb7,0xa0,0x6c,0x9d,0x5f,0xd9, - 0x6a,0x95,0xc9,0xad,0xc4,0xbf,0x72,0x9c,0x5e,0xcb,0xd2,0xd7,0x2d,0xd8,0xde,0xe9,0x4e,0x55,0x83,0x2c, - 0x02,0x93,0x46,0x54,0x0e,0xb6,0x1a,0xa3,0xbf,0x4b,0x63,0xe0,0xab,0x31,0x0d,0xad,0xc5,0xa5,0xce,0x46, - 0x6f,0xe6,0x51,0xb2,0x2b,0x7c,0x4b,0x0d,0x44,0xb5,0x2d,0xec,0xc4,0x62,0x5a,0x41,0x61,0xd0,0x06,0xb7, - 0xee,0x04,0x83,0xe0,0x51,0x9d,0x79,0xd1,0x73,0x0d,0x32,0x4f,0x26,0xba,0x1a,0x02,0x47,0x13,0x42,0xf9, - 0xca,0xc2,0x12,0xf8,0x85,0xad,0x94,0xec,0x35,0xc5,0x52,0xd7,0x8b,0x65,0xb9,0xae,0x62,0x55,0x45,0x1e, - 0x02,0xb2,0x8f,0x2e,0x11,0xe0,0x33,0x63,0x87,0xe6,0xba,0x62,0xf3,0x6a,0x5d,0x24,0xfe,0xbd,0x86,0x1c, - 0xe7,0xde,0xae,0x7f,0x47,0xbd,0xdc,0xc5,0xfd,0x28,0xe5,0x35,0x88,0x7d,0x8e,0x96,0x93,0xab,0x7a,0x10, - 0xa3,0x0b,0x3b,0x71,0x28,0x56,0x3b,0x39,0x52,0x01,0x5c,0xf4,0x29,0xad,0xce,0x03,0x74,0x50,0x33,0x45, - 0x18,0x50,0xe5,0xf8,0xec,0x9d,0x49,0xae,0x56,0x3e,0x0b,0x6c,0x22,0x47,0x0a,0x0e,0xaa,0xc5,0xa9,0x02, - 0xc4,0xeb,0x10,0x3f,0xec,0xff,0xbf,0x69,0xfb,0x88,0x8e,0xe3,0x1e,0xda,0x35,0x7d,0xac,0xfa,0x7e,0x5e, - 0x3f,0x51,0xaa,0xb1,0x5a,0x9b,0x83,0x82,0xa8,0x6c,0xf1,0xdc,0x45,0x3f,0x0c,0xbd,0x03,0xff,0x0c,0x57, - 0x74,0x17,0x38,0x17,0x43,0x44,0x3b,0x82,0x6e,0x90,0x8b,0xcf,0xce,0xac,0x2a,0x32,0x8e,0xe8,0xf5,0xda, - 0x20,0xb6,0xc0,0x86,0x2b,0x8a,0xde,0xe9,0x53,0xdb,0x86,0xa2,0xed,0xeb,0x79,0x0a,0x06,0x8e,0x15,0x6d, - 0x37,0x4a,0xc3,0xec,0x63,0x8a,0xc1,0x44,0x36,0xed,0xef,0x3b,0x05,0x70,0x4d,0x56,0x5a,0x67,0x29,0xce, - 0x87,0x88,0x16,0x75,0xe3,0x9b,0x93,0x88,0x36,0x43,0xd1,0xb6,0x5d,0x79,0x75,0x00,0x74,0x5a,0x11,0x82, - 0x5f,0xcd,0x09,0x79,0x86,0xd8,0x19,0x81,0x32,0x5b,0xb4,0xd6,0x7f,0xbd,0x45,0x25,0x0d,0x5b,0x94,0x63, - 0x92,0x49,0x2b,0xee,0x0e,0x4d,0x74,0xd8,0x5e,0x64,0x0b,0x4c,0xb8,0x2a,0xa8,0x7d,0xf3,0x16,0xca,0xa5, - 0x83,0xce,0xf2,0x40,0xcd,0x19,0xe4,0xcb,0x52,0xa2,0x73,0x11,0xac,0xa7,0x26,0x2a,0x67,0xca,0x38,0xbd, - 0xc0,0x5f,0xd6,0x79,0x41,0xdc,0xd7,0x2d,0xef,0x97,0x01,0xed,0xc3,0xb4,0xe6,0x3f,0xd3,0xf8,0xb8,0x9a, - 0x04,0x83,0x53,0xbf,0x90,0xf9,0x40,0x64,0xe2,0xb4,0xd5,0x77,0xe6,0xa1,0x65,0xfe,0x88,0x2a,0xb3,0xfe, - 0x3d,0x19,0x68,0x0b,0xf7,0x35,0x65,0x17,0xa3,0x91,0x84,0x0d,0xc3,0x81,0xc5,0xb9,0xc5,0xab,0x27,0x01, - 0x80,0xbc,0xbe,0x60,0xf2,0x26,0x48,0x5b,0x74,0x5d,0x8a,0x36,0x53,0x62,0x1b,0xec,0x58,0xcd,0x69,0xb4, - 0xbc,0xa9,0x12,0x7f,0xce,0xb3,0xb8,0x8a,0xe6,0xd5,0x94,0xae,0xa2,0x95,0x75,0x16,0x40,0x09,0x2b,0xcc, - 0x99,0x10,0xb8,0x8b,0xa8,0xa8,0x48,0x89,0x89,0x63,0x4b,0x2a,0x9b,0x08,0x75,0x4d,0xb1,0x47,0x19,0xf6, - 0x57,0xb4,0xb0,0x2b,0x5a,0x58,0xe1,0xa4,0xaa,0x85,0x5d,0x05,0x26,0x6d,0xb8,0x1a,0x49,0xdd,0x2d,0x1d, - 0x90,0x1c,0xb6,0xf9,0x4d,0xe9,0xa7,0x72,0x84,0x0c,0x08,0x01,0x73,0x2e,0x9a,0xf1,0x05,0x2d,0xa0,0x7b, - 0x57,0x6e,0xfc,0xc8,0x2e,0xab,0x13,0x60,0xac,0x68,0xb8,0x44,0x03,0x1d,0xaa,0x05,0xfd,0x9b,0x44,0x95, - 0xab,0x16,0x75,0x11,0x41,0x02,0xa0,0xce,0xe8,0x67,0x32,0x52,0x27,0x56,0x75,0x9b,0x3e,0x9d,0x46,0x29, - 0x3e,0x5d,0xd2,0xcf,0xc9,0x48,0xed,0x46,0x3b,0xcb,0xfe,0xf4,0x3e,0x9a,0x5a,0xdc,0x8f,0x4e,0xe8,0x6c, - 0xf2,0x2f,0x82,0x01,0x8a,0x77,0xbb,0xd3,0x51,0x08,0xaf,0x65,0x03,0xd4,0xb2,0xbf,0x3f,0x19,0x85,0xdf, - 0xd3,0x47,0x75,0x4a,0x9b,0xfa,0x3d,0x7e,0x41,0x9c,0x99,0x8c,0x5c,0x6b,0xb7,0xbb,0x18,0x05,0xc8,0x74, - 0xa6,0x2e,0x39,0x13,0xfd,0x22,0x93,0x29,0xcf,0x6d,0xee,0xef,0x9f,0x48,0xa6,0x0b,0x9d,0xe9,0x42,0x32, - 0xed,0x6e,0xd1,0x01,0x99,0xba,0xd0,0xe7,0xae,0x23,0x8a,0xf3,0xcf,0x04,0x85,0x54,0x2d,0xd7,0x2a,0x3d, - 0xd3,0xdd,0x3b,0x93,0xee,0xb5,0x55,0xca,0x15,0x48,0xd5,0x4e,0xd7,0xaa,0xfe,0xfb,0xa5,0x38,0xbb,0x18, - 0x47,0xbf,0x96,0xb4,0x3e,0x53,0x35,0x81,0xa9,0xbc,0x0f,0x82,0xfe,0x94,0x63,0x98,0x0e,0xc6,0x43,0x7e, - 0x18,0xb5,0x38,0xff,0xa8,0xe2,0x12,0x4e,0x89,0x16,0x4e,0x39,0x0a,0xa1,0x45,0x8f,0xf9,0xc8,0xf0,0x08, - 0x7b,0x7b,0xdf,0x43,0xa8,0x15,0x5b,0x0a,0x3e,0x27,0x1a,0xf7,0x94,0xaa,0x38,0x44,0x6b,0x83,0x98,0x9e, - 0x73,0xa5,0xc7,0xcf,0xe3,0x9a,0x53,0x3f,0x57,0x23,0x3d,0xb8,0xb9,0x0c,0x0e,0x29,0xc6,0xa3,0x6d,0xdb, - 0x40,0xe7,0xce,0x40,0x83,0xb0,0x5e,0x67,0x35,0xde,0xfe,0xf4,0xc1,0x04,0x4a,0xf4,0x34,0x44,0x02,0x88, - 0xee,0xd1,0x28,0x90,0xe8,0x8c,0xf2,0xa2,0x37,0xfd,0x42,0x9d,0x60,0xe3,0x2f,0x1e,0x9c,0xec,0xed,0x9d, - 0xfb,0x87,0x4a,0xa6,0x65,0xe3,0x8f,0x39,0x5c,0x36,0x80,0x32,0x64,0xa0,0x05,0x85,0x57,0x91,0x50,0x75, - 0x71,0x28,0x65,0xc6,0x39,0x3d,0xa3,0x5f,0x26,0xbb,0x26,0x18,0x6c,0x05,0x96,0x20,0x8a,0x01,0xfe,0x03, - 0xd4,0xbf,0xa0,0x6f,0x8b,0x2a,0x0c,0x62,0x78,0x63,0xb5,0xa1,0x7c,0xdf,0xe1,0xa8,0x35,0x7c,0xb6,0xb7, - 0xe4,0xd3,0xbb,0x4c,0x5d,0x8f,0x19,0xf2,0x65,0x59,0x47,0x0d,0x1b,0xe7,0xa8,0x3a,0x11,0x2e,0x84,0xd1, - 0x2b,0x18,0x4f,0x94,0xb2,0xc1,0xa8,0x03,0xf3,0xd4,0x46,0x59,0x17,0x75,0xb2,0x47,0x18,0xa5,0xc2,0xe5, - 0x8f,0x0a,0x02,0x8e,0x0a,0xfb,0xeb,0x95,0xf4,0x0b,0xf6,0xa7,0x6a,0x3b,0x70,0xda,0x60,0x3c,0xd5,0x18, - 0x31,0x9b,0xe2,0x33,0xb5,0xd2,0xee,0x3e,0x08,0x17,0x14,0xf5,0x68,0x43,0x51,0xbe,0x5e,0x23,0xba,0x3b, - 0x90,0x9e,0x2a,0x84,0xb4,0x57,0x82,0x90,0x0d,0xdf,0x22,0x07,0x97,0x8b,0xf7,0x2d,0x54,0xb6,0x1d,0x13, - 0x50,0xaf,0x26,0x5c,0xcf,0x80,0xbc,0xd2,0x47,0x3d,0x4d,0x5d,0x3b,0x03,0x5b,0x88,0x25,0x21,0x25,0xb6, - 0x60,0xed,0xc0,0xe1,0x5f,0x31,0xaf,0xb6,0xda,0x71,0xa0,0x09,0x82,0x69,0x10,0x30,0x27,0x3e,0x8b,0x97, - 0x4c,0x88,0x83,0xea,0x5e,0xfa,0x9c,0xc8,0xad,0xda,0x06,0x4d,0xdc,0x38,0xa7,0x07,0x3a,0x2a,0x8a,0x54, - 0x15,0x33,0xe5,0x57,0x25,0xda,0x20,0x1c,0x7c,0x70,0x98,0x75,0x61,0xd5,0x71,0x70,0x91,0xd3,0xb4,0x58, - 0x96,0xdc,0x22,0xa1,0x99,0xc3,0xfe,0xc5,0xfd,0xa9,0x59,0xab,0x0b,0xe3,0xe0,0x6e,0xb6,0x5e,0xef,0x9c, - 0x12,0xbf,0x38,0x1d,0x5e,0x8c,0x34,0x67,0x0a,0xb3,0x74,0xcd,0xca,0xce,0xa2,0x59,0xed,0xfe,0x00,0x25, - 0x26,0xeb,0xf5,0xac,0xde,0x30,0x71,0x31,0xd8,0x48,0x69,0x60,0x66,0x53,0xd6,0xf5,0xdc,0x75,0xb5,0x72, - 0x06,0x69,0xde,0x0a,0x23,0xde,0x79,0x48,0xb8,0x38,0xb8,0x3a,0x47,0x27,0x17,0x72,0xb6,0x48,0x63,0x3b, - 0xe7,0x58,0x60,0xd6,0x2c,0x81,0x9b,0x38,0xfd,0x68,0x9c,0x4d,0x0a,0x40,0xee,0x70,0x78,0x2f,0xde,0x18, - 0x9a,0xc0,0xd2,0xef,0xe6,0xda,0x6b,0x47,0x82,0xc5,0x5c,0xaa,0x5d,0xf5,0x0e,0x42,0xea,0xb7,0x88,0x34, - 0x9f,0x4f,0x56,0xf3,0x64,0xa9,0x1e,0xd1,0x33,0x68,0x9c,0x17,0x5a,0xfb,0xeb,0x92,0xe6,0xe4,0xf2,0xfe, - 0x24,0xad,0x00,0xf8,0x92,0xc9,0xca,0x77,0xc3,0x49,0x3a,0xbc,0x1c,0xc1,0xda,0x8b,0xce,0x95,0xc3,0xfe, - 0xee,0xfd,0xb7,0x55,0x96,0x5d,0x22,0x2f,0xde,0x0e,0x77,0x47,0x3a,0x0f,0xad,0x94,0xc9,0x2e,0xfc,0x85, - 0xfb,0x8d,0x0f,0xe4,0x87,0xac,0x37,0x82,0x7b,0x35,0xd1,0x9a,0xd1,0xa1,0xc4,0x1e,0x39,0xcf,0xaf,0x58, - 0xd8,0x4a,0xa8,0xb8,0xc5,0x49,0xa1,0x3e,0x2d,0x15,0x1d,0x92,0xda,0xc8,0x82,0x4f,0x6f,0xf1,0x12,0x83, - 0xd0,0x21,0x30,0xce,0x06,0x74,0xc1,0x9c,0x73,0xce,0xfe,0x43,0x7c,0x20,0x3a,0xe4,0xaf,0xe8,0x89,0x49, - 0x84,0xcd,0x81,0xc1,0xbf,0x66,0xdf,0x4f,0xbc,0x90,0x8c,0xbd,0xb1,0x00,0x81,0xd0,0x5c,0x0b,0xa5,0x83, - 0xa2,0xa3,0x9d,0x09,0xb7,0x26,0xf1,0xd4,0x4c,0x39,0x28,0xb9,0x13,0x0c,0x57,0xfc,0xc4,0x2b,0xd6,0xcf, - 0x32,0xd4,0x5d,0x2d,0x1d,0x16,0xdc,0xf0,0xf1,0xe9,0xe7,0x94,0xe5,0x54,0xea,0xb7,0x1b,0xe5,0x84,0xbb, - 0x88,0xef,0x45,0xff,0x45,0x04,0x65,0x7e,0x7d,0x1d,0xf3,0xc8,0x5c,0x42,0xf9,0x2f,0x1a,0x51,0x68,0xe4, - 0x9a,0x46,0x4b,0x0e,0xd5,0x0b,0xb1,0x7f,0x9b,0x09,0x31,0x48,0xc7,0x5f,0x4d,0x50,0x36,0xe3,0x01,0xca, - 0x3c,0xcc,0x7a,0x27,0x22,0xb0,0x3d,0x95,0xf3,0xe0,0xac,0x71,0x0e,0xcf,0xa0,0xfa,0x4b,0x84,0x8b,0xc1, - 0x7f,0x06,0x60,0x2f,0x23,0x93,0x46,0x30,0x00,0x8a,0xa9,0x7f,0xd9,0xaf,0xce,0xc5,0xb7,0x04,0x16,0x6f, - 0xdb,0x78,0x97,0xb7,0x0e,0xef,0xf2,0x76,0xe4,0x5f,0x72,0x4f,0x2e,0xc5,0xf1,0x3d,0x77,0x75,0xb7,0xaa, - 0xe4,0x21,0x55,0xf2,0xb0,0x85,0xf3,0x7d,0x58,0x71,0xbe,0x0f,0x99,0xf3,0xbd,0x14,0x48,0x7a,0x15,0x5d, - 0x6e,0xe1,0x56,0x54,0xff,0xaa,0xc7,0x3a,0xc2,0x95,0xc9,0xc3,0xeb,0xe8,0xa8,0xff,0xfa,0xfe,0x2b,0x62, - 0x11,0xad,0xbd,0xca,0x6b,0xb8,0x7f,0x46,0xc2,0xf0,0xf5,0xc8,0xd0,0xde,0xbf,0x94,0xe8,0xdf,0x25,0xd5, - 0xaa,0x43,0xdd,0x26,0xa0,0x92,0x70,0x6e,0x81,0xe5,0x3b,0x54,0x87,0xfa,0xc0,0x22,0xfe,0x07,0x2e,0x81, - 0x8b,0xca,0x5a,0x4c,0xd6,0x0f,0x61,0x65,0x30,0x26,0x5e,0x8a,0x17,0x20,0xfd,0x6d,0x3e,0xff,0x4a,0x6f, - 0xb4,0x10,0x6a,0x1f,0xb2,0xff,0xc2,0xe1,0x59,0xaa,0xde,0xa7,0x6a,0x37,0x55,0xef,0x52,0xf5,0x26,0x55, - 0x3f,0x66,0x03,0x23,0xcd,0x7f,0x9a,0x28,0x23,0x58,0xc3,0xb3,0xc0,0x53,0xe3,0xfa,0x6f,0x47,0xe2,0x7a, - 0x89,0x95,0xc5,0x2c,0xbf,0x1c,0xbc,0x48,0x24,0xba,0x19,0x0c,0x94,0x36,0xe1,0xd5,0x66,0x64,0x1c,0x2b, - 0x9f,0xa7,0xf0,0x62,0xfe,0x3c,0xdb,0xdb,0xb3,0x97,0x1c,0xdb,0xe1,0x45,0xe4,0x7e,0x9c,0x6a,0x1f,0xcf, - 0xe2,0xec,0x2c,0xf1,0x5c,0xf3,0x54,0xd1,0xc4,0xaf,0x0a,0xb3,0x94,0x5e,0x0b,0xd7,0xfa,0xac,0xea,0x7b, - 0xa1,0xa3,0x22,0xfe,0x8c,0x3e,0x68,0x7d,0x33,0xe3,0x3a,0xfd,0xfb,0x14,0x4e,0xd5,0xb0,0x3a,0xc9,0xa4, - 0x71,0x21,0x0a,0x21,0x92,0xb9,0x99,0xb7,0x61,0x1d,0x85,0x27,0xd9,0xdb,0xdb,0xe1,0x5f,0x62,0xc4,0xb4, - 0x9a,0xe5,0xe0,0x19,0x1c,0x1d,0xd9,0xc3,0xbc,0xd6,0xc3,0xef,0x1d,0x96,0x42,0x8c,0xba,0x26,0x5a,0x94, - 0xb4,0x09,0xc2,0x1f,0x13,0x79,0x76,0xbd,0x3d,0xd9,0x5a,0x09,0x5f,0x20,0xf0,0x9a,0xb1,0x3f,0x31,0x4a, - 0x9f,0x3f,0x25,0x90,0x81,0x79,0x46,0x73,0xc4,0xf6,0x8e,0xce,0xdd,0xd4,0x97,0xd8,0x71,0x41,0xa0,0x3d, - 0x79,0x3d,0x37,0x91,0x63,0xa3,0xa4,0x8a,0x22,0xab,0x9c,0x67,0xf6,0xeb,0xc8,0xaa,0xc5,0xdb,0xf3,0x6e, - 0xa6,0xfb,0x79,0x12,0xa8,0x6f,0xb2,0xeb,0x32,0x61,0x6c,0x22,0x95,0x25,0x14,0x09,0x2f,0xfd,0x2f,0x59, - 0x47,0xfe,0xa3,0x39,0xf9,0xe6,0xe3,0x39,0x74,0xf9,0x9f,0xb3,0x2f,0x70,0xbd,0x48,0xc0,0x43,0xb8,0x13, - 0x6e,0xce,0xd7,0xd6,0x5d,0x35,0x07,0x6d,0xaf,0xaf,0x4d,0x70,0xb5,0x35,0x97,0x7d,0x73,0x67,0x69,0x67, - 0x54,0xb4,0xa9,0x6f,0x9e,0xdf,0x7e,0xda,0x8c,0x01,0x58,0xa9,0x46,0xec,0x40,0xb5,0x9c,0x9d,0x58,0x6e, - 0x64,0x96,0x8d,0x7a,0xc5,0x20,0x11,0xf3,0xe9,0x6b,0xc3,0x07,0x3e,0x46,0x07,0x01,0xf0,0xa1,0xce,0xc9, - 0x97,0xe3,0x44,0xe3,0xfc,0x8a,0x97,0xbd,0x3d,0xfa,0xae,0x3f,0x00,0xd3,0x1b,0x88,0xd5,0xab,0xc0,0x9e, - 0x1a,0x7f,0x25,0x78,0x95,0xc0,0x9e,0xdf,0xa7,0x0a,0x3b,0x2b,0x14,0xb5,0xd8,0xe6,0xfc,0x68,0x5f,0x02, - 0xa6,0x32,0xc4,0x02,0xfc,0x06,0xe2,0x8b,0x40,0xab,0x96,0x88,0x0b,0x15,0x47,0xa0,0xce,0x01,0xea,0x4f, - 0x68,0x66,0x8a,0xf4,0x0c,0x9e,0x60,0x1f,0xa7,0x4b,0x28,0x47,0x46,0x5e,0x46,0xeb,0xa0,0x75,0xee,0xf8, - 0x4e,0x75,0x22,0x1f,0x10,0x2e,0xbe,0x91,0x04,0xe7,0x0f,0xe9,0xc0,0xcf,0xaa,0x6d,0x8f,0x23,0xee,0x35, - 0xf8,0x02,0xd7,0x7a,0xa8,0x5e,0x28,0xca,0x37,0xf0,0xce,0xdf,0x48,0x2c,0x06,0x79,0x28,0x2d,0xb7,0xea, - 0x17,0x6c,0x8d,0xb0,0x5f,0x34,0x66,0xd2,0xbf,0x71,0xc0,0x5b,0x1d,0x2d,0x06,0x37,0x75,0xb5,0x6d,0x82, - 0x68,0x2d,0x5f,0xdc,0x50,0x4c,0x0f,0xa4,0x75,0x98,0x6d,0x55,0xea,0x91,0x43,0xb5,0x22,0x6b,0x59,0x5c, - 0xcd,0x10,0xf0,0x6e,0xbc,0xb9,0x7f,0x0c,0x35,0x1f,0x08,0x6a,0xd8,0x30,0x4c,0x5b,0x77,0x41,0xd0,0x1c, - 0x17,0xe1,0x37,0x79,0x0e,0x67,0xb8,0x6a,0xbc,0x5c,0xda,0x67,0x00,0x97,0xc9,0x06,0x44,0x62,0x9e,0x9d, - 0xdb,0x59,0x9d,0xe2,0xdc,0xad,0xba,0x79,0xcc,0xbd,0xaa,0x9b,0xab,0x91,0xb6,0x75,0x71,0xeb,0xe6,0x6d, - 0x49,0x97,0xee,0xb6,0x24,0x5d,0x9b,0xb7,0xd1,0xe0,0x64,0x55,0xf0,0xbd,0x60,0x38,0x14,0xbb,0x36,0xa5, - 0xd3,0x45,0xb1,0x63,0xb4,0x51,0xbf,0x99,0x09,0xaa,0x5d,0xd6,0x8a,0xb5,0xdc,0x87,0xb4,0x66,0x42,0xd7, - 0xb4,0x05,0x6b,0x1a,0x8f,0xb7,0xd8,0x84,0x69,0xcf,0x59,0x2c,0x58,0x95,0x5b,0xfa,0xf6,0xe0,0x7e,0x8c, - 0xc2,0xff,0x80,0x84,0x90,0xc0,0xd6,0x8d,0xd9,0xaa,0x4d,0xc4,0xb0,0x36,0x50,0x3b,0xd0,0xf1,0x5b,0xdd, - 0x3a,0x44,0xf0,0x1f,0x19,0x8e,0xb0,0x1f,0x54,0xee,0x2b,0x9d,0x4b,0x33,0x4b,0x77,0xbb,0xb6,0xa3,0x95, - 0x40,0x40,0xdb,0x8f,0xfd,0x92,0xc0,0x33,0x0f,0x7b,0x1b,0xa8,0x3e,0x19,0x2f,0xab,0x4c,0xa1,0xd1,0xdc, - 0x99,0x2f,0xbf,0x02,0x45,0xe5,0x26,0x02,0xac,0x77,0x72,0x52,0x35,0xb7,0xef,0x75,0xad,0x5b,0xb9,0xae, - 0xb7,0xef,0xf5,0x63,0x16,0xc3,0x89,0x92,0x2d,0x3f,0x0f,0x62,0x27,0xc0,0xe9,0xb2,0x8b,0x03,0x02,0x8f, - 0x5e,0xb8,0xec,0xb2,0x2c,0x37,0x2c,0xfc,0x58,0xe4,0x1f,0xb8,0x80,0xd6,0x77,0x1f,0x92,0x62,0x0d,0x8a, - 0x96,0xc1,0x80,0x53,0xb8,0x0c,0x7e,0xf9,0xaf,0x84,0xcd,0x88,0x7c,0xb9,0x40,0x84,0x7d,0x65,0x4f,0x3b, - 0x9a,0xa1,0xa9,0xad,0xba,0x18,0x7d,0x9f,0x68,0xcb,0xa2,0x55,0xcd,0xd8,0x7d,0x8e,0x49,0x58,0x09,0x69, - 0x2a,0xb3,0x58,0x85,0x9d,0xc7,0x75,0x6a,0x23,0xe9,0x3a,0x84,0xef,0x01,0xb7,0x08,0xf2,0x04,0x74,0xf1, - 0x71,0x11,0xd7,0xb0,0x4e,0xa0,0x88,0x30,0x99,0x6b,0x1c,0xe5,0xcf,0xa2,0x58,0x9d,0x47,0x73,0x75,0x8e, - 0x21,0x10,0x46,0x9b,0xe1,0x77,0xbd,0x3e,0xc7,0x5c,0xf0,0xab,0xd0,0x77,0x3b,0x7f,0xb0,0x34,0xc1,0xdf, - 0x99,0xb7,0xf9,0x7c,0x6d,0x4b,0x35,0x2e,0x3d,0x2b,0x16,0x5c,0x00,0x6b,0x1a,0xcd,0x9b,0x40,0x22,0x06, - 0x23,0x63,0x1e,0xbb,0x97,0xaf,0xca,0xfd,0x94,0x35,0xf7,0xd3,0xba,0xf3,0x06,0x0d,0x05,0xc0,0x9b,0xcf, - 0xfc,0xa9,0xf2,0xe2,0x29,0x41,0xf5,0x8f,0xa2,0x5e,0xe1,0xa0,0xc2,0xc4,0xc9,0x89,0x78,0xe9,0x75,0x3f, - 0x96,0x9b,0x40,0x19,0xf0,0x41,0x63,0x69,0xb6,0x9f,0x8b,0x29,0x80,0x08,0x3c,0xfe,0xf0,0x2b,0x61,0xd5, - 0x4a,0x04,0xa6,0xaa,0xe6,0x51,0x78,0x01,0x1f,0xec,0xcf,0x20,0x8d,0xe1,0xe6,0x9f,0x88,0xc6,0xc8,0x24, - 0x50,0x9c,0x26,0x18,0x0b,0xa3,0x87,0x41,0x9a,0x4e,0x9f,0x42,0x23,0x8c,0xd0,0x62,0xb3,0xab,0xb4,0x64, - 0x8b,0xa8,0xdc,0x54,0x64,0x73,0x2e,0x4c,0x8b,0x3a,0x27,0xf4,0xf9,0xef,0x14,0x93,0x02,0x78,0xd4,0x78, - 0x83,0x2f,0xf4,0x1d,0x04,0x03,0x0c,0x1b,0xf4,0xc5,0xa4,0xaf,0xf3,0x6f,0xe6,0x62,0xc5,0x18,0xf3,0x07, - 0xc2,0x2b,0x95,0x42,0x45,0xf8,0x5b,0xaa,0xaa,0xb7,0xef,0xa0,0x1c,0x1c,0x5e,0x09,0x92,0xf9,0x77,0xda, - 0x86,0x58,0x1a,0x96,0xed,0x8c,0x1f,0x5c,0x23,0x11,0x59,0x3a,0x09,0x94,0xbb,0x88,0x33,0x04,0xc1,0x6d, - 0x77,0x87,0xc4,0x85,0x16,0x45,0x72,0x61,0x1d,0x17,0x8a,0x91,0xa8,0x11,0x3e,0xa7,0x6d,0x68,0x8b,0x3d, - 0xaa,0xe6,0xf5,0x9c,0xe0,0xb3,0xe3,0x6a,0xd7,0x2c,0x89,0x2d,0x5a,0xde,0xb7,0x5c,0xf9,0xd2,0x88,0x1e, - 0xc7,0x51,0x3a,0x5c,0x8e,0xfa,0x63,0x89,0x1f,0x8d,0x5e,0xec,0x44,0x63,0x11,0xbe,0x83,0x33,0xd0,0x3b, - 0x79,0x5c,0xdf,0xc9,0x84,0x3c,0x2e,0x70,0x23,0xe2,0x01,0xb6,0x73,0x6b,0x2d,0x9a,0x0d,0x39,0xdf,0x28, - 0x1a,0x2b,0x2a,0xa1,0xb7,0xf3,0xb8,0x7d,0x3b,0xc7,0x01,0xe4,0x1e,0x8e,0x37,0xf1,0x15,0x3a,0x3c,0xc7, - 0x9f,0x29,0x75,0x75,0x5a,0x49,0xc0,0xa6,0xa6,0xab,0x8b,0xa8,0x18,0x4e,0x47,0xfd,0xc5,0xd6,0x3e,0x88, - 0x95,0x4e,0x23,0x9a,0x35,0x5a,0x30,0xb9,0x7f,0x96,0x94,0xdf,0xe4,0x2b,0x16,0xb3,0x3d,0x9a,0xa7,0x04, - 0x60,0x3f,0xd3,0x5c,0xc3,0x0f,0xfb,0x70,0xc1,0x5d,0x1c,0xac,0xa4,0xd7,0x8b,0x20,0x9c,0x9b,0xa7,0x8d, - 0xb6,0xc0,0x5d,0x10,0x76,0xf6,0xc5,0x17,0x00,0xb1,0xfb,0x3a,0x3a,0x19,0xf3,0x4e,0x93,0x68,0x6e,0x5d, - 0x95,0x98,0x1c,0x39,0x9d,0xfe,0xae,0x77,0x8e,0x2d,0xfb,0xeb,0x76,0x4f,0x03,0xb6,0x2d,0x68,0x71,0x00, - 0xbb,0xd4,0x1c,0x75,0x98,0x8f,0x86,0xa6,0x9a,0x5c,0x63,0xd1,0xec,0x02,0x8a,0x4a,0xcc,0xd9,0xa3,0x41, - 0xde,0xfa,0xe7,0x67,0x03,0x2f,0xef,0x02,0x11,0x9f,0xf7,0x59,0xd9,0xb2,0x6f,0x4c,0x2c,0xb4,0x25,0xd3, - 0x2c,0x5e,0x3e,0xa7,0x74,0xbf,0xd4,0x06,0xfa,0x2a,0x11,0x72,0xd9,0xa8,0x18,0x7e,0x60,0x36,0xc1,0xbc, - 0xfd,0x56,0x7b,0xfb,0xb7,0x71,0xf8,0x0f,0xe7,0x1d,0x73,0x42,0x95,0x96,0xc1,0x83,0x6e,0x7e,0x2f,0x9f, - 0x4e,0x97,0x49,0xf9,0x7d,0x92,0x9e,0xcd,0x4a,0xa7,0x54,0x53,0x69,0x51,0xd6,0x8f,0xe7,0xb8,0x72,0x21, - 0x86,0x9e,0xc0,0xb6,0x92,0x69,0xa7,0xfe,0x2e,0x88,0x37,0x38,0x3f,0xeb,0x59,0xbd,0x9f,0xa8,0xe8,0x39, - 0x0a,0x52,0x3a,0xa5,0x02,0x8c,0xc7,0x9a,0x98,0xe0,0xa0,0xd3,0xdb,0x5c,0xce,0x4f,0x29,0x3c,0x81,0xf2, - 0x74,0x55,0x11,0x07,0x3b,0x10,0xf9,0x5c,0x11,0x7d,0xbc,0x73,0x60,0x9b,0xd9,0xd5,0x81,0x3b,0x25,0x6a, - 0x90,0x89,0xd7,0x15,0xb0,0x17,0x5d,0x01,0x8c,0xad,0x8a,0x59,0xe7,0xc1,0xd4,0xcd,0x70,0xf2,0x4e,0xba, - 0xcf,0x66,0xea,0x60,0x9c,0xb4,0x8b,0xb6,0xf0,0x4a,0x4f,0x7e,0x83,0x2f,0xc7,0xa1,0xfe,0x34,0xb5,0x22, - 0xc1,0xea,0x54,0xd7,0xd9,0xeb,0x48,0x5e,0x27,0x1a,0xa3,0xd4,0xde,0x18,0x17,0x66,0x2c,0xb5,0x09,0x68, - 0xad,0x9d,0x93,0x9e,0x01,0x03,0x27,0x63,0x5b,0x6a,0xeb,0xea,0x9c,0x24,0xa2,0x0b,0x15,0xa8,0xf7,0x7a, - 0x01,0xb2,0x56,0xaa,0xd9,0x3a,0xc5,0xa8,0x29,0x47,0x64,0x86,0xb3,0x7b,0x94,0xf8,0x59,0xcd,0x21,0x11, - 0x67,0xad,0x69,0x5c,0x19,0x38,0xd2,0x83,0x89,0x58,0x2c,0x66,0x57,0x76,0x03,0x2b,0xf1,0x27,0x7c,0x61, - 0x3f,0x4d,0xcf,0x7a,0x4e,0x64,0xdc,0xe8,0xcf,0x42,0x55,0x1f,0x6a,0x31,0x79,0xa3,0x65,0xda,0xfa,0x09, - 0x42,0xb5,0xe8,0x77,0xb7,0x58,0x23,0x26,0x6f,0xf4,0x73,0x59,0x2b,0x58,0x0f,0xe2,0xbb,0x15,0x23,0xe5, - 0xc7,0x8a,0x62,0xc3,0x4a,0x2d,0x61,0xca,0x50,0x5f,0xbb,0xa8,0x19,0xde,0x56,0xa3,0x5a,0xa8,0xe8,0x9b, - 0xb5,0xe4,0x17,0x6d,0x7d,0x7c,0x93,0x25,0x02,0x5b,0x53,0x6b,0x6c,0xbc,0xef,0xc1,0x54,0x7b,0xc0,0xc5, - 0xd9,0x81,0x79,0x65,0xf1,0x6b,0x95,0xfd,0x20,0xd9,0xae,0x0f,0x02,0xbe,0x90,0xaf,0xcd,0x6a,0x8c,0x24, - 0xa4,0xce,0x83,0xed,0xd2,0x7a,0x4b,0x24,0x6e,0xc0,0xa6,0x8d,0xba,0x80,0x61,0xa5,0x75,0xa1,0x68,0xa9, - 0x2e,0x62,0x86,0x83,0xfa,0x37,0xc7,0x88,0xfd,0x87,0x94,0xad,0x26,0x1d,0xd7,0x25,0x06,0x61,0x42,0xa9, - 0xf0,0x97,0x34,0x3c,0xab,0x7f,0x16,0x57,0x74,0xed,0x91,0xb2,0xb6,0x15,0xe5,0xe1,0xbd,0x27,0x71,0x7d, - 0x83,0xcb,0xe1,0xcd,0x3c,0x59,0x23,0x2d,0xca,0x0a,0xf1,0xfd,0x52,0x0f,0x83,0x5d,0x99,0xb8,0x1b,0x0f, - 0x83,0x35,0x0e,0x52,0x7b,0x72,0xaa,0x9c,0x8e,0xf8,0x62,0xba,0x71,0x66,0xf5,0x87,0x14,0x22,0xfc,0x2a, - 0x6d,0xb1,0xe6,0x38,0x85,0xd9,0xf6,0xc0,0x5d,0xd6,0x3d,0x70,0x1b,0x87,0xc2,0x50,0x83,0xa2,0xa9,0xf8, - 0x06,0xcb,0x6f,0x9c,0xdf,0x43,0x9f,0xff,0x49,0xe5,0x91,0xc0,0x77,0xfa,0xf4,0x06,0x4a,0x21,0x12,0x06, - 0x7b,0x6f,0xef,0x59,0x86,0x7f,0x3d,0xb8,0xd1,0x02,0xdd,0x06,0x55,0xe6,0x27,0xb0,0xcb,0x38,0x94,0x8d, - 0xf9,0x2c,0x55,0xbf,0x43,0x99,0xf2,0xea,0xf8,0xca,0xf7,0x07,0x61,0x6f,0x7d,0x9c,0x05,0xdd,0x41,0x70, - 0xbc,0x39,0xde,0x1c,0x9c,0xa9,0xef,0xa0,0xfd,0xbe,0xdf,0xfb,0xa2,0x3b,0xf8,0x6b,0xf7,0x6a,0xe3,0x07, - 0xeb,0xe1,0xf1,0xe8,0xf8,0xe0,0xf8,0x78,0x44,0xdf,0xfe,0x6c,0x57,0x61,0xe7,0x23,0xc4,0x68,0x6f,0x7f, - 0x97,0x2a,0xef,0xf8,0x78,0x77,0xcf,0x63,0xf3,0x65,0x28,0x9a,0x6f,0x7f,0x71,0x67,0x57,0xfc,0xa5,0xf8, - 0x49,0xd7,0xd3,0x9d,0x91,0xde,0x78,0xdd,0x4c,0x79,0x67,0x90,0x04,0xaa,0x3f,0x60,0xe6,0xc7,0xe2,0x7d, - 0xf8,0x34,0x0d,0x87,0x9e,0x23,0xf7,0xf7,0x46,0xca,0xa2,0xec,0x86,0x99,0x07,0x40,0x04,0xae,0x15,0x8b, - 0x4c,0xa3,0xc8,0x54,0xe4,0x35,0x62,0x70,0xdb,0x17,0xc1,0x96,0x53,0x55,0xf4,0xc3,0xab,0x17,0x3f,0x51, - 0x02,0x00,0x1b,0x31,0x1c,0x33,0xe3,0xc6,0x3c,0x2a,0x9c,0x82,0x70,0x94,0x0b,0x51,0x0a,0x94,0x62,0x90, - 0xf0,0x4d,0xca,0x04,0x47,0x54,0x60,0xf9,0x93,0x0c,0xee,0x59,0x5b,0xb8,0x4f,0xcf,0x73,0x54,0xfb,0xab, - 0x26,0x71,0x59,0xd6,0x8d,0xdc,0xf1,0x84,0x5e,0xb7,0x96,0xa3,0xeb,0x29,0x58,0x69,0xd6,0xda,0xd2,0xa5, - 0xc6,0x36,0xbf,0xfb,0x51,0x0a,0x24,0x44,0x17,0xff,0x47,0xfb,0xb4,0xf1,0x15,0xc9,0xe7,0x4f,0x1b,0xa3, - 0xff,0xc6,0xb4,0x71,0x55,0xcd,0x69,0x7b,0x9b,0x62,0xe6,0xea,0x53,0x27,0x85,0x9d,0xa9,0xe3,0x84,0xbf, - 0x3b,0x75,0xdc,0x6c,0x6d,0xea,0x38,0xc5,0x99,0x3a,0x7e,0x37,0x53,0xe7,0xb6,0x65,0x4b,0x21,0xbf,0x2f, - 0x05,0xaa,0xaf,0x5d,0x58,0x1d,0xc8,0xe4,0x95,0x39,0x5f,0x36,0xc1,0xf2,0x8f,0xad,0x40,0x61,0x4e,0x99, - 0xcf,0xb5,0x55,0xa3,0x98,0xee,0x69,0x6b,0x4c,0xb1,0x30,0x4c,0x97,0x8c,0x99,0x71,0xf5,0x44,0x43,0x71, - 0xec,0x45,0x6b,0xa6,0x8f,0x62,0x20,0x79,0x79,0x0a,0xb7,0x43,0x49,0x2e,0x36,0xd3,0xda,0xc2,0x11,0xe6, - 0x9f,0x25,0x4c,0x3b,0x8d,0x98,0x73,0xc1,0x26,0x8e,0x30,0x0f,0x64,0x43,0x47,0x31,0x7d,0x2c,0x74,0x4d, - 0xd8,0x5c,0xd2,0xc3,0x56,0x13,0x54,0xe9,0x72,0x65,0x6c,0xc8,0x16,0x93,0xad,0x86,0x95,0x68,0xb6,0x6e, - 0xd9,0xc8,0xb6,0xa8,0xda,0x10,0xd5,0x58,0x52,0x6e,0x59,0xa4,0x6a,0x1b,0x57,0x36,0xb1,0x6c,0xb1,0x70, - 0x45,0x5f,0x8d,0xfd,0xab,0xb4,0x43,0x93,0xc5,0x76,0xb5,0xda,0x06,0x13,0x77,0x19,0xc6,0x78,0x92,0xa7, - 0xa9,0x69,0x8e,0x29,0xd3,0x26,0xe6,0xa9,0x7a,0xf2,0xc4,0x90,0xc2,0x98,0x5a,0x56,0x56,0xa0,0x8d,0x29, - 0x62,0xcb,0x5c,0x9a,0x28,0x9e,0x6b,0xa8,0x01,0xe6,0xd1,0xc1,0x5f,0xc7,0xcb,0x2f,0xfc,0x21,0xfd,0xf5, - 0x6e,0xdd,0x7f,0x70,0x7c,0x10,0x8d,0xba,0x01,0xe1,0x1a,0x24,0x46,0x01,0xfe,0x0e,0x42,0x8f,0x3e,0x7b, - 0xa3,0x2f,0x08,0xed,0xac,0x6f,0xd1,0xe3,0x2d,0x7a,0xbc,0xd5,0x5d,0xeb,0x32,0xd1,0xfd,0x07,0xff,0x49, - 0x45,0x82,0x60,0x70,0xa0,0xd2,0x3c,0xf2,0x86,0xf1,0xfe,0x87,0x87,0xfb,0x7f,0x9e,0x8c,0x86,0xc7,0xc7, - 0x97,0xc7,0xc7,0xfb,0xc7,0xc7,0xbd,0xd1,0x17,0x9e,0xca,0xe9,0x13,0x70,0x98,0xd7,0x4d,0xf3,0x2e,0x61, - 0xba,0x30,0x18,0xc8,0x63,0xe0,0xa9,0x38,0x8f,0x1c,0x64,0xe7,0xfd,0x75,0xdf,0xeb,0xe6,0x39,0x71,0x68, - 0xa6,0x73,0xc7,0x07,0x83,0xe0,0xc1,0x01,0xad,0x4b,0x23,0xdb,0xf1,0xf1,0x01,0x72,0x76,0xbd,0xe1,0x5f, - 0x0f,0x46,0x5f,0x3c,0xa0,0xf1,0xac,0x50,0xe4,0xfe,0xce,0xe3,0x17,0x8f,0x5e,0xff,0xf1,0xf2,0x49,0x07, - 0xe9,0xdd,0x07,0x07,0xa9,0x9a,0x4b,0x3a,0x2c,0x78,0xa6,0xf2,0x78,0x3c,0x3c,0x50,0x8b,0x1c,0x77,0xc7, - 0xde,0x3b,0xcf,0x62,0xe1,0x83,0x77,0x7e,0x8f,0x06,0x72,0xa6,0xea,0x5b,0x9e,0x32,0x7a,0x60,0xee,0x13, - 0x7d,0xf5,0x32,0xcb,0xd5,0x45,0x4e,0xac,0xb4,0x3a,0xcb,0xd5,0xfb,0x5c,0x9d,0xe4,0x04,0x44,0xea,0x32, - 0x57,0xbb,0xb9,0x7a,0x97,0xab,0xb7,0xb9,0x7a,0x94,0xab,0x87,0x0c,0x82,0xda,0x7e,0x57,0x1b,0x46,0x9b, - 0x5b,0x0f,0x3e,0x04,0x5f,0xe5,0xb8,0x39,0x7e,0x4d,0x7f,0xbd,0xbd,0x79,0xd9,0xf7,0x42,0xef,0x3e,0x6d, - 0xca,0xbd,0x33,0x7e,0x7c,0x80,0x47,0xc0,0x27,0xbd,0xdc,0xf2,0x6e,0xd1,0x4b,0x7c,0xbe,0xc0,0x87,0x3d, - 0x7c,0xf8,0xc7,0xd1,0x21,0x9e,0x8f,0x33,0x7e,0xf9,0x9a,0x9f,0x4b,0x6f,0xa3,0x5e,0xd0,0xd8,0xf6,0x68, - 0x92,0x89,0x01,0x3e,0x2b,0xd7,0x28,0xbe,0xa6,0x62,0x41,0x9f,0x06,0xf4,0xa6,0xf5,0xd3,0x9a,0x6a,0x5a, - 0xff,0xe3,0x6b,0xce,0xf1,0x84,0x3b,0x0c,0xcd,0x87,0x7a,0x3f,0x9f,0xe6,0xed,0xa4,0x05,0x9d,0xc1,0x4f, - 0x72,0xf1,0xa1,0x70,0xcc,0x72,0x96,0x04,0x9e,0x8b,0xd4,0x8f,0x98,0xdf,0x7f,0xad,0xff,0xba,0xd8,0xcf, - 0xb3,0xf0,0x40,0x7d,0x8b,0xd7,0x8b,0xfd,0x35,0x92,0xe8,0xf5,0x31,0xbd,0xfa,0xbd,0x2f,0xe8,0x40,0x5d, - 0x76,0xa9,0x37,0x69,0xb6,0xce,0xa7,0xfc,0xdc,0xfb,0x22,0x38,0x50,0x3f,0xd1,0x57,0x45,0x70,0xa5,0xe8, - 0xb8,0x1d,0x11,0x94,0x51,0x0e,0xf7,0x35,0x18,0xec,0x1e,0xa8,0x97,0x0c,0x15,0xfe,0xfa,0x38,0xd8,0xa5, - 0x4e,0x3f,0xcf,0xd9,0x3c,0xec,0x0b,0x7a,0x51,0x3f,0xe3,0x4b,0x88,0x96,0x59,0xf4,0x7c,0xa0,0xbe,0xa1, - 0x84,0xe3,0xde,0xf0,0xaf,0xde,0xa8,0x4b,0x59,0x7f,0xc9,0x5b,0x8d,0x77,0xfc,0x67,0x69,0xf4,0x2c,0xbd, - 0xc1,0x50,0x29,0xa8,0xb4,0x21,0xa2,0x52,0x3d,0x4b,0x5d,0xe3,0x44,0x3a,0x84,0xbf,0x47,0xcb,0xef,0xce, - 0xe7,0xd9,0x32,0xfc,0xe9,0xd5,0xf1,0xa4,0x7b,0xa0,0x7e,0x45,0x0a,0x3f,0x53,0x3f,0x3e,0xe4,0xd1,0xf0, - 0x8f,0x94,0xce,0x1c,0x75,0x45,0xd3,0xfb,0xfa,0x23,0x67,0x8b,0xc8,0x92,0x8c,0x57,0x09,0xb9,0x1a,0x32, - 0x2c,0x0c,0x5f,0xee,0x3f,0x8f,0x17,0x2c,0x92,0x1d,0x7a,0x17,0xfb,0x7c,0x99,0xe2,0x8d,0x20,0x9d,0xc5, - 0x2b,0x0f,0x1a,0x04,0xa1,0x37,0x5a,0xaf,0x29,0x45,0x3f,0x1b,0xd5,0x50,0x7d,0xda,0x70,0x22,0x3c,0x77, - 0xc9,0xc9,0x75,0xb1,0x9f,0x4e,0x65,0x99,0xf3,0x28,0x1d,0x78,0x54,0x17,0xed,0x4a,0x6c,0xca,0x90,0x58, - 0xc4,0x38,0x12,0x9a,0xdc,0x64,0xc5,0x75,0xae,0xb6,0x5b,0xae,0xa5,0xd9,0x3a,0xc6,0xd1,0x1f,0x6c,0x3f, - 0xf2,0x1d,0xb4,0x52,0x54,0x92,0x40,0x96,0xc5,0x0d,0x2a,0x71,0x9d,0x71,0x9a,0xbf,0xa3,0xb6,0x7f,0x47, - 0x3a,0xb1,0x4d,0x63,0xd0,0xb0,0x63,0x42,0xd0,0x9a,0xdc,0xeb,0xa5,0x53,0xc2,0x11,0x5e,0xb7,0xa0,0xf6, - 0x69,0xf8,0xb7,0x4c,0x91,0x5b,0xb4,0xc9,0xd5,0x9f,0x28,0x74,0x95,0xbc,0x5b,0x84,0xc8,0x27,0xf8,0x3b, - 0x1c,0xeb,0xfd,0xb8,0xd2,0xed,0x52,0xa7,0x56,0xe8,0x14,0xcd,0xae,0x74,0x28,0xe1,0x04,0xdd,0x85,0x22, - 0x9e,0xa4,0xb9,0xb4,0xbf,0x42,0xfb,0x55,0x95,0x6e,0xab,0x9c,0x8b,0x9b,0x94,0x36,0x56,0xba,0x8d,0xb9, - 0x6e,0xc3,0xf8,0x2c,0x4a,0xfc,0x79,0xb3,0x29,0x4a,0x90,0x49,0x87,0xf1,0xc3,0xef,0x78,0xaf,0xb5,0x92, - 0xea,0x1a,0xe7,0x70,0x8f,0x3f,0x18,0xf7,0x30,0x75,0x08,0x45,0x07,0x4a,0x47,0xde,0x68,0x02,0xe0,0x84, - 0x1a,0x9c,0xdd,0x48,0xfd,0x46,0x98,0x81,0x8a,0x11,0xc7,0x00,0xb0,0x83,0xfc,0xde,0xdc,0x70,0x7f,0xc8, - 0x55,0xc5,0x4a,0x84,0xfa,0x52,0xed,0xa6,0x6b,0x34,0xf7,0x0e,0x35,0x17,0xd8,0x62,0xef,0x7e,0x06,0xac, - 0xf8,0xee,0x55,0xdc,0x1b,0x5a,0x5e,0xc4,0xca,0xd0,0x13,0xad,0xcc,0xa5,0x74,0x68,0xdd,0xea,0xfe,0x32, - 0x0f,0x76,0xda,0x5b,0xbe,0x85,0x9f,0xdd,0x5d,0xe3,0x81,0xe3,0xd7,0x78,0xde,0x89,0x3a,0x8d,0xc8,0xea, - 0xfa,0x4a,0x41,0x2e,0x31,0x77,0xd9,0x81,0xac,0x8e,0xd8,0x68,0x2f,0x34,0x6d,0xe5,0x79,0x65,0x1e,0xdf, - 0x33,0x95,0x6e,0x02,0xdc,0x81,0xfa,0x6e,0x1e,0xb4,0x7a,0xc1,0x6d,0x79,0x27,0xe2,0xee,0x05,0x2a,0x41, - 0x79,0x67,0x40,0xc5,0x24,0xa1,0x13,0xd2,0xa3,0xbe,0x7a,0x93,0x0a,0x6f,0x75,0x7d,0x8e,0xc1,0x20,0x76, - 0xf4,0x03,0xef,0x24,0xf3,0xe9,0x3b,0xf6,0x00,0xfd,0x40,0x48,0x44,0x20,0xe0,0xf5,0x33,0xf7,0x46,0x13, - 0x0a,0xf4,0x5d,0xaf,0xe3,0x75,0x63,0x58,0x1b,0x7b,0xf5,0xbe,0x9b,0x4b,0x55,0x6a,0xb4,0x3e,0x01,0x61, - 0xfd,0x9d,0xf0,0xa5,0x17,0x58,0xae,0x88,0xcd,0x76,0x2a,0x9b,0xd0,0x0a,0x0f,0xe4,0x84,0x61,0xed,0xf6, - 0xa1,0xf7,0xf8,0xba,0x29,0x77,0x06,0x41,0x4b,0x2c,0xfb,0x5d,0xe6,0x20,0x58,0xaf,0x3d,0xb4,0x83,0x3d, - 0xad,0xf1,0x40,0xb1,0x4a,0xf6,0xab,0x8f,0x78,0xf5,0x68,0x5b,0xcb,0xc7,0x69,0x8c,0x5d,0x5d,0x7d,0xe5, - 0x77,0xaf,0xff,0x1f,0xa5,0xcc,0x80,0x38,0xc1,0x51,0x5e,0xdd,0x94,0xc4,0xeb,0x12,0x55,0x19,0x0c,0x4e, - 0x52,0x79,0x52,0xb4,0x85,0xba,0xcc,0x87,0x7b,0x5d,0x5f,0xea,0x47,0xdf,0x07,0x5e,0xa8,0x73,0xd2,0xf4, - 0x86,0x27,0xff,0xb6,0x99,0x63,0x24,0x05,0x08,0x7f,0xe6,0x4e,0xb3,0x27,0x50,0x14,0x47,0x92,0x6d,0x17, - 0xdc,0x6b,0x6d,0xb2,0x29,0x69,0x1c,0x21,0xb9,0xa7,0xfb,0x35,0xf0,0xa5,0x2e,0x34,0x43,0x1c,0x42,0x8b, - 0x31,0x2c,0x55,0xa7,0x91,0xe2,0xee,0xee,0x05,0x55,0xec,0xcb,0x92,0x4b,0x7f,0xbd,0x30,0x0f,0xb8,0xa1, - 0x34,0xa2,0x91,0x50,0x56,0x7a,0xbc,0xe0,0x4a,0xdc,0x46,0x82,0x2b,0xca,0x70,0xff,0x90,0xd1,0x25,0xf5, - 0x8b,0x3a,0x60,0xc3,0x6d,0x0f,0x29,0x3f,0x21,0x5d,0xd1,0x95,0xa3,0x5c,0x34,0x01,0xb5,0x6c,0xc6,0xfd, - 0x0b,0x7d,0x0a,0x4c,0x99,0x2a,0x9d,0x52,0xbb,0x47,0xd0,0x23,0x90,0xf2,0x16,0xbe,0x76,0xc7,0x0c,0x87, - 0xde,0xa7,0x41,0x8b,0x60,0xba,0xff,0x22,0xa8,0x6c,0x2d,0xb7,0xb3,0x58,0x3e,0x95,0xd9,0x9a,0x34,0x84, - 0x6e,0xa8,0xaf,0x1e,0x77,0x3e,0xff,0x14,0x10,0x07,0x08,0x3a,0x3a,0x21,0xd7,0x62,0x95,0x06,0xbe,0x22, - 0xbc,0xc6,0xfe,0xe3,0x71,0x7a,0x49,0xd4,0x60,0xf8,0xdd,0xd6,0xe3,0x42,0x00,0x24,0xd8,0x71,0xd3,0xb1, - 0xb4,0x23,0xb3,0x82,0x4e,0x41,0xb7,0x4f,0xad,0xa2,0x7c,0x60,0x7a,0x19,0xea,0x0f,0xd0,0x41,0x1b,0x9c, - 0xa6,0xa1,0xee,0x95,0x9a,0x47,0x8d,0x6d,0x2d,0xf3,0xd3,0x07,0xba,0x6e,0xff,0xa6,0xad,0xc6,0xe1,0xb1, - 0x44,0xf2,0xf0,0x04,0xcd,0x79,0x66,0xfa,0x72,0x67,0xc5,0x33,0x32,0x0f,0xfa,0x63,0xca,0x40,0xa7,0x1d, - 0xc0,0xaa,0x56,0x8f,0xd6,0x33,0xb1,0x97,0x94,0x7d,0xaf,0x3b,0x0d,0x94,0xac,0x84,0xb4,0xaf,0x3c,0xb3, - 0x7f,0xf4,0x6c,0xaf,0xd4,0xb4,0x92,0xac,0xf8,0xcb,0xf5,0x1a,0x0a,0xd3,0xb2,0x0e,0xa7,0xf3,0x15,0x9d, - 0x4e,0x5e,0xfd,0xea,0xca,0x33,0xe6,0x82,0xd5,0x42,0xec,0xbc,0xc9,0xea,0x62,0x42,0xc2,0xa4,0xad,0xb8, - 0xdf,0xde,0xc2,0x32,0x8d,0xb8,0xc5,0x18,0x5f,0x88,0x06,0x83,0x74,0xd7,0x21,0x91,0x00,0x3c,0x4b,0x74, - 0x5b,0x72,0x70,0xe7,0x37,0xcc,0xf3,0x7c,0xbc,0x0a,0x4b,0x74,0xb5,0x56,0xb0,0x21,0xc6,0xf2,0x25,0xd1, - 0x53,0x71,0x9b,0x4b,0x0a,0x10,0xb2,0xda,0x01,0x17,0x84,0x95,0xc4,0x15,0x21,0x5f,0x49,0x54,0x7b,0x25, - 0x27,0x0d,0xff,0x2c,0xe0,0x70,0xe7,0x9b,0xe4,0xc7,0x64,0x5a,0xbe,0x58,0x24,0x19,0xb2,0x24,0xb9,0xaa, - 0x4d,0x45,0xb8,0x4c,0x55,0x43,0x16,0x1a,0xfe,0x5c,0x2a,0x47,0x78,0xf0,0x21,0x27,0xfe,0x61,0xb2,0x1a, - 0xb7,0xab,0xdc,0x70,0x2c,0x47,0xde,0xe5,0x26,0x40,0x96,0x09,0xf9,0x17,0xb0,0x47,0x88,0xde,0x9b,0x3c, - 0x25,0x30,0x51,0x98,0x91,0x7f,0xb7,0x93,0xa8,0x1d,0x38,0x7a,0x01,0xb4,0xf3,0x99,0x0d,0xf8,0x87,0x64, - 0x5d,0x99,0x9d,0xa0,0x88,0x77,0x49,0x33,0xed,0xce,0x43,0xd9,0x8b,0x31,0x89,0x2e,0xd4,0xf5,0xcb,0x01, - 0x76,0x6c,0x09,0xcf,0xa8,0x10,0x18,0xfd,0x60,0x59,0xbe,0xe3,0xcb,0xdd,0x93,0x51,0x77,0x7d,0x4c,0x14, - 0x76,0x30,0xfa,0x62,0x70,0x1c,0x80,0xdd,0x8b,0x1e,0xac,0xff,0x32,0x3d,0xa0,0xd7,0x63,0xff,0x40,0x3d, - 0xd3,0x25,0x86,0xc4,0xd6,0x11,0x73,0x77,0xb2,0x3b,0x42,0xd1,0x11,0x38,0x43,0xa2,0xae,0x1b,0x89,0xeb, - 0xe3,0xe1,0x2d,0xa2,0xef,0x6f,0x8d,0xe8,0xc1,0xa3,0x07,0x0f,0x0f,0x44,0x06,0xe3,0xa7,0x99,0x77,0x14, - 0x7c,0x41,0xd5,0x12,0xe5,0xfe,0x3b,0x48,0x9d,0xe5,0x38,0xbc,0xfd,0x15,0x9c,0x19,0x85,0x5f,0x8b,0x9a, - 0x45,0x78,0x74,0x47,0xc9,0x7c,0xdf,0xb9,0xad,0x56,0x8b,0xf0,0xce,0x3f,0x89,0x43,0x9e,0x96,0xe1,0x9d, - 0xaf,0x54,0x81,0xdb,0x93,0xf0,0xce,0xd7,0x0a,0x5e,0xb0,0xc3,0xbb,0x87,0x4a,0x2e,0x30,0xc3,0xe1,0x3f, - 0xd5,0xdd,0x2f,0x89,0x09,0xf9,0x2e,0x6f,0xf3,0xcb,0x05,0x94,0xd3,0x2d,0x09,0x78,0x1c,0x9f,0x59,0x7d, - 0x62,0x9b,0xfe,0xcc,0x21,0x0c,0x22,0x78,0x30,0x9b,0x1a,0x2f,0x00,0x90,0xf8,0x2c,0x16,0x11,0x62,0x1f, - 0x1a,0x15,0xfc,0xcd,0xe6,0xd1,0xef,0x8f,0xe5,0xc2,0x91,0xb3,0x20,0x2e,0x59,0xf8,0x5d,0xee,0xd7,0x71, - 0x43,0x87,0x30,0x4e,0x47,0xa7,0x8c,0x57,0x05,0x16,0xe9,0x35,0x7f,0xf0,0x20,0x5c,0x2d,0xe6,0x5c,0x62, - 0xc7,0x64,0xa0,0x84,0x67,0xd0,0xd0,0x55,0xec,0x3b,0xb4,0xf6,0x8d,0x53,0xe4,0x63,0x3c,0xaf,0x7f,0xa2, - 0x77,0xf9,0x00,0x79,0x41,0xed,0x0b,0x12,0xe4,0x13,0xcf,0x1d,0x3e,0xdd,0x12,0xaf,0x50,0xb7,0x40,0x18, - 0x49,0xae,0xce,0xde,0x9e,0xe9,0xa1,0x7c,0xe3,0x3e,0x1f,0xa2,0xbe,0x74,0x32,0x99,0x27,0x9f,0x55,0xec, - 0x08,0x72,0x05,0x5e,0x9f,0xcf,0x29,0x75,0x1b,0xf0,0xff,0x07,0x2d,0x04,0x71,0x8d,0x4d,0x7f,0x2c,0x70, - 0x03,0x57,0x45,0xb5,0x6b,0x59,0xd8,0x93,0x33,0x59,0x58,0x55,0xc3,0x10,0x84,0x20,0xb6,0x74,0x90,0x4c, - 0x75,0x1c,0x3e,0xaf,0xb2,0x16,0xaa,0x6a,0x3a,0xa5,0x9a,0x32,0xaa,0xe9,0x16,0xe4,0x5f,0xb4,0xdf,0xba, - 0x60,0xbe,0xab,0x5a,0x71,0xf6,0x39,0x94,0x34,0x1c,0x1d,0x55,0xea,0x88,0xb8,0x0c,0x1b,0x08,0xa9,0x13, - 0x6a,0x9a,0x29,0xf8,0x48,0x76,0x8e,0x3e,0xed,0x29,0x9d,0xdf,0x0b,0x74,0x9f,0xc7,0xf3,0x3c,0x7e,0x8b, - 0xb8,0xba,0xff,0x91,0x6f,0x7b,0x3d,0xcd,0xad,0xb3,0x4c,0x7e,0x85,0x24,0x92,0xce,0x44,0xfc,0xac,0xd7, - 0x7f,0xea,0x44,0x2b,0xbc,0x5c,0x46,0x7f,0xc0,0xa0,0xda,0x28,0xa6,0x7b,0xf6,0xc3,0x23,0xe2,0x18,0x8c, - 0x07,0x77,0xdc,0x33,0x7e,0x97,0x64,0x88,0xe0,0x57,0xcf,0xad,0xa5,0x8e,0x36,0x9f,0xe5,0x38,0xa2,0x0b, - 0x9f,0x15,0x2d,0xfe,0xc8,0xd9,0x34,0xda,0xa6,0x07,0x36,0x7a,0x57,0x0d,0x81,0xae,0xd7,0x8f,0xb2,0xbe, - 0xf6,0x8d,0xfc,0xfe,0x34,0xb1,0x81,0x18,0x5b,0x16,0x72,0xc7,0x9a,0xf1,0x6a,0xff,0x98,0xd9,0x38,0x79, - 0x3a,0x89,0xb4,0x87,0xfa,0x66,0xc0,0x41,0xf8,0xe8,0xa6,0x55,0xf4,0x5d,0xa1,0xd0,0xf1,0xf1,0xa9,0xd7, - 0xf5,0x26,0x84,0xc3,0xa7,0x10,0xc0,0x11,0xd0,0x97,0x08,0xa8,0x4b,0x93,0xfc,0x9e,0x1d,0xb3,0x8d,0x21, - 0xfc,0xc3,0xb1,0xa7,0x2e,0xd3,0x72,0xa6,0xe2,0xcb,0x38,0x2d,0x15,0x1b,0x06,0x28,0xf6,0x81,0xae,0x95, - 0xe7,0xf9,0x1a,0x48,0xb1,0xe3,0x52,0xc5,0x71,0xe9,0xd5,0x25,0xa1,0xd5,0x44,0xbd,0x87,0xd4,0x4f,0x23, - 0x1b,0x45,0xcc,0x59,0x0e,0x6f,0x87,0xec,0x89,0x45,0xc9,0x08,0x8c,0x07,0x30,0xeb,0x52,0x9b,0xdd,0x85, - 0x12,0x1b,0x23,0x21,0xea,0xd9,0x09,0x5a,0x9a,0xad,0xe0,0x98,0xf1,0x74,0x75,0x76,0x06,0x31,0xa1,0x9e, - 0x85,0x2a,0xe8,0x8a,0xa7,0xfd,0xd4,0xe0,0x4c,0xd0,0xa7,0x03,0x0d,0x6b,0x8d,0xa1,0x05,0x5d,0x1e,0xa1, - 0x04,0x09,0x6e,0x8c,0x59,0x3a,0x25,0x7e,0x47,0x59,0x81,0xbd,0xb5,0x1e,0x42,0xe9,0x40,0xf8,0xc7,0xc7, - 0x84,0xf2,0xe9,0x4f,0x55,0x6b,0xe3,0x03,0xb5,0xe1,0x3f,0x6a,0x4a,0x7e,0x44,0x14,0x71,0xad,0xd5,0x28, - 0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7,0xd1,0xce,0x51,0xa0,0x4e,0x72,0xbd,0x9e,0x6c,0x20,0x06,0x09,0xb7, - 0x13,0xb1,0xa5,0x9f,0xdd,0x7f,0x9f,0xbb,0xce,0x59,0xde,0xe7,0x6c,0x87,0x8b,0x9b,0x9c,0x59,0x1e,0x25, - 0x15,0x54,0x9f,0xe0,0xcd,0x9c,0xf5,0x00,0x27,0x75,0x8a,0x14,0xe7,0x24,0xe7,0xc4,0x4b,0x24,0x36,0x8e, - 0x6a,0xfe,0x70,0x9e,0x03,0xb4,0x93,0x96,0x8d,0xf0,0x93,0x6c,0x84,0xb3,0x66,0x86,0xa6,0x98,0x86,0xf2, - 0xbc,0xdf,0xca,0x93,0x2f,0xcb,0x66,0xa6,0x0b,0x74,0x81,0x56,0x22,0x3d,0x4f,0x4b,0x04,0x44,0xd4,0x46, - 0xb9,0x44,0x9e,0xb2,0xf2,0xc9,0xce,0x11,0xeb,0x7a,0x22,0xc6,0x39,0x76,0xc7,0x6f,0x33,0xca,0xc5,0xdd, - 0x54,0x98,0x2f,0xd0,0xa9,0x47,0x5b,0x96,0x19,0xcd,0x49,0xa6,0xb7,0x79,0x17,0x37,0x78,0x50,0x6b,0x5d, - 0x9d,0xca,0xdd,0x82,0xef,0x5a,0x4d,0x17,0xc6,0x8f,0x00,0xeb,0xdf,0xa9,0x65,0x15,0xbf,0x5e,0x34,0xf9, - 0xe6,0x81,0xbe,0x7b,0xc3,0x75,0x43,0x81,0xd7,0x92,0x57,0xac,0x71,0x21,0x4b,0xc9,0xac,0xea,0x9f,0x46, - 0x71,0x15,0xd4,0x3e,0x7d,0x10,0x11,0xd7,0x13,0x23,0x14,0xcc,0xdc,0x64,0xc5,0x26,0xa7,0x71,0x2d,0x11, - 0x52,0xcd,0xd0,0x94,0x11,0x5f,0xfb,0x22,0xb7,0x63,0x80,0xe9,0x56,0x34,0x7e,0x10,0xa5,0xfd,0x31,0x15, - 0x48,0x7a,0xec,0x65,0x85,0x7f,0xd8,0xdf,0x3a,0x4b,0x26,0xd0,0xff,0xbe,0xc9,0x1e,0x61,0x02,0x53,0x6e, - 0x76,0xff,0x88,0xbf,0x33,0x77,0xe4,0x9d,0x16,0xa0,0xf0,0x96,0x03,0x26,0xac,0x0a,0x58,0xa8,0xcb,0x03, - 0x8d,0x9f,0xa6,0x7b,0xe7,0x50,0x3c,0x23,0x78,0x0b,0xce,0xc5,0x71,0x70,0x5b,0xf3,0x1d,0x71,0x3e,0x55, - 0xeb,0x88,0xcc,0x20,0x4d,0xaa,0x71,0x8e,0x00,0x4f,0x27,0x58,0x44,0x28,0xa3,0x57,0x52,0x19,0x5a,0xb2, - 0xa4,0x57,0xd1,0x97,0x0c,0x6d,0x2b,0xdc,0x38,0x37,0xa8,0x4a,0xfe,0x30,0xa7,0x49,0x29,0xfb,0x2c,0xe4, - 0x4b,0x09,0x81,0x13,0x4b,0xf2,0x30,0xf7,0x73,0xab,0xce,0x06,0xbb,0xd4,0xbc,0x71,0x27,0x3e,0x89,0x5e, - 0xe5,0xc3,0x05,0x42,0x44,0xf1,0x6f,0x4d,0xfe,0x4d,0x04,0xdc,0xf1,0xf2,0xf8,0xf8,0x15,0x91,0x6e,0x81, - 0x7f,0xff,0xc0,0xeb,0x2e,0x8c,0x20,0x3c,0xa0,0x1d,0x9f,0x82,0x97,0x86,0x75,0x96,0x11,0x6d,0x4f,0x5c, - 0x99,0x36,0x83,0x87,0x81,0x34,0x6b,0x09,0xab,0xa8,0x3f,0x0b,0xe6,0xff,0xb4,0xdf,0x49,0x4c,0xdc,0x02, - 0x5a,0x1d,0x51,0xe5,0x80,0xea,0x00,0x62,0x74,0x6a,0x7b,0x29,0x2d,0xef,0xef,0x3f,0x38,0x38,0x23,0x16, - 0x83,0x4e,0x7d,0x37,0xcb,0xf1,0xf0,0xd1,0xe3,0x87,0xaf,0x1f,0x1e,0x0f,0xab,0x9c,0xa3,0x91,0xcd,0x09, - 0xa1,0xb2,0xbf,0x50,0xe2,0x76,0x19,0xfa,0x2c,0xda,0x67,0x13,0x87,0xd1,0x9b,0xc5,0x72,0x50,0xf2,0x03, - 0x94,0x20,0x3c,0xc8,0x5f,0x08,0xe6,0x8d,0x8e,0xce,0xfe,0xcc,0xf4,0xb7,0x8c,0x66,0xaa,0xa0,0x8a,0xe6, - 0xfb,0x53,0x44,0xa2,0xb6,0x76,0x48,0x17,0x91,0xa3,0x0c,0x70,0x5f,0x64,0x00,0x50,0xc3,0xbc,0xe0,0xc9, - 0x9f,0xe7,0x26,0xa2,0x96,0xb1,0x20,0x73,0x55,0x07,0xf6,0x8f,0xdf,0xdd,0x49,0xa4,0xc8,0x39,0x83,0x6f, - 0xa2,0xc3,0x33,0x22,0x52,0x85,0x56,0x41,0xd4,0xe1,0x11,0xb4,0xc3,0x92,0x6a,0x17,0xde,0x55,0xb0,0xb5, - 0xcd,0xfc,0xf3,0xee,0x1d,0x62,0xf1,0x34,0xaa,0xdf,0x40,0xaf,0x6b,0xda,0x68,0xf3,0xcc,0x6d,0x73,0xf4, - 0x40,0xda,0x3b,0xe3,0xf6,0x32,0xff,0xac,0x7b,0xdb,0x2d,0x8e,0xfc,0xd0,0x90,0x66,0xf7,0xb4,0xfe,0x4a, - 0x54,0x0e,0xdf,0x23,0xe3,0x7b,0xdc,0x2d,0x9b,0x80,0x86,0xb6,0x00,0xf2,0x9f,0xd8,0xfc,0x63,0xc9,0x7f, - 0x22,0xed,0x9e,0x46,0xf3,0x7e,0xe6,0x9f,0x38,0xe5,0x68,0x02,0x4f,0x86,0x47,0x23,0x75,0xca,0x6c,0xa9, - 0x5b,0xc7,0x65,0x33,0x56,0x4a,0x62,0x2b,0x8d,0xa5,0x52,0x1b,0xf9,0xef,0xca,0x78,0xfc,0x4b,0x50,0x15, - 0x73,0x1e,0x21,0x36,0x0b,0x76,0x59,0x38,0xdf,0x50,0x93,0x89,0xdb,0x55,0x67,0x57,0xf5,0x77,0xb0,0x19, - 0x74,0xb5,0xcb,0x9c,0x8d,0x3f,0x72,0x9b,0x50,0x50,0x42,0x3f,0xc8,0xfc,0xbc,0xd6,0x61,0xed,0x3f,0xd2, - 0x04,0xe2,0xc4,0x7e,0xaa,0x6c,0x30,0x57,0xd8,0x8b,0xaf,0xe8,0x14,0x27,0xb4,0x81,0xce,0x64,0x7e,0x5a, - 0x2f,0x0c,0xdf,0xe7,0x73,0x55,0x6c,0x36,0xbe,0x58,0x4d,0x05,0x57,0x5b,0xa1,0x16,0xb2,0xc8,0xba,0x29, - 0x64,0xab,0x8b,0xaa,0x4e,0xe6,0xfe,0x05,0xa3,0xd0,0xfe,0xcd,0xc4,0x75,0x78,0x41,0xbd,0x50,0x2b,0x7e, - 0xcc,0xc5,0x01,0x74,0xc1,0x17,0xe4,0x66,0x98,0xf3,0x68,0xcc,0xde,0x1a,0x76,0x76,0x52,0xf6,0xc1,0x23, - 0xdd,0xd7,0x30,0xbc,0xe0,0x4d,0x2d,0x92,0xa9,0x29,0x76,0xfc,0x61,0x7f,0x72,0x7f,0xda,0x9f,0x18,0x25, - 0xbf,0x99,0x29,0x30,0x9c,0x8c,0xfa,0x0b,0x6a,0x74,0x1f,0xd6,0x72,0x33,0x8c,0xc9,0x00,0xd0,0x2d,0xcf, - 0xbb,0x85,0x79,0xe3,0x3b,0xaa,0xd9,0xf0,0xce,0x68,0x6f,0x4f,0x2b,0x74,0xe2,0x45,0xe9,0xe4,0xbb,0x6e, - 0xf2,0x5d,0x9b,0x7c,0xcf,0x4d,0xbe,0xa7,0xad,0x09,0x2f,0xb8,0x9a,0xf5,0x1a,0x19,0xf1,0xf7,0x1e,0xfd, - 0xf5,0x3c,0x75,0x1e,0x79,0xb1,0x71,0x71,0x0d,0xf7,0xcd,0x52,0xc3,0xd1,0x68,0x60,0xf6,0xc8,0xe3,0x04, - 0x2e,0x75,0x7f,0x4a,0x2e,0xe1,0x12,0x75,0xf9,0x6d,0x5e,0x7c,0x4f,0xb9,0xc2,0xf6,0xaf,0xfd,0x05,0x8d, - 0x48,0xeb,0xae,0xa3,0x12,0xc5,0x24,0x76,0xf8,0x43,0xe2,0x5f,0xd0,0x36,0xda,0x6c,0xe6,0xac,0xfa,0xcc, - 0x8b,0xcc,0x0a,0xac,0x84,0x40,0xdd,0x13,0x27,0xcc,0x1a,0xb8,0x52,0xa0,0x6e,0x01,0x8f,0xf4,0x11,0xc7, - 0x45,0x68,0x20,0xfb,0x0c,0xb6,0x64,0x7c,0xe5,0x4d,0x6f,0xf0,0x68,0x93,0xc1,0x26,0xfb,0x92,0x71,0x51, - 0xae,0xd8,0x77,0x0b,0xa1,0xa0,0xc6,0xbe,0xdb,0x35,0x26,0xe3,0xef,0xcc,0xc3,0x5b,0xfd,0x00,0xd8,0xb9, - 0xb0,0xe7,0xdb,0x3b,0xeb,0xd8,0xf9,0x22,0x20,0x90,0x1e,0xeb,0xed,0xfe,0x0e,0x6e,0x5c,0x9d,0xe7,0xb9, - 0xf3,0x3c,0x75,0x9e,0xfd,0xb7,0xd1,0x3b,0x17,0x63,0x29,0xc2,0x85,0xf7,0x0f,0x09,0xf4,0x2f,0xba,0xd1, - 0x5b,0x55,0xab,0x7c,0xb7,0x76,0xee,0x1f,0xaa,0x0b,0x20,0x9c,0x8b,0x60,0x73,0xc1,0xe2,0xc8,0x5d,0x70, - 0x06,0x11,0x2c,0xc7,0x2d,0x26,0xdd,0xad,0x90,0xe9,0x2e,0xeb,0x98,0x96,0xa2,0xa6,0xbc,0x85,0x6a,0x4b, - 0x63,0x22,0xbb,0x29,0x7c,0x96,0x11,0x49,0x94,0x90,0x59,0xae,0x9c,0x6b,0x88,0xda,0xe9,0xe7,0x48,0x56, - 0xdc,0x63,0xb0,0x45,0xa8,0xb2,0x75,0x22,0xaa,0x36,0x90,0xb8,0x06,0x52,0x5a,0xf3,0x7e,0x1c,0xb8,0xf4, - 0x57,0xb5,0x85,0xba,0x43,0x8b,0xb9,0x97,0x1a,0x3d,0x39,0xc7,0x62,0x0c,0xeb,0x57,0xd9,0xb1,0x22,0x20, - 0x5d,0xae,0xd7,0x97,0xb8,0xe3,0xec,0xbf,0x04,0xc8,0xc3,0x65,0x36,0xcd,0x1d,0xa2,0x5c,0xd5,0x03,0x52, - 0x54,0xca,0xce,0x84,0xf4,0x84,0xb4,0x2d,0x5d,0xca,0xd6,0x08,0x2f,0x11,0x1f,0xf5,0xfb,0xdc,0xe8,0x4e, - 0x66,0x5a,0x67,0x52,0x9e,0x22,0xf9,0xb1,0x87,0xe8,0xaf,0xb9,0x92,0x65,0xe4,0x1d,0x00,0x5a,0xc4,0xc6, - 0xd0,0x83,0x72,0xb9,0x96,0x27,0x3e,0x4b,0xb8,0xdb,0x29,0x1d,0x90,0x90,0x28,0x52,0x8f,0x41,0xcf,0xed, - 0x68,0x07,0xfa,0xec,0x51,0x71,0x11,0x4d,0x03,0x51,0x66,0x36,0xd7,0xd1,0x48,0x5e,0x88,0xf2,0xf5,0xa2, - 0x2e,0x4f,0xa5,0x41,0x42,0x6c,0x77,0xf0,0x26,0xbe,0x88,0xdd,0xbc,0xb5,0x4c,0xd4,0x67,0xc4,0xa8,0x0d, - 0xb8,0x41,0x1a,0xfa,0x29,0x7b,0x82,0xe7,0x40,0x94,0x66,0x22,0x16,0x1a,0x8f,0x9d,0x59,0x02,0x1f,0xf8, - 0x6c,0x1a,0x9d,0xe5,0xb4,0xe7,0xfd,0xa9,0x42,0x1d,0x53,0x56,0x0c,0xa4,0xf1,0x9f,0x47,0x53,0x65,0x2f, - 0x1a,0xcf,0x71,0xa9,0x06,0xd9,0x1d,0xaa,0x3f,0x07,0xa9,0xcc,0xa6,0x06,0xd3,0x8a,0xaf,0x38,0x0c,0x98, - 0xb1,0x98,0x3a,0x8c,0x05,0x6e,0x24,0x5b,0xa3,0x17,0x5b,0x61,0x99,0x75,0x77,0xe9,0x46,0x69,0xb4,0xb7, - 0xaa,0x0e,0x0a,0x4e,0x8c,0x1f,0x9a,0x84,0x23,0x78,0xc2,0x4b,0x8f,0xc6,0x51,0x4e,0x6d,0x94,0x28,0x71, - 0x49,0x34,0xca,0xaa,0x2b,0xf9,0x34,0x32,0x4a,0x58,0xd2,0x8d,0xf1,0xa8,0x49,0xe3,0x60,0x5d,0x3b,0x16, - 0xda,0x49,0x54,0xec,0x69,0x10,0x4e,0xab,0xbb,0x50,0xfa,0xfa,0x1d,0x8c,0xf9,0x5b,0x22,0x95,0x3a,0x77, - 0xb6,0xfa,0xfc,0x2d,0x71,0x69,0x9a,0xe0,0x92,0xb1,0x94,0x4b,0x46,0xad,0xda,0x12,0x96,0x1b,0x6d,0x64, - 0xdd,0x72,0x85,0x2b,0xba,0xcc,0xfa,0xfa,0xd1,0xc4,0x4e,0x6c,0x5e,0xe8,0x1a,0x6d,0x26,0x7d,0x2f,0x09, - 0x87,0xba,0xe8,0xd4,0x85,0xbb,0x58,0x17,0x28,0x00,0x26,0x9d,0xab,0xbc,0x60,0x7e,0x9d,0x57,0xe3,0xf7, - 0x84,0x17,0x99,0xe6,0x72,0x60,0x20,0x60,0xbd,0x2e,0xa8,0xaf,0x0c,0x33,0x52,0x25,0x41,0x00,0x3f,0x51, - 0x51,0xea,0x7e,0x21,0xdd,0x37,0x1f,0xf5,0x28,0xa6,0x9b,0x20,0x2c,0xa8,0x45,0xda,0x8d,0x3b,0x0e,0xac, - 0xc1,0x44,0x68,0xab,0x9a,0x9d,0x8f,0xf3,0xaa,0x35,0x93,0x84,0x5a,0x7c,0x3d,0x63,0x81,0x5e,0x72,0x68, - 0x3d,0x00,0xb8,0x91,0xdc,0x52,0x02,0x82,0xc2,0xe6,0xb0,0xd6,0xd8,0xf8,0x95,0x93,0x1b,0x9e,0x9b,0x8c, - 0x87,0xf3,0x27,0x74,0x80,0xb9,0xeb,0x65,0xbd,0xeb,0xb0,0xc8,0xa0,0x09,0xb3,0x32,0xf6,0x69,0x0f,0x16, - 0x0a,0xec,0xf4,0x8b,0xa3,0x88,0xcb,0xf2,0x1f,0x89,0x3e,0x49,0x24,0x5f,0x45,0x2e,0xb8,0x5e,0xdf,0xf2, - 0xb4,0xfc,0xc0,0xbb,0xd5,0xa7,0x66,0x6b,0xc1,0xde,0xea,0xef,0x6c,0x46,0x30,0x9c,0x8d,0xa2,0xa9,0x18, - 0x5b,0x57,0x7d,0x14,0xbc,0x31,0xe5,0xad,0x23,0x61,0xd9,0x52,0x39,0xda,0xd5,0x79,0x7f,0x35,0xc8,0x00, - 0x74,0x44,0x79,0x4d,0x55,0x6e,0x32,0x22,0xce,0x58,0xd6,0xa2,0x57,0x9f,0x0f,0x73,0xcb,0xb6,0x8d,0x54, - 0xe2,0xb8,0xc7,0x1a,0x6e,0xf9,0xc4,0xa2,0x1c,0x08,0xbe,0x7c,0x07,0xda,0x20,0x06,0xa1,0x74,0x3c,0x79, - 0x63,0x77,0x0a,0x3b,0x63,0x68,0x5a,0x57,0x7d,0xc4,0xd4,0x2a,0x5b,0x7f,0x74,0x44,0xe4,0x56,0xbd,0xbd, - 0x4c,0x1c,0x6e,0xe3,0x80,0xaa,0x49,0xf9,0x4d,0x70,0xb1,0x97,0x99,0x7b,0x75,0x24,0x1e,0x4d,0x80,0xd8, - 0xd2,0x0a,0x67,0x2d,0x2a,0x77,0x1c,0x30,0xed,0x0e,0xec,0x6e,0xaa,0x39,0xff,0x28,0xa3,0x31,0x02,0x3f, - 0xca,0x15,0xce,0xc0,0x47,0xa8,0x4d,0xaf,0xe2,0x82,0x0a,0x63,0xab,0xc2,0x68,0xd5,0x24,0x0c,0xca,0xf0, - 0x97,0x9c,0xdd,0xfa,0xb1,0xcb,0x73,0xe9,0xf5,0x80,0x46,0x0c,0x71,0x9e,0xf6,0xf8,0xb6,0xb3,0xe4,0x39, - 0xd8,0x61,0xdf,0x7d,0x7e,0x53,0x7a,0x22,0x50,0x7a,0x91,0x0f,0xfe,0x4c,0xfd,0x8b,0x3c,0x08,0x7f,0x4f, - 0x99,0x5b,0xaf,0x98,0x05,0xeb,0xfc,0x4d,0x39,0x2c,0x28,0xfd,0x19,0xc3,0x85,0x6f,0xbc,0x2c,0x9f,0x82, - 0x68,0x00,0xc2,0xe2,0x78,0x3e,0xc9,0x18,0x87,0x55,0x70,0x45,0x2b,0x5b,0x08,0x3d,0x11,0x3c,0xc0,0x55, - 0x93,0x21,0x96,0x2d,0x21,0x31,0x86,0x95,0xae,0xd2,0xe4,0x55,0x03,0x7f,0xe5,0x46,0x43,0x71,0x15,0x7d, - 0x07,0xaf,0x2a,0x95,0x3b,0xe4,0xbe,0x2e,0x20,0x97,0x31,0x2b,0xb9,0x84,0xd2,0x75,0x5f,0x79,0xff,0x3a, - 0x15,0x4d,0x41,0x0f,0x3a,0x13,0xd4,0xc1,0xb4,0x5b,0x54,0x94,0xb7,0x39,0xbd,0xc6,0xf7,0x2b,0x53,0x8b, - 0x96,0x6e,0x7d,0xb4,0x53,0xbc,0xcf,0xa0,0xd1,0x07,0x83,0xa4,0x58,0x8b,0xb4,0xa0,0x97,0x58,0xe6,0x6f, - 0x93,0x6c,0x19,0x2e,0x37,0x1c,0x19,0x28,0x18,0x24,0x86,0x6c,0x84,0x15,0xe8,0x6d,0xe5,0x94,0xc2,0x24, - 0x99,0x17,0x53,0x0c,0x84,0x24,0x1e,0xe4,0x4e,0x8b,0xf6,0x6d,0x28,0x30,0x5b,0x56,0x6b,0x6a,0xc1,0x78, - 0x98,0x54,0xb0,0xc9,0x20,0x0d,0xa5,0x71,0xa7,0xb1,0x3b,0xb6,0x12,0xa1,0x1f,0x0b,0x36,0x08,0xdf,0x72, - 0x13,0xdf,0xdc,0xa6,0xf5,0xc2,0xca,0xda,0xba,0x85,0x3b,0x87,0x6c,0x1e,0x41,0xec,0x8a,0x6f,0x60,0x13, - 0x71,0x8c,0xb5,0x20,0x09,0xd2,0xe0,0xf3,0xf4,0x43,0xc2,0x72,0x1c,0x98,0x42,0x25,0x0a,0x32,0x9d,0xdd, - 0x3c,0xfa,0x77,0x0e,0x3c,0xe1,0x5c,0x37,0x81,0x96,0x78,0x87,0x5b,0xd2,0x2d,0xd9,0xac,0x3d,0x67,0x60, - 0xc2,0x23,0xae,0x64,0x74,0xc9,0x88,0xce,0xd6,0x44,0xdd,0xa6,0xa6,0xc6,0x7a,0x33,0xfb,0xd8,0xd9,0xf2, - 0x42,0xec,0x8c,0xbf,0x33,0xd6,0xc7,0xf2,0x18,0x96,0x09,0x5a,0x51,0x94,0x1a,0x83,0x8a,0x0e,0xfe,0x4e, - 0x11,0xf9,0xeb,0x2c,0xf3,0xd9,0x98,0x0a,0x0c,0xd0,0xbb,0xdc,0x3e,0x6f,0x9b,0x80,0x5a,0x03,0x50,0x56, - 0x83,0x32,0x71,0x21,0xb4,0x57,0x68,0xeb,0x3a,0x88,0x8b,0xd7,0x2c,0x09,0xd0,0x4c,0x65,0x1f,0x6a,0x7d, - 0xc6,0x10,0x30,0x51,0x8b,0xda,0xa8,0x0c,0x61,0x04,0x29,0xa1,0x87,0x40,0x31,0xef,0x69,0x82,0x02,0xfc, - 0xa7,0x8e,0x2c,0x9e,0x12,0xab,0x05,0xea,0x5e,0xa2,0xc9,0x0a,0x0f,0xf8,0x98,0xa3,0x02,0x55,0x86,0x60, - 0x78,0x31,0x58,0x65,0xe8,0xa5,0x19,0x28,0xcd,0x7d,0xdb,0x4f,0x63,0xb5,0xe0,0xca,0x38,0x39,0x7e,0x68, - 0xd3,0x6f,0xa0,0x09,0x4f,0xad,0xed,0x63,0xab,0x0c,0x20,0x0f,0xe1,0x77,0x45,0x99,0xa5,0x23,0x6c,0x6f, - 0xd7,0x62,0xe7,0x88,0x89,0x77,0xa2,0xb3,0xa7,0x8f,0x72,0x9a,0x68,0xbe,0x07,0xa8,0x02,0x4e,0x13,0xea, - 0x8c,0xa3,0xfa,0x47,0xd3,0x5e,0x7e,0x3f,0xae,0x3c,0x6b,0x2d,0x1b,0x99,0xe0,0x49,0x89,0x0f,0x2c,0x6a, - 0x19,0x56,0x71,0xd7,0xb4,0xcc,0xc0,0x3c,0xde,0x10,0x1d,0x5a,0x03,0x17,0xed,0xcf,0xa0,0x31,0x8f,0xb6, - 0x28,0x36,0x47,0x2e,0xde,0xff,0x6c,0xda,0xd3,0x8c,0x68,0x73,0xcb,0xa0,0x51,0x82,0x30,0x20,0xb5,0x29, - 0xa2,0xec,0x02,0xe0,0x8d,0xf4,0xf5,0xfa,0x4e,0x2d,0x99,0xdd,0xb6,0xb3,0xcb,0x08,0x8d,0x5d,0xc0,0x9a, - 0xd9,0x96,0xe0,0x8f,0x98,0x09,0x1c,0x07,0xa4,0x25,0xed,0x48,0x55,0x75,0x34,0x62,0xb8,0x6f,0x2f,0x97, - 0x0d,0xe6,0xee,0x27,0xae,0xab,0x47,0x95,0x81,0xa1,0x4f,0x18,0xf8,0xfa,0xff,0xb5,0x85,0x29,0xfd,0x6b, - 0xd6,0x84,0xc3,0x18,0xc0,0x2d,0xd4,0x91,0x55,0x1a,0x67,0x61,0x72,0x96,0xb1,0xe1,0x91,0x96,0x15,0x5f, - 0xd1,0x31,0x40,0xdc,0xb1,0x36,0xc2,0xcc,0x4d,0xe8,0xda,0xc6,0x75,0x09,0x7d,0x68,0xa4,0x6c,0xea,0xc1, - 0xfe,0xec,0xba,0x4a,0xfc,0x04,0xe3,0x50,0xbe,0x66,0x94,0x59,0x42,0x73,0x90,0x4d,0x2b,0xc5,0x1d,0x50, - 0x21,0x37,0x50,0xf5,0x33,0xcd,0x4f,0x06,0x79,0x98,0x06,0xc6,0x11,0xea,0x06,0x95,0x65,0x46,0x6e,0xce, - 0x8e,0x7c,0xf4,0x73,0x54,0x5d,0x37,0xf1,0x7d,0xb8,0xb9,0x28,0xb7,0x99,0x21,0x4c,0xab,0x99,0x2f,0xc3, - 0x67,0xa4,0x7b,0x0f,0xd5,0xe8,0x9d,0xf3,0x71,0xbd,0x16,0x03,0x52,0xb7,0xbc,0x23,0x92,0x41,0x14,0xdb, - 0x4e,0x16,0x78,0xba,0x21,0x6c,0x74,0x3a,0xc2,0xab,0x88,0x6e,0x26,0x85,0x8e,0xbf,0x18,0x1e,0xf1,0xe3, - 0x91,0xb8,0x02,0x5a,0x46,0x8f,0x72,0x0e,0x7f,0x6e,0xe4,0xf4,0xcb,0x5e,0x52,0x14,0x39,0xb1,0x10,0x29, - 0xed,0x9d,0x32,0x5d,0x2c,0xa3,0x5c,0x2d,0x35,0x12,0xba,0x82,0x36,0x47,0x3a,0x4f,0xc2,0x44,0xe9,0xa7, - 0xd7,0xf9,0xb7,0x7a,0xaa,0x96,0x2d,0xda,0xfc,0x2d,0x06,0xb0,0x5b,0xd7,0x01,0xda,0x87,0x02,0xe1,0x7b, - 0xbe,0x83,0x23,0xbe,0x90,0x97,0x40,0xdf,0x49,0x75,0x8a,0xca,0x38,0x21,0x87,0x9b,0x33,0x7b,0x15,0x31, - 0xd0,0x46,0x49,0x6e,0x5a,0xd0,0xa5,0x03,0x91,0x61,0x17,0x9e,0xd3,0x0c,0x7b,0x09,0xc7,0x7b,0x62,0x4d, - 0x0f,0x99,0x49,0x01,0x65,0x4f,0x58,0x55,0x63,0xc5,0xed,0x98,0xb5,0x7d,0xd0,0x04,0x51,0x17,0x35,0xb8, - 0x8d,0x2b,0xe4,0x51,0x5d,0xd1,0xc5,0xcd,0x94,0xba,0xbe,0x9e,0x13,0x30,0x05,0xb0,0x33,0x86,0x7e,0x02, - 0xda,0x8f,0x08,0x36,0x71,0xa5,0xb1,0x09,0xfc,0xdf,0xf2,0xa0,0xb7,0x3d,0x79,0x94,0x2d,0x8e,0x76,0x76, - 0xe0,0xc9,0x7e,0x96,0xf9,0xb8,0x6a,0xca,0xdc,0x77,0x78,0x7c,0x8a,0x5b,0xad,0x71,0xbe,0x71,0x2d,0xc6, - 0x38,0xcc,0xad,0xd5,0x31,0xa1,0xb6,0xd3,0x38,0x6a,0xb1,0xac,0x32,0xd9,0x6f,0x36,0xba,0x02,0xee,0x63, - 0xe3,0x24,0x6e,0x06,0xea,0xa4,0x35,0xdb,0x4f,0xa2,0x2f,0xdd,0x24,0xf3,0x60,0xa2,0x30,0x6f,0x47,0x16, - 0xad,0x85,0x1c,0x67,0xb7,0x06,0x99,0x9e,0x6e,0xb3,0x3d,0x41,0x29,0xca,0xf9,0xc3,0xdb,0x31,0x60,0xe5, - 0x4c,0x5e,0xe9,0x2a,0x06,0x61,0x11,0x78,0xff,0x10,0x92,0xd5,0x46,0x4d,0x60,0x82,0xa1,0x88,0x21,0x56, - 0xb0,0xae,0xb8,0x76,0x1c,0xcf,0x5d,0x6e,0x57,0x0a,0x26,0x25,0xcd,0x24,0x09,0x17,0xcb,0xe5,0xb7,0x4c, - 0x56,0xf3,0x55,0x59,0xf3,0x18,0xd7,0x71,0x92,0x3e,0x6e,0xc5,0x27,0x5a,0xd6,0x76,0x5d,0x1a,0xee,0xa4, - 0x2b,0xe3,0x4d,0x66,0xfe,0xdd,0x35,0xc3,0x34,0xcb,0xc8,0x8d,0xb7,0x09,0xb8,0xd1,0xbb,0x6a,0x17,0x2e, - 0xc5,0x1f,0x15,0x24,0x65,0x88,0x63,0x65,0xb6,0x46,0x98,0x39,0xfb,0xc4,0x90,0x70,0x48,0x35,0x8f,0x1b, - 0x1d,0xe9,0x1d,0x24,0x95,0xde,0x01,0x50,0x3d,0x6b,0x80,0x7b,0xdf,0xac,0x17,0x61,0x85,0x6c,0x7b,0x77, - 0x58,0x93,0xfd,0x34,0xd6,0x8e,0x7c,0xd8,0xbc,0xcd,0xd8,0xb2,0x69,0xb8,0xa7,0x31,0xd1,0xdb,0x26,0x68, - 0x18,0x25,0x78,0x12,0x3f,0xac,0x5a,0x67,0xb9,0x8f,0x06,0xbb,0xb1,0xca,0x24,0xba,0xe3,0x84,0xb0,0x98, - 0xfe,0x28,0x88,0x6e,0x20,0x3f,0x3d,0x9d,0x35,0x4a,0xfc,0xd6,0x30,0xb3,0x52,0x1a,0x72,0x61,0xfc,0xf6, - 0xe2,0xf3,0xc9,0x40,0x1e,0x69,0x53,0x12,0x9f,0xfb,0xeb,0x2a,0x79,0x7a,0xf4,0xcf,0x0c,0xa5,0x37,0x8d, - 0x20,0xd4,0xd4,0xad,0x15,0x01,0x08,0x40,0x90,0xba,0xd6,0x77,0x68,0x05,0xe9,0x73,0x4b,0xcf,0x70,0xd7, - 0x9e,0xb3,0xcd,0x92,0x7e,0x62,0x14,0xe6,0x7b,0xc3,0x8b,0x55,0xb2,0x9f,0x52,0x3b,0xa3,0x8e,0xd7,0x85, - 0x1f,0xca,0xbd,0xbd,0x5a,0x06,0x3e,0xd2,0xc7,0x6f,0x5d,0x47,0xdb,0x49,0x23,0x20,0x9e,0x30,0x5d,0x5b, - 0x13,0x55,0x56,0x25,0x5c,0x1c,0x74,0xa1,0xd7,0x00,0xfb,0xf6,0xbc,0x76,0x9d,0xda,0x88,0xb2,0x87,0x30, - 0x7b,0x36,0xb6,0x84,0x53,0x59,0xea,0xc6,0x07,0x17,0x51,0xa0,0xbd,0xd4,0xb7,0xc4,0x1f,0x24,0x0e,0x10, - 0x04,0x56,0x9f,0x40,0xf6,0xe9,0xdd,0x0c,0x35,0xbe,0x94,0x7f,0xcc,0x5e,0x60,0xc1,0x84,0xe1,0x2c,0xc5, - 0x20,0x9d,0xc8,0xda,0xba,0x42,0x2b,0x27,0x0e,0x52,0x36,0x35,0x0c,0xb7,0xb6,0x7f,0xc9,0xa1,0xe6,0xe1, - 0x30,0x19,0xd9,0xc2,0xdb,0x4e,0x85,0x2c,0x12,0xfc,0x68,0x76,0xe5,0xa3,0xcd,0xa3,0xb6,0x36,0x29,0x11, - 0x78,0x24,0x8d,0xe4,0x51,0x5d,0x11,0xc5,0x12,0xd3,0x61,0x57,0x88,0x7d,0xd2,0x32,0x4c,0x1d,0x6f,0xa0, - 0x79,0x65,0xc4,0x8d,0x15,0xd1,0x8d,0x5a,0x18,0x28,0x6b,0x2a,0x59,0x46,0x36,0xa7,0xd5,0x17,0xd6,0x8e, - 0x4d,0xe4,0x30,0xb9,0xc6,0x18,0x25,0x42,0xa0,0xc2,0x5e,0x7c,0x0a,0x31,0xb6,0xc2,0x18,0x93,0x01,0x5c, - 0x79,0x07,0x83,0xec,0xc1,0xd1,0xe0,0x28,0x3c,0x0c,0x8f,0xc2,0x72,0xc0,0x79,0xce,0x53,0x14,0xbd,0x1d, - 0x84,0x87,0x26,0x9c,0x2a,0xfc,0x6e,0xe9,0xfb,0xa1,0xd1,0x20,0x63,0x29,0x10,0x73,0x5a,0xa1,0xb3,0xb6, - 0xb1,0x03,0x05,0xcc,0x9a,0x72,0xd8,0xef,0x26,0x97,0x5a,0x73,0xfb,0xbe,0x74,0x85,0x4e,0x0e,0x28,0x28, - 0x43,0x55,0x09,0x39,0x45,0x4c,0xcc,0xfd,0x2d,0x30,0x49,0x0d,0xbd,0x9e,0x4b,0x38,0x1e,0x5c,0x36,0x98, - 0x68,0x25,0xb9,0x71,0x4b,0x11,0xd9,0x98,0x1a,0xfa,0x4a,0x02,0x8d,0x31,0x65,0x93,0x07,0x63,0xc2,0x38, - 0xab,0x28,0x56,0x67,0x02,0xd4,0xf0,0xd3,0xc8,0xde,0x47,0x73,0x90,0x32,0x03,0xa6,0x6a,0x96,0x4c,0xdc, - 0x28,0x4e,0x09,0x39,0x85,0x1f,0x35,0xad,0xaf,0x56,0x66,0xd2,0x8b,0x7a,0x88,0x02,0x26,0x0e,0xe7,0xec, - 0x60,0x1b,0x4e,0x9e,0xb5,0x3b,0x38,0x9b,0x65,0x55,0xb9,0xf7,0x9d,0xb3,0xba,0x2f,0x44,0x7e,0x2d,0x32, - 0x8f,0xc4,0xb8,0x3a,0xab,0x2c,0x18,0x4f,0x04,0x82,0xd8,0x2b,0xda,0x2e,0x76,0x7e,0x4f,0x12,0x36,0xba, - 0x1e,0x07,0x9b,0xf0,0x05,0x36,0x24,0x25,0x38,0xd7,0x2a,0x53,0x73,0xcd,0x51,0xf9,0xec,0x18,0x12,0x9e, - 0x02,0xf9,0xd0,0x4c,0x89,0x52,0xcf,0x4d,0x26,0x88,0x12,0x69,0x06,0x35,0x39,0x94,0x05,0x95,0x77,0x1e, - 0xca,0x5d,0x16,0xef,0xf5,0x8c,0x36,0xe3,0x27,0x11,0x15,0x54,0x4f,0x92,0xba,0x89,0x44,0x5c,0x5a,0xd8, - 0x35,0xea,0x0a,0x91,0xbd,0x51,0x87,0x94,0x50,0x58,0x4e,0x3b,0x05,0x6e,0x34,0x62,0x70,0x50,0x05,0x47, - 0x66,0x96,0xca,0xd6,0xeb,0x65,0xc5,0xda,0x8a,0xca,0x84,0xcb,0xbf,0x66,0xf0,0xf5,0xe3,0x26,0x54,0x64, - 0xe8,0xb8,0x6a,0x7b,0x65,0xdb,0x1e,0x6f,0xb5,0xed,0xb4,0x0c,0x38,0x37,0xae,0xe0,0x36,0xac,0xfb,0x54, - 0xa9,0xc1,0x11,0xf7,0xbc,0x21,0x2a,0x5c,0x4c,0x47,0x32,0xeb,0x9b,0x0c,0x5c,0x7b,0xa5,0x19,0x61,0x16, - 0x63,0xee,0xb2,0x0b,0x59,0x73,0x55,0x8b,0xc1,0x0e,0x11,0x16,0xbc,0x9a,0x10,0x7b,0xfb,0x5e,0x96,0x97, - 0x74,0x52,0xa5,0xcb,0xb2,0xa3,0x8f,0x91,0x4e,0xaa,0x3d,0xfd,0x00,0x70,0x29,0xcd,0xbe,0x7b,0x50,0x39, - 0x66,0x0f,0xd3,0xf5,0x42,0xf5,0x02,0xa0,0x0b,0x3a,0xba,0x51,0x29,0xe1,0x06,0x96,0x48,0x04,0x12,0x65, - 0x27,0x6d,0x91,0x83,0xf8,0x68,0x03,0x19,0x36,0xf1,0xe0,0x80,0x0e,0x5e,0x04,0x2d,0xe1,0x7d,0xc3,0xf2, - 0x87,0x72,0x06,0x7f,0x34,0x1a,0x28,0xf9,0x62,0x98,0xf6,0x2d,0xd1,0x00,0x57,0xf8,0x14,0x22,0xce,0xad, - 0x46,0x80,0x48,0x06,0xfa,0x23,0x6a,0x5b,0xa4,0xff,0x44,0x1b,0xe4,0x52,0x01,0xf1,0x07,0xa6,0x02,0xda, - 0xa2,0x5c,0x81,0x59,0xfa,0xf5,0x7a,0xcc,0x91,0x65,0x4c,0xd4,0x96,0xd4,0xce,0x25,0x9c,0x20,0x95,0x5a, - 0x86,0x6a,0x42,0xe2,0xf9,0x73,0x5a,0x69,0x9e,0xd7,0xa0,0x67,0x62,0xc2,0xcf,0x15,0x6d,0x60,0xc3,0x45, - 0x6d,0x6f,0xba,0xc2,0xa1,0xe1,0x4b,0x78,0x59,0x35,0x91,0xe3,0x71,0xf8,0x36,0xe3,0x82,0xc0,0xb7,0x3c, - 0xfb,0x62,0xd4,0xd9,0x12,0x16,0x42,0x11,0x2d,0x14,0x30,0x09,0x66,0xf6,0xea,0xaa,0xb6,0x53,0xc5,0x52, - 0x4a,0x13,0x89,0xbe,0x67,0x02,0xf4,0x76,0xfe,0x13,0x63,0xff,0x4f,0xac,0xd7,0xc5,0x7e,0xd9,0xa9,0xe2, - 0x66,0x6b,0xf1,0xb8,0x5e,0xe1,0xe5,0x6a,0x01,0xb2,0xa4,0x23,0x66,0x3a,0x62,0xa9,0x56,0x0b,0xe8,0xc1, - 0x5b,0xbe,0x3a,0x79,0x85,0xc7,0xc3,0x93,0xde,0x35,0x1e,0x2d,0x9c,0x67,0xb5,0x10,0x41,0xed,0x42,0xd3, - 0x91,0x29,0xde,0xbe,0x28,0xe6,0x61,0x0b,0x40,0x07,0xb0,0xf3,0xf5,0x51,0x28,0xbf,0x77,0xe4,0xf7,0xee, - 0x97,0xf2,0x7b,0xe7,0xae,0xfe,0xfd,0x5a,0xa7,0xff,0x33,0xb4,0x01,0xc8,0xa4,0xc0,0x3d,0x9d,0x41,0x17, - 0xb8,0x7b,0x2f,0x34,0xea,0xc5,0x13,0xa8,0xba,0x4b,0xae,0x3b,0xb7,0x75,0xf5,0xf2,0x73,0x74,0xa8,0x7f, - 0x75,0x6b,0x47,0x5f,0xea,0x84,0x2f,0xef,0xdd,0xfe,0x4a,0xe7,0xf9,0xe7,0x6d,0x53,0x88,0x9e,0xee,0x98, - 0x4a,0x2f,0x97,0x9e,0xbd,0xf8,0x7b,0x10,0x7d,0xfd,0x15,0xb1,0x2c,0xf7,0xa3,0xa3,0xdb,0xb7,0xd7,0x6b, - 0x7a,0xfd,0xf2,0x1e,0xbf,0x7e,0x7d,0x38,0xd0,0x8d,0x87,0x94,0x78,0xf7,0x6b,0x4e,0xbc,0xf7,0xd5,0xc0, - 0x13,0x43,0x08,0x2f,0xf4,0xf8,0xda,0xa7,0x25,0x20,0x09,0xa6,0x49,0xce,0x3a,0x0d,0x17,0xbe,0x77,0xe8, - 0xed,0x38,0xc1,0x8b,0x0f,0x21,0x43,0x4b,0x97,0x3f,0xc5,0x3f,0x49,0x50,0x36,0x42,0xb8,0x89,0xfa,0xc9, - 0x44,0xab,0x6b,0xbd,0x73,0xab,0x4f,0xbb,0xe9,0xbb,0xad,0x54,0x7f,0xb2,0xca,0x3c,0x47,0xd4,0xc2,0x9d, - 0xbb,0x10,0xeb,0xec,0xed,0xdd,0xf9,0x1a,0xbf,0x83,0x32,0xb4,0x61,0xdc,0x14,0x7d,0x07,0x2b,0x18,0x7a, - 0x5f,0x78,0xdd,0xc4,0x04,0x40,0x17,0xff,0x56,0x17,0x06,0x17,0x56,0x5c,0x99,0xf1,0xbd,0x01,0x4d,0x85, - 0xa1,0x90,0x7d,0x1d,0xed,0x29,0xcf,0x53,0x67,0xdb,0xf9,0x67,0xf1,0xf2,0xc5,0x65,0x66,0x02,0xed,0xa9, - 0xf7,0x51,0x1b,0x81,0xfa,0x34,0x2b,0xe7,0x4e,0xb0,0x30,0xbc,0xf6,0x1e,0x23,0xb2,0x4d,0x7a,0x9e,0x10, - 0xf3,0x70,0x1e,0x97,0xea,0xe4,0x93,0x0b,0x8a,0x17,0x3f,0x5d,0xec,0x34,0xba,0x12,0xc7,0x1a,0x8f,0x1a, - 0x41,0x2a,0x6b,0x3e,0x8d,0x5c,0x06,0xb0,0xec,0x61,0xb7,0x45,0xf2,0xc3,0xf7,0x88,0x27,0x27,0x78,0x1c, - 0x5c,0x6d,0x42,0x13,0x91,0x88,0x71,0xc2,0x95,0xcd,0x6c,0xd1,0x25,0xf5,0xe8,0xb9,0x4e,0x97,0x42,0x81, - 0x39,0xee,0x10,0x68,0xb1,0x6f,0x52,0x5b,0x9d,0xde,0x24,0x44,0x2d,0x24,0xca,0x21,0x7c,0x4a,0x36,0x26, - 0x70,0x0f,0xa3,0xa4,0x25,0x02,0xa3,0x84,0x34,0x45,0xa5,0xec,0x3b,0xf8,0x47,0x46,0x12,0xcf,0x93,0xe5, - 0x32,0x3e,0x63,0xdf,0x39,0x72,0xf6,0xe9,0xe3,0x87,0x9a,0x11,0x8f,0x53,0x27,0xce,0x18,0x55,0x95,0xf2, - 0x1b,0x72,0x25,0xda,0x23,0x98,0x74,0xf5,0x12,0x49,0x38,0x44,0xa0,0xa9,0xec,0x07,0x4e,0x66,0xd6,0x91, - 0x18,0x17,0xe9,0x69,0x82,0x4f,0x8f,0x60,0xea,0xc3,0xd1,0x87,0x98,0x69,0x93,0x6c,0x26,0x87,0x38,0x83, - 0xdb,0x54,0xf1,0x38,0xf4,0x14,0xca,0x5c,0xf1,0x0a,0x14,0x79,0x5e,0x9a,0x20,0xf7,0x78,0x16,0xa4,0xb7, - 0x9d,0x52,0x9b,0x6b,0xbe,0x3e,0xe5,0xbe,0x20,0x43,0xd4,0xcc,0xab,0x57,0xaa,0x37,0x25,0xfa,0xec,0x94, - 0x18,0x19,0x99,0x9c,0xad,0x6c,0x8d,0xef,0xa6,0xd4,0x92,0x18,0xc3,0x4c,0xf4,0x4f,0xe7,0x6c,0xa4,0xf0, - 0x1b,0xab,0x82,0x37,0x0b,0xb7,0x66,0x63,0x47,0xbd,0x75,0x08,0x28,0x6e,0x84,0x80,0x02,0xf4,0xe2,0x36, - 0x04,0xd8,0xe5,0xe5,0x35,0x5d,0x46,0x45,0xfb,0x62,0xe2,0x82,0xfd,0xb9,0x99,0xd8,0xff,0xb6,0x35,0x55, - 0xce,0x61,0xa1,0xa7,0xed,0x7d,0xc6,0xd7,0x7c,0xf6,0x85,0xef,0xc2,0xc5,0x2f,0x20,0xcf,0x6f,0xad,0x43, - 0xbb,0x55,0x87,0x64,0xf6,0xfd,0xc0,0x3a,0x8a,0xff,0xfb,0x70,0x31,0xf0,0x5d,0x28,0xdf,0x82,0x8a,0xbf, - 0x3f,0x5c,0xf0,0xe6,0x72,0x4b,0x82,0x4b,0x56,0x1d,0x60,0xc1,0xf4,0xa8,0xf6,0xbe,0x05,0xa7,0xee,0xb6, - 0x73,0x33,0xfe,0x97,0xba,0x63,0xfc,0xc0,0x3d,0x6e,0x86,0xa9,0x35,0x8e,0xe0,0xa4,0x6b,0xfe,0x56,0xe1, - 0x5a,0x8f,0x7a,0xab,0xec,0x63,0x2d,0x6b,0xc1,0xe7,0x56,0x1d,0x2d,0x50,0x56,0xab,0x56,0xa7,0xf9,0x8d, - 0x1a,0x9c,0x4f,0xa6,0x86,0x1a,0x60,0xb4,0x83,0x4b,0xb3,0x96,0xda,0x47,0xb7,0x27,0x12,0x36,0x6e,0xb3, - 0x51,0x97,0xc6,0x6b,0x2b,0x52,0x2b,0x6f,0x8e,0xf1,0x1c,0x86,0xde,0xe2,0x58,0x91,0xb5,0xde,0xae,0x5c, - 0x4f,0xb6,0x5a,0x2b,0x20,0x14,0x97,0x89,0x1b,0x8e,0x48,0x5e,0xcf,0x61,0x28,0x2e,0x5c,0x1c,0x1a,0x7a, - 0xd4,0xcd,0xb0,0x51,0x7c,0x1b,0xbe,0xd4,0x89,0x43,0xa6,0xf6,0xac,0x33,0xd9,0xcd,0x96,0x27,0xc7,0x1a, - 0x69,0xcf,0xdd,0x82,0x7c,0x42,0xc2,0x67,0x20,0x8a,0x6c,0x65,0x6d,0x86,0xef,0x0e,0xe0,0x48,0x3c,0x0d, - 0x3f,0x17,0xc1,0xfe,0x8d,0xae,0x63,0x75,0x58,0xb8,0x48,0x7e,0x6c,0xf8,0x5d,0xa2,0xe7,0x1d,0x47,0xae, - 0x22,0x80,0x2f,0x84,0x90,0x46,0x34,0x0f,0x4d,0x48,0xaf,0x20,0xa0,0x9e,0xe3,0x03,0x8f,0x8d,0x0d,0x42, - 0xa7,0x0d,0x76,0x6d,0x1e,0x0c,0xe6,0x26,0xe8,0xef,0x61,0xe8,0x9e,0x5b,0xf3,0xc0,0xa6,0xb3,0x06,0x76, - 0x83,0x67,0x72,0xfd,0xf1,0x61,0x1b,0x55,0x01,0xcc,0x2b,0x92,0xc7,0x09,0x6a,0xce,0x5d,0x30,0x54,0x4f, - 0x15,0xf7,0x7c,0x6f,0xcf,0xe3,0xcb,0xc4,0xcd,0xa6,0x12,0xe9,0xef,0xed,0xe5,0xb6,0x65,0x62,0x4a,0x17, - 0x54,0xbb,0xef,0x3d,0x9d,0x76,0x64,0x14,0x1d,0xcc,0x76,0x27,0x5d,0x76,0xe0,0x64,0xa6,0x43,0x67,0x40, - 0x87,0xe7,0xba,0x93,0x88,0xc8,0x74,0xd9,0x81,0xf9,0x43,0x67,0x16,0x5f,0x24,0x52,0x40,0xf2,0x53,0xe6, - 0x1e,0x71,0x41,0x2d,0x63,0xdf,0xc6,0xe9,0x60,0x0b,0x56,0xc4,0x00,0xc2,0x79,0x68,0x73,0x46,0xda,0x4e, - 0x80,0x15,0x3c,0x9f,0xcd,0xe9,0x0f,0x54,0x2c,0xaf,0xa9,0x4f,0x78,0xfb,0xc5,0xc0,0x83,0xf9,0x54,0x73, - 0x5a,0x42,0x4a,0x4d,0xfa,0x2b,0x08,0xbf,0x20,0xce,0xd4,0x5e,0xff,0x55,0xaa,0xe2,0x5e,0xea,0x4b,0xec, - 0x09,0x6c,0x8d,0xdd,0x68,0x0b,0x51,0x8c,0xa9,0x25,0x3a,0x5c,0x5a,0x2e,0x48,0x36,0xfd,0x5d,0x87,0x9e, - 0x4b,0x61,0x37,0xb8,0xc8,0x21,0x0f,0x77,0xe5,0x44,0x95,0xf9,0xb0,0x53,0x1b,0x5c,0xcb,0x19,0x26,0x15, - 0x5a,0x78,0x1f,0xd5,0xe8,0x23,0xc6,0xcf,0xf3,0x5c,0xb5,0x3e,0x2b,0x6f,0x1e,0x66,0xdd,0x2e,0xcb,0x67, - 0xbc,0x2b,0xed,0xff,0xb5,0xc0,0xb5,0x82,0x73,0xad,0xcf,0xea,0x29,0x9e,0xd6,0x15,0x2b,0x70,0x99,0x8f, - 0xba,0x84,0x25,0xa5,0x07,0xb1,0xb1,0xd0,0xf5,0x78,0x1b,0xd6,0x61,0xe9,0x07,0x79,0x37,0x4a,0x95,0x4d, - 0x16,0x99,0xc4,0x3b,0xa1,0xbb,0xf3,0x60,0xe0,0xb1,0xb3,0xd1,0xf0,0x6d,0x95,0x00,0x64,0x32,0x21,0x4a, - 0x7f,0x25,0x4e,0xe9,0xbc,0xbe,0xe9,0x82,0x34,0x9b,0x8b,0x47,0xec,0x78,0x23,0x5a,0xf2,0xde,0xff,0xe0, - 0xbe,0x0e,0xa8,0xcf,0x20,0xcc,0x69,0x45,0x20,0xf2,0xa3,0x26,0x83,0x10,0x7f,0x0d,0xc7,0x71,0xe3,0x48, - 0x20,0x9a,0x31,0xe8,0xcd,0xce,0x6a,0x54,0xd4,0x44,0xd5,0x59,0xc5,0x7c,0x2a,0x09,0x3e,0xdd,0x94,0xad, - 0x98,0xe1,0x70,0x90,0xba,0xed,0x91,0x60,0x6e,0xcd,0x0b,0xdb,0x86,0x9b,0xde,0xf1,0xd4,0xf5,0xd3,0xe6, - 0xa2,0xc4,0x34,0xa0,0x74,0x64,0x18,0xbe,0x58,0xdf,0x4b,0x83,0xb3,0x92,0xfe,0x87,0x9a,0xa3,0x8d,0x35, - 0x73,0x2e,0x5a,0xaf,0xcc,0xb7,0xe9,0x8e,0xe8,0x0c,0xd9,0x90,0x29,0x1d,0xa2,0xdb,0x4d,0x5e,0x75,0x74, - 0x18,0x8c,0x6a,0x05,0x4c,0x6f,0xe5,0x57,0xd4,0xc2,0x6d,0x71,0x5d,0x8a,0x68,0xdc,0xb4,0xdb,0xb5,0x93, - 0xba,0xe1,0x70,0x77,0x1b,0x5e,0xd4,0x77,0xd1,0xc1,0x5f,0xfe,0xf1,0x24,0xe8,0x1e,0xa8,0xb7,0xfc,0x78, - 0x89,0xc7,0x47,0x34,0x4d,0x0f,0xa3,0x23,0xf5,0x2a,0xba,0xad,0x5e,0x47,0x77,0xd4,0x0b,0x7a,0x7f,0x13, - 0xdd,0x55,0x4f,0xa2,0x7b,0xea,0x69,0xf4,0xa5,0xfa,0x31,0xfa,0x4a,0x7d,0x1b,0xfd,0x53,0x3d,0x06,0x43, - 0xff,0x78,0xf8,0x62,0x14,0x5d,0x5d,0x2e,0x43,0xfa,0x55,0xcc,0x06,0x86,0xc3,0x3b,0xea,0xd1,0x48,0x79, - 0x43,0x2f,0x1c,0xbe,0x19,0x29,0x3a,0xe4,0xc3,0xe1,0x8f,0xa3,0x8d,0x7a,0x3c,0x3c,0xd2,0x39,0x8f,0xe8, - 0x6b,0x8f,0xbe,0xde,0x6e,0xcd,0x75,0x5b,0xe7,0xba,0x5d,0xaf,0xef,0x50,0xff,0x0a,0x57,0x29,0x2f,0xc8, - 0x7e,0x87,0xb2,0xdf,0x94,0x4f,0x71,0xab,0xea,0xa1,0x69,0x97,0x9f,0xb8,0x65,0x3c,0x49,0xdb,0xf4,0x84, - 0xea,0xde,0x50,0x75,0xde,0x2d,0xfa,0xf4,0x04,0xe5,0x6e,0x79,0xb7,0xc2,0xe1,0xd3,0x6a,0x38,0xea,0x15, - 0x3d,0x8d,0x3c,0x54,0xf6,0x5a,0x0a,0x7e,0xcb,0xf6,0x7c,0xf8,0x24,0xdd,0x79,0x62,0xca,0x23,0xa1,0x96, - 0xe3,0x89,0xce,0xf1,0x94,0x72,0x70,0xbd,0x5b,0x39,0xd0,0x90,0x2c,0xcc,0x4f,0x6c,0xf3,0x4c,0xa4,0x5a, - 0xb1,0x4a,0xd6,0x6c,0xcb,0xb9,0xde,0x1f,0x0c,0x8f,0x27,0xbd,0x51,0x77,0x7d,0x8b,0x7d,0x60,0xdd,0x5a, - 0x7b,0xec,0x16,0xcb,0x0b,0x28,0x1f,0x1c,0x13,0x5d,0x83,0xb6,0xda,0xb1,0xd6,0x4b,0x07,0x6b,0x31,0x94, - 0xbd,0xa4,0x43,0x6d,0x5b,0x42,0xe5,0x62,0x2c,0x07,0x61,0x41,0x85,0x34,0x69,0x91,0x67,0x99,0xb0,0x77, - 0x31,0x42,0xf9,0x60,0xc3,0xad,0xa2,0xfd,0x23,0x3a,0x1a,0x5f,0x70,0xdc,0xbb,0x19,0xc0,0x05,0x7b,0x66, - 0x36,0x7c,0x38,0xaa,0x19,0x77,0x98,0x73,0x2a,0x63,0x5d,0x1e,0x81,0x5e,0xb8,0x28,0x94,0x0f,0xb0,0xd5, - 0x1f,0x3e,0x6a,0x29,0x01,0x49,0xed,0x20,0x8b,0x8a,0x30,0xeb,0x12,0xe1,0x4f,0x99,0x5e,0xd5,0x32,0xa1, - 0x10,0x51,0x46,0x53,0x82,0x7d,0xfa,0xf6,0xba,0xf6,0x0d,0x1a,0x91,0x0f,0x0e,0x83,0xe9,0xfe,0x3e,0x75, - 0xef,0x8d,0x92,0xac,0xf6,0x2e,0x12,0xbd,0xdd,0xc1,0xd5,0x87,0x9f,0x45,0x13,0x76,0x99,0x67,0xc5,0xa2, - 0xe8,0x3b,0xd4,0x31,0xfb,0x5a,0x06,0x3e,0x67,0x87,0xf1,0xab,0x6e,0x17,0xfe,0x13,0x59,0x59,0x08,0x3e, - 0x17,0x57,0xb8,0xb1,0xd8,0x69,0xf0,0xd3,0xfc,0xa1,0x7b,0xc4,0xd8,0x1a,0x62,0xa3,0x27,0x74,0x2a,0xdf, - 0x62,0xb5,0xae,0xf5,0x1a,0xef,0x4f,0xf7,0xf6,0x08,0x2c,0xf0,0x6e,0x7d,0x77,0x53,0xb5,0x84,0xad,0xa9, - 0xe2,0x6e,0xa2,0xfb,0x88,0x08,0xcb,0x7e,0xa0,0xad,0xb8,0x16,0x10,0x8b,0x81,0xce,0x59,0x46,0x8f,0x87, - 0xf3,0x51,0x40,0x78,0x67,0xbd,0x5e,0xb2,0x22,0xe8,0x7a,0xfd,0x2d,0x64,0xcb,0xdf,0x1a,0xad,0x20,0x6e, - 0x13,0x76,0x2c,0xca,0x8f,0xa3,0xd9,0x30,0xa7,0x3d,0x38,0x92,0x7b,0xd8,0x1c,0x1b,0xad,0x88,0xec,0x94, - 0x16,0x03,0xc8,0x10,0x79,0xf8,0xc4,0xff,0x04,0xb5,0x0a,0xa2,0xc8,0x5e,0xae,0x8e,0x45,0xd9,0xcd,0x12, - 0xa4,0x06,0x46,0xa8,0xf7,0x2a,0x01,0xd9,0xb5,0x51,0x2e,0x90,0x9d,0x25,0x25,0x40,0x8c,0x05,0xb9,0x8d, - 0xb3,0x11,0x32,0xf2,0xa4,0x72,0xd0,0x5a,0x5d,0xc2,0x18,0xef,0xdb,0x06,0x3e,0xe1,0xb1,0x96,0xc7,0x5d, - 0x34,0x28,0x0c,0x84,0x77,0x43,0xd7,0x8d,0x3b,0xed,0x5a,0x4d,0x8e,0xb5,0x4f,0x65,0x6a,0x46,0x48,0x5a, - 0xbb,0xe0,0xce,0xfb,0xc6,0xf1,0x76,0x3c,0x2c,0x86,0xcb,0x91,0x73,0xd9,0x01,0x65,0xb3,0xe0,0x4a,0xdc, - 0x50,0x69,0xdb,0x84,0x38,0x1a,0xab,0x65,0x85,0x4c,0x63,0xd9,0xad,0xcf,0xaf,0xd9,0x39,0xfd,0x8a,0xff, - 0xc3,0x3c,0x41,0x5b,0xd6,0xde,0x2e,0x09,0xf1,0xb8,0x5e,0x7b,0x49,0xb6,0xff,0xcb,0x2b,0x8f,0xe5,0xb9, - 0x75,0x5e,0xbb,0xfa,0xc6,0x16,0x49,0x9a,0xc5,0x65,0xf2,0x52,0x87,0x31,0x77,0x64,0x40,0x92,0x0e,0x2b, - 0xca,0xcc,0x11,0xf1,0x70,0x6a,0x5f,0xbb,0xb2,0x3e,0x97,0x0b,0x3e,0x79,0x9b,0xf2,0xf7,0x12,0xac,0x66, - 0xcf,0x3e,0xaf,0xd7,0x60,0x94,0x77,0x75,0x96,0xf3,0x74,0x09,0x57,0x20,0x68,0x5b,0x9e,0x44,0xe0,0x69, - 0xbc,0x4b,0xb3,0x50,0x81,0x65,0x0b,0xb5,0x74,0x70,0xb5,0x91,0xc3,0xf7,0x0a,0xcb,0xbb,0xb3,0x23,0x4f, - 0xa6,0x75,0x3d,0x50,0xd6,0x87,0x72,0x32,0xbb,0xe9,0x52,0xc8,0x4d,0x31,0x2d,0xb4,0xca,0x1e,0x2c,0x12, - 0x29,0xdb,0xa5,0x0e,0x44,0xe2,0xee,0x5c,0xf3,0x49,0xd7,0x5b,0x9f,0x50,0xdc,0xbc,0x83,0xb0,0x97,0x6f, - 0xee,0xa4,0xd6,0xbf,0x80,0x1b,0x60,0xf9,0xc2,0xcb,0xaa,0x9a,0xb8,0x72,0x17,0x40,0x48,0x50,0x92,0xf9, - 0xfe,0xa0,0x01,0xf9,0x1a,0xab,0xf8,0x3b,0x18,0x6c,0xb6,0x5e,0x17,0x7e,0x22,0x15,0xd6,0xb6,0x8b,0x84, - 0xd3,0x36,0x46,0xe9,0x27,0x70,0x1a,0xfb,0xeb,0x73,0xdf,0xdc,0x77,0x66,0xaa,0x0e,0x35,0x21,0xdc,0x37, - 0x0a,0xa8,0x10,0xd9,0xd5,0x00,0x92,0x30,0x56,0x35,0xf0,0x08,0x97,0x44,0x91,0xa9,0x9f,0xa3,0xab,0x8b, - 0xf3,0xf0,0x6a,0x53,0x15,0xa4,0xe7,0x66,0x49,0x4a,0xaa,0x17,0xbd,0xaa,0x38,0xbc,0x4d,0xb3,0x0f,0xa8, - 0x4b,0x60,0x86,0x3f,0x9a,0x69,0xc3,0x4b,0xeb,0x0a,0xd0,0x87,0x8d,0x39,0x5c,0x9e,0xbb,0xae,0x87,0x65, - 0xb0,0x2d,0xdb,0x6b,0x66,0x7c,0x41,0x4b,0x7d,0xfd,0xc6,0x3b,0xa4,0x2f,0x15,0xd8,0xd3,0xea,0x10,0x0d, - 0x89,0x85,0x81,0x6a,0xac,0x6a,0xe6,0x4d,0x36,0xca,0x6d,0xb4,0x95,0xdd,0xdf,0xf6,0x85,0x50,0x5f,0xe8, - 0x4a,0xdd,0xcc,0xad,0xea,0x1a,0xd9,0x41,0xad,0xb2,0x86,0xe1,0x00,0x73,0x7b,0x6e,0x08,0x93,0xcc,0xb1, - 0xd5,0x94,0xa0,0x76,0xd9,0x83,0xfd,0xa3,0x40,0xee,0xa7,0xc7,0x90,0x63,0x42,0x41,0xd2,0x6f,0xe9,0x93, - 0x6a,0x76,0xa7,0x26,0xdb,0x6a,0x9a,0x57,0x8a,0x88,0xb0,0xe6,0x12,0x9c,0x26,0xaf,0xb7,0xcb,0x85,0x7c, - 0x6f,0x17,0x55,0xd7,0x42,0x54,0xb8,0x06,0x0d,0x8d,0xc9,0x70,0xed,0x1b,0x66,0xad,0x4e,0x91,0x9b,0x45, - 0x88,0x11,0x64,0x27,0xe8,0xcd,0xc4,0xad,0xc0,0x17,0x1b,0x75,0x35,0x49,0x92,0x85,0xa8,0x26,0x6f,0x8f, - 0x4e,0x8b,0x31,0xeb,0x47,0xfd,0x4e,0x85,0x9a,0x68,0xa3,0x55,0xf8,0x6b,0xeb,0xc4,0x29,0x4d,0x2c,0x93, - 0xf3,0xfa,0x3c,0xb0,0x80,0xcc,0x99,0x0c,0x01,0x7c,0x67,0x36,0xd8,0xb3,0xc7,0x2e,0xb1,0xbf,0xb0,0x62, - 0x31,0x5f,0xd9,0x2f,0x7f,0xa3,0xff,0xea,0x2a,0x3d,0x27,0x52,0x3d,0x85,0xbc,0x5d,0x86,0xf0,0x33,0x2a, - 0xa6,0xfd,0xee,0xf6,0xb9,0xb1,0x08,0xc8,0x64,0xf6,0xe6,0x35,0x59,0x63,0x0d,0x00,0xf4,0x55,0x0b,0xb8, - 0x97,0xec,0x01,0xfc,0xe7,0xe6,0x39,0x71,0x73,0xf9,0xfa,0xe5,0x82,0xa9,0xa6,0xb6,0xf9,0x6f,0xae,0xc4, - 0xbd,0x68,0x30,0x55,0xc8,0xbc,0xdc,0x30,0x56,0x73,0xe9,0x5e,0xe5,0x5f,0x26,0x65,0xcb,0xee,0xc3,0x6a, - 0xf0,0x7c,0xeb,0xb7,0x6a,0xda,0x4b,0x6e,0xac,0x8e,0x91,0x6e,0x6a,0xb4,0x9e,0xbb,0xa5,0xfc,0xa7,0x76, - 0xa2,0x5e,0xcc,0x74,0x46,0x23,0xc3,0x8f,0xf6,0x42,0xe7,0x71,0xb3,0xb7,0x37,0x6a,0xcf,0x65,0xee,0xa6, - 0xc1,0xad,0x1f,0xad,0xdb,0xe6,0xaa,0x17,0x69,0xaf,0xdf,0x21,0x0d,0x90,0xbd,0x15,0x61,0x7f,0xb4,0xb5, - 0xd6,0x12,0xd7,0x57,0xd5,0xde,0x8b,0x6b,0x6e,0x18,0xea,0x5b,0xde,0x05,0xf7,0x8f,0x2d,0xaf,0xd9,0x3c, - 0xdb,0xa5,0x1b,0xc0,0xfe,0xb1,0x4a,0x1a,0x1b,0x69,0xbb,0xae,0x1a,0xcc,0x7f,0xac,0xa6,0xda,0x5e,0x6a, - 0xd4,0x03,0xe5,0x32,0xed,0xd5,0xa9,0xa6,0x6b,0x44,0xcc,0x55,0x6a,0x6b,0x82,0x81,0xb7,0x96,0xe3,0x6b, - 0x68,0xd0,0x42,0x7f,0x03,0x39,0x72,0x21,0xcf,0x64,0xd9,0x10,0x85,0xd3,0x11,0x0c,0x37,0xc2,0xac,0xd1, - 0x58,0xba,0xfc,0xd6,0xa5,0xc4,0x5a,0x5c,0xe2,0xc0,0x68,0xaa,0xf0,0x1d,0x94,0xa9,0x1b,0xaa,0x91,0x70, - 0xcd,0x5a,0xdb,0xc5,0x60,0x89,0xe1,0x0d,0x35,0xc9,0xbf,0x85,0x7d,0xc7,0x51,0x45,0x52,0xd5,0x29,0xa0, - 0x44,0xc7,0xdd,0xad,0x93,0xfd,0x63,0xcb,0x32,0x8c,0xc5,0x60,0x88,0x55,0x31,0x4d,0x44,0xe2,0x1d,0x56, - 0x20,0x70,0xdb,0x70,0xb4,0x53,0xcd,0x25,0x29,0x22,0x85,0x13,0xd7,0x54,0xcb,0xb7,0x31,0x6c,0xe0,0x96, - 0x9e,0xd8,0xb8,0x56,0xdd,0x2a,0x1a,0x1b,0x3e,0x60,0x55,0x59,0x4f,0xff,0x2b,0xf4,0x02,0xf6,0x52,0xe2, - 0x9b,0xc0,0x58,0x70,0x38,0xce,0xc3,0x5f,0xe9,0xe1,0xc3,0x5c,0xd4,0x84,0x68,0xe1,0x08,0x05,0x2b,0x4e, - 0x0e,0x57,0x8d,0x79,0x44,0xc1,0x26,0x0c,0xb8,0x21,0xa5,0xa3,0x4c,0x41,0xc7,0x59,0x7c,0x15,0x1c,0xf8, - 0xff,0x0a,0x87,0xc7,0x97,0xc7,0xfb,0x27,0xeb,0xde,0xa8,0x1b,0x1c,0x9c,0x55,0xda,0xe6,0x63,0x68,0x3e, - 0x2c,0xc1,0xa7,0x2e,0x1b,0x57,0xce,0x3c,0x57,0xa2,0xee,0xb1,0x1c,0x8e,0x11,0xef,0x67,0xa5,0xad,0xbb, - 0xfd,0xdb,0x01,0x9c,0x05,0x68,0x8a,0xd3,0xae,0x27,0xf7,0x62,0x4e,0xbd,0xf0,0x8a,0xf8,0x52,0x0b,0xf1, - 0xf4,0x2c,0x11,0xe1,0x59,0x25,0x0a,0x35,0x1e,0x8a,0x7b,0x04,0x5d,0x4b,0x0d,0xd6,0x60,0xf1,0xe7,0x1c, - 0xcd,0x0c,0x5a,0xec,0xea,0xa8,0xf3,0x04,0x0a,0xed,0x10,0xb9,0x89,0xa5,0x77,0x32,0xe9,0xb0,0x8a,0xbb, - 0xf6,0x61,0xb8,0x88,0xaa,0x02,0xfd,0x69,0xb4,0xd0,0x61,0x53,0xb8,0x6f,0x8b,0xc6,0xf1,0x87,0xa8,0xe4, - 0x22,0xa2,0x5f,0x34,0xaf,0x31,0xe7,0x7a,0x22,0x89,0xa1,0xf3,0xcd,0x30,0x9d,0x9d,0x47,0xc3,0x9c,0xab, - 0x29,0x14,0x8d,0x06,0xb1,0x35,0x89,0x5e,0xa9,0x69,0x10,0xc6,0x15,0xeb,0x57,0x5f,0x2c,0xad,0x68,0x5b, - 0x5f,0xae,0xba,0xe0,0xb7,0x42,0xbc,0xf5,0x19,0xb5,0x81,0x58,0x2a,0x2d,0xa0,0x28,0x19,0x14,0xda,0xc2, - 0x0c,0xf1,0xd2,0x1b,0x6d,0xd9,0x21,0x6f,0x61,0x08,0xb3,0xc1,0xdc,0xed,0xe4,0x36,0x96,0x28,0x58,0x95, - 0xda,0x7c,0x56,0x02,0x4d,0x80,0x30,0xa0,0x3f,0x2d,0x25,0x88,0x3b,0x1a,0x66,0x55,0x09,0x1d,0x70,0x7e, - 0x1c,0x8e,0x9b,0x7d,0xda,0x82,0xd4,0x8a,0x42,0xd4,0xfe,0x87,0x9a,0x6a,0x86,0xfb,0x77,0xfb,0xf1,0xfe, - 0x7e,0xe7,0xc1,0x61,0x3f,0x80,0xea,0x9f,0xa3,0x92,0x1a,0x77,0xef,0x32,0x1f,0xbe,0x63,0x55,0x6b,0x3c, - 0x7d,0xfd,0x92,0x6a,0xd4,0xa6,0xdd,0x21,0xe4,0xb0,0xf4,0x5b,0x5a,0x66,0x3a,0xb1,0xd1,0xe8,0x2a,0xa8, - 0xc8,0x94,0xe6,0x3a,0x9b,0x37,0xd9,0x80,0x62,0x3d,0xe1,0x8a,0xa5,0x0c,0xf1,0xf9,0xf2,0x7a,0x78,0x5d, - 0x7d,0x3e,0xbc,0x6a,0x9d,0x96,0xb9,0x03,0xb2,0x35,0x65,0xa9,0xd2,0x2a,0x4b,0xe5,0x95,0x7d,0xfd,0x36, - 0x2c,0x52,0xf7,0x09,0x75,0x14,0xda,0x0f,0x74,0x7d,0xda,0xeb,0x38,0xbb,0x71,0x6d,0xb0,0x35,0xdf,0x47, - 0xd0,0xff,0xe5,0xf9,0x4e,0x1a,0x2a,0xc0,0x10,0x4b,0xe9,0xee,0x0a,0xb4,0x06,0x34,0x85,0xba,0xa7,0x05, - 0x8e,0x10,0xee,0x96,0xde,0x4d,0x2d,0x94,0x26,0x1b,0x65,0xdb,0xe1,0x24,0xc6,0x5c,0xa8,0x79,0x30,0xb4, - 0x60,0x33,0xa3,0x1d,0xb7,0xbd,0x6c,0xc9,0xf5,0xcb,0x06,0x3c,0xa3,0x8f,0x84,0xd6,0xc5,0xca,0xff,0xee, - 0x62,0xb9,0xf4,0x7e,0x2a,0x67,0xd6,0x47,0x56,0x06,0xbd,0xc9,0x55,0xd1,0xe0,0x43,0x9a,0xa3,0xac,0xce, - 0xff,0xc1,0xf6,0x91,0x92,0x88,0x7a,0x5f,0x35,0xbb,0xf6,0xba,0x96,0x0b,0x5f,0x37,0xd5,0x90,0x08,0x84, - 0x9e,0xd7,0xdc,0x83,0xe3,0xd6,0x09,0xb6,0x56,0x47,0x62,0xbe,0xbb,0x05,0x16,0xf7,0xfa,0x4b,0x0d,0x16, - 0xf1,0x70,0xe9,0x82,0xc5,0xb2,0x7b,0xaf,0xd2,0xd8,0x1b,0x54,0x52,0xb1,0x94,0x15,0xaf,0x8f,0x02,0x95, - 0xfb,0x1a,0x67,0x38,0xe0,0x32,0x16,0x8a,0x83,0xda,0xb6,0xf0,0x10,0xd3,0x91,0x97,0x72,0x87,0xe5,0x9c, - 0x6f,0xc0,0x70,0xbd,0xd7,0xae,0xd2,0xf2,0x10,0x92,0xc9,0xad,0xfe,0xde,0xee,0x17,0xba,0xbf,0xec,0x1f, - 0xa1,0xea,0x6f,0xd1,0xbd,0x6d,0xc1,0x38,0xb5,0xfd,0x1a,0xeb,0x8e,0xa5,0x9f,0x0a,0xc7,0x2a,0xb1,0x3d, - 0x37,0x81,0x66,0xd2,0xe6,0x4c,0x37,0x51,0xaf,0x63,0x2a,0x2d,0x16,0x6a,0x5b,0xbd,0xbe,0xd3,0xcf,0x75, - 0xaf,0x0b,0xd8,0x18,0x55,0xbd,0xce,0xbb,0x77,0xcc,0x15,0x5b,0x03,0xbb,0x15,0x41,0x85,0xd9,0xea,0x00, - 0xca,0xd2,0x24,0x5c,0xf1,0x8c,0xb6,0x98,0xfc,0xf2,0x3a,0x1d,0x75,0xd9,0x60,0x38,0x70,0x6e,0x9a,0x84, - 0xa4,0x51,0x25,0x7d,0xad,0xe9,0x4e,0xb5,0x10,0x8a,0x96,0xf7,0x73,0xa8,0x6d,0x42,0x70,0x90,0x3f,0x36, - 0x2a,0x5b,0x5e,0x5f,0x19,0x3b,0xc8,0x6c,0xa9,0xa5,0x29,0xa1,0xd9,0xd6,0xe6,0xfa,0x94,0x4a,0x66,0xbd, - 0x55,0x99,0xce,0x7b,0xe2,0x13,0xf1,0xda,0xde,0xb6,0x0d,0xbe,0xce,0x24,0xdc,0x30,0xfa,0x06,0x9b,0x70, - 0xed,0x24,0x5c,0x5b,0x69,0x6d,0x00,0xdb,0xb5,0xb5,0x4e,0xc6,0xdf,0xae,0xec,0x9a,0x49,0x69,0x1f,0xc4, - 0xd6,0xdc,0x88,0xa6,0x49,0xfa,0xc1,0xb6,0xdf,0x42,0x90,0x18,0x62,0x15,0x5e,0x06,0x53,0x02,0x58,0x20, - 0x6d,0xa2,0xd2,0x97,0x01,0xe4,0x9d,0x30,0x36,0xe5,0x4b,0x04,0x21,0x66,0xf1,0x1d,0x2e,0xc1,0xdc,0x8f, - 0xdb,0x5c,0x02,0xd2,0x61,0x5d,0xd0,0xf5,0x4e,0x4e,0x10,0x29,0xc1,0x1c,0xb0,0xdb,0x02,0xdc,0xe1,0xca, - 0xe2,0x2f,0xf8,0x73,0xfa,0x68,0x46,0x16,0x13,0xb6,0x68,0x57,0xfa,0x31,0x94,0x8e,0xd5,0x5c,0xf3,0xcd, - 0x5b,0x32,0xbe,0x93,0xc9,0x16,0x2a,0x60,0xee,0xc3,0x76,0xfc,0x9a,0x6a,0x45,0x61,0x51,0x6a,0x74,0xaf, - 0x3b,0xb6,0xe6,0xb4,0x3a,0x08,0x9a,0x47,0xe1,0xb5,0x12,0x1b,0x95,0x5d,0x7f,0x36,0x16,0xff,0x27,0xce, - 0x46,0x71,0x51,0x98,0xd8,0xb3,0xb1,0x80,0x89,0x7f,0x7d,0x5e,0x26,0xad,0xa4,0xc9,0x75,0x38,0xfd,0xe8, - 0x7a,0x9c,0x7e,0x34,0xd2,0x86,0x15,0x2e,0xda,0xca,0xb7,0xcc,0x94,0x8c,0xfd,0xc3,0x60,0x4b,0x97,0x1e, - 0x86,0xda,0x03,0x89,0xfe,0x8c,0x4b,0x7e,0x18,0x16,0x71,0xd4,0x12,0x78,0x87,0xe0,0xda,0xf8,0x38,0x73, - 0xde,0x11,0x97,0x94,0x5e,0x38,0xea,0xaa,0x2f,0x05,0x39,0xe0,0xaa,0x98,0x2f,0x65,0x1f,0x31,0x5f,0xca, - 0xc4,0x7c,0x49,0xca,0x04,0xaa,0xe5,0xfb,0xd1,0x48,0xb7,0xc6,0x56,0x4b,0x1a,0x1e,0x11,0xdc,0x9e,0x23, - 0x97,0x36,0x10,0x8f,0x2b,0x51,0xb8,0x01,0xed,0xd4,0x64,0x0a,0xd7,0x22,0x9d,0x6b,0x2a,0xac,0x61,0x89, - 0x66,0x4d,0xad,0x08,0xe7,0x6f,0x55,0x74,0x0d,0xb2,0x69,0xeb,0xfa,0xf5,0xa8,0x46,0x5a,0xfe,0x7f,0x8a, - 0x68,0x9a,0xb7,0x41,0xd7,0xa0,0x99,0x96,0x6c,0x15,0x92,0x71,0x27,0xf0,0x46,0x14,0x93,0x7d,0x22,0x8a, - 0xa9,0x55,0x7a,0x23,0x82,0x91,0xdc,0x37,0xa3,0x97,0x86,0x2c,0xf7,0xff,0x3a,0x72,0xc9,0x6e,0x46,0x2e, - 0xed,0xae,0x95,0xfe,0x3f,0x72,0x69,0x41,0x2e,0x99,0x45,0x2e,0x5a,0x13,0x44,0x0c,0x05,0xb4,0x08,0x28, - 0x25,0x82,0xcf,0x99,0x58,0xf5,0x73,0x40,0xf3,0x1c,0x5f,0xc4,0xe9,0x3c,0x3e,0x4d,0xe7,0x29,0xbe,0x47, - 0x57,0xf5,0xf3,0x32,0x7c,0x5f,0xbb,0x09,0x0c,0x4f,0xb0,0x34,0xac,0xd1,0x3b,0x9f,0xbb,0x71,0x7b,0xe1, - 0x8b,0x61,0x16,0x11,0x14,0x5e,0x10,0xec,0x53,0xd2,0xde,0x9e,0x06,0xb8,0x99,0x49,0x31,0x26,0x96,0x3d, - 0x2f,0xe0,0x11,0x95,0xa6,0x1a,0x09,0xc9,0xd4,0xd6,0xdf,0xf7,0x54,0xba,0xea,0xad,0xb7,0x2b,0xfa,0xab, - 0x57,0x04,0xa5,0xe1,0x75,0x02,0x57,0x64,0x81,0x13,0x9b,0x2c,0x9a,0x5d,0x53,0x65,0x56,0xab,0xb2,0xdc, - 0xae,0x6f,0xfb,0x7e,0xcc,0xbd,0xf9,0xf9,0x3f,0x02,0x7e,0x5a,0x6f,0xd5,0x58,0x64,0x57,0xfc,0x14,0xb1, - 0x2d,0xc4,0x85,0x5a,0xb3,0xaf,0x26,0xad,0x5e,0xba,0xbc,0xca,0x66,0x53,0x59,0x45,0x7c,0x7c,0x8c,0xe3, - 0xcf,0x1b,0xe4,0x16,0x83,0x93,0xb6,0xb1,0x65,0xa9,0x65,0x70,0x52,0x77,0x98,0x29,0xd8,0x32,0xcd,0xe5, - 0xd7,0x87,0x99,0x3b,0xec,0x59,0x8e,0x71,0x5a,0xeb,0xb4,0x7c,0x6b,0x9c,0x2a,0xb3,0x23,0x2d,0x3e,0x67, - 0xa4,0xc9,0xe7,0x8f,0x54,0x23,0xcb,0x7a,0x5f,0x0b,0x66,0x9e,0x12,0x65,0xf5,0x7e,0x8b,0x2d,0xde,0xf1, - 0xd3,0x7b,0x35,0xf9,0xef,0x85,0xb1,0x8a,0x27,0x36,0x36,0x7b,0x13,0x07,0xba,0x5a,0xb8,0xdd,0x4f,0x1d, - 0x47,0xcb,0xde,0xfb,0xef,0x1d,0x47,0x76,0xf3,0x38,0x60,0x73,0xfd,0x2e,0xcd,0xfc,0x53,0x3c,0x5a,0xe3, - 0x3f,0xdf,0xc3,0x3e,0xe7,0x08,0x0d,0x63,0x1d,0xd5,0x9d,0x1d,0x87,0xcd,0xaa,0xf8,0x63,0xfe,0xa5,0xb8, - 0x59,0xbc,0xd4,0x5a,0x3b,0xd4,0x5f,0xab,0x3a,0x20,0x46,0x51,0xcf,0x41,0x0a,0xbd,0x2a,0x0b,0x2a,0x7c, - 0x46,0x98,0xb2,0x5f,0x88,0x7d,0x54,0xd1,0xd3,0xd1,0xc4,0x81,0x19,0x35,0xae,0x8b,0xbc,0xaf,0x7a,0x77, - 0x7a,0x77,0x3c,0xd5,0x66,0xaa,0x25,0x91,0x9e,0xf7,0xf6,0x74,0xc4,0xe7,0x5f,0x11,0x83,0xa6,0x7a,0xee, - 0xad,0x96,0x89,0xff,0x9c,0x10,0xb3,0x56,0x1f,0xb2,0xd6,0x2e,0x57,0x49,0x16,0x5e,0x71,0x54,0xcd,0xd0, - 0x7b,0x55,0xc6,0x69,0xb1,0xf4,0xd4,0xf2,0xfd,0xb2,0x4c,0xce,0x9f,0x3e,0xa6,0x14,0x7e,0xea,0x3c,0x7d, - 0xec,0xa9,0x69,0x5a,0x9c,0x5f,0xc6,0x45,0xf2,0xab,0xf4,0x25,0xf4,0xbe,0xd5,0x09,0x1d,0xdd,0xbb,0xb0, - 0xe3,0xa9,0x71,0xbe,0x78,0x2f,0x91,0x33,0xbc,0x47,0xe6,0xb1,0xf3,0xbf,0xfe,0x67,0xe7,0xf6,0xe1,0xd1, - 0x57,0x9d,0xe7,0x71,0xf1,0xb6,0x73,0x11,0x67,0x9d,0x9f,0x93,0x6c,0x79,0x99,0xaf,0x26,0xb4,0xad,0xe6, - 0x79,0x0c,0x8f,0x5b,0xa1,0xf7,0x72,0x9e,0xc0,0x70,0x90,0xa3,0x19,0x74,0x74,0x6a,0x47,0x26,0x4a,0x87, - 0x7c,0xef,0xf5,0x7a,0x9e,0xe2,0x95,0xfa,0x86,0x83,0x6e,0x84,0xde,0x43,0xbc,0xd4,0xd2,0x5e,0xc5,0x17, - 0x5c,0x9b,0xfc,0x72,0x89,0xcb,0x74,0x9a,0xd2,0xc0,0xca,0xd5,0x32,0xbc,0x8a,0xc7,0x70,0x50,0xb9,0xc8, - 0xd3,0xac,0xb4,0x83,0x7e,0xf8,0x12,0x1d,0x9f,0xa4,0xcb,0xf8,0x94,0xce,0x8c,0xd0,0x7b,0xac,0x9f,0x88, - 0x5a,0x60,0x6f,0x17,0x79,0x86,0xe8,0x74,0x36,0xfb,0x6f,0xe9,0xb7,0xe9,0x35,0x05,0x54,0x8a,0x40,0x23, - 0xde,0xd3,0x09,0x2e,0x6d,0xb3,0xfc,0xd5,0x2b,0x9e,0x41,0xfa,0xdb,0x81,0x69,0xe8,0x34,0xa7,0x45,0xa3, - 0xb9,0x1d,0xc7,0x19,0x02,0x48,0xc0,0xd4,0x82,0x0a,0xbf,0xa2,0xd7,0xce,0xd8,0xbc,0x63,0x02,0xb3,0x8c, - 0x80,0xeb,0x5b,0x3a,0x3c,0xf1,0x59,0x7e,0x3b,0x65,0xde,0xd1,0x1f,0x6c,0x0e,0xea,0xd7,0x8f,0xf9,0x92, - 0xe7,0xd9,0xbc,0xd3,0xb4,0x2d,0x4b,0xee,0x99,0xce,0xa3,0x7b,0x67,0xdf,0x10,0x9b,0x63,0xa9,0xa7,0xa2, - 0x8c,0x4f,0x5f,0xdb,0x55,0xa7,0x14,0x4f,0xe9,0x01,0x3e,0x92,0x00,0x2f,0x1d,0xc9,0x48,0xb3,0x40,0x14, - 0x02,0xc2,0x3c,0xd4,0xca,0xbc,0xd6,0x69,0x28,0x75,0x9e,0x98,0x44,0x7a,0xf4,0xd4,0x79,0x8e,0xbe,0xe8, - 0xa4,0xe7,0xfc,0xe2,0x6d,0x9c,0x5e,0xbb,0xd5,0x54,0x7d,0xaf,0x9a,0xaf,0x86,0xc3,0xe2,0xf4,0xa4,0xe4, - 0x66,0xdc,0x95,0xf3,0x9e,0x64,0x98,0xf0,0x8e,0xa4,0x75,0x38,0xb1,0x96,0xe3,0x7b,0xce,0xf5,0x70,0x3e, - 0xcf,0x2f,0x97,0x34,0xef,0xf0,0x95,0x24,0x7b,0xb6,0x53,0x75,0xa3,0x33,0x2d,0xf2,0xf3,0xce,0xfb,0x7c, - 0x55,0x74,0x26,0xc9,0x45,0x3a,0x4e,0x30,0xc9,0xc0,0x38,0x1d,0xd9,0x05,0xda,0xdd,0x08,0x17,0xaf,0x81, - 0x61,0x67,0xb1,0x2a,0x16,0xf9,0x32,0x59,0xf6,0x3a,0xaf,0x67,0x89,0xc9,0x5d,0xcf,0x42,0xb5,0x68,0xfa, - 0x87,0x6a,0xa0,0xf7,0x59,0x59,0x2e,0xc2,0x83,0x83,0xa3,0xaf,0x6f,0xf7,0x8e,0xbe,0xfc,0x67,0xef,0xa8, - 0x77,0xf7,0xa0,0x73,0x39,0x4b,0x32,0xb4,0xdf,0xc1,0x16,0xb2,0x4b,0x84,0x5e,0xa4,0x25,0x55,0xcd,0x27, - 0x78,0xd9,0xc9,0xa7,0xd3,0x4e,0xbc,0xec,0x2c,0x73,0x38,0x70,0x58,0x76,0x34,0x44,0xa2,0x73,0x09,0x5a, - 0x31,0xcd,0x26,0x13,0x85,0xcf,0x54,0x80,0x12,0xd9,0x10,0x39,0x19,0x23,0x15,0xb7,0x76,0x71,0xf6,0x9e, - 0xb6,0xd5,0xfb,0x5e,0xe7,0x0f,0x6a,0x0c,0xe0,0x16,0xcf,0xe9,0x75,0xd9,0xb1,0xe4,0x4d,0x47,0x10,0x51, - 0x07,0x14,0x38,0x7a,0x7b,0xfa,0xbe,0x03,0x4d,0x24,0x6c,0xc0,0x72,0x56,0x9f,0xe6,0x8e,0x8e,0x77,0xb3, - 0xca,0x88,0x09,0xe3,0xaf,0x3f,0x3e,0x79,0xdc,0x99,0x63,0x9b,0x2f,0x3b,0xab,0x05,0x6d,0x37,0x77,0xcf, - 0x98,0x85,0x72,0x7b,0x5d,0xcb,0x21,0x0b,0xa5,0x97,0xbc,0x6d,0xf6,0x69,0x36,0x78,0x89,0xf2,0xcb,0xac, - 0x83,0x9d,0xd7,0x29,0xd8,0x1d,0x4f,0xaf,0xa3,0xd1,0x05,0x47,0x59,0xe2,0x7e,0x60,0x9f,0x29,0x02,0x99, - 0x25,0x61,0x96,0x62,0x42,0x83,0x9e,0xd0,0x99,0x51,0xd0,0x97,0xe6,0xf2,0x9d,0x26,0x04,0x16,0xe8,0xe8, - 0x32,0x9d,0xc8,0xf6,0xf4,0x94,0x29,0x46,0x68,0x48,0x3f,0xd1,0x36,0x9a,0x8d,0x17,0xa1,0xf7,0x0b,0x35, - 0xf2,0xf8,0xfb,0x47,0x2f,0xe5,0x5d,0x03,0xd6,0xaa,0xcc,0xcf,0xe1,0x07,0x07,0xf1,0x50,0x68,0xda,0x97, - 0xe9,0x59,0x46,0x0b,0x9e,0x75,0x9e,0xbe,0xec,0xe8,0x80,0xcd,0xed,0xc0,0x24,0x4b,0x40,0x67,0xdf,0x29, - 0x4d,0x0b,0x16,0x85,0x26,0x94,0x32,0xbe,0x4d,0x92,0x85,0x5e,0x08,0xcc,0xec,0x1c,0xe5,0x01,0x18,0xb0, - 0x17,0x20,0x30,0x89,0x4b,0xbc,0xdd,0x22,0x28,0x99,0xe4,0x40,0x6a,0x84,0x67,0x16,0xba,0x19,0x42,0x36, - 0xb6,0x49,0x1a,0xd1,0xea,0x34,0x4b,0xca,0xf3,0x78,0xf9,0x96,0xc6,0xc5,0xcf,0x1d,0xbc,0x78,0xea,0x8c, - 0xce,0x16,0x5a,0xf2,0xd0,0xfb,0x4e,0x1e,0x3c,0x35,0x23,0x4c,0x21,0xc6,0x5b,0xdf,0xeb,0xa7,0x2a,0xed, - 0x65,0xe5,0x6c,0x94,0xd0,0x87,0xb6,0xd7,0xa2,0x9a,0xc6,0xb6,0xa5,0x8d,0x3d,0x0c,0xdc,0xcd,0x6c,0xce, - 0x03,0xbb,0x95,0xed,0x01,0x21,0x47,0x23,0xb0,0x4f,0x36,0xb7,0x88,0xf4,0x75,0x11,0x2f,0xb6,0x8e,0x9a, - 0x4f,0x3b,0x6b,0x92,0xff,0xda,0x51,0xf3,0x84,0x36,0x5e,0x7e,0x96,0x64,0xa7,0xf3,0xf4,0x6d,0xe7,0x2c, - 0xa1,0x95,0xa1,0xdd,0x73,0x9a,0x7c,0x48,0xcf,0xe8,0x58,0x2c,0x3b,0xf3,0x78,0x42,0x19,0x2e,0x18,0x2f, - 0x5b,0xc0,0x49,0xb6,0x4f,0x9f,0xd7,0x79,0x02,0xb8,0x49,0xb2,0xd6,0x13,0xe8,0x1b,0x5b,0x5f,0xbe,0x58, - 0xce,0xe3,0x38,0xfb,0x5b,0x87,0xd1,0x2f,0x69,0x49,0x87,0xf4,0x78,0x16,0xbf,0x4d,0xe6,0x9f,0x7e,0x22, - 0xd5,0x4b,0xe9,0x63,0xe9,0x15,0x75,0x62,0x01,0x93,0xc9,0x49,0xf3,0x70,0x4a,0xa9,0x93,0x67,0xc9,0x45, - 0x4e,0x34,0x45,0xd6,0x7e,0x40,0xc5,0x53,0x42,0xf6,0x79,0xb6,0x7d,0x3e,0x3d,0xa3,0x8f,0x67,0x09,0xa6, - 0x2b,0x29,0xb4,0xef,0x54,0x82,0x94,0xb7,0xa8,0xa7,0x79,0x4e,0xfd,0x5a,0xe5,0xa0,0xcc,0xf3,0xbc,0x40, - 0xa6,0xfa,0x59,0xf5,0x13,0x7a,0x82,0x9a,0xa4,0x2b,0x9f,0x72,0x5a,0x7d,0xbf,0x4a,0x27,0xe9,0x59,0xf2, - 0xb7,0x4e,0xab,0x37,0x93,0xc6,0x69,0xf5,0x4d,0x72,0x99,0x40,0xb7,0xf2,0xda,0xf3,0xaa,0x1a,0x83,0xed, - 0x80,0x33,0x2c,0x17,0x5c,0x1a,0x27,0xd6,0x43,0x17,0x87,0x12,0x83,0x2a,0x6b,0xc3,0xa0,0x53,0x65,0x9b, - 0x71,0xd6,0xe7,0x71,0xfc,0xb6,0xec,0xcc,0xb0,0x79,0x09,0x48,0xe7,0xe9,0x1b,0xc2,0xc9,0xe7,0x1d,0xcc, - 0xb1,0x9c,0x61,0xf6,0xb0,0x48,0x13,0x00,0x69,0x3c,0xe5,0x6f,0x04,0x81,0x74,0x5a,0x12,0xaa,0xc8,0xe2, - 0x18,0x27,0xda,0x87,0xa4,0x83,0x0d,0x66,0xf1,0x68,0x22,0xcb,0x82,0xaa,0xe8,0xe4,0xa8,0x52,0xed,0x01, - 0x02,0x77,0x91,0x9d,0xc7,0xf5,0x52,0x84,0x91,0x28,0xcb,0x69,0x92,0x21,0xd4,0x3b,0x16,0x39,0x8d,0x5b, - 0x8f,0x32,0xfa,0x4e,0x2d,0xbf,0x71,0x7b,0x36,0x4b,0x4e,0x01,0x54,0xe7,0x18,0x4c,0xaf,0xf3,0x4a,0xc6, - 0x2b,0xfd,0xc2,0x69,0x43,0x38,0x21,0x45,0x5f,0x79,0x9c,0x6e,0x1f,0xe8,0x18,0x43,0x28,0xcb,0x0f,0x29, - 0xc6,0x8b,0xdc,0x0c,0x9d,0xa7,0xc9,0x45,0x92,0xd2,0x29,0x43,0xe7,0x19,0x1d,0xbb,0x3f,0x24,0x9d,0xb7, - 0x74,0x00,0xb9,0xb5,0xe5,0xf9,0x5b,0x77,0x5a,0x09,0x53,0xd2,0xb1,0x9d,0x2f,0x30,0xd6,0xda,0xd4,0x13, - 0x4a,0x5d,0x60,0x4c,0x93,0x62,0xf5,0x16,0xd3,0x41,0x4c,0x08,0xba,0x3e,0x91,0x73,0x2c,0x06,0x34,0xd3, - 0x24,0x36,0x8f,0x31,0x67,0x8d,0xb1,0xa1,0xf9,0x20,0xd2,0x50,0xee,0xe4,0x93,0xe5,0xd3,0x79,0xb7,0x97, - 0x00,0x95,0xd3,0x14,0x25,0x04,0xad,0x8d,0xb3,0xec,0xd7,0xd5,0xbc,0x33,0x4b,0x79,0x83,0xd1,0x69,0x85, - 0x19,0xe1,0x7d,0x49,0xd9,0x2e,0xe3,0xf1,0xac,0xbc,0xcc,0x71,0xa0,0xa5,0x34,0x35,0x49,0x85,0x92,0x12, - 0xca,0xc9,0x11,0xe8,0x56,0x3c,0xad,0x9d,0x9c,0xb6,0x0d,0xf6,0x01,0x4f,0xc7,0xf2,0xda,0xe3,0xed,0x37, - 0x5b,0xa1,0x39,0xe0,0xbe,0x4b,0x4e,0x8b,0x15,0xe1,0xc1,0xea,0x90,0x9b,0xd5,0x0e,0x39,0x9a,0x53,0x06, - 0x30,0x3e,0x68,0x08,0xfb,0xd3,0x94,0x25,0x97,0xe9,0x9b,0x0f,0x80,0xb9,0x38,0xdb,0x1a,0x66,0xaf,0xf3, - 0x1b,0x01,0x20,0x15,0x4a,0xdf,0x64,0x0c,0xbb,0x97,0x44,0x27,0xd0,0xb0,0x9d,0xb5,0x42,0x31,0x5c,0xcf, - 0xd3,0x80,0xe8,0xcf,0x87,0xf4,0x0d,0xbe,0x5f,0x26,0x34,0xec,0x4b,0xc0,0x2e,0xbd,0x9c,0x27,0x89,0xc6, - 0xc7,0xa7,0xb0,0xc6,0xdd,0x3e,0xf0,0xe8,0xf1,0xda,0xe3,0x2e,0x29,0x3e,0xe5,0xc0,0x8b,0xcf,0xaf,0x39, - 0xf0,0x5e,0x01,0x43,0x52,0x3f,0x26,0xe6,0xc8,0x43,0x5b,0x9f,0x7b,0xe0,0x9d,0xa6,0x6f,0x2e,0x93,0xe2, - 0x2d,0xe3,0xb0,0x4d,0xe5,0x42,0x8e,0xa3,0x35,0x10,0xd3,0x62,0x39,0x5c,0x08,0x5d,0xb5,0x0f,0xa1,0x4a, - 0x19,0x9f,0x0e,0x10,0xea,0x7f,0x5e,0xf4,0xe6,0xb4,0x13,0x56,0xc4,0xa4,0x35,0x35,0xe3,0x3d,0x00,0x9e, - 0xd5,0xb3,0xb7,0x7a,0x89,0x41,0x5f,0x57,0xe7,0x5f,0x25,0xf3,0xd0,0xfb,0x07,0xa1,0x04,0x9a,0x39,0xaa, - 0x3a,0x2c,0x15,0xeb,0xad,0x5f,0x99,0x13,0x70,0xe7,0x50,0x2d,0xe5,0x98,0xda,0x39,0x32,0xc7,0xe2,0x53, - 0x82,0xef,0x31,0x9a,0x0d,0xbd,0xb5,0x47,0xcc,0x2c,0x92,0x89,0x61,0x3f,0xe3,0x59,0xa7,0x6c,0x31,0x73, - 0xbc,0xaf,0xe3,0x53,0xb8,0x67,0x13,0x14,0x6c,0xf8,0xbe,0xab,0xea,0x10,0xd7,0x95,0xf1,0x59,0x67,0x3e, - 0xbb,0x89,0x9b,0xfa,0x09,0xb8,0x08,0x89,0xfd,0x94,0x43,0x8b,0x9a,0x48,0x09,0x1c,0x0f,0x7b,0xfc,0x7f, - 0x75,0xd4,0xd5,0x72,0xe8,0xe3,0xe0,0xb0,0x9e,0xb5,0x8e,0xad,0xed,0x4a,0xf3,0x35,0xbc,0x8b,0x85,0x31, - 0x6c,0x5d,0x29,0xea,0xc2,0x06,0xe1,0x3c,0x76,0x7b,0xf0,0x1b,0x6f,0x8b,0x1d,0x6e,0x82,0xdf,0x1d,0x30, - 0xe3,0x77,0x03,0x5b,0xac,0xe6,0x47,0x15,0x26,0x8b,0x65,0x38,0xd4,0x36,0xaa,0xf7,0x0e,0x37,0x4a,0x3f, - 0x7e,0xea,0xd3,0x57,0x9f,0x5f,0xe4,0xf6,0xbd,0x1b,0x32,0x8e,0x68,0x46,0xd8,0x54,0x6f,0xcb,0x17,0xbe, - 0xb6,0x29,0xb2,0x3e,0x2c,0x19,0x70,0x61,0xb2,0xee,0x7b,0xfc,0xe8,0xd9,0xa8,0x33,0x3f,0x36,0xc0,0x02, - 0x57,0xfa,0x3d,0x21,0xe4,0x80,0xbc,0x64,0x09,0x11,0xb3,0xe6,0x5d,0x9a,0xb3,0x2e,0xb7,0xef,0x1d,0xc4, - 0x8b,0xf4,0x40,0xaf,0xba,0x17,0xf4,0x88,0xf6,0xce,0x6a,0xd6,0xd7,0xdb,0x5e,0x0c,0xb5,0x49,0xba,0x9f, - 0x58,0x09,0x87,0x24,0x05,0x9b,0xa0,0x27,0x4e,0x38,0xdc,0xf2,0xc6,0x77,0xe2,0x3c,0x3f,0xc3,0xf5,0x86, - 0x69,0x1b,0xce,0xe1,0x86,0xcd,0x6e,0x54,0x10,0xf1,0xb9,0x3d,0xa9,0x4a,0x7e,0x56,0x67,0x46,0xba,0x19, - 0xe9,0xc8,0x72,0x41,0xf3,0x3f,0x71,0x2d,0xcb,0x33,0x0e,0xc3,0x55,0xe6,0x8b,0xd6,0x89,0xd5,0x5b,0x24, - 0xda,0x39,0xda,0x40,0xcf,0x5d,0x8b,0x7e,0xb0,0x43,0x88,0xb0,0xac,0x58,0xe2,0x6b,0x64,0x64,0x65,0x4f, - 0xb6,0x33,0x3b,0x21,0x90,0x47,0xc8,0xbe,0xa5,0x2b,0x08,0xf2,0xb7,0x3d,0x29,0xaa,0xda,0x27,0xa5,0x33, - 0xe4,0x9e,0x49,0xad,0x6d,0x9c,0x5a,0x0e,0xe7,0x83,0xdd,0x4e,0xb5,0x0c,0x3a,0x51,0x36,0x58,0xfd,0x0b, - 0xa5,0x54,0xbb,0xad,0xf6,0xc9,0xa4,0xca,0xf6,0xab,0x7d,0x42,0x0a,0x76,0x63,0x2d,0x31,0x5d,0xb8,0x1b, - 0xb3,0xde,0x8a,0x4d,0xb7,0x7b,0xb5,0xf6,0x5d,0x27,0x6e,0x5a,0xe0,0xe2,0x93,0x56,0xba,0x51,0x0c,0x56, - 0x1b,0x66,0xce,0x65,0xf5,0x5a,0xf7,0xcf,0xb5,0x4b,0xa7,0x97,0x9e,0x36,0xd4,0x59,0x82,0x38,0xa1,0x26, - 0x01,0xd2,0x94,0x22,0x5a,0x26,0xe5,0x53,0xf0,0xb8,0xb4,0xb5,0xdd,0x26,0xb5,0x65,0x78,0xbd,0x74,0xb7, - 0xab,0xea,0x09,0xda,0x51,0xd8,0x51,0x68,0x93,0x6d,0x77,0x22,0xef,0xc0,0x73,0x8c,0xc0,0x3b,0xb7,0x5b, - 0xf3,0xec,0xd7,0xf2,0xdc,0x69,0xcd,0x73,0x7c,0x5c,0xcb,0x74,0xb7,0x35,0x13,0x1d,0x29,0xcd,0x91,0x12, - 0xda,0xbe,0x7d,0xef,0x90,0xa7,0x6b,0x7b,0x53,0xb8,0xb3,0x35,0x26,0x56,0xbf,0xb0,0x93,0xa0,0xef,0xd8, - 0xaa,0x29,0xa2,0x1a,0x68,0xdb,0x1b,0x9c,0x44,0x45,0xf4,0xe9,0xd2,0x66,0xbe,0x53,0x1d,0x3e,0x06,0x4a, - 0x7b,0xfa,0x74,0x31,0x3a,0xa2,0x2e,0x43,0xe2,0x19,0x03,0xfc,0xeb,0xca,0xca,0x71,0xa4,0x67,0x59,0xbb, - 0x43,0xbb,0x6d,0xdc,0x9e,0x19,0x88,0x23,0x5e,0xa1,0xaf,0x97,0x41,0x4f,0x10,0xff,0x58,0x9f,0x6b,0x72, - 0x87,0x69,0x66,0xb8,0x5e,0x18,0x7d,0x10,0x27,0x6b,0xa1,0x71,0x9c,0xd2,0xd6,0xcf,0x4d,0xfb,0x14,0xbc, - 0xae,0x05,0x38,0xff,0x9c,0x69,0xe8,0xf0,0x89,0xb0,0x9d,0x0d,0x64,0x6e,0xcf,0xf0,0x99,0x5e,0xf0,0x99, - 0xf3,0xf3,0x09,0x75,0x83,0x55,0xa5,0x7a,0xf5,0x7c,0x7d,0x42,0x01,0xe1,0x64,0x4d,0x91,0xdb,0x9f,0x52, - 0xa4,0xc6,0xe0,0x9a,0x92,0x77,0x42,0xf7,0xbe,0xaf,0x65,0x2c,0xe9,0xc2,0xc0,0xf7,0x27,0x34,0x51,0xe3, - 0x92,0x4d,0x13,0xf7,0x3e,0xa3,0xa4,0xe6,0x9a,0x4d,0xd1,0xe6,0xf2,0xdf,0xb4,0x3e,0x15,0x68,0xc0,0x1b, - 0x49,0xf3,0xd4,0xbe,0xe1,0x14,0x19,0x10,0xce,0xc1,0xce,0x22,0xee,0x84,0x10,0x4c,0xb3,0xb0,0xba,0x97, - 0xdc,0x09,0xc2,0xeb,0x8f,0xdb,0x03,0x4d,0x1d,0x36,0xd1,0x64,0xab,0xbb,0x67,0x73,0xea,0x96,0xce,0x8c, - 0x47,0xc9,0x67,0x9c,0xba,0x5b,0xb8,0xf8,0xe6,0xbe,0x43,0xa3,0x45,0xc8,0x5b,0x43,0xae,0x5f,0x33,0x1f, - 0xbc,0x5d,0xf4,0x9c,0xb8,0x48,0x1e,0x38,0xba,0x4e,0x1f,0x47,0x87,0xda,0x63,0x23,0x08,0x70,0xdc,0x68, - 0xc3,0x36,0xb2,0x6f,0x7c,0x80,0xfb,0xde,0x34,0xc5,0x8d,0x80,0x25,0xba,0x68,0xda,0xb4,0xd7,0xf0,0x6f, - 0xde,0x3f,0xe5,0xcf,0xd2,0x8f,0x6f,0x91,0x8d,0x3d,0x0d,0x25,0x4b,0xdc,0x65,0x6b,0x3b,0xef,0xab,0x52, - 0x06,0x14,0xde,0xf9,0x32,0xb9,0xab,0xf2,0xec,0x97,0x3a,0x6d,0x5e,0xb7,0x1f,0x6c,0x74,0x8c,0xdd,0x05, - 0x17,0xb8,0x79,0xf0,0x8f,0x0e,0x0f,0xbf,0x10,0x42,0x23,0x99,0x1c,0xc0,0xcf,0x60,0x19,0xc3,0x8d,0x53, - 0x7f,0x8b,0x4a,0x98,0x5a,0xb6,0x06,0x17,0x99,0xdb,0x87,0xa4,0xbb,0x06,0x9e,0x18,0x25,0x76,0x96,0x70, - 0xdd,0xf8,0x37,0x97,0x6c,0xab,0xd3,0x44,0x9c,0x3b,0x47,0xea,0xcd,0xf3,0xc6,0x71,0x5b,0x61,0x42,0x87, - 0xb5,0xc5,0x75,0xdd,0xe6,0x7f,0x03,0xa4,0x3f,0xb2,0xfe,0x60,0xdc,0x01,0x00}; + 0x73,0xf1,0xe3,0xb1,0xb9,0x94,0x3b,0xb6,0x8f,0x56,0x9c,0xca,0x17,0x3d,0xdd,0xd5,0x15,0x88,0x88,0x47, + 0xf7,0xe4,0x62,0x0e,0x7b,0xc3,0x51,0xf7,0x9a,0xb3,0x0b,0xdc,0xb3,0x71,0x6f,0x6e,0xcd,0x97,0x70,0x8b, + 0x00,0x25,0xb1,0x71,0x8b,0xab,0x54,0x4c,0x2e,0x6f,0xf2,0x7a,0xd4,0x11,0x52,0x59,0xf3,0x60,0x61,0xde, + 0x11,0xa7,0x0a,0xe5,0xd8,0xe5,0x24,0x18,0x12,0xa5,0x41,0xc5,0x82,0xf0,0xd8,0x88,0x84,0x38,0x9e,0x3e, + 0x72,0x5b,0x77,0xea,0x2f,0xc2,0x6e,0x0e,0xa7,0xc4,0xf3,0xe3,0x8e,0xf6,0x77,0xf1,0x4a,0xf5,0xdb,0x96, + 0x1b,0xff,0x36,0xdb,0xdf,0xdf,0x28,0xf9,0x8c,0xc5,0xe7,0x6b,0x6f,0xdd,0x3c,0xcf,0x36,0x27,0xd8,0xc7, + 0xad,0xf8,0x4c,0x1e,0x2e,0x2c,0x92,0x7b,0x2c,0xe7,0xc9,0xba,0xe2,0x89,0xbf,0x07,0xcb,0x06,0x9a,0x48, + 0xdc,0xbb,0x18,0x84,0xf2,0xa6,0x0c,0x9a,0x86,0xa9,0x51,0x94,0xb3,0x17,0xbd,0x1e,0xd8,0xb6,0x03,0x5b, + 0x59,0x05,0x61,0x36,0xe8,0xd9,0xad,0x02,0x20,0xce,0x47,0xf0,0x58,0x2b,0x09,0x1d,0x36,0x78,0x74,0xdb, + 0xfb,0xf7,0xca,0xa1,0xfa,0xc7,0x65,0x27,0x5a,0x5b,0x1c,0xbe,0x62,0xf6,0xa6,0xb8,0xe9,0xca,0x29,0xfc, + 0xd9,0xc0,0xad,0xbb,0xa5,0xf8,0x62,0x69,0xff,0xcd,0x84,0xef,0x71,0xaa,0x71,0x6d,0xb4,0xc3,0xa7,0xc4, + 0xe8,0xc9,0x91,0x5e,0x27,0x49,0xda,0xa0,0xc2,0xed,0x7d,0x13,0x8c,0xaa,0x5e,0x2b,0x63,0x19,0x70,0x47, + 0xd7,0xfb,0xdd,0xed,0x62,0x3f,0x76,0x1b,0xed,0xf6,0xc7,0xc9,0x2b,0xc5,0xea,0x55,0x50,0x6b,0x5c,0x4a, + 0x37,0xc5,0xf2,0xe1,0x65,0xe9,0x79,0xae,0x9c,0x2f,0x83,0x06,0xbd,0xe7,0x7a,0x9c,0x20,0xa0,0x66,0xd0, + 0xff,0xfd,0x71,0x20,0xd3,0x1c,0xd7,0xc4,0xb8,0xdc,0xeb,0xdf,0xd9,0x0e,0xc9,0x26,0x5c,0x29,0x5d,0x06, + 0x6e,0x7a,0x1c,0x4f,0xd1,0x83,0x8e,0x85,0x83,0x84,0xdd,0xa7,0xd1,0xa7,0xe1,0x35,0xcd,0x40,0x3e,0x2f, + 0xeb,0x8e,0xa8,0xf2,0x15,0xed,0xd9,0x17,0x75,0x76,0xa0,0x9e,0xd5,0xd9,0x43,0xf5,0x06,0x0d,0x3f,0x0f, + 0xb5,0x77,0x7c,0x2b,0xf7,0xa6,0xec,0xf7,0x78,0x45,0xac,0xe5,0x9b,0xda,0x6a,0xe0,0x68,0xaa,0x7e,0x5a, + 0x09,0x6b,0xc9,0x51,0xe2,0x02,0xe4,0x3f,0x19,0x42,0x72,0x1e,0xd6,0x7b,0x92,0x2b,0x06,0x22,0x2b,0x9e, + 0x71,0xe6,0x9d,0x1c,0x86,0x24,0xc4,0x48,0x63,0x1b,0x31,0x22,0xb3,0xb8,0x47,0x95,0x7d,0x94,0xe5,0x12, + 0xe8,0x28,0xf1,0x9f,0xd3,0x0b,0x72,0xe4,0x84,0x41,0xb2,0x3c,0x19,0x31,0xda,0xc0,0xf5,0x8f,0xc1,0xb6, + 0xc8,0x8a,0xce,0x16,0xd9,0xd8,0xa5,0x45,0xb0,0x6b,0xca,0x4d,0xf4,0xe7,0x76,0x11,0x32,0x5d,0x3b,0x1f, + 0xf3,0x33,0xb9,0xd3,0x57,0x69,0x73,0x6c,0x71,0xa8,0x59,0x73,0x94,0xd9,0x34,0xb5,0xe1,0x28,0x98,0x6d, + 0x38,0xe6,0x24,0x42,0xb3,0xaa,0xd6,0x48,0x0c,0xee,0xf9,0xcb,0xda,0x7f,0x6b,0x63,0xab,0x8f,0xb3,0x93, + 0x4b,0x1b,0x8c,0x43,0x79,0x1b,0x49,0x06,0xaf,0xa2,0xb4,0xf5,0xae,0xae,0xae,0x44,0x30,0x60,0x92,0x1b, + 0x3d,0x3f,0x95,0xf7,0xa1,0xad,0xe3,0x2e,0xfe,0x2c,0xdd,0x62,0x30,0x05,0x8f,0x50,0x98,0x2e,0x14,0x90, + 0x09,0x17,0x5a,0x7a,0x1c,0x67,0x73,0x76,0x76,0x28,0xd1,0xc6,0x7b,0x84,0x2d,0xac,0x7d,0x29,0x03,0xe8, + 0xb7,0xea,0xda,0xd6,0xe6,0xf2,0x95,0x4c,0xf7,0xea,0xaa,0x82,0xfc,0xa8,0x94,0x27,0x22,0x26,0x5a,0xff, + 0x0d,0x4b,0x2d,0xe4,0xc2,0x67,0x88,0x7d,0x02,0xd9,0x0d,0xd3,0x18,0x6d,0xb0,0xf1,0x6c,0x42,0x7f,0xd3, + 0x1e,0x70,0x29,0x8f,0xa4,0xcc,0xbb,0x43,0x0a,0x2e,0xa5,0x4b,0x3c,0x82,0xb0,0x33,0x92,0xa0,0xce,0xbe, + 0x19,0x1d,0x9b,0xfb,0x8e,0x86,0x2c,0x79,0x28,0x97,0x98,0x42,0x58,0xd5,0xb0,0xbd,0x44,0x66,0xa2,0xa1, + 0xe9,0xcf,0x1e,0x19,0x84,0x13,0x4b,0xb9,0xa7,0xeb,0x8e,0x06,0xe5,0xcc,0xb6,0xe3,0x13,0x78,0xf9,0x58, + 0x6b,0xdd,0x78,0xbd,0x70,0x6f,0x09,0xdd,0x41,0xdf,0xdd,0x70,0xb4,0x03,0x4b,0xac,0x94,0x8d,0xc0,0x19, + 0x1e,0x40,0xba,0x0f,0xea,0x72,0xe1,0x63,0x48,0x62,0x64,0x7c,0xb4,0x1f,0x4f,0x3b,0xe6,0xde,0x2a,0xbc, + 0xee,0xfa,0x6d,0x70,0x11,0x2c,0x22,0x44,0xac,0x79,0x2d,0x43,0x1b,0xc4,0xbf,0xfa,0xed,0xbe,0xd1,0x84, + 0x14,0xd2,0x63,0x0e,0x99,0x0f,0xd5,0x4b,0x24,0xb4,0x47,0x04,0x51,0x5e,0x11,0x90,0x1c,0x12,0x70,0x4b, + 0x4a,0xb8,0xfd,0x1b,0x29,0xbd,0x31,0xdd,0xbe,0xb4,0x9d,0xed,0xa9,0x6c,0x2b,0xd5,0x35,0x67,0x1b,0x08, + 0xca,0x92,0x9d,0xb7,0x21,0x71,0x25,0x72,0x7e,0x28,0x1f,0x70,0xaa,0x0d,0xd0,0x32,0x2a,0x44,0xd1,0x7a, + 0x20,0x46,0x39,0x1d,0x37,0x1f,0x99,0x20,0xd0,0x12,0x20,0x57,0x0d,0x10,0x24,0x77,0x01,0x85,0xe5,0x67, + 0xe0,0x68,0xdf,0x87,0x00,0x3a,0xf6,0x8c,0xc7,0xcb,0xe7,0xd1,0xb6,0x47,0x84,0x8c,0x44,0x6a,0x47,0x72, + 0x99,0x78,0xfd,0x03,0x54,0x17,0x36,0x64,0x85,0xa0,0x43,0x76,0x83,0x6f,0x74,0xb9,0x32,0xae,0x6b,0xae, + 0xe9,0x0a,0xf7,0x52,0xf1,0xde,0xaf,0x6c,0xf8,0xdd,0x77,0x30,0x9c,0xa6,0x71,0xd3,0xdc,0x7d,0x8c,0x39, + 0x9e,0x48,0xa2,0x58,0x73,0x43,0xd8,0x6c,0xde,0xb2,0xaa,0x91,0xfb,0x11,0x81,0xd4,0xee,0xc5,0x11,0x48, + 0x72,0xb8,0xdb,0x0f,0xcc,0x14,0x3b,0x3f,0x19,0xd2,0x12,0x66,0xd9,0xa2,0x91,0xe9,0xcf,0x41,0x7f,0xf4, + 0x3e,0x20,0x8e,0xd4,0xce,0xb7,0xb9,0x88,0xe0,0x02,0xab,0x32,0x39,0x4b,0x67,0xb1,0xe8,0xfb,0xe4,0xce, + 0x67,0x5b,0x2f,0x9a,0x00,0x54,0x4e,0x3e,0x87,0x4d,0x05,0x6e,0xab,0x18,0x69,0xc7,0xac,0xb5,0x1b,0x14, + 0xa3,0xf6,0x7a,0xe8,0xcd,0x83,0x5b,0x61,0xdf,0x75,0x47,0x30,0x60,0xf2,0x9e,0xf0,0x76,0x61,0x23,0xce, + 0x18,0xd7,0x6c,0xdd,0xac,0xe5,0x92,0x1e,0x22,0x16,0xf8,0x8e,0x67,0x22,0x76,0x34,0x5f,0xca,0xe6,0x05, + 0x2d,0x5d,0x78,0xe4,0xf5,0xee,0x91,0xc5,0x45,0x16,0x42,0xb8,0x19,0xaa,0x72,0x11,0x19,0xc7,0x85,0x13, + 0x8d,0xe5,0x59,0x79,0x58,0x1c,0xc1,0xd5,0xec,0x94,0x56,0x10,0x77,0xb4,0x5e,0xf2,0x4d,0xad,0x66,0xf9, + 0xd0,0xad,0x08,0xf7,0x64,0x3f,0x16,0x0a,0x06,0x1c,0x58,0xfa,0x38,0xb6,0xd3,0x40,0xf0,0x85,0xfd,0xaa, + 0x9d,0x8a,0xec,0x2e,0x50,0x3d,0xb6,0x05,0x7e,0xb6,0xf0,0x3e,0x84,0x77,0xeb,0xec,0x7b,0x84,0x4a,0xef, + 0x44,0xdf,0x70,0xdc,0x9b,0xc6,0xdd,0x31,0x83,0x33,0x5f,0x4d,0xaa,0xb4,0x82,0x6c,0x63,0x0c,0xc9,0x11, + 0xc6,0xc3,0x02,0xf0,0xb7,0xf0,0xdb,0xa4,0x2d,0x71,0xa6,0xce,0x88,0x4d,0x27,0x22,0xb6,0x30,0xa0,0x79, + 0x8a,0xb1,0x15,0xcc,0xfe,0x31,0x28,0xd8,0xbe,0x25,0xec,0xe3,0x45,0xfd,0x83,0x4d,0x0b,0x3f,0x6c,0x8b, + 0x82,0xf3,0x0e,0xf7,0x88,0xa0,0x7b,0x35,0x43,0xd9,0x66,0x18,0x8f,0x3a,0xbc,0x0b,0x0e,0xee,0x71,0x75, + 0xe8,0x13,0x37,0x13,0x3e,0xa2,0xe6,0x9b,0x22,0x99,0x7b,0xb5,0x29,0xb6,0x6b,0x62,0x16,0x38,0x84,0x3b, + 0x36,0x60,0xd4,0xe8,0x10,0x4d,0x3c,0xb0,0x63,0xf3,0x3a,0x1b,0x06,0x55,0x6d,0x04,0x4a,0x04,0x65,0x9b, + 0x08,0xd4,0x1a,0x00,0x1b,0x4a,0xc4,0xb5,0x00,0x17,0x25,0x49,0x11,0x0e,0xbc,0x9f,0x4b,0xe7,0xc4,0x66, + 0x0f,0x71,0x9b,0xd0,0xe7,0x6c,0x60,0x18,0x90,0xd6,0x63,0x17,0xf7,0xa9,0xfc,0x6c,0x61,0x06,0xef,0x61, + 0x2b,0x99,0xeb,0x38,0x20,0x95,0xe9,0xf8,0x10,0xd0,0xa5,0xfd,0xf1,0x57,0x0a,0x1b,0x34,0x55,0x26,0x1d, + 0x6b,0xb9,0x7b,0x6c,0x18,0xd7,0x4d,0x92,0x8b,0x9c,0xb2,0xdf,0xba,0xa9,0x43,0x8a,0x73,0xb9,0xf3,0xc8, + 0x47,0x72,0xe1,0xc5,0x65,0x42,0x4e,0xee,0x97,0xc6,0x75,0x10,0x72,0x8d,0xbb,0x28,0xa2,0xf6,0x6d,0xc8, + 0x55,0x03,0xbb,0x41,0x51,0xe7,0x3b,0x57,0x78,0x05,0xae,0xf6,0x32,0x41,0x65,0xfd,0x21,0x42,0xb3,0x99, + 0xda,0x49,0xdd,0x38,0x84,0x72,0xfc,0x7c,0x28,0x40,0x59,0xf6,0xe0,0xbf,0x71,0x09,0x7b,0xfa,0x60,0xdc, + 0x19,0x4e,0xd5,0x31,0x46,0x97,0x91,0xf4,0xed,0x44,0x92,0xae,0xcd,0x47,0xdb,0xb7,0xf9,0x30,0xd0,0x41, + 0x15,0xc0,0x17,0xd8,0x88,0x67,0x04,0x66,0x0c,0xed,0x75,0xd8,0x1e,0x59,0xad,0x81,0x4f,0x09,0x82,0x40, + 0x95,0xd8,0x90,0x46,0xdb,0x04,0xa0,0xe6,0x82,0x5d,0xc2,0x6c,0xdf,0xdf,0x0c,0x44,0xb9,0x5d,0x5b,0xc7, + 0x7b,0x55,0x4f,0x28,0xa6,0x03,0xe3,0x4c,0x99,0xa1,0x7b,0xd5,0xe9,0x29,0x0f,0x50,0x59,0x2b,0xa1,0x3a, + 0xb8,0x3a,0x6d,0x6d,0xfc,0x50,0xa8,0xe6,0xc0,0x7b,0x91,0x28,0x6b,0x55,0xcb,0xc0,0xf0,0x61,0xdd,0x6f, + 0xf4,0xf4,0xb4,0xd7,0x26,0x58,0xd1,0xbe,0xd1,0x52,0xd2,0x81,0xea,0xcf,0x91,0xa2,0x68,0x7c,0x68,0xf6, + 0x7b,0x5e,0x5a,0x1b,0x41,0x0d,0xcd,0xf4,0x63,0x7c,0x38,0xf6,0x74,0x77,0xa2,0x8c,0x0b,0x57,0x77,0xea, + 0xbb,0x97,0x56,0xd8,0x96,0xbd,0x49,0x47,0x7f,0xa5,0x84,0x94,0x35,0xc5,0xb4,0x83,0x87,0x2a,0xbc,0xe4, + 0x32,0xc7,0x49,0x43,0xd9,0x71,0x95,0x15,0xb0,0xd0,0x80,0xdd,0x02,0xae,0x2f,0x3a,0x2d,0x7b,0x57,0x5d, + 0xe6,0x1b,0x57,0x5d,0x0e,0xac,0xa8,0x5e,0xf4,0xf8,0x5f,0x2f,0xaf,0x67,0x8e,0xa7,0x3b,0x96,0x12,0x0e, + 0x64,0xf6,0xd0,0xfb,0xe6,0x60,0x02,0x88,0x4a,0xcb,0x80,0xaf,0x3f,0x8f,0xdd,0xba,0x50,0xeb,0x04,0xc4, + 0xfb,0xec,0xf1,0x6a,0x31,0xf4,0xa3,0x8a,0xb1,0x34,0xdf,0xd2,0x45,0x28,0xda,0x40,0x08,0x02,0x82,0x79, + 0x07,0x9f,0x27,0x31,0x91,0x7d,0xea,0x3e,0xb7,0xbb,0x75,0x2e,0xee,0x03,0x2c,0xdd,0x87,0x54,0x5f,0xe4, + 0xf8,0x5e,0xc9,0x26,0x9b,0x30,0x7e,0x5d,0x67,0xf4,0x1b,0xf2,0xf5,0x7d,0xd5,0x8d,0x10,0x10,0x86,0x99, + 0x37,0x2c,0xcf,0xce,0x4e,0x8f,0xc2,0x35,0xfe,0x17,0x36,0xce,0xa1,0x2c,0xb8,0x9e,0x2b,0xa3,0x8f,0x16, + 0x7e,0x83,0x06,0x75,0x59,0x8f,0x2f,0xeb,0x90,0x85,0x14,0x9e,0xa2,0x55,0xf5,0xc4,0x7e,0x63,0x4d,0xe2, + 0x58,0x12,0x7a,0x8c,0x88,0xc5,0x74,0x32,0xc4,0x77,0xe5,0xba,0x96,0x38,0x26,0xc7,0x41,0xef,0x94,0x08, + 0x78,0xfb,0x5e,0x86,0x70,0xf7,0xfd,0x53,0x25,0x10,0x0c,0x0c,0x96,0xb7,0x31,0xb4,0xeb,0xac,0xe0,0xdb, + 0x11,0x89,0x5f,0x3f,0xbe,0x58,0xe9,0xe3,0xe3,0xcc,0xef,0x10,0xf4,0xc6,0x62,0x08,0x7a,0x74,0x25,0x02, + 0x7e,0xfa,0x9e,0x91,0x93,0xca,0x8b,0xb4,0x69,0xdf,0x64,0x42,0x8c,0x6a,0xc8,0xe4,0x05,0x82,0xd5,0x30, + 0xd5,0x4d,0xc7,0x3d,0x3e,0xef,0x5e,0x87,0x5a,0x8e,0x50,0xda,0xb7,0xa1,0x85,0xb1,0x94,0xbe,0x69,0xd3, + 0xbe,0x06,0x76,0xc2,0xdd,0xba,0x8c,0x9c,0xa8,0xa7,0x31,0xd9,0xb6,0x40,0xd1,0xe5,0x72,0x93,0x9b,0x1e, + 0x6c,0x58,0x17,0x9c,0x44,0x0d,0x7f,0xe0,0x6f,0xa6,0x0c,0x47,0x37,0xde,0x6e,0x21,0x8f,0x1e,0xd0,0xc0, + 0x74,0x57,0xc6,0x8a,0x0b,0x58,0x33,0xe3,0xb9,0xfc,0x8e,0xf8,0xe2,0x8e,0xe1,0xfa,0x33,0x69,0xec,0x2d, + 0xe9,0x3a,0x45,0x9c,0x14,0x58,0x3b,0x05,0x8e,0xcb,0x82,0x61,0x75,0x50,0x83,0x27,0x20,0x8c,0x39,0xa7, + 0x6d,0x2d,0x48,0xb2,0xc6,0x8f,0x7b,0x7b,0x6e,0x2a,0xc2,0x59,0x50,0x43,0xb0,0x6d,0xb6,0x8e,0xc0,0x97, + 0x9b,0x59,0xef,0xcc,0xe4,0x40,0x98,0xb0,0xeb,0xe7,0x01,0x30,0x04,0xd1,0x2e,0x3c,0x75,0x64,0xf5,0x62, + 0x6e,0xbf,0x56,0x4f,0xdb,0x38,0x7e,0xd7,0xc3,0x0e,0x89,0x7a,0xd7,0x01,0x8c,0x92,0x58,0xfe,0x8f,0xc5, + 0xb4,0x6b,0xfa,0x68,0x50,0xcc,0x1f,0x46,0xd9,0x48,0xd0,0xd4,0xf9,0xc8,0xc8,0x04,0x42,0x60,0xf2,0xab, + 0xaf,0x36,0x04,0x47,0x46,0xcc,0xb5,0x21,0xe8,0x63,0xad,0x84,0xc7,0x48,0x49,0x87,0x50,0xb7,0x52,0x08, + 0xef,0xcc,0x2c,0xef,0x60,0x2f,0x70,0x0b,0x8b,0x75,0x4d,0x23,0xec,0x7f,0xb8,0x7f,0xb4,0xb3,0x83,0xbf, + 0x50,0xe0,0x24,0x81,0x08,0x1d,0xa4,0xfb,0x07,0x62,0x2a,0x21,0x29,0x5e,0xf7,0xa4,0x16,0xb5,0xd3,0x50, + 0x74,0xd4,0x27,0xa2,0xa7,0x30,0xfa,0x10,0xe1,0x4b,0xd9,0x00,0x03,0x01,0x0b,0x84,0x40,0xea,0x88,0xd2, + 0x36,0x24,0x19,0x81,0x49,0xc6,0x13,0xbe,0x1c,0x35,0x92,0xd2,0x7c,0x33,0x91,0xc5,0x02,0x16,0x85,0xe7, + 0x34,0x50,0x11,0x49,0x23,0x9a,0x3e,0xb8,0x0d,0x6a,0xa6,0x8e,0x39,0xce,0xa7,0x55,0xbb,0x28,0x43,0xcd, + 0xbe,0xab,0x69,0x47,0xab,0xf7,0x75,0x76,0x68,0x7c,0x25,0xdf,0xeb,0xb3,0xe7,0x57,0x4b,0xb1,0xb7,0x3d, + 0x52,0x4f,0xea,0xec,0xe6,0x07,0x2b,0xbe,0x4e,0x4d,0x98,0x93,0x30,0x9a,0xb5,0xdd,0x64,0xac,0xb0,0x93, + 0x48,0x17,0x45,0x39,0x9d,0xaf,0x66,0x3a,0x7d,0x5f,0x2b,0x7d,0xe5,0x1e,0x17,0xf9,0x55,0x6a,0xdb,0x90, + 0xfb,0x77,0x8e,0x60,0x54,0xc8,0x34,0x7c,0xda,0x47,0x43,0xd3,0x9c,0x36,0xd2,0x9d,0x94,0x06,0xf3,0x94, + 0xf0,0xde,0x50,0x0e,0xd8,0x3b,0xae,0x2d,0x56,0xdb,0xca,0xeb,0xed,0xaa,0x4b,0x9e,0x59,0x89,0x26,0xde, + 0x54,0xeb,0xab,0x22,0x38,0xe4,0xad,0xeb,0xbb,0x1e,0x02,0xed,0x0b,0xb3,0xb3,0xbc,0x2c,0xc9,0x01,0xf2, + 0x4b,0x23,0x49,0xa3,0x0a,0xec,0x48,0xff,0xda,0x97,0xdb,0xfe,0xcb,0xb5,0xda,0x8c,0x38,0x10,0xe2,0x3c, + 0x86,0xb8,0x91,0x89,0x05,0x46,0x9b,0xe0,0x9f,0x62,0x2a,0x2c,0xa4,0x75,0x5f,0xf2,0x1c,0x06,0xe4,0x7c, + 0x85,0x10,0xf0,0xca,0x90,0x4f,0x66,0x60,0x08,0x14,0x26,0x4a,0x7c,0x7e,0xe5,0xbb,0x32,0x09,0xb0,0xb7, + 0x09,0x46,0xd0,0xa5,0x02,0xc1,0x20,0x08,0xf2,0x09,0x86,0x77,0x76,0xe8,0xbd,0x0a,0x22,0xfb,0x6b,0x23, + 0x4d,0x09,0xa6,0xd0,0x18,0x83,0x60,0x0a,0xd5,0xd4,0x8a,0x31,0xf8,0x7a,0xe5,0x52,0xa2,0xbb,0x4f,0x8b, + 0xd9,0x6e,0x2c,0x11,0x2b,0xa2,0x34,0x45,0xac,0x0d,0x0e,0xcc,0x12,0x41,0xc5,0x80,0x10,0x4b,0xf9,0xe1, + 0xf4,0x68,0x32,0xa8,0x6d,0x42,0xce,0x80,0xc2,0x69,0x2e,0xb7,0x67,0x19,0x0b,0x9d,0x29,0xa2,0x2c,0xa3, + 0x24,0xd1,0xba,0x2e,0x49,0x96,0x95,0xa0,0x6d,0x67,0xc7,0xe2,0xe8,0x6f,0x7c,0xc0,0x40,0x93,0x47,0xbb, + 0x99,0xa0,0x21,0x57,0xb8,0x57,0x55,0x75,0x08,0x8e,0xc4,0x8a,0x5a,0xbc,0xd6,0x06,0xd2,0x1e,0x3b,0x09, + 0x74,0xc6,0x10,0xf6,0xa6,0xaf,0x88,0x57,0x19,0x88,0x58,0xfc,0x39,0x3e,0xf2,0xb7,0xf2,0x4e,0x8e,0x90, + 0x98,0x59,0xd6,0xde,0x33,0x23,0xd8,0x8e,0x56,0x6d,0x31,0xcf,0x6e,0xe0,0xe9,0x99,0x7e,0x4b,0x74,0xdb, + 0x55,0x4b,0x00,0x82,0x68,0xb2,0xb0,0xcd,0x36,0x2b,0x9d,0x3e,0x53,0x52,0xc9,0x7b,0xd1,0xe0,0xe8,0xf4, + 0x23,0x88,0x50,0xcb,0x09,0x06,0xec,0x9f,0x43,0xc4,0x7f,0x28,0x77,0xe9,0xc3,0xe0,0xce,0x1a,0xb2,0xbe, + 0x66,0x11,0x96,0xbd,0x29,0x42,0x8b,0x11,0xf6,0x90,0x0b,0x56,0xe2,0xeb,0x1e,0x1d,0x9f,0xe4,0x0d,0xe8, + 0x36,0x5c,0x7b,0x6a,0xd3,0xdc,0x4a,0x36,0x84,0x51,0x78,0x88,0x8d,0xbe,0x83,0x42,0x86,0x90,0x9d,0x56, + 0x1b,0x17,0x8e,0xbc,0x9b,0xaf,0xce,0x0a,0x89,0xbf,0x3a,0x98,0xc1,0x77,0xee,0x71,0x68,0x50,0xeb,0x11, + 0xd9,0xe2,0xf6,0x8a,0x0e,0x6b,0x20,0x54,0x67,0x97,0x84,0xf6,0x6c,0x92,0xf1,0x9e,0x30,0xa2,0x85,0x01, + 0x19,0x04,0x62,0x90,0x70,0xa3,0x13,0xf7,0x64,0x1d,0x35,0x60,0xf4,0x3e,0xf4,0x05,0xb4,0x59,0xc1,0x95, + 0x65,0xcc,0xb5,0x85,0x06,0x65,0x58,0xa7,0x45,0x71,0x55,0x0c,0x3b,0x4b,0x63,0xa0,0x5e,0x09,0x13,0xbe, + 0x2a,0xf7,0x7d,0x57,0x38,0x4b,0x9b,0x2c,0xdb,0x37,0x52,0xd9,0x03,0x62,0x90,0x05,0x5e,0xba,0xfa,0xb7, + 0x8c,0x15,0x37,0x01,0x09,0x0e,0xe1,0x3c,0xbe,0x94,0x8b,0x77,0xb1,0x59,0xe5,0x5e,0x43,0x3c,0xb1,0x1c, + 0x0f,0x98,0x01,0x8a,0x42,0x6b,0x80,0x6e,0x7d,0x55,0x70,0x62,0xca,0x75,0x8c,0x2e,0x94,0x8a,0x44,0xd9, + 0xce,0x07,0x34,0x7e,0x50,0x04,0xb2,0x47,0x84,0x09,0x18,0x90,0xfb,0xc3,0xbe,0x0f,0x46,0x01,0x25,0x91, + 0x84,0x3a,0xa7,0x2c,0x47,0xbc,0x6a,0x1a,0x22,0x6e,0x88,0xcf,0x83,0xa9,0x29,0xc3,0x79,0xa1,0xd3,0x76, + 0xb5,0x84,0x9e,0xc6,0x17,0xd9,0x14,0x4a,0x7b,0x69,0xd4,0x67,0x65,0xb2,0x90,0x29,0x86,0x52,0x97,0x63, + 0x27,0x75,0x59,0xe3,0xae,0x93,0xbc,0x03,0xd4,0x7d,0x69,0xe2,0x66,0x1b,0xb6,0x54,0xbf,0x99,0xd3,0x6e, + 0x33,0x56,0x2c,0x2f,0x4d,0x98,0x35,0x2c,0xcd,0x03,0xa5,0x08,0xc4,0x94,0xf2,0x4b,0xef,0xd8,0x40,0x25, + 0xfe,0xde,0xe5,0x35,0x91,0x33,0xef,0xcb,0x31,0x67,0x95,0xdc,0xe0,0xb2,0xb9,0x19,0xd9,0x0d,0xc1,0xcd, + 0x9e,0xf5,0x86,0xf3,0x33,0x6b,0x3b,0x62,0x73,0x5a,0xbe,0x18,0x26,0xa7,0x1d,0xe8,0xdc,0xef,0x70,0x29, + 0x6f,0xee,0xb5,0xae,0x05,0x3b,0x38,0x11,0x71,0xb1,0x96,0x63,0xaa,0xbd,0xab,0x7b,0xe8,0x59,0x2f,0x92, + 0x8f,0xf3,0x29,0x89,0x83,0x88,0x00,0xe2,0x27,0x56,0xc5,0x25,0x07,0x44,0x61,0x50,0xcb,0x4a,0x03,0x81, + 0xce,0x9a,0xb5,0x83,0x7a,0x4c,0x9f,0x39,0x92,0x4d,0x10,0x4e,0x40,0x2a,0x1a,0xd8,0xb0,0xcc,0xad,0x65, + 0x37,0x88,0x6e,0x99,0x96,0xca,0xc4,0x3e,0x2f,0xd7,0xd6,0xd5,0xc7,0x20,0x3f,0xf1,0x40,0x81,0x45,0x61, + 0xc9,0x51,0xf6,0x06,0xf3,0xd6,0xc6,0x65,0xaa,0x14,0x16,0x7a,0x18,0xdb,0x3f,0xef,0xca,0xf4,0x8a,0xe6, + 0x83,0xf8,0x1a,0x8b,0x63,0xf4,0xf7,0x68,0xf9,0x2f,0x7d,0xd8,0x34,0xb5,0x71,0x8d,0xdc,0xf4,0xa9,0x0e, + 0xb1,0x49,0x97,0xa5,0x14,0x82,0xde,0x7f,0x0b,0xcb,0x77,0xaa,0x18,0x7e,0x6f,0x05,0x6c,0xaf,0x1f,0x8e, + 0xbe,0x1a,0x1d,0x7c,0x21,0x61,0x5a,0x7e,0xac,0xd5,0x4f,0xb5,0xfa,0xae,0x56,0x7f,0xd4,0xea,0xe7,0x5a, + 0xfd,0x5e,0xab,0xef,0x6b,0xf5,0x43,0xad,0x7e,0xa9,0x39,0x9c,0x06,0xdf,0xfb,0x6c,0xee,0x7c,0x55,0xdf, + 0x72,0x1a,0xdf,0x6d,0xa3,0x50,0x2f,0x91,0x99,0xb9,0x92,0x09,0x52,0x72,0xbf,0x0f,0xc8,0xc3,0x33,0x98, + 0x0e,0x52,0xe9,0x7f,0xf7,0x6d,0xe7,0x5d,0x88,0x24,0x77,0xbf,0x39,0x2d,0xcb,0xb7,0x35,0x8b,0xd4,0x22, + 0x89,0x68,0x0c,0xc7,0x0b,0xdc,0x02,0x6b,0x6f,0x0b,0x32,0x85,0x22,0x69,0x84,0xd7,0x97,0x72,0x89,0x2e, + 0x99,0x7e,0xf2,0x99,0x72,0xd9,0x8e,0xc9,0x73,0x71,0xd4,0x91,0x03,0xb1,0x73,0xc5,0x39,0x6b,0xf5,0x2f, + 0xee,0xfc,0x54,0x2e,0x7b,0xd7,0xb3,0xa2,0x85,0x11,0x9d,0x9a,0xd5,0xf9,0xd9,0x19,0x3f,0x35,0x4b,0x3d, + 0x9f,0x73,0xcd,0xd4,0xf7,0x7f,0x72,0x61,0x3a,0x08,0xaa,0xcb,0x53,0x42,0xf0,0x0d,0x61,0x30,0x62,0x2a, + 0xd9,0x25,0x53,0xe5,0xab,0xb6,0x3a,0xad,0xa6,0xab,0x86,0x9f,0x96,0xf3,0xfc,0x5a,0x99,0x0e,0x71,0xe0, + 0x11,0x3a,0xaa,0x61,0xa7,0x47,0x24,0xeb,0xbc,0xa1,0xf3,0x9b,0xe6,0xae,0xd6,0xca,0x92,0x76,0xe6,0xd7, + 0x96,0x37,0xaf,0xdc,0x67,0xfb,0x62,0x87,0x8e,0x77,0xe2,0x7c,0x66,0x45,0x83,0xee,0xcd,0x94,0x2e,0xe5, + 0x17,0x11,0x0c,0xca,0x8a,0xa6,0xb0,0x00,0x10,0xab,0xf3,0x62,0x36,0xa3,0xae,0xe1,0x70,0x6c,0x75,0xbd, + 0x28,0x4a,0x24,0x12,0x44,0xd5,0xad,0x2a,0x9a,0x45,0xbe,0x54,0x45,0xab,0x17,0x12,0xe9,0x64,0x5e,0x55, + 0x4b,0x65,0xaf,0x99,0x52,0xd2,0x68,0x59,0x21,0x54,0x8b,0x42,0x78,0x89,0xa6,0xf8,0x83,0x16,0xa9,0x6a, + 0xce,0x73,0x30,0x9c,0xbe,0x85,0xb2,0x42,0xf4,0x28,0x5a,0x67,0x6a,0x66,0x99,0x13,0x36,0xa2,0x4d,0x7b, + 0x55,0xb4,0x44,0xd2,0xe6,0xb3,0xaa,0x9c,0x23,0xaa,0xca,0xef,0x2b,0xda,0x82,0x33,0x65,0x5c,0x2b,0x67, + 0x4a,0xd8,0x22,0x82,0x89,0x7c,0x31,0x27,0x60,0x50,0x6e,0x4c,0xf0,0xc1,0xe4,0xd9,0x76,0x17,0xbb,0x70, + 0x6c,0x50,0x9a,0x7b,0xca,0x04,0xcc,0x23,0xb0,0x04,0xc7,0x8a,0x57,0x17,0x45,0x53,0x50,0x49,0x70,0xb8, + 0x45,0x16,0x9d,0xb7,0xed,0x32,0x7d,0xf0,0xe0,0xf2,0xf2,0x72,0x74,0xf9,0xc5,0xa8,0xaa,0xcf,0x1e,0x1c, + 0x7c,0xfd,0xf5,0xd7,0x0f,0xae,0xe6,0x45,0xf9,0x89,0x28,0xaa,0x62,0xe0,0x9c,0x8d,0xd2,0x8e,0x0b,0xca, + 0x57,0x80,0x32,0x29,0xcf,0xc9,0x36,0x44,0xcf,0x57,0x44,0xd8,0x97,0x43,0xdf,0x6f,0x69,0xd8,0xe4,0x3a, + 0xef,0x92,0xbf,0x2b,0x2b,0xd8,0xe4,0x98,0x2d,0xaa,0x1e,0xfc,0x46,0x08,0x64,0x02,0xc4,0xed,0x03,0x01, + 0xbb,0xa2,0xc8,0x6e,0x9a,0x0b,0x22,0x88,0x37,0x47,0xf0,0x70,0x7f,0x7f,0xff,0x01,0xe5,0x45,0xc4,0x37, + 0xb5,0xe7,0x43,0x25,0x68,0x8c,0xff,0x78,0x80,0x3b,0x52,0xf9,0xcf,0xeb,0x57,0xd4,0x6c,0x55,0x00,0x32, + 0xcf,0xdb,0xc5,0x5c,0x9d,0x54,0xb3,0x6b,0x05,0x6c,0xa8,0xce,0x69,0x29,0x14,0x86,0xa6,0x10,0xa1,0x5c, + 0xc9,0xae,0x6d,0x8b,0x96,0xfe,0xe6,0xb3,0x19,0xf6,0xa3,0xca,0xeb,0xb6,0x98,0xe2,0xbd,0xa1,0x3d,0x41, + 0x40,0x54,0xe1,0x16,0x4f,0x7c,0x87,0x9f,0x03,0x75,0xfe,0x50,0x9d,0x7f,0xa1,0xce,0xbf,0x54,0xe7,0x5f, + 0xa9,0xf3,0xbf,0xab,0xf3,0xb3,0xba,0x5a,0x2d,0x55,0x99,0x5f,0xd0,0xda,0xf1,0x18,0x09,0x10,0x2f,0xd4, + 0x8c,0xa0,0x72,0xae,0x66,0xad,0x22,0x3a,0x16,0x1e,0x36,0x48,0x67,0x83,0x54,0xad,0x96,0xc5,0x14,0x0e, + 0x37,0xea,0xbc,0x56,0xc5,0xe2,0x8c,0x3a,0x43,0x83,0xa2,0x43,0xac,0x9a,0xab,0x25,0x0c,0x1b,0xd5,0x6a, + 0xae,0x72,0x75,0x42,0xac,0xe4,0x49,0xad,0x4e,0x66,0x05,0xfd,0xaf,0x14,0x3d,0x4e,0x09,0x3c,0x39,0x0a, + 0x91,0xe2,0xcb,0xec,0x67,0xa7,0x74,0x46,0x2e,0x54,0xa1,0x3e,0x9d,0xcc,0xa8,0x82,0xfa,0x93,0xfa,0x5d, + 0xd5,0x4b,0x45,0xc0,0x5c,0xb7,0x53,0x55,0xaf,0x4e,0xae,0x89,0x92,0x6f,0xf2,0xc5,0x52,0x11,0x6c,0x13, + 0xe1,0xd5,0x2c,0x73,0x42,0x3d,0xb4,0xd7,0x88,0xe1,0x6c,0x56,0x27,0xf4,0x7f,0xc9,0xf7,0xda,0xaa,0x95, + 0x22,0xe4,0xa6,0x2e,0x4f,0x20,0x44,0x27,0x24,0x95,0xaf,0x66,0x45,0xa5,0xb0,0x1d,0xc0,0xc8,0x7e,0x52, + 0x8c,0x18,0xa8,0xa5,0x13,0x02,0x3b,0xf1,0x06,0x83,0x25,0x6a,0xbe,0x20,0x00,0x5d,0xd5,0xc4,0x83,0x4c, + 0xf3,0xf2,0x22,0xa7,0x96,0xa6,0x75,0xb1,0x6c,0xb1,0x29,0xe4,0x81,0x48,0x6e,0x18,0xba,0x29,0x3b,0xf6, + 0x29,0x0d,0x8f,0xfe,0xcb,0x64,0x19,0xc0,0xe6,0xb5,0x68,0x79,0x6d,0x5a,0x7a,0x38,0xa7,0x16,0x95,0x20, + 0x37,0x1e,0x22,0x4c,0x09,0x68,0xce,0xf4,0x7c,0x46,0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9f,0x50, + 0xed,0x73,0x7d,0x06,0x5a,0x60,0x81,0xcd,0x0c,0xd4,0x2a,0x55,0x1b,0x1c,0x5b,0xad,0x5a,0x94,0xb4,0x38, + 0xd6,0xe2,0x5c,0x87,0x8a,0x09,0x05,0xe4,0x05,0xb0,0x4e,0x91,0xcf,0xab,0x33,0xaa,0xa4,0x5c,0xf1,0x1f, + 0xa0,0x00,0x9a,0x9a,0x05,0x4d,0xe8,0xb5,0x32,0x18,0x50,0x69,0x11,0x3a,0x28,0xec,0xf7,0xea,0x52,0xd9, + 0xd0,0x59,0x8a,0x83,0x93,0xfd,0xbe,0xaa,0x80,0x46,0x4e,0x6b,0x50,0x7d,0x2d,0xa0,0x05,0x42,0x08,0x06, + 0x3d,0x02,0x58,0x95,0x97,0xc5,0x02,0x65,0xa7,0x45,0x3d,0xe5,0xf3,0xa1,0x58,0x2e,0x09,0x40,0xd5,0x74, + 0x55,0xd3,0x0e,0x07,0xe6,0x02,0xea,0x6b,0xa6,0xd4,0x08,0x65,0x11,0x80,0x4a,0x94,0x1f,0x1a,0x6e,0xd9, + 0xee,0x9d,0xe6,0x53,0x00,0x60,0xad,0x8b,0xb3,0x52,0x0e,0x41,0x75,0xa6,0xce,0xe6,0xd7,0xcb,0x73,0x82, + 0x9c,0xfc,0x4c,0x03,0x90,0x35,0x2f,0xbe,0x86,0x44,0xa1,0x21,0xa0,0x2e,0x1a,0xdc,0xb2,0xb6,0x27,0x85, + 0xb8,0x25,0xfa,0x43,0x15,0x12,0x42,0xaa,0xe6,0xd7,0x67,0x95,0xfc,0xf2,0x77,0x20,0x05,0x94,0xb8,0x52, + 0xab,0x86,0x43,0x6d,0xf0,0xfc,0xf0,0x1f,0xfe,0xb2,0x65,0x98,0x01,0x51,0x75,0x51,0xe8,0x4b,0x89,0x10, + 0xd5,0x0c,0xee,0xe5,0x4a,0x6c,0xf2,0x73,0xbe,0x3f,0x9c,0xc6,0x3a,0xc8,0x51,0xad,0x78,0x52,0xc4,0xbe, + 0x91,0x25,0x1e,0xec,0x70,0x76,0x59,0xd5,0x8c,0xfe,0x6a,0xea,0x85,0xa6,0x8d,0x80,0x4e,0xcc,0xd5,0xaa, + 0x46,0xf4,0xec,0x79,0xd1,0x0f,0x6d,0xd5,0x91,0x02,0x0d,0x5a,0xff,0xde,0x11,0x7e,0xcb,0x5d,0xa4,0x6c, + 0x0e,0x4c,0x8e,0x50,0x3e,0x29,0xd3,0x58,0x1b,0x43,0x5a,0x1d,0x18,0xd2,0xee,0xec,0xb8,0x78,0x69,0x61, + 0xb2,0xbb,0x78,0x10,0x56,0x31,0xdd,0x8b,0xe0,0x6d,0x0e,0x22,0x2e,0xd9,0xc7,0x84,0x2f,0x35,0xec,0x74, + 0xe3,0xcd,0x87,0x5e,0x9f,0xad,0x92,0x71,0xb0,0xd3,0x6f,0x3e,0xc4,0x45,0x81,0x10,0x94,0xda,0xd5,0xf3, + 0x91,0x66,0x0f,0x77,0x56,0xa6,0x03,0x8b,0xd0,0xab,0xc4,0x16,0x95,0x25,0xe1,0x24,0x13,0x37,0xe0,0x2f, + 0x7c,0x6c,0x4a,0xf2,0xb7,0x62,0xaf,0xfa,0x84,0x45,0xd4,0x1b,0x3e,0xe4,0xcc,0x07,0xba,0xec,0x58,0x2e, + 0x72,0x14,0x9b,0x7d,0x36,0x66,0xea,0x8d,0xd7,0x5e,0x96,0xce,0x79,0xb8,0x20,0x44,0xe1,0x6e,0xe3,0x72, + 0x36,0x5c,0x36,0xc8,0xe3,0xb2,0xfe,0xce,0xce,0xa1,0x21,0xb4,0xc1,0x9d,0x9e,0x74,0x50,0xd1,0xf0,0x3f, + 0xd0,0xb1,0x48,0xbb,0x61,0xb8,0x70,0x50,0x60,0x8d,0x8b,0xc9,0x38,0x60,0xd3,0x60,0x49,0x93,0xb9,0x86, + 0xfb,0x00,0x66,0xf5,0xff,0x6b,0xef,0x5d,0xd7,0xdb,0x36,0x92,0x75,0xe1,0x5b,0xa1,0x30,0xfa,0x64,0x20, + 0x6c,0x51,0x92,0x9d,0xcc,0x4c,0x40,0xc3,0x5c,0x8e,0xed,0x24,0x4e,0xec,0x24,0x2b,0x76,0x8e,0x14,0xa3, + 0x05,0x91,0xa0,0x04,0x9b,0x02,0x38,0x00,0x28,0xd9,0x16,0x79,0x41,0xfb,0x36,0xf6,0x95,0xed,0x7a,0xab, + 0xba,0x1b,0x0d,0x10,0xb4,0x9d,0xcc,0xfa,0xd6,0xfe,0xb3,0x93,0xc7,0x22,0xd0,0xe8,0x73,0x57,0x57,0x57, + 0x55,0xd7,0xe1,0x91,0xe0,0x85,0xad,0xee,0x56,0xf5,0xb7,0x48,0x72,0x5b,0x08,0xe9,0x98,0xb7,0x06,0x00, + 0xf1,0xbc,0x21,0x28,0x0e,0x9d,0x81,0xb2,0x02,0xad,0xda,0x7f,0xaa,0x78,0x06,0x34,0x3d,0xde,0x6e,0x99, + 0x61,0x94,0xa8,0x93,0x1a,0x60,0xc5,0xb3,0xf0,0x4f,0x90,0xab,0x61,0xdb,0x72,0xf1,0xa0,0x5b,0x83,0xd7, + 0x64,0x82,0x5e,0x7d,0xaa,0xdd,0x4e,0xf8,0x1e,0x51,0xd1,0x1b,0x85,0xc8,0x2e,0xb3,0x14,0x3e,0xc9,0x8c, + 0x9f,0x31,0xa3,0x20,0x6b,0x3d,0x88,0xb1,0x9f,0x08,0x2c,0x69,0xed,0x39,0xcc,0x9b,0x10,0xad,0x65,0xc7, + 0xf1,0xae,0x32,0xbd,0x7e,0x57,0x75,0xb6,0xff,0x0e,0xed,0x2f,0x53,0xb4,0x7f,0xdd,0x8d,0x39,0xae,0xa8, + 0x0b,0xf3,0x94,0x2a,0x9d,0xa8,0x8b,0xba,0xe2,0x6f,0x6c,0xc5,0xdf,0x10,0xf5,0xf0,0xb6,0xfe,0xf0,0xab, + 0xfd,0xf0,0x2b,0x7d,0x38,0x4b,0xa3,0xa3,0xf1,0xe9,0x4d,0x30,0xe8,0x9f,0x1e,0x9e,0xed,0x9f,0x4e,0x26, + 0x47,0xea,0x1c,0x71,0x03,0xce,0x88,0xc7,0xb8,0xe1,0x87,0xa9,0xa7,0xde,0xd4,0xa5,0xe9,0x80,0xd5,0xa5, + 0x01,0x46,0xfb,0xf5,0x87,0x4b,0xfb,0xe1,0x92,0x3e,0xbc,0x4e,0x3b,0xad,0x79,0x39,0x60,0xdd,0x51,0xe8, + 0x0f,0xfa,0xc1,0x51,0x1d,0x8e,0x41,0x8c,0x2d,0x8f,0x86,0xfe,0x68,0x6f,0xfc,0x87,0x3f,0xf9,0xe4,0x34, + 0x08,0x8e,0x2e,0x3a,0x94,0xd2,0xc4,0x5e,0xb3,0xaa,0xdd,0xb8,0x4a,0x41,0x28,0x13,0xd8,0x1b,0x51,0xa8, + 0x47,0x8f,0x11,0xbb,0x55,0x07,0xf3,0x99,0x44,0x45,0x1d,0xf8,0x87,0x81,0x28,0x81,0x67,0x3a,0x1a,0xf5, + 0x1f,0x87,0x87,0x47,0xea,0x05,0x3d,0x9c,0x96,0x9f,0xec,0xa5,0x57,0xb0,0x9f,0x8e,0xb3,0x6a,0xff,0x48, + 0x3d,0x4c,0xbb,0xb4,0x1e,0x1e,0xe9,0xd0,0xf5,0x04,0x28,0x95,0xc4,0x1c,0x04,0x8c,0x5a,0x7e,0x2b,0x71, + 0xad,0x35,0x5e,0xe8,0xbc,0xd9,0xce,0xbc,0xd6,0x7b,0xde,0x8b,0x94,0x23,0x15,0x79,0xb6,0x03,0x5e,0x23, + 0xa8,0xc0,0xf7,0xa9,0x2f,0xde,0xe9,0x9b,0x97,0xe5,0x59,0x43,0x07,0xa7,0xf3,0x86,0x57,0xda,0x05,0x87, + 0xcd,0xda,0x50,0x62,0x79,0xe5,0x24,0x12,0x3c,0xbd,0x04,0xec,0x4a,0xa8,0x44,0x02,0xcf,0xe7,0xf9,0x3b, + 0xe0,0xe7,0x12,0x2e,0xf4,0xda,0xab,0x47,0x1d,0xf8,0xb6,0x88,0xbe,0x2d,0x3e,0xe0,0xbf,0x51,0xaa,0xb7, + 0xbe,0xf8,0xf6,0xd8,0xfe,0x1a,0x01,0x24,0xe0,0xa1,0x94,0x25,0xec,0xdf,0x16,0x56,0xe0,0xe6,0x5e,0x96, + 0x7d,0x84,0x6f,0x42,0xed,0xf1,0xe2,0x65,0xda,0xe1,0x56,0xf3,0x65,0x3a,0xce,0x26,0x7d,0x96,0x50,0x17, + 0xcd,0x56,0x0a,0xac,0xf8,0xab,0x1a,0x4a,0x2f,0x2c,0x94,0x5e,0x10,0x94,0x3e,0x69,0x8f,0x53,0x5b,0x84, + 0x27,0x1c,0x0a,0x13,0xcc,0x6a,0x48,0xec,0xfa,0x21,0xbf,0x12,0x73,0x80,0x1f,0x1d,0xf9,0xb9,0x4e,0x3f, + 0xac,0x72,0xfd,0xc9,0x89,0x01,0xed,0x7c,0x16,0x89,0xab,0xa7,0xea,0x30,0xd2,0xfc,0x91,0x5f,0x75,0xaa, + 0x5b,0x27,0x27,0x70,0x9d,0xed,0xb8,0xd2,0xce,0x67,0x5d,0x27,0xc6,0xf6,0x2c,0x65,0x8f,0x62,0x88,0x08, + 0xfd,0x34,0xd5,0x71,0x2e,0xd9,0x73,0xac,0xa7,0xbe,0xa4,0x77,0x21,0xb0,0xf8,0xf5,0x71,0xeb,0xf3,0x77, + 0x8d,0x77,0x3a,0x49,0x3c,0xf5,0x43,0xb3,0xc4,0x73,0xf7,0x15,0x19,0x86,0xcf,0x70,0x01,0x60,0xbd,0x35, + 0x68,0x37,0x66,0xe0,0x51,0x9d,0x6a,0x1c,0xf2,0xc0,0x66,0xb8,0x61,0x20,0x6b,0x65,0xf3,0xd1,0x23,0x27, + 0x52,0xa7,0xd3,0xaf,0x9b,0x56,0xea,0x93,0x0c,0x37,0x94,0xdb,0x0d,0xbb,0xbd,0xdb,0xdd,0x6e,0x33,0x97, + 0xff,0x83,0x6d,0xf6,0x61,0x73,0xac,0x37,0xcd,0x44,0x6e,0x54,0x64,0x34,0x3f,0x62,0x96,0x47,0xba,0x5a, + 0xb0,0xa9,0xb4,0xbb,0x6d,0xbe,0x2f,0x41,0xdc,0xbe,0xf7,0xe3,0x00,0xf2,0x22,0x5f,0x72,0x04,0x61,0xed, + 0x14,0xa1,0xf3,0x40,0xc5,0xbd,0xf9,0x17,0x40,0x4b,0xe7,0xbe,0x8d,0xde,0xb1,0x26,0x1e,0x25,0xf0,0xd5, + 0x7a,0x3f,0x38,0x52,0x3f,0x39,0xe8,0x69,0x2b,0xc0,0x83,0x50,0x79,0x8f,0x9c,0xb3,0x1e,0xb4,0x5d,0xc2, + 0x12,0xb1,0x47,0x0d,0xea,0x02,0x2a,0xae,0x4e,0x04,0x0d,0x8e,0x05,0x97,0x8a,0x89,0x9d,0x84,0xb4,0x69, + 0x78,0xa4,0x8a,0x95,0x6b,0x24,0xc6,0x39,0x8d,0xb2,0xa5,0x9c,0xaf,0x2c,0x5a,0x47,0x44,0x68,0x6d,0xe4, + 0xd4,0x19,0x05,0x38,0x80,0x2f,0x21,0x7b,0x55,0xa2,0x8b,0x44,0xf1,0x00,0xfa,0x5a,0xf4,0x4d,0x5e,0x20, + 0x07,0x46,0x46,0x1c,0xbb,0x27,0xdc,0x90,0xea,0xae,0xcc,0xc6,0xf0,0x40,0x8f,0x08,0x3f,0xf8,0xab,0xa0, + 0xa1,0xd7,0x68,0x22,0x60,0x38,0x3a,0x3c,0xd5,0x30,0xee,0x30,0xc5,0x91,0x28,0xd7,0x1d,0x5f,0xcc,0xad, + 0x79,0xe2,0xe7,0xf4,0x19,0xc3,0xe4,0x5e,0xe6,0x91,0x1b,0x32,0x56,0xeb,0x2d,0x49,0x2c,0x96,0xfd,0x81, + 0x21,0x01,0x0c,0x9a,0xea,0xf7,0xf3,0xa0,0x4e,0x45,0x14,0x96,0x65,0x4a,0x93,0x3c,0xd4,0x46,0x07,0xb1, + 0xd1,0x10,0x9a,0x42,0x43,0x05,0x97,0xc7,0xd4,0xe7,0x8d,0x9d,0x63,0xb5,0x27,0xa1,0x13,0xe4,0xcd,0x4c, + 0xae,0x4c,0xb9,0x9a,0x3b,0xde,0xb5,0xd5,0xa5,0x38,0x26,0xa6,0xb5,0xbe,0x0c,0x46,0x3e,0xd7,0x04,0xe9, + 0x7b,0x39,0x7a,0xb4,0x45,0x36,0x23,0x59,0x5d,0x06,0x61,0xeb,0x8b,0x7f,0x09,0xe9,0xf8,0x0c,0xb2,0xd8, + 0x05,0x35,0x39,0xc7,0xa4,0x26,0x3c,0xa9,0x4b,0x99,0xe1,0x29,0x3c,0xbd,0x70,0x17,0xa9,0x2b,0x61,0xe6, + 0x3b,0x3e,0xa1,0x6d,0x93,0x8f,0xda,0x24,0xb2,0xf8,0x73,0x6e,0x95,0x6d,0x65,0xae,0x89,0xf1,0xae,0xdc, + 0x8e,0x47,0xe1,0x52,0x54,0xf7,0x12,0x63,0x2c,0xa5,0x43,0xd3,0x0b,0x94,0x8a,0xd0,0x17,0xb3,0x6a,0xae, + 0x54,0x54,0x67,0xb6,0xce,0x54,0xa3,0xd6,0xa0,0xe7,0x6d,0x1b,0x14,0xa0,0x1c,0x34,0x67,0x5f,0x52,0x4b, + 0xd1,0x92,0x9b,0xb1,0x33,0x27,0x26,0x22,0x03,0x65,0x4d,0x48,0xdc,0x58,0x25,0x5a,0xef,0x15,0xdd,0x45, + 0xdf,0x38,0xd4,0x7c,0xe1,0x6c,0x4d,0x91,0x32,0x3f,0x6a,0xf2,0x08,0x52,0x86,0xd6,0xc6,0x25,0xef,0x2b, + 0x0e,0xc8,0x6a,0x6b,0x5e,0x38,0x74,0xc9,0x56,0x8c,0xbd,0x76,0xec,0x0a,0x0b,0x87,0x69,0x10,0xfb,0xac, + 0x71,0x9c,0xe9,0xb9,0xe5,0x2b,0x27,0xe8,0x1b,0x32,0x71,0x50,0x98,0xd9,0x47,0x97,0x1a,0x8d,0x73,0xe6, + 0xad,0xb5,0xd2,0x6e,0x6c,0x2a,0xe3,0xb0,0xdb,0x71,0x89,0x6d,0x7c,0x64,0x0c,0xbb,0x0c,0xdf,0x82,0xaa, + 0x73,0x7e,0x65,0xab,0xd5,0x26,0xb7,0x12,0xff,0xca,0x71,0x7a,0x2d,0x4b,0xdf,0xb4,0x60,0xdb,0xd7,0x9d, + 0xaa,0x07,0x59,0x04,0x26,0x8d,0xa8,0x1c,0x6c,0x35,0x46,0x7f,0x37,0xc6,0xc0,0x57,0x63,0x1a,0x5a,0x8b, + 0x1b,0x9d,0x8d,0xde,0xcc,0xa3,0x64,0x57,0xf8,0x96,0x1a,0x88,0xea,0x5a,0xd8,0x99,0xc5,0xb4,0x82,0xc2, + 0xa0,0x0d,0x6e,0xdd,0x09,0x06,0xc1,0xa3,0x26,0xf3,0xa2,0xe7,0x1a,0x64,0x9e,0x4c,0x74,0x3d,0x04,0x8e, + 0x26,0x84,0xf2,0xb5,0x85,0x25,0xf0,0x0b,0x5b,0x29,0xd9,0x6b,0x8a,0x52,0xd7,0x8b,0x65,0xd9,0x55,0xb1, + 0xaa,0x23,0x0f,0x01,0xd9,0x47,0x37,0x08,0xf0,0x99,0xb1,0x43,0x73,0x5d,0xb1,0x79,0xb5,0x2e,0x12,0xff, + 0x5a,0x43,0x8e,0x73,0x6f,0xd7,0xbf,0xa3,0x5e,0xee,0xe2,0x7e,0x94,0xf2,0x1a,0xc4,0x3e,0x47,0xcb,0xc9, + 0x55,0x33,0x88,0xd1,0xb5,0x9d,0x38,0x14,0x6b,0x9c,0x1c,0xa9,0x00,0x2e,0xfa,0x94,0xd6,0xe7,0x01,0x3a, + 0xa8,0x99,0x22,0x0c,0xa8,0x76,0x7c,0xb6,0x6f,0x92,0xeb,0x95,0xcf,0x02,0x9b,0xc8,0x91,0x82,0x83,0x7a, + 0x71,0xea,0x00,0xf1,0x3a,0xc4,0x0f,0xfb,0xff,0x6f,0xdb,0x3e,0xa2,0xe3,0xb8,0x87,0x76,0x4d,0x1f,0xeb, + 0xbe,0x5f,0x35,0x4f,0x94,0x7a,0xac,0xd6,0xe6,0xa0,0x20,0x2a,0x5b,0x3c,0x77,0xd1,0x0f,0x43,0xef,0xc8, + 0xbf,0xc0,0x15,0xdd,0x35,0xce,0xc5,0x10,0xd1,0x8e,0xa0,0x1b,0xe4,0xe2,0xb3,0x0b,0xab,0x8a,0x8c,0x23, + 0x7a,0xbd,0x36,0x88,0x2d,0xb0,0xe1,0x8a,0xa2,0x7d,0x7d,0x6a,0xdb,0x50,0xb4,0x43,0x3d,0x4f,0xc1,0xc8, + 0xb1,0xa2,0xed,0x47,0x69,0x98,0xbd,0x4f,0x31,0x98,0xc8,0xa6,0xc3,0x43,0xa7,0x00,0xae,0xc9,0x2a,0xeb, + 0x2c,0xc5,0xf9,0x10,0xd1,0xa2,0x6e,0x7c,0x73,0x12,0xd1,0x66,0x28,0xba,0xb6,0x2b,0xaf,0x0e,0x80,0x4e, + 0x2b,0x42,0xf0,0xab,0x39,0x21,0x2f,0x10,0x3b,0x23,0x50,0x66,0x8b,0x36,0xfa,0xaf,0xb7,0xa8,0xa4,0x61, + 0x8b,0x72,0x4c,0x32,0x69,0xc5,0xdd,0xa1,0x89,0x0e,0xdb,0x8b,0x6c,0x81,0x09,0x57,0x05,0xb5,0x6f,0xde, + 0x42,0xb9,0x74,0xd0,0x59,0x1e,0xa8,0x39,0x83,0x7c,0x29,0x25,0x3a,0x17,0xc1,0x7a,0x6a,0xa2,0x72,0xa6, + 0x8c,0xd3,0x0b,0xfc,0x65,0x9d,0x17,0xc4,0x7d,0xdd,0xf2,0x7e,0x19,0xd0,0x3e,0x4c,0x1b,0xfe,0x33,0x8d, + 0x8f,0xab,0x59,0x30,0x3a,0xf7,0x0b,0x99,0x0f,0x44,0x26,0x4e,0x3b,0x7d,0x67,0x1e,0x5b,0xe6,0x8f,0xa8, + 0x32,0xeb,0xdf,0x93,0x81,0xb6,0x70,0x5f,0x53,0x76,0x31,0x1a,0x49,0xd8,0x30,0x1c,0x58,0x9c,0x5b,0xbc, + 0x7a,0x12,0x00,0xc8,0xeb,0xf7,0x4c,0xde,0x04,0x69,0x87,0xae,0x4b,0xd1,0x65,0x4a,0x6c,0x83,0x1d,0xab, + 0x05,0x8d,0x96,0x37,0x55,0xe2,0x2f,0x78,0x16,0x57,0xd1,0xa2,0x9e,0xd2,0x55,0xb4,0xb2,0xce,0x02,0x28, + 0x61,0x85,0x39,0x13,0x02,0x77,0x19,0x15,0x35,0x29,0x31,0x73,0x6c,0x49,0x65,0x13,0xa1,0xae,0x39,0xf6, + 0x28,0xc3,0xfe,0x8a,0x16,0x76,0x45,0x0b,0x2b,0x9c,0x54,0xbd,0xb0,0xab,0xc0,0xa4,0x8d,0x57,0x13,0xa9, + 0xbb,0xa3,0x03,0x92,0xc3,0x36,0xbf,0xa9,0xfc,0x54,0x8e,0x90,0x11,0x21,0x60,0xce,0x45,0x33,0xbe,0xa4, + 0x05,0x74,0xef,0xca,0x8d,0x1f,0xd9,0xb2,0x3e,0x01,0xa6,0x8a,0x86,0x4b,0x34,0xd0,0xb1,0x5a,0xd2,0xbf, + 0x59,0x54,0xbb,0x6a,0x51,0xd7,0x11,0x24,0x00,0xea,0x82,0x7e,0x66,0x13,0x75,0x66,0x55,0xb7,0xe9,0xd3, + 0x79,0x94,0xe2,0xd3,0x0d,0xfd,0x9c,0x4d,0xd4,0x9b,0x68,0xaf,0x1c,0xce,0xef,0xa3,0xa9,0xe5,0xfd,0xe8, + 0x8c,0xce,0x26,0xff,0x3a,0x18,0xa1,0x78,0xbf,0x3f,0x9f,0x84,0xf0,0x5a,0x36,0x42,0x2d,0x87,0x87,0xb3, + 0x49,0xf8,0x33,0x7d,0x54,0xe7,0xb4,0xa9,0xdf,0xe2,0x17,0xc4,0x99,0xc9,0xc8,0xb5,0xf6,0xfb,0xcb,0x49, + 0x80,0x4c,0x17,0xea,0x86,0x33,0xd1,0x2f,0x32,0x99,0xf2,0xdc,0xe6,0xe1,0xe1,0x99,0x64,0xba,0xd6,0x99, + 0xae,0x25,0xd3,0x9b,0x2d,0x3a,0x20,0x53,0xd7,0xfa,0xdc,0x75,0x44,0x71,0xfe,0x85,0xa0,0x90,0xba,0xe5, + 0x46,0xa5,0x17,0xba,0x7b,0x17,0xd2,0xbd,0xae,0x4a,0xb9,0x02,0xa9,0xda,0xe9,0x5a,0xdd,0x7f,0xbf,0x12, + 0x67,0x17,0xd3,0xe8,0xeb,0x8a,0xd6,0x67,0xae,0x66,0x30,0x95,0xf7,0x41,0xd0,0x9f,0x73,0x0c,0xd3,0xd1, + 0x74,0xcc,0x0f,0x93,0x0e,0xe7,0x1f,0x75,0x5c,0xc2,0x39,0xd1,0xc2,0x29,0x47,0x21,0xb4,0xe8,0x31,0x9f, + 0x18,0x1e,0xe1,0xe0,0xe0,0x67,0x08,0xb5,0x62,0x4b,0xc1,0xe7,0x44,0xe3,0x9e,0x53,0x15,0xc7,0x68,0x6d, + 0x14,0xd3,0x73,0xae,0xf4,0xf8,0x79,0x5c,0x0b,0xea,0xe7,0x6a,0xa2,0x07,0xb7,0x90,0xc1,0x21,0xc5,0x78, + 0xb4,0xed,0x1a,0xe8,0xc2,0x19,0x68,0x10,0x36,0xeb,0xac,0xc7,0x3b,0x9c,0x3f,0x98,0x41,0x89,0x9e,0x86, + 0x48,0x00,0xd1,0x3f,0x99,0x04,0x12,0x9d,0x51,0x5e,0xf4,0xa6,0x5f,0xaa,0x33,0x6c,0xfc,0xe5,0x83,0xb3, + 0x83,0x83,0x2b,0xff,0x58,0xc9,0xb4,0x6c,0xfc,0x29,0x87,0xcb,0x06,0x50,0x86,0x0c,0xb4,0xa0,0xf0,0x6a, + 0x12,0xaa,0x29,0x0e,0xa5,0xcc,0x38,0xa7,0x2f,0xe9,0x97,0xc9,0xae,0x19,0x06,0x5b,0x83,0x25,0x88,0x62, + 0x80,0xff,0x08,0xf5,0x2f,0xe9,0xdb,0xb2,0x0e,0x83,0x18,0x7e,0xb0,0xda,0x50,0xbe,0xef,0x71,0xd4,0x1a, + 0x3e,0xdb,0x3b,0xf2,0xe9,0x5d,0xa6,0x76,0x63,0x86,0xbc,0xac,0x9a,0xa8,0x61,0xe3,0x1c,0x55,0x67,0xc2, + 0x85,0x30,0x7a,0x05,0xe3,0x89,0x52,0x36,0x18,0x75,0x60,0x9e,0xba,0x28,0xeb,0xa2,0x49,0xf6,0x08,0xa3, + 0x54,0xb8,0xfc,0x51,0x41,0xc0,0x51,0x63,0x7f,0xbd,0x92,0x7e,0xc1,0xfe,0x54,0x6d,0x07,0xce,0x5b,0x8c, + 0xa7,0x9a,0x22,0x66,0x53,0x7c,0xa1,0x56,0xda,0xdd,0x07,0xe1,0x82,0xa2,0x19,0x6d,0x28,0xca,0xd7,0x6b, + 0x44,0x77,0x07,0xd2,0x53,0x85,0x90,0xf6,0x4a,0x10,0xb2,0xe1,0x5b,0xe4,0xe0,0x72,0xf1,0xbe,0x85,0xca, + 0xae,0x63,0x02,0xea,0xd5,0x84,0xeb,0x19,0x90,0x57,0xfa,0xa8,0xa7,0xa9,0xeb,0x66,0x60,0x0b,0xb1,0x24, + 0xa4,0xc4,0x0e,0xac,0x1d,0x38,0xfc,0x2b,0xe6,0xd5,0x56,0x3b,0x0d,0x34,0x41,0x30,0x0f,0x02,0xe6,0xc4, + 0x2f,0xe3,0x92,0x09,0x71,0x50,0xdd,0xa5,0xcf,0x89,0xdc,0xaa,0x6d,0xd0,0xc4,0x8d,0x73,0x7a,0xa0,0xa3, + 0xa2,0x48,0x55,0x31,0x53,0x7e,0x75,0xa2,0x0d,0xc2,0xc1,0x07,0x87,0x59,0x17,0x56,0x1d,0x07,0x17,0x39, + 0x4f,0x8b,0xb2,0xe2,0x16,0x09,0xcd,0x1c,0x0f,0xaf,0xef,0xcf,0xcd,0x5a,0x5d,0x1b,0x07,0x77,0x97,0xeb, + 0xf5,0xde,0x39,0xf1,0x8b,0xf3,0xf1,0xf5,0x44,0x73,0xa6,0x30,0x4b,0xd7,0xac,0xec,0x65,0x74,0xd9,0xb8, + 0x3f,0x40,0x89,0xd9,0x7a,0x7d,0xd9,0x6c,0x98,0xb8,0x18,0x6c,0xa4,0x34,0x30,0xb3,0x29,0xeb,0x7a,0xe5, + 0xba,0x5a,0xb9,0x80,0x34,0x6f,0x85,0x11,0xef,0xbd,0x20,0x5c,0x1c,0xdc,0x5e,0xa1,0x93,0x4b,0x39,0x5b, + 0xa4,0xb1,0xbd,0x2b,0x2c,0x30,0x6b,0x96,0xc0,0x4d,0x9c,0x7e,0x34,0xce,0x26,0x05,0x20,0xf7,0x38,0xbc, + 0x17,0x6f,0x0c,0x4d,0x60,0xe9,0x77,0x73,0xed,0xb5,0x27,0xc1,0x62,0x6e,0xd4,0x1b,0xb5,0x0f,0x21,0xf5, + 0x6b,0x44,0x9a,0xcf,0x67,0xab,0x45,0x52,0xaa,0x47,0xf4,0x0c,0x1a,0xe7,0x7b,0xad,0xfd,0x75,0x43,0x73, + 0x72,0x73,0x7f,0x96,0xd6,0x00,0x7c,0xc3,0x64,0xe5,0xfe,0x78,0x96,0x8e,0x6f,0x26,0xb0,0xf6,0xa2,0x73, + 0xe5,0x78,0xf8,0xe6,0xfe,0xeb,0x3a,0xcb,0x1b,0x22,0x2f,0x5e,0x8f,0xdf,0x4c,0x74,0x1e,0x5a,0x29,0x93, + 0x5d,0xf8,0x0b,0xf7,0x1b,0x1f,0xc8,0x2f,0x58,0x6f,0x04,0xf7,0x6a,0xa2,0x35,0xa3,0x43,0x89,0x3d,0x72, + 0x9e,0x5f,0xb0,0xb0,0x95,0x50,0x71,0x87,0x93,0x42,0x7d,0x5a,0x2a,0x3a,0x24,0xb5,0x91,0x05,0x9f,0xde, + 0xe2,0x25,0x06,0xa1,0x43,0x60,0x9c,0x0d,0xe8,0x82,0x39,0xe7,0x82,0xfd,0x87,0xf8,0x40,0x74,0xc8,0x5f, + 0xd3,0x13,0xb3,0x08,0x9b,0x03,0x83,0x7f,0xc9,0xbe,0x9f,0x78,0x21,0x19,0x7b,0x63,0x01,0x02,0xa1,0xb9, + 0x96,0x4a,0x07,0x45,0x47,0x3b,0x33,0x6e,0x4d,0xe2,0xa9,0x99,0x72,0x50,0x72,0x27,0x18,0xae,0xf9,0x89, + 0x87,0xac,0x9f,0x65,0xa8,0xbb,0x46,0x3a,0x2c,0xb8,0xe1,0xe3,0xd3,0xcf,0x29,0xcb,0xb9,0xd4,0x6f,0x37, + 0xca,0x19,0x77,0x11,0xdf,0x8b,0xe1,0xf7,0x11,0x94,0xf9,0xf5,0x75,0xcc,0x23,0x73,0x09,0xe5,0x7f,0xdf, + 0x8a,0x42,0x23,0xd7,0x34,0x5a,0x72,0xa8,0xbe,0x17,0xfb,0xb7,0x4b,0x21,0x06,0xe9,0xf8,0x6b,0x08,0xca, + 0x2e,0x79,0x80,0x32,0x0f,0x97,0x83,0x33,0x11,0xd8,0x9e,0xcb,0x79,0x70,0xd1,0x3a,0x87,0x2f,0xa1,0xfa, + 0x4b,0x84,0x8b,0xc1,0x7f,0x06,0x60,0x6f,0x22,0x93,0x46,0x30,0x00,0x8a,0x69,0x78,0x33,0xac,0xcf,0xc5, + 0xd7,0x04,0x16,0xaf,0xbb,0x78,0x97,0xd7,0x0e,0xef,0xf2,0x7a,0xe2,0xdf,0x70,0x4f,0x6e,0xc4,0xf1,0x3d, + 0x77,0xf5,0x4d,0x5d,0xc9,0x0b,0xaa,0xe4,0x45,0x07,0xe7,0xfb,0xa2,0xe6,0x7c,0x5f,0x30,0xe7,0x7b,0x23, + 0x90,0xf4,0x30,0xba,0xd9,0xc2,0xad,0x7c,0xa3,0x30,0x60,0x1d,0xe1,0xda,0xe4,0xe1,0x65,0x74,0x32,0x7c, + 0x79,0xff,0x21,0xb1,0x88,0xd6,0x5e,0xe5,0x25,0xdc,0x3f,0x23,0x61,0xfc,0x72,0x62,0x68,0xef,0x9f,0x2a, + 0xf4,0xef,0x86,0x6a,0xd5,0xa1,0x6e,0x13,0x50,0x49,0x38,0xb7,0xc0,0xf2,0x1d,0xab,0x63,0x7d,0x60,0x11, + 0xff,0x03,0x97,0xc0,0x45,0x6d,0x2d,0x26,0xeb,0x87,0xb0,0x32,0x18,0x13,0x2f,0xc5,0xf7,0x20,0xfd,0x6d, + 0x3e,0xff,0x56,0x6f,0xb4,0x10,0x6a,0x1f,0xb2,0xff,0xc2,0xf1,0x45,0xaa,0xde,0xa6,0xea,0x4d,0xaa,0xf6, + 0x53,0xf5,0x2a,0x55,0x4f,0xb3,0x91,0x91,0xe6,0x3f,0x4b,0x94,0x11,0xac,0xe1,0x59,0xe0,0xa9,0x75,0xfd, + 0xb7,0x27,0x71,0xbd,0xc4,0xca,0xe2,0x32,0xbf,0x19,0x7d,0x9f,0x48,0x74,0x33,0x18,0x28,0x6d,0xc2,0xdb, + 0xcd,0xc4,0x38,0x56,0xbe,0x4a,0xe1,0xc5,0xfc,0x79,0x76,0x70,0x60,0x2f,0x39,0xb6,0xc3,0x8b,0xc8,0xfd, + 0x38,0xd5,0x3e,0xbd,0x8c,0xb3,0x8b,0xc4,0x73,0xcd,0x53,0x45,0x13,0xbf,0x2e,0xcc,0x52,0x7a,0x2d,0x5c, + 0x1b,0xb2,0xaa,0xef,0xb5,0x8e,0x8a,0xf8,0x23,0xfa,0xa0,0xf5,0xcd,0x8c,0xeb,0xf4,0x9f,0x53,0x38,0x55, + 0xc3,0xea,0x24,0xb3,0xd6,0x85,0x28,0x84,0x48,0xe6,0x66,0xde,0x86,0x75,0x14,0x9e,0xe4,0xe0,0x60,0x8f, + 0x7f,0x89,0x11,0xd3,0x6a,0x96,0xa3,0x6f,0xe1,0xe8,0xc8,0x1e,0xe6,0x8d,0x1e,0xfe,0xec,0xb0,0x14,0x62, + 0xd4,0x35,0xd3,0xa2,0xa4,0x4d,0x10,0x3e,0x4d,0xe4,0xd9,0xf5,0xf6,0x64,0x6b,0x25,0x7c,0x81,0xc0,0x6b, + 0xc6,0xfe,0xc4,0x28,0x7d,0x7e,0x97,0x40,0x06,0xe6,0x19,0xcd,0x11,0xdb,0x3b,0x3a,0x77,0x53,0x5f,0x62, + 0xc7,0x05,0x81,0xf6,0xe4,0xf5,0xdc,0x44,0x8e,0x8d,0x92,0x3a,0x8a,0xac,0x72,0x9e,0xd9,0xaf,0x23,0xab, + 0x16,0x6f,0xcf,0xbb,0x99,0xee,0xe7,0x49,0xa0,0xbe,0xc8,0x76,0x65,0xc2,0xd8,0x44,0x2a,0x4b,0x28,0x12, + 0x5e,0xfa,0x7f,0x60,0x1d,0xf9,0xf7,0xe6,0xe4,0x9b,0x8f,0xe7,0xd0,0xe5,0x7f,0xce,0xbe,0xc0,0xf5,0x22, + 0x01,0x0f,0xe1,0x4e,0xb8,0x3d,0x5f,0x5b,0x77,0xd5,0x1c,0xb4,0xbd,0xb9,0x36,0xc1,0xed,0xd6,0x5c,0x0e, + 0xcd,0x9d,0xa5,0x9d,0x51,0xd1,0xa6,0xfe,0xf0,0xfc,0x0e,0xd3,0x76,0x0c,0xc0,0x5a,0x35,0x62,0x0f,0xaa, + 0xe5,0xec,0xc4,0x72,0x23,0xb3,0x6c,0xd4,0x2b,0x46,0x89,0x98,0x4f,0xef,0x0c,0x1f,0xf8,0x18,0x1d,0x04, + 0xc0,0x87,0x3a,0x27,0x5f,0x8e,0x13,0x8d,0xf3,0x33,0x5e,0x0e,0x0e,0xe8,0xbb,0xfe,0x00,0x4c,0x6f,0x20, + 0x56,0xaf,0x02,0x7b,0x6a,0xfc,0x9a,0xe0,0x55,0x02,0x7b,0xfe,0x9c,0x2a,0xec,0xac,0x50,0xd4,0x62,0xdb, + 0xf3,0xa3,0x7d,0x09,0x98,0xca,0x10,0x0b,0xf0,0x0b,0x88,0x2f,0x02,0xad,0x5a,0x22,0x2e,0x54,0x1c,0x81, + 0x3a,0x07,0xa8,0x3f,0xa3,0x99,0x29,0xd2,0x0b,0x78,0x82,0x7d,0x9c,0x96,0x50,0x8e,0x8c,0xbc,0x8c,0xd6, + 0x41,0xeb,0xdc,0xf1,0x9d,0xea,0x4c,0x3e,0x20,0x5c,0x7c,0x2b,0x09,0xce,0x1f,0xd2,0x91,0x9f,0xd5,0xdb, + 0x1e,0x47,0xdc,0x4b,0xf0,0x05,0xae,0xf5,0x50,0xb3,0x50,0x94,0x6f,0xe0,0x9d,0xbf,0x95,0x58,0x8c,0xf2, + 0x50,0x5a,0xee,0xd4,0x2f,0xd8,0x1a,0xe1,0xb0,0x68,0xcd,0xa4,0xff,0xc1,0x01,0x6f,0x75,0xb4,0x18,0x7d, + 0xa8,0xab,0x5d,0x13,0x44,0x6b,0xf9,0xfd,0x07,0x8a,0xe9,0x81,0x74,0x0e,0xb3,0xab,0x4a,0x3d,0x72,0xa8, + 0x56,0x64,0x1d,0x8b,0xab,0x19,0x02,0xde,0x8d,0x1f,0xee,0x1f,0x43,0xcd,0x3b,0x82,0x1a,0x36,0x0c,0xd3, + 0xd6,0x5d,0x10,0x34,0xc7,0x45,0xf8,0x45,0x9e,0xc3,0x19,0xae,0x9a,0x96,0xa5,0x7d,0x06,0x70,0x99,0x6c, + 0x40,0x24,0xe6,0xd9,0xb9,0x9d,0xd5,0x29,0xce,0xdd,0xaa,0x9b,0xc7,0xdc,0xab,0xba,0xb9,0x5a,0x69,0x5b, + 0x17,0xb7,0x6e,0xde,0x8e,0x74,0xe9,0x6e,0x47,0xd2,0xce,0xbc,0xad,0x06,0x67,0xab,0x82,0xef,0x05,0xc3, + 0xb1,0xd8,0xb5,0x29,0x9d,0x2e,0x8a,0x1d,0x93,0x8d,0xfa,0xc5,0x4c,0x50,0xe3,0xb2,0x56,0xac,0xe5,0xde, + 0xa5,0x0d,0x13,0xba,0xb6,0x2d,0x58,0xdb,0x78,0xbc,0xc3,0x26,0x4c,0x7b,0xce,0x62,0xc1,0xaa,0xdc,0xd2, + 0x77,0x07,0xf7,0x63,0x14,0xfe,0x1b,0x24,0x84,0x04,0xb6,0x6e,0xcc,0x56,0x6d,0x22,0x86,0xb5,0x81,0xda, + 0x81,0x8e,0xdf,0xea,0xd6,0x21,0x82,0xff,0xc8,0x70,0x84,0xc3,0xa0,0x76,0x5f,0xe9,0x5c,0x9a,0x59,0xba, + 0xdb,0xb5,0x1d,0xad,0x05,0x02,0xda,0x7e,0xec,0xa7,0x04,0x9e,0x79,0xd8,0xdb,0x40,0xfd,0xc9,0x78,0x59, + 0x65,0x0a,0x8d,0xe6,0xce,0x7c,0xf9,0x1a,0x28,0x2a,0x37,0x11,0x60,0xbd,0xb3,0xb3,0xba,0xb9,0x43,0xaf, + 0x6f,0xdd,0xca,0xf5,0xbd,0x43,0x6f,0x18,0xb3,0x18,0x4e,0x94,0x6c,0xf9,0x79,0x14,0x3b,0x01,0x4e,0xcb, + 0x3e,0x0e,0x08,0x3c,0x7a,0x61,0xd9,0x67,0x59,0x6e,0x58,0xf8,0xb1,0xc8,0x3f,0x70,0x01,0xad,0xef,0x3e, + 0x24,0xc5,0x1a,0x14,0x95,0xc1,0x88,0x53,0xb8,0x0c,0x7e,0xf9,0xaf,0x84,0xcd,0x88,0x7c,0xb9,0x40,0x84, + 0x7d,0xe5,0x40,0x3b,0x9a,0xa1,0xa9,0xad,0xbb,0x18,0xfd,0x9c,0x68,0xcb,0xa2,0x55,0xc3,0xd8,0x7d,0x81, + 0x49,0x58,0x09,0x69,0x2a,0xb3,0x58,0x87,0x9d,0xc7,0x75,0x6a,0x2b,0x69,0x17,0xc2,0xf7,0x80,0x5b,0x04, + 0x79,0x02,0xba,0xf8,0xb8,0x88,0x1b,0x58,0x27,0x50,0x44,0x98,0x2c,0x34,0x8e,0xf2,0x2f,0xa3,0x58,0x5d, + 0x45,0x0b,0x75,0x85,0x21,0x10,0x46,0xbb,0xc4,0xef,0x7a,0x7d,0x85,0xb9,0xe0,0x57,0xa1,0xef,0xf6,0x7e, + 0x63,0x69,0x82,0xbf,0xb7,0xe8,0xf2,0xf9,0xda,0x95,0x6a,0x5c,0x7a,0xd6,0x2c,0xb8,0x00,0xd6,0x3c,0x5a, + 0xb4,0x81,0x44,0x0c,0x46,0xa6,0x3c,0x76,0x2f,0x5f,0x55,0x87,0x29,0x6b,0xee,0xa7,0x4d,0xe7,0x0d,0x1a, + 0x0a,0x80,0x37,0xbf,0xf5,0xe7,0xca,0x8b,0xe7,0x04,0xd5,0xcf,0x44,0xbd,0xc2,0x41,0x85,0x89,0x93,0x13, + 0xf1,0xd2,0x9b,0x7e,0x2c,0x37,0x81,0x32,0xe0,0x83,0xc6,0xd2,0xec,0x30,0x17,0x53,0x00,0x11,0x78,0xfc, + 0xe6,0xd7,0xc2,0xaa,0x95,0x08,0x4c,0x55,0xc3,0xa3,0xf0,0x12,0x3e,0xd8,0xbf,0x85,0x34,0x86,0x9b,0x7f, + 0x22,0x1a,0x23,0xb3,0x40,0x71,0x9a,0x60,0x2c,0x8c,0x1e,0x06,0x69,0x3a,0x7d,0x0e,0x8d,0x30,0x42,0x8b, + 0xed,0xae,0xd2,0x92,0x2d,0xa3,0x6a,0x53,0x93,0xcd,0xb9,0x30,0x2d,0xea,0x8a,0xd0,0xe7,0xbf,0x52,0x4c, + 0x0a,0xe0,0x51,0xe3,0x0d,0xbe,0xd0,0x77,0x10,0x0c,0x30,0x6c,0x30,0x14,0x93,0xbe,0xde,0xbf,0x98,0x8b, + 0x15,0x63,0xcc,0x6f,0x08,0xaf,0xd4,0x0a,0x15,0xe1,0x2f,0xa9,0xaa,0xdf,0xbe,0x82,0x72,0x70,0x78,0x2b, + 0x48,0xe6,0x5f,0x69,0x17,0x62,0x69,0x59,0xb6,0x33,0x7e,0x70,0x8d,0x44,0x64,0xe9,0x24,0x50,0xee,0x32, + 0xce,0x10,0x04,0xb7,0xdb,0x1d,0x12,0x17,0x5a,0x16,0xc9,0xb5,0x75,0x5c,0x28,0x46,0xa2,0x46,0xf8,0x9c, + 0x76,0xa1,0x2d,0xf6,0xa8,0x9a,0x37,0x73,0x82,0xcf,0x8e,0xeb,0x5d,0x53,0x12,0x5b,0x54,0xde,0xb7,0x5c, + 0x79,0x69,0x44,0x8f,0xd3,0x28,0x1d,0x97,0x93,0xe1,0x54,0xe2,0x47,0xa3,0x17,0x7b,0xd1,0x54,0x84,0xef, + 0xe0,0x0c,0xf4,0x4e,0x9e,0x36,0x77,0x32,0x21,0x8f,0x6b,0xdc,0x88,0x78,0x80,0xed,0xdc,0x5a,0x8b,0x66, + 0x63,0xce,0x37,0x89,0xa6,0x8a,0x4a,0xe8,0xed,0x3c,0xed,0xde,0xce,0x71,0x00,0xb9,0x87,0xe3,0x4d,0x7c, + 0x85,0x0e,0x2f,0xf0,0x67,0x4e,0x5d,0x9d,0xd7,0x12,0xb0,0xb9,0xe9,0xea,0x32,0x2a,0xc6,0xf3,0xc9,0x70, + 0xb9,0xb5,0x0f,0x62,0xa5,0xd3,0x88,0x66,0x8d,0x96,0x4c,0xee,0x5f,0x24,0xd5,0x17,0xf9,0x8a,0xc5,0x6c, + 0x8f,0x16,0x29,0x01,0xd8,0x8f,0x34,0xd7,0xf0,0xc3,0x3e,0x5e,0x72,0x17,0x47,0x2b,0xe9,0xf5,0x32,0x08, + 0x17,0xe6,0x69,0xa3,0x2d,0x70,0x97,0x84,0x9d,0x7d,0xf1,0x05,0x40,0xec,0xbe,0x8e,0x4e,0xc6,0xbc,0xd3, + 0x2c,0x5a,0x58,0x57,0x25,0x26,0x47,0x4e,0xa7,0xbf,0xeb,0x9d,0x63,0xcb,0xfe,0xba,0xdb,0xd3,0x80,0x6d, + 0x0b,0x5a,0x1c,0xc0,0x2e,0x0d,0x47,0x1d,0xe6,0xa3,0xa1,0xa9,0x66,0x3b,0x2c,0x9a,0x5d,0x40,0x51,0x89, + 0x39,0x7b,0x34,0xc8,0x5b,0xff,0xfc,0x6c,0xe0,0xe5,0x5d,0x23,0xe2,0xf3,0x21,0x2b,0x5b,0x0e,0x8d,0x89, + 0x85,0xb6,0x64,0xba,0x8c,0xcb,0xe7,0x94,0xee,0x57,0xda,0x40,0x5f,0x25,0x42,0x2e,0x1b,0x15,0xc3,0x77, + 0xcc,0x26,0x98,0xb7,0x5f,0x1a,0x6f,0xff,0x32,0x0e,0xff,0xe1,0xbc,0x63,0x41,0xa8,0xd2,0x32,0x78,0xd0, + 0xcd,0x1f,0xe4,0xf3,0x79,0x99,0x54,0x5f,0x27,0xe9,0xc5,0x65,0xe5,0x94,0x6a,0x2b,0x2d,0xca,0xfa,0xf1, + 0x1c,0xd7,0x2e,0xc4,0xd0,0x13,0xd8,0x56,0x32,0xed,0x34,0x7c,0x03,0xe2,0x0d,0xce,0xcf,0x06,0x56,0xef, + 0x27,0x2a,0x06,0x8e,0x82,0x94,0x4e,0xa9,0x01,0xe3,0xb1,0x26,0x26,0x38,0xe8,0xf4,0x36,0x97,0xf3,0x5d, + 0x0a,0x4f,0xa0,0x3c,0x5d,0x75,0xc4,0xc1,0x1e,0x44,0x3e,0xb7,0x44,0x1f,0xef,0x1d,0xd9,0x66,0xf6,0x75, + 0xe0,0x4e,0x89,0x1a,0x64,0xe2,0x75,0x05,0xec,0x45,0x57,0x00,0x63,0xab,0x62,0xd6,0x79,0x30,0x75,0x33, + 0x9c,0xec,0x4b,0xf7,0xd9,0x4c,0x1d,0x8c,0x93,0x76,0xd1,0x16,0xde,0xea,0xc9,0x6f,0xf1,0xe5,0x38,0xd4, + 0x9f,0xa5,0x56,0x24,0x58,0x9f,0xea,0x3a,0x7b,0x13,0xc9,0xeb,0x44,0x63,0x94,0x3a,0x98,0xe2,0xc2,0x8c, + 0xa5,0x36,0x01,0xad,0xb5,0x73,0xd2,0x33,0x60,0xe0,0x64,0xec,0x4a,0xed,0x5c,0x9d,0xb3,0x44,0x74,0xa1, + 0x02,0xf5,0x56,0x2f,0x40,0xd6,0x49,0x35,0x5b,0xa7,0x18,0x0d,0xe5,0x88,0xcc,0x70,0x76,0x8f,0x12,0x3f, + 0x6b,0x38,0x24,0xe2,0xac,0x0d,0x8d,0x2b,0x03,0x47,0x7a,0x30,0x11,0x8b,0xc5,0xec,0xca,0x6e,0x60,0x25, + 0xfe,0x84,0x2f,0xec,0xe7,0xe9,0xc5,0xc0,0x89,0x8c,0x1b,0xfd,0x5e,0xa8,0xfa,0x43,0x23,0x26,0x6f,0x54, + 0xa6,0x9d,0x9f,0x20,0x54,0x8b,0x7e,0x75,0x8b,0xb5,0x62,0xf2,0x46,0x3f,0x56,0x8d,0x82,0xcd,0x20,0xbe, + 0x5b,0x31,0x52,0x9e,0xd6,0x14,0x1b,0x56,0xaa,0x84,0x29,0x43,0x73,0xed,0xa2,0x76,0x78,0x5b,0x8d,0x6a, + 0xa1,0xa2,0x6f,0xd6,0x92,0x5f,0xb4,0xf5,0xf1,0x87,0x2c,0x11,0xd8,0x9a,0x5a,0x63,0xe3,0x43,0x0f,0xa6, + 0xda,0x23,0x2e,0xce,0x0e,0xcc,0x6b,0x8b,0x5f,0xab,0xec,0x07,0xc9,0x76,0x73,0x10,0xf0,0x85,0xbc,0x33, + 0xab,0x31,0x92,0x90,0x3a,0x8f,0xb6,0x4b,0xeb,0x2d,0x91,0xb8,0x01,0x9b,0x36,0xea,0x1a,0x86,0x95,0xd6, + 0x85,0xa2,0xa5,0xba,0x88,0x19,0x0e,0x9a,0xdf,0x1c,0x23,0xf6,0x6f,0x52,0xb6,0x9a,0x74,0x5c,0x97,0x18, + 0x84,0x09,0xa5,0xc2,0x9f,0xd2,0xf0,0xa2,0xf9,0x59,0x5c,0xd1,0x75,0x47,0xca,0xda,0x56,0x94,0x87,0xf7, + 0x9e,0xc4,0xf5,0x0d,0x2e,0x87,0x37,0xf3,0x64,0xad,0xb4,0x28,0x2b,0xc4,0xf7,0x4b,0x33,0x0c,0x76,0x6d, + 0xe2,0x6e,0x3c,0x0c,0x36,0x38,0x48,0xed,0xc9,0xa9,0x76,0x3a,0xe2,0x8b,0xe9,0xc6,0x85,0xd5,0x1f,0x52, + 0x88,0xf0,0xab,0xb4,0xc5,0x9a,0xe3,0x14,0x66,0xdb,0x03,0x77,0xd5,0xf4,0xc0,0x6d,0x1c,0x0a,0x43,0x0d, + 0x8a,0xa6,0xe2,0x0b,0x2c,0xbf,0x71,0x7e,0x0f,0x7d,0xfe,0x27,0xb5,0x47,0x02,0xdf,0xe9,0xd3,0x2b,0x28, + 0x85,0x48,0x18,0xec,0x83,0x83,0x6f,0x33,0xfc,0x1b,0xc0,0x8d,0x16,0xe8,0x36,0xa8,0x32,0x3f,0x81,0x5d, + 0xc6,0xb1,0x6c,0xcc,0x6f,0x53,0xf5,0x2b,0x94,0x29,0x6f,0x4f,0x6f,0x7d,0x7f,0x14,0x0e,0xd6,0xa7,0x59, + 0xd0,0x1f,0x05,0xa7,0x9b,0xd3,0xcd,0xd1,0x85,0xfa,0x0a,0xda,0xef,0x87,0x83,0x4f,0xfa,0xa3,0x3f,0xf6, + 0x6f,0x37,0x7e,0xb0,0x1e,0x9f,0x4e,0x4e,0x8f,0x4e,0x4f,0x27,0xf4,0xed,0xf7,0x6e,0x15,0x76,0x3e,0x42, + 0x8c,0xf6,0xf6,0x57,0xa9,0xf2,0x4e,0x4f,0xf7,0x0f,0x3c,0x36,0x5f,0x86,0xa2,0xf9,0xf6,0x17,0x77,0x76, + 0xc5,0x5f,0x8a,0x9f,0xf4,0x3d,0xdd,0x19,0xe9,0x8d,0xd7,0xcf,0x94,0x77,0x01,0x49,0xa0,0xfa,0x0d,0x66, + 0x7e,0x2c,0xde,0x87,0x4f,0xd3,0x70,0xec,0x39,0x72,0x7f,0x6f,0xa2,0x2c,0xca,0x6e,0x99,0x79,0x00,0x44, + 0xe0,0x5a,0xb1,0xc8,0x34,0x8a,0x4c,0x45,0x5e,0x23,0x06,0xb7,0x43,0x11,0x6c,0x39,0x55,0x45,0xdf,0xbc, + 0xf8,0xfe,0x3b,0x4a,0x00,0x60,0x23,0x86,0x63,0x66,0xdc,0x98,0x47,0x85,0x53,0x10,0x8e,0x72,0x21,0x4a, + 0x81,0x52,0x0c,0x12,0xbe,0x48,0x99,0xe0,0x88,0x0a,0x2c,0x7f,0x92,0xc1,0x3d,0x6b,0x07,0xf7,0xe9,0x79, + 0x8e,0x6a,0x7f,0xdd,0x24,0x2e,0xcb,0xfa,0x91,0x3b,0x9e,0xd0,0xeb,0x37,0x72,0xf4,0x3d,0x05,0x2b,0xcd, + 0x46,0x5b,0xba,0xd4,0xd4,0xe6,0x77,0x3f,0x4a,0x81,0x84,0xe8,0xe2,0xff,0xec,0x9e,0x36,0xbe,0x22,0xf9, + 0xf3,0xd3,0xc6,0xe8,0xbf,0x35,0x6d,0x5c,0x55,0x7b,0xda,0x5e,0xa7,0x98,0xb9,0xe6,0xd4,0x49,0x61,0x67, + 0xea,0x38,0xe1,0xaf,0x4e,0x1d,0x37,0xdb,0x98,0x3a,0x4e,0x71,0xa6,0x8e,0xdf,0xcd,0xd4,0xb9,0x6d,0xd9, + 0x52,0xc8,0xef,0x4b,0x81,0xfa,0x6b,0x1f,0x56,0x07,0x32,0x79,0x55,0xce,0x97,0x4d,0xb0,0xfc,0x63,0x2b, + 0x50,0x98,0x53,0xe6,0x0b,0x6d,0xd5,0x28,0xa6,0x7b,0xda,0x1a,0x53,0x2c,0x0c,0xd3,0x92,0x31,0x33,0xae, + 0x9e,0x68,0x28,0x8e,0xbd,0x68,0xc3,0xf4,0x51,0x0c,0x24,0x6f,0xce,0xe1,0x76,0x28,0xc9,0xc5,0x66,0x5a, + 0x5b,0x38,0xc2,0xfc,0xb3,0x82,0x69,0xa7,0x11,0x73,0x2e,0xd9,0xc4,0x11,0xe6,0x81,0x6c,0xe8,0x28,0xa6, + 0x8f,0x85,0xae,0x09,0x9b,0x4b,0x7a,0xd8,0x69,0x82,0x2a,0x5d,0xae,0x8d,0x0d,0xd9,0x62,0xb2,0xd3,0xb0, + 0x12,0xcd,0x36,0x2d,0x1b,0xd9,0x16,0x55,0x1b,0xa2,0x1a,0x4b,0xca,0x2d,0x8b,0x54,0x6d,0xe3,0xca,0x26, + 0x96,0x1d,0x16,0xae,0xe8,0xab,0xb1,0x7f,0x95,0x76,0x68,0xb2,0xd8,0xae,0x56,0xdb,0x60,0xe2,0x2e,0xc3, + 0x18,0x4f,0xf2,0x34,0xb5,0xcd,0x31,0x65,0xda,0xc4,0x3c,0x55,0x4f,0x9e,0x18,0x52,0x18,0x53,0xcb,0xda, + 0x0a,0xb4,0x35,0x45,0x6c,0x99,0x4b,0x13,0xc5,0x73,0x0d,0x35,0xc0,0x3c,0x3a,0xfa,0xe3,0xb4,0xfc,0xc4, + 0x1f,0xd3,0x5f,0xef,0xce,0xfd,0x07,0xa7,0x47,0xd1,0xa4,0x1f,0x10,0xae,0x41,0x62,0x14,0xe0,0xef,0x28, + 0xf4,0xe8,0xb3,0x37,0xf9,0x84,0xd0,0xce,0xfa,0x0e,0x3d,0xde,0xa1,0xc7,0x3b,0xfd,0xb5,0x2e,0x13,0xdd, + 0x7f,0xf0,0x5f,0x54,0x24,0x08,0x46,0x47,0x2a,0xcd,0x23,0x6f,0x1c,0x1f,0xbe,0x7b,0x78,0xf8,0xfb,0xd9, + 0x64,0x7c,0x7a,0x7a,0x73,0x7a,0x7a,0x78,0x7a,0x3a,0x98,0x7c,0xe2,0xa9,0x9c,0x3e,0x01,0x87,0x79,0xfd, + 0x34,0xef,0x13,0xa6,0x0b,0x83,0x91,0x3c,0x06,0x9e,0x8a,0xf3,0xc8,0x41,0x76,0xde,0x1f,0xf7,0xbd,0x7e, + 0x9e,0x13,0x87,0x66,0x3a,0x77,0x7a,0x34,0x0a,0x1e,0x1c,0xd1,0xba,0xb4,0xb2,0x9d,0x9e,0x1e,0x21,0x67, + 0xdf,0x1b,0xff,0xf1,0x60,0xf2,0xc9,0x03,0x1a,0xcf,0x0a,0x45,0xee,0xef,0x3d,0xfe,0xfe,0xd1,0xcb,0xdf, + 0x7e,0x78,0xd2,0x43,0x7a,0xff,0xc1,0x51,0xaa,0x16,0x92,0x0e,0x0b,0x9e,0xb9,0x3c,0x9e,0x8e,0x8f,0xd4, + 0x32,0xc7,0xdd,0xb1,0xf7,0xc6,0xb3,0x58,0xf8,0xe8,0x8d,0x3f,0xa0,0x81,0x5c,0xa8,0xe6,0x96,0xa7,0x8c, + 0x1e,0x98,0xfb,0x44,0x5f,0xbd,0x5c,0xe6,0xea,0x3a,0x27,0x56,0x5a,0x5d,0xe4,0xea,0x6d,0xae,0xce,0x72, + 0x02,0x22,0x75,0x93,0xab,0x37,0xb9,0xda,0xcf,0xd5,0xeb,0x5c,0x3d,0xca,0xd5,0x0b,0x06,0x41,0x6d,0xbf, + 0xab,0x0d,0xa3,0xcd,0xad,0x07,0x1f,0x82,0x0f,0x73,0xdc,0x1c,0xbf,0xa4,0xbf,0xde,0xc1,0xa2,0x1a,0x7a, + 0xa1,0x77,0x9f,0x36,0xe5,0xc1,0x05,0x3f,0x3e,0xc0,0x23,0xe0,0x93,0x5e,0xee,0x78,0x77,0xe8,0x25,0xbe, + 0x5a,0xe2,0xc3,0x01,0x3e,0xfc,0xed,0xe4,0x18,0xcf,0xa7,0x19,0xbf,0x7c,0xce,0xcf,0x95,0xb7,0x51,0xdf, + 0xd3,0xd8,0x0e,0x68,0x92,0x89,0x01,0xbe,0xa8,0xd6,0x28,0xbe,0xa6,0x62,0xc1,0x90,0x06,0xf4,0xaa,0xf3, + 0xd3,0x9a,0x6a,0x5a,0xff,0xed,0x73,0xce,0xf1,0x84,0x3b,0x0c,0xcd,0x87,0x66,0x3f,0x9f,0xe5,0xdd,0xa4, + 0x05,0x9d,0xc1,0x4f,0x72,0xf1,0xa1,0x70,0xca,0x72,0x96,0x04,0x9e,0x8b,0xd4,0x53,0xcc,0xef,0x7f,0xac, + 0xff,0xb8,0x3e,0xcc,0xb3,0xf0,0x48,0x7d,0x89,0xd7,0xeb,0xc3,0x35,0x92,0xe8,0xf5,0x31,0xbd,0xfa,0x83, + 0x4f,0xe8,0x40,0x2d,0xfb,0xd4,0x9b,0x34,0x5b,0xe7,0x73,0x7e,0x1e,0x7c,0x12,0x1c,0xa9,0xef,0xe8,0xab, + 0x22,0xb8,0x52,0x74,0xdc,0x4e,0x08,0xca,0x28,0x87,0xfb,0x1a,0x8c,0xf6,0x8f,0xd4,0x0f,0x0c,0x15,0xfe, + 0xfa,0x34,0xd8,0xa7,0x4e,0x3f,0xcf,0xd9,0x3c,0xec,0x13,0x7a,0x51,0x3f,0xe2,0x4b,0x88,0x96,0x59,0xf4, + 0x7c,0xa4,0xbe,0xa0,0x84,0xd3,0xc1,0xf8,0x8f,0xc1,0xa4,0x4f,0x59,0x7f,0xca,0x3b,0x8d,0x77,0xfc,0x6f, + 0xd3,0xe8,0xdb,0xf4,0x03,0x86,0x4a,0x41,0xad,0x0d,0x11,0x55,0xea,0xdb,0xd4,0x35,0x4e,0xa4,0x43,0xf8, + 0x67,0xb4,0xfc,0xe6,0x6a,0x91,0x95,0xe1,0x77,0x2f,0x4e,0x67,0xfd,0x23,0xf5,0x35,0x52,0xf8,0x99,0xfa, + 0xf1,0x2e,0x8f,0xc6,0xbf,0xa5,0x74,0xe6,0xa8,0x5b,0x9a,0xde,0x97,0xef,0x39,0x5b,0x44,0x96,0x64,0xbc, + 0x4a,0xc8,0xd5,0x90,0x61,0x61,0xf8,0x72,0xff,0x79,0xbc,0x64,0x91,0xec,0xd8,0xbb,0x3e,0xe4,0xcb,0x14, + 0x6f,0x02,0xe9,0x2c,0x5e,0x79,0xd0,0x20,0x08,0xbd,0xc9,0x7a,0x4d,0x29,0xfa,0xd9,0xa8,0x86,0xea,0xd3, + 0x86,0x13,0xe1,0xb9,0x4b,0x4e,0xae,0xeb,0xc3,0x74,0x2e,0xcb,0x9c,0x47,0xe9,0xc8,0xa3,0xba,0x68,0x57, + 0x62,0x53,0x86,0xc4,0x22,0xc6,0x91,0xd0,0xe4,0x26,0x2b,0xae,0x73,0xb5,0xdd,0x72,0x23,0xcd,0xd6,0x31, + 0x8d,0x7e,0x63,0xfb,0x91,0xaf,0xa0,0x95,0xa2,0x92,0x04,0xb2,0x2c,0x6e,0x50,0x89,0xeb,0x8c,0xf3,0xfc, + 0x0d,0xb5,0xfd,0x2b,0xd2,0x89,0x6d,0x9a,0x82,0x86,0x9d,0x12,0x82,0xd6,0xe4,0xde,0x20,0x9d,0x13,0x8e, + 0xf0,0xfa,0x05,0xb5,0x4f,0xc3,0xbf,0x63,0x8a,0xdc,0xa1,0x4d,0xae,0x7e,0x47,0xa1,0xdb,0xe4,0xcd,0x32, + 0x44,0x3e,0xc1,0xdf,0xe1,0x54,0xef,0xc7,0x95,0x6e,0x97,0x3a,0xb5,0x42,0xa7,0x68,0x76,0xa5,0x43,0x09, + 0x27,0xe8,0x2e,0x14,0xf1,0x2c,0xcd,0xa5,0xfd,0x15,0xda,0xaf,0xab,0x74,0x5b,0xe5,0x5c,0xdc,0xa4,0xb4, + 0xb1,0xd2,0x6d,0x2c,0x74,0x1b,0xc6,0x67,0x51,0xe2,0x2f,0xda,0x4d,0x51,0x82,0x4c,0x3a,0x8c,0x1f,0x7e, + 0xc5,0x7b,0xa3,0x95,0x54,0xd7,0xb8,0x80,0x7b,0xfc,0xd1,0x74,0x80,0xa9,0x43,0x28,0x3a,0x50,0x3a,0xf2, + 0x46,0x13,0x00,0x27,0xd4,0xe0,0xec,0x26,0xea,0x17,0xc2,0x0c,0x54,0x8c,0x38,0x06,0x80,0x1d,0xe4,0xf7, + 0xe6,0x86,0xfb,0x5d,0xae,0x6a,0x56,0x22,0xd4,0x97,0x6a,0x1f,0xba,0x46,0x73,0xef,0x50,0x73,0x81,0x2d, + 0xf6,0xee,0x67,0xc0,0x8a,0xef,0x5e,0xc5,0xbd,0xa1,0xe5,0x45,0xac,0x0c,0x3d,0xd1,0xca,0x5c,0x4a,0x87, + 0xd6,0xad,0xef,0x2f,0xf3,0x60,0xaf,0xbb,0xe5,0x3b,0xf8,0xd9,0xdf,0x37,0x1e,0x38,0x7e,0x8e,0x17,0xbd, + 0xa8,0xd7,0x8a,0xac,0xae,0xaf,0x14,0xe4,0x12,0x73,0x9f,0x1d,0xc8,0xea,0x88,0x8d,0xf6,0x42,0xd3,0x56, + 0x9e,0xd7,0xe6,0xf1,0x03,0x53,0xe9,0x26,0xc0,0x1d,0xa8,0xef,0xe6,0x41,0xab,0xd7,0xdc,0x96,0x77,0x26, + 0xee,0x5e,0xa0,0x12,0x94,0xf7,0x46,0x54,0x4c,0x12,0x7a,0x21,0x3d,0xea,0xab,0x37,0xa9,0xf0,0x4e,0xdf, + 0xe7,0x18,0x0c,0x62,0x47,0x3f,0xf2,0xce,0x32,0x9f,0xbe,0x63,0x0f,0xd0,0x0f,0x84,0x44,0x04,0x02,0xde, + 0x30,0x73,0x6f,0x34,0xa1,0x40,0xdf,0xf7,0x7a,0x5e,0x3f,0x86,0xb5,0xb1,0xd7,0xec,0xbb,0xb9,0x54,0xa5, + 0x46,0x9b,0x13,0x10,0x36,0xdf,0x09,0x5f,0x7a,0x81,0xe5,0x8a,0xd8,0x6c,0xa7,0xb6,0x09,0xad,0xf1,0x40, + 0x4e,0x18,0xd6,0x6e,0x1f,0x7a,0x8f,0x77,0x4d,0xb9,0x33,0x08,0x5a,0x62,0xd9,0xef,0x32,0x07,0xc1,0x7a, + 0xed,0xa1,0x1d,0xec,0x69,0x8d,0x07,0x8a,0x55,0x72,0x58,0x7f,0xc4,0xab,0x47,0xdb,0x5a,0x3e,0xce,0x63, + 0xec,0xea,0xfa,0x2b,0xbf,0x7b,0xc3,0xff,0xac,0x64,0x06,0xc4,0x09,0x8e,0xf2,0x9a,0xa6,0x24,0x5e,0x9f, + 0xa8,0xca,0x60,0x74,0x96,0xca,0x93,0xa2,0x2d,0xd4,0x67,0x3e,0xdc,0xeb,0xfb,0x52,0x3f,0xfa,0x3e,0xf2, + 0x42,0x9d,0x93,0xa6,0x37,0x3c,0xfb,0x97,0xcd,0x1c,0x23,0x29,0x40,0xf8,0x33,0x77,0x9a,0x3d,0x81,0xa2, + 0x38,0x92,0x6c,0xfb,0xe0,0x5e,0x1b,0x93,0x4d,0x49,0xd3,0x08,0xc9,0x03,0xdd,0xaf,0x91,0x2f,0x75,0xa1, + 0x19,0xe2,0x10,0x3a,0x8c,0x61,0xa9,0x3a,0x8d,0x14,0xf7,0xf7,0xaf,0xa9,0x62,0x5f,0x96,0x5c,0xfa,0xeb, + 0x85,0x79,0xc0,0x0d,0xa5,0x11,0x8d,0x84,0xb2,0xd2,0xe3,0x35,0x57,0xe2,0x36,0x12,0xdc,0x52,0x86,0xfb, + 0xc7,0x8c,0x2e,0xa9,0x5f,0xd4,0x01,0x1b,0x6e,0x7b,0x4c,0xf9,0x09,0xe9,0x8a,0xae,0x1c,0xe5,0xa2,0x09, + 0x68,0x64,0x33,0xee,0x5f,0xe8,0x53,0x60,0xca,0xd4,0xe9,0x94,0xda,0x3f,0x81,0x1e,0x81,0x94,0xb7,0xf0, + 0xb5,0x3f,0x65,0x38,0xf4,0x3e,0x0e,0x5a,0x04,0xd3,0xfd,0x9b,0xa0,0xb2,0xb5,0xdc,0xce,0x62,0xf9,0x54, + 0x66,0x6b,0xd2,0x10,0xba,0xa1,0xb9,0x7a,0xdc,0xf9,0xfc,0x63,0x40,0x1c,0x20,0xe8,0xe8,0x84,0xec,0xc4, + 0x2a,0x2d,0x7c,0x45,0x78,0x8d,0xfd,0xc7,0xe3,0xf4,0x92,0xa8,0xc1,0xf0,0xbb,0xad,0xc7,0x85,0x00,0x48, + 0xb0,0xe3,0xa6,0x63,0x69,0x4f,0x66,0x05,0x9d,0x82,0x6e,0x9f,0x5a,0x45,0xf9,0xc8,0xf4,0x32,0xd4,0x1f, + 0xa0,0x83,0x36,0x3a,0x4f,0x43,0xdd,0x2b,0xb5,0x88,0x5a,0xdb,0x5a,0xe6,0x67,0x08,0x74,0xdd,0xfd,0x4d, + 0x5b,0x8d,0xc3,0x63,0x89,0xe4,0xe1,0x09,0x5a,0xf0,0xcc,0x0c,0xe5,0xce,0x8a,0x67,0x64,0x11,0x0c,0xa7, + 0x94,0x81,0x4e,0x3b,0x80,0x55,0xa3,0x1e,0xad,0x67,0x62,0x2f,0x29,0x87,0x5e,0x7f,0x1e,0x28,0x59,0x09, + 0x69,0x5f,0x79,0x66,0xff,0xe8,0xd9,0x5e,0xa9,0x79,0x2d,0x59,0xf1,0xcb,0xf5,0x1a,0x0a,0xd3,0xb2,0x0e, + 0xe7,0x8b,0x15,0x9d,0x4e,0x5e,0xf3,0xea,0xca,0x33,0xe6,0x82,0xf5,0x42,0xec,0xbd,0xca,0x9a,0x62,0x42, + 0xc2,0xa4,0x9d,0xb8,0xdf,0xde,0xc2,0x32,0x8d,0xb8,0xc5,0x18,0x5f,0x8b,0x06,0x83,0x74,0xd7,0x21,0x91, + 0x00,0x3c,0x25,0xba,0x2d,0x39,0xb8,0xf3,0x1b,0xe6,0x79,0xde,0x5f,0x85,0x25,0xba,0x3a,0x2b,0xd8,0x10, + 0x63,0xf9,0x03,0xd1,0x53,0x71,0x97,0x4b,0x0a,0x10,0xb2,0xda,0x01,0x17,0x84,0x95,0xc4,0x15,0x21,0x5f, + 0x45,0x54,0x7b,0x2d,0x27,0x0d,0x7f,0x2f,0xe0,0x70,0xe7,0x8b,0xe4,0x59,0x32,0xaf,0xbe,0x5f,0x26,0x19, + 0xb2,0x24,0xb9,0x6a,0x4c,0x45,0x58,0xa6,0xaa,0x25,0x0b,0x0d,0x7f,0xac,0x94,0x23,0x3c,0x78,0x97,0x13, + 0xff,0x30,0x5b,0x4d,0xbb,0x55,0x6e,0x38,0x96,0x23,0xef,0x72,0x13,0x20,0xcb,0x84,0xfc,0x0b,0xd8,0x23, + 0xc4,0xe0,0x55,0x9e,0x12,0x98,0x28,0xcc,0xc8,0xbf,0xba,0x49,0xd4,0x1e,0x1c,0xbd,0x00,0xda,0xf9,0xcc, + 0x06,0xfc,0x43,0xb2,0xae,0xcc,0x4e,0x50,0xc4,0xbb,0xa4,0x99,0x76,0xe7,0xa1,0xec,0xc5,0x98,0x44,0x17, + 0xea,0xfb,0xd5,0x08,0x3b,0xb6,0x82,0x67,0x54,0x08,0x8c,0xbe,0xb1,0x2c,0xdf,0xe9,0xcd,0xfe,0xd9,0xa4, + 0xbf,0x3e,0x25,0x0a,0x3b,0x98,0x7c,0x32,0x3a,0x0d,0xc0,0xee,0x45,0x0f,0xd6,0x7f,0x98,0x1e,0xd0,0xeb, + 0xa9,0x7f,0xa4,0xbe,0xd5,0x25,0xc6,0xc4,0xd6,0x11,0x73,0x77,0xb6,0x3f,0x41,0xd1,0x09,0x38,0x43,0xa2, + 0xae,0x5b,0x89,0xeb,0xd3,0xf1,0x1d,0xa2,0xef,0xef,0x4c,0xe8,0xc1,0xa3,0x07,0x0f,0x0f,0x44,0x06,0xe3, + 0xa7,0x9d,0x77,0x12,0x7c,0x42,0xd5,0x12,0xe5,0xfe,0x2b,0x48,0x9d,0x72,0x1a,0xde,0xfd,0x07,0x9c,0x19, + 0x85,0x9f,0x8b,0x9a,0x45,0x78,0x72,0x4f,0xc9,0x7c,0xdf,0xbb,0xab,0x56,0xcb,0xf0,0xde,0x3f,0x89,0x43, + 0x9e,0x57,0xe1,0xbd,0x7f,0xa8,0x02,0xb7,0x27,0xe1,0xbd,0xcf,0x15,0xbc,0x60,0x87,0x9f,0x1e,0x2b,0xb9, + 0xc0,0x0c,0xc7,0xff,0x54,0x9f,0xfe,0x9d,0x98,0x90,0xaf,0xf2,0x2e,0xbf,0x5c,0x40,0x39,0xfd,0x8a,0x80, + 0xc7,0xf1,0x99,0x35,0x24,0xb6,0xe9,0xf7,0x1c,0xc2,0x20,0x82,0x07,0xb3,0xa9,0xf1,0x02,0x00,0x89,0x2f, + 0x62,0x11,0x21,0x0e,0xa1,0x51,0xc1,0xdf,0x6c,0x1e,0xfd,0xfe,0x58,0x2e,0x1c,0x39,0x0b,0xe2,0x92,0x85, + 0x5f,0xe5,0x7e,0x13,0x37,0xf4,0x08,0xe3,0xf4,0x74,0xca,0x74,0x55,0x60,0x91,0x5e,0xf2,0x07,0x0f,0xc2, + 0xd5,0x62,0xc1,0x25,0xf6,0x4c,0x06,0x4a,0xf8,0x16,0x1a,0xba,0x8a,0x7d,0x87,0x36,0xbe,0x71,0x8a,0x7c, + 0x8c,0x17,0xcd,0x4f,0xf4,0x2e,0x1f,0x20,0x2f,0x68,0x7c,0x41,0x82,0x7c,0xe2,0xb9,0xc3,0xa7,0x3b,0xe2, + 0x15,0xea,0x0e,0x08,0x23,0xc9,0xd5,0x3b,0x38,0x30,0x3d,0x94,0x6f,0xdc,0xe7,0x63,0xd4,0x97,0xce,0x66, + 0x8b,0xe4,0x4f,0x15,0x3b,0x81,0x5c,0x81,0xd7,0xe7,0xcf,0x94,0xba,0x0b,0xf8,0xff,0x8d,0x16,0x82,0xb8, + 0xc6,0xb6,0x3f,0x16,0xb8,0x81,0xab,0xa3,0xda,0x75,0x2c,0xec,0xd9,0x85,0x2c,0xac,0x6a,0x60,0x08,0x42, + 0x10,0x5b,0x3a,0x48,0xa6,0x3a,0x0e,0x9f,0x57,0x5b,0x0b,0xd5,0x35,0x9d,0x53,0x4d,0x19,0xd5,0x74,0x07, + 0xf2,0x2f,0xda,0x6f,0x7d,0x30,0xdf,0x75,0xad,0x38,0xfb,0x1c,0x4a,0x1a,0x8e,0x8e,0x6a,0x75,0x44,0x5c, + 0x86,0x8d,0x84,0xd4,0x09,0x35,0xcd,0x14,0xbc,0x27,0x3b,0x47,0x9f,0xf6,0x94,0xce,0xef,0x05,0xba,0xcf, + 0xd3,0x45,0x1e,0xbf,0x46,0x5c,0xdd,0xff,0xcc,0xb7,0xbd,0x9e,0xe6,0xd6,0x59,0x26,0xbf,0x42,0x12,0x49, + 0x67,0x22,0x7e,0xd6,0xeb,0xdf,0x75,0xa2,0x15,0x5e,0x96,0xd1,0x6f,0x30,0xa8,0x36,0x8a,0xe9,0x9e,0xfd, + 0xf0,0x88,0x38,0x06,0xe3,0xc1,0x1d,0xf7,0x8c,0x5f,0x25,0x19,0x22,0xf8,0x35,0x73,0x6b,0xa9,0xa3,0xcd, + 0x67,0x39,0x8e,0xe8,0xda,0x67,0x45,0x8b,0xdf,0x72,0x36,0x8d,0xb6,0xe9,0x81,0x8d,0xde,0xd5,0x40,0xa0, + 0xeb,0xf5,0xa3,0x6c,0xa8,0x7d,0x23,0xbf,0x3d,0x4f,0x6c,0x20,0xc6,0x8e,0x85,0xdc,0xb3,0x66,0xbc,0xda, + 0x3f,0x66,0x36,0x4d,0x9e,0xce,0x22,0xed,0xa1,0xbe,0x1d,0x70,0x10,0x3e,0xba,0x69,0x15,0x7d,0x57,0x28, + 0x74,0x7a,0x7a,0xee,0xf5,0xbd,0x19,0xe1,0xf0,0x39,0x04,0x70,0x04,0xf4,0x15,0x02,0xea,0xd2,0x24,0xbf, + 0x65,0xc7,0x6c,0x53,0x08,0xff,0x70,0xec,0xa9,0x9b,0xb4,0xba,0x54,0xf1,0x4d,0x9c,0x56,0x8a,0x0d,0x03, + 0x14,0xfb,0x40,0xd7,0xca,0xf3,0x7c,0x0d,0xa4,0xd8,0x71,0xa9,0xe2,0xb8,0xf4,0xea,0x86,0xd0,0x6a,0xa2, + 0xde,0x42,0xea,0xa7,0x91,0x8d,0x22,0xe6,0x2c,0x87,0xb7,0x43,0xf6,0xc4,0xa2,0x64,0x04,0xc6,0x03,0x98, + 0x75,0xa9,0xcd,0xee,0x42,0x89,0x8d,0x91,0x10,0xf5,0xec,0x04,0x2d,0xcd,0x56,0x70,0xcc,0x78,0xbe,0xba, + 0xb8,0x80,0x98,0x50,0xcf,0x42,0x1d,0x74,0xc5,0xd3,0x7e,0x6a,0x70,0x26,0xe8,0xd3,0x81,0x86,0xb5,0xc6, + 0xd0,0x82,0x3e,0x8f,0x50,0x82,0x04,0xb7,0xc6,0x2c,0x9d,0x12,0xbf,0xa3,0xac,0xc0,0xde,0x59,0x0f,0xa1, + 0x74,0x20,0xfc,0xd3,0x53,0x42,0xf9,0xf4,0xa7,0xae,0xb5,0xf5,0x81,0xda,0xf0,0x1f,0xb5,0x25,0x3f,0x22, + 0x8a,0xd8,0x69,0x35,0xca,0x1e,0x83,0x09,0x2f,0x22,0xf6,0x71,0xb4,0x77,0x12,0xa8,0xb3,0x5c,0xaf,0x27, + 0x1b,0x88,0x41,0xc2,0xed,0x44,0x6c,0x19,0x66,0xf7,0xdf,0xe6,0xae,0x73,0x96,0xb7,0x39,0xdb,0xe1,0xe2, + 0x26,0xe7,0x32,0x8f,0x92,0x1a,0xaa,0xcf,0xf0,0x66,0xce,0x7a,0x80,0x93,0x3a,0x47,0x8a,0x73,0x92,0x73, + 0xe2,0x0d,0x12,0x5b,0x47,0x35,0x7f,0xb8,0xca,0x01,0xda,0x49,0xc7,0x46,0xf8,0x4e,0x36,0xc2,0x45,0x3b, + 0x43,0x5b,0x4c,0x43,0x79,0xde,0x6e,0xe5,0xc9,0xcb,0xaa,0x9d,0xe9,0x1a,0x5d,0xa0,0x95,0x48,0xaf,0xd2, + 0x0a,0x01,0x11,0xb5,0x51,0x2e,0x91,0xa7,0xac,0x7c,0xb2,0x77,0xc2,0xba,0x9e,0x88,0x71,0x8e,0xdd,0xf1, + 0xcb,0x25,0xe5,0xe2,0x6e,0x2a,0xcc,0x17,0xe8,0xd4,0x93,0x2d,0xcb,0x8c,0xf6,0x24,0xd3,0xdb,0xa2,0x8f, + 0x1b,0x3c,0xa8,0xb5,0xae,0xce,0xe5,0x6e,0xc1,0x77,0xad,0xa6,0x0b,0xe3,0x47,0x80,0xf5,0xef,0x54,0x59, + 0xc7,0xaf,0x17,0x4d,0xbe,0x45,0xa0,0xef,0xde,0x70,0xdd,0x50,0xe0,0xb5,0xe2,0x15,0x6b,0x5d,0xc8,0x52, + 0x32,0xab,0xfa,0xa7,0x51,0x5c,0x07,0xb5,0x4f,0x1f,0x44,0xc4,0xf5,0xc4,0x08,0x05,0xb3,0x30,0x59,0xb1, + 0xc9,0x69,0x5c,0x25,0x42,0xaa,0x19,0x9a,0x32,0xe2,0x6b,0x5f,0xe4,0x76,0x0c,0x30,0xdd,0x8a,0xa6,0x0f, + 0xa2,0x74,0x38,0xa5,0x02,0xc9,0x80,0xbd,0xac,0xf0,0x0f,0xfb,0x5b,0x67,0xc9,0x04,0xfa,0x3f,0x34,0xd9, + 0x23,0x4c,0x60,0xca,0xcd,0x1e,0x9e,0xf0,0x77,0xe6,0x8e,0xbc,0xf3,0x02,0x14,0x5e,0x39,0x62,0xc2,0xaa, + 0x80,0x85,0xba,0x3c,0xd0,0xf8,0x69,0xba,0xf7,0x8e,0xc5,0x33,0x82,0xb7,0xe4,0x5c,0x1c,0x07,0xb7,0x33, + 0xdf,0x09,0xe7,0x53,0x8d,0x8e,0xc8,0x0c,0xd2,0xa4,0x1a,0xe7,0x08,0xf0,0x74,0x82,0x45,0x84,0x32,0x7a, + 0x2d,0x95,0xa1,0x25,0x4b,0x06,0x35,0x7d,0xc9,0xd0,0xb6,0xc2,0x8d,0x73,0x8b,0xaa,0xe4,0x0f,0x0b,0x9a, + 0x94,0x6a,0xc8,0x42,0xbe,0x94,0x10,0x38,0xb1,0x24,0x2f,0x72,0x3f,0xb7,0xea,0x6c,0xb0,0x4b,0xcd,0x5b, + 0x77,0xe2,0xb3,0xe8,0x61,0x3e,0x5e,0x22,0x44,0x14,0xff,0x36,0xe4,0xdf,0x44,0xc0,0x9d,0x96,0xa7,0xa7, + 0x2f,0x88,0x74,0x0b,0xfc,0xfb,0x47,0x5e,0x7f,0x69,0x04,0xe1,0x01,0xed,0xf8,0x14,0xbc,0x34,0xac,0xb3, + 0x8c,0x68,0x7b,0xe6,0xca,0xb4,0x19,0x3c,0x0c,0xa4,0x59,0x4b,0x58,0x45,0xfd,0x59,0x32,0xff,0xa7,0xfd, + 0x4e,0x62,0xe2,0x96,0xd0,0xea,0x88,0x6a,0x07,0x54,0x47,0x10,0xa3,0x53,0xdb,0xa5,0xb4,0x7c,0x78,0xf8, + 0xe0,0xe8,0x82,0x58,0x0c,0x3a,0xf5,0xdd,0x2c,0xa7,0xe3,0x47,0x8f,0x1f,0xbe,0x7c,0x78,0x3a,0xae,0x73, + 0x4e,0x26,0x36,0x27,0x84,0xca,0xfe,0x52,0x89,0xdb,0x65,0xe8,0xb3,0x68,0x9f,0x4d,0x1c,0x46,0xef,0x32, + 0x96,0x83,0x92,0x1f,0xa0,0x04,0xe1,0x41,0xfe,0x42,0x30,0x6f,0x74,0x74,0x0e,0x2f,0x4d,0x7f,0xab,0xe8, + 0x52,0x15,0x54,0xd1,0xe2,0x70,0x8e,0x48,0xd4,0xd6,0x0e,0xe9,0x3a,0x72,0x94,0x01,0xee,0x8b,0x0c,0x00, + 0x6a,0x98,0xd7,0x3c,0xf9,0x8b,0xdc,0x44,0xd4,0x32,0x16,0x64,0xae,0xea,0xc0,0xe1,0xe9,0x9b,0x7b,0x89, + 0x14,0xb9,0x62,0xf0,0x4d,0x74,0x78,0x46,0x44,0xaa,0xd0,0x2a,0x88,0x3a,0x3c,0x82,0x76,0x58,0x52,0xef, + 0xc2,0x4f,0x15,0x6c,0x6d,0x33,0xff,0xaa,0x7f,0x8f,0x58,0x3c,0x8d,0xea,0x37,0xd0,0xeb,0x9a,0xb7,0xda, + 0xbc,0x70,0xdb,0x9c,0x3c,0x90,0xf6,0x2e,0xb8,0xbd,0xcc,0xbf,0xe8,0xdf,0x75,0x8b,0x23,0x3f,0x34,0xa4, + 0xd9,0x3d,0xad,0xbf,0x12,0x95,0xc3,0xb7,0xc8,0xf8,0x16,0x77,0xcb,0x26,0xa0,0xa1,0x2d,0x80,0xfc,0x67, + 0x36,0xff,0x54,0xf2,0x9f,0x49,0xbb,0xe7,0xd1,0x62,0x98,0xf9,0x67,0x4e,0x39,0x9a,0xc0,0xb3,0xf1,0xc9, + 0x44,0x9d,0x33,0x5b,0xea,0xd6,0x71,0xd3,0x8e,0x95,0x92,0xd8,0x4a,0x63,0xa9,0xd4,0x46,0xfe,0xbb,0x35, + 0x1e,0xff,0x12,0x54,0xc5,0x9c,0x47,0x88,0xcd,0x82,0x5d,0x16,0x2e,0x36,0xd4,0x64,0xe2,0x76,0xd5,0xd9, + 0x55,0xc3,0x3d,0x6c,0x06,0x5d,0x6d,0x99,0xb3,0xf1,0x47,0x6e,0x13,0x0a,0x4a,0x18,0x06,0x99,0x9f,0x37, + 0x3a,0xac,0xfd,0x47,0x9a,0x40,0x9c,0xd8,0x4f,0xb5,0x0d,0xe6,0x0a,0x7b,0xf1,0x05,0x9d,0xe2,0x84,0x36, + 0xd0,0x99,0xcc,0x4f,0x9b,0x85,0xe1,0xfb,0x7c,0xa1,0x8a,0xcd,0xc6,0x17,0xab,0xa9,0xe0,0x76,0x2b,0xd4, + 0x42,0x16,0x59,0x37,0x85,0x6c,0x75,0x51,0xd7,0xc9,0xdc,0xbf,0x60,0x14,0xda,0xbf,0x99,0xb8,0x0e,0x2f, + 0xa8,0x17,0x6a,0xc5,0x8f,0xb9,0x38,0x80,0x2e,0xf8,0x82,0xdc,0x0c,0x73,0x11,0x4d,0xd9,0x5b,0xc3,0xde, + 0x5e,0xca,0x3e,0x78,0xa4,0xfb,0x1a,0x86,0x97,0xbc,0xa9,0x45,0x32,0x35,0xc7,0x8e,0x3f,0x1e,0xce,0xee, + 0xcf,0x87,0x33,0xa3,0xe4,0x77,0x69,0x0a,0x8c,0x67,0x93,0xe1,0x92,0x1a,0x3d,0x84,0xb5,0xdc,0x25,0xc6, + 0x64,0x00,0xe8,0x8e,0xe7,0xdd,0xc1,0xbc,0xf1,0x1d,0xd5,0xe5,0xf8,0xde,0xe4,0xe0,0x40,0x2b,0x74,0xe2, + 0x45,0xe9,0xe4,0x4f,0xdd,0xe4,0x4f,0x6d,0xf2,0x67,0x6e,0xf2,0x67,0xda,0x9a,0xf0,0x9a,0xab,0x59,0xaf, + 0x91,0x11,0x7f,0x3f,0xa3,0xbf,0x9e,0xa7,0xae,0x22,0x2f,0x36,0x2e,0xae,0xe1,0xbe,0x59,0x6a,0x38,0x99, + 0x8c,0xcc,0x1e,0x79,0x9c,0xc0,0xa5,0xee,0x77,0xc9,0x0d,0x5c,0xa2,0x96,0x5f,0xe6,0xc5,0xd7,0x94,0x2b, + 0xec,0xfe,0x3a,0x5c,0xd2,0x88,0xb4,0xee,0x3a,0x2a,0x51,0x4c,0x62,0x87,0xdf,0x24,0xfe,0x35,0x6d,0xa3, + 0xcd,0x66,0xc1,0xaa,0xcf,0xbc,0xc8,0xac,0xc0,0x4a,0x08,0xd4,0x3d,0x71,0xc2,0xac,0x85,0x2b,0x05,0xea, + 0x96,0xf0,0x48,0x1f,0x71,0x5c,0x84,0x16,0xb2,0xcf,0x60,0x4b,0xc6,0x57,0xde,0xf4,0x06,0x8f,0x36,0x19, + 0x6c,0xb2,0x6f,0x18,0x17,0xe5,0x8a,0x7d,0xb7,0x10,0x0a,0x6a,0xed,0xbb,0x37,0xc6,0x64,0x7c,0xdf,0x3c, + 0xbc,0xd6,0x0f,0x80,0x9d,0x6b,0x7b,0xbe,0xed,0x5b,0xc7,0xce,0xd7,0x01,0x81,0xf4,0x54,0x6f,0xf7,0x7d, + 0xb8,0x71,0x75,0x9e,0x17,0xce,0xf3,0xdc,0x79,0xf6,0x5f,0x47,0xfb,0x2e,0xc6,0x52,0x84,0x0b,0xef,0x1f, + 0x13,0xe8,0x5f,0xf7,0xa3,0xd7,0xaa,0x51,0xf9,0x9b,0xc6,0xb9,0x7f,0xac,0xae,0x81,0x70,0xae,0x83,0xcd, + 0x35,0x8b,0x23,0xdf,0x80,0x33,0x88,0x60,0x39,0x6e,0x31,0xe9,0x9b,0x1a,0x99,0xbe,0x61,0x1d,0xd3,0x4a, + 0xd4,0x94,0xb7,0x50,0x6d,0x65,0x4c,0x64,0x37,0x85,0xcf,0x32,0x22,0x89,0x12,0x72,0x99,0x2b,0xe7,0x1a, + 0xa2,0x71,0xfa,0x39,0x92,0x15,0xf7,0x18,0xec,0x10,0xaa,0x6c,0x9d,0x88,0xaa,0x0b,0x24,0x76,0x40,0x4a, + 0x67,0xde,0xf7,0x03,0x97,0xfe,0xaa,0xb6,0x50,0x77,0x68,0x31,0x77,0xa9,0xd1,0x93,0x73,0x2c,0xc6,0xb0, + 0x7e,0x95,0x1d,0x2b,0x02,0xd2,0x72,0xbd,0xbe,0xc1,0x1d,0xe7,0xf0,0x07,0x80,0x3c,0x5c,0x66,0xd3,0xdc, + 0x21,0xca,0x55,0x33,0x20,0x45,0xad,0xec,0x4c,0x48,0x4f,0x48,0xdb,0xca,0xa5,0x6c,0x8d,0xf0,0x12,0xf1, + 0x51,0x7f,0xce,0x8d,0xee,0x64,0xa6,0x75,0x26,0xe5,0x29,0x92,0x1f,0x7b,0x88,0x7e,0x9d,0x2b,0x59,0x46, + 0xde,0x01,0xa0,0x45,0x6c,0x0c,0x3d,0x28,0x97,0x6b,0x79,0xe2,0xb7,0x09,0x77,0x3b,0xa5,0x03,0x12,0x12, + 0x45,0xea,0x31,0xe8,0xb9,0x3d,0xed,0x40,0x9f,0x3d,0x2a,0x2e,0xa3,0x79,0x20,0xca,0xcc,0xe6,0x3a,0x1a, + 0xc9,0x4b,0x51,0xbe,0x5e,0x36,0xe5,0xa9,0x34,0x48,0x88,0xed,0x8e,0x5e,0xc5,0xd7,0xb1,0x9b,0xb7,0x91, + 0x89,0xfa,0x8c,0x18,0xb5,0x01,0x37,0x48,0x43,0x3f,0x67,0x4f,0xf0,0x1c,0x88,0xd2,0x4c,0xc4,0x52,0xe3, + 0xb1,0x0b,0x4b,0xe0,0x03,0x9f,0xcd,0xa3,0x8b,0x9c,0xf6,0xbc,0x3f,0x57,0xa8,0x63,0xce,0x8a,0x81,0x34, + 0xfe,0xab,0x68,0xae,0xec,0x45,0xe3,0x15,0x2e,0xd5,0x20,0xbb,0x43,0xf5,0x57,0x20,0x95,0xd9,0xd4,0x60, + 0x5e,0xf3,0x15,0xc7,0x01,0x33,0x16,0x73,0x87,0xb1,0xc0,0x8d,0x64,0x67,0xf4,0x62,0x2b,0x2c,0xb3,0xee, + 0x2e,0xdd,0x28,0x8d,0xf6,0x56,0xd5,0x41,0xc1,0x89,0xf1,0x43,0x93,0x70,0x04,0x4f,0x78,0xe9,0xd1,0x38, + 0xca,0xa9,0x8d,0x12,0x25,0x2e,0x89,0x46,0x59,0x4d,0x25,0x9f,0x56,0x46,0x09,0x4b,0xba,0x31,0x1e,0x35, + 0x69,0x1c,0xac,0x6b,0xc7,0x42,0x3b,0x89,0x8a,0x3d,0x0f,0xc2,0x79,0x7d,0x17,0x4a,0x5f,0xbf,0x82,0x31, + 0x7f,0x47,0xa4,0x52,0xe7,0xce,0x56,0x9f,0xbf,0x15,0x2e,0x4d,0x13,0x5c,0x32,0x56,0x72,0xc9,0xa8,0x55, + 0x5b,0xc2,0x6a,0xa3,0x8d,0xac,0x3b,0xae,0x70,0x45,0x97,0x59,0x5f,0x3f,0x9a,0xd8,0x89,0xed,0x0b,0x5d, + 0xa3,0xcd,0xa4,0xef,0x25,0xe1,0x50,0x17,0x9d,0xba,0x76,0x17,0xeb,0x1a,0x05,0xc0,0xa4,0x73,0x95,0xd7, + 0xcc,0xaf,0xf3,0x6a,0xfc,0x9a,0xf0,0x22,0xd3,0x5c,0x8e,0x0c,0x04,0xac,0xd7,0x05,0xf5,0x95,0x61,0x46, + 0xaa,0x24,0x08,0xe0,0x27,0x2a,0x4a,0xdd,0x2f,0xa4,0xfb,0xe6,0xa3,0x1e,0xc5,0x7c,0x13,0x84,0x05,0xb5, + 0x48,0xbb,0x71,0xcf,0x81,0x35,0x98,0x08,0x6d,0x55,0xb3,0xf7,0x7e,0x5e,0xb5,0x61,0x92,0xd0,0x88,0xaf, + 0x67,0x2c,0xd0,0x2b,0x0e,0xad,0x07,0x00,0x37,0x92,0x5b,0x4a,0x40,0x50,0xd8,0x1c,0xd6,0x1a,0x1b,0xbf, + 0x76,0x72,0xc3,0x73,0x93,0xf1,0x70,0x7e,0x87,0x0e,0x30,0x77,0xbd,0x6a,0x76,0x1d,0x16,0x19,0x34,0x61, + 0x56,0xc6,0x3e,0x1f,0xc0,0x42,0x81,0x9d,0x7e,0x71,0x14,0x71,0x59,0xfe,0x13,0xd1,0x27,0x89,0xe4,0xab, + 0xc8,0x05,0xd7,0xeb,0x3b,0x9e,0x96,0x1f,0x78,0x77,0x86,0xd4,0x6c,0x23,0xd8,0x5b,0xf3,0x9d,0xcd,0x08, + 0xc6,0x97,0x93,0x68,0x2e,0xc6,0xd6,0x75,0x1f,0x05,0x6f,0xcc,0x79,0xeb,0x48,0x58,0xb6,0x54,0x8e,0x76, + 0x75,0x35,0x5c,0x8d,0x32,0x00,0x1d,0x51,0x5e,0x73,0x95,0x9b,0x8c,0x88,0x33,0x96,0x75,0xe8,0xd5,0xe7, + 0xe3,0xdc,0xb2,0x6d,0x13,0x95,0x38,0xee,0xb1,0xc6,0x5b,0x3e,0xb1,0x28,0x07,0x82,0x2f,0xdf,0x83,0x36, + 0x88,0x41,0x28,0x3d,0x4f,0xde,0xd8,0x9d,0xc2,0xde,0x14,0x9a,0xd6,0x75,0x1f,0x31,0xb5,0xca,0xd6,0x1f, + 0x9d,0x10,0xb9,0xd5,0x6c,0x2f,0x13,0x87,0xdb,0x38,0xa0,0x1a,0x52,0x7e,0x13,0x5c,0xec,0x87,0xcc,0xbd, + 0x3a,0x12,0x8f,0x26,0x40,0x6c,0x69,0x8d,0xb3,0x96,0xb5,0x3b,0x0e,0x98,0x76,0x07,0x76,0x37,0x35,0x9c, + 0x7f,0x54,0xd1,0x14,0x81,0x1f,0xe5,0x0a,0x67,0xe4,0x23,0xd4,0xa6,0x57,0x73,0x41,0x85,0xb1,0x55,0x61, + 0xb4,0x6a,0x12,0x46,0x55,0xf8,0x53,0xce,0x6e,0xfd,0xd8,0xe5,0xb9,0xf4,0x7a,0x44,0x23,0x86,0x38,0x4f, + 0x7b,0x7c,0xdb,0x2b,0x79,0x0e,0xf6,0xd8,0x77,0x9f,0xdf,0x96,0x9e,0x08,0x94,0x5e,0xe7,0xa3,0xdf,0x53, + 0xff,0x3a,0x0f,0xc2,0x5f,0x53,0xe6,0xd6,0x6b,0x66,0xc1,0x3a,0x7f,0x53,0x0e,0x0b,0x4a,0x7f,0xa6,0x70, + 0xe1,0x1b,0x97,0xd5,0x53,0x10,0x0d,0x40,0x58,0x1c,0xcf,0x27,0x99,0xe2,0xb0,0x0a,0x6e,0x69,0x65,0x0b, + 0xa1,0x27,0x82,0x07,0xb8,0x6a,0x32,0xc4,0xb2,0x25,0x24,0xa6,0xb0,0xd2,0x55,0x9a,0xbc,0x6a,0xe1,0xaf, + 0xdc,0x68,0x28,0xae,0xa2,0xaf,0xe0,0x55,0xa5,0x76,0x87,0x3c,0xd4,0x05,0xe4,0x32,0x66,0x25,0x97,0x50, + 0xba,0xee,0x5b,0xef,0x3f,0xce,0x45,0x53,0xd0,0x83,0xce,0x04,0x75,0x30,0xed,0x17,0x35,0xe5,0x6d,0x4e, + 0xaf,0xe9,0xfd,0xda,0xd4,0xa2,0xa3,0x5b,0xef,0xed,0x14,0xef,0x33,0x68,0xf4,0xc1,0x20,0x29,0xd6,0x22, + 0x2d,0xe8,0x25,0x56,0xf9,0xeb,0x24,0x2b,0xc3,0x72,0xc3,0x91,0x81,0x82,0x51,0x62,0xc8,0x46,0x58,0x81, + 0xde,0x55,0x4e,0x29,0x4c,0x92,0x79,0x31,0xc5,0x40,0x48,0xe2,0x41,0xee,0xb4,0x68,0xdf,0x86,0x02,0xb3, + 0x55,0xbd,0xa6,0x16,0x8c,0xc7,0x49,0x0d,0x9b,0x0c,0xd2,0x50,0x1a,0x77,0x1a,0xbb,0x67,0x2b,0x11,0xfa, + 0xb1,0x60,0x83,0xf0,0x2d,0x37,0xf1,0xed,0x6d,0xda,0x2c,0xac,0xac,0xad,0x5b,0xb8,0x77,0xcc,0xe6,0x11, + 0xc4,0xae,0xf8,0x06,0x36,0x11,0xc7,0x58,0x0b,0x92,0x20,0x0d,0xbe,0x4a,0xdf,0x25,0x2c,0xc7,0x81,0x29, + 0x54,0xa2,0x20,0xd3,0x79,0x93,0x47,0xff,0xca,0x81,0x27,0x9c,0xeb,0x26,0xd0,0x12,0xfb,0xb8,0x25,0xdd, + 0x92,0xcd,0xda,0x73,0x06,0x26,0x3c,0xe2,0x4a,0x46,0x97,0x8c,0xe8,0x6c,0x4d,0xd4,0x5d,0x6a,0x6a,0xaa, + 0x37,0xb3,0x8f,0x9d,0x2d,0x2f,0xc4,0xce,0xf8,0x7b,0x53,0x7d,0x2c,0x4f,0x61,0x99,0xa0,0x15,0x45,0xa9, + 0x31,0xa8,0xe8,0xe0,0xef,0x1c,0x91,0xbf,0x2e,0x32,0x9f,0x8d,0xa9,0xc0,0x00,0xed,0xe7,0xf6,0x79,0xdb, + 0x04,0xd4,0x1a,0x80,0xb2,0x1a,0x94,0x89,0x0b,0xa1,0xbd,0x42,0x5b,0xd7,0x41,0x5c,0xbc,0x61,0x49,0x80, + 0x66,0x6a,0xfb,0x50,0xeb,0x33,0x86,0x80,0x89,0x5a,0xd4,0x46,0x65,0x08,0x23,0x48,0x09,0x03,0x04,0x8a, + 0x79,0x4b,0x13,0x14,0xe0,0x3f,0x75,0x62,0xf1,0x94,0x58,0x2d,0x50,0xf7,0x12,0x4d,0x56,0x78,0xc0,0xc7, + 0x1c,0x15,0xa8,0x36,0x04,0xc3,0x8b,0xc1,0x2a,0x63,0x2f,0xcd,0x40,0x69,0x1e,0xda,0x7e,0x1a,0xab,0x05, + 0x57,0xc6,0xc9,0xf1,0x43,0xdb,0x7e,0x03,0x4d,0x78,0x6a,0x6d,0x1f,0x5b,0x67,0x00,0x79,0x08,0xbf,0x2b, + 0xca,0x2c,0x1d,0x61,0x7b,0xbb,0x16,0x7b,0x27,0x4c,0xbc,0x13,0x9d,0x3d,0x7f,0x94,0xd3,0x44,0xf3,0x3d, + 0x40,0x1d,0x70,0x9a,0x50,0x67,0x1c,0x35,0x3f,0x9a,0xf6,0xf2,0xfb,0x71,0xed,0x59,0xab,0x6c,0x65,0x82, + 0x27,0x25,0x3e,0xb0,0xa8,0x65,0x58,0xc5,0xed,0x68,0x99,0x81,0x79,0xba,0x21,0x3a,0xb4,0x01,0x2e,0xda, + 0x9f,0x41,0x6b,0x1e,0x6d,0x51,0x6c,0x8e,0x5c,0xbc,0xff,0xd9,0xb4,0xa7,0x19,0xd1,0xe6,0x96,0x41,0xa3, + 0x04,0x61,0x40,0x1a,0x53,0x44,0xd9,0x05,0xc0,0x5b,0xe9,0xeb,0xf5,0xbd,0x46,0x32,0xbb,0x6d,0x67,0x97, + 0x11,0x1a,0xbb,0x80,0x35,0xb3,0x2d,0xc1,0x1f,0x31,0x13,0x38,0x0e,0x48,0x4b,0xda,0x89,0xaa,0xeb,0x68, + 0xc5,0x70,0xdf,0x5e,0x2e,0x1b,0xcc,0xdd,0x4f,0x5c,0x57,0x8f,0x2a,0x03,0x43,0x9f,0x30,0xf0,0x0d,0xff, + 0xbd,0x85,0xa9,0xfc,0x1d,0x6b,0xc2,0x61,0x0c,0xe0,0x16,0xea,0xc4,0x2a,0x8d,0xb3,0x30,0x39,0xcb,0xd8, + 0xf0,0x48,0xcb,0x8a,0x6f,0xe9,0x18,0x20,0xee,0x58,0x1b,0x61,0xe6,0x26,0x74,0x6d,0xeb,0xba,0x84,0x3e, + 0xb4,0x52,0x36,0xcd,0x60,0x7f,0x76,0x5d,0x25,0x7e,0x82,0x71,0x28,0xdf,0x30,0xca,0xac,0xa0,0x39,0xc8, + 0xa6,0x95,0xe2,0x0e,0xa8,0x90,0x1b,0xa8,0xe6,0x99,0xe6,0x27,0xa3,0x3c,0x4c,0x03,0xe3,0x08,0x75,0x83, + 0xca,0x32,0x23,0x37,0x67,0x47,0x3e,0xfa,0x39,0xaa,0xaf,0x9b,0xf8,0x3e,0xdc,0x5c,0x94,0xdb,0xcc,0x10, + 0xa6,0x35,0xcc,0x97,0xe1,0x33,0xd2,0xbd,0x87,0x6a,0xf5,0xce,0xf9,0xb8,0x5e,0x8b,0x01,0xa9,0x5b,0xde, + 0x11,0xc9,0x20,0x8a,0x6d,0x2f,0x0b,0x3c,0xdd,0x10,0x36,0x3a,0x1d,0xe1,0x75,0x44,0x37,0x93,0x42,0xc7, + 0x5f,0x0c,0x8f,0xf8,0xf1,0x44,0x5c,0x01,0x95,0xd1,0xa3,0x9c,0xc3,0x9f,0x1b,0x39,0x7d,0x39,0x48,0x8a, + 0x22,0x27,0x16,0x22,0xa5,0xbd,0x53,0xa5,0xcb,0x32,0xca,0x55,0xa9,0x91,0xd0,0x2d,0xb4,0x39,0xd2,0x45, + 0x12,0x26,0x4a,0x3f,0xbd,0xcc,0xbf,0xd4,0x53,0x55,0x76,0x68,0xf3,0x77,0x18,0xc0,0x6e,0x5d,0x07,0x68, + 0x1f,0x0a,0x84,0xef,0xf9,0x0e,0x8e,0xf8,0x42,0x5e,0x02,0x7d,0x27,0xd5,0x2b,0x6a,0xe3,0x84,0x1c,0x6e, + 0xce,0xec,0x55,0xc4,0x48,0x1b,0x25,0xb9,0x69,0x41,0x9f,0x0e,0x44,0x86,0x5d,0x78,0x4e,0x33,0xec,0x25, + 0x1c,0xef,0x89,0x35,0x3d,0x64,0x26,0x05,0x94,0x3d,0x61,0x55,0x8d,0x15,0xb7,0x63,0xd6,0xf6,0x41,0x33, + 0x44,0x5d,0xd4,0xe0,0x36,0xad,0x91,0x47,0x7d,0x45,0x17,0xb7,0x53,0x9a,0xfa,0x7a,0x4e,0xc0,0x14,0xc0, + 0xce,0x14,0xfa,0x09,0x68,0x3f,0x22,0xd8,0xc4,0x95,0xc6,0x26,0xf0,0x7f,0xc9,0x83,0xc1,0xf6,0xe4,0x51, + 0xb6,0x38,0xda,0xdb,0x83,0x27,0xfb,0xcb,0xcc,0xc7,0x55,0x53,0xe6,0xbe,0xc3,0xe3,0x53,0xdc,0x69,0x8d, + 0xf3,0x85,0x6b,0x31,0xc6,0x61,0x6e,0xad,0x8e,0x09,0xb5,0x9d,0xc6,0x51,0x87,0x65,0x95,0xc9,0xfe,0x61, + 0xa3,0x2b,0xe0,0x3e,0x36,0x4e,0xe2,0x66,0xa0,0x4e,0xda,0xb0,0xfd,0x24,0xfa,0xd2,0x4d,0x32,0x0f,0x26, + 0x0a,0xf3,0x76,0x64,0xd1,0x46,0xc8,0x71,0x76,0x6b,0x90,0xe9,0xe9,0x36,0xdb,0x13,0x94,0xa2,0x9c,0x3f, + 0xbc,0x1d,0x03,0x56,0xce,0xe4,0x95,0xae,0x63,0x10,0x16,0x81,0xf7,0x37,0x21,0x59,0x6d,0xd4,0x04,0x26, + 0x18,0x8a,0x18,0x62,0x05,0xeb,0x8a,0x6b,0xcf,0xf1,0xdc,0xe5,0x76,0xa5,0x60,0x52,0xd2,0x4c,0x92,0x70, + 0xb1,0x5c,0x7e,0xcb,0x64,0x35,0x5f,0x55,0x0d,0x8f,0x71,0x3d,0x27,0xe9,0xfd,0x56,0x7c,0xa2,0x65,0x6d, + 0xd7,0xa5,0xe5,0x4e,0xba,0x36,0xde,0x64,0xe6,0xdf,0x5d,0x33,0x4c,0xb3,0x8c,0xdc,0x78,0x9b,0x80,0x1b, + 0xbd,0xdb,0x6e,0xe1,0x52,0xfc,0x5e,0x41,0x52,0x86,0x38,0x56,0x66,0x6b,0x84,0x99,0xb3,0x4f,0x0c,0x09, + 0x87,0x54,0xf3,0xb8,0xd1,0x91,0xde,0x41,0x52,0xe9,0x1d,0x00,0xd5,0xb3,0x16,0xb8,0x0f,0xcd,0x7a,0x11, + 0x56,0xc8,0xb6,0x77,0x87,0x35,0xd9,0x4f,0x63,0xed,0xc8,0x87,0xcd,0xdb,0x8c,0x2d,0x9b,0x86,0x7b,0x1a, + 0x13,0xbd,0x6d,0x82,0x96,0x51,0x82,0x27,0xf1,0xc3,0xea,0x75,0x96,0xfb,0x68,0xb0,0x1b,0xab,0x4c,0xa2, + 0x3b,0xce,0x08,0x8b,0xe9,0x8f,0x82,0xe8,0x46,0xf2,0x33,0xd0,0x59,0xa3,0xc4,0xef,0x0c,0x33,0x2b,0xa5, + 0x21,0x17,0xc6,0xef,0x20,0xbe,0x9a,0x8d,0xe4,0x91,0x36,0x25,0xf1,0xb9,0x3f,0xaf,0x92,0xa7,0x27,0xff, + 0xcc,0x50,0x7a,0xd3,0x0a,0x42,0x4d,0xdd,0x5a,0x11,0x80,0x00,0x04,0xa9,0x6b,0x43,0x87,0x56,0x90,0x3e, + 0x77,0xf4,0x0c,0x77,0xed,0x39,0xdb,0x2c,0xe9,0x27,0x46,0x61,0xbe,0x37,0xbe,0x5e,0x25,0x87,0x29,0xb5, + 0x33,0xe9,0x79,0x7d,0xf8,0xa1,0x3c,0x38,0x68,0x64,0xe0,0x23,0x7d,0xfa,0xda,0x75,0xb4,0x9d,0xb4,0x02, + 0xe2,0x09,0xd3,0xb5,0x35,0x51,0x55,0x5d,0xc2,0xc5,0x41,0xd7,0x7a,0x0d,0xb0,0x6f,0xaf,0x1a,0xd7,0xa9, + 0xad,0x28,0x7b,0x08,0xb3,0x67,0x63,0x4b,0x38,0x95,0xa5,0x6e,0x7c,0x70,0x11,0x05,0xda,0x4b,0x7d,0x4b, + 0xfc,0x41,0xe2,0x00,0x41,0x60,0xfd,0x09,0x64,0x9f,0xde,0xcd,0x50,0xe3,0x4b,0xf9,0xc7,0xec,0x05,0x16, + 0x4c,0x18,0xce,0x52,0x0c,0xd2,0x89,0xac,0x6d,0x2a,0xb4,0x72,0xe2,0x28,0x65,0x53,0xc3,0x70,0x6b,0xfb, + 0x57,0x1c,0x6a,0x1e,0x0e,0x93,0x91,0x2d,0xbc,0xeb,0x54,0xc8,0x22,0xc1,0xf7,0x66,0x57,0x3e,0xda,0x3c, + 0xe9,0x6a,0x93,0x12,0x81,0x47,0xd2,0x48,0x1e,0xd5,0x2d,0x51,0x2c,0x31,0x1d,0x76,0x85,0xd8,0x27,0x95, + 0x61,0xea,0x78,0x03,0xcd,0x6b,0x23,0x6e,0xac,0x88,0x6e,0xd4,0xc2,0x40,0xd5,0x50,0xc9,0x32,0xb2,0x39, + 0xad,0xbe,0xb0,0x76,0x6c,0x22,0xc7,0xc9,0x0e,0x63,0x94,0x08,0x81,0x0a,0x07,0xf1,0x39,0xc4,0xd8,0x0a, + 0x63,0x4c,0x46,0x70,0xe5,0x1d,0x8c,0xb2,0x07,0x27,0xa3,0x93,0xf0,0x38,0x3c,0x09,0xab,0x11,0xe7,0xb9, + 0x4a,0x51,0xf4,0x6e,0x10,0x1e,0x9b,0x70,0xaa,0xf0,0xbb,0xa5,0xef,0x87,0x26,0xa3,0x8c,0xa5,0x40,0xcc, + 0x69,0x85,0xce,0xda,0xc6,0x0e,0x14,0x30,0x6b,0xca,0x61,0xbf,0xdb,0x5c,0x6a,0xc3,0xed,0x7b,0xe9,0x0a, + 0x9d,0x1c,0x50,0x50,0x86,0xaa,0x12,0x72,0x8a,0x98,0x98,0xfb,0x5b,0x60,0x92,0x1a,0x7a,0x3d,0x97,0x70, + 0x3c,0xb8,0x6c,0x30,0xd1,0x4a,0x72,0xe3,0x96,0x22,0xb2,0x31,0x35,0xf4,0x95,0x04,0x1a,0x63,0xca,0x26, + 0x0f,0xa6,0x84,0x71,0x56,0x51,0xac,0x2e,0x04,0xa8,0xe1,0xa7,0x91,0xbd,0x8f,0xe6,0x20,0x65,0x46,0x4c, + 0xd5,0x94,0x4c,0xdc,0x28,0x4e,0x09,0x39,0x85,0x1f,0x35,0xad,0xaf,0x56,0x66,0xd2,0x8b,0x66,0x88,0x02, + 0x26,0x0e,0x17,0xec,0x60,0x1b,0x4e,0x9e,0xb5,0x3b,0x38,0x9b,0x65,0x55,0xbb,0xf7,0x5d,0xb0,0xba,0x2f, + 0x44,0x7e,0x1d,0x32,0x8f,0xc4,0xb8,0x3a,0xab,0x2d,0x18,0xcf,0x04,0x82,0xd8,0x2b,0xda,0x3e,0x76,0xfe, + 0x40,0x12,0x36,0xba,0x1e,0x07,0x9b,0xf0,0x05,0x36,0x24,0x25,0x38,0xd7,0x6a,0x53,0x73,0xcd,0x51,0xf9, + 0xec,0x18,0x12,0x9e,0x02,0xf9,0xd0,0x4c,0x89,0x52,0xcf,0x4d,0x26,0x88,0x12,0x71,0xf5,0x2e,0xe4,0x50, + 0x16,0xd4,0xde,0x79,0x28,0x77,0x55,0xbc,0xd5,0x33,0xda,0x8e,0x9f,0x44,0x54,0x50,0x33,0x49,0xea,0x26, + 0x12,0xb1,0xb4,0xb0,0x6b,0xd4,0x15,0x22,0x7b,0xa3,0x0e,0x29,0xa1,0xb0,0x9c,0x76,0x0a,0xdc,0x68,0xc4, + 0xe0,0xa0,0x0a,0x8e,0xcc,0x2c,0x95,0xad,0xd7,0x65,0xcd,0xda,0x8a,0xca,0x84,0xcb,0xbf,0x66,0xf0,0xf5, + 0xe3,0x26,0xd4,0x64,0xe8,0xb4,0x6e,0x7b,0x65,0xdb,0x9e,0x6e,0xb5,0xed,0xb4,0x0c,0x38,0x37,0xae,0xe0, + 0x36,0xac,0xfb,0x54,0xab,0xc1,0x11,0xf7,0xbc,0x21,0x2a,0x5c,0x4c,0x47,0x32,0xeb,0x9b,0x0c,0x5c,0x7b, + 0xad,0x19,0x61,0x16,0x63,0xe1,0xb2,0x0b,0x59,0x7b,0x55,0x8b,0xd1,0x1e,0x11,0x16,0xbc,0x9a,0x10,0x7b, + 0xfb,0x5e,0x96,0x57,0x74,0x52,0xa5,0x65,0xd5,0xd3,0xc7,0x48,0x2f,0xd5,0x9e,0x7e,0x00,0xb8,0x94,0x66, + 0xdf,0x3d,0xa8,0x1c,0xb3,0x87,0xe9,0x66,0xa1,0x66,0x01,0xd0,0x05,0x3d,0xdd,0xa8,0x94,0x70,0x03,0x4b, + 0x24,0x02,0x89,0xb2,0x93,0xb6,0xc8,0x41,0x7c,0xb4,0x81,0x0c,0xdb,0x78,0x70,0x44,0x07,0x2f,0x82,0x96, + 0xf0,0xbe,0x61,0xf9,0x43,0x75,0x09,0x7f,0x34,0x1a,0x28,0xf9,0x62,0x98,0xf6,0x2d,0xd1,0x00,0xb7,0xf8, + 0x14,0x22,0xce,0xad,0x46,0x80,0x48,0x06,0xfa,0x23,0x6a,0x5b,0xa4,0xff,0x44,0x1b,0xe4,0x52,0x01,0xf1, + 0x07,0xa6,0x02,0xda,0xa2,0x5c,0x81,0x59,0xfa,0xf5,0x7a,0xca,0x91,0x65,0x4c,0xd4,0x96,0xd4,0xce,0x25, + 0x9c,0x20,0x55,0x5a,0x86,0x6a,0x42,0xe2,0xf9,0x0b,0x5a,0x69,0x9e,0xd7,0x60,0x60,0x62,0xc2,0x2f,0x14, + 0x6d,0x60,0xc3,0x45,0x6d,0x6f,0xba,0xc2,0xa1,0xe1,0x2b,0x78,0x59,0x35,0x91,0xe3,0x71,0xf8,0xb6,0xe3, + 0x82,0xc0,0xb7,0x3c,0xfb,0x62,0xd4,0xd9,0x12,0x16,0x42,0x11,0x2d,0x14,0x30,0x09,0x66,0xf6,0xea,0xaa, + 0xb1,0x53,0xc5,0x52,0x4a,0x13,0x89,0xbe,0x67,0x02,0xf4,0xf6,0xfe,0x0b,0x63,0xff,0x2f,0xac,0xd7,0xf5, + 0x61,0xd5,0xab,0xe3,0x66,0x6b,0xf1,0xb8,0x5e,0xe1,0x72,0xb5,0x04,0x59,0xd2,0x13,0x33,0x1d,0xb1,0x54, + 0x6b,0x04,0xf4,0xe0,0x2d,0x5f,0x9f,0xbc,0xc2,0xe3,0xe1,0x49,0xef,0x1a,0x8f,0x16,0xce,0xb3,0x5a,0x88, + 0xa0,0x76,0xa1,0xe9,0xc8,0x14,0xef,0x50,0x14,0xf3,0xb0,0x05,0xa0,0x03,0xd8,0xfb,0xfc,0x24,0x94,0xdf, + 0x7b,0xf2,0xfb,0xe9,0xdf,0xe5,0xf7,0xde,0xa7,0xfa,0xf7,0x73,0x9d,0xfe,0xcf,0xd0,0x06,0x20,0x93,0x02, + 0x9f,0xe9,0x0c,0xba,0xc0,0xa7,0x9f,0x85,0x46,0xbd,0x78,0x06,0x55,0x77,0xc9,0x75,0xef,0xae,0xae,0x5e, + 0x7e,0x4e,0x8e,0xf5,0xaf,0x6e,0xed,0xe4,0xef,0x3a,0xe1,0xef,0x9f,0xdd,0xfd,0x87,0xce,0xf3,0xcf,0xbb, + 0xa6,0x10,0x3d,0xdd,0x33,0x95,0xde,0x94,0x9e,0xbd,0xf8,0x7b,0x10,0x7d,0xfe,0x0f,0x62,0x59,0xee,0x47, + 0x27,0x77,0xef,0xae,0xd7,0xf4,0xfa,0xf7,0xcf,0xf8,0xf5,0xf3,0xe3,0x91,0x6e,0x3c,0xa4,0xc4,0x4f,0x3f, + 0xe7,0xc4,0xcf,0xfe,0x31,0xf2,0xc4,0x10,0xc2,0x0b,0x3d,0xbe,0xf6,0xe9,0x08,0x48,0x82,0x69,0x92,0xb3, + 0x4e,0xc3,0x85,0xef,0x1d,0x7b,0x7b,0x4e,0xf0,0xe2,0x63,0xc8,0xd0,0xd2,0xf2,0xbb,0xf8,0x3b,0x09,0xca, + 0x46,0x08,0x37,0x51,0xdf,0x99,0x68,0x75,0x9d,0x77,0x6e,0xcd,0x69,0x37,0x7d,0xb7,0x95,0xea,0x4f,0x56, + 0x99,0xe7,0x84,0x5a,0xb8,0xf7,0x29,0xc4,0x3a,0x07,0x07,0xf7,0x3e,0xc7,0xef,0xa8,0x0a,0x6d,0x18,0x37, + 0x45,0xdf,0xc1,0x0a,0x86,0xde,0x27,0x5e,0x3f,0x31,0x01,0xd0,0xc5,0xbf,0xd5,0xb5,0xc1,0x85,0x35,0x57, + 0x66,0x7c,0x6f,0x40,0x53,0x61,0x2c,0x64,0x5f,0x4f,0x7b,0xca,0xf3,0xd4,0xc5,0x76,0xfe,0xcb,0xb8,0xfc, + 0xfe,0x26,0x33,0x81,0xf6,0xd4,0xdb,0xa8,0x8b,0x40,0x7d,0x9a,0x55,0x0b,0x27,0x58,0x18,0x5e,0x07,0x8f, + 0x11,0xd9,0x26,0xbd,0x4a,0x88,0x79,0xb8,0x8a,0x2b,0x75,0xf6,0xd1,0x05,0xc5,0x8b,0x9f,0x2e,0x76,0x1e, + 0xdd,0x8a,0x63,0x8d,0x47,0xad,0x20,0x95,0x0d,0x9f,0x46,0x2e,0x03,0x58,0x0d,0xb0,0xdb,0x22,0xf9,0xe1, + 0x7b,0xc4,0xb3,0x33,0x3c,0x8e,0x6e,0x37,0xa1,0x89,0x48,0xc4,0x38,0xe1,0xd6,0x66,0xb6,0xe8,0x92,0x7a, + 0xf4,0x5c,0xa7,0x4b,0xa1,0xc0,0x1c,0x77,0x08,0xb4,0x38,0x34,0xa9,0x9d,0x4e,0x6f,0x12,0xa2,0x16,0x12, + 0xe5,0x10,0x3e,0x15,0x1b,0x13,0xb8,0x87,0x51,0xd2,0x11,0x81,0x51,0x42,0x9a,0xa2,0x52,0xf6,0x1d,0xfc, + 0x8c,0x91,0xc4,0xf3,0xa4,0x2c,0xe3,0x0b,0xf6,0x9d,0x23,0x67,0x9f,0x3e,0x7e,0xa8,0x19,0xf1,0x38,0x75, + 0xe6,0x8c,0x51,0xd5,0x29,0xbf,0x20,0x57,0xa2,0x3d,0x82,0x49,0x57,0x6f,0x90,0x84,0x43,0x04,0x9a,0xca, + 0x7e,0xe0,0x64,0x66,0x1d,0x89,0x69,0x91,0x9e,0x27,0xf8,0xf4,0x08,0xa6,0x3e,0x1c,0x7d,0x88,0x99,0x36, + 0xc9,0x66,0x72,0x88,0x33,0xb8,0x4d,0x1d,0x8f,0x43,0x4f,0xa1,0xcc,0x15,0xaf,0x40,0x91,0xe7,0x95,0x09, + 0x72,0x8f,0x67,0x41,0x7a,0xdb,0x29,0x8d,0xb9,0xe6,0xeb,0x53,0xee,0x0b,0x32,0x44,0xed,0xbc,0x7a,0xa5, + 0x06,0x73,0xa2,0xcf,0xce,0x89,0x91,0x91,0xc9,0xd9,0xca,0xd6,0xfa,0x6e,0x4a,0x95,0xc4,0x18,0x66,0xa2, + 0x7f,0xba,0x60,0x23,0x85,0x5f,0x58,0x15,0xbc,0x5d,0xb8,0x33,0x1b,0x3b,0xea,0x6d,0x42,0x40,0xf1,0x41, + 0x08,0x28,0x40,0x2f,0x6e,0x43,0x80,0x5d,0x5e,0x5e,0xd3,0x32,0x2a,0xba,0x17,0x13,0x17,0xec,0xcf,0xcd, + 0xc4,0xfe,0x8f,0xad,0xa9,0x72,0x0e,0x0b,0x3d,0x6d,0x6f,0x33,0xbe,0xe6,0xb3,0x2f,0x7c,0x17,0x2e,0x7e, + 0x01,0x79,0x7e,0x1b,0x1d,0xda,0xaf,0x3b,0x24,0xb3,0xef,0x07,0xd6,0x51,0xfc,0x5f,0x87,0x8b,0x91,0xef, + 0x42,0xf9,0x16,0x54,0xfc,0xf5,0xe1,0x82,0x37,0x97,0x5b,0x12,0x5c,0xb2,0xea,0x00,0x0b,0xa6,0x47,0x8d, + 0xf7,0x2d,0x38,0x75,0xb7,0x9d,0x9b,0xf1,0xdf,0xea,0x8e,0xf1,0x03,0xf7,0xb8,0x1d,0xa6,0xd6,0x38,0x82, + 0x93,0xae,0xf9,0x5b,0x85,0x1b,0x3d,0x1a,0xac,0xb2,0xf7,0xb5,0xac,0x05,0x9f,0x5b,0x75,0x74,0x40,0x59, + 0xa3,0x5a,0x9d,0xe6,0xb7,0x6a,0x70,0x3e,0x99,0x1a,0x1a,0x80,0xd1,0x0d,0x2e,0xed,0x5a,0x1a,0x1f,0xdd, + 0x9e,0x48,0xd8,0xb8,0xcd,0x46,0xdd,0x18,0xaf,0xad,0x48,0xad,0xbd,0x39,0xc6,0x0b,0x18,0x7a,0x8b,0x63, + 0x45,0xd6,0x7a,0xbb,0x75,0x3d,0xd9,0x6a,0xad,0x80,0x50,0x5c,0x26,0x6e,0x38,0x22,0x79,0x33,0x87,0xa1, + 0xb8,0x70,0x71,0x68,0xe8,0x51,0x37,0xc3,0x46,0xf1,0x6d,0x78,0xa9,0x13,0xc7,0x4c,0xed,0x59,0x67,0xb2, + 0x9b,0x2d,0x4f,0x8e,0x0d,0xd2,0x9e,0xbb,0x05,0xf9,0x84,0x84,0xcf,0x40,0x14,0xd9,0xda,0xda,0x0c,0xdf, + 0x1d,0xc0,0x91,0x78,0x1a,0x7e,0x2e,0x82,0xfd,0x0f,0xba,0x8e,0xd5,0x61,0xe1,0x22,0xf9,0xb1,0xe1,0x77, + 0x89,0x9e,0x77,0x1c,0xb9,0x8a,0x00,0xbe,0x10,0x42,0x1a,0xd1,0x3c,0x34,0x21,0xbd,0x82,0x80,0x7a,0x81, + 0x0f,0x3c,0x36,0x36,0x08,0x9d,0xb7,0xd8,0xb5,0x45,0x30,0x5a,0x98,0xa0,0xbf,0xc7,0xa1,0x7b,0x6e,0x2d, + 0x02,0x9b,0xce,0x1a,0xd8,0x2d,0x9e,0xc9,0xf5,0xc7,0x87,0x6d,0x54,0x07,0x30,0xaf,0x49,0x1e,0x27,0xa8, + 0x39,0x77,0xc1,0x50,0x3d,0x75,0xdc,0xf3,0x83,0x03,0x8f,0x2f,0x13,0x37,0x9b,0x5a,0xa4,0x7f,0x70,0x90, + 0xdb,0x96,0x89,0x29,0x5d,0x52,0xed,0xbe,0xf7,0x74,0xde,0x93,0x51,0xf4,0x30,0xdb,0xbd,0xb4,0xec,0xc1, + 0xc9,0x4c,0x8f,0xce,0x80,0x1e,0xcf,0x75,0x2f,0x11,0x91,0x69,0xd9,0x83,0xf9,0x43,0xef,0x32,0xbe,0x4e, + 0xa4,0x80,0xe4,0xa7,0xcc,0x03,0xe2,0x82,0x3a,0xc6,0xbe,0x8d,0xd3,0xc1,0x16,0xac,0x88,0x01,0x84,0xf3, + 0xd0,0xf6,0x8c,0x74,0x9d,0x00,0x2b,0x78,0x3e,0x5b,0xd0,0x1f,0xa8,0x58,0xee,0xa8,0x4f,0x78,0xfb,0xe5, + 0xc8,0x83,0xf9,0x54,0x7b,0x5a,0x42,0x4a,0x4d,0x86,0x2b,0x08,0xbf,0x20,0xce,0xd4,0x5e,0xff,0x55,0xaa, + 0xe2,0x41,0xea,0x4b,0xec,0x09,0x6c,0x8d,0x37,0xd1,0x16,0xa2,0x98,0x52,0x4b,0x74,0xb8,0x74,0x5c,0x90, + 0x6c,0x86,0x6f,0x1c,0x7a,0x2e,0x85,0xdd,0xe0,0x32,0x87,0x3c,0xdc,0x95,0x13,0xd5,0xe6,0xc3,0x4e,0x6d, + 0x70,0x2d,0x67,0x98,0x54,0x68,0xe1,0xbd,0x57,0xa3,0x8f,0x18,0x3f,0xcf,0x73,0xd5,0xfa,0xac,0xbc,0x79, + 0x9c,0xf5,0xfb,0x2c,0x9f,0xf1,0x6e,0xb5,0xff,0xd7,0x02,0xd7,0x0a,0xce,0xb5,0x3e,0xab,0xa7,0x78,0x5a, + 0x57,0xac,0xc0,0x65,0x3e,0xea,0x12,0x96,0x94,0x1e,0xc4,0xc6,0x42,0xd7,0xe3,0x6d,0x58,0x87,0x65,0x18, + 0xe4,0xfd,0x28,0x55,0x36,0x59,0x64,0x12,0xfb,0x42,0x77,0xe7,0xc1,0xc8,0x63,0x67,0xa3,0xe1,0xeb,0x3a, + 0x01,0xc8,0x64,0x46,0x94,0xfe,0x4a,0x9c,0xd2,0x79,0x43,0xd3,0x05,0x69,0x36,0x17,0x8f,0xd8,0xf1,0x46, + 0xb4,0xe4,0xbd,0xff,0x8f,0xfb,0x3a,0xa2,0x3e,0x83,0x30,0xa7,0x15,0x81,0xc8,0x8f,0x9a,0x0c,0x42,0xfc, + 0x35,0x1c,0xc7,0x07,0x47,0x02,0xd1,0x8c,0x41,0x6f,0x76,0x56,0xa3,0xa2,0x21,0xaa,0xce,0x6a,0xe6,0x53, + 0x49,0xf0,0xe9,0xb6,0x6c,0xc5,0x0c,0x87,0x83,0xd4,0x6d,0x8f,0x04,0x73,0x6b,0x5e,0xd8,0x36,0xdc,0xf4, + 0x8e,0xa7,0x6e,0x98,0xb6,0x17,0x25,0xa6,0x01,0xa5,0x13,0xc3,0xf0,0xc5,0xfa,0x5e,0x1a,0x9c,0x95,0xf4, + 0x3f,0xd4,0x1c,0x6d,0xac,0x99,0x73,0xd1,0x7a,0x65,0xbe,0x4d,0x77,0x44,0x67,0xc8,0xc6,0x4c,0xe9,0x10, + 0xdd,0x6e,0xf2,0xaa,0x93,0xe3,0x60,0xd2,0x28,0x60,0x7a,0x2b,0xbf,0xa2,0x16,0x6e,0x8b,0xeb,0x52,0x44, + 0xe3,0xa6,0xfd,0xbe,0x9d,0xd4,0x0d,0x87,0xbb,0xdb,0xf0,0xa2,0xee,0x47,0x47,0x7f,0xf8,0xa7,0xb3,0xa0, + 0x7f,0xa4,0x5e,0xf3,0xe3,0x0d,0x1e,0x1f,0xd1,0x34,0xbd,0x88,0x4e,0xd4,0xc3,0xe8,0xae,0x7a,0x19,0xdd, + 0x53,0xdf,0xd3,0xfb,0xab,0xe8,0x53,0xf5,0x24,0xfa,0x4c,0x3d,0x8b,0xfe,0xae,0x9e,0x46,0xff,0x50,0x5f, + 0x46,0xff,0x54,0x8f,0xc1,0xd0,0x3f,0x1e,0x7f,0x3f,0x89,0x6e,0x6f,0xca,0x90,0x7e,0x15,0xb3,0x81,0xe1, + 0xf8,0x9e,0x7a,0x34,0x51,0xde,0xd8,0x0b,0xc7,0xaf,0x26,0x8a,0x0e,0xf9,0x70,0xfc,0x74,0xb2,0x51,0x8f, + 0xc7,0x27,0x3a,0xe7,0x09,0x7d,0x1d,0xd0,0xd7,0xbb,0x9d,0xb9,0xee,0xea,0x5c,0x77,0x9b,0xf5,0x1d,0xeb, + 0x5f,0xe1,0x2a,0xe5,0x05,0xd9,0xef,0x51,0xf6,0x0f,0xe5,0x53,0xdc,0xaa,0x7a,0x61,0xda,0xe5,0x27,0x6e, + 0x19,0x4f,0xd2,0x36,0x3d,0xa1,0xba,0x57,0x54,0x9d,0x77,0x87,0x3e,0x3d,0x41,0xb9,0x3b,0xde,0x9d,0x70, + 0xfc,0xac,0x1e,0x8e,0x7a,0x48,0x4f,0x13,0x0f,0x95,0xbd,0x94,0x82,0x5f,0xb2,0x3d,0x1f,0x3e,0x49,0x77, + 0x9e,0x98,0xf2,0x48,0x68,0xe4,0x78,0xa2,0x73,0x3c,0xa3,0x1c,0x5c,0xef,0x56,0x0e,0x34,0x24,0x0b,0xf3, + 0x1d,0xdb,0x3c,0x13,0xa9,0x56,0xac,0x92,0x35,0xdb,0x72,0xae,0x0f,0x47,0xe3,0xd3,0xd9,0x60,0xd2,0x5f, + 0xdf,0x61,0x1f,0x58,0x77,0xd6,0x1e,0xbb,0xc5,0xf2,0x02,0xca,0x07,0xc7,0x44,0x3b,0xd0,0x56,0x37,0xd6, + 0xfa,0xc1,0xc1,0x5a,0x0c,0x65,0x3f,0xd0,0xa1,0xb6,0x2d,0xa1,0x72,0x31,0x96,0x83,0xb0,0xa0,0x42,0x9a, + 0x74,0xc8,0xb3,0x4c,0xd8,0xbb,0x18,0xa1,0x7c,0xb0,0xe1,0x56,0xd1,0xe1,0x09,0x1d,0x8d,0xdf,0x73,0xdc, + 0xbb,0x4b,0x80,0x0b,0xf6,0xcc,0xe5,0xf8,0xc5,0xa4,0x61,0xdc,0x61,0xce,0xa9,0x8c,0x75,0x79,0x04,0x7a, + 0xe1,0xa2,0x50,0x3e,0xc0,0x56,0x7f,0xfc,0xa8,0xa3,0x04,0x24,0xb5,0xa3,0x2c,0x2a,0xc2,0xac,0x4f,0x84, + 0x3f,0x65,0x7a,0xd8,0xc8,0x84,0x42,0x44,0x19,0xcd,0x09,0xf6,0xe9,0xdb,0xcb,0xc6,0x37,0x68,0x44,0x3e, + 0x38,0x0e,0xe6,0x87,0x87,0xd4,0xbd,0x57,0x4a,0xb2,0xda,0xbb,0x48,0xf4,0x76,0x0f,0x57,0x1f,0x7e,0x16, + 0xcd,0xd8,0x65,0x9e,0x15,0x8b,0xa2,0xef,0x50,0xc7,0x1c,0x6a,0x19,0xf8,0x82,0x1d,0xc6,0xaf,0xfa,0x7d, + 0xf8,0x4f,0x64,0x65,0x21,0xf8,0x5c,0x5c,0xe1,0xc6,0x62,0xaf,0xc5,0x4f,0xf3,0x87,0xfe,0x09,0x63,0x6b, + 0x88,0x8d,0x9e,0xd0,0xa9,0x7c,0x87,0xd5,0xba,0xd6,0x6b,0xbc,0x3f,0x3b,0x38,0x20,0xb0,0xc0,0xbb,0xf5, + 0xdd,0x4d,0xd5,0x12,0xb6,0xa6,0x8a,0xfb,0x89,0xee,0x23,0x22,0x2c,0xfb,0x81,0xb6,0xe2,0x5a,0x42,0x2c, + 0x06,0x3a,0xa7,0x8c,0x1e,0x8f,0x17,0x93,0x80,0xf0,0xce,0x7a,0x5d,0xb2,0x22,0xe8,0x7a,0xfd,0x25,0x64, + 0xcb,0x5f,0x1a,0xad,0x20,0x6e,0x13,0x76,0x2c,0xca,0x8f,0xa3,0xcb,0x71,0x4e,0x7b,0x70,0x22,0xf7,0xb0, + 0x39,0x36,0x5a,0x11,0xd9,0x29,0x2d,0x46,0x90,0x21,0xf2,0xf0,0x89,0xff,0x09,0x1a,0x15,0x44,0xd1,0x53, + 0xeb,0x1c,0x55,0x94,0xdd,0x2c,0x41,0x6a,0x60,0x84,0x7a,0xaf,0x12,0x90,0x5d,0x1b,0xe5,0x02,0xd9,0x45, + 0x52,0x01,0xc4,0x58,0x90,0xdb,0x3a,0x1b,0x21,0x23,0x4f,0x6a,0x07,0xad,0xf5,0x25,0x8c,0xf1,0xbe,0x6d, + 0xe0,0x13,0x1e,0x6b,0x79,0xdc,0x45,0x8b,0xc2,0x40,0x78,0x37,0x74,0xdd,0xb8,0xd3,0x6e,0xd4,0xe4,0x58, + 0xfb,0xd4,0xa6,0x66,0x84,0xa4,0xb5,0x0b,0xee,0x7c,0x68,0x1c,0x6f,0xc7,0xe3,0x62,0x5c,0x4e,0x9c,0xcb, + 0x0e,0x28,0x9b,0x05,0xb7,0xe2,0x86,0x4a,0xdb,0x26,0xc4,0xd1,0x54,0x95,0x35,0x32,0x8d,0x65,0xb7,0x3e, + 0xdf,0xb1,0x73,0x86,0x35,0xff,0x87,0x79,0x82,0xb6,0xac,0xbd,0x5d,0x12,0xe2,0x71,0xbd,0xf6,0x92,0xec, + 0xf0,0xa7,0x17,0x1e,0xcb,0x73,0x9b,0xbc,0x76,0xfd,0x8d,0x2d,0x92,0x34,0x8b,0xcb,0xe4,0xa5,0x0e,0x63, + 0xee,0xc8,0x80,0x24,0x1d,0x56,0x94,0x99,0x23,0xe2,0xe1,0xd4,0xa1,0x76,0x65,0x7d,0x25,0x17,0x7c,0xf2, + 0x36,0xe7,0xef,0x15,0x58,0xcd,0x81,0x7d,0x5e,0xaf,0xc1,0x28,0xbf,0xd1,0x59,0xae,0xd2,0x12,0xae,0x40, + 0xd0,0xb6,0x3c,0x89,0xc0,0xd3,0x78,0x97,0x66,0xa1,0x02,0xcb,0x16,0x1a,0xe9,0xe0,0x6a,0x23,0x87,0xef, + 0x15,0x96,0x77,0x6f,0x4f,0x9e,0x4c,0xeb,0x7a,0xa0,0xac,0x0f,0xe5,0x64,0x76,0xd3,0xa5,0x90,0x9b,0x62, + 0x5a,0xe8,0x94,0x3d,0x58,0x24,0x52,0x75,0x4b,0x1d,0x88,0xc4,0xdd,0xdb,0xf1,0x49,0xd7,0xdb,0x9c,0x50, + 0xdc,0xbc,0x83,0xb0,0x97,0x6f,0xee,0xa4,0x36,0xbf,0x80,0x1b,0x60,0xf9,0xc2,0x0f,0x75,0x35,0x71,0xed, + 0x2e,0x80,0x90,0xa0,0x24,0xf3,0xfd,0x41,0x0b,0xf2,0x35,0x56,0xf1,0xf7,0x30,0xd8,0x6c,0xbd,0x2e,0xfc, + 0x44,0x2a,0x6c,0x6c,0x17,0x09,0xa7,0x6d,0x8c,0xd2,0xcf,0xe0,0x34,0xf6,0xe7,0xe7,0xbe,0xb9,0xef,0xcc, + 0x54,0x13,0x6a,0x42,0xb8,0x6f,0x14,0x50,0x21,0xb2,0xab,0x05,0x24,0x61,0xac,0x1a,0xe0,0x11,0x96,0x44, + 0x91,0xa9,0x1f,0xa3,0xdb,0xeb,0xab,0xf0,0x76,0x53,0x17,0xa4,0xe7,0x76,0x49,0x4a,0x6a,0x16,0xbd,0xad, + 0x39,0xbc,0x4d,0xbb,0x0f,0xa8,0x4b,0x60,0x86,0x3f,0x9a,0x69,0xc3,0x4b,0xe7,0x0a,0xd0,0x87,0x8d,0x39, + 0x5c,0x9e,0xbb,0xae,0x87,0x65,0xb0,0x1d,0xdb,0xeb,0xd2,0xf8,0x82,0x96,0xfa,0x86,0xad,0x77,0x48,0x5f, + 0x6a,0xb0,0xa7,0xd5,0x21,0x1a,0x12,0x0b,0x03,0xd5,0x58,0xd5,0xce,0x9b,0x6c,0x94,0xdb,0x68,0x27,0xbb, + 0xbf,0xed,0x0b,0xa1,0xb9,0xd0,0xb5,0xba,0x99,0x5b,0xd5,0x0e,0xd9,0x41,0xa3,0xb2,0x96,0xe1,0x00,0x73, + 0x7b,0x6e,0x08,0x93,0xcc,0xb1,0xd5,0x94,0xa0,0x76,0xd9,0x83,0xc3,0x93,0x40,0xee,0xa7,0xa7,0x90,0x63, + 0x42,0x41,0xd2,0xef,0xe8,0x93,0x6a,0x77,0xa7,0x21,0xdb,0x6a,0x9b,0x57,0x8a,0x88,0xb0,0xe1,0x12,0x9c, + 0x26,0x6f,0xb0,0xcf,0x85,0x7c,0x6f,0x1f,0x55,0x37,0x42,0x54,0xb8,0x06,0x0d,0xad,0xc9,0x70,0xed,0x1b, + 0x2e,0x3b,0x9d,0x22,0xb7,0x8b,0x10,0x23,0xc8,0x4e,0xd0,0xdb,0x89,0x5b,0x81,0x2f,0x36,0xea,0x76,0x96, + 0x24,0x4b,0x51,0x4d,0xde,0x1e,0x9d,0x16,0x63,0x36,0x8f,0xfa,0xbd,0x1a,0x35,0xd1,0x46,0xab,0xf1,0xd7, + 0xd6,0x89,0x53,0x99,0x58,0x26,0x57,0xcd,0x79,0x60,0x01,0x99,0x33,0x19,0x02,0xf8,0xce,0x6c,0xb0,0x67, + 0x8f,0x7d,0x62,0x7f,0x61,0xc5,0x62,0xbe,0xb2,0x5f,0xfe,0x56,0xff,0xd5,0x6d,0x7a,0x45,0xa4,0x7a,0x0a, + 0x79,0xbb,0x0c,0xe1,0x47,0x54,0x4c,0xfb,0xdd,0xed,0x73,0x6b,0x11,0x90,0xc9,0xec,0xcd,0x1d,0x59,0x63, + 0x0d,0x00,0xf4,0x55,0x0b,0xb8,0x4b,0xf6,0x00,0xfe,0x63,0xfb,0x9c,0xf8,0x70,0xf9,0xe6,0xe5,0x82,0xa9, + 0xa6,0xb1,0xf9,0x3f,0x5c,0x89,0x7b,0xd1,0x60,0xaa,0x90,0x79,0xf9,0xc0,0x58,0xcd,0xa5,0x7b,0x9d,0xbf, + 0x4c,0xaa,0x8e,0xdd,0x87,0xd5,0xe0,0xf9,0xd6,0x6f,0xf5,0xb4,0x57,0xdc,0x58,0x13,0x23,0x7d,0xa8,0xd1, + 0x66,0xee,0x8e,0xf2,0x1f,0xdb,0x89,0x66,0x31,0xd3,0x19,0x8d,0x0c,0xdf,0xdb,0x0b,0x9d,0xc7,0xcd,0xde, + 0xdd,0xa8,0x3d,0x97,0xb9,0x9b,0x06,0xb7,0xbe,0xb7,0x6e,0x9b,0xab,0x59,0xa4,0xbb,0x7e,0x87,0x34,0x40, + 0xf6,0x4e,0x84,0xfd,0xde,0xd6,0x3a,0x4b,0xec,0xae,0xaa,0xbb,0x17,0x3b,0x6e,0x18,0x9a,0x5b,0xde,0x05, + 0xf7,0xf7,0x2d,0xaf,0xd9,0x3c,0xdb,0xa5,0x5b,0xc0,0xfe,0xbe,0x4a,0x5a,0x1b,0x69,0xbb,0xae,0x06,0xcc, + 0xbf,0xaf,0xa6,0xc6,0x5e,0x6a,0xd5,0x03,0xe5,0x32,0xed,0xd5,0xa9,0xa1,0x6b,0x44,0xcc,0x55,0x6a,0x6b, + 0x82,0x81,0xb7,0x96,0xe3,0x6b,0x68,0xd0,0x42,0x7f,0x03,0x39,0x72,0x21,0xcf,0x64,0xd9,0x18,0x85,0xd3, + 0x09,0x0c,0x37,0xc2,0xac,0xd5,0x58,0x5a,0x7e,0xe9,0x52,0x62,0x1d,0x2e,0x71,0x60,0x34,0x55,0xf8,0x0e, + 0xca,0xd4,0x0d,0x35,0x48,0xb8,0x76,0xad,0xdd,0x62,0xb0,0xc4,0xf0,0x86,0x9a,0xe4,0xdf,0xc2,0xbe,0xd3, + 0xa8,0x26,0xa9,0x9a,0x14,0x50,0xa2,0xe3,0xee,0x36,0xc9,0xfe,0xa9,0x65,0x19,0xa6,0x62,0x30,0xc4,0xaa, + 0x98,0x26,0x22,0xf1,0x1e,0x2b,0x10,0xb8,0x6d,0x38,0xda,0xa9,0xe6,0x92,0x14,0x91,0xc2,0x89,0x6b,0x6a, + 0xe4,0xdb,0x18,0x36,0x70,0x4b,0x4f,0x6c,0xda,0xa8,0x6e,0x15,0x4d,0x0d,0x1f,0xb0,0xaa,0xad,0xa7,0xff, + 0x23,0xf4,0x02,0xf6,0x52,0xe2,0x9b,0xc0,0x58,0x70,0x38,0xce,0xc3,0x5f,0xe9,0xe1,0xc3,0x5c,0xd4,0x84, + 0x68,0xe1,0x08,0x05,0x2b,0x4e,0x0e,0x57,0xad,0x79,0x44,0xc1,0x36,0x0c,0xb8,0x21,0xa5,0xa3,0x4c,0x41, + 0xc7,0x59,0x7c,0x15,0x1c,0xf9,0xff,0x11,0x8e,0x4f,0x6f,0x4e,0x0f,0xcf,0xd6,0x83,0x49,0x3f,0x38,0xba, + 0xa8,0xb5,0xcd,0xa7,0xd0,0x7c,0x28,0xc1,0xa7,0x96,0xad,0x2b,0x67,0x9e,0x2b,0x51,0xf7,0x28,0xc7,0x53, + 0xc4,0xfb,0x59,0x69,0xeb,0x6e,0xff,0x6e,0x00,0x67,0x01,0x9a,0xe2,0xb4,0xeb,0xc9,0xbd,0x58,0x50,0x2f, + 0xbc,0x22,0xbe,0xd1,0x42,0x3c,0x3d,0x4b,0x44,0x78,0xd6,0x89,0x42,0x8d,0x87,0xe2,0x1e,0x41,0xd7,0xd2, + 0x80,0x35,0x58,0xfc,0x39,0x47,0x33,0x83,0x16,0xbb,0x3a,0xea,0x3d,0x81,0x42,0x3b,0x44,0x6e,0x62,0xe9, + 0x9d,0xcc,0x7a,0xac,0xe2,0xae,0x7d,0x18,0x2e,0xa3,0xba,0xc0,0x70,0x1e,0x2d,0x75,0xd8,0x14,0xee,0xdb, + 0xb2,0x75,0xfc,0x21,0x2a,0xb9,0x88,0xe8,0x97,0xed,0x6b,0xcc,0x85,0x9e,0x48,0x62,0xe8,0x7c,0x33,0x4c, + 0x67,0xe7,0xd1,0x30,0x17,0x6a,0x0e,0x45,0xa3,0x51,0x6c,0x4d,0xa2,0x57,0x6a,0x1e,0x84,0x71,0xcd,0xfa, + 0x35,0x17,0x4b,0x2b,0xda,0x36,0x97,0xab,0x29,0xf8,0xad,0x11,0x6f,0x73,0x46,0x6d,0x20,0x96,0x5a,0x0b, + 0x28,0x4a,0x46,0x85,0xb6,0x30,0x43,0xbc,0xf4,0x56,0x5b,0x76,0xc8,0x5b,0x18,0xc2,0x6c,0x30,0x77,0x3b, + 0xb9,0x8d,0x25,0x0a,0x56,0xa5,0x36,0x9f,0x95,0x40,0x13,0x20,0x8c,0xe8,0x4f,0x47,0x09,0xe2,0x8e,0xc6, + 0x59,0x5d,0x42,0x07,0x9c,0x9f,0x86,0xd3,0x76,0x9f,0xb6,0x20,0xb5,0xa6,0x10,0xb5,0xff,0xa1,0xb6,0x9a, + 0xe1,0xe1,0xa7,0xc3,0xf8,0xf0,0xb0,0xf7,0xe0,0x78,0x18,0x40,0xf5,0xcf,0x51,0x49,0x8d,0xfb,0x9f,0x32, + 0x1f,0xbe,0x67,0x55,0x6b,0x3c,0x7d,0xfd,0x92,0x6a,0xd4,0xa6,0xdd,0x21,0xe4,0xb0,0xf4,0x2b,0x2d,0x33, + 0x9d,0xd8,0x68,0x74,0x35,0x54,0x64,0x4a,0x73,0x9d,0xed,0x9b,0x6c,0x40,0xb1,0x9e,0x70,0xc5,0x52,0x86, + 0xf8,0xaa,0xdc,0x0d,0xaf,0xab,0x3f,0x0f,0xaf,0x5a,0xa7,0x65,0xe1,0x80,0x6c,0x43,0x59,0xaa,0xb2,0xca, + 0x52,0x79,0x6d,0x5f,0xbf,0x0d,0x8b,0xd4,0x7d,0x42,0x1d,0x85,0xf6,0x03,0xdd,0x9c,0xf6,0x26,0xce,0x6e, + 0x5d,0x1b,0x6c,0xcd,0xf7,0x09,0xf4,0x7f,0x79,0xbe,0x93,0x96,0x0a,0x30,0xc4,0x52,0xba,0xbb,0x02,0xad, + 0x01,0x4d,0xa1,0xee,0x69,0x81,0x23,0x84,0xbb,0xa5,0x77,0x53,0x07,0xa5,0xc9,0x46,0xd9,0x76,0x38,0x89, + 0x31,0x17,0x6a,0x1f,0x0c,0x1d,0xd8,0xcc,0x68,0xc7,0x6d,0x2f,0x5b,0xb2,0x7b,0xd9,0x80,0x67,0xf4,0x91, + 0xd0,0xb9,0x58,0xf9,0x5f,0x5d,0x2c,0x97,0xde,0x4f,0xe5,0xcc,0x7a,0xcf,0xca,0xa0,0x37,0xb9,0x2a,0x5a, + 0x7c,0x48,0x7b,0x94,0xf5,0xf9,0x3f,0xda,0x3e,0x52,0x12,0x51,0xef,0xab,0x67,0xd7,0x5e,0xd7,0x72,0xe1, + 0x5d,0x53,0x0d,0x89,0x40,0xe8,0x79,0xed,0x3d,0x38,0xed,0x9c,0x60,0x6b,0x75,0x24,0xe6,0xbb,0x5b,0x60, + 0xf1,0xd9,0xb0,0xd4,0x60,0x11,0x8f,0x4b,0x17,0x2c,0xca,0xfe,0x67,0xb5,0xc6,0xde,0xa8,0x96,0x8a,0xa5, + 0xac,0x78,0x7d,0x12,0xa8,0xdc,0xd7,0x38,0xc3,0x01,0x97,0xa9,0x50,0x1c,0xd4,0xb6,0x85,0x87,0x98,0x8e, + 0xbc,0x94,0x3b,0x2c,0xe7,0x7c,0x0b,0x86,0x9b,0xbd,0x76,0x95,0x96,0xc7,0x90,0x4c,0x6e,0xf5,0xf7,0xee, + 0xb0,0xd0,0xfd,0x65,0xff,0x08,0x75,0x7f,0x8b,0xfe,0x5d,0x0b,0xc6,0xa9,0xed,0xd7,0x54,0x77,0x2c,0xfd, + 0x58,0x38,0x56,0x89,0xed,0xb9,0x09,0x34,0x93,0xb6,0x67,0xba,0x8d,0x7a,0x1d,0x53,0x69,0xb1,0x50,0xdb, + 0xea,0xf5,0xbd,0x61,0xae,0x7b,0x5d,0xc0,0xc6,0xa8,0xee,0x75,0xde,0xbf,0x67,0xae,0xd8,0x5a,0xd8,0xad, + 0x08,0x6a,0xcc,0xd6,0x04,0x50,0x96,0x26,0xe1,0x8a,0x67,0xb2,0xc5,0xe4,0x57,0xbb,0x74,0xd4,0x65,0x83, + 0xe1,0xc0,0xf9,0xd0,0x24,0x24,0xad,0x2a,0xe9,0x6b,0x43,0x77,0xaa,0x83,0x50,0xb4,0xbc,0x9f,0x43,0x6d, + 0x13,0x82,0x83,0xfc,0xb1,0x55,0x59,0xb9,0xbb,0x32,0x76,0x90,0xd9,0x51,0x4b,0x5b,0x42,0xb3,0xad,0xcd, + 0xf5,0x31,0x95,0x5c,0x0e,0x56,0x55,0xba,0x18,0x88,0x4f,0xc4,0x9d,0xbd,0xed,0x1a,0x7c,0x93,0x49,0xf8, + 0xc0,0xe8,0x5b,0x6c,0xc2,0xce,0x49,0xd8,0x59,0x69,0x63,0x00,0xdb,0xb5,0x75,0x4e,0xc6,0x5f,0xae,0x6c, + 0xc7,0xa4,0x74,0x0f,0x62,0x6b,0x6e,0x44,0xd3,0x24,0x7d,0x67,0xdb,0xef,0x20,0x48,0x0c,0xb1,0x0a,0x2f, + 0x83,0x29,0x01,0x2c,0x90,0x36,0x51,0xe9,0x65,0x00,0x79,0x27,0x8c,0x4d,0xf9,0x12,0x41,0x88,0x59,0x7c, + 0x87,0x4b,0x30,0xf7,0xe3,0x36,0x97,0x80,0x74,0x58,0x17,0xf4,0xbd,0xb3,0x33,0x44,0x4a,0x30,0x07,0xec, + 0xb6,0x00,0x77,0xbc,0xb2,0xf8,0x0b,0xfe,0x9c,0xde,0x9b,0x91,0xc5,0x84,0x1d,0xda,0x95,0x7e,0x0c,0xa5, + 0x63,0xb5,0xd0,0x7c,0xf3,0x96,0x8c,0xef,0x6c,0xb6,0x85,0x0a,0x98,0xfb,0xb0,0x1d,0xdf,0x51,0xad,0x28, + 0x2c,0x4a,0x8d,0xee,0x75,0xc7,0xd6,0x9c,0xd6,0x07,0x41,0xfb,0x28,0xdc,0x29,0xb1,0x51,0xd9,0xee,0xb3, + 0xb1,0xf8,0xef,0x38,0x1b,0xc5,0x45,0x61,0x62,0xcf,0xc6,0x02,0x26,0xfe,0xcd,0x79,0x99,0x75,0x92,0x26, + 0xbb,0x70,0xfa,0xc9,0x6e,0x9c,0x7e,0x32,0xd1,0x86,0x15,0x2e,0xda,0xca,0xb7,0xcc,0x94,0x8c,0xfd,0xc3, + 0x68,0x4b,0x97,0x1e,0x86,0xda,0x23,0x89,0xfe,0x8c,0x4b,0x7e,0x18,0x16,0x71,0xd4,0x12,0x78,0x87,0xe0, + 0xda,0xf8,0x38,0x73,0xde,0x11,0x97,0x94,0x5e,0x38,0xea,0xaa,0x2f,0x05,0x39,0xe0,0xaa,0x98,0x2f,0x65, + 0xef,0x31,0x5f,0xca,0xc4,0x7c,0x49,0xca,0x04,0xaa,0xe3,0xfb,0xc9,0x44,0xb7,0xc6,0x56,0x4b,0x1a,0x1e, + 0x11,0xdc,0x9e,0x23,0x97,0xb6,0x10,0x8f,0x2b,0x51,0xf8,0x00,0xda,0x69,0xc8,0x14,0x76,0x22,0x9d,0x1d, + 0x15,0x36,0xb0,0x44,0xbb,0xa6,0x4e,0x84,0xf3,0x97,0x2a,0xda,0x81,0x6c,0xba,0xba,0xbe,0x1b,0xd5,0x48, + 0xcb,0xff,0x57,0x11,0x4d,0xfb,0x36,0x68,0x07,0x9a,0xe9,0xc8,0x56,0x23,0x19,0x77,0x02,0x3f,0x88,0x62, + 0xb2,0x8f,0x44,0x31,0x8d,0x4a,0x3f,0x88,0x60,0x24,0xf7,0x87,0xd1,0x4b,0x4b,0x96,0xfb,0xff,0x3b,0x72, + 0xc9,0x3e,0x8c,0x5c,0xba,0x5d,0x2b,0xfd,0x3f,0xe4,0xd2,0x81,0x5c,0x32,0x8b,0x5c,0xb4,0x26,0x88,0x18, + 0x0a,0x68,0x11,0x50,0x4a,0x04,0x9f,0x33,0xb1,0xea,0xc7,0x80,0xe6,0x39,0xbe,0x8e,0xd3,0x45,0x7c,0x9e, + 0x2e,0x52,0x7c,0x8f,0x6e,0x9b,0xe7,0x65,0xf8,0xb6,0x71,0x13,0x18,0x9e,0x61,0x69,0x58,0xa3,0x77,0xb1, + 0x70,0xe3,0xf6,0xc2,0x17,0xc3,0x65,0x44,0x50,0x78,0x4d,0xb0,0x4f,0x49,0x07,0x07,0x1a,0xe0,0x2e,0x4d, + 0x8a,0x31,0xb1,0x1c,0x78,0x01,0x8f,0xa8,0x32,0xd5,0x48,0x48,0xa6,0xae,0xfe,0xbe,0xa5,0xd2,0x75,0x6f, + 0xbd,0x7d,0xd1,0x5f,0xbd,0x25,0x28,0x0d,0x77,0x09,0x5c,0x91,0x05,0x4e,0x6c,0xb2,0xe8,0x72,0x47,0x95, + 0x59,0xa3,0xca,0x6a,0xbb,0xbe,0xed,0xfb,0x31,0xf7,0xe6,0xe7,0xbf,0x05,0xfc,0xb4,0xde,0xaa,0xb1,0xc8, + 0xae,0xf9,0x29,0x62,0x5b,0x88,0x0b,0xb5,0x66,0x5f,0x6d,0x5a,0xbd,0x72,0x79,0x95,0xcd,0xa6,0xb6,0x8a, + 0x78,0xff,0x18,0xa7,0x7f,0x6e,0x90,0x5b,0x0c,0x4e,0xda,0xc5,0x96,0xa5,0x96,0xc1,0x49,0xdd,0x61,0xa6, + 0x60,0xcb,0x34,0x97,0xdf,0x1c,0x66,0xee,0xb0,0x67,0x39,0xc6,0x69,0xad,0xd3,0xf2,0xad,0x71,0xaa,0xcc, + 0x8e,0xb4,0xf8,0x33,0x23,0x4d,0xfe,0xfc,0x48,0x35,0xb2,0x6c,0xf6,0xb5,0x60,0xe6,0x29,0x51,0x56,0xef, + 0xb7,0xd8,0xe2,0x1d,0x3f,0xbe,0x57,0xb3,0xff,0x59,0x18,0xab,0x79,0x62,0x63,0xb3,0x37,0x73,0xa0,0xab, + 0x83,0xdb,0xfd,0xd8,0x71,0x74,0xec,0xbd,0xff,0xd9,0x71,0x64,0x1f,0x1e,0x07,0x6c,0xae,0xdf,0xa4,0x99, + 0x7f,0x8e,0x47,0x6b,0xfc,0xe7,0x7b,0xd8,0xe7,0x1c,0xa1,0x61,0xaa,0xa3,0xba,0xb3,0xe3,0xb0,0xcb,0x3a, + 0xfe,0x98,0x7f,0x23,0x6e,0x16,0x6f,0xb4,0xd6,0x0e,0xf5,0xd7,0xaa,0x0e,0x88,0x51,0xd4,0x73,0x90,0x42, + 0x2f,0xaa,0x82,0x0a,0x5f,0x10,0xa6,0x1c,0x16,0x62,0x1f,0x55,0x0c,0x74,0x34,0x71,0x60,0x46,0x8d,0xeb, + 0x22,0xef,0x1f,0x83,0x7b,0x83,0x7b,0x9e,0xea,0x32,0xd5,0x92,0x48,0xcf,0x07,0x07,0x3a,0xe2,0xf3,0xcf, + 0x88,0x41,0x53,0x3f,0x0f,0x56,0x65,0xe2,0x3f,0x27,0xc4,0xac,0xd5,0x87,0xac,0xb5,0xcb,0x6d,0x92,0x85, + 0xb7,0x1c,0x55,0x33,0xf4,0x5e,0x54,0x71,0x5a,0x94,0x9e,0x2a,0xdf,0x96,0x55,0x72,0xf5,0xf4,0x31,0xa5, + 0xf0,0x53,0xef,0xe9,0x63,0x4f,0xcd,0xd3,0xe2,0xea,0x26,0x2e,0x92,0x9f,0xa5,0x2f,0xa1,0xf7,0xa5,0x4e, + 0xe8,0xe9,0xde,0x85,0x3d,0x4f,0x4d,0xf3,0xe5,0x5b,0x89,0x9c,0xe1,0x3d,0x32,0x8f,0xbd,0xff,0xfd,0xbf, + 0x7a,0x77,0x8f,0x4f,0xfe,0xd1,0x7b,0x1e,0x17,0xaf,0x7b,0xd7,0x71,0xd6,0xfb,0x31,0xc9,0xca,0x9b,0x7c, + 0x35,0xa3,0x6d,0xb5,0xc8,0x63,0x78,0xdc,0x0a,0xbd,0x1f,0x16,0x09,0x0c,0x07,0x39,0x9a,0x41,0x4f,0xa7, + 0xf6,0x64,0xa2,0x74,0xc8,0xf7,0xc1,0x60,0xe0,0x29,0x5e,0xa9,0x2f,0x38,0xe8,0x46,0xe8,0x3d,0xc4,0x4b, + 0x23,0xed,0x45,0x7c,0xcd,0xb5,0xc9,0x2f,0x97,0xb8,0x49,0xe7,0x29,0x0d,0xac,0x5a,0x95,0xe1,0x6d,0x3c, + 0x85,0x83,0xca,0x65,0x9e,0x66,0x95,0x1d,0xf4,0xc3,0x1f,0xd0,0xf1,0x59,0x5a,0xc6,0xe7,0x74,0x66,0x84, + 0xde,0x63,0xfd,0x44,0xd4,0x02,0x7b,0xbb,0xc8,0x33,0x44,0xa7,0xb3,0xd9,0x7f,0x49,0xbf,0x4c,0x77,0x14, + 0x50,0x29,0x02,0x8d,0x78,0x4f,0x67,0xb8,0xb4,0xcd,0xf2,0x17,0x2f,0x78,0x06,0xe9,0x6f,0x0f,0xa6,0xa1, + 0xf3,0x9c,0x16,0x8d,0xe6,0x76,0x1a,0x67,0x08,0x20,0x01,0x53,0x0b,0x2a,0xfc,0x82,0x5e,0x7b,0x53,0xf3, + 0x8e,0x09,0xcc,0x32,0x02,0xae,0x2f,0xe9,0xf0,0xc4,0x67,0xf9,0xed,0x55,0x79,0x4f,0x7f,0xb0,0x39,0xa8, + 0x5f,0xcf,0xf2,0x92,0xe7,0xd9,0xbc,0xd3,0xb4,0x95,0x15,0xf7,0x4c,0xe7,0xd1,0xbd,0xb3,0x6f,0x88,0xcd, + 0x51,0xea,0xa9,0xa8,0xe2,0xf3,0x97,0x76,0xd5,0x29,0xc5,0x53,0x7a,0x80,0x8f,0x24,0xc0,0x4b,0xaf,0xd4, + 0xc9,0x74,0x94,0xbe,0xa8,0x92,0x65,0xf9,0xb2,0x58,0x21,0x73,0x52,0xf5,0x20,0xda,0x47,0x94,0xf9,0xb7, + 0x34,0xa6,0x82,0xf5,0xfa,0x4b,0x64,0xa8,0xb3,0x7e,0x09,0x65,0xd3,0x76,0x5e,0xb8,0x56,0xbb,0x4e,0x67, + 0x2b,0x04,0x91,0xa0,0xb9,0x25,0xba,0x03,0xc1,0x23,0x1a,0x3d,0x79,0xa9,0xd3,0xd0,0x97,0xab,0xc4,0x24, + 0xd2,0xa3,0x24,0x3c,0xc5,0x95,0x42,0x46,0x98,0xc2,0x00,0x0b,0x4d,0x2b,0xcc,0x55,0xe2,0xaa,0x87,0xcf, + 0x3d,0x53,0x65,0x4f,0x9b,0x90,0xf4,0xe2,0x8c,0xdb,0x47,0x99,0x5e,0x3d,0x6d,0x03,0xa9,0xed,0x59,0x5c, + 0x3d,0xcb,0x01,0x2b,0xf4,0x90,0x56,0x04,0x8c,0xbd,0x23,0x9a,0xc0,0xec,0x82,0x9f,0x75,0x16,0x42,0xd2, + 0x15,0xc3,0xfa,0x57,0x54,0xc3,0xa2,0x23,0x5f,0x6f,0x5e,0xe4,0x57,0xbd,0x85,0xce,0xd7,0x2c,0xf5,0x22, + 0x89,0x8b,0xe9,0x25,0xa6,0x01,0xbf,0x9e,0xba,0xca,0x91,0xaa,0x47,0xf5,0x9c,0x5f,0xbc,0x8d,0xb3,0x9c, + 0xee,0x4c,0xd4,0x8b,0x5a,0xaf,0x4b,0xbd,0xce,0x7c,0xcf,0x90,0x54,0x3c,0x53,0x2e,0x48,0x7b,0x4f,0x32, + 0x40,0x62,0x4f,0xd2,0x7a,0x9c,0xd8,0xc8,0xf1,0x35,0xe7,0x7a,0xb8,0x58,0xe4,0x37,0xa5,0x2c,0x9e,0xb6, + 0x64,0x76,0xa6,0x47,0x86,0xf4,0x36,0x5f,0x15,0xbd,0x59,0x72,0x9d,0x4e,0x13,0x40,0x1f,0x50,0x71,0x4f, + 0xd0,0x83,0xf6,0xc3,0xc2,0xc5,0x1b,0xfb,0xb3,0xb7,0x5c,0x15,0xcb,0xbc,0x4c,0xca,0x41,0xef,0xe5,0x65, + 0x62,0x72,0x37,0xb3,0x50,0x2d,0x9a,0x30,0xa4,0x1a,0xe8,0xfd,0xb2,0xaa,0x96,0xe1,0xd1,0xd1,0xc9,0xe7, + 0x77,0x07,0x27,0x7f,0xff,0xe7,0xe0,0x64,0xf0,0xe9,0x51,0xef,0xe6,0x32,0xc9,0xd0,0x7e,0x0f,0xb8,0xc5, + 0xc2,0x2e,0x7a,0x91,0x56,0x54,0x35,0x93,0x36,0x55,0x2f,0x9f,0xcf,0x7b,0x71,0xd9,0x2b,0x73,0x78,0xb6, + 0x28,0x7b,0x7a,0xab,0xa2,0x73,0x09,0x5a,0x31,0xcd,0x26,0x33,0x85,0xcf,0x54,0x80,0x12,0xd9,0x42,0x3b, + 0x99,0x22,0x15,0xd7,0x99,0x71,0xf6,0x96,0xf0,0xcd,0xdb,0x41,0xef,0x37,0x6a,0x0c,0xfb,0x30,0x5e,0xd0, + 0x6b,0xd9,0xb3,0x74,0x5f,0x4f,0x30,0x74,0x0f,0xac,0x09,0x7a,0x7b,0xfe,0xb6,0x07,0x15,0x2d,0x60,0xa6, + 0xea,0xb2,0x39,0xcd,0x3d,0x1d,0x08,0x68,0x95,0x11,0x77,0xca,0x5f,0x9f,0x3d,0x79,0xdc,0x5b,0x00,0xff, + 0x95,0xbd,0xd5,0x92,0x60,0xce,0x45,0x26,0x66,0xa1,0xdc,0x5e,0x37,0x72,0xc8,0x42,0xe9,0x25,0xef,0x9a, + 0x7d,0x9a,0x0d,0x5e,0xa2,0xfc,0x26,0xeb,0x01,0x25,0xf5,0x0a,0xf6,0x53,0x34,0xe8,0xe9,0xad,0xc1,0xe1, + 0xa7,0xb8,0x1f,0x40,0x40,0x8a,0x40,0xa6,0x24,0x94,0x5b,0xcc,0x68,0xd0,0x33,0x3a,0x4c,0x0b,0xfa,0xd2, + 0x5e,0xbe,0xf3,0x84,0xc0,0x02,0x1d,0x2d,0xd3,0x99,0xe0,0x2d,0x4f,0x99,0x62,0xb4,0xe5,0xf4,0x13,0xe1, + 0x97,0xcb,0xe9,0x32,0xf4,0x7e,0xa2,0x46,0x1e,0x7f,0xfd,0xe8,0x07,0x79,0xd7,0x80,0xb5,0xaa,0xf2,0x2b, + 0x38,0x08,0xc2,0x1e,0xa7,0x69,0x2f,0xd3,0x8b,0xac,0xc4,0x2e,0x7c,0xfa,0x43,0x4f,0x47,0xb2,0xee,0x06, + 0x26,0x59,0x02,0x22,0x0a,0xce,0x69,0x5a,0xb0,0x28,0x34,0xa1,0x94,0xf1,0x75,0x92,0x2c,0xf5,0x42,0x60, + 0x66,0x17,0x28,0x0f,0xc0,0x80,0x21,0x05,0x81,0x09,0xed,0x7b,0x7a,0xbb,0x43,0x50,0x32,0xcb,0x81,0xed, + 0x09,0x01,0x2f,0x75,0x33,0x84,0x85,0x6d,0x93,0x34,0xa2,0xd5,0x39,0xa1,0x80,0xab,0xb8,0x7c,0x4d,0xe3, + 0xe2,0xe7,0x1e,0x5e,0x3c,0x75,0x41,0x87,0x2e,0x2d,0x39,0xed,0x6f,0x79,0xf0,0xd4,0x25,0xa1,0x50,0xb1, + 0x6a,0xfb,0x5a,0x3f,0xd5,0x69,0x3f,0xd4,0x5e,0x58,0x09,0xaf,0x6a,0x43,0x36,0xaa,0x69,0x6a,0x5b,0xda, + 0xd8,0x53,0xd2,0xdd,0xcc,0xe6,0xa0,0xb4,0x5b,0xd9,0x9e,0x9c,0x42,0x33,0x00,0x2d,0x67,0x0b,0x7b,0xc2, + 0xbc,0x2c,0xe2,0xe5,0xd6,0x19,0xfc,0x71,0x87,0x70,0xf2,0xef,0x9d,0xc1,0x4f,0x68,0xe3,0xe5,0x17,0x49, + 0x76,0xbe,0x48,0x5f,0xf7,0x2e,0x12,0x5a,0x19,0xda,0x3d,0xe7,0xc9,0xbb,0xf4,0x82,0xe8,0x05,0x20,0xc0, + 0x19,0x65,0xb8,0xe6,0x03,0xcb,0x02,0x4e,0xb2,0x7d,0x2c,0xbf,0xcc,0x13,0xc0,0x4d,0x92,0x75,0x1e,0xcd, + 0x5f,0xd8,0xfa,0xf2,0x65,0xb9,0x88,0xe3,0xec,0x2f,0x9d,0xd2,0x3f,0xa5,0x15,0x51,0x2f,0xd3,0xcb,0xf8, + 0x75,0xb2,0xf8,0xf8,0xa3,0xba,0x59,0x4a,0x9f,0xd7,0x2f,0xa8,0x13,0x4b,0xd8,0x92,0xce,0xda,0xa7,0x76, + 0x4a,0x9d,0xbc,0x48,0xae,0x73,0x22,0xb6,0xb2,0xee,0x93,0x3b,0x9e,0xd3,0x81,0x93,0x67,0xdb,0x07,0xf7, + 0xb7,0xf4,0xf1,0x22,0xc1,0x74,0x25,0x85,0x76,0x2a,0x4b,0x90,0xf2,0x1a,0xf5,0xb4,0x0f,0xf0,0x9f,0xeb, + 0x1c,0x94,0x79,0x91,0x17,0xc8,0xd4,0x3c,0xc4,0xbf,0x43,0x4f,0x50,0x93,0x74,0xe5,0x63,0x8e,0xf1,0xaf, + 0x57,0xe9,0x2c,0xbd,0x48,0x76,0x1c,0xe3,0x74,0x04,0xe0,0xbc,0x4c,0xb0,0xa0,0xb3,0xe4,0x5d,0xb2,0x98, + 0x03,0x6d,0xea,0xb3,0x3a,0x49,0xab,0xad,0xb3,0xfc,0xa5,0xe4,0x35,0x87,0x78,0x92,0x2c,0xd8,0x00,0x37, + 0xa1,0x7a,0xb2,0x3f,0x77,0x9a,0xbf,0x9a,0xb5,0x4f,0xf3,0x67,0x0c,0x0b,0x3d,0xda,0x0a,0xbd,0xeb,0x9c, + 0x4e,0x95,0x8a,0xf2,0xd4,0x87,0x79,0x92,0xd4,0xa7,0xf8,0x75,0x63,0xaa,0x12,0x78,0x53,0x21,0xee,0xbc, + 0x75,0x9e,0x7f,0x51,0x24,0xc9,0x8c,0x88,0xe9,0x22,0x8e,0x67,0x38,0xab,0xc1,0x14,0xc8,0x5b,0xfb,0x54, + 0xdf,0x9d,0x93,0xfa,0x73,0x49,0xfc,0x59,0x86,0x7e,0x9d,0xc7,0x25,0x61,0x20,0x80,0xbd,0x9c,0xf3,0x49, + 0xf7,0x31,0xff,0x7b,0x9e,0xf0,0xf2,0x36,0x8e,0xf9,0x2f,0x92,0x9b,0x04,0xda,0xba,0x3b,0x0f,0xfa,0x7a, + 0xf1,0xed,0xca,0x39,0xf0,0xe0,0xee,0xb3,0xd6,0x51,0xff,0xd0,0x3d,0x7c,0x68,0x29,0x04,0xa8,0x79,0xcf, + 0xd5,0xd9,0x2e,0x39,0xeb,0xf3,0x38,0x7e,0x5d,0xf5,0x2e,0x81,0xf5,0x68,0x77,0x2f,0xd2,0x57,0x74,0x98, + 0x5d,0xf1,0xbc,0xca,0xe1,0x6f,0x4f,0xd9,0x34,0xc1,0x30,0xe3,0x39,0x7f,0xa3,0xad,0x4b,0x64,0x06,0xad, + 0x49,0x16,0xc7,0x05,0x03,0x49,0x0f,0x98,0xc9,0x1e,0x40,0x89,0xc0,0x33,0xaa,0x22,0xd8,0xa9,0x53,0xed, + 0xc9,0x0b,0x07,0xa4,0xbd,0xc7,0xcd,0x52,0x34,0x91,0x94,0xe5,0x3c,0xc9,0x08,0x95,0x14,0xd8,0x1d,0x69, + 0xdc,0x49,0x03,0xd0,0x77,0x6a,0xf9,0x95,0xdb,0xb3,0xcb,0xe4,0x1c,0xbb,0xf1,0x0a,0x83,0x19,0xf4,0x5e, + 0xc8,0x78,0xa5,0x5f,0x38,0xa6,0x09,0x99,0xa6,0xe8,0x2b,0x8f,0xd3,0xed,0x03,0x9d,0xff,0x08,0x8e,0xfa, + 0x2e,0xd5,0xa0,0x2e,0xdb,0xfa,0x3c,0xb9,0x4e,0x52,0x3a,0x9e,0x67,0x00,0xa0,0xde,0x37,0x49,0xef,0x35, + 0x9d,0xdc,0x6e,0x6d,0x79,0xfe,0xda,0x9d,0x56,0x3a,0x62,0x08,0x32,0x01,0xa5,0x49,0xaf,0x31,0xf5,0x74, + 0x16,0x2d,0x31,0xa6,0x59,0xb1,0x7a,0x8d,0xe9,0x20,0xb6,0x16,0x5d,0x9f,0x09,0x01,0x10,0x03,0x0d,0xd0, + 0x24,0xb6,0xcf,0x7f,0x67,0x8d,0x81,0x09,0xf9,0x04,0xd7,0xe8,0xc1,0xc9,0x27,0xcb,0xa7,0xf3,0x6e,0x2f, + 0x01,0x2a,0xa7,0x29,0x4a,0x68,0x9b,0xb7,0x88,0x80,0x9f,0x57,0x8b,0xde,0x65,0xca,0x98,0x89,0x8e,0x79, + 0xcc,0x08,0x23,0x34,0xca,0x76,0x13,0x4f,0x2f,0xab,0x9b,0x1c,0x94,0x40,0x4a,0x53,0x93,0xd4,0xb8,0x3c, + 0xa1,0x9c,0x1c,0xd3,0x70,0xc5,0xd3,0xda,0xcb,0x69,0x87,0x01,0x81,0xf0,0x74,0x94,0x3b,0xe9,0x82,0x5f, + 0x6c,0x85,0x86,0x32,0xf8,0x2a,0x39,0x2f,0x56,0x74,0x80,0xd4,0xd4,0xc1,0x65,0x83,0x3a,0xa0,0x39,0x65, + 0x00,0xe3,0x13,0x9a,0x8e,0x4d,0x9a,0xb2,0xe4,0x26,0x7d,0xf5,0x0e,0x30,0x17,0x67,0x5b,0xc3,0x1c,0xf4, + 0x7e,0x21,0x00,0xa4,0x42,0xe9,0xab,0x8c,0x61,0xf7,0x86,0x08,0x2c,0x1a,0xb6,0xb3,0x56,0x28,0x06,0x85, + 0x0f,0x1a,0x10,0xfd,0x79,0x97,0xbe,0xc2,0xf7,0x9b,0x84,0x86,0x7d,0x03,0xd8,0xa5,0x97,0xab,0x24,0xd1, + 0x07,0xd9,0x39,0xec,0xbb,0xb7,0x29,0x05,0x7a,0xdc,0x49,0x27,0x24,0xc5,0xc7,0x50,0x0a,0xf1,0xd5,0x0e, + 0x4a,0xe1,0x05,0x8e,0x16,0xea,0xc7,0xcc,0xd0,0x0a,0x68,0xeb,0xcf,0x52,0x0a,0xe7,0xe9,0xab,0x9b,0xa4, + 0x78,0xcd,0xc8,0x7f,0x53,0x3b,0x25,0xe4,0xf8,0x1f,0xc4,0x06,0x5b,0x99,0x09,0xc4,0xf8,0xda,0x2b,0x55, + 0x6d,0xde,0x41,0x27,0x2f,0xf5,0x3f,0x2f,0x06,0x0b,0xda,0x09,0x2b,0x62,0xfb,0xdb,0xb6,0x16,0x1e,0x23, + 0x2e,0x63,0xb9,0x61,0x35,0x5d,0x83,0xa1,0xae,0xce,0xbf,0x4d,0x16,0xa1,0xf7,0x37,0x42,0x09,0x34,0x73, + 0x54,0x75,0x58,0x29,0xb6,0x84,0xb8,0x35,0xa4,0xc3,0xde,0xb1,0x2a,0xe5,0x7c,0xdf,0x3b,0xd1,0x4f,0x7c, + 0x7a,0xe0,0x55,0xe7,0x79,0x4a,0xe0,0x3e,0x45,0x2f,0x42,0x6f,0xed,0xa9,0xd5,0x12,0xc9,0x3f,0x14,0xf9, + 0x05,0x2f,0x02,0x65,0x8b,0x59,0xa4,0xf2,0x32,0x3e,0x87,0xff,0x3f,0x39,0xb3,0x8c,0x60,0xe1,0xb6,0x26, + 0x86,0x74,0x65,0x4c,0x33,0x98,0xcf,0x6e,0xe2,0xa6,0x49,0x49,0x2c,0xc3,0xdb,0x24,0x93,0xc3,0x9f,0x9a, + 0x48,0x09,0x3a,0x8f,0x07,0xfc,0x7f,0x4d,0x32,0x34,0x72,0xe8,0x63,0xf5,0xb8,0x99,0x95,0xf2,0x32,0x92, + 0xa7,0x36,0xec,0xe1,0x41,0x99,0x9d,0x43,0x8f,0xce,0x03,0x9a,0x8c,0xb8,0x5a,0xf0,0x09,0xe4,0xa9,0x85, + 0x3d,0x63,0x38,0x1e,0xa6,0x83,0xfa,0x2d,0xd8,0xb0,0x96,0x88,0x8b,0xd2,0x31,0x87,0x95,0xad,0x9c,0x77, + 0x1b,0xe7,0xb1,0x7b,0x8d,0xdf,0x78,0x8f,0xed,0x71,0x07,0xf9,0xdd,0x81,0x59,0x7e,0x37,0x80,0xca,0x5a, + 0xa8,0xf6,0x14,0x47,0x09,0xf3,0xcc,0xea,0xb0,0x21,0x1a,0xc3,0x07,0x18,0xd9,0x89,0x5d,0xe7,0x56,0xe0, + 0x04,0x6d,0x80,0x66,0x1d,0x9e,0x32,0x4c,0xc2,0xbf,0x81,0xef,0xf1,0xa3,0x67,0x2c,0xd1,0xb4,0x98,0xc9, + 0x0c,0x1a,0x0a,0xa2,0x97,0x46,0x07,0xf4,0x44,0xa2,0x70,0x24,0x03,0xbb,0xbe,0x4e,0x68,0xa3,0x67,0x2d, + 0xd0,0x80,0xde,0xc8,0x40,0x88,0x62,0xe0,0x33,0x59,0x46,0x4e,0xd4,0x34,0x1c,0x0f,0x80,0x4d,0x60,0x20, + 0xde,0x87,0x13,0x6c,0x07,0xd8,0x20,0x29,0x28,0x90,0x1a,0xbf,0x49,0x73,0xb6,0x2f,0xf0,0xbd,0xa3,0x78, + 0x99,0x1e,0x69,0x40,0xf1,0x82,0x01,0xb1,0x3d,0x59,0xc3,0x23,0xc0,0xb6,0x67,0x4d,0xed,0x26,0x81,0x7a, + 0x6c,0xa4,0x6e,0x92,0x14,0x6c,0x82,0x81,0x38,0x86,0x71,0xcb,0x1b,0x7f,0x9e,0x8b,0xfc,0x02,0x57,0x6e, + 0x81,0x6e,0x1b,0x0e,0x0b,0xc7,0xed,0x6e,0xd4,0x60,0xf0,0x67,0x7b,0x52,0x97,0xfc,0x2b,0x9d,0xa9,0x7b, + 0x20,0x72,0x9a,0x8e,0xc6,0xb7,0xf4,0xa2,0x75,0x33,0xae,0xb0,0x75,0x0f,0x2e,0x04,0xb0,0x8b,0xd8,0x02, + 0x9e,0xb5,0x31,0x8f,0x87,0xf1,0x7d,0xed,0x24,0x41,0x9b,0xeb,0xc4,0xb5,0x97,0x76,0xf9,0x80,0x4b,0x54, + 0x36,0x04,0x2d,0x46,0x45,0x54,0x86,0xe5,0x9e,0x04,0x6d,0xcc,0x38,0xba,0x66,0xde,0xb0,0xf0,0x2f,0xe1, + 0xbf,0xb8,0x1f,0x95,0x1b,0x40,0x47,0xc2,0x7e,0xa8,0x93,0x41,0x03,0x6a,0xc5,0x45,0xe6,0x7c,0x91,0xc3, + 0xe1,0xc0,0x91,0xf1,0x3d,0x11,0x38,0xd9,0x22,0x5c,0xd3,0x4c,0xf4,0x08,0x65,0xf8,0xe5,0x92,0xc0,0x7b, + 0xe6,0x7a,0x79,0xc8,0x38,0x24,0x5e,0x95,0x2f,0x3b,0xe1,0x4f,0x63,0x13,0xea,0xe0,0x06,0x36,0x27,0x5a, + 0x0c,0x0b,0x64,0x42,0xbc,0x4c,0x2d,0x85,0xd9,0x21,0xaf,0xae,0x34,0x44,0xb2,0x43,0x10,0x79,0xc4,0xcc, + 0x49,0x57,0x10,0x70,0x73,0x1b,0x18,0x54,0x8d,0x14,0x2a,0x67,0xa9,0x07,0x26,0xb5,0x81,0x25,0x1a,0x39, + 0x9c,0x0f,0x16,0x77,0x34,0x32,0xe8,0x44,0xc1,0x26,0xcd,0x2f,0x94,0x52,0xa3,0x96,0xc6,0x27,0x93,0x2a, + 0xb8,0xa6,0xf1,0x09,0x29,0x40,0x3d,0x8d,0xc4,0x74,0xe9,0x62,0xa1,0x66,0x2b,0x36,0xdd,0x22,0xa6,0xc6, + 0x77,0x9d,0xb8,0xe9,0x00,0xc9,0x8f,0x82,0xf0,0x56,0x31,0x58,0x50,0x99,0x39,0x97,0xd5,0xeb,0x44,0x33, + 0x3b,0x97,0x4e,0x2f,0x3d,0xe1,0x9d,0x8b,0x04,0x31,0x7b,0x4d,0x82,0x60,0x96,0x32,0xa9,0x98,0x69,0x21, + 0x68,0x75,0x9b,0xd4,0x5e,0x1a,0x9a,0xa5,0xfb,0x7d,0xd5,0x4c,0xd0,0x4e,0xfb,0x4e,0x42,0x9b,0x6c,0xbb, + 0x13,0x79,0x47,0x9e,0xe3,0x90,0xa1,0x77,0xb7,0x33,0xcf,0x61,0x23,0xcf,0xbd,0xce,0x3c,0xa7,0xa7,0x8d, + 0x4c,0x9f,0x76,0x66,0xa2,0xd3,0xb7,0x3d,0x52,0x3a,0xa3,0xee,0x7e,0x76,0xcc,0xd3,0xb5,0xbd,0x29,0xdc, + 0xd9,0x9a,0x2e,0xe8,0x20,0xb4,0x93,0xa0,0xef,0xbb,0xeb,0x29,0xa2,0x1a,0x08,0xd9,0x18,0xd4,0x0d,0xe6, + 0x48,0xce,0xd3,0x2e,0x53,0xba,0xfa,0x9c,0x36,0x50,0x3a,0xd0,0x07,0xb1,0xd1,0xd7,0x76,0x79,0x60,0xcf, + 0x38,0xc3,0xd8,0x55,0x56,0x4e,0x6e,0x3d,0xcb,0xda,0x35,0xe1,0x5d,0xe3,0x82,0xd0,0x40,0x1c,0x71,0x59, + 0x43,0xbd,0x0c,0x7a,0x82,0xf8,0xc7,0xfa,0x3f,0x14,0x7d,0x02,0x33,0xc3,0xcd,0xc2,0xe8,0x83,0x38,0x3c, + 0x0c,0x8d,0x13,0xa3,0xae,0x7e,0x6e,0xba,0xa7,0xe0,0x25,0xc2,0xa2,0xfc,0xa5,0x69,0xe8,0xf1,0x81,0xbb, + 0x9d,0x0d,0x0c,0x82,0x39,0x16,0x67,0x5e,0xf0,0x27,0xe7,0xe7,0x23,0xea,0x86,0x74,0x84,0xea,0xd5,0xf3, + 0xf5,0x11,0x05,0x44,0x78,0x62,0x8a,0xdc,0xfd,0x98,0x22,0x0d,0x99,0x8a,0x29,0x79,0x2f,0x74,0xef,0xde, + 0x3b,0xc6,0x92,0x2e,0x0d,0x7c,0x7f,0x44,0x13,0x0d,0xc1,0x8c,0x69,0xe2,0xb3,0x3f,0x51,0x52,0x0b,0x6a, + 0x4c,0xd1,0xf6,0xf2,0x7f,0x68,0x7d,0x6a,0xd0,0x80,0x67,0xa0,0x36,0x71,0xf3,0x81,0x53,0x64,0x44,0x38, + 0x07,0x3b,0x8b,0xf8,0x3a,0x42,0x30,0xed,0xc2,0xea,0xb3,0xe4,0x5e,0x10,0xee,0x26,0x33,0x8e,0x34,0x21, + 0xdd,0x46,0x93,0x9d,0xae,0xd7,0x0d,0xb5,0x51,0x39,0x33,0x1e,0x25,0x7f,0x82,0xda,0xd8,0xc2,0xc5,0x1f, + 0xee,0x3b,0xb4,0xcb,0x84,0x13,0x30,0x8c,0xce,0x8e,0xf9,0xe0,0xed,0xa2,0xe7,0xc4,0x45,0xf2,0xc0,0xd1, + 0x4d,0x56,0x22,0x3a,0xd6,0xde,0x53,0xc1,0xba,0x40,0xbb,0x04,0x76,0xca,0x43,0xe3,0x8f,0xdf,0xf7,0xe6, + 0x29,0x6e,0xe7,0x2c,0x4d,0x4b,0xd3,0xa6,0x3d,0xf8,0x7f,0xf1,0xf6,0x29,0x7f,0x96,0x7e,0x7c,0x89,0x6c, + 0xec,0xf5,0x2b,0x29,0xa1,0x57,0xa2,0x29,0x5d,0xa6,0xf4,0x69,0x40,0xe1,0xbd,0xbf,0x27,0x9f,0xaa,0x3c, + 0xfb,0xa9,0xc9,0xc6,0x34,0x6d,0x79,0x5b,0x1d,0x63,0xda,0xa5,0xc0,0x2d,0xa0,0x7f,0x72,0x7c,0xfc,0x89, + 0x10,0x1a,0xc9,0xec,0x08,0x3e,0x3f,0xab,0x18,0x2e,0xd5,0x86,0x5b,0x54,0xc2,0xdc,0x32,0x84,0x50,0x2a, + 0xd8,0x3e,0x24,0xdd,0x35,0xf0,0xc4,0x40,0xb8,0x57,0xc2,0x8d,0xea,0x5f,0x5c,0xb2,0xad,0x4e,0x83,0xcd, + 0xa9,0x8f,0xd4,0x0f,0xcf,0x1b,0xc7,0x50,0x86,0x39,0x2b,0xd6,0x76,0x23,0x3c,0x86,0xa6,0xd7,0x3f,0x74, + 0xea,0xc2,0xa9,0x61,0x07,0x99,0xbf,0x5e,0xef,0x89,0x07,0xf9,0x36,0xa5,0xcf,0xb0,0xba,0x45,0xfe,0x3b, + 0x40,0xd7,0x1a,0x17,0x26,0x87,0x33,0xc2,0x84,0xfa,0xee,0xf1,0x71,0x10,0x98,0xed,0x28,0x2c,0xd2,0x4e, + 0xc8,0x6b,0xb4,0x22,0x30,0xd7,0xc5,0x75,0x74,0xf6,0x5e,0xb2,0x1b,0xea,0x74,0x47,0x9c,0x4d,0x9e,0x25, + 0x37,0xda,0x66,0xd3,0xf3,0x55,0xd5,0x24,0x82,0x89,0x2d,0xd7,0x45,0xa2,0xa4,0x0e,0x18,0x8d,0x90,0x8f, + 0xa8,0x7c,0x67,0x9d,0x05,0xc2,0x4f,0x73,0xea,0x38,0xd3,0x21,0x1d,0x87,0xd5,0x6e,0xf2,0xba,0x38,0x6a, + 0xd6,0x21,0xc1,0x63,0x52,0xe3,0x7f,0x67,0x67,0x33,0xa9,0xf6,0x62,0xd0,0x6a,0x0a,0x7d,0xde,0xc1,0xc3, + 0x6d,0x01,0xbd,0xbe,0x4d,0xbe,0x65,0x43,0x9e,0x54,0xa4,0xa9,0x44,0x1b,0x9f,0x24,0xf7,0xc4,0x6f,0x17, + 0x1c,0x53,0xff,0xb7,0x13,0x8c,0x7a,0x71,0x4f,0x80,0x92,0x84,0xdb,0xb7,0xac,0xfe,0x2e,0xb8,0x35,0xfc, + 0xff,0x00,0x48,0xc1,0x72,0xbf,0x02,0x96,0x6d,0x79,0x41,0xcd,0x03,0x30,0xa2,0xd6,0x32,0xcf,0xab,0x98, + 0x26,0xef,0x22,0xcf,0x2f,0x88,0xac,0x5a,0xd2,0x59,0x37,0xcd,0xaf,0x38,0x8d,0xa7,0xe1,0x22,0xc9,0x11, + 0xe4,0xe3,0xe8,0x55,0xc9,0x3c,0x82,0x0e,0x49,0x70,0x6b,0xe4,0x56,0xbb,0xda,0xdf,0x74,0xcd,0x4d,0xbc, + 0x48,0x10,0x2c,0xfe,0xdf,0xc1,0xe6,0x9d,0x83,0x62,0x22,0x7b,0xa3,0xd8,0xa5,0x01,0x75,0xcd,0x48,0x1b, + 0x6e,0x69,0x75,0x89,0x7a,0x28,0xb6,0xfc,0x65,0xba,0xf8,0x00,0xdb,0x10,0xee,0x14,0xd8,0xd1,0x63,0x53, + 0x38,0xf1,0xe7,0xcb,0x97,0x7f,0xae,0x5d,0xed,0xfe,0xc1,0x69,0xdf,0x4a,0x9f,0x76,0x4f,0x8a,0xea,0x92, + 0x73,0x44,0xde,0xdf,0xbc,0x7e,0x05,0x25,0xa1,0xcd,0xff,0x01,0xad,0x9a,0x9c,0x29,0xd6,0xe4,0x01,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 623def7..4766d8a 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 9; +const uint8_t VersionMetadata = 10; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+9"; -const char VersionCommitDate[] = "2018-01-05"; +const char VersionFullSemVer[] = "2.0.0-beta.1+10"; +const char VersionCommitDate[] = "2018-01-07"; #endif diff --git a/src/charproperties.cpp b/src/charproperties.cpp index 9c651e6..6afa470 100644 --- a/src/charproperties.cpp +++ b/src/charproperties.cpp @@ -11,10 +11,10 @@ void CharProperties::assignChar(char** field, const char* newValue) { - if (*field != NULL) + if (*field != nullptr) delete *field; - if (newValue != NULL) + if (newValue != nullptr) { // Include the terminating null character size_t length = strlen(newValue) + 1; @@ -22,5 +22,5 @@ void CharProperties::assignChar(char** field, const char* newValue) strncpy(*field, newValue, length); } else - *field = NULL; + *field = nullptr; } \ No newline at end of file diff --git a/src/config.h b/src/config.h index 55ae8a6..d9f11ab 100644 --- a/src/config.h +++ b/src/config.h @@ -17,6 +17,13 @@ static const uint32_t StationModeTimeout = 30000; static const char* StepSettingsFile = "/stepsettings"; + +// TODO make these configurable through the web interface? + +static const uint8_t PinLEDAP = 4; +static const uint8_t PinLEDSTA = 5; +static const uint8_t PinAPButton = 2; + // Pins for the I2C bus static const uint8_t PinSDA = 13; static const uint8_t PinSCL = 12; diff --git a/src/main.cpp b/src/main.cpp index d0ede4b..8141ce3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,6 +25,7 @@ extern "C" { #include "server/settings.h" #include "server/firmware.h" #include "server/api.h" +#include "server/geocode.h" ADC_MODE(ADC_VCC); @@ -47,13 +48,25 @@ AsyncWebServer server(80); PCA9685* pwmDriver; WiFiUDP ntpUDP; -NTPClient* ntpClient = NULL; +NTPClient* ntpClient = nullptr; bool accessPoint = false; bool stationMode = false; bool forceAccessPoint = false; uint32_t stationModeStart = 0; +uint32_t blinkOnTime = 0; + +enum LEDState +{ + Off, + BlinkLow, + BlinkHigh, + On +}; + +bool ledAP = false; +LEDState ledWiFi = Off; #ifdef SerialDebug uint32_t debugStatusTime = 0; @@ -65,6 +78,7 @@ void setup() _dinit(); currentTime = millis(); + blinkOnTime = currentTime; if (!SPIFFS.begin()) _dln("Setup :: failed to mount file system"); @@ -73,6 +87,11 @@ void setup() stepsSettings->read(); + pinMode(PinAPButton, INPUT_PULLUP); + pinMode(PinLEDAP, OUTPUT); + pinMode(PinLEDSTA, OUTPUT); + + _dln("Setup :: initializing PCA9685"); pwmDriver = new PCA9685(); pwmDriver->setAddress(PWMDriverAddress, PinSDA, PinSCL); @@ -120,6 +139,7 @@ void setup() registerSettingsRoutes(&server); registerFirmwareRoutes(&server); registerAPIRoutes(&server); + registerGeocodeRoutes(&server); _dln("Setup :: starting HTTP server"); server.onNotFound(handleNotFound); @@ -181,8 +201,12 @@ void loop() } } + // TODO check AP button updateLED(); updateNTPClient(); + + // TODO check for triggers every 10 seconds or so + stairs->tick(); } @@ -193,7 +217,7 @@ void initWiFi() WiFi.softAPdisconnect(); accessPoint = connectionSettings->flag(AccessPoint) || forceAccessPoint; - stationMode = connectionSettings->flag(StationMode) && connectionSettings->ssid() != NULL; + stationMode = connectionSettings->flag(StationMode) && connectionSettings->ssid() != nullptr; WiFi.mode(accessPoint && stationMode ? WIFI_AP_STA : accessPoint ? WIFI_AP : @@ -275,7 +299,7 @@ void updateDebugStatus() _d("Status :: available heap: "); _dln(ESP.getFreeHeap()); - if (ntpClient != NULL) + if (ntpClient != nullptr) { _d("Status :: time: "); uint32_t time = ntpClient->getEpochTime(); @@ -289,27 +313,66 @@ void updateDebugStatus() void updateLED() { - /* - // Pulsate the bottom step while WiFi is connecting - uint16_t brightness = 0; - uint16_t speed = 16; + uint8_t value = (currentTime - blinkOnTime >= 1000) ? LOW : HIGH; - while (WiFi.status() != WL_CONNECTED) + WiFiMode_t mode = WiFi.getMode(); + if (mode == WIFI_AP_STA || mode == WIFI_AP) { - brightness += speed; - if (brightness <= 0 || brightness >= 1024) - speed = -speed; - - stairs->set(0, brightness); - delay(16); + if (!ledAP) + { + digitalWrite(PinLEDAP, HIGH); + ledAP = true; + } } - */ + else + { + if (ledAP) + { + digitalWrite(PinLEDAP, LOW); + ledAP = false; + } + } + + if (mode == WIFI_AP_STA || mode == WIFI_STA) + { + wl_status_t status = WiFi.status(); + + if (status == WL_CONNECTED) + { + if (ledWiFi != On) + { + digitalWrite(PinLEDSTA, HIGH); + ledWiFi = On; + } + } + else + { + LEDState expectedState = value == HIGH ? BlinkHigh : BlinkLow; + if (ledWiFi != expectedState) + { + digitalWrite(PinLEDSTA, value); + ledWiFi = expectedState; + } + } + } + else + { + if (ledWiFi != Off) + { + digitalWrite(PinLEDSTA, LOW); + ledWiFi = Off; + } + } + + + if (currentTime - blinkOnTime >= 2000) + blinkOnTime = currentTime; } void updateNTPClient() { - if (ntpClient == NULL && WiFi.status() == WL_CONNECTED) + if (ntpClient == nullptr && WiFi.status() == WL_CONNECTED) { _dln("NTP :: initializing NTP client"); @@ -319,11 +382,8 @@ void updateNTPClient() } - if (ntpClient != NULL) - { + if (ntpClient != nullptr) ntpClient->update(); - // TODO check for triggers every 10 seconds or so - } } diff --git a/src/secret.default.h b/src/secret.default.h new file mode 100644 index 0000000..c0e3a70 --- /dev/null +++ b/src/secret.default.h @@ -0,0 +1,22 @@ +#ifndef __secret +#define __secret + +// Copy this file to 'secret.h' and customize the constants. +// It is included in .gitignore by default so that you won't +// accidentally commit the dark secrets hidden within. + +#define SecretsPresent + + + +// They're not really that dark though. + +// Used for the Geocode API to get the local timezone +// Register for a Google API key at: +// https://console.developers.google.com/ +// +// ...and be sure to enable "Google Maps Geocoding API" for +// your project. +static const char* GoogleAPIKey = ""; + +#endif \ No newline at end of file diff --git a/src/server/geocode.cpp b/src/server/geocode.cpp new file mode 100644 index 0000000..f0c15f5 --- /dev/null +++ b/src/server/geocode.cpp @@ -0,0 +1,200 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "geocode.h" +#include +#include + +#include "../debug.h" +#include "../secret.h" + + +struct ResponseBuffer +{ + void* data; + size_t length; + ResponseBuffer* next; +}; + + +String urlencode(const String url) +{ + String encoded; + + for (int i = 0; i < url.length(); i++) + { + char c = url.charAt(i); + if (c == 0x20) + encoded += "%20"; + else if (isalnum(c)) + encoded += c; + else + { + encoded += "%"; + if (c < 0x10) encoded += "0"; + encoded += String(c, HEX); + } + } + + return encoded; +} + + +void memcpy_unaligned(void* dest, void* source, size_t length) +{ + uint8_t* destChar = (uint8_t*)dest; + uint8_t* sourceChar = (uint8_t*)source; + + while (length > 0) + { + *destChar = *sourceChar; + + sourceChar++; + destChar++; + length--; + } +} + + +void handleGetLatLong(AsyncWebServerRequest *request) +{ + _dln("API :: get lat long"); + + AsyncWebParameter* addressParam = request->getParam("address"); + if (addressParam == nullptr) + { + request->send(400); + return; + } + + String address = addressParam->value(); + if (!address.length()) + { + request->send(400); + return; + } + + AsyncClient* httpClient = new AsyncClient(); + httpClient->onError([&](void* arg, AsyncClient* client, int error) + { + _dln("API :: get lat long: OnError"); + request->send(500); + delete client; + }); + + + httpClient->onConnect([&](void * arg, AsyncClient* client) + { + client->onError(nullptr, nullptr); + ResponseBuffer* responseData = nullptr; + + client->onData([&](void* arg, AsyncClient* c, void* data, size_t len) + { + _dln("> OnData"); + // Store all received chunks in a linked list + ResponseBuffer* next = new ResponseBuffer; + next->data = malloc(len); + memcpy_unaligned(next->data, data, len); + next->length = len; + next->next = nullptr; + + if (responseData == nullptr) + responseData = next; + else + { + ResponseBuffer* prev = responseData; + while (prev->next != nullptr) + prev = prev->next; + + prev->next = next; + } + _dln("< OnData"); + }); + + client->onDisconnect([&](void* arg, AsyncClient* c) + { + _dln("> OnDisconnect"); + if (responseData == nullptr) + { + request->send(500); + return; + } + + // Send back the linked list using a chunked response + ResponseBuffer* sendChunk = responseData; + size_t sendOffset = 0; + + AsyncWebServerResponse *response = request->beginChunkedResponse("application/json", [&](uint8_t *buffer, size_t maxLen, size_t index) -> size_t + { + _dln("> ChunkedResponse"); + if (sendOffset >= sendChunk->length) + { + // End of the chunk, go to the next one + sendChunk = sendChunk->next; + sendOffset = 0; + } + + if (sendChunk == nullptr) + { + // We sent the last one, clean up the linked list + ResponseBuffer* next; + while (responseData != nullptr) + { + next = responseData->next; + + free(responseData->data); + delete responseData; + + responseData = next; + } + + return 0; + } + + if (maxLen >= sendChunk->length - sendOffset) + { + // Send the remainder of the chunk + memcpy_unaligned(buffer, (uint8_t*)sendChunk->data + sendOffset, sendChunk->length - sendOffset); + sendOffset = sendChunk->length; + } + else + { + memcpy_unaligned(buffer, (uint8_t*)sendChunk->data + sendOffset, maxLen); + sendOffset += maxLen; + } + _dln("< ChunkedResponse"); + }); + request->send(response); + + delete c; + _dln("< OnDisconnect"); + }); + + #ifdef SecretsPresent + String url = "/maps/api/geocode/json?address=" + urlencode(address) + "&key=" + urlencode(GoogleAPIKey); + #else + String url = "/maps/api/geocode/json?address=" + urlencode(address); + #endif + + client->write(String("GET " + url + " HTTP/1.0\r\nHost: maps.googleapis.com\n\r\n").c_str()); + }); + + + if (!httpClient->connect("maps.googleapis.com", 443, true)) + { + _dln("API :: get lat long: failed to connect to Google API"); + delete httpClient; + + request->send(500); + } +} + + + +void registerGeocodeRoutes(AsyncWebServer* server) +{ + server->on("/api/geo/latlong", HTTP_GET, handleGetLatLong); +} \ No newline at end of file diff --git a/src/server/geocode.h b/src/server/geocode.h new file mode 100644 index 0000000..5d8769e --- /dev/null +++ b/src/server/geocode.h @@ -0,0 +1,13 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __server_geocode +#define __server_geocode +#include + +void registerGeocodeRoutes(AsyncWebServer* server); + +#endif \ No newline at end of file diff --git a/src/settings/connection.cpp b/src/settings/connection.cpp index 32bdaf1..0589192 100644 --- a/src/settings/connection.cpp +++ b/src/settings/connection.cpp @@ -84,13 +84,13 @@ void ConnectionSettings::toJson(Print &print) bool ConnectionSettings::fromJson(char* data) { - return fromJson(data, NULL); + return fromJson(data, nullptr); } bool ConnectionSettings::fromJson(char* data, bool* changed) { - if (changed != NULL) + if (changed != nullptr) *changed = false; DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(9) + 250); @@ -113,9 +113,9 @@ bool ConnectionSettings::fromJson(char* data, bool* changed) const char* jsonSubnetMaskText = root["subnetmask"]; const char* jsonGatewayText = root["gateway"]; - if (jsonIPText == NULL || !jsonIP.fromString(jsonIPText)) jsonIP = emptyIP; - if (jsonSubnetMaskText == NULL || !jsonSubnetMask.fromString(jsonSubnetMaskText)) jsonSubnetMask = emptyIP; - if (jsonGatewayText == NULL || !jsonGateway.fromString(jsonGatewayText)) jsonGateway = emptyIP; + if (jsonIPText == nullptr || !jsonIP.fromString(jsonIPText)) jsonIP = emptyIP; + if (jsonSubnetMaskText == nullptr || !jsonSubnetMask.fromString(jsonSubnetMaskText)) jsonSubnetMask = emptyIP; + if (jsonGatewayText == nullptr || !jsonGateway.fromString(jsonGatewayText)) jsonGateway = emptyIP; if (!(jsonAccessPoint || jsonStation)) @@ -141,7 +141,7 @@ bool ConnectionSettings::fromJson(char* data, bool* changed) subnetMask(jsonSubnetMask); gateway(jsonGateway); - if (changed != NULL) + if (changed != nullptr) *changed = true; } diff --git a/src/settings/connection.h b/src/settings/connection.h index a7dd4d8..06ee43b 100644 --- a/src/settings/connection.h +++ b/src/settings/connection.h @@ -24,10 +24,10 @@ enum ConnectionSettingsFlags class ConnectionSettings : CharProperties { private: - char* mHostname = NULL; + char* mHostname = nullptr; uint8_t mFlags = AccessPoint | DHCP; - char* mSSID = NULL; - char* mPassword = NULL; + char* mSSID = nullptr; + char* mPassword = nullptr; IPAddress mIP = (uint32_t)0; IPAddress mSubnetMask = (uint32_t)0; IPAddress mGateway = (uint32_t)0; diff --git a/web/app.js b/web/app.js index 8bb6d39..58fdd2b 100644 --- a/web/app.js +++ b/web/app.js @@ -14,6 +14,7 @@ function startApp() data: { loading: true, saving: false, + savingSteps: false, loadingIndicator: '|', uploadProgress: false, @@ -36,6 +37,15 @@ function startApp() } }, + searchingLocation: false, + + triggers: { + time: { + latlong: '', + location: '' + } + }, + connection: { hostname: null, accesspoint: true, @@ -48,22 +58,9 @@ function startApp() gateway: null }, - steps: [ - { value: 50 }, - { value: 0 }, - { value: 0 }, - { value: 0 }, - { value: 0 }, - { value: 70 }, - { value: 0 }, - { value: 0 }, - { value: 0 }, - { value: 0 }, - { value: 25 }, - { value: 0 }, - { value: 0 }, - { value: 0 } - ] + allSteps: true, + allStepsValue: 0, + steps: [] }, created: function() @@ -71,10 +68,16 @@ function startApp() var self = this; document.title = i18n.t('title'); - self.startLoadingIndicator(); + var hash = window.location.hash.substr(1); + if (hash) + self.activeTab = hash; + self.startLoadingIndicator(); self.updateWiFiStatus(); + self.disableStepsChanged = false; + self.savingStepsTimer = false; + axios.get('/api/version') .then(function(response) { @@ -96,18 +99,38 @@ function startApp() .catch(function(error) { console.log(error); - })/*, + }), - axios.get('/api/actions') + axios.get('/api/steps') .then(function(response) { - if (typeof response.data == 'object') - self.actions = response.data; + if (Array.isArray(response.data)) + { + var allSteps = true; + var allStepsValue = false; + + var total = 0; + var steps = []; + + + for (var i = 0; i < response.data.length; i++) + { + var value = response.data[i]; + + if (allStepsValue === false) + allStepsValue = value; + else if (value !== allStepsValue) + allSteps = false; + + steps.push({ value: value }); + total += value; + } + + self.steps = steps; + self.allStepsValue = Math.floor(total / steps.length); + self.allSteps = allSteps; + } }) - .catch(function(error) - { - console.log(error); - })*/ ]) .then(axios.spread(function(acct, perms) { self.stopLoadingIndicator(); @@ -291,6 +314,114 @@ function startApp() document.getElementById('firmware').reset(); }); + }, + + stepsChanged: function() + { + var self = this; + if (self.loading || self.disableStepsChanged) return; + + if (self.savingStepsTimer === false) + self.savingStepsTimer = setTimeout(function() { self.updateSteps(); }, 200); + }, + + updateSteps: function() + { + var self = this; + + self.savingSteps = true; + self.savingStepsTimer = false; + + + self.disableStepsChanged = true; + + if (self.allSteps) + { + var newSteps = []; + for (var i = 0; i < self.steps.length; i++) + newSteps.push({ value: self.allStepsValue }); + + self.steps = newSteps; + } + else + { + var total = 0; + for (var i = 0; i < self.steps.length; i++) + total += self.steps[i].value; + + self.allStepsValue = Math.floor(total / self.steps.length); + } + var steps = []; + for (var i = 0; i < self.steps.length; i++) + steps.push(self.steps[i].value); + + self.disableStepsChanged = false; + + + axios.post('/api/steps', { + // TODO configurable + transitionTime: 1000, + values: steps + }) + .then(function(response) + { + + }) + .catch(function(error) + { + console.log(error); + }) + .then(function() + { + self.savingSteps = false; + }); + }, + + searchLocation: function() + { + var self = this; + if (!self.triggers.time.location) return; + + self.searchingLocation = true; + + axios.get('http://maps.googleapis.com/maps/api/geocode/json', { params: { address: self.triggers.time.location }}) + .then(function(response) + { + alert(response.data); + }) + .catch(function(error) + { + console.log(error); + }) + .then(function() + { + self.searchingLocation = false; + }); + } + }, + + watch: { + // The sync: true ensures we can wrap the internal updates with disableStepsChanged + allSteps: { + handler: function() { this.stepsChanged(); }, + sync: true + }, + + allStepsValue: { + handler: function() { this.stepsChanged(); }, + sync: true + }, + + steps: { + handler: function() { this.stepsChanged(); }, + deep: true, + sync: true + }, + + activeTab: function(newValue) + { + console.log(newValue); + window.location.hash = '#' + newValue; } } }); diff --git a/web/dist/bundle.css b/web/dist/bundle.css index 60286a2..ad3f4f2 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}.header .wifistatus{position:absolute;right:0;top:0}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer} \ No newline at end of file +*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}.header .wifistatus{position:absolute;right:0;top:0}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 85c07d3..bcfef9e 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function It(t){return t&&(t.Ctor.options.name||t.tag)}function Lt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Ft(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=It(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Hr=t,zr=Wr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Vr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Hr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function $e(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Li?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Li,l=a,f=o.length):e===Fi?u>0&&(n=Fi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Li:Fi:null)?n===Li?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Li&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Ie(t,e){!0!==e.data.show&&Te(e)}function Le(t,e,n){Fe(t,e,n),(Pn||Rn)&&setTimeout(function(){Fe(t,e,n)},0)}function Fe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function He(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),$n=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),xn=/\B([A-Z])/g,kn=p(function(t){return t.replace(xn,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},En=/[^\w.$]/,In="__proto__"in{},Ln="undefined"!=typeof window,Fn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=Fn&&WXEnvironment.platform.toLowerCase(),Nn=Ln&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Dn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Dn,Hn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Vn=!1;if(Ln)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!Ln&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=Ln&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);qn="undefined"!=typeof Set&&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&$r[n].id>t.id;)n--;$r.splice(n+1,0,t)}else $r.push(t);Cr||(Cr=!0,z(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(At.prototype);var Ir={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Ir.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=z,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Hr,Vr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",$i={create:de,update:de},xi={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Vi),v(Et.options.components,Ji),Et.prototype.__patch__=Ln?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&Ln?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Io(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for(x=t.slice(v);!(co.test(x)||ao.test(x)||lo.test(x)||fo.test(x)||(k=x.indexOf("<",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=""),e.chars&&$&&e.chars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===I&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===L)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status"},triggers:{tabTitle:"Triggers",timeTitle:"Time",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},steps:[{value:50},{value:0},{value:0},{value:0},{value:0},{value:70},{value:0},{value:0},{value:0},{value:0},{value:25},{value:0},{value:0},{value:0}]},created:function(){var e=this;document.title=t.t("title"),e.startLoadingIndicator(),e.updateWiFiStatus(),axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)})]).then(axios.spread(function(t,n){e.stopLoadingIndicator(),e.loading=!1}))},methods:{applyConnection:function(){var t=this;t.saving||(t.saving=!0,axios.post("/api/connection",{hostname:t.connection.hostname,accesspoint:t.connection.accesspoint,station:t.connection.station,ssid:t.connection.ssid,password:t.connection.password,dhcp:t.connection.dhcp,ip:t.connection.ip,subnetmask:t.connection.subnetmask,gateway:t.connection.gateway}).then(function(t){}).catch(function(t){console.log(t)}).then(function(){t.saving=!1}))},startLoadingIndicator:function(){var t=this;t.loadingStage=0,t.loadingTimer=setInterval(function(){switch(t.loadingStage++,t.loadingStage){case 1:t.loadingIndicator="/";break;case 2:t.loadingIndicator="-";break;case 3:t.loadingIndicator="\\";break;case 4:t.loadingIndicator="|",t.loadingStage=0}},250)},stopLoadingIndicator:function(){clearInterval(this.loadingTimer)},getWiFiStationStatus:function(){if(!this.wifiStatus.station.enabled)return"disconnected";switch(this.wifiStatus.station.status){case 0:case 2:return"connecting";case 1:case 4:case 5:return"error";case 3:return"connected";case 6:default:return"disconnected"}},getWiFiStationStatusText:function(){if(!this.wifiStatus.station.enabled)return t.t("wifiStatus.stationmode.disabled");switch(this.wifiStatus.station.status){case 0:return t.t("wifiStatus.stationmode.idle");case 1:return t.t("wifiStatus.stationmode.noSSID");case 2:return t.t("wifiStatus.stationmode.scanCompleted");case 3:return this.wifiStatus.station.ip;case 4:return t.t("wifiStatus.stationmode.connectFailed");case 5:return t.t("wifiStatus.stationmode.connectionLost");case 6:default:return t.t("wifiStatus.stationmode.disconnected")}},updateWiFiStatus:function(){var t=this;t.saving?setTimeout(t.updateWiFiStatus,5e3):axios.get("/api/connection/status").then(function(e){"object"==typeof e.data&&(t.wifiStatus=e.data)}).catch(function(t){console.log(t)}).then(function(){setTimeout(t.updateWiFiStatus,5e3)})},uploadFirmware:function(){var t=this;if(!t.saving){t.saving=!0,t.uploadProgress=0;var e=new FormData;e.append("file",document.getElementById("firmwareFile").files[0]);var n={timeout:36e4,onUploadProgress:function(e){t.uploadProgress=Math.round(100*e.loaded/e.total)}};axios.post("/api/firmware",e,n).then(function(t){console.log("Update sent")}).catch(function(t){console.log(t)}).then(function(){t.uploadProgress=!1,t.saving=!1,document.getElementById("firmware").reset()})}}}})} \ No newline at end of file +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function Lt(t){return t&&(t.Ctor.options.name||t.tag)}function It(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Ft(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Lt(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Vr=t,zr=Wr=qr=0;!ce();)ue(Hr=se())?le(Hr):91===Hr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Hr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Vr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Hn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Ai(c,s,"");for(s in d)(a=d[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function xe(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ii?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ii,l=a,f=o.length):e===Fi?u>0&&(n=Fi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ii:Fi:null)?n===Ii?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ii&&Bi.test(r[Di+"Property"])}}function Se(t,e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Te(e)}function Ie(t,e,n){Fe(t,e,n),(Pn||Rn)&&setTimeout(function(){Fe(t,e,n)},0)}function Fe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function Ve(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function He(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),xn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),$n=/\B([A-Z])/g,kn=p(function(t){return t.replace($n,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},Sn=function(t){return t},An="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:Sn,mustUseProp:Cn,_lifecycleHooks:On},En=/[^\w.$]/,Ln="__proto__"in{},In="undefined"!=typeof window,Fn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=Fn&&WXEnvironment.platform.toLowerCase(),Nn=In&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Dn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Dn,Vn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Hn=!1;if(In)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Hn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!In&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=In&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);qn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eAr&&xr[n].id>t.id;)n--;xr.splice(n+1,0,t)}else xr.push(t);Cr||(Cr=!0,z(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(St.prototype);var Lr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Lr.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=z,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Vr,Hr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",xi={create:de,update:de},$i={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Si=/\s*!important$/,Ai=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Si.test(n))t.style.setProperty(e,n.replace(Si,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Hi),v(Et.options.components,Ji),Et.prototype.__patch__=In?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&In?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Lo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for($=t.slice(v);!(co.test($)||ao.test($)||lo.test($)||fo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[S]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===L&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeLatLong:"Latitude / longitude",timeLocation:"Get latitude / longitude from location",timeLocationSearch:"Search",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeLatLong:"Breedtegraad / lengtegraad",timeLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",timeLocationSearch:"Zoeken",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{latlong:"",location:""}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},allSteps:!0,allStepsValue:0,steps:[]},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a
+

{{ $t('status.title') }}

-
- {{ index + 1 }} - - {{ step.value }} +
+ + +
+ +
+ + +
+ +
+
+ {{ Math.floor(allStepsValue / 255 * 100) }}% +
+ +
+
+ +
+ {{ Math.floor(step.value / 255 * 100) }}% +
+ +
+
+

{{ $t('triggers.timeTitle') }}

+ +
+ {{ $t('triggers.timeInternet') }} +
+ + + + + + + +
@@ -62,6 +104,11 @@
+

{{ $t('connection.title') }}

@@ -108,6 +155,11 @@
+

{{ $t('firmware.title') }}

diff --git a/web/lang.js b/web/lang.js index 72b4579..b457794 100644 --- a/web/lang.js +++ b/web/lang.js @@ -29,12 +29,20 @@ var messages = { status: { tabTitle: 'Status', - title: 'Current status' + title: 'Current status', + + allStepsTrue: 'Set intensity for all steps', + allStepsFalse: 'Set intensity individually' }, triggers: { tabTitle: 'Triggers', timeTitle: 'Time', + timeInternet: 'Please note that time triggers require an internet connection.', + timeLatLong: 'Latitude / longitude', + timeLocation: 'Get latitude / longitude from location', + timeLocationSearch: 'Search', + motionTitle: 'Motion' }, @@ -97,12 +105,20 @@ var messages = { status: { tabTitle: 'Status', - title: 'Huidige status' + title: 'Huidige status', + + allStepsTrue: 'Alle treden dezelfde intensiteit', + allStepsFalse: 'Treden individueel instellen' }, triggers: { tabTitle: 'Triggers', timeTitle: 'Tijd', + timeInternet: 'Let op dat voor tijd triggers een internetverbinding vereist is.', + timeLatLong: 'Breedtegraad / lengtegraad', + timeLocation: 'Breedtegraad / lengtegraad ophalen op basis van locatie', + timeLocationSearch: 'Zoeken', + motionTitle: 'Beweging' }, diff --git a/web/site.scss b/web/site.scss index 8a63343..f8ced06 100644 --- a/web/site.scss +++ b/web/site.scss @@ -17,6 +17,10 @@ $sliderBarColor: #404040; $sliderBarSize: .5rem; $sliderThumbColor: #fcf6cf; $sliderThumbSize: 2rem; +$sliderValueColor: #808080; + +$warningColor: #302f28; +$warningBorderColor: #000000; $smallScreen: "screen and (min-width: 768px)"; @@ -191,6 +195,33 @@ input[disabled] } +.sliders +{ + margin-top: 2rem; +} + + +.step +{ + margin-left: 3rem; + margin-right: 3rem; + position: relative; + + .slidercontainer + { + margin-right: 4em; + } + + .value + { + position: absolute; + right: 0; + top: .1rem; + color: $sliderValueColor; + } +} + + .slider { -webkit-appearance: none; @@ -219,4 +250,13 @@ input[disabled] background: $sliderThumbColor; cursor: pointer; } +} + + +.warning +{ + background: $warningColor; + border: solid 1px $warningBorderColor; + padding: .5em; + margin-bottom: 2rem; } \ No newline at end of file From 6cc2b5de026f6c7ed899318a9fa297bbe32c02f0 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Mon, 8 Jan 2018 16:27:04 +0100 Subject: [PATCH 11/43] Build-time detection of secret.h Added geocode call to devserver and fixed frontend implementation --- API.md | 5 + devserver.js | 16 + platformio-buildflags.bat | 7 + platformio.ini | 2 +- src/assets/css.h | 284 +-- src/assets/html.h | 225 +- src/assets/js.h | 4336 +++++++++++++++++++------------------ src/assets/version.h | 26 +- src/secret.default.h | 4 - src/server/geocode.cpp | 244 ++- web/app.js | 11 +- web/dist/bundle.js | 2 +- web/index.html | 8 +- 13 files changed, 2626 insertions(+), 2544 deletions(-) create mode 100644 platformio-buildflags.bat diff --git a/API.md b/API.md index 7f89bca..8c22ce1 100644 --- a/API.md +++ b/API.md @@ -6,6 +6,7 @@ - [POST /api/connection](#post-apiconnection) - [GET /api/steps](#get-apisteps) - [POST /api/steps](#post-apisteps) +- [GET /api/geocode/latlong](#get-apigeocodelatlong) - [POST /api/firmware](#post-apifirmware) ## GET /api/version @@ -116,6 +117,10 @@ An optional array 'startTime' can be included which specifies the delay, for eac } ``` +## GET /api/geocode/latlong + +Internally calls the Google Maps Geocode API and returns the results as-is. Only accepts the 'address' GET parameter. If configured in the firmware, the API key is added as well. This prevents the API key from being exposed. + ## POST /api/firmware Uploads new firmware. The bin file should be posted as a multipart/form-data file attachment. Name is not relevant. \ No newline at end of file diff --git a/devserver.js b/devserver.js index e236d1f..d8fe021 100644 --- a/devserver.js +++ b/devserver.js @@ -83,6 +83,22 @@ app.post('/api/steps', function(req, res) res.sendStatus(400); }); + +app.get('/api/geocode/latlong', function(req, res) +{ + res.send({ + results: [{ + geometry: { + location: { + lat: 51.5719149, + lng: 4.768323 + } + } + }], + status: 'OK' + }); +}); + app.listen(3000, function() { console.log('Development server listening on port 3000') diff --git a/platformio-buildflags.bat b/platformio-buildflags.bat new file mode 100644 index 0000000..106cf3e --- /dev/null +++ b/platformio-buildflags.bat @@ -0,0 +1,7 @@ +@Echo Off +echo -DASYNC_TCP_SSL_ENABLED=1 + +if exist src\secret.h ( + echo -DSecretsPresent=1 +) +echo -D \ No newline at end of file diff --git a/platformio.ini b/platformio.ini index e3d9000..c754676 100644 --- a/platformio.ini +++ b/platformio.ini @@ -18,4 +18,4 @@ lib_deps = ESP Async WebServer NTPClient Time -build_flags = -D ASYNC_TCP_SSL_ENABLED=1 \ No newline at end of file +build_flags = !platformio-buildflags.bat \ No newline at end of file diff --git a/src/assets/css.h b/src/assets/css.h index 8d91255..b049b50 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -1,142 +1,142 @@ -#ifndef __embed_css -#define __embed_css - -#include - -const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0x99, - 0xda,0x9a,0xb7,0x79,0xc0,0x62,0xb0,0x99,0x31,0xde,0xd9,0x4a,0x72,0xca,0x21,0xc9,0x21,0x87,0x5c,0xb6, - 0xf6,0x20,0x83,0x30,0xaa,0xc5,0x40,0x40,0x8c,0x67,0x1e,0xc5,0x7f,0x4f,0xeb,0x03,0x23,0x81,0xc0,0x33, - 0x79,0xa9,0xca,0xba,0x76,0x6c,0x5a,0xdd,0xad,0x56,0x77,0xab,0xd5,0xdd,0xe2,0x8f,0x76,0x84,0x52,0x8a, - 0x6b,0x3b,0x3a,0xe2,0xb4,0xac,0x71,0x77,0x2c,0x5f,0x9d,0x86,0xfc,0x46,0x8a,0x53,0x44,0x8a,0x0c,0xd7, - 0x84,0xf6,0x19,0x3d,0xe7,0x2a,0xfc,0x58,0xd6,0x09,0xae,0x1d,0x80,0x1c,0xd2,0xb2,0xa0,0x0c,0x8c,0xa3, - 0xd0,0x77,0x77,0x9f,0xfa,0x63,0x99,0xbc,0x75,0x71,0x99,0x97,0x75,0x74,0x1f,0x7a,0x61,0xfc,0x18,0x0a, - 0x94,0x14,0x9d,0x49,0xfe,0x16,0xfd,0xb3,0x3c,0x96,0xb4,0xb4,0x1f,0xfe,0x8a,0xf3,0x17,0x4c,0x49,0x8c, - 0xac,0x7f,0xe0,0x16,0x3f,0xd8,0xd7,0x67,0xfb,0xcf,0x35,0x41,0xb9,0xdd,0xa0,0xa2,0x71,0x1a,0x98,0x3c, - 0x55,0x66,0xd8,0xb8,0x21,0x3e,0x8b,0xe7,0x0b,0x26,0xa7,0x8c,0x46,0x81,0xe7,0x1d,0x72,0x4c,0x41,0x7c, - 0xa7,0xa9,0x50,0xcc,0x64,0x73,0xbd,0x0d,0x20,0xe5,0xa4,0xc0,0x4e,0x26,0x90,0x80,0xac,0x3f,0xe6,0x65, - 0xfc,0xf3,0xdf,0x6d,0x49,0xd9,0xfa,0xb8,0xf0,0x39,0x4e,0x69,0xe4,0x06,0x35,0x3e,0x5b,0x4d,0x99,0x93, - 0xc4,0xba,0xdf,0x7a,0xec,0x73,0x38,0xa3,0xfa,0x44,0x0a,0x31,0x7e,0x7d,0xaa,0x39,0x27,0xef,0x50,0xa1, - 0x24,0x61,0xb3,0x6c,0x18,0xdd,0xc6,0xdd,0xc1,0x97,0xc2,0xdb,0x8a,0x72,0xd4,0x50,0x27,0xce,0x48,0x9e, - 0x74,0x92,0x12,0xd6,0x4b,0xcb,0x73,0xe4,0xf5,0xee,0xb1,0x85,0x5f,0x85,0x2d,0xbf,0x48,0x51,0xb5,0xf4, - 0x3b,0x7d,0xab,0xf0,0xb3,0x80,0xfc,0x50,0x41,0x35,0x6e,0x30,0xd5,0x20,0x4d,0x7b,0x3c,0x13,0xfa,0xa3, - 0x3b,0xa2,0xf8,0xe7,0xa9,0x2e,0xdb,0x22,0x71,0xa4,0x9a,0xbd,0x30,0x3d,0x88,0x45,0x45,0xee,0x46,0x59, - 0xcf,0x08,0x77,0x6a,0x94,0x90,0xb6,0x89,0xdc,0x2d,0x0c,0x1f,0x24,0x59,0x9a,0xa6,0x87,0xb8,0xad,0x1b, - 0xf8,0x5d,0x95,0xa4,0x00,0x1d,0x1e,0x12,0xd2,0x54,0x39,0x7a,0x03,0xbb,0x73,0xfd,0xf1,0x85,0x69,0xfa, - 0x67,0xec,0x35,0x03,0x3c,0x82,0x01,0xa4,0x9a,0x03,0xf7,0x89,0x8d,0x4e,0xcd,0xc1,0x49,0x54,0x73,0x48, - 0xbc,0x41,0x93,0x9e,0xc5,0x6c,0x70,0xa0,0xf8,0x95,0x3a,0x28,0x27,0xa7,0x22,0x8a,0x31,0x17,0x86,0x43, - 0x12,0x1c,0x97,0x35,0xa2,0xa4,0x2c,0xa2,0xa2,0x2c,0xb0,0x00,0xd2,0x1a,0xbc,0x03,0x7c,0xf5,0x1c,0xb5, - 0x55,0x85,0xeb,0x18,0x35,0xf8,0x70,0xc9,0x08,0xc5,0x7c,0x56,0x0c,0x98,0x97,0x1a,0x55,0x83,0xc2,0xa3, - 0xb4,0x8c,0xdb,0xc6,0x1e,0x9e,0xb2,0xf2,0x05,0x9c,0x5d,0x1b,0xd2,0x46,0xe6,0x76,0x91,0x58,0x86,0x81, - 0x19,0x85,0x30,0xdb,0x9c,0x40,0xc2,0x67,0xf8,0xd2,0xa8,0x73,0x82,0x61,0x80,0x53,0x18,0x6c,0x2e,0xb7, - 0x96,0x34,0xaf,0x0e,0x54,0xec,0x5b,0xb6,0x94,0xa9,0x7e,0xf4,0xbe,0xef,0x60,0x62,0x74,0xcc,0x71,0xf2, - 0xc3,0x9e,0x01,0xe6,0x0b,0x34,0x0f,0x8a,0xc5,0x98,0xc7,0xa4,0xdc,0xe3,0x60,0x27,0x5d,0x2c,0xc1,0x29, - 0x6a,0x73,0x7a,0x28,0x99,0x5f,0xd0,0xb7,0xc8,0xdd,0xcd,0x45,0xd2,0x2d,0xa5,0xc0,0x55,0x9b,0xcd,0xd0, - 0x17,0xb0,0xd7,0x56,0xb3,0x68,0xd1,0x35,0x2e,0xd3,0x65,0x2f,0x59,0x79,0x8d,0xc7,0x4c,0x3d,0x8b,0x96, - 0x9f,0x72,0x59,0xdd,0xf7,0x0a,0x64,0xd0,0xaa,0xfc,0x72,0xa4,0x07,0xd8,0x66,0xe8,0x5c,0x03,0x2b,0x18, - 0x62,0x79,0x2b,0x08,0x52,0xf4,0x09,0xc6,0x5c,0x72,0xbe,0x7f,0x2b,0x54,0xc3,0x3e,0x3f,0xdc,0x94,0x5c, - 0x77,0x8a,0xe9,0xa0,0xea,0x19,0x66,0xc2,0x35,0xba,0x9b,0xcb,0x5f,0x74,0x94,0x9b,0xfc,0x8c,0xca,0x5a, - 0x72,0x99,0x9b,0xdc,0xcc,0x9a,0x5d,0x74,0x1e,0x23,0xbf,0x75,0x3b,0xac,0x45,0x12,0xf1,0xb4,0x60,0x9f, - 0xa5,0xed,0xbb,0x8c,0xb6,0x62,0xb3,0x85,0xcd,0x7d,0x8b,0xd7,0x4d,0xfb,0xbc,0x63,0xeb,0x7f,0x60,0x0e, - 0xa3,0xd1,0x6e,0x07,0x86,0x0f,0xcc,0x60,0xb6,0xe3,0x3b,0xc2,0xc6,0x8d,0x39,0x3a,0xcd,0xcc,0x32,0xbd, - 0x5b,0xd9,0x83,0x71,0x8e,0xd1,0xd4,0x54,0x02,0xb6,0xac,0xc0,0xd9,0xb8,0xbe,0xfa,0xd9,0xf0,0x44,0x72, - 0x3e,0xfe,0x01,0x5f,0x7d,0x5f,0x30,0xe1,0x5c,0xcd,0x0e,0x2a,0x86,0x4c,0x4e,0xa9,0x12,0x2d,0xd3,0xdc, - 0xd0,0xc4,0x4d,0x87,0x5b,0xe0,0x65,0xd0,0xda,0x2d,0xc7,0x5a,0xe0,0x64,0x52,0xf0,0x4d,0x07,0x52,0x78, - 0xfd,0x3e,0x63,0x98,0x83,0x07,0x67,0x7f,0x2b,0x74,0x4c,0x91,0x16,0x6d,0x74,0x23,0x6c,0x98,0xf9,0xdc, - 0xb0,0xc8,0x07,0x42,0xc6,0x4d,0xfe,0x06,0x33,0xbd,0x3f,0x5c,0xdc,0xe4,0x6e,0xb2,0xdc,0x07,0x42,0x85, - 0x91,0x7f,0xa7,0x6c,0xa5,0xb8,0x4c,0xd4,0x43,0x1c,0x32,0xcb,0x6d,0xba,0x4b,0x43,0x63,0x6d,0x31,0x16, - 0x0b,0x4f,0xe1,0x27,0x59,0x3c,0x41,0x8a,0xef,0xfa,0x6a,0xca,0xcf,0x9f,0x2c,0x5e,0x3c,0x99,0xf2,0xf6, - 0xaa,0x5e,0x9b,0x6e,0x5e,0xb7,0xb1,0x3c,0x88,0xc9,0x9c,0xe6,0xe5,0xc5,0x79,0x8b,0x32,0x92,0x24,0xb8, - 0x60,0x5c,0xbe,0x09,0xc9,0x35,0x31,0xbd,0x6b,0x91,0x23,0xaa,0x1b,0x43,0x41,0xa7,0xc9,0x04,0x6c,0xfa, - 0x6c,0x88,0x9b,0x40,0x2d,0xb9,0xd1,0xb2,0xd2,0x8b,0x2d,0x29,0xa4,0x5c,0x31,0x17,0xcf,0xeb,0x15,0xa5, - 0xe3,0x33,0x22,0xb9,0x96,0x2a,0x17,0xed,0xf9,0x88,0x6b,0x0d,0x54,0xa1,0xa6,0xb9,0xc0,0x04,0x7a,0x4a, - 0x0d,0xe6,0x89,0x33,0x0d,0x44,0x71,0x3e,0x79,0x7e,0xd5,0x8b,0xc5,0xb6,0x06,0x84,0x06,0xe7,0x38,0xa6, - 0x36,0x1b,0x84,0x1d,0x89,0x3a,0x04,0xc5,0x12,0x82,0x0d,0xca,0x35,0x0d,0xb5,0xd4,0x3b,0xb6,0xb5,0xbe, - 0x46,0x59,0x20,0x9b,0xec,0xce,0x9b,0x03,0x19,0x4a,0xca,0x8b,0xe4,0x3d,0x6b,0x22,0x1c,0xcc,0xe5,0x9f, - 0x1b,0x72,0xc5,0x73,0xb5,0x93,0x84,0x66,0xd1,0xc6,0xf3,0x3e,0xcd,0x15,0x37,0xf7,0x62,0xa9,0xbe,0xf9, - 0xc0,0x55,0x89,0x06,0xcf,0x17,0xaa,0x9c,0x0f,0x30,0x85,0x9a,0xa0,0xaf,0xa6,0xda,0x8c,0x29,0x57,0x42, - 0x85,0x8a,0xe5,0xc3,0xa0,0x68,0xf1,0xd8,0xcd,0x52,0x73,0xa5,0x1a,0x13,0x74,0xaa,0x97,0x03,0xd3,0x5f, - 0x1e,0x12,0x44,0x51,0x44,0xce,0xe8,0x84,0xbf,0x34,0x2f,0xa7,0x5f,0x5f,0xcf,0xf9,0xa1,0xa5,0xe9,0x93, - 0xfd,0x15,0x9e,0x2c,0x78,0x2a,0x9a,0xe7,0xbb,0x8c,0xd2,0x2a,0xfa,0xf2,0xe5,0x72,0xb9,0xb8,0x97,0xc0, - 0x2d,0xeb,0xd3,0x17,0xdf,0xf3,0x3c,0x86,0x7f,0x67,0x09,0x15,0x3f,0xdf,0x6d,0xb6,0x77,0xd6,0x0b,0xc1, - 0x97,0xbf,0x94,0xaf,0xcf,0x77,0x9e,0xe5,0x59,0xfe,0xde,0x62,0x30,0xae,0xe1,0xe7,0x3b,0x7f,0x7f,0xf7, - 0xed,0x6b,0x85,0x68,0x66,0xa5,0x24,0xcf,0x9f,0xef,0xee,0x93,0x0d,0xfb,0xdc,0x59,0xc9,0xf3,0xdd,0xdf, - 0xf7,0x6e,0xf0,0xf8,0xe8,0x3f,0x5a,0x81,0x1b,0xfa,0xbb,0x7c,0xe7,0x7a,0x4f,0x9b,0xdd,0xd6,0x0a,0xdd, - 0x7d,0xb0,0xf3,0x83,0xbf,0x6d,0xf6,0xee,0x6e,0xeb,0x05,0xa1,0x18,0xbe,0xfb,0xf2,0xed,0x2b,0x9b,0xf9, - 0xdb,0xc3,0x67,0x4b,0x54,0xed,0x16,0x6f,0x94,0x58,0x45,0xe9,0xd4,0x18,0xbc,0x8d,0x0e,0x76,0x96,0x0d, - 0x14,0xb6,0x2f,0x7a,0x55,0x69,0xea,0xd9,0xc2,0x17,0xfe,0xff,0x55,0xc4,0xfe,0xb8,0x4d,0x62,0xf4,0xbb, - 0x14,0xd1,0x5f,0xf7,0xdb,0x99,0x14,0x43,0xcf,0x23,0x14,0x9d,0xa2,0x1c,0x1d,0x71,0x6e,0xe7,0xf8,0x84, - 0x8b,0xa4,0xd3,0xe3,0x90,0xd6,0xe5,0x32,0x75,0x59,0xf4,0x76,0x92,0xe0,0x97,0x12,0x9c,0x27,0x70,0x56, - 0x0c,0xbe,0x26,0x76,0xd0,0xd8,0xa5,0xd2,0x22,0x50,0x9c,0xe1,0xf8,0x27,0xec,0x4b,0xbd,0x96,0x87,0x4d, - 0x5c,0xfe,0xb8,0xca,0x22,0x1a,0x3f,0xbd,0xcb,0x05,0x75,0xc4,0xd3,0x64,0x50,0xed,0x0a,0x49,0xf1,0xb6, - 0x9e,0xde,0x35,0x13,0xc2,0xb9,0x31,0xa0,0x20,0xa0,0xa8,0xbb,0xeb,0x39,0x80,0x5a,0x5a,0x02,0xea,0xab, - 0x94,0x74,0xb3,0xf1,0xf5,0x56,0x90,0x78,0x2c,0x1b,0xc2,0x3b,0x3e,0x35,0xce,0x11,0x25,0x2f,0x58,0x8d, - 0x0c,0x6e,0x5d,0x5e,0xae,0x12,0xa5,0x39,0x7e,0x3d,0xb0,0x3f,0x4e,0x42,0x6a,0xf0,0x29,0x46,0x04,0xfb, - 0xad,0x3d,0x17,0x23,0xcf,0x29,0x31,0xfb,0xef,0x80,0x7f,0x4a,0x84,0x6e,0xd4,0x95,0x61,0xf4,0x9b,0x2b, - 0xd8,0x99,0xb0,0xd8,0x59,0xd5,0xf1,0xc9,0xd9,0xaf,0x48,0xb4,0x9c,0x86,0x41,0x38,0x1f,0x3a,0xde,0xcd, - 0x72,0xe0,0x28,0x39,0x37,0x5c,0x52,0xa7,0x01,0xbf,0xa0,0x23,0x8e,0x30,0xe5,0x1c,0x0d,0x9c,0x63,0x44, - 0x12,0xdb,0x4a,0x43,0x12,0xa0,0x11,0xa5,0xa1,0x35,0xa6,0x71,0xa6,0xe1,0x48,0x98,0x32,0x19,0x82,0x6d, - 0xc7,0xac,0xa9,0x62,0x0d,0x40,0x8e,0x66,0x0d,0x6b,0x9d,0x38,0x26,0x88,0x14,0x6d,0xac,0xcd,0x60,0x3b, - 0xbd,0x39,0x7a,0xb5,0x24,0xa8,0x77,0xaa,0xe9,0x81,0xa1,0xfc,0x72,0xca,0x34,0x05,0x5f,0x75,0x36,0x5e, - 0xa7,0x72,0xd9,0xac,0x63,0xfb,0x3a,0xb6,0x7f,0x03,0x7b,0xa7,0x63,0xef,0x56,0xb1,0x83,0xc0,0x5e,0x1b, - 0xdd,0x6a,0xbc,0x82,0xc0,0x0d,0xe0,0xdf,0x2a,0xc3,0x9d,0x2e,0xec,0x6e,0x5d,0xd8,0x30,0x5c,0x9b,0x3e, - 0x7c,0xd4,0x78,0x85,0xa1,0x1b,0xc2,0xbf,0x55,0x86,0x8f,0xfa,0xea,0x1f,0xd7,0x57,0xff,0xa4,0x0b,0xfb, - 0xb4,0x2e,0xec,0x5e,0xc7,0xde,0x2f,0x60,0x83,0x71,0xb9,0xc3,0xb0,0x58,0x0b,0x96,0xd5,0x3c,0xc4,0x4c, - 0xe1,0x2b,0x14,0xbe,0x46,0xb1,0x64,0x6b,0x30,0xf2,0x48,0xb1,0xd3,0x28,0x16,0x56,0xbc,0x60,0x68,0xb0, - 0xf0,0x95,0xd1,0x60,0x5e,0x85,0xdb,0xaa,0xc5,0xb7,0x8a,0xd8,0x5b,0x4d,0xec,0xed,0x82,0xd8,0x3b,0x85, - 0x62,0xa7,0x51,0x2c,0xf9,0x49,0xa8,0x50,0x84,0x1a,0x45,0xb8,0x44,0x61,0x76,0x29,0xf0,0xa5,0x91,0x91, - 0x74,0x24,0x95,0xdb,0x9a,0x6f,0x3d,0x2a,0xda,0x7e,0xd4,0xb4,0xbd,0xe4,0x5f,0x4f,0x8a,0xd8,0x4f,0x9a, - 0xd8,0x4b,0x3e,0xb6,0x57,0x28,0xf6,0x1a,0xc5,0xd4,0xcf,0x86,0x6f,0x25,0xc0,0x42,0x08,0x4b,0xa7,0xf1, - 0x75,0x86,0xae,0xc5,0xda,0x91,0x62,0x08,0xb5,0x33,0x7c,0x2d,0xec,0x72,0x7c,0x19,0x75,0xff,0x74,0xc6, - 0x09,0x41,0xd6,0x2f,0xec,0x70,0x1f,0xec,0x0d,0x87,0xd6,0xe7,0x8e,0x1f,0x4c,0x93,0xb3,0x08,0x40,0x5a, - 0xc4,0x74,0x94,0x3c,0x37,0x46,0x79,0xfc,0x0b,0x8b,0x95,0xd6,0xaf,0xfc,0xd8,0xfb,0xac,0x07,0x61,0xfd, - 0xb8,0x1f,0x72,0xe8,0xf1,0xa4,0x64,0x9c,0xfa,0x1e,0x29,0x75,0x9a,0xf1,0xc2,0xa4,0x97,0xd9,0xa8,0x8d, - 0xf4,0xba,0x4e,0x56,0xe5,0x49,0x6e,0x97,0xb9,0xdd,0xe6,0x5d,0x4e,0x1a,0x48,0x3f,0xe8,0x5b,0x2e,0x6b, - 0x03,0x39,0x3d,0x2b,0x73,0xae,0xe9,0x84,0x8c,0xfa,0x40,0x64,0x01,0x1d,0xfc,0x2d,0xf9,0xdf,0x96,0xf1, - 0xb0,0x38,0x27,0x06,0x29,0x39,0xa4,0xe5,0x90,0x96,0x43,0x5a,0x06,0xe9,0xc6,0x04,0x47,0x58,0x98,0x67, - 0x04,0xa2,0xe0,0x62,0xb1,0x42,0xfc,0xe0,0xf9,0x61,0xa9,0x89,0x03,0x0b,0x82,0x44,0x30,0xb7,0x48,0xd1, - 0x90,0x04,0xf7,0xba,0xac,0x31,0xa9,0xa1,0x7c,0x1d,0xc6,0x26,0x37,0x6c,0x49,0x62,0x27,0xd4,0xce,0xc9, - 0x44,0x97,0x1b,0x35,0x73,0x12,0xb9,0xd0,0xac,0x54,0x9a,0x50,0x4c,0xef,0xf9,0x60,0xd9,0x76,0x4a,0x4e, - 0x6d,0x8d,0x6d,0x76,0x0d,0xc5,0x74,0x58,0xd9,0x50,0x29,0xda,0x94,0xd5,0xd0,0x4c,0x9f,0x3a,0x03,0x5f, - 0x30,0xe0,0xa3,0x43,0xae,0x36,0x5c,0x90,0x69,0x09,0x0a,0x4d,0x6c,0x9a,0x75,0xd7,0xeb,0x55,0x91,0xea, - 0xa9,0x25,0x18,0xde,0xb0,0xcf,0x58,0xb5,0x8a,0x52,0x5a,0xd6,0xad,0xca,0x1d,0x1a,0x33,0x15,0x70,0x8b, - 0x52,0x52,0x0f,0x17,0x92,0xc0,0x59,0x7d,0xec,0x26,0x56,0x05,0xe4,0xf1,0xf2,0x92,0xe1,0x2a,0x57,0x99, - 0x7a,0x12,0xef,0xf5,0x47,0x1b,0xf2,0x8b,0x12,0x92,0xa7,0x49,0x92,0xda,0x57,0x9d,0xea,0x38,0x7d,0xb6, - 0xb1,0x33,0xdf,0xce,0x02,0x3b,0xdb,0xda,0xd9,0xce,0xce,0xc2,0xee,0xc6,0xe5,0xad,0x23,0xae,0x0b,0x27, - 0xda,0x53,0x40,0x03,0x5f,0xc5,0x9d,0xb6,0x22,0x5f,0xd6,0x6f,0x7c,0xfd,0x3e,0xf3,0x15,0x9c,0xc0,0x88, - 0xb3,0xeb,0xb3,0x40,0x41,0xf2,0xe5,0x05,0xa6,0x86,0x14,0xf4,0xd9,0x56,0xc3,0xf1,0x0d,0x97,0x9c,0x0e, - 0x14,0x07,0x06,0x52,0xe0,0xbf,0xeb,0xd4,0xc4,0xde,0x74,0x41,0x0a,0xb4,0xbb,0x39,0x2d,0x90,0x86,0xdd, - 0xac,0x26,0x98,0x90,0x7a,0x13,0xa2,0x6d,0x4f,0xce,0xa7,0x4e,0x4f,0xca,0x20,0x0d,0x67,0xfd,0x9d,0x94, - 0xbc,0x8a,0x6b,0xfe,0x4e,0x34,0xf6,0x40,0xb5,0xd9,0x81,0x25,0xe8,0x10,0xd5,0xa2,0x07,0xeb,0xe1,0xda, - 0x15,0xe1,0x3e,0xda,0xbb,0x69,0x5e,0x22,0xca,0x5d,0xa3,0xe3,0x3f,0x85,0x43,0x49,0x30,0x77,0x03,0x09, - 0xe7,0xbf,0xfb,0xef,0x2f,0x4e,0x0c,0x8f,0x3f,0xc7,0x4a,0x82,0x07,0x1f,0xfe,0x32,0x80,0xe1,0xe2,0x0a, - 0x0c,0xaf,0x5c,0x52,0xaa,0xef,0x07,0xfc,0x0b,0xd7,0x09,0x2a,0xd6,0xdf,0x02,0xf0,0xaa,0xb1,0xac,0x94, - 0x2e,0xc2,0xe3,0x86,0x0c,0xcd,0x4d,0x5c,0x63,0x5c,0x58,0xa8,0x48,0xd4,0x28,0xfd,0x18,0x3e,0x55,0xaf, - 0x9f,0x3b,0x2e,0xd1,0x40,0xcc,0x9c,0x89,0x53,0x8a,0x32,0x69,0xdc,0xfe,0xa3,0x70,0xfd,0xfd,0x58,0xc5, - 0xcc,0x17,0xe2,0x7b,0xec,0xa3,0xfa,0xa6,0x56,0xcf,0x6c,0x26,0x9d,0x11,0x71,0xf2,0x57,0xaf,0xd6,0x7d, - 0x1a,0xa7,0x61,0x7c,0xbd,0xb5,0x17,0x7b,0x7b,0xc3,0x06,0x40,0x35,0xef,0x5a,0x87,0x22,0x96,0x02,0xd7, - 0x0e,0x1b,0x35,0x5f,0x17,0x1b,0x97,0x41,0xfa,0xde,0xcd,0x30,0x82,0x59,0xbb,0x59,0x99,0x35,0x8c,0x58, - 0xcc,0x8b,0x46,0xab,0xeb,0x3c,0x78,0xf4,0x1c,0x10,0xdd,0x0b,0x49,0x21,0x18,0x23,0x0a,0x85,0xfc,0x95, - 0x1d,0x3a,0xc2,0x7a,0x5a,0x8a,0x0f,0xc3,0x3b,0x13,0x62,0xcf,0x1a,0x68,0x2c,0x97,0x14,0x09,0x89,0x11, - 0x2d,0x6b,0x73,0x91,0x29,0xdd,0x98,0xa9,0x71,0x70,0x72,0xa1,0x52,0xb5,0x01,0xb5,0xbb,0x1e,0x27,0x52, - 0x44,0x59,0x7e,0xae,0xce,0xf7,0x9d,0x75,0x18,0x1c,0x01,0x7e,0x06,0x5d,0x16,0x10,0xfe,0xd9,0x6d,0xf5, - 0xdc,0xc6,0xc1,0x3e,0xfc,0x08,0x2f,0x58,0x87,0xca,0x6e,0x6a,0xe0,0x53,0x8d,0xdf,0xfe,0x0b,0xd1,0xc0, - 0x9b,0x4c,0xb2,0xa5,0xfb,0xe0,0x23,0xcc,0x70,0x5d,0x97,0xb5,0x89,0x4f,0xec,0x4d,0x62,0xea,0x26,0xac, - 0x06,0xbb,0xb3,0x70,0xeb,0xcb,0x1d,0xd1,0x90,0x1c,0x72,0x88,0xe9,0x5e,0x1c,0xf1,0x02,0x89,0xc7,0x56, - 0x39,0x6f,0x2f,0xde,0xfb,0x4f,0xec,0xa3,0x92,0x6f,0xab,0xeb,0x05,0x82,0xdc,0xc9,0x53,0x55,0xc1,0x7c, - 0x0d,0x78,0x95,0xca,0x58,0xe9,0x31,0x03,0xf9,0xfc,0xc5,0x91,0xc9,0x76,0xec,0x5d,0x88,0x69,0x8d,0x1a, - 0xf7,0x14,0x84,0xe0,0x8a,0x60,0xc9,0xec,0xc1,0xa0,0x1e,0xd9,0xf7,0x1c,0xa3,0xc2,0x1f,0xc8,0xb9,0x2a, - 0x6b,0x8a,0xa6,0xd7,0x1f,0x42,0x64,0x95,0xdb,0x47,0xee,0xc2,0x65,0xb3,0x66,0xf6,0xea,0x44,0x51,0xb2, - 0x05,0xe6,0xe5,0x05,0x27,0x87,0x75,0xfd,0x86,0xec,0x33,0xe9,0xde,0x68,0x5b,0x43,0xe8,0x23,0x23,0x05, - 0x5d,0x6c,0x3f,0x31,0x9d,0x2a,0xb3,0x18,0x33,0x21,0x17,0x82,0x03,0x6f,0x9e,0x4c,0x34,0x39,0x37,0x46, - 0xef,0x36,0xed,0xb1,0xac,0x58,0x60,0x68,0xf4,0xda,0x98,0xf3,0x11,0xda,0x69,0x3a,0x13,0x1d,0xf8,0x01, - 0xd8,0xbe,0x9b,0x59,0xb3,0xa1,0xb8,0xd2,0x58,0x05,0x4a,0x7e,0x30,0xb6,0x19,0xe7,0x6d,0x24,0x41,0x6a, - 0x49,0xce,0xd3,0xee,0x94,0x24,0xdd,0x0e,0x53,0x58,0xee,0x0b,0xca,0x5b,0x7c,0x23,0xae,0x89,0x7c,0x45, - 0xb5,0xbe,0xe0,0xde,0x41,0x92,0x73,0xfc,0x49,0x60,0x51,0x93,0xa6,0xbb,0xd2,0x2e,0x91,0x21,0x4d,0xe4, - 0x6e,0x93,0xa6,0xba,0x2f,0x80,0xca,0x2d,0x88,0x74,0x42,0xe5,0x8d,0x1e,0x31,0x53,0x14,0x0d,0x53,0x89, - 0x67,0x87,0x66,0xed,0xf9,0xb8,0x38,0xbf,0x59,0x1e,0x5f,0x09,0xb1,0xbe,0x39,0xc4,0x6a,0x37,0x32,0xe2, - 0xf8,0xd2,0xdf,0x1e,0x53,0x04,0x3a,0x97,0xbf,0x01,0x69,0x71,0xc2,0x52,0x98,0xff,0xe5,0x24,0x17,0x54, - 0x17,0xcc,0xf5,0x54,0xd4,0xc0,0xf3,0x53,0x08,0x2c,0xc6,0xe3,0x74,0xbc,0x69,0xd8,0x19,0x33,0xcb,0xfe, - 0x3f,0xde,0x3d,0x2e,0x64,0x01,0x29,0x00,0x00}; - -#endif +#ifndef __embed_css +#define __embed_css + +#include + +const uint8_t EmbeddedBundleCSS[] PROGMEM = { + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0x99, + 0xda,0x9a,0xb7,0x79,0xc0,0x62,0xb0,0x99,0x31,0xde,0xd9,0x4a,0x72,0xca,0x21,0xc9,0x21,0x87,0x5c,0xb6, + 0xf6,0x20,0x83,0x30,0xaa,0xc5,0x40,0x40,0x8c,0x67,0x1e,0xc5,0x7f,0x4f,0xeb,0x03,0x23,0x81,0xc0,0x33, + 0x79,0xa9,0xca,0xba,0x76,0x6c,0x5a,0xdd,0xad,0x56,0x77,0xab,0xd5,0xdd,0xe2,0x8f,0x76,0x84,0x52,0x8a, + 0x6b,0x3b,0x3a,0xe2,0xb4,0xac,0x71,0x77,0x2c,0x5f,0x9d,0x86,0xfc,0x46,0x8a,0x53,0x44,0x8a,0x0c,0xd7, + 0x84,0xf6,0x19,0x3d,0xe7,0x2a,0xfc,0x58,0xd6,0x09,0xae,0x1d,0x80,0x1c,0xd2,0xb2,0xa0,0x0c,0x8c,0xa3, + 0xd0,0x77,0x77,0x9f,0xfa,0x63,0x99,0xbc,0x75,0x71,0x99,0x97,0x75,0x74,0x1f,0x7a,0x61,0xfc,0x18,0x0a, + 0x94,0x14,0x9d,0x49,0xfe,0x16,0xfd,0xb3,0x3c,0x96,0xb4,0xb4,0x1f,0xfe,0x8a,0xf3,0x17,0x4c,0x49,0x8c, + 0xac,0x7f,0xe0,0x16,0x3f,0xd8,0xd7,0x67,0xfb,0xcf,0x35,0x41,0xb9,0xdd,0xa0,0xa2,0x71,0x1a,0x98,0x3c, + 0x55,0x66,0xd8,0xb8,0x21,0x3e,0x8b,0xe7,0x0b,0x26,0xa7,0x8c,0x46,0x81,0xe7,0x1d,0x72,0x4c,0x41,0x7c, + 0xa7,0xa9,0x50,0xcc,0x64,0x73,0xbd,0x0d,0x20,0xe5,0xa4,0xc0,0x4e,0x26,0x90,0x80,0xac,0x3f,0xe6,0x65, + 0xfc,0xf3,0xdf,0x6d,0x49,0xd9,0xfa,0xb8,0xf0,0x39,0x4e,0x69,0xe4,0x06,0x35,0x3e,0x5b,0x4d,0x99,0x93, + 0xc4,0xba,0xdf,0x7a,0xec,0x73,0x38,0xa3,0xfa,0x44,0x0a,0x31,0x7e,0x7d,0xaa,0x39,0x27,0xef,0x50,0xa1, + 0x24,0x61,0xb3,0x6c,0x18,0xdd,0xc6,0xdd,0xc1,0x97,0xc2,0xdb,0x8a,0x72,0xd4,0x50,0x27,0xce,0x48,0x9e, + 0x74,0x92,0x12,0xd6,0x4b,0xcb,0x73,0xe4,0xf5,0xee,0xb1,0x85,0x5f,0x85,0x2d,0xbf,0x48,0x51,0xb5,0xf4, + 0x3b,0x7d,0xab,0xf0,0xb3,0x80,0xfc,0x50,0x41,0x35,0x6e,0x30,0xd5,0x20,0x4d,0x7b,0x3c,0x13,0xfa,0xa3, + 0x3b,0xa2,0xf8,0xe7,0xa9,0x2e,0xdb,0x22,0x71,0xa4,0x9a,0xbd,0x30,0x3d,0x88,0x45,0x45,0xee,0x46,0x59, + 0xcf,0x08,0x77,0x6a,0x94,0x90,0xb6,0x89,0xdc,0x2d,0x0c,0x1f,0x24,0x59,0x9a,0xa6,0x87,0xb8,0xad,0x1b, + 0xf8,0x5d,0x95,0xa4,0x00,0x1d,0x1e,0x12,0xd2,0x54,0x39,0x7a,0x03,0xbb,0x73,0xfd,0xf1,0x85,0x69,0xfa, + 0x67,0xec,0x35,0x03,0x3c,0x82,0x01,0xa4,0x9a,0x03,0xf7,0x89,0x8d,0x4e,0xcd,0xc1,0x49,0x54,0x73,0x48, + 0xbc,0x41,0x93,0x9e,0xc5,0x6c,0x70,0xa0,0xf8,0x95,0x3a,0x28,0x27,0xa7,0x22,0x8a,0x31,0x17,0x86,0x43, + 0x12,0x1c,0x97,0x35,0xa2,0xa4,0x2c,0xa2,0xa2,0x2c,0xb0,0x00,0xd2,0x1a,0xbc,0x03,0x7c,0xf5,0x1c,0xb5, + 0x55,0x85,0xeb,0x18,0x35,0xf8,0x70,0xc9,0x08,0xc5,0x7c,0x56,0x0c,0x98,0x97,0x1a,0x55,0x83,0xc2,0xa3, + 0xb4,0x8c,0xdb,0xc6,0x1e,0x9e,0xb2,0xf2,0x05,0x9c,0x5d,0x1b,0xd2,0x46,0xe6,0x76,0x91,0x58,0x86,0x81, + 0x19,0x85,0x30,0xdb,0x9c,0x40,0xc2,0x67,0xf8,0xd2,0xa8,0x73,0x82,0x61,0x80,0x53,0x18,0x6c,0x2e,0xb7, + 0x96,0x34,0xaf,0x0e,0x54,0xec,0x5b,0xb6,0x94,0xa9,0x7e,0xf4,0xbe,0xef,0x60,0x62,0x74,0xcc,0x71,0xf2, + 0xc3,0x9e,0x01,0xe6,0x0b,0x34,0x0f,0x8a,0xc5,0x98,0xc7,0xa4,0xdc,0xe3,0x60,0x27,0x5d,0x2c,0xc1,0x29, + 0x6a,0x73,0x7a,0x28,0x99,0x5f,0xd0,0xb7,0xc8,0xdd,0xcd,0x45,0xd2,0x2d,0xa5,0xc0,0x55,0x9b,0xcd,0xd0, + 0x17,0xb0,0xd7,0x56,0xb3,0x68,0xd1,0x35,0x2e,0xd3,0x65,0x2f,0x59,0x79,0x8d,0xc7,0x4c,0x3d,0x8b,0x96, + 0x9f,0x72,0x59,0xdd,0xf7,0x0a,0x64,0xd0,0xaa,0xfc,0x72,0xa4,0x07,0xd8,0x66,0xe8,0x5c,0x03,0x2b,0x18, + 0x62,0x79,0x2b,0x08,0x52,0xf4,0x09,0xc6,0x5c,0x72,0xbe,0x7f,0x2b,0x54,0xc3,0x3e,0x3f,0xdc,0x94,0x5c, + 0x77,0x8a,0xe9,0xa0,0xea,0x19,0x66,0xc2,0x35,0xba,0x9b,0xcb,0x5f,0x74,0x94,0x9b,0xfc,0x8c,0xca,0x5a, + 0x72,0x99,0x9b,0xdc,0xcc,0x9a,0x5d,0x74,0x1e,0x23,0xbf,0x75,0x3b,0xac,0x45,0x12,0xf1,0xb4,0x60,0x9f, + 0xa5,0xed,0xbb,0x8c,0xb6,0x62,0xb3,0x85,0xcd,0x7d,0x8b,0xd7,0x4d,0xfb,0xbc,0x63,0xeb,0x7f,0x60,0x0e, + 0xa3,0xd1,0x6e,0x07,0x86,0x0f,0xcc,0x60,0xb6,0xe3,0x3b,0xc2,0xc6,0x8d,0x39,0x3a,0xcd,0xcc,0x32,0xbd, + 0x5b,0xd9,0x83,0x71,0x8e,0xd1,0xd4,0x54,0x02,0xb6,0xac,0xc0,0xd9,0xb8,0xbe,0xfa,0xd9,0xf0,0x44,0x72, + 0x3e,0xfe,0x01,0x5f,0x7d,0x5f,0x30,0xe1,0x5c,0xcd,0x0e,0x2a,0x86,0x4c,0x4e,0xa9,0x12,0x2d,0xd3,0xdc, + 0xd0,0xc4,0x4d,0x87,0x5b,0xe0,0x65,0xd0,0xda,0x2d,0xc7,0x5a,0xe0,0x64,0x52,0xf0,0x4d,0x07,0x52,0x78, + 0xfd,0x3e,0x63,0x98,0x83,0x07,0x67,0x7f,0x2b,0x74,0x4c,0x91,0x16,0x6d,0x74,0x23,0x6c,0x98,0xf9,0xdc, + 0xb0,0xc8,0x07,0x42,0xc6,0x4d,0xfe,0x06,0x33,0xbd,0x3f,0x5c,0xdc,0xe4,0x6e,0xb2,0xdc,0x07,0x42,0x85, + 0x91,0x7f,0xa7,0x6c,0xa5,0xb8,0x4c,0xd4,0x43,0x1c,0x32,0xcb,0x6d,0xba,0x4b,0x43,0x63,0x6d,0x31,0x16, + 0x0b,0x4f,0xe1,0x27,0x59,0x3c,0x41,0x8a,0xef,0xfa,0x6a,0xca,0xcf,0x9f,0x2c,0x5e,0x3c,0x99,0xf2,0xf6, + 0xaa,0x5e,0x9b,0x6e,0x5e,0xb7,0xb1,0x3c,0x88,0xc9,0x9c,0xe6,0xe5,0xc5,0x79,0x8b,0x32,0x92,0x24,0xb8, + 0x60,0x5c,0xbe,0x09,0xc9,0x35,0x31,0xbd,0x6b,0x91,0x23,0xaa,0x1b,0x43,0x41,0xa7,0xc9,0x04,0x6c,0xfa, + 0x6c,0x88,0x9b,0x40,0x2d,0xb9,0xd1,0xb2,0xd2,0x8b,0x2d,0x29,0xa4,0x5c,0x31,0x17,0xcf,0xeb,0x15,0xa5, + 0xe3,0x33,0x22,0xb9,0x96,0x2a,0x17,0xed,0xf9,0x88,0x6b,0x0d,0x54,0xa1,0xa6,0xb9,0xc0,0x04,0x7a,0x4a, + 0x0d,0xe6,0x89,0x33,0x0d,0x44,0x71,0x3e,0x79,0x7e,0xd5,0x8b,0xc5,0xb6,0x06,0x84,0x06,0xe7,0x38,0xa6, + 0x36,0x1b,0x84,0x1d,0x89,0x3a,0x04,0xc5,0x12,0x82,0x0d,0xca,0x35,0x0d,0xb5,0xd4,0x3b,0xb6,0xb5,0xbe, + 0x46,0x59,0x20,0x9b,0xec,0xce,0x9b,0x03,0x19,0x4a,0xca,0x8b,0xe4,0x3d,0x6b,0x22,0x1c,0xcc,0xe5,0x9f, + 0x1b,0x72,0xc5,0x73,0xb5,0x93,0x84,0x66,0xd1,0xc6,0xf3,0x3e,0xcd,0x15,0x37,0xf7,0x62,0xa9,0xbe,0xf9, + 0xc0,0x55,0x89,0x06,0xcf,0x17,0xaa,0x9c,0x0f,0x30,0x85,0x9a,0xa0,0xaf,0xa6,0xda,0x8c,0x29,0x57,0x42, + 0x85,0x8a,0xe5,0xc3,0xa0,0x68,0xf1,0xd8,0xcd,0x52,0x73,0xa5,0x1a,0x13,0x74,0xaa,0x97,0x03,0xd3,0x5f, + 0x1e,0x12,0x44,0x51,0x44,0xce,0xe8,0x84,0xbf,0x34,0x2f,0xa7,0x5f,0x5f,0xcf,0xf9,0xa1,0xa5,0xe9,0x93, + 0xfd,0x15,0x9e,0x2c,0x78,0x2a,0x9a,0xe7,0xbb,0x8c,0xd2,0x2a,0xfa,0xf2,0xe5,0x72,0xb9,0xb8,0x97,0xc0, + 0x2d,0xeb,0xd3,0x17,0xdf,0xf3,0x3c,0x86,0x7f,0x67,0x09,0x15,0x3f,0xdf,0x6d,0xb6,0x77,0xd6,0x0b,0xc1, + 0x97,0xbf,0x94,0xaf,0xcf,0x77,0x9e,0xe5,0x59,0xfe,0xde,0x62,0x30,0xae,0xe1,0xe7,0x3b,0x7f,0x7f,0xf7, + 0xed,0x6b,0x85,0x68,0x66,0xa5,0x24,0xcf,0x9f,0xef,0xee,0x93,0x0d,0xfb,0xdc,0x59,0xc9,0xf3,0xdd,0xdf, + 0xf7,0x6e,0xf0,0xf8,0xe8,0x3f,0x5a,0x81,0x1b,0xfa,0xbb,0x7c,0xe7,0x7a,0x4f,0x9b,0xdd,0xd6,0x0a,0xdd, + 0x7d,0xb0,0xf3,0x83,0xbf,0x6d,0xf6,0xee,0x6e,0xeb,0x05,0xa1,0x18,0xbe,0xfb,0xf2,0xed,0x2b,0x9b,0xf9, + 0xdb,0xc3,0x67,0x4b,0x54,0xed,0x16,0x6f,0x94,0x58,0x45,0xe9,0xd4,0x18,0xbc,0x8d,0x0e,0x76,0x96,0x0d, + 0x14,0xb6,0x2f,0x7a,0x55,0x69,0xea,0xd9,0xc2,0x17,0xfe,0xff,0x55,0xc4,0xfe,0xb8,0x4d,0x62,0xf4,0xbb, + 0x14,0xd1,0x5f,0xf7,0xdb,0x99,0x14,0x43,0xcf,0x23,0x14,0x9d,0xa2,0x1c,0x1d,0x71,0x6e,0xe7,0xf8,0x84, + 0x8b,0xa4,0xd3,0xe3,0x90,0xd6,0xe5,0x32,0x75,0x59,0xf4,0x76,0x92,0xe0,0x97,0x12,0x9c,0x27,0x70,0x56, + 0x0c,0xbe,0x26,0x76,0xd0,0xd8,0xa5,0xd2,0x22,0x50,0x9c,0xe1,0xf8,0x27,0xec,0x4b,0xbd,0x96,0x87,0x4d, + 0x5c,0xfe,0xb8,0xca,0x22,0x1a,0x3f,0xbd,0xcb,0x05,0x75,0xc4,0xd3,0x64,0x50,0xed,0x0a,0x49,0xf1,0xb6, + 0x9e,0xde,0x35,0x13,0xc2,0xb9,0x31,0xa0,0x20,0xa0,0xa8,0xbb,0xeb,0x39,0x80,0x5a,0x5a,0x02,0xea,0xab, + 0x94,0x74,0xb3,0xf1,0xf5,0x56,0x90,0x78,0x2c,0x1b,0xc2,0x3b,0x3e,0x35,0xce,0x11,0x25,0x2f,0x58,0x8d, + 0x0c,0x6e,0x5d,0x5e,0xae,0x12,0xa5,0x39,0x7e,0x3d,0xb0,0x3f,0x4e,0x42,0x6a,0xf0,0x29,0x46,0x04,0xfb, + 0xad,0x3d,0x17,0x23,0xcf,0x29,0x31,0xfb,0xef,0x80,0x7f,0x4a,0x84,0x6e,0xd4,0x95,0x61,0xf4,0x9b,0x2b, + 0xd8,0x99,0xb0,0xd8,0x59,0xd5,0xf1,0xc9,0xd9,0xaf,0x48,0xb4,0x9c,0x86,0x41,0x38,0x1f,0x3a,0xde,0xcd, + 0x72,0xe0,0x28,0x39,0x37,0x5c,0x52,0xa7,0x01,0xbf,0xa0,0x23,0x8e,0x30,0xe5,0x1c,0x0d,0x9c,0x63,0x44, + 0x12,0xdb,0x4a,0x43,0x12,0xa0,0x11,0xa5,0xa1,0x35,0xa6,0x71,0xa6,0xe1,0x48,0x98,0x32,0x19,0x82,0x6d, + 0xc7,0xac,0xa9,0x62,0x0d,0x40,0x8e,0x66,0x0d,0x6b,0x9d,0x38,0x26,0x88,0x14,0x6d,0xac,0xcd,0x60,0x3b, + 0xbd,0x39,0x7a,0xb5,0x24,0xa8,0x77,0xaa,0xe9,0x81,0xa1,0xfc,0x72,0xca,0x34,0x05,0x5f,0x75,0x36,0x5e, + 0xa7,0x72,0xd9,0xac,0x63,0xfb,0x3a,0xb6,0x7f,0x03,0x7b,0xa7,0x63,0xef,0x56,0xb1,0x83,0xc0,0x5e,0x1b, + 0xdd,0x6a,0xbc,0x82,0xc0,0x0d,0xe0,0xdf,0x2a,0xc3,0x9d,0x2e,0xec,0x6e,0x5d,0xd8,0x30,0x5c,0x9b,0x3e, + 0x7c,0xd4,0x78,0x85,0xa1,0x1b,0xc2,0xbf,0x55,0x86,0x8f,0xfa,0xea,0x1f,0xd7,0x57,0xff,0xa4,0x0b,0xfb, + 0xb4,0x2e,0xec,0x5e,0xc7,0xde,0x2f,0x60,0x83,0x71,0xb9,0xc3,0xb0,0x58,0x0b,0x96,0xd5,0x3c,0xc4,0x4c, + 0xe1,0x2b,0x14,0xbe,0x46,0xb1,0x64,0x6b,0x30,0xf2,0x48,0xb1,0xd3,0x28,0x16,0x56,0xbc,0x60,0x68,0xb0, + 0xf0,0x95,0xd1,0x60,0x5e,0x85,0xdb,0xaa,0xc5,0xb7,0x8a,0xd8,0x5b,0x4d,0xec,0xed,0x82,0xd8,0x3b,0x85, + 0x62,0xa7,0x51,0x2c,0xf9,0x49,0xa8,0x50,0x84,0x1a,0x45,0xb8,0x44,0x61,0x76,0x29,0xf0,0xa5,0x91,0x91, + 0x74,0x24,0x95,0xdb,0x9a,0x6f,0x3d,0x2a,0xda,0x7e,0xd4,0xb4,0xbd,0xe4,0x5f,0x4f,0x8a,0xd8,0x4f,0x9a, + 0xd8,0x4b,0x3e,0xb6,0x57,0x28,0xf6,0x1a,0xc5,0xd4,0xcf,0x86,0x6f,0x25,0xc0,0x42,0x08,0x4b,0xa7,0xf1, + 0x75,0x86,0xae,0xc5,0xda,0x91,0x62,0x08,0xb5,0x33,0x7c,0x2d,0xec,0x72,0x7c,0x19,0x75,0xff,0x74,0xc6, + 0x09,0x41,0xd6,0x2f,0xec,0x70,0x1f,0xec,0x0d,0x87,0xd6,0xe7,0x8e,0x1f,0x4c,0x93,0xb3,0x08,0x40,0x5a, + 0xc4,0x74,0x94,0x3c,0x37,0x46,0x79,0xfc,0x0b,0x8b,0x95,0xd6,0xaf,0xfc,0xd8,0xfb,0xac,0x07,0x61,0xfd, + 0xb8,0x1f,0x72,0xe8,0xf1,0xa4,0x64,0x9c,0xfa,0x1e,0x29,0x75,0x9a,0xf1,0xc2,0xa4,0x97,0xd9,0xa8,0x8d, + 0xf4,0xba,0x4e,0x56,0xe5,0x49,0x6e,0x97,0xb9,0xdd,0xe6,0x5d,0x4e,0x1a,0x48,0x3f,0xe8,0x5b,0x2e,0x6b, + 0x03,0x39,0x3d,0x2b,0x73,0xae,0xe9,0x84,0x8c,0xfa,0x40,0x64,0x01,0x1d,0xfc,0x2d,0xf9,0xdf,0x96,0xf1, + 0xb0,0x38,0x27,0x06,0x29,0x39,0xa4,0xe5,0x90,0x96,0x43,0x5a,0x06,0xe9,0xc6,0x04,0x47,0x58,0x98,0x67, + 0x04,0xa2,0xe0,0x62,0xb1,0x42,0xfc,0xe0,0xf9,0x61,0xa9,0x89,0x03,0x0b,0x82,0x44,0x30,0xb7,0x48,0xd1, + 0x90,0x04,0xf7,0xba,0xac,0x31,0xa9,0xa1,0x7c,0x1d,0xc6,0x26,0x37,0x6c,0x49,0x62,0x27,0xd4,0xce,0xc9, + 0x44,0x97,0x1b,0x35,0x73,0x12,0xb9,0xd0,0xac,0x54,0x9a,0x50,0x4c,0xef,0xf9,0x60,0xd9,0x76,0x4a,0x4e, + 0x6d,0x8d,0x6d,0x76,0x0d,0xc5,0x74,0x58,0xd9,0x50,0x29,0xda,0x94,0xd5,0xd0,0x4c,0x9f,0x3a,0x03,0x5f, + 0x30,0xe0,0xa3,0x43,0xae,0x36,0x5c,0x90,0x69,0x09,0x0a,0x4d,0x6c,0x9a,0x75,0xd7,0xeb,0x55,0x91,0xea, + 0xa9,0x25,0x18,0xde,0xb0,0xcf,0x58,0xb5,0x8a,0x52,0x5a,0xd6,0xad,0xca,0x1d,0x1a,0x33,0x15,0x70,0x8b, + 0x52,0x52,0x0f,0x17,0x92,0xc0,0x59,0x7d,0xec,0x26,0x56,0x05,0xe4,0xf1,0xf2,0x92,0xe1,0x2a,0x57,0x99, + 0x7a,0x12,0xef,0xf5,0x47,0x1b,0xf2,0x8b,0x12,0x92,0xa7,0x49,0x92,0xda,0x57,0x9d,0xea,0x38,0x7d,0xb6, + 0xb1,0x33,0xdf,0xce,0x02,0x3b,0xdb,0xda,0xd9,0xce,0xce,0xc2,0xee,0xc6,0xe5,0xad,0x23,0xae,0x0b,0x27, + 0xda,0x53,0x40,0x03,0x5f,0xc5,0x9d,0xb6,0x22,0x5f,0xd6,0x6f,0x7c,0xfd,0x3e,0xf3,0x15,0x9c,0xc0,0x88, + 0xb3,0xeb,0xb3,0x40,0x41,0xf2,0xe5,0x05,0xa6,0x86,0x14,0xf4,0xd9,0x56,0xc3,0xf1,0x0d,0x97,0x9c,0x0e, + 0x14,0x07,0x06,0x52,0xe0,0xbf,0xeb,0xd4,0xc4,0xde,0x74,0x41,0x0a,0xb4,0xbb,0x39,0x2d,0x90,0x86,0xdd, + 0xac,0x26,0x98,0x90,0x7a,0x13,0xa2,0x6d,0x4f,0xce,0xa7,0x4e,0x4f,0xca,0x20,0x0d,0x67,0xfd,0x9d,0x94, + 0xbc,0x8a,0x6b,0xfe,0x4e,0x34,0xf6,0x40,0xb5,0xd9,0x81,0x25,0xe8,0x10,0xd5,0xa2,0x07,0xeb,0xe1,0xda, + 0x15,0xe1,0x3e,0xda,0xbb,0x69,0x5e,0x22,0xca,0x5d,0xa3,0xe3,0x3f,0x85,0x43,0x49,0x30,0x77,0x03,0x09, + 0xe7,0xbf,0xfb,0xef,0x2f,0x4e,0x0c,0x8f,0x3f,0xc7,0x4a,0x82,0x07,0x1f,0xfe,0x32,0x80,0xe1,0xe2,0x0a, + 0x0c,0xaf,0x5c,0x52,0xaa,0xef,0x07,0xfc,0x0b,0xd7,0x09,0x2a,0xd6,0xdf,0x02,0xf0,0xaa,0xb1,0xac,0x94, + 0x2e,0xc2,0xe3,0x86,0x0c,0xcd,0x4d,0x5c,0x63,0x5c,0x58,0xa8,0x48,0xd4,0x28,0xfd,0x18,0x3e,0x55,0xaf, + 0x9f,0x3b,0x2e,0xd1,0x40,0xcc,0x9c,0x89,0x53,0x8a,0x32,0x69,0xdc,0xfe,0xa3,0x70,0xfd,0xfd,0x58,0xc5, + 0xcc,0x17,0xe2,0x7b,0xec,0xa3,0xfa,0xa6,0x56,0xcf,0x6c,0x26,0x9d,0x11,0x71,0xf2,0x57,0xaf,0xd6,0x7d, + 0x1a,0xa7,0x61,0x7c,0xbd,0xb5,0x17,0x7b,0x7b,0xc3,0x06,0x40,0x35,0xef,0x5a,0x87,0x22,0x96,0x02,0xd7, + 0x0e,0x1b,0x35,0x5f,0x17,0x1b,0x97,0x41,0xfa,0xde,0xcd,0x30,0x82,0x59,0xbb,0x59,0x99,0x35,0x8c,0x58, + 0xcc,0x8b,0x46,0xab,0xeb,0x3c,0x78,0xf4,0x1c,0x10,0xdd,0x0b,0x49,0x21,0x18,0x23,0x0a,0x85,0xfc,0x95, + 0x1d,0x3a,0xc2,0x7a,0x5a,0x8a,0x0f,0xc3,0x3b,0x13,0x62,0xcf,0x1a,0x68,0x2c,0x97,0x14,0x09,0x89,0x11, + 0x2d,0x6b,0x73,0x91,0x29,0xdd,0x98,0xa9,0x71,0x70,0x72,0xa1,0x52,0xb5,0x01,0xb5,0xbb,0x1e,0x27,0x52, + 0x44,0x59,0x7e,0xae,0xce,0xf7,0x9d,0x75,0x18,0x1c,0x01,0x7e,0x06,0x5d,0x16,0x10,0xfe,0xd9,0x6d,0xf5, + 0xdc,0xc6,0xc1,0x3e,0xfc,0x08,0x2f,0x58,0x87,0xca,0x6e,0x6a,0xe0,0x53,0x8d,0xdf,0xfe,0x0b,0xd1,0xc0, + 0x9b,0x4c,0xb2,0xa5,0xfb,0xe0,0x23,0xcc,0x70,0x5d,0x97,0xb5,0x89,0x4f,0xec,0x4d,0x62,0xea,0x26,0xac, + 0x06,0xbb,0xb3,0x70,0xeb,0xcb,0x1d,0xd1,0x90,0x1c,0x72,0x88,0xe9,0x5e,0x1c,0xf1,0x02,0x89,0xc7,0x56, + 0x39,0x6f,0x2f,0xde,0xfb,0x4f,0xec,0xa3,0x92,0x6f,0xab,0xeb,0x05,0x82,0xdc,0xc9,0x53,0x55,0xc1,0x7c, + 0x0d,0x78,0x95,0xca,0x58,0xe9,0x31,0x03,0xf9,0xfc,0xc5,0x91,0xc9,0x76,0xec,0x5d,0x88,0x69,0x8d,0x1a, + 0xf7,0x14,0x84,0xe0,0x8a,0x60,0xc9,0xec,0xc1,0xa0,0x1e,0xd9,0xf7,0x1c,0xa3,0xc2,0x1f,0xc8,0xb9,0x2a, + 0x6b,0x8a,0xa6,0xd7,0x1f,0x42,0x64,0x95,0xdb,0x47,0xee,0xc2,0x65,0xb3,0x66,0xf6,0xea,0x44,0x51,0xb2, + 0x05,0xe6,0xe5,0x05,0x27,0x87,0x75,0xfd,0x86,0xec,0x33,0xe9,0xde,0x68,0x5b,0x43,0xe8,0x23,0x23,0x05, + 0x5d,0x6c,0x3f,0x31,0x9d,0x2a,0xb3,0x18,0x33,0x21,0x17,0x82,0x03,0x6f,0x9e,0x4c,0x34,0x39,0x37,0x46, + 0xef,0x36,0xed,0xb1,0xac,0x58,0x60,0x68,0xf4,0xda,0x98,0xf3,0x11,0xda,0x69,0x3a,0x13,0x1d,0xf8,0x01, + 0xd8,0xbe,0x9b,0x59,0xb3,0xa1,0xb8,0xd2,0x58,0x05,0x4a,0x7e,0x30,0xb6,0x19,0xe7,0x6d,0x24,0x41,0x6a, + 0x49,0xce,0xd3,0xee,0x94,0x24,0xdd,0x0e,0x53,0x58,0xee,0x0b,0xca,0x5b,0x7c,0x23,0xae,0x89,0x7c,0x45, + 0xb5,0xbe,0xe0,0xde,0x41,0x92,0x73,0xfc,0x49,0x60,0x51,0x93,0xa6,0xbb,0xd2,0x2e,0x91,0x21,0x4d,0xe4, + 0x6e,0x93,0xa6,0xba,0x2f,0x80,0xca,0x2d,0x88,0x74,0x42,0xe5,0x8d,0x1e,0x31,0x53,0x14,0x0d,0x53,0x89, + 0x67,0x87,0x66,0xed,0xf9,0xb8,0x38,0xbf,0x59,0x1e,0x5f,0x09,0xb1,0xbe,0x39,0xc4,0x6a,0x37,0x32,0xe2, + 0xf8,0xd2,0xdf,0x1e,0x53,0x04,0x3a,0x97,0xbf,0x01,0x69,0x71,0xc2,0x52,0x98,0xff,0xe5,0x24,0x17,0x54, + 0x17,0xcc,0xf5,0x54,0xd4,0xc0,0xf3,0x53,0x08,0x2c,0xc6,0xe3,0x74,0xbc,0x69,0xd8,0x19,0x33,0xcb,0xfe, + 0x3f,0xde,0x3d,0x2e,0x64,0x01,0x29,0x00,0x00}; + +#endif diff --git a/src/assets/html.h b/src/assets/html.h index 092dd56..b0affcb 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -1,112 +1,113 @@ -#ifndef __assets_html -#define __assets_html - -#include - -const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x59,0x69,0x7b,0xe2,0x38,0x12,0xfe,0x2b,0x8e, - 0x77,0xf6,0x21,0xd9,0x34,0x04,0x08,0x49,0x77,0xb2,0x21,0x3b,0xdc,0x37,0xe1,0x0e,0xf0,0x4d,0xb6,0x85, - 0xad,0x20,0x1f,0xb1,0x64,0x08,0xdd,0x33,0xff,0x7d,0xe4,0x5b,0x80,0x49,0xd2,0xdb,0xcf,0x3c,0xbb,0xf9, - 0x10,0x23,0xd5,0xa1,0xb7,0x4a,0x55,0xaa,0x92,0xfd,0x70,0x56,0x7d,0xaa,0x4c,0x16,0x83,0x9a,0xa0,0x51, - 0x1d,0x3f,0x3e,0x04,0xff,0x21,0x50,0x1e,0x1f,0x74,0x48,0x81,0x20,0x6b,0xc0,0x26,0x90,0x16,0xc5,0xe9, - 0xa4,0x9e,0xfe,0x26,0x3e,0x3e,0x50,0x44,0x31,0x7c,0x7c,0xb8,0x0a,0x9e,0x1e,0x93,0x01,0x74,0x58,0x14, - 0xa9,0x06,0x75,0x98,0x96,0x4d,0x6c,0xda,0xa2,0x20,0x9b,0x06,0x85,0x06,0x93,0xfb,0x47,0xd6,0xfb,0x13, - 0xf7,0x58,0x37,0x08,0x6e,0x2d,0xd3,0xa6,0x1c,0xdf,0x16,0x29,0x54,0x2b,0x2a,0x70,0x83,0x64,0x98,0xf6, - 0x06,0x5f,0x90,0x81,0x28,0x02,0x38,0x4d,0x64,0x80,0x61,0x31,0xc7,0x54,0x60,0x64,0xac,0x05,0x1b,0xe2, - 0xa2,0x48,0xe8,0x0e,0x43,0xa2,0x41,0xc8,0x74,0x68,0x36,0x5c,0x15,0x45,0xc9,0x31,0x14,0x0c,0x33,0x32, - 0x21,0x8c,0x91,0xc8,0x36,0xb2,0xa8,0x40,0x6c,0x39,0x22,0xbc,0xb8,0xf3,0x57,0x3e,0x81,0xfd,0xf0,0x6d, - 0x94,0x4c,0x65,0xf7,0xf8,0xa0,0xa0,0x8d,0x80,0x94,0xa2,0x08,0x2c,0x4b,0xf4,0x47,0x9b,0xb4,0x8c,0x4d, - 0xb0,0x8e,0x49,0x2e,0x4e,0x80,0x0c,0x68,0x07,0x0c,0x32,0x06,0x84,0x14,0x45,0x57,0x8b,0x37,0x87,0x74, - 0xd5,0x5f,0x4d,0x01,0x14,0xdc,0x23,0x1d,0xa8,0xf0,0xca,0x32,0xd4,0x7f,0x4b,0x80,0xc0,0xdb,0xc2,0x17, - 0x34,0x2b,0x3f,0x8d,0xb6,0xd9,0x4e,0x43,0x35,0x4b,0xec,0xaf,0x3f,0x9e,0x6a,0xb5,0xa9,0xca,0x7e,0x55, - 0xdd,0x61,0x69,0x5b,0x29,0x2d,0xd8,0xa3,0x3c,0x2f,0x6d,0xf4,0xa6,0x3b,0xd1,0x98,0x8f,0xea,0xcf,0xcd, - 0xd1,0x44,0xca,0x2f,0xb3,0x4a,0xbe,0xbe,0x5b,0x0e,0xcb,0xe5,0x65,0xe3,0x0e,0x2d,0xc7,0xe5,0xb6,0xf4, - 0x5c,0x37,0x96,0xb3,0x36,0x5e,0x3c,0x8f,0x6e,0x64,0x19,0xe3,0x81,0x2b,0x30,0x2f,0xb7,0x47,0xb5,0xfa, - 0x14,0xf6,0x6d,0xf2,0xac,0xd4,0xfa,0xea,0x4b,0x69,0xd8,0x95,0x17,0x65,0xb9,0x34,0x90,0x4b,0x15,0x65, - 0xd8,0x2f,0x94,0xfa,0xf9,0x5e,0xa5,0xa0,0x8e,0xc8,0xa2,0x7d,0x57,0xeb,0x2b,0xa5,0xc1,0xa2,0x54,0x05, - 0xa5,0x2a,0xb4,0x94,0xa9,0xd6,0xcb,0xbd,0xd6,0x5f,0x1c,0x5b,0xb5,0xee,0xc6,0x72,0xaf,0xa9,0x2a,0x5f, - 0x73,0xd7,0xb3,0xeb,0x15,0x9d,0x5a,0x37,0xb0,0xa9,0xf6,0xea,0x39,0xdb,0x6e,0xd4,0x80,0x73,0x3b,0x6b, - 0x56,0xf3,0xcd,0x9e,0xd4,0xbc,0x79,0x6d,0x3f,0x75,0x9b,0x36,0xb8,0x5c,0xad,0xbf,0x4b,0x64,0x31,0x22, - 0x5a,0xef,0x9b,0xd5,0x9d,0xa8,0xd3,0x96,0x3a,0x56,0x37,0x4e,0xaf,0x67,0x2e,0xb6,0x97,0xa8,0xb7,0x98, - 0xd8,0xb7,0x43,0xad,0xbf,0xe8,0xd9,0x7d,0xd4,0xdf,0x6d,0x5b,0x5d,0xbc,0x9b,0x75,0x14,0x79,0xb7,0x1b, - 0x10,0x5d,0x1e,0x91,0xdd,0xf4,0x26,0xbb,0x56,0x9b,0x74,0x38,0x74,0xf2,0x25,0xa5,0xdf,0xae,0x5b,0xd5, - 0x75,0xa9,0x53,0x68,0x5d,0x75,0x5b,0xcf,0x3d,0x29,0x5f,0x22,0xad,0xb2,0xfc,0x9a,0x45,0xa3,0x06,0x1c, - 0x36,0x06,0x93,0xe5,0x6a,0x76,0x3b,0xac,0x65,0x2f,0xd5,0x6a,0xa3,0x9e,0xb7,0x4d,0xd2,0xa8,0xa9,0xbd, - 0xe1,0x5b,0xab,0xa4,0x19,0xcb,0x12,0x1a,0xf4,0xbf,0x15,0x1c,0x6b,0xb4,0xca,0x5e,0x3d,0x61,0x8b,0x74, - 0x2b,0x65,0xeb,0x7a,0xf7,0x9a,0x95,0x35,0x95,0x56,0xa6,0xd3,0xa5,0x3d,0xda,0xde,0x0e,0xab,0x4f,0xd7, - 0xb5,0xe7,0xe6,0xf8,0xb5,0x7e,0x47,0x81,0xbd,0x04,0xe3,0x4e,0x7b,0x0e,0xdb,0x55,0x45,0x1a,0x62,0x52, - 0xcb,0x76,0xaa,0xb7,0xed,0xfe,0x55,0xc7,0x1c,0x91,0x86,0xf6,0x36,0xef,0x54,0x70,0xa5,0xd3,0x6c,0xb7, - 0x56,0xeb,0x89,0xb6,0xed,0x3d,0x6b,0xa5,0x5b,0xa5,0x3c,0x36,0xf1,0x08,0xbd,0xac,0xdb,0x4f,0x4a,0x6e, - 0x39,0xdd,0xdc,0xed,0x86,0x77,0x4f,0xd6,0xab,0xd4,0xb4,0x10,0x98,0xce,0x40,0x4d,0x5a,0xd6,0xbe,0xd2, - 0x56,0xeb,0xc5,0x2c,0x77,0xe6,0x3b,0x62,0x92,0x9c,0x5c,0x98,0x7d,0x83,0x52,0xb7,0xa6,0x48,0x9b,0xbc, - 0x24,0xf7,0x48,0xed,0xab,0xfa,0xe2,0x94,0x95,0xcd,0x7c,0x34,0x6e,0x17,0xea,0x97,0x57,0xdb,0xd7,0xd6, - 0x7c,0x6e,0xb7,0x1a,0x5b,0x7d,0x7e,0xfd,0x7d,0x0b,0xe4,0x6e,0x55,0x83,0xfd,0xa7,0xbb,0xdc,0xd3,0x4b, - 0x77,0xd8,0x51,0x72,0x85,0x59,0xaf,0x5a,0x31,0x16,0x6a,0xe5,0x6d,0xf6,0xd2,0xba,0xee,0x4f,0x60,0x4e, - 0x1f,0x9b,0x83,0x6a,0xe1,0xee,0xad,0x30,0xb6,0x59,0x70,0xdc,0xbd,0x0e,0x8c,0x02,0x34,0x37,0x95,0x9e, - 0x17,0x3d,0x35,0x5c,0x9f,0xac,0xc7,0xce,0x50,0xaf,0x54,0x58,0x24,0x6a,0xb9,0xc7,0x1f,0x3f,0x84,0xdf, - 0xe8,0x79,0xca,0x4b,0xd1,0xd4,0x85,0xf0,0xe7,0x9f,0x2c,0xdc,0x73,0x8c,0x92,0x77,0x29,0x1b,0x68,0x13, - 0x64,0x1a,0x19,0xb2,0x23,0x14,0xea,0xad,0xaa,0x70,0x56,0x2c,0x0a,0x86,0x83,0xb1,0xf0,0x1f,0x4f,0x2a, - 0x9c,0x67,0x82,0x97,0x42,0xea,0x5e,0x48,0xb1,0xc7,0x91,0x0c,0x9b,0x4e,0xf9,0x7a,0xf3,0x7b,0xf9,0xb0, - 0x45,0x2b,0x44,0x28,0xa0,0x0e,0xd9,0xcf,0x13,0x96,0x3e,0x06,0x94,0x29,0xd3,0xb1,0x3f,0x8f,0x0c,0x05, - 0xc9,0x80,0xba,0x27,0xc6,0xbd,0x9b,0x39,0x69,0x5f,0xd8,0x57,0x34,0xf6,0x7e,0x67,0x80,0x95,0x81,0x06, - 0x90,0x30,0x54,0x18,0xc2,0x54,0xa0,0x09,0x2a,0x29,0x17,0x84,0x82,0x48,0x3c,0xe1,0xe6,0x37,0xd3,0x1d, - 0x9a,0xcf,0xab,0x90,0x65,0x48,0x88,0x65,0x22,0x83,0x66,0x62,0xaf,0x08,0x8c,0xf1,0xd4,0x3a,0xfb,0xf3, - 0xc8,0x62,0x8b,0xbd,0xa3,0x93,0xc1,0xf0,0x04,0x03,0x67,0xbb,0x20,0x7e,0xc9,0x7a,0x15,0xd2,0x67,0x54, - 0xf7,0x56,0x62,0x42,0xfe,0x82,0xe7,0x17,0xa7,0xed,0x23,0x3e,0xa3,0x6e,0x2a,0xf0,0xc0,0xbe,0x24,0x4d, - 0x13,0xf8,0x46,0xcf,0x39,0xa4,0xfc,0x7f,0xff,0xf0,0x43,0xec,0x3c,0x65,0xe7,0x9f,0x82,0x0c,0x55,0x0c, - 0xc1,0x86,0xe3,0x70,0xf9,0x60,0x1c,0xad,0x14,0x8c,0x5b,0xa1,0x4d,0xfb,0x9e,0xf0,0x75,0x9e,0x45,0x4a, - 0x78,0x37,0x50,0x20,0xb9,0xe1,0x22,0x39,0x94,0x9a,0x46,0x38,0xe9,0x8f,0x98,0x63,0x82,0xf1,0x0f,0x21, - 0xe5,0x4f,0xa5,0x4d,0x87,0xb2,0x3a,0x00,0x59,0x68,0x02,0xe6,0xd3,0x0d,0x9c,0x00,0x89,0xc5,0xb0,0x90, - 0xf2,0x9d,0xc7,0xc2,0x52,0x14,0x7e,0x97,0x31,0x92,0xd7,0xec,0x40,0x8f,0x18,0x62,0x7a,0x64,0x80,0x3f, - 0xce,0xb0,0xd5,0x27,0x5c,0xa2,0xf8,0x8b,0x3c,0x0a,0xbf,0x0c,0x87,0xda,0x48,0x55,0x59,0xde,0x9c,0x06, - 0x14,0x71,0x44,0x90,0xc2,0x99,0xbf,0x0d,0x54,0x1c,0x89,0xa7,0x61,0x71,0x3c,0x11,0xb0,0x78,0xee,0x6f, - 0x83,0xb6,0x42,0xb6,0xbe,0x05,0x36,0x3c,0x0d,0x2c,0xe2,0x88,0x60,0x85,0x33,0x27,0x40,0x1d,0xc5,0x1f, - 0xa7,0x8e,0x0f,0x88,0x07,0xed,0xfa,0x30,0x28,0xf8,0xa3,0xf3,0xda,0x53,0xc1,0x6a,0xbc,0x61,0x39,0x54, - 0xa0,0x3b,0x8b,0x75,0x30,0x36,0x8b,0x63,0x53,0x0c,0xda,0x19,0x80,0xf1,0x98,0x42,0x8b,0x30,0x73,0x37, - 0x00,0x3b,0x6e,0x2f,0x64,0x3b,0x50,0x64,0x8b,0xba,0x19,0x89,0x79,0x06,0xaf,0xcd,0x08,0x46,0x13,0x97, - 0x89,0x35,0x35,0x40,0x82,0x38,0xca,0x32,0x77,0x90,0x46,0x86,0xeb,0x22,0x51,0x58,0x99,0xf6,0x21,0xfb, - 0x3e,0x4e,0x9e,0x16,0xc0,0xf5,0x34,0x70,0xa6,0xff,0x14,0xee,0x15,0xc0,0xe4,0x63,0xe0,0x75,0x8f,0xeb, - 0xf3,0xc8,0x03,0xfe,0x64,0xe8,0x1e,0xf1,0x04,0xf6,0x50,0x37,0xc1,0x88,0xb5,0x59,0x07,0x35,0x85,0x95, - 0x22,0x4b,0x0c,0x37,0x36,0xc4,0xc9,0x5a,0x3f,0x0b,0x44,0x51,0xe8,0x59,0xe5,0x2d,0xdc,0x03,0x54,0xcb, - 0xac,0xb0,0x69,0xda,0xe7,0x21,0xef,0xcc,0x25,0x0a,0x57,0x42,0xfe,0xe6,0x46,0xf8,0x97,0x90,0xcb,0x66, - 0x5d,0x0c,0xff,0x64,0x2d,0x22,0x53,0x90,0xb0,0x3a,0xdf,0x01,0xee,0x7b,0xd4,0x50,0x99,0xc1,0x3a,0x32, - 0x8a,0x62,0x96,0x3d,0xc1,0x5b,0x51,0x64,0x2a,0xc5,0x7d,0xe9,0xc8,0xa7,0x19,0xc3,0xd1,0x25,0xc8,0x39, - 0x67,0xe6,0x63,0x3c,0x3a,0x85,0x13,0xac,0x3c,0x8b,0xb7,0x63,0x93,0xf6,0x3c,0x7c,0xee,0x92,0xbf,0x08, - 0xac,0x90,0xc0,0xb7,0x0b,0xf6,0x10,0xc8,0x67,0xbd,0xe0,0x32,0x66,0x36,0xff,0x5b,0x17,0xc4,0x18,0x0e, - 0xec,0x4f,0xae,0x48,0xfb,0xd9,0xcb,0x9d,0x9e,0x0f,0xcc,0x17,0xba,0xf0,0x3b,0x71,0x24,0x1d,0xd1,0x8c, - 0x65,0xc3,0x8d,0x77,0xa5,0x60,0xed,0x3c,0xde,0x4d,0x02,0x36,0x97,0x0b,0x41,0xac,0xb0,0xcb,0x0c,0x9f, - 0xef,0xf1,0x89,0x8b,0x74,0x38,0x39,0xce,0xfa,0xa8,0xb1,0x01,0xb6,0xe1,0x55,0xc3,0x60,0x27,0x8e,0x8b, - 0x6f,0xd4,0x3c,0xfc,0xf1,0x87,0x90,0x40,0xf5,0xa3,0xde,0x3d,0xe9,0xae,0x13,0x8e,0x7b,0xb6,0x78,0x8b, - 0x5d,0x84,0x6c,0x03,0x52,0xbe,0x87,0xf0,0x13,0xcc,0xdb,0x69,0x0c,0x28,0x36,0xb9,0xf2,0xbb,0x27,0xdb, - 0x05,0xb4,0x6b,0x06,0xb5,0x38,0xca,0x22,0x7e,0x87,0x28,0x2b,0xf9,0x7e,0x0e,0x87,0x7a,0xe2,0x1c,0xdf, - 0xd3,0x94,0x89,0xd6,0xd9,0x5b,0xdc,0x94,0x3d,0x2b,0xc4,0xc4,0x64,0x4f,0x86,0x14,0x88,0x7c,0x0a,0x53, - 0xa4,0xfe,0x14,0xa8,0x90,0xe1,0x64,0x9d,0xf1,0x0b,0x46,0xbc,0xf7,0x04,0x02,0x5b,0xd6,0xba,0x91,0xe2, - 0xfb,0xb0,0x45,0x0b,0x49,0x6c,0x33,0x23,0xea,0xbb,0x06,0x8c,0x3d,0xf6,0xc3,0xc2,0x12,0xc7,0xd2,0xbb, - 0x51,0xa5,0x9b,0xae,0x8a,0xc3,0xb8,0xe2,0xa4,0xaf,0xdc,0xd0,0xfd,0x28,0xd4,0xf7,0x2a,0xf2,0x7b,0xc1, - 0x5e,0xe1,0x1b,0xcd,0x24,0x60,0x7c,0x1d,0x3f,0x00,0xc5,0x6f,0x8d,0xac,0x41,0x79,0x2d,0x99,0x6f,0xc1, - 0xb1,0x1f,0x77,0xba,0xdc,0x0e,0x71,0xaa,0x78,0x86,0x4f,0x54,0x05,0x9e,0xfb,0x18,0x17,0x47,0xde,0x8f, - 0x1d,0xfe,0x48,0xd3,0x3e,0x16,0x6e,0xc6,0x0a,0xbc,0xe3,0x4c,0x78,0xc7,0xc2,0x20,0x49,0x93,0xad,0x0b, - 0x89,0x1f,0x5b,0x16,0x71,0x1e,0x03,0xe3,0x3a,0xf4,0x9f,0xb7,0x8a,0x13,0x3e,0xb4,0x8a,0xcf,0x52,0x42, - 0x90,0x92,0x28,0xce,0xe6,0x3f,0x93,0x86,0x9e,0x7c,0xb2,0x0b,0x3c,0x0a,0x97,0x43,0x67,0xef,0xf8,0xc7, - 0xc3,0x62,0x31,0x83,0xb6,0xa6,0x9d,0x88,0x27,0xa4,0x9d,0xc6,0x14,0x49,0x7b,0xb8,0xe2,0x51,0x12,0xb6, - 0x98,0xfa,0x11,0xbe,0xf7,0x22,0x40,0xd1,0x64,0x2b,0x59,0xbf,0x4f,0xf9,0xa4,0xed,0xa7,0x63,0xc3,0x53, - 0x93,0xe0,0x0c,0x77,0xfe,0xe7,0x23,0xc2,0x95,0x3a,0x0a,0x05,0xbe,0x5e,0x3b,0x92,0x69,0xb9,0x9c,0x64, - 0x7f,0x5b,0x50,0x22,0x06,0x64,0x01,0x45,0xb1,0x59,0xe2,0x7c,0x26,0x4a,0xd0,0x09,0x3f,0xa1,0x0f,0xbd, - 0xe4,0x56,0xc6,0x43,0xc7,0xee,0x07,0xb0,0x23,0xb1,0x02,0xa8,0x03,0xb2,0x4e,0x0c,0xe3,0x88,0xfa,0xa9, - 0x60,0x8e,0x75,0x25,0x87,0x34,0x47,0xff,0x45,0xd8,0x2a,0xa0,0x70,0x0b,0x76,0x49,0x98,0x03,0xd2,0x67, - 0x00,0x87,0x5a,0x12,0xd1,0x46,0xc4,0xff,0x06,0xea,0x51,0x2f,0xa1,0x99,0x84,0xba,0x37,0x80,0x24,0xc4, - 0x21,0xed,0x23,0xc8,0xf7,0x16,0x06,0x32,0xd4,0x4c,0xac,0xb8,0x9d,0xdc,0x09,0x25,0x83,0x98,0x27,0x75, - 0xe1,0x9b,0x19,0xad,0x9d,0x68,0x67,0x4c,0xfd,0x30,0xe1,0xb8,0x68,0xf7,0xab,0x32,0x89,0xba,0xd2,0xbd, - 0xe9,0xb4,0x65,0x23,0x1d,0xd8,0xcc,0x77,0x3e,0x7c,0xbf,0x70,0xee,0x77,0x04,0x60,0xe3,0xf5,0x76,0xe1, - 0x2d,0xc8,0x1f,0x07,0xef,0xc3,0xbc,0xc2,0x5a,0xf6,0x54,0x8d,0xbd,0x79,0xe6,0x99,0xfb,0x43,0x4a,0xea, - 0x22,0xee,0x60,0x7f,0xb2,0xb8,0x73,0xb7,0xda,0x13,0xa5,0xdd,0xb1,0xdc,0xd7,0x26,0xf5,0x80,0xcf,0x77, - 0x63,0x28,0x75,0xa2,0xce,0xc7,0x17,0xe3,0x77,0xaa,0xfc,0x0a,0xe1,0x03,0x6d,0x75,0x77,0xe6,0xff,0xd7, - 0xb5,0xb1,0x0b,0x7d,0x97,0x0c,0x6c,0x53,0x75,0x8f,0x2d,0xef,0x15,0xe6,0x2a,0xba,0x64,0x1e,0x10,0xbd, - 0x1b,0xcd,0xbb,0x5b,0x73,0xfc,0xc2,0x0e,0xb3,0xa6,0x6f,0x85,0xde,0x4e,0x5f,0xcb,0x82,0x37,0xa2,0x5c, - 0x06,0x59,0x3b,0xd6,0xf4,0x69,0xc1,0x89,0x2c,0xd9,0xfc,0xab,0xd6,0xe0,0x79,0xf8,0xa6,0x35,0xf4,0xfa, - 0xcc,0x27,0x7b,0x2f,0x5c,0x0f,0x45,0xa2,0x17,0xad,0x47,0xf7,0xa2,0xe0,0x13,0x07,0x66,0x77,0x2f,0x07, - 0xa8,0xcc,0xb5,0x2f,0x60,0x03,0xfc,0x49,0xf1,0x91,0x65,0x0c,0x31,0xb1,0xdb,0x38,0xab,0xe7,0x62,0xcb, - 0xff,0x8e,0x82,0xbe,0x33,0x0f,0x67,0x32,0x19,0xf1,0xe2,0x0b,0xcb,0x22,0x9b,0x96,0x2c,0xeb,0xfc,0x82, - 0xfb,0x22,0xe2,0x7f,0x0b,0xb9,0xf2,0x3e,0x01,0xfd,0x05,0x7b,0x73,0x38,0x18,0x18,0x1a,0x00,0x00}; - -#endif +#ifndef __assets_html +#define __assets_html + +#include + +const uint8_t EmbeddedIndex[] PROGMEM = { + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x59,0x69,0x7b,0xe2,0x38,0x12,0xfe,0x2b,0x8e, + 0x77,0xf6,0x21,0xd9,0x34,0x67,0x48,0xba,0x93,0x0d,0xd9,0xe1,0x0c,0x10,0x20,0xdc,0x01,0xbe,0xc9,0xb6, + 0xb0,0x15,0xe4,0x23,0x96,0x0c,0xa1,0x7b,0xe6,0xbf,0x8f,0x7c,0x0b,0x30,0x09,0xbd,0xfd,0xcc,0xb3,0x9b, + 0x0f,0x31,0x52,0x1d,0x7a,0xab,0x54,0xa5,0x2a,0xd9,0xf7,0x67,0xb5,0xe7,0xea,0x78,0xde,0xaf,0x0b,0x1a, + 0xd5,0xf1,0xc3,0x7d,0xf0,0x1f,0x02,0xe5,0xe1,0x5e,0x87,0x14,0x08,0xb2,0x06,0x6c,0x02,0x69,0x49,0x9c, + 0x8c,0x1b,0xe9,0x6f,0xe2,0xc3,0x3d,0x45,0x14,0xc3,0x87,0xfb,0x6c,0xf0,0xf4,0x98,0x0c,0xa0,0xc3,0x92, + 0x48,0x35,0xa8,0xc3,0xb4,0x6c,0x62,0xd3,0x16,0x05,0xd9,0x34,0x28,0x34,0x98,0xdc,0x3f,0x72,0xde,0x9f, + 0xb8,0xc3,0xba,0x46,0x70,0x63,0x99,0x36,0xe5,0xf8,0x36,0x48,0xa1,0x5a,0x49,0x81,0x6b,0x24,0xc3,0xb4, + 0x37,0xf8,0x82,0x0c,0x44,0x11,0xc0,0x69,0x22,0x03,0x0c,0x4b,0x79,0xa6,0x02,0x23,0x63,0x25,0xd8,0x10, + 0x97,0x44,0x42,0xb7,0x18,0x12,0x0d,0x42,0xa6,0x43,0xb3,0xe1,0xb2,0x24,0x4a,0x8e,0xa1,0x60,0x98,0x91, + 0x09,0x61,0x8c,0x44,0xb6,0x91,0x45,0x05,0x62,0xcb,0x11,0xe1,0xd5,0x9d,0xcf,0xfa,0x04,0xf6,0xc3,0xb7, + 0x51,0x32,0x95,0xed,0xc3,0xbd,0x82,0xd6,0x02,0x52,0x4a,0x22,0xb0,0x2c,0xd1,0x1f,0xad,0xd3,0x32,0x36, + 0xc1,0x2a,0x26,0xb9,0x38,0x01,0x32,0xa0,0x1d,0x30,0xc8,0x18,0x10,0x52,0x12,0x5d,0x2d,0xde,0x1c,0xd2, + 0x55,0x7f,0x35,0x05,0x50,0x70,0x87,0x74,0xa0,0xc2,0xac,0x65,0xa8,0xff,0x96,0x00,0x81,0x37,0xc5,0x2f, + 0x68,0x5a,0x79,0x1e,0x6e,0x72,0x4f,0x8f,0xaa,0x59,0x66,0x7f,0xbd,0xd1,0x44,0xab,0x4f,0x54,0xf6,0xab, + 0xe6,0x0e,0xcb,0x9b,0x6a,0x79,0xce,0x1e,0x95,0x59,0x79,0xad,0x37,0xdd,0x89,0xc7,0xd9,0xb0,0xf1,0xd2, + 0x1c,0x8e,0xa5,0xc2,0x22,0xa7,0x14,0x1a,0xdb,0xc5,0xa0,0x52,0x59,0x3c,0xde,0xa2,0xc5,0xa8,0xd2,0x96, + 0x5e,0x1a,0xc6,0x62,0xda,0xc6,0xf3,0x97,0xe1,0xb5,0x2c,0x63,0xdc,0x77,0x05,0x66,0x95,0xf6,0xb0,0xde, + 0x98,0xc0,0x9e,0x4d,0x5e,0x94,0x7a,0x4f,0x7d,0x2d,0x0f,0x3a,0xf2,0xbc,0x22,0x97,0xfb,0x72,0xb9,0xaa, + 0x0c,0x7a,0xc5,0x72,0xaf,0xd0,0xad,0x16,0xd5,0x21,0x99,0xb7,0x6f,0xeb,0x3d,0xa5,0xdc,0x9f,0x97,0x6b, + 0xa0,0x5c,0x83,0x96,0x32,0xd1,0xba,0xf9,0xb7,0xc6,0xab,0x63,0xab,0xd6,0xed,0x48,0xee,0x36,0x55,0xe5, + 0x6b,0xfe,0x6a,0x7a,0xb5,0xa4,0x13,0xeb,0x1a,0x36,0xd5,0x6e,0x23,0x6f,0xdb,0x8f,0x75,0xe0,0xdc,0x4c, + 0x9b,0xb5,0x42,0xb3,0x2b,0x35,0xaf,0xdf,0xda,0xcf,0x9d,0xa6,0x0d,0x2e,0x97,0xab,0xef,0x12,0x99,0x0f, + 0x89,0xd6,0xfd,0x66,0x75,0xc6,0xea,0xa4,0xa5,0x8e,0xd4,0xb5,0xd3,0xed,0x9a,0xf3,0xcd,0x25,0xea,0xce, + 0xc7,0xf6,0xcd,0x40,0xeb,0xcd,0xbb,0x76,0x0f,0xf5,0xb6,0x9b,0x56,0x07,0x6f,0xa7,0x4f,0x8a,0xbc,0xdd, + 0xf6,0x89,0x2e,0x0f,0xc9,0x76,0x72,0x9d,0x5b,0xa9,0x4d,0x3a,0x18,0x38,0x85,0xb2,0xd2,0x6b,0x37,0xac, + 0xda,0xaa,0xfc,0x54,0x6c,0x65,0x3b,0xad,0x97,0xae,0x54,0x28,0x93,0x56,0x45,0x7e,0xcb,0xa1,0xe1,0x23, + 0x1c,0x3c,0xf6,0xc7,0x8b,0xe5,0xf4,0x66,0x50,0xcf,0x5d,0xaa,0xb5,0xc7,0x46,0xc1,0x36,0xc9,0x63,0x5d, + 0xed,0x0e,0xde,0x5b,0x65,0xcd,0x58,0x94,0x51,0xbf,0xf7,0xad,0xe8,0x58,0xc3,0x65,0x2e,0xfb,0x8c,0x2d, + 0xd2,0xa9,0x56,0xac,0xab,0xed,0x5b,0x4e,0xd6,0x54,0x5a,0x9d,0x4c,0x16,0xf6,0x70,0x73,0x33,0xa8,0x3d, + 0x5f,0xd5,0x5f,0x9a,0xa3,0xb7,0xc6,0x2d,0x05,0xf6,0x02,0x8c,0x9e,0xda,0x33,0xd8,0xae,0x29,0xd2,0x00, + 0x93,0x7a,0xee,0xa9,0x76,0xd3,0xee,0x65,0x9f,0xcc,0x21,0x79,0xd4,0xde,0x67,0x4f,0x55,0x5c,0x7d,0x6a, + 0xb6,0x5b,0xcb,0xd5,0x58,0xdb,0x74,0x5f,0xb4,0xf2,0x8d,0x52,0x19,0x99,0x78,0x88,0x5e,0x57,0xed,0x67, + 0x25,0xbf,0x98,0xac,0x6f,0xb7,0x83,0xdb,0x67,0xeb,0x4d,0x6a,0x5a,0x08,0x4c,0xa6,0xa0,0x2e,0x2d,0xea, + 0x5f,0x69,0xab,0xf5,0x6a,0x56,0x9e,0x66,0x5b,0x62,0x92,0xbc,0x5c,0x9c,0x7e,0x83,0x52,0xa7,0xae,0x48, + 0xeb,0x82,0x24,0x77,0x49,0xfd,0xab,0xfa,0xea,0x54,0x94,0xf5,0x6c,0x38,0x6a,0x17,0x1b,0x97,0xd9,0xcd, + 0x5b,0x6b,0x36,0xb3,0x5b,0x8f,0x1b,0x7d,0x76,0xf5,0x7d,0x03,0xe4,0x4e,0x4d,0x83,0xbd,0xe7,0xdb,0xfc, + 0xf3,0x6b,0x67,0xf0,0xa4,0xe4,0x8b,0xd3,0x6e,0xad,0x6a,0xcc,0xd5,0xea,0xfb,0xf4,0xb5,0x75,0xd5,0x1b, + 0xc3,0xbc,0x3e,0x32,0xfb,0xb5,0xe2,0xed,0x7b,0x71,0x64,0xb3,0xe0,0xb8,0x7d,0xeb,0x1b,0x45,0x68,0xae, + 0xab,0x5d,0x2f,0x7a,0xea,0xb8,0x31,0x5e,0x8d,0x9c,0x81,0x5e,0xad,0xb2,0x48,0xd4,0xf2,0x0f,0x3f,0x7e, + 0x08,0xbf,0xd1,0xf3,0x94,0x97,0xa2,0xa9,0x0b,0xe1,0xcf,0x3f,0x59,0xb8,0xe7,0x19,0xa5,0xe0,0x52,0xd6, + 0xd0,0x26,0xc8,0x34,0x32,0x64,0x4b,0x28,0xd4,0x5b,0x35,0xe1,0xac,0x54,0x12,0x0c,0x07,0x63,0xe1,0x3f, + 0x9e,0x54,0x38,0xcf,0x04,0x2f,0x85,0xd4,0x9d,0x90,0x62,0x8f,0x03,0x19,0x36,0x9d,0xf2,0xf5,0x16,0x76, + 0xf2,0x61,0x83,0x96,0x88,0x50,0x40,0x1d,0xb2,0x9b,0x27,0x2c,0x7d,0x0c,0x28,0x53,0xa6,0x63,0x77,0x1e, + 0x19,0x0a,0x92,0x01,0x75,0x4f,0x8c,0x3b,0x37,0x73,0xd2,0xbe,0xb0,0xaf,0x68,0xe4,0xfd,0xce,0x00,0x2b, + 0x03,0x0d,0x20,0x61,0xa8,0x30,0x84,0xa9,0x40,0x13,0x54,0x52,0x2e,0x08,0x05,0x91,0x78,0xc2,0xcd,0x6f, + 0xa6,0x3b,0x34,0x9f,0x57,0x21,0xcb,0x90,0x10,0xcb,0x44,0x06,0xcd,0xc4,0x5e,0x11,0x18,0xe3,0xb1,0x75, + 0x76,0xe7,0x91,0xc5,0x16,0xfb,0x40,0x27,0x83,0xe1,0x09,0x06,0xce,0x76,0x41,0xfc,0x92,0xf5,0x2a,0xa4, + 0x2f,0xa8,0xe1,0xad,0xc4,0x84,0xfc,0x05,0xcf,0x2f,0x8e,0xdb,0x47,0x7c,0x46,0xdd,0x54,0xe0,0x9e,0x7d, + 0x49,0x9a,0xc6,0xf0,0x9d,0x9e,0x73,0x48,0xf9,0xff,0xfe,0xe1,0x87,0xd8,0x79,0xca,0xce,0x3f,0x05,0x19, + 0xaa,0x18,0x82,0x0d,0xc7,0xe1,0xf2,0xc1,0x38,0x5a,0x29,0x18,0xb7,0x42,0x9b,0x76,0x3d,0xe1,0xeb,0x3c, + 0x8b,0x94,0xf0,0x6e,0xa0,0x40,0x72,0xc3,0x45,0x72,0x28,0x35,0x8d,0x70,0xd2,0x1f,0x31,0xc7,0x04,0xe3, + 0x1f,0x42,0xca,0x9f,0x4a,0x9b,0x0e,0x65,0x75,0x00,0xb2,0xd0,0x04,0xcc,0xa7,0x6b,0x38,0x06,0x12,0x8b, + 0x61,0x21,0xe5,0x3b,0x8f,0x85,0xa5,0x28,0xfc,0x2e,0x63,0x24,0xaf,0xd8,0x81,0x1e,0x31,0xc4,0xf4,0xc8, + 0x00,0x7f,0x9c,0x61,0xab,0x8f,0xb9,0x44,0xf1,0x17,0x79,0x10,0x7e,0x19,0x0e,0xb5,0x91,0xaa,0xb2,0xbc, + 0x39,0x0e,0x28,0xe2,0x88,0x20,0x85,0x33,0x7f,0x1b,0xa8,0x38,0x12,0x8f,0xc3,0xe2,0x78,0x22,0x60,0xf1, + 0xdc,0xdf,0x06,0x6d,0x89,0x6c,0x7d,0x03,0x6c,0x78,0x1c,0x58,0xc4,0x11,0xc1,0x0a,0x67,0x8e,0x80,0x3a, + 0x88,0x3f,0x4e,0x1d,0x1f,0x10,0xf7,0xda,0xd5,0x7e,0x50,0xf0,0x47,0xe7,0x95,0xa7,0x82,0xd5,0x78,0xc3, + 0x72,0xa8,0x40,0xb7,0x16,0xeb,0x60,0x6c,0x16,0xc7,0xa6,0x18,0xb4,0x33,0x00,0xe3,0x11,0x85,0x16,0x61, + 0xe6,0xae,0x01,0x76,0xdc,0x5e,0xc8,0x76,0xa0,0xc8,0x16,0x75,0x33,0x12,0xf3,0x0c,0x5e,0x9b,0x11,0x8c, + 0xc6,0x2e,0x13,0x6b,0x6a,0x80,0x04,0x71,0x94,0x65,0xee,0x20,0x8d,0x0c,0xd7,0x45,0xa2,0xb0,0x34,0xed, + 0x7d,0xf6,0x5d,0x9c,0x3c,0x2d,0x80,0xeb,0x69,0xe0,0x4c,0xff,0x29,0xdc,0x4b,0x80,0xc9,0xe7,0xc0,0x1b, + 0x1e,0xd7,0xe9,0xc8,0x03,0xfe,0x64,0xe8,0x1e,0xf1,0x08,0xf6,0x50,0x37,0xc1,0x88,0xb5,0x59,0x7b,0x35, + 0x85,0x95,0x22,0x4b,0x0c,0x37,0x36,0xc4,0xc9,0x5a,0x3f,0x0b,0x44,0x51,0xe8,0x59,0xe5,0x2d,0xdc,0x05, + 0x54,0xcb,0x2c,0xb1,0x69,0xda,0xe7,0x21,0xef,0xd4,0x25,0x0a,0x59,0xa1,0x70,0x7d,0x2d,0xfc,0x4b,0xc8, + 0xe7,0x72,0x2e,0x86,0x7f,0xb2,0x16,0x91,0x29,0x48,0x58,0x9d,0xef,0x00,0x77,0x3d,0x6a,0xa8,0xcc,0x60, + 0x1d,0x19,0x25,0x31,0xc7,0x9e,0xe0,0xbd,0x24,0x32,0x95,0xe2,0xae,0x74,0xe4,0xd3,0x8c,0xe1,0xe8,0x12, + 0xe4,0x9c,0x33,0xf5,0x31,0x1e,0x9c,0xc2,0x09,0x56,0x9e,0xc5,0xdb,0xb1,0x4e,0x7b,0x1e,0x3e,0x77,0xc9, + 0x5f,0x04,0x56,0x48,0xe0,0xfb,0x05,0x7b,0x08,0xe4,0x54,0x2f,0xb8,0x8c,0x99,0xf5,0xff,0xd6,0x05,0x31, + 0x86,0x3d,0xfb,0x93,0x2b,0xd2,0x6e,0xf6,0x72,0xa7,0xe7,0x3d,0xf3,0x85,0x2e,0xfc,0x4e,0x1c,0x49,0x47, + 0x34,0x63,0xd9,0x70,0xed,0x5d,0x29,0x58,0x3b,0x8f,0xb7,0xe3,0x80,0xcd,0xe5,0x42,0x10,0x2b,0xec,0x32, + 0xc3,0xe7,0x7b,0x7c,0xe2,0x22,0x1d,0x8e,0x0f,0xb3,0x3e,0x6a,0x6c,0x80,0x6d,0x78,0xd5,0x30,0xd8,0x89, + 0xc3,0xe2,0x1b,0x35,0x0f,0x7f,0xfc,0x21,0x24,0x50,0xfd,0xa8,0x77,0x4f,0xba,0xab,0x84,0xe3,0x9e,0x2d, + 0xde,0x62,0x17,0x21,0xdb,0x80,0x94,0xef,0x21,0xfc,0x04,0xf3,0x76,0x1a,0x03,0x8a,0x4d,0xae,0xfc,0xee, + 0xc8,0x76,0x00,0xed,0x98,0x41,0x2d,0x8e,0xb2,0x88,0xdf,0x21,0xca,0x4a,0xbe,0x9f,0xc3,0xa1,0x9e,0x38, + 0xc7,0x77,0x34,0x65,0xa2,0x75,0x76,0xb6,0xdf,0x91,0x4c,0xcb,0x35,0x83,0x88,0xbb,0xa0,0x4c,0xd9,0xb3, + 0x4e,0x4c,0x3c,0x04,0x92,0xa1,0x06,0x22,0x27,0x61,0x8d,0xd4,0x1f,0x03,0x1b,0x32,0x1c,0xad,0x3f,0x7e, + 0x21,0x89,0x63,0x82,0x40,0x60,0xcb,0x5a,0x27,0x52,0x7c,0x17,0xb6,0x6e,0x21,0x89,0x6d,0x72,0x44,0xfd, + 0xd0,0x80,0x91,0xc7,0x9e,0x58,0x70,0xb2,0x71,0xa4,0x7d,0x18,0x73,0xba,0xe9,0x2a,0xda,0x8f,0x3a,0x4e, + 0x3a,0xeb,0x06,0xf6,0x67,0x89,0xb0,0x53,0xaf,0x3f,0x4a,0x85,0x2a,0xdf,0x86,0x26,0x01,0xe3,0xab,0xfc, + 0x1e,0x28,0x7e,0x83,0x64,0x0d,0xca,0x2b,0xc9,0x7c,0x0f,0x8a,0x42,0xdc,0x07,0x73,0xfb,0xc4,0xa9,0xe2, + 0x19,0x4e,0xa8,0x19,0x3c,0xf7,0x21,0x2e,0x8e,0xbc,0x1b,0x41,0xfc,0x81,0xa7,0x7d,0x2e,0xdc,0x8c,0x15, + 0x78,0x87,0x9d,0xf0,0x81,0x85,0x41,0x0a,0x27,0x5b,0x17,0x12,0x3f,0xb7,0x2c,0xe2,0x3c,0x04,0xc6,0xf5, + 0xef,0x3f,0x6f,0x15,0x27,0xbc,0x6f,0x15,0x9f,0xab,0x84,0x20,0x25,0x51,0x9c,0xcd,0x9f,0x92,0x8c,0x9e, + 0x7c,0xb2,0x0b,0x3c,0x0a,0x97,0x49,0x67,0x1f,0xf8,0xc7,0xc3,0x62,0x31,0x83,0x36,0xa6,0x9d,0x88,0x27, + 0xa4,0x1d,0xc7,0x14,0x49,0x7b,0xb8,0xe2,0x51,0x12,0xb6,0x98,0xfa,0x19,0xbe,0x8f,0x22,0x40,0xd1,0x64, + 0x2b,0x59,0xbf,0x4f,0x39,0xd1,0xf6,0xe3,0xb1,0xe1,0xa9,0x49,0x70,0x86,0x3b,0xff,0xf3,0x11,0xe1,0x4a, + 0x1d,0x84,0xc2,0x09,0xc7,0x39,0x4a,0xc4,0x80,0x2c,0xa0,0x28,0x36,0x4b,0x9c,0x53,0xa2,0x04,0x1d,0xf1, + 0x13,0xfa,0xd4,0x4b,0x6e,0xdd,0xdc,0x77,0xec,0x6e,0x00,0x3b,0x12,0x2b,0x8f,0x3a,0x20,0xab,0xc4,0x30, + 0x8e,0xa8,0x27,0x05,0x73,0xac,0x2b,0x39,0xa4,0x39,0xfa,0x2f,0xc2,0x56,0x01,0x85,0x1b,0xb0,0x4d,0xc2, + 0x1c,0x90,0x4e,0x01,0x1c,0x6a,0x49,0x44,0x1b,0x11,0xff,0x1b,0xa8,0x07,0x9d,0x86,0x66,0x12,0xea,0xde, + 0x0f,0x92,0x10,0x87,0xb4,0xcf,0x20,0xdf,0x59,0x18,0xc8,0x50,0x33,0xb1,0xe2,0xf6,0x79,0x47,0x94,0xf4, + 0x63,0x9e,0xd4,0x85,0x6f,0x66,0xb4,0x76,0xa2,0x9d,0x31,0xf5,0xd3,0x84,0xe3,0xa2,0xdd,0xaf,0xcd,0x24, + 0xea,0x59,0x77,0xa6,0xd3,0x96,0x8d,0x74,0x60,0x33,0xdf,0xf9,0xf0,0xfd,0xc2,0xb9,0xdb,0x17,0x80,0xb5, + 0xd7,0xf9,0x85,0x77,0x24,0x7f,0x1c,0xbc,0x2d,0xf3,0x0a,0x6b,0xc5,0x53,0x35,0xf2,0xe6,0x99,0x67,0xee, + 0xf6,0x29,0xa9,0x0b,0x31,0xa1,0x35,0x38,0xa9,0xb8,0x73,0x77,0xde,0x23,0xa5,0xdd,0xb1,0xdc,0x97,0x2a, + 0x8d,0x80,0xcf,0x77,0x63,0x28,0x75,0xa4,0xce,0xc7,0xd7,0xe6,0x0f,0xaa,0xfc,0x12,0xe1,0x3d,0x6d,0x0d, + 0x77,0xe6,0xff,0xd7,0xb5,0xb1,0x0b,0x7d,0x97,0xf4,0x6d,0x53,0x75,0x8f,0x2d,0xef,0x05,0xe7,0x32,0xba, + 0x82,0xee,0x11,0xbd,0xfb,0xce,0x87,0x5b,0x73,0xf8,0x3a,0x0f,0xb3,0xd6,0x6f,0x89,0xde,0x8f,0x5f,0xda, + 0x82,0xf7,0xa5,0x5c,0x06,0x59,0x5b,0xd6,0xf4,0x69,0xc1,0x89,0x2c,0xd9,0xfc,0x8b,0xd8,0xe0,0xb9,0xff, + 0x1e,0x36,0xf4,0xfa,0xd4,0x27,0x7b,0xaf,0x63,0xf7,0x45,0xa2,0xd7,0xb0,0x07,0xb7,0xa6,0xe0,0x03,0x08, + 0x66,0x37,0x33,0x07,0xa8,0xcc,0xb5,0xaf,0x60,0x0d,0xfc,0x49,0xf1,0x81,0x65,0x0c,0x31,0xb1,0xdb,0x3e, + 0xab,0xe7,0x62,0xcb,0xff,0xca,0x82,0xbe,0x33,0x0f,0x67,0x32,0x19,0xf1,0xe2,0x0b,0xcb,0x22,0x9b,0x96, + 0x2d,0xeb,0xfc,0x82,0xfb,0x5e,0xe2,0x7f,0x29,0xc9,0x7a,0x1f,0x88,0xfe,0x02,0x33,0x94,0x47,0xb7,0x36, + 0x1a,0x00,0x00}; + +#endif diff --git a/src/assets/js.h b/src/assets/js.h index f3ad4a0..15d1e68 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -1,2161 +1,2175 @@ -#ifndef __assets_js -#define __assets_js - -#include - -const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xd2,0x2e,0xfc,0x57, - 0x24,0x5c,0x5f,0x19,0x18,0xb5,0x68,0xc9,0x49,0xe6,0x9d,0x80,0x46,0x78,0xbd,0x26,0x4e,0xbc,0x8d,0xed, - 0x2c,0x33,0x8a,0x5e,0x1d,0x88,0x6c,0x49,0x88,0x49,0x80,0x01,0x40,0x2d,0x91,0x78,0x7f,0xfb,0x57,0x4f, - 0x55,0x6f,0x00,0x21,0x27,0xf3,0x9e,0x7b,0xbe,0xe3,0x63,0x11,0xe8,0x6e,0xf4,0x5a,0x5d,0x5d,0x7b,0x6f, - 0x9f,0xae,0xca,0x69,0x5b,0x54,0x65,0xdc,0x2a,0x9d,0xdc,0x44,0xd5,0xc9,0x6f,0x7a,0xda,0x46,0x59,0xd6, - 0x5e,0x2f,0x75,0x75,0xba,0xa5,0xaf,0x96,0x55,0xdd,0x36,0x3b,0x3b,0x1b,0x39,0x8b,0x6a,0xb6,0x9a,0xeb, - 0x89,0xfc,0x8c,0x4c,0xb9,0x4c,0xc7,0x49,0x1a,0xd9,0x3a,0x7d,0xe1,0x99,0x3e,0x2d,0x4a,0xbd,0xb3,0x23, - 0xbf,0xa3,0x7c,0x31,0x9b,0xc8,0x63,0x7c,0x78,0x44,0xed,0xa6,0x77,0xb5,0x3b,0x31,0xbf,0xa3,0xfc,0xaa, - 0xa8,0xa4,0xf6,0xd6,0x3f,0xaf,0xe3,0xf6,0xbc,0x68,0x94,0x1b,0x42,0x72,0x53,0xeb,0x76,0x55,0x97,0x5b, - 0x7e,0x50,0xc9,0x8d,0x7d,0xde,0xd2,0x71,0x9d,0xdc,0x14,0xa7,0x71,0x79,0x58,0x1f,0x25,0xa6,0x20,0x9e, - 0x6d,0xdf,0xc7,0x17,0x79,0xbd,0x55,0x64,0x48,0xca,0x6e,0x4c,0x5a,0x7a,0xb3,0x56,0xc5,0x2c,0xad,0xd5, - 0xbc,0xca,0x67,0x7a,0x96,0x6e,0x1f,0xac,0xc7,0xe6,0xd3,0x16,0x9f,0x4e,0xf3,0xf9,0x3c,0x2e,0x6c,0x0d, - 0xaa,0x50,0xfe,0x59,0x27,0xf4,0x22,0x9f,0x65,0xdb,0xfb,0x3e,0x63,0x8d,0x66,0xca,0xec,0xc6,0x55,0xa4, - 0x47,0x8b,0x8c,0x26,0x7f,0x34,0xcd,0x4a,0xfa,0xbb,0xcc,0xa2,0x48,0xe9,0x78,0x9f,0x06,0x77,0x18,0xae, - 0x8d,0x2a,0x93,0x9b,0xd6,0x4d,0x73,0x19,0x1f,0x24,0x6b,0xd5,0xcf,0x8f,0x56,0x8d,0xde,0x6a,0xda,0xba, - 0xa0,0x99,0x1c,0xbb,0x71,0xd7,0x98,0x05,0x34,0xaa,0xb3,0x52,0x5f,0x6e,0xe5,0xf4,0xaa,0xca,0xac,0x8a, - 0xf3,0xd1,0xb2,0xae,0xda,0x0a,0x13,0x3e,0xaa,0xf5,0xef,0x2b,0xdd,0x00,0x04,0x6c,0xaf,0xd0,0xdf,0x56, - 0x97,0xb3,0xb8,0x54,0x41,0x41,0x19,0x95,0xcb,0xa1,0xb7,0x72,0x6d,0xa6,0x2d,0x7e,0x98,0xa8,0x8a,0x7e, - 0xbe,0x48,0x54,0x4e,0x3f,0x5f,0x25,0x0a,0xdd,0xfc,0x7b,0xa2,0xa6,0x59,0x1d,0x37,0xc9,0x78,0x3a,0x7a, - 0xcc,0xeb,0x96,0xab,0xe9,0x68,0x5a,0xeb,0xbc,0xd5,0x59,0xb8,0x4c,0xa6,0xd9,0x9a,0x66,0x73,0xa1,0xeb, - 0x33,0x1d,0x37,0xaa,0x4d,0x68,0x8c,0xd3,0xd1,0xd3,0xbc,0x9c,0xea,0x39,0x1a,0xa0,0xaa,0xed,0xeb,0xc7, - 0xea,0x93,0x2e,0x91,0xf6,0x25,0xd2,0x8a,0xc6,0x17,0xda,0x47,0x02,0x2d,0xcb,0x50,0xed,0xef,0xea,0x6a, - 0x51,0x34,0x1a,0xd9,0x94,0x8a,0xca,0x9b,0x25,0x75,0x65,0x86,0xef,0xa8,0xc3,0x7e,0x7e,0xa7,0xfe,0x79, - 0x44,0x80,0x9a,0xaf,0xe6,0x6d,0x36,0xfd,0x8f,0x26,0x5c,0x5a,0x8c,0x0e,0x05,0xb0,0xb7,0x1e,0xd7,0x75, - 0x7e,0x7d,0x44,0xf0,0x9d,0xad,0x04,0x68,0xa8,0x79,0xf7,0x41,0x11,0x74,0xb1,0x5c,0xcd,0xe7,0xdb,0xb4, - 0x0d,0x06,0x76,0x5c,0xeb,0xbf,0xa8,0x06,0x9a,0x78,0x61,0x32,0xef,0x6a,0x25,0x97,0x2d,0x8e,0x1d,0xe0, - 0xda,0xb8,0xa8,0x8a,0xd9,0xd6,0x3e,0x9e,0x13,0x4a,0xb7,0x2d,0x6e,0xbb,0x16,0x77,0x76,0xe2,0x36,0x3b, - 0x6c,0x8f,0x12,0x85,0x41,0x25,0xa7,0x55,0x1d,0x0b,0xf8,0x12,0x40,0x67,0xed,0x68,0xae,0xcb,0xb3,0xf6, - 0x7c,0x5c,0x3e,0x2a,0xc6,0xe5,0xee,0x6e,0xa2,0xa5,0x51,0x54,0xaf,0xda,0xc3,0xf2,0x48,0x95,0xb4,0x86, - 0x63,0x3d,0xa7,0x49,0xb2,0x5f,0x56,0x5b,0x05,0x6d,0x9d,0xe4,0x2d,0x37,0x14,0x00,0xe0,0x79,0xde,0xbc, - 0xbd,0x2c,0x69,0x7d,0x96,0xba,0x6e,0xaf,0x4d,0xe7,0x55,0x95,0xec,0xec,0x74,0x2b,0xad,0x8e,0x54,0x45, - 0x95,0x32,0xd0,0x35,0x02,0x6d,0xb4,0x6f,0x62,0x82,0x82,0x55,0xb6,0x51,0x69,0x5b,0x7d,0xa0,0xb5,0x29, - 0xcf,0xc6,0x7e,0x61,0x6f,0x8a,0x86,0x97,0x82,0xb6,0xb4,0x79,0x7a,0xb2,0x3a,0x3d,0xd5,0x75,0xba,0x09, - 0x2d,0xdd,0xb5,0x93,0x62,0xbd,0xb9,0xa5,0x3a,0xcc,0xe7,0x53,0x7a,0x7c,0x51,0xd5,0x8b,0x67,0x79,0x9b, - 0x0f,0xd5,0xb5,0x2a,0x05,0xdf,0xcd,0xfc,0xe4,0xda,0xe2,0x3b,0x3b,0x2d,0x4d,0x4a,0xd3,0x02,0x82,0x83, - 0xe4,0x75,0xb7,0x83,0x3f,0x15,0xfa,0xf2,0x2f,0x56,0x1c,0x7c,0xb5,0xb3,0x13,0xbc,0xd0,0x36,0x41,0x2d, - 0x93,0xcd,0x24,0xaa,0x2f,0xa5,0xb5,0x6e,0x47,0x27,0xe6,0x2b,0xfb,0x14,0x76,0x2c,0xf8,0x0c,0x7d,0x93, - 0xa9,0x1d,0xea,0x52,0xc3,0x39,0x21,0xdc,0x52,0xf1,0x37,0xab,0xc5,0xc9,0xf0,0x34,0x97,0x9c,0xd3,0x2b, - 0x2e,0x6b,0x99,0x12,0x42,0x6d,0x7e,0xb4,0x23,0x1c,0xf8,0x78,0x4b,0x00,0x98,0x16,0x85,0xbf,0xa2,0x79, - 0xd3,0x9f,0x5b,0x49,0xe4,0x6f,0x2e,0xe1,0x8b,0x62,0xfe,0xd9,0xaf,0x90,0x3f,0xb0,0xf0,0xf3,0xea,0xe4, - 0x73,0x5f,0x21,0x7f,0xa0,0x2d,0xf3,0x41,0x5a,0xc9,0x14,0xea,0x7c,0x31,0x34,0x2c,0x60,0x84,0x9d,0x1d, - 0xda,0xe5,0xa3,0x65,0xb1,0xd4,0xfc,0xe5,0x8f,0xef,0x5f,0x7d,0xd0,0x79,0x3d,0x3d,0x7f,0x97,0xd7,0xf9, - 0xa2,0xf9,0x8b,0xb0,0xd0,0xfb,0xaa,0x07,0x6b,0xbd,0x5c,0x59,0xd6,0xbc,0x9c,0xe5,0xf5,0xec,0x49,0x5d, - 0x5d,0x36,0xba,0x7e,0x5e,0x5e,0xa4,0x1b,0xe7,0x6b,0x1c,0xb4,0xe4,0x96,0xad,0xcc,0x2f,0x8a,0xb3,0xbc, - 0xad,0xea,0xdb,0xdb,0xe8,0xbd,0xce,0xa7,0xed,0x9b,0xbc,0x2d,0x2e,0x34,0x75,0x25,0x73,0x59,0xd8,0x9b, - 0xb3,0xd5,0x14,0x63,0x1b,0xea,0xec,0x65,0x51,0xce,0xaa,0xcb,0xe1,0xbc,0x59,0x35,0x5d,0x2d,0x74,0x49, - 0xcb,0x4c,0xa8,0xe4,0x79,0x3e,0x3d,0x4f,0x73,0xc5,0x07,0x85,0xeb,0xde,0x56,0x1b,0x77,0x4e,0x7b,0xad, - 0xea,0x01,0x82,0x06,0xc7,0xfb,0x00,0x6e,0xd5,0x13,0x3e,0xf7,0x5b,0xa6,0x0e,0x40,0x91,0xf0,0xab,0x5e, - 0x7b,0x8c,0x47,0x94,0x40,0xcd,0x68,0x2f,0xaf,0xcf,0xb8,0x27,0x8d,0x45,0x7f,0x35,0xa1,0xbf,0x9a,0xd0, - 0x5f,0x1e,0xbb,0x2c,0xa9,0xc4,0x9e,0xa5,0xe5,0x5a,0xc9,0x91,0x99,0xf6,0x0f,0x10,0x53,0x20,0xa7,0xce, - 0xba,0x2c,0xee,0x37,0xa8,0x8b,0xac,0xa4,0x8e,0x6e,0xd2,0x52,0x7a,0xd2,0xc4,0xf8,0x38,0xd5,0x6b,0x3a, - 0xb2,0xd6,0x8a,0x76,0xdb,0x20,0x0c,0xb5,0x74,0xaa,0x2f,0xe7,0xf9,0x54,0xc7,0x0f,0xfe,0xfb,0xd7,0xe6, - 0x6f,0x0f,0x54,0x14,0x25,0x3e,0x89,0x52,0xee,0x71,0xd2,0x7a,0xdd,0x3d,0xd7,0x7a,0xa7,0x9a,0x47,0x9d, - 0xdd,0x42,0x7d,0x4a,0x8b,0xa6,0xde,0x4d,0x15,0xc8,0x0c,0xc6,0x16,0x71,0x7f,0xae,0x12,0xcc,0x21,0x4d, - 0x58,0xe9,0xe6,0x8e,0xe6,0x8d,0xa7,0x3a,0x9c,0x3a,0x47,0x62,0x8d,0xf2,0xe5,0x72,0x7e,0xcd,0xa3,0xdd, - 0xec,0xa6,0x5b,0xea,0x60,0xd0,0xdb,0xdb,0xed,0x68,0x5a,0x11,0x80,0xd7,0x04,0x65,0x55,0x3d,0x38,0x7f, - 0x9d,0x12,0x23,0x8b,0xc1,0x81,0xf3,0x86,0xd2,0xb1,0x6f,0x87,0xe6,0xa0,0x77,0x60,0xe3,0xa4,0x44,0xea, - 0xed,0x6d,0xac,0x89,0x9a,0x1b,0x5a,0xb6,0x11,0x28,0x8d,0x17,0x44,0x11,0xb6,0xaf,0x9e,0x0f,0x2f,0xec, - 0xa8,0x99,0x17,0x53,0xa2,0x92,0x09,0x06,0xe4,0x31,0xde,0x57,0xfb,0x49,0x42,0x95,0x62,0x5c,0xc7,0xb6, - 0x4b,0x09,0x53,0xaa,0x7a,0xfd,0x1f,0xd1,0x23,0xa0,0x94,0x2d,0x29,0xd3,0x50,0x0f,0xf9,0xbd,0x28,0x5b, - 0x5d,0x4f,0xf5,0x92,0x06,0x4c,0x47,0xa3,0x21,0x02,0x53,0xa6,0x12,0x55,0xad,0x9b,0x25,0xcd,0x87,0x96, - 0xd7,0xb5,0x23,0xf3,0xfe,0x2e,0x64,0xde,0x43,0x21,0xf3,0x0e,0xfe,0x4b,0xe8,0xbc,0x83,0x7f,0x10,0xb4, - 0x6f,0x12,0x94,0x9d,0x09,0xdb,0x3c,0x18,0x98,0xbc,0xa8,0x0c,0xc1,0x77,0xb3,0xaa,0xe7,0xa9,0x07,0x83, - 0xfd,0xa3,0xb5,0xf2,0x6f,0x07,0x47,0x49,0xa2,0x82,0xc2,0x85,0xea,0x0c,0x48,0xdd,0x2c,0x74,0x7b,0x5e, - 0xcd,0xd2,0xe8,0x4c,0xb7,0xd1,0x1a,0xa4,0xe3,0x48,0x52,0x88,0x4a,0x91,0x07,0xa2,0x06,0x5e,0x55,0x97, - 0xba,0x7e,0x9a,0x37,0xc4,0x3a,0xc8,0x14,0x66,0x87,0x8d,0x92,0x13,0x84,0x68,0x95,0xcc,0x52,0x87,0x34, - 0xf2,0x6a,0x7e,0xa1,0xa9,0xcb,0x63,0xc0,0xf4,0xc6,0x4c,0xd9,0xc1,0x8d,0x0c,0x26,0x8a,0xc3,0x41,0xea, - 0xd1,0xaa,0x6c,0xce,0x8b,0xd3,0x96,0x70,0xf7,0xe9,0x6a,0x7e,0x5a,0xcc,0xe7,0x7a,0xa6,0xb0,0x17,0x81, - 0x70,0xf4,0x2c,0xc1,0xa6,0x1d,0xa8,0x51,0x26,0xfb,0x8e,0x2a,0x97,0xab,0xe6,0xfc,0xee,0xfa,0xc6,0xda, - 0xee,0xa6,0x84,0xf6,0xde,0xa8,0x3d,0xd7,0x0c,0x40,0xdc,0x89,0x44,0xb9,0xa7,0x10,0x1d,0x55,0xae,0xa1, - 0xc3,0x68,0xa6,0xe7,0xba,0xd5,0x91,0xe2,0xa9,0x53,0xd1,0x39,0x41,0x29,0xfd,0x54,0x4b,0x34,0xdf,0x44, - 0x47,0xaa,0x03,0xf3,0x7e,0x89,0x89,0x2a,0xcc,0x02,0x9c,0xe5,0x91,0x19,0x8f,0xce,0x4c,0x51,0x6c,0xd7, - 0xab,0xbc,0xbd,0x25,0x04,0x6a,0x57,0xa9,0x55,0x58,0x6b,0xc2,0x5f,0xb4,0xad,0x93,0x4e,0x67,0x96,0x55, - 0x83,0x4e,0x2c,0x57,0xfc,0x37,0x6f,0xa7,0xe7,0x7f,0xbd,0x07,0xc0,0x9b,0x9f,0xeb,0x43,0x3d,0xd4,0x07, - 0x35,0x03,0xc5,0x56,0x9a,0xae,0xf8,0x9d,0x5e,0xff,0x07,0xbb,0x0b,0xd8,0x68,0xbb,0x18,0x05,0xa4,0x0a, - 0x1f,0xdf,0xbd,0x94,0xc3,0xe8,0x69,0x45,0x6b,0x5e,0xb6,0x7b,0x1f,0xa9,0xf3,0xd1,0x51,0x02,0xe8,0xef, - 0x27,0x66,0x3a,0xe9,0x33,0x54,0xff,0x85,0x9d,0x76,0xd3,0x2d,0x97,0x46,0xc0,0x8c,0xc5,0x34,0x47,0x17, - 0x1e,0x5c,0xed,0x5d,0x5e,0x5e,0xee,0xd1,0x24,0x2e,0xf6,0x68,0x4c,0xba,0x9c,0x56,0xc4,0x74,0xd2,0x2e, - 0xa0,0x3d,0x9d,0xcf,0xf2,0x65,0x1b,0xd2,0x5d,0xc2,0x0a,0xb6,0xe3,0xbb,0x49,0x86,0x5f,0x5e,0xbf,0xfa, - 0xae,0x6d,0x97,0xef,0x65,0xf6,0x26,0x2d,0x75,0xe1,0x1f,0xc4,0xa1,0x0f,0x94,0xa4,0x95,0x98,0xea,0xa6, - 0xe1,0x5d,0x8c,0x42,0x38,0x8e,0x08,0xe2,0xda,0x3a,0x2f,0x1b,0xf4,0xc6,0x54,0x91,0x1e,0x0e,0x1e,0x1d, - 0x15,0xad,0x59,0x77,0x54,0xe0,0x2d,0x3d,0x19,0xcd,0xd8,0x14,0x09,0x01,0xe1,0xe9,0xd2,0x7a,0xaf,0x42, - 0x49,0xb9,0x57,0x50,0x6c,0xbe,0x28,0x11,0x62,0xf4,0x32,0x21,0x6a,0x72,0xb4,0x41,0x52,0x73,0x86,0x21, - 0x76,0x39,0xbf,0x47,0x12,0x21,0x3f,0xae,0xd1,0xd3,0x3f,0x9d,0xf0,0xf1,0xf4,0x3c,0xaf,0x1b,0xdd,0x66, - 0xab,0xf6,0x74,0xef,0x1f,0x11,0x80,0xc9,0x32,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0x87,0xeb,0xfc,0xad, - 0xa9,0xca,0x8d,0x2a,0xbe,0xff,0xf0,0xf6,0xcd,0x48,0xd0,0x66,0x71,0x7a,0x0d,0x16,0x2c,0x6d,0xd7,0x47, - 0xe1,0x0c,0x1b,0x24,0x7d,0x18,0xee,0x11,0xb0,0x72,0x1b,0xb8,0x36,0x69,0xeb,0xeb,0x9b,0x36,0xe3,0x1a, - 0x97,0x68,0x05,0x27,0xdb,0x14,0x3b,0x0c,0x9f,0xac,0xed,0xc6,0x41,0xed,0xc5,0x42,0x57,0xab,0x36,0xdd, - 0x57,0x57,0x4d,0x7d,0xfa,0xb4,0xaa,0x3e,0x15,0xfa,0x4d,0xbe,0xd0,0x69,0xf4,0xcb,0x87,0xf7,0x2f,0xf6, - 0x3e,0xbe,0xfd,0xe1,0xf9,0x9b,0x88,0xf3,0xbe,0x23,0x5c,0xa1,0x6b,0x93,0xb7,0x17,0xe6,0x2e,0xf2,0x2b, - 0xb3,0xb4,0xaf,0x18,0x35,0xa5,0x7b,0x07,0xea,0x22,0x9f,0x17,0xb4,0xdb,0x34,0x91,0x98,0xed,0x6a,0x88, - 0x80,0xdd,0x6a,0xbf,0xc9,0x1e,0xee,0xef,0xd3,0x51,0xfc,0xe8,0x8b,0xfd,0xfd,0xf5,0x7a,0xdc,0x8c,0xce, - 0xb9,0x05,0x02,0xe4,0x69,0xb5,0x58,0x10,0xd9,0x7c,0xf3,0x78,0x0a,0x9c,0x99,0x6e,0x4c,0x9d,0xda,0x6a, - 0x89,0xc6,0x7a,0x40,0xd4,0x4d,0x41,0xcf,0x7f,0x7b,0xf0,0xb7,0x88,0xce,0xc7,0xe2,0x4f,0xd0,0x5c,0x17, - 0xb5,0xb8,0xd6,0x80,0x58,0x6e,0x80,0x0e,0x8a,0xff,0x04,0x33,0x75,0x3e,0xb7,0x52,0x8c,0x3c,0xe9,0x60, - 0x95,0xe6,0x4f,0xb0,0x0a,0xf6,0x66,0xcd,0x5b,0xff,0x6e,0xc2,0xcb,0xf5,0xa9,0xf5,0x75,0x09,0xee,0x23, - 0x52,0x9b,0xa8,0x87,0x9a,0xc0,0xee,0xc7,0xe5,0xd2,0x9e,0x74,0xc4,0x81,0xe8,0x6e,0x0a,0xe3,0x1d,0x4d, - 0xe4,0xa5,0x92,0x39,0x61,0x51,0x16,0xf5,0xf3,0xcf,0x08,0x0a,0xdf,0x39,0x05,0xf4,0xf4,0xb5,0xa0,0xa7, - 0x03,0x4b,0x09,0x7c,0x61,0x28,0x81,0x2f,0x85,0x25,0x3f,0xd8,0x07,0x4f,0xfe,0x39,0x32,0x5f,0x7e,0x47, - 0x27,0x6d,0x95,0x77,0x5e,0x46,0x27,0xf4,0x1c,0x4b,0x02,0xed,0x61,0xaa,0xea,0xab,0xe1,0xe9,0xf0,0x34, - 0x18,0x91,0x28,0xe6,0xf4,0x8e,0x83,0x13,0x61,0x2e,0xc8,0xee,0x94,0x68,0x00,0x60,0x79,0xb5,0xa4,0x07, - 0xb3,0x46,0xe3,0x3a,0xc4,0x34,0xa7,0x09,0x44,0x93,0x3c,0x17,0xcb,0x3e,0x46,0xe6,0x61,0xcf,0x98,0xa6, - 0xed,0x62,0x46,0x75,0x9e,0x45,0x55,0x09,0xa2,0xee,0x9a,0x18,0xaa,0x56,0xd3,0xde,0x2d,0xcf,0x08,0xc0, - 0x2e,0xb2,0xed,0x83,0x31,0xb6,0xe0,0x00,0x93,0x24,0x83,0x22,0x7a,0xce,0x0c,0xf7,0x97,0x67,0xd5,0x82, - 0x00,0xd6,0xd4,0x48,0x9c,0xd3,0x65,0xd1,0x9e,0x3f,0xad,0xf5,0x8c,0xda,0x2f,0xf2,0x79,0x13,0x15,0xe5, - 0xd6,0xec,0xf6,0x96,0xd0,0xd0,0x88,0x10,0x0d,0xa8,0x4b,0xe9,0xc9,0xe0,0xe7,0xd2,0x21,0x88,0x1c,0xb9, - 0x13,0xfb,0x6a,0x36,0xaa,0x4a,0xc2,0xd1,0x67,0x44,0x5d,0x04,0xd3,0x46,0x9b,0x9d,0x73,0xcc,0x36,0xef, - 0x64,0x00,0x56,0xf3,0x15,0xd1,0xe9,0x3c,0x71,0x8b,0x4c,0xde,0x46,0x04,0x05,0x75,0x49,0xbb,0x9c,0x3a, - 0x18,0xa9,0x33,0x9b,0xba,0xcc,0x9b,0xe6,0xb2,0xaa,0x67,0x48,0x1d,0x2f,0x47,0x8f,0x29,0xad,0xaa,0x8b, - 0x3f,0x78,0x4f,0x66,0xd1,0x93,0xbc,0x29,0xa6,0x5b,0xd1,0xee,0x2a,0x5e,0xec,0xd2,0x79,0xb5,0x7b,0x96, - 0xac,0x69,0x52,0xa8,0xe1,0x25,0x91,0x27,0x01,0x51,0x16,0x00,0xa6,0xaa,0x64,0x9c,0xd4,0x89,0x25,0x63, - 0x5f,0xf7,0xf0,0x41,0xd7,0x34,0x1d,0xc5,0x1f,0x44,0xfc,0xaa,0x6d,0x02,0x2c,0xfa,0xd0,0xf4,0xbe,0xb5, - 0x4f,0x6a,0x76,0x78,0x7e,0x14,0x0e,0x06,0xad,0x11,0xa8,0x7f,0x49,0x1b,0x60,0xc6,0xb4,0xf7,0x35,0x10, - 0x0f,0x8d,0xe1,0x02,0x3b,0x00,0x42,0xaf,0xd9,0xa8,0x61,0x54,0x74,0x7b,0x3b,0x73,0x14,0x18,0xe1,0xff, - 0x9d,0x9d,0x7d,0xf3,0x8d,0x4b,0x22,0x6a,0x6d,0xa6,0xaf,0xde,0xd2,0xa2,0x9e,0x42,0x58,0x10,0x11,0x51, - 0x7e,0x23,0xbc,0x0e,0xd0,0xc9,0xe3,0xf9,0xdc,0x22,0x62,0xc1,0x88,0xb2,0x6e,0x93,0x9c,0x86,0x3b,0x98, - 0x8d,0xf3,0x80,0x05,0x5a,0x75,0x76,0xc3,0xf4,0x47,0xeb,0x1a,0x03,0xd0,0x11,0x77,0x00,0x64,0x06,0xd6, - 0xb9,0x9b,0x31,0xf1,0x9d,0x4a,0xfd,0xe3,0x47,0x2a,0xab,0x64,0x24,0xe9,0xc1,0xc3,0x87,0x5f,0x64,0x7e, - 0x64,0x93,0x87,0xfb,0x5f,0xa6,0xf6,0xc5,0x94,0x41,0xf1,0x8d,0x72,0xd1,0x9b,0x6a,0xcb,0xc0,0x7d,0xe4, - 0x3e,0xe0,0x8a,0xcd,0x86,0x49,0x4b,0x45,0xec,0xd1,0x69,0x71,0x46,0x84,0x93,0x65,0x14,0x66,0xeb,0x71, - 0x81,0x6d,0x46,0xc8,0x47,0x11,0x5c,0xd2,0x80,0xd6,0x02,0x5a,0xba,0xae,0xab,0x3a,0x5c,0x8b,0x79,0x3c, - 0x8d,0xa3,0x37,0xba,0x25,0x70,0xf9,0xb4,0xf5,0x1c,0xb9,0x91,0x6a,0x15,0x4f,0xc1,0x2c,0x71,0x1f,0xdf, - 0x05,0x96,0xfc,0xb5,0x49,0xdf,0xa2,0x5d,0x14,0xed,0xba,0x55,0xdf,0x8d,0x16,0xcd,0x96,0xbe,0x9a,0x6a, - 0x0d,0x92,0x87,0xea,0x8c,0x9e,0x3f,0x7d,0xfb,0xe6,0xcd,0xe3,0x27,0x6f,0xdf,0x7f,0x7c,0xfe,0x2c,0xea, - 0xd4,0x5e,0x8f,0x86,0xc4,0x1b,0xb1,0x59,0xca,0x6b,0xe0,0x2c,0x62,0x6e,0x8e,0x33,0x02,0xc2,0xde,0x36, - 0xf4,0x3b,0x30,0x01,0x9f,0xd8,0x3d,0x16,0x27,0xd7,0x0c,0x5d,0x71,0x3f,0x3d,0x49,0x85,0xb5,0x18,0x1f, - 0x13,0xb8,0x2d,0x0f,0x25,0xdb,0x9f,0x98,0x47,0xd9,0x31,0xef,0x88,0x88,0xce,0x7b,0xb3,0x81,0x25,0x93, - 0x61,0x07,0x68,0xdc,0xe2,0xf9,0x65,0x8f,0xf1,0x75,0x32,0xaf,0x53,0x02,0x94,0xa9,0x41,0x56,0x40,0x30, - 0x91,0xc1,0xf5,0x01,0x9f,0x33,0x71,0x68,0x4d,0x1f,0x61,0x5d,0x7b,0x6d,0xd1,0xea,0xb5,0x72,0x42,0xf5, - 0x46,0x4c,0x5d,0x9e,0xf5,0xd3,0x32,0xec,0xbc,0x2e,0x40,0x32,0x51,0x31,0xeb,0x24,0xf5,0x40,0xd6,0x90, - 0x18,0x22,0x78,0x8e,0x70,0x52,0x6f,0x82,0x75,0xd2,0x9e,0xd3,0x72,0x10,0x47,0x3b,0xc8,0xad,0x57,0xe5, - 0xb3,0xea,0x92,0xd1,0xda,0x3b,0x83,0xcb,0x08,0x59,0x8f,0xf2,0xd9,0xec,0xf9,0x05,0xc8,0x8b,0xa2,0xa1, - 0xf1,0xd3,0x48,0x22,0x8b,0xe9,0x08,0x0a,0x06,0xbe,0x49,0x86,0x78,0x72,0x14,0xfc,0x71,0xd9,0xaf,0x7a, - 0xc5,0x29,0xfe,0xe9,0x4f,0xdb,0xea,0x56,0x81,0x39,0x9a,0x7a,0x25,0x05,0x0b,0x16,0xfc,0x2b,0xd8,0x17, - 0xe6,0x32,0x99,0x4d,0x0b,0xcf,0xb2,0x19,0xcf,0x79,0x7e,0x42,0x87,0x1c,0xa1,0x42,0x08,0x0c,0x0d,0xe4, - 0x62,0x81,0xc2,0x35,0x8f,0x4f,0x25,0x59,0x61,0x3d,0xe9,0xa4,0x3c,0xfd,0x0f,0xce,0x6e,0x3a,0x95,0xef, - 0xa0,0x2c,0xf0,0x89,0xe1,0x3c,0x46,0xb2,0xd3,0x47,0x5d,0x82,0x6d,0x5c,0x1a,0xb4,0x40,0x9c,0xcd,0xce, - 0xce,0x76,0x11,0xdb,0xf7,0x64,0x42,0xbc,0x55,0x1c,0x19,0xc0,0xda,0x3a,0xcd,0x09,0x45,0xce,0xb6,0x00, - 0x3c,0x5b,0x52,0x60,0x0b,0xf4,0x31,0xed,0x5a,0xfb,0x81,0xb2,0x2d,0x08,0x06,0x28,0x9d,0xfa,0xa9,0x04, - 0x7d,0x1b,0x97,0x7f,0x7d,0x34,0x07,0x77,0x8f,0x46,0x15,0xaa,0x92,0x11,0xe5,0x7c,0x64,0x32,0xd6,0x01, - 0x4f,0xef,0x34,0x4d,0xb9,0x2b,0xf6,0x3f,0x11,0x81,0x81,0xdf,0x54,0x45,0x20,0x6d,0x93,0x21,0x65,0x94, - 0x01,0x02,0x6b,0x84,0x31,0x67,0xa5,0x6c,0x18,0x91,0x85,0xd4,0xc1,0xe6,0xc9,0x0a,0xe2,0x95,0xfe,0x07, - 0x0a,0xa5,0x2d,0x61,0x36,0x7e,0x7c,0xff,0xf2,0x69,0xb5,0xa0,0x9a,0x08,0x2a,0x29,0xd3,0x8b,0xf5,0xfe, - 0xf7,0x97,0xfb,0x0f,0xce,0x0a,0x15,0xfd,0x9f,0x50,0xd6,0xf7,0xbf,0xbf,0x78,0xcc,0x89,0x69,0x27,0xf1, - 0xe1,0x97,0x0f,0xce,0x54,0x74,0xaf,0x9b,0xf6,0x94,0x0b,0xaa,0x6e,0xe2,0x3e,0x0a,0xee,0x76,0xd2,0xbe, - 0x7a,0xc2,0x05,0x0f,0xbb,0x89,0xcf,0x38,0xf1,0x28,0x0a,0x79,0xd8,0xcf,0x80,0x1b,0x61,0x84,0x6d,0x6d, - 0x55,0xb1,0x2d,0xaf,0x6a,0x05,0xca,0xa9,0x4c,0x40,0x58,0x6a,0xa3,0x3a,0xa2,0x84,0x21,0xc6,0x4c,0x27, - 0x54,0x4a,0x07,0x2c,0x16,0x97,0x36,0x0b,0x7e,0x78,0x34,0xf6,0xb4,0xbb,0xee,0x2d,0xee,0x90,0xfa,0x8b, - 0x96,0xcc,0x71,0x87,0xcc,0xbc,0xc7,0x7a,0x37,0x8b,0x0e,0x8f,0x0c,0x4f,0x6a,0xd3,0x89,0x00,0x33,0xfa, - 0xb0,0x62,0x88,0x0c,0x07,0xef,0x35,0x12,0x35,0x04,0x33,0x96,0xa0,0x4e,0xaa,0x97,0x1f,0xde,0xda,0x2e, - 0x76,0x99,0x40,0xe6,0x9b,0x37,0x39,0x3c,0xe8,0x5b,0x21,0xef,0x21,0xe4,0x9c,0xec,0x46,0x59,0xb4,0xcb, - 0xaa,0x37,0x08,0x28,0x40,0x70,0xe7,0xa3,0xdf,0xaa,0xa2,0x8c,0xa3,0x1d,0x9a,0x64,0xcb,0x48,0xa3,0xa2, - 0xdd,0x2c,0xde,0x3b,0x80,0x1e,0xc4,0x93,0x2a,0x93,0x28,0x99,0xd0,0x9f,0x14,0x65,0x77,0xab,0xe4,0xcf, - 0x01,0xae,0x43,0xe0,0x1f,0x46,0x39,0xa8,0xd9,0x28,0x0f,0xc9,0x3a,0x7a,0xb7,0x07,0x8e,0x88,0x9c,0x82, - 0x04,0x3e,0x81,0x54,0xa4,0xdb,0xfc,0x0c,0x3f,0x57,0xcb,0x82,0x80,0x9d,0x9e,0x4e,0x09,0xe1,0x81,0xe1, - 0x12,0xfe,0xa9,0x38,0xdd,0x5b,0x54,0xb3,0xe2,0xb4,0xd0,0xb3,0xbd,0xa6,0x20,0xb4,0x28,0x69,0xab,0x72, - 0x23,0x75,0x9e,0x37,0xad,0x2b,0x8b,0xf7,0x6a,0x6a,0xfb,0x40,0xdc,0x25,0xb8,0xef,0x4b,0x3a,0xc8,0xd1, - 0x02,0xa1,0xd4,0xab,0xeb,0xbd,0x7e,0x47,0x6b,0x4d,0x3c,0x3d,0x1d,0xa7,0x78,0xa2,0x63,0x6a,0x2f,0x3f, - 0x6d,0xf9,0x0d,0xc4,0xec,0x1e,0x8d,0x8d,0x28,0x9d,0xa3,0x3b,0xd8,0x0a,0x16,0x0e,0xd2,0x06,0xaf,0x20, - 0x79,0xf1,0x1a,0x7f,0xe2,0xda,0xfd,0xaa,0x8f,0x1a,0x62,0x40,0xdb,0x38,0xfa,0xb5,0x24,0x18,0xe9,0x71, - 0xdf,0x55,0xb8,0x0c,0xb4,0xeb,0x94,0xce,0x88,0x2b,0xab,0x8b,0x05,0x3e,0x5b,0x9d,0xd0,0x7c,0xc7,0xfb, - 0x84,0x76,0x92,0xee,0x59,0xad,0xca,0x8d,0x52,0xd5,0xee,0x01,0x01,0x84,0x1c,0x9e,0x39,0x1d,0xe1,0x2c, - 0x54,0x32,0x15,0xeb,0xe4,0x9b,0x6c,0xdf,0xec,0x9e,0x31,0x32,0x33,0x90,0x12,0x7b,0x53,0x26,0x40,0x98, - 0x14,0x98,0xf0,0x37,0x13,0xfc,0x49,0x0f,0x8f,0x12,0x60,0x28,0x9a,0xc2,0xf8,0xb0,0x3c,0x4a,0x52,0x97, - 0xb3,0x1b,0x29,0xa0,0xe6,0xb4,0x04,0xc3,0x9b,0x53,0xc6,0x5f,0x87,0x92,0x60,0xf6,0xee,0xa2,0xad,0x26, - 0xa1,0x82,0xc0,0x2b,0x6a,0x9c,0x45,0x42,0xeb,0x84,0x92,0xbc,0x03,0x69,0x00,0x8f,0x5b,0x6a,0xe7,0x64, - 0x45,0x3b,0x28,0x3a,0xa7,0x25,0x8c,0x60,0x64,0x40,0xe8,0x72,0x84,0x17,0x6c,0xbb,0x3b,0x8a,0xdc,0xe0, - 0x29,0x95,0x62,0x8a,0x45,0x84,0xd3,0x6a,0x4e,0xef,0xf6,0x71,0xe2,0x1f,0x3d,0xc6,0x4a,0x45,0x05,0x92, - 0x12,0x57,0x03,0xf0,0xc4,0xe7,0xf4,0xa3,0x1a,0xc6,0x33,0x29,0xda,0xc2,0xc3,0xc4,0x3e,0x84,0x0a,0x95, - 0x89,0xff,0x32,0x6f,0x50,0x16,0x3f,0x13,0xf9,0x09,0xca,0xfd,0xaf,0x4e,0x03,0xe0,0xa1,0x4c,0x23,0x78, - 0x54,0x98,0x3b,0xf4,0x91,0x7e,0xd4,0x32,0x6f,0xcf,0x39,0x3f,0x7a,0x80,0xc5,0xa3,0x54,0x93,0x30,0x82, - 0x50,0xe8,0x71,0x1b,0xef,0x27,0x13,0x9f,0x88,0x52,0xbb,0xfe,0x55,0xc4,0xf3,0xb4,0x56,0xd9,0x83,0x78, - 0xd1,0x14,0xfa,0x96,0x26,0x08,0x64,0x5b,0xf2,0xa0,0x18,0xb5,0x90,0x81,0x7a,0x15,0x1c,0xc0,0xff,0x31, - 0xa0,0x1f,0x9b,0xdc,0x6a,0xd5,0x8c,0x45,0xc6,0xf3,0xb9,0xc6,0x5b,0x1c,0xe5,0x91,0x3b,0x27,0x69,0x8d, - 0x0c,0x2f,0x3e,0xb2,0x3b,0xd0,0xac,0x85,0x97,0x3e,0x58,0xca,0x41,0xa0,0x80,0x71,0x5d,0x49,0xe8,0x8f, - 0xfe,0xa4,0xa5,0x37,0x28,0xb1,0xf3,0xcf,0x54,0xaa,0x7d,0x01,0x44,0x63,0x3e,0x38,0x11,0x0f,0xeb,0x35, - 0xe1,0xc9,0x0d,0x95,0xe3,0xf6,0xfe,0xe7,0xcf,0xe8,0x40,0x19,0x64,0x74,0x1d,0x0b,0x22,0xc5,0x68,0x97, - 0x67,0x91,0x74,0x68,0x0b,0x68,0x8a,0x78,0xe5,0x66,0x2b,0xa7,0xbe,0x94,0x4c,0xda,0x6c,0x61,0x66,0xf3, - 0x29,0xd0,0xc2,0x5a,0xa0,0x3a,0x7a,0xfc,0xe4,0xe9,0xb3,0xe7,0x2f,0xbe,0xfd,0xee,0xe5,0xf7,0x3f,0xbc, - 0x7a,0xfd,0xe6,0xed,0xbb,0x7f,0xbe,0xff,0xf0,0xf1,0xc7,0x9f,0x7e,0xfe,0xe5,0x5f,0xff,0xce,0x4f,0xa6, - 0xc4,0xce,0x9f,0x9d,0x17,0xbf,0x7d,0x9a,0x2f,0xca,0x6a,0xf9,0x7b,0xdd,0xb4,0xab,0x8b,0xcb,0xab,0xeb, - 0x3f,0xf6,0x0f,0x1e,0x7e,0xf1,0xe5,0x57,0x7f,0xff,0xaf,0x7f,0x7c,0xbd,0xfb,0x20,0x8b,0xc6,0xa5,0x97, - 0x50,0x7b,0xc2,0x43,0x05,0xa9,0x42,0x1a,0x7c,0xd5,0x49,0xc2,0x22,0x66,0xd1,0x4b,0xe9,0xd7,0x53,0xdb, - 0x2d,0xcb,0x29,0x0d,0x22,0x29,0xab,0x6f,0xd3,0x20,0x61,0x32,0x33,0xed,0x2d,0x84,0x31,0x04,0x6d,0x4d, - 0xb6,0x0f,0xc3,0x9b,0x71,0xe5,0xa0,0xe7,0xb6,0xc1,0xe9,0x35,0xcd,0xe8,0x44,0x51,0xcd,0xff,0x26,0xc2, - 0x29,0xdf,0xcd,0xa6,0x36,0xf7,0xef,0x5f,0xec,0xe8,0x6f,0xbe,0xf9,0xc7,0x1e,0x65,0xfc,0xed,0x1f,0x09, - 0xa3,0x9b,0xb8,0xc8,0xe4,0xe3,0xa7,0xd4,0x5b,0x2a,0xd2,0xec,0x66,0xa3,0xff,0xfa,0x2a,0x49,0xbe,0x79, - 0xf8,0xd5,0x57,0x86,0x60,0xc7,0xe8,0xca,0xb1,0xce,0xf4,0xa3,0x47,0xff,0xb8,0x2d,0xec,0x71,0xf4,0xff, - 0x18,0x81,0xdc,0x5c,0xd6,0x45,0x47,0xab,0x6f,0xa9,0x36,0x42,0x56,0x37,0x62,0x06,0x42,0xa7,0x7d,0x63, - 0x74,0x24,0x7c,0x60,0x0e,0xd0,0x48,0x44,0x2d,0x30,0xff,0x27,0x66,0x08,0x04,0x98,0x3b,0x3b,0xe6,0x13, - 0x7b,0x52,0xd1,0x77,0x18,0x0f,0x9f,0xdd,0x25,0x30,0xf3,0xb7,0xaf,0x3f,0x3a,0xe9,0xad,0x0a,0x20,0xbb, - 0x08,0xbe,0xc5,0xfe,0xa3,0x0f,0x8b,0x4e,0x81,0x2a,0x28,0x30,0x63,0x01,0x0d,0x15,0xa9,0x20,0xb8,0x20, - 0x20,0xcf,0x7d,0x5e,0xa3,0xa7,0xab,0x1a,0x52,0x6f,0xbf,0x0b,0x19,0x77,0x67,0x8d,0x39,0xe3,0xc7,0x5b, - 0x74,0xc8,0x2b,0x30,0x97,0xe9,0xc6,0xe9,0x94,0xf5,0x3e,0x1a,0x2d,0x98,0xcf,0xc2,0x10,0xde,0xeb,0xb3, - 0xe7,0x57,0xcb,0x38,0x8a,0xff,0xfb,0x76,0xfc,0xeb,0xaf,0xcd,0xdf,0x92,0x98,0x18,0x66,0x22,0xdf,0xb2, - 0xf8,0xf0,0xbf,0xc7,0x47,0x7f,0x4b,0x22,0xaf,0x0a,0xd2,0xc4,0x1f,0x6e,0xce,0xd5,0xe1,0x17,0x47,0x22, - 0x9f,0x40,0xe3,0x8b,0xea,0xa2,0x6b,0x1d,0xc1,0xbb,0x8b,0x17,0x85,0xd6,0x82,0x40,0x0d,0x33,0x36,0x2a, - 0xab,0xcb,0x38,0xd9,0xfb,0xc7,0xdf,0xbf,0xd4,0x5f,0x11,0x35,0x9d,0xf6,0x17,0x0d,0x32,0xa7,0xee,0x38, - 0x3a,0xfa,0xd3,0xcd,0x76,0xe8,0x83,0xff,0x80,0x3c,0x36,0x9d,0x3a,0x27,0xf0,0x99,0x43,0x5a,0x7c,0x78, - 0x14,0x12,0xa0,0xa1,0x5e,0x92,0x2a,0x18,0x56,0x64,0x77,0x2a,0x90,0x05,0xba,0x71,0xfa,0x36,0x96,0x79, - 0x88,0xbe,0x4d,0xb4,0xee,0x9d,0xc2,0x42,0x09,0xed,0x1d,0x40,0xc2,0xe0,0x5b,0xe2,0xf2,0xd9,0xc6,0xc4, - 0xd9,0xaf,0x88,0x88,0x04,0xd9,0xd6,0x4b,0x32,0xfc,0x5e,0xa7,0x22,0x43,0x71,0x64,0x5d,0x2a,0xd3,0xd1, - 0x21,0x61,0x0d,0x81,0x11,0x81,0x23,0x73,0x35,0x31,0xa0,0xf4,0x4a,0x2c,0xe2,0xff,0x50,0xbb,0x05,0xbb, - 0xc3,0xcf,0xf0,0xb3,0x8c,0x0a,0x5e,0x9e,0x1a,0xee,0x4f,0xcf,0xe2,0x0d,0x05,0xd6,0xc1,0xd7,0x22,0x21, - 0x86,0x69,0x9e,0xb3,0x09,0xa4,0xd7,0x03,0x08,0x88,0xe9,0xf7,0x0e,0x1e,0x81,0x96,0x06,0xe8,0xac,0x1d, - 0x9d,0xe4,0x46,0x2c,0xb7,0x3d,0x35,0x52,0x18,0x66,0xb0,0xe8,0x21,0x5b,0xc5,0x2e,0x5b,0x19,0x01,0x8d, - 0x72,0x32,0x5e,0x2f,0xed,0x65,0xc5,0x9f,0x08,0x81,0x33,0xc8,0x18,0x59,0x1a,0xec,0x72,0xa1,0xa8,0xe9, - 0xa9,0xac,0xc2,0x5a,0xac,0x28,0xdf,0xa5,0x8c,0x44,0x17,0x61,0x2a,0x75,0x42,0x7f,0x23,0xd2,0x3c,0xea, - 0xa6,0xe3,0x2d,0xf9,0x53,0x45,0x84,0x1a,0x52,0x2f,0x80,0xb4,0x46,0x43,0xa1,0x9e,0x81,0xd6,0xd5,0x0a, - 0xed,0x5d,0xcb,0xfa,0x68,0x6d,0x37,0x34,0x75,0xd2,0x68,0xfc,0x6e,0x6f,0x1b,0xfb,0x98,0x80,0x43,0xec, - 0x8a,0x1b,0x3c,0xdc,0xf3,0x1c,0x6b,0x3b,0x35,0xf2,0x40,0xef,0x83,0x53,0x23,0xac,0x2b,0x15,0x5f,0xab, - 0x81,0x9a,0x72,0x7a,0xa6,0x13,0x46,0x2a,0x84,0xdd,0x9e,0xe5,0x75,0xc1,0x4c,0x79,0x0d,0xb7,0x6b,0xa9, - 0x93,0xa2,0x82,0xf7,0xcf,0xb5,0x4d,0xeb,0xeb,0xd5,0xf4,0xcc,0x47,0xe9,0xff,0x48,0x73,0xf1,0x19,0x6e, - 0xd4,0x4e,0x88,0x5b,0xaa,0xb2,0x43,0xe1,0x40,0xc5,0x09,0x84,0xb1,0xde,0x64,0xa4,0xfe,0x82,0xbc,0xc0, - 0xd1,0x31,0xf1,0x76,0x7b,0x7b,0x0b,0x6b,0x8e,0xe3,0xa7,0x8f,0xdf,0x3c,0x7d,0xfe,0xea,0xf8,0xf8,0x7f, - 0x20,0x7d,0xb0,0xb5,0x3d,0xf8,0xef,0xf8,0x30,0xdf,0xfb,0xe3,0x08,0x7f,0x7e,0x9d,0xfd,0xba,0xfb,0xeb, - 0xde,0xaf,0xa3,0xa3,0xbf,0xa5,0xc9,0xe4,0xd7,0x07,0xbf,0x3e,0xb0,0xa4,0x5f,0xfb,0x3f,0x12,0x6f,0x78, - 0x81,0xc3,0x24,0x30,0x24,0xfa,0xf5,0xc1,0xae,0x90,0xcc,0xbb,0xa0,0x3f,0x75,0x48,0x10,0x3f,0xd8,0x15, - 0x52,0xf7,0x4f,0x26,0xa7,0x6b,0xb5,0xd3,0xa1,0xd4,0xda,0x75,0x39,0x60,0xbc,0x99,0x6d,0x1c,0x19,0x91, - 0x18,0xfb,0x46,0xbb,0x71,0xf8,0x39,0x31,0xba,0x10,0x0c,0x07,0x29,0x29,0xac,0x9b,0x3a,0x54,0x96,0x9f, - 0x74,0xa8,0x47,0x02,0x73,0xea,0xff,0x08,0x1d,0x42,0x90,0xe9,0x64,0x89,0xdb,0x81,0x82,0xd5,0x11,0x45, - 0x10,0x6a,0x8a,0xbc,0x89,0xa8,0x0b,0x3a,0xe5,0x89,0xee,0xde,0x5a,0xac,0x9a,0x76,0xeb,0x44,0x6f,0xe5, - 0xce,0x66,0x6a,0x14,0x19,0x33,0x94,0x31,0xf7,0xda,0x08,0x06,0xb3,0x41,0x65,0x16,0xcc,0x40,0x68,0x82, - 0xe4,0x83,0x32,0xc3,0x07,0xe3,0xb6,0x93,0x0d,0x29,0x5a,0xde,0x00,0x2d,0xc5,0xf6,0x91,0xab,0x2a,0x78, - 0x3f,0xba,0x34,0x88,0x11,0x3c,0x82,0xfe,0xa2,0x7b,0x3a,0xf6,0x71,0x79,0x4f,0x9d,0x62,0xac,0x2a,0xb8, - 0x1a,0x19,0x6c,0x90,0x82,0x43,0xab,0xa9,0x56,0xf5,0x54,0x87,0x5f,0x85,0xc6,0x06,0x37,0x2d,0x0e,0x0c, - 0xb6,0x27,0xaa,0x3b,0xa8,0xa8,0xcd,0x70,0xa8,0xca,0xa1,0xc2,0xf0,0x73,0xe7,0x41,0xf5,0x1f,0xec,0x8d, - 0xad,0x01,0x14,0x65,0x0d,0xca,0x58,0xec,0xa8,0x61,0x53,0x06,0xbd,0x67,0xbf,0x85,0xbb,0x7d,0x20,0x06, - 0x94,0x99,0xff,0x8f,0xdc,0x20,0x34,0x1c,0x1b,0x7e,0x5a,0xe9,0x61,0xb7,0x86,0x61,0x60,0x6c,0x07,0xed, - 0x60,0x6f,0x6f,0x31,0x3a,0xb6,0x88,0x0d,0x8c,0x21,0xfb,0x25,0x45,0xe6,0x65,0x25,0x61,0xeb,0xee,0xae, - 0xb4,0x2c,0x57,0xb7,0x92,0xd0,0xac,0x7d,0xc3,0xba,0xe0,0xf6,0x76,0xd3,0x8e,0x97,0xd2,0x9a,0xeb,0xc5, - 0x49,0x35,0xef,0xa6,0x9d,0x54,0xd5,0x5c,0xe7,0xe5,0xa0,0x5d,0xfb,0xff,0x1b,0x4b,0x78,0x91,0xb0,0xb1, - 0xf1,0xed,0xa2,0x1c,0x34,0x84,0xb7,0x44,0x34,0x1b,0x42,0xb0,0x4d,0x5e,0xec,0x18,0x28,0x4f,0x1c,0x7f, - 0x93,0xed,0xef,0xec,0xbc,0x26,0x12,0x7f,0x74,0x3a,0xaf,0x2a,0xc8,0xe3,0x32,0xa6,0xa7,0x60,0x60,0x52, - 0x32,0xfd,0x1b,0xd4,0xda,0xf4,0xba,0x4e,0x9d,0x9d,0x44,0xd1,0xa6,0x67,0x4b,0x3b,0xe9,0x8b,0xfc,0x44, - 0x0a,0xfe,0x30,0x49,0x5d,0x17,0x7c,0xad,0xd3,0xc1,0xbe,0x7a,0x29,0x36,0x71,0x34,0xf9,0x1b,0xea,0xd8, - 0xa4,0x25,0xc2,0xd4,0x7d,0xb5,0x32,0x16,0x92,0xce,0x22,0xd3,0x98,0xc6,0x0b,0x97,0x1f,0x8b,0xf6,0xa0, - 0xce,0x9c,0x0c,0x4b,0x41,0xcc,0x99,0xed,0x8f,0x8b,0x47,0xb5,0x35,0x25,0x2b,0xc4,0x30,0xf3,0xb0,0x38, - 0x3a,0x22,0x5c,0xe9,0xf9,0x85,0x21,0xed,0xfb,0x61,0xdb,0x15,0x64,0x1d,0xad,0x87,0x8c,0x3b,0xa8,0xd8, - 0xd1,0xda,0xf7,0x71,0xee,0xdc,0x11,0xac,0x1f,0x81,0x55,0xa9,0xb6,0x81,0x88,0x8b,0xc5,0xc1,0xdf,0xec, - 0x1d,0x38,0x29,0x31,0x77,0x99,0x4e,0x9c,0x52,0x1d,0x24,0x41,0x6d,0xa7,0x9d,0x33,0xeb,0xd8,0xae,0x3a, - 0x36,0xb9,0x2b,0xb3,0xf4,0x73,0x39,0x30,0x1f,0xe3,0x3e,0xda,0xf0,0x24,0x81,0x3e,0x2c,0x8f,0x60,0xd8, - 0x49,0x3f,0xb0,0x10,0x4e,0xc2,0x86,0x67,0x1b,0xc6,0xa8,0x46,0x1a,0x52,0x0f,0x18,0x0a,0x1b,0x0a,0x63, - 0x52,0x7f,0x73,0x30,0xf1,0xc6,0xad,0xae,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xed,0xb3,0x93,0xf3,0x96, - 0xa3,0x63,0xa9,0xc8,0x79,0x5e,0xa8,0xd2,0x77,0xe4,0x5c,0x3a,0x42,0x18,0xe4,0xf6,0x76,0x7f,0xec,0x97, - 0xde,0x96,0xdd,0xd3,0xb4,0xe2,0xde,0x32,0xb7,0x4c,0xc6,0xe5,0xde,0xde,0x38,0xa9,0x79,0x50,0x87,0xe5, - 0xae,0x76,0x66,0xb7,0xb5,0xaf,0xf4,0xa2,0x07,0x48,0xf0,0xde,0xd0,0x09,0x7c,0x3b,0x32,0xcc,0x86,0x93, - 0x8c,0xfa,0x2f,0x16,0x1d,0xd1,0x04,0xac,0xa6,0x4b,0x02,0xac,0xf2,0x91,0x77,0x16,0x21,0xc0,0x42,0x05, - 0x3b,0x3b,0x17,0xd0,0x3e,0x42,0x18,0xe9,0xa0,0xcb,0x57,0x73,0x66,0xcf,0x61,0x9f,0x74,0xed,0x01,0x06, - 0xdb,0x30,0xb1,0x58,0xca,0x1c,0x89,0x7c,0xce,0xd5,0xf4,0x23,0x40,0xb3,0x4d,0x07,0xe1,0x76,0x6d,0x0b, - 0x11,0xd7,0xb2,0x5d,0xef,0xec,0xb8,0x0d,0x46,0x15,0x98,0x67,0x2a,0x0d,0x1d,0x26,0xeb,0x1e,0x32,0x9e, - 0x9a,0x40,0xdc,0x4f,0x6c,0x4b,0x37,0x49,0xea,0xae,0x76,0x76,0x72,0x0f,0x90,0x66,0x4d,0x20,0xbf,0x92, - 0x47,0x70,0x48,0xfa,0x42,0xd7,0xd7,0xc1,0xf9,0x1c,0x10,0x98,0x3c,0x0e,0x0c,0x7b,0x2d,0x95,0xdd,0xde, - 0xda,0xca,0xb6,0x0f,0xc6,0x22,0xd0,0x30,0xe0,0xf9,0x49,0x5f,0x03,0xab,0x10,0xb7,0x14,0x26,0x78,0xbb, - 0xf2,0xc6,0xb7,0x3d,0x75,0x6d,0x37,0xfd,0xb6,0x3b,0x2d,0xc3,0x2b,0xc7,0x34,0xee,0x8d,0xbf,0x6c,0xeb, - 0x01,0x58,0x1f,0xf7,0x31,0xc8,0xc6,0x1a,0x52,0xd7,0x6d,0x7d,0x89,0x73,0xa7,0x33,0x3d,0x23,0x5e,0xd8, - 0xd5,0x74,0xe2,0x77,0x1d,0x8d,0x6f,0xd3,0x6c,0x5c,0xb3,0xc9,0x34,0x93,0x63,0xb2,0x21,0xf8,0xf0,0xf3, - 0x7b,0x22,0xdc,0x6c,0x97,0xbe,0x2e,0x88,0x7a,0xa2,0x24,0x14,0x50,0xed,0xbb,0x79,0xf9,0xe2,0xef,0x58, - 0x8d,0xdb,0xdb,0xaf,0xbf,0xc2,0xaf,0xff,0xfc,0xca,0xea,0xed,0x92,0x1b,0x33,0xa1,0x72,0xfa,0x5a,0xb7, - 0x23,0xce,0xa6,0xfa,0xe7,0x2b,0x9d,0x96,0x4a,0xd3,0x81,0xa6,0xeb,0xfc,0x64,0xae,0xd3,0xed,0xed,0x5a, - 0x41,0xa2,0x21,0x2f,0xfb,0xc6,0x12,0x62,0x65,0x32,0xf7,0xd7,0x01,0x92,0xb9,0x17,0x9c,0x47,0x03,0x0a, - 0xe7,0x9d,0x9d,0x07,0x25,0xfb,0x45,0xb0,0x4e,0xf4,0x81,0xa1,0xd0,0x43,0x43,0x41,0x5f,0xd5,0xa7,0x9e, - 0x85,0x53,0x4b,0x6b,0xc1,0x87,0xb7,0xea,0xfe,0xf8,0x93,0xcb,0x7f,0xfb,0xd4,0x98,0x0a,0x18,0x14,0x30, - 0xb5,0xc2,0x9d,0xb7,0x62,0xd6,0x6b,0x50,0x01,0xd5,0x48,0x6d,0xe7,0x67,0xca,0xb1,0xc4,0xd3,0xf3,0x62, - 0x3e,0xab,0x75,0x09,0xe6,0x0b,0xd6,0x1f,0x04,0xc9,0xf3,0x85,0x62,0xe5,0x26,0xbf,0x23,0x23,0x6f,0xae, - 0xcb,0xe9,0x8b,0x1c,0x66,0xf2,0xd7,0x5e,0x9d,0x3a,0x2a,0xc1,0x70,0xa3,0x6a,0x91,0xe4,0xb5,0xc5,0x14, - 0x98,0xdc,0x3c,0x52,0x2a,0x01,0x6f,0xc6,0x20,0xcc,0x25,0x9e,0x12,0x6b,0x4b,0xfd,0xe1,0x22,0xe6,0x99, - 0xd2,0x4f,0xcb,0xa7,0xd2,0x10,0xa5,0xbb,0x67,0x4e,0x37,0x1d,0xe7,0x74,0x37,0x08,0x7a,0xfe,0x30,0xa5, - 0xb5,0x7b,0x39,0xe3,0x74,0xf3,0x2c,0xf5,0xcf,0x69,0xbc,0xec,0x79,0xa9,0x45,0x1d,0x6b,0x06,0x46,0x2f, - 0xb5,0x7b,0xc9,0x3e,0x04,0x39,0x30,0x2c,0x4a,0xa0,0xbc,0x2d,0xc3,0xc2,0x65,0x58,0xb8,0xec,0x16,0x26, - 0x7c,0xe3,0x67,0xfc,0x43,0x7f,0xc7,0x38,0x24,0xdd,0x45,0xbb,0xe6,0xa0,0x2d,0xf9,0x84,0xc5,0xf9,0x9a, - 0xd1,0x5a,0xd1,0x4f,0xe0,0x2f,0x12,0xd4,0xfa,0xd8,0x21,0x3d,0x71,0x09,0xda,0x8e,0x3b,0x0e,0x3c,0x6d, - 0x6d,0x0d,0x91,0xdc,0xce,0x82,0x50,0xee,0xf8,0xb8,0x3a,0x39,0x3e,0x8e,0xd8,0x58,0x45,0x9e,0xc3,0x8f, - 0x9a,0x7a,0x82,0xde,0x49,0x46,0x9a,0x13,0xd9,0x7e,0x5e,0xad,0xe6,0x33,0x9a,0x6d,0x42,0x1c,0x04,0xa1, - 0xdb,0xdf,0x97,0x6c,0x24,0xd8,0xc7,0x86,0xb7,0xb7,0x20,0xb6,0x28,0xc7,0x6c,0x9e,0xa2,0x79,0x0e,0xaf, - 0x96,0xa6,0x38,0x61,0x6b,0x5b,0xfa,0x90,0x9d,0x14,0x88,0x8a,0xc5,0xbc,0xf1,0xa0,0x1b,0xd6,0x5d,0x62, - 0x09,0x78,0x5e,0x2f,0x16,0x4f,0xab,0x55,0xd9,0xee,0xee,0xd2,0xc1,0xe5,0xc7,0xf8,0x31,0x54,0xa7,0x0b, - 0x22,0xc6,0xb7,0xff,0x2a,0x09,0xfd,0x9a,0xa6,0xce,0x74,0x1b,0xb8,0x07,0x3e,0xd3,0xcd,0xb4,0x2e,0x60, - 0x39,0xcf,0xb3,0xc3,0xe8,0x3e,0x27,0x74,0x7f,0x40,0xe4,0x62,0x3e,0x0a,0x37,0xa7,0x95,0x10,0xe7,0x84, - 0xb1,0x51,0x09,0xa1,0x52,0x7e,0x6c,0xe8,0x71,0x95,0x6d,0x17,0x3b,0x3b,0x8f,0x71,0x12,0x7e,0x06,0x1b, - 0x84,0x58,0x60,0x63,0xe3,0x2b,0xaa,0xb2,0x6f,0x5a,0xad,0xb3,0x66,0xd2,0x58,0xa2,0xd3,0xab,0x3f,0xfe, - 0x55,0xd2,0x46,0xab,0xa9,0x3c,0xcd,0x4d,0x45,0x2d,0x2d,0x61,0xb9,0x91,0xa8,0x15,0xbd,0xae,0xf0,0xea, - 0x93,0xfa,0x27,0xce,0xce,0x4e,0x40,0xf1,0x77,0x20,0xcc,0xec,0x7f,0x71,0x4b,0xd2,0x7d,0x77,0x24,0x5a, - 0x02,0x0d,0xc3,0x4e,0x4c,0xbc,0xac,0xb5,0x7f,0xfa,0x5c,0x8b,0x90,0x8d,0xb3,0x11,0x46,0xcc,0xe2,0x16, - 0xbd,0x56,0x4d,0x38,0x4a,0x6d,0xc9,0x9b,0xee,0x30,0x35,0xa1,0xda,0xfa,0xf6,0x56,0x6f,0xb3,0x09,0xea, - 0x36,0x9e,0xe3,0xe9,0x64,0xea,0xe9,0xb0,0x94,0xba,0xe3,0xe6,0x5c,0xc3,0xea,0xbf,0xac,0x5a,0xd0,0xbf, - 0x6c,0x79,0x1f,0x80,0xc3,0xdb,0xc0,0x3c,0xa0,0x0f,0x82,0xb4,0x76,0xb1,0x3f,0x6e,0xdc,0xd9,0xcb,0x34, - 0xfa,0x22,0xbf,0x72,0xa4,0x24,0x34,0x82,0x8e,0x54,0xd4,0xea,0x80,0xaa,0x53,0x25,0xe0,0x44,0xb3,0xff, - 0x29,0xf6,0x11,0x3f,0xf5,0x5d,0x46,0x7d,0xd5,0x62,0x20,0x5b,0x1a,0xd1,0x91,0xdd,0x2d,0xde,0x33,0x49, - 0x00,0xfd,0xf6,0xb6,0x86,0xa5,0x96,0x81,0xeb,0x49,0x99,0xd6,0x93,0xf8,0x23,0x21,0x18,0x3e,0x43,0x78, - 0x14,0x84,0x8c,0x30,0xd7,0x76,0xac,0x20,0xec,0xac,0xf5,0x6d,0x19,0xe0,0xeb,0xdf,0xdc,0x3e,0xbf,0x63, - 0xc8,0xe1,0x68,0x02,0x53,0x07,0xbf,0x91,0xc7,0xbe,0x4f,0xe1,0x5e,0xbb,0xbd,0x15,0xd2,0x18,0xc6,0x45, - 0xd6,0xda,0x57,0x1f,0x09,0x9a,0x0b,0x3b,0x16,0xae,0xc0,0x73,0xd7,0x99,0xd0,0x3c,0xc3,0xc1,0x1d,0x36, - 0xaa,0xdf,0x9a,0x86,0x26,0x81,0xc6,0x69,0xdc,0x3c,0xca,0x2d,0x14,0x36,0xc0,0x6e,0x20,0x2c,0xb3,0xfc, - 0xb0,0x39,0x3a,0x02,0x80,0x82,0x56,0x38,0x65,0x52,0x68,0x52,0xc5,0x35,0xfb,0x37,0x42,0x97,0xf2,0x3c, - 0xc6,0xc6,0x4f,0xb1,0xec,0x25,0x3d,0x0c,0xd0,0x94,0xaf,0x7a,0x22,0xba,0x72,0xd2,0xdb,0x73,0x75,0x36, - 0xe8,0x27,0x67,0x5d,0x87,0xd9,0x59,0x8e,0x7a,0x30,0x74,0x20,0x4f,0xda,0xa0,0x50,0xeb,0x49,0x74,0xd3, - 0xab,0x62,0x9d,0xea,0x49,0x1b,0xb6,0x67,0x4a,0x3c,0x8f,0x3f,0xd7,0x24,0xd3,0x30,0xf8,0x83,0x86,0x3f, - 0xd7,0x6c,0x50,0x90,0xd8,0xbe,0x54,0xa7,0xc1,0xb0,0x5f,0xf6,0xe5,0x70,0x93,0xd6,0xaa,0xf0,0x69,0x3b, - 0xf5,0xd1,0xc4,0x44,0xa7,0xd0,0xf3,0x07,0xdf,0xbf,0xf0,0xe4,0x8e,0x08,0x7c,0xba,0x5c,0x8f,0x91,0x14, - 0x04,0xba,0xa0,0x8b,0xb8,0xc0,0x46,0x2d,0x7c,0x15,0xcf,0xec,0xcc,0x07,0x52,0x00,0x57,0xdd,0xb4,0x26, - 0xf4,0x42,0xf0,0x55,0x8f,0x57,0xf0,0xe0,0xa3,0x03,0x8a,0xdd,0x1e,0xf1,0x07,0x8d,0x0e,0x59,0xf3,0xb1, - 0x2c,0x98,0x50,0x95,0xf1,0x2e,0xea,0x8b,0x5e,0x2c,0x44,0xd3,0x7e,0x5c,0x36,0x62,0x09,0x24,0xeb,0xcb, - 0x00,0x77,0xb3,0x1e,0x6f,0xec,0x8f,0x52,0x9c,0xd2,0xe9,0x88,0x75,0xe8,0x0f,0x5c,0x4d,0x5f,0x40,0x11, - 0x4b,0x5c,0x07,0xec,0x82,0xfc,0xf0,0xb2,0x24,0xb8,0x3b,0xca,0x6e,0x90,0x25,0x6a,0x2e,0x6f,0x69,0x54, - 0xd9,0x1a,0xf9,0xdc,0x00,0x8a,0x28,0x13,0x7c,0xdb,0x1c,0x29,0xfe,0xb0,0xa1,0x0f,0x01,0xb6,0x93,0x22, - 0x95,0xef,0x8b,0xf5,0xd8,0xf4,0x37,0xcb,0xd7,0x40,0x99,0x77,0x0c,0xa9,0x28,0x31,0xf7,0xe1,0x98,0x5c, - 0xe2,0xe7,0x06,0x26,0x33,0xcd,0x04,0x43,0xc8,0x99,0x13,0xd7,0xc6,0x9c,0xf9,0x0d,0x8c,0x6b,0x52,0x3c, - 0xaf,0x87,0x87,0x90,0xcb,0x10,0xcc,0x31,0x58,0x1e,0xe6,0xc4,0xb3,0xd1,0x1f,0x1a,0x43,0x93,0xd0,0x7a, - 0xcb,0xf7,0x39,0xa1,0xf8,0x24,0x95,0xe7,0x66,0xbd,0xee,0x0f,0xc3,0x0e,0x42,0x8f,0x66,0x45,0x4d,0xfd, - 0x25,0xea,0xd5,0x2c,0x8e,0x6d,0xa5,0x0e,0x5a,0x91,0x99,0x1e,0x0f,0x2c,0x7e,0x01,0xb2,0x80,0xa3,0x6b, - 0xc0,0xc0,0x3f,0x2d,0xd4,0x6a,0x09,0xeb,0x42,0x9a,0xc2,0x04,0x4a,0x7f,0x13,0x7f,0x43,0x9b,0xf0,0x12, - 0xdc,0x44,0xc1,0x36,0x52,0x80,0xc2,0x02,0xc6,0x81,0x4a,0x8f,0x16,0xc5,0x15,0x91,0x32,0x7e,0x7c,0x74, - 0xf6,0x35,0x99,0x4d,0xb6,0x53,0x94,0x3f,0x6a,0xc6,0x39,0xf8,0x4c,0xfe,0xd4,0xe6,0xd2,0xb8,0xa9,0x12, - 0x6e,0x66,0x4a,0x27,0x11,0xcd,0x3a,0x6a,0x99,0x4a,0x44,0x02,0x7a,0x48,0xfc,0xbb,0x4e,0x80,0xa8,0xa6, - 0x44,0xf2,0x70,0xba,0xd9,0x21,0x2b,0xbf,0x31,0xde,0xf8,0xbd,0x35,0xe4,0x6d,0xe3,0xe6,0x02,0xc8,0x16, - 0x03,0xa1,0xa1,0x60,0x00,0x56,0x6a,0x03,0xde,0x59,0x28,0x9d,0x4b,0x30,0x68,0xb6,0x44,0x15,0x94,0xa8, - 0xa4,0x44,0x9e,0x5d,0x95,0x71,0xe5,0xa5,0x13,0x54,0x2a,0x27,0xe8,0xa3,0xb1,0xa4,0x05,0x8b,0x25,0x50, - 0x12,0x7f,0xf3,0x50,0xb8,0xf2,0xae,0xbf,0xf5,0xe1,0x2c,0xa7,0xaa,0x6c,0x9b,0x56,0x4d,0x31,0x5f,0x0b, - 0x69,0x0c,0x9a,0x7d,0x1f,0x3f,0x11,0x79,0x9c,0x2a,0x46,0x7c,0x02,0x82,0x3e,0xa1,0xf3,0x11,0x0d,0x45, - 0xc6,0xbd,0x32,0x4a,0x26,0x39,0x31,0x6f,0xe9,0x7b,0x23,0x24,0xb3,0x45,0x61,0xf8,0xbf,0xcd,0x2a,0xed, - 0x9c,0x7e,0x3e,0x19,0xff,0xd7,0x3c,0x63,0x42,0xda,0x49,0x24,0xf3,0xe4,0x26,0x1f,0x32,0xfd,0x3b,0x85, - 0x07,0x94,0x6b,0xc1,0x6e,0x0a,0x6d,0x7d,0x3a,0xdd,0x39,0x00,0x22,0xf6,0x9e,0x41,0x18,0xb2,0xd3,0x24, - 0x6a,0x82,0x17,0x79,0x0e,0x64,0x8b,0x80,0xc1,0x89,0x3a,0x47,0xc7,0x9c,0x43,0xa9,0x93,0xe0,0x79,0x48, - 0x44,0x0b,0x9f,0xe1,0x17,0x5e,0xb8,0x9f,0xbd,0x8e,0xb5,0x0c,0x76,0x52,0x3b,0x6a,0xa7,0x26,0x70,0x05, - 0x4a,0x6a,0x13,0xc3,0xaf,0xf7,0x69,0xe8,0x71,0x3f,0x01,0x7c,0xc8,0xe3,0x38,0xa7,0x89,0xef,0x67,0x34, - 0xde,0x6c,0xc2,0xad,0xde,0xeb,0xc0,0x3e,0x0a,0xa3,0xf7,0xdc,0xa1,0xd1,0xf2,0xb3,0x43,0xb7,0x2b,0x1e, - 0xff,0x7a,0xb9,0x9b,0x3c,0x08,0xf0,0xb8,0x3e,0x3c,0xa0,0xb1,0x45,0xbe,0xc2,0xf7,0xfe,0x40,0xef,0x1f, - 0x1b,0x16,0xe0,0x5e,0x8b,0x74,0xf3,0xb5,0xf5,0x7a,0xb5,0x61,0x3e,0x6a,0x4f,0x58,0x96,0x8f,0x6a,0xcb, - 0xf9,0xbf,0x66,0x61,0x98,0xfd,0xc0,0x8b,0x62,0x9c,0x24,0xc1,0x35,0xfd,0x24,0x58,0x71,0xed,0x11,0x46, - 0xa6,0xc7,0x75,0x56,0x8f,0xee,0x2d,0x73,0x62,0xa6,0xda,0xb1,0x37,0x20,0x72,0x4b,0xc9,0x3e,0x04,0x4f, - 0xf3,0x25,0x55,0xa8,0x67,0x8c,0x0b,0xdc,0xd7,0x15,0x21,0xc4,0xea,0x51,0x61,0xfb,0x55,0x61,0xa7,0xd7, - 0xd7,0x3c,0x3c,0x98,0x40,0x62,0x47,0xc8,0x5a,0xd5,0x4a,0x1a,0x37,0x1d,0xf4,0x12,0x8f,0x1f,0xa9,0x57, - 0xb5,0x8a,0x3a,0x6d,0x6c,0x9d,0x57,0xd5,0x27,0xf8,0xc3,0xff,0x68,0xba,0xec,0x07,0xf1,0x63,0x30,0x88, - 0xdf,0x4a,0xe9,0xda,0x77,0xa2,0x73,0xe7,0x96,0xcd,0x1c,0xf6,0xb2,0xc2,0xc0,0x25,0x52,0xa1,0x6b,0xff, - 0x27,0x2b,0xf5,0x8d,0x8c,0xa9,0x75,0xf8,0x1d,0xf5,0xe1,0xa7,0x8d,0x2e,0xfc,0x14,0x74,0x61,0xfb,0x25, - 0xe4,0x59,0x2f,0x4a,0xda,0x7f,0x03,0x3e,0x46,0xf0,0x62,0xa7,0x1d,0x6d,0x35,0x34,0x63,0xf3,0x2e,0x4d, - 0x74,0x84,0xcb,0xdf,0x11,0x39,0x33,0xab,0x33,0x23,0x76,0x6a,0xb3,0x65,0x6d,0xdd,0xce,0x93,0xf1,0xd2, - 0x4a,0x82,0x33,0x2f,0x4c,0xd4,0xf4,0xac,0xbd,0x14,0x48,0xb3,0x24,0x4f,0x1f,0xc5,0x41,0x95,0x7f,0x04, - 0xa7,0x1e,0x16,0x8d,0xaa,0x61,0x5b,0x8a,0x9e,0x22,0x49,0x9c,0x11,0x9d,0x80,0xd3,0xcd,0x8b,0x40,0x4b, - 0x54,0xd2,0x11,0xf0,0xb1,0x98,0x62,0x35,0xf8,0x54,0x2b,0xd9,0x27,0x1e,0xaa,0x9a,0x19,0xf8,0x0a,0xf4, - 0x79,0x5f,0x9d,0xd7,0x93,0x79,0x1d,0x27,0xe9,0xaa,0x86,0x81,0xce,0x76,0x3b,0xac,0x9f,0x31,0x9a,0xb4, - 0x24,0x90,0xa3,0x0c,0x29,0xd7,0x4a,0x28,0xd7,0xfc,0x30,0x7e,0x46,0x9a,0x2b,0x00,0xbe,0x4b,0x39,0x52, - 0xa4,0xba,0x43,0x2a,0x18,0x13,0x0b,0x0a,0xe9,0x23,0x18,0x61,0xc7,0x21,0xbf,0xa8,0xab,0x3f,0xe0,0x8e, - 0x2d,0x36,0x55,0xda,0xd0,0xea,0xf6,0x3c,0xd6,0x21,0x3b,0x56,0x30,0x94,0x97,0xb0,0x20,0xa4,0xc3,0xd9, - 0x1a,0x76,0x96,0xf0,0x3e,0xa0,0x77,0xb8,0x8a,0xe4,0x86,0xd6,0xd1,0x1d,0x5a,0x07,0x06,0x3b,0x35,0x9f, - 0x6c,0x2e,0xd2,0x4e,0x9d,0xc5,0x55,0x8f,0x3e,0x4f,0x36,0xbe,0xa9,0xe8,0xab,0x23,0x8e,0xac,0x90,0xd0, - 0xac,0x1f,0xd7,0x09,0xfd,0x1f,0x4d,0xe9,0x28,0xa8,0xc3,0x05,0xfd,0x3d,0xee,0xc6,0xd0,0x32,0x2a,0x3d, - 0x2f,0xdc,0x56,0x20,0x0c,0x4e,0x4b,0x3e,0xae,0xb7,0x37,0x68,0x18,0x27,0xba,0x0e,0x14,0x6f,0x5e,0xb6, - 0x37,0xf6,0xf8,0xa0,0x34,0xa0,0x37,0xa8,0x88,0x80,0x98,0x24,0xac,0xa1,0x75,0x32,0x71,0x6e,0x1a,0xe1, - 0xb3,0x7c,0x8f,0xbf,0x8f,0x8d,0x30,0xc1,0xd9,0xff,0xab,0x46,0xd1,0x81,0xcf,0x8d,0xe5,0x72,0xba,0xd3, - 0xd4,0x83,0x1a,0x98,0x32,0x45,0x44,0xb4,0xc0,0x49,0x0d,0xe4,0xdc,0xc6,0x6c,0x23,0xd7,0xd2,0x91,0x3f, - 0xa1,0xbf,0x0d,0xea,0xc6,0x79,0x28,0xa5,0xb3,0xdf,0xb1,0x2c,0xaa,0x26,0x7e,0x9d,0x8d,0x37,0x1b,0xb5, - 0x1a,0x11,0x35,0x4e,0x4c,0x2d,0xc1,0x31,0xa3,0x10,0x7a,0x82,0x4f,0x1c,0xd1,0x47,0xfc,0x04,0x33,0xf5, - 0x24,0x49,0x1b,0x3a,0x45,0xa6,0x54,0xcb,0x94,0xbb,0xda,0x28,0xae,0x6b,0x9a,0x24,0xbe,0x3f,0x25,0xaf, - 0x47,0x0e,0xf2,0xb4,0x88,0x63,0xd3,0x9b,0x44,0x5a,0x91,0x0e,0xda,0x16,0x82,0x85,0xf9,0x21,0x36,0x43, - 0x0c,0xf4,0x5a,0xc9,0x4d,0x35,0x2c,0x44,0x55,0x73,0x19,0x0d,0xd1,0x0e,0xeb,0xba,0x2b,0x40,0x82,0x40, - 0x8c,0xf0,0x2e,0xe4,0x7f,0x23,0x60,0x40,0x98,0x70,0xf8,0x37,0xa2,0x92,0x12,0x73,0xca,0xc1,0x9e,0x90, - 0xd6,0x61,0xcc,0xd3,0xd3,0xd0,0x6c,0xa0,0xc7,0xa9,0x96,0x71,0x41,0xca,0x40,0x4f,0x6c,0x29,0x33,0xa3, - 0xd9,0x6b,0x68,0x84,0x48,0x97,0xdd,0x9f,0xd3,0x2c,0xe0,0x83,0xa9,0xa2,0x4f,0x54,0x63,0x8a,0x61,0x13, - 0xb3,0x00,0xac,0xf1,0xa3,0xfa,0x85,0xb9,0x40,0x33,0x32,0xec,0x18,0x00,0x91,0x50,0x0b,0xa0,0x66,0x3c, - 0x7b,0x8e,0xf0,0x28,0x00,0xfb,0xea,0xf6,0xd6,0xf0,0xb5,0xfc,0x4a,0x67,0x90,0x29,0x5c,0xf4,0x0b,0x17, - 0xdd,0xc2,0x05,0x0a,0xaf,0x37,0x0f,0xac,0x6f,0x43,0x67,0x0b,0xe6,0xbf,0x61,0xfa,0x03,0x39,0x24,0x36, - 0xb6,0x31,0xb1,0xb7,0x22,0x4b,0xff,0xd9,0xbf,0x43,0x66,0x2d,0x06,0x53,0xae,0x9b,0xd7,0xac,0x14,0xbe, - 0xbd,0xfd,0x05,0x81,0x5c,0xe4,0x05,0x3a,0xc9,0xf6,0xf0,0x03,0xab,0x45,0xdd,0xb9,0xfe,0x31,0x3f,0x93, - 0x68,0x00,0x59,0x6b,0xa9,0x1f,0xda,0x06,0xf0,0x20,0xb0,0xc4,0x30,0xa8,0x8e,0xa0,0xb1,0x7f,0x75,0xc2, - 0xbc,0xb8,0xde,0x80,0x56,0x08,0x85,0xb3,0xfe,0x83,0x7f,0x1a,0xbb,0x85,0xbe,0x70,0x21,0xf9,0x8c,0x80, - 0xdf,0x72,0x29,0xa0,0x55,0x79,0x25,0x6a,0x76,0x8b,0x80,0xf8,0xb4,0x27,0x4d,0xa6,0x4d,0xf3,0x2f,0xca, - 0x75,0x13,0x5e,0x07,0x94,0x68,0xdb,0xda,0x83,0xab,0x9c,0x5c,0xe3,0x78,0x27,0xb8,0x13,0x79,0x90,0xbc, - 0xf5,0x74,0x74,0xba,0x95,0x79,0xe4,0xcc,0xd3,0xd3,0x5e,0x6e,0xe9,0x2a,0xbb,0xa6,0x8e,0x29,0xde,0xe9, - 0x62,0x6e,0x45,0xc9,0x34,0x67,0x94,0x2a,0x34,0x5f,0xa0,0xb5,0x6e,0x43,0x3e,0x4c,0x38,0xad,0xed,0xd6, - 0x2b,0x2c,0x3c,0x06,0xea,0x84,0x34,0xb3,0x42,0x34,0x23,0x8f,0x64,0xce,0x36,0xcf,0x2a,0xde,0x18,0xa8, - 0x82,0xa5,0x88,0x79,0xdb,0xd6,0x8d,0x7b,0x20,0x04,0x56,0xb5,0xce,0x8f,0x38,0x4c,0x54,0x95,0x95,0x9f, - 0x8b,0x3d,0x5e,0xe5,0x65,0xdb,0xdb,0xac,0xa8,0x80,0xf4,0x52,0x74,0xc6,0x39,0x7f,0x90,0xc4,0xa5,0x05, - 0x04,0x36,0xe7,0xb0,0x21,0xe8,0x0e,0x8f,0x08,0x2d,0xf0,0x8e,0xaa,0x02,0x19,0x50,0x63,0xbe,0x62,0x74, - 0xd6,0x40,0x53,0x89,0x1f,0x14,0x1e,0x47,0xad,0x5e,0x2c,0xe7,0xc4,0x64,0x01,0xee,0x2a,0x88,0xfa,0x27, - 0x53,0xae,0xc0,0xa0,0x89,0x29,0xba,0x66,0x44,0xda,0xb7,0xb7,0xf4,0x45,0x3a,0xb5,0xf5,0xaf,0x5d,0xec, - 0xa3,0x95,0xe0,0xa8,0xf2,0x70,0x75,0x64,0x74,0x4b,0x45,0xeb,0x1d,0xa6,0x91,0xec,0x23,0x8b,0x78,0x4d, - 0x7e,0x7b,0x17,0x8c,0x6e,0x77,0x81,0x94,0x88,0x98,0x2d,0xde,0x15,0xbc,0xc7,0x02,0xc5,0x7e,0x1b,0x28, - 0x34,0x0d,0xaf,0x76,0x07,0xa4,0xf6,0xa0,0x1a,0x94,0xe9,0x04,0x9f,0x8b,0x72,0x2a,0x25,0xde,0x87,0x9e, - 0x70,0x10,0xb2,0xa6,0xf3,0x88,0x66,0x7f,0x40,0xe3,0xc8,0x6a,0x75,0x16,0xae,0x8e,0x5b,0xb3,0x17,0x0d, - 0x75,0x9a,0x8c,0x13,0xd6,0x52,0x1f,0x17,0x65,0xce,0xdc,0xef,0xe7,0xe8,0xdd,0xa6,0x75,0xb4,0xb6,0xd5, - 0x6e,0x1f,0x0b,0xdb,0xfc,0xd2,0x7c,0x4d,0xf4,0x96,0xe2,0xc6,0x2c,0x55,0x6a,0x19,0xf7,0x8d,0x92,0x96, - 0x06,0xe8,0xb6,0xee,0x0d,0x3c,0x82,0x1e,0xdd,0x04,0x2f,0x20,0xe8,0xfa,0xb3,0x75,0xcf,0xae,0x72,0x38, - 0x6f,0xac,0x7a,0x72,0x39,0xac,0x89,0x85,0x63,0x92,0x8a,0xb8,0x1e,0x82,0x9a,0x59,0x14,0x8a,0x05,0xa7, - 0x6d,0x57,0xa4,0x61,0x49,0x75,0xc3,0xe2,0x06,0xe2,0x00,0xde,0x4b,0x65,0x7f,0x2f,0x81,0xe6,0x2b,0x5d, - 0xd4,0x4c,0x17,0x7d,0xa2,0x04,0xd9,0x57,0x82,0x44,0xde,0x8d,0x2c,0x0d,0x4e,0xa3,0x21,0x32,0xe8,0x3b, - 0x7a,0x61,0xc7,0x4b,0x66,0x01,0xf5,0x02,0xa6,0x0a,0x28,0x90,0x46,0xbb,0x21,0x56,0x58,0x21,0xf0,0xd7, - 0x07,0xd0,0x84,0x42,0xc7,0x2a,0xcd,0xc3,0xbf,0x82,0x3d,0x52,0x1d,0x1a,0x49,0x85,0xe6,0xbe,0x44,0x6e, - 0xed,0x69,0xfa,0xb3,0x86,0xf8,0x9b,0x26,0xe9,0x71,0xfd,0xe8,0xca,0xd1,0x1c,0x8f,0xd1,0x5d,0xe8,0x18, - 0xb3,0xab,0xfa,0xf0,0x71,0x7d,0x94,0x50,0x41,0xf5,0xa9,0x66,0xb1,0x2d,0xd3,0x1f,0xa3,0x7a,0x55,0xc6, - 0xd6,0x18,0xeb,0x5e,0xed,0x68,0x97,0x3a,0xbb,0x72,0x2f,0x54,0x4b,0xe6,0xaa,0x44,0x21,0x4b,0x4f,0x53, - 0x4d,0xd0,0x8b,0x3f,0xad,0x33,0x74,0xfa,0xa0,0x23,0x69,0xf9,0x13,0x52,0x3b,0x5c,0xe4,0x7d,0x85,0xf5, - 0x83,0x30,0x77,0x1b,0xd1,0x42,0xcb,0xe4,0x8e,0x8a,0x7c,0x25,0xa0,0xfc,0xec,0xea,0xe1,0x3b,0x50,0x5d, - 0x17,0x8b,0x71,0x3d,0x3a,0xbe,0xc4,0x4a,0xe8,0x9a,0x80,0xaa,0x84,0x3c,0xfb,0xb8,0xa0,0xb3,0x6b,0x45, - 0x08,0x6a,0xb6,0xb3,0x43,0xab,0x4e,0x9c,0x92,0x88,0x6a,0x18,0x1e,0x08,0xd3,0xab,0x1f,0xa8,0xd8,0x6f, - 0xc0,0x4b,0x17,0x6d,0x55,0xc1,0x5b,0xf8,0x07,0x62,0x7d,0x78,0x7d,0x4e,0xe7,0x84,0x3e,0xa2,0x60,0x75, - 0xe6,0x0e,0x67,0xff,0x56,0x43,0x05,0xb3,0x69,0xcf,0xc7,0x56,0x64,0xd4,0x1f,0x02,0xc0,0xb5,0xa2,0x42, - 0x8d,0xde,0xb4,0x9b,0x96,0x6c,0x44,0xf9,0xbb,0x4b,0x57,0x53,0xd2,0xa7,0x41,0xb3,0xa7,0xae,0x59,0x81, - 0x48,0x56,0x6a,0x0d,0x49,0xa5,0xca,0x49,0x6c,0x3a,0x56,0x4f,0x96,0x2c,0x59,0x2d,0x6d,0x27,0xce,0x92, - 0xd4,0xe6,0x95,0xf8,0x3b,0xa9,0x41,0x01,0x20,0xa0,0x1d,0x81,0x30,0xcd,0x97,0x2d,0x8f,0xbc,0xf4,0xcc, - 0x7e,0x55,0xe2,0xef,0x84,0xff,0xa6,0x67,0xc9,0x9d,0xfd,0xd5,0xdd,0xfe,0x2e,0x43,0x7c,0xb9,0xa1,0x52, - 0x62,0x3b,0xbb,0x63,0x9c,0xbb,0x2b,0x5a,0x85,0x9f,0x65,0xb5,0x10,0xcd,0x6f,0x30,0xdd,0x88,0x76,0x1c, - 0xd3,0xc3,0x82,0xbb,0xf6,0x1a,0x36,0xb9,0x1a,0x9a,0x09,0x48,0x7f,0x13,0x15,0x68,0xa4,0xb4,0xd7,0x05, - 0x69,0xd1,0x5d,0x84,0x16,0x2e,0xad,0x17,0x26,0xb9,0xd0,0x3d,0x50,0x12,0x41,0xea,0xaa,0x10,0x71,0xca, - 0x98,0x9f,0x27,0x6a,0x53,0x0e,0xc6,0x9a,0x40,0xc6,0xc8,0xb4,0x69,0xee,0x5d,0x8a,0x2f,0xb8,0x88,0x87, - 0xbd,0xe5,0x8a,0x47,0x99,0xed,0x9f,0x1b,0x2d,0xfd,0x52,0x4e,0xde,0xeb,0xd3,0x39,0x72,0xaa,0xcb,0xf2, - 0x07,0x31,0x91,0x18,0x9d,0x16,0xf3,0x56,0xd7,0x43,0x06,0xce,0x7f,0x45,0x83,0x38,0xf2,0x5a,0xbe,0x75, - 0x92,0xf6,0xac,0x2f,0x06,0xf8,0x91,0x1b,0x2f,0x89,0x00,0x01,0x4b,0x94,0x01,0x22,0x93,0x8e,0x20,0x40, - 0x85,0x34,0x72,0xdc,0x8c,0x79,0x34,0x0d,0x8b,0x9a,0x2e,0x8a,0x19,0xf6,0x11,0x53,0xfa,0x41,0x0a,0x11, - 0x44,0xf4,0x4d,0x16,0xa4,0x40,0x38,0x7b,0x42,0x83,0xfd,0xb4,0x26,0x36,0xc1,0x1e,0x3e,0xe0,0xfb,0xb6, - 0x61,0x7b,0x68,0x25,0x65,0x90,0x56,0xd2,0x87,0x02,0x19,0x53,0x69,0xd8,0x8a,0xcc,0xb8,0xc6,0x01,0x18, - 0x77,0x8a,0x38,0x82,0xd6,0xe9,0xda,0xd9,0x13,0x05,0x8b,0x7c,0xd1,0x8a,0x8d,0x8a,0x63,0x71,0xc1,0x33, - 0x6d,0x4a,0xa5,0x21,0xe0,0x1b,0x08,0x2d,0x64,0x44,0xf0,0x4e,0xcb,0xed,0x2c,0xba,0x54,0x45,0xe8,0x2e, - 0xf7,0x28,0xa8,0x7a,0x94,0xb3,0xb8,0xa6,0x46,0x47,0x69,0x73,0x73,0x3c,0x57,0x2f,0x7d,0xdf,0xb4,0x21, - 0xdc,0xac,0x9a,0xeb,0xa4,0x8a,0xda,0xb0,0xa2,0x6a,0xf7,0x20,0xac,0xa7,0xb0,0xa4,0xed,0x86,0x29,0x4d, - 0x58,0x55,0xd3,0xeb,0x65,0xd3,0xef,0xe5,0x34,0x6b,0xd0,0x41,0xd7,0xd9,0x29,0x71,0x8c,0xca,0xcb,0x62, - 0x0d,0x45,0xcc,0xe8,0xf2,0x27,0xc4,0x06,0xe0,0x00,0x09,0x81,0xf2,0x7e,0x11,0xec,0x1c,0x96,0x6f,0x51, - 0x43,0xbc,0x63,0xef,0x35,0xb0,0x54,0x98,0x7d,0x20,0xa2,0xcd,0x6e,0xd6,0x0a,0xb1,0xdb,0x98,0x96,0xad, - 0x79,0xcf,0x5c,0xc4,0x17,0x31,0x5e,0x12,0x96,0x7b,0x17,0x19,0xb6,0xdc,0xed,0xad,0x0e,0x9d,0x9c,0x4d, - 0x55,0xb6,0x92,0x1c,0xca,0x8d,0xd1,0x31,0x01,0xcd,0x4c,0xd7,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0xb5,0x8d, - 0x96,0x0b,0x9d,0x1f,0x8a,0x3b,0xfb,0xa1,0x89,0x54,0xd1,0x73,0xfe,0x73,0x34,0xa3,0xba,0x41,0xe9,0x14, - 0x71,0x41,0x3b,0x5a,0xa1,0xb3,0x10,0x57,0xbd,0x11,0xb3,0x60,0x4b,0x0c,0xa8,0x48,0xb6,0x22,0x42,0x23, - 0x50,0x87,0x3f,0x04,0x24,0xe1,0x75,0x7f,0x3a,0x32,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f,0x84, - 0x8d,0x33,0x6b,0x9c,0x74,0xe1,0xae,0x48,0x26,0xec,0xdd,0xec,0xbd,0x5f,0x89,0x21,0x2a,0x20,0xd9,0x4d, - 0xeb,0xc9,0xa7,0x92,0x16,0x02,0x84,0x74,0xda,0x27,0xfe,0x8f,0x5d,0x8b,0x86,0x9d,0x2c,0xc1,0x61,0x83, - 0xa3,0xdc,0x54,0x79,0xd3,0x9c,0x2f,0x90,0x35,0x36,0x22,0x03,0x7f,0x04,0x15,0x22,0xe3,0x9f,0xce,0x89, - 0xb7,0x67,0xd7,0x4c,0xde,0x03,0xd7,0xc2,0xcc,0xd1,0xcb,0x35,0x8a,0x24,0xb4,0x1e,0x21,0x49,0xde,0x5a, - 0xee,0xc0,0x3c,0xb0,0x10,0x79,0x9c,0x43,0x2f,0x4e,0xa3,0x86,0x31,0xf8,0x8f,0x0d,0x1f,0x07,0x31,0x24, - 0x09,0x05,0xa2,0x90,0xcd,0xaa,0x05,0x12,0x1a,0x88,0x20,0xdc,0x0b,0x18,0xf0,0xd4,0xd4,0xc1,0x19,0xfc, - 0x84,0xd4,0x75,0x01,0x8c,0x92,0x43,0xe2,0x0e,0x26,0x5a,0x38,0xda,0x0a,0x02,0x8c,0x18,0x41,0x29,0xb8, - 0x70,0x55,0x32,0x03,0x7f,0x68,0xce,0x6f,0x22,0x9c,0x8a,0xa3,0xce,0xd9,0x8a,0xaf,0x58,0xf4,0xe5,0x28, - 0xc6,0xa9,0x50,0xfb,0x0d,0x71,0xf9,0x3e,0x28,0x98,0xb7,0xe6,0xea,0xd2,0x80,0x7c,0xfc,0x34,0x6c,0xe1, - 0xf3,0xb1,0xd6,0x9a,0x7b,0xd8,0x4f,0x03,0x23,0x82,0x7d,0x07,0x18,0xb5,0x0c,0x22,0x9d,0xa3,0xba,0xb7, - 0xc4,0x75,0x32,0xf9,0x40,0x7f,0xd2,0xa7,0xf8,0x13,0x5f,0xb5,0xb1,0x7c,0x92,0x75,0xa0,0x6b,0x24,0xf5, - 0xbe,0x67,0x18,0x7f,0x51,0x02,0xee,0xbd,0x1e,0xd5,0xc2,0xfe,0x3b,0xb8,0x83,0x8b,0x78,0x95,0x35,0xab, - 0xb0,0x87,0x91,0xef,0x8e,0x8f,0xa3,0xdd,0x56,0x6d,0x1f,0x24,0x9d,0xf3,0xe7,0xd2,0x91,0x0a,0xa6,0x7b, - 0x57,0xad,0x31,0xa2,0x21,0x5e,0x15,0x9f,0xe8,0xdd,0xb8,0x9c,0x44,0xc7,0xf0,0x92,0x8e,0x22,0x09,0x40, - 0x14,0x4c,0xc9,0x55,0x1b,0x88,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe7,0x2f,0x99,0xa0,0xe3,0x50,0xb4, - 0x06,0x9d,0x7a,0x47,0x02,0x4e,0xbe,0xd7,0x1a,0x75,0xea,0x2e,0x1a,0xae,0x9d,0x78,0xef,0x9e,0x6d,0x2d, - 0x30,0x39,0x73,0x1d,0xf0,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xad,0x90,0xfa,0x96,0x86,0x92,0x05,0x7b, - 0xf1,0x53,0xc0,0xa6,0x40,0x11,0xaf,0x13,0x4f,0xd7,0x57,0xf2,0x67,0xc2,0x08,0x08,0x4f,0x49,0x1a,0xf0, - 0x5f,0xb5,0x48,0xd0,0x02,0x5d,0x1f,0xa1,0x4e,0x48,0x20,0xc7,0xac,0xdb,0x2b,0x26,0x87,0x47,0x56,0x4b, - 0x5d,0x18,0x7f,0xf2,0x4d,0x30,0x7a,0xda,0x8a,0x5f,0xd9,0x71,0x95,0x5d,0xc2,0xc8,0xec,0xb8,0xe4,0x90, - 0xeb,0xc7,0x90,0x8f,0xd1,0xcf,0x3c,0xbb,0xe0,0xd4,0x36,0x5b,0xf0,0xef,0xef,0xd9,0x35,0x7e,0x8a,0xec, - 0x18,0x3f,0x8b,0xec,0x84,0x53,0x4f,0xb3,0x33,0xfe,0xfd,0x94,0x5d,0xf3,0xef,0x49,0x76,0xcc,0xbf,0x17, - 0xd9,0x27,0xfc,0xd0,0x78,0x11,0x71,0xe3,0x78,0x95,0x55,0x9c,0x7c,0x96,0x7d,0x0a,0x7a,0xf0,0x41,0x26, - 0x2d,0x14,0x13,0x12,0x83,0x6c,0xc0,0x4c,0x1c,0x32,0xd8,0x53,0xc9,0x44,0x4a,0x15,0x0d,0xaf,0x96,0x17, - 0x67,0x11,0x56,0x9b,0x4c,0x3e,0xa9,0x33,0x13,0x93,0x74,0x6e,0xa2,0xc4,0x34,0x99,0x6c,0xc3,0x8b,0xd2, - 0x06,0xfc,0xc4,0x49,0xc4,0x46,0x6c,0x44,0xf1,0xe4,0xe6,0x9d,0xb6,0xbe,0x64,0x33,0x1e,0x1f,0x20,0x8e, - 0xeb,0x96,0x2d,0x11,0xd6,0x5d,0xd3,0x50,0x43,0x14,0x15,0xe2,0x4a,0x97,0x0b,0x0d,0x88,0xb8,0x2b,0xf0, - 0xa9,0xdb,0x9e,0x8e,0xa7,0xd6,0xb9,0xd0,0xee,0x9c,0x2c,0x57,0xc1,0x79,0x91,0xf9,0x26,0xe3,0x44,0x6d, - 0x9c,0x49,0xb0,0x0c,0xf7,0x6f,0x18,0x02,0xa2,0x52,0x1c,0x37,0x62,0x5f,0x37,0x31,0x54,0xe7,0x46,0x38, - 0x14,0x2b,0x2d,0x79,0xdb,0x22,0x7a,0xbf,0x41,0xbc,0x2b,0x77,0x5e,0x56,0x6c,0xfa,0xe4,0x4d,0xf6,0x7c, - 0x8d,0x2a,0x90,0x88,0x64,0x34,0xa6,0x6a,0x9d,0xde,0xdd,0x86,0xa5,0xeb,0xba,0x8d,0x04,0xb4,0xcc,0xe3, - 0xf6,0x0e,0xab,0x65,0xd6,0xb5,0x8a,0xe5,0x72,0x60,0x7d,0x86,0xf9,0x35,0x04,0x8f,0x68,0x57,0xda,0xd8, - 0x5a,0xd5,0xad,0xa8,0x8f,0x0e,0xf5,0x1c,0xc3,0xd1,0x90,0x15,0x51,0xe6,0xdc,0xcf,0x56,0x56,0x3a,0x47, - 0xe5,0x87,0xac,0x3c,0xcc,0x84,0xcc,0x99,0x81,0x87,0xdc,0xac,0x98,0xe1,0xc3,0x39,0xc1,0x8d,0x53,0x5e, - 0xc6,0x41,0x9c,0xac,0x5a,0x9c,0x9a,0x71,0x4e,0x51,0x69,0xd6,0xd7,0xb0,0xf8,0xd1,0x3c,0xc3,0x43,0xd7, - 0xcb,0xd8,0x7c,0x9a,0x91,0xce,0xd9,0xb8,0xb5,0xb3,0xa0,0x8c,0x4d,0x1a,0x9b,0x3a,0x11,0xa7,0x88,0x90, - 0x8d,0xa9,0xd5,0xbc,0xf5,0xea,0x0d,0x52,0x59,0x58,0x26,0x12,0x3f,0x5e,0x9b,0x26,0xb1,0x9a,0x0b,0x9f, - 0x94,0x89,0x20,0x9d,0xf0,0xcd,0x2a,0x84,0x5e,0x3b,0xf9,0x2d,0x91,0x56,0xda,0x93,0x56,0xed,0x23,0x3d, - 0x6e,0x21,0x7a,0x00,0xe6,0xbe,0x47,0x85,0xa6,0xfa,0x47,0x3e,0x9a,0xe2,0x64,0xad,0xe6,0xd9,0x49,0x47, - 0x29,0xe3,0xfb,0x9f,0x41,0xbc,0x5a,0x11,0xb0,0xdf,0xde,0xae,0x62,0x76,0xd9,0xe9,0x15,0xed,0x4e,0x12, - 0x53,0x65,0x12,0x84,0x0c,0xfd,0x8a,0x39,0x76,0xca,0x32,0xab,0xe3,0xb9,0x3a,0xf5,0xae,0x13,0x31,0x17, - 0x1c,0x58,0xb7,0x25,0x7b,0x4b,0x4e,0xda,0x70,0x4e,0x77,0x76,0x24,0x95,0xab,0x48,0x75,0xbc,0xf4,0x52, - 0xd0,0x64,0x30,0x9a,0x73,0x50,0x80,0x3f,0x44,0x10,0xb0,0x5e,0x12,0xd7,0xa5,0x50,0x97,0x5d,0xeb,0x70, - 0x14,0x34,0x66,0x93,0x01,0xbb,0x00,0x2e,0xe6,0x97,0xaf,0xbb,0x7a,0x5c,0xd4,0xbc,0x63,0x9a,0x00,0x58, - 0xb0,0xef,0x9b,0xe7,0xd7,0x13,0x57,0x90,0xa6,0x22,0x25,0x9e,0xf4,0xa3,0x04,0x4e,0x0b,0x35,0x72,0xbd, - 0x81,0xb6,0x01,0xf0,0xc5,0xe1,0xe7,0x32,0x93,0xca,0xd4,0x7c,0x7b,0xfb,0x70,0x7f,0xdf,0x74,0xcc,0x44, - 0x63,0x83,0xe3,0xfb,0x5f,0x69,0x41,0xae,0xa0,0xe0,0xaa,0xec,0x97,0x09,0x30,0xd9,0xf6,0x81,0x72,0xed, - 0x4d,0x3a,0x23,0x4c,0xfd,0xf7,0x6b,0x0f,0x7b,0x56,0xbb,0xb0,0xa6,0x99,0x5c,0xd1,0xd6,0xf1,0x22,0xe8, - 0x3e,0xda,0x08,0x4c,0x4b,0xeb,0xd8,0x63,0xa4,0x8e,0x24,0x32,0x83,0xa0,0x96,0x13,0x5e,0x6b,0xc2,0xfc, - 0x12,0x99,0x4f,0x2b,0xd3,0x18,0x02,0xe0,0x19,0xbc,0x9f,0x12,0xde,0xcf,0xcf,0x88,0x22,0x26,0x44,0x45, - 0x2d,0x5b,0xe4,0x31,0xae,0xb2,0x8a,0x29,0xf8,0xdf,0x80,0x41,0x68,0x5e,0xaa,0xd1,0x82,0x48,0xdb,0x79, - 0x60,0xc1,0x19,0x30,0x59,0x08,0x4c,0x8d,0x5c,0x50,0x88,0xfc,0xc0,0x67,0x0c,0x91,0x96,0xcc,0x7f,0x47, - 0x2c,0x8c,0xee,0x15,0xd0,0x90,0x85,0x51,0x89,0xa2,0x84,0x9b,0xf0,0x38,0x2e,0xe5,0x58,0x62,0x11,0xf1, - 0xd2,0x12,0x8b,0x09,0x6b,0x3b,0xcc,0x17,0x5c,0x97,0xb1,0x34,0x29,0x47,0xc6,0x39,0x50,0x88,0xc2,0x31, - 0xf5,0x8f,0x88,0xbf,0x64,0x82,0xbf,0xd9,0xa1,0xfd,0x02,0xd4,0xd4,0x49,0x3e,0xfd,0xe4,0x0e,0x71,0x2e, - 0x94,0x72,0xa1,0x7e,0x99,0x35,0xad,0xaa,0x25,0xfb,0x2b,0x21,0x9c,0x4f,0x3d,0x0e,0xe8,0x44,0xe0,0x72, - 0x05,0xbd,0x6d,0x17,0xe1,0xd9,0xdc,0xe1,0x13,0x9a,0x35,0x3a,0xc8,0x84,0xb8,0x85,0x57,0xb8,0x2f,0xa6, - 0x63,0x98,0xe1,0xe8,0x78,0xe5,0x69,0xa9,0x39,0x13,0xbe,0x36,0xb8,0x27,0x91,0xff,0xf3,0x64,0xfc,0x0b, - 0x9d,0x06,0x2b,0x45,0x1b,0x0a,0xe4,0xd9,0xed,0x2d,0x5e,0xa7,0xf2,0x7a,0xe0,0xe8,0xd8,0x66,0xbd,0x86, - 0xe0,0xdc,0xe0,0x42,0xdb,0x21,0xdb,0xe1,0x7c,0x3e,0x04,0x3d,0x5d,0x4d,0x22,0x8e,0x74,0x33,0x60,0xd3, - 0xe7,0xbc,0xdb,0xd3,0xa4,0x23,0x34,0x9f,0x12,0x9e,0x5b,0x1d,0x65,0xef,0xe2,0x15,0x75,0x86,0x49,0x01, - 0x43,0xc5,0x01,0x5d,0xf1,0x58,0x09,0x36,0x10,0x5b,0x43,0xd9,0x57,0x85,0x1c,0xae,0xd1,0xe7,0xc8,0x2b, - 0x4f,0xef,0x9c,0xd9,0xd7,0x0f,0x38,0xb2,0x68,0xca,0xd9,0x04,0x85,0x50,0x61,0x3e,0x12,0xc2,0x37,0x30, - 0x38,0x98,0xd3,0xd9,0xa9,0x02,0xa7,0xa6,0x0d,0x9d,0xdf,0x69,0x78,0xe2,0xaa,0xd3,0xc0,0xc2,0x3e,0x87, - 0x23,0x27,0xab,0x32,0x62,0x2a,0x85,0x4d,0x40,0x50,0x23,0x0f,0x0c,0x5f,0x9c,0x99,0x49,0x19,0xda,0xb5, - 0xa7,0xb0,0x85,0x39,0x95,0x4d,0x20,0x9d,0x5c,0x82,0x90,0x62,0xa9,0x35,0x7e,0xe9,0x45,0x3c,0x1e,0xde, - 0x96,0x2a,0x9c,0xf6,0x1c,0x01,0x8e,0x68,0xe3,0x19,0x10,0x98,0x51,0x39,0xe6,0x4d,0x2b,0xcc,0xeb,0x8c, - 0x49,0x05,0x6e,0x68,0x96,0xac,0xb7,0x3b,0xd2,0x40,0xab,0xa5,0x6c,0x9d,0x82,0xb2,0x67,0xa0,0xf0,0xb2, - 0x0e,0xc5,0xa6,0x86,0xac,0x7d,0x59,0x8b,0xc4,0x53,0xbe,0x82,0x66,0xa0,0xc8,0x5e,0xc1,0xf9,0x69,0xec, - 0x52,0xb2,0x7a,0x12,0xa2,0x8d,0x4d,0x69,0x9c,0x83,0x85,0xd6,0x3d,0xc2,0xb3,0xd6,0x3c,0x12,0x70,0x15, - 0x44,0x9f,0x10,0x5a,0x60,0x28,0x43,0xb3,0xe7,0x01,0xdc,0x4b,0xfc,0xd4,0xa9,0x53,0x95,0x88,0xfb,0x45, - 0x74,0xb1,0xd2,0x7b,0xee,0x54,0xd8,0x23,0x4a,0x1f,0x54,0xc2,0x6e,0x7c,0x3e,0x89,0xe8,0xe5,0x9c,0xf9, - 0x8d,0x4a,0x0d,0xba,0x7d,0xe4,0xea,0xe6,0x29,0xa1,0x2d,0x42,0x46,0xce,0xea,0x29,0x3d,0x55,0x8e,0xfa, - 0x4c,0x97,0x8c,0xa4,0xa6,0x1e,0x6b,0x11,0x1f,0x3f,0x87,0xcf,0xab,0xb7,0xb4,0x06,0x89,0x6e,0xb0,0x17, - 0x91,0x50,0x56,0x79,0xd9,0xe5,0x61,0x72,0x36,0x82,0xcb,0x61,0xd6,0x10,0x4f,0x33,0xc0,0x7d,0x4e,0x04, - 0xbf,0xf4,0x21,0xa1,0x15,0x5d,0x49,0xc6,0xb3,0x3a,0x90,0x3f,0x17,0x1d,0x82,0x0a,0x51,0x90,0x41,0x70, - 0xe4,0xd6,0xfa,0xc1,0x69,0xdf,0x80,0x8a,0x3b,0x05,0x0a,0xd6,0xb7,0x23,0xca,0x19,0xf8,0x36,0xe2,0x66, - 0xc3,0x92,0xdd,0x7e,0x35,0xc3,0xc7,0x2e,0x2e,0x0e,0x00,0xe4,0xe6,0x90,0x7c,0x10,0x6c,0x84,0x84,0x2c, - 0xa1,0x74,0x11,0x94,0xa5,0x72,0xbd,0x80,0xf3,0x9f,0xc2,0x9d,0x51,0x74,0x64,0x3e,0xab,0x27,0x44,0xd9, - 0xc4,0xab,0xac,0x49,0x26,0x87,0x9f,0x68,0x64,0x47,0x3d,0x2b,0xdb,0x95,0x8f,0x67,0x45,0xe4,0x83,0x8f, - 0x40,0x83,0xe9,0x03,0xb2,0x41,0x24,0x1a,0x11,0x3b,0xc1,0x16,0xba,0x0a,0x6d,0xa1,0x5b,0x9a,0xa3,0xea, - 0xb0,0x39,0x4a,0x86,0x3c,0x60,0x89,0xac,0x21,0xaa,0xf0,0xf4,0x90,0x28,0x28,0x17,0x4d,0xe4,0xa8,0x67, - 0x96,0x3f,0x4d,0x26,0xd6,0xc9,0xeb,0x9b,0x7d,0x1a,0xe1,0xb7,0x31,0xd5,0x58,0xc4,0x53,0x05,0xbb,0x13, - 0xf6,0xc8,0x27,0x3e,0x91,0x08,0x34,0x1a,0x19,0xcd,0xcc,0xb7,0x31,0x47,0xc9,0x38,0x05,0xfa,0xf9,0x14, - 0xcf,0x59,0xb7,0xb6,0x3b,0xa5,0x3c,0xd1,0x64,0xe3,0xe6,0x2b,0x73,0x2b,0x00,0xed,0xfd,0x40,0x21,0x78, - 0x4a,0x6b,0x96,0xa4,0x30,0x7a,0x9c,0xa0,0x8a,0x49,0xaf,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0xfe, - 0x04,0x9c,0x97,0x7e,0x4b,0x7f,0xa5,0xcd,0xfe,0x07,0xd2,0x5c,0x4a,0x08,0xb7,0x72,0x62,0x32,0x5e,0xeb, - 0x29,0x94,0x91,0x4c,0x6c,0x4c,0xc1,0xa6,0xca,0xfa,0x33,0x28,0x31,0xd7,0x4a,0xdc,0xf7,0x05,0x40,0x39, - 0xda,0xcd,0x65,0x60,0xf4,0xf7,0x38,0xb2,0x9d,0x45,0xa3,0x1e,0xb7,0xad,0x69,0x5d,0x8c,0xe8,0x27,0xc5, - 0x32,0xbe,0xa8,0xd9,0x66,0xe3,0x2f,0xaa,0x55,0x36,0x99,0x76,0x42,0x14,0x0e,0x44,0x25,0x2b,0x0c,0xdd, - 0x84,0x43,0xd1,0x4c,0xd6,0xe1,0x91,0x6a,0x03,0x7b,0x75,0x98,0x87,0xf0,0xb6,0x67,0x58,0x18,0x0f,0xd9, - 0x85,0x9a,0x73,0x64,0x39,0x3e,0xcd,0x8a,0xd1,0xbd,0x8b,0x92,0x8e,0x53,0x04,0xc0,0x92,0xa7,0x51,0xd9, - 0xb0,0x70,0xe8,0x8c,0x48,0xa8,0xfc,0x0c,0x31,0x62,0x9b,0x25,0x82,0x2b,0x10,0x96,0x99,0x43,0x54,0x56, - 0x34,0xef,0x75,0xa3,0x6b,0x22,0x81,0x28,0x9b,0x52,0x27,0x06,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9b,0xe7, - 0x2d,0x82,0x65,0x98,0x8f,0xf1,0x1d,0x36,0x61,0x17,0x6b,0x14,0x4c,0xbc,0x66,0x6f,0xe2,0x22,0x10,0xd9, - 0x39,0x04,0xd4,0x44,0xa0,0x35,0x27,0xc4,0x13,0x2d,0xe9,0xdb,0x02,0x87,0x4c,0x92,0x9a,0x66,0xaa,0xc1, - 0xda,0x44,0x7b,0x39,0xcf,0xe8,0x93,0x4a,0x3e,0x09,0xe4,0xa3,0x04,0x0f,0xf1,0x69,0xe0,0xbf,0x52,0xc7, - 0x85,0x63,0x71,0x0a,0x38,0x8c,0x55,0xc4,0x36,0x55,0xb5,0x2e,0xce,0xca,0xb7,0xd6,0x4d,0x9a,0x26,0x86, - 0x20,0x83,0xb1,0x80,0x45,0x74,0x2c,0xca,0x24,0x66,0xd7,0x31,0xde,0x81,0x89,0x36,0xc7,0xb9,0xf2,0x39, - 0x6e,0xcb,0x3d,0x9a,0xf2,0xb6,0x33,0x6c,0x9c,0x2f,0x40,0x5b,0x90,0x28,0x9f,0x95,0x81,0x3e,0x62,0xcb, - 0x56,0x23,0x36,0x60,0x28,0x05,0xc5,0xd1,0xee,0xe7,0x1e,0xae,0xd7,0x42,0x9c,0xcf,0x69,0xf8,0xb0,0x87, - 0x0a,0x50,0x5a,0xe0,0xb4,0x11,0x06,0xb2,0x73,0xb2,0x03,0xd6,0xd6,0x36,0xab,0xa5,0xae,0xed,0xd9,0x83, - 0x72,0x26,0x85,0x89,0x0f,0xb6,0x48,0xe5,0x77,0x6b,0x40,0x71,0xd3,0x7d,0xcf,0xac,0xdf,0x49,0xdf,0x08, - 0x1b,0x11,0xde,0x3c,0x09,0x82,0xd3,0x4c,0x38,0x50,0xeb,0x11,0x07,0xa2,0xb1,0xd1,0xf9,0x5c,0xdb,0x14, - 0x77,0x34,0x56,0x56,0x89,0x5f,0x1d,0x6d,0x8b,0x89,0x24,0x8c,0x39,0xd8,0xf7,0x12,0x01,0x6a,0x34,0x64, - 0xdc,0x03,0x46,0xba,0x1b,0xf2,0x2c,0x43,0xbc,0x12,0xa2,0x2b,0xb3,0xbe,0x10,0x75,0x52,0xa6,0xac,0x72, - 0xdf,0x30,0x8f,0x13,0xdf,0x04,0xd7,0x17,0xd1,0xa8,0xb4,0xa1,0x46,0x25,0xd6,0x5e,0xb2,0x0b,0x82,0xf3, - 0x9b,0x6c,0x9f,0xd6,0xa4,0x9b,0xf6,0x68,0x1f,0x0b,0x64,0x02,0x7d,0x21,0xc1,0xfb,0xcb,0xf9,0x3d,0x58, - 0x5a,0x89,0xbd,0xc2,0x18,0x03,0x67,0xfe,0x35,0x7b,0xcd,0xc3,0xeb,0xb8,0x3f,0x69,0x74,0x72,0xc5,0xc1, - 0x02,0x66,0xcf,0xa0,0x8d,0xee,0x96,0x31,0xd6,0x58,0x1c,0xc9,0xc6,0x6f,0x96,0x43,0x89,0xdb,0x76,0x94, - 0x21,0xc4,0xca,0xa6,0x45,0xc1,0xf3,0xd6,0x85,0x38,0x39,0x46,0xbc,0x80,0x8e,0xed,0xe5,0xab,0x8e,0x7d, - 0x04,0xbb,0x28,0xe2,0x34,0xef,0x91,0x0b,0xec,0x9d,0x19,0x7c,0xf5,0xb2,0xed,0x50,0x26,0xfd,0xd5,0x99, - 0x84,0xae,0xf3,0xdf,0xec,0x1d,0xa4,0x9b,0xba,0x9a,0x49,0xe8,0xf4,0xdf,0x2b,0x0d,0x55,0x9d,0xda,0x8e, - 0x5d,0x1c,0x05,0x09,0x24,0x76,0x04,0x8c,0x6f,0xe3,0x28,0x94,0x12,0x01,0x9b,0xdd,0x56,0xb5,0x41,0x77, - 0x81,0x58,0xf1,0x45,0xcf,0x44,0x80,0xd5,0xa4,0x0c,0xa7,0x50,0xc0,0x30,0x78,0x1e,0x33,0xae,0xeb,0xc3, - 0xa5,0x0d,0xd4,0x0b,0xb3,0x77,0xb6,0x74,0x34,0x7c,0xc1,0x2b,0x48,0xca,0x36,0xec,0x8d,0xc6,0x0d,0x04, - 0xc8,0x4c,0x02,0x3c,0x03,0x2d,0x56,0x31,0x83,0x17,0x92,0x36,0xcf,0x36,0x74,0x0d,0x6c,0x89,0xbf,0x5d, - 0xb0,0xc7,0x16,0xa3,0x18,0x38,0xac,0xe1,0x17,0xb7,0x84,0xb8,0x16,0x5e,0x1a,0x32,0x79,0x74,0x6f,0x46, - 0x43,0xac,0x2b,0xb8,0x6c,0xb5,0x4e,0xef,0x3f,0xe7,0x3b,0x2f,0x03,0x2f,0x80,0x36,0xf4,0xec,0xbe,0x11, - 0x21,0xf3,0x53,0xe8,0x09,0xd2,0x77,0xbc,0xe7,0x7d,0x82,0x2a,0xc3,0x37,0x3a,0x80,0xb9,0x14,0x4c,0xcb, - 0xf8,0x89,0x08,0x0e,0xf3,0x84,0xe0,0xc8,0xf8,0x3d,0x4a,0xcd,0x43,0x68,0xd6,0xdf,0x5d,0xfe,0x76,0xa2, - 0x27,0xed,0x6e,0xb4,0x15,0xed,0xea,0xb4,0x4d,0x39,0x3a,0x7f,0x60,0x44,0x1e,0x02,0xd8,0x06,0xa0,0x0c, - 0x1d,0x8e,0x34,0x59,0x08,0x1d,0x48,0xbb,0x13,0x7a,0x2a,0xb7,0x3b,0x1f,0x55,0xbc,0x43,0x89,0xd0,0xcd, - 0x50,0x27,0x36,0x1e,0x48,0x2f,0xbe,0xd8,0x0d,0x02,0x02,0xfc,0xdf,0xcd,0xa8,0x17,0x89,0xa2,0xdf,0x32, - 0xd8,0x95,0xac,0xa4,0xe9,0xb7,0x26,0xe8,0x32,0x8a,0xc6,0x1d,0xf1,0x5c,0x6b,0x62,0x02,0xc4,0xda,0x84, - 0xde,0x45,0x75,0x3a,0xac,0x8e,0x37,0xf0,0x20,0x40,0x77,0x4d,0xdd,0xc3,0x61,0xe7,0xdc,0x7a,0xd4,0x5c, - 0x9c,0x45,0x69,0xb4,0xc8,0xdb,0x73,0x36,0x34,0x9a,0xc8,0xe3,0x86,0xb6,0xe8,0x49,0x6b,0xa3,0xfb,0x6c, - 0x6a,0x38,0x6d,0x8d,0x2e,0xea,0xde,0xef,0x2b,0x5d,0x5f,0x7f,0xd0,0xd0,0x43,0x57,0x72,0x0f,0xcd,0x5d, - 0xb1,0x34,0x67,0xc5,0x45,0x34,0xa4,0x4a,0xf9,0xb1,0xb7,0x57,0xd8,0xe6,0xb2,0xd6,0xa7,0x3d,0x1f,0x21, - 0xeb,0x79,0x5d,0x84,0x6e,0xdc,0x16,0x4c,0x81,0x21,0xe0,0xa0,0x5d,0xc1,0x72,0x9e,0xbe,0x6d,0xc6,0x7d, - 0xb5,0x4a,0xc5,0xd6,0x50,0x73,0xfe,0xc5,0xe1,0x8f,0x5f,0x1c,0xb2,0x38,0x60,0xf1,0x68,0x08,0xf9,0xd4, - 0xb7,0xff,0xb2,0x7c,0x51,0xd5,0x83,0xb5,0xe0,0xaf,0x43,0x19,0x05,0xe1,0xe3,0x9d,0x1d,0x4e,0x62,0x8c, - 0x6c,0xeb,0x26,0xf8,0x90,0x87,0x22,0x00,0xdc,0x9f,0x44,0x88,0xed,0x63,0x6c,0x81,0xc6,0xc3,0x51,0x4f, - 0xbf,0x2c,0x64,0x92,0xfd,0x68,0x8e,0xfe,0xd0,0x3f,0x9c,0x75,0x7e,0xde,0x78,0x4c,0x1b,0xe3,0x54,0x8e, - 0xc4,0x42,0x14,0x01,0x3f,0xf7,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x09,0x16,0x51, - 0xc3,0x1b,0x31,0xae,0xcd,0x9c,0x8b,0x30,0x34,0xf3,0x0c,0x79,0xcd,0xba,0x3a,0x9a,0x53,0xcd,0x7e,0x65, - 0x9f,0x29,0xe3,0x44,0x89,0xb0,0xae,0xbb,0xbd,0x5d,0x15,0xec,0xd0,0x48,0x3f,0xc4,0x0d,0xf2,0x80,0x41, - 0x57,0x60,0x34,0x8f,0x21,0x55,0x7a,0x87,0x50,0x59,0xe7,0xd5,0x9c,0x38,0x75,0xae,0xa1,0x23,0x7b,0xc2, - 0x38,0xc3,0x04,0x50,0xc6,0xdd,0x14,0x23,0x93,0x0b,0xed,0xf7,0x5b,0x11,0x50,0x38,0xed,0xb2,0x38,0xc9, - 0x61,0x63,0x15,0x44,0x42,0x14,0x8f,0xb2,0x7a,0xbc,0xbb,0x5b,0xd0,0xd6,0x85,0x05,0x63,0x71,0x64,0x08, - 0xed,0x38,0xc7,0x61,0xef,0x3d,0x2d,0x03,0xcf,0x93,0x3f,0x0c,0x4c,0x9a,0x18,0x79,0x81,0xc3,0xd7,0xed, - 0xad,0xee,0x27,0x75,0xe7,0xdd,0x42,0xb2,0x70,0xc3,0x19,0x56,0x6e,0x09,0xaf,0x3d,0x2d,0x0f,0x4d,0xf6, - 0x73,0xbb,0x59,0xab,0x8f,0x2c,0x00,0x0e,0x8c,0x4a,0x6c,0x34,0xa2,0xb4,0x2f,0xb1,0x22,0xb2,0x83,0x48, - 0x61,0xc3,0x64,0x95,0x22,0x61,0xa9,0xb3,0x46,0xb8,0xf9,0x29,0x7e,0xea,0x09,0xcd,0x1a,0x4d,0xf1,0x4f, - 0x10,0x7c,0x65,0xd6,0x11,0xf7,0x77,0x30,0xba,0x46,0x07,0x1a,0x29,0xdc,0x79,0xa0,0x0a,0x18,0x4d,0xe0, - 0x24,0xa0,0x1f,0xbf,0xaf,0x44,0x16,0x3d,0xdb,0xd9,0x99,0x5b,0xa0,0x26,0xde,0x45,0xbe,0x86,0xcf,0xda, - 0xd0,0xb7,0x45,0x49,0x34,0x39,0x7f,0xb3,0x72,0xdf,0x60,0x0b,0xaf,0x3a,0x51,0x6d,0x4e,0x87,0x64,0xe3, - 0x62,0x9c,0xb7,0x0a,0x4d,0xf2,0xa8,0xad,0x15,0xc6,0x11,0xd9,0x6a,0xa5,0xc9,0xf5,0xb8,0x9a,0xfc,0x00, - 0x7f,0x29,0x49,0x8e,0x20,0x83,0x3e,0x8d,0xd9,0x29,0x60,0xee,0x22,0x7f,0x70,0x01,0xc4,0x11,0x34,0xe1, - 0x03,0xef,0x6c,0x71,0xde,0x6b,0x71,0xce,0x2d,0xf6,0x27,0xc1,0xb4,0xcc,0x6c,0xb8,0x9b,0xef,0x26,0x99, - 0xb2,0xd7,0x19,0x7d,0xc5,0xd3,0x1e,0xad,0x4a,0x99,0x98,0x96,0xfe,0x41,0x10,0xdb,0x35,0xd8,0xfd,0xb9, - 0x83,0xe3,0x86,0xa2,0xee,0xf4,0xcc,0x71,0xcd,0xf6,0x1c,0x8b,0xd9,0xc7,0x86,0xca,0x34,0x2e,0xd8,0x14, - 0x37,0x19,0x99,0xb8,0xe0,0xac,0x13,0x2f,0xfc,0x5b,0x76,0x51,0x24,0xaa,0x3c,0x24,0x78,0x27,0x18,0x1c, - 0xd5,0xf9,0xe5,0x1b,0x26,0xa3,0x2a,0x26,0xa7,0x76,0xa3,0x51,0xb4,0x1b,0xda,0x83,0x54,0x61,0x35,0x90, - 0x15,0x48,0xd8,0xd5,0x51,0x94,0x24,0xb4,0x3f,0x64,0x99,0x89,0x53,0xd2,0x01,0xa7,0xe4,0x01,0x93,0x0e, - 0x4a,0xae,0x35,0x31,0x71,0xeb,0x37,0x4d,0x60,0x7f,0x6f,0x37,0xa5,0xcf,0xad,0x80,0x0e,0xff,0x18,0xbb, - 0xc9,0x8a,0x0d,0x23,0xab,0xb8,0x94,0x50,0x1b,0xa6,0xbc,0x31,0x8e,0xac,0x61,0x1c,0x59,0xcb,0x85,0x09, - 0x7c,0x0c,0xf8,0x1e,0xf0,0x35,0x28,0x32,0x2e,0x50,0x00,0xde,0x78,0x32,0x70,0x85,0x68,0xe3,0x80,0x02, - 0xda,0x34,0xdc,0xe6,0xd9,0x8f,0x35,0x63,0x2d,0x71,0x9d,0xea,0x12,0xa1,0x45,0x79,0xae,0xeb,0x82,0xe3, - 0x6d,0xd3,0x0c,0xb5,0xb1,0x20,0x43,0x87,0x04,0x5b,0xeb,0x29,0x20,0x09,0x86,0x39,0x60,0x3e,0x89,0x1a, - 0xc3,0x68,0xa6,0x59,0xf8,0x09,0x0b,0xc7,0x57,0x59,0xdd,0x4b,0x62,0x7e,0xcc,0x88,0x86,0x10,0x0e,0xa1, - 0x53,0x20,0x63,0x2d,0xf4,0xca,0xb8,0x4b,0x30,0xb5,0xb8,0x4a,0xf2,0x6c,0x05,0x0a,0x7f,0x2a,0xcc,0x4c, - 0x4e,0xa0,0x0f,0x49,0x29,0xf8,0xb6,0x71,0xfc,0xae,0xbc,0xbd,0x7d,0x0f,0x83,0x8e,0x95,0x6c,0x7e,0x88, - 0x2b,0xe4,0xc9,0x14,0xb3,0x02,0x76,0x93,0x1f,0x54,0x3c,0x4d,0xb0,0xfb,0x2a,0xb6,0xc5,0xd7,0x40,0xe2, - 0x13,0x04,0xb7,0x43,0x60,0x5a,0x17,0x71,0xfc,0xcd,0x87,0xb8,0x2d,0x54,0x89,0xcc,0x24,0xfd,0x17,0x7d, - 0x97,0x20,0xd0,0x66,0xaf,0x10,0x32,0x83,0x55,0xf8,0x21,0x34,0x10,0xf8,0x67,0xcd,0x4e,0x77,0x05,0x07, - 0xc8,0xde,0xf8,0x50,0x43,0x54,0x92,0x45,0x44,0x69,0x57,0x97,0xa7,0xb4,0x3f,0x1a,0xda,0x2b,0xba,0x8c, - 0x24,0xec,0x58,0xf4,0xfc,0xf5,0x93,0xe7,0xcf,0x8c,0xad,0xb4,0xf0,0xf8,0x93,0xa8,0xad,0x69,0x2c,0x29, - 0x94,0xfc,0x9d,0xc0,0xe8,0xec,0xf5,0xe6,0xec,0xa1,0xfe,0x55,0x9b,0x10,0x02,0xdd,0x22,0xdc,0x0b,0xa2, - 0x1a,0x4f,0x73,0x2a,0x87,0x7a,0xcb,0x89,0x79,0x4e,0xa5,0x5e,0x5f,0x83,0x2e,0x3e,0xd3,0x6d,0x37,0x29, - 0x1a,0xf7,0x77,0x74,0x5a,0x91,0x2c,0xed,0xcc,0x17,0xa8,0x2a,0xae,0x24,0x19,0x1a,0xbb,0xd8,0xcf,0x50, - 0x91,0x77,0xf0,0x6f,0x7b,0x0d,0xaf,0x89,0x8f,0xcf,0x7f,0xf9,0xf8,0xf8,0xfd,0xf3,0xc7,0x9d,0x51,0x53, - 0xfa,0xd2,0x9f,0xa5,0x66,0x76,0x38,0xa6,0x66,0xa1,0x97,0xe7,0x96,0x74,0x0a,0x6d,0x01,0x35,0x11,0xdf, - 0xd5,0xf2,0x25,0x11,0x11,0xb3,0x82,0x70,0x0f,0x2c,0x6b,0xf2,0xb3,0x5c,0x90,0xa3,0xb2,0x5d,0xe9,0xdd, - 0xf1,0x22,0x14,0x04,0x2c,0x45,0xc6,0xed,0xc0,0x15,0x30,0x2e,0x5b,0xd9,0x86,0xb3,0xed,0xfd,0xf5,0xc0, - 0x32,0x04,0x90,0xf0,0x4b,0x6f,0x3f,0x5a,0xd2,0x8d,0x83,0xef,0xe4,0x66,0xaf,0xc8,0xa6,0xc4,0xb5,0x95, - 0x21,0xc3,0x80,0xdd,0x56,0x19,0x5e,0x81,0xe5,0x16,0x90,0xcb,0x82,0x39,0xea,0x17,0xca,0x4d,0xa1,0xc4, - 0xe9,0x56,0x06,0x69,0x7d,0x7b,0x27,0x1a,0xfc,0x28,0x0a,0x98,0x2e,0xc5,0x03,0x5c,0x50,0x32,0x06,0xc6, - 0x1d,0x62,0x8f,0x84,0x8b,0xe3,0x4b,0x2e,0x67,0xec,0x8d,0x4b,0x60,0xfb,0xa6,0x35,0x04,0x19,0xc3,0x1e, - 0x5b,0xd2,0x0b,0xd1,0xe4,0xcc,0xe8,0x39,0x58,0x46,0x58,0xbe,0x54,0x86,0x9c,0xf3,0x2a,0xb9,0xac,0xc3, - 0x28,0xf1,0xac,0x08,0x5f,0xa4,0x79,0xb3,0x41,0x4a,0x38,0x79,0x07,0x61,0xd3,0x6b,0xd6,0x1f,0x11,0xf1, - 0x3f,0x36,0x58,0x87,0x2d,0x93,0x21,0x0c,0x3a,0xe6,0xb8,0xb1,0x05,0xc6,0xcc,0x95,0x68,0x22,0x8b,0x59, - 0x42,0x19,0x37,0xd9,0x3b,0xa0,0x80,0xd7,0x2d,0x4b,0x10,0x15,0x5c,0xb3,0x0a,0x18,0x60,0xea,0x0b,0x2e, - 0x38,0x70,0x07,0x81,0x58,0x7d,0xa9,0x06,0xa7,0xbe,0x2f,0x98,0x35,0xe1,0xb2,0x7e,0xdb,0x6e,0x38,0xc9, - 0xc5,0x6c,0x97,0x15,0x38,0x6c,0xb4,0xc6,0x2c,0xfc,0x9c,0x70,0xbb,0x5c,0xf2,0x40,0xed,0x9f,0x67,0xc5, - 0xee,0xc1,0x3a,0x20,0x9b,0x18,0x75,0x6e,0x1f,0x88,0x2a,0x74,0x85,0x3f,0x73,0xb6,0x10,0x27,0x96,0x6c, - 0x49,0xff,0x67,0xf4,0xdf,0x3a,0x64,0x0e,0x08,0x51,0xb0,0xb9,0xd8,0x24,0xb7,0x0d,0xe3,0x62,0xd1,0x89, - 0xd8,0x24,0x5f,0x7c,0x2d,0xb6,0xdd,0x5f,0x3f,0xa4,0x21,0x8b,0x7c,0x74,0xfb,0xc0,0xef,0xc9,0x69,0xf2, - 0xc5,0x97,0xbd,0x02,0xd3,0x4e,0x81,0x55,0xf2,0xf5,0xdf,0x7b,0x05,0x56,0x9d,0x02,0xf3,0xe4,0xcb,0xff, - 0xea,0x15,0x98,0x77,0x0a,0x1c,0x3c,0xfc,0x12,0x1c,0xe3,0xed,0x2d,0x3d,0xf0,0x66,0x0e,0xbb,0xb8,0x7b, - 0x90,0x0c,0x67,0xec,0x21,0xe3,0xf4,0xf6,0x76,0x49,0xfc,0x55,0x72,0xd3,0x5c,0x16,0xc6,0x63,0x60,0x9a, - 0x53,0xad,0x5f,0x7c,0x99,0xc2,0xf0,0x40,0x8c,0x66,0xc7,0x92,0xf4,0x75,0xda,0xf4,0x92,0xbe,0xfe,0x7b, - 0xba,0xea,0x25,0x7d,0xb9,0x9f,0xce,0x76,0x77,0x3b,0x29,0x07,0xe9,0x6c,0x6f,0xaf,0xf3,0xd9,0x41,0xba, - 0xec,0x96,0xf9,0xfa,0x8b,0x74,0xd9,0x2d,0x73,0xf0,0xf0,0x8b,0xf4,0xb4,0x5b,0xe8,0xe0,0xe1,0x57,0xe9, - 0xe9,0xde,0x1e,0x28,0x33,0x99,0x10,0xbf,0xe7,0x2e,0x32,0x1a,0x8e,0x5a,0x18,0x96,0x6b,0x7c,0xc1,0xe1, - 0x25,0xc5,0xf9,0x25,0x5e,0x98,0x71,0xd3,0x98,0x2f,0x20,0x56,0xd9,0xdb,0x4b,0xc6,0x8b,0x9d,0x9d,0x63, - 0x13,0xc3,0x77,0x91,0xb0,0x86,0x00,0x86,0xfe,0x22,0x70,0x75,0xf6,0x23,0xd5,0x24,0x66,0x28,0x62,0x96, - 0xdd,0x5e,0x1a,0xed,0x41,0x2c,0xd5,0xa2,0x62,0x09,0xca,0x0f,0x16,0x4c,0xe1,0x26,0x7f,0x0e,0x2e,0x07, - 0x97,0x80,0x78,0xf8,0xca,0x43,0xf8,0xaa,0xb2,0x01,0x7a,0x3f,0xf3,0x92,0xbb,0x28,0x8e,0x44,0xc0,0xf9, - 0xc8,0xde,0x4b,0x72,0xff,0x98,0x52,0xef,0x13,0x71,0x72,0x3f,0x4a,0xe2,0xfb,0x1c,0x85,0x3e,0x1a,0x77, - 0xb3,0x5c,0x5f,0xca,0xc4,0x97,0x52,0x91,0xcb,0x28,0x09,0x36,0xd6,0x90,0x2d,0x87,0x12,0xbf,0x2a,0x70, - 0xbc,0xe3,0xcd,0xd7,0x75,0x72,0x8e,0x0e,0x7f,0x5a,0x21,0xc2,0x1a,0x9b,0x44,0xd5,0x47,0x1c,0x18,0x38, - 0xa0,0x4a,0xff,0xd5,0x17,0xa3,0xb4,0xa3,0x45,0xbe,0xec,0x9a,0x9e,0xf8,0x30,0x40,0xeb,0x4d,0xeb,0xf2, - 0xa0,0xc0,0x3a,0x49,0x0f,0x03,0x6b,0xa2,0x7f,0xba,0xb3,0x3e,0x6e,0x9d,0x76,0xde,0x06,0x08,0xf1,0xd8, - 0xe0,0x86,0xef,0xf0,0xd0,0xca,0xc4,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0x2c,0xf4,0x25,0xe2,0x08,0xfb, - 0xb6,0xb2,0xbe,0x05,0xe8,0x7f,0x5a,0x99,0xd6,0xde,0x4a,0x90,0x6b,0x78,0x9d,0x2f,0x25,0x0e,0x91,0x79, - 0xc7,0xd1,0x76,0x47,0x85,0x81,0x07,0x9e,0xf6,0x34,0x2d,0x34,0xa1,0xc0,0xef,0xac,0xd7,0xb6,0x1e,0xaa, - 0x3e,0xce,0x50,0xed,0xdc,0x62,0x75,0x16,0x6d,0xc3,0x65,0x87,0x90,0x3d,0x4c,0x2a,0xc3,0x22,0xec,0x40, - 0x4b,0xf9,0xff,0xd7,0xe4,0x1b,0xff,0xd9,0xb0,0x88,0x75,0xa9,0xa5,0x52,0x3b,0x5c,0x8a,0x70,0x32,0x7c, - 0xc3,0xe5,0xd8,0x87,0x61,0x49,0x71,0x76,0xde,0x4e,0x62,0xca,0x37,0x44,0xf2,0x42,0x97,0xab,0x48,0xb9, - 0x0a,0x38,0x3f,0x49,0xeb,0xd1,0xa2,0x98,0xcd,0xe6,0x12,0x82,0x26,0x5a,0x54,0xab,0x46,0xaf,0x96,0x91, - 0x35,0xf8,0x1d,0xd7,0x46,0x4d,0x3d,0xf1,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x61, - 0x02,0xab,0xc5,0x53,0x14,0xd3,0xbe,0x80,0x76,0x59,0xc6,0x72,0xcf,0x06,0x16,0x5c,0x8f,0x71,0x51,0xeb, - 0x05,0x64,0x67,0x4d,0xc0,0xb9,0x98,0x6b,0xdd,0xa7,0x19,0x2e,0xe5,0x19,0x6f,0xe8,0xfe,0x8a,0xc9,0xd4, - 0xdd,0x2c,0xde,0x38,0x37,0xbd,0x46,0x2e,0xf2,0xc9,0xa6,0x94,0x7f,0xd8,0xa8,0xe9,0x51,0x7a,0x38,0x55, - 0xcd,0x51,0xda,0x0c,0x82,0x40,0xed,0x40,0x40,0x28,0xa4,0x82,0x6f,0x70,0x60,0x6f,0xaa,0xdb,0x5b,0x79, - 0xb9,0xd8,0xe3,0xd8,0x2c,0x48,0xe2,0x9d,0xcc,0x31,0x78,0x6d,0x18,0x4d,0x1c,0x74,0xa2,0xc2,0x10,0x2f, - 0x18,0x4b,0xc8,0x14,0xda,0xc5,0x61,0x93,0x0f,0x0a,0xfb,0x41,0x2f,0xd4,0x6d,0x11,0x9e,0x9a,0x45,0xb7, - 0x37,0xfe,0x6b,0x96,0xcc,0x04,0x20,0x1a,0x46,0xc2,0x09,0x60,0xd5,0x58,0xed,0x17,0x7d,0xab,0x7d,0xe8, - 0x96,0xe0,0x14,0xc1,0x57,0xaa,0x20,0x50,0xe8,0x4d,0x61,0x63,0x67,0x55,0x88,0x9d,0x25,0x2e,0x16,0x96, - 0x5d,0x73,0x7e,0x8c,0x9d,0x26,0x43,0x2b,0xfe,0xaa,0x37,0x6b,0x62,0xa5,0x5f,0x64,0xd1,0xbd,0x7b,0x17, - 0x84,0xcc,0x18,0x81,0x82,0x70,0xc8,0xa2,0xd8,0x88,0x0b,0x29,0x63,0x8b,0x5a,0xde,0xba,0x2f,0x23,0xbf, - 0x3f,0x41,0x8a,0x45,0xb4,0x78,0x4e,0x20,0x2b,0x1d,0x89,0xb3,0x83,0x7c,0x7a,0x4c,0x7c,0xe7,0x6e,0x01, - 0xf4,0x68,0xf8,0xc9,0x2c,0x07,0xf5,0x58,0x20,0x60,0x3d,0x1b,0xdd,0x58,0xf0,0x21,0x1c,0x0b,0x5e,0x2f, - 0x21,0xee,0xfc,0x6a,0x89,0xeb,0x06,0xa9,0x8b,0xe9,0x7d,0x83,0x63,0xef,0x2b,0x6b,0x9a,0xe3,0x43,0x9b, - 0x6c,0xc5,0x68,0x70,0xeb,0x26,0xda,0xad,0x76,0xa3,0x75,0x14,0x2c,0x40,0xae,0x43,0x34,0x1e,0x22,0x37, - 0x9a,0xc2,0x1f,0x6b,0x1f,0xc0,0x30,0xb8,0xcc,0xea,0x30,0x4a,0x1e,0xed,0x43,0xea,0x88,0xdb,0xb9,0x5e, - 0xda,0xd4,0x23,0x4a,0xfd,0xb1,0x76,0x51,0x7a,0xe3,0x3f,0xf8,0xe3,0xb0,0x04,0x78,0xea,0x6f,0xf6,0x0e, - 0x26,0x37,0xd4,0xeb,0xd4,0x9f,0x3f,0x7f,0x10,0xc5,0x46,0xac,0x38,0x0f,0xc0,0xa6,0xfe,0x51,0x13,0xc6, - 0xc7,0x60,0xd6,0xa9,0x94,0xe6,0x12,0x1c,0xa7,0x89,0x09,0x9f,0x9f,0x40,0xb2,0x52,0x0b,0x3f,0xd7,0xd9, - 0xef,0x10,0x11,0x6c,0xb3,0xb3,0x5d,0xb2,0xd2,0xf1,0x77,0x75,0x86,0xf0,0xc3,0xc9,0x64,0x8e,0xe7,0x24, - 0xfd,0x1a,0x2c,0xed,0x77,0x75,0x28,0xa6,0xb2,0xf2,0x67,0xf1,0x90,0xa4,0x2a,0xfe,0xa8,0x6d,0x05,0x1c, - 0x58,0x96,0xef,0xe1,0x5a,0xc1,0xef,0x3b,0xe1,0xa0,0x86,0x8e,0x7c,0xe1,0xba,0x20,0x80,0xdc,0xdd,0x55, - 0x5f,0x7f,0x61,0x9e,0xf7,0xf6,0xd8,0xd4,0x8e,0xe6,0xf0,0x77,0xae,0x49,0x40,0x6b,0x8d,0xc6,0x6d,0xcc, - 0xf3,0xee,0x78,0x7f,0x36,0xe3,0xb5,0x29,0x3f,0xd3,0x58,0xd5,0xef,0x35,0xd4,0x8d,0x5e,0x93,0x6c,0xdc, - 0x3b,0xd9,0x37,0x62,0x62,0x6e,0xb4,0x49,0xa3,0x7b,0x44,0x97,0xc6,0xb8,0x43,0x91,0x6a,0x34,0x77,0x76, - 0xa1,0x80,0x3c,0x32,0x44,0x04,0x4e,0xa8,0xda,0xdb,0x0f,0xff,0x54,0x87,0x04,0xd5,0xee,0xee,0x1f,0xa1, - 0xe9,0xfb,0x34,0x28,0xf8,0x47,0xfd,0x4d,0xf6,0x63,0x00,0xf7,0xab,0x30,0x6a,0x38,0x93,0x87,0xed,0xed, - 0x2d,0xd3,0x91,0x81,0x10,0x9b,0x27,0x29,0x74,0x36,0x94,0xd9,0x64,0x07,0x5a,0x5e,0x0b,0xf8,0x65,0x8c, - 0x93,0x71,0xe0,0x98,0xa7,0x43,0xa9,0x88,0x46,0xa4,0x0a,0x9d,0x8c,0x8e,0x71,0x5d,0xe4,0xc7,0xbc,0x81, - 0x61,0x4f,0xe5,0xdf,0x42,0xa9,0xd9,0xb9,0xf7,0xf0,0xcc,0xaa,0x3b,0xe2,0x49,0x98,0xde,0x9e,0xb3,0x5f, - 0x25,0x9d,0xcd,0x7c,0x17,0x63,0xf7,0xc6,0x17,0xbf,0x91,0xbf,0xaf,0xfb,0xe1,0x68,0xb7,0x8a,0xd8,0x5f, - 0x0f,0x38,0xdc,0xc4,0xce,0xce,0x92,0x37,0xa6,0xf8,0xb0,0xad,0x11,0xc2,0x18,0x71,0x09,0xd4,0xf7,0xf5, - 0x26,0x8f,0x88,0xd6,0xbe,0x2b,0x27,0x37,0xe6,0x1c,0x84,0xa5,0x8e,0x9c,0x65,0x08,0x2b,0x67,0xf0,0x7d, - 0x40,0xc9,0x2c,0xb5,0xd7,0x59,0xc5,0x74,0xaa,0x7e,0x5f,0x27,0x83,0x9c,0x29,0x22,0x5a,0x05,0xf3,0xd5, - 0x75,0x06,0x98,0xe9,0xd8,0x46,0xa5,0xda,0x76,0x02,0x9b,0x0a,0x6c,0xfe,0xb6,0x13,0xd7,0xe0,0x16,0x00, - 0xc7,0x83,0x9a,0x14,0x46,0x6a,0x55,0x56,0x86,0xef,0xe3,0xef,0x6b,0xc3,0xa4,0xf6,0x90,0x03,0x75,0xf4, - 0xf0,0x04,0x7a,0x20,0x83,0x3b,0xde,0x95,0x93,0xc8,0x5c,0x7f,0x9d,0x5a,0xeb,0x44,0x0e,0x12,0xed,0x7d, - 0x01,0xf8,0x03,0x0e,0xf7,0xcc,0x7e,0xe6,0xfe,0xea,0x71,0x4a,0x5e,0xa3,0xbe,0xcb,0x42,0x62,0x20,0x8c, - 0xa4,0xa2,0xce,0xa7,0x97,0xf8,0xd4,0x64,0xf4,0x3e,0xc7,0x67,0x6b,0xf0,0x38,0xdf,0xb3,0x8a,0xfe,0x54, - 0xab,0xa5,0x56,0xb5,0x97,0x19,0x7f,0xef,0x42,0x02,0x04,0x0e,0x87,0x43,0x73,0x64,0x1d,0x6e,0x3a,0x33, - 0xe5,0x12,0x43,0x11,0xbb,0x4c,0x49,0x93,0xf5,0x3e,0xec,0x4a,0xb7,0xc2,0xd4,0xbb,0x04,0x5c,0xce,0xc7, - 0xa7,0x23,0xe3,0x2a,0x44,0xce,0x0a,0x51,0x54,0x61,0x22,0xd6,0x15,0x47,0x59,0x14,0x05,0xb9,0x2b,0x73, - 0xcb,0x20,0x4a,0x28,0xbe,0x2b,0xda,0xde,0xdd,0x6c,0xdc,0x93,0x8a,0x92,0x00,0xe5,0xbb,0x8f,0xaf,0x5f, - 0x71,0x02,0x97,0xae,0x87,0x43,0xe0,0x06,0x26,0x50,0x15,0x95,0x6d,0xd0,0x26,0x26,0xaf,0x28,0x57,0x7a, - 0x0c,0x9c,0x97,0x4b,0xd1,0x37,0x70,0xd2,0x72,0xa2,0xe6,0xdc,0x00,0xe6,0x53,0x64,0xc5,0x61,0x11,0x98, - 0x1f,0xf1,0xb5,0xc6,0x22,0x65,0x93,0xe6,0xf3,0xd1,0x31,0xbf,0x66,0x95,0xb1,0x62,0x6c,0x21,0x5c,0x8b, - 0x22,0x1b,0xf1,0xbe,0x4a,0xc6,0xcb,0x6c,0xae,0xb6,0xe3,0xd3,0x2c,0x4f,0x44,0xda,0xd0,0x50,0x3a,0xac, - 0xb3,0xdf,0xbe,0xfb,0xf8,0xf2,0xed,0x1b,0xd4,0x73,0x6a,0xc5,0x3f,0xc4,0x10,0x0e,0xb0,0x21,0x84,0x1b, - 0xd8,0xc1,0xdc,0x5f,0x8c,0x25,0x8e,0xd2,0x46,0x0f,0xc7,0xd7,0x1c,0xb8,0x38,0x43,0xc1,0xf1,0xdf,0x3a, - 0x31,0xa1,0x5e,0xc7,0xa7,0x6a,0x99,0x74,0xaa,0x0f,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x6b,0x4b,0xb6, - 0x89,0xf9,0x5a,0x91,0x18,0x93,0x96,0x79,0xfe,0xc7,0xb5,0x0f,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x5b,0x82, - 0x68,0x2a,0xae,0x6a,0x53,0x13,0xf4,0xad,0x60,0xaa,0xc0,0xdb,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68, - 0x3b,0x0a,0x92,0xb1,0x94,0xfe,0x31,0x48,0x48,0x6f,0xb2,0xb9,0xb1,0xbf,0x61,0x10,0xa9,0xe4,0x16,0x40, - 0x2a,0x13,0xf8,0x75,0x6a,0x7f,0xe6,0x2d,0x34,0xab,0xa4,0xaf,0xe7,0x3e,0xd2,0xb0,0x55,0x51,0x7f,0x40, - 0xea,0xe4,0x22,0xee,0xbc,0x73,0xec,0x84,0xc0,0x9b,0x51,0x7f,0x4e,0xa1,0xbc,0xb8,0x43,0x3b,0xfb,0xa9, - 0xe8,0xc5,0x2e,0x39,0xd3,0x5d,0x19,0x18,0x0b,0x8c,0xaa,0x9e,0xec,0xab,0x08,0xfb,0x91,0x88,0x2e,0xac, - 0x71,0xcf,0xd5,0x46,0x6e,0x65,0x72,0x93,0x20,0xe2,0x8f,0xd9,0xa7,0xab,0xac,0x53,0x5c,0xcd,0x61,0x90, - 0x5a,0xd5,0x0b,0xbe,0x4e,0x7e,0xc6,0x69,0x50,0x10,0x34,0xf2,0x40,0xfb,0xf0,0x34,0x5b,0xdd,0xde,0xce, - 0xd5,0x12,0xf3,0x65,0x36,0xaa,0x54,0xce,0x5b,0xd9,0xa4,0xf4,0x6a,0xc8,0x60,0x04,0x6f,0x76,0xb8,0xf8, - 0x4d,0x2d,0x93,0x74,0x39,0x16,0xc3,0xd6,0x2e,0xb4,0x86,0xda,0x76,0xa6,0x23,0xdb,0xf1,0x80,0x80,0xed, - 0x3f,0x12,0xbc,0x5d,0x38,0x4d,0x68,0x02,0xfb,0x16,0x76,0x16,0x93,0xe4,0xb6,0x9f,0xec,0x1d,0x97,0x61, - 0x69,0x5b,0x8d,0x6c,0xfc,0xb5,0xaa,0x53,0x5b,0xd5,0xff,0xcc,0xab,0xf4,0x6b,0xa9,0x83,0x43,0x63,0x9e, - 0x12,0x92,0x9a,0xc1,0xa6,0x71,0x67,0xe7,0x31,0x2c,0x11,0x1b,0x65,0xb1,0x14,0x67,0xcf,0x92,0x38,0xcf, - 0x38,0x9f,0x80,0xf7,0x94,0x7e,0x5d,0x31,0x13,0xeb,0x04,0x18,0x20,0x0f,0x59,0x82,0x6b,0x1d,0x7a,0xa5, - 0x71,0xa4,0x50,0x23,0xc7,0x90,0x08,0x1c,0x2c,0x8c,0x63,0x13,0xc2,0x40,0xe8,0xb0,0x15,0x31,0x65,0xa9, - 0x8d,0x5d,0xcb,0x83,0x5f,0x9b,0xdd,0x07,0x89,0xbb,0xc4,0x69,0xc0,0x23,0x3c,0xa8,0x87,0x83,0x6b,0x21, - 0xb0,0x58,0xba,0x99,0x18,0x06,0xd9,0x85,0x86,0x25,0x66,0x27,0xf2,0x0d,0xd1,0x60,0x62,0xac,0x2f,0xb7, - 0x70,0xf3,0x63,0xd0,0x29,0xd6,0xc8,0x44,0xac,0x24,0x6f,0x87,0x65,0x8a,0x71,0x49,0x5c,0x96,0x1d,0x60, - 0x18,0x7b,0xff,0xff,0xf7,0x59,0x10,0x64,0xbe,0x39,0x11,0x2e,0x5d,0x85,0xa9,0x72,0x08,0x80,0x09,0xe8, - 0x8b,0xf0,0xed,0x94,0xc8,0xd4,0x79,0x59,0xf3,0x5f,0x9a,0x3e,0x58,0x9f,0xd8,0x69,0x0b,0xa6,0xb2,0x86, - 0x2d,0xd8,0x18,0xde,0xd1,0xee,0xb6,0xa9,0x5a,0x61,0xb8,0x00,0x71,0x8b,0x26,0xa1,0x94,0x18,0x9c,0x63, - 0xbe,0x47,0xe3,0xae,0x6e,0x06,0x73,0x7e,0xa2,0x0d,0x69,0x63,0x2c,0x40,0x36,0x6e,0x6d,0xb1,0x48,0xd4, - 0x5d,0x07,0xcc,0x2c,0x30,0x4d,0x0b,0xa4,0xc6,0xb8,0xc9,0xe2,0x79,0x11,0xb7,0xc6,0x6a,0x2b,0xba,0x88, - 0x10,0x00,0x33,0x66,0x65,0xb1,0x36,0x28,0x7c,0x00,0x37,0x3e,0x67,0xdc,0xb8,0x41,0x9e,0x5c,0x72,0x5f, - 0xde,0x17,0xa1,0x03,0xcd,0x7b,0x14,0x0d,0x05,0x31,0x57,0xba,0x6b,0x3d,0xb2,0x29,0xf3,0x66,0x29,0xc4, - 0x66,0x32,0xc7,0x05,0x2a,0x03,0xcb,0x2f,0x40,0x28,0x1c,0x48,0x20,0x4f,0xa0,0x95,0x36,0x7b,0x30,0xf4, - 0x2f,0x35,0x4d,0x0d,0xd5,0xb6,0xb3,0x33,0x1f,0x6c,0x05,0x01,0xb8,0x0d,0x1c,0x07,0x4e,0xa7,0x3d,0x4e, - 0xfa,0xa9,0x14,0x50,0x38,0x06,0x8c,0xc9,0x45,0x6d,0x1d,0x82,0x98,0xce,0x82,0xd8,0x8c,0xa3,0x58,0xf3, - 0xb9,0xe0,0xa4,0x0a,0x36,0xf4,0x4a,0x93,0xc1,0xf0,0xe2,0x65,0x31,0x79,0x53,0xa4,0xaf,0x0b,0xc2,0xf8, - 0x3d,0x1f,0xb4,0x61,0xc5,0x4e,0xa3,0xe6,0xb0,0x5b,0x67,0x7f,0xb3,0xae,0x8e,0x48,0xc2,0x61,0x08,0x6f, - 0xb7,0xbb,0x3b,0xfd,0x06,0x9a,0x45,0xb8,0x9b,0x8d,0x87,0x9d,0x9a,0xa6,0x8f,0x4c,0xbe,0xc2,0x35,0xcd, - 0x6a,0x40,0x49,0x84,0xa6,0x02,0xa7,0xd7,0x70,0xc9,0x08,0xda,0xcd,0xad,0xba,0xd4,0xe4,0x53,0x13,0xc0, - 0x83,0xcf,0x12,0x89,0x39,0x51,0x1f,0x3e,0x2b,0x76,0xa3,0x67,0x70,0xb4,0x8a,0x8e,0x9c,0xc9,0x1e,0xac, - 0xa2,0x2a,0x9b,0xb7,0xaa,0xe5,0xaa,0xeb,0x6e,0x76,0x9e,0x7d,0xd0,0x1c,0x4a,0x16,0x4a,0xd8,0xc3,0x77, - 0x77,0x54,0x32,0xb5,0x79,0xc3,0x95,0xac,0x50,0x09,0x8c,0x5d,0x69,0x8e,0xf6,0xa1,0x7e,0xf0,0xb7,0x01, - 0xf3,0x84,0xe7,0x6c,0x82,0x5e,0xd2,0x23,0x15,0xc8,0xa9,0x80,0xb5,0x75,0x27,0x8a,0x01,0x16,0xd8,0xc5, - 0x64,0x65,0x4a,0xbc,0x40,0x89,0x15,0x95,0x98,0xba,0x12,0xa7,0x19,0xa5,0xc7,0x73,0x1f,0xb5,0x3d,0x07, - 0xed,0xfb,0xcd,0x3e,0xd5,0xba,0x9a,0xbc,0x2c,0xd2,0x17,0x05,0x73,0xfb,0xc9,0xa4,0x94,0xc6,0x6c,0xdd, - 0xa9,0xad,0x22,0xdd,0x57,0x26,0x78,0xb3,0x32,0xd0,0x92,0xce,0x95,0x83,0x95,0xf4,0x14,0x57,0x32,0x7f, - 0xb4,0x57,0x07,0xa6,0x52,0xcb,0xce,0xce,0x13,0x23,0x4b,0x97,0xd9,0xb3,0x91,0x40,0xa2,0xa3,0x10,0x0d, - 0x7c,0xd0,0xfe,0x90,0x1e,0x5b,0x4c,0xf7,0xc8,0xc5,0x5b,0x4c,0xda,0xcc,0x85,0xe0,0xf6,0xfc,0xba,0x1d, - 0x47,0xe7,0x72,0xb1,0xae,0x44,0x39,0xf4,0x2e,0x7f,0x0c,0x84,0xba,0xfb,0x58,0x4b,0xa0,0xaa,0x75,0xb8, - 0xd3,0x1e,0x87,0x24,0xd6,0x81,0xfe,0xe2,0x6f,0xe6,0xba,0x5a,0x2f,0x40,0xd8,0x3b,0x08,0xcb,0x7f,0x0c, - 0x68,0x29,0x90,0x50,0x44,0xef,0xc0,0xad,0x0b,0xf7,0x04,0xe5,0x44,0x9c,0x9f,0xb0,0x33,0x85,0x7b,0x33, - 0xd7,0x76,0xce,0x25,0xf2,0x9e,0x4f,0x8f,0xad,0x0c,0x34,0x3b,0xd1,0x96,0x1b,0xf2,0x1b,0x3a,0x71,0xbe, - 0x5a,0x6c,0x73,0x49,0x9f,0x11,0x84,0xeb,0x9a,0x2b,0x3f,0xe0,0xa8,0x62,0x20,0x48,0x70,0xe3,0x9d,0xa7, - 0x6d,0x10,0x91,0x8c,0x10,0xa3,0x82,0xff,0x2c,0x6f,0x6c,0x02,0x92,0x91,0x7c,0xc6,0xaa,0xbc,0x53,0xfb, - 0xfa,0xb1,0x92,0x84,0xa5,0x4d,0x78,0xcc,0x34,0xbb,0x24,0xc2,0x43,0x98,0xa6,0x54,0xe7,0xe6,0xab,0x73, - 0xf7,0x6e,0x3f,0xbb,0x70,0x29,0xe1,0x77,0x0b,0x4a,0x3d,0xd1,0xb0,0x2b,0x7f,0x8e,0x2a,0xd5,0x99,0xad, - 0x5c,0x5d,0xa3,0x3c,0xae,0x81,0x97,0x8c,0x63,0xd7,0x2b,0x3b,0x31,0xea,0xd2,0x7d,0xfb,0x98,0xeb,0x55, - 0x57,0xae,0x09,0x75,0xcf,0x7e,0x6d,0xb2,0x3e,0xf9,0xfe,0xb9,0xef,0x9f,0x52,0xda,0xcc,0xec,0x29,0xf5, - 0x21,0xbb,0xac,0xd5,0x63,0xfa,0x63,0x0c,0xfc,0xc7,0x8f,0x89,0x02,0x72,0x24,0xd7,0x87,0x2c,0x7e,0x9c, - 0xd9,0xd7,0xc4,0x72,0xac,0xbc,0x12,0x1f,0xb3,0xed,0x0f,0x41,0x10,0x26,0xe2,0x48,0xd9,0xfa,0xbf,0xaa, - 0x40,0x07,0x22,0xbe,0x30,0x96,0xe4,0xe3,0xed,0xed,0x15,0x0e,0x4f,0x5a,0x83,0x2b,0x01,0x81,0xb7,0xd9, - 0xc7,0x9d,0x9d,0xd9,0x64,0x46,0xbb,0xe1,0x37,0x3c,0x5e,0x4c,0x2e,0xd2,0xa5,0x7a,0x8e,0xc7,0xf3,0xc9, - 0x39,0xed,0x8b,0x57,0xd9,0xc7,0xc9,0xe5,0xed,0xed,0x22,0x5d,0xa8,0x97,0x48,0x1d,0xf0,0x9f,0xb9,0x9a, - 0x5c,0xa5,0x67,0xea,0x05,0x15,0xbc,0x77,0x7b,0x7b,0x9d,0x5e,0xab,0x67,0xf4,0xf8,0xe9,0xf6,0xf6,0x38, - 0x3d,0x56,0x6f,0x88,0x6f,0x29,0xe2,0xa7,0xc9,0xe4,0xa9,0x4c,0x5b,0xfa,0x34,0x51,0xef,0x32,0x3e,0x08, - 0x1b,0x56,0xd8,0xab,0xd7,0xd9,0x73,0x1d,0xbf,0x4c,0xd4,0xfb,0xcc,0xc3,0x49,0xe8,0xa9,0x9b,0xdc,0xbc, - 0x23,0x90,0xbc,0x07,0x49,0xec,0xf3,0x44,0xf1,0xef,0x6f,0x74,0x54,0xbe,0xf7,0xa0,0x39,0x89,0xa9,0x04, - 0x67,0xbc,0x4d,0xd4,0xb3,0x9d,0x9d,0x67,0x6c,0x69,0xf1,0x62,0x67,0xe7,0x05,0xfc,0x19,0x82,0x5a,0x4d, - 0xe0,0x76,0x03,0xaf,0xcd,0x79,0x45,0x03,0xfb,0x81,0xb6,0x83,0x37,0x91,0xf2,0x8d,0x5a,0xa1,0x91,0xcc, - 0x35,0xf8,0x54,0x65,0x42,0x2b,0x1f,0x23,0xec,0x11,0xb3,0x9a,0xfe,0xf9,0x90,0x05,0x6b,0x47,0x63,0xbe, - 0xc4,0x54,0x0c,0x13,0x4b,0x31,0x4c,0xd4,0xd8,0x61,0x6e,0xdf,0xf4,0xdf,0xe3,0x44,0xbd,0xdc,0xd9,0x79, - 0x49,0x5d,0x7f,0x0f,0xb3,0xa9,0x57,0x3b,0x3b,0xaf,0xd0,0x67,0x8c,0xf8,0xca,0x0c,0xe8,0x4a,0x46,0xac, - 0x2e,0x75,0x38,0x27,0x57,0xe1,0x7c,0xbc,0xed,0x4c,0xc7,0xed,0xed,0x6b,0x3a,0xc7,0x7f,0xd3,0xf1,0x9b, - 0x64,0x12,0x9c,0x42,0xef,0xd5,0x9b,0x24,0xfd,0x84,0xe2,0x2b,0x6a,0x0c,0x48,0x44,0x05,0x13,0x21,0x56, - 0xb9,0x75,0xd8,0x1f,0xea,0x06,0x57,0xf5,0x3e,0xee,0x7a,0x80,0x19,0x04,0xe2,0x85,0xdd,0xd4,0x9d,0x4f, - 0x61,0xf3,0x71,0x67,0x82,0x63,0xe2,0x3c,0xfd,0x24,0xba,0x19,0x83,0xae,0x7b,0x28,0x5d,0xfc,0x51,0x65, - 0x3a,0xb3,0x32,0x51,0xe7,0x04,0x88,0x08,0xb4,0x7a,0x29,0x53,0x92,0xc3,0xc3,0x82,0x7f,0x67,0x03,0x53, - 0x92,0x13,0x0f,0x85,0x29,0xe1,0x52,0x9d,0x3e,0x5d,0xc9,0x94,0xdc,0xeb,0x4c,0xc9,0x27,0x75,0x8f,0xa7, - 0x24,0x57,0x73,0xf5,0x49,0xa6,0xe4,0x02,0x94,0x59,0x4e,0x6f,0xea,0x92,0x3f,0xfa,0x04,0x3a,0xdb,0x18, - 0x9a,0x1b,0x5c,0x99,0x87,0xe8,0x2c,0x78,0xeb,0xe2,0x4a,0x9f,0x6e,0x71,0x65,0x73,0x37,0xae,0x94,0x28, - 0xb2,0x72,0x17,0x8d,0x43,0x8d,0x96,0x81,0x12,0x6d,0xec,0x36,0x37,0x6c,0x91,0xb4,0x75,0x52,0x69,0x18, - 0x67,0xce,0x33,0x89,0x15,0x43,0x48,0x12,0xf2,0x96,0xdc,0x62,0xb5,0xa5,0x7d,0xb5,0xc8,0x6f,0x66,0x13, - 0x42,0xdc,0x77,0x4e,0x89,0x82,0xbf,0x5e,0x21,0x8b,0x30,0xa4,0x29,0x44,0x58,0xb1,0x11,0xec,0x25,0x19, - 0x67,0xae,0x76,0x87,0xbb,0xae,0x29,0x89,0x3d,0xbb,0xa5,0xc4,0x31,0x5e,0x2d,0x2a,0xbb,0x94,0x6d,0xbe, - 0x92,0x6d,0x7e,0x85,0x6d,0x7e,0x41,0xab,0xc3,0x08,0x81,0x58,0xde,0x63,0xa9,0x2b,0x3d,0x4e,0x18,0x2b, - 0xda,0xa1,0x75,0xb7,0x7e,0x08,0x22,0x10,0x21,0x0d,0x00,0x0c,0xaf,0xc1,0x40,0xba,0x83,0x21,0x0e,0x02, - 0x76,0x29,0x38,0xc4,0x03,0xc8,0x2c,0xe9,0x40,0xc8,0x24,0xbe,0x64,0x1c,0xc2,0x90,0x43,0x75,0x9e,0xb1, - 0xa1,0x48,0x8c,0x0d,0xb1,0xd8,0xd9,0x59,0xe0,0x4d,0x05,0x9d,0x34,0x98,0xe4,0x7a,0x72,0x4d,0xdb,0x35, - 0xad,0xe2,0x90,0x20,0xf8,0x2d,0x38,0x91,0x37,0xa3,0x53,0xd1,0x6c,0xc8,0x05,0x8c,0xa1,0x76,0xf9,0x39, - 0x62,0xd6,0x32,0x2b,0xe1,0x03,0x20,0x9b,0x10,0xdb,0x30,0x27,0x46,0xa8,0xe4,0x20,0x80,0xd4,0x84,0x8a, - 0x6f,0x04,0xc2,0xa9,0x0f,0xf7,0x8f,0x52,0x84,0xc1,0x71,0x57,0xfe,0xc1,0x19,0xc6,0xd0,0x4f,0xdf,0x04, - 0x1a,0xbd,0x57,0x86,0x5e,0xd9,0x86,0xfa,0x5e,0x87,0x18,0xe0,0x23,0xb3,0x73,0xde,0x71,0xc4,0x91,0xde, - 0x2f,0xec,0x93,0xf2,0xa6,0x72,0xc3,0xf4,0xad,0x2b,0xb9,0x56,0xfb,0x41,0x55,0x2f,0x7a,0x54,0xbc,0x0e, - 0x24,0x63,0x8b,0xd5,0xbc,0x2d,0x96,0x73,0x2d,0xf4,0xfa,0xed,0x6d,0x7f,0x64,0x41,0xe4,0x34,0x36,0x75, - 0x81,0xf3,0x96,0x73,0xbc,0xe9,0xfb,0x6e,0xc1,0x0f,0xc4,0xe7,0xe2,0x0a,0x8e,0x22,0xa9,0xb2,0x63,0x62, - 0xff,0xde,0xc0,0x0a,0x08,0xfc,0xae,0xc2,0x55,0x4e,0x73,0xbe,0x98,0x9d,0x26,0xa0,0x62,0xf0,0xb1,0x09, - 0x59,0x10,0x10,0xec,0x3a,0xe6,0x4f,0x82,0x08,0xc2,0xe0,0xba,0x40,0x57,0x99,0xc2,0xac,0xa8,0x92,0x73, - 0xac,0x9f,0x9a,0xc1,0xad,0xaf,0x60,0x6e,0xaa,0x9b,0xbe,0xd7,0xb9,0x81,0xf2,0x99,0xee,0x5e,0xd7,0xd2, - 0xbf,0x86,0xcf,0x65,0x6d,0x5f,0xc7,0x62,0x58,0x1b,0xf8,0x91,0x84,0x50,0x26,0xa2,0x52,0x8e,0xf3,0x86, - 0xcb,0x0a,0x44,0xed,0x67,0xc4,0x8f,0x81,0x2b,0x88,0x16,0x67,0x68,0xe1,0x59,0xbc,0xcc,0x14,0x46,0x68, - 0xde,0x07,0xe4,0x8e,0x42,0x3c,0xc8,0xcd,0x2f,0x0f,0xd4,0x7b,0xed,0x32,0x94,0x11,0xe4,0x87,0xf4,0xe6, - 0xfb,0x0e,0xd3,0xd9,0x77,0x78,0xb8,0x60,0x77,0x07,0x48,0x9d,0x45,0x2d,0x1e,0x09,0x9f,0x59,0xb4,0x92, - 0xa3,0x15,0x61,0x52,0x8e,0x9d,0x34,0x9a,0x15,0x0d,0xdb,0x28,0x4b,0x46,0xa8,0xbe,0x78,0x12,0xcc,0xc4, - 0xf6,0x1d,0x0e,0x0f,0x22,0xa9,0x6a,0xfb,0xc8,0x77,0xd2,0xa6,0x4f,0xd8,0x9f,0xe6,0x2e,0x99,0x59,0xe0, - 0x7a,0x11,0x48,0x45,0x99,0x0c,0xd8,0x30,0x8c,0xb5,0xab,0x88,0x33,0xbe,0x63,0x12,0x6b,0xdd,0xd6,0x27, - 0x54,0xc7,0x3f,0xe1,0x0d,0xe6,0x5c,0x12,0x43,0x21,0xe7,0x4f,0x41,0x03,0x7c,0x05,0xa6,0x8f,0x96,0xda, - 0x0d,0xa4,0x54,0xfa,0x2b,0x2b,0x12,0x04,0x51,0x62,0xf3,0xe6,0xb1,0x89,0xad,0x44,0xe8,0x8f,0x51,0xa1, - 0xe5,0x27,0x7b,0xde,0x7c,0x05,0x7d,0x71,0x89,0xcb,0x41,0x8e,0xd8,0x9f,0x6f,0x20,0xa6,0xed,0x77,0x5e, - 0x92,0xf4,0xe0,0xd7,0xd9,0xde,0x27,0xad,0x97,0x7b,0xf9,0x9c,0x0e,0x8b,0x7b,0xe6,0xe6,0x41,0xa6,0x6f, - 0x7c,0xa0,0xec,0x38,0xf2,0x45,0x22,0x75,0xc3,0x5d,0x4b,0xf5,0xc6,0xec,0xf8,0x3e,0x87,0x40,0xfc,0x87, - 0x01,0x36,0x26,0x89,0x58,0x39,0x70,0xc2,0x37,0x61,0xfa,0x57,0xb6,0xb5,0xe4,0x77,0x73,0x9a,0xba,0x7c, - 0x77,0xba,0x06,0xa6,0xe3,0xa6,0x3a,0x11,0xb7,0xea,0xcb,0x77,0x15,0xc2,0x12,0xa1,0x34,0x01,0xe7,0x13, - 0x22,0x8c,0x39,0x34,0xc8,0xbc,0xa0,0x4f,0xdf,0xe3,0x1e,0xf8,0x30,0x66,0x7d,0xb8,0xbc,0x52,0x01,0x81, - 0xb8,0x72,0x4e,0x36,0x52,0x9b,0xb9,0xda,0xe2,0xb4,0xdd,0x2b,0xf9,0x87,0xef,0x50,0x6b,0xab,0x25,0xbd, - 0xd2,0x5f,0x60,0xb0,0xfa,0xf6,0xb6,0x70,0x5d,0xc0,0x10,0x66,0x56,0x03,0x59,0x99,0xae,0xb0,0x60,0x78, - 0x5c,0xf9,0x8b,0xea,0x89,0xc8,0xfc,0x59,0x9f,0x7c,0x2a,0x5a,0xc7,0x7f,0x66,0x11,0x67,0x22,0xa0,0x5e, - 0x1c,0xed,0xd6,0xbb,0xd1,0xf2,0x4a,0xb1,0xaa,0x7f,0x79,0x95,0x44,0xaa,0x0a,0x00,0xd8,0xf2,0xe2,0x59, - 0xb4,0xdf,0x84,0x7a,0xfa,0xef,0x3b,0xbb,0x4e,0x4f,0x7e,0xab,0xd2,0xb7,0x95,0x97,0xe0,0x5b,0xa9,0x58, - 0xd9,0xd1,0xd2,0x99,0xec,0x8f,0x15,0x6e,0xdd,0x0d,0xc3,0xc6,0x3b,0xec,0x6d,0x14,0xd4,0xcc,0x48,0x1f, - 0x70,0xac,0x80,0x56,0x39,0xe3,0x8a,0x54,0x2b,0x6b,0x0e,0xd1,0xb9,0xcb,0xb7,0x7f,0xb3,0xab,0xf2,0x66, - 0x02,0xee,0x7e,0x10,0x13,0x6f,0xd9,0xb8,0x46,0xe2,0x51,0xc2,0x90,0x78,0x47,0x2e,0x9d,0x28,0x81,0xec, - 0x30,0xa8,0xca,0x61,0x78,0x81,0xcd,0x2f,0xf6,0x60,0xdb,0x54,0xdd,0xb3,0x15,0x0b,0x01,0xea,0x35,0xe4, - 0x8c,0x8c,0xc9,0x38,0xcc,0x19,0x7c,0x0f,0x02,0xcb,0xa7,0x56,0x5c,0x8b,0xb6,0x43,0xe3,0x26,0x63,0xce, - 0x70,0x57,0x95,0xb5,0x3e,0x75,0x55,0xd2,0x33,0x47,0x4e,0xb3,0xfe,0x50,0x1d,0x49,0x51,0x60,0x44,0x3b, - 0x2e,0x25,0xd4,0xa7,0xbb,0x6a,0xa6,0x84,0xcc,0xd5,0xbb,0x1b,0x41,0x44,0x69,0x02,0x79,0xba,0x58,0xd1, - 0xa0,0x42,0xd1,0xd7,0x9e,0x52,0x35,0x42,0xb8,0x0b,0x67,0xe7,0x0c,0x6b,0x6d,0x7a,0x87,0xbe,0xcb,0x74, - 0x0f,0xf3,0x19,0x05,0x52,0x69,0xdd,0x8d,0xee,0xcd,0x5f,0xc1,0x0a,0x4a,0x0c,0x79,0x38,0xec,0x41,0xc4, - 0xb7,0xe0,0x51,0x35,0x1c,0x72,0x0b,0x81,0xb4,0x4d,0x26,0x25,0xed,0x99,0x12,0x44,0x65,0xb8,0x6f,0xc2, - 0x64,0x39,0x08,0xfd,0xb7,0x36,0xda,0x71,0xed,0x8a,0x02,0xbf,0xbb,0x52,0x1f,0x45,0x76,0x76,0x3f,0x8a, - 0xee,0xb3,0x21,0xf9,0x7d,0x17,0xb0,0xf4,0x3e,0x2d,0xf2,0x66,0x4f,0x81,0xc8,0x5d,0xed,0xf4,0xe2,0x6b, - 0x55,0x7c,0xc1,0x72,0x7f,0x82,0x64,0xc4,0xb1,0x9d,0x8c,0xa2,0xb1,0x5d,0x74,0xc8,0x89,0xba,0xa8,0x8c, - 0xf9,0x91,0x14,0x29,0xe7,0x45,0xa9,0xf7,0x5c,0xcb,0x52,0x5c,0x52,0x3f,0x9a,0x44,0xb6,0xa8,0xec,0x5d, - 0x79,0x43,0x70,0xbc,0xa8,0x42,0x0f,0x99,0x36,0x5b,0xc0,0xa1,0x8d,0x01,0x92,0x7a,0x3a,0xde,0x84,0x49, - 0x15,0x98,0xef,0x32,0x45,0xe3,0x60,0x8e,0x2b,0xd6,0xb4,0x4f,0x4a,0x27,0x00,0x1b,0xeb,0x47,0xa5,0x8d, - 0x3c,0x50,0x67,0xf0,0x5b,0xd2,0xb2,0x59,0x54,0x25,0xcf,0x42,0x4e,0xbd,0xa8,0x8c,0xb8,0xca,0x48,0xfd, - 0xcf,0xf3,0xe6,0x49,0xc1,0x48,0x0f,0x06,0xae,0x2a,0x0e,0xef,0x54,0x72,0x70,0x6c,0xee,0x07,0x7a,0x22, - 0x51,0x6e,0xc2,0xb0,0xf7,0xfe,0xbe,0x8c,0xbe,0x4a,0x80,0xa3,0x40,0x5a,0x09,0xd3,0x41,0x82,0xeb,0xbe, - 0x61,0x38,0x81,0x2b,0xb9,0x12,0x73,0x39,0x84,0x45,0x31,0x4f,0x2a,0x68,0x78,0x88,0x41,0xf5,0x7d,0x0b, - 0xb3,0xdf,0x73,0x36,0x0d,0xe3,0x5b,0xe8,0x77,0xc5,0x92,0x59,0xa2,0x92,0xe2,0xc0,0x10,0xa3,0xe3,0x7d, - 0x65,0x94,0xd3,0xed,0x62,0x1e,0x49,0xfc,0xb3,0x4b,0xc4,0xef,0x94,0xa6,0x02,0xc5,0x35,0xd3,0xe8,0x53, - 0x9a,0x96,0x39,0xe7,0x48,0x21,0xd0,0x7b,0xd7,0xe5,0x74,0x67,0x87,0xed,0x10,0x7d,0x54,0x4b,0xce,0x55, - 0x39,0x18,0xe2,0xe8,0x1e,0x5b,0xde,0x45,0x6c,0xdf,0x0d,0x5d,0xbe,0x87,0x90,0x9d,0x9d,0x93,0xca,0x5d, - 0x78,0x6b,0xd1,0x9b,0x30,0x5b,0x44,0x74,0xb3,0xe9,0x26,0x62,0x6d,0xa5,0x0c,0x8c,0x75,0x18,0x50,0xf6, - 0xe5,0xf0,0x80,0x5f,0xca,0x80,0x4b,0x53,0x9e,0x96,0x7f,0x3b,0xbc,0x9c,0x71,0x95,0x75,0x66,0xef,0x85, - 0xcc,0x9e,0x59,0xa3,0xd7,0x1c,0xd6,0x81,0x18,0xaa,0xd5,0xe1,0xc1,0xd1,0x78,0x6e,0x66,0xda,0xc9,0xf9, - 0x9c,0x5f,0xd7,0xee,0x01,0x46,0xb2,0xcc,0x6a,0x62,0xf8,0x0a,0xe2,0xef,0x2a,0xe2,0xe9,0xe6,0x90,0x71, - 0xa9,0x38,0x3e,0xcd,0xda,0xa4,0xe3,0xa3,0x87,0x38,0x3d,0xee,0x75,0xc3,0x44,0x74,0xa9,0x8c,0x47,0x54, - 0x3a,0x33,0xb6,0x9d,0xe7,0xb0,0x6c,0x49,0x2f,0x94,0x33,0x43,0x4c,0x17,0x6b,0x0e,0xb2,0x61,0x6d,0x07, - 0x79,0x02,0xcc,0x7c,0xf4,0x8c,0xf9,0x2a,0xbe,0x75,0x27,0x9c,0xdd,0x68,0x01,0x21,0x36,0x56,0xb5,0xfe, - 0xec,0x54,0xef,0xec,0x98,0xb9,0xb6,0x5e,0x26,0x46,0x6d,0xad,0x66,0xea,0x5c,0x51,0x67,0xd6,0x1d,0x7e, - 0xea,0x5b,0x7f,0x9a,0x33,0x50,0x67,0xd6,0x52,0x91,0x20,0x39,0x4a,0x86,0xcc,0xd7,0xac,0x5d,0xb2,0x4c, - 0xf4,0x33,0x13,0xf2,0xc9,0xf2,0x2b,0xac,0xc4,0xa5,0x6f,0xb3,0xf2,0xf0,0xe1,0x91,0xd1,0x1f,0x59,0x8a, - 0x8b,0x96,0xc2,0xa4,0xb8,0x55,0x7b,0x67,0x81,0xba,0x30,0xf5,0xbd,0xf1,0x11,0x80,0xab,0x09,0xe2,0x38, - 0xcd,0x8b,0xbc,0xa1,0x5c,0xfb,0xc1,0x1b,0xf9,0xa0,0x1e,0x15,0x44,0xd3,0xe4,0x44,0x3b,0x1e,0x64,0x95, - 0xaf,0x57,0x55,0xd4,0x2a,0x5b,0x60,0xd8,0xec,0x87,0x59,0xe5,0x3b,0x82,0xe0,0x2b,0xb6,0x46,0x55,0xf3, - 0xb5,0x78,0x25,0xc7,0x2c,0xe8,0x3a,0x92,0xfc,0xdb,0xa9,0x64,0x8a,0xd3,0xa7,0x15,0x61,0x05,0xa6,0xcb, - 0x98,0x47,0x09,0x13,0x38,0xf4,0x6a,0x37,0xc9,0xea,0x79,0x02,0x6b,0xe8,0x50,0xe8,0xfc,0x83,0xee,0xae, - 0x1a,0x9f,0x9b,0x36,0xba,0x7d,0x6b,0x85,0x95,0x81,0xbd,0x73,0x9f,0x19,0x9c,0x44,0x36,0xda,0x53,0x7a, - 0x13,0xa5,0x51,0x85,0x1f,0x1f,0xf8,0xc1,0xdc,0xb5,0xb7,0x9b,0xc1,0xe0,0xaf,0xd8,0xbd,0x1f,0xa5,0xf7, - 0x77,0x5b,0xc4,0x0b,0x62,0xb7,0x72,0xd8,0x7d,0xfb,0xfb,0xa4,0x03,0x91,0x37,0x1b,0x2e,0x7a,0xb3,0xe8, - 0xd2,0x51,0xb5,0xee,0x7e,0x52,0x27,0xc9,0x24,0xbe,0x75,0x1d,0x6d,0x06,0xae,0x76,0x17,0x9d,0x45,0x87, - 0x30,0x2d,0xef,0x0a,0xe7,0xbd,0x4e,0xd4,0x5c,0x47,0x62,0x3d,0x01,0x15,0x34,0x93,0x47,0x91,0x39,0xf9, - 0x7e,0xa8,0x2c,0xd1,0x2c,0x8e,0x63,0x44,0xfb,0x7c,0xdf,0x4b,0x62,0x00,0xf5,0x46,0xbd,0xd6,0xca,0x21, - 0x22,0x42,0x0f,0x7f,0x72,0xeb,0xbb,0xca,0x22,0x24,0x0e,0x4b,0x19,0x14,0xa6,0x6f,0xff,0xcd,0x21,0x82, - 0xaa,0xdd,0x8c,0x1f,0xd4,0x2f,0x15,0x6b,0xcd,0x73,0x6b,0xec,0xeb,0x03,0x65,0xeb,0xab,0x5c,0xa2,0xa5, - 0x34,0x36,0x10,0x78,0x50,0xd3,0x98,0x2a,0xf8,0xb6,0x8a,0x0f,0xa3,0x69,0x5b,0xcf,0x69,0x10,0x6c,0x35, - 0x4c,0xbf,0xf9,0x1c,0x7f,0x17,0xba,0xcd,0xa3,0xa3,0xbb,0x6d,0xda,0xb7,0xa7,0x4c,0x32,0xde,0x61,0x12, - 0x6f,0xd0,0xeb,0x28,0x82,0x99,0xfe,0x0f,0x44,0x84,0xb9,0xc9,0xba,0xbd,0x05,0xaf,0x28,0xe6,0x28,0xae, - 0xc3,0xd6,0xc5,0xd8,0x59,0x0e,0xc5,0xc5,0x2e,0x61,0x79,0x58,0x79,0xdc,0x3f,0x59,0xb5,0x6d,0x55,0xde, - 0xc7,0x34,0x48,0xa5,0x08,0x2b,0xb0,0x9b,0x73,0xc3,0xc4,0x50,0x99,0x6a,0x29,0x8d,0x16,0xc1,0xa9,0xfe, - 0xe8,0x80,0x1f,0x63,0x3b,0x4a,0x4d,0x55,0x10,0x77,0x33,0x36,0x95,0xdc,0x80,0xba,0x8e,0xcb,0x89,0x59, - 0x93,0xdd,0xc8,0x66,0x44,0x69,0x3d,0x61,0xf3,0x59,0x9b,0x91,0xf8,0x1c,0xbb,0x80,0x0c,0x69,0xb6,0xad, - 0xdb,0xdb,0xda,0xd6,0x92,0x0e,0x35,0xe3,0x2a,0x0a,0xa1,0x53,0x07,0xe7,0x31,0x87,0xe5,0x79,0xc9,0xb7, - 0xd6,0x1c,0xec,0x27,0x61,0x4c,0x7e,0x3b,0x8d,0x26,0xfc,0x35,0x11,0x8e,0x54,0x9d,0x81,0xb3,0x5f,0x2a, - 0x1f,0x2a,0x39,0x3a,0xfe,0x14,0x77,0x8b,0x12,0xf3,0xd0,0x43,0xc4,0x2d,0x6f,0x9c,0x7e,0x6a,0x89,0x54, - 0xff,0x69,0x68,0x1e,0x5a,0x76,0x0c,0xa7,0x10,0xde,0xe7,0x9f,0x88,0x00,0x6c,0x4d,0x56,0x25,0x98,0x5c, - 0x1a,0xc1,0xc4,0x90,0x83,0xc8,0xba,0xfd,0x01,0x2d,0xfe,0xa4,0x16,0xbb,0xa8,0xf4,0xfe,0xf1,0xd4,0x04, - 0x37,0xb8,0xcf,0xd3,0xa6,0x7a,0xb1,0x99,0xd3,0xb2,0x1f,0xad,0x39,0x40,0x60,0xb5,0xdf,0xc3,0xd6,0xe6, - 0x08,0xea,0x0d,0x26,0xd8,0xe5,0xf5,0x5d,0x5d,0x4d,0x75,0xd3,0xe8,0x99,0x5d,0x7a,0x63,0x40,0x23,0xf1, - 0x75,0xc4,0x8f,0x60,0x5b,0x1e,0x36,0x8a,0xe6,0x61,0x51,0xda,0x6f,0x5c,0x92,0x7e,0x37,0x0a,0x76,0x0d, - 0x43,0x83,0x60,0x21,0x28,0xcd,0x2e,0x35,0x8c,0x8b,0xd9,0x05,0xc0,0xa1,0xf3,0x09,0x66,0x3b,0x78,0x4f, - 0x69,0x67,0x37,0x41,0x81,0x87,0xbd,0x02,0x0f,0xe1,0xa3,0xe6,0xd8,0xb5,0xb0,0x1b,0x4c,0x0e,0x1d,0xcf, - 0x63,0x63,0xfb,0xed,0x09,0x5e,0x18,0x6b,0xe7,0x08,0x7a,0x15,0x4c,0xbd,0x99,0x32,0x9a,0x6a,0x5a,0xcb, - 0x60,0x7c,0xc5,0x29,0x0f,0xaf,0x38,0xdd,0x18,0x5d,0xe3,0xa7,0xc1,0x13,0xe0,0xdb,0x3d,0x02,0x5c,0x08, - 0xf7,0x21,0x0e,0x64,0x60,0x8e,0xbc,0xbd,0x81,0x65,0x4e,0x6e,0x6f,0x03,0x4a,0x9f,0x30,0xe2,0xaa,0xb4, - 0x3a,0xfd,0xe8,0x98,0xed,0x95,0x77,0xe3,0x9a,0xe7,0xa3,0x96,0x58,0x76,0x3e,0x30,0x7a,0x74,0x83,0x49, - 0x92,0xe0,0xe8,0x77,0xb8,0xdf,0x5c,0x96,0xc6,0xa6,0x82,0x46,0x9d,0xa2,0xb4,0x08,0xc1,0x3a,0xe8,0x79, - 0x1d,0xf1,0xea,0x38,0xe3,0x7d,0xe3,0xc2,0x10,0xd9,0x1d,0xb4,0x8d,0xdb,0x4c,0x73,0xda,0xca,0xf0,0x14, - 0x27,0xdc,0xc3,0x3c,0x82,0xc7,0x20,0xe8,0x1a,0x02,0x65,0xc9,0x5b,0x5c,0xc1,0x26,0xc9,0x96,0xe1,0x6d, - 0x95,0xd3,0x58,0xd8,0xba,0x5a,0xe6,0x92,0xc7,0x2f,0x13,0xef,0x03,0xc0,0x86,0xe4,0x47,0x57,0x34,0xda, - 0x65,0x37,0x26,0xa8,0x37,0x5d,0xb1,0x3e,0x18,0xa2,0x30,0xb7,0xc9,0x69,0x27,0x19,0xb7,0xa7,0xa9,0x28, - 0x8b,0x3b,0xb3,0x66,0x9a,0xf7,0x0d,0x2a,0xee,0x8a,0xa3,0x33,0xc1,0x83,0x33,0xc5,0x36,0xb1,0x51,0xd0, - 0xdc,0x22,0xf4,0x19,0x1e,0xd7,0x03,0xf4,0x13,0x3d,0x28,0x33,0xb4,0x7e,0x1f,0x93,0x4b,0x6b,0xbe,0x1b, - 0xd1,0x53,0xa7,0xe9,0xb8,0xe0,0x97,0xc2,0xf5,0xa3,0x7b,0x09,0xa7,0xf6,0xa2,0x0f,0x7f,0x7d,0x02,0xf1, - 0x36,0x65,0x16,0xe6,0x1c,0x56,0x47,0x8c,0x33,0xbc,0x93,0xbc,0x79,0x30,0xd0,0x02,0x93,0x19,0xee,0x79, - 0x80,0xa4,0x36,0x2e,0xec,0xe9,0xa1,0x05,0xec,0x1d,0xdd,0xc7,0x30,0x72,0xee,0x0c,0x62,0x2e,0xbf,0x7d, - 0x22,0x44,0x84,0x5f,0xd0,0x8c,0xc7,0x9b,0xdf,0xdb,0xe8,0x7b,0xc9,0xae,0xc3,0x4b,0x12,0x0f,0x25,0x52, - 0xe2,0x69,0xed,0xa6,0xc1,0x79,0x51,0x84,0x98,0xac,0x83,0x8d,0x24,0x06,0xfb,0x5f,0xda,0x9e,0x9d,0xb6, - 0x42,0x01,0x43,0x14,0xb1,0x84,0xc5,0xe8,0x8c,0xeb,0xb1,0x31,0xe5,0x85,0x8c,0xe1,0x86,0x78,0x71,0x60, - 0x76,0xeb,0xd0,0xe2,0x1c,0x6d,0xdd,0xf9,0x35,0x89,0x8e,0xab,0x38,0x18,0x39,0x7b,0xd5,0xa1,0x8b,0x2f, - 0x67,0xbb,0xbb,0xfc,0x5a,0x62,0x2c,0xa9,0x29,0xb0,0xee,0x22,0xda,0xc0,0x9d,0x60,0x33,0xfa,0x76,0x67, - 0x40,0x18,0xa8,0xa7,0xce,0x62,0x67,0xdc,0x1f,0x68,0x15,0xfd,0x9e,0xae,0x27,0xb5,0x9c,0x1f,0x32,0x5b, - 0x93,0xdc,0x1c,0x27,0xe6,0x58,0xe1,0xfb,0x4e,0xac,0xc1,0x85,0xbb,0x0d,0x99,0x00,0xe4,0x98,0x28,0xd0, - 0xc8,0xd8,0x29,0x68,0x1b,0xbd,0xd0,0xd3,0x17,0xfa,0x6a,0xc9,0x87,0x7b,0x2e,0xfe,0x11,0xc9,0x84,0xb6, - 0x35,0x31,0x9e,0x27,0xf3,0x6a,0xfa,0xc9,0x60,0x0f,0xd7,0x31,0x5a,0xc4,0x20,0x73,0xdd,0x23,0x9a,0x1d, - 0xb9,0xdb,0xbf,0xa7,0x66,0xda,0x41,0x81,0x84,0xbe,0x54,0x9d,0x0d,0x23,0xc7,0xfe,0x3d,0xd9,0x37,0x26, - 0xac,0x85,0x71,0xf0,0x0d,0xa2,0x48,0xa4,0x87,0x11,0x3b,0xfb,0xda,0x80,0x17,0x43,0xf7,0x66,0xdd,0x54, - 0x36,0xcc,0xbe,0x91,0x3e,0xae,0x3a,0x57,0x71,0x1f,0x4a,0x74,0x8b,0xa3,0xf1,0x0a,0xac,0x76,0xb6,0xbd, - 0xbd,0x42,0xac,0x6c,0xda,0x1b,0x97,0x79,0x8d,0xbb,0x43,0x72,0x71,0xe6,0xdd,0x57,0x0d,0x91,0xdd,0xc2, - 0x08,0x12,0xf1,0x6d,0x42,0x62,0xdc,0x8f,0x1c,0x4f,0xc8,0x89,0xe6,0x05,0xee,0x37,0xbb,0x71,0x25,0xf8, - 0x96,0x60,0x5f,0x68,0x20,0x1c,0x4b,0x8e,0x76,0x0a,0xfd,0x8f,0x36,0x88,0x0f,0x53,0x2c,0x11,0x14,0x52, - 0x8d,0xe8,0x8c,0x99,0xdc,0x67,0x5e,0x93,0x5b,0xa1,0x07,0xb4,0x60,0x73,0x1d,0xe1,0x4a,0x2d,0x79,0x4e, - 0x74,0xa0,0x52,0x4f,0x2b,0xcb,0x3e,0x5c,0x2b,0x1f,0x59,0x69,0x3a,0x69,0xba,0x2c,0xc3,0x91,0x8b,0xf0, - 0x64,0x50,0x37,0x5f,0xac,0xb2,0x9b,0xd5,0x80,0xfc,0x44,0x19,0x01,0x21,0x52,0x20,0x4c,0xe4,0xe3,0x45, - 0xfc,0x69,0x22,0x09,0x09,0x70,0x6a,0x32,0xe9,0x89,0x33,0xe9,0x37,0xc8,0xe4,0x9d,0xea,0x4b,0xf0,0x6b, - 0x0a,0x14,0x21,0x25,0x96,0xec,0x09,0x89,0x4c,0x7a,0x0a,0xd2,0x03,0x6e,0x19,0xb9,0xf7,0x21,0x76,0x65, - 0xdf,0x27,0x20,0x5f,0x5a,0x8c,0xfb,0x5e,0x14,0x25,0x0e,0xb8,0xa2,0xd4,0xfb,0x56,0x97,0x1e,0x3b,0xb1, - 0x2f,0x2e,0x7d,0x1c,0x66,0x11,0xfb,0x04,0x31,0x16,0xa3,0x12,0x73,0xbe,0x72,0xeb,0xfc,0x4c,0x2c,0xd8, - 0xee,0x69,0x69,0x73,0xcc,0xbc,0x29,0xe3,0x95,0x6a,0x0a,0x5a,0x5f,0x04,0x57,0x56,0xa2,0x0e,0xbb,0xb2, - 0xe2,0xce,0x28,0x85,0xc1,0xf4,0x99,0x04,0xb5,0x7d,0x60,0x21,0xcd,0x4e,0x4e,0xe8,0x19,0x19,0x94,0x0f, - 0x93,0x15,0xe3,0xee,0xce,0x57,0x9e,0x14,0x11,0x1a,0xd0,0x8a,0x06,0x4d,0xf7,0xf8,0x22,0x9a,0x68,0x37, - 0x2c,0xe7,0xbe,0xf4,0x01,0x5e,0xa5,0x30,0x6b,0x0d,0x83,0x54,0x5c,0xc9,0x64,0x04,0xa2,0x92,0x90,0x1e, - 0xaf,0x88,0x39,0xea,0x84,0x82,0xc9,0xef,0xe2,0x77,0xb6,0xfa,0x88,0xcd,0x65,0x94,0x86,0xb2,0x2c,0x3b, - 0x24,0x9d,0x8f,0x75,0xd6,0x21,0x28,0x4b,0x43,0x50,0x96,0x8e,0xa0,0x2c,0x7b,0x04,0x65,0xd9,0x27,0x28, - 0xcb,0x1e,0x41,0x59,0x0e,0x12,0x94,0xe5,0xff,0x9c,0xa0,0xb4,0x03,0x32,0x14,0xa5,0xbc,0xa4,0xd1,0x8d, - 0xec,0x06,0xda,0xe3,0xea,0xb4,0x4c,0x83,0x1a,0x8c,0xb3,0x46,0xe9,0x17,0x27,0xe9,0xd4,0x17,0x77,0xa4, - 0xbc,0x6c,0x32,0x33,0xa1,0x4e,0x9f,0xf2,0x9f,0xdd,0x88,0x30,0x72,0xbc,0xe2,0x20,0xca,0x49,0xe7,0xe2, - 0x6a,0x60,0x67,0xff,0x96,0x0e,0x15,0xc1,0xe1,0xc0,0xd7,0xbf,0x52,0x57,0xd7,0x4c,0x89,0xe5,0xb8,0xcf, - 0xbe,0xe9,0x73,0xea,0x74,0xb0,0x27,0x00,0x09,0x13,0x37,0x9d,0x21,0x87,0x9f,0x53,0xeb,0x3d,0xb9,0xdb, - 0x86,0x91,0xd1,0x69,0x88,0xde,0x61,0xd2,0x65,0xd9,0xa4,0xdd,0xa8,0x8b,0xe3,0x5c,0x18,0x76,0x97,0xe8, - 0x76,0x47,0x97,0xc8,0xb2,0x06,0x79,0x5d,0xf3,0x3f,0x17,0xd0,0xcd,0x46,0x22,0xdd,0xe7,0xf0,0x3f,0x07, - 0x12,0x87,0x90,0xed,0xe7,0x0c,0xac,0x94,0x1c,0xf1,0xa7,0xb2,0xc1,0x0e,0x0d,0x91,0xd8,0x6d,0x23,0xb5, - 0x6c,0x5a,0x20,0xf8,0xa0,0x45,0x37,0x91,0xc0,0xd1,0xb1,0x3e,0x3b,0x76,0x88,0xec,0x3e,0xbd,0x73,0x07, - 0x93,0xdf,0xa9,0xb4,0x65,0x06,0xb7,0x3b,0xd3,0x70,0x24,0x25,0x44,0x4b,0x58,0xb5,0x92,0x79,0xae,0x78, - 0x3b,0xae,0x8d,0xf7,0x85,0x83,0xce,0xc0,0x6a,0xfb,0x81,0xba,0xf7,0x40,0x45,0x86,0x64,0x6f,0x47,0x97, - 0x75,0xbe,0x7c,0x66,0x7d,0x0e,0xfc,0x2b,0x6c,0x26,0x4c,0xae,0x53,0x7b,0x06,0x45,0x5c,0x1a,0x97,0x0b, - 0x82,0x2d,0xad,0x06,0x42,0xfd,0xfb,0xb9,0x96,0x60,0xe4,0x61,0x40,0xae,0x3c,0xab,0x82,0x05,0xa8,0x02, - 0xcf,0x26,0xde,0xd5,0x1d,0x7e,0x29,0x17,0xeb,0x2f,0x61,0x8f,0xec,0xbb,0xf5,0x75,0x25,0xbe,0x82,0xd0, - 0x58,0x9c,0x5b,0xe6,0x80,0x36,0x6e,0x2f,0x8c,0x78,0xa0,0x5b,0x50,0x03,0x31,0xad,0x5c,0x7c,0xca,0xda, - 0x75,0xa7,0x30,0xf0,0x80,0xb8,0x1a,0xb8,0x5c,0x0a,0x21,0x2a,0x43,0x12,0x05,0xde,0x1f,0x5d,0x92,0xa5, - 0x5a,0xe8,0x21,0xe4,0x35,0x07,0x26,0x37,0x64,0x4e,0x02,0x8a,0xf1,0xa1,0xa1,0x16,0xd9,0x69,0xe9,0x7f, - 0x5c,0xad,0x0e,0x6b,0xe5,0xd5,0x39,0x48,0x82,0x6b,0xe5,0xe2,0x8a,0xed,0x5f,0xaf,0x4f,0xf4,0x53,0xc7, - 0x22,0xa5,0x1c,0xa7,0xb7,0xef,0xba,0x65,0x4d,0x5d,0x85,0xe7,0xa4,0x31,0x4f,0x0c,0x2d,0x9a,0x7e,0xe1, - 0x92,0xa0,0x24,0x76,0x11,0x00,0x27,0x70,0x0e,0x57,0x20,0x06,0x37,0xc8,0x83,0x5a,0x62,0x4d,0xb3,0x0f, - 0x75,0x1a,0x1d,0x5f,0x80,0xc0,0x7f,0x08,0x0d,0x43,0x09,0x29,0x39,0x57,0x5e,0x06,0x7b,0x37,0x5d,0x96, - 0x71,0x5f,0x64,0x22,0x35,0x24,0x5c,0xc7,0xd8,0x98,0x69,0x5b,0xd5,0x09,0x04,0x87,0xd5,0x5d,0x87,0xc4, - 0x74,0x50,0x6e,0xb8,0x1b,0x37,0x8c,0xb9,0x1b,0x50,0x2b,0x81,0xf0,0x63,0x1e,0x7e,0xea,0x34,0x87,0x2c, - 0x1a,0x20,0xb4,0x37,0xa0,0x2a,0xeb,0x32,0xe6,0x81,0x2f,0x6d,0x4f,0x27,0x4b,0xe7,0xc6,0x9f,0x5c,0xe4, - 0xac,0x45,0xf4,0x5a,0x5b,0xea,0x2f,0xbd,0xbf,0xbb,0x44,0x88,0x42,0x2b,0xfd,0x52,0x91,0xbf,0x59,0x3d, - 0xa0,0xa6,0x02,0x27,0xd5,0x4e,0xf4,0x0b,0xbf,0xb9,0x7f,0x5d,0x3d,0xdc,0x7f,0xf8,0x8f,0x07,0x67,0x2a, - 0xfa,0x55,0x1e,0xa3,0xa4,0x97,0xf9,0xb5,0xcf,0xfc,0x3a,0xbc,0x20,0x74,0x66,0x60,0x01,0xde,0x7b,0x16, - 0x84,0xf4,0xe5,0xd6,0x0b,0x3f,0xcb,0xfe,0xa2,0x58,0xd7,0x37,0xd1,0x6a,0xe8,0xba,0x86,0x06,0x99,0xb0, - 0x72,0x0a,0x67,0xdf,0xb3,0xd0,0xc7,0x33,0xe8,0x67,0xfc,0xa9,0xca,0x3e,0x55,0x7f,0x12,0xa1,0x13,0xc1, - 0x70,0x8d,0xee,0x29,0x6b,0x27,0xf7,0x1f,0xe5,0x5b,0xe7,0x50,0x02,0x47,0xbf,0x96,0xd1,0x83,0x6f,0xee, - 0xa7,0xf7,0x1f,0x51,0x29,0xc2,0x1a,0xe6,0x5d,0x7d,0xaa,0x7c,0x79,0xef,0x85,0xb3,0xf3,0xbf,0x0e,0xf6, - 0xc7,0x51,0xf2,0xcd,0x3e,0x23,0xc2,0x0b,0x17,0xf2,0xee,0xb4,0xd6,0xfa,0x0f,0x1d,0x23,0xd2,0xf2,0xc2, - 0x25,0xfa,0xa8,0xe2,0xf6,0x22,0x70,0x75,0x56,0x66,0x2b,0x11,0xc3,0x28,0x47,0x29,0x46,0x6c,0x34,0x73, - 0xcd,0x39,0x74,0x34,0x2b,0xea,0x95,0xe2,0x12,0x5e,0x5d,0xab,0xa0,0x0e,0x55,0xc7,0x03,0x35,0x9f,0xe7, - 0x4d,0x70,0xed,0xa5,0x3a,0x29,0xb3,0x07,0x7b,0xf1,0xaf,0x97,0x09,0xad,0xc5,0x65,0x99,0x0d,0xc7,0x3c, - 0x71,0xeb,0x76,0x12,0x9a,0x14,0x84,0xb6,0x4d,0x13,0x74,0xf9,0xc7,0xe5,0x12,0x96,0xd3,0xf0,0xf2,0x46, - 0x04,0x56,0x98,0xbc,0x5e,0xdd,0x59,0xa5,0x89,0x6d,0xb3,0x9f,0x74,0x3f,0xdc,0xf5,0x7a,0x47,0xfa,0xfc, - 0x1e,0xf5,0xee,0xd7,0x27,0xf1,0xe1,0xe3,0xbd,0x7f,0x1f,0xa1,0x87,0x9f,0xfe,0xb4,0x87,0xf7,0x4a,0x15, - 0xed,0xdd,0x3b,0x88,0x50,0xed,0xab,0xea,0xd2,0x56,0x4b,0x75,0x3d,0xdd,0x94,0xc9,0x38,0x05,0xbc,0xfa, - 0xd0,0xd5,0x17,0xb9,0x58,0x2e,0xea,0x31,0xf1,0x75,0x20,0xaa,0xf7,0x38,0xce,0x7a,0xbd,0x67,0x2f,0x53, - 0x8c,0xd4,0xc7,0x32,0x3b,0x8c,0x82,0x35,0xf1,0x3c,0x5c,0x64,0xaf,0x3c,0x8c,0x8e,0xd4,0x5b,0x94,0x12, - 0xfb,0xcb,0xa7,0x0c,0x63,0x94,0x29,0xc0,0x46,0x55,0x98,0x0c,0x36,0xea,0x86,0x1c,0x5e,0x8c,0xbb,0x5d, - 0xfa,0x8f,0x26,0x3c,0xa5,0xbb,0x6b,0xd7,0x66,0x3c,0x93,0x48,0xc4,0x68,0x53,0x9e,0x38,0xcf,0xdf,0xd1, - 0x8c,0xf4,0xf0,0x4d,0x6e,0x10,0x12,0x9f,0xf3,0x19,0x75,0xea,0xb7,0x32,0xbb,0x11,0x62,0xe2,0xb5,0x26, - 0xc2,0x99,0x40,0x8d,0x0a,0x9e,0x15,0xc4,0x7c,0x0e,0xdd,0xb0,0xda,0x14,0x73,0x18,0x66,0x10,0x5d,0x4f, - 0x50,0x34,0x5b,0xf1,0x24,0x7d,0x2c,0x96,0x48,0xb0,0xd7,0xfd,0x72,0xa6,0xae,0x21,0xda,0x81,0x7d,0x15, - 0x5e,0xb9,0xcd,0xef,0xe4,0x1e,0x58,0xf6,0xde,0x50,0xa0,0xee,0x3b,0x09,0xc5,0x59,0x49,0x83,0x99,0x99, - 0x5d,0x47,0xf4,0xc8,0x91,0xb2,0x97,0x3f,0x0e,0x76,0xa4,0x13,0xee,0x3e,0x7d,0x5a,0x06,0x09,0x70,0xe5, - 0x92,0x94,0x1f,0xcb,0x4f,0x65,0x75,0x59,0x9a,0x4a,0x91,0xd6,0x8b,0x9e,0x9f,0x9e,0xa9,0xa1,0xe0,0xf8, - 0xe9,0x87,0x52,0x05,0x97,0x30,0xe2,0xc3,0xe3,0x79,0x71,0xaa,0xa7,0xd7,0xd3,0xb9,0xc6,0xbd,0xd3,0xd4, - 0xa7,0x72,0xad,0x9e,0x13,0x44,0x1e,0xfe,0xf7,0xaf,0x97,0xa3,0x7b,0x47,0x0f,0xd4,0x2b,0xc8,0xca,0x8e, - 0x79,0x6f,0x1d,0x1f,0x13,0x39,0x76,0xb3,0x56,0x2f,0x29,0xc9,0x93,0xa9,0xee,0x0a,0x3f,0xf1,0xec,0x51, - 0x2f,0x86,0x73,0x7f,0xfe,0xe5,0x79,0x79,0x51,0xd4,0x55,0x69,0xee,0x43,0xdf,0xee,0x24,0x40,0x92,0xc7, - 0x3d,0x55,0xcf,0xca,0xec,0x45,0xb9,0xb3,0x33,0x9c,0xdb,0x05,0x78,0xf5,0xa6,0xcc,0x5e,0x52,0x59,0xe3, - 0x52,0x54,0xe6,0x17,0xc5,0x19,0x38,0x85,0xd1,0x8a,0x26,0xec,0xf1,0x19,0x5f,0x38,0xd5,0x29,0xff,0xae, - 0xcc,0xde,0x50,0xf9,0x07,0x8b,0xa6,0xd0,0xb7,0x84,0x7b,0x66,0x54,0xc4,0xd8,0x84,0xbd,0x29,0x13,0xf5, - 0x5a,0xb2,0xdf,0x04,0x1e,0x8d,0x28,0xb9,0xf5,0xf5,0x68,0x1f,0xd8,0x4d,0xbd,0xdf,0xcc,0xd7,0xb3,0x33, - 0xfd,0x80,0x33,0x9f,0x6c,0x66,0x12,0x1c,0xd4,0x74,0xce,0x21,0x9b,0x4e,0x33,0xfb,0x86,0x2b,0x37,0x4a, - 0xf5,0xa3,0xe9,0x4a,0xb1,0x3c,0xa7,0xbd,0x75,0x5b,0x2c,0xf3,0x19,0xfd,0xa9,0xe8,0x4f,0xd5,0xf8,0x2e, - 0xc1,0xa9,0xbd,0x6a,0xcc,0x27,0x3f,0x95,0x59,0xcc,0xdf,0x4c,0xcf,0x6b,0x22,0x51,0x7e,0x7d,0xf0,0xeb, - 0x6c,0x37,0xe8,0xfd,0xcd,0x7a,0xc4,0x37,0x0d,0x27,0xea,0x3b,0x28,0xb1,0x41,0x55,0xbd,0x2c,0x39,0xca, - 0x26,0xb0,0xf2,0x1f,0x6c,0x0f,0x31,0x7c,0x2d,0xf3,0x1f,0x84,0x4f,0x4c,0x8c,0x86,0x48,0xdd,0xe0,0x5a, - 0xe7,0x80,0x12,0x46,0x65,0xfb,0x6b,0xc2,0x2d,0x66,0x96,0x37,0x63,0x02,0xa2,0x07,0x7b,0xee,0x7b,0x86, - 0xfa,0x3f,0xca,0x24,0x70,0x3b,0x47,0xfb,0x3f,0x97,0xea,0xf7,0x52,0x7d,0x1f,0xa0,0xa0,0x1e,0x2d,0x40, - 0x63,0xfc,0x19,0x86,0x35,0x3f,0x53,0x7b,0x58,0xd4,0x21,0x18,0x3a,0x9b,0x57,0x27,0xf9,0x1c,0x34,0x29, - 0x23,0x2a,0xcc,0x8b,0x24,0x01,0xf7,0x83,0x17,0x1c,0xe9,0xf2,0x62,0xf4,0xd3,0x8f,0xcf,0x8f,0x9f,0xbf, - 0xf9,0x29,0x51,0x3f,0x13,0x2c,0xff,0xd0,0x01,0x91,0xe3,0x63,0x64,0x3e,0x7b,0xfe,0xd3,0xc7,0xb7,0x6f, - 0x5f,0x7d,0x38,0xfe,0xf6,0xd5,0xdb,0x27,0x8f,0x5f,0x1d,0x7f,0xf7,0xf6,0xed,0x0f,0xc7,0xc7,0xea,0x97, - 0x61,0xc0,0xfd,0x70,0xbd,0x38,0xa9,0xa8,0xd1,0x7b,0xb1,0x3c,0x25,0xc3,0x7d,0x33,0xd7,0x33,0xa3,0x5c, - 0xef,0xa6,0xe6,0x64,0xfc,0xfb,0x1d,0x35,0x6b,0x2e,0x4e,0x3f,0xc9,0xe4,0x43,0x77,0xd6,0x03,0xfe,0xdb, - 0x04,0xd3,0xc7,0x25,0xdb,0x03,0x08,0xc3,0x85,0xd8,0xee,0x1e,0x7f,0x03,0x98,0x7e,0x1b,0x53,0x6c,0xab, - 0x82,0xb2,0x53,0x85,0xdf,0xd0,0xb2,0x76,0xbe,0x09,0x0a,0x62,0xfd,0x3b,0x65,0x09,0x59,0xe4,0x75,0xb8, - 0x90,0x9f,0xed,0xa0,0x6a,0xd7,0xc6,0xd4,0xe0,0xdb,0x32,0x3b,0x53,0xff,0x06,0x43,0xf0,0xaf,0x72,0xe3, - 0xf3,0x62,0x96,0xfd,0x9b,0xe8,0x36,0x73,0x2d,0xe4,0xea,0x04,0x6a,0xfc,0xf5,0xf8,0x5f,0x65,0xb7,0x8f, - 0x1f,0x56,0x27,0x03,0xdd,0xa4,0xd2,0x26,0xde,0x20,0x35,0xd7,0xf9,0x44,0x5c,0x21,0xfb,0x5f,0x99,0x9b, - 0x53,0xf1,0x9d,0xda,0xf8,0x44,0x2e,0x05,0x0f,0xfb,0x17,0xdc,0x19,0xee,0x1e,0xd1,0x99,0x67,0x7a,0x29, - 0xf2,0xf6,0x5e,0x0d,0x65,0xd5,0x12,0x61,0x3d,0x7c,0x2f,0xa0,0xef,0xb0,0x13,0xb8,0xb2,0x9d,0x54,0xdb, - 0xb7,0x93,0xe2,0x8b,0xef,0x57,0xee,0x96,0x40,0xd7,0x30,0x1b,0xee,0xf3,0x74,0xfe,0xb3,0x44,0x64,0xe8, - 0xb6,0xee,0x1d,0xf9,0xde,0x28,0xcb,0x4c,0x0f,0x9c,0x79,0xcc,0x85,0x9e,0x7c,0x9d,0x55,0xff,0x3e,0x4f, - 0x73,0x53,0x27,0x5f,0x8a,0x65,0xee,0xf6,0xd4,0xf3,0x85,0xbd,0xd8,0xb3,0x6c,0xec,0x8d,0x24,0xf2,0x95, - 0xb9,0x3d,0xab,0x92,0x57,0x7f,0x9d,0x56,0x58,0xc8,0x5f,0xab,0xd5,0x4d,0xb5,0x77,0x60,0x86,0xa9,0x6c, - 0xc6,0x08,0x83,0x63,0x50,0x79,0xa6,0x89,0xae,0xe1,0xad,0xbd,0xc4,0x73,0xc3,0xc4,0xb9,0x53,0x8f,0xb9, - 0x8e,0x34,0x4c,0xaa,0xf3,0x4b,0x8e,0x88,0xc3,0xe0,0xe5,0xae,0x88,0x75,0x09,0xde,0xb3,0x8c,0x75,0x16, - 0x92,0x68,0x23,0xb0,0xfb,0x62,0x4f,0xe7,0xd4,0xe8,0x2c,0x48,0xe0,0x5b,0x65,0xed,0x6b,0x27,0x9c,0x79, - 0x13,0xa4,0xf1,0x6d,0x7a,0x61,0x6f,0x36,0xe3,0xa1,0xc3,0xd4,0x88,0x68,0x88,0xec,0x86,0x97,0x22,0x45, - 0x38,0xbf,0xd3,0xe2,0x6c,0xc5,0x37,0xb2,0xa7,0x40,0xba,0x63,0x6d,0x42,0x96,0xc0,0xfa,0x77,0x00,0x73, - 0x0e,0x4f,0xcb,0x5a,0x0d,0xa1,0x79,0xa2,0x7c,0xe2,0xb6,0xf6,0x50,0xaa,0xb4,0x89,0xc5,0x53,0xf6,0x2e, - 0x5c,0xb1,0xd8,0x98,0xaf,0xe7,0xe0,0x08,0x2c,0xc2,0x66,0xc9,0x85,0x38,0xde,0xa4,0x8e,0x57,0x1d,0x51, - 0x79,0x82,0x49,0xdb,0x57,0xd4,0x7a,0x5d,0x67,0xbd,0x0b,0x84,0x54,0x51,0xf7,0x50,0x43,0x4d,0x8d,0x1f, - 0x46,0xd8,0xb3,0x11,0xa2,0x77,0x2f,0x03,0x7b,0x0d,0x13,0xef,0x0d,0x29,0x1c,0xbf,0x0c,0x0f,0x15,0x5c, - 0xdb,0xa2,0x1a,0xce,0x05,0x8d,0x86,0x19,0xc7,0x80,0x39,0x9f,0x31,0x06,0xac,0x61,0x46,0x70,0x15,0x17, - 0x04,0xc9,0xc3,0xb1,0xc0,0x0f,0x71,0x21,0x9a,0x0b,0x6d,0xe4,0x64,0x12,0x7b,0x7b,0xe3,0x84,0xef,0xf2, - 0x75,0x59,0xce,0x26,0x1d,0x41,0xf1,0x8d,0x9b,0x2b,0x66,0x1c,0x5e,0x24,0xe6,0x1e,0x72,0x09,0x7e,0x31, - 0x36,0x11,0x3a,0x5b,0x89,0xd0,0x29,0xc3,0x4a,0xf9,0xd1,0x0e,0x26,0x45,0x68,0x7a,0x1f,0x30,0xd3,0x0e, - 0x0d,0xc9,0x06,0x11,0x3c,0x74,0xa8,0xbc,0x80,0x3c,0xa6,0x3a,0xe1,0x33,0xce,0x5e,0x04,0xae,0x72,0xe0, - 0x25,0x83,0x59,0x60,0x4f,0x05,0xce,0x43,0x8c,0xb2,0xdd,0xd4,0x12,0x8c,0x04,0x5c,0x0f,0xd3,0x82,0x34, - 0x0d,0xf4,0x29,0x41,0x58,0x73,0x5e,0xad,0xe6,0x33,0xda,0xab,0x34,0x83,0x2d,0x60,0x4b,0x35,0xf5,0x26, - 0x22,0x95,0xf0,0x2a,0x16,0x57,0xe8,0x25,0xaf,0xf9,0xbf,0x0c,0x7e,0xb8,0x58,0xb0,0xa3,0x31,0x61,0xab, - 0xab,0x58,0x2e,0x8a,0xa6,0xa1,0x47,0xe6,0xb2,0xe9,0x8d,0xc8,0x28,0x71,0xfc,0xaa,0x2b,0x11,0x92,0x18, - 0x8c,0x8e,0x92,0xcc,0xf4,0x3a,0xed,0x67,0x07,0xb7,0x46,0x0f,0x6a,0x84,0x8c,0xc3,0x2f,0xd6,0xe5,0x4a, - 0xb4,0x3d,0x08,0x5b,0x4d,0xb4,0x09,0xbd,0xd0,0x7a,0x57,0xb5,0xb9,0xd4,0xb7,0x33,0x77,0x2d,0x7c,0x14, - 0x90,0x7a,0x99,0xcf,0x3f,0xe1,0x80,0x18,0x37,0xc1,0x2e,0xe0,0xd4,0x3b,0x2e,0xcd,0x0a,0x25,0xe5,0x6d, - 0x62,0x64,0x0c,0x3a,0x94,0x31,0x7c,0x44,0xcf,0x11,0x10,0x9e,0x90,0x35,0xfd,0x50,0x5f,0x54,0xa7,0xf2, - 0xb0,0x23,0x77,0xdd,0xcc,0x35,0x84,0xfb,0x1f,0xcb,0x75,0x5c,0x72,0xfb,0xf1,0xb4,0xc6,0x35,0x58,0x83, - 0xac,0xcc,0x78,0x2a,0x81,0x59,0xee,0x60,0xfa,0xb6,0xca,0xc9,0x2b,0x93,0x92,0xea,0xd0,0xef,0xd5,0x51, - 0x20,0x7a,0xd2,0xa6,0xaf,0x44,0x8a,0x43,0x5c,0xdc,0xe0,0xb6,0x9a,0x62,0x43,0x65,0x2f,0x89,0x00,0xfc, - 0x78,0x77,0x81,0xdd,0xa8,0x89,0x8e,0xb2,0x17,0x54,0x88,0x7a,0xc4,0x54,0xe8,0xc6,0xa1,0x24,0xba,0x62, - 0xc2,0x2b,0x3f,0xb1,0xf9,0xb4,0xbb,0x4b,0x4f,0xdb,0x24,0xed,0x92,0x9c,0x7d,0xdb,0x56,0x17,0x69,0xb4, - 0xb7,0xb7,0x03,0xe1,0xf3,0xb5,0x31,0x63,0x24,0xf2,0xf6,0x02,0x36,0x75,0x49,0xd7,0x5f,0x44,0x5b,0xc9, - 0x27,0xbc,0x45,0xa0,0x14,0x81,0xd3,0x48,0x4e,0x0c,0x48,0xff,0xc2,0x3f,0xd6,0x23,0x1e,0xe6,0x47,0x09, - 0xdf,0xa1,0x94,0xe5,0x93,0xdc,0x3a,0xbd,0x37,0x49,0xef,0x46,0xbc,0x26,0x99,0x10,0x27,0xd7,0x1c,0xb9, - 0x1d,0xbb,0xc6,0xb8,0x25,0xdc,0x29,0x3d,0x2c,0x74,0x7b,0x5e,0xcd,0xf8,0x51,0xae,0xbb,0xc6,0xd3,0xd4, - 0x44,0x3b,0x18,0x9e,0x98,0xcd,0xe1,0x0c,0x5d,0x1b,0x60,0x09,0x66,0x1e,0xa6,0xd2,0x30,0x91,0x2c,0xd8, - 0xe2,0xc1,0xb6,0x7f,0x41,0x2c,0x4d,0xf6,0x4a,0xd4,0xa5,0xb5,0x9a,0xd7,0xea,0xb4,0xaf,0xac,0xed,0xd3, - 0xdc,0x80,0x00,0xc2,0xd9,0x4b,0x5c,0x6e,0xa5,0x66,0x1c,0x41,0x8e,0xe3,0xc8,0xb1,0xf9,0xcc,0x00,0xcd, - 0x4a,0x54,0x9e,0x0b,0x28,0x0e,0xe2,0x35,0x7c,0x4f,0x92,0x79,0x87,0x2c,0x0c,0xf3,0xe2,0xef,0x08,0x9c, - 0x9d,0x21,0x9f,0xaf,0xd8,0xb9,0x15,0xbe,0x26,0xf2,0x3d,0x3f,0xd3,0x4f,0xcf,0xf3,0xb2,0xd4,0xf3,0xdb, - 0xdb,0xed,0x7b,0x71,0x37,0x09,0x74,0xb7,0xbd,0xa3,0xa9,0x9b,0x43,0x68,0xad,0x69,0xeb,0x15,0xce,0x60, - 0xbe,0xb6,0xa9,0x9b,0xeb,0xe4,0x4c,0xf1,0x40,0xff,0xac,0x03,0xe0,0x77,0x70,0xf6,0xf3,0xb6,0x25,0x17, - 0x35,0xa3,0xbe,0x6e,0x45,0x6a,0x51,0x67,0x17,0x34,0xcd,0x74,0x18,0x3d,0x1c,0x9b,0x87,0x83,0x11,0x38, - 0x54,0x2e,0x95,0x7d,0xa7,0xba,0xd5,0x2f,0x50,0xa4,0x69,0x4d,0x25,0x10,0xf6,0xac,0xef,0x98,0x54,0xc2, - 0xd9,0x8b,0xa2,0xe1,0xf9,0x34,0x8f,0xc6,0xc2,0xf7,0xac,0xce,0x4c,0x82,0xbd,0x08,0x98,0x48,0xe9,0x55, - 0xa7,0x95,0xb3,0x5a,0x6e,0x55,0xfe,0x2e,0x21,0x9e,0xb2,0xe3,0xd4,0x78,0x66,0xc3,0x26,0xd3,0x07,0xf3, - 0x9a,0x81,0xe2,0xba,0x56,0xc7,0x32,0x34,0x62,0xc6,0x4e,0xea,0x9e,0xa0,0xc9,0x88,0x53,0x77,0x22,0x17, - 0x90,0x9a,0x85,0x57,0x84,0xa1,0xa2,0xff,0xcb,0x56,0xeb,0x2d,0xc0,0xc5,0xc9,0xae,0x52,0xf8,0xef,0xbb, - 0x42,0x35,0xc2,0xdd,0x4a,0xa1,0xf2,0xae,0x42,0xd6,0xd6,0x8e,0xd5,0xf1,0x44,0x6c,0x76,0xca,0x29,0x18, - 0x46,0x40,0xb0,0xb9,0x11,0x37,0x50,0x33,0xfb,0x59,0xcb,0x6d,0x54,0x57,0x0c,0xa9,0xf7,0xf8,0xef,0x27, - 0x0e,0x26,0xf5,0x94,0xa1,0xf6,0x03,0xff,0x7d,0x8c,0xb3,0xe3,0x23,0xfe,0xbc,0x1d,0xa2,0x8b,0xed,0x39, - 0xb7,0x40,0xfc,0x77,0xf6,0x8c,0x38,0x66,0x6c,0x45,0x44,0x98,0x9c,0x63,0x3e,0xc1,0x72,0x14,0x9c,0x5c, - 0x4f,0x62,0x73,0x26,0xd2,0xa1,0xb8,0xbd,0x5d,0xf3,0x83,0x1c,0x36,0x90,0x35,0x70,0x12,0x1e,0x24,0x09, - 0xf1,0xd0,0x38,0x09,0x0f,0x86,0xa1,0x21,0xca,0x8f,0x93,0xf0,0x60,0x0e,0x24,0xae,0xcc,0xd7,0xe1,0x3f, - 0x0d,0xbe,0x30,0x54,0xe6,0xf4,0xc4,0x52,0xe9,0xc4,0x26,0xed,0xee,0x7e,0x34,0x0d,0x49,0xac,0x37,0x47, - 0xbd,0xce,0x0a,0x3a,0xf7,0x7d,0x3d,0xee,0x18,0x6f,0x98,0x4f,0x60,0x62,0x5e,0x5f,0x3e,0x0b,0xdf,0x29, - 0xf3,0x25,0x21,0x2a,0x03,0x10,0x41,0x91,0x7e,0xaa,0xd7,0x20,0x40,0xdc,0x3e,0x10,0x41,0x81,0x00,0x03, - 0xe5,0x88,0x06,0x69,0x69,0x2c,0x3a,0x8d,0xc3,0xd7,0x9e,0xcf,0xcf,0xf6,0xf3,0x52,0xc4,0x16,0xf6,0x66, - 0x3d,0x38,0xac,0x99,0x40,0x2c,0xa3,0xc8,0x5f,0x71,0x39,0x70,0x60,0x0e,0x1c,0xc2,0x1d,0xf4,0x39,0x6e, - 0x33,0x73,0x16,0xfb,0xbb,0xa7,0xd6,0xec,0x7a,0x15,0xf4,0x07,0x16,0xe3,0x43,0xbd,0x4b,0xe0,0xb8,0xaf, - 0x42,0x4a,0xc8,0x4e,0xa5,0x35,0x31,0xb3,0x9f,0x21,0x3c,0xce,0xdb,0xf0,0xa4,0xef,0xd1,0xe7,0xc2,0xe7, - 0xa9,0x80,0x71,0xfc,0xa7,0x89,0x35,0xe4,0x92,0x92,0x80,0xa5,0x93,0xf8,0x17,0x0c,0xa5,0x99,0x01,0x50, - 0x0e,0xeb,0x67,0x7a,0x20,0xfd,0x34,0x57,0xd1,0x29,0x27,0x5a,0x31,0xc6,0xe0,0x0e,0x82,0x92,0xf6,0xbc, - 0xae,0x2e,0xe9,0x00,0x79,0xc2,0x5a,0xed,0xfb,0xf2,0xd9,0x16,0x4d,0xdd,0x96,0x81,0xe9,0x2d,0x18,0x5d, - 0x74,0x97,0x13,0x16,0x29,0xc9,0x9a,0xf0,0x11,0x55,0x7e,0x7d,0xe3,0xe0,0x72,0x67,0xe7,0x67,0x4c,0x9a, - 0xef,0x22,0xfa,0x5f,0x2d,0x63,0x33,0x3d,0x90,0x00,0x94,0xab,0x25,0x60,0xc9,0x47,0xeb,0x03,0xe3,0x51, - 0x77,0xd9,0x75,0x2a,0x30,0xe0,0xb0,0xd3,0x12,0x14,0x8f,0xbb,0xc0,0x06,0x99,0x45,0x0c,0x93,0xb8,0xb8, - 0x97,0x2e,0x51,0xc9,0x3a,0xd0,0x6b,0x59,0xfd,0x10,0x84,0xdd,0xf7,0xad,0x91,0x12,0xc8,0xc6,0x4d,0x7a, - 0x5d,0x0a,0xfa,0xfd,0x19,0xf6,0x1c,0x5b,0xc6,0x42,0x58,0x0b,0xbe,0xc0,0xf6,0xdb,0x66,0x82,0xc5,0x18, - 0xea,0x3f,0x8d,0x0b,0x97,0x35,0x78,0xa9,0x83,0x11,0x0f,0x18,0x0b,0x29,0xdf,0xdd,0x71,0xb8,0xfb,0xba, - 0x35,0x6d,0xec,0xc2,0x5e,0x82,0x48,0x5f,0xe2,0x44,0xf9,0x0a,0x9b,0x60,0xa7,0x87,0x13,0xd5,0xdd,0xf3, - 0x65,0x77,0x12,0x6d,0x04,0xcc,0xde,0x0c,0x89,0xc4,0x61,0x43,0x3a,0xc3,0x9b,0x20,0x40,0x32,0xdb,0x66, - 0x2f,0x00,0x4b,0x49,0x7a,0xbd,0xa2,0xc2,0xe9,0x1d,0x8b,0x6d,0xa2,0x5c,0x67,0xd9,0x27,0x5c,0x48,0xcd, - 0x70,0xcb,0x4f,0x40,0x5d,0x1f,0x3a,0xa6,0x7f,0x57,0xb5,0xb3,0x46,0x1c,0x97,0xdf,0x3c,0xae,0x77,0x76, - 0xae,0x6a,0xbe,0x80,0x6d,0xf6,0x0d,0xd7,0x94,0x94,0xb4,0x20,0x54,0xc8,0xc4,0xb6,0x2e,0x77,0x0f,0xd4, - 0x3e,0x64,0x38,0x7c,0xd0,0x5d,0xd9,0x7b,0x32,0x93,0xf1,0x53,0xec,0x72,0x9c,0x0c,0xfb,0xea,0x8f,0x78, - 0xd5,0x8a,0x73,0x9d,0xc8,0x6a,0x3a,0xe3,0xa5,0x6e,0x87,0x83,0x05,0x8d,0xea,0x31,0xab,0x8d,0xa1,0xe2, - 0xb7,0x3d,0xdb,0x1a,0x6d,0x1b,0x39,0x1a,0x23,0x89,0xdb,0xdb,0x82,0x2f,0xc2,0x73,0x5b,0xa7,0x03,0x2d, - 0xe2,0x03,0x6a,0x6b,0xed,0xf0,0x57,0xb2,0x65,0x6b,0xb3,0xe9,0xa6,0x27,0xb2,0xbf,0xcd,0xf6,0x67,0x5b, - 0x57,0x2f,0x42,0x7d,0x12,0xb7,0x96,0x09,0x53,0xf7,0xad,0xa5,0xc6,0x5f,0xda,0xd9,0xe2,0xca,0x74,0x67, - 0x0b,0xeb,0xde,0x74,0x68,0x74,0x71,0x08,0x00,0x02,0x84,0xc8,0x13,0x11,0x9e,0x38,0x10,0x63,0x74,0x6a, - 0xd9,0x14,0xa1,0xfd,0xd9,0x0e,0x0b,0xb7,0x96,0xf9,0x3c,0xee,0x2f,0x55,0x4b,0x70,0x3f,0xab,0x2e,0x3f, - 0xbb,0x5e,0x66,0x70,0x08,0x23,0xf4,0x44,0x13,0xcd,0xf7,0xcc,0xea,0x8e,0x6e,0x6f,0xdd,0xc8,0xfd,0x11, - 0x2f,0xcc,0xeb,0xf8,0x3f,0xea,0x5c,0x6f,0x6f,0x8f,0x3b,0x07,0xf1,0xc1,0x5a,0x78,0xb6,0xdf,0x88,0x30, - 0xd1,0xe5,0x6a,0xa1,0xad,0x2c,0x47,0xf5,0x64,0x3b,0x50,0xd8,0xa4,0x67,0xaa,0xc1,0xdf,0xb5,0x7a,0x4e, - 0xc5,0xb1,0xc3,0xc0,0x98,0x8f,0x9f,0xb6,0xf1,0x87,0x40,0xda,0x2a,0x5c,0xfe,0x2b,0x2a,0x81,0xa0,0x02, - 0x21,0xcf,0x6c,0x28,0x1a,0x3e,0x03,0x86,0x63,0x06,0x0c,0x04,0x05,0x28,0x1a,0x37,0x25,0xc9,0x50,0xd8, - 0x80,0xac,0xd3,0x80,0xbf,0xec,0x3b,0xbb,0x39,0x66,0x39,0x8f,0x94,0xc6,0x08,0x8c,0x2f,0xf3,0x25,0x91, - 0x94,0xf2,0xf8,0x53,0xc9,0x2a,0x69,0xfb,0xfa,0x7c,0xbe,0x48,0x6b,0xe1,0xd8,0x88,0xe8,0xd4,0xa7,0x78, - 0x2f,0xe4,0x7d,0xcd,0xee,0xa2,0xec,0x60,0xde,0xb5,0xef,0xf1,0x31,0x42,0xe4,0xe2,0x1a,0x63,0xd8,0x93, - 0x4d,0xcd,0x83,0x6a,0xfa,0xb6,0x3c,0x94,0xd5,0x4b,0x81,0x67,0xe2,0xe5,0xd6,0x66,0x74,0x03,0x8e,0x68, - 0x40,0xac,0x1b,0xfc,0xec,0x92,0xd1,0x3d,0x56,0x44,0xc6,0x20,0x55,0x35,0x75,0xcc,0x08,0xea,0x82,0x0b, - 0x9b,0x4c,0xff,0x10,0x1a,0xe0,0xf1,0xdc,0xe1,0x02,0x44,0x10,0x7d,0x05,0xa0,0xd4,0x1c,0xca,0x21,0xae, - 0x54,0x45,0x9b,0x48,0xd9,0xf7,0xb4,0xcb,0x6c,0x59,0x97,0xbc,0x8d,0x40,0x0b,0xdb,0x43,0xa4,0xa9,0xd4, - 0xbf,0xbd,0x1d,0x17,0x58,0x3b,0x1b,0x39,0x61,0x74,0x2c,0x43,0x7f,0x6a,0xc4,0xb5,0xb7,0xb7,0x36,0x3c, - 0xab,0x37,0xed,0xe3,0xf2,0xc1,0x3b,0xdf,0xb4,0x60,0xec,0x22,0x7d,0x3d,0xc1,0x2a,0x41,0xce,0x6b,0xc2, - 0x73,0xf1,0xe3,0xb1,0xb9,0x94,0x3b,0xb6,0x8f,0x56,0x9c,0xca,0x17,0x3d,0xdd,0xd5,0x15,0x88,0x88,0x47, - 0xf7,0xe4,0x62,0x0e,0x7b,0xc3,0x51,0xf7,0x9a,0xb3,0x0b,0xdc,0xb3,0x71,0x6f,0x6e,0xcd,0x97,0x70,0x8b, - 0x00,0x25,0xb1,0x71,0x8b,0xab,0x54,0x4c,0x2e,0x6f,0xf2,0x7a,0xd4,0x11,0x52,0x59,0xf3,0x60,0x61,0xde, - 0x11,0xa7,0x0a,0xe5,0xd8,0xe5,0x24,0x18,0x12,0xa5,0x41,0xc5,0x82,0xf0,0xd8,0x88,0x84,0x38,0x9e,0x3e, - 0x72,0x5b,0x77,0xea,0x2f,0xc2,0x6e,0x0e,0xa7,0xc4,0xf3,0xe3,0x8e,0xf6,0x77,0xf1,0x4a,0xf5,0xdb,0x96, - 0x1b,0xff,0x36,0xdb,0xdf,0xdf,0x28,0xf9,0x8c,0xc5,0xe7,0x6b,0x6f,0xdd,0x3c,0xcf,0x36,0x27,0xd8,0xc7, - 0xad,0xf8,0x4c,0x1e,0x2e,0x2c,0x92,0x7b,0x2c,0xe7,0xc9,0xba,0xe2,0x89,0xbf,0x07,0xcb,0x06,0x9a,0x48, - 0xdc,0xbb,0x18,0x84,0xf2,0xa6,0x0c,0x9a,0x86,0xa9,0x51,0x94,0xb3,0x17,0xbd,0x1e,0xd8,0xb6,0x03,0x5b, - 0x59,0x05,0x61,0x36,0xe8,0xd9,0xad,0x02,0x20,0xce,0x47,0xf0,0x58,0x2b,0x09,0x1d,0x36,0x78,0x74,0xdb, - 0xfb,0xf7,0xca,0xa1,0xfa,0xc7,0x65,0x27,0x5a,0x5b,0x1c,0xbe,0x62,0xf6,0xa6,0xb8,0xe9,0xca,0x29,0xfc, - 0xd9,0xc0,0xad,0xbb,0xa5,0xf8,0x62,0x69,0xff,0xcd,0x84,0xef,0x71,0xaa,0x71,0x6d,0xb4,0xc3,0xa7,0xc4, - 0xe8,0xc9,0x91,0x5e,0x27,0x49,0xda,0xa0,0xc2,0xed,0x7d,0x13,0x8c,0xaa,0x5e,0x2b,0x63,0x19,0x70,0x47, - 0xd7,0xfb,0xdd,0xed,0x62,0x3f,0x76,0x1b,0xed,0xf6,0xc7,0xc9,0x2b,0xc5,0xea,0x55,0x50,0x6b,0x5c,0x4a, - 0x37,0xc5,0xf2,0xe1,0x65,0xe9,0x79,0xae,0x9c,0x2f,0x83,0x06,0xbd,0xe7,0x7a,0x9c,0x20,0xa0,0x66,0xd0, - 0xff,0xfd,0x71,0x20,0xd3,0x1c,0xd7,0xc4,0xb8,0xdc,0xeb,0xdf,0xd9,0x0e,0xc9,0x26,0x5c,0x29,0x5d,0x06, - 0x6e,0x7a,0x1c,0x4f,0xd1,0x83,0x8e,0x85,0x83,0x84,0xdd,0xa7,0xd1,0xa7,0xe1,0x35,0xcd,0x40,0x3e,0x2f, - 0xeb,0x8e,0xa8,0xf2,0x15,0xed,0xd9,0x17,0x75,0x76,0xa0,0x9e,0xd5,0xd9,0x43,0xf5,0x06,0x0d,0x3f,0x0f, - 0xb5,0x77,0x7c,0x2b,0xf7,0xa6,0xec,0xf7,0x78,0x45,0xac,0xe5,0x9b,0xda,0x6a,0xe0,0x68,0xaa,0x7e,0x5a, - 0x09,0x6b,0xc9,0x51,0xe2,0x02,0xe4,0x3f,0x19,0x42,0x72,0x1e,0xd6,0x7b,0x92,0x2b,0x06,0x22,0x2b,0x9e, - 0x71,0xe6,0x9d,0x1c,0x86,0x24,0xc4,0x48,0x63,0x1b,0x31,0x22,0xb3,0xb8,0x47,0x95,0x7d,0x94,0xe5,0x12, - 0xe8,0x28,0xf1,0x9f,0xd3,0x0b,0x72,0xe4,0x84,0x41,0xb2,0x3c,0x19,0x31,0xda,0xc0,0xf5,0x8f,0xc1,0xb6, - 0xc8,0x8a,0xce,0x16,0xd9,0xd8,0xa5,0x45,0xb0,0x6b,0xca,0x4d,0xf4,0xe7,0x76,0x11,0x32,0x5d,0x3b,0x1f, - 0xf3,0x33,0xb9,0xd3,0x57,0x69,0x73,0x6c,0x71,0xa8,0x59,0x73,0x94,0xd9,0x34,0xb5,0xe1,0x28,0x98,0x6d, - 0x38,0xe6,0x24,0x42,0xb3,0xaa,0xd6,0x48,0x0c,0xee,0xf9,0xcb,0xda,0x7f,0x6b,0x63,0xab,0x8f,0xb3,0x93, - 0x4b,0x1b,0x8c,0x43,0x79,0x1b,0x49,0x06,0xaf,0xa2,0xb4,0xf5,0xae,0xae,0xae,0x44,0x30,0x60,0x92,0x1b, - 0x3d,0x3f,0x95,0xf7,0xa1,0xad,0xe3,0x2e,0xfe,0x2c,0xdd,0x62,0x30,0x05,0x8f,0x50,0x98,0x2e,0x14,0x90, - 0x09,0x17,0x5a,0x7a,0x1c,0x67,0x73,0x76,0x76,0x28,0xd1,0xc6,0x7b,0x84,0x2d,0xac,0x7d,0x29,0x03,0xe8, - 0xb7,0xea,0xda,0xd6,0xe6,0xf2,0x95,0x4c,0xf7,0xea,0xaa,0x82,0xfc,0xa8,0x94,0x27,0x22,0x26,0x5a,0xff, - 0x0d,0x4b,0x2d,0xe4,0xc2,0x67,0x88,0x7d,0x02,0xd9,0x0d,0xd3,0x18,0x6d,0xb0,0xf1,0x6c,0x42,0x7f,0xd3, - 0x1e,0x70,0x29,0x8f,0xa4,0xcc,0xbb,0x43,0x0a,0x2e,0xa5,0x4b,0x3c,0x82,0xb0,0x33,0x92,0xa0,0xce,0xbe, - 0x19,0x1d,0x9b,0xfb,0x8e,0x86,0x2c,0x79,0x28,0x97,0x98,0x42,0x58,0xd5,0xb0,0xbd,0x44,0x66,0xa2,0xa1, - 0xe9,0xcf,0x1e,0x19,0x84,0x13,0x4b,0xb9,0xa7,0xeb,0x8e,0x06,0xe5,0xcc,0xb6,0xe3,0x13,0x78,0xf9,0x58, - 0x6b,0xdd,0x78,0xbd,0x70,0x6f,0x09,0xdd,0x41,0xdf,0xdd,0x70,0xb4,0x03,0x4b,0xac,0x94,0x8d,0xc0,0x19, - 0x1e,0x40,0xba,0x0f,0xea,0x72,0xe1,0x63,0x48,0x62,0x64,0x7c,0xb4,0x1f,0x4f,0x3b,0xe6,0xde,0x2a,0xbc, - 0xee,0xfa,0x6d,0x70,0x11,0x2c,0x22,0x44,0xac,0x79,0x2d,0x43,0x1b,0xc4,0xbf,0xfa,0xed,0xbe,0xd1,0x84, - 0x14,0xd2,0x63,0x0e,0x99,0x0f,0xd5,0x4b,0x24,0xb4,0x47,0x04,0x51,0x5e,0x11,0x90,0x1c,0x12,0x70,0x4b, - 0x4a,0xb8,0xfd,0x1b,0x29,0xbd,0x31,0xdd,0xbe,0xb4,0x9d,0xed,0xa9,0x6c,0x2b,0xd5,0x35,0x67,0x1b,0x08, - 0xca,0x92,0x9d,0xb7,0x21,0x71,0x25,0x72,0x7e,0x28,0x1f,0x70,0xaa,0x0d,0xd0,0x32,0x2a,0x44,0xd1,0x7a, - 0x20,0x46,0x39,0x1d,0x37,0x1f,0x99,0x20,0xd0,0x12,0x20,0x57,0x0d,0x10,0x24,0x77,0x01,0x85,0xe5,0x67, - 0xe0,0x68,0xdf,0x87,0x00,0x3a,0xf6,0x8c,0xc7,0xcb,0xe7,0xd1,0xb6,0x47,0x84,0x8c,0x44,0x6a,0x47,0x72, - 0x99,0x78,0xfd,0x03,0x54,0x17,0x36,0x64,0x85,0xa0,0x43,0x76,0x83,0x6f,0x74,0xb9,0x32,0xae,0x6b,0xae, - 0xe9,0x0a,0xf7,0x52,0xf1,0xde,0xaf,0x6c,0xf8,0xdd,0x77,0x30,0x9c,0xa6,0x71,0xd3,0xdc,0x7d,0x8c,0x39, - 0x9e,0x48,0xa2,0x58,0x73,0x43,0xd8,0x6c,0xde,0xb2,0xaa,0x91,0xfb,0x11,0x81,0xd4,0xee,0xc5,0x11,0x48, - 0x72,0xb8,0xdb,0x0f,0xcc,0x14,0x3b,0x3f,0x19,0xd2,0x12,0x66,0xd9,0xa2,0x91,0xe9,0xcf,0x41,0x7f,0xf4, - 0x3e,0x20,0x8e,0xd4,0xce,0xb7,0xb9,0x88,0xe0,0x02,0xab,0x32,0x39,0x4b,0x67,0xb1,0xe8,0xfb,0xe4,0xce, - 0x67,0x5b,0x2f,0x9a,0x00,0x54,0x4e,0x3e,0x87,0x4d,0x05,0x6e,0xab,0x18,0x69,0xc7,0xac,0xb5,0x1b,0x14, - 0xa3,0xf6,0x7a,0xe8,0xcd,0x83,0x5b,0x61,0xdf,0x75,0x47,0x30,0x60,0xf2,0x9e,0xf0,0x76,0x61,0x23,0xce, - 0x18,0xd7,0x6c,0xdd,0xac,0xe5,0x92,0x1e,0x22,0x16,0xf8,0x8e,0x67,0x22,0x76,0x34,0x5f,0xca,0xe6,0x05, - 0x2d,0x5d,0x78,0xe4,0xf5,0xee,0x91,0xc5,0x45,0x16,0x42,0xb8,0x19,0xaa,0x72,0x11,0x19,0xc7,0x85,0x13, - 0x8d,0xe5,0x59,0x79,0x58,0x1c,0xc1,0xd5,0xec,0x94,0x56,0x10,0x77,0xb4,0x5e,0xf2,0x4d,0xad,0x66,0xf9, - 0xd0,0xad,0x08,0xf7,0x64,0x3f,0x16,0x0a,0x06,0x1c,0x58,0xfa,0x38,0xb6,0xd3,0x40,0xf0,0x85,0xfd,0xaa, - 0x9d,0x8a,0xec,0x2e,0x50,0x3d,0xb6,0x05,0x7e,0xb6,0xf0,0x3e,0x84,0x77,0xeb,0xec,0x7b,0x84,0x4a,0xef, - 0x44,0xdf,0x70,0xdc,0x9b,0xc6,0xdd,0x31,0x83,0x33,0x5f,0x4d,0xaa,0xb4,0x82,0x6c,0x63,0x0c,0xc9,0x11, - 0xc6,0xc3,0x02,0xf0,0xb7,0xf0,0xdb,0xa4,0x2d,0x71,0xa6,0xce,0x88,0x4d,0x27,0x22,0xb6,0x30,0xa0,0x79, - 0x8a,0xb1,0x15,0xcc,0xfe,0x31,0x28,0xd8,0xbe,0x25,0xec,0xe3,0x45,0xfd,0x83,0x4d,0x0b,0x3f,0x6c,0x8b, - 0x82,0xf3,0x0e,0xf7,0x88,0xa0,0x7b,0x35,0x43,0xd9,0x66,0x18,0x8f,0x3a,0xbc,0x0b,0x0e,0xee,0x71,0x75, - 0xe8,0x13,0x37,0x13,0x3e,0xa2,0xe6,0x9b,0x22,0x99,0x7b,0xb5,0x29,0xb6,0x6b,0x62,0x16,0x38,0x84,0x3b, - 0x36,0x60,0xd4,0xe8,0x10,0x4d,0x3c,0xb0,0x63,0xf3,0x3a,0x1b,0x06,0x55,0x6d,0x04,0x4a,0x04,0x65,0x9b, - 0x08,0xd4,0x1a,0x00,0x1b,0x4a,0xc4,0xb5,0x00,0x17,0x25,0x49,0x11,0x0e,0xbc,0x9f,0x4b,0xe7,0xc4,0x66, - 0x0f,0x71,0x9b,0xd0,0xe7,0x6c,0x60,0x18,0x90,0xd6,0x63,0x17,0xf7,0xa9,0xfc,0x6c,0x61,0x06,0xef,0x61, - 0x2b,0x99,0xeb,0x38,0x20,0x95,0xe9,0xf8,0x10,0xd0,0xa5,0xfd,0xf1,0x57,0x0a,0x1b,0x34,0x55,0x26,0x1d, - 0x6b,0xb9,0x7b,0x6c,0x18,0xd7,0x4d,0x92,0x8b,0x9c,0xb2,0xdf,0xba,0xa9,0x43,0x8a,0x73,0xb9,0xf3,0xc8, - 0x47,0x72,0xe1,0xc5,0x65,0x42,0x4e,0xee,0x97,0xc6,0x75,0x10,0x72,0x8d,0xbb,0x28,0xa2,0xf6,0x6d,0xc8, - 0x55,0x03,0xbb,0x41,0x51,0xe7,0x3b,0x57,0x78,0x05,0xae,0xf6,0x32,0x41,0x65,0xfd,0x21,0x42,0xb3,0x99, - 0xda,0x49,0xdd,0x38,0x84,0x72,0xfc,0x7c,0x28,0x40,0x59,0xf6,0xe0,0xbf,0x71,0x09,0x7b,0xfa,0x60,0xdc, - 0x19,0x4e,0xd5,0x31,0x46,0x97,0x91,0xf4,0xed,0x44,0x92,0xae,0xcd,0x47,0xdb,0xb7,0xf9,0x30,0xd0,0x41, - 0x15,0xc0,0x17,0xd8,0x88,0x67,0x04,0x66,0x0c,0xed,0x75,0xd8,0x1e,0x59,0xad,0x81,0x4f,0x09,0x82,0x40, - 0x95,0xd8,0x90,0x46,0xdb,0x04,0xa0,0xe6,0x82,0x5d,0xc2,0x6c,0xdf,0xdf,0x0c,0x44,0xb9,0x5d,0x5b,0xc7, - 0x7b,0x55,0x4f,0x28,0xa6,0x03,0xe3,0x4c,0x99,0xa1,0x7b,0xd5,0xe9,0x29,0x0f,0x50,0x59,0x2b,0xa1,0x3a, - 0xb8,0x3a,0x6d,0x6d,0xfc,0x50,0xa8,0xe6,0xc0,0x7b,0x91,0x28,0x6b,0x55,0xcb,0xc0,0xf0,0x61,0xdd,0x6f, - 0xf4,0xf4,0xb4,0xd7,0x26,0x58,0xd1,0xbe,0xd1,0x52,0xd2,0x81,0xea,0xcf,0x91,0xa2,0x68,0x7c,0x68,0xf6, - 0x7b,0x5e,0x5a,0x1b,0x41,0x0d,0xcd,0xf4,0x63,0x7c,0x38,0xf6,0x74,0x77,0xa2,0x8c,0x0b,0x57,0x77,0xea, - 0xbb,0x97,0x56,0xd8,0x96,0xbd,0x49,0x47,0x7f,0xa5,0x84,0x94,0x35,0xc5,0xb4,0x83,0x87,0x2a,0xbc,0xe4, - 0x32,0xc7,0x49,0x43,0xd9,0x71,0x95,0x15,0xb0,0xd0,0x80,0xdd,0x02,0xae,0x2f,0x3a,0x2d,0x7b,0x57,0x5d, - 0xe6,0x1b,0x57,0x5d,0x0e,0xac,0xa8,0x5e,0xf4,0xf8,0x5f,0x2f,0xaf,0x67,0x8e,0xa7,0x3b,0x96,0x12,0x0e, - 0x64,0xf6,0xd0,0xfb,0xe6,0x60,0x02,0x88,0x4a,0xcb,0x80,0xaf,0x3f,0x8f,0xdd,0xba,0x50,0xeb,0x04,0xc4, - 0xfb,0xec,0xf1,0x6a,0x31,0xf4,0xa3,0x8a,0xb1,0x34,0xdf,0xd2,0x45,0x28,0xda,0x40,0x08,0x02,0x82,0x79, - 0x07,0x9f,0x27,0x31,0x91,0x7d,0xea,0x3e,0xb7,0xbb,0x75,0x2e,0xee,0x03,0x2c,0xdd,0x87,0x54,0x5f,0xe4, - 0xf8,0x5e,0xc9,0x26,0x9b,0x30,0x7e,0x5d,0x67,0xf4,0x1b,0xf2,0xf5,0x7d,0xd5,0x8d,0x10,0x10,0x86,0x99, - 0x37,0x2c,0xcf,0xce,0x4e,0x8f,0xc2,0x35,0xfe,0x17,0x36,0xce,0xa1,0x2c,0xb8,0x9e,0x2b,0xa3,0x8f,0x16, - 0x7e,0x83,0x06,0x75,0x59,0x8f,0x2f,0xeb,0x90,0x85,0x14,0x9e,0xa2,0x55,0xf5,0xc4,0x7e,0x63,0x4d,0xe2, - 0x58,0x12,0x7a,0x8c,0x88,0xc5,0x74,0x32,0xc4,0x77,0xe5,0xba,0x96,0x38,0x26,0xc7,0x41,0xef,0x94,0x08, - 0x78,0xfb,0x5e,0x86,0x70,0xf7,0xfd,0x53,0x25,0x10,0x0c,0x0c,0x96,0xb7,0x31,0xb4,0xeb,0xac,0xe0,0xdb, - 0x11,0x89,0x5f,0x3f,0xbe,0x58,0xe9,0xe3,0xe3,0xcc,0xef,0x10,0xf4,0xc6,0x62,0x08,0x7a,0x74,0x25,0x02, - 0x7e,0xfa,0x9e,0x91,0x93,0xca,0x8b,0xb4,0x69,0xdf,0x64,0x42,0x8c,0x6a,0xc8,0xe4,0x05,0x82,0xd5,0x30, - 0xd5,0x4d,0xc7,0x3d,0x3e,0xef,0x5e,0x87,0x5a,0x8e,0x50,0xda,0xb7,0xa1,0x85,0xb1,0x94,0xbe,0x69,0xd3, - 0xbe,0x06,0x76,0xc2,0xdd,0xba,0x8c,0x9c,0xa8,0xa7,0x31,0xd9,0xb6,0x40,0xd1,0xe5,0x72,0x93,0x9b,0x1e, - 0x6c,0x58,0x17,0x9c,0x44,0x0d,0x7f,0xe0,0x6f,0xa6,0x0c,0x47,0x37,0xde,0x6e,0x21,0x8f,0x1e,0xd0,0xc0, - 0x74,0x57,0xc6,0x8a,0x0b,0x58,0x33,0xe3,0xb9,0xfc,0x8e,0xf8,0xe2,0x8e,0xe1,0xfa,0x33,0x69,0xec,0x2d, - 0xe9,0x3a,0x45,0x9c,0x14,0x58,0x3b,0x05,0x8e,0xcb,0x82,0x61,0x75,0x50,0x83,0x27,0x20,0x8c,0x39,0xa7, - 0x6d,0x2d,0x48,0xb2,0xc6,0x8f,0x7b,0x7b,0x6e,0x2a,0xc2,0x59,0x50,0x43,0xb0,0x6d,0xb6,0x8e,0xc0,0x97, - 0x9b,0x59,0xef,0xcc,0xe4,0x40,0x98,0xb0,0xeb,0xe7,0x01,0x30,0x04,0xd1,0x2e,0x3c,0x75,0x64,0xf5,0x62, - 0x6e,0xbf,0x56,0x4f,0xdb,0x38,0x7e,0xd7,0xc3,0x0e,0x89,0x7a,0xd7,0x01,0x8c,0x92,0x58,0xfe,0x8f,0xc5, - 0xb4,0x6b,0xfa,0x68,0x50,0xcc,0x1f,0x46,0xd9,0x48,0xd0,0xd4,0xf9,0xc8,0xc8,0x04,0x42,0x60,0xf2,0xab, - 0xaf,0x36,0x04,0x47,0x46,0xcc,0xb5,0x21,0xe8,0x63,0xad,0x84,0xc7,0x48,0x49,0x87,0x50,0xb7,0x52,0x08, - 0xef,0xcc,0x2c,0xef,0x60,0x2f,0x70,0x0b,0x8b,0x75,0x4d,0x23,0xec,0x7f,0xb8,0x7f,0xb4,0xb3,0x83,0xbf, - 0x50,0xe0,0x24,0x81,0x08,0x1d,0xa4,0xfb,0x07,0x62,0x2a,0x21,0x29,0x5e,0xf7,0xa4,0x16,0xb5,0xd3,0x50, - 0x74,0xd4,0x27,0xa2,0xa7,0x30,0xfa,0x10,0xe1,0x4b,0xd9,0x00,0x03,0x01,0x0b,0x84,0x40,0xea,0x88,0xd2, - 0x36,0x24,0x19,0x81,0x49,0xc6,0x13,0xbe,0x1c,0x35,0x92,0xd2,0x7c,0x33,0x91,0xc5,0x02,0x16,0x85,0xe7, - 0x34,0x50,0x11,0x49,0x23,0x9a,0x3e,0xb8,0x0d,0x6a,0xa6,0x8e,0x39,0xce,0xa7,0x55,0xbb,0x28,0x43,0xcd, - 0xbe,0xab,0x69,0x47,0xab,0xf7,0x75,0x76,0x68,0x7c,0x25,0xdf,0xeb,0xb3,0xe7,0x57,0x4b,0xb1,0xb7,0x3d, - 0x52,0x4f,0xea,0xec,0xe6,0x07,0x2b,0xbe,0x4e,0x4d,0x98,0x93,0x30,0x9a,0xb5,0xdd,0x64,0xac,0xb0,0x93, - 0x48,0x17,0x45,0x39,0x9d,0xaf,0x66,0x3a,0x7d,0x5f,0x2b,0x7d,0xe5,0x1e,0x17,0xf9,0x55,0x6a,0xdb,0x90, - 0xfb,0x77,0x8e,0x60,0x54,0xc8,0x34,0x7c,0xda,0x47,0x43,0xd3,0x9c,0x36,0xd2,0x9d,0x94,0x06,0xf3,0x94, - 0xf0,0xde,0x50,0x0e,0xd8,0x3b,0xae,0x2d,0x56,0xdb,0xca,0xeb,0xed,0xaa,0x4b,0x9e,0x59,0x89,0x26,0xde, - 0x54,0xeb,0xab,0x22,0x38,0xe4,0xad,0xeb,0xbb,0x1e,0x02,0xed,0x0b,0xb3,0xb3,0xbc,0x2c,0xc9,0x01,0xf2, - 0x4b,0x23,0x49,0xa3,0x0a,0xec,0x48,0xff,0xda,0x97,0xdb,0xfe,0xcb,0xb5,0xda,0x8c,0x38,0x10,0xe2,0x3c, - 0x86,0xb8,0x91,0x89,0x05,0x46,0x9b,0xe0,0x9f,0x62,0x2a,0x2c,0xa4,0x75,0x5f,0xf2,0x1c,0x06,0xe4,0x7c, - 0x85,0x10,0xf0,0xca,0x90,0x4f,0x66,0x60,0x08,0x14,0x26,0x4a,0x7c,0x7e,0xe5,0xbb,0x32,0x09,0xb0,0xb7, - 0x09,0x46,0xd0,0xa5,0x02,0xc1,0x20,0x08,0xf2,0x09,0x86,0x77,0x76,0xe8,0xbd,0x0a,0x22,0xfb,0x6b,0x23, - 0x4d,0x09,0xa6,0xd0,0x18,0x83,0x60,0x0a,0xd5,0xd4,0x8a,0x31,0xf8,0x7a,0xe5,0x52,0xa2,0xbb,0x4f,0x8b, - 0xd9,0x6e,0x2c,0x11,0x2b,0xa2,0x34,0x45,0xac,0x0d,0x0e,0xcc,0x12,0x41,0xc5,0x80,0x10,0x4b,0xf9,0xe1, - 0xf4,0x68,0x32,0xa8,0x6d,0x42,0xce,0x80,0xc2,0x69,0x2e,0xb7,0x67,0x19,0x0b,0x9d,0x29,0xa2,0x2c,0xa3, - 0x24,0xd1,0xba,0x2e,0x49,0x96,0x95,0xa0,0x6d,0x67,0xc7,0xe2,0xe8,0x6f,0x7c,0xc0,0x40,0x93,0x47,0xbb, - 0x99,0xa0,0x21,0x57,0xb8,0x57,0x55,0x75,0x08,0x8e,0xc4,0x8a,0x5a,0xbc,0xd6,0x06,0xd2,0x1e,0x3b,0x09, - 0x74,0xc6,0x10,0xf6,0xa6,0xaf,0x88,0x57,0x19,0x88,0x58,0xfc,0x39,0x3e,0xf2,0xb7,0xf2,0x4e,0x8e,0x90, - 0x98,0x59,0xd6,0xde,0x33,0x23,0xd8,0x8e,0x56,0x6d,0x31,0xcf,0x6e,0xe0,0xe9,0x99,0x7e,0x4b,0x74,0xdb, - 0x55,0x4b,0x00,0x82,0x68,0xb2,0xb0,0xcd,0x36,0x2b,0x9d,0x3e,0x53,0x52,0xc9,0x7b,0xd1,0xe0,0xe8,0xf4, - 0x23,0x88,0x50,0xcb,0x09,0x06,0xec,0x9f,0x43,0xc4,0x7f,0x28,0x77,0xe9,0xc3,0xe0,0xce,0x1a,0xb2,0xbe, - 0x66,0x11,0x96,0xbd,0x29,0x42,0x8b,0x11,0xf6,0x90,0x0b,0x56,0xe2,0xeb,0x1e,0x1d,0x9f,0xe4,0x0d,0xe8, - 0x36,0x5c,0x7b,0x6a,0xd3,0xdc,0x4a,0x36,0x84,0x51,0x78,0x88,0x8d,0xbe,0x83,0x42,0x86,0x90,0x9d,0x56, - 0x1b,0x17,0x8e,0xbc,0x9b,0xaf,0xce,0x0a,0x89,0xbf,0x3a,0x98,0xc1,0x77,0xee,0x71,0x68,0x50,0xeb,0x11, - 0xd9,0xe2,0xf6,0x8a,0x0e,0x6b,0x20,0x54,0x67,0x97,0x84,0xf6,0x6c,0x92,0xf1,0x9e,0x30,0xa2,0x85,0x01, - 0x19,0x04,0x62,0x90,0x70,0xa3,0x13,0xf7,0x64,0x1d,0x35,0x60,0xf4,0x3e,0xf4,0x05,0xb4,0x59,0xc1,0x95, - 0x65,0xcc,0xb5,0x85,0x06,0x65,0x58,0xa7,0x45,0x71,0x55,0x0c,0x3b,0x4b,0x63,0xa0,0x5e,0x09,0x13,0xbe, - 0x2a,0xf7,0x7d,0x57,0x38,0x4b,0x9b,0x2c,0xdb,0x37,0x52,0xd9,0x03,0x62,0x90,0x05,0x5e,0xba,0xfa,0xb7, - 0x8c,0x15,0x37,0x01,0x09,0x0e,0xe1,0x3c,0xbe,0x94,0x8b,0x77,0xb1,0x59,0xe5,0x5e,0x43,0x3c,0xb1,0x1c, - 0x0f,0x98,0x01,0x8a,0x42,0x6b,0x80,0x6e,0x7d,0x55,0x70,0x62,0xca,0x75,0x8c,0x2e,0x94,0x8a,0x44,0xd9, - 0xce,0x07,0x34,0x7e,0x50,0x04,0xb2,0x47,0x84,0x09,0x18,0x90,0xfb,0xc3,0xbe,0x0f,0x46,0x01,0x25,0x91, - 0x84,0x3a,0xa7,0x2c,0x47,0xbc,0x6a,0x1a,0x22,0x6e,0x88,0xcf,0x83,0xa9,0x29,0xc3,0x79,0xa1,0xd3,0x76, - 0xb5,0x84,0x9e,0xc6,0x17,0xd9,0x14,0x4a,0x7b,0x69,0xd4,0x67,0x65,0xb2,0x90,0x29,0x86,0x52,0x97,0x63, - 0x27,0x75,0x59,0xe3,0xae,0x93,0xbc,0x03,0xd4,0x7d,0x69,0xe2,0x66,0x1b,0xb6,0x54,0xbf,0x99,0xd3,0x6e, - 0x33,0x56,0x2c,0x2f,0x4d,0x98,0x35,0x2c,0xcd,0x03,0xa5,0x08,0xc4,0x94,0xf2,0x4b,0xef,0xd8,0x40,0x25, - 0xfe,0xde,0xe5,0x35,0x91,0x33,0xef,0xcb,0x31,0x67,0x95,0xdc,0xe0,0xb2,0xb9,0x19,0xd9,0x0d,0xc1,0xcd, - 0x9e,0xf5,0x86,0xf3,0x33,0x6b,0x3b,0x62,0x73,0x5a,0xbe,0x18,0x26,0xa7,0x1d,0xe8,0xdc,0xef,0x70,0x29, - 0x6f,0xee,0xb5,0xae,0x05,0x3b,0x38,0x11,0x71,0xb1,0x96,0x63,0xaa,0xbd,0xab,0x7b,0xe8,0x59,0x2f,0x92, - 0x8f,0xf3,0x29,0x89,0x83,0x88,0x00,0xe2,0x27,0x56,0xc5,0x25,0x07,0x44,0x61,0x50,0xcb,0x4a,0x03,0x81, - 0xce,0x9a,0xb5,0x83,0x7a,0x4c,0x9f,0x39,0x92,0x4d,0x10,0x4e,0x40,0x2a,0x1a,0xd8,0xb0,0xcc,0xad,0x65, - 0x37,0x88,0x6e,0x99,0x96,0xca,0xc4,0x3e,0x2f,0xd7,0xd6,0xd5,0xc7,0x20,0x3f,0xf1,0x40,0x81,0x45,0x61, - 0xc9,0x51,0xf6,0x06,0xf3,0xd6,0xc6,0x65,0xaa,0x14,0x16,0x7a,0x18,0xdb,0x3f,0xef,0xca,0xf4,0x8a,0xe6, - 0x83,0xf8,0x1a,0x8b,0x63,0xf4,0xf7,0x68,0xf9,0x2f,0x7d,0xd8,0x34,0xb5,0x71,0x8d,0xdc,0xf4,0xa9,0x0e, - 0xb1,0x49,0x97,0xa5,0x14,0x82,0xde,0x7f,0x0b,0xcb,0x77,0xaa,0x18,0x7e,0x6f,0x05,0x6c,0xaf,0x1f,0x8e, - 0xbe,0x1a,0x1d,0x7c,0x21,0x61,0x5a,0x7e,0xac,0xd5,0x4f,0xb5,0xfa,0xae,0x56,0x7f,0xd4,0xea,0xe7,0x5a, - 0xfd,0x5e,0xab,0xef,0x6b,0xf5,0x43,0xad,0x7e,0xa9,0x39,0x9c,0x06,0xdf,0xfb,0x6c,0xee,0x7c,0x55,0xdf, - 0x72,0x1a,0xdf,0x6d,0xa3,0x50,0x2f,0x91,0x99,0xb9,0x92,0x09,0x52,0x72,0xbf,0x0f,0xc8,0xc3,0x33,0x98, - 0x0e,0x52,0xe9,0x7f,0xf7,0x6d,0xe7,0x5d,0x88,0x24,0x77,0xbf,0x39,0x2d,0xcb,0xb7,0x35,0x8b,0xd4,0x22, - 0x89,0x68,0x0c,0xc7,0x0b,0xdc,0x02,0x6b,0x6f,0x0b,0x32,0x85,0x22,0x69,0x84,0xd7,0x97,0x72,0x89,0x2e, - 0x99,0x7e,0xf2,0x99,0x72,0xd9,0x8e,0xc9,0x73,0x71,0xd4,0x91,0x03,0xb1,0x73,0xc5,0x39,0x6b,0xf5,0x2f, - 0xee,0xfc,0x54,0x2e,0x7b,0xd7,0xb3,0xa2,0x85,0x11,0x9d,0x9a,0xd5,0xf9,0xd9,0x19,0x3f,0x35,0x4b,0x3d, - 0x9f,0x73,0xcd,0xd4,0xf7,0x7f,0x72,0x61,0x3a,0x08,0xaa,0xcb,0x53,0x42,0xf0,0x0d,0x61,0x30,0x62,0x2a, - 0xd9,0x25,0x53,0xe5,0xab,0xb6,0x3a,0xad,0xa6,0xab,0x86,0x9f,0x96,0xf3,0xfc,0x5a,0x99,0x0e,0x71,0xe0, - 0x11,0x3a,0xaa,0x61,0xa7,0x47,0x24,0xeb,0xbc,0xa1,0xf3,0x9b,0xe6,0xae,0xd6,0xca,0x92,0x76,0xe6,0xd7, - 0x96,0x37,0xaf,0xdc,0x67,0xfb,0x62,0x87,0x8e,0x77,0xe2,0x7c,0x66,0x45,0x83,0xee,0xcd,0x94,0x2e,0xe5, - 0x17,0x11,0x0c,0xca,0x8a,0xa6,0xb0,0x00,0x10,0xab,0xf3,0x62,0x36,0xa3,0xae,0xe1,0x70,0x6c,0x75,0xbd, - 0x28,0x4a,0x24,0x12,0x44,0xd5,0xad,0x2a,0x9a,0x45,0xbe,0x54,0x45,0xab,0x17,0x12,0xe9,0x64,0x5e,0x55, - 0x4b,0x65,0xaf,0x99,0x52,0xd2,0x68,0x59,0x21,0x54,0x8b,0x42,0x78,0x89,0xa6,0xf8,0x83,0x16,0xa9,0x6a, - 0xce,0x73,0x30,0x9c,0xbe,0x85,0xb2,0x42,0xf4,0x28,0x5a,0x67,0x6a,0x66,0x99,0x13,0x36,0xa2,0x4d,0x7b, - 0x55,0xb4,0x44,0xd2,0xe6,0xb3,0xaa,0x9c,0x23,0xaa,0xca,0xef,0x2b,0xda,0x82,0x33,0x65,0x5c,0x2b,0x67, - 0x4a,0xd8,0x22,0x82,0x89,0x7c,0x31,0x27,0x60,0x50,0x6e,0x4c,0xf0,0xc1,0xe4,0xd9,0x76,0x17,0xbb,0x70, - 0x6c,0x50,0x9a,0x7b,0xca,0x04,0xcc,0x23,0xb0,0x04,0xc7,0x8a,0x57,0x17,0x45,0x53,0x50,0x49,0x70,0xb8, - 0x45,0x16,0x9d,0xb7,0xed,0x32,0x7d,0xf0,0xe0,0xf2,0xf2,0x72,0x74,0xf9,0xc5,0xa8,0xaa,0xcf,0x1e,0x1c, - 0x7c,0xfd,0xf5,0xd7,0x0f,0xae,0xe6,0x45,0xf9,0x89,0x28,0xaa,0x62,0xe0,0x9c,0x8d,0xd2,0x8e,0x0b,0xca, - 0x57,0x80,0x32,0x29,0xcf,0xc9,0x36,0x44,0xcf,0x57,0x44,0xd8,0x97,0x43,0xdf,0x6f,0x69,0xd8,0xe4,0x3a, - 0xef,0x92,0xbf,0x2b,0x2b,0xd8,0xe4,0x98,0x2d,0xaa,0x1e,0xfc,0x46,0x08,0x64,0x02,0xc4,0xed,0x03,0x01, - 0xbb,0xa2,0xc8,0x6e,0x9a,0x0b,0x22,0x88,0x37,0x47,0xf0,0x70,0x7f,0x7f,0xff,0x01,0xe5,0x45,0xc4,0x37, - 0xb5,0xe7,0x43,0x25,0x68,0x8c,0xff,0x78,0x80,0x3b,0x52,0xf9,0xcf,0xeb,0x57,0xd4,0x6c,0x55,0x00,0x32, - 0xcf,0xdb,0xc5,0x5c,0x9d,0x54,0xb3,0x6b,0x05,0x6c,0xa8,0xce,0x69,0x29,0x14,0x86,0xa6,0x10,0xa1,0x5c, - 0xc9,0xae,0x6d,0x8b,0x96,0xfe,0xe6,0xb3,0x19,0xf6,0xa3,0xca,0xeb,0xb6,0x98,0xe2,0xbd,0xa1,0x3d,0x41, - 0x40,0x54,0xe1,0x16,0x4f,0x7c,0x87,0x9f,0x03,0x75,0xfe,0x50,0x9d,0x7f,0xa1,0xce,0xbf,0x54,0xe7,0x5f, - 0xa9,0xf3,0xbf,0xab,0xf3,0xb3,0xba,0x5a,0x2d,0x55,0x99,0x5f,0xd0,0xda,0xf1,0x18,0x09,0x10,0x2f,0xd4, - 0x8c,0xa0,0x72,0xae,0x66,0xad,0x22,0x3a,0x16,0x1e,0x36,0x48,0x67,0x83,0x54,0xad,0x96,0xc5,0x14,0x0e, - 0x37,0xea,0xbc,0x56,0xc5,0xe2,0x8c,0x3a,0x43,0x83,0xa2,0x43,0xac,0x9a,0xab,0x25,0x0c,0x1b,0xd5,0x6a, - 0xae,0x72,0x75,0x42,0xac,0xe4,0x49,0xad,0x4e,0x66,0x05,0xfd,0xaf,0x14,0x3d,0x4e,0x09,0x3c,0x39,0x0a, - 0x91,0xe2,0xcb,0xec,0x67,0xa7,0x74,0x46,0x2e,0x54,0xa1,0x3e,0x9d,0xcc,0xa8,0x82,0xfa,0x93,0xfa,0x5d, - 0xd5,0x4b,0x45,0xc0,0x5c,0xb7,0x53,0x55,0xaf,0x4e,0xae,0x89,0x92,0x6f,0xf2,0xc5,0x52,0x11,0x6c,0x13, - 0xe1,0xd5,0x2c,0x73,0x42,0x3d,0xb4,0xd7,0x88,0xe1,0x6c,0x56,0x27,0xf4,0x7f,0xc9,0xf7,0xda,0xaa,0x95, - 0x22,0xe4,0xa6,0x2e,0x4f,0x20,0x44,0x27,0x24,0x95,0xaf,0x66,0x45,0xa5,0xb0,0x1d,0xc0,0xc8,0x7e,0x52, - 0x8c,0x18,0xa8,0xa5,0x13,0x02,0x3b,0xf1,0x06,0x83,0x25,0x6a,0xbe,0x20,0x00,0x5d,0xd5,0xc4,0x83,0x4c, - 0xf3,0xf2,0x22,0xa7,0x96,0xa6,0x75,0xb1,0x6c,0xb1,0x29,0xe4,0x81,0x48,0x6e,0x18,0xba,0x29,0x3b,0xf6, - 0x29,0x0d,0x8f,0xfe,0xcb,0x64,0x19,0xc0,0xe6,0xb5,0x68,0x79,0x6d,0x5a,0x7a,0x38,0xa7,0x16,0x95,0x20, - 0x37,0x1e,0x22,0x4c,0x09,0x68,0xce,0xf4,0x7c,0x46,0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9f,0x50, - 0xed,0x73,0x7d,0x06,0x5a,0x60,0x81,0xcd,0x0c,0xd4,0x2a,0x55,0x1b,0x1c,0x5b,0xad,0x5a,0x94,0xb4,0x38, - 0xd6,0xe2,0x5c,0x87,0x8a,0x09,0x05,0xe4,0x05,0xb0,0x4e,0x91,0xcf,0xab,0x33,0xaa,0xa4,0x5c,0xf1,0x1f, - 0xa0,0x00,0x9a,0x9a,0x05,0x4d,0xe8,0xb5,0x32,0x18,0x50,0x69,0x11,0x3a,0x28,0xec,0xf7,0xea,0x52,0xd9, - 0xd0,0x59,0x8a,0x83,0x93,0xfd,0xbe,0xaa,0x80,0x46,0x4e,0x6b,0x50,0x7d,0x2d,0xa0,0x05,0x42,0x08,0x06, - 0x3d,0x02,0x58,0x95,0x97,0xc5,0x02,0x65,0xa7,0x45,0x3d,0xe5,0xf3,0xa1,0x58,0x2e,0x09,0x40,0xd5,0x74, - 0x55,0xd3,0x0e,0x07,0xe6,0x02,0xea,0x6b,0xa6,0xd4,0x08,0x65,0x11,0x80,0x4a,0x94,0x1f,0x1a,0x6e,0xd9, - 0xee,0x9d,0xe6,0x53,0x00,0x60,0xad,0x8b,0xb3,0x52,0x0e,0x41,0x75,0xa6,0xce,0xe6,0xd7,0xcb,0x73,0x82, - 0x9c,0xfc,0x4c,0x03,0x90,0x35,0x2f,0xbe,0x86,0x44,0xa1,0x21,0xa0,0x2e,0x1a,0xdc,0xb2,0xb6,0x27,0x85, - 0xb8,0x25,0xfa,0x43,0x15,0x12,0x42,0xaa,0xe6,0xd7,0x67,0x95,0xfc,0xf2,0x77,0x20,0x05,0x94,0xb8,0x52, - 0xab,0x86,0x43,0x6d,0xf0,0xfc,0xf0,0x1f,0xfe,0xb2,0x65,0x98,0x01,0x51,0x75,0x51,0xe8,0x4b,0x89,0x10, - 0xd5,0x0c,0xee,0xe5,0x4a,0x6c,0xf2,0x73,0xbe,0x3f,0x9c,0xc6,0x3a,0xc8,0x51,0xad,0x78,0x52,0xc4,0xbe, - 0x91,0x25,0x1e,0xec,0x70,0x76,0x59,0xd5,0x8c,0xfe,0x6a,0xea,0x85,0xa6,0x8d,0x80,0x4e,0xcc,0xd5,0xaa, - 0x46,0xf4,0xec,0x79,0xd1,0x0f,0x6d,0xd5,0x91,0x02,0x0d,0x5a,0xff,0xde,0x11,0x7e,0xcb,0x5d,0xa4,0x6c, - 0x0e,0x4c,0x8e,0x50,0x3e,0x29,0xd3,0x58,0x1b,0x43,0x5a,0x1d,0x18,0xd2,0xee,0xec,0xb8,0x78,0x69,0x61, - 0xb2,0xbb,0x78,0x10,0x56,0x31,0xdd,0x8b,0xe0,0x6d,0x0e,0x22,0x2e,0xd9,0xc7,0x84,0x2f,0x35,0xec,0x74, - 0xe3,0xcd,0x87,0x5e,0x9f,0xad,0x92,0x71,0xb0,0xd3,0x6f,0x3e,0xc4,0x45,0x81,0x10,0x94,0xda,0xd5,0xf3, - 0x91,0x66,0x0f,0x77,0x56,0xa6,0x03,0x8b,0xd0,0xab,0xc4,0x16,0x95,0x25,0xe1,0x24,0x13,0x37,0xe0,0x2f, - 0x7c,0x6c,0x4a,0xf2,0xb7,0x62,0xaf,0xfa,0x84,0x45,0xd4,0x1b,0x3e,0xe4,0xcc,0x07,0xba,0xec,0x58,0x2e, - 0x72,0x14,0x9b,0x7d,0x36,0x66,0xea,0x8d,0xd7,0x5e,0x96,0xce,0x79,0xb8,0x20,0x44,0xe1,0x6e,0xe3,0x72, - 0x36,0x5c,0x36,0xc8,0xe3,0xb2,0xfe,0xce,0xce,0xa1,0x21,0xb4,0xc1,0x9d,0x9e,0x74,0x50,0xd1,0xf0,0x3f, - 0xd0,0xb1,0x48,0xbb,0x61,0xb8,0x70,0x50,0x60,0x8d,0x8b,0xc9,0x38,0x60,0xd3,0x60,0x49,0x93,0xb9,0x86, - 0xfb,0x00,0x66,0xf5,0xff,0x6b,0xef,0x5d,0xd7,0xdb,0x36,0x92,0x75,0xe1,0x5b,0xa1,0x30,0xfa,0x64,0x20, - 0x6c,0x51,0x92,0x9d,0xcc,0x4c,0x40,0xc3,0x5c,0x8e,0xed,0x24,0x4e,0xec,0x24,0x2b,0x76,0x8e,0x14,0xa3, - 0x05,0x91,0xa0,0x04,0x9b,0x02,0x38,0x00,0x28,0xd9,0x16,0x79,0x41,0xfb,0x36,0xf6,0x95,0xed,0x7a,0xab, - 0xba,0x1b,0x0d,0x10,0xb4,0x9d,0xcc,0xfa,0xd6,0xfe,0xb3,0x93,0xc7,0x22,0xd0,0xe8,0x73,0x57,0x57,0x57, - 0x55,0xd7,0xe1,0x91,0xe0,0x85,0xad,0xee,0x56,0xf5,0xb7,0x48,0x72,0x5b,0x08,0xe9,0x98,0xb7,0x06,0x00, - 0xf1,0xbc,0x21,0x28,0x0e,0x9d,0x81,0xb2,0x02,0xad,0xda,0x7f,0xaa,0x78,0x06,0x34,0x3d,0xde,0x6e,0x99, - 0x61,0x94,0xa8,0x93,0x1a,0x60,0xc5,0xb3,0xf0,0x4f,0x90,0xab,0x61,0xdb,0x72,0xf1,0xa0,0x5b,0x83,0xd7, - 0x64,0x82,0x5e,0x7d,0xaa,0xdd,0x4e,0xf8,0x1e,0x51,0xd1,0x1b,0x85,0xc8,0x2e,0xb3,0x14,0x3e,0xc9,0x8c, - 0x9f,0x31,0xa3,0x20,0x6b,0x3d,0x88,0xb1,0x9f,0x08,0x2c,0x69,0xed,0x39,0xcc,0x9b,0x10,0xad,0x65,0xc7, - 0xf1,0xae,0x32,0xbd,0x7e,0x57,0x75,0xb6,0xff,0x0e,0xed,0x2f,0x53,0xb4,0x7f,0xdd,0x8d,0x39,0xae,0xa8, - 0x0b,0xf3,0x94,0x2a,0x9d,0xa8,0x8b,0xba,0xe2,0x6f,0x6c,0xc5,0xdf,0x10,0xf5,0xf0,0xb6,0xfe,0xf0,0xab, - 0xfd,0xf0,0x2b,0x7d,0x38,0x4b,0xa3,0xa3,0xf1,0xe9,0x4d,0x30,0xe8,0x9f,0x1e,0x9e,0xed,0x9f,0x4e,0x26, - 0x47,0xea,0x1c,0x71,0x03,0xce,0x88,0xc7,0xb8,0xe1,0x87,0xa9,0xa7,0xde,0xd4,0xa5,0xe9,0x80,0xd5,0xa5, - 0x01,0x46,0xfb,0xf5,0x87,0x4b,0xfb,0xe1,0x92,0x3e,0xbc,0x4e,0x3b,0xad,0x79,0x39,0x60,0xdd,0x51,0xe8, - 0x0f,0xfa,0xc1,0x51,0x1d,0x8e,0x41,0x8c,0x2d,0x8f,0x86,0xfe,0x68,0x6f,0xfc,0x87,0x3f,0xf9,0xe4,0x34, - 0x08,0x8e,0x2e,0x3a,0x94,0xd2,0xc4,0x5e,0xb3,0xaa,0xdd,0xb8,0x4a,0x41,0x28,0x13,0xd8,0x1b,0x51,0xa8, - 0x47,0x8f,0x11,0xbb,0x55,0x07,0xf3,0x99,0x44,0x45,0x1d,0xf8,0x87,0x81,0x28,0x81,0x67,0x3a,0x1a,0xf5, - 0x1f,0x87,0x87,0x47,0xea,0x05,0x3d,0x9c,0x96,0x9f,0xec,0xa5,0x57,0xb0,0x9f,0x8e,0xb3,0x6a,0xff,0x48, - 0x3d,0x4c,0xbb,0xb4,0x1e,0x1e,0xe9,0xd0,0xf5,0x04,0x28,0x95,0xc4,0x1c,0x04,0x8c,0x5a,0x7e,0x2b,0x71, - 0xad,0x35,0x5e,0xe8,0xbc,0xd9,0xce,0xbc,0xd6,0x7b,0xde,0x8b,0x94,0x23,0x15,0x79,0xb6,0x03,0x5e,0x23, - 0xa8,0xc0,0xf7,0xa9,0x2f,0xde,0xe9,0x9b,0x97,0xe5,0x59,0x43,0x07,0xa7,0xf3,0x86,0x57,0xda,0x05,0x87, - 0xcd,0xda,0x50,0x62,0x79,0xe5,0x24,0x12,0x3c,0xbd,0x04,0xec,0x4a,0xa8,0x44,0x02,0xcf,0xe7,0xf9,0x3b, - 0xe0,0xe7,0x12,0x2e,0xf4,0xda,0xab,0x47,0x1d,0xf8,0xb6,0x88,0xbe,0x2d,0x3e,0xe0,0xbf,0x51,0xaa,0xb7, - 0xbe,0xf8,0xf6,0xd8,0xfe,0x1a,0x01,0x24,0xe0,0xa1,0x94,0x25,0xec,0xdf,0x16,0x56,0xe0,0xe6,0x5e,0x96, - 0x7d,0x84,0x6f,0x42,0xed,0xf1,0xe2,0x65,0xda,0xe1,0x56,0xf3,0x65,0x3a,0xce,0x26,0x7d,0x96,0x50,0x17, - 0xcd,0x56,0x0a,0xac,0xf8,0xab,0x1a,0x4a,0x2f,0x2c,0x94,0x5e,0x10,0x94,0x3e,0x69,0x8f,0x53,0x5b,0x84, - 0x27,0x1c,0x0a,0x13,0xcc,0x6a,0x48,0xec,0xfa,0x21,0xbf,0x12,0x73,0x80,0x1f,0x1d,0xf9,0xb9,0x4e,0x3f, - 0xac,0x72,0xfd,0xc9,0x89,0x01,0xed,0x7c,0x16,0x89,0xab,0xa7,0xea,0x30,0xd2,0xfc,0x91,0x5f,0x75,0xaa, - 0x5b,0x27,0x27,0x70,0x9d,0xed,0xb8,0xd2,0xce,0x67,0x5d,0x27,0xc6,0xf6,0x2c,0x65,0x8f,0x62,0x88,0x08, - 0xfd,0x34,0xd5,0x71,0x2e,0xd9,0x73,0xac,0xa7,0xbe,0xa4,0x77,0x21,0xb0,0xf8,0xf5,0x71,0xeb,0xf3,0x77, - 0x8d,0x77,0x3a,0x49,0x3c,0xf5,0x43,0xb3,0xc4,0x73,0xf7,0x15,0x19,0x86,0xcf,0x70,0x01,0x60,0xbd,0x35, - 0x68,0x37,0x66,0xe0,0x51,0x9d,0x6a,0x1c,0xf2,0xc0,0x66,0xb8,0x61,0x20,0x6b,0x65,0xf3,0xd1,0x23,0x27, - 0x52,0xa7,0xd3,0xaf,0x9b,0x56,0xea,0x93,0x0c,0x37,0x94,0xdb,0x0d,0xbb,0xbd,0xdb,0xdd,0x6e,0x33,0x97, - 0xff,0x83,0x6d,0xf6,0x61,0x73,0xac,0x37,0xcd,0x44,0x6e,0x54,0x64,0x34,0x3f,0x62,0x96,0x47,0xba,0x5a, - 0xb0,0xa9,0xb4,0xbb,0x6d,0xbe,0x2f,0x41,0xdc,0xbe,0xf7,0xe3,0x00,0xf2,0x22,0x5f,0x72,0x04,0x61,0xed, - 0x14,0xa1,0xf3,0x40,0xc5,0xbd,0xf9,0x17,0x40,0x4b,0xe7,0xbe,0x8d,0xde,0xb1,0x26,0x1e,0x25,0xf0,0xd5, - 0x7a,0x3f,0x38,0x52,0x3f,0x39,0xe8,0x69,0x2b,0xc0,0x83,0x50,0x79,0x8f,0x9c,0xb3,0x1e,0xb4,0x5d,0xc2, - 0x12,0xb1,0x47,0x0d,0xea,0x02,0x2a,0xae,0x4e,0x04,0x0d,0x8e,0x05,0x97,0x8a,0x89,0x9d,0x84,0xb4,0x69, - 0x78,0xa4,0x8a,0x95,0x6b,0x24,0xc6,0x39,0x8d,0xb2,0xa5,0x9c,0xaf,0x2c,0x5a,0x47,0x44,0x68,0x6d,0xe4, - 0xd4,0x19,0x05,0x38,0x80,0x2f,0x21,0x7b,0x55,0xa2,0x8b,0x44,0xf1,0x00,0xfa,0x5a,0xf4,0x4d,0x5e,0x20, - 0x07,0x46,0x46,0x1c,0xbb,0x27,0xdc,0x90,0xea,0xae,0xcc,0xc6,0xf0,0x40,0x8f,0x08,0x3f,0xf8,0xab,0xa0, - 0xa1,0xd7,0x68,0x22,0x60,0x38,0x3a,0x3c,0xd5,0x30,0xee,0x30,0xc5,0x91,0x28,0xd7,0x1d,0x5f,0xcc,0xad, - 0x79,0xe2,0xe7,0xf4,0x19,0xc3,0xe4,0x5e,0xe6,0x91,0x1b,0x32,0x56,0xeb,0x2d,0x49,0x2c,0x96,0xfd,0x81, - 0x21,0x01,0x0c,0x9a,0xea,0xf7,0xf3,0xa0,0x4e,0x45,0x14,0x96,0x65,0x4a,0x93,0x3c,0xd4,0x46,0x07,0xb1, - 0xd1,0x10,0x9a,0x42,0x43,0x05,0x97,0xc7,0xd4,0xe7,0x8d,0x9d,0x63,0xb5,0x27,0xa1,0x13,0xe4,0xcd,0x4c, - 0xae,0x4c,0xb9,0x9a,0x3b,0xde,0xb5,0xd5,0xa5,0x38,0x26,0xa6,0xb5,0xbe,0x0c,0x46,0x3e,0xd7,0x04,0xe9, - 0x7b,0x39,0x7a,0xb4,0x45,0x36,0x23,0x59,0x5d,0x06,0x61,0xeb,0x8b,0x7f,0x09,0xe9,0xf8,0x0c,0xb2,0xd8, - 0x05,0x35,0x39,0xc7,0xa4,0x26,0x3c,0xa9,0x4b,0x99,0xe1,0x29,0x3c,0xbd,0x70,0x17,0xa9,0x2b,0x61,0xe6, - 0x3b,0x3e,0xa1,0x6d,0x93,0x8f,0xda,0x24,0xb2,0xf8,0x73,0x6e,0x95,0x6d,0x65,0xae,0x89,0xf1,0xae,0xdc, - 0x8e,0x47,0xe1,0x52,0x54,0xf7,0x12,0x63,0x2c,0xa5,0x43,0xd3,0x0b,0x94,0x8a,0xd0,0x17,0xb3,0x6a,0xae, - 0x54,0x54,0x67,0xb6,0xce,0x54,0xa3,0xd6,0xa0,0xe7,0x6d,0x1b,0x14,0xa0,0x1c,0x34,0x67,0x5f,0x52,0x4b, - 0xd1,0x92,0x9b,0xb1,0x33,0x27,0x26,0x22,0x03,0x65,0x4d,0x48,0xdc,0x58,0x25,0x5a,0xef,0x15,0xdd,0x45, - 0xdf,0x38,0xd4,0x7c,0xe1,0x6c,0x4d,0x91,0x32,0x3f,0x6a,0xf2,0x08,0x52,0x86,0xd6,0xc6,0x25,0xef,0x2b, - 0x0e,0xc8,0x6a,0x6b,0x5e,0x38,0x74,0xc9,0x56,0x8c,0xbd,0x76,0xec,0x0a,0x0b,0x87,0x69,0x10,0xfb,0xac, - 0x71,0x9c,0xe9,0xb9,0xe5,0x2b,0x27,0xe8,0x1b,0x32,0x71,0x50,0x98,0xd9,0x47,0x97,0x1a,0x8d,0x73,0xe6, - 0xad,0xb5,0xd2,0x6e,0x6c,0x2a,0xe3,0xb0,0xdb,0x71,0x89,0x6d,0x7c,0x64,0x0c,0xbb,0x0c,0xdf,0x82,0xaa, - 0x73,0x7e,0x65,0xab,0xd5,0x26,0xb7,0x12,0xff,0xca,0x71,0x7a,0x2d,0x4b,0xdf,0xb4,0x60,0xdb,0xd7,0x9d, - 0xaa,0x07,0x59,0x04,0x26,0x8d,0xa8,0x1c,0x6c,0x35,0x46,0x7f,0x37,0xc6,0xc0,0x57,0x63,0x1a,0x5a,0x8b, - 0x1b,0x9d,0x8d,0xde,0xcc,0xa3,0x64,0x57,0xf8,0x96,0x1a,0x88,0xea,0x5a,0xd8,0x99,0xc5,0xb4,0x82,0xc2, - 0xa0,0x0d,0x6e,0xdd,0x09,0x06,0xc1,0xa3,0x26,0xf3,0xa2,0xe7,0x1a,0x64,0x9e,0x4c,0x74,0x3d,0x04,0x8e, - 0x26,0x84,0xf2,0xb5,0x85,0x25,0xf0,0x0b,0x5b,0x29,0xd9,0x6b,0x8a,0x52,0xd7,0x8b,0x65,0xd9,0x55,0xb1, - 0xaa,0x23,0x0f,0x01,0xd9,0x47,0x37,0x08,0xf0,0x99,0xb1,0x43,0x73,0x5d,0xb1,0x79,0xb5,0x2e,0x12,0xff, - 0x5a,0x43,0x8e,0x73,0x6f,0xd7,0xbf,0xa3,0x5e,0xee,0xe2,0x7e,0x94,0xf2,0x1a,0xc4,0x3e,0x47,0xcb,0xc9, - 0x55,0x33,0x88,0xd1,0xb5,0x9d,0x38,0x14,0x6b,0x9c,0x1c,0xa9,0x00,0x2e,0xfa,0x94,0xd6,0xe7,0x01,0x3a, - 0xa8,0x99,0x22,0x0c,0xa8,0x76,0x7c,0xb6,0x6f,0x92,0xeb,0x95,0xcf,0x02,0x9b,0xc8,0x91,0x82,0x83,0x7a, - 0x71,0xea,0x00,0xf1,0x3a,0xc4,0x0f,0xfb,0xff,0x6f,0xdb,0x3e,0xa2,0xe3,0xb8,0x87,0x76,0x4d,0x1f,0xeb, - 0xbe,0x5f,0x35,0x4f,0x94,0x7a,0xac,0xd6,0xe6,0xa0,0x20,0x2a,0x5b,0x3c,0x77,0xd1,0x0f,0x43,0xef,0xc8, - 0xbf,0xc0,0x15,0xdd,0x35,0xce,0xc5,0x10,0xd1,0x8e,0xa0,0x1b,0xe4,0xe2,0xb3,0x0b,0xab,0x8a,0x8c,0x23, - 0x7a,0xbd,0x36,0x88,0x2d,0xb0,0xe1,0x8a,0xa2,0x7d,0x7d,0x6a,0xdb,0x50,0xb4,0x43,0x3d,0x4f,0xc1,0xc8, - 0xb1,0xa2,0xed,0x47,0x69,0x98,0xbd,0x4f,0x31,0x98,0xc8,0xa6,0xc3,0x43,0xa7,0x00,0xae,0xc9,0x2a,0xeb, - 0x2c,0xc5,0xf9,0x10,0xd1,0xa2,0x6e,0x7c,0x73,0x12,0xd1,0x66,0x28,0xba,0xb6,0x2b,0xaf,0x0e,0x80,0x4e, - 0x2b,0x42,0xf0,0xab,0x39,0x21,0x2f,0x10,0x3b,0x23,0x50,0x66,0x8b,0x36,0xfa,0xaf,0xb7,0xa8,0xa4,0x61, - 0x8b,0x72,0x4c,0x32,0x69,0xc5,0xdd,0xa1,0x89,0x0e,0xdb,0x8b,0x6c,0x81,0x09,0x57,0x05,0xb5,0x6f,0xde, - 0x42,0xb9,0x74,0xd0,0x59,0x1e,0xa8,0x39,0x83,0x7c,0x29,0x25,0x3a,0x17,0xc1,0x7a,0x6a,0xa2,0x72,0xa6, - 0x8c,0xd3,0x0b,0xfc,0x65,0x9d,0x17,0xc4,0x7d,0xdd,0xf2,0x7e,0x19,0xd0,0x3e,0x4c,0x1b,0xfe,0x33,0x8d, - 0x8f,0xab,0x59,0x30,0x3a,0xf7,0x0b,0x99,0x0f,0x44,0x26,0x4e,0x3b,0x7d,0x67,0x1e,0x5b,0xe6,0x8f,0xa8, - 0x32,0xeb,0xdf,0x93,0x81,0xb6,0x70,0x5f,0x53,0x76,0x31,0x1a,0x49,0xd8,0x30,0x1c,0x58,0x9c,0x5b,0xbc, - 0x7a,0x12,0x00,0xc8,0xeb,0xf7,0x4c,0xde,0x04,0x69,0x87,0xae,0x4b,0xd1,0x65,0x4a,0x6c,0x83,0x1d,0xab, - 0x05,0x8d,0x96,0x37,0x55,0xe2,0x2f,0x78,0x16,0x57,0xd1,0xa2,0x9e,0xd2,0x55,0xb4,0xb2,0xce,0x02,0x28, - 0x61,0x85,0x39,0x13,0x02,0x77,0x19,0x15,0x35,0x29,0x31,0x73,0x6c,0x49,0x65,0x13,0xa1,0xae,0x39,0xf6, - 0x28,0xc3,0xfe,0x8a,0x16,0x76,0x45,0x0b,0x2b,0x9c,0x54,0xbd,0xb0,0xab,0xc0,0xa4,0x8d,0x57,0x13,0xa9, - 0xbb,0xa3,0x03,0x92,0xc3,0x36,0xbf,0xa9,0xfc,0x54,0x8e,0x90,0x11,0x21,0x60,0xce,0x45,0x33,0xbe,0xa4, - 0x05,0x74,0xef,0xca,0x8d,0x1f,0xd9,0xb2,0x3e,0x01,0xa6,0x8a,0x86,0x4b,0x34,0xd0,0xb1,0x5a,0xd2,0xbf, - 0x59,0x54,0xbb,0x6a,0x51,0xd7,0x11,0x24,0x00,0xea,0x82,0x7e,0x66,0x13,0x75,0x66,0x55,0xb7,0xe9,0xd3, - 0x79,0x94,0xe2,0xd3,0x0d,0xfd,0x9c,0x4d,0xd4,0x9b,0x68,0xaf,0x1c,0xce,0xef,0xa3,0xa9,0xe5,0xfd,0xe8, - 0x8c,0xce,0x26,0xff,0x3a,0x18,0xa1,0x78,0xbf,0x3f,0x9f,0x84,0xf0,0x5a,0x36,0x42,0x2d,0x87,0x87,0xb3, - 0x49,0xf8,0x33,0x7d,0x54,0xe7,0xb4,0xa9,0xdf,0xe2,0x17,0xc4,0x99,0xc9,0xc8,0xb5,0xf6,0xfb,0xcb,0x49, - 0x80,0x4c,0x17,0xea,0x86,0x33,0xd1,0x2f,0x32,0x99,0xf2,0xdc,0xe6,0xe1,0xe1,0x99,0x64,0xba,0xd6,0x99, - 0xae,0x25,0xd3,0x9b,0x2d,0x3a,0x20,0x53,0xd7,0xfa,0xdc,0x75,0x44,0x71,0xfe,0x85,0xa0,0x90,0xba,0xe5, - 0x46,0xa5,0x17,0xba,0x7b,0x17,0xd2,0xbd,0xae,0x4a,0xb9,0x02,0xa9,0xda,0xe9,0x5a,0xdd,0x7f,0xbf,0x12, - 0x67,0x17,0xd3,0xe8,0xeb,0x8a,0xd6,0x67,0xae,0x66,0x30,0x95,0xf7,0x41,0xd0,0x9f,0x73,0x0c,0xd3,0xd1, - 0x74,0xcc,0x0f,0x93,0x0e,0xe7,0x1f,0x75,0x5c,0xc2,0x39,0xd1,0xc2,0x29,0x47,0x21,0xb4,0xe8,0x31,0x9f, - 0x18,0x1e,0xe1,0xe0,0xe0,0x67,0x08,0xb5,0x62,0x4b,0xc1,0xe7,0x44,0xe3,0x9e,0x53,0x15,0xc7,0x68,0x6d, - 0x14,0xd3,0x73,0xae,0xf4,0xf8,0x79,0x5c,0x0b,0xea,0xe7,0x6a,0xa2,0x07,0xb7,0x90,0xc1,0x21,0xc5,0x78, - 0xb4,0xed,0x1a,0xe8,0xc2,0x19,0x68,0x10,0x36,0xeb,0xac,0xc7,0x3b,0x9c,0x3f,0x98,0x41,0x89,0x9e,0x86, - 0x48,0x00,0xd1,0x3f,0x99,0x04,0x12,0x9d,0x51,0x5e,0xf4,0xa6,0x5f,0xaa,0x33,0x6c,0xfc,0xe5,0x83,0xb3, - 0x83,0x83,0x2b,0xff,0x58,0xc9,0xb4,0x6c,0xfc,0x29,0x87,0xcb,0x06,0x50,0x86,0x0c,0xb4,0xa0,0xf0,0x6a, - 0x12,0xaa,0x29,0x0e,0xa5,0xcc,0x38,0xa7,0x2f,0xe9,0x97,0xc9,0xae,0x19,0x06,0x5b,0x83,0x25,0x88,0x62, - 0x80,0xff,0x08,0xf5,0x2f,0xe9,0xdb,0xb2,0x0e,0x83,0x18,0x7e,0xb0,0xda,0x50,0xbe,0xef,0x71,0xd4,0x1a, - 0x3e,0xdb,0x3b,0xf2,0xe9,0x5d,0xa6,0x76,0x63,0x86,0xbc,0xac,0x9a,0xa8,0x61,0xe3,0x1c,0x55,0x67,0xc2, - 0x85,0x30,0x7a,0x05,0xe3,0x89,0x52,0x36,0x18,0x75,0x60,0x9e,0xba,0x28,0xeb,0xa2,0x49,0xf6,0x08,0xa3, - 0x54,0xb8,0xfc,0x51,0x41,0xc0,0x51,0x63,0x7f,0xbd,0x92,0x7e,0xc1,0xfe,0x54,0x6d,0x07,0xce,0x5b,0x8c, - 0xa7,0x9a,0x22,0x66,0x53,0x7c,0xa1,0x56,0xda,0xdd,0x07,0xe1,0x82,0xa2,0x19,0x6d,0x28,0xca,0xd7,0x6b, - 0x44,0x77,0x07,0xd2,0x53,0x85,0x90,0xf6,0x4a,0x10,0xb2,0xe1,0x5b,0xe4,0xe0,0x72,0xf1,0xbe,0x85,0xca, - 0xae,0x63,0x02,0xea,0xd5,0x84,0xeb,0x19,0x90,0x57,0xfa,0xa8,0xa7,0xa9,0xeb,0x66,0x60,0x0b,0xb1,0x24, - 0xa4,0xc4,0x0e,0xac,0x1d,0x38,0xfc,0x2b,0xe6,0xd5,0x56,0x3b,0x0d,0x34,0x41,0x30,0x0f,0x02,0xe6,0xc4, - 0x2f,0xe3,0x92,0x09,0x71,0x50,0xdd,0xa5,0xcf,0x89,0xdc,0xaa,0x6d,0xd0,0xc4,0x8d,0x73,0x7a,0xa0,0xa3, - 0xa2,0x48,0x55,0x31,0x53,0x7e,0x75,0xa2,0x0d,0xc2,0xc1,0x07,0x87,0x59,0x17,0x56,0x1d,0x07,0x17,0x39, - 0x4f,0x8b,0xb2,0xe2,0x16,0x09,0xcd,0x1c,0x0f,0xaf,0xef,0xcf,0xcd,0x5a,0x5d,0x1b,0x07,0x77,0x97,0xeb, - 0xf5,0xde,0x39,0xf1,0x8b,0xf3,0xf1,0xf5,0x44,0x73,0xa6,0x30,0x4b,0xd7,0xac,0xec,0x65,0x74,0xd9,0xb8, - 0x3f,0x40,0x89,0xd9,0x7a,0x7d,0xd9,0x6c,0x98,0xb8,0x18,0x6c,0xa4,0x34,0x30,0xb3,0x29,0xeb,0x7a,0xe5, - 0xba,0x5a,0xb9,0x80,0x34,0x6f,0x85,0x11,0xef,0xbd,0x20,0x5c,0x1c,0xdc,0x5e,0xa1,0x93,0x4b,0x39,0x5b, - 0xa4,0xb1,0xbd,0x2b,0x2c,0x30,0x6b,0x96,0xc0,0x4d,0x9c,0x7e,0x34,0xce,0x26,0x05,0x20,0xf7,0x38,0xbc, - 0x17,0x6f,0x0c,0x4d,0x60,0xe9,0x77,0x73,0xed,0xb5,0x27,0xc1,0x62,0x6e,0xd4,0x1b,0xb5,0x0f,0x21,0xf5, - 0x6b,0x44,0x9a,0xcf,0x67,0xab,0x45,0x52,0xaa,0x47,0xf4,0x0c,0x1a,0xe7,0x7b,0xad,0xfd,0x75,0x43,0x73, - 0x72,0x73,0x7f,0x96,0xd6,0x00,0x7c,0xc3,0x64,0xe5,0xfe,0x78,0x96,0x8e,0x6f,0x26,0xb0,0xf6,0xa2,0x73, - 0xe5,0x78,0xf8,0xe6,0xfe,0xeb,0x3a,0xcb,0x1b,0x22,0x2f,0x5e,0x8f,0xdf,0x4c,0x74,0x1e,0x5a,0x29,0x93, - 0x5d,0xf8,0x0b,0xf7,0x1b,0x1f,0xc8,0x2f,0x58,0x6f,0x04,0xf7,0x6a,0xa2,0x35,0xa3,0x43,0x89,0x3d,0x72, - 0x9e,0x5f,0xb0,0xb0,0x95,0x50,0x71,0x87,0x93,0x42,0x7d,0x5a,0x2a,0x3a,0x24,0xb5,0x91,0x05,0x9f,0xde, - 0xe2,0x25,0x06,0xa1,0x43,0x60,0x9c,0x0d,0xe8,0x82,0x39,0xe7,0x82,0xfd,0x87,0xf8,0x40,0x74,0xc8,0x5f, - 0xd3,0x13,0xb3,0x08,0x9b,0x03,0x83,0x7f,0xc9,0xbe,0x9f,0x78,0x21,0x19,0x7b,0x63,0x01,0x02,0xa1,0xb9, - 0x96,0x4a,0x07,0x45,0x47,0x3b,0x33,0x6e,0x4d,0xe2,0xa9,0x99,0x72,0x50,0x72,0x27,0x18,0xae,0xf9,0x89, - 0x87,0xac,0x9f,0x65,0xa8,0xbb,0x46,0x3a,0x2c,0xb8,0xe1,0xe3,0xd3,0xcf,0x29,0xcb,0xb9,0xd4,0x6f,0x37, - 0xca,0x19,0x77,0x11,0xdf,0x8b,0xe1,0xf7,0x11,0x94,0xf9,0xf5,0x75,0xcc,0x23,0x73,0x09,0xe5,0x7f,0xdf, - 0x8a,0x42,0x23,0xd7,0x34,0x5a,0x72,0xa8,0xbe,0x17,0xfb,0xb7,0x4b,0x21,0x06,0xe9,0xf8,0x6b,0x08,0xca, - 0x2e,0x79,0x80,0x32,0x0f,0x97,0x83,0x33,0x11,0xd8,0x9e,0xcb,0x79,0x70,0xd1,0x3a,0x87,0x2f,0xa1,0xfa, - 0x4b,0x84,0x8b,0xc1,0x7f,0x06,0x60,0x6f,0x22,0x93,0x46,0x30,0x00,0x8a,0x69,0x78,0x33,0xac,0xcf,0xc5, - 0xd7,0x04,0x16,0xaf,0xbb,0x78,0x97,0xd7,0x0e,0xef,0xf2,0x7a,0xe2,0xdf,0x70,0x4f,0x6e,0xc4,0xf1,0x3d, - 0x77,0xf5,0x4d,0x5d,0xc9,0x0b,0xaa,0xe4,0x45,0x07,0xe7,0xfb,0xa2,0xe6,0x7c,0x5f,0x30,0xe7,0x7b,0x23, - 0x90,0xf4,0x30,0xba,0xd9,0xc2,0xad,0x7c,0xa3,0x30,0x60,0x1d,0xe1,0xda,0xe4,0xe1,0x65,0x74,0x32,0x7c, - 0x79,0xff,0x21,0xb1,0x88,0xd6,0x5e,0xe5,0x25,0xdc,0x3f,0x23,0x61,0xfc,0x72,0x62,0x68,0xef,0x9f,0x2a, - 0xf4,0xef,0x86,0x6a,0xd5,0xa1,0x6e,0x13,0x50,0x49,0x38,0xb7,0xc0,0xf2,0x1d,0xab,0x63,0x7d,0x60,0x11, - 0xff,0x03,0x97,0xc0,0x45,0x6d,0x2d,0x26,0xeb,0x87,0xb0,0x32,0x18,0x13,0x2f,0xc5,0xf7,0x20,0xfd,0x6d, - 0x3e,0xff,0x56,0x6f,0xb4,0x10,0x6a,0x1f,0xb2,0xff,0xc2,0xf1,0x45,0xaa,0xde,0xa6,0xea,0x4d,0xaa,0xf6, - 0x53,0xf5,0x2a,0x55,0x4f,0xb3,0x91,0x91,0xe6,0x3f,0x4b,0x94,0x11,0xac,0xe1,0x59,0xe0,0xa9,0x75,0xfd, - 0xb7,0x27,0x71,0xbd,0xc4,0xca,0xe2,0x32,0xbf,0x19,0x7d,0x9f,0x48,0x74,0x33,0x18,0x28,0x6d,0xc2,0xdb, - 0xcd,0xc4,0x38,0x56,0xbe,0x4a,0xe1,0xc5,0xfc,0x79,0x76,0x70,0x60,0x2f,0x39,0xb6,0xc3,0x8b,0xc8,0xfd, - 0x38,0xd5,0x3e,0xbd,0x8c,0xb3,0x8b,0xc4,0x73,0xcd,0x53,0x45,0x13,0xbf,0x2e,0xcc,0x52,0x7a,0x2d,0x5c, - 0x1b,0xb2,0xaa,0xef,0xb5,0x8e,0x8a,0xf8,0x23,0xfa,0xa0,0xf5,0xcd,0x8c,0xeb,0xf4,0x9f,0x53,0x38,0x55, - 0xc3,0xea,0x24,0xb3,0xd6,0x85,0x28,0x84,0x48,0xe6,0x66,0xde,0x86,0x75,0x14,0x9e,0xe4,0xe0,0x60,0x8f, - 0x7f,0x89,0x11,0xd3,0x6a,0x96,0xa3,0x6f,0xe1,0xe8,0xc8,0x1e,0xe6,0x8d,0x1e,0xfe,0xec,0xb0,0x14,0x62, - 0xd4,0x35,0xd3,0xa2,0xa4,0x4d,0x10,0x3e,0x4d,0xe4,0xd9,0xf5,0xf6,0x64,0x6b,0x25,0x7c,0x81,0xc0,0x6b, - 0xc6,0xfe,0xc4,0x28,0x7d,0x7e,0x97,0x40,0x06,0xe6,0x19,0xcd,0x11,0xdb,0x3b,0x3a,0x77,0x53,0x5f,0x62, - 0xc7,0x05,0x81,0xf6,0xe4,0xf5,0xdc,0x44,0x8e,0x8d,0x92,0x3a,0x8a,0xac,0x72,0x9e,0xd9,0xaf,0x23,0xab, - 0x16,0x6f,0xcf,0xbb,0x99,0xee,0xe7,0x49,0xa0,0xbe,0xc8,0x76,0x65,0xc2,0xd8,0x44,0x2a,0x4b,0x28,0x12, - 0x5e,0xfa,0x7f,0x60,0x1d,0xf9,0xf7,0xe6,0xe4,0x9b,0x8f,0xe7,0xd0,0xe5,0x7f,0xce,0xbe,0xc0,0xf5,0x22, - 0x01,0x0f,0xe1,0x4e,0xb8,0x3d,0x5f,0x5b,0x77,0xd5,0x1c,0xb4,0xbd,0xb9,0x36,0xc1,0xed,0xd6,0x5c,0x0e, - 0xcd,0x9d,0xa5,0x9d,0x51,0xd1,0xa6,0xfe,0xf0,0xfc,0x0e,0xd3,0x76,0x0c,0xc0,0x5a,0x35,0x62,0x0f,0xaa, - 0xe5,0xec,0xc4,0x72,0x23,0xb3,0x6c,0xd4,0x2b,0x46,0x89,0x98,0x4f,0xef,0x0c,0x1f,0xf8,0x18,0x1d,0x04, - 0xc0,0x87,0x3a,0x27,0x5f,0x8e,0x13,0x8d,0xf3,0x33,0x5e,0x0e,0x0e,0xe8,0xbb,0xfe,0x00,0x4c,0x6f,0x20, - 0x56,0xaf,0x02,0x7b,0x6a,0xfc,0x9a,0xe0,0x55,0x02,0x7b,0xfe,0x9c,0x2a,0xec,0xac,0x50,0xd4,0x62,0xdb, - 0xf3,0xa3,0x7d,0x09,0x98,0xca,0x10,0x0b,0xf0,0x0b,0x88,0x2f,0x02,0xad,0x5a,0x22,0x2e,0x54,0x1c,0x81, - 0x3a,0x07,0xa8,0x3f,0xa3,0x99,0x29,0xd2,0x0b,0x78,0x82,0x7d,0x9c,0x96,0x50,0x8e,0x8c,0xbc,0x8c,0xd6, - 0x41,0xeb,0xdc,0xf1,0x9d,0xea,0x4c,0x3e,0x20,0x5c,0x7c,0x2b,0x09,0xce,0x1f,0xd2,0x91,0x9f,0xd5,0xdb, - 0x1e,0x47,0xdc,0x4b,0xf0,0x05,0xae,0xf5,0x50,0xb3,0x50,0x94,0x6f,0xe0,0x9d,0xbf,0x95,0x58,0x8c,0xf2, - 0x50,0x5a,0xee,0xd4,0x2f,0xd8,0x1a,0xe1,0xb0,0x68,0xcd,0xa4,0xff,0xc1,0x01,0x6f,0x75,0xb4,0x18,0x7d, - 0xa8,0xab,0x5d,0x13,0x44,0x6b,0xf9,0xfd,0x07,0x8a,0xe9,0x81,0x74,0x0e,0xb3,0xab,0x4a,0x3d,0x72,0xa8, - 0x56,0x64,0x1d,0x8b,0xab,0x19,0x02,0xde,0x8d,0x1f,0xee,0x1f,0x43,0xcd,0x3b,0x82,0x1a,0x36,0x0c,0xd3, - 0xd6,0x5d,0x10,0x34,0xc7,0x45,0xf8,0x45,0x9e,0xc3,0x19,0xae,0x9a,0x96,0xa5,0x7d,0x06,0x70,0x99,0x6c, - 0x40,0x24,0xe6,0xd9,0xb9,0x9d,0xd5,0x29,0xce,0xdd,0xaa,0x9b,0xc7,0xdc,0xab,0xba,0xb9,0x5a,0x69,0x5b, - 0x17,0xb7,0x6e,0xde,0x8e,0x74,0xe9,0x6e,0x47,0xd2,0xce,0xbc,0xad,0x06,0x67,0xab,0x82,0xef,0x05,0xc3, - 0xb1,0xd8,0xb5,0x29,0x9d,0x2e,0x8a,0x1d,0x93,0x8d,0xfa,0xc5,0x4c,0x50,0xe3,0xb2,0x56,0xac,0xe5,0xde, - 0xa5,0x0d,0x13,0xba,0xb6,0x2d,0x58,0xdb,0x78,0xbc,0xc3,0x26,0x4c,0x7b,0xce,0x62,0xc1,0xaa,0xdc,0xd2, - 0x77,0x07,0xf7,0x63,0x14,0xfe,0x1b,0x24,0x84,0x04,0xb6,0x6e,0xcc,0x56,0x6d,0x22,0x86,0xb5,0x81,0xda, - 0x81,0x8e,0xdf,0xea,0xd6,0x21,0x82,0xff,0xc8,0x70,0x84,0xc3,0xa0,0x76,0x5f,0xe9,0x5c,0x9a,0x59,0xba, - 0xdb,0xb5,0x1d,0xad,0x05,0x02,0xda,0x7e,0xec,0xa7,0x04,0x9e,0x79,0xd8,0xdb,0x40,0xfd,0xc9,0x78,0x59, - 0x65,0x0a,0x8d,0xe6,0xce,0x7c,0xf9,0x1a,0x28,0x2a,0x37,0x11,0x60,0xbd,0xb3,0xb3,0xba,0xb9,0x43,0xaf, - 0x6f,0xdd,0xca,0xf5,0xbd,0x43,0x6f,0x18,0xb3,0x18,0x4e,0x94,0x6c,0xf9,0x79,0x14,0x3b,0x01,0x4e,0xcb, - 0x3e,0x0e,0x08,0x3c,0x7a,0x61,0xd9,0x67,0x59,0x6e,0x58,0xf8,0xb1,0xc8,0x3f,0x70,0x01,0xad,0xef,0x3e, - 0x24,0xc5,0x1a,0x14,0x95,0xc1,0x88,0x53,0xb8,0x0c,0x7e,0xf9,0xaf,0x84,0xcd,0x88,0x7c,0xb9,0x40,0x84, - 0x7d,0xe5,0x40,0x3b,0x9a,0xa1,0xa9,0xad,0xbb,0x18,0xfd,0x9c,0x68,0xcb,0xa2,0x55,0xc3,0xd8,0x7d,0x81, - 0x49,0x58,0x09,0x69,0x2a,0xb3,0x58,0x87,0x9d,0xc7,0x75,0x6a,0x2b,0x69,0x17,0xc2,0xf7,0x80,0x5b,0x04, - 0x79,0x02,0xba,0xf8,0xb8,0x88,0x1b,0x58,0x27,0x50,0x44,0x98,0x2c,0x34,0x8e,0xf2,0x2f,0xa3,0x58,0x5d, - 0x45,0x0b,0x75,0x85,0x21,0x10,0x46,0xbb,0xc4,0xef,0x7a,0x7d,0x85,0xb9,0xe0,0x57,0xa1,0xef,0xf6,0x7e, - 0x63,0x69,0x82,0xbf,0xb7,0xe8,0xf2,0xf9,0xda,0x95,0x6a,0x5c,0x7a,0xd6,0x2c,0xb8,0x00,0xd6,0x3c,0x5a, - 0xb4,0x81,0x44,0x0c,0x46,0xa6,0x3c,0x76,0x2f,0x5f,0x55,0x87,0x29,0x6b,0xee,0xa7,0x4d,0xe7,0x0d,0x1a, - 0x0a,0x80,0x37,0xbf,0xf5,0xe7,0xca,0x8b,0xe7,0x04,0xd5,0xcf,0x44,0xbd,0xc2,0x41,0x85,0x89,0x93,0x13, - 0xf1,0xd2,0x9b,0x7e,0x2c,0x37,0x81,0x32,0xe0,0x83,0xc6,0xd2,0xec,0x30,0x17,0x53,0x00,0x11,0x78,0xfc, - 0xe6,0xd7,0xc2,0xaa,0x95,0x08,0x4c,0x55,0xc3,0xa3,0xf0,0x12,0x3e,0xd8,0xbf,0x85,0x34,0x86,0x9b,0x7f, - 0x22,0x1a,0x23,0xb3,0x40,0x71,0x9a,0x60,0x2c,0x8c,0x1e,0x06,0x69,0x3a,0x7d,0x0e,0x8d,0x30,0x42,0x8b, - 0xed,0xae,0xd2,0x92,0x2d,0xa3,0x6a,0x53,0x93,0xcd,0xb9,0x30,0x2d,0xea,0x8a,0xd0,0xe7,0xbf,0x52,0x4c, - 0x0a,0xe0,0x51,0xe3,0x0d,0xbe,0xd0,0x77,0x10,0x0c,0x30,0x6c,0x30,0x14,0x93,0xbe,0xde,0xbf,0x98,0x8b, - 0x15,0x63,0xcc,0x6f,0x08,0xaf,0xd4,0x0a,0x15,0xe1,0x2f,0xa9,0xaa,0xdf,0xbe,0x82,0x72,0x70,0x78,0x2b, - 0x48,0xe6,0x5f,0x69,0x17,0x62,0x69,0x59,0xb6,0x33,0x7e,0x70,0x8d,0x44,0x64,0xe9,0x24,0x50,0xee,0x32, - 0xce,0x10,0x04,0xb7,0xdb,0x1d,0x12,0x17,0x5a,0x16,0xc9,0xb5,0x75,0x5c,0x28,0x46,0xa2,0x46,0xf8,0x9c, - 0x76,0xa1,0x2d,0xf6,0xa8,0x9a,0x37,0x73,0x82,0xcf,0x8e,0xeb,0x5d,0x53,0x12,0x5b,0x54,0xde,0xb7,0x5c, - 0x79,0x69,0x44,0x8f,0xd3,0x28,0x1d,0x97,0x93,0xe1,0x54,0xe2,0x47,0xa3,0x17,0x7b,0xd1,0x54,0x84,0xef, - 0xe0,0x0c,0xf4,0x4e,0x9e,0x36,0x77,0x32,0x21,0x8f,0x6b,0xdc,0x88,0x78,0x80,0xed,0xdc,0x5a,0x8b,0x66, - 0x63,0xce,0x37,0x89,0xa6,0x8a,0x4a,0xe8,0xed,0x3c,0xed,0xde,0xce,0x71,0x00,0xb9,0x87,0xe3,0x4d,0x7c, - 0x85,0x0e,0x2f,0xf0,0x67,0x4e,0x5d,0x9d,0xd7,0x12,0xb0,0xb9,0xe9,0xea,0x32,0x2a,0xc6,0xf3,0xc9,0x70, - 0xb9,0xb5,0x0f,0x62,0xa5,0xd3,0x88,0x66,0x8d,0x96,0x4c,0xee,0x5f,0x24,0xd5,0x17,0xf9,0x8a,0xc5,0x6c, - 0x8f,0x16,0x29,0x01,0xd8,0x8f,0x34,0xd7,0xf0,0xc3,0x3e,0x5e,0x72,0x17,0x47,0x2b,0xe9,0xf5,0x32,0x08, - 0x17,0xe6,0x69,0xa3,0x2d,0x70,0x97,0x84,0x9d,0x7d,0xf1,0x05,0x40,0xec,0xbe,0x8e,0x4e,0xc6,0xbc,0xd3, - 0x2c,0x5a,0x58,0x57,0x25,0x26,0x47,0x4e,0xa7,0xbf,0xeb,0x9d,0x63,0xcb,0xfe,0xba,0xdb,0xd3,0x80,0x6d, - 0x0b,0x5a,0x1c,0xc0,0x2e,0x0d,0x47,0x1d,0xe6,0xa3,0xa1,0xa9,0x66,0x3b,0x2c,0x9a,0x5d,0x40,0x51,0x89, - 0x39,0x7b,0x34,0xc8,0x5b,0xff,0xfc,0x6c,0xe0,0xe5,0x5d,0x23,0xe2,0xf3,0x21,0x2b,0x5b,0x0e,0x8d,0x89, - 0x85,0xb6,0x64,0xba,0x8c,0xcb,0xe7,0x94,0xee,0x57,0xda,0x40,0x5f,0x25,0x42,0x2e,0x1b,0x15,0xc3,0x77, - 0xcc,0x26,0x98,0xb7,0x5f,0x1a,0x6f,0xff,0x32,0x0e,0xff,0xe1,0xbc,0x63,0x41,0xa8,0xd2,0x32,0x78,0xd0, - 0xcd,0x1f,0xe4,0xf3,0x79,0x99,0x54,0x5f,0x27,0xe9,0xc5,0x65,0xe5,0x94,0x6a,0x2b,0x2d,0xca,0xfa,0xf1, - 0x1c,0xd7,0x2e,0xc4,0xd0,0x13,0xd8,0x56,0x32,0xed,0x34,0x7c,0x03,0xe2,0x0d,0xce,0xcf,0x06,0x56,0xef, - 0x27,0x2a,0x06,0x8e,0x82,0x94,0x4e,0xa9,0x01,0xe3,0xb1,0x26,0x26,0x38,0xe8,0xf4,0x36,0x97,0xf3,0x5d, - 0x0a,0x4f,0xa0,0x3c,0x5d,0x75,0xc4,0xc1,0x1e,0x44,0x3e,0xb7,0x44,0x1f,0xef,0x1d,0xd9,0x66,0xf6,0x75, - 0xe0,0x4e,0x89,0x1a,0x64,0xe2,0x75,0x05,0xec,0x45,0x57,0x00,0x63,0xab,0x62,0xd6,0x79,0x30,0x75,0x33, - 0x9c,0xec,0x4b,0xf7,0xd9,0x4c,0x1d,0x8c,0x93,0x76,0xd1,0x16,0xde,0xea,0xc9,0x6f,0xf1,0xe5,0x38,0xd4, - 0x9f,0xa5,0x56,0x24,0x58,0x9f,0xea,0x3a,0x7b,0x13,0xc9,0xeb,0x44,0x63,0x94,0x3a,0x98,0xe2,0xc2,0x8c, - 0xa5,0x36,0x01,0xad,0xb5,0x73,0xd2,0x33,0x60,0xe0,0x64,0xec,0x4a,0xed,0x5c,0x9d,0xb3,0x44,0x74,0xa1, - 0x02,0xf5,0x56,0x2f,0x40,0xd6,0x49,0x35,0x5b,0xa7,0x18,0x0d,0xe5,0x88,0xcc,0x70,0x76,0x8f,0x12,0x3f, - 0x6b,0x38,0x24,0xe2,0xac,0x0d,0x8d,0x2b,0x03,0x47,0x7a,0x30,0x11,0x8b,0xc5,0xec,0xca,0x6e,0x60,0x25, - 0xfe,0x84,0x2f,0xec,0xe7,0xe9,0xc5,0xc0,0x89,0x8c,0x1b,0xfd,0x5e,0xa8,0xfa,0x43,0x23,0x26,0x6f,0x54, - 0xa6,0x9d,0x9f,0x20,0x54,0x8b,0x7e,0x75,0x8b,0xb5,0x62,0xf2,0x46,0x3f,0x56,0x8d,0x82,0xcd,0x20,0xbe, - 0x5b,0x31,0x52,0x9e,0xd6,0x14,0x1b,0x56,0xaa,0x84,0x29,0x43,0x73,0xed,0xa2,0x76,0x78,0x5b,0x8d,0x6a, - 0xa1,0xa2,0x6f,0xd6,0x92,0x5f,0xb4,0xf5,0xf1,0x87,0x2c,0x11,0xd8,0x9a,0x5a,0x63,0xe3,0x43,0x0f,0xa6, - 0xda,0x23,0x2e,0xce,0x0e,0xcc,0x6b,0x8b,0x5f,0xab,0xec,0x07,0xc9,0x76,0x73,0x10,0xf0,0x85,0xbc,0x33, - 0xab,0x31,0x92,0x90,0x3a,0x8f,0xb6,0x4b,0xeb,0x2d,0x91,0xb8,0x01,0x9b,0x36,0xea,0x1a,0x86,0x95,0xd6, - 0x85,0xa2,0xa5,0xba,0x88,0x19,0x0e,0x9a,0xdf,0x1c,0x23,0xf6,0x6f,0x52,0xb6,0x9a,0x74,0x5c,0x97,0x18, - 0x84,0x09,0xa5,0xc2,0x9f,0xd2,0xf0,0xa2,0xf9,0x59,0x5c,0xd1,0x75,0x47,0xca,0xda,0x56,0x94,0x87,0xf7, - 0x9e,0xc4,0xf5,0x0d,0x2e,0x87,0x37,0xf3,0x64,0xad,0xb4,0x28,0x2b,0xc4,0xf7,0x4b,0x33,0x0c,0x76,0x6d, - 0xe2,0x6e,0x3c,0x0c,0x36,0x38,0x48,0xed,0xc9,0xa9,0x76,0x3a,0xe2,0x8b,0xe9,0xc6,0x85,0xd5,0x1f,0x52, - 0x88,0xf0,0xab,0xb4,0xc5,0x9a,0xe3,0x14,0x66,0xdb,0x03,0x77,0xd5,0xf4,0xc0,0x6d,0x1c,0x0a,0x43,0x0d, - 0x8a,0xa6,0xe2,0x0b,0x2c,0xbf,0x71,0x7e,0x0f,0x7d,0xfe,0x27,0xb5,0x47,0x02,0xdf,0xe9,0xd3,0x2b,0x28, - 0x85,0x48,0x18,0xec,0x83,0x83,0x6f,0x33,0xfc,0x1b,0xc0,0x8d,0x16,0xe8,0x36,0xa8,0x32,0x3f,0x81,0x5d, - 0xc6,0xb1,0x6c,0xcc,0x6f,0x53,0xf5,0x2b,0x94,0x29,0x6f,0x4f,0x6f,0x7d,0x7f,0x14,0x0e,0xd6,0xa7,0x59, - 0xd0,0x1f,0x05,0xa7,0x9b,0xd3,0xcd,0xd1,0x85,0xfa,0x0a,0xda,0xef,0x87,0x83,0x4f,0xfa,0xa3,0x3f,0xf6, - 0x6f,0x37,0x7e,0xb0,0x1e,0x9f,0x4e,0x4e,0x8f,0x4e,0x4f,0x27,0xf4,0xed,0xf7,0x6e,0x15,0x76,0x3e,0x42, - 0x8c,0xf6,0xf6,0x57,0xa9,0xf2,0x4e,0x4f,0xf7,0x0f,0x3c,0x36,0x5f,0x86,0xa2,0xf9,0xf6,0x17,0x77,0x76, - 0xc5,0x5f,0x8a,0x9f,0xf4,0x3d,0xdd,0x19,0xe9,0x8d,0xd7,0xcf,0x94,0x77,0x01,0x49,0xa0,0xfa,0x0d,0x66, - 0x7e,0x2c,0xde,0x87,0x4f,0xd3,0x70,0xec,0x39,0x72,0x7f,0x6f,0xa2,0x2c,0xca,0x6e,0x99,0x79,0x00,0x44, - 0xe0,0x5a,0xb1,0xc8,0x34,0x8a,0x4c,0x45,0x5e,0x23,0x06,0xb7,0x43,0x11,0x6c,0x39,0x55,0x45,0xdf,0xbc, - 0xf8,0xfe,0x3b,0x4a,0x00,0x60,0x23,0x86,0x63,0x66,0xdc,0x98,0x47,0x85,0x53,0x10,0x8e,0x72,0x21,0x4a, - 0x81,0x52,0x0c,0x12,0xbe,0x48,0x99,0xe0,0x88,0x0a,0x2c,0x7f,0x92,0xc1,0x3d,0x6b,0x07,0xf7,0xe9,0x79, - 0x8e,0x6a,0x7f,0xdd,0x24,0x2e,0xcb,0xfa,0x91,0x3b,0x9e,0xd0,0xeb,0x37,0x72,0xf4,0x3d,0x05,0x2b,0xcd, - 0x46,0x5b,0xba,0xd4,0xd4,0xe6,0x77,0x3f,0x4a,0x81,0x84,0xe8,0xe2,0xff,0xec,0x9e,0x36,0xbe,0x22,0xf9, - 0xf3,0xd3,0xc6,0xe8,0xbf,0x35,0x6d,0x5c,0x55,0x7b,0xda,0x5e,0xa7,0x98,0xb9,0xe6,0xd4,0x49,0x61,0x67, - 0xea,0x38,0xe1,0xaf,0x4e,0x1d,0x37,0xdb,0x98,0x3a,0x4e,0x71,0xa6,0x8e,0xdf,0xcd,0xd4,0xb9,0x6d,0xd9, - 0x52,0xc8,0xef,0x4b,0x81,0xfa,0x6b,0x1f,0x56,0x07,0x32,0x79,0x55,0xce,0x97,0x4d,0xb0,0xfc,0x63,0x2b, - 0x50,0x98,0x53,0xe6,0x0b,0x6d,0xd5,0x28,0xa6,0x7b,0xda,0x1a,0x53,0x2c,0x0c,0xd3,0x92,0x31,0x33,0xae, - 0x9e,0x68,0x28,0x8e,0xbd,0x68,0xc3,0xf4,0x51,0x0c,0x24,0x6f,0xce,0xe1,0x76,0x28,0xc9,0xc5,0x66,0x5a, - 0x5b,0x38,0xc2,0xfc,0xb3,0x82,0x69,0xa7,0x11,0x73,0x2e,0xd9,0xc4,0x11,0xe6,0x81,0x6c,0xe8,0x28,0xa6, - 0x8f,0x85,0xae,0x09,0x9b,0x4b,0x7a,0xd8,0x69,0x82,0x2a,0x5d,0xae,0x8d,0x0d,0xd9,0x62,0xb2,0xd3,0xb0, - 0x12,0xcd,0x36,0x2d,0x1b,0xd9,0x16,0x55,0x1b,0xa2,0x1a,0x4b,0xca,0x2d,0x8b,0x54,0x6d,0xe3,0xca,0x26, - 0x96,0x1d,0x16,0xae,0xe8,0xab,0xb1,0x7f,0x95,0x76,0x68,0xb2,0xd8,0xae,0x56,0xdb,0x60,0xe2,0x2e,0xc3, - 0x18,0x4f,0xf2,0x34,0xb5,0xcd,0x31,0x65,0xda,0xc4,0x3c,0x55,0x4f,0x9e,0x18,0x52,0x18,0x53,0xcb,0xda, - 0x0a,0xb4,0x35,0x45,0x6c,0x99,0x4b,0x13,0xc5,0x73,0x0d,0x35,0xc0,0x3c,0x3a,0xfa,0xe3,0xb4,0xfc,0xc4, - 0x1f,0xd3,0x5f,0xef,0xce,0xfd,0x07,0xa7,0x47,0xd1,0xa4,0x1f,0x10,0xae,0x41,0x62,0x14,0xe0,0xef,0x28, - 0xf4,0xe8,0xb3,0x37,0xf9,0x84,0xd0,0xce,0xfa,0x0e,0x3d,0xde,0xa1,0xc7,0x3b,0xfd,0xb5,0x2e,0x13,0xdd, - 0x7f,0xf0,0x5f,0x54,0x24,0x08,0x46,0x47,0x2a,0xcd,0x23,0x6f,0x1c,0x1f,0xbe,0x7b,0x78,0xf8,0xfb,0xd9, - 0x64,0x7c,0x7a,0x7a,0x73,0x7a,0x7a,0x78,0x7a,0x3a,0x98,0x7c,0xe2,0xa9,0x9c,0x3e,0x01,0x87,0x79,0xfd, - 0x34,0xef,0x13,0xa6,0x0b,0x83,0x91,0x3c,0x06,0x9e,0x8a,0xf3,0xc8,0x41,0x76,0xde,0x1f,0xf7,0xbd,0x7e, - 0x9e,0x13,0x87,0x66,0x3a,0x77,0x7a,0x34,0x0a,0x1e,0x1c,0xd1,0xba,0xb4,0xb2,0x9d,0x9e,0x1e,0x21,0x67, - 0xdf,0x1b,0xff,0xf1,0x60,0xf2,0xc9,0x03,0x1a,0xcf,0x0a,0x45,0xee,0xef,0x3d,0xfe,0xfe,0xd1,0xcb,0xdf, - 0x7e,0x78,0xd2,0x43,0x7a,0xff,0xc1,0x51,0xaa,0x16,0x92,0x0e,0x0b,0x9e,0xb9,0x3c,0x9e,0x8e,0x8f,0xd4, - 0x32,0xc7,0xdd,0xb1,0xf7,0xc6,0xb3,0x58,0xf8,0xe8,0x8d,0x3f,0xa0,0x81,0x5c,0xa8,0xe6,0x96,0xa7,0x8c, - 0x1e,0x98,0xfb,0x44,0x5f,0xbd,0x5c,0xe6,0xea,0x3a,0x27,0x56,0x5a,0x5d,0xe4,0xea,0x6d,0xae,0xce,0x72, - 0x02,0x22,0x75,0x93,0xab,0x37,0xb9,0xda,0xcf,0xd5,0xeb,0x5c,0x3d,0xca,0xd5,0x0b,0x06,0x41,0x6d,0xbf, - 0xab,0x0d,0xa3,0xcd,0xad,0x07,0x1f,0x82,0x0f,0x73,0xdc,0x1c,0xbf,0xa4,0xbf,0xde,0xc1,0xa2,0x1a,0x7a, - 0xa1,0x77,0x9f,0x36,0xe5,0xc1,0x05,0x3f,0x3e,0xc0,0x23,0xe0,0x93,0x5e,0xee,0x78,0x77,0xe8,0x25,0xbe, - 0x5a,0xe2,0xc3,0x01,0x3e,0xfc,0xed,0xe4,0x18,0xcf,0xa7,0x19,0xbf,0x7c,0xce,0xcf,0x95,0xb7,0x51,0xdf, - 0xd3,0xd8,0x0e,0x68,0x92,0x89,0x01,0xbe,0xa8,0xd6,0x28,0xbe,0xa6,0x62,0xc1,0x90,0x06,0xf4,0xaa,0xf3, - 0xd3,0x9a,0x6a,0x5a,0xff,0xed,0x73,0xce,0xf1,0x84,0x3b,0x0c,0xcd,0x87,0x66,0x3f,0x9f,0xe5,0xdd,0xa4, - 0x05,0x9d,0xc1,0x4f,0x72,0xf1,0xa1,0x70,0xca,0x72,0x96,0x04,0x9e,0x8b,0xd4,0x53,0xcc,0xef,0x7f,0xac, - 0xff,0xb8,0x3e,0xcc,0xb3,0xf0,0x48,0x7d,0x89,0xd7,0xeb,0xc3,0x35,0x92,0xe8,0xf5,0x31,0xbd,0xfa,0x83, - 0x4f,0xe8,0x40,0x2d,0xfb,0xd4,0x9b,0x34,0x5b,0xe7,0x73,0x7e,0x1e,0x7c,0x12,0x1c,0xa9,0xef,0xe8,0xab, - 0x22,0xb8,0x52,0x74,0xdc,0x4e,0x08,0xca,0x28,0x87,0xfb,0x1a,0x8c,0xf6,0x8f,0xd4,0x0f,0x0c,0x15,0xfe, - 0xfa,0x34,0xd8,0xa7,0x4e,0x3f,0xcf,0xd9,0x3c,0xec,0x13,0x7a,0x51,0x3f,0xe2,0x4b,0x88,0x96,0x59,0xf4, - 0x7c,0xa4,0xbe,0xa0,0x84,0xd3,0xc1,0xf8,0x8f,0xc1,0xa4,0x4f,0x59,0x7f,0xca,0x3b,0x8d,0x77,0xfc,0x6f, - 0xd3,0xe8,0xdb,0xf4,0x03,0x86,0x4a,0x41,0xad,0x0d,0x11,0x55,0xea,0xdb,0xd4,0x35,0x4e,0xa4,0x43,0xf8, - 0x67,0xb4,0xfc,0xe6,0x6a,0x91,0x95,0xe1,0x77,0x2f,0x4e,0x67,0xfd,0x23,0xf5,0x35,0x52,0xf8,0x99,0xfa, - 0xf1,0x2e,0x8f,0xc6,0xbf,0xa5,0x74,0xe6,0xa8,0x5b,0x9a,0xde,0x97,0xef,0x39,0x5b,0x44,0x96,0x64,0xbc, - 0x4a,0xc8,0xd5,0x90,0x61,0x61,0xf8,0x72,0xff,0x79,0xbc,0x64,0x91,0xec,0xd8,0xbb,0x3e,0xe4,0xcb,0x14, - 0x6f,0x02,0xe9,0x2c,0x5e,0x79,0xd0,0x20,0x08,0xbd,0xc9,0x7a,0x4d,0x29,0xfa,0xd9,0xa8,0x86,0xea,0xd3, - 0x86,0x13,0xe1,0xb9,0x4b,0x4e,0xae,0xeb,0xc3,0x74,0x2e,0xcb,0x9c,0x47,0xe9,0xc8,0xa3,0xba,0x68,0x57, - 0x62,0x53,0x86,0xc4,0x22,0xc6,0x91,0xd0,0xe4,0x26,0x2b,0xae,0x73,0xb5,0xdd,0x72,0x23,0xcd,0xd6,0x31, - 0x8d,0x7e,0x63,0xfb,0x91,0xaf,0xa0,0x95,0xa2,0x92,0x04,0xb2,0x2c,0x6e,0x50,0x89,0xeb,0x8c,0xf3,0xfc, - 0x0d,0xb5,0xfd,0x2b,0xd2,0x89,0x6d,0x9a,0x82,0x86,0x9d,0x12,0x82,0xd6,0xe4,0xde,0x20,0x9d,0x13,0x8e, - 0xf0,0xfa,0x05,0xb5,0x4f,0xc3,0xbf,0x63,0x8a,0xdc,0xa1,0x4d,0xae,0x7e,0x47,0xa1,0xdb,0xe4,0xcd,0x32, - 0x44,0x3e,0xc1,0xdf,0xe1,0x54,0xef,0xc7,0x95,0x6e,0x97,0x3a,0xb5,0x42,0xa7,0x68,0x76,0xa5,0x43,0x09, - 0x27,0xe8,0x2e,0x14,0xf1,0x2c,0xcd,0xa5,0xfd,0x15,0xda,0xaf,0xab,0x74,0x5b,0xe5,0x5c,0xdc,0xa4,0xb4, - 0xb1,0xd2,0x6d,0x2c,0x74,0x1b,0xc6,0x67,0x51,0xe2,0x2f,0xda,0x4d,0x51,0x82,0x4c,0x3a,0x8c,0x1f,0x7e, - 0xc5,0x7b,0xa3,0x95,0x54,0xd7,0xb8,0x80,0x7b,0xfc,0xd1,0x74,0x80,0xa9,0x43,0x28,0x3a,0x50,0x3a,0xf2, - 0x46,0x13,0x00,0x27,0xd4,0xe0,0xec,0x26,0xea,0x17,0xc2,0x0c,0x54,0x8c,0x38,0x06,0x80,0x1d,0xe4,0xf7, - 0xe6,0x86,0xfb,0x5d,0xae,0x6a,0x56,0x22,0xd4,0x97,0x6a,0x1f,0xba,0x46,0x73,0xef,0x50,0x73,0x81,0x2d, - 0xf6,0xee,0x67,0xc0,0x8a,0xef,0x5e,0xc5,0xbd,0xa1,0xe5,0x45,0xac,0x0c,0x3d,0xd1,0xca,0x5c,0x4a,0x87, - 0xd6,0xad,0xef,0x2f,0xf3,0x60,0xaf,0xbb,0xe5,0x3b,0xf8,0xd9,0xdf,0x37,0x1e,0x38,0x7e,0x8e,0x17,0xbd, - 0xa8,0xd7,0x8a,0xac,0xae,0xaf,0x14,0xe4,0x12,0x73,0x9f,0x1d,0xc8,0xea,0x88,0x8d,0xf6,0x42,0xd3,0x56, - 0x9e,0xd7,0xe6,0xf1,0x03,0x53,0xe9,0x26,0xc0,0x1d,0xa8,0xef,0xe6,0x41,0xab,0xd7,0xdc,0x96,0x77,0x26, - 0xee,0x5e,0xa0,0x12,0x94,0xf7,0x46,0x54,0x4c,0x12,0x7a,0x21,0x3d,0xea,0xab,0x37,0xa9,0xf0,0x4e,0xdf, - 0xe7,0x18,0x0c,0x62,0x47,0x3f,0xf2,0xce,0x32,0x9f,0xbe,0x63,0x0f,0xd0,0x0f,0x84,0x44,0x04,0x02,0xde, - 0x30,0x73,0x6f,0x34,0xa1,0x40,0xdf,0xf7,0x7a,0x5e,0x3f,0x86,0xb5,0xb1,0xd7,0xec,0xbb,0xb9,0x54,0xa5, - 0x46,0x9b,0x13,0x10,0x36,0xdf,0x09,0x5f,0x7a,0x81,0xe5,0x8a,0xd8,0x6c,0xa7,0xb6,0x09,0xad,0xf1,0x40, - 0x4e,0x18,0xd6,0x6e,0x1f,0x7a,0x8f,0x77,0x4d,0xb9,0x33,0x08,0x5a,0x62,0xd9,0xef,0x32,0x07,0xc1,0x7a, - 0xed,0xa1,0x1d,0xec,0x69,0x8d,0x07,0x8a,0x55,0x72,0x58,0x7f,0xc4,0xab,0x47,0xdb,0x5a,0x3e,0xce,0x63, - 0xec,0xea,0xfa,0x2b,0xbf,0x7b,0xc3,0xff,0xac,0x64,0x06,0xc4,0x09,0x8e,0xf2,0x9a,0xa6,0x24,0x5e,0x9f, - 0xa8,0xca,0x60,0x74,0x96,0xca,0x93,0xa2,0x2d,0xd4,0x67,0x3e,0xdc,0xeb,0xfb,0x52,0x3f,0xfa,0x3e,0xf2, - 0x42,0x9d,0x93,0xa6,0x37,0x3c,0xfb,0x97,0xcd,0x1c,0x23,0x29,0x40,0xf8,0x33,0x77,0x9a,0x3d,0x81,0xa2, - 0x38,0x92,0x6c,0xfb,0xe0,0x5e,0x1b,0x93,0x4d,0x49,0xd3,0x08,0xc9,0x03,0xdd,0xaf,0x91,0x2f,0x75,0xa1, - 0x19,0xe2,0x10,0x3a,0x8c,0x61,0xa9,0x3a,0x8d,0x14,0xf7,0xf7,0xaf,0xa9,0x62,0x5f,0x96,0x5c,0xfa,0xeb, - 0x85,0x79,0xc0,0x0d,0xa5,0x11,0x8d,0x84,0xb2,0xd2,0xe3,0x35,0x57,0xe2,0x36,0x12,0xdc,0x52,0x86,0xfb, - 0xc7,0x8c,0x2e,0xa9,0x5f,0xd4,0x01,0x1b,0x6e,0x7b,0x4c,0xf9,0x09,0xe9,0x8a,0xae,0x1c,0xe5,0xa2,0x09, - 0x68,0x64,0x33,0xee,0x5f,0xe8,0x53,0x60,0xca,0xd4,0xe9,0x94,0xda,0x3f,0x81,0x1e,0x81,0x94,0xb7,0xf0, - 0xb5,0x3f,0x65,0x38,0xf4,0x3e,0x0e,0x5a,0x04,0xd3,0xfd,0x9b,0xa0,0xb2,0xb5,0xdc,0xce,0x62,0xf9,0x54, - 0x66,0x6b,0xd2,0x10,0xba,0xa1,0xb9,0x7a,0xdc,0xf9,0xfc,0x63,0x40,0x1c,0x20,0xe8,0xe8,0x84,0xec,0xc4, - 0x2a,0x2d,0x7c,0x45,0x78,0x8d,0xfd,0xc7,0xe3,0xf4,0x92,0xa8,0xc1,0xf0,0xbb,0xad,0xc7,0x85,0x00,0x48, - 0xb0,0xe3,0xa6,0x63,0x69,0x4f,0x66,0x05,0x9d,0x82,0x6e,0x9f,0x5a,0x45,0xf9,0xc8,0xf4,0x32,0xd4,0x1f, - 0xa0,0x83,0x36,0x3a,0x4f,0x43,0xdd,0x2b,0xb5,0x88,0x5a,0xdb,0x5a,0xe6,0x67,0x08,0x74,0xdd,0xfd,0x4d, - 0x5b,0x8d,0xc3,0x63,0x89,0xe4,0xe1,0x09,0x5a,0xf0,0xcc,0x0c,0xe5,0xce,0x8a,0x67,0x64,0x11,0x0c,0xa7, - 0x94,0x81,0x4e,0x3b,0x80,0x55,0xa3,0x1e,0xad,0x67,0x62,0x2f,0x29,0x87,0x5e,0x7f,0x1e,0x28,0x59,0x09, - 0x69,0x5f,0x79,0x66,0xff,0xe8,0xd9,0x5e,0xa9,0x79,0x2d,0x59,0xf1,0xcb,0xf5,0x1a,0x0a,0xd3,0xb2,0x0e, - 0xe7,0x8b,0x15,0x9d,0x4e,0x5e,0xf3,0xea,0xca,0x33,0xe6,0x82,0xf5,0x42,0xec,0xbd,0xca,0x9a,0x62,0x42, - 0xc2,0xa4,0x9d,0xb8,0xdf,0xde,0xc2,0x32,0x8d,0xb8,0xc5,0x18,0x5f,0x8b,0x06,0x83,0x74,0xd7,0x21,0x91, - 0x00,0x3c,0x25,0xba,0x2d,0x39,0xb8,0xf3,0x1b,0xe6,0x79,0xde,0x5f,0x85,0x25,0xba,0x3a,0x2b,0xd8,0x10, - 0x63,0xf9,0x03,0xd1,0x53,0x71,0x97,0x4b,0x0a,0x10,0xb2,0xda,0x01,0x17,0x84,0x95,0xc4,0x15,0x21,0x5f, - 0x45,0x54,0x7b,0x2d,0x27,0x0d,0x7f,0x2f,0xe0,0x70,0xe7,0x8b,0xe4,0x59,0x32,0xaf,0xbe,0x5f,0x26,0x19, - 0xb2,0x24,0xb9,0x6a,0x4c,0x45,0x58,0xa6,0xaa,0x25,0x0b,0x0d,0x7f,0xac,0x94,0x23,0x3c,0x78,0x97,0x13, - 0xff,0x30,0x5b,0x4d,0xbb,0x55,0x6e,0x38,0x96,0x23,0xef,0x72,0x13,0x20,0xcb,0x84,0xfc,0x0b,0xd8,0x23, - 0xc4,0xe0,0x55,0x9e,0x12,0x98,0x28,0xcc,0xc8,0xbf,0xba,0x49,0xd4,0x1e,0x1c,0xbd,0x00,0xda,0xf9,0xcc, - 0x06,0xfc,0x43,0xb2,0xae,0xcc,0x4e,0x50,0xc4,0xbb,0xa4,0x99,0x76,0xe7,0xa1,0xec,0xc5,0x98,0x44,0x17, - 0xea,0xfb,0xd5,0x08,0x3b,0xb6,0x82,0x67,0x54,0x08,0x8c,0xbe,0xb1,0x2c,0xdf,0xe9,0xcd,0xfe,0xd9,0xa4, - 0xbf,0x3e,0x25,0x0a,0x3b,0x98,0x7c,0x32,0x3a,0x0d,0xc0,0xee,0x45,0x0f,0xd6,0x7f,0x98,0x1e,0xd0,0xeb, - 0xa9,0x7f,0xa4,0xbe,0xd5,0x25,0xc6,0xc4,0xd6,0x11,0x73,0x77,0xb6,0x3f,0x41,0xd1,0x09,0x38,0x43,0xa2, - 0xae,0x5b,0x89,0xeb,0xd3,0xf1,0x1d,0xa2,0xef,0xef,0x4c,0xe8,0xc1,0xa3,0x07,0x0f,0x0f,0x44,0x06,0xe3, - 0xa7,0x9d,0x77,0x12,0x7c,0x42,0xd5,0x12,0xe5,0xfe,0x2b,0x48,0x9d,0x72,0x1a,0xde,0xfd,0x07,0x9c,0x19, - 0x85,0x9f,0x8b,0x9a,0x45,0x78,0x72,0x4f,0xc9,0x7c,0xdf,0xbb,0xab,0x56,0xcb,0xf0,0xde,0x3f,0x89,0x43, - 0x9e,0x57,0xe1,0xbd,0x7f,0xa8,0x02,0xb7,0x27,0xe1,0xbd,0xcf,0x15,0xbc,0x60,0x87,0x9f,0x1e,0x2b,0xb9, - 0xc0,0x0c,0xc7,0xff,0x54,0x9f,0xfe,0x9d,0x98,0x90,0xaf,0xf2,0x2e,0xbf,0x5c,0x40,0x39,0xfd,0x8a,0x80, - 0xc7,0xf1,0x99,0x35,0x24,0xb6,0xe9,0xf7,0x1c,0xc2,0x20,0x82,0x07,0xb3,0xa9,0xf1,0x02,0x00,0x89,0x2f, - 0x62,0x11,0x21,0x0e,0xa1,0x51,0xc1,0xdf,0x6c,0x1e,0xfd,0xfe,0x58,0x2e,0x1c,0x39,0x0b,0xe2,0x92,0x85, - 0x5f,0xe5,0x7e,0x13,0x37,0xf4,0x08,0xe3,0xf4,0x74,0xca,0x74,0x55,0x60,0x91,0x5e,0xf2,0x07,0x0f,0xc2, - 0xd5,0x62,0xc1,0x25,0xf6,0x4c,0x06,0x4a,0xf8,0x16,0x1a,0xba,0x8a,0x7d,0x87,0x36,0xbe,0x71,0x8a,0x7c, - 0x8c,0x17,0xcd,0x4f,0xf4,0x2e,0x1f,0x20,0x2f,0x68,0x7c,0x41,0x82,0x7c,0xe2,0xb9,0xc3,0xa7,0x3b,0xe2, - 0x15,0xea,0x0e,0x08,0x23,0xc9,0xd5,0x3b,0x38,0x30,0x3d,0x94,0x6f,0xdc,0xe7,0x63,0xd4,0x97,0xce,0x66, - 0x8b,0xe4,0x4f,0x15,0x3b,0x81,0x5c,0x81,0xd7,0xe7,0xcf,0x94,0xba,0x0b,0xf8,0xff,0x8d,0x16,0x82,0xb8, - 0xc6,0xb6,0x3f,0x16,0xb8,0x81,0xab,0xa3,0xda,0x75,0x2c,0xec,0xd9,0x85,0x2c,0xac,0x6a,0x60,0x08,0x42, - 0x10,0x5b,0x3a,0x48,0xa6,0x3a,0x0e,0x9f,0x57,0x5b,0x0b,0xd5,0x35,0x9d,0x53,0x4d,0x19,0xd5,0x74,0x07, - 0xf2,0x2f,0xda,0x6f,0x7d,0x30,0xdf,0x75,0xad,0x38,0xfb,0x1c,0x4a,0x1a,0x8e,0x8e,0x6a,0x75,0x44,0x5c, - 0x86,0x8d,0x84,0xd4,0x09,0x35,0xcd,0x14,0xbc,0x27,0x3b,0x47,0x9f,0xf6,0x94,0xce,0xef,0x05,0xba,0xcf, - 0xd3,0x45,0x1e,0xbf,0x46,0x5c,0xdd,0xff,0xcc,0xb7,0xbd,0x9e,0xe6,0xd6,0x59,0x26,0xbf,0x42,0x12,0x49, - 0x67,0x22,0x7e,0xd6,0xeb,0xdf,0x75,0xa2,0x15,0x5e,0x96,0xd1,0x6f,0x30,0xa8,0x36,0x8a,0xe9,0x9e,0xfd, - 0xf0,0x88,0x38,0x06,0xe3,0xc1,0x1d,0xf7,0x8c,0x5f,0x25,0x19,0x22,0xf8,0x35,0x73,0x6b,0xa9,0xa3,0xcd, - 0x67,0x39,0x8e,0xe8,0xda,0x67,0x45,0x8b,0xdf,0x72,0x36,0x8d,0xb6,0xe9,0x81,0x8d,0xde,0xd5,0x40,0xa0, - 0xeb,0xf5,0xa3,0x6c,0xa8,0x7d,0x23,0xbf,0x3d,0x4f,0x6c,0x20,0xc6,0x8e,0x85,0xdc,0xb3,0x66,0xbc,0xda, - 0x3f,0x66,0x36,0x4d,0x9e,0xce,0x22,0xed,0xa1,0xbe,0x1d,0x70,0x10,0x3e,0xba,0x69,0x15,0x7d,0x57,0x28, - 0x74,0x7a,0x7a,0xee,0xf5,0xbd,0x19,0xe1,0xf0,0x39,0x04,0x70,0x04,0xf4,0x15,0x02,0xea,0xd2,0x24,0xbf, - 0x65,0xc7,0x6c,0x53,0x08,0xff,0x70,0xec,0xa9,0x9b,0xb4,0xba,0x54,0xf1,0x4d,0x9c,0x56,0x8a,0x0d,0x03, - 0x14,0xfb,0x40,0xd7,0xca,0xf3,0x7c,0x0d,0xa4,0xd8,0x71,0xa9,0xe2,0xb8,0xf4,0xea,0x86,0xd0,0x6a,0xa2, - 0xde,0x42,0xea,0xa7,0x91,0x8d,0x22,0xe6,0x2c,0x87,0xb7,0x43,0xf6,0xc4,0xa2,0x64,0x04,0xc6,0x03,0x98, - 0x75,0xa9,0xcd,0xee,0x42,0x89,0x8d,0x91,0x10,0xf5,0xec,0x04,0x2d,0xcd,0x56,0x70,0xcc,0x78,0xbe,0xba, - 0xb8,0x80,0x98,0x50,0xcf,0x42,0x1d,0x74,0xc5,0xd3,0x7e,0x6a,0x70,0x26,0xe8,0xd3,0x81,0x86,0xb5,0xc6, - 0xd0,0x82,0x3e,0x8f,0x50,0x82,0x04,0xb7,0xc6,0x2c,0x9d,0x12,0xbf,0xa3,0xac,0xc0,0xde,0x59,0x0f,0xa1, - 0x74,0x20,0xfc,0xd3,0x53,0x42,0xf9,0xf4,0xa7,0xae,0xb5,0xf5,0x81,0xda,0xf0,0x1f,0xb5,0x25,0x3f,0x22, - 0x8a,0xd8,0x69,0x35,0xca,0x1e,0x83,0x09,0x2f,0x22,0xf6,0x71,0xb4,0x77,0x12,0xa8,0xb3,0x5c,0xaf,0x27, - 0x1b,0x88,0x41,0xc2,0xed,0x44,0x6c,0x19,0x66,0xf7,0xdf,0xe6,0xae,0x73,0x96,0xb7,0x39,0xdb,0xe1,0xe2, - 0x26,0xe7,0x32,0x8f,0x92,0x1a,0xaa,0xcf,0xf0,0x66,0xce,0x7a,0x80,0x93,0x3a,0x47,0x8a,0x73,0x92,0x73, - 0xe2,0x0d,0x12,0x5b,0x47,0x35,0x7f,0xb8,0xca,0x01,0xda,0x49,0xc7,0x46,0xf8,0x4e,0x36,0xc2,0x45,0x3b, - 0x43,0x5b,0x4c,0x43,0x79,0xde,0x6e,0xe5,0xc9,0xcb,0xaa,0x9d,0xe9,0x1a,0x5d,0xa0,0x95,0x48,0xaf,0xd2, - 0x0a,0x01,0x11,0xb5,0x51,0x2e,0x91,0xa7,0xac,0x7c,0xb2,0x77,0xc2,0xba,0x9e,0x88,0x71,0x8e,0xdd,0xf1, - 0xcb,0x25,0xe5,0xe2,0x6e,0x2a,0xcc,0x17,0xe8,0xd4,0x93,0x2d,0xcb,0x8c,0xf6,0x24,0xd3,0xdb,0xa2,0x8f, - 0x1b,0x3c,0xa8,0xb5,0xae,0xce,0xe5,0x6e,0xc1,0x77,0xad,0xa6,0x0b,0xe3,0x47,0x80,0xf5,0xef,0x54,0x59, - 0xc7,0xaf,0x17,0x4d,0xbe,0x45,0xa0,0xef,0xde,0x70,0xdd,0x50,0xe0,0xb5,0xe2,0x15,0x6b,0x5d,0xc8,0x52, - 0x32,0xab,0xfa,0xa7,0x51,0x5c,0x07,0xb5,0x4f,0x1f,0x44,0xc4,0xf5,0xc4,0x08,0x05,0xb3,0x30,0x59,0xb1, - 0xc9,0x69,0x5c,0x25,0x42,0xaa,0x19,0x9a,0x32,0xe2,0x6b,0x5f,0xe4,0x76,0x0c,0x30,0xdd,0x8a,0xa6,0x0f, - 0xa2,0x74,0x38,0xa5,0x02,0xc9,0x80,0xbd,0xac,0xf0,0x0f,0xfb,0x5b,0x67,0xc9,0x04,0xfa,0x3f,0x34,0xd9, - 0x23,0x4c,0x60,0xca,0xcd,0x1e,0x9e,0xf0,0x77,0xe6,0x8e,0xbc,0xf3,0x02,0x14,0x5e,0x39,0x62,0xc2,0xaa, - 0x80,0x85,0xba,0x3c,0xd0,0xf8,0x69,0xba,0xf7,0x8e,0xc5,0x33,0x82,0xb7,0xe4,0x5c,0x1c,0x07,0xb7,0x33, - 0xdf,0x09,0xe7,0x53,0x8d,0x8e,0xc8,0x0c,0xd2,0xa4,0x1a,0xe7,0x08,0xf0,0x74,0x82,0x45,0x84,0x32,0x7a, - 0x2d,0x95,0xa1,0x25,0x4b,0x06,0x35,0x7d,0xc9,0xd0,0xb6,0xc2,0x8d,0x73,0x8b,0xaa,0xe4,0x0f,0x0b,0x9a, - 0x94,0x6a,0xc8,0x42,0xbe,0x94,0x10,0x38,0xb1,0x24,0x2f,0x72,0x3f,0xb7,0xea,0x6c,0xb0,0x4b,0xcd,0x5b, - 0x77,0xe2,0xb3,0xe8,0x61,0x3e,0x5e,0x22,0x44,0x14,0xff,0x36,0xe4,0xdf,0x44,0xc0,0x9d,0x96,0xa7,0xa7, - 0x2f,0x88,0x74,0x0b,0xfc,0xfb,0x47,0x5e,0x7f,0x69,0x04,0xe1,0x01,0xed,0xf8,0x14,0xbc,0x34,0xac,0xb3, - 0x8c,0x68,0x7b,0xe6,0xca,0xb4,0x19,0x3c,0x0c,0xa4,0x59,0x4b,0x58,0x45,0xfd,0x59,0x32,0xff,0xa7,0xfd, - 0x4e,0x62,0xe2,0x96,0xd0,0xea,0x88,0x6a,0x07,0x54,0x47,0x10,0xa3,0x53,0xdb,0xa5,0xb4,0x7c,0x78,0xf8, - 0xe0,0xe8,0x82,0x58,0x0c,0x3a,0xf5,0xdd,0x2c,0xa7,0xe3,0x47,0x8f,0x1f,0xbe,0x7c,0x78,0x3a,0xae,0x73, - 0x4e,0x26,0x36,0x27,0x84,0xca,0xfe,0x52,0x89,0xdb,0x65,0xe8,0xb3,0x68,0x9f,0x4d,0x1c,0x46,0xef,0x32, - 0x96,0x83,0x92,0x1f,0xa0,0x04,0xe1,0x41,0xfe,0x42,0x30,0x6f,0x74,0x74,0x0e,0x2f,0x4d,0x7f,0xab,0xe8, - 0x52,0x15,0x54,0xd1,0xe2,0x70,0x8e,0x48,0xd4,0xd6,0x0e,0xe9,0x3a,0x72,0x94,0x01,0xee,0x8b,0x0c,0x00, - 0x6a,0x98,0xd7,0x3c,0xf9,0x8b,0xdc,0x44,0xd4,0x32,0x16,0x64,0xae,0xea,0xc0,0xe1,0xe9,0x9b,0x7b,0x89, - 0x14,0xb9,0x62,0xf0,0x4d,0x74,0x78,0x46,0x44,0xaa,0xd0,0x2a,0x88,0x3a,0x3c,0x82,0x76,0x58,0x52,0xef, - 0xc2,0x4f,0x15,0x6c,0x6d,0x33,0xff,0xaa,0x7f,0x8f,0x58,0x3c,0x8d,0xea,0x37,0xd0,0xeb,0x9a,0xb7,0xda, - 0xbc,0x70,0xdb,0x9c,0x3c,0x90,0xf6,0x2e,0xb8,0xbd,0xcc,0xbf,0xe8,0xdf,0x75,0x8b,0x23,0x3f,0x34,0xa4, - 0xd9,0x3d,0xad,0xbf,0x12,0x95,0xc3,0xb7,0xc8,0xf8,0x16,0x77,0xcb,0x26,0xa0,0xa1,0x2d,0x80,0xfc,0x67, - 0x36,0xff,0x54,0xf2,0x9f,0x49,0xbb,0xe7,0xd1,0x62,0x98,0xf9,0x67,0x4e,0x39,0x9a,0xc0,0xb3,0xf1,0xc9, - 0x44,0x9d,0x33,0x5b,0xea,0xd6,0x71,0xd3,0x8e,0x95,0x92,0xd8,0x4a,0x63,0xa9,0xd4,0x46,0xfe,0xbb,0x35, - 0x1e,0xff,0x12,0x54,0xc5,0x9c,0x47,0x88,0xcd,0x82,0x5d,0x16,0x2e,0x36,0xd4,0x64,0xe2,0x76,0xd5,0xd9, - 0x55,0xc3,0x3d,0x6c,0x06,0x5d,0x6d,0x99,0xb3,0xf1,0x47,0x6e,0x13,0x0a,0x4a,0x18,0x06,0x99,0x9f,0x37, - 0x3a,0xac,0xfd,0x47,0x9a,0x40,0x9c,0xd8,0x4f,0xb5,0x0d,0xe6,0x0a,0x7b,0xf1,0x05,0x9d,0xe2,0x84,0x36, - 0xd0,0x99,0xcc,0x4f,0x9b,0x85,0xe1,0xfb,0x7c,0xa1,0x8a,0xcd,0xc6,0x17,0xab,0xa9,0xe0,0x76,0x2b,0xd4, - 0x42,0x16,0x59,0x37,0x85,0x6c,0x75,0x51,0xd7,0xc9,0xdc,0xbf,0x60,0x14,0xda,0xbf,0x99,0xb8,0x0e,0x2f, - 0xa8,0x17,0x6a,0xc5,0x8f,0xb9,0x38,0x80,0x2e,0xf8,0x82,0xdc,0x0c,0x73,0x11,0x4d,0xd9,0x5b,0xc3,0xde, - 0x5e,0xca,0x3e,0x78,0xa4,0xfb,0x1a,0x86,0x97,0xbc,0xa9,0x45,0x32,0x35,0xc7,0x8e,0x3f,0x1e,0xce,0xee, - 0xcf,0x87,0x33,0xa3,0xe4,0x77,0x69,0x0a,0x8c,0x67,0x93,0xe1,0x92,0x1a,0x3d,0x84,0xb5,0xdc,0x25,0xc6, - 0x64,0x00,0xe8,0x8e,0xe7,0xdd,0xc1,0xbc,0xf1,0x1d,0xd5,0xe5,0xf8,0xde,0xe4,0xe0,0x40,0x2b,0x74,0xe2, - 0x45,0xe9,0xe4,0x4f,0xdd,0xe4,0x4f,0x6d,0xf2,0x67,0x6e,0xf2,0x67,0xda,0x9a,0xf0,0x9a,0xab,0x59,0xaf, - 0x91,0x11,0x7f,0x3f,0xa3,0xbf,0x9e,0xa7,0xae,0x22,0x2f,0x36,0x2e,0xae,0xe1,0xbe,0x59,0x6a,0x38,0x99, - 0x8c,0xcc,0x1e,0x79,0x9c,0xc0,0xa5,0xee,0x77,0xc9,0x0d,0x5c,0xa2,0x96,0x5f,0xe6,0xc5,0xd7,0x94,0x2b, - 0xec,0xfe,0x3a,0x5c,0xd2,0x88,0xb4,0xee,0x3a,0x2a,0x51,0x4c,0x62,0x87,0xdf,0x24,0xfe,0x35,0x6d,0xa3, - 0xcd,0x66,0xc1,0xaa,0xcf,0xbc,0xc8,0xac,0xc0,0x4a,0x08,0xd4,0x3d,0x71,0xc2,0xac,0x85,0x2b,0x05,0xea, - 0x96,0xf0,0x48,0x1f,0x71,0x5c,0x84,0x16,0xb2,0xcf,0x60,0x4b,0xc6,0x57,0xde,0xf4,0x06,0x8f,0x36,0x19, - 0x6c,0xb2,0x6f,0x18,0x17,0xe5,0x8a,0x7d,0xb7,0x10,0x0a,0x6a,0xed,0xbb,0x37,0xc6,0x64,0x7c,0xdf,0x3c, - 0xbc,0xd6,0x0f,0x80,0x9d,0x6b,0x7b,0xbe,0xed,0x5b,0xc7,0xce,0xd7,0x01,0x81,0xf4,0x54,0x6f,0xf7,0x7d, - 0xb8,0x71,0x75,0x9e,0x17,0xce,0xf3,0xdc,0x79,0xf6,0x5f,0x47,0xfb,0x2e,0xc6,0x52,0x84,0x0b,0xef,0x1f, - 0x13,0xe8,0x5f,0xf7,0xa3,0xd7,0xaa,0x51,0xf9,0x9b,0xc6,0xb9,0x7f,0xac,0xae,0x81,0x70,0xae,0x83,0xcd, - 0x35,0x8b,0x23,0xdf,0x80,0x33,0x88,0x60,0x39,0x6e,0x31,0xe9,0x9b,0x1a,0x99,0xbe,0x61,0x1d,0xd3,0x4a, - 0xd4,0x94,0xb7,0x50,0x6d,0x65,0x4c,0x64,0x37,0x85,0xcf,0x32,0x22,0x89,0x12,0x72,0x99,0x2b,0xe7,0x1a, - 0xa2,0x71,0xfa,0x39,0x92,0x15,0xf7,0x18,0xec,0x10,0xaa,0x6c,0x9d,0x88,0xaa,0x0b,0x24,0x76,0x40,0x4a, - 0x67,0xde,0xf7,0x03,0x97,0xfe,0xaa,0xb6,0x50,0x77,0x68,0x31,0x77,0xa9,0xd1,0x93,0x73,0x2c,0xc6,0xb0, - 0x7e,0x95,0x1d,0x2b,0x02,0xd2,0x72,0xbd,0xbe,0xc1,0x1d,0xe7,0xf0,0x07,0x80,0x3c,0x5c,0x66,0xd3,0xdc, - 0x21,0xca,0x55,0x33,0x20,0x45,0xad,0xec,0x4c,0x48,0x4f,0x48,0xdb,0xca,0xa5,0x6c,0x8d,0xf0,0x12,0xf1, - 0x51,0x7f,0xce,0x8d,0xee,0x64,0xa6,0x75,0x26,0xe5,0x29,0x92,0x1f,0x7b,0x88,0x7e,0x9d,0x2b,0x59,0x46, - 0xde,0x01,0xa0,0x45,0x6c,0x0c,0x3d,0x28,0x97,0x6b,0x79,0xe2,0xb7,0x09,0x77,0x3b,0xa5,0x03,0x12,0x12, - 0x45,0xea,0x31,0xe8,0xb9,0x3d,0xed,0x40,0x9f,0x3d,0x2a,0x2e,0xa3,0x79,0x20,0xca,0xcc,0xe6,0x3a,0x1a, - 0xc9,0x4b,0x51,0xbe,0x5e,0x36,0xe5,0xa9,0x34,0x48,0x88,0xed,0x8e,0x5e,0xc5,0xd7,0xb1,0x9b,0xb7,0x91, - 0x89,0xfa,0x8c,0x18,0xb5,0x01,0x37,0x48,0x43,0x3f,0x67,0x4f,0xf0,0x1c,0x88,0xd2,0x4c,0xc4,0x52,0xe3, - 0xb1,0x0b,0x4b,0xe0,0x03,0x9f,0xcd,0xa3,0x8b,0x9c,0xf6,0xbc,0x3f,0x57,0xa8,0x63,0xce,0x8a,0x81,0x34, - 0xfe,0xab,0x68,0xae,0xec,0x45,0xe3,0x15,0x2e,0xd5,0x20,0xbb,0x43,0xf5,0x57,0x20,0x95,0xd9,0xd4,0x60, - 0x5e,0xf3,0x15,0xc7,0x01,0x33,0x16,0x73,0x87,0xb1,0xc0,0x8d,0x64,0x67,0xf4,0x62,0x2b,0x2c,0xb3,0xee, - 0x2e,0xdd,0x28,0x8d,0xf6,0x56,0xd5,0x41,0xc1,0x89,0xf1,0x43,0x93,0x70,0x04,0x4f,0x78,0xe9,0xd1,0x38, - 0xca,0xa9,0x8d,0x12,0x25,0x2e,0x89,0x46,0x59,0x4d,0x25,0x9f,0x56,0x46,0x09,0x4b,0xba,0x31,0x1e,0x35, - 0x69,0x1c,0xac,0x6b,0xc7,0x42,0x3b,0x89,0x8a,0x3d,0x0f,0xc2,0x79,0x7d,0x17,0x4a,0x5f,0xbf,0x82,0x31, - 0x7f,0x47,0xa4,0x52,0xe7,0xce,0x56,0x9f,0xbf,0x15,0x2e,0x4d,0x13,0x5c,0x32,0x56,0x72,0xc9,0xa8,0x55, - 0x5b,0xc2,0x6a,0xa3,0x8d,0xac,0x3b,0xae,0x70,0x45,0x97,0x59,0x5f,0x3f,0x9a,0xd8,0x89,0xed,0x0b,0x5d, - 0xa3,0xcd,0xa4,0xef,0x25,0xe1,0x50,0x17,0x9d,0xba,0x76,0x17,0xeb,0x1a,0x05,0xc0,0xa4,0x73,0x95,0xd7, - 0xcc,0xaf,0xf3,0x6a,0xfc,0x9a,0xf0,0x22,0xd3,0x5c,0x8e,0x0c,0x04,0xac,0xd7,0x05,0xf5,0x95,0x61,0x46, - 0xaa,0x24,0x08,0xe0,0x27,0x2a,0x4a,0xdd,0x2f,0xa4,0xfb,0xe6,0xa3,0x1e,0xc5,0x7c,0x13,0x84,0x05,0xb5, - 0x48,0xbb,0x71,0xcf,0x81,0x35,0x98,0x08,0x6d,0x55,0xb3,0xf7,0x7e,0x5e,0xb5,0x61,0x92,0xd0,0x88,0xaf, - 0x67,0x2c,0xd0,0x2b,0x0e,0xad,0x07,0x00,0x37,0x92,0x5b,0x4a,0x40,0x50,0xd8,0x1c,0xd6,0x1a,0x1b,0xbf, - 0x76,0x72,0xc3,0x73,0x93,0xf1,0x70,0x7e,0x87,0x0e,0x30,0x77,0xbd,0x6a,0x76,0x1d,0x16,0x19,0x34,0x61, - 0x56,0xc6,0x3e,0x1f,0xc0,0x42,0x81,0x9d,0x7e,0x71,0x14,0x71,0x59,0xfe,0x13,0xd1,0x27,0x89,0xe4,0xab, - 0xc8,0x05,0xd7,0xeb,0x3b,0x9e,0x96,0x1f,0x78,0x77,0x86,0xd4,0x6c,0x23,0xd8,0x5b,0xf3,0x9d,0xcd,0x08, - 0xc6,0x97,0x93,0x68,0x2e,0xc6,0xd6,0x75,0x1f,0x05,0x6f,0xcc,0x79,0xeb,0x48,0x58,0xb6,0x54,0x8e,0x76, - 0x75,0x35,0x5c,0x8d,0x32,0x00,0x1d,0x51,0x5e,0x73,0x95,0x9b,0x8c,0x88,0x33,0x96,0x75,0xe8,0xd5,0xe7, - 0xe3,0xdc,0xb2,0x6d,0x13,0x95,0x38,0xee,0xb1,0xc6,0x5b,0x3e,0xb1,0x28,0x07,0x82,0x2f,0xdf,0x83,0x36, - 0x88,0x41,0x28,0x3d,0x4f,0xde,0xd8,0x9d,0xc2,0xde,0x14,0x9a,0xd6,0x75,0x1f,0x31,0xb5,0xca,0xd6,0x1f, - 0x9d,0x10,0xb9,0xd5,0x6c,0x2f,0x13,0x87,0xdb,0x38,0xa0,0x1a,0x52,0x7e,0x13,0x5c,0xec,0x87,0xcc,0xbd, - 0x3a,0x12,0x8f,0x26,0x40,0x6c,0x69,0x8d,0xb3,0x96,0xb5,0x3b,0x0e,0x98,0x76,0x07,0x76,0x37,0x35,0x9c, - 0x7f,0x54,0xd1,0x14,0x81,0x1f,0xe5,0x0a,0x67,0xe4,0x23,0xd4,0xa6,0x57,0x73,0x41,0x85,0xb1,0x55,0x61, - 0xb4,0x6a,0x12,0x46,0x55,0xf8,0x53,0xce,0x6e,0xfd,0xd8,0xe5,0xb9,0xf4,0x7a,0x44,0x23,0x86,0x38,0x4f, - 0x7b,0x7c,0xdb,0x2b,0x79,0x0e,0xf6,0xd8,0x77,0x9f,0xdf,0x96,0x9e,0x08,0x94,0x5e,0xe7,0xa3,0xdf,0x53, - 0xff,0x3a,0x0f,0xc2,0x5f,0x53,0xe6,0xd6,0x6b,0x66,0xc1,0x3a,0x7f,0x53,0x0e,0x0b,0x4a,0x7f,0xa6,0x70, - 0xe1,0x1b,0x97,0xd5,0x53,0x10,0x0d,0x40,0x58,0x1c,0xcf,0x27,0x99,0xe2,0xb0,0x0a,0x6e,0x69,0x65,0x0b, - 0xa1,0x27,0x82,0x07,0xb8,0x6a,0x32,0xc4,0xb2,0x25,0x24,0xa6,0xb0,0xd2,0x55,0x9a,0xbc,0x6a,0xe1,0xaf, - 0xdc,0x68,0x28,0xae,0xa2,0xaf,0xe0,0x55,0xa5,0x76,0x87,0x3c,0xd4,0x05,0xe4,0x32,0x66,0x25,0x97,0x50, - 0xba,0xee,0x5b,0xef,0x3f,0xce,0x45,0x53,0xd0,0x83,0xce,0x04,0x75,0x30,0xed,0x17,0x35,0xe5,0x6d,0x4e, - 0xaf,0xe9,0xfd,0xda,0xd4,0xa2,0xa3,0x5b,0xef,0xed,0x14,0xef,0x33,0x68,0xf4,0xc1,0x20,0x29,0xd6,0x22, - 0x2d,0xe8,0x25,0x56,0xf9,0xeb,0x24,0x2b,0xc3,0x72,0xc3,0x91,0x81,0x82,0x51,0x62,0xc8,0x46,0x58,0x81, - 0xde,0x55,0x4e,0x29,0x4c,0x92,0x79,0x31,0xc5,0x40,0x48,0xe2,0x41,0xee,0xb4,0x68,0xdf,0x86,0x02,0xb3, - 0x55,0xbd,0xa6,0x16,0x8c,0xc7,0x49,0x0d,0x9b,0x0c,0xd2,0x50,0x1a,0x77,0x1a,0xbb,0x67,0x2b,0x11,0xfa, - 0xb1,0x60,0x83,0xf0,0x2d,0x37,0xf1,0xed,0x6d,0xda,0x2c,0xac,0xac,0xad,0x5b,0xb8,0x77,0xcc,0xe6,0x11, - 0xc4,0xae,0xf8,0x06,0x36,0x11,0xc7,0x58,0x0b,0x92,0x20,0x0d,0xbe,0x4a,0xdf,0x25,0x2c,0xc7,0x81,0x29, - 0x54,0xa2,0x20,0xd3,0x79,0x93,0x47,0xff,0xca,0x81,0x27,0x9c,0xeb,0x26,0xd0,0x12,0xfb,0xb8,0x25,0xdd, - 0x92,0xcd,0xda,0x73,0x06,0x26,0x3c,0xe2,0x4a,0x46,0x97,0x8c,0xe8,0x6c,0x4d,0xd4,0x5d,0x6a,0x6a,0xaa, - 0x37,0xb3,0x8f,0x9d,0x2d,0x2f,0xc4,0xce,0xf8,0x7b,0x53,0x7d,0x2c,0x4f,0x61,0x99,0xa0,0x15,0x45,0xa9, - 0x31,0xa8,0xe8,0xe0,0xef,0x1c,0x91,0xbf,0x2e,0x32,0x9f,0x8d,0xa9,0xc0,0x00,0xed,0xe7,0xf6,0x79,0xdb, - 0x04,0xd4,0x1a,0x80,0xb2,0x1a,0x94,0x89,0x0b,0xa1,0xbd,0x42,0x5b,0xd7,0x41,0x5c,0xbc,0x61,0x49,0x80, - 0x66,0x6a,0xfb,0x50,0xeb,0x33,0x86,0x80,0x89,0x5a,0xd4,0x46,0x65,0x08,0x23,0x48,0x09,0x03,0x04,0x8a, - 0x79,0x4b,0x13,0x14,0xe0,0x3f,0x75,0x62,0xf1,0x94,0x58,0x2d,0x50,0xf7,0x12,0x4d,0x56,0x78,0xc0,0xc7, - 0x1c,0x15,0xa8,0x36,0x04,0xc3,0x8b,0xc1,0x2a,0x63,0x2f,0xcd,0x40,0x69,0x1e,0xda,0x7e,0x1a,0xab,0x05, - 0x57,0xc6,0xc9,0xf1,0x43,0xdb,0x7e,0x03,0x4d,0x78,0x6a,0x6d,0x1f,0x5b,0x67,0x00,0x79,0x08,0xbf,0x2b, - 0xca,0x2c,0x1d,0x61,0x7b,0xbb,0x16,0x7b,0x27,0x4c,0xbc,0x13,0x9d,0x3d,0x7f,0x94,0xd3,0x44,0xf3,0x3d, - 0x40,0x1d,0x70,0x9a,0x50,0x67,0x1c,0x35,0x3f,0x9a,0xf6,0xf2,0xfb,0x71,0xed,0x59,0xab,0x6c,0x65,0x82, - 0x27,0x25,0x3e,0xb0,0xa8,0x65,0x58,0xc5,0xed,0x68,0x99,0x81,0x79,0xba,0x21,0x3a,0xb4,0x01,0x2e,0xda, - 0x9f,0x41,0x6b,0x1e,0x6d,0x51,0x6c,0x8e,0x5c,0xbc,0xff,0xd9,0xb4,0xa7,0x19,0xd1,0xe6,0x96,0x41,0xa3, - 0x04,0x61,0x40,0x1a,0x53,0x44,0xd9,0x05,0xc0,0x5b,0xe9,0xeb,0xf5,0xbd,0x46,0x32,0xbb,0x6d,0x67,0x97, - 0x11,0x1a,0xbb,0x80,0x35,0xb3,0x2d,0xc1,0x1f,0x31,0x13,0x38,0x0e,0x48,0x4b,0xda,0x89,0xaa,0xeb,0x68, - 0xc5,0x70,0xdf,0x5e,0x2e,0x1b,0xcc,0xdd,0x4f,0x5c,0x57,0x8f,0x2a,0x03,0x43,0x9f,0x30,0xf0,0x0d,0xff, - 0xbd,0x85,0xa9,0xfc,0x1d,0x6b,0xc2,0x61,0x0c,0xe0,0x16,0xea,0xc4,0x2a,0x8d,0xb3,0x30,0x39,0xcb,0xd8, - 0xf0,0x48,0xcb,0x8a,0x6f,0xe9,0x18,0x20,0xee,0x58,0x1b,0x61,0xe6,0x26,0x74,0x6d,0xeb,0xba,0x84,0x3e, - 0xb4,0x52,0x36,0xcd,0x60,0x7f,0x76,0x5d,0x25,0x7e,0x82,0x71,0x28,0xdf,0x30,0xca,0xac,0xa0,0x39,0xc8, - 0xa6,0x95,0xe2,0x0e,0xa8,0x90,0x1b,0xa8,0xe6,0x99,0xe6,0x27,0xa3,0x3c,0x4c,0x03,0xe3,0x08,0x75,0x83, - 0xca,0x32,0x23,0x37,0x67,0x47,0x3e,0xfa,0x39,0xaa,0xaf,0x9b,0xf8,0x3e,0xdc,0x5c,0x94,0xdb,0xcc,0x10, - 0xa6,0x35,0xcc,0x97,0xe1,0x33,0xd2,0xbd,0x87,0x6a,0xf5,0xce,0xf9,0xb8,0x5e,0x8b,0x01,0xa9,0x5b,0xde, - 0x11,0xc9,0x20,0x8a,0x6d,0x2f,0x0b,0x3c,0xdd,0x10,0x36,0x3a,0x1d,0xe1,0x75,0x44,0x37,0x93,0x42,0xc7, - 0x5f,0x0c,0x8f,0xf8,0xf1,0x44,0x5c,0x01,0x95,0xd1,0xa3,0x9c,0xc3,0x9f,0x1b,0x39,0x7d,0x39,0x48,0x8a, - 0x22,0x27,0x16,0x22,0xa5,0xbd,0x53,0xa5,0xcb,0x32,0xca,0x55,0xa9,0x91,0xd0,0x2d,0xb4,0x39,0xd2,0x45, - 0x12,0x26,0x4a,0x3f,0xbd,0xcc,0xbf,0xd4,0x53,0x55,0x76,0x68,0xf3,0x77,0x18,0xc0,0x6e,0x5d,0x07,0x68, - 0x1f,0x0a,0x84,0xef,0xf9,0x0e,0x8e,0xf8,0x42,0x5e,0x02,0x7d,0x27,0xd5,0x2b,0x6a,0xe3,0x84,0x1c,0x6e, - 0xce,0xec,0x55,0xc4,0x48,0x1b,0x25,0xb9,0x69,0x41,0x9f,0x0e,0x44,0x86,0x5d,0x78,0x4e,0x33,0xec,0x25, - 0x1c,0xef,0x89,0x35,0x3d,0x64,0x26,0x05,0x94,0x3d,0x61,0x55,0x8d,0x15,0xb7,0x63,0xd6,0xf6,0x41,0x33, - 0x44,0x5d,0xd4,0xe0,0x36,0xad,0x91,0x47,0x7d,0x45,0x17,0xb7,0x53,0x9a,0xfa,0x7a,0x4e,0xc0,0x14,0xc0, - 0xce,0x14,0xfa,0x09,0x68,0x3f,0x22,0xd8,0xc4,0x95,0xc6,0x26,0xf0,0x7f,0xc9,0x83,0xc1,0xf6,0xe4,0x51, - 0xb6,0x38,0xda,0xdb,0x83,0x27,0xfb,0xcb,0xcc,0xc7,0x55,0x53,0xe6,0xbe,0xc3,0xe3,0x53,0xdc,0x69,0x8d, - 0xf3,0x85,0x6b,0x31,0xc6,0x61,0x6e,0xad,0x8e,0x09,0xb5,0x9d,0xc6,0x51,0x87,0x65,0x95,0xc9,0xfe,0x61, - 0xa3,0x2b,0xe0,0x3e,0x36,0x4e,0xe2,0x66,0xa0,0x4e,0xda,0xb0,0xfd,0x24,0xfa,0xd2,0x4d,0x32,0x0f,0x26, - 0x0a,0xf3,0x76,0x64,0xd1,0x46,0xc8,0x71,0x76,0x6b,0x90,0xe9,0xe9,0x36,0xdb,0x13,0x94,0xa2,0x9c,0x3f, - 0xbc,0x1d,0x03,0x56,0xce,0xe4,0x95,0xae,0x63,0x10,0x16,0x81,0xf7,0x37,0x21,0x59,0x6d,0xd4,0x04,0x26, - 0x18,0x8a,0x18,0x62,0x05,0xeb,0x8a,0x6b,0xcf,0xf1,0xdc,0xe5,0x76,0xa5,0x60,0x52,0xd2,0x4c,0x92,0x70, - 0xb1,0x5c,0x7e,0xcb,0x64,0x35,0x5f,0x55,0x0d,0x8f,0x71,0x3d,0x27,0xe9,0xfd,0x56,0x7c,0xa2,0x65,0x6d, - 0xd7,0xa5,0xe5,0x4e,0xba,0x36,0xde,0x64,0xe6,0xdf,0x5d,0x33,0x4c,0xb3,0x8c,0xdc,0x78,0x9b,0x80,0x1b, - 0xbd,0xdb,0x6e,0xe1,0x52,0xfc,0x5e,0x41,0x52,0x86,0x38,0x56,0x66,0x6b,0x84,0x99,0xb3,0x4f,0x0c,0x09, - 0x87,0x54,0xf3,0xb8,0xd1,0x91,0xde,0x41,0x52,0xe9,0x1d,0x00,0xd5,0xb3,0x16,0xb8,0x0f,0xcd,0x7a,0x11, - 0x56,0xc8,0xb6,0x77,0x87,0x35,0xd9,0x4f,0x63,0xed,0xc8,0x87,0xcd,0xdb,0x8c,0x2d,0x9b,0x86,0x7b,0x1a, - 0x13,0xbd,0x6d,0x82,0x96,0x51,0x82,0x27,0xf1,0xc3,0xea,0x75,0x96,0xfb,0x68,0xb0,0x1b,0xab,0x4c,0xa2, - 0x3b,0xce,0x08,0x8b,0xe9,0x8f,0x82,0xe8,0x46,0xf2,0x33,0xd0,0x59,0xa3,0xc4,0xef,0x0c,0x33,0x2b,0xa5, - 0x21,0x17,0xc6,0xef,0x20,0xbe,0x9a,0x8d,0xe4,0x91,0x36,0x25,0xf1,0xb9,0x3f,0xaf,0x92,0xa7,0x27,0xff, - 0xcc,0x50,0x7a,0xd3,0x0a,0x42,0x4d,0xdd,0x5a,0x11,0x80,0x00,0x04,0xa9,0x6b,0x43,0x87,0x56,0x90,0x3e, - 0x77,0xf4,0x0c,0x77,0xed,0x39,0xdb,0x2c,0xe9,0x27,0x46,0x61,0xbe,0x37,0xbe,0x5e,0x25,0x87,0x29,0xb5, - 0x33,0xe9,0x79,0x7d,0xf8,0xa1,0x3c,0x38,0x68,0x64,0xe0,0x23,0x7d,0xfa,0xda,0x75,0xb4,0x9d,0xb4,0x02, - 0xe2,0x09,0xd3,0xb5,0x35,0x51,0x55,0x5d,0xc2,0xc5,0x41,0xd7,0x7a,0x0d,0xb0,0x6f,0xaf,0x1a,0xd7,0xa9, - 0xad,0x28,0x7b,0x08,0xb3,0x67,0x63,0x4b,0x38,0x95,0xa5,0x6e,0x7c,0x70,0x11,0x05,0xda,0x4b,0x7d,0x4b, - 0xfc,0x41,0xe2,0x00,0x41,0x60,0xfd,0x09,0x64,0x9f,0xde,0xcd,0x50,0xe3,0x4b,0xf9,0xc7,0xec,0x05,0x16, - 0x4c,0x18,0xce,0x52,0x0c,0xd2,0x89,0xac,0x6d,0x2a,0xb4,0x72,0xe2,0x28,0x65,0x53,0xc3,0x70,0x6b,0xfb, - 0x57,0x1c,0x6a,0x1e,0x0e,0x93,0x91,0x2d,0xbc,0xeb,0x54,0xc8,0x22,0xc1,0xf7,0x66,0x57,0x3e,0xda,0x3c, - 0xe9,0x6a,0x93,0x12,0x81,0x47,0xd2,0x48,0x1e,0xd5,0x2d,0x51,0x2c,0x31,0x1d,0x76,0x85,0xd8,0x27,0x95, - 0x61,0xea,0x78,0x03,0xcd,0x6b,0x23,0x6e,0xac,0x88,0x6e,0xd4,0xc2,0x40,0xd5,0x50,0xc9,0x32,0xb2,0x39, - 0xad,0xbe,0xb0,0x76,0x6c,0x22,0xc7,0xc9,0x0e,0x63,0x94,0x08,0x81,0x0a,0x07,0xf1,0x39,0xc4,0xd8,0x0a, - 0x63,0x4c,0x46,0x70,0xe5,0x1d,0x8c,0xb2,0x07,0x27,0xa3,0x93,0xf0,0x38,0x3c,0x09,0xab,0x11,0xe7,0xb9, - 0x4a,0x51,0xf4,0x6e,0x10,0x1e,0x9b,0x70,0xaa,0xf0,0xbb,0xa5,0xef,0x87,0x26,0xa3,0x8c,0xa5,0x40,0xcc, - 0x69,0x85,0xce,0xda,0xc6,0x0e,0x14,0x30,0x6b,0xca,0x61,0xbf,0xdb,0x5c,0x6a,0xc3,0xed,0x7b,0xe9,0x0a, - 0x9d,0x1c,0x50,0x50,0x86,0xaa,0x12,0x72,0x8a,0x98,0x98,0xfb,0x5b,0x60,0x92,0x1a,0x7a,0x3d,0x97,0x70, - 0x3c,0xb8,0x6c,0x30,0xd1,0x4a,0x72,0xe3,0x96,0x22,0xb2,0x31,0x35,0xf4,0x95,0x04,0x1a,0x63,0xca,0x26, - 0x0f,0xa6,0x84,0x71,0x56,0x51,0xac,0x2e,0x04,0xa8,0xe1,0xa7,0x91,0xbd,0x8f,0xe6,0x20,0x65,0x46,0x4c, - 0xd5,0x94,0x4c,0xdc,0x28,0x4e,0x09,0x39,0x85,0x1f,0x35,0xad,0xaf,0x56,0x66,0xd2,0x8b,0x66,0x88,0x02, - 0x26,0x0e,0x17,0xec,0x60,0x1b,0x4e,0x9e,0xb5,0x3b,0x38,0x9b,0x65,0x55,0xbb,0xf7,0x5d,0xb0,0xba,0x2f, - 0x44,0x7e,0x1d,0x32,0x8f,0xc4,0xb8,0x3a,0xab,0x2d,0x18,0xcf,0x04,0x82,0xd8,0x2b,0xda,0x3e,0x76,0xfe, - 0x40,0x12,0x36,0xba,0x1e,0x07,0x9b,0xf0,0x05,0x36,0x24,0x25,0x38,0xd7,0x6a,0x53,0x73,0xcd,0x51,0xf9, - 0xec,0x18,0x12,0x9e,0x02,0xf9,0xd0,0x4c,0x89,0x52,0xcf,0x4d,0x26,0x88,0x12,0x71,0xf5,0x2e,0xe4,0x50, - 0x16,0xd4,0xde,0x79,0x28,0x77,0x55,0xbc,0xd5,0x33,0xda,0x8e,0x9f,0x44,0x54,0x50,0x33,0x49,0xea,0x26, - 0x12,0xb1,0xb4,0xb0,0x6b,0xd4,0x15,0x22,0x7b,0xa3,0x0e,0x29,0xa1,0xb0,0x9c,0x76,0x0a,0xdc,0x68,0xc4, - 0xe0,0xa0,0x0a,0x8e,0xcc,0x2c,0x95,0xad,0xd7,0x65,0xcd,0xda,0x8a,0xca,0x84,0xcb,0xbf,0x66,0xf0,0xf5, - 0xe3,0x26,0xd4,0x64,0xe8,0xb4,0x6e,0x7b,0x65,0xdb,0x9e,0x6e,0xb5,0xed,0xb4,0x0c,0x38,0x37,0xae,0xe0, - 0x36,0xac,0xfb,0x54,0xab,0xc1,0x11,0xf7,0xbc,0x21,0x2a,0x5c,0x4c,0x47,0x32,0xeb,0x9b,0x0c,0x5c,0x7b, - 0xad,0x19,0x61,0x16,0x63,0xe1,0xb2,0x0b,0x59,0x7b,0x55,0x8b,0xd1,0x1e,0x11,0x16,0xbc,0x9a,0x10,0x7b, - 0xfb,0x5e,0x96,0x57,0x74,0x52,0xa5,0x65,0xd5,0xd3,0xc7,0x48,0x2f,0xd5,0x9e,0x7e,0x00,0xb8,0x94,0x66, - 0xdf,0x3d,0xa8,0x1c,0xb3,0x87,0xe9,0x66,0xa1,0x66,0x01,0xd0,0x05,0x3d,0xdd,0xa8,0x94,0x70,0x03,0x4b, - 0x24,0x02,0x89,0xb2,0x93,0xb6,0xc8,0x41,0x7c,0xb4,0x81,0x0c,0xdb,0x78,0x70,0x44,0x07,0x2f,0x82,0x96, - 0xf0,0xbe,0x61,0xf9,0x43,0x75,0x09,0x7f,0x34,0x1a,0x28,0xf9,0x62,0x98,0xf6,0x2d,0xd1,0x00,0xb7,0xf8, - 0x14,0x22,0xce,0xad,0x46,0x80,0x48,0x06,0xfa,0x23,0x6a,0x5b,0xa4,0xff,0x44,0x1b,0xe4,0x52,0x01,0xf1, - 0x07,0xa6,0x02,0xda,0xa2,0x5c,0x81,0x59,0xfa,0xf5,0x7a,0xca,0x91,0x65,0x4c,0xd4,0x96,0xd4,0xce,0x25, - 0x9c,0x20,0x55,0x5a,0x86,0x6a,0x42,0xe2,0xf9,0x0b,0x5a,0x69,0x9e,0xd7,0x60,0x60,0x62,0xc2,0x2f,0x14, - 0x6d,0x60,0xc3,0x45,0x6d,0x6f,0xba,0xc2,0xa1,0xe1,0x2b,0x78,0x59,0x35,0x91,0xe3,0x71,0xf8,0xb6,0xe3, - 0x82,0xc0,0xb7,0x3c,0xfb,0x62,0xd4,0xd9,0x12,0x16,0x42,0x11,0x2d,0x14,0x30,0x09,0x66,0xf6,0xea,0xaa, - 0xb1,0x53,0xc5,0x52,0x4a,0x13,0x89,0xbe,0x67,0x02,0xf4,0xf6,0xfe,0x0b,0x63,0xff,0x2f,0xac,0xd7,0xf5, - 0x61,0xd5,0xab,0xe3,0x66,0x6b,0xf1,0xb8,0x5e,0xe1,0x72,0xb5,0x04,0x59,0xd2,0x13,0x33,0x1d,0xb1,0x54, - 0x6b,0x04,0xf4,0xe0,0x2d,0x5f,0x9f,0xbc,0xc2,0xe3,0xe1,0x49,0xef,0x1a,0x8f,0x16,0xce,0xb3,0x5a,0x88, - 0xa0,0x76,0xa1,0xe9,0xc8,0x14,0xef,0x50,0x14,0xf3,0xb0,0x05,0xa0,0x03,0xd8,0xfb,0xfc,0x24,0x94,0xdf, - 0x7b,0xf2,0xfb,0xe9,0xdf,0xe5,0xf7,0xde,0xa7,0xfa,0xf7,0x73,0x9d,0xfe,0xcf,0xd0,0x06,0x20,0x93,0x02, - 0x9f,0xe9,0x0c,0xba,0xc0,0xa7,0x9f,0x85,0x46,0xbd,0x78,0x06,0x55,0x77,0xc9,0x75,0xef,0xae,0xae,0x5e, - 0x7e,0x4e,0x8e,0xf5,0xaf,0x6e,0xed,0xe4,0xef,0x3a,0xe1,0xef,0x9f,0xdd,0xfd,0x87,0xce,0xf3,0xcf,0xbb, - 0xa6,0x10,0x3d,0xdd,0x33,0x95,0xde,0x94,0x9e,0xbd,0xf8,0x7b,0x10,0x7d,0xfe,0x0f,0x62,0x59,0xee,0x47, - 0x27,0x77,0xef,0xae,0xd7,0xf4,0xfa,0xf7,0xcf,0xf8,0xf5,0xf3,0xe3,0x91,0x6e,0x3c,0xa4,0xc4,0x4f,0x3f, - 0xe7,0xc4,0xcf,0xfe,0x31,0xf2,0xc4,0x10,0xc2,0x0b,0x3d,0xbe,0xf6,0xe9,0x08,0x48,0x82,0x69,0x92,0xb3, - 0x4e,0xc3,0x85,0xef,0x1d,0x7b,0x7b,0x4e,0xf0,0xe2,0x63,0xc8,0xd0,0xd2,0xf2,0xbb,0xf8,0x3b,0x09,0xca, - 0x46,0x08,0x37,0x51,0xdf,0x99,0x68,0x75,0x9d,0x77,0x6e,0xcd,0x69,0x37,0x7d,0xb7,0x95,0xea,0x4f,0x56, - 0x99,0xe7,0x84,0x5a,0xb8,0xf7,0x29,0xc4,0x3a,0x07,0x07,0xf7,0x3e,0xc7,0xef,0xa8,0x0a,0x6d,0x18,0x37, - 0x45,0xdf,0xc1,0x0a,0x86,0xde,0x27,0x5e,0x3f,0x31,0x01,0xd0,0xc5,0xbf,0xd5,0xb5,0xc1,0x85,0x35,0x57, - 0x66,0x7c,0x6f,0x40,0x53,0x61,0x2c,0x64,0x5f,0x4f,0x7b,0xca,0xf3,0xd4,0xc5,0x76,0xfe,0xcb,0xb8,0xfc, - 0xfe,0x26,0x33,0x81,0xf6,0xd4,0xdb,0xa8,0x8b,0x40,0x7d,0x9a,0x55,0x0b,0x27,0x58,0x18,0x5e,0x07,0x8f, - 0x11,0xd9,0x26,0xbd,0x4a,0x88,0x79,0xb8,0x8a,0x2b,0x75,0xf6,0xd1,0x05,0xc5,0x8b,0x9f,0x2e,0x76,0x1e, - 0xdd,0x8a,0x63,0x8d,0x47,0xad,0x20,0x95,0x0d,0x9f,0x46,0x2e,0x03,0x58,0x0d,0xb0,0xdb,0x22,0xf9,0xe1, - 0x7b,0xc4,0xb3,0x33,0x3c,0x8e,0x6e,0x37,0xa1,0x89,0x48,0xc4,0x38,0xe1,0xd6,0x66,0xb6,0xe8,0x92,0x7a, - 0xf4,0x5c,0xa7,0x4b,0xa1,0xc0,0x1c,0x77,0x08,0xb4,0x38,0x34,0xa9,0x9d,0x4e,0x6f,0x12,0xa2,0x16,0x12, - 0xe5,0x10,0x3e,0x15,0x1b,0x13,0xb8,0x87,0x51,0xd2,0x11,0x81,0x51,0x42,0x9a,0xa2,0x52,0xf6,0x1d,0xfc, - 0x8c,0x91,0xc4,0xf3,0xa4,0x2c,0xe3,0x0b,0xf6,0x9d,0x23,0x67,0x9f,0x3e,0x7e,0xa8,0x19,0xf1,0x38,0x75, - 0xe6,0x8c,0x51,0xd5,0x29,0xbf,0x20,0x57,0xa2,0x3d,0x82,0x49,0x57,0x6f,0x90,0x84,0x43,0x04,0x9a,0xca, - 0x7e,0xe0,0x64,0x66,0x1d,0x89,0x69,0x91,0x9e,0x27,0xf8,0xf4,0x08,0xa6,0x3e,0x1c,0x7d,0x88,0x99,0x36, - 0xc9,0x66,0x72,0x88,0x33,0xb8,0x4d,0x1d,0x8f,0x43,0x4f,0xa1,0xcc,0x15,0xaf,0x40,0x91,0xe7,0x95,0x09, - 0x72,0x8f,0x67,0x41,0x7a,0xdb,0x29,0x8d,0xb9,0xe6,0xeb,0x53,0xee,0x0b,0x32,0x44,0xed,0xbc,0x7a,0xa5, - 0x06,0x73,0xa2,0xcf,0xce,0x89,0x91,0x91,0xc9,0xd9,0xca,0xd6,0xfa,0x6e,0x4a,0x95,0xc4,0x18,0x66,0xa2, - 0x7f,0xba,0x60,0x23,0x85,0x5f,0x58,0x15,0xbc,0x5d,0xb8,0x33,0x1b,0x3b,0xea,0x6d,0x42,0x40,0xf1,0x41, - 0x08,0x28,0x40,0x2f,0x6e,0x43,0x80,0x5d,0x5e,0x5e,0xd3,0x32,0x2a,0xba,0x17,0x13,0x17,0xec,0xcf,0xcd, - 0xc4,0xfe,0x8f,0xad,0xa9,0x72,0x0e,0x0b,0x3d,0x6d,0x6f,0x33,0xbe,0xe6,0xb3,0x2f,0x7c,0x17,0x2e,0x7e, - 0x01,0x79,0x7e,0x1b,0x1d,0xda,0xaf,0x3b,0x24,0xb3,0xef,0x07,0xd6,0x51,0xfc,0x5f,0x87,0x8b,0x91,0xef, - 0x42,0xf9,0x16,0x54,0xfc,0xf5,0xe1,0x82,0x37,0x97,0x5b,0x12,0x5c,0xb2,0xea,0x00,0x0b,0xa6,0x47,0x8d, - 0xf7,0x2d,0x38,0x75,0xb7,0x9d,0x9b,0xf1,0xdf,0xea,0x8e,0xf1,0x03,0xf7,0xb8,0x1d,0xa6,0xd6,0x38,0x82, - 0x93,0xae,0xf9,0x5b,0x85,0x1b,0x3d,0x1a,0xac,0xb2,0xf7,0xb5,0xac,0x05,0x9f,0x5b,0x75,0x74,0x40,0x59, - 0xa3,0x5a,0x9d,0xe6,0xb7,0x6a,0x70,0x3e,0x99,0x1a,0x1a,0x80,0xd1,0x0d,0x2e,0xed,0x5a,0x1a,0x1f,0xdd, - 0x9e,0x48,0xd8,0xb8,0xcd,0x46,0xdd,0x18,0xaf,0xad,0x48,0xad,0xbd,0x39,0xc6,0x0b,0x18,0x7a,0x8b,0x63, - 0x45,0xd6,0x7a,0xbb,0x75,0x3d,0xd9,0x6a,0xad,0x80,0x50,0x5c,0x26,0x6e,0x38,0x22,0x79,0x33,0x87,0xa1, - 0xb8,0x70,0x71,0x68,0xe8,0x51,0x37,0xc3,0x46,0xf1,0x6d,0x78,0xa9,0x13,0xc7,0x4c,0xed,0x59,0x67,0xb2, - 0x9b,0x2d,0x4f,0x8e,0x0d,0xd2,0x9e,0xbb,0x05,0xf9,0x84,0x84,0xcf,0x40,0x14,0xd9,0xda,0xda,0x0c,0xdf, - 0x1d,0xc0,0x91,0x78,0x1a,0x7e,0x2e,0x82,0xfd,0x0f,0xba,0x8e,0xd5,0x61,0xe1,0x22,0xf9,0xb1,0xe1,0x77, - 0x89,0x9e,0x77,0x1c,0xb9,0x8a,0x00,0xbe,0x10,0x42,0x1a,0xd1,0x3c,0x34,0x21,0xbd,0x82,0x80,0x7a,0x81, - 0x0f,0x3c,0x36,0x36,0x08,0x9d,0xb7,0xd8,0xb5,0x45,0x30,0x5a,0x98,0xa0,0xbf,0xc7,0xa1,0x7b,0x6e,0x2d, - 0x02,0x9b,0xce,0x1a,0xd8,0x2d,0x9e,0xc9,0xf5,0xc7,0x87,0x6d,0x54,0x07,0x30,0xaf,0x49,0x1e,0x27,0xa8, - 0x39,0x77,0xc1,0x50,0x3d,0x75,0xdc,0xf3,0x83,0x03,0x8f,0x2f,0x13,0x37,0x9b,0x5a,0xa4,0x7f,0x70,0x90, - 0xdb,0x96,0x89,0x29,0x5d,0x52,0xed,0xbe,0xf7,0x74,0xde,0x93,0x51,0xf4,0x30,0xdb,0xbd,0xb4,0xec,0xc1, - 0xc9,0x4c,0x8f,0xce,0x80,0x1e,0xcf,0x75,0x2f,0x11,0x91,0x69,0xd9,0x83,0xf9,0x43,0xef,0x32,0xbe,0x4e, - 0xa4,0x80,0xe4,0xa7,0xcc,0x03,0xe2,0x82,0x3a,0xc6,0xbe,0x8d,0xd3,0xc1,0x16,0xac,0x88,0x01,0x84,0xf3, - 0xd0,0xf6,0x8c,0x74,0x9d,0x00,0x2b,0x78,0x3e,0x5b,0xd0,0x1f,0xa8,0x58,0xee,0xa8,0x4f,0x78,0xfb,0xe5, - 0xc8,0x83,0xf9,0x54,0x7b,0x5a,0x42,0x4a,0x4d,0x86,0x2b,0x08,0xbf,0x20,0xce,0xd4,0x5e,0xff,0x55,0xaa, - 0xe2,0x41,0xea,0x4b,0xec,0x09,0x6c,0x8d,0x37,0xd1,0x16,0xa2,0x98,0x52,0x4b,0x74,0xb8,0x74,0x5c,0x90, - 0x6c,0x86,0x6f,0x1c,0x7a,0x2e,0x85,0xdd,0xe0,0x32,0x87,0x3c,0xdc,0x95,0x13,0xd5,0xe6,0xc3,0x4e,0x6d, - 0x70,0x2d,0x67,0x98,0x54,0x68,0xe1,0xbd,0x57,0xa3,0x8f,0x18,0x3f,0xcf,0x73,0xd5,0xfa,0xac,0xbc,0x79, - 0x9c,0xf5,0xfb,0x2c,0x9f,0xf1,0x6e,0xb5,0xff,0xd7,0x02,0xd7,0x0a,0xce,0xb5,0x3e,0xab,0xa7,0x78,0x5a, - 0x57,0xac,0xc0,0x65,0x3e,0xea,0x12,0x96,0x94,0x1e,0xc4,0xc6,0x42,0xd7,0xe3,0x6d,0x58,0x87,0x65,0x18, - 0xe4,0xfd,0x28,0x55,0x36,0x59,0x64,0x12,0xfb,0x42,0x77,0xe7,0xc1,0xc8,0x63,0x67,0xa3,0xe1,0xeb,0x3a, - 0x01,0xc8,0x64,0x46,0x94,0xfe,0x4a,0x9c,0xd2,0x79,0x43,0xd3,0x05,0x69,0x36,0x17,0x8f,0xd8,0xf1,0x46, - 0xb4,0xe4,0xbd,0xff,0x8f,0xfb,0x3a,0xa2,0x3e,0x83,0x30,0xa7,0x15,0x81,0xc8,0x8f,0x9a,0x0c,0x42,0xfc, - 0x35,0x1c,0xc7,0x07,0x47,0x02,0xd1,0x8c,0x41,0x6f,0x76,0x56,0xa3,0xa2,0x21,0xaa,0xce,0x6a,0xe6,0x53, - 0x49,0xf0,0xe9,0xb6,0x6c,0xc5,0x0c,0x87,0x83,0xd4,0x6d,0x8f,0x04,0x73,0x6b,0x5e,0xd8,0x36,0xdc,0xf4, - 0x8e,0xa7,0x6e,0x98,0xb6,0x17,0x25,0xa6,0x01,0xa5,0x13,0xc3,0xf0,0xc5,0xfa,0x5e,0x1a,0x9c,0x95,0xf4, - 0x3f,0xd4,0x1c,0x6d,0xac,0x99,0x73,0xd1,0x7a,0x65,0xbe,0x4d,0x77,0x44,0x67,0xc8,0xc6,0x4c,0xe9,0x10, - 0xdd,0x6e,0xf2,0xaa,0x93,0xe3,0x60,0xd2,0x28,0x60,0x7a,0x2b,0xbf,0xa2,0x16,0x6e,0x8b,0xeb,0x52,0x44, - 0xe3,0xa6,0xfd,0xbe,0x9d,0xd4,0x0d,0x87,0xbb,0xdb,0xf0,0xa2,0xee,0x47,0x47,0x7f,0xf8,0xa7,0xb3,0xa0, - 0x7f,0xa4,0x5e,0xf3,0xe3,0x0d,0x1e,0x1f,0xd1,0x34,0xbd,0x88,0x4e,0xd4,0xc3,0xe8,0xae,0x7a,0x19,0xdd, - 0x53,0xdf,0xd3,0xfb,0xab,0xe8,0x53,0xf5,0x24,0xfa,0x4c,0x3d,0x8b,0xfe,0xae,0x9e,0x46,0xff,0x50,0x5f, - 0x46,0xff,0x54,0x8f,0xc1,0xd0,0x3f,0x1e,0x7f,0x3f,0x89,0x6e,0x6f,0xca,0x90,0x7e,0x15,0xb3,0x81,0xe1, - 0xf8,0x9e,0x7a,0x34,0x51,0xde,0xd8,0x0b,0xc7,0xaf,0x26,0x8a,0x0e,0xf9,0x70,0xfc,0x74,0xb2,0x51,0x8f, - 0xc7,0x27,0x3a,0xe7,0x09,0x7d,0x1d,0xd0,0xd7,0xbb,0x9d,0xb9,0xee,0xea,0x5c,0x77,0x9b,0xf5,0x1d,0xeb, - 0x5f,0xe1,0x2a,0xe5,0x05,0xd9,0xef,0x51,0xf6,0x0f,0xe5,0x53,0xdc,0xaa,0x7a,0x61,0xda,0xe5,0x27,0x6e, - 0x19,0x4f,0xd2,0x36,0x3d,0xa1,0xba,0x57,0x54,0x9d,0x77,0x87,0x3e,0x3d,0x41,0xb9,0x3b,0xde,0x9d,0x70, - 0xfc,0xac,0x1e,0x8e,0x7a,0x48,0x4f,0x13,0x0f,0x95,0xbd,0x94,0x82,0x5f,0xb2,0x3d,0x1f,0x3e,0x49,0x77, - 0x9e,0x98,0xf2,0x48,0x68,0xe4,0x78,0xa2,0x73,0x3c,0xa3,0x1c,0x5c,0xef,0x56,0x0e,0x34,0x24,0x0b,0xf3, - 0x1d,0xdb,0x3c,0x13,0xa9,0x56,0xac,0x92,0x35,0xdb,0x72,0xae,0x0f,0x47,0xe3,0xd3,0xd9,0x60,0xd2,0x5f, - 0xdf,0x61,0x1f,0x58,0x77,0xd6,0x1e,0xbb,0xc5,0xf2,0x02,0xca,0x07,0xc7,0x44,0x3b,0xd0,0x56,0x37,0xd6, - 0xfa,0xc1,0xc1,0x5a,0x0c,0x65,0x3f,0xd0,0xa1,0xb6,0x2d,0xa1,0x72,0x31,0x96,0x83,0xb0,0xa0,0x42,0x9a, - 0x74,0xc8,0xb3,0x4c,0xd8,0xbb,0x18,0xa1,0x7c,0xb0,0xe1,0x56,0xd1,0xe1,0x09,0x1d,0x8d,0xdf,0x73,0xdc, - 0xbb,0x4b,0x80,0x0b,0xf6,0xcc,0xe5,0xf8,0xc5,0xa4,0x61,0xdc,0x61,0xce,0xa9,0x8c,0x75,0x79,0x04,0x7a, - 0xe1,0xa2,0x50,0x3e,0xc0,0x56,0x7f,0xfc,0xa8,0xa3,0x04,0x24,0xb5,0xa3,0x2c,0x2a,0xc2,0xac,0x4f,0x84, - 0x3f,0x65,0x7a,0xd8,0xc8,0x84,0x42,0x44,0x19,0xcd,0x09,0xf6,0xe9,0xdb,0xcb,0xc6,0x37,0x68,0x44,0x3e, - 0x38,0x0e,0xe6,0x87,0x87,0xd4,0xbd,0x57,0x4a,0xb2,0xda,0xbb,0x48,0xf4,0x76,0x0f,0x57,0x1f,0x7e,0x16, - 0xcd,0xd8,0x65,0x9e,0x15,0x8b,0xa2,0xef,0x50,0xc7,0x1c,0x6a,0x19,0xf8,0x82,0x1d,0xc6,0xaf,0xfa,0x7d, - 0xf8,0x4f,0x64,0x65,0x21,0xf8,0x5c,0x5c,0xe1,0xc6,0x62,0xaf,0xc5,0x4f,0xf3,0x87,0xfe,0x09,0x63,0x6b, - 0x88,0x8d,0x9e,0xd0,0xa9,0x7c,0x87,0xd5,0xba,0xd6,0x6b,0xbc,0x3f,0x3b,0x38,0x20,0xb0,0xc0,0xbb,0xf5, - 0xdd,0x4d,0xd5,0x12,0xb6,0xa6,0x8a,0xfb,0x89,0xee,0x23,0x22,0x2c,0xfb,0x81,0xb6,0xe2,0x5a,0x42,0x2c, - 0x06,0x3a,0xa7,0x8c,0x1e,0x8f,0x17,0x93,0x80,0xf0,0xce,0x7a,0x5d,0xb2,0x22,0xe8,0x7a,0xfd,0x25,0x64, - 0xcb,0x5f,0x1a,0xad,0x20,0x6e,0x13,0x76,0x2c,0xca,0x8f,0xa3,0xcb,0x71,0x4e,0x7b,0x70,0x22,0xf7,0xb0, - 0x39,0x36,0x5a,0x11,0xd9,0x29,0x2d,0x46,0x90,0x21,0xf2,0xf0,0x89,0xff,0x09,0x1a,0x15,0x44,0xd1,0x53, - 0xeb,0x1c,0x55,0x94,0xdd,0x2c,0x41,0x6a,0x60,0x84,0x7a,0xaf,0x12,0x90,0x5d,0x1b,0xe5,0x02,0xd9,0x45, - 0x52,0x01,0xc4,0x58,0x90,0xdb,0x3a,0x1b,0x21,0x23,0x4f,0x6a,0x07,0xad,0xf5,0x25,0x8c,0xf1,0xbe,0x6d, - 0xe0,0x13,0x1e,0x6b,0x79,0xdc,0x45,0x8b,0xc2,0x40,0x78,0x37,0x74,0xdd,0xb8,0xd3,0x6e,0xd4,0xe4,0x58, - 0xfb,0xd4,0xa6,0x66,0x84,0xa4,0xb5,0x0b,0xee,0x7c,0x68,0x1c,0x6f,0xc7,0xe3,0x62,0x5c,0x4e,0x9c,0xcb, - 0x0e,0x28,0x9b,0x05,0xb7,0xe2,0x86,0x4a,0xdb,0x26,0xc4,0xd1,0x54,0x95,0x35,0x32,0x8d,0x65,0xb7,0x3e, - 0xdf,0xb1,0x73,0x86,0x35,0xff,0x87,0x79,0x82,0xb6,0xac,0xbd,0x5d,0x12,0xe2,0x71,0xbd,0xf6,0x92,0xec, - 0xf0,0xa7,0x17,0x1e,0xcb,0x73,0x9b,0xbc,0x76,0xfd,0x8d,0x2d,0x92,0x34,0x8b,0xcb,0xe4,0xa5,0x0e,0x63, - 0xee,0xc8,0x80,0x24,0x1d,0x56,0x94,0x99,0x23,0xe2,0xe1,0xd4,0xa1,0x76,0x65,0x7d,0x25,0x17,0x7c,0xf2, - 0x36,0xe7,0xef,0x15,0x58,0xcd,0x81,0x7d,0x5e,0xaf,0xc1,0x28,0xbf,0xd1,0x59,0xae,0xd2,0x12,0xae,0x40, - 0xd0,0xb6,0x3c,0x89,0xc0,0xd3,0x78,0x97,0x66,0xa1,0x02,0xcb,0x16,0x1a,0xe9,0xe0,0x6a,0x23,0x87,0xef, - 0x15,0x96,0x77,0x6f,0x4f,0x9e,0x4c,0xeb,0x7a,0xa0,0xac,0x0f,0xe5,0x64,0x76,0xd3,0xa5,0x90,0x9b,0x62, - 0x5a,0xe8,0x94,0x3d,0x58,0x24,0x52,0x75,0x4b,0x1d,0x88,0xc4,0xdd,0xdb,0xf1,0x49,0xd7,0xdb,0x9c,0x50, - 0xdc,0xbc,0x83,0xb0,0x97,0x6f,0xee,0xa4,0x36,0xbf,0x80,0x1b,0x60,0xf9,0xc2,0x0f,0x75,0x35,0x71,0xed, - 0x2e,0x80,0x90,0xa0,0x24,0xf3,0xfd,0x41,0x0b,0xf2,0x35,0x56,0xf1,0xf7,0x30,0xd8,0x6c,0xbd,0x2e,0xfc, - 0x44,0x2a,0x6c,0x6c,0x17,0x09,0xa7,0x6d,0x8c,0xd2,0xcf,0xe0,0x34,0xf6,0xe7,0xe7,0xbe,0xb9,0xef,0xcc, - 0x54,0x13,0x6a,0x42,0xb8,0x6f,0x14,0x50,0x21,0xb2,0xab,0x05,0x24,0x61,0xac,0x1a,0xe0,0x11,0x96,0x44, - 0x91,0xa9,0x1f,0xa3,0xdb,0xeb,0xab,0xf0,0x76,0x53,0x17,0xa4,0xe7,0x76,0x49,0x4a,0x6a,0x16,0xbd,0xad, - 0x39,0xbc,0x4d,0xbb,0x0f,0xa8,0x4b,0x60,0x86,0x3f,0x9a,0x69,0xc3,0x4b,0xe7,0x0a,0xd0,0x87,0x8d,0x39, - 0x5c,0x9e,0xbb,0xae,0x87,0x65,0xb0,0x1d,0xdb,0xeb,0xd2,0xf8,0x82,0x96,0xfa,0x86,0xad,0x77,0x48,0x5f, - 0x6a,0xb0,0xa7,0xd5,0x21,0x1a,0x12,0x0b,0x03,0xd5,0x58,0xd5,0xce,0x9b,0x6c,0x94,0xdb,0x68,0x27,0xbb, - 0xbf,0xed,0x0b,0xa1,0xb9,0xd0,0xb5,0xba,0x99,0x5b,0xd5,0x0e,0xd9,0x41,0xa3,0xb2,0x96,0xe1,0x00,0x73, - 0x7b,0x6e,0x08,0x93,0xcc,0xb1,0xd5,0x94,0xa0,0x76,0xd9,0x83,0xc3,0x93,0x40,0xee,0xa7,0xa7,0x90,0x63, - 0x42,0x41,0xd2,0xef,0xe8,0x93,0x6a,0x77,0xa7,0x21,0xdb,0x6a,0x9b,0x57,0x8a,0x88,0xb0,0xe1,0x12,0x9c, - 0x26,0x6f,0xb0,0xcf,0x85,0x7c,0x6f,0x1f,0x55,0x37,0x42,0x54,0xb8,0x06,0x0d,0xad,0xc9,0x70,0xed,0x1b, - 0x2e,0x3b,0x9d,0x22,0xb7,0x8b,0x10,0x23,0xc8,0x4e,0xd0,0xdb,0x89,0x5b,0x81,0x2f,0x36,0xea,0x76,0x96, - 0x24,0x4b,0x51,0x4d,0xde,0x1e,0x9d,0x16,0x63,0x36,0x8f,0xfa,0xbd,0x1a,0x35,0xd1,0x46,0xab,0xf1,0xd7, - 0xd6,0x89,0x53,0x99,0x58,0x26,0x57,0xcd,0x79,0x60,0x01,0x99,0x33,0x19,0x02,0xf8,0xce,0x6c,0xb0,0x67, - 0x8f,0x7d,0x62,0x7f,0x61,0xc5,0x62,0xbe,0xb2,0x5f,0xfe,0x56,0xff,0xd5,0x6d,0x7a,0x45,0xa4,0x7a,0x0a, - 0x79,0xbb,0x0c,0xe1,0x47,0x54,0x4c,0xfb,0xdd,0xed,0x73,0x6b,0x11,0x90,0xc9,0xec,0xcd,0x1d,0x59,0x63, - 0x0d,0x00,0xf4,0x55,0x0b,0xb8,0x4b,0xf6,0x00,0xfe,0x63,0xfb,0x9c,0xf8,0x70,0xf9,0xe6,0xe5,0x82,0xa9, - 0xa6,0xb1,0xf9,0x3f,0x5c,0x89,0x7b,0xd1,0x60,0xaa,0x90,0x79,0xf9,0xc0,0x58,0xcd,0xa5,0x7b,0x9d,0xbf, - 0x4c,0xaa,0x8e,0xdd,0x87,0xd5,0xe0,0xf9,0xd6,0x6f,0xf5,0xb4,0x57,0xdc,0x58,0x13,0x23,0x7d,0xa8,0xd1, - 0x66,0xee,0x8e,0xf2,0x1f,0xdb,0x89,0x66,0x31,0xd3,0x19,0x8d,0x0c,0xdf,0xdb,0x0b,0x9d,0xc7,0xcd,0xde, - 0xdd,0xa8,0x3d,0x97,0xb9,0x9b,0x06,0xb7,0xbe,0xb7,0x6e,0x9b,0xab,0x59,0xa4,0xbb,0x7e,0x87,0x34,0x40, - 0xf6,0x4e,0x84,0xfd,0xde,0xd6,0x3a,0x4b,0xec,0xae,0xaa,0xbb,0x17,0x3b,0x6e,0x18,0x9a,0x5b,0xde,0x05, - 0xf7,0xf7,0x2d,0xaf,0xd9,0x3c,0xdb,0xa5,0x5b,0xc0,0xfe,0xbe,0x4a,0x5a,0x1b,0x69,0xbb,0xae,0x06,0xcc, - 0xbf,0xaf,0xa6,0xc6,0x5e,0x6a,0xd5,0x03,0xe5,0x32,0xed,0xd5,0xa9,0xa1,0x6b,0x44,0xcc,0x55,0x6a,0x6b, - 0x82,0x81,0xb7,0x96,0xe3,0x6b,0x68,0xd0,0x42,0x7f,0x03,0x39,0x72,0x21,0xcf,0x64,0xd9,0x18,0x85,0xd3, - 0x09,0x0c,0x37,0xc2,0xac,0xd5,0x58,0x5a,0x7e,0xe9,0x52,0x62,0x1d,0x2e,0x71,0x60,0x34,0x55,0xf8,0x0e, - 0xca,0xd4,0x0d,0x35,0x48,0xb8,0x76,0xad,0xdd,0x62,0xb0,0xc4,0xf0,0x86,0x9a,0xe4,0xdf,0xc2,0xbe,0xd3, - 0xa8,0x26,0xa9,0x9a,0x14,0x50,0xa2,0xe3,0xee,0x36,0xc9,0xfe,0xa9,0x65,0x19,0xa6,0x62,0x30,0xc4,0xaa, - 0x98,0x26,0x22,0xf1,0x1e,0x2b,0x10,0xb8,0x6d,0x38,0xda,0xa9,0xe6,0x92,0x14,0x91,0xc2,0x89,0x6b,0x6a, - 0xe4,0xdb,0x18,0x36,0x70,0x4b,0x4f,0x6c,0xda,0xa8,0x6e,0x15,0x4d,0x0d,0x1f,0xb0,0xaa,0xad,0xa7,0xff, - 0x23,0xf4,0x02,0xf6,0x52,0xe2,0x9b,0xc0,0x58,0x70,0x38,0xce,0xc3,0x5f,0xe9,0xe1,0xc3,0x5c,0xd4,0x84, - 0x68,0xe1,0x08,0x05,0x2b,0x4e,0x0e,0x57,0xad,0x79,0x44,0xc1,0x36,0x0c,0xb8,0x21,0xa5,0xa3,0x4c,0x41, - 0xc7,0x59,0x7c,0x15,0x1c,0xf9,0xff,0x11,0x8e,0x4f,0x6f,0x4e,0x0f,0xcf,0xd6,0x83,0x49,0x3f,0x38,0xba, - 0xa8,0xb5,0xcd,0xa7,0xd0,0x7c,0x28,0xc1,0xa7,0x96,0xad,0x2b,0x67,0x9e,0x2b,0x51,0xf7,0x28,0xc7,0x53, - 0xc4,0xfb,0x59,0x69,0xeb,0x6e,0xff,0x6e,0x00,0x67,0x01,0x9a,0xe2,0xb4,0xeb,0xc9,0xbd,0x58,0x50,0x2f, - 0xbc,0x22,0xbe,0xd1,0x42,0x3c,0x3d,0x4b,0x44,0x78,0xd6,0x89,0x42,0x8d,0x87,0xe2,0x1e,0x41,0xd7,0xd2, - 0x80,0x35,0x58,0xfc,0x39,0x47,0x33,0x83,0x16,0xbb,0x3a,0xea,0x3d,0x81,0x42,0x3b,0x44,0x6e,0x62,0xe9, - 0x9d,0xcc,0x7a,0xac,0xe2,0xae,0x7d,0x18,0x2e,0xa3,0xba,0xc0,0x70,0x1e,0x2d,0x75,0xd8,0x14,0xee,0xdb, - 0xb2,0x75,0xfc,0x21,0x2a,0xb9,0x88,0xe8,0x97,0xed,0x6b,0xcc,0x85,0x9e,0x48,0x62,0xe8,0x7c,0x33,0x4c, - 0x67,0xe7,0xd1,0x30,0x17,0x6a,0x0e,0x45,0xa3,0x51,0x6c,0x4d,0xa2,0x57,0x6a,0x1e,0x84,0x71,0xcd,0xfa, - 0x35,0x17,0x4b,0x2b,0xda,0x36,0x97,0xab,0x29,0xf8,0xad,0x11,0x6f,0x73,0x46,0x6d,0x20,0x96,0x5a,0x0b, - 0x28,0x4a,0x46,0x85,0xb6,0x30,0x43,0xbc,0xf4,0x56,0x5b,0x76,0xc8,0x5b,0x18,0xc2,0x6c,0x30,0x77,0x3b, - 0xb9,0x8d,0x25,0x0a,0x56,0xa5,0x36,0x9f,0x95,0x40,0x13,0x20,0x8c,0xe8,0x4f,0x47,0x09,0xe2,0x8e,0xc6, - 0x59,0x5d,0x42,0x07,0x9c,0x9f,0x86,0xd3,0x76,0x9f,0xb6,0x20,0xb5,0xa6,0x10,0xb5,0xff,0xa1,0xb6,0x9a, - 0xe1,0xe1,0xa7,0xc3,0xf8,0xf0,0xb0,0xf7,0xe0,0x78,0x18,0x40,0xf5,0xcf,0x51,0x49,0x8d,0xfb,0x9f,0x32, - 0x1f,0xbe,0x67,0x55,0x6b,0x3c,0x7d,0xfd,0x92,0x6a,0xd4,0xa6,0xdd,0x21,0xe4,0xb0,0xf4,0x2b,0x2d,0x33, - 0x9d,0xd8,0x68,0x74,0x35,0x54,0x64,0x4a,0x73,0x9d,0xed,0x9b,0x6c,0x40,0xb1,0x9e,0x70,0xc5,0x52,0x86, - 0xf8,0xaa,0xdc,0x0d,0xaf,0xab,0x3f,0x0f,0xaf,0x5a,0xa7,0x65,0xe1,0x80,0x6c,0x43,0x59,0xaa,0xb2,0xca, - 0x52,0x79,0x6d,0x5f,0xbf,0x0d,0x8b,0xd4,0x7d,0x42,0x1d,0x85,0xf6,0x03,0xdd,0x9c,0xf6,0x26,0xce,0x6e, - 0x5d,0x1b,0x6c,0xcd,0xf7,0x09,0xf4,0x7f,0x79,0xbe,0x93,0x96,0x0a,0x30,0xc4,0x52,0xba,0xbb,0x02,0xad, - 0x01,0x4d,0xa1,0xee,0x69,0x81,0x23,0x84,0xbb,0xa5,0x77,0x53,0x07,0xa5,0xc9,0x46,0xd9,0x76,0x38,0x89, - 0x31,0x17,0x6a,0x1f,0x0c,0x1d,0xd8,0xcc,0x68,0xc7,0x6d,0x2f,0x5b,0xb2,0x7b,0xd9,0x80,0x67,0xf4,0x91, - 0xd0,0xb9,0x58,0xf9,0x5f,0x5d,0x2c,0x97,0xde,0x4f,0xe5,0xcc,0x7a,0xcf,0xca,0xa0,0x37,0xb9,0x2a,0x5a, - 0x7c,0x48,0x7b,0x94,0xf5,0xf9,0x3f,0xda,0x3e,0x52,0x12,0x51,0xef,0xab,0x67,0xd7,0x5e,0xd7,0x72,0xe1, - 0x5d,0x53,0x0d,0x89,0x40,0xe8,0x79,0xed,0x3d,0x38,0xed,0x9c,0x60,0x6b,0x75,0x24,0xe6,0xbb,0x5b,0x60, - 0xf1,0xd9,0xb0,0xd4,0x60,0x11,0x8f,0x4b,0x17,0x2c,0xca,0xfe,0x67,0xb5,0xc6,0xde,0xa8,0x96,0x8a,0xa5, - 0xac,0x78,0x7d,0x12,0xa8,0xdc,0xd7,0x38,0xc3,0x01,0x97,0xa9,0x50,0x1c,0xd4,0xb6,0x85,0x87,0x98,0x8e, - 0xbc,0x94,0x3b,0x2c,0xe7,0x7c,0x0b,0x86,0x9b,0xbd,0x76,0x95,0x96,0xc7,0x90,0x4c,0x6e,0xf5,0xf7,0xee, - 0xb0,0xd0,0xfd,0x65,0xff,0x08,0x75,0x7f,0x8b,0xfe,0x5d,0x0b,0xc6,0xa9,0xed,0xd7,0x54,0x77,0x2c,0xfd, - 0x58,0x38,0x56,0x89,0xed,0xb9,0x09,0x34,0x93,0xb6,0x67,0xba,0x8d,0x7a,0x1d,0x53,0x69,0xb1,0x50,0xdb, - 0xea,0xf5,0xbd,0x61,0xae,0x7b,0x5d,0xc0,0xc6,0xa8,0xee,0x75,0xde,0xbf,0x67,0xae,0xd8,0x5a,0xd8,0xad, - 0x08,0x6a,0xcc,0xd6,0x04,0x50,0x96,0x26,0xe1,0x8a,0x67,0xb2,0xc5,0xe4,0x57,0xbb,0x74,0xd4,0x65,0x83, - 0xe1,0xc0,0xf9,0xd0,0x24,0x24,0xad,0x2a,0xe9,0x6b,0x43,0x77,0xaa,0x83,0x50,0xb4,0xbc,0x9f,0x43,0x6d, - 0x13,0x82,0x83,0xfc,0xb1,0x55,0x59,0xb9,0xbb,0x32,0x76,0x90,0xd9,0x51,0x4b,0x5b,0x42,0xb3,0xad,0xcd, - 0xf5,0x31,0x95,0x5c,0x0e,0x56,0x55,0xba,0x18,0x88,0x4f,0xc4,0x9d,0xbd,0xed,0x1a,0x7c,0x93,0x49,0xf8, - 0xc0,0xe8,0x5b,0x6c,0xc2,0xce,0x49,0xd8,0x59,0x69,0x63,0x00,0xdb,0xb5,0x75,0x4e,0xc6,0x5f,0xae,0x6c, - 0xc7,0xa4,0x74,0x0f,0x62,0x6b,0x6e,0x44,0xd3,0x24,0x7d,0x67,0xdb,0xef,0x20,0x48,0x0c,0xb1,0x0a,0x2f, - 0x83,0x29,0x01,0x2c,0x90,0x36,0x51,0xe9,0x65,0x00,0x79,0x27,0x8c,0x4d,0xf9,0x12,0x41,0x88,0x59,0x7c, - 0x87,0x4b,0x30,0xf7,0xe3,0x36,0x97,0x80,0x74,0x58,0x17,0xf4,0xbd,0xb3,0x33,0x44,0x4a,0x30,0x07,0xec, - 0xb6,0x00,0x77,0xbc,0xb2,0xf8,0x0b,0xfe,0x9c,0xde,0x9b,0x91,0xc5,0x84,0x1d,0xda,0x95,0x7e,0x0c,0xa5, - 0x63,0xb5,0xd0,0x7c,0xf3,0x96,0x8c,0xef,0x6c,0xb6,0x85,0x0a,0x98,0xfb,0xb0,0x1d,0xdf,0x51,0xad,0x28, - 0x2c,0x4a,0x8d,0xee,0x75,0xc7,0xd6,0x9c,0xd6,0x07,0x41,0xfb,0x28,0xdc,0x29,0xb1,0x51,0xd9,0xee,0xb3, - 0xb1,0xf8,0xef,0x38,0x1b,0xc5,0x45,0x61,0x62,0xcf,0xc6,0x02,0x26,0xfe,0xcd,0x79,0x99,0x75,0x92,0x26, - 0xbb,0x70,0xfa,0xc9,0x6e,0x9c,0x7e,0x32,0xd1,0x86,0x15,0x2e,0xda,0xca,0xb7,0xcc,0x94,0x8c,0xfd,0xc3, - 0x68,0x4b,0x97,0x1e,0x86,0xda,0x23,0x89,0xfe,0x8c,0x4b,0x7e,0x18,0x16,0x71,0xd4,0x12,0x78,0x87,0xe0, - 0xda,0xf8,0x38,0x73,0xde,0x11,0x97,0x94,0x5e,0x38,0xea,0xaa,0x2f,0x05,0x39,0xe0,0xaa,0x98,0x2f,0x65, - 0xef,0x31,0x5f,0xca,0xc4,0x7c,0x49,0xca,0x04,0xaa,0xe3,0xfb,0xc9,0x44,0xb7,0xc6,0x56,0x4b,0x1a,0x1e, - 0x11,0xdc,0x9e,0x23,0x97,0xb6,0x10,0x8f,0x2b,0x51,0xf8,0x00,0xda,0x69,0xc8,0x14,0x76,0x22,0x9d,0x1d, - 0x15,0x36,0xb0,0x44,0xbb,0xa6,0x4e,0x84,0xf3,0x97,0x2a,0xda,0x81,0x6c,0xba,0xba,0xbe,0x1b,0xd5,0x48, - 0xcb,0xff,0x57,0x11,0x4d,0xfb,0x36,0x68,0x07,0x9a,0xe9,0xc8,0x56,0x23,0x19,0x77,0x02,0x3f,0x88,0x62, - 0xb2,0x8f,0x44,0x31,0x8d,0x4a,0x3f,0x88,0x60,0x24,0xf7,0x87,0xd1,0x4b,0x4b,0x96,0xfb,0xff,0x3b,0x72, - 0xc9,0x3e,0x8c,0x5c,0xba,0x5d,0x2b,0xfd,0x3f,0xe4,0xd2,0x81,0x5c,0x32,0x8b,0x5c,0xb4,0x26,0x88,0x18, - 0x0a,0x68,0x11,0x50,0x4a,0x04,0x9f,0x33,0xb1,0xea,0xc7,0x80,0xe6,0x39,0xbe,0x8e,0xd3,0x45,0x7c,0x9e, - 0x2e,0x52,0x7c,0x8f,0x6e,0x9b,0xe7,0x65,0xf8,0xb6,0x71,0x13,0x18,0x9e,0x61,0x69,0x58,0xa3,0x77,0xb1, - 0x70,0xe3,0xf6,0xc2,0x17,0xc3,0x65,0x44,0x50,0x78,0x4d,0xb0,0x4f,0x49,0x07,0x07,0x1a,0xe0,0x2e,0x4d, - 0x8a,0x31,0xb1,0x1c,0x78,0x01,0x8f,0xa8,0x32,0xd5,0x48,0x48,0xa6,0xae,0xfe,0xbe,0xa5,0xd2,0x75,0x6f, - 0xbd,0x7d,0xd1,0x5f,0xbd,0x25,0x28,0x0d,0x77,0x09,0x5c,0x91,0x05,0x4e,0x6c,0xb2,0xe8,0x72,0x47,0x95, - 0x59,0xa3,0xca,0x6a,0xbb,0xbe,0xed,0xfb,0x31,0xf7,0xe6,0xe7,0xbf,0x05,0xfc,0xb4,0xde,0xaa,0xb1,0xc8, - 0xae,0xf9,0x29,0x62,0x5b,0x88,0x0b,0xb5,0x66,0x5f,0x6d,0x5a,0xbd,0x72,0x79,0x95,0xcd,0xa6,0xb6,0x8a, - 0x78,0xff,0x18,0xa7,0x7f,0x6e,0x90,0x5b,0x0c,0x4e,0xda,0xc5,0x96,0xa5,0x96,0xc1,0x49,0xdd,0x61,0xa6, - 0x60,0xcb,0x34,0x97,0xdf,0x1c,0x66,0xee,0xb0,0x67,0x39,0xc6,0x69,0xad,0xd3,0xf2,0xad,0x71,0xaa,0xcc, - 0x8e,0xb4,0xf8,0x33,0x23,0x4d,0xfe,0xfc,0x48,0x35,0xb2,0x6c,0xf6,0xb5,0x60,0xe6,0x29,0x51,0x56,0xef, - 0xb7,0xd8,0xe2,0x1d,0x3f,0xbe,0x57,0xb3,0xff,0x59,0x18,0xab,0x79,0x62,0x63,0xb3,0x37,0x73,0xa0,0xab, - 0x83,0xdb,0xfd,0xd8,0x71,0x74,0xec,0xbd,0xff,0xd9,0x71,0x64,0x1f,0x1e,0x07,0x6c,0xae,0xdf,0xa4,0x99, - 0x7f,0x8e,0x47,0x6b,0xfc,0xe7,0x7b,0xd8,0xe7,0x1c,0xa1,0x61,0xaa,0xa3,0xba,0xb3,0xe3,0xb0,0xcb,0x3a, - 0xfe,0x98,0x7f,0x23,0x6e,0x16,0x6f,0xb4,0xd6,0x0e,0xf5,0xd7,0xaa,0x0e,0x88,0x51,0xd4,0x73,0x90,0x42, - 0x2f,0xaa,0x82,0x0a,0x5f,0x10,0xa6,0x1c,0x16,0x62,0x1f,0x55,0x0c,0x74,0x34,0x71,0x60,0x46,0x8d,0xeb, - 0x22,0xef,0x1f,0x83,0x7b,0x83,0x7b,0x9e,0xea,0x32,0xd5,0x92,0x48,0xcf,0x07,0x07,0x3a,0xe2,0xf3,0xcf, - 0x88,0x41,0x53,0x3f,0x0f,0x56,0x65,0xe2,0x3f,0x27,0xc4,0xac,0xd5,0x87,0xac,0xb5,0xcb,0x6d,0x92,0x85, - 0xb7,0x1c,0x55,0x33,0xf4,0x5e,0x54,0x71,0x5a,0x94,0x9e,0x2a,0xdf,0x96,0x55,0x72,0xf5,0xf4,0x31,0xa5, - 0xf0,0x53,0xef,0xe9,0x63,0x4f,0xcd,0xd3,0xe2,0xea,0x26,0x2e,0x92,0x9f,0xa5,0x2f,0xa1,0xf7,0xa5,0x4e, - 0xe8,0xe9,0xde,0x85,0x3d,0x4f,0x4d,0xf3,0xe5,0x5b,0x89,0x9c,0xe1,0x3d,0x32,0x8f,0xbd,0xff,0xfd,0xbf, - 0x7a,0x77,0x8f,0x4f,0xfe,0xd1,0x7b,0x1e,0x17,0xaf,0x7b,0xd7,0x71,0xd6,0xfb,0x31,0xc9,0xca,0x9b,0x7c, - 0x35,0xa3,0x6d,0xb5,0xc8,0x63,0x78,0xdc,0x0a,0xbd,0x1f,0x16,0x09,0x0c,0x07,0x39,0x9a,0x41,0x4f,0xa7, - 0xf6,0x64,0xa2,0x74,0xc8,0xf7,0xc1,0x60,0xe0,0x29,0x5e,0xa9,0x2f,0x38,0xe8,0x46,0xe8,0x3d,0xc4,0x4b, - 0x23,0xed,0x45,0x7c,0xcd,0xb5,0xc9,0x2f,0x97,0xb8,0x49,0xe7,0x29,0x0d,0xac,0x5a,0x95,0xe1,0x6d,0x3c, - 0x85,0x83,0xca,0x65,0x9e,0x66,0x95,0x1d,0xf4,0xc3,0x1f,0xd0,0xf1,0x59,0x5a,0xc6,0xe7,0x74,0x66,0x84, - 0xde,0x63,0xfd,0x44,0xd4,0x02,0x7b,0xbb,0xc8,0x33,0x44,0xa7,0xb3,0xd9,0x7f,0x49,0xbf,0x4c,0x77,0x14, - 0x50,0x29,0x02,0x8d,0x78,0x4f,0x67,0xb8,0xb4,0xcd,0xf2,0x17,0x2f,0x78,0x06,0xe9,0x6f,0x0f,0xa6,0xa1, - 0xf3,0x9c,0x16,0x8d,0xe6,0x76,0x1a,0x67,0x08,0x20,0x01,0x53,0x0b,0x2a,0xfc,0x82,0x5e,0x7b,0x53,0xf3, - 0x8e,0x09,0xcc,0x32,0x02,0xae,0x2f,0xe9,0xf0,0xc4,0x67,0xf9,0xed,0x55,0x79,0x4f,0x7f,0xb0,0x39,0xa8, - 0x5f,0xcf,0xf2,0x92,0xe7,0xd9,0xbc,0xd3,0xb4,0x95,0x15,0xf7,0x4c,0xe7,0xd1,0xbd,0xb3,0x6f,0x88,0xcd, - 0x51,0xea,0xa9,0xa8,0xe2,0xf3,0x97,0x76,0xd5,0x29,0xc5,0x53,0x7a,0x80,0x8f,0x24,0xc0,0x4b,0xaf,0xd4, - 0xc9,0x74,0x94,0xbe,0xa8,0x92,0x65,0xf9,0xb2,0x58,0x21,0x73,0x52,0xf5,0x20,0xda,0x47,0x94,0xf9,0xb7, - 0x34,0xa6,0x82,0xf5,0xfa,0x4b,0x64,0xa8,0xb3,0x7e,0x09,0x65,0xd3,0x76,0x5e,0xb8,0x56,0xbb,0x4e,0x67, - 0x2b,0x04,0x91,0xa0,0xb9,0x25,0xba,0x03,0xc1,0x23,0x1a,0x3d,0x79,0xa9,0xd3,0xd0,0x97,0xab,0xc4,0x24, - 0xd2,0xa3,0x24,0x3c,0xc5,0x95,0x42,0x46,0x98,0xc2,0x00,0x0b,0x4d,0x2b,0xcc,0x55,0xe2,0xaa,0x87,0xcf, - 0x3d,0x53,0x65,0x4f,0x9b,0x90,0xf4,0xe2,0x8c,0xdb,0x47,0x99,0x5e,0x3d,0x6d,0x03,0xa9,0xed,0x59,0x5c, - 0x3d,0xcb,0x01,0x2b,0xf4,0x90,0x56,0x04,0x8c,0xbd,0x23,0x9a,0xc0,0xec,0x82,0x9f,0x75,0x16,0x42,0xd2, - 0x15,0xc3,0xfa,0x57,0x54,0xc3,0xa2,0x23,0x5f,0x6f,0x5e,0xe4,0x57,0xbd,0x85,0xce,0xd7,0x2c,0xf5,0x22, - 0x89,0x8b,0xe9,0x25,0xa6,0x01,0xbf,0x9e,0xba,0xca,0x91,0xaa,0x47,0xf5,0x9c,0x5f,0xbc,0x8d,0xb3,0x9c, - 0xee,0x4c,0xd4,0x8b,0x5a,0xaf,0x4b,0xbd,0xce,0x7c,0xcf,0x90,0x54,0x3c,0x53,0x2e,0x48,0x7b,0x4f,0x32, - 0x40,0x62,0x4f,0xd2,0x7a,0x9c,0xd8,0xc8,0xf1,0x35,0xe7,0x7a,0xb8,0x58,0xe4,0x37,0xa5,0x2c,0x9e,0xb6, - 0x64,0x76,0xa6,0x47,0x86,0xf4,0x36,0x5f,0x15,0xbd,0x59,0x72,0x9d,0x4e,0x13,0x40,0x1f,0x50,0x71,0x4f, - 0xd0,0x83,0xf6,0xc3,0xc2,0xc5,0x1b,0xfb,0xb3,0xb7,0x5c,0x15,0xcb,0xbc,0x4c,0xca,0x41,0xef,0xe5,0x65, - 0x62,0x72,0x37,0xb3,0x50,0x2d,0x9a,0x30,0xa4,0x1a,0xe8,0xfd,0xb2,0xaa,0x96,0xe1,0xd1,0xd1,0xc9,0xe7, - 0x77,0x07,0x27,0x7f,0xff,0xe7,0xe0,0x64,0xf0,0xe9,0x51,0xef,0xe6,0x32,0xc9,0xd0,0x7e,0x0f,0xb8,0xc5, - 0xc2,0x2e,0x7a,0x91,0x56,0x54,0x35,0x93,0x36,0x55,0x2f,0x9f,0xcf,0x7b,0x71,0xd9,0x2b,0x73,0x78,0xb6, - 0x28,0x7b,0x7a,0xab,0xa2,0x73,0x09,0x5a,0x31,0xcd,0x26,0x33,0x85,0xcf,0x54,0x80,0x12,0xd9,0x42,0x3b, - 0x99,0x22,0x15,0xd7,0x99,0x71,0xf6,0x96,0xf0,0xcd,0xdb,0x41,0xef,0x37,0x6a,0x0c,0xfb,0x30,0x5e,0xd0, - 0x6b,0xd9,0xb3,0x74,0x5f,0x4f,0x30,0x74,0x0f,0xac,0x09,0x7a,0x7b,0xfe,0xb6,0x07,0x15,0x2d,0x60,0xa6, - 0xea,0xb2,0x39,0xcd,0x3d,0x1d,0x08,0x68,0x95,0x11,0x77,0xca,0x5f,0x9f,0x3d,0x79,0xdc,0x5b,0x00,0xff, - 0x95,0xbd,0xd5,0x92,0x60,0xce,0x45,0x26,0x66,0xa1,0xdc,0x5e,0x37,0x72,0xc8,0x42,0xe9,0x25,0xef,0x9a, - 0x7d,0x9a,0x0d,0x5e,0xa2,0xfc,0x26,0xeb,0x01,0x25,0xf5,0x0a,0xf6,0x53,0x34,0xe8,0xe9,0xad,0xc1,0xe1, - 0xa7,0xb8,0x1f,0x40,0x40,0x8a,0x40,0xa6,0x24,0x94,0x5b,0xcc,0x68,0xd0,0x33,0x3a,0x4c,0x0b,0xfa,0xd2, - 0x5e,0xbe,0xf3,0x84,0xc0,0x02,0x1d,0x2d,0xd3,0x99,0xe0,0x2d,0x4f,0x99,0x62,0xb4,0xe5,0xf4,0x13,0xe1, - 0x97,0xcb,0xe9,0x32,0xf4,0x7e,0xa2,0x46,0x1e,0x7f,0xfd,0xe8,0x07,0x79,0xd7,0x80,0xb5,0xaa,0xf2,0x2b, - 0x38,0x08,0xc2,0x1e,0xa7,0x69,0x2f,0xd3,0x8b,0xac,0xc4,0x2e,0x7c,0xfa,0x43,0x4f,0x47,0xb2,0xee,0x06, - 0x26,0x59,0x02,0x22,0x0a,0xce,0x69,0x5a,0xb0,0x28,0x34,0xa1,0x94,0xf1,0x75,0x92,0x2c,0xf5,0x42,0x60, - 0x66,0x17,0x28,0x0f,0xc0,0x80,0x21,0x05,0x81,0x09,0xed,0x7b,0x7a,0xbb,0x43,0x50,0x32,0xcb,0x81,0xed, - 0x09,0x01,0x2f,0x75,0x33,0x84,0x85,0x6d,0x93,0x34,0xa2,0xd5,0x39,0xa1,0x80,0xab,0xb8,0x7c,0x4d,0xe3, - 0xe2,0xe7,0x1e,0x5e,0x3c,0x75,0x41,0x87,0x2e,0x2d,0x39,0xed,0x6f,0x79,0xf0,0xd4,0x25,0xa1,0x50,0xb1, - 0x6a,0xfb,0x5a,0x3f,0xd5,0x69,0x3f,0xd4,0x5e,0x58,0x09,0xaf,0x6a,0x43,0x36,0xaa,0x69,0x6a,0x5b,0xda, - 0xd8,0x53,0xd2,0xdd,0xcc,0xe6,0xa0,0xb4,0x5b,0xd9,0x9e,0x9c,0x42,0x33,0x00,0x2d,0x67,0x0b,0x7b,0xc2, - 0xbc,0x2c,0xe2,0xe5,0xd6,0x19,0xfc,0x71,0x87,0x70,0xf2,0xef,0x9d,0xc1,0x4f,0x68,0xe3,0xe5,0x17,0x49, - 0x76,0xbe,0x48,0x5f,0xf7,0x2e,0x12,0x5a,0x19,0xda,0x3d,0xe7,0xc9,0xbb,0xf4,0x82,0xe8,0x05,0x20,0xc0, - 0x19,0x65,0xb8,0xe6,0x03,0xcb,0x02,0x4e,0xb2,0x7d,0x2c,0xbf,0xcc,0x13,0xc0,0x4d,0x92,0x75,0x1e,0xcd, - 0x5f,0xd8,0xfa,0xf2,0x65,0xb9,0x88,0xe3,0xec,0x2f,0x9d,0xd2,0x3f,0xa5,0x15,0x51,0x2f,0xd3,0xcb,0xf8, - 0x75,0xb2,0xf8,0xf8,0xa3,0xba,0x59,0x4a,0x9f,0xd7,0x2f,0xa8,0x13,0x4b,0xd8,0x92,0xce,0xda,0xa7,0x76, - 0x4a,0x9d,0xbc,0x48,0xae,0x73,0x22,0xb6,0xb2,0xee,0x93,0x3b,0x9e,0xd3,0x81,0x93,0x67,0xdb,0x07,0xf7, - 0xb7,0xf4,0xf1,0x22,0xc1,0x74,0x25,0x85,0x76,0x2a,0x4b,0x90,0xf2,0x1a,0xf5,0xb4,0x0f,0xf0,0x9f,0xeb, - 0x1c,0x94,0x79,0x91,0x17,0xc8,0xd4,0x3c,0xc4,0xbf,0x43,0x4f,0x50,0x93,0x74,0xe5,0x63,0x8e,0xf1,0xaf, - 0x57,0xe9,0x2c,0xbd,0x48,0x76,0x1c,0xe3,0x74,0x04,0xe0,0xbc,0x4c,0xb0,0xa0,0xb3,0xe4,0x5d,0xb2,0x98, - 0x03,0x6d,0xea,0xb3,0x3a,0x49,0xab,0xad,0xb3,0xfc,0xa5,0xe4,0x35,0x87,0x78,0x92,0x2c,0xd8,0x00,0x37, - 0xa1,0x7a,0xb2,0x3f,0x77,0x9a,0xbf,0x9a,0xb5,0x4f,0xf3,0x67,0x0c,0x0b,0x3d,0xda,0x0a,0xbd,0xeb,0x9c, - 0x4e,0x95,0x8a,0xf2,0xd4,0x87,0x79,0x92,0xd4,0xa7,0xf8,0x75,0x63,0xaa,0x12,0x78,0x53,0x21,0xee,0xbc, - 0x75,0x9e,0x7f,0x51,0x24,0xc9,0x8c,0x88,0xe9,0x22,0x8e,0x67,0x38,0xab,0xc1,0x14,0xc8,0x5b,0xfb,0x54, - 0xdf,0x9d,0x93,0xfa,0x73,0x49,0xfc,0x59,0x86,0x7e,0x9d,0xc7,0x25,0x61,0x20,0x80,0xbd,0x9c,0xf3,0x49, - 0xf7,0x31,0xff,0x7b,0x9e,0xf0,0xf2,0x36,0x8e,0xf9,0x2f,0x92,0x9b,0x04,0xda,0xba,0x3b,0x0f,0xfa,0x7a, - 0xf1,0xed,0xca,0x39,0xf0,0xe0,0xee,0xb3,0xd6,0x51,0xff,0xd0,0x3d,0x7c,0x68,0x29,0x04,0xa8,0x79,0xcf, - 0xd5,0xd9,0x2e,0x39,0xeb,0xf3,0x38,0x7e,0x5d,0xf5,0x2e,0x81,0xf5,0x68,0x77,0x2f,0xd2,0x57,0x74,0x98, - 0x5d,0xf1,0xbc,0xca,0xe1,0x6f,0x4f,0xd9,0x34,0xc1,0x30,0xe3,0x39,0x7f,0xa3,0xad,0x4b,0x64,0x06,0xad, - 0x49,0x16,0xc7,0x05,0x03,0x49,0x0f,0x98,0xc9,0x1e,0x40,0x89,0xc0,0x33,0xaa,0x22,0xd8,0xa9,0x53,0xed, - 0xc9,0x0b,0x07,0xa4,0xbd,0xc7,0xcd,0x52,0x34,0x91,0x94,0xe5,0x3c,0xc9,0x08,0x95,0x14,0xd8,0x1d,0x69, - 0xdc,0x49,0x03,0xd0,0x77,0x6a,0xf9,0x95,0xdb,0xb3,0xcb,0xe4,0x1c,0xbb,0xf1,0x0a,0x83,0x19,0xf4,0x5e, - 0xc8,0x78,0xa5,0x5f,0x38,0xa6,0x09,0x99,0xa6,0xe8,0x2b,0x8f,0xd3,0xed,0x03,0x9d,0xff,0x08,0x8e,0xfa, - 0x2e,0xd5,0xa0,0x2e,0xdb,0xfa,0x3c,0xb9,0x4e,0x52,0x3a,0x9e,0x67,0x00,0xa0,0xde,0x37,0x49,0xef,0x35, - 0x9d,0xdc,0x6e,0x6d,0x79,0xfe,0xda,0x9d,0x56,0x3a,0x62,0x08,0x32,0x01,0xa5,0x49,0xaf,0x31,0xf5,0x74, - 0x16,0x2d,0x31,0xa6,0x59,0xb1,0x7a,0x8d,0xe9,0x20,0xb6,0x16,0x5d,0x9f,0x09,0x01,0x10,0x03,0x0d,0xd0, - 0x24,0xb6,0xcf,0x7f,0x67,0x8d,0x81,0x09,0xf9,0x04,0xd7,0xe8,0xc1,0xc9,0x27,0xcb,0xa7,0xf3,0x6e,0x2f, - 0x01,0x2a,0xa7,0x29,0x4a,0x68,0x9b,0xb7,0x88,0x80,0x9f,0x57,0x8b,0xde,0x65,0xca,0x98,0x89,0x8e,0x79, - 0xcc,0x08,0x23,0x34,0xca,0x76,0x13,0x4f,0x2f,0xab,0x9b,0x1c,0x94,0x40,0x4a,0x53,0x93,0xd4,0xb8,0x3c, - 0xa1,0x9c,0x1c,0xd3,0x70,0xc5,0xd3,0xda,0xcb,0x69,0x87,0x01,0x81,0xf0,0x74,0x94,0x3b,0xe9,0x82,0x5f, - 0x6c,0x85,0x86,0x32,0xf8,0x2a,0x39,0x2f,0x56,0x74,0x80,0xd4,0xd4,0xc1,0x65,0x83,0x3a,0xa0,0x39,0x65, - 0x00,0xe3,0x13,0x9a,0x8e,0x4d,0x9a,0xb2,0xe4,0x26,0x7d,0xf5,0x0e,0x30,0x17,0x67,0x5b,0xc3,0x1c,0xf4, - 0x7e,0x21,0x00,0xa4,0x42,0xe9,0xab,0x8c,0x61,0xf7,0x86,0x08,0x2c,0x1a,0xb6,0xb3,0x56,0x28,0x06,0x85, - 0x0f,0x1a,0x10,0xfd,0x79,0x97,0xbe,0xc2,0xf7,0x9b,0x84,0x86,0x7d,0x03,0xd8,0xa5,0x97,0xab,0x24,0xd1, - 0x07,0xd9,0x39,0xec,0xbb,0xb7,0x29,0x05,0x7a,0xdc,0x49,0x27,0x24,0xc5,0xc7,0x50,0x0a,0xf1,0xd5,0x0e, - 0x4a,0xe1,0x05,0x8e,0x16,0xea,0xc7,0xcc,0xd0,0x0a,0x68,0xeb,0xcf,0x52,0x0a,0xe7,0xe9,0xab,0x9b,0xa4, - 0x78,0xcd,0xc8,0x7f,0x53,0x3b,0x25,0xe4,0xf8,0x1f,0xc4,0x06,0x5b,0x99,0x09,0xc4,0xf8,0xda,0x2b,0x55, - 0x6d,0xde,0x41,0x27,0x2f,0xf5,0x3f,0x2f,0x06,0x0b,0xda,0x09,0x2b,0x62,0xfb,0xdb,0xb6,0x16,0x1e,0x23, - 0x2e,0x63,0xb9,0x61,0x35,0x5d,0x83,0xa1,0xae,0xce,0xbf,0x4d,0x16,0xa1,0xf7,0x37,0x42,0x09,0x34,0x73, - 0x54,0x75,0x58,0x29,0xb6,0x84,0xb8,0x35,0xa4,0xc3,0xde,0xb1,0x2a,0xe5,0x7c,0xdf,0x3b,0xd1,0x4f,0x7c, - 0x7a,0xe0,0x55,0xe7,0x79,0x4a,0xe0,0x3e,0x45,0x2f,0x42,0x6f,0xed,0xa9,0xd5,0x12,0xc9,0x3f,0x14,0xf9, - 0x05,0x2f,0x02,0x65,0x8b,0x59,0xa4,0xf2,0x32,0x3e,0x87,0xff,0x3f,0x39,0xb3,0x8c,0x60,0xe1,0xb6,0x26, - 0x86,0x74,0x65,0x4c,0x33,0x98,0xcf,0x6e,0xe2,0xa6,0x49,0x49,0x2c,0xc3,0xdb,0x24,0x93,0xc3,0x9f,0x9a, - 0x48,0x09,0x3a,0x8f,0x07,0xfc,0x7f,0x4d,0x32,0x34,0x72,0xe8,0x63,0xf5,0xb8,0x99,0x95,0xf2,0x32,0x92, - 0xa7,0x36,0xec,0xe1,0x41,0x99,0x9d,0x43,0x8f,0xce,0x03,0x9a,0x8c,0xb8,0x5a,0xf0,0x09,0xe4,0xa9,0x85, - 0x3d,0x63,0x38,0x1e,0xa6,0x83,0xfa,0x2d,0xd8,0xb0,0x96,0x88,0x8b,0xd2,0x31,0x87,0x95,0xad,0x9c,0x77, - 0x1b,0xe7,0xb1,0x7b,0x8d,0xdf,0x78,0x8f,0xed,0x71,0x07,0xf9,0xdd,0x81,0x59,0x7e,0x37,0x80,0xca,0x5a, - 0xa8,0xf6,0x14,0x47,0x09,0xf3,0xcc,0xea,0xb0,0x21,0x1a,0xc3,0x07,0x18,0xd9,0x89,0x5d,0xe7,0x56,0xe0, - 0x04,0x6d,0x80,0x66,0x1d,0x9e,0x32,0x4c,0xc2,0xbf,0x81,0xef,0xf1,0xa3,0x67,0x2c,0xd1,0xb4,0x98,0xc9, - 0x0c,0x1a,0x0a,0xa2,0x97,0x46,0x07,0xf4,0x44,0xa2,0x70,0x24,0x03,0xbb,0xbe,0x4e,0x68,0xa3,0x67,0x2d, - 0xd0,0x80,0xde,0xc8,0x40,0x88,0x62,0xe0,0x33,0x59,0x46,0x4e,0xd4,0x34,0x1c,0x0f,0x80,0x4d,0x60,0x20, - 0xde,0x87,0x13,0x6c,0x07,0xd8,0x20,0x29,0x28,0x90,0x1a,0xbf,0x49,0x73,0xb6,0x2f,0xf0,0xbd,0xa3,0x78, - 0x99,0x1e,0x69,0x40,0xf1,0x82,0x01,0xb1,0x3d,0x59,0xc3,0x23,0xc0,0xb6,0x67,0x4d,0xed,0x26,0x81,0x7a, - 0x6c,0xa4,0x6e,0x92,0x14,0x6c,0x82,0x81,0x38,0x86,0x71,0xcb,0x1b,0x7f,0x9e,0x8b,0xfc,0x02,0x57,0x6e, - 0x81,0x6e,0x1b,0x0e,0x0b,0xc7,0xed,0x6e,0xd4,0x60,0xf0,0x67,0x7b,0x52,0x97,0xfc,0x2b,0x9d,0xa9,0x7b, - 0x20,0x72,0x9a,0x8e,0xc6,0xb7,0xf4,0xa2,0x75,0x33,0xae,0xb0,0x75,0x0f,0x2e,0x04,0xb0,0x8b,0xd8,0x02, - 0x9e,0xb5,0x31,0x8f,0x87,0xf1,0x7d,0xed,0x24,0x41,0x9b,0xeb,0xc4,0xb5,0x97,0x76,0xf9,0x80,0x4b,0x54, - 0x36,0x04,0x2d,0x46,0x45,0x54,0x86,0xe5,0x9e,0x04,0x6d,0xcc,0x38,0xba,0x66,0xde,0xb0,0xf0,0x2f,0xe1, - 0xbf,0xb8,0x1f,0x95,0x1b,0x40,0x47,0xc2,0x7e,0xa8,0x93,0x41,0x03,0x6a,0xc5,0x45,0xe6,0x7c,0x91,0xc3, - 0xe1,0xc0,0x91,0xf1,0x3d,0x11,0x38,0xd9,0x22,0x5c,0xd3,0x4c,0xf4,0x08,0x65,0xf8,0xe5,0x92,0xc0,0x7b, - 0xe6,0x7a,0x79,0xc8,0x38,0x24,0x5e,0x95,0x2f,0x3b,0xe1,0x4f,0x63,0x13,0xea,0xe0,0x06,0x36,0x27,0x5a, - 0x0c,0x0b,0x64,0x42,0xbc,0x4c,0x2d,0x85,0xd9,0x21,0xaf,0xae,0x34,0x44,0xb2,0x43,0x10,0x79,0xc4,0xcc, - 0x49,0x57,0x10,0x70,0x73,0x1b,0x18,0x54,0x8d,0x14,0x2a,0x67,0xa9,0x07,0x26,0xb5,0x81,0x25,0x1a,0x39, - 0x9c,0x0f,0x16,0x77,0x34,0x32,0xe8,0x44,0xc1,0x26,0xcd,0x2f,0x94,0x52,0xa3,0x96,0xc6,0x27,0x93,0x2a, - 0xb8,0xa6,0xf1,0x09,0x29,0x40,0x3d,0x8d,0xc4,0x74,0xe9,0x62,0xa1,0x66,0x2b,0x36,0xdd,0x22,0xa6,0xc6, - 0x77,0x9d,0xb8,0xe9,0x00,0xc9,0x8f,0x82,0xf0,0x56,0x31,0x58,0x50,0x99,0x39,0x97,0xd5,0xeb,0x44,0x33, - 0x3b,0x97,0x4e,0x2f,0x3d,0xe1,0x9d,0x8b,0x04,0x31,0x7b,0x4d,0x82,0x60,0x96,0x32,0xa9,0x98,0x69,0x21, - 0x68,0x75,0x9b,0xd4,0x5e,0x1a,0x9a,0xa5,0xfb,0x7d,0xd5,0x4c,0xd0,0x4e,0xfb,0x4e,0x42,0x9b,0x6c,0xbb, - 0x13,0x79,0x47,0x9e,0xe3,0x90,0xa1,0x77,0xb7,0x33,0xcf,0x61,0x23,0xcf,0xbd,0xce,0x3c,0xa7,0xa7,0x8d, - 0x4c,0x9f,0x76,0x66,0xa2,0xd3,0xb7,0x3d,0x52,0x3a,0xa3,0xee,0x7e,0x76,0xcc,0xd3,0xb5,0xbd,0x29,0xdc, - 0xd9,0x9a,0x2e,0xe8,0x20,0xb4,0x93,0xa0,0xef,0xbb,0xeb,0x29,0xa2,0x1a,0x08,0xd9,0x18,0xd4,0x0d,0xe6, - 0x48,0xce,0xd3,0x2e,0x53,0xba,0xfa,0x9c,0x36,0x50,0x3a,0xd0,0x07,0xb1,0xd1,0xd7,0x76,0x79,0x60,0xcf, - 0x38,0xc3,0xd8,0x55,0x56,0x4e,0x6e,0x3d,0xcb,0xda,0x35,0xe1,0x5d,0xe3,0x82,0xd0,0x40,0x1c,0x71,0x59, - 0x43,0xbd,0x0c,0x7a,0x82,0xf8,0xc7,0xfa,0x3f,0x14,0x7d,0x02,0x33,0xc3,0xcd,0xc2,0xe8,0x83,0x38,0x3c, - 0x0c,0x8d,0x13,0xa3,0xae,0x7e,0x6e,0xba,0xa7,0xe0,0x25,0xc2,0xa2,0xfc,0xa5,0x69,0xe8,0xf1,0x81,0xbb, - 0x9d,0x0d,0x0c,0x82,0x39,0x16,0x67,0x5e,0xf0,0x27,0xe7,0xe7,0x23,0xea,0x86,0x74,0x84,0xea,0xd5,0xf3, - 0xf5,0x11,0x05,0x44,0x78,0x62,0x8a,0xdc,0xfd,0x98,0x22,0x0d,0x99,0x8a,0x29,0x79,0x2f,0x74,0xef,0xde, - 0x3b,0xc6,0x92,0x2e,0x0d,0x7c,0x7f,0x44,0x13,0x0d,0xc1,0x8c,0x69,0xe2,0xb3,0x3f,0x51,0x52,0x0b,0x6a, - 0x4c,0xd1,0xf6,0xf2,0x7f,0x68,0x7d,0x6a,0xd0,0x80,0x67,0xa0,0x36,0x71,0xf3,0x81,0x53,0x64,0x44,0x38, - 0x07,0x3b,0x8b,0xf8,0x3a,0x42,0x30,0xed,0xc2,0xea,0xb3,0xe4,0x5e,0x10,0xee,0x26,0x33,0x8e,0x34,0x21, - 0xdd,0x46,0x93,0x9d,0xae,0xd7,0x0d,0xb5,0x51,0x39,0x33,0x1e,0x25,0x7f,0x82,0xda,0xd8,0xc2,0xc5,0x1f, - 0xee,0x3b,0xb4,0xcb,0x84,0x13,0x30,0x8c,0xce,0x8e,0xf9,0xe0,0xed,0xa2,0xe7,0xc4,0x45,0xf2,0xc0,0xd1, - 0x4d,0x56,0x22,0x3a,0xd6,0xde,0x53,0xc1,0xba,0x40,0xbb,0x04,0x76,0xca,0x43,0xe3,0x8f,0xdf,0xf7,0xe6, - 0x29,0x6e,0xe7,0x2c,0x4d,0x4b,0xd3,0xa6,0x3d,0xf8,0x7f,0xf1,0xf6,0x29,0x7f,0x96,0x7e,0x7c,0x89,0x6c, - 0xec,0xf5,0x2b,0x29,0xa1,0x57,0xa2,0x29,0x5d,0xa6,0xf4,0x69,0x40,0xe1,0xbd,0xbf,0x27,0x9f,0xaa,0x3c, - 0xfb,0xa9,0xc9,0xc6,0x34,0x6d,0x79,0x5b,0x1d,0x63,0xda,0xa5,0xc0,0x2d,0xa0,0x7f,0x72,0x7c,0xfc,0x89, - 0x10,0x1a,0xc9,0xec,0x08,0x3e,0x3f,0xab,0x18,0x2e,0xd5,0x86,0x5b,0x54,0xc2,0xdc,0x32,0x84,0x50,0x2a, - 0xd8,0x3e,0x24,0xdd,0x35,0xf0,0xc4,0x40,0xb8,0x57,0xc2,0x8d,0xea,0x5f,0x5c,0xb2,0xad,0x4e,0x83,0xcd, - 0xa9,0x8f,0xd4,0x0f,0xcf,0x1b,0xc7,0x50,0x86,0x39,0x2b,0xd6,0x76,0x23,0x3c,0x86,0xa6,0xd7,0x3f,0x74, - 0xea,0xc2,0xa9,0x61,0x07,0x99,0xbf,0x5e,0xef,0x89,0x07,0xf9,0x36,0xa5,0xcf,0xb0,0xba,0x45,0xfe,0x3b, - 0x40,0xd7,0x1a,0x17,0x26,0x87,0x33,0xc2,0x84,0xfa,0xee,0xf1,0x71,0x10,0x98,0xed,0x28,0x2c,0xd2,0x4e, - 0xc8,0x6b,0xb4,0x22,0x30,0xd7,0xc5,0x75,0x74,0xf6,0x5e,0xb2,0x1b,0xea,0x74,0x47,0x9c,0x4d,0x9e,0x25, - 0x37,0xda,0x66,0xd3,0xf3,0x55,0xd5,0x24,0x82,0x89,0x2d,0xd7,0x45,0xa2,0xa4,0x0e,0x18,0x8d,0x90,0x8f, - 0xa8,0x7c,0x67,0x9d,0x05,0xc2,0x4f,0x73,0xea,0x38,0xd3,0x21,0x1d,0x87,0xd5,0x6e,0xf2,0xba,0x38,0x6a, - 0xd6,0x21,0xc1,0x63,0x52,0xe3,0x7f,0x67,0x67,0x33,0xa9,0xf6,0x62,0xd0,0x6a,0x0a,0x7d,0xde,0xc1,0xc3, - 0x6d,0x01,0xbd,0xbe,0x4d,0xbe,0x65,0x43,0x9e,0x54,0xa4,0xa9,0x44,0x1b,0x9f,0x24,0xf7,0xc4,0x6f,0x17, - 0x1c,0x53,0xff,0xb7,0x13,0x8c,0x7a,0x71,0x4f,0x80,0x92,0x84,0xdb,0xb7,0xac,0xfe,0x2e,0xb8,0x35,0xfc, - 0xff,0x00,0x48,0xc1,0x72,0xbf,0x02,0x96,0x6d,0x79,0x41,0xcd,0x03,0x30,0xa2,0xd6,0x32,0xcf,0xab,0x98, - 0x26,0xef,0x22,0xcf,0x2f,0x88,0xac,0x5a,0xd2,0x59,0x37,0xcd,0xaf,0x38,0x8d,0xa7,0xe1,0x22,0xc9,0x11, - 0xe4,0xe3,0xe8,0x55,0xc9,0x3c,0x82,0x0e,0x49,0x70,0x6b,0xe4,0x56,0xbb,0xda,0xdf,0x74,0xcd,0x4d,0xbc, - 0x48,0x10,0x2c,0xfe,0xdf,0xc1,0xe6,0x9d,0x83,0x62,0x22,0x7b,0xa3,0xd8,0xa5,0x01,0x75,0xcd,0x48,0x1b, - 0x6e,0x69,0x75,0x89,0x7a,0x28,0xb6,0xfc,0x65,0xba,0xf8,0x00,0xdb,0x10,0xee,0x14,0xd8,0xd1,0x63,0x53, - 0x38,0xf1,0xe7,0xcb,0x97,0x7f,0xae,0x5d,0xed,0xfe,0xc1,0x69,0xdf,0x4a,0x9f,0x76,0x4f,0x8a,0xea,0x92, - 0x73,0x44,0xde,0xdf,0xbc,0x7e,0x05,0x25,0xa1,0xcd,0xff,0x01,0xad,0x9a,0x9c,0x29,0xd6,0xe4,0x01,0x00}; - -#endif +#ifndef __assets_js +#define __assets_js + +#include + +const uint8_t EmbeddedBundleJS[] PROGMEM = { + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb6,0x2e,0xfa,0x57, + 0x24,0x5c,0x1d,0x19,0x68,0x96,0x68,0xc9,0x4e,0xfa,0x74,0x40,0x23,0xbc,0xb6,0x6c,0xc7,0x4e,0x3c,0xc5, + 0x53,0x92,0x96,0xd9,0x5c,0x10,0x59,0x94,0x60,0x93,0x00,0x03,0x80,0x1a,0x22,0xf2,0xfe,0xf6,0xb7,0xbf, + 0x5d,0x23,0x40,0xc8,0x49,0xce,0x3a,0xeb,0x2d,0x2f,0x8b,0x40,0x55,0xa1,0xc6,0x5d,0xbb,0xf6,0x5c,0xbb, + 0xb3,0x55,0x3e,0xa9,0xb3,0x22,0x0f,0x6b,0x21,0xa3,0x9b,0xa0,0x38,0xfd,0x2c,0x27,0x75,0x90,0x24,0xf5, + 0xf5,0x52,0x16,0xb3,0x1d,0x79,0xb5,0x2c,0xca,0xba,0xda,0xdf,0xdf,0xca,0x59,0x14,0xd3,0xd5,0x5c,0x0e, + 0xd5,0x4f,0x5f,0x97,0x4b,0x64,0x18,0xc5,0x81,0xa9,0xd3,0x15,0x9e,0xca,0x59,0x96,0xcb,0xfd,0x7d,0xf5, + 0xdb,0x4f,0x17,0xd3,0xa1,0x7a,0x0c,0x4f,0x46,0xd4,0x6e,0x7c,0x5b,0xbb,0x43,0xfd,0xdb,0x4f,0xaf,0xb2, + 0x42,0xd5,0x5e,0xbb,0xe7,0x4d,0x58,0x9f,0x67,0x95,0xb0,0x43,0x88,0x6e,0x4a,0x59,0xaf,0xca,0x7c,0xc7, + 0x0d,0x2a,0xba,0x31,0xcf,0x3b,0x32,0x2c,0xa3,0x9b,0x6c,0x16,0xe6,0x27,0xe5,0x28,0xd2,0x05,0xf1,0x6c, + 0xfa,0x3e,0xb8,0x48,0xcb,0x9d,0x2c,0x41,0x52,0x72,0xa3,0xd3,0xe2,0x9b,0x8d,0xc8,0xa6,0x71,0x29,0xe6, + 0x45,0x3a,0x95,0xd3,0x78,0xf7,0x68,0x33,0xd0,0x9f,0xd6,0xf8,0x74,0x92,0xce,0xe7,0x61,0x66,0x6a,0x10, + 0x99,0x70,0xcf,0x32,0xa2,0x17,0xf5,0x59,0xb2,0x7b,0xe8,0x32,0x36,0x68,0x26,0x4f,0x6e,0x6c,0x45,0xb2, + 0xbf,0x48,0x68,0xf2,0xfb,0x93,0x24,0xa7,0xbf,0xcb,0x24,0x08,0x84,0x0c,0x0f,0x69,0x70,0x27,0xfe,0xda, + 0x88,0x3c,0xba,0xa9,0xed,0x34,0xe7,0xe1,0x51,0xb4,0x11,0xed,0xfc,0x60,0x55,0xc9,0x9d,0xaa,0x2e,0x33, + 0x9a,0xc9,0x81,0x1d,0x77,0x89,0x59,0x40,0xa3,0x32,0xc9,0xe5,0xe5,0x4e,0x4a,0xaf,0x22,0x4f,0x8a,0x30, + 0xed,0x2f,0xcb,0xa2,0x2e,0x30,0xe1,0xfd,0x52,0xfe,0xbe,0x92,0x15,0x40,0xc0,0xf4,0x0a,0xfd,0xad,0x65, + 0x3e,0x0d,0x73,0xe1,0x15,0x54,0xa3,0xb2,0x39,0xf4,0x96,0x6f,0xf4,0xb4,0x85,0xf7,0x22,0x51,0xd0,0xcf, + 0xfd,0x48,0xa4,0xf4,0xf3,0x6d,0x24,0xd0,0xcd,0x7f,0x46,0x62,0x92,0x94,0x61,0x15,0x0d,0x26,0xfd,0x87, + 0xbc,0x6e,0xa9,0x98,0xf4,0x27,0xa5,0x4c,0x6b,0x99,0xf8,0xcb,0xa4,0x9b,0x2d,0x69,0x36,0x17,0xb2,0x3c, + 0x93,0x61,0x25,0xea,0x88,0xc6,0x38,0xe9,0x1f,0xa7,0xf9,0x44,0xce,0xd1,0x00,0x55,0x6d,0x5e,0xdf,0x17, + 0x5f,0x64,0x8e,0xb4,0x6f,0x90,0x96,0x55,0xae,0xd0,0x21,0x12,0x68,0x59,0xba,0x6a,0x7f,0x53,0x16,0x8b, + 0xac,0x92,0xc8,0xa6,0x54,0x54,0x5e,0x2d,0xa9,0x2b,0x53,0x7c,0x47,0x1d,0x76,0xf3,0x3b,0x71,0xcf,0x7d, + 0x02,0xd4,0x74,0x35,0xaf,0x93,0xc9,0xdf,0x9a,0x70,0xd5,0x62,0x70,0xa2,0x00,0x7b,0xe7,0x61,0x59,0xa6, + 0xd7,0x23,0x82,0xef,0x64,0xa5,0x80,0x86,0x9a,0xb7,0x1f,0x64,0x5e,0x17,0xf3,0xd5,0x7c,0xbe,0x4b,0xdb, + 0xa0,0x63,0xc7,0xd5,0xee,0x8b,0xa2,0xa3,0x89,0xa7,0x3a,0xf3,0xb6,0x56,0x52,0xb5,0xc5,0xb1,0x03,0x6c, + 0x1b,0x17,0x45,0x36,0xdd,0x39,0xc4,0x73,0x44,0xe9,0xa6,0xc5,0x5d,0xdb,0xe2,0xfe,0x7e,0x58,0x27,0x27, + 0xf5,0x28,0x12,0x18,0x54,0x34,0x2b,0xca,0x50,0x81,0x2f,0x01,0x74,0x52,0xf7,0xe7,0x32,0x3f,0xab,0xcf, + 0x07,0xf9,0x83,0x6c,0x90,0xf7,0x7a,0x91,0x54,0x8d,0xa2,0x7a,0x51,0x9f,0xe4,0x23,0x91,0xd3,0x1a,0x0e, + 0xe4,0x9c,0x26,0xc9,0x7c,0x59,0xec,0x64,0xb4,0x75,0xa2,0xd7,0xdc,0x90,0x07,0x80,0xe7,0x69,0xf5,0xfa, + 0x32,0xa7,0xf5,0x59,0xca,0xb2,0xbe,0xd6,0x9d,0x17,0x45,0xb4,0xbf,0xdf,0xac,0xb4,0x18,0x89,0x82,0x2a, + 0x65,0xa0,0xab,0x14,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0x56,0xc9,0x56,0xa5,0x75,0xf1,0x8e,0xd6,0x26,0x3f, + 0x1b,0xb8,0x85,0xbd,0xc9,0x2a,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xd1,0x6a,0x36,0x93,0x65,0xbc,0x0d,0x2d, + 0xcd,0xb5,0x53,0xc5,0x5a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xb4,0x28,0x17,0x8f,0xd3,0x3a,0xed, + 0xaa,0x6b,0x95,0x2b,0x7c,0x37,0x75,0x93,0x6b,0x8a,0xef,0xef,0xd7,0x34,0x29,0x55,0x0d,0x08,0xf6,0x92, + 0x37,0xcd,0x0e,0x7e,0xcc,0xe4,0xe5,0x5f,0xac,0xd8,0xfb,0x6a,0x7f,0xdf,0x7b,0xa1,0x6d,0x82,0x5a,0x86, + 0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x5d,0xf7,0x4f,0xf5,0x57,0xe6,0xc9,0xef,0x98,0xf7,0x19,0xfa,0xa6,0xa6, + 0xb6,0xab,0x4b,0x15,0xe7,0xf8,0x70,0x4b,0xc5,0x5f,0xad,0x16,0xa7,0xdd,0xd3,0x9c,0x73,0x4e,0xab,0xb8, + 0x5a,0xcb,0x98,0x10,0x6a,0xf5,0xc1,0x8c,0xb0,0xe3,0xe3,0x1d,0x05,0xc0,0xb4,0x28,0xfc,0x15,0xcd,0x9b, + 0xfc,0xda,0x4a,0x22,0x7f,0x7b,0x09,0x9f,0x66,0xf3,0xaf,0x7e,0x85,0xfc,0x8e,0x85,0x9f,0x17,0xa7,0x5f, + 0xfb,0x0a,0xf9,0x1d,0x6d,0xe9,0x0f,0xe2,0x42,0x4d,0xa1,0x4c,0x17,0x5d,0xc3,0x02,0x46,0xd8,0xdf,0xa7, + 0x5d,0xde,0x5f,0x66,0x4b,0xc9,0x5f,0x7e,0x78,0xfb,0xe2,0x9d,0x4c,0xcb,0xc9,0xf9,0x9b,0xb4,0x4c,0x17, + 0xd5,0x5f,0x84,0x85,0xd6,0x57,0x2d,0x58,0x6b,0xe5,0xaa,0x65,0x4d,0xf3,0x69,0x5a,0x4e,0x1f,0x95,0xc5, + 0x65,0x25,0xcb,0x27,0xf9,0x45,0xbc,0x75,0xbe,0x86,0x5e,0x4b,0x76,0xd9,0xf2,0xf4,0x22,0x3b,0x4b,0xeb, + 0xa2,0x5c,0xaf,0x83,0xb7,0x32,0x9d,0xd4,0xaf,0xd2,0x3a,0xbb,0x90,0xd4,0x95,0xc4,0x66,0x61,0x6f,0x4e, + 0x57,0x13,0x8c,0xad,0xab,0xb3,0x97,0x59,0x3e,0x2d,0x2e,0xbb,0xf3,0xa6,0xc5,0x64,0xb5,0x90,0x39,0x2d, + 0x33,0xa1,0x92,0x27,0xe9,0xe4,0x3c,0x4e,0x05,0x1f,0x14,0xb6,0x7b,0x3b,0x75,0xd8,0x38,0xed,0xa5,0x28, + 0x3b,0x08,0x1a,0x1c,0xef,0x1d,0xb8,0x55,0x0e,0xf9,0xdc,0xaf,0x99,0x3a,0x00,0x45,0xc2,0xaf,0x72,0xe3, + 0x30,0x1e,0x51,0x02,0x25,0xa3,0xbd,0xb4,0x3c,0xe3,0x9e,0x54,0x06,0xfd,0x95,0x84,0xfe,0x4a,0x42,0x7f, + 0x69,0x68,0xb3,0x54,0x25,0xe6,0x2c,0xcd,0x37,0x42,0x1d,0x99,0x71,0xfb,0x00,0xd1,0x05,0x52,0xea,0xac, + 0xcd,0xe2,0x7e,0x83,0xba,0x48,0x72,0xea,0xe8,0x36,0x2d,0x25,0x87,0x55,0x88,0x8f,0x63,0xb9,0xa1,0x23, + 0x6b,0x23,0x68,0xb7,0x75,0xc2,0x50,0x4d,0xa7,0xfa,0x72,0x9e,0x4e,0x64,0x78,0xf7,0x3f,0x9f,0xaa,0x7f, + 0xdc,0x15,0x41,0x10,0xb9,0x24,0x4a,0xd9,0xe3,0xa4,0xcd,0xa6,0x79,0xae,0xb5,0x4e,0x35,0x87,0x3a,0x9b, + 0x85,0xda,0x94,0x16,0x4d,0xbd,0x9d,0x2a,0x90,0x19,0x8c,0x2d,0xc2,0xf6,0x5c,0x45,0x98,0x43,0x9a,0xb0, + 0xdc,0xce,0x1d,0xcd,0x1b,0x4f,0xb5,0x3f,0x75,0x96,0xc4,0xea,0xa7,0xcb,0xe5,0xfc,0x9a,0x47,0xbb,0xdd, + 0x4d,0xbb,0xd4,0xde,0xa0,0x77,0x77,0xeb,0xfe,0xa4,0x20,0x00,0x2f,0x09,0xca,0x8a,0xb2,0x73,0xfe,0x1a, + 0x25,0xfa,0x06,0x83,0x03,0xe7,0x75,0xa5,0x63,0xdf,0x76,0xcd,0x41,0xeb,0xc0,0xc6,0x49,0x89,0x54,0x02, + 0xfe,0xad,0x16,0x43,0x49,0xc7,0x6b,0x1f,0x74,0xc6,0x53,0xa2,0x07,0xeb,0x17,0x4f,0xba,0x97,0xb5,0x5f, + 0xcd,0xb3,0x09,0xd1,0xc8,0x04,0x01,0xea,0x31,0x3c,0x14,0x87,0x11,0xd5,0x88,0x41,0x8d,0x4d,0x7f,0x22, + 0x26,0x53,0xe5,0xe6,0x6f,0x11,0x23,0x20,0x93,0x0d,0x1d,0x53,0x11,0xb1,0xc9,0xef,0x59,0x5e,0xcb,0x72, + 0x22,0x97,0x34,0x5a,0x3a,0x17,0x35,0x05,0x18,0x33,0x89,0x28,0x4a,0x59,0x2d,0x69,0x32,0xa4,0x7a,0xdd, + 0x58,0x1a,0xef,0x9f,0x8a,0xc6,0xbb,0xa7,0x68,0xbc,0xa3,0xff,0x56,0x44,0xde,0xd1,0xbf,0x08,0xd4,0xb7, + 0xa9,0xc9,0xc6,0x6c,0x6d,0x9f,0x0a,0x4c,0x5b,0x14,0x9a,0xda,0xbb,0x59,0x95,0xf3,0xd8,0xc1,0xc0,0xe1, + 0x68,0x23,0xdc,0xdb,0xd1,0x28,0x8a,0x84,0x57,0x38,0x13,0x8d,0x01,0x89,0x9b,0x85,0xac,0xcf,0x8b,0x69, + 0x1c,0x9c,0xc9,0x3a,0xd8,0x80,0x6e,0xec,0xab,0x14,0x22,0x51,0xd4,0x03,0x91,0x02,0x2f,0x8a,0x4b,0x59, + 0x1e,0xa7,0x15,0xf1,0x0d,0x6a,0x0a,0x93,0x93,0x4a,0xa8,0xe3,0x83,0x08,0x95,0xc4,0x90,0x86,0x34,0xf2, + 0x62,0x7e,0x21,0xa9,0xcb,0x03,0x00,0xf4,0xd6,0x4c,0x99,0xc1,0xf5,0x35,0x1a,0x0a,0xfd,0x41,0xca,0xfe, + 0x2a,0xaf,0xce,0xb3,0x59,0x4d,0x88,0x7b,0xb6,0x9a,0xcf,0xb2,0xf9,0x5c,0x4e,0x05,0x36,0x22,0xb0,0x8d, + 0x9c,0x46,0xd8,0xb1,0x1d,0x35,0xaa,0xc9,0xbe,0xa5,0xca,0xe5,0xaa,0x3a,0xbf,0xbd,0xbe,0x81,0x34,0x5b, + 0x29,0xa2,0x8d,0xd7,0xaf,0xcf,0x25,0xc3,0x0f,0x77,0x22,0x12,0xf6,0xc9,0xc7,0x45,0x85,0x6d,0xe8,0x24, + 0x98,0xca,0xb9,0xac,0x65,0x20,0x78,0xea,0x44,0x70,0x4e,0x40,0x4a,0x3f,0xc5,0x12,0xcd,0x57,0xc1,0x48, + 0x34,0x00,0xde,0x2d,0x31,0x91,0x84,0x89,0x87,0xb0,0x1c,0x26,0xe3,0xd1,0xe9,0x29,0x0a,0xcd,0x7a,0xe5, + 0xeb,0x35,0x61,0x4f,0xb3,0x4a,0xb5,0xc0,0x5a,0x13,0xf2,0xa2,0x3d,0x1d,0x35,0x3a,0xb3,0x2c,0x2a,0x74, + 0x62,0xb9,0xe2,0xbf,0x69,0x3d,0x39,0xff,0xeb,0x3d,0x00,0xd2,0xfc,0x5a,0x1f,0xca,0xae,0x3e,0x88,0x29, + 0xc8,0xb5,0x5c,0x77,0xc5,0x6d,0xf3,0xf2,0x6f,0xec,0x2e,0xa0,0xa2,0xdd,0xa2,0xef,0xd1,0x29,0xea,0xec, + 0x6e,0xa6,0x9c,0x04,0xc7,0x05,0xad,0x79,0x5e,0x1f,0xbc,0xa7,0xce,0x07,0xa3,0x08,0xd0,0xdf,0x4e,0x4c, + 0xa4,0x22,0x6c,0x33,0x7f,0x93,0xf1,0x1e,0xbb,0x69,0x96,0x8c,0x03,0x20,0xc6,0x6c,0x92,0xa2,0x13,0x77, + 0xaf,0x0e,0x2e,0x2f,0x2f,0x0f,0x68,0x1a,0x17,0x07,0x34,0x2a,0x99,0x4f,0x0a,0xe2,0x39,0x69,0x1f,0x4c, + 0x92,0x9b,0x74,0x9a,0x2e,0x09,0xd2,0xe2,0xb0,0xeb,0x48,0xfd,0xf5,0xe5,0x8b,0x67,0x75,0xbd,0x7c,0xab, + 0x66,0x6a,0x88,0xfd,0xfd,0x2f,0x62,0xc5,0x3b,0x4a,0xd2,0xac,0x4f,0x64,0x45,0xd4,0x43,0xa8,0x0a,0x11, + 0x13,0x48,0xd3,0x55,0xa6,0x79,0x85,0x56,0x75,0x05,0xf1,0x49,0xe7,0x09,0x81,0xb3,0xad,0xd9,0x7b,0x2c, + 0xba,0xa3,0x96,0x19,0x69,0x22,0xc1,0xa3,0x2f,0x6d,0x5a,0xeb,0x55,0x11,0x4c,0xf6,0x15,0x84,0x99,0x2b, + 0x4a,0xf4,0x16,0xbd,0x0c,0xeb,0xb8,0x55,0x99,0x26,0x70,0x87,0x86,0xa6,0xe5,0xfc,0x16,0xe5,0x83,0xfc, + 0xb0,0x44,0x4f,0xff,0x74,0x62,0x07,0x93,0xf3,0xb4,0xac,0x64,0x9d,0xac,0xea,0xd9,0xc1,0xbf,0x02,0x80, + 0x8d,0xe1,0x33,0x68,0x9b,0x71,0xe5,0x8a,0x78,0xed,0xae,0xf3,0x73,0x55,0xe4,0x5b,0x55,0xfc,0xf8,0xee, + 0xf5,0xab,0xbe,0x42,0x90,0xd9,0xec,0x1a,0x9c,0x56,0x5c,0x6f,0x46,0xfe,0x0c,0x6b,0x74,0x7c,0xe2,0xef, + 0x06,0x70,0x6c,0x5b,0x58,0x35,0xaa,0xcb,0xeb,0x9b,0x3a,0xe1,0x1a,0x97,0x68,0x05,0x07,0xd8,0x04,0x7b, + 0x09,0x9f,0x6c,0xcc,0x16,0x41,0xed,0xd9,0x42,0x16,0xab,0x3a,0x3e,0x14,0x57,0x55,0x39,0x3b,0x2e,0x8a, + 0x2f,0x99,0x7c,0x95,0x2e,0x64,0x1c,0xfc,0xfa,0xee,0xed,0xd3,0x83,0xf7,0xaf,0x7f,0x7a,0xf2,0x2a,0xe0, + 0xbc,0x67,0x84,0x15,0x64,0xa9,0xf3,0x0e,0xfc,0xdc,0x45,0x7a,0xa5,0x97,0xf6,0x05,0x23,0xa1,0xf8,0xe0, + 0x48,0x5c,0xa4,0xf3,0x8c,0xf6,0x95,0x24,0x4a,0xb2,0x5e,0x75,0xd1,0xa9,0x3b,0xf5,0xf7,0xc9,0xbd,0xc3, + 0x43,0x3a,0x71,0x1f,0xdc,0x3f,0x3c,0xdc,0x6c,0x06,0x93,0xfe,0x39,0xb7,0x40,0x70,0x3e,0x29,0x16,0x0b, + 0xa2,0x8e,0x6f,0x1e,0x4e,0x80,0x1d,0xe3,0xad,0xa9,0x13,0x3b,0x35,0x91,0x52,0x77,0x89,0x88,0xc9,0xe8, + 0xf9,0x1f,0x77,0xff,0x11,0x6c,0xfe,0x1c,0xa1,0x35,0x91,0x88,0x6d,0x0d,0x28,0xe4,0xe6,0x6f,0xe3,0xa0, + 0xc6,0xe7,0x06,0xbb,0x54,0x51,0x03,0x7f,0xfc,0x99,0xa8,0x00,0x9b,0xbc,0xe4,0x2d,0x7e,0x3b,0x7d,0x65, + 0xfb,0x54,0xbb,0xba,0x14,0x96,0x23,0x8a,0x9a,0xc8,0x84,0x92,0xc0,0xee,0xc3,0x72,0x69,0xce,0x34,0x62, + 0x34,0x64,0x33,0x85,0x31,0x8c,0x24,0x2a,0x52,0xa8,0x39,0x61,0x89,0x15,0xf5,0xf3,0xcf,0x48,0x07,0xd7, + 0x39,0x81,0xdd,0xfe,0x9d,0x3a,0xf2,0x8f,0xcc,0x99,0x7f,0x5f,0x9f,0xf9,0xdf,0x28,0xce,0xfb,0xe8,0x10, + 0xac,0xf7,0xd7,0xa8,0x79,0xf5,0xdb,0x3f,0xad,0x8b,0xb4,0xf1,0xd2,0x3f,0xa5,0xe7,0x50,0x25,0xd0,0x1e, + 0xa6,0xaa,0xbe,0xed,0x9e,0x0e,0x47,0x6a,0x11,0x31,0xa2,0xcf,0xe9,0xd0,0xc3,0xfd,0x73,0x25,0xde,0x9a, + 0xd1,0x69,0x0f,0x7c,0x2e,0x96,0xf4,0xa0,0xd7,0x68,0x50,0xfa,0x98,0x66,0x16,0x41,0x02,0xc9,0x73,0xb1, + 0x6c,0xe3,0x5e,0x1e,0xf6,0x94,0x49,0xd7,0x26,0x5e,0x14,0xe7,0x49,0x50,0xe4,0xa0,0xde,0xae,0x89,0x6f, + 0xaa,0x25,0xed,0xdd,0xfc,0x8c,0x00,0xec,0x22,0xd9,0x3d,0x1a,0x60,0x0b,0x76,0xf0,0x42,0x6a,0x50,0x44, + 0xb9,0xe9,0xe1,0xfe,0xfa,0xb8,0x58,0x10,0xc0,0xea,0x1a,0x89,0x46,0xbc,0xcc,0xea,0xf3,0xe3,0x52,0x4e, + 0xa9,0xfd,0x2c,0x9d,0x57,0x41,0x96,0xef,0x4c,0xd7,0x6b,0x42,0x43,0x7d,0x42,0x34,0x34,0x19,0xa1,0xea, + 0x49,0xe7,0xe7,0xaa,0x43,0x90,0x2c,0x72,0x27,0x0e,0xc5,0xb4,0x5f,0xe4,0x84,0xa1,0xcf,0x88,0x8e,0xf0, + 0xa6,0x8d,0x36,0x3b,0xe7,0xe8,0x6d,0xde,0xc8,0x00,0xac,0xa6,0x2b,0x22,0xc7,0x79,0xe2,0x16,0x89,0x7a, + 0xeb,0x13,0x14,0x94,0x39,0xed,0x72,0xea,0x60,0x20,0xce,0x4c,0xea,0x32,0xad,0xaa,0xcb,0xa2,0x9c,0x22, + 0x75,0xb0,0xec,0x3f,0xa4,0xb4,0xa2,0xcc,0xfe,0xe0,0x3d,0x99,0x04,0x8f,0xd2,0x2a,0x9b,0xec,0x04,0xbd, + 0x55,0xb8,0xe8,0xd1,0xb9,0xd4,0x3b,0x8b,0x36,0x34,0x29,0xd4,0xf0,0x92,0x08,0x11,0x8f,0xfc,0xf2,0x00, + 0x53,0x14,0x6a,0x9c,0xd4,0x89,0x25,0x63,0x5f,0xfb,0xf0,0x4e,0x96,0x34,0x1d,0xd9,0x1f,0x44,0xe6,0x8a, + 0x5d,0x02,0x2c,0xfa,0x50,0xf7,0xbe,0x36,0x4f,0x62,0x7a,0x72,0x3e,0xf2,0x07,0x83,0xd6,0x08,0xd4,0xbf, + 0xa1,0x0d,0x30,0x65,0x22,0xfb,0x1a,0x88,0x87,0xc6,0x70,0x81,0x1d,0x00,0xd9,0xd6,0xb4,0x5f,0x31,0x2a, + 0x5a,0xaf,0xa7,0x96,0xd6,0x22,0xfc,0xbf,0xbf,0x7f,0xa8,0xbf,0xb1,0x49,0x44,0x97,0x4d,0xe5,0xd5,0x6b, + 0x5a,0xd4,0x19,0x64,0x02,0x41,0x14,0xa9,0x19,0xa2,0x71,0x12,0x3a,0x79,0x38,0x9f,0x1b,0x44,0xac,0x30, + 0xa2,0x5a,0xb7,0x61,0x4a,0xc3,0xed,0xcc,0xc6,0x79,0xc0,0x72,0xab,0x32,0xb9,0x61,0x4a,0xa3,0xb6,0x8d, + 0x01,0xe8,0x88,0x0d,0x00,0x32,0x03,0x87,0xdc,0xcc,0x18,0xba,0x4e,0xc5,0xee,0xf1,0x3d,0x95,0x15,0x6a, + 0x24,0xf1,0xd1,0xbd,0x7b,0xf7,0x13,0x37,0xb2,0xe1,0xbd,0xc3,0x6f,0x62,0xf3,0xa2,0xcb,0xa0,0xf8,0x56, + 0xb9,0xe0,0x55,0xb1,0xa3,0xe1,0x3e,0xb0,0x1f,0x70,0xc5,0x7a,0xc3,0xc4,0xb9,0x20,0x2e,0x68,0x96,0x9d, + 0x11,0x89,0x64,0x58,0x82,0xe9,0x66,0x90,0x61,0x9b,0x11,0xf2,0x11,0x04,0x97,0x34,0xa0,0x8d,0x02,0x2d, + 0x59,0x96,0x45,0xe9,0xaf,0xc5,0x3c,0x9c,0x84,0xc1,0x2b,0x59,0x13,0xb8,0x7c,0xd9,0x79,0x82,0xdc,0x40, + 0xd4,0x82,0xa7,0x60,0x1a,0xd9,0x8f,0x6f,0x03,0x4b,0xfe,0x5a,0xa7,0xef,0xd0,0x2e,0x0a,0x7a,0x76,0xd5, + 0x7b,0xc1,0xa2,0xda,0x91,0x57,0x13,0x29,0x41,0xda,0x50,0x9d,0xc1,0x93,0xe3,0xd7,0xaf,0x5e,0x3d,0x7c, + 0xf4,0xfa,0xed,0xfb,0x27,0x8f,0x83,0x46,0xed,0x65,0xbf,0x4b,0x8a,0x11,0xea,0xa5,0xbc,0x06,0xce,0x22, + 0x36,0x66,0x9c,0x10,0x10,0xb6,0xb6,0xa1,0xdb,0x81,0x11,0xd8,0xc1,0xe6,0xb1,0x38,0xbc,0x66,0xe8,0x0a, + 0xdb,0xe9,0x51,0xac,0x98,0x88,0xc1,0x98,0xc0,0x6d,0x79,0xa2,0xb2,0xdd,0x89,0x39,0x4a,0xc6,0xbc,0x23, + 0x02,0x3a,0xef,0xf5,0x06,0x56,0x99,0x0c,0x3b,0x40,0xe3,0x06,0xcf,0x2f,0x5b,0xfc,0xad,0x15,0x6d,0xcd, + 0x08,0x50,0x26,0x1a,0x59,0x01,0xc1,0x04,0x1a,0xd7,0x7b,0x1c,0xcd,0xd0,0xa2,0x35,0x39,0xc2,0xba,0xb6, + 0xda,0xa2,0xd5,0xab,0xd5,0x09,0xd5,0x1a,0x31,0x75,0x79,0xda,0x4e,0x4b,0xb0,0xf3,0x9a,0x00,0xc9,0x44, + 0xc5,0xb4,0x91,0xd4,0x02,0x59,0x4d,0x62,0x28,0xf9,0x72,0x80,0x93,0x7a,0x1b,0xac,0xa3,0xfa,0x9c,0x96, + 0x83,0x78,0xd7,0x4e,0xa6,0xbc,0xc8,0x1f,0x17,0x97,0x8c,0xd6,0xde,0x68,0x5c,0x46,0xc8,0xba,0x9f,0x4e, + 0xa7,0x4f,0x2e,0x40,0x5e,0x64,0x15,0x8d,0x9f,0x46,0x12,0x18,0x4c,0x47,0x50,0xd0,0xf1,0x4d,0x24,0x6e, + 0xa9,0xfc,0xc3,0xb2,0x5d,0xf5,0x8a,0x53,0xdc,0xd3,0x9f,0xb6,0xd5,0xac,0x02,0x73,0x34,0x71,0xba,0x08, + 0x96,0x1f,0xb8,0x57,0x30,0x2a,0xcc,0x4f,0x32,0x43,0xe6,0x9f,0x65,0x53,0x9e,0xf3,0xf4,0x94,0x0e,0x39, + 0x42,0x85,0x90,0x0b,0x6a,0xc8,0xc5,0x02,0xf9,0x6b,0x1e,0xce,0x54,0xb2,0xc0,0x7a,0xd2,0x49,0x39,0xfb, + 0x1b,0x67,0x37,0x9d,0xca,0xb7,0x50,0x16,0xf8,0x44,0x73,0xf3,0x7d,0xb5,0xd3,0xfb,0x4d,0x82,0x6d,0x90, + 0x6b,0xb4,0xb0,0xbf,0x9f,0xed,0xef,0xef,0x66,0xa1,0x79,0x8f,0x86,0xc4,0x45,0x85,0x81,0x06,0xac,0x9d, + 0x59,0x4a,0x28,0x72,0xba,0x03,0xe0,0xd9,0x51,0x05,0x76,0x40,0x1f,0xd3,0xae,0x35,0x1f,0x08,0xd3,0x82, + 0xc2,0x00,0xb9,0xd5,0x32,0xe5,0xa0,0x6f,0xc3,0xfc,0xaf,0x8f,0xe6,0xe8,0xf6,0xd1,0x08,0x62,0x96,0xd4, + 0x88,0x52,0x3e,0x32,0x19,0xeb,0x80,0x7b,0xb7,0x0a,0xa5,0xd4,0x16,0xfb,0x9f,0x48,0xba,0xc0,0x59,0x12, + 0xb7,0xe3,0x84,0x6a,0x6a,0x48,0x09,0x65,0x80,0xc0,0xea,0x63,0xcc,0x49,0xae,0x36,0x8c,0x92,0x7a,0x94, + 0xde,0xe6,0x49,0x32,0x51,0xff,0x3d,0x51,0x8d,0x51,0x0a,0x32,0xb3,0xf1,0xe1,0xed,0xf3,0xe3,0x62,0x41, + 0x35,0x11,0x54,0x86,0xb5,0x27,0xbd,0xfb,0xaf,0x6f,0x0e,0xef,0x9e,0x65,0x22,0xf8,0xbf,0xbe,0x48,0xef, + 0xbf,0xee,0x3f,0xe4,0xc4,0xb8,0x91,0x78,0xef,0x9b,0xbb,0x67,0x22,0xd8,0x6b,0xa6,0x1d,0x73,0x41,0xd1, + 0x4c,0x3c,0x44,0xc1,0x5e,0x23,0xed,0xdb,0x47,0x5c,0xf0,0xa4,0x99,0xf8,0x98,0x13,0x47,0x41,0xe4,0xe9, + 0xfe,0xbe,0x02,0x6e,0x84,0x11,0x76,0xa5,0xd1,0xb8,0xd6,0xbc,0xaa,0x05,0x28,0xa7,0x3c,0x02,0x61,0x29, + 0xb5,0x86,0x88,0x12,0xb2,0x0e,0xc6,0x4c,0x46,0x54,0x4a,0x7a,0x2c,0x16,0x97,0xd6,0x0b,0x7e,0x32,0x1a, + 0x64,0x16,0x7f,0xca,0xd6,0xe2,0x76,0x69,0xb9,0xc0,0xc1,0x1a,0xee,0x90,0xd9,0xf4,0x50,0xf6,0x92,0xe0, + 0x84,0x86,0x22,0xfc,0x74,0x22,0xc0,0xb4,0xda,0x2b,0xeb,0x22,0xc3,0xc1,0x7b,0xf5,0x95,0xb6,0x81,0x19, + 0x4b,0x50,0x27,0xc5,0xf3,0x77,0xaf,0x4d,0x17,0xe3,0xcc,0x67,0x02,0x59,0xce,0xb5,0xcd,0xe1,0x41,0xad, + 0x0a,0xc9,0x0e,0x21,0xe7,0xa8,0x17,0x24,0x41,0x8f,0x35,0x6c,0x10,0x45,0x80,0xe0,0x4e,0xfb,0x9f,0x8b, + 0x2c,0x0f,0x83,0x7d,0x9a,0x64,0x3d,0x73,0x05,0x2a,0xea,0x25,0xe1,0xc1,0x11,0xd4,0x1d,0x8e,0x54,0x19, + 0x06,0xd1,0x90,0xfe,0xc4,0x28,0xdb,0x2b,0xa2,0x3f,0x07,0xb8,0x06,0x81,0x7f,0x12,0xa4,0xa0,0x66,0x83, + 0xd4,0x27,0xeb,0xe8,0xdd,0x1c,0x38,0x4a,0xb8,0xe4,0x25,0xf0,0x09,0x24,0x02,0x59,0xa7,0x67,0xf8,0xb9, + 0x5a,0x66,0x04,0xec,0xf4,0x34,0x23,0x84,0x07,0x86,0x4b,0xf1,0x4f,0xd9,0xec,0x60,0x51,0x4c,0xb3,0x59, + 0x26,0xa7,0x07,0x55,0x46,0x68,0x51,0xa5,0xad,0xf2,0xad,0xd4,0x79,0x5a,0xd5,0xb6,0x2c,0xde,0x8b,0x89, + 0xe9,0x03,0x71,0x97,0xe0,0xbe,0x2f,0xe9,0x20,0x47,0x0b,0x84,0x52,0xaf,0xae,0x0f,0xda,0x1d,0x2d,0x25, + 0xf1,0xf4,0x74,0x9c,0xe2,0x89,0x8e,0xa9,0x83,0x74,0x56,0xf3,0x1b,0x88,0xd9,0x03,0x1a,0x1b,0x51,0x3a, + 0xa3,0x5b,0xd8,0x0a,0x16,0x03,0xd2,0x06,0x2f,0x88,0xb3,0x71,0xfa,0xf8,0x9a,0xb8,0x76,0xb7,0xea,0xfd, + 0x8a,0x18,0xd0,0x3a,0x0c,0x3e,0xe5,0x04,0x23,0x2d,0xee,0xbb,0xf0,0x97,0x81,0x76,0x9d,0x90,0x09,0x71, + 0x65,0x65,0xb6,0xc0,0x67,0xab,0x53,0x9a,0xef,0xf0,0x90,0xd0,0x4e,0xd4,0x3c,0xab,0x45,0xbe,0x55,0xaa, + 0xe8,0x1d,0x11,0x40,0xa8,0xc3,0x33,0xa5,0x23,0x9c,0x50,0xaf,0xad,0x58,0x46,0xdf,0x27,0x87,0x7a,0xf7, + 0x0c,0x90,0x99,0x80,0x94,0x38,0x98,0x30,0x01,0xc2,0xa4,0xc0,0x90,0xbf,0x19,0xe2,0x4f,0x7c,0x32,0x8a, + 0x80,0xa1,0x68,0x0a,0xc3,0x93,0x7c,0x14,0xc5,0x36,0xa7,0x17,0x08,0xa0,0xe6,0x38,0x07,0xc3,0x9b,0x52, + 0xc6,0x5f,0x87,0x12,0x6f,0xf6,0x6e,0xa3,0xad,0x86,0xbe,0x1e,0xc0,0xe9,0x63,0xac,0xe1,0x41,0x6d,0xc5, + 0x8f,0xbc,0x03,0x69,0x00,0x0f,0x6b,0x6a,0xe7,0x74,0x45,0x3b,0x28,0x38,0xa7,0x25,0x0c,0x60,0x4b,0x40, + 0xe8,0xb2,0x8f,0x17,0x6c,0xbb,0x5b,0x8a,0xdc,0xe0,0x29,0x56,0xc5,0x04,0x0b,0x03,0x27,0xc5,0x9c,0xde, + 0xcd,0xe3,0xd0,0x3d,0x3a,0x8c,0x15,0x2b,0x4d,0x47,0x4c,0x5c,0x0d,0xc0,0x13,0x9f,0xd3,0x8f,0xa8,0x18, + 0xcf,0xc4,0x68,0x0b,0x0f,0x43,0xf3,0xe0,0xeb,0x4d,0x86,0xee,0xcb,0xb4,0x42,0x59,0xfc,0x0c,0xd5,0x8f, + 0x57,0xee,0xff,0x34,0x1a,0x00,0x0f,0xa5,0x1b,0xc1,0xa3,0xc0,0xdc,0xa1,0x8f,0xf4,0x23,0x96,0x69,0x7d, + 0xce,0xf9,0xc1,0x5d,0x2c,0x1e,0xa5,0xea,0x84,0x3e,0x84,0x42,0x0f,0xeb,0xf0,0x30,0x1a,0xba,0x44,0x94, + 0xea,0xb9,0x57,0x25,0x88,0xa7,0xb5,0x4a,0xee,0x86,0x8b,0x2a,0x93,0x6b,0x9a,0x20,0x90,0x6d,0xd1,0xdd, + 0xac,0x5f,0x43,0xda,0xe9,0x34,0x6d,0x00,0xff,0x87,0x80,0x7e,0x6c,0x72,0xa3,0x3c,0xd3,0x86,0x17,0x4f, + 0xe6,0x12,0x6f,0x61,0x90,0x06,0xf6,0x9c,0xa4,0x35,0xd2,0xbc,0x78,0xdf,0xec,0x40,0xbd,0x16,0x4e,0xfa, + 0x60,0x28,0x07,0x05,0x05,0x8c,0xeb,0x72,0x42,0x7f,0xf4,0x27,0xce,0x9d,0xdd,0x88,0x99,0x7f,0xa6,0x52, + 0xcd,0x0b,0x20,0x1a,0xf3,0xc1,0x89,0x78,0xd8,0x6c,0x08,0x4f,0x6e,0x69,0x16,0x77,0x0f,0xbf,0x7e,0x46, + 0x7b,0x3a,0x1f,0xad,0xd5,0x58,0x10,0x29,0x46,0xbb,0x3c,0x09,0x54,0x87,0x76,0x80,0xa6,0x88,0x57,0xae, + 0x76,0x52,0xea,0x4b,0xce,0xa4,0xcd,0x0e,0x66,0x36,0x9d,0x00,0x2d,0x6c,0x14,0x54,0x07,0x0f,0x1f,0x1d, + 0x3f,0x7e,0xf2,0xf4,0x87,0x67,0xcf,0x7f,0xfc,0xe9,0xc5,0xcb,0x57,0xaf,0xdf,0xfc,0xfc,0xf6,0xdd,0xfb, + 0x0f,0x1f,0x7f,0xf9,0xf5,0xb7,0x7f,0xa7,0xa7,0x13,0x62,0xe7,0xcf,0xce,0xb3,0xcf,0x5f,0xe6,0x8b,0xbc, + 0x58,0xfe,0x5e,0x56,0xf5,0xea,0xe2,0xf2,0xea,0xfa,0x8f,0xc3,0xa3,0x7b,0xf7,0xbf,0xf9,0xf6,0x9f,0xff, + 0xfd,0xaf,0xef,0x7a,0x77,0x93,0x60,0x90,0x3b,0x59,0xb4,0x23,0x3c,0x84,0x97,0xaa,0x48,0x83,0x6f,0x1b, + 0x49,0x58,0xc4,0x24,0x78,0xae,0xfa,0x75,0x6c,0xba,0x65,0x38,0xa5,0x4e,0x24,0x65,0xd4,0x6a,0x12,0x24, + 0x4c,0xa2,0xa7,0xbd,0x86,0x30,0x86,0xa0,0xad,0x4a,0x0e,0x61,0x5f,0x33,0x28,0x2c,0xf4,0xac,0x2b,0x9c, + 0x5e,0x93,0x84,0x4e,0x14,0x51,0xfd,0x17,0x11,0x4e,0x69,0x2f,0x99,0x98,0xdc,0x7f,0xde,0xdf,0x97,0xdf, + 0x7f,0xff,0xaf,0x03,0xca,0xf8,0xc7,0xbf,0x22,0x46,0x37,0x61,0x96,0xa8,0x8f,0x8f,0xa9,0xb7,0x54,0xa4, + 0xea,0x25,0xfd,0xff,0xfe,0x36,0x8a,0xbe,0xbf,0xf7,0xed,0xb7,0x9a,0x60,0xc7,0xe8,0xf2,0x81,0x4c,0xe4, + 0x83,0x07,0xff,0x5a,0x67,0xe6,0x38,0xfa,0x5f,0x46,0x20,0x37,0x97,0x65,0xd6,0x50,0xde,0x1b,0xaa,0x8d, + 0x90,0xd5,0x8d,0xb2,0xf6,0xa0,0xd3,0xbe,0xd2,0xda,0x10,0x3e,0x30,0x3b,0x68,0x24,0xa2,0x16,0x98,0xff, + 0x53,0xd6,0x06,0x04,0x98,0xfb,0xfb,0xfa,0x13,0x73,0x52,0xd1,0x77,0x18,0x0f,0x9f,0xdd,0x39,0x30,0xf3, + 0x0f,0x2f,0xdf,0x5b,0xe9,0xad,0xf0,0x20,0x3b,0xf3,0xbe,0xc5,0xfe,0xa3,0x0f,0xb3,0x46,0x81,0xc2,0x2b, + 0x30,0x65,0x01,0x0d,0x15,0x29,0x20,0xb8,0x20,0x20,0x4f,0x5d,0x5e,0x25,0x27,0xab,0x12,0x52,0x6f,0xb7, + 0x0b,0x19,0x77,0x27,0x95,0x3e,0xe3,0x07,0x3b,0x74,0xc8,0x0b,0x30,0x97,0xf1,0xd6,0xe9,0x94,0xb4,0x3e, + 0xea,0x2f,0x98,0xcf,0xc2,0x10,0xde,0xca,0xb3,0x27,0x57,0xcb,0x30,0x08,0xff,0xb3,0x1e,0x7c,0xfa,0x54, + 0xfd,0x23,0x0a,0x89,0x61,0x26,0xf2,0x2d,0x09,0x4f,0xfe,0x33,0x18,0xfd,0x23,0x0a,0x9c,0xd2,0x47,0x12, + 0x7f,0xb8,0x3d,0x57,0x27,0xf7,0x47,0x4a,0x3e,0x81,0xc6,0x17,0xc5,0x45,0xd3,0x08,0x82,0x77,0x17,0x2f, + 0x0a,0xad,0x05,0x81,0x1a,0x66,0xac,0x9f,0x17,0x97,0x61,0x74,0xf0,0xaf,0x7f,0x7e,0x23,0xbf,0x25,0x6a, + 0x3a,0x6e,0x2f,0x1a,0x64,0x4e,0xcd,0x71,0x34,0xd4,0xa4,0xdb,0xed,0xd0,0x07,0x7f,0x83,0x3c,0xd6,0x9d, + 0x3a,0x27,0xf0,0x99,0x43,0x5a,0x7c,0x32,0xf2,0x09,0x50,0x5f,0x03,0x49,0x15,0x74,0xeb,0xab,0x1b,0x15, + 0xa8,0x05,0xba,0xb1,0x9a,0x35,0x96,0x79,0x28,0xcd,0x9a,0x52,0xae,0x37,0x0a,0x2b,0x4a,0xe8,0xe0,0x08, + 0x12,0x06,0xd7,0x12,0x97,0x4f,0xb6,0x26,0xce,0x7c,0x45,0x44,0x24,0xc8,0xb6,0x56,0x92,0xe6,0xf7,0x1a, + 0x15,0x69,0x8a,0x23,0x69,0x52,0x99,0x96,0x0e,0xf1,0x6b,0xf0,0x6c,0x05,0x2c,0x99,0x2b,0x89,0x01,0xa5, + 0x57,0x62,0x11,0xff,0x87,0x7a,0x2c,0x98,0x17,0x7e,0x85,0x9f,0x65,0x54,0xf0,0x7c,0xa6,0xb9,0x3f,0x39, + 0x0d,0xa3,0xb6,0xe1,0xdf,0xd1,0x77,0x4a,0x42,0x0c,0x0b,0x3c,0x6b,0xfa,0x47,0xaf,0x47,0x10,0x10,0xd3, + 0xef,0x2d,0x3c,0x82,0x67,0xfa,0x57,0x83,0x8d,0x3a,0x4d,0xb5,0x74,0x6e,0x77,0xa2,0x85,0x31,0xcc,0x67, + 0xd1,0x43,0xb2,0x0a,0x6d,0xb6,0xd0,0x72,0x1a,0x61,0x45,0xbd,0x4e,0xe8,0xcb,0x9a,0x3e,0x25,0x0b,0x4e, + 0x20,0x6a,0x64,0xa1,0xb0,0xcd,0x85,0xbe,0xa6,0xa5,0xb9,0xf2,0x6b,0x31,0xe6,0x87,0x36,0xa5,0xaf,0x54, + 0x12,0xba,0x52,0x2b,0xfb,0xd7,0x92,0xcd,0x51,0x33,0x1d,0x6f,0x3e,0xd3,0x70,0x9b,0x82,0xb5,0x43,0xcb, + 0x00,0x0a,0x1b,0x0d,0xf9,0xea,0x06,0x5a,0x5e,0x23,0xbb,0xb7,0x2d,0xcb,0xd1,0x06,0xca,0xf0,0xbe,0x56, + 0xed,0xad,0xd7,0x95,0x79,0x8c,0xc0,0x22,0x36,0xe5,0x0d,0xb2,0x39,0xbb,0xd2,0x4c,0x8a,0x7a,0xa0,0xf7, + 0xce,0x49,0x51,0xbc,0x2b,0x15,0xdf,0x88,0x8e,0x9a,0x52,0x7a,0xa6,0x23,0x46,0x55,0x08,0xfb,0x3c,0xc3, + 0xec,0x82,0x9b,0x72,0xca,0x6c,0xdb,0x52,0x23,0x45,0x78,0xef,0x5f,0x6b,0x9b,0x56,0xd6,0x69,0xe4,0x99, + 0x91,0x92,0x7f,0x4b,0x75,0xf1,0x15,0x76,0xd4,0x4c,0x88,0x5d,0xa4,0xbc,0x41,0xe2,0xd4,0x89,0xc2,0x18, + 0x9b,0x6d,0x4e,0xea,0x2f,0x08,0x0c,0x2c,0x21,0x13,0xee,0xd6,0xeb,0x35,0x0c,0x37,0xc6,0xc7,0x0f,0x5f, + 0x1d,0x3f,0x79,0x31,0x1e,0xff,0x0f,0xc4,0x0f,0xa6,0xb6,0xbb,0xff,0x09,0x4f,0xd2,0x83,0x3f,0x46,0xf8, + 0xf3,0x69,0xfa,0xa9,0xf7,0xe9,0xe0,0x53,0x7f,0xf4,0x8f,0x38,0x1a,0x7e,0xba,0xfb,0xe9,0xae,0xa1,0xfd, + 0xea,0xff,0x91,0x7c,0xc3,0x49,0x1c,0x86,0x9e,0xc1,0xd0,0xa7,0xbb,0x3d,0x45,0x33,0xf7,0x40,0x80,0x4a, + 0x9f,0x22,0xbe,0xdb,0x53,0xb4,0xee,0x9f,0x4c,0x4e,0xd3,0x3a,0xa7,0x41,0xaa,0xd5,0x9b,0xbc,0xc3,0x48, + 0x33,0xd9,0x3a,0x33,0x02,0x65,0xd4,0x1b,0xf4,0x42,0xff,0x73,0xe2,0x74,0x21,0x19,0xf6,0x52,0x62,0x58, + 0x31,0x35,0xc8,0x2c,0x37,0xe9,0xd0,0x8f,0x78,0x66,0xd3,0x7f,0x0b,0x1f,0x42,0x92,0x69,0x85,0x89,0xbb, + 0x9e,0x86,0xd5,0x52,0x45,0x90,0x6a,0x2a,0x81,0x13,0x91,0x17,0x74,0xcc,0x13,0xe1,0xbd,0xb3,0x58,0x55, + 0xf5,0xce,0xa9,0xdc,0x49,0xad,0x6d,0x54,0x3f,0xd0,0x16,0x27,0x03,0xee,0xb5,0x96,0x0c,0x26,0x9d,0xda, + 0x2c,0x58,0x7c,0xd0,0x04,0xa9,0x0f,0xf2,0x04,0x1f,0x0c,0xea,0x46,0x36,0xc4,0x68,0x69,0x05,0x84,0x14, + 0x9a,0x47,0xae,0x2a,0xe3,0xfd,0x68,0xd3,0x20,0x47,0x70,0x18,0xfa,0x7e,0xf3,0x78,0x6c,0x23,0xf3,0x96, + 0x3e,0x45,0x1b,0x50,0x70,0x35,0x6a,0xb0,0x5e,0x0a,0x4e,0xad,0xaa,0x58,0x95,0x13,0xe9,0x7f,0x85,0x96, + 0x0c,0x93,0x77,0x53,0xe3,0xc4,0x60,0xd3,0xa1,0xb2,0x81,0x8a,0xea,0x04,0xa7,0xaa,0x3a,0x55,0x18,0x7e, + 0x6e,0x3d,0xa9,0xfe,0xc6,0xde,0xd8,0xe9,0x40,0x51,0xc6,0x70,0x8c,0xe5,0x8e,0x12,0xb6,0x63,0x50,0x7c, + 0xb6,0x5b,0xb8,0xdd,0xd7,0xa1,0x43,0x9b,0xf9,0xbf,0xe4,0xee,0x20,0xe1,0xc0,0xf0,0x71,0x25,0xbb,0xdd, + 0x17,0xba,0x81,0xb1,0xee,0xb4,0x77,0x5d,0xaf,0x31,0x3a,0xb6,0x7c,0xf5,0x8c,0x1e,0xdb,0x25,0x95,0xd0, + 0xcb,0x88,0xc2,0x36,0xcd,0x5d,0x69,0x78,0xae,0x66,0x25,0xbe,0xf9,0xfa,0x96,0x79,0xc1,0x7a,0xbd,0x6d, + 0xaf,0x4b,0x69,0xd5,0xf5,0xe2,0xb4,0x98,0x37,0xd3,0x4e,0x8b,0x62,0x2e,0xd3,0xbc,0xd3,0x7e,0xfd,0x7f, + 0xc7,0xe2,0x5d,0x89,0xd8,0xd8,0xc8,0xf6,0x3c,0xef,0x34,0x78,0x37,0x54,0x34,0x5b,0x42,0xb0,0xf5,0x5d, + 0x68,0x39,0x28,0x47,0x1d,0x7f,0x9f,0x1c,0xee,0xef,0xbf,0x24,0x1a,0xbf,0x3f,0x9b,0x17,0x05,0x04,0x72, + 0x09,0x13,0x54,0xb0,0x30,0xc9,0x99,0x00,0xf6,0x6a,0xad,0x5a,0x5d,0xa7,0xce,0x0e,0x83,0x60,0xdb,0x83, + 0xa5,0x1e,0xb6,0x65,0x7e,0x4a,0x0c,0x7e,0x2f,0x8a,0x6d,0x17,0x5c,0xad,0x93,0xce,0xbe,0x3a,0x31,0x36, + 0xb1,0x34,0xe9,0x2b,0xea,0xd8,0xb0,0x26,0xca,0xd4,0x7e,0xb5,0xd2,0x96,0x90,0xd6,0xf2,0x52,0x9b,0xc0, + 0x2b,0x36,0x3f,0x54,0xea,0x83,0x32,0xb1,0x42,0x2c,0x01,0x39,0x67,0x72,0x38,0xc8,0x1e,0x94,0xc6,0x6a, + 0x2c,0x53,0x06,0x98,0x27,0xd9,0x68,0x44,0xb8,0xd2,0x31,0x0c,0x5d,0xea,0xf7,0x93,0xba,0x29,0xc9,0x1a, + 0x6d,0xba,0xac,0x3b,0xa8,0xd8,0x68,0xe3,0xfa,0x38,0xb7,0x6e,0x07,0xc6,0x5f,0xc0,0xe8,0x54,0x6b,0x4f, + 0xc6,0xc5,0xf2,0xe0,0xef,0x0f,0x8e,0xac,0x98,0x98,0xbb,0x4c,0x27,0x4e,0x2e,0x8e,0x22,0xaf,0xb6,0x59, + 0xe3,0xcc,0x3a,0x33,0xab,0x8e,0x4d,0x6e,0xcb,0x2c,0xdd,0x5c,0x76,0xcc,0xc7,0xa0,0x8d,0x36,0x1c,0x49, + 0x20,0x4f,0x72,0xa2,0xe7,0x42,0xfc,0xc0,0x12,0x38,0xf2,0x1b,0x9e,0x6e,0x19,0x9d,0x6a,0x71,0x48,0xd9, + 0x61,0x10,0xac,0x29,0x8c,0x61,0xf9,0xfd,0xd1,0xd0,0x19,0xb1,0xda,0x72,0xc0,0x01,0xdc,0x6f,0x36,0xe3, + 0x35,0xcf,0x56,0xd0,0x9b,0xf7,0xc7,0xaa,0x22,0xeb,0x61,0x21,0x72,0xd7,0x91,0x73,0xd5,0x11,0xc2,0x20, + 0xeb,0xf5,0xe1,0xc0,0x2d,0xbd,0x29,0x7b,0x20,0x69,0xc5,0x9d,0x05,0x6e,0x1e,0x0d,0xf2,0x83,0x83,0x41, + 0x54,0xf2,0xa0,0x4e,0xf2,0x9e,0xb4,0xe6,0xb5,0xa5,0xab,0xf4,0xa2,0x05,0x48,0xf0,0xd2,0x90,0x11,0x7c, + 0x38,0x12,0xcc,0x86,0x15,0x8d,0xba,0x2f,0x16,0x0d,0xd9,0x04,0xac,0xa3,0x73,0x02,0xac,0xfc,0x81,0x73, + 0x0a,0x21,0xc0,0x42,0x05,0xfb,0xfb,0x17,0x50,0x3f,0x42,0x1a,0x69,0xa1,0xcb,0x55,0x73,0x66,0xce,0x61, + 0x97,0x74,0xed,0x00,0x06,0xdb,0x30,0x32,0x58,0x4a,0x1f,0x89,0x7c,0xce,0x95,0xf4,0xa3,0x80,0x66,0x97, + 0x0e,0xc2,0xdd,0xd2,0x14,0x22,0xb6,0x65,0xb7,0xdc,0xdf,0xb7,0x1b,0x8c,0x2a,0xd0,0xcf,0x54,0x1a,0x4a, + 0x4c,0x56,0x3e,0x24,0x3c,0x35,0x9e,0xbc,0x9f,0xf8,0x96,0x66,0x92,0xaa,0xbb,0xd8,0xdf,0x4f,0x1d,0x40, + 0xea,0x35,0x81,0x00,0x4b,0x3d,0x82,0x45,0x92,0x17,0xb2,0xbc,0xf6,0xce,0x67,0x8f,0xc0,0xe4,0x71,0x60, + 0xd8,0x1b,0x55,0xd9,0x7a,0x6d,0x2a,0xdb,0x3d,0x1a,0x28,0x89,0x86,0x06,0xcf,0x2f,0xf2,0x1a,0x58,0x85, + 0xd8,0x25,0x3f,0xc1,0xd9,0x8f,0x57,0xae,0xed,0x89,0x6d,0xbb,0x6a,0xb7,0xdd,0x68,0x19,0xde,0x37,0xba, + 0x71,0x67,0xfd,0x65,0x5a,0xf7,0xc0,0x7a,0xdc,0xc6,0x20,0x5b,0x6b,0x48,0x5d,0x37,0xf5,0x45,0xd6,0x6d, + 0x4e,0xf7,0x8c,0x98,0x61,0x5b,0xd3,0xa9,0xdb,0x75,0x34,0xbe,0x6d,0xf3,0x70,0x89,0x9d,0xa5,0xc8,0x31, + 0xb5,0x21,0xf8,0xf0,0x73,0x7b,0xc2,0xdf,0x6c,0x97,0x46,0xf3,0x16,0xdd,0xe8,0x19,0x51,0xc7,0xa7,0xf1, + 0x0f,0xe2,0x6c,0x6a,0x6c,0xbe,0x92,0x71,0x2e,0x24,0x9d,0x48,0xb2,0x4c,0x4f,0xe7,0x32,0xde,0xdd,0x2d, + 0x05,0x64,0x12,0xea,0xe5,0x50,0xdb,0x32,0xac,0x74,0xe6,0xe1,0xc6,0xc3,0x12,0x7b,0xde,0x81,0xd2,0xa1, + 0x32,0xde,0xdf,0xbf,0x9b,0xb3,0x03,0x03,0x6b,0x35,0xef,0x6a,0x12,0xdb,0x37,0xf5,0x73,0x55,0x5d,0xb5, + 0x6c,0x94,0x7e,0xcb,0x43,0x75,0xfa,0x8a,0xe6,0x8f,0x3b,0x7a,0xdc,0xb7,0x5f,0xb4,0xb2,0x5f,0xef,0xe1, + 0x89,0x11,0xcf,0xbc,0x56,0x26,0xb8,0x7a,0x2f,0xff,0x06,0x5b,0x9a,0x3a,0x3d,0x13,0x96,0x9b,0x9d,0x9c, + 0x67,0xf3,0x69,0x29,0x73,0x70,0x4f,0xb0,0xdf,0x20,0x50,0x9c,0x2f,0x04,0xab,0x27,0xf9,0x1d,0x19,0x69, + 0x75,0x9d,0x4f,0x9e,0xa6,0xb0,0x67,0xbf,0x76,0x0a,0xd1,0x7e,0x0e,0x5e,0x19,0x55,0x2b,0x59,0x5c,0x9d, + 0x4d,0x80,0x8a,0xf5,0x23,0xa5,0x12,0xf4,0x25,0x0c,0x83,0x5c,0xe2,0x98,0xb8,0x52,0xea,0x0f,0x17,0xd1, + 0xcf,0x94,0x3e,0xcb,0x8f,0x55,0x43,0x94,0x6e,0x9f,0x39,0x5d,0x77,0x9c,0xd3,0xed,0x20,0xe8,0xf9,0xdd, + 0x84,0xd6,0xee,0xf9,0x94,0xd3,0xf5,0xb3,0xaa,0x7f,0x4e,0xe3,0x65,0x17,0x49,0xa9,0x14,0xaa,0x7a,0x60, + 0xf4,0x52,0xda,0x97,0xe4,0xd8,0xcb,0x81,0x69,0x50,0x04,0xf5,0x6b,0xee,0x17,0xce,0xfd,0xc2,0x79,0xb3, + 0x30,0x21,0x0c,0x37,0xe3,0xc7,0x6d,0x90,0xb7,0x58,0xb6,0x89,0x37,0xf5,0x49,0x99,0xf3,0x11,0x89,0x03, + 0x32,0xa1,0xb5,0xa2,0x1f,0xcf,0xb1,0xc3,0xab,0xf5,0x9d,0xb7,0x8e,0xd8,0xee,0xca,0x83,0x67,0x37,0x6c, + 0xf8,0xdb,0xfc,0x96,0xdb,0x2d,0x84,0x83,0x2c,0x18,0x8f,0x8b,0xd3,0xf1,0x38,0x60,0x6b,0x13,0xf5,0xec, + 0x97,0x2e,0xca,0x21,0x3a,0xa7,0x32,0xe2,0x8c,0xc8,0xee,0xf3,0x62,0x35,0x9f,0xd2,0x64,0xd3,0xc6,0x27, + 0x00,0xdd,0xfd,0x25,0x67,0x2b,0xbf,0x36,0x36,0x5b,0xaf,0x41,0x2c,0x51,0x8e,0xde,0x3b,0x59,0xf5,0x04, + 0xde,0x27,0x55,0x76,0xca,0xe6,0xb2,0xf4,0x21,0xfb,0x13,0x10,0x15,0x8a,0x69,0xe3,0x31,0xb3,0xca,0x9c, + 0xd9,0x79,0x9e,0xd6,0x8b,0xc5,0x71,0xb1,0xca,0xeb,0x5e,0xcf,0x3f,0x78,0x1e,0xfa,0xea,0x70,0x85,0x47, + 0xf1,0xe9,0x0f,0x39,0x61,0x4f,0xdd,0xd2,0x99,0xac,0x3d,0x2f,0xbe,0xc7,0xb2,0x9a,0x94,0x19,0x6c,0xdc, + 0x79,0x6e,0x18,0x5b,0xa7,0x84,0xad,0x8f,0x88,0xda,0x4b,0xfb,0xfe,0xd6,0x34,0x12,0xde,0x94,0x10,0x2e, + 0x2a,0x21,0x4c,0xc8,0x8f,0x15,0x3d,0xae,0x92,0xdd,0x8c,0x30,0x3a,0x0e,0xb2,0xaf,0xe0,0x02,0x1f,0x07, + 0x6c,0x6d,0x7b,0x41,0x55,0xfa,0x32,0x47,0x85,0xa5,0xaa,0x61,0x65,0x68,0x46,0xa7,0xbe,0xf8,0x21,0xa7, + 0x6d,0x56,0x52,0x79,0x9a,0x9a,0x82,0x5a,0x5a,0xc2,0xf2,0x22,0x12,0x2b,0x7a,0x5d,0xe1,0xd5,0x25,0xb5, + 0x0f,0x8c,0xfd,0x7d,0x8f,0x60,0x6f,0xc0,0x97,0xde,0xfd,0xca,0x7b,0x48,0xb6,0xbd,0x86,0x68,0x05,0x24, + 0x0c,0x33,0x31,0xef,0x6a,0xa9,0xdd,0xd3,0xd7,0x5a,0x84,0x6c,0x9b,0x8d,0x28,0x42,0x96,0x96,0xc8,0x8d, + 0xa8,0xfc,0x51,0x4a,0x43,0x9d,0x34,0x87,0x29,0xe9,0x0c,0x29,0xd7,0x6b,0xb9,0xcb,0x26,0xa4,0xbb,0x78, + 0x0e,0x27,0xc3,0x89,0x23,0xa3,0x62,0xea,0x8e,0x9d,0x73,0x09,0xdb,0xd8,0xbc,0xa8,0x41,0xbe,0xb2,0x8d, + 0xbc,0x87,0xa3,0xdf,0x7b,0xea,0xfd,0x36,0x04,0xd2,0xda,0x85,0xee,0xb4,0xb0,0x47,0x27,0x93,0xd8,0x8b, + 0xf4,0xca,0x52,0x82,0xd0,0xe8,0x59,0x4a,0x4f,0x8a,0x23,0xaa,0x4e,0xf0,0xee,0x91,0xec,0x26,0x8a,0xfd, + 0xc3,0x4f,0x6d,0xcf,0x4e,0x57,0xb5,0x32,0x70,0xcd,0xb5,0xe4,0xc7,0x6c,0x16,0xe7,0x40,0xa4,0xe0,0x7c, + 0xbd,0x2e,0x61,0x69,0xa5,0xc1,0x7a,0x98,0xc7,0xe5,0x30,0x7c,0x48,0xe8,0x85,0x4f,0x10,0x1e,0x05,0xa1, + 0x22,0xcc,0xb5,0x19,0x2b,0xe8,0x32,0x63,0x3d,0x9b,0x7b,0xd8,0xfa,0xb5,0xa5,0x4d,0x6e,0x19,0xb2,0x3f, + 0x1a,0xcf,0x54,0xc1,0xed,0xe3,0x81,0xeb,0x93,0xbf,0xd5,0xd6,0x6b,0x45,0xd9,0xc2,0x38,0xc8,0x58,0xeb, + 0xca,0x91,0x42,0x72,0x7e,0xc7,0xfc,0x15,0xf8,0x6c,0x3b,0xe3,0x9b,0x57,0x58,0xb8,0xc3,0x46,0x75,0x5b, + 0x53,0x93,0x14,0xd0,0x18,0x0d,0xaa,0x07,0xa9,0x81,0xc2,0x0a,0xb8,0x0d,0x74,0x61,0x92,0x9e,0x54,0xa3, + 0x11,0x00,0x14,0x47,0xfd,0x8c,0x29,0x99,0x61,0x11,0x96,0xec,0x86,0x08,0x5d,0xc8,0xe7,0x10,0x1b,0x3f, + 0xc6,0xb2,0xe7,0xf4,0xd0,0x41,0x12,0x3e,0x69,0x49,0xd8,0xf2,0x61,0x6b,0xcf,0x95,0x49,0xa7,0x3b,0x9b, + 0xf1,0xf0,0x65,0x9f,0x36,0xea,0x41,0xd7,0x71,0x3c,0xac,0xbd,0x42,0xb5,0xa3,0xb0,0x75,0xaf,0xb2,0x4d, + 0x2c,0x87,0xb5,0xdf,0x9e,0x2e,0xf1,0x39,0xfc,0x5a,0x93,0x4c,0x82,0xe0,0x0f,0x1a,0xfe,0x5a,0xb3,0x5e, + 0x41,0xe2,0xda,0x62,0x19,0x7b,0xc3,0x7e,0xd1,0x16,0xa3,0x0d,0x6b,0xa3,0x82,0xa7,0xed,0xd4,0x46,0x13, + 0x43,0x19,0x43,0x4f,0xef,0x7d,0xff,0xdc,0x11,0x3b,0x4a,0x5e,0xd3,0x64,0x5a,0x34,0xa3,0xef,0xe9,0x72, + 0x2e,0xc2,0x0c,0x1b,0x35,0x73,0x55,0x3c,0x35,0x33,0xef,0x31,0xf1,0xb6,0xba,0xb4,0x24,0xf4,0xb2,0x5e, + 0xaf,0xca,0xc1,0x0a,0x8e,0x76,0x74,0x30,0xb1,0x77,0x22,0xfe,0xa0,0xd1,0x2e,0x6b,0x3c,0x16,0xe5,0x12, + 0xaa,0xd2,0x7e,0x40,0x6d,0xc9,0x89,0x81,0x68,0xda,0x8f,0xcb,0x4a,0x59,0xf2,0xa8,0xf5,0x65,0x80,0xbb, + 0xd9,0x0c,0xb6,0xf6,0x47,0xae,0x7c,0xc7,0xe9,0x80,0xb5,0xe8,0x0f,0x4c,0x49,0x5b,0xbe,0x10,0xaa,0xf0, + 0x0b,0xd8,0x05,0xe9,0xc9,0x38,0x27,0xb8,0x1b,0x25,0x37,0xc8,0x52,0x6a,0x2a,0x67,0x29,0x54,0x98,0x1a, + 0xf9,0xdc,0x00,0x8a,0xc8,0x23,0x7c,0x5b,0x8d,0x04,0x7f,0x58,0xd1,0x87,0x00,0xdb,0x61,0x16,0xab,0xef, + 0xb3,0xcd,0x40,0xf7,0x37,0x49,0x37,0x40,0x99,0xb7,0x0c,0x29,0xcb,0x31,0xf7,0xfe,0x98,0x6c,0xe2,0xd7, + 0x06,0xa6,0x66,0x9a,0xc9,0x05,0x9f,0xb1,0x26,0xa6,0x8b,0x19,0xeb,0x1b,0x18,0xc7,0xc4,0x78,0xde,0x74, + 0x0f,0x21,0x55,0x43,0xd0,0xc7,0x60,0x7e,0x92,0x12,0xcb,0x45,0x7f,0x68,0x0c,0x55,0x44,0xeb,0xad,0xbe, + 0x4f,0x09,0xc5,0x47,0xb1,0x7a,0xae,0x36,0x9b,0xf6,0x30,0xcc,0x20,0x64,0x7f,0x9a,0x95,0xd4,0x5f,0xa2, + 0x5d,0xf5,0xe2,0x98,0x56,0x4a,0xaf,0x15,0x35,0xd3,0x83,0x8e,0xc5,0xcf,0x40,0x15,0x70,0x10,0x0c,0x18, + 0xe8,0xc7,0x99,0x58,0x2d,0x61,0x1d,0x48,0x53,0x18,0x41,0x69,0xaf,0xc3,0x64,0x48,0x1d,0x05,0x82,0x9b, + 0xc8,0xd8,0xc6,0x09,0x50,0x98,0xc1,0xb8,0x4f,0xc8,0xfe,0x22,0xbb,0x22,0x4a,0xc6,0x8d,0x8f,0xce,0xbe, + 0x2a,0x31,0xc9,0x66,0x8a,0xd2,0x07,0xd5,0x20,0x05,0x9b,0xc8,0x9f,0x9a,0x5c,0x1a,0x37,0x55,0xc2,0xcd, + 0x4c,0xe8,0x24,0xa2,0x59,0x47,0x2d,0x13,0x15,0x38,0x80,0x1e,0x22,0xf7,0x2e,0x23,0x20,0xaa,0x09,0x51, + 0x3c,0x9c,0xae,0x77,0xc8,0xca,0x6d,0x8c,0xc7,0x6e,0x6f,0x75,0x79,0xcb,0xd8,0xb9,0x00,0xb2,0xc5,0x40, + 0x68,0x28,0xc2,0xd1,0x68,0x19,0x58,0x5f,0x45,0xe9,0x8c,0xc1,0x5f,0x99,0x12,0x85,0x57,0xa2,0x50,0x25, + 0xd2,0xe4,0x34,0x0f,0x0b,0x27,0x5c,0xa0,0x52,0x29,0x41,0x1f,0x8d,0x25,0xce,0x58,0xaa,0x80,0x92,0xf8, + 0x9b,0xfa,0xb2,0x91,0x57,0xed,0xad,0x0f,0xb7,0x36,0x51,0x24,0xbb,0xb4,0x6a,0x82,0xd9,0x52,0x08,0x53, + 0xd0,0xec,0xcb,0xf0,0x91,0x12,0xa7,0x89,0xac,0xcf,0x27,0x20,0xe8,0x13,0x3a,0x1f,0xd1,0x50,0xa0,0x1d, + 0x21,0x83,0x68,0x98,0x12,0xef,0x15,0xbf,0xd4,0x32,0x2e,0x53,0x14,0x86,0xfb,0xbb,0xac,0x92,0x4e,0xe9, + 0x67,0x4f,0xb9,0xa9,0x86,0x69,0xc2,0x64,0xb4,0x15,0x28,0xa6,0xd1,0x4d,0xda,0x65,0xba,0x37,0x83,0x07, + 0x93,0x6d,0xc1,0x6c,0x0a,0x69,0xbc,0x2f,0xed,0x39,0x00,0x1a,0x76,0x4f,0x23,0x0c,0xb5,0xd3,0x54,0x70, + 0x03,0x27,0xb1,0xec,0xc8,0x56,0xf2,0x01,0x2b,0xa9,0xec,0x8f,0x39,0x87,0x52,0x87,0xde,0x73,0x97,0x84, + 0x15,0xae,0xbd,0x4f,0x9d,0x6c,0x3e,0x79,0x13,0x4a,0x35,0xd8,0x61,0x69,0xa9,0x9d,0x92,0xc0,0x15,0x28, + 0xa9,0x8e,0x34,0xbb,0xdd,0x26,0xa1,0x07,0xed,0x04,0x70,0x21,0xef,0xc2,0x94,0x48,0xff,0x76,0x46,0xe5, + 0xcc,0x1e,0xec,0xea,0xbd,0xf1,0xec,0x9b,0x30,0x7a,0xc7,0x1b,0x6a,0x2d,0x3d,0xfb,0x5d,0xdb,0xe2,0xe1, + 0xa7,0xcb,0x5e,0x74,0xd7,0xc3,0xe3,0xf2,0xe4,0x88,0xc6,0x16,0xb8,0x0a,0x5f,0xba,0x03,0xbd,0x7d,0x6c, + 0x18,0x80,0x7b,0xa3,0x84,0x93,0x6f,0x8c,0x7f,0xaa,0x89,0xc6,0x51,0x3a,0xc2,0x32,0x7f,0x50,0x1a,0xc6, + 0xfd,0x0d,0xcb,0xb2,0xcc,0x07,0x4e,0x92,0x62,0x05,0x01,0xb6,0xe9,0xb7,0xde,0x8a,0x4b,0x87,0x30,0x12, + 0x39,0x28,0x93,0xb2,0xbf,0xb7,0x4c,0x89,0x95,0xaa,0x07,0xce,0x00,0xc8,0x2e,0x25,0xfb,0x00,0x1c,0xa7, + 0x4b,0xaa,0x50,0x4e,0x19,0x17,0xd8,0xaf,0x0b,0x42,0x88,0xc5,0x83,0xcc,0xf4,0xab,0xc0,0x4e,0x2f,0xaf, + 0x79,0x78,0x30,0x61,0xc4,0x8e,0x50,0x6b,0x55,0x0a,0xd5,0xb8,0xee,0xa0,0x13,0x58,0x3c,0xa2,0x5e,0x95, + 0x22,0x68,0xb4,0xb1,0x73,0x5e,0x14,0x5f,0xe0,0xb6,0xfe,0x48,0x77,0xd9,0x0d,0xe2,0x91,0x37,0x88,0xf7, + 0xb9,0xea,0xda,0x33,0xa5,0x33,0xe7,0x96,0xf5,0x1c,0xb6,0xb2,0xfc,0xf8,0x22,0xaa,0x42,0xdb,0xfe,0x07, + 0x23,0xb4,0x0d,0xb4,0xa9,0xb4,0xff,0x1d,0xf5,0xe1,0xc3,0x56,0x17,0x3e,0x78,0x5d,0xd8,0x7d,0x02,0x71, + 0xd4,0x8b,0x9c,0xf6,0x5f,0x87,0x8f,0x10,0x9c,0xcd,0x69,0x47,0x1b,0x05,0xcb,0x40,0xbf,0xab,0x26,0x1a, + 0xb2,0xe1,0x8f,0x30,0xaa,0x2b,0x13,0x2d,0x35,0xaa,0x93,0x79,0x69,0xfc,0xc3,0xa3,0xc1,0xdc,0x08,0x72, + 0x13,0x27,0x0b,0x94,0xf4,0x2c,0x9d,0x10,0x47,0xb2,0x20,0x4e,0x8e,0x42,0xaf,0xca,0x67,0x2d,0x6e,0x95, + 0xaa,0x61,0x5b,0x88,0x96,0x1e,0x48,0x39,0x13,0x5a,0xf9,0xa4,0x9d,0x17,0x05,0x2d,0x41,0x4e,0x47,0xc0, + 0xfb,0x6c,0x82,0xd5,0xe0,0x53,0x2d,0x67,0xe7,0x75,0xd6,0xb4,0x80,0xaf,0x40,0x9f,0x0f,0xc5,0xb2,0x1c, + 0x4e,0xca,0x30,0x8a,0xab,0x12,0x06,0x36,0xbb,0x75,0xb7,0x7a,0x45,0x2b,0xc2,0x22,0x4f,0x8a,0xd2,0xa5, + 0x1b,0xcb,0xa1,0x1b,0x73,0xc3,0xf8,0x03,0x69,0xb6,0x00,0xf8,0x2e,0x61,0x49,0x91,0xe2,0x16,0xa1,0x5e, + 0x48,0x2c,0x28,0x84,0x87,0xe0,0x83,0x2d,0x83,0xfc,0xb4,0x2c,0xfe,0x80,0xe3,0xb4,0xb2,0x89,0x92,0x9a, + 0x56,0x37,0xe7,0xb1,0xf4,0xd9,0xb1,0x8c,0xa1,0x3c,0x87,0x05,0x20,0x1d,0xce,0xc6,0x30,0x33,0x87,0xf7, + 0x00,0xdc,0x00,0x61,0xc1,0xa9,0x69,0x1d,0xd9,0xa0,0x75,0x60,0x70,0x53,0xf2,0xc9,0x66,0x03,0xe2,0x94, + 0x49,0x58,0xb4,0xe8,0xf3,0x68,0xeb,0x9b,0x82,0xbe,0x1a,0x71,0x00,0x84,0x88,0x66,0xfd,0xac,0x8c,0xe8, + 0x7f,0x7f,0x42,0x47,0x41,0xe9,0x2f,0xe8,0x2f,0x61,0x33,0xd4,0x95,0xd6,0xc8,0x39,0xd9,0xb4,0x00,0x61, + 0x30,0xcb,0xf9,0xb8,0xde,0xdd,0xa2,0x61,0xac,0xe4,0xd9,0xd3,0x9b,0x39,0xd1,0xdc,0xc0,0xe1,0x83,0x5c, + 0x83,0x5e,0xa7,0x1e,0x01,0x42,0x12,0xbf,0x86,0xda,0x8a,0xb4,0xb9,0x69,0x44,0xb9,0x72,0x3d,0xfe,0x3d, + 0xd4,0xc2,0x04,0x6b,0xbf,0x2f,0x2a,0x41,0x07,0x3e,0x37,0x96,0xaa,0xd3,0x9d,0xa6,0x1e,0xd4,0xc0,0x84, + 0x29,0x22,0xa2,0x05,0xae,0x4b,0x20,0xe7,0x3a,0x64,0x1b,0xb7,0x9a,0x8e,0xfc,0x21,0xfd,0xad,0x50,0x37, + 0xce,0x43,0x55,0x3a,0xf9,0x05,0xcb,0x22,0x4a,0xe2,0xd7,0xd9,0xf8,0xb2,0x12,0xab,0x3e,0x51,0xe3,0xc4, + 0xd4,0x12,0x1c,0x33,0x0a,0xa1,0x27,0xf8,0xb4,0x11,0x7d,0xc4,0x4f,0x30,0x33,0x8f,0x08,0x3e,0xe9,0x14, + 0x99,0x50,0x2d,0x13,0xee,0x6a,0x25,0xb8,0xae,0x49,0x14,0xb9,0xfe,0xe4,0xbc,0x1e,0x29,0xc8,0xd3,0x2c, + 0x0c,0x75,0x6f,0x22,0xd5,0x8a,0xea,0xa0,0x69,0xc1,0x5b,0x98,0x1f,0x43,0x3d,0x44,0x4f,0x2d,0x15,0xdd, + 0x14,0xdd,0x32,0x50,0x31,0x57,0xa3,0x21,0xda,0x61,0x53,0x36,0x05,0x47,0x10,0x87,0x11,0xde,0x85,0xf4, + 0xaf,0x0f,0x0c,0x08,0x0b,0x0c,0xf7,0x46,0x54,0x52,0xa4,0x4f,0x39,0xd8,0x03,0xd2,0x3a,0x0c,0x78,0x7a, + 0x2a,0x9a,0x0d,0xf4,0x38,0x96,0x6a,0x5c,0x90,0x32,0xd0,0x13,0x9b,0xb8,0x4c,0x69,0xf6,0x2a,0x1a,0x21, + 0xd2,0xd5,0xee,0x4f,0x69,0x16,0xf0,0xc1,0x44,0xd0,0x27,0xa2,0xd2,0xc5,0xb0,0x89,0x59,0xfc,0x55,0xb9, + 0x51,0xfd,0xc4,0x5c,0xa0,0x1e,0x19,0x76,0x0c,0x80,0x48,0x51,0x0b,0xa0,0x66,0x1c,0x7b,0x8e,0x28,0x26, + 0x00,0xfb,0x62,0xbd,0xd6,0x7c,0x2d,0xbf,0xd2,0x19,0xa4,0x0b,0x67,0xed,0xc2,0x59,0xb3,0x70,0x86,0xc2, + 0x9b,0xed,0x03,0xeb,0x57,0xdf,0x59,0x82,0xf9,0x6f,0xd8,0xec,0x40,0x0a,0x89,0x8d,0xad,0x4d,0xe4,0x8d, + 0xc0,0xd2,0x7d,0xf6,0x83,0xcf,0xac,0x85,0x60,0xca,0x65,0xf5,0x92,0x75,0xba,0xeb,0xf5,0x8f,0x88,0xb7, + 0xa2,0x5e,0xa0,0x52,0xac,0x4f,0xde,0xb1,0x56,0xd3,0x9e,0xeb,0xef,0xd3,0x33,0xe5,0xb7,0x9f,0xd4,0x86, + 0xfa,0xa1,0x6d,0x00,0x0f,0x00,0x43,0x0c,0x83,0xea,0xf0,0x1a,0xfb,0x77,0x23,0x1a,0x8b,0xed,0x0d,0x68, + 0x05,0x5f,0x34,0xeb,0x3e,0xf8,0x4d,0x9b,0x1d,0xb4,0x85,0x0b,0xd1,0x57,0xe4,0xf3,0x86,0x4b,0x01,0xad, + 0xca,0x2b,0x51,0xb2,0x5b,0x03,0x84,0xa7,0x2d,0x59,0x32,0x6d,0x9a,0x7f,0x53,0xae,0x9d,0xf0,0xd2,0xa3, + 0x44,0x7f,0x36,0xe7,0x56,0x3e,0x5c,0xe0,0x74,0x27,0xb0,0x53,0xe2,0x20,0xf5,0xd6,0xd2,0xb0,0xd5,0xb5, + 0x9a,0x46,0xce,0x9c,0xcd,0x5a,0xb9,0xb2,0x36,0x95,0x2d,0xa8,0x5f,0x82,0x37,0x3a,0x9b,0x49,0xfd,0x2c, + 0x6a,0x9a,0x31,0x4a,0x54,0x14,0x9f,0xa7,0x8d,0xae,0x7d,0x2e,0x4c,0xf1,0x59,0xbb,0xb5,0xd3,0x36,0x38, + 0xfc,0xd3,0x88,0x3b,0x66,0x44,0x68,0x5a,0x1a,0xc9,0x7c,0x6d,0x9a,0x14,0xbc,0x2d,0x50,0x05,0xcb,0x10, + 0xd3,0xba,0x2e,0x2b,0xfb,0x40,0xe8,0xab,0xa8,0xad,0x17,0xb0,0x9f,0x28,0x0a,0x23,0x3b,0x57,0xd6,0x74, + 0x85,0x93,0x6b,0x23,0x61,0xbd,0x86,0xec,0x52,0x29,0x7c,0x53,0xfe,0x20,0x0a,0x73,0x03,0x06,0x6c,0x8b, + 0x61,0xe2,0xc4,0x9d,0x8c,0x08,0x29,0xf0,0x7e,0x2a,0x3c,0x09,0x50,0xa5,0xbf,0x62,0x64,0x56,0x41,0xcd, + 0x88,0x1f,0x14,0x1e,0x04,0xb5,0x5c,0x2c,0xe7,0xc4,0x62,0x01,0xea,0x0a,0x88,0xf9,0x87,0x13,0xae,0x40, + 0x23,0x89,0x09,0xba,0xa6,0xc5,0xd9,0xeb,0x35,0x7d,0x11,0x4f,0x4c,0xfd,0x1b,0x1b,0xa0,0x68,0xa5,0x30, + 0x54,0x7e,0xb2,0x1a,0x69,0xc5,0x50,0x59,0x3b,0x77,0x67,0x24,0xbb,0x08,0x20,0x4e,0x4a,0x50,0xdf,0x06, + 0xa1,0xbb,0x4d,0x10,0x25,0x12,0x66,0x87,0xf7,0x04,0xef,0x30,0x4f,0x8f,0x5f,0x7b,0xda,0x48,0xcd,0xa9, + 0xdd,0x02,0xa7,0x2d,0x98,0x06,0x5d,0x3a,0xc4,0xe7,0x4a,0xb3,0x14,0x13,0xe7,0x43,0x4f,0x38,0x06,0x59, + 0x4d,0x39,0xa2,0xd9,0xef,0x50,0x17,0x16,0xb5,0x51,0x3b,0x0e,0x6a,0xbd,0x13,0x35,0x6d,0x1a,0x0d,0x22, + 0x56,0x31,0x8f,0xb3,0x3c,0x65,0xde,0xf7,0x6b,0xd4,0x6e,0x5a,0x5b,0x4a,0xdb,0xa8,0xa6,0xc7,0x8a,0x69, + 0x7e,0xae,0xbf,0x26,0x6a,0x4b,0x70,0x63,0x86,0x26,0x35,0x6c,0xfb,0x56,0x49,0x43,0x01,0x34,0x5b,0x77, + 0xd6,0x19,0x5e,0x8f,0x6e,0xbc,0x17,0x90,0x73,0xed,0xd9,0xda,0x33,0xab,0xec,0xcf,0x1b,0xfa,0xea,0x72, + 0x58,0x8d,0x0a,0x4d,0x94,0x08,0xb8,0x1e,0x82,0x9a,0x69,0xe0,0x0b,0x05,0xab,0xba,0x29,0xd0,0x30,0x84, + 0xba,0x66,0x70,0x3d,0x61,0x00,0xef,0xa5,0xbc,0xbd,0x97,0x40,0xf1,0xe5,0x36,0xb4,0xa5,0x8d,0x1d,0x91, + 0x83,0xe8,0xcb,0x41,0x20,0xf7,0x02,0x43,0x81,0xd3,0x68,0x88,0x08,0x7a,0x46,0x2f,0xec,0x36,0xc9,0x0c, + 0xa0,0x5c,0xc0,0xce,0x00,0x05,0xe2,0xa0,0xe7,0x23,0x85,0x49,0x6d,0x68,0x12,0x21,0x79,0xe0,0x5f,0x98, + 0x3a,0x3c,0x85,0x31,0x51,0xe9,0x5b,0x38,0xf9,0xc6,0xba,0x44,0x6c,0x1d,0x48,0xfa,0x43,0x14,0xe5,0x31, + 0x02,0x47,0x1d,0x97,0x0f,0x4e,0x2d,0xc5,0x71,0x8c,0xee,0xca,0x84,0x80,0xe0,0xb4,0x3c,0x39,0x2e,0x47, + 0x11,0x15,0x14,0x7b,0x25,0x0b,0x6d,0x99,0xfa,0xe8,0x97,0xab,0x3c,0x34,0x96,0x54,0x97,0xa5,0xa5,0x5c, + 0xca,0xe4,0xd4,0xbe,0x50,0x2d,0x89,0xad,0x12,0x85,0x0c,0x35,0x4d,0x35,0x41,0xa9,0x7d,0x55,0x26,0xe8, + 0xe8,0x51,0x43,0xce,0xf2,0x27,0x84,0xb6,0xbf,0xc8,0x87,0x02,0xeb,0x07,0x51,0xee,0x2e,0x42,0x7a,0xe6, + 0xd1,0x2d,0x15,0xb9,0x4a,0x40,0xf7,0x99,0xd5,0xc3,0x77,0xa0,0xb9,0x2e,0x16,0x83,0xb2,0x3f,0xbe,0xc4, + 0x4a,0xc8,0x92,0x80,0x2a,0x87,0x34,0x7b,0x9c,0xd1,0xc9,0xb5,0x22,0x04,0x35,0xdd,0xdf,0xa7,0x55,0x27, + 0x3e,0x49,0x09,0x6a,0x18,0x1e,0x08,0xcf,0x8b,0xdf,0xa9,0xd8,0x7b,0xe0,0xa5,0x8b,0xba,0x28,0xe0,0xeb, + 0xfb,0x3b,0x31,0x3e,0xbc,0x3e,0xb3,0x39,0xa1,0x8f,0xc0,0x5b,0x9d,0x95,0x45,0xd9,0xef,0x4b,0x28,0x60, + 0xb6,0x8d,0xf1,0xd8,0x04,0x8c,0xfa,0x43,0x00,0xb8,0x11,0x54,0xa8,0x92,0xdb,0x56,0xcf,0x2a,0x1b,0xa1, + 0xf8,0x6e,0xd3,0xd4,0xe4,0xf4,0xa9,0xd7,0xec,0xdc,0x36,0xab,0x20,0x92,0x35,0x5a,0x5d,0x32,0xa9,0x7c, + 0x18,0xea,0x8e,0x95,0xc3,0x19,0xcb,0x55,0x73,0xd3,0x89,0xb3,0x28,0x36,0x79,0x39,0xfe,0x0e,0x4b,0x9c, + 0xff,0x88,0x3a,0x47,0x20,0x4c,0xf3,0x65,0xca,0x23,0x2f,0x3e,0x33,0x5f,0xe5,0xf8,0x3b,0xe4,0xbf,0xf1, + 0x59,0x74,0x6b,0x7f,0x65,0xb3,0xbf,0x33,0x1f,0x5f,0x6e,0x29,0x94,0xd8,0x48,0x6e,0x8c,0x53,0x77,0x45, + 0xab,0xf0,0x8b,0x5a,0x2d,0x84,0xdc,0xeb,0x4c,0xd7,0x82,0x1d,0xcb,0xf2,0xb0,0xd8,0xae,0xbe,0x86,0x41, + 0xad,0x84,0x5e,0x02,0xb2,0xdf,0x48,0x78,0xfa,0x28,0xe9,0x34,0x41,0x52,0x69,0x2e,0xbc,0x6d,0xbf,0xac, + 0x9d,0x28,0xc9,0xf8,0x0b,0xb2,0x8a,0x08,0x32,0x57,0x81,0xc8,0x50,0xda,0x78,0x3c,0x12,0xdb,0x52,0x30, + 0x56,0x03,0x32,0x46,0xa6,0x4d,0xb3,0x77,0xa9,0x3c,0xb9,0x95,0x70,0xd8,0xd9,0xbf,0x38,0x94,0x59,0xff, + 0xb9,0xc5,0xd1,0x8f,0xf9,0xf0,0xad,0x9c,0xcd,0x91,0x53,0x5c,0xe6,0x3f,0x29,0xfb,0x86,0xfe,0x2c,0x9b, + 0xd7,0xb2,0xec,0xb2,0x4e,0xfe,0x2b,0xfa,0xc3,0xbe,0xd3,0xf1,0x6d,0xa2,0xb8,0x65,0x3a,0xd1,0xc1,0x8d, + 0xdc,0x38,0x39,0x04,0xc8,0x57,0xa2,0x0c,0x10,0x3e,0xb4,0x0f,0xf1,0x29,0x64,0x91,0x83,0x6a,0xc0,0xa3, + 0xa9,0x58,0xd0,0x74,0x91,0x4d,0xb1,0x8f,0x98,0xce,0xf7,0x52,0x88,0x1e,0xa2,0x6f,0x12,0x2f,0x05,0xa2, + 0xd9,0x53,0x1a,0xec,0x97,0x0d,0x31,0x09,0xe6,0xf0,0x01,0xd7,0xb7,0x0b,0xc3,0x41,0x23,0x27,0x83,0xac, + 0x92,0x3e,0x54,0x90,0x31,0x51,0x0d,0x1b,0x81,0x19,0xd7,0xd8,0x01,0xe3,0x56,0x0d,0x47,0xd0,0x3a,0xd9, + 0x58,0x63,0x20,0x6f,0x91,0xcf,0x6b,0x65,0x60,0x62,0x19,0x5c,0x70,0x4c,0xdb,0x32,0x69,0x8e,0x42,0xb7, + 0x1d,0x18,0x48,0x0b,0xe0,0xad,0x86,0xdb,0x9a,0x63,0x89,0x82,0xd0,0x5d,0xea,0x50,0x50,0xf1,0x20,0x65, + 0x61,0x4d,0x89,0x8e,0xd2,0xe6,0xe6,0xa0,0xab,0x4e,0xf6,0xbe,0x6d,0x00,0xb8,0x5d,0x35,0xd7,0x49,0x15, + 0xd5,0x7e,0x45,0x45,0xef,0xc8,0xaf,0x27,0x33,0x84,0xed,0x96,0x1d,0x8c,0x5f,0x55,0xd5,0xea,0x65,0xd5, + 0xee,0xe5,0x24,0xa9,0xd0,0x41,0xdb,0xd9,0x09,0xf1,0x8b,0xc2,0x49,0x62,0x35,0x3d,0xcc,0xe8,0xf2,0x23, + 0x3c,0xfb,0x39,0xbc,0x81,0x6f,0xfa,0xe4,0xed,0x1c,0x13,0x7c,0x8b,0x77,0xec,0x5e,0x05,0x2b,0x85,0xe9, + 0x3b,0x22,0xda,0xcc,0x66,0x2d,0x10,0x63,0x8d,0x49,0xd9,0x92,0xf7,0xcc,0x45,0x78,0x11,0xe2,0x25,0x62, + 0xa9,0x77,0x96,0x60,0xcb,0xad,0xd7,0xd2,0x77,0x51,0xd6,0x55,0x99,0x4a,0x52,0xa8,0x36,0xfa,0x63,0x02, + 0x9a,0xa9,0x2c,0x99,0xb7,0xc2,0x77,0x44,0x59,0x4a,0x13,0xd2,0x16,0x1a,0x3f,0x14,0xb7,0xc6,0x3f,0x43, + 0x55,0x45,0xcb,0x75,0xcf,0xd2,0x8c,0xe2,0x06,0xa5,0x63,0x04,0xef,0x6c,0xe8,0x84,0x16,0x3e,0xae,0x7a, + 0xac,0x6c,0x7a,0x0d,0x31,0x20,0x02,0xb5,0x15,0x11,0xd8,0x80,0x3a,0xfc,0xc5,0x23,0x09,0xcf,0xda,0xd3, + 0x91,0xd0,0x11,0x42,0x0b,0x03,0xf7,0x30,0x20,0x78,0x22,0x6c,0xac,0x4d,0xe2,0xb0,0x09,0x77,0x59,0x34, + 0x64,0xdf,0x64,0xe7,0xbb,0x4a,0xec,0x50,0x06,0xb9,0x6e,0x5c,0x0e,0xf7,0x72,0x5a,0x08,0x10,0xd2,0x71, + 0x9b,0xf8,0xbf,0xb6,0x2d,0x6a,0x66,0x32,0x07,0x7f,0x0d,0x7e,0x72,0x5b,0xe1,0x4d,0x73,0xbe,0x40,0xd6, + 0x40,0x0b,0x0c,0xdc,0x11,0x94,0x29,0x09,0xff,0x64,0x4e,0x9c,0x3d,0x3b,0x56,0xf2,0x1e,0xb8,0x56,0xac, + 0x1c,0xbd,0x2c,0x50,0x24,0xa2,0xf5,0xf0,0x49,0xf2,0xda,0x70,0x07,0xfa,0x81,0x45,0xc8,0x83,0x14,0x5a, + 0x71,0x1a,0x35,0x2c,0xb9,0x3f,0x54,0x7c,0x1c,0x84,0x90,0x23,0x64,0x88,0x21,0x36,0x2d,0x16,0x48,0xa8, + 0x20,0x80,0xb0,0x2f,0x60,0xbf,0x63,0x5d,0x07,0x67,0xf0,0x13,0x52,0x37,0x19,0x30,0x4a,0x0a,0x79,0x3b, + 0x58,0x68,0xc5,0xcf,0x16,0x10,0x5f,0x84,0x08,0x29,0xc1,0x85,0x8b,0x9c,0xd9,0xf7,0x13,0x7d,0x7e,0x13, + 0xe1,0x94,0x8d,0x1a,0x67,0x2b,0xbe,0x62,0xc1,0x97,0xa5,0x18,0x27,0x8a,0xda,0xaf,0x88,0xc7,0x77,0x21, + 0xbd,0x9c,0x51,0x57,0x93,0x06,0xe4,0xe3,0xa7,0x62,0xeb,0x9e,0xf7,0xa5,0x94,0xdc,0xc3,0x76,0x1a,0x18, + 0x11,0xec,0x3b,0xc0,0xa8,0x61,0x0f,0xe9,0x1c,0x95,0xad,0x25,0x2e,0xa3,0xe1,0x31,0xfd,0x89,0xbf,0xe0, + 0x4f,0x78,0x59,0x87,0xea,0x93,0xa4,0x01,0x5d,0x7d,0x55,0xef,0x5b,0x86,0xf1,0xa7,0x39,0xe0,0xde,0x69, + 0x51,0x0d,0xec,0xbf,0x81,0x33,0xb7,0x12,0xae,0xb2,0x5e,0x15,0xc6,0x30,0xea,0xbb,0xf1,0x38,0xe8,0xd5, + 0x62,0xf7,0x28,0x6a,0x9c,0x3f,0xa7,0x96,0x54,0xd0,0xdd,0xbb,0xac,0xb5,0x05,0x0d,0xb1,0xaa,0xf8,0x44, + 0xf6,0xc2,0x7c,0x18,0x8c,0xe1,0xe3,0x1c,0x04,0x2a,0x7c,0x90,0x37,0x25,0x97,0xb5,0x27,0x98,0xbd,0x95, + 0xbd,0x56,0xc1,0x49,0x1d,0x7f,0xc9,0x04,0x1d,0xc7,0x8b,0xd5,0xe8,0xd4,0x79,0x01,0x70,0xf2,0x5e,0xad, + 0x95,0xa9,0x3d,0x34,0x5c,0x5a,0xe1,0xde,0x9e,0x69,0xcd,0x33,0x37,0xb3,0x1d,0x70,0xb6,0x56,0xca,0x1a, + 0x0e,0xe6,0x56,0x52,0x20,0xf5,0x35,0x0d,0x25,0xf1,0xf6,0xe2,0x95,0xc7,0xa6,0x40,0x0d,0x2f,0x23,0x47, + 0xd7,0x17,0xea,0xcf,0x90,0x11,0x10,0x9e,0xa2,0xd8,0xe3,0xbf,0x4a,0x25,0x3f,0xf3,0x34,0x7d,0x84,0x3a, + 0x21,0x7f,0x1c,0xb0,0x66,0x2f,0x1b,0x9e,0x8c,0x8c,0x8e,0x3a,0xd3,0xde,0xe0,0xdb,0x60,0xf4,0xa5,0x56, + 0x5e,0x61,0xe3,0x22,0x39,0x85,0x81,0xd9,0x38,0xe7,0xb8,0xe8,0x63,0x48,0xc7,0xe8,0x67,0x9e,0x9c,0x73, + 0x6a,0x9d,0x5c,0xf0,0xef,0xef,0xc9,0x35,0x7e,0xb2,0x64,0x8c,0x9f,0x45,0x32,0xe6,0xd4,0x59,0xb2,0xe0, + 0xdf,0x2f,0xc9,0x19,0xff,0x9e,0x26,0xd7,0xfc,0x7b,0x91,0x5c,0xe1,0x87,0xa8,0x26,0xc4,0xcb,0x18,0xaf, + 0x92,0x8c,0x93,0xcf,0x12,0x9f,0xbd,0x3c,0x56,0x93,0xe6,0x0b,0x09,0x89,0x41,0xd6,0x60,0xa6,0xbc,0x29, + 0xd8,0xcd,0x48,0x47,0x34,0x55,0xfa,0x5d,0xa9,0x5e,0xac,0x35,0x58,0xa9,0x33,0xf9,0xa4,0x4e,0x74,0xec, + 0xd0,0xb9,0x8e,0xf1,0x52,0x25,0x6a,0x1b,0x4e,0x73,0x13,0x98,0x13,0x27,0x11,0x1b,0xb0,0x11,0xc5,0x93, + 0xea,0x77,0x0e,0x77,0x88,0x6c,0xc6,0xe3,0x1d,0xc4,0x71,0x5e,0xb3,0x1d,0xc2,0xa6,0x69,0xd7,0xa9,0x89, + 0xa2,0x4c,0x39,0xc2,0xa5,0x8a,0x06,0x44,0xd4,0x14,0x78,0xc4,0xed,0x4e,0x06,0x13,0xe3,0x1a,0x68,0x76, + 0x4e,0x92,0x0a,0xef,0xbc,0x48,0x5c,0x93,0x61,0x24,0xb6,0xce,0x24,0x98,0x75,0xbb,0x37,0x0c,0x01,0x31, + 0x25,0xc6,0x95,0xb2,0xad,0x1b,0x6a,0xaa,0x73,0x2b,0x98,0x89,0x91,0x96,0xbc,0xaf,0x11,0x62,0x5f,0x23, + 0xde,0x95,0x3d,0x2f,0x0b,0x36,0x7c,0x72,0xe6,0x7a,0xae,0x46,0xe1,0x49,0x44,0x12,0x1a,0x53,0xb1,0x89, + 0x6f,0x6f,0xc3,0xa8,0x5a,0x9a,0x8d,0x78,0xb4,0xcc,0xbb,0xfa,0x16,0x93,0x63,0xd6,0xb4,0x2a,0xb3,0x63, + 0xcf,0xf6,0x0c,0xf3,0xab,0x09,0x1e,0xa5,0x5b,0xa9,0x21,0xc9,0xe2,0xa1,0xac,0xa8,0x8f,0x16,0xf5,0x8c, + 0xe1,0x1f,0xa8,0xec,0xef,0xd4,0xb9,0x9f,0xac,0x8c,0x6c,0x8e,0xca,0x77,0xd9,0x78,0xe8,0x09,0x99,0x33, + 0x03,0x0f,0xa9,0x59,0x36,0x8d,0x3c,0xad,0x65,0xe8,0x05,0xb8,0x2a,0x95,0x37,0x32,0x8e,0x28,0x2a,0xc8, + 0x8a,0x1a,0x96,0x3b,0xea,0x67,0xb8,0xd6,0x3a,0xe1,0x9a,0x4b,0xd3,0x62,0x39,0x13,0x5a,0x76,0xea,0x95, + 0x31,0x49,0x03,0x5d,0x27,0x02,0x0c,0x11,0x9e,0xd1,0xb5,0xea,0xb7,0x56,0xbd,0x5e,0x2a,0xcb,0xc9,0x94, + 0xa8,0x8f,0x97,0xa5,0x8a,0x8c,0xca,0xc2,0x25,0x25,0x4a,0x82,0x4e,0xa8,0x66,0xe5,0x03,0xae,0x99,0xf7, + 0x9a,0xa8,0x2a,0xe9,0xa8,0xaa,0xfa,0x81,0x1c,0xd4,0x84,0xf6,0x18,0x69,0xef,0x51,0xa1,0x89,0xfc,0xc0, + 0xa7,0x52,0x18,0x6d,0xc4,0x3c,0x39,0x6d,0x68,0x63,0x5c,0xff,0x13,0xc8,0x55,0x0b,0x82,0xf3,0xf5,0x7a, + 0x15,0xb2,0x02,0xa8,0x55,0xb4,0x39,0x49,0x4c,0x90,0xa9,0xe8,0x61,0xe8,0x57,0xc8,0x41,0x4f,0x96,0x49, + 0x19,0xce,0xc5,0xcc,0xb9,0x3c,0x84,0x5c,0xb0,0x63,0xc9,0x96,0xec,0xe5,0x38,0xac,0xfd,0x39,0xdd,0xdf, + 0x57,0xa9,0x5c,0x45,0x2c,0xc3,0xa5,0x13,0x7f,0x46,0x9d,0xf1,0x96,0xbd,0x02,0xfc,0x21,0xa2,0x77,0xb5, + 0x92,0xb8,0x2e,0x81,0xba,0xcc,0x5a,0xfb,0xa3,0xa0,0x31,0xeb,0x0c,0x18,0x04,0x70,0x31,0xb7,0x7c,0xcd, + 0xd5,0xe3,0xa2,0xfa,0x1d,0xd3,0x04,0xc0,0x82,0x61,0xdf,0x3c,0xbd,0x1e,0xda,0x82,0x34,0x15,0x31,0xb1, + 0xa3,0xef,0x55,0xc4,0x33,0x5f,0x15,0xd7,0x1a,0x68,0xed,0x01,0x5f,0xe8,0x7f,0xae,0x66,0x52,0xe8,0x9a, + 0xd7,0xeb,0x7b,0x87,0x87,0xba,0x63,0x3a,0x8c,0x1a,0x3c,0xd6,0xff,0x4a,0x0b,0xea,0x8a,0x08,0xae,0xca, + 0x7c,0x19,0x01,0x89,0xed,0x1e,0x09,0xdb,0xde,0xb0,0x31,0xc2,0xd8,0x7d,0xbf,0x71,0xb0,0x67,0xd4,0x0a, + 0x9b,0x70,0x4e,0x68,0x78,0x45,0x9b,0xc7,0xc2,0xf1,0x45,0x32,0x17,0x8b,0xa4,0x10,0x67,0x84,0xf3,0xae, + 0xe9,0x40,0x19,0xd3,0xd9,0x72,0x49,0x87,0x01,0x61,0xba,0xcb,0x86,0xe8,0x31,0xb9,0x30,0x09,0x2f,0x25, + 0xa1,0x7a,0x15,0x48,0x6f,0x21,0x74,0x13,0xc4,0xd1,0x1b,0x44,0x1f,0xd3,0xf1,0x93,0x9e,0xc5,0xe3,0x8d, + 0xb8,0x1c,0x14,0x49,0xc1,0x64,0xfa,0x6b,0xa0,0x09,0x9a,0x81,0xa2,0xbf,0x20,0xfa,0x75,0xee,0x19,0x69, + 0x7a,0x9c,0x14,0xa2,0x44,0x23,0x17,0x64,0x20,0x3f,0xf0,0x41,0x42,0xf4,0x23,0x33,0xd9,0x01,0x4b,0x9c, + 0x5b,0x05,0x24,0x04,0x5e,0x54,0x22,0xcb,0xe1,0xc2,0x3b,0x08,0x73,0x75,0xf6,0xb0,0x1c,0x78,0x69,0x28, + 0xc2,0x88,0x15,0x1a,0xfa,0x0b,0xae,0x4b,0x1b,0x93,0xe4,0x7d,0xed,0xbe,0xa7,0x28,0xbf,0x01,0xf5,0x8f, + 0x28,0xbc,0x68,0x88,0xbf,0xc9,0x89,0xf9,0x02,0x24,0xd3,0x69,0x3a,0xf9,0x62,0x4f,0x6a,0x2e,0x14,0x73, + 0xa1,0x76,0x99,0x0d,0xad,0x9f,0xa1,0xed,0x0b,0x45,0x1d,0xcf,0xdc,0x6e,0x6f,0x04,0xc9,0xb2,0x05,0x9d, + 0xf9,0x16,0x21,0xd3,0xd4,0x62,0x8e,0x1b,0x04,0x0e,0xce,0x15,0x05,0x0b,0xc7,0x6d,0x57,0x4c,0x86,0xb0, + 0xb4,0x91,0xe1,0xca,0x11,0x4c,0x73,0xa6,0x6e,0x4d,0xfc,0x4d,0xa2,0xf1,0xe7,0xd1,0xe0,0x27,0x42,0xf9, + 0x2b,0x41,0x5b,0x07,0x34,0xd8,0x7a,0x8d,0xd7,0x89,0x7a,0x3d,0xb2,0xc4,0x6a,0xb5,0xd9,0x40,0x3a,0xae, + 0xb1,0x9e,0xe9,0x90,0xe9,0x70,0x3a,0x77,0x66,0xd2,0xde,0x72,0x35,0xe9,0x80,0xda,0x0e,0x58,0xf7,0x39, + 0x6d,0xf6,0x34,0x6a,0x48,0xc6,0x27,0x84,0xd1,0x56,0xa3,0xe4,0x55,0xb8,0xa2,0xce,0xf0,0x79,0xaf,0x49, + 0x35,0x20,0x26,0x1e,0x6b,0x04,0xb7,0x91,0x10,0xb6,0xea,0xea,0x55,0x20,0x87,0x6b,0x74,0x39,0xea,0x95, + 0xa7,0x77,0xce,0x3c,0xea,0x31,0xce,0x25,0x9a,0x72,0xb6,0x32,0x21,0xa4,0x97,0xf6,0x15,0x75,0xeb,0xd9, + 0x14,0xcc,0xe9,0x80,0x14,0x9e,0xdb,0xd1,0x96,0x5a,0x6f,0xe6,0x1f,0xab,0x62,0xe6,0x99,0xd0,0xa7,0x70, + 0xb5,0x64,0x7d,0x45,0x48,0xa5,0x00,0xf8,0xd0,0xaa,0x2b,0x92,0x07,0xf0,0xc5,0x99,0x89,0x2a,0x43,0xfb, + 0x73,0x06,0x73,0x97,0x99,0x3a,0x26,0x55,0x27,0x97,0xa0,0x96,0x58,0x34,0x8d,0x5f,0x7a,0x51,0x2e,0x0d, + 0xaf,0x73,0xe1,0x4f,0x7b,0x8a,0x18,0x44,0xb4,0xd9,0x34,0x08,0x4c,0xa9,0x1c,0x33,0xa0,0x05,0xe6,0x75, + 0xca,0xf4,0x00,0x37,0x34,0x8d,0x36,0xbb,0x0d,0x91,0x9f,0x51,0x44,0xd6,0x56,0x07,0xd9,0xb2,0x41,0x78, + 0x5c,0xfa,0xb2,0x51,0x4d,0xbb,0x3e,0x2e,0x95,0x58,0x53,0x7d,0x05,0xf1,0x7f,0x96,0x3c,0x85,0x7b,0xd2, + 0xc0,0xa6,0x40,0xca,0xd7,0x25,0x10,0xf6,0x20,0x5a,0xc3,0x42,0x6d,0x1f,0xe1,0xfb,0xaa,0x1f,0x09,0xb8, + 0x32,0x22,0x42,0x88,0x1b,0x66,0x28,0x43,0xb3,0xe7,0x1e,0xdc,0xab,0x10,0xa7,0x13,0xab,0x0f,0x51,0xfe, + 0x15,0xc1,0xc5,0x4a,0x1e,0x58,0xfc,0x7f,0x40,0xe4,0x3c,0x48,0x81,0x5e,0x78,0x3e,0x0c,0xe8,0xe5,0x9c, + 0x99,0x8a,0x42,0x74,0xfa,0x75,0xa4,0xe2,0xe6,0x98,0x50,0x55,0x5c,0x0a,0x6b,0xd8,0x14,0xcf,0x84,0x25, + 0x31,0xe3,0x25,0x23,0xa6,0x89,0xc3,0x54,0xc4,0xac,0x13,0x76,0x65,0x8e,0xff,0x42,0x2c,0xc4,0x99,0xb8, + 0x16,0x63,0x71,0xe9,0xd9,0x56,0x83,0x2c,0xd7,0xe4,0x0e,0x91,0x4d,0x46,0x5d,0xd9,0xe4,0x5b,0x52,0x36, + 0x7b,0x4b,0x61,0xc8,0x10,0x4e,0x12,0x6c,0x83,0x94,0x88,0x7c,0xd5,0xa5,0x88,0x16,0x78,0xa5,0x32,0xde, + 0x94,0x9e,0xcc,0x39,0x6b,0x10,0x51,0x92,0xbe,0x06,0xa5,0x91,0x1a,0x7b,0x07,0xab,0x8a,0x25,0x34,0x3c, + 0x68,0x14,0xc8,0x58,0xc3,0x8e,0xb8,0x64,0xe0,0xd5,0x88,0x83,0xf5,0x4b,0xf2,0x2e,0xe3,0x2d,0xbe,0x1c, + 0xb4,0x3a,0x59,0x75,0x1f,0xbe,0x88,0xf0,0x0f,0xa8,0x4e,0x21,0xfa,0x20,0xb8,0xf1,0x29,0x59,0x42,0xf1, + 0x4a,0x52,0x16,0xab,0x7b,0x00,0xac,0xf7,0x13,0x6e,0x76,0x82,0x29,0x53,0x39,0x24,0xfa,0x26,0x5c,0x25, + 0x55,0x34,0x3c,0xb9,0xa2,0x61,0x8e,0x5a,0x46,0xb6,0x2b,0x17,0x8e,0x8a,0x88,0x08,0x17,0x40,0x06,0x73, + 0x89,0x5e,0x22,0x90,0x8c,0x92,0x3b,0xc1,0x14,0xba,0xf0,0x4d,0xa1,0x6b,0x9a,0xb0,0xe2,0xa4,0x1a,0x45, + 0x5d,0xfe,0xab,0x44,0xdc,0xd0,0x39,0x36,0x3b,0x21,0x3a,0xca,0x06,0x03,0x19,0xb5,0xac,0xf2,0x27,0xd1, + 0xd0,0xb8,0x68,0x7d,0x7f,0x48,0x23,0xfc,0x35,0xa4,0x1a,0xb3,0x70,0x22,0x60,0x76,0xc2,0xfe,0xf4,0xc4, + 0x28,0x12,0x99,0x46,0x23,0xa3,0x99,0xf9,0x35,0xe4,0xe8,0x16,0x33,0xa0,0xa6,0xab,0x70,0xce,0xca,0xb5, + 0xde,0x84,0xf2,0x94,0x22,0x1b,0xf7,0x53,0xe9,0xf0,0xfd,0x84,0x17,0x3c,0x8d,0xe0,0x8c,0x16,0x30,0x8a, + 0x61,0xf3,0x38,0x44,0x15,0xc3,0x56,0x05,0x08,0x44,0xa5,0xac,0x19,0xd4,0x57,0xe1,0x15,0xf0,0x61,0xfc, + 0x2b,0xfd,0x55,0x6d,0xb6,0x3f,0x50,0xcd,0xc5,0x84,0x8c,0x0b,0x2b,0x27,0xe3,0x85,0x9f,0x40,0x1b,0xc9, + 0x24,0xc7,0x04,0x7c,0xaa,0x02,0x06,0x86,0x2b,0x66,0x5b,0x89,0xfd,0xbe,0x00,0x98,0x07,0xbd,0x54,0x0d, + 0x8c,0xfe,0x8e,0x03,0xd3,0x59,0x34,0xea,0xf0,0xde,0x86,0xd6,0x45,0xcb,0x7e,0x62,0x2c,0xe3,0xab,0x92, + 0x4d,0x36,0xfe,0xa2,0x5e,0x65,0x9b,0x6b,0x27,0x24,0x62,0xe1,0x55,0x65,0xf9,0x91,0x97,0x70,0x60,0xea, + 0xc9,0x3a,0x19,0x89,0xda,0x33,0x57,0x67,0xeb,0x90,0x2d,0xf1,0x68,0x11,0x0d,0xc3,0x59,0x92,0xf5,0xf7, + 0x2e,0x72,0x3a,0x58,0x11,0xad,0x4a,0x3d,0xf5,0xf3,0x8a,0x65,0x41,0x67,0x44,0x36,0xa5,0x67,0x08,0xe8, + 0x5a,0x2d,0x11,0x08,0x81,0xf0,0xcd,0x1c,0x92,0xb1,0xac,0x7a,0x2b,0x2b,0x59,0x12,0xd9,0x43,0xd9,0x94, + 0x3a,0xd4,0xd8,0x84,0xb2,0xd8,0x8f,0xf7,0xcd,0x3c,0xad,0x11,0xd8,0x42,0x7f,0x8c,0xef,0xb0,0xff,0x9a, + 0xf8,0x23,0x63,0x82,0x35,0x79,0x1c,0x66,0x9e,0x84,0xce,0xa2,0xa2,0x2a,0x00,0x7d,0x39,0x24,0x16,0x68, + 0x49,0xdf,0x66,0x38,0x6e,0xa2,0x58,0x37,0x53,0x74,0xd6,0x16,0xc5,0xf3,0x84,0x8a,0x17,0xaa,0xb8,0x27, + 0x0a,0x9d,0x63,0x94,0x9e,0xa3,0x4a,0x19,0x66,0x96,0xa5,0xc9,0xe0,0x17,0x56,0x10,0x87,0x54,0x94,0x32, + 0x3b,0xcb,0x5f,0x1b,0x77,0x66,0x9a,0x14,0x82,0x01,0xde,0xfc,0x06,0xdd,0xb1,0xd4,0x92,0xf8,0x5a,0xcb, + 0x63,0x7b,0xb6,0xd8,0x1c,0x90,0xca,0xe5,0xd8,0xcd,0xf5,0x60,0xc2,0x1b,0x4c,0x73,0x6c,0xae,0x00,0x6d, + 0x36,0xa2,0x7f,0x56,0x1a,0xce,0x88,0x03,0x5b,0xf5,0xd9,0x52,0x21,0x57,0x98,0x8d,0xf6,0x39,0xf7,0x90, + 0x30,0x39,0x13,0xe3,0xf3,0x28,0x06,0xca,0xd9,0x78,0x98,0xcc,0xf3,0xce,0xf0,0x23,0xce,0x59,0x31,0x01, + 0x2b,0x66,0xab,0xd5,0x52,0x96,0xe6,0x04,0x42,0x39,0x9d,0xc2,0x24,0x08,0x9b,0x9e,0xf2,0xbb,0xb1,0x94, + 0xb8,0x69,0xbe,0x27,0xc6,0xc1,0xa4,0x6d,0x6d,0x8d,0x50,0x6c,0x8e,0x10,0xc1,0x99,0xa6,0x98,0x4d,0xe3, + 0xf8,0x06,0xd2,0xb1,0x92,0x29,0xb1,0xfc,0x3a,0xc5,0x1e,0x90,0x85,0xd1,0xd7,0x17,0xa3,0x5d,0x65,0x0b, + 0x09,0xab,0x0d,0xf6,0x91,0x44,0x08,0x19,0x09,0x71,0x76,0x87,0x35,0xee,0x96,0xe8,0x4a,0x93,0xb0,0x84, + 0xd2,0xf2,0xa4,0x2d,0x2f,0x1d,0xe6,0x31,0x6b,0xd7,0xb7,0xec,0xe0,0x94,0x13,0x82,0xed,0x8b,0x52,0x9e, + 0xd4,0xbe,0xf2,0x24,0x94,0x4e,0x88,0x0b,0xb2,0xf3,0xfb,0xe4,0x90,0xd6,0xa4,0x99,0xf6,0xe0,0x10,0x0b, + 0xa4,0x23,0x72,0x21,0xc1,0xb9,0xc5,0xb9,0xdd,0x96,0x1b,0xe1,0xbc,0xc0,0x18,0x3d,0xa7,0xfb,0x0d,0x7b, + 0xb7,0xc3,0x3b,0xb8,0x3d,0x69,0x74,0x60,0x85,0xde,0x02,0x26,0x4f,0xa1,0x78,0x6e,0x96,0xd1,0x66,0x57, + 0x1c,0x71,0xc6,0x6d,0x94,0x13,0x15,0x60,0x6d,0x94,0x20,0x14,0xca,0xb6,0xf1,0xc0,0xe7,0xda,0x86,0x22, + 0x19,0xc3,0xaf,0xbf,0x61,0x64,0xf9,0xa4,0x61,0x0a,0xc1,0x9e,0x88,0x38,0xd3,0x5b,0x44,0x03,0x3b,0x61, + 0x7a,0x5f,0xbd,0xa8,0x1b,0xf4,0x49,0x7b,0x75,0x86,0xbe,0x8b,0xfb,0xf7,0x07,0x47,0xf1,0xb6,0x5a,0x66, + 0xe8,0x3b,0xe7,0xb7,0x4a,0x43,0x2b,0x27,0x76,0x43,0x1b,0xef,0x40,0x45,0xfc,0x1a,0x01,0xb7,0x9b,0x78, + 0x07,0xb9,0x0a,0x55,0xcd,0xde,0xa9,0x52,0xcb,0xc5,0x3d,0x09,0xe2,0xf3,0x96,0x35,0x00,0x6b,0x44,0x19, + 0x4e,0xa1,0x6b,0x61,0xf0,0x1c,0x33,0x9e,0x6b,0xc3,0xa5,0x89,0xa8,0x0b,0xfb,0x76,0x36,0x69,0xd4,0xdc, + 0xc1,0x13,0x08,0xc5,0xb6,0x0c,0x8b,0x06,0x15,0x64,0xc5,0x7c,0xd8,0x3f,0x05,0x45,0x56,0xb0,0x93,0xe0, + 0xc6,0x13,0xf7,0x3c,0xdd,0x52,0x2b,0xb0,0xc9,0xfd,0x6e,0xc6,0xae,0x59,0x8c,0x62,0xe0,0x99,0x86,0xdf, + 0xf5,0x3a,0x73,0x2d,0x3c,0xd7,0xc4,0x72,0x7f,0x6f,0x4a,0x43,0x2c,0x0b,0xf8,0x66,0xd5,0x56,0xc5,0x3f, + 0xe7,0x3b,0x28,0x3d,0x73,0xff,0xda,0xf7,0xc0,0xbe,0x51,0xf2,0xe4,0x63,0xa8,0x04,0xe2,0x57,0xbc,0xe7, + 0x5d,0x82,0xc8,0xfd,0x37,0x3a,0x6a,0xb9,0x14,0x6c,0xc8,0xf8,0x89,0x48,0x0b,0xfd,0x84,0x28,0xc6,0xf8, + 0x1d,0xc5,0xfa,0xc1,0xb7,0xdf,0x6f,0x2e,0x7f,0x3d,0x94,0xc3,0xba,0x17,0xec,0x04,0x3d,0x19,0xd7,0x31, + 0x87,0xd1,0xf7,0xac,0xc5,0x7d,0x00,0xdb,0x02,0x94,0xae,0x63,0x90,0x26,0x0b,0x31,0xfe,0x68,0x77,0x42, + 0x25,0x65,0x77,0xe7,0x83,0x82,0x77,0x28,0x91,0xbb,0x09,0xea,0xc4,0xc6,0x03,0x91,0xc5,0x17,0xad,0x41, + 0x20,0x80,0xff,0xbd,0x84,0x7a,0x11,0x09,0xfa,0xcd,0xbd,0x5d,0xc9,0xfa,0x98,0x76,0x6b,0x0a,0x5d,0x06, + 0xc1,0xa0,0x21,0x89,0xab,0xb5,0xef,0x7e,0x28,0x75,0x8c,0x5c,0x54,0x27,0xfd,0xea,0x78,0x03,0x77,0x02, + 0x74,0xd3,0xa6,0xdd,0x1f,0xf6,0x8a,0x5b,0x0f,0xaa,0x8b,0xb3,0x20,0x0e,0x16,0x69,0x7d,0xce,0x36,0x45, + 0x43,0xf5,0xb8,0xa5,0x18,0x7a,0xeb,0x7d,0xda,0xd1,0x8e,0x8d,0x8c,0xf7,0xfb,0x4a,0x96,0xd7,0xef,0x24, + 0xb4,0xcd,0x85,0xba,0x2b,0xe6,0xb6,0x78,0x97,0xd3,0xec,0x22,0x68,0x58,0xe8,0x3d,0x6a,0xed,0x0f,0x36, + 0xa8,0x2c,0xe5,0xac,0xe5,0x00,0x64,0x9c,0xaa,0x33,0xdf,0x43,0xdb,0x80,0x26,0xb0,0x02,0x7c,0xaf,0x0b, + 0x98,0xc5,0xd3,0xb7,0xd5,0xa0,0xad,0x35,0x29,0xd8,0xd8,0x69,0xce,0xbf,0x38,0xec,0xf1,0x8b,0x83,0x15, + 0x87,0x2a,0x1e,0x35,0xcd,0x1e,0xbb,0xf6,0x9f,0xe7,0x4f,0x8b,0xb2,0xb3,0x16,0xfc,0xb5,0x68,0x22,0x23, + 0x1c,0xbc,0xbf,0xcf,0x49,0x8c,0x85,0x4d,0xdd,0x04,0x13,0xea,0x21,0xf3,0x80,0xf5,0x83,0x92,0x51,0xbb, + 0xf8,0x57,0xa0,0xe0,0x70,0xbc,0xd3,0x2f,0x0b,0x92,0xd4,0x1e,0xd4,0xc7,0xbd,0xef,0xfa,0xcd,0x2a,0x3d, + 0x67,0x1b,0x26,0xb5,0xe5,0x29,0x47,0x49,0x21,0x2a,0x80,0x9f,0xdb,0x92,0x15,0x28,0xe3,0x94,0x74,0x84, + 0x4f,0x57,0xa0,0xcd,0x46,0x20,0x87,0x12,0xae,0x86,0x61,0xa9,0xe7,0x5c,0x09,0x3c,0x13,0xc7,0x8a,0x97, + 0xac,0x8a,0xa3,0x39,0x95,0xec,0x34,0xf6,0x95,0x32,0x56,0x5c,0x08,0xe3,0xb9,0xf5,0x7a,0x99,0xb1,0xb7, + 0x22,0xfd,0x10,0x1f,0xc8,0x03,0x06,0x2d,0x81,0xd1,0x3c,0x84,0x0c,0xe9,0x0d,0xc2,0x58,0x9d,0x17,0x73, + 0xe2,0xd1,0xb9,0x86,0x86,0xa4,0x09,0xe3,0xf4,0x13,0x40,0xf7,0x36,0x53,0xb4,0xdc,0xcd,0x37,0xce,0xaf, + 0x95,0x68,0xc2,0x2a,0x8f,0x95,0x07,0x1c,0x36,0x53,0x46,0x64,0x43,0xf6,0x20,0x29,0x07,0xbd,0x5e,0x46, + 0xdb,0x15,0x06,0x8a,0xd9,0x48,0x93,0xd1,0x61,0x8a,0x03,0xde,0xb9,0x51,0x7a,0x6e,0x25,0xcf,0x34,0x4c, + 0xea,0xc8,0x75,0x9e,0x37,0xd7,0x7a,0x2d,0xdb,0x49,0xcd,0x79,0x37,0x90,0xac,0xf8,0xe0,0x04,0x2b,0x77, + 0x01,0x97,0x3c,0xa9,0x1e,0xaa,0xe4,0x8f,0x7a,0xbb,0x56,0x17,0x34,0x00,0xfc,0x15,0x95,0xd8,0x6a,0x44, + 0x48,0x57,0x62,0x45,0xa4,0x06,0x91,0xbe,0x9a,0x85,0xca,0x95,0x6c,0xa5,0x4c,0x2a,0xc5,0xc7,0x4f,0xf0, + 0x53,0x0e,0x69,0xd6,0x68,0x8a,0x3f,0x42,0xe4,0x95,0x18,0x2f,0xdb,0x5f,0xc0,0xd3,0x6a,0x15,0x67,0x20, + 0x70,0x21,0x81,0xc8,0x60,0x13,0x01,0xec,0x4f,0x3f,0x6e,0x5f,0x29,0x79,0xf3,0x74,0x7f,0x7f,0x6e,0x80, + 0x9a,0x38,0x13,0xf5,0x35,0x1c,0xd2,0xba,0xbe,0xcd,0x72,0xa2,0xc1,0xf9,0x9b,0x95,0xfd,0x06,0x5b,0x78, + 0xd5,0x88,0x38,0x33,0xeb,0x92,0x7f,0x2b,0xdb,0xbb,0x95,0x6f,0x71,0x47,0x6d,0xad,0x30,0x8e,0xc0,0x54, + 0xab,0x9a,0xdc,0x0c,0x8a,0xe1,0x8f,0x70,0x86,0x52,0xc9,0x01,0xe4,0xcc,0xb3,0x90,0x2d,0xfe,0xe7,0x36, + 0x2a,0x07,0x17,0x40,0x74,0x3f,0x1d,0xd4,0xef,0xd6,0x16,0xe7,0xad,0x16,0xe7,0xdc,0x62,0x7b,0x12,0x74, + 0xcb,0xcc,0x71,0xdb,0xf9,0xae,0xa2,0x09,0xbb,0x94,0xd1,0x57,0x3c,0xed,0xc1,0x2a,0x57,0x13,0x53,0xd3, + 0x3f,0x08,0x5b,0x9b,0xe6,0xb8,0x7f,0xd4,0xdb,0x90,0xd1,0x15,0x17,0xa7,0x61,0x73,0x5b,0xa8,0xe5,0xdd, + 0x36,0xe3,0x0c,0x95,0xa9,0x71,0xd4,0xd7,0x21,0xbb,0x59,0xe1,0x5d,0xba,0xb7,0xe4,0x1a,0xaa,0xa1,0x13, + 0x02,0x7e,0x6a,0xa9,0x5f,0xa6,0x97,0xaf,0x98,0x70,0xca,0x98,0x80,0xea,0x05,0xfd,0xa0,0xe7,0x1b,0x7b, + 0x64,0x7e,0x35,0x90,0x03,0xa8,0x88,0xa8,0xfd,0x20,0x8a,0x46,0x54,0x01,0x9c,0xb2,0x67,0xc4,0x17,0x49, + 0x8f,0x2f,0x72,0x60,0x19,0x50,0x3e,0x6a,0x75,0xba,0x2b,0xcf,0x1f,0xc2,0x19,0x15,0xd8,0x68,0x05,0xb5, + 0x02,0x19,0xfe,0xd1,0xe6,0x90,0x05,0xdb,0x3b,0x16,0x61,0xae,0xa2,0x67,0xe8,0xf2,0xda,0xe6,0xb1,0x84, + 0xcd,0x63,0xa9,0x6e,0x31,0x60,0xf4,0xef,0xda,0xe6,0xbb,0x49,0xd4,0x88,0x70,0xda,0x3b,0x9b,0x48,0xcf, + 0xbf,0xa1,0x0e,0x3d,0x6a,0x67,0xdb,0x1a,0x9b,0xe7,0x3b,0x94,0x8c,0xad,0x94,0x3f,0x54,0x93,0xe0,0xcc, + 0xf2,0x73,0x59,0x66,0x1c,0x04,0x9b,0xe6,0xa6,0x0e,0x15,0x12,0xb4,0xc8,0xaf,0x36,0xe6,0xff,0x2a,0x41, + 0x33,0x02,0xcc,0x13,0x51,0x63,0x18,0xcd,0x24,0xf1,0x3f,0x61,0x71,0xf8,0x2a,0x29,0x5b,0x49,0xcc,0x7b, + 0x69,0xe9,0x0f,0x62,0x1c,0x34,0x0a,0x24,0xac,0x5c,0x5e,0x69,0x1f,0x08,0xa6,0x0c,0x57,0x51,0x9a,0xac, + 0x40,0xcd,0x4f,0x14,0xe3,0x92,0x12,0xc8,0x43,0x36,0x0a,0x1e,0x6d,0x10,0x3e,0xce,0xd7,0xeb,0x37,0xb0, + 0xd3,0x58,0xa9,0x4d,0x0f,0x21,0x84,0x7a,0xd2,0xc5,0x8c,0x48,0x5d,0xe7,0x7b,0x15,0x4f,0x22,0xec,0xba, + 0x82,0x0d,0xec,0x33,0x20,0xef,0x21,0x02,0xce,0x21,0x5a,0xac,0x0d,0x03,0xfe,0xea,0x5d,0x58,0x12,0xf0, + 0x22,0x93,0x18,0x66,0xfc,0x20,0xf8,0x65,0xab,0x10,0x32,0xbd,0x55,0xf8,0xd1,0xd7,0xfb,0xe7,0xec,0xf7, + 0x93,0x66,0x1c,0xb5,0x7a,0xeb,0x43,0x09,0x01,0x48,0x12,0x10,0x55,0x5d,0x5c,0xce,0x68,0x47,0x54,0xb4, + 0x3b,0x64,0x1e,0xa8,0x50,0x60,0xc1,0x93,0x97,0x8f,0x9e,0x3c,0xd6,0x26,0xd0,0x8a,0x97,0x1f,0x06,0x75, + 0x49,0x63,0x89,0xa1,0xbb,0x6f,0x44,0x2b,0x67,0x57,0x36,0x6b,0xe6,0x24,0x33,0x1d,0x17,0xa0,0x59,0x84, + 0x7b,0x81,0xdb,0x42,0x53,0x2a,0x87,0x7a,0xf3,0xa1,0x7e,0x8e,0x55,0xbd,0x9e,0xa1,0xd4,0xd7,0xba,0x6d, + 0x27,0x45,0xe2,0x52,0x8d,0x46,0x2b,0x2a,0x4b,0x5a,0xab,0x04,0xd0,0xf1,0x6c,0x58,0xd3,0x35,0x76,0x65, + 0x16,0x43,0x45,0x1e,0xc3,0x69,0xed,0x15,0x5c,0x21,0xde,0x3f,0xf9,0xf5,0xfd,0xc3,0xb7,0x4f,0x1e,0x36, + 0x46,0x4d,0xe9,0x4b,0x77,0x86,0xea,0xd9,0xe1,0x38,0x97,0x99,0x5c,0x9e,0x1b,0x92,0xc9,0x37,0xf1,0x93, + 0x44,0x68,0x17,0xcb,0xe7,0x44,0x3c,0x4c,0x33,0xc2,0x36,0x30,0x98,0x49,0xcf,0x52,0x85,0x14,0x85,0xe9, + 0x4a,0xeb,0xe2,0x15,0x45,0x39,0xc0,0x00,0x64,0x50,0x77,0xdc,0xcb,0x62,0xb3,0x85,0x69,0x38,0xd9,0x3d, + 0xdc,0x74,0x2c,0x83,0x07,0x09,0x3f,0xb5,0xf6,0xa3,0x21,0xd9,0x38,0x9e,0x4e,0xaa,0xf7,0x8a,0xda,0x94, + 0xb8,0x35,0xd2,0x67,0x0e,0xb0,0xdb,0x0a,0xcd,0x17,0xb0,0x8c,0x02,0xa2,0x57,0x30,0x42,0xed,0x42,0xa9, + 0x2e,0x14,0x59,0x6d,0x4a,0x27,0x5d,0x6f,0x2e,0x2a,0x83,0x77,0x44,0x06,0x8b,0xa4,0xb0,0x83,0xe3,0x89, + 0x06,0x11,0x21,0xd1,0x2e,0x56,0x48,0x71,0x6c,0x11,0x1f,0x7e,0xec,0x62,0x4b,0x60,0xfb,0xb8,0xd6,0x84, + 0x18,0xc3,0x1e,0x1b,0xc8,0x2b,0x62,0xc9,0x5a,0xc7,0x73,0x04,0x0c,0xbf,0x7c,0x2e,0x34,0x19,0xe7,0xf0, + 0x67,0xd2,0x60,0x8a,0x78,0x56,0x14,0x0f,0x24,0x79,0xb3,0x41,0xf6,0x37,0x7c,0x05,0xc1,0xd2,0x1b,0xd6, + 0x18,0x11,0xa1,0x3f,0xd0,0x58,0x87,0x0d,0x8e,0x21,0xf8,0x19,0x73,0x2c,0xd7,0x0c,0x63,0xe6,0x4a,0x24, + 0x91,0xc3,0x2c,0x77,0x0c,0xab,0xe4,0x15,0x50,0xc0,0x9b,0x9a,0xe5,0x82,0x02,0xfe,0x56,0x19,0xec,0x2a, + 0xe5,0x05,0x17,0xec,0xb8,0x18,0x40,0x19,0x73,0x89,0x0a,0xa7,0xbd,0x2b,0x98,0x54,0xfe,0xb2,0xfe,0x5a, + 0x6f,0x79,0xbe,0x85,0x6c,0x6e,0xe5,0xf9,0x61,0xd4,0xda,0xda,0xfb,0x8c,0x70,0xbb,0xba,0x79,0x81,0xda, + 0x3f,0x4b,0xb2,0xde,0xd1,0xc6,0x3b,0x14,0x8d,0xb8,0x9d,0xa8,0x1b,0xd8,0x7b,0xe3,0xcf,0x12,0x7f,0xa6, + 0xf8,0x03,0x8b,0xf0,0x0b,0xfa,0xbf,0xa0,0xff,0x67,0xda,0xd7,0xb2,0x43,0x6c,0x42,0xe0,0xa3,0xec,0x6d, + 0x6b,0x3f,0xa6,0x7a,0x06,0xb9,0xd5,0xfd,0xef,0x94,0xe1,0xf6,0x77,0xf7,0x68,0xe0,0x60,0xd2,0xd0,0x8c, + 0xdb,0x99,0xb3,0xe8,0xfe,0x37,0xad,0x02,0xb3,0x46,0x81,0x65,0xf4,0xdd,0x3f,0x5b,0x05,0x96,0x8d,0x02, + 0xd3,0xe8,0x9b,0xff,0x6e,0x15,0x98,0x36,0x0a,0x1c,0xdd,0xfb,0x06,0x3c,0xe2,0x7a,0x4d,0x0f,0xbc,0xa5, + 0xfd,0x2e,0xf6,0x8e,0xa2,0xee,0x8c,0x03,0x64,0x9c,0xaf,0xd7,0x17,0xeb,0xf5,0x22,0xba,0xa9,0x2e,0x33, + 0xed,0x0e,0x30,0x49,0xa9,0xd6,0xfb,0xdf,0xc4,0x33,0x84,0x0d,0x64,0x8b,0xd8,0x81,0x4a,0xfa,0x2e,0x9e, + 0xb7,0x92,0xbe,0xfb,0x67,0xbc,0x6c,0x25,0x7d,0x73,0x18,0x2f,0x7a,0xbd,0x46,0xca,0x51,0xbc,0x38,0x38, + 0x68,0x7c,0x76,0x14,0x5f,0x34,0xcb,0x7c,0x77,0x3f,0xbe,0x68,0x96,0x39,0xba,0x77,0x3f,0x3e,0x6f,0x16, + 0x3a,0xba,0xf7,0x6d,0x7c,0x7e,0x70,0x00,0xba,0x4c,0x4d,0x88,0xdb,0x79,0xd7,0x09,0x0d,0x47,0x8c,0x35, + 0xc3,0x35,0xb8,0xe6,0xc0,0x8f,0xca,0xb3,0x25,0x1c,0xeb,0x71,0xd3,0x98,0xaf,0x69,0x4b,0x5c,0x1f,0x1c, + 0x44,0xb8,0xd2,0x6b,0x4f,0x47,0xd7,0x1d,0xab,0x5b,0xf9,0x60,0xc5,0xaf,0x7c,0x41,0xac,0x85,0x48,0x31, + 0x0c,0x19,0x96,0x98,0x49,0x37,0x17,0x37,0x3b,0x40,0x8b,0xa5,0xd2,0xa5,0x78,0xe5,0x3b,0x0b,0xc6,0xf0, + 0x80,0x3f,0x03,0x8f,0x83,0xfb,0x39,0x1c,0x7c,0xa5,0x3e,0x7c,0x41,0x42,0x3b,0x49,0x60,0x4a,0x68,0xa4, + 0xbd,0x2b,0x3a,0x61,0xed,0x1d,0x24,0x21,0x74,0x54,0xc9,0xea,0xc1,0xe1,0xf0,0xce,0x98,0x5e,0xef,0xf4, + 0x26,0xbd,0x3b,0x41,0x14,0xde,0x81,0x60,0x3e,0x0a,0x62,0x93,0x68,0x1b,0x5f,0x45,0x2e,0x5f,0x04,0x36, + 0x63,0x45,0xc0,0xd0,0x41,0x53,0xfd,0xc0,0x5b,0xad,0xe9,0xa7,0x1c,0x9c,0x7c,0x5c,0x21,0x44,0x1a,0xdb, + 0x35,0x95,0x23,0x0e,0xcd,0xeb,0xd1,0x9e,0xff,0x6e,0x0b,0x48,0xea,0xfe,0x22,0x5d,0x36,0x8d,0x48,0x5c, + 0x24,0x9f,0xcd,0xb6,0x89,0xb8,0x57,0x60,0x13,0xc5,0x27,0x9e,0x49,0xd0,0x6f,0xf6,0x64,0x0f,0x6b,0xab, + 0x7d,0x37,0x31,0x3e,0xdc,0xde,0xbf,0xe1,0x6b,0x34,0xa4,0xd0,0xc1,0xe2,0xf8,0x12,0x34,0xbe,0x3d,0x34, + 0xf1,0x1d,0x82,0x7e,0xf6,0x2b,0x6b,0x9b,0x71,0xfe,0xdd,0xca,0x38,0x62,0xbe,0x36,0xf5,0xe3,0x1a,0x5e, + 0xa6,0x4b,0x15,0x4a,0x48,0xbf,0xe3,0x20,0xbb,0xa5,0x42,0xcf,0x8b,0x4e,0x3a,0x0a,0xd6,0x6a,0xbd,0x07, + 0xc0,0xe9,0xac,0xbd,0x36,0xae,0xa6,0x2e,0x60,0x50,0x69,0xfd,0x5b,0x65,0x12,0xec,0xc2,0xfb,0x86,0x10, + 0x3c,0xac,0x23,0xfd,0x22,0xec,0x09,0x4b,0xf9,0xff,0x4f,0xe7,0x6b,0x47,0x58,0xbf,0x88,0xf1,0x8d,0xa5, + 0x52,0xfb,0x5c,0x8a,0xf0,0x30,0x9c,0xbc,0xd5,0x51,0x0f,0x43,0x91,0xec,0xec,0xbc,0x1e,0x86,0x94,0xaf, + 0x09,0xe3,0x85,0xcc,0x57,0x81,0xb0,0x15,0x70,0x7e,0x14,0x13,0x53,0x90,0x4d,0xa7,0x73,0x15,0x4b,0x26, + 0x58,0x14,0xab,0x4a,0xae,0x96,0x01,0x5f,0xb2,0xa0,0xd4,0xd0,0x43,0xd7,0xa6,0x4a,0x60,0x23,0x74,0xf5, + 0xc8,0x07,0xbe,0x5a,0x04,0x3f,0x81,0xd5,0xde,0x31,0x8a,0x49,0x57,0x40,0xda,0x2c,0x6d,0x7e,0x67,0x22, + 0x03,0x6e,0x06,0xb8,0x2b,0x75,0x0a,0xa9,0x58,0xe5,0x71,0x28,0xfa,0x0e,0x75,0xec,0x23,0xe2,0x02,0xb6, + 0xf4,0x77,0xd9,0x70,0x62,0xaf,0xf1,0xae,0xac,0xaf,0x5d,0xa5,0xee,0xd2,0x49,0x26,0x94,0x7f,0x42,0xe7, + 0xc4,0x28,0x3e,0x99,0x88,0x6a,0x14,0x57,0x9d,0x20,0x90,0x5b,0x10,0x50,0xf4,0x50,0xc9,0x97,0x28,0xb0, + 0x4b,0xd4,0x7a,0xad,0x5e,0x2e,0x0e,0x38,0xbc,0x0a,0x92,0x58,0xda,0xc4,0x51,0x70,0x4d,0x20,0x4b,0x1c, + 0x6b,0x4a,0x39,0xa1,0x5c,0x59,0x2c,0xd9,0x22,0x6d,0x28,0x35,0xf5,0x41,0x66,0x3e,0x68,0x05,0x9b,0xcd, + 0xfc,0x33,0xb2,0x6c,0xf6,0xc6,0x7d,0xcd,0xf2,0x17,0x0f,0x44,0xfd,0x60,0x36,0x1e,0xac,0x6a,0xd3,0xfb, + 0xac,0x6d,0x7a,0x0f,0xda,0x14,0x9e,0x0d,0x7c,0xab,0x09,0x42,0x75,0xde,0x64,0x26,0xfc,0x55,0x81,0xf0, + 0x57,0xca,0x4f,0xc2,0xa8,0xd9,0xad,0x33,0x62,0xa3,0x49,0xdf,0x14,0x3f,0x6b,0xcd,0x9a,0x32,0xb5,0xcf, + 0x92,0x60,0x6f,0xef,0x22,0x18,0xa8,0x4b,0x93,0xf8,0x0e,0xea,0x20,0xd4,0x52,0x40,0xca,0xd8,0xa1,0x96, + 0x77,0xee,0xa8,0x91,0xdf,0x19,0x22,0xc5,0x20,0x54,0x3c,0x47,0x01,0xc3,0x1b,0x7b,0x2c,0xa8,0x4f,0xc7, + 0xc4,0x5f,0xf6,0x32,0xe0,0xc3,0x48,0x9b,0xe3,0x14,0xa0,0x15,0x33,0x84,0x8c,0x67,0xa3,0x1a,0x03,0x3e, + 0x84,0x4d,0xc1,0xd9,0x45,0xc4,0x83,0x5f,0x2d,0x71,0xe3,0x1f,0x75,0x31,0xbe,0x43,0xf8,0x53,0x12,0xd2, + 0xbc,0x23,0x8c,0xe9,0x8d,0x8b,0x4e,0xb2,0x13,0xa2,0xc1,0x9d,0x9b,0xa0,0x57,0xf4,0x82,0x4d,0xe0,0x2d, + 0x40,0x21,0x7d,0x31,0xa3,0x8f,0xdc,0x68,0x0a,0xff,0x28,0x5d,0x04,0x42,0xef,0x3e,0xa9,0x93,0x20,0x7a, + 0x70,0x08,0xd9,0x22,0x2e,0xc8,0x7a,0x6e,0x52,0x47,0x94,0xfa,0x47,0x69,0xe3,0xe4,0x86,0x3f,0xf2,0xc7, + 0x7e,0x09,0xf0,0xce,0xdf,0x1f,0x1c,0x0d,0x6f,0xa8,0xd7,0xb1,0x3b,0x67,0x7e,0x24,0xfa,0x8c,0x58,0x6e, + 0x1e,0x80,0x49,0xfd,0xb1,0x24,0x44,0x8f,0xc1,0x6c,0x62,0x55,0x9a,0x4b,0x70,0xa8,0x25,0x26,0x70,0x7e, + 0x01,0x81,0x4a,0x2d,0xfc,0x54,0x26,0xbf,0xc2,0x34,0x7a,0x17,0x41,0x7f,0x07,0x11,0x7d,0xf9,0x7b,0x99, + 0xa4,0xf4,0x1c,0x0d,0x57,0x78,0x8e,0xe2,0xef,0xc0,0xc0,0xfe,0x5e,0xfa,0xc2,0x28,0x23,0x59,0x56,0x6e, + 0x8e,0x54,0xc5,0x8f,0xa5,0xa9,0x80,0x43,0xbb,0xe2,0x7b,0x01,0x2f,0xe3,0x28,0x5a,0xe1,0xaf,0x25,0x53, + 0xb8,0x2e,0x88,0x19,0x7b,0x3d,0xf1,0xdd,0x7d,0xfd,0x7c,0x70,0xc0,0x46,0x73,0x34,0x87,0xbf,0x72,0x4d, + 0x0a,0xb4,0x36,0x68,0xdc,0x44,0x1d,0x6f,0x8e,0xf7,0x27,0x3d,0x5e,0x93,0xf2,0x13,0x8d,0x55,0xfc,0x5a, + 0x42,0x91,0xe8,0xb4,0xc1,0xda,0x47,0x93,0x1d,0x1c,0x86,0xfa,0x52,0x99,0x38,0xd8,0x23,0x2a,0x34,0xc4, + 0x35,0x86,0x54,0xa3,0xbe,0x36,0x0b,0x05,0xd4,0x23,0x43,0x84,0xe7,0x49,0x2a,0x9d,0x11,0xf0,0x2f,0xa5, + 0x4f,0x38,0xf5,0x7a,0x3f,0xfa,0xf6,0xeb,0x95,0x57,0xf0,0xc7,0xf2,0xfb,0xe4,0x0f,0x0f,0xee,0x27,0x7e, + 0xdc,0x6e,0x26,0x03,0xeb,0xf5,0x9a,0xe9,0x45,0x4f,0x54,0xcd,0x93,0xe4,0x7b,0x0c,0xaa,0xd9,0x64,0x2f, + 0x58,0x5e,0x0b,0x38,0x57,0x0c,0xa2,0x81,0xe7,0x5d,0x27,0xb7,0x64,0x20,0x86,0xc6,0x1d,0xc8,0x84,0x78, + 0x7d,0x19,0xf5,0xc7,0xb8,0xbf,0xf1,0x7d,0x5a,0xc1,0x8c,0x67,0xe5,0xde,0x7c,0x49,0xd9,0x12,0x46,0x9a, + 0x3a,0xf4,0xc8,0xea,0x96,0x00,0x11,0xba,0xef,0x4b,0x76,0x95,0xa4,0x93,0x9a,0x2f,0x47,0x2c,0x12,0xc6, + 0xe8,0x10,0x48,0x10,0xd1,0xf2,0x43,0x29,0x5c,0xc4,0xf8,0x1d,0x78,0x83,0xea,0xc0,0xdf,0x45,0x77,0x9d, + 0x04,0x4b,0xc4,0x6f,0x88,0x5a,0xe9,0x78,0x23,0xf1,0x43,0xb9,0xcd,0x08,0x62,0x78,0x1f,0xf2,0xe1,0x8d, + 0x3e,0xf8,0x60,0x80,0xa3,0x0e,0x2f,0x04,0x84,0x6b,0x38,0xee,0x49,0xa7,0x7e,0x0a,0xe9,0x00,0xfd,0xa1, + 0x8c,0x3a,0x19,0x4f,0x44,0xa1,0xf2,0xa6,0xa4,0x69,0xc2,0xbf,0x94,0xa1,0x89,0x24,0xb5,0x6b,0xe5,0x31, + 0x05,0xb8,0xf8,0x5d,0x2b,0x8d,0x41,0xe0,0x7d,0xcb,0x62,0xea,0x14,0xc6,0x62,0x45,0x92,0xfb,0xef,0x83, + 0x1f,0x4a,0xcd,0x83,0xb6,0xb0,0x01,0x75,0xf4,0xe4,0x0a,0x2a,0x1d,0x63,0x2d,0x95,0x0f,0x03,0x7d,0xe5, + 0x74,0x6c,0xcc,0x0d,0x39,0x2e,0xb3,0xb3,0xe0,0xe7,0x0f,0x38,0xc2,0x32,0x7b,0x87,0xbb,0xeb,0xbe,0x29, + 0x79,0x83,0xfa,0xbe,0x64,0x2a,0x6e,0x41,0x5f,0x55,0xd4,0xf8,0xf4,0x0b,0x3e,0xd5,0x19,0xad,0xcf,0xf1, + 0xd9,0x06,0xcc,0xcb,0xef,0xac,0x6d,0x9f,0x4b,0x31,0x93,0xa2,0x74,0xa2,0xe0,0x1f,0xac,0x23,0xbf,0xe7, + 0x26,0xd8,0x35,0x47,0xc6,0x4d,0xa6,0x31,0x53,0x36,0xd1,0x97,0x9c,0xab,0x29,0xa9,0x92,0xd6,0x87,0x4d, + 0xe1,0x95,0x9f,0x7a,0x9b,0xfc,0xca,0x7a,0xe6,0x34,0x44,0x58,0x99,0x12,0x9f,0x42,0xd2,0x94,0xe9,0x28, + 0x73,0xd9,0x28,0x09,0x02,0x2f,0x77,0xa5,0x6f,0xf6,0x43,0x09,0xc1,0xf7,0x33,0x9b,0xfb,0x92,0xb5,0x53, + 0x51,0x96,0x13,0xa0,0x3c,0x7b,0xff,0xf2,0x05,0x27,0x70,0xe9,0xb2,0x3b,0x68,0xad,0x67,0xb7,0x54,0x50, + 0xd9,0x0a,0x6d,0x62,0xf2,0xb2,0x7c,0x25,0x07,0x40,0x72,0xa9,0x2a,0xfa,0x0a,0xae,0x55,0x56,0x82,0x9c, + 0x6a,0xc0,0x3c,0x46,0x56,0xe8,0x17,0x81,0xcd,0x10,0x5f,0x25,0xac,0x84,0x68,0xaa,0xf9,0xb4,0x3f,0xe6, + 0xd7,0xa4,0xd0,0x66,0x89,0x35,0x64,0x67,0x41,0x60,0x82,0xcc,0x17,0xd1,0x60,0x99,0xcc,0xc5,0x2e,0x71, + 0x93,0x69,0xa4,0x84,0x09,0x15,0xa5,0xc3,0xb0,0xfa,0xf5,0x9b,0xf7,0xcf,0x5f,0xbf,0x42,0x3d,0x33,0x23, + 0xdd,0x59,0xaf,0x3b,0xb4,0x09,0xd8,0xfe,0xec,0x16,0xee,0x2e,0xa3,0x52,0xee,0xcd,0x5a,0xaf,0xc6,0x37, + 0x0b,0xd8,0xd8,0x40,0xde,0x79,0x5f,0x5b,0x29,0xa0,0xdc,0x84,0x33,0xb1,0x8c,0x1a,0xd5,0x7b,0xfa,0x35, + 0xa5,0x21,0x50,0xda,0xe8,0x97,0x86,0x4e,0x53,0x06,0x68,0x59,0xa4,0xad,0x53,0xe6,0xe9,0x1f,0xd7,0x2e, + 0x7e,0xb6,0x32,0x58,0xe1,0x63,0xdd,0x50,0x40,0x13,0xe5,0x60,0x36,0xd1,0x81,0xda,0x32,0x26,0x03,0x9c, + 0xd9,0xbc,0x22,0x0a,0xd8,0x2f,0x58,0x3d,0x9a,0x8e,0x82,0x46,0xcc,0x55,0xff,0x18,0x24,0x54,0x6f,0x92, + 0xb9,0x0e,0x6a,0xc4,0x20,0x52,0x28,0x63,0x3d,0x2a,0xe3,0x79,0x63,0x4a,0x77,0xc8,0x5d,0x48,0xd6,0x2e, + 0x5f,0xcf,0x9d,0x30,0xda,0x68,0x9b,0xdf,0x21,0x75,0x78,0x11,0x36,0xde,0x39,0xe2,0x81,0xe7,0x83,0x28, + 0xbf,0xa6,0x1b,0x5e,0xdc,0xa2,0x68,0x7d,0x98,0xb5,0xe2,0x8d,0x2c,0x64,0x53,0xc4,0xc5,0xf2,0xa0,0xa2, + 0x25,0xda,0xca,0xfc,0x7e,0x44,0x4a,0xc5,0x55,0xd9,0xe7,0x62,0x2b,0xb7,0xd0,0xb9,0x91,0x17,0xa5,0x47, + 0xef,0xd3,0x55,0xd2,0x28,0x2e,0xe6,0xb0,0x30,0x2d,0xca,0x05,0x5f,0xe1,0x3e,0xe5,0xb4,0xf5,0x5a,0x7f, + 0xcf,0x5b,0x78,0x96,0xac,0xd6,0xeb,0xb9,0x58,0x62,0xbe,0xf4,0x46,0x55,0x95,0xf3,0x56,0xd6,0x29,0xad, + 0x1a,0x12,0xd8,0xaf,0xeb,0x1d,0xae,0xbc,0x9d,0x96,0x51,0xbc,0x1c,0x28,0x4b,0xd5,0x26,0xb4,0xfa,0x8a, + 0x73,0x26,0x1c,0xeb,0x41,0x87,0xfc,0xec,0x6f,0xc9,0xd5,0xce,0xad,0x82,0x13,0x4e,0x21,0x21,0xbb,0x78, + 0xa9,0xe4,0xba,0x9d,0xec,0xdc,0x8d,0x61,0x3a,0x5b,0xf4,0x4d,0xcc,0xb4,0xa2,0x51,0x5b,0xd1,0xfe,0xcc, + 0x69,0xe7,0x4b,0x55,0x07,0x87,0xb3,0x9c,0x11,0x92,0x9a,0xc2,0x10,0x71,0x7f,0xff,0x33,0xcc,0x07,0x2b, + 0x61,0xb0,0x14,0x67,0x4f,0xa3,0x30,0x4d,0x38,0x9f,0x80,0x77,0x46,0xbf,0xb6,0x98,0x8e,0x50,0x02,0x0c, + 0x90,0xfa,0x3c,0xc0,0x99,0xf4,0x7d,0xc9,0x38,0xba,0xa7,0x16,0x50,0xa8,0xb8,0x19,0x2c,0x6b,0x63,0xbb, + 0x3f,0x67,0xf9,0x03,0xa5,0x3f,0x48,0x49,0xa9,0x4d,0x54,0xee,0x7e,0xaa,0x7a,0x77,0x23,0x7b,0x6f,0x52, + 0x87,0x1f,0xb7,0x57,0x0f,0x07,0xc4,0x42,0x30,0xb0,0x78,0x3b,0xd1,0x0f,0x8c,0x0b,0x05,0x4a,0xc8,0xae, + 0xdf,0x5b,0x92,0xbf,0x48,0x9b,0x4c,0xee,0xe0,0xb6,0x45,0xaf,0x53,0xac,0x70,0x09,0x58,0xf7,0x5d,0x77, + 0x8b,0x0c,0xc3,0x9c,0xd8,0x2a,0x33,0x40,0x6f,0x16,0xae,0xff,0x7f,0x9f,0x05,0x85,0xcc,0xb7,0x27,0xc2, + 0xa6,0x0b,0x3f,0x55,0x1d,0x02,0xa0,0xfa,0xdb,0x12,0x7a,0x33,0x25,0x6a,0xea,0x9c,0x28,0xf9,0x2f,0x4d, + 0x1f,0x0c,0x49,0xcc,0xb4,0x79,0x53,0x59,0xc2,0xac,0x6b,0x00,0x9f,0x66,0x7b,0xc1,0x53,0x29,0x30,0x5c, + 0x80,0xb8,0x41,0x93,0xd0,0x39,0x74,0xce,0x31,0x5f,0x5d,0x71,0x5b,0x37,0xfd,0x2b,0x06,0xa4,0x26,0x6d, + 0xf4,0x95,0x4a,0x5b,0x17,0xa5,0x18,0x24,0x6a,0xaf,0xe0,0x65,0x9e,0x97,0xa6,0x05,0x42,0x61,0x5c,0x1e, + 0xf1,0x34,0x0b,0x6b,0x6d,0x80,0x15,0x5c,0x40,0x82,0xc0,0x37,0x4a,0x20,0xe6,0xf5,0xad,0xc6,0x21,0x4f, + 0x19,0x37,0x6e,0x91,0x27,0xa7,0xdc,0x97,0x8f,0x99,0xef,0xfb,0xf2,0x11,0x45,0x7d,0xc9,0xcb,0xa5,0x6c, + 0x1a,0x85,0x6c,0x8b,0xb4,0x59,0xec,0xb0,0x9d,0xcc,0xd1,0x7c,0x72,0xcf,0x88,0x0b,0x10,0x0a,0x8f,0x10, + 0x08,0x10,0x68,0xa5,0xf5,0x1e,0xf4,0xbd,0x42,0x75,0x53,0x5d,0xb5,0xed,0xef,0xcf,0x3b,0x5b,0x41,0xd0, + 0x6c,0x0d,0xc7,0x9e,0xab,0x68,0x8b,0x75,0xfe,0xa2,0x0a,0x08,0x1c,0x03,0xda,0x92,0xa2,0x34,0xbe,0x3c, + 0x4c,0x67,0x41,0x4e,0xc6,0x91,0xa7,0xf9,0x5c,0xb0,0x62,0x04,0x13,0x30,0xa5,0x4a,0x60,0x4f,0xf1,0x2a, + 0x1b,0xbe,0xcd,0xe2,0x0f,0x19,0x61,0xfc,0x96,0xfb,0x58,0xb7,0xde,0xa6,0x12,0x73,0x58,0x9e,0xb3,0xab, + 0x58,0x53,0x05,0xa4,0x82,0x58,0x28,0x66,0xae,0xd7,0x9b,0x7c,0x0f,0xc5,0x21,0x3c,0xc5,0x06,0xdd,0xfe, + 0x48,0x93,0x07,0x3a,0x5f,0xe0,0x6a,0x64,0xd1,0xa1,0x03,0x42,0x53,0x9e,0xab,0xaa,0x6c,0xe8,0xb8,0x13, + 0x7d,0x93,0x2d,0x35,0x79,0xac,0xc3,0x6e,0xf0,0x59,0xa2,0x22,0x45,0x94,0x27,0x2f,0x89,0xff,0x7f,0x0c, + 0x1f,0xa9,0x60,0x64,0xad,0xef,0x76,0x58,0x76,0xaa,0xf3,0x56,0xa5,0xba,0x5e,0xba,0x99,0x9d,0x26,0xc7, + 0x92,0xc3,0xbf,0x82,0xa5,0x39,0x79,0x74,0x4b,0x25,0x13,0x93,0xd7,0x5d,0xc9,0x0a,0x95,0x80,0xa7,0xa1, + 0x39,0x3a,0xa4,0x13,0xd1,0xdd,0xb9,0xa3,0x26,0x3c,0x65,0xbb,0xf1,0x9c,0x1e,0xa9,0x40,0x4a,0x05,0x8c, + 0x81,0x3a,0x51,0x0c,0xb0,0x7e,0xcf,0x86,0x2b,0x5d,0xe2,0x0d,0x4a,0xac,0xa8,0xc4,0xc4,0x96,0x98,0x25, + 0x94,0x1e,0xce,0x5d,0xa4,0xf5,0x14,0xb4,0xef,0xf7,0x87,0x54,0xeb,0x6a,0xf8,0x2a,0x8b,0xdf,0x64,0xcc, + 0xde,0x47,0xc3,0x5c,0x35,0x66,0xea,0x8e,0x4d,0x15,0xf1,0xa1,0xd0,0x01,0x97,0x85,0x86,0x96,0x78,0x2e, + 0x2c,0xac,0xc4,0x33,0x5c,0x83,0xfc,0xde,0xdc,0xd6,0x17,0xab,0x5a,0xf6,0xf7,0x9f,0x69,0x21,0xb9,0x9a, + 0x3d,0x13,0xbf,0x23,0x18,0xf9,0x68,0xe0,0x58,0xba,0x43,0x7a,0x60,0x30,0xdd,0x03,0x1b,0x23,0x31,0xaa, + 0x13,0x1b,0x36,0xdb,0x31,0xe8,0x66,0x1c,0x8d,0xfb,0xbc,0x9a,0x22,0x64,0xdf,0x27,0xfc,0x1d,0x10,0x6a, + 0xef,0x9d,0x54,0xe1,0xa5,0x36,0xfe,0x4e,0x7b,0xe7,0x93,0x58,0x47,0xf2,0xfe,0x3f,0xf4,0x15,0xb1,0x4e, + 0x62,0x70,0x70,0xe4,0x97,0x7f,0xe8,0xd1,0x52,0x20,0xa1,0x88,0xde,0x81,0x9f,0x16,0xae,0xe6,0x49,0x89, + 0x38,0x3f,0x65,0x77,0x08,0xfb,0xa6,0xaf,0xca,0x9c,0xab,0x68,0x79,0x2e,0x3d,0x34,0xa1,0x0a,0x92,0xb1, + 0x34,0xdc,0x90,0xdb,0xd0,0x91,0x75,0xbe,0x62,0xf3,0x49,0xfa,0x8c,0x20,0x5c,0x96,0x5c,0xf9,0x11,0xc7, + 0x02,0x03,0x41,0x82,0x4b,0xe6,0x1c,0x6d,0x83,0x38,0x62,0x84,0x18,0x05,0xbc,0x5e,0x79,0x63,0x13,0x90, + 0xf4,0xd5,0x67,0xac,0xa9,0x9b,0x99,0xd7,0xf7,0x85,0x4a,0x58,0x9a,0x84,0x87,0x4c,0xb3,0xab,0x44,0xf8, + 0xf5,0xd2,0x94,0xca,0x54,0x7f,0x75,0x6e,0xdf,0xcd,0x67,0x17,0x36,0xc5,0xff,0x6e,0x41,0xa9,0xa7,0x12, + 0x26,0xe2,0x4f,0x50,0x25,0xbc,0xf7,0x54,0xe5,0xe2,0x1a,0xe5,0x71,0xf5,0xba,0xca,0x18,0xdb,0x5e,0x99, + 0x89,0x11,0x97,0xf6,0xdb,0x87,0x5c,0xaf,0xd8,0xb3,0x4d,0x88,0x2b,0xf3,0xb5,0xce,0xfa,0xe2,0xfa,0x67, + 0xbf,0x3f,0xa6,0xb4,0xa9,0xde,0x53,0xe2,0x5d,0x32,0x2e,0xc5,0x43,0xfa,0xa3,0xed,0xf4,0x07,0x0f,0xf7, + 0xf7,0x1f,0x5a,0x92,0xeb,0x5d,0x12,0x3e,0x4c,0xcc,0x6b,0x64,0x38,0x56,0x5e,0x89,0xf7,0xc9,0xee,0x3b, + 0x2f,0x74,0x12,0x71,0xa4,0x6c,0xc4,0x5f,0x14,0xa0,0x03,0x39,0x26,0x30,0x2d,0xc9,0xfb,0xf5,0x7a,0x0f, + 0x87,0x27,0xad,0xc1,0x9e,0x02,0x81,0xd7,0xc9,0xfb,0xfd,0xfd,0xe9,0x70,0x4a,0xbb,0xe1,0x33,0x1e,0x2f, + 0x86,0x17,0xf1,0x52,0x3c,0xc1,0xe3,0xf9,0xf0,0x9c,0xf6,0xc5,0x8b,0xe4,0xfd,0xf0,0x72,0xbd,0x5e,0xc4, + 0x0b,0xf1,0x1c,0xa9,0x1d,0x4e,0x2f,0x7b,0xc3,0xbd,0xf8,0x4c,0x3c,0xa5,0x82,0x57,0xeb,0xf5,0x75,0x7c, + 0x2d,0x1e,0xd3,0xe3,0x97,0xf5,0x7a,0x1c,0x8f,0xc5,0x2b,0xe2,0x5b,0xb2,0xf0,0x38,0x1a,0x1e,0xab,0x69, + 0x8b,0x8f,0x23,0xf1,0x26,0xe1,0x83,0xb0,0x62,0x7d,0xbc,0x78,0x99,0x7c,0x96,0xe1,0xf3,0x48,0xbc,0x4d, + 0x1c,0x9c,0xf8,0x4e,0xb6,0xd1,0xcd,0x1b,0x02,0xc9,0x3d,0x88,0x5e,0x9f,0x44,0x82,0x7f,0x3f,0xd3,0x51, + 0xf9,0xd6,0x81,0xe6,0x30,0xa4,0x12,0x9c,0xf1,0x3a,0x12,0x8f,0xf7,0xf7,0x1f,0xb3,0x21,0xc5,0xd3,0xfd, + 0xfd,0xa7,0x70,0x4b,0xf0,0x6a,0xd5,0xc1,0xd6,0x35,0xbc,0x56,0xe7,0x05,0x0d,0xec,0x47,0xda,0x0e,0xce, + 0xf2,0xc9,0x35,0xaa,0xe4,0x42,0x86,0xda,0x05,0x9f,0x2a,0x74,0x38,0xe4,0x31,0x82,0x15,0x31,0xab,0xe9, + 0x9e,0x4f,0x58,0x92,0x36,0x1a,0xf0,0xbd,0xa1,0xca,0xde,0x30,0x57,0xf6,0x86,0x12,0x3b,0xcc,0xee,0x9b, + 0xf6,0x7b,0x18,0x89,0xe7,0xfb,0xfb,0xcf,0xa9,0xeb,0x6f,0x21,0x0b,0x7a,0xb1,0xbf,0xff,0x02,0x7d,0xc6, + 0x88,0x2f,0xf5,0x80,0x2e,0xd5,0x88,0xc5,0xa9,0xf4,0xe7,0xe4,0xd2,0x9f,0x8f,0xd7,0x8d,0xe9,0x58,0xaf, + 0x5f,0xd2,0x39,0xfe,0x5a,0x86,0xaf,0xa2,0xa1,0x77,0x0a,0xbd,0x15,0xaf,0xa2,0xf8,0x0a,0xc5,0x57,0xd4, + 0x18,0x90,0x88,0xf0,0x26,0x42,0x19,0xd8,0x96,0x7e,0x7f,0xa8,0x1b,0x5c,0xd5,0xdb,0xb0,0x61,0xf1,0xfc, + 0x5e,0x23,0x10,0x27,0x04,0xa6,0xee,0x7c,0xf1,0x9b,0x0f,0x1b,0x13,0x1c,0x12,0xe7,0xe9,0x26,0xd1,0xce, + 0x18,0x54,0xd9,0x5d,0xe9,0xca,0xc1,0x54,0x4d,0x67,0x92,0x47,0xe2,0x9c,0x00,0x11,0xc1,0x51,0x2f,0xd5, + 0x94,0xa4,0x70,0x96,0xe0,0xdf,0x69,0xc7,0x94,0xa4,0xc4,0x43,0x61,0x4a,0xb8,0x54,0xa3,0x4f,0x7b,0x6a, + 0x4a,0xae,0x1a,0x53,0xf2,0x45,0x5c,0xf1,0x94,0xa4,0x62,0x2e,0xbe,0xa8,0x29,0xb9,0x00,0x65,0x96,0xd2, + 0x9b,0xb8,0xe4,0x8f,0xbe,0x80,0xce,0xd6,0x36,0xe3,0x1a,0x57,0xa6,0x3e,0x3a,0xf3,0xde,0x9a,0xb8,0xd2, + 0xa5,0x1b,0x5c,0x59,0xdd,0x8e,0x2b,0x55,0xe4,0x57,0x75,0x7f,0x8c,0x45,0x8d,0x86,0x81,0x52,0x6a,0xd6, + 0x5d,0x6e,0xd8,0x20,0x69,0xe3,0x6f,0x52,0x31,0xce,0x9c,0x27,0x2a,0xc2,0x0b,0x21,0x49,0xc8,0x5b,0x52, + 0x83,0xd5,0x96,0xe6,0xd5,0x20,0xbf,0xa9,0x49,0xf0,0x71,0xdf,0x39,0x25,0x2a,0xfc,0xf5,0x02,0x59,0x84, + 0x21,0x75,0x21,0xc2,0x8a,0x95,0xc2,0x5e,0x2a,0xe3,0xcc,0xd6,0x6e,0x71,0xd7,0x35,0x25,0xb1,0x53,0xb6, + 0x2a,0x31,0xc6,0xab,0x41,0x65,0x97,0x6a,0x9b,0xaf,0xd4,0x36,0xdf,0xc3,0x36,0xbf,0x88,0x08,0x23,0x02, + 0x21,0x10,0xcb,0x3b,0x56,0x75,0xc5,0xe3,0x88,0xb1,0xa2,0x19,0x5a,0x73,0xeb,0xfb,0x20,0x02,0x11,0x52, + 0x07,0xc0,0xf0,0x1a,0x74,0xa4,0x5b,0x18,0xe2,0xd0,0x5d,0x97,0x0a,0x87,0x38,0x00,0x99,0x46,0x0d,0x08, + 0x19,0x86,0x97,0x8c,0x43,0x18,0x72,0xa8,0xce,0x33,0xb6,0x03,0x09,0xb1,0x21,0x16,0xfb,0xfb,0x0b,0xbc, + 0x09,0xaf,0x93,0x1a,0x93,0x5c,0x0f,0xaf,0x69,0xbb,0xc6,0x45,0xe8,0x13,0x04,0xaf,0xbd,0x13,0x79,0x3b, + 0xa6,0x14,0xcd,0x86,0xba,0xf3,0xd0,0x57,0x27,0x7f,0x46,0x9c,0x59,0x66,0x25,0x5c,0xd0,0x62,0x1d,0x16, + 0x1b,0x56,0xc2,0x08,0x6f,0xec,0x85,0x7d,0x1a,0x52,0xf1,0xad,0xf0,0x35,0xe5,0xc9,0xe1,0x28,0x46,0xf0, + 0x1a,0x7b,0xcb,0x1e,0xfc,0x5a,0x34,0xfd,0xf4,0xbd,0xa7,0xc2,0x7b,0xa2,0xe9,0x95,0x5d,0xe8,0xe5,0xa5, + 0x8f,0x01,0x1e,0x32,0x3b,0xe7,0x7c,0x40,0x2c,0xe9,0xfd,0xdc,0x3c,0x09,0x67,0x09,0xd7,0x4d,0xdf,0xda, + 0x92,0x1b,0x71,0xe8,0x55,0xf5,0xbc,0x45,0xc5,0x4b,0x4f,0x32,0xb6,0x58,0xcd,0xeb,0x6c,0x39,0x97,0x8a, + 0x5e,0x5f,0xaf,0xdb,0x23,0xf3,0xe2,0x9d,0xb1,0x11,0x20,0xfc,0xb0,0xac,0x0f,0x4d,0xdb,0x0d,0x0b,0xa6, + 0x60,0x2e,0x17,0xd7,0x66,0x64,0x51,0x91,0x8c,0x89,0xfd,0x7b,0x0c,0x23,0x1f,0xf0,0xbb,0x02,0xd7,0x2f, + 0xcd,0xf9,0x32,0x74,0x08,0xe9,0x19,0x7c,0x4c,0x42,0xe2,0x85,0xf1,0xba,0x0e,0xf9,0x13,0x2f,0xea,0x2f, + 0xb8,0x2e,0xd0,0x55,0xba,0x30,0x6b,0xa6,0xd4,0x39,0xd6,0x4e,0x4d,0x2a,0xd8,0xe9,0x32,0x37,0xd5,0x4c, + 0x3f,0x68,0x5c,0xfa,0xf8,0x54,0x36,0xaf,0x58,0x69,0xdf,0x7c,0x67,0xb3,0x76,0xaf,0x43,0x65,0x2f,0xeb, + 0xb9,0x84,0xf8,0x50,0xa6,0x44,0xa5,0x1c,0x9d,0x0d,0x17,0x0c,0x28,0x3d,0x9f,0x16,0x3f,0x7a,0x5e,0x1d, + 0x52,0x79,0x37,0x2b,0x9e,0xc5,0xc9,0x4c,0x61,0x63,0xe6,0xdc,0x39,0x6e,0x29,0xc4,0x83,0xdc,0xfe,0xf2, + 0x48,0xbc,0x94,0x36,0x43,0x68,0x41,0xbe,0x4f,0x6f,0xbe,0x6c,0x30,0x9d,0x6d,0x07,0x86,0x0b,0x76,0x5f, + 0x80,0xd4,0x59,0xe9,0xc1,0x03,0xc5,0x67,0x66,0xb5,0xca,0x91,0x82,0x30,0x29,0x47,0x3c,0xea,0x4f,0xb3, + 0x8a,0x4d,0x8f,0x55,0x86,0xaf,0xbe,0x78,0xeb,0xcd,0xc4,0xee,0x2d,0x7e,0x0c,0x4a,0x52,0x55,0xb7,0x91, + 0xef,0xb0,0x8e,0xdf,0xb2,0x6b,0xcc,0x6d,0x32,0x33,0xcf,0xa3,0xc2,0x93,0x8a,0x32,0x19,0xb0,0x65,0xf7, + 0x6a,0x56,0x11,0x67,0x7c,0xc3,0xe2,0xd5,0xf8,0xa1,0x0f,0xa9,0x8e,0xdf,0xe0,0xd8,0x65,0xbd,0x0b,0x7d, + 0x21,0xe7,0x07,0xaf,0x01,0xbe,0x75,0xd2,0xc5,0x38,0x6d,0x86,0x3f,0xca,0xdd,0x35,0x13,0x11,0x42,0x1f, + 0x71,0x7c,0x60,0x7d,0x7b,0x09,0x6d,0x7e,0x85,0x0a,0x0d,0x3f,0xd9,0x72,0xcc,0xcb,0xe8,0x8b,0x31,0x2e, + 0xf4,0x18,0xb1,0x6b,0x5e,0x47,0x24,0xda,0x8f,0x4e,0x92,0x74,0xf7,0xd3,0xf4,0xe0,0x8b,0x94,0xcb,0x83, + 0x74,0x4e,0x87,0xc5,0x9e,0xbe,0x2b,0x90,0xe9,0x1b,0xe7,0x51,0x1d,0x06,0xae,0x48,0x20,0x6e,0xb8,0x6b, + 0xb1,0xdc,0x9a,0x1d,0xd7,0x67,0x1f,0x88,0x9f,0x69,0x60,0x63,0x92,0x88,0x95,0x03,0xa7,0x7c,0xf9,0xa4, + 0x7b,0x65,0x53,0x4a,0x7e,0xd7,0xa7,0xa9,0xcd,0xb7,0xa7,0xab,0x67,0x11,0xae,0xab,0x53,0xe2,0x56,0x79, + 0xf9,0xa6,0x40,0x30,0x21,0x94,0x26,0xe0,0x7c,0x44,0x84,0x31,0x47,0xf5,0x98,0x67,0xf4,0xe9,0x5b,0x5c, + 0xbd,0xee,0xc7,0x99,0xf7,0x97,0x57,0x55,0x40,0x20,0x2e,0xac,0xef,0x8c,0xaa,0x4d,0x5f,0x47,0x31,0xab, + 0x0f,0x72,0xfe,0xe1,0x7b,0xcf,0xea,0x62,0x49,0xaf,0xf4,0x17,0x18,0xac,0x5c,0xaf,0x33,0xdb,0x05,0x0c, + 0x61,0x6a,0x94,0x8c,0x85,0xee,0x0a,0x0b,0x86,0x07,0x85,0xbb,0x1b,0x9e,0x88,0xcc,0x5f,0xe4,0xe9,0x97, + 0xac,0xb6,0xfc,0x67,0x12,0x70,0x26,0xc2,0xe0,0x85,0x41,0xaf,0xec,0x05,0xcb,0x2b,0xc1,0xba,0xfd,0xe5, + 0x55,0x14,0x88,0xc2,0x03,0x60,0xc3,0x8b,0x27,0xc1,0x61,0xe5,0x2b,0xe6,0x7f,0xb7,0x08,0x57,0x2b,0x91, + 0x99,0xf7,0x3d,0x62,0x7f,0xfd,0x5a,0x58,0x03,0x88,0x58,0x0a,0x63,0xb2,0xd0,0xb8,0xf1,0xb6,0x7d,0xff, + 0xa9,0x70,0xaa,0x7c,0x7b,0x0d,0x87,0x0e,0x6c,0xac,0x1d,0x13,0xf1,0xa8,0x42,0x81,0x38,0x37,0x2a,0x19, + 0x09,0x05,0x8c,0xc4,0x74,0xdb,0x10,0x01,0x27,0xfe,0x3d,0x31,0x3f,0x36,0xc5,0x1b,0xc6,0x5a,0x71,0x10, + 0x56,0x49,0x2e,0x81,0xc9,0x05,0x41,0xd7,0x75,0xa0,0xf5,0x17,0xf0,0xeb,0xa9,0x3c,0xd3,0xa4,0x5a,0x79, + 0xf8,0xec,0xfa,0xd6,0x47,0xda,0xde,0x20,0xc4,0x1d,0x7e,0x61,0x86,0x0a,0x4a,0x39,0x53,0x15,0x64,0x70, + 0x40,0x4a,0x0a,0x91,0x59,0x47,0xa4,0x5b,0x9c,0xb4,0xb3,0x81,0x54,0x21,0x34,0xed,0x05,0x2e,0x12,0x52, + 0x51,0xe7,0xe7,0x03,0xf1,0xaa,0x0e,0x90,0x69,0x63,0x30,0xb3,0x2f,0x7b,0x53,0xe5,0x19,0x20,0xba,0x84, + 0x35,0x32,0x86,0xa9,0x34,0xbd,0x43,0x1b,0x95,0xb0,0x19,0x4d,0x80,0xa9,0x0b,0x3c,0x99,0xb1,0x6c,0x46, + 0xcc,0xe6,0xaf,0x60,0x8e,0xa4,0xec,0x6a,0x38,0x92,0x40,0xc0,0xf7,0xca,0x51,0x35,0x1c,0xc6,0x0a,0xc1, + 0xa9,0x75,0x26,0x25,0x1d,0xe8,0x12,0x44,0x03,0xd8,0x6f,0xfc,0x64,0x75,0x4c,0xb9,0x6f,0x4d,0x04,0xe1, + 0xdc,0x16,0x05,0xf6,0xb5,0xa5,0xde,0x2b,0xc9,0xd6,0x9d,0x20,0xb8,0xc3,0x56,0xdc,0x77,0x6c,0x10,0xd0, + 0x3b,0xb4,0x9e,0xdb,0x3d,0x05,0x9a,0xb5,0xb5,0xaf,0xd7,0x6c,0x79,0xa6,0x6a,0x15,0x7c,0xe3,0x30,0x64, + 0x54,0x1c,0x4c,0x93,0xbd,0x3f,0x83,0xac,0x52,0x5d,0xca,0x1d,0xaa,0x48,0x10,0x6f,0x52,0x99,0x0b,0x49, + 0xc5,0x95,0xcd,0xb3,0x5c,0x1e,0xd8,0x96,0x54,0x71,0x95,0xfa,0x5e,0x27,0xc2,0x70,0xd1,0x45,0x0f,0x4c, + 0x0e,0x07,0x93,0x07,0x63,0x1b,0xf9,0x60,0xc2,0x77,0x30,0x8d,0x8b,0x93,0xc9,0x88,0xe1,0x8c,0xba,0x38, + 0x68,0x44,0xfa,0xd0,0xae,0xce,0x6d,0x3b,0x59,0x04,0x7c,0x10,0x53,0x71,0xee,0xdb,0x0a,0x71,0x23,0x92, + 0xb6,0x42,0x9e,0x9c,0x5b,0x07,0xfe,0x07,0xb9,0x71,0xe2,0x2f,0x93,0x2c,0x39,0x47,0x8c,0x64,0xbe,0x35, + 0xa1,0x50,0xcf,0x8a,0xc8,0x79,0x53,0x68,0x21,0x92,0x96,0xc5,0x9f,0xa7,0xd5,0xa3,0x8c,0x51,0x51,0x05, + 0x46,0x21,0x4c,0x93,0xad,0x2e,0x25,0xa5,0xbe,0x69,0xe7,0x99,0x0a,0x26,0xe3,0x87,0x90,0x77,0x37,0x4f, + 0xb4,0x05,0xf5,0x1c,0x51,0xd1,0xc8,0x7d,0x8e,0x22,0xdc,0x7b,0x0d,0x8b,0x05,0x5c,0x6e,0x15,0xe9,0x6b, + 0x16,0x8c,0x38,0xfc,0x59,0x01,0xbd,0x4b,0x24,0x3e,0xba,0xbe,0xf9,0xd9,0x1f,0x39,0x9b,0x86,0xf1,0x2b, + 0xb4,0xae,0x44,0x74,0xd1,0x39,0xaf,0x22,0x7c,0x02,0x8d,0xb3,0xcd,0x33,0xf5,0x5c,0xab,0x8c,0xeb,0xc5, + 0x3c,0x50,0x01,0xc5,0xc6,0x88,0x85,0xa9,0x9a,0xf2,0xd4,0xc9,0x4c,0x39,0x4f,0x68,0x5a,0xe6,0x9c,0xa3, + 0x0a,0x81,0x0a,0xbb,0xce,0x27,0x74,0x56,0x32,0xf4,0xd9,0x08,0x91,0x9c,0x2b,0x0a,0xb0,0xa9,0xc1,0x1e, + 0x1b,0xc0,0x05,0x6c,0x54,0x0d,0x0d,0xbb,0x83,0x94,0xfd,0xfd,0xab,0xc2,0x5e,0x1c,0x6b,0x30,0x98,0x62, + 0x81,0x88,0x14,0x66,0x0b,0x4a,0x04,0xaf,0x8a,0x7f,0x36,0x4f,0x96,0xaa,0x7b,0xd5,0x3d,0xe0,0x57,0x6a, + 0xc0,0xdc,0x19,0x15,0x90,0x6d,0xd7,0xbf,0xe6,0xf0,0x22,0x69,0xcc,0xde,0x1b,0x35,0x7b,0x7a,0x8d,0x3e, + 0xd0,0x0c,0x2d,0x12,0x30,0x8e,0x27,0x47,0xa3,0xc1,0x42,0xcf,0xb4,0x95,0xbe,0x85,0x0b,0x0d,0x2e,0xbd, + 0x23,0x8c,0x64,0x95,0x94,0xc4,0xaf,0x65,0x90,0x7f,0x12,0x7f,0xb6,0x80,0xc4,0x4a,0x20,0x96,0x46,0x1d, + 0x35,0x1c,0xe2,0xc2,0x89,0xf7,0xba,0x65,0xa9,0xb9,0x12,0xda,0x01,0x29,0x9e,0x6b,0x13,0xcb,0x19,0x2c, + 0x4c,0xe2,0xa5,0xb0,0xd6,0x80,0x31,0x82,0x8b,0x4f,0x9c,0x09,0x1f,0x4f,0x80,0x9e,0x8f,0x96,0x4d,0x5d, + 0xc1,0xf7,0xd7,0xf8,0xb3,0x1b,0x2c,0x20,0x5a,0xc6,0xaa,0x96,0x5f,0x9d,0xea,0xfd,0x7d,0x3d,0xd7,0xda, + 0xb5,0x63,0xd3,0xe0,0x6a,0x7e,0x72,0x67,0x2a,0x03,0x71,0x62,0x0c,0x04,0x09,0x72,0x83,0xa8,0xcb,0x6a, + 0x4c,0xa5,0x48,0x3d,0xb1,0x2f,0x75,0x24,0x25,0xc3,0x35,0xb0,0x2a,0x95,0xbe,0x4d,0xf2,0x93,0x7b,0x23, + 0xad,0xc5,0x31,0x74,0x0f,0x4d,0xbd,0x4e,0xb1,0xab,0xf4,0xc8,0x00,0x71,0xa6,0xeb,0x7b,0xeb,0xa2,0xe7, + 0x16,0x43,0x84,0x47,0x9a,0x67,0x69,0x95,0x64,0xf6,0x83,0xb7,0xea,0x83,0xb2,0x9f,0x11,0x65,0x91,0x12, + 0x05,0x77,0x94,0x14,0xae,0x5e,0x51,0x50,0xab,0x6c,0x07,0x61,0xb2,0xef,0x25,0x85,0xeb,0x08,0xe2,0x96, + 0x98,0x1a,0x45,0xc9,0x17,0xca,0xe5,0x1c,0x04,0xa0,0xe9,0xad,0xf1,0xab,0x55,0x8c,0x64,0xb3,0xe3,0x82, + 0xb0,0x00,0x53,0x47,0xcc,0x29,0xf8,0x09,0x1c,0xb6,0xb4,0x99,0x64,0xb4,0x2d,0x9e,0xdd,0xb2,0x2f,0xfa, + 0xfd,0x5d,0x36,0x57,0x89,0x4f,0x43,0x13,0x19,0xbe,0x36,0x22,0x43,0xcf,0x82,0xb9,0xcd,0x92,0x0d,0x03, + 0x13,0x44,0x29,0xbe,0x09,0xe2,0xa0,0xc0,0x8f,0x8b,0xa4,0xa0,0x6f,0xa9,0xeb,0x25,0xb0,0xb3,0xcb,0x7a, + 0x77,0x82,0xf8,0x4e,0xef,0x37,0x28,0x0d,0xd8,0x4f,0x1b,0x56,0xd6,0xee,0x1e,0x66,0x4f,0xf0,0xcc,0xf6, + 0x82,0xce,0xb4,0xd9,0xd1,0x96,0xf6,0x66,0xcf,0xc0,0xe3,0x1e,0x37,0xc1,0x76,0xd0,0x67,0x7b,0x45,0x58, + 0x70,0x12,0xf4,0xda,0x22,0x72,0x3b,0x7a,0x5d,0xb3,0x75,0xb4,0x13,0xd0,0x0f,0x8e,0x02,0x7d,0xc2,0xfd, + 0xbb,0x30,0xa4,0xab,0xf2,0xce,0x22,0x72,0xe6,0x87,0x56,0x12,0x03,0xa8,0xb3,0xa5,0x35,0xb6,0x06,0x01, + 0x91,0x5b,0xf8,0x93,0x1a,0xc7,0x50,0x16,0xe4,0x70,0x48,0x47,0xaf,0x30,0xd0,0x3a,0xae,0x19,0x8d,0x8a, + 0x5e,0xc2,0x0f,0xe2,0xb7,0x82,0x75,0xd7,0xa9,0xb1,0xb1,0x75,0x41,0xa6,0xe5,0x55,0xaa,0xc2,0x8f,0x54, + 0x26,0x88,0xb6,0x57,0xd3,0x80,0x2a,0xf8,0xb9,0x08,0x4f,0x82,0x49,0x5d,0xce,0x69,0x10,0x6c,0xac,0x4b, + 0xbf,0xe9,0x1c,0x7f,0x17,0xb2,0x4e,0x83,0xd1,0xed,0xa6,0xe4,0xbb,0x93,0x93,0x1a,0xb6,0xe6,0xdd,0x96, + 0xe8,0x1a,0x9d,0xf6,0x83,0x5e,0xdd,0x0b,0x7e,0x22,0xaa,0xca,0x4e,0xd6,0x7a,0x0d,0x8e,0x4d,0x19,0x85, + 0xd8,0x0e,0x1b,0xff,0x5d,0x6b,0xbf,0x13,0x66,0x3d,0xc2,0xea,0xb0,0xb5,0xb8,0x73,0xba,0xaa,0xeb,0x22, + 0xbf,0x83,0x69,0x50,0x95,0xc2,0x4f,0xbf,0x97,0x72,0xc3,0x3f,0x4b,0x53,0x2d,0xa5,0xd1,0x22,0x58,0x05, + 0x1c,0x1d,0xec,0x03,0x6c,0x47,0x55,0x53,0xe1,0xc5,0xac,0x0c,0x75,0x25,0x37,0xa0,0x71,0xc3,0x7c,0xa8, + 0xd7,0xa4,0x17,0x98,0x8c,0x20,0x2e,0x87,0x6c,0xb5,0x6a,0x32,0x22,0x97,0x63,0x16,0x90,0x21,0xcd,0xb4, + 0x45,0x64,0x91,0xa9,0x25,0xee,0x6a,0xc6,0x56,0xe4,0x43,0xe7,0xcf,0x1e,0x0b,0xc0,0x31,0x6e,0x9e,0xf3, + 0xf5,0x2d,0x47,0x87,0x91,0x1f,0xcf,0xde,0x4c,0xa3,0x0e,0x1d,0x4d,0xc4,0x21,0x55,0xa7,0xe1,0x8c,0x56, + 0xdd,0x86,0x19,0x0e,0xc6,0x5f,0xc2,0x66,0x51,0x22,0xe1,0x5b,0x88,0xb7,0xe6,0x8d,0xd3,0x4e,0xcd,0x91, + 0xea,0x3e,0xf5,0xad,0x32,0xeb,0x86,0xf9,0x12,0x62,0xe5,0xe4,0xb8,0x9d,0xd7,0x58,0x8a,0xaa,0x18,0x6d, + 0x71,0x00,0x43,0x3f,0x0e,0xc0,0x6a,0xf7,0x07,0x74,0xe9,0x43,0xa9,0xac,0x93,0xe2,0x3b,0xe3,0x89,0x0e, + 0x19,0x70,0x87,0xa7,0x4d,0xb4,0xe2,0x1a,0xc7,0x79,0x3b,0xd2,0xb1,0x87,0xc0,0x64,0xee,0xe2,0xe5,0x9b, + 0x62,0x45,0xa1,0x6e,0x56,0x51,0xaf,0x6f,0xca,0x62,0x22,0xab,0x4a,0x4e,0xed,0xd2,0xe7,0xd6,0xb8,0xbb, + 0xd6,0x86,0xfb,0xbb,0xea,0x61,0xab,0x68,0xe9,0x17,0xa5,0xfd,0xc6,0x25,0xe9,0x77,0xbb,0x4e,0xa2,0x21, + 0x09,0x69,0xf1,0x4d,0x1f,0x33,0x44,0xaa,0x44,0x68,0x3f,0x60,0x5f,0x76,0xee,0xb2,0x08,0x7c,0x88,0xf9, + 0xf5,0xde,0x63,0xda,0xcb,0x95,0x57,0xe0,0x5e,0xab,0xc0,0x3d,0x14,0xc8,0x1b,0x2d,0x32,0xa5,0x33,0x9e, + 0x87,0xda,0xba,0xda,0x11,0xf9,0x30,0x87,0x4e,0xd9,0x03,0xc5,0xcd,0xb2,0xe4,0x10,0x6e,0x98,0xd5,0x48, + 0x23,0x9f,0xdb,0x68,0x4b,0xa1,0x03,0xa4,0xa9,0xa1,0x66,0x33,0x1e,0x69,0x36,0xdb,0x1a,0x68,0xe1,0x66, + 0xc4,0xd1,0xdc,0xbb,0x2d,0x9a,0x5b,0xd1,0xea,0x5d,0x4c,0x87,0x31,0x60,0xa5,0xe9,0x9a,0xd2,0x74,0x9d, + 0x27,0x4b,0xcb,0x85,0xac,0xd7,0x1e,0x49,0x0f,0xa9,0x6f,0x1e,0x2e,0x21,0x55,0x27,0xf6,0x73,0x0c,0x3b, + 0xe1,0xf3,0x5e,0x78,0xc1,0xd3,0x73,0xc1,0x31,0xe2,0xce,0xe8,0x53,0x1d,0x55,0x3c,0xa0,0x2d,0xa4,0x5f, + 0x6e,0x73,0x7b,0x19,0xe7,0xda,0xb4,0x81,0xe6,0x22,0x86,0x53,0xb1,0x92,0x45,0x35,0xf0,0x33,0x41,0xde, + 0xb5,0xa9,0x14,0x46,0xf3,0xda,0x75,0x20,0x18,0x89,0xdd,0x33,0x9a,0x8e,0x6b,0xf6,0xcd,0x0a,0x17,0x84, + 0x76,0x98,0x2d,0x08,0x58,0x30,0xab,0xde,0x83,0xde,0x59,0x24,0xae,0xd5,0x5b,0x78,0x06,0xa3,0x20,0x53, + 0x86,0x77,0xd4,0x35,0x8d,0x02,0xf6,0xcc,0xbc,0x04,0x63,0x35,0xc5,0x2e,0x6c,0xea,0xc4,0x8f,0x76,0x41, + 0x04,0x59,0x4d,0x04,0x19,0x64,0xe7,0xab,0x16,0x6f,0x31,0x44,0x8d,0x31,0x4d,0x0b,0x96,0x0d,0x52,0xa8, + 0x31,0xcd,0x0c,0x6d,0x9d,0xde,0x84,0x1b,0x49,0x39,0x23,0xea,0x85,0x33,0x9e,0xa5,0x59,0xcc,0x46,0x29, + 0xd4,0xa8,0x25,0x1b,0x4f,0x13,0xcd,0xab,0x0e,0x75,0x7c,0xb0,0x54,0x2d,0x26,0x02,0x82,0xde,0xd6,0x16, + 0x0e,0x65,0xf0,0x34,0xaa,0xad,0x3b,0x98,0x3a,0x5a,0xc7,0x5e,0x40,0x4f,0xe1,0x29,0x37,0x74,0xca,0x0d, + 0x85,0x97,0xfc,0x72,0x69,0x5a,0xb5,0x17,0x26,0xed,0x11,0x13,0xb4,0xf7,0x40,0x3a,0xf9,0x82,0x15,0x92, + 0xee,0x11,0xab,0x32,0x4e,0xfc,0x9c,0x93,0x3d,0x30,0x46,0x63,0x8b,0xed,0xc7,0x36,0x8e,0x65,0xae,0x19, + 0xa6,0x40,0xf5,0xdc,0xc3,0x41,0x79,0xfb,0x2e,0x9b,0xd6,0xae,0xc7,0x7e,0x91,0x6d,0x04,0xa2,0x8e,0x95, + 0x4e,0xc4,0xa4,0x11,0x0a,0xc0,0x01,0xc1,0xd2,0x17,0x34,0xbf,0xe1,0xf6,0xf7,0x26,0x2e,0x5d,0xd4,0xb3, + 0x68,0x47,0xc5,0x12,0x09,0x84,0xf2,0x56,0xb6,0xd3,0x60,0x9d,0x43,0x7c,0x44,0xd5,0x40,0x36,0x2a,0x3c, + 0xf9,0x5f,0xda,0x72,0x8d,0xb6,0x7c,0x4f,0xd7,0x20,0x60,0x99,0x88,0x56,0xcc,0x96,0x03,0x6d,0x2f,0x0b, + 0x31,0xc1,0x4d,0x9e,0x70,0x0c,0x12,0xe3,0x26,0x62,0x9d,0x55,0xed,0xf1,0x34,0x0c,0xc6,0x45,0xe8,0x8d, + 0x5c,0xe0,0x44,0x42,0x17,0x9f,0x4f,0x7b,0x3d,0x7e,0xcd,0xd9,0xaf,0x4d,0x17,0xd8,0x34,0xf1,0xa8,0xe7, + 0x7e,0xb1,0x1d,0x98,0xba,0x31,0x20,0x0c,0xd4,0xb3,0x4c,0xb7,0x26,0xf3,0x9e,0xea,0xce,0xed,0xd8,0x72, + 0x58,0xaa,0xe3,0x41,0xcd,0xd6,0xb0,0xd4,0xa7,0x85,0x3e,0x35,0xf8,0x2a,0x10,0x63,0xd5,0x60,0xaf,0x09, + 0x26,0x00,0x19,0x13,0x81,0x19,0x68,0x63,0x00,0x69,0xe2,0xfa,0x39,0xf2,0x41,0x5e,0x2d,0xf9,0xec,0x4e, + 0x95,0xd7,0x41,0x34,0x24,0xb4,0x49,0x7c,0xe4,0xe9,0xbc,0x98,0x7c,0xd1,0xb8,0xc1,0x76,0x8c,0x16,0xd1, + 0xcb,0xdc,0xb4,0x68,0x62,0x4b,0xcd,0xb6,0xaf,0x70,0x49,0xdb,0x21,0x42,0x12,0x42,0x50,0x74,0x22,0x74, + 0x99,0xfc,0xd6,0x5b,0x97,0x48,0xeb,0x5b,0x47,0x34,0x92,0x4e,0xbc,0x38,0x0c,0xf1,0x49,0xc0,0xb1,0x81, + 0x07,0xea,0x1a,0x90,0xce,0x6b,0xa5,0x6e,0x0a,0x13,0x85,0x5e,0x8b,0xf9,0x56,0x8d,0x7b,0xaa,0x4f,0x0a, + 0x25,0x20,0x1b,0xac,0xc0,0x3d,0x27,0xbb,0xbb,0x2b,0xc4,0x93,0xa6,0xfd,0x71,0x99,0x96,0xb8,0x5a,0x23, + 0xe5,0x50,0x96,0xb4,0x4c,0x15,0x51,0xd6,0x8a,0xb7,0x23,0xfa,0x5a,0x7d,0x44,0x44,0xb6,0x65,0xf3,0x38, + 0x51,0xbf,0xc0,0xb1,0xa5,0x17,0x16,0x0a,0xa3,0x12,0xfc,0x2b,0x32,0x07,0xc7,0x91,0x25,0x8f,0x7c,0xcf, + 0x9e,0x2d,0xfa,0x42,0x17,0x8b,0x14,0x1a,0x29,0xfa,0x74,0x76,0x0c,0xef,0x30,0xfb,0xc8,0xad,0xd0,0x03, + 0x5a,0x30,0xb9,0x96,0x36,0xa5,0x96,0x1c,0x73,0xd9,0x51,0xa9,0x23,0x87,0xd5,0x5e,0xdc,0x10,0x8e,0x37, + 0x90,0x3b,0x19,0x56,0x4d,0xae,0x60,0x64,0xa3,0x22,0xa9,0xa8,0x1e,0x03,0x43,0x16,0x02,0xfa,0x23,0xa1, + 0x25,0x7b,0x4c,0x72,0xc2,0xd9,0x05,0x58,0x50,0x79,0xaa,0x04,0xca,0xb5,0x7e,0xa6,0x33,0xe9,0x89,0x33, + 0xe9,0xd7,0xcb,0xe4,0xdd,0xea,0x4a,0xf0,0x6b,0x0c,0x34,0xa1,0x4a,0x2c,0xd9,0xbb,0x10,0x99,0xf4,0xe4, + 0xa5,0x7b,0x0c,0x30,0x72,0xef,0x40,0x58,0xca,0x5e,0x45,0x40,0xc0,0xb4,0x18,0x77,0x9c,0xa4,0x29,0x25, + 0x24,0x9b,0x3e,0x50,0xda,0xb3,0x1f,0x64,0xfe,0xd4,0xbb,0xfb,0x1b,0xf2,0xa0,0x5e,0xe2,0x67,0x9d,0xa4, + 0x23,0x98,0xfe,0x30,0x3a,0xd1,0x27,0x28,0xb7,0xce,0xcf,0xc4,0x65,0xf5,0x56,0xb9,0xc9,0xd1,0xf3,0x26, + 0xb4,0xbf,0xa7,0x2e,0x68,0x8c,0xfe,0x6d,0x59,0x15,0xaf,0xd7,0x96,0x55,0x8e,0x82,0xaa,0x30,0xf8,0x3a, + 0x9d,0x20,0x76,0x8f,0x0c,0xa4,0x99,0xc9,0xf1,0x7d,0x0e,0xbd,0xf2,0x7e,0xb2,0x60,0xfc,0xdd,0xf8,0xca, + 0x91,0x18,0x8a,0xcc,0x33,0x52,0x3e,0xdd,0x3d,0xbe,0xa7,0x25,0xe8,0xf9,0xe5,0xec,0x97,0x2e,0xfc,0xa9, + 0x2a,0x0c,0xe1,0x9f,0x9f,0xca,0x44,0x5c,0xe0,0x25,0xc4,0xe3,0x15,0xf1,0x3f,0x8d,0x60,0x2a,0xf9,0x6d, + 0x2c,0xcd,0x4e,0x1b,0xb9,0xb9,0x7b,0x0b,0x34,0xf1,0xd8,0x24,0xe5,0x86,0x61,0xc6,0xae,0x3b,0x25,0xed, + 0x73,0x48,0x88,0xd9,0xd8,0x95,0xb6,0x78,0xa1,0x49,0x47,0xd8,0x7d,0x37,0x49,0xc7,0xa2,0x49,0x3a,0xce, + 0xbd,0x02,0xf7,0x5a,0x05,0x98,0x74,0x2c,0x6e,0x23,0x1d,0xab,0x16,0xe9,0x38,0xe9,0xad,0x7a,0xf3,0x06, + 0xe9,0xa8,0x43,0xe3,0x2a,0xda,0x91,0xf6,0xd0,0x8d,0x02,0x7c,0xda,0xce,0x62,0x96,0xc7,0xde,0xa7,0xda, + 0x01,0x22,0x77,0xeb,0x10,0x35,0x2a,0x0a,0x1b,0xb2,0x59,0x36,0x43,0x19,0x12,0x85,0x3b,0xe3,0x3f,0xbd, + 0x80,0x10,0x70,0x58,0x29,0x32,0xb5,0x71,0x81,0x33,0x90,0xb1,0x7b,0x8b,0xbb,0x8a,0xc4,0x9a,0xbc,0x45, + 0x1f,0x37,0x0a,0xe7,0x37,0x68,0x5b,0xec,0x65,0x5c,0x9b,0x02,0xec,0xdc,0xe4,0xc4,0xe9,0x64,0x8f,0x00, + 0x0f,0x3a,0xdc,0x38,0x83,0x0d,0x3f,0xc7,0xc6,0x29,0xb1,0x57,0xfb,0x01,0xc5,0x69,0xd0,0xce,0x0f,0xd1, + 0x66,0x99,0xa4,0x5e,0xd0,0x44,0x70,0x36,0x7a,0xb9,0x4d,0xb4,0x5b,0xa3,0x49,0x65,0x6d,0x45,0xaf,0x90, + 0xbe,0xb7,0x86,0x0d,0xdd,0x79,0xc8,0x31,0x74,0x8e,0x54,0xe0,0x3e,0xb6,0x52,0xd3,0xae,0xa3,0x39,0x87, + 0xcd,0x29,0x4c,0x74,0x40,0xcd,0xe9,0x35,0xdb,0x88,0x0d,0x1b,0xe6,0x09,0x36,0x88,0x75,0xd0,0x01,0xb4, + 0xd1,0xb1,0x36,0xbb,0x75,0x82,0xec,0x36,0xc1,0x73,0x0b,0x13,0xdf,0xa8,0xb4,0x66,0x06,0xb6,0x39,0xd3, + 0xf0,0xcf,0x24,0x2c,0x2b,0x39,0x76,0x21,0xe6,0x99,0x5d,0xe0,0x2d,0x26,0xce,0x3c,0x79,0xd7,0x5d,0xb1, + 0x77,0x57,0x04,0x9a,0x12,0xaf,0xfb,0x97,0x65,0xba,0x54,0x57,0xdb,0x43,0x71,0x62,0x5f,0xe1,0xa9,0xa2, + 0x73,0xad,0x52,0xd1,0x2b,0x62,0xd3,0xb8,0x9c,0x77,0x4f,0x53,0x65,0x89,0x13,0x3f,0x52,0x91,0x99,0x63, + 0x15,0xbb,0xdb,0x8f,0x62,0x95,0x26,0x85,0x37,0xf1,0x85,0xe7,0x37,0xc4,0x5b,0xb9,0xc1,0xfc,0xa4,0xca, + 0xb6,0x4a,0xf1,0x3a,0xe6,0xdd,0xb8,0x8e,0x96,0xeb,0xb5,0xcc,0xa3,0x30,0x15,0xd2,0xd8,0xdd,0xe4,0xad, + 0xa8,0xdb,0xcd,0x0b,0xe6,0xb7,0xae,0xc6,0xb1,0x81,0x1c,0x4b,0xdb,0x9d,0x4c,0xc3,0x01,0xbd,0x4e,0x70, + 0xe1,0x12,0x02,0x3f,0xf9,0xb4,0x09,0x7c,0x2b,0x9a,0xb4,0x4a,0xb1,0x90,0x5d,0x18,0x6b,0x02,0xf4,0xad, + 0xe9,0x9b,0x08,0xa4,0xe2,0x3d,0x4d,0x26,0xb2,0x4b,0xd0,0xff,0xb8,0x5a,0xe9,0xd7,0xca,0x46,0xb4,0x47, + 0x91,0x77,0xd5,0x5a,0x58,0xb0,0x75,0xe9,0xf5,0xa9,0x3c,0xb6,0x5c,0x50,0xcc,0x01,0x6d,0xdb,0x8e,0x51, + 0xc6,0x90,0x54,0x31,0x90,0x34,0xe6,0xa1,0x26,0x42,0xe3,0xfb,0x36,0x09,0x2a,0x58,0x1b,0x36,0x6f,0x08, + 0x5f,0x6b,0x01,0x2a,0x70,0x8b,0x26,0x28,0x55,0xf8,0x65,0x76,0x49,0x8e,0x83,0xf1,0x05,0x28,0xfb,0x7b, + 0xd0,0x14,0xe4,0x90,0x76,0x73,0xe5,0xb9,0xb7,0x67,0xe3,0x79,0x1e,0xb6,0x45,0x21,0xaa,0x86,0x28,0xb2, + 0xcc,0x1c,0x81,0x93,0x51,0x81,0x40,0x20,0x58,0xdc,0x76,0x32,0x4c,0x3a,0xe5,0x81,0x84,0xf9,0x18,0x6b, + 0x57,0x20,0x51,0x3c,0xa1,0xc6,0xc4,0xff,0xd4,0x6a,0xfd,0x58,0xf2,0x40,0x08,0xb0,0x43,0xd5,0xd5,0xe4, + 0xb2,0x3d,0x67,0xd6,0x96,0x2a,0x11,0xd2,0x84,0xaf,0x5f,0x6d,0x2c,0x95,0x48,0xb5,0x34,0x24,0x5f,0x7c, + 0xa7,0x37,0x47,0x5c,0x3f,0x23,0xd5,0x12,0x81,0xbb,0x6b,0xdc,0x23,0xa1,0x3c,0x6f,0xd8,0x46,0x30,0x09, + 0xb7,0xb9,0x3f,0xad,0xee,0x1d,0xde,0xfb,0xd7,0xdd,0x33,0x11,0x7c,0x52,0x8f,0x41,0xd4,0xca,0xfc,0xce, + 0x65,0x7e,0xe7,0x5f,0x9a,0x39,0xd3,0xb0,0x00,0xdf,0x38,0x2f,0x96,0xfc,0x53,0x37,0xcb,0xee,0xf2,0x54, + 0xdb,0x37,0xa5,0x9d,0x90,0x65,0x09,0x65,0x2f,0x61,0xe3,0x18,0xde,0xb2,0x67,0xfe,0x4d,0x8e,0x5e,0x3f, + 0xc3,0x87,0x45,0xf2,0xb0,0xf8,0x93,0x78,0x96,0x88,0x1a,0xab,0x75,0x48,0x49,0x3d,0xbc,0xf3,0x20,0xdd, + 0x39,0x87,0x02,0x37,0xf8,0x94,0x07,0x77,0xbf,0xbf,0x13,0xdf,0x79,0x40,0xa5,0x08,0x6b,0xe8,0x77,0xf1, + 0xb0,0x70,0xe5,0x9d,0x8f,0xcb,0xfe,0xff,0x39,0x3a,0x1c,0x04,0xd1,0xf7,0x87,0x6c,0xc4,0x37,0xb5,0xf7, + 0x3a,0xce,0x4a,0x29,0xff,0x90,0x21,0x42,0x12,0x9f,0xdb,0x44,0x17,0x68,0xdb,0x5c,0x8d,0x2d,0x2e,0xf2, + 0x64,0xa5,0x64,0x2a,0xc2,0x92,0x87,0x01,0x0b,0x03,0x16,0x9c,0x43,0x87,0xb4,0xa0,0x5e,0x09,0x2e,0xe1, + 0xd4,0xad,0x02,0xea,0x4d,0x71,0xd6,0x51,0xf3,0x79,0x5a,0x79,0x57,0x41,0x8a,0xeb,0x3c,0xb9,0x7b,0x10, + 0x7e,0xba,0x8c,0x68,0x2d,0xc6,0x79,0xd2,0x1d,0x42,0xc4,0xae,0xdb,0x75,0x2e,0x3a,0xb7,0x2b,0xed,0x52, + 0xea,0xf2,0x87,0xe5,0x12,0x76,0xc9,0xf0,0x9e,0x46,0xa8,0x52,0x18,0x94,0x9e,0xde,0x5a,0xa5,0x0e,0x09, + 0x73,0x18,0x35,0x3f,0xec,0x39,0xfd,0x21,0x7d,0x7e,0x49,0xbd,0xfb,0xf4,0x28,0x3c,0x79,0x78,0xf0,0xef, + 0x11,0x7a,0xb8,0xf7,0xa7,0x3d,0xbc,0xcc,0x45,0x70,0xb0,0x77,0x14,0xa0,0xda,0x17,0xc5,0xa5,0xa9,0x96, + 0xea,0xba,0xca,0x1b,0x0c,0x99,0xb3,0x4d,0xd8,0x3d,0xda,0x88,0x2f,0x4d,0x3d,0x90,0x0d,0x8d,0x22,0x8e, + 0x89,0xd5,0x06,0x25,0x7d,0xc0,0xc1,0xc8,0xcb,0x03,0x73,0xc1,0x60,0x20,0xde,0xe5,0xc9,0x49,0xe0,0xad, + 0x89,0x63,0xdc,0x02,0x73,0x0d,0x60,0x30,0x12,0x0f,0x51,0x4a,0x59,0x37,0x1e,0x33,0x8c,0x51,0xa6,0x02, + 0x36,0xaa,0x42,0x67,0xb0,0xc9,0x34,0xe4,0xeb,0xca,0x74,0xda,0xa6,0x7f,0xd0,0x31,0x1d,0xed,0xfd,0xb3, + 0x26,0xe3,0xb1,0x0a,0xd9,0x8b,0x36,0xd5,0x13,0xe7,0xb9,0x7b,0x8b,0x91,0xee,0xbf,0xa9,0xab,0x75,0x94, + 0x2f,0x37,0xc4,0x5b,0xef,0xf3,0xe4,0x46,0x11,0x11,0x2f,0x71,0x13,0x3d,0x81,0x1a,0x15,0x3c,0xcb,0x88, + 0xe3,0xec,0xba,0x75,0xb4,0xca,0xe6,0xb0,0xa1,0x40,0xd8,0xa6,0xb2,0x98,0xae,0x78,0x92,0xde,0x67,0x4b, + 0x24,0x98,0x2b,0x70,0x39,0x53,0x96,0x90,0xe9,0xc0,0x7a,0x09,0xaf,0xdc,0xe6,0x33,0x75,0x37,0x2a,0xfb, + 0x46,0x08,0x90,0xf4,0x8d,0x84,0xec,0x2c,0xa7,0xc1,0x4c,0xf5,0xae,0x23,0x3a,0x64,0x24,0xcc,0x85,0x88, + 0x9d,0x1d,0x69,0xc4,0x84,0x8f,0xaf,0x72,0x2f,0x01,0x8e,0x52,0x2a,0xe5,0x43,0xfe,0x25,0x2f,0x2e,0x73, + 0x5d,0x29,0xd2,0x5a,0x21,0xe6,0xe3,0x33,0xd1,0x15,0x41,0x3e,0xfe,0x92,0x0b,0xef,0x62,0x42,0x7c,0x38, + 0x9e,0x67,0x33,0x39,0xb9,0x9e,0xcc,0x25,0xee,0x62,0xae,0xe2,0x87,0xf9,0x46,0xbc,0x26,0x88,0x3c,0xf9, + 0xcf,0xa7,0xcb,0xfe,0xde,0xe8,0xae,0xf8,0x9c,0x23,0x52,0x3f,0xef,0xad,0xf1,0x98,0xc8,0xb0,0x9b,0x8d, + 0x78,0x42,0x49,0x8e,0x60,0xb5,0xd7,0xda,0x29,0xbf,0x19,0xf1,0xa2,0x3b,0xf7,0x97,0x5f,0x9f,0xe4,0x17, + 0x59,0x59,0xe4,0xfa,0x8e,0xf0,0xdd,0x46,0x02,0x44,0x78,0xdc,0x53,0xf1,0x3c,0x4f,0x5e,0xe4,0xfb,0xfb, + 0xdd,0xb9,0x4d,0x80,0x17,0x4f,0xf3,0xe4,0x09,0x95,0xd5,0x0e,0x3b,0x79,0x7a,0x91,0x9d,0x81,0x4b,0xe8, + 0xaf,0x68,0xc2,0x1e,0x9e,0xf1,0x4d,0x4c,0x8d,0xf2,0x8f,0xf3,0xe4,0x29,0x95,0xbf,0xbb,0xa8,0x32,0xb9, + 0x26,0xdc,0x33,0xa5,0x22,0xda,0xe2,0xea,0x69,0x1e,0x89,0x57,0x2a,0xfb,0xa9,0xe7,0x2f,0x88,0x92,0x3b, + 0xdf,0xf5,0x0f,0x81,0xdd,0xc4,0x9b,0xed,0x7c,0x39,0x3d,0x93,0x77,0x39,0xf3,0xe5,0x76,0x26,0xc1,0x41, + 0x49,0xe7,0x1c,0xb2,0xe9,0x34,0x33,0x6f,0x74,0xa0,0x3d,0xcf,0xc5,0x5b,0xdd,0x95,0x6c,0x79,0x4e,0x7b, + 0x6b,0x9d,0x2d,0xd3,0x29,0xfd,0x29,0xe8,0x4f,0x51,0xb9,0x2e,0xc1,0x65,0xbc,0xa8,0xf4,0x27,0x8f,0xf2, + 0x24,0xe4,0x6f,0x26,0xe7,0x25,0x91,0x28,0x9f,0xee,0x7e,0x9a,0xf6,0xbc,0xde,0xdf,0x6c,0xfa,0x7c,0xfb, + 0x6e,0x24,0x3e,0x40,0x19,0x0d,0xaa,0xea,0x49,0xce,0x21,0x2a,0x81,0x95,0x3f,0xb2,0x5d,0x43,0xf7,0x55, + 0xc5,0x1f,0x09,0x9f,0xe8,0xd8,0x07,0x81,0xb8,0xc1,0x55,0xc7,0x1e,0x05,0x8c,0xca,0x0e,0x37,0xc0,0x53, + 0x6a,0x96,0xb7,0x03,0xea,0xa1,0x07,0x07,0xf6,0x7b,0x86,0xfa,0x8f,0x79,0xe4,0x39,0x75,0xa3,0xfd,0x67, + 0xb9,0xf8,0x23,0x17,0xbf,0x78,0x28,0xa8,0x45,0x0b,0xd0,0x18,0x9f,0xc1,0x30,0xe6,0x19,0xb5,0x87,0x45, + 0xed,0x82,0xa1,0xb3,0x79,0x71,0x9a,0xce,0x41,0x93,0x32,0xa2,0xc2,0xbc,0xa8,0x24,0xe0,0x7e,0xb0,0x83, + 0x7d,0x99,0x5f,0xf4,0x3f,0x7e,0x78,0x32,0x7e,0xf2,0xea,0x63,0x24,0x9e,0x11,0x2c,0xff,0xde,0x00,0x91, + 0xf1,0x18,0x99,0x8f,0x9f,0x7c,0x7c,0xff,0xfa,0xf5,0x8b,0x77,0xe3,0x1f,0x5e,0xbc,0x7e,0xf4,0xf0,0xc5, + 0xf8,0xd9,0xeb,0xd7,0x3f,0x8d,0xc7,0xe2,0xc7,0x6e,0xc0,0x7d,0x77,0xbd,0x38,0x2d,0xa8,0xd1,0xbd,0x50, + 0x3d,0x45,0xdd,0x7d,0xd3,0x57,0x16,0xa3,0x5c,0xeb,0xf6,0xe2,0x68,0xf0,0xc7,0x2d,0x35,0x4b,0x2e,0x4e, + 0x3f,0xd1,0xf0,0x5d,0x73,0xd6,0x1b,0xb1,0x2e,0xd4,0x55,0x7e,0xb2,0xee,0x8a,0xbc,0x6a,0xa3,0xe5,0x37, + 0x8f,0xbf,0x0e,0x4c,0xbf,0x8b,0x29,0x36,0x55,0x41,0x89,0x29,0xfc,0x6f,0x68,0x59,0x1b,0xdf,0x78,0x05, + 0xb1,0xfe,0x8d,0xb2,0x84,0x2c,0xd2,0xd2,0x5f,0xc8,0xaf,0x76,0x50,0xd4,0x1b,0x6d,0x42,0xf0,0x53,0x9e, + 0x9c,0x89,0x5f,0xc1,0x10,0xfc,0x90,0x6f,0x7d,0x9e,0x4d,0x93,0x5f,0x89,0x6e,0xd3,0x57,0x25,0xae,0x4e, + 0xa1,0x9e,0xdf,0x0c,0x7e,0xc8,0x9b,0x7d,0x7c,0xb7,0x3a,0xed,0xe8,0x26,0x95,0xd6,0xc1,0xfa,0xa8,0xb9, + 0xc6,0x27,0xca,0xd1,0xb0,0xfd,0x95,0xbe,0x4d,0x14,0xdf,0x89,0xad,0x4f,0xd4,0x45,0xd9,0x7e,0xff,0xbc, + 0x7b,0xb4,0xed,0x23,0x3a,0xf3,0x58,0x2e,0x95,0xa0,0xbd,0x55,0x43,0x5e,0xd4,0x44,0x58,0x77,0x5f,0x98, + 0xe7,0x3a,0x6c,0x25,0xad,0x6c,0xef,0x54,0xb7,0xed,0x9d,0xf8,0x32,0xf8,0x95,0xbd,0x3e,0xcf,0x36,0xcc, + 0x66,0xf1,0x3c,0x9d,0xff,0xce,0x11,0x4e,0xf9,0xb7,0xf6,0x91,0xef,0x94,0x61,0x7a,0x7a,0xe0,0x2a,0xa3, + 0x2f,0xb9,0xe4,0xdb,0x9f,0xda,0x77,0x5c,0xea,0xdb,0x2b,0xf9,0x0e,0x29,0x7d,0xdf,0xa5,0x9c,0x2f,0xcc, + 0x65,0x97,0x79,0x65,0xae,0xee,0x50,0x5f,0xe9,0xcb,0xa6,0x0a,0xf5,0xea,0x6e,0x9f,0xf2,0x0b,0xb9,0x5b, + 0xa8,0x9a,0xa9,0xe6,0x5e,0x48,0x3f,0x95,0x6f,0x30,0x85,0x39,0x2f,0xa8,0x3c,0xdd,0x44,0xd3,0xac,0xd5, + 0x5c,0x6c,0xb9,0x65,0x40,0xdc,0xa8,0x47,0x5f,0xd1,0xe9,0x27,0x95,0xe9,0x25,0x87,0x94,0x61,0xf0,0xb2, + 0xd7,0xa6,0xda,0x04,0xe7,0xb7,0xc5,0xca,0x0a,0x95,0x68,0xc2,0x96,0xbb,0x62,0xc7,0x73,0x6a,0x74,0xea, + 0x25,0xf0,0x4d,0xab,0xe6,0xb5,0x11,0x03,0xbc,0xf2,0xd2,0xf8,0xc2,0x39,0xbf,0x37,0xdb,0x41,0xc4,0x61, + 0x32,0x24,0x7e,0x26,0xc4,0xcc,0x4b,0x11,0x23,0x3a,0xde,0x2c,0x3b,0x5b,0xf1,0x2d,0xe5,0x31,0x90,0xee, + 0xe0,0xe7,0x5c,0x2d,0x13,0xdf,0x50,0xbf,0x8d,0x39,0xbb,0xa7,0x65,0xd3,0x79,0x23,0x3d,0x51,0x3e,0xe1, + 0x6f,0x1e,0x94,0x52,0xc3,0x6a,0x57,0xd6,0xad,0x9b,0x49,0x0c,0x36,0xe6,0x7b,0x2c,0x38,0xbe,0x89,0x62, + 0xb3,0xd4,0xad,0x31,0xce,0x34,0x8e,0x57,0x1d,0x31,0x6f,0xbc,0x49,0x3b,0x14,0xd4,0x3a,0x0d,0xac,0x75, + 0xa7,0x8e,0xc8,0xcb,0x16,0x6a,0xc0,0xed,0x29,0x27,0x01,0xf6,0x6c,0x80,0x90,0xd7,0x4b,0xcf,0x0e,0x43, + 0x87,0x4f,0x43,0x0a,0x87,0x03,0xc3,0x43,0x01,0xc7,0xb1,0xa0,0x84,0xe9,0x7e,0x25,0x61,0x9e,0xd1,0x61, + 0x96,0xa7,0x7a,0x29,0x4b,0x98,0x07,0x5c,0x86,0x39,0x41,0x72,0x77,0x00,0xed,0x13,0xdc,0x1f,0x66,0x43, + 0x05,0x59,0x99,0xc4,0xc1,0xc1,0x20,0xe2,0xfb,0x6d,0x6d,0x96,0xb5,0xf8,0x46,0x24,0x79,0xed,0x44,0x8a, + 0x19,0x87,0x8f,0x86,0xbe,0x9b,0x5b,0x85,0x96,0x18,0xe8,0xc0,0x96,0xb5,0x0a,0x6c,0xa9,0x86,0x15,0xf3, + 0xa3,0x19,0x4c,0x8c,0x78,0xee,0x2e,0xce,0xa4,0x19,0x1a,0x92,0x35,0x22,0xb8,0xe7,0xc4,0x47,0x90,0xc7, + 0x14,0xa7,0x7c,0xc6,0x99,0xcb,0xb1,0x45,0x0a,0xbc,0xa4,0x31,0x0b,0xec,0xa4,0xc0,0x79,0x28,0xdf,0x15, + 0x3b,0xb5,0x04,0x23,0x1e,0xd7,0xc3,0xb4,0x20,0x4d,0x03,0x91,0x94,0x65,0x72,0x53,0x9d,0x17,0xab,0xf9, + 0x94,0xf6,0x2a,0xcd,0x60,0x0d,0xd8,0x12,0x2d,0xcb,0x5c,0x1e,0x8e,0x0a,0x5e,0x62,0x70,0x85,0x5c,0xf2, + 0x9a,0xff,0xa0,0xf1,0xc3,0xc5,0x82,0xdd,0x78,0x09,0x5b,0x5d,0xea,0xcb,0x93,0x69,0xe8,0x81,0xbe,0x80, + 0x79,0x2b,0xee,0x48,0x18,0x7e,0x6e,0x4a,0x84,0x54,0x48,0x43,0x4b,0x49,0x26,0x72,0x13,0xb7,0xb3,0xbd, + 0x9b,0x94,0x3b,0xd5,0x40,0xda,0x9d,0x16,0xeb,0x72,0xa9,0x54,0x3c,0x88,0xf9,0x4c,0xb4,0x09,0x44,0xa2, + 0xa5,0x28,0x4b,0x7d,0xd1,0x6d,0x63,0xee,0x6a,0x78,0x00,0x20,0xf5,0x32,0x9d,0x7f,0x09,0x39,0x12,0x7b, + 0xe9,0xe1,0x6a,0xa4,0xde,0x62,0xa2,0xdc,0xba,0x58,0x5e,0xc9,0x18,0xa4,0x2f,0x63,0x78,0x88,0x9e,0x23, + 0x8a,0x3a,0x21,0x6b,0xfa,0x19,0xc1,0xe5,0xdc,0xaf,0xdc,0xef,0xc8,0x6d,0x97,0x55,0x75,0xe1,0xfe,0x77, + 0xea,0x86,0x2a,0x75,0x23,0x30,0x1d,0xb5,0xef,0x8d,0x3c,0xb4,0xc5,0xca,0x0c,0x52,0x15,0xf6,0xe4,0x16, + 0xa6,0x6f,0x27,0x1f,0x3e,0xd1,0x29,0xb1,0xf4,0xbd,0x4a,0x2d,0x05,0x22,0x87,0x75,0xfc,0x44,0x49,0x71, + 0x88,0x8b,0xeb,0xdc,0x56,0x29,0x36,0x54,0xf2,0x82,0x08,0xc0,0x77,0xb7,0x17,0xe8,0x05,0x55,0x30,0x4a, + 0x9e,0x53,0x21,0xea,0x11,0x53,0xa1,0x5b,0x87,0x92,0x52,0x12,0x13,0x5e,0x79,0xc4,0xe6,0xcf,0xf6,0xae, + 0x39,0x69,0x92,0xa4,0x4d,0xb2,0x76,0x6b,0x3b,0x4d,0xa4,0x51,0xaf,0xd7,0x1d,0xd1,0xe6,0xa5,0x36,0x4f, + 0x24,0xf2,0xf6,0x02,0xb6,0x72,0x51,0xd3,0x1b,0x43,0x1a,0xc9,0x27,0x7c,0x31,0x44,0x95,0x00,0x66,0x06, + 0x29,0x31,0x20,0xed,0x0b,0xf1,0x58,0x79,0x78,0x92,0x8e,0x22,0xbe,0x6c,0x28,0x49,0x87,0xa9,0x71,0x29, + 0xaf,0xa2,0xd6,0x25,0x71,0x55,0x34,0x24,0x4e,0xae,0x1a,0xd9,0x1d,0xbb,0xc1,0xb8,0x55,0xf4,0x50,0x7a, + 0x58,0xc8,0xfa,0xbc,0x98,0xf2,0xa3,0xba,0x02,0x1a,0x4f,0x13,0x1d,0x4b,0xa0,0x7b,0x62,0xb6,0x87,0xd3, + 0x15,0x65,0xdf,0x10,0xcc,0x3c,0x4c,0x21,0x61,0xfa,0x98,0x71,0xa0,0x06,0xd3,0xfe,0x05,0xb1,0x34,0xc9, + 0x13,0x25,0x91,0x2d,0xc5,0xa4,0x14,0xab,0xb2,0xa5,0xa1,0x6d,0xd3,0xdc,0x80,0x00,0xc2,0xd9,0x73,0xdc, + 0x02,0x25,0x66,0x1c,0x82,0x8d,0x03,0xb1,0xb1,0x2d,0x4c,0x07,0xcd,0x4a,0x54,0x9e,0x8d,0xc6,0x0d,0xe2, + 0xd5,0x7f,0x8f,0xa2,0x49,0x83,0x2c,0xf4,0xf3,0xc2,0x8f,0x04,0xce,0xd6,0x40,0xcf,0x55,0x6c,0x9d,0xf6, + 0x5e,0x12,0xf9,0x9e,0x9e,0xc9,0xe3,0xf3,0x34,0xcf,0xe5,0x7c,0xbd,0xde,0xdd,0x0b,0x9b,0x49,0xa0,0xbb, + 0xcd,0x65,0x46,0xcd,0x1c,0x42,0x6b,0x55,0x5d,0xae,0x70,0x06,0xf3,0xfd,0x46,0xcd,0x5c,0x2b,0x67,0x0a, + 0x3b,0xfa,0x67,0xdc,0xeb,0x3e,0xc2,0x95,0xce,0x19,0x95,0x4c,0x4b,0x46,0x7d,0xcd,0x8a,0xc4,0x79,0x99, + 0x4c,0x69,0x9a,0xe9,0x30,0xba,0x37,0xd0,0x0f,0x47,0x7d,0x70,0xa8,0x5c,0x2a,0xf9,0x28,0x9a,0xd5,0x9f, + 0xa3,0x48,0x55,0xeb,0x4a,0x20,0xec,0xd9,0xdc,0x32,0xa9,0x84,0xb3,0x17,0x59,0xc5,0xf3,0xa9,0x1f,0xb5, + 0xe5,0xee,0x45,0x99,0xe8,0x04,0x73,0x43,0x2e,0x91,0xd2,0x55,0xa3,0x95,0x8b,0x52,0x5d,0x37,0x4c,0xfc, + 0xce,0xdb,0xbc,0xe1,0x32,0x78,0x66,0xa2,0x0d,0xd3,0x07,0x93,0x92,0x81,0x62,0x51,0x8a,0x33,0x35,0x34, + 0x62,0xc6,0xae,0xcb,0x96,0xa0,0x49,0x8b,0x53,0xf7,0x03,0x1b,0xc7,0x99,0x85,0x57,0x84,0xa1,0x82,0xff, + 0xc7,0xd6,0xe7,0x35,0xc0,0xc5,0xca,0xae,0x62,0x78,0xc7,0xdb,0x42,0x25,0xe2,0xc6,0xaa,0x42,0xf9,0x6d, + 0x85,0x8c,0x0d,0x1d,0xeb,0xe0,0x89,0xd8,0x6c,0x94,0x13,0xb0,0x88,0x80,0x60,0x73,0x2b,0x1e,0x9f,0x04, + 0xfb,0x39,0x2e,0xd5,0xb5,0x4d,0xa7,0x0c,0xa9,0x97,0xfc,0x77,0x8f,0x43,0x35,0x5d,0x31,0xd4,0x7e,0xe1, + 0xbf,0xc7,0x38,0x3b,0xde,0xe1,0xcf,0xc3,0xb2,0x83,0x2e,0x36,0xe7,0xdc,0x02,0xc1,0xd3,0xd9,0x0b,0x63, + 0xcc,0xd8,0x8a,0x48,0x16,0x75,0x8e,0xb9,0x04,0xc3,0x51,0x70,0x72,0x39,0x0c,0xf5,0x99,0x48,0x87,0xe2, + 0xee,0x6e,0xc9,0x0f,0xea,0xb0,0x81,0xac,0x81,0x93,0xf0,0xa0,0xef,0x87,0x4f,0xff,0xb8,0xe6,0x24,0x3c, + 0x68,0x86,0x86,0x28,0x3f,0x4e,0xc2,0x83,0x3e,0x90,0xb8,0x32,0x57,0x87,0xfb,0xd4,0xfb,0x42,0x53,0x99, + 0x93,0x53,0x43,0xa5,0x13,0x9b,0xd4,0xeb,0xbd,0xd3,0x0d,0xa9,0x48,0x6a,0x96,0x7a,0x9d,0x66,0x74,0xee, + 0xbb,0x7a,0xec,0x31,0x0e,0x56,0x4a,0x13,0xf3,0xf2,0xf2,0xb1,0xff,0x4e,0x99,0xcf,0xa7,0x95,0x01,0x08, + 0xaf,0x48,0x3b,0xd5,0x69,0x10,0x20,0x6e,0xef,0x88,0x4f,0x20,0xd5,0x9d,0xf1,0x44,0x83,0xd4,0x34,0x16, + 0x19,0x87,0xfe,0x6b,0xcb,0x67,0x67,0xf7,0x75,0xae,0xc4,0x16,0xe6,0x0a,0x3a,0xb8,0x83,0xe9,0x30,0x27, + 0xfd,0xc0,0xdd,0xfa,0xd8,0x71,0x60,0x76,0x1c,0xc2,0x0d,0xf4,0x39,0xa8,0x13,0x7d,0x16,0xbb,0x6b,0xe4, + 0x36,0xec,0x25,0xe5,0xf5,0x07,0x96,0xe0,0x5d,0xbd,0x8b,0xe0,0x16,0x2f,0x7c,0x4a,0xc8,0x4c,0xa5,0xb1, + 0x2d,0x33,0x9f,0x21,0xf8,0xcc,0x43,0xff,0xa4,0x6f,0xd1,0xe7,0x4c,0x57,0x0f,0x14,0xb7,0x27,0x3c,0xf6, + 0xf1,0xdf,0x3a,0x9e,0x8f,0x4d,0x8a,0x3c,0xc6,0x4e,0xc5,0x98,0xe0,0x5b,0x01,0x15,0x90,0x72,0xe0,0x3c, + 0xdd,0x0b,0xd5,0x57,0x7d,0x6f,0x9b,0xb0,0xe2,0x15,0x6d,0xe8,0x6d,0xa1,0x28,0xaa,0xcf,0xcb,0xe2,0x92, + 0x0e,0x91,0xb7,0xac,0xac,0xbf,0xa3,0x3e,0xdb,0xa1,0xe9,0xdb,0xd1,0x70,0xbd,0x03,0x6b,0x8b,0xe6,0x92, + 0xc2,0x14,0x25,0xda,0x10,0x4e,0xa2,0xca,0xaf,0x6f,0x2c,0x6c,0xee,0xef,0xff,0x81,0x89,0x73,0x1d,0x44, + 0xef,0x8b,0x65,0xa8,0xa7,0x08,0x52,0x80,0x7c,0xb5,0x04,0x3c,0xb9,0x78,0x78,0x74,0x94,0x34,0xe6,0x45, + 0x71,0xc9,0x1d,0xce,0x37,0x35,0x41,0xf2,0xa0,0x09,0x70,0x90,0x5b,0x84,0xb0,0x87,0x0b,0x5b,0xe9,0x2a, + 0xee,0x57,0x03,0x82,0x0d,0xbb,0xef,0x83,0xb1,0xfd,0xbe,0xd6,0x92,0x02,0xb5,0x79,0xa3,0x56,0x97,0xbc, + 0x7e,0x7f,0x85,0x45,0xc7,0xb6,0xb1,0xf7,0xda,0x83,0x37,0x30,0xfd,0x36,0x99,0x60,0x33,0xba,0xfa,0x4f, + 0xe3,0xc2,0x6d,0x07,0x4e,0xf2,0xa0,0x45,0x04,0xda,0x34,0xca,0x75,0x77,0xe0,0xef,0xc0,0x66,0x4d,0x5b, + 0x3b,0xb1,0x95,0xa0,0x24,0x30,0x61,0x24,0x5c,0x85,0x95,0xb7,0xdb,0xfd,0x89,0x6a,0xee,0xfb,0xbc,0x39, + 0x89,0x26,0xc6,0x64,0x6b,0x86,0x94,0xd4,0x61,0x4b,0x42,0xc3,0x1b,0xc1,0x43,0x34,0xbb,0x7a,0x3f,0x00, + 0x53,0xa9,0xf4,0x72,0x45,0x85,0xe3,0x5b,0x16,0x5b,0x07,0x8e,0x4e,0x92,0x3d,0xdc,0xe1,0xcc,0x70,0xcb, + 0x4f,0x40,0x5f,0x5f,0x1a,0x76,0x7f,0xa7,0xa5,0x35,0x45,0x1c,0xe4,0xdf,0x1f,0x97,0xfb,0xfb,0xa7,0x25, + 0xdf,0x5c,0x36,0xfd,0x9e,0x6b,0x8a,0x72,0x8e,0xe3,0x6f,0xc2,0x45,0xe7,0xbd,0x23,0x71,0x08,0x39,0x0e, + 0x1f,0x76,0xa7,0xe6,0x52,0xc9,0x68,0x70,0x85,0x9d,0x8e,0xd3,0xe1,0x50,0x3c,0x0b,0x71,0x45,0x35,0x0c, + 0xa1,0x94,0xbc,0xa6,0x31,0x5e,0xea,0xb6,0x3f,0x58,0xd0,0xa9,0x0e,0xbb,0x9a,0x28,0x25,0x6e,0xeb,0xb3, + 0x91,0xd1,0xae,0x96,0xa5,0x31,0xa2,0x58,0xaf,0x33,0xbe,0x3a,0xce,0x6e,0x9d,0x06,0xb4,0x28,0x97,0x4d, + 0x53,0x6b,0x83,0xc7,0x52,0x5b,0xb6,0xd4,0x9b,0x6e,0x72,0xaa,0xf6,0xb7,0xde,0xfe,0x82,0xe9,0x72,0x2b, + 0x46,0x7d,0x1b,0xd6,0x86,0x11,0x13,0x77,0x8c,0x95,0xc6,0x5f,0xda,0xd9,0x3c,0x2f,0xb7,0xb7,0xb0,0x69, + 0x4d,0x87,0x44,0x17,0xbb,0x00,0xc0,0x43,0x8a,0x3c,0x11,0xfe,0xa9,0x03,0x51,0x46,0xa3,0x96,0x6d,0x31, + 0xda,0x9f,0xed,0x30,0x7f,0x6b,0xe9,0xcf,0xc3,0xf6,0x52,0xd5,0x04,0xf7,0xd3,0xe2,0xf2,0xab,0xeb,0xa5, + 0x07,0x87,0x40,0x3d,0x8f,0x24,0xd1,0x7d,0x8f,0x8d,0xfe,0x68,0xbd,0xb6,0x23,0x77,0xc7,0xbc,0x62,0x60, + 0x07,0x7f,0xab,0x73,0xad,0xbd,0x3d,0x68,0x1c,0xc6,0x47,0x1b,0xc5,0xb7,0xbd,0x27,0xe2,0x44,0xe6,0xab, + 0x85,0x34,0xf2,0x1c,0xd1,0x92,0xef,0x40,0x69,0x13,0x9f,0x89,0x0a,0x7f,0x37,0xe2,0x35,0x15,0xc7,0x0e, + 0x03,0x73,0x3e,0xf8,0x52,0x87,0xc7,0x9e,0xc4,0x55,0x71,0xfa,0x9f,0x4b,0xf1,0xa4,0x14,0x2f,0x4a,0xf1, + 0xbc,0x14,0x4f,0xa9,0x34,0x5c,0xf8,0x7d,0x1e,0x5a,0x53,0x38,0x7c,0x1e,0x74,0x7b,0xe8,0x77,0xb8,0xe0, + 0x67,0x95,0x9d,0x9e,0xa8,0xcb,0x49,0x3f,0x09,0x55,0x14,0xe6,0x9b,0x31,0x8b,0x79,0x54,0x26,0x3a,0xaf, + 0xbd,0x8e,0xc7,0xa5,0xd0,0xde,0xf0,0x1f,0xe1,0xcc,0x1f,0xa7,0xe6,0xf5,0xc9,0x7c,0x11,0x97,0x8a,0x61, + 0x23,0xda,0x4d,0xce,0xf0,0x9e,0xa9,0xf7,0x0d,0xae,0xa1,0x50,0xde,0xdb,0x4d,0xb3,0x1e,0x61,0x6e,0x7b, + 0xd1,0x86,0x3c,0xc9,0x44,0x3f,0x88,0xaa,0x6d,0xbb,0x43,0x59,0xad,0x14,0xc2,0x86,0x44,0xb0,0x6c,0x5f, + 0x30,0xca,0x71,0x02,0x70,0x71,0x73,0xd4,0xdf,0x63,0xed,0x63,0x08,0xfa,0x54,0x52,0x77,0xb4,0x74,0xce, + 0xbb,0xe2,0x48,0xfb,0x94,0xc3,0xdb,0xfe,0xe1,0xdc,0x6e,0x7e,0x04,0xe5,0x7c,0x0a,0x28,0x94,0x1c,0x1d, + 0x21,0x2c,0x70,0x4d,0xbc,0x8d,0x67,0xba,0x11,0x26,0x23,0x6e,0xb2,0x5a,0xc6,0xd1,0x6e,0x2b,0x88,0xc1, + 0x6e,0x17,0x61,0xaa,0x1a,0xda,0xdd,0x0d,0x33,0xac,0x94,0x89,0x4a,0xd0,0x1f,0xab,0x09,0x38,0xd6,0xc2, + 0xda,0xf5,0xda,0x84,0x3e,0x75,0xd6,0x7c,0x5c,0xde,0x7b,0xe7,0x6b,0x0b,0xb4,0x29,0xa4,0xab,0xc7,0x5b, + 0x24,0x48,0x79,0x75,0xe8,0x2b,0x7e,0x1c,0xeb,0x7b,0xab,0x43,0xf3,0x68,0x84,0xa9,0x7c,0x47,0xd2,0x6d, + 0x5d,0x81,0x80,0xb8,0xbf,0xa7,0x6e,0xb9,0x30,0x97,0x03,0x35,0x6f,0x08,0x9b,0xe2,0xd2,0x8a,0x3d,0x7b, + 0x95,0x3d,0x42,0xf2,0x53,0x12,0x9b,0xb6,0xd8,0x4a,0x95,0x95,0xe5,0x4d,0x56,0xf6,0x1b,0x22,0x2a,0x63, + 0x11,0xac,0x58,0x77,0xc4,0x80,0x42,0x39,0x51,0x25,0x8d,0x21,0x51,0x1a,0x14,0x2c,0x08,0x3d,0x2d,0x94, + 0x5f,0x72,0xe5,0xbb,0x25,0x9b,0xf8,0x3d,0x27,0x13,0xe2,0xf8,0x71,0x69,0xf9,0xab,0x70,0x25,0xda,0x6d, + 0xab,0x4b,0xf2,0xb6,0xdb,0x3f,0xdc,0x2a,0xf9,0x98,0x85,0xe7,0x1b,0x67,0xd0,0x3c,0x4f,0xb6,0x27,0xd8, + 0xc5,0x84,0xf8,0x4a,0x1e,0x9d,0xc3,0x52,0x5d,0xfd,0x38,0x8f,0x36,0x05,0x4f,0xfc,0x5e,0xc5,0xd7,0xd7, + 0xe7,0xb0,0x50,0xf4,0xc2,0x64,0x53,0x06,0x4d,0xc3,0x44,0xab,0xc9,0x11,0x27,0xc9,0xbf,0xb4,0xd8,0x6e, + 0xd2,0x8e,0x8d,0x2b,0xbc,0x10,0x16,0xf4,0x6c,0x57,0x01,0x10,0xe7,0xa2,0x63,0x6c,0x84,0x0a,0xcb,0xb5, + 0x7d,0x68,0xab,0x7b,0x88,0xf4,0xe5,0x75,0x65,0x57,0x0b,0x83,0xb2,0x11,0x0b,0x2d,0xf4,0x5f,0xd9,0xdc, + 0x1a,0x77,0x86,0x5a,0x85,0x3f,0x1b,0xb8,0x35,0x77,0x17,0xbb,0x9a,0xbb,0x6f,0x86,0x21,0xdc,0x57,0x23, + 0xdc,0xaf,0x6c,0x71,0x29,0x31,0x7a,0xc6,0x27,0x33,0x8a,0x53,0x54,0xb8,0x7b,0x08,0x8a,0x4e,0xdb,0x04, + 0x74,0xd2,0x1a,0xdb,0x1d,0x6d,0xe2,0x39,0x76,0x04,0x6d,0xf6,0xc4,0x4a,0x2a,0x95,0x91,0xab,0x42,0xa2, + 0x21,0x4b,0xa5,0xfa,0x63,0x65,0xf3,0xf0,0x3c,0x77,0xdc,0x56,0xc1,0xf7,0x25,0x83,0xca,0xb3,0x7d,0x8d, + 0x10,0xa8,0xd2,0xeb,0xf9,0xe1,0xc0,0x93,0x66,0x0e,0x4a,0x62,0x59,0xf6,0xda,0xd7,0x9a,0x43,0xa6,0x09, + 0xe7,0x48,0x9b,0x71,0x52,0x8e,0x88,0xbb,0x47,0x0f,0x1a,0xb6,0x0d,0x20,0x5b,0xd8,0x5f,0x25,0xf6,0x6f, + 0x32,0xa6,0x54,0xf1,0xb8,0x6c,0x08,0x29,0x9f,0xd2,0x7e,0x7d,0x55,0x26,0x47,0xe2,0x4d,0x99,0xdc,0x13, + 0x2f,0xd1,0xf0,0x67,0x5f,0x6f,0xc7,0x17,0x57,0x6f,0xd3,0xe2,0x0a,0x03,0xa9,0x43,0x6c,0xbc,0x22,0x06, + 0xf3,0x65,0x69,0xf4,0x70,0x34,0x6d,0x1f,0x57,0x8a,0xc1,0xe4,0x48,0x6c,0xde,0x19,0x30,0xec,0x42,0x76, + 0x0e,0xe6,0x5b,0xf2,0x2b,0x06,0x25,0x23,0xa4,0xb1,0xc6,0x9d,0x1c,0xea,0xc3,0xc7,0x4c,0x83,0xdc,0xa0, + 0x1e,0x83,0x83,0x44,0xde,0x46,0x5d,0x36,0x81,0x4e,0x14,0xf7,0x39,0xbd,0x20,0x47,0x1d,0x34,0x48,0x56, + 0x4f,0x5a,0x98,0xd6,0x71,0x83,0xa2,0xb7,0x3d,0x92,0xac,0xb1,0x55,0xb6,0x76,0x6b,0xe6,0xed,0x9e,0x7c, + 0x1b,0x0d,0xda,0xdd,0x84,0x4c,0xdb,0xce,0xfb,0xf4,0x4c,0x5d,0x87,0x2b,0xa4,0x3e,0xc4,0x18,0xdc,0xf5, + 0xc1,0x66,0xd2,0xc4,0x96,0x1b,0x60,0xb2,0xe5,0x97,0x13,0x29,0xaa,0x55,0xd4,0x5a,0x6e,0xb0,0xe7,0xee, + 0x36,0xc7,0x65,0xf4,0x5a,0x2b,0x67,0x26,0x97,0xb6,0x19,0x87,0xcb,0xd6,0xf2,0x0c,0x5e,0x45,0xd5,0xd6, + 0x9b,0xb2,0xb8,0x52,0xe2,0x01,0x9d,0x5c,0xc9,0xf9,0x4c,0xbd,0x77,0x6d,0x23,0x7b,0x6b,0x66,0x6e,0x17, + 0x83,0x69,0x78,0x84,0x9b,0xb4,0xe1,0x76,0x74,0x48,0xce,0xdc,0xe1,0x3a,0x93,0xb3,0xbf,0x4f,0x89,0x26, + 0xa6,0x22,0x22,0x02,0x9b,0x97,0xdc,0xdb,0x09,0x46,0x69,0x5b,0x9b,0x5c,0xbe,0xe7,0x68,0xaf,0x2c,0x0a, + 0x48,0x91,0x72,0xf5,0x14,0xd7,0x48,0xb3,0xea,0x4a,0xc8,0x2e,0xd4,0x5d,0xc9,0x10,0xfe,0x78,0x12,0x1c, + 0x26,0x35,0x6a,0x6f,0x13,0x9a,0x84,0xf6,0x06,0x3e,0xe2,0x52,0x0e,0x55,0xe9,0x77,0x8b,0x20,0x6c,0x4a, + 0x93,0x7c,0x04,0x69,0xa7,0xe5,0x41,0x0d,0xcd,0x49,0x7f,0xac,0x2f,0x11,0xea,0xb2,0xe7,0xa1,0x5c,0x62, + 0x0b,0x61,0x5b,0xc3,0x56,0x13,0x89,0x8e,0x38,0x26,0xbf,0x7a,0x74,0x40,0x1f,0xaa,0x2e,0xbf,0xba,0xa5, + 0x41,0x75,0x76,0x9b,0xf1,0x29,0x78,0x79,0x5f,0x4a,0x59,0x39,0xed,0x70,0x6b,0x09,0xed,0x81,0xdf,0xdc, + 0x70,0xb4,0x03,0x73,0xac,0x94,0x89,0x72,0xe9,0x1f,0x44,0xb2,0x0d,0xea,0xea,0xce,0x44,0x9f,0xd4,0x48, + 0xf8,0x88,0x1f,0x4f,0x1a,0xc6,0xde,0xc2,0xbf,0x29,0xfa,0xbd,0x77,0x97,0x2a,0xe2,0x3d,0x6c,0x78,0x2d, + 0x7d,0x4b,0xc4,0xbf,0xfa,0xed,0xa1,0xd6,0x87,0x64,0xaa,0xc7,0x1c,0x96,0x1e,0x0a,0x98,0x40,0xd1,0x20, + 0x01,0x04,0x7a,0x99,0x47,0x7a,0xa8,0xa0,0x56,0xaa,0x84,0xdd,0xbf,0x81,0x90,0x5b,0xd3,0xed,0x4a,0x9b, + 0xd9,0xae,0xd4,0xb6,0x12,0x4d,0xa3,0xb6,0x48,0x84,0x59,0x32,0xad,0xc3,0x50,0x0b,0x0b,0xdd,0x02,0x2a, + 0x29,0xbf,0x50,0x71,0x39,0x3a,0x48,0x19,0xd1,0xb8,0xb6,0xb6,0x23,0xfc,0x37,0xad,0xea,0xc3,0x10,0x1a, + 0xcb,0x8c,0xd8,0x0b,0x18,0xf2,0x75,0xd0,0x23,0x5b,0x40,0x60,0x38,0x18,0xb8,0xcd,0xb7,0x57,0x9c,0x8e, + 0x3c,0xed,0xdc,0xf2,0x75,0x34,0xed,0x10,0x1f,0x23,0x8d,0xd2,0x92,0x5a,0x3a,0x06,0x7e,0x07,0xb5,0x85, + 0x0d,0x58,0x20,0x30,0x90,0xd9,0xd0,0x5b,0x7d,0x2d,0xb4,0xa7,0x9a,0x6d,0xba,0xc0,0xe5,0x4e,0xbc,0xd7, + 0x0b,0x13,0xd2,0xf6,0x15,0xcc,0xa5,0x69,0x69,0x89,0x4d,0xc7,0xc8,0xe1,0x94,0x21,0x58,0x5f,0x43,0xd8, + 0x6b,0xc5,0x61,0x6d,0x54,0x3f,0x02,0xd0,0xda,0xad,0xa8,0x00,0x51,0x0a,0xe7,0xf9,0x8e,0x29,0x62,0x3f, + 0x27,0x4d,0x52,0xc2,0x18,0x5b,0xe9,0x61,0xda,0x73,0xd0,0x1e,0x7d,0xf3,0xf2,0x7a,0xc9,0x97,0xd7,0x27, + 0x4a,0x54,0x01,0x49,0xe2,0xf0,0x2c,0x9e,0x86,0x4a,0xcb,0xa7,0xae,0x47,0x36,0xf5,0xa2,0x09,0x40,0xe1, + 0xf0,0x6b,0xd8,0x53,0xc1,0x69,0x11,0x22,0x6d,0xcc,0xba,0xba,0x4e,0xe1,0x69,0xab,0x87,0xce,0x28,0xb8, + 0x56,0x0c,0xbb,0x6c,0x88,0x02,0x74,0xde,0x5b,0xde,0x1e,0x6c,0xba,0x19,0xe2,0xae,0xaa,0x1b,0x16,0x75, + 0xe2,0x9c,0xe0,0x1b,0x13,0x20,0x49,0x93,0x7c,0xb3,0x99,0x7f,0xb7,0x81,0x0f,0x8a,0x1c,0xe3,0x7b,0x8b, + 0x20,0x4e,0x13,0x9f,0x71,0xd0,0x83,0x15,0x46,0x26,0x13,0x0d,0x52,0x2b,0x0e,0x43,0x24,0xeb,0x74,0x34, + 0xa0,0x8d,0x37,0x23,0xb2,0x15,0xe1,0x35,0xef,0xff,0x53,0xd9,0x9e,0x87,0x55,0x2f,0x08,0x22,0xff,0x4a, + 0xa3,0x43,0x10,0x4c,0xdf,0x7d,0x9b,0xf0,0x25,0x92,0x7a,0x85,0xd1,0x73,0x5c,0xd1,0xb9,0x79,0xa7,0x08, + 0x1c,0x84,0x36,0x89,0xdf,0x85,0x66,0xa6,0x08,0x04,0x01,0xf6,0xd2,0xea,0xce,0x6e,0x83,0xe6,0xb1,0x29, + 0xf0,0x8b,0xd9,0x12,0x5d,0xa8,0xb8,0x4c,0x7e,0x41,0x84,0xf2,0x46,0xb8,0x0d,0xcb,0xe1,0x49,0x5c,0xd9, + 0xd2,0xb9,0x38,0xc5,0xb0,0x88,0x0b,0x08,0x3c,0x06,0x10,0x27,0xe5,0xb8,0xd1,0x03,0x8c,0xe6,0x43,0x78, + 0x72,0xd2,0xae,0x39,0x13,0x67,0xc4,0xbb,0xc3,0x2d,0x43,0x43,0xef,0x1c,0x63,0x43,0xa0,0x6f,0xe5,0x76, + 0x67,0x3b,0x1f,0xb1,0xc7,0x17,0xf5,0x0f,0xc6,0x2e,0xfc,0xb0,0xab,0x34,0x9f,0xb7,0xf8,0x4d,0x78,0xdd, + 0x2b,0x19,0x10,0xb7,0xe3,0x76,0x94,0xfe,0x9d,0x6b,0xb8,0xef,0xd1,0x2c,0x12,0xdf,0xf7,0xb8,0xd4,0xb7, + 0xcb,0x23,0x78,0x88,0xe2,0x70,0x4d,0x8a,0xe9,0x9a,0xb2,0x17,0x34,0x58,0x0f,0xcb,0x26,0xdb,0xa8,0x4d, + 0x2b,0x15,0x23,0x45,0x0a,0xeb,0xb7,0x69,0xd7,0x3c,0xe1,0xbc,0x56,0xb0,0x1a,0xc5,0xb9,0x87,0x43,0x8d, + 0x25,0xb0,0x26,0x46,0x6c,0xcd,0xf0,0x51,0x52,0x29,0x8a,0x2b,0x6f,0xe7,0xd2,0x51,0xb1,0xbd,0xb1,0x70, + 0x69,0xcf,0xd7,0x8c,0x61,0x18,0x70,0x36,0x03,0x1b,0xc8,0x29,0xff,0x6a,0x61,0x86,0xf7,0x6e,0x73,0x99, + 0xeb,0xd0,0xa3,0x9c,0xe9,0x04,0x51,0xa0,0x4a,0x1b,0xe6,0xaf,0x14,0xd6,0x98,0x2b,0x8f,0x1a,0x66,0x73, + 0xb8,0x1a,0x2c,0x79,0xdf,0x4c,0x52,0xf7,0x25,0x25,0xaf,0x9b,0xa9,0x5d,0x1a,0x74,0x75,0xb5,0x90,0x0b, + 0xd5,0xc2,0x8b,0xc9,0xb4,0x9c,0xba,0xa5,0x19,0xb7,0x2e,0xa8,0x6b,0xd0,0x95,0x46,0xea,0xd0,0x44,0x36, + 0xd5,0xb0,0xea,0x15,0xb5,0xfe,0x7b,0x99,0xd3,0xe4,0x4a,0x27,0x18,0x14,0xc6,0x31,0xc2,0xb7,0x9f,0x29, + 0xad,0xe8,0x8d,0x23,0x15,0x87,0x9f,0x89,0x39,0x7d,0x5e,0x26,0x77,0xff,0x83,0xbb,0xcb,0xe3,0xbb,0x22, + 0x7c,0x51,0x26,0x94,0xe6,0x8f,0xa2,0xc8,0x5b,0xba,0xe7,0x2d,0xf8,0xad,0x1d,0xfc,0xde,0x12,0x00,0x4f, + 0x03,0x45,0xce,0x41,0xd9,0x85,0xbe,0xfc,0x43,0x81,0x8a,0xa6,0xba,0xe8,0xc0,0x34,0x1a,0x03,0x97,0xe2, + 0x05,0x73,0x92,0xe8,0xa7,0x51,0x37,0x81,0xd5,0xe6,0x92,0x4d,0x9a,0xec,0xd0,0x5d,0xbc,0x43,0xb9,0x1b, + 0xf1,0xa2,0x6c,0x8e,0x63,0x22,0x5b,0x23,0x71,0x8e,0xfa,0x3c,0x35,0x7b,0xc5,0x6c,0xc6,0x0e,0xdc,0xc2, + 0xd8,0x09,0x95,0xde,0x65,0x64,0x1b,0xed,0x89,0x42,0x55,0xbb,0xa9,0x9f,0x11,0x55,0x2d,0x4a,0x35,0x34, + 0x7c,0x58,0x6e,0xb5,0x3a,0x9b,0x6d,0x4f,0xdf,0x6e,0xdb,0x6e,0x29,0x6a,0xc0,0xf3,0xd7,0xe8,0x50,0xb4, + 0xde,0xb5,0x00,0x37,0x7f,0x6d,0x05,0x30,0x40,0xbd,0x04,0xfe,0x54,0x69,0x2f,0xae,0xe6,0xec,0x37,0x6f, + 0x85,0x30,0x2d,0x3b,0xab,0x8e,0xf6,0x62,0x29,0x3a,0x56,0x17,0x93,0x16,0x24,0x0a,0xff,0xda,0x48,0x3e, + 0x74,0x28,0x3b,0x2c,0x92,0x0c,0x46,0x1a,0x30,0x5d,0xc0,0xfd,0x40,0xb3,0xbc,0x75,0x79,0x64,0xba,0x75, + 0x79,0x64,0xd7,0x9a,0xca,0x45,0x17,0x27,0xac,0x98,0x21,0xf0,0x3b,0xcd,0xc1,0xe4,0x70,0x22,0x33,0x7c, + 0xfb,0xf7,0x47,0x43,0x78,0xe5,0xc4,0xb9,0xc7,0xe1,0x9f,0x87,0x76,0x61,0xa8,0x79,0x3a,0x54,0x0f,0x39, + 0x58,0x8a,0x41,0xc6,0x0f,0x0a,0x46,0xc8,0x7c,0x0f,0x16,0x61,0x63,0x0d,0x23,0x08,0xee,0xe5,0x9c,0x7c, + 0xde,0x86,0x39,0xed,0xce,0x3b,0xdc,0xee,0xce,0xb9,0x72,0x21,0x60,0xe9,0x3e,0xa4,0xfa,0x4a,0x8e,0xef, + 0x29,0xd9,0xc2,0x27,0xed,0xed,0x36,0x6e,0x6b,0x6d,0x14,0x25,0xa1,0xb9,0x78,0xcd,0xeb,0xec,0xef,0xb7, + 0x48,0x5b,0xed,0x7e,0x61,0xc2,0x14,0xaa,0xc5,0x96,0x73,0xa1,0xd5,0xd1,0x8a,0xd1,0xa0,0xf1,0x8c,0xcb, + 0xc1,0xb8,0xf4,0x79,0x47,0xc5,0x4c,0x10,0xcd,0x3b,0x34,0xdf,0x18,0x8b,0x38,0x16,0x85,0x8e,0x11,0x0e, + 0x98,0x0e,0xf3,0xf0,0xb6,0x5c,0xdb,0x12,0xc7,0xe2,0x38,0x6a,0x9d,0x0d,0x1e,0x53,0xdf,0xca,0x50,0x6c, + 0x7d,0xfb,0x2c,0xf1,0x24,0x02,0x9d,0xe5,0x75,0x80,0x6a,0x1a,0x42,0xc6,0xb7,0x0b,0x12,0xa3,0x3e,0xbe, + 0x58,0xc9,0xf1,0x38,0x71,0xbb,0x03,0xbd,0x31,0xf8,0x81,0x1e,0x6d,0x09,0x8f,0x91,0xde,0xd3,0x82,0x52, + 0xf5,0xa2,0xda,0x34,0x6f,0x6a,0x42,0xb4,0x56,0x48,0xe7,0x79,0x92,0x55,0x3f,0xd5,0x4e,0xc7,0x1e,0x9f, + 0x72,0x4f,0x1a,0x90,0xe9,0x89,0xfb,0xb6,0x14,0x30,0x86,0xe4,0xd7,0x6d,0x9a,0x57,0xcf,0x4c,0xb8,0x59, + 0x97,0x16,0x16,0xb5,0x94,0x25,0xbb,0x06,0x28,0x9a,0xec,0x6d,0x74,0xd3,0x82,0x0d,0xe3,0x81,0x13,0x89, + 0xee,0x0f,0xdc,0xcd,0x8e,0xfe,0xe8,0x06,0xbb,0x35,0x04,0xd2,0x1d,0xca,0x97,0xe6,0xca,0x18,0x39,0x01, + 0x2b,0x65,0x1c,0x7b,0xdf,0x90,0x5b,0xdc,0x32,0x5c,0x77,0x12,0x0d,0x9c,0x21,0x5d,0xa3,0x88,0x15,0x03, + 0x4b,0xab,0xbb,0xb1,0x59,0xb0,0xab,0xf6,0x6a,0x70,0x64,0x83,0xb6,0xe6,0x34,0xad,0x79,0x49,0xc6,0xf6, + 0xf1,0xe0,0xc0,0x4e,0x85,0x3f,0x0b,0xa2,0x0b,0xb6,0xf5,0xd6,0xd1,0xee,0x45,0x66,0x66,0x9d,0x2f,0x93, + 0x05,0x61,0xc2,0xac,0x5f,0x07,0x40,0x1f,0x44,0x9b,0xf0,0xd4,0x10,0xd6,0x2b,0x6b,0xfb,0x8d,0xf8,0x42, + 0x1c,0xea,0xe7,0x16,0x76,0x88,0xc4,0xe7,0x06,0x60,0xe4,0xc4,0xeb,0xbf,0xcf,0x26,0x4d,0xcb,0x47,0x8d, + 0x5d,0x9e,0x69,0x3d,0x23,0x41,0x53,0xe3,0x23,0x2d,0x0c,0xd8,0x32,0x73,0x10,0x1e,0xda,0xb4,0x02,0x87, + 0x32,0x31,0xa2,0x2e,0xe1,0x05,0x4c,0x56,0x32,0x3e,0x8e,0x02,0xe7,0x70,0x52,0xd4,0x34,0xd7,0xd3,0x02, + 0x08,0x63,0xb5,0x67,0xde,0x61,0xb5,0x87,0xe0,0xfc,0xc6,0x37,0x6d,0xbd,0x4e,0x4f,0x0e,0x11,0xfd,0x8d, + 0xfe,0x42,0x99,0xa3,0x08,0x54,0x5b,0x36,0x39,0xa6,0x83,0x80,0x45,0xc5,0xb2,0x29,0xb0,0xc8,0xcc,0x0d, + 0x6d,0x4d,0x0d,0x0a,0xf4,0x12,0x66,0x0f,0x67,0x6c,0x77,0x51,0x27,0xda,0xda,0x42,0x36,0xe4,0x67,0x28, + 0xd6,0x10,0x5f,0x6c,0xa1,0xf0,0x40,0x95,0xc6,0x02,0x27,0x26,0xc6,0xb5,0x3d,0x8a,0x68,0x88,0x4a,0x26, + 0x4d,0x04,0xf3,0x6f,0x39,0x08,0x97,0xa4,0x2e,0xc3,0xc8,0x45,0x0f,0x84,0x56,0x45,0xd1,0xaf,0x6f,0x4b, + 0xf1,0xa8,0x14,0x1f,0x4a,0xf1,0xb1,0x4c,0x4e,0xb4,0xa7,0xe4,0x5b,0x79,0xf6,0xe4,0x6a,0xa9,0xac,0x6d, + 0x47,0xe2,0x59,0x99,0xdc,0xfc,0x64,0x44,0xd8,0xb1,0x8e,0x6c,0xe2,0x47,0x8a,0x36,0x7b,0x8c,0xf5,0x75, + 0x2a,0xb8,0x45,0x96,0x4f,0xe6,0xab,0xa9,0x8c,0x3f,0x96,0x42,0x5e,0xd9,0xc7,0x45,0x7a,0x15,0x9b,0x36, + 0xd4,0xdd,0x36,0xa3,0x8d,0xd0,0x84,0x7b,0xdc,0xc6,0x42,0x93,0x94,0xf6,0xd1,0xad,0x44,0x06,0x73,0x96, + 0xf0,0xdd,0x10,0x16,0xd6,0x1b,0x8e,0x2d,0x46,0xcf,0xca,0xdc,0x92,0xad,0x2e,0x7a,0x6a,0x24,0x99,0x78, + 0x13,0xb5,0xab,0x8a,0xc0,0x90,0x77,0xae,0xeb,0xba,0x0f,0xb3,0xcf,0xf5,0xc6,0x72,0x32,0x24,0x0b,0xc7, + 0x2f,0xb4,0x04,0x8d,0x2a,0x30,0x23,0xfd,0x6b,0x5f,0xee,0xba,0x2f,0x37,0x62,0x3b,0xce,0x80,0x8f,0xf2, + 0x18,0xdc,0xfa,0x3a,0xc0,0x17,0x6d,0x84,0xdf,0x94,0xa1,0xb0,0xa2,0xa7,0xdb,0x12,0x67,0x3f,0xcc,0xe6, + 0x13,0x84,0x57,0x17,0x9a,0x72,0xd2,0x03,0x23,0x92,0x41,0xab,0xef,0xf9,0x95,0xef,0xa1,0x24,0xa8,0xde, + 0x25,0xb6,0x13,0x5d,0xca,0x20,0x5f,0x22,0x92,0x67,0x7f,0x9f,0x10,0x22,0xbd,0x17,0x5e,0xd4,0x7c,0xa9, + 0xa5,0x2a,0xde,0x14,0x6a,0x33,0x10,0x4c,0xa1,0x98,0x18,0x71,0x06,0xdf,0x55,0x9c,0xab,0xc8,0xe9,0x93, + 0x6c,0xda,0x0b,0x55,0xe4,0x8a,0x20,0x8e,0x11,0xa0,0x8d,0x63,0xb1,0x04,0x50,0x33,0x20,0xb2,0x52,0x7a, + 0x32,0x19,0x0d,0x3b,0xb5,0x4d,0xc8,0xe9,0x50,0x38,0xcd,0xd5,0xcd,0x54,0xda,0x36,0x67,0x82,0x18,0xc9, + 0x28,0x49,0x74,0xae,0x4d,0x52,0xcb,0x4a,0xd0,0x46,0x84,0x88,0x21,0xa7,0x5c,0x18,0x40,0x9d,0x47,0x5b, + 0x99,0xa0,0x21,0x15,0xb8,0xb3,0x54,0x34,0xe8,0x8d,0xc8,0x88,0x5c,0x9c,0xe6,0x06,0x52,0x1f,0x33,0x09, + 0x74,0xc4,0x10,0xf2,0xa6,0xaf,0x88,0x41,0x19,0xbc,0x05,0x0a,0x14,0xe1,0x07,0x98,0x08,0x46,0xb7,0x70, + 0x81,0xef,0xf3,0xdb,0x98,0x3f,0xda,0x7c,0x81,0x52,0xd7,0x07,0xb4,0x05,0x23,0xf1,0x96,0x0e,0xd9,0x3a, + 0x9b,0x27,0x37,0x70,0xf0,0x8c,0x7f,0xa2,0x7d,0x7e,0x55,0x13,0x64,0xc4,0x17,0x62,0x01,0x93,0x6c,0xbd, + 0xc4,0xf1,0x53,0xa1,0xea,0x79,0xab,0xd4,0x37,0x32,0x7e,0xb8,0xc1,0xa7,0x8a,0xf1,0x7b,0x0b,0xb3,0x41, + 0xcd,0xee,0xd1,0xb3,0xc5,0xc1,0xcf,0xf0,0xd6,0xad,0x36,0x51,0xdb,0xea,0x16,0xc3,0x6b,0xf7,0x95,0x31, + 0xc0,0xee,0x72,0xbf,0x8a,0xbc,0xda,0xfb,0xe3,0xd3,0xb4,0x92,0x09,0x0d,0xee,0x22,0xf4,0x52,0xed,0x52, + 0x56,0x84,0x52,0xd4,0x58,0x2b,0x79,0x0b,0x75,0x0c,0xf1,0x3a,0xad,0x37,0xae,0xf3,0x78,0x33,0x5f,0x9d, + 0x65,0x2a,0xae,0x6a,0x67,0x06,0xdf,0x68,0xc7,0xc8,0xde,0x78,0x44,0xd6,0xb8,0x1b,0xa2,0xc1,0x17,0x28, + 0xb2,0xb3,0x49,0x3e,0x3b,0x26,0x49,0x7b,0x4f,0x68,0xf9,0x44,0x87,0xcc,0x01,0xb1,0x47,0xb8,0xd1,0xa1, + 0x7d,0x32,0x8e,0x1a,0x30,0x7a,0xef,0xfa,0x02,0x7a,0x2c,0xef,0x42,0x30,0xe6,0xd9,0x7c,0x63,0x32,0x5e, + 0xb0,0x45,0x76,0x95,0x75,0x7b,0x4b,0x63,0xa4,0x4e,0xff,0xe2,0xbf,0x0a,0x5b,0x41,0x53,0x4e,0x4b,0xfb, + 0x2c,0x39,0xd4,0x02,0xda,0xa3,0x41,0xdd,0x57,0x90,0xd3,0x74,0xbe,0x48,0x58,0x67,0xe3,0x11,0xe1,0x7c, + 0x80,0xd2,0x97,0xea,0x5e,0x5b,0xec,0x57,0x75,0x6d,0x20,0x9e,0x58,0xa4,0x07,0xe4,0x00,0x7d,0xa1,0xb1, + 0x40,0x37,0xce,0x2a,0x88,0xff,0xa1,0x6e,0x3b,0xb4,0x31,0x54,0x54,0xb8,0xec,0x66,0x04,0x6c,0xb3,0x62, + 0x59,0xcd,0x2e,0x11,0x3a,0x62,0x40,0xea,0x8e,0xfb,0x36,0x2c,0x79,0xb4,0x44,0xe4,0xab,0x9b,0x92,0x14, + 0x81,0xa7,0x69,0x88,0xb8,0x71,0x3d,0xf5,0xa6,0x26,0xf7,0xe7,0x85,0x4e,0xdb,0xd5,0x12,0x2a,0x1a,0x57, + 0x64,0x5b,0x3e,0xed,0x84,0xa7,0x5f,0x15,0xcf,0x42,0x76,0xe8,0x4b,0x5b,0xc6,0x56,0xda,0xb2,0xc1,0x55, + 0x22,0x69,0x03,0xac,0xdb,0x52,0xc3,0xed,0x36,0x4c,0xa9,0x76,0x33,0xf3,0x66,0x33,0x39,0x3b,0x7a,0x98, + 0x26,0xf4,0x1a,0xe6,0xfa,0x81,0x52,0x14,0xc4,0xe4,0xea,0x97,0xde,0xb1,0x83,0x72,0xfc,0xbd,0xd5,0x6d, + 0x82,0x39,0x5f,0x0e,0x26,0x2b,0xd4,0x05,0x29,0xdb,0xdb,0x91,0xfd,0x10,0xec,0xec,0x19,0x77,0x38,0x37, + 0xb3,0xa6,0x23,0x26,0xa7,0xe6,0x7b,0x57,0x52,0xda,0x82,0xd6,0xff,0x0e,0x77,0xde,0xa6,0x4e,0xe1,0x9a, + 0xb1,0x87,0x93,0x48,0x37,0x1b,0x42,0x00,0x11,0x11,0x18,0x40,0x06,0xb7,0xf4,0xf0,0x11,0x7b,0x7e,0xf8, + 0xda,0x19,0xcf,0xb1,0x24,0xf4,0xc2,0x02,0x28,0x67,0xb1,0x22,0xcc,0x55,0xf0,0xf8,0x9c,0xa3,0xef,0x6b, + 0x28,0xb4,0xe6,0xac,0x0d,0x14,0xa4,0xfb,0x8d,0x8b,0x78,0xfc,0x98,0x02,0xaa,0xa2,0x2e,0xd9,0x22,0x87, + 0x5b,0xb9,0x41,0xe4,0xca,0x38,0x17,0x3a,0x90,0x79,0xbe,0x31,0xfe,0x3e,0x0d,0x2c,0x08,0x93,0xc2,0x9c, + 0x63,0xec,0x75,0xe6,0xc1,0x96,0xbc,0x1b,0xe7,0x7f,0x6e,0x0a,0xf1,0xb2,0xea,0x9d,0xf2,0x32,0x56,0x2e, + 0xd1,0xbf,0xe4,0x7f,0xf5,0xc3,0xaa,0x2a,0xb5,0x53,0xe4,0xb6,0x37,0xb5,0x8f,0x46,0x9a,0xdc,0xa4,0xa2, + 0xe5,0xdd,0xb7,0xe8,0x27,0x55,0x0c,0x8f,0xb7,0x0c,0x56,0xd7,0xf7,0xfa,0xdf,0xf6,0x8f,0xee,0xab,0x00, + 0x2d,0x7f,0x94,0xe2,0x97,0x52,0xfc,0x5e,0x8a,0x1f,0x4b,0xf1,0x53,0x29,0x7e,0x2d,0xc5,0x0f,0xa5,0xf8, + 0x77,0x29,0x7e,0x2b,0x39,0x90,0x06,0xdf,0xa7,0xac,0xef,0x52,0x15,0x3f,0x73,0x1a,0xdf,0x19,0x23,0x50, + 0x2f,0x51,0x99,0xa9,0x50,0xb3,0x22,0xd4,0xbd,0x39,0x20,0x0d,0xcf,0x60,0x30,0x08,0x92,0x35,0xbb,0xc5, + 0x97,0xc8,0xdd,0x1b,0x4e,0x6b,0xf1,0x73,0xc9,0xb2,0xb4,0x40,0xc5,0x28,0x86,0xcb,0x05,0x6e,0x57,0x35, + 0xb7,0xf0,0xe8,0x42,0x81,0x6a,0x84,0x17,0x95,0x72,0x89,0x26,0x99,0x7c,0x71,0x99,0xea,0x12,0x1b,0x9d, + 0x67,0x23,0xa1,0x23,0x07,0x02,0xe6,0x82,0x73,0x88,0x70,0xcb,0xd0,0xf9,0x89,0xba,0x44,0x5d,0x4e,0xb3, + 0x1a,0xa6,0x73,0x62,0x5a,0xa6,0x67,0x67,0xfc,0x54,0x2d,0xe5,0x7c,0xce,0x35,0x53,0xdf,0x73,0x2e,0x4c, + 0x47,0x40,0x71,0x39,0x23,0xd4,0x5e,0x11,0xea,0x22,0x7e,0x92,0x9d,0x31,0x45,0xba,0xaa,0x8b,0x59,0x31, + 0x59,0x55,0xfc,0xb4,0x9c,0xa7,0xd7,0x42,0x77,0x88,0x43,0x8e,0xd0,0x69,0x0d,0xeb,0x3c,0x22,0x57,0xe7, + 0x15,0x1d,0xe1,0x34,0x77,0xa5,0x14,0x86,0xac,0xd3,0xbf,0xa6,0xbc,0x7e,0xe5,0x3e,0x9b,0x17,0x33,0x74, + 0xbc,0x13,0xcb,0x33,0xcd,0x2a,0x74,0x6f,0x2a,0x64,0xae,0x7e,0x11,0xbb,0x20,0x2f,0x68,0x0a,0x33,0x40, + 0xae,0x38,0xcf,0xa6,0x53,0xea,0x1a,0x8e,0xc5,0x5a,0x96,0x8b,0x2c,0x47,0x22,0x41,0x54,0x59,0x8b,0xac, + 0x5a,0xa4,0x4b,0x91,0xd5,0x72,0xa1,0x62,0x9c,0xcc,0x8b,0x62,0x29,0xcc,0xf5,0x4d,0x42,0x35,0x9a,0x17, + 0x08,0xd2,0x22,0x10,0x58,0xa2,0xca,0xfe,0xa0,0x45,0x2a,0xaa,0xf3,0x14,0xbc,0xa6,0x6b,0x21,0x2f,0x10, + 0x37,0x8a,0xd6,0x99,0x9a,0x59,0xa6,0x84,0x86,0x68,0xa7,0x5e,0x65,0x35,0x91,0xb3,0xe9,0xb4,0xc8,0xe7, + 0x88,0xa7,0xf2,0xfb,0x8a,0xf6,0xdd,0x54,0x68,0xa7,0xca,0xa9,0x50,0xfc,0x10,0xc1,0x44,0xba,0x98,0x13, + 0x30,0x08,0x3b,0x26,0x78,0x5f,0xf2,0x6c,0xdb,0x0b,0x53,0x38,0x1c,0x28,0xcd,0x3d,0x65,0x02,0xe6,0x11, + 0x52,0x82,0xa3,0xbf,0x8b,0x8b,0xac,0xca,0xa8,0x24,0x02,0xbc,0x67,0x49,0x70,0x5e,0xd7,0xcb,0xf8,0xee, + 0xdd,0xcb,0xcb,0xcb,0xfe,0xe5,0xfd,0x7e,0x51,0x9e,0xdd,0x3d,0xfa,0xee,0xbb,0xef,0xee,0x5e,0xcd,0xb3, + 0xfc,0x4b,0x20,0xb2,0xac,0xe3,0x80,0x0d,0xe2,0x86,0xf3,0xc9,0xb7,0x80,0x32,0x55,0x9e,0x93,0x4d,0x70, + 0x9e,0x6f,0xe1,0x69,0xd7,0xf5,0xfd,0x4e,0x06,0x4b,0x5c,0xeb,0x57,0xf2,0x4f,0x61,0xe4,0x99,0x1c,0xad, + 0x45,0xa4,0x9d,0xdf,0x28,0xe2,0x98,0x00,0x71,0xf7,0x48,0x81,0x5d,0x95,0x25,0x37,0xd5,0x05,0x11,0xc3, + 0xdb,0x23,0xb8,0x77,0x78,0x78,0x78,0x97,0xf2,0x02,0xe2,0x99,0xea,0xf3,0xae,0x12,0x34,0xc6,0x7f,0xdd, + 0xc5,0xdd,0xa3,0xfc,0xe7,0xe5,0x0b,0x6a,0x76,0xc2,0x90,0x79,0x5e,0x2f,0xe6,0xe2,0xb4,0x98,0x5e,0x0b, + 0xa0,0x40,0x71,0x4e,0x4b,0x21,0x30,0x34,0x81,0x98,0xe3,0x42,0xed,0xda,0x3a,0xab,0xe9,0x6f,0x3a,0x9d, + 0x62,0x3f,0x8a,0xb4,0xac,0xb3,0x09,0xde,0x2b,0xda,0x13,0x04,0x44,0x05,0x6e,0xc7,0xc4,0x77,0xf8,0x39, + 0x12,0xe7,0xf7,0xc4,0xf9,0x7d,0x71,0xfe,0x8d,0x38,0xff,0x56,0x9c,0xff,0x53,0x9c,0x9f,0x95,0xc5,0x6a, + 0x29,0xf2,0xf4,0x82,0xd6,0x8e,0xc7,0x48,0x80,0x78,0x21,0xa6,0x04,0x95,0x73,0x31,0xad,0x05,0x11,0xb3, + 0xf0,0xad,0x41,0x3a,0x9b,0xa1,0x4a,0xb1,0xcc,0x26,0x70,0xb5,0x11,0xe7,0xc4,0xa5,0x2f,0xce,0xa8,0x33, + 0x34,0x28,0x3a,0xbd,0x8a,0xb9,0x58,0xc2,0xa8,0x51,0xac,0xe6,0x22,0x15,0xa7,0xc4,0x46,0x9e,0x96,0xe2, + 0x74,0x9a,0xd1,0xff,0x42,0xd0,0xe3,0x84,0xc0,0x93,0xe3,0x0f,0x09,0xbe,0x24,0x7e,0x3a,0xa3,0xc3,0x71, + 0x21,0x32,0xf1,0xe5,0x74,0x4a,0x15,0x94,0x5f,0xc4,0xef,0xa2,0x5c,0x0a,0x02,0xe6,0xb2,0x9e,0x88,0x72, + 0x75,0x7a,0x4d,0x54,0x7c,0x95,0x2e,0x96,0x82,0x60,0x9b,0x48,0xae,0x6a,0x99,0x12,0xea,0xa1,0xbd,0x46, + 0xcc,0x66,0xb5,0x3a,0xa5,0xff,0x4b,0xbe,0x2f,0x56,0xac,0x04,0x21,0x37,0x71,0x79,0x0a,0xe1,0x39,0x21, + 0xa9,0x74,0x35,0xcd,0x0a,0x81,0xed,0x00,0x26,0xf6,0x8b,0x60,0xc4,0x40,0x2d,0x9d,0x12,0xd8,0x29,0x3f, + 0x30,0x18,0xa1,0xa6,0x0b,0x02,0xd0,0x55,0x49,0xfc,0xc7,0x24,0xcd,0x2f,0x52,0x6a,0x69,0x52,0x66,0xcb, + 0x1a,0x9b,0x42,0x3d,0x10,0xcd,0x0d,0x23,0x37,0x61,0xc6,0x3e,0xa1,0xe1,0xd1,0x7f,0x35,0x59,0x1a,0xb0, + 0x79,0x2d,0x6a,0x5e,0x9b,0x9a,0x1e,0xce,0xa9,0x45,0xa1,0x90,0x1b,0x0f,0x11,0xe6,0x03,0x34,0x67,0x72, + 0x3e,0x25,0x4a,0x9e,0x37,0xb3,0x50,0x08,0x75,0x9e,0x9e,0x52,0xed,0x73,0x79,0x06,0x22,0x60,0x81,0xcd, + 0x0c,0xd4,0xaa,0xaa,0xd6,0x38,0xb6,0x58,0xd5,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15,0x13,0x0a,0x48, + 0x33,0x60,0x9d,0x2c,0x9d,0x17,0x67,0x54,0x49,0xbe,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b,0x9a,0xd0,0x6b, + 0xa1,0x31,0xa0,0x90,0x4a,0xe6,0x20,0xb0,0xdf,0x8b,0x4b,0x61,0x82,0x66,0x09,0x0e,0x4b,0xf6,0xfb,0xaa, + 0x00,0x1a,0x99,0x95,0x20,0xf7,0x6a,0x40,0x0b,0x6e,0x0c,0x66,0xd0,0x23,0x80,0x15,0x69,0x9e,0x2d,0x50, + 0x76,0x92,0x95,0x13,0x3e,0x1f,0xb2,0xe5,0x92,0x00,0x54,0x4c,0x56,0x25,0xed,0x70,0x60,0x2e,0xa0,0xbe, + 0x6a,0x42,0x8d,0x50,0x16,0x01,0xa8,0x8a,0xef,0x43,0xc3,0xcd,0xeb,0x83,0x59,0x3a,0x01,0x00,0x96,0x32, + 0x3b,0xcb,0xd5,0x21,0x28,0xce,0xc4,0xd9,0xfc,0x7a,0x79,0x4e,0x90,0x93,0x9e,0x49,0x00,0xb2,0xe4,0xc5, + 0x97,0x90,0x26,0x54,0x04,0xd4,0x59,0x85,0xdb,0xcb,0x0e,0x54,0x21,0x6e,0x89,0xfe,0x50,0x85,0x84,0x90, + 0x8a,0xf9,0xf5,0x59,0xa1,0x7e,0xff,0xbf,0xf6,0xde,0x7d,0xbf,0x6d,0x23,0xc9,0x1f,0x7d,0x15,0x0a,0xa3, + 0x23,0x03,0x61,0x8b,0x92,0x6c,0x67,0x66,0x02,0x1a,0xe6,0xfa,0x9a,0x38,0xb1,0xe3,0x6c,0xec,0x5c,0x26, + 0x14,0xa3,0x85,0x48,0x90,0x82,0x4d,0x01,0x1c,0x10,0xa4,0xac,0x88,0x7c,0xa0,0xdf,0x6b,0x9c,0x27,0x3b, + 0xf5,0xad,0xea,0x6e,0x34,0x40,0xc8,0x76,0xb2,0x7b,0xf6,0xfc,0x73,0x3e,0xfe,0x58,0x04,0x1a,0x7d,0xef, + 0xea,0xea,0xaa,0xea,0xba,0x70,0x39,0x9c,0xff,0x4a,0x8c,0xa8,0xd5,0x92,0x9d,0x6c,0xf0,0xfc,0xf0,0x1f, + 0x2e,0x59,0x32,0xcc,0x80,0x9a,0x5a,0xa7,0xc9,0x95,0xf8,0x86,0x9a,0xb7,0xee,0xe5,0xb1,0x68,0xe2,0xaf, + 0x38,0x2e,0x37,0x0d,0xa1,0x95,0xa1,0x5a,0xf0,0xa4,0x70,0x13,0x12,0x3b,0x90,0x4d,0xcd,0xae,0xf2,0x82, + 0xd1,0x5f,0x41,0xbd,0x48,0x68,0x23,0xa0,0x13,0x73,0xb5,0x2a,0xe0,0x14,0x7b,0x92,0x36,0x9d,0x5a,0xd5, + 0x84,0x40,0xad,0x9a,0xbf,0xb7,0x38,0xde,0xb2,0x01,0x8a,0xf5,0x81,0xc9,0x8e,0xc6,0x07,0x59,0xe8,0x27, + 0x5a,0x89,0x36,0x71,0x94,0x68,0x0f,0x0e,0x9c,0xf8,0x48,0x55,0xb2,0x0d,0xe8,0x07,0x4d,0x98,0x7a,0x80, + 0x75,0xf3,0x05,0xbe,0x96,0xcc,0x63,0xc0,0xc1,0x02,0x6b,0xdd,0xf8,0xfe,0x4d,0xa3,0xcf,0x7a,0xfe,0xda, + 0x3b,0xfd,0xfd,0x1b,0x7f,0x09,0xd5,0x14,0x36,0x14,0x96,0x2f,0x6f,0x69,0xf6,0x10,0x0b,0x32,0x6c,0x59, + 0x84,0x46,0x25,0x26,0x2b,0x2f,0x89,0x24,0x69,0x8f,0x01,0x9f,0x51,0x58,0xe7,0xe4,0xb2,0xa2,0xab,0xfa, + 0x98,0xa5,0xd3,0x3b,0xd6,0xe3,0xcc,0x01,0xda,0xcf,0xbe,0x04,0x48,0x14,0x4d,0x7d,0x56,0x60,0x6a,0x8c, + 0xd7,0x04,0x21,0xe7,0x6f,0x08,0xf9,0xa1,0x10,0x33,0x38,0x9b,0xb4,0xe7,0x75,0xbe,0x71,0xde,0x2a,0x16, + 0x66,0xdb,0x10,0x4a,0x27,0x56,0xe6,0x56,0x81,0xd1,0x7f,0x43,0xc7,0x22,0xed,0x86,0xf6,0xcc,0x4e,0x86, + 0x2d,0xa2,0x87,0xb1,0xab,0xa6,0xd6,0x9c,0xfa,0xe3,0x16,0x46,0x03,0x98,0xd5,0x27,0x82,0x17,0x76,0xba, + 0x5b,0x56,0xdf,0x22,0xc9,0x6d,0x21,0xa4,0x65,0xde,0x6a,0x00,0xc4,0xf3,0x06,0x8f,0x6d,0x74,0x06,0xca, + 0x0a,0x34,0x6a,0x7f,0x5c,0xf2,0x0c,0x68,0x22,0xbc,0xd9,0x32,0xc3,0x28,0x51,0x27,0x15,0xc0,0x8a,0x23, + 0xe1,0xc7,0x90,0xa9,0x61,0xdb,0x72,0xf1,0x5b,0x34,0x78,0x4d,0xa6,0xed,0x96,0xf6,0xb9,0x76,0x38,0xe1, + 0x7b,0x44,0x45,0x6f,0x15,0x62,0xb5,0x5c,0xa6,0xf0,0x46,0x66,0x3c,0x8c,0x19,0x05,0x59,0xeb,0x3b,0x8c, + 0x3d,0x44,0x60,0x49,0x2b,0x9f,0x61,0xde,0x48,0xcd,0xaa,0x71,0x7c,0x53,0x9a,0x5e,0x7f,0x53,0xb6,0xb6, + 0xff,0x0d,0xda,0x5f,0xa7,0x68,0xff,0xba,0x1d,0x73,0x9c,0x51,0x17,0x2e,0x52,0xaa,0x74,0xa4,0xce,0xab, + 0x8a,0xff,0x6d,0x2b,0xfe,0x37,0x51,0x0f,0x57,0xd5,0x87,0xef,0xec,0x87,0xef,0xe8,0xc3,0x7e,0x1a,0x1d, + 0x0d,0x4f,0xaf,0x82,0x5e,0xf7,0xf4,0xf0,0x6c,0xff,0x74,0x34,0x3a,0x52,0x1f,0x52,0x78,0xd7,0x22,0x1e, + 0xe3,0x3d,0x3f,0x8c,0x3d,0xf5,0xa4,0x2a,0x4d,0xe4,0x9f,0x2e,0xbd,0xa0,0x45,0x7c,0x53,0x7d,0x98,0xd8, + 0x0f,0x80,0xaf,0x47,0x69,0xab,0x1d,0x2f,0x47,0x95,0x3b,0x0a,0xfd,0x5e,0x37,0x38,0xb2,0x77,0xb6,0xda, + 0xcc,0xf2,0xa8,0xef,0x0f,0xf6,0x86,0xbf,0xfb,0xa3,0x2f,0x4e,0x83,0xe0,0x68,0xd6,0xae,0x91,0x06,0x03, + 0x82,0xca,0x71,0xab,0x14,0x84,0xf6,0x80,0xbd,0x07,0x85,0xc8,0x7d,0x88,0x98,0xa8,0x3a,0x3c,0xcf,0x28, + 0x2a,0xaa,0x50,0x3e,0x0c,0x44,0x09,0xfd,0x7f,0x4b,0xa3,0xfe,0xfd,0xf0,0xf0,0x48,0xbd,0xa6,0x87,0xd3, + 0xe5,0x17,0x7b,0xe9,0x25,0x2c,0xa7,0xe3,0xac,0xdc,0x3f,0x52,0xef,0x76,0xf9,0x0d,0x6a,0xf6,0xad,0x0e, + 0x09,0x4f,0x80,0x52,0x4a,0x2c,0x3f,0xc0,0xa8,0xe5,0xb7,0x12,0xd7,0x64,0xe3,0xb5,0xce,0x9b,0xdd,0x9a, + 0xd7,0xfa,0xcd,0x7b,0x9d,0x72,0xec,0x21,0xcf,0x76,0xc0,0x0d,0x0c,0x57,0x44,0x2f,0x53,0x5f,0x1c,0xd2, + 0xd7,0xef,0xc8,0xb3,0x9a,0x92,0x4d,0xeb,0xbd,0xae,0xb4,0x0b,0xd6,0x1a,0xd7,0xbb,0xd2,0x35,0x37,0x91, + 0xe0,0xe9,0x19,0x60,0x57,0x42,0x10,0x12,0x78,0xbe,0xca,0xff,0x00,0x7e,0x26,0x8e,0x54,0xbd,0x6c,0xae, + 0x1e,0x75,0xe0,0xb7,0x22,0xfa,0xad,0xf8,0x84,0xe7,0x46,0xa9,0xde,0x7a,0xe1,0xdb,0x63,0xcb,0x6b,0x44, + 0x84,0x80,0x12,0x22,0x4b,0xd7,0x7f,0x2b,0xac,0xa8,0xcd,0xbd,0x27,0xfb,0x0c,0xaf,0x84,0xda,0xd7,0xc5, + 0xb3,0xb4,0xc5,0xa1,0xe6,0xb3,0x74,0x98,0x8d,0xba,0x2c,0x9d,0x2e,0xea,0xad,0x14,0x58,0xf1,0x17,0x15, + 0x94,0x5e,0x5a,0x28,0x05,0xc6,0x7a,0xde,0x1c,0xa7,0xb6,0x05,0x4f,0x6c,0xf8,0xf9,0x90,0x78,0xf4,0x43, + 0x7e,0xf5,0x54,0xe2,0x44,0xa1,0xaf,0xd2,0x0f,0xcb,0x5c,0x7f,0x72,0x62,0x2b,0x3b,0x9f,0x45,0xe8,0xea, + 0xa9,0x2a,0x3c,0x33,0x7f,0xe4,0x57,0x9d,0xea,0xd6,0xc9,0x09,0x5c,0x67,0x33,0x5e,0xb3,0xf3,0x59,0xd7, + 0x89,0xb1,0x3d,0x4d,0xd9,0x97,0x18,0x22,0x2d,0x7f,0x9f,0xea,0xf8,0x91,0xec,0x33,0xd6,0x53,0x3f,0xd0, + 0xbb,0x10,0x58,0xfc,0xfa,0xaa,0xf1,0xf9,0xc7,0xda,0x3b,0x9d,0x24,0x9e,0x7a,0x5c,0x2f,0xf1,0x93,0xfb, + 0x8a,0x0c,0xfd,0xa7,0x10,0xfe,0x5b,0x3f,0x0d,0xda,0x81,0x19,0x78,0x54,0xa7,0x1a,0x87,0x3c,0xb0,0x19, + 0xae,0x18,0xc8,0x1a,0xd9,0x7c,0xf4,0xc8,0x89,0x80,0xe9,0xf4,0xeb,0xaa,0x91,0xfa,0x2c,0xc3,0xe5,0xe4, + 0x6e,0xc3,0x6e,0xef,0x6e,0x6f,0xb7,0x9e,0xcb,0x7f,0x6c,0x9b,0x7d,0x54,0x1f,0xeb,0x55,0x3d,0x91,0x1b, + 0x15,0x2d,0x84,0x9f,0x31,0xcb,0x03,0x5d,0x2d,0xd8,0x54,0xda,0xdd,0x36,0xdf,0x73,0x10,0xb7,0x1f,0xfd, + 0xd8,0x83,0x90,0xc8,0x97,0x1c,0x41,0x58,0xb9,0x43,0x68,0x3d,0x50,0x71,0x65,0xfe,0x0d,0xd0,0xd2,0xb9, + 0x6f,0x03,0x76,0x6c,0x88,0x47,0x09,0x7c,0xb5,0xd9,0x0f,0x8e,0xd4,0x1f,0x0e,0x7a,0xda,0x89,0xe9,0x20, + 0x54,0xde,0x13,0xe7,0xac,0x07,0x6d,0x97,0xb0,0x18,0xec,0x49,0x8d,0xba,0x80,0x9a,0xab,0x13,0x4a,0x81, + 0xa3,0xb9,0x89,0x23,0x72,0x89,0x9c,0x51,0xf7,0x45,0x15,0x2b,0xd7,0x40,0x8c,0x73,0x9a,0xdb,0x50,0x39, + 0x5f,0x59,0xa8,0x8e,0x48,0xcb,0xda,0xc0,0xa9,0x35,0xba,0x6e,0x00,0x2f,0x42,0xf6,0x9a,0x44,0x17,0x89, + 0xe2,0x1e,0xf4,0xb5,0xe8,0x9b,0xbc,0x40,0x00,0x8c,0x8c,0x38,0x76,0x4f,0xb8,0x21,0xd5,0x5e,0x99,0xd9, + 0xe3,0x4b,0xf4,0x88,0xf0,0x83,0xbf,0x0a,0x6a,0x8a,0x8b,0x26,0xe8,0x85,0xa3,0xba,0x53,0xf6,0xe3,0x16, + 0x53,0x1c,0x89,0x1e,0xdd,0xf2,0xc5,0x5c,0x98,0x27,0x7e,0xae,0x8d,0x03,0xb9,0x97,0x79,0xe4,0x86,0x62, + 0xd5,0xea,0x4a,0x39,0xa1,0xa7,0xfc,0xc1,0x87,0x9e,0x21,0x01,0x0c,0x9a,0xea,0x76,0xf3,0xa0,0x4a,0x1d, + 0xe6,0x23,0x7f,0x9d,0xd2,0x24,0xf7,0xb5,0xa1,0x41,0x6c,0x14,0x83,0xc6,0x50,0x4e,0xc1,0xad,0x31,0xf5, + 0x79,0x6b,0xe7,0x58,0xed,0x49,0xa4,0x04,0x79,0x33,0x93,0x2b,0x53,0xae,0xa6,0x8e,0x5f,0x6d,0x0e,0x5a, + 0x49,0xa4,0x18,0xad,0xf5,0x45,0x30,0xf0,0xb9,0x26,0x88,0xdd,0x97,0x83,0x27,0x3b,0x64,0x33,0x92,0xd5, + 0x45,0x10,0x36,0xbe,0xf8,0x17,0x10,0x8b,0x4f,0x70,0xe9,0x30,0xa7,0x26,0xa7,0x98,0xd4,0x84,0x27,0x75, + 0x21,0x33,0x3c,0x86,0x8f,0x17,0xee,0x22,0x75,0x25,0xcc,0x7c,0xc7,0x1b,0xb4,0x6d,0xf2,0x49,0x93,0x44, + 0x16,0x4f,0xce,0x8d,0xb2,0x8d,0xcc,0x15,0x31,0xde,0x96,0xdb,0xf1,0x25,0xbc,0xe4,0x3b,0x94,0x9b,0xc4, + 0x18,0x4b,0xe9,0x90,0xef,0x02,0xa5,0x22,0xe9,0xc5,0xac,0x9a,0xcb,0x14,0xd5,0x9a,0xad,0x35,0xd5,0x68, + 0x34,0xe8,0x79,0xdb,0x05,0x05,0xe8,0x05,0x4d,0xd9,0x8b,0xd4,0x42,0xb4,0xe3,0x26,0xec,0xc6,0x89,0x89, + 0xc8,0x40,0x59,0xb3,0x11,0x67,0x4f,0x8d,0xb5,0x62,0x2b,0xba,0xcb,0xaa,0x00,0x1c,0xae,0xdd,0xd9,0x9a, + 0x22,0x5a,0x7e,0x52,0xe7,0x11,0xa4,0x0c,0xad,0x8d,0x4b,0xde,0x97,0x1c,0x4a,0xd5,0xd6,0x3c,0x77,0xe8, + 0x92,0x9d,0xa8,0x79,0x75,0xed,0x5b,0x07,0x0e,0xd3,0x20,0xf6,0x59,0xa5,0x38,0xd3,0x73,0xcb,0x97,0x4d, + 0x50,0x34,0x64,0xe2,0xa0,0x30,0xb3,0x8f,0x2e,0xd5,0x1a,0xe7,0xcc,0x3b,0x6b,0xa5,0x1d,0xd8,0x94,0xc6, + 0x55,0xb7,0xe3,0x47,0xda,0x78,0xc7,0xe8,0xb7,0x19,0xbe,0x05,0x65,0xeb,0xfc,0xca,0x56,0xab,0xc2,0xdd, + 0x4b,0x18,0x2b,0xc7,0x8d,0xb4,0x2c,0x7d,0xdd,0x82,0xed,0x83,0xee,0x54,0x35,0xc8,0x22,0x30,0x69,0x44, + 0xe5,0x60,0xab,0x31,0xfa,0xbb,0x32,0xe1,0x9c,0x35,0xa6,0xa1,0xb5,0xb8,0xd2,0xd9,0xe8,0xcd,0x3c,0x4a, + 0x76,0x85,0x6f,0xa9,0x81,0xa8,0xb6,0x85,0x9d,0x58,0x4c,0x2b,0x28,0x0c,0xea,0xde,0xd6,0x91,0x60,0x10, + 0x3c,0xa9,0x33,0x2f,0x7a,0xae,0x41,0xe6,0xc9,0x44,0x57,0x43,0xe0,0x00,0x42,0x28,0x5f,0x59,0x57,0x02, + 0xbf,0xb0,0x65,0x92,0xbd,0x9b,0x58,0xea,0x7a,0xb1,0x2c,0xb7,0x55,0xac,0xaa,0x60,0x43,0x40,0xf6,0xd1, + 0x19,0x42,0x74,0x66,0xec,0xca,0x5c,0x57,0x6c,0x5e,0xad,0x73,0xc4,0xbf,0xd6,0x50,0x35,0x09,0x17,0xae, + 0x67,0x47,0xbd,0xdc,0xc5,0x83,0x28,0xe5,0x35,0x88,0x7d,0x0e,0x8e,0x93,0xab,0x7a,0xdc,0xa2,0xb5,0x9d, + 0x38,0x8e,0xd6,0xe3,0x9e,0x1c,0xa9,0x00,0x2e,0xfa,0x94,0x56,0xe7,0x01,0x3a,0xa8,0x99,0x22,0x0c,0xa8, + 0x72,0x79,0xf6,0xc1,0x24,0x57,0x2b,0x9f,0x05,0x36,0x91,0xa8,0x41,0x1d,0x78,0x45,0x16,0xa7,0x0a,0xbc, + 0xae,0x23,0xfa,0xb0,0xe7,0xff,0xa6,0xed,0x23,0x3a,0xbe,0xf6,0x9d,0x70,0x10,0xc5,0xc8,0xe9,0xfb,0x65, + 0xfd,0x44,0xa9,0xc6,0xaa,0x8f,0x41,0x76,0x01,0x97,0x88,0xcf,0x2e,0xfa,0x61,0xe8,0x1d,0xf8,0x33,0xdc, + 0xcd,0xad,0x71,0x2e,0x86,0x08,0x70,0x04,0xa5,0x20,0x17,0x9f,0xcd,0x04,0xa8,0xa5,0xa3,0x30,0xde,0xd4, + 0x88,0x2d,0xb0,0xd1,0x89,0xa2,0x0f,0xfa,0xd4,0xb6,0xc1,0x64,0xfb,0x7a,0x9e,0x82,0x81,0x63,0x41,0xdb, + 0x8d,0xd2,0xb0,0xa9,0xda,0x5c,0x53,0x08,0x26,0xb2,0xe9,0xf0,0xd0,0x29,0x80,0xbb,0xb1,0xb2,0x8a,0x30, + 0x55,0x7d,0x88,0x68,0x51,0xb7,0xbe,0x39,0x89,0x68,0x33,0xb4,0xda,0xd9,0xf2,0xea,0x00,0xe8,0xb4,0x12, + 0x04,0xbf,0x9a,0x13,0x72,0x86,0x68,0x19,0x81,0x32,0x5b,0xb4,0xd6,0x7f,0xbd,0x45,0x25,0x0d,0x5b,0xb4, + 0x64,0xc6,0x89,0x5b,0x71,0x77,0x68,0xa2,0x03,0xef,0x22,0x5b,0x60,0x22,0x54,0x41,0xcf,0x9b,0xb7,0x50, + 0x2e,0x1d,0x74,0x96,0x07,0xea,0xcd,0x20,0x5f,0x96,0x12,0x90,0x8b,0x60,0x3d,0x35,0x71,0x36,0x53,0xc6, + 0xe9,0x05,0xfe,0xb2,0xbe,0x0b,0x22,0xb9,0xee,0xf8,0xbd,0x0c,0x68,0x1f,0xa6,0x35,0xcf,0x99,0xc6,0xbb, + 0xd5,0x24,0x18,0x9c,0xfb,0x85,0xcc,0x07,0x62,0x0b,0xa7,0xad,0x5e,0x33,0x8f,0x2d,0xf3,0x47,0x54,0x99, + 0xf5,0xec,0xc9,0x40,0x5b,0xb8,0xaf,0x29,0x3b,0x17,0x8d,0x24,0x52,0x18,0x0e,0x2c,0xce,0x2d,0xfe,0x3c, + 0x09,0x00,0xe4,0xf5,0x35,0x93,0x37,0x41,0xda,0xa2,0xe7,0x52,0xb4,0x99,0x12,0x1b,0x7e,0x71,0x85,0x08, + 0xc3,0xb2,0xa9,0x12,0x7f,0xce,0xb3,0xb8,0x8a,0xe6,0xd5,0x94,0xae,0xa2,0x95,0xf5,0x18,0x40,0x09,0x2b, + 0xcc,0x99,0x10,0xb8,0x0b,0x54,0x6c,0x48,0x89,0x89,0x63,0x3f,0x2a,0x9b,0x08,0x75,0x4d,0xb1,0x47,0x19, + 0xf6,0x57,0xb4,0xb0,0x2b,0x5a,0x58,0xe1,0xa4,0xaa,0x85,0x5d,0x05,0x26,0x6d,0xb8,0x1a,0x49,0xdd,0x2d, + 0x1d,0x90,0x1c,0xb6,0xf9,0x6d,0xe9,0xa7,0x72,0x84,0x0c,0x12,0x7f,0xc1,0xb9,0x68,0xc6,0x17,0x70,0x18, + 0xe0,0x50,0x73,0xc6,0x83,0xec,0xb2,0x3a,0x01,0x74,0x54,0x45,0x62,0x7f,0x17,0xf4,0x7f,0x12,0x55,0x0e, + 0x5a,0xd4,0x3a,0x82,0x04,0x40,0xcd,0xe8,0x67,0x32,0x52,0x67,0x56,0x63,0x9b,0x3e,0x9d,0x47,0x29,0x3e, + 0x5d,0xd1,0xcf,0xd9,0x48,0xed,0x47,0x7b,0xcb,0xfe,0xf4,0x01,0x9a,0x5a,0x3c,0x88,0xce,0xe8,0x6c,0xf2, + 0xd7,0xc1,0x00,0xc5,0xbb,0xdd,0xe9,0x28,0x84,0xbf,0xb2,0x01,0x6a,0x39,0x3c,0x9c,0x8c,0xc2,0x9f,0xe8, + 0xa3,0x3a,0xa7,0x4d,0x7d,0x8d,0x5f,0x10,0x67,0x26,0x23,0xd7,0xda,0xed,0x2e,0x46,0x01,0x32,0xcd,0xd4, + 0x15,0x67,0xa2,0x5f,0x64,0x32,0xe5,0xb9,0xcd,0xc3,0xc3,0x33,0xc9,0xb4,0xd6,0x99,0xd6,0x92,0x69,0x7f, + 0x87,0x0e,0xc8,0xd4,0x5a,0x9f,0xbb,0x8e,0x28,0xce,0x9f,0x09,0x0a,0xa9,0x5a,0xae,0x55,0x3a,0xd3,0xdd, + 0x9b,0x49,0xf7,0xda,0x2a,0xe5,0x0a,0xa4,0x6a,0xa7,0x6b,0x55,0xff,0xfd,0x52,0xdc,0x5d,0x8c,0xa3,0x9f, + 0x61,0xd9,0x3e,0x55,0x13,0x28,0x02,0xfa,0x20,0xe8,0xcf,0x39,0x2a,0xe9,0x60,0x3c,0xe4,0x87,0x51,0x8b, + 0x9b,0x0f,0x4b,0x6a,0x47,0x53,0xa2,0x85,0xd3,0x7e,0x6e,0x58,0x74,0xa0,0xc7,0x7c,0x64,0x78,0x84,0x83, + 0x83,0x9f,0x20,0xd4,0x8a,0x2d,0x05,0x9f,0x13,0x8d,0x7b,0x4e,0x55,0x1c,0xa3,0xb5,0x41,0x4c,0xcf,0xb9, + 0xd2,0xe3,0xe7,0x71,0xcd,0xa9,0x9f,0xab,0x91,0x1e,0xdc,0x5c,0x06,0x87,0x14,0xe3,0xcb,0xb6,0x6d,0xa0, + 0x73,0x67,0xa0,0x41,0x58,0xaf,0xb3,0x1a,0x6f,0x7f,0xfa,0x70,0x02,0xd5,0x79,0x1a,0x22,0x01,0x44,0xf7, + 0x64,0x14,0x48,0x40,0x46,0x79,0xd1,0x9b,0x7e,0xa1,0xce,0xb0,0xf1,0x17,0x0f,0xcf,0x0e,0x0e,0x2e,0xfd, + 0x63,0x25,0xd3,0xb2,0xf5,0xc7,0x1c,0xd1,0x13,0x40,0x19,0x32,0xd0,0x82,0xc2,0xab,0x48,0xa8,0xba,0x38, + 0x94,0x32,0xe3,0x9c,0xbe,0xa0,0x5f,0x26,0xbb,0x26,0x18,0x6c,0x05,0x96,0x20,0x8a,0x01,0xfe,0x03,0xd4, + 0xbf,0xa0,0x6f,0x8b,0x2a,0xf2,0x61,0xf8,0xc9,0x6a,0x43,0xf9,0xbe,0xc7,0xf1,0x6a,0xf8,0x6c,0x6f,0xc9, + 0xa7,0x77,0x99,0xba,0x1d,0x33,0xe4,0xcb,0xb2,0x8e,0x1a,0xb6,0xce,0x51,0x75,0x26,0x5c,0x08,0xa3,0x57, + 0x30,0x9e,0x28,0x65,0xc3,0x4b,0x07,0xe6,0xa9,0x8d,0xb2,0x2e,0xea,0x64,0x8f,0x30,0x4a,0x85,0xcb,0x1f, + 0x15,0x04,0x1c,0x15,0xf6,0xd7,0x2b,0xe9,0x17,0xec,0x49,0xd5,0x76,0xe0,0xbc,0xc1,0x78,0xaa,0x31,0xa2, + 0x34,0xc5,0x33,0x44,0x56,0x37,0xfc,0x50,0x51,0x8f,0x33,0x14,0xe5,0x9b,0xcd,0x8a,0x06,0x03,0xa4,0xa7, + 0x0a,0x21,0xed,0x95,0x20,0x64,0xc3,0xb7,0xc8,0xc1,0xe5,0xe2,0x7d,0x0b,0x95,0x6d,0xc7,0x04,0x34,0xab, + 0x09,0xd7,0x33,0x20,0xaf,0xf4,0x51,0x4f,0x53,0xd7,0xce,0xc0,0x16,0x62,0x2a,0x48,0x89,0x2d,0x58,0x3b, + 0x70,0xf8,0x57,0xcc,0xab,0xad,0x76,0x1c,0x68,0x82,0x60,0x1a,0x70,0x80,0x69,0xb8,0xf0,0x62,0x42,0x1c, + 0x54,0xf7,0xd2,0xe7,0x44,0x6e,0xd5,0x36,0x68,0xc2,0xc4,0x39,0x3d,0xd0,0xf1,0x50,0xa4,0xaa,0x98,0x29, + 0xbf,0x2a,0xd1,0x86,0xdf,0xe0,0x83,0xc3,0xac,0x0b,0x6b,0x8d,0x83,0x8b,0x9c,0xa6,0xc5,0xb2,0xe4,0x16, + 0x09,0xcd,0x1c,0xf7,0xd7,0x0f,0xa6,0x66,0xad,0xd6,0xc6,0xb5,0xdd,0xc5,0x66,0xb3,0x77,0x4e,0xfc,0xe2, + 0x74,0xb8,0x1e,0x69,0xce,0x14,0xa6,0xe8,0x9a,0x95,0xbd,0x88,0x2e,0x6a,0xf7,0x07,0x28,0x31,0xd9,0x6c, + 0x2e,0xea,0x0d,0x13,0x17,0x83,0x8d,0x94,0x06,0x66,0x36,0x65,0x5d,0x2f,0x5d,0x37,0x2b,0x33,0x48,0xf3, + 0x56,0x18,0xf1,0xde,0x1b,0xc2,0xc5,0xc1,0xcd,0x25,0x3a,0xb9,0x90,0xb3,0x45,0x1a,0xdb,0xbb,0xc4,0x02, + 0xb3,0x66,0x09,0x9c,0xc3,0xe9,0x47,0xe3,0x66,0x52,0x00,0x72,0x8f,0x03,0x7a,0xf1,0xc6,0xd0,0x04,0x96, + 0x7e,0x37,0xd7,0x5e,0x7b,0x12,0x26,0xe6,0x4a,0xed,0xab,0x0f,0x10,0x52,0xbf,0x47,0xec,0xf8,0x7c,0xb2, + 0x9a,0x27,0x4b,0xf5,0x84,0x9e,0x41,0xe3,0xbc,0xd6,0x6a,0x5f,0x57,0x34,0x27,0x57,0x0f,0x2e,0xd3,0x0a, + 0x80,0xaf,0x98,0xac,0xfc,0x30,0xbc,0x4c,0x87,0x57,0xa3,0x11,0x3b,0x81,0xe4,0x58,0xac,0xef,0xab,0x2c, + 0xfb,0x44,0x5e,0xbc,0x1f,0xee,0x8f,0x74,0x1e,0x5a,0x29,0x93,0x5d,0xf8,0x0b,0xf7,0x1b,0x1f,0xc8,0x6f, + 0x58,0x6f,0x04,0xf7,0x6a,0xa2,0x35,0xa3,0x83,0x87,0x3d,0x71,0x9e,0xdf,0xb0,0xb0,0x95,0x50,0x71,0x8b, + 0x7b,0x42,0x7d,0x5a,0x22,0x3c,0x9b,0xb6,0xaf,0xe0,0xd3,0x5b,0x3c,0xc4,0xc0,0x9f,0x2a,0x0c,0xb4,0x01, + 0x5d,0xb0,0xd7,0x9c,0x63,0x52,0x63,0x1f,0x88,0x0e,0xf9,0x1d,0x97,0xa3,0x11,0x36,0x07,0x06,0xff,0x96, + 0x3d,0x3e,0xf1,0x42,0x32,0xf6,0xc6,0x02,0x04,0x42,0x73,0x2d,0x94,0x0e,0x73,0x8e,0x76,0x26,0xdc,0x9a, + 0x44,0x50,0x33,0xe5,0xe0,0x82,0x87,0x60,0xb8,0xe2,0x27,0x9e,0xb0,0x52,0x96,0xa1,0xee,0x6a,0xe9,0xb0, + 0xe2,0x86,0x77,0x4f,0x3f,0xa7,0x2c,0xe7,0x52,0xbf,0xdd,0x28,0x67,0xdc,0x45,0x7c,0x2f,0xfa,0xaf,0xa3, + 0x42,0x15,0xe6,0x3a,0xe6,0x89,0xb9,0x84,0xf2,0x5f,0x37,0xe2,0xcf,0xc8,0x35,0x8d,0x96,0x1c,0xaa,0xd7, + 0x62,0xf7,0x76,0x21,0xc4,0x20,0x1d,0x7f,0x35,0x41,0xd9,0x05,0x0f,0x50,0xe6,0xe1,0xa2,0x77,0x26,0x02, + 0xdb,0x73,0x39,0x0f,0x66,0x8d,0x73,0xf8,0x02,0x6a,0xbf,0x44,0xb8,0x18,0xfc,0x67,0x00,0xf6,0x2a,0x32, + 0x69,0x04,0x03,0xa0,0x98,0xfa,0x57,0xfd,0xea,0x5c,0x7c,0x4f,0x60,0xf1,0xbe,0x8d,0x77,0x79,0xef,0xf0, + 0x2e,0xef,0x47,0xfe,0x15,0xf7,0xe4,0x4a,0x5c,0xde,0x73,0x57,0xf7,0xab,0x4a,0xde,0x50,0x25,0x6f,0x5a, + 0x38,0xdf,0x37,0x15,0xe7,0xfb,0x86,0x39,0xdf,0x2b,0x81,0xa4,0x47,0xd1,0xd5,0x0e,0x6e,0xe5,0x1b,0x85, + 0x1e,0xab,0x09,0x57,0xb6,0x0e,0x6f,0xa3,0x93,0xfe,0xdb,0x07,0x8f,0x88,0x45,0xb4,0xa6,0x2a,0x6f,0xe1, + 0x50,0x1a,0x09,0xc3,0xb7,0x23,0x43,0x7b,0x3f,0x2e,0xd1,0xbf,0x2b,0xaa,0x55,0x47,0xb7,0x4d,0x40,0x25, + 0xe1,0xdc,0x02,0xcb,0x77,0xac,0x8e,0xf5,0x81,0x45,0xfc,0x0f,0x9c,0x01,0x17,0x95,0x8d,0x98,0xac,0x1f, + 0x02,0xca,0x60,0x4c,0xbc,0x14,0xaf,0x41,0xfa,0xdb,0x7c,0xfe,0x8d,0xde,0x68,0xe1,0x24,0x55,0x7a,0xff, + 0x85,0xc3,0x73,0x1a,0x4a,0xaa,0x9e,0xa4,0xea,0x4d,0xaa,0x5e,0xa4,0xea,0x59,0x36,0x30,0xd2,0xfc,0x67, + 0x89,0x32,0x82,0x35,0x3c,0x0b,0x3c,0x35,0xae,0xff,0xf6,0x24,0xa2,0x97,0x98,0x57,0x5c,0xe4,0x57,0x83, + 0xb7,0x89,0xc4,0x35,0x83,0x6d,0xd2,0x36,0xbc,0xd9,0x8e,0x8c,0x4b,0xe5,0xb3,0x14,0xfe,0xcb,0xbf,0xcf, + 0x0e,0x0e,0xec,0x25,0xc7,0x6e,0x60,0x11,0xb9,0x1f,0xa7,0xda,0xc7,0x17,0x71,0x36,0x4b,0x3c,0xd7,0x1e, + 0x55,0xb4,0xf0,0xab,0xc2,0x2c,0xa5,0xd7,0xc2,0xb5,0x3e,0x2b,0xf9,0xae,0x75,0x1c,0xc4,0x57,0xe8,0x83, + 0xd6,0x37,0x33,0x4e,0xd3,0x7f,0x49,0xe1,0x3e,0x0d,0xab,0x93,0x4c,0x1a,0x17,0xa2,0x10,0x22,0x99,0x9b, + 0x79,0x1b,0xda,0x51,0x78,0x92,0x83,0x83,0x3d,0xfe,0x25,0x46,0x4c,0xeb,0x57,0x0e,0xbe,0xf5,0x11,0x3b, + 0xc5,0x1c,0xe6,0xb5,0x1e,0xfe,0xe2,0xb0,0x14,0x62,0xcf,0x35,0xd1,0xa2,0xa4,0x6d,0x10,0xbe,0x4c,0xe4, + 0xd9,0xf5,0xf4,0x64,0x6b,0x25,0x7c,0x81,0x90,0x6b,0xda,0x22,0xd7,0x6a,0x7b,0x3e,0x85,0x0f,0x24,0x51, + 0x5b,0x80,0xe6,0x88,0xed,0xdd,0x66,0xb3,0x48,0x7d,0x89,0x1a,0xc7,0x0e,0x28,0x50,0xd3,0x2b,0x13,0x28, + 0x36,0x4a,0xaa,0xa0,0xb1,0xca,0x79,0x66,0x6f,0x8e,0xac,0x53,0xbc,0x3b,0xef,0x66,0xba,0x7f,0x48,0x02, + 0xf5,0x2a,0xbb,0x2d,0x13,0xc6,0x26,0x52,0x59,0x42,0x91,0xf0,0xcf,0xff,0x3d,0x7c,0x74,0x7e,0x3c,0x27, + 0xdf,0x7c,0xfc,0x00,0x3d,0xfe,0xef,0xd9,0x0b,0xb8,0x5e,0x24,0xe0,0x21,0xdc,0x09,0x37,0xe7,0x6b,0xe7, + 0xae,0x9a,0x63,0xaf,0xd7,0xd7,0x26,0xb8,0xd9,0x99,0xcb,0xbe,0xb9,0xb3,0xb4,0x33,0x2a,0x6a,0xd4,0x9f, + 0x9e,0xdf,0x7e,0xda,0x8c,0xfe,0x57,0xa9,0x46,0xec,0x41,0xa9,0x9c,0x5d,0x57,0x6e,0x65,0x96,0x8d,0x7a, + 0xc5,0x20,0x11,0x7b,0xe9,0x5b,0x03,0x07,0x3e,0x47,0x07,0x01,0xf0,0xa1,0xce,0xc9,0x97,0xe3,0x44,0xe3, + 0xfc,0x8c,0x97,0x83,0x03,0xfa,0xae,0x3f,0x00,0xd3,0x1b,0x88,0xd5,0xab,0xc0,0xfe,0x19,0xff,0x4d,0xf0, + 0x2a,0xa1,0x3c,0x7f,0x49,0x15,0x76,0x56,0x28,0xba,0xb0,0xcd,0xf9,0xd1,0xce,0x02,0x4c,0x65,0xf0,0xc4, + 0xf0,0x23,0xc4,0x17,0x81,0x56,0x2d,0x11,0xb7,0x29,0x8e,0x40,0x1d,0x36,0x27,0x30,0x34,0x7b,0x5d,0xa4, + 0x33,0xf8,0x7f,0x7d,0x9a,0x2e,0xa1,0x1c,0x19,0x79,0x19,0xad,0x83,0xd6,0xb9,0xe3,0x3b,0xd5,0x89,0x7c, + 0x40,0x14,0xf8,0x46,0x52,0xbf,0x20,0x4e,0x7b,0xe0,0x67,0xd5,0xb6,0xc7,0x11,0xf7,0x08,0x7c,0x81,0x6b, + 0x39,0x54,0x2f,0x14,0xe5,0x5b,0xf8,0xe5,0x6f,0x24,0x16,0x83,0x3c,0x94,0x96,0x5b,0xf5,0x0b,0x76,0x46, + 0xd8,0x2f,0x1a,0x33,0xe9,0x7f,0x72,0xc0,0x3b,0x1d,0x2d,0x06,0x9f,0xea,0x6a,0xdb,0x04,0xd1,0x5a,0xbe, + 0xfd,0x44,0x31,0x3d,0x90,0xd6,0x61,0xb6,0x55,0xa9,0x47,0x0e,0xd5,0x8a,0xac,0x65,0x71,0x35,0x43,0xc0, + 0xbb,0xf1,0xd3,0xfd,0x63,0xa8,0xf9,0x96,0xa0,0x86,0x8d,0xc2,0xb4,0x65,0x17,0x04,0xcd,0x71,0x11,0x3e, + 0xce,0x73,0xb8,0xc0,0x55,0xe3,0xe5,0xd2,0x3e,0x03,0xb8,0x4c,0x36,0x20,0x12,0xf3,0xec,0xdc,0xce,0xea, + 0x14,0xe7,0x6e,0xd5,0xcd,0x63,0xee,0x55,0xdd,0x5c,0x8d,0xb4,0x9d,0x8b,0x5b,0x37,0x6f,0x4b,0xba,0x74, + 0xb7,0x25,0xe9,0xd6,0xbc,0x8d,0x06,0x27,0xab,0x82,0xef,0x05,0xc3,0xa1,0xd8,0xb4,0x29,0x9d,0x2e,0x8a, + 0x1d,0xa3,0xad,0xfa,0xce,0x4c,0x50,0xed,0xb2,0x56,0x2c,0xe5,0xbe,0x4d,0x6b,0xe6,0x73,0x4d,0x3b,0x30, + 0xc7,0x79,0x9a,0x58,0x71,0x19,0xeb,0xad,0xba,0x4d,0x18,0xb3,0x46,0x04,0x97,0xb8,0xc6,0x92,0x9b,0xfa, + 0xf6,0xd0,0x7e,0x8c,0xc6,0x7f,0x83,0x94,0x90,0x40,0xb7,0x1e,0xb1,0x55,0xcc,0xa2,0x70,0x35,0xb6,0xb4, + 0xd1,0x5b,0xdd,0x3a,0x44,0xf8,0x1f,0x19,0xae,0xb0,0x1f,0x54,0x7e,0x2c,0x9d,0x8b,0x33,0x4b,0x7b,0xbb, + 0xa6,0xa3,0x15,0x5b,0xd4,0x17,0xf1,0xdd,0xe3,0x84,0x3d,0xeb,0x10,0xe9,0x39,0xae,0x3e,0x19,0xff,0xaa, + 0x4c,0xa5,0xd1,0xfc,0x99,0x2f,0x3f,0x03,0x4d,0x2d,0x03,0x1d,0x91,0xdd,0x3b,0x3b,0xab,0x9a,0x3b,0xf4, + 0xba,0xd6,0x9d,0x5c,0xd7,0x3b,0xf4,0xfa,0x63,0x16,0xc5,0x89,0xa2,0x2d,0x3f,0x0f,0xc6,0x4e,0x78,0xd3, + 0x55,0x17,0x87,0x04,0x1e,0xbd,0x70,0xd5,0x1d,0xb3,0x21,0x5a,0xe1,0x8f,0x45,0x06,0x82,0x4b,0x68,0x7d, + 0xff,0x21,0x29,0xd6,0x9c,0x68,0x15,0x0c,0x38,0x85,0xcb,0xe0,0x97,0xff,0xf6,0x85,0xf0,0xa6,0xcc,0x13, + 0x76,0x6b,0xa4,0x1f,0x60,0x35,0x13,0x38,0x33,0x12,0xfd,0x94,0x18,0xdf,0x5a,0x35,0x5b,0xf7,0x05,0x26, + 0x61,0xca,0x93,0x20,0x05,0x9d,0x48,0xf3,0x07,0x07,0x3b,0x49,0xb7,0x21,0x7d,0x0f,0xf8,0x45,0x10,0x28, + 0x20,0x8c,0x8f,0x8c,0x71,0x0d,0xf3,0x04,0x6a,0x71,0x70,0xb0,0xd0,0x78,0xca,0x4f,0xa2,0x31,0x1c,0xb0, + 0x2c,0x02,0x0c,0x61,0x4f,0x9b,0xea,0xc1,0x88,0x87,0xe6,0x82,0x5f,0x85,0xc6,0xdb,0xfb,0x8d,0xe5,0x76, + 0xfe,0xde,0xa2,0xcd,0xc3,0x6b,0x5b,0xaa,0x71,0xe9,0x59,0xb1,0xe1,0x81,0xe6,0x37,0x16,0x4d,0x20,0x11, + 0x6b,0x11,0x89,0xaf,0xe1,0xe5,0xab,0xf2,0x30,0x65,0xed,0xfd,0xb8,0xee,0xb7,0x41,0x43,0x01,0x70,0xe7, + 0xb7,0xfe,0x44,0x79,0xf1,0x94,0xa0,0xfa,0xa5,0xa8,0x58,0xb8,0x86,0xe6,0x4e,0xce,0x13,0xa2,0x42,0xeb, + 0x7e,0x2c,0xb7,0x81,0x32,0xe0,0x83,0xc6,0xd2,0xec,0x30,0x17,0x73,0x00,0xb9,0x12,0xff,0x0d,0x9c,0xb9, + 0xe1,0xb3,0x78,0x41,0x2f,0xd4,0x65,0x2d,0xb6,0x02,0x3c,0xb0,0x7f,0xeb,0xcf,0x75,0xf3,0xcf,0x44,0x6b, + 0xe4,0x32,0x50,0x9c,0x26,0x58,0x0b,0xa3,0x87,0x39,0x9a,0x4e,0x9f,0x40,0x2b,0x8c,0x50,0x63,0xb3,0xab, + 0xb4,0x64,0xc4,0x89,0x6f,0x2b,0xd2,0x79,0x09,0xdc,0xf9,0x6b,0x8a,0xd9,0x00,0x20,0x6a,0xa4,0xc1,0xb7, + 0xf9,0x0e,0x76,0x01,0x7a,0x0d,0xfa,0x62,0xd0,0xd7,0xf9,0x95,0x59,0x58,0xb1,0xc2,0xfc,0x9a,0x90,0x4a, + 0xa5,0x4d,0x11,0x7e,0x97,0xaa,0xea,0xed,0x6b,0x68,0x06,0x87,0x37,0x82,0x61,0x7e,0x4d,0xdb,0xb0,0x4a, + 0xc3,0xa2,0x9d,0x11,0x83,0x6b,0x21,0x22,0x6b,0x26,0xf1,0x71,0x17,0x71,0x86,0xd8,0xb7,0xed,0xce,0x8e, + 0xb8,0xd0,0xa2,0x48,0xd6,0xd6,0x53,0xa1,0x58,0x87,0x1a,0xc9,0x73,0xda,0x86,0xaf,0xd8,0x95,0x6a,0x5e, + 0xcf,0x09,0x26,0x3b,0xae,0xb6,0xcb,0x92,0x78,0xa2,0xe5,0x03,0xcb,0x92,0x2f,0x8d,0xdc,0x71,0x1c,0xa5, + 0xc3,0xe5,0xa8,0x3f,0x96,0xb0,0xd1,0xe8,0xc5,0x9e,0x6c,0xf5,0x83,0x03,0xb0,0x05,0xed,0x5b,0x98,0xb0, + 0xc6,0x1a,0xd7,0x21,0x1e,0x80,0x3a,0xb7,0x66,0xa2,0xd9,0x90,0xf3,0x8d,0xb0,0x29,0x3e,0xb5,0x8f,0xe3, + 0x00,0x42,0x0f,0xc7,0x81,0xf8,0x0a,0x1d,0x9e,0x73,0x3c,0x13,0xea,0xea,0xb4,0x12,0x7f,0x4d,0x4d,0x57, + 0x17,0x51,0x31,0x9c,0x8e,0xfa,0xbb,0x1b,0x20,0x56,0x3a,0x8d,0x08,0x56,0xda,0x1f,0xa0,0xf5,0x67,0x49, + 0xf9,0x38,0x5f,0xb1,0x8c,0xed,0xc9,0x3c,0x25,0xc8,0xfa,0x91,0xe6,0x1a,0xae,0xd7,0x87,0x0b,0xee,0xe2, + 0x60,0x25,0xbd,0x5e,0x04,0xe1,0xdc,0x3c,0x6d,0xb5,0xe9,0xed,0x82,0xd0,0xb2,0x2f,0x3e,0x00,0x88,0xd7, + 0xd7,0x41,0xc9,0x98,0x71,0x9a,0x44,0x73,0x6b,0x13,0x6e,0x72,0xe4,0x74,0xf4,0xbb,0x5e,0x39,0x76,0x0c, + 0xaf,0xdb,0x3d,0x0c,0xd8,0xb6,0xa0,0xc2,0x01,0xb4,0x52,0x73,0xd0,0x61,0x3e,0x1a,0x82,0x6a,0x72,0x8b, + 0x29,0xb3,0x0b,0x28,0xda,0xa2,0xbf,0x67,0x41,0xde,0xba,0xe4,0x67,0x93,0x2e,0x6f,0x8d,0x40,0xcf,0x87, + 0xac,0x69,0xd9,0x37,0xf6,0x15,0xda,0x8c,0xe9,0x22,0x5e,0xbe,0xa2,0x74,0xbf,0xd4,0x66,0xf9,0x2a,0x11, + 0x5a,0xd9,0xe8,0x17,0x7e,0xc3,0x3c,0x82,0x79,0xfb,0xa3,0xf6,0xf6,0x8b,0xf1,0xf1,0x0f,0xa7,0x1d,0x73, + 0xc2,0x91,0x96,0xbb,0x83,0x62,0x7e,0x2f,0x9f,0x4e,0x97,0x49,0xf9,0x4d,0x92,0xce,0x2e,0x4a,0xa7,0x54, + 0x53,0x63,0x51,0xd6,0x8f,0xe7,0xb8,0x72,0x10,0x86,0x9e,0xc0,0xa2,0x92,0x09,0xa7,0xfe,0x15,0x28,0x37, + 0x6a,0xac,0xe8,0x59,0xa5,0x9f,0xa8,0xe8,0x39,0xda,0x51,0x3a,0xa5,0x02,0x8c,0xa7,0x9a,0x92,0xe0,0x58, + 0xd3,0xbb,0x2c,0xce,0x8f,0x29,0x5c,0x7f,0xf2,0x74,0x55,0x81,0x06,0x3b,0x90,0xf7,0xdc,0x10,0x71,0xbc, + 0x77,0x64,0x9b,0xd9,0xd7,0xf1,0x3a,0x25,0x58,0x90,0x09,0xd3,0x05,0x47,0x6d,0x99,0x06,0x8c,0x9d,0x8a, + 0x59,0xe1,0xc1,0xd4,0xcd,0x70,0xb2,0x2f,0xdd,0x67,0xfb,0x74,0x70,0x4d,0xda,0x43,0x5b,0x78,0xa3,0x27, + 0xbf,0xc1,0x94,0xe3,0x34,0x7f,0x9a,0x5a,0x79,0x60,0x75,0x9c,0xeb,0xec,0x75,0xec,0xae,0x13,0x8d,0x29, + 0x6a,0x6f,0x8c,0xdb,0x32,0x16,0xd9,0x04,0xb4,0xd6,0xce,0x11,0xcf,0x80,0x81,0x23,0xb1,0x2d,0xb5,0x75, + 0x75,0xae,0x13,0x51,0x84,0x0a,0xd4,0x4c,0x2f,0x40,0xd6,0x4a,0x32,0x5b,0x67,0x18,0x35,0xcd,0x88,0xcc, + 0xb0,0x75,0xef,0x13,0x3f,0xab,0x39,0x21,0xe2,0xac,0x35,0x75,0x2b,0x03,0x47,0x7a,0x30,0x11,0xcb,0xc4, + 0xec,0xca,0x6e,0x61,0x1e,0xfe,0x8e,0x6f,0xeb,0xa7,0xe9,0xac,0xe7,0x04,0xc4,0x8d,0xca,0x54,0x55,0x1f, + 0x6a,0xa1,0x78,0xa3,0x79,0xfb,0x27,0x48,0xd4,0xa2,0x7f,0x15,0xce,0xb7,0x46,0x28,0xde,0xe8,0x55,0x59, + 0x2b,0x58,0x8f,0xdd,0xbb,0x13,0x1a,0xe5,0x59,0x45,0xaa,0x61,0xa5,0xe6,0xb0,0x63,0xa8,0xaf,0x5d,0xd4, + 0x8c,0x6a,0x2b,0xa8,0x76,0xca,0xae,0x23,0xcd,0x99,0x89,0x17,0x6d,0x73,0xfc,0x29,0x33,0x04,0x36,0xa2, + 0xd6,0xd8,0xf8,0xd0,0x83,0x85,0xf6,0x80,0x8b,0xb3,0xe7,0xf2,0xca,0xce,0xd7,0x6a,0xfa,0x41,0xac,0x5d, + 0x1f,0x04,0x1c,0x21,0xdf,0x9a,0xd5,0x5a,0x48,0x70,0x9d,0x47,0xbb,0xa5,0xf5,0x96,0x48,0xdc,0x38,0x4d, + 0x5b,0xb5,0x86,0x55,0xa5,0xf5,0xa1,0x68,0xc9,0x2d,0xe2,0x84,0x83,0xfa,0x37,0xc7,0x78,0xfd,0xeb,0x94, + 0x4d,0x26,0x1d,0x97,0x25,0x06,0x61,0x42,0xa3,0xf0,0x8f,0x34,0x9c,0xd5,0x3f,0x8b,0xe3,0xb9,0xf6,0x00, + 0x59,0x25,0xd4,0x85,0xa8,0xd4,0x8f,0x98,0x29,0xe3,0x29,0xbe,0x40,0xd8,0xa0,0x28,0x01,0xa1,0xc6,0x67, + 0x21,0x7b,0xf2,0x81,0x0f,0x5f,0xab,0xd8,0x21,0x07,0x3a,0xef,0xe7,0x46,0x5a,0x54,0x16,0xec,0x07,0x26, + 0xab,0x47,0xc4,0x16,0xaf,0xf5,0x8f,0x8a,0x3a,0x2f,0x99,0x19,0x77,0x4e,0xbe,0xf5,0x37,0x4c,0x0b,0x9d, + 0xd2,0xbc,0xcc,0xac,0x26,0x11,0xf5,0x84,0x10,0xbe,0x90,0xd4,0x59,0xe5,0x19,0x26,0xdb,0xf5,0xc2,0x9d, + 0xd5,0xbc,0x70,0x67,0x7d,0xab,0x15,0xb2,0xc5,0x7c,0x18,0x3f,0x04,0xbe,0xd3,0xfe,0x5b,0xa8,0x82,0x48, + 0xd8,0xeb,0x83,0x83,0x7f,0x67,0xf8,0xdf,0x83,0xcb,0x2c,0x50,0x6a,0x50,0x60,0x7e,0x07,0x6b,0x8c,0x63, + 0xd9,0x91,0xbf,0xa5,0xea,0x5f,0x50,0xa1,0xbc,0x39,0xbd,0xf1,0xfd,0x41,0xd8,0xdb,0x9c,0x66,0x41,0x77, + 0x10,0x9c,0x6e,0x4f,0xb7,0x47,0x33,0xf5,0x9f,0xd0,0x79,0x3f,0xec,0x7d,0xd1,0x1d,0xfc,0xbe,0x7f,0xb3, + 0xf5,0x83,0xcd,0xf0,0x74,0x74,0x7a,0x74,0x7a,0x3a,0xa2,0x6f,0x65,0xde,0xaa,0xb8,0xce,0x67,0x87,0xd1, + 0xd9,0xfe,0xcf,0x54,0x79,0xa7,0xa7,0xfb,0x07,0x1e,0x07,0x3b,0x81,0x7a,0xf9,0xee,0x17,0xeb,0x30,0x80, + 0x66,0x52,0x3c,0xa4,0xf8,0x49,0xd7,0xd3,0x9d,0x91,0xde,0x78,0x5d,0x9a,0x84,0x19,0xe4,0x7f,0x2a,0xc9, + 0xa3,0x1b,0x11,0xea,0xc3,0x9b,0x69,0x38,0xf4,0x1c,0x69,0xbf,0x37,0x52,0x16,0x57,0x37,0x8c,0x3b,0x00, + 0x1b,0xf0,0x98,0x58,0xe8,0xf9,0x8b,0x0a,0x91,0xd2,0x88,0x99,0x6d,0x5f,0xc4,0x59,0x4e,0x55,0xd1,0xb7, + 0x6f,0x5e,0x7f,0x4f,0x09,0x80,0x68,0xc4,0x6c,0xcc,0x02,0x83,0xc0,0x32,0xa7,0x20,0x5c,0xe2,0x42,0x80, + 0x02,0x55,0x18,0x24,0x3c,0x4e,0x99,0xd2,0x88,0x0a,0x2c,0x75,0x92,0xc1,0x31,0x6b,0x8b,0x8f,0x73,0xcf, + 0x73,0x14,0xfa,0xab,0x26,0xc1,0x46,0x74,0x23,0x77,0x3c,0xa1,0xd7,0xad,0xe5,0xe8,0x7a,0x0a,0x46,0xbe, + 0xb5,0xb6,0x74,0xa9,0xb1,0xcd,0xef,0x7e,0x94,0x02,0x09,0x11,0xc4,0x59,0xfb,0xb4,0xf1,0xc5,0xc8,0x9f, + 0x9f,0x36,0xc6,0xfb,0x8d,0x69,0xe3,0xaa,0x9a,0xd3,0xf6,0x28,0xc5,0xcc,0xd5,0xa7,0x4e,0x0a,0x3b,0x53, + 0xc7,0x09,0x7f,0x75,0xea,0xb8,0xd9,0xda,0xd4,0x71,0x8a,0x33,0x75,0xfc,0x6e,0xa6,0xce,0x6d,0xcb,0x96, + 0x42,0x7e,0x5f,0x0a,0x54,0x5f,0xbb,0xb0,0x35,0x90,0xc9,0x2b,0x72,0xbe,0x62,0x82,0xbd,0x1f,0xdb,0x7e, + 0xc2,0x88,0x32,0x9f,0x6b,0x5b,0x46,0x31,0xd8,0xd3,0x36,0x98,0x62,0x57,0x98,0x2e,0x19,0x25,0xe3,0xc2, + 0x89,0x86,0xe2,0x58,0x89,0xd6,0x0c,0x1e,0xc5,0x2c,0xf2,0xea,0x1c,0xbe,0x86,0xd2,0x5c,0x2c,0xa5,0xb5, + 0x5d,0x23,0x8c,0x3e,0x4b,0x18,0x74,0x1a,0xe1,0xe6,0x82,0x0d,0x1b,0x61,0x14,0xc8,0xe6,0x8d,0x62,0xf0, + 0x58,0xe8,0x9a,0xa8,0x7c,0x2e,0x3d,0x6c,0x35,0x3c,0x95,0x2e,0x57,0x26,0x86,0x6c,0x27,0xd9,0x6a,0x4e, + 0x89,0x66,0xeb,0xf6,0x8c,0x6c,0x81,0xaa,0xcd,0x4f,0x8d,0xfd,0xe4,0x8e,0x1d,0xaa,0xb6,0x6c,0x65,0xc3, + 0xca,0x16,0xbb,0x56,0xf4,0xd5,0x58,0xbd,0x4a,0x3b,0x34,0x59,0x6c,0x4d,0xab,0x2d,0x2f,0x61,0xb8,0x6a, + 0x4c,0x26,0x79,0x9a,0x9a,0x46,0x98,0x32,0x6d,0x62,0x94,0xaa,0x27,0x4f,0xcc,0x27,0x8c,0x81,0x65,0x65, + 0xfb,0xd9,0x98,0x22,0xb6,0xc7,0xa5,0x89,0xe2,0xb9,0xa6,0x79,0x8a,0xf3,0xe8,0xe8,0xf7,0xd3,0xe5,0x17, + 0xfe,0x90,0xfe,0x7a,0x77,0x1e,0x3c,0x3c,0x3d,0x8a,0x46,0xdd,0x80,0x70,0x0d,0x12,0xa3,0x00,0x7f,0x07, + 0xa1,0x47,0x9f,0xbd,0xd1,0x17,0x84,0x76,0x36,0x77,0xe8,0xf1,0x0e,0x3d,0xde,0xe9,0x6e,0x74,0x99,0xe8, + 0xc1,0xc3,0xff,0xa2,0x22,0x41,0x30,0x38,0xa2,0xce,0x44,0xde,0x30,0x3e,0xfc,0xe3,0xd1,0xe1,0x6f,0x67, + 0xa3,0xe1,0xe9,0xe9,0xd5,0xe9,0xe9,0xe1,0xe9,0x69,0x6f,0xf4,0x85,0x47,0x93,0x1a,0x31,0x0e,0xf3,0xba, + 0xcb,0xbc,0x4b,0x98,0x2e,0x0c,0x06,0xf2,0x18,0x78,0x6a,0x95,0x47,0x0e,0xb2,0xf3,0x7e,0x7f,0xe0,0x75, + 0xc7,0x79,0xa0,0xe6,0xa6,0x73,0xa7,0x47,0x83,0xe0,0xe1,0x11,0x4d,0x68,0x23,0xdb,0xe9,0xe9,0x11,0x72, + 0x76,0xbd,0xe1,0xef,0x0f,0x47,0x5f,0x3c,0xa4,0xf1,0x2c,0x50,0xe4,0xc1,0xde,0xd3,0xd7,0x4f,0xde,0xfe, + 0xeb,0x87,0x67,0x1d,0xa4,0x77,0x1f,0x1e,0xa5,0xea,0x42,0xd2,0x61,0xb7,0xb3,0x96,0xc7,0xd3,0xe1,0x11, + 0x31,0xc1,0xb8,0x31,0xf6,0x3e,0x78,0x16,0x0b,0x1f,0x7d,0xf0,0x7b,0x34,0x90,0x99,0xaa,0x6f,0x79,0xca, + 0xe8,0x81,0x9d,0x4f,0xf4,0x85,0xcb,0x2c,0x57,0xd7,0xb9,0x3a,0xcb,0x09,0x76,0xd4,0x55,0xae,0xf6,0x73, + 0xf5,0x21,0x57,0xef,0x73,0xf5,0x24,0x57,0x6f,0x72,0xf5,0x28,0x57,0x6f,0x73,0xf5,0x9a,0x41,0x50,0x5b, + 0xed,0x6a,0x73,0x68,0x73,0xd7,0xc1,0x07,0xde,0xbb,0x1c,0xf7,0xc5,0xcf,0xe8,0xaf,0x77,0x30,0x2f,0xfb, + 0x5e,0xe8,0x3d,0xa0,0x4d,0x79,0x30,0xe3,0xc7,0x87,0x78,0x04,0x7c,0xd2,0xcb,0x1d,0xef,0x0e,0xbd,0xc4, + 0x97,0x0b,0x7c,0x38,0xc0,0x87,0xbf,0x9d,0x1c,0xe3,0xf9,0x34,0xe3,0x97,0xaf,0xf8,0xb9,0xf4,0xb6,0xea, + 0x25,0x8d,0xed,0x80,0x26,0x99,0x38,0xdf,0x59,0xb9,0x41,0xf1,0x0d,0x15,0x0b,0xfa,0x34,0xa0,0x17,0xad, + 0x9f,0x36,0x54,0xd3,0xe6,0x6f,0x5f,0x71,0x8e,0xe7,0xdc,0x61,0xe8,0x3b,0xd4,0xfb,0xf9,0x34,0xbf,0x85, + 0xa6,0x38,0x38,0x78,0x9e,0x8b,0xe7,0x84,0x53,0x96,0xac,0x24,0xf0,0x55,0xa4,0xbe,0xc7,0xfc,0xfe,0xc7, + 0xe6,0xf7,0xf5,0x61,0x9e,0x85,0x47,0xea,0x07,0xbc,0xae,0x0f,0x37,0x48,0xa2,0xd7,0x57,0xf4,0xea,0xf7, + 0xbe,0xa0,0x03,0x75,0xd9,0xa5,0xde,0xa4,0xd9,0x26,0x9f,0xf2,0x73,0xef,0x8b,0xe0,0x48,0xfd,0x48,0x5f, + 0x15,0xc1,0x95,0xa2,0xe3,0x76,0x44,0x50,0x46,0x39,0xdc,0xd7,0x60,0xb0,0x7f,0xa4,0x1e,0x33,0x54,0xf8, + 0x9b,0xd3,0x60,0x9f,0x3a,0xfd,0x53,0xce,0x46,0x61,0x5f,0xd0,0x8b,0xfa,0x19,0x5f,0x42,0xb4,0xcc,0x02, + 0xe7,0x23,0xf5,0x0d,0x25,0x9c,0xf6,0x86,0xbf,0xf7,0x46,0x5d,0xca,0xfa,0x47,0xf3,0x7c,0xd6,0x6e,0x62, + 0x7e,0x4b,0xa3,0xdf,0xd2,0x4f,0x98,0x27,0x05,0x95,0x0e,0x04,0x11,0x4d,0xbf,0xa5,0xae,0x49,0x22,0x1d, + 0xc2,0xbf,0xa0,0xe5,0x0f,0x97,0xf3,0x6c,0x19,0x7e,0xff,0xe6,0x74,0xd2,0x3d,0x52,0xff,0x46,0x0a,0x3f, + 0x53,0x3f,0xbe,0xcd,0xa3,0x61,0x92,0xd3,0x99,0xa3,0x6e,0x68,0x7a,0xdf,0x7e,0xe4,0x6c,0x11,0xe9,0x91, + 0xf1,0x25,0x21,0x17,0x42,0x86,0x77,0xe1,0x2b,0xfd,0x57,0xf1,0x82,0x35,0x11,0x87,0xde,0xfa,0x90,0xaf, + 0x50,0xbc,0x11,0xa8,0x24,0xbc,0xf2,0xa0,0x41,0x09,0x7a,0xa3,0xcd,0x86,0x52,0xf4,0xb3,0x51,0x08,0xd5, + 0xa7,0x0d,0x27,0x82,0xda,0x92,0x93,0x6b,0x7d,0x98,0x4e,0x65,0x99,0xf3,0x28,0x1d,0x78,0x54,0x97,0xd7, + 0x4d,0xb1,0x29,0x43,0xe2,0x0d,0xe3,0x48,0x88,0x71,0x93,0x15,0x97,0xb8,0x92,0x79,0x59,0x4b,0xb3,0x75, + 0x8c,0xa3,0xaf,0xd9,0x6a,0xe4,0xbb,0x84,0xbd,0x63,0x25,0xd0,0x31,0xe2,0x06,0x95,0x38,0xcc,0x38,0xcf, + 0x3f,0x50,0xdb,0xdf,0x22,0x9d,0xf8,0xa5,0x31,0x88,0xd7,0x31,0x21,0x68,0x21,0xed,0xc6,0xbd,0x74,0x4a, + 0x38,0xc2,0xeb,0x16,0xd4,0x3e,0x0d,0xff,0x8e,0x29,0x72,0xc7,0xeb,0xe6,0xea,0x57,0x14,0xba,0x49,0x3e, + 0x2c,0x42,0xe4,0x13,0xfc,0x1d,0x8e,0xb7,0x46,0x5e,0x2b,0xed,0x52,0xa7,0x56,0xe8,0x14,0xcd,0xae,0x74, + 0xa8,0xe4,0x04,0xdd,0x85,0x22,0x9e,0xa4,0xb9,0xb4,0xbf,0x42,0xfb,0x55,0x95,0x6e,0xab,0x9c,0x8b,0x9b, + 0x94,0x36,0x56,0xba,0x8d,0xb9,0x6d,0x43,0x54,0x7c,0x12,0x88,0xe6,0xea,0x4d,0x51,0x82,0x4c,0x3a,0x4c, + 0x1e,0xbe,0xc5,0x7b,0xad,0x95,0x54,0xd7,0x38,0x47,0x60,0xe1,0xc1,0xb8,0x87,0xa9,0x43,0xd8,0xb9,0x25, + 0x0b,0x53,0xf1,0x46,0x13,0xb0,0xa4,0x79,0x01,0x4b,0x37,0x52,0xdf,0x11,0x66,0xa0,0x62,0xc4,0x2a,0x00, + 0xec,0x20,0xb5,0x37,0xf7,0xda,0xdf,0xe6,0xaa,0xe2,0x21,0x42,0x7d,0x95,0xd6,0x7a,0xb5,0x24,0x76,0x39, + 0xa2,0xcd,0x01,0x95,0x47,0x56,0x3b,0xbb,0x50,0x6b,0x75,0x69,0xaf,0xd5,0x66,0xb5,0x3b,0xd5,0x6b,0x81, + 0x3a,0x75,0xe6,0x00,0x1c,0xdf,0xc5,0x4a,0x00,0x26,0xcb,0x9e,0x58,0x4f,0x4d,0x00,0x83,0x4b,0x35,0x0b, + 0x94,0x0e,0xb2,0x5b,0xdd,0x67,0x5e,0x07,0x13,0xda,0x2b,0x17,0xd1,0xa5,0x5a,0x47,0x77,0xd0,0x9b,0xfd, + 0x7d,0xe3,0x84,0xe3,0xe7,0x78,0xde,0x89,0x3a,0x8d,0xb0,0xea,0xfa,0x46,0x41,0xee,0x31,0xf7,0xd9,0x73, + 0xac,0x0e,0xd5,0x68,0xef,0x34,0xed,0x18,0x73,0x8b,0x85,0xf2,0x9e,0xa9,0x74,0x1b,0xe0,0x1a,0xd4,0x77, + 0xf3,0xa0,0xd5,0x35,0xb7,0xe5,0x9d,0x89,0xc7,0x17,0x68,0x05,0xe5,0x9d,0x01,0x15,0x93,0x84,0x4e,0x48, + 0x8f,0xfa,0xf6,0x4d,0x2a,0xbc,0xd3,0xf5,0x89,0x12,0x9a,0xf5,0xc4,0x94,0x7e,0xe0,0x9d,0x65,0x3e,0x7d, + 0xc7,0x86,0xa0,0x1f,0x88,0x8a,0x08,0x1e,0x3c,0x95,0x24,0x90,0xc0,0x9a,0xab,0xe5,0x75,0xb4,0xee,0x7a, + 0x1d,0x82,0x99,0xc4,0xbf,0x50,0x5e,0xbd,0xef,0xe6,0x5e,0x95,0x1a,0xad,0x4f,0x40,0x58,0x7f,0x27,0xe4, + 0xe9,0x05,0x0d,0xc3,0x8a,0x1a,0x3a,0xb8,0x26,0x44,0x6b,0x77,0x11,0xbd,0x9f,0x05,0x70,0x91,0x34,0xa6, + 0xf9,0x5d,0x45,0x4e,0x8f,0xd5,0x1c,0x3b,0x7d,0xa9,0xb4,0x8b,0x9b,0x60,0xb3,0xf1,0x50,0xa9,0xa7,0xa6, + 0x3a,0x1d,0xde,0x4e,0x0e,0xab,0x8f,0x78,0xf5,0xd4,0x42,0x7f,0x9c,0xc6,0xd8,0xcf,0xd5,0x57,0x7e,0xf7, + 0xd4,0xbf,0x4a,0x7c,0x34,0x4e,0x6f,0x94,0x57,0x37,0x1d,0xa1,0x43,0x98,0x36,0xcf,0xe0,0x2c,0x95,0x27, + 0xe5,0x75,0xe7,0x5d,0x66,0xbd,0xbd,0xae,0x2f,0xf5,0x53,0x77,0xa7,0x03,0x2f,0xd4,0x39,0x69,0x2e,0xc3, + 0xb3,0x7f,0xdb,0xcc,0x53,0x24,0x41,0x2b,0x26,0x91,0x46,0x64,0x4e,0x3d,0x01,0x99,0x38,0x92,0x6c,0xfb, + 0x60,0x4e,0x6b,0x33,0x4b,0x49,0xe3,0x08,0xc9,0x3d,0xdd,0xaf,0x81,0x2f,0x75,0xa1,0x99,0x05,0xfd,0xee, + 0x1a,0xbf,0x52,0x75,0x1a,0x1d,0xee,0xef,0xaf,0xa9,0x62,0x7f,0xc5,0xeb,0x2b,0xfd,0xf5,0xc2,0x79,0xc0, + 0x0d,0xa5,0x11,0x8d,0x84,0xb2,0xd2,0xe3,0x9a,0x2b,0x71,0x1b,0x09,0x6e,0x28,0xc3,0x83,0x63,0x46,0x94, + 0xd4,0x2f,0xea,0x80,0x0d,0xac,0x3d,0xa4,0xfc,0xa3,0x40,0x74,0x5d,0x90,0x8b,0x26,0xa0,0x96,0xcd,0xb8, + 0x7b,0xa1,0x4f,0x81,0x29,0x53,0xa5,0x53,0x6a,0xf7,0x04,0x7a,0x03,0x52,0x9e,0x81,0x89,0xd0,0x27,0x0d, + 0x92,0x81,0xce,0xfb,0x14,0x68,0x08,0x76,0x63,0xb8,0x10,0xc6,0xfe,0x92,0x50,0xba,0x0b,0x17,0x31,0x96, + 0xb8,0xd8,0x85,0x8b,0x7f,0x71,0x60,0xab,0x6a,0x6d,0x79,0x65,0x52,0x5e,0x19,0x3f,0x8e,0x72,0x3d,0x43, + 0x31,0xcf,0x50,0x1c,0xf0,0x5a,0x61,0xa9,0x8a,0x6a,0xa9,0xa8,0xa7,0x30,0x4c,0xfb,0x68,0x0f,0x01,0x69, + 0x8e,0xaa,0xc7,0x75,0xb0,0xd7,0x8a,0xb0,0x9a,0x68,0x07,0xfe,0x56,0x39,0x96,0x47,0x0e,0x55,0x6c,0x84, + 0x01,0x86,0x17,0x6d,0x3d,0x22,0xc4,0x32,0x82,0x79,0x36,0x6d,0x82,0xbd,0x9c,0xa7,0x00,0xdd,0x81,0xca, + 0x1e,0x6d,0x09,0xea,0xb8,0xee,0x5f,0xa8,0x3f,0x40,0xb5,0x6c,0xf0,0x21,0x0d,0x75,0xaf,0x68,0xa3,0x34, + 0xb6,0xaa,0xcc,0x4c,0x1f,0xf8,0xb8,0xfd,0x9b,0x36,0x06,0x07,0xe1,0x2c,0x79,0x2a,0xe0,0x91,0x43,0x62, + 0x1a,0xe5,0xf0,0x39,0x30,0x0f,0xfa,0x63,0xca,0x40,0xc7,0x19,0xa0,0xa7,0x56,0x8f,0x56,0x1f,0xb1,0xf7, + 0x8e,0x7d,0x82,0xd9,0x00,0x6b,0x50,0x9a,0x95,0x51,0x38,0x8d,0x12,0x3b,0xcf,0x25,0x61,0xee,0x69,0x25, + 0x26,0xf1,0x97,0x9b,0x0d,0xdb,0x12,0xf2,0xf9,0x7b,0x3e,0x5f,0xd1,0xf1,0xe3,0xd5,0x6f,0xa3,0x3c,0xb6, + 0x02,0x04,0x52,0xb6,0x0b,0xb1,0xf7,0x36,0xab,0x0b,0x00,0xfd,0x4a,0x59,0xb5,0x86,0xc2,0xed,0xc5,0x2a, + 0x13,0x81,0x3b,0x9c,0xef,0x5a,0x14,0x13,0xa4,0xbb,0x0e,0x0d,0x04,0xb0,0x59,0xa2,0xdb,0x92,0x83,0x3b, + 0xbf,0x65,0xa6,0xe6,0xe3,0x55,0x58,0xaa,0xaa,0xb5,0x82,0x2d,0x71,0x8e,0x3f,0x10,0xc1,0x14,0xb7,0x79, + 0x9a,0x00,0xa5,0xaa,0xfd,0x6a,0x41,0x0c,0x49,0x6c,0x0f,0xf2,0x15,0xb9,0x72,0x24,0xa0,0x61,0x99,0xc2, + 0x8f,0xce,0xe3,0xe4,0x65,0x32,0x2d,0x5f,0x2f,0x92,0x0c,0x59,0xd2,0x5c,0xd5,0xa6,0x22,0x24,0x7e,0xab, + 0x21,0xe5,0x0c,0x5f,0x95,0xca,0x91,0x0e,0x7c,0x9b,0x13,0x83,0x30,0x59,0x8d,0xdb,0x35,0x69,0x3a,0xa5, + 0xd9,0xcc,0x26,0xd6,0x95,0x89,0xe2,0x17,0xb0,0xa3,0x87,0xde,0xbb,0x3c,0x25,0x30,0x51,0x98,0x91,0x5f, + 0xdb,0x69,0xd0,0x0e,0xfc,0xb7,0x00,0xda,0x71,0xf4,0x32,0xfc,0x43,0x66,0xae,0xcc,0x4e,0x50,0xc4,0x9c, + 0xa4,0x99,0xf6,0xd2,0xa1,0xec,0x95,0x97,0x04,0x0a,0xea,0xfa,0xe5,0x00,0x7b,0xb5,0x84,0xb3,0x53,0x48, + 0x84,0xbe,0xb6,0x3c,0xdd,0xe9,0xd5,0xfe,0xd9,0xa8,0xbb,0x39,0x25,0x12,0x3a,0x18,0x7d,0x31,0x38,0x0d, + 0xc0,0xcf,0x45,0x0f,0x37,0xbf,0x9b,0x1e,0xd0,0xeb,0xa9,0x7f,0xa4,0x7e,0xd3,0x25,0x86,0xc4,0xb7,0x11, + 0xf7,0x76,0xb6,0x3f,0x42,0xd1,0x11,0x58,0x3f,0x22,0x9f,0x1b,0x89,0x9b,0xd3,0xe1,0x1d,0x22,0xe0,0xef, + 0x8c,0xe8,0xc1,0xa3,0x07,0x0f,0x0f,0x44,0xe7,0xe2,0xa7,0x99,0x77,0x14,0x7c,0x41,0xd5,0x12,0x69,0xfe, + 0x2f,0xd0,0x32,0xcb,0x71,0x78,0xf7,0x1f,0xf0,0x51,0x14,0x7e,0x25,0xda,0x13,0xe1,0xc9,0x3d,0x25,0xf3, + 0x7d,0xef,0xae,0x5a,0x2d,0xc2,0x7b,0xff,0x24,0x16,0x78,0x5a,0x86,0xf7,0xfe,0xa1,0x0a,0xdc,0x8b,0x84, + 0xf7,0xbe,0x52,0xf0,0x6b,0x1d,0xde,0x3f,0x56,0x72,0x35,0x19,0x0e,0xff,0xa9,0xee,0xff,0x9d,0xb8,0x8c, + 0xff,0xcc,0xdb,0xdc,0x6d,0x01,0xe5,0x74,0x4b,0x02,0x1e,0xc7,0x15,0x56,0xdf,0x83,0x17,0x12,0x48,0x7b, + 0x08,0x1e,0xcc,0xa6,0xc6,0x0b,0x00,0x24,0x9e,0xc5,0x22,0x23,0xec,0x43,0x51,0x82,0xbf,0xd9,0x3c,0xfa, + 0xfd,0xa9,0x5c,0x25,0x72,0x16,0x84,0x18,0x0b,0xff,0x33,0xf7,0xeb,0xb8,0xa1,0x43,0x18,0xa7,0xa3,0x53, + 0xc6,0xab,0x02,0x8b,0xf4,0x96,0x3f,0xd0,0x06,0x1e,0x97,0xc5,0x9c,0x4b,0xec,0x99,0x0c,0x94,0xf0,0x1d, + 0x14,0x6f,0x15,0x3b,0x03,0xad,0x7d,0xe3,0x14,0xf9,0x18,0xcf,0xeb,0x9f,0xe8,0x5d,0x3e,0x40,0x20,0x50, + 0xfb,0x82,0x04,0xf9,0xc4,0x73,0x87,0x4f,0x77,0xc4,0xd9,0xd3,0x1d,0x10,0x3b,0x92,0xab,0x73,0x70,0x60, + 0x7a,0x28,0xdf,0xb8,0xcf,0xc7,0xa8,0x2f,0x9d,0x4c,0xe6,0xc9,0x9f,0x2a,0x76,0xc2,0x0e,0xd1,0xb0,0x3e, + 0x7f,0xa6,0xd4,0x5d,0xc0,0x7f,0x42,0x0b,0x41,0x6c,0x61,0xd3,0xcd,0x0a,0xbc,0xbb,0x55,0x01,0xea,0x5a, + 0x16,0xf6,0x6c,0x26,0x0b,0xab,0x6a,0x18,0x82,0x10,0xc4,0x8e,0x6a,0x91,0xa9,0x8e,0x23,0xe1,0x55,0x46, + 0x40,0x55,0x4d,0xe7,0x54,0x53,0x46,0x35,0xdd,0x81,0x80,0x8b,0xf6,0x5b,0x17,0xdc,0x75,0x55,0x2b,0x4e, + 0x3d,0x87,0x20,0x86,0xff,0xa2,0x4a,0xcb,0x10,0xd7,0x5c,0x03,0xa1,0x68,0x42,0x4d,0x1a,0x05,0x1f,0xc9, + 0xce,0xa1,0xa4,0x3d,0xa5,0xf3,0x7b,0x81,0xee,0xf3,0x78,0x9e,0xc7,0xef,0x11,0x24,0x37,0x6b,0xf1,0x62, + 0x9a,0x5b,0xe7,0x97,0xfc,0x0a,0x51,0x23,0x9d,0x89,0xf8,0xd9,0x6c,0xbe,0xd6,0x89,0x56,0x3a,0xb9,0x8c, + 0x7e,0x83,0x9d,0xb4,0xd1,0x37,0xf7,0xec,0x07,0x44,0x29,0x32,0x3e,0xd9,0x71,0x83,0xf8,0x75,0x92,0x21, + 0x18,0x5f,0x3d,0xb7,0x16,0x2b,0xda,0x7c,0x96,0xa5,0x88,0xd6,0x3e,0xeb,0x4e,0x24,0x31,0x5b,0x3c,0xdb, + 0xf4,0xc0,0x06,0xe6,0xaa,0x21,0xd0,0xcd,0xe6,0x43,0xd6,0xd7,0xee,0x8e,0xaf,0xcf,0x13,0x1b,0x53,0xb1, + 0x65,0x21,0xf7,0xac,0x75,0xae,0xf6,0x75,0x99,0x8d,0x93,0x17,0x93,0x48,0xfb,0x9c,0x6f,0xc6,0x0e,0x84, + 0xdb,0xed,0x22,0x8e,0x7c,0x57,0xea,0x73,0x7a,0x7a,0xee,0x75,0xbd,0x09,0xe1,0xf0,0x29,0x24,0x6c,0x04, + 0xf4,0x25,0xee,0x1c,0x68,0x92,0xaf,0xd9,0xdf,0xda,0x18,0xd2,0x3d,0x1c,0x7b,0xea,0x2a,0x2d,0x2f,0x54, + 0x7c,0x15,0xa7,0xa5,0x62,0x7d,0x7f,0xc5,0x9e,0xcd,0xb5,0x4e,0x3c,0x5f,0xf0,0x28,0x76,0x44,0xaa,0x38, + 0xc8,0xbc,0xba,0x22,0xb4,0x9a,0xa8,0x6b,0x88,0xf5,0x34,0xb2,0x51,0xc4,0x7d,0xe5,0x70,0x62,0xc8,0x0e, + 0x56,0x94,0x8c,0xc0,0x38,0xf6,0xb2,0x5e,0xb2,0xd9,0xf5,0x27,0xb1,0x26,0x12,0x6f,0x9e,0x7d,0x9b,0xa5, + 0xd9,0x0a,0xfe,0x16,0xcf,0x57,0xb3,0x19,0xe4,0x80,0x7a,0x16,0xaa,0x18,0x2a,0x9e,0x76,0x3f,0x83,0x33, + 0x41,0x9f,0x0e,0x34,0xac,0x0d,0x86,0x16,0x74,0x79,0x84,0x72,0x8f,0xd2,0x18,0xb3,0x74,0x4a,0x7c,0x88, + 0xb2,0x5e,0x7a,0x6b,0x3d,0x84,0xd2,0x81,0xf0,0x4f,0x4f,0x09,0xe5,0xd3,0x9f,0xaa,0xd6,0xc6,0x07,0x04, + 0x80,0x7b,0xdb,0x14,0xed,0x54,0x16,0xb6,0xb7,0x1a,0x84,0xb2,0x17,0x60,0xc2,0x8d,0x08,0x6c,0x1c,0xed, + 0x9d,0x04,0x6a,0x3f,0xd7,0x6b,0xca,0xb6,0x5f,0x10,0x63,0x3b,0x31,0x58,0xfa,0xd9,0x83,0xab,0xdc,0xf5, + 0xbb,0x72,0x95,0xb3,0x89,0x2d,0x8c,0x7b,0x67,0x79,0x94,0x54,0x90,0xbd,0x8f,0x37,0x73,0xde,0x03,0xa4, + 0xd4,0x07,0xa4,0x38,0xa7,0x39,0x27,0xbe,0x47,0x62,0xe3,0xb8,0xe6,0x0f,0x67,0x39,0xc0,0x3b,0x69,0xd9, + 0x0c,0xdf,0xcb,0x66,0x38,0x6f,0x66,0x68,0xca,0x62,0x28,0xcf,0xd5,0x4e,0x9e,0x7c,0x59,0x36,0x33,0x5d, + 0xa3,0x0b,0xb4,0x1a,0xe9,0x65,0x5a,0x22,0xbe,0xa1,0xe5,0xb4,0x45,0xb5,0x64,0xef,0x84,0x35,0x9c,0x10, + 0xb4,0x1c,0x3b,0xe4,0x97,0x0b,0xca,0xc5,0xdd,0x54,0x98,0x2f,0xd0,0xaa,0x27,0x3b,0x46,0x17,0xcd,0x49, + 0xa6,0xb7,0x79,0x37,0xa2,0xc5,0x86,0xc6,0xea,0xea,0x5c,0x2e,0x10,0x7c,0xd7,0x20,0xba,0x30,0x2e,0x02, + 0xd8,0x60,0x5f,0x2d,0xab,0x80,0xf4,0xe2,0x5d,0x76,0x1e,0xe8,0xcb,0x34,0xdc,0x29,0x14,0x78,0x2d,0x79, + 0xc5,0x1a,0xd7,0xad,0x94,0xcc,0x5a,0xfc,0x69,0x14,0x57,0x51,0xea,0xd3,0x87,0xd1,0x31,0x62,0x11,0xa4, + 0xa3,0xde,0xdc,0x64,0xc5,0x46,0xa7,0x71,0x51,0x3b,0x87,0x87,0x86,0xae,0x8c,0xf8,0x52,0x17,0xb9,0x1d, + 0xdb,0x4a,0xb7,0xa2,0xf1,0xc3,0x28,0xed,0x8f,0xa9,0x40,0xd2,0x63,0x07,0x2a,0xfc,0xc3,0x6e,0xd4,0x59, + 0xc8,0x80,0xfe,0xf7,0x4d,0xf6,0x08,0x13,0x98,0x72,0xb3,0x87,0x27,0xfc,0x9d,0x19,0x21,0xef,0xbc,0x00, + 0x95,0xb7,0x1c,0x30,0x71,0x55,0xc0,0xf8,0x5c,0x1e,0x68,0xfc,0x34,0xdd,0x7b,0xc7,0xe2,0xf4,0xc0,0x5b, + 0x70,0x2e,0x0e,0x9b,0xd0,0x9a,0xef,0x84,0xf3,0xa9,0x5a,0x47,0x64,0x06,0x69,0x52,0x8d,0xdf,0x03,0x08, + 0x4b,0xb0,0x88,0xd0,0x33,0xaf,0x44,0x2f,0xb4,0x64,0x49,0xaf,0xa2,0x31,0x19,0xda,0x56,0xb8,0x4f,0x6e, + 0x50,0x96,0xfc,0x61,0x4e,0x93,0x52,0xf6,0x59,0x92,0x97,0x12,0x12,0x27,0xb6,0xe4,0x75,0xee,0x1b,0xff, + 0x1b,0x62,0x72,0x9a,0x37,0x6e,0xbc,0x27,0xd1,0xbb,0x7c,0xb8,0x40,0xdc,0x27,0xfe,0xad,0x09,0xb9,0x89, + 0x88,0x3b,0x5d,0x9e,0x9e,0xbe,0x21,0xf2,0x2d,0xf0,0x1f,0x1c,0x31,0x63,0x2b,0xd2,0xee,0x80,0x76,0x7d, + 0x0a,0xb6,0x19,0x86,0x57,0x46,0x7e,0x3d,0x71,0x05,0xd7,0x0c,0x1e,0x06,0xd2,0xac,0x91,0xab,0xa2,0xfe, + 0x2c,0x98,0xfb,0xd3,0x2e,0x25,0x31,0x71,0x0b,0xdc,0xf1,0x46,0x95,0x6f,0xa9,0x23,0xc8,0xca,0xa9,0xed, + 0xa5,0xb4,0x7c,0x78,0xf8,0xf0,0x68,0x46,0x6c,0x06,0x9d,0xfc,0x6e,0x96,0xd3,0xe1,0x93,0xa7,0x8f,0xde, + 0x3e,0x3a,0x1d,0x56,0x39,0x47,0x23,0x9b,0x13,0x92,0x63,0x7f,0xa1,0xc4,0x8d,0x32,0xb4,0x55,0xb4,0x3b, + 0x26,0x0e,0x81,0x77,0x11,0xcb,0x61,0xc9,0x0f,0x50,0x71,0xf0,0x20,0x57,0x21,0x98,0x37,0x1a,0x38,0x87, + 0x17,0xa6,0xbf,0x65,0x74,0xa1,0x0a,0xaa,0x68,0x7e,0x38,0x45,0x80,0x69,0x6b,0x62,0xb4,0x8e,0x9c,0xab, + 0xfe,0x07,0xc2,0xee,0x43,0xbb,0x72,0xcd,0x93,0x7f,0x91,0x9b,0x28,0x59,0xc6,0x38,0xcc,0x55,0x0c,0x38, + 0x3c,0xfd,0x70,0x2f,0x91,0x22,0x97,0x0c,0xbe,0x89,0x8e,0xbe,0x88,0x00,0x14,0x5a,0xb3,0x50,0x47,0x3d, + 0xd0,0xbe,0x48,0xaa,0x5d,0x78,0x5f,0xc1,0x8c,0x36,0xf3,0x2f,0xbb,0xf7,0x88,0xcd,0xd3,0xe8,0x7e,0x0b, + 0xad,0xad,0x75,0xa3,0xcd,0x99,0xdb,0xe6,0xe8,0xa1,0xb4,0x37,0xe3,0xf6,0x32,0x7f,0xd6,0xbd,0xeb,0x16, + 0x47,0x7e,0x08,0xdf,0xd8,0xf3,0xac,0xbf,0xc8,0x39,0xef,0x35,0x32,0x5e,0xe3,0x02,0xd9,0x44,0x2b,0xb4, + 0x05,0x90,0xff,0xcc,0xe6,0x9f,0x4a,0xfe,0x33,0x69,0xf7,0x3c,0x9a,0xf7,0x33,0xff,0xcc,0x29,0x47,0x13, + 0x78,0x36,0x3c,0x19,0xa9,0x73,0x66,0x4d,0xdd,0x3a,0xae,0x9a,0x11,0x50,0x12,0x5b,0xe9,0x4a,0x2a,0x4d, + 0x1c,0x59,0x62,0x74,0x63,0x1c,0xfa,0x25,0xa8,0x8e,0x39,0x90,0x10,0x1b,0x06,0x3b,0x2d,0x9c,0x4b,0x68, + 0x4b,0x42,0x5f,0x6e,0x97,0xf7,0xd8,0x42,0x5f,0xaa,0x9c,0xe7,0x12,0x54,0xd4,0x26,0xc4,0x94,0xd0,0x0f, + 0x32,0x3f,0x75,0x3b,0x9b,0x6b,0xb7,0x90,0xac,0x7f,0x26,0x56,0x7e,0xd6,0x2d,0x57,0xde,0x5b,0x61,0x1f, + 0xbe,0xa1,0x53,0xfc,0x82,0x1d,0xb4,0xc1,0x2a,0xb3,0x5e,0x18,0xbe,0xcc,0xe7,0x0a,0x96,0xc1,0x62,0x0c, + 0x15,0xdc,0xec,0x35,0x6f,0x4e,0x33,0x1a,0xcc,0x9c,0xbd,0xe0,0xe8,0xf1,0xd0,0xb6,0x2c,0x9d,0x9a,0x59, + 0x06,0x20,0x38,0x85,0x76,0x70,0x9e,0xfb,0x53,0xea,0x76,0x41,0xfb,0x58,0xad,0xf8,0x31,0x87,0x40,0x0b, + 0x29,0xd3,0xa0,0x3a,0xee,0x26,0xd1,0x98,0xde,0x37,0x9b,0xbd,0xbd,0x05,0x6f,0x4a,0x19,0x84,0x86,0xe2, + 0xb5,0x0e,0x5d,0x07,0x31,0x14,0xf5,0xf2,0x92,0xd0,0xc4,0xe5,0x83,0x8b,0xfe,0xa5,0x51,0xe2,0x9b,0x99, + 0x02,0xc3,0xcb,0x51,0xff,0x92,0x1a,0x3d,0x84,0x29,0xdc,0x0c,0x23,0x33,0x20,0x74,0xc7,0xf3,0xee,0x60, + 0xf6,0xf8,0x2a,0x6a,0x36,0xbc,0x37,0x3a,0x38,0xd0,0x0a,0x9b,0x78,0x51,0x3a,0xf9,0xbe,0x9b,0x7c,0xdf, + 0x26,0x7f,0xe9,0x26,0x7f,0xa9,0x4d,0x05,0xaf,0xb9,0x9a,0xcd,0x06,0x19,0xf1,0xf7,0x4b,0xfa,0xeb,0x79, + 0xea,0x2c,0xf2,0x58,0x48,0x43,0x23,0xf4,0xe0,0x9b,0x59,0x6a,0x38,0x19,0x0d,0xcc,0x2e,0x79,0x9a,0xc0, + 0x5f,0xee,0xf7,0xc9,0x15,0xfc,0x9d,0x2e,0x9f,0xe7,0xc5,0x37,0x94,0x2b,0x6c,0xff,0xda,0x5f,0xd3,0x88, + 0xb4,0x62,0x3a,0x2a,0x51,0x4c,0x68,0x87,0x84,0x12,0xae,0x11,0x89,0x0b,0x7e,0x07,0x06,0x2f,0xf2,0xf0, + 0x65,0xee,0xb8,0xb6,0x9b,0xab,0x16,0x1e,0xf9,0x59,0xce,0xee,0xe5,0x83,0xed,0x16,0x31,0xcf,0x63,0x81, + 0x0e,0xd6,0x69,0x25,0xbc,0xe0,0x1e,0x53,0xe1,0xb4,0x81,0x60,0x05,0x4c,0xd7,0x70,0x4d,0x1f,0x4d,0x81, + 0x7e,0x1a,0x27,0x04,0x51,0x53,0x6a,0xc2,0x97,0xe1,0xf4,0x06,0x0f,0x37,0x19,0x6c,0xb4,0xaf,0x18,0x81, + 0xe5,0x8a,0x7d,0xb9,0x10,0xde,0x6a,0x6c,0xd6,0x7d,0x63,0x42,0xfe,0xc1,0x3c,0xbc,0xd7,0x0f,0x00,0xba, + 0xb5,0x3d,0x14,0x3f,0x58,0x47,0xcf,0x6b,0xec,0x85,0xa9,0xc6,0x11,0x1f,0xe0,0xd6,0xd5,0x79,0xbe,0x70, + 0x9e,0xd7,0xce,0xb3,0xff,0x3e,0xfa,0xe0,0xa2,0x39,0x45,0x08,0xf4,0xc1,0x31,0xed,0x99,0x75,0x37,0x7a, + 0xaf,0x6a,0x95,0xef,0xd7,0x88,0x85,0x63,0xb5,0x06,0x96,0x5a,0x07,0xdb,0x35,0x8b,0x2b,0xf7,0xc1,0x52, + 0x44,0xb0,0x24,0xb7,0xe8,0x77,0xbf,0xc2,0xc0,0xfb,0xac,0x76,0x5a,0x46,0xec,0xfc,0x62,0x07,0x3f,0x97, + 0xc6,0x64,0x76,0x5b,0xf8,0x2c,0x5c,0x92,0xc0,0x21,0xb3,0x5c,0x39,0x17,0x14,0xb5,0x23,0xd3,0x11,0xc9, + 0xb8,0x67,0xe7,0xae,0x34,0x66,0xf7,0x18,0x55,0x6d,0x50,0x74,0x0b,0x70,0xb5,0xe6,0xfd,0x38,0x3c,0xea, + 0xaf,0x6a,0x07,0xdf,0x87,0x16,0xdd,0x2f,0x35,0x3e,0x73,0xce,0xd2,0x18,0xd6,0xb0,0x72,0x0d,0xc4,0x31, + 0x97,0x10,0x28,0xe4,0x3d,0x6e,0x3f,0xfb,0x4f,0xe1,0xe5,0x1d,0x2e,0xb4,0x69,0xee,0x10,0xf0,0xaa,0xce, + 0xd3,0x55,0xfa,0xcf,0x84,0x25,0x85,0x1e,0x2e,0x5d,0x72,0xd8,0x48,0x3d,0x11,0x10,0xf5,0x97,0xdc,0xa8, + 0x53,0x66,0x5a,0x8d,0x52,0x9e,0x22,0xf9,0xb1,0xbb,0xe3,0xdf,0xb9,0x92,0x65,0xe4,0x1d,0x00,0x02,0xc6, + 0x46,0xd2,0x83,0xbb,0x18,0x11,0x44,0x3a,0x37,0x3d,0xff,0x4e,0x78,0x00,0x84,0x48,0xd1,0xbf,0x4b,0xea, + 0x3b,0xc8,0xc1,0x3d,0xed,0x5a,0x9f,0x7d,0x2d,0x4e,0xa3,0xcb,0x40,0x34,0x9d,0xcd,0x95,0x35,0x92,0xa7, + 0xa2,0x99,0x3d,0xad,0x8b,0x64,0x69,0xb8,0x90,0xfc,0x1d,0xbd,0x8b,0xd7,0xb1,0x9b,0xb7,0x96,0x89,0x7a, + 0x8f,0xf0,0xb4,0x01,0x37,0x48,0x93,0x70,0xce,0x3e,0xe2,0x39,0x36,0xa5,0xb5,0xd0,0xa6,0xd9,0x98,0x3d, + 0x38,0xb7,0xdc,0xc1,0x8c,0xa6,0xe3,0x32,0x3a,0xcf,0x87,0xb3,0x91,0x0f,0x4d,0xdb,0xcd,0x86,0x9d,0xae, + 0x40,0x5d,0xd7,0x5e,0x43,0xae,0xa3,0x4b,0x5c,0xba,0x41,0xf4,0x87,0xaa,0xd7,0xa0,0xb2,0xd9,0xf8,0xe0, + 0xb2,0x62,0x49,0x8e,0x03,0xe6,0x49,0x2e,0x1d,0x9e,0x04,0x37,0x96,0xad,0x71,0x8d,0xad,0xac,0xcd,0x3a, + 0xc1,0x74,0x43,0x36,0xda,0x5b,0x57,0x07,0x77,0x27,0xc6,0x3b,0x4d,0xd2,0x2f,0xa8,0xc3,0xf0,0xdd,0xa3, + 0x91,0x9b,0x53,0x1b,0x25,0x4a,0x98,0x12,0xc1,0x75,0x0d,0x25,0xa0,0x46,0x46,0x89,0x4e,0xba,0x35,0x7e, + 0x36,0x69,0x1c,0x6c,0x15,0xc5,0x32,0xbf,0x88,0xc3,0x08,0x5f,0x06,0xe1,0x65,0x75,0x57,0x4a,0x5f,0xbf, + 0x4b,0x28,0xad,0x25,0x9e,0xac,0x73,0xa7,0xab,0x8f,0xee,0x12,0x97,0xaa,0x09,0x2e,0x21,0x4b,0xb9,0x84, + 0xd4,0xaa,0x2f,0x61,0xb9,0xd5,0xa6,0xd7,0x2d,0x57,0xbc,0xa2,0xe4,0xac,0xaf,0x27,0x83,0x9a,0xa6,0x53, + 0x75,0xe1,0x6b,0xb4,0x9d,0xf4,0xbd,0x25,0xdc,0xec,0xa2,0x53,0xb6,0xba,0x0b,0x59,0x2a,0x70,0xf8,0x5c, + 0xe1,0x05,0x33,0xfb,0xbc,0x16,0xdf,0x26,0xbc,0xc0,0x34,0x93,0x03,0xb3,0xfa,0x9b,0x4d,0x41,0x3d,0x65, + 0x68,0x91,0x0a,0x69,0xf5,0xf9,0x89,0x8a,0xfe,0x8a,0xcb,0x06,0xee,0xbc,0xf9,0xa8,0xc7,0x70,0xb9,0x0d, + 0xc2,0x82,0x9a,0xa1,0x1d,0xb9,0xe7,0x40,0x19,0x4c,0x86,0x76,0xaa,0x59,0x50,0xbe,0xc9,0x2d,0x5b,0xd3, + 0xae,0x3e,0xc7,0xd7,0x33,0x66,0xe8,0x25,0x87,0xd6,0x03,0x2c,0x1b,0x39,0x2f,0x25,0xf4,0x69,0x61,0xf2, + 0x05,0xec,0x7f,0xfd,0xca,0xd3,0x0d,0x91,0xf0,0x74,0xb8,0x72,0xff,0x7f,0x05,0x0d,0xce,0x7d,0x5d,0xd4, + 0xfb,0xba,0xd8,0x56,0xd2,0xf8,0xcb,0x1e,0xac,0x14,0xd8,0xeb,0x17,0x87,0x12,0x97,0x95,0x3e,0xd1,0x47, + 0xb2,0x7c,0x15,0x09,0xe2,0x66,0x73,0xc7,0xd3,0x92,0x06,0xef,0x4e,0x9f,0x9a,0xac,0x85,0x79,0xab,0xbf, + 0xb3,0x29,0xc1,0xf0,0x7a,0x14,0x5d,0x8a,0xb5,0x75,0xd5,0x3f,0x41,0x14,0x97,0xbc,0x4b,0x74,0x58,0xb6, + 0xfe,0x6a,0x90,0x01,0xae,0x7c,0xbe,0x27,0x32,0x19,0x20,0xa1,0xcb,0x5a,0x74,0xea,0xf3,0x61,0x6e,0x99, + 0xba,0x91,0x4a,0x1c,0xbf,0x58,0xc3,0x1d,0x67,0x58,0x94,0xa3,0x4f,0x3b,0xf1,0x5e,0xc4,0x66,0x3e,0x82, + 0x2f,0x3a,0x9e,0xbc,0xb1,0x1f,0x85,0xbd,0x31,0xb4,0xac,0xab,0xbe,0x61,0x3a,0x95,0xad,0x3f,0x3a,0x21, + 0xaa,0xa0,0xde,0x5e,0x26,0x9e,0xb6,0x71,0x12,0xd5,0xee,0x01,0x4c,0x44,0xb1,0xa7,0x99,0x7b,0xb9,0x24, + 0xae,0x4c,0x80,0xb7,0xd2,0x0a,0x25,0x2d,0x2a,0x3f,0x1c,0xb0,0xe9,0x0e,0xac,0xb9,0x9b,0xeb,0xaf,0x88, + 0x8e,0xbf,0x31,0x82,0x3d,0xca,0x25,0xcf,0xc0,0xab,0xd8,0x23,0xa2,0x60,0xd3,0xc0,0x98,0xa9,0x30,0xd2, + 0x64,0x37,0x05,0xb0,0xa5,0x2e,0xc3,0x3f,0x70,0x0c,0x84,0x6c,0x9d,0x29,0x7d,0x1e,0xd0,0x78,0x21,0xee, + 0x43,0xdf,0x96,0x3c,0xfa,0x3d,0x76,0xd7,0xe7,0x37,0xc3,0x99,0xca,0xc6,0xba,0xce,0x07,0x65,0xee,0x5f, + 0xe7,0x41,0xf8,0xaf,0x94,0xb9,0xf8,0x8a,0x89,0xb0,0xfe,0xde,0x94,0xc3,0x9a,0xd2,0x9f,0x31,0xbc,0xf6, + 0xc6,0xcb,0xf2,0x05,0xe8,0x02,0x60,0x23,0x8e,0xdd,0x93,0x8c,0x71,0x1e,0x05,0x37,0xb4,0xa6,0x85,0x90, + 0x0c,0xc1,0x43,0x5c,0x43,0x69,0x42,0x3a,0xb7,0xb4,0xc2,0x18,0x86,0xb9,0x4a,0x53,0x50,0x0d,0xe4,0x94, + 0x1b,0xf5,0xc4,0x55,0xf4,0x2b,0x1c,0xa9,0x54,0x1e,0x90,0xfb,0xba,0x80,0x5c,0xd4,0xac,0xe4,0x82,0x4a, + 0xd7,0x7d,0xe3,0xfd,0xc7,0xb9,0xa8,0x09,0x7a,0x50,0x98,0xa0,0x0e,0xa6,0x5d,0x87,0x2a,0x37,0x07,0xd4, + 0xf8,0x41,0x65,0x60,0xd1,0xd2,0xad,0x8f,0x76,0x8a,0x77,0x15,0xd4,0xf9,0x60,0x86,0x14,0x6b,0x71,0x17, + 0x94,0x12,0xcb,0xfc,0x7d,0x92,0x2d,0x43,0xd8,0x39,0x61,0xd2,0x06,0x99,0xa1,0x0c,0x61,0xf8,0x79,0x57, + 0x39,0xa5,0x98,0x42,0xd1,0x2f,0xa6,0x18,0x14,0xb5,0xf1,0x20,0xf7,0x5d,0x84,0x15,0x43,0x81,0xd6,0xb2, + 0x5a,0x4f,0x03,0xc0,0xd9,0xd0,0x81,0x71,0x06,0x66,0x58,0xb4,0x39,0x8d,0xdd,0xb3,0x95,0xe8,0x28,0xc9, + 0x6c,0x03,0xbe,0xe3,0x19,0xbe,0xb9,0x31,0xeb,0x85,0x95,0x35,0x6d,0x0b,0xf7,0x8e,0xd9,0x28,0x42,0x15, + 0xf0,0xaa,0x26,0xab,0x80,0x88,0xc5,0x5a,0xc0,0x04,0x49,0xf1,0x65,0xfa,0x47,0xc2,0xf2,0x1d,0xd6,0xe2, + 0x86,0x6b,0x1d,0xff,0x49,0x1e,0xfd,0x9a,0x13,0xe5,0xe0,0x5e,0x45,0x81,0x5c,0x78,0x93,0x03,0x2a,0x9a, + 0x72,0x5b,0x7b,0x88,0xc0,0x70,0x47,0xbc,0xc7,0xe8,0x92,0xd1,0x5d,0x10,0x06,0xe3,0x28,0x09,0xf4,0x2e, + 0xf6,0xb1,0xa5,0xc7,0xfc,0x42,0x3c,0x8e,0xbf,0x37,0xd6,0x47,0xee,0x18,0xe6,0x08,0x5a,0x49,0x94,0xda, + 0x82,0x7a,0x0e,0xfe,0x4e,0x11,0xe4,0x6b,0x9d,0xf9,0x6c,0x41,0x05,0xae,0xe8,0x4d,0x6e,0x9f,0x77,0x0d, + 0x3e,0xad,0xb9,0x27,0xab,0x40,0x99,0x48,0x10,0xda,0x0f,0xb4,0x75,0x16,0xc4,0xc5,0x6b,0xe6,0x03,0x68, + 0xa6,0xb2,0x06,0xb5,0x5e,0x62,0x08,0x96,0xa8,0x45,0x6d,0x49,0x86,0xa0,0x81,0x94,0xd0,0x43,0x68,0x98, + 0x6b,0x9a,0x9f,0x00,0xd0,0x74,0x62,0xf1,0x93,0x58,0x2a,0x50,0xef,0x8c,0x55,0xa2,0x07,0xfc,0xeb,0x19, + 0x33,0x45,0x31,0xfe,0xc2,0x8b,0xc1,0x26,0x43,0x2f,0xcd,0x40,0x4a,0x1e,0xda,0x6e,0x1a,0x4b,0x05,0x57, + 0xf2,0xa9,0x60,0xd7,0xdd,0x74,0x14,0x68,0xc2,0x50,0x8b,0xd4,0xce,0xc9,0x00,0xfa,0x0f,0x8e,0x56,0x54, + 0xaa,0xa7,0x9f,0xb0,0xbb,0x5d,0x89,0xbd,0x13,0xa6,0xce,0x89,0x90,0x9e,0x3e,0xc9,0x69,0x9e,0xf9,0x86, + 0xa0,0x0a,0x34,0x4a,0x28,0x13,0x91,0x45,0xdd,0x8f,0xa6,0xbd,0xfc,0x41,0x5c,0xb9,0xd2,0x5a,0x36,0x32, + 0xc1,0x75,0x12,0x1f,0x4e,0xd4,0x32,0x2c,0xe1,0x6e,0x69,0x99,0x41,0x79,0xbc,0x85,0x90,0xc6,0x05,0x16, + 0xed,0xc0,0xa0,0x31,0x8f,0xb6,0x28,0xac,0x28,0x72,0x71,0xf7,0x67,0xd3,0x5e,0x64,0x44,0x7c,0x47,0x99, + 0xe6,0xc0,0x28,0x41,0x38,0x8c,0xda,0x14,0x51,0x76,0x01,0xef,0x46,0xfa,0x66,0x73,0xaf,0x96,0xcc,0x7e, + 0xda,0xd9,0x47,0x84,0xc6,0x2d,0xe0,0xbd,0x6c,0x4b,0x70,0x40,0xcc,0xb4,0x8b,0x03,0xd0,0x92,0x76,0xa2, + 0xaa,0x3a,0xec,0x14,0x12,0x45,0xa7,0xd2,0x96,0xe5,0x2a,0x1e,0xa4,0x4c,0xe5,0x41,0x24,0xec,0xf8,0x76, + 0x54,0x19,0x98,0xfc,0x84,0x61,0xaf,0xff,0xdf,0x5b,0x98,0xd2,0xbf,0x65,0x4d,0x38,0x6e,0x81,0x9f,0x41, + 0x2d,0x5c,0x23,0x64,0x42,0x94,0x99,0x9f,0x56,0x21,0xcb,0x6f,0xe8,0x00,0x08,0xad,0xd1,0x65,0x6e,0x02, + 0xd4,0x36,0x2e,0x51,0xe8,0x43,0x23,0x65,0x5b,0x0f,0xe9,0x67,0xd7,0x54,0x82,0x25,0x68,0x86,0xa4,0x6e, + 0x84,0x59,0x42,0x61,0x90,0x4d,0x29,0xc5,0xf7,0x4f,0x21,0xf7,0x52,0xf5,0xd3,0xcc,0x4f,0x06,0x79,0x98, + 0x06,0xc6,0xeb,0xe9,0x16,0x95,0x65,0x46,0x92,0xce,0x5e,0x7b,0xf4,0x73,0x54,0x5d,0x42,0xf1,0x2d,0xb9, + 0xb9,0x3e,0xb7,0x99,0x21,0x5e,0xab,0xd9,0x29,0xc3,0x41,0xa4,0x7b,0x3b,0xd5,0xe8,0x9d,0xf3,0x91,0x30, + 0x32,0x1b,0x8c,0xba,0xe5,0x1d,0x11,0x4d,0x8c,0x5b,0xca,0x2c,0xf0,0x74,0x43,0xd8,0xe4,0x74,0x70,0x57, + 0x31,0xdb,0x4c,0x0a,0x1d,0x7c,0x31,0xdc,0xdf,0xc7,0x23,0xc1,0xe4,0xcb,0xe8,0x6d,0xce,0x11,0xce,0x8d, + 0xe4,0x7e,0xd9,0x4b,0x8a,0x22,0x27,0xce,0x20,0xa5,0x7d,0x53,0xa6,0x8b,0x65,0x94,0xab,0xa5,0xc6,0x3f, + 0x37,0xd0,0xf1,0x48,0xe7,0x49,0x98,0x28,0xfd,0xf4,0x36,0x7f,0xae,0xa7,0x6a,0x09,0xc1,0x07,0x55,0xd4, + 0x6a,0xe5,0x5a,0xd3,0x88,0x49,0x31,0xa3,0x62,0xc3,0x8c,0x20,0x85,0x98,0x70,0x7d,0x2f,0xd5,0x71,0x2c, + 0x10,0xea,0x57,0x11,0x03,0x6d,0x72,0xe4,0xa6,0x05,0x5d,0x3a,0x54,0x78,0xd1,0xe0,0x14,0xcd,0x68,0x2f, + 0xc2,0xa7,0x9e,0x76,0xaf,0xc7,0xab,0xa7,0x40,0x3e,0xd2,0xb1,0x4d,0xeb,0x6b,0x47,0x68,0x22,0x24,0x23, + 0x92,0xa2,0x06,0xae,0x71,0x85,0x26,0xaa,0x6b,0xba,0xb8,0x99,0x52,0xd7,0xc3,0xab,0x24,0x38,0x53,0xb4, + 0x35,0x86,0x8e,0x02,0xda,0x8f,0x96,0x74,0xba,0x19,0xeb,0x9d,0x6d,0xe0,0x7f,0x97,0x07,0xbd,0xdd,0xf9, + 0x22,0xc8,0x8b,0xa3,0xbd,0x3d,0x78,0xaa,0x5f,0x64,0x3e,0xee,0x9b,0x72,0xf7,0x9d,0xb8,0x89,0x38,0x6e, + 0xb5,0xbb,0xf9,0xd1,0x35,0x0a,0xe3,0x10,0xb6,0x56,0xd9,0x84,0x3a,0xb0,0x8c,0xa3,0x16,0xe3,0x29,0x93, + 0xfd,0xd3,0x76,0x55,0x40,0x75,0x6c,0x54,0xc5,0xcd,0x40,0x71,0xb4,0x66,0xde,0x49,0x64,0xa4,0x9b,0x64, + 0x1e,0x4c,0x90,0xe5,0xdd,0x98,0xa1,0xb5,0x68,0xe2,0xec,0xb2,0xc0,0x44,0x9c,0xb6,0xea,0xbb,0x3d,0x73, + 0xdc,0x88,0x3c,0x94,0x95,0x2d,0x79,0xb9,0xab,0xc0,0x82,0x45,0xe0,0xfd,0x4d,0x48,0x53,0x1b,0x15,0x81, + 0xa9,0x83,0x38,0x86,0x98,0xc0,0xba,0xda,0xda,0x73,0x3c,0x73,0xb9,0x5d,0x29,0x98,0x6e,0x34,0x93,0x24, + 0xfc,0x28,0x97,0xdf,0xb1,0x4a,0xcd,0x57,0x65,0xcd,0x23,0x5c,0xc7,0x49,0xfa,0xb8,0xa1,0x9e,0xe8,0x53, + 0xdb,0x75,0x69,0xb8,0x8b,0xae,0xec,0x33,0x99,0x8d,0x77,0xd7,0x0c,0xd3,0x2c,0x23,0xd7,0x87,0x67,0x01, + 0x37,0x79,0x37,0xad,0xc2,0xa2,0x34,0xfe,0xa8,0x60,0x28,0x47,0x9c,0x2a,0xb3,0x3f,0xc2,0xcc,0xd9,0x2c, + 0x86,0x5e,0x43,0xaa,0x79,0xdc,0xea,0x20,0xee,0xd0,0x40,0xd3,0xdb,0x00,0x3a,0x68,0x0d,0x98,0xef,0x9b, + 0xf5,0x8a,0x72,0x36,0x04,0x6d,0x6c,0x91,0xca,0x1c,0x3f,0xd6,0x8e,0x7a,0xe0,0x64,0x83,0xaf,0x41,0xc5, + 0x9e,0x92,0xe1,0x9e,0xc6,0x44,0x6f,0xdb,0xa0,0x61,0x7e,0xe0,0x49,0x7c,0xb0,0x6a,0x9d,0xe5,0x62,0x1a, + 0xbc,0xc5,0x2a,0x93,0xe8,0x8d,0x13,0x42,0x5c,0xfa,0xa3,0xe0,0xb6,0x81,0xfc,0xf4,0x74,0xd6,0x28,0xf1, + 0x5b,0x03,0xc8,0x4a,0x69,0x88,0x86,0xf1,0xdb,0x8b,0x2f,0x27,0x03,0x79,0x24,0x6a,0x30,0x2c,0x7b,0x3f, + 0xaf,0x92,0x17,0x27,0xff,0xcc,0x50,0x7a,0xdb,0x08,0x30,0x4d,0xdd,0x5a,0x11,0x80,0x00,0x04,0xa9,0x6b, + 0x7d,0x87,0x34,0x90,0x3e,0xb7,0xf4,0x0c,0x97,0xee,0x39,0x5b,0x27,0xe9,0x27,0xc6,0x63,0xbe,0x37,0x5c, + 0xaf,0x92,0xc3,0x94,0xda,0x19,0x75,0xbc,0x2e,0xfc,0x4c,0x1e,0x1c,0xd4,0x32,0xf0,0x09,0x3e,0x7e,0xef, + 0x3a,0xd2,0x4e,0x1a,0x01,0xef,0x84,0xc3,0xda,0x99,0xa8,0xb2,0x2a,0xe1,0x22,0xa2,0xb5,0x5e,0x03,0xec, + 0xdb,0xcb,0xda,0x9d,0x6a,0x23,0x8a,0x1e,0xc2,0xe8,0xd9,0xd8,0x11,0x4e,0x65,0xa9,0x1b,0xfb,0x5b,0x44, + 0x7b,0xf6,0x76,0xdf,0xd2,0x7a,0x10,0x26,0x40,0xb0,0x57,0x7d,0x02,0x95,0xa7,0x77,0x33,0xf4,0xf9,0x52, + 0xfe,0x31,0x7b,0x81,0x65,0x0e,0x86,0x85,0x14,0x9b,0x73,0x22,0x62,0xeb,0x0a,0xac,0x9c,0x38,0x48,0xd9, + 0xa8,0x30,0xdc,0xd9,0xfe,0x25,0xc7,0x90,0xc7,0x75,0x0b,0xb2,0x85,0x77,0x9d,0x0a,0x59,0xb0,0xf7,0xd1, + 0xec,0xca,0x47,0x9b,0x27,0x6d,0x6d,0x52,0xa2,0xbe,0xb5,0xe1,0x47,0x75,0x43,0x04,0x4a,0x4c,0xe7,0x5b, + 0x21,0x96,0x48,0xb4,0xdf,0x1c,0x6f,0x9f,0x79,0x65,0xa7,0x8d,0x15,0xd1,0x8d,0x5a,0x18,0x28,0x6b,0xba, + 0x59,0x56,0xdf,0x80,0x3d,0x37,0x69,0x6d,0x86,0x8d,0x63,0x03,0xc9,0x67,0xa5,0x11,0x06,0xd0,0x2c,0x23, + 0x08,0x61,0x2f,0x3e,0xe7,0x2b,0xc3,0x7c,0x98,0x44,0x77,0x59,0xa9,0x93,0xba,0x96,0xd1,0xb4,0x3c,0x3c, + 0x19,0x9c,0x84,0xc7,0xe1,0x49,0x98,0x0d,0x38,0xdf,0x65,0x0a,0xf7,0xbf,0x77,0x83,0xf0,0x78,0x34,0xc8, + 0x59,0x9a,0xc3,0x3c,0x54,0xe8,0x2c,0x64,0xec,0x2c,0x39,0x33,0x9d,0x1c,0xbf,0xbb,0xc9,0x7f,0xd6,0x7c, + 0xb8,0x2f,0x5d,0xe1,0x91,0xb3,0xee,0xf6,0x50,0x17,0x72,0x89,0xf8,0x93,0x07,0x3b,0x30,0x91,0x1a,0x5a, + 0x3c,0x97,0xd8,0x3a,0x7c,0x69,0xa8,0x43,0x8f,0xe4,0xc6,0xcd,0x44,0x64,0x03,0x64,0xe8,0xfb,0x04,0x34, + 0xc6,0x94,0x4b,0x1e,0x8c,0x09,0xbd,0xac,0xa2,0x58,0xcd,0x04,0x82,0xe1,0x74,0x91,0x5d,0x89,0xe6,0x20, + 0x55,0x06,0x4c,0xb5,0x2c,0x99,0x78,0x51,0x9c,0x12,0x72,0x0a,0x3f,0x6a,0x3a,0x5e,0xad,0xac,0x05,0x43, + 0x3d,0xde,0x00,0x13,0x7f,0x73,0xf6,0x96,0x0d,0x8f,0xcd,0xda,0xb7,0x9b,0xcd,0xb2,0xaa,0x7c,0xf5,0x72, + 0xff,0x55,0xdc,0x9f,0x73,0x6c,0x07,0x76,0x07,0x54,0xaa,0xb8,0xf2,0x44,0xaf,0xf2,0xde,0x99,0x40,0x08, + 0x3c,0xa0,0xf4,0xf6,0xb1,0xb3,0x7b,0x92,0x50,0xf9,0x65,0xee,0xc0,0x90,0xb7,0x10,0x9f,0xb0,0x58,0xc3, + 0xca,0x4e,0x5c,0xb3,0x46,0xbc,0xc2,0xf0,0x22,0x29,0x1e,0x7c,0x52,0x22,0xb9,0x73,0x93,0x09,0x02,0x3f, + 0x9a,0x2e,0x4d,0xed,0x64,0x41,0xe5,0x53,0x87,0x72,0x97,0xc5,0xb5,0x9e,0xbe,0x66,0xe4,0x23,0x22,0x72, + 0xea,0x49,0x52,0x37,0xd1,0x7b,0x4b,0x0b,0x95,0x46,0x1b,0x21,0xb2,0x17,0xe6,0x10,0x04,0x08,0xeb,0x68, + 0x71,0x9f,0x1b,0x3c,0x18,0xac,0x50,0xc1,0xc1,0x94,0xa5,0xb2,0xcd,0x66,0x59,0xb1,0xa8,0xa2,0x11,0xe1, + 0xf2,0xa1,0xd4,0x8b,0x55,0x2d,0xa1,0xa2,0x29,0xc7,0x55,0xdb,0x2b,0xdb,0xf6,0x78,0xa7,0x6d,0xa7,0xe5, + 0x8c,0x80,0xda,0x38,0x71,0xdb,0xb2,0x7a,0x53,0xa5,0xe9,0x46,0x5c,0x30,0xf1,0x0f,0xda,0xc8,0x23,0xb3, + 0x5e,0xc5,0xc0,0x7d,0x57,0x8a,0x0f,0x55,0x58,0x08,0x87,0xf6,0xb7,0xae,0xe7,0x2c,0xa4,0x0c,0xf6,0x88, + 0x64,0xe0,0x75,0x84,0x68,0xda,0xf7,0xb2,0xbc,0xa4,0x33,0x28,0x5d,0x96,0x1d,0x7d,0x40,0x74,0x52,0xed, + 0x9f,0x07,0x50,0x4a,0x69,0xf6,0xdd,0x83,0x56,0x31,0xfb,0x86,0xae,0x17,0xaa,0x17,0xc0,0x89,0xdf,0xd1, + 0x8d,0x4a,0x09,0x37,0x24,0x44,0x52,0x03,0x3b,0x31,0x66,0xa1,0xd5,0x91,0x91,0xcd,0xa3,0x1d,0xc4,0x46, + 0xf0,0xb8,0x0a,0x06,0x71,0x94,0x87,0xe2,0x0c,0x14,0x5a,0xec,0x3d,0x0e,0xbc,0xb8,0x04,0x2a,0x61,0x40, + 0x24,0x52,0x37,0xef,0xd1,0xf6,0xa4,0x73,0xfd,0x06,0x9f,0xc2,0x58,0x69,0xa4,0x06,0x73,0xd1,0xd9,0x12, + 0xa6,0x45,0x6a,0x1a,0xcd,0xa5,0xdc,0x82,0x1e,0x74,0xb9,0x09,0x3d,0x22,0x03,0xfb,0xad,0xda,0x6c,0x16, + 0x9b,0xcd,0x04,0xa4,0xd8,0x54,0xfa,0xc7,0x17,0x2e,0x6a,0xa6,0xae,0x21,0x57,0xd4,0x93,0x08,0x9f,0x45, + 0xa5,0x96,0x7e,0x9a,0x28,0x76,0xfe,0x2c,0xba,0x96,0x09,0x0d,0x7a,0x26,0x80,0xfb,0x4c,0x0d,0xa7,0xd6, + 0xa3,0xa4,0xbf,0x8e,0x26,0xea,0x12,0x27,0x8b,0x7f,0x11,0xc1,0x47,0xd2,0xa5,0xf0,0x55,0x17,0x81,0x5a, + 0xd3,0x88,0xea,0x60,0xbc,0x66,0xf7,0xef,0xeb,0xa0,0xca,0xb6,0x0e,0xa0,0xa4,0x00,0x02,0xca,0xec,0xc4, + 0xeb,0xda,0x3e,0xd4,0xc4,0x9d,0xef,0x99,0xc0,0xb9,0x9d,0xff,0xc2,0x40,0xff,0x0b,0xab,0xb1,0x3e,0x2c, + 0x3b,0x55,0x10,0x6b,0x2d,0xb5,0xd6,0xeb,0xb7,0x5c,0x2d,0x40,0x4e,0x74,0xc4,0x76,0x46,0x6c,0xc9,0x6a, + 0x81,0x36,0x78,0x43,0x57,0x27,0xa6,0xb0,0x63,0x78,0xd2,0x7b,0xc2,0xa3,0xf5,0xf1,0xac,0x1a,0x21,0xa8, + 0x54,0xa8,0x2a,0x32,0xa5,0xda,0x17,0xcd,0x3a,0x00,0x38,0x94,0xf8,0x3a,0x5f,0x9d,0x84,0xf2,0x7b,0x4f, + 0x7e,0xef,0xff,0x5d,0x7e,0xef,0xdd,0xd7,0xbf,0x5f,0xe9,0xf4,0x7f,0x86,0x36,0x30,0x98,0x14,0xf8,0x52, + 0x67,0xd0,0x05,0xee,0x7f,0x19,0x1a,0xfd,0xe0,0x09,0x74,0xd5,0x25,0xd7,0xbd,0xbb,0xba,0x7a,0xf9,0x39, + 0x39,0xd6,0xbf,0xba,0xb5,0x93,0xbf,0xeb,0x84,0xbf,0x7f,0x79,0xf7,0x1f,0x3a,0xcf,0x3f,0xef,0x9a,0x42, + 0xf4,0x74,0xcf,0x54,0x7a,0xb5,0xf4,0xec,0x05,0xdc,0xc3,0xe8,0xab,0x7f,0x10,0xab,0xf1,0x20,0x3a,0xb9, + 0x7b,0x77,0xb3,0xa1,0xd7,0xbf,0x7f,0xc9,0xaf,0x5f,0x1d,0x0f,0x74,0xe3,0x21,0x25,0xde,0xff,0x8a,0x13, + 0xbf,0xfc,0xc7,0xc0,0x13,0x4b,0x06,0x2f,0xf4,0xf8,0xe2,0xa5,0x25,0x50,0x88,0xf6,0x95,0x17,0x19,0x01, + 0xa0,0x09,0x6e,0xef,0x1d,0x7b,0x7b,0x4e,0x68,0xe1,0x63,0xc8,0xbb,0xd2,0xe5,0xf7,0xf1,0xf7,0x12,0x32, + 0x0d,0x12,0x6b,0xf5,0xbd,0xbe,0x4f,0x0c,0x06,0x84,0x63,0x89,0x99,0x84,0xd9,0x89,0x3b,0xe3,0x81,0x96, + 0xa8,0xd8,0xa4,0xc4,0xca,0x37,0xa9,0xba,0x7b,0xf7,0xf7,0x58,0x99,0xec,0xde,0x57,0xf8,0x1d,0x24,0xb8, + 0x4f,0x15,0x15,0x1e,0x05,0xd7,0xe2,0xde,0x17,0x5e,0x37,0xd5,0x5e,0x71,0xd5,0xda,0xa0,0xb4,0x8a,0x6d, + 0x32,0xfe,0x2f,0x08,0x8a,0xbd,0xa1,0xd0,0x65,0x1d,0xed,0xaa,0xce,0x53,0xb3,0xdd,0xfc,0x17,0xf1,0xf2, + 0xf5,0x55,0x66,0x22,0xdd,0xd1,0x0e,0x6a,0xa3,0x20,0x5f,0x64,0xe5,0xdc,0x89,0xd6,0x85,0xd7,0xde,0x53, + 0x84,0x96,0x49,0x2f,0x13,0xa2,0xee,0x2f,0xe3,0x12,0xca,0x0b,0x9f,0x59,0x50,0xdc,0xe8,0xe9,0x62,0xe7, + 0xd1,0x8d,0x38,0xb2,0x78,0xd2,0x88,0x12,0x59,0xf3,0x2b,0xe4,0x72,0x68,0x65,0x0f,0x1b,0x2a,0x92,0x1f, + 0xbe,0xb2,0x3b,0x3b,0xc3,0xe3,0xe0,0x66,0x1b,0x9a,0x90,0x40,0xbc,0xc3,0x6f,0x6c,0x66,0x8b,0xf5,0xa8, + 0x47,0xaf,0x74,0xba,0x14,0x0a,0xcc,0xa9,0x85,0x48,0x87,0x7d,0x93,0xda,0xea,0x78,0x26,0xa1,0x13,0x3e, + 0x51,0x0e,0xb1,0x52,0xb2,0xda,0xbf,0x7b,0xa6,0x24,0x2d,0x21,0x10,0x25,0xa6,0x28,0x2a,0x65,0xe7,0xbd, + 0x2f,0x19,0x0f,0xbc,0x4a,0x96,0xcb,0x58,0xfc,0xd7,0xc8,0x11,0xa6,0x4f,0x11,0x6a,0x46,0xbc,0x3e,0x9d, + 0x39,0x63,0x54,0x55,0xca,0x2f,0xc8,0x95,0x68,0xaf,0x5c,0xd2,0xd5,0x2b,0x24,0xe1,0x2c,0x80,0x4e,0xb1, + 0x1f,0x38,0x99,0x59,0x29,0x61,0x5c,0xa4,0xe7,0x09,0x3e,0x3d,0x81,0x51,0x0e,0x87,0xff,0x61,0xae,0x4a, + 0xb2,0x99,0x1c,0xe2,0x89,0x6d,0x5b,0x05,0xc4,0xd0,0x53,0x28,0x73,0xc5,0x2b,0x50,0xe4,0x79,0x69,0xa2, + 0xcc,0xe3,0x59,0xf0,0xda,0x6e,0x4a,0x6d,0xae,0xf9,0xa6,0x92,0xfb,0x82,0x0c,0x51,0x33,0xaf,0x5e,0x29, + 0x4c,0xda,0x25,0x47,0xf5,0xdd,0xc9,0x51,0x7d,0xb2,0x79,0x89,0xfe,0x3a,0x27,0xae,0x44,0x26,0xb2,0xa5, + 0x40,0xed,0xbb,0x29,0xb5,0x24,0x2e,0x2f,0x13,0x8d,0xd2,0x39,0x9b,0x1e,0xfc,0xc2,0x0a,0xde,0xcd,0xc2, + 0xad,0xd9,0xd8,0xab,0x6e,0x1d,0x5a,0x8a,0x4f,0x42,0x4b,0x01,0x7a,0x70,0x17,0x5a,0x2c,0x28,0xf0,0xfa, + 0x2f,0xa3,0xa2,0x7d,0xe1,0x71,0xef,0xfd,0xca,0x2c,0xc2,0xff,0xda,0xfa,0x2b,0xe7,0x04,0xd1,0xd3,0x76, + 0x9d,0xf1,0xd5,0x9c,0x7d,0xe1,0x2b,0x6a,0x71,0xe0,0xc7,0xf3,0x5b,0xeb,0xd0,0x7e,0xd5,0x21,0x99,0x7d, + 0x3f,0xb0,0x5e,0xdd,0xff,0x3a,0x0c,0x0d,0x7c,0x77,0x47,0xec,0x40,0xd0,0x5f,0x1f,0x2e,0x18,0x6d,0xb9, + 0xe0,0xc0,0xc5,0xa8,0x8e,0x86,0x60,0x7a,0x54,0x7b,0xdf,0x81,0x69,0x77,0x8b,0xba,0x19,0xff,0x5b,0xdd, + 0x31,0x7e,0xdb,0x9e,0x36,0x63,0xca,0x1a,0xc7,0x6d,0xd2,0x35,0x7f,0xa7,0x70,0xad,0x47,0xbd,0x55,0xf6, + 0xb1,0x96,0xb5,0x28,0x73,0xa7,0x8e,0x16,0x28,0xab,0x55,0xab,0xd3,0xfc,0x46,0x0d,0xce,0x27,0x53,0x43, + 0x0d,0x30,0xda,0xc1,0xa5,0x59,0x4b,0xed,0xa3,0xdb,0x13,0x89,0xf1,0xb6,0xdd,0xaa,0x2b,0xe3,0x62,0x15, + 0xa9,0x95,0xdb,0xc5,0x78,0x0e,0xfb,0x6c,0x71,0x84,0xc8,0x2a,0x69,0x37,0xae,0xdb,0x59,0x7d,0x83,0x1f, + 0x8a,0x8b,0xc3,0x2d,0x87,0x0f,0xaf,0xe7,0x30,0x64,0x18,0xae,0xfc,0x0c,0x21,0xea,0x66,0xd8,0x2a,0xbe, + 0xc1,0x5e,0xea,0xc4,0x21,0xd3,0x7d,0xd6,0xf3,0xeb,0x76,0xc7,0xf3,0x62,0x8d,0x9a,0xe7,0x6e,0x41,0xd8, + 0x20,0xb1,0x2e,0x10,0xf2,0xb5,0xb2,0x21,0xc3,0x77,0x07,0x70,0x24,0xf8,0x85,0x9f,0x8b,0x60,0xfe,0x93, + 0x3e,0x5e,0x75,0x0c,0xb7,0x48,0x7e,0x6c,0xac,0x5c,0x22,0xe1,0xad,0x9b,0xcd,0xbc,0x2f,0x02,0xf4,0x42, + 0x48,0x69,0x84,0xde,0xd0,0xa4,0xf4,0x0a,0x22,0xe7,0x39,0x3e,0xf0,0xd8,0xd8,0xcc,0x73,0xda,0xe0,0xd0, + 0xe6,0xc1,0x60,0x6e,0x22,0xf4,0x1e,0x87,0xee,0x19,0x37,0x0f,0x6c,0x3a,0xeb,0x54,0x37,0xd8,0x24,0xd7, + 0x7f,0x1e,0xb6,0x51,0x15,0x6d,0xbc,0xd2,0xfe,0x71,0x22,0x90,0x73,0x17,0x0c,0xbf,0x53,0x05,0x29,0x3f, + 0x38,0xf0,0xf8,0x22,0x70,0xbb,0xad,0x02,0x25,0x1c,0x1c,0xe4,0xb6,0x65,0xe2,0x43,0x17,0x54,0xbb,0xef, + 0xbd,0x98,0x76,0x64,0x14,0x1d,0xcc,0x76,0x27,0x5d,0x76,0xe0,0x1b,0xa6,0x43,0x67,0x40,0x87,0xe7,0xba, + 0xa3,0x63,0xdd,0x2f,0x3b,0x30,0x68,0xe8,0x5c,0xc4,0xeb,0x44,0x0a,0x48,0x7e,0xca,0xdc,0x23,0xc6,0xa7, + 0x65,0xec,0xbb,0x38,0x1d,0xd2,0x95,0x15,0xf1,0x7c,0xf0,0xf2,0xd9,0x9c,0x91,0xb6,0x13,0x60,0x05,0x4f, + 0x65,0x73,0xd6,0x9d,0x24,0xce,0xbc,0xbd,0x3e,0x11,0x65,0x2c,0x06,0x1e,0x8c,0xa2,0x9a,0xd3,0x12,0x52, + 0x6a,0xd2,0x5f,0x41,0x92,0x05,0xd9,0xa4,0x76,0xd1,0xaf,0x52,0x15,0xf7,0x52,0x5f,0x02,0x45,0x60,0x6b, + 0xec,0x47,0x3b,0x88,0x62,0x4c,0x2d,0xd1,0xe1,0xd2,0x72,0xd7,0xb1,0xed,0xef,0x3b,0xb4,0x5f,0x0a,0x6b, + 0xc0,0x45,0x0e,0xe1,0xb6,0x2b,0x67,0xaf,0x8c,0x82,0x9d,0xda,0xe0,0x0a,0xce,0xf0,0xa5,0x50,0x91,0xfb, + 0xa8,0xba,0x9d,0x2a,0xe0,0x22,0xc9,0xd1,0xb9,0x33,0xc2,0xe3,0x72,0x98,0x75,0xbb,0x2c,0x7f,0xf1,0x6e, + 0x3c,0xd1,0x7a,0x2c,0x70,0x47,0xe0,0x5c,0xc8,0xb3,0x4a,0x89,0xa7,0x55,0xb8,0x0a,0x5c,0x5a,0xa0,0x2e, + 0x11,0xde,0xd0,0x83,0x58,0x4d,0xe8,0x7a,0xbc,0x2d,0xeb,0x9d,0xf4,0x83,0xbc,0x4b,0x74,0xb7,0x4d,0x16, + 0x31,0xc4,0x07,0x21,0xc3,0xf3,0x60,0xe0,0xb1,0x73,0xd0,0xf0,0x7d,0x95,0x00,0x64,0x32,0x21,0xf2,0x7f, + 0x25,0x4e,0xe4,0xbc,0xbe,0xe9,0x82,0x34,0x9b,0x8b,0xfb,0xea,0x78,0x2b,0x7a,0xef,0xde,0xff,0xc5,0x7d, + 0x1d,0x50,0x9f,0x41,0xfc,0xd3,0x8a,0x80,0xd2,0xa7,0x26,0x83,0x10,0x7f,0x0d,0x1b,0xf2,0xc9,0x91,0x24, + 0x90,0xa6,0xab,0xc6,0xac,0x46,0x45,0x4d,0xee,0x6c,0x27,0x9f,0x66,0x52,0x22,0x45,0x37,0xc5,0x29,0x66, + 0x38,0x1c,0x51,0x6e,0x77,0x24,0x98,0x5b,0xf3,0x02,0x3d,0x6a,0x7b,0xf7,0xc4,0x53,0xd7,0x4f,0x9b,0x8b, + 0x12,0xd3,0x80,0xd2,0x91,0xe1,0x02,0x63,0x7d,0xa7,0x0c,0x76,0x4b,0xfa,0x1f,0x16,0x3a,0xee,0xa9,0xd6, + 0x98,0x13,0x95,0x54,0x66,0xe6,0x74,0x47,0x74,0x86,0x6c,0xc8,0x94,0x0e,0xd1,0xf8,0x26,0xaf,0x3a,0x39, + 0x0e,0x46,0xb5,0x02,0xa6,0xb7,0xf2,0x2b,0x6a,0xde,0xb6,0xb8,0x2e,0x45,0xf4,0x70,0xda,0xed,0xda,0x49, + 0xdd,0x72,0x6c,0x3a,0xb9,0xb1,0xfa,0x10,0x1d,0xfd,0xee,0x9f,0x4e,0x82,0xee,0x91,0x7a,0xcf,0x8f,0x57, + 0x78,0x7c,0x42,0xd3,0xf4,0x26,0x3a,0x51,0x8f,0xa2,0xbb,0xea,0x6d,0x74,0x4f,0xbd,0xa6,0xf7,0x77,0xd1, + 0x7d,0xf5,0x2c,0xfa,0x52,0xbd,0x8c,0xfe,0xae,0x5e,0x44,0xff,0x50,0xcf,0xa3,0x7f,0xaa,0xa7,0xb8,0x66, + 0x7b,0x3a,0x7c,0x3d,0x8a,0x6e,0xae,0x96,0x21,0xfd,0x2a,0xe6,0x0d,0xc3,0xe1,0x3d,0xf5,0x64,0xa4,0xbc, + 0xa1,0x17,0x0e,0xdf,0x8d,0x14,0x1d,0xf2,0xe1,0xf0,0xc5,0x68,0xab,0x9e,0x0e,0x4f,0x74,0xce,0x13,0xfa, + 0xda,0xa3,0xaf,0x77,0x5b,0x73,0xdd,0xd5,0xb9,0xee,0xd6,0xeb,0x3b,0xd6,0xbf,0xc2,0x6a,0xca,0x0b,0xb2, + 0xdf,0xa3,0xec,0x9f,0xca,0xa7,0xb8,0x55,0xf5,0xc6,0xb4,0xcb,0x4f,0xdc,0x32,0x9e,0xa4,0x6d,0x7a,0x42, + 0x75,0xef,0xa8,0x3a,0xef,0x0e,0x7d,0x7a,0x86,0x72,0x77,0xbc,0x3b,0xe1,0xf0,0x65,0x35,0x1c,0xf5,0x88, + 0x9e,0x46,0x1e,0x2a,0x7b,0x2b,0x05,0x9f,0xb3,0x95,0x1e,0x3e,0x49,0x77,0x9e,0x99,0xf2,0x48,0xa8,0xe5, + 0x78,0xa6,0x73,0xbc,0xa4,0x1c,0x5c,0xef,0x4e,0x0e,0x34,0x24,0x0b,0xf3,0x3d,0x5b,0x32,0x13,0xa9,0x56, + 0xac,0x92,0x0d,0x5b,0x68,0x6e,0x0e,0x07,0xc3,0xd3,0x49,0x6f,0xd4,0xdd,0xdc,0x61,0xd7,0x55,0x77,0x36, + 0x1e,0x7b,0xb3,0xf2,0x02,0xca,0xb7,0x7f,0xa4,0x7e,0xb8,0x05,0x6d,0xb5,0x63,0xad,0x1f,0x1c,0xac,0xc5, + 0x50,0xf6,0x03,0x1d,0x6a,0x35,0x14,0xe4,0x78,0x3b,0x96,0x8a,0x1c,0x84,0x05,0xcd,0xce,0x64,0x37,0xb7, + 0x89,0x85,0x29,0xc2,0x2d,0x6c,0xb8,0x55,0x74,0x78,0x42,0x47,0xe3,0x6b,0x0e,0x52,0x77,0x01,0x70,0xc1, + 0x9e,0xb9,0x18,0xbe,0x19,0xd5,0xcc,0x35,0xcc,0x39,0x95,0xb1,0x1a,0x8e,0x40,0x2f,0x3c,0x0b,0xca,0x07, + 0x58,0xe0,0x0f,0x9f,0xb4,0x94,0x80,0x2e,0xd3,0x20,0x8b,0x8a,0x30,0xeb,0x12,0xe1,0x4f,0x99,0x1e,0xd5, + 0x32,0xa1,0x10,0x51,0x46,0x53,0x82,0x7d,0xfa,0xf6,0xb6,0xf6,0x0d,0xa2,0xae,0x87,0xc7,0xc1,0xf4,0xf0, + 0x90,0xba,0xf7,0x4e,0x49,0x56,0x7b,0xb1,0x88,0xde,0xee,0xe1,0x1e,0xc3,0xcf,0xa2,0x09,0x7b,0xba,0xb3, + 0x92,0x50,0xf4,0x1d,0x6a,0x93,0x7d,0x2d,0xe3,0x9e,0xb3,0x67,0xf7,0x55,0xb7,0x0b,0xb7,0x87,0xac,0xe7, + 0x03,0x57,0x89,0x2b,0x5c,0x3f,0xec,0x35,0x78,0x6f,0xfe,0xd0,0x3d,0x61,0x6c,0x0d,0x59,0xd2,0x33,0x3a, + 0x95,0xef,0xb0,0x46,0xe1,0x66,0x83,0xf7,0x97,0x07,0x07,0x04,0x16,0x78,0x37,0x28,0x06,0xd5,0x12,0xb6, + 0xa6,0x8a,0xbb,0x89,0xee,0x23,0xc2,0x21,0xfb,0x81,0xb6,0xcb,0x5a,0x40,0x8d,0x17,0x74,0xce,0x32,0x7a, + 0x3a,0x9c,0x8f,0x02,0xc2,0x3b,0x9b,0xcd,0x92,0x15,0x36,0x37,0x9b,0xe7,0x10,0x27,0x3f,0x37,0x1a,0x3d, + 0xdc,0x26,0x1c,0xd5,0x2b,0x3f,0x8e,0x2e,0x86,0x39,0xed,0xc1,0x91,0xc8,0x57,0xec,0x5c,0xd2,0x73,0x4e, + 0x9b,0x2e,0x18,0xe0,0x46,0x84,0x87,0x4f,0xfc,0x4f,0x50,0xab,0x20,0x8a,0x5e,0x98,0xbe,0x8d,0x45,0x4d, + 0xcd,0x12,0xa4,0x06,0x46,0xa8,0xf7,0x2a,0x01,0xd9,0xb5,0x55,0x2e,0x90,0xcd,0x92,0x12,0x20,0xc6,0xb2, + 0xdb,0xc6,0xd9,0x08,0xb1,0x78,0x52,0x39,0x54,0xad,0x6e,0x54,0x0a,0xe3,0x0d,0xdb,0x42,0x28,0x7c,0xcc, + 0xe2,0xee,0x94,0x0e,0xa7,0xa6,0x04,0xfc,0xe0,0xe0,0xd8,0x11,0x76,0xd7,0xea,0xaa,0x14,0x59,0x8c,0x7f, + 0x6c,0x04,0xc2,0xd6,0x2e,0xb3,0xf3,0xbe,0x71,0x94,0x1d,0x0f,0xe1,0x2a,0xdb,0xb9,0xcc,0x80,0x9e,0x58, + 0x70,0x23,0xde,0xa3,0xb4,0xe1,0x40,0x1c,0x8d,0xd5,0xb2,0x42,0xa6,0xb1,0xec,0xd6,0x57,0xb7,0xec,0x9c, + 0x7e,0xc5,0xff,0x61,0x9e,0xa0,0xd9,0x6a,0x5d,0xf8,0x0a,0xf1,0xb8,0xd9,0x78,0x49,0x76,0xf8,0xd3,0x1b, + 0x8f,0x45,0x63,0x75,0x5e,0xbb,0xfa,0x86,0x4b,0x25,0xc3,0xe2,0x32,0x79,0xa9,0x63,0x8e,0x3b,0xf2,0x22, + 0x49,0x87,0x5d,0x64,0xe6,0x88,0x83,0x38,0xb5,0xaf,0x5d,0x4f,0x5f,0xca,0x6d,0x9d,0xbc,0x39,0x22,0x82, + 0x4a,0x26,0xb0,0xd9,0x80,0x51,0xde,0xd7,0x59,0x2e,0xd3,0x25,0x1c,0x7c,0xa0,0x6d,0x79,0x12,0x29,0xa8, + 0xf1,0x06,0xcd,0x02,0x08,0x96,0x43,0xd4,0xd2,0xc1,0xd5,0x46,0x0e,0xdf,0x2b,0x2c,0xef,0xde,0x9e,0x3c, + 0x99,0xd6,0xf5,0x40,0x59,0x97,0xc9,0xc9,0xec,0xa6,0x4b,0x21,0x37,0xc5,0xb4,0xd0,0x2a,0x7b,0xb0,0x48, + 0xa4,0x6c,0x97,0x3a,0x10,0x89,0xbb,0x77,0xcb,0x27,0x5d,0x6f,0x7d,0x42,0x71,0x8d,0x0e,0xc2,0x5e,0xbe, + 0xb9,0x93,0x5a,0xff,0x02,0x6e,0x80,0xe5,0x0b,0x3f,0x54,0xd5,0xc4,0x95,0x13,0x00,0x42,0x82,0x92,0xcc, + 0x57,0x06,0x0d,0xc8,0xd7,0x58,0xc5,0xdf,0xc3,0x60,0xb3,0xcd,0xa6,0xf0,0x13,0xa9,0xb0,0xb6,0x5d,0x24, + 0xf6,0xb5,0x31,0x35,0x3f,0x83,0xaf,0xd7,0x9f,0x5f,0xf9,0xe6,0xf2,0x32,0x53,0x75,0xa8,0x09,0xe1,0x75, + 0x51,0x40,0x85,0xc8,0xae,0x06,0x90,0x84,0xb1,0xaa,0x81,0x47,0x08,0xdd,0x15,0xf5,0x63,0x74,0xb3,0xbe, + 0x0c,0x6f,0xb6,0x55,0x41,0x7a,0x6e,0x96,0xa4,0xa4,0x7a,0xd1,0x9b,0x8a,0xc3,0xdb,0x36,0xfb,0x80,0xba, + 0x04,0x66,0xf8,0xa3,0x99,0x36,0xbc,0xb4,0xae,0x00,0x7d,0xd8,0x9a,0xc3,0xe5,0x95,0xeb,0x2a,0x58,0x06, + 0xdb,0xb2,0xbd,0x2e,0x8c,0xef,0x66,0xa9,0xaf,0xdf,0x78,0x87,0xf4,0xa5,0x02,0x7b,0x5a,0x1d,0xa2,0x21, + 0xb1,0x30,0x50,0x6a,0x55,0xcd,0xbc,0xc9,0x56,0xb9,0x8d,0xb6,0xb2,0xfb,0xbb,0x1e,0x0e,0xea,0x0b,0x5d, + 0xa9,0x8b,0xb9,0x55,0xdd,0x22,0x3b,0xa8,0x55,0xb6,0x57,0x67,0x61,0x98,0xdb,0x73,0x63,0x8d,0x64,0x8e, + 0xf5,0xa5,0x44,0xa0,0xcb,0x1e,0x1e,0x9e,0x04,0x72,0xcd,0x3c,0x86,0xcc,0x13,0xca,0x8d,0x7e,0x4b,0x9f, + 0x54,0xb3,0x3b,0x35,0xd9,0x56,0xd3,0x60,0x52,0xc4,0x89,0x35,0x17,0xde,0x34,0x79,0xbd,0x7d,0x2e,0xe4, + 0x7b,0xfb,0xa8,0xba,0x16,0x4b,0xc2,0x35,0x3c,0x68,0x4c,0x86,0x6b,0x87,0x70,0xd1,0xea,0xcb,0xb8,0x59, + 0x84,0x18,0x41,0x76,0x5a,0xde,0x4c,0xdc,0x89,0x50,0xb1,0x55,0x37,0x93,0x24,0x59,0x88,0x52,0xf1,0xee, + 0xe8,0xb4,0x18,0xb3,0x7e,0xd4,0xef,0x55,0xa8,0x89,0x36,0x5a,0x85,0xbf,0x76,0x4e,0x9c,0xd2,0x04,0x1d, + 0xb9,0xac,0xcf,0x03,0x0b,0xc8,0x9c,0xc9,0x10,0xc0,0x77,0x66,0x83,0xfd,0x75,0xec,0x13,0xfb,0x0b,0xe3, + 0x12,0xf3,0x95,0xfd,0xe8,0x37,0xfa,0xaf,0x6e,0xd2,0x4b,0x22,0xd5,0x53,0xc8,0xe6,0x65,0x08,0x3f,0xa2, + 0x62,0xda,0xef,0x6e,0x9f,0x1b,0x8b,0x80,0x4c,0x66,0x6f,0xde,0x92,0x35,0xd6,0x00,0x40,0x5f,0xb5,0x30, + 0x7c,0xc9,0x1e,0xbb,0x7f,0x6c,0x9e,0x13,0x9f,0x2e,0x5f,0xbf,0x88,0x30,0xd5,0xd4,0x36,0xff,0xa7,0x2b, + 0x71,0x2f,0x25,0x4c,0x15,0x32,0x2f,0x9f,0x18,0xab,0xb9,0xd9,0xab,0xf2,0x2f,0x93,0xb2,0x65,0xf7,0x61, + 0x35,0x78,0xbe,0xf5,0x5b,0x35,0xed,0x25,0x37,0x56,0xc7,0x48,0x9f,0x6a,0xb4,0x9e,0xbb,0xa5,0xfc,0xe7, + 0x76,0xa2,0x5e,0xcc,0x74,0x46,0x23,0xc3,0x8f,0xf6,0x42,0xe7,0x71,0xb3,0xb7,0x37,0x6a,0xcf,0x65,0xee, + 0xa6,0xc1,0xad,0x1f,0xad,0xdb,0xe6,0xaa,0x17,0x69,0xaf,0xdf,0x21,0x0d,0x90,0xbd,0x15,0x61,0x7f,0xb4, + 0xb5,0xd6,0x12,0xb7,0x57,0xd5,0xde,0x8b,0x5b,0x6e,0x18,0xea,0x5b,0xde,0x05,0xf7,0x8f,0x2d,0xaf,0xd9, + 0x3c,0xbb,0xa5,0x1b,0xc0,0xfe,0xb1,0x4a,0x1a,0x1b,0x69,0xb7,0xae,0x1a,0xcc,0x7f,0xac,0xa6,0xda,0x5e, + 0x6a,0xd4,0x03,0x4d,0x31,0xed,0xab,0xa9,0xa6,0xab,0x89,0x90,0x56,0xb6,0xa6,0x02,0xa2,0x0a,0x81,0x3a, + 0x0d,0x0d,0x5a,0xe8,0x6f,0x20,0x47,0xae,0xe2,0x99,0x2c,0x1b,0xb2,0x16,0xee,0x08,0x26,0x17,0x61,0xd6, + 0x68,0x2c,0x5d,0x3e,0x77,0x29,0xb1,0x16,0x47,0x37,0x30,0x74,0x2a,0x7c,0x07,0x65,0xea,0x86,0x6a,0x24, + 0x5c,0xb3,0xd6,0x76,0x31,0x58,0x62,0x78,0x43,0x4d,0xf2,0xef,0x60,0x5f,0xe8,0x43,0x54,0x44,0x55,0x9d, + 0x06,0x4a,0x74,0x98,0xdc,0x3a,0xd9,0xbf,0xb2,0x4c,0xc3,0x8a,0xf9,0x02,0x8e,0xa1,0xcb,0x5a,0xa7,0x7e, + 0x52,0xe7,0x27,0x1c,0x35,0x53,0x73,0x99,0x0a,0xa3,0x10,0xe2,0x98,0x6a,0xf9,0xb6,0x86,0x05,0xdc,0x51, + 0xf8,0x5a,0xd5,0xaa,0x1b,0x47,0x2b,0x6b,0x0c,0x54,0x99,0x35,0xff,0x47,0xe8,0x05,0xec,0x73,0x84,0xaa, + 0xd6,0x92,0xf8,0x34,0x7b,0xcf,0x43,0x1f,0xeb,0xa1,0xc3,0x82,0xd3,0x84,0x53,0xe1,0x00,0x02,0x63,0x4e, + 0x0e,0xc7,0x8d,0x39,0x44,0xc1,0xe6,0xfa,0xbb,0xb1,0x9f,0xa3,0x4c,0x41,0x63,0x59,0xbc,0x0f,0x1c,0xf9, + 0xff,0x11,0x0e,0x4f,0xaf,0x4e,0x0f,0xcf,0x36,0xbd,0x51,0x37,0x38,0x9a,0x55,0x9a,0xe2,0x63,0xa8,0x42, + 0x2c,0xc1,0xa3,0x2e,0x1b,0x57,0xd3,0x1c,0x66,0x59,0x2c,0xa4,0x96,0xc3,0x31,0x62,0xf3,0xac,0xb4,0xd9, + 0xb5,0x7f,0xb7,0x0a,0xbf,0xe5,0xac,0x25,0xf7,0x62,0x4e,0xbd,0xf0,0x8a,0xf8,0x4a,0x0b,0xf0,0xf4,0x2c, + 0x11,0xd1,0x59,0x25,0x0a,0x25,0x1e,0x8a,0xd7,0x05,0x5d,0x4b,0x0d,0xce,0xe0,0x6d,0xc0,0x39,0x96,0x19, + 0xac,0xd8,0x79,0x51,0xe7,0x19,0x94,0xd1,0x21,0x6e,0x13,0x13,0xec,0x64,0xd2,0x61,0xf5,0x74,0xed,0x95, + 0x70,0x11,0x55,0x05,0xfa,0xd3,0x68,0xa1,0x43,0x9c,0x70,0xdf,0x16,0x8d,0xa3,0x0f,0xe1,0xc3,0x45,0x3c, + 0xbf,0x68,0x5e,0x61,0xce,0xf5,0x44,0x12,0x33,0xe7,0x9b,0x61,0x3a,0xbb,0x8e,0x86,0x09,0x0f,0xb3,0x05, + 0xe2,0xb0,0x5b,0x5b,0xe5,0x95,0x9a,0x06,0x61,0x5c,0xb1,0x7d,0xf5,0xc5,0x32,0x1a,0xe6,0xed,0x9e,0x20, + 0xeb,0x48,0xb5,0x57,0x9f,0x51,0x1b,0x34,0xa5,0xd2,0xfe,0x89,0x92,0x41,0xa1,0xed,0xc2,0x10,0xd8,0xbc, + 0xd1,0x96,0x1d,0xf2,0x0e,0x76,0x30,0x9b,0x4b,0xb8,0xd9,0xdd,0xe5,0x4b,0x14,0x2c,0x3f,0x6d,0x3e,0x2b, + 0x7d,0x26,0x40,0x18,0x14,0x7e,0x5b,0x09,0xe2,0x8c,0x86,0x59,0x55,0x42,0x47,0x86,0x1f,0xef,0x00,0xeb, + 0x0e,0xa6,0x72,0xe2,0x3e,0x69,0x6f,0x42,0x4d,0x15,0xc2,0xc3,0xfb,0xfd,0xf8,0xf0,0xb0,0xf3,0xf0,0xb8, + 0x1f,0x40,0xad,0xcf,0xd1,0x2d,0x8d,0xbb,0xf7,0x99,0x07,0xdf,0xb3,0xba,0x36,0x22,0xad,0x86,0x48,0x29, + 0xd5,0x88,0x4d,0x7b,0x2a,0x80,0x1f,0x8b,0x68,0x6c,0x59,0x69,0x68,0x51,0xc9,0x20,0x2a,0xb8,0xc8,0xd4, + 0x4a,0x18,0x81,0xe6,0x3d,0x36,0xe0,0x58,0x4f,0x39,0x3c,0x38,0xb3,0x02,0xe8,0xed,0x10,0x3b,0xff,0xf3, + 0x10,0xab,0x15,0x5c,0x96,0x0e,0xd0,0x56,0x4a,0x52,0x4b,0x42,0xcb,0x56,0x49,0x2a,0xaf,0x4c,0xdf,0x77, + 0xa1,0x91,0xba,0x0f,0x88,0x6d,0xd0,0xba,0x75,0x5c,0xdd,0xb8,0x2e,0xd8,0x99,0xeb,0x13,0x28,0xf1,0xf2, + 0x5c,0x27,0x0d,0x3d,0x5e,0x88,0xa3,0x74,0x47,0x0b,0x1d,0x3d,0xe5,0xcc,0xf4,0xb1,0xc0,0xd1,0xc1,0x1d, + 0xd2,0x3b,0xa9,0x85,0xc2,0x64,0x3b,0x69,0x3b,0x90,0xc4,0x84,0x84,0x68,0x1e,0x08,0x2d,0x98,0xcc,0xe8, + 0x8f,0xee,0x2e,0x58,0x72,0xfb,0x82,0x01,0xc7,0xe8,0x83,0xa0,0x75,0x99,0xf2,0xbf,0xba,0x4c,0x2e,0x9d, + 0x9f,0x6a,0xbb,0x95,0xdb,0xd7,0x04,0xbd,0xc9,0x77,0xd6,0xa4,0x39,0xca,0xea,0xdc,0x1f,0xec,0x1e,0x27, + 0x1c,0xdb,0x22,0x72,0x66,0xd7,0x5e,0xd3,0x72,0xe1,0xdb,0xa6,0x1a,0x92,0x80,0xd0,0xf3,0x9a,0xfb,0x6f, + 0xdc,0x3a,0xc1,0xd6,0x5a,0x48,0x0c,0x6e,0x77,0xc0,0xe2,0xcb,0xfe,0x52,0x83,0x45,0x3c,0x5c,0xba,0x60, + 0xb1,0xec,0x7e,0x69,0x65,0xbd,0xd4,0x79,0x2b,0xa0,0x49,0x59,0x7b,0x1a,0xb6,0x2b,0xbe,0xc6,0x17,0x0e, + 0xb8,0x8c,0x85,0xd2,0xa0,0xb6,0x2d,0x3c,0xc4,0x01,0xc2,0xe3,0xa0,0xc3,0x72,0xbe,0x37,0x60,0xb8,0xde, + 0x6b,0x57,0x19,0x99,0xfa,0x5b,0xec,0xf6,0xf7,0x6e,0xbf,0xd0,0xfd,0x65,0x77,0x05,0x55,0x7f,0x8b,0xee, + 0x5d,0x0b,0xc6,0xa9,0xed,0xd7,0x58,0x77,0x2c,0xfd,0x5c,0x38,0x56,0x89,0xed,0xb9,0x89,0x0b,0x93,0x36, + 0x67,0xba,0x89,0x76,0x1d,0xe3,0x66,0xb1,0x2c,0xdb,0xe9,0xf5,0xbd,0x7e,0xae,0x7b,0xcd,0xd6,0x42,0x55, + 0xaf,0xf3,0xee,0x3d,0x73,0xb5,0xd6,0xc0,0x6b,0x45,0x50,0xe1,0xb4,0x3a,0x80,0xb2,0x14,0x09,0x57,0x3b, + 0xa3,0x1d,0xe6,0xbe,0x6c,0x9a,0x65,0xd7,0x0a,0xf2,0x61,0xf3,0xa9,0x49,0x48,0x1a,0x55,0xd2,0xd7,0x9a, + 0x7e,0x55,0x0b,0x81,0x68,0x79,0x3e,0x87,0xca,0x26,0xd4,0x06,0xb9,0x63,0xa3,0xb2,0xe5,0xed,0x95,0xb1, + 0xbb,0xcb,0x96,0x5a,0x9a,0x92,0x99,0x5d,0x8d,0xaf,0xcf,0xa9,0xe4,0xa2,0xb7,0x2a,0xd3,0x79,0x4f,0x3c, + 0x1c,0xde,0xda,0xdb,0xb6,0xc1,0xd7,0x99,0x83,0x4f,0x8c,0xbe,0xc1,0x1e,0xdc,0x3a,0x09,0xb7,0x56,0x5a, + 0x1b,0xc0,0x6e,0x6d,0xad,0x93,0xf1,0x97,0x2b,0xbb,0x65,0x52,0xda,0x07,0xb1,0x33,0x37,0xa2,0x61,0x92, + 0xfe,0x61,0xdb,0x6f,0x21,0x46,0x0c,0xa1,0x0a,0x7f,0x81,0x29,0x01,0x2c,0x90,0x36,0x51,0xe8,0xcb,0x00, + 0x72,0x4e,0x18,0x88,0xf2,0xe5,0x01,0x7f,0x8b,0xb2,0x11,0x5c,0x7b,0xb9,0x9f,0x76,0x78,0x83,0x08,0xe9, + 0xb0,0x19,0xe8,0x7a,0x67,0x67,0x08,0x6b,0x60,0xce,0xfa,0x5d,0xb1,0xed,0x70,0x65,0xb1,0xd7,0x7c,0xb3, + 0xf1,0x3f,0x9a,0x91,0x85,0x83,0x2d,0xfa,0x97,0x7e,0xac,0x60,0xc7,0x3f,0xd7,0xdc,0xf2,0x8e,0x64,0xef, + 0x6c,0xb2,0x83,0x08,0x98,0xef,0xb0,0x1d,0xbf,0xa5,0x5a,0x51,0x69,0x94,0x1a,0xfb,0x2e,0x81,0xd8,0x9c, + 0xd1,0xea,0x18,0x68,0x1e,0x84,0xb7,0xca,0x69,0x54,0x76,0xfb,0xc9,0x58,0xfc,0x4f,0x9c,0x8c,0xe2,0x6a, + 0x30,0xb1,0x27,0x63,0x01,0x93,0xfc,0xfa,0xbc,0xb4,0xfb,0x26,0xb9,0x0d,0xa3,0x9f,0xdc,0x8e,0xd1,0x4f, + 0x46,0xda,0x82,0xc2,0x45,0x5a,0xf9,0x8e,0xa5,0x51,0xe5,0xac,0xa2,0x69,0x16,0x04,0xd3,0xea,0x01,0xec, + 0x53,0x8e,0x47,0xb8,0xda,0x87,0x6d,0x10,0x87,0x18,0x81,0x37,0x07,0x6d,0xc4,0x01,0x7b,0x9b,0xea,0x1d, + 0xd1,0x43,0xe9,0x85,0x63,0xa3,0xfa,0x52,0x90,0xc3,0xa2,0x8a,0x05,0x52,0xf6,0x11,0x0b,0xa4,0x4c,0x2c, + 0x90,0xa4,0x4c,0xa0,0x5a,0xbe,0x9f,0x8c,0x74,0x6b,0x6c,0x78,0xa4,0xe1,0x11,0xf1,0xe7,0x39,0xbe,0x68, + 0x03,0xed,0xb8,0x72,0x84,0x4f,0x20,0x9d,0x9a,0x24,0xe1,0x56,0x94,0x73,0x4b,0x85,0x35,0x1c,0xd1,0xac, + 0xa9,0x15,0xdd,0xfc,0xa5,0x8a,0x6e,0x41,0x35,0x6d,0x5d,0xbf,0x1d,0xd1,0x48,0xcb,0xff,0x1f,0xa2,0x99, + 0xe6,0x0d,0xd0,0x2d,0x48,0xa6,0x25,0x5b,0x85,0x62,0xdc,0xe9,0xfb,0x24,0x82,0xc9,0x3e,0x13,0xc1,0xd4, + 0x2a,0xfd,0x24,0x7a,0x91,0xdc,0x9f,0x46,0x2e,0x0d,0xf9,0xed,0xff,0xeb,0xa8,0x25,0xfb,0x34,0x6a,0xc9, + 0xfe,0x7f,0xd4,0xf2,0xb9,0xa8,0x25,0xb3,0xa8,0x45,0x6b,0x7f,0x88,0x21,0x81,0x16,0xfd,0xa4,0x44,0xec, + 0x39,0x13,0xab,0x7e,0x0c,0x68,0x9e,0xe3,0x75,0x9c,0xce,0xe3,0xf3,0x74,0x9e,0xe2,0x7b,0x74,0x53,0x3f, + 0x2d,0xc3,0xeb,0xda,0xed,0x5f,0x78,0x86,0xa5,0x61,0x2d,0xde,0xf9,0xdc,0x8d,0xad,0x6b,0x74,0xf0,0xfa, + 0xfe,0x05,0x3c,0xae,0xac,0x69,0x07,0xd0,0x87,0x83,0x03,0x0d,0x76,0x17,0x26,0xc5,0xd8,0x48,0xf6,0xbc, + 0x80,0xc7,0x55,0x9a,0xca,0x24,0x86,0x52,0x5b,0xaf,0xaf,0xa9,0x74,0xd5,0x67,0x6f,0x5f,0x34,0x57,0x6f, + 0x08,0x56,0xc3,0xdb,0x44,0xad,0xc8,0x02,0xc7,0x33,0x59,0x74,0x71,0x4b,0x95,0x59,0xad,0xca,0x72,0xb7, + 0xbe,0xdd,0x9b,0x31,0xf7,0xce,0xe7,0x7f,0x04,0x08,0xb5,0xc6,0xaa,0xae,0x3e,0xad,0x38,0x2a,0x62,0x5c, + 0x88,0x0f,0x35,0x00,0x9a,0x36,0xa9,0xf5,0xd2,0xe5,0x56,0xb6,0xdb,0xca,0x76,0xe2,0xe3,0x63,0x1c,0xff, + 0xb9,0x41,0xee,0xb0,0x38,0x69,0x1b,0x63,0x96,0x5a,0x16,0x27,0x75,0x87,0x99,0x82,0x31,0xd3,0x7c,0x7e, + 0x7d,0x98,0xb9,0xc3,0xa0,0xe5,0x18,0xa7,0xb5,0x68,0xcb,0x77,0xc6,0xa9,0x32,0x3b,0xd2,0xe2,0xcf,0x8c, + 0x34,0xf9,0xf3,0x23,0xd5,0x28,0xb3,0xde,0xd7,0x82,0xd9,0xa7,0x44,0x59,0x8d,0xdf,0x62,0x87,0x7b,0xfc, + 0xfc,0x5e,0x4d,0xfe,0x77,0x61,0xac,0xe2,0x8a,0x8d,0x9d,0xde,0xc4,0x81,0xae,0x16,0x7e,0xf7,0x73,0xc7, + 0xd1,0xb2,0xf7,0xfe,0x77,0xc7,0x91,0x7d,0x7a,0x1c,0x30,0x9d,0xfe,0x90,0x66,0xfe,0x39,0x1e,0xad,0x2d, + 0xa0,0xef,0x61,0x9f,0x73,0xc4,0x85,0xb1,0x8e,0xbf,0xce,0xce,0xbe,0x2e,0xaa,0xb0,0x60,0xfe,0x95,0xf8, + 0x3d,0xbc,0x32,0x87,0xa8,0x55,0x19,0x10,0xc3,0xa9,0x57,0x20,0x86,0xde,0x94,0x05,0x15,0x9d,0x11,0xb6, + 0xec,0x17,0x62,0x43,0x55,0xf4,0x74,0xd4,0x6f,0x60,0x47,0x8d,0xe9,0x22,0xef,0x1f,0xbd,0x7b,0xbd,0xfb, + 0x9e,0x6a,0x33,0xe7,0x92,0x88,0xcc,0x07,0x07,0x3a,0x32,0xf3,0xcf,0x88,0x28,0x53,0x3d,0xf7,0x56,0xcb, + 0xc4,0x7f,0x45,0xc8,0x59,0xab,0x0d,0x59,0x2b,0x97,0x9b,0x24,0x0b,0x6f,0x38,0x08,0x66,0xe8,0xbd,0x29, + 0xe3,0xb4,0x58,0x7a,0x6a,0x79,0xbd,0x2c,0x93,0xcb,0x17,0x4f,0x29,0x85,0x9f,0x3a,0x2f,0x9e,0x7a,0x6a, + 0x9a,0x16,0x97,0x57,0x71,0x91,0xfc,0x2c,0x7d,0x09,0xbd,0xe7,0x3a,0xa1,0xa3,0x7b,0x17,0x76,0x10,0xd2, + 0x72,0x71,0x2d,0x71,0x30,0xbc,0x27,0xe6,0xb1,0xf3,0x7f,0xff,0x9f,0xce,0xdd,0xe3,0x93,0x7f,0x74,0x5e, + 0xc5,0xc5,0xfb,0xce,0x3a,0xce,0x3a,0x3f,0x26,0xd9,0xf2,0x2a,0x5f,0x4d,0x68,0x53,0xcd,0xf3,0x18,0x4e, + 0xb2,0x42,0xef,0x87,0x79,0x02,0x2b,0x42,0x8e,0x4d,0xd0,0xd1,0xa9,0x1d,0x99,0x28,0x1d,0x9a,0xbd,0xd7, + 0xeb,0x79,0x8a,0xd7,0xe9,0x31,0x87,0xd0,0x08,0xbd,0x47,0x78,0xa9,0xa5,0xbd,0x89,0xd7,0x5c,0x9b,0xfc, + 0x72,0x89,0xab,0x74,0x9a,0xd2,0xc0,0xca,0xd5,0x32,0xbc,0x89,0xc7,0xf0,0x17,0xb9,0xc8,0xd3,0xac,0xb4, + 0x83,0x7e,0xf4,0x03,0x3a,0x3e,0x49,0x97,0xf1,0x39,0x9d,0x18,0xa1,0xf7,0x54,0x3f,0x11,0xc5,0xc0,0x2e, + 0x2b,0xf2,0x0c,0xc1,0xe4,0x6c,0xf6,0x5f,0xd2,0xe7,0xe9,0x2d,0x05,0x54,0x8a,0xb0,0x21,0xde,0x8b,0x09, + 0x2e,0x6b,0xb3,0xfc,0xcd,0x1b,0x9e,0x41,0xfa,0xdb,0x81,0x9d,0xe8,0x34,0xa7,0x45,0xa3,0xb9,0x1d,0xc7, + 0x19,0xc2,0x41,0xc0,0xc4,0x82,0x0a,0xbf,0xa1,0xd7,0xce,0xd8,0xbc,0x63,0x02,0xb3,0x8c,0x40,0xeb,0x39, + 0x1d,0xa0,0xf8,0x2c,0xbf,0x9d,0x32,0xef,0xe8,0x0f,0x36,0x07,0xf5,0xeb,0x65,0xbe,0xe4,0x79,0x36,0xef, + 0x34,0x6d,0xcb,0x92,0x7b,0xa6,0xf3,0xe8,0xde,0xd9,0x37,0x44,0xda,0x58,0xea,0xa9,0x28,0xe3,0xf3,0xb7, + 0x76,0xd5,0x29,0xc5,0x53,0x7a,0x80,0x4f,0x24,0x5c,0x4b,0x67,0xa9,0x93,0xe9,0x20,0x7d,0x53,0x26,0x8b, + 0xe5,0xdb,0x62,0x85,0xcc,0x49,0xd9,0x81,0x58,0x1f,0xd1,0xe0,0xaf,0x69,0x4c,0x05,0xeb,0xf3,0x2f,0x91, + 0xa1,0xca,0xfa,0x1c,0x4a,0xa6,0xcd,0xbc,0xf0,0x86,0xb6,0x4e,0x27,0x2b,0x84,0x84,0x40,0xfc,0x19,0x82, + 0x8d,0x19,0x7c,0x8d,0x38,0x3d,0x79,0xab,0xd3,0xd0,0x97,0xcb,0xc4,0x24,0xd2,0xa3,0x24,0xbc,0xc0,0x75, + 0x42,0x46,0x78,0xc2,0x00,0x0b,0x4d,0x2b,0xcc,0x54,0xe2,0xb2,0x83,0xcf,0x1d,0x53,0x65,0x47,0x9b,0x8e, + 0x74,0xe2,0x8c,0xdb,0x47,0x99,0x4e,0x35,0x6d,0x3d,0xa9,0xed,0x65,0x5c,0xbe,0xcc,0x01,0x2b,0xf4,0x90, + 0x96,0x04,0x8c,0x9d,0x23,0x9a,0xc0,0x6c,0xc6,0xcf,0x3a,0x0b,0xa1,0xe8,0x92,0x61,0xfd,0x6b,0xaa,0x61, + 0xde,0x92,0xaf,0x33,0x2d,0xf2,0xcb,0xce,0x5c,0xe7,0xab,0x97,0x7a,0x93,0xc4,0xc5,0xf8,0x02,0xd3,0x80, + 0x5f,0x4f,0x5d,0xe6,0x48,0xd5,0xa3,0x7a,0xc5,0x2f,0xde,0xd6,0x59,0x4e,0x77,0x26,0xaa,0x45,0xad,0xd6, + 0xa5,0x5a,0x67,0xbe,0x61,0x48,0x4a,0x9e,0x29,0x17,0xa4,0xbd,0x67,0x19,0x20,0xb1,0x23,0x69,0x1d,0x4e, + 0xac,0xe5,0xf8,0x86,0x73,0x3d,0x9a,0xcf,0xf3,0xab,0xa5,0x2c,0x9e,0x36,0x6b,0x76,0xa6,0x47,0x86,0x74, + 0x9d,0xaf,0x8a,0xce,0x24,0x59,0xa7,0xe3,0x04,0xd0,0x07,0x44,0xdc,0x11,0xf4,0xa0,0x9d,0xa9,0x70,0xf1, + 0xda,0xfe,0xec,0x2c,0x56,0xc5,0x22,0x5f,0x26,0xcb,0x5e,0xe7,0xed,0x45,0x62,0x72,0xd7,0xb3,0x50,0x2d, + 0x9a,0x38,0xa4,0x1a,0xe8,0xfd,0xa2,0x2c,0x17,0xe1,0xd1,0xd1,0xc9,0x57,0x77,0x7b,0x27,0x7f,0xff,0x67, + 0xef,0xa4,0x77,0xff,0xa8,0x73,0x75,0x91,0x64,0x68,0xbf,0x03,0xdc,0x62,0x61,0x17,0xbd,0x48,0x4b,0xaa, + 0x9a,0x09,0x9b,0xb2,0x93,0x4f,0xa7,0x9d,0x78,0xd9,0x59,0xe6,0xf0,0x58,0xb1,0xec,0xe8,0xad,0x8a,0xce, + 0x25,0x68,0xc5,0x34,0x9b,0x4c,0x14,0x3e,0x53,0x01,0x4a,0x64,0x73,0xed,0x64,0x8c,0x54,0x5c,0x65,0xc6, + 0xd9,0x35,0xe1,0x9b,0xeb,0x5e,0xe7,0x5f,0xd4,0x18,0xf6,0x61,0x3c,0xa7,0xd7,0x65,0xc7,0x52,0x7d,0x1d, + 0xc1,0xd0,0x1d,0xb0,0x27,0xe8,0xed,0xf9,0x75,0x07,0xaa,0x59,0xc0,0x4c,0xe5,0x45,0x7d,0x9a,0x3b,0x3a, + 0xac,0xcf,0x2a,0x23,0xfe,0x94,0xbf,0xbe,0x7c,0xf6,0xb4,0x33,0x07,0xfe,0x5b,0x76,0x56,0x0b,0x82,0x39, + 0x17,0x99,0x98,0x85,0x72,0x7b,0x5d,0xcb,0x21,0x0b,0xa5,0x97,0xbc,0x6d,0xf6,0x69,0x36,0x78,0x89,0xf2, + 0xab,0xac,0x03,0x94,0xd4,0x29,0xd8,0xd9,0x50,0xaf,0xa3,0xb7,0x06,0x07,0x93,0xe2,0x7e,0x00,0x01,0x29, + 0x02,0x99,0x25,0xa1,0xdc,0x62,0x42,0x83,0x9e,0xd0,0x51,0x5a,0xd0,0x97,0xe6,0xf2,0x9d,0x27,0x04,0x16, + 0xe8,0xe8,0x32,0x9d,0x08,0xde,0xf2,0x94,0x29,0x46,0x5b,0x4e,0x3f,0x11,0x7e,0xb9,0x18,0x2f,0x42,0xef, + 0x27,0x6a,0xe4,0xe9,0x37,0x4f,0x7e,0x90,0x77,0x0d,0x58,0xab,0x32,0xbf,0x84,0x97,0x1f,0xec,0x71,0x9a, + 0xf6,0x65,0x3a,0xcb,0x96,0xd8,0x85,0x2f,0x7e,0xe8,0xe8,0xc0,0xd3,0xed,0xc0,0x24,0x4b,0x40,0x24,0xc1, + 0x39,0x4d,0x0b,0x16,0x85,0x26,0x94,0x32,0xbe,0x4f,0x92,0x85,0x5e,0x08,0xcc,0xec,0x1c,0xe5,0x01,0x18, + 0x30,0xa0,0x20,0x30,0xa1,0x7d,0x4f,0x6f,0x77,0x08,0x4a,0x26,0x39,0xb0,0x3d,0x21,0xe0,0x85,0x6e,0x86, + 0xb0,0xb0,0x6d,0x92,0x46,0xb4,0x3a,0x27,0x14,0x70,0x19,0x2f,0xdf,0xd3,0xb8,0xf8,0xb9,0x83,0x17,0x4f, + 0xcd,0xe8,0xd0,0xa5,0x25,0xa7,0xfd,0x2d,0x0f,0x9e,0xba,0x20,0x14,0x2a,0xd6,0x6c,0xdf,0xe8,0xa7,0x2a, + 0xed,0x87,0xca,0x63,0x2a,0xe1,0x55,0x6d,0xc0,0x46,0x35,0x8d,0x6d,0x4b,0x5b,0x7b,0x4a,0xba,0x9b,0xd9, + 0x1c,0x94,0x76,0x2b,0xdb,0x93,0x53,0x28,0x06,0xa0,0xe5,0x6c,0x6e,0x4f,0x98,0xb7,0x45,0xbc,0xd8,0x39, + 0x83,0x3f,0xef,0x10,0x4e,0xfe,0x7b,0x67,0xf0,0x33,0xda,0x78,0xf9,0x2c,0xc9,0xce,0xe7,0xe9,0xfb,0xce, + 0x2c,0xa1,0x95,0xa1,0xdd,0x73,0x9e,0xfc,0x91,0xce,0x88,0x5e,0x00,0x02,0x9c,0x50,0x86,0x35,0x1f,0x58, + 0x16,0x70,0x92,0xdd,0x63,0xf9,0x6d,0x9e,0x00,0x6e,0x92,0xac,0xf5,0x68,0x7e,0x6c,0xeb,0xcb,0x17,0xcb, + 0x79,0x1c,0x67,0x7f,0xe9,0x94,0xfe,0x29,0x2d,0x89,0x7a,0x19,0x5f,0xc4,0xef,0x93,0xf9,0xe7,0x1f,0xd5, + 0xf5,0x52,0xfa,0xbc,0x7e,0x43,0x9d,0x58,0xc0,0x86,0x74,0xd2,0x3c,0xb5,0x53,0xea,0xe4,0x2c,0x59,0xe7, + 0x44,0x6c,0x65,0xed,0x27,0x77,0x3c,0xa5,0x03,0x27,0xcf,0x76,0x0f,0xee,0xef,0xe8,0xe3,0x2c,0xc1,0x74, + 0x25,0x85,0x76,0x03,0x4b,0x90,0xf2,0x1e,0xf5,0x34,0x0f,0xf0,0x9f,0xab,0x1c,0x94,0x79,0x9e,0x17,0xc8, + 0x54,0x3f,0xc4,0xbf,0x47,0x4f,0x50,0x93,0x74,0xe5,0x73,0x8e,0xf1,0x6f,0x56,0xe9,0x24,0x9d,0x25,0xb7, + 0x1c,0xe3,0x74,0x04,0xe0,0xbc,0x4c,0xb0,0xa0,0x93,0xe4,0x8f,0x64,0x3e,0x05,0xda,0xd4,0x67,0x75,0x92, + 0x96,0x3b,0x67,0xf9,0x5b,0xc9,0x6b,0x0e,0xf1,0x24,0x99,0xb3,0xe1,0x6d,0x42,0xf5,0x64,0x7f,0xee,0x34, + 0x7f,0x37,0x69,0x9e,0xe6,0x2f,0x19,0x16,0x3a,0xb4,0x15,0x3a,0xeb,0x9c,0x4e,0x95,0x92,0xf2,0x54,0x87, + 0x79,0x92,0x54,0xa7,0xf8,0xba,0x36,0x55,0x09,0x1c,0xa7,0x10,0x6f,0xde,0x38,0xcf,0x1f,0x17,0x49,0x32, + 0x21,0x62,0xba,0x88,0xe3,0x09,0xce,0x6a,0xb0,0x04,0xf2,0xd6,0x3c,0xd5,0x6f,0xcf,0x49,0xfd,0xb9,0x20, + 0xee,0x2c,0x43,0xbf,0xce,0xe3,0x25,0x61,0x20,0x80,0xbd,0x9c,0xf3,0x49,0xfb,0x31,0xff,0x5b,0x9e,0xf0, + 0xf2,0xd6,0x8e,0xf9,0xc7,0xc9,0x55,0x02,0x2d,0xdd,0x5b,0x0f,0xfa,0x6a,0xf1,0xed,0xca,0x39,0xf0,0xe0, + 0xee,0xb3,0xc6,0x51,0xff,0xc8,0x3d,0x7c,0x68,0x29,0x04,0xa8,0x79,0xcf,0x55,0xd9,0x2e,0x38,0xeb,0xab, + 0x38,0x7e,0x5f,0x76,0x2e,0x80,0xf5,0x68,0x77,0xcf,0xd3,0x77,0x74,0x98,0x5d,0xf2,0xbc,0xca,0xe1,0x6f, + 0x4f,0xd9,0x34,0xc1,0x30,0xe3,0x29,0x7f,0xa3,0xad,0x4b,0x64,0x06,0xad,0x49,0x16,0xc7,0x05,0x03,0x49, + 0x07,0x98,0xc9,0x1e,0x40,0x89,0xc0,0x33,0xaa,0x22,0xd8,0xa9,0x52,0xed,0xc9,0x0b,0xa7,0xa1,0x9d,0xa7, + 0xf5,0x52,0x34,0x91,0x94,0xe5,0x3c,0xc9,0x08,0x95,0x14,0xd8,0x1d,0x69,0xdc,0x4a,0x03,0xd0,0x77,0x6a, + 0xf9,0x9d,0xdb,0xb3,0x8b,0xe4,0x1c,0xbb,0xf1,0x12,0x83,0xe9,0x75,0xde,0xc8,0x78,0xa5,0x5f,0x38,0xa6, + 0x09,0x99,0xa6,0xe8,0x2b,0x8f,0xd3,0xed,0x03,0x9d,0xff,0x08,0x75,0xfa,0x47,0xaa,0x41,0x5d,0xb6,0xf5, + 0x79,0xb2,0x4e,0x52,0x3a,0x9e,0x27,0x00,0xa0,0xce,0xb7,0x49,0xe7,0x3d,0x9d,0xdc,0x6e,0x6d,0x79,0xfe, + 0xde,0x9d,0x56,0x3a,0x62,0x08,0x32,0x01,0xa5,0x49,0xa7,0x36,0xf5,0x74,0x16,0x2d,0x30,0xa6,0x49,0xb1, + 0x7a,0x8f,0xe9,0x20,0xa6,0x16,0x5d,0x9f,0x08,0x01,0x10,0x03,0x0d,0xd0,0x24,0x36,0xcf,0x7f,0x67,0x8d, + 0x81,0x09,0xf9,0x04,0xd7,0xe8,0xc1,0xc9,0x27,0xcb,0xa7,0xf3,0xee,0x2e,0x01,0x2a,0xa7,0x29,0x4a,0x68, + 0x9b,0x37,0x88,0x80,0x9f,0x57,0xf3,0xce,0x45,0xca,0x98,0x89,0x8e,0x79,0xcc,0x08,0x23,0x34,0xca,0x76, + 0x15,0x8f,0x2f,0xca,0xab,0x1c,0x94,0x40,0x4a,0x53,0x93,0x54,0xb8,0x3c,0xa1,0x9c,0x1c,0xa1,0x70,0xc5, + 0xd3,0xda,0xc9,0x69,0x87,0x01,0x81,0xf0,0x74,0x2c,0x6f,0xa5,0x0b,0x7e,0xb1,0x15,0x1a,0xca,0xe0,0xeb, + 0xe4,0xbc,0x58,0xd1,0x01,0x52,0x51,0x07,0x17,0x35,0xea,0x80,0xe6,0x94,0x01,0x8c,0x4f,0x68,0x3a,0x36, + 0x69,0xca,0x92,0xab,0xf4,0xdd,0x1f,0x80,0xb9,0x38,0xdb,0x19,0x66,0xaf,0xf3,0x0b,0x01,0x20,0x15,0x4a, + 0xdf,0x65,0x0c,0xbb,0x57,0x44,0x60,0xd1,0xb0,0x9d,0xb5,0x42,0x31,0x28,0x7c,0xd0,0x80,0xe8,0xcf,0x1f, + 0xe9,0x3b,0x7c,0xbf,0x4a,0x68,0xd8,0x57,0x80,0x5d,0x7a,0xb9,0x4c,0x12,0x7d,0x90,0x9d,0xc3,0xae,0x7b, + 0x97,0x52,0xa0,0xc7,0x5b,0xe9,0x84,0xa4,0xf8,0x1c,0x4a,0x21,0xbe,0xbc,0x85,0x52,0x78,0x83,0xa3,0x85, + 0xfa,0x31,0x31,0xb4,0x02,0xda,0xfa,0xb3,0x94,0xc2,0x79,0xfa,0xee,0x2a,0x29,0xde,0x33,0xf2,0xdf,0x56, + 0x9e,0x05,0x39,0x28,0x07,0xb1,0xc1,0x56,0x62,0x02,0x51,0xbe,0x76,0x40,0x55,0x99,0x75,0xd0,0xc9,0x4b, + 0xfd,0xcf,0x8b,0xde,0x9c,0x76,0xc2,0x8a,0xd8,0xfe,0xa6,0x8d,0x85,0xc7,0x88,0xcb,0x58,0x6c,0x58,0x0d, + 0xd7,0xa0,0xaf,0xab,0xf3,0x6f,0x92,0x79,0xe8,0xfd,0x8d,0x50,0x02,0xcd,0x1c,0x55,0x1d,0x96,0x8a,0x2d, + 0x20,0x6e,0x0c,0xe9,0xb0,0x77,0xac,0x96,0x72,0xbe,0xef,0x9d,0xe8,0x27,0x3e,0x3d,0xf0,0xaa,0xf3,0xbc, + 0x20,0x70,0x1f,0xa3,0x17,0xa1,0xb7,0xf1,0xd4,0x6a,0x81,0xe4,0x1f,0x8a,0x7c,0xc6,0x8b,0x40,0xd9,0x62, + 0x16,0xa8,0xbc,0x8d,0xcf,0xe1,0xc4,0x4f,0xce,0x2c,0x23,0x58,0xb8,0xa9,0x88,0x21,0x5d,0x19,0xd3,0x0c, + 0xe6,0xb3,0x9b,0xb8,0xad,0x53,0x12,0x8b,0xf0,0x26,0xc9,0xe4,0xf0,0xa7,0x26,0x52,0x82,0xce,0xe3,0x1e, + 0xff,0xab,0x48,0x86,0x5a,0x0e,0x7d,0xac,0x1e,0xd7,0xb3,0x52,0x5e,0x46,0xf2,0xd4,0x86,0x3d,0x3c,0x28, + 0xb3,0x73,0xe8,0xd1,0x79,0x40,0x93,0x11,0x97,0x73,0x3e,0x81,0x3c,0x35,0xb7,0x67,0x0c,0x47,0xb7,0x74, + 0x50,0xbf,0x05,0x1b,0xd6,0x12,0x71,0x51,0x3a,0xe6,0xb0,0xb4,0x95,0xf3,0x6e,0xe3,0x3c,0x76,0xaf,0xf1, + 0x1b,0xef,0xb1,0x3d,0xee,0x20,0xbf,0x3b,0x30,0xcb,0xef,0x06,0x50,0x59,0x03,0xd5,0x9e,0xe2,0x28,0x61, + 0x9e,0x59,0x09,0x36,0x44,0x63,0xf8,0x00,0xe3,0x3a,0xb1,0xe7,0xdc,0x09,0x72,0xa0,0x0d,0xcf,0xac,0xd7, + 0x52,0x86,0x49,0xf8,0x35,0xf0,0x3d,0x7e,0xf4,0x8c,0x05,0x9a,0x16,0x33,0x99,0x41,0x43,0x39,0xf4,0xc2, + 0xe8,0x7f,0x9e,0x48,0x50,0x8c,0xa4,0x67,0xd7,0xd7,0x7a,0xbb,0x2e,0xe8,0xc0,0xae,0x83,0x06,0xf4,0x46, + 0x7a,0x42,0x14,0x03,0x9f,0xc9,0x32,0x72,0xa2,0xa6,0xe1,0x78,0x00,0x6c,0xfa,0x02,0xe1,0x3e,0x1c,0x57, + 0x3b,0xc0,0x06,0x49,0x41,0x81,0xd4,0xf8,0x43,0x9a,0xb3,0x5d,0x81,0xef,0x1d,0xc5,0x8b,0xf4,0x48,0x03, + 0x8a,0x17,0xf4,0x88,0xed,0xc9,0x6a,0x9e,0x00,0x76,0xdd,0x63,0x6a,0xf7,0x08,0xd4,0x63,0x23,0x75,0x93, + 0xa4,0x60,0x1b,0xf4,0xc4,0x21,0x8c,0x5b,0xde,0x38,0xe5,0x9c,0xe7,0x33,0x5c,0xbb,0x05,0xba,0x6d,0x38, + 0x22,0x1c,0x36,0xbb,0x51,0x81,0xc1,0x9f,0xed,0x49,0x55,0xf2,0xaf,0x74,0xa6,0xea,0x81,0xc8,0x69,0x5a, + 0x1a,0xdf,0xd1,0x86,0xd6,0xcd,0xb8,0xa2,0xd6,0x3d,0xb8,0x0e,0xc0,0x2e,0x62,0xcb,0x77,0xd6,0xc4,0x3c, + 0xee,0xc7,0x0f,0xb4,0x73,0x04,0x6d,0xa6,0x13,0x57,0x9e,0xd5,0xe5,0x03,0xae,0x51,0xd9,0x00,0xb4,0x18, + 0x14,0xd1,0x32,0x5c,0xee,0x49,0xf8,0xc5,0x8c,0xe3,0x64,0xe6,0x35,0xcb,0x7e,0x42,0x38,0x2a,0xed,0x46, + 0xcb,0x2d,0xa0,0x23,0x61,0xff,0xd1,0x49,0xaf,0x06,0xb5,0xe2,0xeb,0x72,0x3a,0xcf,0xe1,0x68,0xe0,0xc8, + 0xf8,0x9c,0x08,0x9c,0x6c,0x11,0x2e,0x69,0x46,0x7a,0x84,0x32,0xfc,0xe5,0x82,0xc0,0x7b,0xe2,0x7a,0x77, + 0xc8,0x38,0xb8,0x5d,0x99,0x2f,0x5a,0xe1,0x4f,0x63,0x13,0xea,0x20,0x82,0x16,0x28,0x2d,0x86,0x05,0x32, + 0x21,0x5e,0xa6,0x92,0xc2,0xdc,0x22,0xad,0x2e,0x35,0x44,0xb2,0x23,0x10,0x79,0xc4,0xcc,0x49,0x57,0x10, + 0x3a,0x73,0x17,0x18,0x54,0x85,0x14,0x4a,0x67,0xa9,0x7b,0x26,0xb5,0x86,0x25,0x6a,0x39,0x9c,0x0f,0x16, + 0x77,0xd4,0x32,0xe8,0x44,0xc1,0x26,0xf5,0x2f,0x94,0x52,0xa1,0x96,0xda,0x27,0x93,0x2a,0xb8,0xa6,0xf6, + 0x09,0x29,0x40,0x3d,0xb5,0xc4,0x74,0xe1,0x62,0xa1,0x7a,0x2b,0x36,0xdd,0x22,0xa6,0xda,0x77,0x9d,0xb8, + 0x6d,0x01,0xc9,0xcf,0x82,0xf0,0x46,0x31,0x58,0x4e,0x99,0x39,0x97,0xd5,0x6b,0x45,0x33,0xb7,0x2e,0x9d, + 0x5e,0x7a,0xc2,0x3b,0xb3,0x04,0x11,0x78,0x4d,0x82,0x60,0x96,0x65,0x52,0x32,0xd3,0x42,0xd0,0xea,0x36, + 0xa9,0xbd,0x33,0xd4,0x4b,0x77,0xbb,0xaa,0x9e,0xa0,0x3d,0xf8,0x9d,0x84,0x36,0xd9,0x76,0x27,0xf2,0x8e, + 0x3c,0xc7,0x11,0x43,0xe7,0x6e,0x6b,0x9e,0xc3,0x5a,0x9e,0x7b,0xad,0x79,0x4e,0x4f,0x6b,0x99,0xee,0xb7, + 0x66,0xa2,0xd3,0xb7,0x39,0x52,0x3a,0xa3,0xee,0x7e,0x79,0xcc,0xd3,0xb5,0xbb,0x29,0xdc,0xd9,0x1a,0xcf, + 0xe9,0x20,0xb4,0x93,0xa0,0xef,0xbc,0xab,0x29,0xa2,0x1a,0x08,0xd9,0x18,0xd4,0x0d,0xe6,0x48,0xce,0xd3, + 0x36,0x13,0xba,0xea,0x9c,0x36,0x50,0xda,0xd3,0x07,0xb1,0xd1,0xd5,0x76,0x79,0x60,0xcf,0x38,0xc1,0xb8, + 0xad,0xac,0x9c,0xdc,0x7a,0x96,0xb5,0x9f,0xc2,0xbb,0xc6,0x1f,0xa1,0x81,0x38,0xe2,0xb2,0xfa,0x7a,0x19, + 0xf4,0x04,0xf1,0x8f,0x75,0x86,0x28,0x3a,0x05,0x66,0x86,0xeb,0x85,0xd1,0x07,0xf1,0x7e,0x18,0x1a,0xe7, + 0x45,0x6d,0xfd,0xdc,0xb6,0x4f,0xc1,0x5b,0x04,0x32,0xf9,0x4b,0xd3,0xd0,0xe1,0x03,0x77,0x37,0x1b,0x18, + 0x04,0x73,0x2c,0x4e,0xbc,0xe0,0x4f,0xce,0xcf,0x67,0xd4,0x0d,0xe9,0x08,0xd5,0xab,0xe7,0xeb,0x33,0x0a, + 0x88,0xf0,0xc4,0x14,0xb9,0xfb,0x39,0x45,0x6a,0x32,0x15,0x53,0xf2,0x5e,0xe8,0xde,0xbc,0xb7,0x8c,0x25, + 0x5d,0x18,0xf8,0xfe,0x8c,0x26,0x6a,0x82,0x19,0xd3,0xc4,0x97,0x7f,0xa2,0xa4,0x16,0xd4,0x98,0xa2,0xcd, + 0xe5,0xff,0xd4,0xfa,0x54,0xa0,0x01,0x8f,0x40,0x4d,0xe2,0xe6,0x13,0xa7,0xc8,0x80,0x70,0x0e,0x76,0x16, + 0xf1,0x75,0x84,0x60,0x9a,0x85,0xd5,0x97,0xc9,0xbd,0x20,0xbc,0x9d,0xcc,0x38,0xd2,0x84,0x74,0x13,0x4d, + 0xb6,0xfa,0x4f,0x37,0xd4,0x46,0xe9,0xcc,0x78,0x94,0xfc,0x09,0x6a,0x63,0x07,0x17,0x7f,0xba,0xef,0xd0, + 0x2f,0x13,0x4e,0xc0,0x30,0x3a,0xb7,0xcc,0x07,0x6f,0x17,0x3d,0x27,0x2e,0x92,0x07,0x8e,0xae,0xb3,0x12, + 0xd1,0xb1,0x76,0xa5,0x0a,0xd6,0x05,0x1a,0x26,0xb0,0x4f,0xee,0x1b,0xa7,0xfa,0xbe,0x37,0x4d,0x71,0x3b, + 0x67,0x69,0x5a,0x9a,0x36,0xed,0x86,0xff,0xf1,0xf5,0x0b,0xfe,0x2c,0xfd,0x78,0x8e,0x6c,0xec,0xed,0x2b, + 0x59,0x42,0xab,0x44,0x53,0xba,0x4c,0xe9,0xd3,0x80,0xc2,0x7b,0x7f,0x4f,0xee,0xab,0x3c,0xfb,0xa9,0xce, + 0xc6,0xd4,0x6d,0x78,0x1b,0x1d,0x63,0xda,0xa5,0xc0,0x2d,0xa0,0x7f,0x72,0x7c,0xfc,0x85,0x10,0x1a,0xc9, + 0xe4,0x08,0x7e,0x41,0xcb,0x18,0xae,0xd4,0xfa,0x3b,0x54,0xc2,0xd4,0x32,0x84,0x50,0x29,0xd8,0x3d,0x24, + 0xdd,0x35,0xf0,0xc4,0x30,0xb8,0xb3,0x84,0x4f,0xd5,0xbf,0xb8,0x64,0x3b,0x9d,0x06,0x9b,0x53,0x1d,0xa9, + 0x9f,0x9e,0x37,0x8e,0x86,0x0c,0x33,0x56,0xac,0xed,0x56,0x78,0x0c,0x4d,0xaf,0x7f,0xea,0xd4,0x85,0x33, + 0xc3,0x16,0x32,0x7f,0xb3,0xd9,0x13,0x37,0xf0,0x4d,0x4a,0x9f,0x61,0x75,0x87,0xfc,0x77,0x80,0xae,0x31, + 0x2e,0x4c,0x0e,0x67,0x84,0xe9,0xf4,0xdd,0xe3,0xe3,0x20,0x30,0xdb,0x51,0x58,0xa4,0x5b,0x21,0xaf,0xd6, + 0x8a,0xc0,0x5c,0x1b,0xd7,0xd1,0xda,0x7b,0xc9,0x6e,0xa8,0xd3,0x5b,0x82,0x5f,0xf2,0x2c,0xb9,0x21,0x30, + 0xeb,0x1e,0xaf,0xca,0x3a,0x11,0x4c,0x6c,0xb9,0x2e,0x12,0x25,0x55,0xe8,0x67,0x44,0x60,0xe4,0x48,0xc3, + 0xb7,0xd5,0x59,0x20,0x90,0x34,0xa7,0x0e,0x33,0x1d,0x61,0xb1,0x5f,0xde,0x4e,0x5e,0x17,0x47,0xf5,0x3a, + 0xc4,0xad,0x6d,0x6a,0xfc,0xee,0xdc,0xda,0x4c,0xaa,0xbd,0x17,0x34,0x9a,0x42,0x9f,0x6f,0xe1,0xe1,0x76, + 0x80,0x5e,0xdf,0x26,0xdf,0xb0,0x21,0x4f,0x2a,0xd2,0x54,0xa2,0x8d,0x4f,0x92,0x7b,0xe2,0xaf,0x0b,0xce, + 0xf5,0xff,0xc7,0x09,0x46,0xbd,0xb8,0x27,0x40,0x49,0xc2,0xed,0x5b,0x56,0xff,0x36,0xb8,0x35,0xfc,0x7f, + 0x0f,0x48,0xc1,0x72,0xbf,0x02,0x96,0x4d,0x79,0x41,0xc5,0x03,0x54,0x88,0x7a,0x96,0xe4,0x08,0xc5,0x71, + 0xa4,0xe5,0x06,0x1e,0xdc,0x6e,0x73,0xec,0x80,0x1b,0x23,0x9b,0xba,0xad,0x8d,0xed,0xce,0x40,0x92,0x16, + 0x1e,0x4e,0x90,0x37,0xf6,0x23,0x9d,0x56,0xcb,0x00,0x1e,0xd0,0xdc,0x04,0xeb,0xb1,0xcf,0xf8,0x86,0xa8, + 0x7f,0x86,0x5e,0x21,0xf5,0x90,0xd8,0x9f,0xe2,0xda,0x36,0xbc,0x3b,0x6a,0xe9,0x3b,0x07,0xdf,0x2b,0xbb, + 0x9e,0xf2,0xba,0xf4,0x94,0xcd,0xb6,0x7f,0x79,0x31,0x76,0x27,0x8e,0x09,0xf9,0xad,0x62,0x77,0x09,0x34, + 0x35,0x46,0xa2,0x71,0x43,0x10,0x44,0x14,0x4a,0xb1,0xe3,0x8b,0xd3,0xc5,0x39,0xd8,0xea,0x70,0xd5,0xc0, + 0x4e,0x24,0xeb,0x02,0x90,0x3f,0x5f,0x7e,0xf9,0xe7,0xda,0xd5,0xae,0x25,0x9c,0xf6,0xad,0x84,0xcb,0x9d, + 0x94,0x36,0xe1,0x49,0xe4,0xfd,0xcd,0xeb,0x96,0xd0,0x3b,0xda,0xfe,0x3f,0x99,0xac,0x24,0xd3,0x83,0xe3, + 0x01,0x00}; + +#endif diff --git a/src/assets/version.h b/src/assets/version.h index 4766d8a..7c0f869 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -1,13 +1,13 @@ -#ifndef __assets_version -#define __assets_version - -const uint8_t VersionMajor = 2; -const uint8_t VersionMinor = 0; -const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 10; -const char VersionBranch[] = "release/2.0"; -const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+10"; -const char VersionCommitDate[] = "2018-01-07"; - -#endif +#ifndef __assets_version +#define __assets_version + +const uint8_t VersionMajor = 2; +const uint8_t VersionMinor = 0; +const uint8_t VersionPatch = 0; +const uint8_t VersionMetadata = 12; +const char VersionBranch[] = "release/2.0"; +const char VersionSemVer[] = "2.0.0-beta.1"; +const char VersionFullSemVer[] = "2.0.0-beta.1+12"; +const char VersionCommitDate[] = "2018-01-08"; + +#endif diff --git a/src/secret.default.h b/src/secret.default.h index c0e3a70..7ac2d10 100644 --- a/src/secret.default.h +++ b/src/secret.default.h @@ -5,10 +5,6 @@ // It is included in .gitignore by default so that you won't // accidentally commit the dark secrets hidden within. -#define SecretsPresent - - - // They're not really that dark though. // Used for the Geocode API to get the local timezone diff --git a/src/server/geocode.cpp b/src/server/geocode.cpp index f0c15f5..d8f6557 100644 --- a/src/server/geocode.cpp +++ b/src/server/geocode.cpp @@ -9,7 +9,10 @@ #include #include "../debug.h" + +#ifdef SecretsPresent #include "../secret.h" +#endif struct ResponseBuffer @@ -20,6 +23,15 @@ struct ResponseBuffer }; +struct RequestArg +{ + String address; + AsyncWebServerRequest *request; + ResponseBuffer* responseData; + size_t responseOffset; +}; + + String urlencode(const String url) { String encoded; @@ -59,133 +71,161 @@ void memcpy_unaligned(void* dest, void* source, size_t length) } +void mapsGeocodeDisconnect(void* arg, AsyncClient* c); +void mapsGeocodeData(void* arg, AsyncClient* c, void* data, size_t len); + + +void mapsGeocodeConnect(void* arg, AsyncClient* client) +{ + RequestArg* requestArg = (RequestArg*)arg; + + client->onError(nullptr, nullptr); + client->onData(mapsGeocodeData, arg); + client->onDisconnect(mapsGeocodeDisconnect, arg); + + #ifdef SecretsPresent + String url = "/maps/api/geocode/json?address=" + urlencode(requestArg->address) + "&key=" + urlencode(GoogleAPIKey); + #else + String url = "/maps/api/geocode/json?address=" + urlencode(requestArg->address); + #endif + + client->write(String("GET " + url + " HTTP/1.0\r\nHost: maps.googleapis.com\n\r\n").c_str()); +} + + +void mapsGeocodeData(void* arg, AsyncClient* c, void* data, size_t len) +{ + RequestArg* requestArg = (RequestArg*)arg; + + _dln("> OnData"); + + // Store all received chunks in a linked list + ResponseBuffer* next = new ResponseBuffer; + next->data = malloc(len); + memcpy_unaligned(next->data, data, len); + next->length = len; + next->next = nullptr; + + if (requestArg->responseData == nullptr) + requestArg->responseData = next; + else + { + ResponseBuffer* prev = requestArg->responseData; + while (prev->next != nullptr) + prev = prev->next; + + prev->next = next; + } + _dln("< OnData"); +} + + +void mapsGeocodeDisconnect(void* arg, AsyncClient* client) +{ + RequestArg* requestArg = (RequestArg*)arg; + + _dln("> OnDisconnect"); + if (requestArg->responseData == nullptr) + { + requestArg->request->send(500); + return; + } + + // Send back the linked list using a chunked response + AsyncWebServerResponse *response = requestArg->request->beginChunkedResponse("application/json", [requestArg](uint8_t *buffer, size_t maxLen, size_t index) -> size_t + { + _dln("> ChunkedResponse"); + if (requestArg->responseOffset >= requestArg->responseData->length) + { + // End of the chunk, go to the next one + ResponseBuffer* next = requestArg->responseData->next; + delete requestArg->responseData; + + requestArg->responseData = next; + requestArg->responseOffset = 0; + } + + if (requestArg->responseData == nullptr) + { + // We sent the last one, clean up what remains + ResponseBuffer* next; + while (requestArg->responseData != nullptr) + { + next = requestArg->responseData->next; + + free(requestArg->responseData->data); + delete requestArg->responseData; + + requestArg->responseData = next; + } + + return 0; + } + + if (maxLen >= requestArg->responseData->length - requestArg->responseOffset) + { + // Send the remainder of the chunk + memcpy_unaligned(buffer, (uint8_t*)requestArg->responseData->data + requestArg->responseOffset, requestArg->responseData->length - requestArg->responseOffset); + requestArg->responseOffset = requestArg->responseData->length; + } + else + { + memcpy_unaligned(buffer, (uint8_t*)requestArg->responseData->data + requestArg->responseOffset, maxLen); + requestArg->responseOffset += maxLen; + } + _dln("< ChunkedResponse"); + }); + + requestArg->request->send(response); + + delete requestArg; + delete client; + _dln("< OnDisconnect"); +} + + void handleGetLatLong(AsyncWebServerRequest *request) { _dln("API :: get lat long"); + RequestArg* requestArg = new RequestArg(); + requestArg->request = request; + requestArg->responseData = nullptr; + requestArg->responseOffset = 0; + AsyncWebParameter* addressParam = request->getParam("address"); if (addressParam == nullptr) { request->send(400); + delete requestArg; return; } - String address = addressParam->value(); - if (!address.length()) + requestArg->address = addressParam->value(); + if (!requestArg->address.length()) { request->send(400); + delete requestArg; return; } AsyncClient* httpClient = new AsyncClient(); - httpClient->onError([&](void* arg, AsyncClient* client, int error) + httpClient->onError([](void* arg, AsyncClient* client, int error) { + RequestArg* requestArg = (RequestArg*)arg; + _dln("API :: get lat long: OnError"); - request->send(500); + requestArg->request->send(500); + + delete requestArg; delete client; }); - - httpClient->onConnect([&](void * arg, AsyncClient* client) - { - client->onError(nullptr, nullptr); - ResponseBuffer* responseData = nullptr; - - client->onData([&](void* arg, AsyncClient* c, void* data, size_t len) - { - _dln("> OnData"); - // Store all received chunks in a linked list - ResponseBuffer* next = new ResponseBuffer; - next->data = malloc(len); - memcpy_unaligned(next->data, data, len); - next->length = len; - next->next = nullptr; - - if (responseData == nullptr) - responseData = next; - else - { - ResponseBuffer* prev = responseData; - while (prev->next != nullptr) - prev = prev->next; - - prev->next = next; - } - _dln("< OnData"); - }); - - client->onDisconnect([&](void* arg, AsyncClient* c) - { - _dln("> OnDisconnect"); - if (responseData == nullptr) - { - request->send(500); - return; - } - - // Send back the linked list using a chunked response - ResponseBuffer* sendChunk = responseData; - size_t sendOffset = 0; - - AsyncWebServerResponse *response = request->beginChunkedResponse("application/json", [&](uint8_t *buffer, size_t maxLen, size_t index) -> size_t - { - _dln("> ChunkedResponse"); - if (sendOffset >= sendChunk->length) - { - // End of the chunk, go to the next one - sendChunk = sendChunk->next; - sendOffset = 0; - } - - if (sendChunk == nullptr) - { - // We sent the last one, clean up the linked list - ResponseBuffer* next; - while (responseData != nullptr) - { - next = responseData->next; - - free(responseData->data); - delete responseData; - - responseData = next; - } - - return 0; - } - - if (maxLen >= sendChunk->length - sendOffset) - { - // Send the remainder of the chunk - memcpy_unaligned(buffer, (uint8_t*)sendChunk->data + sendOffset, sendChunk->length - sendOffset); - sendOffset = sendChunk->length; - } - else - { - memcpy_unaligned(buffer, (uint8_t*)sendChunk->data + sendOffset, maxLen); - sendOffset += maxLen; - } - _dln("< ChunkedResponse"); - }); - request->send(response); - - delete c; - _dln("< OnDisconnect"); - }); - - #ifdef SecretsPresent - String url = "/maps/api/geocode/json?address=" + urlencode(address) + "&key=" + urlencode(GoogleAPIKey); - #else - String url = "/maps/api/geocode/json?address=" + urlencode(address); - #endif - - client->write(String("GET " + url + " HTTP/1.0\r\nHost: maps.googleapis.com\n\r\n").c_str()); - }); - - + httpClient->onConnect(mapsGeocodeConnect, requestArg); if (!httpClient->connect("maps.googleapis.com", 443, true)) { _dln("API :: get lat long: failed to connect to Google API"); + delete requestArg; delete httpClient; request->send(500); diff --git a/web/app.js b/web/app.js index 58fdd2b..2514ff1 100644 --- a/web/app.js +++ b/web/app.js @@ -298,8 +298,6 @@ function startApp() { // TODO show "now updating, please wait" console.log("Update sent"); - - }) .catch(function(error) { @@ -384,10 +382,14 @@ function startApp() self.searchingLocation = true; - axios.get('http://maps.googleapis.com/maps/api/geocode/json', { params: { address: self.triggers.time.location }}) + axios.get('/api/geocode/latlong', { params: { address: self.triggers.time.location }}) .then(function(response) { - alert(response.data); + if (Array.isArray(response.data.results) && response.data.results.length > 0) + { + var location = response.data.results[0].geometry.location; + self.triggers.time.latlong = location.lat + ',' + location.lng; + } }) .catch(function(error) { @@ -420,7 +422,6 @@ function startApp() activeTab: function(newValue) { - console.log(newValue); window.location.hash = '#' + newValue; } } diff --git a/web/dist/bundle.js b/web/dist/bundle.js index bcfef9e..04ba922 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function Lt(t){return t&&(t.Ctor.options.name||t.tag)}function It(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Ft(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Lt(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Vr=t,zr=Wr=qr=0;!ce();)ue(Hr=se())?le(Hr):91===Hr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Hr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Vr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Hn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Ai(c,s,"");for(s in d)(a=d[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function xe(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ii?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ii,l=a,f=o.length):e===Fi?u>0&&(n=Fi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ii:Fi:null)?n===Ii?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ii&&Bi.test(r[Di+"Property"])}}function Se(t,e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Te(e)}function Ie(t,e,n){Fe(t,e,n),(Pn||Rn)&&setTimeout(function(){Fe(t,e,n)},0)}function Fe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function Ve(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function He(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),xn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),$n=/\B([A-Z])/g,kn=p(function(t){return t.replace($n,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},Sn=function(t){return t},An="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:Sn,mustUseProp:Cn,_lifecycleHooks:On},En=/[^\w.$]/,Ln="__proto__"in{},In="undefined"!=typeof window,Fn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=Fn&&WXEnvironment.platform.toLowerCase(),Nn=In&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Dn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Dn,Vn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Hn=!1;if(In)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Hn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!In&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=In&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);qn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eAr&&xr[n].id>t.id;)n--;xr.splice(n+1,0,t)}else xr.push(t);Cr||(Cr=!0,z(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(St.prototype);var Lr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Lr.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=z,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Vr,Hr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",xi={create:de,update:de},$i={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Si=/\s*!important$/,Ai=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Si.test(n))t.style.setProperty(e,n.replace(Si,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Hi),v(Et.options.components,Ji),Et.prototype.__patch__=In?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&In?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Lo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for($=t.slice(v);!(co.test($)||ao.test($)||lo.test($)||fo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[S]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===L&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeLatLong:"Latitude / longitude",timeLocation:"Get latitude / longitude from location",timeLocationSearch:"Search",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeLatLong:"Breedtegraad / lengtegraad",timeLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",timeLocationSearch:"Zoeken",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{latlong:"",location:""}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},allSteps:!0,allStepsValue:0,steps:[]},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a=200&&t<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(t){c.headers[t]={}}),o.forEach(["post","put","patch"],function(t){c.headers[t]=o.merge(s)}),t.exports=c},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){return r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]}),(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===hn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return gn.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=x(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=x(l.text+c):""!==c&&f.push(x(c)):X(c)&&X(l)?f[u]=x(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Nr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=F(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function jt(t){this._init(t)}function Et(t){return t&&(t.Ctor.options.name||t.tag)}function Lt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==hn.call(n))&&t.test(e));var n}function It(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Et(a.componentOptions);s&&!e(s)&&Ft(n,o,r,i)}}}function Ft(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Dt(t,n){return{staticClass:Nt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Nt(t,e){return t?e?t+" "+e:t:e||""}function Pt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(_=t.charAt(y));y--);_&&$i.test(_)||(d=!0)}}else void 0===o?(g=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==g&&e(),a)for(i=0;i-1?{exp:t.slice(0,Jr),key:'"'+t.slice(Jr+1)+'"'}:{exp:t,key:null};for(Wr=t,Jr=Kr=Xr=0;!se();)ce(qr=ae())?ue(qr):91===qr&&function(t){var e=1;for(Kr=Jr;!se();)if(t=ae(),ce(t))ue(t);else if(91===t&&e++,93===t&&e--,0===e){Xr=Jr;break}}(qr);return{exp:t.slice(0,Kr),key:t.slice(Kr+1,Xr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function ae(){return Wr.charCodeAt(++Jr)}function se(){return Jr>=zr}function ce(t){return 34===t||39===t}function ue(t){for(var e=t;!se()&&(t=ae())!==e;);}function le(t,e,n,r,i){var o,a,s,c,u;e=(u=e)._withTask||(u._withTask=function(){pr=!0;var t=u.apply(null,arguments);return pr=!1,t}),n&&(o=e,a=t,s=r,c=Gr,e=function t(){null!==o.apply(null,arguments)&&fe(a,t,s,c)}),Gr.addEventListener(t,e,Un?{capture:r,passive:i}:r)}function fe(t,e,n,r){(r||Gr).removeEventListener(t,e._withTask||e,n)}function pe(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Gr=r.elm,function(t){if(e(t[xi])){var n=Dn?"change":"input";t[n]=[].concat(t[xi],t[n]||[]),delete t[xi]}e(t[ki])&&(t.change=[].concat(t[ki],t.change||[]),delete t[ki])}(i),q(i,o,le,fe,r.context),Gr=void 0}}function de(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function he(t){var e=ve(t.style);return t.staticStyle?v(t.staticStyle,e):e}function ve(t){return Array.isArray(t)?m(t):"string"==typeof t?Ai(t):t}function me(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=ve(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=he(i.data))&&v(r,n);(n=he(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=he(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&ji(c,s,"");for(s in d)(a=d[s])!==f[s]&&ji(c,s,null==a?"":a)}}function ge(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function _e(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Fi(t.name||"v")),v(e,t),e}return"string"==typeof t?Fi(t):void 0}}function be(t){Vi(function(){Vi(t)})}function we(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ge(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),ye(t,e)}function xe(t,e,n){var r=ke(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ni?Ri:Ui,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ni,l=a,f=o.length):e===Pi?u>0&&(n=Pi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ni:Pi:null)?n===Ni?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ni&&Hi.test(r[Mi+"Property"])}}function Ce(t,e){for(;t.length1}function Ee(t,e){!0!==e.data.show&&Ae(e)}function Le(t,e,n){Ie(t,e,n),(Dn||Pn)&&setTimeout(function(){Ie(t,e,n)},0)}function Ie(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(De(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function Fe(t,e){return e.every(function(e){return!y(e,t)})}function De(t){return"_value"in t?t._value:t.value}function Ne(t){t.target.composing=!0}function Pe(t){t.target.composing&&(t.target.composing=!1,Me(t.target,"input"))}function Me(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Re(t){return!t.componentInstance||t.data&&t.data.transition?t:Re(t.componentInstance._vnode)}function Be(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Be(Y(e.children)):t}function Ue(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[_n(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function He(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function ze(t){t.data.newPos=t.elm.getBoundingClientRect()}function We(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qe(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',Ao.innerHTML.indexOf(" ")>0}var dn=Object.freeze({}),hn=Object.prototype.toString,vn=u("slot,component",!0),mn=u("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,_n=p(function(t){return t.replace(yn,function(t,e){return e?e.toUpperCase():""})}),bn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),wn=/\B([A-Z])/g,$n=p(function(t){return t.replace(wn,"-$1").toLowerCase()}),xn=function(t,e,n){return!1},kn=function(t){return t},Cn="data-server-rendered",Sn=["component","directive","filter"],An=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],Tn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:xn,isReservedAttr:xn,isUnknownElement:xn,getTagNamespace:g,parsePlatformTagName:kn,mustUseProp:xn,_lifecycleHooks:An},On=/[^\w.$]/,jn="__proto__"in{},En="undefined"!=typeof window,Ln="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,In=Ln&&WXEnvironment.platform.toLowerCase(),Fn=En&&window.navigator.userAgent.toLowerCase(),Dn=Fn&&/msie|trident/.test(Fn),Nn=Fn&&Fn.indexOf("msie 9.0")>0,Pn=Fn&&Fn.indexOf("edge/")>0,Mn=Fn&&Fn.indexOf("android")>0||"android"===In,Rn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===In,Bn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(En)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Vn)}catch(t){}var Hn,zn,Wn=function(){return void 0===Hn&&(Hn=!En&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Hn},qn=En&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Jn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);zn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Kn=g,Xn=0,Gn=function(){this.id=Xn++,this.subs=[]};Gn.prototype.addSub=function(t){this.subs.push(t)},Gn.prototype.removeSub=function(t){l(this.subs,t)},Gn.prototype.depend=function(){Gn.target&&Gn.target.addDep(this)},Gn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eCr&&br[n].id>t.id;)n--;br.splice(n+1,0,t)}else br.push(t);xr||(xr=!0,H(ct))}}(this)},Ar.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){R(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Ar.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Ar.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Ar.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var Tr={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};kt(Ct.prototype);var jr,Er,Lr,Ir,Fr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=(a=t,s={_isComponent:!0,parent:_r,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Fr.prepatch(o,o)}var a,s,c},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==dn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||dn,t.$listeners=n||dn,e&&t.$options.props){ir.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ft(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};Rr=jt,(Ur={}).get=function(){return Tn},Object.defineProperty(Rr,"config",Ur),Rr.util={warn:Kn,extend:v,mergeOptions:F,defineReactive:A},Rr.set=T,Rr.delete=O,Rr.nextTick=H,Rr.options=Object.create(null),Sn.forEach(function(t){Rr.options[t+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Hr),Rr.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},Rr.mixin=function(t){return this.options=F(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=F(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)ut(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)lt(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Sn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Br=Rr,Sn.forEach(function(t){Br[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}),Object.defineProperty(jt.prototype,"$isServer",{get:Wn}),Object.defineProperty(jt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),jt.version="2.5.13";var zr,Wr,qr,Jr,Kr,Xr,Gr,Zr,Yr=u("style,class"),Qr=u("input,textarea,option,select,progress"),ti=function(t,e,n){return"value"===n&&Qr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},ei=u("contenteditable,draggable,spellcheck"),ni=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},oi=function(t){return ii(t)?t.slice(6,t.length):""},ai=function(t){return null==t||!1===t},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ui=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),li=function(t){return ci(t)||ui(t)},fi=Object.create(null),pi=u("text,number,password,search,email,tel,url"),di=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(si[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),hi={create:function(t,e){Bt(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Bt(t,!0),Bt(e))},destroy:function(t){Bt(t,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ht,update:Ht,destroy:function(t){Ht(t,vi)}},yi=Object.create(null),_i=[hi,gi],bi={create:qt,update:qt},wi={create:Kt,update:Kt},$i=/[\w).+\-_$\]]/,xi="__r",ki="__c",Ci={create:pe,update:pe},Si={create:de,update:de},Ai=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ti=/^--/,Oi=/\s*!important$/,ji=function(t,e,n){if(Ti.test(e))t.style.setProperty(e,n);else if(Oi.test(n))t.style.setProperty(e,n.replace(Oi,""),"important");else{var r=Li(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:fi[t]=/HTMLUnknownElement/.test(e.toString())},v(jt.options.directives,qi),v(jt.options.components,Gi),jt.prototype.__patch__=En?zi:g,jt.prototype.$mount=function(t,e){return t=t&&En?Rt(t):void 0,r=t,i=e,(n=this).$el=r,n.$options.render||(n.$options.render=tr),st(n,"beforeMount"),new Ar(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,st(n,"mounted")),n;var n,r,i},jt.nextTick(function(){Tn.devtools&&qn&&qn.emit("init",jt)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,to=p(function(t){var e=t[0].replace(Qi,"\\$&"),n=t[1].replace(Qi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),eo={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=re(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=ne(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},no={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=re(t,"style");n&&(t.staticStyle=JSON.stringify(Ai(n)));var r=ne(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},ro=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",uo=new RegExp("^<"+co),lo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Do(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(ho.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(vo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(po);if(y){n(y[0].length);continue}var _=t.match(fo);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(uo);if(e){var r,i,o={tagName:e[1],attrs:[],start:l};for(n(e[0].length);!(r=t.match(lo))&&(i=t.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=l,o}}();if(w){!function(t){var n,i,l,f=t.tagName,p=t.unarySlash;s&&("p"===o&&oo(f)&&r(o),u(f)&&o===f&&r(f));for(var d=c(f)||!!p,h=t.attrs.length,v=new Array(h),m=0;m=0){for(x=t.slice(v);!(fo.test(x)||uo.test(x)||ho.test(x)||vo.test(x)||(k=x.indexOf("<",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=""),e.chars&&$&&e.chars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:go,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||ko(t);Dn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Xt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e,n,r,i=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(r=i,N.test(r)?(n=(e=i).charCodeAt(0))!==e.charCodeAt(e.length-1)||34!==n&&39!==n?e:e.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.formatter=this.$root.$i18n.formatter,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[S]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===L&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c,u=this._path.getPathValue(e,i);if(Array.isArray(u))return u;if(r(u)){if(!n(e))return null;if("string"!=typeof(c=e[i]))return null}else{if("string"!=typeof u)return null;c=u}return c.indexOf("@:")>=0&&(c=this._link(t,e,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s,c=i.apply(void 0,o),u=c.locale||e,l=this._translate(n,u,this.fallbackLocale,t,r,"string",c.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[t].concat(o))}return this._warnDefault(u,t,l,r)},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){var n;(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeLatLong:"Latitude / longitude",timeLocation:"Get latitude / longitude from location",timeLocationSearch:"Search",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeLatLong:"Breedtegraad / lengtegraad",timeLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",timeLocationSearch:"Zoeken",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{latlong:"",location:""}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},allSteps:!0,allStepsValue:0,steps:[]},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.triggers.time.latlong=n.lat+","+n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 39368cd..bccb7c4 100644 --- a/web/index.html +++ b/web/index.html @@ -91,9 +91,11 @@ - - - +
+ + + +
From 381a77e9cea5f8e6d5b96aef85068e3856d81d48 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Mon, 8 Jan 2018 21:58:22 +0100 Subject: [PATCH 12/43] Removed geocode proxy, it was causing too many exceptions - replaced with a Maps API key in the newly added system settings --- API.md | 4 - devserver.js | 15 - src/assets/js.h | 4322 +++++++++++++++++++-------------------- src/assets/version.h | 4 +- src/charproperties.cpp | 10 +- src/config.h | 32 +- src/global.cpp | 3 + src/global.h | 4 + src/main.cpp | 29 +- src/secret.default.h | 18 - src/server/geocode.cpp | 240 --- src/server/geocode.h | 13 - src/server/settings.cpp | 32 + src/settings/system.cpp | 147 ++ src/settings/system.h | 67 + web/dist/bundle.js | 2 +- 16 files changed, 2445 insertions(+), 2497 deletions(-) delete mode 100644 src/secret.default.h delete mode 100644 src/server/geocode.cpp delete mode 100644 src/server/geocode.h create mode 100644 src/settings/system.cpp create mode 100644 src/settings/system.h diff --git a/API.md b/API.md index 8c22ce1..b7f674d 100644 --- a/API.md +++ b/API.md @@ -117,10 +117,6 @@ An optional array 'startTime' can be included which specifies the delay, for eac } ``` -## GET /api/geocode/latlong - -Internally calls the Google Maps Geocode API and returns the results as-is. Only accepts the 'address' GET parameter. If configured in the firmware, the API key is added as well. This prevents the API key from being exposed. - ## POST /api/firmware Uploads new firmware. The bin file should be posted as a multipart/form-data file attachment. Name is not relevant. \ No newline at end of file diff --git a/devserver.js b/devserver.js index d8fe021..30689cc 100644 --- a/devserver.js +++ b/devserver.js @@ -84,21 +84,6 @@ app.post('/api/steps', function(req, res) }); -app.get('/api/geocode/latlong', function(req, res) -{ - res.send({ - results: [{ - geometry: { - location: { - lat: 51.5719149, - lng: 4.768323 - } - } - }], - status: 'OK' - }); -}); - app.listen(3000, function() { console.log('Development server listening on port 3000') diff --git a/src/assets/js.h b/src/assets/js.h index 15d1e68..074bee5 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2172 +4,2160 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb6,0x2e,0xfa,0x57, - 0x24,0x5c,0x1d,0x19,0x68,0x96,0x68,0xc9,0x4e,0xfa,0x74,0x40,0x23,0xbc,0xb6,0x6c,0xc7,0x4e,0x3c,0xc5, - 0x53,0x92,0x96,0xd9,0x5c,0x10,0x59,0x94,0x60,0x93,0x00,0x03,0x80,0x1a,0x22,0xf2,0xfe,0xf6,0xb7,0xbf, - 0x5d,0x23,0x40,0xc8,0x49,0xce,0x3a,0xeb,0x2d,0x2f,0x8b,0x40,0x55,0xa1,0xc6,0x5d,0xbb,0xf6,0x5c,0xbb, - 0xb3,0x55,0x3e,0xa9,0xb3,0x22,0x0f,0x6b,0x21,0xa3,0x9b,0xa0,0x38,0xfd,0x2c,0x27,0x75,0x90,0x24,0xf5, - 0xf5,0x52,0x16,0xb3,0x1d,0x79,0xb5,0x2c,0xca,0xba,0xda,0xdf,0xdf,0xca,0x59,0x14,0xd3,0xd5,0x5c,0x0e, - 0xd5,0x4f,0x5f,0x97,0x4b,0x64,0x18,0xc5,0x81,0xa9,0xd3,0x15,0x9e,0xca,0x59,0x96,0xcb,0xfd,0x7d,0xf5, - 0xdb,0x4f,0x17,0xd3,0xa1,0x7a,0x0c,0x4f,0x46,0xd4,0x6e,0x7c,0x5b,0xbb,0x43,0xfd,0xdb,0x4f,0xaf,0xb2, - 0x42,0xd5,0x5e,0xbb,0xe7,0x4d,0x58,0x9f,0x67,0x95,0xb0,0x43,0x88,0x6e,0x4a,0x59,0xaf,0xca,0x7c,0xc7, - 0x0d,0x2a,0xba,0x31,0xcf,0x3b,0x32,0x2c,0xa3,0x9b,0x6c,0x16,0xe6,0x27,0xe5,0x28,0xd2,0x05,0xf1,0x6c, - 0xfa,0x3e,0xb8,0x48,0xcb,0x9d,0x2c,0x41,0x52,0x72,0xa3,0xd3,0xe2,0x9b,0x8d,0xc8,0xa6,0x71,0x29,0xe6, - 0x45,0x3a,0x95,0xd3,0x78,0xf7,0x68,0x33,0xd0,0x9f,0xd6,0xf8,0x74,0x92,0xce,0xe7,0x61,0x66,0x6a,0x10, - 0x99,0x70,0xcf,0x32,0xa2,0x17,0xf5,0x59,0xb2,0x7b,0xe8,0x32,0x36,0x68,0x26,0x4f,0x6e,0x6c,0x45,0xb2, - 0xbf,0x48,0x68,0xf2,0xfb,0x93,0x24,0xa7,0xbf,0xcb,0x24,0x08,0x84,0x0c,0x0f,0x69,0x70,0x27,0xfe,0xda, - 0x88,0x3c,0xba,0xa9,0xed,0x34,0xe7,0xe1,0x51,0xb4,0x11,0xed,0xfc,0x60,0x55,0xc9,0x9d,0xaa,0x2e,0x33, - 0x9a,0xc9,0x81,0x1d,0x77,0x89,0x59,0x40,0xa3,0x32,0xc9,0xe5,0xe5,0x4e,0x4a,0xaf,0x22,0x4f,0x8a,0x30, - 0xed,0x2f,0xcb,0xa2,0x2e,0x30,0xe1,0xfd,0x52,0xfe,0xbe,0x92,0x15,0x40,0xc0,0xf4,0x0a,0xfd,0xad,0x65, - 0x3e,0x0d,0x73,0xe1,0x15,0x54,0xa3,0xb2,0x39,0xf4,0x96,0x6f,0xf4,0xb4,0x85,0xf7,0x22,0x51,0xd0,0xcf, - 0xfd,0x48,0xa4,0xf4,0xf3,0x6d,0x24,0xd0,0xcd,0x7f,0x46,0x62,0x92,0x94,0x61,0x15,0x0d,0x26,0xfd,0x87, - 0xbc,0x6e,0xa9,0x98,0xf4,0x27,0xa5,0x4c,0x6b,0x99,0xf8,0xcb,0xa4,0x9b,0x2d,0x69,0x36,0x17,0xb2,0x3c, - 0x93,0x61,0x25,0xea,0x88,0xc6,0x38,0xe9,0x1f,0xa7,0xf9,0x44,0xce,0xd1,0x00,0x55,0x6d,0x5e,0xdf,0x17, - 0x5f,0x64,0x8e,0xb4,0x6f,0x90,0x96,0x55,0xae,0xd0,0x21,0x12,0x68,0x59,0xba,0x6a,0x7f,0x53,0x16,0x8b, - 0xac,0x92,0xc8,0xa6,0x54,0x54,0x5e,0x2d,0xa9,0x2b,0x53,0x7c,0x47,0x1d,0x76,0xf3,0x3b,0x71,0xcf,0x7d, - 0x02,0xd4,0x74,0x35,0xaf,0x93,0xc9,0xdf,0x9a,0x70,0xd5,0x62,0x70,0xa2,0x00,0x7b,0xe7,0x61,0x59,0xa6, - 0xd7,0x23,0x82,0xef,0x64,0xa5,0x80,0x86,0x9a,0xb7,0x1f,0x64,0x5e,0x17,0xf3,0xd5,0x7c,0xbe,0x4b,0xdb, - 0xa0,0x63,0xc7,0xd5,0xee,0x8b,0xa2,0xa3,0x89,0xa7,0x3a,0xf3,0xb6,0x56,0x52,0xb5,0xc5,0xb1,0x03,0x6c, - 0x1b,0x17,0x45,0x36,0xdd,0x39,0xc4,0x73,0x44,0xe9,0xa6,0xc5,0x5d,0xdb,0xe2,0xfe,0x7e,0x58,0x27,0x27, - 0xf5,0x28,0x12,0x18,0x54,0x34,0x2b,0xca,0x50,0x81,0x2f,0x01,0x74,0x52,0xf7,0xe7,0x32,0x3f,0xab,0xcf, - 0x07,0xf9,0x83,0x6c,0x90,0xf7,0x7a,0x91,0x54,0x8d,0xa2,0x7a,0x51,0x9f,0xe4,0x23,0x91,0xd3,0x1a,0x0e, - 0xe4,0x9c,0x26,0xc9,0x7c,0x59,0xec,0x64,0xb4,0x75,0xa2,0xd7,0xdc,0x90,0x07,0x80,0xe7,0x69,0xf5,0xfa, - 0x32,0xa7,0xf5,0x59,0xca,0xb2,0xbe,0xd6,0x9d,0x17,0x45,0xb4,0xbf,0xdf,0xac,0xb4,0x18,0x89,0x82,0x2a, - 0x65,0xa0,0xab,0x14,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0x56,0xc9,0x56,0xa5,0x75,0xf1,0x8e,0xd6,0x26,0x3f, - 0x1b,0xb8,0x85,0xbd,0xc9,0x2a,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xd1,0x6a,0x36,0x93,0x65,0xbc,0x0d,0x2d, - 0xcd,0xb5,0x53,0xc5,0x5a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xb4,0x28,0x17,0x8f,0xd3,0x3a,0xed, - 0xaa,0x6b,0x95,0x2b,0x7c,0x37,0x75,0x93,0x6b,0x8a,0xef,0xef,0xd7,0x34,0x29,0x55,0x0d,0x08,0xf6,0x92, - 0x37,0xcd,0x0e,0x7e,0xcc,0xe4,0xe5,0x5f,0xac,0xd8,0xfb,0x6a,0x7f,0xdf,0x7b,0xa1,0x6d,0x82,0x5a,0x86, - 0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x5d,0xf7,0x4f,0xf5,0x57,0xe6,0xc9,0xef,0x98,0xf7,0x19,0xfa,0xa6,0xa6, - 0xb6,0xab,0x4b,0x15,0xe7,0xf8,0x70,0x4b,0xc5,0x5f,0xad,0x16,0xa7,0xdd,0xd3,0x9c,0x73,0x4e,0xab,0xb8, - 0x5a,0xcb,0x98,0x10,0x6a,0xf5,0xc1,0x8c,0xb0,0xe3,0xe3,0x1d,0x05,0xc0,0xb4,0x28,0xfc,0x15,0xcd,0x9b, - 0xfc,0xda,0x4a,0x22,0x7f,0x7b,0x09,0x9f,0x66,0xf3,0xaf,0x7e,0x85,0xfc,0x8e,0x85,0x9f,0x17,0xa7,0x5f, - 0xfb,0x0a,0xf9,0x1d,0x6d,0xe9,0x0f,0xe2,0x42,0x4d,0xa1,0x4c,0x17,0x5d,0xc3,0x02,0x46,0xd8,0xdf,0xa7, - 0x5d,0xde,0x5f,0x66,0x4b,0xc9,0x5f,0x7e,0x78,0xfb,0xe2,0x9d,0x4c,0xcb,0xc9,0xf9,0x9b,0xb4,0x4c,0x17, - 0xd5,0x5f,0x84,0x85,0xd6,0x57,0x2d,0x58,0x6b,0xe5,0xaa,0x65,0x4d,0xf3,0x69,0x5a,0x4e,0x1f,0x95,0xc5, - 0x65,0x25,0xcb,0x27,0xf9,0x45,0xbc,0x75,0xbe,0x86,0x5e,0x4b,0x76,0xd9,0xf2,0xf4,0x22,0x3b,0x4b,0xeb, - 0xa2,0x5c,0xaf,0x83,0xb7,0x32,0x9d,0xd4,0xaf,0xd2,0x3a,0xbb,0x90,0xd4,0x95,0xc4,0x66,0x61,0x6f,0x4e, - 0x57,0x13,0x8c,0xad,0xab,0xb3,0x97,0x59,0x3e,0x2d,0x2e,0xbb,0xf3,0xa6,0xc5,0x64,0xb5,0x90,0x39,0x2d, - 0x33,0xa1,0x92,0x27,0xe9,0xe4,0x3c,0x4e,0x05,0x1f,0x14,0xb6,0x7b,0x3b,0x75,0xd8,0x38,0xed,0xa5,0x28, - 0x3b,0x08,0x1a,0x1c,0xef,0x1d,0xb8,0x55,0x0e,0xf9,0xdc,0xaf,0x99,0x3a,0x00,0x45,0xc2,0xaf,0x72,0xe3, - 0x30,0x1e,0x51,0x02,0x25,0xa3,0xbd,0xb4,0x3c,0xe3,0x9e,0x54,0x06,0xfd,0x95,0x84,0xfe,0x4a,0x42,0x7f, - 0x69,0x68,0xb3,0x54,0x25,0xe6,0x2c,0xcd,0x37,0x42,0x1d,0x99,0x71,0xfb,0x00,0xd1,0x05,0x52,0xea,0xac, - 0xcd,0xe2,0x7e,0x83,0xba,0x48,0x72,0xea,0xe8,0x36,0x2d,0x25,0x87,0x55,0x88,0x8f,0x63,0xb9,0xa1,0x23, - 0x6b,0x23,0x68,0xb7,0x75,0xc2,0x50,0x4d,0xa7,0xfa,0x72,0x9e,0x4e,0x64,0x78,0xf7,0x3f,0x9f,0xaa,0x7f, - 0xdc,0x15,0x41,0x10,0xb9,0x24,0x4a,0xd9,0xe3,0xa4,0xcd,0xa6,0x79,0xae,0xb5,0x4e,0x35,0x87,0x3a,0x9b, - 0x85,0xda,0x94,0x16,0x4d,0xbd,0x9d,0x2a,0x90,0x19,0x8c,0x2d,0xc2,0xf6,0x5c,0x45,0x98,0x43,0x9a,0xb0, - 0xdc,0xce,0x1d,0xcd,0x1b,0x4f,0xb5,0x3f,0x75,0x96,0xc4,0xea,0xa7,0xcb,0xe5,0xfc,0x9a,0x47,0xbb,0xdd, - 0x4d,0xbb,0xd4,0xde,0xa0,0x77,0x77,0xeb,0xfe,0xa4,0x20,0x00,0x2f,0x09,0xca,0x8a,0xb2,0x73,0xfe,0x1a, - 0x25,0xfa,0x06,0x83,0x03,0xe7,0x75,0xa5,0x63,0xdf,0x76,0xcd,0x41,0xeb,0xc0,0xc6,0x49,0x89,0x54,0x02, - 0xfe,0xad,0x16,0x43,0x49,0xc7,0x6b,0x1f,0x74,0xc6,0x53,0xa2,0x07,0xeb,0x17,0x4f,0xba,0x97,0xb5,0x5f, - 0xcd,0xb3,0x09,0xd1,0xc8,0x04,0x01,0xea,0x31,0x3c,0x14,0x87,0x11,0xd5,0x88,0x41,0x8d,0x4d,0x7f,0x22, - 0x26,0x53,0xe5,0xe6,0x6f,0x11,0x23,0x20,0x93,0x0d,0x1d,0x53,0x11,0xb1,0xc9,0xef,0x59,0x5e,0xcb,0x72, - 0x22,0x97,0x34,0x5a,0x3a,0x17,0x35,0x05,0x18,0x33,0x89,0x28,0x4a,0x59,0x2d,0x69,0x32,0xa4,0x7a,0xdd, - 0x58,0x1a,0xef,0x9f,0x8a,0xc6,0xbb,0xa7,0x68,0xbc,0xa3,0xff,0x56,0x44,0xde,0xd1,0xbf,0x08,0xd4,0xb7, - 0xa9,0xc9,0xc6,0x6c,0x6d,0x9f,0x0a,0x4c,0x5b,0x14,0x9a,0xda,0xbb,0x59,0x95,0xf3,0xd8,0xc1,0xc0,0xe1, - 0x68,0x23,0xdc,0xdb,0xd1,0x28,0x8a,0x84,0x57,0x38,0x13,0x8d,0x01,0x89,0x9b,0x85,0xac,0xcf,0x8b,0x69, - 0x1c,0x9c,0xc9,0x3a,0xd8,0x80,0x6e,0xec,0xab,0x14,0x22,0x51,0xd4,0x03,0x91,0x02,0x2f,0x8a,0x4b,0x59, - 0x1e,0xa7,0x15,0xf1,0x0d,0x6a,0x0a,0x93,0x93,0x4a,0xa8,0xe3,0x83,0x08,0x95,0xc4,0x90,0x86,0x34,0xf2, - 0x62,0x7e,0x21,0xa9,0xcb,0x03,0x00,0xf4,0xd6,0x4c,0x99,0xc1,0xf5,0x35,0x1a,0x0a,0xfd,0x41,0xca,0xfe, - 0x2a,0xaf,0xce,0xb3,0x59,0x4d,0x88,0x7b,0xb6,0x9a,0xcf,0xb2,0xf9,0x5c,0x4e,0x05,0x36,0x22,0xb0,0x8d, - 0x9c,0x46,0xd8,0xb1,0x1d,0x35,0xaa,0xc9,0xbe,0xa5,0xca,0xe5,0xaa,0x3a,0xbf,0xbd,0xbe,0x81,0x34,0x5b, - 0x29,0xa2,0x8d,0xd7,0xaf,0xcf,0x25,0xc3,0x0f,0x77,0x22,0x12,0xf6,0xc9,0xc7,0x45,0x85,0x6d,0xe8,0x24, - 0x98,0xca,0xb9,0xac,0x65,0x20,0x78,0xea,0x44,0x70,0x4e,0x40,0x4a,0x3f,0xc5,0x12,0xcd,0x57,0xc1,0x48, - 0x34,0x00,0xde,0x2d,0x31,0x91,0x84,0x89,0x87,0xb0,0x1c,0x26,0xe3,0xd1,0xe9,0x29,0x0a,0xcd,0x7a,0xe5, - 0xeb,0x35,0x61,0x4f,0xb3,0x4a,0xb5,0xc0,0x5a,0x13,0xf2,0xa2,0x3d,0x1d,0x35,0x3a,0xb3,0x2c,0x2a,0x74, - 0x62,0xb9,0xe2,0xbf,0x69,0x3d,0x39,0xff,0xeb,0x3d,0x00,0xd2,0xfc,0x5a,0x1f,0xca,0xae,0x3e,0x88,0x29, - 0xc8,0xb5,0x5c,0x77,0xc5,0x6d,0xf3,0xf2,0x6f,0xec,0x2e,0xa0,0xa2,0xdd,0xa2,0xef,0xd1,0x29,0xea,0xec, - 0x6e,0xa6,0x9c,0x04,0xc7,0x05,0xad,0x79,0x5e,0x1f,0xbc,0xa7,0xce,0x07,0xa3,0x08,0xd0,0xdf,0x4e,0x4c, - 0xa4,0x22,0x6c,0x33,0x7f,0x93,0xf1,0x1e,0xbb,0x69,0x96,0x8c,0x03,0x20,0xc6,0x6c,0x92,0xa2,0x13,0x77, - 0xaf,0x0e,0x2e,0x2f,0x2f,0x0f,0x68,0x1a,0x17,0x07,0x34,0x2a,0x99,0x4f,0x0a,0xe2,0x39,0x69,0x1f,0x4c, - 0x92,0x9b,0x74,0x9a,0x2e,0x09,0xd2,0xe2,0xb0,0xeb,0x48,0xfd,0xf5,0xe5,0x8b,0x67,0x75,0xbd,0x7c,0xab, - 0x66,0x6a,0x88,0xfd,0xfd,0x2f,0x62,0xc5,0x3b,0x4a,0xd2,0xac,0x4f,0x64,0x45,0xd4,0x43,0xa8,0x0a,0x11, - 0x13,0x48,0xd3,0x55,0xa6,0x79,0x85,0x56,0x75,0x05,0xf1,0x49,0xe7,0x09,0x81,0xb3,0xad,0xd9,0x7b,0x2c, - 0xba,0xa3,0x96,0x19,0x69,0x22,0xc1,0xa3,0x2f,0x6d,0x5a,0xeb,0x55,0x11,0x4c,0xf6,0x15,0x84,0x99,0x2b, - 0x4a,0xf4,0x16,0xbd,0x0c,0xeb,0xb8,0x55,0x99,0x26,0x70,0x87,0x86,0xa6,0xe5,0xfc,0x16,0xe5,0x83,0xfc, - 0xb0,0x44,0x4f,0xff,0x74,0x62,0x07,0x93,0xf3,0xb4,0xac,0x64,0x9d,0xac,0xea,0xd9,0xc1,0xbf,0x02,0x80, - 0x8d,0xe1,0x33,0x68,0x9b,0x71,0xe5,0x8a,0x78,0xed,0xae,0xf3,0x73,0x55,0xe4,0x5b,0x55,0xfc,0xf8,0xee, - 0xf5,0xab,0xbe,0x42,0x90,0xd9,0xec,0x1a,0x9c,0x56,0x5c,0x6f,0x46,0xfe,0x0c,0x6b,0x74,0x7c,0xe2,0xef, - 0x06,0x70,0x6c,0x5b,0x58,0x35,0xaa,0xcb,0xeb,0x9b,0x3a,0xe1,0x1a,0x97,0x68,0x05,0x07,0xd8,0x04,0x7b, - 0x09,0x9f,0x6c,0xcc,0x16,0x41,0xed,0xd9,0x42,0x16,0xab,0x3a,0x3e,0x14,0x57,0x55,0x39,0x3b,0x2e,0x8a, - 0x2f,0x99,0x7c,0x95,0x2e,0x64,0x1c,0xfc,0xfa,0xee,0xed,0xd3,0x83,0xf7,0xaf,0x7f,0x7a,0xf2,0x2a,0xe0, - 0xbc,0x67,0x84,0x15,0x64,0xa9,0xf3,0x0e,0xfc,0xdc,0x45,0x7a,0xa5,0x97,0xf6,0x05,0x23,0xa1,0xf8,0xe0, - 0x48,0x5c,0xa4,0xf3,0x8c,0xf6,0x95,0x24,0x4a,0xb2,0x5e,0x75,0xd1,0xa9,0x3b,0xf5,0xf7,0xc9,0xbd,0xc3, - 0x43,0x3a,0x71,0x1f,0xdc,0x3f,0x3c,0xdc,0x6c,0x06,0x93,0xfe,0x39,0xb7,0x40,0x70,0x3e,0x29,0x16,0x0b, - 0xa2,0x8e,0x6f,0x1e,0x4e,0x80,0x1d,0xe3,0xad,0xa9,0x13,0x3b,0x35,0x91,0x52,0x77,0x89,0x88,0xc9,0xe8, - 0xf9,0x1f,0x77,0xff,0x11,0x6c,0xfe,0x1c,0xa1,0x35,0x91,0x88,0x6d,0x0d,0x28,0xe4,0xe6,0x6f,0xe3,0xa0, - 0xc6,0xe7,0x06,0xbb,0x54,0x51,0x03,0x7f,0xfc,0x99,0xa8,0x00,0x9b,0xbc,0xe4,0x2d,0x7e,0x3b,0x7d,0x65, - 0xfb,0x54,0xbb,0xba,0x14,0x96,0x23,0x8a,0x9a,0xc8,0x84,0x92,0xc0,0xee,0xc3,0x72,0x69,0xce,0x34,0x62, - 0x34,0x64,0x33,0x85,0x31,0x8c,0x24,0x2a,0x52,0xa8,0x39,0x61,0x89,0x15,0xf5,0xf3,0xcf,0x48,0x07,0xd7, - 0x39,0x81,0xdd,0xfe,0x9d,0x3a,0xf2,0x8f,0xcc,0x99,0x7f,0x5f,0x9f,0xf9,0xdf,0x28,0xce,0xfb,0xe8,0x10, - 0xac,0xf7,0xd7,0xa8,0x79,0xf5,0xdb,0x3f,0xad,0x8b,0xb4,0xf1,0xd2,0x3f,0xa5,0xe7,0x50,0x25,0xd0,0x1e, - 0xa6,0xaa,0xbe,0xed,0x9e,0x0e,0x47,0x6a,0x11,0x31,0xa2,0xcf,0xe9,0xd0,0xc3,0xfd,0x73,0x25,0xde,0x9a, - 0xd1,0x69,0x0f,0x7c,0x2e,0x96,0xf4,0xa0,0xd7,0x68,0x50,0xfa,0x98,0x66,0x16,0x41,0x02,0xc9,0x73,0xb1, - 0x6c,0xe3,0x5e,0x1e,0xf6,0x94,0x49,0xd7,0x26,0x5e,0x14,0xe7,0x49,0x50,0xe4,0xa0,0xde,0xae,0x89,0x6f, - 0xaa,0x25,0xed,0xdd,0xfc,0x8c,0x00,0xec,0x22,0xd9,0x3d,0x1a,0x60,0x0b,0x76,0xf0,0x42,0x6a,0x50,0x44, - 0xb9,0xe9,0xe1,0xfe,0xfa,0xb8,0x58,0x10,0xc0,0xea,0x1a,0x89,0x46,0xbc,0xcc,0xea,0xf3,0xe3,0x52,0x4e, - 0xa9,0xfd,0x2c,0x9d,0x57,0x41,0x96,0xef,0x4c,0xd7,0x6b,0x42,0x43,0x7d,0x42,0x34,0x34,0x19,0xa1,0xea, - 0x49,0xe7,0xe7,0xaa,0x43,0x90,0x2c,0x72,0x27,0x0e,0xc5,0xb4,0x5f,0xe4,0x84,0xa1,0xcf,0x88,0x8e,0xf0, - 0xa6,0x8d,0x36,0x3b,0xe7,0xe8,0x6d,0xde,0xc8,0x00,0xac,0xa6,0x2b,0x22,0xc7,0x79,0xe2,0x16,0x89,0x7a, - 0xeb,0x13,0x14,0x94,0x39,0xed,0x72,0xea,0x60,0x20,0xce,0x4c,0xea,0x32,0xad,0xaa,0xcb,0xa2,0x9c,0x22, - 0x75,0xb0,0xec,0x3f,0xa4,0xb4,0xa2,0xcc,0xfe,0xe0,0x3d,0x99,0x04,0x8f,0xd2,0x2a,0x9b,0xec,0x04,0xbd, - 0x55,0xb8,0xe8,0xd1,0xb9,0xd4,0x3b,0x8b,0x36,0x34,0x29,0xd4,0xf0,0x92,0x08,0x11,0x8f,0xfc,0xf2,0x00, - 0x53,0x14,0x6a,0x9c,0xd4,0x89,0x25,0x63,0x5f,0xfb,0xf0,0x4e,0x96,0x34,0x1d,0xd9,0x1f,0x44,0xe6,0x8a, - 0x5d,0x02,0x2c,0xfa,0x50,0xf7,0xbe,0x36,0x4f,0x62,0x7a,0x72,0x3e,0xf2,0x07,0x83,0xd6,0x08,0xd4,0xbf, - 0xa1,0x0d,0x30,0x65,0x22,0xfb,0x1a,0x88,0x87,0xc6,0x70,0x81,0x1d,0x00,0xd9,0xd6,0xb4,0x5f,0x31,0x2a, - 0x5a,0xaf,0xa7,0x96,0xd6,0x22,0xfc,0xbf,0xbf,0x7f,0xa8,0xbf,0xb1,0x49,0x44,0x97,0x4d,0xe5,0xd5,0x6b, - 0x5a,0xd4,0x19,0x64,0x02,0x41,0x14,0xa9,0x19,0xa2,0x71,0x12,0x3a,0x79,0x38,0x9f,0x1b,0x44,0xac,0x30, - 0xa2,0x5a,0xb7,0x61,0x4a,0xc3,0xed,0xcc,0xc6,0x79,0xc0,0x72,0xab,0x32,0xb9,0x61,0x4a,0xa3,0xb6,0x8d, - 0x01,0xe8,0x88,0x0d,0x00,0x32,0x03,0x87,0xdc,0xcc,0x18,0xba,0x4e,0xc5,0xee,0xf1,0x3d,0x95,0x15,0x6a, - 0x24,0xf1,0xd1,0xbd,0x7b,0xf7,0x13,0x37,0xb2,0xe1,0xbd,0xc3,0x6f,0x62,0xf3,0xa2,0xcb,0xa0,0xf8,0x56, - 0xb9,0xe0,0x55,0xb1,0xa3,0xe1,0x3e,0xb0,0x1f,0x70,0xc5,0x7a,0xc3,0xc4,0xb9,0x20,0x2e,0x68,0x96,0x9d, - 0x11,0x89,0x64,0x58,0x82,0xe9,0x66,0x90,0x61,0x9b,0x11,0xf2,0x11,0x04,0x97,0x34,0xa0,0x8d,0x02,0x2d, - 0x59,0x96,0x45,0xe9,0xaf,0xc5,0x3c,0x9c,0x84,0xc1,0x2b,0x59,0x13,0xb8,0x7c,0xd9,0x79,0x82,0xdc,0x40, - 0xd4,0x82,0xa7,0x60,0x1a,0xd9,0x8f,0x6f,0x03,0x4b,0xfe,0x5a,0xa7,0xef,0xd0,0x2e,0x0a,0x7a,0x76,0xd5, - 0x7b,0xc1,0xa2,0xda,0x91,0x57,0x13,0x29,0x41,0xda,0x50,0x9d,0xc1,0x93,0xe3,0xd7,0xaf,0x5e,0x3d,0x7c, - 0xf4,0xfa,0xed,0xfb,0x27,0x8f,0x83,0x46,0xed,0x65,0xbf,0x4b,0x8a,0x11,0xea,0xa5,0xbc,0x06,0xce,0x22, - 0x36,0x66,0x9c,0x10,0x10,0xb6,0xb6,0xa1,0xdb,0x81,0x11,0xd8,0xc1,0xe6,0xb1,0x38,0xbc,0x66,0xe8,0x0a, - 0xdb,0xe9,0x51,0xac,0x98,0x88,0xc1,0x98,0xc0,0x6d,0x79,0xa2,0xb2,0xdd,0x89,0x39,0x4a,0xc6,0xbc,0x23, - 0x02,0x3a,0xef,0xf5,0x06,0x56,0x99,0x0c,0x3b,0x40,0xe3,0x06,0xcf,0x2f,0x5b,0xfc,0xad,0x15,0x6d,0xcd, - 0x08,0x50,0x26,0x1a,0x59,0x01,0xc1,0x04,0x1a,0xd7,0x7b,0x1c,0xcd,0xd0,0xa2,0x35,0x39,0xc2,0xba,0xb6, - 0xda,0xa2,0xd5,0xab,0xd5,0x09,0xd5,0x1a,0x31,0x75,0x79,0xda,0x4e,0x4b,0xb0,0xf3,0x9a,0x00,0xc9,0x44, - 0xc5,0xb4,0x91,0xd4,0x02,0x59,0x4d,0x62,0x28,0xf9,0x72,0x80,0x93,0x7a,0x1b,0xac,0xa3,0xfa,0x9c,0x96, - 0x83,0x78,0xd7,0x4e,0xa6,0xbc,0xc8,0x1f,0x17,0x97,0x8c,0xd6,0xde,0x68,0x5c,0x46,0xc8,0xba,0x9f,0x4e, - 0xa7,0x4f,0x2e,0x40,0x5e,0x64,0x15,0x8d,0x9f,0x46,0x12,0x18,0x4c,0x47,0x50,0xd0,0xf1,0x4d,0x24,0x6e, - 0xa9,0xfc,0xc3,0xb2,0x5d,0xf5,0x8a,0x53,0xdc,0xd3,0x9f,0xb6,0xd5,0xac,0x02,0x73,0x34,0x71,0xba,0x08, - 0x96,0x1f,0xb8,0x57,0x30,0x2a,0xcc,0x4f,0x32,0x43,0xe6,0x9f,0x65,0x53,0x9e,0xf3,0xf4,0x94,0x0e,0x39, - 0x42,0x85,0x90,0x0b,0x6a,0xc8,0xc5,0x02,0xf9,0x6b,0x1e,0xce,0x54,0xb2,0xc0,0x7a,0xd2,0x49,0x39,0xfb, - 0x1b,0x67,0x37,0x9d,0xca,0xb7,0x50,0x16,0xf8,0x44,0x73,0xf3,0x7d,0xb5,0xd3,0xfb,0x4d,0x82,0x6d,0x90, - 0x6b,0xb4,0xb0,0xbf,0x9f,0xed,0xef,0xef,0x66,0xa1,0x79,0x8f,0x86,0xc4,0x45,0x85,0x81,0x06,0xac,0x9d, - 0x59,0x4a,0x28,0x72,0xba,0x03,0xe0,0xd9,0x51,0x05,0x76,0x40,0x1f,0xd3,0xae,0x35,0x1f,0x08,0xd3,0x82, - 0xc2,0x00,0xb9,0xd5,0x32,0xe5,0xa0,0x6f,0xc3,0xfc,0xaf,0x8f,0xe6,0xe8,0xf6,0xd1,0x08,0x62,0x96,0xd4, - 0x88,0x52,0x3e,0x32,0x19,0xeb,0x80,0x7b,0xb7,0x0a,0xa5,0xd4,0x16,0xfb,0x9f,0x48,0xba,0xc0,0x59,0x12, - 0xb7,0xe3,0x84,0x6a,0x6a,0x48,0x09,0x65,0x80,0xc0,0xea,0x63,0xcc,0x49,0xae,0x36,0x8c,0x92,0x7a,0x94, - 0xde,0xe6,0x49,0x32,0x51,0xff,0x3d,0x51,0x8d,0x51,0x0a,0x32,0xb3,0xf1,0xe1,0xed,0xf3,0xe3,0x62,0x41, - 0x35,0x11,0x54,0x86,0xb5,0x27,0xbd,0xfb,0xaf,0x6f,0x0e,0xef,0x9e,0x65,0x22,0xf8,0xbf,0xbe,0x48,0xef, - 0xbf,0xee,0x3f,0xe4,0xc4,0xb8,0x91,0x78,0xef,0x9b,0xbb,0x67,0x22,0xd8,0x6b,0xa6,0x1d,0x73,0x41,0xd1, - 0x4c,0x3c,0x44,0xc1,0x5e,0x23,0xed,0xdb,0x47,0x5c,0xf0,0xa4,0x99,0xf8,0x98,0x13,0x47,0x41,0xe4,0xe9, - 0xfe,0xbe,0x02,0x6e,0x84,0x11,0x76,0xa5,0xd1,0xb8,0xd6,0xbc,0xaa,0x05,0x28,0xa7,0x3c,0x02,0x61,0x29, - 0xb5,0x86,0x88,0x12,0xb2,0x0e,0xc6,0x4c,0x46,0x54,0x4a,0x7a,0x2c,0x16,0x97,0xd6,0x0b,0x7e,0x32,0x1a, - 0x64,0x16,0x7f,0xca,0xd6,0xe2,0x76,0x69,0xb9,0xc0,0xc1,0x1a,0xee,0x90,0xd9,0xf4,0x50,0xf6,0x92,0xe0, - 0x84,0x86,0x22,0xfc,0x74,0x22,0xc0,0xb4,0xda,0x2b,0xeb,0x22,0xc3,0xc1,0x7b,0xf5,0x95,0xb6,0x81,0x19, - 0x4b,0x50,0x27,0xc5,0xf3,0x77,0xaf,0x4d,0x17,0xe3,0xcc,0x67,0x02,0x59,0xce,0xb5,0xcd,0xe1,0x41,0xad, - 0x0a,0xc9,0x0e,0x21,0xe7,0xa8,0x17,0x24,0x41,0x8f,0x35,0x6c,0x10,0x45,0x80,0xe0,0x4e,0xfb,0x9f,0x8b, - 0x2c,0x0f,0x83,0x7d,0x9a,0x64,0x3d,0x73,0x05,0x2a,0xea,0x25,0xe1,0xc1,0x11,0xd4,0x1d,0x8e,0x54,0x19, - 0x06,0xd1,0x90,0xfe,0xc4,0x28,0xdb,0x2b,0xa2,0x3f,0x07,0xb8,0x06,0x81,0x7f,0x12,0xa4,0xa0,0x66,0x83, - 0xd4,0x27,0xeb,0xe8,0xdd,0x1c,0x38,0x4a,0xb8,0xe4,0x25,0xf0,0x09,0x24,0x02,0x59,0xa7,0x67,0xf8,0xb9, - 0x5a,0x66,0x04,0xec,0xf4,0x34,0x23,0x84,0x07,0x86,0x4b,0xf1,0x4f,0xd9,0xec,0x60,0x51,0x4c,0xb3,0x59, - 0x26,0xa7,0x07,0x55,0x46,0x68,0x51,0xa5,0xad,0xf2,0xad,0xd4,0x79,0x5a,0xd5,0xb6,0x2c,0xde,0x8b,0x89, - 0xe9,0x03,0x71,0x97,0xe0,0xbe,0x2f,0xe9,0x20,0x47,0x0b,0x84,0x52,0xaf,0xae,0x0f,0xda,0x1d,0x2d,0x25, - 0xf1,0xf4,0x74,0x9c,0xe2,0x89,0x8e,0xa9,0x83,0x74,0x56,0xf3,0x1b,0x88,0xd9,0x03,0x1a,0x1b,0x51,0x3a, - 0xa3,0x5b,0xd8,0x0a,0x16,0x03,0xd2,0x06,0x2f,0x88,0xb3,0x71,0xfa,0xf8,0x9a,0xb8,0x76,0xb7,0xea,0xfd, - 0x8a,0x18,0xd0,0x3a,0x0c,0x3e,0xe5,0x04,0x23,0x2d,0xee,0xbb,0xf0,0x97,0x81,0x76,0x9d,0x90,0x09,0x71, - 0x65,0x65,0xb6,0xc0,0x67,0xab,0x53,0x9a,0xef,0xf0,0x90,0xd0,0x4e,0xd4,0x3c,0xab,0x45,0xbe,0x55,0xaa, - 0xe8,0x1d,0x11,0x40,0xa8,0xc3,0x33,0xa5,0x23,0x9c,0x50,0xaf,0xad,0x58,0x46,0xdf,0x27,0x87,0x7a,0xf7, - 0x0c,0x90,0x99,0x80,0x94,0x38,0x98,0x30,0x01,0xc2,0xa4,0xc0,0x90,0xbf,0x19,0xe2,0x4f,0x7c,0x32,0x8a, - 0x80,0xa1,0x68,0x0a,0xc3,0x93,0x7c,0x14,0xc5,0x36,0xa7,0x17,0x08,0xa0,0xe6,0x38,0x07,0xc3,0x9b,0x52, - 0xc6,0x5f,0x87,0x12,0x6f,0xf6,0x6e,0xa3,0xad,0x86,0xbe,0x1e,0xc0,0xe9,0x63,0xac,0xe1,0x41,0x6d,0xc5, - 0x8f,0xbc,0x03,0x69,0x00,0x0f,0x6b,0x6a,0xe7,0x74,0x45,0x3b,0x28,0x38,0xa7,0x25,0x0c,0x60,0x4b,0x40, - 0xe8,0xb2,0x8f,0x17,0x6c,0xbb,0x5b,0x8a,0xdc,0xe0,0x29,0x56,0xc5,0x04,0x0b,0x03,0x27,0xc5,0x9c,0xde, - 0xcd,0xe3,0xd0,0x3d,0x3a,0x8c,0x15,0x2b,0x4d,0x47,0x4c,0x5c,0x0d,0xc0,0x13,0x9f,0xd3,0x8f,0xa8,0x18, - 0xcf,0xc4,0x68,0x0b,0x0f,0x43,0xf3,0xe0,0xeb,0x4d,0x86,0xee,0xcb,0xb4,0x42,0x59,0xfc,0x0c,0xd5,0x8f, - 0x57,0xee,0xff,0x34,0x1a,0x00,0x0f,0xa5,0x1b,0xc1,0xa3,0xc0,0xdc,0xa1,0x8f,0xf4,0x23,0x96,0x69,0x7d, - 0xce,0xf9,0xc1,0x5d,0x2c,0x1e,0xa5,0xea,0x84,0x3e,0x84,0x42,0x0f,0xeb,0xf0,0x30,0x1a,0xba,0x44,0x94, - 0xea,0xb9,0x57,0x25,0x88,0xa7,0xb5,0x4a,0xee,0x86,0x8b,0x2a,0x93,0x6b,0x9a,0x20,0x90,0x6d,0xd1,0xdd, - 0xac,0x5f,0x43,0xda,0xe9,0x34,0x6d,0x00,0xff,0x87,0x80,0x7e,0x6c,0x72,0xa3,0x3c,0xd3,0x86,0x17,0x4f, - 0xe6,0x12,0x6f,0x61,0x90,0x06,0xf6,0x9c,0xa4,0x35,0xd2,0xbc,0x78,0xdf,0xec,0x40,0xbd,0x16,0x4e,0xfa, - 0x60,0x28,0x07,0x05,0x05,0x8c,0xeb,0x72,0x42,0x7f,0xf4,0x27,0xce,0x9d,0xdd,0x88,0x99,0x7f,0xa6,0x52, - 0xcd,0x0b,0x20,0x1a,0xf3,0xc1,0x89,0x78,0xd8,0x6c,0x08,0x4f,0x6e,0x69,0x16,0x77,0x0f,0xbf,0x7e,0x46, - 0x7b,0x3a,0x1f,0xad,0xd5,0x58,0x10,0x29,0x46,0xbb,0x3c,0x09,0x54,0x87,0x76,0x80,0xa6,0x88,0x57,0xae, - 0x76,0x52,0xea,0x4b,0xce,0xa4,0xcd,0x0e,0x66,0x36,0x9d,0x00,0x2d,0x6c,0x14,0x54,0x07,0x0f,0x1f,0x1d, - 0x3f,0x7e,0xf2,0xf4,0x87,0x67,0xcf,0x7f,0xfc,0xe9,0xc5,0xcb,0x57,0xaf,0xdf,0xfc,0xfc,0xf6,0xdd,0xfb, - 0x0f,0x1f,0x7f,0xf9,0xf5,0xb7,0x7f,0xa7,0xa7,0x13,0x62,0xe7,0xcf,0xce,0xb3,0xcf,0x5f,0xe6,0x8b,0xbc, - 0x58,0xfe,0x5e,0x56,0xf5,0xea,0xe2,0xf2,0xea,0xfa,0x8f,0xc3,0xa3,0x7b,0xf7,0xbf,0xf9,0xf6,0x9f,0xff, - 0xfd,0xaf,0xef,0x7a,0x77,0x93,0x60,0x90,0x3b,0x59,0xb4,0x23,0x3c,0x84,0x97,0xaa,0x48,0x83,0x6f,0x1b, - 0x49,0x58,0xc4,0x24,0x78,0xae,0xfa,0x75,0x6c,0xba,0x65,0x38,0xa5,0x4e,0x24,0x65,0xd4,0x6a,0x12,0x24, - 0x4c,0xa2,0xa7,0xbd,0x86,0x30,0x86,0xa0,0xad,0x4a,0x0e,0x61,0x5f,0x33,0x28,0x2c,0xf4,0xac,0x2b,0x9c, - 0x5e,0x93,0x84,0x4e,0x14,0x51,0xfd,0x17,0x11,0x4e,0x69,0x2f,0x99,0x98,0xdc,0x7f,0xde,0xdf,0x97,0xdf, - 0x7f,0xff,0xaf,0x03,0xca,0xf8,0xc7,0xbf,0x22,0x46,0x37,0x61,0x96,0xa8,0x8f,0x8f,0xa9,0xb7,0x54,0xa4, - 0xea,0x25,0xfd,0xff,0xfe,0x36,0x8a,0xbe,0xbf,0xf7,0xed,0xb7,0x9a,0x60,0xc7,0xe8,0xf2,0x81,0x4c,0xe4, - 0x83,0x07,0xff,0x5a,0x67,0xe6,0x38,0xfa,0x5f,0x46,0x20,0x37,0x97,0x65,0xd6,0x50,0xde,0x1b,0xaa,0x8d, - 0x90,0xd5,0x8d,0xb2,0xf6,0xa0,0xd3,0xbe,0xd2,0xda,0x10,0x3e,0x30,0x3b,0x68,0x24,0xa2,0x16,0x98,0xff, - 0x53,0xd6,0x06,0x04,0x98,0xfb,0xfb,0xfa,0x13,0x73,0x52,0xd1,0x77,0x18,0x0f,0x9f,0xdd,0x39,0x30,0xf3, - 0x0f,0x2f,0xdf,0x5b,0xe9,0xad,0xf0,0x20,0x3b,0xf3,0xbe,0xc5,0xfe,0xa3,0x0f,0xb3,0x46,0x81,0xc2,0x2b, - 0x30,0x65,0x01,0x0d,0x15,0x29,0x20,0xb8,0x20,0x20,0x4f,0x5d,0x5e,0x25,0x27,0xab,0x12,0x52,0x6f,0xb7, - 0x0b,0x19,0x77,0x27,0x95,0x3e,0xe3,0x07,0x3b,0x74,0xc8,0x0b,0x30,0x97,0xf1,0xd6,0xe9,0x94,0xb4,0x3e, - 0xea,0x2f,0x98,0xcf,0xc2,0x10,0xde,0xca,0xb3,0x27,0x57,0xcb,0x30,0x08,0xff,0xb3,0x1e,0x7c,0xfa,0x54, - 0xfd,0x23,0x0a,0x89,0x61,0x26,0xf2,0x2d,0x09,0x4f,0xfe,0x33,0x18,0xfd,0x23,0x0a,0x9c,0xd2,0x47,0x12, - 0x7f,0xb8,0x3d,0x57,0x27,0xf7,0x47,0x4a,0x3e,0x81,0xc6,0x17,0xc5,0x45,0xd3,0x08,0x82,0x77,0x17,0x2f, - 0x0a,0xad,0x05,0x81,0x1a,0x66,0xac,0x9f,0x17,0x97,0x61,0x74,0xf0,0xaf,0x7f,0x7e,0x23,0xbf,0x25,0x6a, - 0x3a,0x6e,0x2f,0x1a,0x64,0x4e,0xcd,0x71,0x34,0xd4,0xa4,0xdb,0xed,0xd0,0x07,0x7f,0x83,0x3c,0xd6,0x9d, - 0x3a,0x27,0xf0,0x99,0x43,0x5a,0x7c,0x32,0xf2,0x09,0x50,0x5f,0x03,0x49,0x15,0x74,0xeb,0xab,0x1b,0x15, - 0xa8,0x05,0xba,0xb1,0x9a,0x35,0x96,0x79,0x28,0xcd,0x9a,0x52,0xae,0x37,0x0a,0x2b,0x4a,0xe8,0xe0,0x08, - 0x12,0x06,0xd7,0x12,0x97,0x4f,0xb6,0x26,0xce,0x7c,0x45,0x44,0x24,0xc8,0xb6,0x56,0x92,0xe6,0xf7,0x1a, - 0x15,0x69,0x8a,0x23,0x69,0x52,0x99,0x96,0x0e,0xf1,0x6b,0xf0,0x6c,0x05,0x2c,0x99,0x2b,0x89,0x01,0xa5, - 0x57,0x62,0x11,0xff,0x87,0x7a,0x2c,0x98,0x17,0x7e,0x85,0x9f,0x65,0x54,0xf0,0x7c,0xa6,0xb9,0x3f,0x39, - 0x0d,0xa3,0xb6,0xe1,0xdf,0xd1,0x77,0x4a,0x42,0x0c,0x0b,0x3c,0x6b,0xfa,0x47,0xaf,0x47,0x10,0x10,0xd3, - 0xef,0x2d,0x3c,0x82,0x67,0xfa,0x57,0x83,0x8d,0x3a,0x4d,0xb5,0x74,0x6e,0x77,0xa2,0x85,0x31,0xcc,0x67, - 0xd1,0x43,0xb2,0x0a,0x6d,0xb6,0xd0,0x72,0x1a,0x61,0x45,0xbd,0x4e,0xe8,0xcb,0x9a,0x3e,0x25,0x0b,0x4e, - 0x20,0x6a,0x64,0xa1,0xb0,0xcd,0x85,0xbe,0xa6,0xa5,0xb9,0xf2,0x6b,0x31,0xe6,0x87,0x36,0xa5,0xaf,0x54, - 0x12,0xba,0x52,0x2b,0xfb,0xd7,0x92,0xcd,0x51,0x33,0x1d,0x6f,0x3e,0xd3,0x70,0x9b,0x82,0xb5,0x43,0xcb, - 0x00,0x0a,0x1b,0x0d,0xf9,0xea,0x06,0x5a,0x5e,0x23,0xbb,0xb7,0x2d,0xcb,0xd1,0x06,0xca,0xf0,0xbe,0x56, - 0xed,0xad,0xd7,0x95,0x79,0x8c,0xc0,0x22,0x36,0xe5,0x0d,0xb2,0x39,0xbb,0xd2,0x4c,0x8a,0x7a,0xa0,0xf7, - 0xce,0x49,0x51,0xbc,0x2b,0x15,0xdf,0x88,0x8e,0x9a,0x52,0x7a,0xa6,0x23,0x46,0x55,0x08,0xfb,0x3c,0xc3, - 0xec,0x82,0x9b,0x72,0xca,0x6c,0xdb,0x52,0x23,0x45,0x78,0xef,0x5f,0x6b,0x9b,0x56,0xd6,0x69,0xe4,0x99, - 0x91,0x92,0x7f,0x4b,0x75,0xf1,0x15,0x76,0xd4,0x4c,0x88,0x5d,0xa4,0xbc,0x41,0xe2,0xd4,0x89,0xc2,0x18, - 0x9b,0x6d,0x4e,0xea,0x2f,0x08,0x0c,0x2c,0x21,0x13,0xee,0xd6,0xeb,0x35,0x0c,0x37,0xc6,0xc7,0x0f,0x5f, - 0x1d,0x3f,0x79,0x31,0x1e,0xff,0x0f,0xc4,0x0f,0xa6,0xb6,0xbb,0xff,0x09,0x4f,0xd2,0x83,0x3f,0x46,0xf8, - 0xf3,0x69,0xfa,0xa9,0xf7,0xe9,0xe0,0x53,0x7f,0xf4,0x8f,0x38,0x1a,0x7e,0xba,0xfb,0xe9,0xae,0xa1,0xfd, - 0xea,0xff,0x91,0x7c,0xc3,0x49,0x1c,0x86,0x9e,0xc1,0xd0,0xa7,0xbb,0x3d,0x45,0x33,0xf7,0x40,0x80,0x4a, - 0x9f,0x22,0xbe,0xdb,0x53,0xb4,0xee,0x9f,0x4c,0x4e,0xd3,0x3a,0xa7,0x41,0xaa,0xd5,0x9b,0xbc,0xc3,0x48, - 0x33,0xd9,0x3a,0x33,0x02,0x65,0xd4,0x1b,0xf4,0x42,0xff,0x73,0xe2,0x74,0x21,0x19,0xf6,0x52,0x62,0x58, - 0x31,0x35,0xc8,0x2c,0x37,0xe9,0xd0,0x8f,0x78,0x66,0xd3,0x7f,0x0b,0x1f,0x42,0x92,0x69,0x85,0x89,0xbb, - 0x9e,0x86,0xd5,0x52,0x45,0x90,0x6a,0x2a,0x81,0x13,0x91,0x17,0x74,0xcc,0x13,0xe1,0xbd,0xb3,0x58,0x55, - 0xf5,0xce,0xa9,0xdc,0x49,0xad,0x6d,0x54,0x3f,0xd0,0x16,0x27,0x03,0xee,0xb5,0x96,0x0c,0x26,0x9d,0xda, - 0x2c,0x58,0x7c,0xd0,0x04,0xa9,0x0f,0xf2,0x04,0x1f,0x0c,0xea,0x46,0x36,0xc4,0x68,0x69,0x05,0x84,0x14, - 0x9a,0x47,0xae,0x2a,0xe3,0xfd,0x68,0xd3,0x20,0x47,0x70,0x18,0xfa,0x7e,0xf3,0x78,0x6c,0x23,0xf3,0x96, - 0x3e,0x45,0x1b,0x50,0x70,0x35,0x6a,0xb0,0x5e,0x0a,0x4e,0xad,0xaa,0x58,0x95,0x13,0xe9,0x7f,0x85,0x96, - 0x0c,0x93,0x77,0x53,0xe3,0xc4,0x60,0xd3,0xa1,0xb2,0x81,0x8a,0xea,0x04,0xa7,0xaa,0x3a,0x55,0x18,0x7e, - 0x6e,0x3d,0xa9,0xfe,0xc6,0xde,0xd8,0xe9,0x40,0x51,0xc6,0x70,0x8c,0xe5,0x8e,0x12,0xb6,0x63,0x50,0x7c, - 0xb6,0x5b,0xb8,0xdd,0xd7,0xa1,0x43,0x9b,0xf9,0xbf,0xe4,0xee,0x20,0xe1,0xc0,0xf0,0x71,0x25,0xbb,0xdd, - 0x17,0xba,0x81,0xb1,0xee,0xb4,0x77,0x5d,0xaf,0x31,0x3a,0xb6,0x7c,0xf5,0x8c,0x1e,0xdb,0x25,0x95,0xd0, - 0xcb,0x88,0xc2,0x36,0xcd,0x5d,0x69,0x78,0xae,0x66,0x25,0xbe,0xf9,0xfa,0x96,0x79,0xc1,0x7a,0xbd,0x6d, - 0xaf,0x4b,0x69,0xd5,0xf5,0xe2,0xb4,0x98,0x37,0xd3,0x4e,0x8b,0x62,0x2e,0xd3,0xbc,0xd3,0x7e,0xfd,0x7f, - 0xc7,0xe2,0x5d,0x89,0xd8,0xd8,0xc8,0xf6,0x3c,0xef,0x34,0x78,0x37,0x54,0x34,0x5b,0x42,0xb0,0xf5,0x5d, - 0x68,0x39,0x28,0x47,0x1d,0x7f,0x9f,0x1c,0xee,0xef,0xbf,0x24,0x1a,0xbf,0x3f,0x9b,0x17,0x05,0x04,0x72, - 0x09,0x13,0x54,0xb0,0x30,0xc9,0x99,0x00,0xf6,0x6a,0xad,0x5a,0x5d,0xa7,0xce,0x0e,0x83,0x60,0xdb,0x83, - 0xa5,0x1e,0xb6,0x65,0x7e,0x4a,0x0c,0x7e,0x2f,0x8a,0x6d,0x17,0x5c,0xad,0x93,0xce,0xbe,0x3a,0x31,0x36, - 0xb1,0x34,0xe9,0x2b,0xea,0xd8,0xb0,0x26,0xca,0xd4,0x7e,0xb5,0xd2,0x96,0x90,0xd6,0xf2,0x52,0x9b,0xc0, - 0x2b,0x36,0x3f,0x54,0xea,0x83,0x32,0xb1,0x42,0x2c,0x01,0x39,0x67,0x72,0x38,0xc8,0x1e,0x94,0xc6,0x6a, - 0x2c,0x53,0x06,0x98,0x27,0xd9,0x68,0x44,0xb8,0xd2,0x31,0x0c,0x5d,0xea,0xf7,0x93,0xba,0x29,0xc9,0x1a, - 0x6d,0xba,0xac,0x3b,0xa8,0xd8,0x68,0xe3,0xfa,0x38,0xb7,0x6e,0x07,0xc6,0x5f,0xc0,0xe8,0x54,0x6b,0x4f, - 0xc6,0xc5,0xf2,0xe0,0xef,0x0f,0x8e,0xac,0x98,0x98,0xbb,0x4c,0x27,0x4e,0x2e,0x8e,0x22,0xaf,0xb6,0x59, - 0xe3,0xcc,0x3a,0x33,0xab,0x8e,0x4d,0x6e,0xcb,0x2c,0xdd,0x5c,0x76,0xcc,0xc7,0xa0,0x8d,0x36,0x1c,0x49, - 0x20,0x4f,0x72,0xa2,0xe7,0x42,0xfc,0xc0,0x12,0x38,0xf2,0x1b,0x9e,0x6e,0x19,0x9d,0x6a,0x71,0x48,0xd9, - 0x61,0x10,0xac,0x29,0x8c,0x61,0xf9,0xfd,0xd1,0xd0,0x19,0xb1,0xda,0x72,0xc0,0x01,0xdc,0x6f,0x36,0xe3, - 0x35,0xcf,0x56,0xd0,0x9b,0xf7,0xc7,0xaa,0x22,0xeb,0x61,0x21,0x72,0xd7,0x91,0x73,0xd5,0x11,0xc2,0x20, - 0xeb,0xf5,0xe1,0xc0,0x2d,0xbd,0x29,0x7b,0x20,0x69,0xc5,0x9d,0x05,0x6e,0x1e,0x0d,0xf2,0x83,0x83,0x41, - 0x54,0xf2,0xa0,0x4e,0xf2,0x9e,0xb4,0xe6,0xb5,0xa5,0xab,0xf4,0xa2,0x05,0x48,0xf0,0xd2,0x90,0x11,0x7c, - 0x38,0x12,0xcc,0x86,0x15,0x8d,0xba,0x2f,0x16,0x0d,0xd9,0x04,0xac,0xa3,0x73,0x02,0xac,0xfc,0x81,0x73, - 0x0a,0x21,0xc0,0x42,0x05,0xfb,0xfb,0x17,0x50,0x3f,0x42,0x1a,0x69,0xa1,0xcb,0x55,0x73,0x66,0xce,0x61, - 0x97,0x74,0xed,0x00,0x06,0xdb,0x30,0x32,0x58,0x4a,0x1f,0x89,0x7c,0xce,0x95,0xf4,0xa3,0x80,0x66,0x97, - 0x0e,0xc2,0xdd,0xd2,0x14,0x22,0xb6,0x65,0xb7,0xdc,0xdf,0xb7,0x1b,0x8c,0x2a,0xd0,0xcf,0x54,0x1a,0x4a, - 0x4c,0x56,0x3e,0x24,0x3c,0x35,0x9e,0xbc,0x9f,0xf8,0x96,0x66,0x92,0xaa,0xbb,0xd8,0xdf,0x4f,0x1d,0x40, - 0xea,0x35,0x81,0x00,0x4b,0x3d,0x82,0x45,0x92,0x17,0xb2,0xbc,0xf6,0xce,0x67,0x8f,0xc0,0xe4,0x71,0x60, - 0xd8,0x1b,0x55,0xd9,0x7a,0x6d,0x2a,0xdb,0x3d,0x1a,0x28,0x89,0x86,0x06,0xcf,0x2f,0xf2,0x1a,0x58,0x85, - 0xd8,0x25,0x3f,0xc1,0xd9,0x8f,0x57,0xae,0xed,0x89,0x6d,0xbb,0x6a,0xb7,0xdd,0x68,0x19,0xde,0x37,0xba, - 0x71,0x67,0xfd,0x65,0x5a,0xf7,0xc0,0x7a,0xdc,0xc6,0x20,0x5b,0x6b,0x48,0x5d,0x37,0xf5,0x45,0xd6,0x6d, - 0x4e,0xf7,0x8c,0x98,0x61,0x5b,0xd3,0xa9,0xdb,0x75,0x34,0xbe,0x6d,0xf3,0x70,0x89,0x9d,0xa5,0xc8,0x31, - 0xb5,0x21,0xf8,0xf0,0x73,0x7b,0xc2,0xdf,0x6c,0x97,0x46,0xf3,0x16,0xdd,0xe8,0x19,0x51,0xc7,0xa7,0xf1, - 0x0f,0xe2,0x6c,0x6a,0x6c,0xbe,0x92,0x71,0x2e,0x24,0x9d,0x48,0xb2,0x4c,0x4f,0xe7,0x32,0xde,0xdd,0x2d, - 0x05,0x64,0x12,0xea,0xe5,0x50,0xdb,0x32,0xac,0x74,0xe6,0xe1,0xc6,0xc3,0x12,0x7b,0xde,0x81,0xd2,0xa1, - 0x32,0xde,0xdf,0xbf,0x9b,0xb3,0x03,0x03,0x6b,0x35,0xef,0x6a,0x12,0xdb,0x37,0xf5,0x73,0x55,0x5d,0xb5, - 0x6c,0x94,0x7e,0xcb,0x43,0x75,0xfa,0x8a,0xe6,0x8f,0x3b,0x7a,0xdc,0xb7,0x5f,0xb4,0xb2,0x5f,0xef,0xe1, - 0x89,0x11,0xcf,0xbc,0x56,0x26,0xb8,0x7a,0x2f,0xff,0x06,0x5b,0x9a,0x3a,0x3d,0x13,0x96,0x9b,0x9d,0x9c, - 0x67,0xf3,0x69,0x29,0x73,0x70,0x4f,0xb0,0xdf,0x20,0x50,0x9c,0x2f,0x04,0xab,0x27,0xf9,0x1d,0x19,0x69, - 0x75,0x9d,0x4f,0x9e,0xa6,0xb0,0x67,0xbf,0x76,0x0a,0xd1,0x7e,0x0e,0x5e,0x19,0x55,0x2b,0x59,0x5c,0x9d, - 0x4d,0x80,0x8a,0xf5,0x23,0xa5,0x12,0xf4,0x25,0x0c,0x83,0x5c,0xe2,0x98,0xb8,0x52,0xea,0x0f,0x17,0xd1, - 0xcf,0x94,0x3e,0xcb,0x8f,0x55,0x43,0x94,0x6e,0x9f,0x39,0x5d,0x77,0x9c,0xd3,0xed,0x20,0xe8,0xf9,0xdd, - 0x84,0xd6,0xee,0xf9,0x94,0xd3,0xf5,0xb3,0xaa,0x7f,0x4e,0xe3,0x65,0x17,0x49,0xa9,0x14,0xaa,0x7a,0x60, - 0xf4,0x52,0xda,0x97,0xe4,0xd8,0xcb,0x81,0x69,0x50,0x04,0xf5,0x6b,0xee,0x17,0xce,0xfd,0xc2,0x79,0xb3, - 0x30,0x21,0x0c,0x37,0xe3,0xc7,0x6d,0x90,0xb7,0x58,0xb6,0x89,0x37,0xf5,0x49,0x99,0xf3,0x11,0x89,0x03, - 0x32,0xa1,0xb5,0xa2,0x1f,0xcf,0xb1,0xc3,0xab,0xf5,0x9d,0xb7,0x8e,0xd8,0xee,0xca,0x83,0x67,0x37,0x6c, - 0xf8,0xdb,0xfc,0x96,0xdb,0x2d,0x84,0x83,0x2c,0x18,0x8f,0x8b,0xd3,0xf1,0x38,0x60,0x6b,0x13,0xf5,0xec, - 0x97,0x2e,0xca,0x21,0x3a,0xa7,0x32,0xe2,0x8c,0xc8,0xee,0xf3,0x62,0x35,0x9f,0xd2,0x64,0xd3,0xc6,0x27, - 0x00,0xdd,0xfd,0x25,0x67,0x2b,0xbf,0x36,0x36,0x5b,0xaf,0x41,0x2c,0x51,0x8e,0xde,0x3b,0x59,0xf5,0x04, - 0xde,0x27,0x55,0x76,0xca,0xe6,0xb2,0xf4,0x21,0xfb,0x13,0x10,0x15,0x8a,0x69,0xe3,0x31,0xb3,0xca,0x9c, - 0xd9,0x79,0x9e,0xd6,0x8b,0xc5,0x71,0xb1,0xca,0xeb,0x5e,0xcf,0x3f,0x78,0x1e,0xfa,0xea,0x70,0x85,0x47, - 0xf1,0xe9,0x0f,0x39,0x61,0x4f,0xdd,0xd2,0x99,0xac,0x3d,0x2f,0xbe,0xc7,0xb2,0x9a,0x94,0x19,0x6c,0xdc, - 0x79,0x6e,0x18,0x5b,0xa7,0x84,0xad,0x8f,0x88,0xda,0x4b,0xfb,0xfe,0xd6,0x34,0x12,0xde,0x94,0x10,0x2e, - 0x2a,0x21,0x4c,0xc8,0x8f,0x15,0x3d,0xae,0x92,0xdd,0x8c,0x30,0x3a,0x0e,0xb2,0xaf,0xe0,0x02,0x1f,0x07, - 0x6c,0x6d,0x7b,0x41,0x55,0xfa,0x32,0x47,0x85,0xa5,0xaa,0x61,0x65,0x68,0x46,0xa7,0xbe,0xf8,0x21,0xa7, - 0x6d,0x56,0x52,0x79,0x9a,0x9a,0x82,0x5a,0x5a,0xc2,0xf2,0x22,0x12,0x2b,0x7a,0x5d,0xe1,0xd5,0x25,0xb5, - 0x0f,0x8c,0xfd,0x7d,0x8f,0x60,0x6f,0xc0,0x97,0xde,0xfd,0xca,0x7b,0x48,0xb6,0xbd,0x86,0x68,0x05,0x24, - 0x0c,0x33,0x31,0xef,0x6a,0xa9,0xdd,0xd3,0xd7,0x5a,0x84,0x6c,0x9b,0x8d,0x28,0x42,0x96,0x96,0xc8,0x8d, - 0xa8,0xfc,0x51,0x4a,0x43,0x9d,0x34,0x87,0x29,0xe9,0x0c,0x29,0xd7,0x6b,0xb9,0xcb,0x26,0xa4,0xbb,0x78, - 0x0e,0x27,0xc3,0x89,0x23,0xa3,0x62,0xea,0x8e,0x9d,0x73,0x09,0xdb,0xd8,0xbc,0xa8,0x41,0xbe,0xb2,0x8d, - 0xbc,0x87,0xa3,0xdf,0x7b,0xea,0xfd,0x36,0x04,0xd2,0xda,0x85,0xee,0xb4,0xb0,0x47,0x27,0x93,0xd8,0x8b, - 0xf4,0xca,0x52,0x82,0xd0,0xe8,0x59,0x4a,0x4f,0x8a,0x23,0xaa,0x4e,0xf0,0xee,0x91,0xec,0x26,0x8a,0xfd, - 0xc3,0x4f,0x6d,0xcf,0x4e,0x57,0xb5,0x32,0x70,0xcd,0xb5,0xe4,0xc7,0x6c,0x16,0xe7,0x40,0xa4,0xe0,0x7c, - 0xbd,0x2e,0x61,0x69,0xa5,0xc1,0x7a,0x98,0xc7,0xe5,0x30,0x7c,0x48,0xe8,0x85,0x4f,0x10,0x1e,0x05,0xa1, - 0x22,0xcc,0xb5,0x19,0x2b,0xe8,0x32,0x63,0x3d,0x9b,0x7b,0xd8,0xfa,0xb5,0xa5,0x4d,0x6e,0x19,0xb2,0x3f, - 0x1a,0xcf,0x54,0xc1,0xed,0xe3,0x81,0xeb,0x93,0xbf,0xd5,0xd6,0x6b,0x45,0xd9,0xc2,0x38,0xc8,0x58,0xeb, - 0xca,0x91,0x42,0x72,0x7e,0xc7,0xfc,0x15,0xf8,0x6c,0x3b,0xe3,0x9b,0x57,0x58,0xb8,0xc3,0x46,0x75,0x5b, - 0x53,0x93,0x14,0xd0,0x18,0x0d,0xaa,0x07,0xa9,0x81,0xc2,0x0a,0xb8,0x0d,0x74,0x61,0x92,0x9e,0x54,0xa3, - 0x11,0x00,0x14,0x47,0xfd,0x8c,0x29,0x99,0x61,0x11,0x96,0xec,0x86,0x08,0x5d,0xc8,0xe7,0x10,0x1b,0x3f, - 0xc6,0xb2,0xe7,0xf4,0xd0,0x41,0x12,0x3e,0x69,0x49,0xd8,0xf2,0x61,0x6b,0xcf,0x95,0x49,0xa7,0x3b,0x9b, - 0xf1,0xf0,0x65,0x9f,0x36,0xea,0x41,0xd7,0x71,0x3c,0xac,0xbd,0x42,0xb5,0xa3,0xb0,0x75,0xaf,0xb2,0x4d, - 0x2c,0x87,0xb5,0xdf,0x9e,0x2e,0xf1,0x39,0xfc,0x5a,0x93,0x4c,0x82,0xe0,0x0f,0x1a,0xfe,0x5a,0xb3,0x5e, - 0x41,0xe2,0xda,0x62,0x19,0x7b,0xc3,0x7e,0xd1,0x16,0xa3,0x0d,0x6b,0xa3,0x82,0xa7,0xed,0xd4,0x46,0x13, - 0x43,0x19,0x43,0x4f,0xef,0x7d,0xff,0xdc,0x11,0x3b,0x4a,0x5e,0xd3,0x64,0x5a,0x34,0xa3,0xef,0xe9,0x72, - 0x2e,0xc2,0x0c,0x1b,0x35,0x73,0x55,0x3c,0x35,0x33,0xef,0x31,0xf1,0xb6,0xba,0xb4,0x24,0xf4,0xb2,0x5e, - 0xaf,0xca,0xc1,0x0a,0x8e,0x76,0x74,0x30,0xb1,0x77,0x22,0xfe,0xa0,0xd1,0x2e,0x6b,0x3c,0x16,0xe5,0x12, - 0xaa,0xd2,0x7e,0x40,0x6d,0xc9,0x89,0x81,0x68,0xda,0x8f,0xcb,0x4a,0x59,0xf2,0xa8,0xf5,0x65,0x80,0xbb, - 0xd9,0x0c,0xb6,0xf6,0x47,0xae,0x7c,0xc7,0xe9,0x80,0xb5,0xe8,0x0f,0x4c,0x49,0x5b,0xbe,0x10,0xaa,0xf0, - 0x0b,0xd8,0x05,0xe9,0xc9,0x38,0x27,0xb8,0x1b,0x25,0x37,0xc8,0x52,0x6a,0x2a,0x67,0x29,0x54,0x98,0x1a, - 0xf9,0xdc,0x00,0x8a,0xc8,0x23,0x7c,0x5b,0x8d,0x04,0x7f,0x58,0xd1,0x87,0x00,0xdb,0x61,0x16,0xab,0xef, - 0xb3,0xcd,0x40,0xf7,0x37,0x49,0x37,0x40,0x99,0xb7,0x0c,0x29,0xcb,0x31,0xf7,0xfe,0x98,0x6c,0xe2,0xd7, - 0x06,0xa6,0x66,0x9a,0xc9,0x05,0x9f,0xb1,0x26,0xa6,0x8b,0x19,0xeb,0x1b,0x18,0xc7,0xc4,0x78,0xde,0x74, - 0x0f,0x21,0x55,0x43,0xd0,0xc7,0x60,0x7e,0x92,0x12,0xcb,0x45,0x7f,0x68,0x0c,0x55,0x44,0xeb,0xad,0xbe, - 0x4f,0x09,0xc5,0x47,0xb1,0x7a,0xae,0x36,0x9b,0xf6,0x30,0xcc,0x20,0x64,0x7f,0x9a,0x95,0xd4,0x5f,0xa2, - 0x5d,0xf5,0xe2,0x98,0x56,0x4a,0xaf,0x15,0x35,0xd3,0x83,0x8e,0xc5,0xcf,0x40,0x15,0x70,0x10,0x0c,0x18, - 0xe8,0xc7,0x99,0x58,0x2d,0x61,0x1d,0x48,0x53,0x18,0x41,0x69,0xaf,0xc3,0x64,0x48,0x1d,0x05,0x82,0x9b, - 0xc8,0xd8,0xc6,0x09,0x50,0x98,0xc1,0xb8,0x4f,0xc8,0xfe,0x22,0xbb,0x22,0x4a,0xc6,0x8d,0x8f,0xce,0xbe, - 0x2a,0x31,0xc9,0x66,0x8a,0xd2,0x07,0xd5,0x20,0x05,0x9b,0xc8,0x9f,0x9a,0x5c,0x1a,0x37,0x55,0xc2,0xcd, - 0x4c,0xe8,0x24,0xa2,0x59,0x47,0x2d,0x13,0x15,0x38,0x80,0x1e,0x22,0xf7,0x2e,0x23,0x20,0xaa,0x09,0x51, - 0x3c,0x9c,0xae,0x77,0xc8,0xca,0x6d,0x8c,0xc7,0x6e,0x6f,0x75,0x79,0xcb,0xd8,0xb9,0x00,0xb2,0xc5,0x40, - 0x68,0x28,0xc2,0xd1,0x68,0x19,0x58,0x5f,0x45,0xe9,0x8c,0xc1,0x5f,0x99,0x12,0x85,0x57,0xa2,0x50,0x25, - 0xd2,0xe4,0x34,0x0f,0x0b,0x27,0x5c,0xa0,0x52,0x29,0x41,0x1f,0x8d,0x25,0xce,0x58,0xaa,0x80,0x92,0xf8, - 0x9b,0xfa,0xb2,0x91,0x57,0xed,0xad,0x0f,0xb7,0x36,0x51,0x24,0xbb,0xb4,0x6a,0x82,0xd9,0x52,0x08,0x53, - 0xd0,0xec,0xcb,0xf0,0x91,0x12,0xa7,0x89,0xac,0xcf,0x27,0x20,0xe8,0x13,0x3a,0x1f,0xd1,0x50,0xa0,0x1d, - 0x21,0x83,0x68,0x98,0x12,0xef,0x15,0xbf,0xd4,0x32,0x2e,0x53,0x14,0x86,0xfb,0xbb,0xac,0x92,0x4e,0xe9, - 0x67,0x4f,0xb9,0xa9,0x86,0x69,0xc2,0x64,0xb4,0x15,0x28,0xa6,0xd1,0x4d,0xda,0x65,0xba,0x37,0x83,0x07, - 0x93,0x6d,0xc1,0x6c,0x0a,0x69,0xbc,0x2f,0xed,0x39,0x00,0x1a,0x76,0x4f,0x23,0x0c,0xb5,0xd3,0x54,0x70, - 0x03,0x27,0xb1,0xec,0xc8,0x56,0xf2,0x01,0x2b,0xa9,0xec,0x8f,0x39,0x87,0x52,0x87,0xde,0x73,0x97,0x84, - 0x15,0xae,0xbd,0x4f,0x9d,0x6c,0x3e,0x79,0x13,0x4a,0x35,0xd8,0x61,0x69,0xa9,0x9d,0x92,0xc0,0x15,0x28, - 0xa9,0x8e,0x34,0xbb,0xdd,0x26,0xa1,0x07,0xed,0x04,0x70,0x21,0xef,0xc2,0x94,0x48,0xff,0x76,0x46,0xe5, - 0xcc,0x1e,0xec,0xea,0xbd,0xf1,0xec,0x9b,0x30,0x7a,0xc7,0x1b,0x6a,0x2d,0x3d,0xfb,0x5d,0xdb,0xe2,0xe1, - 0xa7,0xcb,0x5e,0x74,0xd7,0xc3,0xe3,0xf2,0xe4,0x88,0xc6,0x16,0xb8,0x0a,0x5f,0xba,0x03,0xbd,0x7d,0x6c, - 0x18,0x80,0x7b,0xa3,0x84,0x93,0x6f,0x8c,0x7f,0xaa,0x89,0xc6,0x51,0x3a,0xc2,0x32,0x7f,0x50,0x1a,0xc6, - 0xfd,0x0d,0xcb,0xb2,0xcc,0x07,0x4e,0x92,0x62,0x05,0x01,0xb6,0xe9,0xb7,0xde,0x8a,0x4b,0x87,0x30,0x12, - 0x39,0x28,0x93,0xb2,0xbf,0xb7,0x4c,0x89,0x95,0xaa,0x07,0xce,0x00,0xc8,0x2e,0x25,0xfb,0x00,0x1c,0xa7, - 0x4b,0xaa,0x50,0x4e,0x19,0x17,0xd8,0xaf,0x0b,0x42,0x88,0xc5,0x83,0xcc,0xf4,0xab,0xc0,0x4e,0x2f,0xaf, - 0x79,0x78,0x30,0x61,0xc4,0x8e,0x50,0x6b,0x55,0x0a,0xd5,0xb8,0xee,0xa0,0x13,0x58,0x3c,0xa2,0x5e,0x95, - 0x22,0x68,0xb4,0xb1,0x73,0x5e,0x14,0x5f,0xe0,0xb6,0xfe,0x48,0x77,0xd9,0x0d,0xe2,0x91,0x37,0x88,0xf7, - 0xb9,0xea,0xda,0x33,0xa5,0x33,0xe7,0x96,0xf5,0x1c,0xb6,0xb2,0xfc,0xf8,0x22,0xaa,0x42,0xdb,0xfe,0x07, - 0x23,0xb4,0x0d,0xb4,0xa9,0xb4,0xff,0x1d,0xf5,0xe1,0xc3,0x56,0x17,0x3e,0x78,0x5d,0xd8,0x7d,0x02,0x71, - 0xd4,0x8b,0x9c,0xf6,0x5f,0x87,0x8f,0x10,0x9c,0xcd,0x69,0x47,0x1b,0x05,0xcb,0x40,0xbf,0xab,0x26,0x1a, - 0xb2,0xe1,0x8f,0x30,0xaa,0x2b,0x13,0x2d,0x35,0xaa,0x93,0x79,0x69,0xfc,0xc3,0xa3,0xc1,0xdc,0x08,0x72, - 0x13,0x27,0x0b,0x94,0xf4,0x2c,0x9d,0x10,0x47,0xb2,0x20,0x4e,0x8e,0x42,0xaf,0xca,0x67,0x2d,0x6e,0x95, - 0xaa,0x61,0x5b,0x88,0x96,0x1e,0x48,0x39,0x13,0x5a,0xf9,0xa4,0x9d,0x17,0x05,0x2d,0x41,0x4e,0x47,0xc0, - 0xfb,0x6c,0x82,0xd5,0xe0,0x53,0x2d,0x67,0xe7,0x75,0xd6,0xb4,0x80,0xaf,0x40,0x9f,0x0f,0xc5,0xb2,0x1c, - 0x4e,0xca,0x30,0x8a,0xab,0x12,0x06,0x36,0xbb,0x75,0xb7,0x7a,0x45,0x2b,0xc2,0x22,0x4f,0x8a,0xd2,0xa5, - 0x1b,0xcb,0xa1,0x1b,0x73,0xc3,0xf8,0x03,0x69,0xb6,0x00,0xf8,0x2e,0x61,0x49,0x91,0xe2,0x16,0xa1,0x5e, - 0x48,0x2c,0x28,0x84,0x87,0xe0,0x83,0x2d,0x83,0xfc,0xb4,0x2c,0xfe,0x80,0xe3,0xb4,0xb2,0x89,0x92,0x9a, - 0x56,0x37,0xe7,0xb1,0xf4,0xd9,0xb1,0x8c,0xa1,0x3c,0x87,0x05,0x20,0x1d,0xce,0xc6,0x30,0x33,0x87,0xf7, - 0x00,0xdc,0x00,0x61,0xc1,0xa9,0x69,0x1d,0xd9,0xa0,0x75,0x60,0x70,0x53,0xf2,0xc9,0x66,0x03,0xe2,0x94, - 0x49,0x58,0xb4,0xe8,0xf3,0x68,0xeb,0x9b,0x82,0xbe,0x1a,0x71,0x00,0x84,0x88,0x66,0xfd,0xac,0x8c,0xe8, - 0x7f,0x7f,0x42,0x47,0x41,0xe9,0x2f,0xe8,0x2f,0x61,0x33,0xd4,0x95,0xd6,0xc8,0x39,0xd9,0xb4,0x00,0x61, - 0x30,0xcb,0xf9,0xb8,0xde,0xdd,0xa2,0x61,0xac,0xe4,0xd9,0xd3,0x9b,0x39,0xd1,0xdc,0xc0,0xe1,0x83,0x5c, - 0x83,0x5e,0xa7,0x1e,0x01,0x42,0x12,0xbf,0x86,0xda,0x8a,0xb4,0xb9,0x69,0x44,0xb9,0x72,0x3d,0xfe,0x3d, - 0xd4,0xc2,0x04,0x6b,0xbf,0x2f,0x2a,0x41,0x07,0x3e,0x37,0x96,0xaa,0xd3,0x9d,0xa6,0x1e,0xd4,0xc0,0x84, - 0x29,0x22,0xa2,0x05,0xae,0x4b,0x20,0xe7,0x3a,0x64,0x1b,0xb7,0x9a,0x8e,0xfc,0x21,0xfd,0xad,0x50,0x37, - 0xce,0x43,0x55,0x3a,0xf9,0x05,0xcb,0x22,0x4a,0xe2,0xd7,0xd9,0xf8,0xb2,0x12,0xab,0x3e,0x51,0xe3,0xc4, - 0xd4,0x12,0x1c,0x33,0x0a,0xa1,0x27,0xf8,0xb4,0x11,0x7d,0xc4,0x4f,0x30,0x33,0x8f,0x08,0x3e,0xe9,0x14, - 0x99,0x50,0x2d,0x13,0xee,0x6a,0x25,0xb8,0xae,0x49,0x14,0xb9,0xfe,0xe4,0xbc,0x1e,0x29,0xc8,0xd3,0x2c, - 0x0c,0x75,0x6f,0x22,0xd5,0x8a,0xea,0xa0,0x69,0xc1,0x5b,0x98,0x1f,0x43,0x3d,0x44,0x4f,0x2d,0x15,0xdd, - 0x14,0xdd,0x32,0x50,0x31,0x57,0xa3,0x21,0xda,0x61,0x53,0x36,0x05,0x47,0x10,0x87,0x11,0xde,0x85,0xf4, - 0xaf,0x0f,0x0c,0x08,0x0b,0x0c,0xf7,0x46,0x54,0x52,0xa4,0x4f,0x39,0xd8,0x03,0xd2,0x3a,0x0c,0x78,0x7a, - 0x2a,0x9a,0x0d,0xf4,0x38,0x96,0x6a,0x5c,0x90,0x32,0xd0,0x13,0x9b,0xb8,0x4c,0x69,0xf6,0x2a,0x1a,0x21, - 0xd2,0xd5,0xee,0x4f,0x69,0x16,0xf0,0xc1,0x44,0xd0,0x27,0xa2,0xd2,0xc5,0xb0,0x89,0x59,0xfc,0x55,0xb9, - 0x51,0xfd,0xc4,0x5c,0xa0,0x1e,0x19,0x76,0x0c,0x80,0x48,0x51,0x0b,0xa0,0x66,0x1c,0x7b,0x8e,0x28,0x26, - 0x00,0xfb,0x62,0xbd,0xd6,0x7c,0x2d,0xbf,0xd2,0x19,0xa4,0x0b,0x67,0xed,0xc2,0x59,0xb3,0x70,0x86,0xc2, - 0x9b,0xed,0x03,0xeb,0x57,0xdf,0x59,0x82,0xf9,0x6f,0xd8,0xec,0x40,0x0a,0x89,0x8d,0xad,0x4d,0xe4,0x8d, - 0xc0,0xd2,0x7d,0xf6,0x83,0xcf,0xac,0x85,0x60,0xca,0x65,0xf5,0x92,0x75,0xba,0xeb,0xf5,0x8f,0x88,0xb7, - 0xa2,0x5e,0xa0,0x52,0xac,0x4f,0xde,0xb1,0x56,0xd3,0x9e,0xeb,0xef,0xd3,0x33,0xe5,0xb7,0x9f,0xd4,0x86, - 0xfa,0xa1,0x6d,0x00,0x0f,0x00,0x43,0x0c,0x83,0xea,0xf0,0x1a,0xfb,0x77,0x23,0x1a,0x8b,0xed,0x0d,0x68, - 0x05,0x5f,0x34,0xeb,0x3e,0xf8,0x4d,0x9b,0x1d,0xb4,0x85,0x0b,0xd1,0x57,0xe4,0xf3,0x86,0x4b,0x01,0xad, - 0xca,0x2b,0x51,0xb2,0x5b,0x03,0x84,0xa7,0x2d,0x59,0x32,0x6d,0x9a,0x7f,0x53,0xae,0x9d,0xf0,0xd2,0xa3, - 0x44,0x7f,0x36,0xe7,0x56,0x3e,0x5c,0xe0,0x74,0x27,0xb0,0x53,0xe2,0x20,0xf5,0xd6,0xd2,0xb0,0xd5,0xb5, - 0x9a,0x46,0xce,0x9c,0xcd,0x5a,0xb9,0xb2,0x36,0x95,0x2d,0xa8,0x5f,0x82,0x37,0x3a,0x9b,0x49,0xfd,0x2c, - 0x6a,0x9a,0x31,0x4a,0x54,0x14,0x9f,0xa7,0x8d,0xae,0x7d,0x2e,0x4c,0xf1,0x59,0xbb,0xb5,0xd3,0x36,0x38, - 0xfc,0xd3,0x88,0x3b,0x66,0x44,0x68,0x5a,0x1a,0xc9,0x7c,0x6d,0x9a,0x14,0xbc,0x2d,0x50,0x05,0xcb,0x10, - 0xd3,0xba,0x2e,0x2b,0xfb,0x40,0xe8,0xab,0xa8,0xad,0x17,0xb0,0x9f,0x28,0x0a,0x23,0x3b,0x57,0xd6,0x74, - 0x85,0x93,0x6b,0x23,0x61,0xbd,0x86,0xec,0x52,0x29,0x7c,0x53,0xfe,0x20,0x0a,0x73,0x03,0x06,0x6c,0x8b, - 0x61,0xe2,0xc4,0x9d,0x8c,0x08,0x29,0xf0,0x7e,0x2a,0x3c,0x09,0x50,0xa5,0xbf,0x62,0x64,0x56,0x41,0xcd, - 0x88,0x1f,0x14,0x1e,0x04,0xb5,0x5c,0x2c,0xe7,0xc4,0x62,0x01,0xea,0x0a,0x88,0xf9,0x87,0x13,0xae,0x40, - 0x23,0x89,0x09,0xba,0xa6,0xc5,0xd9,0xeb,0x35,0x7d,0x11,0x4f,0x4c,0xfd,0x1b,0x1b,0xa0,0x68,0xa5,0x30, - 0x54,0x7e,0xb2,0x1a,0x69,0xc5,0x50,0x59,0x3b,0x77,0x67,0x24,0xbb,0x08,0x20,0x4e,0x4a,0x50,0xdf,0x06, - 0xa1,0xbb,0x4d,0x10,0x25,0x12,0x66,0x87,0xf7,0x04,0xef,0x30,0x4f,0x8f,0x5f,0x7b,0xda,0x48,0xcd,0xa9, - 0xdd,0x02,0xa7,0x2d,0x98,0x06,0x5d,0x3a,0xc4,0xe7,0x4a,0xb3,0x14,0x13,0xe7,0x43,0x4f,0x38,0x06,0x59, - 0x4d,0x39,0xa2,0xd9,0xef,0x50,0x17,0x16,0xb5,0x51,0x3b,0x0e,0x6a,0xbd,0x13,0x35,0x6d,0x1a,0x0d,0x22, - 0x56,0x31,0x8f,0xb3,0x3c,0x65,0xde,0xf7,0x6b,0xd4,0x6e,0x5a,0x5b,0x4a,0xdb,0xa8,0xa6,0xc7,0x8a,0x69, - 0x7e,0xae,0xbf,0x26,0x6a,0x4b,0x70,0x63,0x86,0x26,0x35,0x6c,0xfb,0x56,0x49,0x43,0x01,0x34,0x5b,0x77, - 0xd6,0x19,0x5e,0x8f,0x6e,0xbc,0x17,0x90,0x73,0xed,0xd9,0xda,0x33,0xab,0xec,0xcf,0x1b,0xfa,0xea,0x72, - 0x58,0x8d,0x0a,0x4d,0x94,0x08,0xb8,0x1e,0x82,0x9a,0x69,0xe0,0x0b,0x05,0xab,0xba,0x29,0xd0,0x30,0x84, - 0xba,0x66,0x70,0x3d,0x61,0x00,0xef,0xa5,0xbc,0xbd,0x97,0x40,0xf1,0xe5,0x36,0xb4,0xa5,0x8d,0x1d,0x91, - 0x83,0xe8,0xcb,0x41,0x20,0xf7,0x02,0x43,0x81,0xd3,0x68,0x88,0x08,0x7a,0x46,0x2f,0xec,0x36,0xc9,0x0c, - 0xa0,0x5c,0xc0,0xce,0x00,0x05,0xe2,0xa0,0xe7,0x23,0x85,0x49,0x6d,0x68,0x12,0x21,0x79,0xe0,0x5f,0x98, - 0x3a,0x3c,0x85,0x31,0x51,0xe9,0x5b,0x38,0xf9,0xc6,0xba,0x44,0x6c,0x1d,0x48,0xfa,0x43,0x14,0xe5,0x31, - 0x02,0x47,0x1d,0x97,0x0f,0x4e,0x2d,0xc5,0x71,0x8c,0xee,0xca,0x84,0x80,0xe0,0xb4,0x3c,0x39,0x2e,0x47, - 0x11,0x15,0x14,0x7b,0x25,0x0b,0x6d,0x99,0xfa,0xe8,0x97,0xab,0x3c,0x34,0x96,0x54,0x97,0xa5,0xa5,0x5c, - 0xca,0xe4,0xd4,0xbe,0x50,0x2d,0x89,0xad,0x12,0x85,0x0c,0x35,0x4d,0x35,0x41,0xa9,0x7d,0x55,0x26,0xe8, - 0xe8,0x51,0x43,0xce,0xf2,0x27,0x84,0xb6,0xbf,0xc8,0x87,0x02,0xeb,0x07,0x51,0xee,0x2e,0x42,0x7a,0xe6, - 0xd1,0x2d,0x15,0xb9,0x4a,0x40,0xf7,0x99,0xd5,0xc3,0x77,0xa0,0xb9,0x2e,0x16,0x83,0xb2,0x3f,0xbe,0xc4, - 0x4a,0xc8,0x92,0x80,0x2a,0x87,0x34,0x7b,0x9c,0xd1,0xc9,0xb5,0x22,0x04,0x35,0xdd,0xdf,0xa7,0x55,0x27, - 0x3e,0x49,0x09,0x6a,0x18,0x1e,0x08,0xcf,0x8b,0xdf,0xa9,0xd8,0x7b,0xe0,0xa5,0x8b,0xba,0x28,0xe0,0xeb, - 0xfb,0x3b,0x31,0x3e,0xbc,0x3e,0xb3,0x39,0xa1,0x8f,0xc0,0x5b,0x9d,0x95,0x45,0xd9,0xef,0x4b,0x28,0x60, - 0xb6,0x8d,0xf1,0xd8,0x04,0x8c,0xfa,0x43,0x00,0xb8,0x11,0x54,0xa8,0x92,0xdb,0x56,0xcf,0x2a,0x1b,0xa1, - 0xf8,0x6e,0xd3,0xd4,0xe4,0xf4,0xa9,0xd7,0xec,0xdc,0x36,0xab,0x20,0x92,0x35,0x5a,0x5d,0x32,0xa9,0x7c, - 0x18,0xea,0x8e,0x95,0xc3,0x19,0xcb,0x55,0x73,0xd3,0x89,0xb3,0x28,0x36,0x79,0x39,0xfe,0x0e,0x4b,0x9c, - 0xff,0x88,0x3a,0x47,0x20,0x4c,0xf3,0x65,0xca,0x23,0x2f,0x3e,0x33,0x5f,0xe5,0xf8,0x3b,0xe4,0xbf,0xf1, - 0x59,0x74,0x6b,0x7f,0x65,0xb3,0xbf,0x33,0x1f,0x5f,0x6e,0x29,0x94,0xd8,0x48,0x6e,0x8c,0x53,0x77,0x45, - 0xab,0xf0,0x8b,0x5a,0x2d,0x84,0xdc,0xeb,0x4c,0xd7,0x82,0x1d,0xcb,0xf2,0xb0,0xd8,0xae,0xbe,0x86,0x41, - 0xad,0x84,0x5e,0x02,0xb2,0xdf,0x48,0x78,0xfa,0x28,0xe9,0x34,0x41,0x52,0x69,0x2e,0xbc,0x6d,0xbf,0xac, - 0x9d,0x28,0xc9,0xf8,0x0b,0xb2,0x8a,0x08,0x32,0x57,0x81,0xc8,0x50,0xda,0x78,0x3c,0x12,0xdb,0x52,0x30, - 0x56,0x03,0x32,0x46,0xa6,0x4d,0xb3,0x77,0xa9,0x3c,0xb9,0x95,0x70,0xd8,0xd9,0xbf,0x38,0x94,0x59,0xff, - 0xb9,0xc5,0xd1,0x8f,0xf9,0xf0,0xad,0x9c,0xcd,0x91,0x53,0x5c,0xe6,0x3f,0x29,0xfb,0x86,0xfe,0x2c,0x9b, - 0xd7,0xb2,0xec,0xb2,0x4e,0xfe,0x2b,0xfa,0xc3,0xbe,0xd3,0xf1,0x6d,0xa2,0xb8,0x65,0x3a,0xd1,0xc1,0x8d, - 0xdc,0x38,0x39,0x04,0xc8,0x57,0xa2,0x0c,0x10,0x3e,0xb4,0x0f,0xf1,0x29,0x64,0x91,0x83,0x6a,0xc0,0xa3, - 0xa9,0x58,0xd0,0x74,0x91,0x4d,0xb1,0x8f,0x98,0xce,0xf7,0x52,0x88,0x1e,0xa2,0x6f,0x12,0x2f,0x05,0xa2, - 0xd9,0x53,0x1a,0xec,0x97,0x0d,0x31,0x09,0xe6,0xf0,0x01,0xd7,0xb7,0x0b,0xc3,0x41,0x23,0x27,0x83,0xac, - 0x92,0x3e,0x54,0x90,0x31,0x51,0x0d,0x1b,0x81,0x19,0xd7,0xd8,0x01,0xe3,0x56,0x0d,0x47,0xd0,0x3a,0xd9, - 0x58,0x63,0x20,0x6f,0x91,0xcf,0x6b,0x65,0x60,0x62,0x19,0x5c,0x70,0x4c,0xdb,0x32,0x69,0x8e,0x42,0xb7, - 0x1d,0x18,0x48,0x0b,0xe0,0xad,0x86,0xdb,0x9a,0x63,0x89,0x82,0xd0,0x5d,0xea,0x50,0x50,0xf1,0x20,0x65, - 0x61,0x4d,0x89,0x8e,0xd2,0xe6,0xe6,0xa0,0xab,0x4e,0xf6,0xbe,0x6d,0x00,0xb8,0x5d,0x35,0xd7,0x49,0x15, - 0xd5,0x7e,0x45,0x45,0xef,0xc8,0xaf,0x27,0x33,0x84,0xed,0x96,0x1d,0x8c,0x5f,0x55,0xd5,0xea,0x65,0xd5, - 0xee,0xe5,0x24,0xa9,0xd0,0x41,0xdb,0xd9,0x09,0xf1,0x8b,0xc2,0x49,0x62,0x35,0x3d,0xcc,0xe8,0xf2,0x23, - 0x3c,0xfb,0x39,0xbc,0x81,0x6f,0xfa,0xe4,0xed,0x1c,0x13,0x7c,0x8b,0x77,0xec,0x5e,0x05,0x2b,0x85,0xe9, - 0x3b,0x22,0xda,0xcc,0x66,0x2d,0x10,0x63,0x8d,0x49,0xd9,0x92,0xf7,0xcc,0x45,0x78,0x11,0xe2,0x25,0x62, - 0xa9,0x77,0x96,0x60,0xcb,0xad,0xd7,0xd2,0x77,0x51,0xd6,0x55,0x99,0x4a,0x52,0xa8,0x36,0xfa,0x63,0x02, - 0x9a,0xa9,0x2c,0x99,0xb7,0xc2,0x77,0x44,0x59,0x4a,0x13,0xd2,0x16,0x1a,0x3f,0x14,0xb7,0xc6,0x3f,0x43, - 0x55,0x45,0xcb,0x75,0xcf,0xd2,0x8c,0xe2,0x06,0xa5,0x63,0x04,0xef,0x6c,0xe8,0x84,0x16,0x3e,0xae,0x7a, - 0xac,0x6c,0x7a,0x0d,0x31,0x20,0x02,0xb5,0x15,0x11,0xd8,0x80,0x3a,0xfc,0xc5,0x23,0x09,0xcf,0xda,0xd3, - 0x91,0xd0,0x11,0x42,0x0b,0x03,0xf7,0x30,0x20,0x78,0x22,0x6c,0xac,0x4d,0xe2,0xb0,0x09,0x77,0x59,0x34, - 0x64,0xdf,0x64,0xe7,0xbb,0x4a,0xec,0x50,0x06,0xb9,0x6e,0x5c,0x0e,0xf7,0x72,0x5a,0x08,0x10,0xd2,0x71, - 0x9b,0xf8,0xbf,0xb6,0x2d,0x6a,0x66,0x32,0x07,0x7f,0x0d,0x7e,0x72,0x5b,0xe1,0x4d,0x73,0xbe,0x40,0xd6, - 0x40,0x0b,0x0c,0xdc,0x11,0x94,0x29,0x09,0xff,0x64,0x4e,0x9c,0x3d,0x3b,0x56,0xf2,0x1e,0xb8,0x56,0xac, - 0x1c,0xbd,0x2c,0x50,0x24,0xa2,0xf5,0xf0,0x49,0xf2,0xda,0x70,0x07,0xfa,0x81,0x45,0xc8,0x83,0x14,0x5a, - 0x71,0x1a,0x35,0x2c,0xb9,0x3f,0x54,0x7c,0x1c,0x84,0x90,0x23,0x64,0x88,0x21,0x36,0x2d,0x16,0x48,0xa8, - 0x20,0x80,0xb0,0x2f,0x60,0xbf,0x63,0x5d,0x07,0x67,0xf0,0x13,0x52,0x37,0x19,0x30,0x4a,0x0a,0x79,0x3b, - 0x58,0x68,0xc5,0xcf,0x16,0x10,0x5f,0x84,0x08,0x29,0xc1,0x85,0x8b,0x9c,0xd9,0xf7,0x13,0x7d,0x7e,0x13, - 0xe1,0x94,0x8d,0x1a,0x67,0x2b,0xbe,0x62,0xc1,0x97,0xa5,0x18,0x27,0x8a,0xda,0xaf,0x88,0xc7,0x77,0x21, - 0xbd,0x9c,0x51,0x57,0x93,0x06,0xe4,0xe3,0xa7,0x62,0xeb,0x9e,0xf7,0xa5,0x94,0xdc,0xc3,0x76,0x1a,0x18, - 0x11,0xec,0x3b,0xc0,0xa8,0x61,0x0f,0xe9,0x1c,0x95,0xad,0x25,0x2e,0xa3,0xe1,0x31,0xfd,0x89,0xbf,0xe0, - 0x4f,0x78,0x59,0x87,0xea,0x93,0xa4,0x01,0x5d,0x7d,0x55,0xef,0x5b,0x86,0xf1,0xa7,0x39,0xe0,0xde,0x69, - 0x51,0x0d,0xec,0xbf,0x81,0x33,0xb7,0x12,0xae,0xb2,0x5e,0x15,0xc6,0x30,0xea,0xbb,0xf1,0x38,0xe8,0xd5, - 0x62,0xf7,0x28,0x6a,0x9c,0x3f,0xa7,0x96,0x54,0xd0,0xdd,0xbb,0xac,0xb5,0x05,0x0d,0xb1,0xaa,0xf8,0x44, - 0xf6,0xc2,0x7c,0x18,0x8c,0xe1,0xe3,0x1c,0x04,0x2a,0x7c,0x90,0x37,0x25,0x97,0xb5,0x27,0x98,0xbd,0x95, - 0xbd,0x56,0xc1,0x49,0x1d,0x7f,0xc9,0x04,0x1d,0xc7,0x8b,0xd5,0xe8,0xd4,0x79,0x01,0x70,0xf2,0x5e,0xad, - 0x95,0xa9,0x3d,0x34,0x5c,0x5a,0xe1,0xde,0x9e,0x69,0xcd,0x33,0x37,0xb3,0x1d,0x70,0xb6,0x56,0xca,0x1a, - 0x0e,0xe6,0x56,0x52,0x20,0xf5,0x35,0x0d,0x25,0xf1,0xf6,0xe2,0x95,0xc7,0xa6,0x40,0x0d,0x2f,0x23,0x47, - 0xd7,0x17,0xea,0xcf,0x90,0x11,0x10,0x9e,0xa2,0xd8,0xe3,0xbf,0x4a,0x25,0x3f,0xf3,0x34,0x7d,0x84,0x3a, - 0x21,0x7f,0x1c,0xb0,0x66,0x2f,0x1b,0x9e,0x8c,0x8c,0x8e,0x3a,0xd3,0xde,0xe0,0xdb,0x60,0xf4,0xa5,0x56, - 0x5e,0x61,0xe3,0x22,0x39,0x85,0x81,0xd9,0x38,0xe7,0xb8,0xe8,0x63,0x48,0xc7,0xe8,0x67,0x9e,0x9c,0x73, - 0x6a,0x9d,0x5c,0xf0,0xef,0xef,0xc9,0x35,0x7e,0xb2,0x64,0x8c,0x9f,0x45,0x32,0xe6,0xd4,0x59,0xb2,0xe0, - 0xdf,0x2f,0xc9,0x19,0xff,0x9e,0x26,0xd7,0xfc,0x7b,0x91,0x5c,0xe1,0x87,0xa8,0x26,0xc4,0xcb,0x18,0xaf, - 0x92,0x8c,0x93,0xcf,0x12,0x9f,0xbd,0x3c,0x56,0x93,0xe6,0x0b,0x09,0x89,0x41,0xd6,0x60,0xa6,0xbc,0x29, - 0xd8,0xcd,0x48,0x47,0x34,0x55,0xfa,0x5d,0xa9,0x5e,0xac,0x35,0x58,0xa9,0x33,0xf9,0xa4,0x4e,0x74,0xec, - 0xd0,0xb9,0x8e,0xf1,0x52,0x25,0x6a,0x1b,0x4e,0x73,0x13,0x98,0x13,0x27,0x11,0x1b,0xb0,0x11,0xc5,0x93, - 0xea,0x77,0x0e,0x77,0x88,0x6c,0xc6,0xe3,0x1d,0xc4,0x71,0x5e,0xb3,0x1d,0xc2,0xa6,0x69,0xd7,0xa9,0x89, - 0xa2,0x4c,0x39,0xc2,0xa5,0x8a,0x06,0x44,0xd4,0x14,0x78,0xc4,0xed,0x4e,0x06,0x13,0xe3,0x1a,0x68,0x76, - 0x4e,0x92,0x0a,0xef,0xbc,0x48,0x5c,0x93,0x61,0x24,0xb6,0xce,0x24,0x98,0x75,0xbb,0x37,0x0c,0x01,0x31, - 0x25,0xc6,0x95,0xb2,0xad,0x1b,0x6a,0xaa,0x73,0x2b,0x98,0x89,0x91,0x96,0xbc,0xaf,0x11,0x62,0x5f,0x23, - 0xde,0x95,0x3d,0x2f,0x0b,0x36,0x7c,0x72,0xe6,0x7a,0xae,0x46,0xe1,0x49,0x44,0x12,0x1a,0x53,0xb1,0x89, - 0x6f,0x6f,0xc3,0xa8,0x5a,0x9a,0x8d,0x78,0xb4,0xcc,0xbb,0xfa,0x16,0x93,0x63,0xd6,0xb4,0x2a,0xb3,0x63, - 0xcf,0xf6,0x0c,0xf3,0xab,0x09,0x1e,0xa5,0x5b,0xa9,0x21,0xc9,0xe2,0xa1,0xac,0xa8,0x8f,0x16,0xf5,0x8c, - 0xe1,0x1f,0xa8,0xec,0xef,0xd4,0xb9,0x9f,0xac,0x8c,0x6c,0x8e,0xca,0x77,0xd9,0x78,0xe8,0x09,0x99,0x33, - 0x03,0x0f,0xa9,0x59,0x36,0x8d,0x3c,0xad,0x65,0xe8,0x05,0xb8,0x2a,0x95,0x37,0x32,0x8e,0x28,0x2a,0xc8, - 0x8a,0x1a,0x96,0x3b,0xea,0x67,0xb8,0xd6,0x3a,0xe1,0x9a,0x4b,0xd3,0x62,0x39,0x13,0x5a,0x76,0xea,0x95, - 0x31,0x49,0x03,0x5d,0x27,0x02,0x0c,0x11,0x9e,0xd1,0xb5,0xea,0xb7,0x56,0xbd,0x5e,0x2a,0xcb,0xc9,0x94, - 0xa8,0x8f,0x97,0xa5,0x8a,0x8c,0xca,0xc2,0x25,0x25,0x4a,0x82,0x4e,0xa8,0x66,0xe5,0x03,0xae,0x99,0xf7, - 0x9a,0xa8,0x2a,0xe9,0xa8,0xaa,0xfa,0x81,0x1c,0xd4,0x84,0xf6,0x18,0x69,0xef,0x51,0xa1,0x89,0xfc,0xc0, - 0xa7,0x52,0x18,0x6d,0xc4,0x3c,0x39,0x6d,0x68,0x63,0x5c,0xff,0x13,0xc8,0x55,0x0b,0x82,0xf3,0xf5,0x7a, - 0x15,0xb2,0x02,0xa8,0x55,0xb4,0x39,0x49,0x4c,0x90,0xa9,0xe8,0x61,0xe8,0x57,0xc8,0x41,0x4f,0x96,0x49, - 0x19,0xce,0xc5,0xcc,0xb9,0x3c,0x84,0x5c,0xb0,0x63,0xc9,0x96,0xec,0xe5,0x38,0xac,0xfd,0x39,0xdd,0xdf, - 0x57,0xa9,0x5c,0x45,0x2c,0xc3,0xa5,0x13,0x7f,0x46,0x9d,0xf1,0x96,0xbd,0x02,0xfc,0x21,0xa2,0x77,0xb5, - 0x92,0xb8,0x2e,0x81,0xba,0xcc,0x5a,0xfb,0xa3,0xa0,0x31,0xeb,0x0c,0x18,0x04,0x70,0x31,0xb7,0x7c,0xcd, - 0xd5,0xe3,0xa2,0xfa,0x1d,0xd3,0x04,0xc0,0x82,0x61,0xdf,0x3c,0xbd,0x1e,0xda,0x82,0x34,0x15,0x31,0xb1, - 0xa3,0xef,0x55,0xc4,0x33,0x5f,0x15,0xd7,0x1a,0x68,0xed,0x01,0x5f,0xe8,0x7f,0xae,0x66,0x52,0xe8,0x9a, - 0xd7,0xeb,0x7b,0x87,0x87,0xba,0x63,0x3a,0x8c,0x1a,0x3c,0xd6,0xff,0x4a,0x0b,0xea,0x8a,0x08,0xae,0xca, - 0x7c,0x19,0x01,0x89,0xed,0x1e,0x09,0xdb,0xde,0xb0,0x31,0xc2,0xd8,0x7d,0xbf,0x71,0xb0,0x67,0xd4,0x0a, - 0x9b,0x70,0x4e,0x68,0x78,0x45,0x9b,0xc7,0xc2,0xf1,0x45,0x32,0x17,0x8b,0xa4,0x10,0x67,0x84,0xf3,0xae, - 0xe9,0x40,0x19,0xd3,0xd9,0x72,0x49,0x87,0x01,0x61,0xba,0xcb,0x86,0xe8,0x31,0xb9,0x30,0x09,0x2f,0x25, - 0xa1,0x7a,0x15,0x48,0x6f,0x21,0x74,0x13,0xc4,0xd1,0x1b,0x44,0x1f,0xd3,0xf1,0x93,0x9e,0xc5,0xe3,0x8d, - 0xb8,0x1c,0x14,0x49,0xc1,0x64,0xfa,0x6b,0xa0,0x09,0x9a,0x81,0xa2,0xbf,0x20,0xfa,0x75,0xee,0x19,0x69, - 0x7a,0x9c,0x14,0xa2,0x44,0x23,0x17,0x64,0x20,0x3f,0xf0,0x41,0x42,0xf4,0x23,0x33,0xd9,0x01,0x4b,0x9c, - 0x5b,0x05,0x24,0x04,0x5e,0x54,0x22,0xcb,0xe1,0xc2,0x3b,0x08,0x73,0x75,0xf6,0xb0,0x1c,0x78,0x69,0x28, - 0xc2,0x88,0x15,0x1a,0xfa,0x0b,0xae,0x4b,0x1b,0x93,0xe4,0x7d,0xed,0xbe,0xa7,0x28,0xbf,0x01,0xf5,0x8f, - 0x28,0xbc,0x68,0x88,0xbf,0xc9,0x89,0xf9,0x02,0x24,0xd3,0x69,0x3a,0xf9,0x62,0x4f,0x6a,0x2e,0x14,0x73, - 0xa1,0x76,0x99,0x0d,0xad,0x9f,0xa1,0xed,0x0b,0x45,0x1d,0xcf,0xdc,0x6e,0x6f,0x04,0xc9,0xb2,0x05,0x9d, - 0xf9,0x16,0x21,0xd3,0xd4,0x62,0x8e,0x1b,0x04,0x0e,0xce,0x15,0x05,0x0b,0xc7,0x6d,0x57,0x4c,0x86,0xb0, - 0xb4,0x91,0xe1,0xca,0x11,0x4c,0x73,0xa6,0x6e,0x4d,0xfc,0x4d,0xa2,0xf1,0xe7,0xd1,0xe0,0x27,0x42,0xf9, - 0x2b,0x41,0x5b,0x07,0x34,0xd8,0x7a,0x8d,0xd7,0x89,0x7a,0x3d,0xb2,0xc4,0x6a,0xb5,0xd9,0x40,0x3a,0xae, - 0xb1,0x9e,0xe9,0x90,0xe9,0x70,0x3a,0x77,0x66,0xd2,0xde,0x72,0x35,0xe9,0x80,0xda,0x0e,0x58,0xf7,0x39, - 0x6d,0xf6,0x34,0x6a,0x48,0xc6,0x27,0x84,0xd1,0x56,0xa3,0xe4,0x55,0xb8,0xa2,0xce,0xf0,0x79,0xaf,0x49, - 0x35,0x20,0x26,0x1e,0x6b,0x04,0xb7,0x91,0x10,0xb6,0xea,0xea,0x55,0x20,0x87,0x6b,0x74,0x39,0xea,0x95, - 0xa7,0x77,0xce,0x3c,0xea,0x31,0xce,0x25,0x9a,0x72,0xb6,0x32,0x21,0xa4,0x97,0xf6,0x15,0x75,0xeb,0xd9, - 0x14,0xcc,0xe9,0x80,0x14,0x9e,0xdb,0xd1,0x96,0x5a,0x6f,0xe6,0x1f,0xab,0x62,0xe6,0x99,0xd0,0xa7,0x70, - 0xb5,0x64,0x7d,0x45,0x48,0xa5,0x00,0xf8,0xd0,0xaa,0x2b,0x92,0x07,0xf0,0xc5,0x99,0x89,0x2a,0x43,0xfb, - 0x73,0x06,0x73,0x97,0x99,0x3a,0x26,0x55,0x27,0x97,0xa0,0x96,0x58,0x34,0x8d,0x5f,0x7a,0x51,0x2e,0x0d, - 0xaf,0x73,0xe1,0x4f,0x7b,0x8a,0x18,0x44,0xb4,0xd9,0x34,0x08,0x4c,0xa9,0x1c,0x33,0xa0,0x05,0xe6,0x75, - 0xca,0xf4,0x00,0x37,0x34,0x8d,0x36,0xbb,0x0d,0x91,0x9f,0x51,0x44,0xd6,0x56,0x07,0xd9,0xb2,0x41,0x78, - 0x5c,0xfa,0xb2,0x51,0x4d,0xbb,0x3e,0x2e,0x95,0x58,0x53,0x7d,0x05,0xf1,0x7f,0x96,0x3c,0x85,0x7b,0xd2, - 0xc0,0xa6,0x40,0xca,0xd7,0x25,0x10,0xf6,0x20,0x5a,0xc3,0x42,0x6d,0x1f,0xe1,0xfb,0xaa,0x1f,0x09,0xb8, - 0x32,0x22,0x42,0x88,0x1b,0x66,0x28,0x43,0xb3,0xe7,0x1e,0xdc,0xab,0x10,0xa7,0x13,0xab,0x0f,0x51,0xfe, - 0x15,0xc1,0xc5,0x4a,0x1e,0x58,0xfc,0x7f,0x40,0xe4,0x3c,0x48,0x81,0x5e,0x78,0x3e,0x0c,0xe8,0xe5,0x9c, - 0x99,0x8a,0x42,0x74,0xfa,0x75,0xa4,0xe2,0xe6,0x98,0x50,0x55,0x5c,0x0a,0x6b,0xd8,0x14,0xcf,0x84,0x25, - 0x31,0xe3,0x25,0x23,0xa6,0x89,0xc3,0x54,0xc4,0xac,0x13,0x76,0x65,0x8e,0xff,0x42,0x2c,0xc4,0x99,0xb8, - 0x16,0x63,0x71,0xe9,0xd9,0x56,0x83,0x2c,0xd7,0xe4,0x0e,0x91,0x4d,0x46,0x5d,0xd9,0xe4,0x5b,0x52,0x36, - 0x7b,0x4b,0x61,0xc8,0x10,0x4e,0x12,0x6c,0x83,0x94,0x88,0x7c,0xd5,0xa5,0x88,0x16,0x78,0xa5,0x32,0xde, - 0x94,0x9e,0xcc,0x39,0x6b,0x10,0x51,0x92,0xbe,0x06,0xa5,0x91,0x1a,0x7b,0x07,0xab,0x8a,0x25,0x34,0x3c, - 0x68,0x14,0xc8,0x58,0xc3,0x8e,0xb8,0x64,0xe0,0xd5,0x88,0x83,0xf5,0x4b,0xf2,0x2e,0xe3,0x2d,0xbe,0x1c, - 0xb4,0x3a,0x59,0x75,0x1f,0xbe,0x88,0xf0,0x0f,0xa8,0x4e,0x21,0xfa,0x20,0xb8,0xf1,0x29,0x59,0x42,0xf1, - 0x4a,0x52,0x16,0xab,0x7b,0x00,0xac,0xf7,0x13,0x6e,0x76,0x82,0x29,0x53,0x39,0x24,0xfa,0x26,0x5c,0x25, - 0x55,0x34,0x3c,0xb9,0xa2,0x61,0x8e,0x5a,0x46,0xb6,0x2b,0x17,0x8e,0x8a,0x88,0x08,0x17,0x40,0x06,0x73, - 0x89,0x5e,0x22,0x90,0x8c,0x92,0x3b,0xc1,0x14,0xba,0xf0,0x4d,0xa1,0x6b,0x9a,0xb0,0xe2,0xa4,0x1a,0x45, - 0x5d,0xfe,0xab,0x44,0xdc,0xd0,0x39,0x36,0x3b,0x21,0x3a,0xca,0x06,0x03,0x19,0xb5,0xac,0xf2,0x27,0xd1, - 0xd0,0xb8,0x68,0x7d,0x7f,0x48,0x23,0xfc,0x35,0xa4,0x1a,0xb3,0x70,0x22,0x60,0x76,0xc2,0xfe,0xf4,0xc4, - 0x28,0x12,0x99,0x46,0x23,0xa3,0x99,0xf9,0x35,0xe4,0xe8,0x16,0x33,0xa0,0xa6,0xab,0x70,0xce,0xca,0xb5, - 0xde,0x84,0xf2,0x94,0x22,0x1b,0xf7,0x53,0xe9,0xf0,0xfd,0x84,0x17,0x3c,0x8d,0xe0,0x8c,0x16,0x30,0x8a, - 0x61,0xf3,0x38,0x44,0x15,0xc3,0x56,0x05,0x08,0x44,0xa5,0xac,0x19,0xd4,0x57,0xe1,0x15,0xf0,0x61,0xfc, - 0x2b,0xfd,0x55,0x6d,0xb6,0x3f,0x50,0xcd,0xc5,0x84,0x8c,0x0b,0x2b,0x27,0xe3,0x85,0x9f,0x40,0x1b,0xc9, - 0x24,0xc7,0x04,0x7c,0xaa,0x02,0x06,0x86,0x2b,0x66,0x5b,0x89,0xfd,0xbe,0x00,0x98,0x07,0xbd,0x54,0x0d, - 0x8c,0xfe,0x8e,0x03,0xd3,0x59,0x34,0xea,0xf0,0xde,0x86,0xd6,0x45,0xcb,0x7e,0x62,0x2c,0xe3,0xab,0x92, - 0x4d,0x36,0xfe,0xa2,0x5e,0x65,0x9b,0x6b,0x27,0x24,0x62,0xe1,0x55,0x65,0xf9,0x91,0x97,0x70,0x60,0xea, - 0xc9,0x3a,0x19,0x89,0xda,0x33,0x57,0x67,0xeb,0x90,0x2d,0xf1,0x68,0x11,0x0d,0xc3,0x59,0x92,0xf5,0xf7, - 0x2e,0x72,0x3a,0x58,0x11,0xad,0x4a,0x3d,0xf5,0xf3,0x8a,0x65,0x41,0x67,0x44,0x36,0xa5,0x67,0x08,0xe8, - 0x5a,0x2d,0x11,0x08,0x81,0xf0,0xcd,0x1c,0x92,0xb1,0xac,0x7a,0x2b,0x2b,0x59,0x12,0xd9,0x43,0xd9,0x94, - 0x3a,0xd4,0xd8,0x84,0xb2,0xd8,0x8f,0xf7,0xcd,0x3c,0xad,0x11,0xd8,0x42,0x7f,0x8c,0xef,0xb0,0xff,0x9a, - 0xf8,0x23,0x63,0x82,0x35,0x79,0x1c,0x66,0x9e,0x84,0xce,0xa2,0xa2,0x2a,0x00,0x7d,0x39,0x24,0x16,0x68, - 0x49,0xdf,0x66,0x38,0x6e,0xa2,0x58,0x37,0x53,0x74,0xd6,0x16,0xc5,0xf3,0x84,0x8a,0x17,0xaa,0xb8,0x27, - 0x0a,0x9d,0x63,0x94,0x9e,0xa3,0x4a,0x19,0x66,0x96,0xa5,0xc9,0xe0,0x17,0x56,0x10,0x87,0x54,0x94,0x32, - 0x3b,0xcb,0x5f,0x1b,0x77,0x66,0x9a,0x14,0x82,0x01,0xde,0xfc,0x06,0xdd,0xb1,0xd4,0x92,0xf8,0x5a,0xcb, - 0x63,0x7b,0xb6,0xd8,0x1c,0x90,0xca,0xe5,0xd8,0xcd,0xf5,0x60,0xc2,0x1b,0x4c,0x73,0x6c,0xae,0x00,0x6d, - 0x36,0xa2,0x7f,0x56,0x1a,0xce,0x88,0x03,0x5b,0xf5,0xd9,0x52,0x21,0x57,0x98,0x8d,0xf6,0x39,0xf7,0x90, - 0x30,0x39,0x13,0xe3,0xf3,0x28,0x06,0xca,0xd9,0x78,0x98,0xcc,0xf3,0xce,0xf0,0x23,0xce,0x59,0x31,0x01, - 0x2b,0x66,0xab,0xd5,0x52,0x96,0xe6,0x04,0x42,0x39,0x9d,0xc2,0x24,0x08,0x9b,0x9e,0xf2,0xbb,0xb1,0x94, - 0xb8,0x69,0xbe,0x27,0xc6,0xc1,0xa4,0x6d,0x6d,0x8d,0x50,0x6c,0x8e,0x10,0xc1,0x99,0xa6,0x98,0x4d,0xe3, - 0xf8,0x06,0xd2,0xb1,0x92,0x29,0xb1,0xfc,0x3a,0xc5,0x1e,0x90,0x85,0xd1,0xd7,0x17,0xa3,0x5d,0x65,0x0b, - 0x09,0xab,0x0d,0xf6,0x91,0x44,0x08,0x19,0x09,0x71,0x76,0x87,0x35,0xee,0x96,0xe8,0x4a,0x93,0xb0,0x84, - 0xd2,0xf2,0xa4,0x2d,0x2f,0x1d,0xe6,0x31,0x6b,0xd7,0xb7,0xec,0xe0,0x94,0x13,0x82,0xed,0x8b,0x52,0x9e, - 0xd4,0xbe,0xf2,0x24,0x94,0x4e,0x88,0x0b,0xb2,0xf3,0xfb,0xe4,0x90,0xd6,0xa4,0x99,0xf6,0xe0,0x10,0x0b, - 0xa4,0x23,0x72,0x21,0xc1,0xb9,0xc5,0xb9,0xdd,0x96,0x1b,0xe1,0xbc,0xc0,0x18,0x3d,0xa7,0xfb,0x0d,0x7b, - 0xb7,0xc3,0x3b,0xb8,0x3d,0x69,0x74,0x60,0x85,0xde,0x02,0x26,0x4f,0xa1,0x78,0x6e,0x96,0xd1,0x66,0x57, - 0x1c,0x71,0xc6,0x6d,0x94,0x13,0x15,0x60,0x6d,0x94,0x20,0x14,0xca,0xb6,0xf1,0xc0,0xe7,0xda,0x86,0x22, - 0x19,0xc3,0xaf,0xbf,0x61,0x64,0xf9,0xa4,0x61,0x0a,0xc1,0x9e,0x88,0x38,0xd3,0x5b,0x44,0x03,0x3b,0x61, - 0x7a,0x5f,0xbd,0xa8,0x1b,0xf4,0x49,0x7b,0x75,0x86,0xbe,0x8b,0xfb,0xf7,0x07,0x47,0xf1,0xb6,0x5a,0x66, - 0xe8,0x3b,0xe7,0xb7,0x4a,0x43,0x2b,0x27,0x76,0x43,0x1b,0xef,0x40,0x45,0xfc,0x1a,0x01,0xb7,0x9b,0x78, - 0x07,0xb9,0x0a,0x55,0xcd,0xde,0xa9,0x52,0xcb,0xc5,0x3d,0x09,0xe2,0xf3,0x96,0x35,0x00,0x6b,0x44,0x19, - 0x4e,0xa1,0x6b,0x61,0xf0,0x1c,0x33,0x9e,0x6b,0xc3,0xa5,0x89,0xa8,0x0b,0xfb,0x76,0x36,0x69,0xd4,0xdc, - 0xc1,0x13,0x08,0xc5,0xb6,0x0c,0x8b,0x06,0x15,0x64,0xc5,0x7c,0xd8,0x3f,0x05,0x45,0x56,0xb0,0x93,0xe0, - 0xc6,0x13,0xf7,0x3c,0xdd,0x52,0x2b,0xb0,0xc9,0xfd,0x6e,0xc6,0xae,0x59,0x8c,0x62,0xe0,0x99,0x86,0xdf, - 0xf5,0x3a,0x73,0x2d,0x3c,0xd7,0xc4,0x72,0x7f,0x6f,0x4a,0x43,0x2c,0x0b,0xf8,0x66,0xd5,0x56,0xc5,0x3f, - 0xe7,0x3b,0x28,0x3d,0x73,0xff,0xda,0xf7,0xc0,0xbe,0x51,0xf2,0xe4,0x63,0xa8,0x04,0xe2,0x57,0xbc,0xe7, - 0x5d,0x82,0xc8,0xfd,0x37,0x3a,0x6a,0xb9,0x14,0x6c,0xc8,0xf8,0x89,0x48,0x0b,0xfd,0x84,0x28,0xc6,0xf8, - 0x1d,0xc5,0xfa,0xc1,0xb7,0xdf,0x6f,0x2e,0x7f,0x3d,0x94,0xc3,0xba,0x17,0xec,0x04,0x3d,0x19,0xd7,0x31, - 0x87,0xd1,0xf7,0xac,0xc5,0x7d,0x00,0xdb,0x02,0x94,0xae,0x63,0x90,0x26,0x0b,0x31,0xfe,0x68,0x77,0x42, - 0x25,0x65,0x77,0xe7,0x83,0x82,0x77,0x28,0x91,0xbb,0x09,0xea,0xc4,0xc6,0x03,0x91,0xc5,0x17,0xad,0x41, - 0x20,0x80,0xff,0xbd,0x84,0x7a,0x11,0x09,0xfa,0xcd,0xbd,0x5d,0xc9,0xfa,0x98,0x76,0x6b,0x0a,0x5d,0x06, - 0xc1,0xa0,0x21,0x89,0xab,0xb5,0xef,0x7e,0x28,0x75,0x8c,0x5c,0x54,0x27,0xfd,0xea,0x78,0x03,0x77,0x02, - 0x74,0xd3,0xa6,0xdd,0x1f,0xf6,0x8a,0x5b,0x0f,0xaa,0x8b,0xb3,0x20,0x0e,0x16,0x69,0x7d,0xce,0x36,0x45, - 0x43,0xf5,0xb8,0xa5,0x18,0x7a,0xeb,0x7d,0xda,0xd1,0x8e,0x8d,0x8c,0xf7,0xfb,0x4a,0x96,0xd7,0xef,0x24, - 0xb4,0xcd,0x85,0xba,0x2b,0xe6,0xb6,0x78,0x97,0xd3,0xec,0x22,0x68,0x58,0xe8,0x3d,0x6a,0xed,0x0f,0x36, - 0xa8,0x2c,0xe5,0xac,0xe5,0x00,0x64,0x9c,0xaa,0x33,0xdf,0x43,0xdb,0x80,0x26,0xb0,0x02,0x7c,0xaf,0x0b, - 0x98,0xc5,0xd3,0xb7,0xd5,0xa0,0xad,0x35,0x29,0xd8,0xd8,0x69,0xce,0xbf,0x38,0xec,0xf1,0x8b,0x83,0x15, - 0x87,0x2a,0x1e,0x35,0xcd,0x1e,0xbb,0xf6,0x9f,0xe7,0x4f,0x8b,0xb2,0xb3,0x16,0xfc,0xb5,0x68,0x22,0x23, - 0x1c,0xbc,0xbf,0xcf,0x49,0x8c,0x85,0x4d,0xdd,0x04,0x13,0xea,0x21,0xf3,0x80,0xf5,0x83,0x92,0x51,0xbb, - 0xf8,0x57,0xa0,0xe0,0x70,0xbc,0xd3,0x2f,0x0b,0x92,0xd4,0x1e,0xd4,0xc7,0xbd,0xef,0xfa,0xcd,0x2a,0x3d, - 0x67,0x1b,0x26,0xb5,0xe5,0x29,0x47,0x49,0x21,0x2a,0x80,0x9f,0xdb,0x92,0x15,0x28,0xe3,0x94,0x74,0x84, - 0x4f,0x57,0xa0,0xcd,0x46,0x20,0x87,0x12,0xae,0x86,0x61,0xa9,0xe7,0x5c,0x09,0x3c,0x13,0xc7,0x8a,0x97, - 0xac,0x8a,0xa3,0x39,0x95,0xec,0x34,0xf6,0x95,0x32,0x56,0x5c,0x08,0xe3,0xb9,0xf5,0x7a,0x99,0xb1,0xb7, - 0x22,0xfd,0x10,0x1f,0xc8,0x03,0x06,0x2d,0x81,0xd1,0x3c,0x84,0x0c,0xe9,0x0d,0xc2,0x58,0x9d,0x17,0x73, - 0xe2,0xd1,0xb9,0x86,0x86,0xa4,0x09,0xe3,0xf4,0x13,0x40,0xf7,0x36,0x53,0xb4,0xdc,0xcd,0x37,0xce,0xaf, - 0x95,0x68,0xc2,0x2a,0x8f,0x95,0x07,0x1c,0x36,0x53,0x46,0x64,0x43,0xf6,0x20,0x29,0x07,0xbd,0x5e,0x46, - 0xdb,0x15,0x06,0x8a,0xd9,0x48,0x93,0xd1,0x61,0x8a,0x03,0xde,0xb9,0x51,0x7a,0x6e,0x25,0xcf,0x34,0x4c, - 0xea,0xc8,0x75,0x9e,0x37,0xd7,0x7a,0x2d,0xdb,0x49,0xcd,0x79,0x37,0x90,0xac,0xf8,0xe0,0x04,0x2b,0x77, - 0x01,0x97,0x3c,0xa9,0x1e,0xaa,0xe4,0x8f,0x7a,0xbb,0x56,0x17,0x34,0x00,0xfc,0x15,0x95,0xd8,0x6a,0x44, - 0x48,0x57,0x62,0x45,0xa4,0x06,0x91,0xbe,0x9a,0x85,0xca,0x95,0x6c,0xa5,0x4c,0x2a,0xc5,0xc7,0x4f,0xf0, - 0x53,0x0e,0x69,0xd6,0x68,0x8a,0x3f,0x42,0xe4,0x95,0x18,0x2f,0xdb,0x5f,0xc0,0xd3,0x6a,0x15,0x67,0x20, - 0x70,0x21,0x81,0xc8,0x60,0x13,0x01,0xec,0x4f,0x3f,0x6e,0x5f,0x29,0x79,0xf3,0x74,0x7f,0x7f,0x6e,0x80, - 0x9a,0x38,0x13,0xf5,0x35,0x1c,0xd2,0xba,0xbe,0xcd,0x72,0xa2,0xc1,0xf9,0x9b,0x95,0xfd,0x06,0x5b,0x78, - 0xd5,0x88,0x38,0x33,0xeb,0x92,0x7f,0x2b,0xdb,0xbb,0x95,0x6f,0x71,0x47,0x6d,0xad,0x30,0x8e,0xc0,0x54, - 0xab,0x9a,0xdc,0x0c,0x8a,0xe1,0x8f,0x70,0x86,0x52,0xc9,0x01,0xe4,0xcc,0xb3,0x90,0x2d,0xfe,0xe7,0x36, - 0x2a,0x07,0x17,0x40,0x74,0x3f,0x1d,0xd4,0xef,0xd6,0x16,0xe7,0xad,0x16,0xe7,0xdc,0x62,0x7b,0x12,0x74, - 0xcb,0xcc,0x71,0xdb,0xf9,0xae,0xa2,0x09,0xbb,0x94,0xd1,0x57,0x3c,0xed,0xc1,0x2a,0x57,0x13,0x53,0xd3, - 0x3f,0x08,0x5b,0x9b,0xe6,0xb8,0x7f,0xd4,0xdb,0x90,0xd1,0x15,0x17,0xa7,0x61,0x73,0x5b,0xa8,0xe5,0xdd, - 0x36,0xe3,0x0c,0x95,0xa9,0x71,0xd4,0xd7,0x21,0xbb,0x59,0xe1,0x5d,0xba,0xb7,0xe4,0x1a,0xaa,0xa1,0x13, - 0x02,0x7e,0x6a,0xa9,0x5f,0xa6,0x97,0xaf,0x98,0x70,0xca,0x98,0x80,0xea,0x05,0xfd,0xa0,0xe7,0x1b,0x7b, - 0x64,0x7e,0x35,0x90,0x03,0xa8,0x88,0xa8,0xfd,0x20,0x8a,0x46,0x54,0x01,0x9c,0xb2,0x67,0xc4,0x17,0x49, - 0x8f,0x2f,0x72,0x60,0x19,0x50,0x3e,0x6a,0x75,0xba,0x2b,0xcf,0x1f,0xc2,0x19,0x15,0xd8,0x68,0x05,0xb5, - 0x02,0x19,0xfe,0xd1,0xe6,0x90,0x05,0xdb,0x3b,0x16,0x61,0xae,0xa2,0x67,0xe8,0xf2,0xda,0xe6,0xb1,0x84, - 0xcd,0x63,0xa9,0x6e,0x31,0x60,0xf4,0xef,0xda,0xe6,0xbb,0x49,0xd4,0x88,0x70,0xda,0x3b,0x9b,0x48,0xcf, - 0xbf,0xa1,0x0e,0x3d,0x6a,0x67,0xdb,0x1a,0x9b,0xe7,0x3b,0x94,0x8c,0xad,0x94,0x3f,0x54,0x93,0xe0,0xcc, - 0xf2,0x73,0x59,0x66,0x1c,0x04,0x9b,0xe6,0xa6,0x0e,0x15,0x12,0xb4,0xc8,0xaf,0x36,0xe6,0xff,0x2a,0x41, - 0x33,0x02,0xcc,0x13,0x51,0x63,0x18,0xcd,0x24,0xf1,0x3f,0x61,0x71,0xf8,0x2a,0x29,0x5b,0x49,0xcc,0x7b, - 0x69,0xe9,0x0f,0x62,0x1c,0x34,0x0a,0x24,0xac,0x5c,0x5e,0x69,0x1f,0x08,0xa6,0x0c,0x57,0x51,0x9a,0xac, - 0x40,0xcd,0x4f,0x14,0xe3,0x92,0x12,0xc8,0x43,0x36,0x0a,0x1e,0x6d,0x10,0x3e,0xce,0xd7,0xeb,0x37,0xb0, - 0xd3,0x58,0xa9,0x4d,0x0f,0x21,0x84,0x7a,0xd2,0xc5,0x8c,0x48,0x5d,0xe7,0x7b,0x15,0x4f,0x22,0xec,0xba, - 0x82,0x0d,0xec,0x33,0x20,0xef,0x21,0x02,0xce,0x21,0x5a,0xac,0x0d,0x03,0xfe,0xea,0x5d,0x58,0x12,0xf0, - 0x22,0x93,0x18,0x66,0xfc,0x20,0xf8,0x65,0xab,0x10,0x32,0xbd,0x55,0xf8,0xd1,0xd7,0xfb,0xe7,0xec,0xf7, - 0x93,0x66,0x1c,0xb5,0x7a,0xeb,0x43,0x09,0x01,0x48,0x12,0x10,0x55,0x5d,0x5c,0xce,0x68,0x47,0x54,0xb4, - 0x3b,0x64,0x1e,0xa8,0x50,0x60,0xc1,0x93,0x97,0x8f,0x9e,0x3c,0xd6,0x26,0xd0,0x8a,0x97,0x1f,0x06,0x75, - 0x49,0x63,0x89,0xa1,0xbb,0x6f,0x44,0x2b,0x67,0x57,0x36,0x6b,0xe6,0x24,0x33,0x1d,0x17,0xa0,0x59,0x84, - 0x7b,0x81,0xdb,0x42,0x53,0x2a,0x87,0x7a,0xf3,0xa1,0x7e,0x8e,0x55,0xbd,0x9e,0xa1,0xd4,0xd7,0xba,0x6d, - 0x27,0x45,0xe2,0x52,0x8d,0x46,0x2b,0x2a,0x4b,0x5a,0xab,0x04,0xd0,0xf1,0x6c,0x58,0xd3,0x35,0x76,0x65, - 0x16,0x43,0x45,0x1e,0xc3,0x69,0xed,0x15,0x5c,0x21,0xde,0x3f,0xf9,0xf5,0xfd,0xc3,0xb7,0x4f,0x1e,0x36, - 0x46,0x4d,0xe9,0x4b,0x77,0x86,0xea,0xd9,0xe1,0x38,0x97,0x99,0x5c,0x9e,0x1b,0x92,0xc9,0x37,0xf1,0x93, - 0x44,0x68,0x17,0xcb,0xe7,0x44,0x3c,0x4c,0x33,0xc2,0x36,0x30,0x98,0x49,0xcf,0x52,0x85,0x14,0x85,0xe9, - 0x4a,0xeb,0xe2,0x15,0x45,0x39,0xc0,0x00,0x64,0x50,0x77,0xdc,0xcb,0x62,0xb3,0x85,0x69,0x38,0xd9,0x3d, - 0xdc,0x74,0x2c,0x83,0x07,0x09,0x3f,0xb5,0xf6,0xa3,0x21,0xd9,0x38,0x9e,0x4e,0xaa,0xf7,0x8a,0xda,0x94, - 0xb8,0x35,0xd2,0x67,0x0e,0xb0,0xdb,0x0a,0xcd,0x17,0xb0,0x8c,0x02,0xa2,0x57,0x30,0x42,0xed,0x42,0xa9, - 0x2e,0x14,0x59,0x6d,0x4a,0x27,0x5d,0x6f,0x2e,0x2a,0x83,0x77,0x44,0x06,0x8b,0xa4,0xb0,0x83,0xe3,0x89, - 0x06,0x11,0x21,0xd1,0x2e,0x56,0x48,0x71,0x6c,0x11,0x1f,0x7e,0xec,0x62,0x4b,0x60,0xfb,0xb8,0xd6,0x84, - 0x18,0xc3,0x1e,0x1b,0xc8,0x2b,0x62,0xc9,0x5a,0xc7,0x73,0x04,0x0c,0xbf,0x7c,0x2e,0x34,0x19,0xe7,0xf0, - 0x67,0xd2,0x60,0x8a,0x78,0x56,0x14,0x0f,0x24,0x79,0xb3,0x41,0xf6,0x37,0x7c,0x05,0xc1,0xd2,0x1b,0xd6, - 0x18,0x11,0xa1,0x3f,0xd0,0x58,0x87,0x0d,0x8e,0x21,0xf8,0x19,0x73,0x2c,0xd7,0x0c,0x63,0xe6,0x4a,0x24, - 0x91,0xc3,0x2c,0x77,0x0c,0xab,0xe4,0x15,0x50,0xc0,0x9b,0x9a,0xe5,0x82,0x02,0xfe,0x56,0x19,0xec,0x2a, - 0xe5,0x05,0x17,0xec,0xb8,0x18,0x40,0x19,0x73,0x89,0x0a,0xa7,0xbd,0x2b,0x98,0x54,0xfe,0xb2,0xfe,0x5a, - 0x6f,0x79,0xbe,0x85,0x6c,0x6e,0xe5,0xf9,0x61,0xd4,0xda,0xda,0xfb,0x8c,0x70,0xbb,0xba,0x79,0x81,0xda, - 0x3f,0x4b,0xb2,0xde,0xd1,0xc6,0x3b,0x14,0x8d,0xb8,0x9d,0xa8,0x1b,0xd8,0x7b,0xe3,0xcf,0x12,0x7f,0xa6, - 0xf8,0x03,0x8b,0xf0,0x0b,0xfa,0xbf,0xa0,0xff,0x67,0xda,0xd7,0xb2,0x43,0x6c,0x42,0xe0,0xa3,0xec,0x6d, - 0x6b,0x3f,0xa6,0x7a,0x06,0xb9,0xd5,0xfd,0xef,0x94,0xe1,0xf6,0x77,0xf7,0x68,0xe0,0x60,0xd2,0xd0,0x8c, - 0xdb,0x99,0xb3,0xe8,0xfe,0x37,0xad,0x02,0xb3,0x46,0x81,0x65,0xf4,0xdd,0x3f,0x5b,0x05,0x96,0x8d,0x02, - 0xd3,0xe8,0x9b,0xff,0x6e,0x15,0x98,0x36,0x0a,0x1c,0xdd,0xfb,0x06,0x3c,0xe2,0x7a,0x4d,0x0f,0xbc,0xa5, - 0xfd,0x2e,0xf6,0x8e,0xa2,0xee,0x8c,0x03,0x64,0x9c,0xaf,0xd7,0x17,0xeb,0xf5,0x22,0xba,0xa9,0x2e,0x33, - 0xed,0x0e,0x30,0x49,0xa9,0xd6,0xfb,0xdf,0xc4,0x33,0x84,0x0d,0x64,0x8b,0xd8,0x81,0x4a,0xfa,0x2e,0x9e, - 0xb7,0x92,0xbe,0xfb,0x67,0xbc,0x6c,0x25,0x7d,0x73,0x18,0x2f,0x7a,0xbd,0x46,0xca,0x51,0xbc,0x38,0x38, - 0x68,0x7c,0x76,0x14,0x5f,0x34,0xcb,0x7c,0x77,0x3f,0xbe,0x68,0x96,0x39,0xba,0x77,0x3f,0x3e,0x6f,0x16, - 0x3a,0xba,0xf7,0x6d,0x7c,0x7e,0x70,0x00,0xba,0x4c,0x4d,0x88,0xdb,0x79,0xd7,0x09,0x0d,0x47,0x8c,0x35, - 0xc3,0x35,0xb8,0xe6,0xc0,0x8f,0xca,0xb3,0x25,0x1c,0xeb,0x71,0xd3,0x98,0xaf,0x69,0x4b,0x5c,0x1f,0x1c, - 0x44,0xb8,0xd2,0x6b,0x4f,0x47,0xd7,0x1d,0xab,0x5b,0xf9,0x60,0xc5,0xaf,0x7c,0x41,0xac,0x85,0x48,0x31, - 0x0c,0x19,0x96,0x98,0x49,0x37,0x17,0x37,0x3b,0x40,0x8b,0xa5,0xd2,0xa5,0x78,0xe5,0x3b,0x0b,0xc6,0xf0, - 0x80,0x3f,0x03,0x8f,0x83,0xfb,0x39,0x1c,0x7c,0xa5,0x3e,0x7c,0x41,0x42,0x3b,0x49,0x60,0x4a,0x68,0xa4, - 0xbd,0x2b,0x3a,0x61,0xed,0x1d,0x24,0x21,0x74,0x54,0xc9,0xea,0xc1,0xe1,0xf0,0xce,0x98,0x5e,0xef,0xf4, - 0x26,0xbd,0x3b,0x41,0x14,0xde,0x81,0x60,0x3e,0x0a,0x62,0x93,0x68,0x1b,0x5f,0x45,0x2e,0x5f,0x04,0x36, - 0x63,0x45,0xc0,0xd0,0x41,0x53,0xfd,0xc0,0x5b,0xad,0xe9,0xa7,0x1c,0x9c,0x7c,0x5c,0x21,0x44,0x1a,0xdb, - 0x35,0x95,0x23,0x0e,0xcd,0xeb,0xd1,0x9e,0xff,0x6e,0x0b,0x48,0xea,0xfe,0x22,0x5d,0x36,0x8d,0x48,0x5c, - 0x24,0x9f,0xcd,0xb6,0x89,0xb8,0x57,0x60,0x13,0xc5,0x27,0x9e,0x49,0xd0,0x6f,0xf6,0x64,0x0f,0x6b,0xab, - 0x7d,0x37,0x31,0x3e,0xdc,0xde,0xbf,0xe1,0x6b,0x34,0xa4,0xd0,0xc1,0xe2,0xf8,0x12,0x34,0xbe,0x3d,0x34, - 0xf1,0x1d,0x82,0x7e,0xf6,0x2b,0x6b,0x9b,0x71,0xfe,0xdd,0xca,0x38,0x62,0xbe,0x36,0xf5,0xe3,0x1a,0x5e, - 0xa6,0x4b,0x15,0x4a,0x48,0xbf,0xe3,0x20,0xbb,0xa5,0x42,0xcf,0x8b,0x4e,0x3a,0x0a,0xd6,0x6a,0xbd,0x07, - 0xc0,0xe9,0xac,0xbd,0x36,0xae,0xa6,0x2e,0x60,0x50,0x69,0xfd,0x5b,0x65,0x12,0xec,0xc2,0xfb,0x86,0x10, - 0x3c,0xac,0x23,0xfd,0x22,0xec,0x09,0x4b,0xf9,0xff,0x4f,0xe7,0x6b,0x47,0x58,0xbf,0x88,0xf1,0x8d,0xa5, - 0x52,0xfb,0x5c,0x8a,0xf0,0x30,0x9c,0xbc,0xd5,0x51,0x0f,0x43,0x91,0xec,0xec,0xbc,0x1e,0x86,0x94,0xaf, - 0x09,0xe3,0x85,0xcc,0x57,0x81,0xb0,0x15,0x70,0x7e,0x14,0x13,0x53,0x90,0x4d,0xa7,0x73,0x15,0x4b,0x26, - 0x58,0x14,0xab,0x4a,0xae,0x96,0x01,0x5f,0xb2,0xa0,0xd4,0xd0,0x43,0xd7,0xa6,0x4a,0x60,0x23,0x74,0xf5, - 0xc8,0x07,0xbe,0x5a,0x04,0x3f,0x81,0xd5,0xde,0x31,0x8a,0x49,0x57,0x40,0xda,0x2c,0x6d,0x7e,0x67,0x22, - 0x03,0x6e,0x06,0xb8,0x2b,0x75,0x0a,0xa9,0x58,0xe5,0x71,0x28,0xfa,0x0e,0x75,0xec,0x23,0xe2,0x02,0xb6, - 0xf4,0x77,0xd9,0x70,0x62,0xaf,0xf1,0xae,0xac,0xaf,0x5d,0xa5,0xee,0xd2,0x49,0x26,0x94,0x7f,0x42,0xe7, - 0xc4,0x28,0x3e,0x99,0x88,0x6a,0x14,0x57,0x9d,0x20,0x90,0x5b,0x10,0x50,0xf4,0x50,0xc9,0x97,0x28,0xb0, - 0x4b,0xd4,0x7a,0xad,0x5e,0x2e,0x0e,0x38,0xbc,0x0a,0x92,0x58,0xda,0xc4,0x51,0x70,0x4d,0x20,0x4b,0x1c, - 0x6b,0x4a,0x39,0xa1,0x5c,0x59,0x2c,0xd9,0x22,0x6d,0x28,0x35,0xf5,0x41,0x66,0x3e,0x68,0x05,0x9b,0xcd, - 0xfc,0x33,0xb2,0x6c,0xf6,0xc6,0x7d,0xcd,0xf2,0x17,0x0f,0x44,0xfd,0x60,0x36,0x1e,0xac,0x6a,0xd3,0xfb, - 0xac,0x6d,0x7a,0x0f,0xda,0x14,0x9e,0x0d,0x7c,0xab,0x09,0x42,0x75,0xde,0x64,0x26,0xfc,0x55,0x81,0xf0, - 0x57,0xca,0x4f,0xc2,0xa8,0xd9,0xad,0x33,0x62,0xa3,0x49,0xdf,0x14,0x3f,0x6b,0xcd,0x9a,0x32,0xb5,0xcf, - 0x92,0x60,0x6f,0xef,0x22,0x18,0xa8,0x4b,0x93,0xf8,0x0e,0xea,0x20,0xd4,0x52,0x40,0xca,0xd8,0xa1,0x96, - 0x77,0xee,0xa8,0x91,0xdf,0x19,0x22,0xc5,0x20,0x54,0x3c,0x47,0x01,0xc3,0x1b,0x7b,0x2c,0xa8,0x4f,0xc7, - 0xc4,0x5f,0xf6,0x32,0xe0,0xc3,0x48,0x9b,0xe3,0x14,0xa0,0x15,0x33,0x84,0x8c,0x67,0xa3,0x1a,0x03,0x3e, - 0x84,0x4d,0xc1,0xd9,0x45,0xc4,0x83,0x5f,0x2d,0x71,0xe3,0x1f,0x75,0x31,0xbe,0x43,0xf8,0x53,0x12,0xd2, - 0xbc,0x23,0x8c,0xe9,0x8d,0x8b,0x4e,0xb2,0x13,0xa2,0xc1,0x9d,0x9b,0xa0,0x57,0xf4,0x82,0x4d,0xe0,0x2d, - 0x40,0x21,0x7d,0x31,0xa3,0x8f,0xdc,0x68,0x0a,0xff,0x28,0x5d,0x04,0x42,0xef,0x3e,0xa9,0x93,0x20,0x7a, - 0x70,0x08,0xd9,0x22,0x2e,0xc8,0x7a,0x6e,0x52,0x47,0x94,0xfa,0x47,0x69,0xe3,0xe4,0x86,0x3f,0xf2,0xc7, - 0x7e,0x09,0xf0,0xce,0xdf,0x1f,0x1c,0x0d,0x6f,0xa8,0xd7,0xb1,0x3b,0x67,0x7e,0x24,0xfa,0x8c,0x58,0x6e, - 0x1e,0x80,0x49,0xfd,0xb1,0x24,0x44,0x8f,0xc1,0x6c,0x62,0x55,0x9a,0x4b,0x70,0xa8,0x25,0x26,0x70,0x7e, - 0x01,0x81,0x4a,0x2d,0xfc,0x54,0x26,0xbf,0xc2,0x34,0x7a,0x17,0x41,0x7f,0x07,0x11,0x7d,0xf9,0x7b,0x99, - 0xa4,0xf4,0x1c,0x0d,0x57,0x78,0x8e,0xe2,0xef,0xc0,0xc0,0xfe,0x5e,0xfa,0xc2,0x28,0x23,0x59,0x56,0x6e, - 0x8e,0x54,0xc5,0x8f,0xa5,0xa9,0x80,0x43,0xbb,0xe2,0x7b,0x01,0x2f,0xe3,0x28,0x5a,0xe1,0xaf,0x25,0x53, - 0xb8,0x2e,0x88,0x19,0x7b,0x3d,0xf1,0xdd,0x7d,0xfd,0x7c,0x70,0xc0,0x46,0x73,0x34,0x87,0xbf,0x72,0x4d, - 0x0a,0xb4,0x36,0x68,0xdc,0x44,0x1d,0x6f,0x8e,0xf7,0x27,0x3d,0x5e,0x93,0xf2,0x13,0x8d,0x55,0xfc,0x5a, - 0x42,0x91,0xe8,0xb4,0xc1,0xda,0x47,0x93,0x1d,0x1c,0x86,0xfa,0x52,0x99,0x38,0xd8,0x23,0x2a,0x34,0xc4, - 0x35,0x86,0x54,0xa3,0xbe,0x36,0x0b,0x05,0xd4,0x23,0x43,0x84,0xe7,0x49,0x2a,0x9d,0x11,0xf0,0x2f,0xa5, - 0x4f,0x38,0xf5,0x7a,0x3f,0xfa,0xf6,0xeb,0x95,0x57,0xf0,0xc7,0xf2,0xfb,0xe4,0x0f,0x0f,0xee,0x27,0x7e, - 0xdc,0x6e,0x26,0x03,0xeb,0xf5,0x9a,0xe9,0x45,0x4f,0x54,0xcd,0x93,0xe4,0x7b,0x0c,0xaa,0xd9,0x64,0x2f, - 0x58,0x5e,0x0b,0x38,0x57,0x0c,0xa2,0x81,0xe7,0x5d,0x27,0xb7,0x64,0x20,0x86,0xc6,0x1d,0xc8,0x84,0x78, - 0x7d,0x19,0xf5,0xc7,0xb8,0xbf,0xf1,0x7d,0x5a,0xc1,0x8c,0x67,0xe5,0xde,0x7c,0x49,0xd9,0x12,0x46,0x9a, - 0x3a,0xf4,0xc8,0xea,0x96,0x00,0x11,0xba,0xef,0x4b,0x76,0x95,0xa4,0x93,0x9a,0x2f,0x47,0x2c,0x12,0xc6, - 0xe8,0x10,0x48,0x10,0xd1,0xf2,0x43,0x29,0x5c,0xc4,0xf8,0x1d,0x78,0x83,0xea,0xc0,0xdf,0x45,0x77,0x9d, - 0x04,0x4b,0xc4,0x6f,0x88,0x5a,0xe9,0x78,0x23,0xf1,0x43,0xb9,0xcd,0x08,0x62,0x78,0x1f,0xf2,0xe1,0x8d, - 0x3e,0xf8,0x60,0x80,0xa3,0x0e,0x2f,0x04,0x84,0x6b,0x38,0xee,0x49,0xa7,0x7e,0x0a,0xe9,0x00,0xfd,0xa1, - 0x8c,0x3a,0x19,0x4f,0x44,0xa1,0xf2,0xa6,0xa4,0x69,0xc2,0xbf,0x94,0xa1,0x89,0x24,0xb5,0x6b,0xe5,0x31, - 0x05,0xb8,0xf8,0x5d,0x2b,0x8d,0x41,0xe0,0x7d,0xcb,0x62,0xea,0x14,0xc6,0x62,0x45,0x92,0xfb,0xef,0x83, - 0x1f,0x4a,0xcd,0x83,0xb6,0xb0,0x01,0x75,0xf4,0xe4,0x0a,0x2a,0x1d,0x63,0x2d,0x95,0x0f,0x03,0x7d,0xe5, - 0x74,0x6c,0xcc,0x0d,0x39,0x2e,0xb3,0xb3,0xe0,0xe7,0x0f,0x38,0xc2,0x32,0x7b,0x87,0xbb,0xeb,0xbe,0x29, - 0x79,0x83,0xfa,0xbe,0x64,0x2a,0x6e,0x41,0x5f,0x55,0xd4,0xf8,0xf4,0x0b,0x3e,0xd5,0x19,0xad,0xcf,0xf1, - 0xd9,0x06,0xcc,0xcb,0xef,0xac,0x6d,0x9f,0x4b,0x31,0x93,0xa2,0x74,0xa2,0xe0,0x1f,0xac,0x23,0xbf,0xe7, - 0x26,0xd8,0x35,0x47,0xc6,0x4d,0xa6,0x31,0x53,0x36,0xd1,0x97,0x9c,0xab,0x29,0xa9,0x92,0xd6,0x87,0x4d, - 0xe1,0x95,0x9f,0x7a,0x9b,0xfc,0xca,0x7a,0xe6,0x34,0x44,0x58,0x99,0x12,0x9f,0x42,0xd2,0x94,0xe9,0x28, - 0x73,0xd9,0x28,0x09,0x02,0x2f,0x77,0xa5,0x6f,0xf6,0x43,0x09,0xc1,0xf7,0x33,0x9b,0xfb,0x92,0xb5,0x53, - 0x51,0x96,0x13,0xa0,0x3c,0x7b,0xff,0xf2,0x05,0x27,0x70,0xe9,0xb2,0x3b,0x68,0xad,0x67,0xb7,0x54,0x50, - 0xd9,0x0a,0x6d,0x62,0xf2,0xb2,0x7c,0x25,0x07,0x40,0x72,0xa9,0x2a,0xfa,0x0a,0xae,0x55,0x56,0x82,0x9c, - 0x6a,0xc0,0x3c,0x46,0x56,0xe8,0x17,0x81,0xcd,0x10,0x5f,0x25,0xac,0x84,0x68,0xaa,0xf9,0xb4,0x3f,0xe6, - 0xd7,0xa4,0xd0,0x66,0x89,0x35,0x64,0x67,0x41,0x60,0x82,0xcc,0x17,0xd1,0x60,0x99,0xcc,0xc5,0x2e,0x71, - 0x93,0x69,0xa4,0x84,0x09,0x15,0xa5,0xc3,0xb0,0xfa,0xf5,0x9b,0xf7,0xcf,0x5f,0xbf,0x42,0x3d,0x33,0x23, - 0xdd,0x59,0xaf,0x3b,0xb4,0x09,0xd8,0xfe,0xec,0x16,0xee,0x2e,0xa3,0x52,0xee,0xcd,0x5a,0xaf,0xc6,0x37, - 0x0b,0xd8,0xd8,0x40,0xde,0x79,0x5f,0x5b,0x29,0xa0,0xdc,0x84,0x33,0xb1,0x8c,0x1a,0xd5,0x7b,0xfa,0x35, - 0xa5,0x21,0x50,0xda,0xe8,0x97,0x86,0x4e,0x53,0x06,0x68,0x59,0xa4,0xad,0x53,0xe6,0xe9,0x1f,0xd7,0x2e, - 0x7e,0xb6,0x32,0x58,0xe1,0x63,0xdd,0x50,0x40,0x13,0xe5,0x60,0x36,0xd1,0x81,0xda,0x32,0x26,0x03,0x9c, - 0xd9,0xbc,0x22,0x0a,0xd8,0x2f,0x58,0x3d,0x9a,0x8e,0x82,0x46,0xcc,0x55,0xff,0x18,0x24,0x54,0x6f,0x92, - 0xb9,0x0e,0x6a,0xc4,0x20,0x52,0x28,0x63,0x3d,0x2a,0xe3,0x79,0x63,0x4a,0x77,0xc8,0x5d,0x48,0xd6,0x2e, - 0x5f,0xcf,0x9d,0x30,0xda,0x68,0x9b,0xdf,0x21,0x75,0x78,0x11,0x36,0xde,0x39,0xe2,0x81,0xe7,0x83,0x28, - 0xbf,0xa6,0x1b,0x5e,0xdc,0xa2,0x68,0x7d,0x98,0xb5,0xe2,0x8d,0x2c,0x64,0x53,0xc4,0xc5,0xf2,0xa0,0xa2, - 0x25,0xda,0xca,0xfc,0x7e,0x44,0x4a,0xc5,0x55,0xd9,0xe7,0x62,0x2b,0xb7,0xd0,0xb9,0x91,0x17,0xa5,0x47, - 0xef,0xd3,0x55,0xd2,0x28,0x2e,0xe6,0xb0,0x30,0x2d,0xca,0x05,0x5f,0xe1,0x3e,0xe5,0xb4,0xf5,0x5a,0x7f, - 0xcf,0x5b,0x78,0x96,0xac,0xd6,0xeb,0xb9,0x58,0x62,0xbe,0xf4,0x46,0x55,0x95,0xf3,0x56,0xd6,0x29,0xad, - 0x1a,0x12,0xd8,0xaf,0xeb,0x1d,0xae,0xbc,0x9d,0x96,0x51,0xbc,0x1c,0x28,0x4b,0xd5,0x26,0xb4,0xfa,0x8a, - 0x73,0x26,0x1c,0xeb,0x41,0x87,0xfc,0xec,0x6f,0xc9,0xd5,0xce,0xad,0x82,0x13,0x4e,0x21,0x21,0xbb,0x78, - 0xa9,0xe4,0xba,0x9d,0xec,0xdc,0x8d,0x61,0x3a,0x5b,0xf4,0x4d,0xcc,0xb4,0xa2,0x51,0x5b,0xd1,0xfe,0xcc, - 0x69,0xe7,0x4b,0x55,0x07,0x87,0xb3,0x9c,0x11,0x92,0x9a,0xc2,0x10,0x71,0x7f,0xff,0x33,0xcc,0x07,0x2b, - 0x61,0xb0,0x14,0x67,0x4f,0xa3,0x30,0x4d,0x38,0x9f,0x80,0x77,0x46,0xbf,0xb6,0x98,0x8e,0x50,0x02,0x0c, - 0x90,0xfa,0x3c,0xc0,0x99,0xf4,0x7d,0xc9,0x38,0xba,0xa7,0x16,0x50,0xa8,0xb8,0x19,0x2c,0x6b,0x63,0xbb, - 0x3f,0x67,0xf9,0x03,0xa5,0x3f,0x48,0x49,0xa9,0x4d,0x54,0xee,0x7e,0xaa,0x7a,0x77,0x23,0x7b,0x6f,0x52, - 0x87,0x1f,0xb7,0x57,0x0f,0x07,0xc4,0x42,0x30,0xb0,0x78,0x3b,0xd1,0x0f,0x8c,0x0b,0x05,0x4a,0xc8,0xae, - 0xdf,0x5b,0x92,0xbf,0x48,0x9b,0x4c,0xee,0xe0,0xb6,0x45,0xaf,0x53,0xac,0x70,0x09,0x58,0xf7,0x5d,0x77, - 0x8b,0x0c,0xc3,0x9c,0xd8,0x2a,0x33,0x40,0x6f,0x16,0xae,0xff,0x7f,0x9f,0x05,0x85,0xcc,0xb7,0x27,0xc2, - 0xa6,0x0b,0x3f,0x55,0x1d,0x02,0xa0,0xfa,0xdb,0x12,0x7a,0x33,0x25,0x6a,0xea,0x9c,0x28,0xf9,0x2f,0x4d, - 0x1f,0x0c,0x49,0xcc,0xb4,0x79,0x53,0x59,0xc2,0xac,0x6b,0x00,0x9f,0x66,0x7b,0xc1,0x53,0x29,0x30,0x5c, - 0x80,0xb8,0x41,0x93,0xd0,0x39,0x74,0xce,0x31,0x5f,0x5d,0x71,0x5b,0x37,0xfd,0x2b,0x06,0xa4,0x26,0x6d, - 0xf4,0x95,0x4a,0x5b,0x17,0xa5,0x18,0x24,0x6a,0xaf,0xe0,0x65,0x9e,0x97,0xa6,0x05,0x42,0x61,0x5c,0x1e, - 0xf1,0x34,0x0b,0x6b,0x6d,0x80,0x15,0x5c,0x40,0x82,0xc0,0x37,0x4a,0x20,0xe6,0xf5,0xad,0xc6,0x21,0x4f, - 0x19,0x37,0x6e,0x91,0x27,0xa7,0xdc,0x97,0x8f,0x99,0xef,0xfb,0xf2,0x11,0x45,0x7d,0xc9,0xcb,0xa5,0x6c, - 0x1a,0x85,0x6c,0x8b,0xb4,0x59,0xec,0xb0,0x9d,0xcc,0xd1,0x7c,0x72,0xcf,0x88,0x0b,0x10,0x0a,0x8f,0x10, - 0x08,0x10,0x68,0xa5,0xf5,0x1e,0xf4,0xbd,0x42,0x75,0x53,0x5d,0xb5,0xed,0xef,0xcf,0x3b,0x5b,0x41,0xd0, - 0x6c,0x0d,0xc7,0x9e,0xab,0x68,0x8b,0x75,0xfe,0xa2,0x0a,0x08,0x1c,0x03,0xda,0x92,0xa2,0x34,0xbe,0x3c, - 0x4c,0x67,0x41,0x4e,0xc6,0x91,0xa7,0xf9,0x5c,0xb0,0x62,0x04,0x13,0x30,0xa5,0x4a,0x60,0x4f,0xf1,0x2a, - 0x1b,0xbe,0xcd,0xe2,0x0f,0x19,0x61,0xfc,0x96,0xfb,0x58,0xb7,0xde,0xa6,0x12,0x73,0x58,0x9e,0xb3,0xab, - 0x58,0x53,0x05,0xa4,0x82,0x58,0x28,0x66,0xae,0xd7,0x9b,0x7c,0x0f,0xc5,0x21,0x3c,0xc5,0x06,0xdd,0xfe, - 0x48,0x93,0x07,0x3a,0x5f,0xe0,0x6a,0x64,0xd1,0xa1,0x03,0x42,0x53,0x9e,0xab,0xaa,0x6c,0xe8,0xb8,0x13, - 0x7d,0x93,0x2d,0x35,0x79,0xac,0xc3,0x6e,0xf0,0x59,0xa2,0x22,0x45,0x94,0x27,0x2f,0x89,0xff,0x7f,0x0c, - 0x1f,0xa9,0x60,0x64,0xad,0xef,0x76,0x58,0x76,0xaa,0xf3,0x56,0xa5,0xba,0x5e,0xba,0x99,0x9d,0x26,0xc7, - 0x92,0xc3,0xbf,0x82,0xa5,0x39,0x79,0x74,0x4b,0x25,0x13,0x93,0xd7,0x5d,0xc9,0x0a,0x95,0x80,0xa7,0xa1, - 0x39,0x3a,0xa4,0x13,0xd1,0xdd,0xb9,0xa3,0x26,0x3c,0x65,0xbb,0xf1,0x9c,0x1e,0xa9,0x40,0x4a,0x05,0x8c, - 0x81,0x3a,0x51,0x0c,0xb0,0x7e,0xcf,0x86,0x2b,0x5d,0xe2,0x0d,0x4a,0xac,0xa8,0xc4,0xc4,0x96,0x98,0x25, - 0x94,0x1e,0xce,0x5d,0xa4,0xf5,0x14,0xb4,0xef,0xf7,0x87,0x54,0xeb,0x6a,0xf8,0x2a,0x8b,0xdf,0x64,0xcc, - 0xde,0x47,0xc3,0x5c,0x35,0x66,0xea,0x8e,0x4d,0x15,0xf1,0xa1,0xd0,0x01,0x97,0x85,0x86,0x96,0x78,0x2e, - 0x2c,0xac,0xc4,0x33,0x5c,0x83,0xfc,0xde,0xdc,0xd6,0x17,0xab,0x5a,0xf6,0xf7,0x9f,0x69,0x21,0xb9,0x9a, - 0x3d,0x13,0xbf,0x23,0x18,0xf9,0x68,0xe0,0x58,0xba,0x43,0x7a,0x60,0x30,0xdd,0x03,0x1b,0x23,0x31,0xaa, - 0x13,0x1b,0x36,0xdb,0x31,0xe8,0x66,0x1c,0x8d,0xfb,0xbc,0x9a,0x22,0x64,0xdf,0x27,0xfc,0x1d,0x10,0x6a, - 0xef,0x9d,0x54,0xe1,0xa5,0x36,0xfe,0x4e,0x7b,0xe7,0x93,0x58,0x47,0xf2,0xfe,0x3f,0xf4,0x15,0xb1,0x4e, - 0x62,0x70,0x70,0xe4,0x97,0x7f,0xe8,0xd1,0x52,0x20,0xa1,0x88,0xde,0x81,0x9f,0x16,0xae,0xe6,0x49,0x89, - 0x38,0x3f,0x65,0x77,0x08,0xfb,0xa6,0xaf,0xca,0x9c,0xab,0x68,0x79,0x2e,0x3d,0x34,0xa1,0x0a,0x92,0xb1, - 0x34,0xdc,0x90,0xdb,0xd0,0x91,0x75,0xbe,0x62,0xf3,0x49,0xfa,0x8c,0x20,0x5c,0x96,0x5c,0xf9,0x11,0xc7, - 0x02,0x03,0x41,0x82,0x4b,0xe6,0x1c,0x6d,0x83,0x38,0x62,0x84,0x18,0x05,0xbc,0x5e,0x79,0x63,0x13,0x90, - 0xf4,0xd5,0x67,0xac,0xa9,0x9b,0x99,0xd7,0xf7,0x85,0x4a,0x58,0x9a,0x84,0x87,0x4c,0xb3,0xab,0x44,0xf8, - 0xf5,0xd2,0x94,0xca,0x54,0x7f,0x75,0x6e,0xdf,0xcd,0x67,0x17,0x36,0xc5,0xff,0x6e,0x41,0xa9,0xa7,0x12, - 0x26,0xe2,0x4f,0x50,0x25,0xbc,0xf7,0x54,0xe5,0xe2,0x1a,0xe5,0x71,0xf5,0xba,0xca,0x18,0xdb,0x5e,0x99, - 0x89,0x11,0x97,0xf6,0xdb,0x87,0x5c,0xaf,0xd8,0xb3,0x4d,0x88,0x2b,0xf3,0xb5,0xce,0xfa,0xe2,0xfa,0x67, - 0xbf,0x3f,0xa6,0xb4,0xa9,0xde,0x53,0xe2,0x5d,0x32,0x2e,0xc5,0x43,0xfa,0xa3,0xed,0xf4,0x07,0x0f,0xf7, - 0xf7,0x1f,0x5a,0x92,0xeb,0x5d,0x12,0x3e,0x4c,0xcc,0x6b,0x64,0x38,0x56,0x5e,0x89,0xf7,0xc9,0xee,0x3b, - 0x2f,0x74,0x12,0x71,0xa4,0x6c,0xc4,0x5f,0x14,0xa0,0x03,0x39,0x26,0x30,0x2d,0xc9,0xfb,0xf5,0x7a,0x0f, - 0x87,0x27,0xad,0xc1,0x9e,0x02,0x81,0xd7,0xc9,0xfb,0xfd,0xfd,0xe9,0x70,0x4a,0xbb,0xe1,0x33,0x1e,0x2f, - 0x86,0x17,0xf1,0x52,0x3c,0xc1,0xe3,0xf9,0xf0,0x9c,0xf6,0xc5,0x8b,0xe4,0xfd,0xf0,0x72,0xbd,0x5e,0xc4, - 0x0b,0xf1,0x1c,0xa9,0x1d,0x4e,0x2f,0x7b,0xc3,0xbd,0xf8,0x4c,0x3c,0xa5,0x82,0x57,0xeb,0xf5,0x75,0x7c, - 0x2d,0x1e,0xd3,0xe3,0x97,0xf5,0x7a,0x1c,0x8f,0xc5,0x2b,0xe2,0x5b,0xb2,0xf0,0x38,0x1a,0x1e,0xab,0x69, - 0x8b,0x8f,0x23,0xf1,0x26,0xe1,0x83,0xb0,0x62,0x7d,0xbc,0x78,0x99,0x7c,0x96,0xe1,0xf3,0x48,0xbc,0x4d, - 0x1c,0x9c,0xf8,0x4e,0xb6,0xd1,0xcd,0x1b,0x02,0xc9,0x3d,0x88,0x5e,0x9f,0x44,0x82,0x7f,0x3f,0xd3,0x51, - 0xf9,0xd6,0x81,0xe6,0x30,0xa4,0x12,0x9c,0xf1,0x3a,0x12,0x8f,0xf7,0xf7,0x1f,0xb3,0x21,0xc5,0xd3,0xfd, - 0xfd,0xa7,0x70,0x4b,0xf0,0x6a,0xd5,0xc1,0xd6,0x35,0xbc,0x56,0xe7,0x05,0x0d,0xec,0x47,0xda,0x0e,0xce, - 0xf2,0xc9,0x35,0xaa,0xe4,0x42,0x86,0xda,0x05,0x9f,0x2a,0x74,0x38,0xe4,0x31,0x82,0x15,0x31,0xab,0xe9, - 0x9e,0x4f,0x58,0x92,0x36,0x1a,0xf0,0xbd,0xa1,0xca,0xde,0x30,0x57,0xf6,0x86,0x12,0x3b,0xcc,0xee,0x9b, - 0xf6,0x7b,0x18,0x89,0xe7,0xfb,0xfb,0xcf,0xa9,0xeb,0x6f,0x21,0x0b,0x7a,0xb1,0xbf,0xff,0x02,0x7d,0xc6, - 0x88,0x2f,0xf5,0x80,0x2e,0xd5,0x88,0xc5,0xa9,0xf4,0xe7,0xe4,0xd2,0x9f,0x8f,0xd7,0x8d,0xe9,0x58,0xaf, - 0x5f,0xd2,0x39,0xfe,0x5a,0x86,0xaf,0xa2,0xa1,0x77,0x0a,0xbd,0x15,0xaf,0xa2,0xf8,0x0a,0xc5,0x57,0xd4, - 0x18,0x90,0x88,0xf0,0x26,0x42,0x19,0xd8,0x96,0x7e,0x7f,0xa8,0x1b,0x5c,0xd5,0xdb,0xb0,0x61,0xf1,0xfc, - 0x5e,0x23,0x10,0x27,0x04,0xa6,0xee,0x7c,0xf1,0x9b,0x0f,0x1b,0x13,0x1c,0x12,0xe7,0xe9,0x26,0xd1,0xce, - 0x18,0x54,0xd9,0x5d,0xe9,0xca,0xc1,0x54,0x4d,0x67,0x92,0x47,0xe2,0x9c,0x00,0x11,0xc1,0x51,0x2f,0xd5, - 0x94,0xa4,0x70,0x96,0xe0,0xdf,0x69,0xc7,0x94,0xa4,0xc4,0x43,0x61,0x4a,0xb8,0x54,0xa3,0x4f,0x7b,0x6a, - 0x4a,0xae,0x1a,0x53,0xf2,0x45,0x5c,0xf1,0x94,0xa4,0x62,0x2e,0xbe,0xa8,0x29,0xb9,0x00,0x65,0x96,0xd2, - 0x9b,0xb8,0xe4,0x8f,0xbe,0x80,0xce,0xd6,0x36,0xe3,0x1a,0x57,0xa6,0x3e,0x3a,0xf3,0xde,0x9a,0xb8,0xd2, - 0xa5,0x1b,0x5c,0x59,0xdd,0x8e,0x2b,0x55,0xe4,0x57,0x75,0x7f,0x8c,0x45,0x8d,0x86,0x81,0x52,0x6a,0xd6, - 0x5d,0x6e,0xd8,0x20,0x69,0xe3,0x6f,0x52,0x31,0xce,0x9c,0x27,0x2a,0xc2,0x0b,0x21,0x49,0xc8,0x5b,0x52, - 0x83,0xd5,0x96,0xe6,0xd5,0x20,0xbf,0xa9,0x49,0xf0,0x71,0xdf,0x39,0x25,0x2a,0xfc,0xf5,0x02,0x59,0x84, - 0x21,0x75,0x21,0xc2,0x8a,0x95,0xc2,0x5e,0x2a,0xe3,0xcc,0xd6,0x6e,0x71,0xd7,0x35,0x25,0xb1,0x53,0xb6, - 0x2a,0x31,0xc6,0xab,0x41,0x65,0x97,0x6a,0x9b,0xaf,0xd4,0x36,0xdf,0xc3,0x36,0xbf,0x88,0x08,0x23,0x02, - 0x21,0x10,0xcb,0x3b,0x56,0x75,0xc5,0xe3,0x88,0xb1,0xa2,0x19,0x5a,0x73,0xeb,0xfb,0x20,0x02,0x11,0x52, - 0x07,0xc0,0xf0,0x1a,0x74,0xa4,0x5b,0x18,0xe2,0xd0,0x5d,0x97,0x0a,0x87,0x38,0x00,0x99,0x46,0x0d,0x08, - 0x19,0x86,0x97,0x8c,0x43,0x18,0x72,0xa8,0xce,0x33,0xb6,0x03,0x09,0xb1,0x21,0x16,0xfb,0xfb,0x0b,0xbc, - 0x09,0xaf,0x93,0x1a,0x93,0x5c,0x0f,0xaf,0x69,0xbb,0xc6,0x45,0xe8,0x13,0x04,0xaf,0xbd,0x13,0x79,0x3b, - 0xa6,0x14,0xcd,0x86,0xba,0xf3,0xd0,0x57,0x27,0x7f,0x46,0x9c,0x59,0x66,0x25,0x5c,0xd0,0x62,0x1d,0x16, - 0x1b,0x56,0xc2,0x08,0x6f,0xec,0x85,0x7d,0x1a,0x52,0xf1,0xad,0xf0,0x35,0xe5,0xc9,0xe1,0x28,0x46,0xf0, - 0x1a,0x7b,0xcb,0x1e,0xfc,0x5a,0x34,0xfd,0xf4,0xbd,0xa7,0xc2,0x7b,0xa2,0xe9,0x95,0x5d,0xe8,0xe5,0xa5, - 0x8f,0x01,0x1e,0x32,0x3b,0xe7,0x7c,0x40,0x2c,0xe9,0xfd,0xdc,0x3c,0x09,0x67,0x09,0xd7,0x4d,0xdf,0xda, - 0x92,0x1b,0x71,0xe8,0x55,0xf5,0xbc,0x45,0xc5,0x4b,0x4f,0x32,0xb6,0x58,0xcd,0xeb,0x6c,0x39,0x97,0x8a, - 0x5e,0x5f,0xaf,0xdb,0x23,0xf3,0xe2,0x9d,0xb1,0x11,0x20,0xfc,0xb0,0xac,0x0f,0x4d,0xdb,0x0d,0x0b,0xa6, - 0x60,0x2e,0x17,0xd7,0x66,0x64,0x51,0x91,0x8c,0x89,0xfd,0x7b,0x0c,0x23,0x1f,0xf0,0xbb,0x02,0xd7,0x2f, - 0xcd,0xf9,0x32,0x74,0x08,0xe9,0x19,0x7c,0x4c,0x42,0xe2,0x85,0xf1,0xba,0x0e,0xf9,0x13,0x2f,0xea,0x2f, - 0xb8,0x2e,0xd0,0x55,0xba,0x30,0x6b,0xa6,0xd4,0x39,0xd6,0x4e,0x4d,0x2a,0xd8,0xe9,0x32,0x37,0xd5,0x4c, - 0x3f,0x68,0x5c,0xfa,0xf8,0x54,0x36,0xaf,0x58,0x69,0xdf,0x7c,0x67,0xb3,0x76,0xaf,0x43,0x65,0x2f,0xeb, - 0xb9,0x84,0xf8,0x50,0xa6,0x44,0xa5,0x1c,0x9d,0x0d,0x17,0x0c,0x28,0x3d,0x9f,0x16,0x3f,0x7a,0x5e,0x1d, - 0x52,0x79,0x37,0x2b,0x9e,0xc5,0xc9,0x4c,0x61,0x63,0xe6,0xdc,0x39,0x6e,0x29,0xc4,0x83,0xdc,0xfe,0xf2, - 0x48,0xbc,0x94,0x36,0x43,0x68,0x41,0xbe,0x4f,0x6f,0xbe,0x6c,0x30,0x9d,0x6d,0x07,0x86,0x0b,0x76,0x5f, - 0x80,0xd4,0x59,0xe9,0xc1,0x03,0xc5,0x67,0x66,0xb5,0xca,0x91,0x82,0x30,0x29,0x47,0x3c,0xea,0x4f,0xb3, - 0x8a,0x4d,0x8f,0x55,0x86,0xaf,0xbe,0x78,0xeb,0xcd,0xc4,0xee,0x2d,0x7e,0x0c,0x4a,0x52,0x55,0xb7,0x91, - 0xef,0xb0,0x8e,0xdf,0xb2,0x6b,0xcc,0x6d,0x32,0x33,0xcf,0xa3,0xc2,0x93,0x8a,0x32,0x19,0xb0,0x65,0xf7, - 0x6a,0x56,0x11,0x67,0x7c,0xc3,0xe2,0xd5,0xf8,0xa1,0x0f,0xa9,0x8e,0xdf,0xe0,0xd8,0x65,0xbd,0x0b,0x7d, - 0x21,0xe7,0x07,0xaf,0x01,0xbe,0x75,0xd2,0xc5,0x38,0x6d,0x86,0x3f,0xca,0xdd,0x35,0x13,0x11,0x42,0x1f, - 0x71,0x7c,0x60,0x7d,0x7b,0x09,0x6d,0x7e,0x85,0x0a,0x0d,0x3f,0xd9,0x72,0xcc,0xcb,0xe8,0x8b,0x31,0x2e, - 0xf4,0x18,0xb1,0x6b,0x5e,0x47,0x24,0xda,0x8f,0x4e,0x92,0x74,0xf7,0xd3,0xf4,0xe0,0x8b,0x94,0xcb,0x83, - 0x74,0x4e,0x87,0xc5,0x9e,0xbe,0x2b,0x90,0xe9,0x1b,0xe7,0x51,0x1d,0x06,0xae,0x48,0x20,0x6e,0xb8,0x6b, - 0xb1,0xdc,0x9a,0x1d,0xd7,0x67,0x1f,0x88,0x9f,0x69,0x60,0x63,0x92,0x88,0x95,0x03,0xa7,0x7c,0xf9,0xa4, - 0x7b,0x65,0x53,0x4a,0x7e,0xd7,0xa7,0xa9,0xcd,0xb7,0xa7,0xab,0x67,0x11,0xae,0xab,0x53,0xe2,0x56,0x79, - 0xf9,0xa6,0x40,0x30,0x21,0x94,0x26,0xe0,0x7c,0x44,0x84,0x31,0x47,0xf5,0x98,0x67,0xf4,0xe9,0x5b,0x5c, - 0xbd,0xee,0xc7,0x99,0xf7,0x97,0x57,0x55,0x40,0x20,0x2e,0xac,0xef,0x8c,0xaa,0x4d,0x5f,0x47,0x31,0xab, - 0x0f,0x72,0xfe,0xe1,0x7b,0xcf,0xea,0x62,0x49,0xaf,0xf4,0x17,0x18,0xac,0x5c,0xaf,0x33,0xdb,0x05,0x0c, - 0x61,0x6a,0x94,0x8c,0x85,0xee,0x0a,0x0b,0x86,0x07,0x85,0xbb,0x1b,0x9e,0x88,0xcc,0x5f,0xe4,0xe9,0x97, - 0xac,0xb6,0xfc,0x67,0x12,0x70,0x26,0xc2,0xe0,0x85,0x41,0xaf,0xec,0x05,0xcb,0x2b,0xc1,0xba,0xfd,0xe5, - 0x55,0x14,0x88,0xc2,0x03,0x60,0xc3,0x8b,0x27,0xc1,0x61,0xe5,0x2b,0xe6,0x7f,0xb7,0x08,0x57,0x2b,0x91, - 0x99,0xf7,0x3d,0x62,0x7f,0xfd,0x5a,0x58,0x03,0x88,0x58,0x0a,0x63,0xb2,0xd0,0xb8,0xf1,0xb6,0x7d,0xff, - 0xa9,0x70,0xaa,0x7c,0x7b,0x0d,0x87,0x0e,0x6c,0xac,0x1d,0x13,0xf1,0xa8,0x42,0x81,0x38,0x37,0x2a,0x19, - 0x09,0x05,0x8c,0xc4,0x74,0xdb,0x10,0x01,0x27,0xfe,0x3d,0x31,0x3f,0x36,0xc5,0x1b,0xc6,0x5a,0x71,0x10, - 0x56,0x49,0x2e,0x81,0xc9,0x05,0x41,0xd7,0x75,0xa0,0xf5,0x17,0xf0,0xeb,0xa9,0x3c,0xd3,0xa4,0x5a,0x79, - 0xf8,0xec,0xfa,0xd6,0x47,0xda,0xde,0x20,0xc4,0x1d,0x7e,0x61,0x86,0x0a,0x4a,0x39,0x53,0x15,0x64,0x70, - 0x40,0x4a,0x0a,0x91,0x59,0x47,0xa4,0x5b,0x9c,0xb4,0xb3,0x81,0x54,0x21,0x34,0xed,0x05,0x2e,0x12,0x52, - 0x51,0xe7,0xe7,0x03,0xf1,0xaa,0x0e,0x90,0x69,0x63,0x30,0xb3,0x2f,0x7b,0x53,0xe5,0x19,0x20,0xba,0x84, - 0x35,0x32,0x86,0xa9,0x34,0xbd,0x43,0x1b,0x95,0xb0,0x19,0x4d,0x80,0xa9,0x0b,0x3c,0x99,0xb1,0x6c,0x46, - 0xcc,0xe6,0xaf,0x60,0x8e,0xa4,0xec,0x6a,0x38,0x92,0x40,0xc0,0xf7,0xca,0x51,0x35,0x1c,0xc6,0x0a,0xc1, - 0xa9,0x75,0x26,0x25,0x1d,0xe8,0x12,0x44,0x03,0xd8,0x6f,0xfc,0x64,0x75,0x4c,0xb9,0x6f,0x4d,0x04,0xe1, - 0xdc,0x16,0x05,0xf6,0xb5,0xa5,0xde,0x2b,0xc9,0xd6,0x9d,0x20,0xb8,0xc3,0x56,0xdc,0x77,0x6c,0x10,0xd0, - 0x3b,0xb4,0x9e,0xdb,0x3d,0x05,0x9a,0xb5,0xb5,0xaf,0xd7,0x6c,0x79,0xa6,0x6a,0x15,0x7c,0xe3,0x30,0x64, - 0x54,0x1c,0x4c,0x93,0xbd,0x3f,0x83,0xac,0x52,0x5d,0xca,0x1d,0xaa,0x48,0x10,0x6f,0x52,0x99,0x0b,0x49, - 0xc5,0x95,0xcd,0xb3,0x5c,0x1e,0xd8,0x96,0x54,0x71,0x95,0xfa,0x5e,0x27,0xc2,0x70,0xd1,0x45,0x0f,0x4c, - 0x0e,0x07,0x93,0x07,0x63,0x1b,0xf9,0x60,0xc2,0x77,0x30,0x8d,0x8b,0x93,0xc9,0x88,0xe1,0x8c,0xba,0x38, - 0x68,0x44,0xfa,0xd0,0xae,0xce,0x6d,0x3b,0x59,0x04,0x7c,0x10,0x53,0x71,0xee,0xdb,0x0a,0x71,0x23,0x92, - 0xb6,0x42,0x9e,0x9c,0x5b,0x07,0xfe,0x07,0xb9,0x71,0xe2,0x2f,0x93,0x2c,0x39,0x47,0x8c,0x64,0xbe,0x35, - 0xa1,0x50,0xcf,0x8a,0xc8,0x79,0x53,0x68,0x21,0x92,0x96,0xc5,0x9f,0xa7,0xd5,0xa3,0x8c,0x51,0x51,0x05, - 0x46,0x21,0x4c,0x93,0xad,0x2e,0x25,0xa5,0xbe,0x69,0xe7,0x99,0x0a,0x26,0xe3,0x87,0x90,0x77,0x37,0x4f, - 0xb4,0x05,0xf5,0x1c,0x51,0xd1,0xc8,0x7d,0x8e,0x22,0xdc,0x7b,0x0d,0x8b,0x05,0x5c,0x6e,0x15,0xe9,0x6b, - 0x16,0x8c,0x38,0xfc,0x59,0x01,0xbd,0x4b,0x24,0x3e,0xba,0xbe,0xf9,0xd9,0x1f,0x39,0x9b,0x86,0xf1,0x2b, - 0xb4,0xae,0x44,0x74,0xd1,0x39,0xaf,0x22,0x7c,0x02,0x8d,0xb3,0xcd,0x33,0xf5,0x5c,0xab,0x8c,0xeb,0xc5, - 0x3c,0x50,0x01,0xc5,0xc6,0x88,0x85,0xa9,0x9a,0xf2,0xd4,0xc9,0x4c,0x39,0x4f,0x68,0x5a,0xe6,0x9c,0xa3, - 0x0a,0x81,0x0a,0xbb,0xce,0x27,0x74,0x56,0x32,0xf4,0xd9,0x08,0x91,0x9c,0x2b,0x0a,0xb0,0xa9,0xc1,0x1e, - 0x1b,0xc0,0x05,0x6c,0x54,0x0d,0x0d,0xbb,0x83,0x94,0xfd,0xfd,0xab,0xc2,0x5e,0x1c,0x6b,0x30,0x98,0x62, - 0x81,0x88,0x14,0x66,0x0b,0x4a,0x04,0xaf,0x8a,0x7f,0x36,0x4f,0x96,0xaa,0x7b,0xd5,0x3d,0xe0,0x57,0x6a, - 0xc0,0xdc,0x19,0x15,0x90,0x6d,0xd7,0xbf,0xe6,0xf0,0x22,0x69,0xcc,0xde,0x1b,0x35,0x7b,0x7a,0x8d,0x3e, - 0xd0,0x0c,0x2d,0x12,0x30,0x8e,0x27,0x47,0xa3,0xc1,0x42,0xcf,0xb4,0x95,0xbe,0x85,0x0b,0x0d,0x2e,0xbd, - 0x23,0x8c,0x64,0x95,0x94,0xc4,0xaf,0x65,0x90,0x7f,0x12,0x7f,0xb6,0x80,0xc4,0x4a,0x20,0x96,0x46,0x1d, - 0x35,0x1c,0xe2,0xc2,0x89,0xf7,0xba,0x65,0xa9,0xb9,0x12,0xda,0x01,0x29,0x9e,0x6b,0x13,0xcb,0x19,0x2c, - 0x4c,0xe2,0xa5,0xb0,0xd6,0x80,0x31,0x82,0x8b,0x4f,0x9c,0x09,0x1f,0x4f,0x80,0x9e,0x8f,0x96,0x4d,0x5d, - 0xc1,0xf7,0xd7,0xf8,0xb3,0x1b,0x2c,0x20,0x5a,0xc6,0xaa,0x96,0x5f,0x9d,0xea,0xfd,0x7d,0x3d,0xd7,0xda, - 0xb5,0x63,0xd3,0xe0,0x6a,0x7e,0x72,0x67,0x2a,0x03,0x71,0x62,0x0c,0x04,0x09,0x72,0x83,0xa8,0xcb,0x6a, - 0x4c,0xa5,0x48,0x3d,0xb1,0x2f,0x75,0x24,0x25,0xc3,0x35,0xb0,0x2a,0x95,0xbe,0x4d,0xf2,0x93,0x7b,0x23, - 0xad,0xc5,0x31,0x74,0x0f,0x4d,0xbd,0x4e,0xb1,0xab,0xf4,0xc8,0x00,0x71,0xa6,0xeb,0x7b,0xeb,0xa2,0xe7, - 0x16,0x43,0x84,0x47,0x9a,0x67,0x69,0x95,0x64,0xf6,0x83,0xb7,0xea,0x83,0xb2,0x9f,0x11,0x65,0x91,0x12, - 0x05,0x77,0x94,0x14,0xae,0x5e,0x51,0x50,0xab,0x6c,0x07,0x61,0xb2,0xef,0x25,0x85,0xeb,0x08,0xe2,0x96, - 0x98,0x1a,0x45,0xc9,0x17,0xca,0xe5,0x1c,0x04,0xa0,0xe9,0xad,0xf1,0xab,0x55,0x8c,0x64,0xb3,0xe3,0x82, - 0xb0,0x00,0x53,0x47,0xcc,0x29,0xf8,0x09,0x1c,0xb6,0xb4,0x99,0x64,0xb4,0x2d,0x9e,0xdd,0xb2,0x2f,0xfa, - 0xfd,0x5d,0x36,0x57,0x89,0x4f,0x43,0x13,0x19,0xbe,0x36,0x22,0x43,0xcf,0x82,0xb9,0xcd,0x92,0x0d,0x03, - 0x13,0x44,0x29,0xbe,0x09,0xe2,0xa0,0xc0,0x8f,0x8b,0xa4,0xa0,0x6f,0xa9,0xeb,0x25,0xb0,0xb3,0xcb,0x7a, - 0x77,0x82,0xf8,0x4e,0xef,0x37,0x28,0x0d,0xd8,0x4f,0x1b,0x56,0xd6,0xee,0x1e,0x66,0x4f,0xf0,0xcc,0xf6, - 0x82,0xce,0xb4,0xd9,0xd1,0x96,0xf6,0x66,0xcf,0xc0,0xe3,0x1e,0x37,0xc1,0x76,0xd0,0x67,0x7b,0x45,0x58, - 0x70,0x12,0xf4,0xda,0x22,0x72,0x3b,0x7a,0x5d,0xb3,0x75,0xb4,0x13,0xd0,0x0f,0x8e,0x02,0x7d,0xc2,0xfd, - 0xbb,0x30,0xa4,0xab,0xf2,0xce,0x22,0x72,0xe6,0x87,0x56,0x12,0x03,0xa8,0xb3,0xa5,0x35,0xb6,0x06,0x01, - 0x91,0x5b,0xf8,0x93,0x1a,0xc7,0x50,0x16,0xe4,0x70,0x48,0x47,0xaf,0x30,0xd0,0x3a,0xae,0x19,0x8d,0x8a, - 0x5e,0xc2,0x0f,0xe2,0xb7,0x82,0x75,0xd7,0xa9,0xb1,0xb1,0x75,0x41,0xa6,0xe5,0x55,0xaa,0xc2,0x8f,0x54, - 0x26,0x88,0xb6,0x57,0xd3,0x80,0x2a,0xf8,0xb9,0x08,0x4f,0x82,0x49,0x5d,0xce,0x69,0x10,0x6c,0xac,0x4b, - 0xbf,0xe9,0x1c,0x7f,0x17,0xb2,0x4e,0x83,0xd1,0xed,0xa6,0xe4,0xbb,0x93,0x93,0x1a,0xb6,0xe6,0xdd,0x96, - 0xe8,0x1a,0x9d,0xf6,0x83,0x5e,0xdd,0x0b,0x7e,0x22,0xaa,0xca,0x4e,0xd6,0x7a,0x0d,0x8e,0x4d,0x19,0x85, - 0xd8,0x0e,0x1b,0xff,0x5d,0x6b,0xbf,0x13,0x66,0x3d,0xc2,0xea,0xb0,0xb5,0xb8,0x73,0xba,0xaa,0xeb,0x22, - 0xbf,0x83,0x69,0x50,0x95,0xc2,0x4f,0xbf,0x97,0x72,0xc3,0x3f,0x4b,0x53,0x2d,0xa5,0xd1,0x22,0x58,0x05, - 0x1c,0x1d,0xec,0x03,0x6c,0x47,0x55,0x53,0xe1,0xc5,0xac,0x0c,0x75,0x25,0x37,0xa0,0x71,0xc3,0x7c,0xa8, - 0xd7,0xa4,0x17,0x98,0x8c,0x20,0x2e,0x87,0x6c,0xb5,0x6a,0x32,0x22,0x97,0x63,0x16,0x90,0x21,0xcd,0xb4, - 0x45,0x64,0x91,0xa9,0x25,0xee,0x6a,0xc6,0x56,0xe4,0x43,0xe7,0xcf,0x1e,0x0b,0xc0,0x31,0x6e,0x9e,0xf3, - 0xf5,0x2d,0x47,0x87,0x91,0x1f,0xcf,0xde,0x4c,0xa3,0x0e,0x1d,0x4d,0xc4,0x21,0x55,0xa7,0xe1,0x8c,0x56, - 0xdd,0x86,0x19,0x0e,0xc6,0x5f,0xc2,0x66,0x51,0x22,0xe1,0x5b,0x88,0xb7,0xe6,0x8d,0xd3,0x4e,0xcd,0x91, - 0xea,0x3e,0xf5,0xad,0x32,0xeb,0x86,0xf9,0x12,0x62,0xe5,0xe4,0xb8,0x9d,0xd7,0x58,0x8a,0xaa,0x18,0x6d, - 0x71,0x00,0x43,0x3f,0x0e,0xc0,0x6a,0xf7,0x07,0x74,0xe9,0x43,0xa9,0xac,0x93,0xe2,0x3b,0xe3,0x89,0x0e, - 0x19,0x70,0x87,0xa7,0x4d,0xb4,0xe2,0x1a,0xc7,0x79,0x3b,0xd2,0xb1,0x87,0xc0,0x64,0xee,0xe2,0xe5,0x9b, - 0x62,0x45,0xa1,0x6e,0x56,0x51,0xaf,0x6f,0xca,0x62,0x22,0xab,0x4a,0x4e,0xed,0xd2,0xe7,0xd6,0xb8,0xbb, - 0xd6,0x86,0xfb,0xbb,0xea,0x61,0xab,0x68,0xe9,0x17,0xa5,0xfd,0xc6,0x25,0xe9,0x77,0xbb,0x4e,0xa2,0x21, - 0x09,0x69,0xf1,0x4d,0x1f,0x33,0x44,0xaa,0x44,0x68,0x3f,0x60,0x5f,0x76,0xee,0xb2,0x08,0x7c,0x88,0xf9, - 0xf5,0xde,0x63,0xda,0xcb,0x95,0x57,0xe0,0x5e,0xab,0xc0,0x3d,0x14,0xc8,0x1b,0x2d,0x32,0xa5,0x33,0x9e, - 0x87,0xda,0xba,0xda,0x11,0xf9,0x30,0x87,0x4e,0xd9,0x03,0xc5,0xcd,0xb2,0xe4,0x10,0x6e,0x98,0xd5,0x48, - 0x23,0x9f,0xdb,0x68,0x4b,0xa1,0x03,0xa4,0xa9,0xa1,0x66,0x33,0x1e,0x69,0x36,0xdb,0x1a,0x68,0xe1,0x66, - 0xc4,0xd1,0xdc,0xbb,0x2d,0x9a,0x5b,0xd1,0xea,0x5d,0x4c,0x87,0x31,0x60,0xa5,0xe9,0x9a,0xd2,0x74,0x9d, - 0x27,0x4b,0xcb,0x85,0xac,0xd7,0x1e,0x49,0x0f,0xa9,0x6f,0x1e,0x2e,0x21,0x55,0x27,0xf6,0x73,0x0c,0x3b, - 0xe1,0xf3,0x5e,0x78,0xc1,0xd3,0x73,0xc1,0x31,0xe2,0xce,0xe8,0x53,0x1d,0x55,0x3c,0xa0,0x2d,0xa4,0x5f, - 0x6e,0x73,0x7b,0x19,0xe7,0xda,0xb4,0x81,0xe6,0x22,0x86,0x53,0xb1,0x92,0x45,0x35,0xf0,0x33,0x41,0xde, - 0xb5,0xa9,0x14,0x46,0xf3,0xda,0x75,0x20,0x18,0x89,0xdd,0x33,0x9a,0x8e,0x6b,0xf6,0xcd,0x0a,0x17,0x84, - 0x76,0x98,0x2d,0x08,0x58,0x30,0xab,0xde,0x83,0xde,0x59,0x24,0xae,0xd5,0x5b,0x78,0x06,0xa3,0x20,0x53, - 0x86,0x77,0xd4,0x35,0x8d,0x02,0xf6,0xcc,0xbc,0x04,0x63,0x35,0xc5,0x2e,0x6c,0xea,0xc4,0x8f,0x76,0x41, - 0x04,0x59,0x4d,0x04,0x19,0x64,0xe7,0xab,0x16,0x6f,0x31,0x44,0x8d,0x31,0x4d,0x0b,0x96,0x0d,0x52,0xa8, - 0x31,0xcd,0x0c,0x6d,0x9d,0xde,0x84,0x1b,0x49,0x39,0x23,0xea,0x85,0x33,0x9e,0xa5,0x59,0xcc,0x46,0x29, - 0xd4,0xa8,0x25,0x1b,0x4f,0x13,0xcd,0xab,0x0e,0x75,0x7c,0xb0,0x54,0x2d,0x26,0x02,0x82,0xde,0xd6,0x16, - 0x0e,0x65,0xf0,0x34,0xaa,0xad,0x3b,0x98,0x3a,0x5a,0xc7,0x5e,0x40,0x4f,0xe1,0x29,0x37,0x74,0xca,0x0d, - 0x85,0x97,0xfc,0x72,0x69,0x5a,0xb5,0x17,0x26,0xed,0x11,0x13,0xb4,0xf7,0x40,0x3a,0xf9,0x82,0x15,0x92, - 0xee,0x11,0xab,0x32,0x4e,0xfc,0x9c,0x93,0x3d,0x30,0x46,0x63,0x8b,0xed,0xc7,0x36,0x8e,0x65,0xae,0x19, - 0xa6,0x40,0xf5,0xdc,0xc3,0x41,0x79,0xfb,0x2e,0x9b,0xd6,0xae,0xc7,0x7e,0x91,0x6d,0x04,0xa2,0x8e,0x95, - 0x4e,0xc4,0xa4,0x11,0x0a,0xc0,0x01,0xc1,0xd2,0x17,0x34,0xbf,0xe1,0xf6,0xf7,0x26,0x2e,0x5d,0xd4,0xb3, - 0x68,0x47,0xc5,0x12,0x09,0x84,0xf2,0x56,0xb6,0xd3,0x60,0x9d,0x43,0x7c,0x44,0xd5,0x40,0x36,0x2a,0x3c, - 0xf9,0x5f,0xda,0x72,0x8d,0xb6,0x7c,0x4f,0xd7,0x20,0x60,0x99,0x88,0x56,0xcc,0x96,0x03,0x6d,0x2f,0x0b, - 0x31,0xc1,0x4d,0x9e,0x70,0x0c,0x12,0xe3,0x26,0x62,0x9d,0x55,0xed,0xf1,0x34,0x0c,0xc6,0x45,0xe8,0x8d, - 0x5c,0xe0,0x44,0x42,0x17,0x9f,0x4f,0x7b,0x3d,0x7e,0xcd,0xd9,0xaf,0x4d,0x17,0xd8,0x34,0xf1,0xa8,0xe7, - 0x7e,0xb1,0x1d,0x98,0xba,0x31,0x20,0x0c,0xd4,0xb3,0x4c,0xb7,0x26,0xf3,0x9e,0xea,0xce,0xed,0xd8,0x72, - 0x58,0xaa,0xe3,0x41,0xcd,0xd6,0xb0,0xd4,0xa7,0x85,0x3e,0x35,0xf8,0x2a,0x10,0x63,0xd5,0x60,0xaf,0x09, - 0x26,0x00,0x19,0x13,0x81,0x19,0x68,0x63,0x00,0x69,0xe2,0xfa,0x39,0xf2,0x41,0x5e,0x2d,0xf9,0xec,0x4e, - 0x95,0xd7,0x41,0x34,0x24,0xb4,0x49,0x7c,0xe4,0xe9,0xbc,0x98,0x7c,0xd1,0xb8,0xc1,0x76,0x8c,0x16,0xd1, - 0xcb,0xdc,0xb4,0x68,0x62,0x4b,0xcd,0xb6,0xaf,0x70,0x49,0xdb,0x21,0x42,0x12,0x42,0x50,0x74,0x22,0x74, - 0x99,0xfc,0xd6,0x5b,0x97,0x48,0xeb,0x5b,0x47,0x34,0x92,0x4e,0xbc,0x38,0x0c,0xf1,0x49,0xc0,0xb1,0x81, - 0x07,0xea,0x1a,0x90,0xce,0x6b,0xa5,0x6e,0x0a,0x13,0x85,0x5e,0x8b,0xf9,0x56,0x8d,0x7b,0xaa,0x4f,0x0a, - 0x25,0x20,0x1b,0xac,0xc0,0x3d,0x27,0xbb,0xbb,0x2b,0xc4,0x93,0xa6,0xfd,0x71,0x99,0x96,0xb8,0x5a,0x23, - 0xe5,0x50,0x96,0xb4,0x4c,0x15,0x51,0xd6,0x8a,0xb7,0x23,0xfa,0x5a,0x7d,0x44,0x44,0xb6,0x65,0xf3,0x38, - 0x51,0xbf,0xc0,0xb1,0xa5,0x17,0x16,0x0a,0xa3,0x12,0xfc,0x2b,0x32,0x07,0xc7,0x91,0x25,0x8f,0x7c,0xcf, - 0x9e,0x2d,0xfa,0x42,0x17,0x8b,0x14,0x1a,0x29,0xfa,0x74,0x76,0x0c,0xef,0x30,0xfb,0xc8,0xad,0xd0,0x03, - 0x5a,0x30,0xb9,0x96,0x36,0xa5,0x96,0x1c,0x73,0xd9,0x51,0xa9,0x23,0x87,0xd5,0x5e,0xdc,0x10,0x8e,0x37, - 0x90,0x3b,0x19,0x56,0x4d,0xae,0x60,0x64,0xa3,0x22,0xa9,0xa8,0x1e,0x03,0x43,0x16,0x02,0xfa,0x23,0xa1, - 0x25,0x7b,0x4c,0x72,0xc2,0xd9,0x05,0x58,0x50,0x79,0xaa,0x04,0xca,0xb5,0x7e,0xa6,0x33,0xe9,0x89,0x33, - 0xe9,0xd7,0xcb,0xe4,0xdd,0xea,0x4a,0xf0,0x6b,0x0c,0x34,0xa1,0x4a,0x2c,0xd9,0xbb,0x10,0x99,0xf4,0xe4, - 0xa5,0x7b,0x0c,0x30,0x72,0xef,0x40,0x58,0xca,0x5e,0x45,0x40,0xc0,0xb4,0x18,0x77,0x9c,0xa4,0x29,0x25, - 0x24,0x9b,0x3e,0x50,0xda,0xb3,0x1f,0x64,0xfe,0xd4,0xbb,0xfb,0x1b,0xf2,0xa0,0x5e,0xe2,0x67,0x9d,0xa4, - 0x23,0x98,0xfe,0x30,0x3a,0xd1,0x27,0x28,0xb7,0xce,0xcf,0xc4,0x65,0xf5,0x56,0xb9,0xc9,0xd1,0xf3,0x26, - 0xb4,0xbf,0xa7,0x2e,0x68,0x8c,0xfe,0x6d,0x59,0x15,0xaf,0xd7,0x96,0x55,0x8e,0x82,0xaa,0x30,0xf8,0x3a, - 0x9d,0x20,0x76,0x8f,0x0c,0xa4,0x99,0xc9,0xf1,0x7d,0x0e,0xbd,0xf2,0x7e,0xb2,0x60,0xfc,0xdd,0xf8,0xca, - 0x91,0x18,0x8a,0xcc,0x33,0x52,0x3e,0xdd,0x3d,0xbe,0xa7,0x25,0xe8,0xf9,0xe5,0xec,0x97,0x2e,0xfc,0xa9, - 0x2a,0x0c,0xe1,0x9f,0x9f,0xca,0x44,0x5c,0xe0,0x25,0xc4,0xe3,0x15,0xf1,0x3f,0x8d,0x60,0x2a,0xf9,0x6d, - 0x2c,0xcd,0x4e,0x1b,0xb9,0xb9,0x7b,0x0b,0x34,0xf1,0xd8,0x24,0xe5,0x86,0x61,0xc6,0xae,0x3b,0x25,0xed, - 0x73,0x48,0x88,0xd9,0xd8,0x95,0xb6,0x78,0xa1,0x49,0x47,0xd8,0x7d,0x37,0x49,0xc7,0xa2,0x49,0x3a,0xce, - 0xbd,0x02,0xf7,0x5a,0x05,0x98,0x74,0x2c,0x6e,0x23,0x1d,0xab,0x16,0xe9,0x38,0xe9,0xad,0x7a,0xf3,0x06, - 0xe9,0xa8,0x43,0xe3,0x2a,0xda,0x91,0xf6,0xd0,0x8d,0x02,0x7c,0xda,0xce,0x62,0x96,0xc7,0xde,0xa7,0xda, - 0x01,0x22,0x77,0xeb,0x10,0x35,0x2a,0x0a,0x1b,0xb2,0x59,0x36,0x43,0x19,0x12,0x85,0x3b,0xe3,0x3f,0xbd, - 0x80,0x10,0x70,0x58,0x29,0x32,0xb5,0x71,0x81,0x33,0x90,0xb1,0x7b,0x8b,0xbb,0x8a,0xc4,0x9a,0xbc,0x45, - 0x1f,0x37,0x0a,0xe7,0x37,0x68,0x5b,0xec,0x65,0x5c,0x9b,0x02,0xec,0xdc,0xe4,0xc4,0xe9,0x64,0x8f,0x00, - 0x0f,0x3a,0xdc,0x38,0x83,0x0d,0x3f,0xc7,0xc6,0x29,0xb1,0x57,0xfb,0x01,0xc5,0x69,0xd0,0xce,0x0f,0xd1, - 0x66,0x99,0xa4,0x5e,0xd0,0x44,0x70,0x36,0x7a,0xb9,0x4d,0xb4,0x5b,0xa3,0x49,0x65,0x6d,0x45,0xaf,0x90, - 0xbe,0xb7,0x86,0x0d,0xdd,0x79,0xc8,0x31,0x74,0x8e,0x54,0xe0,0x3e,0xb6,0x52,0xd3,0xae,0xa3,0x39,0x87, - 0xcd,0x29,0x4c,0x74,0x40,0xcd,0xe9,0x35,0xdb,0x88,0x0d,0x1b,0xe6,0x09,0x36,0x88,0x75,0xd0,0x01,0xb4, - 0xd1,0xb1,0x36,0xbb,0x75,0x82,0xec,0x36,0xc1,0x73,0x0b,0x13,0xdf,0xa8,0xb4,0x66,0x06,0xb6,0x39,0xd3, - 0xf0,0xcf,0x24,0x2c,0x2b,0x39,0x76,0x21,0xe6,0x99,0x5d,0xe0,0x2d,0x26,0xce,0x3c,0x79,0xd7,0x5d,0xb1, - 0x77,0x57,0x04,0x9a,0x12,0xaf,0xfb,0x97,0x65,0xba,0x54,0x57,0xdb,0x43,0x71,0x62,0x5f,0xe1,0xa9,0xa2, - 0x73,0xad,0x52,0xd1,0x2b,0x62,0xd3,0xb8,0x9c,0x77,0x4f,0x53,0x65,0x89,0x13,0x3f,0x52,0x91,0x99,0x63, - 0x15,0xbb,0xdb,0x8f,0x62,0x95,0x26,0x85,0x37,0xf1,0x85,0xe7,0x37,0xc4,0x5b,0xb9,0xc1,0xfc,0xa4,0xca, - 0xb6,0x4a,0xf1,0x3a,0xe6,0xdd,0xb8,0x8e,0x96,0xeb,0xb5,0xcc,0xa3,0x30,0x15,0xd2,0xd8,0xdd,0xe4,0xad, - 0xa8,0xdb,0xcd,0x0b,0xe6,0xb7,0xae,0xc6,0xb1,0x81,0x1c,0x4b,0xdb,0x9d,0x4c,0xc3,0x01,0xbd,0x4e,0x70, - 0xe1,0x12,0x02,0x3f,0xf9,0xb4,0x09,0x7c,0x2b,0x9a,0xb4,0x4a,0xb1,0x90,0x5d,0x18,0x6b,0x02,0xf4,0xad, - 0xe9,0x9b,0x08,0xa4,0xe2,0x3d,0x4d,0x26,0xb2,0x4b,0xd0,0xff,0xb8,0x5a,0xe9,0xd7,0xca,0x46,0xb4,0x47, - 0x91,0x77,0xd5,0x5a,0x58,0xb0,0x75,0xe9,0xf5,0xa9,0x3c,0xb6,0x5c,0x50,0xcc,0x01,0x6d,0xdb,0x8e,0x51, - 0xc6,0x90,0x54,0x31,0x90,0x34,0xe6,0xa1,0x26,0x42,0xe3,0xfb,0x36,0x09,0x2a,0x58,0x1b,0x36,0x6f,0x08, - 0x5f,0x6b,0x01,0x2a,0x70,0x8b,0x26,0x28,0x55,0xf8,0x65,0x76,0x49,0x8e,0x83,0xf1,0x05,0x28,0xfb,0x7b, - 0xd0,0x14,0xe4,0x90,0x76,0x73,0xe5,0xb9,0xb7,0x67,0xe3,0x79,0x1e,0xb6,0x45,0x21,0xaa,0x86,0x28,0xb2, - 0xcc,0x1c,0x81,0x93,0x51,0x81,0x40,0x20,0x58,0xdc,0x76,0x32,0x4c,0x3a,0xe5,0x81,0x84,0xf9,0x18,0x6b, - 0x57,0x20,0x51,0x3c,0xa1,0xc6,0xc4,0xff,0xd4,0x6a,0xfd,0x58,0xf2,0x40,0x08,0xb0,0x43,0xd5,0xd5,0xe4, - 0xb2,0x3d,0x67,0xd6,0x96,0x2a,0x11,0xd2,0x84,0xaf,0x5f,0x6d,0x2c,0x95,0x48,0xb5,0x34,0x24,0x5f,0x7c, - 0xa7,0x37,0x47,0x5c,0x3f,0x23,0xd5,0x12,0x81,0xbb,0x6b,0xdc,0x23,0xa1,0x3c,0x6f,0xd8,0x46,0x30,0x09, - 0xb7,0xb9,0x3f,0xad,0xee,0x1d,0xde,0xfb,0xd7,0xdd,0x33,0x11,0x7c,0x52,0x8f,0x41,0xd4,0xca,0xfc,0xce, - 0x65,0x7e,0xe7,0x5f,0x9a,0x39,0xd3,0xb0,0x00,0xdf,0x38,0x2f,0x96,0xfc,0x53,0x37,0xcb,0xee,0xf2,0x54, - 0xdb,0x37,0xa5,0x9d,0x90,0x65,0x09,0x65,0x2f,0x61,0xe3,0x18,0xde,0xb2,0x67,0xfe,0x4d,0x8e,0x5e,0x3f, - 0xc3,0x87,0x45,0xf2,0xb0,0xf8,0x93,0x78,0x96,0x88,0x1a,0xab,0x75,0x48,0x49,0x3d,0xbc,0xf3,0x20,0xdd, - 0x39,0x87,0x02,0x37,0xf8,0x94,0x07,0x77,0xbf,0xbf,0x13,0xdf,0x79,0x40,0xa5,0x08,0x6b,0xe8,0x77,0xf1, - 0xb0,0x70,0xe5,0x9d,0x8f,0xcb,0xfe,0xff,0x39,0x3a,0x1c,0x04,0xd1,0xf7,0x87,0x6c,0xc4,0x37,0xb5,0xf7, - 0x3a,0xce,0x4a,0x29,0xff,0x90,0x21,0x42,0x12,0x9f,0xdb,0x44,0x17,0x68,0xdb,0x5c,0x8d,0x2d,0x2e,0xf2, - 0x64,0xa5,0x64,0x2a,0xc2,0x92,0x87,0x01,0x0b,0x03,0x16,0x9c,0x43,0x87,0xb4,0xa0,0x5e,0x09,0x2e,0xe1, - 0xd4,0xad,0x02,0xea,0x4d,0x71,0xd6,0x51,0xf3,0x79,0x5a,0x79,0x57,0x41,0x8a,0xeb,0x3c,0xb9,0x7b,0x10, - 0x7e,0xba,0x8c,0x68,0x2d,0xc6,0x79,0xd2,0x1d,0x42,0xc4,0xae,0xdb,0x75,0x2e,0x3a,0xb7,0x2b,0xed,0x52, - 0xea,0xf2,0x87,0xe5,0x12,0x76,0xc9,0xf0,0x9e,0x46,0xa8,0x52,0x18,0x94,0x9e,0xde,0x5a,0xa5,0x0e,0x09, - 0x73,0x18,0x35,0x3f,0xec,0x39,0xfd,0x21,0x7d,0x7e,0x49,0xbd,0xfb,0xf4,0x28,0x3c,0x79,0x78,0xf0,0xef, - 0x11,0x7a,0xb8,0xf7,0xa7,0x3d,0xbc,0xcc,0x45,0x70,0xb0,0x77,0x14,0xa0,0xda,0x17,0xc5,0xa5,0xa9,0x96, - 0xea,0xba,0xca,0x1b,0x0c,0x99,0xb3,0x4d,0xd8,0x3d,0xda,0x88,0x2f,0x4d,0x3d,0x90,0x0d,0x8d,0x22,0x8e, - 0x89,0xd5,0x06,0x25,0x7d,0xc0,0xc1,0xc8,0xcb,0x03,0x73,0xc1,0x60,0x20,0xde,0xe5,0xc9,0x49,0xe0,0xad, - 0x89,0x63,0xdc,0x02,0x73,0x0d,0x60,0x30,0x12,0x0f,0x51,0x4a,0x59,0x37,0x1e,0x33,0x8c,0x51,0xa6,0x02, - 0x36,0xaa,0x42,0x67,0xb0,0xc9,0x34,0xe4,0xeb,0xca,0x74,0xda,0xa6,0x7f,0xd0,0x31,0x1d,0xed,0xfd,0xb3, - 0x26,0xe3,0xb1,0x0a,0xd9,0x8b,0x36,0xd5,0x13,0xe7,0xb9,0x7b,0x8b,0x91,0xee,0xbf,0xa9,0xab,0x75,0x94, - 0x2f,0x37,0xc4,0x5b,0xef,0xf3,0xe4,0x46,0x11,0x11,0x2f,0x71,0x13,0x3d,0x81,0x1a,0x15,0x3c,0xcb,0x88, - 0xe3,0xec,0xba,0x75,0xb4,0xca,0xe6,0xb0,0xa1,0x40,0xd8,0xa6,0xb2,0x98,0xae,0x78,0x92,0xde,0x67,0x4b, - 0x24,0x98,0x2b,0x70,0x39,0x53,0x96,0x90,0xe9,0xc0,0x7a,0x09,0xaf,0xdc,0xe6,0x33,0x75,0x37,0x2a,0xfb, - 0x46,0x08,0x90,0xf4,0x8d,0x84,0xec,0x2c,0xa7,0xc1,0x4c,0xf5,0xae,0x23,0x3a,0x64,0x24,0xcc,0x85,0x88, - 0x9d,0x1d,0x69,0xc4,0x84,0x8f,0xaf,0x72,0x2f,0x01,0x8e,0x52,0x2a,0xe5,0x43,0xfe,0x25,0x2f,0x2e,0x73, - 0x5d,0x29,0xd2,0x5a,0x21,0xe6,0xe3,0x33,0xd1,0x15,0x41,0x3e,0xfe,0x92,0x0b,0xef,0x62,0x42,0x7c,0x38, - 0x9e,0x67,0x33,0x39,0xb9,0x9e,0xcc,0x25,0xee,0x62,0xae,0xe2,0x87,0xf9,0x46,0xbc,0x26,0x88,0x3c,0xf9, - 0xcf,0xa7,0xcb,0xfe,0xde,0xe8,0xae,0xf8,0x9c,0x23,0x52,0x3f,0xef,0xad,0xf1,0x98,0xc8,0xb0,0x9b,0x8d, - 0x78,0x42,0x49,0x8e,0x60,0xb5,0xd7,0xda,0x29,0xbf,0x19,0xf1,0xa2,0x3b,0xf7,0x97,0x5f,0x9f,0xe4,0x17, - 0x59,0x59,0xe4,0xfa,0x8e,0xf0,0xdd,0x46,0x02,0x44,0x78,0xdc,0x53,0xf1,0x3c,0x4f,0x5e,0xe4,0xfb,0xfb, - 0xdd,0xb9,0x4d,0x80,0x17,0x4f,0xf3,0xe4,0x09,0x95,0xd5,0x0e,0x3b,0x79,0x7a,0x91,0x9d,0x81,0x4b,0xe8, - 0xaf,0x68,0xc2,0x1e,0x9e,0xf1,0x4d,0x4c,0x8d,0xf2,0x8f,0xf3,0xe4,0x29,0x95,0xbf,0xbb,0xa8,0x32,0xb9, - 0x26,0xdc,0x33,0xa5,0x22,0xda,0xe2,0xea,0x69,0x1e,0x89,0x57,0x2a,0xfb,0xa9,0xe7,0x2f,0x88,0x92,0x3b, - 0xdf,0xf5,0x0f,0x81,0xdd,0xc4,0x9b,0xed,0x7c,0x39,0x3d,0x93,0x77,0x39,0xf3,0xe5,0x76,0x26,0xc1,0x41, - 0x49,0xe7,0x1c,0xb2,0xe9,0x34,0x33,0x6f,0x74,0xa0,0x3d,0xcf,0xc5,0x5b,0xdd,0x95,0x6c,0x79,0x4e,0x7b, - 0x6b,0x9d,0x2d,0xd3,0x29,0xfd,0x29,0xe8,0x4f,0x51,0xb9,0x2e,0xc1,0x65,0xbc,0xa8,0xf4,0x27,0x8f,0xf2, - 0x24,0xe4,0x6f,0x26,0xe7,0x25,0x91,0x28,0x9f,0xee,0x7e,0x9a,0xf6,0xbc,0xde,0xdf,0x6c,0xfa,0x7c,0xfb, - 0x6e,0x24,0x3e,0x40,0x19,0x0d,0xaa,0xea,0x49,0xce,0x21,0x2a,0x81,0x95,0x3f,0xb2,0x5d,0x43,0xf7,0x55, - 0xc5,0x1f,0x09,0x9f,0xe8,0xd8,0x07,0x81,0xb8,0xc1,0x55,0xc7,0x1e,0x05,0x8c,0xca,0x0e,0x37,0xc0,0x53, - 0x6a,0x96,0xb7,0x03,0xea,0xa1,0x07,0x07,0xf6,0x7b,0x86,0xfa,0x8f,0x79,0xe4,0x39,0x75,0xa3,0xfd,0x67, - 0xb9,0xf8,0x23,0x17,0xbf,0x78,0x28,0xa8,0x45,0x0b,0xd0,0x18,0x9f,0xc1,0x30,0xe6,0x19,0xb5,0x87,0x45, - 0xed,0x82,0xa1,0xb3,0x79,0x71,0x9a,0xce,0x41,0x93,0x32,0xa2,0xc2,0xbc,0xa8,0x24,0xe0,0x7e,0xb0,0x83, - 0x7d,0x99,0x5f,0xf4,0x3f,0x7e,0x78,0x32,0x7e,0xf2,0xea,0x63,0x24,0x9e,0x11,0x2c,0xff,0xde,0x00,0x91, - 0xf1,0x18,0x99,0x8f,0x9f,0x7c,0x7c,0xff,0xfa,0xf5,0x8b,0x77,0xe3,0x1f,0x5e,0xbc,0x7e,0xf4,0xf0,0xc5, - 0xf8,0xd9,0xeb,0xd7,0x3f,0x8d,0xc7,0xe2,0xc7,0x6e,0xc0,0x7d,0x77,0xbd,0x38,0x2d,0xa8,0xd1,0xbd,0x50, - 0x3d,0x45,0xdd,0x7d,0xd3,0x57,0x16,0xa3,0x5c,0xeb,0xf6,0xe2,0x68,0xf0,0xc7,0x2d,0x35,0x4b,0x2e,0x4e, - 0x3f,0xd1,0xf0,0x5d,0x73,0xd6,0x1b,0xb1,0x2e,0xd4,0x55,0x7e,0xb2,0xee,0x8a,0xbc,0x6a,0xa3,0xe5,0x37, - 0x8f,0xbf,0x0e,0x4c,0xbf,0x8b,0x29,0x36,0x55,0x41,0x89,0x29,0xfc,0x6f,0x68,0x59,0x1b,0xdf,0x78,0x05, - 0xb1,0xfe,0x8d,0xb2,0x84,0x2c,0xd2,0xd2,0x5f,0xc8,0xaf,0x76,0x50,0xd4,0x1b,0x6d,0x42,0xf0,0x53,0x9e, - 0x9c,0x89,0x5f,0xc1,0x10,0xfc,0x90,0x6f,0x7d,0x9e,0x4d,0x93,0x5f,0x89,0x6e,0xd3,0x57,0x25,0xae,0x4e, - 0xa1,0x9e,0xdf,0x0c,0x7e,0xc8,0x9b,0x7d,0x7c,0xb7,0x3a,0xed,0xe8,0x26,0x95,0xd6,0xc1,0xfa,0xa8,0xb9, - 0xc6,0x27,0xca,0xd1,0xb0,0xfd,0x95,0xbe,0x4d,0x14,0xdf,0x89,0xad,0x4f,0xd4,0x45,0xd9,0x7e,0xff,0xbc, - 0x7b,0xb4,0xed,0x23,0x3a,0xf3,0x58,0x2e,0x95,0xa0,0xbd,0x55,0x43,0x5e,0xd4,0x44,0x58,0x77,0x5f,0x98, - 0xe7,0x3a,0x6c,0x25,0xad,0x6c,0xef,0x54,0xb7,0xed,0x9d,0xf8,0x32,0xf8,0x95,0xbd,0x3e,0xcf,0x36,0xcc, - 0x66,0xf1,0x3c,0x9d,0xff,0xce,0x11,0x4e,0xf9,0xb7,0xf6,0x91,0xef,0x94,0x61,0x7a,0x7a,0xe0,0x2a,0xa3, - 0x2f,0xb9,0xe4,0xdb,0x9f,0xda,0x77,0x5c,0xea,0xdb,0x2b,0xf9,0x0e,0x29,0x7d,0xdf,0xa5,0x9c,0x2f,0xcc, - 0x65,0x97,0x79,0x65,0xae,0xee,0x50,0x5f,0xe9,0xcb,0xa6,0x0a,0xf5,0xea,0x6e,0x9f,0xf2,0x0b,0xb9,0x5b, - 0xa8,0x9a,0xa9,0xe6,0x5e,0x48,0x3f,0x95,0x6f,0x30,0x85,0x39,0x2f,0xa8,0x3c,0xdd,0x44,0xd3,0xac,0xd5, - 0x5c,0x6c,0xb9,0x65,0x40,0xdc,0xa8,0x47,0x5f,0xd1,0xe9,0x27,0x95,0xe9,0x25,0x87,0x94,0x61,0xf0,0xb2, - 0xd7,0xa6,0xda,0x04,0xe7,0xb7,0xc5,0xca,0x0a,0x95,0x68,0xc2,0x96,0xbb,0x62,0xc7,0x73,0x6a,0x74,0xea, - 0x25,0xf0,0x4d,0xab,0xe6,0xb5,0x11,0x03,0xbc,0xf2,0xd2,0xf8,0xc2,0x39,0xbf,0x37,0xdb,0x41,0xc4,0x61, - 0x32,0x24,0x7e,0x26,0xc4,0xcc,0x4b,0x11,0x23,0x3a,0xde,0x2c,0x3b,0x5b,0xf1,0x2d,0xe5,0x31,0x90,0xee, - 0xe0,0xe7,0x5c,0x2d,0x13,0xdf,0x50,0xbf,0x8d,0x39,0xbb,0xa7,0x65,0xd3,0x79,0x23,0x3d,0x51,0x3e,0xe1, - 0x6f,0x1e,0x94,0x52,0xc3,0x6a,0x57,0xd6,0xad,0x9b,0x49,0x0c,0x36,0xe6,0x7b,0x2c,0x38,0xbe,0x89,0x62, - 0xb3,0xd4,0xad,0x31,0xce,0x34,0x8e,0x57,0x1d,0x31,0x6f,0xbc,0x49,0x3b,0x14,0xd4,0x3a,0x0d,0xac,0x75, - 0xa7,0x8e,0xc8,0xcb,0x16,0x6a,0xc0,0xed,0x29,0x27,0x01,0xf6,0x6c,0x80,0x90,0xd7,0x4b,0xcf,0x0e,0x43, - 0x87,0x4f,0x43,0x0a,0x87,0x03,0xc3,0x43,0x01,0xc7,0xb1,0xa0,0x84,0xe9,0x7e,0x25,0x61,0x9e,0xd1,0x61, - 0x96,0xa7,0x7a,0x29,0x4b,0x98,0x07,0x5c,0x86,0x39,0x41,0x72,0x77,0x00,0xed,0x13,0xdc,0x1f,0x66,0x43, - 0x05,0x59,0x99,0xc4,0xc1,0xc1,0x20,0xe2,0xfb,0x6d,0x6d,0x96,0xb5,0xf8,0x46,0x24,0x79,0xed,0x44,0x8a, - 0x19,0x87,0x8f,0x86,0xbe,0x9b,0x5b,0x85,0x96,0x18,0xe8,0xc0,0x96,0xb5,0x0a,0x6c,0xa9,0x86,0x15,0xf3, - 0xa3,0x19,0x4c,0x8c,0x78,0xee,0x2e,0xce,0xa4,0x19,0x1a,0x92,0x35,0x22,0xb8,0xe7,0xc4,0x47,0x90,0xc7, - 0x14,0xa7,0x7c,0xc6,0x99,0xcb,0xb1,0x45,0x0a,0xbc,0xa4,0x31,0x0b,0xec,0xa4,0xc0,0x79,0x28,0xdf,0x15, - 0x3b,0xb5,0x04,0x23,0x1e,0xd7,0xc3,0xb4,0x20,0x4d,0x03,0x91,0x94,0x65,0x72,0x53,0x9d,0x17,0xab,0xf9, - 0x94,0xf6,0x2a,0xcd,0x60,0x0d,0xd8,0x12,0x2d,0xcb,0x5c,0x1e,0x8e,0x0a,0x5e,0x62,0x70,0x85,0x5c,0xf2, - 0x9a,0xff,0xa0,0xf1,0xc3,0xc5,0x82,0xdd,0x78,0x09,0x5b,0x5d,0xea,0xcb,0x93,0x69,0xe8,0x81,0xbe,0x80, - 0x79,0x2b,0xee,0x48,0x18,0x7e,0x6e,0x4a,0x84,0x54,0x48,0x43,0x4b,0x49,0x26,0x72,0x13,0xb7,0xb3,0xbd, - 0x9b,0x94,0x3b,0xd5,0x40,0xda,0x9d,0x16,0xeb,0x72,0xa9,0x54,0x3c,0x88,0xf9,0x4c,0xb4,0x09,0x44,0xa2, - 0xa5,0x28,0x4b,0x7d,0xd1,0x6d,0x63,0xee,0x6a,0x78,0x00,0x20,0xf5,0x32,0x9d,0x7f,0x09,0x39,0x12,0x7b, - 0xe9,0xe1,0x6a,0xa4,0xde,0x62,0xa2,0xdc,0xba,0x58,0x5e,0xc9,0x18,0xa4,0x2f,0x63,0x78,0x88,0x9e,0x23, - 0x8a,0x3a,0x21,0x6b,0xfa,0x19,0xc1,0xe5,0xdc,0xaf,0xdc,0xef,0xc8,0x6d,0x97,0x55,0x75,0xe1,0xfe,0x77, - 0xea,0x86,0x2a,0x75,0x23,0x30,0x1d,0xb5,0xef,0x8d,0x3c,0xb4,0xc5,0xca,0x0c,0x52,0x15,0xf6,0xe4,0x16, - 0xa6,0x6f,0x27,0x1f,0x3e,0xd1,0x29,0xb1,0xf4,0xbd,0x4a,0x2d,0x05,0x22,0x87,0x75,0xfc,0x44,0x49,0x71, - 0x88,0x8b,0xeb,0xdc,0x56,0x29,0x36,0x54,0xf2,0x82,0x08,0xc0,0x77,0xb7,0x17,0xe8,0x05,0x55,0x30,0x4a, - 0x9e,0x53,0x21,0xea,0x11,0x53,0xa1,0x5b,0x87,0x92,0x52,0x12,0x13,0x5e,0x79,0xc4,0xe6,0xcf,0xf6,0xae, - 0x39,0x69,0x92,0xa4,0x4d,0xb2,0x76,0x6b,0x3b,0x4d,0xa4,0x51,0xaf,0xd7,0x1d,0xd1,0xe6,0xa5,0x36,0x4f, - 0x24,0xf2,0xf6,0x02,0xb6,0x72,0x51,0xd3,0x1b,0x43,0x1a,0xc9,0x27,0x7c,0x31,0x44,0x95,0x00,0x66,0x06, - 0x29,0x31,0x20,0xed,0x0b,0xf1,0x58,0x79,0x78,0x92,0x8e,0x22,0xbe,0x6c,0x28,0x49,0x87,0xa9,0x71,0x29, - 0xaf,0xa2,0xd6,0x25,0x71,0x55,0x34,0x24,0x4e,0xae,0x1a,0xd9,0x1d,0xbb,0xc1,0xb8,0x55,0xf4,0x50,0x7a, - 0x58,0xc8,0xfa,0xbc,0x98,0xf2,0xa3,0xba,0x02,0x1a,0x4f,0x13,0x1d,0x4b,0xa0,0x7b,0x62,0xb6,0x87,0xd3, - 0x15,0x65,0xdf,0x10,0xcc,0x3c,0x4c,0x21,0x61,0xfa,0x98,0x71,0xa0,0x06,0xd3,0xfe,0x05,0xb1,0x34,0xc9, - 0x13,0x25,0x91,0x2d,0xc5,0xa4,0x14,0xab,0xb2,0xa5,0xa1,0x6d,0xd3,0xdc,0x80,0x00,0xc2,0xd9,0x73,0xdc, - 0x02,0x25,0x66,0x1c,0x82,0x8d,0x03,0xb1,0xb1,0x2d,0x4c,0x07,0xcd,0x4a,0x54,0x9e,0x8d,0xc6,0x0d,0xe2, - 0xd5,0x7f,0x8f,0xa2,0x49,0x83,0x2c,0xf4,0xf3,0xc2,0x8f,0x04,0xce,0xd6,0x40,0xcf,0x55,0x6c,0x9d,0xf6, - 0x5e,0x12,0xf9,0x9e,0x9e,0xc9,0xe3,0xf3,0x34,0xcf,0xe5,0x7c,0xbd,0xde,0xdd,0x0b,0x9b,0x49,0xa0,0xbb, - 0xcd,0x65,0x46,0xcd,0x1c,0x42,0x6b,0x55,0x5d,0xae,0x70,0x06,0xf3,0xfd,0x46,0xcd,0x5c,0x2b,0x67,0x0a, - 0x3b,0xfa,0x67,0xdc,0xeb,0x3e,0xc2,0x95,0xce,0x19,0x95,0x4c,0x4b,0x46,0x7d,0xcd,0x8a,0xc4,0x79,0x99, - 0x4c,0x69,0x9a,0xe9,0x30,0xba,0x37,0xd0,0x0f,0x47,0x7d,0x70,0xa8,0x5c,0x2a,0xf9,0x28,0x9a,0xd5,0x9f, - 0xa3,0x48,0x55,0xeb,0x4a,0x20,0xec,0xd9,0xdc,0x32,0xa9,0x84,0xb3,0x17,0x59,0xc5,0xf3,0xa9,0x1f,0xb5, - 0xe5,0xee,0x45,0x99,0xe8,0x04,0x73,0x43,0x2e,0x91,0xd2,0x55,0xa3,0x95,0x8b,0x52,0x5d,0x37,0x4c,0xfc, - 0xce,0xdb,0xbc,0xe1,0x32,0x78,0x66,0xa2,0x0d,0xd3,0x07,0x93,0x92,0x81,0x62,0x51,0x8a,0x33,0x35,0x34, - 0x62,0xc6,0xae,0xcb,0x96,0xa0,0x49,0x8b,0x53,0xf7,0x03,0x1b,0xc7,0x99,0x85,0x57,0x84,0xa1,0x82,0xff, - 0xc7,0xd6,0xe7,0x35,0xc0,0xc5,0xca,0xae,0x62,0x78,0xc7,0xdb,0x42,0x25,0xe2,0xc6,0xaa,0x42,0xf9,0x6d, - 0x85,0x8c,0x0d,0x1d,0xeb,0xe0,0x89,0xd8,0x6c,0x94,0x13,0xb0,0x88,0x80,0x60,0x73,0x2b,0x1e,0x9f,0x04, - 0xfb,0x39,0x2e,0xd5,0xb5,0x4d,0xa7,0x0c,0xa9,0x97,0xfc,0x77,0x8f,0x43,0x35,0x5d,0x31,0xd4,0x7e,0xe1, - 0xbf,0xc7,0x38,0x3b,0xde,0xe1,0xcf,0xc3,0xb2,0x83,0x2e,0x36,0xe7,0xdc,0x02,0xc1,0xd3,0xd9,0x0b,0x63, - 0xcc,0xd8,0x8a,0x48,0x16,0x75,0x8e,0xb9,0x04,0xc3,0x51,0x70,0x72,0x39,0x0c,0xf5,0x99,0x48,0x87,0xe2, - 0xee,0x6e,0xc9,0x0f,0xea,0xb0,0x81,0xac,0x81,0x93,0xf0,0xa0,0xef,0x87,0x4f,0xff,0xb8,0xe6,0x24,0x3c, - 0x68,0x86,0x86,0x28,0x3f,0x4e,0xc2,0x83,0x3e,0x90,0xb8,0x32,0x57,0x87,0xfb,0xd4,0xfb,0x42,0x53,0x99, - 0x93,0x53,0x43,0xa5,0x13,0x9b,0xd4,0xeb,0xbd,0xd3,0x0d,0xa9,0x48,0x6a,0x96,0x7a,0x9d,0x66,0x74,0xee, - 0xbb,0x7a,0xec,0x31,0x0e,0x56,0x4a,0x13,0xf3,0xf2,0xf2,0xb1,0xff,0x4e,0x99,0xcf,0xa7,0x95,0x01,0x08, - 0xaf,0x48,0x3b,0xd5,0x69,0x10,0x20,0x6e,0xef,0x88,0x4f,0x20,0xd5,0x9d,0xf1,0x44,0x83,0xd4,0x34,0x16, - 0x19,0x87,0xfe,0x6b,0xcb,0x67,0x67,0xf7,0x75,0xae,0xc4,0x16,0xe6,0x0a,0x3a,0xb8,0x83,0xe9,0x30,0x27, - 0xfd,0xc0,0xdd,0xfa,0xd8,0x71,0x60,0x76,0x1c,0xc2,0x0d,0xf4,0x39,0xa8,0x13,0x7d,0x16,0xbb,0x6b,0xe4, - 0x36,0xec,0x25,0xe5,0xf5,0x07,0x96,0xe0,0x5d,0xbd,0x8b,0xe0,0x16,0x2f,0x7c,0x4a,0xc8,0x4c,0xa5,0xb1, - 0x2d,0x33,0x9f,0x21,0xf8,0xcc,0x43,0xff,0xa4,0x6f,0xd1,0xe7,0x4c,0x57,0x0f,0x14,0xb7,0x27,0x3c,0xf6, - 0xf1,0xdf,0x3a,0x9e,0x8f,0x4d,0x8a,0x3c,0xc6,0x4e,0xc5,0x98,0xe0,0x5b,0x01,0x15,0x90,0x72,0xe0,0x3c, - 0xdd,0x0b,0xd5,0x57,0x7d,0x6f,0x9b,0xb0,0xe2,0x15,0x6d,0xe8,0x6d,0xa1,0x28,0xaa,0xcf,0xcb,0xe2,0x92, - 0x0e,0x91,0xb7,0xac,0xac,0xbf,0xa3,0x3e,0xdb,0xa1,0xe9,0xdb,0xd1,0x70,0xbd,0x03,0x6b,0x8b,0xe6,0x92, - 0xc2,0x14,0x25,0xda,0x10,0x4e,0xa2,0xca,0xaf,0x6f,0x2c,0x6c,0xee,0xef,0xff,0x81,0x89,0x73,0x1d,0x44, - 0xef,0x8b,0x65,0xa8,0xa7,0x08,0x52,0x80,0x7c,0xb5,0x04,0x3c,0xb9,0x78,0x78,0x74,0x94,0x34,0xe6,0x45, - 0x71,0xc9,0x1d,0xce,0x37,0x35,0x41,0xf2,0xa0,0x09,0x70,0x90,0x5b,0x84,0xb0,0x87,0x0b,0x5b,0xe9,0x2a, - 0xee,0x57,0x03,0x82,0x0d,0xbb,0xef,0x83,0xb1,0xfd,0xbe,0xd6,0x92,0x02,0xb5,0x79,0xa3,0x56,0x97,0xbc, - 0x7e,0x7f,0x85,0x45,0xc7,0xb6,0xb1,0xf7,0xda,0x83,0x37,0x30,0xfd,0x36,0x99,0x60,0x33,0xba,0xfa,0x4f, - 0xe3,0xc2,0x6d,0x07,0x4e,0xf2,0xa0,0x45,0x04,0xda,0x34,0xca,0x75,0x77,0xe0,0xef,0xc0,0x66,0x4d,0x5b, - 0x3b,0xb1,0x95,0xa0,0x24,0x30,0x61,0x24,0x5c,0x85,0x95,0xb7,0xdb,0xfd,0x89,0x6a,0xee,0xfb,0xbc,0x39, - 0x89,0x26,0xc6,0x64,0x6b,0x86,0x94,0xd4,0x61,0x4b,0x42,0xc3,0x1b,0xc1,0x43,0x34,0xbb,0x7a,0x3f,0x00, - 0x53,0xa9,0xf4,0x72,0x45,0x85,0xe3,0x5b,0x16,0x5b,0x07,0x8e,0x4e,0x92,0x3d,0xdc,0xe1,0xcc,0x70,0xcb, - 0x4f,0x40,0x5f,0x5f,0x1a,0x76,0x7f,0xa7,0xa5,0x35,0x45,0x1c,0xe4,0xdf,0x1f,0x97,0xfb,0xfb,0xa7,0x25, - 0xdf,0x5c,0x36,0xfd,0x9e,0x6b,0x8a,0x72,0x8e,0xe3,0x6f,0xc2,0x45,0xe7,0xbd,0x23,0x71,0x08,0x39,0x0e, - 0x1f,0x76,0xa7,0xe6,0x52,0xc9,0x68,0x70,0x85,0x9d,0x8e,0xd3,0xe1,0x50,0x3c,0x0b,0x71,0x45,0x35,0x0c, - 0xa1,0x94,0xbc,0xa6,0x31,0x5e,0xea,0xb6,0x3f,0x58,0xd0,0xa9,0x0e,0xbb,0x9a,0x28,0x25,0x6e,0xeb,0xb3, - 0x91,0xd1,0xae,0x96,0xa5,0x31,0xa2,0x58,0xaf,0x33,0xbe,0x3a,0xce,0x6e,0x9d,0x06,0xb4,0x28,0x97,0x4d, - 0x53,0x6b,0x83,0xc7,0x52,0x5b,0xb6,0xd4,0x9b,0x6e,0x72,0xaa,0xf6,0xb7,0xde,0xfe,0x82,0xe9,0x72,0x2b, - 0x46,0x7d,0x1b,0xd6,0x86,0x11,0x13,0x77,0x8c,0x95,0xc6,0x5f,0xda,0xd9,0x3c,0x2f,0xb7,0xb7,0xb0,0x69, - 0x4d,0x87,0x44,0x17,0xbb,0x00,0xc0,0x43,0x8a,0x3c,0x11,0xfe,0xa9,0x03,0x51,0x46,0xa3,0x96,0x6d,0x31, - 0xda,0x9f,0xed,0x30,0x7f,0x6b,0xe9,0xcf,0xc3,0xf6,0x52,0xd5,0x04,0xf7,0xd3,0xe2,0xf2,0xab,0xeb,0xa5, - 0x07,0x87,0x40,0x3d,0x8f,0x24,0xd1,0x7d,0x8f,0x8d,0xfe,0x68,0xbd,0xb6,0x23,0x77,0xc7,0xbc,0x62,0x60, - 0x07,0x7f,0xab,0x73,0xad,0xbd,0x3d,0x68,0x1c,0xc6,0x47,0x1b,0xc5,0xb7,0xbd,0x27,0xe2,0x44,0xe6,0xab, - 0x85,0x34,0xf2,0x1c,0xd1,0x92,0xef,0x40,0x69,0x13,0x9f,0x89,0x0a,0x7f,0x37,0xe2,0x35,0x15,0xc7,0x0e, - 0x03,0x73,0x3e,0xf8,0x52,0x87,0xc7,0x9e,0xc4,0x55,0x71,0xfa,0x9f,0x4b,0xf1,0xa4,0x14,0x2f,0x4a,0xf1, - 0xbc,0x14,0x4f,0xa9,0x34,0x5c,0xf8,0x7d,0x1e,0x5a,0x53,0x38,0x7c,0x1e,0x74,0x7b,0xe8,0x77,0xb8,0xe0, - 0x67,0x95,0x9d,0x9e,0xa8,0xcb,0x49,0x3f,0x09,0x55,0x14,0xe6,0x9b,0x31,0x8b,0x79,0x54,0x26,0x3a,0xaf, - 0xbd,0x8e,0xc7,0xa5,0xd0,0xde,0xf0,0x1f,0xe1,0xcc,0x1f,0xa7,0xe6,0xf5,0xc9,0x7c,0x11,0x97,0x8a,0x61, - 0x23,0xda,0x4d,0xce,0xf0,0x9e,0xa9,0xf7,0x0d,0xae,0xa1,0x50,0xde,0xdb,0x4d,0xb3,0x1e,0x61,0x6e,0x7b, - 0xd1,0x86,0x3c,0xc9,0x44,0x3f,0x88,0xaa,0x6d,0xbb,0x43,0x59,0xad,0x14,0xc2,0x86,0x44,0xb0,0x6c,0x5f, - 0x30,0xca,0x71,0x02,0x70,0x71,0x73,0xd4,0xdf,0x63,0xed,0x63,0x08,0xfa,0x54,0x52,0x77,0xb4,0x74,0xce, - 0xbb,0xe2,0x48,0xfb,0x94,0xc3,0xdb,0xfe,0xe1,0xdc,0x6e,0x7e,0x04,0xe5,0x7c,0x0a,0x28,0x94,0x1c,0x1d, - 0x21,0x2c,0x70,0x4d,0xbc,0x8d,0x67,0xba,0x11,0x26,0x23,0x6e,0xb2,0x5a,0xc6,0xd1,0x6e,0x2b,0x88,0xc1, - 0x6e,0x17,0x61,0xaa,0x1a,0xda,0xdd,0x0d,0x33,0xac,0x94,0x89,0x4a,0xd0,0x1f,0xab,0x09,0x38,0xd6,0xc2, - 0xda,0xf5,0xda,0x84,0x3e,0x75,0xd6,0x7c,0x5c,0xde,0x7b,0xe7,0x6b,0x0b,0xb4,0x29,0xa4,0xab,0xc7,0x5b, - 0x24,0x48,0x79,0x75,0xe8,0x2b,0x7e,0x1c,0xeb,0x7b,0xab,0x43,0xf3,0x68,0x84,0xa9,0x7c,0x47,0xd2,0x6d, - 0x5d,0x81,0x80,0xb8,0xbf,0xa7,0x6e,0xb9,0x30,0x97,0x03,0x35,0x6f,0x08,0x9b,0xe2,0xd2,0x8a,0x3d,0x7b, - 0x95,0x3d,0x42,0xf2,0x53,0x12,0x9b,0xb6,0xd8,0x4a,0x95,0x95,0xe5,0x4d,0x56,0xf6,0x1b,0x22,0x2a,0x63, - 0x11,0xac,0x58,0x77,0xc4,0x80,0x42,0x39,0x51,0x25,0x8d,0x21,0x51,0x1a,0x14,0x2c,0x08,0x3d,0x2d,0x94, - 0x5f,0x72,0xe5,0xbb,0x25,0x9b,0xf8,0x3d,0x27,0x13,0xe2,0xf8,0x71,0x69,0xf9,0xab,0x70,0x25,0xda,0x6d, - 0xab,0x4b,0xf2,0xb6,0xdb,0x3f,0xdc,0x2a,0xf9,0x98,0x85,0xe7,0x1b,0x67,0xd0,0x3c,0x4f,0xb6,0x27,0xd8, - 0xc5,0x84,0xf8,0x4a,0x1e,0x9d,0xc3,0x52,0x5d,0xfd,0x38,0x8f,0x36,0x05,0x4f,0xfc,0x5e,0xc5,0xd7,0xd7, - 0xe7,0xb0,0x50,0xf4,0xc2,0x64,0x53,0x06,0x4d,0xc3,0x44,0xab,0xc9,0x11,0x27,0xc9,0xbf,0xb4,0xd8,0x6e, - 0xd2,0x8e,0x8d,0x2b,0xbc,0x10,0x16,0xf4,0x6c,0x57,0x01,0x10,0xe7,0xa2,0x63,0x6c,0x84,0x0a,0xcb,0xb5, - 0x7d,0x68,0xab,0x7b,0x88,0xf4,0xe5,0x75,0x65,0x57,0x0b,0x83,0xb2,0x11,0x0b,0x2d,0xf4,0x5f,0xd9,0xdc, - 0x1a,0x77,0x86,0x5a,0x85,0x3f,0x1b,0xb8,0x35,0x77,0x17,0xbb,0x9a,0xbb,0x6f,0x86,0x21,0xdc,0x57,0x23, - 0xdc,0xaf,0x6c,0x71,0x29,0x31,0x7a,0xc6,0x27,0x33,0x8a,0x53,0x54,0xb8,0x7b,0x08,0x8a,0x4e,0xdb,0x04, - 0x74,0xd2,0x1a,0xdb,0x1d,0x6d,0xe2,0x39,0x76,0x04,0x6d,0xf6,0xc4,0x4a,0x2a,0x95,0x91,0xab,0x42,0xa2, - 0x21,0x4b,0xa5,0xfa,0x63,0x65,0xf3,0xf0,0x3c,0x77,0xdc,0x56,0xc1,0xf7,0x25,0x83,0xca,0xb3,0x7d,0x8d, - 0x10,0xa8,0xd2,0xeb,0xf9,0xe1,0xc0,0x93,0x66,0x0e,0x4a,0x62,0x59,0xf6,0xda,0xd7,0x9a,0x43,0xa6,0x09, - 0xe7,0x48,0x9b,0x71,0x52,0x8e,0x88,0xbb,0x47,0x0f,0x1a,0xb6,0x0d,0x20,0x5b,0xd8,0x5f,0x25,0xf6,0x6f, - 0x32,0xa6,0x54,0xf1,0xb8,0x6c,0x08,0x29,0x9f,0xd2,0x7e,0x7d,0x55,0x26,0x47,0xe2,0x4d,0x99,0xdc,0x13, - 0x2f,0xd1,0xf0,0x67,0x5f,0x6f,0xc7,0x17,0x57,0x6f,0xd3,0xe2,0x0a,0x03,0xa9,0x43,0x6c,0xbc,0x22,0x06, - 0xf3,0x65,0x69,0xf4,0x70,0x34,0x6d,0x1f,0x57,0x8a,0xc1,0xe4,0x48,0x6c,0xde,0x19,0x30,0xec,0x42,0x76, - 0x0e,0xe6,0x5b,0xf2,0x2b,0x06,0x25,0x23,0xa4,0xb1,0xc6,0x9d,0x1c,0xea,0xc3,0xc7,0x4c,0x83,0xdc,0xa0, - 0x1e,0x83,0x83,0x44,0xde,0x46,0x5d,0x36,0x81,0x4e,0x14,0xf7,0x39,0xbd,0x20,0x47,0x1d,0x34,0x48,0x56, - 0x4f,0x5a,0x98,0xd6,0x71,0x83,0xa2,0xb7,0x3d,0x92,0xac,0xb1,0x55,0xb6,0x76,0x6b,0xe6,0xed,0x9e,0x7c, - 0x1b,0x0d,0xda,0xdd,0x84,0x4c,0xdb,0xce,0xfb,0xf4,0x4c,0x5d,0x87,0x2b,0xa4,0x3e,0xc4,0x18,0xdc,0xf5, - 0xc1,0x66,0xd2,0xc4,0x96,0x1b,0x60,0xb2,0xe5,0x97,0x13,0x29,0xaa,0x55,0xd4,0x5a,0x6e,0xb0,0xe7,0xee, - 0x36,0xc7,0x65,0xf4,0x5a,0x2b,0x67,0x26,0x97,0xb6,0x19,0x87,0xcb,0xd6,0xf2,0x0c,0x5e,0x45,0xd5,0xd6, - 0x9b,0xb2,0xb8,0x52,0xe2,0x01,0x9d,0x5c,0xc9,0xf9,0x4c,0xbd,0x77,0x6d,0x23,0x7b,0x6b,0x66,0x6e,0x17, - 0x83,0x69,0x78,0x84,0x9b,0xb4,0xe1,0x76,0x74,0x48,0xce,0xdc,0xe1,0x3a,0x93,0xb3,0xbf,0x4f,0x89,0x26, - 0xa6,0x22,0x22,0x02,0x9b,0x97,0xdc,0xdb,0x09,0x46,0x69,0x5b,0x9b,0x5c,0xbe,0xe7,0x68,0xaf,0x2c,0x0a, - 0x48,0x91,0x72,0xf5,0x14,0xd7,0x48,0xb3,0xea,0x4a,0xc8,0x2e,0xd4,0x5d,0xc9,0x10,0xfe,0x78,0x12,0x1c, - 0x26,0x35,0x6a,0x6f,0x13,0x9a,0x84,0xf6,0x06,0x3e,0xe2,0x52,0x0e,0x55,0xe9,0x77,0x8b,0x20,0x6c,0x4a, - 0x93,0x7c,0x04,0x69,0xa7,0xe5,0x41,0x0d,0xcd,0x49,0x7f,0xac,0x2f,0x11,0xea,0xb2,0xe7,0xa1,0x5c,0x62, - 0x0b,0x61,0x5b,0xc3,0x56,0x13,0x89,0x8e,0x38,0x26,0xbf,0x7a,0x74,0x40,0x1f,0xaa,0x2e,0xbf,0xba,0xa5, - 0x41,0x75,0x76,0x9b,0xf1,0x29,0x78,0x79,0x5f,0x4a,0x59,0x39,0xed,0x70,0x6b,0x09,0xed,0x81,0xdf,0xdc, - 0x70,0xb4,0x03,0x73,0xac,0x94,0x89,0x72,0xe9,0x1f,0x44,0xb2,0x0d,0xea,0xea,0xce,0x44,0x9f,0xd4,0x48, - 0xf8,0x88,0x1f,0x4f,0x1a,0xc6,0xde,0xc2,0xbf,0x29,0xfa,0xbd,0x77,0x97,0x2a,0xe2,0x3d,0x6c,0x78,0x2d, - 0x7d,0x4b,0xc4,0xbf,0xfa,0xed,0xa1,0xd6,0x87,0x64,0xaa,0xc7,0x1c,0x96,0x1e,0x0a,0x98,0x40,0xd1,0x20, - 0x01,0x04,0x7a,0x99,0x47,0x7a,0xa8,0xa0,0x56,0xaa,0x84,0xdd,0xbf,0x81,0x90,0x5b,0xd3,0xed,0x4a,0x9b, - 0xd9,0xae,0xd4,0xb6,0x12,0x4d,0xa3,0xb6,0x48,0x84,0x59,0x32,0xad,0xc3,0x50,0x0b,0x0b,0xdd,0x02,0x2a, - 0x29,0xbf,0x50,0x71,0x39,0x3a,0x48,0x19,0xd1,0xb8,0xb6,0xb6,0x23,0xfc,0x37,0xad,0xea,0xc3,0x10,0x1a, - 0xcb,0x8c,0xd8,0x0b,0x18,0xf2,0x75,0xd0,0x23,0x5b,0x40,0x60,0x38,0x18,0xb8,0xcd,0xb7,0x57,0x9c,0x8e, - 0x3c,0xed,0xdc,0xf2,0x75,0x34,0xed,0x10,0x1f,0x23,0x8d,0xd2,0x92,0x5a,0x3a,0x06,0x7e,0x07,0xb5,0x85, - 0x0d,0x58,0x20,0x30,0x90,0xd9,0xd0,0x5b,0x7d,0x2d,0xb4,0xa7,0x9a,0x6d,0xba,0xc0,0xe5,0x4e,0xbc,0xd7, - 0x0b,0x13,0xd2,0xf6,0x15,0xcc,0xa5,0x69,0x69,0x89,0x4d,0xc7,0xc8,0xe1,0x94,0x21,0x58,0x5f,0x43,0xd8, - 0x6b,0xc5,0x61,0x6d,0x54,0x3f,0x02,0xd0,0xda,0xad,0xa8,0x00,0x51,0x0a,0xe7,0xf9,0x8e,0x29,0x62,0x3f, - 0x27,0x4d,0x52,0xc2,0x18,0x5b,0xe9,0x61,0xda,0x73,0xd0,0x1e,0x7d,0xf3,0xf2,0x7a,0xc9,0x97,0xd7,0x27, - 0x4a,0x54,0x01,0x49,0xe2,0xf0,0x2c,0x9e,0x86,0x4a,0xcb,0xa7,0xae,0x47,0x36,0xf5,0xa2,0x09,0x40,0xe1, - 0xf0,0x6b,0xd8,0x53,0xc1,0x69,0x11,0x22,0x6d,0xcc,0xba,0xba,0x4e,0xe1,0x69,0xab,0x87,0xce,0x28,0xb8, - 0x56,0x0c,0xbb,0x6c,0x88,0x02,0x74,0xde,0x5b,0xde,0x1e,0x6c,0xba,0x19,0xe2,0xae,0xaa,0x1b,0x16,0x75, - 0xe2,0x9c,0xe0,0x1b,0x13,0x20,0x49,0x93,0x7c,0xb3,0x99,0x7f,0xb7,0x81,0x0f,0x8a,0x1c,0xe3,0x7b,0x8b, - 0x20,0x4e,0x13,0x9f,0x71,0xd0,0x83,0x15,0x46,0x26,0x13,0x0d,0x52,0x2b,0x0e,0x43,0x24,0xeb,0x74,0x34, - 0xa0,0x8d,0x37,0x23,0xb2,0x15,0xe1,0x35,0xef,0xff,0x53,0xd9,0x9e,0x87,0x55,0x2f,0x08,0x22,0xff,0x4a, - 0xa3,0x43,0x10,0x4c,0xdf,0x7d,0x9b,0xf0,0x25,0x92,0x7a,0x85,0xd1,0x73,0x5c,0xd1,0xb9,0x79,0xa7,0x08, - 0x1c,0x84,0x36,0x89,0xdf,0x85,0x66,0xa6,0x08,0x04,0x01,0xf6,0xd2,0xea,0xce,0x6e,0x83,0xe6,0xb1,0x29, - 0xf0,0x8b,0xd9,0x12,0x5d,0xa8,0xb8,0x4c,0x7e,0x41,0x84,0xf2,0x46,0xb8,0x0d,0xcb,0xe1,0x49,0x5c,0xd9, - 0xd2,0xb9,0x38,0xc5,0xb0,0x88,0x0b,0x08,0x3c,0x06,0x10,0x27,0xe5,0xb8,0xd1,0x03,0x8c,0xe6,0x43,0x78, - 0x72,0xd2,0xae,0x39,0x13,0x67,0xc4,0xbb,0xc3,0x2d,0x43,0x43,0xef,0x1c,0x63,0x43,0xa0,0x6f,0xe5,0x76, - 0x67,0x3b,0x1f,0xb1,0xc7,0x17,0xf5,0x0f,0xc6,0x2e,0xfc,0xb0,0xab,0x34,0x9f,0xb7,0xf8,0x4d,0x78,0xdd, - 0x2b,0x19,0x10,0xb7,0xe3,0x76,0x94,0xfe,0x9d,0x6b,0xb8,0xef,0xd1,0x2c,0x12,0xdf,0xf7,0xb8,0xd4,0xb7, - 0xcb,0x23,0x78,0x88,0xe2,0x70,0x4d,0x8a,0xe9,0x9a,0xb2,0x17,0x34,0x58,0x0f,0xcb,0x26,0xdb,0xa8,0x4d, - 0x2b,0x15,0x23,0x45,0x0a,0xeb,0xb7,0x69,0xd7,0x3c,0xe1,0xbc,0x56,0xb0,0x1a,0xc5,0xb9,0x87,0x43,0x8d, - 0x25,0xb0,0x26,0x46,0x6c,0xcd,0xf0,0x51,0x52,0x29,0x8a,0x2b,0x6f,0xe7,0xd2,0x51,0xb1,0xbd,0xb1,0x70, - 0x69,0xcf,0xd7,0x8c,0x61,0x18,0x70,0x36,0x03,0x1b,0xc8,0x29,0xff,0x6a,0x61,0x86,0xf7,0x6e,0x73,0x99, - 0xeb,0xd0,0xa3,0x9c,0xe9,0x04,0x51,0xa0,0x4a,0x1b,0xe6,0xaf,0x14,0xd6,0x98,0x2b,0x8f,0x1a,0x66,0x73, - 0xb8,0x1a,0x2c,0x79,0xdf,0x4c,0x52,0xf7,0x25,0x25,0xaf,0x9b,0xa9,0x5d,0x1a,0x74,0x75,0xb5,0x90,0x0b, - 0xd5,0xc2,0x8b,0xc9,0xb4,0x9c,0xba,0xa5,0x19,0xb7,0x2e,0xa8,0x6b,0xd0,0x95,0x46,0xea,0xd0,0x44,0x36, - 0xd5,0xb0,0xea,0x15,0xb5,0xfe,0x7b,0x99,0xd3,0xe4,0x4a,0x27,0x18,0x14,0xc6,0x31,0xc2,0xb7,0x9f,0x29, - 0xad,0xe8,0x8d,0x23,0x15,0x87,0x9f,0x89,0x39,0x7d,0x5e,0x26,0x77,0xff,0x83,0xbb,0xcb,0xe3,0xbb,0x22, - 0x7c,0x51,0x26,0x94,0xe6,0x8f,0xa2,0xc8,0x5b,0xba,0xe7,0x2d,0xf8,0xad,0x1d,0xfc,0xde,0x12,0x00,0x4f, - 0x03,0x45,0xce,0x41,0xd9,0x85,0xbe,0xfc,0x43,0x81,0x8a,0xa6,0xba,0xe8,0xc0,0x34,0x1a,0x03,0x97,0xe2, - 0x05,0x73,0x92,0xe8,0xa7,0x51,0x37,0x81,0xd5,0xe6,0x92,0x4d,0x9a,0xec,0xd0,0x5d,0xbc,0x43,0xb9,0x1b, - 0xf1,0xa2,0x6c,0x8e,0x63,0x22,0x5b,0x23,0x71,0x8e,0xfa,0x3c,0x35,0x7b,0xc5,0x6c,0xc6,0x0e,0xdc,0xc2, - 0xd8,0x09,0x95,0xde,0x65,0x64,0x1b,0xed,0x89,0x42,0x55,0xbb,0xa9,0x9f,0x11,0x55,0x2d,0x4a,0x35,0x34, - 0x7c,0x58,0x6e,0xb5,0x3a,0x9b,0x6d,0x4f,0xdf,0x6e,0xdb,0x6e,0x29,0x6a,0xc0,0xf3,0xd7,0xe8,0x50,0xb4, - 0xde,0xb5,0x00,0x37,0x7f,0x6d,0x05,0x30,0x40,0xbd,0x04,0xfe,0x54,0x69,0x2f,0xae,0xe6,0xec,0x37,0x6f, - 0x85,0x30,0x2d,0x3b,0xab,0x8e,0xf6,0x62,0x29,0x3a,0x56,0x17,0x93,0x16,0x24,0x0a,0xff,0xda,0x48,0x3e, - 0x74,0x28,0x3b,0x2c,0x92,0x0c,0x46,0x1a,0x30,0x5d,0xc0,0xfd,0x40,0xb3,0xbc,0x75,0x79,0x64,0xba,0x75, - 0x79,0x64,0xd7,0x9a,0xca,0x45,0x17,0x27,0xac,0x98,0x21,0xf0,0x3b,0xcd,0xc1,0xe4,0x70,0x22,0x33,0x7c, - 0xfb,0xf7,0x47,0x43,0x78,0xe5,0xc4,0xb9,0xc7,0xe1,0x9f,0x87,0x76,0x61,0xa8,0x79,0x3a,0x54,0x0f,0x39, - 0x58,0x8a,0x41,0xc6,0x0f,0x0a,0x46,0xc8,0x7c,0x0f,0x16,0x61,0x63,0x0d,0x23,0x08,0xee,0xe5,0x9c,0x7c, - 0xde,0x86,0x39,0xed,0xce,0x3b,0xdc,0xee,0xce,0xb9,0x72,0x21,0x60,0xe9,0x3e,0xa4,0xfa,0x4a,0x8e,0xef, - 0x29,0xd9,0xc2,0x27,0xed,0xed,0x36,0x6e,0x6b,0x6d,0x14,0x25,0xa1,0xb9,0x78,0xcd,0xeb,0xec,0xef,0xb7, - 0x48,0x5b,0xed,0x7e,0x61,0xc2,0x14,0xaa,0xc5,0x96,0x73,0xa1,0xd5,0xd1,0x8a,0xd1,0xa0,0xf1,0x8c,0xcb, - 0xc1,0xb8,0xf4,0x79,0x47,0xc5,0x4c,0x10,0xcd,0x3b,0x34,0xdf,0x18,0x8b,0x38,0x16,0x85,0x8e,0x11,0x0e, - 0x98,0x0e,0xf3,0xf0,0xb6,0x5c,0xdb,0x12,0xc7,0xe2,0x38,0x6a,0x9d,0x0d,0x1e,0x53,0xdf,0xca,0x50,0x6c, - 0x7d,0xfb,0x2c,0xf1,0x24,0x02,0x9d,0xe5,0x75,0x80,0x6a,0x1a,0x42,0xc6,0xb7,0x0b,0x12,0xa3,0x3e,0xbe, - 0x58,0xc9,0xf1,0x38,0x71,0xbb,0x03,0xbd,0x31,0xf8,0x81,0x1e,0x6d,0x09,0x8f,0x91,0xde,0xd3,0x82,0x52, - 0xf5,0xa2,0xda,0x34,0x6f,0x6a,0x42,0xb4,0x56,0x48,0xe7,0x79,0x92,0x55,0x3f,0xd5,0x4e,0xc7,0x1e,0x9f, - 0x72,0x4f,0x1a,0x90,0xe9,0x89,0xfb,0xb6,0x14,0x30,0x86,0xe4,0xd7,0x6d,0x9a,0x57,0xcf,0x4c,0xb8,0x59, - 0x97,0x16,0x16,0xb5,0x94,0x25,0xbb,0x06,0x28,0x9a,0xec,0x6d,0x74,0xd3,0x82,0x0d,0xe3,0x81,0x13,0x89, - 0xee,0x0f,0xdc,0xcd,0x8e,0xfe,0xe8,0x06,0xbb,0x35,0x04,0xd2,0x1d,0xca,0x97,0xe6,0xca,0x18,0x39,0x01, - 0x2b,0x65,0x1c,0x7b,0xdf,0x90,0x5b,0xdc,0x32,0x5c,0x77,0x12,0x0d,0x9c,0x21,0x5d,0xa3,0x88,0x15,0x03, - 0x4b,0xab,0xbb,0xb1,0x59,0xb0,0xab,0xf6,0x6a,0x70,0x64,0x83,0xb6,0xe6,0x34,0xad,0x79,0x49,0xc6,0xf6, - 0xf1,0xe0,0xc0,0x4e,0x85,0x3f,0x0b,0xa2,0x0b,0xb6,0xf5,0xd6,0xd1,0xee,0x45,0x66,0x66,0x9d,0x2f,0x93, - 0x05,0x61,0xc2,0xac,0x5f,0x07,0x40,0x1f,0x44,0x9b,0xf0,0xd4,0x10,0xd6,0x2b,0x6b,0xfb,0x8d,0xf8,0x42, - 0x1c,0xea,0xe7,0x16,0x76,0x88,0xc4,0xe7,0x06,0x60,0xe4,0xc4,0xeb,0xbf,0xcf,0x26,0x4d,0xcb,0x47,0x8d, - 0x5d,0x9e,0x69,0x3d,0x23,0x41,0x53,0xe3,0x23,0x2d,0x0c,0xd8,0x32,0x73,0x10,0x1e,0xda,0xb4,0x02,0x87, - 0x32,0x31,0xa2,0x2e,0xe1,0x05,0x4c,0x56,0x32,0x3e,0x8e,0x02,0xe7,0x70,0x52,0xd4,0x34,0xd7,0xd3,0x02, - 0x08,0x63,0xb5,0x67,0xde,0x61,0xb5,0x87,0xe0,0xfc,0xc6,0x37,0x6d,0xbd,0x4e,0x4f,0x0e,0x11,0xfd,0x8d, - 0xfe,0x42,0x99,0xa3,0x08,0x54,0x5b,0x36,0x39,0xa6,0x83,0x80,0x45,0xc5,0xb2,0x29,0xb0,0xc8,0xcc,0x0d, - 0x6d,0x4d,0x0d,0x0a,0xf4,0x12,0x66,0x0f,0x67,0x6c,0x77,0x51,0x27,0xda,0xda,0x42,0x36,0xe4,0x67,0x28, - 0xd6,0x10,0x5f,0x6c,0xa1,0xf0,0x40,0x95,0xc6,0x02,0x27,0x26,0xc6,0xb5,0x3d,0x8a,0x68,0x88,0x4a,0x26, - 0x4d,0x04,0xf3,0x6f,0x39,0x08,0x97,0xa4,0x2e,0xc3,0xc8,0x45,0x0f,0x84,0x56,0x45,0xd1,0xaf,0x6f,0x4b, - 0xf1,0xa8,0x14,0x1f,0x4a,0xf1,0xb1,0x4c,0x4e,0xb4,0xa7,0xe4,0x5b,0x79,0xf6,0xe4,0x6a,0xa9,0xac,0x6d, - 0x47,0xe2,0x59,0x99,0xdc,0xfc,0x64,0x44,0xd8,0xb1,0x8e,0x6c,0xe2,0x47,0x8a,0x36,0x7b,0x8c,0xf5,0x75, - 0x2a,0xb8,0x45,0x96,0x4f,0xe6,0xab,0xa9,0x8c,0x3f,0x96,0x42,0x5e,0xd9,0xc7,0x45,0x7a,0x15,0x9b,0x36, - 0xd4,0xdd,0x36,0xa3,0x8d,0xd0,0x84,0x7b,0xdc,0xc6,0x42,0x93,0x94,0xf6,0xd1,0xad,0x44,0x06,0x73,0x96, - 0xf0,0xdd,0x10,0x16,0xd6,0x1b,0x8e,0x2d,0x46,0xcf,0xca,0xdc,0x92,0xad,0x2e,0x7a,0x6a,0x24,0x99,0x78, - 0x13,0xb5,0xab,0x8a,0xc0,0x90,0x77,0xae,0xeb,0xba,0x0f,0xb3,0xcf,0xf5,0xc6,0x72,0x32,0x24,0x0b,0xc7, - 0x2f,0xb4,0x04,0x8d,0x2a,0x30,0x23,0xfd,0x6b,0x5f,0xee,0xba,0x2f,0x37,0x62,0x3b,0xce,0x80,0x8f,0xf2, - 0x18,0xdc,0xfa,0x3a,0xc0,0x17,0x6d,0x84,0xdf,0x94,0xa1,0xb0,0xa2,0xa7,0xdb,0x12,0x67,0x3f,0xcc,0xe6, - 0x13,0x84,0x57,0x17,0x9a,0x72,0xd2,0x03,0x23,0x92,0x41,0xab,0xef,0xf9,0x95,0xef,0xa1,0x24,0xa8,0xde, - 0x25,0xb6,0x13,0x5d,0xca,0x20,0x5f,0x22,0x92,0x67,0x7f,0x9f,0x10,0x22,0xbd,0x17,0x5e,0xd4,0x7c,0xa9, - 0xa5,0x2a,0xde,0x14,0x6a,0x33,0x10,0x4c,0xa1,0x98,0x18,0x71,0x06,0xdf,0x55,0x9c,0xab,0xc8,0xe9,0x93, - 0x6c,0xda,0x0b,0x55,0xe4,0x8a,0x20,0x8e,0x11,0xa0,0x8d,0x63,0xb1,0x04,0x50,0x33,0x20,0xb2,0x52,0x7a, - 0x32,0x19,0x0d,0x3b,0xb5,0x4d,0xc8,0xe9,0x50,0x38,0xcd,0xd5,0xcd,0x54,0xda,0x36,0x67,0x82,0x18,0xc9, - 0x28,0x49,0x74,0xae,0x4d,0x52,0xcb,0x4a,0xd0,0x46,0x84,0x88,0x21,0xa7,0x5c,0x18,0x40,0x9d,0x47,0x5b, - 0x99,0xa0,0x21,0x15,0xb8,0xb3,0x54,0x34,0xe8,0x8d,0xc8,0x88,0x5c,0x9c,0xe6,0x06,0x52,0x1f,0x33,0x09, - 0x74,0xc4,0x10,0xf2,0xa6,0xaf,0x88,0x41,0x19,0xbc,0x05,0x0a,0x14,0xe1,0x07,0x98,0x08,0x46,0xb7,0x70, - 0x81,0xef,0xf3,0xdb,0x98,0x3f,0xda,0x7c,0x81,0x52,0xd7,0x07,0xb4,0x05,0x23,0xf1,0x96,0x0e,0xd9,0x3a, - 0x9b,0x27,0x37,0x70,0xf0,0x8c,0x7f,0xa2,0x7d,0x7e,0x55,0x13,0x64,0xc4,0x17,0x62,0x01,0x93,0x6c,0xbd, - 0xc4,0xf1,0x53,0xa1,0xea,0x79,0xab,0xd4,0x37,0x32,0x7e,0xb8,0xc1,0xa7,0x8a,0xf1,0x7b,0x0b,0xb3,0x41, - 0xcd,0xee,0xd1,0xb3,0xc5,0xc1,0xcf,0xf0,0xd6,0xad,0x36,0x51,0xdb,0xea,0x16,0xc3,0x6b,0xf7,0x95,0x31, - 0xc0,0xee,0x72,0xbf,0x8a,0xbc,0xda,0xfb,0xe3,0xd3,0xb4,0x92,0x09,0x0d,0xee,0x22,0xf4,0x52,0xed,0x52, - 0x56,0x84,0x52,0xd4,0x58,0x2b,0x79,0x0b,0x75,0x0c,0xf1,0x3a,0xad,0x37,0xae,0xf3,0x78,0x33,0x5f,0x9d, - 0x65,0x2a,0xae,0x6a,0x67,0x06,0xdf,0x68,0xc7,0xc8,0xde,0x78,0x44,0xd6,0xb8,0x1b,0xa2,0xc1,0x17,0x28, - 0xb2,0xb3,0x49,0x3e,0x3b,0x26,0x49,0x7b,0x4f,0x68,0xf9,0x44,0x87,0xcc,0x01,0xb1,0x47,0xb8,0xd1,0xa1, - 0x7d,0x32,0x8e,0x1a,0x30,0x7a,0xef,0xfa,0x02,0x7a,0x2c,0xef,0x42,0x30,0xe6,0xd9,0x7c,0x63,0x32,0x5e, - 0xb0,0x45,0x76,0x95,0x75,0x7b,0x4b,0x63,0xa4,0x4e,0xff,0xe2,0xbf,0x0a,0x5b,0x41,0x53,0x4e,0x4b,0xfb, - 0x2c,0x39,0xd4,0x02,0xda,0xa3,0x41,0xdd,0x57,0x90,0xd3,0x74,0xbe,0x48,0x58,0x67,0xe3,0x11,0xe1,0x7c, - 0x80,0xd2,0x97,0xea,0x5e,0x5b,0xec,0x57,0x75,0x6d,0x20,0x9e,0x58,0xa4,0x07,0xe4,0x00,0x7d,0xa1,0xb1, - 0x40,0x37,0xce,0x2a,0x88,0xff,0xa1,0x6e,0x3b,0xb4,0x31,0x54,0x54,0xb8,0xec,0x66,0x04,0x6c,0xb3,0x62, - 0x59,0xcd,0x2e,0x11,0x3a,0x62,0x40,0xea,0x8e,0xfb,0x36,0x2c,0x79,0xb4,0x44,0xe4,0xab,0x9b,0x92,0x14, - 0x81,0xa7,0x69,0x88,0xb8,0x71,0x3d,0xf5,0xa6,0x26,0xf7,0xe7,0x85,0x4e,0xdb,0xd5,0x12,0x2a,0x1a,0x57, - 0x64,0x5b,0x3e,0xed,0x84,0xa7,0x5f,0x15,0xcf,0x42,0x76,0xe8,0x4b,0x5b,0xc6,0x56,0xda,0xb2,0xc1,0x55, - 0x22,0x69,0x03,0xac,0xdb,0x52,0xc3,0xed,0x36,0x4c,0xa9,0x76,0x33,0xf3,0x66,0x33,0x39,0x3b,0x7a,0x98, - 0x26,0xf4,0x1a,0xe6,0xfa,0x81,0x52,0x14,0xc4,0xe4,0xea,0x97,0xde,0xb1,0x83,0x72,0xfc,0xbd,0xd5,0x6d, - 0x82,0x39,0x5f,0x0e,0x26,0x2b,0xd4,0x05,0x29,0xdb,0xdb,0x91,0xfd,0x10,0xec,0xec,0x19,0x77,0x38,0x37, - 0xb3,0xa6,0x23,0x26,0xa7,0xe6,0x7b,0x57,0x52,0xda,0x82,0xd6,0xff,0x0e,0x77,0xde,0xa6,0x4e,0xe1,0x9a, - 0xb1,0x87,0x93,0x48,0x37,0x1b,0x42,0x00,0x11,0x11,0x18,0x40,0x06,0xb7,0xf4,0xf0,0x11,0x7b,0x7e,0xf8, - 0xda,0x19,0xcf,0xb1,0x24,0xf4,0xc2,0x02,0x28,0x67,0xb1,0x22,0xcc,0x55,0xf0,0xf8,0x9c,0xa3,0xef,0x6b, - 0x28,0xb4,0xe6,0xac,0x0d,0x14,0xa4,0xfb,0x8d,0x8b,0x78,0xfc,0x98,0x02,0xaa,0xa2,0x2e,0xd9,0x22,0x87, - 0x5b,0xb9,0x41,0xe4,0xca,0x38,0x17,0x3a,0x90,0x79,0xbe,0x31,0xfe,0x3e,0x0d,0x2c,0x08,0x93,0xc2,0x9c, - 0x63,0xec,0x75,0xe6,0xc1,0x96,0xbc,0x1b,0xe7,0x7f,0x6e,0x0a,0xf1,0xb2,0xea,0x9d,0xf2,0x32,0x56,0x2e, - 0xd1,0xbf,0xe4,0x7f,0xf5,0xc3,0xaa,0x2a,0xb5,0x53,0xe4,0xb6,0x37,0xb5,0x8f,0x46,0x9a,0xdc,0xa4,0xa2, - 0xe5,0xdd,0xb7,0xe8,0x27,0x55,0x0c,0x8f,0xb7,0x0c,0x56,0xd7,0xf7,0xfa,0xdf,0xf6,0x8f,0xee,0xab,0x00, - 0x2d,0x7f,0x94,0xe2,0x97,0x52,0xfc,0x5e,0x8a,0x1f,0x4b,0xf1,0x53,0x29,0x7e,0x2d,0xc5,0x0f,0xa5,0xf8, - 0x77,0x29,0x7e,0x2b,0x39,0x90,0x06,0xdf,0xa7,0xac,0xef,0x52,0x15,0x3f,0x73,0x1a,0xdf,0x19,0x23,0x50, - 0x2f,0x51,0x99,0xa9,0x50,0xb3,0x22,0xd4,0xbd,0x39,0x20,0x0d,0xcf,0x60,0x30,0x08,0x92,0x35,0xbb,0xc5, - 0x97,0xc8,0xdd,0x1b,0x4e,0x6b,0xf1,0x73,0xc9,0xb2,0xb4,0x40,0xc5,0x28,0x86,0xcb,0x05,0x6e,0x57,0x35, - 0xb7,0xf0,0xe8,0x42,0x81,0x6a,0x84,0x17,0x95,0x72,0x89,0x26,0x99,0x7c,0x71,0x99,0xea,0x12,0x1b,0x9d, - 0x67,0x23,0xa1,0x23,0x07,0x02,0xe6,0x82,0x73,0x88,0x70,0xcb,0xd0,0xf9,0x89,0xba,0x44,0x5d,0x4e,0xb3, - 0x1a,0xa6,0x73,0x62,0x5a,0xa6,0x67,0x67,0xfc,0x54,0x2d,0xe5,0x7c,0xce,0x35,0x53,0xdf,0x73,0x2e,0x4c, - 0x47,0x40,0x71,0x39,0x23,0xd4,0x5e,0x11,0xea,0x22,0x7e,0x92,0x9d,0x31,0x45,0xba,0xaa,0x8b,0x59,0x31, - 0x59,0x55,0xfc,0xb4,0x9c,0xa7,0xd7,0x42,0x77,0x88,0x43,0x8e,0xd0,0x69,0x0d,0xeb,0x3c,0x22,0x57,0xe7, - 0x15,0x1d,0xe1,0x34,0x77,0xa5,0x14,0x86,0xac,0xd3,0xbf,0xa6,0xbc,0x7e,0xe5,0x3e,0x9b,0x17,0x33,0x74, - 0xbc,0x13,0xcb,0x33,0xcd,0x2a,0x74,0x6f,0x2a,0x64,0xae,0x7e,0x11,0xbb,0x20,0x2f,0x68,0x0a,0x33,0x40, - 0xae,0x38,0xcf,0xa6,0x53,0xea,0x1a,0x8e,0xc5,0x5a,0x96,0x8b,0x2c,0x47,0x22,0x41,0x54,0x59,0x8b,0xac, - 0x5a,0xa4,0x4b,0x91,0xd5,0x72,0xa1,0x62,0x9c,0xcc,0x8b,0x62,0x29,0xcc,0xf5,0x4d,0x42,0x35,0x9a,0x17, - 0x08,0xd2,0x22,0x10,0x58,0xa2,0xca,0xfe,0xa0,0x45,0x2a,0xaa,0xf3,0x14,0xbc,0xa6,0x6b,0x21,0x2f,0x10, - 0x37,0x8a,0xd6,0x99,0x9a,0x59,0xa6,0x84,0x86,0x68,0xa7,0x5e,0x65,0x35,0x91,0xb3,0xe9,0xb4,0xc8,0xe7, - 0x88,0xa7,0xf2,0xfb,0x8a,0xf6,0xdd,0x54,0x68,0xa7,0xca,0xa9,0x50,0xfc,0x10,0xc1,0x44,0xba,0x98,0x13, - 0x30,0x08,0x3b,0x26,0x78,0x5f,0xf2,0x6c,0xdb,0x0b,0x53,0x38,0x1c,0x28,0xcd,0x3d,0x65,0x02,0xe6,0x11, - 0x52,0x82,0xa3,0xbf,0x8b,0x8b,0xac,0xca,0xa8,0x24,0x02,0xbc,0x67,0x49,0x70,0x5e,0xd7,0xcb,0xf8,0xee, - 0xdd,0xcb,0xcb,0xcb,0xfe,0xe5,0xfd,0x7e,0x51,0x9e,0xdd,0x3d,0xfa,0xee,0xbb,0xef,0xee,0x5e,0xcd,0xb3, - 0xfc,0x4b,0x20,0xb2,0xac,0xe3,0x80,0x0d,0xe2,0x86,0xf3,0xc9,0xb7,0x80,0x32,0x55,0x9e,0x93,0x4d,0x70, - 0x9e,0x6f,0xe1,0x69,0xd7,0xf5,0xfd,0x4e,0x06,0x4b,0x5c,0xeb,0x57,0xf2,0x4f,0x61,0xe4,0x99,0x1c,0xad, - 0x45,0xa4,0x9d,0xdf,0x28,0xe2,0x98,0x00,0x71,0xf7,0x48,0x81,0x5d,0x95,0x25,0x37,0xd5,0x05,0x11,0xc3, - 0xdb,0x23,0xb8,0x77,0x78,0x78,0x78,0x97,0xf2,0x02,0xe2,0x99,0xea,0xf3,0xae,0x12,0x34,0xc6,0x7f,0xdd, - 0xc5,0xdd,0xa3,0xfc,0xe7,0xe5,0x0b,0x6a,0x76,0xc2,0x90,0x79,0x5e,0x2f,0xe6,0xe2,0xb4,0x98,0x5e,0x0b, - 0xa0,0x40,0x71,0x4e,0x4b,0x21,0x30,0x34,0x81,0x98,0xe3,0x42,0xed,0xda,0x3a,0xab,0xe9,0x6f,0x3a,0x9d, - 0x62,0x3f,0x8a,0xb4,0xac,0xb3,0x09,0xde,0x2b,0xda,0x13,0x04,0x44,0x05,0x6e,0xc7,0xc4,0x77,0xf8,0x39, - 0x12,0xe7,0xf7,0xc4,0xf9,0x7d,0x71,0xfe,0x8d,0x38,0xff,0x56,0x9c,0xff,0x53,0x9c,0x9f,0x95,0xc5,0x6a, - 0x29,0xf2,0xf4,0x82,0xd6,0x8e,0xc7,0x48,0x80,0x78,0x21,0xa6,0x04,0x95,0x73,0x31,0xad,0x05,0x11,0xb3, - 0xf0,0xad,0x41,0x3a,0x9b,0xa1,0x4a,0xb1,0xcc,0x26,0x70,0xb5,0x11,0xe7,0xc4,0xa5,0x2f,0xce,0xa8,0x33, - 0x34,0x28,0x3a,0xbd,0x8a,0xb9,0x58,0xc2,0xa8,0x51,0xac,0xe6,0x22,0x15,0xa7,0xc4,0x46,0x9e,0x96,0xe2, - 0x74,0x9a,0xd1,0xff,0x42,0xd0,0xe3,0x84,0xc0,0x93,0xe3,0x0f,0x09,0xbe,0x24,0x7e,0x3a,0xa3,0xc3,0x71, - 0x21,0x32,0xf1,0xe5,0x74,0x4a,0x15,0x94,0x5f,0xc4,0xef,0xa2,0x5c,0x0a,0x02,0xe6,0xb2,0x9e,0x88,0x72, - 0x75,0x7a,0x4d,0x54,0x7c,0x95,0x2e,0x96,0x82,0x60,0x9b,0x48,0xae,0x6a,0x99,0x12,0xea,0xa1,0xbd,0x46, - 0xcc,0x66,0xb5,0x3a,0xa5,0xff,0x4b,0xbe,0x2f,0x56,0xac,0x04,0x21,0x37,0x71,0x79,0x0a,0xe1,0x39,0x21, - 0xa9,0x74,0x35,0xcd,0x0a,0x81,0xed,0x00,0x26,0xf6,0x8b,0x60,0xc4,0x40,0x2d,0x9d,0x12,0xd8,0x29,0x3f, - 0x30,0x18,0xa1,0xa6,0x0b,0x02,0xd0,0x55,0x49,0xfc,0xc7,0x24,0xcd,0x2f,0x52,0x6a,0x69,0x52,0x66,0xcb, - 0x1a,0x9b,0x42,0x3d,0x10,0xcd,0x0d,0x23,0x37,0x61,0xc6,0x3e,0xa1,0xe1,0xd1,0x7f,0x35,0x59,0x1a,0xb0, - 0x79,0x2d,0x6a,0x5e,0x9b,0x9a,0x1e,0xce,0xa9,0x45,0xa1,0x90,0x1b,0x0f,0x11,0xe6,0x03,0x34,0x67,0x72, - 0x3e,0x25,0x4a,0x9e,0x37,0xb3,0x50,0x08,0x75,0x9e,0x9e,0x52,0xed,0x73,0x79,0x06,0x22,0x60,0x81,0xcd, - 0x0c,0xd4,0xaa,0xaa,0xd6,0x38,0xb6,0x58,0xd5,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15,0x13,0x0a,0x48, - 0x33,0x60,0x9d,0x2c,0x9d,0x17,0x67,0x54,0x49,0xbe,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b,0x9a,0xd0,0x6b, - 0xa1,0x31,0xa0,0x90,0x4a,0xe6,0x20,0xb0,0xdf,0x8b,0x4b,0x61,0x82,0x66,0x09,0x0e,0x4b,0xf6,0xfb,0xaa, - 0x00,0x1a,0x99,0x95,0x20,0xf7,0x6a,0x40,0x0b,0x6e,0x0c,0x66,0xd0,0x23,0x80,0x15,0x69,0x9e,0x2d,0x50, - 0x76,0x92,0x95,0x13,0x3e,0x1f,0xb2,0xe5,0x92,0x00,0x54,0x4c,0x56,0x25,0xed,0x70,0x60,0x2e,0xa0,0xbe, - 0x6a,0x42,0x8d,0x50,0x16,0x01,0xa8,0x8a,0xef,0x43,0xc3,0xcd,0xeb,0x83,0x59,0x3a,0x01,0x00,0x96,0x32, - 0x3b,0xcb,0xd5,0x21,0x28,0xce,0xc4,0xd9,0xfc,0x7a,0x79,0x4e,0x90,0x93,0x9e,0x49,0x00,0xb2,0xe4,0xc5, - 0x97,0x90,0x26,0x54,0x04,0xd4,0x59,0x85,0xdb,0xcb,0x0e,0x54,0x21,0x6e,0x89,0xfe,0x50,0x85,0x84,0x90, - 0x8a,0xf9,0xf5,0x59,0xa1,0x7e,0xff,0xbf,0xf6,0xde,0x7d,0xbf,0x6d,0x23,0xc9,0x1f,0x7d,0x15,0x0a,0xa3, - 0x23,0x03,0x61,0x8b,0x92,0x6c,0x67,0x66,0x02,0x1a,0xe6,0xfa,0x9a,0x38,0xb1,0xe3,0x6c,0xec,0x5c,0x26, - 0x14,0xa3,0x85,0x48,0x90,0x82,0x4d,0x01,0x1c,0x10,0xa4,0xac,0x88,0x7c,0xa0,0xdf,0x6b,0x9c,0x27,0x3b, - 0xf5,0xad,0xea,0x6e,0x34,0x40,0xc8,0x76,0xb2,0x7b,0xf6,0xfc,0x73,0x3e,0xfe,0x58,0x04,0x1a,0x7d,0xef, - 0xea,0xea,0xaa,0xea,0xba,0x70,0x39,0x9c,0xff,0x4a,0x8c,0xa8,0xd5,0x92,0x9d,0x6c,0xf0,0xfc,0xf0,0x1f, - 0x2e,0x59,0x32,0xcc,0x80,0x9a,0x5a,0xa7,0xc9,0x95,0xf8,0x86,0x9a,0xb7,0xee,0xe5,0xb1,0x68,0xe2,0xaf, - 0x38,0x2e,0x37,0x0d,0xa1,0x95,0xa1,0x5a,0xf0,0xa4,0x70,0x13,0x12,0x3b,0x90,0x4d,0xcd,0xae,0xf2,0x82, - 0xd1,0x5f,0x41,0xbd,0x48,0x68,0x23,0xa0,0x13,0x73,0xb5,0x2a,0xe0,0x14,0x7b,0x92,0x36,0x9d,0x5a,0xd5, - 0x84,0x40,0xad,0x9a,0xbf,0xb7,0x38,0xde,0xb2,0x01,0x8a,0xf5,0x81,0xc9,0x8e,0xc6,0x07,0x59,0xe8,0x27, - 0x5a,0x89,0x36,0x71,0x94,0x68,0x0f,0x0e,0x9c,0xf8,0x48,0x55,0xb2,0x0d,0xe8,0x07,0x4d,0x98,0x7a,0x80, - 0x75,0xf3,0x05,0xbe,0x96,0xcc,0x63,0xc0,0xc1,0x02,0x6b,0xdd,0xf8,0xfe,0x4d,0xa3,0xcf,0x7a,0xfe,0xda, - 0x3b,0xfd,0xfd,0x1b,0x7f,0x09,0xd5,0x14,0x36,0x14,0x96,0x2f,0x6f,0x69,0xf6,0x10,0x0b,0x32,0x6c,0x59, - 0x84,0x46,0x25,0x26,0x2b,0x2f,0x89,0x24,0x69,0x8f,0x01,0x9f,0x51,0x58,0xe7,0xe4,0xb2,0xa2,0xab,0xfa, - 0x98,0xa5,0xd3,0x3b,0xd6,0xe3,0xcc,0x01,0xda,0xcf,0xbe,0x04,0x48,0x14,0x4d,0x7d,0x56,0x60,0x6a,0x8c, - 0xd7,0x04,0x21,0xe7,0x6f,0x08,0xf9,0xa1,0x10,0x33,0x38,0x9b,0xb4,0xe7,0x75,0xbe,0x71,0xde,0x2a,0x16, - 0x66,0xdb,0x10,0x4a,0x27,0x56,0xe6,0x56,0x81,0xd1,0x7f,0x43,0xc7,0x22,0xed,0x86,0xf6,0xcc,0x4e,0x86, - 0x2d,0xa2,0x87,0xb1,0xab,0xa6,0xd6,0x9c,0xfa,0xe3,0x16,0x46,0x03,0x98,0xd5,0x27,0x82,0x17,0x76,0xba, - 0x5b,0x56,0xdf,0x22,0xc9,0x6d,0x21,0xa4,0x65,0xde,0x6a,0x00,0xc4,0xf3,0x06,0x8f,0x6d,0x74,0x06,0xca, - 0x0a,0x34,0x6a,0x7f,0x5c,0xf2,0x0c,0x68,0x22,0xbc,0xd9,0x32,0xc3,0x28,0x51,0x27,0x15,0xc0,0x8a,0x23, - 0xe1,0xc7,0x90,0xa9,0x61,0xdb,0x72,0xf1,0x5b,0x34,0x78,0x4d,0xa6,0xed,0x96,0xf6,0xb9,0x76,0x38,0xe1, - 0x7b,0x44,0x45,0x6f,0x15,0x62,0xb5,0x5c,0xa6,0xf0,0x46,0x66,0x3c,0x8c,0x19,0x05,0x59,0xeb,0x3b,0x8c, - 0x3d,0x44,0x60,0x49,0x2b,0x9f,0x61,0xde,0x48,0xcd,0xaa,0x71,0x7c,0x53,0x9a,0x5e,0x7f,0x53,0xb6,0xb6, - 0xff,0x0d,0xda,0x5f,0xa7,0x68,0xff,0xba,0x1d,0x73,0x9c,0x51,0x17,0x2e,0x52,0xaa,0x74,0xa4,0xce,0xab, - 0x8a,0xff,0x6d,0x2b,0xfe,0x37,0x51,0x0f,0x57,0xd5,0x87,0xef,0xec,0x87,0xef,0xe8,0xc3,0x7e,0x1a,0x1d, - 0x0d,0x4f,0xaf,0x82,0x5e,0xf7,0xf4,0xf0,0x6c,0xff,0x74,0x34,0x3a,0x52,0x1f,0x52,0x78,0xd7,0x22,0x1e, - 0xe3,0x3d,0x3f,0x8c,0x3d,0xf5,0xa4,0x2a,0x4d,0xe4,0x9f,0x2e,0xbd,0xa0,0x45,0x7c,0x53,0x7d,0x98,0xd8, - 0x0f,0x80,0xaf,0x47,0x69,0xab,0x1d,0x2f,0x47,0x95,0x3b,0x0a,0xfd,0x5e,0x37,0x38,0xb2,0x77,0xb6,0xda, - 0xcc,0xf2,0xa8,0xef,0x0f,0xf6,0x86,0xbf,0xfb,0xa3,0x2f,0x4e,0x83,0xe0,0x68,0xd6,0xae,0x91,0x06,0x03, - 0x82,0xca,0x71,0xab,0x14,0x84,0xf6,0x80,0xbd,0x07,0x85,0xc8,0x7d,0x88,0x98,0xa8,0x3a,0x3c,0xcf,0x28, - 0x2a,0xaa,0x50,0x3e,0x0c,0x44,0x09,0xfd,0x7f,0x4b,0xa3,0xfe,0xfd,0xf0,0xf0,0x48,0xbd,0xa6,0x87,0xd3, - 0xe5,0x17,0x7b,0xe9,0x25,0x2c,0xa7,0xe3,0xac,0xdc,0x3f,0x52,0xef,0x76,0xf9,0x0d,0x6a,0xf6,0xad,0x0e, - 0x09,0x4f,0x80,0x52,0x4a,0x2c,0x3f,0xc0,0xa8,0xe5,0xb7,0x12,0xd7,0x64,0xe3,0xb5,0xce,0x9b,0xdd,0x9a, - 0xd7,0xfa,0xcd,0x7b,0x9d,0x72,0xec,0x21,0xcf,0x76,0xc0,0x0d,0x0c,0x57,0x44,0x2f,0x53,0x5f,0x1c,0xd2, - 0xd7,0xef,0xc8,0xb3,0x9a,0x92,0x4d,0xeb,0xbd,0xae,0xb4,0x0b,0xd6,0x1a,0xd7,0xbb,0xd2,0x35,0x37,0x91, - 0xe0,0xe9,0x19,0x60,0x57,0x42,0x10,0x12,0x78,0xbe,0xca,0xff,0x00,0x7e,0x26,0x8e,0x54,0xbd,0x6c,0xae, - 0x1e,0x75,0xe0,0xb7,0x22,0xfa,0xad,0xf8,0x84,0xe7,0x46,0xa9,0xde,0x7a,0xe1,0xdb,0x63,0xcb,0x6b,0x44, - 0x84,0x80,0x12,0x22,0x4b,0xd7,0x7f,0x2b,0xac,0xa8,0xcd,0xbd,0x27,0xfb,0x0c,0xaf,0x84,0xda,0xd7,0xc5, - 0xb3,0xb4,0xc5,0xa1,0xe6,0xb3,0x74,0x98,0x8d,0xba,0x2c,0x9d,0x2e,0xea,0xad,0x14,0x58,0xf1,0x17,0x15, - 0x94,0x5e,0x5a,0x28,0x05,0xc6,0x7a,0xde,0x1c,0xa7,0xb6,0x05,0x4f,0x6c,0xf8,0xf9,0x90,0x78,0xf4,0x43, - 0x7e,0xf5,0x54,0xe2,0x44,0xa1,0xaf,0xd2,0x0f,0xcb,0x5c,0x7f,0x72,0x62,0x2b,0x3b,0x9f,0x45,0xe8,0xea, - 0xa9,0x2a,0x3c,0x33,0x7f,0xe4,0x57,0x9d,0xea,0xd6,0xc9,0x09,0x5c,0x67,0x33,0x5e,0xb3,0xf3,0x59,0xd7, - 0x89,0xb1,0x3d,0x4d,0xd9,0x97,0x18,0x22,0x2d,0x7f,0x9f,0xea,0xf8,0x91,0xec,0x33,0xd6,0x53,0x3f,0xd0, - 0xbb,0x10,0x58,0xfc,0xfa,0xaa,0xf1,0xf9,0xc7,0xda,0x3b,0x9d,0x24,0x9e,0x7a,0x5c,0x2f,0xf1,0x93,0xfb, - 0x8a,0x0c,0xfd,0xa7,0x10,0xfe,0x5b,0x3f,0x0d,0xda,0x81,0x19,0x78,0x54,0xa7,0x1a,0x87,0x3c,0xb0,0x19, - 0xae,0x18,0xc8,0x1a,0xd9,0x7c,0xf4,0xc8,0x89,0x80,0xe9,0xf4,0xeb,0xaa,0x91,0xfa,0x2c,0xc3,0xe5,0xe4, - 0x6e,0xc3,0x6e,0xef,0x6e,0x6f,0xb7,0x9e,0xcb,0x7f,0x6c,0x9b,0x7d,0x54,0x1f,0xeb,0x55,0x3d,0x91,0x1b, - 0x15,0x2d,0x84,0x9f,0x31,0xcb,0x03,0x5d,0x2d,0xd8,0x54,0xda,0xdd,0x36,0xdf,0x73,0x10,0xb7,0x1f,0xfd, - 0xd8,0x83,0x90,0xc8,0x97,0x1c,0x41,0x58,0xb9,0x43,0x68,0x3d,0x50,0x71,0x65,0xfe,0x0d,0xd0,0xd2,0xb9, - 0x6f,0x03,0x76,0x6c,0x88,0x47,0x09,0x7c,0xb5,0xd9,0x0f,0x8e,0xd4,0x1f,0x0e,0x7a,0xda,0x89,0xe9,0x20, - 0x54,0xde,0x13,0xe7,0xac,0x07,0x6d,0x97,0xb0,0x18,0xec,0x49,0x8d,0xba,0x80,0x9a,0xab,0x13,0x4a,0x81, - 0xa3,0xb9,0x89,0x23,0x72,0x89,0x9c,0x51,0xf7,0x45,0x15,0x2b,0xd7,0x40,0x8c,0x73,0x9a,0xdb,0x50,0x39, - 0x5f,0x59,0xa8,0x8e,0x48,0xcb,0xda,0xc0,0xa9,0x35,0xba,0x6e,0x00,0x2f,0x42,0xf6,0x9a,0x44,0x17,0x89, - 0xe2,0x1e,0xf4,0xb5,0xe8,0x9b,0xbc,0x40,0x00,0x8c,0x8c,0x38,0x76,0x4f,0xb8,0x21,0xd5,0x5e,0x99,0xd9, - 0xe3,0x4b,0xf4,0x88,0xf0,0x83,0xbf,0x0a,0x6a,0x8a,0x8b,0x26,0xe8,0x85,0xa3,0xba,0x53,0xf6,0xe3,0x16, - 0x53,0x1c,0x89,0x1e,0xdd,0xf2,0xc5,0x5c,0x98,0x27,0x7e,0xae,0x8d,0x03,0xb9,0x97,0x79,0xe4,0x86,0x62, - 0xd5,0xea,0x4a,0x39,0xa1,0xa7,0xfc,0xc1,0x87,0x9e,0x21,0x01,0x0c,0x9a,0xea,0x76,0xf3,0xa0,0x4a,0x1d, - 0xe6,0x23,0x7f,0x9d,0xd2,0x24,0xf7,0xb5,0xa1,0x41,0x6c,0x14,0x83,0xc6,0x50,0x4e,0xc1,0xad,0x31,0xf5, - 0x79,0x6b,0xe7,0x58,0xed,0x49,0xa4,0x04,0x79,0x33,0x93,0x2b,0x53,0xae,0xa6,0x8e,0x5f,0x6d,0x0e,0x5a, - 0x49,0xa4,0x18,0xad,0xf5,0x45,0x30,0xf0,0xb9,0x26,0x88,0xdd,0x97,0x83,0x27,0x3b,0x64,0x33,0x92,0xd5, - 0x45,0x10,0x36,0xbe,0xf8,0x17,0x10,0x8b,0x4f,0x70,0xe9,0x30,0xa7,0x26,0xa7,0x98,0xd4,0x84,0x27,0x75, - 0x21,0x33,0x3c,0x86,0x8f,0x17,0xee,0x22,0x75,0x25,0xcc,0x7c,0xc7,0x1b,0xb4,0x6d,0xf2,0x49,0x93,0x44, - 0x16,0x4f,0xce,0x8d,0xb2,0x8d,0xcc,0x15,0x31,0xde,0x96,0xdb,0xf1,0x25,0xbc,0xe4,0x3b,0x94,0x9b,0xc4, - 0x18,0x4b,0xe9,0x90,0xef,0x02,0xa5,0x22,0xe9,0xc5,0xac,0x9a,0xcb,0x14,0xd5,0x9a,0xad,0x35,0xd5,0x68, - 0x34,0xe8,0x79,0xdb,0x05,0x05,0xe8,0x05,0x4d,0xd9,0x8b,0xd4,0x42,0xb4,0xe3,0x26,0xec,0xc6,0x89,0x89, - 0xc8,0x40,0x59,0xb3,0x11,0x67,0x4f,0x8d,0xb5,0x62,0x2b,0xba,0xcb,0xaa,0x00,0x1c,0xae,0xdd,0xd9,0x9a, - 0x22,0x5a,0x7e,0x52,0xe7,0x11,0xa4,0x0c,0xad,0x8d,0x4b,0xde,0x97,0x1c,0x4a,0xd5,0xd6,0x3c,0x77,0xe8, - 0x92,0x9d,0xa8,0x79,0x75,0xed,0x5b,0x07,0x0e,0xd3,0x20,0xf6,0x59,0xa5,0x38,0xd3,0x73,0xcb,0x97,0x4d, - 0x50,0x34,0x64,0xe2,0xa0,0x30,0xb3,0x8f,0x2e,0xd5,0x1a,0xe7,0xcc,0x3b,0x6b,0xa5,0x1d,0xd8,0x94,0xc6, - 0x55,0xb7,0xe3,0x47,0xda,0x78,0xc7,0xe8,0xb7,0x19,0xbe,0x05,0x65,0xeb,0xfc,0xca,0x56,0xab,0xc2,0xdd, - 0x4b,0x18,0x2b,0xc7,0x8d,0xb4,0x2c,0x7d,0xdd,0x82,0xed,0x83,0xee,0x54,0x35,0xc8,0x22,0x30,0x69,0x44, - 0xe5,0x60,0xab,0x31,0xfa,0xbb,0x32,0xe1,0x9c,0x35,0xa6,0xa1,0xb5,0xb8,0xd2,0xd9,0xe8,0xcd,0x3c,0x4a, - 0x76,0x85,0x6f,0xa9,0x81,0xa8,0xb6,0x85,0x9d,0x58,0x4c,0x2b,0x28,0x0c,0xea,0xde,0xd6,0x91,0x60,0x10, - 0x3c,0xa9,0x33,0x2f,0x7a,0xae,0x41,0xe6,0xc9,0x44,0x57,0x43,0xe0,0x00,0x42,0x28,0x5f,0x59,0x57,0x02, - 0xbf,0xb0,0x65,0x92,0xbd,0x9b,0x58,0xea,0x7a,0xb1,0x2c,0xb7,0x55,0xac,0xaa,0x60,0x43,0x40,0xf6,0xd1, - 0x19,0x42,0x74,0x66,0xec,0xca,0x5c,0x57,0x6c,0x5e,0xad,0x73,0xc4,0xbf,0xd6,0x50,0x35,0x09,0x17,0xae, - 0x67,0x47,0xbd,0xdc,0xc5,0x83,0x28,0xe5,0x35,0x88,0x7d,0x0e,0x8e,0x93,0xab,0x7a,0xdc,0xa2,0xb5,0x9d, - 0x38,0x8e,0xd6,0xe3,0x9e,0x1c,0xa9,0x00,0x2e,0xfa,0x94,0x56,0xe7,0x01,0x3a,0xa8,0x99,0x22,0x0c,0xa8, - 0x72,0x79,0xf6,0xc1,0x24,0x57,0x2b,0x9f,0x05,0x36,0x91,0xa8,0x41,0x1d,0x78,0x45,0x16,0xa7,0x0a,0xbc, - 0xae,0x23,0xfa,0xb0,0xe7,0xff,0xa6,0xed,0x23,0x3a,0xbe,0xf6,0x9d,0x70,0x10,0xc5,0xc8,0xe9,0xfb,0x65, - 0xfd,0x44,0xa9,0xc6,0xaa,0x8f,0x41,0x76,0x01,0x97,0x88,0xcf,0x2e,0xfa,0x61,0xe8,0x1d,0xf8,0x33,0xdc, - 0xcd,0xad,0x71,0x2e,0x86,0x08,0x70,0x04,0xa5,0x20,0x17,0x9f,0xcd,0x04,0xa8,0xa5,0xa3,0x30,0xde,0xd4, - 0x88,0x2d,0xb0,0xd1,0x89,0xa2,0x0f,0xfa,0xd4,0xb6,0xc1,0x64,0xfb,0x7a,0x9e,0x82,0x81,0x63,0x41,0xdb, - 0x8d,0xd2,0xb0,0xa9,0xda,0x5c,0x53,0x08,0x26,0xb2,0xe9,0xf0,0xd0,0x29,0x80,0xbb,0xb1,0xb2,0x8a,0x30, - 0x55,0x7d,0x88,0x68,0x51,0xb7,0xbe,0x39,0x89,0x68,0x33,0xb4,0xda,0xd9,0xf2,0xea,0x00,0xe8,0xb4,0x12, - 0x04,0xbf,0x9a,0x13,0x72,0x86,0x68,0x19,0x81,0x32,0x5b,0xb4,0xd6,0x7f,0xbd,0x45,0x25,0x0d,0x5b,0xb4, - 0x64,0xc6,0x89,0x5b,0x71,0x77,0x68,0xa2,0x03,0xef,0x22,0x5b,0x60,0x22,0x54,0x41,0xcf,0x9b,0xb7,0x50, - 0x2e,0x1d,0x74,0x96,0x07,0xea,0xcd,0x20,0x5f,0x96,0x12,0x90,0x8b,0x60,0x3d,0x35,0x71,0x36,0x53,0xc6, - 0xe9,0x05,0xfe,0xb2,0xbe,0x0b,0x22,0xb9,0xee,0xf8,0xbd,0x0c,0x68,0x1f,0xa6,0x35,0xcf,0x99,0xc6,0xbb, - 0xd5,0x24,0x18,0x9c,0xfb,0x85,0xcc,0x07,0x62,0x0b,0xa7,0xad,0x5e,0x33,0x8f,0x2d,0xf3,0x47,0x54,0x99, - 0xf5,0xec,0xc9,0x40,0x5b,0xb8,0xaf,0x29,0x3b,0x17,0x8d,0x24,0x52,0x18,0x0e,0x2c,0xce,0x2d,0xfe,0x3c, - 0x09,0x00,0xe4,0xf5,0x35,0x93,0x37,0x41,0xda,0xa2,0xe7,0x52,0xb4,0x99,0x12,0x1b,0x7e,0x71,0x85,0x08, - 0xc3,0xb2,0xa9,0x12,0x7f,0xce,0xb3,0xb8,0x8a,0xe6,0xd5,0x94,0xae,0xa2,0x95,0xf5,0x18,0x40,0x09,0x2b, - 0xcc,0x99,0x10,0xb8,0x0b,0x54,0x6c,0x48,0x89,0x89,0x63,0x3f,0x2a,0x9b,0x08,0x75,0x4d,0xb1,0x47,0x19, - 0xf6,0x57,0xb4,0xb0,0x2b,0x5a,0x58,0xe1,0xa4,0xaa,0x85,0x5d,0x05,0x26,0x6d,0xb8,0x1a,0x49,0xdd,0x2d, - 0x1d,0x90,0x1c,0xb6,0xf9,0x6d,0xe9,0xa7,0x72,0x84,0x0c,0x12,0x7f,0xc1,0xb9,0x68,0xc6,0x17,0x70,0x18, - 0xe0,0x50,0x73,0xc6,0x83,0xec,0xb2,0x3a,0x01,0x74,0x54,0x45,0x62,0x7f,0x17,0xf4,0x7f,0x12,0x55,0x0e, - 0x5a,0xd4,0x3a,0x82,0x04,0x40,0xcd,0xe8,0x67,0x32,0x52,0x67,0x56,0x63,0x9b,0x3e,0x9d,0x47,0x29,0x3e, - 0x5d,0xd1,0xcf,0xd9,0x48,0xed,0x47,0x7b,0xcb,0xfe,0xf4,0x01,0x9a,0x5a,0x3c,0x88,0xce,0xe8,0x6c,0xf2, - 0xd7,0xc1,0x00,0xc5,0xbb,0xdd,0xe9,0x28,0x84,0xbf,0xb2,0x01,0x6a,0x39,0x3c,0x9c,0x8c,0xc2,0x9f,0xe8, - 0xa3,0x3a,0xa7,0x4d,0x7d,0x8d,0x5f,0x10,0x67,0x26,0x23,0xd7,0xda,0xed,0x2e,0x46,0x01,0x32,0xcd,0xd4, - 0x15,0x67,0xa2,0x5f,0x64,0x32,0xe5,0xb9,0xcd,0xc3,0xc3,0x33,0xc9,0xb4,0xd6,0x99,0xd6,0x92,0x69,0x7f, - 0x87,0x0e,0xc8,0xd4,0x5a,0x9f,0xbb,0x8e,0x28,0xce,0x9f,0x09,0x0a,0xa9,0x5a,0xae,0x55,0x3a,0xd3,0xdd, - 0x9b,0x49,0xf7,0xda,0x2a,0xe5,0x0a,0xa4,0x6a,0xa7,0x6b,0x55,0xff,0xfd,0x52,0xdc,0x5d,0x8c,0xa3,0x9f, - 0x61,0xd9,0x3e,0x55,0x13,0x28,0x02,0xfa,0x20,0xe8,0xcf,0x39,0x2a,0xe9,0x60,0x3c,0xe4,0x87,0x51,0x8b, - 0x9b,0x0f,0x4b,0x6a,0x47,0x53,0xa2,0x85,0xd3,0x7e,0x6e,0x58,0x74,0xa0,0xc7,0x7c,0x64,0x78,0x84,0x83, - 0x83,0x9f,0x20,0xd4,0x8a,0x2d,0x05,0x9f,0x13,0x8d,0x7b,0x4e,0x55,0x1c,0xa3,0xb5,0x41,0x4c,0xcf,0xb9, - 0xd2,0xe3,0xe7,0x71,0xcd,0xa9,0x9f,0xab,0x91,0x1e,0xdc,0x5c,0x06,0x87,0x14,0xe3,0xcb,0xb6,0x6d,0xa0, - 0x73,0x67,0xa0,0x41,0x58,0xaf,0xb3,0x1a,0x6f,0x7f,0xfa,0x70,0x02,0xd5,0x79,0x1a,0x22,0x01,0x44,0xf7, - 0x64,0x14,0x48,0x40,0x46,0x79,0xd1,0x9b,0x7e,0xa1,0xce,0xb0,0xf1,0x17,0x0f,0xcf,0x0e,0x0e,0x2e,0xfd, - 0x63,0x25,0xd3,0xb2,0xf5,0xc7,0x1c,0xd1,0x13,0x40,0x19,0x32,0xd0,0x82,0xc2,0xab,0x48,0xa8,0xba,0x38, - 0x94,0x32,0xe3,0x9c,0xbe,0xa0,0x5f,0x26,0xbb,0x26,0x18,0x6c,0x05,0x96,0x20,0x8a,0x01,0xfe,0x03,0xd4, - 0xbf,0xa0,0x6f,0x8b,0x2a,0xf2,0x61,0xf8,0xc9,0x6a,0x43,0xf9,0xbe,0xc7,0xf1,0x6a,0xf8,0x6c,0x6f,0xc9, - 0xa7,0x77,0x99,0xba,0x1d,0x33,0xe4,0xcb,0xb2,0x8e,0x1a,0xb6,0xce,0x51,0x75,0x26,0x5c,0x08,0xa3,0x57, - 0x30,0x9e,0x28,0x65,0xc3,0x4b,0x07,0xe6,0xa9,0x8d,0xb2,0x2e,0xea,0x64,0x8f,0x30,0x4a,0x85,0xcb,0x1f, - 0x15,0x04,0x1c,0x15,0xf6,0xd7,0x2b,0xe9,0x17,0xec,0x49,0xd5,0x76,0xe0,0xbc,0xc1,0x78,0xaa,0x31,0xa2, - 0x34,0xc5,0x33,0x44,0x56,0x37,0xfc,0x50,0x51,0x8f,0x33,0x14,0xe5,0x9b,0xcd,0x8a,0x06,0x03,0xa4,0xa7, - 0x0a,0x21,0xed,0x95,0x20,0x64,0xc3,0xb7,0xc8,0xc1,0xe5,0xe2,0x7d,0x0b,0x95,0x6d,0xc7,0x04,0x34,0xab, - 0x09,0xd7,0x33,0x20,0xaf,0xf4,0x51,0x4f,0x53,0xd7,0xce,0xc0,0x16,0x62,0x2a,0x48,0x89,0x2d,0x58,0x3b, - 0x70,0xf8,0x57,0xcc,0xab,0xad,0x76,0x1c,0x68,0x82,0x60,0x1a,0x70,0x80,0x69,0xb8,0xf0,0x62,0x42,0x1c, - 0x54,0xf7,0xd2,0xe7,0x44,0x6e,0xd5,0x36,0x68,0xc2,0xc4,0x39,0x3d,0xd0,0xf1,0x50,0xa4,0xaa,0x98,0x29, - 0xbf,0x2a,0xd1,0x86,0xdf,0xe0,0x83,0xc3,0xac,0x0b,0x6b,0x8d,0x83,0x8b,0x9c,0xa6,0xc5,0xb2,0xe4,0x16, - 0x09,0xcd,0x1c,0xf7,0xd7,0x0f,0xa6,0x66,0xad,0xd6,0xc6,0xb5,0xdd,0xc5,0x66,0xb3,0x77,0x4e,0xfc,0xe2, - 0x74,0xb8,0x1e,0x69,0xce,0x14,0xa6,0xe8,0x9a,0x95,0xbd,0x88,0x2e,0x6a,0xf7,0x07,0x28,0x31,0xd9,0x6c, - 0x2e,0xea,0x0d,0x13,0x17,0x83,0x8d,0x94,0x06,0x66,0x36,0x65,0x5d,0x2f,0x5d,0x37,0x2b,0x33,0x48,0xf3, - 0x56,0x18,0xf1,0xde,0x1b,0xc2,0xc5,0xc1,0xcd,0x25,0x3a,0xb9,0x90,0xb3,0x45,0x1a,0xdb,0xbb,0xc4,0x02, - 0xb3,0x66,0x09,0x9c,0xc3,0xe9,0x47,0xe3,0x66,0x52,0x00,0x72,0x8f,0x03,0x7a,0xf1,0xc6,0xd0,0x04,0x96, - 0x7e,0x37,0xd7,0x5e,0x7b,0x12,0x26,0xe6,0x4a,0xed,0xab,0x0f,0x10,0x52,0xbf,0x47,0xec,0xf8,0x7c,0xb2, - 0x9a,0x27,0x4b,0xf5,0x84,0x9e,0x41,0xe3,0xbc,0xd6,0x6a,0x5f,0x57,0x34,0x27,0x57,0x0f,0x2e,0xd3,0x0a, - 0x80,0xaf,0x98,0xac,0xfc,0x30,0xbc,0x4c,0x87,0x57,0xa3,0x11,0x3b,0x81,0xe4,0x58,0xac,0xef,0xab,0x2c, - 0xfb,0x44,0x5e,0xbc,0x1f,0xee,0x8f,0x74,0x1e,0x5a,0x29,0x93,0x5d,0xf8,0x0b,0xf7,0x1b,0x1f,0xc8,0x6f, - 0x58,0x6f,0x04,0xf7,0x6a,0xa2,0x35,0xa3,0x83,0x87,0x3d,0x71,0x9e,0xdf,0xb0,0xb0,0x95,0x50,0x71,0x8b, - 0x7b,0x42,0x7d,0x5a,0x22,0x3c,0x9b,0xb6,0xaf,0xe0,0xd3,0x5b,0x3c,0xc4,0xc0,0x9f,0x2a,0x0c,0xb4,0x01, - 0x5d,0xb0,0xd7,0x9c,0x63,0x52,0x63,0x1f,0x88,0x0e,0xf9,0x1d,0x97,0xa3,0x11,0x36,0x07,0x06,0xff,0x96, - 0x3d,0x3e,0xf1,0x42,0x32,0xf6,0xc6,0x02,0x04,0x42,0x73,0x2d,0x94,0x0e,0x73,0x8e,0x76,0x26,0xdc,0x9a, - 0x44,0x50,0x33,0xe5,0xe0,0x82,0x87,0x60,0xb8,0xe2,0x27,0x9e,0xb0,0x52,0x96,0xa1,0xee,0x6a,0xe9,0xb0, - 0xe2,0x86,0x77,0x4f,0x3f,0xa7,0x2c,0xe7,0x52,0xbf,0xdd,0x28,0x67,0xdc,0x45,0x7c,0x2f,0xfa,0xaf,0xa3, - 0x42,0x15,0xe6,0x3a,0xe6,0x89,0xb9,0x84,0xf2,0x5f,0x37,0xe2,0xcf,0xc8,0x35,0x8d,0x96,0x1c,0xaa,0xd7, - 0x62,0xf7,0x76,0x21,0xc4,0x20,0x1d,0x7f,0x35,0x41,0xd9,0x05,0x0f,0x50,0xe6,0xe1,0xa2,0x77,0x26,0x02, - 0xdb,0x73,0x39,0x0f,0x66,0x8d,0x73,0xf8,0x02,0x6a,0xbf,0x44,0xb8,0x18,0xfc,0x67,0x00,0xf6,0x2a,0x32, - 0x69,0x04,0x03,0xa0,0x98,0xfa,0x57,0xfd,0xea,0x5c,0x7c,0x4f,0x60,0xf1,0xbe,0x8d,0x77,0x79,0xef,0xf0, - 0x2e,0xef,0x47,0xfe,0x15,0xf7,0xe4,0x4a,0x5c,0xde,0x73,0x57,0xf7,0xab,0x4a,0xde,0x50,0x25,0x6f,0x5a, - 0x38,0xdf,0x37,0x15,0xe7,0xfb,0x86,0x39,0xdf,0x2b,0x81,0xa4,0x47,0xd1,0xd5,0x0e,0x6e,0xe5,0x1b,0x85, - 0x1e,0xab,0x09,0x57,0xb6,0x0e,0x6f,0xa3,0x93,0xfe,0xdb,0x07,0x8f,0x88,0x45,0xb4,0xa6,0x2a,0x6f,0xe1, - 0x50,0x1a,0x09,0xc3,0xb7,0x23,0x43,0x7b,0x3f,0x2e,0xd1,0xbf,0x2b,0xaa,0x55,0x47,0xb7,0x4d,0x40,0x25, - 0xe1,0xdc,0x02,0xcb,0x77,0xac,0x8e,0xf5,0x81,0x45,0xfc,0x0f,0x9c,0x01,0x17,0x95,0x8d,0x98,0xac,0x1f, - 0x02,0xca,0x60,0x4c,0xbc,0x14,0xaf,0x41,0xfa,0xdb,0x7c,0xfe,0x8d,0xde,0x68,0xe1,0x24,0x55,0x7a,0xff, - 0x85,0xc3,0x73,0x1a,0x4a,0xaa,0x9e,0xa4,0xea,0x4d,0xaa,0x5e,0xa4,0xea,0x59,0x36,0x30,0xd2,0xfc,0x67, - 0x89,0x32,0x82,0x35,0x3c,0x0b,0x3c,0x35,0xae,0xff,0xf6,0x24,0xa2,0x97,0x98,0x57,0x5c,0xe4,0x57,0x83, - 0xb7,0x89,0xc4,0x35,0x83,0x6d,0xd2,0x36,0xbc,0xd9,0x8e,0x8c,0x4b,0xe5,0xb3,0x14,0xfe,0xcb,0xbf,0xcf, - 0x0e,0x0e,0xec,0x25,0xc7,0x6e,0x60,0x11,0xb9,0x1f,0xa7,0xda,0xc7,0x17,0x71,0x36,0x4b,0x3c,0xd7,0x1e, - 0x55,0xb4,0xf0,0xab,0xc2,0x2c,0xa5,0xd7,0xc2,0xb5,0x3e,0x2b,0xf9,0xae,0x75,0x1c,0xc4,0x57,0xe8,0x83, - 0xd6,0x37,0x33,0x4e,0xd3,0x7f,0x49,0xe1,0x3e,0x0d,0xab,0x93,0x4c,0x1a,0x17,0xa2,0x10,0x22,0x99,0x9b, - 0x79,0x1b,0xda,0x51,0x78,0x92,0x83,0x83,0x3d,0xfe,0x25,0x46,0x4c,0xeb,0x57,0x0e,0xbe,0xf5,0x11,0x3b, - 0xc5,0x1c,0xe6,0xb5,0x1e,0xfe,0xe2,0xb0,0x14,0x62,0xcf,0x35,0xd1,0xa2,0xa4,0x6d,0x10,0xbe,0x4c,0xe4, - 0xd9,0xf5,0xf4,0x64,0x6b,0x25,0x7c,0x81,0x90,0x6b,0xda,0x22,0xd7,0x6a,0x7b,0x3e,0x85,0x0f,0x24,0x51, - 0x5b,0x80,0xe6,0x88,0xed,0xdd,0x66,0xb3,0x48,0x7d,0x89,0x1a,0xc7,0x0e,0x28,0x50,0xd3,0x2b,0x13,0x28, - 0x36,0x4a,0xaa,0xa0,0xb1,0xca,0x79,0x66,0x6f,0x8e,0xac,0x53,0xbc,0x3b,0xef,0x66,0xba,0x7f,0x48,0x02, - 0xf5,0x2a,0xbb,0x2d,0x13,0xc6,0x26,0x52,0x59,0x42,0x91,0xf0,0xcf,0xff,0x3d,0x7c,0x74,0x7e,0x3c,0x27, - 0xdf,0x7c,0xfc,0x00,0x3d,0xfe,0xef,0xd9,0x0b,0xb8,0x5e,0x24,0xe0,0x21,0xdc,0x09,0x37,0xe7,0x6b,0xe7, - 0xae,0x9a,0x63,0xaf,0xd7,0xd7,0x26,0xb8,0xd9,0x99,0xcb,0xbe,0xb9,0xb3,0xb4,0x33,0x2a,0x6a,0xd4,0x9f, - 0x9e,0xdf,0x7e,0xda,0x8c,0xfe,0x57,0xa9,0x46,0xec,0x41,0xa9,0x9c,0x5d,0x57,0x6e,0x65,0x96,0x8d,0x7a, - 0xc5,0x20,0x11,0x7b,0xe9,0x5b,0x03,0x07,0x3e,0x47,0x07,0x01,0xf0,0xa1,0xce,0xc9,0x97,0xe3,0x44,0xe3, - 0xfc,0x8c,0x97,0x83,0x03,0xfa,0xae,0x3f,0x00,0xd3,0x1b,0x88,0xd5,0xab,0xc0,0xfe,0x19,0xff,0x4d,0xf0, - 0x2a,0xa1,0x3c,0x7f,0x49,0x15,0x76,0x56,0x28,0xba,0xb0,0xcd,0xf9,0xd1,0xce,0x02,0x4c,0x65,0xf0,0xc4, - 0xf0,0x23,0xc4,0x17,0x81,0x56,0x2d,0x11,0xb7,0x29,0x8e,0x40,0x1d,0x36,0x27,0x30,0x34,0x7b,0x5d,0xa4, - 0x33,0xf8,0x7f,0x7d,0x9a,0x2e,0xa1,0x1c,0x19,0x79,0x19,0xad,0x83,0xd6,0xb9,0xe3,0x3b,0xd5,0x89,0x7c, - 0x40,0x14,0xf8,0x46,0x52,0xbf,0x20,0x4e,0x7b,0xe0,0x67,0xd5,0xb6,0xc7,0x11,0xf7,0x08,0x7c,0x81,0x6b, - 0x39,0x54,0x2f,0x14,0xe5,0x5b,0xf8,0xe5,0x6f,0x24,0x16,0x83,0x3c,0x94,0x96,0x5b,0xf5,0x0b,0x76,0x46, - 0xd8,0x2f,0x1a,0x33,0xe9,0x7f,0x72,0xc0,0x3b,0x1d,0x2d,0x06,0x9f,0xea,0x6a,0xdb,0x04,0xd1,0x5a,0xbe, - 0xfd,0x44,0x31,0x3d,0x90,0xd6,0x61,0xb6,0x55,0xa9,0x47,0x0e,0xd5,0x8a,0xac,0x65,0x71,0x35,0x43,0xc0, - 0xbb,0xf1,0xd3,0xfd,0x63,0xa8,0xf9,0x96,0xa0,0x86,0x8d,0xc2,0xb4,0x65,0x17,0x04,0xcd,0x71,0x11,0x3e, - 0xce,0x73,0xb8,0xc0,0x55,0xe3,0xe5,0xd2,0x3e,0x03,0xb8,0x4c,0x36,0x20,0x12,0xf3,0xec,0xdc,0xce,0xea, - 0x14,0xe7,0x6e,0xd5,0xcd,0x63,0xee,0x55,0xdd,0x5c,0x8d,0xb4,0x9d,0x8b,0x5b,0x37,0x6f,0x4b,0xba,0x74, - 0xb7,0x25,0xe9,0xd6,0xbc,0x8d,0x06,0x27,0xab,0x82,0xef,0x05,0xc3,0xa1,0xd8,0xb4,0x29,0x9d,0x2e,0x8a, - 0x1d,0xa3,0xad,0xfa,0xce,0x4c,0x50,0xed,0xb2,0x56,0x2c,0xe5,0xbe,0x4d,0x6b,0xe6,0x73,0x4d,0x3b,0x30, - 0xc7,0x79,0x9a,0x58,0x71,0x19,0xeb,0xad,0xba,0x4d,0x18,0xb3,0x46,0x04,0x97,0xb8,0xc6,0x92,0x9b,0xfa, - 0xf6,0xd0,0x7e,0x8c,0xc6,0x7f,0x83,0x94,0x90,0x40,0xb7,0x1e,0xb1,0x55,0xcc,0xa2,0x70,0x35,0xb6,0xb4, - 0xd1,0x5b,0xdd,0x3a,0x44,0xf8,0x1f,0x19,0xae,0xb0,0x1f,0x54,0x7e,0x2c,0x9d,0x8b,0x33,0x4b,0x7b,0xbb, - 0xa6,0xa3,0x15,0x5b,0xd4,0x17,0xf1,0xdd,0xe3,0x84,0x3d,0xeb,0x10,0xe9,0x39,0xae,0x3e,0x19,0xff,0xaa, - 0x4c,0xa5,0xd1,0xfc,0x99,0x2f,0x3f,0x03,0x4d,0x2d,0x03,0x1d,0x91,0xdd,0x3b,0x3b,0xab,0x9a,0x3b,0xf4, - 0xba,0xd6,0x9d,0x5c,0xd7,0x3b,0xf4,0xfa,0x63,0x16,0xc5,0x89,0xa2,0x2d,0x3f,0x0f,0xc6,0x4e,0x78,0xd3, - 0x55,0x17,0x87,0x04,0x1e,0xbd,0x70,0xd5,0x1d,0xb3,0x21,0x5a,0xe1,0x8f,0x45,0x06,0x82,0x4b,0x68,0x7d, - 0xff,0x21,0x29,0xd6,0x9c,0x68,0x15,0x0c,0x38,0x85,0xcb,0xe0,0x97,0xff,0xf6,0x85,0xf0,0xa6,0xcc,0x13, - 0x76,0x6b,0xa4,0x1f,0x60,0x35,0x13,0x38,0x33,0x12,0xfd,0x94,0x18,0xdf,0x5a,0x35,0x5b,0xf7,0x05,0x26, - 0x61,0xca,0x93,0x20,0x05,0x9d,0x48,0xf3,0x07,0x07,0x3b,0x49,0xb7,0x21,0x7d,0x0f,0xf8,0x45,0x10,0x28, - 0x20,0x8c,0x8f,0x8c,0x71,0x0d,0xf3,0x04,0x6a,0x71,0x70,0xb0,0xd0,0x78,0xca,0x4f,0xa2,0x31,0x1c,0xb0, - 0x2c,0x02,0x0c,0x61,0x4f,0x9b,0xea,0xc1,0x88,0x87,0xe6,0x82,0x5f,0x85,0xc6,0xdb,0xfb,0x8d,0xe5,0x76, - 0xfe,0xde,0xa2,0xcd,0xc3,0x6b,0x5b,0xaa,0x71,0xe9,0x59,0xb1,0xe1,0x81,0xe6,0x37,0x16,0x4d,0x20,0x11, - 0x6b,0x11,0x89,0xaf,0xe1,0xe5,0xab,0xf2,0x30,0x65,0xed,0xfd,0xb8,0xee,0xb7,0x41,0x43,0x01,0x70,0xe7, - 0xb7,0xfe,0x44,0x79,0xf1,0x94,0xa0,0xfa,0xa5,0xa8,0x58,0xb8,0x86,0xe6,0x4e,0xce,0x13,0xa2,0x42,0xeb, - 0x7e,0x2c,0xb7,0x81,0x32,0xe0,0x83,0xc6,0xd2,0xec,0x30,0x17,0x73,0x00,0xb9,0x12,0xff,0x0d,0x9c,0xb9, - 0xe1,0xb3,0x78,0x41,0x2f,0xd4,0x65,0x2d,0xb6,0x02,0x3c,0xb0,0x7f,0xeb,0xcf,0x75,0xf3,0xcf,0x44,0x6b, - 0xe4,0x32,0x50,0x9c,0x26,0x58,0x0b,0xa3,0x87,0x39,0x9a,0x4e,0x9f,0x40,0x2b,0x8c,0x50,0x63,0xb3,0xab, - 0xb4,0x64,0xc4,0x89,0x6f,0x2b,0xd2,0x79,0x09,0xdc,0xf9,0x6b,0x8a,0xd9,0x00,0x20,0x6a,0xa4,0xc1,0xb7, - 0xf9,0x0e,0x76,0x01,0x7a,0x0d,0xfa,0x62,0xd0,0xd7,0xf9,0x95,0x59,0x58,0xb1,0xc2,0xfc,0x9a,0x90,0x4a, - 0xa5,0x4d,0x11,0x7e,0x97,0xaa,0xea,0xed,0x6b,0x68,0x06,0x87,0x37,0x82,0x61,0x7e,0x4d,0xdb,0xb0,0x4a, - 0xc3,0xa2,0x9d,0x11,0x83,0x6b,0x21,0x22,0x6b,0x26,0xf1,0x71,0x17,0x71,0x86,0xd8,0xb7,0xed,0xce,0x8e, - 0xb8,0xd0,0xa2,0x48,0xd6,0xd6,0x53,0xa1,0x58,0x87,0x1a,0xc9,0x73,0xda,0x86,0xaf,0xd8,0x95,0x6a,0x5e, - 0xcf,0x09,0x26,0x3b,0xae,0xb6,0xcb,0x92,0x78,0xa2,0xe5,0x03,0xcb,0x92,0x2f,0x8d,0xdc,0x71,0x1c,0xa5, - 0xc3,0xe5,0xa8,0x3f,0x96,0xb0,0xd1,0xe8,0xc5,0x9e,0x6c,0xf5,0x83,0x03,0xb0,0x05,0xed,0x5b,0x98,0xb0, - 0xc6,0x1a,0xd7,0x21,0x1e,0x80,0x3a,0xb7,0x66,0xa2,0xd9,0x90,0xf3,0x8d,0xb0,0x29,0x3e,0xb5,0x8f,0xe3, - 0x00,0x42,0x0f,0xc7,0x81,0xf8,0x0a,0x1d,0x9e,0x73,0x3c,0x13,0xea,0xea,0xb4,0x12,0x7f,0x4d,0x4d,0x57, - 0x17,0x51,0x31,0x9c,0x8e,0xfa,0xbb,0x1b,0x20,0x56,0x3a,0x8d,0x08,0x56,0xda,0x1f,0xa0,0xf5,0x67,0x49, - 0xf9,0x38,0x5f,0xb1,0x8c,0xed,0xc9,0x3c,0x25,0xc8,0xfa,0x91,0xe6,0x1a,0xae,0xd7,0x87,0x0b,0xee,0xe2, - 0x60,0x25,0xbd,0x5e,0x04,0xe1,0xdc,0x3c,0x6d,0xb5,0xe9,0xed,0x82,0xd0,0xb2,0x2f,0x3e,0x00,0x88,0xd7, - 0xd7,0x41,0xc9,0x98,0x71,0x9a,0x44,0x73,0x6b,0x13,0x6e,0x72,0xe4,0x74,0xf4,0xbb,0x5e,0x39,0x76,0x0c, - 0xaf,0xdb,0x3d,0x0c,0xd8,0xb6,0xa0,0xc2,0x01,0xb4,0x52,0x73,0xd0,0x61,0x3e,0x1a,0x82,0x6a,0x72,0x8b, - 0x29,0xb3,0x0b,0x28,0xda,0xa2,0xbf,0x67,0x41,0xde,0xba,0xe4,0x67,0x93,0x2e,0x6f,0x8d,0x40,0xcf,0x87, - 0xac,0x69,0xd9,0x37,0xf6,0x15,0xda,0x8c,0xe9,0x22,0x5e,0xbe,0xa2,0x74,0xbf,0xd4,0x66,0xf9,0x2a,0x11, - 0x5a,0xd9,0xe8,0x17,0x7e,0xc3,0x3c,0x82,0x79,0xfb,0xa3,0xf6,0xf6,0x8b,0xf1,0xf1,0x0f,0xa7,0x1d,0x73, - 0xc2,0x91,0x96,0xbb,0x83,0x62,0x7e,0x2f,0x9f,0x4e,0x97,0x49,0xf9,0x4d,0x92,0xce,0x2e,0x4a,0xa7,0x54, - 0x53,0x63,0x51,0xd6,0x8f,0xe7,0xb8,0x72,0x10,0x86,0x9e,0xc0,0xa2,0x92,0x09,0xa7,0xfe,0x15,0x28,0x37, - 0x6a,0xac,0xe8,0x59,0xa5,0x9f,0xa8,0xe8,0x39,0xda,0x51,0x3a,0xa5,0x02,0x8c,0xa7,0x9a,0x92,0xe0,0x58, - 0xd3,0xbb,0x2c,0xce,0x8f,0x29,0x5c,0x7f,0xf2,0x74,0x55,0x81,0x06,0x3b,0x90,0xf7,0xdc,0x10,0x71,0xbc, - 0x77,0x64,0x9b,0xd9,0xd7,0xf1,0x3a,0x25,0x58,0x90,0x09,0xd3,0x05,0x47,0x6d,0x99,0x06,0x8c,0x9d,0x8a, - 0x59,0xe1,0xc1,0xd4,0xcd,0x70,0xb2,0x2f,0xdd,0x67,0xfb,0x74,0x70,0x4d,0xda,0x43,0x5b,0x78,0xa3,0x27, - 0xbf,0xc1,0x94,0xe3,0x34,0x7f,0x9a,0x5a,0x79,0x60,0x75,0x9c,0xeb,0xec,0x75,0xec,0xae,0x13,0x8d,0x29, - 0x6a,0x6f,0x8c,0xdb,0x32,0x16,0xd9,0x04,0xb4,0xd6,0xce,0x11,0xcf,0x80,0x81,0x23,0xb1,0x2d,0xb5,0x75, - 0x75,0xae,0x13,0x51,0x84,0x0a,0xd4,0x4c,0x2f,0x40,0xd6,0x4a,0x32,0x5b,0x67,0x18,0x35,0xcd,0x88,0xcc, - 0xb0,0x75,0xef,0x13,0x3f,0xab,0x39,0x21,0xe2,0xac,0x35,0x75,0x2b,0x03,0x47,0x7a,0x30,0x11,0xcb,0xc4, - 0xec,0xca,0x6e,0x61,0x1e,0xfe,0x8e,0x6f,0xeb,0xa7,0xe9,0xac,0xe7,0x04,0xc4,0x8d,0xca,0x54,0x55,0x1f, - 0x6a,0xa1,0x78,0xa3,0x79,0xfb,0x27,0x48,0xd4,0xa2,0x7f,0x15,0xce,0xb7,0x46,0x28,0xde,0xe8,0x55,0x59, - 0x2b,0x58,0x8f,0xdd,0xbb,0x13,0x1a,0xe5,0x59,0x45,0xaa,0x61,0xa5,0xe6,0xb0,0x63,0xa8,0xaf,0x5d,0xd4, - 0x8c,0x6a,0x2b,0xa8,0x76,0xca,0xae,0x23,0xcd,0x99,0x89,0x17,0x6d,0x73,0xfc,0x29,0x33,0x04,0x36,0xa2, - 0xd6,0xd8,0xf8,0xd0,0x83,0x85,0xf6,0x80,0x8b,0xb3,0xe7,0xf2,0xca,0xce,0xd7,0x6a,0xfa,0x41,0xac,0x5d, - 0x1f,0x04,0x1c,0x21,0xdf,0x9a,0xd5,0x5a,0x48,0x70,0x9d,0x47,0xbb,0xa5,0xf5,0x96,0x48,0xdc,0x38,0x4d, - 0x5b,0xb5,0x86,0x55,0xa5,0xf5,0xa1,0x68,0xc9,0x2d,0xe2,0x84,0x83,0xfa,0x37,0xc7,0x78,0xfd,0xeb,0x94, - 0x4d,0x26,0x1d,0x97,0x25,0x06,0x61,0x42,0xa3,0xf0,0x8f,0x34,0x9c,0xd5,0x3f,0x8b,0xe3,0xb9,0xf6,0x00, - 0x59,0x25,0xd4,0x85,0xa8,0xd4,0x8f,0x98,0x29,0xe3,0x29,0xbe,0x40,0xd8,0xa0,0x28,0x01,0xa1,0xc6,0x67, - 0x21,0x7b,0xf2,0x81,0x0f,0x5f,0xab,0xd8,0x21,0x07,0x3a,0xef,0xe7,0x46,0x5a,0x54,0x16,0xec,0x07,0x26, - 0xab,0x47,0xc4,0x16,0xaf,0xf5,0x8f,0x8a,0x3a,0x2f,0x99,0x19,0x77,0x4e,0xbe,0xf5,0x37,0x4c,0x0b,0x9d, - 0xd2,0xbc,0xcc,0xac,0x26,0x11,0xf5,0x84,0x10,0xbe,0x90,0xd4,0x59,0xe5,0x19,0x26,0xdb,0xf5,0xc2,0x9d, - 0xd5,0xbc,0x70,0x67,0x7d,0xab,0x15,0xb2,0xc5,0x7c,0x18,0x3f,0x04,0xbe,0xd3,0xfe,0x5b,0xa8,0x82,0x48, - 0xd8,0xeb,0x83,0x83,0x7f,0x67,0xf8,0xdf,0x83,0xcb,0x2c,0x50,0x6a,0x50,0x60,0x7e,0x07,0x6b,0x8c,0x63, - 0xd9,0x91,0xbf,0xa5,0xea,0x5f,0x50,0xa1,0xbc,0x39,0xbd,0xf1,0xfd,0x41,0xd8,0xdb,0x9c,0x66,0x41,0x77, - 0x10,0x9c,0x6e,0x4f,0xb7,0x47,0x33,0xf5,0x9f,0xd0,0x79,0x3f,0xec,0x7d,0xd1,0x1d,0xfc,0xbe,0x7f,0xb3, - 0xf5,0x83,0xcd,0xf0,0x74,0x74,0x7a,0x74,0x7a,0x3a,0xa2,0x6f,0x65,0xde,0xaa,0xb8,0xce,0x67,0x87,0xd1, - 0xd9,0xfe,0xcf,0x54,0x79,0xa7,0xa7,0xfb,0x07,0x1e,0x07,0x3b,0x81,0x7a,0xf9,0xee,0x17,0xeb,0x30,0x80, - 0x66,0x52,0x3c,0xa4,0xf8,0x49,0xd7,0xd3,0x9d,0x91,0xde,0x78,0x5d,0x9a,0x84,0x19,0xe4,0x7f,0x2a,0xc9, - 0xa3,0x1b,0x11,0xea,0xc3,0x9b,0x69,0x38,0xf4,0x1c,0x69,0xbf,0x37,0x52,0x16,0x57,0x37,0x8c,0x3b,0x00, - 0x1b,0xf0,0x98,0x58,0xe8,0xf9,0x8b,0x0a,0x91,0xd2,0x88,0x99,0x6d,0x5f,0xc4,0x59,0x4e,0x55,0xd1,0xb7, - 0x6f,0x5e,0x7f,0x4f,0x09,0x80,0x68,0xc4,0x6c,0xcc,0x02,0x83,0xc0,0x32,0xa7,0x20,0x5c,0xe2,0x42,0x80, - 0x02,0x55,0x18,0x24,0x3c,0x4e,0x99,0xd2,0x88,0x0a,0x2c,0x75,0x92,0xc1,0x31,0x6b,0x8b,0x8f,0x73,0xcf, - 0x73,0x14,0xfa,0xab,0x26,0xc1,0x46,0x74,0x23,0x77,0x3c,0xa1,0xd7,0xad,0xe5,0xe8,0x7a,0x0a,0x46,0xbe, - 0xb5,0xb6,0x74,0xa9,0xb1,0xcd,0xef,0x7e,0x94,0x02,0x09,0x11,0xc4,0x59,0xfb,0xb4,0xf1,0xc5,0xc8,0x9f, - 0x9f,0x36,0xc6,0xfb,0x8d,0x69,0xe3,0xaa,0x9a,0xd3,0xf6,0x28,0xc5,0xcc,0xd5,0xa7,0x4e,0x0a,0x3b,0x53, - 0xc7,0x09,0x7f,0x75,0xea,0xb8,0xd9,0xda,0xd4,0x71,0x8a,0x33,0x75,0xfc,0x6e,0xa6,0xce,0x6d,0xcb,0x96, - 0x42,0x7e,0x5f,0x0a,0x54,0x5f,0xbb,0xb0,0x35,0x90,0xc9,0x2b,0x72,0xbe,0x62,0x82,0xbd,0x1f,0xdb,0x7e, - 0xc2,0x88,0x32,0x9f,0x6b,0x5b,0x46,0x31,0xd8,0xd3,0x36,0x98,0x62,0x57,0x98,0x2e,0x19,0x25,0xe3,0xc2, - 0x89,0x86,0xe2,0x58,0x89,0xd6,0x0c,0x1e,0xc5,0x2c,0xf2,0xea,0x1c,0xbe,0x86,0xd2,0x5c,0x2c,0xa5,0xb5, - 0x5d,0x23,0x8c,0x3e,0x4b,0x18,0x74,0x1a,0xe1,0xe6,0x82,0x0d,0x1b,0x61,0x14,0xc8,0xe6,0x8d,0x62,0xf0, - 0x58,0xe8,0x9a,0xa8,0x7c,0x2e,0x3d,0x6c,0x35,0x3c,0x95,0x2e,0x57,0x26,0x86,0x6c,0x27,0xd9,0x6a,0x4e, - 0x89,0x66,0xeb,0xf6,0x8c,0x6c,0x81,0xaa,0xcd,0x4f,0x8d,0xfd,0xe4,0x8e,0x1d,0xaa,0xb6,0x6c,0x65,0xc3, - 0xca,0x16,0xbb,0x56,0xf4,0xd5,0x58,0xbd,0x4a,0x3b,0x34,0x59,0x6c,0x4d,0xab,0x2d,0x2f,0x61,0xb8,0x6a, - 0x4c,0x26,0x79,0x9a,0x9a,0x46,0x98,0x32,0x6d,0x62,0x94,0xaa,0x27,0x4f,0xcc,0x27,0x8c,0x81,0x65,0x65, - 0xfb,0xd9,0x98,0x22,0xb6,0xc7,0xa5,0x89,0xe2,0xb9,0xa6,0x79,0x8a,0xf3,0xe8,0xe8,0xf7,0xd3,0xe5,0x17, - 0xfe,0x90,0xfe,0x7a,0x77,0x1e,0x3c,0x3c,0x3d,0x8a,0x46,0xdd,0x80,0x70,0x0d,0x12,0xa3,0x00,0x7f,0x07, - 0xa1,0x47,0x9f,0xbd,0xd1,0x17,0x84,0x76,0x36,0x77,0xe8,0xf1,0x0e,0x3d,0xde,0xe9,0x6e,0x74,0x99,0xe8, - 0xc1,0xc3,0xff,0xa2,0x22,0x41,0x30,0x38,0xa2,0xce,0x44,0xde,0x30,0x3e,0xfc,0xe3,0xd1,0xe1,0x6f,0x67, - 0xa3,0xe1,0xe9,0xe9,0xd5,0xe9,0xe9,0xe1,0xe9,0x69,0x6f,0xf4,0x85,0x47,0x93,0x1a,0x31,0x0e,0xf3,0xba, - 0xcb,0xbc,0x4b,0x98,0x2e,0x0c,0x06,0xf2,0x18,0x78,0x6a,0x95,0x47,0x0e,0xb2,0xf3,0x7e,0x7f,0xe0,0x75, - 0xc7,0x79,0xa0,0xe6,0xa6,0x73,0xa7,0x47,0x83,0xe0,0xe1,0x11,0x4d,0x68,0x23,0xdb,0xe9,0xe9,0x11,0x72, - 0x76,0xbd,0xe1,0xef,0x0f,0x47,0x5f,0x3c,0xa4,0xf1,0x2c,0x50,0xe4,0xc1,0xde,0xd3,0xd7,0x4f,0xde,0xfe, - 0xeb,0x87,0x67,0x1d,0xa4,0x77,0x1f,0x1e,0xa5,0xea,0x42,0xd2,0x61,0xb7,0xb3,0x96,0xc7,0xd3,0xe1,0x11, - 0x31,0xc1,0xb8,0x31,0xf6,0x3e,0x78,0x16,0x0b,0x1f,0x7d,0xf0,0x7b,0x34,0x90,0x99,0xaa,0x6f,0x79,0xca, - 0xe8,0x81,0x9d,0x4f,0xf4,0x85,0xcb,0x2c,0x57,0xd7,0xb9,0x3a,0xcb,0x09,0x76,0xd4,0x55,0xae,0xf6,0x73, - 0xf5,0x21,0x57,0xef,0x73,0xf5,0x24,0x57,0x6f,0x72,0xf5,0x28,0x57,0x6f,0x73,0xf5,0x9a,0x41,0x50,0x5b, - 0xed,0x6a,0x73,0x68,0x73,0xd7,0xc1,0x07,0xde,0xbb,0x1c,0xf7,0xc5,0xcf,0xe8,0xaf,0x77,0x30,0x2f,0xfb, - 0x5e,0xe8,0x3d,0xa0,0x4d,0x79,0x30,0xe3,0xc7,0x87,0x78,0x04,0x7c,0xd2,0xcb,0x1d,0xef,0x0e,0xbd,0xc4, - 0x97,0x0b,0x7c,0x38,0xc0,0x87,0xbf,0x9d,0x1c,0xe3,0xf9,0x34,0xe3,0x97,0xaf,0xf8,0xb9,0xf4,0xb6,0xea, - 0x25,0x8d,0xed,0x80,0x26,0x99,0x38,0xdf,0x59,0xb9,0x41,0xf1,0x0d,0x15,0x0b,0xfa,0x34,0xa0,0x17,0xad, - 0x9f,0x36,0x54,0xd3,0xe6,0x6f,0x5f,0x71,0x8e,0xe7,0xdc,0x61,0xe8,0x3b,0xd4,0xfb,0xf9,0x34,0xbf,0x85, - 0xa6,0x38,0x38,0x78,0x9e,0x8b,0xe7,0x84,0x53,0x96,0xac,0x24,0xf0,0x55,0xa4,0xbe,0xc7,0xfc,0xfe,0xc7, - 0xe6,0xf7,0xf5,0x61,0x9e,0x85,0x47,0xea,0x07,0xbc,0xae,0x0f,0x37,0x48,0xa2,0xd7,0x57,0xf4,0xea,0xf7, - 0xbe,0xa0,0x03,0x75,0xd9,0xa5,0xde,0xa4,0xd9,0x26,0x9f,0xf2,0x73,0xef,0x8b,0xe0,0x48,0xfd,0x48,0x5f, - 0x15,0xc1,0x95,0xa2,0xe3,0x76,0x44,0x50,0x46,0x39,0xdc,0xd7,0x60,0xb0,0x7f,0xa4,0x1e,0x33,0x54,0xf8, - 0x9b,0xd3,0x60,0x9f,0x3a,0xfd,0x53,0xce,0x46,0x61,0x5f,0xd0,0x8b,0xfa,0x19,0x5f,0x42,0xb4,0xcc,0x02, - 0xe7,0x23,0xf5,0x0d,0x25,0x9c,0xf6,0x86,0xbf,0xf7,0x46,0x5d,0xca,0xfa,0x47,0xf3,0x7c,0xd6,0x6e,0x62, - 0x7e,0x4b,0xa3,0xdf,0xd2,0x4f,0x98,0x27,0x05,0x95,0x0e,0x04,0x11,0x4d,0xbf,0xa5,0xae,0x49,0x22,0x1d, - 0xc2,0xbf,0xa0,0xe5,0x0f,0x97,0xf3,0x6c,0x19,0x7e,0xff,0xe6,0x74,0xd2,0x3d,0x52,0xff,0x46,0x0a,0x3f, - 0x53,0x3f,0xbe,0xcd,0xa3,0x61,0x92,0xd3,0x99,0xa3,0x6e,0x68,0x7a,0xdf,0x7e,0xe4,0x6c,0x11,0xe9,0x91, - 0xf1,0x25,0x21,0x17,0x42,0x86,0x77,0xe1,0x2b,0xfd,0x57,0xf1,0x82,0x35,0x11,0x87,0xde,0xfa,0x90,0xaf, - 0x50,0xbc,0x11,0xa8,0x24,0xbc,0xf2,0xa0,0x41,0x09,0x7a,0xa3,0xcd,0x86,0x52,0xf4,0xb3,0x51,0x08,0xd5, - 0xa7,0x0d,0x27,0x82,0xda,0x92,0x93,0x6b,0x7d,0x98,0x4e,0x65,0x99,0xf3,0x28,0x1d,0x78,0x54,0x97,0xd7, - 0x4d,0xb1,0x29,0x43,0xe2,0x0d,0xe3,0x48,0x88,0x71,0x93,0x15,0x97,0xb8,0x92,0x79,0x59,0x4b,0xb3,0x75, - 0x8c,0xa3,0xaf,0xd9,0x6a,0xe4,0xbb,0x84,0xbd,0x63,0x25,0xd0,0x31,0xe2,0x06,0x95,0x38,0xcc,0x38,0xcf, - 0x3f,0x50,0xdb,0xdf,0x22,0x9d,0xf8,0xa5,0x31,0x88,0xd7,0x31,0x21,0x68,0x21,0xed,0xc6,0xbd,0x74,0x4a, - 0x38,0xc2,0xeb,0x16,0xd4,0x3e,0x0d,0xff,0x8e,0x29,0x72,0xc7,0xeb,0xe6,0xea,0x57,0x14,0xba,0x49,0x3e, - 0x2c,0x42,0xe4,0x13,0xfc,0x1d,0x8e,0xb7,0x46,0x5e,0x2b,0xed,0x52,0xa7,0x56,0xe8,0x14,0xcd,0xae,0x74, - 0xa8,0xe4,0x04,0xdd,0x85,0x22,0x9e,0xa4,0xb9,0xb4,0xbf,0x42,0xfb,0x55,0x95,0x6e,0xab,0x9c,0x8b,0x9b, - 0x94,0x36,0x56,0xba,0x8d,0xb9,0x6d,0x43,0x54,0x7c,0x12,0x88,0xe6,0xea,0x4d,0x51,0x82,0x4c,0x3a,0x4c, - 0x1e,0xbe,0xc5,0x7b,0xad,0x95,0x54,0xd7,0x38,0x47,0x60,0xe1,0xc1,0xb8,0x87,0xa9,0x43,0xd8,0xb9,0x25, - 0x0b,0x53,0xf1,0x46,0x13,0xb0,0xa4,0x79,0x01,0x4b,0x37,0x52,0xdf,0x11,0x66,0xa0,0x62,0xc4,0x2a,0x00, - 0xec,0x20,0xb5,0x37,0xf7,0xda,0xdf,0xe6,0xaa,0xe2,0x21,0x42,0x7d,0x95,0xd6,0x7a,0xb5,0x24,0x76,0x39, - 0xa2,0xcd,0x01,0x95,0x47,0x56,0x3b,0xbb,0x50,0x6b,0x75,0x69,0xaf,0xd5,0x66,0xb5,0x3b,0xd5,0x6b,0x81, - 0x3a,0x75,0xe6,0x00,0x1c,0xdf,0xc5,0x4a,0x00,0x26,0xcb,0x9e,0x58,0x4f,0x4d,0x00,0x83,0x4b,0x35,0x0b, - 0x94,0x0e,0xb2,0x5b,0xdd,0x67,0x5e,0x07,0x13,0xda,0x2b,0x17,0xd1,0xa5,0x5a,0x47,0x77,0xd0,0x9b,0xfd, - 0x7d,0xe3,0x84,0xe3,0xe7,0x78,0xde,0x89,0x3a,0x8d,0xb0,0xea,0xfa,0x46,0x41,0xee,0x31,0xf7,0xd9,0x73, - 0xac,0x0e,0xd5,0x68,0xef,0x34,0xed,0x18,0x73,0x8b,0x85,0xf2,0x9e,0xa9,0x74,0x1b,0xe0,0x1a,0xd4,0x77, - 0xf3,0xa0,0xd5,0x35,0xb7,0xe5,0x9d,0x89,0xc7,0x17,0x68,0x05,0xe5,0x9d,0x01,0x15,0x93,0x84,0x4e,0x48, - 0x8f,0xfa,0xf6,0x4d,0x2a,0xbc,0xd3,0xf5,0x89,0x12,0x9a,0xf5,0xc4,0x94,0x7e,0xe0,0x9d,0x65,0x3e,0x7d, - 0xc7,0x86,0xa0,0x1f,0x88,0x8a,0x08,0x1e,0x3c,0x95,0x24,0x90,0xc0,0x9a,0xab,0xe5,0x75,0xb4,0xee,0x7a, - 0x1d,0x82,0x99,0xc4,0xbf,0x50,0x5e,0xbd,0xef,0xe6,0x5e,0x95,0x1a,0xad,0x4f,0x40,0x58,0x7f,0x27,0xe4, - 0xe9,0x05,0x0d,0xc3,0x8a,0x1a,0x3a,0xb8,0x26,0x44,0x6b,0x77,0x11,0xbd,0x9f,0x05,0x70,0x91,0x34,0xa6, - 0xf9,0x5d,0x45,0x4e,0x8f,0xd5,0x1c,0x3b,0x7d,0xa9,0xb4,0x8b,0x9b,0x60,0xb3,0xf1,0x50,0xa9,0xa7,0xa6, - 0x3a,0x1d,0xde,0x4e,0x0e,0xab,0x8f,0x78,0xf5,0xd4,0x42,0x7f,0x9c,0xc6,0xd8,0xcf,0xd5,0x57,0x7e,0xf7, - 0xd4,0xbf,0x4a,0x7c,0x34,0x4e,0x6f,0x94,0x57,0x37,0x1d,0xa1,0x43,0x98,0x36,0xcf,0xe0,0x2c,0x95,0x27, - 0xe5,0x75,0xe7,0x5d,0x66,0xbd,0xbd,0xae,0x2f,0xf5,0x53,0x77,0xa7,0x03,0x2f,0xd4,0x39,0x69,0x2e,0xc3, - 0xb3,0x7f,0xdb,0xcc,0x53,0x24,0x41,0x2b,0x26,0x91,0x46,0x64,0x4e,0x3d,0x01,0x99,0x38,0x92,0x6c,0xfb, - 0x60,0x4e,0x6b,0x33,0x4b,0x49,0xe3,0x08,0xc9,0x3d,0xdd,0xaf,0x81,0x2f,0x75,0xa1,0x99,0x05,0xfd,0xee, - 0x1a,0xbf,0x52,0x75,0x1a,0x1d,0xee,0xef,0xaf,0xa9,0x62,0x7f,0xc5,0xeb,0x2b,0xfd,0xf5,0xc2,0x79,0xc0, - 0x0d,0xa5,0x11,0x8d,0x84,0xb2,0xd2,0xe3,0x9a,0x2b,0x71,0x1b,0x09,0x6e,0x28,0xc3,0x83,0x63,0x46,0x94, - 0xd4,0x2f,0xea,0x80,0x0d,0xac,0x3d,0xa4,0xfc,0xa3,0x40,0x74,0x5d,0x90,0x8b,0x26,0xa0,0x96,0xcd,0xb8, - 0x7b,0xa1,0x4f,0x81,0x29,0x53,0xa5,0x53,0x6a,0xf7,0x04,0x7a,0x03,0x52,0x9e,0x81,0x89,0xd0,0x27,0x0d, - 0x92,0x81,0xce,0xfb,0x14,0x68,0x08,0x76,0x63,0xb8,0x10,0xc6,0xfe,0x92,0x50,0xba,0x0b,0x17,0x31,0x96, - 0xb8,0xd8,0x85,0x8b,0x7f,0x71,0x60,0xab,0x6a,0x6d,0x79,0x65,0x52,0x5e,0x19,0x3f,0x8e,0x72,0x3d,0x43, - 0x31,0xcf,0x50,0x1c,0xf0,0x5a,0x61,0xa9,0x8a,0x6a,0xa9,0xa8,0xa7,0x30,0x4c,0xfb,0x68,0x0f,0x01,0x69, - 0x8e,0xaa,0xc7,0x75,0xb0,0xd7,0x8a,0xb0,0x9a,0x68,0x07,0xfe,0x56,0x39,0x96,0x47,0x0e,0x55,0x6c,0x84, - 0x01,0x86,0x17,0x6d,0x3d,0x22,0xc4,0x32,0x82,0x79,0x36,0x6d,0x82,0xbd,0x9c,0xa7,0x00,0xdd,0x81,0xca, - 0x1e,0x6d,0x09,0xea,0xb8,0xee,0x5f,0xa8,0x3f,0x40,0xb5,0x6c,0xf0,0x21,0x0d,0x75,0xaf,0x68,0xa3,0x34, - 0xb6,0xaa,0xcc,0x4c,0x1f,0xf8,0xb8,0xfd,0x9b,0x36,0x06,0x07,0xe1,0x2c,0x79,0x2a,0xe0,0x91,0x43,0x62, - 0x1a,0xe5,0xf0,0x39,0x30,0x0f,0xfa,0x63,0xca,0x40,0xc7,0x19,0xa0,0xa7,0x56,0x8f,0x56,0x1f,0xb1,0xf7, - 0x8e,0x7d,0x82,0xd9,0x00,0x6b,0x50,0x9a,0x95,0x51,0x38,0x8d,0x12,0x3b,0xcf,0x25,0x61,0xee,0x69,0x25, - 0x26,0xf1,0x97,0x9b,0x0d,0xdb,0x12,0xf2,0xf9,0x7b,0x3e,0x5f,0xd1,0xf1,0xe3,0xd5,0x6f,0xa3,0x3c,0xb6, - 0x02,0x04,0x52,0xb6,0x0b,0xb1,0xf7,0x36,0xab,0x0b,0x00,0xfd,0x4a,0x59,0xb5,0x86,0xc2,0xed,0xc5,0x2a, - 0x13,0x81,0x3b,0x9c,0xef,0x5a,0x14,0x13,0xa4,0xbb,0x0e,0x0d,0x04,0xb0,0x59,0xa2,0xdb,0x92,0x83,0x3b, - 0xbf,0x65,0xa6,0xe6,0xe3,0x55,0x58,0xaa,0xaa,0xb5,0x82,0x2d,0x71,0x8e,0x3f,0x10,0xc1,0x14,0xb7,0x79, - 0x9a,0x00,0xa5,0xaa,0xfd,0x6a,0x41,0x0c,0x49,0x6c,0x0f,0xf2,0x15,0xb9,0x72,0x24,0xa0,0x61,0x99,0xc2, - 0x8f,0xce,0xe3,0xe4,0x65,0x32,0x2d,0x5f,0x2f,0x92,0x0c,0x59,0xd2,0x5c,0xd5,0xa6,0x22,0x24,0x7e,0xab, - 0x21,0xe5,0x0c,0x5f,0x95,0xca,0x91,0x0e,0x7c,0x9b,0x13,0x83,0x30,0x59,0x8d,0xdb,0x35,0x69,0x3a,0xa5, - 0xd9,0xcc,0x26,0xd6,0x95,0x89,0xe2,0x17,0xb0,0xa3,0x87,0xde,0xbb,0x3c,0x25,0x30,0x51,0x98,0x91,0x5f, - 0xdb,0x69,0xd0,0x0e,0xfc,0xb7,0x00,0xda,0x71,0xf4,0x32,0xfc,0x43,0x66,0xae,0xcc,0x4e,0x50,0xc4,0x9c, - 0xa4,0x99,0xf6,0xd2,0xa1,0xec,0x95,0x97,0x04,0x0a,0xea,0xfa,0xe5,0x00,0x7b,0xb5,0x84,0xb3,0x53,0x48, - 0x84,0xbe,0xb6,0x3c,0xdd,0xe9,0xd5,0xfe,0xd9,0xa8,0xbb,0x39,0x25,0x12,0x3a,0x18,0x7d,0x31,0x38,0x0d, - 0xc0,0xcf,0x45,0x0f,0x37,0xbf,0x9b,0x1e,0xd0,0xeb,0xa9,0x7f,0xa4,0x7e,0xd3,0x25,0x86,0xc4,0xb7,0x11, - 0xf7,0x76,0xb6,0x3f,0x42,0xd1,0x11,0x58,0x3f,0x22,0x9f,0x1b,0x89,0x9b,0xd3,0xe1,0x1d,0x22,0xe0,0xef, - 0x8c,0xe8,0xc1,0xa3,0x07,0x0f,0x0f,0x44,0xe7,0xe2,0xa7,0x99,0x77,0x14,0x7c,0x41,0xd5,0x12,0x69,0xfe, - 0x2f,0xd0,0x32,0xcb,0x71,0x78,0xf7,0x1f,0xf0,0x51,0x14,0x7e,0x25,0xda,0x13,0xe1,0xc9,0x3d,0x25,0xf3, - 0x7d,0xef,0xae,0x5a,0x2d,0xc2,0x7b,0xff,0x24,0x16,0x78,0x5a,0x86,0xf7,0xfe,0xa1,0x0a,0xdc,0x8b,0x84, - 0xf7,0xbe,0x52,0xf0,0x6b,0x1d,0xde,0x3f,0x56,0x72,0x35,0x19,0x0e,0xff,0xa9,0xee,0xff,0x9d,0xb8,0x8c, - 0xff,0xcc,0xdb,0xdc,0x6d,0x01,0xe5,0x74,0x4b,0x02,0x1e,0xc7,0x15,0x56,0xdf,0x83,0x17,0x12,0x48,0x7b, - 0x08,0x1e,0xcc,0xa6,0xc6,0x0b,0x00,0x24,0x9e,0xc5,0x22,0x23,0xec,0x43,0x51,0x82,0xbf,0xd9,0x3c,0xfa, - 0xfd,0xa9,0x5c,0x25,0x72,0x16,0x84,0x18,0x0b,0xff,0x33,0xf7,0xeb,0xb8,0xa1,0x43,0x18,0xa7,0xa3,0x53, - 0xc6,0xab,0x02,0x8b,0xf4,0x96,0x3f,0xd0,0x06,0x1e,0x97,0xc5,0x9c,0x4b,0xec,0x99,0x0c,0x94,0xf0,0x1d, - 0x14,0x6f,0x15,0x3b,0x03,0xad,0x7d,0xe3,0x14,0xf9,0x18,0xcf,0xeb,0x9f,0xe8,0x5d,0x3e,0x40,0x20,0x50, - 0xfb,0x82,0x04,0xf9,0xc4,0x73,0x87,0x4f,0x77,0xc4,0xd9,0xd3,0x1d,0x10,0x3b,0x92,0xab,0x73,0x70,0x60, - 0x7a,0x28,0xdf,0xb8,0xcf,0xc7,0xa8,0x2f,0x9d,0x4c,0xe6,0xc9,0x9f,0x2a,0x76,0xc2,0x0e,0xd1,0xb0,0x3e, - 0x7f,0xa6,0xd4,0x5d,0xc0,0x7f,0x42,0x0b,0x41,0x6c,0x61,0xd3,0xcd,0x0a,0xbc,0xbb,0x55,0x01,0xea,0x5a, - 0x16,0xf6,0x6c,0x26,0x0b,0xab,0x6a,0x18,0x82,0x10,0xc4,0x8e,0x6a,0x91,0xa9,0x8e,0x23,0xe1,0x55,0x46, - 0x40,0x55,0x4d,0xe7,0x54,0x53,0x46,0x35,0xdd,0x81,0x80,0x8b,0xf6,0x5b,0x17,0xdc,0x75,0x55,0x2b,0x4e, - 0x3d,0x87,0x20,0x86,0xff,0xa2,0x4a,0xcb,0x10,0xd7,0x5c,0x03,0xa1,0x68,0x42,0x4d,0x1a,0x05,0x1f,0xc9, - 0xce,0xa1,0xa4,0x3d,0xa5,0xf3,0x7b,0x81,0xee,0xf3,0x78,0x9e,0xc7,0xef,0x11,0x24,0x37,0x6b,0xf1,0x62, - 0x9a,0x5b,0xe7,0x97,0xfc,0x0a,0x51,0x23,0x9d,0x89,0xf8,0xd9,0x6c,0xbe,0xd6,0x89,0x56,0x3a,0xb9,0x8c, - 0x7e,0x83,0x9d,0xb4,0xd1,0x37,0xf7,0xec,0x07,0x44,0x29,0x32,0x3e,0xd9,0x71,0x83,0xf8,0x75,0x92,0x21, - 0x18,0x5f,0x3d,0xb7,0x16,0x2b,0xda,0x7c,0x96,0xa5,0x88,0xd6,0x3e,0xeb,0x4e,0x24,0x31,0x5b,0x3c,0xdb, - 0xf4,0xc0,0x06,0xe6,0xaa,0x21,0xd0,0xcd,0xe6,0x43,0xd6,0xd7,0xee,0x8e,0xaf,0xcf,0x13,0x1b,0x53,0xb1, - 0x65,0x21,0xf7,0xac,0x75,0xae,0xf6,0x75,0x99,0x8d,0x93,0x17,0x93,0x48,0xfb,0x9c,0x6f,0xc6,0x0e,0x84, - 0xdb,0xed,0x22,0x8e,0x7c,0x57,0xea,0x73,0x7a,0x7a,0xee,0x75,0xbd,0x09,0xe1,0xf0,0x29,0x24,0x6c,0x04, - 0xf4,0x25,0xee,0x1c,0x68,0x92,0xaf,0xd9,0xdf,0xda,0x18,0xd2,0x3d,0x1c,0x7b,0xea,0x2a,0x2d,0x2f,0x54, - 0x7c,0x15,0xa7,0xa5,0x62,0x7d,0x7f,0xc5,0x9e,0xcd,0xb5,0x4e,0x3c,0x5f,0xf0,0x28,0x76,0x44,0xaa,0x38, - 0xc8,0xbc,0xba,0x22,0xb4,0x9a,0xa8,0x6b,0x88,0xf5,0x34,0xb2,0x51,0xc4,0x7d,0xe5,0x70,0x62,0xc8,0x0e, - 0x56,0x94,0x8c,0xc0,0x38,0xf6,0xb2,0x5e,0xb2,0xd9,0xf5,0x27,0xb1,0x26,0x12,0x6f,0x9e,0x7d,0x9b,0xa5, - 0xd9,0x0a,0xfe,0x16,0xcf,0x57,0xb3,0x19,0xe4,0x80,0x7a,0x16,0xaa,0x18,0x2a,0x9e,0x76,0x3f,0x83,0x33, - 0x41,0x9f,0x0e,0x34,0xac,0x0d,0x86,0x16,0x74,0x79,0x84,0x72,0x8f,0xd2,0x18,0xb3,0x74,0x4a,0x7c,0x88, - 0xb2,0x5e,0x7a,0x6b,0x3d,0x84,0xd2,0x81,0xf0,0x4f,0x4f,0x09,0xe5,0xd3,0x9f,0xaa,0xd6,0xc6,0x07,0x04, - 0x80,0x7b,0xdb,0x14,0xed,0x54,0x16,0xb6,0xb7,0x1a,0x84,0xb2,0x17,0x60,0xc2,0x8d,0x08,0x6c,0x1c,0xed, - 0x9d,0x04,0x6a,0x3f,0xd7,0x6b,0xca,0xb6,0x5f,0x10,0x63,0x3b,0x31,0x58,0xfa,0xd9,0x83,0xab,0xdc,0xf5, - 0xbb,0x72,0x95,0xb3,0x89,0x2d,0x8c,0x7b,0x67,0x79,0x94,0x54,0x90,0xbd,0x8f,0x37,0x73,0xde,0x03,0xa4, - 0xd4,0x07,0xa4,0x38,0xa7,0x39,0x27,0xbe,0x47,0x62,0xe3,0xb8,0xe6,0x0f,0x67,0x39,0xc0,0x3b,0x69,0xd9, - 0x0c,0xdf,0xcb,0x66,0x38,0x6f,0x66,0x68,0xca,0x62,0x28,0xcf,0xd5,0x4e,0x9e,0x7c,0x59,0x36,0x33,0x5d, - 0xa3,0x0b,0xb4,0x1a,0xe9,0x65,0x5a,0x22,0xbe,0xa1,0xe5,0xb4,0x45,0xb5,0x64,0xef,0x84,0x35,0x9c,0x10, - 0xb4,0x1c,0x3b,0xe4,0x97,0x0b,0xca,0xc5,0xdd,0x54,0x98,0x2f,0xd0,0xaa,0x27,0x3b,0x46,0x17,0xcd,0x49, - 0xa6,0xb7,0x79,0x37,0xa2,0xc5,0x86,0xc6,0xea,0xea,0x5c,0x2e,0x10,0x7c,0xd7,0x20,0xba,0x30,0x2e,0x02, - 0xd8,0x60,0x5f,0x2d,0xab,0x80,0xf4,0xe2,0x5d,0x76,0x1e,0xe8,0xcb,0x34,0xdc,0x29,0x14,0x78,0x2d,0x79, - 0xc5,0x1a,0xd7,0xad,0x94,0xcc,0x5a,0xfc,0x69,0x14,0x57,0x51,0xea,0xd3,0x87,0xd1,0x31,0x62,0x11,0xa4, - 0xa3,0xde,0xdc,0x64,0xc5,0x46,0xa7,0x71,0x51,0x3b,0x87,0x87,0x86,0xae,0x8c,0xf8,0x52,0x17,0xb9,0x1d, - 0xdb,0x4a,0xb7,0xa2,0xf1,0xc3,0x28,0xed,0x8f,0xa9,0x40,0xd2,0x63,0x07,0x2a,0xfc,0xc3,0x6e,0xd4,0x59, - 0xc8,0x80,0xfe,0xf7,0x4d,0xf6,0x08,0x13,0x98,0x72,0xb3,0x87,0x27,0xfc,0x9d,0x19,0x21,0xef,0xbc,0x00, - 0x95,0xb7,0x1c,0x30,0x71,0x55,0xc0,0xf8,0x5c,0x1e,0x68,0xfc,0x34,0xdd,0x7b,0xc7,0xe2,0xf4,0xc0,0x5b, - 0x70,0x2e,0x0e,0x9b,0xd0,0x9a,0xef,0x84,0xf3,0xa9,0x5a,0x47,0x64,0x06,0x69,0x52,0x8d,0xdf,0x03,0x08, - 0x4b,0xb0,0x88,0xd0,0x33,0xaf,0x44,0x2f,0xb4,0x64,0x49,0xaf,0xa2,0x31,0x19,0xda,0x56,0xb8,0x4f,0x6e, - 0x50,0x96,0xfc,0x61,0x4e,0x93,0x52,0xf6,0x59,0x92,0x97,0x12,0x12,0x27,0xb6,0xe4,0x75,0xee,0x1b,0xff, - 0x1b,0x62,0x72,0x9a,0x37,0x6e,0xbc,0x27,0xd1,0xbb,0x7c,0xb8,0x40,0xdc,0x27,0xfe,0xad,0x09,0xb9,0x89, - 0x88,0x3b,0x5d,0x9e,0x9e,0xbe,0x21,0xf2,0x2d,0xf0,0x1f,0x1c,0x31,0x63,0x2b,0xd2,0xee,0x80,0x76,0x7d, - 0x0a,0xb6,0x19,0x86,0x57,0x46,0x7e,0x3d,0x71,0x05,0xd7,0x0c,0x1e,0x06,0xd2,0xac,0x91,0xab,0xa2,0xfe, - 0x2c,0x98,0xfb,0xd3,0x2e,0x25,0x31,0x71,0x0b,0xdc,0xf1,0x46,0x95,0x6f,0xa9,0x23,0xc8,0xca,0xa9,0xed, - 0xa5,0xb4,0x7c,0x78,0xf8,0xf0,0x68,0x46,0x6c,0x06,0x9d,0xfc,0x6e,0x96,0xd3,0xe1,0x93,0xa7,0x8f,0xde, - 0x3e,0x3a,0x1d,0x56,0x39,0x47,0x23,0x9b,0x13,0x92,0x63,0x7f,0xa1,0xc4,0x8d,0x32,0xb4,0x55,0xb4,0x3b, - 0x26,0x0e,0x81,0x77,0x11,0xcb,0x61,0xc9,0x0f,0x50,0x71,0xf0,0x20,0x57,0x21,0x98,0x37,0x1a,0x38,0x87, - 0x17,0xa6,0xbf,0x65,0x74,0xa1,0x0a,0xaa,0x68,0x7e,0x38,0x45,0x80,0x69,0x6b,0x62,0xb4,0x8e,0x9c,0xab, - 0xfe,0x07,0xc2,0xee,0x43,0xbb,0x72,0xcd,0x93,0x7f,0x91,0x9b,0x28,0x59,0xc6,0x38,0xcc,0x55,0x0c,0x38, - 0x3c,0xfd,0x70,0x2f,0x91,0x22,0x97,0x0c,0xbe,0x89,0x8e,0xbe,0x88,0x00,0x14,0x5a,0xb3,0x50,0x47,0x3d, - 0xd0,0xbe,0x48,0xaa,0x5d,0x78,0x5f,0xc1,0x8c,0x36,0xf3,0x2f,0xbb,0xf7,0x88,0xcd,0xd3,0xe8,0x7e,0x0b, - 0xad,0xad,0x75,0xa3,0xcd,0x99,0xdb,0xe6,0xe8,0xa1,0xb4,0x37,0xe3,0xf6,0x32,0x7f,0xd6,0xbd,0xeb,0x16, - 0x47,0x7e,0x08,0xdf,0xd8,0xf3,0xac,0xbf,0xc8,0x39,0xef,0x35,0x32,0x5e,0xe3,0x02,0xd9,0x44,0x2b,0xb4, - 0x05,0x90,0xff,0xcc,0xe6,0x9f,0x4a,0xfe,0x33,0x69,0xf7,0x3c,0x9a,0xf7,0x33,0xff,0xcc,0x29,0x47,0x13, - 0x78,0x36,0x3c,0x19,0xa9,0x73,0x66,0x4d,0xdd,0x3a,0xae,0x9a,0x11,0x50,0x12,0x5b,0xe9,0x4a,0x2a,0x4d, - 0x1c,0x59,0x62,0x74,0x63,0x1c,0xfa,0x25,0xa8,0x8e,0x39,0x90,0x10,0x1b,0x06,0x3b,0x2d,0x9c,0x4b,0x68, - 0x4b,0x42,0x5f,0x6e,0x97,0xf7,0xd8,0x42,0x5f,0xaa,0x9c,0xe7,0x12,0x54,0xd4,0x26,0xc4,0x94,0xd0,0x0f, - 0x32,0x3f,0x75,0x3b,0x9b,0x6b,0xb7,0x90,0xac,0x7f,0x26,0x56,0x7e,0xd6,0x2d,0x57,0xde,0x5b,0x61,0x1f, - 0xbe,0xa1,0x53,0xfc,0x82,0x1d,0xb4,0xc1,0x2a,0xb3,0x5e,0x18,0xbe,0xcc,0xe7,0x0a,0x96,0xc1,0x62,0x0c, - 0x15,0xdc,0xec,0x35,0x6f,0x4e,0x33,0x1a,0xcc,0x9c,0xbd,0xe0,0xe8,0xf1,0xd0,0xb6,0x2c,0x9d,0x9a,0x59, - 0x06,0x20,0x38,0x85,0x76,0x70,0x9e,0xfb,0x53,0xea,0x76,0x41,0xfb,0x58,0xad,0xf8,0x31,0x87,0x40,0x0b, - 0x29,0xd3,0xa0,0x3a,0xee,0x26,0xd1,0x98,0xde,0x37,0x9b,0xbd,0xbd,0x05,0x6f,0x4a,0x19,0x84,0x86,0xe2, - 0xb5,0x0e,0x5d,0x07,0x31,0x14,0xf5,0xf2,0x92,0xd0,0xc4,0xe5,0x83,0x8b,0xfe,0xa5,0x51,0xe2,0x9b,0x99, - 0x02,0xc3,0xcb,0x51,0xff,0x92,0x1a,0x3d,0x84,0x29,0xdc,0x0c,0x23,0x33,0x20,0x74,0xc7,0xf3,0xee,0x60, - 0xf6,0xf8,0x2a,0x6a,0x36,0xbc,0x37,0x3a,0x38,0xd0,0x0a,0x9b,0x78,0x51,0x3a,0xf9,0xbe,0x9b,0x7c,0xdf, - 0x26,0x7f,0xe9,0x26,0x7f,0xa9,0x4d,0x05,0xaf,0xb9,0x9a,0xcd,0x06,0x19,0xf1,0xf7,0x4b,0xfa,0xeb,0x79, - 0xea,0x2c,0xf2,0x58,0x48,0x43,0x23,0xf4,0xe0,0x9b,0x59,0x6a,0x38,0x19,0x0d,0xcc,0x2e,0x79,0x9a,0xc0, - 0x5f,0xee,0xf7,0xc9,0x15,0xfc,0x9d,0x2e,0x9f,0xe7,0xc5,0x37,0x94,0x2b,0x6c,0xff,0xda,0x5f,0xd3,0x88, - 0xb4,0x62,0x3a,0x2a,0x51,0x4c,0x68,0x87,0x84,0x12,0xae,0x11,0x89,0x0b,0x7e,0x07,0x06,0x2f,0xf2,0xf0, - 0x65,0xee,0xb8,0xb6,0x9b,0xab,0x16,0x1e,0xf9,0x59,0xce,0xee,0xe5,0x83,0xed,0x16,0x31,0xcf,0x63,0x81, - 0x0e,0xd6,0x69,0x25,0xbc,0xe0,0x1e,0x53,0xe1,0xb4,0x81,0x60,0x05,0x4c,0xd7,0x70,0x4d,0x1f,0x4d,0x81, - 0x7e,0x1a,0x27,0x04,0x51,0x53,0x6a,0xc2,0x97,0xe1,0xf4,0x06,0x0f,0x37,0x19,0x6c,0xb4,0xaf,0x18,0x81, - 0xe5,0x8a,0x7d,0xb9,0x10,0xde,0x6a,0x6c,0xd6,0x7d,0x63,0x42,0xfe,0xc1,0x3c,0xbc,0xd7,0x0f,0x00,0xba, - 0xb5,0x3d,0x14,0x3f,0x58,0x47,0xcf,0x6b,0xec,0x85,0xa9,0xc6,0x11,0x1f,0xe0,0xd6,0xd5,0x79,0xbe,0x70, - 0x9e,0xd7,0xce,0xb3,0xff,0x3e,0xfa,0xe0,0xa2,0x39,0x45,0x08,0xf4,0xc1,0x31,0xed,0x99,0x75,0x37,0x7a, - 0xaf,0x6a,0x95,0xef,0xd7,0x88,0x85,0x63,0xb5,0x06,0x96,0x5a,0x07,0xdb,0x35,0x8b,0x2b,0xf7,0xc1,0x52, - 0x44,0xb0,0x24,0xb7,0xe8,0x77,0xbf,0xc2,0xc0,0xfb,0xac,0x76,0x5a,0x46,0xec,0xfc,0x62,0x07,0x3f,0x97, - 0xc6,0x64,0x76,0x5b,0xf8,0x2c,0x5c,0x92,0xc0,0x21,0xb3,0x5c,0x39,0x17,0x14,0xb5,0x23,0xd3,0x11,0xc9, - 0xb8,0x67,0xe7,0xae,0x34,0x66,0xf7,0x18,0x55,0x6d,0x50,0x74,0x0b,0x70,0xb5,0xe6,0xfd,0x38,0x3c,0xea, - 0xaf,0x6a,0x07,0xdf,0x87,0x16,0xdd,0x2f,0x35,0x3e,0x73,0xce,0xd2,0x18,0xd6,0xb0,0x72,0x0d,0xc4,0x31, - 0x97,0x10,0x28,0xe4,0x3d,0x6e,0x3f,0xfb,0x4f,0xe1,0xe5,0x1d,0x2e,0xb4,0x69,0xee,0x10,0xf0,0xaa,0xce, - 0xd3,0x55,0xfa,0xcf,0x84,0x25,0x85,0x1e,0x2e,0x5d,0x72,0xd8,0x48,0x3d,0x11,0x10,0xf5,0x97,0xdc,0xa8, - 0x53,0x66,0x5a,0x8d,0x52,0x9e,0x22,0xf9,0xb1,0xbb,0xe3,0xdf,0xb9,0x92,0x65,0xe4,0x1d,0x00,0x02,0xc6, - 0x46,0xd2,0x83,0xbb,0x18,0x11,0x44,0x3a,0x37,0x3d,0xff,0x4e,0x78,0x00,0x84,0x48,0xd1,0xbf,0x4b,0xea, - 0x3b,0xc8,0xc1,0x3d,0xed,0x5a,0x9f,0x7d,0x2d,0x4e,0xa3,0xcb,0x40,0x34,0x9d,0xcd,0x95,0x35,0x92,0xa7, - 0xa2,0x99,0x3d,0xad,0x8b,0x64,0x69,0xb8,0x90,0xfc,0x1d,0xbd,0x8b,0xd7,0xb1,0x9b,0xb7,0x96,0x89,0x7a, - 0x8f,0xf0,0xb4,0x01,0x37,0x48,0x93,0x70,0xce,0x3e,0xe2,0x39,0x36,0xa5,0xb5,0xd0,0xa6,0xd9,0x98,0x3d, - 0x38,0xb7,0xdc,0xc1,0x8c,0xa6,0xe3,0x32,0x3a,0xcf,0x87,0xb3,0x91,0x0f,0x4d,0xdb,0xcd,0x86,0x9d,0xae, - 0x40,0x5d,0xd7,0x5e,0x43,0xae,0xa3,0x4b,0x5c,0xba,0x41,0xf4,0x87,0xaa,0xd7,0xa0,0xb2,0xd9,0xf8,0xe0, - 0xb2,0x62,0x49,0x8e,0x03,0xe6,0x49,0x2e,0x1d,0x9e,0x04,0x37,0x96,0xad,0x71,0x8d,0xad,0xac,0xcd,0x3a, - 0xc1,0x74,0x43,0x36,0xda,0x5b,0x57,0x07,0x77,0x27,0xc6,0x3b,0x4d,0xd2,0x2f,0xa8,0xc3,0xf0,0xdd,0xa3, - 0x91,0x9b,0x53,0x1b,0x25,0x4a,0x98,0x12,0xc1,0x75,0x0d,0x25,0xa0,0x46,0x46,0x89,0x4e,0xba,0x35,0x7e, - 0x36,0x69,0x1c,0x6c,0x15,0xc5,0x32,0xbf,0x88,0xc3,0x08,0x5f,0x06,0xe1,0x65,0x75,0x57,0x4a,0x5f,0xbf, - 0x4b,0x28,0xad,0x25,0x9e,0xac,0x73,0xa7,0xab,0x8f,0xee,0x12,0x97,0xaa,0x09,0x2e,0x21,0x4b,0xb9,0x84, - 0xd4,0xaa,0x2f,0x61,0xb9,0xd5,0xa6,0xd7,0x2d,0x57,0xbc,0xa2,0xe4,0xac,0xaf,0x27,0x83,0x9a,0xa6,0x53, - 0x75,0xe1,0x6b,0xb4,0x9d,0xf4,0xbd,0x25,0xdc,0xec,0xa2,0x53,0xb6,0xba,0x0b,0x59,0x2a,0x70,0xf8,0x5c, - 0xe1,0x05,0x33,0xfb,0xbc,0x16,0xdf,0x26,0xbc,0xc0,0x34,0x93,0x03,0xb3,0xfa,0x9b,0x4d,0x41,0x3d,0x65, - 0x68,0x91,0x0a,0x69,0xf5,0xf9,0x89,0x8a,0xfe,0x8a,0xcb,0x06,0xee,0xbc,0xf9,0xa8,0xc7,0x70,0xb9,0x0d, - 0xc2,0x82,0x9a,0xa1,0x1d,0xb9,0xe7,0x40,0x19,0x4c,0x86,0x76,0xaa,0x59,0x50,0xbe,0xc9,0x2d,0x5b,0xd3, - 0xae,0x3e,0xc7,0xd7,0x33,0x66,0xe8,0x25,0x87,0xd6,0x03,0x2c,0x1b,0x39,0x2f,0x25,0xf4,0x69,0x61,0xf2, - 0x05,0xec,0x7f,0xfd,0xca,0xd3,0x0d,0x91,0xf0,0x74,0xb8,0x72,0xff,0x7f,0x05,0x0d,0xce,0x7d,0x5d,0xd4, - 0xfb,0xba,0xd8,0x56,0xd2,0xf8,0xcb,0x1e,0xac,0x14,0xd8,0xeb,0x17,0x87,0x12,0x97,0x95,0x3e,0xd1,0x47, - 0xb2,0x7c,0x15,0x09,0xe2,0x66,0x73,0xc7,0xd3,0x92,0x06,0xef,0x4e,0x9f,0x9a,0xac,0x85,0x79,0xab,0xbf, - 0xb3,0x29,0xc1,0xf0,0x7a,0x14,0x5d,0x8a,0xb5,0x75,0xd5,0x3f,0x41,0x14,0x97,0xbc,0x4b,0x74,0x58,0xb6, - 0xfe,0x6a,0x90,0x01,0xae,0x7c,0xbe,0x27,0x32,0x19,0x20,0xa1,0xcb,0x5a,0x74,0xea,0xf3,0x61,0x6e,0x99, - 0xba,0x91,0x4a,0x1c,0xbf,0x58,0xc3,0x1d,0x67,0x58,0x94,0xa3,0x4f,0x3b,0xf1,0x5e,0xc4,0x66,0x3e,0x82, - 0x2f,0x3a,0x9e,0xbc,0xb1,0x1f,0x85,0xbd,0x31,0xb4,0xac,0xab,0xbe,0x61,0x3a,0x95,0xad,0x3f,0x3a,0x21, - 0xaa,0xa0,0xde,0x5e,0x26,0x9e,0xb6,0x71,0x12,0xd5,0xee,0x01,0x4c,0x44,0xb1,0xa7,0x99,0x7b,0xb9,0x24, - 0xae,0x4c,0x80,0xb7,0xd2,0x0a,0x25,0x2d,0x2a,0x3f,0x1c,0xb0,0xe9,0x0e,0xac,0xb9,0x9b,0xeb,0xaf,0x88, - 0x8e,0xbf,0x31,0x82,0x3d,0xca,0x25,0xcf,0xc0,0xab,0xd8,0x23,0xa2,0x60,0xd3,0xc0,0x98,0xa9,0x30,0xd2, - 0x64,0x37,0x05,0xb0,0xa5,0x2e,0xc3,0x3f,0x70,0x0c,0x84,0x6c,0x9d,0x29,0x7d,0x1e,0xd0,0x78,0x21,0xee, - 0x43,0xdf,0x96,0x3c,0xfa,0x3d,0x76,0xd7,0xe7,0x37,0xc3,0x99,0xca,0xc6,0xba,0xce,0x07,0x65,0xee,0x5f, - 0xe7,0x41,0xf8,0xaf,0x94,0xb9,0xf8,0x8a,0x89,0xb0,0xfe,0xde,0x94,0xc3,0x9a,0xd2,0x9f,0x31,0xbc,0xf6, - 0xc6,0xcb,0xf2,0x05,0xe8,0x02,0x60,0x23,0x8e,0xdd,0x93,0x8c,0x71,0x1e,0x05,0x37,0xb4,0xa6,0x85,0x90, - 0x0c,0xc1,0x43,0x5c,0x43,0x69,0x42,0x3a,0xb7,0xb4,0xc2,0x18,0x86,0xb9,0x4a,0x53,0x50,0x0d,0xe4,0x94, - 0x1b,0xf5,0xc4,0x55,0xf4,0x2b,0x1c,0xa9,0x54,0x1e,0x90,0xfb,0xba,0x80,0x5c,0xd4,0xac,0xe4,0x82,0x4a, - 0xd7,0x7d,0xe3,0xfd,0xc7,0xb9,0xa8,0x09,0x7a,0x50,0x98,0xa0,0x0e,0xa6,0x5d,0x87,0x2a,0x37,0x07,0xd4, - 0xf8,0x41,0x65,0x60,0xd1,0xd2,0xad,0x8f,0x76,0x8a,0x77,0x15,0xd4,0xf9,0x60,0x86,0x14,0x6b,0x71,0x17, - 0x94,0x12,0xcb,0xfc,0x7d,0x92,0x2d,0x43,0xd8,0x39,0x61,0xd2,0x06,0x99,0xa1,0x0c,0x61,0xf8,0x79,0x57, - 0x39,0xa5,0x98,0x42,0xd1,0x2f,0xa6,0x18,0x14,0xb5,0xf1,0x20,0xf7,0x5d,0x84,0x15,0x43,0x81,0xd6,0xb2, - 0x5a,0x4f,0x03,0xc0,0xd9,0xd0,0x81,0x71,0x06,0x66,0x58,0xb4,0x39,0x8d,0xdd,0xb3,0x95,0xe8,0x28,0xc9, - 0x6c,0x03,0xbe,0xe3,0x19,0xbe,0xb9,0x31,0xeb,0x85,0x95,0x35,0x6d,0x0b,0xf7,0x8e,0xd9,0x28,0x42,0x15, - 0xf0,0xaa,0x26,0xab,0x80,0x88,0xc5,0x5a,0xc0,0x04,0x49,0xf1,0x65,0xfa,0x47,0xc2,0xf2,0x1d,0xd6,0xe2, - 0x86,0x6b,0x1d,0xff,0x49,0x1e,0xfd,0x9a,0x13,0xe5,0xe0,0x5e,0x45,0x81,0x5c,0x78,0x93,0x03,0x2a,0x9a, - 0x72,0x5b,0x7b,0x88,0xc0,0x70,0x47,0xbc,0xc7,0xe8,0x92,0xd1,0x5d,0x10,0x06,0xe3,0x28,0x09,0xf4,0x2e, - 0xf6,0xb1,0xa5,0xc7,0xfc,0x42,0x3c,0x8e,0xbf,0x37,0xd6,0x47,0xee,0x18,0xe6,0x08,0x5a,0x49,0x94,0xda, - 0x82,0x7a,0x0e,0xfe,0x4e,0x11,0xe4,0x6b,0x9d,0xf9,0x6c,0x41,0x05,0xae,0xe8,0x4d,0x6e,0x9f,0x77,0x0d, - 0x3e,0xad,0xb9,0x27,0xab,0x40,0x99,0x48,0x10,0xda,0x0f,0xb4,0x75,0x16,0xc4,0xc5,0x6b,0xe6,0x03,0x68, - 0xa6,0xb2,0x06,0xb5,0x5e,0x62,0x08,0x96,0xa8,0x45,0x6d,0x49,0x86,0xa0,0x81,0x94,0xd0,0x43,0x68,0x98, - 0x6b,0x9a,0x9f,0x00,0xd0,0x74,0x62,0xf1,0x93,0x58,0x2a,0x50,0xef,0x8c,0x55,0xa2,0x07,0xfc,0xeb,0x19, - 0x33,0x45,0x31,0xfe,0xc2,0x8b,0xc1,0x26,0x43,0x2f,0xcd,0x40,0x4a,0x1e,0xda,0x6e,0x1a,0x4b,0x05,0x57, - 0xf2,0xa9,0x60,0xd7,0xdd,0x74,0x14,0x68,0xc2,0x50,0x8b,0xd4,0xce,0xc9,0x00,0xfa,0x0f,0x8e,0x56,0x54, - 0xaa,0xa7,0x9f,0xb0,0xbb,0x5d,0x89,0xbd,0x13,0xa6,0xce,0x89,0x90,0x9e,0x3e,0xc9,0x69,0x9e,0xf9,0x86, - 0xa0,0x0a,0x34,0x4a,0x28,0x13,0x91,0x45,0xdd,0x8f,0xa6,0xbd,0xfc,0x41,0x5c,0xb9,0xd2,0x5a,0x36,0x32, - 0xc1,0x75,0x12,0x1f,0x4e,0xd4,0x32,0x2c,0xe1,0x6e,0x69,0x99,0x41,0x79,0xbc,0x85,0x90,0xc6,0x05,0x16, - 0xed,0xc0,0xa0,0x31,0x8f,0xb6,0x28,0xac,0x28,0x72,0x71,0xf7,0x67,0xd3,0x5e,0x64,0x44,0x7c,0x47,0x99, - 0xe6,0xc0,0x28,0x41,0x38,0x8c,0xda,0x14,0x51,0x76,0x01,0xef,0x46,0xfa,0x66,0x73,0xaf,0x96,0xcc,0x7e, - 0xda,0xd9,0x47,0x84,0xc6,0x2d,0xe0,0xbd,0x6c,0x4b,0x70,0x40,0xcc,0xb4,0x8b,0x03,0xd0,0x92,0x76,0xa2, - 0xaa,0x3a,0xec,0x14,0x12,0x45,0xa7,0xd2,0x96,0xe5,0x2a,0x1e,0xa4,0x4c,0xe5,0x41,0x24,0xec,0xf8,0x76, - 0x54,0x19,0x98,0xfc,0x84,0x61,0xaf,0xff,0xdf,0x5b,0x98,0xd2,0xbf,0x65,0x4d,0x38,0x6e,0x81,0x9f,0x41, - 0x2d,0x5c,0x23,0x64,0x42,0x94,0x99,0x9f,0x56,0x21,0xcb,0x6f,0xe8,0x00,0x08,0xad,0xd1,0x65,0x6e,0x02, - 0xd4,0x36,0x2e,0x51,0xe8,0x43,0x23,0x65,0x5b,0x0f,0xe9,0x67,0xd7,0x54,0x82,0x25,0x68,0x86,0xa4,0x6e, - 0x84,0x59,0x42,0x61,0x90,0x4d,0x29,0xc5,0xf7,0x4f,0x21,0xf7,0x52,0xf5,0xd3,0xcc,0x4f,0x06,0x79,0x98, - 0x06,0xc6,0xeb,0xe9,0x16,0x95,0x65,0x46,0x92,0xce,0x5e,0x7b,0xf4,0x73,0x54,0x5d,0x42,0xf1,0x2d,0xb9, - 0xb9,0x3e,0xb7,0x99,0x21,0x5e,0xab,0xd9,0x29,0xc3,0x41,0xa4,0x7b,0x3b,0xd5,0xe8,0x9d,0xf3,0x91,0x30, - 0x32,0x1b,0x8c,0xba,0xe5,0x1d,0x11,0x4d,0x8c,0x5b,0xca,0x2c,0xf0,0x74,0x43,0xd8,0xe4,0x74,0x70,0x57, - 0x31,0xdb,0x4c,0x0a,0x1d,0x7c,0x31,0xdc,0xdf,0xc7,0x23,0xc1,0xe4,0xcb,0xe8,0x6d,0xce,0x11,0xce,0x8d, - 0xe4,0x7e,0xd9,0x4b,0x8a,0x22,0x27,0xce,0x20,0xa5,0x7d,0x53,0xa6,0x8b,0x65,0x94,0xab,0xa5,0xc6,0x3f, - 0x37,0xd0,0xf1,0x48,0xe7,0x49,0x98,0x28,0xfd,0xf4,0x36,0x7f,0xae,0xa7,0x6a,0x09,0xc1,0x07,0x55,0xd4, - 0x6a,0xe5,0x5a,0xd3,0x88,0x49,0x31,0xa3,0x62,0xc3,0x8c,0x20,0x85,0x98,0x70,0x7d,0x2f,0xd5,0x71,0x2c, - 0x10,0xea,0x57,0x11,0x03,0x6d,0x72,0xe4,0xa6,0x05,0x5d,0x3a,0x54,0x78,0xd1,0xe0,0x14,0xcd,0x68,0x2f, - 0xc2,0xa7,0x9e,0x76,0xaf,0xc7,0xab,0xa7,0x40,0x3e,0xd2,0xb1,0x4d,0xeb,0x6b,0x47,0x68,0x22,0x24,0x23, - 0x92,0xa2,0x06,0xae,0x71,0x85,0x26,0xaa,0x6b,0xba,0xb8,0x99,0x52,0xd7,0xc3,0xab,0x24,0x38,0x53,0xb4, - 0x35,0x86,0x8e,0x02,0xda,0x8f,0x96,0x74,0xba,0x19,0xeb,0x9d,0x6d,0xe0,0x7f,0x97,0x07,0xbd,0xdd,0xf9, - 0x22,0xc8,0x8b,0xa3,0xbd,0x3d,0x78,0xaa,0x5f,0x64,0x3e,0xee,0x9b,0x72,0xf7,0x9d,0xb8,0x89,0x38,0x6e, - 0xb5,0xbb,0xf9,0xd1,0x35,0x0a,0xe3,0x10,0xb6,0x56,0xd9,0x84,0x3a,0xb0,0x8c,0xa3,0x16,0xe3,0x29,0x93, - 0xfd,0xd3,0x76,0x55,0x40,0x75,0x6c,0x54,0xc5,0xcd,0x40,0x71,0xb4,0x66,0xde,0x49,0x64,0xa4,0x9b,0x64, - 0x1e,0x4c,0x90,0xe5,0xdd,0x98,0xa1,0xb5,0x68,0xe2,0xec,0xb2,0xc0,0x44,0x9c,0xb6,0xea,0xbb,0x3d,0x73, - 0xdc,0x88,0x3c,0x94,0x95,0x2d,0x79,0xb9,0xab,0xc0,0x82,0x45,0xe0,0xfd,0x4d,0x48,0x53,0x1b,0x15,0x81, - 0xa9,0x83,0x38,0x86,0x98,0xc0,0xba,0xda,0xda,0x73,0x3c,0x73,0xb9,0x5d,0x29,0x98,0x6e,0x34,0x93,0x24, - 0xfc,0x28,0x97,0xdf,0xb1,0x4a,0xcd,0x57,0x65,0xcd,0x23,0x5c,0xc7,0x49,0xfa,0xb8,0xa1,0x9e,0xe8,0x53, - 0xdb,0x75,0x69,0xb8,0x8b,0xae,0xec,0x33,0x99,0x8d,0x77,0xd7,0x0c,0xd3,0x2c,0x23,0xd7,0x87,0x67,0x01, - 0x37,0x79,0x37,0xad,0xc2,0xa2,0x34,0xfe,0xa8,0x60,0x28,0x47,0x9c,0x2a,0xb3,0x3f,0xc2,0xcc,0xd9,0x2c, - 0x86,0x5e,0x43,0xaa,0x79,0xdc,0xea,0x20,0xee,0xd0,0x40,0xd3,0xdb,0x00,0x3a,0x68,0x0d,0x98,0xef,0x9b, - 0xf5,0x8a,0x72,0x36,0x04,0x6d,0x6c,0x91,0xca,0x1c,0x3f,0xd6,0x8e,0x7a,0xe0,0x64,0x83,0xaf,0x41,0xc5, - 0x9e,0x92,0xe1,0x9e,0xc6,0x44,0x6f,0xdb,0xa0,0x61,0x7e,0xe0,0x49,0x7c,0xb0,0x6a,0x9d,0xe5,0x62,0x1a, - 0xbc,0xc5,0x2a,0x93,0xe8,0x8d,0x13,0x42,0x5c,0xfa,0xa3,0xe0,0xb6,0x81,0xfc,0xf4,0x74,0xd6,0x28,0xf1, - 0x5b,0x03,0xc8,0x4a,0x69,0x88,0x86,0xf1,0xdb,0x8b,0x2f,0x27,0x03,0x79,0x24,0x6a,0x30,0x2c,0x7b,0x3f, - 0xaf,0x92,0x17,0x27,0xff,0xcc,0x50,0x7a,0xdb,0x08,0x30,0x4d,0xdd,0x5a,0x11,0x80,0x00,0x04,0xa9,0x6b, - 0x7d,0x87,0x34,0x90,0x3e,0xb7,0xf4,0x0c,0x97,0xee,0x39,0x5b,0x27,0xe9,0x27,0xc6,0x63,0xbe,0x37,0x5c, - 0xaf,0x92,0xc3,0x94,0xda,0x19,0x75,0xbc,0x2e,0xfc,0x4c,0x1e,0x1c,0xd4,0x32,0xf0,0x09,0x3e,0x7e,0xef, - 0x3a,0xd2,0x4e,0x1a,0x01,0xef,0x84,0xc3,0xda,0x99,0xa8,0xb2,0x2a,0xe1,0x22,0xa2,0xb5,0x5e,0x03,0xec, - 0xdb,0xcb,0xda,0x9d,0x6a,0x23,0x8a,0x1e,0xc2,0xe8,0xd9,0xd8,0x11,0x4e,0x65,0xa9,0x1b,0xfb,0x5b,0x44, - 0x7b,0xf6,0x76,0xdf,0xd2,0x7a,0x10,0x26,0x40,0xb0,0x57,0x7d,0x02,0x95,0xa7,0x77,0x33,0xf4,0xf9,0x52, - 0xfe,0x31,0x7b,0x81,0x65,0x0e,0x86,0x85,0x14,0x9b,0x73,0x22,0x62,0xeb,0x0a,0xac,0x9c,0x38,0x48,0xd9, - 0xa8,0x30,0xdc,0xd9,0xfe,0x25,0xc7,0x90,0xc7,0x75,0x0b,0xb2,0x85,0x77,0x9d,0x0a,0x59,0xb0,0xf7,0xd1, - 0xec,0xca,0x47,0x9b,0x27,0x6d,0x6d,0x52,0xa2,0xbe,0xb5,0xe1,0x47,0x75,0x43,0x04,0x4a,0x4c,0xe7,0x5b, - 0x21,0x96,0x48,0xb4,0xdf,0x1c,0x6f,0x9f,0x79,0x65,0xa7,0x8d,0x15,0xd1,0x8d,0x5a,0x18,0x28,0x6b,0xba, - 0x59,0x56,0xdf,0x80,0x3d,0x37,0x69,0x6d,0x86,0x8d,0x63,0x03,0xc9,0x67,0xa5,0x11,0x06,0xd0,0x2c,0x23, - 0x08,0x61,0x2f,0x3e,0xe7,0x2b,0xc3,0x7c,0x98,0x44,0x77,0x59,0xa9,0x93,0xba,0x96,0xd1,0xb4,0x3c,0x3c, - 0x19,0x9c,0x84,0xc7,0xe1,0x49,0x98,0x0d,0x38,0xdf,0x65,0x0a,0xf7,0xbf,0x77,0x83,0xf0,0x78,0x34,0xc8, - 0x59,0x9a,0xc3,0x3c,0x54,0xe8,0x2c,0x64,0xec,0x2c,0x39,0x33,0x9d,0x1c,0xbf,0xbb,0xc9,0x7f,0xd6,0x7c, - 0xb8,0x2f,0x5d,0xe1,0x91,0xb3,0xee,0xf6,0x50,0x17,0x72,0x89,0xf8,0x93,0x07,0x3b,0x30,0x91,0x1a,0x5a, - 0x3c,0x97,0xd8,0x3a,0x7c,0x69,0xa8,0x43,0x8f,0xe4,0xc6,0xcd,0x44,0x64,0x03,0x64,0xe8,0xfb,0x04,0x34, - 0xc6,0x94,0x4b,0x1e,0x8c,0x09,0xbd,0xac,0xa2,0x58,0xcd,0x04,0x82,0xe1,0x74,0x91,0x5d,0x89,0xe6,0x20, - 0x55,0x06,0x4c,0xb5,0x2c,0x99,0x78,0x51,0x9c,0x12,0x72,0x0a,0x3f,0x6a,0x3a,0x5e,0xad,0xac,0x05,0x43, - 0x3d,0xde,0x00,0x13,0x7f,0x73,0xf6,0x96,0x0d,0x8f,0xcd,0xda,0xb7,0x9b,0xcd,0xb2,0xaa,0x7c,0xf5,0x72, - 0xff,0x55,0xdc,0x9f,0x73,0x6c,0x07,0x76,0x07,0x54,0xaa,0xb8,0xf2,0x44,0xaf,0xf2,0xde,0x99,0x40,0x08, - 0x3c,0xa0,0xf4,0xf6,0xb1,0xb3,0x7b,0x92,0x50,0xf9,0x65,0xee,0xc0,0x90,0xb7,0x10,0x9f,0xb0,0x58,0xc3, - 0xca,0x4e,0x5c,0xb3,0x46,0xbc,0xc2,0xf0,0x22,0x29,0x1e,0x7c,0x52,0x22,0xb9,0x73,0x93,0x09,0x02,0x3f, - 0x9a,0x2e,0x4d,0xed,0x64,0x41,0xe5,0x53,0x87,0x72,0x97,0xc5,0xb5,0x9e,0xbe,0x66,0xe4,0x23,0x22,0x72, - 0xea,0x49,0x52,0x37,0xd1,0x7b,0x4b,0x0b,0x95,0x46,0x1b,0x21,0xb2,0x17,0xe6,0x10,0x04,0x08,0xeb,0x68, - 0x71,0x9f,0x1b,0x3c,0x18,0xac,0x50,0xc1,0xc1,0x94,0xa5,0xb2,0xcd,0x66,0x59,0xb1,0xa8,0xa2,0x11,0xe1, - 0xf2,0xa1,0xd4,0x8b,0x55,0x2d,0xa1,0xa2,0x29,0xc7,0x55,0xdb,0x2b,0xdb,0xf6,0x78,0xa7,0x6d,0xa7,0xe5, - 0x8c,0x80,0xda,0x38,0x71,0xdb,0xb2,0x7a,0x53,0xa5,0xe9,0x46,0x5c,0x30,0xf1,0x0f,0xda,0xc8,0x23,0xb3, - 0x5e,0xc5,0xc0,0x7d,0x57,0x8a,0x0f,0x55,0x58,0x08,0x87,0xf6,0xb7,0xae,0xe7,0x2c,0xa4,0x0c,0xf6,0x88, - 0x64,0xe0,0x75,0x84,0x68,0xda,0xf7,0xb2,0xbc,0xa4,0x33,0x28,0x5d,0x96,0x1d,0x7d,0x40,0x74,0x52,0xed, - 0x9f,0x07,0x50,0x4a,0x69,0xf6,0xdd,0x83,0x56,0x31,0xfb,0x86,0xae,0x17,0xaa,0x17,0xc0,0x89,0xdf,0xd1, - 0x8d,0x4a,0x09,0x37,0x24,0x44,0x52,0x03,0x3b,0x31,0x66,0xa1,0xd5,0x91,0x91,0xcd,0xa3,0x1d,0xc4,0x46, - 0xf0,0xb8,0x0a,0x06,0x71,0x94,0x87,0xe2,0x0c,0x14,0x5a,0xec,0x3d,0x0e,0xbc,0xb8,0x04,0x2a,0x61,0x40, - 0x24,0x52,0x37,0xef,0xd1,0xf6,0xa4,0x73,0xfd,0x06,0x9f,0xc2,0x58,0x69,0xa4,0x06,0x73,0xd1,0xd9,0x12, - 0xa6,0x45,0x6a,0x1a,0xcd,0xa5,0xdc,0x82,0x1e,0x74,0xb9,0x09,0x3d,0x22,0x03,0xfb,0xad,0xda,0x6c,0x16, - 0x9b,0xcd,0x04,0xa4,0xd8,0x54,0xfa,0xc7,0x17,0x2e,0x6a,0xa6,0xae,0x21,0x57,0xd4,0x93,0x08,0x9f,0x45, - 0xa5,0x96,0x7e,0x9a,0x28,0x76,0xfe,0x2c,0xba,0x96,0x09,0x0d,0x7a,0x26,0x80,0xfb,0x4c,0x0d,0xa7,0xd6, - 0xa3,0xa4,0xbf,0x8e,0x26,0xea,0x12,0x27,0x8b,0x7f,0x11,0xc1,0x47,0xd2,0xa5,0xf0,0x55,0x17,0x81,0x5a, - 0xd3,0x88,0xea,0x60,0xbc,0x66,0xf7,0xef,0xeb,0xa0,0xca,0xb6,0x0e,0xa0,0xa4,0x00,0x02,0xca,0xec,0xc4, - 0xeb,0xda,0x3e,0xd4,0xc4,0x9d,0xef,0x99,0xc0,0xb9,0x9d,0xff,0xc2,0x40,0xff,0x0b,0xab,0xb1,0x3e,0x2c, - 0x3b,0x55,0x10,0x6b,0x2d,0xb5,0xd6,0xeb,0xb7,0x5c,0x2d,0x40,0x4e,0x74,0xc4,0x76,0x46,0x6c,0xc9,0x6a, - 0x81,0x36,0x78,0x43,0x57,0x27,0xa6,0xb0,0x63,0x78,0xd2,0x7b,0xc2,0xa3,0xf5,0xf1,0xac,0x1a,0x21,0xa8, - 0x54,0xa8,0x2a,0x32,0xa5,0xda,0x17,0xcd,0x3a,0x00,0x38,0x94,0xf8,0x3a,0x5f,0x9d,0x84,0xf2,0x7b,0x4f, - 0x7e,0xef,0xff,0x5d,0x7e,0xef,0xdd,0xd7,0xbf,0x5f,0xe9,0xf4,0x7f,0x86,0x36,0x30,0x98,0x14,0xf8,0x52, - 0x67,0xd0,0x05,0xee,0x7f,0x19,0x1a,0xfd,0xe0,0x09,0x74,0xd5,0x25,0xd7,0xbd,0xbb,0xba,0x7a,0xf9,0x39, - 0x39,0xd6,0xbf,0xba,0xb5,0x93,0xbf,0xeb,0x84,0xbf,0x7f,0x79,0xf7,0x1f,0x3a,0xcf,0x3f,0xef,0x9a,0x42, - 0xf4,0x74,0xcf,0x54,0x7a,0xb5,0xf4,0xec,0x05,0xdc,0xc3,0xe8,0xab,0x7f,0x10,0xab,0xf1,0x20,0x3a,0xb9, - 0x7b,0x77,0xb3,0xa1,0xd7,0xbf,0x7f,0xc9,0xaf,0x5f,0x1d,0x0f,0x74,0xe3,0x21,0x25,0xde,0xff,0x8a,0x13, - 0xbf,0xfc,0xc7,0xc0,0x13,0x4b,0x06,0x2f,0xf4,0xf8,0xe2,0xa5,0x25,0x50,0x88,0xf6,0x95,0x17,0x19,0x01, - 0xa0,0x09,0x6e,0xef,0x1d,0x7b,0x7b,0x4e,0x68,0xe1,0x63,0xc8,0xbb,0xd2,0xe5,0xf7,0xf1,0xf7,0x12,0x32, - 0x0d,0x12,0x6b,0xf5,0xbd,0xbe,0x4f,0x0c,0x06,0x84,0x63,0x89,0x99,0x84,0xd9,0x89,0x3b,0xe3,0x81,0x96, - 0xa8,0xd8,0xa4,0xc4,0xca,0x37,0xa9,0xba,0x7b,0xf7,0xf7,0x58,0x99,0xec,0xde,0x57,0xf8,0x1d,0x24,0xb8, - 0x4f,0x15,0x15,0x1e,0x05,0xd7,0xe2,0xde,0x17,0x5e,0x37,0xd5,0x5e,0x71,0xd5,0xda,0xa0,0xb4,0x8a,0x6d, - 0x32,0xfe,0x2f,0x08,0x8a,0xbd,0xa1,0xd0,0x65,0x1d,0xed,0xaa,0xce,0x53,0xb3,0xdd,0xfc,0x17,0xf1,0xf2, - 0xf5,0x55,0x66,0x22,0xdd,0xd1,0x0e,0x6a,0xa3,0x20,0x5f,0x64,0xe5,0xdc,0x89,0xd6,0x85,0xd7,0xde,0x53, - 0x84,0x96,0x49,0x2f,0x13,0xa2,0xee,0x2f,0xe3,0x12,0xca,0x0b,0x9f,0x59,0x50,0xdc,0xe8,0xe9,0x62,0xe7, - 0xd1,0x8d,0x38,0xb2,0x78,0xd2,0x88,0x12,0x59,0xf3,0x2b,0xe4,0x72,0x68,0x65,0x0f,0x1b,0x2a,0x92,0x1f, - 0xbe,0xb2,0x3b,0x3b,0xc3,0xe3,0xe0,0x66,0x1b,0x9a,0x90,0x40,0xbc,0xc3,0x6f,0x6c,0x66,0x8b,0xf5,0xa8, - 0x47,0xaf,0x74,0xba,0x14,0x0a,0xcc,0xa9,0x85,0x48,0x87,0x7d,0x93,0xda,0xea,0x78,0x26,0xa1,0x13,0x3e, - 0x51,0x0e,0xb1,0x52,0xb2,0xda,0xbf,0x7b,0xa6,0x24,0x2d,0x21,0x10,0x25,0xa6,0x28,0x2a,0x65,0xe7,0xbd, - 0x2f,0x19,0x0f,0xbc,0x4a,0x96,0xcb,0x58,0xfc,0xd7,0xc8,0x11,0xa6,0x4f,0x11,0x6a,0x46,0xbc,0x3e,0x9d, - 0x39,0x63,0x54,0x55,0xca,0x2f,0xc8,0x95,0x68,0xaf,0x5c,0xd2,0xd5,0x2b,0x24,0xe1,0x2c,0x80,0x4e,0xb1, - 0x1f,0x38,0x99,0x59,0x29,0x61,0x5c,0xa4,0xe7,0x09,0x3e,0x3d,0x81,0x51,0x0e,0x87,0xff,0x61,0xae,0x4a, - 0xb2,0x99,0x1c,0xe2,0x89,0x6d,0x5b,0x05,0xc4,0xd0,0x53,0x28,0x73,0xc5,0x2b,0x50,0xe4,0x79,0x69,0xa2, - 0xcc,0xe3,0x59,0xf0,0xda,0x6e,0x4a,0x6d,0xae,0xf9,0xa6,0x92,0xfb,0x82,0x0c,0x51,0x33,0xaf,0x5e,0x29, - 0x4c,0xda,0x25,0x47,0xf5,0xdd,0xc9,0x51,0x7d,0xb2,0x79,0x89,0xfe,0x3a,0x27,0xae,0x44,0x26,0xb2,0xa5, - 0x40,0xed,0xbb,0x29,0xb5,0x24,0x2e,0x2f,0x13,0x8d,0xd2,0x39,0x9b,0x1e,0xfc,0xc2,0x0a,0xde,0xcd,0xc2, - 0xad,0xd9,0xd8,0xab,0x6e,0x1d,0x5a,0x8a,0x4f,0x42,0x4b,0x01,0x7a,0x70,0x17,0x5a,0x2c,0x28,0xf0,0xfa, - 0x2f,0xa3,0xa2,0x7d,0xe1,0x71,0xef,0xfd,0xca,0x2c,0xc2,0xff,0xda,0xfa,0x2b,0xe7,0x04,0xd1,0xd3,0x76, - 0x9d,0xf1,0xd5,0x9c,0x7d,0xe1,0x2b,0x6a,0x71,0xe0,0xc7,0xf3,0x5b,0xeb,0xd0,0x7e,0xd5,0x21,0x99,0x7d, - 0x3f,0xb0,0x5e,0xdd,0xff,0x3a,0x0c,0x0d,0x7c,0x77,0x47,0xec,0x40,0xd0,0x5f,0x1f,0x2e,0x18,0x6d,0xb9, - 0xe0,0xc0,0xc5,0xa8,0x8e,0x86,0x60,0x7a,0x54,0x7b,0xdf,0x81,0x69,0x77,0x8b,0xba,0x19,0xff,0x5b,0xdd, - 0x31,0x7e,0xdb,0x9e,0x36,0x63,0xca,0x1a,0xc7,0x6d,0xd2,0x35,0x7f,0xa7,0x70,0xad,0x47,0xbd,0x55,0xf6, - 0xb1,0x96,0xb5,0x28,0x73,0xa7,0x8e,0x16,0x28,0xab,0x55,0xab,0xd3,0xfc,0x46,0x0d,0xce,0x27,0x53,0x43, - 0x0d,0x30,0xda,0xc1,0xa5,0x59,0x4b,0xed,0xa3,0xdb,0x13,0x89,0xf1,0xb6,0xdd,0xaa,0x2b,0xe3,0x62,0x15, - 0xa9,0x95,0xdb,0xc5,0x78,0x0e,0xfb,0x6c,0x71,0x84,0xc8,0x2a,0x69,0x37,0xae,0xdb,0x59,0x7d,0x83,0x1f, - 0x8a,0x8b,0xc3,0x2d,0x87,0x0f,0xaf,0xe7,0x30,0x64,0x18,0xae,0xfc,0x0c,0x21,0xea,0x66,0xd8,0x2a,0xbe, - 0xc1,0x5e,0xea,0xc4,0x21,0xd3,0x7d,0xd6,0xf3,0xeb,0x76,0xc7,0xf3,0x62,0x8d,0x9a,0xe7,0x6e,0x41,0xd8, - 0x20,0xb1,0x2e,0x10,0xf2,0xb5,0xb2,0x21,0xc3,0x77,0x07,0x70,0x24,0xf8,0x85,0x9f,0x8b,0x60,0xfe,0x93, - 0x3e,0x5e,0x75,0x0c,0xb7,0x48,0x7e,0x6c,0xac,0x5c,0x22,0xe1,0xad,0x9b,0xcd,0xbc,0x2f,0x02,0xf4,0x42, - 0x48,0x69,0x84,0xde,0xd0,0xa4,0xf4,0x0a,0x22,0xe7,0x39,0x3e,0xf0,0xd8,0xd8,0xcc,0x73,0xda,0xe0,0xd0, - 0xe6,0xc1,0x60,0x6e,0x22,0xf4,0x1e,0x87,0xee,0x19,0x37,0x0f,0x6c,0x3a,0xeb,0x54,0x37,0xd8,0x24,0xd7, - 0x7f,0x1e,0xb6,0x51,0x15,0x6d,0xbc,0xd2,0xfe,0x71,0x22,0x90,0x73,0x17,0x0c,0xbf,0x53,0x05,0x29,0x3f, - 0x38,0xf0,0xf8,0x22,0x70,0xbb,0xad,0x02,0x25,0x1c,0x1c,0xe4,0xb6,0x65,0xe2,0x43,0x17,0x54,0xbb,0xef, - 0xbd,0x98,0x76,0x64,0x14,0x1d,0xcc,0x76,0x27,0x5d,0x76,0xe0,0x1b,0xa6,0x43,0x67,0x40,0x87,0xe7,0xba, - 0xa3,0x63,0xdd,0x2f,0x3b,0x30,0x68,0xe8,0x5c,0xc4,0xeb,0x44,0x0a,0x48,0x7e,0xca,0xdc,0x23,0xc6,0xa7, - 0x65,0xec,0xbb,0x38,0x1d,0xd2,0x95,0x15,0xf1,0x7c,0xf0,0xf2,0xd9,0x9c,0x91,0xb6,0x13,0x60,0x05,0x4f, - 0x65,0x73,0xd6,0x9d,0x24,0xce,0xbc,0xbd,0x3e,0x11,0x65,0x2c,0x06,0x1e,0x8c,0xa2,0x9a,0xd3,0x12,0x52, - 0x6a,0xd2,0x5f,0x41,0x92,0x05,0xd9,0xa4,0x76,0xd1,0xaf,0x52,0x15,0xf7,0x52,0x5f,0x02,0x45,0x60,0x6b, - 0xec,0x47,0x3b,0x88,0x62,0x4c,0x2d,0xd1,0xe1,0xd2,0x72,0xd7,0xb1,0xed,0xef,0x3b,0xb4,0x5f,0x0a,0x6b, - 0xc0,0x45,0x0e,0xe1,0xb6,0x2b,0x67,0xaf,0x8c,0x82,0x9d,0xda,0xe0,0x0a,0xce,0xf0,0xa5,0x50,0x91,0xfb, - 0xa8,0xba,0x9d,0x2a,0xe0,0x22,0xc9,0xd1,0xb9,0x33,0xc2,0xe3,0x72,0x98,0x75,0xbb,0x2c,0x7f,0xf1,0x6e, - 0x3c,0xd1,0x7a,0x2c,0x70,0x47,0xe0,0x5c,0xc8,0xb3,0x4a,0x89,0xa7,0x55,0xb8,0x0a,0x5c,0x5a,0xa0,0x2e, - 0x11,0xde,0xd0,0x83,0x58,0x4d,0xe8,0x7a,0xbc,0x2d,0xeb,0x9d,0xf4,0x83,0xbc,0x4b,0x74,0xb7,0x4d,0x16, - 0x31,0xc4,0x07,0x21,0xc3,0xf3,0x60,0xe0,0xb1,0x73,0xd0,0xf0,0x7d,0x95,0x00,0x64,0x32,0x21,0xf2,0x7f, - 0x25,0x4e,0xe4,0xbc,0xbe,0xe9,0x82,0x34,0x9b,0x8b,0xfb,0xea,0x78,0x2b,0x7a,0xef,0xde,0xff,0xc5,0x7d, - 0x1d,0x50,0x9f,0x41,0xfc,0xd3,0x8a,0x80,0xd2,0xa7,0x26,0x83,0x10,0x7f,0x0d,0x1b,0xf2,0xc9,0x91,0x24, - 0x90,0xa6,0xab,0xc6,0xac,0x46,0x45,0x4d,0xee,0x6c,0x27,0x9f,0x66,0x52,0x22,0x45,0x37,0xc5,0x29,0x66, - 0x38,0x1c,0x51,0x6e,0x77,0x24,0x98,0x5b,0xf3,0x02,0x3d,0x6a,0x7b,0xf7,0xc4,0x53,0xd7,0x4f,0x9b,0x8b, - 0x12,0xd3,0x80,0xd2,0x91,0xe1,0x02,0x63,0x7d,0xa7,0x0c,0x76,0x4b,0xfa,0x1f,0x16,0x3a,0xee,0xa9,0xd6, - 0x98,0x13,0x95,0x54,0x66,0xe6,0x74,0x47,0x74,0x86,0x6c,0xc8,0x94,0x0e,0xd1,0xf8,0x26,0xaf,0x3a,0x39, - 0x0e,0x46,0xb5,0x02,0xa6,0xb7,0xf2,0x2b,0x6a,0xde,0xb6,0xb8,0x2e,0x45,0xf4,0x70,0xda,0xed,0xda,0x49, - 0xdd,0x72,0x6c,0x3a,0xb9,0xb1,0xfa,0x10,0x1d,0xfd,0xee,0x9f,0x4e,0x82,0xee,0x91,0x7a,0xcf,0x8f,0x57, - 0x78,0x7c,0x42,0xd3,0xf4,0x26,0x3a,0x51,0x8f,0xa2,0xbb,0xea,0x6d,0x74,0x4f,0xbd,0xa6,0xf7,0x77,0xd1, - 0x7d,0xf5,0x2c,0xfa,0x52,0xbd,0x8c,0xfe,0xae,0x5e,0x44,0xff,0x50,0xcf,0xa3,0x7f,0xaa,0xa7,0xb8,0x66, - 0x7b,0x3a,0x7c,0x3d,0x8a,0x6e,0xae,0x96,0x21,0xfd,0x2a,0xe6,0x0d,0xc3,0xe1,0x3d,0xf5,0x64,0xa4,0xbc, - 0xa1,0x17,0x0e,0xdf,0x8d,0x14,0x1d,0xf2,0xe1,0xf0,0xc5,0x68,0xab,0x9e,0x0e,0x4f,0x74,0xce,0x13,0xfa, - 0xda,0xa3,0xaf,0x77,0x5b,0x73,0xdd,0xd5,0xb9,0xee,0xd6,0xeb,0x3b,0xd6,0xbf,0xc2,0x6a,0xca,0x0b,0xb2, - 0xdf,0xa3,0xec,0x9f,0xca,0xa7,0xb8,0x55,0xf5,0xc6,0xb4,0xcb,0x4f,0xdc,0x32,0x9e,0xa4,0x6d,0x7a,0x42, - 0x75,0xef,0xa8,0x3a,0xef,0x0e,0x7d,0x7a,0x86,0x72,0x77,0xbc,0x3b,0xe1,0xf0,0x65,0x35,0x1c,0xf5,0x88, - 0x9e,0x46,0x1e,0x2a,0x7b,0x2b,0x05,0x9f,0xb3,0x95,0x1e,0x3e,0x49,0x77,0x9e,0x99,0xf2,0x48,0xa8,0xe5, - 0x78,0xa6,0x73,0xbc,0xa4,0x1c,0x5c,0xef,0x4e,0x0e,0x34,0x24,0x0b,0xf3,0x3d,0x5b,0x32,0x13,0xa9,0x56, - 0xac,0x92,0x0d,0x5b,0x68,0x6e,0x0e,0x07,0xc3,0xd3,0x49,0x6f,0xd4,0xdd,0xdc,0x61,0xd7,0x55,0x77,0x36, - 0x1e,0x7b,0xb3,0xf2,0x02,0xca,0xb7,0x7f,0xa4,0x7e,0xb8,0x05,0x6d,0xb5,0x63,0xad,0x1f,0x1c,0xac,0xc5, - 0x50,0xf6,0x03,0x1d,0x6a,0x35,0x14,0xe4,0x78,0x3b,0x96,0x8a,0x1c,0x84,0x05,0xcd,0xce,0x64,0x37,0xb7, - 0x89,0x85,0x29,0xc2,0x2d,0x6c,0xb8,0x55,0x74,0x78,0x42,0x47,0xe3,0x6b,0x0e,0x52,0x77,0x01,0x70,0xc1, - 0x9e,0xb9,0x18,0xbe,0x19,0xd5,0xcc,0x35,0xcc,0x39,0x95,0xb1,0x1a,0x8e,0x40,0x2f,0x3c,0x0b,0xca,0x07, - 0x58,0xe0,0x0f,0x9f,0xb4,0x94,0x80,0x2e,0xd3,0x20,0x8b,0x8a,0x30,0xeb,0x12,0xe1,0x4f,0x99,0x1e,0xd5, - 0x32,0xa1,0x10,0x51,0x46,0x53,0x82,0x7d,0xfa,0xf6,0xb6,0xf6,0x0d,0xa2,0xae,0x87,0xc7,0xc1,0xf4,0xf0, - 0x90,0xba,0xf7,0x4e,0x49,0x56,0x7b,0xb1,0x88,0xde,0xee,0xe1,0x1e,0xc3,0xcf,0xa2,0x09,0x7b,0xba,0xb3, - 0x92,0x50,0xf4,0x1d,0x6a,0x93,0x7d,0x2d,0xe3,0x9e,0xb3,0x67,0xf7,0x55,0xb7,0x0b,0xb7,0x87,0xac,0xe7, - 0x03,0x57,0x89,0x2b,0x5c,0x3f,0xec,0x35,0x78,0x6f,0xfe,0xd0,0x3d,0x61,0x6c,0x0d,0x59,0xd2,0x33,0x3a, - 0x95,0xef,0xb0,0x46,0xe1,0x66,0x83,0xf7,0x97,0x07,0x07,0x04,0x16,0x78,0x37,0x28,0x06,0xd5,0x12,0xb6, - 0xa6,0x8a,0xbb,0x89,0xee,0x23,0xc2,0x21,0xfb,0x81,0xb6,0xcb,0x5a,0x40,0x8d,0x17,0x74,0xce,0x32,0x7a, - 0x3a,0x9c,0x8f,0x02,0xc2,0x3b,0x9b,0xcd,0x92,0x15,0x36,0x37,0x9b,0xe7,0x10,0x27,0x3f,0x37,0x1a,0x3d, - 0xdc,0x26,0x1c,0xd5,0x2b,0x3f,0x8e,0x2e,0x86,0x39,0xed,0xc1,0x91,0xc8,0x57,0xec,0x5c,0xd2,0x73,0x4e, - 0x9b,0x2e,0x18,0xe0,0x46,0x84,0x87,0x4f,0xfc,0x4f,0x50,0xab,0x20,0x8a,0x5e,0x98,0xbe,0x8d,0x45,0x4d, - 0xcd,0x12,0xa4,0x06,0x46,0xa8,0xf7,0x2a,0x01,0xd9,0xb5,0x55,0x2e,0x90,0xcd,0x92,0x12,0x20,0xc6,0xb2, - 0xdb,0xc6,0xd9,0x08,0xb1,0x78,0x52,0x39,0x54,0xad,0x6e,0x54,0x0a,0xe3,0x0d,0xdb,0x42,0x28,0x7c,0xcc, - 0xe2,0xee,0x94,0x0e,0xa7,0xa6,0x04,0xfc,0xe0,0xe0,0xd8,0x11,0x76,0xd7,0xea,0xaa,0x14,0x59,0x8c,0x7f, - 0x6c,0x04,0xc2,0xd6,0x2e,0xb3,0xf3,0xbe,0x71,0x94,0x1d,0x0f,0xe1,0x2a,0xdb,0xb9,0xcc,0x80,0x9e,0x58, - 0x70,0x23,0xde,0xa3,0xb4,0xe1,0x40,0x1c,0x8d,0xd5,0xb2,0x42,0xa6,0xb1,0xec,0xd6,0x57,0xb7,0xec,0x9c, - 0x7e,0xc5,0xff,0x61,0x9e,0xa0,0xd9,0x6a,0x5d,0xf8,0x0a,0xf1,0xb8,0xd9,0x78,0x49,0x76,0xf8,0xd3,0x1b, - 0x8f,0x45,0x63,0x75,0x5e,0xbb,0xfa,0x86,0x4b,0x25,0xc3,0xe2,0x32,0x79,0xa9,0x63,0x8e,0x3b,0xf2,0x22, - 0x49,0x87,0x5d,0x64,0xe6,0x88,0x83,0x38,0xb5,0xaf,0x5d,0x4f,0x5f,0xca,0x6d,0x9d,0xbc,0x39,0x22,0x82, - 0x4a,0x26,0xb0,0xd9,0x80,0x51,0xde,0xd7,0x59,0x2e,0xd3,0x25,0x1c,0x7c,0xa0,0x6d,0x79,0x12,0x29,0xa8, - 0xf1,0x06,0xcd,0x02,0x08,0x96,0x43,0xd4,0xd2,0xc1,0xd5,0x46,0x0e,0xdf,0x2b,0x2c,0xef,0xde,0x9e,0x3c, - 0x99,0xd6,0xf5,0x40,0x59,0x97,0xc9,0xc9,0xec,0xa6,0x4b,0x21,0x37,0xc5,0xb4,0xd0,0x2a,0x7b,0xb0,0x48, - 0xa4,0x6c,0x97,0x3a,0x10,0x89,0xbb,0x77,0xcb,0x27,0x5d,0x6f,0x7d,0x42,0x71,0x8d,0x0e,0xc2,0x5e,0xbe, - 0xb9,0x93,0x5a,0xff,0x02,0x6e,0x80,0xe5,0x0b,0x3f,0x54,0xd5,0xc4,0x95,0x13,0x00,0x42,0x82,0x92,0xcc, - 0x57,0x06,0x0d,0xc8,0xd7,0x58,0xc5,0xdf,0xc3,0x60,0xb3,0xcd,0xa6,0xf0,0x13,0xa9,0xb0,0xb6,0x5d,0x24, - 0xf6,0xb5,0x31,0x35,0x3f,0x83,0xaf,0xd7,0x9f,0x5f,0xf9,0xe6,0xf2,0x32,0x53,0x75,0xa8,0x09,0xe1,0x75, - 0x51,0x40,0x85,0xc8,0xae,0x06,0x90,0x84,0xb1,0xaa,0x81,0x47,0x08,0xdd,0x15,0xf5,0x63,0x74,0xb3,0xbe, - 0x0c,0x6f,0xb6,0x55,0x41,0x7a,0x6e,0x96,0xa4,0xa4,0x7a,0xd1,0x9b,0x8a,0xc3,0xdb,0x36,0xfb,0x80,0xba, - 0x04,0x66,0xf8,0xa3,0x99,0x36,0xbc,0xb4,0xae,0x00,0x7d,0xd8,0x9a,0xc3,0xe5,0x95,0xeb,0x2a,0x58,0x06, - 0xdb,0xb2,0xbd,0x2e,0x8c,0xef,0x66,0xa9,0xaf,0xdf,0x78,0x87,0xf4,0xa5,0x02,0x7b,0x5a,0x1d,0xa2,0x21, - 0xb1,0x30,0x50,0x6a,0x55,0xcd,0xbc,0xc9,0x56,0xb9,0x8d,0xb6,0xb2,0xfb,0xbb,0x1e,0x0e,0xea,0x0b,0x5d, - 0xa9,0x8b,0xb9,0x55,0xdd,0x22,0x3b,0xa8,0x55,0xb6,0x57,0x67,0x61,0x98,0xdb,0x73,0x63,0x8d,0x64,0x8e, - 0xf5,0xa5,0x44,0xa0,0xcb,0x1e,0x1e,0x9e,0x04,0x72,0xcd,0x3c,0x86,0xcc,0x13,0xca,0x8d,0x7e,0x4b,0x9f, - 0x54,0xb3,0x3b,0x35,0xd9,0x56,0xd3,0x60,0x52,0xc4,0x89,0x35,0x17,0xde,0x34,0x79,0xbd,0x7d,0x2e,0xe4, - 0x7b,0xfb,0xa8,0xba,0x16,0x4b,0xc2,0x35,0x3c,0x68,0x4c,0x86,0x6b,0x87,0x70,0xd1,0xea,0xcb,0xb8,0x59, - 0x84,0x18,0x41,0x76,0x5a,0xde,0x4c,0xdc,0x89,0x50,0xb1,0x55,0x37,0x93,0x24,0x59,0x88,0x52,0xf1,0xee, - 0xe8,0xb4,0x18,0xb3,0x7e,0xd4,0xef,0x55,0xa8,0x89,0x36,0x5a,0x85,0xbf,0x76,0x4e,0x9c,0xd2,0x04,0x1d, - 0xb9,0xac,0xcf,0x03,0x0b,0xc8,0x9c,0xc9,0x10,0xc0,0x77,0x66,0x83,0xfd,0x75,0xec,0x13,0xfb,0x0b,0xe3, - 0x12,0xf3,0x95,0xfd,0xe8,0x37,0xfa,0xaf,0x6e,0xd2,0x4b,0x22,0xd5,0x53,0xc8,0xe6,0x65,0x08,0x3f,0xa2, - 0x62,0xda,0xef,0x6e,0x9f,0x1b,0x8b,0x80,0x4c,0x66,0x6f,0xde,0x92,0x35,0xd6,0x00,0x40,0x5f,0xb5,0x30, - 0x7c,0xc9,0x1e,0xbb,0x7f,0x6c,0x9e,0x13,0x9f,0x2e,0x5f,0xbf,0x88,0x30,0xd5,0xd4,0x36,0xff,0xa7,0x2b, - 0x71,0x2f,0x25,0x4c,0x15,0x32,0x2f,0x9f,0x18,0xab,0xb9,0xd9,0xab,0xf2,0x2f,0x93,0xb2,0x65,0xf7,0x61, - 0x35,0x78,0xbe,0xf5,0x5b,0x35,0xed,0x25,0x37,0x56,0xc7,0x48,0x9f,0x6a,0xb4,0x9e,0xbb,0xa5,0xfc,0xe7, - 0x76,0xa2,0x5e,0xcc,0x74,0x46,0x23,0xc3,0x8f,0xf6,0x42,0xe7,0x71,0xb3,0xb7,0x37,0x6a,0xcf,0x65,0xee, - 0xa6,0xc1,0xad,0x1f,0xad,0xdb,0xe6,0xaa,0x17,0x69,0xaf,0xdf,0x21,0x0d,0x90,0xbd,0x15,0x61,0x7f,0xb4, - 0xb5,0xd6,0x12,0xb7,0x57,0xd5,0xde,0x8b,0x5b,0x6e,0x18,0xea,0x5b,0xde,0x05,0xf7,0x8f,0x2d,0xaf,0xd9, - 0x3c,0xbb,0xa5,0x1b,0xc0,0xfe,0xb1,0x4a,0x1a,0x1b,0x69,0xb7,0xae,0x1a,0xcc,0x7f,0xac,0xa6,0xda,0x5e, - 0x6a,0xd4,0x03,0x4d,0x31,0xed,0xab,0xa9,0xa6,0xab,0x89,0x90,0x56,0xb6,0xa6,0x02,0xa2,0x0a,0x81,0x3a, - 0x0d,0x0d,0x5a,0xe8,0x6f,0x20,0x47,0xae,0xe2,0x99,0x2c,0x1b,0xb2,0x16,0xee,0x08,0x26,0x17,0x61,0xd6, - 0x68,0x2c,0x5d,0x3e,0x77,0x29,0xb1,0x16,0x47,0x37,0x30,0x74,0x2a,0x7c,0x07,0x65,0xea,0x86,0x6a,0x24, - 0x5c,0xb3,0xd6,0x76,0x31,0x58,0x62,0x78,0x43,0x4d,0xf2,0xef,0x60,0x5f,0xe8,0x43,0x54,0x44,0x55,0x9d, - 0x06,0x4a,0x74,0x98,0xdc,0x3a,0xd9,0xbf,0xb2,0x4c,0xc3,0x8a,0xf9,0x02,0x8e,0xa1,0xcb,0x5a,0xa7,0x7e, - 0x52,0xe7,0x27,0x1c,0x35,0x53,0x73,0x99,0x0a,0xa3,0x10,0xe2,0x98,0x6a,0xf9,0xb6,0x86,0x05,0xdc,0x51, - 0xf8,0x5a,0xd5,0xaa,0x1b,0x47,0x2b,0x6b,0x0c,0x54,0x99,0x35,0xff,0x47,0xe8,0x05,0xec,0x73,0x84,0xaa, - 0xd6,0x92,0xf8,0x34,0x7b,0xcf,0x43,0x1f,0xeb,0xa1,0xc3,0x82,0xd3,0x84,0x53,0xe1,0x00,0x02,0x63,0x4e, - 0x0e,0xc7,0x8d,0x39,0x44,0xc1,0xe6,0xfa,0xbb,0xb1,0x9f,0xa3,0x4c,0x41,0x63,0x59,0xbc,0x0f,0x1c,0xf9, - 0xff,0x11,0x0e,0x4f,0xaf,0x4e,0x0f,0xcf,0x36,0xbd,0x51,0x37,0x38,0x9a,0x55,0x9a,0xe2,0x63,0xa8,0x42, - 0x2c,0xc1,0xa3,0x2e,0x1b,0x57,0xd3,0x1c,0x66,0x59,0x2c,0xa4,0x96,0xc3,0x31,0x62,0xf3,0xac,0xb4,0xd9, - 0xb5,0x7f,0xb7,0x0a,0xbf,0xe5,0xac,0x25,0xf7,0x62,0x4e,0xbd,0xf0,0x8a,0xf8,0x4a,0x0b,0xf0,0xf4,0x2c, - 0x11,0xd1,0x59,0x25,0x0a,0x25,0x1e,0x8a,0xd7,0x05,0x5d,0x4b,0x0d,0xce,0xe0,0x6d,0xc0,0x39,0x96,0x19, - 0xac,0xd8,0x79,0x51,0xe7,0x19,0x94,0xd1,0x21,0x6e,0x13,0x13,0xec,0x64,0xd2,0x61,0xf5,0x74,0xed,0x95, - 0x70,0x11,0x55,0x05,0xfa,0xd3,0x68,0xa1,0x43,0x9c,0x70,0xdf,0x16,0x8d,0xa3,0x0f,0xe1,0xc3,0x45,0x3c, - 0xbf,0x68,0x5e,0x61,0xce,0xf5,0x44,0x12,0x33,0xe7,0x9b,0x61,0x3a,0xbb,0x8e,0x86,0x09,0x0f,0xb3,0x05, - 0xe2,0xb0,0x5b,0x5b,0xe5,0x95,0x9a,0x06,0x61,0x5c,0xb1,0x7d,0xf5,0xc5,0x32,0x1a,0xe6,0xed,0x9e,0x20, - 0xeb,0x48,0xb5,0x57,0x9f,0x51,0x1b,0x34,0xa5,0xd2,0xfe,0x89,0x92,0x41,0xa1,0xed,0xc2,0x10,0xd8,0xbc, - 0xd1,0x96,0x1d,0xf2,0x0e,0x76,0x30,0x9b,0x4b,0xb8,0xd9,0xdd,0xe5,0x4b,0x14,0x2c,0x3f,0x6d,0x3e,0x2b, - 0x7d,0x26,0x40,0x18,0x14,0x7e,0x5b,0x09,0xe2,0x8c,0x86,0x59,0x55,0x42,0x47,0x86,0x1f,0xef,0x00,0xeb, - 0x0e,0xa6,0x72,0xe2,0x3e,0x69,0x6f,0x42,0x4d,0x15,0xc2,0xc3,0xfb,0xfd,0xf8,0xf0,0xb0,0xf3,0xf0,0xb8, - 0x1f,0x40,0xad,0xcf,0xd1,0x2d,0x8d,0xbb,0xf7,0x99,0x07,0xdf,0xb3,0xba,0x36,0x22,0xad,0x86,0x48,0x29, - 0xd5,0x88,0x4d,0x7b,0x2a,0x80,0x1f,0x8b,0x68,0x6c,0x59,0x69,0x68,0x51,0xc9,0x20,0x2a,0xb8,0xc8,0xd4, - 0x4a,0x18,0x81,0xe6,0x3d,0x36,0xe0,0x58,0x4f,0x39,0x3c,0x38,0xb3,0x02,0xe8,0xed,0x10,0x3b,0xff,0xf3, - 0x10,0xab,0x15,0x5c,0x96,0x0e,0xd0,0x56,0x4a,0x52,0x4b,0x42,0xcb,0x56,0x49,0x2a,0xaf,0x4c,0xdf,0x77, - 0xa1,0x91,0xba,0x0f,0x88,0x6d,0xd0,0xba,0x75,0x5c,0xdd,0xb8,0x2e,0xd8,0x99,0xeb,0x13,0x28,0xf1,0xf2, - 0x5c,0x27,0x0d,0x3d,0x5e,0x88,0xa3,0x74,0x47,0x0b,0x1d,0x3d,0xe5,0xcc,0xf4,0xb1,0xc0,0xd1,0xc1,0x1d, - 0xd2,0x3b,0xa9,0x85,0xc2,0x64,0x3b,0x69,0x3b,0x90,0xc4,0x84,0x84,0x68,0x1e,0x08,0x2d,0x98,0xcc,0xe8, - 0x8f,0xee,0x2e,0x58,0x72,0xfb,0x82,0x01,0xc7,0xe8,0x83,0xa0,0x75,0x99,0xf2,0xbf,0xba,0x4c,0x2e,0x9d, - 0x9f,0x6a,0xbb,0x95,0xdb,0xd7,0x04,0xbd,0xc9,0x77,0xd6,0xa4,0x39,0xca,0xea,0xdc,0x1f,0xec,0x1e,0x27, - 0x1c,0xdb,0x22,0x72,0x66,0xd7,0x5e,0xd3,0x72,0xe1,0xdb,0xa6,0x1a,0x92,0x80,0xd0,0xf3,0x9a,0xfb,0x6f, - 0xdc,0x3a,0xc1,0xd6,0x5a,0x48,0x0c,0x6e,0x77,0xc0,0xe2,0xcb,0xfe,0x52,0x83,0x45,0x3c,0x5c,0xba,0x60, - 0xb1,0xec,0x7e,0x69,0x65,0xbd,0xd4,0x79,0x2b,0xa0,0x49,0x59,0x7b,0x1a,0xb6,0x2b,0xbe,0xc6,0x17,0x0e, - 0xb8,0x8c,0x85,0xd2,0xa0,0xb6,0x2d,0x3c,0xc4,0x01,0xc2,0xe3,0xa0,0xc3,0x72,0xbe,0x37,0x60,0xb8,0xde, - 0x6b,0x57,0x19,0x99,0xfa,0x5b,0xec,0xf6,0xf7,0x6e,0xbf,0xd0,0xfd,0x65,0x77,0x05,0x55,0x7f,0x8b,0xee, - 0x5d,0x0b,0xc6,0xa9,0xed,0xd7,0x58,0x77,0x2c,0xfd,0x5c,0x38,0x56,0x89,0xed,0xb9,0x89,0x0b,0x93,0x36, - 0x67,0xba,0x89,0x76,0x1d,0xe3,0x66,0xb1,0x2c,0xdb,0xe9,0xf5,0xbd,0x7e,0xae,0x7b,0xcd,0xd6,0x42,0x55, - 0xaf,0xf3,0xee,0x3d,0x73,0xb5,0xd6,0xc0,0x6b,0x45,0x50,0xe1,0xb4,0x3a,0x80,0xb2,0x14,0x09,0x57,0x3b, - 0xa3,0x1d,0xe6,0xbe,0x6c,0x9a,0x65,0xd7,0x0a,0xf2,0x61,0xf3,0xa9,0x49,0x48,0x1a,0x55,0xd2,0xd7,0x9a, - 0x7e,0x55,0x0b,0x81,0x68,0x79,0x3e,0x87,0xca,0x26,0xd4,0x06,0xb9,0x63,0xa3,0xb2,0xe5,0xed,0x95,0xb1, - 0xbb,0xcb,0x96,0x5a,0x9a,0x92,0x99,0x5d,0x8d,0xaf,0xcf,0xa9,0xe4,0xa2,0xb7,0x2a,0xd3,0x79,0x4f,0x3c, - 0x1c,0xde,0xda,0xdb,0xb6,0xc1,0xd7,0x99,0x83,0x4f,0x8c,0xbe,0xc1,0x1e,0xdc,0x3a,0x09,0xb7,0x56,0x5a, - 0x1b,0xc0,0x6e,0x6d,0xad,0x93,0xf1,0x97,0x2b,0xbb,0x65,0x52,0xda,0x07,0xb1,0x33,0x37,0xa2,0x61,0x92, - 0xfe,0x61,0xdb,0x6f,0x21,0x46,0x0c,0xa1,0x0a,0x7f,0x81,0x29,0x01,0x2c,0x90,0x36,0x51,0xe8,0xcb,0x00, - 0x72,0x4e,0x18,0x88,0xf2,0xe5,0x01,0x7f,0x8b,0xb2,0x11,0x5c,0x7b,0xb9,0x9f,0x76,0x78,0x83,0x08,0xe9, - 0xb0,0x19,0xe8,0x7a,0x67,0x67,0x08,0x6b,0x60,0xce,0xfa,0x5d,0xb1,0xed,0x70,0x65,0xb1,0xd7,0x7c,0xb3, - 0xf1,0x3f,0x9a,0x91,0x85,0x83,0x2d,0xfa,0x97,0x7e,0xac,0x60,0xc7,0x3f,0xd7,0xdc,0xf2,0x8e,0x64,0xef, - 0x6c,0xb2,0x83,0x08,0x98,0xef,0xb0,0x1d,0xbf,0xa5,0x5a,0x51,0x69,0x94,0x1a,0xfb,0x2e,0x81,0xd8,0x9c, - 0xd1,0xea,0x18,0x68,0x1e,0x84,0xb7,0xca,0x69,0x54,0x76,0xfb,0xc9,0x58,0xfc,0x4f,0x9c,0x8c,0xe2,0x6a, - 0x30,0xb1,0x27,0x63,0x01,0x93,0xfc,0xfa,0xbc,0xb4,0xfb,0x26,0xb9,0x0d,0xa3,0x9f,0xdc,0x8e,0xd1,0x4f, - 0x46,0xda,0x82,0xc2,0x45,0x5a,0xf9,0x8e,0xa5,0x51,0xe5,0xac,0xa2,0x69,0x16,0x04,0xd3,0xea,0x01,0xec, - 0x53,0x8e,0x47,0xb8,0xda,0x87,0x6d,0x10,0x87,0x18,0x81,0x37,0x07,0x6d,0xc4,0x01,0x7b,0x9b,0xea,0x1d, - 0xd1,0x43,0xe9,0x85,0x63,0xa3,0xfa,0x52,0x90,0xc3,0xa2,0x8a,0x05,0x52,0xf6,0x11,0x0b,0xa4,0x4c,0x2c, - 0x90,0xa4,0x4c,0xa0,0x5a,0xbe,0x9f,0x8c,0x74,0x6b,0x6c,0x78,0xa4,0xe1,0x11,0xf1,0xe7,0x39,0xbe,0x68, - 0x03,0xed,0xb8,0x72,0x84,0x4f,0x20,0x9d,0x9a,0x24,0xe1,0x56,0x94,0x73,0x4b,0x85,0x35,0x1c,0xd1,0xac, - 0xa9,0x15,0xdd,0xfc,0xa5,0x8a,0x6e,0x41,0x35,0x6d,0x5d,0xbf,0x1d,0xd1,0x48,0xcb,0xff,0x1f,0xa2,0x99, - 0xe6,0x0d,0xd0,0x2d,0x48,0xa6,0x25,0x5b,0x85,0x62,0xdc,0xe9,0xfb,0x24,0x82,0xc9,0x3e,0x13,0xc1,0xd4, - 0x2a,0xfd,0x24,0x7a,0x91,0xdc,0x9f,0x46,0x2e,0x0d,0xf9,0xed,0xff,0xeb,0xa8,0x25,0xfb,0x34,0x6a,0xc9, - 0xfe,0x7f,0xd4,0xf2,0xb9,0xa8,0x25,0xb3,0xa8,0x45,0x6b,0x7f,0x88,0x21,0x81,0x16,0xfd,0xa4,0x44,0xec, - 0x39,0x13,0xab,0x7e,0x0c,0x68,0x9e,0xe3,0x75,0x9c,0xce,0xe3,0xf3,0x74,0x9e,0xe2,0x7b,0x74,0x53,0x3f, - 0x2d,0xc3,0xeb,0xda,0xed,0x5f,0x78,0x86,0xa5,0x61,0x2d,0xde,0xf9,0xdc,0x8d,0xad,0x6b,0x74,0xf0,0xfa, - 0xfe,0x05,0x3c,0xae,0xac,0x69,0x07,0xd0,0x87,0x83,0x03,0x0d,0x76,0x17,0x26,0xc5,0xd8,0x48,0xf6,0xbc, - 0x80,0xc7,0x55,0x9a,0xca,0x24,0x86,0x52,0x5b,0xaf,0xaf,0xa9,0x74,0xd5,0x67,0x6f,0x5f,0x34,0x57,0x6f, - 0x08,0x56,0xc3,0xdb,0x44,0xad,0xc8,0x02,0xc7,0x33,0x59,0x74,0x71,0x4b,0x95,0x59,0xad,0xca,0x72,0xb7, - 0xbe,0xdd,0x9b,0x31,0xf7,0xce,0xe7,0x7f,0x04,0x08,0xb5,0xc6,0xaa,0xae,0x3e,0xad,0x38,0x2a,0x62,0x5c, - 0x88,0x0f,0x35,0x00,0x9a,0x36,0xa9,0xf5,0xd2,0xe5,0x56,0xb6,0xdb,0xca,0x76,0xe2,0xe3,0x63,0x1c,0xff, - 0xb9,0x41,0xee,0xb0,0x38,0x69,0x1b,0x63,0x96,0x5a,0x16,0x27,0x75,0x87,0x99,0x82,0x31,0xd3,0x7c,0x7e, - 0x7d,0x98,0xb9,0xc3,0xa0,0xe5,0x18,0xa7,0xb5,0x68,0xcb,0x77,0xc6,0xa9,0x32,0x3b,0xd2,0xe2,0xcf,0x8c, - 0x34,0xf9,0xf3,0x23,0xd5,0x28,0xb3,0xde,0xd7,0x82,0xd9,0xa7,0x44,0x59,0x8d,0xdf,0x62,0x87,0x7b,0xfc, - 0xfc,0x5e,0x4d,0xfe,0x77,0x61,0xac,0xe2,0x8a,0x8d,0x9d,0xde,0xc4,0x81,0xae,0x16,0x7e,0xf7,0x73,0xc7, - 0xd1,0xb2,0xf7,0xfe,0x77,0xc7,0x91,0x7d,0x7a,0x1c,0x30,0x9d,0xfe,0x90,0x66,0xfe,0x39,0x1e,0xad,0x2d, - 0xa0,0xef,0x61,0x9f,0x73,0xc4,0x85,0xb1,0x8e,0xbf,0xce,0xce,0xbe,0x2e,0xaa,0xb0,0x60,0xfe,0x95,0xf8, - 0x3d,0xbc,0x32,0x87,0xa8,0x55,0x19,0x10,0xc3,0xa9,0x57,0x20,0x86,0xde,0x94,0x05,0x15,0x9d,0x11,0xb6, - 0xec,0x17,0x62,0x43,0x55,0xf4,0x74,0xd4,0x6f,0x60,0x47,0x8d,0xe9,0x22,0xef,0x1f,0xbd,0x7b,0xbd,0xfb, - 0x9e,0x6a,0x33,0xe7,0x92,0x88,0xcc,0x07,0x07,0x3a,0x32,0xf3,0xcf,0x88,0x28,0x53,0x3d,0xf7,0x56,0xcb, - 0xc4,0x7f,0x45,0xc8,0x59,0xab,0x0d,0x59,0x2b,0x97,0x9b,0x24,0x0b,0x6f,0x38,0x08,0x66,0xe8,0xbd,0x29, - 0xe3,0xb4,0x58,0x7a,0x6a,0x79,0xbd,0x2c,0x93,0xcb,0x17,0x4f,0x29,0x85,0x9f,0x3a,0x2f,0x9e,0x7a,0x6a, - 0x9a,0x16,0x97,0x57,0x71,0x91,0xfc,0x2c,0x7d,0x09,0xbd,0xe7,0x3a,0xa1,0xa3,0x7b,0x17,0x76,0x10,0xd2, - 0x72,0x71,0x2d,0x71,0x30,0xbc,0x27,0xe6,0xb1,0xf3,0x7f,0xff,0x9f,0xce,0xdd,0xe3,0x93,0x7f,0x74,0x5e, - 0xc5,0xc5,0xfb,0xce,0x3a,0xce,0x3a,0x3f,0x26,0xd9,0xf2,0x2a,0x5f,0x4d,0x68,0x53,0xcd,0xf3,0x18,0x4e, - 0xb2,0x42,0xef,0x87,0x79,0x02,0x2b,0x42,0x8e,0x4d,0xd0,0xd1,0xa9,0x1d,0x99,0x28,0x1d,0x9a,0xbd,0xd7, - 0xeb,0x79,0x8a,0xd7,0xe9,0x31,0x87,0xd0,0x08,0xbd,0x47,0x78,0xa9,0xa5,0xbd,0x89,0xd7,0x5c,0x9b,0xfc, - 0x72,0x89,0xab,0x74,0x9a,0xd2,0xc0,0xca,0xd5,0x32,0xbc,0x89,0xc7,0xf0,0x17,0xb9,0xc8,0xd3,0xac,0xb4, - 0x83,0x7e,0xf4,0x03,0x3a,0x3e,0x49,0x97,0xf1,0x39,0x9d,0x18,0xa1,0xf7,0x54,0x3f,0x11,0xc5,0xc0,0x2e, - 0x2b,0xf2,0x0c,0xc1,0xe4,0x6c,0xf6,0x5f,0xd2,0xe7,0xe9,0x2d,0x05,0x54,0x8a,0xb0,0x21,0xde,0x8b,0x09, - 0x2e,0x6b,0xb3,0xfc,0xcd,0x1b,0x9e,0x41,0xfa,0xdb,0x81,0x9d,0xe8,0x34,0xa7,0x45,0xa3,0xb9,0x1d,0xc7, - 0x19,0xc2,0x41,0xc0,0xc4,0x82,0x0a,0xbf,0xa1,0xd7,0xce,0xd8,0xbc,0x63,0x02,0xb3,0x8c,0x40,0xeb,0x39, - 0x1d,0xa0,0xf8,0x2c,0xbf,0x9d,0x32,0xef,0xe8,0x0f,0x36,0x07,0xf5,0xeb,0x65,0xbe,0xe4,0x79,0x36,0xef, - 0x34,0x6d,0xcb,0x92,0x7b,0xa6,0xf3,0xe8,0xde,0xd9,0x37,0x44,0xda,0x58,0xea,0xa9,0x28,0xe3,0xf3,0xb7, - 0x76,0xd5,0x29,0xc5,0x53,0x7a,0x80,0x4f,0x24,0x5c,0x4b,0x67,0xa9,0x93,0xe9,0x20,0x7d,0x53,0x26,0x8b, - 0xe5,0xdb,0x62,0x85,0xcc,0x49,0xd9,0x81,0x58,0x1f,0xd1,0xe0,0xaf,0x69,0x4c,0x05,0xeb,0xf3,0x2f,0x91, - 0xa1,0xca,0xfa,0x1c,0x4a,0xa6,0xcd,0xbc,0xf0,0x86,0xb6,0x4e,0x27,0x2b,0x84,0x84,0x40,0xfc,0x19,0x82, - 0x8d,0x19,0x7c,0x8d,0x38,0x3d,0x79,0xab,0xd3,0xd0,0x97,0xcb,0xc4,0x24,0xd2,0xa3,0x24,0xbc,0xc0,0x75, - 0x42,0x46,0x78,0xc2,0x00,0x0b,0x4d,0x2b,0xcc,0x54,0xe2,0xb2,0x83,0xcf,0x1d,0x53,0x65,0x47,0x9b,0x8e, - 0x74,0xe2,0x8c,0xdb,0x47,0x99,0x4e,0x35,0x6d,0x3d,0xa9,0xed,0x65,0x5c,0xbe,0xcc,0x01,0x2b,0xf4,0x90, - 0x96,0x04,0x8c,0x9d,0x23,0x9a,0xc0,0x6c,0xc6,0xcf,0x3a,0x0b,0xa1,0xe8,0x92,0x61,0xfd,0x6b,0xaa,0x61, - 0xde,0x92,0xaf,0x33,0x2d,0xf2,0xcb,0xce,0x5c,0xe7,0xab,0x97,0x7a,0x93,0xc4,0xc5,0xf8,0x02,0xd3,0x80, - 0x5f,0x4f,0x5d,0xe6,0x48,0xd5,0xa3,0x7a,0xc5,0x2f,0xde,0xd6,0x59,0x4e,0x77,0x26,0xaa,0x45,0xad,0xd6, - 0xa5,0x5a,0x67,0xbe,0x61,0x48,0x4a,0x9e,0x29,0x17,0xa4,0xbd,0x67,0x19,0x20,0xb1,0x23,0x69,0x1d,0x4e, - 0xac,0xe5,0xf8,0x86,0x73,0x3d,0x9a,0xcf,0xf3,0xab,0xa5,0x2c,0x9e,0x36,0x6b,0x76,0xa6,0x47,0x86,0x74, - 0x9d,0xaf,0x8a,0xce,0x24,0x59,0xa7,0xe3,0x04,0xd0,0x07,0x44,0xdc,0x11,0xf4,0xa0,0x9d,0xa9,0x70,0xf1, - 0xda,0xfe,0xec,0x2c,0x56,0xc5,0x22,0x5f,0x26,0xcb,0x5e,0xe7,0xed,0x45,0x62,0x72,0xd7,0xb3,0x50,0x2d, - 0x9a,0x38,0xa4,0x1a,0xe8,0xfd,0xa2,0x2c,0x17,0xe1,0xd1,0xd1,0xc9,0x57,0x77,0x7b,0x27,0x7f,0xff,0x67, - 0xef,0xa4,0x77,0xff,0xa8,0x73,0x75,0x91,0x64,0x68,0xbf,0x03,0xdc,0x62,0x61,0x17,0xbd,0x48,0x4b,0xaa, - 0x9a,0x09,0x9b,0xb2,0x93,0x4f,0xa7,0x9d,0x78,0xd9,0x59,0xe6,0xf0,0x58,0xb1,0xec,0xe8,0xad,0x8a,0xce, - 0x25,0x68,0xc5,0x34,0x9b,0x4c,0x14,0x3e,0x53,0x01,0x4a,0x64,0x73,0xed,0x64,0x8c,0x54,0x5c,0x65,0xc6, - 0xd9,0x35,0xe1,0x9b,0xeb,0x5e,0xe7,0x5f,0xd4,0x18,0xf6,0x61,0x3c,0xa7,0xd7,0x65,0xc7,0x52,0x7d,0x1d, - 0xc1,0xd0,0x1d,0xb0,0x27,0xe8,0xed,0xf9,0x75,0x07,0xaa,0x59,0xc0,0x4c,0xe5,0x45,0x7d,0x9a,0x3b,0x3a, - 0xac,0xcf,0x2a,0x23,0xfe,0x94,0xbf,0xbe,0x7c,0xf6,0xb4,0x33,0x07,0xfe,0x5b,0x76,0x56,0x0b,0x82,0x39, - 0x17,0x99,0x98,0x85,0x72,0x7b,0x5d,0xcb,0x21,0x0b,0xa5,0x97,0xbc,0x6d,0xf6,0x69,0x36,0x78,0x89,0xf2, - 0xab,0xac,0x03,0x94,0xd4,0x29,0xd8,0xd9,0x50,0xaf,0xa3,0xb7,0x06,0x07,0x93,0xe2,0x7e,0x00,0x01,0x29, - 0x02,0x99,0x25,0xa1,0xdc,0x62,0x42,0x83,0x9e,0xd0,0x51,0x5a,0xd0,0x97,0xe6,0xf2,0x9d,0x27,0x04,0x16, - 0xe8,0xe8,0x32,0x9d,0x08,0xde,0xf2,0x94,0x29,0x46,0x5b,0x4e,0x3f,0x11,0x7e,0xb9,0x18,0x2f,0x42,0xef, - 0x27,0x6a,0xe4,0xe9,0x37,0x4f,0x7e,0x90,0x77,0x0d,0x58,0xab,0x32,0xbf,0x84,0x97,0x1f,0xec,0x71,0x9a, - 0xf6,0x65,0x3a,0xcb,0x96,0xd8,0x85,0x2f,0x7e,0xe8,0xe8,0xc0,0xd3,0xed,0xc0,0x24,0x4b,0x40,0x24,0xc1, - 0x39,0x4d,0x0b,0x16,0x85,0x26,0x94,0x32,0xbe,0x4f,0x92,0x85,0x5e,0x08,0xcc,0xec,0x1c,0xe5,0x01,0x18, - 0x30,0xa0,0x20,0x30,0xa1,0x7d,0x4f,0x6f,0x77,0x08,0x4a,0x26,0x39,0xb0,0x3d,0x21,0xe0,0x85,0x6e,0x86, - 0xb0,0xb0,0x6d,0x92,0x46,0xb4,0x3a,0x27,0x14,0x70,0x19,0x2f,0xdf,0xd3,0xb8,0xf8,0xb9,0x83,0x17,0x4f, - 0xcd,0xe8,0xd0,0xa5,0x25,0xa7,0xfd,0x2d,0x0f,0x9e,0xba,0x20,0x14,0x2a,0xd6,0x6c,0xdf,0xe8,0xa7,0x2a, - 0xed,0x87,0xca,0x63,0x2a,0xe1,0x55,0x6d,0xc0,0x46,0x35,0x8d,0x6d,0x4b,0x5b,0x7b,0x4a,0xba,0x9b,0xd9, - 0x1c,0x94,0x76,0x2b,0xdb,0x93,0x53,0x28,0x06,0xa0,0xe5,0x6c,0x6e,0x4f,0x98,0xb7,0x45,0xbc,0xd8,0x39, - 0x83,0x3f,0xef,0x10,0x4e,0xfe,0x7b,0x67,0xf0,0x33,0xda,0x78,0xf9,0x2c,0xc9,0xce,0xe7,0xe9,0xfb,0xce, - 0x2c,0xa1,0x95,0xa1,0xdd,0x73,0x9e,0xfc,0x91,0xce,0x88,0x5e,0x00,0x02,0x9c,0x50,0x86,0x35,0x1f,0x58, - 0x16,0x70,0x92,0xdd,0x63,0xf9,0x6d,0x9e,0x00,0x6e,0x92,0xac,0xf5,0x68,0x7e,0x6c,0xeb,0xcb,0x17,0xcb, - 0x79,0x1c,0x67,0x7f,0xe9,0x94,0xfe,0x29,0x2d,0x89,0x7a,0x19,0x5f,0xc4,0xef,0x93,0xf9,0xe7,0x1f,0xd5, - 0xf5,0x52,0xfa,0xbc,0x7e,0x43,0x9d,0x58,0xc0,0x86,0x74,0xd2,0x3c,0xb5,0x53,0xea,0xe4,0x2c,0x59,0xe7, - 0x44,0x6c,0x65,0xed,0x27,0x77,0x3c,0xa5,0x03,0x27,0xcf,0x76,0x0f,0xee,0xef,0xe8,0xe3,0x2c,0xc1,0x74, - 0x25,0x85,0x76,0x03,0x4b,0x90,0xf2,0x1e,0xf5,0x34,0x0f,0xf0,0x9f,0xab,0x1c,0x94,0x79,0x9e,0x17,0xc8, - 0x54,0x3f,0xc4,0xbf,0x47,0x4f,0x50,0x93,0x74,0xe5,0x73,0x8e,0xf1,0x6f,0x56,0xe9,0x24,0x9d,0x25,0xb7, - 0x1c,0xe3,0x74,0x04,0xe0,0xbc,0x4c,0xb0,0xa0,0x93,0xe4,0x8f,0x64,0x3e,0x05,0xda,0xd4,0x67,0x75,0x92, - 0x96,0x3b,0x67,0xf9,0x5b,0xc9,0x6b,0x0e,0xf1,0x24,0x99,0xb3,0xe1,0x6d,0x42,0xf5,0x64,0x7f,0xee,0x34, - 0x7f,0x37,0x69,0x9e,0xe6,0x2f,0x19,0x16,0x3a,0xb4,0x15,0x3a,0xeb,0x9c,0x4e,0x95,0x92,0xf2,0x54,0x87, - 0x79,0x92,0x54,0xa7,0xf8,0xba,0x36,0x55,0x09,0x1c,0xa7,0x10,0x6f,0xde,0x38,0xcf,0x1f,0x17,0x49,0x32, - 0x21,0x62,0xba,0x88,0xe3,0x09,0xce,0x6a,0xb0,0x04,0xf2,0xd6,0x3c,0xd5,0x6f,0xcf,0x49,0xfd,0xb9,0x20, - 0xee,0x2c,0x43,0xbf,0xce,0xe3,0x25,0x61,0x20,0x80,0xbd,0x9c,0xf3,0x49,0xfb,0x31,0xff,0x5b,0x9e,0xf0, - 0xf2,0xd6,0x8e,0xf9,0xc7,0xc9,0x55,0x02,0x2d,0xdd,0x5b,0x0f,0xfa,0x6a,0xf1,0xed,0xca,0x39,0xf0,0xe0, - 0xee,0xb3,0xc6,0x51,0xff,0xc8,0x3d,0x7c,0x68,0x29,0x04,0xa8,0x79,0xcf,0x55,0xd9,0x2e,0x38,0xeb,0xab, - 0x38,0x7e,0x5f,0x76,0x2e,0x80,0xf5,0x68,0x77,0xcf,0xd3,0x77,0x74,0x98,0x5d,0xf2,0xbc,0xca,0xe1,0x6f, - 0x4f,0xd9,0x34,0xc1,0x30,0xe3,0x29,0x7f,0xa3,0xad,0x4b,0x64,0x06,0xad,0x49,0x16,0xc7,0x05,0x03,0x49, - 0x07,0x98,0xc9,0x1e,0x40,0x89,0xc0,0x33,0xaa,0x22,0xd8,0xa9,0x52,0xed,0xc9,0x0b,0xa7,0xa1,0x9d,0xa7, - 0xf5,0x52,0x34,0x91,0x94,0xe5,0x3c,0xc9,0x08,0x95,0x14,0xd8,0x1d,0x69,0xdc,0x4a,0x03,0xd0,0x77,0x6a, - 0xf9,0x9d,0xdb,0xb3,0x8b,0xe4,0x1c,0xbb,0xf1,0x12,0x83,0xe9,0x75,0xde,0xc8,0x78,0xa5,0x5f,0x38,0xa6, - 0x09,0x99,0xa6,0xe8,0x2b,0x8f,0xd3,0xed,0x03,0x9d,0xff,0x08,0x75,0xfa,0x47,0xaa,0x41,0x5d,0xb6,0xf5, - 0x79,0xb2,0x4e,0x52,0x3a,0x9e,0x27,0x00,0xa0,0xce,0xb7,0x49,0xe7,0x3d,0x9d,0xdc,0x6e,0x6d,0x79,0xfe, - 0xde,0x9d,0x56,0x3a,0x62,0x08,0x32,0x01,0xa5,0x49,0xa7,0x36,0xf5,0x74,0x16,0x2d,0x30,0xa6,0x49,0xb1, - 0x7a,0x8f,0xe9,0x20,0xa6,0x16,0x5d,0x9f,0x08,0x01,0x10,0x03,0x0d,0xd0,0x24,0x36,0xcf,0x7f,0x67,0x8d, - 0x81,0x09,0xf9,0x04,0xd7,0xe8,0xc1,0xc9,0x27,0xcb,0xa7,0xf3,0xee,0x2e,0x01,0x2a,0xa7,0x29,0x4a,0x68, - 0x9b,0x37,0x88,0x80,0x9f,0x57,0xf3,0xce,0x45,0xca,0x98,0x89,0x8e,0x79,0xcc,0x08,0x23,0x34,0xca,0x76, - 0x15,0x8f,0x2f,0xca,0xab,0x1c,0x94,0x40,0x4a,0x53,0x93,0x54,0xb8,0x3c,0xa1,0x9c,0x1c,0xa1,0x70,0xc5, - 0xd3,0xda,0xc9,0x69,0x87,0x01,0x81,0xf0,0x74,0x2c,0x6f,0xa5,0x0b,0x7e,0xb1,0x15,0x1a,0xca,0xe0,0xeb, - 0xe4,0xbc,0x58,0xd1,0x01,0x52,0x51,0x07,0x17,0x35,0xea,0x80,0xe6,0x94,0x01,0x8c,0x4f,0x68,0x3a,0x36, - 0x69,0xca,0x92,0xab,0xf4,0xdd,0x1f,0x80,0xb9,0x38,0xdb,0x19,0x66,0xaf,0xf3,0x0b,0x01,0x20,0x15,0x4a, - 0xdf,0x65,0x0c,0xbb,0x57,0x44,0x60,0xd1,0xb0,0x9d,0xb5,0x42,0x31,0x28,0x7c,0xd0,0x80,0xe8,0xcf,0x1f, - 0xe9,0x3b,0x7c,0xbf,0x4a,0x68,0xd8,0x57,0x80,0x5d,0x7a,0xb9,0x4c,0x12,0x7d,0x90,0x9d,0xc3,0xae,0x7b, - 0x97,0x52,0xa0,0xc7,0x5b,0xe9,0x84,0xa4,0xf8,0x1c,0x4a,0x21,0xbe,0xbc,0x85,0x52,0x78,0x83,0xa3,0x85, - 0xfa,0x31,0x31,0xb4,0x02,0xda,0xfa,0xb3,0x94,0xc2,0x79,0xfa,0xee,0x2a,0x29,0xde,0x33,0xf2,0xdf,0x56, - 0x9e,0x05,0x39,0x28,0x07,0xb1,0xc1,0x56,0x62,0x02,0x51,0xbe,0x76,0x40,0x55,0x99,0x75,0xd0,0xc9,0x4b, - 0xfd,0xcf,0x8b,0xde,0x9c,0x76,0xc2,0x8a,0xd8,0xfe,0xa6,0x8d,0x85,0xc7,0x88,0xcb,0x58,0x6c,0x58,0x0d, - 0xd7,0xa0,0xaf,0xab,0xf3,0x6f,0x92,0x79,0xe8,0xfd,0x8d,0x50,0x02,0xcd,0x1c,0x55,0x1d,0x96,0x8a,0x2d, - 0x20,0x6e,0x0c,0xe9,0xb0,0x77,0xac,0x96,0x72,0xbe,0xef,0x9d,0xe8,0x27,0x3e,0x3d,0xf0,0xaa,0xf3,0xbc, - 0x20,0x70,0x1f,0xa3,0x17,0xa1,0xb7,0xf1,0xd4,0x6a,0x81,0xe4,0x1f,0x8a,0x7c,0xc6,0x8b,0x40,0xd9,0x62, - 0x16,0xa8,0xbc,0x8d,0xcf,0xe1,0xc4,0x4f,0xce,0x2c,0x23,0x58,0xb8,0xa9,0x88,0x21,0x5d,0x19,0xd3,0x0c, - 0xe6,0xb3,0x9b,0xb8,0xad,0x53,0x12,0x8b,0xf0,0x26,0xc9,0xe4,0xf0,0xa7,0x26,0x52,0x82,0xce,0xe3,0x1e, - 0xff,0xab,0x48,0x86,0x5a,0x0e,0x7d,0xac,0x1e,0xd7,0xb3,0x52,0x5e,0x46,0xf2,0xd4,0x86,0x3d,0x3c,0x28, - 0xb3,0x73,0xe8,0xd1,0x79,0x40,0x93,0x11,0x97,0x73,0x3e,0x81,0x3c,0x35,0xb7,0x67,0x0c,0x47,0xb7,0x74, - 0x50,0xbf,0x05,0x1b,0xd6,0x12,0x71,0x51,0x3a,0xe6,0xb0,0xb4,0x95,0xf3,0x6e,0xe3,0x3c,0x76,0xaf,0xf1, - 0x1b,0xef,0xb1,0x3d,0xee,0x20,0xbf,0x3b,0x30,0xcb,0xef,0x06,0x50,0x59,0x03,0xd5,0x9e,0xe2,0x28,0x61, - 0x9e,0x59,0x09,0x36,0x44,0x63,0xf8,0x00,0xe3,0x3a,0xb1,0xe7,0xdc,0x09,0x72,0xa0,0x0d,0xcf,0xac,0xd7, - 0x52,0x86,0x49,0xf8,0x35,0xf0,0x3d,0x7e,0xf4,0x8c,0x05,0x9a,0x16,0x33,0x99,0x41,0x43,0x39,0xf4,0xc2, - 0xe8,0x7f,0x9e,0x48,0x50,0x8c,0xa4,0x67,0xd7,0xd7,0x7a,0xbb,0x2e,0xe8,0xc0,0xae,0x83,0x06,0xf4,0x46, - 0x7a,0x42,0x14,0x03,0x9f,0xc9,0x32,0x72,0xa2,0xa6,0xe1,0x78,0x00,0x6c,0xfa,0x02,0xe1,0x3e,0x1c,0x57, - 0x3b,0xc0,0x06,0x49,0x41,0x81,0xd4,0xf8,0x43,0x9a,0xb3,0x5d,0x81,0xef,0x1d,0xc5,0x8b,0xf4,0x48,0x03, - 0x8a,0x17,0xf4,0x88,0xed,0xc9,0x6a,0x9e,0x00,0x76,0xdd,0x63,0x6a,0xf7,0x08,0xd4,0x63,0x23,0x75,0x93, - 0xa4,0x60,0x1b,0xf4,0xc4,0x21,0x8c,0x5b,0xde,0x38,0xe5,0x9c,0xe7,0x33,0x5c,0xbb,0x05,0xba,0x6d,0x38, - 0x22,0x1c,0x36,0xbb,0x51,0x81,0xc1,0x9f,0xed,0x49,0x55,0xf2,0xaf,0x74,0xa6,0xea,0x81,0xc8,0x69,0x5a, - 0x1a,0xdf,0xd1,0x86,0xd6,0xcd,0xb8,0xa2,0xd6,0x3d,0xb8,0x0e,0xc0,0x2e,0x62,0xcb,0x77,0xd6,0xc4,0x3c, - 0xee,0xc7,0x0f,0xb4,0x73,0x04,0x6d,0xa6,0x13,0x57,0x9e,0xd5,0xe5,0x03,0xae,0x51,0xd9,0x00,0xb4,0x18, - 0x14,0xd1,0x32,0x5c,0xee,0x49,0xf8,0xc5,0x8c,0xe3,0x64,0xe6,0x35,0xcb,0x7e,0x42,0x38,0x2a,0xed,0x46, - 0xcb,0x2d,0xa0,0x23,0x61,0xff,0xd1,0x49,0xaf,0x06,0xb5,0xe2,0xeb,0x72,0x3a,0xcf,0xe1,0x68,0xe0,0xc8, - 0xf8,0x9c,0x08,0x9c,0x6c,0x11,0x2e,0x69,0x46,0x7a,0x84,0x32,0xfc,0xe5,0x82,0xc0,0x7b,0xe2,0x7a,0x77, - 0xc8,0x38,0xb8,0x5d,0x99,0x2f,0x5a,0xe1,0x4f,0x63,0x13,0xea,0x20,0x82,0x16,0x28,0x2d,0x86,0x05,0x32, - 0x21,0x5e,0xa6,0x92,0xc2,0xdc,0x22,0xad,0x2e,0x35,0x44,0xb2,0x23,0x10,0x79,0xc4,0xcc,0x49,0x57,0x10, - 0x3a,0x73,0x17,0x18,0x54,0x85,0x14,0x4a,0x67,0xa9,0x7b,0x26,0xb5,0x86,0x25,0x6a,0x39,0x9c,0x0f,0x16, - 0x77,0xd4,0x32,0xe8,0x44,0xc1,0x26,0xf5,0x2f,0x94,0x52,0xa1,0x96,0xda,0x27,0x93,0x2a,0xb8,0xa6,0xf6, - 0x09,0x29,0x40,0x3d,0xb5,0xc4,0x74,0xe1,0x62,0xa1,0x7a,0x2b,0x36,0xdd,0x22,0xa6,0xda,0x77,0x9d,0xb8, - 0x6d,0x01,0xc9,0xcf,0x82,0xf0,0x46,0x31,0x58,0x4e,0x99,0x39,0x97,0xd5,0x6b,0x45,0x33,0xb7,0x2e,0x9d, - 0x5e,0x7a,0xc2,0x3b,0xb3,0x04,0x11,0x78,0x4d,0x82,0x60,0x96,0x65,0x52,0x32,0xd3,0x42,0xd0,0xea,0x36, - 0xa9,0xbd,0x33,0xd4,0x4b,0x77,0xbb,0xaa,0x9e,0xa0,0x3d,0xf8,0x9d,0x84,0x36,0xd9,0x76,0x27,0xf2,0x8e, - 0x3c,0xc7,0x11,0x43,0xe7,0x6e,0x6b,0x9e,0xc3,0x5a,0x9e,0x7b,0xad,0x79,0x4e,0x4f,0x6b,0x99,0xee,0xb7, - 0x66,0xa2,0xd3,0xb7,0x39,0x52,0x3a,0xa3,0xee,0x7e,0x79,0xcc,0xd3,0xb5,0xbb,0x29,0xdc,0xd9,0x1a,0xcf, - 0xe9,0x20,0xb4,0x93,0xa0,0xef,0xbc,0xab,0x29,0xa2,0x1a,0x08,0xd9,0x18,0xd4,0x0d,0xe6,0x48,0xce,0xd3, - 0x36,0x13,0xba,0xea,0x9c,0x36,0x50,0xda,0xd3,0x07,0xb1,0xd1,0xd5,0x76,0x79,0x60,0xcf,0x38,0xc1,0xb8, - 0xad,0xac,0x9c,0xdc,0x7a,0x96,0xb5,0x9f,0xc2,0xbb,0xc6,0x1f,0xa1,0x81,0x38,0xe2,0xb2,0xfa,0x7a,0x19, - 0xf4,0x04,0xf1,0x8f,0x75,0x86,0x28,0x3a,0x05,0x66,0x86,0xeb,0x85,0xd1,0x07,0xf1,0x7e,0x18,0x1a,0xe7, - 0x45,0x6d,0xfd,0xdc,0xb6,0x4f,0xc1,0x5b,0x04,0x32,0xf9,0x4b,0xd3,0xd0,0xe1,0x03,0x77,0x37,0x1b,0x18, - 0x04,0x73,0x2c,0x4e,0xbc,0xe0,0x4f,0xce,0xcf,0x67,0xd4,0x0d,0xe9,0x08,0xd5,0xab,0xe7,0xeb,0x33,0x0a, - 0x88,0xf0,0xc4,0x14,0xb9,0xfb,0x39,0x45,0x6a,0x32,0x15,0x53,0xf2,0x5e,0xe8,0xde,0xbc,0xb7,0x8c,0x25, - 0x5d,0x18,0xf8,0xfe,0x8c,0x26,0x6a,0x82,0x19,0xd3,0xc4,0x97,0x7f,0xa2,0xa4,0x16,0xd4,0x98,0xa2,0xcd, - 0xe5,0xff,0xd4,0xfa,0x54,0xa0,0x01,0x8f,0x40,0x4d,0xe2,0xe6,0x13,0xa7,0xc8,0x80,0x70,0x0e,0x76,0x16, - 0xf1,0x75,0x84,0x60,0x9a,0x85,0xd5,0x97,0xc9,0xbd,0x20,0xbc,0x9d,0xcc,0x38,0xd2,0x84,0x74,0x13,0x4d, - 0xb6,0xfa,0x4f,0x37,0xd4,0x46,0xe9,0xcc,0x78,0x94,0xfc,0x09,0x6a,0x63,0x07,0x17,0x7f,0xba,0xef,0xd0, - 0x2f,0x13,0x4e,0xc0,0x30,0x3a,0xb7,0xcc,0x07,0x6f,0x17,0x3d,0x27,0x2e,0x92,0x07,0x8e,0xae,0xb3,0x12, - 0xd1,0xb1,0x76,0xa5,0x0a,0xd6,0x05,0x1a,0x26,0xb0,0x4f,0xee,0x1b,0xa7,0xfa,0xbe,0x37,0x4d,0x71,0x3b, - 0x67,0x69,0x5a,0x9a,0x36,0xed,0x86,0xff,0xf1,0xf5,0x0b,0xfe,0x2c,0xfd,0x78,0x8e,0x6c,0xec,0xed,0x2b, - 0x59,0x42,0xab,0x44,0x53,0xba,0x4c,0xe9,0xd3,0x80,0xc2,0x7b,0x7f,0x4f,0xee,0xab,0x3c,0xfb,0xa9,0xce, - 0xc6,0xd4,0x6d,0x78,0x1b,0x1d,0x63,0xda,0xa5,0xc0,0x2d,0xa0,0x7f,0x72,0x7c,0xfc,0x85,0x10,0x1a,0xc9, - 0xe4,0x08,0x7e,0x41,0xcb,0x18,0xae,0xd4,0xfa,0x3b,0x54,0xc2,0xd4,0x32,0x84,0x50,0x29,0xd8,0x3d,0x24, - 0xdd,0x35,0xf0,0xc4,0x30,0xb8,0xb3,0x84,0x4f,0xd5,0xbf,0xb8,0x64,0x3b,0x9d,0x06,0x9b,0x53,0x1d,0xa9, - 0x9f,0x9e,0x37,0x8e,0x86,0x0c,0x33,0x56,0xac,0xed,0x56,0x78,0x0c,0x4d,0xaf,0x7f,0xea,0xd4,0x85,0x33, - 0xc3,0x16,0x32,0x7f,0xb3,0xd9,0x13,0x37,0xf0,0x4d,0x4a,0x9f,0x61,0x75,0x87,0xfc,0x77,0x80,0xae,0x31, - 0x2e,0x4c,0x0e,0x67,0x84,0xe9,0xf4,0xdd,0xe3,0xe3,0x20,0x30,0xdb,0x51,0x58,0xa4,0x5b,0x21,0xaf,0xd6, - 0x8a,0xc0,0x5c,0x1b,0xd7,0xd1,0xda,0x7b,0xc9,0x6e,0xa8,0xd3,0x5b,0x82,0x5f,0xf2,0x2c,0xb9,0x21,0x30, - 0xeb,0x1e,0xaf,0xca,0x3a,0x11,0x4c,0x6c,0xb9,0x2e,0x12,0x25,0x55,0xe8,0x67,0x44,0x60,0xe4,0x48,0xc3, - 0xb7,0xd5,0x59,0x20,0x90,0x34,0xa7,0x0e,0x33,0x1d,0x61,0xb1,0x5f,0xde,0x4e,0x5e,0x17,0x47,0xf5,0x3a, - 0xc4,0xad,0x6d,0x6a,0xfc,0xee,0xdc,0xda,0x4c,0xaa,0xbd,0x17,0x34,0x9a,0x42,0x9f,0x6f,0xe1,0xe1,0x76, - 0x80,0x5e,0xdf,0x26,0xdf,0xb0,0x21,0x4f,0x2a,0xd2,0x54,0xa2,0x8d,0x4f,0x92,0x7b,0xe2,0xaf,0x0b,0xce, - 0xf5,0xff,0xc7,0x09,0x46,0xbd,0xb8,0x27,0x40,0x49,0xc2,0xed,0x5b,0x56,0xff,0x36,0xb8,0x35,0xfc,0x7f, - 0x0f,0x48,0xc1,0x72,0xbf,0x02,0x96,0x4d,0x79,0x41,0xc5,0x03,0x54,0x88,0x7a,0x96,0xe4,0x08,0xc5,0x71, - 0xa4,0xe5,0x06,0x1e,0xdc,0x6e,0x73,0xec,0x80,0x1b,0x23,0x9b,0xba,0xad,0x8d,0xed,0xce,0x40,0x92,0x16, - 0x1e,0x4e,0x90,0x37,0xf6,0x23,0x9d,0x56,0xcb,0x00,0x1e,0xd0,0xdc,0x04,0xeb,0xb1,0xcf,0xf8,0x86,0xa8, - 0x7f,0x86,0x5e,0x21,0xf5,0x90,0xd8,0x9f,0xe2,0xda,0x36,0xbc,0x3b,0x6a,0xe9,0x3b,0x07,0xdf,0x2b,0xbb, - 0x9e,0xf2,0xba,0xf4,0x94,0xcd,0xb6,0x7f,0x79,0x31,0x76,0x27,0x8e,0x09,0xf9,0xad,0x62,0x77,0x09,0x34, - 0x35,0x46,0xa2,0x71,0x43,0x10,0x44,0x14,0x4a,0xb1,0xe3,0x8b,0xd3,0xc5,0x39,0xd8,0xea,0x70,0xd5,0xc0, - 0x4e,0x24,0xeb,0x02,0x90,0x3f,0x5f,0x7e,0xf9,0xe7,0xda,0xd5,0xae,0x25,0x9c,0xf6,0xad,0x84,0xcb,0x9d, - 0x94,0x36,0xe1,0x49,0xe4,0xfd,0xcd,0xeb,0x96,0xd0,0x3b,0xda,0xfe,0x3f,0x99,0xac,0x24,0xd3,0x83,0xe3, - 0x01,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xd2,0x2e,0xfc,0x57, + 0x24,0x5c,0x5f,0x19,0x18,0xb5,0x68,0xc9,0x49,0xe6,0x9d,0x80,0x46,0x78,0xbd,0x26,0x4e,0xbc,0x8d,0xed, + 0x2c,0x33,0x8a,0x5e,0x1d,0x88,0x6c,0x49,0x88,0x49,0x80,0x01,0x40,0x2d,0x91,0x78,0x7f,0xfb,0x57,0x4f, + 0x55,0x6f,0x00,0x21,0x27,0xf3,0x9e,0x7b,0xbe,0xe3,0x63,0x11,0xe8,0x6e,0xf4,0x5a,0x5d,0x5d,0x7b,0x6f, + 0x9f,0xae,0xca,0x69,0x5b,0x54,0x65,0xdc,0x2a,0x9d,0xdc,0x44,0xd5,0xc9,0x6f,0x7a,0xda,0x46,0x59,0xd6, + 0x5e,0x2f,0x75,0x75,0xba,0xa5,0xaf,0x96,0x55,0xdd,0x36,0x3b,0x3b,0x1b,0x39,0x8b,0x6a,0xb6,0x9a,0xeb, + 0x89,0xfc,0x8c,0x4c,0xb9,0x4c,0xc7,0x49,0x1a,0xd9,0x3a,0x7d,0xe1,0x99,0x3e,0x2d,0x4a,0xbd,0xb3,0x23, + 0xbf,0xa3,0x7c,0x31,0x9b,0xc8,0x63,0x7c,0x78,0x44,0xed,0xa6,0x77,0xb5,0x3b,0x31,0xbf,0xa3,0xfc,0xaa, + 0xa8,0xa4,0xf6,0xd6,0x3f,0xaf,0xe3,0xf6,0xbc,0x68,0x94,0x1b,0x42,0x72,0x53,0xeb,0x76,0x55,0x97,0x5b, + 0x7e,0x50,0xc9,0x8d,0x7d,0xde,0xd2,0x71,0x9d,0xdc,0x14,0xa7,0x71,0x79,0x58,0x1f,0x25,0xa6,0x20,0x9e, + 0x6d,0xdf,0xc7,0x17,0x79,0xbd,0x55,0x64,0x48,0xca,0x6e,0x4c,0x5a,0x7a,0xb3,0x56,0xc5,0x2c,0xad,0xd5, + 0xbc,0xca,0x67,0x7a,0x96,0x6e,0x1f,0xac,0xc7,0xe6,0xd3,0x16,0x9f,0x4e,0xf3,0xf9,0x3c,0x2e,0x6c,0x0d, + 0xaa,0x50,0xfe,0x59,0x27,0xf4,0x22,0x9f,0x65,0xdb,0xfb,0x3e,0x63,0x8d,0x66,0xca,0xec,0xc6,0x55,0xa4, + 0x47,0x8b,0x8c,0x26,0x7f,0x34,0xcd,0x4a,0xfa,0xbb,0xcc,0xa2,0x48,0xe9,0x78,0x9f,0x06,0x77,0x18,0xae, + 0x8d,0x2a,0x93,0x9b,0xd6,0x4d,0x73,0x19,0x1f,0x24,0x6b,0xd5,0xcf,0x8f,0x56,0x8d,0xde,0x6a,0xda,0xba, + 0xa0,0x99,0x1c,0xbb,0x71,0xd7,0x98,0x05,0x34,0xaa,0xb3,0x52,0x5f,0x6e,0xe5,0xf4,0xaa,0xca,0xac,0x8a, + 0xf3,0xd1,0xb2,0xae,0xda,0x0a,0x13,0x3e,0xaa,0xf5,0xef,0x2b,0xdd,0x00,0x04,0x6c,0xaf,0xd0,0xdf,0x56, + 0x97,0xb3,0xb8,0x54,0x41,0x41,0x19,0x95,0xcb,0xa1,0xb7,0x72,0x6d,0xa6,0x2d,0x7e,0x98,0xa8,0x8a,0x7e, + 0xbe,0x48,0x54,0x4e,0x3f,0x5f,0x25,0x0a,0xdd,0xfc,0x7b,0xa2,0xa6,0x59,0x1d,0x37,0xc9,0x78,0x3a,0x7a, + 0xcc,0xeb,0x96,0xab,0xe9,0x68,0x5a,0xeb,0xbc,0xd5,0x59,0xb8,0x4c,0xa6,0xd9,0x9a,0x66,0x73,0xa1,0xeb, + 0x33,0x1d,0x37,0xaa,0x4d,0x68,0x8c,0xd3,0xd1,0xd3,0xbc,0x9c,0xea,0x39,0x1a,0xa0,0xaa,0xed,0xeb,0xc7, + 0xea,0x93,0x2e,0x91,0xf6,0x25,0xd2,0x8a,0xc6,0x17,0xda,0x47,0x02,0x2d,0xcb,0x50,0xed,0xef,0xea,0x6a, + 0x51,0x34,0x1a,0xd9,0x94,0x8a,0xca,0x9b,0x25,0x75,0x65,0x86,0xef,0xa8,0xc3,0x7e,0x7e,0xa7,0xfe,0x79, + 0x44,0x80,0x9a,0xaf,0xe6,0x6d,0x36,0xfd,0x8f,0x26,0x5c,0x5a,0x8c,0x0e,0x05,0xb0,0xb7,0x1e,0xd7,0x75, + 0x7e,0x7d,0x44,0xf0,0x9d,0xad,0x04,0x68,0xa8,0x79,0xf7,0x41,0x11,0x74,0xb1,0x5c,0xcd,0xe7,0xdb,0xb4, + 0x0d,0x06,0x76,0x5c,0xeb,0xbf,0xa8,0x06,0x9a,0x78,0x61,0x32,0xef,0x6a,0x25,0x97,0x2d,0x8e,0x1d,0xe0, + 0xda,0xb8,0xa8,0x8a,0xd9,0xd6,0x3e,0x9e,0x13,0x4a,0xb7,0x2d,0x6e,0xbb,0x16,0x77,0x76,0xe2,0x36,0x3b, + 0x6c,0x8f,0x12,0x85,0x41,0x25,0xa7,0x55,0x1d,0x0b,0xf8,0x12,0x40,0x67,0xed,0x68,0xae,0xcb,0xb3,0xf6, + 0x7c,0x5c,0x3e,0x2a,0xc6,0xe5,0xee,0x6e,0xa2,0xa5,0x51,0x54,0xaf,0xda,0xc3,0xf2,0x48,0x95,0xb4,0x86, + 0x63,0x3d,0xa7,0x49,0xb2,0x5f,0x56,0x5b,0x05,0x6d,0x9d,0xe4,0x2d,0x37,0x14,0x00,0xe0,0x79,0xde,0xbc, + 0xbd,0x2c,0x69,0x7d,0x96,0xba,0x6e,0xaf,0x4d,0xe7,0x55,0x95,0xec,0xec,0x74,0x2b,0xad,0x8e,0x54,0x45, + 0x95,0x32,0xd0,0x35,0x02,0x6d,0xb4,0x6f,0x62,0x82,0x82,0x55,0xb6,0x51,0x69,0x5b,0x7d,0xa0,0xb5,0x29, + 0xcf,0xc6,0x7e,0x61,0x6f,0x8a,0x86,0x97,0x82,0xb6,0xb4,0x79,0x7a,0xb2,0x3a,0x3d,0xd5,0x75,0xba,0x09, + 0x2d,0xdd,0xb5,0x93,0x62,0xbd,0xb9,0xa5,0x3a,0xcc,0xe7,0x53,0x7a,0x7c,0x51,0xd5,0x8b,0x67,0x79,0x9b, + 0x0f,0xd5,0xb5,0x2a,0x05,0xdf,0xcd,0xfc,0xe4,0xda,0xe2,0x3b,0x3b,0x2d,0x4d,0x4a,0xd3,0x02,0x82,0x83, + 0xe4,0x75,0xb7,0x83,0x3f,0x15,0xfa,0xf2,0x2f,0x56,0x1c,0x7c,0xb5,0xb3,0x13,0xbc,0xd0,0x36,0x41,0x2d, + 0x93,0xcd,0x24,0xaa,0x2f,0xa5,0xb5,0x6e,0x47,0x27,0xe6,0x2b,0xfb,0x14,0x76,0x2c,0xf8,0x0c,0x7d,0x93, + 0xa9,0x1d,0xea,0x52,0xc3,0x39,0x21,0xdc,0x52,0xf1,0x37,0xab,0xc5,0xc9,0xf0,0x34,0x97,0x9c,0xd3,0x2b, + 0x2e,0x6b,0x99,0x12,0x42,0x6d,0x7e,0xb4,0x23,0x1c,0xf8,0x78,0x4b,0x00,0x98,0x16,0x85,0xbf,0xa2,0x79, + 0xd3,0x9f,0x5b,0x49,0xe4,0x6f,0x2e,0xe1,0x8b,0x62,0xfe,0xd9,0xaf,0x90,0x3f,0xb0,0xf0,0xf3,0xea,0xe4, + 0x73,0x5f,0x21,0x7f,0xa0,0x2d,0xf3,0x41,0x5a,0xc9,0x14,0xea,0x7c,0x31,0x34,0x2c,0x60,0x84,0x9d,0x1d, + 0xda,0xe5,0xa3,0x65,0xb1,0xd4,0xfc,0xe5,0x8f,0xef,0x5f,0x7d,0xd0,0x79,0x3d,0x3d,0x7f,0x97,0xd7,0xf9, + 0xa2,0xf9,0x8b,0xb0,0xd0,0xfb,0xaa,0x07,0x6b,0xbd,0x5c,0x59,0xd6,0xbc,0x9c,0xe5,0xf5,0xec,0x49,0x5d, + 0x5d,0x36,0xba,0x7e,0x5e,0x5e,0xa4,0x1b,0xe7,0x6b,0x1c,0xb4,0xe4,0x96,0xad,0xcc,0x2f,0x8a,0xb3,0xbc, + 0xad,0xea,0xdb,0xdb,0xe8,0xbd,0xce,0xa7,0xed,0x9b,0xbc,0x2d,0x2e,0x34,0x75,0x25,0x73,0x59,0xd8,0x9b, + 0xb3,0xd5,0x14,0x63,0x1b,0xea,0xec,0x65,0x51,0xce,0xaa,0xcb,0xe1,0xbc,0x59,0x35,0x5d,0x2d,0x74,0x49, + 0xcb,0x4c,0xa8,0xe4,0x79,0x3e,0x3d,0x4f,0x73,0xc5,0x07,0x85,0xeb,0xde,0x56,0x1b,0x77,0x4e,0x7b,0xad, + 0xea,0x01,0x82,0x06,0xc7,0xfb,0x00,0x6e,0xd5,0x13,0x3e,0xf7,0x5b,0xa6,0x0e,0x40,0x91,0xf0,0xab,0x5e, + 0x7b,0x8c,0x47,0x94,0x40,0xcd,0x68,0x2f,0xaf,0xcf,0xb8,0x27,0x8d,0x45,0x7f,0x35,0xa1,0xbf,0x9a,0xd0, + 0x5f,0x1e,0xbb,0x2c,0xa9,0xc4,0x9e,0xa5,0xe5,0x5a,0xc9,0x91,0x99,0xf6,0x0f,0x10,0x53,0x20,0xa7,0xce, + 0xba,0x2c,0xee,0x37,0xa8,0x8b,0xac,0xa4,0x8e,0x6e,0xd2,0x52,0x7a,0xd2,0xc4,0xf8,0x38,0xd5,0x6b,0x3a, + 0xb2,0xd6,0x8a,0x76,0xdb,0x20,0x0c,0xb5,0x74,0xaa,0x2f,0xe7,0xf9,0x54,0xc7,0x0f,0xfe,0xfb,0xd7,0xe6, + 0x6f,0x0f,0x54,0x14,0x25,0x3e,0x89,0x52,0xee,0x71,0xd2,0x7a,0xdd,0x3d,0xd7,0x7a,0xa7,0x9a,0x47,0x9d, + 0xdd,0x42,0x7d,0x4a,0x8b,0xa6,0xde,0x4d,0x15,0xc8,0x0c,0xc6,0x16,0x71,0x7f,0xae,0x12,0xcc,0x21,0x4d, + 0x58,0xe9,0xe6,0x8e,0xe6,0x8d,0xa7,0x3a,0x9c,0x3a,0x47,0x62,0x8d,0xf2,0xe5,0x72,0x7e,0xcd,0xa3,0xdd, + 0xec,0xa6,0x5b,0xea,0x60,0xd0,0xdb,0xdb,0xed,0x68,0x5a,0x11,0x80,0xd7,0x04,0x65,0x55,0x3d,0x38,0x7f, + 0x9d,0x12,0x23,0x8b,0xc1,0x81,0xf3,0x86,0xd2,0xb1,0x6f,0x87,0xe6,0xa0,0x77,0x60,0xe3,0xa4,0x44,0xea, + 0xed,0x6d,0xac,0x89,0x9a,0x1b,0x5a,0xb6,0x11,0x28,0x8d,0x17,0x44,0x11,0xb6,0xaf,0x9e,0x0f,0x2f,0xec, + 0xa8,0x99,0x17,0x53,0xa2,0x92,0x09,0x06,0xe4,0x31,0xde,0x57,0xfb,0x49,0x42,0x95,0x62,0x5c,0xc7,0xb6, + 0x4b,0x09,0x53,0xaa,0x7a,0xfd,0x1f,0xd1,0x23,0xa0,0x94,0x2d,0x29,0xd3,0x50,0x0f,0xf9,0xbd,0x28,0x5b, + 0x5d,0x4f,0xf5,0x92,0x06,0x4c,0x47,0xa3,0x21,0x02,0x53,0xa6,0x12,0x55,0xad,0x9b,0x25,0xcd,0x87,0x96, + 0xd7,0xb5,0x23,0xf3,0xfe,0x2e,0x64,0xde,0x43,0x21,0xf3,0x0e,0xfe,0x4b,0xe8,0xbc,0x83,0x7f,0x10,0xb4, + 0x6f,0x12,0x94,0x9d,0x09,0xdb,0x3c,0x18,0x98,0xbc,0xa8,0x0c,0xc1,0x77,0xb3,0xaa,0xe7,0xa9,0x07,0x83, + 0xfd,0xa3,0xb5,0xf2,0x6f,0x07,0x47,0x49,0xa2,0x82,0xc2,0x85,0xea,0x0c,0x48,0xdd,0x2c,0x74,0x7b,0x5e, + 0xcd,0xd2,0xe8,0x4c,0xb7,0xd1,0x1a,0xa4,0xe3,0x48,0x52,0x88,0x4a,0x91,0x07,0xa2,0x06,0x5e,0x55,0x97, + 0xba,0x7e,0x9a,0x37,0xc4,0x3a,0xc8,0x14,0x66,0x87,0x8d,0x92,0x13,0x84,0x68,0x95,0xcc,0x52,0x87,0x34, + 0xf2,0x6a,0x7e,0xa1,0xa9,0xcb,0x63,0xc0,0xf4,0xc6,0x4c,0xd9,0xc1,0x8d,0x0c,0x26,0x8a,0xc3,0x41,0xea, + 0xd1,0xaa,0x6c,0xce,0x8b,0xd3,0x96,0x70,0xf7,0xe9,0x6a,0x7e,0x5a,0xcc,0xe7,0x7a,0xa6,0xb0,0x17,0x81, + 0x70,0xf4,0x2c,0xc1,0xa6,0x1d,0xa8,0x51,0x26,0xfb,0x8e,0x2a,0x97,0xab,0xe6,0xfc,0xee,0xfa,0xc6,0xda, + 0xee,0xa6,0x84,0xf6,0xde,0xa8,0x3d,0xd7,0x0c,0x40,0xdc,0x89,0x44,0xb9,0xa7,0x10,0x1d,0x55,0xae,0xa1, + 0xc3,0x68,0xa6,0xe7,0xba,0xd5,0x91,0xe2,0xa9,0x53,0xd1,0x39,0x41,0x29,0xfd,0x54,0x4b,0x34,0xdf,0x44, + 0x47,0xaa,0x03,0xf3,0x7e,0x89,0x89,0x2a,0xcc,0x02,0x9c,0xe5,0x91,0x19,0x8f,0xce,0x4c,0x51,0x6c,0xd7, + 0xab,0xbc,0xbd,0x25,0x04,0x6a,0x57,0xa9,0x55,0x58,0x6b,0xc2,0x5f,0xb4,0xad,0x93,0x4e,0x67,0x96,0x55, + 0x83,0x4e,0x2c,0x57,0xfc,0x37,0x6f,0xa7,0xe7,0x7f,0xbd,0x07,0xc0,0x9b,0x9f,0xeb,0x43,0x3d,0xd4,0x07, + 0x35,0x03,0xc5,0x56,0x9a,0xae,0xf8,0x9d,0x5e,0xff,0x07,0xbb,0x0b,0xd8,0x68,0xbb,0x18,0x05,0xa4,0x0a, + 0x1f,0xdf,0xbd,0x94,0xc3,0xe8,0x69,0x45,0x6b,0x5e,0xb6,0x7b,0x1f,0xa9,0xf3,0xd1,0x51,0x02,0xe8,0xef, + 0x27,0x66,0x3a,0xe9,0x33,0x54,0xff,0x85,0x9d,0x76,0xd3,0x2d,0x97,0x46,0xc0,0x8c,0xc5,0x34,0x47,0x17, + 0x1e,0x5c,0xed,0x5d,0x5e,0x5e,0xee,0xd1,0x24,0x2e,0xf6,0x68,0x4c,0xba,0x9c,0x56,0xc4,0x74,0xd2,0x2e, + 0xa0,0x3d,0x9d,0xcf,0xf2,0x65,0x1b,0xd2,0x5d,0xc2,0x0a,0xb6,0xe3,0xbb,0x49,0x86,0x5f,0x5e,0xbf,0xfa, + 0xae,0x6d,0x97,0xef,0x65,0xf6,0x26,0x2d,0x75,0xe1,0x1f,0xc4,0xa1,0x0f,0x94,0xa4,0x95,0x98,0xea,0xa6, + 0xe1,0x5d,0x8c,0x42,0x38,0x8e,0x08,0xe2,0xda,0x3a,0x2f,0x1b,0xf4,0xc6,0x54,0x91,0x1e,0x0e,0x1e,0x1d, + 0x15,0xad,0x59,0x77,0x54,0xe0,0x2d,0x3d,0x19,0xcd,0xd8,0x14,0x09,0x01,0xe1,0xe9,0xd2,0x7a,0xaf,0x42, + 0x49,0xb9,0x57,0x50,0x6c,0xbe,0x28,0x11,0x62,0xf4,0x32,0x21,0x6a,0x72,0xb4,0x41,0x52,0x73,0x86,0x21, + 0x76,0x39,0xbf,0x47,0x12,0x21,0x3f,0xae,0xd1,0xd3,0x3f,0x9d,0xf0,0xf1,0xf4,0x3c,0xaf,0x1b,0xdd,0x66, + 0xab,0xf6,0x74,0xef,0x1f,0x11,0x80,0xc9,0x32,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0x87,0xeb,0xfc,0xad, + 0xa9,0xca,0x8d,0x2a,0xbe,0xff,0xf0,0xf6,0xcd,0x48,0xd0,0x66,0x71,0x7a,0x0d,0x16,0x2c,0x6d,0xd7,0x47, + 0xe1,0x0c,0x1b,0x24,0x7d,0x18,0xee,0x11,0xb0,0x72,0x1b,0xb8,0x36,0x69,0xeb,0xeb,0x9b,0x36,0xe3,0x1a, + 0x97,0x68,0x05,0x27,0xdb,0x14,0x3b,0x0c,0x9f,0xac,0xed,0xc6,0x41,0xed,0xc5,0x42,0x57,0xab,0x36,0xdd, + 0x57,0x57,0x4d,0x7d,0xfa,0xb4,0xaa,0x3e,0x15,0xfa,0x4d,0xbe,0xd0,0x69,0xf4,0xcb,0x87,0xf7,0x2f,0xf6, + 0x3e,0xbe,0xfd,0xe1,0xf9,0x9b,0x88,0xf3,0xbe,0x23,0x5c,0xa1,0x6b,0x93,0xb7,0x17,0xe6,0x2e,0xf2,0x2b, + 0xb3,0xb4,0xaf,0x18,0x35,0xa5,0x7b,0x07,0xea,0x22,0x9f,0x17,0xb4,0xdb,0x34,0x91,0x98,0xed,0x6a,0x88, + 0x80,0xdd,0x6a,0xbf,0xc9,0x1e,0xee,0xef,0xd3,0x51,0xfc,0xe8,0x8b,0xfd,0xfd,0xf5,0x7a,0xdc,0x8c,0xce, + 0xb9,0x05,0x02,0xe4,0x69,0xb5,0x58,0x10,0xd9,0x7c,0xf3,0x78,0x0a,0x9c,0x99,0x6e,0x4c,0x9d,0xda,0x6a, + 0x89,0xc6,0x7a,0x40,0xd4,0x4d,0x41,0xcf,0x7f,0x7b,0xf0,0xb7,0x88,0xce,0xc7,0xe2,0x4f,0xd0,0x5c,0x17, + 0xb5,0xb8,0xd6,0x80,0x58,0x6e,0x80,0x0e,0x8a,0xff,0x04,0x33,0x75,0x3e,0xb7,0x52,0x8c,0x3c,0xe9,0x60, + 0x95,0xe6,0x4f,0xb0,0x0a,0xf6,0x66,0xcd,0x5b,0xff,0x6e,0xc2,0xcb,0xf5,0xa9,0xf5,0x75,0x09,0xee,0x23, + 0x52,0x9b,0xa8,0x87,0x9a,0xc0,0xee,0xc7,0xe5,0xd2,0x9e,0x74,0xc4,0x81,0xe8,0x6e,0x0a,0xe3,0x1d,0x4d, + 0xe4,0xa5,0x92,0x39,0x61,0x51,0x16,0xf5,0xf3,0xcf,0x08,0x0a,0xdf,0x39,0x05,0xf4,0xf4,0xb5,0xa0,0xa7, + 0x03,0x4b,0x09,0x7c,0x61,0x28,0x81,0x2f,0x85,0x25,0x3f,0xd8,0x07,0x4f,0xfe,0x39,0x32,0x5f,0x7e,0x47, + 0x27,0x6d,0x95,0x77,0x5e,0x46,0x27,0xf4,0x1c,0x4b,0x02,0xed,0x61,0xaa,0xea,0xab,0xe1,0xe9,0xf0,0x34, + 0x18,0x91,0x28,0xe6,0xf4,0x8e,0x83,0x13,0x61,0x2e,0xc8,0xee,0x94,0x68,0x00,0x60,0x79,0xb5,0xa4,0x07, + 0xb3,0x46,0xe3,0x3a,0xc4,0x34,0xa7,0x09,0x44,0x93,0x3c,0x17,0xcb,0x3e,0x46,0xe6,0x61,0xcf,0x98,0xa6, + 0xed,0x62,0x46,0x75,0x9e,0x45,0x55,0x09,0xa2,0xee,0x9a,0x18,0xaa,0x56,0xd3,0xde,0x2d,0xcf,0x08,0xc0, + 0x2e,0xb2,0xed,0x83,0x31,0xb6,0xe0,0x00,0x93,0x24,0x83,0x22,0x7a,0xce,0x0c,0xf7,0x97,0x67,0xd5,0x82, + 0x00,0xd6,0xd4,0x48,0x9c,0xd3,0x65,0xd1,0x9e,0x3f,0xad,0xf5,0x8c,0xda,0x2f,0xf2,0x79,0x13,0x15,0xe5, + 0xd6,0xec,0xf6,0x96,0xd0,0xd0,0x88,0x10,0x0d,0xa8,0x4b,0xe9,0xc9,0xe0,0xe7,0xd2,0x21,0x88,0x1c,0xb9, + 0x13,0xfb,0x6a,0x36,0xaa,0x4a,0xc2,0xd1,0x67,0x44,0x5d,0x04,0xd3,0x46,0x9b,0x9d,0x73,0xcc,0x36,0xef, + 0x64,0x00,0x56,0xf3,0x15,0xd1,0xe9,0x3c,0x71,0x8b,0x4c,0xde,0x46,0x04,0x05,0x75,0x49,0xbb,0x9c,0x3a, + 0x18,0xa9,0x33,0x9b,0xba,0xcc,0x9b,0xe6,0xb2,0xaa,0x67,0x48,0x1d,0x2f,0x47,0x8f,0x29,0xad,0xaa,0x8b, + 0x3f,0x78,0x4f,0x66,0xd1,0x93,0xbc,0x29,0xa6,0x5b,0xd1,0xee,0x2a,0x5e,0xec,0xd2,0x79,0xb5,0x7b,0x96, + 0xac,0x69,0x52,0xa8,0xe1,0x25,0x91,0x27,0x01,0x51,0x16,0x00,0xa6,0xaa,0x64,0x9c,0xd4,0x89,0x25,0x63, + 0x5f,0xf7,0xf0,0x41,0xd7,0x34,0x1d,0xc5,0x1f,0x44,0xfc,0xaa,0x6d,0x02,0x2c,0xfa,0xd0,0xf4,0xbe,0xb5, + 0x4f,0x6a,0x76,0x78,0x7e,0x14,0x0e,0x06,0xad,0x11,0xa8,0x7f,0x49,0x1b,0x60,0xc6,0xb4,0xf7,0x35,0x10, + 0x0f,0x8d,0xe1,0x02,0x3b,0x00,0x42,0xaf,0xd9,0xa8,0x61,0x54,0x74,0x7b,0x3b,0x73,0x14,0x18,0xe1,0xff, + 0x9d,0x9d,0x7d,0xf3,0x8d,0x4b,0x22,0x6a,0x6d,0xa6,0xaf,0xde,0xd2,0xa2,0x9e,0x42,0x58,0x10,0x11,0x51, + 0x7e,0x23,0xbc,0x0e,0xd0,0xc9,0xe3,0xf9,0xdc,0x22,0x62,0xc1,0x88,0xb2,0x6e,0x93,0x9c,0x86,0x3b,0x98, + 0x8d,0xf3,0x80,0x05,0x5a,0x75,0x76,0xc3,0xf4,0x47,0xeb,0x1a,0x03,0xd0,0x11,0x77,0x00,0x64,0x06,0xd6, + 0xb9,0x9b,0x31,0xf1,0x9d,0x4a,0xfd,0xe3,0x47,0x2a,0xab,0x64,0x24,0xe9,0xc1,0xc3,0x87,0x5f,0x64,0x7e, + 0x64,0x93,0x87,0xfb,0x5f,0xa6,0xf6,0xc5,0x94,0x41,0xf1,0x8d,0x72,0xd1,0x9b,0x6a,0xcb,0xc0,0x7d,0xe4, + 0x3e,0xe0,0x8a,0xcd,0x86,0x49,0x4b,0x45,0xec,0xd1,0x69,0x71,0x46,0x84,0x93,0x65,0x14,0x66,0xeb,0x71, + 0x81,0x6d,0x46,0xc8,0x47,0x11,0x5c,0xd2,0x80,0xd6,0x02,0x5a,0xba,0xae,0xab,0x3a,0x5c,0x8b,0x79,0x3c, + 0x8d,0xa3,0x37,0xba,0x25,0x70,0xf9,0xb4,0xf5,0x1c,0xb9,0x91,0x6a,0x15,0x4f,0xc1,0x2c,0x71,0x1f,0xdf, + 0x05,0x96,0xfc,0xb5,0x49,0xdf,0xa2,0x5d,0x14,0xed,0xba,0x55,0xdf,0x8d,0x16,0xcd,0x96,0xbe,0x9a,0x6a, + 0x0d,0x92,0x87,0xea,0x8c,0x9e,0x3f,0x7d,0xfb,0xe6,0xcd,0xe3,0x27,0x6f,0xdf,0x7f,0x7c,0xfe,0x2c,0xea, + 0xd4,0x5e,0x8f,0x86,0xc4,0x1b,0xb1,0x59,0xca,0x6b,0xe0,0x2c,0x62,0x6e,0x8e,0x33,0x02,0xc2,0xde,0x36, + 0xf4,0x3b,0x30,0x01,0x9f,0xd8,0x3d,0x16,0x27,0xd7,0x0c,0x5d,0x71,0x3f,0x3d,0x49,0x85,0xb5,0x18,0x1f, + 0x13,0xb8,0x2d,0x0f,0x25,0xdb,0x9f,0x98,0x47,0xd9,0x31,0xef,0x88,0x88,0xce,0x7b,0xb3,0x81,0x25,0x93, + 0x61,0x07,0x68,0xdc,0xe2,0xf9,0x65,0x8f,0xf1,0x75,0x32,0xaf,0x53,0x02,0x94,0xa9,0x41,0x56,0x40,0x30, + 0x91,0xc1,0xf5,0x01,0x9f,0x33,0x71,0x68,0x4d,0x1f,0x61,0x5d,0x7b,0x6d,0xd1,0xea,0xb5,0x72,0x42,0xf5, + 0x46,0x4c,0x5d,0x9e,0xf5,0xd3,0x32,0xec,0xbc,0x2e,0x40,0x32,0x51,0x31,0xeb,0x24,0xf5,0x40,0xd6,0x90, + 0x18,0x22,0x78,0x8e,0x70,0x52,0x6f,0x82,0x75,0xd2,0x9e,0xd3,0x72,0x10,0x47,0x3b,0xc8,0xad,0x57,0xe5, + 0xb3,0xea,0x92,0xd1,0xda,0x3b,0x83,0xcb,0x08,0x59,0x8f,0xf2,0xd9,0xec,0xf9,0x05,0xc8,0x8b,0xa2,0xa1, + 0xf1,0xd3,0x48,0x22,0x8b,0xe9,0x08,0x0a,0x06,0xbe,0x49,0x86,0x78,0x72,0x14,0xfc,0x71,0xd9,0xaf,0x7a, + 0xc5,0x29,0xfe,0xe9,0x4f,0xdb,0xea,0x56,0x81,0x39,0x9a,0x7a,0x25,0x05,0x0b,0x16,0xfc,0x2b,0xd8,0x17, + 0xe6,0x32,0x99,0x4d,0x0b,0xcf,0xb2,0x19,0xcf,0x79,0x7e,0x42,0x87,0x1c,0xa1,0x42,0x08,0x0c,0x0d,0xe4, + 0x62,0x81,0xc2,0x35,0x8f,0x4f,0x25,0x59,0x61,0x3d,0xe9,0xa4,0x3c,0xfd,0x0f,0xce,0x6e,0x3a,0x95,0xef, + 0xa0,0x2c,0xf0,0x89,0xe1,0x3c,0x46,0xb2,0xd3,0x47,0x5d,0x82,0x6d,0x5c,0x1a,0xb4,0x40,0x9c,0xcd,0xce, + 0xce,0x76,0x11,0xdb,0xf7,0x64,0x42,0xbc,0x55,0x1c,0x19,0xc0,0xda,0x3a,0xcd,0x09,0x45,0xce,0xb6,0x00, + 0x3c,0x5b,0x52,0x60,0x0b,0xf4,0x31,0xed,0x5a,0xfb,0x81,0xb2,0x2d,0x08,0x06,0x28,0x9d,0xfa,0xa9,0x04, + 0x7d,0x1b,0x97,0x7f,0x7d,0x34,0x07,0x77,0x8f,0x46,0x15,0xaa,0x92,0x11,0xe5,0x7c,0x64,0x32,0xd6,0x01, + 0x4f,0xef,0x34,0x4d,0xb9,0x2b,0xf6,0x3f,0x11,0x81,0x81,0xdf,0x54,0x45,0x20,0x6d,0x93,0x21,0x65,0x94, + 0x01,0x02,0x6b,0x84,0x31,0x67,0xa5,0x6c,0x18,0x91,0x85,0xd4,0xc1,0xe6,0xc9,0x0a,0xe2,0x95,0xfe,0x07, + 0x0a,0xa5,0x2d,0x61,0x36,0x7e,0x7c,0xff,0xf2,0x69,0xb5,0xa0,0x9a,0x08,0x2a,0x29,0xd3,0x8b,0xf5,0xfe, + 0xf7,0x97,0xfb,0x0f,0xce,0x0a,0x15,0xfd,0x9f,0x50,0xd6,0xf7,0xbf,0xbf,0x78,0xcc,0x89,0x69,0x27,0xf1, + 0xe1,0x97,0x0f,0xce,0x54,0x74,0xaf,0x9b,0xf6,0x94,0x0b,0xaa,0x6e,0xe2,0x3e,0x0a,0xee,0x76,0xd2,0xbe, + 0x7a,0xc2,0x05,0x0f,0xbb,0x89,0xcf,0x38,0xf1,0x28,0x0a,0x79,0xd8,0xcf,0x80,0x1b,0x61,0x84,0x6d,0x6d, + 0x55,0xb1,0x2d,0xaf,0x6a,0x05,0xca,0xa9,0x4c,0x40,0x58,0x6a,0xa3,0x3a,0xa2,0x84,0x21,0xc6,0x4c,0x27, + 0x54,0x4a,0x07,0x2c,0x16,0x97,0x36,0x0b,0x7e,0x78,0x34,0xf6,0xb4,0xbb,0xee,0x2d,0xee,0x90,0xfa,0x8b, + 0x96,0xcc,0x71,0x87,0xcc,0xbc,0xc7,0x7a,0x37,0x8b,0x0e,0x8f,0x0c,0x4f,0x6a,0xd3,0x89,0x00,0x33,0xfa, + 0xb0,0x62,0x88,0x0c,0x07,0xef,0x35,0x12,0x35,0x04,0x33,0x96,0xa0,0x4e,0xaa,0x97,0x1f,0xde,0xda,0x2e, + 0x76,0x99,0x40,0xe6,0x9b,0x37,0x39,0x3c,0xe8,0x5b,0x21,0xef,0x21,0xe4,0x9c,0xec,0x46,0x59,0xb4,0xcb, + 0xaa,0x37,0x08,0x28,0x40,0x70,0xe7,0xa3,0xdf,0xaa,0xa2,0x8c,0xa3,0x1d,0x9a,0x64,0xcb,0x48,0xa3,0xa2, + 0xdd,0x2c,0xde,0x3b,0x80,0x1e,0xc4,0x93,0x2a,0x93,0x28,0x99,0xd0,0x9f,0x14,0x65,0x77,0xab,0xe4,0xcf, + 0x01,0xae,0x43,0xe0,0x1f,0x46,0x39,0xa8,0xd9,0x28,0x0f,0xc9,0x3a,0x7a,0xb7,0x07,0x8e,0x88,0x9c,0x82, + 0x04,0x3e,0x81,0x54,0xa4,0xdb,0xfc,0x0c,0x3f,0x57,0xcb,0x82,0x80,0x9d,0x9e,0x4e,0x09,0xe1,0x81,0xe1, + 0x12,0xfe,0xa9,0x38,0xdd,0x5b,0x54,0xb3,0xe2,0xb4,0xd0,0xb3,0xbd,0xa6,0x20,0xb4,0x28,0x69,0xab,0x72, + 0x23,0x75,0x9e,0x37,0xad,0x2b,0x8b,0xf7,0x6a,0x6a,0xfb,0x40,0xdc,0x25,0xb8,0xef,0x4b,0x3a,0xc8,0xd1, + 0x02,0xa1,0xd4,0xab,0xeb,0xbd,0x7e,0x47,0x6b,0x4d,0x3c,0x3d,0x1d,0xa7,0x78,0xa2,0x63,0x6a,0x2f,0x3f, + 0x6d,0xf9,0x0d,0xc4,0xec,0x1e,0x8d,0x8d,0x28,0x9d,0xa3,0x3b,0xd8,0x0a,0x16,0x0e,0xd2,0x06,0xaf,0x20, + 0x79,0xf1,0x1a,0x7f,0xe2,0xda,0xfd,0xaa,0x8f,0x1a,0x62,0x40,0xdb,0x38,0xfa,0xb5,0x24,0x18,0xe9,0x71, + 0xdf,0x55,0xb8,0x0c,0xb4,0xeb,0x94,0xce,0x88,0x2b,0xab,0x8b,0x05,0x3e,0x5b,0x9d,0xd0,0x7c,0xc7,0xfb, + 0x84,0x76,0x92,0xee,0x59,0xad,0xca,0x8d,0x52,0xd5,0xee,0x01,0x01,0x84,0x1c,0x9e,0x39,0x1d,0xe1,0x2c, + 0x54,0x32,0x15,0xeb,0xe4,0x9b,0x6c,0xdf,0xec,0x9e,0x31,0x32,0x33,0x90,0x12,0x7b,0x53,0x26,0x40,0x98, + 0x14,0x98,0xf0,0x37,0x13,0xfc,0x49,0x0f,0x8f,0x12,0x60,0x28,0x9a,0xc2,0xf8,0xb0,0x3c,0x4a,0x52,0x97, + 0xb3,0x1b,0x29,0xa0,0xe6,0xb4,0x04,0xc3,0x9b,0x53,0xc6,0x5f,0x87,0x92,0x60,0xf6,0xee,0xa2,0xad,0x26, + 0xa1,0x82,0xc0,0x2b,0x6a,0x9c,0x45,0x42,0xeb,0x84,0x92,0xbc,0x03,0x69,0x00,0x8f,0x5b,0x6a,0xe7,0x64, + 0x45,0x3b,0x28,0x3a,0xa7,0x25,0x8c,0x60,0x64,0x40,0xe8,0x72,0x84,0x17,0x6c,0xbb,0x3b,0x8a,0xdc,0xe0, + 0x29,0x95,0x62,0x8a,0x45,0x84,0xd3,0x6a,0x4e,0xef,0xf6,0x71,0xe2,0x1f,0x3d,0xc6,0x4a,0x45,0x05,0x92, + 0x12,0x57,0x03,0xf0,0xc4,0xe7,0xf4,0xa3,0x1a,0xc6,0x33,0x29,0xda,0xc2,0xc3,0xc4,0x3e,0x84,0x0a,0x95, + 0x89,0xff,0x32,0x6f,0x50,0x16,0x3f,0x13,0xf9,0x09,0xca,0xfd,0xaf,0x4e,0x03,0xe0,0xa1,0x4c,0x23,0x78, + 0x54,0x98,0x3b,0xf4,0x91,0x7e,0xd4,0x32,0x6f,0xcf,0x39,0x3f,0x7a,0x80,0xc5,0xa3,0x54,0x93,0x30,0x82, + 0x50,0xe8,0x71,0x1b,0xef,0x27,0x13,0x9f,0x88,0x52,0xbb,0xfe,0x55,0xc4,0xf3,0xb4,0x56,0xd9,0x83,0x78, + 0xd1,0x14,0xfa,0x96,0x26,0x08,0x64,0x5b,0xf2,0xa0,0x18,0xb5,0x90,0x81,0x7a,0x15,0x1c,0xc0,0xff,0x31, + 0xa0,0x1f,0x9b,0xdc,0x6a,0xd5,0x8c,0x45,0xc6,0xf3,0xb9,0xc6,0x5b,0x1c,0xe5,0x91,0x3b,0x27,0x69,0x8d, + 0x0c,0x2f,0x3e,0xb2,0x3b,0xd0,0xac,0x85,0x97,0x3e,0x58,0xca,0x41,0xa0,0x80,0x71,0x5d,0x49,0xe8,0x8f, + 0xfe,0xa4,0xa5,0x37,0x28,0xb1,0xf3,0xcf,0x54,0xaa,0x7d,0x01,0x44,0x63,0x3e,0x38,0x11,0x0f,0xeb,0x35, + 0xe1,0xc9,0x0d,0x95,0xe3,0xf6,0xfe,0xe7,0xcf,0xe8,0x40,0x19,0x64,0x74,0x1d,0x0b,0x22,0xc5,0x68,0x97, + 0x67,0x91,0x74,0x68,0x0b,0x68,0x8a,0x78,0xe5,0x66,0x2b,0xa7,0xbe,0x94,0x4c,0xda,0x6c,0x61,0x66,0xf3, + 0x29,0xd0,0xc2,0x5a,0xa0,0x3a,0x7a,0xfc,0xe4,0xe9,0xb3,0xe7,0x2f,0xbe,0xfd,0xee,0xe5,0xf7,0x3f,0xbc, + 0x7a,0xfd,0xe6,0xed,0xbb,0x7f,0xbe,0xff,0xf0,0xf1,0xc7,0x9f,0x7e,0xfe,0xe5,0x5f,0xff,0xce,0x4f,0xa6, + 0xc4,0xce,0x9f,0x9d,0x17,0xbf,0x7d,0x9a,0x2f,0xca,0x6a,0xf9,0x7b,0xdd,0xb4,0xab,0x8b,0xcb,0xab,0xeb, + 0x3f,0xf6,0x0f,0x1e,0x7e,0xf1,0xe5,0x57,0x7f,0xff,0xaf,0x7f,0x7c,0xbd,0xfb,0x20,0x8b,0xc6,0xa5,0x97, + 0x50,0x7b,0xc2,0x43,0x05,0xa9,0x42,0x1a,0x7c,0xd5,0x49,0xc2,0x22,0x66,0xd1,0x4b,0xe9,0xd7,0x53,0xdb, + 0x2d,0xcb,0x29,0x0d,0x22,0x29,0xab,0x6f,0xd3,0x20,0x61,0x32,0x33,0xed,0x2d,0x84,0x31,0x04,0x6d,0x4d, + 0xb6,0x0f,0xc3,0x9b,0x71,0xe5,0xa0,0xe7,0xb6,0xc1,0xe9,0x35,0xcd,0xe8,0x44,0x51,0xcd,0xff,0x26,0xc2, + 0x29,0xdf,0xcd,0xa6,0x36,0xf7,0xef,0x5f,0xec,0xe8,0x6f,0xbe,0xf9,0xc7,0x1e,0x65,0xfc,0xed,0x1f,0x09, + 0xa3,0x9b,0xb8,0xc8,0xe4,0xe3,0xa7,0xd4,0x5b,0x2a,0xd2,0xec,0x66,0xa3,0xff,0xfa,0x2a,0x49,0xbe,0x79, + 0xf8,0xd5,0x57,0x86,0x60,0xc7,0xe8,0xca,0xb1,0xce,0xf4,0xa3,0x47,0xff,0xb8,0x2d,0xec,0x71,0xf4,0xff, + 0x18,0x81,0xdc,0x5c,0xd6,0x45,0x47,0xab,0x6f,0xa9,0x36,0x42,0x56,0x37,0x62,0x06,0x42,0xa7,0x7d,0x63, + 0x74,0x24,0x7c,0x60,0x0e,0xd0,0x48,0x44,0x2d,0x30,0xff,0x27,0x66,0x08,0x04,0x98,0x3b,0x3b,0xe6,0x13, + 0x7b,0x52,0xd1,0x77,0x18,0x0f,0x9f,0xdd,0x25,0x30,0xf3,0xb7,0xaf,0x3f,0x3a,0xe9,0xad,0x0a,0x20,0xbb, + 0x08,0xbe,0xc5,0xfe,0xa3,0x0f,0x8b,0x4e,0x81,0x2a,0x28,0x30,0x63,0x01,0x0d,0x15,0xa9,0x20,0xb8,0x20, + 0x20,0xcf,0x7d,0x5e,0xa3,0xa7,0xab,0x1a,0x52,0x6f,0xbf,0x0b,0x19,0x77,0x67,0x8d,0x39,0xe3,0xc7,0x5b, + 0x74,0xc8,0x2b,0x30,0x97,0xe9,0xc6,0xe9,0x94,0xf5,0x3e,0x1a,0x2d,0x98,0xcf,0xc2,0x10,0xde,0xeb,0xb3, + 0xe7,0x57,0xcb,0x38,0x8a,0xff,0xfb,0x76,0xfc,0xeb,0xaf,0xcd,0xdf,0x92,0x98,0x18,0x66,0x22,0xdf,0xb2, + 0xf8,0xf0,0xbf,0xc7,0x47,0x7f,0x4b,0x22,0xaf,0x0a,0xd2,0xc4,0x1f,0x6e,0xce,0xd5,0xe1,0x17,0x47,0x22, + 0x9f,0x40,0xe3,0x8b,0xea,0xa2,0x6b,0x1d,0xc1,0xbb,0x8b,0x17,0x85,0xd6,0x82,0x40,0x0d,0x33,0x36,0x2a, + 0xab,0xcb,0x38,0xd9,0xfb,0xc7,0xdf,0xbf,0xd4,0x5f,0x11,0x35,0x9d,0xf6,0x17,0x0d,0x32,0xa7,0xee,0x38, + 0x3a,0xfa,0xd3,0xcd,0x76,0xe8,0x83,0xff,0x80,0x3c,0x36,0x9d,0x3a,0x27,0xf0,0x99,0x43,0x5a,0x7c,0x78, + 0x14,0x12,0xa0,0xa1,0x5e,0x92,0x2a,0x18,0x56,0x64,0x77,0x2a,0x90,0x05,0xba,0x71,0xfa,0x36,0x96,0x79, + 0x88,0xbe,0x4d,0xb4,0xee,0x9d,0xc2,0x42,0x09,0xed,0x1d,0x40,0xc2,0xe0,0x5b,0xe2,0xf2,0xd9,0xc6,0xc4, + 0xd9,0xaf,0x88,0x88,0x04,0xd9,0xd6,0x4b,0x32,0xfc,0x5e,0xa7,0x22,0x43,0x71,0x64,0x5d,0x2a,0xd3,0xd1, + 0x21,0x61,0x0d,0x81,0x11,0x81,0x23,0x73,0x35,0x31,0xa0,0xf4,0x4a,0x2c,0xe2,0xff,0x50,0xbb,0x05,0xbb, + 0xc3,0xcf,0xf0,0xb3,0x8c,0x0a,0x5e,0x9e,0x1a,0xee,0x4f,0xcf,0xe2,0x0d,0x05,0xd6,0xc1,0xd7,0x22,0x21, + 0x86,0x69,0x9e,0xb3,0x09,0xa4,0xd7,0x03,0x08,0x88,0xe9,0xf7,0x0e,0x1e,0x81,0x96,0x06,0xe8,0xac,0x1d, + 0x9d,0xe4,0x46,0x2c,0xb7,0x3d,0x35,0x52,0x18,0x66,0xb0,0xe8,0x21,0x5b,0xc5,0x2e,0x5b,0x19,0x01,0x8d, + 0x72,0x32,0x5e,0x2f,0xed,0x65,0xc5,0x9f,0x08,0x81,0x33,0xc8,0x18,0x59,0x1a,0xec,0x72,0xa1,0xa8,0xe9, + 0xa9,0xac,0xc2,0x5a,0xac,0x28,0xdf,0xa5,0x8c,0x44,0x17,0x61,0x2a,0x75,0x42,0x7f,0x23,0xd2,0x3c,0xea, + 0xa6,0xe3,0x2d,0xf9,0x53,0x45,0x84,0x1a,0x52,0x2f,0x80,0xb4,0x46,0x43,0xa1,0x9e,0x81,0xd6,0xd5,0x0a, + 0xed,0x5d,0xcb,0xfa,0x68,0x6d,0x37,0x34,0x75,0xd2,0x68,0xfc,0x6e,0x6f,0x1b,0xfb,0x98,0x80,0x43,0xec, + 0x8a,0x1b,0x3c,0xdc,0xf3,0x1c,0x6b,0x3b,0x35,0xf2,0x40,0xef,0x83,0x53,0x23,0xac,0x2b,0x15,0x5f,0xab, + 0x81,0x9a,0x72,0x7a,0xa6,0x13,0x46,0x2a,0x84,0xdd,0x9e,0xe5,0x75,0xc1,0x4c,0x79,0x0d,0xb7,0x6b,0xa9, + 0x93,0xa2,0x82,0xf7,0xcf,0xb5,0x4d,0xeb,0xeb,0xd5,0xf4,0xcc,0x47,0xe9,0xff,0x48,0x73,0xf1,0x19,0x6e, + 0xd4,0x4e,0x88,0x5b,0xaa,0xb2,0x43,0xe1,0x40,0xc5,0x09,0x84,0xb1,0xde,0x64,0xa4,0xfe,0x82,0xbc,0xc0, + 0xd1,0x31,0xf1,0x76,0x7b,0x7b,0x0b,0x6b,0x8e,0xe3,0xa7,0x8f,0xdf,0x3c,0x7d,0xfe,0xea,0xf8,0xf8,0x7f, + 0x20,0x7d,0xb0,0xb5,0x3d,0xf8,0xef,0xf8,0x30,0xdf,0xfb,0xe3,0x08,0x7f,0x7e,0x9d,0xfd,0xba,0xfb,0xeb, + 0xde,0xaf,0xa3,0xa3,0xbf,0xa5,0xc9,0xe4,0xd7,0x07,0xbf,0x3e,0xb0,0xa4,0x5f,0xfb,0x3f,0x12,0x6f,0x78, + 0x81,0xc3,0x24,0x30,0x24,0xfa,0xf5,0xc1,0xae,0x90,0xcc,0xbb,0xa0,0x3f,0x75,0x48,0x10,0x3f,0xd8,0x15, + 0x52,0xf7,0x4f,0x26,0xa7,0x6b,0xb5,0xd3,0xa1,0xd4,0xda,0x75,0x39,0x60,0xbc,0x99,0x6d,0x1c,0x19,0x91, + 0x18,0xfb,0x46,0xbb,0x71,0xf8,0x39,0x31,0xba,0x10,0x0c,0x07,0x29,0x29,0xac,0x9b,0x3a,0x54,0x96,0x9f, + 0x74,0xa8,0x47,0x02,0x73,0xea,0xff,0x08,0x1d,0x42,0x90,0xe9,0x64,0x89,0xdb,0x81,0x82,0xd5,0x11,0x45, + 0x10,0x6a,0x8a,0xbc,0x89,0xa8,0x0b,0x3a,0xe5,0x89,0xee,0xde,0x5a,0xac,0x9a,0x76,0xeb,0x44,0x6f,0xe5, + 0xce,0x66,0x6a,0x14,0x19,0x33,0x94,0x31,0xf7,0xda,0x08,0x06,0xb3,0x41,0x65,0x16,0xcc,0x40,0x68,0x82, + 0xe4,0x83,0x32,0xc3,0x07,0xe3,0xb6,0x93,0x0d,0x29,0x5a,0xde,0x00,0x2d,0xc5,0xf6,0x91,0xab,0x2a,0x78, + 0x3f,0xba,0x34,0x88,0x11,0x3c,0x82,0xfe,0xa2,0x7b,0x3a,0xf6,0x71,0x79,0x4f,0x9d,0x62,0xac,0x2a,0xb8, + 0x1a,0x19,0x6c,0x90,0x82,0x43,0xab,0xa9,0x56,0xf5,0x54,0x87,0x5f,0x85,0xc6,0x06,0x37,0x2d,0x0e,0x0c, + 0xb6,0x27,0xaa,0x3b,0xa8,0xa8,0xcd,0x70,0xa8,0xca,0xa1,0xc2,0xf0,0x73,0xe7,0x41,0xf5,0x1f,0xec,0x8d, + 0xad,0x01,0x14,0x65,0x0d,0xca,0x58,0xec,0xa8,0x61,0x53,0x06,0xbd,0x67,0xbf,0x85,0xbb,0x7d,0x20,0x06, + 0x94,0x99,0xff,0x8f,0xdc,0x20,0x34,0x1c,0x1b,0x7e,0x5a,0xe9,0x61,0xb7,0x86,0x61,0x60,0x6c,0x07,0xed, + 0x60,0x6f,0x6f,0x31,0x3a,0xb6,0x88,0x0d,0x8c,0x21,0xfb,0x25,0x45,0xe6,0x65,0x25,0x61,0xeb,0xee,0xae, + 0xb4,0x2c,0x57,0xb7,0x92,0xd0,0xac,0x7d,0xc3,0xba,0xe0,0xf6,0x76,0xd3,0x8e,0x97,0xd2,0x9a,0xeb,0xc5, + 0x49,0x35,0xef,0xa6,0x9d,0x54,0xd5,0x5c,0xe7,0xe5,0xa0,0x5d,0xfb,0xff,0x1b,0x4b,0x78,0x91,0xb0,0xb1, + 0xf1,0xed,0xa2,0x1c,0x34,0x84,0xb7,0x44,0x34,0x1b,0x42,0xb0,0x4d,0x5e,0xec,0x18,0x28,0x4f,0x1c,0x7f, + 0x93,0xed,0xef,0xec,0xbc,0x26,0x12,0x7f,0x74,0x3a,0xaf,0x2a,0xc8,0xe3,0x32,0xa6,0xa7,0x60,0x60,0x52, + 0x32,0xfd,0x1b,0xd4,0xda,0xf4,0xba,0x4e,0x9d,0x9d,0x44,0xd1,0xa6,0x67,0x4b,0x3b,0xe9,0x8b,0xfc,0x44, + 0x0a,0xfe,0x30,0x49,0x5d,0x17,0x7c,0xad,0xd3,0xc1,0xbe,0x7a,0x29,0x36,0x71,0x34,0xf9,0x1b,0xea,0xd8, + 0xa4,0x25,0xc2,0xd4,0x7d,0xb5,0x32,0x16,0x92,0xce,0x22,0xd3,0x98,0xc6,0x0b,0x97,0x1f,0x8b,0xf6,0xa0, + 0xce,0x9c,0x0c,0x4b,0x41,0xcc,0x99,0xed,0x8f,0x8b,0x47,0xb5,0x35,0x25,0x2b,0xc4,0x30,0xf3,0xb0,0x38, + 0x3a,0x22,0x5c,0xe9,0xf9,0x85,0x21,0xed,0xfb,0x61,0xdb,0x15,0x64,0x1d,0xad,0x87,0x8c,0x3b,0xa8,0xd8, + 0xd1,0xda,0xf7,0x71,0xee,0xdc,0x11,0xac,0x1f,0x81,0x55,0xa9,0xb6,0x81,0x88,0x8b,0xc5,0xc1,0xdf,0xec, + 0x1d,0x38,0x29,0x31,0x77,0x99,0x4e,0x9c,0x52,0x1d,0x24,0x41,0x6d,0xa7,0x9d,0x33,0xeb,0xd8,0xae,0x3a, + 0x36,0xb9,0x2b,0xb3,0xf4,0x73,0x39,0x30,0x1f,0xe3,0x3e,0xda,0xf0,0x24,0x81,0x3e,0x2c,0x8f,0x60,0xd8, + 0x49,0x3f,0xb0,0x10,0x4e,0xc2,0x86,0x67,0x1b,0xc6,0xa8,0x46,0x1a,0x52,0x0f,0x18,0x0a,0x1b,0x0a,0x63, + 0x52,0x7f,0x73,0x30,0xf1,0xc6,0xad,0xae,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xed,0xb3,0x93,0xf3,0x96, + 0xa3,0x63,0xa9,0xc8,0x79,0x5e,0xa8,0xd2,0x77,0xe4,0x5c,0x3a,0x42,0x18,0xe4,0xf6,0x76,0x7f,0xec,0x97, + 0xde,0x96,0xdd,0xd3,0xb4,0xe2,0xde,0x32,0xb7,0x4c,0xc6,0xe5,0xde,0xde,0x38,0xa9,0x79,0x50,0x87,0xe5, + 0xae,0x76,0x66,0xb7,0xb5,0xaf,0xf4,0xa2,0x07,0x48,0xf0,0xde,0xd0,0x09,0x7c,0x3b,0x32,0xcc,0x86,0x93, + 0x8c,0xfa,0x2f,0x16,0x1d,0xd1,0x04,0xac,0xa6,0x4b,0x02,0xac,0xf2,0x91,0x77,0x16,0x21,0xc0,0x42,0x05, + 0x3b,0x3b,0x17,0xd0,0x3e,0x42,0x18,0xe9,0xa0,0xcb,0x57,0x73,0x66,0xcf,0x61,0x9f,0x74,0xed,0x01,0x06, + 0xdb,0x30,0xb1,0x58,0xca,0x1c,0x89,0x7c,0xce,0xd5,0xf4,0x23,0x40,0xb3,0x4d,0x07,0xe1,0x76,0x6d,0x0b, + 0x11,0xd7,0xb2,0x5d,0xef,0xec,0xb8,0x0d,0x46,0x15,0x98,0x67,0x2a,0x0d,0x1d,0x26,0xeb,0x1e,0x32,0x9e, + 0x9a,0x40,0xdc,0x4f,0x6c,0x4b,0x37,0x49,0xea,0xae,0x76,0x76,0x72,0x0f,0x90,0x66,0x4d,0x20,0xbf,0x92, + 0x47,0x70,0x48,0xfa,0x42,0xd7,0xd7,0xc1,0xf9,0x1c,0x10,0x98,0x3c,0x0e,0x0c,0x7b,0x2d,0x95,0xdd,0xde, + 0xda,0xca,0xb6,0x0f,0xc6,0x22,0xd0,0x30,0xe0,0xf9,0x49,0x5f,0x03,0xab,0x10,0xb7,0x14,0x26,0x78,0xbb, + 0xf2,0xc6,0xb7,0x3d,0x75,0x6d,0x37,0xfd,0xb6,0x3b,0x2d,0xc3,0x2b,0xc7,0x34,0xee,0x8d,0xbf,0x6c,0xeb, + 0x01,0x58,0x1f,0xf7,0x31,0xc8,0xc6,0x1a,0x52,0xd7,0x6d,0x7d,0x89,0x73,0xa7,0x33,0x3d,0x23,0x5e,0xd8, + 0xd5,0x74,0xe2,0x77,0x1d,0x8d,0x6f,0xd3,0x6c,0x5c,0xb3,0xc9,0x34,0x93,0x63,0xb2,0x21,0xf8,0xf0,0xf3, + 0x7b,0x22,0xdc,0x6c,0x97,0xbe,0x2e,0x88,0x7a,0xa2,0x24,0x14,0x50,0xed,0xbb,0x79,0xf9,0xe2,0xef,0x58, + 0x8d,0xdb,0xdb,0xaf,0xbf,0xc2,0xaf,0xff,0xfc,0xca,0xea,0xed,0x92,0x1b,0x33,0xa1,0x72,0xfa,0x5a,0xb7, + 0x23,0xce,0xa6,0xfa,0xe7,0x2b,0x9d,0x96,0x4a,0xd3,0x81,0xa6,0xeb,0xfc,0x64,0xae,0xd3,0xed,0xed,0x5a, + 0x41,0xa2,0x21,0x2f,0xfb,0xc6,0x12,0x62,0x65,0x32,0xf7,0xd7,0x01,0x92,0xb9,0x17,0x9c,0x47,0x03,0x0a, + 0xe7,0x9d,0x9d,0x07,0x25,0xfb,0x45,0xb0,0x4e,0xf4,0x81,0xa1,0xd0,0x43,0x43,0x41,0x5f,0xd5,0xa7,0x9e, + 0x85,0x53,0x4b,0x6b,0xc1,0x87,0xb7,0xea,0xfe,0xf8,0x93,0xcb,0x7f,0xfb,0xd4,0x98,0x0a,0x18,0x14,0x30, + 0xb5,0xc2,0x9d,0xb7,0x62,0xd6,0x6b,0x50,0x01,0xd5,0x48,0x6d,0xe7,0x67,0xca,0xb1,0xc4,0xd3,0xf3,0x62, + 0x3e,0xab,0x75,0x09,0xe6,0x0b,0xd6,0x1f,0x04,0xc9,0xf3,0x85,0x62,0xe5,0x26,0xbf,0x23,0x23,0x6f,0xae, + 0xcb,0xe9,0x8b,0x1c,0x66,0xf2,0xd7,0x5e,0x9d,0x3a,0x2a,0xc1,0x70,0xa3,0x6a,0x91,0xe4,0xb5,0xc5,0x14, + 0x98,0xdc,0x3c,0x52,0x2a,0x01,0x6f,0xc6,0x20,0xcc,0x25,0x9e,0x12,0x6b,0x4b,0xfd,0xe1,0x22,0xe6,0x99, + 0xd2,0x4f,0xcb,0xa7,0xd2,0x10,0xa5,0xbb,0x67,0x4e,0x37,0x1d,0xe7,0x74,0x37,0x08,0x7a,0xfe,0x30,0xa5, + 0xb5,0x7b,0x39,0xe3,0x74,0xf3,0x2c,0xf5,0xcf,0x69,0xbc,0xec,0x79,0xa9,0x45,0x1d,0x6b,0x06,0x46,0x2f, + 0xb5,0x7b,0xc9,0x3e,0x04,0x39,0x30,0x2c,0x4a,0xa0,0xbc,0x2d,0xc3,0xc2,0x65,0x58,0xb8,0xec,0x16,0x26, + 0x7c,0xe3,0x67,0xfc,0x43,0x7f,0xc7,0x38,0x24,0xdd,0x45,0xbb,0xe6,0xa0,0x2d,0xf9,0x84,0xc5,0xf9,0x9a, + 0xd1,0x5a,0xd1,0x4f,0xe0,0x2f,0x12,0xd4,0xfa,0xd8,0x21,0x3d,0x71,0x09,0xda,0x8e,0x3b,0x0e,0x3c,0x6d, + 0x6d,0x0d,0x91,0xdc,0xce,0x82,0x50,0xee,0xf8,0xb8,0x3a,0x39,0x3e,0x8e,0xd8,0x58,0x45,0x9e,0xc3,0x8f, + 0x9a,0x7a,0x82,0xde,0x49,0x46,0x9a,0x13,0xd9,0x7e,0x5e,0xad,0xe6,0x33,0x9a,0x6d,0x42,0x1c,0x04,0xa1, + 0xdb,0xdf,0x97,0x6c,0x24,0xd8,0xc7,0x86,0xb7,0xb7,0x20,0xb6,0x28,0xc7,0x6c,0x9e,0xa2,0x79,0x0e,0xaf, + 0x96,0xa6,0x38,0x61,0x6b,0x5b,0xfa,0x90,0x9d,0x14,0x88,0x8a,0xc5,0xbc,0xf1,0xa0,0x1b,0xd6,0x5d,0x62, + 0x09,0x78,0x5e,0x2f,0x16,0x4f,0xab,0x55,0xd9,0xee,0xee,0xd2,0xc1,0xe5,0xc7,0xf8,0x31,0x54,0xa7,0x0b, + 0x22,0xc6,0xb7,0xff,0x2a,0x09,0xfd,0x9a,0xa6,0xce,0x74,0x1b,0xb8,0x07,0x3e,0xd3,0xcd,0xb4,0x2e,0x60, + 0x39,0xcf,0xb3,0xc3,0xe8,0x3e,0x27,0x74,0x7f,0x40,0xe4,0x62,0x3e,0x0a,0x37,0xa7,0x95,0x10,0xe7,0x84, + 0xb1,0x51,0x09,0xa1,0x52,0x7e,0x6c,0xe8,0x71,0x95,0x6d,0x17,0x3b,0x3b,0x8f,0x71,0x12,0x7e,0x06,0x1b, + 0x84,0x58,0x60,0x63,0xe3,0x2b,0xaa,0xb2,0x6f,0x5a,0xad,0xb3,0x66,0xd2,0x58,0xa2,0xd3,0xab,0x3f,0xfe, + 0x55,0xd2,0x46,0xab,0xa9,0x3c,0xcd,0x4d,0x45,0x2d,0x2d,0x61,0xb9,0x91,0xa8,0x15,0xbd,0xae,0xf0,0xea, + 0x93,0xfa,0x27,0xce,0xce,0x4e,0x40,0xf1,0x77,0x20,0xcc,0xec,0x7f,0x71,0x4b,0xd2,0x7d,0x77,0x24,0x5a, + 0x02,0x0d,0xc3,0x4e,0x4c,0xbc,0xac,0xb5,0x7f,0xfa,0x5c,0x8b,0x90,0x8d,0xb3,0x11,0x46,0xcc,0xe2,0x16, + 0xbd,0x56,0x4d,0x38,0x4a,0x6d,0xc9,0x9b,0xee,0x30,0x35,0xa1,0xda,0xfa,0xf6,0x56,0x6f,0xb3,0x09,0xea, + 0x36,0x9e,0xe3,0xe9,0x64,0xea,0xe9,0xb0,0x94,0xba,0xe3,0xe6,0x5c,0xc3,0xea,0xbf,0xac,0x5a,0xd0,0xbf, + 0x6c,0x79,0x1f,0x80,0xc3,0xdb,0xc0,0x3c,0xa0,0x0f,0x82,0xb4,0x76,0xb1,0x3f,0x6e,0xdc,0xd9,0xcb,0x34, + 0xfa,0x22,0xbf,0x72,0xa4,0x24,0x34,0x82,0x8e,0x54,0xd4,0xea,0x80,0xaa,0x53,0x25,0xe0,0x44,0xb3,0xff, + 0x29,0xf6,0x11,0x3f,0xf5,0x5d,0x46,0x7d,0xd5,0x62,0x20,0x5b,0x1a,0xd1,0x91,0xdd,0x2d,0xde,0x33,0x49, + 0x00,0xfd,0xf6,0xb6,0x86,0xa5,0x96,0x81,0xeb,0x49,0x99,0xd6,0x93,0xf8,0x23,0x21,0x18,0x3e,0x43,0x78, + 0x14,0x84,0x8c,0x30,0xd7,0x76,0xac,0x20,0xec,0xac,0xf5,0x6d,0x19,0xe0,0xeb,0xdf,0xdc,0x3e,0xbf,0x63, + 0xc8,0xe1,0x68,0x02,0x53,0x07,0xbf,0x91,0xc7,0xbe,0x4f,0xe1,0x5e,0xbb,0xbd,0x15,0xd2,0x18,0xc6,0x45, + 0xd6,0xda,0x57,0x1f,0x09,0x9a,0x0b,0x3b,0x16,0xae,0xc0,0x73,0xd7,0x99,0xd0,0x3c,0xc3,0xc1,0x1d,0x36, + 0xaa,0xdf,0x9a,0x86,0x26,0x81,0xc6,0x69,0xdc,0x3c,0xca,0x2d,0x14,0x36,0xc0,0x6e,0x20,0x2c,0xb3,0xfc, + 0xb0,0x39,0x3a,0x02,0x80,0x82,0x56,0x38,0x65,0x52,0x68,0x52,0xc5,0x35,0xfb,0x37,0x42,0x97,0xf2,0x3c, + 0xc6,0xc6,0x4f,0xb1,0xec,0x25,0x3d,0x0c,0xd0,0x94,0xaf,0x7a,0x22,0xba,0x72,0xd2,0xdb,0x73,0x75,0x36, + 0xe8,0x27,0x67,0x5d,0x87,0xd9,0x59,0x8e,0x7a,0x30,0x74,0x20,0x4f,0xda,0xa0,0x50,0xeb,0x49,0x74,0xd3, + 0xab,0x62,0x9d,0xea,0x49,0x1b,0xb6,0x67,0x4a,0x3c,0x8f,0x3f,0xd7,0x24,0xd3,0x30,0xf8,0x83,0x86,0x3f, + 0xd7,0x6c,0x50,0x90,0xd8,0xbe,0x54,0xa7,0xc1,0xb0,0x5f,0xf6,0xe5,0x70,0x93,0xd6,0xaa,0xf0,0x69,0x3b, + 0xf5,0xd1,0xc4,0x44,0xa7,0xd0,0xf3,0x07,0xdf,0xbf,0xf0,0xe4,0x8e,0x08,0x7c,0xba,0x5c,0x8f,0x91,0x14, + 0x04,0xba,0xa0,0x8b,0xb8,0xc0,0x46,0x2d,0x7c,0x15,0xcf,0xec,0xcc,0x07,0x52,0x00,0x57,0xdd,0xb4,0x26, + 0xf4,0x42,0xf0,0x55,0x8f,0x57,0xf0,0xe0,0xa3,0x03,0x8a,0xdd,0x1e,0xf1,0x07,0x8d,0x0e,0x59,0xf3,0xb1, + 0x2c,0x98,0x50,0x95,0xf1,0x2e,0xea,0x8b,0x5e,0x2c,0x44,0xd3,0x7e,0x5c,0x36,0x62,0x09,0x24,0xeb,0xcb, + 0x00,0x77,0xb3,0x1e,0x6f,0xec,0x8f,0x52,0x9c,0xd2,0xe9,0x88,0x75,0xe8,0x0f,0x5c,0x4d,0x5f,0x40,0x11, + 0x4b,0x5c,0x07,0xec,0x82,0xfc,0xf0,0xb2,0x24,0xb8,0x3b,0xca,0x6e,0x90,0x25,0x6a,0x2e,0x6f,0x69,0x54, + 0xd9,0x1a,0xf9,0xdc,0x00,0x8a,0x28,0x13,0x7c,0xdb,0x1c,0x29,0xfe,0xb0,0xa1,0x0f,0x01,0xb6,0x93,0x22, + 0x95,0xef,0x8b,0xf5,0xd8,0xf4,0x37,0xcb,0xd7,0x40,0x99,0x77,0x0c,0xa9,0x28,0x31,0xf7,0xe1,0x98,0x5c, + 0xe2,0xe7,0x06,0x26,0x33,0xcd,0x04,0x43,0xc8,0x99,0x13,0xd7,0xc6,0x9c,0xf9,0x0d,0x8c,0x6b,0x52,0x3c, + 0xaf,0x87,0x87,0x90,0xcb,0x10,0xcc,0x31,0x58,0x1e,0xe6,0xc4,0xb3,0xd1,0x1f,0x1a,0x43,0x93,0xd0,0x7a, + 0xcb,0xf7,0x39,0xa1,0xf8,0x24,0x95,0xe7,0x66,0xbd,0xee,0x0f,0xc3,0x0e,0x42,0x8f,0x66,0x45,0x4d,0xfd, + 0x25,0xea,0xd5,0x2c,0x8e,0x6d,0xa5,0x0e,0x5a,0x91,0x99,0x1e,0x0f,0x2c,0x7e,0x01,0xb2,0x80,0xa3,0x6b, + 0xc0,0xc0,0x3f,0x2d,0xd4,0x6a,0x09,0xeb,0x42,0x9a,0xc2,0x04,0x4a,0x7f,0x13,0x7f,0x43,0x9b,0xf0,0x12, + 0xdc,0x44,0xc1,0x36,0x52,0x80,0xc2,0x02,0xc6,0x81,0x4a,0x8f,0x16,0xc5,0x15,0x91,0x32,0x7e,0x7c,0x74, + 0xf6,0x35,0x99,0x4d,0xb6,0x53,0x94,0x3f,0x6a,0xc6,0x39,0xf8,0x4c,0xfe,0xd4,0xe6,0xd2,0xb8,0xa9,0x12, + 0x6e,0x66,0x4a,0x27,0x11,0xcd,0x3a,0x6a,0x99,0x4a,0x44,0x02,0x7a,0x48,0xfc,0xbb,0x4e,0x80,0xa8,0xa6, + 0x44,0xf2,0x70,0xba,0xd9,0x21,0x2b,0xbf,0x31,0xde,0xf8,0xbd,0x35,0xe4,0x6d,0xe3,0xe6,0x02,0xc8,0x16, + 0x03,0xa1,0xa1,0x60,0x00,0x56,0x6a,0x03,0xde,0x59,0x28,0x9d,0x4b,0x30,0x68,0xb6,0x44,0x15,0x94,0xa8, + 0xa4,0x44,0x9e,0x5d,0x95,0x71,0xe5,0xa5,0x13,0x54,0x2a,0x27,0xe8,0xa3,0xb1,0xa4,0x05,0x8b,0x25,0x50, + 0x12,0x7f,0xf3,0x50,0xb8,0xf2,0xae,0xbf,0xf5,0xe1,0x2c,0xa7,0xaa,0x6c,0x9b,0x56,0x4d,0x31,0x5f,0x0b, + 0x69,0x0c,0x9a,0x7d,0x1f,0x3f,0x11,0x79,0x9c,0x2a,0x46,0x7c,0x02,0x82,0x3e,0xa1,0xf3,0x11,0x0d,0x45, + 0xc6,0xbd,0x32,0x4a,0x26,0x39,0x31,0x6f,0xe9,0x7b,0x23,0x24,0xb3,0x45,0x61,0xf8,0xbf,0xcd,0x2a,0xed, + 0x9c,0x7e,0x3e,0x19,0xff,0xd7,0x3c,0x63,0x42,0xda,0x49,0x24,0xf3,0xe4,0x26,0x1f,0x32,0xfd,0x3b,0x85, + 0x07,0x94,0x6b,0xc1,0x6e,0x0a,0x6d,0x7d,0x3a,0xdd,0x39,0x00,0x22,0xf6,0x9e,0x41,0x18,0xb2,0xd3,0x24, + 0x6a,0x82,0x17,0x79,0x0e,0x64,0x8b,0x80,0xc1,0x89,0x3a,0x47,0xc7,0x9c,0x43,0xa9,0x93,0xe0,0x79,0x48, + 0x44,0x0b,0x9f,0xe1,0x17,0x5e,0xb8,0x9f,0xbd,0x8e,0xb5,0x0c,0x76,0x52,0x3b,0x6a,0xa7,0x26,0x70,0x05, + 0x4a,0x6a,0x13,0xc3,0xaf,0xf7,0x69,0xe8,0x71,0x3f,0x01,0x7c,0xc8,0xe3,0x38,0xa7,0x89,0xef,0x67,0x34, + 0xde,0x6c,0xc2,0xad,0xde,0xeb,0xc0,0x3e,0x0a,0xa3,0xf7,0xdc,0xa1,0xd1,0xf2,0xb3,0x43,0xb7,0x2b,0x1e, + 0xff,0x7a,0xb9,0x9b,0x3c,0x08,0xf0,0xb8,0x3e,0x3c,0xa0,0xb1,0x45,0xbe,0xc2,0xf7,0xfe,0x40,0xef,0x1f, + 0x1b,0x16,0xe0,0x5e,0x8b,0x74,0xf3,0xb5,0xf5,0x7a,0xb5,0x61,0x3e,0x6a,0x4f,0x58,0x96,0x8f,0x6a,0xcb, + 0xf9,0xbf,0x66,0x61,0x98,0xfd,0xc0,0x8b,0x62,0x9c,0x24,0xc1,0x35,0xfd,0x24,0x58,0x71,0xed,0x11,0x46, + 0xa6,0xc7,0x75,0x56,0x8f,0xee,0x2d,0x73,0x62,0xa6,0xda,0xb1,0x37,0x20,0x72,0x4b,0xc9,0x3e,0x04,0x4f, + 0xf3,0x25,0x55,0xa8,0x67,0x8c,0x0b,0xdc,0xd7,0x15,0x21,0xc4,0xea,0x51,0x61,0xfb,0x55,0x61,0xa7,0xd7, + 0xd7,0x3c,0x3c,0x98,0x40,0x62,0x47,0xc8,0x5a,0xd5,0x4a,0x1a,0x37,0x1d,0xf4,0x12,0x8f,0x1f,0xa9,0x57, + 0xb5,0x8a,0x3a,0x6d,0x6c,0x9d,0x57,0xd5,0x27,0xf8,0xc3,0xff,0x68,0xba,0xec,0x07,0xf1,0x63,0x30,0x88, + 0xdf,0x4a,0xe9,0xda,0x77,0xa2,0x73,0xe7,0x96,0xcd,0x1c,0xf6,0xb2,0xc2,0xc0,0x25,0x52,0xa1,0x6b,0xff, + 0x27,0x2b,0xf5,0x8d,0x8c,0xa9,0x75,0xf8,0x1d,0xf5,0xe1,0xa7,0x8d,0x2e,0xfc,0x14,0x74,0x61,0xfb,0x25, + 0xe4,0x59,0x2f,0x4a,0xda,0x7f,0x03,0x3e,0x46,0xf0,0x62,0xa7,0x1d,0x6d,0x35,0x34,0x63,0xf3,0x2e,0x4d, + 0x74,0x84,0xcb,0xdf,0x11,0x39,0x33,0xab,0x33,0x23,0x76,0x6a,0xb3,0x65,0x6d,0xdd,0xce,0x93,0xf1,0xd2, + 0x4a,0x82,0x33,0x2f,0x4c,0xd4,0xf4,0xac,0xbd,0x14,0x48,0xb3,0x24,0x4f,0x1f,0xc5,0x41,0x95,0x7f,0x04, + 0xa7,0x1e,0x16,0x8d,0xaa,0x61,0x5b,0x8a,0x9e,0x22,0x49,0x9c,0x11,0x9d,0x80,0xd3,0xcd,0x8b,0x40,0x4b, + 0x54,0xd2,0x11,0xf0,0xb1,0x98,0x62,0x35,0xf8,0x54,0x2b,0xd9,0x27,0x1e,0xaa,0x9a,0x19,0xf8,0x0a,0xf4, + 0x79,0x5f,0x9d,0xd7,0x93,0x79,0x1d,0x27,0xe9,0xaa,0x86,0x81,0xce,0x76,0x3b,0xac,0x9f,0x31,0x9a,0xb4, + 0x24,0x90,0xa3,0x0c,0x29,0xd7,0x4a,0x28,0xd7,0xfc,0x30,0x7e,0x46,0x9a,0x2b,0x00,0xbe,0x4b,0x39,0x52, + 0xa4,0xba,0x43,0x2a,0x18,0x13,0x0b,0x0a,0xe9,0x23,0x18,0x61,0xc7,0x21,0xbf,0xa8,0xab,0x3f,0xe0,0x8e, + 0x2d,0x36,0x55,0xda,0xd0,0xea,0xf6,0x3c,0xd6,0x21,0x3b,0x56,0x30,0x94,0x97,0xb0,0x20,0xa4,0xc3,0xd9, + 0x1a,0x76,0x96,0xf0,0x3e,0xa0,0x77,0xb8,0x8a,0xe4,0x86,0xd6,0xd1,0x1d,0x5a,0x07,0x06,0x3b,0x35,0x9f, + 0x6c,0x2e,0xd2,0x4e,0x9d,0xc5,0x55,0x8f,0x3e,0x4f,0x36,0xbe,0xa9,0xe8,0xab,0x23,0x8e,0xac,0x90,0xd0, + 0xac,0x1f,0xd7,0x09,0xfd,0x1f,0x4d,0xe9,0x28,0xa8,0xc3,0x05,0xfd,0x3d,0xee,0xc6,0xd0,0x32,0x2a,0x3d, + 0x2f,0xdc,0x56,0x20,0x0c,0x4e,0x4b,0x3e,0xae,0xb7,0x37,0x68,0x18,0x27,0xba,0x0e,0x14,0x6f,0x5e,0xb6, + 0x37,0xf6,0xf8,0xa0,0x34,0xa0,0x37,0xa8,0x88,0x80,0x98,0x24,0xac,0xa1,0x75,0x32,0x71,0x6e,0x1a,0xe1, + 0xb3,0x7c,0x8f,0xbf,0x8f,0x8d,0x30,0xc1,0xd9,0xff,0xab,0x46,0xd1,0x81,0xcf,0x8d,0xe5,0x72,0xba,0xd3, + 0xd4,0x83,0x1a,0x98,0x32,0x45,0x44,0xb4,0xc0,0x49,0x0d,0xe4,0xdc,0xc6,0x6c,0x23,0xd7,0xd2,0x91,0x3f, + 0xa1,0xbf,0x0d,0xea,0xc6,0x79,0x28,0xa5,0xb3,0xdf,0xb1,0x2c,0xaa,0x26,0x7e,0x9d,0x8d,0x37,0x1b,0xb5, + 0x1a,0x11,0x35,0x4e,0x4c,0x2d,0xc1,0x31,0xa3,0x10,0x7a,0x82,0x4f,0x1c,0xd1,0x47,0xfc,0x04,0x33,0xf5, + 0x24,0x49,0x1b,0x3a,0x45,0xa6,0x54,0xcb,0x94,0xbb,0xda,0x28,0xae,0x6b,0x9a,0x24,0xbe,0x3f,0x25,0xaf, + 0x47,0x0e,0xf2,0xb4,0x88,0x63,0xd3,0x9b,0x44,0x5a,0x91,0x0e,0xda,0x16,0x82,0x85,0xf9,0x21,0x36,0x43, + 0x0c,0xf4,0x5a,0xc9,0x4d,0x35,0x2c,0x44,0x55,0x73,0x19,0x0d,0xd1,0x0e,0xeb,0xba,0x2b,0x40,0x82,0x40, + 0x8c,0xf0,0x2e,0xe4,0x7f,0x23,0x60,0x40,0x98,0x70,0xf8,0x37,0xa2,0x92,0x12,0x73,0xca,0xc1,0x9e,0x90, + 0xd6,0x61,0xcc,0xd3,0xd3,0xd0,0x6c,0xa0,0xc7,0xa9,0x96,0x71,0x41,0xca,0x40,0x4f,0x6c,0x29,0x33,0xa3, + 0xd9,0x6b,0x68,0x84,0x48,0x97,0xdd,0x9f,0xd3,0x2c,0xe0,0x83,0xa9,0xa2,0x4f,0x54,0x63,0x8a,0x61,0x13, + 0xb3,0x00,0xac,0xf1,0xa3,0xfa,0x85,0xb9,0x40,0x33,0x32,0xec,0x18,0x00,0x91,0x50,0x0b,0xa0,0x66,0x3c, + 0x7b,0x8e,0xf0,0x28,0x00,0xfb,0xea,0xf6,0xd6,0xf0,0xb5,0xfc,0x4a,0x67,0x90,0x29,0x5c,0xf4,0x0b,0x17, + 0xdd,0xc2,0x05,0x0a,0xaf,0x37,0x0f,0xac,0x6f,0x43,0x67,0x0b,0xe6,0xbf,0x61,0xfa,0x03,0x39,0x24,0x36, + 0xb6,0x31,0xb1,0xb7,0x22,0x4b,0xff,0xd9,0xbf,0x43,0x66,0x2d,0x06,0x53,0xae,0x9b,0xd7,0xac,0x14,0xbe, + 0xbd,0xfd,0x05,0x81,0x5c,0xe4,0x05,0x3a,0xc9,0xf6,0xf0,0x03,0xab,0x45,0xdd,0xb9,0xfe,0x31,0x3f,0x93, + 0x68,0x00,0x59,0x6b,0xa9,0x1f,0xda,0x06,0xf0,0x20,0xb0,0xc4,0x30,0xa8,0x8e,0xa0,0xb1,0x7f,0x75,0xc2, + 0xbc,0xb8,0xde,0x80,0x56,0x08,0x85,0xb3,0xfe,0x83,0x7f,0x1a,0xbb,0x85,0xbe,0x70,0x21,0xf9,0x8c,0x80, + 0xdf,0x72,0x29,0xa0,0x55,0x79,0x25,0x6a,0x76,0x8b,0x80,0xf8,0xb4,0x27,0x4d,0xa6,0x4d,0xf3,0x2f,0xca, + 0x75,0x13,0x5e,0x07,0x94,0x68,0xdb,0xda,0x83,0xab,0x9c,0x5c,0xe3,0x78,0x27,0xb8,0x13,0x79,0x90,0xbc, + 0xf5,0x74,0x74,0xba,0x95,0x79,0xe4,0xcc,0xd3,0xd3,0x5e,0x6e,0xe9,0x2a,0xbb,0xa6,0x8e,0x29,0xde,0xe9, + 0x62,0x6e,0x45,0xc9,0x34,0x67,0x94,0x2a,0x34,0x5f,0xa0,0xb5,0x6e,0x43,0x3e,0x4c,0x38,0xad,0xed,0xd6, + 0x2b,0x2c,0x3c,0x06,0xea,0x84,0x34,0xb3,0x42,0x34,0x23,0x8f,0x64,0xce,0x36,0xcf,0x2a,0xde,0x18,0xa8, + 0x82,0xa5,0x88,0x79,0xdb,0xd6,0x8d,0x7b,0x20,0x04,0x56,0xb5,0xce,0x8f,0x38,0x4c,0x54,0x95,0x95,0x9f, + 0x8b,0x3d,0x5e,0xe5,0x65,0xdb,0xdb,0xac,0xa8,0x80,0xf4,0x52,0x74,0xc6,0x39,0x7f,0x90,0xc4,0xa5,0x05, + 0x04,0x36,0xe7,0xb0,0x21,0xe8,0x0e,0x8f,0x08,0x2d,0xf0,0x8e,0xaa,0x02,0x19,0x50,0x63,0xbe,0x62,0x74, + 0xd6,0x40,0x53,0x89,0x1f,0x14,0x1e,0x47,0xad,0x5e,0x2c,0xe7,0xc4,0x64,0x01,0xee,0x2a,0x88,0xfa,0x27, + 0x53,0xae,0xc0,0xa0,0x89,0x29,0xba,0x66,0x44,0xda,0xb7,0xb7,0xf4,0x45,0x3a,0xb5,0xf5,0xaf,0x5d,0xec, + 0xa3,0x95,0xe0,0xa8,0xf2,0x70,0x75,0x64,0x74,0x4b,0x45,0xeb,0x1d,0xa6,0x91,0xec,0x23,0x8b,0x78,0x4d, + 0x7e,0x7b,0x17,0x8c,0x6e,0x77,0x81,0x94,0x88,0x98,0x2d,0xde,0x15,0xbc,0xc7,0x02,0xc5,0x7e,0x1b,0x28, + 0x34,0x0d,0xaf,0x76,0x07,0xa4,0xf6,0xa0,0x1a,0x94,0xe9,0x04,0x9f,0x8b,0x72,0x2a,0x25,0xde,0x87,0x9e, + 0x70,0x10,0xb2,0xa6,0xf3,0x88,0x66,0x7f,0x40,0xe3,0xc8,0x6a,0x75,0x16,0xae,0x8e,0x5b,0xb3,0x17,0x0d, + 0x75,0x9a,0x8c,0x13,0xd6,0x52,0x1f,0x17,0x65,0xce,0xdc,0xef,0xe7,0xe8,0xdd,0xa6,0x75,0xb4,0xb6,0xd5, + 0x6e,0x1f,0x0b,0xdb,0xfc,0xd2,0x7c,0x4d,0xf4,0x96,0xe2,0xc6,0x2c,0x55,0x6a,0x19,0xf7,0x8d,0x92,0x96, + 0x06,0xe8,0xb6,0xee,0x0d,0x3c,0x82,0x1e,0xdd,0x04,0x2f,0x20,0xe8,0xfa,0xb3,0x75,0xcf,0xae,0x72,0x38, + 0x6f,0xac,0x7a,0x72,0x39,0xac,0x89,0x85,0x63,0x92,0x8a,0xb8,0x1e,0x82,0x9a,0x59,0x14,0x8a,0x05,0xa7, + 0x6d,0x57,0xa4,0x61,0x49,0x75,0xc3,0xe2,0x06,0xe2,0x00,0xde,0x4b,0x65,0x7f,0x2f,0x81,0xe6,0x2b,0x5d, + 0xd4,0x4c,0x17,0x7d,0xa2,0x04,0xd9,0x57,0x82,0x44,0xde,0x8d,0x2c,0x0d,0x4e,0xa3,0x21,0x32,0xe8,0x3b, + 0x7a,0x61,0xc7,0x4b,0x66,0x01,0xf5,0x02,0xa6,0x0a,0x28,0x90,0x46,0xbb,0x21,0x56,0x58,0x21,0xf0,0xd7, + 0x07,0xd0,0x84,0x42,0xc7,0x2a,0xcd,0xc3,0xbf,0x82,0x3d,0x52,0x1d,0x1a,0x49,0x85,0xe6,0xbe,0x44,0x6e, + 0xed,0x69,0xfa,0xb3,0x86,0xf8,0x9b,0x26,0xe9,0x71,0xfd,0xe8,0xca,0xd1,0x1c,0x8f,0xd1,0x5d,0xe8,0x18, + 0xb3,0xab,0xfa,0xf0,0x71,0x7d,0x94,0x50,0x41,0xf5,0xa9,0x66,0xb1,0x2d,0xd3,0x1f,0xa3,0x7a,0x55,0xc6, + 0xd6,0x18,0xeb,0x5e,0xed,0x68,0x97,0x3a,0xbb,0x72,0x2f,0x54,0x4b,0xe6,0xaa,0x44,0x21,0x4b,0x4f,0x53, + 0x4d,0xd0,0x8b,0x3f,0xad,0x33,0x74,0xfa,0xa0,0x23,0x69,0xf9,0x13,0x52,0x3b,0x5c,0xe4,0x7d,0x85,0xf5, + 0x83,0x30,0x77,0x1b,0xd1,0x42,0xcb,0xe4,0x8e,0x8a,0x7c,0x25,0xa0,0xfc,0xec,0xea,0xe1,0x3b,0x50,0x5d, + 0x17,0x8b,0x71,0x3d,0x3a,0xbe,0xc4,0x4a,0xe8,0x9a,0x80,0xaa,0x84,0x3c,0xfb,0xb8,0xa0,0xb3,0x6b,0x45, + 0x08,0x6a,0xb6,0xb3,0x43,0xab,0x4e,0x9c,0x92,0x88,0x6a,0x18,0x1e,0x08,0xd3,0xab,0x1f,0xa8,0xd8,0x6f, + 0xc0,0x4b,0x17,0x6d,0x55,0xc1,0x5b,0xf8,0x07,0x62,0x7d,0x78,0x7d,0x4e,0xe7,0x84,0x3e,0xa2,0x60,0x75, + 0xe6,0x0e,0x67,0xff,0x56,0x43,0x05,0xb3,0x69,0xcf,0xc7,0x56,0x64,0xd4,0x1f,0x02,0xc0,0xb5,0xa2,0x42, + 0x8d,0xde,0xb4,0x9b,0x96,0x6c,0x44,0xf9,0xbb,0x4b,0x57,0x53,0xd2,0xa7,0x41,0xb3,0xa7,0xae,0x59,0x81, + 0x48,0x56,0x6a,0x0d,0x49,0xa5,0xca,0x49,0x6c,0x3a,0x56,0x4f,0x96,0x2c,0x59,0x2d,0x6d,0x27,0xce,0x92, + 0xd4,0xe6,0x95,0xf8,0x3b,0xa9,0x41,0x01,0x20,0xa0,0x1d,0x81,0x30,0xcd,0x97,0x2d,0x8f,0xbc,0xf4,0xcc, + 0x7e,0x55,0xe2,0xef,0x84,0xff,0xa6,0x67,0xc9,0x9d,0xfd,0xd5,0xdd,0xfe,0x2e,0x43,0x7c,0xb9,0xa1,0x52, + 0x62,0x3b,0xbb,0x63,0x9c,0xbb,0x2b,0x5a,0x85,0x9f,0x65,0xb5,0x10,0xcd,0x6f,0x30,0xdd,0x88,0x76,0x1c, + 0xd3,0xc3,0x82,0xbb,0xf6,0x1a,0x36,0xb9,0x1a,0x9a,0x09,0x48,0x7f,0x13,0x15,0x68,0xa4,0xb4,0xd7,0x05, + 0x69,0xd1,0x5d,0x84,0x16,0x2e,0xad,0x17,0x26,0xb9,0xd0,0x3d,0x50,0x12,0x41,0xea,0xaa,0x10,0x71,0xca, + 0x98,0x9f,0x27,0x6a,0x53,0x0e,0xc6,0x9a,0x40,0xc6,0xc8,0xb4,0x69,0xee,0x5d,0x8a,0x2f,0xb8,0x88,0x87, + 0xbd,0xe5,0x8a,0x47,0x99,0xed,0x9f,0x1b,0x2d,0xfd,0x52,0x4e,0xde,0xeb,0xd3,0x39,0x72,0xaa,0xcb,0xf2, + 0x07,0x31,0x91,0x18,0x9d,0x16,0xf3,0x56,0xd7,0x43,0x06,0xce,0x7f,0x45,0x83,0x38,0xf2,0x5a,0xbe,0x75, + 0x92,0xf6,0xac,0x2f,0x06,0xf8,0x91,0x1b,0x2f,0x89,0x00,0x01,0x4b,0x94,0x01,0x22,0x93,0x8e,0x20,0x40, + 0x85,0x34,0x72,0xdc,0x8c,0x79,0x34,0x0d,0x8b,0x9a,0x2e,0x8a,0x19,0xf6,0x11,0x53,0xfa,0x41,0x0a,0x11, + 0x44,0xf4,0x4d,0x16,0xa4,0x40,0x38,0x7b,0x42,0x83,0xfd,0xb4,0x26,0x36,0xc1,0x1e,0x3e,0xe0,0xfb,0xb6, + 0x61,0x7b,0x68,0x25,0x65,0x90,0x56,0xd2,0x87,0x02,0x19,0x53,0x69,0xd8,0x8a,0xcc,0xb8,0xc6,0x01,0x18, + 0x77,0x8a,0x38,0x82,0xd6,0xe9,0xda,0xd9,0x13,0x05,0x8b,0x7c,0xd1,0x8a,0x8d,0x8a,0x63,0x71,0xc1,0x33, + 0x6d,0x4a,0xa5,0x21,0xe0,0x1b,0x08,0x2d,0x64,0x44,0xf0,0x4e,0xcb,0xed,0x2c,0xba,0x54,0x45,0xe8,0x2e, + 0xf7,0x28,0xa8,0x7a,0x94,0xb3,0xb8,0xa6,0x46,0x47,0x69,0x73,0x73,0x3c,0x57,0x2f,0x7d,0xdf,0xb4,0x21, + 0xdc,0xac,0x9a,0xeb,0xa4,0x8a,0xda,0xb0,0xa2,0x6a,0xf7,0x20,0xac,0xa7,0xb0,0xa4,0xed,0x86,0x29,0x4d, + 0x58,0x55,0xd3,0xeb,0x65,0xd3,0xef,0xe5,0x34,0x6b,0xd0,0x41,0xd7,0xd9,0x29,0x71,0x8c,0xca,0xcb,0x62, + 0x0d,0x45,0xcc,0xe8,0xf2,0x27,0xc4,0x06,0xe0,0x00,0x09,0x81,0xf2,0x7e,0x11,0xec,0x1c,0x96,0x6f,0x51, + 0x43,0xbc,0x63,0xef,0x35,0xb0,0x54,0x98,0x7d,0x20,0xa2,0xcd,0x6e,0xd6,0x0a,0xb1,0xdb,0x98,0x96,0xad, + 0x79,0xcf,0x5c,0xc4,0x17,0x31,0x5e,0x12,0x96,0x7b,0x17,0x19,0xb6,0xdc,0xed,0xad,0x0e,0x9d,0x9c,0x4d, + 0x55,0xb6,0x92,0x1c,0xca,0x8d,0xd1,0x31,0x01,0xcd,0x4c,0xd7,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0xb5,0x8d, + 0x96,0x0b,0x9d,0x1f,0x8a,0x3b,0xfb,0xa1,0x89,0x54,0xd1,0x73,0xfe,0x73,0x34,0xa3,0xba,0x41,0xe9,0x14, + 0x71,0x41,0x3b,0x5a,0xa1,0xb3,0x10,0x57,0xbd,0x11,0xb3,0x60,0x4b,0x0c,0xa8,0x48,0xb6,0x22,0x42,0x23, + 0x50,0x87,0x3f,0x04,0x24,0xe1,0x75,0x7f,0x3a,0x32,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f,0x84, + 0x8d,0x33,0x6b,0x9c,0x74,0xe1,0xae,0x48,0x26,0xec,0xdd,0xec,0xbd,0x5f,0x89,0x21,0x2a,0x20,0xd9,0x4d, + 0xeb,0xc9,0xa7,0x92,0x16,0x02,0x84,0x74,0xda,0x27,0xfe,0x8f,0x5d,0x8b,0x86,0x9d,0x2c,0xc1,0x61,0x83, + 0xa3,0xdc,0x54,0x79,0xd3,0x9c,0x2f,0x90,0x35,0x36,0x22,0x03,0x7f,0x04,0x15,0x22,0xe3,0x9f,0xce,0x89, + 0xb7,0x67,0xd7,0x4c,0xde,0x03,0xd7,0xc2,0xcc,0xd1,0xcb,0x35,0x8a,0x24,0xb4,0x1e,0x21,0x49,0xde,0x5a, + 0xee,0xc0,0x3c,0xb0,0x10,0x79,0x9c,0x43,0x2f,0x4e,0xa3,0x86,0x31,0xf8,0x8f,0x0d,0x1f,0x07,0x31,0x24, + 0x09,0x05,0xa2,0x90,0xcd,0xaa,0x05,0x12,0x1a,0x88,0x20,0xdc,0x0b,0x18,0xf0,0xd4,0xd4,0xc1,0x19,0xfc, + 0x84,0xd4,0x75,0x01,0x8c,0x92,0x43,0xe2,0x0e,0x26,0x5a,0x38,0xda,0x0a,0x02,0x8c,0x18,0x41,0x29,0xb8, + 0x70,0x55,0x32,0x03,0x7f,0x68,0xce,0x6f,0x22,0x9c,0x8a,0xa3,0xce,0xd9,0x8a,0xaf,0x58,0xf4,0xe5,0x28, + 0xc6,0xa9,0x50,0xfb,0x0d,0x71,0xf9,0x3e,0x28,0x98,0xb7,0xe6,0xea,0xd2,0x80,0x7c,0xfc,0x34,0x6c,0xe1, + 0xf3,0xb1,0xd6,0x9a,0x7b,0xd8,0x4f,0x03,0x23,0x82,0x7d,0x07,0x18,0xb5,0x0c,0x22,0x9d,0xa3,0xba,0xb7, + 0xc4,0x75,0x32,0xf9,0x40,0x7f,0xd2,0xa7,0xf8,0x13,0x5f,0xb5,0xb1,0x7c,0x92,0x75,0xa0,0x6b,0x24,0xf5, + 0xbe,0x67,0x18,0x7f,0x51,0x02,0xee,0xbd,0x1e,0xd5,0xc2,0xfe,0x3b,0xb8,0x83,0x8b,0x78,0x95,0x35,0xab, + 0xb0,0x87,0x91,0xef,0x8e,0x8f,0xa3,0xdd,0x56,0x6d,0x1f,0x24,0x9d,0xf3,0xe7,0xd2,0x91,0x0a,0xa6,0x7b, + 0x57,0xad,0x31,0xa2,0x21,0x5e,0x15,0x9f,0xe8,0xdd,0xb8,0x9c,0x44,0xc7,0xf0,0x92,0x8e,0x22,0x09,0x40, + 0x14,0x4c,0xc9,0x55,0x1b,0x88,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe7,0x2f,0x99,0xa0,0xe3,0x50,0xb4, + 0x06,0x9d,0x7a,0x47,0x02,0x4e,0xbe,0xd7,0x1a,0x75,0xea,0x2e,0x1a,0xae,0x9d,0x78,0xef,0x9e,0x6d,0x2d, + 0x30,0x39,0x73,0x1d,0xf0,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xad,0x90,0xfa,0x96,0x86,0x92,0x05,0x7b, + 0xf1,0x53,0xc0,0xa6,0x40,0x11,0xaf,0x13,0x4f,0xd7,0x57,0xf2,0x67,0xc2,0x08,0x08,0x4f,0x49,0x1a,0xf0, + 0x5f,0xb5,0x48,0xd0,0x02,0x5d,0x1f,0xa1,0x4e,0x48,0x20,0xc7,0xac,0xdb,0x2b,0x26,0x87,0x47,0x56,0x4b, + 0x5d,0x18,0x7f,0xf2,0x4d,0x30,0x7a,0xda,0x8a,0x5f,0xd9,0x71,0x95,0x5d,0xc2,0xc8,0xec,0xb8,0xe4,0x90, + 0xeb,0xc7,0x90,0x8f,0xd1,0xcf,0x3c,0xbb,0xe0,0xd4,0x36,0x5b,0xf0,0xef,0xef,0xd9,0x35,0x7e,0x8a,0xec, + 0x18,0x3f,0x8b,0xec,0x84,0x53,0x4f,0xb3,0x33,0xfe,0xfd,0x94,0x5d,0xf3,0xef,0x49,0x76,0xcc,0xbf,0x17, + 0xd9,0x27,0xfc,0xd0,0x78,0x11,0x71,0xe3,0x78,0x95,0x55,0x9c,0x7c,0x96,0x7d,0x0a,0x7a,0xf0,0x41,0x26, + 0x2d,0x14,0x13,0x12,0x83,0x6c,0xc0,0x4c,0x1c,0x32,0xd8,0x53,0xc9,0x44,0x4a,0x15,0x0d,0xaf,0x96,0x17, + 0x67,0x11,0x56,0x9b,0x4c,0x3e,0xa9,0x33,0x13,0x93,0x74,0x6e,0xa2,0xc4,0x34,0x99,0x6c,0xc3,0x8b,0xd2, + 0x06,0xfc,0xc4,0x49,0xc4,0x46,0x6c,0x44,0xf1,0xe4,0xe6,0x9d,0xb6,0xbe,0x64,0x33,0x1e,0x1f,0x20,0x8e, + 0xeb,0x96,0x2d,0x11,0xd6,0x5d,0xd3,0x50,0x43,0x14,0x15,0xe2,0x4a,0x97,0x0b,0x0d,0x88,0xb8,0x2b,0xf0, + 0xa9,0xdb,0x9e,0x8e,0xa7,0xd6,0xb9,0xd0,0xee,0x9c,0x2c,0x57,0xc1,0x79,0x91,0xf9,0x26,0xe3,0x44,0x6d, + 0x9c,0x49,0xb0,0x0c,0xf7,0x6f,0x18,0x02,0xa2,0x52,0x1c,0x37,0x62,0x5f,0x37,0x31,0x54,0xe7,0x46,0x38, + 0x14,0x2b,0x2d,0x79,0xdb,0x22,0x7a,0xbf,0x41,0xbc,0x2b,0x77,0x5e,0x56,0x6c,0xfa,0xe4,0x4d,0xf6,0x7c, + 0x8d,0x2a,0x90,0x88,0x64,0x34,0xa6,0x6a,0x9d,0xde,0xdd,0x86,0xa5,0xeb,0xba,0x8d,0x04,0xb4,0xcc,0xe3, + 0xf6,0x0e,0xab,0x65,0xd6,0xb5,0x8a,0xe5,0x72,0x60,0x7d,0x86,0xf9,0x35,0x04,0x8f,0x68,0x57,0xda,0xd8, + 0x5a,0xd5,0xad,0xa8,0x8f,0x0e,0xf5,0x1c,0xc3,0xd1,0x90,0x15,0x51,0xe6,0xdc,0xcf,0x56,0x56,0x3a,0x47, + 0xe5,0x87,0xac,0x3c,0xcc,0x84,0xcc,0x99,0x81,0x87,0xdc,0xac,0x98,0xe1,0xc3,0x39,0xc1,0x8d,0x53,0x5e, + 0xc6,0x41,0x9c,0xac,0x5a,0x9c,0x9a,0x71,0x4e,0x51,0x69,0xd6,0xd7,0xb0,0xf8,0xd1,0x3c,0xc3,0x43,0xd7, + 0xcb,0xd8,0x7c,0x9a,0x91,0xce,0xd9,0xb8,0xb5,0xb3,0xa0,0x8c,0x4d,0x1a,0x9b,0x3a,0x11,0xa7,0x88,0x90, + 0x8d,0xa9,0xd5,0xbc,0xf5,0xea,0x0d,0x52,0x59,0x58,0x26,0x12,0x3f,0x5e,0x9b,0x26,0xb1,0x9a,0x0b,0x9f, + 0x94,0x89,0x20,0x9d,0xf0,0xcd,0x2a,0x84,0x5e,0x3b,0xf9,0x2d,0x91,0x56,0xda,0x93,0x56,0xed,0x23,0x3d, + 0x6e,0x21,0x7a,0x00,0xe6,0xbe,0x47,0x85,0xa6,0xfa,0x47,0x3e,0x9a,0xe2,0x64,0xad,0xe6,0xd9,0x49,0x47, + 0x29,0xe3,0xfb,0x9f,0x41,0xbc,0x5a,0x11,0xb0,0xdf,0xde,0xae,0x62,0x76,0xd9,0xe9,0x15,0xed,0x4e,0x12, + 0x53,0x65,0x12,0x84,0x0c,0xfd,0x8a,0x39,0x76,0xca,0x32,0xab,0xe3,0xb9,0x3a,0xf5,0xae,0x13,0x31,0x17, + 0x1c,0x58,0xb7,0x25,0x7b,0x4b,0x4e,0xda,0x70,0x4e,0x77,0x76,0x24,0x95,0xab,0x48,0x75,0xbc,0xf4,0x52, + 0xd0,0x64,0x30,0x9a,0x73,0x50,0x80,0x3f,0x44,0x10,0xb0,0x5e,0x12,0xd7,0xa5,0x50,0x97,0x5d,0xeb,0x70, + 0x14,0x34,0x66,0x93,0x01,0xbb,0x00,0x2e,0xe6,0x97,0xaf,0xbb,0x7a,0x5c,0xd4,0xbc,0x63,0x9a,0x00,0x58, + 0xb0,0xef,0x9b,0xe7,0xd7,0x13,0x57,0x90,0xa6,0x22,0x25,0x9e,0xf4,0xa3,0x04,0x4e,0x0b,0x35,0x72,0xbd, + 0x81,0xb6,0x01,0xf0,0xc5,0xe1,0xe7,0x32,0x93,0xca,0xd4,0x7c,0x7b,0xfb,0x70,0x7f,0xdf,0x74,0xcc,0x44, + 0x63,0x83,0xe3,0xfb,0x5f,0x69,0x41,0xae,0xa0,0xe0,0xaa,0xec,0x97,0x09,0x30,0xd9,0xf6,0x81,0x72,0xed, + 0x4d,0x3a,0x23,0x4c,0xfd,0xf7,0x6b,0x0f,0x7b,0x56,0xbb,0xb0,0xa6,0x99,0x5c,0xd1,0xd6,0xf1,0x22,0xe8, + 0x3e,0xda,0x08,0x4c,0x4b,0xeb,0xd8,0x63,0xa4,0x8e,0x24,0x32,0x83,0xa0,0x96,0x13,0x5e,0x6b,0xc2,0xfc, + 0x12,0x99,0x4f,0x2b,0xd3,0x18,0x02,0xe0,0x19,0xbc,0x9f,0x12,0xde,0xcf,0xcf,0x88,0x22,0x26,0x44,0x45, + 0x2d,0x5b,0xe4,0x31,0xae,0xb2,0x8a,0x29,0xf8,0xdf,0x80,0x41,0x68,0x5e,0xaa,0xd1,0x82,0x48,0xdb,0x79, + 0x60,0xc1,0x19,0x30,0x59,0x08,0x4c,0x8d,0x5c,0x50,0x88,0xfc,0xc0,0x67,0x0c,0x91,0x96,0xcc,0x7f,0x47, + 0x2c,0x8c,0xee,0x15,0xd0,0x90,0x85,0x51,0x89,0xa2,0x84,0x9b,0xf0,0x38,0x2e,0xe5,0x58,0x62,0x11,0xf1, + 0xd2,0x12,0x8b,0x09,0x6b,0x3b,0xcc,0x17,0x5c,0x97,0xb1,0x34,0x29,0x47,0xc6,0x39,0x50,0x88,0xc2,0x31, + 0xf5,0x8f,0x88,0xbf,0x64,0x82,0xbf,0xd9,0xa1,0xfd,0x02,0xd4,0xd4,0x49,0x3e,0xfd,0xe4,0x0e,0x71,0x2e, + 0x94,0x72,0xa1,0x7e,0x99,0x35,0xad,0xaa,0x25,0xfb,0x2b,0x21,0x9c,0x4f,0x3d,0x0e,0xe8,0x44,0xe0,0x72, + 0x05,0xbd,0x6d,0x17,0xe1,0xd9,0xdc,0xe1,0x13,0x9a,0x35,0x3a,0xc8,0x84,0xb8,0x85,0x57,0xb8,0x2f,0xa6, + 0x63,0x98,0xe1,0xe8,0x78,0xe5,0x69,0xa9,0x39,0x13,0xbe,0x36,0xb8,0x27,0x91,0xff,0xf3,0x64,0xfc,0x0b, + 0x9d,0x06,0x2b,0x45,0x1b,0x0a,0xe4,0xd9,0xed,0x2d,0x5e,0xa7,0xf2,0x7a,0xe0,0xe8,0xd8,0x66,0xbd,0x86, + 0xe0,0xdc,0xe0,0x42,0xdb,0x21,0xdb,0xe1,0x7c,0x3e,0x04,0x3d,0x5d,0x4d,0x22,0x8e,0x74,0x33,0x60,0xd3, + 0xe7,0xbc,0xdb,0xd3,0xa4,0x23,0x34,0x9f,0x12,0x9e,0x5b,0x1d,0x65,0xef,0xe2,0x15,0x75,0x86,0x49,0x01, + 0x43,0xc5,0x01,0x5d,0xf1,0x58,0x09,0x36,0x10,0x5b,0x43,0xd9,0x57,0x85,0x1c,0xae,0xd1,0xe7,0xc8,0x2b, + 0x4f,0xef,0x9c,0xd9,0xd7,0x0f,0x38,0xb2,0x68,0xca,0xd9,0x04,0x85,0x50,0x61,0x3e,0x12,0xc2,0x37,0x30, + 0x38,0x98,0xd3,0xd9,0xa9,0x02,0xa7,0xa6,0x0d,0x9d,0xdf,0x69,0x78,0xe2,0xaa,0xd3,0xc0,0xc2,0x3e,0x87, + 0x23,0x27,0xab,0x32,0x62,0x2a,0x85,0x4d,0x40,0x50,0x23,0x0f,0x0c,0x5f,0x9c,0x99,0x49,0x19,0xda,0xb5, + 0xa7,0xb0,0x85,0x39,0x95,0x4d,0x20,0x9d,0x5c,0x82,0x90,0x62,0xa9,0x35,0x7e,0xe9,0x45,0x3c,0x1e,0xde, + 0x96,0x2a,0x9c,0xf6,0x1c,0x01,0x8e,0x68,0xe3,0x19,0x10,0x98,0x51,0x39,0xe6,0x4d,0x2b,0xcc,0xeb,0x8c, + 0x49,0x05,0x6e,0x68,0x96,0xac,0xb7,0x3b,0xd2,0x40,0xab,0xa5,0x6c,0x9d,0x82,0xb2,0x67,0xa0,0xf0,0xb2, + 0x0e,0xc5,0xa6,0x86,0xac,0x7d,0x59,0x8b,0xc4,0x53,0xbe,0x82,0x66,0xa0,0xc8,0x5e,0xc1,0xf9,0x69,0xec, + 0x52,0xb2,0x7a,0x12,0xa2,0x8d,0x4d,0x69,0x9c,0x83,0x85,0xd6,0x3d,0xc2,0xb3,0xd6,0x3c,0x12,0x70,0x15, + 0x44,0x9f,0x10,0x5a,0x60,0x28,0x43,0xb3,0xe7,0x01,0xdc,0x4b,0xfc,0xd4,0xa9,0x53,0x95,0x88,0xfb,0x45, + 0x74,0xb1,0xd2,0x7b,0xee,0x54,0xd8,0x23,0x4a,0x1f,0x54,0xc2,0x6e,0x7c,0x3e,0x89,0xe8,0xe5,0x9c,0xf9, + 0x8d,0x4a,0x0d,0xba,0x7d,0xe4,0xea,0xe6,0x29,0xa1,0x2d,0x42,0x46,0xce,0xea,0x29,0x3d,0x55,0x8e,0xfa, + 0x4c,0x97,0x8c,0xa4,0xa6,0x1e,0x6b,0x11,0x1f,0x3f,0x87,0xcf,0xab,0xb7,0xb4,0x06,0x89,0x6e,0xb0,0x17, + 0x91,0x50,0x56,0x79,0xd9,0xe5,0x61,0x72,0x36,0x82,0xcb,0x61,0xd6,0x10,0x4f,0x33,0xc0,0x7d,0x4e,0x04, + 0xbf,0xf4,0x21,0xa1,0x15,0x5d,0x49,0xc6,0xb3,0x3a,0x90,0x3f,0x17,0x1d,0x82,0x0a,0x51,0x90,0x41,0x70, + 0xe4,0xd6,0xfa,0xc1,0x69,0xdf,0x80,0x8a,0x3b,0x05,0x0a,0xd6,0xb7,0x23,0xca,0x19,0xf8,0x36,0xe2,0x66, + 0xc3,0x92,0xdd,0x7e,0x35,0xc3,0xc7,0x2e,0x2e,0x0e,0x00,0xe4,0xe6,0x90,0x7c,0x10,0x6c,0x84,0x84,0x2c, + 0xa1,0x74,0x11,0x94,0xa5,0x72,0xbd,0x80,0xf3,0x9f,0xc2,0x9d,0x51,0x74,0x64,0x3e,0xab,0x27,0x44,0xd9, + 0xc4,0xab,0xac,0x49,0x26,0x87,0x9f,0x68,0x64,0x47,0x3d,0x2b,0xdb,0x95,0x8f,0x67,0x45,0xe4,0x83,0x8f, + 0x40,0x83,0xe9,0x03,0xb2,0x41,0x24,0x1a,0x11,0x3b,0xc1,0x16,0xba,0x0a,0x6d,0xa1,0x5b,0x9a,0xa3,0xea, + 0xb0,0x39,0x4a,0x86,0x3c,0x60,0x89,0xac,0x21,0xaa,0xf0,0xf4,0x90,0x28,0x28,0x17,0x4d,0xe4,0xa8,0x67, + 0x96,0x3f,0x4d,0x26,0xd6,0xc9,0xeb,0x9b,0x7d,0x1a,0xe1,0xb7,0x31,0xd5,0x58,0xc4,0x53,0x05,0xbb,0x13, + 0xf6,0xc8,0x27,0x3e,0x91,0x08,0x34,0x1a,0x19,0xcd,0xcc,0xb7,0x31,0x47,0xc9,0x38,0x05,0xfa,0xf9,0x14, + 0xcf,0x59,0xb7,0xb6,0x3b,0xa5,0x3c,0xd1,0x64,0xe3,0xe6,0x2b,0x73,0x2b,0x00,0xed,0xfd,0x40,0x21,0x78, + 0x4a,0x6b,0x96,0xa4,0x30,0x7a,0x9c,0xa0,0x8a,0x49,0xaf,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0xfe, + 0x04,0x9c,0x97,0x7e,0x4b,0x7f,0xa5,0xcd,0xfe,0x07,0xd2,0x5c,0x4a,0x08,0xb7,0x72,0x62,0x32,0x5e,0xeb, + 0x29,0x94,0x91,0x4c,0x6c,0x4c,0xc1,0xa6,0xca,0xfa,0x33,0x28,0x31,0xd7,0x4a,0xdc,0xf7,0x05,0x40,0x39, + 0xda,0xcd,0x65,0x60,0xf4,0xf7,0x38,0xb2,0x9d,0x45,0xa3,0x1e,0xb7,0xad,0x69,0x5d,0x8c,0xe8,0x27,0xc5, + 0x32,0xbe,0xa8,0xd9,0x66,0xe3,0x2f,0xaa,0x55,0x36,0x99,0x76,0x42,0x14,0x0e,0x44,0x25,0x2b,0x0c,0xdd, + 0x84,0x43,0xd1,0x4c,0xd6,0xe1,0x91,0x6a,0x03,0x7b,0x75,0x98,0x87,0xf0,0xb6,0x67,0x58,0x18,0x0f,0xd9, + 0x85,0x9a,0x73,0x64,0x39,0x3e,0xcd,0x8a,0xd1,0xbd,0x8b,0x92,0x8e,0x53,0x04,0xc0,0x92,0xa7,0x51,0xd9, + 0xb0,0x70,0xe8,0x8c,0x48,0xa8,0xfc,0x0c,0x31,0x62,0x9b,0x25,0x82,0x2b,0x10,0x96,0x99,0x43,0x54,0x56, + 0x34,0xef,0x75,0xa3,0x6b,0x22,0x81,0x28,0x9b,0x52,0x27,0x06,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9b,0xe7, + 0x2d,0x82,0x65,0x98,0x8f,0xf1,0x1d,0x36,0x61,0x17,0x6b,0x14,0x4c,0xbc,0x66,0x6f,0xe2,0x22,0x10,0xd9, + 0x39,0x04,0xd4,0x44,0xa0,0x35,0x27,0xc4,0x13,0x2d,0xe9,0xdb,0x02,0x87,0x4c,0x92,0x9a,0x66,0xaa,0xc1, + 0xda,0x44,0x7b,0x39,0xcf,0xe8,0x93,0x4a,0x3e,0x09,0xe4,0xa3,0x04,0x0f,0xf1,0x69,0xe0,0xbf,0x52,0xc7, + 0x85,0x63,0x71,0x0a,0x38,0x8c,0x55,0xc4,0x36,0x55,0xb5,0x2e,0xce,0xca,0xb7,0xd6,0x4d,0x9a,0x26,0x86, + 0x20,0x83,0xb1,0x80,0x45,0x74,0x2c,0xca,0x24,0x66,0xd7,0x31,0xde,0x81,0x89,0x36,0xc7,0xb9,0xf2,0x39, + 0x6e,0xcb,0x3d,0x9a,0xf2,0xb6,0x33,0x6c,0x9c,0x2f,0x40,0x5b,0x90,0x28,0x9f,0x95,0x81,0x3e,0x62,0xcb, + 0x56,0x23,0x36,0x60,0x28,0x05,0xc5,0xd1,0xee,0xe7,0x1e,0xae,0xd7,0x42,0x9c,0xcf,0x69,0xf8,0xb0,0x87, + 0x0a,0x50,0x5a,0xe0,0xb4,0x11,0x06,0xb2,0x73,0xb2,0x03,0xd6,0xd6,0x36,0xab,0xa5,0xae,0xed,0xd9,0x83, + 0x72,0x26,0x85,0x89,0x0f,0xb6,0x48,0xe5,0x77,0x6b,0x40,0x71,0xd3,0x7d,0xcf,0xac,0xdf,0x49,0xdf,0x08, + 0x1b,0x11,0xde,0x3c,0x09,0x82,0xd3,0x4c,0x38,0x50,0xeb,0x11,0x07,0xa2,0xb1,0xd1,0xf9,0x5c,0xdb,0x14, + 0x77,0x34,0x56,0x56,0x89,0x5f,0x1d,0x6d,0x8b,0x89,0x24,0x8c,0x39,0xd8,0xf7,0x12,0x01,0x6a,0x34,0x64, + 0xdc,0x03,0x46,0xba,0x1b,0xf2,0x2c,0x43,0xbc,0x12,0xa2,0x2b,0xb3,0xbe,0x10,0x75,0x52,0xa6,0xac,0x72, + 0xdf,0x30,0x8f,0x13,0xdf,0x04,0xd7,0x17,0xd1,0xa8,0xb4,0xa1,0x46,0x25,0xd6,0x5e,0xb2,0x0b,0x82,0xf3, + 0x9b,0x6c,0x9f,0xd6,0xa4,0x9b,0xf6,0x68,0x1f,0x0b,0x64,0x02,0x7d,0x21,0xc1,0xfb,0xcb,0xf9,0x3d,0x58, + 0x5a,0x89,0xbd,0xc2,0x18,0x03,0x67,0xfe,0x35,0x7b,0xcd,0xc3,0xeb,0xb8,0x3f,0x69,0x74,0x72,0xc5,0xc1, + 0x02,0x66,0xcf,0xa0,0x8d,0xee,0x96,0x31,0xd6,0x58,0x1c,0xc9,0xc6,0x6f,0x96,0x43,0x89,0xdb,0x76,0x94, + 0x21,0xc4,0xca,0xa6,0x45,0xc1,0xf3,0xd6,0x85,0x38,0x39,0x46,0xbc,0x80,0x8e,0xed,0xe5,0xab,0x8e,0x7d, + 0x04,0xbb,0x28,0xe2,0x34,0xef,0x91,0x0b,0xec,0x9d,0x19,0x7c,0xf5,0xb2,0xed,0x50,0x26,0xfd,0xd5,0x99, + 0x84,0xae,0xf3,0xdf,0xec,0x1d,0xa4,0x9b,0xba,0x9a,0x49,0xe8,0xf4,0xdf,0x2b,0x0d,0x55,0x9d,0xda,0x8e, + 0x5d,0x1c,0x05,0x09,0x24,0x76,0x04,0x8c,0x6f,0xe3,0x28,0x94,0x12,0x01,0x9b,0xdd,0x56,0xb5,0x41,0x77, + 0x81,0x58,0xf1,0x45,0xcf,0x44,0x80,0xd5,0xa4,0x0c,0xa7,0x50,0xc0,0x30,0x78,0x1e,0x33,0xae,0xeb,0xc3, + 0xa5,0x0d,0xd4,0x0b,0xb3,0x77,0xb6,0x74,0x34,0x7c,0xc1,0x2b,0x48,0xca,0x36,0xec,0x8d,0xc6,0x0d,0x04, + 0xc8,0x4c,0x02,0x3c,0x03,0x2d,0x56,0x31,0x83,0x17,0x92,0x36,0xcf,0x36,0x74,0x0d,0x6c,0x89,0xbf,0x5d, + 0xb0,0xc7,0x16,0xa3,0x18,0x38,0xac,0xe1,0x17,0xb7,0x84,0xb8,0x16,0x5e,0x1a,0x32,0x79,0x74,0x6f,0x46, + 0x43,0xac,0x2b,0xb8,0x6c,0xb5,0x4e,0xef,0x3f,0xe7,0x3b,0x2f,0x03,0x2f,0x80,0x36,0xf4,0xec,0xbe,0x11, + 0x21,0xf3,0x53,0xe8,0x09,0xd2,0x77,0xbc,0xe7,0x7d,0x82,0x2a,0xc3,0x37,0x3a,0x80,0xb9,0x14,0x4c,0xcb, + 0xf8,0x89,0x08,0x0e,0xf3,0x84,0xe0,0xc8,0xf8,0x3d,0x4a,0xcd,0x43,0x68,0xd6,0xdf,0x5d,0xfe,0x76,0xa2, + 0x27,0xed,0x6e,0xb4,0x15,0xed,0xea,0xb4,0x4d,0x39,0x3a,0x7f,0x60,0x44,0x1e,0x02,0xd8,0x06,0xa0,0x0c, + 0x1d,0x8e,0x34,0x59,0x08,0x1d,0x48,0xbb,0x13,0x7a,0x2a,0xb7,0x3b,0x1f,0x55,0xbc,0x43,0x89,0xd0,0xcd, + 0x50,0x27,0x36,0x1e,0x48,0x2f,0xbe,0xd8,0x0d,0x02,0x02,0xfc,0xdf,0xcd,0xa8,0x17,0x89,0xa2,0xdf,0x32, + 0xd8,0x95,0xac,0xa4,0xe9,0xb7,0x26,0xe8,0x32,0x8a,0xc6,0x1d,0xf1,0x5c,0x6b,0x62,0x02,0xc4,0xda,0x84, + 0xde,0x45,0x75,0x3a,0xac,0x8e,0x37,0xf0,0x20,0x40,0x77,0x4d,0xdd,0xc3,0x61,0xe7,0xdc,0x7a,0xd4,0x5c, + 0x9c,0x45,0x69,0xb4,0xc8,0xdb,0x73,0x36,0x34,0x9a,0xc8,0xe3,0x86,0xb6,0xe8,0x49,0x6b,0xa3,0xfb,0x6c, + 0x6a,0x38,0x6d,0x8d,0x2e,0xea,0xde,0xef,0x2b,0x5d,0x5f,0x7f,0xd0,0xd0,0x43,0x57,0x72,0x0f,0xcd,0x5d, + 0xb1,0x34,0x67,0xc5,0x45,0x34,0xa4,0x4a,0xf9,0xb1,0xb7,0x57,0xd8,0xe6,0xb2,0xd6,0xa7,0x3d,0x1f,0x21, + 0xeb,0x79,0x5d,0x84,0x6e,0xdc,0x16,0x4c,0x81,0x21,0xe0,0xa0,0x5d,0xc1,0x72,0x9e,0xbe,0x6d,0xc6,0x7d, + 0xb5,0x4a,0xc5,0xd6,0x50,0x73,0xfe,0xc5,0xe1,0x8f,0x5f,0x1c,0xb2,0x38,0x60,0xf1,0x68,0x08,0xf9,0xd4, + 0xb7,0xff,0xb2,0x7c,0x51,0xd5,0x83,0xb5,0xe0,0xaf,0x43,0x19,0x05,0xe1,0xe3,0x9d,0x1d,0x4e,0x62,0x8c, + 0x6c,0xeb,0x26,0xf8,0x90,0x87,0x22,0x00,0xdc,0x9f,0x44,0x88,0xed,0x63,0x6c,0x81,0xc6,0xc3,0x51,0x4f, + 0xbf,0x2c,0x64,0x92,0xfd,0x68,0x8e,0xfe,0xd0,0x3f,0x9c,0x75,0x7e,0xde,0x78,0x4c,0x1b,0xe3,0x54,0x8e, + 0xc4,0x42,0x14,0x01,0x3f,0xf7,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x09,0x16,0x51, + 0xc3,0x1b,0x31,0xae,0xcd,0x9c,0x8b,0x30,0x34,0xf3,0x0c,0x79,0xcd,0xba,0x3a,0x9a,0x53,0xcd,0x7e,0x65, + 0x9f,0x29,0xe3,0x44,0x89,0xb0,0xae,0xbb,0xbd,0x5d,0x15,0xec,0xd0,0x48,0x3f,0xc4,0x0d,0xf2,0x80,0x41, + 0x57,0x60,0x34,0x8f,0x21,0x55,0x7a,0x87,0x50,0x59,0xe7,0xd5,0x9c,0x38,0x75,0xae,0xa1,0x23,0x7b,0xc2, + 0x38,0xc3,0x04,0x50,0xc6,0xdd,0x14,0x23,0x93,0x0b,0xed,0xf7,0x5b,0x11,0x50,0x38,0xed,0xb2,0x38,0xc9, + 0x61,0x63,0x15,0x44,0x42,0x14,0x8f,0xb2,0x7a,0xbc,0xbb,0x5b,0xd0,0xd6,0x85,0x05,0x63,0x71,0x64,0x08, + 0xed,0x38,0xc7,0x61,0xef,0x3d,0x2d,0x03,0xcf,0x93,0x3f,0x0c,0x4c,0x9a,0x18,0x79,0x81,0xc3,0xd7,0xed, + 0xad,0xee,0x27,0x75,0xe7,0xdd,0x42,0xb2,0x70,0xc3,0x19,0x56,0x6e,0x09,0xaf,0x3d,0x2d,0x0f,0x4d,0xf6, + 0x73,0xbb,0x59,0xab,0x8f,0x2c,0x00,0x0e,0x8c,0x4a,0x6c,0x34,0xa2,0xb4,0x2f,0xb1,0x22,0xb2,0x83,0x48, + 0x61,0xc3,0x64,0x95,0x22,0x61,0xa9,0xb3,0x46,0xb8,0xf9,0x29,0x7e,0xea,0x09,0xcd,0x1a,0x4d,0xf1,0x4f, + 0x10,0x7c,0x65,0xd6,0x11,0xf7,0x77,0x30,0xba,0x46,0x07,0x1a,0x29,0xdc,0x79,0xa0,0x0a,0x18,0x4d,0xe0, + 0x24,0xa0,0x1f,0xbf,0xaf,0x44,0x16,0x3d,0xdb,0xd9,0x99,0x5b,0xa0,0x26,0xde,0x45,0xbe,0x86,0xcf,0xda, + 0xd0,0xb7,0x45,0x49,0x34,0x39,0x7f,0xb3,0x72,0xdf,0x60,0x0b,0xaf,0x3a,0x51,0x6d,0x4e,0x87,0x64,0xe3, + 0x62,0x9c,0xb7,0x0a,0x4d,0xf2,0xa8,0xad,0x15,0xc6,0x11,0xd9,0x6a,0xa5,0xc9,0xf5,0xb8,0x9a,0xfc,0x00, + 0x7f,0x29,0x49,0x8e,0x20,0x83,0x3e,0x8d,0xd9,0x29,0x60,0xee,0x22,0x7f,0x70,0x01,0xc4,0x11,0x34,0xe1, + 0x03,0xef,0x6c,0x71,0xde,0x6b,0x71,0xce,0x2d,0xf6,0x27,0xc1,0xb4,0xcc,0x6c,0xb8,0x9b,0xef,0x26,0x99, + 0xb2,0xd7,0x19,0x7d,0xc5,0xd3,0x1e,0xad,0x4a,0x99,0x98,0x96,0xfe,0x41,0x10,0xdb,0x35,0xd8,0xfd,0xb9, + 0x83,0xe3,0x86,0xa2,0xee,0xf4,0xcc,0x71,0xcd,0xf6,0x1c,0x8b,0xd9,0xc7,0x86,0xca,0x34,0x2e,0xd8,0x14, + 0x37,0x19,0x99,0xb8,0xe0,0xac,0x13,0x2f,0xfc,0x5b,0x76,0x51,0x24,0xaa,0x3c,0x24,0x78,0x27,0x18,0x1c, + 0xd5,0xf9,0xe5,0x1b,0x26,0xa3,0x2a,0x26,0xa7,0x76,0xa3,0x51,0xb4,0x1b,0xda,0x83,0x54,0x61,0x35,0x90, + 0x15,0x48,0xd8,0xd5,0x51,0x94,0x24,0xb4,0x3f,0x64,0x99,0x89,0x53,0xd2,0x01,0xa7,0xe4,0x01,0x93,0x0e, + 0x4a,0xae,0x35,0x31,0x71,0xeb,0x37,0x4d,0x60,0x7f,0x6f,0x37,0xa5,0xcf,0xad,0x80,0x0e,0xff,0x18,0xbb, + 0xc9,0x8a,0x0d,0x23,0xab,0xb8,0x94,0x50,0x1b,0xa6,0xbc,0x31,0x8e,0xac,0x61,0x1c,0x59,0xcb,0x85,0x09, + 0x7c,0x0c,0xf8,0x1e,0xf0,0x35,0x28,0x32,0x2e,0x50,0x00,0xde,0x78,0x32,0x70,0x85,0x68,0xe3,0x80,0x02, + 0xda,0x34,0xdc,0xe6,0xd9,0x8f,0x35,0x63,0x2d,0x71,0x9d,0xea,0x12,0xa1,0x45,0x79,0xae,0xeb,0x82,0xe3, + 0x6d,0xd3,0x0c,0xb5,0xb1,0x20,0x43,0x87,0x04,0x5b,0xeb,0x29,0x20,0x09,0x86,0x39,0x60,0x3e,0x89,0x1a, + 0xc3,0x68,0xa6,0x59,0xf8,0x09,0x0b,0xc7,0x57,0x59,0xdd,0x4b,0x62,0x7e,0xcc,0x88,0x86,0x10,0x0e,0xa1, + 0x53,0x20,0x63,0x2d,0xf4,0xca,0xb8,0x4b,0x30,0xb5,0xb8,0x4a,0xf2,0x6c,0x05,0x0a,0x7f,0x2a,0xcc,0x4c, + 0x4e,0xa0,0x0f,0x49,0x29,0xf8,0xb6,0x71,0xfc,0xae,0xbc,0xbd,0x7d,0x0f,0x83,0x8e,0x95,0x6c,0x7e,0x88, + 0x2b,0xe4,0xc9,0x14,0xb3,0x02,0x76,0x93,0x1f,0x54,0x3c,0x4d,0xb0,0xfb,0x2a,0xb6,0xc5,0xd7,0x40,0xe2, + 0x13,0x04,0xb7,0x43,0x60,0x5a,0x17,0x71,0xfc,0xcd,0x87,0xb8,0x2d,0x54,0x89,0xcc,0x24,0xfd,0x17,0x7d, + 0x97,0x20,0xd0,0x66,0xaf,0x10,0x32,0x83,0x55,0xf8,0x21,0x34,0x10,0xf8,0x67,0xcd,0x4e,0x77,0x05,0x07, + 0xc8,0xde,0xf8,0x50,0x43,0x54,0x92,0x45,0x44,0x69,0x57,0x97,0xa7,0xb4,0x3f,0x1a,0xda,0x2b,0xba,0x8c, + 0x24,0xec,0x58,0xf4,0xfc,0xf5,0x93,0xe7,0xcf,0x8c,0xad,0xb4,0xf0,0xf8,0x93,0xa8,0xad,0x69,0x2c,0x29, + 0x94,0xfc,0x9d,0xc0,0xe8,0xec,0xf5,0xe6,0xec,0xa1,0xfe,0x55,0x9b,0x10,0x02,0xdd,0x22,0xdc,0x0b,0xa2, + 0x1a,0x4f,0x73,0x2a,0x87,0x7a,0xcb,0x89,0x79,0x4e,0xa5,0x5e,0x5f,0x83,0x2e,0x3e,0xd3,0x6d,0x37,0x29, + 0x1a,0xf7,0x77,0x74,0x5a,0x91,0x2c,0xed,0xcc,0x17,0xa8,0x2a,0xae,0x24,0x19,0x1a,0xbb,0xd8,0xcf,0x50, + 0x91,0x77,0xf0,0x6f,0x7b,0x0d,0xaf,0x89,0x8f,0xcf,0x7f,0xf9,0xf8,0xf8,0xfd,0xf3,0xc7,0x9d,0x51,0x53, + 0xfa,0xd2,0x9f,0xa5,0x66,0x76,0x38,0xa6,0x66,0xa1,0x97,0xe7,0x96,0x74,0x0a,0x6d,0x01,0x35,0x11,0xdf, + 0xd5,0xf2,0x25,0x11,0x11,0xb3,0x82,0x70,0x0f,0x2c,0x6b,0xf2,0xb3,0x5c,0x90,0xa3,0xb2,0x5d,0xe9,0xdd, + 0xf1,0x22,0x14,0x04,0x2c,0x45,0xc6,0xed,0xc0,0x15,0x30,0x2e,0x5b,0xd9,0x86,0xb3,0xed,0xfd,0xf5,0xc0, + 0x32,0x04,0x90,0xf0,0x4b,0x6f,0x3f,0x5a,0xd2,0x8d,0x83,0xef,0xe4,0x66,0xaf,0xc8,0xa6,0xc4,0xb5,0x95, + 0x21,0xc3,0x80,0xdd,0x56,0x19,0x5e,0x81,0xe5,0x16,0x90,0xcb,0x82,0x39,0xea,0x17,0xca,0x4d,0xa1,0xc4, + 0xe9,0x56,0x06,0x69,0x7d,0x7b,0x27,0x1a,0xfc,0x28,0x0a,0x98,0x2e,0xc5,0x03,0x5c,0x50,0x32,0x06,0xc6, + 0x1d,0x62,0x8f,0x84,0x8b,0xe3,0x4b,0x2e,0x67,0xec,0x8d,0x4b,0x60,0xfb,0xa6,0x35,0x04,0x19,0xc3,0x1e, + 0x5b,0xd2,0x0b,0xd1,0xe4,0xcc,0xe8,0x39,0x58,0x46,0x58,0xbe,0x54,0x86,0x9c,0xf3,0x2a,0xb9,0xac,0xc3, + 0x28,0xf1,0xac,0x08,0x5f,0xa4,0x79,0xb3,0x41,0x4a,0x38,0x79,0x07,0x61,0xd3,0x6b,0xd6,0x1f,0x11,0xf1, + 0x3f,0x36,0x58,0x87,0x2d,0x93,0x21,0x0c,0x3a,0xe6,0xb8,0xb1,0x05,0xc6,0xcc,0x95,0x68,0x22,0x8b,0x59, + 0x42,0x19,0x37,0xd9,0x3b,0xa0,0x80,0xd7,0x2d,0x4b,0x10,0x15,0x5c,0xb3,0x0a,0x18,0x60,0xea,0x0b,0x2e, + 0x38,0x70,0x07,0x81,0x58,0x7d,0xa9,0x06,0xa7,0xbe,0x2f,0x98,0x35,0xe1,0xb2,0x7e,0xdb,0x6e,0x38,0xc9, + 0xc5,0x6c,0x97,0x15,0x38,0x6c,0xb4,0xc6,0x2c,0xfc,0x9c,0x70,0xbb,0x5c,0xf2,0x40,0xed,0x9f,0x67,0xc5, + 0xee,0xc1,0x3a,0x20,0x9b,0x18,0x75,0x6e,0x1f,0x88,0x2a,0x74,0x85,0x3f,0x73,0xb6,0x10,0x27,0x96,0x6c, + 0x49,0xff,0x67,0xf4,0xdf,0x3a,0x64,0x0e,0x08,0x51,0xb0,0xb9,0xd8,0x24,0xb7,0x0d,0xe3,0x62,0xd1,0x89, + 0xd8,0x24,0x5f,0x7c,0x2d,0xb6,0xdd,0x5f,0x3f,0xa4,0x21,0x8b,0x7c,0x74,0xfb,0xc0,0xef,0xc9,0x69,0xf2, + 0xc5,0x97,0xbd,0x02,0xd3,0x4e,0x81,0x55,0xf2,0xf5,0xdf,0x7b,0x05,0x56,0x9d,0x02,0xf3,0xe4,0xcb,0xff, + 0xea,0x15,0x98,0x77,0x0a,0x1c,0x3c,0xfc,0x12,0x1c,0xe3,0xed,0x2d,0x3d,0xf0,0x66,0x0e,0xbb,0xb8,0x7b, + 0x90,0x0c,0x67,0xec,0x21,0xe3,0xf4,0xf6,0x76,0x49,0xfc,0x55,0x72,0xd3,0x5c,0x16,0xc6,0x63,0x60,0x9a, + 0x53,0xad,0x5f,0x7c,0x99,0xc2,0xf0,0x40,0x8c,0x66,0xc7,0x92,0xf4,0x75,0xda,0xf4,0x92,0xbe,0xfe,0x7b, + 0xba,0xea,0x25,0x7d,0xb9,0x9f,0xce,0x76,0x77,0x3b,0x29,0x07,0xe9,0x6c,0x6f,0xaf,0xf3,0xd9,0x41,0xba, + 0xec,0x96,0xf9,0xfa,0x8b,0x74,0xd9,0x2d,0x73,0xf0,0xf0,0x8b,0xf4,0xb4,0x5b,0xe8,0xe0,0xe1,0x57,0xe9, + 0xe9,0xde,0x1e,0x28,0x33,0x99,0x10,0xbf,0xe7,0x2e,0x32,0x1a,0x8e,0x5a,0x18,0x96,0x6b,0x7c,0xc1,0xe1, + 0x25,0xc5,0xf9,0x25,0x5e,0x98,0x71,0xd3,0x98,0x2f,0x20,0x56,0xd9,0xdb,0x4b,0xc6,0x8b,0x9d,0x9d,0x63, + 0x13,0xc3,0x77,0x91,0xb0,0x86,0x00,0x86,0xfe,0x22,0x70,0x75,0xf6,0x23,0xd5,0x24,0x66,0x28,0x62,0x96, + 0xdd,0x5e,0x1a,0xed,0x41,0x2c,0xd5,0xa2,0x62,0x09,0xca,0x0f,0x16,0x4c,0xe1,0x26,0x7f,0x0e,0x2e,0x07, + 0x97,0x80,0x78,0xf8,0xca,0x43,0xf8,0xaa,0xb2,0x01,0x7a,0x3f,0xf3,0x92,0xbb,0x28,0x8e,0x44,0xc0,0xf9, + 0xc8,0xde,0x4b,0x72,0xff,0x98,0x52,0xef,0x13,0x71,0x72,0x3f,0x4a,0xe2,0xfb,0x1c,0x85,0x3e,0x1a,0x77, + 0xb3,0x5c,0x5f,0xca,0xc4,0x97,0x52,0x91,0xcb,0x28,0x09,0x36,0xd6,0x90,0x2d,0x87,0x12,0xbf,0x2a,0x70, + 0xbc,0xe3,0xcd,0xd7,0x75,0x72,0x8e,0x0e,0x7f,0x5a,0x21,0xc2,0x1a,0x9b,0x44,0xd5,0x47,0x1c,0x18,0x38, + 0xa0,0x4a,0xff,0xd5,0x17,0xa3,0xb4,0xa3,0x45,0xbe,0xec,0x9a,0x9e,0xf8,0x30,0x40,0xeb,0x4d,0xeb,0xf2, + 0xa0,0xc0,0x3a,0x49,0x0f,0x03,0x6b,0xa2,0x7f,0xba,0xb3,0x3e,0x6e,0x9d,0x76,0xde,0x06,0x08,0xf1,0xd8, + 0xe0,0x86,0xef,0xf0,0xd0,0xca,0xc4,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0x2c,0xf4,0x25,0xe2,0x08,0xfb, + 0xb6,0xb2,0xbe,0x05,0xe8,0x7f,0x5a,0x99,0xd6,0xde,0x4a,0x90,0x6b,0x78,0x9d,0x2f,0x25,0x0e,0x91,0x79, + 0xc7,0xd1,0x76,0x47,0x85,0x81,0x07,0x9e,0xf6,0x34,0x2d,0x34,0xa1,0xc0,0xef,0xac,0xd7,0xb6,0x1e,0xaa, + 0x3e,0xce,0x50,0xed,0xdc,0x62,0x75,0x16,0x6d,0xc3,0x65,0x87,0x90,0x3d,0x4c,0x2a,0xc3,0x22,0xec,0x40, + 0x4b,0xf9,0xff,0xd7,0xe4,0x1b,0xff,0xd9,0xb0,0x88,0x75,0xa9,0xa5,0x52,0x3b,0x5c,0x8a,0x70,0x32,0x7c, + 0xc3,0xe5,0xd8,0x87,0x61,0x49,0x71,0x76,0xde,0x4e,0x62,0xca,0x37,0x44,0xf2,0x42,0x97,0xab,0x48,0xb9, + 0x0a,0x38,0x3f,0x49,0xeb,0xd1,0xa2,0x98,0xcd,0xe6,0x12,0x82,0x26,0x5a,0x54,0xab,0x46,0xaf,0x96,0x91, + 0x35,0xf8,0x1d,0xd7,0x46,0x4d,0x3d,0xf1,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x61, + 0x02,0xab,0xc5,0x53,0x14,0xd3,0xbe,0x80,0x76,0x59,0xc6,0x72,0xcf,0x06,0x16,0x5c,0x8f,0x71,0x51,0xeb, + 0x05,0x64,0x67,0x4d,0xc0,0xb9,0x98,0x6b,0xdd,0xa7,0x19,0x2e,0xe5,0x19,0x6f,0xe8,0xfe,0x8a,0xc9,0xd4, + 0xdd,0x2c,0xde,0x38,0x37,0xbd,0x46,0x2e,0xf2,0xc9,0xa6,0x94,0x7f,0xd8,0xa8,0xe9,0x51,0x7a,0x38,0x55, + 0xcd,0x51,0xda,0x0c,0x82,0x40,0xed,0x40,0x40,0x28,0xa4,0x82,0x6f,0x70,0x60,0x6f,0xaa,0xdb,0x5b,0x79, + 0xb9,0xd8,0xe3,0xd8,0x2c,0x48,0xe2,0x9d,0xcc,0x31,0x78,0x6d,0x18,0x4d,0x1c,0x74,0xa2,0xc2,0x10,0x2f, + 0x18,0x4b,0xc8,0x14,0xda,0xc5,0x61,0x93,0x0f,0x0a,0xfb,0x41,0x2f,0xd4,0x6d,0x11,0x9e,0x9a,0x45,0xb7, + 0x37,0xfe,0x6b,0x96,0xcc,0x04,0x20,0x1a,0x46,0xc2,0x09,0x60,0xd5,0x58,0xed,0x17,0x7d,0xab,0x7d,0xe8, + 0x96,0xe0,0x14,0xc1,0x57,0xaa,0x20,0x50,0xe8,0x4d,0x61,0x63,0x67,0x55,0x88,0x9d,0x25,0x2e,0x16,0x96, + 0x5d,0x73,0x7e,0x8c,0x9d,0x26,0x43,0x2b,0xfe,0xaa,0x37,0x6b,0x62,0xa5,0x5f,0x64,0xd1,0xbd,0x7b,0x17, + 0x84,0xcc,0x18,0x81,0x82,0x70,0xc8,0xa2,0xd8,0x88,0x0b,0x29,0x63,0x8b,0x5a,0xde,0xba,0x2f,0x23,0xbf, + 0x3f,0x41,0x8a,0x45,0xb4,0x78,0x4e,0x20,0x2b,0x1d,0x89,0xb3,0x83,0x7c,0x7a,0x4c,0x7c,0xe7,0x6e,0x01, + 0xf4,0x68,0xf8,0xc9,0x2c,0x07,0xf5,0x58,0x20,0x60,0x3d,0x1b,0xdd,0x58,0xf0,0x21,0x1c,0x0b,0x5e,0x2f, + 0x21,0xee,0xfc,0x6a,0x89,0xeb,0x06,0xa9,0x8b,0xe9,0x7d,0x83,0x63,0xef,0x2b,0x6b,0x9a,0xe3,0x43,0x9b, + 0x6c,0xc5,0x68,0x70,0xeb,0x26,0xda,0xad,0x76,0xa3,0x75,0x14,0x2c,0x40,0xae,0x43,0x34,0x1e,0x22,0x37, + 0x9a,0xc2,0x1f,0x6b,0x1f,0xc0,0x30,0xb8,0xcc,0xea,0x30,0x4a,0x1e,0xed,0x43,0xea,0x88,0xdb,0xb9,0x5e, + 0xda,0xd4,0x23,0x4a,0xfd,0xb1,0x76,0x51,0x7a,0xe3,0x3f,0xf8,0xe3,0xb0,0x04,0x78,0xea,0x6f,0xf6,0x0e, + 0x26,0x37,0xd4,0xeb,0xd4,0x9f,0x3f,0x7f,0x10,0xc5,0x46,0xac,0x38,0x0f,0xc0,0xa6,0xfe,0x51,0x13,0xc6, + 0xc7,0x60,0xd6,0xa9,0x94,0xe6,0x12,0x1c,0xa7,0x89,0x09,0x9f,0x9f,0x40,0xb2,0x52,0x0b,0x3f,0xd7,0xd9, + 0xef,0x10,0x11,0x6c,0xb3,0xb3,0x5d,0xb2,0xd2,0xf1,0x77,0x75,0x86,0xf0,0xc3,0xc9,0x64,0x8e,0xe7,0x24, + 0xfd,0x1a,0x2c,0xed,0x77,0x75,0x28,0xa6,0xb2,0xf2,0x67,0xf1,0x90,0xa4,0x2a,0xfe,0xa8,0x6d,0x05,0x1c, + 0x58,0x96,0xef,0xe1,0x5a,0xc1,0xef,0x3b,0xe1,0xa0,0x86,0x8e,0x7c,0xe1,0xba,0x20,0x80,0xdc,0xdd,0x55, + 0x5f,0x7f,0x61,0x9e,0xf7,0xf6,0xd8,0xd4,0x8e,0xe6,0xf0,0x77,0xae,0x49,0x40,0x6b,0x8d,0xc6,0x6d,0xcc, + 0xf3,0xee,0x78,0x7f,0x36,0xe3,0xb5,0x29,0x3f,0xd3,0x58,0xd5,0xef,0x35,0xd4,0x8d,0x5e,0x93,0x6c,0xdc, + 0x3b,0xd9,0x37,0x62,0x62,0x6e,0xb4,0x49,0xa3,0x7b,0x44,0x97,0xc6,0xb8,0x43,0x91,0x6a,0x34,0x77,0x76, + 0xa1,0x80,0x3c,0x32,0x44,0x04,0x4e,0xa8,0xda,0xdb,0x0f,0xff,0x54,0x87,0x04,0xd5,0xee,0xee,0x1f,0xa1, + 0xe9,0xfb,0x34,0x28,0xf8,0x47,0xfd,0x4d,0xf6,0x63,0x00,0xf7,0xab,0x30,0x6a,0x38,0x93,0x87,0xed,0xed, + 0x2d,0xd3,0x91,0x81,0x10,0x9b,0x27,0x29,0x74,0x36,0x94,0xd9,0x64,0x07,0x5a,0x5e,0x0b,0xf8,0x65,0x8c, + 0x93,0x71,0xe0,0x98,0xa7,0x43,0xa9,0x88,0x46,0xa4,0x0a,0x9d,0x8c,0x8e,0x71,0x5d,0xe4,0xc7,0xbc,0x81, + 0x61,0x4f,0xe5,0xdf,0x42,0xa9,0xd9,0xb9,0xf7,0xf0,0xcc,0xaa,0x3b,0xe2,0x49,0x98,0xde,0x9e,0xb3,0x5f, + 0x25,0x9d,0xcd,0x7c,0x17,0x63,0xf7,0xc6,0x17,0xbf,0x91,0xbf,0xaf,0xfb,0xe1,0x68,0xb7,0x8a,0xd8,0x5f, + 0x0f,0x38,0xdc,0xc4,0xce,0xce,0x92,0x37,0xa6,0xf8,0xb0,0xad,0x11,0xc2,0x18,0x71,0x09,0xd4,0xf7,0xf5, + 0x26,0x8f,0x88,0xd6,0xbe,0x2b,0x27,0x37,0xe6,0x1c,0x84,0xa5,0x8e,0x9c,0x65,0x08,0x2b,0x67,0xf0,0x7d, + 0x40,0xc9,0x2c,0xb5,0xd7,0x59,0xc5,0x74,0xaa,0x7e,0x5f,0x27,0x83,0x9c,0x29,0x22,0x5a,0x05,0xf3,0xd5, + 0x75,0x06,0x98,0xe9,0xd8,0x46,0xa5,0xda,0x76,0x02,0x9b,0x0a,0x6c,0xfe,0xb6,0x13,0xd7,0xe0,0x16,0x00, + 0xc7,0x83,0x9a,0x14,0x46,0x6a,0x55,0x56,0x86,0xef,0xe3,0xef,0x6b,0xc3,0xa4,0xf6,0x90,0x03,0x75,0xf4, + 0xf0,0x04,0x7a,0x20,0x83,0x3b,0xde,0x95,0x93,0xc8,0x5c,0x7f,0x9d,0x5a,0xeb,0x44,0x0e,0x12,0xed,0x7d, + 0x01,0xf8,0x03,0x0e,0xf7,0xcc,0x7e,0xe6,0xfe,0xea,0x71,0x4a,0x5e,0xa3,0xbe,0xcb,0x42,0x62,0x20,0x8c, + 0xa4,0xa2,0xce,0xa7,0x97,0xf8,0xd4,0x64,0xf4,0x3e,0xc7,0x67,0x6b,0xf0,0x38,0xdf,0xb3,0x8a,0xfe,0x54, + 0xab,0xa5,0x56,0xb5,0x97,0x19,0x7f,0xef,0x42,0x02,0x04,0x0e,0x87,0x43,0x73,0x64,0x1d,0x6e,0x3a,0x33, + 0xe5,0x12,0x43,0x11,0xbb,0x4c,0x49,0x93,0xf5,0x3e,0xec,0x4a,0xb7,0xc2,0xd4,0xbb,0x04,0x5c,0xce,0xc7, + 0xa7,0x23,0xe3,0x2a,0x44,0xce,0x0a,0x51,0x54,0x61,0x22,0xd6,0x15,0x47,0x59,0x14,0x05,0xb9,0x2b,0x73, + 0xcb,0x20,0x4a,0x28,0xbe,0x2b,0xda,0xde,0xdd,0x6c,0xdc,0x93,0x8a,0x92,0x00,0xe5,0xbb,0x8f,0xaf,0x5f, + 0x71,0x02,0x97,0xae,0x87,0x43,0xe0,0x06,0x26,0x50,0x15,0x95,0x6d,0xd0,0x26,0x26,0xaf,0x28,0x57,0x7a, + 0x0c,0x9c,0x97,0x4b,0xd1,0x37,0x70,0xd2,0x72,0xa2,0xe6,0xdc,0x00,0xe6,0x53,0x64,0xc5,0x61,0x11,0x98, + 0x1f,0xf1,0xb5,0xc6,0x22,0x65,0x93,0xe6,0xf3,0xd1,0x31,0xbf,0x66,0x95,0xb1,0x62,0x6c,0x21,0x5c,0x8b, + 0x22,0x1b,0xf1,0xbe,0x4a,0xc6,0xcb,0x6c,0xae,0xb6,0xe3,0xd3,0x2c,0x4f,0x44,0xda,0xd0,0x50,0x3a,0xac, + 0xb3,0xdf,0xbe,0xfb,0xf8,0xf2,0xed,0x1b,0xd4,0x73,0x6a,0xc5,0x3f,0xc4,0x10,0x0e,0xb0,0x21,0x84,0x1b, + 0xd8,0xc1,0xdc,0x5f,0x8c,0x25,0x8e,0xd2,0x46,0x0f,0xc7,0xd7,0x1c,0xb8,0x38,0x43,0xc1,0xf1,0xdf,0x3a, + 0x31,0xa1,0x5e,0xc7,0xa7,0x6a,0x99,0x74,0xaa,0x0f,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x6b,0x4b,0xb6, + 0x89,0xf9,0x5a,0x91,0x18,0x93,0x96,0x79,0xfe,0xc7,0xb5,0x0f,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x5b,0x82, + 0x68,0x2a,0xae,0x6a,0x53,0x13,0xf4,0xad,0x60,0xaa,0xc0,0xdb,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68, + 0x3b,0x0a,0x92,0xb1,0x94,0xfe,0x31,0x48,0x48,0x6f,0xb2,0xb9,0xb1,0xbf,0x61,0x10,0xa9,0xe4,0x16,0x40, + 0x2a,0x13,0xf8,0x75,0x6a,0x7f,0xe6,0x2d,0x34,0xab,0xa4,0xaf,0xe7,0x3e,0xd2,0xb0,0x55,0x51,0x7f,0x40, + 0xea,0xe4,0x22,0xee,0xbc,0x73,0xec,0x84,0xc0,0x9b,0x51,0x7f,0x4e,0xa1,0xbc,0xb8,0x43,0x3b,0xfb,0xa9, + 0xe8,0xc5,0x2e,0x39,0xd3,0x5d,0x19,0x18,0x0b,0x8c,0xaa,0x9e,0xec,0xab,0x08,0xfb,0x91,0x88,0x2e,0xac, + 0x71,0xcf,0xd5,0x46,0x6e,0x65,0x72,0x93,0x20,0xe2,0x8f,0xd9,0xa7,0xab,0xac,0x53,0x5c,0xcd,0x61,0x90, + 0x5a,0xd5,0x0b,0xbe,0x4e,0x7e,0xc6,0x69,0x50,0x10,0x34,0xf2,0x40,0xfb,0xf0,0x34,0x5b,0xdd,0xde,0xce, + 0xd5,0x12,0xf3,0x65,0x36,0xaa,0x54,0xce,0x5b,0xd9,0xa4,0xf4,0x6a,0xc8,0x60,0x04,0x6f,0x76,0xb8,0xf8, + 0x4d,0x2d,0x93,0x74,0x39,0x16,0xc3,0xd6,0x2e,0xb4,0x86,0xda,0x76,0xa6,0x23,0xdb,0xf1,0x80,0x80,0xed, + 0x3f,0x12,0xbc,0x5d,0x38,0x4d,0x68,0x02,0xfb,0x16,0x76,0x16,0x93,0xe4,0xb6,0x9f,0xec,0x1d,0x97,0x61, + 0x69,0x5b,0x8d,0x6c,0xfc,0xb5,0xaa,0x53,0x5b,0xd5,0xff,0xcc,0xab,0xf4,0x6b,0xa9,0x83,0x43,0x63,0x9e, + 0x12,0x92,0x9a,0xc1,0xa6,0x71,0x67,0xe7,0x31,0x2c,0x11,0x1b,0x65,0xb1,0x14,0x67,0xcf,0x92,0x38,0xcf, + 0x38,0x9f,0x80,0xf7,0x94,0x7e,0x5d,0x31,0x13,0xeb,0x04,0x18,0x20,0x0f,0x59,0x82,0x6b,0x1d,0x7a,0xa5, + 0x71,0xa4,0x50,0x23,0xc7,0x90,0x08,0x1c,0x2c,0x8c,0x63,0x13,0xc2,0x40,0xe8,0xb0,0x15,0x31,0x65,0xa9, + 0x8d,0x5d,0xcb,0x83,0x5f,0x9b,0xdd,0x07,0x89,0xbb,0xc4,0x69,0xc0,0x23,0x3c,0xa8,0x87,0x83,0x6b,0x21, + 0xb0,0x58,0xba,0x99,0x18,0x06,0xd9,0x85,0x86,0x25,0x66,0x27,0xf2,0x0d,0xd1,0x60,0x62,0xac,0x2f,0xb7, + 0x70,0xf3,0x63,0xd0,0x29,0xd6,0xc8,0x44,0xac,0x24,0x6f,0x87,0x65,0x8a,0x71,0x49,0x5c,0x96,0x1d,0x60, + 0x18,0x7b,0xff,0xff,0xf7,0x59,0x10,0x64,0xbe,0x39,0x11,0x2e,0x5d,0x85,0xa9,0x72,0x08,0x80,0x09,0xe8, + 0x8b,0xf0,0xed,0x94,0xc8,0xd4,0x79,0x59,0xf3,0x5f,0x9a,0x3e,0x58,0x9f,0xd8,0x69,0x0b,0xa6,0xb2,0x86, + 0x2d,0xd8,0x18,0xde,0xd1,0xee,0xb6,0xa9,0x5a,0x61,0xb8,0x00,0x71,0x8b,0x26,0xa1,0x94,0x18,0x9c,0x63, + 0xbe,0x47,0xe3,0xae,0x6e,0x06,0x73,0x7e,0xa2,0x0d,0x69,0x63,0x2c,0x40,0x36,0x6e,0x6d,0xb1,0x48,0xd4, + 0x5d,0x07,0xcc,0x2c,0x30,0x4d,0x0b,0xa4,0xc6,0xb8,0xc9,0xe2,0x79,0x11,0xb7,0xc6,0x6a,0x2b,0xba,0x88, + 0x10,0x00,0x33,0x66,0x65,0xb1,0x36,0x28,0x7c,0x00,0x37,0x3e,0x67,0xdc,0xb8,0x41,0x9e,0x5c,0x72,0x5f, + 0xde,0x17,0xa1,0x03,0xcd,0x7b,0x14,0x0d,0x05,0x31,0x57,0xba,0x6b,0x3d,0xb2,0x29,0xf3,0x66,0x29,0xc4, + 0x66,0x32,0xc7,0x05,0x2a,0x03,0xcb,0x2f,0x40,0x28,0x1c,0x48,0x20,0x4f,0xa0,0x95,0x36,0x7b,0x30,0xf4, + 0x2f,0x35,0x4d,0x0d,0xd5,0xb6,0xb3,0x33,0x1f,0x6c,0x05,0x01,0xb8,0x0d,0x1c,0x07,0x4e,0xa7,0x3d,0x4e, + 0xfa,0xa9,0x14,0x50,0x38,0x06,0x8c,0xc9,0x45,0x6d,0x1d,0x82,0x98,0xce,0x82,0xd8,0x8c,0xa3,0x58,0xf3, + 0xb9,0xe0,0xa4,0x0a,0x36,0xf4,0x4a,0x93,0xc1,0xf0,0xe2,0x65,0x31,0x79,0x53,0xa4,0xaf,0x0b,0xc2,0xf8, + 0x3d,0x1f,0xb4,0x61,0xc5,0x4e,0xa3,0xe6,0xb0,0x5b,0x67,0x7f,0xb3,0xae,0x8e,0x48,0xc2,0x61,0x08,0x6f, + 0xb7,0xbb,0x3b,0xfd,0x06,0x9a,0x45,0xb8,0x9b,0x8d,0x87,0x9d,0x9a,0xa6,0x8f,0x4c,0xbe,0xc2,0x35,0xcd, + 0x6a,0x40,0x49,0x84,0xa6,0x02,0xa7,0xd7,0x70,0xc9,0x08,0xda,0xcd,0xad,0xba,0xd4,0xe4,0x53,0x13,0xc0, + 0x83,0xcf,0x12,0x89,0x39,0x51,0x1f,0x3e,0x2b,0x76,0xa3,0x67,0x70,0xb4,0x8a,0x8e,0x9c,0xc9,0x1e,0xac, + 0xa2,0x2a,0x9b,0xb7,0xaa,0xe5,0xaa,0xeb,0x6e,0x76,0x9e,0x7d,0xd0,0x1c,0x4a,0x16,0x4a,0xd8,0xc3,0x77, + 0x77,0x54,0x32,0xb5,0x79,0xc3,0x95,0xac,0x50,0x09,0x8c,0x5d,0x69,0x8e,0xf6,0xa1,0x7e,0xf0,0xb7,0x01, + 0xf3,0x84,0xe7,0x6c,0x82,0x5e,0xd2,0x23,0x15,0xc8,0xa9,0x80,0xb5,0x75,0x27,0x8a,0x01,0x16,0xd8,0xc5, + 0x64,0x65,0x4a,0xbc,0x40,0x89,0x15,0x95,0x98,0xba,0x12,0xa7,0x19,0xa5,0xc7,0x73,0x1f,0xb5,0x3d,0x07, + 0xed,0xfb,0xcd,0x3e,0xd5,0xba,0x9a,0xbc,0x2c,0xd2,0x17,0x05,0x73,0xfb,0xc9,0xa4,0x94,0xc6,0x6c,0xdd, + 0xa9,0xad,0x22,0xdd,0x57,0x26,0x78,0xb3,0x32,0xd0,0x92,0xce,0x95,0x83,0x95,0xf4,0x14,0x57,0x32,0x7f, + 0xb4,0x57,0x07,0xa6,0x52,0xcb,0xce,0xce,0x13,0x23,0x4b,0x97,0xd9,0xb3,0x91,0x40,0xa2,0xa3,0x10,0x0d, + 0x7c,0xd0,0xfe,0x90,0x1e,0x5b,0x4c,0xf7,0xc8,0xc5,0x5b,0x4c,0xda,0xcc,0x85,0xe0,0xf6,0xfc,0xba,0x1d, + 0x47,0xe7,0x72,0xb1,0xae,0x44,0x39,0xf4,0x2e,0x7f,0x0c,0x84,0xba,0xfb,0x58,0x4b,0xa0,0xaa,0x75,0xb8, + 0xd3,0x1e,0x87,0x24,0xd6,0x81,0xfe,0xe2,0x6f,0xe6,0xba,0x5a,0x2f,0x40,0xd8,0x3b,0x08,0xcb,0x7f,0x0c, + 0x68,0x29,0x90,0x50,0x44,0xef,0xc0,0xad,0x0b,0xf7,0x04,0xe5,0x44,0x9c,0x9f,0xb0,0x33,0x85,0x7b,0x33, + 0xd7,0x76,0xce,0x25,0xf2,0x9e,0x4f,0x8f,0xad,0x0c,0x34,0x3b,0xd1,0x96,0x1b,0xf2,0x1b,0x3a,0x71,0xbe, + 0x5a,0x6c,0x73,0x49,0x9f,0x11,0x84,0xeb,0x9a,0x2b,0x3f,0xe0,0xa8,0x62,0x20,0x48,0x70,0xe3,0x9d,0xa7, + 0x6d,0x10,0x91,0x8c,0x10,0xa3,0x82,0xff,0x2c,0x6f,0x6c,0x02,0x92,0x91,0x7c,0xc6,0xaa,0xbc,0x53,0xfb, + 0xfa,0xb1,0x92,0x84,0xa5,0x4d,0x78,0xcc,0x34,0xbb,0x24,0xc2,0x43,0x98,0xa6,0x54,0xe7,0xe6,0xab,0x73, + 0xf7,0x6e,0x3f,0xbb,0x70,0x29,0xe1,0x77,0x0b,0x4a,0x3d,0xd1,0xb0,0x2b,0x7f,0x8e,0x2a,0xd5,0x99,0xad, + 0x5c,0x5d,0xa3,0x3c,0xae,0x81,0x97,0x8c,0x63,0xd7,0x2b,0x3b,0x31,0xea,0xd2,0x7d,0xfb,0x98,0xeb,0x55, + 0x57,0xae,0x09,0x75,0xcf,0x7e,0x6d,0xb2,0x3e,0xf9,0xfe,0xb9,0xef,0x9f,0x52,0xda,0xcc,0xec,0x29,0xf5, + 0x21,0xbb,0xac,0xd5,0x63,0xfa,0x63,0x0c,0xfc,0xc7,0x8f,0x89,0x02,0x72,0x24,0xd7,0x87,0x2c,0x7e,0x9c, + 0xd9,0xd7,0xc4,0x72,0xac,0xbc,0x12,0x1f,0xb3,0xed,0x0f,0x41,0x10,0x26,0xe2,0x48,0xd9,0xfa,0xbf,0xaa, + 0x40,0x07,0x22,0xbe,0x30,0x96,0xe4,0xe3,0xed,0xed,0x15,0x0e,0x4f,0x5a,0x83,0x2b,0x01,0x81,0xb7,0xd9, + 0xc7,0x9d,0x9d,0xd9,0x64,0x46,0xbb,0xe1,0x37,0x3c,0x5e,0x4c,0x2e,0xd2,0xa5,0x7a,0x8e,0xc7,0xf3,0xc9, + 0x39,0xed,0x8b,0x57,0xd9,0xc7,0xc9,0xe5,0xed,0xed,0x22,0x5d,0xa8,0x97,0x48,0x1d,0xf0,0x9f,0xb9,0x9a, + 0x5c,0xa5,0x67,0xea,0x05,0x15,0xbc,0x77,0x7b,0x7b,0x9d,0x5e,0xab,0x67,0xf4,0xf8,0xe9,0xf6,0xf6,0x38, + 0x3d,0x56,0x6f,0x88,0x6f,0x29,0xe2,0xa7,0xc9,0xe4,0xa9,0x4c,0x5b,0xfa,0x34,0x51,0xef,0x32,0x3e,0x08, + 0x1b,0x56,0xd8,0xab,0xd7,0xd9,0x73,0x1d,0xbf,0x4c,0xd4,0xfb,0xcc,0xc3,0x49,0xe8,0xa9,0x9b,0xdc,0xbc, + 0x23,0x90,0xbc,0x07,0x49,0xec,0xf3,0x44,0xf1,0xef,0x6f,0x74,0x54,0xbe,0xf7,0xa0,0x39,0x89,0xa9,0x04, + 0x67,0xbc,0x4d,0xd4,0xb3,0x9d,0x9d,0x67,0x6c,0x69,0xf1,0x62,0x67,0xe7,0x05,0xfc,0x19,0x82,0x5a,0x4d, + 0xe0,0x76,0x03,0xaf,0xcd,0x79,0x45,0x03,0xfb,0x81,0xb6,0x83,0x37,0x91,0xf2,0x8d,0x5a,0xa1,0x91,0xcc, + 0x35,0xf8,0x54,0x65,0x42,0x2b,0x1f,0x23,0xec,0x11,0xb3,0x9a,0xfe,0xf9,0x90,0x05,0x6b,0x47,0x63,0xbe, + 0xc4,0x54,0x0c,0x13,0x4b,0x31,0x4c,0xd4,0xd8,0x61,0x6e,0xdf,0xf4,0xdf,0xe3,0x44,0xbd,0xdc,0xd9,0x79, + 0x49,0x5d,0x7f,0x0f,0xb3,0xa9,0x57,0x3b,0x3b,0xaf,0xd0,0x67,0x8c,0xf8,0xca,0x0c,0xe8,0x4a,0x46,0xac, + 0x2e,0x75,0x38,0x27,0x57,0xe1,0x7c,0xbc,0xed,0x4c,0xc7,0xed,0xed,0x6b,0x3a,0xc7,0x7f,0xd3,0xf1,0x9b, + 0x64,0x12,0x9c,0x42,0xef,0xd5,0x9b,0x24,0xfd,0x84,0xe2,0x2b,0x6a,0x0c,0x48,0x44,0x05,0x13,0x21,0x56, + 0xb9,0x75,0xd8,0x1f,0xea,0x06,0x57,0xf5,0x3e,0xee,0x7a,0x80,0x19,0x04,0xe2,0x85,0xdd,0xd4,0x9d,0x4f, + 0x61,0xf3,0x71,0x67,0x82,0x63,0xe2,0x3c,0xfd,0x24,0xba,0x19,0x83,0xae,0x7b,0x28,0x5d,0xfc,0x51,0x65, + 0x3a,0xb3,0x32,0x51,0xe7,0x04,0x88,0x08,0xb4,0x7a,0x29,0x53,0x92,0xc3,0xc3,0x82,0x7f,0x67,0x03,0x53, + 0x92,0x13,0x0f,0x85,0x29,0xe1,0x52,0x9d,0x3e,0x5d,0xc9,0x94,0xdc,0xeb,0x4c,0xc9,0x27,0x75,0x8f,0xa7, + 0x24,0x57,0x73,0xf5,0x49,0xa6,0xe4,0x02,0x94,0x59,0x4e,0x6f,0xea,0x92,0x3f,0xfa,0x04,0x3a,0xdb,0x18, + 0x9a,0x1b,0x5c,0x99,0x87,0xe8,0x2c,0x78,0xeb,0xe2,0x4a,0x9f,0x6e,0x71,0x65,0x73,0x37,0xae,0x94,0x28, + 0xb2,0x72,0x17,0x8d,0x43,0x8d,0x96,0x81,0x12,0x6d,0xec,0x36,0x37,0x6c,0x91,0xb4,0x75,0x52,0x69,0x18, + 0x67,0xce,0x33,0x89,0x15,0x43,0x48,0x12,0xf2,0x96,0xdc,0x62,0xb5,0xa5,0x7d,0xb5,0xc8,0x6f,0x66,0x13, + 0x42,0xdc,0x77,0x4e,0x89,0x82,0xbf,0x5e,0x21,0x8b,0x30,0xa4,0x29,0x44,0x58,0xb1,0x11,0xec,0x25,0x19, + 0x67,0xae,0x76,0x87,0xbb,0xae,0x29,0x89,0x3d,0xbb,0xa5,0xc4,0x31,0x5e,0x2d,0x2a,0xbb,0x94,0x6d,0xbe, + 0x92,0x6d,0x7e,0x85,0x6d,0x7e,0x41,0xab,0xc3,0x08,0x81,0x58,0xde,0x63,0xa9,0x2b,0x3d,0x4e,0x18,0x2b, + 0xda,0xa1,0x75,0xb7,0x7e,0x08,0x22,0x10,0x21,0x0d,0x00,0x0c,0xaf,0xc1,0x40,0xba,0x83,0x21,0x0e,0x02, + 0x76,0x29,0x38,0xc4,0x03,0xc8,0x2c,0xe9,0x40,0xc8,0x24,0xbe,0x64,0x1c,0xc2,0x90,0x43,0x75,0x9e,0xb1, + 0xa1,0x48,0x8c,0x0d,0xb1,0xd8,0xd9,0x59,0xe0,0x4d,0x05,0x9d,0x34,0x98,0xe4,0x7a,0x72,0x4d,0xdb,0x35, + 0xad,0xe2,0x90,0x20,0xf8,0x2d,0x38,0x91,0x37,0xa3,0x53,0xd1,0x6c,0xc8,0x05,0x8c,0xa1,0x76,0xf9,0x39, + 0x62,0xd6,0x32,0x2b,0xe1,0x03,0x20,0x9b,0x10,0xdb,0x30,0x27,0x46,0xa8,0xe4,0x20,0x80,0xd4,0x84,0x8a, + 0x6f,0x04,0xc2,0xa9,0x0f,0xf7,0x8f,0x52,0x84,0xc1,0x71,0x57,0xfe,0xc1,0x19,0xc6,0xd0,0x4f,0xdf,0x04, + 0x1a,0xbd,0x57,0x86,0x5e,0xd9,0x86,0xfa,0x5e,0x87,0x18,0xe0,0x23,0xb3,0x73,0xde,0x71,0xc4,0x91,0xde, + 0x2f,0xec,0x93,0xf2,0xa6,0x72,0xc3,0xf4,0xad,0x2b,0xb9,0x56,0xfb,0x41,0x55,0x2f,0x7a,0x54,0xbc,0x0e, + 0x24,0x63,0x8b,0xd5,0xbc,0x2d,0x96,0x73,0x2d,0xf4,0xfa,0xed,0x6d,0x7f,0x64,0x41,0xe4,0x34,0x36,0x75, + 0x81,0xf3,0x96,0x73,0xbc,0xe9,0xfb,0x6e,0xc1,0x0f,0xc4,0xe7,0xe2,0x0a,0x8e,0x22,0xa9,0xb2,0x63,0x62, + 0xff,0xde,0xc0,0x0a,0x08,0xfc,0xae,0xc2,0x55,0x4e,0x73,0xbe,0x98,0x9d,0x26,0xa0,0x62,0xf0,0xb1,0x09, + 0x59,0x10,0x10,0xec,0x3a,0xe6,0x4f,0x82,0x08,0xc2,0xe0,0xba,0x40,0x57,0x99,0xc2,0xac,0xa8,0x92,0x73, + 0xac,0x9f,0x9a,0xc1,0xad,0xaf,0x60,0x6e,0xaa,0x9b,0xbe,0xd7,0xb9,0x81,0xf2,0x99,0xee,0x5e,0xd7,0xd2, + 0xbf,0x86,0xcf,0x65,0x6d,0x5f,0xc7,0x62,0x58,0x1b,0xf8,0x91,0x84,0x50,0x26,0xa2,0x52,0x8e,0xf3,0x86, + 0xcb,0x0a,0x44,0xed,0x67,0xc4,0x8f,0x81,0x2b,0x88,0x16,0x67,0x68,0xe1,0x59,0xbc,0xcc,0x14,0x46,0x68, + 0xde,0x07,0xe4,0x8e,0x42,0x3c,0xc8,0xcd,0x2f,0x0f,0xd4,0x7b,0xed,0x32,0x94,0x11,0xe4,0x87,0xf4,0xe6, + 0xfb,0x0e,0xd3,0xd9,0x77,0x78,0xb8,0x60,0x77,0x07,0x48,0x9d,0x45,0x2d,0x1e,0x09,0x9f,0x59,0xb4,0x92, + 0xa3,0x15,0x61,0x52,0x8e,0x9d,0x34,0x9a,0x15,0x0d,0xdb,0x28,0x4b,0x46,0xa8,0xbe,0x78,0x12,0xcc,0xc4, + 0xf6,0x1d,0x0e,0x0f,0x22,0xa9,0x6a,0xfb,0xc8,0x77,0xd2,0xa6,0x4f,0xd8,0x9f,0xe6,0x2e,0x99,0x59,0xe0, + 0x7a,0x11,0x48,0x45,0x99,0x0c,0xd8,0x30,0x8c,0xb5,0xab,0x88,0x33,0xbe,0x63,0x12,0x6b,0xdd,0xd6,0x27, + 0x54,0xc7,0x3f,0xe1,0x0d,0xe6,0x5c,0x12,0x43,0x21,0xe7,0x4f,0x41,0x03,0x7c,0x05,0xa6,0x8f,0x96,0xda, + 0x0d,0xa4,0x54,0xfa,0x2b,0x2b,0x12,0x04,0x51,0x62,0xf3,0xe6,0xb1,0x89,0xad,0x44,0xe8,0x8f,0x51,0xa1, + 0xe5,0x27,0x7b,0xde,0x7c,0x05,0x7d,0x71,0x89,0xcb,0x41,0x8e,0xd8,0x9f,0x6f,0x20,0xa6,0xed,0x77,0x5e, + 0x92,0xf4,0xe0,0xd7,0xd9,0xde,0x27,0xad,0x97,0x7b,0xf9,0x9c,0x0e,0x8b,0x7b,0xe6,0xe6,0x41,0xa6,0x6f, + 0x7c,0xa0,0xec,0x38,0xf2,0x45,0x22,0x75,0xc3,0x5d,0x4b,0xf5,0xc6,0xec,0xf8,0x3e,0x87,0x40,0xfc,0x87, + 0x01,0x36,0x26,0x89,0x58,0x39,0x70,0xc2,0x37,0x61,0xfa,0x57,0xb6,0xb5,0xe4,0x77,0x73,0x9a,0xba,0x7c, + 0x77,0xba,0x06,0xa6,0xe3,0xa6,0x3a,0x11,0xb7,0xea,0xcb,0x77,0x15,0xc2,0x12,0xa1,0x34,0x01,0xe7,0x13, + 0x22,0x8c,0x39,0x34,0xc8,0xbc,0xa0,0x4f,0xdf,0xe3,0x1e,0xf8,0x30,0x66,0x7d,0xb8,0xbc,0x52,0x01,0x81, + 0xb8,0x72,0x4e,0x36,0x52,0x9b,0xb9,0xda,0xe2,0xb4,0xdd,0x2b,0xf9,0x87,0xef,0x50,0x6b,0xab,0x25,0xbd, + 0xd2,0x5f,0x60,0xb0,0xfa,0xf6,0xb6,0x70,0x5d,0xc0,0x10,0x66,0x56,0x03,0x59,0x99,0xae,0xb0,0x60,0x78, + 0x5c,0xf9,0x8b,0xea,0x89,0xc8,0xfc,0x59,0x9f,0x7c,0x2a,0x5a,0xc7,0x7f,0x66,0x11,0x67,0x22,0xa0,0x5e, + 0x1c,0xed,0xd6,0xbb,0xd1,0xf2,0x4a,0xb1,0xaa,0x7f,0x79,0x95,0x44,0xaa,0x0a,0x00,0xd8,0xf2,0xe2,0x59, + 0xb4,0xdf,0x84,0x7a,0xfa,0xef,0x3b,0xbb,0x4e,0x4f,0x7e,0xab,0xd2,0xb7,0x95,0x97,0xe0,0x5b,0xa9,0x58, + 0xd9,0xd1,0xd2,0x99,0xec,0x8f,0x15,0x6e,0xdd,0x0d,0xc3,0xc6,0x3b,0xec,0x6d,0x14,0xd4,0xcc,0x48,0x1f, + 0x70,0xac,0x80,0x56,0x39,0xe3,0x8a,0x54,0x2b,0x6b,0x0e,0xd1,0xb9,0xcb,0xb7,0x7f,0xb3,0xab,0xf2,0x66, + 0x02,0xee,0x7e,0x10,0x13,0x6f,0xd9,0xb8,0x46,0xe2,0x51,0xc2,0x90,0x78,0x47,0x2e,0x9d,0x28,0x81,0xec, + 0x30,0xa8,0xca,0x61,0x78,0x81,0xcd,0x2f,0xf6,0x60,0xdb,0x54,0xdd,0xb3,0x15,0x0b,0x01,0xea,0x35,0xe4, + 0x8c,0x8c,0xc9,0x38,0xcc,0x19,0x7c,0x0f,0x02,0xcb,0xa7,0x56,0x5c,0x8b,0xb6,0x43,0xe3,0x26,0x63,0xce, + 0x70,0x57,0x95,0xb5,0x3e,0x75,0x55,0xd2,0x33,0x47,0x4e,0xb3,0xfe,0x50,0x1d,0x49,0x51,0x60,0x44,0x3b, + 0x2e,0x25,0xd4,0xa7,0xbb,0x6a,0xa6,0x84,0xcc,0xd5,0xbb,0x1b,0x41,0x44,0x69,0x02,0x79,0xba,0x58,0xd1, + 0xa0,0x42,0xd1,0xd7,0x9e,0x52,0x35,0x42,0xb8,0x0b,0x67,0xe7,0x0c,0x6b,0x6d,0x7a,0x87,0xbe,0xcb,0x74, + 0x0f,0xf3,0x19,0x05,0x52,0x69,0xdd,0x8d,0xee,0xcd,0x5f,0xc1,0x0a,0x4a,0x0c,0x79,0x38,0xec,0x41,0xc4, + 0xb7,0xe0,0x51,0x35,0x1c,0x72,0x0b,0x81,0xb4,0x4d,0x26,0x25,0xed,0x99,0x12,0x44,0x65,0xb8,0x6f,0xc2, + 0x64,0x39,0x08,0xfd,0xb7,0x36,0xda,0x71,0xed,0x8a,0x02,0xbf,0xbb,0x52,0x1f,0x45,0x76,0x76,0x3f,0x8a, + 0xee,0xb3,0x21,0xf9,0x7d,0x17,0xb0,0xf4,0x3e,0x2d,0xf2,0x66,0x4f,0x81,0xc8,0x5d,0xed,0xf4,0xe2,0x6b, + 0x55,0x7c,0xc1,0x72,0x7f,0x82,0x64,0xc4,0xb1,0x9d,0x8c,0xa2,0xb1,0x5d,0x74,0xc8,0x89,0xba,0xa8,0x8c, + 0xf9,0x91,0x14,0x29,0xe7,0x45,0xa9,0xf7,0x5c,0xcb,0x52,0x5c,0x52,0x3f,0x9a,0x44,0xb6,0xa8,0xec,0x5d, + 0x79,0x43,0x70,0xbc,0xa8,0x42,0x0f,0x99,0x36,0x5b,0xc0,0xa1,0x8d,0x01,0x92,0x7a,0x3a,0xde,0x84,0x49, + 0x15,0x98,0xef,0x32,0x45,0xe3,0x60,0x8e,0x2b,0xd6,0xb4,0x4f,0x4a,0x27,0x00,0x1b,0xeb,0x47,0xa5,0x8d, + 0x3c,0x50,0x67,0xf0,0x5b,0xd2,0xb2,0x59,0x54,0x25,0xcf,0x42,0x4e,0xbd,0xa8,0x8c,0xb8,0xca,0x48,0xfd, + 0xcf,0xf3,0xe6,0x49,0xc1,0x48,0x0f,0x06,0xae,0x2a,0x0e,0xef,0x54,0x72,0x70,0x6c,0xee,0x07,0x7a,0x22, + 0x51,0x6e,0xc2,0xb0,0xf7,0xfe,0xbe,0x8c,0xbe,0x4a,0x80,0xa3,0x40,0x5a,0x09,0xd3,0x41,0x82,0xeb,0xbe, + 0x61,0x38,0x81,0x2b,0xb9,0x12,0x73,0x39,0x84,0x45,0x31,0x4f,0x2a,0x68,0x78,0x88,0x41,0xf5,0x7d,0x0b, + 0xb3,0xdf,0x73,0x36,0x0d,0xe3,0x5b,0xe8,0x77,0xc5,0x92,0x59,0xa2,0x92,0xe2,0xc0,0x10,0xa3,0xe3,0x7d, + 0x65,0x94,0xd3,0xed,0x62,0x1e,0x49,0xfc,0xb3,0x4b,0xc4,0xef,0x94,0xa6,0x02,0xc5,0x35,0xd3,0xe8,0x53, + 0x9a,0x96,0x39,0xe7,0x48,0x21,0xd0,0x7b,0xd7,0xe5,0x74,0x67,0x87,0xed,0x10,0x7d,0x54,0x4b,0xce,0x55, + 0x39,0x18,0xe2,0xe8,0x1e,0x5b,0xde,0x45,0x6c,0xdf,0x0d,0x5d,0xbe,0x87,0x90,0x9d,0x9d,0x93,0xca,0x5d, + 0x78,0x6b,0xd1,0x9b,0x30,0x5b,0x44,0x74,0xb3,0xe9,0x26,0x62,0x6d,0xa5,0x0c,0x8c,0x75,0x18,0x50,0xf6, + 0xe5,0xf0,0x80,0x5f,0xca,0x80,0x4b,0x53,0x9e,0x96,0x7f,0x3b,0xbc,0x9c,0x71,0x95,0x75,0x66,0xef,0x85, + 0xcc,0x9e,0x59,0xa3,0xd7,0x1c,0xd6,0x81,0x18,0xaa,0xd5,0xe1,0xc1,0xd1,0x78,0x6e,0x66,0xda,0xc9,0xf9, + 0x9c,0x5f,0xd7,0xee,0x01,0x46,0xb2,0xcc,0x6a,0x62,0xf8,0x0a,0xe2,0xef,0x2a,0xe2,0xe9,0xe6,0x90,0x71, + 0xa9,0x38,0x3e,0xcd,0xda,0xa4,0xe3,0xa3,0x87,0x38,0x3d,0xee,0x75,0xc3,0x44,0x74,0xa9,0x8c,0x47,0x54, + 0x3a,0x33,0xb6,0x9d,0xe7,0xb0,0x6c,0x49,0x2f,0x94,0x33,0x43,0x4c,0x17,0x6b,0x0e,0xb2,0x61,0x6d,0x07, + 0x79,0x02,0xcc,0x7c,0xf4,0x8c,0xf9,0x2a,0xbe,0x75,0x27,0x9c,0xdd,0x68,0x01,0x21,0x36,0x56,0xb5,0xfe, + 0xec,0x54,0xef,0xec,0x98,0xb9,0xb6,0x5e,0x26,0x46,0x6d,0xad,0x66,0xea,0x5c,0x51,0x67,0xd6,0x1d,0x7e, + 0xea,0x5b,0x7f,0x9a,0x33,0x50,0x67,0xd6,0x52,0x91,0x20,0x39,0x4a,0x86,0xcc,0xd7,0xac,0x5d,0xb2,0x4c, + 0xf4,0x33,0x13,0xf2,0xc9,0xf2,0x2b,0xac,0xc4,0xa5,0x6f,0xb3,0xf2,0xf0,0xe1,0x91,0xd1,0x1f,0x59,0x8a, + 0x8b,0x96,0xc2,0xa4,0xb8,0x55,0x7b,0x67,0x81,0xba,0x30,0xf5,0xbd,0xf1,0x11,0x80,0xab,0x09,0xe2,0x38, + 0xcd,0x8b,0xbc,0xa1,0x5c,0xfb,0xc1,0x1b,0xf9,0xa0,0x1e,0x15,0x44,0xd3,0xe4,0x44,0x3b,0x1e,0x64,0x95, + 0xaf,0x57,0x55,0xd4,0x2a,0x5b,0x60,0xd8,0xec,0x87,0x59,0xe5,0x3b,0x82,0xe0,0x2b,0xb6,0x46,0x55,0xf3, + 0xb5,0x78,0x25,0xc7,0x2c,0xe8,0x3a,0x92,0xfc,0xdb,0xa9,0x64,0x8a,0xd3,0xa7,0x15,0x61,0x05,0xa6,0xcb, + 0x98,0x47,0x09,0x13,0x38,0xf4,0x6a,0x37,0xc9,0xea,0x79,0x02,0x6b,0xe8,0x50,0xe8,0xfc,0x83,0xee,0xae, + 0x1a,0x9f,0x9b,0x36,0xba,0x7d,0x6b,0x85,0x95,0x81,0xbd,0x73,0x9f,0x19,0x9c,0x44,0x36,0xda,0x53,0x7a, + 0x13,0xa5,0x51,0x85,0x1f,0x1f,0xf8,0xc1,0xdc,0xb5,0xb7,0x9b,0xc1,0xe0,0xaf,0xd8,0xbd,0x1f,0xa5,0xf7, + 0x77,0x5b,0xc4,0x0b,0x62,0xb7,0x72,0xd8,0x7d,0xfb,0xfb,0xa4,0x03,0x91,0x37,0x1b,0x2e,0x7a,0xb3,0xe8, + 0xd2,0x51,0xb5,0xee,0x7e,0x52,0x27,0xc9,0x24,0xbe,0x75,0x1d,0x6d,0x06,0xae,0x76,0x17,0x9d,0x45,0x87, + 0x30,0x2d,0xef,0x0a,0xe7,0xbd,0x4e,0xd4,0x5c,0x47,0x62,0x3d,0x01,0x15,0x34,0x93,0x47,0x91,0x39,0xf9, + 0x7e,0xa8,0x2c,0xd1,0x2c,0x8e,0x63,0x44,0xfb,0x7c,0xdf,0x4b,0x62,0x00,0xf5,0x46,0xbd,0xd6,0xca,0x21, + 0x22,0x42,0x0f,0x7f,0x72,0xeb,0xbb,0xca,0x22,0x24,0x0e,0x4b,0x19,0x14,0xa6,0x6f,0xff,0xcd,0x21,0x82, + 0xaa,0xdd,0x8c,0x1f,0xd4,0x2f,0x15,0x6b,0xcd,0x73,0x6b,0xec,0xeb,0x03,0x65,0xeb,0xab,0x5c,0xa2,0xa5, + 0x34,0x36,0x10,0x78,0x50,0xd3,0x98,0x2a,0xf8,0xb6,0x8a,0x0f,0xa3,0x69,0x5b,0xcf,0x69,0x10,0x6c,0x35, + 0x4c,0xbf,0xf9,0x1c,0x7f,0x17,0xba,0xcd,0xa3,0xa3,0xbb,0x6d,0xda,0xb7,0xa7,0x4c,0x32,0xde,0x61,0x12, + 0x6f,0xd0,0xeb,0x28,0x82,0x99,0xfe,0x0f,0x44,0x84,0xb9,0xc9,0xba,0xbd,0x05,0xaf,0x28,0xe6,0x28,0xae, + 0xc3,0xd6,0xc5,0xd8,0x59,0x0e,0xc5,0xc5,0x2e,0x61,0x79,0x58,0x79,0xdc,0x3f,0x59,0xb5,0x6d,0x55,0xde, + 0xc7,0x34,0x48,0xa5,0x08,0x2b,0xb0,0x9b,0x73,0xc3,0xc4,0x50,0x99,0x6a,0x29,0x8d,0x16,0xc1,0xa9,0xfe, + 0xe8,0x80,0x1f,0x63,0x3b,0x4a,0x4d,0x55,0x10,0x77,0x33,0x36,0x95,0xdc,0x80,0xba,0x8e,0xcb,0x89,0x59, + 0x93,0xdd,0xc8,0x66,0x44,0x69,0x3d,0x61,0xf3,0x59,0x9b,0x91,0xf8,0x1c,0xbb,0x80,0x0c,0x69,0xb6,0xad, + 0xdb,0xdb,0xda,0xd6,0x92,0x0e,0x35,0xe3,0x2a,0x0a,0xa1,0x53,0x07,0xe7,0x31,0x87,0xe5,0x79,0xc9,0xb7, + 0xd6,0x1c,0xec,0x27,0x61,0x4c,0x7e,0x3b,0x8d,0x26,0xfc,0x35,0x11,0x8e,0x54,0x9d,0x81,0xb3,0x5f,0x2a, + 0x1f,0x2a,0x39,0x3a,0xfe,0x14,0x77,0x8b,0x12,0xf3,0xd0,0x43,0xc4,0x2d,0x6f,0x9c,0x7e,0x6a,0x89,0x54, + 0xff,0x69,0x68,0x1e,0x5a,0x76,0x0c,0xa7,0x10,0xde,0xe7,0x9f,0x88,0x00,0x6c,0x4d,0x56,0x25,0x98,0x5c, + 0x1a,0xc1,0xc4,0x90,0x83,0xc8,0xba,0xfd,0x01,0x2d,0xfe,0xa4,0x16,0xbb,0xa8,0xf4,0xfe,0xf1,0xd4,0x04, + 0x37,0xb8,0xcf,0xd3,0xa6,0x7a,0xb1,0x99,0xd3,0xb2,0x1f,0xad,0x39,0x40,0x60,0xb5,0xdf,0xc3,0xd6,0xe6, + 0x08,0xea,0x0d,0x26,0xd8,0xe5,0xf5,0x5d,0x5d,0x4d,0x75,0xd3,0xe8,0x99,0x5d,0x7a,0x63,0x40,0x23,0xf1, + 0x75,0xc4,0x8f,0x60,0x5b,0x1e,0x36,0x8a,0xe6,0x61,0x51,0xda,0x6f,0x5c,0x92,0x7e,0x37,0x0a,0x76,0x0d, + 0x43,0x83,0x60,0x21,0x28,0xcd,0x2e,0x35,0x8c,0x8b,0xd9,0x05,0xc0,0xa1,0xf3,0x09,0x66,0x3b,0x78,0x4f, + 0x69,0x67,0x37,0x41,0x81,0x87,0xbd,0x02,0x0f,0xe1,0xa3,0xe6,0xd8,0xb5,0xb0,0x1b,0x4c,0x0e,0x1d,0xcf, + 0x63,0x63,0xfb,0xed,0x09,0x5e,0x18,0x6b,0xe7,0x08,0x7a,0x15,0x4c,0xbd,0x99,0x32,0x9a,0x6a,0x5a,0xcb, + 0x60,0x7c,0xc5,0x29,0x0f,0xaf,0x38,0xdd,0x18,0x5d,0xe3,0xa7,0xc1,0x13,0xe0,0xdb,0x3d,0x02,0x5c,0x08, + 0xf7,0x21,0x0e,0x64,0x60,0x8e,0xbc,0xbd,0x81,0x65,0x4e,0x6e,0x6f,0x03,0x4a,0x9f,0x30,0xe2,0xaa,0xb4, + 0x3a,0xfd,0xe8,0x98,0xed,0x95,0x77,0xe3,0x9a,0xe7,0xa3,0x96,0x58,0x76,0x3e,0x30,0x7a,0x74,0x83,0x49, + 0x92,0xe0,0xe8,0x77,0xb8,0xdf,0x5c,0x96,0xc6,0xa6,0x82,0x46,0x9d,0xa2,0xb4,0x08,0xc1,0x3a,0xe8,0x79, + 0x1d,0xf1,0xea,0x38,0xe3,0x7d,0xe3,0xc2,0x10,0xd9,0x1d,0xb4,0x8d,0xdb,0x4c,0x73,0xda,0xca,0xf0,0x14, + 0x27,0xdc,0xc3,0x3c,0x82,0xc7,0x20,0xe8,0x1a,0x02,0x65,0xc9,0x5b,0x5c,0xc1,0x26,0xc9,0x96,0xe1,0x6d, + 0x95,0xd3,0x58,0xd8,0xba,0x5a,0xe6,0x92,0xc7,0x2f,0x13,0xef,0x03,0xc0,0x86,0xe4,0x47,0x57,0x34,0xda, + 0x65,0x37,0x26,0xa8,0x37,0x5d,0xb1,0x3e,0x18,0xa2,0x30,0xb7,0xc9,0x69,0x27,0x19,0xb7,0xa7,0xa9,0x28, + 0x8b,0x3b,0xb3,0x66,0x9a,0xf7,0x0d,0x2a,0xee,0x8a,0xa3,0x33,0xc1,0x83,0x33,0xc5,0x36,0xb1,0x51,0xd0, + 0xdc,0x22,0xf4,0x19,0x1e,0xd7,0x03,0xf4,0x13,0x3d,0x28,0x33,0xb4,0x7e,0x1f,0x93,0x4b,0x6b,0xbe,0x1b, + 0xd1,0x53,0xa7,0xe9,0xb8,0xe0,0x97,0xc2,0xf5,0xa3,0x7b,0x09,0xa7,0xf6,0xa2,0x0f,0x7f,0x7d,0x02,0xf1, + 0x36,0x65,0x16,0xe6,0x1c,0x56,0x47,0x8c,0x33,0xbc,0x93,0xbc,0x79,0x30,0xd0,0x02,0x93,0x19,0xee,0x79, + 0x80,0xa4,0x36,0x2e,0xec,0xe9,0xa1,0x05,0xec,0x1d,0xdd,0xc7,0x30,0x72,0xee,0x0c,0x62,0x2e,0xbf,0x7d, + 0x22,0x44,0x84,0x5f,0xd0,0x8c,0xc7,0x9b,0xdf,0xdb,0xe8,0x7b,0xc9,0xae,0xc3,0x4b,0x12,0x0f,0x25,0x52, + 0xe2,0x69,0xed,0xa6,0xc1,0x79,0x51,0x84,0x98,0xac,0x83,0x8d,0x24,0x06,0xfb,0x5f,0xda,0x9e,0x9d,0xb6, + 0x42,0x01,0x43,0x14,0xb1,0x84,0xc5,0xe8,0x8c,0xeb,0xb1,0x31,0xe5,0x85,0x8c,0xe1,0x86,0x78,0x71,0x60, + 0x76,0xeb,0xd0,0xe2,0x1c,0x6d,0xdd,0xf9,0x35,0x89,0x8e,0xab,0x38,0x18,0x39,0x7b,0xd5,0xa1,0x8b,0x2f, + 0x67,0xbb,0xbb,0xfc,0x5a,0x62,0x2c,0xa9,0x29,0xb0,0xee,0x22,0xda,0xc0,0x9d,0x60,0x33,0xfa,0x76,0x67, + 0x40,0x18,0xa8,0xa7,0xce,0x62,0x67,0xdc,0x1f,0x68,0x15,0xfd,0x9e,0xae,0x27,0xb5,0x9c,0x1f,0x32,0x5b, + 0x93,0xdc,0x1c,0x27,0xe6,0x58,0xe1,0xfb,0x4e,0xac,0xc1,0x85,0xbb,0x0d,0x99,0x00,0xe4,0x98,0x28,0xd0, + 0xc8,0xd8,0x29,0x68,0x1b,0xbd,0xd0,0xd3,0x17,0xfa,0x6a,0xc9,0x87,0x7b,0x2e,0xfe,0x11,0xc9,0x84,0xb6, + 0x35,0x31,0x9e,0x27,0xf3,0x6a,0xfa,0xc9,0x60,0x0f,0xd7,0x31,0x5a,0xc4,0x20,0x73,0xdd,0x23,0x9a,0x1d, + 0xb9,0xdb,0xbf,0xa7,0x66,0xda,0x41,0x81,0x84,0xbe,0x54,0x9d,0x0d,0x23,0xc7,0xfe,0x3d,0xd9,0x37,0x26, + 0xac,0x85,0x71,0xf0,0x0d,0xa2,0x48,0xa4,0x87,0x11,0x3b,0xfb,0xda,0x80,0x17,0x43,0xf7,0x66,0xdd,0x54, + 0x36,0xcc,0xbe,0x91,0x3e,0xae,0x3a,0x57,0x71,0x1f,0x4a,0x74,0x8b,0xa3,0xf1,0x0a,0xac,0x76,0xb6,0xbd, + 0xbd,0x42,0xac,0x6c,0xda,0x1b,0x97,0x79,0x8d,0xbb,0x43,0x72,0x71,0xe6,0xdd,0x57,0x0d,0x91,0xdd,0xc2, + 0x08,0x12,0xf1,0x6d,0x42,0x62,0xdc,0x8f,0x1c,0x4f,0xc8,0x89,0xe6,0x05,0xee,0x37,0xbb,0x71,0x25,0xf8, + 0x96,0x60,0x5f,0x68,0x20,0x1c,0x4b,0x8e,0x76,0x0a,0xfd,0x8f,0x36,0x88,0x0f,0x53,0x2c,0x11,0x14,0x52, + 0x8d,0xe8,0x8c,0x99,0xdc,0x67,0x5e,0x93,0x5b,0xa1,0x07,0xb4,0x60,0x73,0x1d,0xe1,0x4a,0x2d,0x79,0x4e, + 0x74,0xa0,0x52,0x4f,0x2b,0xcb,0x3e,0x5c,0x2b,0x1f,0x59,0x69,0x3a,0x69,0xba,0x2c,0xc3,0x91,0x8b,0xf0, + 0x64,0x50,0x37,0x5f,0xac,0xb2,0x9b,0xd5,0x80,0xfc,0x44,0x19,0x01,0x21,0x52,0x20,0x4c,0xe4,0xe3,0x45, + 0xfc,0x69,0x22,0x09,0x09,0x70,0x6a,0x32,0xe9,0x89,0x33,0xe9,0x37,0xc8,0xe4,0x9d,0xea,0x4b,0xf0,0x6b, + 0x0a,0x14,0x21,0x25,0x96,0xec,0x09,0x89,0x4c,0x7a,0x0a,0xd2,0x03,0x6e,0x19,0xb9,0xf7,0x21,0x76,0x65, + 0xdf,0x27,0x20,0x5f,0x5a,0x8c,0xfb,0x5e,0x14,0x25,0x0e,0xb8,0xa2,0xd4,0xfb,0x56,0x97,0x1e,0x3b,0xb1, + 0x2f,0x2e,0x7d,0x1c,0x66,0x11,0xfb,0x04,0x31,0x16,0xa3,0x12,0x73,0xbe,0x72,0xeb,0xfc,0x4c,0x2c,0xd8, + 0xee,0x69,0x69,0x73,0xcc,0xbc,0x29,0xe3,0x95,0x6a,0x0a,0x5a,0x5f,0x04,0x57,0x56,0xa2,0x0e,0xbb,0xb2, + 0xe2,0xce,0x28,0x85,0xc1,0xf4,0x99,0x04,0xb5,0x7d,0x60,0x21,0xcd,0x4e,0x4e,0xe8,0x19,0x19,0x94,0x0f, + 0x93,0x15,0xe3,0xee,0xce,0x57,0x9e,0x14,0x11,0x1a,0xd0,0x8a,0x06,0x4d,0xf7,0xf8,0x22,0x9a,0x68,0x37, + 0x2c,0xe7,0xbe,0xf4,0x01,0x5e,0xa5,0x30,0x6b,0x0d,0x83,0x54,0x5c,0xc9,0x64,0x04,0xa2,0x92,0x90,0x1e, + 0xaf,0x88,0x39,0xea,0x84,0x82,0xc9,0xef,0xe2,0x77,0xb6,0xfa,0x88,0xcd,0x65,0x94,0x86,0xb2,0x2c,0x3b, + 0x24,0x9d,0x8f,0x75,0xd6,0x21,0x28,0x4b,0x43,0x50,0x96,0x8e,0xa0,0x2c,0x7b,0x04,0x65,0xd9,0x27,0x28, + 0xcb,0x1e,0x41,0x59,0x0e,0x12,0x94,0xe5,0xff,0x9c,0xa0,0xb4,0x03,0x32,0x14,0xa5,0xbc,0xa4,0xd1,0x8d, + 0xec,0x06,0xda,0xe3,0xea,0xb4,0x4c,0x83,0x1a,0x8c,0xb3,0x46,0xe9,0x17,0x27,0xe9,0xd4,0x17,0x77,0xa4, + 0xbc,0x6c,0x32,0x33,0xa1,0x4e,0x9f,0xf2,0x9f,0xdd,0x88,0x30,0x72,0xbc,0xe2,0x20,0xca,0x49,0xe7,0xe2, + 0x6a,0x60,0x67,0xff,0x96,0x0e,0x15,0xc1,0xe1,0xc0,0xd7,0xbf,0x52,0x57,0xd7,0x4c,0x89,0xe5,0xb8,0xcf, + 0xbe,0xe9,0x73,0xea,0x74,0xb0,0x27,0x00,0x09,0x13,0x37,0x9d,0x21,0x87,0x9f,0x53,0xeb,0x3d,0xb9,0xdb, + 0x86,0x91,0xd1,0x69,0x88,0xde,0x61,0xd2,0x65,0xd9,0xa4,0xdd,0xa8,0x8b,0xe3,0x5c,0x18,0x76,0x97,0xe8, + 0x76,0x47,0x97,0xc8,0xb2,0x06,0x79,0x5d,0xf3,0x3f,0x17,0xd0,0xcd,0x46,0x22,0xdd,0xe7,0xf0,0x3f,0x07, + 0x12,0x87,0x90,0xed,0xe7,0x0c,0xac,0x94,0x1c,0xf1,0xa7,0xb2,0xc1,0x0e,0x0d,0x91,0xd8,0x6d,0x23,0xb5, + 0x6c,0x5a,0x20,0xf8,0xa0,0x45,0x37,0x91,0xc0,0xd1,0xb1,0x3e,0x3b,0x76,0x88,0xec,0x3e,0xbd,0x73,0x07, + 0x93,0xdf,0xa9,0xb4,0x65,0x06,0xb7,0x3b,0xd3,0x70,0x24,0x25,0x44,0x4b,0x58,0xb5,0x92,0x79,0xae,0x78, + 0x3b,0xae,0x8d,0xf7,0x85,0x83,0xce,0xc0,0x6a,0xfb,0x81,0xba,0xf7,0x40,0x45,0x86,0x64,0x6f,0x47,0x97, + 0x75,0xbe,0x7c,0x66,0x7d,0x0e,0xfc,0x2b,0x6c,0x26,0x4c,0xae,0x53,0x7b,0x06,0x45,0x5c,0x1a,0x97,0x0b, + 0x82,0x2d,0xad,0x06,0x42,0xfd,0xfb,0xb9,0x96,0x60,0xe4,0x61,0x40,0xae,0x3c,0xab,0x82,0x05,0xa8,0x02, + 0xcf,0x26,0xde,0xd5,0x1d,0x7e,0x29,0x17,0xeb,0x2f,0x61,0x8f,0xec,0xbb,0xf5,0x75,0x25,0xbe,0x82,0xd0, + 0x58,0x9c,0x5b,0xe6,0x80,0x36,0x6e,0x2f,0x8c,0x78,0xa0,0x5b,0x50,0x03,0x31,0xad,0x5c,0x7c,0xca,0xda, + 0x75,0xa7,0x30,0xf0,0x80,0xb8,0x1a,0xb8,0x5c,0x0a,0x21,0x2a,0x43,0x12,0x05,0xde,0x1f,0x5d,0x92,0xa5, + 0x5a,0xe8,0x21,0xe4,0x35,0x07,0x26,0x37,0x64,0x4e,0x02,0x8a,0xf1,0xa1,0xa1,0x16,0xd9,0x69,0xe9,0x7f, + 0x5c,0xad,0x0e,0x6b,0xe5,0xd5,0x39,0x48,0x82,0x6b,0xe5,0xe2,0x8a,0xed,0x5f,0xaf,0x4f,0xf4,0x53,0xc7, + 0x22,0xa5,0x1c,0xa7,0xb7,0xef,0xba,0x65,0x4d,0x5d,0x85,0xe7,0xa4,0x31,0x4f,0x0c,0x2d,0x9a,0x7e,0xe1, + 0x92,0xa0,0x24,0x76,0x11,0x00,0x27,0x70,0x0e,0x57,0x20,0x06,0x37,0xc8,0x83,0x5a,0x62,0x4d,0xb3,0x0f, + 0x75,0x1a,0x1d,0x5f,0x80,0xc0,0x7f,0x08,0x0d,0x43,0x09,0x29,0x39,0x57,0x5e,0x06,0x7b,0x37,0x5d,0x96, + 0x71,0x5f,0x64,0x22,0x35,0x24,0x5c,0xc7,0xd8,0x98,0x69,0x5b,0xd5,0x09,0x04,0x87,0xd5,0x5d,0x87,0xc4, + 0x74,0x50,0x6e,0xb8,0x1b,0x37,0x8c,0xb9,0x1b,0x50,0x2b,0x81,0xf0,0x63,0x1e,0x7e,0xea,0x34,0x87,0x2c, + 0x1a,0x20,0xb4,0x37,0xa0,0x2a,0xeb,0x32,0xe6,0x81,0x2f,0x6d,0x4f,0x27,0x4b,0xe7,0xc6,0x9f,0x5c,0xe4, + 0xac,0x45,0xf4,0x5a,0x5b,0xea,0x2f,0xbd,0xbf,0xbb,0x44,0x88,0x42,0x2b,0xfd,0x52,0x91,0xbf,0x59,0x3d, + 0xa0,0xa6,0x02,0x27,0xd5,0x4e,0xf4,0x0b,0xbf,0xb9,0x7f,0x5d,0x3d,0xdc,0x7f,0xf8,0x8f,0x07,0x67,0x2a, + 0xfa,0x55,0x1e,0xa3,0xa4,0x97,0xf9,0xb5,0xcf,0xfc,0x3a,0xbc,0x20,0x74,0x66,0x60,0x01,0xde,0x7b,0x16, + 0x84,0xf4,0xe5,0xd6,0x0b,0x3f,0xcb,0xfe,0xa2,0x58,0xd7,0x37,0xd1,0x6a,0xe8,0xba,0x86,0x06,0x99,0xb0, + 0x72,0x0a,0x67,0xdf,0xb3,0xd0,0xc7,0x33,0xe8,0x67,0xfc,0xa9,0xca,0x3e,0x55,0x7f,0x12,0xa1,0x13,0xc1, + 0x70,0x8d,0xee,0x29,0x6b,0x27,0xf7,0x1f,0xe5,0x5b,0xe7,0x50,0x02,0x47,0xbf,0x96,0xd1,0x83,0x6f,0xee, + 0xa7,0xf7,0x1f,0x51,0x29,0xc2,0x1a,0xe6,0x5d,0x7d,0xaa,0x7c,0x79,0xef,0x85,0xb3,0xf3,0xbf,0x0e,0xf6, + 0xc7,0x51,0xf2,0xcd,0x3e,0x23,0xc2,0x0b,0x17,0xf2,0xee,0xb4,0xd6,0xfa,0x0f,0x1d,0x23,0xd2,0xf2,0xc2, + 0x25,0xfa,0xa8,0xe2,0xf6,0x22,0x70,0x75,0x56,0x66,0x2b,0x11,0xc3,0x28,0x47,0x29,0x46,0x6c,0x34,0x73, + 0xcd,0x39,0x74,0x34,0x2b,0xea,0x95,0xe2,0x12,0x5e,0x5d,0xab,0xa0,0x0e,0x55,0xc7,0x03,0x35,0x9f,0xe7, + 0x4d,0x70,0xed,0xa5,0x3a,0x29,0xb3,0x07,0x7b,0xf1,0xaf,0x97,0x09,0xad,0xc5,0x65,0x99,0x0d,0xc7,0x3c, + 0x71,0xeb,0x76,0x12,0x9a,0x14,0x84,0xb6,0x4d,0x13,0x74,0xf9,0xc7,0xe5,0x12,0x96,0xd3,0xf0,0xf2,0x46, + 0x04,0x56,0x98,0xbc,0x5e,0xdd,0x59,0xa5,0x89,0x6d,0xb3,0x9f,0x74,0x3f,0xdc,0xf5,0x7a,0x47,0xfa,0xfc, + 0x1e,0xf5,0xee,0xd7,0x27,0xf1,0xe1,0xe3,0xbd,0x7f,0x1f,0xa1,0x87,0x9f,0xfe,0xb4,0x87,0xf7,0x4a,0x15, + 0xed,0xdd,0x3b,0x88,0x50,0xed,0xab,0xea,0xd2,0x56,0x4b,0x75,0x3d,0xdd,0x94,0xc9,0x38,0x05,0xbc,0xfa, + 0xd0,0xd5,0x17,0xb9,0x58,0x2e,0xea,0x31,0xf1,0x75,0x20,0xaa,0xf7,0x38,0xce,0x7a,0xbd,0x67,0x2f,0x53, + 0x8c,0xd4,0xc7,0x32,0x3b,0x8c,0x82,0x35,0xf1,0x3c,0x5c,0x64,0xaf,0x3c,0x8c,0x8e,0xd4,0x5b,0x94,0x12, + 0xfb,0xcb,0xa7,0x0c,0x63,0x94,0x29,0xc0,0x46,0x55,0x98,0x0c,0x36,0xea,0x86,0x1c,0x5e,0x8c,0xbb,0x5d, + 0xfa,0x8f,0x26,0x3c,0xa5,0xbb,0x6b,0xd7,0x66,0x3c,0x93,0x48,0xc4,0x68,0x53,0x9e,0x38,0xcf,0xdf,0xd1, + 0x8c,0xf4,0xf0,0x4d,0x6e,0x10,0x12,0x9f,0xf3,0x19,0x75,0xea,0xb7,0x32,0xbb,0x11,0x62,0xe2,0xb5,0x26, + 0xc2,0x99,0x40,0x8d,0x0a,0x9e,0x15,0xc4,0x7c,0x0e,0xdd,0xb0,0xda,0x14,0x73,0x18,0x66,0x10,0x5d,0x4f, + 0x50,0x34,0x5b,0xf1,0x24,0x7d,0x2c,0x96,0x48,0xb0,0xd7,0xfd,0x72,0xa6,0xae,0x21,0xda,0x81,0x7d,0x15, + 0x5e,0xb9,0xcd,0xef,0xe4,0x1e,0x58,0xf6,0xde,0x50,0xa0,0xee,0x3b,0x09,0xc5,0x59,0x49,0x83,0x99,0x99, + 0x5d,0x47,0xf4,0xc8,0x91,0xb2,0x97,0x3f,0x0e,0x76,0xa4,0x13,0xee,0x3e,0x7d,0x5a,0x06,0x09,0x70,0xe5, + 0x92,0x94,0x1f,0xcb,0x4f,0x65,0x75,0x59,0x9a,0x4a,0x91,0xd6,0x8b,0x9e,0x9f,0x9e,0xa9,0xa1,0xe0,0xf8, + 0xe9,0x87,0x52,0x05,0x97,0x30,0xe2,0xc3,0xe3,0x79,0x71,0xaa,0xa7,0xd7,0xd3,0xb9,0xc6,0xbd,0xd3,0xd4, + 0xa7,0x72,0xad,0x9e,0x13,0x44,0x1e,0xfe,0xf7,0xaf,0x97,0xa3,0x7b,0x47,0x0f,0xd4,0x2b,0xc8,0xca,0x8e, + 0x79,0x6f,0x1d,0x1f,0x13,0x39,0x76,0xb3,0x56,0x2f,0x29,0xc9,0x93,0xa9,0xee,0x0a,0x3f,0xf1,0xec,0x51, + 0x2f,0x86,0x73,0x7f,0xfe,0xe5,0x79,0x79,0x51,0xd4,0x55,0x69,0xee,0x43,0xdf,0xee,0x24,0x40,0x92,0xc7, + 0x3d,0x55,0xcf,0xca,0xec,0x45,0xb9,0xb3,0x33,0x9c,0xdb,0x05,0x78,0xf5,0xa6,0xcc,0x5e,0x52,0x59,0xe3, + 0x52,0x54,0xe6,0x17,0xc5,0x19,0x38,0x85,0xd1,0x8a,0x26,0xec,0xf1,0x19,0x5f,0x38,0xd5,0x29,0xff,0xae, + 0xcc,0xde,0x50,0xf9,0x07,0x8b,0xa6,0xd0,0xb7,0x84,0x7b,0x66,0x54,0xc4,0xd8,0x84,0xbd,0x29,0x13,0xf5, + 0x5a,0xb2,0xdf,0x04,0x1e,0x8d,0x28,0xb9,0xf5,0xf5,0x68,0x1f,0xd8,0x4d,0xbd,0xdf,0xcc,0xd7,0xb3,0x33, + 0xfd,0x80,0x33,0x9f,0x6c,0x66,0x12,0x1c,0xd4,0x74,0xce,0x21,0x9b,0x4e,0x33,0xfb,0x86,0x2b,0x37,0x4a, + 0xf5,0xa3,0xe9,0x4a,0xb1,0x3c,0xa7,0xbd,0x75,0x5b,0x2c,0xf3,0x19,0xfd,0xa9,0xe8,0x4f,0xd5,0xf8,0x2e, + 0xc1,0xa9,0xbd,0x6a,0xcc,0x27,0x3f,0x95,0x59,0xcc,0xdf,0x4c,0xcf,0x6b,0x22,0x51,0x7e,0x7d,0xf0,0xeb, + 0x6c,0x37,0xe8,0xfd,0xcd,0x7a,0xc4,0x37,0x0d,0x27,0xea,0x3b,0x28,0xb1,0x41,0x55,0xbd,0x2c,0x39,0xca, + 0x26,0xb0,0xf2,0x1f,0x6c,0x0f,0x31,0x7c,0x2d,0xf3,0x1f,0x84,0x4f,0x4c,0x8c,0x86,0x48,0xdd,0xe0,0x5a, + 0xe7,0x80,0x12,0x46,0x65,0xfb,0x6b,0xc2,0x2d,0x66,0x96,0x37,0x63,0x02,0xa2,0x07,0x7b,0xee,0x7b,0x86, + 0xfa,0x3f,0xca,0x24,0x70,0x3b,0x47,0xfb,0x3f,0x97,0xea,0xf7,0x52,0x7d,0x1f,0xa0,0xa0,0x1e,0x2d,0x40, + 0x63,0xfc,0x19,0x86,0x35,0x3f,0x53,0x7b,0x58,0xd4,0x21,0x18,0x3a,0x9b,0x57,0x27,0xf9,0x1c,0x34,0x29, + 0x23,0x2a,0xcc,0x8b,0x24,0x01,0xf7,0x83,0x17,0x1c,0xe9,0xf2,0x62,0xf4,0xd3,0x8f,0xcf,0x8f,0x9f,0xbf, + 0xf9,0x29,0x51,0x3f,0x13,0x2c,0xff,0xd0,0x01,0x91,0xe3,0x63,0x64,0x3e,0x7b,0xfe,0xd3,0xc7,0xb7,0x6f, + 0x5f,0x7d,0x38,0xfe,0xf6,0xd5,0xdb,0x27,0x8f,0x5f,0x1d,0x7f,0xf7,0xf6,0xed,0x0f,0xc7,0xc7,0xea,0x97, + 0x61,0xc0,0xfd,0x70,0xbd,0x38,0xa9,0xa8,0xd1,0x7b,0xb1,0x3c,0x25,0xc3,0x7d,0x33,0xd7,0x33,0xa3,0x5c, + 0xef,0xa6,0xe6,0x64,0xfc,0xfb,0x1d,0x35,0x6b,0x2e,0x4e,0x3f,0xc9,0xe4,0x43,0x77,0xd6,0x03,0xfe,0xdb, + 0x04,0xd3,0xc7,0x25,0xdb,0x03,0x08,0xc3,0x85,0xd8,0xee,0x1e,0x7f,0x03,0x98,0x7e,0x1b,0x53,0x6c,0xab, + 0x82,0xb2,0x53,0x85,0xdf,0xd0,0xb2,0x76,0xbe,0x09,0x0a,0x62,0xfd,0x3b,0x65,0x09,0x59,0xe4,0x75,0xb8, + 0x90,0x9f,0xed,0xa0,0x6a,0xd7,0xc6,0xd4,0xe0,0xdb,0x32,0x3b,0x53,0xff,0x06,0x43,0xf0,0xaf,0x72,0xe3, + 0xf3,0x62,0x96,0xfd,0x9b,0xe8,0x36,0x73,0x2d,0xe4,0xea,0x04,0x6a,0xfc,0xf5,0xf8,0x5f,0x65,0xb7,0x8f, + 0x1f,0x56,0x27,0x03,0xdd,0xa4,0xd2,0x26,0xde,0x20,0x35,0xd7,0xf9,0x44,0x5c,0x21,0xfb,0x5f,0x99,0x9b, + 0x53,0xf1,0x9d,0xda,0xf8,0x44,0x2e,0x05,0x0f,0xfb,0x17,0xdc,0x19,0xee,0x1e,0xd1,0x99,0x67,0x7a,0x29, + 0xf2,0xf6,0x5e,0x0d,0x65,0xd5,0x12,0x61,0x3d,0x7c,0x2f,0xa0,0xef,0xb0,0x13,0xb8,0xb2,0x9d,0x54,0xdb, + 0xb7,0x93,0xe2,0x8b,0xef,0x57,0xee,0x96,0x40,0xd7,0x30,0x1b,0xee,0xf3,0x74,0xfe,0xb3,0x44,0x64,0xe8, + 0xb6,0xee,0x1d,0xf9,0xde,0x28,0xcb,0x4c,0x0f,0x9c,0x79,0xcc,0x85,0x9e,0x7c,0x9d,0x55,0xff,0x3e,0x4f, + 0x73,0x53,0x27,0x5f,0x8a,0x65,0xee,0xf6,0xd4,0xf3,0x85,0xbd,0xd8,0xb3,0x6c,0xec,0x8d,0x24,0xf2,0x95, + 0xb9,0x3d,0xab,0x92,0x57,0x7f,0x9d,0x56,0x58,0xc8,0x5f,0xab,0xd5,0x4d,0xb5,0x77,0x60,0x86,0xa9,0x6c, + 0xc6,0x08,0x83,0x63,0x50,0x79,0xa6,0x89,0xae,0xe1,0xad,0xbd,0xc4,0x73,0xc3,0xc4,0xb9,0x53,0x8f,0xb9, + 0x8e,0x34,0x4c,0xaa,0xf3,0x4b,0x8e,0x88,0xc3,0xe0,0xe5,0xae,0x88,0x75,0x09,0xde,0xb3,0x8c,0x75,0x16, + 0x92,0x68,0x23,0xb0,0xfb,0x62,0x4f,0xe7,0xd4,0xe8,0x2c,0x48,0xe0,0x5b,0x65,0xed,0x6b,0x27,0x9c,0x79, + 0x13,0xa4,0xf1,0x6d,0x7a,0x61,0x6f,0x36,0xe3,0xa1,0xc3,0xd4,0x88,0x68,0x88,0xec,0x86,0x97,0x22,0x45, + 0x38,0xbf,0xd3,0xe2,0x6c,0xc5,0x37,0xb2,0xa7,0x40,0xba,0x63,0x6d,0x42,0x96,0xc0,0xfa,0x77,0x00,0x73, + 0x0e,0x4f,0xcb,0x5a,0x0d,0xa1,0x79,0xa2,0x7c,0xe2,0xb6,0xf6,0x50,0xaa,0xb4,0x89,0xc5,0x53,0xf6,0x2e, + 0x5c,0xb1,0xd8,0x98,0xaf,0xe7,0xe0,0x08,0x2c,0xc2,0x66,0xc9,0x85,0x38,0xde,0xa4,0x8e,0x57,0x1d,0x51, + 0x79,0x82,0x49,0xdb,0x57,0xd4,0x7a,0x5d,0x67,0xbd,0x0b,0x84,0x54,0x51,0xf7,0x50,0x43,0x4d,0x8d,0x1f, + 0x46,0xd8,0xb3,0x11,0xa2,0x77,0x2f,0x03,0x7b,0x0d,0x13,0xef,0x0d,0x29,0x1c,0xbf,0x0c,0x0f,0x15,0x5c, + 0xdb,0xa2,0x1a,0xce,0x05,0x8d,0x86,0x19,0xc7,0x80,0x39,0x9f,0x31,0x06,0xac,0x61,0x46,0x70,0x15,0x17, + 0x04,0xc9,0xc3,0xb1,0xc0,0x0f,0x71,0x21,0x9a,0x0b,0x6d,0xe4,0x64,0x12,0x7b,0x7b,0xe3,0x84,0xef,0xf2, + 0x75,0x59,0xce,0x26,0x1d,0x41,0xf1,0x8d,0x9b,0x2b,0x66,0x1c,0x5e,0x24,0xe6,0x1e,0x72,0x09,0x7e,0x31, + 0x36,0x11,0x3a,0x5b,0x89,0xd0,0x29,0xc3,0x4a,0xf9,0xd1,0x0e,0x26,0x45,0x68,0x7a,0x1f,0x30,0xd3,0x0e, + 0x0d,0xc9,0x06,0x11,0x3c,0x74,0xa8,0xbc,0x80,0x3c,0xa6,0x3a,0xe1,0x33,0xce,0x5e,0x04,0xae,0x72,0xe0, + 0x25,0x83,0x59,0x60,0x4f,0x05,0xce,0x43,0x8c,0xb2,0xdd,0xd4,0x12,0x8c,0x04,0x5c,0x0f,0xd3,0x82,0x34, + 0x0d,0xf4,0x29,0x41,0x58,0x73,0x5e,0xad,0xe6,0x33,0xda,0xab,0x34,0x83,0x2d,0x60,0x4b,0x35,0xf5,0x26, + 0x22,0x95,0xf0,0x2a,0x16,0x57,0xe8,0x25,0xaf,0xf9,0xbf,0x0c,0x7e,0xb8,0x58,0xb0,0xa3,0x31,0x61,0xab, + 0xab,0x58,0x2e,0x8a,0xa6,0xa1,0x47,0xe6,0xb2,0xe9,0x8d,0xc8,0x28,0x71,0xfc,0xaa,0x2b,0x11,0x92,0x18, + 0x8c,0x8e,0x92,0xcc,0xf4,0x3a,0xed,0x67,0x07,0xb7,0x46,0x0f,0x6a,0x84,0x8c,0xc3,0x2f,0xd6,0xe5,0x4a, + 0xb4,0x3d,0x08,0x5b,0x4d,0xb4,0x09,0xbd,0xd0,0x7a,0x57,0xb5,0xb9,0xd4,0xb7,0x33,0x77,0x2d,0x7c,0x14, + 0x90,0x7a,0x99,0xcf,0x3f,0xe1,0x80,0x18,0x37,0xc1,0x2e,0xe0,0xd4,0x3b,0x2e,0xcd,0x0a,0x25,0xe5,0x6d, + 0x62,0x64,0x0c,0x3a,0x94,0x31,0x7c,0x44,0xcf,0x11,0x10,0x9e,0x90,0x35,0xfd,0x50,0x5f,0x54,0xa7,0xf2, + 0xb0,0x23,0x77,0xdd,0xcc,0x35,0x84,0xfb,0x1f,0xcb,0x75,0x5c,0x72,0xfb,0xf1,0xb4,0xc6,0x35,0x58,0x83, + 0xac,0xcc,0x78,0x2a,0x81,0x59,0xee,0x60,0xfa,0xb6,0xca,0xc9,0x2b,0x93,0x92,0xea,0xd0,0xef,0xd5,0x51, + 0x20,0x7a,0xd2,0xa6,0xaf,0x44,0x8a,0x43,0x5c,0xdc,0xe0,0xb6,0x9a,0x62,0x43,0x65,0x2f,0x89,0x00,0xfc, + 0x78,0x77,0x81,0xdd,0xa8,0x89,0x8e,0xb2,0x17,0x54,0x88,0x7a,0xc4,0x54,0xe8,0xc6,0xa1,0x24,0xba,0x62, + 0xc2,0x2b,0x3f,0xb1,0xf9,0xb4,0xbb,0x4b,0x4f,0xdb,0x24,0xed,0x92,0x9c,0x7d,0xdb,0x56,0x17,0x69,0xb4, + 0xb7,0xb7,0x03,0xe1,0xf3,0xb5,0x31,0x63,0x24,0xf2,0xf6,0x02,0x36,0x75,0x49,0xd7,0x5f,0x44,0x5b,0xc9, + 0x27,0xbc,0x45,0xa0,0x14,0x81,0xd3,0x48,0x4e,0x0c,0x48,0xff,0xc2,0x3f,0xd6,0x23,0x1e,0xe6,0x47,0x09, + 0xdf,0xa1,0x94,0xe5,0x93,0xdc,0x3a,0xbd,0x37,0x49,0xef,0x46,0xbc,0x26,0x99,0x10,0x27,0xd7,0x1c,0xb9, + 0x1d,0xbb,0xc6,0xb8,0x25,0xdc,0x29,0x3d,0x2c,0x74,0x7b,0x5e,0xcd,0xf8,0x51,0xae,0xbb,0xc6,0xd3,0xd4, + 0x44,0x3b,0x18,0x9e,0x98,0xcd,0xe1,0x0c,0x5d,0x1b,0x60,0x09,0x66,0x1e,0xa6,0xd2,0x30,0x91,0x2c,0xd8, + 0xe2,0xc1,0xb6,0x7f,0x41,0x2c,0x4d,0xf6,0x4a,0xd4,0xa5,0xb5,0x9a,0xd7,0xea,0xb4,0xaf,0xac,0xed,0xd3, + 0xdc,0x80,0x00,0xc2,0xd9,0x4b,0x5c,0x6e,0xa5,0x66,0x1c,0x41,0x8e,0xe3,0xc8,0xb1,0xf9,0xcc,0x00,0xcd, + 0x4a,0x54,0x9e,0x0b,0x28,0x0e,0xe2,0x35,0x7c,0x4f,0x92,0x79,0x87,0x2c,0x0c,0xf3,0xe2,0xef,0x08,0x9c, + 0x9d,0x21,0x9f,0xaf,0xd8,0xb9,0x15,0xbe,0x26,0xf2,0x3d,0x3f,0xd3,0x4f,0xcf,0xf3,0xb2,0xd4,0xf3,0xdb, + 0xdb,0xed,0x7b,0x71,0x37,0x09,0x74,0xb7,0xbd,0xa3,0xa9,0x9b,0x43,0x68,0xad,0x69,0xeb,0x15,0xce,0x60, + 0xbe,0xb6,0xa9,0x9b,0xeb,0xe4,0x4c,0xf1,0x40,0xff,0xac,0x03,0xe0,0x77,0x70,0xf6,0xf3,0xb6,0x25,0x17, + 0x35,0xa3,0xbe,0x6e,0x45,0x6a,0x51,0x67,0x17,0x34,0xcd,0x74,0x18,0x3d,0x1c,0x9b,0x87,0x83,0x11,0x38, + 0x54,0x2e,0x95,0x7d,0xa7,0xba,0xd5,0x2f,0x50,0xa4,0x69,0x4d,0x25,0x10,0xf6,0xac,0xef,0x98,0x54,0xc2, + 0xd9,0x8b,0xa2,0xe1,0xf9,0x34,0x8f,0xc6,0xc2,0xf7,0xac,0xce,0x4c,0x82,0xbd,0x08,0x98,0x48,0xe9,0x55, + 0xa7,0x95,0xb3,0x5a,0x6e,0x55,0xfe,0x2e,0x21,0x9e,0xb2,0xe3,0xd4,0x78,0x66,0xc3,0x26,0xd3,0x07,0xf3, + 0x9a,0x81,0xe2,0xba,0x56,0xc7,0x32,0x34,0x62,0xc6,0x4e,0xea,0x9e,0xa0,0xc9,0x88,0x53,0x77,0x22,0x17, + 0x90,0x9a,0x85,0x57,0x84,0xa1,0xa2,0xff,0xcb,0x56,0xeb,0x2d,0xc0,0xc5,0xc9,0xae,0x52,0xf8,0xef,0xbb, + 0x42,0x35,0xc2,0xdd,0x4a,0xa1,0xf2,0xae,0x42,0xd6,0xd6,0x8e,0xd5,0xf1,0x44,0x6c,0x76,0xca,0x29,0x18, + 0x46,0x40,0xb0,0xb9,0x11,0x37,0x50,0x33,0xfb,0x59,0xcb,0x6d,0x54,0x57,0x0c,0xa9,0xf7,0xf8,0xef,0x27, + 0x0e,0x26,0xf5,0x94,0xa1,0xf6,0x03,0xff,0x7d,0x8c,0xb3,0xe3,0x23,0xfe,0xbc,0x1d,0xa2,0x8b,0xed,0x39, + 0xb7,0x40,0xfc,0x77,0xf6,0x8c,0x38,0x66,0x6c,0x45,0x44,0x98,0x9c,0x63,0x3e,0xc1,0x72,0x14,0x9c,0x5c, + 0x4f,0x62,0x73,0x26,0xd2,0xa1,0xb8,0xbd,0x5d,0xf3,0x83,0x1c,0x36,0x90,0x35,0x70,0x12,0x1e,0x24,0x09, + 0xf1,0xd0,0x38,0x09,0x0f,0x86,0xa1,0x21,0xca,0x8f,0x93,0xf0,0x60,0x0e,0x24,0xae,0xcc,0xd7,0xe1,0x3f, + 0x0d,0xbe,0x30,0x54,0xe6,0xf4,0xc4,0x52,0xe9,0xc4,0x26,0xed,0xee,0x7e,0x34,0x0d,0x49,0xac,0x37,0x47, + 0xbd,0xce,0x0a,0x3a,0xf7,0x7d,0x3d,0xee,0x18,0x6f,0x98,0x4f,0x60,0x62,0x5e,0x5f,0x3e,0x0b,0xdf,0x29, + 0xf3,0x25,0x21,0x2a,0x03,0x10,0x41,0x91,0x7e,0xaa,0xd7,0x20,0x40,0xdc,0x3e,0x10,0x41,0x81,0x00,0x03, + 0xe5,0x88,0x06,0x69,0x69,0x2c,0x3a,0x8d,0xc3,0xd7,0x9e,0xcf,0xcf,0xf6,0xf3,0x52,0xc4,0x16,0xf6,0x66, + 0x3d,0x38,0xac,0x99,0x40,0x2c,0xa3,0xc8,0x5f,0x71,0x39,0x70,0x60,0x0e,0x1c,0xc2,0x1d,0xf4,0x39,0x6e, + 0x33,0x73,0x16,0xfb,0xbb,0xa7,0xd6,0xec,0x7a,0x15,0xf4,0x07,0x16,0xe3,0x43,0xbd,0x4b,0xe0,0xb8,0xaf, + 0x42,0x4a,0xc8,0x4e,0xa5,0x35,0x31,0xb3,0x9f,0x21,0x3c,0xce,0xdb,0xf0,0xa4,0xef,0xd1,0xe7,0xc2,0xe7, + 0xa9,0x80,0x71,0xfc,0xa7,0x89,0x35,0xe4,0x92,0x92,0x80,0xa5,0x93,0xf8,0x17,0x0c,0xa5,0x99,0x01,0x50, + 0x0e,0xeb,0x67,0x7a,0x20,0xfd,0x34,0x57,0xd1,0x29,0x27,0x5a,0x31,0xc6,0xe0,0x0e,0x82,0x92,0xf6,0xbc, + 0xae,0x2e,0xe9,0x00,0x79,0xc2,0x5a,0xed,0xfb,0xf2,0xd9,0x16,0x4d,0xdd,0x96,0x81,0xe9,0x2d,0x18,0x5d, + 0x74,0x97,0x13,0x16,0x29,0xc9,0x9a,0xf0,0x11,0x55,0x7e,0x7d,0xe3,0xe0,0x72,0x67,0xe7,0x67,0x4c,0x9a, + 0xef,0x22,0xfa,0x5f,0x2d,0x63,0x33,0x3d,0x90,0x00,0x94,0xab,0x25,0x60,0xc9,0x47,0xeb,0x03,0xe3,0x51, + 0x77,0xd9,0x75,0x2a,0x30,0xe0,0xb0,0xd3,0x12,0x14,0x8f,0xbb,0xc0,0x06,0x99,0x45,0x0c,0x93,0xb8,0xb8, + 0x97,0x2e,0x51,0xc9,0x3a,0xd0,0x6b,0x59,0xfd,0x10,0x84,0xdd,0xf7,0xad,0x91,0x12,0xc8,0xc6,0x4d,0x7a, + 0x5d,0x0a,0xfa,0xfd,0x19,0xf6,0x1c,0x5b,0xc6,0x42,0x58,0x0b,0xbe,0xc0,0xf6,0xdb,0x66,0x82,0xc5,0x18, + 0xea,0x3f,0x8d,0x0b,0x97,0x35,0x78,0xa9,0x83,0x11,0x0f,0x18,0x0b,0x29,0xdf,0xdd,0x71,0xb8,0xfb,0xba, + 0x35,0x6d,0xec,0xc2,0x5e,0x82,0x48,0x5f,0xe2,0x44,0xf9,0x0a,0x9b,0x60,0xa7,0x87,0x13,0xd5,0xdd,0xf3, + 0x65,0x77,0x12,0x6d,0x04,0xcc,0xde,0x0c,0x89,0xc4,0x61,0x43,0x3a,0xc3,0x9b,0x20,0x40,0x32,0xdb,0x66, + 0x2f,0x00,0x4b,0x49,0x7a,0xbd,0xa2,0xc2,0xe9,0x1d,0x8b,0x6d,0xa2,0x5c,0x67,0xd9,0x27,0x5c,0x48,0xcd, + 0x70,0xcb,0x4f,0x40,0x5d,0x1f,0x3a,0xa6,0x7f,0x57,0xb5,0xb3,0x46,0x1c,0x97,0xdf,0x3c,0xae,0x77,0x76, + 0xae,0x6a,0xbe,0x80,0x6d,0xf6,0x0d,0xd7,0x94,0x94,0xb4,0x20,0x54,0xc8,0xc4,0xb6,0x2e,0x77,0x0f,0xd4, + 0x3e,0x64,0x38,0x7c,0xd0,0x5d,0xd9,0x7b,0x32,0x93,0xf1,0x53,0xec,0x72,0x9c,0x0c,0xfb,0xea,0x8f,0x78, + 0xd5,0x8a,0x73,0x9d,0xc8,0x6a,0x3a,0xe3,0xa5,0x6e,0x87,0x83,0x05,0x8d,0xea,0x31,0xab,0x8d,0xa1,0xe2, + 0xb7,0x3d,0xdb,0x1a,0x6d,0x1b,0x39,0x1a,0x23,0x89,0xdb,0xdb,0x82,0x2f,0xc2,0x73,0x5b,0xa7,0x03,0x2d, + 0xe2,0x03,0x6a,0x6b,0xed,0xf0,0x57,0xb2,0x65,0x6b,0xb3,0xe9,0xa6,0x27,0xb2,0xbf,0xcd,0xf6,0x67,0x5b, + 0x57,0x2f,0x42,0x7d,0x12,0xb7,0x96,0x09,0x53,0xf7,0xad,0xa5,0xc6,0x5f,0xda,0xd9,0xe2,0xca,0x74,0x67, + 0x0b,0xeb,0xde,0x74,0x68,0x74,0x71,0x08,0x00,0x02,0x84,0xc8,0x13,0x11,0x9e,0x38,0x10,0x63,0x74,0x6a, + 0xd9,0x14,0xa1,0xfd,0xd9,0x0e,0x0b,0xb7,0x96,0xf9,0x3c,0xee,0x2f,0x55,0x4b,0x70,0x3f,0xab,0x2e,0x3f, + 0xbb,0x5e,0x66,0x70,0x08,0x23,0xf4,0x44,0x13,0xcd,0xf7,0xcc,0xea,0x8e,0x6e,0x6f,0xdd,0xc8,0xfd,0x11, + 0x2f,0xcc,0xeb,0xf8,0x3f,0xea,0x5c,0x6f,0x6f,0x8f,0x3b,0x07,0xf1,0xc1,0x5a,0x78,0xb6,0xdf,0x88,0x30, + 0xd1,0xe5,0x6a,0xa1,0xad,0x2c,0x47,0xf5,0x64,0x3b,0x50,0xd8,0xa4,0x67,0xaa,0xc1,0xdf,0xb5,0x7a,0x4e, + 0xc5,0xb1,0xc3,0xc0,0x98,0x8f,0x9f,0xb6,0xf1,0x87,0x40,0xda,0x2a,0x5c,0xfe,0x2b,0x2a,0x81,0xa0,0x02, + 0x21,0xcf,0x6c,0x28,0x1a,0x3e,0x03,0x86,0x63,0x06,0x0c,0x04,0x05,0x28,0x1a,0x37,0x25,0xc9,0x50,0xd8, + 0x80,0xac,0xd3,0x80,0xbf,0xec,0x3b,0xbb,0x39,0x66,0x39,0x8f,0x94,0xc6,0x08,0x8c,0x2f,0xf3,0x25,0x91, + 0x94,0xf2,0xf8,0x53,0xc9,0x2a,0x69,0xfb,0xfa,0x7c,0xbe,0x48,0x6b,0xe1,0xd8,0x88,0xe8,0xd4,0xa7,0x78, + 0x2f,0xe4,0x7d,0xcd,0xee,0xa2,0xec,0x60,0xde,0xb5,0xef,0xf1,0x31,0x42,0xe4,0xe2,0x1a,0x63,0xd8,0x93, + 0x4d,0xcd,0x83,0x6a,0xfa,0xb6,0x3c,0x94,0xd5,0x4b,0x81,0x67,0xe2,0xe5,0xd6,0x66,0x74,0x03,0x8e,0x68, + 0x40,0xac,0x1b,0xfc,0xec,0x92,0xd1,0x3d,0x56,0x44,0xc6,0x20,0x55,0x35,0x75,0xcc,0x08,0xea,0x82,0x0b, + 0x9b,0x4c,0xff,0x10,0x1a,0xe0,0xf1,0xdc,0xe1,0x02,0x44,0x10,0x7d,0x05,0xa0,0xd4,0x1c,0xca,0x21,0xae, + 0x54,0x45,0x9b,0x48,0xd9,0xf7,0xb4,0xcb,0x6c,0x59,0x97,0xbc,0x8d,0x40,0x0b,0xdb,0x43,0xa4,0xa9,0xd4, + 0xbf,0xbd,0x1d,0x17,0x58,0x3b,0x1b,0x39,0x61,0x74,0x2c,0x43,0x7f,0x6a,0xc4,0xb5,0xb7,0xb7,0x36,0x3c, + 0xab,0x37,0xed,0xe3,0xf2,0xc1,0x3b,0xdf,0xb4,0x60,0xec,0x22,0x7d,0x3d,0xc1,0x2a,0x41,0xce,0x6b,0xc2, + 0x73,0xf1,0xe3,0xb1,0xb9,0x94,0x3b,0xb6,0x8f,0x56,0x9c,0xca,0x17,0x3d,0xdd,0xd5,0x15,0x88,0x88,0x47, + 0xf7,0xe4,0x62,0x0e,0x7b,0xc3,0x51,0xf7,0x9a,0xb3,0x0b,0xdc,0xb3,0x71,0x6f,0x6e,0xcd,0x97,0x70,0x8b, + 0x00,0x25,0xb1,0x71,0x8b,0xab,0x54,0x4c,0x2e,0x6f,0xf2,0x7a,0xd4,0x11,0x52,0x59,0xf3,0x60,0x61,0xde, + 0x11,0xa7,0x0a,0xe5,0xd8,0xe5,0x24,0x18,0x12,0xa5,0x41,0xc5,0x82,0xf0,0xd8,0x88,0x84,0x38,0x9e,0x3e, + 0x72,0x5b,0x77,0xea,0x2f,0xc2,0x6e,0x0e,0xa7,0xc4,0xf3,0xe3,0x8e,0xf6,0x77,0xf1,0x4a,0xf5,0xdb,0x96, + 0x1b,0xff,0x36,0xdb,0xdf,0xdf,0x28,0xf9,0x8c,0xc5,0xe7,0x6b,0x6f,0xdd,0x3c,0xcf,0x36,0x27,0xd8,0xc7, + 0xad,0xf8,0x4c,0x1e,0x2e,0x2c,0x92,0x7b,0x2c,0xe7,0xc9,0xba,0xe2,0x89,0xbf,0x07,0xcb,0x06,0x9a,0x48, + 0xdc,0xbb,0x18,0x84,0xf2,0xa6,0x0c,0x9a,0x86,0xa9,0x51,0x94,0xb3,0x17,0xbd,0x1e,0xd8,0xb6,0x03,0x5b, + 0x59,0x05,0x61,0x36,0xe8,0xd9,0xad,0x02,0x20,0xce,0x47,0xf0,0x58,0x2b,0x09,0x1d,0x36,0x78,0x74,0xdb, + 0xfb,0xf7,0xca,0xa1,0xfa,0xc7,0x65,0x27,0x5a,0x5b,0x1c,0xbe,0x62,0xf6,0xa6,0xb8,0xe9,0xca,0x29,0xfc, + 0xd9,0xc0,0xad,0xbb,0xa5,0xf8,0x62,0x69,0xff,0xcd,0x84,0xef,0x71,0xaa,0x71,0x6d,0xb4,0xc3,0xa7,0xc4, + 0xe8,0xc9,0x91,0x5e,0x27,0x49,0xda,0xa0,0xc2,0xed,0x7d,0x13,0x8c,0xaa,0x5e,0x2b,0x63,0x19,0x70,0x47, + 0xd7,0xfb,0xdd,0xed,0x62,0x3f,0x76,0x1b,0xed,0xf6,0xc7,0xc9,0x2b,0xc5,0xea,0x55,0x50,0x6b,0x5c,0x4a, + 0x37,0xc5,0xf2,0xe1,0x65,0xe9,0x79,0xae,0x9c,0x2f,0x83,0x06,0xbd,0xe7,0x7a,0x9c,0x20,0xa0,0x66,0xd0, + 0xff,0xfd,0x71,0x20,0xd3,0x1c,0xd7,0xc4,0xb8,0xdc,0xeb,0xdf,0xd9,0x0e,0xc9,0x26,0x5c,0x29,0x5d,0x06, + 0x6e,0x7a,0x1c,0x4f,0xd1,0x83,0x8e,0x85,0x83,0x84,0xdd,0xa7,0xd1,0xa7,0xe1,0x35,0xcd,0x40,0x3e,0x2f, + 0xeb,0x8e,0xa8,0xf2,0x15,0xed,0xd9,0x17,0x75,0x76,0xa0,0x9e,0xd5,0xd9,0x43,0xf5,0x06,0x0d,0x3f,0x0f, + 0xb5,0x77,0x7c,0x2b,0xf7,0xa6,0xec,0xf7,0x78,0x45,0xac,0xe5,0x9b,0xda,0x6a,0xe0,0x68,0xaa,0x7e,0x5a, + 0x09,0x6b,0xc9,0x51,0xe2,0x02,0xe4,0x3f,0x19,0x42,0x72,0x1e,0xd6,0x7b,0x92,0x2b,0x06,0x22,0x2b,0x9e, + 0x71,0xe6,0x9d,0x1c,0x86,0x24,0xc4,0x48,0x63,0x1b,0x31,0x22,0xb3,0xb8,0x47,0x95,0x7d,0x94,0xe5,0x12, + 0xe8,0x28,0xf1,0x9f,0xd3,0x0b,0x72,0xe4,0x84,0x41,0xb2,0x3c,0x19,0x31,0xda,0xc0,0xf5,0x8f,0xc1,0xb6, + 0xc8,0x8a,0xce,0x16,0xd9,0xd8,0xa5,0x45,0xb0,0x6b,0xca,0x4d,0xf4,0xe7,0x76,0x11,0x32,0x5d,0x3b,0x1f, + 0xf3,0x33,0xb9,0xd3,0x57,0x69,0x73,0x6c,0x71,0xa8,0x59,0x73,0x94,0xd9,0x34,0xb5,0xe1,0x28,0x98,0x6d, + 0x38,0xe6,0x24,0x42,0xb3,0xaa,0xd6,0x48,0x0c,0xee,0xf9,0xcb,0xda,0x7f,0x6b,0x63,0xab,0x8f,0xb3,0x93, + 0x4b,0x1b,0x8c,0x43,0x79,0x1b,0x49,0x06,0xaf,0xa2,0xb4,0xf5,0xae,0xae,0xae,0x44,0x30,0x60,0x92,0x1b, + 0x3d,0x3f,0x95,0xf7,0xa1,0xad,0xe3,0x2e,0xfe,0x2c,0xdd,0x62,0x30,0x05,0x8f,0x50,0x98,0x2e,0x14,0x90, + 0x09,0x17,0x5a,0x7a,0x1c,0x67,0x73,0x76,0x76,0x28,0xd1,0xc6,0x7b,0x84,0x2d,0xac,0x7d,0x29,0x03,0xe8, + 0xb7,0xea,0xda,0xd6,0xe6,0xf2,0x95,0x4c,0xf7,0xea,0xaa,0x82,0xfc,0xa8,0x94,0x27,0x22,0x26,0x5a,0xff, + 0x0d,0x4b,0x2d,0xe4,0xc2,0x67,0x88,0x7d,0x02,0xd9,0x0d,0xd3,0x18,0x6d,0xb0,0xf1,0x6c,0x42,0x7f,0xd3, + 0x1e,0x70,0x29,0x8f,0xa4,0xcc,0xbb,0x43,0x0a,0x2e,0xa5,0x4b,0x3c,0x82,0xb0,0x33,0x92,0xa0,0xce,0xbe, + 0x19,0x1d,0x9b,0xfb,0x8e,0x86,0x2c,0x79,0x28,0x97,0x98,0x42,0x58,0xd5,0xb0,0xbd,0x44,0x66,0xa2,0xa1, + 0xe9,0xcf,0x1e,0x19,0x84,0x13,0x4b,0xb9,0xa7,0xeb,0x8e,0x06,0xe5,0xcc,0xb6,0xe3,0x13,0x78,0xf9,0x58, + 0x6b,0xdd,0x78,0xbd,0x70,0x6f,0x09,0xdd,0x41,0xdf,0xdd,0x70,0xb4,0x03,0x4b,0xac,0x94,0x8d,0xc0,0x19, + 0x1e,0x40,0xba,0x0f,0xea,0x72,0xe1,0x63,0x48,0x62,0x64,0x7c,0xb4,0x1f,0x4f,0x3b,0xe6,0xde,0x2a,0xbc, + 0xee,0xfa,0x6d,0x70,0x11,0x2c,0x22,0x44,0xac,0x79,0x2d,0x43,0x1b,0xc4,0xbf,0xfa,0xed,0xbe,0xd1,0x84, + 0x14,0xd2,0x63,0x0e,0x99,0x0f,0xd5,0x4b,0x24,0xb4,0x47,0x04,0x51,0x5e,0x11,0x90,0x1c,0x12,0x70,0x4b, + 0x4a,0xb8,0xfd,0x1b,0x29,0xbd,0x31,0xdd,0xbe,0xb4,0x9d,0xed,0xa9,0x6c,0x2b,0xd5,0x35,0x67,0x1b,0x08, + 0xca,0x92,0x9d,0xb7,0x21,0x71,0x25,0x72,0x7e,0x28,0x1f,0x70,0xaa,0x0d,0xd0,0x32,0x2a,0x44,0xd1,0x7a, + 0x20,0x46,0x39,0x1d,0x37,0x1f,0x99,0x20,0xd0,0x12,0x20,0x57,0x0d,0x10,0x24,0x77,0x01,0x85,0xe5,0x67, + 0xe0,0x68,0xdf,0x87,0x00,0x3a,0xf6,0x8c,0xc7,0xcb,0xe7,0xd1,0xb6,0x47,0x84,0x8c,0x44,0x6a,0x47,0x72, + 0x99,0x78,0xfd,0x03,0x54,0x17,0x36,0x64,0x85,0xa0,0x43,0x76,0x83,0x6f,0x74,0xb9,0x32,0xae,0x6b,0xae, + 0xe9,0x0a,0xf7,0x52,0xf1,0xde,0xaf,0x6c,0xf8,0xdd,0x77,0x30,0x9c,0xa6,0x71,0xd3,0xdc,0x7d,0x8c,0x39, + 0x9e,0x48,0xa2,0x58,0x73,0x43,0xd8,0x6c,0xde,0xb2,0xaa,0x91,0xfb,0x11,0x81,0xd4,0xee,0xc5,0x11,0x48, + 0x72,0xb8,0xdb,0x0f,0xcc,0x14,0x3b,0x3f,0x19,0xd2,0x12,0x66,0xd9,0xa2,0x91,0xe9,0xcf,0x41,0x7f,0xf4, + 0x3e,0x20,0x8e,0xd4,0xce,0xb7,0xb9,0x88,0xe0,0x02,0xab,0x32,0x39,0x4b,0x67,0xb1,0xe8,0xfb,0xe4,0xce, + 0x67,0x5b,0x2f,0x9a,0x00,0x54,0x4e,0x3e,0x87,0x4d,0x05,0x6e,0xab,0x18,0x69,0xc7,0xac,0xb5,0x1b,0x14, + 0xa3,0xf6,0x7a,0xe8,0xcd,0x83,0x5b,0x61,0xdf,0x75,0x47,0x30,0x60,0xf2,0x9e,0xf0,0x76,0x61,0x23,0xce, + 0x18,0xd7,0x6c,0xdd,0xac,0xe5,0x92,0x1e,0x22,0x16,0xf8,0x8e,0x67,0x22,0x76,0x34,0x5f,0xca,0xe6,0x05, + 0x2d,0x5d,0x78,0xe4,0xf5,0xee,0x91,0xc5,0x45,0x16,0x42,0xb8,0x19,0xaa,0x72,0x11,0x19,0xc7,0x85,0x13, + 0x8d,0xe5,0x59,0x79,0x58,0x1c,0xc1,0xd5,0xec,0x94,0x56,0x10,0x77,0xb4,0x5e,0xf2,0x4d,0xad,0x66,0xf9, + 0xd0,0xad,0x08,0xf7,0x64,0x3f,0x16,0x0a,0x06,0x1c,0x58,0xfa,0x38,0xb6,0xd3,0x40,0xf0,0x85,0xfd,0xaa, + 0x9d,0x8a,0xec,0x2e,0x50,0x3d,0xb6,0x05,0x7e,0xb6,0xf0,0x3e,0x84,0x77,0xeb,0xec,0x7b,0x84,0x4a,0xef, + 0x44,0xdf,0x70,0xdc,0x9b,0xc6,0xdd,0x31,0x83,0x33,0x5f,0x4d,0xaa,0xb4,0x82,0x6c,0x63,0x0c,0xc9,0x11, + 0xc6,0xc3,0x02,0xf0,0xb7,0xf0,0xdb,0xa4,0x2d,0x71,0xa6,0xce,0x88,0x4d,0x27,0x22,0xb6,0x30,0xa0,0x79, + 0x8a,0xb1,0x15,0xcc,0xfe,0x31,0x28,0xd8,0xbe,0x25,0xec,0xe3,0x45,0xfd,0x83,0x4d,0x0b,0x3f,0x6c,0x8b, + 0x82,0xf3,0x0e,0xf7,0x88,0xa0,0x7b,0x35,0x43,0xd9,0x66,0x18,0x8f,0x3a,0xbc,0x0b,0x0e,0xee,0x71,0x75, + 0xe8,0x13,0x37,0x13,0x3e,0xa2,0xe6,0x9b,0x22,0x99,0x7b,0xb5,0x29,0xb6,0x6b,0x62,0x16,0x38,0x84,0x3b, + 0x36,0x60,0xd4,0xe8,0x10,0x4d,0x3c,0xb0,0x63,0xf3,0x3a,0x1b,0x06,0x55,0x6d,0x04,0x4a,0x04,0x65,0x9b, + 0x08,0xd4,0x1a,0x00,0x1b,0x4a,0xc4,0xb5,0x00,0x17,0x25,0x49,0x11,0x0e,0xbc,0x9f,0x4b,0xe7,0xc4,0x66, + 0x0f,0x71,0x9b,0xd0,0xe7,0x6c,0x60,0x18,0x90,0xd6,0x63,0x17,0xf7,0xa9,0xfc,0x6c,0x61,0x06,0xef,0x61, + 0x2b,0x99,0xeb,0x38,0x20,0x95,0xe9,0xf8,0x10,0xd0,0xa5,0xfd,0xf1,0x57,0x0a,0x1b,0x34,0x55,0x26,0x1d, + 0x6b,0xb9,0x7b,0x6c,0x18,0xd7,0x4d,0x92,0x8b,0x9c,0xb2,0xdf,0xba,0xa9,0x43,0x8a,0x73,0xb9,0xf3,0xc8, + 0x47,0x72,0xe1,0xc5,0x65,0x42,0x4e,0xee,0x97,0xc6,0x75,0x10,0x72,0x8d,0xbb,0x28,0xa2,0xf6,0x6d,0xc8, + 0x55,0x03,0xbb,0x41,0x51,0xe7,0x3b,0x57,0x78,0x05,0xae,0xf6,0x32,0x41,0x65,0xfd,0x21,0x42,0xb3,0x99, + 0xda,0x49,0xdd,0x38,0x84,0x72,0xfc,0x7c,0x28,0x40,0x59,0xf6,0xe0,0xbf,0x71,0x09,0x7b,0xfa,0x60,0xdc, + 0x19,0x4e,0xd5,0x31,0x46,0x97,0x91,0xf4,0xed,0x44,0x92,0xae,0xcd,0x47,0xdb,0xb7,0xf9,0x30,0xd0,0x41, + 0x15,0xc0,0x17,0xd8,0x88,0x67,0x04,0x66,0x0c,0xed,0x75,0xd8,0x1e,0x59,0xad,0x81,0x4f,0x09,0x82,0x40, + 0x95,0xd8,0x90,0x46,0xdb,0x04,0xa0,0xe6,0x82,0x5d,0xc2,0x6c,0xdf,0xdf,0x0c,0x44,0xb9,0x5d,0x5b,0xc7, + 0x7b,0x55,0x4f,0x28,0xa6,0x03,0xe3,0x4c,0x99,0xa1,0x7b,0xd5,0xe9,0x29,0x0f,0x50,0x59,0x2b,0xa1,0x3a, + 0xb8,0x3a,0x6d,0x6d,0xfc,0x50,0xa8,0xe6,0xc0,0x7b,0x91,0x28,0x6b,0x55,0xcb,0xc0,0xf0,0x61,0xdd,0x6f, + 0xf4,0xf4,0xb4,0xd7,0x26,0x58,0xd1,0xbe,0xd1,0x52,0xd2,0x81,0xea,0xcf,0x91,0xa2,0x68,0x7c,0x68,0xf6, + 0x7b,0x5e,0x5a,0x1b,0x41,0x0d,0xcd,0xf4,0x63,0x7c,0x38,0xf6,0x74,0x77,0xa2,0x8c,0x0b,0x57,0x77,0xea, + 0xbb,0x97,0x56,0xd8,0x96,0xbd,0x49,0x47,0x7f,0xa5,0x84,0x94,0x35,0xc5,0xb4,0x83,0x87,0x2a,0xbc,0xe4, + 0x32,0xc7,0x49,0x43,0xd9,0x71,0x95,0x15,0xb0,0xd0,0x80,0xdd,0x02,0xae,0x2f,0x3a,0x2d,0x7b,0x57,0x5d, + 0xe6,0x1b,0x57,0x5d,0x0e,0xac,0xa8,0x5e,0xf4,0xf8,0x5f,0x2f,0xaf,0x67,0x8e,0xa7,0x3b,0x96,0x12,0x0e, + 0x64,0xf6,0xd0,0xfb,0xe6,0x60,0x02,0x88,0x4a,0xcb,0x80,0xaf,0x3f,0x8f,0xdd,0xba,0x50,0xeb,0x04,0xc4, + 0xfb,0xec,0xf1,0x6a,0x31,0xf4,0xa3,0x8a,0xb1,0x34,0xdf,0xd2,0x45,0x28,0xda,0x40,0x08,0x02,0x82,0x79, + 0x07,0x9f,0x27,0x31,0x91,0x7d,0xea,0x3e,0xb7,0xbb,0x75,0x2e,0xee,0x03,0x2c,0xdd,0x87,0x54,0x5f,0xe4, + 0xf8,0x5e,0xc9,0x26,0x9b,0x30,0x7e,0x5d,0x67,0xf4,0x1b,0xf2,0xf5,0x7d,0xd5,0x8d,0x10,0x10,0x86,0x99, + 0x37,0x2c,0xcf,0xce,0x4e,0x8f,0xc2,0x35,0xfe,0x17,0x36,0xce,0xa1,0x2c,0xb8,0x9e,0x2b,0xa3,0x8f,0x16, + 0x7e,0x83,0x06,0x75,0x59,0x8f,0x2f,0xeb,0x90,0x85,0x14,0x9e,0xa2,0x55,0xf5,0xc4,0x7e,0x63,0x4d,0xe2, + 0x58,0x12,0x7a,0x8c,0x88,0xc5,0x74,0x32,0xc4,0x77,0xe5,0xba,0x96,0x38,0x26,0xc7,0x41,0xef,0x94,0x08, + 0x78,0xfb,0x5e,0x86,0x70,0xf7,0xfd,0x53,0x25,0x10,0x0c,0x0c,0x96,0xb7,0x31,0xb4,0xeb,0xac,0xe0,0xdb, + 0x11,0x89,0x5f,0x3f,0xbe,0x58,0xe9,0xe3,0xe3,0xcc,0xef,0x10,0xf4,0xc6,0x62,0x08,0x7a,0x74,0x25,0x02, + 0x7e,0xfa,0x9e,0x91,0x93,0xca,0x8b,0xb4,0x69,0xdf,0x64,0x42,0x8c,0x6a,0xc8,0xe4,0x05,0x82,0xd5,0x30, + 0xd5,0x4d,0xc7,0x3d,0x3e,0xef,0x5e,0x87,0x5a,0x8e,0x50,0xda,0xb7,0xa1,0x85,0xb1,0x94,0xbe,0x69,0xd3, + 0xbe,0x06,0x76,0xc2,0xdd,0xba,0x8c,0x9c,0xa8,0xa7,0x31,0xd9,0xb6,0x40,0xd1,0xe5,0x72,0x93,0x9b,0x1e, + 0x6c,0x58,0x17,0x9c,0x44,0x0d,0x7f,0xe0,0x6f,0xa6,0x0c,0x47,0x37,0xde,0x6e,0x21,0x8f,0x1e,0xd0,0xc0, + 0x74,0x57,0xc6,0x8a,0x0b,0x58,0x33,0xe3,0xb9,0xfc,0x8e,0xf8,0xe2,0x8e,0xe1,0xfa,0x33,0x69,0xec,0x2d, + 0xe9,0x3a,0x45,0x9c,0x14,0x58,0x3b,0x05,0x8e,0xcb,0x82,0x61,0x75,0x50,0x83,0x27,0x20,0x8c,0x39,0xa7, + 0x6d,0x2d,0x48,0xb2,0xc6,0x8f,0x7b,0x7b,0x6e,0x2a,0xc2,0x59,0x50,0x43,0xb0,0x6d,0xb6,0x8e,0xc0,0x97, + 0x9b,0x59,0xef,0xcc,0xe4,0x40,0x98,0xb0,0xeb,0xe7,0x01,0x30,0x04,0xd1,0x2e,0x3c,0x75,0x64,0xf5,0x62, + 0x6e,0xbf,0x56,0x4f,0xdb,0x38,0x7e,0xd7,0xc3,0x0e,0x89,0x7a,0xd7,0x01,0x8c,0x92,0x58,0xfe,0x8f,0xc5, + 0xb4,0x6b,0xfa,0x68,0x50,0xcc,0x1f,0x46,0xd9,0x48,0xd0,0xd4,0xf9,0xc8,0xc8,0x04,0x42,0x60,0xf2,0xab, + 0xaf,0x36,0x04,0x47,0x46,0xcc,0xb5,0x21,0xe8,0x63,0xad,0x84,0xc7,0x48,0x49,0x87,0x50,0xb7,0x52,0x08, + 0xef,0xcc,0x2c,0xef,0x60,0x2f,0x70,0x0b,0x8b,0x75,0x4d,0x23,0xec,0x7f,0xb8,0x7f,0xb4,0xb3,0x83,0xbf, + 0x50,0xe0,0x24,0x81,0x08,0x1d,0xa4,0xfb,0x07,0x62,0x2a,0x21,0x29,0x5e,0xf7,0xa4,0x16,0xb5,0xd3,0x50, + 0x74,0xd4,0x27,0xa2,0xa7,0x30,0xfa,0x10,0xe1,0x4b,0xd9,0x00,0x03,0x01,0x0b,0x84,0x40,0xea,0x88,0xd2, + 0x36,0x24,0x19,0x81,0x49,0xc6,0x13,0xbe,0x1c,0x35,0x92,0xd2,0x7c,0x33,0x91,0xc5,0x02,0x16,0x85,0xe7, + 0x34,0x50,0x11,0x49,0x23,0x9a,0x3e,0xb8,0x0d,0x6a,0xa6,0x8e,0x39,0xce,0xa7,0x55,0xbb,0x28,0x43,0xcd, + 0xbe,0xab,0x69,0x47,0xab,0xf7,0x75,0x76,0x68,0x7c,0x25,0xdf,0xeb,0xb3,0xe7,0x57,0x4b,0xb1,0xb7,0x3d, + 0x52,0x4f,0xea,0xec,0xe6,0x07,0x2b,0xbe,0x4e,0x4d,0x98,0x93,0x30,0x9a,0xb5,0xdd,0x64,0xac,0xb0,0x93, + 0x48,0x17,0x45,0x39,0x9d,0xaf,0x66,0x3a,0x7d,0x5f,0x2b,0x7d,0xe5,0x1e,0x17,0xf9,0x55,0x6a,0xdb,0x90, + 0xfb,0x77,0x8e,0x60,0x54,0xc8,0x34,0x7c,0xda,0x47,0x43,0xd3,0x9c,0x36,0xd2,0x9d,0x94,0x06,0xf3,0x94, + 0xf0,0xde,0x50,0x0e,0xd8,0x3b,0xae,0x2d,0x56,0xdb,0xca,0xeb,0xed,0xaa,0x4b,0x9e,0x59,0x89,0x26,0xde, + 0x54,0xeb,0xab,0x22,0x38,0xe4,0xad,0xeb,0xbb,0x1e,0x02,0xed,0x0b,0xb3,0xb3,0xbc,0x2c,0xc9,0x01,0xf2, + 0x4b,0x23,0x49,0xa3,0x0a,0xec,0x48,0xff,0xda,0x97,0xdb,0xfe,0xcb,0xb5,0xda,0x8c,0x38,0x10,0xe2,0x3c, + 0x86,0xb8,0x91,0x89,0x05,0x46,0x9b,0xe0,0x9f,0x62,0x2a,0x2c,0xa4,0x75,0x5f,0xf2,0x1c,0x06,0xe4,0x7c, + 0x85,0x10,0xf0,0xca,0x90,0x4f,0x66,0x60,0x08,0x14,0x26,0x4a,0x7c,0x7e,0xe5,0xbb,0x32,0x09,0xb0,0xb7, + 0x09,0x46,0xd0,0xa5,0x02,0xc1,0x20,0x08,0xf2,0x09,0x86,0x77,0x76,0xe8,0xbd,0x0a,0x22,0xfb,0x6b,0x23, + 0x4d,0x09,0xa6,0xd0,0x18,0x83,0x60,0x0a,0xd5,0xd4,0x8a,0x31,0xf8,0x7a,0xe5,0x52,0xa2,0xbb,0x4f,0x8b, + 0xd9,0x6e,0x2c,0x11,0x2b,0xa2,0x34,0x45,0xac,0x0d,0x0e,0xcc,0x12,0x41,0xc5,0x80,0x10,0x4b,0xf9,0xe1, + 0xf4,0x68,0x32,0xa8,0x6d,0x42,0xce,0x80,0xc2,0x69,0x2e,0xb7,0x67,0x19,0x0b,0x9d,0x29,0xa2,0x2c,0xa3, + 0x24,0xd1,0xba,0x2e,0x49,0x96,0x95,0xa0,0x6d,0x67,0xc7,0xe2,0xe8,0x6f,0x7c,0xc0,0x40,0x93,0x47,0xbb, + 0x99,0xa0,0x21,0x57,0xb8,0x57,0x55,0x75,0x08,0x8e,0xc4,0x8a,0x5a,0xbc,0xd6,0x06,0xd2,0x1e,0x3b,0x09, + 0x74,0xc6,0x10,0xf6,0xa6,0xaf,0x88,0x57,0x19,0x88,0x58,0xfc,0x39,0x3e,0xf2,0xb7,0xf2,0x4e,0x8e,0x90, + 0x98,0x59,0xd6,0xde,0x33,0x23,0xd8,0x8e,0x56,0x6d,0x31,0xcf,0x6e,0xe0,0xe9,0x99,0x7e,0x4b,0x74,0xdb, + 0x55,0x4b,0x00,0x82,0x68,0xb2,0xb0,0xcd,0x36,0x2b,0x9d,0x3e,0x53,0x52,0xc9,0x7b,0xd1,0xe0,0xe8,0xf4, + 0x23,0x88,0x50,0xcb,0x09,0x06,0xec,0x9f,0x43,0xc4,0x7f,0x28,0x77,0xe9,0xc3,0xe0,0xce,0x1a,0xb2,0xbe, + 0x66,0x11,0x96,0xbd,0x29,0x42,0x8b,0x11,0xf6,0x90,0x0b,0x56,0xe2,0xeb,0x1e,0x1d,0x9f,0xe4,0x0d,0xe8, + 0x36,0x5c,0x7b,0x6a,0xd3,0xdc,0x4a,0x36,0x84,0x51,0x78,0x88,0x8d,0xbe,0x83,0x42,0x86,0x90,0x9d,0x56, + 0x1b,0x17,0x8e,0xbc,0x9b,0xaf,0xce,0x0a,0x89,0xbf,0x3a,0x98,0xc1,0x77,0xee,0x71,0x68,0x50,0xeb,0x11, + 0xd9,0xe2,0xf6,0x8a,0x0e,0x6b,0x20,0x54,0x67,0x97,0x84,0xf6,0x6c,0x92,0xf1,0x9e,0x30,0xa2,0x85,0x01, + 0x19,0x04,0x62,0x90,0x70,0xa3,0x13,0xf7,0x64,0x1d,0x35,0x60,0xf4,0x3e,0xf4,0x05,0xb4,0x59,0xc1,0x95, + 0x65,0xcc,0xb5,0x85,0x06,0x65,0x58,0xa7,0x45,0x71,0x55,0x0c,0x3b,0x4b,0x63,0xa0,0x5e,0x09,0x13,0xbe, + 0x2a,0xf7,0x7d,0x57,0x38,0x4b,0x9b,0x2c,0xdb,0x37,0x52,0xd9,0x03,0x62,0x90,0x05,0x5e,0xba,0xfa,0xb7, + 0x8c,0x15,0x37,0x01,0x09,0x0e,0xe1,0x3c,0xbe,0x94,0x8b,0x77,0xb1,0x59,0xe5,0x5e,0x43,0x3c,0xb1,0x1c, + 0x0f,0x98,0x01,0x8a,0x42,0x6b,0x80,0x6e,0x7d,0x55,0x70,0x62,0xca,0x75,0x8c,0x2e,0x94,0x8a,0x44,0xd9, + 0xce,0x07,0x34,0x7e,0x50,0x04,0xb2,0x47,0x84,0x09,0x18,0x90,0xfb,0xc3,0xbe,0x0f,0x46,0x01,0x25,0x91, + 0x84,0x3a,0xa7,0x2c,0x47,0xbc,0x6a,0x1a,0x22,0x6e,0x88,0xcf,0x83,0xa9,0x29,0xc3,0x79,0xa1,0xd3,0x76, + 0xb5,0x84,0x9e,0xc6,0x17,0xd9,0x14,0x4a,0x7b,0x69,0xd4,0x67,0x65,0xb2,0x90,0x29,0x86,0x52,0x97,0x63, + 0x27,0x75,0x59,0xe3,0xae,0x93,0xbc,0x03,0xd4,0x7d,0x69,0xe2,0x66,0x1b,0xb6,0x54,0xbf,0x99,0xd3,0x6e, + 0x33,0x56,0x2c,0x2f,0x4d,0x98,0x35,0x2c,0xcd,0x03,0xa5,0x08,0xc4,0x94,0xf2,0x4b,0xef,0xd8,0x40,0x25, + 0xfe,0xde,0xe5,0x35,0x91,0x33,0xef,0xcb,0x31,0x67,0x95,0xdc,0xe0,0xb2,0xb9,0x19,0xd9,0x0d,0xc1,0xcd, + 0x9e,0xf5,0x86,0xf3,0x33,0x6b,0x3b,0x62,0x73,0x5a,0xbe,0x18,0x26,0xa7,0x1d,0xe8,0xdc,0xef,0x70,0x29, + 0x6f,0xee,0xb5,0xae,0x05,0x3b,0x38,0x11,0x71,0xb1,0x96,0x63,0xaa,0xbd,0xab,0x7b,0xe8,0x59,0x2f,0x92, + 0x8f,0xf3,0x29,0x89,0x83,0x88,0x00,0xe2,0x27,0x56,0xc5,0x25,0x07,0x44,0x61,0x50,0xcb,0x4a,0x03,0x81, + 0xce,0x9a,0xb5,0x83,0x7a,0x4c,0x9f,0x39,0x92,0x4d,0x10,0x4e,0x40,0x2a,0x1a,0xd8,0xb0,0xcc,0xad,0x65, + 0x37,0x88,0x6e,0x99,0x96,0xca,0xc4,0x3e,0x2f,0xd7,0xd6,0xd5,0xc7,0x20,0x3f,0xf1,0x40,0x81,0x45,0x61, + 0xc9,0x51,0xf6,0x06,0xf3,0xd6,0xc6,0x65,0xaa,0x14,0x16,0x7a,0x18,0xdb,0x3f,0xef,0xca,0xf4,0x8a,0xe6, + 0x83,0xf8,0x1a,0x8b,0x63,0xf4,0xf7,0x68,0xf9,0x2f,0x7d,0xd8,0x34,0xb5,0x71,0x8d,0xdc,0xf4,0xa9,0x0e, + 0xb1,0x49,0x97,0xa5,0x14,0x82,0xde,0x7f,0x0b,0xcb,0x77,0xaa,0x18,0x7e,0x6f,0x05,0x6c,0xaf,0x1f,0x8e, + 0xbe,0x1a,0x1d,0x7c,0x21,0x61,0x5a,0x7e,0xac,0xd5,0x4f,0xb5,0xfa,0xae,0x56,0x7f,0xd4,0xea,0xe7,0x5a, + 0xfd,0x5e,0xab,0xef,0x6b,0xf5,0x43,0xad,0x7e,0xa9,0x39,0x9c,0x06,0xdf,0xfb,0x6c,0xee,0x7c,0x55,0xdf, + 0x72,0x1a,0xdf,0x6d,0xa3,0x50,0x2f,0x91,0x99,0xb9,0x92,0x09,0x52,0x72,0xbf,0x0f,0xc8,0xc3,0x33,0x98, + 0x0e,0x52,0xe9,0x7f,0xf7,0x6d,0xe7,0x5d,0x88,0x24,0x77,0xbf,0x39,0x2d,0xcb,0xb7,0x35,0x8b,0xd4,0x22, + 0x89,0x68,0x0c,0xc7,0x0b,0xdc,0x02,0x6b,0x6f,0x0b,0x32,0x85,0x22,0x69,0x84,0xd7,0x97,0x72,0x89,0x2e, + 0x99,0x7e,0xf2,0x99,0x72,0xd9,0x8e,0xc9,0x73,0x71,0xd4,0x91,0x03,0xb1,0x73,0xc5,0x39,0x6b,0xf5,0x2f, + 0xee,0xfc,0x54,0x2e,0x7b,0xd7,0xb3,0xa2,0x85,0x11,0x9d,0x9a,0xd5,0xf9,0xd9,0x19,0x3f,0x35,0x4b,0x3d, + 0x9f,0x73,0xcd,0xd4,0xf7,0x7f,0x72,0x61,0x3a,0x08,0xaa,0xcb,0x53,0x42,0xf0,0x0d,0x61,0x30,0x62,0x2a, + 0xd9,0x25,0x53,0xe5,0xab,0xb6,0x3a,0xad,0xa6,0xab,0x86,0x9f,0x96,0xf3,0xfc,0x5a,0x99,0x0e,0x71,0xe0, + 0x11,0x3a,0xaa,0x61,0xa7,0x47,0x24,0xeb,0xbc,0xa1,0xf3,0x9b,0xe6,0xae,0xd6,0xca,0x92,0x76,0xe6,0xd7, + 0x96,0x37,0xaf,0xdc,0x67,0xfb,0x62,0x87,0x8e,0x77,0xe2,0x7c,0x66,0x45,0x83,0xee,0xcd,0x94,0x2e,0xe5, + 0x17,0x11,0x0c,0xca,0x8a,0xa6,0xb0,0x00,0x10,0xab,0xf3,0x62,0x36,0xa3,0xae,0xe1,0x70,0x6c,0x75,0xbd, + 0x28,0x4a,0x24,0x12,0x44,0xd5,0xad,0x2a,0x9a,0x45,0xbe,0x54,0x45,0xab,0x17,0x12,0xe9,0x64,0x5e,0x55, + 0x4b,0x65,0xaf,0x99,0x52,0xd2,0x68,0x59,0x21,0x54,0x8b,0x42,0x78,0x89,0xa6,0xf8,0x83,0x16,0xa9,0x6a, + 0xce,0x73,0x30,0x9c,0xbe,0x85,0xb2,0x42,0xf4,0x28,0x5a,0x67,0x6a,0x66,0x99,0x13,0x36,0xa2,0x4d,0x7b, + 0x55,0xb4,0x44,0xd2,0xe6,0xb3,0xaa,0x9c,0x23,0xaa,0xca,0xef,0x2b,0xda,0x82,0x33,0x65,0x5c,0x2b,0x67, + 0x4a,0xd8,0x22,0x82,0x89,0x7c,0x31,0x27,0x60,0x50,0x6e,0x4c,0xf0,0xc1,0xe4,0xd9,0x76,0x17,0xbb,0x70, + 0x6c,0x50,0x9a,0x7b,0xca,0x04,0xcc,0x23,0xb0,0x04,0xc7,0x8a,0x57,0x17,0x45,0x53,0x50,0x49,0x70,0xb8, + 0x45,0x16,0x9d,0xb7,0xed,0x32,0x7d,0xf0,0xe0,0xf2,0xf2,0x72,0x74,0xf9,0xc5,0xa8,0xaa,0xcf,0x1e,0x1c, + 0x7c,0xfd,0xf5,0xd7,0x0f,0xae,0xe6,0x45,0xf9,0x89,0x28,0xaa,0x62,0xe0,0x9c,0x8d,0xd2,0x8e,0x0b,0xca, + 0x57,0x80,0x32,0x29,0xcf,0xc9,0x36,0x44,0xcf,0x57,0x44,0xd8,0x97,0x43,0xdf,0x6f,0x69,0xd8,0xe4,0x3a, + 0xef,0x92,0xbf,0x2b,0x2b,0xd8,0xe4,0x98,0x2d,0xaa,0x1e,0xfc,0x46,0x08,0x64,0x02,0xc4,0xed,0x03,0x01, + 0xbb,0xa2,0xc8,0x6e,0x9a,0x0b,0x22,0x88,0x37,0x47,0xf0,0x70,0x7f,0x7f,0xff,0x01,0xe5,0x45,0xc4,0x37, + 0xb5,0xe7,0x43,0x25,0x68,0x8c,0xff,0x78,0x80,0x3b,0x52,0xf9,0xcf,0xeb,0x57,0xd4,0x6c,0x55,0x00,0x32, + 0xcf,0xdb,0xc5,0x5c,0x9d,0x54,0xb3,0x6b,0x05,0x6c,0xa8,0xce,0x69,0x29,0x14,0x86,0xa6,0x10,0xa1,0x5c, + 0xc9,0xae,0x6d,0x8b,0x96,0xfe,0xe6,0xb3,0x19,0xf6,0xa3,0xca,0xeb,0xb6,0x98,0xe2,0xbd,0xa1,0x3d,0x41, + 0x40,0x54,0xe1,0x16,0x4f,0x7c,0x87,0x9f,0x03,0x75,0xfe,0x50,0x9d,0x7f,0xa1,0xce,0xbf,0x54,0xe7,0x5f, + 0xa9,0xf3,0xbf,0xab,0xf3,0xb3,0xba,0x5a,0x2d,0x55,0x99,0x5f,0xd0,0xda,0xf1,0x18,0x09,0x10,0x2f,0xd4, + 0x8c,0xa0,0x72,0xae,0x66,0xad,0x22,0x3a,0x16,0x1e,0x36,0x48,0x67,0x83,0x54,0xad,0x96,0xc5,0x14,0x0e, + 0x37,0xea,0xbc,0x56,0xc5,0xe2,0x8c,0x3a,0x43,0x83,0xa2,0x43,0xac,0x9a,0xab,0x25,0x0c,0x1b,0xd5,0x6a, + 0xae,0x72,0x75,0x42,0xac,0xe4,0x49,0xad,0x4e,0x66,0x05,0xfd,0xaf,0x14,0x3d,0x4e,0x09,0x3c,0x39,0x0a, + 0x91,0xe2,0xcb,0xec,0x67,0xa7,0x74,0x46,0x2e,0x54,0xa1,0x3e,0x9d,0xcc,0xa8,0x82,0xfa,0x93,0xfa,0x5d, + 0xd5,0x4b,0x45,0xc0,0x5c,0xb7,0x53,0x55,0xaf,0x4e,0xae,0x89,0x92,0x6f,0xf2,0xc5,0x52,0x11,0x6c,0x13, + 0xe1,0xd5,0x2c,0x73,0x42,0x3d,0xb4,0xd7,0x88,0xe1,0x6c,0x56,0x27,0xf4,0x7f,0xc9,0xf7,0xda,0xaa,0x95, + 0x22,0xe4,0xa6,0x2e,0x4f,0x20,0x44,0x27,0x24,0x95,0xaf,0x66,0x45,0xa5,0xb0,0x1d,0xc0,0xc8,0x7e,0x52, + 0x8c,0x18,0xa8,0xa5,0x13,0x02,0x3b,0xf1,0x06,0x83,0x25,0x6a,0xbe,0x20,0x00,0x5d,0xd5,0xc4,0x83,0x4c, + 0xf3,0xf2,0x22,0xa7,0x96,0xa6,0x75,0xb1,0x6c,0xb1,0x29,0xe4,0x81,0x48,0x6e,0x18,0xba,0x29,0x3b,0xf6, + 0x29,0x0d,0x8f,0xfe,0xcb,0x64,0x19,0xc0,0xe6,0xb5,0x68,0x79,0x6d,0x5a,0x7a,0x38,0xa7,0x16,0x95,0x20, + 0x37,0x1e,0x22,0x4c,0x09,0x68,0xce,0xf4,0x7c,0x46,0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9f,0x50, + 0xed,0x73,0x7d,0x06,0x5a,0x60,0x81,0xcd,0x0c,0xd4,0x2a,0x55,0x1b,0x1c,0x5b,0xad,0x5a,0x94,0xb4,0x38, + 0xd6,0xe2,0x5c,0x87,0x8a,0x09,0x05,0xe4,0x05,0xb0,0x4e,0x91,0xcf,0xab,0x33,0xaa,0xa4,0x5c,0xf1,0x1f, + 0xa0,0x00,0x9a,0x9a,0x05,0x4d,0xe8,0xb5,0x32,0x18,0x50,0x69,0x11,0x3a,0x28,0xec,0xf7,0xea,0x52,0xd9, + 0xd0,0x59,0x8a,0x83,0x93,0xfd,0xbe,0xaa,0x80,0x46,0x4e,0x6b,0x50,0x7d,0x2d,0xa0,0x05,0x42,0x08,0x06, + 0x3d,0x02,0x58,0x95,0x97,0xc5,0x02,0x65,0xa7,0x45,0x3d,0xe5,0xf3,0xa1,0x58,0x2e,0x09,0x40,0xd5,0x74, + 0x55,0xd3,0x0e,0x07,0xe6,0x02,0xea,0x6b,0xa6,0xd4,0x08,0x65,0x11,0x80,0x4a,0x94,0x1f,0x1a,0x6e,0xd9, + 0xee,0x9d,0xe6,0x53,0x00,0x60,0xad,0x8b,0xb3,0x52,0x0e,0x41,0x75,0xa6,0xce,0xe6,0xd7,0xcb,0x73,0x82, + 0x9c,0xfc,0x4c,0x03,0x90,0x35,0x2f,0xbe,0x86,0x44,0xa1,0x21,0xa0,0x2e,0x1a,0xdc,0xb2,0xb6,0x27,0x85, + 0xb8,0x25,0xfa,0x43,0x15,0x12,0x42,0xaa,0xe6,0xd7,0x67,0x95,0xfc,0xf2,0x77,0x20,0x05,0x94,0xb8,0x52, + 0xab,0x86,0x43,0x6d,0xf0,0xfc,0xf0,0x1f,0xfe,0xb2,0x65,0x98,0x01,0x51,0x75,0x51,0xe8,0x4b,0x89,0x10, + 0xd5,0x0c,0xee,0xe5,0x4a,0x6c,0xf2,0x73,0xbe,0x3f,0x9c,0xc6,0x3a,0xc8,0x51,0xad,0x78,0x52,0xc4,0xbe, + 0x91,0x25,0x1e,0xec,0x70,0x76,0x59,0xd5,0x8c,0xfe,0x6a,0xea,0x85,0xa6,0x8d,0x80,0x4e,0xcc,0xd5,0xaa, + 0x46,0xf4,0xec,0x79,0xd1,0x0f,0x6d,0xd5,0x91,0x02,0x0d,0x5a,0xff,0xde,0x11,0x7e,0xcb,0x5d,0xa4,0x6c, + 0x0e,0x4c,0x8e,0x50,0x3e,0x29,0xd3,0x58,0x1b,0x43,0x5a,0x1d,0x18,0xd2,0xee,0xec,0xb8,0x78,0x69,0x61, + 0xb2,0xbb,0x78,0x10,0x56,0x31,0xdd,0x8b,0xe0,0x6d,0x0e,0x22,0x2e,0xd9,0xc7,0x84,0x2f,0x35,0xec,0x74, + 0xe3,0xcd,0x87,0x5e,0x9f,0xad,0x92,0x71,0xb0,0xd3,0x6f,0x3e,0xc4,0x45,0x81,0x10,0x94,0xda,0xd5,0xf3, + 0x91,0x66,0x0f,0x77,0x56,0xa6,0x03,0x8b,0xd0,0xab,0xc4,0x16,0x95,0x25,0xe1,0x24,0x13,0x37,0xe0,0x2f, + 0x7c,0x6c,0x4a,0xf2,0xb7,0x62,0xaf,0xfa,0x84,0x45,0xd4,0x1b,0x3e,0xe4,0xcc,0x07,0xba,0xec,0x58,0x2e, + 0x72,0x14,0x9b,0x7d,0x36,0x66,0xea,0x8d,0xd7,0x5e,0x96,0xce,0x79,0xb8,0x20,0x44,0xe1,0x6e,0xe3,0x72, + 0x36,0x5c,0x36,0xc8,0xe3,0xb2,0xfe,0xce,0xce,0xa1,0x21,0xb4,0xc1,0x9d,0x9e,0x74,0x50,0xd1,0xf0,0x3f, + 0xd0,0xb1,0x48,0xbb,0x61,0xb8,0x70,0x50,0x60,0x8d,0x8b,0xc9,0x38,0x60,0xd3,0x60,0x49,0x93,0xb9,0x86, + 0xfb,0x00,0x66,0xf5,0xff,0x6b,0xef,0xdd,0xf7,0xdb,0x36,0x92,0xfc,0xd1,0x57,0xa1,0x30,0x3a,0x32,0x10, + 0xb6,0x28,0xc9,0x4e,0x66,0x26,0xa0,0x61,0xae,0x63,0x3b,0x89,0x27,0x76,0x9c,0x8d,0x9d,0x2b,0xc5,0x68, + 0x21,0x12,0x94,0x60,0x53,0x00,0x07,0x00,0x25,0xdb,0x22,0x1f,0xe8,0xf7,0x1a,0xe7,0xc9,0x4e,0x7d,0xab, + 0xba,0x1b,0x0d,0x10,0xb4,0x9d,0xec,0x9e,0x3d,0xff,0x9c,0xe4,0x63,0x11,0x68,0xf4,0xbd,0xab,0xab,0xab, + 0xaa,0xeb,0xf2,0x48,0xf0,0xc2,0x56,0x77,0xab,0xfa,0x5b,0x24,0xb9,0x2d,0x84,0x74,0xcc,0x5b,0x03,0x80, + 0x78,0xde,0x10,0x14,0x87,0xce,0x40,0x59,0x81,0x56,0xed,0x3f,0x55,0x3c,0x03,0x9a,0x1e,0x6f,0xb7,0xcc, + 0x30,0x4a,0xd4,0x49,0x0d,0xb0,0xe2,0x59,0xf8,0x27,0xc8,0xd5,0xb0,0x6d,0xb9,0x78,0xd0,0xad,0xc1,0x6b, + 0x32,0x41,0xaf,0x3e,0xd5,0x6e,0x27,0x7c,0x8f,0xa8,0xe8,0x8d,0x42,0x64,0x97,0x59,0x0a,0x9f,0x64,0xc6, + 0xcf,0x98,0x51,0x90,0xb5,0x1e,0xc4,0xd8,0x4f,0x04,0x96,0xb4,0xf6,0x1c,0xe6,0x4d,0x88,0xd6,0xb2,0xe3, + 0x78,0x5f,0x99,0x5e,0xbf,0xaf,0x3a,0xdb,0x7f,0x8f,0xf6,0x97,0x29,0xda,0xbf,0xee,0xc6,0x1c,0x57,0xd4, + 0x85,0x79,0x4a,0x95,0x4e,0xd4,0x45,0x5d,0xf1,0xbf,0x6c,0xc5,0xff,0x22,0xea,0xe1,0x5d,0xfd,0xe1,0x57, + 0xfb,0xe1,0x57,0xfa,0x70,0x96,0x46,0x47,0xe3,0xd3,0x9b,0x60,0xd0,0x3f,0x3d,0x3c,0xdb,0x3f,0x9d,0x4c, + 0x8e,0xd4,0x39,0xe2,0x06,0x9c,0x11,0x8f,0x71,0xc3,0x0f,0x53,0x4f,0xbd,0xad,0x4b,0xd3,0x01,0xab,0x4b, + 0x03,0x8c,0xf6,0xeb,0x0f,0x97,0xf6,0xc3,0x25,0x7d,0x78,0x93,0x76,0x5a,0xf3,0x72,0xc0,0xba,0xa3,0xd0, + 0x1f,0xf4,0x83,0xa3,0x3a,0x1c,0x83,0x18,0x5b,0x1e,0x0d,0xfd,0xd1,0xde,0xf8,0x0f,0x7f,0xf2,0xd9,0x69, + 0x10,0x1c,0x5d,0x74,0x28,0xa5,0x89,0xbd,0x66,0x55,0xbb,0x71,0x95,0x82,0x50,0x26,0xb0,0x37,0xa2,0x50, + 0x8f,0x1e,0x23,0x76,0xab,0x0e,0xe6,0x33,0x89,0x8a,0x3a,0xf0,0x0f,0x03,0x51,0x02,0xcf,0x74,0x34,0xea, + 0x3f,0x0e,0x0f,0x8f,0xd4,0x4b,0x7a,0x38,0x2d,0x3f,0xdb,0x4b,0xaf,0x60,0x3f,0x1d,0x67,0xd5,0xfe,0x91, + 0x7a,0x98,0x76,0x69,0x3d,0x3c,0xd2,0xa1,0xeb,0x09,0x50,0x2a,0x89,0x39,0x08,0x18,0xb5,0xfc,0x56,0xe2, + 0x5a,0x6b,0xbc,0xd4,0x79,0xb3,0x9d,0x79,0xad,0xf7,0xbc,0x97,0x29,0x47,0x2a,0xf2,0x6c,0x07,0xbc,0x46, + 0x50,0x81,0x17,0xa9,0x2f,0xde,0xe9,0x9b,0x97,0xe5,0x59,0x43,0x07,0xa7,0xf3,0x86,0x57,0xda,0x05,0x87, + 0xcd,0xda,0x50,0x62,0x79,0xe5,0x24,0x12,0x3c,0xbd,0x02,0xec,0x4a,0xa8,0x44,0x02,0xcf,0xe7,0xf9,0x7b, + 0xe0,0xe7,0x12,0x2e,0xf4,0xda,0xab,0x47,0x1d,0xf8,0xae,0x88,0xbe,0x2b,0x3e,0xe2,0xbf,0x51,0xaa,0xb7, + 0xbe,0xf8,0xf6,0xd8,0xfe,0x1a,0x01,0x24,0xe0,0xa1,0x94,0x25,0xec,0xdf,0x15,0x56,0xe0,0xe6,0x5e,0x96, + 0x7d,0x82,0x6f,0x42,0xed,0xf1,0xe2,0x55,0xda,0xe1,0x56,0xf3,0x55,0x3a,0xce,0x26,0x7d,0x96,0x50,0x17, + 0xcd,0x56,0x0a,0xac,0xf8,0xeb,0x1a,0x4a,0x2f,0x2c,0x94,0x5e,0x10,0x94,0x3e,0x69,0x8f,0x53,0x5b,0x84, + 0x27,0x1c,0x0a,0x13,0xcc,0x6a,0x48,0xec,0xfa,0x21,0xbf,0x12,0x73,0x80,0x1f,0x1d,0xf9,0xb9,0x4e,0x3f, + 0xac,0x72,0xfd,0xc9,0x89,0x01,0xed,0x7c,0x16,0x89,0xab,0xa7,0xea,0x30,0xd2,0xfc,0x91,0x5f,0x75,0xaa, + 0x5b,0x27,0x27,0x70,0x9d,0xed,0xb8,0xd2,0xce,0x67,0x5d,0x27,0xc6,0xf6,0x2c,0x65,0x8f,0x62,0x88,0x08, + 0xfd,0x34,0xd5,0x71,0x2e,0xd9,0x73,0xac,0xa7,0xbe,0xa6,0x77,0x21,0xb0,0xf8,0xf5,0x71,0xeb,0xf3,0xf7, + 0x8d,0x77,0x3a,0x49,0x3c,0xf5,0x43,0xb3,0xc4,0x73,0xf7,0x15,0x19,0x86,0xcf,0x70,0x01,0x60,0xbd,0x35, + 0x68,0x37,0x66,0xe0,0x51,0x9d,0x6a,0x1c,0xf2,0xc0,0x66,0xb8,0x61,0x20,0x6b,0x65,0xf3,0xd1,0x23,0x27, + 0x52,0xa7,0xd3,0xaf,0x9b,0x56,0xea,0x93,0x0c,0x37,0x94,0xdb,0x0d,0xbb,0xbd,0xdb,0xdd,0x6e,0x33,0x97, + 0xff,0x83,0x6d,0xf6,0x61,0x73,0xac,0x37,0xcd,0x44,0x6e,0x54,0x64,0x34,0x3f,0x62,0x96,0x47,0xba,0x5a, + 0xb0,0xa9,0xb4,0xbb,0x6d,0xbe,0xaf,0x41,0xdc,0x7e,0xf0,0xe3,0x00,0xf2,0x22,0x5f,0x72,0x04,0x61,0xed, + 0x14,0xa1,0xf3,0x40,0xc5,0xbd,0xf9,0x57,0x40,0x4b,0xe7,0xbe,0x8d,0xde,0xb1,0x26,0x1e,0x25,0xf0,0xd5, + 0x7a,0x3f,0x38,0x52,0x3f,0x39,0xe8,0x69,0x2b,0xc0,0x83,0x50,0x79,0x8f,0x9c,0xb3,0x1e,0xb4,0x5d,0xc2, + 0x12,0xb1,0x47,0x0d,0xea,0x02,0x2a,0xae,0x4e,0x04,0x0d,0x8e,0x05,0x97,0x8a,0x89,0x9d,0x84,0xb4,0x69, + 0x78,0xa4,0x8a,0x95,0x6b,0x24,0xc6,0x39,0x8d,0xb2,0xa5,0x9c,0xaf,0x2c,0x5a,0x47,0x44,0x68,0x6d,0xe4, + 0xd4,0x19,0x05,0x38,0x80,0x2f,0x21,0x7b,0x55,0xa2,0x8b,0x44,0xf1,0x00,0xfa,0x5a,0xf4,0x4d,0x5e,0x20, + 0x07,0x46,0x46,0x1c,0xbb,0x27,0xdc,0x90,0xea,0xae,0xcc,0xc6,0xf0,0x40,0x8f,0x08,0x3f,0xf8,0xab,0xa0, + 0xa1,0xd7,0x68,0x22,0x60,0x38,0x3a,0x3c,0xd5,0x30,0xee,0x30,0xc5,0x91,0x28,0xd7,0x1d,0x5f,0xcc,0xad, + 0x79,0xe2,0xe7,0xf4,0x19,0xc3,0xe4,0x5e,0xe6,0x91,0x1b,0x32,0x56,0xeb,0x2d,0x49,0x2c,0x96,0xfd,0x81, + 0x21,0x01,0x0c,0x9a,0xea,0xf7,0xf3,0xa0,0x4e,0x45,0x14,0x96,0x65,0x4a,0x93,0x3c,0xd4,0x46,0x07,0xb1, + 0xd1,0x10,0x9a,0x42,0x43,0x05,0x97,0xc7,0xd4,0xe7,0x8d,0x9d,0x63,0xb5,0x27,0xa1,0x13,0xe4,0xcd,0x4c, + 0xae,0x4c,0xb9,0x9a,0x3b,0xde,0xb5,0xd5,0xa5,0x38,0x26,0xa6,0xb5,0xbe,0x0c,0x46,0x3e,0xd7,0x04,0xe9, + 0x7b,0x39,0x7a,0xb4,0x45,0x36,0x23,0x59,0x5d,0x06,0x61,0xeb,0x8b,0x7f,0x09,0xe9,0xf8,0x0c,0xb2,0xd8, + 0x05,0x35,0x39,0xc7,0xa4,0x26,0x3c,0xa9,0x4b,0x99,0xe1,0x29,0x3c,0xbd,0x70,0x17,0xa9,0x2b,0x61,0xe6, + 0x3b,0x3e,0xa1,0x6d,0x93,0x8f,0xda,0x24,0xb2,0xf8,0x73,0x6e,0x95,0x6d,0x65,0xae,0x89,0xf1,0xae,0xdc, + 0x8e,0x47,0xe1,0x52,0x54,0xf7,0x12,0x63,0x2c,0xa5,0x43,0xd3,0x0b,0x94,0x8a,0xd0,0x17,0xb3,0x6a,0xae, + 0x54,0x54,0x67,0xb6,0xce,0x54,0xa3,0xd6,0xa0,0xe7,0x6d,0x1b,0x14,0xa0,0x1c,0x34,0x67,0x5f,0x52,0x4b, + 0xd1,0x92,0x9b,0xb1,0x33,0x27,0x26,0x22,0x03,0x65,0x4d,0x48,0xdc,0x58,0x25,0x5a,0xef,0x15,0xdd,0x45, + 0xdf,0x38,0xd4,0x7c,0xe1,0x6c,0x4d,0x91,0x32,0x3f,0x6a,0xf2,0x08,0x52,0x86,0xd6,0xc6,0x25,0xef,0x2b, + 0x0e,0xc8,0x6a,0x6b,0x5e,0x38,0x74,0xc9,0x56,0x8c,0xbd,0x76,0xec,0x0a,0x0b,0x87,0x69,0x10,0xfb,0xac, + 0x71,0x9c,0xe9,0xb9,0xe5,0x2b,0x27,0xe8,0x1b,0x32,0x71,0x50,0x98,0xd9,0x47,0x97,0x1a,0x8d,0x73,0xe6, + 0xad,0xb5,0xd2,0x6e,0x6c,0x2a,0xe3,0xb0,0xdb,0x71,0x89,0x6d,0x7c,0x64,0x0c,0xbb,0x0c,0xdf,0x82,0xaa, + 0x73,0x7e,0x65,0xab,0xd5,0x26,0xb7,0x12,0xff,0xca,0x71,0x7a,0x2d,0x4b,0xdf,0xb4,0x60,0xdb,0xd7,0x9d, + 0xaa,0x07,0x59,0x04,0x26,0x8d,0xa8,0x1c,0x6c,0x35,0x46,0x7f,0x37,0xc6,0xc0,0x57,0x63,0x1a,0x5a,0x8b, + 0x1b,0x9d,0x8d,0xde,0xcc,0xa3,0x64,0x57,0xf8,0x96,0x1a,0x88,0xea,0x5a,0xd8,0x99,0xc5,0xb4,0x82,0xc2, + 0xa0,0x0d,0x6e,0xdd,0x09,0x06,0xc1,0xa3,0x26,0xf3,0xa2,0xe7,0x1a,0x64,0x9e,0x4c,0x74,0x3d,0x04,0x8e, + 0x26,0x84,0xf2,0xb5,0x85,0x25,0xf0,0x0b,0x5b,0x29,0xd9,0x6b,0x8a,0x52,0xd7,0x8b,0x65,0xd9,0x55,0xb1, + 0xaa,0x23,0x0f,0x01,0xd9,0x47,0x37,0x08,0xf0,0x99,0xb1,0x43,0x73,0x5d,0xb1,0x79,0xb5,0x2e,0x12,0xff, + 0x5a,0x43,0x8e,0x73,0x6f,0xd7,0xbf,0xa3,0x5e,0xee,0xe2,0x7e,0x94,0xf2,0x1a,0xc4,0x3e,0x47,0xcb,0xc9, + 0x55,0x33,0x88,0xd1,0xb5,0x9d,0x38,0x14,0x6b,0x9c,0x1c,0xa9,0x00,0x2e,0xfa,0x94,0xd6,0xe7,0x01,0x3a, + 0xa8,0x99,0x22,0x0c,0xa8,0x76,0x7c,0xb6,0x6f,0x92,0xeb,0x95,0xcf,0x02,0x9b,0xc8,0x91,0x82,0x83,0x7a, + 0x71,0xea,0x00,0xf1,0x3a,0xc4,0x0f,0xfb,0xff,0x6f,0xdb,0x3e,0xa2,0xe3,0xb8,0x87,0x76,0x4d,0x1f,0xeb, + 0xbe,0x5f,0x35,0x4f,0x94,0x7a,0xac,0xd6,0xe6,0xa0,0x20,0x2a,0x5b,0x3c,0x77,0xd1,0x0f,0x43,0xef,0xc8, + 0xbf,0xc0,0x15,0xdd,0x35,0xce,0xc5,0x10,0xd1,0x8e,0xa0,0x1b,0xe4,0xe2,0xb3,0x0b,0xab,0x8a,0x8c,0x23, + 0x7a,0xbd,0x36,0x88,0x2d,0xb0,0xe1,0x8a,0xa2,0x7d,0x7d,0x6a,0xdb,0x50,0xb4,0x43,0x3d,0x4f,0xc1,0xc8, + 0xb1,0xa2,0xed,0x47,0x69,0x98,0x7d,0x48,0x31,0x98,0xc8,0xa6,0xc3,0x43,0xa7,0x00,0xae,0xc9,0x2a,0xeb, + 0x2c,0xc5,0xf9,0x10,0xd1,0xa2,0x6e,0x7c,0x73,0x12,0xd1,0x66,0x28,0xba,0xb6,0x2b,0xaf,0x0e,0x80,0x4e, + 0x2b,0x42,0xf0,0xab,0x39,0x21,0x2f,0x10,0x3b,0x23,0x50,0x66,0x8b,0x36,0xfa,0xaf,0xb7,0xa8,0xa4,0x61, + 0x8b,0x72,0x4c,0x32,0x69,0xc5,0xdd,0xa1,0x89,0x0e,0xdb,0x8b,0x6c,0x81,0x09,0x57,0x05,0xb5,0x6f,0xde, + 0x42,0xb9,0x74,0xd0,0x59,0x1e,0xa8,0x39,0x83,0x7c,0x29,0x25,0x3a,0x17,0xc1,0x7a,0x6a,0xa2,0x72,0xa6, + 0x8c,0xd3,0x0b,0xfc,0x65,0x9d,0x17,0xc4,0x7d,0xdd,0xf2,0x7e,0x19,0xd0,0x3e,0x4c,0x1b,0xfe,0x33,0x8d, + 0x8f,0xab,0x59,0x30,0x3a,0xf7,0x0b,0x99,0x0f,0x44,0x26,0x4e,0x3b,0x7d,0x67,0x1e,0x5b,0xe6,0x8f,0xa8, + 0x32,0xeb,0xdf,0x93,0x81,0xb6,0x70,0x5f,0x53,0x76,0x31,0x1a,0x49,0xd8,0x30,0x1c,0x58,0x9c,0x5b,0xbc, + 0x7a,0x12,0x00,0xc8,0xeb,0x0b,0x26,0x6f,0x82,0xb4,0x43,0xd7,0xa5,0xe8,0x32,0x25,0xb6,0xc1,0x8e,0xd5, + 0x82,0x46,0xcb,0x9b,0x2a,0xf1,0x17,0x3c,0x8b,0xab,0x68,0x51,0x4f,0xe9,0x2a,0x5a,0x59,0x67,0x01,0x94, + 0xb0,0xc2,0x9c,0x09,0x81,0xbb,0x8c,0x8a,0x9a,0x94,0x98,0x39,0xb6,0xa4,0xb2,0x89,0x50,0xd7,0x1c,0x7b, + 0x94,0x61,0x7f,0x45,0x0b,0xbb,0xa2,0x85,0x15,0x4e,0xaa,0x5e,0xd8,0x55,0x60,0xd2,0xc6,0xab,0x89,0xd4, + 0xdd,0xd1,0x01,0xc9,0x61,0x9b,0xdf,0x54,0x7e,0x2a,0x47,0xc8,0x88,0x10,0x30,0xe7,0xa2,0x19,0x5f,0xd2, + 0x02,0xba,0x77,0xe5,0xc6,0x8f,0x6c,0x59,0x9f,0x00,0x53,0x45,0xc3,0x25,0x1a,0xe8,0x58,0x2d,0xe9,0xdf, + 0x2c,0xaa,0x5d,0xb5,0xa8,0xeb,0x08,0x12,0x00,0x75,0x41,0x3f,0xb3,0x89,0x3a,0xb3,0xaa,0xdb,0xf4,0xe9, + 0x3c,0x4a,0xf1,0xe9,0x86,0x7e,0xce,0x26,0xea,0x6d,0xb4,0x57,0x0e,0xe7,0xf7,0xd1,0xd4,0xf2,0x7e,0x74, + 0x46,0x67,0x93,0x7f,0x1d,0x8c,0x50,0xbc,0xdf,0x9f,0x4f,0x42,0x78,0x2d,0x1b,0xa1,0x96,0xc3,0xc3,0xd9, + 0x24,0xfc,0x99,0x3e,0xaa,0x73,0xda,0xd4,0xef,0xf0,0x0b,0xe2,0xcc,0x64,0xe4,0x5a,0xfb,0xfd,0xe5,0x24, + 0x40,0xa6,0x0b,0x75,0xc3,0x99,0xe8,0x17,0x99,0x4c,0x79,0x6e,0xf3,0xf0,0xf0,0x4c,0x32,0x5d,0xeb,0x4c, + 0xd7,0x92,0xe9,0xed,0x16,0x1d,0x90,0xa9,0x6b,0x7d,0xee,0x3a,0xa2,0x38,0xff,0x42,0x50,0x48,0xdd,0x72, + 0xa3,0xd2,0x0b,0xdd,0xbd,0x0b,0xe9,0x5e,0x57,0xa5,0x5c,0x81,0x54,0xed,0x74,0xad,0xee,0xbf,0x5f,0x89, + 0xb3,0x8b,0x69,0xf4,0x6d,0x45,0xeb,0x33,0x57,0x33,0x98,0xca,0xfb,0x20,0xe8,0xcf,0x39,0x86,0xe9,0x68, + 0x3a,0xe6,0x87,0x49,0x87,0xf3,0x8f,0x3a,0x2e,0xe1,0x9c,0x68,0xe1,0x94,0xa3,0x10,0x5a,0xf4,0x98,0x4f, + 0x0c,0x8f,0x70,0x70,0xf0,0x33,0x84,0x5a,0xb1,0xa5,0xe0,0x73,0xa2,0x71,0xcf,0xa9,0x8a,0x63,0xb4,0x36, + 0x8a,0xe9,0x39,0x57,0x7a,0xfc,0x3c,0xae,0x05,0xf5,0x73,0x35,0xd1,0x83,0x5b,0xc8,0xe0,0x90,0x62,0x3c, + 0xda,0x76,0x0d,0x74,0xe1,0x0c,0x34,0x08,0x9b,0x75,0xd6,0xe3,0x1d,0xce,0x1f,0xcc,0xa0,0x44,0x4f,0x43, + 0x24,0x80,0xe8,0x9f,0x4c,0x02,0x89,0xce,0x28,0x2f,0x7a,0xd3,0x2f,0xd5,0x19,0x36,0xfe,0xf2,0xc1,0xd9, + 0xc1,0xc1,0x95,0x7f,0xac,0x64,0x5a,0x36,0xfe,0x94,0xc3,0x65,0x03,0x28,0x43,0x06,0x5a,0x50,0x78,0x35, + 0x09,0xd5,0x14,0x87,0x52,0x66,0x9c,0xd3,0x97,0xf4,0xcb,0x64,0xd7,0x0c,0x83,0xad,0xc1,0x12,0x44,0x31, + 0xc0,0x7f,0x84,0xfa,0x97,0xf4,0x6d,0x59,0x87,0x41,0x0c,0x3f,0x5a,0x6d,0x28,0xdf,0xf7,0x38,0x6a,0x0d, + 0x9f,0xed,0x1d,0xf9,0xf4,0x2e,0x53,0xbb,0x31,0x43,0x5e,0x56,0x4d,0xd4,0xb0,0x71,0x8e,0xaa,0x33,0xe1, + 0x42,0x18,0xbd,0x82,0xf1,0x44,0x29,0x1b,0x8c,0x3a,0x30,0x4f,0x5d,0x94,0x75,0xd1,0x24,0x7b,0x84,0x51, + 0x2a,0x5c,0xfe,0xa8,0x20,0xe0,0xa8,0xb1,0xbf,0x5e,0x49,0xbf,0x60,0x7f,0xaa,0xb6,0x03,0xe7,0x2d,0xc6, + 0x53,0x4d,0x11,0xb3,0x29,0xbe,0x50,0x2b,0xed,0xee,0x83,0x70,0x41,0xd1,0x8c,0x36,0x14,0xe5,0xeb,0x35, + 0xa2,0xbb,0x03,0xe9,0xa9,0x42,0x48,0x7b,0x25,0x08,0xd9,0xf0,0x2d,0x72,0x70,0xb9,0x78,0xdf,0x42,0x65, + 0xd7,0x31,0x01,0xf5,0x6a,0xc2,0xf5,0x0c,0xc8,0x2b,0x7d,0xd4,0xd3,0xd4,0x75,0x33,0xb0,0x85,0x58,0x12, + 0x52,0x62,0x07,0xd6,0x0e,0x1c,0xfe,0x15,0xf3,0x6a,0xab,0x9d,0x06,0x9a,0x20,0x98,0x07,0x01,0x73,0xe2, + 0x97,0x71,0xc9,0x84,0x38,0xa8,0xee,0xd2,0xe7,0x44,0x6e,0xd5,0x36,0x68,0xe2,0xc6,0x39,0x3d,0xd0,0x51, + 0x51,0xa4,0xaa,0x98,0x29,0xbf,0x3a,0xd1,0x06,0xe1,0xe0,0x83,0xc3,0xac,0x0b,0xab,0x8e,0x83,0x8b,0x9c, + 0xa7,0x45,0x59,0x71,0x8b,0x84,0x66,0x8e,0x87,0xd7,0xf7,0xe7,0x66,0xad,0xae,0x8d,0x83,0xbb,0xcb,0xf5, + 0x7a,0xef,0x9c,0xf8,0xc5,0xf9,0xf8,0x7a,0xa2,0x39,0x53,0x98,0xa5,0x6b,0x56,0xf6,0x32,0xba,0x6c,0xdc, + 0x1f,0xa0,0xc4,0x6c,0xbd,0xbe,0x6c,0x36,0x4c,0x5c,0x0c,0x36,0x52,0x1a,0x98,0xd9,0x94,0x75,0xbd,0x72, + 0x5d,0xad,0x5c,0x40,0x9a,0xb7,0xc2,0x88,0xf7,0x5e,0x12,0x2e,0x0e,0x6e,0xaf,0xd0,0xc9,0xa5,0x9c,0x2d, + 0xd2,0xd8,0xde,0x15,0x16,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x3f,0x1a,0x67,0x93,0x02,0x90,0x7b,0x1c,0xde, + 0x8b,0x37,0x86,0x26,0xb0,0xf4,0xbb,0xb9,0xf6,0xda,0x93,0x60,0x31,0x37,0xea,0xad,0xda,0x87,0x90,0xfa, + 0x0d,0x22,0xcd,0xe7,0xb3,0xd5,0x22,0x29,0xd5,0x23,0x7a,0x06,0x8d,0xf3,0x42,0x6b,0x7f,0xdd,0xd0,0x9c, + 0xdc,0xdc,0x9f,0xa5,0x35,0x00,0xdf,0x30,0x59,0xb9,0x3f,0x9e,0xa5,0xe3,0x9b,0x09,0xac,0xbd,0xe8,0x5c, + 0x39,0x1e,0xbe,0xbd,0xff,0xa6,0xce,0xf2,0x96,0xc8,0x8b,0x37,0xe3,0xb7,0x13,0x9d,0x87,0x56,0xca,0x64, + 0x17,0xfe,0xc2,0xfd,0xc6,0x07,0xf2,0x4b,0xd6,0x1b,0xc1,0xbd,0x9a,0x68,0xcd,0xe8,0x50,0x62,0x8f,0x9c, + 0xe7,0x97,0x2c,0x6c,0x25,0x54,0xdc,0xe1,0xa4,0x50,0x9f,0x96,0x8a,0x0e,0x49,0x6d,0x64,0xc1,0xa7,0xb7, + 0x78,0x89,0x41,0xe8,0x10,0x18,0x67,0x03,0xba,0x60,0xce,0xb9,0x60,0xff,0x21,0x3e,0x10,0x1d,0xf2,0xd7, + 0xf4,0xc4,0x2c,0xc2,0xe6,0xc0,0xe0,0x5f,0xb1,0xef,0x27,0x5e,0x48,0xc6,0xde,0x58,0x80,0x40,0x68,0xae, + 0xa5,0xd2,0x41,0xd1,0xd1,0xce,0x8c,0x5b,0x93,0x78,0x6a,0xa6,0x1c,0x94,0xdc,0x09,0x86,0x6b,0x7e,0xe2, + 0x21,0xeb,0x67,0x19,0xea,0xae,0x91,0x0e,0x0b,0x6e,0xf8,0xf8,0xf4,0x73,0xca,0x72,0x2e,0xf5,0xdb,0x8d, + 0x72,0xc6,0x5d,0xc4,0xf7,0x62,0xf8,0x22,0x82,0x32,0xbf,0xbe,0x8e,0x79,0x64,0x2e,0xa1,0xfc,0x17,0xad, + 0x28,0x34,0x72,0x4d,0xa3,0x25,0x87,0xea,0x85,0xd8,0xbf,0x5d,0x0a,0x31,0x48,0xc7,0x5f,0x43,0x50,0x76, + 0xc9,0x03,0x94,0x79,0xb8,0x1c,0x9c,0x89,0xc0,0xf6,0x5c,0xce,0x83,0x8b,0xd6,0x39,0x7c,0x09,0xd5,0x5f, + 0x22,0x5c,0x0c,0xfe,0x33,0x00,0x7b,0x13,0x99,0x34,0x82,0x01,0x50,0x4c,0xc3,0x9b,0x61,0x7d,0x2e,0xbe, + 0x21,0xb0,0x78,0xd3,0xc5,0xbb,0xbc,0x71,0x78,0x97,0x37,0x13,0xff,0x86,0x7b,0x72,0x23,0x8e,0xef,0xb9, + 0xab,0x6f,0xeb,0x4a,0x5e,0x52,0x25,0x2f,0x3b,0x38,0xdf,0x97,0x35,0xe7,0xfb,0x92,0x39,0xdf,0x1b,0x81, + 0xa4,0x87,0xd1,0xcd,0x16,0x6e,0xe5,0x1b,0x85,0x01,0xeb,0x08,0xd7,0x26,0x0f,0xaf,0xa2,0x93,0xe1,0xab, + 0xfb,0x0f,0x89,0x45,0xb4,0xf6,0x2a,0xaf,0xe0,0xfe,0x19,0x09,0xe3,0x57,0x13,0x43,0x7b,0xff,0x54,0xa1, + 0x7f,0x37,0x54,0xab,0x0e,0x75,0x9b,0x80,0x4a,0xc2,0xb9,0x05,0x96,0xef,0x58,0x1d,0xeb,0x03,0x8b,0xf8, + 0x1f,0xb8,0x04,0x2e,0x6a,0x6b,0x31,0x59,0x3f,0x84,0x95,0xc1,0x98,0x78,0x29,0x5e,0x80,0xf4,0xb7,0xf9, + 0xfc,0x5b,0xbd,0xd1,0x42,0xa8,0x7d,0xc8,0xfe,0x0b,0xc7,0x17,0xa9,0x7a,0x97,0xaa,0xb7,0xa9,0xda,0x4f, + 0xd5,0xeb,0x54,0x3d,0xcd,0x46,0x46,0x9a,0xff,0x2c,0x51,0x46,0xb0,0x86,0x67,0x81,0xa7,0xd6,0xf5,0xdf, + 0x9e,0xc4,0xf5,0x12,0x2b,0x8b,0xcb,0xfc,0x66,0xf4,0x22,0x91,0xe8,0x66,0x30,0x50,0xda,0x84,0xb7,0x9b, + 0x89,0x71,0xac,0x7c,0x95,0xc2,0x8b,0xf9,0xf3,0xec,0xe0,0xc0,0x5e,0x72,0x6c,0x87,0x17,0x91,0xfb,0x71, + 0xaa,0x7d,0x7a,0x19,0x67,0x17,0x89,0xe7,0x9a,0xa7,0x8a,0x26,0x7e,0x5d,0x98,0xa5,0xf4,0x5a,0xb8,0x36, + 0x64,0x55,0xdf,0x6b,0x1d,0x15,0xf1,0x47,0xf4,0x41,0xeb,0x9b,0x19,0xd7,0xe9,0x3f,0xa7,0x70,0xaa,0x86, + 0xd5,0x49,0x66,0xad,0x0b,0x51,0x08,0x91,0xcc,0xcd,0xbc,0x0d,0xeb,0x28,0x3c,0xc9,0xc1,0xc1,0x1e,0xff, + 0x12,0x23,0xa6,0xd5,0x2c,0x47,0xdf,0xc1,0xd1,0x91,0x3d,0xcc,0x1b,0x3d,0xfc,0xd9,0x61,0x29,0xc4,0xa8, + 0x6b,0xa6,0x45,0x49,0x9b,0x20,0x7c,0x9a,0xc8,0xb3,0xeb,0xed,0xc9,0xd6,0x4a,0xf8,0x02,0x81,0xd7,0x8c, + 0xfd,0x89,0x51,0xfa,0xfc,0x3e,0x81,0x0c,0xcc,0x33,0x9a,0x23,0xb6,0x77,0x74,0xee,0xa6,0xbe,0xc4,0x8e, + 0x0b,0x02,0xed,0xc9,0xeb,0xb9,0x89,0x1c,0x1b,0x25,0x75,0x14,0x59,0xe5,0x3c,0xb3,0x5f,0x47,0x56,0x2d, + 0xde,0x9e,0x77,0x33,0xdd,0xcf,0x93,0x40,0x7d,0x95,0xed,0xca,0x84,0xb1,0x89,0x54,0x96,0x50,0x24,0xbc, + 0xf4,0xff,0xc0,0x3a,0xf2,0x1f,0xcc,0xc9,0x37,0x1f,0xcf,0xa1,0xcb,0xff,0x9c,0x7d,0x81,0xeb,0x45,0x02, + 0x1e,0xc2,0x9d,0x70,0x7b,0xbe,0xb6,0xee,0xaa,0x39,0x68,0x7b,0x73,0x6d,0x82,0xdb,0xad,0xb9,0x1c,0x9a, + 0x3b,0x4b,0x3b,0xa3,0xa2,0x4d,0xfd,0xf1,0xf9,0x1d,0xa6,0xed,0x18,0x80,0xb5,0x6a,0xc4,0x1e,0x54,0xcb, + 0xd9,0x89,0xe5,0x46,0x66,0xd9,0xa8,0x57,0x8c,0x12,0x31,0x9f,0xde,0x19,0x3e,0xf0,0x31,0x3a,0x08,0x80, + 0x0f,0x75,0x4e,0xbe,0x1c,0x27,0x1a,0xe7,0x67,0xbc,0x1c,0x1c,0xd0,0x77,0xfd,0x01,0x98,0xde,0x40,0xac, + 0x5e,0x05,0xf6,0xd4,0xf8,0x2d,0xc1,0xab,0x04,0xf6,0xfc,0x39,0x55,0xd8,0x59,0xa1,0xa8,0xc5,0xb6,0xe7, + 0x47,0xfb,0x12,0x30,0x95,0x21,0x16,0xe0,0x57,0x10,0x5f,0x04,0x5a,0xb5,0x44,0x5c,0xa8,0x38,0x02,0x75, + 0x0e,0x50,0x7f,0x46,0x33,0x53,0xa4,0x17,0xf0,0x04,0xfb,0x38,0x2d,0xa1,0x1c,0x19,0x79,0x19,0xad,0x83, + 0xd6,0xb9,0xe3,0x3b,0xd5,0x99,0x7c,0x40,0xb8,0xf8,0x56,0x12,0x9c,0x3f,0xa4,0x23,0x3f,0xab,0xb7,0x3d, + 0x8e,0xb8,0x57,0xe0,0x0b,0x5c,0xeb,0xa1,0x66,0xa1,0x28,0xdf,0xc0,0x3b,0x7f,0x2b,0xb1,0x18,0xe5,0xa1, + 0xb4,0xdc,0xa9,0x5f,0xb0,0x35,0xc2,0x61,0xd1,0x9a,0x49,0xff,0xa3,0x03,0xde,0xea,0x68,0x31,0xfa,0x58, + 0x57,0xbb,0x26,0x88,0xd6,0xf2,0xc5,0x47,0x8a,0xe9,0x81,0x74,0x0e,0xb3,0xab,0x4a,0x3d,0x72,0xa8,0x56, + 0x64,0x1d,0x8b,0xab,0x19,0x02,0xde,0x8d,0x1f,0xef,0x1f,0x43,0xcd,0x7b,0x82,0x1a,0x36,0x0c,0xd3,0xd6, + 0x5d,0x10,0x34,0xc7,0x45,0xf8,0x55,0x9e,0xc3,0x19,0xae,0x9a,0x96,0xa5,0x7d,0x06,0x70,0x99,0x6c,0x40, + 0x24,0xe6,0xd9,0xb9,0x9d,0xd5,0x29,0xce,0xdd,0xaa,0x9b,0xc7,0xdc,0xab,0xba,0xb9,0x5a,0x69,0x5b,0x17, + 0xb7,0x6e,0xde,0x8e,0x74,0xe9,0x6e,0x47,0xd2,0xce,0xbc,0xad,0x06,0x67,0xab,0x82,0xef,0x05,0xc3,0xb1, + 0xd8,0xb5,0x29,0x9d,0x2e,0x8a,0x1d,0x93,0x8d,0xfa,0xc5,0x4c,0x50,0xe3,0xb2,0x56,0xac,0xe5,0xde,0xa7, + 0x0d,0x13,0xba,0xb6,0x2d,0x58,0xdb,0x78,0xbc,0xc3,0x26,0x4c,0x7b,0xce,0x62,0xc1,0xaa,0xdc,0xd2,0x77, + 0x07,0xf7,0x63,0x14,0xfe,0x1b,0x24,0x84,0x04,0xb6,0x6e,0xcc,0x56,0x6d,0x22,0x86,0xb5,0x81,0xda,0x81, + 0x8e,0xdf,0xea,0xd6,0x21,0x82,0xff,0xc8,0x70,0x84,0xc3,0xa0,0x76,0x5f,0xe9,0x5c,0x9a,0x59,0xba,0xdb, + 0xb5,0x1d,0xad,0x05,0x02,0xda,0x7e,0xec,0xa7,0x04,0x9e,0x79,0xd8,0xdb,0x40,0xfd,0xc9,0x78,0x59,0x65, + 0x0a,0x8d,0xe6,0xce,0x7c,0xf9,0x16,0x28,0x2a,0x37,0x11,0x60,0xbd,0xb3,0xb3,0xba,0xb9,0x43,0xaf,0x6f, + 0xdd,0xca,0xf5,0xbd,0x43,0x6f,0x18,0xb3,0x18,0x4e,0x94,0x6c,0xf9,0x79,0x14,0x3b,0x01,0x4e,0xcb,0x3e, + 0x0e,0x08,0x3c,0x7a,0x61,0xd9,0x67,0x59,0x6e,0x58,0xf8,0xb1,0xc8,0x3f,0x70,0x01,0xad,0xef,0x3e,0x24, + 0xc5,0x1a,0x14,0x95,0xc1,0x88,0x53,0xb8,0x0c,0x7e,0xf9,0xaf,0x84,0xcd,0x88,0x7c,0xb9,0x40,0x84,0x7d, + 0xe5,0x40,0x3b,0x9a,0xa1,0xa9,0xad,0xbb,0x18,0xfd,0x9c,0x68,0xcb,0xa2,0x55,0xc3,0xd8,0x7d,0x81,0x49, + 0x58,0x09,0x69,0x2a,0xb3,0x58,0x87,0x9d,0xc7,0x75,0x6a,0x2b,0x69,0x17,0xc2,0xf7,0x80,0x5b,0x04,0x79, + 0x02,0xba,0xf8,0xb8,0x88,0x1b,0x58,0x27,0x50,0x44,0x98,0x2c,0x34,0x8e,0xf2,0x2f,0xa3,0x58,0x5d,0x45, + 0x0b,0x75,0x85,0x21,0x10,0x46,0xbb,0xc4,0xef,0x7a,0x7d,0x85,0xb9,0xe0,0x57,0xa1,0xef,0xf6,0x7e,0x63, + 0x69,0x82,0xbf,0xb7,0xe8,0xf2,0xf9,0xda,0x95,0x6a,0x5c,0x7a,0xd6,0x2c,0xb8,0x00,0xd6,0x3c,0x5a,0xb4, + 0x81,0x44,0x0c,0x46,0xa6,0x3c,0x76,0x2f,0x5f,0x55,0x87,0x29,0x6b,0xee,0xa7,0x4d,0xe7,0x0d,0x1a,0x0a, + 0x80,0x37,0xbf,0xf3,0xe7,0xca,0x8b,0xe7,0x04,0xd5,0xcf,0x44,0xbd,0xc2,0x41,0x85,0x89,0x93,0x13,0xf1, + 0xd2,0x9b,0x7e,0x2c,0x37,0x81,0x32,0xe0,0x83,0xc6,0xd2,0xec,0x30,0x17,0x53,0x00,0x11,0x78,0xfc,0xe6, + 0xd7,0xc2,0xaa,0x95,0x08,0x4c,0x55,0xc3,0xa3,0xf0,0x12,0x3e,0xd8,0xbf,0x83,0x34,0x86,0x9b,0x7f,0x22, + 0x1a,0x23,0xb3,0x40,0x71,0x9a,0x60,0x2c,0x8c,0x1e,0x06,0x69,0x3a,0x7d,0x0e,0x8d,0x30,0x42,0x8b,0xed, + 0xae,0xd2,0x92,0x2d,0xa3,0x6a,0x53,0x93,0xcd,0xb9,0x30,0x2d,0xea,0x8a,0xd0,0xe7,0xbf,0x53,0x4c,0x0a, + 0xe0,0x51,0xe3,0x0d,0xbe,0xd0,0x77,0x10,0x0c,0x30,0x6c,0x30,0x14,0x93,0xbe,0xde,0xbf,0x99,0x8b,0x15, + 0x63,0xcc,0x7f,0x11,0x5e,0xa9,0x15,0x2a,0xc2,0x5f,0x52,0x55,0xbf,0x7d,0x03,0xe5,0xe0,0xf0,0x56,0x90, + 0xcc,0xbf,0xd3,0x2e,0xc4,0xd2,0xb2,0x6c,0x67,0xfc,0xe0,0x1a,0x89,0xc8,0xd2,0x49,0xa0,0xdc,0x65,0x9c, + 0x21,0x08,0x6e,0xb7,0x3b,0x24,0x2e,0xb4,0x2c,0x92,0x6b,0xeb,0xb8,0x50,0x8c,0x44,0x8d,0xf0,0x39,0xed, + 0x42,0x5b,0xec,0x51,0x35,0x6f,0xe6,0x04,0x9f,0x1d,0xd7,0xbb,0xa6,0x24,0xb6,0xa8,0xbc,0x6f,0xb9,0xf2, + 0xd2,0x88,0x1e,0xa7,0x51,0x3a,0x2e,0x27,0xc3,0xa9,0xc4,0x8f,0x46,0x2f,0xf6,0xa2,0xa9,0x08,0xdf,0xc1, + 0x19,0xe8,0x9d,0x3c,0x6d,0xee,0x64,0x42,0x1e,0xd7,0xb8,0x11,0xf1,0x00,0xdb,0xb9,0xb5,0x16,0xcd,0xc6, + 0x9c,0x6f,0x12,0x4d,0x15,0x95,0xd0,0xdb,0x79,0xda,0xbd,0x9d,0xe3,0x00,0x72,0x0f,0xc7,0x9b,0xf8,0x0a, + 0x1d,0x5e,0xe0,0xcf,0x9c,0xba,0x3a,0xaf,0x25,0x60,0x73,0xd3,0xd5,0x65,0x54,0x8c,0xe7,0x93,0xe1,0x72, + 0x6b,0x1f,0xc4,0x4a,0xa7,0x11,0xcd,0x1a,0x2d,0x99,0xdc,0xbf,0x48,0xaa,0xaf,0xf2,0x15,0x8b,0xd9,0x1e, + 0x2d,0x52,0x02,0xb0,0x1f,0x69,0xae,0xe1,0x87,0x7d,0xbc,0xe4,0x2e,0x8e,0x56,0xd2,0xeb,0x65,0x10,0x2e, + 0xcc,0xd3,0x46,0x5b,0xe0,0x2e,0x09,0x3b,0xfb,0xe2,0x0b,0x80,0xd8,0x7d,0x1d,0x9d,0x8c,0x79,0xa7,0x59, + 0xb4,0xb0,0xae,0x4a,0x4c,0x8e,0x9c,0x4e,0x7f,0xd7,0x3b,0xc7,0x96,0xfd,0x75,0xb7,0xa7,0x01,0xdb,0x16, + 0xb4,0x38,0x80,0x5d,0x1a,0x8e,0x3a,0xcc,0x47,0x43,0x53,0xcd,0x76,0x58,0x34,0xbb,0x80,0xa2,0x12,0x73, + 0xf6,0x68,0x90,0xb7,0xfe,0xf9,0xd9,0xc0,0xcb,0xbb,0x46,0xc4,0xe7,0x43,0x56,0xb6,0x1c,0x1a,0x13,0x0b, + 0x6d,0xc9,0x74,0x19,0x97,0xcf,0x29,0xdd,0xaf,0xb4,0x81,0xbe,0x4a,0x84,0x5c,0x36,0x2a,0x86,0xef,0x99, + 0x4d,0x30,0x6f,0xbf,0x34,0xde,0xfe,0x6d,0x1c,0xfe,0xc3,0x79,0xc7,0x82,0x50,0xa5,0x65,0xf0,0xa0,0x9b, + 0x3f,0xc8,0xe7,0xf3,0x32,0xa9,0xbe,0x4d,0xd2,0x8b,0xcb,0xca,0x29,0xd5,0x56,0x5a,0x94,0xf5,0xe3,0x39, + 0xae,0x5d,0x88,0xa1,0x27,0xb0,0xad,0x64,0xda,0x69,0xf8,0x16,0xc4,0x1b,0x9c,0x9f,0x0d,0xac,0xde,0x4f, + 0x54,0x0c,0x1c,0x05,0x29,0x9d,0x52,0x03,0xc6,0x63,0x4d,0x4c,0x70,0xd0,0xe9,0x6d,0x2e,0xe7,0xfb,0x14, + 0x9e,0x40,0x79,0xba,0xea,0x88,0x83,0x3d,0x88,0x7c,0x6e,0x89,0x3e,0xde,0x3b,0xb2,0xcd,0xec,0xeb,0xc0, + 0x9d,0x12,0x35,0xc8,0xc4,0xeb,0x0a,0xd8,0x8b,0xae,0x00,0xc6,0x56,0xc5,0xac,0xf3,0x60,0xea,0x66,0x38, + 0xd9,0x97,0xee,0xb3,0x99,0x3a,0x18,0x27,0xed,0xa2,0x2d,0xbc,0xd5,0x93,0xdf,0xe2,0xcb,0x71,0xa8,0x3f, + 0x4b,0xad,0x48,0xb0,0x3e,0xd5,0x75,0xf6,0x26,0x92,0xd7,0x89,0xc6,0x28,0x75,0x30,0xc5,0x85,0x19,0x4b, + 0x6d,0x02,0x5a,0x6b,0xe7,0xa4,0x67,0xc0,0xc0,0xc9,0xd8,0x95,0xda,0xb9,0x3a,0x67,0x89,0xe8,0x42,0x05, + 0xea,0x9d,0x5e,0x80,0xac,0x93,0x6a,0xb6,0x4e,0x31,0x1a,0xca,0x11,0x99,0xe1,0xec,0x1e,0x25,0x7e,0xd6, + 0x70,0x48,0xc4,0x59,0x1b,0x1a,0x57,0x06,0x8e,0xf4,0x60,0x22,0x16,0x8b,0xd9,0x95,0xdd,0xc0,0x4a,0xfc, + 0x09,0x5f,0xd8,0xcf,0xd3,0x8b,0x81,0x13,0x19,0x37,0xfa,0xbd,0x50,0xf5,0x87,0x46,0x4c,0xde,0xa8,0x4c, + 0x3b,0x3f,0x41,0xa8,0x16,0xfd,0xea,0x16,0x6b,0xc5,0xe4,0x8d,0x7e,0xac,0x1a,0x05,0x9b,0x41,0x7c,0xb7, + 0x62,0xa4,0x3c,0xad,0x29,0x36,0xac,0x54,0x09,0x53,0x86,0xe6,0xda,0x45,0xed,0xf0,0xb6,0x1a,0xd5,0x42, + 0x45,0xdf,0xac,0x25,0xbf,0x68,0xeb,0xe3,0x8f,0x59,0x22,0xb0,0x35,0xb5,0xc6,0xc6,0x87,0x1e,0x4c,0xb5, + 0x47,0x5c,0x9c,0x1d,0x98,0xd7,0x16,0xbf,0x56,0xd9,0x0f,0x92,0xed,0xe6,0x20,0xe0,0x0b,0x79,0x67,0x56, + 0x63,0x24,0x21,0x75,0x1e,0x6d,0x97,0xd6,0x5b,0x22,0x71,0x03,0x36,0x6d,0xd4,0x35,0x0c,0x2b,0xad,0x0b, + 0x45,0x4b,0x75,0x11,0x33,0x1c,0x34,0xbf,0x39,0x46,0xec,0xff,0x4a,0xd9,0x6a,0xd2,0x71,0x5d,0x62,0x10, + 0x26,0x94,0x0a,0x7f,0x4a,0xc3,0x8b,0xe6,0x67,0x71,0x45,0xd7,0x1d,0x29,0x6b,0x5b,0x51,0x1e,0xde,0x7b, + 0x12,0xd7,0x37,0xb8,0x1c,0xde,0xcc,0x93,0xb5,0xd2,0xa2,0xac,0x10,0xdf,0x2f,0xcd,0x30,0xd8,0xb5,0x89, + 0xbb,0xf1,0x30,0xd8,0xe0,0x20,0xb5,0x27,0xa7,0xda,0xe9,0x88,0x2f,0xa6,0x1b,0x17,0x56,0x7f,0x48,0x21, + 0xc2,0xaf,0xd2,0x16,0x6b,0x8e,0x53,0x98,0x6d,0x0f,0xdc,0x55,0xd3,0x03,0xb7,0x71,0x28,0x0c,0x35,0x28, + 0x9a,0x8a,0xaf,0xb0,0xfc,0xc6,0xf9,0x3d,0xf4,0xf9,0x9f,0xd4,0x1e,0x09,0x7c,0xa7,0x4f,0xaf,0xa1,0x14, + 0x22,0x61,0xb0,0x0f,0x0e,0xbe,0xcb,0xf0,0x6f,0x00,0x37,0x5a,0xa0,0xdb,0xa0,0xca,0xfc,0x04,0x76,0x19, + 0xc7,0xb2,0x31,0xbf,0x4b,0xd5,0xaf,0x50,0xa6,0xbc,0x3d,0xbd,0xf5,0xfd,0x51,0x38,0x58,0x9f,0x66,0x41, + 0x7f,0x14,0x9c,0x6e,0x4e,0x37,0x47,0x17,0xea,0x1b,0x68,0xbf,0x1f,0x0e,0x3e,0xeb,0x8f,0xfe,0xd8,0xbf, + 0xdd,0xf8,0xc1,0x7a,0x7c,0x3a,0x39,0x3d,0x3a,0x3d,0x9d,0xd0,0xb7,0xdf,0xbb,0x55,0xd8,0xf9,0x08,0x31, + 0xda,0xdb,0xdf,0xa4,0xca,0x3b,0x3d,0xdd,0x3f,0xf0,0xd8,0x7c,0x19,0x8a,0xe6,0xdb,0x5f,0xdc,0xd9,0x15, + 0x7f,0x29,0x7e,0xd2,0xf7,0x74,0x67,0xa4,0x37,0x5e,0x3f,0x53,0xde,0x05,0x24,0x81,0xea,0x37,0x98,0xf9, + 0xb1,0x78,0x1f,0x3e,0x4d,0xc3,0xb1,0xe7,0xc8,0xfd,0xbd,0x89,0xb2,0x28,0xbb,0x65,0xe6,0x01,0x10,0x81, + 0x6b,0xc5,0x22,0xd3,0x28,0x32,0x15,0x79,0x8d,0x18,0xdc,0x0e,0x45,0xb0,0xe5,0x54,0x15,0xfd,0xeb,0xe5, + 0x8b,0xef,0x29,0x01,0x80,0x8d,0x18,0x8e,0x99,0x71,0x63,0x1e,0x15,0x4e,0x41,0x38,0xca,0x85,0x28,0x05, + 0x4a,0x31,0x48,0xf8,0x2a,0x65,0x82,0x23,0x2a,0xb0,0xfc,0x49,0x06,0xf7,0xac,0x1d,0xdc,0xa7,0xe7,0x39, + 0xaa,0xfd,0x75,0x93,0xb8,0x2c,0xeb,0x47,0xee,0x78,0x42,0xaf,0xdf,0xc8,0xd1,0xf7,0x14,0xac,0x34,0x1b, + 0x6d,0xe9,0x52,0x53,0x9b,0xdf,0xfd,0x28,0x05,0x12,0xa2,0x8b,0xff,0xb3,0x7b,0xda,0xf8,0x8a,0xe4,0xcf, + 0x4f,0x1b,0xa3,0xff,0xd6,0xb4,0x71,0x55,0xed,0x69,0x7b,0x93,0x62,0xe6,0x9a,0x53,0x27,0x85,0x9d,0xa9, + 0xe3,0x84,0xbf,0x3a,0x75,0xdc,0x6c,0x63,0xea,0x38,0xc5,0x99,0x3a,0x7e,0x37,0x53,0xe7,0xb6,0x65,0x4b, + 0x21,0xbf,0x2f,0x05,0xea,0xaf,0x7d,0x58,0x1d,0xc8,0xe4,0x55,0x39,0x5f,0x36,0xc1,0xf2,0x8f,0xad,0x40, + 0x61,0x4e,0x99,0x2f,0xb4,0x55,0xa3,0x98,0xee,0x69,0x6b,0x4c,0xb1,0x30,0x4c,0x4b,0xc6,0xcc,0xb8,0x7a, + 0xa2,0xa1,0x38,0xf6,0xa2,0x0d,0xd3,0x47,0x31,0x90,0xbc,0x39,0x87,0xdb,0xa1,0x24,0x17,0x9b,0x69,0x6d, + 0xe1,0x08,0xf3,0xcf,0x0a,0xa6,0x9d,0x46,0xcc,0xb9,0x64,0x13,0x47,0x98,0x07,0xb2,0xa1,0xa3,0x98,0x3e, + 0x16,0xba,0x26,0x6c,0x2e,0xe9,0x61,0xa7,0x09,0xaa,0x74,0xb9,0x36,0x36,0x64,0x8b,0xc9,0x4e,0xc3,0x4a, + 0x34,0xdb,0xb4,0x6c,0x64,0x5b,0x54,0x6d,0x88,0x6a,0x2c,0x29,0xb7,0x2c,0x52,0xb5,0x8d,0x2b,0x9b,0x58, + 0x76,0x58,0xb8,0xa2,0xaf,0xc6,0xfe,0x55,0xda,0xa1,0xc9,0x62,0xbb,0x5a,0x6d,0x83,0x89,0xbb,0x0c,0x63, + 0x3c,0xc9,0xd3,0xd4,0x36,0xc7,0x94,0x69,0x13,0xf3,0x54,0x3d,0x79,0x62,0x48,0x61,0x4c,0x2d,0x6b,0x2b, + 0xd0,0xd6,0x14,0xb1,0x65,0x2e,0x4d,0x14,0xcf,0x35,0xd4,0x00,0xf3,0xe8,0xe8,0x8f,0xd3,0xf2,0x33,0x7f, + 0x4c,0x7f,0xbd,0x3b,0xf7,0x1f,0x9c,0x1e,0x45,0x93,0x7e,0x40,0xb8,0x06,0x89,0x51,0x80,0xbf,0xa3,0xd0, + 0xa3,0xcf,0xde,0xe4,0x33,0x42,0x3b,0xeb,0x3b,0xf4,0x78,0x87,0x1e,0xef,0xf4,0xd7,0xba,0x4c,0x74,0xff, + 0xc1,0x7f,0x51,0x91,0x20,0x18,0x1d,0xa9,0x34,0x8f,0xbc,0x71,0x7c,0xf8,0xfe,0xe1,0xe1,0xef,0x67,0x93, + 0xf1,0xe9,0xe9,0xcd,0xe9,0xe9,0xe1,0xe9,0xe9,0x60,0xf2,0x99,0xa7,0x72,0xfa,0x04,0x1c,0xe6,0xf5,0xd3, + 0xbc,0x4f,0x98,0x2e,0x0c,0x46,0xf2,0x18,0x78,0x2a,0xce,0x23,0x07,0xd9,0x79,0x7f,0xdc,0xf7,0xfa,0x79, + 0x4e,0x1c,0x9a,0xe9,0xdc,0xe9,0xd1,0x28,0x78,0x70,0x44,0xeb,0xd2,0xca,0x76,0x7a,0x7a,0x84,0x9c,0x7d, + 0x6f,0xfc,0xc7,0x83,0xc9,0x67,0x0f,0x68,0x3c,0x2b,0x14,0xb9,0xbf,0xf7,0xf8,0xc5,0xa3,0x57,0xbf,0xfd, + 0xf0,0xa4,0x87,0xf4,0xfe,0x83,0xa3,0x54,0x2d,0x24,0x1d,0x16,0x3c,0x73,0x79,0x3c,0x1d,0x1f,0xa9,0x65, + 0x8e,0xbb,0x63,0xef,0xad,0x67,0xb1,0xf0,0xd1,0x5b,0x7f,0x40,0x03,0xb9,0x50,0xcd,0x2d,0x4f,0x19,0x3d, + 0x30,0xf7,0x89,0xbe,0x7a,0xb9,0xcc,0xd5,0x75,0x4e,0xac,0xb4,0xba,0xc8,0xd5,0xbb,0x5c,0x9d,0xe5,0x04, + 0x44,0xea,0x26,0x57,0x6f,0x73,0xb5,0x9f,0xab,0x37,0xb9,0x7a,0x94,0xab,0x97,0x0c,0x82,0xda,0x7e,0x57, + 0x1b,0x46,0x9b,0x5b,0x0f,0x3e,0x04,0x1f,0xe6,0xb8,0x39,0x7e,0x45,0x7f,0xbd,0x83,0x45,0x35,0xf4,0x42, + 0xef,0x3e,0x6d,0xca,0x83,0x0b,0x7e,0x7c,0x80,0x47,0xc0,0x27,0xbd,0xdc,0xf1,0xee,0xd0,0x4b,0x7c,0xb5, + 0xc4,0x87,0x03,0x7c,0xf8,0xdb,0xc9,0x31,0x9e,0x4f,0x33,0x7e,0xf9,0x92,0x9f,0x2b,0x6f,0xa3,0x5e,0xd0, + 0xd8,0x0e,0x68,0x92,0x89,0x01,0xbe,0xa8,0xd6,0x28,0xbe,0xa6,0x62,0xc1,0x90,0x06,0xf4,0xba,0xf3,0xd3, + 0x9a,0x6a,0x5a,0xff,0xed,0x4b,0xce,0xf1,0x84,0x3b,0x0c,0xcd,0x87,0x66,0x3f,0x9f,0xe5,0xdd,0xa4,0x05, + 0x9d,0xc1,0x4f,0x72,0xf1,0xa1,0x70,0xca,0x72,0x96,0x04,0x9e,0x8b,0xd4,0x53,0xcc,0xef,0x7f,0xac,0xff, + 0xb8,0x3e,0xcc,0xb3,0xf0,0x48,0x7d,0x8d,0xd7,0xeb,0xc3,0x35,0x92,0xe8,0xf5,0x31,0xbd,0xfa,0x83,0xcf, + 0xe8,0x40,0x2d,0xfb,0xd4,0x9b,0x34,0x5b,0xe7,0x73,0x7e,0x1e,0x7c,0x16,0x1c,0xa9,0xef,0xe9,0xab,0x22, + 0xb8,0x52,0x74,0xdc,0x4e,0x08,0xca,0x28,0x87,0xfb,0x1a,0x8c,0xf6,0x8f,0xd4,0x0f,0x0c,0x15,0xfe,0xfa, + 0x34,0xd8,0xa7,0x4e,0x3f,0xcf,0xd9,0x3c,0xec,0x33,0x7a,0x51,0x3f,0xe2,0x4b,0x88,0x96,0x59,0xf4,0x7c, + 0xa4,0xbe,0xa2,0x84,0xd3,0xc1,0xf8,0x8f,0xc1,0xa4,0x4f,0x59,0x7f,0xca,0x3b,0x8d,0x77,0xfc,0xef,0xd2, + 0xe8,0xbb,0xf4,0x23,0x86,0x4a,0x41,0xad,0x0d,0x11,0x55,0xea,0xbb,0xd4,0x35,0x4e,0xa4,0x43,0xf8,0x67, + 0xb4,0xfc,0xf6,0x6a,0x91,0x95,0xe1,0xf7,0x2f,0x4f,0x67,0xfd,0x23,0xf5,0x2d,0x52,0xf8,0x99,0xfa,0xf1, + 0x3e,0x8f,0xc6,0xbf,0xa5,0x74,0xe6,0xa8,0x5b,0x9a,0xde,0x57,0x1f,0x38,0x5b,0x44,0x96,0x64,0xbc,0x4a, + 0xc8,0xd5,0x90,0x61,0x61,0xf8,0x72,0xff,0x79,0xbc,0x64,0x91,0xec,0xd8,0xbb,0x3e,0xe4,0xcb,0x14,0x6f, + 0x02,0xe9,0x2c,0x5e,0x79,0xd0,0x20,0x08,0xbd,0xc9,0x7a,0x4d,0x29,0xfa,0xd9,0xa8,0x86,0xea,0xd3,0x86, + 0x13,0xe1,0xb9,0x4b,0x4e,0xae,0xeb,0xc3,0x74,0x2e,0xcb,0x9c,0x47,0xe9,0xc8,0xa3,0xba,0x68,0x57,0x62, + 0x53,0x86,0xc4,0x22,0xc6,0x91,0xd0,0xe4,0x26,0x2b,0xae,0x73,0xb5,0xdd,0x72,0x23,0xcd,0xd6,0x31,0x8d, + 0x7e,0x63,0xfb,0x91,0x6f,0xa0,0x95,0xa2,0x92,0x04,0xb2,0x2c,0x6e,0x50,0x89,0xeb,0x8c,0xf3,0xfc,0x2d, + 0xb5,0xfd,0x2b,0xd2,0x89,0x6d,0x9a,0x82,0x86,0x9d,0x12,0x82,0xd6,0xe4,0xde,0x20,0x9d,0x13,0x8e,0xf0, + 0xfa,0x05,0xb5,0x4f,0xc3,0xbf,0x63,0x8a,0xdc,0xa1,0x4d,0xae,0x7e,0x47,0xa1,0xdb,0xe4,0xed,0x32,0x44, + 0x3e,0xc1,0xdf,0xe1,0x54,0xef,0xc7,0x95,0x6e,0x97,0x3a,0xb5,0x42,0xa7,0x68,0x76,0xa5,0x43,0x09,0x27, + 0xe8,0x2e,0x14,0xf1,0x2c,0xcd,0xa5,0xfd,0x15,0xda,0xaf,0xab,0x74,0x5b,0xe5,0x5c,0xdc,0xa4,0xb4,0xb1, + 0xd2,0x6d,0x2c,0x74,0x1b,0xc6,0x67,0x51,0xe2,0x2f,0xda,0x4d,0x51,0x82,0x4c,0x3a,0x8c,0x1f,0x7e,0xc5, + 0x7b,0xa3,0x95,0x54,0xd7,0xb8,0x80,0x7b,0xfc,0xd1,0x74,0x80,0xa9,0x43,0x28,0x3a,0x50,0x3a,0xf2,0x46, + 0x13,0x00,0x27,0xd4,0xe0,0xec,0x26,0xea,0x17,0xc2,0x0c,0x54,0x8c,0x38,0x06,0x80,0x1d,0xe4,0xf7,0xe6, + 0x86,0xfb,0x7d,0xae,0x6a,0x56,0x22,0xd4,0x97,0x6a,0x1f,0xbb,0x46,0x73,0xef,0x50,0x73,0x81,0x2d,0xf6, + 0xee,0x67,0xc0,0x8a,0xef,0x5e,0xc5,0xbd,0xa1,0xe5,0x45,0xac,0x0c,0x3d,0xd1,0xca,0x5c,0x4a,0x87,0xd6, + 0xad,0xef,0x2f,0xf3,0x60,0xaf,0xbb,0xe5,0x3b,0xf8,0xd9,0xdf,0x37,0x1e,0x38,0x7e,0x8e,0x17,0xbd,0xa8, + 0xd7,0x8a,0xac,0xae,0xaf,0x14,0xe4,0x12,0x73,0x9f,0x1d,0xc8,0xea,0x88,0x8d,0xf6,0x42,0xd3,0x56,0x9e, + 0xd7,0xe6,0xf1,0x03,0x53,0xe9,0x26,0xc0,0x1d,0xa8,0xef,0xe6,0x41,0xab,0xd7,0xdc,0x96,0x77,0x26,0xee, + 0x5e,0xa0,0x12,0x94,0xf7,0x46,0x54,0x4c,0x12,0x7a,0x21,0x3d,0xea,0xab,0x37,0xa9,0xf0,0x4e,0xdf,0xe7, + 0x18,0x0c,0x62,0x47,0x3f,0xf2,0xce,0x32,0x9f,0xbe,0x63,0x0f,0xd0,0x0f,0x84,0x44,0x04,0x02,0xde,0x30, + 0x73,0x6f,0x34,0xa1,0x40,0xdf,0xf7,0x7a,0x5e,0x3f,0x86,0xb5,0xb1,0xd7,0xec,0xbb,0xb9,0x54,0xa5,0x46, + 0x9b,0x13,0x10,0x36,0xdf,0x09,0x5f,0x7a,0x81,0xe5,0x8a,0xd8,0x6c,0xa7,0xb6,0x09,0xad,0xf1,0x40,0x4e, + 0x18,0xd6,0x6e,0x1f,0x7a,0x8f,0x77,0x4d,0xb9,0x33,0x08,0x5a,0x62,0xd9,0xef,0x32,0x07,0xc1,0x7a,0xed, + 0xa1,0x1d,0xec,0x69,0x8d,0x07,0x8a,0x55,0x72,0x58,0x7f,0xc4,0xab,0x47,0xdb,0x5a,0x3e,0xce,0x63,0xec, + 0xea,0xfa,0x2b,0xbf,0x7b,0xc3,0xff,0xac,0x64,0x06,0xc4,0x09,0x8e,0xf2,0x9a,0xa6,0x24,0x5e,0x9f,0xa8, + 0xca,0x60,0x74,0x96,0xca,0x93,0xa2,0x2d,0xd4,0x67,0x3e,0xdc,0xeb,0xfb,0x52,0x3f,0xfa,0x3e,0xf2,0x42, + 0x9d,0x93,0xa6,0x37,0x3c,0xfb,0xb7,0xcd,0x1c,0x23,0x29,0x40,0xf8,0x33,0x77,0x9a,0x3d,0x81,0xa2,0x38, + 0x92,0x6c,0xfb,0xe0,0x5e,0x1b,0x93,0x4d,0x49,0xd3,0x08,0xc9,0x03,0xdd,0xaf,0x91,0x2f,0x75,0xa1,0x19, + 0xe2,0x10,0x3a,0x8c,0x61,0xa9,0x3a,0x8d,0x14,0xf7,0xf7,0xaf,0xa9,0x62,0x5f,0x96,0x5c,0xfa,0xeb,0x85, + 0x79,0xc0,0x0d,0xa5,0x11,0x8d,0x84,0xb2,0xd2,0xe3,0x35,0x57,0xe2,0x36,0x12,0xdc,0x52,0x86,0xfb,0xc7, + 0x8c,0x2e,0xa9,0x5f,0xd4,0x01,0x1b,0x6e,0x7b,0x4c,0xf9,0x09,0xe9,0x8a,0xae,0x1c,0xe5,0xa2,0x09,0x68, + 0x64,0x33,0xee,0x5f,0xe8,0x53,0x60,0xca,0xd4,0xe9,0x94,0xda,0x3f,0x81,0x1e,0x81,0x94,0xb7,0xf0,0xb5, + 0x3f,0x65,0x38,0xf4,0x3e,0x0d,0x5a,0x04,0xd3,0xfd,0x37,0x41,0x65,0x6b,0xb9,0x9d,0xc5,0xf2,0xa9,0xcc, + 0xd6,0xa4,0x21,0x74,0x43,0x73,0xf5,0xb8,0xf3,0xf9,0xa7,0x80,0x38,0x40,0xd0,0xd1,0x09,0xd9,0x89,0x55, + 0x5a,0xf8,0x8a,0xf0,0x1a,0xfb,0x8f,0xc7,0xe9,0x25,0x51,0x83,0xe1,0x77,0x5b,0x8f,0x0b,0x01,0x90,0x60, + 0xc7,0x4d,0xc7,0xd2,0x9e,0xcc,0x0a,0x3a,0x05,0xdd,0x3e,0xb5,0x8a,0xf2,0x91,0xe9,0x65,0xa8,0x3f,0x40, + 0x07,0x6d,0x74,0x9e,0x86,0xba,0x57,0x6a,0x11,0xb5,0xb6,0xb5,0xcc,0xcf,0x10,0xe8,0xba,0xfb,0x9b,0xb6, + 0x1a,0x87,0xc7,0x12,0xc9,0xc3,0x13,0xb4,0xe0,0x99,0x19,0xca,0x9d,0x15,0xcf,0xc8,0x22,0x18,0x4e,0x29, + 0x03,0x9d,0x76,0x00,0xab,0x46,0x3d,0x5a,0xcf,0xc4,0x5e,0x52,0x0e,0xbd,0xfe,0x3c,0x50,0xb2,0x12,0xd2, + 0xbe,0xf2,0xcc,0xfe,0xd1,0xb3,0xbd,0x52,0xf3,0x5a,0xb2,0xe2,0x97,0xeb,0x35,0x14,0xa6,0x65,0x1d,0xce, + 0x17,0x2b,0x3a,0x9d,0xbc,0xe6,0xd5,0x95,0x67,0xcc,0x05,0xeb,0x85,0xd8,0x7b,0x9d,0x35,0xc5,0x84,0x84, + 0x49,0x3b,0x71,0xbf,0xbd,0x85,0x65,0x1a,0x71,0x8b,0x31,0xbe,0x16,0x0d,0x06,0xe9,0xae,0x43,0x22,0x01, + 0x78,0x4a,0x74,0x5b,0x72,0x70,0xe7,0x37,0xcc,0xf3,0x7c,0xb8,0x0a,0x4b,0x74,0x75,0x56,0xb0,0x21,0xc6, + 0xf2,0x07,0xa2,0xa7,0xe2,0x2e,0x97,0x14,0x20,0x64,0xb5,0x03,0x2e,0x08,0x2b,0x89,0x2b,0x42,0xbe,0x8a, + 0xa8,0xf6,0x5a,0x4e,0x1a,0xfe,0x5e,0xc0,0xe1,0xce,0x57,0xc9,0xb3,0x64,0x5e,0xbd,0x58,0x26,0x19,0xb2, + 0x24,0xb9,0x6a,0x4c,0x45,0x58,0xa6,0xaa,0x25,0x0b,0x0d,0x7f,0xac,0x94,0x23,0x3c,0x78,0x9f,0x13,0xff, + 0x30,0x5b,0x4d,0xbb,0x55,0x6e,0x38,0x96,0x23,0xef,0x72,0x13,0x20,0xcb,0x84,0xfc,0x0b,0xd8,0x23,0xc4, + 0xe0,0x75,0x9e,0x12,0x98,0x28,0xcc,0xc8,0xbf,0xbb,0x49,0xd4,0x1e,0x1c,0xbd,0x00,0xda,0xf9,0xcc,0x06, + 0xfc,0x43,0xb2,0xae,0xcc,0x4e,0x50,0xc4,0xbb,0xa4,0x99,0x76,0xe7,0xa1,0xec,0xc5,0x98,0x44,0x17,0xea, + 0xfb,0xd5,0x08,0x3b,0xb6,0x82,0x67,0x54,0x08,0x8c,0xfe,0x65,0x59,0xbe,0xd3,0x9b,0xfd,0xb3,0x49,0x7f, + 0x7d,0x4a,0x14,0x76,0x30,0xf9,0x6c,0x74,0x1a,0x80,0xdd,0x8b,0x1e,0xac,0xff,0x30,0x3d,0xa0,0xd7,0x53, + 0xff,0x48,0x7d,0xa7,0x4b,0x8c,0x89,0xad,0x23,0xe6,0xee,0x6c,0x7f,0x82,0xa2,0x13,0x70,0x86,0x44,0x5d, + 0xb7,0x12,0xd7,0xa7,0xe3,0x3b,0x44,0xdf,0xdf,0x99,0xd0,0x83,0x47,0x0f,0x1e,0x1e,0x88,0x0c,0xc6,0x4f, + 0x3b,0xef,0x24,0xf8,0x8c,0xaa,0x25,0xca,0xfd,0x57,0x90,0x3a,0xe5,0x34,0xbc,0xfb,0x0f,0x38,0x33,0x0a, + 0xbf,0x14,0x35,0x8b,0xf0,0xe4,0x9e,0x92,0xf9,0xbe,0x77,0x57,0xad,0x96,0xe1,0xbd,0x7f,0x12,0x87,0x3c, + 0xaf,0xc2,0x7b,0xff,0x50,0x05,0x6e,0x4f,0xc2,0x7b,0x5f,0x2a,0x78,0xc1,0x0e,0x3f,0x3f,0x56,0x72,0x81, + 0x19,0x8e,0xff,0xa9,0x3e,0xff,0x3b,0x31,0x21,0xdf,0xe4,0x5d,0x7e,0xb9,0x80,0x72,0xfa,0x15,0x01,0x8f, + 0xe3,0x33,0x6b,0x48,0x6c,0xd3,0xef,0x39,0x84,0x41,0x04,0x0f,0x66,0x53,0xe3,0x05,0x00,0x12,0x5f,0xc4, + 0x22,0x42,0x1c,0x42,0xa3,0x82,0xbf,0xd9,0x3c,0xfa,0xfd,0xb1,0x5c,0x38,0x72,0x16,0xc4,0x25,0x0b,0xbf, + 0xc9,0xfd,0x26,0x6e,0xe8,0x11,0xc6,0xe9,0xe9,0x94,0xe9,0xaa,0xc0,0x22,0xbd,0xe2,0x0f,0x1e,0x84,0xab, + 0xc5,0x82,0x4b,0xec,0x99,0x0c,0x94,0xf0,0x1d,0x34,0x74,0x15,0xfb,0x0e,0x6d,0x7c,0xe3,0x14,0xf9,0x18, + 0x2f,0x9a,0x9f,0xe8,0x5d,0x3e,0x40,0x5e,0xd0,0xf8,0x82,0x04,0xf9,0xc4,0x73,0x87,0x4f,0x77,0xc4,0x2b, + 0xd4,0x1d,0x10,0x46,0x92,0xab,0x77,0x70,0x60,0x7a,0x28,0xdf,0xb8,0xcf,0xc7,0xa8,0x2f,0x9d,0xcd,0x16, + 0xc9,0x9f,0x2a,0x76,0x02,0xb9,0x02,0xaf,0xcf,0x9f,0x29,0x75,0x17,0xf0,0xff,0x1b,0x2d,0x04,0x71,0x8d, + 0x6d,0x7f,0x2c,0x70,0x03,0x57,0x47,0xb5,0xeb,0x58,0xd8,0xb3,0x0b,0x59,0x58,0xd5,0xc0,0x10,0x84,0x20, + 0xb6,0x74,0x90,0x4c,0x75,0x1c,0x3e,0xaf,0xb6,0x16,0xaa,0x6b,0x3a,0xa7,0x9a,0x32,0xaa,0xe9,0x0e,0xe4, + 0x5f,0xb4,0xdf,0xfa,0x60,0xbe,0xeb,0x5a,0x71,0xf6,0x39,0x94,0x34,0x1c,0x1d,0xd5,0xea,0x88,0xb8,0x0c, + 0x1b,0x09,0xa9,0x13,0x6a,0x9a,0x29,0xf8,0x40,0x76,0x8e,0x3e,0xed,0x29,0x9d,0xdf,0x0b,0x74,0x9f,0xa7, + 0x8b,0x3c,0x7e,0x83,0xb8,0xba,0xff,0x99,0x6f,0x7b,0x3d,0xcd,0xad,0xb3,0x4c,0x7e,0x85,0x24,0x92,0xce, + 0x44,0xfc,0xac,0xd7,0xbf,0xeb,0x44,0x2b,0xbc,0x2c,0xa3,0xdf,0x60,0x50,0x6d,0x14,0xd3,0x3d,0xfb,0xe1, + 0x11,0x71,0x0c,0xc6,0x83,0x3b,0xee,0x19,0xbf,0x49,0x32,0x44,0xf0,0x6b,0xe6,0xd6,0x52,0x47,0x9b,0xcf, + 0x72,0x1c,0xd1,0xb5,0xcf,0x8a,0x16,0xbf,0xe5,0x6c,0x1a,0x6d,0xd3,0x03,0x1b,0xbd,0xab,0x81,0x40,0xd7, + 0xeb,0x47,0xd9,0x50,0xfb,0x46,0x7e,0x77,0x9e,0xd8,0x40,0x8c,0x1d,0x0b,0xb9,0x67,0xcd,0x78,0xb5,0x7f, + 0xcc,0x6c,0x9a,0x3c,0x9d,0x45,0xda,0x43,0x7d,0x3b,0xe0,0x20,0x7c,0x74,0xd3,0x2a,0xfa,0xae,0x50,0xe8, + 0xf4,0xf4,0xdc,0xeb,0x7b,0x33,0xc2,0xe1,0x73,0x08,0xe0,0x08,0xe8,0x2b,0x04,0xd4,0xa5,0x49,0x7e,0xc7, + 0x8e,0xd9,0xa6,0x10,0xfe,0xe1,0xd8,0x53,0x37,0x69,0x75,0xa9,0xe2,0x9b,0x38,0xad,0x14,0x1b,0x06,0x28, + 0xf6,0x81,0xae,0x95,0xe7,0xf9,0x1a,0x48,0xb1,0xe3,0x52,0xc5,0x71,0xe9,0xd5,0x0d,0xa1,0xd5,0x44,0xbd, + 0x83,0xd4,0x4f,0x23,0x1b,0x45,0xcc,0x59,0x0e,0x6f,0x87,0xec,0x89,0x45,0xc9,0x08,0x8c,0x07,0x30,0xeb, + 0x52,0x9b,0xdd,0x85,0x12,0x1b,0x23,0x21,0xea,0xd9,0x09,0x5a,0x9a,0xad,0xe0,0x98,0xf1,0x7c,0x75,0x71, + 0x01,0x31,0xa1,0x9e,0x85,0x3a,0xe8,0x8a,0xa7,0xfd,0xd4,0xe0,0x4c,0xd0,0xa7,0x03,0x0d,0x6b,0x8d,0xa1, + 0x05,0x7d,0x1e,0xa1,0x04,0x09,0x6e,0x8d,0x59,0x3a,0x25,0x7e,0x47,0x59,0x81,0xbd,0xb3,0x1e,0x42,0xe9, + 0x40,0xf8,0xa7,0xa7,0x84,0xf2,0xe9,0x4f,0x5d,0x6b,0xeb,0x03,0xb5,0xe1,0x3f,0x6a,0x4b,0x7e,0x44,0x14, + 0xb1,0xd3,0x6a,0x94,0x3d,0x06,0x13,0x5e,0x44,0xec,0xe3,0x68,0xef,0x24,0x50,0x67,0xb9,0x5e,0x4f,0x36, + 0x10,0x83,0x84,0xdb,0x89,0xd8,0x32,0xcc,0xee,0xbf,0xcb,0x5d,0xe7,0x2c,0xef,0x72,0xb6,0xc3,0xc5,0x4d, + 0xce,0x65,0x1e,0x25,0x35,0x54,0x9f,0xe1,0xcd,0x9c,0xf5,0x00,0x27,0x75,0x8e,0x14,0xe7,0x24,0xe7,0xc4, + 0x1b,0x24,0xb6,0x8e,0x6a,0xfe,0x70,0x95,0x03,0xb4,0x93,0x8e,0x8d,0xf0,0xbd,0x6c,0x84,0x8b,0x76,0x86, + 0xb6,0x98,0x86,0xf2,0xbc,0xdb,0xca,0x93,0x97,0x55,0x3b,0xd3,0x35,0xba,0x40,0x2b,0x91,0x5e,0xa5,0x15, + 0x02,0x22,0x6a,0xa3,0x5c,0x22,0x4f,0x59,0xf9,0x64,0xef,0x84,0x75,0x3d,0x11,0xe3,0x1c,0xbb,0xe3,0x97, + 0x4b,0xca,0xc5,0xdd,0x54,0x98,0x2f,0xd0,0xa9,0x27,0x5b,0x96,0x19,0xed,0x49,0xa6,0xb7,0x45,0x1f,0x37, + 0x78,0x50,0x6b,0x5d,0x9d,0xcb,0xdd,0x82,0xef,0x5a,0x4d,0x17,0xc6,0x8f,0x00,0xeb,0xdf,0xa9,0xb2,0x8e, + 0x5f,0x2f,0x9a,0x7c,0x8b,0x40,0xdf,0xbd,0xe1,0xba,0xa1,0xc0,0x6b,0xc5,0x2b,0xd6,0xba,0x90,0xa5,0x64, + 0x56,0xf5,0x4f,0xa3,0xb8,0x0e,0x6a,0x9f,0x3e,0x88,0x88,0xeb,0x89,0x11,0x0a,0x66,0x61,0xb2,0x62,0x93, + 0xd3,0xb8,0x4a,0x84,0x54,0x33,0x34,0x65,0xc4,0xd7,0xbe,0xc8,0xed,0x18,0x60,0xba,0x15,0x4d,0x1f,0x44, + 0xe9,0x70,0x4a,0x05,0x92,0x01,0x7b,0x59,0xe1,0x1f,0xf6,0xb7,0xce,0x92,0x09,0xf4,0x7f,0x68,0xb2,0x47, + 0x98,0xc0,0x94,0x9b,0x3d,0x3c,0xe1,0xef,0xcc,0x1d,0x79,0xe7,0x05,0x28,0xbc,0x72,0xc4,0x84,0x55,0x01, + 0x0b,0x75,0x79,0xa0,0xf1,0xd3,0x74,0xef,0x1d,0x8b,0x67,0x04,0x6f,0xc9,0xb9,0x38,0x0e,0x6e,0x67,0xbe, + 0x13,0xce,0xa7,0x1a,0x1d,0x91,0x19,0xa4,0x49,0x35,0xce,0x11,0xe0,0xe9,0x04,0x8b,0x08,0x65,0xf4,0x5a, + 0x2a,0x43,0x4b,0x96,0x0c,0x6a,0xfa,0x92,0xa1,0x6d,0x85,0x1b,0xe7,0x16,0x55,0xc9,0x1f,0x16,0x34,0x29, + 0xd5,0x90,0x85,0x7c,0x29,0x21,0x70,0x62,0x49,0x5e,0xe6,0x7e,0x6e,0xd5,0xd9,0x60,0x97,0x9a,0xb7,0xee, + 0xc4,0x67,0xd1,0xc3,0x7c,0xbc,0x44,0x88,0x28,0xfe,0x6d,0xc8,0xbf,0x89,0x80,0x3b,0x2d,0x4f,0x4f,0x5f, + 0x12,0xe9,0x16,0xf8,0xf7,0x8f,0xbc,0xfe,0xd2,0x08,0xc2,0x03,0xda,0xf1,0x29,0x78,0x69,0x58,0x67,0x19, + 0xd1,0xf6,0xcc,0x95,0x69,0x33,0x78,0x18,0x48,0xb3,0x96,0xb0,0x8a,0xfa,0xb3,0x64,0xfe,0x4f,0xfb,0x9d, + 0xc4,0xc4,0x2d,0xa1,0xd5,0x11,0xd5,0x0e,0xa8,0x8e,0x20,0x46,0xa7,0xb6,0x4b,0x69,0xf9,0xf0,0xf0,0xc1, + 0xd1,0x05,0xb1,0x18,0x74,0xea,0xbb,0x59,0x4e,0xc7,0x8f,0x1e,0x3f,0x7c,0xf5,0xf0,0x74,0x5c,0xe7,0x9c, + 0x4c,0x6c,0x4e,0x08,0x95,0xfd,0xa5,0x12,0xb7,0xcb,0xd0,0x67,0xd1,0x3e,0x9b,0x38,0x8c,0xde,0x65,0x2c, + 0x07,0x25,0x3f,0x40,0x09,0xc2,0x83,0xfc,0x85,0x60,0xde,0xe8,0xe8,0x1c,0x5e,0x9a,0xfe,0x56,0xd1,0xa5, + 0x2a,0xa8,0xa2,0xc5,0xe1,0x1c,0x91,0xa8,0xad,0x1d,0xd2,0x75,0xe4,0x28,0x03,0xdc,0x17,0x19,0x00,0xd4, + 0x30,0xaf,0x79,0xf2,0x17,0xb9,0x89,0xa8,0x65,0x2c,0xc8,0x5c,0xd5,0x81,0xc3,0xd3,0xb7,0xf7,0x12,0x29, + 0x72,0xc5,0xe0,0x9b,0xe8,0xf0,0x8c,0x88,0x54,0xa1,0x55,0x10,0x75,0x78,0x04,0xed,0xb0,0xa4,0xde,0x85, + 0x9f,0x2b,0xd8,0xda,0x66,0xfe,0x55,0xff,0x1e,0xb1,0x78,0x1a,0xd5,0x6f,0xa0,0xd7,0x35,0x6f,0xb5,0x79, + 0xe1,0xb6,0x39,0x79,0x20,0xed,0x5d,0x70,0x7b,0x99,0x7f,0xd1,0xbf,0xeb,0x16,0x47,0x7e,0x68,0x48,0xb3, + 0x7b,0x5a,0x7f,0x25,0x2a,0x87,0xef,0x90,0xf1,0x1d,0xee,0x96,0x4d,0x40,0x43,0x5b,0x00,0xf9,0xcf,0x6c, + 0xfe,0xa9,0xe4,0x3f,0x93,0x76,0xcf,0xa3,0xc5,0x30,0xf3,0xcf,0x9c,0x72,0x34,0x81,0x67,0xe3,0x93,0x89, + 0x3a,0x67,0xb6,0xd4,0xad,0xe3,0xa6,0x1d,0x2b,0x25,0xb1,0x95,0xc6,0x52,0xa9,0x8d,0xfc,0x77,0x6b,0x3c, + 0xfe,0x25,0xa8,0x8a,0x39,0x8f,0x10,0x9b,0x05,0xbb,0x2c,0x5c,0x6c,0xa8,0xc9,0xc4,0xed,0xaa,0xb3,0xab, + 0x86,0x7b,0xd8,0x0c,0xba,0xda,0x32,0x67,0xe3,0x8f,0xdc,0x26,0x14,0x94,0x30,0x0c,0x32,0x3f,0x6f,0x74, + 0x58,0xfb,0x8f,0x34,0x81,0x38,0xb1,0x9f,0x6a,0x1b,0xcc,0x15,0xf6,0xe2,0x4b,0x3a,0xc5,0x09,0x6d,0xa0, + 0x33,0x99,0x9f,0x36,0x0b,0xc3,0xf7,0xf9,0x42,0x15,0x9b,0x8d,0x2f,0x56,0x53,0xc1,0xed,0x56,0xa8,0x85, + 0x2c,0xb2,0x6e,0x0a,0xd9,0xea,0xa2,0xae,0x93,0xb9,0x7f,0xc1,0x28,0xb4,0x7f,0x33,0x71,0x1d,0x5e,0x50, + 0x2f,0xd4,0x8a,0x1f,0x73,0x71,0x00,0x5d,0xf0,0x05,0xb9,0x19,0xe6,0x22,0x9a,0xb2,0xb7,0x86,0xbd,0xbd, + 0x94,0x7d,0xf0,0x48,0xf7,0x35,0x0c,0x2f,0x79,0x53,0x8b,0x64,0x6a,0x8e,0x1d,0x7f,0x3c,0x9c,0xdd,0x9f, + 0x0f,0x67,0x46,0xc9,0xef,0xd2,0x14,0x18,0xcf,0x26,0xc3,0x25,0x35,0x7a,0x08,0x6b,0xb9,0x4b,0x8c,0xc9, + 0x00,0xd0,0x1d,0xcf,0xbb,0x83,0x79,0xe3,0x3b,0xaa,0xcb,0xf1,0xbd,0xc9,0xc1,0x81,0x56,0xe8,0xc4,0x8b, + 0xd2,0xc9,0x9f,0xbb,0xc9,0x9f,0xdb,0xe4,0x2f,0xdc,0xe4,0x2f,0xb4,0x35,0xe1,0x35,0x57,0xb3,0x5e,0x23, + 0x23,0xfe,0x7e,0x41,0x7f,0x3d,0x4f,0x5d,0x45,0x5e,0x6c,0x5c,0x5c,0xc3,0x7d,0xb3,0xd4,0x70,0x32,0x19, + 0x99,0x3d,0xf2,0x38,0x81,0x4b,0xdd,0xef,0x93,0x1b,0xb8,0x44,0x2d,0xbf,0xce,0x8b,0x6f,0x29,0x57,0xd8, + 0xfd,0x75,0xb8,0xa4,0x11,0x69,0xdd,0x75,0x54,0xa2,0x98,0xc4,0x0e,0xff,0x95,0xf8,0xd7,0xb4,0x8d,0x36, + 0x9b,0x05,0xab,0x3e,0xf3,0x22,0xb3,0x02,0x2b,0x21,0x50,0xf7,0xc4,0x09,0xb3,0x16,0xae,0x14,0xa8,0x5b, + 0xc2,0x23,0x7d,0xc4,0x71,0x11,0x5a,0xc8,0x3e,0x83,0x2d,0x19,0x5f,0x79,0xd3,0x1b,0x3c,0xda,0x64,0xb0, + 0xc9,0xbe,0x61,0x5c,0x94,0x2b,0xf6,0xdd,0x42,0x28,0xa8,0xb5,0xef,0xde,0x1a,0x93,0xf1,0x7d,0xf3,0xf0, + 0x46,0x3f,0x00,0x76,0xae,0xed,0xf9,0xb6,0x6f,0x1d,0x3b,0x5f,0x07,0x04,0xd2,0x53,0xbd,0xdd,0xf7,0xe1, + 0xc6,0xd5,0x79,0x5e,0x38,0xcf,0x73,0xe7,0xd9,0x7f,0x13,0xed,0xbb,0x18,0x4b,0x11,0x2e,0xbc,0x7f,0x4c, + 0xa0,0x7f,0xdd,0x8f,0xde,0xa8,0x46,0xe5,0x6f,0x1b,0xe7,0xfe,0xb1,0xba,0x06,0xc2,0xb9,0x0e,0x36,0xd7, + 0x2c,0x8e,0x7c,0x0b,0xce,0x20,0x82,0xe5,0xb8,0xc5,0xa4,0x6f,0x6b,0x64,0xfa,0x96,0x75,0x4c,0x2b,0x51, + 0x53,0xde,0x42,0xb5,0x95,0x31,0x91,0xdd,0x14,0x3e,0xcb,0x88,0x24,0x4a,0xc8,0x65,0xae,0x9c,0x6b,0x88, + 0xc6,0xe9,0xe7,0x48,0x56,0xdc,0x63,0xb0,0x43,0xa8,0xb2,0x75,0x22,0xaa,0x2e,0x90,0xd8,0x01,0x29,0x9d, + 0x79,0x3f,0x0c,0x5c,0xfa,0xab,0xda,0x42,0xdd,0xa1,0xc5,0xdc,0xa5,0x46,0x4f,0xce,0xb1,0x18,0xc3,0xfa, + 0x55,0x76,0xac,0x08,0x48,0xcb,0xf5,0xfa,0x06,0x77,0x9c,0xc3,0x1f,0x00,0xf2,0x70,0x99,0x4d,0x73,0x87, + 0x28,0x57,0xcd,0x80,0x14,0xb5,0xb2,0x33,0x21,0x3d,0x21,0x6d,0x2b,0x97,0xb2,0x35,0xc2,0x4b,0xc4,0x47, + 0xfd,0x39,0x37,0xba,0x93,0x99,0xd6,0x99,0x94,0xa7,0x48,0x7e,0xec,0x21,0xfa,0x6d,0xae,0x64,0x19,0x79, + 0x07,0x80,0x16,0xb1,0x31,0xf4,0xa0,0x5c,0xae,0xe5,0x89,0xdf,0x25,0xdc,0xed,0x94,0x0e,0x48,0x48,0x14, + 0xa9,0xc7,0xa0,0xe7,0xf6,0xb4,0x03,0x7d,0xf6,0xa8,0xb8,0x8c,0xe6,0x81,0x28,0x33,0x9b,0xeb,0x68,0x24, + 0x2f,0x45,0xf9,0x7a,0xd9,0x94,0xa7,0xd2,0x20,0x21,0xb6,0x3b,0x7a,0x1d,0x5f,0xc7,0x6e,0xde,0x46,0x26, + 0xea,0x33,0x62,0xd4,0x06,0xdc,0x20,0x0d,0xfd,0x9c,0x3d,0xc1,0x73,0x20,0x4a,0x33,0x11,0x4b,0x8d,0xc7, + 0x2e,0x2c,0x81,0x0f,0x7c,0x36,0x8f,0x2e,0x72,0xda,0xf3,0xfe,0x5c,0xa1,0x8e,0x39,0x2b,0x06,0xd2,0xf8, + 0xaf,0xa2,0xb9,0xb2,0x17,0x8d,0x57,0xb8,0x54,0x83,0xec,0x0e,0xd5,0x5f,0x81,0x54,0x66,0x53,0x83,0x79, + 0xcd,0x57,0x1c,0x07,0xcc,0x58,0xcc,0x1d,0xc6,0x02,0x37,0x92,0x9d,0xd1,0x8b,0xad,0xb0,0xcc,0xba,0xbb, + 0x74,0xa3,0x34,0xda,0x5b,0x55,0x07,0x05,0x27,0xc6,0x0f,0x4d,0xc2,0x11,0x3c,0xe1,0xa5,0x47,0xe3,0x28, + 0xa7,0x36,0x4a,0x94,0xb8,0x24,0x1a,0x65,0x35,0x95,0x7c,0x5a,0x19,0x25,0x2c,0xe9,0xc6,0x78,0xd4,0xa4, + 0x71,0xb0,0xae,0x1d,0x0b,0xed,0x24,0x2a,0xf6,0x3c,0x08,0xe7,0xf5,0x5d,0x28,0x7d,0xfd,0x06,0xc6,0xfc, + 0x1d,0x91,0x4a,0x9d,0x3b,0x5b,0x7d,0xfe,0x56,0xb8,0x34,0x4d,0x70,0xc9,0x58,0xc9,0x25,0xa3,0x56,0x6d, + 0x09,0xab,0x8d,0x36,0xb2,0xee,0xb8,0xc2,0x15,0x5d,0x66,0x7d,0xfd,0x68,0x62,0x27,0xb6,0x2f,0x74,0x8d, + 0x36,0x93,0xbe,0x97,0x84,0x43,0x5d,0x74,0xea,0xda,0x5d,0xac,0x6b,0x14,0x00,0x93,0xce,0x55,0x5e,0x33, + 0xbf,0xce,0xab,0xf1,0x6b,0xc2,0x8b,0x4c,0x73,0x39,0x32,0x10,0xb0,0x5e,0x17,0xd4,0x57,0x86,0x19,0xa9, + 0x92,0x20,0x80,0x9f,0xa8,0x28,0x75,0xbf,0x90,0xee,0x9b,0x8f,0x7a,0x14,0xf3,0x4d,0x10,0x16,0xd4,0x22, + 0xed,0xc6,0x3d,0x07,0xd6,0x60,0x22,0xb4,0x55,0xcd,0xde,0x87,0x79,0xd5,0x86,0x49,0x42,0x23,0xbe,0x9e, + 0xb1,0x40,0xaf,0x38,0xb4,0x1e,0x00,0xdc,0x48,0x6e,0x29,0x01,0x41,0x61,0x73,0x58,0x6b,0x6c,0xfc,0xda, + 0xc9,0x0d,0xcf,0x4d,0xc6,0xc3,0xf9,0x1d,0x3a,0xc0,0xdc,0xf5,0xaa,0xd9,0x75,0x58,0x64,0xd0,0x84,0x59, + 0x19,0xfb,0x7c,0x00,0x0b,0x05,0x76,0xfa,0xc5,0x51,0xc4,0x65,0xf9,0x4f,0x44,0x9f,0x24,0x92,0xaf,0x22, + 0x17,0x5c,0xaf,0xef,0x78,0x5a,0x7e,0xe0,0xdd,0x19,0x52,0xb3,0x8d,0x60,0x6f,0xcd,0x77,0x36,0x23,0x18, + 0x5f,0x4e,0xa2,0xb9,0x18,0x5b,0xd7,0x7d,0x14,0xbc,0x31,0xe7,0xad,0x23,0x61,0xd9,0x52,0x39,0xda,0xd5, + 0xd5,0x70,0x35,0xca,0x00,0x74,0x44,0x79,0xcd,0x55,0x6e,0x32,0x22,0xce,0x58,0xd6,0xa1,0x57,0x9f,0x8f, + 0x73,0xcb,0xb6,0x4d,0x54,0xe2,0xb8,0xc7,0x1a,0x6f,0xf9,0xc4,0xa2,0x1c,0x08,0xbe,0x7c,0x0f,0xda,0x20, + 0x06,0xa1,0xf4,0x3c,0x79,0x63,0x77,0x0a,0x7b,0x53,0x68,0x5a,0xd7,0x7d,0xc4,0xd4,0x2a,0x5b,0x7f,0x74, + 0x42,0xe4,0x56,0xb3,0xbd,0x4c,0x1c,0x6e,0xe3,0x80,0x6a,0x48,0xf9,0x4d,0x70,0xb1,0x1f,0x32,0xf7,0xea, + 0x48,0x3c,0x9a,0x00,0xb1,0xa5,0x35,0xce,0x5a,0xd6,0xee,0x38,0x60,0xda,0x1d,0xd8,0xdd,0xd4,0x70,0xfe, + 0x51,0x45,0x53,0x04,0x7e,0x94,0x2b,0x9c,0x91,0x8f,0x50,0x9b,0x5e,0xcd,0x05,0x15,0xc6,0x56,0x85,0xd1, + 0xaa,0x49,0x18,0x55,0xe1,0x4f,0x39,0xbb,0xf5,0x63,0x97,0xe7,0xd2,0xeb,0x11,0x8d,0x18,0xe2,0x3c,0xed, + 0xf1,0x6d,0xaf,0xe4,0x39,0xd8,0x63,0xdf,0x7d,0x7e,0x5b,0x7a,0x22,0x50,0x7a,0x9d,0x8f,0x7e,0x4f,0xfd, + 0xeb,0x3c,0x08,0x7f,0x4d,0x99,0x5b,0xaf,0x99,0x05,0xeb,0xfc,0x4d,0x39,0x2c,0x28,0xfd,0x99,0xc2,0x85, + 0x6f,0x5c,0x56,0x4f,0x41,0x34,0x00,0x61,0x71,0x3c,0x9f,0x64,0x8a,0xc3,0x2a,0xb8,0xa5,0x95,0x2d,0x84, + 0x9e,0x08,0x1e,0xe0,0xaa,0xc9,0x10,0xcb,0x96,0x90,0x98,0xc2,0x4a,0x57,0x69,0xf2,0xaa,0x85,0xbf,0x72, + 0xa3,0xa1,0xb8,0x8a,0xbe,0x81,0x57,0x95,0xda,0x1d,0xf2,0x50,0x17,0x90,0xcb,0x98,0x95,0x5c,0x42,0xe9, + 0xba,0x6f,0xbd,0xff,0x38,0x17,0x4d,0x41,0x0f,0x3a,0x13,0xd4,0xc1,0xb4,0x5f,0xd4,0x94,0xb7,0x39,0xbd, + 0xa6,0xf7,0x6b,0x53,0x8b,0x8e,0x6e,0x7d,0xb0,0x53,0xbc,0xcf,0xa0,0xd1,0x07,0x83,0xa4,0x58,0x8b,0xb4, + 0xa0,0x97,0x58,0xe5,0x6f,0x92,0xac,0x0c,0xcb,0x0d,0x47,0x06,0x0a,0x46,0x89,0x21,0x1b,0x61,0x05,0x7a, + 0x57,0x39,0xa5,0x30,0x49,0xe6,0xc5,0x14,0x03,0x21,0x89,0x07,0xb9,0xd3,0xa2,0x7d,0x1b,0x0a,0xcc,0x56, + 0xf5,0x9a,0x5a,0x30,0x1e,0x27,0x35,0x6c,0x32,0x48,0x43,0x69,0xdc,0x69,0xec,0x9e,0xad,0x44,0xe8,0xc7, + 0x82,0x0d,0xc2,0xb7,0xdc,0xc4,0xb7,0xb7,0x69,0xb3,0xb0,0xb2,0xb6,0x6e,0xe1,0xde,0x31,0x9b,0x47,0x10, + 0xbb,0xe2,0x1b,0xd8,0x44,0x1c,0x63,0x2d,0x48,0x82,0x34,0xf8,0x2a,0x7d,0x9f,0xb0,0x1c,0x07,0xa6,0x50, + 0x89,0x82,0x4c,0xe7,0x6d,0x1e,0xfd,0x3b,0x07,0x9e,0x70,0xae,0x9b,0x40,0x4b,0xec,0xe3,0x96,0x74,0x4b, + 0x36,0x6b,0xcf,0x19,0x98,0xf0,0x88,0x2b,0x19,0x5d,0x32,0xa2,0xb3,0x35,0x51,0x77,0xa9,0xa9,0xa9,0xde, + 0xcc,0x3e,0x76,0xb6,0xbc,0x10,0x3b,0xe3,0xef,0x4d,0xf5,0xb1,0x3c,0x85,0x65,0x82,0x56,0x14,0xa5,0xc6, + 0xa0,0xa2,0x83,0xbf,0x73,0x44,0xfe,0xba,0xc8,0x7c,0x36,0xa6,0x02,0x03,0xb4,0x9f,0xdb,0xe7,0x6d,0x13, + 0x50,0x6b,0x00,0xca,0x6a,0x50,0x26,0x2e,0x84,0xf6,0x0a,0x6d,0x5d,0x07,0x71,0xf1,0x86,0x25,0x01,0x9a, + 0xa9,0xed,0x43,0xad,0xcf,0x18,0x02,0x26,0x6a,0x51,0x1b,0x95,0x21,0x8c,0x20,0x25,0x0c,0x10,0x28,0xe6, + 0x1d,0x4d,0x50,0x80,0xff,0xd4,0x89,0xc5,0x53,0x62,0xb5,0x40,0xdd,0x4b,0x34,0x59,0xe1,0x01,0x1f,0x73, + 0x54,0xa0,0xda,0x10,0x0c,0x2f,0x06,0xab,0x8c,0xbd,0x34,0x03,0xa5,0x79,0x68,0xfb,0x69,0xac,0x16,0x5c, + 0x19,0x27,0xc7,0x0f,0x6d,0xfb,0x0d,0x34,0xe1,0xa9,0xb5,0x7d,0x6c,0x9d,0x01,0xe4,0x21,0xfc,0xae,0x28, + 0xb3,0x74,0x84,0xed,0xed,0x5a,0xec,0x9d,0x30,0xf1,0x4e,0x74,0xf6,0xfc,0x51,0x4e,0x13,0xcd,0xf7,0x00, + 0x75,0xc0,0x69,0x42,0x9d,0x71,0xd4,0xfc,0x68,0xda,0xcb,0xef,0xc7,0xb5,0x67,0xad,0xb2,0x95,0x09,0x9e, + 0x94,0xf8,0xc0,0xa2,0x96,0x61,0x15,0xb7,0xa3,0x65,0x06,0xe6,0xe9,0x86,0xe8,0xd0,0x06,0xb8,0x68,0x7f, + 0x06,0xad,0x79,0xb4,0x45,0xb1,0x39,0x72,0xf1,0xfe,0x67,0xd3,0x9e,0x66,0x44,0x9b,0x5b,0x06,0x8d,0x12, + 0x84,0x01,0x69,0x4c,0x11,0x65,0x17,0x00,0x6f,0xa5,0xaf,0xd7,0xf7,0x1a,0xc9,0xec,0xb6,0x9d,0x5d,0x46, + 0x68,0xec,0x02,0xd6,0xcc,0xb6,0x04,0x7f,0xc4,0x4c,0xe0,0x38,0x20,0x2d,0x69,0x27,0xaa,0xae,0xa3,0x15, + 0xc3,0x7d,0x7b,0xb9,0x6c,0x30,0x77,0x3f,0x71,0x5d,0x3d,0xaa,0x0c,0x0c,0x7d,0xc2,0xc0,0x37,0xfc,0xef, + 0x2d,0x4c,0xe5,0xef,0x58,0x13,0x0e,0x63,0x00,0xb7,0x50,0x27,0x56,0x69,0x9c,0x85,0xc9,0x59,0xc6,0x86, + 0x47,0x5a,0x56,0x7c,0x4b,0xc7,0x00,0x71,0xc7,0xda,0x08,0x33,0x37,0xa1,0x6b,0x5b,0xd7,0x25,0xf4,0xa1, + 0x95,0xb2,0x69,0x06,0xfb,0xb3,0xeb,0x2a,0xf1,0x13,0x8c,0x43,0xf9,0x86,0x51,0x66,0x05,0xcd,0x41,0x36, + 0xad,0x14,0x77,0x40,0x85,0xdc,0x40,0x35,0xcf,0x34,0x3f,0x19,0xe5,0x61,0x1a,0x18,0x47,0xa8,0x1b,0x54, + 0x96,0x19,0xb9,0x39,0x3b,0xf2,0xd1,0xcf,0x51,0x7d,0xdd,0xc4,0xf7,0xe1,0xe6,0xa2,0xdc,0x66,0x86,0x30, + 0xad,0x61,0xbe,0x0c,0x9f,0x91,0xee,0x3d,0x54,0xab,0x77,0xce,0xc7,0xf5,0x5a,0x0c,0x48,0xdd,0xf2,0x8e, + 0x48,0x06,0x51,0x6c,0x7b,0x59,0xe0,0xe9,0x86,0xb0,0xd1,0xe9,0x08,0xaf,0x23,0xba,0x99,0x14,0x3a,0xfe, + 0x62,0x78,0xc4,0x8f,0x27,0xe2,0x0a,0xa8,0x8c,0x1e,0xe5,0x1c,0xfe,0xdc,0xc8,0xe9,0xcb,0x41,0x52,0x14, + 0x39,0xb1,0x10,0x29,0xed,0x9d,0x2a,0x5d,0x96,0x51,0xae,0x4a,0x8d,0x84,0x6e,0xa1,0xcd,0x91,0x2e,0x92, + 0x30,0x51,0xfa,0xe9,0x55,0xfe,0xb5,0x9e,0xaa,0xb2,0x43,0x9b,0xbf,0xc3,0x00,0x76,0xeb,0x3a,0x40,0xfb, + 0x50,0x20,0x7c,0xcf,0x77,0x70,0xc4,0x17,0xf2,0x12,0xe8,0x3b,0xa9,0x5e,0x51,0x1b,0x27,0xe4,0x70,0x73, + 0x66,0xaf,0x22,0x46,0xda,0x28,0xc9,0x4d,0x0b,0xfa,0x74,0x20,0x32,0xec,0xc2,0x73,0x9a,0x61,0x2f,0xe1, + 0x78,0x4f,0xac,0xe9,0x21,0x33,0x29,0xa0,0xec,0x09,0xab,0x6a,0xac,0xb8,0x1d,0xb3,0xb6,0x0f,0x9a,0x21, + 0xea,0xa2,0x06,0xb7,0x69,0x8d,0x3c,0xea,0x2b,0xba,0xb8,0x9d,0xd2,0xd4,0xd7,0x73,0x02,0xa6,0x00,0x76, + 0xa6,0xd0,0x4f,0x40,0xfb,0x11,0xc1,0x26,0xae,0x34,0x36,0x81,0xff,0x4b,0x1e,0x0c,0xb6,0x27,0x8f,0xb2, + 0xc5,0xd1,0xde,0x1e,0x3c,0xd9,0x5f,0x66,0x3e,0xae,0x9a,0x32,0xf7,0x1d,0x1e,0x9f,0xe2,0x4e,0x6b,0x9c, + 0xaf,0x5c,0x8b,0x31,0x0e,0x73,0x6b,0x75,0x4c,0xa8,0xed,0x34,0x8e,0x3a,0x2c,0xab,0x4c,0xf6,0x8f,0x1b, + 0x5d,0x01,0xf7,0xb1,0x71,0x12,0x37,0x03,0x75,0xd2,0x86,0xed,0x27,0xd1,0x97,0x6e,0x92,0x79,0x30,0x51, + 0x98,0xb7,0x23,0x8b,0x36,0x42,0x8e,0xb3,0x5b,0x83,0x4c,0x4f,0xb7,0xd9,0x9e,0xa0,0x14,0xe5,0xfc,0xe1, + 0xed,0x18,0xb0,0x72,0x26,0xaf,0x74,0x1d,0x83,0xb0,0x08,0xbc,0xbf,0x09,0xc9,0x6a,0xa3,0x26,0x30,0xc1, + 0x50,0xc4,0x10,0x2b,0x58,0x57,0x5c,0x7b,0x8e,0xe7,0x2e,0xb7,0x2b,0x05,0x93,0x92,0x66,0x92,0x84,0x8b, + 0xe5,0xf2,0x5b,0x26,0xab,0xf9,0xaa,0x6a,0x78,0x8c,0xeb,0x39,0x49,0x1f,0xb6,0xe2,0x13,0x2d,0x6b,0xbb, + 0x2e,0x2d,0x77,0xd2,0xb5,0xf1,0x26,0x33,0xff,0xee,0x9a,0x61,0x9a,0x65,0xe4,0xc6,0xdb,0x04,0xdc,0xe8, + 0xdd,0x76,0x0b,0x97,0xe2,0x0f,0x0a,0x92,0x32,0xc4,0xb1,0x32,0x5b,0x23,0xcc,0x9c,0x7d,0x62,0x48,0x38, + 0xa4,0x9a,0xc7,0x8d,0x8e,0xf4,0x0e,0x92,0x4a,0xef,0x00,0xa8,0x9e,0xb5,0xc0,0x7d,0x68,0xd6,0x8b,0xb0, + 0x42,0xb6,0xbd,0x3b,0xac,0xc9,0x7e,0x1a,0x6b,0x47,0x3e,0x6c,0xde,0x66,0x6c,0xd9,0x34,0xdc,0xd3,0x98, + 0xe8,0x6d,0x13,0xb4,0x8c,0x12,0x3c,0x89,0x1f,0x56,0xaf,0xb3,0xdc,0x47,0x83,0xdd,0x58,0x65,0x12,0xdd, + 0x71,0x46,0x58,0x4c,0x7f,0x14,0x44,0x37,0x92,0x9f,0x81,0xce,0x1a,0x25,0x7e,0x67,0x98,0x59,0x29,0x0d, + 0xb9,0x30,0x7e,0x07,0xf1,0xd5,0x6c,0x24,0x8f,0xb4,0x29,0x89,0xcf,0xfd,0x79,0x95,0x3c,0x3d,0xf9,0x67, + 0x86,0xd2,0x9b,0x56,0x10,0x6a,0xea,0xd6,0x8a,0x00,0x04,0x20,0x48,0x5d,0x1b,0x3a,0xb4,0x82,0xf4,0xb9, + 0xa3,0x67,0xb8,0x6b,0xcf,0xd9,0x66,0x49,0x3f,0x31,0x0a,0xf3,0xbd,0xf1,0xf5,0x2a,0x39,0x4c,0xa9,0x9d, + 0x49,0xcf,0xeb,0xc3,0x0f,0xe5,0xc1,0x41,0x23,0x03,0x1f,0xe9,0xd3,0x37,0xae,0xa3,0xed,0xa4,0x15,0x10, + 0x4f,0x98,0xae,0xad,0x89,0xaa,0xea,0x12,0x2e,0x0e,0xba,0xd6,0x6b,0x80,0x7d,0x7b,0xd5,0xb8,0x4e,0x6d, + 0x45,0xd9,0x43,0x98,0x3d,0x1b,0x5b,0xc2,0xa9,0x2c,0x75,0xe3,0x83,0x8b,0x28,0xd0,0x5e,0xea,0x5b,0xe2, + 0x0f,0x12,0x07,0x08,0x02,0xeb,0x4f,0x20,0xfb,0xf4,0x6e,0x86,0x1a,0x5f,0xca,0x3f,0x66,0x2f,0xb0,0x60, + 0xc2,0x70,0x96,0x62,0x90,0x4e,0x64,0x6d,0x53,0xa1,0x95,0x13,0x47,0x29,0x9b,0x1a,0x86,0x5b,0xdb,0xbf, + 0xe2,0x50,0xf3,0x70,0x98,0x8c,0x6c,0xe1,0x5d,0xa7,0x42,0x16,0x09,0x7e,0x30,0xbb,0xf2,0xd1,0xe6,0x49, + 0x57,0x9b,0x94,0x08,0x3c,0x92,0x46,0xf2,0xa8,0x6e,0x89,0x62,0x89,0xe9,0xb0,0x2b,0xc4,0x3e,0xa9,0x0c, + 0x53,0xc7,0x1b,0x68,0x5e,0x1b,0x71,0x63,0x45,0x74,0xa3,0x16,0x06,0xaa,0x86,0x4a,0x96,0x91,0xcd,0x69, + 0xf5,0x85,0xb5,0x63,0x13,0x39,0x4e,0x76,0x18,0xa3,0x44,0x08,0x54,0x38,0x88,0xcf,0x21,0xc6,0x56,0x18, + 0x63,0x32,0x82,0x2b,0xef,0x60,0x94,0x3d,0x38,0x19,0x9d,0x84,0xc7,0xe1,0x49,0x58,0x8d,0x38,0xcf,0x55, + 0x8a,0xa2,0x77,0x83,0xf0,0xd8,0x84,0x53,0x85,0xdf,0x2d,0x7d,0x3f,0x34,0x19,0x65,0x2c,0x05,0x62,0x4e, + 0x2b,0x74,0xd6,0x36,0x76,0xa0,0x80,0x59,0x53,0x0e,0xfb,0xdd,0xe6,0x52,0x1b,0x6e,0xdf,0x4b,0x57,0xe8, + 0xe4,0x80,0x82,0x32,0x54,0x95,0x90,0x53,0xc4,0xc4,0xdc,0xdf,0x02,0x93,0xd4,0xd0,0xeb,0xb9,0x84,0xe3, + 0xc1,0x65,0x83,0x89,0x56,0x92,0x1b,0xb7,0x14,0x91,0x8d,0xa9,0xa1,0xaf,0x24,0xd0,0x18,0x53,0x36,0x79, + 0x30,0x25,0x8c,0xb3,0x8a,0x62,0x75,0x21,0x40,0x0d,0x3f,0x8d,0xec,0x7d,0x34,0x07,0x29,0x33,0x62,0xaa, + 0xa6,0x64,0xe2,0x46,0x71,0x4a,0xc8,0x29,0xfc,0xa8,0x69,0x7d,0xb5,0x32,0x93,0x5e,0x34,0x43,0x14,0x30, + 0x71,0xb8,0x60,0x07,0xdb,0x70,0xf2,0xac,0xdd,0xc1,0xd9,0x2c,0xab,0xda,0xbd,0xef,0x82,0xd5,0x7d,0x21, + 0xf2,0xeb,0x90,0x79,0x24,0xc6,0xd5,0x59,0x6d,0xc1,0x78,0x26,0x10,0xc4,0x5e,0xd1,0xf6,0xb1,0xf3,0x07, + 0x92,0xb0,0xd1,0xf5,0x38,0xd8,0x84,0x2f,0xb0,0x21,0x29,0xc1,0xb9,0x56,0x9b,0x9a,0x6b,0x8e,0xca,0x67, + 0xc7,0x90,0xf0,0x14,0xc8,0x87,0x66,0x4a,0x94,0x7a,0x6e,0x32,0x41,0x94,0x88,0xab,0x77,0x21,0x87,0xb2, + 0xa0,0xf6,0xce,0x43,0xb9,0xab,0xe2,0x9d,0x9e,0xd1,0x76,0xfc,0x24,0xa2,0x82,0x9a,0x49,0x52,0x37,0x91, + 0x88,0xa5,0x85,0x5d,0xa3,0xae,0x10,0xd9,0x1b,0x75,0x48,0x09,0x85,0xe5,0xb4,0x53,0xe0,0x46,0x23,0x06, + 0x07,0x55,0x70,0x64,0x66,0xa9,0x6c,0xbd,0x2e,0x6b,0xd6,0x56,0x54,0x26,0x5c,0xfe,0x35,0x83,0xaf,0x1f, + 0x37,0xa1,0x26,0x43,0xa7,0x75,0xdb,0x2b,0xdb,0xf6,0x74,0xab,0x6d,0xa7,0x65,0xc0,0xb9,0x71,0x05,0xb7, + 0x61,0xdd,0xa7,0x5a,0x0d,0x8e,0xb8,0xe7,0x0d,0x51,0xe1,0x62,0x3a,0x92,0x59,0xdf,0x64,0xe0,0xda,0x6b, + 0xcd,0x08,0xb3,0x18,0x0b,0x97,0x5d,0xc8,0xda,0xab,0x5a,0x8c,0xf6,0x88,0xb0,0xe0,0xd5,0x84,0xd8,0xdb, + 0xf7,0xb2,0xbc,0xa2,0x93,0x2a,0x2d,0xab,0x9e,0x3e,0x46,0x7a,0xa9,0xf6,0xf4,0x03,0xc0,0xa5,0x34,0xfb, + 0xee,0x41,0xe5,0x98,0x3d,0x4c,0x37,0x0b,0x35,0x0b,0x80,0x2e,0xe8,0xe9,0x46,0xa5,0x84,0x1b,0x58,0x22, + 0x11,0x48,0x94,0x9d,0xb4,0x45,0x0e,0xe2,0xa3,0x0d,0x64,0xd8,0xc6,0x83,0x23,0x3a,0x78,0x11,0xb4,0x84, + 0xf7,0x0d,0xcb,0x1f,0xaa,0x4b,0xf8,0xa3,0xd1,0x40,0xc9,0x17,0xc3,0xb4,0x6f,0x89,0x06,0xb8,0xc5,0xa7, + 0x10,0x71,0x6e,0x35,0x02,0x44,0x32,0xd0,0x1f,0x51,0xdb,0x22,0xfd,0x27,0xda,0x20,0x97,0x0a,0x88,0x3f, + 0x30,0x15,0xd0,0x16,0xe5,0x0a,0xcc,0xd2,0xaf,0xd7,0x53,0x8e,0x2c,0x63,0xa2,0xb6,0xa4,0x76,0x2e,0xe1, + 0x04,0xa9,0xd2,0x32,0x54,0x13,0x12,0xcf,0x5f,0xd0,0x4a,0xf3,0xbc,0x06,0x03,0x13,0x13,0x7e,0xa1,0x68, + 0x03,0x1b,0x2e,0x6a,0x7b,0xd3,0x15,0x0e,0x0d,0x5f,0xc1,0xcb,0xaa,0x89,0x1c,0x8f,0xc3,0xb7,0x1d,0x17, + 0x04,0xbe,0xe5,0xd9,0x17,0xa3,0xce,0x96,0xb0,0x10,0x8a,0x68,0xa1,0x80,0x49,0x30,0xb3,0x57,0x57,0x8d, + 0x9d,0x2a,0x96,0x52,0x9a,0x48,0xf4,0x3d,0x13,0xa0,0xb7,0xf7,0x5f,0x18,0xfb,0x7f,0x61,0xbd,0xae,0x0f, + 0xab,0x5e,0x1d,0x37,0x5b,0x8b,0xc7,0xf5,0x0a,0x97,0xab,0x25,0xc8,0x92,0x9e,0x98,0xe9,0x88,0xa5,0x5a, + 0x23,0xa0,0x07,0x6f,0xf9,0xfa,0xe4,0x15,0x1e,0x0f,0x4f,0x7a,0xd7,0x78,0xb4,0x70,0x9e,0xd5,0x42,0x04, + 0xb5,0x0b,0x4d,0x47,0xa6,0x78,0x87,0xa2,0x98,0x87,0x2d,0x00,0x1d,0xc0,0xde,0x97,0x27,0xa1,0xfc,0xde, + 0x93,0xdf,0xcf,0xff,0x2e,0xbf,0xf7,0x3e,0xd7,0xbf,0x5f,0xea,0xf4,0x7f,0x86,0x36,0x00,0x99,0x14,0xf8, + 0x42,0x67,0xd0,0x05,0x3e,0xff,0x22,0x34,0xea,0xc5,0x33,0xa8,0xba,0x4b,0xae,0x7b,0x77,0x75,0xf5,0xf2, + 0x73,0x72,0xac,0x7f,0x75,0x6b,0x27,0x7f,0xd7,0x09,0x7f,0xff,0xe2,0xee,0x3f,0x74,0x9e,0x7f,0xde,0x35, + 0x85,0xe8,0xe9,0x9e,0xa9,0xf4,0xa6,0xf4,0xec,0xc5,0xdf,0x83,0xe8,0xcb,0x7f,0x10,0xcb,0x72,0x3f,0x3a, + 0xb9,0x7b,0x77,0xbd,0xa6,0xd7,0xbf,0x7f,0xc1,0xaf,0x5f,0x1e,0x8f,0x74,0xe3,0x21,0x25,0x7e,0xfe,0x25, + 0x27,0x7e,0xf1,0x8f,0x91,0x27,0x86,0x10,0x5e,0xe8,0xf1,0xb5,0x4f,0x47,0x40,0x12,0x4c,0x93,0x9c,0x75, + 0x1a,0x2e,0x7c,0xef,0xd8,0xdb,0x73,0x82,0x17,0x1f,0x43,0x86,0x96,0x96,0xdf,0xc7,0xdf,0x4b,0x50,0x36, + 0x42,0xb8,0x89,0xfa,0xde,0x44,0xab,0xeb,0xbc,0x73,0x6b,0x4e,0xbb,0xe9,0xbb,0xad,0x54,0x7f,0xb2,0xca, + 0x3c,0x27,0xd4,0xc2,0xbd,0xcf,0x21,0xd6,0x39,0x38,0xb8,0xf7,0x25,0x7e,0x47,0x55,0x68,0xc3,0xb8,0x29, + 0xfa,0x0e,0x56,0x30,0xf4,0x3e,0xf3,0xfa,0x89,0x09,0x80,0x2e,0xfe,0xad,0xae,0x0d,0x2e,0xac,0xb9,0x32, + 0xe3,0x7b,0x03,0x9a,0x0a,0x63,0x21,0xfb,0x7a,0xda,0x53,0x9e,0xa7,0x2e,0xb6,0xf3,0x5f,0xc6,0xe5,0x8b, + 0x9b,0xcc,0x04,0xda,0x53,0xef,0xa2,0x2e,0x02,0xf5,0x69,0x56,0x2d,0x9c,0x60,0x61,0x78,0x1d,0x3c,0x46, + 0x64,0x9b,0xf4,0x2a,0x21,0xe6,0xe1,0x2a,0xae,0xd4,0xd9,0x27,0x17,0x14,0x2f,0x7e,0xba,0xd8,0x79,0x74, + 0x2b,0x8e,0x35,0x1e,0xb5,0x82,0x54,0x36,0x7c,0x1a,0xb9,0x0c,0x60,0x35,0xc0,0x6e,0x8b,0xe4,0x87,0xef, + 0x11,0xcf,0xce,0xf0,0x38,0xba,0xdd,0x84,0x26,0x22,0x11,0xe3,0x84,0x5b,0x9b,0xd9,0xa2,0x4b,0xea,0xd1, + 0x73,0x9d,0x2e,0x85,0x02,0x73,0xdc,0x21,0xd0,0xe2,0xd0,0xa4,0x76,0x3a,0xbd,0x49,0x88,0x5a,0x48,0x94, + 0x43,0xf8,0x54,0x6c,0x4c,0xe0,0x1e,0x46,0x49,0x47,0x04,0x46,0x09,0x69,0x8a,0x4a,0xd9,0x77,0xf0,0x33, + 0x46,0x12,0xcf,0x93,0xb2,0x8c,0x2f,0xd8,0x77,0x8e,0x9c,0x7d,0xfa,0xf8,0xa1,0x66,0xc4,0xe3,0xd4,0x99, + 0x33,0x46,0x55,0xa7,0xfc,0x82,0x5c,0x89,0xf6,0x08,0x26,0x5d,0xbd,0x41,0x12,0x0e,0x11,0x68,0x2a,0xfb, + 0x81,0x93,0x99,0x75,0x24,0xa6,0x45,0x7a,0x9e,0xe0,0xd3,0x23,0x98,0xfa,0x70,0xf4,0x21,0x66,0xda,0x24, + 0x9b,0xc9,0x21,0xce,0xe0,0x36,0x75,0x3c,0x0e,0x3d,0x85,0x32,0x57,0xbc,0x02,0x45,0x9e,0x57,0x26,0xc8, + 0x3d,0x9e,0x05,0xe9,0x6d,0xa7,0x34,0xe6,0x9a,0xaf,0x4f,0xb9,0x2f,0xc8,0x10,0xb5,0xf3,0xea,0x95,0x1a, + 0xcc,0x89,0x3e,0x3b,0x27,0x46,0x46,0x26,0x67,0x2b,0x5b,0xeb,0xbb,0x29,0x55,0x12,0x63,0x98,0x89,0xfe, + 0xe9,0x82,0x8d,0x14,0x7e,0x61,0x55,0xf0,0x76,0xe1,0xce,0x6c,0xec,0xa8,0xb7,0x09,0x01,0xc5,0x47,0x21, + 0xa0,0x00,0xbd,0xb8,0x0d,0x01,0x76,0x79,0x79,0x4d,0xcb,0xa8,0xe8,0x5e,0x4c,0x5c,0xb0,0x3f,0x37,0x13, + 0xfb,0xbf,0xb6,0xa6,0xca,0x39,0x2c,0xf4,0xb4,0xbd,0xcb,0xf8,0x9a,0xcf,0xbe,0xf0,0x5d,0xb8,0xf8,0x05, + 0xe4,0xf9,0x6d,0x74,0x68,0xbf,0xee,0x90,0xcc,0xbe,0x1f,0x58,0x47,0xf1,0x7f,0x1d,0x2e,0x46,0xbe,0x0b, + 0xe5,0x5b,0x50,0xf1,0xd7,0x87,0x0b,0xde,0x5c,0x6e,0x49,0x70,0xc9,0xaa,0x03,0x2c,0x98,0x1e,0x35,0xde, + 0xb7,0xe0,0xd4,0xdd,0x76,0x6e,0xc6,0xff,0x56,0x77,0x8c,0x1f,0xb8,0xc7,0xed,0x30,0xb5,0xc6,0x11,0x9c, + 0x74,0xcd,0xdf,0x2a,0xdc,0xe8,0xd1,0x60,0x95,0x7d,0xa8,0x65,0x2d,0xf8,0xdc,0xaa,0xa3,0x03,0xca,0x1a, + 0xd5,0xea,0x34,0xbf,0x55,0x83,0xf3,0xc9,0xd4,0xd0,0x00,0x8c,0x6e,0x70,0x69,0xd7,0xd2,0xf8,0xe8,0xf6, + 0x44,0xc2,0xc6,0x6d,0x36,0xea,0xc6,0x78,0x6d,0x45,0x6a,0xed,0xcd,0x31,0x5e,0xc0,0xd0,0x5b,0x1c,0x2b, + 0xb2,0xd6,0xdb,0xad,0xeb,0xc9,0x56,0x6b,0x05,0x84,0xe2,0x32,0x71,0xc3,0x11,0xc9,0x9b,0x39,0x0c,0xc5, + 0x85,0x8b,0x43,0x43,0x8f,0xba,0x19,0x36,0x8a,0x6f,0xc3,0x4b,0x9d,0x38,0x66,0x6a,0xcf,0x3a,0x93,0xdd, + 0x6c,0x79,0x72,0x6c,0x90,0xf6,0xdc,0x2d,0xc8,0x27,0x24,0x7c,0x06,0xa2,0xc8,0xd6,0xd6,0x66,0xf8,0xee, + 0x00,0x8e,0xc4,0xd3,0xf0,0x73,0x11,0xec,0x7f,0xd4,0x75,0xac,0x0e,0x0b,0x17,0xc9,0x8f,0x0d,0xbf,0x4b, + 0xf4,0xbc,0xe3,0xc8,0x55,0x04,0xf0,0x85,0x10,0xd2,0x88,0xe6,0xa1,0x09,0xe9,0x15,0x04,0xd4,0x0b,0x7c, + 0xe0,0xb1,0xb1,0x41,0xe8,0xbc,0xc5,0xae,0x2d,0x82,0xd1,0xc2,0x04,0xfd,0x3d,0x0e,0xdd,0x73,0x6b,0x11, + 0xd8,0x74,0xd6,0xc0,0x6e,0xf1,0x4c,0xae,0x3f,0x3e,0x6c,0xa3,0x3a,0x80,0x79,0x4d,0xf2,0x38,0x41,0xcd, + 0xb9,0x0b,0x86,0xea,0xa9,0xe3,0x9e,0x1f,0x1c,0x78,0x7c,0x99,0xb8,0xd9,0xd4,0x22,0xfd,0x83,0x83,0xdc, + 0xb6,0x4c,0x4c,0xe9,0x92,0x6a,0xf7,0xbd,0xa7,0xf3,0x9e,0x8c,0xa2,0x87,0xd9,0xee,0xa5,0x65,0x0f,0x4e, + 0x66,0x7a,0x74,0x06,0xf4,0x78,0xae,0x7b,0x89,0x88,0x4c,0xcb,0x1e,0xcc,0x1f,0x7a,0x97,0xf1,0x75,0x22, + 0x05,0x24,0x3f,0x65,0x1e,0x10,0x17,0xd4,0x31,0xf6,0x6d,0x9c,0x0e,0xb6,0x60,0x45,0x0c,0x20,0x9c,0x87, + 0xb6,0x67,0xa4,0xeb,0x04,0x58,0xc1,0xf3,0xd9,0x82,0xfe,0x40,0xc5,0x72,0x47,0x7d,0xc2,0xdb,0x2f,0x47, + 0x1e,0xcc,0xa7,0xda,0xd3,0x12,0x52,0x6a,0x32,0x5c,0x41,0xf8,0x05,0x71,0xa6,0xf6,0xfa,0xaf,0x52,0x15, + 0x0f,0x52,0x5f,0x62,0x4f,0x60,0x6b,0xbc,0x8d,0xb6,0x10,0xc5,0x94,0x5a,0xa2,0xc3,0xa5,0xe3,0x82,0x64, + 0x33,0x7c,0xeb,0xd0,0x73,0x29,0xec,0x06,0x97,0x39,0xe4,0xe1,0xae,0x9c,0xa8,0x36,0x1f,0x76,0x6a,0x83, + 0x6b,0x39,0xc3,0xa4,0x42,0x0b,0xef,0x83,0x1a,0x7d,0xc4,0xf8,0x79,0x9e,0xab,0xd6,0x67,0xe5,0xcd,0xe3, + 0xac,0xdf,0x67,0xf9,0x8c,0x77,0xab,0xfd,0xbf,0x16,0xb8,0x56,0x70,0xae,0xf5,0x59,0x3d,0xc5,0xd3,0xba, + 0x62,0x05,0x2e,0xf3,0x51,0x97,0xb0,0xa4,0xf4,0x20,0x36,0x16,0xba,0x1e,0x6f,0xc3,0x3a,0x2c,0xc3,0x20, + 0xef,0x47,0xa9,0xb2,0xc9,0x22,0x93,0xd8,0x17,0xba,0x3b,0x0f,0x46,0x1e,0x3b,0x1b,0x0d,0xdf,0xd4,0x09, + 0x40,0x26,0x33,0xa2,0xf4,0x57,0xe2,0x94,0xce,0x1b,0x9a,0x2e,0x48,0xb3,0xb9,0x78,0xc4,0x8e,0x37,0xa2, + 0x25,0xef,0xfd,0x5f,0xdc,0xd7,0x11,0xf5,0x19,0x84,0x39,0xad,0x08,0x44,0x7e,0xd4,0x64,0x10,0xe2,0xaf, + 0xe1,0x38,0x3e,0x3a,0x12,0x88,0x66,0x0c,0x7a,0xb3,0xb3,0x1a,0x15,0x0d,0x51,0x75,0x56,0x33,0x9f,0x4a, + 0x82,0x4f,0xb7,0x65,0x2b,0x66,0x38,0x1c,0xa4,0x6e,0x7b,0x24,0x98,0x5b,0xf3,0xc2,0xb6,0xe1,0xa6,0x77, + 0x3c,0x75,0xc3,0xb4,0xbd,0x28,0x31,0x0d,0x28,0x9d,0x18,0x86,0x2f,0xd6,0xf7,0xd2,0xe0,0xac,0xa4,0xff, + 0xa1,0xe6,0x68,0x63,0xcd,0x9c,0x8b,0xd6,0x2b,0xf3,0x6d,0xba,0x23,0x3a,0x43,0x36,0x66,0x4a,0x87,0xe8, + 0x76,0x93,0x57,0x9d,0x1c,0x07,0x93,0x46,0x01,0xd3,0x5b,0xf9,0x15,0xb5,0x70,0x5b,0x5c,0x97,0x22,0x1a, + 0x37,0xed,0xf7,0xed,0xa4,0x6e,0x38,0xdc,0xdd,0x86,0x17,0x75,0x3f,0x3a,0xfa,0xc3,0x3f,0x9d,0x05,0xfd, + 0x23,0xf5,0x86,0x1f,0x6f,0xf0,0xf8,0x88,0xa6,0xe9,0x65,0x74,0xa2,0x1e,0x46,0x77,0xd5,0xab,0xe8,0x9e, + 0x7a,0x41,0xef,0xaf,0xa3,0xcf,0xd5,0x93,0xe8,0x0b,0xf5,0x2c,0xfa,0xbb,0x7a,0x1a,0xfd,0x43,0x7d,0x1d, + 0xfd,0x53,0x3d,0x06,0x43,0xff,0x78,0xfc,0x62,0x12,0xdd,0xde,0x94,0x21,0xfd,0x2a,0x66,0x03,0xc3,0xf1, + 0x3d,0xf5,0x68,0xa2,0xbc,0xb1,0x17,0x8e,0x5f,0x4f,0x14,0x1d,0xf2,0xe1,0xf8,0xe9,0x64,0xa3,0x1e,0x8f, + 0x4f,0x74,0xce,0x13,0xfa,0x3a,0xa0,0xaf,0x77,0x3b,0x73,0xdd,0xd5,0xb9,0xee,0x36,0xeb,0x3b,0xd6,0xbf, + 0xc2,0x55,0xca,0x0b,0xb2,0xdf,0xa3,0xec,0x1f,0xcb,0xa7,0xb8,0x55,0xf5,0xd2,0xb4,0xcb,0x4f,0xdc,0x32, + 0x9e,0xa4,0x6d,0x7a,0x42,0x75,0xaf,0xa9,0x3a,0xef,0x0e,0x7d,0x7a,0x82,0x72,0x77,0xbc,0x3b,0xe1,0xf8, + 0x59,0x3d,0x1c,0xf5,0x90,0x9e,0x26,0x1e,0x2a,0x7b,0x25,0x05,0xbf,0x66,0x7b,0x3e,0x7c,0x92,0xee,0x3c, + 0x31,0xe5,0x91,0xd0,0xc8,0xf1,0x44,0xe7,0x78,0x46,0x39,0xb8,0xde,0xad,0x1c,0x68,0x48,0x16,0xe6,0x7b, + 0xb6,0x79,0x26,0x52,0xad,0x58,0x25,0x6b,0xb6,0xe5,0x5c,0x1f,0x8e,0xc6,0xa7,0xb3,0xc1,0xa4,0xbf,0xbe, + 0xc3,0x3e,0xb0,0xee,0xac,0x3d,0x76,0x8b,0xe5,0x05,0x94,0x0f,0x8e,0x89,0x76,0xa0,0xad,0x6e,0xac,0xf5, + 0x83,0x83,0xb5,0x18,0xca,0x7e,0xa0,0x43,0x6d,0x5b,0x42,0xe5,0x62,0x2c,0x07,0x61,0x41,0x85,0x34,0xe9, + 0x90,0x67,0x99,0xb0,0x77,0x31,0x42,0xf9,0x60,0xc3,0xad,0xa2,0xc3,0x13,0x3a,0x1a,0x5f,0x70,0xdc,0xbb, + 0x4b,0x80,0x0b,0xf6,0xcc,0xe5,0xf8,0xe5,0xa4,0x61,0xdc,0x61,0xce,0xa9,0x8c,0x75,0x79,0x04,0x7a,0xe1, + 0xa2,0x50,0x3e,0xc0,0x56,0x7f,0xfc,0xa8,0xa3,0x04,0x24,0xb5,0xa3,0x2c,0x2a,0xc2,0xac,0x4f,0x84,0x3f, + 0x65,0x7a,0xd8,0xc8,0x84,0x42,0x44,0x19,0xcd,0x09,0xf6,0xe9,0xdb,0xab,0xc6,0x37,0x68,0x44,0x3e,0x38, + 0x0e,0xe6,0x87,0x87,0xd4,0xbd,0xd7,0x4a,0xb2,0xda,0xbb,0x48,0xf4,0x76,0x0f,0x57,0x1f,0x7e,0x16,0xcd, + 0xd8,0x65,0x9e,0x15,0x8b,0xa2,0xef,0x50,0xc7,0x1c,0x6a,0x19,0xf8,0x82,0x1d,0xc6,0xaf,0xfa,0x7d,0xf8, + 0x4f,0x64,0x65,0x21,0xf8,0x5c,0x5c,0xe1,0xc6,0x62,0xaf,0xc5,0x4f,0xf3,0x87,0xfe,0x09,0x63,0x6b,0x88, + 0x8d,0x9e,0xd0,0xa9,0x7c,0x87,0xd5,0xba,0xd6,0x6b,0xbc,0x3f,0x3b,0x38,0x20,0xb0,0xc0,0xbb,0xf5,0xdd, + 0x4d,0xd5,0x12,0xb6,0xa6,0x8a,0xfb,0x89,0xee,0x23,0x22,0x2c,0xfb,0x81,0xb6,0xe2,0x5a,0x42,0x2c,0x06, + 0x3a,0xa7,0x8c,0x1e,0x8f,0x17,0x93,0x80,0xf0,0xce,0x7a,0x5d,0xb2,0x22,0xe8,0x7a,0xfd,0x35,0x64,0xcb, + 0x5f,0x1b,0xad,0x20,0x6e,0x13,0x76,0x2c,0xca,0x8f,0xa3,0xcb,0x71,0x4e,0x7b,0x70,0x22,0xf7,0xb0,0x39, + 0x36,0x5a,0x11,0xd9,0x29,0x2d,0x46,0x90,0x21,0xf2,0xf0,0x89,0xff,0x09,0x1a,0x15,0x44,0xd1,0x53,0xeb, + 0x1c,0x55,0x94,0xdd,0x2c,0x41,0x6a,0x60,0x84,0x7a,0xaf,0x12,0x90,0x5d,0x1b,0xe5,0x02,0xd9,0x45,0x52, + 0x01,0xc4,0x58,0x90,0xdb,0x3a,0x1b,0x21,0x23,0x4f,0x6a,0x07,0xad,0xf5,0x25,0x8c,0xf1,0xbe,0x6d,0xe0, + 0x13,0x1e,0x6b,0x79,0xdc,0x45,0x8b,0xc2,0x40,0x78,0x37,0x74,0xdd,0xb8,0xd3,0x6e,0xd4,0xe4,0x58,0xfb, + 0xd4,0xa6,0x66,0x84,0xa4,0xb5,0x0b,0xee,0x7c,0x68,0x1c,0x6f,0xc7,0xe3,0x62,0x5c,0x4e,0x9c,0xcb,0x0e, + 0x28,0x9b,0x05,0xb7,0xe2,0x86,0x4a,0xdb,0x26,0xc4,0xd1,0x54,0x95,0x35,0x32,0x8d,0x65,0xb7,0x3e,0xdf, + 0xb1,0x73,0x86,0x35,0xff,0x87,0x79,0x82,0xb6,0xac,0xbd,0x5d,0x12,0xe2,0x71,0xbd,0xf6,0x92,0xec,0xf0, + 0xa7,0x97,0x1e,0xcb,0x73,0x9b,0xbc,0x76,0xfd,0x8d,0x2d,0x92,0x34,0x8b,0xcb,0xe4,0xa5,0x0e,0x63,0xee, + 0xc8,0x80,0x24,0x1d,0x56,0x94,0x99,0x23,0xe2,0xe1,0xd4,0xa1,0x76,0x65,0x7d,0x25,0x17,0x7c,0xf2,0x36, + 0xe7,0xef,0x15,0x58,0xcd,0x81,0x7d,0x5e,0xaf,0xc1,0x28,0xbf,0xd5,0x59,0xae,0xd2,0x12,0xae,0x40,0xd0, + 0xb6,0x3c,0x89,0xc0,0xd3,0x78,0x97,0x66,0xa1,0x02,0xcb,0x16,0x1a,0xe9,0xe0,0x6a,0x23,0x87,0xef,0x15, + 0x96,0x77,0x6f,0x4f,0x9e,0x4c,0xeb,0x7a,0xa0,0xac,0x0f,0xe5,0x64,0x76,0xd3,0xa5,0x90,0x9b,0x62,0x5a, + 0xe8,0x94,0x3d,0x58,0x24,0x52,0x75,0x4b,0x1d,0x88,0xc4,0xdd,0xdb,0xf1,0x49,0xd7,0xdb,0x9c,0x50,0xdc, + 0xbc,0x83,0xb0,0x97,0x6f,0xee,0xa4,0x36,0xbf,0x80,0x1b,0x60,0xf9,0xc2,0x0f,0x75,0x35,0x71,0xed,0x2e, + 0x80,0x90,0xa0,0x24,0xf3,0xfd,0x41,0x0b,0xf2,0x35,0x56,0xf1,0xf7,0x30,0xd8,0x6c,0xbd,0x2e,0xfc,0x44, + 0x2a,0x6c,0x6c,0x17,0x09,0xa7,0x6d,0x8c,0xd2,0xcf,0xe0,0x34,0xf6,0xe7,0xe7,0xbe,0xb9,0xef,0xcc,0x54, + 0x13,0x6a,0x42,0xb8,0x6f,0x14,0x50,0x21,0xb2,0xab,0x05,0x24,0x61,0xac,0x1a,0xe0,0x11,0x96,0x44,0x91, + 0xa9,0x1f,0xa3,0xdb,0xeb,0xab,0xf0,0x76,0x53,0x17,0xa4,0xe7,0x76,0x49,0x4a,0x6a,0x16,0xbd,0xad,0x39, + 0xbc,0x4d,0xbb,0x0f,0xa8,0x4b,0x60,0x86,0x3f,0x9a,0x69,0xc3,0x4b,0xe7,0x0a,0xd0,0x87,0x8d,0x39,0x5c, + 0x9e,0xbb,0xae,0x87,0x65,0xb0,0x1d,0xdb,0xeb,0xd2,0xf8,0x82,0x96,0xfa,0x86,0xad,0x77,0x48,0x5f,0x6a, + 0xb0,0xa7,0xd5,0x21,0x1a,0x12,0x0b,0x03,0xd5,0x58,0xd5,0xce,0x9b,0x6c,0x94,0xdb,0x68,0x27,0xbb,0xbf, + 0xed,0x0b,0xa1,0xb9,0xd0,0xb5,0xba,0x99,0x5b,0xd5,0x0e,0xd9,0x41,0xa3,0xb2,0x96,0xe1,0x00,0x73,0x7b, + 0x6e,0x08,0x93,0xcc,0xb1,0xd5,0x94,0xa0,0x76,0xd9,0x83,0xc3,0x93,0x40,0xee,0xa7,0xa7,0x90,0x63,0x42, + 0x41,0xd2,0xef,0xe8,0x93,0x6a,0x77,0xa7,0x21,0xdb,0x6a,0x9b,0x57,0x8a,0x88,0xb0,0xe1,0x12,0x9c,0x26, + 0x6f,0xb0,0xcf,0x85,0x7c,0x6f,0x1f,0x55,0x37,0x42,0x54,0xb8,0x06,0x0d,0xad,0xc9,0x70,0xed,0x1b,0x2e, + 0x3b,0x9d,0x22,0xb7,0x8b,0x10,0x23,0xc8,0x4e,0xd0,0xdb,0x89,0x5b,0x81,0x2f,0x36,0xea,0x76,0x96,0x24, + 0x4b,0x51,0x4d,0xde,0x1e,0x9d,0x16,0x63,0x36,0x8f,0xfa,0xbd,0x1a,0x35,0xd1,0x46,0xab,0xf1,0xd7,0xd6, + 0x89,0x53,0x99,0x58,0x26,0x57,0xcd,0x79,0x60,0x01,0x99,0x33,0x19,0x02,0xf8,0xce,0x6c,0xb0,0x67,0x8f, + 0x7d,0x62,0x7f,0x61,0xc5,0x62,0xbe,0xb2,0x5f,0xfe,0x56,0xff,0xd5,0x6d,0x7a,0x45,0xa4,0x7a,0x0a,0x79, + 0xbb,0x0c,0xe1,0x47,0x54,0x4c,0xfb,0xdd,0xed,0x73,0x6b,0x11,0x90,0xc9,0xec,0xcd,0x1d,0x59,0x63,0x0d, + 0x00,0xf4,0x55,0x0b,0xb8,0x4b,0xf6,0x00,0xfe,0x63,0xfb,0x9c,0xf8,0x78,0xf9,0xe6,0xe5,0x82,0xa9,0xa6, + 0xb1,0xf9,0x3f,0x5e,0x89,0x7b,0xd1,0x60,0xaa,0x90,0x79,0xf9,0xc8,0x58,0xcd,0xa5,0x7b,0x9d,0xbf,0x4c, + 0xaa,0x8e,0xdd,0x87,0xd5,0xe0,0xf9,0xd6,0x6f,0xf5,0xb4,0x57,0xdc,0x58,0x13,0x23,0x7d,0xac,0xd1,0x66, + 0xee,0x8e,0xf2,0x9f,0xda,0x89,0x66,0x31,0xd3,0x19,0x8d,0x0c,0x3f,0xd8,0x0b,0x9d,0xc7,0xcd,0xde,0xdd, + 0xa8,0x3d,0x97,0xb9,0x9b,0x06,0xb7,0x7e,0xb0,0x6e,0x9b,0xab,0x59,0xa4,0xbb,0x7e,0x87,0x34,0x40,0xf6, + 0x4e,0x84,0xfd,0xc1,0xd6,0x3a,0x4b,0xec,0xae,0xaa,0xbb,0x17,0x3b,0x6e,0x18,0x9a,0x5b,0xde,0x05,0xf7, + 0x0f,0x2d,0xaf,0xd9,0x3c,0xdb,0xa5,0x5b,0xc0,0xfe,0xa1,0x4a,0x5a,0x1b,0x69,0xbb,0xae,0x06,0xcc,0x7f, + 0xa8,0xa6,0xc6,0x5e,0x6a,0xd5,0x03,0xe5,0x32,0xed,0xd5,0xa9,0xa1,0x6b,0x44,0xcc,0x55,0x6a,0x6b,0x82, + 0x81,0xb7,0x96,0xe3,0x6b,0x68,0xd0,0x42,0x7f,0x03,0x39,0x72,0x21,0xcf,0x64,0xd9,0x18,0x85,0xd3,0x09, + 0x0c,0x37,0xc2,0xac,0xd5,0x58,0x5a,0x7e,0xed,0x52,0x62,0x1d,0x2e,0x71,0x60,0x34,0x55,0xf8,0x0e,0xca, + 0xd4,0x0d,0x35,0x48,0xb8,0x76,0xad,0xdd,0x62,0xb0,0xc4,0xf0,0x86,0x9a,0xe4,0xdf,0xc2,0xbe,0xd3,0xa8, + 0x26,0xa9,0x9a,0x14,0x50,0xa2,0xe3,0xee,0x36,0xc9,0xfe,0xa9,0x65,0x19,0xa6,0x62,0x30,0xc4,0xaa,0x98, + 0x26,0x22,0xf1,0x1e,0x2b,0x10,0xb8,0x6d,0x38,0xda,0xa9,0xe6,0x92,0x14,0x91,0xc2,0x89,0x6b,0x6a,0xe4, + 0xdb,0x18,0x36,0x70,0x4b,0x4f,0x6c,0xda,0xa8,0x6e,0x15,0x4d,0x0d,0x1f,0xb0,0xaa,0xad,0xa7,0xff,0x23, + 0xf4,0x02,0xf6,0x52,0xe2,0x9b,0xc0,0x58,0x70,0x38,0xce,0xc3,0x5f,0xe9,0xe1,0xc3,0x5c,0xd4,0x84,0x68, + 0xe1,0x08,0x05,0x2b,0x4e,0x0e,0x57,0xad,0x79,0x44,0xc1,0x36,0x0c,0xb8,0x21,0xa5,0xa3,0x4c,0x41,0xc7, + 0x59,0x7c,0x15,0x1c,0xf9,0xff,0x11,0x8e,0x4f,0x6f,0x4e,0x0f,0xcf,0xd6,0x83,0x49,0x3f,0x38,0xba,0xa8, + 0xb5,0xcd,0xa7,0xd0,0x7c,0x28,0xc1,0xa7,0x96,0xad,0x2b,0x67,0x9e,0x2b,0x51,0xf7,0x28,0xc7,0x53,0xc4, + 0xfb,0x59,0x69,0xeb,0x6e,0xff,0x6e,0x00,0x67,0x01,0x9a,0xe2,0xb4,0xeb,0xc9,0xbd,0x58,0x50,0x2f,0xbc, + 0x22,0xbe,0xd1,0x42,0x3c,0x3d,0x4b,0x44,0x78,0xd6,0x89,0x42,0x8d,0x87,0xe2,0x1e,0x41,0xd7,0xd2,0x80, + 0x35,0x58,0xfc,0x39,0x47,0x33,0x83,0x16,0xbb,0x3a,0xea,0x3d,0x81,0x42,0x3b,0x44,0x6e,0x62,0xe9,0x9d, + 0xcc,0x7a,0xac,0xe2,0xae,0x7d,0x18,0x2e,0xa3,0xba,0xc0,0x70,0x1e,0x2d,0x75,0xd8,0x14,0xee,0xdb,0xb2, + 0x75,0xfc,0x21,0x2a,0xb9,0x88,0xe8,0x97,0xed,0x6b,0xcc,0x85,0x9e,0x48,0x62,0xe8,0x7c,0x33,0x4c,0x67, + 0xe7,0xd1,0x30,0x17,0x6a,0x0e,0x45,0xa3,0x51,0x6c,0x4d,0xa2,0x57,0x6a,0x1e,0x84,0x71,0xcd,0xfa,0x35, + 0x17,0x4b,0x2b,0xda,0x36,0x97,0xab,0x29,0xf8,0xad,0x11,0x6f,0x73,0x46,0x6d,0x20,0x96,0x5a,0x0b,0x28, + 0x4a,0x46,0x85,0xb6,0x30,0x43,0xbc,0xf4,0x56,0x5b,0x76,0xc8,0x5b,0x18,0xc2,0x6c,0x30,0x77,0x3b,0xb9, + 0x8d,0x25,0x0a,0x56,0xa5,0x36,0x9f,0x95,0x40,0x13,0x20,0x8c,0xe8,0x4f,0x47,0x09,0xe2,0x8e,0xc6,0x59, + 0x5d,0x42,0x07,0x9c,0x9f,0x86,0xd3,0x76,0x9f,0xb6,0x20,0xb5,0xa6,0x10,0xb5,0xff,0xa1,0xb6,0x9a,0xe1, + 0xe1,0xe7,0xc3,0xf8,0xf0,0xb0,0xf7,0xe0,0x78,0x18,0x40,0xf5,0xcf,0x51,0x49,0x8d,0xfb,0x9f,0x33,0x1f, + 0xbe,0x67,0x55,0x6b,0x3c,0x7d,0xfd,0x92,0x6a,0xd4,0xa6,0xdd,0x21,0xe4,0xb0,0xf4,0x2b,0x2d,0x33,0x9d, + 0xd8,0x68,0x74,0x35,0x54,0x64,0x4a,0x73,0x9d,0xed,0x9b,0x6c,0x40,0xb1,0x9e,0x70,0xc5,0x52,0x86,0xf8, + 0xaa,0xdc,0x0d,0xaf,0xab,0x3f,0x0f,0xaf,0x5a,0xa7,0x65,0xe1,0x80,0x6c,0x43,0x59,0xaa,0xb2,0xca,0x52, + 0x79,0x6d,0x5f,0xbf,0x0d,0x8b,0xd4,0x7d,0x42,0x1d,0x85,0xf6,0x03,0xdd,0x9c,0xf6,0x26,0xce,0x6e,0x5d, + 0x1b,0x6c,0xcd,0xf7,0x09,0xf4,0x7f,0x79,0xbe,0x93,0x96,0x0a,0x30,0xc4,0x52,0xba,0xbb,0x02,0xad,0x01, + 0x4d,0xa1,0xee,0x69,0x81,0x23,0x84,0xbb,0xa5,0x77,0x53,0x07,0xa5,0xc9,0x46,0xd9,0x76,0x38,0x89,0x31, + 0x17,0x6a,0x1f,0x0c,0x1d,0xd8,0xcc,0x68,0xc7,0x6d,0x2f,0x5b,0xb2,0x7b,0xd9,0x80,0x67,0xf4,0x91,0xd0, + 0xb9,0x58,0xf9,0x5f,0x5d,0x2c,0x97,0xde,0x4f,0xe5,0xcc,0xfa,0xc0,0xca,0xa0,0x37,0xb9,0x2a,0x5a,0x7c, + 0x48,0x7b,0x94,0xf5,0xf9,0x3f,0xda,0x3e,0x52,0x12,0x51,0xef,0xab,0x67,0xd7,0x5e,0xd7,0x72,0xe1,0x5d, + 0x53,0x0d,0x89,0x40,0xe8,0x79,0xed,0x3d,0x38,0xed,0x9c,0x60,0x6b,0x75,0x24,0xe6,0xbb,0x5b,0x60,0xf1, + 0xc5,0xb0,0xd4,0x60,0x11,0x8f,0x4b,0x17,0x2c,0xca,0xfe,0x17,0xb5,0xc6,0xde,0xa8,0x96,0x8a,0xa5,0xac, + 0x78,0x7d,0x12,0xa8,0xdc,0xd7,0x38,0xc3,0x01,0x97,0xa9,0x50,0x1c,0xd4,0xb6,0x85,0x87,0x98,0x8e,0xbc, + 0x94,0x3b,0x2c,0xe7,0x7c,0x0b,0x86,0x9b,0xbd,0x76,0x95,0x96,0xc7,0x90,0x4c,0x6e,0xf5,0xf7,0xee,0xb0, + 0xd0,0xfd,0x65,0xff,0x08,0x75,0x7f,0x8b,0xfe,0x5d,0x0b,0xc6,0xa9,0xed,0xd7,0x54,0x77,0x2c,0xfd,0x54, + 0x38,0x56,0x89,0xed,0xb9,0x09,0x34,0x93,0xb6,0x67,0xba,0x8d,0x7a,0x1d,0x53,0x69,0xb1,0x50,0xdb,0xea, + 0xf5,0xbd,0x61,0xae,0x7b,0x5d,0xc0,0xc6,0xa8,0xee,0x75,0xde,0xbf,0x67,0xae,0xd8,0x5a,0xd8,0xad,0x08, + 0x6a,0xcc,0xd6,0x04,0x50,0x96,0x26,0xe1,0x8a,0x67,0xb2,0xc5,0xe4,0x57,0xbb,0x74,0xd4,0x65,0x83,0xe1, + 0xc0,0xf9,0xd8,0x24,0x24,0xad,0x2a,0xe9,0x6b,0x43,0x77,0xaa,0x83,0x50,0xb4,0xbc,0x9f,0x43,0x6d,0x13, + 0x82,0x83,0xfc,0xb1,0x55,0x59,0xb9,0xbb,0x32,0x76,0x90,0xd9,0x51,0x4b,0x5b,0x42,0xb3,0xad,0xcd,0xf5, + 0x29,0x95,0x5c,0x0e,0x56,0x55,0xba,0x18,0x88,0x4f,0xc4,0x9d,0xbd,0xed,0x1a,0x7c,0x93,0x49,0xf8,0xc8, + 0xe8,0x5b,0x6c,0xc2,0xce,0x49,0xd8,0x59,0x69,0x63,0x00,0xdb,0xb5,0x75,0x4e,0xc6,0x5f,0xae,0x6c,0xc7, + 0xa4,0x74,0x0f,0x62,0x6b,0x6e,0x44,0xd3,0x24,0x7d,0x6f,0xdb,0xef,0x20,0x48,0x0c,0xb1,0x0a,0x2f,0x83, + 0x29,0x01,0x2c,0x90,0x36,0x51,0xe9,0x65,0x00,0x79,0x27,0x8c,0x4d,0xf9,0x12,0x41,0x88,0x59,0x7c,0x87, + 0x4b,0x30,0xf7,0xe3,0x36,0x97,0x80,0x74,0x58,0x17,0xf4,0xbd,0xb3,0x33,0x44,0x4a,0x30,0x07,0xec,0xb6, + 0x00,0x77,0xbc,0xb2,0xf8,0x0b,0xfe,0x9c,0x3e,0x98,0x91,0xc5,0x84,0x1d,0xda,0x95,0x7e,0x0c,0xa5,0x63, + 0xb5,0xd0,0x7c,0xf3,0x96,0x8c,0xef,0x6c,0xb6,0x85,0x0a,0x98,0xfb,0xb0,0x1d,0xdf,0x51,0xad,0x28,0x2c, + 0x4a,0x8d,0xee,0x75,0xc7,0xd6,0x9c,0xd6,0x07,0x41,0xfb,0x28,0xdc,0x29,0xb1,0x51,0xd9,0xee,0xb3,0xb1, + 0xf8,0x9f,0x38,0x1b,0xc5,0x45,0x61,0x62,0xcf,0xc6,0x02,0x26,0xfe,0xcd,0x79,0x99,0x75,0x92,0x26,0xbb, + 0x70,0xfa,0xc9,0x6e,0x9c,0x7e,0x32,0xd1,0x86,0x15,0x2e,0xda,0xca,0xb7,0xcc,0x94,0x8c,0xfd,0xc3,0x68, + 0x4b,0x97,0x1e,0x86,0xda,0x23,0x89,0xfe,0x8c,0x4b,0x7e,0x18,0x16,0x71,0xd4,0x12,0x78,0x87,0xe0,0xda, + 0xf8,0x38,0x73,0xde,0x11,0x97,0x94,0x5e,0x38,0xea,0xaa,0x2f,0x05,0x39,0xe0,0xaa,0x98,0x2f,0x65,0x1f, + 0x30,0x5f,0xca,0xc4,0x7c,0x49,0xca,0x04,0xaa,0xe3,0xfb,0xc9,0x44,0xb7,0xc6,0x56,0x4b,0x1a,0x1e,0x11, + 0xdc,0x9e,0x23,0x97,0xb6,0x10,0x8f,0x2b,0x51,0xf8,0x08,0xda,0x69,0xc8,0x14,0x76,0x22,0x9d,0x1d,0x15, + 0x36,0xb0,0x44,0xbb,0xa6,0x4e,0x84,0xf3,0x97,0x2a,0xda,0x81,0x6c,0xba,0xba,0xbe,0x1b,0xd5,0x48,0xcb, + 0xff,0x9f,0x22,0x9a,0xf6,0x6d,0xd0,0x0e,0x34,0xd3,0x91,0xad,0x46,0x32,0xee,0x04,0x7e,0x14,0xc5,0x64, + 0x9f,0x88,0x62,0x1a,0x95,0x7e,0x14,0xc1,0x48,0xee,0x8f,0xa3,0x97,0x96,0x2c,0xf7,0xff,0x75,0xe4,0x92, + 0x7d,0x1c,0xb9,0x74,0xbb,0x56,0xfa,0xff,0x91,0x4b,0x07,0x72,0xc9,0x2c,0x72,0xd1,0x9a,0x20,0x62,0x28, + 0xa0,0x45,0x40,0x29,0x11,0x7c,0xce,0xc4,0xaa,0x1f,0x03,0x9a,0xe7,0xf8,0x3a,0x4e,0x17,0xf1,0x79,0xba, + 0x48,0xf1,0x3d,0xba,0x6d,0x9e,0x97,0xe1,0xbb,0xc6,0x4d,0x60,0x78,0x86,0xa5,0x61,0x8d,0xde,0xc5,0xc2, + 0x8d,0xdb,0x0b,0x5f,0x0c,0x97,0x11,0x41,0xe1,0x35,0xc1,0x3e,0x25,0x1d,0x1c,0x68,0x80,0xbb,0x34,0x29, + 0xc6,0xc4,0x72,0xe0,0x05,0x3c,0xa2,0xca,0x54,0x23,0x21,0x99,0xba,0xfa,0xfb,0x8e,0x4a,0xd7,0xbd,0xf5, + 0xf6,0x45,0x7f,0xf5,0x96,0xa0,0x34,0xdc,0x25,0x70,0x45,0x16,0x38,0xb1,0xc9,0xa2,0xcb,0x1d,0x55,0x66, + 0x8d,0x2a,0xab,0xed,0xfa,0xb6,0xef,0xc7,0xdc,0x9b,0x9f,0xff,0x11,0xf0,0xd3,0x7a,0xab,0xc6,0x22,0xbb, + 0xe6,0xa7,0x88,0x6d,0x21,0x2e,0xd4,0x9a,0x7d,0xb5,0x69,0xf5,0xca,0xe5,0x55,0x36,0x9b,0xda,0x2a,0xe2, + 0xc3,0x63,0x9c,0xfe,0xb9,0x41,0x6e,0x31,0x38,0x69,0x17,0x5b,0x96,0x5a,0x06,0x27,0x75,0x87,0x99,0x82, + 0x2d,0xd3,0x5c,0x7e,0x73,0x98,0xb9,0xc3,0x9e,0xe5,0x18,0xa7,0xb5,0x4e,0xcb,0xb7,0xc6,0xa9,0x32,0x3b, + 0xd2,0xe2,0xcf,0x8c,0x34,0xf9,0xf3,0x23,0xd5,0xc8,0xb2,0xd9,0xd7,0x82,0x99,0xa7,0x44,0x59,0xbd,0xdf, + 0x62,0x8b,0x77,0xfc,0xf4,0x5e,0xcd,0xfe,0x77,0x61,0xac,0xe6,0x89,0x8d,0xcd,0xde,0xcc,0x81,0xae,0x0e, + 0x6e,0xf7,0x53,0xc7,0xd1,0xb1,0xf7,0xfe,0x77,0xc7,0x91,0x7d,0x7c,0x1c,0xb0,0xb9,0x7e,0x9b,0x66,0xfe, + 0x39,0x1e,0xad,0xf1,0x9f,0xef,0x61,0x9f,0x73,0x84,0x86,0xa9,0x8e,0xea,0xce,0x8e,0xc3,0x2e,0xeb,0xf8, + 0x63,0xfe,0x8d,0xb8,0x59,0xbc,0xd1,0x5a,0x3b,0xd4,0x5f,0xab,0x3a,0x20,0x46,0x51,0xcf,0x41,0x0a,0xbd, + 0xac,0x0a,0x2a,0x7c,0x41,0x98,0x72,0x58,0x88,0x7d,0x54,0x31,0xd0,0xd1,0xc4,0x81,0x19,0x35,0xae,0x8b, + 0xbc,0x7f,0x0c,0xee,0x0d,0xee,0x79,0xaa,0xcb,0x54,0x4b,0x22,0x3d,0x1f,0x1c,0xe8,0x88,0xcf,0x3f,0x23, + 0x06,0x4d,0xfd,0x3c,0x58,0x95,0x89,0xff,0x9c,0x10,0xb3,0x56,0x1f,0xb2,0xd6,0x2e,0xb7,0x49,0x16,0xde, + 0x72,0x54,0xcd,0xd0,0x7b,0x59,0xc5,0x69,0x51,0x7a,0xaa,0x7c,0x57,0x56,0xc9,0xd5,0xd3,0xc7,0x94,0xc2, + 0x4f,0xbd,0xa7,0x8f,0x3d,0x35,0x4f,0x8b,0xab,0x9b,0xb8,0x48,0x7e,0x96,0xbe,0x84,0xde,0xd7,0x3a,0xa1, + 0xa7,0x7b,0x17,0xf6,0x3c,0x35,0xcd,0x97,0xef,0x24,0x72,0x86,0xf7,0xc8,0x3c,0xf6,0xfe,0xef,0xff,0xd3, + 0xbb,0x7b,0x7c,0xf2,0x8f,0xde,0xf3,0xb8,0x78,0xd3,0xbb,0x8e,0xb3,0xde,0x8f,0x49,0x56,0xde,0xe4,0xab, + 0x19,0x6d,0xab,0x45,0x1e,0xc3,0xe3,0x56,0xe8,0xfd,0xb0,0x48,0x60,0x38,0xc8,0xd1,0x0c,0x7a,0x3a,0xb5, + 0x27,0x13,0xa5,0x43,0xbe,0x0f,0x06,0x03,0x4f,0xf1,0x4a,0x7d,0xc5,0x41,0x37,0x42,0xef,0x21,0x5e,0x1a, + 0x69,0x2f,0xe3,0x6b,0xae,0x4d,0x7e,0xb9,0xc4,0x4d,0x3a,0x4f,0x69,0x60,0xd5,0xaa,0x0c,0x6f,0xe3,0x29, + 0x1c,0x54,0x2e,0xf3,0x34,0xab,0xec,0xa0,0x1f,0xfe,0x80,0x8e,0xcf,0xd2,0x32,0x3e,0xa7,0x33,0x23,0xf4, + 0x1e,0xeb,0x27,0xa2,0x16,0xd8,0xdb,0x45,0x9e,0x21,0x3a,0x9d,0xcd,0xfe,0x4b,0xfa,0x75,0xba,0xa3,0x80, + 0x4a,0x11,0x68,0xc4,0x7b,0x3a,0xc3,0xa5,0x6d,0x96,0xbf,0x7c,0xc9,0x33,0x48,0x7f,0x7b,0x30,0x0d,0x9d, + 0xe7,0xb4,0x68,0x34,0xb7,0xd3,0x38,0x43,0x00,0x09,0x98,0x5a,0x50,0xe1,0x97,0xf4,0xda,0x9b,0x9a,0x77, + 0x4c,0x60,0x96,0x11,0x70,0x7d,0x4d,0x87,0x27,0x3e,0xcb,0x6f,0xaf,0xca,0x7b,0xfa,0x83,0xcd,0x41,0xfd, + 0x7a,0x96,0x97,0x3c,0xcf,0xe6,0x9d,0xa6,0xad,0xac,0xb8,0x67,0x3a,0x8f,0xee,0x9d,0x7d,0x43,0x6c,0x8e, + 0x52,0x4f,0x45,0x15,0x9f,0xbf,0xb2,0xab,0x4e,0x29,0x9e,0xd2,0x03,0x7c,0x24,0x01,0x5e,0x7a,0xa5,0x4e, + 0xa6,0xa3,0xf4,0x65,0x95,0x2c,0xcb,0x57,0xc5,0x0a,0x99,0x93,0xaa,0x07,0xd1,0x3e,0xa2,0xcc,0xbf,0xa3, + 0x31,0x15,0xac,0xd7,0x5f,0x22,0x43,0x9d,0xf5,0x6b,0x28,0x9b,0xb6,0xf3,0xc2,0xb5,0xda,0x75,0x3a,0x5b, + 0x21,0x88,0x04,0xcd,0x2d,0xd1,0x1d,0x08,0x1e,0xd1,0xe8,0xc9,0x2b,0x9d,0x86,0xbe,0x5c,0x25,0x26,0x91, + 0x1e,0x25,0xe1,0x29,0xae,0x14,0x32,0xc2,0x14,0x06,0x58,0x68,0x5a,0x61,0xae,0x12,0x57,0x3d,0x7c,0xee, + 0x99,0x2a,0x7b,0xda,0x84,0xa4,0x17,0x67,0xdc,0x3e,0xca,0xf4,0xea,0x69,0x1b,0x48,0x6d,0xcf,0xe2,0xea, + 0x59,0x0e,0x58,0xa1,0x87,0xb4,0x22,0x60,0xec,0x1d,0xd1,0x04,0x66,0x17,0xfc,0xac,0xb3,0x10,0x92,0xae, + 0x18,0xd6,0xbf,0xa1,0x1a,0x16,0x1d,0xf9,0x7a,0xf3,0x22,0xbf,0xea,0x2d,0x74,0xbe,0x66,0xa9,0x97,0x49, + 0x5c,0x4c,0x2f,0x31,0x0d,0xf8,0xf5,0xd4,0x55,0x8e,0x54,0x3d,0xaa,0xe7,0xfc,0xe2,0x6d,0x9c,0xe5,0x74, + 0x67,0xa2,0x5e,0xd4,0x7a,0x5d,0xea,0x75,0xe6,0x7b,0x86,0xa4,0xe2,0x99,0x72,0x41,0xda,0x7b,0x92,0x01, + 0x12,0x7b,0x92,0xd6,0xe3,0xc4,0x46,0x8e,0x6f,0x39,0xd7,0xc3,0xc5,0x22,0xbf,0x29,0x65,0xf1,0xb4,0x25, + 0xb3,0x33,0x3d,0x32,0xa4,0x77,0xf9,0xaa,0xe8,0xcd,0x92,0xeb,0x74,0x9a,0x00,0xfa,0x80,0x8a,0x7b,0x82, + 0x1e,0xb4,0x1f,0x16,0x2e,0xde,0xd8,0x9f,0xbd,0xe5,0xaa,0x58,0xe6,0x65,0x52,0x0e,0x7a,0xaf,0x2e,0x13, + 0x93,0xbb,0x99,0x85,0x6a,0xd1,0x84,0x21,0xd5,0x40,0xef,0x97,0x55,0xb5,0x0c,0x8f,0x8e,0x4e,0xbe,0xbc, + 0x3b,0x38,0xf9,0xfb,0x3f,0x07,0x27,0x83,0xcf,0x8f,0x7a,0x37,0x97,0x49,0x86,0xf6,0x7b,0xc0,0x2d,0x16, + 0x76,0xd1,0x8b,0xb4,0xa2,0xaa,0x99,0xb4,0xa9,0x7a,0xf9,0x7c,0xde,0x8b,0xcb,0x5e,0x99,0xc3,0xb3,0x45, + 0xd9,0xd3,0x5b,0x15,0x9d,0x4b,0xd0,0x8a,0x69,0x36,0x99,0x29,0x7c,0xa6,0x02,0x94,0xc8,0x16,0xda,0xc9, + 0x14,0xa9,0xb8,0xce,0x8c,0xb3,0x77,0x84,0x6f,0xde,0x0d,0x7a,0xbf,0x51,0x63,0xd8,0x87,0xf1,0x82,0x5e, + 0xcb,0x9e,0xa5,0xfb,0x7a,0x82,0xa1,0x7b,0x60,0x4d,0xd0,0xdb,0xf3,0x77,0x3d,0xa8,0x68,0x01,0x33,0x55, + 0x97,0xcd,0x69,0xee,0xe9,0x40,0x40,0xab,0x8c,0xb8,0x53,0xfe,0xfa,0xec,0xc9,0xe3,0xde,0x02,0xf8,0xaf, + 0xec,0xad,0x96,0x04,0x73,0x2e,0x32,0x31,0x0b,0xe5,0xf6,0xba,0x91,0x43,0x16,0x4a,0x2f,0x79,0xd7,0xec, + 0xd3,0x6c,0xf0,0x12,0xe5,0x37,0x59,0x0f,0x28,0xa9,0x57,0xb0,0x9f,0xa2,0x41,0x4f,0x6f,0x0d,0x0e,0x3f, + 0xc5,0xfd,0x00,0x02,0x52,0x04,0x32,0x25,0xa1,0xdc,0x62,0x46,0x83,0x9e,0xd1,0x61,0x5a,0xd0,0x97,0xf6, + 0xf2,0x9d,0x27,0x04,0x16,0xe8,0x68,0x99,0xce,0x04,0x6f,0x79,0xca,0x14,0xa3,0x2d,0xa7,0x9f,0x08,0xbf, + 0x5c,0x4e,0x97,0xa1,0xf7,0x13,0x35,0xf2,0xf8,0xdb,0x47,0x3f,0xc8,0xbb,0x06,0xac,0x55,0x95,0x5f,0xc1, + 0x41,0x10,0xf6,0x38,0x4d,0x7b,0x99,0x5e,0x64,0x25,0x76,0xe1,0xd3,0x1f,0x7a,0x3a,0x92,0x75,0x37,0x30, + 0xc9,0x12,0x10,0x51,0x70,0x4e,0xd3,0x82,0x45,0xa1,0x09,0xa5,0x8c,0x6f,0x92,0x64,0xa9,0x17,0x02,0x33, + 0xbb,0x40,0x79,0x00,0x06,0x0c,0x29,0x08,0x4c,0x68,0xdf,0xd3,0xdb,0x1d,0x82,0x92,0x59,0x0e,0x6c,0x4f, + 0x08,0x78,0xa9,0x9b,0x21,0x2c,0x6c,0x9b,0xa4,0x11,0xad,0xce,0x09,0x05,0x5c,0xc5,0xe5,0x1b,0x1a,0x17, + 0x3f,0xf7,0xf0,0xe2,0xa9,0x0b,0x3a,0x74,0x69,0xc9,0x69,0x7f,0xcb,0x83,0xa7,0x2e,0x09,0x85,0x8a,0x55, + 0xdb,0xb7,0xfa,0xa9,0x4e,0xfb,0xa1,0xf6,0xc2,0x4a,0x78,0x55,0x1b,0xb2,0x51,0x4d,0x53,0xdb,0xd2,0xc6, + 0x9e,0x92,0xee,0x66,0x36,0x07,0xa5,0xdd,0xca,0xf6,0xe4,0x14,0x9a,0x01,0x68,0x39,0x5b,0xd8,0x13,0xe6, + 0x55,0x11,0x2f,0xb7,0xce,0xe0,0x4f,0x3b,0x84,0x93,0xff,0xde,0x19,0xfc,0x84,0x36,0x5e,0x7e,0x91,0x64, + 0xe7,0x8b,0xf4,0x4d,0xef,0x22,0xa1,0x95,0xa1,0xdd,0x73,0x9e,0xbc,0x4f,0x2f,0x88,0x5e,0x00,0x02,0x9c, + 0x51,0x86,0x6b,0x3e,0xb0,0x2c,0xe0,0x24,0xdb,0xc7,0xf2,0xab,0x3c,0x01,0xdc,0x24,0x59,0xe7,0xd1,0xfc, + 0x95,0xad,0x2f,0x5f,0x96,0x8b,0x38,0xce,0xfe,0xd2,0x29,0xfd,0x53,0x5a,0x11,0xf5,0x32,0xbd,0x8c,0xdf, + 0x24,0x8b,0x4f,0x3f,0xaa,0x9b,0xa5,0xf4,0x79,0xfd,0x92,0x3a,0xb1,0x84,0x2d,0xe9,0xac,0x7d,0x6a,0xa7, + 0xd4,0xc9,0x8b,0xe4,0x3a,0x27,0x62,0x2b,0xeb,0x3e,0xb9,0xe3,0x39,0x1d,0x38,0x79,0xb6,0x7d,0x70,0x7f, + 0x47,0x1f,0x2f,0x12,0x4c,0x57,0x52,0x68,0xa7,0xb2,0x04,0x29,0x6f,0x50,0x4f,0xfb,0x00,0xff,0xb9,0xce, + 0x41,0x99,0x17,0x79,0x81,0x4c,0xcd,0x43,0xfc,0x7b,0xf4,0x04,0x35,0x49,0x57,0x3e,0xe5,0x18,0xff,0x76, + 0x95,0xce,0xd2,0x8b,0x64,0xc7,0x31,0x4e,0x47,0x00,0xce,0xcb,0x04,0x0b,0x3a,0x4b,0xde,0x27,0x8b,0x39, + 0xd0,0xa6,0x3e,0xab,0x93,0xb4,0xda,0x3a,0xcb,0x5f,0x49,0x5e,0x73,0x88,0x27,0xc9,0x82,0x0d,0x70,0x13, + 0xaa,0x27,0xfb,0x73,0xa7,0xf9,0xeb,0x59,0xfb,0x34,0x7f,0xc6,0xb0,0xd0,0xa3,0xad,0xd0,0xbb,0xce,0xe9, + 0x54,0xa9,0x28,0x4f,0x7d,0x98,0x27,0x49,0x7d,0x8a,0x5f,0x37,0xa6,0x2a,0x81,0x37,0x15,0xe2,0xce,0x5b, + 0xe7,0xf9,0x57,0x45,0x92,0xcc,0x88,0x98,0x2e,0xe2,0x78,0x86,0xb3,0x1a,0x4c,0x81,0xbc,0xb5,0x4f,0xf5, + 0xdd,0x39,0xa9,0x3f,0x97,0xc4,0x9f,0x65,0xe8,0xd7,0x79,0x5c,0x12,0x06,0x02,0xd8,0xcb,0x39,0x9f,0x74, + 0x1f,0xf3,0xbf,0xe7,0x09,0x2f,0x6f,0xe3,0x98,0xff,0x2a,0xb9,0x49,0xa0,0xad,0xbb,0xf3,0xa0,0xaf,0x17, + 0xdf,0xae,0x9c,0x03,0x0f,0xee,0x3e,0x6b,0x1d,0xf5,0x0f,0xdd,0xc3,0x87,0x96,0x42,0x80,0x9a,0xf7,0x5c, + 0x9d,0xed,0x92,0xb3,0x3e,0x8f,0xe3,0x37,0x55,0xef,0x12,0x58,0x8f,0x76,0xf7,0x22,0x7d,0x4d,0x87,0xd9, + 0x15,0xcf,0xab,0x1c,0xfe,0xf6,0x94,0x4d,0x13,0x0c,0x33,0x9e,0xf3,0x37,0xda,0xba,0x44,0x66,0xd0,0x9a, + 0x64,0x71,0x5c,0x30,0x90,0xf4,0x80,0x99,0xec,0x01,0x94,0x08,0x3c,0xa3,0x2a,0x82,0x9d,0x3a,0xd5,0x9e, + 0xbc,0x70,0x40,0xda,0x7b,0xdc,0x2c,0x45,0x13,0x49,0x59,0xce,0x93,0x8c,0x50,0x49,0x81,0xdd,0x91,0xc6, + 0x9d,0x34,0x00,0x7d,0xa7,0x96,0x5f,0xbb,0x3d,0xbb,0x4c,0xce,0xb1,0x1b,0xaf,0x30,0x98,0x41,0xef,0xa5, + 0x8c,0x57,0xfa,0x85,0x63,0x9a,0x90,0x69,0x8a,0xbe,0xf2,0x38,0xdd,0x3e,0xd0,0xf9,0x8f,0xe0,0xa8,0xef, + 0x53,0x0d,0xea,0xb2,0xad,0xcf,0x93,0xeb,0x24,0xa5,0xe3,0x79,0x06,0x00,0xea,0xfd,0x2b,0xe9,0xbd,0xa1, + 0x93,0xdb,0xad,0x2d,0xcf,0xdf,0xb8,0xd3,0x4a,0x47,0x0c,0x41,0x26,0xa0,0x34,0xe9,0x35,0xa6,0x9e,0xce, + 0xa2,0x25,0xc6,0x34,0x2b,0x56,0x6f,0x30,0x1d,0xc4,0xd6,0xa2,0xeb,0x33,0x21,0x00,0x62,0xa0,0x01,0x9a, + 0xc4,0xf6,0xf9,0xef,0xac,0x31,0x30,0x21,0x9f,0xe0,0x1a,0x3d,0x38,0xf9,0x64,0xf9,0x74,0xde,0xed,0x25, + 0x40,0xe5,0x34,0x45,0x09,0x6d,0xf3,0x16,0x11,0xf0,0xf3,0x6a,0xd1,0xbb,0x4c,0x19,0x33,0xd1,0x31,0x8f, + 0x19,0x61,0x84,0x46,0xd9,0x6e,0xe2,0xe9,0x65,0x75,0x93,0x83,0x12,0x48,0x69,0x6a,0x92,0x1a,0x97,0x27, + 0x94,0x93,0x63,0x1a,0xae,0x78,0x5a,0x7b,0x39,0xed,0x30,0x20,0x10,0x9e,0x8e,0x72,0x27,0x5d,0xf0,0x8b, + 0xad,0xd0,0x50,0x06,0xdf,0x24,0xe7,0xc5,0x8a,0x0e,0x90,0x9a,0x3a,0xb8,0x6c,0x50,0x07,0x34,0xa7,0x0c, + 0x60,0x7c,0x42,0xd3,0xb1,0x49,0x53,0x96,0xdc,0xa4,0xaf,0xdf,0x03,0xe6,0xe2,0x6c,0x6b,0x98,0x83,0xde, + 0x2f,0x04,0x80,0x54,0x28,0x7d,0x9d,0x31,0xec,0xde,0x10,0x81,0x45,0xc3,0x76,0xd6,0x0a,0xc5,0xa0,0xf0, + 0x41,0x03,0xa2,0x3f,0xef,0xd3,0xd7,0xf8,0x7e,0x93,0xd0,0xb0,0x6f,0x00,0xbb,0xf4,0x72,0x95,0x24,0xfa, + 0x20,0x3b,0x87,0x7d,0xf7,0x36,0xa5,0x40,0x8f,0x3b,0xe9,0x84,0xa4,0xf8,0x14,0x4a,0x21,0xbe,0xda,0x41, + 0x29,0xbc,0xc4,0xd1,0x42,0xfd,0x98,0x19,0x5a,0x01,0x6d,0xfd,0x59,0x4a,0xe1,0x3c,0x7d,0x7d,0x93,0x14, + 0x6f,0x18,0xf9,0x6f,0x6a,0xa7,0x84,0x1c,0xff,0x83,0xd8,0x60,0x2b,0x33,0x81,0x18,0x5f,0x7b,0xa5,0xaa, + 0xcd,0x3b,0xe8,0xe4,0xa5,0xfe,0xe7,0xc5,0x60,0x41,0x3b,0x61,0x45,0x6c,0x7f,0xdb,0xd6,0xc2,0x63,0xc4, + 0x65,0x2c,0x37,0xac,0xa6,0x6b,0x30,0xd4,0xd5,0xf9,0xb7,0xc9,0x22,0xf4,0xfe,0x46,0x28,0x81,0x66,0x8e, + 0xaa,0x0e,0x2b,0xc5,0x96,0x10,0xb7,0x86,0x74,0xd8,0x3b,0x56,0xa5,0x9c,0xef,0x7b,0x27,0xfa,0x89,0x4f, + 0x0f,0xbc,0xea,0x3c,0x4f,0x09,0xdc,0xa7,0xe8,0x45,0xe8,0xad,0x3d,0xb5,0x5a,0x22,0xf9,0x87,0x22,0xbf, + 0xe0,0x45,0xa0,0x6c,0x31,0x8b,0x54,0x5e,0xc5,0xe7,0xf0,0xff,0x27,0x67,0x96,0x11,0x2c,0xdc,0xd6,0xc4, + 0x90,0xae,0x8c,0x69,0x06,0xf3,0xd9,0x4d,0xdc,0x34,0x29,0x89,0x65,0x78,0x9b,0x64,0x72,0xf8,0x53,0x13, + 0x29,0x41,0xe7,0xf1,0x80,0xff,0xaf,0x49,0x86,0x46,0x0e,0x7d,0xac,0x1e,0x37,0xb3,0x52,0x5e,0x46,0xf2, + 0xd4,0x86,0x3d,0x3c,0x28,0xb3,0x73,0xe8,0xd1,0x79,0x40,0x93,0x11,0x57,0x0b,0x3e,0x81,0x3c,0xb5,0xb0, + 0x67,0x0c,0xc7,0xc3,0x74,0x50,0xbf,0x05,0x1b,0xd6,0x12,0x71,0x51,0x3a,0xe6,0xb0,0xb2,0x95,0xf3,0x6e, + 0xe3,0x3c,0x76,0xaf,0xf1,0x1b,0xef,0xb1,0x3d,0xee,0x20,0xbf,0x3b,0x30,0xcb,0xef,0x06,0x50,0x59,0x0b, + 0xd5,0x9e,0xe2,0x28,0x61,0x9e,0x59,0x1d,0x36,0x44,0x63,0xf8,0x00,0x23,0x3b,0xb1,0xeb,0xdc,0x0a,0x9c, + 0xa0,0x0d,0xd0,0xac,0xc3,0x53,0x86,0x49,0xf8,0x37,0xf0,0x3d,0x7e,0xf4,0x8c,0x25,0x9a,0x16,0x33,0x99, + 0x41,0x43,0x41,0xf4,0xd2,0xe8,0x80,0x9e,0x48,0x14,0x8e,0x64,0x60,0xd7,0xd7,0x09,0x6d,0xf4,0xac,0x05, + 0x1a,0xd0,0x1b,0x19,0x08,0x51,0x0c,0x7c,0x26,0xcb,0xc8,0x89,0x9a,0x86,0xe3,0x01,0xb0,0x09,0x0c,0xc4, + 0xfb,0x70,0x82,0xed,0x00,0x1b,0x24,0x05,0x05,0x52,0xe3,0xb7,0x69,0xce,0xf6,0x05,0xbe,0x77,0x14,0x2f, + 0xd3,0x23,0x0d,0x28,0x5e,0x30,0x20,0xb6,0x27,0x6b,0x78,0x04,0xd8,0xf6,0xac,0xa9,0xdd,0x24,0x50,0x8f, + 0x8d,0xd4,0x4d,0x92,0x82,0x4d,0x30,0x10,0xc7,0x30,0x6e,0x79,0xe3,0xcf,0x73,0x91,0x5f,0xe0,0xca,0x2d, + 0xd0,0x6d,0xc3,0x61,0xe1,0xb8,0xdd,0x8d,0x1a,0x0c,0xfe,0x6c,0x4f,0xea,0x92,0x7f,0xa5,0x33,0x75,0x0f, + 0x44,0x4e,0xd3,0xd1,0xf8,0x96,0x5e,0xb4,0x6e,0xc6,0x15,0xb6,0xee,0xc1,0x85,0x00,0x76,0x11,0x5b,0xc0, + 0xb3,0x36,0xe6,0xf1,0x30,0xbe,0xaf,0x9d,0x24,0x68,0x73,0x9d,0xb8,0xf6,0xd2,0x2e,0x1f,0x70,0x89,0xca, + 0x86,0xa0,0xc5,0xa8,0x88,0xca,0xb0,0xdc,0x93,0xa0,0x8d,0x19,0x47,0xd7,0xcc,0x1b,0x16,0xfe,0x25,0xfc, + 0x17,0xf7,0xa3,0x72,0x03,0xe8,0x48,0xd8,0x0f,0x75,0x32,0x68,0x40,0xad,0xb8,0xc8,0x9c,0x2f,0x72,0x38, + 0x1c,0x38,0x32,0xbe,0x27,0x02,0x27,0x5b,0x84,0x6b,0x9a,0x89,0x1e,0xa1,0x0c,0xbf,0x5c,0x12,0x78,0xcf, + 0x5c,0x2f,0x0f,0x19,0x87,0xc4,0xab,0xf2,0x65,0x27,0xfc,0x69,0x6c,0x42,0x1d,0xdc,0xc0,0xe6,0x44,0x8b, + 0x61,0x81,0x4c,0x88,0x97,0xa9,0xa5,0x30,0x3b,0xe4,0xd5,0x95,0x86,0x48,0x76,0x08,0x22,0x8f,0x98,0x39, + 0xe9,0x0a,0x02,0x6e,0x6e,0x03,0x83,0xaa,0x91,0x42,0xe5,0x2c,0xf5,0xc0,0xa4,0x36,0xb0,0x44,0x23,0x87, + 0xf3,0xc1,0xe2,0x8e,0x46,0x06,0x9d,0x28,0xd8,0xa4,0xf9,0x85,0x52,0x6a,0xd4,0xd2,0xf8,0x64,0x52,0x05, + 0xd7,0x34,0x3e,0x21,0x05,0xa8,0xa7,0x91,0x98,0x2e,0x5d,0x2c,0xd4,0x6c,0xc5,0xa6,0x5b,0xc4,0xd4,0xf8, + 0xae,0x13,0x37,0x1d,0x20,0xf9,0x49,0x10,0xde,0x2a,0x06,0x0b,0x2a,0x33,0xe7,0xb2,0x7a,0x9d,0x68,0x66, + 0xe7,0xd2,0xe9,0xa5,0x27,0xbc,0x73,0x91,0x20,0x66,0xaf,0x49,0x10,0xcc,0x52,0x26,0x15,0x33,0x2d,0x04, + 0xad,0x6e,0x93,0xda,0x4b,0x43,0xb3,0x74,0xbf,0xaf,0x9a,0x09,0xda,0x69,0xdf,0x49,0x68,0x93,0x6d,0x77, + 0x22,0xef,0xc8,0x73,0x1c,0x32,0xf4,0xee,0x76,0xe6,0x39,0x6c,0xe4,0xb9,0xd7,0x99,0xe7,0xf4,0xb4,0x91, + 0xe9,0xf3,0xce,0x4c,0x74,0xfa,0xb6,0x47,0x4a,0x67,0xd4,0xdd,0x2f,0x8e,0x79,0xba,0xb6,0x37,0x85,0x3b, + 0x5b,0xd3,0x05,0x1d,0x84,0x76,0x12,0xf4,0x7d,0x77,0x3d,0x45,0x54,0x03,0x21,0x1b,0x83,0xba,0xc1,0x1c, + 0xc9,0x79,0xda,0x65,0x4a,0x57,0x9f,0xd3,0x06,0x4a,0x07,0xfa,0x20,0x36,0xfa,0xda,0x2e,0x0f,0xec,0x19, + 0x67,0x18,0xbb,0xca,0xca,0xc9,0xad,0x67,0x59,0xbb,0x26,0xbc,0x6b,0x5c,0x10,0x1a,0x88,0x23,0x2e,0x6b, + 0xa8,0x97,0x41,0x4f,0x10,0xff,0x58,0xff,0x87,0xa2,0x4f,0x60,0x66,0xb8,0x59,0x18,0x7d,0x10,0x87,0x87, + 0xa1,0x71,0x62,0xd4,0xd5,0xcf,0x4d,0xf7,0x14,0xbc,0x42,0x58,0x94,0xbf,0x34,0x0d,0x3d,0x3e,0x70,0xb7, + 0xb3,0x81,0x41,0x30,0xc7,0xe2,0xcc,0x0b,0xfe,0xe4,0xfc,0x7c,0x42,0xdd,0x90,0x8e,0x50,0xbd,0x7a,0xbe, + 0x3e,0xa1,0x80,0x08,0x4f,0x4c,0x91,0xbb,0x9f,0x52,0xa4,0x21,0x53,0x31,0x25,0xef,0x85,0xee,0xdd,0x7b, + 0xc7,0x58,0xd2,0xa5,0x81,0xef,0x4f,0x68,0xa2,0x21,0x98,0x31,0x4d,0x7c,0xf1,0x27,0x4a,0x6a,0x41,0x8d, + 0x29,0xda,0x5e,0xfe,0x8f,0xad,0x4f,0x0d,0x1a,0xf0,0x0c,0xd4,0x26,0x6e,0x3e,0x72,0x8a,0x8c,0x08,0xe7, + 0x60,0x67,0x11,0x5f,0x47,0x08,0xa6,0x5d,0x58,0x7d,0x91,0xdc,0x0b,0xc2,0xdd,0x64,0xc6,0x91,0x26,0xa4, + 0xdb,0x68,0xb2,0xd3,0xf5,0xba,0xa1,0x36,0x2a,0x67,0xc6,0xa3,0xe4,0x4f,0x50,0x1b,0x5b,0xb8,0xf8,0xe3, + 0x7d,0x87,0x76,0x99,0x70,0x02,0x86,0xd1,0xd9,0x31,0x1f,0xbc,0x5d,0xf4,0x9c,0xb8,0x48,0x1e,0x38,0xba, + 0xc9,0x4a,0x44,0xc7,0xda,0x7b,0x2a,0x58,0x17,0x68,0x97,0xc0,0x4e,0x79,0x68,0xfc,0xf1,0xfb,0xde,0x3c, + 0xc5,0xed,0x9c,0xa5,0x69,0x69,0xda,0xb4,0x07,0xff,0xaf,0xde,0x3d,0xe5,0xcf,0xd2,0x8f,0xaf,0x91,0x8d, + 0xbd,0x7e,0x25,0x25,0xf4,0x4a,0x34,0xa5,0xcb,0x94,0x3e,0x0d,0x28,0xbc,0xf7,0xf7,0xe4,0x73,0x95,0x67, + 0x3f,0x35,0xd9,0x98,0xa6,0x2d,0x6f,0xab,0x63,0x4c,0xbb,0x14,0xb8,0x05,0xf4,0x4f,0x8e,0x8f,0x3f,0x13, + 0x42,0x23,0x99,0x1d,0xc1,0xe7,0x67,0x15,0xc3,0xa5,0xda,0x70,0x8b,0x4a,0x98,0x5b,0x86,0x10,0x4a,0x05, + 0xdb,0x87,0xa4,0xbb,0x06,0x9e,0x18,0x08,0xf7,0x4a,0xb8,0x51,0xfd,0x8b,0x4b,0xb6,0xd5,0x69,0xb0,0x39, + 0xf5,0x91,0xfa,0xf1,0x79,0xe3,0x18,0xca,0x30,0x67,0xc5,0xda,0x6e,0x84,0xc7,0xd0,0xf4,0xfa,0xc7,0x4e, + 0x5d,0x38,0x35,0xec,0x20,0xf3,0xd7,0xeb,0x3d,0xf1,0x20,0xdf,0xa6,0xf4,0x19,0x56,0xb7,0xc8,0x7f,0x07, + 0xe8,0x5a,0xe3,0xc2,0xe4,0x70,0x46,0x98,0x50,0xdf,0x3d,0x3e,0x0e,0x02,0xb3,0x1d,0x85,0x45,0xda,0x09, + 0x79,0x8d,0x56,0x04,0xe6,0xba,0xb8,0x8e,0xce,0xde,0x4b,0x76,0x43,0x9d,0xee,0x88,0xb3,0xc9,0xb3,0xe4, + 0x46,0xdb,0x6c,0x7a,0xbe,0xaa,0x9a,0x44,0x30,0xb1,0xe5,0xba,0x48,0x94,0xd4,0x01,0xa3,0x11,0xf2,0x11, + 0x95,0xef,0xac,0xb3,0x40,0xf8,0x69,0x4e,0x1d,0x67,0x3a,0xa4,0xe3,0xb0,0xda,0x4d,0x5e,0x17,0x47,0xcd, + 0x3a,0x24,0x78,0x4c,0x6a,0xfc,0xef,0xec,0x6c,0x26,0xd5,0x5e,0x0c,0x5a,0x4d,0xa1,0xcf,0x3b,0x78,0xb8, + 0x2d,0xa0,0xd7,0xb7,0xc9,0xb7,0x6c,0xc8,0x93,0x8a,0x34,0x95,0x68,0xe3,0x93,0xe4,0x9e,0xf8,0xed,0x82, + 0x63,0xea,0xff,0x71,0x82,0x51,0x2f,0xee,0x09,0x50,0x92,0x70,0xfb,0x96,0xd5,0xdf,0x05,0xb7,0x86,0xff, + 0x1f,0x00,0x29,0x58,0xee,0x57,0xc0,0xb2,0x2d,0x2f,0xa8,0x79,0x80,0x1a,0x51,0x5f,0x24,0x39,0xa2,0x78, + 0x1c,0x69,0xb9,0x81,0x07,0x2f,0xdc,0x1c,0x76,0xe0,0xd6,0xc8,0xa6,0x76,0xb5,0xb1,0xd9,0x1a,0x48,0xd2, + 0xc1,0xc3,0x09,0xf2,0xc6,0x7e,0xa4,0xd3,0xaa,0x0c,0xe0,0x09,0xcd,0x4d,0xb0,0x9e,0xfb,0x6a,0x7f,0xf6, + 0xee,0x67,0xe8,0x14,0x52,0x0f,0x89,0xfd,0x29,0xde,0xd9,0x86,0xb7,0x47,0x2d,0x7d,0xe7,0x50,0x7e,0x55, + 0xdf,0x53,0x5e,0x9f,0x9e,0xb2,0x8b,0xcd,0x5f,0x5e,0x8c,0xed,0x89,0x63,0x42,0x7e,0xa3,0xd8,0x6d,0x02, + 0x4d,0x8d,0x91,0x68,0xdc,0x12,0x04,0x11,0x85,0x52,0x6c,0xf9,0xe4,0x74,0x71,0x0e,0xb6,0x3a,0x5c,0x36, + 0xb0,0x33,0xc9,0xa6,0x00,0xe4,0xcf,0x97,0x2f,0xff,0x5c,0xbb,0xda,0xc5,0x84,0xd3,0xbe,0x95,0x70,0xb9, + 0x93,0xd2,0x25,0x3c,0x89,0xbc,0xbf,0x79,0xfd,0x0a,0x9a,0x47,0x9b,0xff,0x07,0xb6,0xc3,0x8c,0x69,0x2b, + 0xe5,0x01,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 7c0f869..88dcf43 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 12; +const uint8_t VersionMetadata = 11; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+12"; +const char VersionFullSemVer[] = "2.0.0-beta.1+11"; const char VersionCommitDate[] = "2018-01-08"; #endif diff --git a/src/charproperties.cpp b/src/charproperties.cpp index 6afa470..9d3a3b1 100644 --- a/src/charproperties.cpp +++ b/src/charproperties.cpp @@ -18,8 +18,14 @@ void CharProperties::assignChar(char** field, const char* newValue) { // Include the terminating null character size_t length = strlen(newValue) + 1; - *field = new char[length]; - strncpy(*field, newValue, length); + + if (length > 0) + { + *field = new char[length]; + strncpy(*field, newValue, length); + } + else + *field = nullptr; } else *field = nullptr; diff --git a/src/config.h b/src/config.h index d9f11ab..d222da1 100644 --- a/src/config.h +++ b/src/config.h @@ -3,35 +3,25 @@ #include + #define SerialDebug + +#ifdef SerialDebug static const uint32_t SerialDebugBaudrate = 115200; static const uint32_t SerialDebugStartupDelay = 2000; +#endif + + +static const char* ConnectionSettingsFile = "/connection.json"; +static const char* SystemSettingsFile = "/system.json"; +static const char* StepSettingsFile = "/stepsettings.dat"; -static const char* ConnectionSettingsFile = "/settings.json"; static const char* DefaultAPSSIDPrefix = "Stairs-"; +// Timeout when in AP + station mode (otherwise trying to connect +// to the STA will block the AP) static const uint32_t StationModeTimeout = 30000; -static const char* StepSettingsFile = "/stepsettings"; - - - -// TODO make these configurable through the web interface? - -static const uint8_t PinLEDAP = 4; -static const uint8_t PinLEDSTA = 5; -static const uint8_t PinAPButton = 2; - -// Pins for the I2C bus -static const uint8_t PinSDA = 13; -static const uint8_t PinSCL = 12; - - -// I2C address and PWM frequency of the PCA9685 board -static const uint8_t PWMDriverAddress = 0x40; -static const uint16_t PWMDriverPWMFrequency = 1600; - - #endif \ No newline at end of file diff --git a/src/global.cpp b/src/global.cpp index f73addf..46cd07c 100644 --- a/src/global.cpp +++ b/src/global.cpp @@ -9,6 +9,9 @@ ConnectionSettings* connectionSettings = new ConnectionSettings(); bool connectionSettingsChanged = false; +SystemSettings* systemSettings = new SystemSettings(); +bool systemSettingsChanged = false; + StepsSettings* stepsSettings = new StepsSettings(); bool stepsSettingsChanged = false; diff --git a/src/global.h b/src/global.h index 962b7d5..26cf047 100644 --- a/src/global.h +++ b/src/global.h @@ -11,12 +11,16 @@ #include #include #include "settings/connection.h" +#include "settings/system.h" #include "settings/steps.h" #include "stairs.h" extern ConnectionSettings* connectionSettings; extern bool connectionSettingsChanged; +extern SystemSettings* systemSettings; +extern bool systemSettingsChanged; + extern StepsSettings* stepsSettings; extern bool stepsSettingsChanged; diff --git a/src/main.cpp b/src/main.cpp index 8141ce3..90ef3db 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,7 +25,6 @@ extern "C" { #include "server/settings.h" #include "server/firmware.h" #include "server/api.h" -#include "server/geocode.h" ADC_MODE(ADC_VCC); @@ -84,18 +83,18 @@ void setup() _dln("Setup :: failed to mount file system"); connectionSettings->read(); + systemSettings->read(); stepsSettings->read(); - - pinMode(PinAPButton, INPUT_PULLUP); - pinMode(PinLEDAP, OUTPUT); - pinMode(PinLEDSTA, OUTPUT); + pinMode(systemSettings->pinAPButton(), INPUT_PULLUP); + pinMode(systemSettings->pinLEDAP(), OUTPUT); + pinMode(systemSettings->pinLEDSTA(), OUTPUT); _dln("Setup :: initializing PCA9685"); pwmDriver = new PCA9685(); - pwmDriver->setAddress(PWMDriverAddress, PinSDA, PinSCL); - pwmDriver->setPWMFrequency(PWMDriverPWMFrequency); + pwmDriver->setAddress(systemSettings->pwmDriverAddress(), systemSettings->pinPWMDriverSDA(), systemSettings->pinPWMDriverSCL()); + pwmDriver->setPWMFrequency(systemSettings->pwmDriverFrequency()); pwmDriver->setAll(0); _dln("Setup :: initializing Stairs"); @@ -139,7 +138,6 @@ void setup() registerSettingsRoutes(&server); registerFirmwareRoutes(&server); registerAPIRoutes(&server); - registerGeocodeRoutes(&server); _dln("Setup :: starting HTTP server"); server.onNotFound(handleNotFound); @@ -149,7 +147,7 @@ void setup() void loop() { - if (shouldReboot) + if (shouldReboot || systemSettingsChanged) { _dln("Loop :: reboot requested, so long and thanks for all the fish!"); delay(100); @@ -244,6 +242,9 @@ void initWiFi() stationModeStart = currentTime; + if (connectionSettings->hostname() != nullptr) + WiFi.hostname(connectionSettings->hostname()); + if (WiFi.begin(connectionSettings->ssid(), connectionSettings->password())) { if (connectionSettings->flag(DHCP)) @@ -320,7 +321,7 @@ void updateLED() { if (!ledAP) { - digitalWrite(PinLEDAP, HIGH); + digitalWrite(systemSettings->pinLEDAP(), HIGH); ledAP = true; } } @@ -328,7 +329,7 @@ void updateLED() { if (ledAP) { - digitalWrite(PinLEDAP, LOW); + digitalWrite(systemSettings->pinLEDAP(), LOW); ledAP = false; } } @@ -341,7 +342,7 @@ void updateLED() { if (ledWiFi != On) { - digitalWrite(PinLEDSTA, HIGH); + digitalWrite(systemSettings->pinLEDSTA(), HIGH); ledWiFi = On; } } @@ -350,7 +351,7 @@ void updateLED() LEDState expectedState = value == HIGH ? BlinkHigh : BlinkLow; if (ledWiFi != expectedState) { - digitalWrite(PinLEDSTA, value); + digitalWrite(systemSettings->pinLEDSTA(), value); ledWiFi = expectedState; } } @@ -359,7 +360,7 @@ void updateLED() { if (ledWiFi != Off) { - digitalWrite(PinLEDSTA, LOW); + digitalWrite(systemSettings->pinLEDSTA(), LOW); ledWiFi = Off; } } diff --git a/src/secret.default.h b/src/secret.default.h deleted file mode 100644 index 7ac2d10..0000000 --- a/src/secret.default.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef __secret -#define __secret - -// Copy this file to 'secret.h' and customize the constants. -// It is included in .gitignore by default so that you won't -// accidentally commit the dark secrets hidden within. - -// They're not really that dark though. - -// Used for the Geocode API to get the local timezone -// Register for a Google API key at: -// https://console.developers.google.com/ -// -// ...and be sure to enable "Google Maps Geocoding API" for -// your project. -static const char* GoogleAPIKey = ""; - -#endif \ No newline at end of file diff --git a/src/server/geocode.cpp b/src/server/geocode.cpp deleted file mode 100644 index d8f6557..0000000 --- a/src/server/geocode.cpp +++ /dev/null @@ -1,240 +0,0 @@ -/* - * Stairs - * Copyright 2017 (c) Mark van Renswoude - * - * https://git.x2software.net/pub/Stairs -*/ -#include "geocode.h" -#include -#include - -#include "../debug.h" - -#ifdef SecretsPresent -#include "../secret.h" -#endif - - -struct ResponseBuffer -{ - void* data; - size_t length; - ResponseBuffer* next; -}; - - -struct RequestArg -{ - String address; - AsyncWebServerRequest *request; - ResponseBuffer* responseData; - size_t responseOffset; -}; - - -String urlencode(const String url) -{ - String encoded; - - for (int i = 0; i < url.length(); i++) - { - char c = url.charAt(i); - if (c == 0x20) - encoded += "%20"; - else if (isalnum(c)) - encoded += c; - else - { - encoded += "%"; - if (c < 0x10) encoded += "0"; - encoded += String(c, HEX); - } - } - - return encoded; -} - - -void memcpy_unaligned(void* dest, void* source, size_t length) -{ - uint8_t* destChar = (uint8_t*)dest; - uint8_t* sourceChar = (uint8_t*)source; - - while (length > 0) - { - *destChar = *sourceChar; - - sourceChar++; - destChar++; - length--; - } -} - - -void mapsGeocodeDisconnect(void* arg, AsyncClient* c); -void mapsGeocodeData(void* arg, AsyncClient* c, void* data, size_t len); - - -void mapsGeocodeConnect(void* arg, AsyncClient* client) -{ - RequestArg* requestArg = (RequestArg*)arg; - - client->onError(nullptr, nullptr); - client->onData(mapsGeocodeData, arg); - client->onDisconnect(mapsGeocodeDisconnect, arg); - - #ifdef SecretsPresent - String url = "/maps/api/geocode/json?address=" + urlencode(requestArg->address) + "&key=" + urlencode(GoogleAPIKey); - #else - String url = "/maps/api/geocode/json?address=" + urlencode(requestArg->address); - #endif - - client->write(String("GET " + url + " HTTP/1.0\r\nHost: maps.googleapis.com\n\r\n").c_str()); -} - - -void mapsGeocodeData(void* arg, AsyncClient* c, void* data, size_t len) -{ - RequestArg* requestArg = (RequestArg*)arg; - - _dln("> OnData"); - - // Store all received chunks in a linked list - ResponseBuffer* next = new ResponseBuffer; - next->data = malloc(len); - memcpy_unaligned(next->data, data, len); - next->length = len; - next->next = nullptr; - - if (requestArg->responseData == nullptr) - requestArg->responseData = next; - else - { - ResponseBuffer* prev = requestArg->responseData; - while (prev->next != nullptr) - prev = prev->next; - - prev->next = next; - } - _dln("< OnData"); -} - - -void mapsGeocodeDisconnect(void* arg, AsyncClient* client) -{ - RequestArg* requestArg = (RequestArg*)arg; - - _dln("> OnDisconnect"); - if (requestArg->responseData == nullptr) - { - requestArg->request->send(500); - return; - } - - // Send back the linked list using a chunked response - AsyncWebServerResponse *response = requestArg->request->beginChunkedResponse("application/json", [requestArg](uint8_t *buffer, size_t maxLen, size_t index) -> size_t - { - _dln("> ChunkedResponse"); - if (requestArg->responseOffset >= requestArg->responseData->length) - { - // End of the chunk, go to the next one - ResponseBuffer* next = requestArg->responseData->next; - delete requestArg->responseData; - - requestArg->responseData = next; - requestArg->responseOffset = 0; - } - - if (requestArg->responseData == nullptr) - { - // We sent the last one, clean up what remains - ResponseBuffer* next; - while (requestArg->responseData != nullptr) - { - next = requestArg->responseData->next; - - free(requestArg->responseData->data); - delete requestArg->responseData; - - requestArg->responseData = next; - } - - return 0; - } - - if (maxLen >= requestArg->responseData->length - requestArg->responseOffset) - { - // Send the remainder of the chunk - memcpy_unaligned(buffer, (uint8_t*)requestArg->responseData->data + requestArg->responseOffset, requestArg->responseData->length - requestArg->responseOffset); - requestArg->responseOffset = requestArg->responseData->length; - } - else - { - memcpy_unaligned(buffer, (uint8_t*)requestArg->responseData->data + requestArg->responseOffset, maxLen); - requestArg->responseOffset += maxLen; - } - _dln("< ChunkedResponse"); - }); - - requestArg->request->send(response); - - delete requestArg; - delete client; - _dln("< OnDisconnect"); -} - - -void handleGetLatLong(AsyncWebServerRequest *request) -{ - _dln("API :: get lat long"); - - RequestArg* requestArg = new RequestArg(); - requestArg->request = request; - requestArg->responseData = nullptr; - requestArg->responseOffset = 0; - - AsyncWebParameter* addressParam = request->getParam("address"); - if (addressParam == nullptr) - { - request->send(400); - delete requestArg; - return; - } - - requestArg->address = addressParam->value(); - if (!requestArg->address.length()) - { - request->send(400); - delete requestArg; - return; - } - - AsyncClient* httpClient = new AsyncClient(); - httpClient->onError([](void* arg, AsyncClient* client, int error) - { - RequestArg* requestArg = (RequestArg*)arg; - - _dln("API :: get lat long: OnError"); - requestArg->request->send(500); - - delete requestArg; - delete client; - }); - - httpClient->onConnect(mapsGeocodeConnect, requestArg); - if (!httpClient->connect("maps.googleapis.com", 443, true)) - { - _dln("API :: get lat long: failed to connect to Google API"); - delete requestArg; - delete httpClient; - - request->send(500); - } -} - - - -void registerGeocodeRoutes(AsyncWebServer* server) -{ - server->on("/api/geo/latlong", HTTP_GET, handleGetLatLong); -} \ No newline at end of file diff --git a/src/server/geocode.h b/src/server/geocode.h deleted file mode 100644 index 5d8769e..0000000 --- a/src/server/geocode.h +++ /dev/null @@ -1,13 +0,0 @@ -/* - * Stairs - * Copyright 2017 (c) Mark van Renswoude - * - * https://git.x2software.net/pub/Stairs -*/ -#ifndef __server_geocode -#define __server_geocode -#include - -void registerGeocodeRoutes(AsyncWebServer* server); - -#endif \ No newline at end of file diff --git a/src/server/settings.cpp b/src/server/settings.cpp index a7917b7..a642c41 100644 --- a/src/server/settings.cpp +++ b/src/server/settings.cpp @@ -87,6 +87,35 @@ void handlePostConnection(AsyncWebServerRequest *request, uint8_t *data, size_t } +void handleGetSystem(AsyncWebServerRequest *request) +{ + _dln("API :: get system"); + + AsyncResponseStream *response = request->beginResponseStream("application/json"); + systemSettings->toJson(*response); + request->send(response); +} + + +void handlePostSystem(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total) +{ + _dln("API :: post system"); + + bool changed; + if (systemSettings->fromJson((char*)data, &changed)) + { + systemSettings->write(); + + if (changed) + systemSettingsChanged = true; + + request->send(200); + } + else + request->send(400); +} + + void registerSettingsRoutes(AsyncWebServer* server) { server->on("/api/version", HTTP_GET, handleVersion); @@ -95,4 +124,7 @@ void registerSettingsRoutes(AsyncWebServer* server) server->on("/api/connection", HTTP_GET, handleGetConnection); server->on("/api/connection", HTTP_POST, devNullRequest, devNullFileUpload, handlePostConnection); + + server->on("/api/system", HTTP_GET, handleGetSystem); + server->on("/api/system", HTTP_POST, devNullRequest, devNullFileUpload, handlePostSystem); } \ No newline at end of file diff --git a/src/settings/system.cpp b/src/settings/system.cpp new file mode 100644 index 0000000..9ba006a --- /dev/null +++ b/src/settings/system.cpp @@ -0,0 +1,147 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "system.h" +#include +#include +#include "../debug.h" +#include "../global.h" +#include "../config.h" + + + +void SystemSettings::read() +{ + _dln("SystemSettings :: opening file"); + File settingsFile = SPIFFS.open(SystemSettingsFile, "r"); + if (!settingsFile) + { + _dln("SystemSettings :: failed to open file"); + return; + } + + size_t size = settingsFile.size(); + if (size > 1024) + { + _dln("SystemSettings :: file size is too large"); + return; + } + + if (size == 0) + { + _dln("SystemSettings :: zero size file"); + return; + } + + std::unique_ptr buf(new char[size]); + settingsFile.readBytes(buf.get(), size); + + _dln(buf.get()); + + if (fromJson(buf.get())) + _dln("SystemSettings :: read from file"); + else + _dln("SystemSettings :: failed to parse file"); +} + + +void SystemSettings::write() +{ + _dln("SystemSettings :: opening file for writing"); + File settingsFile = SPIFFS.open(SystemSettingsFile, "w"); + if (!settingsFile) + { + _dln("SystemSettings:: failed to open file for writing"); + return; + } + + toJson(settingsFile); + _dln("SystemSettings:: written to file"); +} + + +void SystemSettings::toJson(Print &print) +{ + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(4) + JSON_OBJECT_SIZE(5)); + + JsonObject& root = jsonBuffer.createObject(); + + JsonObject& pins = root.createNestedObject("Pins"); + pins["LEDAP"] = pinLEDAP(); + pins["LEDSTA"] = pinLEDSTA(); + pins["APButton"] = pinAPButton(); + pins["PWMSDA"] = pinPWMDriverSDA(); + pins["PWMSCL"] = pinPWMDriverSCL(); + + root["PWMAddress"] = pwmDriverAddress(); + root["PWMFrequency"] = pwmDriverFrequency(); + root["MapsAPIKey"] = mapsAPIKey(); + + root.printTo(print); +} + + +bool SystemSettings::fromJson(char* data) +{ + return fromJson(data, nullptr); +} + +bool SystemSettings::fromJson(char* data, bool* changed) +{ + if (changed != nullptr) + *changed = false; + + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(4) + JSON_OBJECT_SIZE(5) + 160); + JsonObject& root = jsonBuffer.parseObject(data); + + if (!root.success()) + return false; + + JsonObject& pins = root["Pins"]; + uint8_t jsonPinLEDAP = pins["LEDAP"]; + uint8_t jsonPinLEDSTA = pins["LEDSTA"]; + uint8_t jsonPinAPButton = pins["APButton"]; + uint8_t jsonPinPWMDriverSDA = pins["PWMSDA"]; + uint8_t jsonPinPWMDriverSCL = pins["PWMSCL"]; + + uint8_t jsonPWMDriverAddress = root["PWMAddress"]; + uint16_t jsonPWMDriverFrequency = root["PWMFrequency"]; + const char* jsonMapAPIKey = root["MapsAPIKey"]; + + if (jsonPinLEDAP == 0) jsonPinLEDAP = pinLEDAP(); + if (jsonPinLEDSTA == 0) jsonPinLEDSTA = pinLEDSTA(); + if (jsonPinAPButton == 0) jsonPinAPButton = pinAPButton(); + if (jsonPinPWMDriverSDA == 0) jsonPinPWMDriverSDA = pinPWMDriverSDA(); + if (jsonPinPWMDriverSCL == 0) jsonPinPWMDriverSCL = pinPWMDriverSCL(); + + if (jsonPWMDriverAddress == 0) jsonPWMDriverAddress = pwmDriverAddress(); + if (jsonPWMDriverFrequency == 0) jsonPWMDriverFrequency = pwmDriverFrequency(); + + + if ((jsonPinLEDAP != pinLEDAP()) || + (jsonPinLEDSTA != pinLEDSTA()) || + (jsonPinAPButton != pinAPButton()) || + (jsonPinPWMDriverSDA != pinPWMDriverSDA()) || + (jsonPinPWMDriverSCL != pinPWMDriverSCL()) || + (jsonPWMDriverAddress != pwmDriverAddress()) || + (jsonPWMDriverFrequency != pwmDriverFrequency()) || + (jsonMapAPIKey != mapsAPIKey())) + { + pinLEDAP(jsonPinLEDAP); + pinLEDSTA(jsonPinLEDSTA); + pinAPButton(jsonPinAPButton); + pinPWMDriverSDA(jsonPinPWMDriverSDA); + pinPWMDriverSCL(jsonPinPWMDriverSCL); + pwmDriverAddress(jsonPWMDriverAddress); + pwmDriverFrequency(jsonPWMDriverFrequency); + mapsAPIKey(jsonMapAPIKey); + + if (changed != nullptr) + *changed = true; + } + + return true; +} \ No newline at end of file diff --git a/src/settings/system.h b/src/settings/system.h new file mode 100644 index 0000000..2232968 --- /dev/null +++ b/src/settings/system.h @@ -0,0 +1,67 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __settingssystem +#define __settingssystem + +#include +#include +#include +#include "../charproperties.h" + + +class SystemSettings : CharProperties +{ + private: + uint8_t mPinLEDAP = 4; + uint8_t mPinLEDSTA = 5; + uint8_t mPinAPButton = 2; + + uint8_t mPinPWMDriverSDA = 13; + uint8_t mPinPWMDriverSCL = 12; + uint8_t mPWMDriverAddress = 0x40; + uint16_t mPWMDriverFrequency = 1600; + + char* mMapsAPIKey = nullptr; + + public: + void read(); + void write(); + + + void toJson(Print &print); + bool fromJson(char* data); + bool fromJson(char* data, bool* changed); + + + uint8_t pinLEDAP() { return mPinLEDAP; } + uint8_t pinLEDAP(uint8_t value) { mPinLEDAP = value; } + + uint8_t pinLEDSTA() { return mPinLEDSTA; } + uint8_t pinLEDSTA(uint8_t value) { mPinLEDSTA = value; } + + uint8_t pinAPButton() { return mPinAPButton; } + uint8_t pinAPButton(uint8_t value) { mPinAPButton = value; } + + + uint8_t pinPWMDriverSDA() { return mPinPWMDriverSDA; } + uint8_t pinPWMDriverSDA(uint8_t value) { mPinPWMDriverSDA = value; } + + uint8_t pinPWMDriverSCL() { return mPinPWMDriverSCL; } + uint8_t pinPWMDriverSCL(uint8_t value) { mPinPWMDriverSCL = value; } + + uint8_t pwmDriverAddress() { return mPWMDriverAddress; } + uint8_t pwmDriverAddress(uint8_t value) { mPWMDriverAddress = value; } + + uint16_t pwmDriverFrequency() { return mPWMDriverFrequency; } + uint16_t pwmDriverFrequency(uint16_t value) { mPWMDriverFrequency = value; } + + + char* mapsAPIKey() { return mMapsAPIKey; } + void mapsAPIKey(const char* value) { assignChar(&mMapsAPIKey, value); } +}; + +#endif \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 04ba922..0f5aedd 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(t){c.headers[t]={}}),o.forEach(["post","put","patch"],function(t){c.headers[t]=o.merge(s)}),t.exports=c},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){return r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]}),(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===hn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return gn.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=x(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=x(l.text+c):""!==c&&f.push(x(c)):X(c)&&X(l)?f[u]=x(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Nr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=F(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function jt(t){this._init(t)}function Et(t){return t&&(t.Ctor.options.name||t.tag)}function Lt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==hn.call(n))&&t.test(e));var n}function It(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Et(a.componentOptions);s&&!e(s)&&Ft(n,o,r,i)}}}function Ft(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Dt(t,n){return{staticClass:Nt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Nt(t,e){return t?e?t+" "+e:t:e||""}function Pt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(_=t.charAt(y));y--);_&&$i.test(_)||(d=!0)}}else void 0===o?(g=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==g&&e(),a)for(i=0;i-1?{exp:t.slice(0,Jr),key:'"'+t.slice(Jr+1)+'"'}:{exp:t,key:null};for(Wr=t,Jr=Kr=Xr=0;!se();)ce(qr=ae())?ue(qr):91===qr&&function(t){var e=1;for(Kr=Jr;!se();)if(t=ae(),ce(t))ue(t);else if(91===t&&e++,93===t&&e--,0===e){Xr=Jr;break}}(qr);return{exp:t.slice(0,Kr),key:t.slice(Kr+1,Xr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function ae(){return Wr.charCodeAt(++Jr)}function se(){return Jr>=zr}function ce(t){return 34===t||39===t}function ue(t){for(var e=t;!se()&&(t=ae())!==e;);}function le(t,e,n,r,i){var o,a,s,c,u;e=(u=e)._withTask||(u._withTask=function(){pr=!0;var t=u.apply(null,arguments);return pr=!1,t}),n&&(o=e,a=t,s=r,c=Gr,e=function t(){null!==o.apply(null,arguments)&&fe(a,t,s,c)}),Gr.addEventListener(t,e,Un?{capture:r,passive:i}:r)}function fe(t,e,n,r){(r||Gr).removeEventListener(t,e._withTask||e,n)}function pe(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Gr=r.elm,function(t){if(e(t[xi])){var n=Dn?"change":"input";t[n]=[].concat(t[xi],t[n]||[]),delete t[xi]}e(t[ki])&&(t.change=[].concat(t[ki],t.change||[]),delete t[ki])}(i),q(i,o,le,fe,r.context),Gr=void 0}}function de(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function he(t){var e=ve(t.style);return t.staticStyle?v(t.staticStyle,e):e}function ve(t){return Array.isArray(t)?m(t):"string"==typeof t?Ai(t):t}function me(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=ve(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=he(i.data))&&v(r,n);(n=he(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=he(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&ji(c,s,"");for(s in d)(a=d[s])!==f[s]&&ji(c,s,null==a?"":a)}}function ge(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function _e(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Fi(t.name||"v")),v(e,t),e}return"string"==typeof t?Fi(t):void 0}}function be(t){Vi(function(){Vi(t)})}function we(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ge(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),ye(t,e)}function xe(t,e,n){var r=ke(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ni?Ri:Ui,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ni,l=a,f=o.length):e===Pi?u>0&&(n=Pi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ni:Pi:null)?n===Ni?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ni&&Hi.test(r[Mi+"Property"])}}function Ce(t,e){for(;t.length1}function Ee(t,e){!0!==e.data.show&&Ae(e)}function Le(t,e,n){Ie(t,e,n),(Dn||Pn)&&setTimeout(function(){Ie(t,e,n)},0)}function Ie(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(De(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function Fe(t,e){return e.every(function(e){return!y(e,t)})}function De(t){return"_value"in t?t._value:t.value}function Ne(t){t.target.composing=!0}function Pe(t){t.target.composing&&(t.target.composing=!1,Me(t.target,"input"))}function Me(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Re(t){return!t.componentInstance||t.data&&t.data.transition?t:Re(t.componentInstance._vnode)}function Be(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Be(Y(e.children)):t}function Ue(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[_n(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function He(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function ze(t){t.data.newPos=t.elm.getBoundingClientRect()}function We(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qe(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',Ao.innerHTML.indexOf(" ")>0}var dn=Object.freeze({}),hn=Object.prototype.toString,vn=u("slot,component",!0),mn=u("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,_n=p(function(t){return t.replace(yn,function(t,e){return e?e.toUpperCase():""})}),bn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),wn=/\B([A-Z])/g,$n=p(function(t){return t.replace(wn,"-$1").toLowerCase()}),xn=function(t,e,n){return!1},kn=function(t){return t},Cn="data-server-rendered",Sn=["component","directive","filter"],An=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],Tn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:xn,isReservedAttr:xn,isUnknownElement:xn,getTagNamespace:g,parsePlatformTagName:kn,mustUseProp:xn,_lifecycleHooks:An},On=/[^\w.$]/,jn="__proto__"in{},En="undefined"!=typeof window,Ln="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,In=Ln&&WXEnvironment.platform.toLowerCase(),Fn=En&&window.navigator.userAgent.toLowerCase(),Dn=Fn&&/msie|trident/.test(Fn),Nn=Fn&&Fn.indexOf("msie 9.0")>0,Pn=Fn&&Fn.indexOf("edge/")>0,Mn=Fn&&Fn.indexOf("android")>0||"android"===In,Rn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===In,Bn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(En)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Vn)}catch(t){}var Hn,zn,Wn=function(){return void 0===Hn&&(Hn=!En&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Hn},qn=En&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Jn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);zn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Kn=g,Xn=0,Gn=function(){this.id=Xn++,this.subs=[]};Gn.prototype.addSub=function(t){this.subs.push(t)},Gn.prototype.removeSub=function(t){l(this.subs,t)},Gn.prototype.depend=function(){Gn.target&&Gn.target.addDep(this)},Gn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eCr&&br[n].id>t.id;)n--;br.splice(n+1,0,t)}else br.push(t);xr||(xr=!0,H(ct))}}(this)},Ar.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){R(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Ar.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Ar.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Ar.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var Tr={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};kt(Ct.prototype);var jr,Er,Lr,Ir,Fr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=(a=t,s={_isComponent:!0,parent:_r,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Fr.prepatch(o,o)}var a,s,c},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==dn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||dn,t.$listeners=n||dn,e&&t.$options.props){ir.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ft(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};Rr=jt,(Ur={}).get=function(){return Tn},Object.defineProperty(Rr,"config",Ur),Rr.util={warn:Kn,extend:v,mergeOptions:F,defineReactive:A},Rr.set=T,Rr.delete=O,Rr.nextTick=H,Rr.options=Object.create(null),Sn.forEach(function(t){Rr.options[t+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Hr),Rr.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},Rr.mixin=function(t){return this.options=F(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=F(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)ut(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)lt(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Sn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Br=Rr,Sn.forEach(function(t){Br[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}),Object.defineProperty(jt.prototype,"$isServer",{get:Wn}),Object.defineProperty(jt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),jt.version="2.5.13";var zr,Wr,qr,Jr,Kr,Xr,Gr,Zr,Yr=u("style,class"),Qr=u("input,textarea,option,select,progress"),ti=function(t,e,n){return"value"===n&&Qr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},ei=u("contenteditable,draggable,spellcheck"),ni=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},oi=function(t){return ii(t)?t.slice(6,t.length):""},ai=function(t){return null==t||!1===t},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ui=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),li=function(t){return ci(t)||ui(t)},fi=Object.create(null),pi=u("text,number,password,search,email,tel,url"),di=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(si[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),hi={create:function(t,e){Bt(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Bt(t,!0),Bt(e))},destroy:function(t){Bt(t,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ht,update:Ht,destroy:function(t){Ht(t,vi)}},yi=Object.create(null),_i=[hi,gi],bi={create:qt,update:qt},wi={create:Kt,update:Kt},$i=/[\w).+\-_$\]]/,xi="__r",ki="__c",Ci={create:pe,update:pe},Si={create:de,update:de},Ai=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ti=/^--/,Oi=/\s*!important$/,ji=function(t,e,n){if(Ti.test(e))t.style.setProperty(e,n);else if(Oi.test(n))t.style.setProperty(e,n.replace(Oi,""),"important");else{var r=Li(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:fi[t]=/HTMLUnknownElement/.test(e.toString())},v(jt.options.directives,qi),v(jt.options.components,Gi),jt.prototype.__patch__=En?zi:g,jt.prototype.$mount=function(t,e){return t=t&&En?Rt(t):void 0,r=t,i=e,(n=this).$el=r,n.$options.render||(n.$options.render=tr),st(n,"beforeMount"),new Ar(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,st(n,"mounted")),n;var n,r,i},jt.nextTick(function(){Tn.devtools&&qn&&qn.emit("init",jt)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,to=p(function(t){var e=t[0].replace(Qi,"\\$&"),n=t[1].replace(Qi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),eo={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=re(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=ne(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},no={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=re(t,"style");n&&(t.staticStyle=JSON.stringify(Ai(n)));var r=ne(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},ro=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",uo=new RegExp("^<"+co),lo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Do(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(ho.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(vo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(po);if(y){n(y[0].length);continue}var _=t.match(fo);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(uo);if(e){var r,i,o={tagName:e[1],attrs:[],start:l};for(n(e[0].length);!(r=t.match(lo))&&(i=t.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=l,o}}();if(w){!function(t){var n,i,l,f=t.tagName,p=t.unarySlash;s&&("p"===o&&oo(f)&&r(o),u(f)&&o===f&&r(f));for(var d=c(f)||!!p,h=t.attrs.length,v=new Array(h),m=0;m=0){for(x=t.slice(v);!(fo.test(x)||uo.test(x)||ho.test(x)||vo.test(x)||(k=x.indexOf("<",1))<0);)v+=k,x=t.slice(v);$=t.substring(0,v),n(v)}v<0&&($=t,t=""),e.chars&&$&&e.chars($)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:go,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||ko(t);Dn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Xt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e,n,r,i=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(r=i,N.test(r)?(n=(e=i).charCodeAt(0))!==e.charCodeAt(e.length-1)||34!==n&&39!==n?e:e.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.formatter=this.$root.$i18n.formatter,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},$=function(){this._caches=Object.create(null)};$.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[S]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===L&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c,u=this._path.getPathValue(e,i);if(Array.isArray(u))return u;if(r(u)){if(!n(e))return null;if("string"!=typeof(c=e[i]))return null}else{if("string"!=typeof u)return null;c=u}return c.indexOf("@:")>=0&&(c=this._link(t,e,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s,c=i.apply(void 0,o),u=c.locale||e,l=this._translate(n,u,this.fallbackLocale,t,r,"string",c.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[t].concat(o))}return this._warnDefault(u,t,l,r)},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){var n;(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeLatLong:"Latitude / longitude",timeLocation:"Get latitude / longitude from location",timeLocationSearch:"Search",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeLatLong:"Breedtegraad / lengtegraad",timeLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",timeLocationSearch:"Zoeken",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{latlong:"",location:""}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},allSteps:!0,allStepsValue:0,steps:[]},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.triggers.time.latlong=n.lat+","+n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function Lt(t){return t&&(t.Ctor.options.name||t.tag)}function It(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Ft(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Lt(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Vr=t,zr=Wr=qr=0;!ce();)ue(Hr=se())?le(Hr):91===Hr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Hr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Vr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Hn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Ai(c,s,"");for(s in d)(a=d[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function xe(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ii?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ii,l=a,f=o.length):e===Fi?u>0&&(n=Fi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ii:Fi:null)?n===Ii?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ii&&Bi.test(r[Di+"Property"])}}function Se(t,e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Te(e)}function Ie(t,e,n){Fe(t,e,n),(Pn||Rn)&&setTimeout(function(){Fe(t,e,n)},0)}function Fe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function Ve(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function He(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),xn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),$n=/\B([A-Z])/g,kn=p(function(t){return t.replace($n,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},Sn=function(t){return t},An="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:Sn,mustUseProp:Cn,_lifecycleHooks:On},En=/[^\w.$]/,Ln="__proto__"in{},In="undefined"!=typeof window,Fn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=Fn&&WXEnvironment.platform.toLowerCase(),Nn=In&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Dn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Dn,Vn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Hn=!1;if(In)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Hn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!In&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=In&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);qn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eAr&&xr[n].id>t.id;)n--;xr.splice(n+1,0,t)}else xr.push(t);Cr||(Cr=!0,z(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(St.prototype);var Lr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Lr.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=z,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Vr,Hr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",xi={create:de,update:de},$i={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Si=/\s*!important$/,Ai=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Si.test(n))t.style.setProperty(e,n.replace(Si,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Hi),v(Et.options.components,Ji),Et.prototype.__patch__=In?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&In?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Lo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for($=t.slice(v);!(co.test($)||ao.test($)||lo.test($)||fo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[S]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===L&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeLatLong:"Latitude / longitude",timeLocation:"Get latitude / longitude from location",timeLocationSearch:"Search",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeLatLong:"Breedtegraad / lengtegraad",timeLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",timeLocationSearch:"Zoeken",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{latlong:"",location:""}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},allSteps:!0,allStepsValue:0,steps:[]},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.triggers.time.latlong=n.lat+","+n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file From f220f1b7a1083d87f59c10b8398eeea323084bf5 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Wed, 10 Jan 2018 21:04:55 +0100 Subject: [PATCH 13/43] Added time trigger settings and corresponding API Fixed #9: Changing individual step with startTime can fail --- API.md | 7 +- Stairs.sublime-project | 15 +++- src/assets/version.h | 6 +- src/config.h | 1 + src/global.cpp | 3 + src/global.h | 5 ++ src/main.cpp | 1 + src/server/api.cpp | 79 ++++++++++++++++++ src/settings/system.h | 4 + src/settings/triggers/time.cpp | 148 +++++++++++++++++++++++++++++++++ src/settings/triggers/time.h | 68 +++++++++++++++ src/stairs.cpp | 2 + 12 files changed, 334 insertions(+), 5 deletions(-) create mode 100644 src/settings/triggers/time.cpp create mode 100644 src/settings/triggers/time.h diff --git a/API.md b/API.md index b7f674d..0830764 100644 --- a/API.md +++ b/API.md @@ -6,7 +6,8 @@ - [POST /api/connection](#post-apiconnection) - [GET /api/steps](#get-apisteps) - [POST /api/steps](#post-apisteps) -- [GET /api/geocode/latlong](#get-apigeocodelatlong) +- [GET /api/triggers/time](#get-apitriggerstime) +- [POST /api/triggers/time](#post-apitriggerstime) - [POST /api/firmware](#post-apifirmware) ## GET /api/version @@ -117,6 +118,10 @@ An optional array 'startTime' can be included which specifies the delay, for eac } ``` +## GET /api/triggers/time + +## POST /api/triggers/time + ## POST /api/firmware Uploads new firmware. The bin file should be posted as a multipart/form-data file attachment. Name is not relevant. \ No newline at end of file diff --git a/Stairs.sublime-project b/Stairs.sublime-project index a3375cb..ec7b2ec 100644 --- a/Stairs.sublime-project +++ b/Stairs.sublime-project @@ -8,5 +8,18 @@ ], "completions":[ ["t", "{{ \\$t('${1:}') }}"] - ] + ], + "settings": { + "todoreview": { + "exclude_folders": [ + "*.pioenvs*", + "*.piolibdeps*", + "*bin*", + "*node_modules*" + ], + "patterns": { + "TODO": "TODO[\\s]*(?P.*)$", + } + } + } } \ No newline at end of file diff --git a/src/assets/version.h b/src/assets/version.h index 88dcf43..4f80f74 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 11; +const uint8_t VersionMetadata = 13; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+11"; -const char VersionCommitDate[] = "2018-01-08"; +const char VersionFullSemVer[] = "2.0.0-beta.1+13"; +const char VersionCommitDate[] = "2018-01-10"; #endif diff --git a/src/config.h b/src/config.h index d222da1..05983bc 100644 --- a/src/config.h +++ b/src/config.h @@ -15,6 +15,7 @@ static const uint32_t SerialDebugStartupDelay = 2000; static const char* ConnectionSettingsFile = "/connection.json"; static const char* SystemSettingsFile = "/system.json"; static const char* StepSettingsFile = "/stepsettings.dat"; +static const char* TimeTriggerSettingsFile = "/timetriggersettings.dat"; static const char* DefaultAPSSIDPrefix = "Stairs-"; diff --git a/src/global.cpp b/src/global.cpp index 46cd07c..a6d1bb7 100644 --- a/src/global.cpp +++ b/src/global.cpp @@ -15,6 +15,9 @@ bool systemSettingsChanged = false; StepsSettings* stepsSettings = new StepsSettings(); bool stepsSettingsChanged = false; +TimeTriggerSettings* timeTriggerSettings = new TimeTriggerSettings(); +bool timeTriggerSettingsChanged = false; + Stairs* stairs; diff --git a/src/global.h b/src/global.h index 26cf047..b8fb847 100644 --- a/src/global.h +++ b/src/global.h @@ -13,6 +13,7 @@ #include "settings/connection.h" #include "settings/system.h" #include "settings/steps.h" +#include "settings/triggers/time.h" #include "stairs.h" extern ConnectionSettings* connectionSettings; @@ -24,6 +25,10 @@ extern bool systemSettingsChanged; extern StepsSettings* stepsSettings; extern bool stepsSettingsChanged; +extern TimeTriggerSettings* timeTriggerSettings; +extern bool timeTriggerSettingsChanged; + + extern Stairs* stairs; extern bool shouldReboot; diff --git a/src/main.cpp b/src/main.cpp index 90ef3db..0bc1b04 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -85,6 +85,7 @@ void setup() connectionSettings->read(); systemSettings->read(); stepsSettings->read(); + timeTriggerSettings->read(); pinMode(systemSettings->pinAPButton(), INPUT_PULLUP); pinMode(systemSettings->pinLEDAP(), OUTPUT); diff --git a/src/server/api.cpp b/src/server/api.cpp index 8639a1a..8846540 100644 --- a/src/server/api.cpp +++ b/src/server/api.cpp @@ -13,6 +13,7 @@ #include "../debug.h" #include "../global.h" #include "../settings/connection.h" +#include "../settings/triggers/time.h" void handleGetSteps(AsyncWebServerRequest *request) @@ -64,8 +65,86 @@ void handlePostSteps(AsyncWebServerRequest *request, uint8_t *data, size_t len, } +void handleGetTimeTriggers(AsyncWebServerRequest *request) +{ + _dln("API :: get time triggers"); + + uint8_t count = timeTriggerSettings->triggerCount(); + + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(count) + JSON_OBJECT_SIZE(2) + count*JSON_OBJECT_SIZE(5)); + JsonObject& root = jsonBuffer.createObject(); + root["transitionTime"] = timeTriggerSettings->transitionTime(); + + JsonArray& jsonTriggers = root.createNestedArray("triggers"); + + for (uint8_t i = 0; i < count; i++) + { + TimeTrigger* trigger = timeTriggerSettings->trigger(i); + + JsonObject& jsonTrigger = jsonTriggers.createNestedObject(); + jsonTrigger["timeofDay"] = trigger->timeOfDay; + jsonTrigger["daysOfWeek"] = trigger->daysOfWeek; + jsonTrigger["brightness"] = trigger->brightness; + jsonTrigger["triggerType"] = (uint8_t)trigger->triggerType; + jsonTrigger["enabled"] = trigger->enabled; + } + + AsyncResponseStream *response = request->beginResponseStream("application/json"); + root.printTo(*response); + + request->send(response); +} + + +void handlePostTimeTriggers(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total) +{ + _dln("API :: post time triggers"); + + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(10) + JSON_OBJECT_SIZE(2) + 10*JSON_OBJECT_SIZE(5) + 510); + JsonObject& root = jsonBuffer.parseObject((char*)data); + if (!root.success()) + { + request->send(400); + return; + } + + JsonArray& jsonTriggers = root["triggers"]; + if (jsonTriggers.size() > 255) + { + request->send(400); + return; + } + + timeTriggerSettings->transitionTime(root["transitionTime"]); + timeTriggerSettings->beginSetTriggers(jsonTriggers.size()); + + TimeTrigger trigger; + for (uint8_t i = 0; i < jsonTriggers.size(); i++) + { + JsonObject& jsonTrigger = jsonTriggers[i]; + + trigger.timeOfDay = jsonTrigger["timeOfDay"]; + trigger.daysOfWeek = jsonTrigger["daysOfWeek"]; + trigger.brightness = jsonTrigger["brightness"]; + trigger.triggerType = (TimeTriggerType)(uint8_t)jsonTrigger["triggerType"]; + trigger.enabled = jsonTrigger["enabled"]; + + timeTriggerSettings->setTrigger(i, &trigger); + } + + timeTriggerSettings->endSetTriggers(); + timeTriggerSettings->write(); + timeTriggerSettingsChanged = true; + + request->send(200); +} + + void registerAPIRoutes(AsyncWebServer* server) { server->on("/api/steps", HTTP_GET, handleGetSteps); server->on("/api/steps", HTTP_POST, devNullRequest, devNullFileUpload, handlePostSteps); + + server->on("/api/triggers/time", HTTP_GET, handleGetTimeTriggers); + server->on("/api/triggers/time", HTTP_POST, devNullRequest, devNullFileUpload, handlePostTimeTriggers); } \ No newline at end of file diff --git a/src/settings/system.h b/src/settings/system.h index 2232968..4115593 100644 --- a/src/settings/system.h +++ b/src/settings/system.h @@ -27,6 +27,10 @@ class SystemSettings : CharProperties char* mMapsAPIKey = nullptr; + // TODO loginRequired + // TODO loginUsername + // TODO loginPassword + public: void read(); void write(); diff --git a/src/settings/triggers/time.cpp b/src/settings/triggers/time.cpp new file mode 100644 index 0000000..cd79a8b --- /dev/null +++ b/src/settings/triggers/time.cpp @@ -0,0 +1,148 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "time.h" +#include +#include +#include "../../debug.h" + + +timeDayOfWeek_t toTimeDayOfWeek(DayOfWeek day) +{ + switch (day) + { + case Monday: return dowMonday; + case Tuesday: return dowTuesday; + case Wednesday: return dowWednesday; + case Thursday: return dowThursday; + case Friday: return dowFriday; + case Saturday: return dowSaturday; + case Sunday: return dowSunday; + } + + return dowInvalid; +} + + +DayOfWeek toDayOfWeek(timeDayOfWeek_t timeDay) +{ + switch (timeDay) + { + case dowSunday: return Sunday; + case dowMonday: return Monday; + case dowTuesday: return Tuesday; + case dowWednesday: return Wednesday; + case dowThursday: return Thursday; + case dowFriday: return Friday; + case dowSaturday: return Saturday; + } + + return Monday; +} + + +struct Header +{ + uint8_t version; + uint8_t triggerCount; + uint16_t transitionTime; +}; + + +void TimeTriggerSettings::read() +{ + _dln("TimeTriggerSettings :: Loading time triggers"); + File f = SPIFFS.open(TimeTriggerSettingsFile, "r"); + if (!f) + return; + + if (!f.available()) + return; + + Header header; + f.readBytes((char*)&header, sizeof(Header)); + + if (header.version != 1) + return; + + mTransitionTime = header.transitionTime; + beginSetTriggers(header.triggerCount); + + if (header.triggerCount > 0) + f.readBytes((char*)&mTriggers, header.triggerCount * sizeof(TimeTrigger)); + + endSetTriggers(); + + f.close(); +} + + +void TimeTriggerSettings::write() +{ + _dln("TimeTriggerSettings :: Saving time triggers"); + File f = SPIFFS.open(TimeTriggerSettingsFile, "w"); + if (!f) + return; + + Header header; + header.version = 1; + header.transitionTime = mTransitionTime; + header.triggerCount = mTriggerCount; + + f.write((uint8_t*)&header, sizeof(Header)); + f.write((uint8_t*)&mTriggers, header.triggerCount * sizeof(TimeTrigger)); + f.close(); +} + + +void TimeTriggerSettings::beginSetTriggers(uint8_t count) +{ + if (mTriggers != nullptr) + delete [] mTriggers; + + mTriggers = new TimeTrigger[count]; + mTriggerCount = count; +} + + +void TimeTriggerSettings::setTrigger(uint8_t index, TimeTrigger* value) +{ + memcpy(&mTriggers[index], value, sizeof(TimeTrigger)); +} + + +void TimeTriggerSettings::endSetTriggers() +{ + // Sort triggers by time of day + // Based on the Comb sort implementation by Rob Tillaart + // http://forum.arduino.cc/index.php?topic=280486.0 + uint8_t i, j; + uint8_t gap; + bool swapped = true; + TimeTrigger temp; + + gap = mTriggerCount; + while (gap > 1 || swapped) + { + if (gap > 1) + { + gap = gap * 10/13; + if (gap == 9 || gap == 10) gap = 11; + } + + swapped = false; + for (i = 0, j = gap; j < mTriggerCount; i++, j++) + { + if (mTriggers[i].timeOfDay > mTriggers[j].timeOfDay) + { + temp = mTriggers[i]; + mTriggers[i] = mTriggers[j]; + mTriggers[j] = temp; + swapped = true; + } + } + } +} \ No newline at end of file diff --git a/src/settings/triggers/time.h b/src/settings/triggers/time.h new file mode 100644 index 0000000..ca51c19 --- /dev/null +++ b/src/settings/triggers/time.h @@ -0,0 +1,68 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __settingstriggerstime +#define __settingstriggerstime + +#include + +enum DayOfWeek +{ + Monday = 1, + Tuesday = 2, + Wednesday = 4, + Thursday = 8, + Friday = 16, + Saturday = 32, + Sunday = 64 +}; + + +extern timeDayOfWeek_t toTimeDayOfWeek(DayOfWeek day); +extern DayOfWeek toDayOfWeek(timeDayOfWeek_t timeDay); + + +enum TimeTriggerType +{ + FixedTime = 0, + RelativeToSunrise = 1, + RelativeToSunset = 2 +}; + + +struct TimeTrigger +{ + uint16_t timeOfDay; + uint8_t daysOfWeek; + uint8_t brightness; + TimeTriggerType triggerType; + bool enabled; +}; + + +class TimeTriggerSettings +{ + private: + uint16_t mTransitionTime = 0; + uint8_t mTriggerCount = 0; + TimeTrigger* mTriggers = nullptr; + + public: + void read(); + void write(); + + uint16_t transitionTime() { return mTransitionTime; } + void transitionTime(uint16_t value) { mTransitionTime = value; } + + uint8_t triggerCount() { return mTriggerCount; } + TimeTrigger* trigger(uint8_t index) { return &mTriggers[index]; } + + void beginSetTriggers(uint8_t count); + void setTrigger(uint8_t index, TimeTrigger* value); + void endSetTriggers(); +}; + +#endif \ No newline at end of file diff --git a/src/stairs.cpp b/src/stairs.cpp index f440e92..b8dcdf8 100644 --- a/src/stairs.cpp +++ b/src/stairs.cpp @@ -105,6 +105,8 @@ void Stairs::tick() applyCurrentValue(step); } + else + mTick = true; } else if (elapsedTime >= stepState->remainingTime) { From 555eb38300f2b0cad713d1b659f072fbb51e550e Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Wed, 10 Jan 2018 22:28:18 +0100 Subject: [PATCH 14/43] Ported SunRiseSet code from Domoticz --- src/assets/version.h | 4 +- src/praisethesun.cpp | 350 +++++++++++++++++++++++++++++++++++ src/praisethesun.h | 69 +++++++ src/settings/triggers/time.h | 2 + 4 files changed, 423 insertions(+), 2 deletions(-) create mode 100644 src/praisethesun.cpp create mode 100644 src/praisethesun.h diff --git a/src/assets/version.h b/src/assets/version.h index 4f80f74..3973ca1 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 13; +const uint8_t VersionMetadata = 14; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+13"; +const char VersionFullSemVer[] = "2.0.0-beta.1+14"; const char VersionCommitDate[] = "2018-01-10"; #endif diff --git a/src/praisethesun.cpp b/src/praisethesun.cpp new file mode 100644 index 0000000..80c2294 --- /dev/null +++ b/src/praisethesun.cpp @@ -0,0 +1,350 @@ +/* + * Stairs lighting + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs + * + * This code was ported over from Domoticz' SunRiseSet.cpp + * https://github.com/domoticz/domoticz/ +*/ +#include "praisethesun.h" +#include + + +#ifndef PI +#define PI 3.1415926535897932384 +#endif + +/* A macro to compute the number of days elapsed since 2000 Jan 0.0 */ +/* (which is equal to 1999 Dec 31, 0h UT) */ + +#define days_since_2000_Jan_0(y,m,d) \ + (367L*(y)-((7*((y)+(((m)+9)/12)))/4)+((275*(m))/9)+(d)-730530L) + +/* Some conversion factors between radians and degrees */ + +#ifndef PI + #define PI 3.1415926535897932384 +#endif + +#define RADEG ( 180.0 / PI ) +#define DEGRAD ( PI / 180.0 ) + +/* The trigonometric functions in degrees */ + +#define sind(x) sin((x)*DEGRAD) +#define cosd(x) cos((x)*DEGRAD) +#define tand(x) tan((x)*DEGRAD) + +#define atand(x) (RADEG*atan(x)) +#define asind(x) (RADEG*asin(x)) +#define acosd(x) (RADEG*acos(x)) +#define atan2d(y,x) (RADEG*atan2(y,x)) + + + +double GMST0(double d); +double revolution( double x ); +void sun_RA_dec( double d, double *RA, double *dec, double *r ); +double rev180( double x ); +void sunpos( double d, double *lon, double *r ); + + + + + +int sunriset( int year, int month, int day, double lon, double lat, + double altit, int upper_limb, double *trise, double *tset ) +/***************************************************************************/ +/* Note: year,month,date = calendar date, 1801-2099 only. */ +/* Eastern longitude positive, Western longitude negative */ +/* Northern latitude positive, Southern latitude negative */ +/* The longitude value IS critical in this function! */ +/* altit = the altitude which the Sun should cross */ +/* Set to -35/60 degrees for rise/set, -6 degrees */ +/* for civil, -12 degrees for nautical and -18 */ +/* degrees for astronomical twilight. */ +/* upper_limb: non-zero -> upper limb, zero -> center */ +/* Set to non-zero (e.g. 1) when computing rise/set */ +/* times, and to zero when computing start/end of */ +/* twilight. */ +/* *rise = where to store the rise time */ +/* *set = where to store the set time */ +/* Both times are relative to the specified altitude, */ +/* and thus this function can be used to compute */ +/* various twilight times, as well as rise/set times */ +/* Return value: 0 = sun rises/sets this day, times stored at */ +/* *trise and *tset. */ +/* +1 = sun above the specified "horizon" 24 hours. */ +/* *trise set to time when the sun is at south, */ +/* minus 12 hours while *tset is set to the south */ +/* time plus 12 hours. "Day" length = 24 hours */ +/* -1 = sun is below the specified "horizon" 24 hours */ +/* "Day" length = 0 hours, *trise and *tset are */ +/* both set to the time when the sun is at south. */ +/* */ +/**********************************************************************/ +{ + double d, /* Days since 2000 Jan 0.0 (negative before) */ + sr, /* Solar distance, astronomical units */ + sRA, /* Sun's Right Ascension */ + sdec, /* Sun's declination */ + sradius, /* Sun's apparent radius */ + t, /* Diurnal arc */ + tsouth, /* Time when Sun is at south */ + sidtime; /* Local sidereal time */ + + int rc = 0; /* Return cde from function - usually 0 */ + + /* Compute d of 12h local mean solar time */ + d = days_since_2000_Jan_0(year,month,day) + 0.5 - lon/360.0; + + /* Compute the local sidereal time of this moment */ + sidtime = revolution(GMST0(d) + 180.0 + lon); + + /* Compute Sun's RA, Decl and distance at this moment */ + sun_RA_dec( d, &sRA, &sdec, &sr ); + + /* Compute time when Sun is at south - in hours UT */ + tsouth = 12.0 - rev180(sidtime - sRA)/15.0; + + /* Compute the Sun's apparent radius in degrees */ + sradius = 0.2666 / sr; + + /* Do correction to upper limb, if necessary */ + if ( upper_limb ) + altit -= sradius; + + /* Compute the diurnal arc that the Sun traverses to reach */ + /* the specified altitude altit: */ + { + double cost; + cost = ( sind(altit) - sind(lat) * sind(sdec) ) / + ( cosd(lat) * cosd(sdec) ); + if ( cost >= 1.0 ) + rc = -1, t = 0.0; /* Sun always below altit */ + else if ( cost <= -1.0 ) + rc = +1, t = 12.0; /* Sun always above altit */ + else + t = acosd(cost)/15.0; /* The diurnal arc, hours */ + } + + /* Store rise and set times - in hours UT */ + *trise = tsouth - t; + *tset = tsouth + t; + + return rc; +} + + + +double daylen( int year, int month, int day, double lon, double lat, double altit, int upper_limb ) +/**********************************************************************/ +/* Note: year,month,date = calendar date, 1801-2099 only. */ +/* Eastern longitude positive, Western longitude negative */ +/* Northern latitude positive, Southern latitude negative */ +/* The longitude value is not critical. Set it to the correct */ +/* longitude if you're picky, otherwise set to to, say, 0.0 */ +/* The latitude however IS critical - be sure to get it correct */ +/* altit = the altitude which the Sun should cross */ +/* Set to -35/60 degrees for rise/set, -6 degrees */ +/* for civil, -12 degrees for nautical and -18 */ +/* degrees for astronomical twilight. */ +/* upper_limb: non-zero -> upper limb, zero -> center */ +/* Set to non-zero (e.g. 1) when computing day length */ +/* and to zero when computing day+twilight length. */ +/**********************************************************************/ +{ + double d, /* Days since 2000 Jan 0.0 (negative before) */ + obl_ecl, /* Obliquity (inclination) of Earth's axis */ + sr, /* Solar distance, astronomical units */ + slon, /* True solar longitude */ + sin_sdecl, /* Sine of Sun's declination */ + cos_sdecl, /* Cosine of Sun's declination */ + sradius, /* Sun's apparent radius */ + t; /* Diurnal arc */ + + /* Compute d of 12h local mean solar time */ + d = days_since_2000_Jan_0(year,month,day) + 0.5 - lon/360.0; + + /* Compute obliquity of ecliptic (inclination of Earth's axis) */ + obl_ecl = 23.4393 - 3.563E-7 * d; + + /* Compute Sun's ecliptic longitude and distance */ + sunpos( d, &slon, &sr ); + + /* Compute sine and cosine of Sun's declination */ + sin_sdecl = sind(obl_ecl) * sind(slon); + cos_sdecl = sqrt( 1.0 - sin_sdecl * sin_sdecl ); + + /* Compute the Sun's apparent radius, degrees */ + sradius = 0.2666 / sr; + + /* Do correction to upper limb, if necessary */ + if ( upper_limb ) + altit -= sradius; + + /* Compute the diurnal arc that the Sun traverses to reach */ + /* the specified altitude altit: */ + { + double cost; + cost = ( sind(altit) - sind(lat) * sin_sdecl ) / + ( cosd(lat) * cos_sdecl ); + if ( cost >= 1.0 ) + t = 0.0; /* Sun always below altit */ + else if ( cost <= -1.0 ) + t = 24.0; /* Sun always above altit */ + else t = (2.0/15.0) * acosd(cost); /* The diurnal arc, hours */ + } + return t; +} + + +/* This function computes the Sun's position at any instant */ + +void sunpos( double d, double *lon, double *r ) +/******************************************************/ +/* Computes the Sun's ecliptic longitude and distance */ +/* at an instant given in d, number of days since */ +/* 2000 Jan 0.0. The Sun's ecliptic latitude is not */ +/* computed, since it's always very near 0. */ +/******************************************************/ +{ + double M, /* Mean anomaly of the Sun */ + w, /* Mean longitude of perihelion */ + /* Note: Sun's mean longitude = M + w */ + e, /* Eccentricity of Earth's orbit */ + E, /* Eccentric anomaly */ + x, y, /* x, y coordinates in orbit */ + v; /* True anomaly */ + + /* Compute mean elements */ + M = revolution(356.0470 + 0.9856002585 * d); + w = 282.9404 + 4.70935E-5 * d; + e = 0.016709 - 1.151E-9 * d; + + /* Compute true longitude and radius vector */ + E = M + e * RADEG * sind(M) * ( 1.0 + e * cosd(M) ); + x = cosd(E) - e; + y = sqrt( 1.0 - e*e ) * sind(E); + *r = sqrt( x*x + y*y ); /* Solar distance */ + v = atan2d( y, x ); /* True anomaly */ + *lon = v + w; /* True solar longitude */ + if ( *lon >= 360.0 ) + *lon -= 360.0; /* Make it 0..360 degrees */ +} + + +void sun_RA_dec( double d, double *RA, double *dec, double *r ) +/******************************************************/ +/* Computes the Sun's equatorial coordinates RA, Decl */ +/* and also its distance, at an instant given in d, */ +/* the number of days since 2000 Jan 0.0. */ +/******************************************************/ +{ + double lon, obl_ecl, x, y, z; + + /* Compute Sun's ecliptical coordinates */ + sunpos( d, &lon, r ); + + /* Compute ecliptic rectangular coordinates (z=0) */ + x = *r * cosd(lon); + y = *r * sind(lon); + + /* Compute obliquity of ecliptic (inclination of Earth's axis) */ + obl_ecl = 23.4393 - 3.563E-7 * d; + + /* Convert to equatorial rectangular coordinates - x is unchanged */ + z = y * sind(obl_ecl); + y = y * cosd(obl_ecl); + + /* Convert to spherical coordinates */ + *RA = atan2d( y, x ); + *dec = atan2d( z, sqrt(x*x + y*y) ); + +} + + +/******************************************************************/ +/* This function reduces any angle to within the first revolution */ +/* by subtracting or adding even multiples of 360.0 until the */ +/* result is >= 0.0 and < 360.0 */ +/******************************************************************/ + +#define INV360 ( 1.0 / 360.0 ) + +double revolution( double x ) +/*****************************************/ +/* Reduce angle to within 0..360 degrees */ +/*****************************************/ +{ + return( x - 360.0 * floor( x * INV360 ) ); +} + +double UtcToLocal(double time, double tz) +/*********************************************/ +/* Add Time Zone difference to time */ +/*********************************************/ +{ + time += tz; + return((time > 24.0) ? time-24.0 : (time < 0.0) ? time+24.0 : time); +} + +double rev180( double x ) +/*********************************************/ +/* Reduce angle to within +180..+180 degrees */ +/*********************************************/ +{ + return( x - 360.0 * floor( x * INV360 + 0.5 ) ); +} + +/*******************************************************************/ +/* This function computes GMST0, the Greenwich Mean Sidereal Time */ +/* at 0h UT (i.e. the sidereal time at the Greenwhich meridian at */ +/* 0h UT). GMST is then the sidereal time at Greenwich at any */ +/* time of the day. I've generalized GMST0 as well, and define it */ +/* as: GMST0 = GMST - UT -- this allows GMST0 to be computed at */ +/* other times than 0h UT as well. While this sounds somewhat */ +/* contradictory, it is very practical: instead of computing */ +/* GMST like: */ +/* */ +/* GMST = (GMST0) + UT * (366.2422/365.2422) */ +/* */ +/* where (GMST0) is the GMST last time UT was 0 hours, one simply */ +/* computes: */ +/* */ +/* GMST = GMST0 + UT */ +/* */ +/* where GMST0 is the GMST "at 0h UT" but at the current moment! */ +/* Defined in this way, GMST0 will increase with about 4 min a */ +/* day. It also happens that GMST0 (in degrees, 1 hr = 15 degr) */ +/* is equal to the Sun's mean longitude plus/minus 180 degrees! */ +/* (if we neglect aberration, which amounts to 20 seconds of arc */ +/* or 1.33 seconds of time) */ +/* */ +/*******************************************************************/ + +double GMST0(double d) +{ + double sidtim0; + /* Sidtime at 0h UT = L (Sun's mean longitude) + 180.0 degr */ + /* L = M + w, as defined in sunpos(). Since I'm too lazy to */ + /* add these numbers, I'll let the C compiler do it for me. */ + /* Any decent C compiler will add the constants at compile */ + /* time, imposing no runtime or code overhead. */ + sidtim0 = revolution( ( 180.0 + 356.0470 + 282.9404 ) + + ( 0.9856002585 + 4.70935E-5 ) * d ); + return sidtim0; +} + +/* + * Part of this code was provided by Paul Schlyter + * Here is the original copyright information + * Written as DAYLEN.C, 1989-08-16 + * Modified to SUNRISET.C, 1992-12-01 + * (c) Paul Schlyter, 1989, 1992 + * Released to the public domain by Paul Schlyter, December 1992 + * 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 AUTHOR 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. + */ \ No newline at end of file diff --git a/src/praisethesun.h b/src/praisethesun.h new file mode 100644 index 0000000..3a01783 --- /dev/null +++ b/src/praisethesun.h @@ -0,0 +1,69 @@ +/* + * Stairs lighting + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs + * + * This code was ported over from Domoticz' SunRiseSet.cpp + * https://github.com/domoticz/domoticz/ +*/ +#ifndef __praisethesun +#define __praisethesun + +double daylen( int year, int month, int day, double lon, double lat, double altit, int upper_limb ); + +int sunriset( int year, int month, int day, double lon, double lat, + double altit, int upper_limb, double *trise, double *tset ); + + +/* This macro computes the length of the day, from sunrise to sunset. */ +/* Sunrise/set is considered to occur when the Sun's upper limb is */ +/* 35 arc minutes below the horizon (this accounts for the refraction */ +/* of the Earth's atmosphere). */ +#define day_length(year,month,day,lon,lat) \ + daylen(year, month, day, lon, lat, -35.0/60.0, 1) + +/* This macro computes the length of the day, including civil twilight. */ +/* Civil twilight starts/ends when the Sun's center is 6 degrees below */ +/* the horizon. */ +#define day_civil_twilight_length(year,month,day,lon,lat) \ + daylen(year, month, day, lon, lat, -6.0, 0) + +/* This macro computes the length of the day, incl. nautical twilight. */ +/* Nautical twilight starts/ends when the Sun's center is 12 degrees */ +/* below the horizon. */ +#define day_nautical_twilight_length(year,month,day,lon,lat) \ + daylen(year, month, day, lon, lat, -12.0, 0) + +/* This macro computes the length of the day, incl. astronomical twilight. */ +/* Astronomical twilight starts/ends when the Sun's center is 18 degrees */ +/* below the horizon. */ +#define day_astronomical_twilight_length(year,month,day,lon,lat) \ + daylen(year, month, day, lon, lat, -18.0, 0) + +/* This macro computes times for sunrise/sunset. */ +/* Sunrise/set is considered to occur when the Sun's upper limb is */ +/* 35 arc minutes below the horizon (this accounts for the refraction */ +/* of the Earth's atmosphere). */ +#define sun_rise_set(year,month,day,lon,lat,rise,set) \ + sunriset( year, month, day, lon, lat, -35.0/60.0, 1, rise, set ) + +/* This macro computes the start and end times of civil twilight. */ +/* Civil twilight starts/ends when the Sun's center is 6 degrees below */ +/* the horizon. */ +#define civil_twilight(year,month,day,lon,lat,start,end) \ + sunriset( year, month, day, lon, lat, -6.0, 0, start, end ) + +/* This macro computes the start and end times of nautical twilight. */ +/* Nautical twilight starts/ends when the Sun's center is 12 degrees */ +/* below the horizon. */ +#define nautical_twilight(year,month,day,lon,lat,start,end) \ + sunriset( year, month, day, lon, lat, -12.0, 0, start, end ) + +/* This macro computes the start and end times of astronomical twilight. */ +/* Astronomical twilight starts/ends when the Sun's center is 18 degrees */ +/* below the horizon. */ +#define astronomical_twilight(year,month,day,lon,lat,start,end) \ + sunriset( year, month, day, lon, lat, -18.0, 0, start, end ) + +#endif \ No newline at end of file diff --git a/src/settings/triggers/time.h b/src/settings/triggers/time.h index ca51c19..32d3a64 100644 --- a/src/settings/triggers/time.h +++ b/src/settings/triggers/time.h @@ -7,6 +7,7 @@ #ifndef __settingstriggerstime #define __settingstriggerstime +#include #include enum DayOfWeek @@ -54,6 +55,7 @@ class TimeTriggerSettings void read(); void write(); + uint16_t transitionTime() { return mTransitionTime; } void transitionTime(uint16_t value) { mTransitionTime = value; } From 2f96d0c60def6786b481142dd3bfcaa23e4654da Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Thu, 11 Jan 2018 21:03:46 +0100 Subject: [PATCH 15/43] Implemented frontend for system settings Started preparation for executing triggers --- API.md | 81 + devserver.js | 46 + src/assets/css.h | 269 +- src/assets/html.h | 222 +- src/assets/js.h | 4215 ++++++++++++++++---------------- src/assets/version.h | 6 +- src/main.cpp | 100 +- src/server/api.cpp | 10 +- src/settings/triggers/time.cpp | 5 +- src/settings/triggers/time.h | 7 +- web/app.js | 63 +- web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 75 +- web/lang.js | 56 +- web/site.scss | 28 +- 16 files changed, 2785 insertions(+), 2402 deletions(-) diff --git a/API.md b/API.md index 0830764..d377e13 100644 --- a/API.md +++ b/API.md @@ -4,6 +4,8 @@ - [GET /api/connection/status](#get-apiconnectionstatus) - [GET /api/connection](#get-apiconnection) - [POST /api/connection](#post-apiconnection) +- [GET /api/system](#get-apisystem) +- [POST /api/system](#post-apisystem) - [GET /api/steps](#get-apisteps) - [POST /api/steps](#post-apisteps) - [GET /api/triggers/time](#get-apitriggerstime) @@ -83,6 +85,28 @@ Updates the settings of the WiFi connections. The module will apply the new sett ``` +## GET /api/system + +*Example response:* +```json +{ + "lat": 52.370216, + "lng": 4.895168, + "pins": { + "ledAP": 4, + "ledSTA": 5, + "apButton": 2, + "pwmSDA": 13, + "pwmSCL": 12 + }, + "pwmAddress": 64, + "pwmFrequency": 1600, + "mapsAPIKey": "" +} +``` + +## POST /api/system + ## GET /api/steps Returns the current brightness value for each step. The number of items in the array is equal to the number of configured steps. Each value has a range of 0 to 255. @@ -120,8 +144,65 @@ An optional array 'startTime' can be included which specifies the delay, for eac ## GET /api/triggers/time +Returns the current settings for the time triggers. + +time: +Meaning depends on the triggerType + +| triggerType | description | +| ----------- | - | +| 0 | fixed time, set time to the number of minutes since midnight | +| 1 | relative to sunrise, set time to the number of minutes before or after sunrise to trigger (negative numbers mean before sunrise) | +| 2 | relative to sunset, set time to the number of minutes before or after sunset to trigger (negative numbers mean before sunset) | + +daysOfWeek: +Flags determining which days of the week the trigger is active. + +| value | day | +| ----- | --- | +| 1 | Monday | +| 2 | Tuesday | +| 4 | Wednesday | +| 8 | Thursday | +| 16 | Friday | +| 32 | Saturday | +| 64 | Sunday | + +Therefore 127 means every day of the week. + + +brightness: value from 0 to 255 + +enabled: whether or not this trigger is enabled + +*Example response:* +```json +{ + "enabled": true, + "transitionTime": 1000, + "triggers": [ + { + "time": 480, + "daysOfWeek": 127, + "brightness": 0, + "triggerType": 0, + "enabled": true + }, + { + "time": 1200, + "daysOfWeek": 127, + "brightness": 255, + "triggerType": 0, + "enabled": true + } + ] +} +``` + ## POST /api/triggers/time +Changes the time trigger settings. Request body format is the same as is returned in the GET request. + ## POST /api/firmware Uploads new firmware. The bin file should be posted as a multipart/form-data file attachment. Name is not relevant. \ No newline at end of file diff --git a/devserver.js b/devserver.js index 30689cc..c772749 100644 --- a/devserver.js +++ b/devserver.js @@ -62,6 +62,52 @@ app.post('/api/firmware', function(req, res) }); +var system = { + "lat": 52.370216, + "lng": 4.895168, + "pins": { + "ledAP": 4, + "ledSTA": 5, + "apButton": 2, + "pwmSDA": 13, + "pwmSCL": 12 + }, + "pwmAddress": 64, + "pwmFrequency": 1600, + "mapsAPIKey": "" +}; + +app.get('/api/system', function(req, res) +{ + res.send(system); +}); + +app.post('/api/system', function(req, res) +{ + var body = req.body; + if (body) + { + system.lat = body.lat || system.lat; + system.lng = body.lng || system.lng; + + system.pins.ledAP = body.pins.ledAP || system.pins.ledAP; + system.pins.ledSTA = body.pins.ledSTA || system.pins.ledSTA; + system.pins.apButton = body.pins.apButton || system.pins.apButton; + system.pins.pwmSDA = body.pins.pwmSDA || system.pins.pwmSDA; + system.pins.pwmSCL = body.pins.pwmSCL || system.pins.pwmSCL; + + system.pwmAddress = body.pwmAddress || system.pwmAddress; + system.pwmFrequency = body.pwmFrequency || system.pwmFrequency; + system.mapsAPIKey = body.mapsAPIKey || system.mapsAPIKey; + + res.sendStatus(200); + } + else + res.sendStatus(400); +}); + + + var steps = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; app.get('/api/steps', function(req, res) diff --git a/src/assets/css.h b/src/assets/css.h index b049b50..f52cb72 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -4,139 +4,140 @@ #include const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0x99, - 0xda,0x9a,0xb7,0x79,0xc0,0x62,0xb0,0x99,0x31,0xde,0xd9,0x4a,0x72,0xca,0x21,0xc9,0x21,0x87,0x5c,0xb6, - 0xf6,0x20,0x83,0x30,0xaa,0xc5,0x40,0x40,0x8c,0x67,0x1e,0xc5,0x7f,0x4f,0xeb,0x03,0x23,0x81,0xc0,0x33, - 0x79,0xa9,0xca,0xba,0x76,0x6c,0x5a,0xdd,0xad,0x56,0x77,0xab,0xd5,0xdd,0xe2,0x8f,0x76,0x84,0x52,0x8a, - 0x6b,0x3b,0x3a,0xe2,0xb4,0xac,0x71,0x77,0x2c,0x5f,0x9d,0x86,0xfc,0x46,0x8a,0x53,0x44,0x8a,0x0c,0xd7, - 0x84,0xf6,0x19,0x3d,0xe7,0x2a,0xfc,0x58,0xd6,0x09,0xae,0x1d,0x80,0x1c,0xd2,0xb2,0xa0,0x0c,0x8c,0xa3, - 0xd0,0x77,0x77,0x9f,0xfa,0x63,0x99,0xbc,0x75,0x71,0x99,0x97,0x75,0x74,0x1f,0x7a,0x61,0xfc,0x18,0x0a, - 0x94,0x14,0x9d,0x49,0xfe,0x16,0xfd,0xb3,0x3c,0x96,0xb4,0xb4,0x1f,0xfe,0x8a,0xf3,0x17,0x4c,0x49,0x8c, - 0xac,0x7f,0xe0,0x16,0x3f,0xd8,0xd7,0x67,0xfb,0xcf,0x35,0x41,0xb9,0xdd,0xa0,0xa2,0x71,0x1a,0x98,0x3c, - 0x55,0x66,0xd8,0xb8,0x21,0x3e,0x8b,0xe7,0x0b,0x26,0xa7,0x8c,0x46,0x81,0xe7,0x1d,0x72,0x4c,0x41,0x7c, - 0xa7,0xa9,0x50,0xcc,0x64,0x73,0xbd,0x0d,0x20,0xe5,0xa4,0xc0,0x4e,0x26,0x90,0x80,0xac,0x3f,0xe6,0x65, - 0xfc,0xf3,0xdf,0x6d,0x49,0xd9,0xfa,0xb8,0xf0,0x39,0x4e,0x69,0xe4,0x06,0x35,0x3e,0x5b,0x4d,0x99,0x93, - 0xc4,0xba,0xdf,0x7a,0xec,0x73,0x38,0xa3,0xfa,0x44,0x0a,0x31,0x7e,0x7d,0xaa,0x39,0x27,0xef,0x50,0xa1, - 0x24,0x61,0xb3,0x6c,0x18,0xdd,0xc6,0xdd,0xc1,0x97,0xc2,0xdb,0x8a,0x72,0xd4,0x50,0x27,0xce,0x48,0x9e, - 0x74,0x92,0x12,0xd6,0x4b,0xcb,0x73,0xe4,0xf5,0xee,0xb1,0x85,0x5f,0x85,0x2d,0xbf,0x48,0x51,0xb5,0xf4, - 0x3b,0x7d,0xab,0xf0,0xb3,0x80,0xfc,0x50,0x41,0x35,0x6e,0x30,0xd5,0x20,0x4d,0x7b,0x3c,0x13,0xfa,0xa3, - 0x3b,0xa2,0xf8,0xe7,0xa9,0x2e,0xdb,0x22,0x71,0xa4,0x9a,0xbd,0x30,0x3d,0x88,0x45,0x45,0xee,0x46,0x59, - 0xcf,0x08,0x77,0x6a,0x94,0x90,0xb6,0x89,0xdc,0x2d,0x0c,0x1f,0x24,0x59,0x9a,0xa6,0x87,0xb8,0xad,0x1b, - 0xf8,0x5d,0x95,0xa4,0x00,0x1d,0x1e,0x12,0xd2,0x54,0x39,0x7a,0x03,0xbb,0x73,0xfd,0xf1,0x85,0x69,0xfa, - 0x67,0xec,0x35,0x03,0x3c,0x82,0x01,0xa4,0x9a,0x03,0xf7,0x89,0x8d,0x4e,0xcd,0xc1,0x49,0x54,0x73,0x48, - 0xbc,0x41,0x93,0x9e,0xc5,0x6c,0x70,0xa0,0xf8,0x95,0x3a,0x28,0x27,0xa7,0x22,0x8a,0x31,0x17,0x86,0x43, - 0x12,0x1c,0x97,0x35,0xa2,0xa4,0x2c,0xa2,0xa2,0x2c,0xb0,0x00,0xd2,0x1a,0xbc,0x03,0x7c,0xf5,0x1c,0xb5, - 0x55,0x85,0xeb,0x18,0x35,0xf8,0x70,0xc9,0x08,0xc5,0x7c,0x56,0x0c,0x98,0x97,0x1a,0x55,0x83,0xc2,0xa3, - 0xb4,0x8c,0xdb,0xc6,0x1e,0x9e,0xb2,0xf2,0x05,0x9c,0x5d,0x1b,0xd2,0x46,0xe6,0x76,0x91,0x58,0x86,0x81, - 0x19,0x85,0x30,0xdb,0x9c,0x40,0xc2,0x67,0xf8,0xd2,0xa8,0x73,0x82,0x61,0x80,0x53,0x18,0x6c,0x2e,0xb7, - 0x96,0x34,0xaf,0x0e,0x54,0xec,0x5b,0xb6,0x94,0xa9,0x7e,0xf4,0xbe,0xef,0x60,0x62,0x74,0xcc,0x71,0xf2, - 0xc3,0x9e,0x01,0xe6,0x0b,0x34,0x0f,0x8a,0xc5,0x98,0xc7,0xa4,0xdc,0xe3,0x60,0x27,0x5d,0x2c,0xc1,0x29, - 0x6a,0x73,0x7a,0x28,0x99,0x5f,0xd0,0xb7,0xc8,0xdd,0xcd,0x45,0xd2,0x2d,0xa5,0xc0,0x55,0x9b,0xcd,0xd0, - 0x17,0xb0,0xd7,0x56,0xb3,0x68,0xd1,0x35,0x2e,0xd3,0x65,0x2f,0x59,0x79,0x8d,0xc7,0x4c,0x3d,0x8b,0x96, - 0x9f,0x72,0x59,0xdd,0xf7,0x0a,0x64,0xd0,0xaa,0xfc,0x72,0xa4,0x07,0xd8,0x66,0xe8,0x5c,0x03,0x2b,0x18, - 0x62,0x79,0x2b,0x08,0x52,0xf4,0x09,0xc6,0x5c,0x72,0xbe,0x7f,0x2b,0x54,0xc3,0x3e,0x3f,0xdc,0x94,0x5c, - 0x77,0x8a,0xe9,0xa0,0xea,0x19,0x66,0xc2,0x35,0xba,0x9b,0xcb,0x5f,0x74,0x94,0x9b,0xfc,0x8c,0xca,0x5a, - 0x72,0x99,0x9b,0xdc,0xcc,0x9a,0x5d,0x74,0x1e,0x23,0xbf,0x75,0x3b,0xac,0x45,0x12,0xf1,0xb4,0x60,0x9f, - 0xa5,0xed,0xbb,0x8c,0xb6,0x62,0xb3,0x85,0xcd,0x7d,0x8b,0xd7,0x4d,0xfb,0xbc,0x63,0xeb,0x7f,0x60,0x0e, - 0xa3,0xd1,0x6e,0x07,0x86,0x0f,0xcc,0x60,0xb6,0xe3,0x3b,0xc2,0xc6,0x8d,0x39,0x3a,0xcd,0xcc,0x32,0xbd, - 0x5b,0xd9,0x83,0x71,0x8e,0xd1,0xd4,0x54,0x02,0xb6,0xac,0xc0,0xd9,0xb8,0xbe,0xfa,0xd9,0xf0,0x44,0x72, - 0x3e,0xfe,0x01,0x5f,0x7d,0x5f,0x30,0xe1,0x5c,0xcd,0x0e,0x2a,0x86,0x4c,0x4e,0xa9,0x12,0x2d,0xd3,0xdc, - 0xd0,0xc4,0x4d,0x87,0x5b,0xe0,0x65,0xd0,0xda,0x2d,0xc7,0x5a,0xe0,0x64,0x52,0xf0,0x4d,0x07,0x52,0x78, - 0xfd,0x3e,0x63,0x98,0x83,0x07,0x67,0x7f,0x2b,0x74,0x4c,0x91,0x16,0x6d,0x74,0x23,0x6c,0x98,0xf9,0xdc, - 0xb0,0xc8,0x07,0x42,0xc6,0x4d,0xfe,0x06,0x33,0xbd,0x3f,0x5c,0xdc,0xe4,0x6e,0xb2,0xdc,0x07,0x42,0x85, - 0x91,0x7f,0xa7,0x6c,0xa5,0xb8,0x4c,0xd4,0x43,0x1c,0x32,0xcb,0x6d,0xba,0x4b,0x43,0x63,0x6d,0x31,0x16, - 0x0b,0x4f,0xe1,0x27,0x59,0x3c,0x41,0x8a,0xef,0xfa,0x6a,0xca,0xcf,0x9f,0x2c,0x5e,0x3c,0x99,0xf2,0xf6, - 0xaa,0x5e,0x9b,0x6e,0x5e,0xb7,0xb1,0x3c,0x88,0xc9,0x9c,0xe6,0xe5,0xc5,0x79,0x8b,0x32,0x92,0x24,0xb8, - 0x60,0x5c,0xbe,0x09,0xc9,0x35,0x31,0xbd,0x6b,0x91,0x23,0xaa,0x1b,0x43,0x41,0xa7,0xc9,0x04,0x6c,0xfa, - 0x6c,0x88,0x9b,0x40,0x2d,0xb9,0xd1,0xb2,0xd2,0x8b,0x2d,0x29,0xa4,0x5c,0x31,0x17,0xcf,0xeb,0x15,0xa5, - 0xe3,0x33,0x22,0xb9,0x96,0x2a,0x17,0xed,0xf9,0x88,0x6b,0x0d,0x54,0xa1,0xa6,0xb9,0xc0,0x04,0x7a,0x4a, - 0x0d,0xe6,0x89,0x33,0x0d,0x44,0x71,0x3e,0x79,0x7e,0xd5,0x8b,0xc5,0xb6,0x06,0x84,0x06,0xe7,0x38,0xa6, - 0x36,0x1b,0x84,0x1d,0x89,0x3a,0x04,0xc5,0x12,0x82,0x0d,0xca,0x35,0x0d,0xb5,0xd4,0x3b,0xb6,0xb5,0xbe, - 0x46,0x59,0x20,0x9b,0xec,0xce,0x9b,0x03,0x19,0x4a,0xca,0x8b,0xe4,0x3d,0x6b,0x22,0x1c,0xcc,0xe5,0x9f, - 0x1b,0x72,0xc5,0x73,0xb5,0x93,0x84,0x66,0xd1,0xc6,0xf3,0x3e,0xcd,0x15,0x37,0xf7,0x62,0xa9,0xbe,0xf9, - 0xc0,0x55,0x89,0x06,0xcf,0x17,0xaa,0x9c,0x0f,0x30,0x85,0x9a,0xa0,0xaf,0xa6,0xda,0x8c,0x29,0x57,0x42, - 0x85,0x8a,0xe5,0xc3,0xa0,0x68,0xf1,0xd8,0xcd,0x52,0x73,0xa5,0x1a,0x13,0x74,0xaa,0x97,0x03,0xd3,0x5f, - 0x1e,0x12,0x44,0x51,0x44,0xce,0xe8,0x84,0xbf,0x34,0x2f,0xa7,0x5f,0x5f,0xcf,0xf9,0xa1,0xa5,0xe9,0x93, - 0xfd,0x15,0x9e,0x2c,0x78,0x2a,0x9a,0xe7,0xbb,0x8c,0xd2,0x2a,0xfa,0xf2,0xe5,0x72,0xb9,0xb8,0x97,0xc0, - 0x2d,0xeb,0xd3,0x17,0xdf,0xf3,0x3c,0x86,0x7f,0x67,0x09,0x15,0x3f,0xdf,0x6d,0xb6,0x77,0xd6,0x0b,0xc1, - 0x97,0xbf,0x94,0xaf,0xcf,0x77,0x9e,0xe5,0x59,0xfe,0xde,0x62,0x30,0xae,0xe1,0xe7,0x3b,0x7f,0x7f,0xf7, - 0xed,0x6b,0x85,0x68,0x66,0xa5,0x24,0xcf,0x9f,0xef,0xee,0x93,0x0d,0xfb,0xdc,0x59,0xc9,0xf3,0xdd,0xdf, - 0xf7,0x6e,0xf0,0xf8,0xe8,0x3f,0x5a,0x81,0x1b,0xfa,0xbb,0x7c,0xe7,0x7a,0x4f,0x9b,0xdd,0xd6,0x0a,0xdd, - 0x7d,0xb0,0xf3,0x83,0xbf,0x6d,0xf6,0xee,0x6e,0xeb,0x05,0xa1,0x18,0xbe,0xfb,0xf2,0xed,0x2b,0x9b,0xf9, - 0xdb,0xc3,0x67,0x4b,0x54,0xed,0x16,0x6f,0x94,0x58,0x45,0xe9,0xd4,0x18,0xbc,0x8d,0x0e,0x76,0x96,0x0d, - 0x14,0xb6,0x2f,0x7a,0x55,0x69,0xea,0xd9,0xc2,0x17,0xfe,0xff,0x55,0xc4,0xfe,0xb8,0x4d,0x62,0xf4,0xbb, - 0x14,0xd1,0x5f,0xf7,0xdb,0x99,0x14,0x43,0xcf,0x23,0x14,0x9d,0xa2,0x1c,0x1d,0x71,0x6e,0xe7,0xf8,0x84, - 0x8b,0xa4,0xd3,0xe3,0x90,0xd6,0xe5,0x32,0x75,0x59,0xf4,0x76,0x92,0xe0,0x97,0x12,0x9c,0x27,0x70,0x56, - 0x0c,0xbe,0x26,0x76,0xd0,0xd8,0xa5,0xd2,0x22,0x50,0x9c,0xe1,0xf8,0x27,0xec,0x4b,0xbd,0x96,0x87,0x4d, - 0x5c,0xfe,0xb8,0xca,0x22,0x1a,0x3f,0xbd,0xcb,0x05,0x75,0xc4,0xd3,0x64,0x50,0xed,0x0a,0x49,0xf1,0xb6, - 0x9e,0xde,0x35,0x13,0xc2,0xb9,0x31,0xa0,0x20,0xa0,0xa8,0xbb,0xeb,0x39,0x80,0x5a,0x5a,0x02,0xea,0xab, - 0x94,0x74,0xb3,0xf1,0xf5,0x56,0x90,0x78,0x2c,0x1b,0xc2,0x3b,0x3e,0x35,0xce,0x11,0x25,0x2f,0x58,0x8d, - 0x0c,0x6e,0x5d,0x5e,0xae,0x12,0xa5,0x39,0x7e,0x3d,0xb0,0x3f,0x4e,0x42,0x6a,0xf0,0x29,0x46,0x04,0xfb, - 0xad,0x3d,0x17,0x23,0xcf,0x29,0x31,0xfb,0xef,0x80,0x7f,0x4a,0x84,0x6e,0xd4,0x95,0x61,0xf4,0x9b,0x2b, - 0xd8,0x99,0xb0,0xd8,0x59,0xd5,0xf1,0xc9,0xd9,0xaf,0x48,0xb4,0x9c,0x86,0x41,0x38,0x1f,0x3a,0xde,0xcd, - 0x72,0xe0,0x28,0x39,0x37,0x5c,0x52,0xa7,0x01,0xbf,0xa0,0x23,0x8e,0x30,0xe5,0x1c,0x0d,0x9c,0x63,0x44, - 0x12,0xdb,0x4a,0x43,0x12,0xa0,0x11,0xa5,0xa1,0x35,0xa6,0x71,0xa6,0xe1,0x48,0x98,0x32,0x19,0x82,0x6d, - 0xc7,0xac,0xa9,0x62,0x0d,0x40,0x8e,0x66,0x0d,0x6b,0x9d,0x38,0x26,0x88,0x14,0x6d,0xac,0xcd,0x60,0x3b, - 0xbd,0x39,0x7a,0xb5,0x24,0xa8,0x77,0xaa,0xe9,0x81,0xa1,0xfc,0x72,0xca,0x34,0x05,0x5f,0x75,0x36,0x5e, - 0xa7,0x72,0xd9,0xac,0x63,0xfb,0x3a,0xb6,0x7f,0x03,0x7b,0xa7,0x63,0xef,0x56,0xb1,0x83,0xc0,0x5e,0x1b, - 0xdd,0x6a,0xbc,0x82,0xc0,0x0d,0xe0,0xdf,0x2a,0xc3,0x9d,0x2e,0xec,0x6e,0x5d,0xd8,0x30,0x5c,0x9b,0x3e, - 0x7c,0xd4,0x78,0x85,0xa1,0x1b,0xc2,0xbf,0x55,0x86,0x8f,0xfa,0xea,0x1f,0xd7,0x57,0xff,0xa4,0x0b,0xfb, - 0xb4,0x2e,0xec,0x5e,0xc7,0xde,0x2f,0x60,0x83,0x71,0xb9,0xc3,0xb0,0x58,0x0b,0x96,0xd5,0x3c,0xc4,0x4c, - 0xe1,0x2b,0x14,0xbe,0x46,0xb1,0x64,0x6b,0x30,0xf2,0x48,0xb1,0xd3,0x28,0x16,0x56,0xbc,0x60,0x68,0xb0, - 0xf0,0x95,0xd1,0x60,0x5e,0x85,0xdb,0xaa,0xc5,0xb7,0x8a,0xd8,0x5b,0x4d,0xec,0xed,0x82,0xd8,0x3b,0x85, - 0x62,0xa7,0x51,0x2c,0xf9,0x49,0xa8,0x50,0x84,0x1a,0x45,0xb8,0x44,0x61,0x76,0x29,0xf0,0xa5,0x91,0x91, - 0x74,0x24,0x95,0xdb,0x9a,0x6f,0x3d,0x2a,0xda,0x7e,0xd4,0xb4,0xbd,0xe4,0x5f,0x4f,0x8a,0xd8,0x4f,0x9a, - 0xd8,0x4b,0x3e,0xb6,0x57,0x28,0xf6,0x1a,0xc5,0xd4,0xcf,0x86,0x6f,0x25,0xc0,0x42,0x08,0x4b,0xa7,0xf1, - 0x75,0x86,0xae,0xc5,0xda,0x91,0x62,0x08,0xb5,0x33,0x7c,0x2d,0xec,0x72,0x7c,0x19,0x75,0xff,0x74,0xc6, - 0x09,0x41,0xd6,0x2f,0xec,0x70,0x1f,0xec,0x0d,0x87,0xd6,0xe7,0x8e,0x1f,0x4c,0x93,0xb3,0x08,0x40,0x5a, - 0xc4,0x74,0x94,0x3c,0x37,0x46,0x79,0xfc,0x0b,0x8b,0x95,0xd6,0xaf,0xfc,0xd8,0xfb,0xac,0x07,0x61,0xfd, - 0xb8,0x1f,0x72,0xe8,0xf1,0xa4,0x64,0x9c,0xfa,0x1e,0x29,0x75,0x9a,0xf1,0xc2,0xa4,0x97,0xd9,0xa8,0x8d, - 0xf4,0xba,0x4e,0x56,0xe5,0x49,0x6e,0x97,0xb9,0xdd,0xe6,0x5d,0x4e,0x1a,0x48,0x3f,0xe8,0x5b,0x2e,0x6b, - 0x03,0x39,0x3d,0x2b,0x73,0xae,0xe9,0x84,0x8c,0xfa,0x40,0x64,0x01,0x1d,0xfc,0x2d,0xf9,0xdf,0x96,0xf1, - 0xb0,0x38,0x27,0x06,0x29,0x39,0xa4,0xe5,0x90,0x96,0x43,0x5a,0x06,0xe9,0xc6,0x04,0x47,0x58,0x98,0x67, - 0x04,0xa2,0xe0,0x62,0xb1,0x42,0xfc,0xe0,0xf9,0x61,0xa9,0x89,0x03,0x0b,0x82,0x44,0x30,0xb7,0x48,0xd1, - 0x90,0x04,0xf7,0xba,0xac,0x31,0xa9,0xa1,0x7c,0x1d,0xc6,0x26,0x37,0x6c,0x49,0x62,0x27,0xd4,0xce,0xc9, - 0x44,0x97,0x1b,0x35,0x73,0x12,0xb9,0xd0,0xac,0x54,0x9a,0x50,0x4c,0xef,0xf9,0x60,0xd9,0x76,0x4a,0x4e, - 0x6d,0x8d,0x6d,0x76,0x0d,0xc5,0x74,0x58,0xd9,0x50,0x29,0xda,0x94,0xd5,0xd0,0x4c,0x9f,0x3a,0x03,0x5f, - 0x30,0xe0,0xa3,0x43,0xae,0x36,0x5c,0x90,0x69,0x09,0x0a,0x4d,0x6c,0x9a,0x75,0xd7,0xeb,0x55,0x91,0xea, - 0xa9,0x25,0x18,0xde,0xb0,0xcf,0x58,0xb5,0x8a,0x52,0x5a,0xd6,0xad,0xca,0x1d,0x1a,0x33,0x15,0x70,0x8b, - 0x52,0x52,0x0f,0x17,0x92,0xc0,0x59,0x7d,0xec,0x26,0x56,0x05,0xe4,0xf1,0xf2,0x92,0xe1,0x2a,0x57,0x99, - 0x7a,0x12,0xef,0xf5,0x47,0x1b,0xf2,0x8b,0x12,0x92,0xa7,0x49,0x92,0xda,0x57,0x9d,0xea,0x38,0x7d,0xb6, - 0xb1,0x33,0xdf,0xce,0x02,0x3b,0xdb,0xda,0xd9,0xce,0xce,0xc2,0xee,0xc6,0xe5,0xad,0x23,0xae,0x0b,0x27, - 0xda,0x53,0x40,0x03,0x5f,0xc5,0x9d,0xb6,0x22,0x5f,0xd6,0x6f,0x7c,0xfd,0x3e,0xf3,0x15,0x9c,0xc0,0x88, - 0xb3,0xeb,0xb3,0x40,0x41,0xf2,0xe5,0x05,0xa6,0x86,0x14,0xf4,0xd9,0x56,0xc3,0xf1,0x0d,0x97,0x9c,0x0e, - 0x14,0x07,0x06,0x52,0xe0,0xbf,0xeb,0xd4,0xc4,0xde,0x74,0x41,0x0a,0xb4,0xbb,0x39,0x2d,0x90,0x86,0xdd, - 0xac,0x26,0x98,0x90,0x7a,0x13,0xa2,0x6d,0x4f,0xce,0xa7,0x4e,0x4f,0xca,0x20,0x0d,0x67,0xfd,0x9d,0x94, - 0xbc,0x8a,0x6b,0xfe,0x4e,0x34,0xf6,0x40,0xb5,0xd9,0x81,0x25,0xe8,0x10,0xd5,0xa2,0x07,0xeb,0xe1,0xda, - 0x15,0xe1,0x3e,0xda,0xbb,0x69,0x5e,0x22,0xca,0x5d,0xa3,0xe3,0x3f,0x85,0x43,0x49,0x30,0x77,0x03,0x09, - 0xe7,0xbf,0xfb,0xef,0x2f,0x4e,0x0c,0x8f,0x3f,0xc7,0x4a,0x82,0x07,0x1f,0xfe,0x32,0x80,0xe1,0xe2,0x0a, - 0x0c,0xaf,0x5c,0x52,0xaa,0xef,0x07,0xfc,0x0b,0xd7,0x09,0x2a,0xd6,0xdf,0x02,0xf0,0xaa,0xb1,0xac,0x94, - 0x2e,0xc2,0xe3,0x86,0x0c,0xcd,0x4d,0x5c,0x63,0x5c,0x58,0xa8,0x48,0xd4,0x28,0xfd,0x18,0x3e,0x55,0xaf, - 0x9f,0x3b,0x2e,0xd1,0x40,0xcc,0x9c,0x89,0x53,0x8a,0x32,0x69,0xdc,0xfe,0xa3,0x70,0xfd,0xfd,0x58,0xc5, - 0xcc,0x17,0xe2,0x7b,0xec,0xa3,0xfa,0xa6,0x56,0xcf,0x6c,0x26,0x9d,0x11,0x71,0xf2,0x57,0xaf,0xd6,0x7d, - 0x1a,0xa7,0x61,0x7c,0xbd,0xb5,0x17,0x7b,0x7b,0xc3,0x06,0x40,0x35,0xef,0x5a,0x87,0x22,0x96,0x02,0xd7, - 0x0e,0x1b,0x35,0x5f,0x17,0x1b,0x97,0x41,0xfa,0xde,0xcd,0x30,0x82,0x59,0xbb,0x59,0x99,0x35,0x8c,0x58, - 0xcc,0x8b,0x46,0xab,0xeb,0x3c,0x78,0xf4,0x1c,0x10,0xdd,0x0b,0x49,0x21,0x18,0x23,0x0a,0x85,0xfc,0x95, - 0x1d,0x3a,0xc2,0x7a,0x5a,0x8a,0x0f,0xc3,0x3b,0x13,0x62,0xcf,0x1a,0x68,0x2c,0x97,0x14,0x09,0x89,0x11, - 0x2d,0x6b,0x73,0x91,0x29,0xdd,0x98,0xa9,0x71,0x70,0x72,0xa1,0x52,0xb5,0x01,0xb5,0xbb,0x1e,0x27,0x52, - 0x44,0x59,0x7e,0xae,0xce,0xf7,0x9d,0x75,0x18,0x1c,0x01,0x7e,0x06,0x5d,0x16,0x10,0xfe,0xd9,0x6d,0xf5, - 0xdc,0xc6,0xc1,0x3e,0xfc,0x08,0x2f,0x58,0x87,0xca,0x6e,0x6a,0xe0,0x53,0x8d,0xdf,0xfe,0x0b,0xd1,0xc0, - 0x9b,0x4c,0xb2,0xa5,0xfb,0xe0,0x23,0xcc,0x70,0x5d,0x97,0xb5,0x89,0x4f,0xec,0x4d,0x62,0xea,0x26,0xac, - 0x06,0xbb,0xb3,0x70,0xeb,0xcb,0x1d,0xd1,0x90,0x1c,0x72,0x88,0xe9,0x5e,0x1c,0xf1,0x02,0x89,0xc7,0x56, - 0x39,0x6f,0x2f,0xde,0xfb,0x4f,0xec,0xa3,0x92,0x6f,0xab,0xeb,0x05,0x82,0xdc,0xc9,0x53,0x55,0xc1,0x7c, - 0x0d,0x78,0x95,0xca,0x58,0xe9,0x31,0x03,0xf9,0xfc,0xc5,0x91,0xc9,0x76,0xec,0x5d,0x88,0x69,0x8d,0x1a, - 0xf7,0x14,0x84,0xe0,0x8a,0x60,0xc9,0xec,0xc1,0xa0,0x1e,0xd9,0xf7,0x1c,0xa3,0xc2,0x1f,0xc8,0xb9,0x2a, - 0x6b,0x8a,0xa6,0xd7,0x1f,0x42,0x64,0x95,0xdb,0x47,0xee,0xc2,0x65,0xb3,0x66,0xf6,0xea,0x44,0x51,0xb2, - 0x05,0xe6,0xe5,0x05,0x27,0x87,0x75,0xfd,0x86,0xec,0x33,0xe9,0xde,0x68,0x5b,0x43,0xe8,0x23,0x23,0x05, - 0x5d,0x6c,0x3f,0x31,0x9d,0x2a,0xb3,0x18,0x33,0x21,0x17,0x82,0x03,0x6f,0x9e,0x4c,0x34,0x39,0x37,0x46, - 0xef,0x36,0xed,0xb1,0xac,0x58,0x60,0x68,0xf4,0xda,0x98,0xf3,0x11,0xda,0x69,0x3a,0x13,0x1d,0xf8,0x01, - 0xd8,0xbe,0x9b,0x59,0xb3,0xa1,0xb8,0xd2,0x58,0x05,0x4a,0x7e,0x30,0xb6,0x19,0xe7,0x6d,0x24,0x41,0x6a, - 0x49,0xce,0xd3,0xee,0x94,0x24,0xdd,0x0e,0x53,0x58,0xee,0x0b,0xca,0x5b,0x7c,0x23,0xae,0x89,0x7c,0x45, - 0xb5,0xbe,0xe0,0xde,0x41,0x92,0x73,0xfc,0x49,0x60,0x51,0x93,0xa6,0xbb,0xd2,0x2e,0x91,0x21,0x4d,0xe4, - 0x6e,0x93,0xa6,0xba,0x2f,0x80,0xca,0x2d,0x88,0x74,0x42,0xe5,0x8d,0x1e,0x31,0x53,0x14,0x0d,0x53,0x89, - 0x67,0x87,0x66,0xed,0xf9,0xb8,0x38,0xbf,0x59,0x1e,0x5f,0x09,0xb1,0xbe,0x39,0xc4,0x6a,0x37,0x32,0xe2, - 0xf8,0xd2,0xdf,0x1e,0x53,0x04,0x3a,0x97,0xbf,0x01,0x69,0x71,0xc2,0x52,0x98,0xff,0xe5,0x24,0x17,0x54, - 0x17,0xcc,0xf5,0x54,0xd4,0xc0,0xf3,0x53,0x08,0x2c,0xc6,0xe3,0x74,0xbc,0x69,0xd8,0x19,0x33,0xcb,0xfe, - 0x3f,0xde,0x3d,0x2e,0x64,0x01,0x29,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0xd9, + 0xda,0xda,0xb7,0x79,0xc0,0x62,0x6c,0x33,0x33,0x78,0x67,0x2b,0xc9,0x29,0x87,0x24,0x87,0x1c,0x72,0xd9, + 0xda,0x83,0x0c,0xc2,0xa8,0x16,0x23,0x02,0x62,0x3c,0xf3,0x28,0xfe,0x7b,0x5a,0x1f,0x18,0x09,0x04,0x9e, + 0xc9,0x4b,0x55,0xd6,0xb5,0x63,0xd3,0xea,0x6e,0xb5,0xba,0x5b,0xad,0xee,0x16,0x7f,0x74,0x63,0x94,0x31, + 0x5c,0xbb,0xf1,0x11,0x67,0xb4,0xc6,0xdd,0x91,0xbe,0x78,0x0d,0xf9,0x8d,0x94,0xa7,0x98,0x94,0x39,0xae, + 0x09,0xeb,0x73,0x76,0x2e,0x74,0xf8,0x91,0xd6,0x29,0xae,0x3d,0x80,0x1c,0x32,0x5a,0x32,0x0e,0xc6,0x71, + 0x14,0xfa,0xfb,0x8f,0xfd,0x91,0xa6,0xaf,0x5d,0x42,0x0b,0x5a,0xc7,0x1f,0xa2,0x20,0x4a,0xee,0x23,0x89, + 0x92,0xa1,0x33,0x29,0x5e,0xe3,0x7f,0xd2,0x23,0x65,0xd4,0xfd,0xf4,0x57,0x5c,0x3c,0x63,0x46,0x12,0xe4, + 0xfc,0x03,0xb7,0xf8,0x93,0x7b,0x7d,0x76,0xff,0x5c,0x13,0x54,0xb8,0x0d,0x2a,0x1b,0xaf,0x81,0xc9,0x33, + 0x6d,0x86,0x8d,0x1f,0xe1,0xb3,0x7c,0xbe,0x60,0x72,0xca,0x59,0xbc,0x0d,0x82,0x43,0x81,0x19,0x88,0xef, + 0x35,0x15,0x4a,0xb8,0x6c,0x7e,0xb0,0x01,0xa4,0x82,0x94,0xd8,0xcb,0x25,0x12,0x90,0xf5,0xc7,0x82,0x26, + 0x3f,0xff,0xdd,0x52,0xc6,0xd7,0x27,0x84,0x2f,0x70,0xc6,0x62,0x7f,0x5b,0xe3,0xb3,0xd3,0xd0,0x82,0xa4, + 0xce,0x87,0x5d,0xc0,0x3f,0x87,0x33,0xaa,0x4f,0xa4,0x94,0xe3,0xd7,0xa7,0x5a,0x70,0x0a,0x0e,0x15,0x4a, + 0x53,0x3e,0xcb,0x86,0xd3,0x6d,0xfc,0x3d,0x7c,0x69,0xbc,0x9d,0xb8,0x40,0x0d,0xf3,0x92,0x9c,0x14,0x69, + 0xa7,0x28,0x61,0xbd,0x8c,0x9e,0xe3,0xa0,0xf7,0x8f,0x2d,0xfc,0x2a,0x5d,0xf5,0x45,0xca,0xaa,0x65,0xdf, + 0xd9,0x6b,0x85,0x9f,0x24,0xe4,0x87,0x0e,0xaa,0x71,0x83,0x99,0x01,0x69,0xda,0xe3,0x99,0xb0,0x1f,0xdd, + 0x11,0x25,0x3f,0x4f,0x35,0x6d,0xcb,0xd4,0x53,0x6a,0x0e,0xa2,0xec,0x20,0x17,0x15,0xfb,0x1b,0x6d,0x3d, + 0x23,0xdc,0xab,0x51,0x4a,0xda,0x26,0xf6,0x77,0x30,0x7c,0x50,0x64,0x59,0x96,0x1d,0x92,0xb6,0x6e,0xe0, + 0x77,0x45,0x49,0x09,0x3a,0x3c,0xa4,0xa4,0xa9,0x0a,0xf4,0x0a,0x76,0x17,0xfa,0x13,0x0b,0x33,0xf4,0xcf, + 0xd9,0x1b,0x06,0xb8,0x07,0x03,0x28,0x35,0x6f,0xfd,0x07,0x3e,0x3a,0x35,0x87,0x20,0xd1,0xcd,0xa1,0xf0, + 0x06,0x4d,0x06,0x0e,0xb7,0xc1,0x81,0xe1,0x17,0xe6,0xa1,0x82,0x9c,0xca,0x38,0xc1,0x42,0x18,0x01,0x49, + 0x71,0x42,0x6b,0xc4,0x08,0x2d,0xe3,0x92,0x96,0x58,0x02,0x59,0x0d,0xde,0x01,0xbe,0x7a,0x8e,0xdb,0xaa, + 0xc2,0x75,0x82,0x1a,0x7c,0xb8,0xe4,0x84,0x61,0x31,0x2b,0x06,0xcc,0x4b,0x8d,0xaa,0x41,0xe1,0x71,0x46, + 0x93,0xb6,0x71,0x87,0xa7,0x9c,0x3e,0x83,0xb3,0x1b,0x43,0xc6,0xc8,0xdc,0x2e,0x0a,0xcb,0x32,0x30,0xa3, + 0x90,0x66,0x9b,0x13,0x28,0xf8,0x0c,0x5f,0x19,0x75,0x4e,0x30,0x0c,0x08,0x0a,0x8b,0xcd,0xd5,0xd6,0x52, + 0xe6,0x35,0x81,0x9a,0x7d,0x69,0xcb,0xb8,0xea,0x47,0xef,0xfb,0x0e,0x26,0x46,0xc7,0x02,0xa7,0x3f,0xdc, + 0x19,0x60,0xbe,0x40,0xfb,0xa0,0x5c,0x8c,0x7d,0x4c,0xc9,0x3d,0x0e,0x76,0xca,0xc5,0x52,0x9c,0xa1,0xb6, + 0x60,0x07,0xca,0xfd,0x82,0xbd,0xc6,0xfe,0x7e,0x2e,0x92,0x69,0x29,0x0d,0xae,0xdb,0x6c,0x86,0xbe,0x80, + 0xbd,0xb6,0x9a,0x45,0x8b,0xae,0x71,0x99,0x2e,0x7b,0xc9,0xca,0x6b,0x3c,0x66,0xea,0x59,0xb4,0xfc,0x94, + 0xcb,0xea,0xbe,0xd7,0x20,0x83,0x56,0xd5,0x97,0xa7,0x3c,0xc0,0xb5,0x43,0xe7,0x1a,0x58,0xc1,0x90,0xcb, + 0x5b,0x41,0x50,0xa2,0x4f,0x30,0xe6,0x92,0x8b,0xfd,0x5b,0xa1,0x1a,0xf6,0xf9,0xe1,0xa6,0xe4,0xa6,0x53, + 0x4c,0x07,0x75,0xcf,0xb0,0x13,0xae,0xd1,0xdd,0x5c,0xfe,0xa2,0xa3,0xdc,0xe4,0x67,0x55,0xd6,0x92,0xcb, + 0xdc,0xe4,0x66,0xd7,0xec,0xa2,0xf3,0x58,0xf9,0xad,0xdb,0x61,0x2d,0x92,0xc8,0xa7,0x05,0xfb,0x2c,0x6d, + 0xdf,0x65,0xb4,0x15,0x9b,0x2d,0x6c,0xee,0x5b,0xbc,0x6e,0xda,0xe7,0x0d,0x5b,0xff,0x1d,0x73,0x58,0x8d, + 0x76,0x3b,0x30,0xbc,0x63,0x06,0xbb,0x1d,0xdf,0x10,0x36,0x6e,0xcc,0xd1,0x19,0x66,0x56,0xe9,0xdd,0xca, + 0x1e,0x4c,0x0a,0x8c,0xa6,0xa6,0x92,0xb0,0x65,0x05,0xce,0xc6,0xcd,0xd5,0xcf,0x86,0x27,0x92,0x8b,0xf1, + 0x77,0xf8,0xea,0xdb,0x82,0x89,0xe0,0x6a,0x77,0x50,0x39,0x64,0x73,0x4a,0x9d,0x68,0x99,0xe6,0x86,0x26, + 0x6e,0x3a,0xdc,0x02,0x2f,0x8b,0xd6,0x6e,0x39,0xd6,0x02,0x27,0x9b,0x82,0x6f,0x3a,0x90,0xc6,0xeb,0xf7, + 0x19,0xc3,0x1e,0x3c,0x04,0xfb,0x5b,0xa1,0x63,0x8a,0xb4,0x68,0xa3,0x1b,0x61,0xc3,0xce,0xe7,0x86,0x45, + 0xde,0x11,0x32,0x6e,0xf2,0xb7,0x98,0xe9,0xed,0xe1,0xe2,0x26,0x77,0x9b,0xe5,0xde,0x11,0x2a,0xac,0xfc, + 0x3b,0x6d,0x2b,0x25,0x34,0xd5,0x0f,0x71,0xc8,0x2c,0x77,0xd9,0x3e,0x8b,0xac,0xb5,0xc5,0x58,0x2c,0x3c, + 0x44,0x1f,0x55,0xf1,0x04,0x29,0xbe,0x1f,0xea,0x29,0xbf,0x78,0x72,0x44,0xf1,0x64,0xcb,0xdb,0xab,0x7a, + 0x6d,0xba,0x79,0xdd,0xc6,0xf3,0x20,0x2e,0x73,0x56,0xd0,0x8b,0xf7,0x1a,0xe7,0x24,0x4d,0x71,0xc9,0xb9, + 0x7c,0x93,0x92,0x1b,0x62,0x06,0xd7,0x22,0x47,0x56,0x37,0x96,0x82,0xce,0x90,0x09,0xd8,0xf4,0xf9,0x10, + 0x37,0x81,0x5a,0x71,0x63,0xb4,0x32,0x8b,0x2d,0x25,0xa4,0x5a,0xb1,0x10,0x2f,0xe8,0x35,0xa5,0xe3,0x33, + 0x22,0x85,0x91,0x2a,0x97,0xed,0xf9,0x88,0x6b,0x03,0x54,0xa1,0xa6,0xb9,0xc0,0x04,0x66,0x4a,0x0d,0xe6, + 0x49,0x72,0x03,0xc4,0x70,0x31,0x79,0x7e,0x31,0x8b,0xc5,0xb6,0x06,0x84,0x06,0x17,0x38,0x61,0x2e,0x1f, + 0x84,0x1d,0x89,0x3a,0x04,0xc5,0x12,0x82,0x0d,0x2a,0x34,0x0d,0xb5,0xd4,0x1b,0xb6,0xb5,0xb9,0x46,0x55, + 0x20,0xdb,0xec,0x2e,0x9a,0x03,0x39,0x4a,0xe9,0x45,0xf1,0x9e,0x35,0x11,0x0e,0xf6,0xf2,0xcf,0x8f,0x84, + 0xe2,0x85,0xda,0x49,0xca,0xf2,0x78,0x13,0x04,0x1f,0xe7,0x8a,0x9b,0x7b,0xb1,0x52,0xdf,0x7c,0xe0,0xaa, + 0x44,0x8b,0xe7,0x4b,0x55,0xce,0x07,0xb8,0x42,0x6d,0xd0,0x17,0x5b,0x6d,0xc6,0x95,0xab,0xa0,0x52,0xc5, + 0xea,0x61,0x50,0xb4,0x7c,0xec,0x66,0xa9,0xb9,0x56,0x8d,0x49,0x3a,0xdd,0xcb,0x81,0xe9,0x2f,0x9f,0x52, + 0xc4,0x50,0x4c,0xce,0xe8,0x84,0xbf,0x34,0xcf,0xa7,0x5f,0x5f,0xce,0xc5,0xa1,0x65,0xd9,0x83,0xfb,0x15, + 0x9e,0x1c,0x78,0x2a,0x9b,0xa7,0xbb,0x9c,0xb1,0x2a,0xfe,0xf2,0xe5,0x72,0xb9,0xf8,0x97,0xad,0x4f,0xeb, + 0xd3,0x97,0x30,0x08,0x02,0x8e,0x7f,0xe7,0x48,0x15,0x3f,0xdd,0x6d,0x76,0x77,0xce,0x33,0xc1,0x97,0xbf, + 0xd0,0x97,0xa7,0xbb,0xc0,0x09,0x9c,0xf0,0xd1,0xe1,0x30,0xa1,0xe1,0xa7,0xbb,0xf0,0xf1,0xee,0xdb,0xd7, + 0x0a,0xb1,0xdc,0xc9,0x48,0x51,0x3c,0xdd,0x7d,0x48,0x37,0xfc,0x73,0xe7,0xa4,0x4f,0x77,0x7f,0x7f,0xf4, + 0xb7,0xf7,0xf7,0xe1,0xbd,0xb3,0xf5,0xa3,0x70,0x5f,0xec,0xfd,0xe0,0x61,0xb3,0xdf,0x39,0x91,0xff,0xb8, + 0xdd,0x87,0xdb,0xbf,0x6d,0x1e,0xfd,0xfd,0x2e,0xd8,0x46,0x72,0xf8,0xee,0xcb,0xb7,0xaf,0x7c,0xe6,0x6f, + 0x9f,0x3e,0x3b,0xb2,0x6a,0x77,0x44,0xa3,0xc4,0x29,0xa9,0x57,0x63,0xf0,0x36,0x36,0xd8,0x59,0x35,0x50, + 0xf8,0xbe,0xe8,0x75,0xa5,0xe9,0x67,0x8b,0x58,0xf8,0xff,0x57,0x11,0x8f,0xc7,0x5d,0x9a,0xa0,0xdf,0xa5, + 0x88,0xfe,0xba,0xdf,0xce,0xa4,0x1c,0x7a,0x1e,0x91,0xec,0x14,0x15,0xe8,0x88,0x0b,0xb7,0xc0,0x27,0x5c, + 0xa6,0x9d,0x19,0x87,0x8c,0x2e,0x97,0xad,0xcb,0x62,0xb6,0x93,0x24,0xbf,0x8c,0xe0,0x22,0x85,0xb3,0x62, + 0xf0,0x35,0xb9,0x83,0xc6,0x2e,0x95,0x11,0x81,0x92,0x1c,0x27,0x3f,0x61,0x5f,0x9a,0xb5,0x3c,0x6c,0x62, + 0xfa,0xe3,0x2a,0x8b,0x6c,0xfc,0xf4,0xbe,0x10,0xd4,0x93,0x4f,0x93,0x41,0xbd,0x2b,0xa4,0xc4,0xdb,0x05, + 0x66,0xd7,0x4c,0x0a,0xe7,0x27,0x80,0x82,0x80,0xa2,0xee,0xae,0xe7,0x00,0x6a,0x19,0x05,0xd4,0x17,0x25, + 0xe9,0x66,0x13,0x9a,0xad,0x20,0xf9,0x48,0x1b,0x22,0x3a,0x3e,0x35,0x2e,0x10,0x23,0xcf,0x58,0x8f,0x0c, + 0x7e,0x4d,0x2f,0x57,0x89,0xb2,0x02,0xbf,0x1c,0xf8,0x1f,0x2f,0x25,0x35,0xf8,0x14,0x27,0x82,0xfd,0xd6, + 0x9e,0xcb,0x91,0xe7,0x94,0x98,0xff,0xf7,0xc0,0x3f,0x15,0x42,0x37,0xea,0xca,0x32,0xfa,0xcd,0x97,0xec, + 0x6c,0x58,0xfc,0xac,0xea,0xc4,0xe4,0xfc,0x57,0x2c,0x5b,0x4e,0xc3,0x20,0x9c,0x0f,0x9d,0xe8,0x66,0x79, + 0x70,0x94,0x9c,0x1b,0x21,0xa9,0xd7,0x80,0x5f,0xb0,0x11,0x47,0x9a,0x72,0x8e,0x06,0xce,0x31,0x22,0xc9, + 0x6d,0x65,0x20,0x49,0xd0,0x88,0xd2,0xb0,0x1a,0xb3,0x24,0x37,0x70,0x14,0x4c,0x9b,0x0c,0xc1,0xb6,0xe3, + 0xd6,0xd4,0xb1,0x06,0xa0,0x40,0x73,0x86,0xb5,0x4e,0x1c,0x13,0x44,0x8a,0x37,0xce,0x66,0xb0,0x9d,0xd9, + 0x1c,0xbd,0x5a,0x12,0xd4,0x3b,0xd5,0xf4,0xc0,0x50,0x7d,0x79,0x34,0xcb,0xc0,0x57,0xbd,0x4d,0xd0,0xe9, + 0x5c,0x36,0xeb,0xd8,0xa1,0x89,0x1d,0xde,0xc0,0xde,0x9b,0xd8,0xfb,0x55,0xec,0xed,0xd6,0x5d,0x1b,0xdd, + 0x19,0xbc,0xb6,0x5b,0x7f,0x0b,0xff,0x56,0x19,0xee,0x4d,0x61,0xf7,0xeb,0xc2,0x46,0xd1,0xda,0xf4,0xd1, + 0xbd,0xc1,0x2b,0x8a,0xfc,0x08,0xfe,0xad,0x32,0xbc,0x37,0x57,0x7f,0xbf,0xbe,0xfa,0x07,0x53,0xd8,0x87, + 0x75,0x61,0x1f,0x4d,0xec,0xc7,0x05,0x6c,0x30,0xae,0x70,0x18,0x1e,0x6b,0xc1,0xb2,0x86,0x87,0xd8,0x29, + 0x42,0x8d,0x22,0x34,0x28,0x96,0x6c,0x0d,0x46,0x1e,0x29,0xf6,0x06,0xc5,0xc2,0x8a,0x17,0x0c,0x0d,0x16, + 0xbe,0x32,0x1a,0xcc,0xab,0x71,0x5b,0xb5,0xf8,0x4e,0x13,0x7b,0x67,0x88,0xbd,0x5b,0x10,0x7b,0xaf,0x51, + 0xec,0x0d,0x8a,0x25,0x3f,0x89,0x34,0x8a,0xc8,0xa0,0x88,0x96,0x28,0xec,0x2e,0x05,0xbe,0x34,0x32,0x52, + 0x8e,0xa4,0x73,0x5b,0xf3,0xad,0x7b,0x4d,0xdb,0xf7,0x86,0xb6,0x97,0xfc,0xeb,0x41,0x13,0xfb,0xc1,0x10, + 0x7b,0xc9,0xc7,0x1e,0x35,0x8a,0x47,0x83,0x62,0xea,0x67,0xc3,0xb7,0x16,0x60,0x21,0x84,0x65,0xd3,0xf8, + 0x3a,0x43,0x37,0x62,0xed,0x48,0x31,0x84,0xda,0x19,0xbe,0x11,0x76,0x05,0xbe,0x8a,0xba,0x7f,0x3a,0xe3, + 0x94,0x20,0xe7,0x17,0x7e,0xb8,0x0f,0xf6,0x86,0x43,0xeb,0x73,0x27,0x0e,0xa6,0xc9,0x59,0x04,0x20,0x23, + 0x62,0x7a,0x5a,0x9e,0x9b,0xa0,0x22,0xf9,0x85,0xc7,0x4a,0xe7,0x57,0x71,0xec,0x7d,0x36,0x83,0xb0,0x79, + 0xdc,0x0f,0x39,0xf4,0x78,0x52,0x72,0x4e,0x7d,0x8f,0xb4,0x3a,0xcd,0x7a,0x61,0xd2,0xab,0x6c,0xd4,0x45, + 0x66,0x5d,0xa7,0xaa,0xf2,0xb4,0x70,0x69,0xe1,0xb6,0x45,0x57,0x90,0x06,0xd2,0x0f,0xf6,0x5a,0xa8,0xda, + 0x40,0x4d,0xcf,0xcb,0x9c,0x6b,0x3a,0xa1,0xa2,0x3e,0x10,0x39,0x40,0x07,0x7f,0xa9,0xf8,0xdb,0x72,0x1e, + 0x8e,0xe0,0xc4,0x21,0x54,0x40,0x5a,0x01,0x69,0x05,0xa4,0xe5,0x90,0x6e,0x4c,0x70,0xa4,0x85,0x45,0x46, + 0x20,0x0b,0x2e,0x1e,0x2b,0xe4,0x0f,0x91,0x1f,0x52,0x43,0x1c,0x58,0x10,0x24,0x82,0x85,0x43,0xca,0x86, + 0xa4,0xb8,0x37,0x65,0x4d,0x48,0x0d,0xe5,0xeb,0x30,0x36,0xb9,0x61,0x4b,0x53,0x37,0x65,0x6e,0x41,0x26, + 0xba,0xdc,0xe8,0x99,0x93,0xcc,0x85,0x66,0xa5,0xd2,0x84,0x62,0x7a,0xcf,0x07,0xcb,0x76,0x33,0x72,0x6a, + 0x6b,0xec,0xf2,0x6b,0x28,0xae,0xc3,0xca,0x85,0x4a,0xd1,0x65,0xbc,0x86,0xe6,0xfa,0x34,0x19,0x84,0x92, + 0x81,0x18,0x1d,0x72,0xb5,0xe1,0x82,0xcc,0x48,0x50,0x58,0xea,0xb2,0xbc,0xbb,0x5e,0xaf,0xca,0x54,0x4f, + 0x2f,0xc1,0xf0,0x86,0x7f,0xc6,0xaa,0x55,0x96,0xd2,0xaa,0x6e,0xd5,0xee,0xd0,0xb8,0xa9,0x80,0x5b,0x9c, + 0x91,0x7a,0xb8,0x90,0x04,0xce,0xfa,0x63,0x37,0xb1,0x2a,0x20,0x8f,0x97,0x97,0x1c,0x57,0xbb,0xca,0x34, + 0x93,0xf8,0xa0,0x3f,0xba,0x90,0x5f,0x50,0x48,0x9e,0x26,0x49,0x6a,0x5f,0x75,0xba,0xe3,0xf4,0xf9,0xc6, + 0xcd,0x43,0x37,0xdf,0xba,0xf9,0xce,0xcd,0xf7,0x6e,0x1e,0x75,0x37,0x2e,0x6f,0x3d,0x79,0x5d,0x38,0xd1, + 0x9e,0x06,0x1a,0xf8,0x6a,0xee,0xb4,0x93,0xf9,0xb2,0x79,0xe3,0x1b,0xf6,0x79,0xa8,0xe1,0x6c,0xad,0x38, + 0xfb,0x3e,0xdf,0x6a,0x48,0xa1,0xba,0xc0,0x34,0x90,0xb6,0x7d,0xbe,0x33,0x70,0x42,0xcb,0x25,0xa7,0x07, + 0xc5,0x81,0x85,0x14,0xf8,0xef,0x3b,0x3d,0xb1,0xb7,0x5d,0x90,0x02,0xed,0x7e,0x4e,0x0b,0xa4,0x51,0x37, + 0xab,0x09,0x26,0xa4,0xc1,0x84,0x68,0xd7,0x93,0xf3,0xa9,0x33,0x93,0x32,0x48,0xc3,0x79,0x7f,0x27,0x23, + 0x2f,0xf2,0x9a,0xbf,0x93,0x8d,0x3d,0x50,0x6d,0x7e,0xe0,0x09,0x3a,0x44,0xb5,0xf8,0x93,0xf3,0xe9,0xda, + 0x15,0x11,0x3e,0xda,0xfb,0x59,0x41,0x11,0x13,0xae,0xd1,0x89,0x9f,0xd2,0xa1,0x14,0x58,0xb8,0x81,0x82, + 0x8b,0xdf,0xfd,0xf7,0x67,0x2f,0x81,0xc7,0x9f,0x63,0x25,0x21,0x82,0x8f,0x78,0x19,0xc0,0x72,0x71,0x05, + 0x86,0xd7,0x2e,0x29,0xf5,0xf7,0x03,0xfe,0x85,0xeb,0x14,0x95,0xeb,0x6f,0x01,0x04,0xd5,0x58,0x56,0x2a, + 0x17,0x11,0x71,0x43,0x85,0xe6,0x26,0xa9,0x31,0x2e,0x1d,0x54,0xa6,0x7a,0x94,0xbe,0x8f,0x1e,0xaa,0x97, + 0xcf,0x9d,0x90,0x68,0x20,0xe6,0xce,0x24,0x28,0x65,0x99,0x34,0x6e,0xff,0x51,0xb8,0xfe,0xc3,0x58,0xc5, + 0xcc,0x17,0x12,0x06,0xfc,0xa3,0xfb,0xa6,0x51,0xcf,0x6c,0x26,0x9d,0x11,0x79,0xf2,0x57,0x2f,0xce,0x87, + 0x2c,0xc9,0xa2,0xe4,0x7a,0x6b,0x2f,0xf7,0xf6,0x86,0x0f,0x80,0x6a,0xde,0xb4,0x0e,0x4d,0x2c,0x0d,0x6e, + 0x1c,0x36,0x7a,0xbe,0x2e,0x37,0x2e,0x87,0xf4,0xbd,0x9f,0x63,0x04,0xb3,0x76,0xb3,0x32,0x6b,0x18,0x71, + 0xb8,0x17,0x8d,0x56,0x37,0x79,0x6c,0x96,0x34,0x3d,0xa6,0x05,0xd1,0x3d,0x97,0x70,0x60,0xe6,0x5f,0x48, + 0x06,0x01,0x1b,0x31,0x28,0xf6,0x35,0xdf,0xd3,0x74,0x26,0x4d,0xf0,0x96,0x55,0xdb,0x78,0x5e,0x97,0x81, + 0x8e,0xa0,0xc7,0x96,0xe1,0xc3,0xf0,0xae,0x86,0x8c,0x15,0xbd,0x85,0xc8,0xf1,0x49,0x99,0x92,0x04,0x31, + 0x5a,0xdb,0xab,0x5b,0xb5,0x7f,0xb8,0xfd,0x86,0xdd,0x25,0x6d,0xa9,0x77,0xbe,0xf6,0xd7,0x73,0x4c,0xe9, + 0x46,0xd5,0xbd,0xab,0xf3,0x7d,0xe7,0xad,0x0d,0x4f,0x82,0x9f,0xc0,0x88,0x25,0x9c,0x3b,0xfc,0x9a,0x7c, + 0xee,0x5c,0xdb,0xc7,0xe8,0x3d,0xbc,0x60,0x1d,0x3a,0xbb,0xa9,0x67,0x9d,0x6a,0xfc,0xfa,0x5f,0x88,0x06, + 0x6e,0x6c,0x93,0x2d,0x7b,0xdc,0xbe,0x87,0x19,0xae,0x6b,0x5a,0xdb,0xf8,0x24,0xc1,0x24,0x98,0x6f,0xa2, + 0x6a,0x70,0x38,0x1e,0xe7,0x43,0xb5,0x15,0x1b,0x52,0x40,0xf2,0x32,0x0d,0x02,0x23,0xde,0x56,0xe1,0xf1, + 0x55,0xce,0xfb,0x9a,0x1f,0xc2,0x07,0xfe,0xd1,0xc9,0x77,0xd5,0xf5,0xe6,0x42,0x85,0x90,0xa9,0xaa,0x60, + 0xbe,0x06,0xdc,0x4a,0x67,0xac,0x35,0xb7,0x81,0x7c,0xfe,0xc6,0xca,0x24,0x0e,0xf4,0x3e,0x04,0xd3,0x55, + 0xa7,0x17,0x08,0x8e,0x4a,0x5b,0x2c,0xea,0x51,0x0d,0xd7,0x31,0x1c,0xfd,0x81,0x9c,0x2b,0x5a,0x33,0x34, + 0xbd,0x77,0x91,0x22,0xeb,0xdc,0xde,0x73,0x09,0xff,0xb6,0xfd,0x6c,0xc8,0xaa,0x1d,0x30,0xaa,0xc7,0x34, + 0x7b,0xe3,0xa3,0xa4,0x5c,0x3d,0x05,0xbd,0xe0,0xf4,0xb0,0x6e,0x9d,0x88,0x7f,0x26,0x4d,0x27,0x63,0x63, + 0x49,0x6d,0xe6,0xa4,0x64,0x8b,0x5d,0x33,0x6e,0x11,0x6d,0x16,0x6b,0x02,0xe7,0x43,0x4c,0x13,0x3d,0x9f, + 0x89,0x1d,0xe6,0xa6,0xec,0xfd,0xa6,0x3d,0xd2,0x8a,0xc7,0x95,0xc6,0x2c,0xe9,0x05,0x1f,0xa9,0x84,0xa6, + 0xb3,0xd1,0x81,0x17,0x81,0xe7,0x74,0x33,0x5f,0x68,0x18,0xae,0x0c,0x56,0x5b,0x2d,0xad,0x19,0xbb,0xa3, + 0xf3,0xee,0x97,0x24,0x75,0x14,0xe7,0x69,0x53,0x4d,0x91,0xee,0x86,0x29,0x1c,0xff,0x19,0x15,0x2d,0xbe, + 0x11,0x16,0x65,0x9a,0xa5,0xfb,0x8e,0xe4,0xde,0x41,0x6e,0x76,0xfc,0x49,0x60,0x51,0x93,0xbb,0x02,0xad, + 0xcb,0xa3,0x02,0xa2,0x4c,0x39,0x27,0x77,0x01,0xa1,0x04,0x6a,0x97,0x37,0xca,0x85,0xb5,0x17,0x91,0xe4, + 0x4c,0x71,0x3c,0x4c,0x25,0x9f,0x3d,0x96,0xb7,0xe7,0xe3,0xe2,0xfc,0x76,0x79,0x42,0x2d,0x40,0x87,0xf6, + 0x00,0x6d,0x5c,0x24,0xc9,0x53,0xd7,0x7c,0xe9,0x4d,0x13,0xe8,0x4c,0x7f,0x03,0xd2,0xf2,0x84,0x95,0x30, + 0xff,0xcb,0x49,0x2e,0xa8,0x2e,0xb9,0xeb,0xe9,0xa8,0xdb,0x20,0xcc,0x20,0x2c,0x59,0xb3,0x80,0xf1,0x82, + 0x64,0x6f,0x4d,0x88,0xfb,0xff,0x00,0xdc,0xc0,0x0e,0xc5,0xb8,0x29,0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index b0affcb..e5d8fb7 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,110 +4,122 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x59,0x69,0x7b,0xe2,0x38,0x12,0xfe,0x2b,0x8e, - 0x77,0xf6,0x21,0xd9,0x34,0x67,0x48,0xba,0x93,0x0d,0xd9,0xe1,0x0c,0x10,0x20,0xdc,0x01,0xbe,0xc9,0xb6, - 0xb0,0x15,0xe4,0x23,0x96,0x0c,0xa1,0x7b,0xe6,0xbf,0x8f,0x7c,0x0b,0x30,0x09,0xbd,0xfd,0xcc,0xb3,0x9b, - 0x0f,0x31,0x52,0x1d,0x7a,0xab,0x54,0xa5,0x2a,0xd9,0xf7,0x67,0xb5,0xe7,0xea,0x78,0xde,0xaf,0x0b,0x1a, - 0xd5,0xf1,0xc3,0x7d,0xf0,0x1f,0x02,0xe5,0xe1,0x5e,0x87,0x14,0x08,0xb2,0x06,0x6c,0x02,0x69,0x49,0x9c, - 0x8c,0x1b,0xe9,0x6f,0xe2,0xc3,0x3d,0x45,0x14,0xc3,0x87,0xfb,0x6c,0xf0,0xf4,0x98,0x0c,0xa0,0xc3,0x92, - 0x48,0x35,0xa8,0xc3,0xb4,0x6c,0x62,0xd3,0x16,0x05,0xd9,0x34,0x28,0x34,0x98,0xdc,0x3f,0x72,0xde,0x9f, - 0xb8,0xc3,0xba,0x46,0x70,0x63,0x99,0x36,0xe5,0xf8,0x36,0x48,0xa1,0x5a,0x49,0x81,0x6b,0x24,0xc3,0xb4, - 0x37,0xf8,0x82,0x0c,0x44,0x11,0xc0,0x69,0x22,0x03,0x0c,0x4b,0x79,0xa6,0x02,0x23,0x63,0x25,0xd8,0x10, - 0x97,0x44,0x42,0xb7,0x18,0x12,0x0d,0x42,0xa6,0x43,0xb3,0xe1,0xb2,0x24,0x4a,0x8e,0xa1,0x60,0x98,0x91, - 0x09,0x61,0x8c,0x44,0xb6,0x91,0x45,0x05,0x62,0xcb,0x11,0xe1,0xd5,0x9d,0xcf,0xfa,0x04,0xf6,0xc3,0xb7, - 0x51,0x32,0x95,0xed,0xc3,0xbd,0x82,0xd6,0x02,0x52,0x4a,0x22,0xb0,0x2c,0xd1,0x1f,0xad,0xd3,0x32,0x36, - 0xc1,0x2a,0x26,0xb9,0x38,0x01,0x32,0xa0,0x1d,0x30,0xc8,0x18,0x10,0x52,0x12,0x5d,0x2d,0xde,0x1c,0xd2, - 0x55,0x7f,0x35,0x05,0x50,0x70,0x87,0x74,0xa0,0xc2,0xac,0x65,0xa8,0xff,0x96,0x00,0x81,0x37,0xc5,0x2f, - 0x68,0x5a,0x79,0x1e,0x6e,0x72,0x4f,0x8f,0xaa,0x59,0x66,0x7f,0xbd,0xd1,0x44,0xab,0x4f,0x54,0xf6,0xab, - 0xe6,0x0e,0xcb,0x9b,0x6a,0x79,0xce,0x1e,0x95,0x59,0x79,0xad,0x37,0xdd,0x89,0xc7,0xd9,0xb0,0xf1,0xd2, - 0x1c,0x8e,0xa5,0xc2,0x22,0xa7,0x14,0x1a,0xdb,0xc5,0xa0,0x52,0x59,0x3c,0xde,0xa2,0xc5,0xa8,0xd2,0x96, - 0x5e,0x1a,0xc6,0x62,0xda,0xc6,0xf3,0x97,0xe1,0xb5,0x2c,0x63,0xdc,0x77,0x05,0x66,0x95,0xf6,0xb0,0xde, - 0x98,0xc0,0x9e,0x4d,0x5e,0x94,0x7a,0x4f,0x7d,0x2d,0x0f,0x3a,0xf2,0xbc,0x22,0x97,0xfb,0x72,0xb9,0xaa, - 0x0c,0x7a,0xc5,0x72,0xaf,0xd0,0xad,0x16,0xd5,0x21,0x99,0xb7,0x6f,0xeb,0x3d,0xa5,0xdc,0x9f,0x97,0x6b, - 0xa0,0x5c,0x83,0x96,0x32,0xd1,0xba,0xf9,0xb7,0xc6,0xab,0x63,0xab,0xd6,0xed,0x48,0xee,0x36,0x55,0xe5, - 0x6b,0xfe,0x6a,0x7a,0xb5,0xa4,0x13,0xeb,0x1a,0x36,0xd5,0x6e,0x23,0x6f,0xdb,0x8f,0x75,0xe0,0xdc,0x4c, - 0x9b,0xb5,0x42,0xb3,0x2b,0x35,0xaf,0xdf,0xda,0xcf,0x9d,0xa6,0x0d,0x2e,0x97,0xab,0xef,0x12,0x99,0x0f, - 0x89,0xd6,0xfd,0x66,0x75,0xc6,0xea,0xa4,0xa5,0x8e,0xd4,0xb5,0xd3,0xed,0x9a,0xf3,0xcd,0x25,0xea,0xce, - 0xc7,0xf6,0xcd,0x40,0xeb,0xcd,0xbb,0x76,0x0f,0xf5,0xb6,0x9b,0x56,0x07,0x6f,0xa7,0x4f,0x8a,0xbc,0xdd, - 0xf6,0x89,0x2e,0x0f,0xc9,0x76,0x72,0x9d,0x5b,0xa9,0x4d,0x3a,0x18,0x38,0x85,0xb2,0xd2,0x6b,0x37,0xac, - 0xda,0xaa,0xfc,0x54,0x6c,0x65,0x3b,0xad,0x97,0xae,0x54,0x28,0x93,0x56,0x45,0x7e,0xcb,0xa1,0xe1,0x23, - 0x1c,0x3c,0xf6,0xc7,0x8b,0xe5,0xf4,0x66,0x50,0xcf,0x5d,0xaa,0xb5,0xc7,0x46,0xc1,0x36,0xc9,0x63,0x5d, - 0xed,0x0e,0xde,0x5b,0x65,0xcd,0x58,0x94,0x51,0xbf,0xf7,0xad,0xe8,0x58,0xc3,0x65,0x2e,0xfb,0x8c,0x2d, - 0xd2,0xa9,0x56,0xac,0xab,0xed,0x5b,0x4e,0xd6,0x54,0x5a,0x9d,0x4c,0x16,0xf6,0x70,0x73,0x33,0xa8,0x3d, - 0x5f,0xd5,0x5f,0x9a,0xa3,0xb7,0xc6,0x2d,0x05,0xf6,0x02,0x8c,0x9e,0xda,0x33,0xd8,0xae,0x29,0xd2,0x00, - 0x93,0x7a,0xee,0xa9,0x76,0xd3,0xee,0x65,0x9f,0xcc,0x21,0x79,0xd4,0xde,0x67,0x4f,0x55,0x5c,0x7d,0x6a, - 0xb6,0x5b,0xcb,0xd5,0x58,0xdb,0x74,0x5f,0xb4,0xf2,0x8d,0x52,0x19,0x99,0x78,0x88,0x5e,0x57,0xed,0x67, - 0x25,0xbf,0x98,0xac,0x6f,0xb7,0x83,0xdb,0x67,0xeb,0x4d,0x6a,0x5a,0x08,0x4c,0xa6,0xa0,0x2e,0x2d,0xea, - 0x5f,0x69,0xab,0xf5,0x6a,0x56,0x9e,0x66,0x5b,0x62,0x92,0xbc,0x5c,0x9c,0x7e,0x83,0x52,0xa7,0xae,0x48, - 0xeb,0x82,0x24,0x77,0x49,0xfd,0xab,0xfa,0xea,0x54,0x94,0xf5,0x6c,0x38,0x6a,0x17,0x1b,0x97,0xd9,0xcd, - 0x5b,0x6b,0x36,0xb3,0x5b,0x8f,0x1b,0x7d,0x76,0xf5,0x7d,0x03,0xe4,0x4e,0x4d,0x83,0xbd,0xe7,0xdb,0xfc, - 0xf3,0x6b,0x67,0xf0,0xa4,0xe4,0x8b,0xd3,0x6e,0xad,0x6a,0xcc,0xd5,0xea,0xfb,0xf4,0xb5,0x75,0xd5,0x1b, - 0xc3,0xbc,0x3e,0x32,0xfb,0xb5,0xe2,0xed,0x7b,0x71,0x64,0xb3,0xe0,0xb8,0x7d,0xeb,0x1b,0x45,0x68,0xae, - 0xab,0x5d,0x2f,0x7a,0xea,0xb8,0x31,0x5e,0x8d,0x9c,0x81,0x5e,0xad,0xb2,0x48,0xd4,0xf2,0x0f,0x3f,0x7e, - 0x08,0xbf,0xd1,0xf3,0x94,0x97,0xa2,0xa9,0x0b,0xe1,0xcf,0x3f,0x59,0xb8,0xe7,0x19,0xa5,0xe0,0x52,0xd6, - 0xd0,0x26,0xc8,0x34,0x32,0x64,0x4b,0x28,0xd4,0x5b,0x35,0xe1,0xac,0x54,0x12,0x0c,0x07,0x63,0xe1,0x3f, - 0x9e,0x54,0x38,0xcf,0x04,0x2f,0x85,0xd4,0x9d,0x90,0x62,0x8f,0x03,0x19,0x36,0x9d,0xf2,0xf5,0x16,0x76, - 0xf2,0x61,0x83,0x96,0x88,0x50,0x40,0x1d,0xb2,0x9b,0x27,0x2c,0x7d,0x0c,0x28,0x53,0xa6,0x63,0x77,0x1e, - 0x19,0x0a,0x92,0x01,0x75,0x4f,0x8c,0x3b,0x37,0x73,0xd2,0xbe,0xb0,0xaf,0x68,0xe4,0xfd,0xce,0x00,0x2b, - 0x03,0x0d,0x20,0x61,0xa8,0x30,0x84,0xa9,0x40,0x13,0x54,0x52,0x2e,0x08,0x05,0x91,0x78,0xc2,0xcd,0x6f, - 0xa6,0x3b,0x34,0x9f,0x57,0x21,0xcb,0x90,0x10,0xcb,0x44,0x06,0xcd,0xc4,0x5e,0x11,0x18,0xe3,0xb1,0x75, - 0x76,0xe7,0x91,0xc5,0x16,0xfb,0x40,0x27,0x83,0xe1,0x09,0x06,0xce,0x76,0x41,0xfc,0x92,0xf5,0x2a,0xa4, - 0x2f,0xa8,0xe1,0xad,0xc4,0x84,0xfc,0x05,0xcf,0x2f,0x8e,0xdb,0x47,0x7c,0x46,0xdd,0x54,0xe0,0x9e,0x7d, - 0x49,0x9a,0xc6,0xf0,0x9d,0x9e,0x73,0x48,0xf9,0xff,0xfe,0xe1,0x87,0xd8,0x79,0xca,0xce,0x3f,0x05,0x19, - 0xaa,0x18,0x82,0x0d,0xc7,0xe1,0xf2,0xc1,0x38,0x5a,0x29,0x18,0xb7,0x42,0x9b,0x76,0x3d,0xe1,0xeb,0x3c, - 0x8b,0x94,0xf0,0x6e,0xa0,0x40,0x72,0xc3,0x45,0x72,0x28,0x35,0x8d,0x70,0xd2,0x1f,0x31,0xc7,0x04,0xe3, - 0x1f,0x42,0xca,0x9f,0x4a,0x9b,0x0e,0x65,0x75,0x00,0xb2,0xd0,0x04,0xcc,0xa7,0x6b,0x38,0x06,0x12,0x8b, - 0x61,0x21,0xe5,0x3b,0x8f,0x85,0xa5,0x28,0xfc,0x2e,0x63,0x24,0xaf,0xd8,0x81,0x1e,0x31,0xc4,0xf4,0xc8, - 0x00,0x7f,0x9c,0x61,0xab,0x8f,0xb9,0x44,0xf1,0x17,0x79,0x10,0x7e,0x19,0x0e,0xb5,0x91,0xaa,0xb2,0xbc, - 0x39,0x0e,0x28,0xe2,0x88,0x20,0x85,0x33,0x7f,0x1b,0xa8,0x38,0x12,0x8f,0xc3,0xe2,0x78,0x22,0x60,0xf1, - 0xdc,0xdf,0x06,0x6d,0x89,0x6c,0x7d,0x03,0x6c,0x78,0x1c,0x58,0xc4,0x11,0xc1,0x0a,0x67,0x8e,0x80,0x3a, - 0x88,0x3f,0x4e,0x1d,0x1f,0x10,0xf7,0xda,0xd5,0x7e,0x50,0xf0,0x47,0xe7,0x95,0xa7,0x82,0xd5,0x78,0xc3, - 0x72,0xa8,0x40,0xb7,0x16,0xeb,0x60,0x6c,0x16,0xc7,0xa6,0x18,0xb4,0x33,0x00,0xe3,0x11,0x85,0x16,0x61, - 0xe6,0xae,0x01,0x76,0xdc,0x5e,0xc8,0x76,0xa0,0xc8,0x16,0x75,0x33,0x12,0xf3,0x0c,0x5e,0x9b,0x11,0x8c, - 0xc6,0x2e,0x13,0x6b,0x6a,0x80,0x04,0x71,0x94,0x65,0xee,0x20,0x8d,0x0c,0xd7,0x45,0xa2,0xb0,0x34,0xed, - 0x7d,0xf6,0x5d,0x9c,0x3c,0x2d,0x80,0xeb,0x69,0xe0,0x4c,0xff,0x29,0xdc,0x4b,0x80,0xc9,0xe7,0xc0,0x1b, - 0x1e,0xd7,0xe9,0xc8,0x03,0xfe,0x64,0xe8,0x1e,0xf1,0x08,0xf6,0x50,0x37,0xc1,0x88,0xb5,0x59,0x7b,0x35, - 0x85,0x95,0x22,0x4b,0x0c,0x37,0x36,0xc4,0xc9,0x5a,0x3f,0x0b,0x44,0x51,0xe8,0x59,0xe5,0x2d,0xdc,0x05, - 0x54,0xcb,0x2c,0xb1,0x69,0xda,0xe7,0x21,0xef,0xd4,0x25,0x0a,0x59,0xa1,0x70,0x7d,0x2d,0xfc,0x4b,0xc8, - 0xe7,0x72,0x2e,0x86,0x7f,0xb2,0x16,0x91,0x29,0x48,0x58,0x9d,0xef,0x00,0x77,0x3d,0x6a,0xa8,0xcc,0x60, - 0x1d,0x19,0x25,0x31,0xc7,0x9e,0xe0,0xbd,0x24,0x32,0x95,0xe2,0xae,0x74,0xe4,0xd3,0x8c,0xe1,0xe8,0x12, - 0xe4,0x9c,0x33,0xf5,0x31,0x1e,0x9c,0xc2,0x09,0x56,0x9e,0xc5,0xdb,0xb1,0x4e,0x7b,0x1e,0x3e,0x77,0xc9, - 0x5f,0x04,0x56,0x48,0xe0,0xfb,0x05,0x7b,0x08,0xe4,0x54,0x2f,0xb8,0x8c,0x99,0xf5,0xff,0xd6,0x05,0x31, - 0x86,0x3d,0xfb,0x93,0x2b,0xd2,0x6e,0xf6,0x72,0xa7,0xe7,0x3d,0xf3,0x85,0x2e,0xfc,0x4e,0x1c,0x49,0x47, - 0x34,0x63,0xd9,0x70,0xed,0x5d,0x29,0x58,0x3b,0x8f,0xb7,0xe3,0x80,0xcd,0xe5,0x42,0x10,0x2b,0xec,0x32, - 0xc3,0xe7,0x7b,0x7c,0xe2,0x22,0x1d,0x8e,0x0f,0xb3,0x3e,0x6a,0x6c,0x80,0x6d,0x78,0xd5,0x30,0xd8,0x89, - 0xc3,0xe2,0x1b,0x35,0x0f,0x7f,0xfc,0x21,0x24,0x50,0xfd,0xa8,0x77,0x4f,0xba,0xab,0x84,0xe3,0x9e,0x2d, - 0xde,0x62,0x17,0x21,0xdb,0x80,0x94,0xef,0x21,0xfc,0x04,0xf3,0x76,0x1a,0x03,0x8a,0x4d,0xae,0xfc,0xee, - 0xc8,0x76,0x00,0xed,0x98,0x41,0x2d,0x8e,0xb2,0x88,0xdf,0x21,0xca,0x4a,0xbe,0x9f,0xc3,0xa1,0x9e,0x38, - 0xc7,0x77,0x34,0x65,0xa2,0x75,0x76,0xb6,0xdf,0x91,0x4c,0xcb,0x35,0x83,0x88,0xbb,0xa0,0x4c,0xd9,0xb3, - 0x4e,0x4c,0x3c,0x04,0x92,0xa1,0x06,0x22,0x27,0x61,0x8d,0xd4,0x1f,0x03,0x1b,0x32,0x1c,0xad,0x3f,0x7e, - 0x21,0x89,0x63,0x82,0x40,0x60,0xcb,0x5a,0x27,0x52,0x7c,0x17,0xb6,0x6e,0x21,0x89,0x6d,0x72,0x44,0xfd, - 0xd0,0x80,0x91,0xc7,0x9e,0x58,0x70,0xb2,0x71,0xa4,0x7d,0x18,0x73,0xba,0xe9,0x2a,0xda,0x8f,0x3a,0x4e, - 0x3a,0xeb,0x06,0xf6,0x67,0x89,0xb0,0x53,0xaf,0x3f,0x4a,0x85,0x2a,0xdf,0x86,0x26,0x01,0xe3,0xab,0xfc, - 0x1e,0x28,0x7e,0x83,0x64,0x0d,0xca,0x2b,0xc9,0x7c,0x0f,0x8a,0x42,0xdc,0x07,0x73,0xfb,0xc4,0xa9,0xe2, - 0x19,0x4e,0xa8,0x19,0x3c,0xf7,0x21,0x2e,0x8e,0xbc,0x1b,0x41,0xfc,0x81,0xa7,0x7d,0x2e,0xdc,0x8c,0x15, - 0x78,0x87,0x9d,0xf0,0x81,0x85,0x41,0x0a,0x27,0x5b,0x17,0x12,0x3f,0xb7,0x2c,0xe2,0x3c,0x04,0xc6,0xf5, - 0xef,0x3f,0x6f,0x15,0x27,0xbc,0x6f,0x15,0x9f,0xab,0x84,0x20,0x25,0x51,0x9c,0xcd,0x9f,0x92,0x8c,0x9e, - 0x7c,0xb2,0x0b,0x3c,0x0a,0x97,0x49,0x67,0x1f,0xf8,0xc7,0xc3,0x62,0x31,0x83,0x36,0xa6,0x9d,0x88,0x27, - 0xa4,0x1d,0xc7,0x14,0x49,0x7b,0xb8,0xe2,0x51,0x12,0xb6,0x98,0xfa,0x19,0xbe,0x8f,0x22,0x40,0xd1,0x64, - 0x2b,0x59,0xbf,0x4f,0x39,0xd1,0xf6,0xe3,0xb1,0xe1,0xa9,0x49,0x70,0x86,0x3b,0xff,0xf3,0x11,0xe1,0x4a, - 0x1d,0x84,0xc2,0x09,0xc7,0x39,0x4a,0xc4,0x80,0x2c,0xa0,0x28,0x36,0x4b,0x9c,0x53,0xa2,0x04,0x1d,0xf1, - 0x13,0xfa,0xd4,0x4b,0x6e,0xdd,0xdc,0x77,0xec,0x6e,0x00,0x3b,0x12,0x2b,0x8f,0x3a,0x20,0xab,0xc4,0x30, - 0x8e,0xa8,0x27,0x05,0x73,0xac,0x2b,0x39,0xa4,0x39,0xfa,0x2f,0xc2,0x56,0x01,0x85,0x1b,0xb0,0x4d,0xc2, - 0x1c,0x90,0x4e,0x01,0x1c,0x6a,0x49,0x44,0x1b,0x11,0xff,0x1b,0xa8,0x07,0x9d,0x86,0x66,0x12,0xea,0xde, - 0x0f,0x92,0x10,0x87,0xb4,0xcf,0x20,0xdf,0x59,0x18,0xc8,0x50,0x33,0xb1,0xe2,0xf6,0x79,0x47,0x94,0xf4, - 0x63,0x9e,0xd4,0x85,0x6f,0x66,0xb4,0x76,0xa2,0x9d,0x31,0xf5,0xd3,0x84,0xe3,0xa2,0xdd,0xaf,0xcd,0x24, - 0xea,0x59,0x77,0xa6,0xd3,0x96,0x8d,0x74,0x60,0x33,0xdf,0xf9,0xf0,0xfd,0xc2,0xb9,0xdb,0x17,0x80,0xb5, - 0xd7,0xf9,0x85,0x77,0x24,0x7f,0x1c,0xbc,0x2d,0xf3,0x0a,0x6b,0xc5,0x53,0x35,0xf2,0xe6,0x99,0x67,0xee, - 0xf6,0x29,0xa9,0x0b,0x31,0xa1,0x35,0x38,0xa9,0xb8,0x73,0x77,0xde,0x23,0xa5,0xdd,0xb1,0xdc,0x97,0x2a, - 0x8d,0x80,0xcf,0x77,0x63,0x28,0x75,0xa4,0xce,0xc7,0xd7,0xe6,0x0f,0xaa,0xfc,0x12,0xe1,0x3d,0x6d,0x0d, - 0x77,0xe6,0xff,0xd7,0xb5,0xb1,0x0b,0x7d,0x97,0xf4,0x6d,0x53,0x75,0x8f,0x2d,0xef,0x05,0xe7,0x32,0xba, - 0x82,0xee,0x11,0xbd,0xfb,0xce,0x87,0x5b,0x73,0xf8,0x3a,0x0f,0xb3,0xd6,0x6f,0x89,0xde,0x8f,0x5f,0xda, - 0x82,0xf7,0xa5,0x5c,0x06,0x59,0x5b,0xd6,0xf4,0x69,0xc1,0x89,0x2c,0xd9,0xfc,0x8b,0xd8,0xe0,0xb9,0xff, - 0x1e,0x36,0xf4,0xfa,0xd4,0x27,0x7b,0xaf,0x63,0xf7,0x45,0xa2,0xd7,0xb0,0x07,0xb7,0xa6,0xe0,0x03,0x08, - 0x66,0x37,0x33,0x07,0xa8,0xcc,0xb5,0xaf,0x60,0x0d,0xfc,0x49,0xf1,0x81,0x65,0x0c,0x31,0xb1,0xdb,0x3e, - 0xab,0xe7,0x62,0xcb,0xff,0xca,0x82,0xbe,0x33,0x0f,0x67,0x32,0x19,0xf1,0xe2,0x0b,0xcb,0x22,0x9b,0x96, - 0x2d,0xeb,0xfc,0x82,0xfb,0x5e,0xe2,0x7f,0x29,0xc9,0x7a,0x1f,0x88,0xfe,0x02,0x33,0x94,0x47,0xb7,0x36, - 0x1a,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x5a,0x69,0x5b,0xe3,0x38,0x12,0xfe,0x2b,0xee, + 0xec,0xee,0x13,0xd8,0x6e,0x72,0x11,0xe8,0x86,0x25,0xec,0x38,0x17,0xb9,0xc9,0x0d,0xc9,0x37,0xd9,0x56, + 0x6c,0x11,0x5f,0x58,0x72,0x42,0xba,0x67,0xfe,0xfb,0xca,0xb7,0xe2,0xd8,0x49,0x7a,0xfa,0x99,0x67,0x87, + 0x0f,0x18,0xa9,0x4a,0x55,0x6f,0x95,0xab,0x4a,0x25,0x99,0x87,0x4f,0xf5,0xe7,0xda,0x74,0x31,0x6c,0x70, + 0x0a,0xd1,0xd4,0xc7,0x07,0xff,0x37,0x04,0xd2,0xe3,0x83,0x06,0x09,0xe0,0x44,0x05,0x58,0x18,0x92,0x4a, + 0x66,0x36,0x6d,0x5e,0x7d,0xcb,0x3c,0x3e,0x10,0x44,0x54,0xf8,0xf8,0x90,0xf7,0x9f,0x2e,0x93,0x0e,0x34, + 0x58,0xc9,0x10,0x05,0x6a,0xf0,0x4a,0x34,0x54,0xc3,0xca,0x70,0xa2,0xa1,0x13,0xa8,0xd3,0x75,0xff,0x28, + 0xb8,0x3f,0x99,0x3d,0xd6,0x0d,0x82,0x5b,0xd3,0xb0,0x08,0xc3,0xb7,0x45,0x12,0x51,0x2a,0x12,0xdc,0x20, + 0x11,0x5e,0xb9,0x83,0x2f,0x48,0x47,0x04,0x01,0xf5,0x0a,0x8b,0x40,0x85,0x95,0x22,0x15,0xa1,0x22,0x7d, + 0xcd,0x59,0x50,0xad,0x64,0x30,0xd9,0xa9,0x10,0x2b,0x10,0x52,0x19,0x8a,0x05,0x57,0x95,0x8c,0x60,0xeb, + 0x92,0x0a,0x73,0x22,0xc6,0x94,0x11,0x8b,0x16,0x32,0x09,0x87,0x2d,0x31,0x24,0xbc,0x39,0xf3,0x79,0x8f, + 0x40,0xff,0xf0,0x6c,0x14,0x0c,0x69,0xf7,0xf8,0x20,0xa1,0x0d,0x87,0xa4,0x4a,0x06,0x98,0x66,0xc6,0x1b, + 0x6d,0xae,0x44,0xd5,0x00,0xeb,0x88,0xe4,0xe0,0x04,0x48,0x87,0x96,0xcf,0x20,0xaa,0x00,0xe3,0x4a,0xc6, + 0x91,0xe2,0xce,0x21,0x4d,0xf6,0xb4,0x49,0x80,0x80,0x7b,0xa4,0x01,0x19,0xe6,0x4d,0x5d,0xfe,0x8f,0x00, + 0x30,0xbc,0x2d,0x7f,0x41,0xf3,0xea,0xf3,0x78,0x5b,0xe8,0x3e,0xc9,0x06,0x4f,0x7f,0x06,0x93,0x99,0xd2, + 0x98,0xc9,0xf4,0xaf,0xba,0x33,0xe4,0xb7,0x35,0x7e,0x41,0x1f,0xd5,0x57,0x7e,0xa3,0xb5,0x9c,0x89,0xa7, + 0xd7,0x71,0xf3,0xa5,0x35,0x9e,0x0a,0xa5,0x65,0x41,0x2a,0x35,0x77,0xcb,0x51,0xb5,0xba,0x7c,0xba,0x43, + 0xcb,0x49,0xb5,0x23,0xbc,0x34,0xf5,0xe5,0xbc,0xa3,0x2e,0x5e,0xc6,0x37,0xa2,0xa8,0xaa,0x43,0x67,0xc1, + 0x6b,0xb5,0x33,0x6e,0x34,0x67,0x70,0x60,0xe1,0x17,0xa9,0x31,0x90,0xdf,0xf8,0x51,0x4f,0x5c,0x54,0x45, + 0x7e,0x28,0xf2,0x35,0x69,0x34,0x28,0xf3,0x83,0x52,0xbf,0x56,0x96,0xc7,0x78,0xd1,0xb9,0x6b,0x0c,0x24, + 0x7e,0xb8,0xe0,0xeb,0x80,0xaf,0x43,0x53,0x9a,0x29,0xfd,0xe2,0x7b,0xf3,0xcd,0xb6,0x64,0xf3,0x6e,0x22, + 0xf6,0x5b,0xb2,0xf4,0xb5,0x78,0x3d,0xbf,0x5e,0x91,0x99,0x79,0x03,0x5b,0x72,0xbf,0x59,0xb4,0xac,0xa7, + 0x06,0xb0,0x6f,0xe7,0xad,0x7a,0xa9,0xd5,0x17,0x5a,0x37,0xef,0x9d,0xe7,0x5e,0xcb,0x02,0x9f,0x57,0xeb, + 0xef,0x02,0x5e,0x8c,0xb1,0xd2,0xff,0x66,0xf6,0xa6,0xf2,0xac,0x2d,0x4f,0xe4,0x8d,0xdd,0xef,0x1b,0x8b, + 0xed,0x67,0xd4,0x5f,0x4c,0xad,0xdb,0x91,0x32,0x58,0xf4,0xad,0x01,0x1a,0xec,0xb6,0xed,0x9e,0xba,0x9b, + 0x77,0x25,0x71,0xb7,0x1b,0x62,0x4d,0x1c,0xe3,0xdd,0xec,0xa6,0xb0,0x96,0x5b,0x64,0x34,0xb2,0x4b,0xbc, + 0x34,0xe8,0x34,0xcd,0xfa,0x9a,0xef,0x96,0xdb,0xf9,0x5e,0xfb,0xa5,0x2f,0x94,0x78,0xdc,0xae,0x8a,0xef, + 0x05,0x34,0x7e,0x82,0xa3,0xa7,0xe1,0x74,0xb9,0x9a,0xdf,0x8e,0x1a,0x85,0xcf,0x72,0xfd,0xa9,0x59,0xb2, + 0x0c,0xfc,0xd4,0x90,0xfb,0xa3,0x8f,0x36,0xaf,0xe8,0x4b,0x1e,0x0d,0x07,0xdf,0xca,0xb6,0x39,0x5e,0x15, + 0xf2,0xcf,0xaa,0x89,0x7b,0xb5,0xaa,0x79,0xbd,0x7b,0x2f,0x88,0x8a,0x4c,0x6a,0xb3,0xd9,0xd2,0x1a,0x6f, + 0x6f,0x47,0xf5,0xe7,0xeb,0xc6,0x4b,0x6b,0xf2,0xde,0xbc,0x23,0xc0,0x5a,0x82,0x49,0xb7,0xf3,0x0a,0x3b, + 0x75,0x49,0x18,0xa9,0xb8,0x51,0xe8,0xd6,0x6f,0x3b,0x83,0x7c,0xd7,0x18,0xe3,0x27,0xe5,0xe3,0xb5,0x5b, + 0x53,0x6b,0xdd,0x56,0xa7,0xbd,0x5a,0x4f,0x95,0x6d,0xff,0x45,0xe1,0x6f,0xa5,0xea,0xc4,0x50,0xc7,0xe8, + 0x6d,0xdd,0x79,0x96,0x8a,0xcb,0xd9,0xe6,0x6e,0x37,0xba,0x7b,0x36,0xdf,0x85,0x96,0x89,0xc0,0x6c,0x0e, + 0x1a,0xc2,0xb2,0xf1,0x95,0xb4,0xdb,0x6f,0x46,0xb5,0xfb,0xba,0xc3,0x06,0x2e,0x8a,0xe5,0xf9,0x37,0x28, + 0xf4,0x1a,0x92,0xb0,0x29,0x09,0x62,0x1f,0x37,0xbe,0xca,0x6f,0x76,0x55,0xda,0xbc,0x8e,0x27,0x9d,0x72, + 0xf3,0x73,0x7e,0xfb,0xde,0x7e,0x7d,0xb5,0xda,0x4f,0x5b,0xed,0xf5,0xfa,0xfb,0x16,0x88,0xbd,0xba,0x02, + 0x07,0xcf,0x77,0xc5,0xe7,0xb7,0xde,0xa8,0x2b,0x15,0xcb,0xf3,0x7e,0xbd,0xa6,0x2f,0xe4,0xda,0xc7,0xfc, + 0xad,0x7d,0x3d,0x98,0xc2,0xa2,0x36,0x31,0x86,0xf5,0xf2,0xdd,0x47,0x79,0x62,0xd1,0xe0,0xb8,0x7b,0x1f, + 0xea,0x65,0x68,0x6c,0x6a,0x7d,0x37,0x7a,0x1a,0x6a,0x73,0xba,0x9e,0xd8,0x23,0xad,0x56,0xa3,0x91,0xa8, + 0x14,0x1f,0x7f,0xfc,0xe0,0xfe,0x49,0x2e,0xb2,0x6e,0x8a,0x66,0x2f,0xb9,0x3f,0xfe,0xa0,0xe1,0x5e,0xa4, + 0x94,0x92,0x43,0xd9,0x40,0x0b,0x23,0x43,0xcf,0xe1,0x1d,0x26,0x50,0x6b,0xd7,0xb9,0x4f,0x95,0x0a,0xa7, + 0xdb,0xaa,0xca,0xfd,0xd7,0x5d,0x15,0xcc,0xd3,0x85,0x9f,0xb9,0xec,0x3d,0x97,0xa5,0x8f,0x83,0x35,0x74, + 0x3a,0xeb,0xc9,0x2d,0xed,0xe5,0xc3,0x16,0xad,0x10,0x26,0x80,0xd8,0x78,0x3f,0x4f,0x68,0xfa,0xe8,0x50, + 0x24,0x54,0xc6,0xfe,0x3c,0xd2,0x25,0x24,0x02,0xe2,0x54,0x8c,0x7b,0x27,0x73,0xae,0xbc,0xc5,0x9e,0xa0, + 0x89,0xfb,0x77,0x0e,0x98,0x39,0xa8,0x03,0x41,0x85,0x12,0x45,0x98,0xf5,0x25,0x41,0x29,0xeb,0x80,0x90, + 0x10,0x8e,0x26,0x9c,0xfc,0xa6,0xb2,0x03,0xf3,0x59,0x11,0xa2,0x08,0x31,0x36,0x0d,0xa4,0x93,0x5c,0xe4, + 0x15,0x8e,0x32,0xa6,0xe9,0xd9,0x9f,0x47,0x26,0x55,0x76,0x44,0x26,0x85,0xe1,0x2e,0xf4,0x9d,0xed,0x80, + 0xf8,0x25,0xeb,0x65,0x48,0x5e,0x50,0xd3,0xd5,0x44,0x17,0x79,0x0a,0x2f,0x2e,0xd3,0xed,0xc3,0x1e,0xa3, + 0x66,0x48,0x30,0x66,0x5f,0x92,0xa4,0x29,0xfc,0x20,0x17,0x0c,0x52,0xf6,0xb7,0x57,0xfc,0x10,0xad,0xa7, + 0xb4,0xfe,0x49,0x48,0x97,0x33,0x01,0xd8,0x60,0x1c,0xa8,0xf7,0xc7,0xa1,0x26,0x7f,0xdc,0x0e,0x6c,0xda, + 0xf7,0x84,0x27,0xf3,0x53,0x28,0x84,0x75,0x03,0x01,0x82,0x13,0x2e,0x82,0x4d,0x88,0xa1,0x07,0x93,0xde, + 0x88,0x3a,0xc6,0x1f,0xff,0xe0,0xb2,0xde,0xd4,0x95,0x61,0x13,0xba,0x0f,0x40,0x1a,0x9a,0x80,0xfa,0x74, + 0x03,0xa7,0x40,0xa0,0x31,0xcc,0x65,0x3d,0xe7,0xd1,0xb0,0xcc,0x70,0xbf,0x89,0x2a,0x12,0xd7,0xb4,0xa0, + 0x87,0x0c,0x11,0x3d,0x34,0xc0,0x1b,0xe7,0xa8,0xf6,0x29,0x93,0x28,0x9e,0x92,0x47,0xee,0x97,0xe1,0x10, + 0x0b,0xc9,0x32,0xcd,0x9b,0x74,0x40,0x21,0x47,0x08,0x29,0x98,0xf9,0xcb,0x40,0x45,0x91,0x98,0x0e,0x8b, + 0xe1,0x09,0x81,0x45,0x73,0x7f,0x19,0x34,0xaf,0xb6,0x1c,0x79,0x7d,0x1e,0x3d,0x7a,0x7d,0xee,0x38,0x05, + 0xce,0x41,0xe4,0x31,0xa2,0xd8,0x50,0x78,0x50,0xae,0xe3,0xe1,0xc0,0x16,0xcd,0x6b,0x57,0x04,0xdd,0xdd, + 0x75,0xd3,0x26,0x1c,0xd9,0x99,0xb4,0x77,0xb1,0x68,0x04,0x1b,0x19,0xbf,0x91,0x01,0xaa,0x3a,0x21,0xd0, + 0xc4,0xd4,0xd0,0x0d,0x50,0x6d,0xa7,0x0b,0xb2,0x6c,0x98,0xa1,0x4a,0x9d,0x5c,0x54,0x59,0x06,0xb7,0xc1, + 0xf0,0x47,0x53,0x87,0x89,0xb6,0x33,0x40,0x80,0x6a,0x98,0x5f,0xce,0xe0,0x0a,0xe9,0x8e,0x73,0x32,0xdc, + 0xca,0xb0,0xe2,0xec,0xfb,0x38,0x59,0x9a,0x0f,0xd7,0x95,0xc0,0x98,0xfe,0x53,0xb8,0x57,0x40,0xc5,0xa7, + 0x81,0x37,0x5d,0xae,0xf3,0x91,0xfb,0xfc,0xc9,0xd0,0x5d,0x62,0x0a,0xf6,0x40,0x36,0x56,0x11,0x6d,0xb0, + 0x62,0xbb,0x09,0x7d,0xf1,0x66,0x26,0x78,0xb1,0x01,0x4e,0xda,0xf4,0x99,0x20,0x8c,0x3f,0xd7,0x2a,0x57, + 0x71,0x1f,0x10,0x25,0xb7,0x52,0x0d,0xc3,0xba,0x08,0x78,0xe7,0x0e,0x91,0xcb,0x73,0xa5,0x9b,0x1b,0xee, + 0xdf,0x5c,0xb1,0x50,0x70,0x30,0xfc,0x8b,0x36,0x87,0x54,0x40,0x82,0x76,0xb6,0xf7,0xdb,0xf7,0xa8,0x2e, + 0x53,0x83,0x35,0xa4,0x57,0x32,0x05,0xfa,0x04,0x1f,0x95,0x0c,0x15,0x99,0xd9,0x5f,0x1d,0xfa,0x34,0xa7, + 0xdb,0x9a,0x00,0x19,0xe7,0xcc,0x3d,0x8c,0x07,0xf5,0x37,0xc1,0xca,0x4f,0xd1,0xeb,0xd8,0x5c,0xb9,0x1e, + 0xbe,0x70,0xc8,0x5f,0x38,0xba,0x85,0xc0,0x8f,0x4b,0xfa,0xe0,0xf0,0xb9,0x5e,0x70,0x18,0x73,0x9b,0xff, + 0xaf,0x0b,0x22,0x0c,0x31,0xfb,0x93,0xf7,0xa2,0xfd,0xec,0x65,0xea,0xe6,0x03,0xf5,0x85,0xc6,0xfd,0x86, + 0x6d,0x41,0x43,0x24,0x67,0x5a,0x70,0xe3,0x1e,0x26,0x68,0x23,0xaf,0xee,0xa6,0x3e,0x9b,0xc3,0x85,0xa0, + 0x2a,0xd1,0x63,0x0c,0x9b,0xef,0x51,0xad,0x45,0x1a,0x9c,0x1e,0x66,0x7d,0xd8,0xd2,0x00,0x4b,0x77,0xf7, + 0x41,0xff,0x4d,0x1c,0x6e,0xbb,0x61,0xdb,0xf0,0xfb,0xef,0x5c,0x02,0xd5,0x8b,0x7a,0xa7,0xc6,0x5d,0x27, + 0x14,0x7a,0xaa,0xbc,0x4d,0x8f,0x40,0x96,0x0e,0x09,0xdb,0x3d,0xe4,0x23,0xc8,0x47,0xc1,0x6b,0x86,0xa3, + 0x23,0x0e,0x9f,0x59,0x9d,0x77,0x3c,0x74,0xca,0xa3,0x7b,0x25,0xff,0x98,0x4f,0x6b,0x6c,0x27,0x93,0x04, + 0x8c,0xdd,0x28,0x62,0xa0,0xd8,0xb8,0x11,0x15,0x28,0xae,0x05,0xe3,0xc3,0xaf,0x2e,0x51,0x2b,0xc5,0x54, + 0x20,0x46,0x14,0xcb,0x70,0x46,0xf1,0x61,0xb9,0x0f,0x71,0x31,0xe4,0xfd,0xe2,0xc3,0x66,0x8e,0x72,0x7a, + 0x71,0x2b,0x12,0xe0,0x66,0x0d,0x77,0xc4,0x42,0x3f,0x16,0x92,0xad,0x0b,0x88,0xa7,0x2d,0x0b,0x39,0x0f, + 0x81,0x31,0x2d,0xe0,0xcf,0x5b,0xc5,0x2c,0x8e,0x5b,0xe5,0x63,0xf2,0xd4,0x63,0x24,0x25,0x2e,0xa7,0xf3, + 0xfb,0x4a,0x59,0x4f,0x10,0xda,0x6e,0xfa,0x5e,0x70,0xd6,0x27,0xbb,0xc0,0xa5,0xdc,0x07,0x7d,0x34,0x4d, + 0xb3,0x23,0xfe,0x71,0xb1,0x98,0xd4,0xa0,0xad,0x61,0x25,0xe2,0x09,0x68,0xe9,0x98,0xc2,0xd5,0x2e,0xae, + 0x68,0x94,0x84,0x2d,0xa2,0x9e,0xc2,0x77,0x2c,0x02,0x24,0x45,0x34,0x93,0xe5,0x7b,0x94,0x33,0x6d,0x4f, + 0x8f,0x0d,0x57,0x4c,0x82,0x33,0x9c,0xf9,0x9f,0x8f,0x08,0x67,0xd5,0x41,0x28,0xb0,0xdb,0x82,0x2d,0x18, + 0xa6,0xc3,0x89,0xf7,0x5f,0x0b,0x4a,0xc4,0x80,0x4c,0x20,0x49,0x16,0x4d,0x9c,0x73,0xa2,0x04,0xa5,0xf8, + 0x09,0x9d,0xf4,0x92,0x53,0x80,0xe3,0x8e,0xdd,0x0f,0x60,0x5b,0xa0,0x75,0x56,0x03,0x78,0x9d,0x18,0xc6, + 0x21,0xf5,0xac,0x60,0x8e,0x64,0x25,0x87,0x34,0x43,0xff,0x45,0xd8,0x32,0x20,0x70,0x0b,0x76,0x49,0x98, + 0x7d,0xd2,0x39,0x80,0x03,0x29,0x89,0x68,0x43,0xe2,0x9f,0x81,0xea,0x6d,0x2e,0x0c,0x60,0xc5,0xc0,0xc4, + 0x69,0x34,0x93,0x10,0x07,0xb4,0x53,0x90,0xef,0x4d,0x15,0x88,0x50,0x31,0x54,0xc9,0x69,0x18,0x52,0x84, + 0x0c,0x23,0x9e,0xec,0xa5,0x67,0x66,0xa8,0x3b,0xd1,0xce,0x88,0x7a,0x32,0xe1,0x98,0x68,0xf7,0x4e,0x15, + 0x38,0x6c,0x7e,0xf6,0xa6,0xaf,0x4c,0x0b,0x69,0xc0,0xa2,0xbe,0xf3,0xe0,0x7b,0x1b,0xe7,0x9e,0x02,0x0c, + 0x36,0x6e,0x0b,0x11,0x34,0xdb,0xde,0xd8,0xbf,0x70,0x71,0x37,0xd6,0xaa,0x2b,0x6a,0xe2,0xce,0x53,0xcf, + 0xdc,0xc7,0x29,0xd9,0xcb,0xa8,0x51,0xfa,0xc9,0xcd,0x3d,0x3c,0x38,0xa5,0x6c,0xec,0xb6,0xe9,0x9c,0xca, + 0x9b,0xc8,0xd2,0x68,0xab,0x03,0xfd,0xe0,0x76,0xd7,0xa4,0xec,0xf1,0xfe,0xc9,0x6b,0xe5,0xaf,0x88,0x37, + 0x1f,0xec,0xab,0x5c,0x21,0xd5,0x97,0x18,0x70,0x37,0x9d,0x99,0xbf,0xaf,0x73,0x23,0x27,0x7a,0x6e,0x19, + 0x5a,0x86,0xec,0x14,0x2e,0xf7,0x96,0x6c,0x15,0x9e,0x66,0x62,0x44,0xb7,0x75,0x4e,0x79,0x39,0x47,0xba, + 0xa9,0x89,0xe7,0xe5,0xb3,0x3d,0xae,0x13,0xf3,0x6f,0xd7,0xa8,0x32,0x59,0xaf,0x02,0x12,0x3f,0x9d,0x53, + 0xc4,0x3d,0x40,0xce,0xa9,0x4e,0xce,0xe2,0x28,0x63,0xfd,0xe5,0xae,0xc4,0x3d,0x15,0xcc,0x05,0x14,0xa3, + 0xc2,0xbf,0x86,0x3a,0xa5,0xc2,0x73,0x4e,0x4c,0x45,0xfc,0x36,0x2a,0x6d,0x67,0x53,0x0d,0xd1,0xef,0xe1, + 0x92,0xf6,0xe0,0x04,0x50,0x3e,0xff,0x59,0xc8,0x42,0xd9,0x21,0xbc,0x70,0x2a,0xe5,0x6a,0x85,0xdb,0xbf, + 0x4e,0x09,0x2e,0x4d,0xa2,0x08,0xc3,0x10,0x58,0xa2,0xd2,0x0b,0x25,0xb3,0x19,0xe3,0x92,0x68,0xac,0x84, + 0xd4,0x74,0xf8,0x13,0x97,0x37,0xf1,0x76,0xe5,0x20,0x3e,0x4d,0xa4,0xe3,0x78,0x80,0xb2,0x2d,0x1b,0xd2, + 0x7b,0x8d,0x3a,0x3f,0x8c,0x6b,0x0b,0xe6,0xd3,0x3d,0xe5,0x1d,0x1b,0xfd,0x66,0x2d,0x90,0x72,0x78,0xa8, + 0x8c,0x50,0xe4,0xa8,0x9d,0x8e,0xa2,0x43,0xf5,0x93,0x29,0x9f,0xac,0x9f,0x12,0x7e,0x06,0x80,0x23,0xe7, + 0x14,0x02,0x57,0x57,0x0c,0x02,0x3f,0xf4,0x6a,0x4e,0x02,0x88,0x80,0x74,0x36,0x8c,0x50,0xd6,0x51,0x20, + 0xc0,0x0c,0x34,0xc6,0xa0,0x0c,0x5f,0xfa,0x75,0x8b,0x6e,0x14,0xd6,0xa4,0x9e,0xe4,0x13,0x96,0x7c,0x36, + 0xa4,0x3d,0x99,0x47,0x61,0x99,0x5b,0xcd,0xd5,0x9b,0x0a,0xaa,0xd6,0x3b,0x0a,0xaa,0xd6,0xfb,0x13,0xa0, + 0xa8,0xcc,0x93,0xa0,0x1c,0xbd,0x7b,0xa0,0xb6,0x1a,0xef,0x75,0xaf,0x07,0x78,0x42,0xca,0x99,0x50,0x22, + 0x49,0xa9,0x28,0x18,0x65,0x31,0x10,0x4d,0x0b,0xbe,0xdb,0x50,0x17,0x77,0x09,0x30,0x42,0xda,0xd9,0x40, + 0x22,0x69,0x47,0xa0,0x30,0x2a,0x0f,0xb3,0x5d,0x03,0xe6,0xb1,0x6c,0x77,0xc8,0xfc,0xb0,0xdd,0x85,0x07, + 0x78,0x23,0xca,0x79,0x68,0x19,0x49,0x69,0x58,0x59,0x65,0x5c,0xfa,0x01,0xe7,0x80,0x5b,0x39,0x72,0xc4, + 0xf9,0x5b,0xf5,0x25,0x69,0x4d,0xdf,0xe1,0xb7,0x26,0x95,0x16,0xec,0x15,0xfa,0x48,0xbf,0x57,0xf4,0x3f, + 0xe6,0x31,0xbd,0xb9,0xb9,0xa3,0xbb,0xbc,0xe2,0x3b,0x42,0xb0,0xd8,0xaf,0x84,0xfe,0x33,0xfe,0x91,0x30, + 0xe8,0xe6,0xe6,0x1e,0xd9,0xfd,0x56,0x18,0x5f,0x12,0x7e,0x23,0x3c,0xb8,0xd8,0xf3,0xbf,0xce,0xab,0x40, + 0x97,0x6d,0x20,0x53,0xd7,0xbc,0x81,0x0d,0xf0,0x26,0x33,0x8f,0xb4,0x17,0xc7,0x86,0x0a,0x73,0xaa,0x21, + 0x5f,0x64,0xda,0xde,0xbf,0x00,0xa0,0xef,0xd4,0x43,0xb9,0x5c,0x2e,0x73,0xf9,0x85,0x36,0x29,0x16,0xe1, + 0x4d,0xf3,0xe2,0x92,0xf9,0x98,0xef,0x7d,0xc6,0xcf,0xbb,0xff,0xbd,0xf0,0x3f,0x97,0x68,0xfa,0x3c,0xd3, + 0x20,0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index 074bee5..d1a87ce 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,11 +4,11 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xd2,0x2e,0xfc,0x57, - 0x24,0x5c,0x5f,0x19,0x18,0xb5,0x68,0xc9,0x49,0xe6,0x9d,0x80,0x46,0x78,0xbd,0x26,0x4e,0xbc,0x8d,0xed, - 0x2c,0x33,0x8a,0x5e,0x1d,0x88,0x6c,0x49,0x88,0x49,0x80,0x01,0x40,0x2d,0x91,0x78,0x7f,0xfb,0x57,0x4f, - 0x55,0x6f,0x00,0x21,0x27,0xf3,0x9e,0x7b,0xbe,0xe3,0x63,0x11,0xe8,0x6e,0xf4,0x5a,0x5d,0x5d,0x7b,0x6f, - 0x9f,0xae,0xca,0x69,0x5b,0x54,0x65,0xdc,0x2a,0x9d,0xdc,0x44,0xd5,0xc9,0x6f,0x7a,0xda,0x46,0x59,0xd6, + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb2,0x36,0xfc,0x57, + 0x24,0xbc,0xbe,0x32,0x30,0x6a,0xd1,0x92,0x93,0xcc,0x9d,0x80,0x46,0xf8,0x7a,0x4d,0x3c,0xf1,0x36,0xb6, + 0xb3,0xcc,0x28,0xba,0x3a,0x10,0xd9,0x92,0x10,0x93,0x00,0x03,0x80,0x5a,0x22,0xf1,0xfd,0xed,0x5f,0x3d, + 0x55,0xbd,0x01,0x84,0x9c,0xcc,0x9c,0x7b,0xbe,0xe3,0x63,0x11,0xe8,0x6e,0xf4,0x5a,0x5d,0x5d,0x7b,0x6f, + 0x9f,0xae,0xca,0x69,0x5b,0x54,0x65,0xdc,0x2a,0x9d,0xdc,0x44,0xd5,0xc9,0xaf,0x7a,0xda,0x46,0x59,0xd6, 0x5e,0x2f,0x75,0x75,0xba,0xa5,0xaf,0x96,0x55,0xdd,0x36,0x3b,0x3b,0x1b,0x39,0x8b,0x6a,0xb6,0x9a,0xeb, 0x89,0xfc,0x8c,0x4c,0xb9,0x4c,0xc7,0x49,0x1a,0xd9,0x3a,0x7d,0xe1,0x99,0x3e,0x2d,0x4a,0xbd,0xb3,0x23, 0xbf,0xa3,0x7c,0x31,0x9b,0xc8,0x63,0x7c,0x78,0x44,0xed,0xa6,0x77,0xb5,0x3b,0x31,0xbf,0xa3,0xfc,0xaa, @@ -20,14 +20,14 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x47,0x8b,0x8c,0x26,0x7f,0x34,0xcd,0x4a,0xfa,0xbb,0xcc,0xa2,0x48,0xe9,0x78,0x9f,0x06,0x77,0x18,0xae, 0x8d,0x2a,0x93,0x9b,0xd6,0x4d,0x73,0x19,0x1f,0x24,0x6b,0xd5,0xcf,0x8f,0x56,0x8d,0xde,0x6a,0xda,0xba, 0xa0,0x99,0x1c,0xbb,0x71,0xd7,0x98,0x05,0x34,0xaa,0xb3,0x52,0x5f,0x6e,0xe5,0xf4,0xaa,0xca,0xac,0x8a, - 0xf3,0xd1,0xb2,0xae,0xda,0x0a,0x13,0x3e,0xaa,0xf5,0xef,0x2b,0xdd,0x00,0x04,0x6c,0xaf,0xd0,0xdf,0x56, + 0xf3,0xd1,0xb2,0xae,0xda,0x0a,0x13,0x3e,0xaa,0xf5,0x6f,0x2b,0xdd,0x00,0x04,0x6c,0xaf,0xd0,0xdf,0x56, 0x97,0xb3,0xb8,0x54,0x41,0x41,0x19,0x95,0xcb,0xa1,0xb7,0x72,0x6d,0xa6,0x2d,0x7e,0x98,0xa8,0x8a,0x7e, - 0xbe,0x48,0x54,0x4e,0x3f,0x5f,0x25,0x0a,0xdd,0xfc,0x7b,0xa2,0xa6,0x59,0x1d,0x37,0xc9,0x78,0x3a,0x7a, + 0xbe,0x48,0x54,0x4e,0x3f,0x5f,0x25,0x0a,0xdd,0xfc,0x6b,0xa2,0xa6,0x59,0x1d,0x37,0xc9,0x78,0x3a,0x7a, 0xcc,0xeb,0x96,0xab,0xe9,0x68,0x5a,0xeb,0xbc,0xd5,0x59,0xb8,0x4c,0xa6,0xd9,0x9a,0x66,0x73,0xa1,0xeb, 0x33,0x1d,0x37,0xaa,0x4d,0x68,0x8c,0xd3,0xd1,0xd3,0xbc,0x9c,0xea,0x39,0x1a,0xa0,0xaa,0xed,0xeb,0xc7, 0xea,0x93,0x2e,0x91,0xf6,0x25,0xd2,0x8a,0xc6,0x17,0xda,0x47,0x02,0x2d,0xcb,0x50,0xed,0xef,0xea,0x6a, 0x51,0x34,0x1a,0xd9,0x94,0x8a,0xca,0x9b,0x25,0x75,0x65,0x86,0xef,0xa8,0xc3,0x7e,0x7e,0xa7,0xfe,0x79, - 0x44,0x80,0x9a,0xaf,0xe6,0x6d,0x36,0xfd,0x8f,0x26,0x5c,0x5a,0x8c,0x0e,0x05,0xb0,0xb7,0x1e,0xd7,0x75, + 0x44,0x80,0x9a,0xaf,0xe6,0x6d,0x36,0xfd,0xb7,0x26,0x5c,0x5a,0x8c,0x0e,0x05,0xb0,0xb7,0x1e,0xd7,0x75, 0x7e,0x7d,0x44,0xf0,0x9d,0xad,0x04,0x68,0xa8,0x79,0xf7,0x41,0x11,0x74,0xb1,0x5c,0xcd,0xe7,0xdb,0xb4, 0x0d,0x06,0x76,0x5c,0xeb,0xbf,0xa8,0x06,0x9a,0x78,0x61,0x32,0xef,0x6a,0x25,0x97,0x2d,0x8e,0x1d,0xe0, 0xda,0xb8,0xa8,0x8a,0xd9,0xd6,0x3e,0x9e,0x13,0x4a,0xb7,0x2d,0x6e,0xbb,0x16,0x77,0x76,0xe2,0x36,0x3b, @@ -39,14 +39,14 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xcf,0xc6,0x7e,0x61,0x6f,0x8a,0x86,0x97,0x82,0xb6,0xb4,0x79,0x7a,0xb2,0x3a,0x3d,0xd5,0x75,0xba,0x09, 0x2d,0xdd,0xb5,0x93,0x62,0xbd,0xb9,0xa5,0x3a,0xcc,0xe7,0x53,0x7a,0x7c,0x51,0xd5,0x8b,0x67,0x79,0x9b, 0x0f,0xd5,0xb5,0x2a,0x05,0xdf,0xcd,0xfc,0xe4,0xda,0xe2,0x3b,0x3b,0x2d,0x4d,0x4a,0xd3,0x02,0x82,0x83, - 0xe4,0x75,0xb7,0x83,0x3f,0x15,0xfa,0xf2,0x2f,0x56,0x1c,0x7c,0xb5,0xb3,0x13,0xbc,0xd0,0x36,0x41,0x2d, + 0xe4,0x75,0xb7,0x83,0x3f,0x16,0xfa,0xf2,0x4f,0x56,0x1c,0x7c,0xb5,0xb3,0x13,0xbc,0xd0,0x36,0x41,0x2d, 0x93,0xcd,0x24,0xaa,0x2f,0xa5,0xb5,0x6e,0x47,0x27,0xe6,0x2b,0xfb,0x14,0x76,0x2c,0xf8,0x0c,0x7d,0x93, 0xa9,0x1d,0xea,0x52,0xc3,0x39,0x21,0xdc,0x52,0xf1,0x37,0xab,0xc5,0xc9,0xf0,0x34,0x97,0x9c,0xd3,0x2b, - 0x2e,0x6b,0x99,0x12,0x42,0x6d,0x7e,0xb4,0x23,0x1c,0xf8,0x78,0x4b,0x00,0x98,0x16,0x85,0xbf,0xa2,0x79, + 0x2e,0x6b,0x99,0x12,0x42,0x6d,0x7e,0xb0,0x23,0x1c,0xf8,0x78,0x4b,0x00,0x98,0x16,0x85,0xbf,0xa2,0x79, 0xd3,0x9f,0x5b,0x49,0xe4,0x6f,0x2e,0xe1,0x8b,0x62,0xfe,0xd9,0xaf,0x90,0x3f,0xb0,0xf0,0xf3,0xea,0xe4, 0x73,0x5f,0x21,0x7f,0xa0,0x2d,0xf3,0x41,0x5a,0xc9,0x14,0xea,0x7c,0x31,0x34,0x2c,0x60,0x84,0x9d,0x1d, - 0xda,0xe5,0xa3,0x65,0xb1,0xd4,0xfc,0xe5,0x8f,0xef,0x5f,0x7d,0xd0,0x79,0x3d,0x3d,0x7f,0x97,0xd7,0xf9, - 0xa2,0xf9,0x8b,0xb0,0xd0,0xfb,0xaa,0x07,0x6b,0xbd,0x5c,0x59,0xd6,0xbc,0x9c,0xe5,0xf5,0xec,0x49,0x5d, + 0xda,0xe5,0xa3,0x65,0xb1,0xd4,0xfc,0xe5,0x0f,0xef,0x5f,0x7d,0xd0,0x79,0x3d,0x3d,0x7f,0x97,0xd7,0xf9, + 0xa2,0xf9,0x93,0xb0,0xd0,0xfb,0xaa,0x07,0x6b,0xbd,0x5c,0x59,0xd6,0xbc,0x9c,0xe5,0xf5,0xec,0x49,0x5d, 0x5d,0x36,0xba,0x7e,0x5e,0x5e,0xa4,0x1b,0xe7,0x6b,0x1c,0xb4,0xe4,0x96,0xad,0xcc,0x2f,0x8a,0xb3,0xbc, 0xad,0xea,0xdb,0xdb,0xe8,0xbd,0xce,0xa7,0xed,0x9b,0xbc,0x2d,0x2e,0x34,0x75,0x25,0x73,0x59,0xd8,0x9b, 0xb3,0xd5,0x14,0x63,0x1b,0xea,0xec,0x65,0x51,0xce,0xaa,0xcb,0xe1,0xbc,0x59,0x35,0x5d,0x2d,0x74,0x49, @@ -55,17 +55,17 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x7b,0x8c,0x47,0x94,0x40,0xcd,0x68,0x2f,0xaf,0xcf,0xb8,0x27,0x8d,0x45,0x7f,0x35,0xa1,0xbf,0x9a,0xd0, 0x5f,0x1e,0xbb,0x2c,0xa9,0xc4,0x9e,0xa5,0xe5,0x5a,0xc9,0x91,0x99,0xf6,0x0f,0x10,0x53,0x20,0xa7,0xce, 0xba,0x2c,0xee,0x37,0xa8,0x8b,0xac,0xa4,0x8e,0x6e,0xd2,0x52,0x7a,0xd2,0xc4,0xf8,0x38,0xd5,0x6b,0x3a, - 0xb2,0xd6,0x8a,0x76,0xdb,0x20,0x0c,0xb5,0x74,0xaa,0x2f,0xe7,0xf9,0x54,0xc7,0x0f,0xfe,0xfb,0xd7,0xe6, - 0x6f,0x0f,0x54,0x14,0x25,0x3e,0x89,0x52,0xee,0x71,0xd2,0x7a,0xdd,0x3d,0xd7,0x7a,0xa7,0x9a,0x47,0x9d, + 0xb2,0xd6,0x8a,0x76,0xdb,0x20,0x0c,0xb5,0x74,0xaa,0x2f,0xe7,0xf9,0x54,0xc7,0x0f,0xfe,0xe7,0x97,0xe6, + 0x2f,0x0f,0x54,0x14,0x25,0x3e,0x89,0x52,0xee,0x71,0xd2,0x7a,0xdd,0x3d,0xd7,0x7a,0xa7,0x9a,0x47,0x9d, 0xdd,0x42,0x7d,0x4a,0x8b,0xa6,0xde,0x4d,0x15,0xc8,0x0c,0xc6,0x16,0x71,0x7f,0xae,0x12,0xcc,0x21,0x4d, 0x58,0xe9,0xe6,0x8e,0xe6,0x8d,0xa7,0x3a,0x9c,0x3a,0x47,0x62,0x8d,0xf2,0xe5,0x72,0x7e,0xcd,0xa3,0xdd, 0xec,0xa6,0x5b,0xea,0x60,0xd0,0xdb,0xdb,0xed,0x68,0x5a,0x11,0x80,0xd7,0x04,0x65,0x55,0x3d,0x38,0x7f, 0x9d,0x12,0x23,0x8b,0xc1,0x81,0xf3,0x86,0xd2,0xb1,0x6f,0x87,0xe6,0xa0,0x77,0x60,0xe3,0xa4,0x44,0xea, 0xed,0x6d,0xac,0x89,0x9a,0x1b,0x5a,0xb6,0x11,0x28,0x8d,0x17,0x44,0x11,0xb6,0xaf,0x9e,0x0f,0x2f,0xec, 0xa8,0x99,0x17,0x53,0xa2,0x92,0x09,0x06,0xe4,0x31,0xde,0x57,0xfb,0x49,0x42,0x95,0x62,0x5c,0xc7,0xb6, - 0x4b,0x09,0x53,0xaa,0x7a,0xfd,0x1f,0xd1,0x23,0xa0,0x94,0x2d,0x29,0xd3,0x50,0x0f,0xf9,0xbd,0x28,0x5b, + 0x4b,0x09,0x53,0xaa,0x7a,0xfd,0x6f,0xd1,0x23,0xa0,0x94,0x2d,0x29,0xd3,0x50,0x0f,0xf9,0xbd,0x28,0x5b, 0x5d,0x4f,0xf5,0x92,0x06,0x4c,0x47,0xa3,0x21,0x02,0x53,0xa6,0x12,0x55,0xad,0x9b,0x25,0xcd,0x87,0x96, - 0xd7,0xb5,0x23,0xf3,0xfe,0x2e,0x64,0xde,0x43,0x21,0xf3,0x0e,0xfe,0x4b,0xe8,0xbc,0x83,0x7f,0x10,0xb4, + 0xd7,0xb5,0x23,0xf3,0xfe,0x2a,0x64,0xde,0x43,0x21,0xf3,0x0e,0xfe,0x5b,0xe8,0xbc,0x83,0xbf,0x11,0xb4, 0x6f,0x12,0x94,0x9d,0x09,0xdb,0x3c,0x18,0x98,0xbc,0xa8,0x0c,0xc1,0x77,0xb3,0xaa,0xe7,0xa9,0x07,0x83, 0xfd,0xa3,0xb5,0xf2,0x6f,0x07,0x47,0x49,0xa2,0x82,0xc2,0x85,0xea,0x0c,0x48,0xdd,0x2c,0x74,0x7b,0x5e, 0xcd,0xd2,0xe8,0x4c,0xb7,0xd1,0x1a,0xa4,0xe3,0x48,0x52,0x88,0x4a,0x91,0x07,0xa2,0x06,0x5e,0x55,0x97, @@ -77,2087 +77,2116 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xc3,0x68,0xa6,0xe7,0xba,0xd5,0x91,0xe2,0xa9,0x53,0xd1,0x39,0x41,0x29,0xfd,0x54,0x4b,0x34,0xdf,0x44, 0x47,0xaa,0x03,0xf3,0x7e,0x89,0x89,0x2a,0xcc,0x02,0x9c,0xe5,0x91,0x19,0x8f,0xce,0x4c,0x51,0x6c,0xd7, 0xab,0xbc,0xbd,0x25,0x04,0x6a,0x57,0xa9,0x55,0x58,0x6b,0xc2,0x5f,0xb4,0xad,0x93,0x4e,0x67,0x96,0x55, - 0x83,0x4e,0x2c,0x57,0xfc,0x37,0x6f,0xa7,0xe7,0x7f,0xbd,0x07,0xc0,0x9b,0x9f,0xeb,0x43,0x3d,0xd4,0x07, - 0x35,0x03,0xc5,0x56,0x9a,0xae,0xf8,0x9d,0x5e,0xff,0x07,0xbb,0x0b,0xd8,0x68,0xbb,0x18,0x05,0xa4,0x0a, + 0x83,0x4e,0x2c,0x57,0xfc,0x37,0x6f,0xa7,0xe7,0x7f,0xbe,0x07,0xc0,0x9b,0x9f,0xeb,0x43,0x3d,0xd4,0x07, + 0x35,0x03,0xc5,0x56,0x9a,0xae,0xf8,0x9d,0x5e,0xff,0x1b,0xbb,0x0b,0xd8,0x68,0xbb,0x18,0x05,0xa4,0x0a, 0x1f,0xdf,0xbd,0x94,0xc3,0xe8,0x69,0x45,0x6b,0x5e,0xb6,0x7b,0x1f,0xa9,0xf3,0xd1,0x51,0x02,0xe8,0xef, - 0x27,0x66,0x3a,0xe9,0x33,0x54,0xff,0x85,0x9d,0x76,0xd3,0x2d,0x97,0x46,0xc0,0x8c,0xc5,0x34,0x47,0x17, + 0x27,0x66,0x3a,0xe9,0x33,0x54,0xff,0x8d,0x9d,0x76,0xd3,0x2d,0x97,0x46,0xc0,0x8c,0xc5,0x34,0x47,0x17, 0x1e,0x5c,0xed,0x5d,0x5e,0x5e,0xee,0xd1,0x24,0x2e,0xf6,0x68,0x4c,0xba,0x9c,0x56,0xc4,0x74,0xd2,0x2e, - 0xa0,0x3d,0x9d,0xcf,0xf2,0x65,0x1b,0xd2,0x5d,0xc2,0x0a,0xb6,0xe3,0xbb,0x49,0x86,0x5f,0x5e,0xbf,0xfa, - 0xae,0x6d,0x97,0xef,0x65,0xf6,0x26,0x2d,0x75,0xe1,0x1f,0xc4,0xa1,0x0f,0x94,0xa4,0x95,0x98,0xea,0xa6, + 0xa0,0x3d,0x9d,0xcf,0xf2,0x65,0x1b,0xd2,0x5d,0xc2,0x0a,0xb6,0xe3,0xbb,0x49,0x86,0x9f,0x5f,0xbf,0xfa, + 0xae,0x6d,0x97,0xef,0x65,0xf6,0x26,0x2d,0x75,0xe1,0x6f,0xc4,0xa1,0x0f,0x94,0xa4,0x95,0x98,0xea,0xa6, 0xe1,0x5d,0x8c,0x42,0x38,0x8e,0x08,0xe2,0xda,0x3a,0x2f,0x1b,0xf4,0xc6,0x54,0x91,0x1e,0x0e,0x1e,0x1d, 0x15,0xad,0x59,0x77,0x54,0xe0,0x2d,0x3d,0x19,0xcd,0xd8,0x14,0x09,0x01,0xe1,0xe9,0xd2,0x7a,0xaf,0x42, 0x49,0xb9,0x57,0x50,0x6c,0xbe,0x28,0x11,0x62,0xf4,0x32,0x21,0x6a,0x72,0xb4,0x41,0x52,0x73,0x86,0x21, - 0x76,0x39,0xbf,0x47,0x12,0x21,0x3f,0xae,0xd1,0xd3,0x3f,0x9d,0xf0,0xf1,0xf4,0x3c,0xaf,0x1b,0xdd,0x66, - 0xab,0xf6,0x74,0xef,0x1f,0x11,0x80,0xc9,0x32,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0x87,0xeb,0xfc,0xad, - 0xa9,0xca,0x8d,0x2a,0xbe,0xff,0xf0,0xf6,0xcd,0x48,0xd0,0x66,0x71,0x7a,0x0d,0x16,0x2c,0x6d,0xd7,0x47, - 0xe1,0x0c,0x1b,0x24,0x7d,0x18,0xee,0x11,0xb0,0x72,0x1b,0xb8,0x36,0x69,0xeb,0xeb,0x9b,0x36,0xe3,0x1a, - 0x97,0x68,0x05,0x27,0xdb,0x14,0x3b,0x0c,0x9f,0xac,0xed,0xc6,0x41,0xed,0xc5,0x42,0x57,0xab,0x36,0xdd, - 0x57,0x57,0x4d,0x7d,0xfa,0xb4,0xaa,0x3e,0x15,0xfa,0x4d,0xbe,0xd0,0x69,0xf4,0xcb,0x87,0xf7,0x2f,0xf6, - 0x3e,0xbe,0xfd,0xe1,0xf9,0x9b,0x88,0xf3,0xbe,0x23,0x5c,0xa1,0x6b,0x93,0xb7,0x17,0xe6,0x2e,0xf2,0x2b, - 0xb3,0xb4,0xaf,0x18,0x35,0xa5,0x7b,0x07,0xea,0x22,0x9f,0x17,0xb4,0xdb,0x34,0x91,0x98,0xed,0x6a,0x88, - 0x80,0xdd,0x6a,0xbf,0xc9,0x1e,0xee,0xef,0xd3,0x51,0xfc,0xe8,0x8b,0xfd,0xfd,0xf5,0x7a,0xdc,0x8c,0xce, - 0xb9,0x05,0x02,0xe4,0x69,0xb5,0x58,0x10,0xd9,0x7c,0xf3,0x78,0x0a,0x9c,0x99,0x6e,0x4c,0x9d,0xda,0x6a, - 0x89,0xc6,0x7a,0x40,0xd4,0x4d,0x41,0xcf,0x7f,0x7b,0xf0,0xb7,0x88,0xce,0xc7,0xe2,0x4f,0xd0,0x5c,0x17, - 0xb5,0xb8,0xd6,0x80,0x58,0x6e,0x80,0x0e,0x8a,0xff,0x04,0x33,0x75,0x3e,0xb7,0x52,0x8c,0x3c,0xe9,0x60, - 0x95,0xe6,0x4f,0xb0,0x0a,0xf6,0x66,0xcd,0x5b,0xff,0x6e,0xc2,0xcb,0xf5,0xa9,0xf5,0x75,0x09,0xee,0x23, - 0x52,0x9b,0xa8,0x87,0x9a,0xc0,0xee,0xc7,0xe5,0xd2,0x9e,0x74,0xc4,0x81,0xe8,0x6e,0x0a,0xe3,0x1d,0x4d, - 0xe4,0xa5,0x92,0x39,0x61,0x51,0x16,0xf5,0xf3,0xcf,0x08,0x0a,0xdf,0x39,0x05,0xf4,0xf4,0xb5,0xa0,0xa7, - 0x03,0x4b,0x09,0x7c,0x61,0x28,0x81,0x2f,0x85,0x25,0x3f,0xd8,0x07,0x4f,0xfe,0x39,0x32,0x5f,0x7e,0x47, - 0x27,0x6d,0x95,0x77,0x5e,0x46,0x27,0xf4,0x1c,0x4b,0x02,0xed,0x61,0xaa,0xea,0xab,0xe1,0xe9,0xf0,0x34, - 0x18,0x91,0x28,0xe6,0xf4,0x8e,0x83,0x13,0x61,0x2e,0xc8,0xee,0x94,0x68,0x00,0x60,0x79,0xb5,0xa4,0x07, - 0xb3,0x46,0xe3,0x3a,0xc4,0x34,0xa7,0x09,0x44,0x93,0x3c,0x17,0xcb,0x3e,0x46,0xe6,0x61,0xcf,0x98,0xa6, - 0xed,0x62,0x46,0x75,0x9e,0x45,0x55,0x09,0xa2,0xee,0x9a,0x18,0xaa,0x56,0xd3,0xde,0x2d,0xcf,0x08,0xc0, - 0x2e,0xb2,0xed,0x83,0x31,0xb6,0xe0,0x00,0x93,0x24,0x83,0x22,0x7a,0xce,0x0c,0xf7,0x97,0x67,0xd5,0x82, - 0x00,0xd6,0xd4,0x48,0x9c,0xd3,0x65,0xd1,0x9e,0x3f,0xad,0xf5,0x8c,0xda,0x2f,0xf2,0x79,0x13,0x15,0xe5, - 0xd6,0xec,0xf6,0x96,0xd0,0xd0,0x88,0x10,0x0d,0xa8,0x4b,0xe9,0xc9,0xe0,0xe7,0xd2,0x21,0x88,0x1c,0xb9, - 0x13,0xfb,0x6a,0x36,0xaa,0x4a,0xc2,0xd1,0x67,0x44,0x5d,0x04,0xd3,0x46,0x9b,0x9d,0x73,0xcc,0x36,0xef, - 0x64,0x00,0x56,0xf3,0x15,0xd1,0xe9,0x3c,0x71,0x8b,0x4c,0xde,0x46,0x04,0x05,0x75,0x49,0xbb,0x9c,0x3a, - 0x18,0xa9,0x33,0x9b,0xba,0xcc,0x9b,0xe6,0xb2,0xaa,0x67,0x48,0x1d,0x2f,0x47,0x8f,0x29,0xad,0xaa,0x8b, - 0x3f,0x78,0x4f,0x66,0xd1,0x93,0xbc,0x29,0xa6,0x5b,0xd1,0xee,0x2a,0x5e,0xec,0xd2,0x79,0xb5,0x7b,0x96, - 0xac,0x69,0x52,0xa8,0xe1,0x25,0x91,0x27,0x01,0x51,0x16,0x00,0xa6,0xaa,0x64,0x9c,0xd4,0x89,0x25,0x63, - 0x5f,0xf7,0xf0,0x41,0xd7,0x34,0x1d,0xc5,0x1f,0x44,0xfc,0xaa,0x6d,0x02,0x2c,0xfa,0xd0,0xf4,0xbe,0xb5, - 0x4f,0x6a,0x76,0x78,0x7e,0x14,0x0e,0x06,0xad,0x11,0xa8,0x7f,0x49,0x1b,0x60,0xc6,0xb4,0xf7,0x35,0x10, - 0x0f,0x8d,0xe1,0x02,0x3b,0x00,0x42,0xaf,0xd9,0xa8,0x61,0x54,0x74,0x7b,0x3b,0x73,0x14,0x18,0xe1,0xff, - 0x9d,0x9d,0x7d,0xf3,0x8d,0x4b,0x22,0x6a,0x6d,0xa6,0xaf,0xde,0xd2,0xa2,0x9e,0x42,0x58,0x10,0x11,0x51, - 0x7e,0x23,0xbc,0x0e,0xd0,0xc9,0xe3,0xf9,0xdc,0x22,0x62,0xc1,0x88,0xb2,0x6e,0x93,0x9c,0x86,0x3b,0x98, - 0x8d,0xf3,0x80,0x05,0x5a,0x75,0x76,0xc3,0xf4,0x47,0xeb,0x1a,0x03,0xd0,0x11,0x77,0x00,0x64,0x06,0xd6, - 0xb9,0x9b,0x31,0xf1,0x9d,0x4a,0xfd,0xe3,0x47,0x2a,0xab,0x64,0x24,0xe9,0xc1,0xc3,0x87,0x5f,0x64,0x7e, - 0x64,0x93,0x87,0xfb,0x5f,0xa6,0xf6,0xc5,0x94,0x41,0xf1,0x8d,0x72,0xd1,0x9b,0x6a,0xcb,0xc0,0x7d,0xe4, - 0x3e,0xe0,0x8a,0xcd,0x86,0x49,0x4b,0x45,0xec,0xd1,0x69,0x71,0x46,0x84,0x93,0x65,0x14,0x66,0xeb,0x71, - 0x81,0x6d,0x46,0xc8,0x47,0x11,0x5c,0xd2,0x80,0xd6,0x02,0x5a,0xba,0xae,0xab,0x3a,0x5c,0x8b,0x79,0x3c, - 0x8d,0xa3,0x37,0xba,0x25,0x70,0xf9,0xb4,0xf5,0x1c,0xb9,0x91,0x6a,0x15,0x4f,0xc1,0x2c,0x71,0x1f,0xdf, - 0x05,0x96,0xfc,0xb5,0x49,0xdf,0xa2,0x5d,0x14,0xed,0xba,0x55,0xdf,0x8d,0x16,0xcd,0x96,0xbe,0x9a,0x6a, - 0x0d,0x92,0x87,0xea,0x8c,0x9e,0x3f,0x7d,0xfb,0xe6,0xcd,0xe3,0x27,0x6f,0xdf,0x7f,0x7c,0xfe,0x2c,0xea, - 0xd4,0x5e,0x8f,0x86,0xc4,0x1b,0xb1,0x59,0xca,0x6b,0xe0,0x2c,0x62,0x6e,0x8e,0x33,0x02,0xc2,0xde,0x36, - 0xf4,0x3b,0x30,0x01,0x9f,0xd8,0x3d,0x16,0x27,0xd7,0x0c,0x5d,0x71,0x3f,0x3d,0x49,0x85,0xb5,0x18,0x1f, - 0x13,0xb8,0x2d,0x0f,0x25,0xdb,0x9f,0x98,0x47,0xd9,0x31,0xef,0x88,0x88,0xce,0x7b,0xb3,0x81,0x25,0x93, - 0x61,0x07,0x68,0xdc,0xe2,0xf9,0x65,0x8f,0xf1,0x75,0x32,0xaf,0x53,0x02,0x94,0xa9,0x41,0x56,0x40,0x30, - 0x91,0xc1,0xf5,0x01,0x9f,0x33,0x71,0x68,0x4d,0x1f,0x61,0x5d,0x7b,0x6d,0xd1,0xea,0xb5,0x72,0x42,0xf5, - 0x46,0x4c,0x5d,0x9e,0xf5,0xd3,0x32,0xec,0xbc,0x2e,0x40,0x32,0x51,0x31,0xeb,0x24,0xf5,0x40,0xd6,0x90, - 0x18,0x22,0x78,0x8e,0x70,0x52,0x6f,0x82,0x75,0xd2,0x9e,0xd3,0x72,0x10,0x47,0x3b,0xc8,0xad,0x57,0xe5, - 0xb3,0xea,0x92,0xd1,0xda,0x3b,0x83,0xcb,0x08,0x59,0x8f,0xf2,0xd9,0xec,0xf9,0x05,0xc8,0x8b,0xa2,0xa1, - 0xf1,0xd3,0x48,0x22,0x8b,0xe9,0x08,0x0a,0x06,0xbe,0x49,0x86,0x78,0x72,0x14,0xfc,0x71,0xd9,0xaf,0x7a, - 0xc5,0x29,0xfe,0xe9,0x4f,0xdb,0xea,0x56,0x81,0x39,0x9a,0x7a,0x25,0x05,0x0b,0x16,0xfc,0x2b,0xd8,0x17, - 0xe6,0x32,0x99,0x4d,0x0b,0xcf,0xb2,0x19,0xcf,0x79,0x7e,0x42,0x87,0x1c,0xa1,0x42,0x08,0x0c,0x0d,0xe4, - 0x62,0x81,0xc2,0x35,0x8f,0x4f,0x25,0x59,0x61,0x3d,0xe9,0xa4,0x3c,0xfd,0x0f,0xce,0x6e,0x3a,0x95,0xef, - 0xa0,0x2c,0xf0,0x89,0xe1,0x3c,0x46,0xb2,0xd3,0x47,0x5d,0x82,0x6d,0x5c,0x1a,0xb4,0x40,0x9c,0xcd,0xce, - 0xce,0x76,0x11,0xdb,0xf7,0x64,0x42,0xbc,0x55,0x1c,0x19,0xc0,0xda,0x3a,0xcd,0x09,0x45,0xce,0xb6,0x00, - 0x3c,0x5b,0x52,0x60,0x0b,0xf4,0x31,0xed,0x5a,0xfb,0x81,0xb2,0x2d,0x08,0x06,0x28,0x9d,0xfa,0xa9,0x04, - 0x7d,0x1b,0x97,0x7f,0x7d,0x34,0x07,0x77,0x8f,0x46,0x15,0xaa,0x92,0x11,0xe5,0x7c,0x64,0x32,0xd6,0x01, - 0x4f,0xef,0x34,0x4d,0xb9,0x2b,0xf6,0x3f,0x11,0x81,0x81,0xdf,0x54,0x45,0x20,0x6d,0x93,0x21,0x65,0x94, - 0x01,0x02,0x6b,0x84,0x31,0x67,0xa5,0x6c,0x18,0x91,0x85,0xd4,0xc1,0xe6,0xc9,0x0a,0xe2,0x95,0xfe,0x07, - 0x0a,0xa5,0x2d,0x61,0x36,0x7e,0x7c,0xff,0xf2,0x69,0xb5,0xa0,0x9a,0x08,0x2a,0x29,0xd3,0x8b,0xf5,0xfe, - 0xf7,0x97,0xfb,0x0f,0xce,0x0a,0x15,0xfd,0x9f,0x50,0xd6,0xf7,0xbf,0xbf,0x78,0xcc,0x89,0x69,0x27,0xf1, - 0xe1,0x97,0x0f,0xce,0x54,0x74,0xaf,0x9b,0xf6,0x94,0x0b,0xaa,0x6e,0xe2,0x3e,0x0a,0xee,0x76,0xd2,0xbe, - 0x7a,0xc2,0x05,0x0f,0xbb,0x89,0xcf,0x38,0xf1,0x28,0x0a,0x79,0xd8,0xcf,0x80,0x1b,0x61,0x84,0x6d,0x6d, - 0x55,0xb1,0x2d,0xaf,0x6a,0x05,0xca,0xa9,0x4c,0x40,0x58,0x6a,0xa3,0x3a,0xa2,0x84,0x21,0xc6,0x4c,0x27, - 0x54,0x4a,0x07,0x2c,0x16,0x97,0x36,0x0b,0x7e,0x78,0x34,0xf6,0xb4,0xbb,0xee,0x2d,0xee,0x90,0xfa,0x8b, - 0x96,0xcc,0x71,0x87,0xcc,0xbc,0xc7,0x7a,0x37,0x8b,0x0e,0x8f,0x0c,0x4f,0x6a,0xd3,0x89,0x00,0x33,0xfa, - 0xb0,0x62,0x88,0x0c,0x07,0xef,0x35,0x12,0x35,0x04,0x33,0x96,0xa0,0x4e,0xaa,0x97,0x1f,0xde,0xda,0x2e, - 0x76,0x99,0x40,0xe6,0x9b,0x37,0x39,0x3c,0xe8,0x5b,0x21,0xef,0x21,0xe4,0x9c,0xec,0x46,0x59,0xb4,0xcb, - 0xaa,0x37,0x08,0x28,0x40,0x70,0xe7,0xa3,0xdf,0xaa,0xa2,0x8c,0xa3,0x1d,0x9a,0x64,0xcb,0x48,0xa3,0xa2, - 0xdd,0x2c,0xde,0x3b,0x80,0x1e,0xc4,0x93,0x2a,0x93,0x28,0x99,0xd0,0x9f,0x14,0x65,0x77,0xab,0xe4,0xcf, - 0x01,0xae,0x43,0xe0,0x1f,0x46,0x39,0xa8,0xd9,0x28,0x0f,0xc9,0x3a,0x7a,0xb7,0x07,0x8e,0x88,0x9c,0x82, - 0x04,0x3e,0x81,0x54,0xa4,0xdb,0xfc,0x0c,0x3f,0x57,0xcb,0x82,0x80,0x9d,0x9e,0x4e,0x09,0xe1,0x81,0xe1, - 0x12,0xfe,0xa9,0x38,0xdd,0x5b,0x54,0xb3,0xe2,0xb4,0xd0,0xb3,0xbd,0xa6,0x20,0xb4,0x28,0x69,0xab,0x72, - 0x23,0x75,0x9e,0x37,0xad,0x2b,0x8b,0xf7,0x6a,0x6a,0xfb,0x40,0xdc,0x25,0xb8,0xef,0x4b,0x3a,0xc8,0xd1, - 0x02,0xa1,0xd4,0xab,0xeb,0xbd,0x7e,0x47,0x6b,0x4d,0x3c,0x3d,0x1d,0xa7,0x78,0xa2,0x63,0x6a,0x2f,0x3f, - 0x6d,0xf9,0x0d,0xc4,0xec,0x1e,0x8d,0x8d,0x28,0x9d,0xa3,0x3b,0xd8,0x0a,0x16,0x0e,0xd2,0x06,0xaf,0x20, - 0x79,0xf1,0x1a,0x7f,0xe2,0xda,0xfd,0xaa,0x8f,0x1a,0x62,0x40,0xdb,0x38,0xfa,0xb5,0x24,0x18,0xe9,0x71, - 0xdf,0x55,0xb8,0x0c,0xb4,0xeb,0x94,0xce,0x88,0x2b,0xab,0x8b,0x05,0x3e,0x5b,0x9d,0xd0,0x7c,0xc7,0xfb, - 0x84,0x76,0x92,0xee,0x59,0xad,0xca,0x8d,0x52,0xd5,0xee,0x01,0x01,0x84,0x1c,0x9e,0x39,0x1d,0xe1,0x2c, - 0x54,0x32,0x15,0xeb,0xe4,0x9b,0x6c,0xdf,0xec,0x9e,0x31,0x32,0x33,0x90,0x12,0x7b,0x53,0x26,0x40,0x98, - 0x14,0x98,0xf0,0x37,0x13,0xfc,0x49,0x0f,0x8f,0x12,0x60,0x28,0x9a,0xc2,0xf8,0xb0,0x3c,0x4a,0x52,0x97, - 0xb3,0x1b,0x29,0xa0,0xe6,0xb4,0x04,0xc3,0x9b,0x53,0xc6,0x5f,0x87,0x92,0x60,0xf6,0xee,0xa2,0xad,0x26, - 0xa1,0x82,0xc0,0x2b,0x6a,0x9c,0x45,0x42,0xeb,0x84,0x92,0xbc,0x03,0x69,0x00,0x8f,0x5b,0x6a,0xe7,0x64, - 0x45,0x3b,0x28,0x3a,0xa7,0x25,0x8c,0x60,0x64,0x40,0xe8,0x72,0x84,0x17,0x6c,0xbb,0x3b,0x8a,0xdc,0xe0, - 0x29,0x95,0x62,0x8a,0x45,0x84,0xd3,0x6a,0x4e,0xef,0xf6,0x71,0xe2,0x1f,0x3d,0xc6,0x4a,0x45,0x05,0x92, - 0x12,0x57,0x03,0xf0,0xc4,0xe7,0xf4,0xa3,0x1a,0xc6,0x33,0x29,0xda,0xc2,0xc3,0xc4,0x3e,0x84,0x0a,0x95, - 0x89,0xff,0x32,0x6f,0x50,0x16,0x3f,0x13,0xf9,0x09,0xca,0xfd,0xaf,0x4e,0x03,0xe0,0xa1,0x4c,0x23,0x78, - 0x54,0x98,0x3b,0xf4,0x91,0x7e,0xd4,0x32,0x6f,0xcf,0x39,0x3f,0x7a,0x80,0xc5,0xa3,0x54,0x93,0x30,0x82, - 0x50,0xe8,0x71,0x1b,0xef,0x27,0x13,0x9f,0x88,0x52,0xbb,0xfe,0x55,0xc4,0xf3,0xb4,0x56,0xd9,0x83,0x78, - 0xd1,0x14,0xfa,0x96,0x26,0x08,0x64,0x5b,0xf2,0xa0,0x18,0xb5,0x90,0x81,0x7a,0x15,0x1c,0xc0,0xff,0x31, - 0xa0,0x1f,0x9b,0xdc,0x6a,0xd5,0x8c,0x45,0xc6,0xf3,0xb9,0xc6,0x5b,0x1c,0xe5,0x91,0x3b,0x27,0x69,0x8d, - 0x0c,0x2f,0x3e,0xb2,0x3b,0xd0,0xac,0x85,0x97,0x3e,0x58,0xca,0x41,0xa0,0x80,0x71,0x5d,0x49,0xe8,0x8f, - 0xfe,0xa4,0xa5,0x37,0x28,0xb1,0xf3,0xcf,0x54,0xaa,0x7d,0x01,0x44,0x63,0x3e,0x38,0x11,0x0f,0xeb,0x35, - 0xe1,0xc9,0x0d,0x95,0xe3,0xf6,0xfe,0xe7,0xcf,0xe8,0x40,0x19,0x64,0x74,0x1d,0x0b,0x22,0xc5,0x68,0x97, - 0x67,0x91,0x74,0x68,0x0b,0x68,0x8a,0x78,0xe5,0x66,0x2b,0xa7,0xbe,0x94,0x4c,0xda,0x6c,0x61,0x66,0xf3, - 0x29,0xd0,0xc2,0x5a,0xa0,0x3a,0x7a,0xfc,0xe4,0xe9,0xb3,0xe7,0x2f,0xbe,0xfd,0xee,0xe5,0xf7,0x3f,0xbc, - 0x7a,0xfd,0xe6,0xed,0xbb,0x7f,0xbe,0xff,0xf0,0xf1,0xc7,0x9f,0x7e,0xfe,0xe5,0x5f,0xff,0xce,0x4f,0xa6, - 0xc4,0xce,0x9f,0x9d,0x17,0xbf,0x7d,0x9a,0x2f,0xca,0x6a,0xf9,0x7b,0xdd,0xb4,0xab,0x8b,0xcb,0xab,0xeb, - 0x3f,0xf6,0x0f,0x1e,0x7e,0xf1,0xe5,0x57,0x7f,0xff,0xaf,0x7f,0x7c,0xbd,0xfb,0x20,0x8b,0xc6,0xa5,0x97, - 0x50,0x7b,0xc2,0x43,0x05,0xa9,0x42,0x1a,0x7c,0xd5,0x49,0xc2,0x22,0x66,0xd1,0x4b,0xe9,0xd7,0x53,0xdb, - 0x2d,0xcb,0x29,0x0d,0x22,0x29,0xab,0x6f,0xd3,0x20,0x61,0x32,0x33,0xed,0x2d,0x84,0x31,0x04,0x6d,0x4d, - 0xb6,0x0f,0xc3,0x9b,0x71,0xe5,0xa0,0xe7,0xb6,0xc1,0xe9,0x35,0xcd,0xe8,0x44,0x51,0xcd,0xff,0x26,0xc2, - 0x29,0xdf,0xcd,0xa6,0x36,0xf7,0xef,0x5f,0xec,0xe8,0x6f,0xbe,0xf9,0xc7,0x1e,0x65,0xfc,0xed,0x1f,0x09, - 0xa3,0x9b,0xb8,0xc8,0xe4,0xe3,0xa7,0xd4,0x5b,0x2a,0xd2,0xec,0x66,0xa3,0xff,0xfa,0x2a,0x49,0xbe,0x79, - 0xf8,0xd5,0x57,0x86,0x60,0xc7,0xe8,0xca,0xb1,0xce,0xf4,0xa3,0x47,0xff,0xb8,0x2d,0xec,0x71,0xf4,0xff, - 0x18,0x81,0xdc,0x5c,0xd6,0x45,0x47,0xab,0x6f,0xa9,0x36,0x42,0x56,0x37,0x62,0x06,0x42,0xa7,0x7d,0x63, - 0x74,0x24,0x7c,0x60,0x0e,0xd0,0x48,0x44,0x2d,0x30,0xff,0x27,0x66,0x08,0x04,0x98,0x3b,0x3b,0xe6,0x13, - 0x7b,0x52,0xd1,0x77,0x18,0x0f,0x9f,0xdd,0x25,0x30,0xf3,0xb7,0xaf,0x3f,0x3a,0xe9,0xad,0x0a,0x20,0xbb, - 0x08,0xbe,0xc5,0xfe,0xa3,0x0f,0x8b,0x4e,0x81,0x2a,0x28,0x30,0x63,0x01,0x0d,0x15,0xa9,0x20,0xb8,0x20, - 0x20,0xcf,0x7d,0x5e,0xa3,0xa7,0xab,0x1a,0x52,0x6f,0xbf,0x0b,0x19,0x77,0x67,0x8d,0x39,0xe3,0xc7,0x5b, - 0x74,0xc8,0x2b,0x30,0x97,0xe9,0xc6,0xe9,0x94,0xf5,0x3e,0x1a,0x2d,0x98,0xcf,0xc2,0x10,0xde,0xeb,0xb3, - 0xe7,0x57,0xcb,0x38,0x8a,0xff,0xfb,0x76,0xfc,0xeb,0xaf,0xcd,0xdf,0x92,0x98,0x18,0x66,0x22,0xdf,0xb2, - 0xf8,0xf0,0xbf,0xc7,0x47,0x7f,0x4b,0x22,0xaf,0x0a,0xd2,0xc4,0x1f,0x6e,0xce,0xd5,0xe1,0x17,0x47,0x22, - 0x9f,0x40,0xe3,0x8b,0xea,0xa2,0x6b,0x1d,0xc1,0xbb,0x8b,0x17,0x85,0xd6,0x82,0x40,0x0d,0x33,0x36,0x2a, - 0xab,0xcb,0x38,0xd9,0xfb,0xc7,0xdf,0xbf,0xd4,0x5f,0x11,0x35,0x9d,0xf6,0x17,0x0d,0x32,0xa7,0xee,0x38, - 0x3a,0xfa,0xd3,0xcd,0x76,0xe8,0x83,0xff,0x80,0x3c,0x36,0x9d,0x3a,0x27,0xf0,0x99,0x43,0x5a,0x7c,0x78, - 0x14,0x12,0xa0,0xa1,0x5e,0x92,0x2a,0x18,0x56,0x64,0x77,0x2a,0x90,0x05,0xba,0x71,0xfa,0x36,0x96,0x79, - 0x88,0xbe,0x4d,0xb4,0xee,0x9d,0xc2,0x42,0x09,0xed,0x1d,0x40,0xc2,0xe0,0x5b,0xe2,0xf2,0xd9,0xc6,0xc4, - 0xd9,0xaf,0x88,0x88,0x04,0xd9,0xd6,0x4b,0x32,0xfc,0x5e,0xa7,0x22,0x43,0x71,0x64,0x5d,0x2a,0xd3,0xd1, - 0x21,0x61,0x0d,0x81,0x11,0x81,0x23,0x73,0x35,0x31,0xa0,0xf4,0x4a,0x2c,0xe2,0xff,0x50,0xbb,0x05,0xbb, - 0xc3,0xcf,0xf0,0xb3,0x8c,0x0a,0x5e,0x9e,0x1a,0xee,0x4f,0xcf,0xe2,0x0d,0x05,0xd6,0xc1,0xd7,0x22,0x21, - 0x86,0x69,0x9e,0xb3,0x09,0xa4,0xd7,0x03,0x08,0x88,0xe9,0xf7,0x0e,0x1e,0x81,0x96,0x06,0xe8,0xac,0x1d, - 0x9d,0xe4,0x46,0x2c,0xb7,0x3d,0x35,0x52,0x18,0x66,0xb0,0xe8,0x21,0x5b,0xc5,0x2e,0x5b,0x19,0x01,0x8d, - 0x72,0x32,0x5e,0x2f,0xed,0x65,0xc5,0x9f,0x08,0x81,0x33,0xc8,0x18,0x59,0x1a,0xec,0x72,0xa1,0xa8,0xe9, - 0xa9,0xac,0xc2,0x5a,0xac,0x28,0xdf,0xa5,0x8c,0x44,0x17,0x61,0x2a,0x75,0x42,0x7f,0x23,0xd2,0x3c,0xea, - 0xa6,0xe3,0x2d,0xf9,0x53,0x45,0x84,0x1a,0x52,0x2f,0x80,0xb4,0x46,0x43,0xa1,0x9e,0x81,0xd6,0xd5,0x0a, - 0xed,0x5d,0xcb,0xfa,0x68,0x6d,0x37,0x34,0x75,0xd2,0x68,0xfc,0x6e,0x6f,0x1b,0xfb,0x98,0x80,0x43,0xec, - 0x8a,0x1b,0x3c,0xdc,0xf3,0x1c,0x6b,0x3b,0x35,0xf2,0x40,0xef,0x83,0x53,0x23,0xac,0x2b,0x15,0x5f,0xab, - 0x81,0x9a,0x72,0x7a,0xa6,0x13,0x46,0x2a,0x84,0xdd,0x9e,0xe5,0x75,0xc1,0x4c,0x79,0x0d,0xb7,0x6b,0xa9, - 0x93,0xa2,0x82,0xf7,0xcf,0xb5,0x4d,0xeb,0xeb,0xd5,0xf4,0xcc,0x47,0xe9,0xff,0x48,0x73,0xf1,0x19,0x6e, - 0xd4,0x4e,0x88,0x5b,0xaa,0xb2,0x43,0xe1,0x40,0xc5,0x09,0x84,0xb1,0xde,0x64,0xa4,0xfe,0x82,0xbc,0xc0, - 0xd1,0x31,0xf1,0x76,0x7b,0x7b,0x0b,0x6b,0x8e,0xe3,0xa7,0x8f,0xdf,0x3c,0x7d,0xfe,0xea,0xf8,0xf8,0x7f, - 0x20,0x7d,0xb0,0xb5,0x3d,0xf8,0xef,0xf8,0x30,0xdf,0xfb,0xe3,0x08,0x7f,0x7e,0x9d,0xfd,0xba,0xfb,0xeb, - 0xde,0xaf,0xa3,0xa3,0xbf,0xa5,0xc9,0xe4,0xd7,0x07,0xbf,0x3e,0xb0,0xa4,0x5f,0xfb,0x3f,0x12,0x6f,0x78, - 0x81,0xc3,0x24,0x30,0x24,0xfa,0xf5,0xc1,0xae,0x90,0xcc,0xbb,0xa0,0x3f,0x75,0x48,0x10,0x3f,0xd8,0x15, - 0x52,0xf7,0x4f,0x26,0xa7,0x6b,0xb5,0xd3,0xa1,0xd4,0xda,0x75,0x39,0x60,0xbc,0x99,0x6d,0x1c,0x19,0x91, - 0x18,0xfb,0x46,0xbb,0x71,0xf8,0x39,0x31,0xba,0x10,0x0c,0x07,0x29,0x29,0xac,0x9b,0x3a,0x54,0x96,0x9f, - 0x74,0xa8,0x47,0x02,0x73,0xea,0xff,0x08,0x1d,0x42,0x90,0xe9,0x64,0x89,0xdb,0x81,0x82,0xd5,0x11,0x45, - 0x10,0x6a,0x8a,0xbc,0x89,0xa8,0x0b,0x3a,0xe5,0x89,0xee,0xde,0x5a,0xac,0x9a,0x76,0xeb,0x44,0x6f,0xe5, - 0xce,0x66,0x6a,0x14,0x19,0x33,0x94,0x31,0xf7,0xda,0x08,0x06,0xb3,0x41,0x65,0x16,0xcc,0x40,0x68,0x82, - 0xe4,0x83,0x32,0xc3,0x07,0xe3,0xb6,0x93,0x0d,0x29,0x5a,0xde,0x00,0x2d,0xc5,0xf6,0x91,0xab,0x2a,0x78, - 0x3f,0xba,0x34,0x88,0x11,0x3c,0x82,0xfe,0xa2,0x7b,0x3a,0xf6,0x71,0x79,0x4f,0x9d,0x62,0xac,0x2a,0xb8, - 0x1a,0x19,0x6c,0x90,0x82,0x43,0xab,0xa9,0x56,0xf5,0x54,0x87,0x5f,0x85,0xc6,0x06,0x37,0x2d,0x0e,0x0c, - 0xb6,0x27,0xaa,0x3b,0xa8,0xa8,0xcd,0x70,0xa8,0xca,0xa1,0xc2,0xf0,0x73,0xe7,0x41,0xf5,0x1f,0xec,0x8d, - 0xad,0x01,0x14,0x65,0x0d,0xca,0x58,0xec,0xa8,0x61,0x53,0x06,0xbd,0x67,0xbf,0x85,0xbb,0x7d,0x20,0x06, - 0x94,0x99,0xff,0x8f,0xdc,0x20,0x34,0x1c,0x1b,0x7e,0x5a,0xe9,0x61,0xb7,0x86,0x61,0x60,0x6c,0x07,0xed, - 0x60,0x6f,0x6f,0x31,0x3a,0xb6,0x88,0x0d,0x8c,0x21,0xfb,0x25,0x45,0xe6,0x65,0x25,0x61,0xeb,0xee,0xae, - 0xb4,0x2c,0x57,0xb7,0x92,0xd0,0xac,0x7d,0xc3,0xba,0xe0,0xf6,0x76,0xd3,0x8e,0x97,0xd2,0x9a,0xeb,0xc5, - 0x49,0x35,0xef,0xa6,0x9d,0x54,0xd5,0x5c,0xe7,0xe5,0xa0,0x5d,0xfb,0xff,0x1b,0x4b,0x78,0x91,0xb0,0xb1, - 0xf1,0xed,0xa2,0x1c,0x34,0x84,0xb7,0x44,0x34,0x1b,0x42,0xb0,0x4d,0x5e,0xec,0x18,0x28,0x4f,0x1c,0x7f, - 0x93,0xed,0xef,0xec,0xbc,0x26,0x12,0x7f,0x74,0x3a,0xaf,0x2a,0xc8,0xe3,0x32,0xa6,0xa7,0x60,0x60,0x52, - 0x32,0xfd,0x1b,0xd4,0xda,0xf4,0xba,0x4e,0x9d,0x9d,0x44,0xd1,0xa6,0x67,0x4b,0x3b,0xe9,0x8b,0xfc,0x44, - 0x0a,0xfe,0x30,0x49,0x5d,0x17,0x7c,0xad,0xd3,0xc1,0xbe,0x7a,0x29,0x36,0x71,0x34,0xf9,0x1b,0xea,0xd8, - 0xa4,0x25,0xc2,0xd4,0x7d,0xb5,0x32,0x16,0x92,0xce,0x22,0xd3,0x98,0xc6,0x0b,0x97,0x1f,0x8b,0xf6,0xa0, - 0xce,0x9c,0x0c,0x4b,0x41,0xcc,0x99,0xed,0x8f,0x8b,0x47,0xb5,0x35,0x25,0x2b,0xc4,0x30,0xf3,0xb0,0x38, - 0x3a,0x22,0x5c,0xe9,0xf9,0x85,0x21,0xed,0xfb,0x61,0xdb,0x15,0x64,0x1d,0xad,0x87,0x8c,0x3b,0xa8,0xd8, - 0xd1,0xda,0xf7,0x71,0xee,0xdc,0x11,0xac,0x1f,0x81,0x55,0xa9,0xb6,0x81,0x88,0x8b,0xc5,0xc1,0xdf,0xec, - 0x1d,0x38,0x29,0x31,0x77,0x99,0x4e,0x9c,0x52,0x1d,0x24,0x41,0x6d,0xa7,0x9d,0x33,0xeb,0xd8,0xae,0x3a, - 0x36,0xb9,0x2b,0xb3,0xf4,0x73,0x39,0x30,0x1f,0xe3,0x3e,0xda,0xf0,0x24,0x81,0x3e,0x2c,0x8f,0x60,0xd8, - 0x49,0x3f,0xb0,0x10,0x4e,0xc2,0x86,0x67,0x1b,0xc6,0xa8,0x46,0x1a,0x52,0x0f,0x18,0x0a,0x1b,0x0a,0x63, - 0x52,0x7f,0x73,0x30,0xf1,0xc6,0xad,0xae,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xed,0xb3,0x93,0xf3,0x96, - 0xa3,0x63,0xa9,0xc8,0x79,0x5e,0xa8,0xd2,0x77,0xe4,0x5c,0x3a,0x42,0x18,0xe4,0xf6,0x76,0x7f,0xec,0x97, - 0xde,0x96,0xdd,0xd3,0xb4,0xe2,0xde,0x32,0xb7,0x4c,0xc6,0xe5,0xde,0xde,0x38,0xa9,0x79,0x50,0x87,0xe5, - 0xae,0x76,0x66,0xb7,0xb5,0xaf,0xf4,0xa2,0x07,0x48,0xf0,0xde,0xd0,0x09,0x7c,0x3b,0x32,0xcc,0x86,0x93, - 0x8c,0xfa,0x2f,0x16,0x1d,0xd1,0x04,0xac,0xa6,0x4b,0x02,0xac,0xf2,0x91,0x77,0x16,0x21,0xc0,0x42,0x05, - 0x3b,0x3b,0x17,0xd0,0x3e,0x42,0x18,0xe9,0xa0,0xcb,0x57,0x73,0x66,0xcf,0x61,0x9f,0x74,0xed,0x01,0x06, - 0xdb,0x30,0xb1,0x58,0xca,0x1c,0x89,0x7c,0xce,0xd5,0xf4,0x23,0x40,0xb3,0x4d,0x07,0xe1,0x76,0x6d,0x0b, - 0x11,0xd7,0xb2,0x5d,0xef,0xec,0xb8,0x0d,0x46,0x15,0x98,0x67,0x2a,0x0d,0x1d,0x26,0xeb,0x1e,0x32,0x9e, - 0x9a,0x40,0xdc,0x4f,0x6c,0x4b,0x37,0x49,0xea,0xae,0x76,0x76,0x72,0x0f,0x90,0x66,0x4d,0x20,0xbf,0x92, - 0x47,0x70,0x48,0xfa,0x42,0xd7,0xd7,0xc1,0xf9,0x1c,0x10,0x98,0x3c,0x0e,0x0c,0x7b,0x2d,0x95,0xdd,0xde, - 0xda,0xca,0xb6,0x0f,0xc6,0x22,0xd0,0x30,0xe0,0xf9,0x49,0x5f,0x03,0xab,0x10,0xb7,0x14,0x26,0x78,0xbb, - 0xf2,0xc6,0xb7,0x3d,0x75,0x6d,0x37,0xfd,0xb6,0x3b,0x2d,0xc3,0x2b,0xc7,0x34,0xee,0x8d,0xbf,0x6c,0xeb, - 0x01,0x58,0x1f,0xf7,0x31,0xc8,0xc6,0x1a,0x52,0xd7,0x6d,0x7d,0x89,0x73,0xa7,0x33,0x3d,0x23,0x5e,0xd8, - 0xd5,0x74,0xe2,0x77,0x1d,0x8d,0x6f,0xd3,0x6c,0x5c,0xb3,0xc9,0x34,0x93,0x63,0xb2,0x21,0xf8,0xf0,0xf3, - 0x7b,0x22,0xdc,0x6c,0x97,0xbe,0x2e,0x88,0x7a,0xa2,0x24,0x14,0x50,0xed,0xbb,0x79,0xf9,0xe2,0xef,0x58, - 0x8d,0xdb,0xdb,0xaf,0xbf,0xc2,0xaf,0xff,0xfc,0xca,0xea,0xed,0x92,0x1b,0x33,0xa1,0x72,0xfa,0x5a,0xb7, - 0x23,0xce,0xa6,0xfa,0xe7,0x2b,0x9d,0x96,0x4a,0xd3,0x81,0xa6,0xeb,0xfc,0x64,0xae,0xd3,0xed,0xed,0x5a, - 0x41,0xa2,0x21,0x2f,0xfb,0xc6,0x12,0x62,0x65,0x32,0xf7,0xd7,0x01,0x92,0xb9,0x17,0x9c,0x47,0x03,0x0a, - 0xe7,0x9d,0x9d,0x07,0x25,0xfb,0x45,0xb0,0x4e,0xf4,0x81,0xa1,0xd0,0x43,0x43,0x41,0x5f,0xd5,0xa7,0x9e, - 0x85,0x53,0x4b,0x6b,0xc1,0x87,0xb7,0xea,0xfe,0xf8,0x93,0xcb,0x7f,0xfb,0xd4,0x98,0x0a,0x18,0x14,0x30, - 0xb5,0xc2,0x9d,0xb7,0x62,0xd6,0x6b,0x50,0x01,0xd5,0x48,0x6d,0xe7,0x67,0xca,0xb1,0xc4,0xd3,0xf3,0x62, - 0x3e,0xab,0x75,0x09,0xe6,0x0b,0xd6,0x1f,0x04,0xc9,0xf3,0x85,0x62,0xe5,0x26,0xbf,0x23,0x23,0x6f,0xae, - 0xcb,0xe9,0x8b,0x1c,0x66,0xf2,0xd7,0x5e,0x9d,0x3a,0x2a,0xc1,0x70,0xa3,0x6a,0x91,0xe4,0xb5,0xc5,0x14, - 0x98,0xdc,0x3c,0x52,0x2a,0x01,0x6f,0xc6,0x20,0xcc,0x25,0x9e,0x12,0x6b,0x4b,0xfd,0xe1,0x22,0xe6,0x99, - 0xd2,0x4f,0xcb,0xa7,0xd2,0x10,0xa5,0xbb,0x67,0x4e,0x37,0x1d,0xe7,0x74,0x37,0x08,0x7a,0xfe,0x30,0xa5, - 0xb5,0x7b,0x39,0xe3,0x74,0xf3,0x2c,0xf5,0xcf,0x69,0xbc,0xec,0x79,0xa9,0x45,0x1d,0x6b,0x06,0x46,0x2f, - 0xb5,0x7b,0xc9,0x3e,0x04,0x39,0x30,0x2c,0x4a,0xa0,0xbc,0x2d,0xc3,0xc2,0x65,0x58,0xb8,0xec,0x16,0x26, - 0x7c,0xe3,0x67,0xfc,0x43,0x7f,0xc7,0x38,0x24,0xdd,0x45,0xbb,0xe6,0xa0,0x2d,0xf9,0x84,0xc5,0xf9,0x9a, - 0xd1,0x5a,0xd1,0x4f,0xe0,0x2f,0x12,0xd4,0xfa,0xd8,0x21,0x3d,0x71,0x09,0xda,0x8e,0x3b,0x0e,0x3c,0x6d, - 0x6d,0x0d,0x91,0xdc,0xce,0x82,0x50,0xee,0xf8,0xb8,0x3a,0x39,0x3e,0x8e,0xd8,0x58,0x45,0x9e,0xc3,0x8f, - 0x9a,0x7a,0x82,0xde,0x49,0x46,0x9a,0x13,0xd9,0x7e,0x5e,0xad,0xe6,0x33,0x9a,0x6d,0x42,0x1c,0x04,0xa1, - 0xdb,0xdf,0x97,0x6c,0x24,0xd8,0xc7,0x86,0xb7,0xb7,0x20,0xb6,0x28,0xc7,0x6c,0x9e,0xa2,0x79,0x0e,0xaf, - 0x96,0xa6,0x38,0x61,0x6b,0x5b,0xfa,0x90,0x9d,0x14,0x88,0x8a,0xc5,0xbc,0xf1,0xa0,0x1b,0xd6,0x5d,0x62, - 0x09,0x78,0x5e,0x2f,0x16,0x4f,0xab,0x55,0xd9,0xee,0xee,0xd2,0xc1,0xe5,0xc7,0xf8,0x31,0x54,0xa7,0x0b, - 0x22,0xc6,0xb7,0xff,0x2a,0x09,0xfd,0x9a,0xa6,0xce,0x74,0x1b,0xb8,0x07,0x3e,0xd3,0xcd,0xb4,0x2e,0x60, - 0x39,0xcf,0xb3,0xc3,0xe8,0x3e,0x27,0x74,0x7f,0x40,0xe4,0x62,0x3e,0x0a,0x37,0xa7,0x95,0x10,0xe7,0x84, - 0xb1,0x51,0x09,0xa1,0x52,0x7e,0x6c,0xe8,0x71,0x95,0x6d,0x17,0x3b,0x3b,0x8f,0x71,0x12,0x7e,0x06,0x1b, - 0x84,0x58,0x60,0x63,0xe3,0x2b,0xaa,0xb2,0x6f,0x5a,0xad,0xb3,0x66,0xd2,0x58,0xa2,0xd3,0xab,0x3f,0xfe, - 0x55,0xd2,0x46,0xab,0xa9,0x3c,0xcd,0x4d,0x45,0x2d,0x2d,0x61,0xb9,0x91,0xa8,0x15,0xbd,0xae,0xf0,0xea, - 0x93,0xfa,0x27,0xce,0xce,0x4e,0x40,0xf1,0x77,0x20,0xcc,0xec,0x7f,0x71,0x4b,0xd2,0x7d,0x77,0x24,0x5a, - 0x02,0x0d,0xc3,0x4e,0x4c,0xbc,0xac,0xb5,0x7f,0xfa,0x5c,0x8b,0x90,0x8d,0xb3,0x11,0x46,0xcc,0xe2,0x16, - 0xbd,0x56,0x4d,0x38,0x4a,0x6d,0xc9,0x9b,0xee,0x30,0x35,0xa1,0xda,0xfa,0xf6,0x56,0x6f,0xb3,0x09,0xea, - 0x36,0x9e,0xe3,0xe9,0x64,0xea,0xe9,0xb0,0x94,0xba,0xe3,0xe6,0x5c,0xc3,0xea,0xbf,0xac,0x5a,0xd0,0xbf, - 0x6c,0x79,0x1f,0x80,0xc3,0xdb,0xc0,0x3c,0xa0,0x0f,0x82,0xb4,0x76,0xb1,0x3f,0x6e,0xdc,0xd9,0xcb,0x34, - 0xfa,0x22,0xbf,0x72,0xa4,0x24,0x34,0x82,0x8e,0x54,0xd4,0xea,0x80,0xaa,0x53,0x25,0xe0,0x44,0xb3,0xff, - 0x29,0xf6,0x11,0x3f,0xf5,0x5d,0x46,0x7d,0xd5,0x62,0x20,0x5b,0x1a,0xd1,0x91,0xdd,0x2d,0xde,0x33,0x49, - 0x00,0xfd,0xf6,0xb6,0x86,0xa5,0x96,0x81,0xeb,0x49,0x99,0xd6,0x93,0xf8,0x23,0x21,0x18,0x3e,0x43,0x78, - 0x14,0x84,0x8c,0x30,0xd7,0x76,0xac,0x20,0xec,0xac,0xf5,0x6d,0x19,0xe0,0xeb,0xdf,0xdc,0x3e,0xbf,0x63, - 0xc8,0xe1,0x68,0x02,0x53,0x07,0xbf,0x91,0xc7,0xbe,0x4f,0xe1,0x5e,0xbb,0xbd,0x15,0xd2,0x18,0xc6,0x45, - 0xd6,0xda,0x57,0x1f,0x09,0x9a,0x0b,0x3b,0x16,0xae,0xc0,0x73,0xd7,0x99,0xd0,0x3c,0xc3,0xc1,0x1d,0x36, - 0xaa,0xdf,0x9a,0x86,0x26,0x81,0xc6,0x69,0xdc,0x3c,0xca,0x2d,0x14,0x36,0xc0,0x6e,0x20,0x2c,0xb3,0xfc, - 0xb0,0x39,0x3a,0x02,0x80,0x82,0x56,0x38,0x65,0x52,0x68,0x52,0xc5,0x35,0xfb,0x37,0x42,0x97,0xf2,0x3c, - 0xc6,0xc6,0x4f,0xb1,0xec,0x25,0x3d,0x0c,0xd0,0x94,0xaf,0x7a,0x22,0xba,0x72,0xd2,0xdb,0x73,0x75,0x36, - 0xe8,0x27,0x67,0x5d,0x87,0xd9,0x59,0x8e,0x7a,0x30,0x74,0x20,0x4f,0xda,0xa0,0x50,0xeb,0x49,0x74,0xd3, - 0xab,0x62,0x9d,0xea,0x49,0x1b,0xb6,0x67,0x4a,0x3c,0x8f,0x3f,0xd7,0x24,0xd3,0x30,0xf8,0x83,0x86,0x3f, - 0xd7,0x6c,0x50,0x90,0xd8,0xbe,0x54,0xa7,0xc1,0xb0,0x5f,0xf6,0xe5,0x70,0x93,0xd6,0xaa,0xf0,0x69,0x3b, - 0xf5,0xd1,0xc4,0x44,0xa7,0xd0,0xf3,0x07,0xdf,0xbf,0xf0,0xe4,0x8e,0x08,0x7c,0xba,0x5c,0x8f,0x91,0x14, - 0x04,0xba,0xa0,0x8b,0xb8,0xc0,0x46,0x2d,0x7c,0x15,0xcf,0xec,0xcc,0x07,0x52,0x00,0x57,0xdd,0xb4,0x26, - 0xf4,0x42,0xf0,0x55,0x8f,0x57,0xf0,0xe0,0xa3,0x03,0x8a,0xdd,0x1e,0xf1,0x07,0x8d,0x0e,0x59,0xf3,0xb1, - 0x2c,0x98,0x50,0x95,0xf1,0x2e,0xea,0x8b,0x5e,0x2c,0x44,0xd3,0x7e,0x5c,0x36,0x62,0x09,0x24,0xeb,0xcb, - 0x00,0x77,0xb3,0x1e,0x6f,0xec,0x8f,0x52,0x9c,0xd2,0xe9,0x88,0x75,0xe8,0x0f,0x5c,0x4d,0x5f,0x40,0x11, - 0x4b,0x5c,0x07,0xec,0x82,0xfc,0xf0,0xb2,0x24,0xb8,0x3b,0xca,0x6e,0x90,0x25,0x6a,0x2e,0x6f,0x69,0x54, - 0xd9,0x1a,0xf9,0xdc,0x00,0x8a,0x28,0x13,0x7c,0xdb,0x1c,0x29,0xfe,0xb0,0xa1,0x0f,0x01,0xb6,0x93,0x22, - 0x95,0xef,0x8b,0xf5,0xd8,0xf4,0x37,0xcb,0xd7,0x40,0x99,0x77,0x0c,0xa9,0x28,0x31,0xf7,0xe1,0x98,0x5c, - 0xe2,0xe7,0x06,0x26,0x33,0xcd,0x04,0x43,0xc8,0x99,0x13,0xd7,0xc6,0x9c,0xf9,0x0d,0x8c,0x6b,0x52,0x3c, - 0xaf,0x87,0x87,0x90,0xcb,0x10,0xcc,0x31,0x58,0x1e,0xe6,0xc4,0xb3,0xd1,0x1f,0x1a,0x43,0x93,0xd0,0x7a, - 0xcb,0xf7,0x39,0xa1,0xf8,0x24,0x95,0xe7,0x66,0xbd,0xee,0x0f,0xc3,0x0e,0x42,0x8f,0x66,0x45,0x4d,0xfd, - 0x25,0xea,0xd5,0x2c,0x8e,0x6d,0xa5,0x0e,0x5a,0x91,0x99,0x1e,0x0f,0x2c,0x7e,0x01,0xb2,0x80,0xa3,0x6b, - 0xc0,0xc0,0x3f,0x2d,0xd4,0x6a,0x09,0xeb,0x42,0x9a,0xc2,0x04,0x4a,0x7f,0x13,0x7f,0x43,0x9b,0xf0,0x12, - 0xdc,0x44,0xc1,0x36,0x52,0x80,0xc2,0x02,0xc6,0x81,0x4a,0x8f,0x16,0xc5,0x15,0x91,0x32,0x7e,0x7c,0x74, - 0xf6,0x35,0x99,0x4d,0xb6,0x53,0x94,0x3f,0x6a,0xc6,0x39,0xf8,0x4c,0xfe,0xd4,0xe6,0xd2,0xb8,0xa9,0x12, - 0x6e,0x66,0x4a,0x27,0x11,0xcd,0x3a,0x6a,0x99,0x4a,0x44,0x02,0x7a,0x48,0xfc,0xbb,0x4e,0x80,0xa8,0xa6, - 0x44,0xf2,0x70,0xba,0xd9,0x21,0x2b,0xbf,0x31,0xde,0xf8,0xbd,0x35,0xe4,0x6d,0xe3,0xe6,0x02,0xc8,0x16, - 0x03,0xa1,0xa1,0x60,0x00,0x56,0x6a,0x03,0xde,0x59,0x28,0x9d,0x4b,0x30,0x68,0xb6,0x44,0x15,0x94,0xa8, - 0xa4,0x44,0x9e,0x5d,0x95,0x71,0xe5,0xa5,0x13,0x54,0x2a,0x27,0xe8,0xa3,0xb1,0xa4,0x05,0x8b,0x25,0x50, - 0x12,0x7f,0xf3,0x50,0xb8,0xf2,0xae,0xbf,0xf5,0xe1,0x2c,0xa7,0xaa,0x6c,0x9b,0x56,0x4d,0x31,0x5f,0x0b, - 0x69,0x0c,0x9a,0x7d,0x1f,0x3f,0x11,0x79,0x9c,0x2a,0x46,0x7c,0x02,0x82,0x3e,0xa1,0xf3,0x11,0x0d,0x45, - 0xc6,0xbd,0x32,0x4a,0x26,0x39,0x31,0x6f,0xe9,0x7b,0x23,0x24,0xb3,0x45,0x61,0xf8,0xbf,0xcd,0x2a,0xed, - 0x9c,0x7e,0x3e,0x19,0xff,0xd7,0x3c,0x63,0x42,0xda,0x49,0x24,0xf3,0xe4,0x26,0x1f,0x32,0xfd,0x3b,0x85, - 0x07,0x94,0x6b,0xc1,0x6e,0x0a,0x6d,0x7d,0x3a,0xdd,0x39,0x00,0x22,0xf6,0x9e,0x41,0x18,0xb2,0xd3,0x24, - 0x6a,0x82,0x17,0x79,0x0e,0x64,0x8b,0x80,0xc1,0x89,0x3a,0x47,0xc7,0x9c,0x43,0xa9,0x93,0xe0,0x79,0x48, - 0x44,0x0b,0x9f,0xe1,0x17,0x5e,0xb8,0x9f,0xbd,0x8e,0xb5,0x0c,0x76,0x52,0x3b,0x6a,0xa7,0x26,0x70,0x05, - 0x4a,0x6a,0x13,0xc3,0xaf,0xf7,0x69,0xe8,0x71,0x3f,0x01,0x7c,0xc8,0xe3,0x38,0xa7,0x89,0xef,0x67,0x34, - 0xde,0x6c,0xc2,0xad,0xde,0xeb,0xc0,0x3e,0x0a,0xa3,0xf7,0xdc,0xa1,0xd1,0xf2,0xb3,0x43,0xb7,0x2b,0x1e, - 0xff,0x7a,0xb9,0x9b,0x3c,0x08,0xf0,0xb8,0x3e,0x3c,0xa0,0xb1,0x45,0xbe,0xc2,0xf7,0xfe,0x40,0xef,0x1f, - 0x1b,0x16,0xe0,0x5e,0x8b,0x74,0xf3,0xb5,0xf5,0x7a,0xb5,0x61,0x3e,0x6a,0x4f,0x58,0x96,0x8f,0x6a,0xcb, - 0xf9,0xbf,0x66,0x61,0x98,0xfd,0xc0,0x8b,0x62,0x9c,0x24,0xc1,0x35,0xfd,0x24,0x58,0x71,0xed,0x11,0x46, - 0xa6,0xc7,0x75,0x56,0x8f,0xee,0x2d,0x73,0x62,0xa6,0xda,0xb1,0x37,0x20,0x72,0x4b,0xc9,0x3e,0x04,0x4f, - 0xf3,0x25,0x55,0xa8,0x67,0x8c,0x0b,0xdc,0xd7,0x15,0x21,0xc4,0xea,0x51,0x61,0xfb,0x55,0x61,0xa7,0xd7, - 0xd7,0x3c,0x3c,0x98,0x40,0x62,0x47,0xc8,0x5a,0xd5,0x4a,0x1a,0x37,0x1d,0xf4,0x12,0x8f,0x1f,0xa9,0x57, - 0xb5,0x8a,0x3a,0x6d,0x6c,0x9d,0x57,0xd5,0x27,0xf8,0xc3,0xff,0x68,0xba,0xec,0x07,0xf1,0x63,0x30,0x88, - 0xdf,0x4a,0xe9,0xda,0x77,0xa2,0x73,0xe7,0x96,0xcd,0x1c,0xf6,0xb2,0xc2,0xc0,0x25,0x52,0xa1,0x6b,0xff, - 0x27,0x2b,0xf5,0x8d,0x8c,0xa9,0x75,0xf8,0x1d,0xf5,0xe1,0xa7,0x8d,0x2e,0xfc,0x14,0x74,0x61,0xfb,0x25, - 0xe4,0x59,0x2f,0x4a,0xda,0x7f,0x03,0x3e,0x46,0xf0,0x62,0xa7,0x1d,0x6d,0x35,0x34,0x63,0xf3,0x2e,0x4d, - 0x74,0x84,0xcb,0xdf,0x11,0x39,0x33,0xab,0x33,0x23,0x76,0x6a,0xb3,0x65,0x6d,0xdd,0xce,0x93,0xf1,0xd2, - 0x4a,0x82,0x33,0x2f,0x4c,0xd4,0xf4,0xac,0xbd,0x14,0x48,0xb3,0x24,0x4f,0x1f,0xc5,0x41,0x95,0x7f,0x04, - 0xa7,0x1e,0x16,0x8d,0xaa,0x61,0x5b,0x8a,0x9e,0x22,0x49,0x9c,0x11,0x9d,0x80,0xd3,0xcd,0x8b,0x40,0x4b, - 0x54,0xd2,0x11,0xf0,0xb1,0x98,0x62,0x35,0xf8,0x54,0x2b,0xd9,0x27,0x1e,0xaa,0x9a,0x19,0xf8,0x0a,0xf4, - 0x79,0x5f,0x9d,0xd7,0x93,0x79,0x1d,0x27,0xe9,0xaa,0x86,0x81,0xce,0x76,0x3b,0xac,0x9f,0x31,0x9a,0xb4, - 0x24,0x90,0xa3,0x0c,0x29,0xd7,0x4a,0x28,0xd7,0xfc,0x30,0x7e,0x46,0x9a,0x2b,0x00,0xbe,0x4b,0x39,0x52, - 0xa4,0xba,0x43,0x2a,0x18,0x13,0x0b,0x0a,0xe9,0x23,0x18,0x61,0xc7,0x21,0xbf,0xa8,0xab,0x3f,0xe0,0x8e, - 0x2d,0x36,0x55,0xda,0xd0,0xea,0xf6,0x3c,0xd6,0x21,0x3b,0x56,0x30,0x94,0x97,0xb0,0x20,0xa4,0xc3,0xd9, - 0x1a,0x76,0x96,0xf0,0x3e,0xa0,0x77,0xb8,0x8a,0xe4,0x86,0xd6,0xd1,0x1d,0x5a,0x07,0x06,0x3b,0x35,0x9f, - 0x6c,0x2e,0xd2,0x4e,0x9d,0xc5,0x55,0x8f,0x3e,0x4f,0x36,0xbe,0xa9,0xe8,0xab,0x23,0x8e,0xac,0x90,0xd0, - 0xac,0x1f,0xd7,0x09,0xfd,0x1f,0x4d,0xe9,0x28,0xa8,0xc3,0x05,0xfd,0x3d,0xee,0xc6,0xd0,0x32,0x2a,0x3d, - 0x2f,0xdc,0x56,0x20,0x0c,0x4e,0x4b,0x3e,0xae,0xb7,0x37,0x68,0x18,0x27,0xba,0x0e,0x14,0x6f,0x5e,0xb6, - 0x37,0xf6,0xf8,0xa0,0x34,0xa0,0x37,0xa8,0x88,0x80,0x98,0x24,0xac,0xa1,0x75,0x32,0x71,0x6e,0x1a,0xe1, - 0xb3,0x7c,0x8f,0xbf,0x8f,0x8d,0x30,0xc1,0xd9,0xff,0xab,0x46,0xd1,0x81,0xcf,0x8d,0xe5,0x72,0xba,0xd3, - 0xd4,0x83,0x1a,0x98,0x32,0x45,0x44,0xb4,0xc0,0x49,0x0d,0xe4,0xdc,0xc6,0x6c,0x23,0xd7,0xd2,0x91,0x3f, - 0xa1,0xbf,0x0d,0xea,0xc6,0x79,0x28,0xa5,0xb3,0xdf,0xb1,0x2c,0xaa,0x26,0x7e,0x9d,0x8d,0x37,0x1b,0xb5, - 0x1a,0x11,0x35,0x4e,0x4c,0x2d,0xc1,0x31,0xa3,0x10,0x7a,0x82,0x4f,0x1c,0xd1,0x47,0xfc,0x04,0x33,0xf5, - 0x24,0x49,0x1b,0x3a,0x45,0xa6,0x54,0xcb,0x94,0xbb,0xda,0x28,0xae,0x6b,0x9a,0x24,0xbe,0x3f,0x25,0xaf, - 0x47,0x0e,0xf2,0xb4,0x88,0x63,0xd3,0x9b,0x44,0x5a,0x91,0x0e,0xda,0x16,0x82,0x85,0xf9,0x21,0x36,0x43, - 0x0c,0xf4,0x5a,0xc9,0x4d,0x35,0x2c,0x44,0x55,0x73,0x19,0x0d,0xd1,0x0e,0xeb,0xba,0x2b,0x40,0x82,0x40, - 0x8c,0xf0,0x2e,0xe4,0x7f,0x23,0x60,0x40,0x98,0x70,0xf8,0x37,0xa2,0x92,0x12,0x73,0xca,0xc1,0x9e,0x90, - 0xd6,0x61,0xcc,0xd3,0xd3,0xd0,0x6c,0xa0,0xc7,0xa9,0x96,0x71,0x41,0xca,0x40,0x4f,0x6c,0x29,0x33,0xa3, - 0xd9,0x6b,0x68,0x84,0x48,0x97,0xdd,0x9f,0xd3,0x2c,0xe0,0x83,0xa9,0xa2,0x4f,0x54,0x63,0x8a,0x61,0x13, - 0xb3,0x00,0xac,0xf1,0xa3,0xfa,0x85,0xb9,0x40,0x33,0x32,0xec,0x18,0x00,0x91,0x50,0x0b,0xa0,0x66,0x3c, - 0x7b,0x8e,0xf0,0x28,0x00,0xfb,0xea,0xf6,0xd6,0xf0,0xb5,0xfc,0x4a,0x67,0x90,0x29,0x5c,0xf4,0x0b,0x17, - 0xdd,0xc2,0x05,0x0a,0xaf,0x37,0x0f,0xac,0x6f,0x43,0x67,0x0b,0xe6,0xbf,0x61,0xfa,0x03,0x39,0x24,0x36, - 0xb6,0x31,0xb1,0xb7,0x22,0x4b,0xff,0xd9,0xbf,0x43,0x66,0x2d,0x06,0x53,0xae,0x9b,0xd7,0xac,0x14,0xbe, - 0xbd,0xfd,0x05,0x81,0x5c,0xe4,0x05,0x3a,0xc9,0xf6,0xf0,0x03,0xab,0x45,0xdd,0xb9,0xfe,0x31,0x3f,0x93, - 0x68,0x00,0x59,0x6b,0xa9,0x1f,0xda,0x06,0xf0,0x20,0xb0,0xc4,0x30,0xa8,0x8e,0xa0,0xb1,0x7f,0x75,0xc2, - 0xbc,0xb8,0xde,0x80,0x56,0x08,0x85,0xb3,0xfe,0x83,0x7f,0x1a,0xbb,0x85,0xbe,0x70,0x21,0xf9,0x8c,0x80, - 0xdf,0x72,0x29,0xa0,0x55,0x79,0x25,0x6a,0x76,0x8b,0x80,0xf8,0xb4,0x27,0x4d,0xa6,0x4d,0xf3,0x2f,0xca, - 0x75,0x13,0x5e,0x07,0x94,0x68,0xdb,0xda,0x83,0xab,0x9c,0x5c,0xe3,0x78,0x27,0xb8,0x13,0x79,0x90,0xbc, - 0xf5,0x74,0x74,0xba,0x95,0x79,0xe4,0xcc,0xd3,0xd3,0x5e,0x6e,0xe9,0x2a,0xbb,0xa6,0x8e,0x29,0xde,0xe9, - 0x62,0x6e,0x45,0xc9,0x34,0x67,0x94,0x2a,0x34,0x5f,0xa0,0xb5,0x6e,0x43,0x3e,0x4c,0x38,0xad,0xed,0xd6, - 0x2b,0x2c,0x3c,0x06,0xea,0x84,0x34,0xb3,0x42,0x34,0x23,0x8f,0x64,0xce,0x36,0xcf,0x2a,0xde,0x18,0xa8, - 0x82,0xa5,0x88,0x79,0xdb,0xd6,0x8d,0x7b,0x20,0x04,0x56,0xb5,0xce,0x8f,0x38,0x4c,0x54,0x95,0x95,0x9f, - 0x8b,0x3d,0x5e,0xe5,0x65,0xdb,0xdb,0xac,0xa8,0x80,0xf4,0x52,0x74,0xc6,0x39,0x7f,0x90,0xc4,0xa5,0x05, - 0x04,0x36,0xe7,0xb0,0x21,0xe8,0x0e,0x8f,0x08,0x2d,0xf0,0x8e,0xaa,0x02,0x19,0x50,0x63,0xbe,0x62,0x74, - 0xd6,0x40,0x53,0x89,0x1f,0x14,0x1e,0x47,0xad,0x5e,0x2c,0xe7,0xc4,0x64,0x01,0xee,0x2a,0x88,0xfa,0x27, - 0x53,0xae,0xc0,0xa0,0x89,0x29,0xba,0x66,0x44,0xda,0xb7,0xb7,0xf4,0x45,0x3a,0xb5,0xf5,0xaf,0x5d,0xec, - 0xa3,0x95,0xe0,0xa8,0xf2,0x70,0x75,0x64,0x74,0x4b,0x45,0xeb,0x1d,0xa6,0x91,0xec,0x23,0x8b,0x78,0x4d, - 0x7e,0x7b,0x17,0x8c,0x6e,0x77,0x81,0x94,0x88,0x98,0x2d,0xde,0x15,0xbc,0xc7,0x02,0xc5,0x7e,0x1b,0x28, - 0x34,0x0d,0xaf,0x76,0x07,0xa4,0xf6,0xa0,0x1a,0x94,0xe9,0x04,0x9f,0x8b,0x72,0x2a,0x25,0xde,0x87,0x9e, - 0x70,0x10,0xb2,0xa6,0xf3,0x88,0x66,0x7f,0x40,0xe3,0xc8,0x6a,0x75,0x16,0xae,0x8e,0x5b,0xb3,0x17,0x0d, - 0x75,0x9a,0x8c,0x13,0xd6,0x52,0x1f,0x17,0x65,0xce,0xdc,0xef,0xe7,0xe8,0xdd,0xa6,0x75,0xb4,0xb6,0xd5, - 0x6e,0x1f,0x0b,0xdb,0xfc,0xd2,0x7c,0x4d,0xf4,0x96,0xe2,0xc6,0x2c,0x55,0x6a,0x19,0xf7,0x8d,0x92,0x96, - 0x06,0xe8,0xb6,0xee,0x0d,0x3c,0x82,0x1e,0xdd,0x04,0x2f,0x20,0xe8,0xfa,0xb3,0x75,0xcf,0xae,0x72,0x38, - 0x6f,0xac,0x7a,0x72,0x39,0xac,0x89,0x85,0x63,0x92,0x8a,0xb8,0x1e,0x82,0x9a,0x59,0x14,0x8a,0x05,0xa7, - 0x6d,0x57,0xa4,0x61,0x49,0x75,0xc3,0xe2,0x06,0xe2,0x00,0xde,0x4b,0x65,0x7f,0x2f,0x81,0xe6,0x2b,0x5d, - 0xd4,0x4c,0x17,0x7d,0xa2,0x04,0xd9,0x57,0x82,0x44,0xde,0x8d,0x2c,0x0d,0x4e,0xa3,0x21,0x32,0xe8,0x3b, - 0x7a,0x61,0xc7,0x4b,0x66,0x01,0xf5,0x02,0xa6,0x0a,0x28,0x90,0x46,0xbb,0x21,0x56,0x58,0x21,0xf0,0xd7, - 0x07,0xd0,0x84,0x42,0xc7,0x2a,0xcd,0xc3,0xbf,0x82,0x3d,0x52,0x1d,0x1a,0x49,0x85,0xe6,0xbe,0x44,0x6e, - 0xed,0x69,0xfa,0xb3,0x86,0xf8,0x9b,0x26,0xe9,0x71,0xfd,0xe8,0xca,0xd1,0x1c,0x8f,0xd1,0x5d,0xe8,0x18, - 0xb3,0xab,0xfa,0xf0,0x71,0x7d,0x94,0x50,0x41,0xf5,0xa9,0x66,0xb1,0x2d,0xd3,0x1f,0xa3,0x7a,0x55,0xc6, - 0xd6,0x18,0xeb,0x5e,0xed,0x68,0x97,0x3a,0xbb,0x72,0x2f,0x54,0x4b,0xe6,0xaa,0x44,0x21,0x4b,0x4f,0x53, - 0x4d,0xd0,0x8b,0x3f,0xad,0x33,0x74,0xfa,0xa0,0x23,0x69,0xf9,0x13,0x52,0x3b,0x5c,0xe4,0x7d,0x85,0xf5, - 0x83,0x30,0x77,0x1b,0xd1,0x42,0xcb,0xe4,0x8e,0x8a,0x7c,0x25,0xa0,0xfc,0xec,0xea,0xe1,0x3b,0x50,0x5d, - 0x17,0x8b,0x71,0x3d,0x3a,0xbe,0xc4,0x4a,0xe8,0x9a,0x80,0xaa,0x84,0x3c,0xfb,0xb8,0xa0,0xb3,0x6b,0x45, - 0x08,0x6a,0xb6,0xb3,0x43,0xab,0x4e,0x9c,0x92,0x88,0x6a,0x18,0x1e,0x08,0xd3,0xab,0x1f,0xa8,0xd8,0x6f, - 0xc0,0x4b,0x17,0x6d,0x55,0xc1,0x5b,0xf8,0x07,0x62,0x7d,0x78,0x7d,0x4e,0xe7,0x84,0x3e,0xa2,0x60,0x75, - 0xe6,0x0e,0x67,0xff,0x56,0x43,0x05,0xb3,0x69,0xcf,0xc7,0x56,0x64,0xd4,0x1f,0x02,0xc0,0xb5,0xa2,0x42, - 0x8d,0xde,0xb4,0x9b,0x96,0x6c,0x44,0xf9,0xbb,0x4b,0x57,0x53,0xd2,0xa7,0x41,0xb3,0xa7,0xae,0x59,0x81, - 0x48,0x56,0x6a,0x0d,0x49,0xa5,0xca,0x49,0x6c,0x3a,0x56,0x4f,0x96,0x2c,0x59,0x2d,0x6d,0x27,0xce,0x92, - 0xd4,0xe6,0x95,0xf8,0x3b,0xa9,0x41,0x01,0x20,0xa0,0x1d,0x81,0x30,0xcd,0x97,0x2d,0x8f,0xbc,0xf4,0xcc, - 0x7e,0x55,0xe2,0xef,0x84,0xff,0xa6,0x67,0xc9,0x9d,0xfd,0xd5,0xdd,0xfe,0x2e,0x43,0x7c,0xb9,0xa1,0x52, - 0x62,0x3b,0xbb,0x63,0x9c,0xbb,0x2b,0x5a,0x85,0x9f,0x65,0xb5,0x10,0xcd,0x6f,0x30,0xdd,0x88,0x76,0x1c, - 0xd3,0xc3,0x82,0xbb,0xf6,0x1a,0x36,0xb9,0x1a,0x9a,0x09,0x48,0x7f,0x13,0x15,0x68,0xa4,0xb4,0xd7,0x05, - 0x69,0xd1,0x5d,0x84,0x16,0x2e,0xad,0x17,0x26,0xb9,0xd0,0x3d,0x50,0x12,0x41,0xea,0xaa,0x10,0x71,0xca, - 0x98,0x9f,0x27,0x6a,0x53,0x0e,0xc6,0x9a,0x40,0xc6,0xc8,0xb4,0x69,0xee,0x5d,0x8a,0x2f,0xb8,0x88,0x87, - 0xbd,0xe5,0x8a,0x47,0x99,0xed,0x9f,0x1b,0x2d,0xfd,0x52,0x4e,0xde,0xeb,0xd3,0x39,0x72,0xaa,0xcb,0xf2, - 0x07,0x31,0x91,0x18,0x9d,0x16,0xf3,0x56,0xd7,0x43,0x06,0xce,0x7f,0x45,0x83,0x38,0xf2,0x5a,0xbe,0x75, - 0x92,0xf6,0xac,0x2f,0x06,0xf8,0x91,0x1b,0x2f,0x89,0x00,0x01,0x4b,0x94,0x01,0x22,0x93,0x8e,0x20,0x40, - 0x85,0x34,0x72,0xdc,0x8c,0x79,0x34,0x0d,0x8b,0x9a,0x2e,0x8a,0x19,0xf6,0x11,0x53,0xfa,0x41,0x0a,0x11, - 0x44,0xf4,0x4d,0x16,0xa4,0x40,0x38,0x7b,0x42,0x83,0xfd,0xb4,0x26,0x36,0xc1,0x1e,0x3e,0xe0,0xfb,0xb6, - 0x61,0x7b,0x68,0x25,0x65,0x90,0x56,0xd2,0x87,0x02,0x19,0x53,0x69,0xd8,0x8a,0xcc,0xb8,0xc6,0x01,0x18, - 0x77,0x8a,0x38,0x82,0xd6,0xe9,0xda,0xd9,0x13,0x05,0x8b,0x7c,0xd1,0x8a,0x8d,0x8a,0x63,0x71,0xc1,0x33, - 0x6d,0x4a,0xa5,0x21,0xe0,0x1b,0x08,0x2d,0x64,0x44,0xf0,0x4e,0xcb,0xed,0x2c,0xba,0x54,0x45,0xe8,0x2e, - 0xf7,0x28,0xa8,0x7a,0x94,0xb3,0xb8,0xa6,0x46,0x47,0x69,0x73,0x73,0x3c,0x57,0x2f,0x7d,0xdf,0xb4,0x21, - 0xdc,0xac,0x9a,0xeb,0xa4,0x8a,0xda,0xb0,0xa2,0x6a,0xf7,0x20,0xac,0xa7,0xb0,0xa4,0xed,0x86,0x29,0x4d, - 0x58,0x55,0xd3,0xeb,0x65,0xd3,0xef,0xe5,0x34,0x6b,0xd0,0x41,0xd7,0xd9,0x29,0x71,0x8c,0xca,0xcb,0x62, - 0x0d,0x45,0xcc,0xe8,0xf2,0x27,0xc4,0x06,0xe0,0x00,0x09,0x81,0xf2,0x7e,0x11,0xec,0x1c,0x96,0x6f,0x51, - 0x43,0xbc,0x63,0xef,0x35,0xb0,0x54,0x98,0x7d,0x20,0xa2,0xcd,0x6e,0xd6,0x0a,0xb1,0xdb,0x98,0x96,0xad, - 0x79,0xcf,0x5c,0xc4,0x17,0x31,0x5e,0x12,0x96,0x7b,0x17,0x19,0xb6,0xdc,0xed,0xad,0x0e,0x9d,0x9c,0x4d, - 0x55,0xb6,0x92,0x1c,0xca,0x8d,0xd1,0x31,0x01,0xcd,0x4c,0xd7,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0xb5,0x8d, - 0x96,0x0b,0x9d,0x1f,0x8a,0x3b,0xfb,0xa1,0x89,0x54,0xd1,0x73,0xfe,0x73,0x34,0xa3,0xba,0x41,0xe9,0x14, - 0x71,0x41,0x3b,0x5a,0xa1,0xb3,0x10,0x57,0xbd,0x11,0xb3,0x60,0x4b,0x0c,0xa8,0x48,0xb6,0x22,0x42,0x23, - 0x50,0x87,0x3f,0x04,0x24,0xe1,0x75,0x7f,0x3a,0x32,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f,0x84, - 0x8d,0x33,0x6b,0x9c,0x74,0xe1,0xae,0x48,0x26,0xec,0xdd,0xec,0xbd,0x5f,0x89,0x21,0x2a,0x20,0xd9,0x4d, - 0xeb,0xc9,0xa7,0x92,0x16,0x02,0x84,0x74,0xda,0x27,0xfe,0x8f,0x5d,0x8b,0x86,0x9d,0x2c,0xc1,0x61,0x83, - 0xa3,0xdc,0x54,0x79,0xd3,0x9c,0x2f,0x90,0x35,0x36,0x22,0x03,0x7f,0x04,0x15,0x22,0xe3,0x9f,0xce,0x89, - 0xb7,0x67,0xd7,0x4c,0xde,0x03,0xd7,0xc2,0xcc,0xd1,0xcb,0x35,0x8a,0x24,0xb4,0x1e,0x21,0x49,0xde,0x5a, - 0xee,0xc0,0x3c,0xb0,0x10,0x79,0x9c,0x43,0x2f,0x4e,0xa3,0x86,0x31,0xf8,0x8f,0x0d,0x1f,0x07,0x31,0x24, - 0x09,0x05,0xa2,0x90,0xcd,0xaa,0x05,0x12,0x1a,0x88,0x20,0xdc,0x0b,0x18,0xf0,0xd4,0xd4,0xc1,0x19,0xfc, - 0x84,0xd4,0x75,0x01,0x8c,0x92,0x43,0xe2,0x0e,0x26,0x5a,0x38,0xda,0x0a,0x02,0x8c,0x18,0x41,0x29,0xb8, - 0x70,0x55,0x32,0x03,0x7f,0x68,0xce,0x6f,0x22,0x9c,0x8a,0xa3,0xce,0xd9,0x8a,0xaf,0x58,0xf4,0xe5,0x28, - 0xc6,0xa9,0x50,0xfb,0x0d,0x71,0xf9,0x3e,0x28,0x98,0xb7,0xe6,0xea,0xd2,0x80,0x7c,0xfc,0x34,0x6c,0xe1, - 0xf3,0xb1,0xd6,0x9a,0x7b,0xd8,0x4f,0x03,0x23,0x82,0x7d,0x07,0x18,0xb5,0x0c,0x22,0x9d,0xa3,0xba,0xb7, - 0xc4,0x75,0x32,0xf9,0x40,0x7f,0xd2,0xa7,0xf8,0x13,0x5f,0xb5,0xb1,0x7c,0x92,0x75,0xa0,0x6b,0x24,0xf5, - 0xbe,0x67,0x18,0x7f,0x51,0x02,0xee,0xbd,0x1e,0xd5,0xc2,0xfe,0x3b,0xb8,0x83,0x8b,0x78,0x95,0x35,0xab, - 0xb0,0x87,0x91,0xef,0x8e,0x8f,0xa3,0xdd,0x56,0x6d,0x1f,0x24,0x9d,0xf3,0xe7,0xd2,0x91,0x0a,0xa6,0x7b, - 0x57,0xad,0x31,0xa2,0x21,0x5e,0x15,0x9f,0xe8,0xdd,0xb8,0x9c,0x44,0xc7,0xf0,0x92,0x8e,0x22,0x09,0x40, - 0x14,0x4c,0xc9,0x55,0x1b,0x88,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe7,0x2f,0x99,0xa0,0xe3,0x50,0xb4, - 0x06,0x9d,0x7a,0x47,0x02,0x4e,0xbe,0xd7,0x1a,0x75,0xea,0x2e,0x1a,0xae,0x9d,0x78,0xef,0x9e,0x6d,0x2d, - 0x30,0x39,0x73,0x1d,0xf0,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xad,0x90,0xfa,0x96,0x86,0x92,0x05,0x7b, - 0xf1,0x53,0xc0,0xa6,0x40,0x11,0xaf,0x13,0x4f,0xd7,0x57,0xf2,0x67,0xc2,0x08,0x08,0x4f,0x49,0x1a,0xf0, - 0x5f,0xb5,0x48,0xd0,0x02,0x5d,0x1f,0xa1,0x4e,0x48,0x20,0xc7,0xac,0xdb,0x2b,0x26,0x87,0x47,0x56,0x4b, - 0x5d,0x18,0x7f,0xf2,0x4d,0x30,0x7a,0xda,0x8a,0x5f,0xd9,0x71,0x95,0x5d,0xc2,0xc8,0xec,0xb8,0xe4,0x90, - 0xeb,0xc7,0x90,0x8f,0xd1,0xcf,0x3c,0xbb,0xe0,0xd4,0x36,0x5b,0xf0,0xef,0xef,0xd9,0x35,0x7e,0x8a,0xec, - 0x18,0x3f,0x8b,0xec,0x84,0x53,0x4f,0xb3,0x33,0xfe,0xfd,0x94,0x5d,0xf3,0xef,0x49,0x76,0xcc,0xbf,0x17, - 0xd9,0x27,0xfc,0xd0,0x78,0x11,0x71,0xe3,0x78,0x95,0x55,0x9c,0x7c,0x96,0x7d,0x0a,0x7a,0xf0,0x41,0x26, - 0x2d,0x14,0x13,0x12,0x83,0x6c,0xc0,0x4c,0x1c,0x32,0xd8,0x53,0xc9,0x44,0x4a,0x15,0x0d,0xaf,0x96,0x17, - 0x67,0x11,0x56,0x9b,0x4c,0x3e,0xa9,0x33,0x13,0x93,0x74,0x6e,0xa2,0xc4,0x34,0x99,0x6c,0xc3,0x8b,0xd2, - 0x06,0xfc,0xc4,0x49,0xc4,0x46,0x6c,0x44,0xf1,0xe4,0xe6,0x9d,0xb6,0xbe,0x64,0x33,0x1e,0x1f,0x20,0x8e, - 0xeb,0x96,0x2d,0x11,0xd6,0x5d,0xd3,0x50,0x43,0x14,0x15,0xe2,0x4a,0x97,0x0b,0x0d,0x88,0xb8,0x2b,0xf0, - 0xa9,0xdb,0x9e,0x8e,0xa7,0xd6,0xb9,0xd0,0xee,0x9c,0x2c,0x57,0xc1,0x79,0x91,0xf9,0x26,0xe3,0x44,0x6d, - 0x9c,0x49,0xb0,0x0c,0xf7,0x6f,0x18,0x02,0xa2,0x52,0x1c,0x37,0x62,0x5f,0x37,0x31,0x54,0xe7,0x46,0x38, - 0x14,0x2b,0x2d,0x79,0xdb,0x22,0x7a,0xbf,0x41,0xbc,0x2b,0x77,0x5e,0x56,0x6c,0xfa,0xe4,0x4d,0xf6,0x7c, - 0x8d,0x2a,0x90,0x88,0x64,0x34,0xa6,0x6a,0x9d,0xde,0xdd,0x86,0xa5,0xeb,0xba,0x8d,0x04,0xb4,0xcc,0xe3, - 0xf6,0x0e,0xab,0x65,0xd6,0xb5,0x8a,0xe5,0x72,0x60,0x7d,0x86,0xf9,0x35,0x04,0x8f,0x68,0x57,0xda,0xd8, - 0x5a,0xd5,0xad,0xa8,0x8f,0x0e,0xf5,0x1c,0xc3,0xd1,0x90,0x15,0x51,0xe6,0xdc,0xcf,0x56,0x56,0x3a,0x47, - 0xe5,0x87,0xac,0x3c,0xcc,0x84,0xcc,0x99,0x81,0x87,0xdc,0xac,0x98,0xe1,0xc3,0x39,0xc1,0x8d,0x53,0x5e, - 0xc6,0x41,0x9c,0xac,0x5a,0x9c,0x9a,0x71,0x4e,0x51,0x69,0xd6,0xd7,0xb0,0xf8,0xd1,0x3c,0xc3,0x43,0xd7, - 0xcb,0xd8,0x7c,0x9a,0x91,0xce,0xd9,0xb8,0xb5,0xb3,0xa0,0x8c,0x4d,0x1a,0x9b,0x3a,0x11,0xa7,0x88,0x90, - 0x8d,0xa9,0xd5,0xbc,0xf5,0xea,0x0d,0x52,0x59,0x58,0x26,0x12,0x3f,0x5e,0x9b,0x26,0xb1,0x9a,0x0b,0x9f, - 0x94,0x89,0x20,0x9d,0xf0,0xcd,0x2a,0x84,0x5e,0x3b,0xf9,0x2d,0x91,0x56,0xda,0x93,0x56,0xed,0x23,0x3d, - 0x6e,0x21,0x7a,0x00,0xe6,0xbe,0x47,0x85,0xa6,0xfa,0x47,0x3e,0x9a,0xe2,0x64,0xad,0xe6,0xd9,0x49,0x47, - 0x29,0xe3,0xfb,0x9f,0x41,0xbc,0x5a,0x11,0xb0,0xdf,0xde,0xae,0x62,0x76,0xd9,0xe9,0x15,0xed,0x4e,0x12, - 0x53,0x65,0x12,0x84,0x0c,0xfd,0x8a,0x39,0x76,0xca,0x32,0xab,0xe3,0xb9,0x3a,0xf5,0xae,0x13,0x31,0x17, - 0x1c,0x58,0xb7,0x25,0x7b,0x4b,0x4e,0xda,0x70,0x4e,0x77,0x76,0x24,0x95,0xab,0x48,0x75,0xbc,0xf4,0x52, - 0xd0,0x64,0x30,0x9a,0x73,0x50,0x80,0x3f,0x44,0x10,0xb0,0x5e,0x12,0xd7,0xa5,0x50,0x97,0x5d,0xeb,0x70, - 0x14,0x34,0x66,0x93,0x01,0xbb,0x00,0x2e,0xe6,0x97,0xaf,0xbb,0x7a,0x5c,0xd4,0xbc,0x63,0x9a,0x00,0x58, - 0xb0,0xef,0x9b,0xe7,0xd7,0x13,0x57,0x90,0xa6,0x22,0x25,0x9e,0xf4,0xa3,0x04,0x4e,0x0b,0x35,0x72,0xbd, - 0x81,0xb6,0x01,0xf0,0xc5,0xe1,0xe7,0x32,0x93,0xca,0xd4,0x7c,0x7b,0xfb,0x70,0x7f,0xdf,0x74,0xcc,0x44, - 0x63,0x83,0xe3,0xfb,0x5f,0x69,0x41,0xae,0xa0,0xe0,0xaa,0xec,0x97,0x09,0x30,0xd9,0xf6,0x81,0x72,0xed, - 0x4d,0x3a,0x23,0x4c,0xfd,0xf7,0x6b,0x0f,0x7b,0x56,0xbb,0xb0,0xa6,0x99,0x5c,0xd1,0xd6,0xf1,0x22,0xe8, - 0x3e,0xda,0x08,0x4c,0x4b,0xeb,0xd8,0x63,0xa4,0x8e,0x24,0x32,0x83,0xa0,0x96,0x13,0x5e,0x6b,0xc2,0xfc, - 0x12,0x99,0x4f,0x2b,0xd3,0x18,0x02,0xe0,0x19,0xbc,0x9f,0x12,0xde,0xcf,0xcf,0x88,0x22,0x26,0x44,0x45, - 0x2d,0x5b,0xe4,0x31,0xae,0xb2,0x8a,0x29,0xf8,0xdf,0x80,0x41,0x68,0x5e,0xaa,0xd1,0x82,0x48,0xdb,0x79, - 0x60,0xc1,0x19,0x30,0x59,0x08,0x4c,0x8d,0x5c,0x50,0x88,0xfc,0xc0,0x67,0x0c,0x91,0x96,0xcc,0x7f,0x47, - 0x2c,0x8c,0xee,0x15,0xd0,0x90,0x85,0x51,0x89,0xa2,0x84,0x9b,0xf0,0x38,0x2e,0xe5,0x58,0x62,0x11,0xf1, - 0xd2,0x12,0x8b,0x09,0x6b,0x3b,0xcc,0x17,0x5c,0x97,0xb1,0x34,0x29,0x47,0xc6,0x39,0x50,0x88,0xc2,0x31, - 0xf5,0x8f,0x88,0xbf,0x64,0x82,0xbf,0xd9,0xa1,0xfd,0x02,0xd4,0xd4,0x49,0x3e,0xfd,0xe4,0x0e,0x71,0x2e, - 0x94,0x72,0xa1,0x7e,0x99,0x35,0xad,0xaa,0x25,0xfb,0x2b,0x21,0x9c,0x4f,0x3d,0x0e,0xe8,0x44,0xe0,0x72, - 0x05,0xbd,0x6d,0x17,0xe1,0xd9,0xdc,0xe1,0x13,0x9a,0x35,0x3a,0xc8,0x84,0xb8,0x85,0x57,0xb8,0x2f,0xa6, - 0x63,0x98,0xe1,0xe8,0x78,0xe5,0x69,0xa9,0x39,0x13,0xbe,0x36,0xb8,0x27,0x91,0xff,0xf3,0x64,0xfc,0x0b, - 0x9d,0x06,0x2b,0x45,0x1b,0x0a,0xe4,0xd9,0xed,0x2d,0x5e,0xa7,0xf2,0x7a,0xe0,0xe8,0xd8,0x66,0xbd,0x86, - 0xe0,0xdc,0xe0,0x42,0xdb,0x21,0xdb,0xe1,0x7c,0x3e,0x04,0x3d,0x5d,0x4d,0x22,0x8e,0x74,0x33,0x60,0xd3, - 0xe7,0xbc,0xdb,0xd3,0xa4,0x23,0x34,0x9f,0x12,0x9e,0x5b,0x1d,0x65,0xef,0xe2,0x15,0x75,0x86,0x49,0x01, - 0x43,0xc5,0x01,0x5d,0xf1,0x58,0x09,0x36,0x10,0x5b,0x43,0xd9,0x57,0x85,0x1c,0xae,0xd1,0xe7,0xc8,0x2b, - 0x4f,0xef,0x9c,0xd9,0xd7,0x0f,0x38,0xb2,0x68,0xca,0xd9,0x04,0x85,0x50,0x61,0x3e,0x12,0xc2,0x37,0x30, - 0x38,0x98,0xd3,0xd9,0xa9,0x02,0xa7,0xa6,0x0d,0x9d,0xdf,0x69,0x78,0xe2,0xaa,0xd3,0xc0,0xc2,0x3e,0x87, - 0x23,0x27,0xab,0x32,0x62,0x2a,0x85,0x4d,0x40,0x50,0x23,0x0f,0x0c,0x5f,0x9c,0x99,0x49,0x19,0xda,0xb5, - 0xa7,0xb0,0x85,0x39,0x95,0x4d,0x20,0x9d,0x5c,0x82,0x90,0x62,0xa9,0x35,0x7e,0xe9,0x45,0x3c,0x1e,0xde, - 0x96,0x2a,0x9c,0xf6,0x1c,0x01,0x8e,0x68,0xe3,0x19,0x10,0x98,0x51,0x39,0xe6,0x4d,0x2b,0xcc,0xeb,0x8c, - 0x49,0x05,0x6e,0x68,0x96,0xac,0xb7,0x3b,0xd2,0x40,0xab,0xa5,0x6c,0x9d,0x82,0xb2,0x67,0xa0,0xf0,0xb2, - 0x0e,0xc5,0xa6,0x86,0xac,0x7d,0x59,0x8b,0xc4,0x53,0xbe,0x82,0x66,0xa0,0xc8,0x5e,0xc1,0xf9,0x69,0xec, - 0x52,0xb2,0x7a,0x12,0xa2,0x8d,0x4d,0x69,0x9c,0x83,0x85,0xd6,0x3d,0xc2,0xb3,0xd6,0x3c,0x12,0x70,0x15, - 0x44,0x9f,0x10,0x5a,0x60,0x28,0x43,0xb3,0xe7,0x01,0xdc,0x4b,0xfc,0xd4,0xa9,0x53,0x95,0x88,0xfb,0x45, - 0x74,0xb1,0xd2,0x7b,0xee,0x54,0xd8,0x23,0x4a,0x1f,0x54,0xc2,0x6e,0x7c,0x3e,0x89,0xe8,0xe5,0x9c,0xf9, - 0x8d,0x4a,0x0d,0xba,0x7d,0xe4,0xea,0xe6,0x29,0xa1,0x2d,0x42,0x46,0xce,0xea,0x29,0x3d,0x55,0x8e,0xfa, - 0x4c,0x97,0x8c,0xa4,0xa6,0x1e,0x6b,0x11,0x1f,0x3f,0x87,0xcf,0xab,0xb7,0xb4,0x06,0x89,0x6e,0xb0,0x17, - 0x91,0x50,0x56,0x79,0xd9,0xe5,0x61,0x72,0x36,0x82,0xcb,0x61,0xd6,0x10,0x4f,0x33,0xc0,0x7d,0x4e,0x04, - 0xbf,0xf4,0x21,0xa1,0x15,0x5d,0x49,0xc6,0xb3,0x3a,0x90,0x3f,0x17,0x1d,0x82,0x0a,0x51,0x90,0x41,0x70, - 0xe4,0xd6,0xfa,0xc1,0x69,0xdf,0x80,0x8a,0x3b,0x05,0x0a,0xd6,0xb7,0x23,0xca,0x19,0xf8,0x36,0xe2,0x66, - 0xc3,0x92,0xdd,0x7e,0x35,0xc3,0xc7,0x2e,0x2e,0x0e,0x00,0xe4,0xe6,0x90,0x7c,0x10,0x6c,0x84,0x84,0x2c, - 0xa1,0x74,0x11,0x94,0xa5,0x72,0xbd,0x80,0xf3,0x9f,0xc2,0x9d,0x51,0x74,0x64,0x3e,0xab,0x27,0x44,0xd9, - 0xc4,0xab,0xac,0x49,0x26,0x87,0x9f,0x68,0x64,0x47,0x3d,0x2b,0xdb,0x95,0x8f,0x67,0x45,0xe4,0x83,0x8f, - 0x40,0x83,0xe9,0x03,0xb2,0x41,0x24,0x1a,0x11,0x3b,0xc1,0x16,0xba,0x0a,0x6d,0xa1,0x5b,0x9a,0xa3,0xea, - 0xb0,0x39,0x4a,0x86,0x3c,0x60,0x89,0xac,0x21,0xaa,0xf0,0xf4,0x90,0x28,0x28,0x17,0x4d,0xe4,0xa8,0x67, - 0x96,0x3f,0x4d,0x26,0xd6,0xc9,0xeb,0x9b,0x7d,0x1a,0xe1,0xb7,0x31,0xd5,0x58,0xc4,0x53,0x05,0xbb,0x13, - 0xf6,0xc8,0x27,0x3e,0x91,0x08,0x34,0x1a,0x19,0xcd,0xcc,0xb7,0x31,0x47,0xc9,0x38,0x05,0xfa,0xf9,0x14, - 0xcf,0x59,0xb7,0xb6,0x3b,0xa5,0x3c,0xd1,0x64,0xe3,0xe6,0x2b,0x73,0x2b,0x00,0xed,0xfd,0x40,0x21,0x78, - 0x4a,0x6b,0x96,0xa4,0x30,0x7a,0x9c,0xa0,0x8a,0x49,0xaf,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0xfe, - 0x04,0x9c,0x97,0x7e,0x4b,0x7f,0xa5,0xcd,0xfe,0x07,0xd2,0x5c,0x4a,0x08,0xb7,0x72,0x62,0x32,0x5e,0xeb, - 0x29,0x94,0x91,0x4c,0x6c,0x4c,0xc1,0xa6,0xca,0xfa,0x33,0x28,0x31,0xd7,0x4a,0xdc,0xf7,0x05,0x40,0x39, - 0xda,0xcd,0x65,0x60,0xf4,0xf7,0x38,0xb2,0x9d,0x45,0xa3,0x1e,0xb7,0xad,0x69,0x5d,0x8c,0xe8,0x27,0xc5, - 0x32,0xbe,0xa8,0xd9,0x66,0xe3,0x2f,0xaa,0x55,0x36,0x99,0x76,0x42,0x14,0x0e,0x44,0x25,0x2b,0x0c,0xdd, - 0x84,0x43,0xd1,0x4c,0xd6,0xe1,0x91,0x6a,0x03,0x7b,0x75,0x98,0x87,0xf0,0xb6,0x67,0x58,0x18,0x0f,0xd9, - 0x85,0x9a,0x73,0x64,0x39,0x3e,0xcd,0x8a,0xd1,0xbd,0x8b,0x92,0x8e,0x53,0x04,0xc0,0x92,0xa7,0x51,0xd9, - 0xb0,0x70,0xe8,0x8c,0x48,0xa8,0xfc,0x0c,0x31,0x62,0x9b,0x25,0x82,0x2b,0x10,0x96,0x99,0x43,0x54,0x56, - 0x34,0xef,0x75,0xa3,0x6b,0x22,0x81,0x28,0x9b,0x52,0x27,0x06,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9b,0xe7, - 0x2d,0x82,0x65,0x98,0x8f,0xf1,0x1d,0x36,0x61,0x17,0x6b,0x14,0x4c,0xbc,0x66,0x6f,0xe2,0x22,0x10,0xd9, - 0x39,0x04,0xd4,0x44,0xa0,0x35,0x27,0xc4,0x13,0x2d,0xe9,0xdb,0x02,0x87,0x4c,0x92,0x9a,0x66,0xaa,0xc1, - 0xda,0x44,0x7b,0x39,0xcf,0xe8,0x93,0x4a,0x3e,0x09,0xe4,0xa3,0x04,0x0f,0xf1,0x69,0xe0,0xbf,0x52,0xc7, - 0x85,0x63,0x71,0x0a,0x38,0x8c,0x55,0xc4,0x36,0x55,0xb5,0x2e,0xce,0xca,0xb7,0xd6,0x4d,0x9a,0x26,0x86, - 0x20,0x83,0xb1,0x80,0x45,0x74,0x2c,0xca,0x24,0x66,0xd7,0x31,0xde,0x81,0x89,0x36,0xc7,0xb9,0xf2,0x39, - 0x6e,0xcb,0x3d,0x9a,0xf2,0xb6,0x33,0x6c,0x9c,0x2f,0x40,0x5b,0x90,0x28,0x9f,0x95,0x81,0x3e,0x62,0xcb, - 0x56,0x23,0x36,0x60,0x28,0x05,0xc5,0xd1,0xee,0xe7,0x1e,0xae,0xd7,0x42,0x9c,0xcf,0x69,0xf8,0xb0,0x87, - 0x0a,0x50,0x5a,0xe0,0xb4,0x11,0x06,0xb2,0x73,0xb2,0x03,0xd6,0xd6,0x36,0xab,0xa5,0xae,0xed,0xd9,0x83, - 0x72,0x26,0x85,0x89,0x0f,0xb6,0x48,0xe5,0x77,0x6b,0x40,0x71,0xd3,0x7d,0xcf,0xac,0xdf,0x49,0xdf,0x08, - 0x1b,0x11,0xde,0x3c,0x09,0x82,0xd3,0x4c,0x38,0x50,0xeb,0x11,0x07,0xa2,0xb1,0xd1,0xf9,0x5c,0xdb,0x14, - 0x77,0x34,0x56,0x56,0x89,0x5f,0x1d,0x6d,0x8b,0x89,0x24,0x8c,0x39,0xd8,0xf7,0x12,0x01,0x6a,0x34,0x64, - 0xdc,0x03,0x46,0xba,0x1b,0xf2,0x2c,0x43,0xbc,0x12,0xa2,0x2b,0xb3,0xbe,0x10,0x75,0x52,0xa6,0xac,0x72, - 0xdf,0x30,0x8f,0x13,0xdf,0x04,0xd7,0x17,0xd1,0xa8,0xb4,0xa1,0x46,0x25,0xd6,0x5e,0xb2,0x0b,0x82,0xf3, - 0x9b,0x6c,0x9f,0xd6,0xa4,0x9b,0xf6,0x68,0x1f,0x0b,0x64,0x02,0x7d,0x21,0xc1,0xfb,0xcb,0xf9,0x3d,0x58, - 0x5a,0x89,0xbd,0xc2,0x18,0x03,0x67,0xfe,0x35,0x7b,0xcd,0xc3,0xeb,0xb8,0x3f,0x69,0x74,0x72,0xc5,0xc1, - 0x02,0x66,0xcf,0xa0,0x8d,0xee,0x96,0x31,0xd6,0x58,0x1c,0xc9,0xc6,0x6f,0x96,0x43,0x89,0xdb,0x76,0x94, - 0x21,0xc4,0xca,0xa6,0x45,0xc1,0xf3,0xd6,0x85,0x38,0x39,0x46,0xbc,0x80,0x8e,0xed,0xe5,0xab,0x8e,0x7d, - 0x04,0xbb,0x28,0xe2,0x34,0xef,0x91,0x0b,0xec,0x9d,0x19,0x7c,0xf5,0xb2,0xed,0x50,0x26,0xfd,0xd5,0x99, - 0x84,0xae,0xf3,0xdf,0xec,0x1d,0xa4,0x9b,0xba,0x9a,0x49,0xe8,0xf4,0xdf,0x2b,0x0d,0x55,0x9d,0xda,0x8e, - 0x5d,0x1c,0x05,0x09,0x24,0x76,0x04,0x8c,0x6f,0xe3,0x28,0x94,0x12,0x01,0x9b,0xdd,0x56,0xb5,0x41,0x77, - 0x81,0x58,0xf1,0x45,0xcf,0x44,0x80,0xd5,0xa4,0x0c,0xa7,0x50,0xc0,0x30,0x78,0x1e,0x33,0xae,0xeb,0xc3, - 0xa5,0x0d,0xd4,0x0b,0xb3,0x77,0xb6,0x74,0x34,0x7c,0xc1,0x2b,0x48,0xca,0x36,0xec,0x8d,0xc6,0x0d,0x04, - 0xc8,0x4c,0x02,0x3c,0x03,0x2d,0x56,0x31,0x83,0x17,0x92,0x36,0xcf,0x36,0x74,0x0d,0x6c,0x89,0xbf,0x5d, - 0xb0,0xc7,0x16,0xa3,0x18,0x38,0xac,0xe1,0x17,0xb7,0x84,0xb8,0x16,0x5e,0x1a,0x32,0x79,0x74,0x6f,0x46, - 0x43,0xac,0x2b,0xb8,0x6c,0xb5,0x4e,0xef,0x3f,0xe7,0x3b,0x2f,0x03,0x2f,0x80,0x36,0xf4,0xec,0xbe,0x11, - 0x21,0xf3,0x53,0xe8,0x09,0xd2,0x77,0xbc,0xe7,0x7d,0x82,0x2a,0xc3,0x37,0x3a,0x80,0xb9,0x14,0x4c,0xcb, - 0xf8,0x89,0x08,0x0e,0xf3,0x84,0xe0,0xc8,0xf8,0x3d,0x4a,0xcd,0x43,0x68,0xd6,0xdf,0x5d,0xfe,0x76,0xa2, - 0x27,0xed,0x6e,0xb4,0x15,0xed,0xea,0xb4,0x4d,0x39,0x3a,0x7f,0x60,0x44,0x1e,0x02,0xd8,0x06,0xa0,0x0c, - 0x1d,0x8e,0x34,0x59,0x08,0x1d,0x48,0xbb,0x13,0x7a,0x2a,0xb7,0x3b,0x1f,0x55,0xbc,0x43,0x89,0xd0,0xcd, - 0x50,0x27,0x36,0x1e,0x48,0x2f,0xbe,0xd8,0x0d,0x02,0x02,0xfc,0xdf,0xcd,0xa8,0x17,0x89,0xa2,0xdf,0x32, - 0xd8,0x95,0xac,0xa4,0xe9,0xb7,0x26,0xe8,0x32,0x8a,0xc6,0x1d,0xf1,0x5c,0x6b,0x62,0x02,0xc4,0xda,0x84, - 0xde,0x45,0x75,0x3a,0xac,0x8e,0x37,0xf0,0x20,0x40,0x77,0x4d,0xdd,0xc3,0x61,0xe7,0xdc,0x7a,0xd4,0x5c, - 0x9c,0x45,0x69,0xb4,0xc8,0xdb,0x73,0x36,0x34,0x9a,0xc8,0xe3,0x86,0xb6,0xe8,0x49,0x6b,0xa3,0xfb,0x6c, - 0x6a,0x38,0x6d,0x8d,0x2e,0xea,0xde,0xef,0x2b,0x5d,0x5f,0x7f,0xd0,0xd0,0x43,0x57,0x72,0x0f,0xcd,0x5d, - 0xb1,0x34,0x67,0xc5,0x45,0x34,0xa4,0x4a,0xf9,0xb1,0xb7,0x57,0xd8,0xe6,0xb2,0xd6,0xa7,0x3d,0x1f,0x21, - 0xeb,0x79,0x5d,0x84,0x6e,0xdc,0x16,0x4c,0x81,0x21,0xe0,0xa0,0x5d,0xc1,0x72,0x9e,0xbe,0x6d,0xc6,0x7d, - 0xb5,0x4a,0xc5,0xd6,0x50,0x73,0xfe,0xc5,0xe1,0x8f,0x5f,0x1c,0xb2,0x38,0x60,0xf1,0x68,0x08,0xf9,0xd4, - 0xb7,0xff,0xb2,0x7c,0x51,0xd5,0x83,0xb5,0xe0,0xaf,0x43,0x19,0x05,0xe1,0xe3,0x9d,0x1d,0x4e,0x62,0x8c, - 0x6c,0xeb,0x26,0xf8,0x90,0x87,0x22,0x00,0xdc,0x9f,0x44,0x88,0xed,0x63,0x6c,0x81,0xc6,0xc3,0x51,0x4f, - 0xbf,0x2c,0x64,0x92,0xfd,0x68,0x8e,0xfe,0xd0,0x3f,0x9c,0x75,0x7e,0xde,0x78,0x4c,0x1b,0xe3,0x54,0x8e, - 0xc4,0x42,0x14,0x01,0x3f,0xf7,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x09,0x16,0x51, - 0xc3,0x1b,0x31,0xae,0xcd,0x9c,0x8b,0x30,0x34,0xf3,0x0c,0x79,0xcd,0xba,0x3a,0x9a,0x53,0xcd,0x7e,0x65, - 0x9f,0x29,0xe3,0x44,0x89,0xb0,0xae,0xbb,0xbd,0x5d,0x15,0xec,0xd0,0x48,0x3f,0xc4,0x0d,0xf2,0x80,0x41, - 0x57,0x60,0x34,0x8f,0x21,0x55,0x7a,0x87,0x50,0x59,0xe7,0xd5,0x9c,0x38,0x75,0xae,0xa1,0x23,0x7b,0xc2, - 0x38,0xc3,0x04,0x50,0xc6,0xdd,0x14,0x23,0x93,0x0b,0xed,0xf7,0x5b,0x11,0x50,0x38,0xed,0xb2,0x38,0xc9, - 0x61,0x63,0x15,0x44,0x42,0x14,0x8f,0xb2,0x7a,0xbc,0xbb,0x5b,0xd0,0xd6,0x85,0x05,0x63,0x71,0x64,0x08, - 0xed,0x38,0xc7,0x61,0xef,0x3d,0x2d,0x03,0xcf,0x93,0x3f,0x0c,0x4c,0x9a,0x18,0x79,0x81,0xc3,0xd7,0xed, - 0xad,0xee,0x27,0x75,0xe7,0xdd,0x42,0xb2,0x70,0xc3,0x19,0x56,0x6e,0x09,0xaf,0x3d,0x2d,0x0f,0x4d,0xf6, - 0x73,0xbb,0x59,0xab,0x8f,0x2c,0x00,0x0e,0x8c,0x4a,0x6c,0x34,0xa2,0xb4,0x2f,0xb1,0x22,0xb2,0x83,0x48, - 0x61,0xc3,0x64,0x95,0x22,0x61,0xa9,0xb3,0x46,0xb8,0xf9,0x29,0x7e,0xea,0x09,0xcd,0x1a,0x4d,0xf1,0x4f, - 0x10,0x7c,0x65,0xd6,0x11,0xf7,0x77,0x30,0xba,0x46,0x07,0x1a,0x29,0xdc,0x79,0xa0,0x0a,0x18,0x4d,0xe0, - 0x24,0xa0,0x1f,0xbf,0xaf,0x44,0x16,0x3d,0xdb,0xd9,0x99,0x5b,0xa0,0x26,0xde,0x45,0xbe,0x86,0xcf,0xda, - 0xd0,0xb7,0x45,0x49,0x34,0x39,0x7f,0xb3,0x72,0xdf,0x60,0x0b,0xaf,0x3a,0x51,0x6d,0x4e,0x87,0x64,0xe3, - 0x62,0x9c,0xb7,0x0a,0x4d,0xf2,0xa8,0xad,0x15,0xc6,0x11,0xd9,0x6a,0xa5,0xc9,0xf5,0xb8,0x9a,0xfc,0x00, - 0x7f,0x29,0x49,0x8e,0x20,0x83,0x3e,0x8d,0xd9,0x29,0x60,0xee,0x22,0x7f,0x70,0x01,0xc4,0x11,0x34,0xe1, - 0x03,0xef,0x6c,0x71,0xde,0x6b,0x71,0xce,0x2d,0xf6,0x27,0xc1,0xb4,0xcc,0x6c,0xb8,0x9b,0xef,0x26,0x99, - 0xb2,0xd7,0x19,0x7d,0xc5,0xd3,0x1e,0xad,0x4a,0x99,0x98,0x96,0xfe,0x41,0x10,0xdb,0x35,0xd8,0xfd,0xb9, - 0x83,0xe3,0x86,0xa2,0xee,0xf4,0xcc,0x71,0xcd,0xf6,0x1c,0x8b,0xd9,0xc7,0x86,0xca,0x34,0x2e,0xd8,0x14, - 0x37,0x19,0x99,0xb8,0xe0,0xac,0x13,0x2f,0xfc,0x5b,0x76,0x51,0x24,0xaa,0x3c,0x24,0x78,0x27,0x18,0x1c, - 0xd5,0xf9,0xe5,0x1b,0x26,0xa3,0x2a,0x26,0xa7,0x76,0xa3,0x51,0xb4,0x1b,0xda,0x83,0x54,0x61,0x35,0x90, - 0x15,0x48,0xd8,0xd5,0x51,0x94,0x24,0xb4,0x3f,0x64,0x99,0x89,0x53,0xd2,0x01,0xa7,0xe4,0x01,0x93,0x0e, - 0x4a,0xae,0x35,0x31,0x71,0xeb,0x37,0x4d,0x60,0x7f,0x6f,0x37,0xa5,0xcf,0xad,0x80,0x0e,0xff,0x18,0xbb, - 0xc9,0x8a,0x0d,0x23,0xab,0xb8,0x94,0x50,0x1b,0xa6,0xbc,0x31,0x8e,0xac,0x61,0x1c,0x59,0xcb,0x85,0x09, - 0x7c,0x0c,0xf8,0x1e,0xf0,0x35,0x28,0x32,0x2e,0x50,0x00,0xde,0x78,0x32,0x70,0x85,0x68,0xe3,0x80,0x02, - 0xda,0x34,0xdc,0xe6,0xd9,0x8f,0x35,0x63,0x2d,0x71,0x9d,0xea,0x12,0xa1,0x45,0x79,0xae,0xeb,0x82,0xe3, - 0x6d,0xd3,0x0c,0xb5,0xb1,0x20,0x43,0x87,0x04,0x5b,0xeb,0x29,0x20,0x09,0x86,0x39,0x60,0x3e,0x89,0x1a, - 0xc3,0x68,0xa6,0x59,0xf8,0x09,0x0b,0xc7,0x57,0x59,0xdd,0x4b,0x62,0x7e,0xcc,0x88,0x86,0x10,0x0e,0xa1, - 0x53,0x20,0x63,0x2d,0xf4,0xca,0xb8,0x4b,0x30,0xb5,0xb8,0x4a,0xf2,0x6c,0x05,0x0a,0x7f,0x2a,0xcc,0x4c, - 0x4e,0xa0,0x0f,0x49,0x29,0xf8,0xb6,0x71,0xfc,0xae,0xbc,0xbd,0x7d,0x0f,0x83,0x8e,0x95,0x6c,0x7e,0x88, - 0x2b,0xe4,0xc9,0x14,0xb3,0x02,0x76,0x93,0x1f,0x54,0x3c,0x4d,0xb0,0xfb,0x2a,0xb6,0xc5,0xd7,0x40,0xe2, - 0x13,0x04,0xb7,0x43,0x60,0x5a,0x17,0x71,0xfc,0xcd,0x87,0xb8,0x2d,0x54,0x89,0xcc,0x24,0xfd,0x17,0x7d, - 0x97,0x20,0xd0,0x66,0xaf,0x10,0x32,0x83,0x55,0xf8,0x21,0x34,0x10,0xf8,0x67,0xcd,0x4e,0x77,0x05,0x07, - 0xc8,0xde,0xf8,0x50,0x43,0x54,0x92,0x45,0x44,0x69,0x57,0x97,0xa7,0xb4,0x3f,0x1a,0xda,0x2b,0xba,0x8c, - 0x24,0xec,0x58,0xf4,0xfc,0xf5,0x93,0xe7,0xcf,0x8c,0xad,0xb4,0xf0,0xf8,0x93,0xa8,0xad,0x69,0x2c,0x29, - 0x94,0xfc,0x9d,0xc0,0xe8,0xec,0xf5,0xe6,0xec,0xa1,0xfe,0x55,0x9b,0x10,0x02,0xdd,0x22,0xdc,0x0b,0xa2, - 0x1a,0x4f,0x73,0x2a,0x87,0x7a,0xcb,0x89,0x79,0x4e,0xa5,0x5e,0x5f,0x83,0x2e,0x3e,0xd3,0x6d,0x37,0x29, - 0x1a,0xf7,0x77,0x74,0x5a,0x91,0x2c,0xed,0xcc,0x17,0xa8,0x2a,0xae,0x24,0x19,0x1a,0xbb,0xd8,0xcf,0x50, - 0x91,0x77,0xf0,0x6f,0x7b,0x0d,0xaf,0x89,0x8f,0xcf,0x7f,0xf9,0xf8,0xf8,0xfd,0xf3,0xc7,0x9d,0x51,0x53, - 0xfa,0xd2,0x9f,0xa5,0x66,0x76,0x38,0xa6,0x66,0xa1,0x97,0xe7,0x96,0x74,0x0a,0x6d,0x01,0x35,0x11,0xdf, - 0xd5,0xf2,0x25,0x11,0x11,0xb3,0x82,0x70,0x0f,0x2c,0x6b,0xf2,0xb3,0x5c,0x90,0xa3,0xb2,0x5d,0xe9,0xdd, - 0xf1,0x22,0x14,0x04,0x2c,0x45,0xc6,0xed,0xc0,0x15,0x30,0x2e,0x5b,0xd9,0x86,0xb3,0xed,0xfd,0xf5,0xc0, - 0x32,0x04,0x90,0xf0,0x4b,0x6f,0x3f,0x5a,0xd2,0x8d,0x83,0xef,0xe4,0x66,0xaf,0xc8,0xa6,0xc4,0xb5,0x95, - 0x21,0xc3,0x80,0xdd,0x56,0x19,0x5e,0x81,0xe5,0x16,0x90,0xcb,0x82,0x39,0xea,0x17,0xca,0x4d,0xa1,0xc4, - 0xe9,0x56,0x06,0x69,0x7d,0x7b,0x27,0x1a,0xfc,0x28,0x0a,0x98,0x2e,0xc5,0x03,0x5c,0x50,0x32,0x06,0xc6, - 0x1d,0x62,0x8f,0x84,0x8b,0xe3,0x4b,0x2e,0x67,0xec,0x8d,0x4b,0x60,0xfb,0xa6,0x35,0x04,0x19,0xc3,0x1e, - 0x5b,0xd2,0x0b,0xd1,0xe4,0xcc,0xe8,0x39,0x58,0x46,0x58,0xbe,0x54,0x86,0x9c,0xf3,0x2a,0xb9,0xac,0xc3, - 0x28,0xf1,0xac,0x08,0x5f,0xa4,0x79,0xb3,0x41,0x4a,0x38,0x79,0x07,0x61,0xd3,0x6b,0xd6,0x1f,0x11,0xf1, - 0x3f,0x36,0x58,0x87,0x2d,0x93,0x21,0x0c,0x3a,0xe6,0xb8,0xb1,0x05,0xc6,0xcc,0x95,0x68,0x22,0x8b,0x59, - 0x42,0x19,0x37,0xd9,0x3b,0xa0,0x80,0xd7,0x2d,0x4b,0x10,0x15,0x5c,0xb3,0x0a,0x18,0x60,0xea,0x0b,0x2e, - 0x38,0x70,0x07,0x81,0x58,0x7d,0xa9,0x06,0xa7,0xbe,0x2f,0x98,0x35,0xe1,0xb2,0x7e,0xdb,0x6e,0x38,0xc9, - 0xc5,0x6c,0x97,0x15,0x38,0x6c,0xb4,0xc6,0x2c,0xfc,0x9c,0x70,0xbb,0x5c,0xf2,0x40,0xed,0x9f,0x67,0xc5, - 0xee,0xc1,0x3a,0x20,0x9b,0x18,0x75,0x6e,0x1f,0x88,0x2a,0x74,0x85,0x3f,0x73,0xb6,0x10,0x27,0x96,0x6c, - 0x49,0xff,0x67,0xf4,0xdf,0x3a,0x64,0x0e,0x08,0x51,0xb0,0xb9,0xd8,0x24,0xb7,0x0d,0xe3,0x62,0xd1,0x89, - 0xd8,0x24,0x5f,0x7c,0x2d,0xb6,0xdd,0x5f,0x3f,0xa4,0x21,0x8b,0x7c,0x74,0xfb,0xc0,0xef,0xc9,0x69,0xf2, - 0xc5,0x97,0xbd,0x02,0xd3,0x4e,0x81,0x55,0xf2,0xf5,0xdf,0x7b,0x05,0x56,0x9d,0x02,0xf3,0xe4,0xcb,0xff, - 0xea,0x15,0x98,0x77,0x0a,0x1c,0x3c,0xfc,0x12,0x1c,0xe3,0xed,0x2d,0x3d,0xf0,0x66,0x0e,0xbb,0xb8,0x7b, - 0x90,0x0c,0x67,0xec,0x21,0xe3,0xf4,0xf6,0x76,0x49,0xfc,0x55,0x72,0xd3,0x5c,0x16,0xc6,0x63,0x60,0x9a, - 0x53,0xad,0x5f,0x7c,0x99,0xc2,0xf0,0x40,0x8c,0x66,0xc7,0x92,0xf4,0x75,0xda,0xf4,0x92,0xbe,0xfe,0x7b, - 0xba,0xea,0x25,0x7d,0xb9,0x9f,0xce,0x76,0x77,0x3b,0x29,0x07,0xe9,0x6c,0x6f,0xaf,0xf3,0xd9,0x41,0xba, - 0xec,0x96,0xf9,0xfa,0x8b,0x74,0xd9,0x2d,0x73,0xf0,0xf0,0x8b,0xf4,0xb4,0x5b,0xe8,0xe0,0xe1,0x57,0xe9, - 0xe9,0xde,0x1e,0x28,0x33,0x99,0x10,0xbf,0xe7,0x2e,0x32,0x1a,0x8e,0x5a,0x18,0x96,0x6b,0x7c,0xc1,0xe1, - 0x25,0xc5,0xf9,0x25,0x5e,0x98,0x71,0xd3,0x98,0x2f,0x20,0x56,0xd9,0xdb,0x4b,0xc6,0x8b,0x9d,0x9d,0x63, - 0x13,0xc3,0x77,0x91,0xb0,0x86,0x00,0x86,0xfe,0x22,0x70,0x75,0xf6,0x23,0xd5,0x24,0x66,0x28,0x62,0x96, - 0xdd,0x5e,0x1a,0xed,0x41,0x2c,0xd5,0xa2,0x62,0x09,0xca,0x0f,0x16,0x4c,0xe1,0x26,0x7f,0x0e,0x2e,0x07, - 0x97,0x80,0x78,0xf8,0xca,0x43,0xf8,0xaa,0xb2,0x01,0x7a,0x3f,0xf3,0x92,0xbb,0x28,0x8e,0x44,0xc0,0xf9, - 0xc8,0xde,0x4b,0x72,0xff,0x98,0x52,0xef,0x13,0x71,0x72,0x3f,0x4a,0xe2,0xfb,0x1c,0x85,0x3e,0x1a,0x77, - 0xb3,0x5c,0x5f,0xca,0xc4,0x97,0x52,0x91,0xcb,0x28,0x09,0x36,0xd6,0x90,0x2d,0x87,0x12,0xbf,0x2a,0x70, - 0xbc,0xe3,0xcd,0xd7,0x75,0x72,0x8e,0x0e,0x7f,0x5a,0x21,0xc2,0x1a,0x9b,0x44,0xd5,0x47,0x1c,0x18,0x38, - 0xa0,0x4a,0xff,0xd5,0x17,0xa3,0xb4,0xa3,0x45,0xbe,0xec,0x9a,0x9e,0xf8,0x30,0x40,0xeb,0x4d,0xeb,0xf2, - 0xa0,0xc0,0x3a,0x49,0x0f,0x03,0x6b,0xa2,0x7f,0xba,0xb3,0x3e,0x6e,0x9d,0x76,0xde,0x06,0x08,0xf1,0xd8, - 0xe0,0x86,0xef,0xf0,0xd0,0xca,0xc4,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0x2c,0xf4,0x25,0xe2,0x08,0xfb, - 0xb6,0xb2,0xbe,0x05,0xe8,0x7f,0x5a,0x99,0xd6,0xde,0x4a,0x90,0x6b,0x78,0x9d,0x2f,0x25,0x0e,0x91,0x79, - 0xc7,0xd1,0x76,0x47,0x85,0x81,0x07,0x9e,0xf6,0x34,0x2d,0x34,0xa1,0xc0,0xef,0xac,0xd7,0xb6,0x1e,0xaa, - 0x3e,0xce,0x50,0xed,0xdc,0x62,0x75,0x16,0x6d,0xc3,0x65,0x87,0x90,0x3d,0x4c,0x2a,0xc3,0x22,0xec,0x40, - 0x4b,0xf9,0xff,0xd7,0xe4,0x1b,0xff,0xd9,0xb0,0x88,0x75,0xa9,0xa5,0x52,0x3b,0x5c,0x8a,0x70,0x32,0x7c, - 0xc3,0xe5,0xd8,0x87,0x61,0x49,0x71,0x76,0xde,0x4e,0x62,0xca,0x37,0x44,0xf2,0x42,0x97,0xab,0x48,0xb9, - 0x0a,0x38,0x3f,0x49,0xeb,0xd1,0xa2,0x98,0xcd,0xe6,0x12,0x82,0x26,0x5a,0x54,0xab,0x46,0xaf,0x96,0x91, - 0x35,0xf8,0x1d,0xd7,0x46,0x4d,0x3d,0xf1,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x61, - 0x02,0xab,0xc5,0x53,0x14,0xd3,0xbe,0x80,0x76,0x59,0xc6,0x72,0xcf,0x06,0x16,0x5c,0x8f,0x71,0x51,0xeb, - 0x05,0x64,0x67,0x4d,0xc0,0xb9,0x98,0x6b,0xdd,0xa7,0x19,0x2e,0xe5,0x19,0x6f,0xe8,0xfe,0x8a,0xc9,0xd4, - 0xdd,0x2c,0xde,0x38,0x37,0xbd,0x46,0x2e,0xf2,0xc9,0xa6,0x94,0x7f,0xd8,0xa8,0xe9,0x51,0x7a,0x38,0x55, - 0xcd,0x51,0xda,0x0c,0x82,0x40,0xed,0x40,0x40,0x28,0xa4,0x82,0x6f,0x70,0x60,0x6f,0xaa,0xdb,0x5b,0x79, - 0xb9,0xd8,0xe3,0xd8,0x2c,0x48,0xe2,0x9d,0xcc,0x31,0x78,0x6d,0x18,0x4d,0x1c,0x74,0xa2,0xc2,0x10,0x2f, - 0x18,0x4b,0xc8,0x14,0xda,0xc5,0x61,0x93,0x0f,0x0a,0xfb,0x41,0x2f,0xd4,0x6d,0x11,0x9e,0x9a,0x45,0xb7, - 0x37,0xfe,0x6b,0x96,0xcc,0x04,0x20,0x1a,0x46,0xc2,0x09,0x60,0xd5,0x58,0xed,0x17,0x7d,0xab,0x7d,0xe8, - 0x96,0xe0,0x14,0xc1,0x57,0xaa,0x20,0x50,0xe8,0x4d,0x61,0x63,0x67,0x55,0x88,0x9d,0x25,0x2e,0x16,0x96, - 0x5d,0x73,0x7e,0x8c,0x9d,0x26,0x43,0x2b,0xfe,0xaa,0x37,0x6b,0x62,0xa5,0x5f,0x64,0xd1,0xbd,0x7b,0x17, - 0x84,0xcc,0x18,0x81,0x82,0x70,0xc8,0xa2,0xd8,0x88,0x0b,0x29,0x63,0x8b,0x5a,0xde,0xba,0x2f,0x23,0xbf, - 0x3f,0x41,0x8a,0x45,0xb4,0x78,0x4e,0x20,0x2b,0x1d,0x89,0xb3,0x83,0x7c,0x7a,0x4c,0x7c,0xe7,0x6e,0x01, - 0xf4,0x68,0xf8,0xc9,0x2c,0x07,0xf5,0x58,0x20,0x60,0x3d,0x1b,0xdd,0x58,0xf0,0x21,0x1c,0x0b,0x5e,0x2f, - 0x21,0xee,0xfc,0x6a,0x89,0xeb,0x06,0xa9,0x8b,0xe9,0x7d,0x83,0x63,0xef,0x2b,0x6b,0x9a,0xe3,0x43,0x9b, - 0x6c,0xc5,0x68,0x70,0xeb,0x26,0xda,0xad,0x76,0xa3,0x75,0x14,0x2c,0x40,0xae,0x43,0x34,0x1e,0x22,0x37, - 0x9a,0xc2,0x1f,0x6b,0x1f,0xc0,0x30,0xb8,0xcc,0xea,0x30,0x4a,0x1e,0xed,0x43,0xea,0x88,0xdb,0xb9,0x5e, - 0xda,0xd4,0x23,0x4a,0xfd,0xb1,0x76,0x51,0x7a,0xe3,0x3f,0xf8,0xe3,0xb0,0x04,0x78,0xea,0x6f,0xf6,0x0e, - 0x26,0x37,0xd4,0xeb,0xd4,0x9f,0x3f,0x7f,0x10,0xc5,0x46,0xac,0x38,0x0f,0xc0,0xa6,0xfe,0x51,0x13,0xc6, - 0xc7,0x60,0xd6,0xa9,0x94,0xe6,0x12,0x1c,0xa7,0x89,0x09,0x9f,0x9f,0x40,0xb2,0x52,0x0b,0x3f,0xd7,0xd9, - 0xef,0x10,0x11,0x6c,0xb3,0xb3,0x5d,0xb2,0xd2,0xf1,0x77,0x75,0x86,0xf0,0xc3,0xc9,0x64,0x8e,0xe7,0x24, - 0xfd,0x1a,0x2c,0xed,0x77,0x75,0x28,0xa6,0xb2,0xf2,0x67,0xf1,0x90,0xa4,0x2a,0xfe,0xa8,0x6d,0x05,0x1c, - 0x58,0x96,0xef,0xe1,0x5a,0xc1,0xef,0x3b,0xe1,0xa0,0x86,0x8e,0x7c,0xe1,0xba,0x20,0x80,0xdc,0xdd,0x55, - 0x5f,0x7f,0x61,0x9e,0xf7,0xf6,0xd8,0xd4,0x8e,0xe6,0xf0,0x77,0xae,0x49,0x40,0x6b,0x8d,0xc6,0x6d,0xcc, - 0xf3,0xee,0x78,0x7f,0x36,0xe3,0xb5,0x29,0x3f,0xd3,0x58,0xd5,0xef,0x35,0xd4,0x8d,0x5e,0x93,0x6c,0xdc, - 0x3b,0xd9,0x37,0x62,0x62,0x6e,0xb4,0x49,0xa3,0x7b,0x44,0x97,0xc6,0xb8,0x43,0x91,0x6a,0x34,0x77,0x76, - 0xa1,0x80,0x3c,0x32,0x44,0x04,0x4e,0xa8,0xda,0xdb,0x0f,0xff,0x54,0x87,0x04,0xd5,0xee,0xee,0x1f,0xa1, - 0xe9,0xfb,0x34,0x28,0xf8,0x47,0xfd,0x4d,0xf6,0x63,0x00,0xf7,0xab,0x30,0x6a,0x38,0x93,0x87,0xed,0xed, - 0x2d,0xd3,0x91,0x81,0x10,0x9b,0x27,0x29,0x74,0x36,0x94,0xd9,0x64,0x07,0x5a,0x5e,0x0b,0xf8,0x65,0x8c, - 0x93,0x71,0xe0,0x98,0xa7,0x43,0xa9,0x88,0x46,0xa4,0x0a,0x9d,0x8c,0x8e,0x71,0x5d,0xe4,0xc7,0xbc,0x81, - 0x61,0x4f,0xe5,0xdf,0x42,0xa9,0xd9,0xb9,0xf7,0xf0,0xcc,0xaa,0x3b,0xe2,0x49,0x98,0xde,0x9e,0xb3,0x5f, - 0x25,0x9d,0xcd,0x7c,0x17,0x63,0xf7,0xc6,0x17,0xbf,0x91,0xbf,0xaf,0xfb,0xe1,0x68,0xb7,0x8a,0xd8,0x5f, - 0x0f,0x38,0xdc,0xc4,0xce,0xce,0x92,0x37,0xa6,0xf8,0xb0,0xad,0x11,0xc2,0x18,0x71,0x09,0xd4,0xf7,0xf5, - 0x26,0x8f,0x88,0xd6,0xbe,0x2b,0x27,0x37,0xe6,0x1c,0x84,0xa5,0x8e,0x9c,0x65,0x08,0x2b,0x67,0xf0,0x7d, - 0x40,0xc9,0x2c,0xb5,0xd7,0x59,0xc5,0x74,0xaa,0x7e,0x5f,0x27,0x83,0x9c,0x29,0x22,0x5a,0x05,0xf3,0xd5, - 0x75,0x06,0x98,0xe9,0xd8,0x46,0xa5,0xda,0x76,0x02,0x9b,0x0a,0x6c,0xfe,0xb6,0x13,0xd7,0xe0,0x16,0x00, - 0xc7,0x83,0x9a,0x14,0x46,0x6a,0x55,0x56,0x86,0xef,0xe3,0xef,0x6b,0xc3,0xa4,0xf6,0x90,0x03,0x75,0xf4, - 0xf0,0x04,0x7a,0x20,0x83,0x3b,0xde,0x95,0x93,0xc8,0x5c,0x7f,0x9d,0x5a,0xeb,0x44,0x0e,0x12,0xed,0x7d, - 0x01,0xf8,0x03,0x0e,0xf7,0xcc,0x7e,0xe6,0xfe,0xea,0x71,0x4a,0x5e,0xa3,0xbe,0xcb,0x42,0x62,0x20,0x8c, - 0xa4,0xa2,0xce,0xa7,0x97,0xf8,0xd4,0x64,0xf4,0x3e,0xc7,0x67,0x6b,0xf0,0x38,0xdf,0xb3,0x8a,0xfe,0x54, - 0xab,0xa5,0x56,0xb5,0x97,0x19,0x7f,0xef,0x42,0x02,0x04,0x0e,0x87,0x43,0x73,0x64,0x1d,0x6e,0x3a,0x33, - 0xe5,0x12,0x43,0x11,0xbb,0x4c,0x49,0x93,0xf5,0x3e,0xec,0x4a,0xb7,0xc2,0xd4,0xbb,0x04,0x5c,0xce,0xc7, - 0xa7,0x23,0xe3,0x2a,0x44,0xce,0x0a,0x51,0x54,0x61,0x22,0xd6,0x15,0x47,0x59,0x14,0x05,0xb9,0x2b,0x73, - 0xcb,0x20,0x4a,0x28,0xbe,0x2b,0xda,0xde,0xdd,0x6c,0xdc,0x93,0x8a,0x92,0x00,0xe5,0xbb,0x8f,0xaf,0x5f, - 0x71,0x02,0x97,0xae,0x87,0x43,0xe0,0x06,0x26,0x50,0x15,0x95,0x6d,0xd0,0x26,0x26,0xaf,0x28,0x57,0x7a, - 0x0c,0x9c,0x97,0x4b,0xd1,0x37,0x70,0xd2,0x72,0xa2,0xe6,0xdc,0x00,0xe6,0x53,0x64,0xc5,0x61,0x11,0x98, - 0x1f,0xf1,0xb5,0xc6,0x22,0x65,0x93,0xe6,0xf3,0xd1,0x31,0xbf,0x66,0x95,0xb1,0x62,0x6c,0x21,0x5c,0x8b, - 0x22,0x1b,0xf1,0xbe,0x4a,0xc6,0xcb,0x6c,0xae,0xb6,0xe3,0xd3,0x2c,0x4f,0x44,0xda,0xd0,0x50,0x3a,0xac, - 0xb3,0xdf,0xbe,0xfb,0xf8,0xf2,0xed,0x1b,0xd4,0x73,0x6a,0xc5,0x3f,0xc4,0x10,0x0e,0xb0,0x21,0x84,0x1b, - 0xd8,0xc1,0xdc,0x5f,0x8c,0x25,0x8e,0xd2,0x46,0x0f,0xc7,0xd7,0x1c,0xb8,0x38,0x43,0xc1,0xf1,0xdf,0x3a, - 0x31,0xa1,0x5e,0xc7,0xa7,0x6a,0x99,0x74,0xaa,0x0f,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x6b,0x4b,0xb6, - 0x89,0xf9,0x5a,0x91,0x18,0x93,0x96,0x79,0xfe,0xc7,0xb5,0x0f,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x5b,0x82, - 0x68,0x2a,0xae,0x6a,0x53,0x13,0xf4,0xad,0x60,0xaa,0xc0,0xdb,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68, - 0x3b,0x0a,0x92,0xb1,0x94,0xfe,0x31,0x48,0x48,0x6f,0xb2,0xb9,0xb1,0xbf,0x61,0x10,0xa9,0xe4,0x16,0x40, - 0x2a,0x13,0xf8,0x75,0x6a,0x7f,0xe6,0x2d,0x34,0xab,0xa4,0xaf,0xe7,0x3e,0xd2,0xb0,0x55,0x51,0x7f,0x40, - 0xea,0xe4,0x22,0xee,0xbc,0x73,0xec,0x84,0xc0,0x9b,0x51,0x7f,0x4e,0xa1,0xbc,0xb8,0x43,0x3b,0xfb,0xa9, - 0xe8,0xc5,0x2e,0x39,0xd3,0x5d,0x19,0x18,0x0b,0x8c,0xaa,0x9e,0xec,0xab,0x08,0xfb,0x91,0x88,0x2e,0xac, - 0x71,0xcf,0xd5,0x46,0x6e,0x65,0x72,0x93,0x20,0xe2,0x8f,0xd9,0xa7,0xab,0xac,0x53,0x5c,0xcd,0x61,0x90, - 0x5a,0xd5,0x0b,0xbe,0x4e,0x7e,0xc6,0x69,0x50,0x10,0x34,0xf2,0x40,0xfb,0xf0,0x34,0x5b,0xdd,0xde,0xce, - 0xd5,0x12,0xf3,0x65,0x36,0xaa,0x54,0xce,0x5b,0xd9,0xa4,0xf4,0x6a,0xc8,0x60,0x04,0x6f,0x76,0xb8,0xf8, - 0x4d,0x2d,0x93,0x74,0x39,0x16,0xc3,0xd6,0x2e,0xb4,0x86,0xda,0x76,0xa6,0x23,0xdb,0xf1,0x80,0x80,0xed, - 0x3f,0x12,0xbc,0x5d,0x38,0x4d,0x68,0x02,0xfb,0x16,0x76,0x16,0x93,0xe4,0xb6,0x9f,0xec,0x1d,0x97,0x61, - 0x69,0x5b,0x8d,0x6c,0xfc,0xb5,0xaa,0x53,0x5b,0xd5,0xff,0xcc,0xab,0xf4,0x6b,0xa9,0x83,0x43,0x63,0x9e, - 0x12,0x92,0x9a,0xc1,0xa6,0x71,0x67,0xe7,0x31,0x2c,0x11,0x1b,0x65,0xb1,0x14,0x67,0xcf,0x92,0x38,0xcf, - 0x38,0x9f,0x80,0xf7,0x94,0x7e,0x5d,0x31,0x13,0xeb,0x04,0x18,0x20,0x0f,0x59,0x82,0x6b,0x1d,0x7a,0xa5, - 0x71,0xa4,0x50,0x23,0xc7,0x90,0x08,0x1c,0x2c,0x8c,0x63,0x13,0xc2,0x40,0xe8,0xb0,0x15,0x31,0x65,0xa9, - 0x8d,0x5d,0xcb,0x83,0x5f,0x9b,0xdd,0x07,0x89,0xbb,0xc4,0x69,0xc0,0x23,0x3c,0xa8,0x87,0x83,0x6b,0x21, - 0xb0,0x58,0xba,0x99,0x18,0x06,0xd9,0x85,0x86,0x25,0x66,0x27,0xf2,0x0d,0xd1,0x60,0x62,0xac,0x2f,0xb7, - 0x70,0xf3,0x63,0xd0,0x29,0xd6,0xc8,0x44,0xac,0x24,0x6f,0x87,0x65,0x8a,0x71,0x49,0x5c,0x96,0x1d,0x60, - 0x18,0x7b,0xff,0xff,0xf7,0x59,0x10,0x64,0xbe,0x39,0x11,0x2e,0x5d,0x85,0xa9,0x72,0x08,0x80,0x09,0xe8, - 0x8b,0xf0,0xed,0x94,0xc8,0xd4,0x79,0x59,0xf3,0x5f,0x9a,0x3e,0x58,0x9f,0xd8,0x69,0x0b,0xa6,0xb2,0x86, - 0x2d,0xd8,0x18,0xde,0xd1,0xee,0xb6,0xa9,0x5a,0x61,0xb8,0x00,0x71,0x8b,0x26,0xa1,0x94,0x18,0x9c,0x63, - 0xbe,0x47,0xe3,0xae,0x6e,0x06,0x73,0x7e,0xa2,0x0d,0x69,0x63,0x2c,0x40,0x36,0x6e,0x6d,0xb1,0x48,0xd4, - 0x5d,0x07,0xcc,0x2c,0x30,0x4d,0x0b,0xa4,0xc6,0xb8,0xc9,0xe2,0x79,0x11,0xb7,0xc6,0x6a,0x2b,0xba,0x88, - 0x10,0x00,0x33,0x66,0x65,0xb1,0x36,0x28,0x7c,0x00,0x37,0x3e,0x67,0xdc,0xb8,0x41,0x9e,0x5c,0x72,0x5f, - 0xde,0x17,0xa1,0x03,0xcd,0x7b,0x14,0x0d,0x05,0x31,0x57,0xba,0x6b,0x3d,0xb2,0x29,0xf3,0x66,0x29,0xc4, - 0x66,0x32,0xc7,0x05,0x2a,0x03,0xcb,0x2f,0x40,0x28,0x1c,0x48,0x20,0x4f,0xa0,0x95,0x36,0x7b,0x30,0xf4, - 0x2f,0x35,0x4d,0x0d,0xd5,0xb6,0xb3,0x33,0x1f,0x6c,0x05,0x01,0xb8,0x0d,0x1c,0x07,0x4e,0xa7,0x3d,0x4e, - 0xfa,0xa9,0x14,0x50,0x38,0x06,0x8c,0xc9,0x45,0x6d,0x1d,0x82,0x98,0xce,0x82,0xd8,0x8c,0xa3,0x58,0xf3, - 0xb9,0xe0,0xa4,0x0a,0x36,0xf4,0x4a,0x93,0xc1,0xf0,0xe2,0x65,0x31,0x79,0x53,0xa4,0xaf,0x0b,0xc2,0xf8, - 0x3d,0x1f,0xb4,0x61,0xc5,0x4e,0xa3,0xe6,0xb0,0x5b,0x67,0x7f,0xb3,0xae,0x8e,0x48,0xc2,0x61,0x08,0x6f, - 0xb7,0xbb,0x3b,0xfd,0x06,0x9a,0x45,0xb8,0x9b,0x8d,0x87,0x9d,0x9a,0xa6,0x8f,0x4c,0xbe,0xc2,0x35,0xcd, - 0x6a,0x40,0x49,0x84,0xa6,0x02,0xa7,0xd7,0x70,0xc9,0x08,0xda,0xcd,0xad,0xba,0xd4,0xe4,0x53,0x13,0xc0, - 0x83,0xcf,0x12,0x89,0x39,0x51,0x1f,0x3e,0x2b,0x76,0xa3,0x67,0x70,0xb4,0x8a,0x8e,0x9c,0xc9,0x1e,0xac, - 0xa2,0x2a,0x9b,0xb7,0xaa,0xe5,0xaa,0xeb,0x6e,0x76,0x9e,0x7d,0xd0,0x1c,0x4a,0x16,0x4a,0xd8,0xc3,0x77, - 0x77,0x54,0x32,0xb5,0x79,0xc3,0x95,0xac,0x50,0x09,0x8c,0x5d,0x69,0x8e,0xf6,0xa1,0x7e,0xf0,0xb7,0x01, - 0xf3,0x84,0xe7,0x6c,0x82,0x5e,0xd2,0x23,0x15,0xc8,0xa9,0x80,0xb5,0x75,0x27,0x8a,0x01,0x16,0xd8,0xc5, - 0x64,0x65,0x4a,0xbc,0x40,0x89,0x15,0x95,0x98,0xba,0x12,0xa7,0x19,0xa5,0xc7,0x73,0x1f,0xb5,0x3d,0x07, - 0xed,0xfb,0xcd,0x3e,0xd5,0xba,0x9a,0xbc,0x2c,0xd2,0x17,0x05,0x73,0xfb,0xc9,0xa4,0x94,0xc6,0x6c,0xdd, - 0xa9,0xad,0x22,0xdd,0x57,0x26,0x78,0xb3,0x32,0xd0,0x92,0xce,0x95,0x83,0x95,0xf4,0x14,0x57,0x32,0x7f, - 0xb4,0x57,0x07,0xa6,0x52,0xcb,0xce,0xce,0x13,0x23,0x4b,0x97,0xd9,0xb3,0x91,0x40,0xa2,0xa3,0x10,0x0d, - 0x7c,0xd0,0xfe,0x90,0x1e,0x5b,0x4c,0xf7,0xc8,0xc5,0x5b,0x4c,0xda,0xcc,0x85,0xe0,0xf6,0xfc,0xba,0x1d, - 0x47,0xe7,0x72,0xb1,0xae,0x44,0x39,0xf4,0x2e,0x7f,0x0c,0x84,0xba,0xfb,0x58,0x4b,0xa0,0xaa,0x75,0xb8, - 0xd3,0x1e,0x87,0x24,0xd6,0x81,0xfe,0xe2,0x6f,0xe6,0xba,0x5a,0x2f,0x40,0xd8,0x3b,0x08,0xcb,0x7f,0x0c, - 0x68,0x29,0x90,0x50,0x44,0xef,0xc0,0xad,0x0b,0xf7,0x04,0xe5,0x44,0x9c,0x9f,0xb0,0x33,0x85,0x7b,0x33, - 0xd7,0x76,0xce,0x25,0xf2,0x9e,0x4f,0x8f,0xad,0x0c,0x34,0x3b,0xd1,0x96,0x1b,0xf2,0x1b,0x3a,0x71,0xbe, - 0x5a,0x6c,0x73,0x49,0x9f,0x11,0x84,0xeb,0x9a,0x2b,0x3f,0xe0,0xa8,0x62,0x20,0x48,0x70,0xe3,0x9d,0xa7, - 0x6d,0x10,0x91,0x8c,0x10,0xa3,0x82,0xff,0x2c,0x6f,0x6c,0x02,0x92,0x91,0x7c,0xc6,0xaa,0xbc,0x53,0xfb, - 0xfa,0xb1,0x92,0x84,0xa5,0x4d,0x78,0xcc,0x34,0xbb,0x24,0xc2,0x43,0x98,0xa6,0x54,0xe7,0xe6,0xab,0x73, - 0xf7,0x6e,0x3f,0xbb,0x70,0x29,0xe1,0x77,0x0b,0x4a,0x3d,0xd1,0xb0,0x2b,0x7f,0x8e,0x2a,0xd5,0x99,0xad, - 0x5c,0x5d,0xa3,0x3c,0xae,0x81,0x97,0x8c,0x63,0xd7,0x2b,0x3b,0x31,0xea,0xd2,0x7d,0xfb,0x98,0xeb,0x55, - 0x57,0xae,0x09,0x75,0xcf,0x7e,0x6d,0xb2,0x3e,0xf9,0xfe,0xb9,0xef,0x9f,0x52,0xda,0xcc,0xec,0x29,0xf5, - 0x21,0xbb,0xac,0xd5,0x63,0xfa,0x63,0x0c,0xfc,0xc7,0x8f,0x89,0x02,0x72,0x24,0xd7,0x87,0x2c,0x7e,0x9c, - 0xd9,0xd7,0xc4,0x72,0xac,0xbc,0x12,0x1f,0xb3,0xed,0x0f,0x41,0x10,0x26,0xe2,0x48,0xd9,0xfa,0xbf,0xaa, - 0x40,0x07,0x22,0xbe,0x30,0x96,0xe4,0xe3,0xed,0xed,0x15,0x0e,0x4f,0x5a,0x83,0x2b,0x01,0x81,0xb7,0xd9, - 0xc7,0x9d,0x9d,0xd9,0x64,0x46,0xbb,0xe1,0x37,0x3c,0x5e,0x4c,0x2e,0xd2,0xa5,0x7a,0x8e,0xc7,0xf3,0xc9, - 0x39,0xed,0x8b,0x57,0xd9,0xc7,0xc9,0xe5,0xed,0xed,0x22,0x5d,0xa8,0x97,0x48,0x1d,0xf0,0x9f,0xb9,0x9a, - 0x5c,0xa5,0x67,0xea,0x05,0x15,0xbc,0x77,0x7b,0x7b,0x9d,0x5e,0xab,0x67,0xf4,0xf8,0xe9,0xf6,0xf6,0x38, - 0x3d,0x56,0x6f,0x88,0x6f,0x29,0xe2,0xa7,0xc9,0xe4,0xa9,0x4c,0x5b,0xfa,0x34,0x51,0xef,0x32,0x3e,0x08, - 0x1b,0x56,0xd8,0xab,0xd7,0xd9,0x73,0x1d,0xbf,0x4c,0xd4,0xfb,0xcc,0xc3,0x49,0xe8,0xa9,0x9b,0xdc,0xbc, - 0x23,0x90,0xbc,0x07,0x49,0xec,0xf3,0x44,0xf1,0xef,0x6f,0x74,0x54,0xbe,0xf7,0xa0,0x39,0x89,0xa9,0x04, - 0x67,0xbc,0x4d,0xd4,0xb3,0x9d,0x9d,0x67,0x6c,0x69,0xf1,0x62,0x67,0xe7,0x05,0xfc,0x19,0x82,0x5a,0x4d, - 0xe0,0x76,0x03,0xaf,0xcd,0x79,0x45,0x03,0xfb,0x81,0xb6,0x83,0x37,0x91,0xf2,0x8d,0x5a,0xa1,0x91,0xcc, - 0x35,0xf8,0x54,0x65,0x42,0x2b,0x1f,0x23,0xec,0x11,0xb3,0x9a,0xfe,0xf9,0x90,0x05,0x6b,0x47,0x63,0xbe, - 0xc4,0x54,0x0c,0x13,0x4b,0x31,0x4c,0xd4,0xd8,0x61,0x6e,0xdf,0xf4,0xdf,0xe3,0x44,0xbd,0xdc,0xd9,0x79, - 0x49,0x5d,0x7f,0x0f,0xb3,0xa9,0x57,0x3b,0x3b,0xaf,0xd0,0x67,0x8c,0xf8,0xca,0x0c,0xe8,0x4a,0x46,0xac, - 0x2e,0x75,0x38,0x27,0x57,0xe1,0x7c,0xbc,0xed,0x4c,0xc7,0xed,0xed,0x6b,0x3a,0xc7,0x7f,0xd3,0xf1,0x9b, - 0x64,0x12,0x9c,0x42,0xef,0xd5,0x9b,0x24,0xfd,0x84,0xe2,0x2b,0x6a,0x0c,0x48,0x44,0x05,0x13,0x21,0x56, - 0xb9,0x75,0xd8,0x1f,0xea,0x06,0x57,0xf5,0x3e,0xee,0x7a,0x80,0x19,0x04,0xe2,0x85,0xdd,0xd4,0x9d,0x4f, - 0x61,0xf3,0x71,0x67,0x82,0x63,0xe2,0x3c,0xfd,0x24,0xba,0x19,0x83,0xae,0x7b,0x28,0x5d,0xfc,0x51,0x65, - 0x3a,0xb3,0x32,0x51,0xe7,0x04,0x88,0x08,0xb4,0x7a,0x29,0x53,0x92,0xc3,0xc3,0x82,0x7f,0x67,0x03,0x53, - 0x92,0x13,0x0f,0x85,0x29,0xe1,0x52,0x9d,0x3e,0x5d,0xc9,0x94,0xdc,0xeb,0x4c,0xc9,0x27,0x75,0x8f,0xa7, - 0x24,0x57,0x73,0xf5,0x49,0xa6,0xe4,0x02,0x94,0x59,0x4e,0x6f,0xea,0x92,0x3f,0xfa,0x04,0x3a,0xdb,0x18, - 0x9a,0x1b,0x5c,0x99,0x87,0xe8,0x2c,0x78,0xeb,0xe2,0x4a,0x9f,0x6e,0x71,0x65,0x73,0x37,0xae,0x94,0x28, - 0xb2,0x72,0x17,0x8d,0x43,0x8d,0x96,0x81,0x12,0x6d,0xec,0x36,0x37,0x6c,0x91,0xb4,0x75,0x52,0x69,0x18, - 0x67,0xce,0x33,0x89,0x15,0x43,0x48,0x12,0xf2,0x96,0xdc,0x62,0xb5,0xa5,0x7d,0xb5,0xc8,0x6f,0x66,0x13, - 0x42,0xdc,0x77,0x4e,0x89,0x82,0xbf,0x5e,0x21,0x8b,0x30,0xa4,0x29,0x44,0x58,0xb1,0x11,0xec,0x25,0x19, - 0x67,0xae,0x76,0x87,0xbb,0xae,0x29,0x89,0x3d,0xbb,0xa5,0xc4,0x31,0x5e,0x2d,0x2a,0xbb,0x94,0x6d,0xbe, - 0x92,0x6d,0x7e,0x85,0x6d,0x7e,0x41,0xab,0xc3,0x08,0x81,0x58,0xde,0x63,0xa9,0x2b,0x3d,0x4e,0x18,0x2b, - 0xda,0xa1,0x75,0xb7,0x7e,0x08,0x22,0x10,0x21,0x0d,0x00,0x0c,0xaf,0xc1,0x40,0xba,0x83,0x21,0x0e,0x02, - 0x76,0x29,0x38,0xc4,0x03,0xc8,0x2c,0xe9,0x40,0xc8,0x24,0xbe,0x64,0x1c,0xc2,0x90,0x43,0x75,0x9e,0xb1, - 0xa1,0x48,0x8c,0x0d,0xb1,0xd8,0xd9,0x59,0xe0,0x4d,0x05,0x9d,0x34,0x98,0xe4,0x7a,0x72,0x4d,0xdb,0x35, - 0xad,0xe2,0x90,0x20,0xf8,0x2d,0x38,0x91,0x37,0xa3,0x53,0xd1,0x6c,0xc8,0x05,0x8c,0xa1,0x76,0xf9,0x39, - 0x62,0xd6,0x32,0x2b,0xe1,0x03,0x20,0x9b,0x10,0xdb,0x30,0x27,0x46,0xa8,0xe4,0x20,0x80,0xd4,0x84,0x8a, - 0x6f,0x04,0xc2,0xa9,0x0f,0xf7,0x8f,0x52,0x84,0xc1,0x71,0x57,0xfe,0xc1,0x19,0xc6,0xd0,0x4f,0xdf,0x04, - 0x1a,0xbd,0x57,0x86,0x5e,0xd9,0x86,0xfa,0x5e,0x87,0x18,0xe0,0x23,0xb3,0x73,0xde,0x71,0xc4,0x91,0xde, - 0x2f,0xec,0x93,0xf2,0xa6,0x72,0xc3,0xf4,0xad,0x2b,0xb9,0x56,0xfb,0x41,0x55,0x2f,0x7a,0x54,0xbc,0x0e, - 0x24,0x63,0x8b,0xd5,0xbc,0x2d,0x96,0x73,0x2d,0xf4,0xfa,0xed,0x6d,0x7f,0x64,0x41,0xe4,0x34,0x36,0x75, - 0x81,0xf3,0x96,0x73,0xbc,0xe9,0xfb,0x6e,0xc1,0x0f,0xc4,0xe7,0xe2,0x0a,0x8e,0x22,0xa9,0xb2,0x63,0x62, - 0xff,0xde,0xc0,0x0a,0x08,0xfc,0xae,0xc2,0x55,0x4e,0x73,0xbe,0x98,0x9d,0x26,0xa0,0x62,0xf0,0xb1,0x09, - 0x59,0x10,0x10,0xec,0x3a,0xe6,0x4f,0x82,0x08,0xc2,0xe0,0xba,0x40,0x57,0x99,0xc2,0xac,0xa8,0x92,0x73, - 0xac,0x9f,0x9a,0xc1,0xad,0xaf,0x60,0x6e,0xaa,0x9b,0xbe,0xd7,0xb9,0x81,0xf2,0x99,0xee,0x5e,0xd7,0xd2, - 0xbf,0x86,0xcf,0x65,0x6d,0x5f,0xc7,0x62,0x58,0x1b,0xf8,0x91,0x84,0x50,0x26,0xa2,0x52,0x8e,0xf3,0x86, - 0xcb,0x0a,0x44,0xed,0x67,0xc4,0x8f,0x81,0x2b,0x88,0x16,0x67,0x68,0xe1,0x59,0xbc,0xcc,0x14,0x46,0x68, - 0xde,0x07,0xe4,0x8e,0x42,0x3c,0xc8,0xcd,0x2f,0x0f,0xd4,0x7b,0xed,0x32,0x94,0x11,0xe4,0x87,0xf4,0xe6, - 0xfb,0x0e,0xd3,0xd9,0x77,0x78,0xb8,0x60,0x77,0x07,0x48,0x9d,0x45,0x2d,0x1e,0x09,0x9f,0x59,0xb4,0x92, - 0xa3,0x15,0x61,0x52,0x8e,0x9d,0x34,0x9a,0x15,0x0d,0xdb,0x28,0x4b,0x46,0xa8,0xbe,0x78,0x12,0xcc,0xc4, - 0xf6,0x1d,0x0e,0x0f,0x22,0xa9,0x6a,0xfb,0xc8,0x77,0xd2,0xa6,0x4f,0xd8,0x9f,0xe6,0x2e,0x99,0x59,0xe0, - 0x7a,0x11,0x48,0x45,0x99,0x0c,0xd8,0x30,0x8c,0xb5,0xab,0x88,0x33,0xbe,0x63,0x12,0x6b,0xdd,0xd6,0x27, - 0x54,0xc7,0x3f,0xe1,0x0d,0xe6,0x5c,0x12,0x43,0x21,0xe7,0x4f,0x41,0x03,0x7c,0x05,0xa6,0x8f,0x96,0xda, - 0x0d,0xa4,0x54,0xfa,0x2b,0x2b,0x12,0x04,0x51,0x62,0xf3,0xe6,0xb1,0x89,0xad,0x44,0xe8,0x8f,0x51,0xa1, - 0xe5,0x27,0x7b,0xde,0x7c,0x05,0x7d,0x71,0x89,0xcb,0x41,0x8e,0xd8,0x9f,0x6f,0x20,0xa6,0xed,0x77,0x5e, - 0x92,0xf4,0xe0,0xd7,0xd9,0xde,0x27,0xad,0x97,0x7b,0xf9,0x9c,0x0e,0x8b,0x7b,0xe6,0xe6,0x41,0xa6,0x6f, - 0x7c,0xa0,0xec,0x38,0xf2,0x45,0x22,0x75,0xc3,0x5d,0x4b,0xf5,0xc6,0xec,0xf8,0x3e,0x87,0x40,0xfc,0x87, - 0x01,0x36,0x26,0x89,0x58,0x39,0x70,0xc2,0x37,0x61,0xfa,0x57,0xb6,0xb5,0xe4,0x77,0x73,0x9a,0xba,0x7c, - 0x77,0xba,0x06,0xa6,0xe3,0xa6,0x3a,0x11,0xb7,0xea,0xcb,0x77,0x15,0xc2,0x12,0xa1,0x34,0x01,0xe7,0x13, - 0x22,0x8c,0x39,0x34,0xc8,0xbc,0xa0,0x4f,0xdf,0xe3,0x1e,0xf8,0x30,0x66,0x7d,0xb8,0xbc,0x52,0x01,0x81, - 0xb8,0x72,0x4e,0x36,0x52,0x9b,0xb9,0xda,0xe2,0xb4,0xdd,0x2b,0xf9,0x87,0xef,0x50,0x6b,0xab,0x25,0xbd, - 0xd2,0x5f,0x60,0xb0,0xfa,0xf6,0xb6,0x70,0x5d,0xc0,0x10,0x66,0x56,0x03,0x59,0x99,0xae,0xb0,0x60,0x78, - 0x5c,0xf9,0x8b,0xea,0x89,0xc8,0xfc,0x59,0x9f,0x7c,0x2a,0x5a,0xc7,0x7f,0x66,0x11,0x67,0x22,0xa0,0x5e, - 0x1c,0xed,0xd6,0xbb,0xd1,0xf2,0x4a,0xb1,0xaa,0x7f,0x79,0x95,0x44,0xaa,0x0a,0x00,0xd8,0xf2,0xe2,0x59, - 0xb4,0xdf,0x84,0x7a,0xfa,0xef,0x3b,0xbb,0x4e,0x4f,0x7e,0xab,0xd2,0xb7,0x95,0x97,0xe0,0x5b,0xa9,0x58, - 0xd9,0xd1,0xd2,0x99,0xec,0x8f,0x15,0x6e,0xdd,0x0d,0xc3,0xc6,0x3b,0xec,0x6d,0x14,0xd4,0xcc,0x48,0x1f, - 0x70,0xac,0x80,0x56,0x39,0xe3,0x8a,0x54,0x2b,0x6b,0x0e,0xd1,0xb9,0xcb,0xb7,0x7f,0xb3,0xab,0xf2,0x66, - 0x02,0xee,0x7e,0x10,0x13,0x6f,0xd9,0xb8,0x46,0xe2,0x51,0xc2,0x90,0x78,0x47,0x2e,0x9d,0x28,0x81,0xec, - 0x30,0xa8,0xca,0x61,0x78,0x81,0xcd,0x2f,0xf6,0x60,0xdb,0x54,0xdd,0xb3,0x15,0x0b,0x01,0xea,0x35,0xe4, - 0x8c,0x8c,0xc9,0x38,0xcc,0x19,0x7c,0x0f,0x02,0xcb,0xa7,0x56,0x5c,0x8b,0xb6,0x43,0xe3,0x26,0x63,0xce, - 0x70,0x57,0x95,0xb5,0x3e,0x75,0x55,0xd2,0x33,0x47,0x4e,0xb3,0xfe,0x50,0x1d,0x49,0x51,0x60,0x44,0x3b, - 0x2e,0x25,0xd4,0xa7,0xbb,0x6a,0xa6,0x84,0xcc,0xd5,0xbb,0x1b,0x41,0x44,0x69,0x02,0x79,0xba,0x58,0xd1, - 0xa0,0x42,0xd1,0xd7,0x9e,0x52,0x35,0x42,0xb8,0x0b,0x67,0xe7,0x0c,0x6b,0x6d,0x7a,0x87,0xbe,0xcb,0x74, - 0x0f,0xf3,0x19,0x05,0x52,0x69,0xdd,0x8d,0xee,0xcd,0x5f,0xc1,0x0a,0x4a,0x0c,0x79,0x38,0xec,0x41,0xc4, - 0xb7,0xe0,0x51,0x35,0x1c,0x72,0x0b,0x81,0xb4,0x4d,0x26,0x25,0xed,0x99,0x12,0x44,0x65,0xb8,0x6f,0xc2, - 0x64,0x39,0x08,0xfd,0xb7,0x36,0xda,0x71,0xed,0x8a,0x02,0xbf,0xbb,0x52,0x1f,0x45,0x76,0x76,0x3f,0x8a, - 0xee,0xb3,0x21,0xf9,0x7d,0x17,0xb0,0xf4,0x3e,0x2d,0xf2,0x66,0x4f,0x81,0xc8,0x5d,0xed,0xf4,0xe2,0x6b, - 0x55,0x7c,0xc1,0x72,0x7f,0x82,0x64,0xc4,0xb1,0x9d,0x8c,0xa2,0xb1,0x5d,0x74,0xc8,0x89,0xba,0xa8,0x8c, - 0xf9,0x91,0x14,0x29,0xe7,0x45,0xa9,0xf7,0x5c,0xcb,0x52,0x5c,0x52,0x3f,0x9a,0x44,0xb6,0xa8,0xec,0x5d, - 0x79,0x43,0x70,0xbc,0xa8,0x42,0x0f,0x99,0x36,0x5b,0xc0,0xa1,0x8d,0x01,0x92,0x7a,0x3a,0xde,0x84,0x49, - 0x15,0x98,0xef,0x32,0x45,0xe3,0x60,0x8e,0x2b,0xd6,0xb4,0x4f,0x4a,0x27,0x00,0x1b,0xeb,0x47,0xa5,0x8d, - 0x3c,0x50,0x67,0xf0,0x5b,0xd2,0xb2,0x59,0x54,0x25,0xcf,0x42,0x4e,0xbd,0xa8,0x8c,0xb8,0xca,0x48,0xfd, - 0xcf,0xf3,0xe6,0x49,0xc1,0x48,0x0f,0x06,0xae,0x2a,0x0e,0xef,0x54,0x72,0x70,0x6c,0xee,0x07,0x7a,0x22, - 0x51,0x6e,0xc2,0xb0,0xf7,0xfe,0xbe,0x8c,0xbe,0x4a,0x80,0xa3,0x40,0x5a,0x09,0xd3,0x41,0x82,0xeb,0xbe, - 0x61,0x38,0x81,0x2b,0xb9,0x12,0x73,0x39,0x84,0x45,0x31,0x4f,0x2a,0x68,0x78,0x88,0x41,0xf5,0x7d,0x0b, - 0xb3,0xdf,0x73,0x36,0x0d,0xe3,0x5b,0xe8,0x77,0xc5,0x92,0x59,0xa2,0x92,0xe2,0xc0,0x10,0xa3,0xe3,0x7d, - 0x65,0x94,0xd3,0xed,0x62,0x1e,0x49,0xfc,0xb3,0x4b,0xc4,0xef,0x94,0xa6,0x02,0xc5,0x35,0xd3,0xe8,0x53, - 0x9a,0x96,0x39,0xe7,0x48,0x21,0xd0,0x7b,0xd7,0xe5,0x74,0x67,0x87,0xed,0x10,0x7d,0x54,0x4b,0xce,0x55, - 0x39,0x18,0xe2,0xe8,0x1e,0x5b,0xde,0x45,0x6c,0xdf,0x0d,0x5d,0xbe,0x87,0x90,0x9d,0x9d,0x93,0xca,0x5d, - 0x78,0x6b,0xd1,0x9b,0x30,0x5b,0x44,0x74,0xb3,0xe9,0x26,0x62,0x6d,0xa5,0x0c,0x8c,0x75,0x18,0x50,0xf6, - 0xe5,0xf0,0x80,0x5f,0xca,0x80,0x4b,0x53,0x9e,0x96,0x7f,0x3b,0xbc,0x9c,0x71,0x95,0x75,0x66,0xef,0x85, - 0xcc,0x9e,0x59,0xa3,0xd7,0x1c,0xd6,0x81,0x18,0xaa,0xd5,0xe1,0xc1,0xd1,0x78,0x6e,0x66,0xda,0xc9,0xf9, - 0x9c,0x5f,0xd7,0xee,0x01,0x46,0xb2,0xcc,0x6a,0x62,0xf8,0x0a,0xe2,0xef,0x2a,0xe2,0xe9,0xe6,0x90,0x71, - 0xa9,0x38,0x3e,0xcd,0xda,0xa4,0xe3,0xa3,0x87,0x38,0x3d,0xee,0x75,0xc3,0x44,0x74,0xa9,0x8c,0x47,0x54, - 0x3a,0x33,0xb6,0x9d,0xe7,0xb0,0x6c,0x49,0x2f,0x94,0x33,0x43,0x4c,0x17,0x6b,0x0e,0xb2,0x61,0x6d,0x07, - 0x79,0x02,0xcc,0x7c,0xf4,0x8c,0xf9,0x2a,0xbe,0x75,0x27,0x9c,0xdd,0x68,0x01,0x21,0x36,0x56,0xb5,0xfe, - 0xec,0x54,0xef,0xec,0x98,0xb9,0xb6,0x5e,0x26,0x46,0x6d,0xad,0x66,0xea,0x5c,0x51,0x67,0xd6,0x1d,0x7e, - 0xea,0x5b,0x7f,0x9a,0x33,0x50,0x67,0xd6,0x52,0x91,0x20,0x39,0x4a,0x86,0xcc,0xd7,0xac,0x5d,0xb2,0x4c, - 0xf4,0x33,0x13,0xf2,0xc9,0xf2,0x2b,0xac,0xc4,0xa5,0x6f,0xb3,0xf2,0xf0,0xe1,0x91,0xd1,0x1f,0x59,0x8a, - 0x8b,0x96,0xc2,0xa4,0xb8,0x55,0x7b,0x67,0x81,0xba,0x30,0xf5,0xbd,0xf1,0x11,0x80,0xab,0x09,0xe2,0x38, - 0xcd,0x8b,0xbc,0xa1,0x5c,0xfb,0xc1,0x1b,0xf9,0xa0,0x1e,0x15,0x44,0xd3,0xe4,0x44,0x3b,0x1e,0x64,0x95, - 0xaf,0x57,0x55,0xd4,0x2a,0x5b,0x60,0xd8,0xec,0x87,0x59,0xe5,0x3b,0x82,0xe0,0x2b,0xb6,0x46,0x55,0xf3, - 0xb5,0x78,0x25,0xc7,0x2c,0xe8,0x3a,0x92,0xfc,0xdb,0xa9,0x64,0x8a,0xd3,0xa7,0x15,0x61,0x05,0xa6,0xcb, - 0x98,0x47,0x09,0x13,0x38,0xf4,0x6a,0x37,0xc9,0xea,0x79,0x02,0x6b,0xe8,0x50,0xe8,0xfc,0x83,0xee,0xae, - 0x1a,0x9f,0x9b,0x36,0xba,0x7d,0x6b,0x85,0x95,0x81,0xbd,0x73,0x9f,0x19,0x9c,0x44,0x36,0xda,0x53,0x7a, - 0x13,0xa5,0x51,0x85,0x1f,0x1f,0xf8,0xc1,0xdc,0xb5,0xb7,0x9b,0xc1,0xe0,0xaf,0xd8,0xbd,0x1f,0xa5,0xf7, - 0x77,0x5b,0xc4,0x0b,0x62,0xb7,0x72,0xd8,0x7d,0xfb,0xfb,0xa4,0x03,0x91,0x37,0x1b,0x2e,0x7a,0xb3,0xe8, - 0xd2,0x51,0xb5,0xee,0x7e,0x52,0x27,0xc9,0x24,0xbe,0x75,0x1d,0x6d,0x06,0xae,0x76,0x17,0x9d,0x45,0x87, - 0x30,0x2d,0xef,0x0a,0xe7,0xbd,0x4e,0xd4,0x5c,0x47,0x62,0x3d,0x01,0x15,0x34,0x93,0x47,0x91,0x39,0xf9, - 0x7e,0xa8,0x2c,0xd1,0x2c,0x8e,0x63,0x44,0xfb,0x7c,0xdf,0x4b,0x62,0x00,0xf5,0x46,0xbd,0xd6,0xca,0x21, - 0x22,0x42,0x0f,0x7f,0x72,0xeb,0xbb,0xca,0x22,0x24,0x0e,0x4b,0x19,0x14,0xa6,0x6f,0xff,0xcd,0x21,0x82, - 0xaa,0xdd,0x8c,0x1f,0xd4,0x2f,0x15,0x6b,0xcd,0x73,0x6b,0xec,0xeb,0x03,0x65,0xeb,0xab,0x5c,0xa2,0xa5, - 0x34,0x36,0x10,0x78,0x50,0xd3,0x98,0x2a,0xf8,0xb6,0x8a,0x0f,0xa3,0x69,0x5b,0xcf,0x69,0x10,0x6c,0x35, - 0x4c,0xbf,0xf9,0x1c,0x7f,0x17,0xba,0xcd,0xa3,0xa3,0xbb,0x6d,0xda,0xb7,0xa7,0x4c,0x32,0xde,0x61,0x12, - 0x6f,0xd0,0xeb,0x28,0x82,0x99,0xfe,0x0f,0x44,0x84,0xb9,0xc9,0xba,0xbd,0x05,0xaf,0x28,0xe6,0x28,0xae, - 0xc3,0xd6,0xc5,0xd8,0x59,0x0e,0xc5,0xc5,0x2e,0x61,0x79,0x58,0x79,0xdc,0x3f,0x59,0xb5,0x6d,0x55,0xde, - 0xc7,0x34,0x48,0xa5,0x08,0x2b,0xb0,0x9b,0x73,0xc3,0xc4,0x50,0x99,0x6a,0x29,0x8d,0x16,0xc1,0xa9,0xfe, - 0xe8,0x80,0x1f,0x63,0x3b,0x4a,0x4d,0x55,0x10,0x77,0x33,0x36,0x95,0xdc,0x80,0xba,0x8e,0xcb,0x89,0x59, - 0x93,0xdd,0xc8,0x66,0x44,0x69,0x3d,0x61,0xf3,0x59,0x9b,0x91,0xf8,0x1c,0xbb,0x80,0x0c,0x69,0xb6,0xad, - 0xdb,0xdb,0xda,0xd6,0x92,0x0e,0x35,0xe3,0x2a,0x0a,0xa1,0x53,0x07,0xe7,0x31,0x87,0xe5,0x79,0xc9,0xb7, - 0xd6,0x1c,0xec,0x27,0x61,0x4c,0x7e,0x3b,0x8d,0x26,0xfc,0x35,0x11,0x8e,0x54,0x9d,0x81,0xb3,0x5f,0x2a, - 0x1f,0x2a,0x39,0x3a,0xfe,0x14,0x77,0x8b,0x12,0xf3,0xd0,0x43,0xc4,0x2d,0x6f,0x9c,0x7e,0x6a,0x89,0x54, - 0xff,0x69,0x68,0x1e,0x5a,0x76,0x0c,0xa7,0x10,0xde,0xe7,0x9f,0x88,0x00,0x6c,0x4d,0x56,0x25,0x98,0x5c, - 0x1a,0xc1,0xc4,0x90,0x83,0xc8,0xba,0xfd,0x01,0x2d,0xfe,0xa4,0x16,0xbb,0xa8,0xf4,0xfe,0xf1,0xd4,0x04, - 0x37,0xb8,0xcf,0xd3,0xa6,0x7a,0xb1,0x99,0xd3,0xb2,0x1f,0xad,0x39,0x40,0x60,0xb5,0xdf,0xc3,0xd6,0xe6, - 0x08,0xea,0x0d,0x26,0xd8,0xe5,0xf5,0x5d,0x5d,0x4d,0x75,0xd3,0xe8,0x99,0x5d,0x7a,0x63,0x40,0x23,0xf1, - 0x75,0xc4,0x8f,0x60,0x5b,0x1e,0x36,0x8a,0xe6,0x61,0x51,0xda,0x6f,0x5c,0x92,0x7e,0x37,0x0a,0x76,0x0d, - 0x43,0x83,0x60,0x21,0x28,0xcd,0x2e,0x35,0x8c,0x8b,0xd9,0x05,0xc0,0xa1,0xf3,0x09,0x66,0x3b,0x78,0x4f, - 0x69,0x67,0x37,0x41,0x81,0x87,0xbd,0x02,0x0f,0xe1,0xa3,0xe6,0xd8,0xb5,0xb0,0x1b,0x4c,0x0e,0x1d,0xcf, - 0x63,0x63,0xfb,0xed,0x09,0x5e,0x18,0x6b,0xe7,0x08,0x7a,0x15,0x4c,0xbd,0x99,0x32,0x9a,0x6a,0x5a,0xcb, - 0x60,0x7c,0xc5,0x29,0x0f,0xaf,0x38,0xdd,0x18,0x5d,0xe3,0xa7,0xc1,0x13,0xe0,0xdb,0x3d,0x02,0x5c,0x08, - 0xf7,0x21,0x0e,0x64,0x60,0x8e,0xbc,0xbd,0x81,0x65,0x4e,0x6e,0x6f,0x03,0x4a,0x9f,0x30,0xe2,0xaa,0xb4, - 0x3a,0xfd,0xe8,0x98,0xed,0x95,0x77,0xe3,0x9a,0xe7,0xa3,0x96,0x58,0x76,0x3e,0x30,0x7a,0x74,0x83,0x49, - 0x92,0xe0,0xe8,0x77,0xb8,0xdf,0x5c,0x96,0xc6,0xa6,0x82,0x46,0x9d,0xa2,0xb4,0x08,0xc1,0x3a,0xe8,0x79, - 0x1d,0xf1,0xea,0x38,0xe3,0x7d,0xe3,0xc2,0x10,0xd9,0x1d,0xb4,0x8d,0xdb,0x4c,0x73,0xda,0xca,0xf0,0x14, - 0x27,0xdc,0xc3,0x3c,0x82,0xc7,0x20,0xe8,0x1a,0x02,0x65,0xc9,0x5b,0x5c,0xc1,0x26,0xc9,0x96,0xe1,0x6d, - 0x95,0xd3,0x58,0xd8,0xba,0x5a,0xe6,0x92,0xc7,0x2f,0x13,0xef,0x03,0xc0,0x86,0xe4,0x47,0x57,0x34,0xda, - 0x65,0x37,0x26,0xa8,0x37,0x5d,0xb1,0x3e,0x18,0xa2,0x30,0xb7,0xc9,0x69,0x27,0x19,0xb7,0xa7,0xa9,0x28, - 0x8b,0x3b,0xb3,0x66,0x9a,0xf7,0x0d,0x2a,0xee,0x8a,0xa3,0x33,0xc1,0x83,0x33,0xc5,0x36,0xb1,0x51,0xd0, - 0xdc,0x22,0xf4,0x19,0x1e,0xd7,0x03,0xf4,0x13,0x3d,0x28,0x33,0xb4,0x7e,0x1f,0x93,0x4b,0x6b,0xbe,0x1b, - 0xd1,0x53,0xa7,0xe9,0xb8,0xe0,0x97,0xc2,0xf5,0xa3,0x7b,0x09,0xa7,0xf6,0xa2,0x0f,0x7f,0x7d,0x02,0xf1, - 0x36,0x65,0x16,0xe6,0x1c,0x56,0x47,0x8c,0x33,0xbc,0x93,0xbc,0x79,0x30,0xd0,0x02,0x93,0x19,0xee,0x79, - 0x80,0xa4,0x36,0x2e,0xec,0xe9,0xa1,0x05,0xec,0x1d,0xdd,0xc7,0x30,0x72,0xee,0x0c,0x62,0x2e,0xbf,0x7d, - 0x22,0x44,0x84,0x5f,0xd0,0x8c,0xc7,0x9b,0xdf,0xdb,0xe8,0x7b,0xc9,0xae,0xc3,0x4b,0x12,0x0f,0x25,0x52, - 0xe2,0x69,0xed,0xa6,0xc1,0x79,0x51,0x84,0x98,0xac,0x83,0x8d,0x24,0x06,0xfb,0x5f,0xda,0x9e,0x9d,0xb6, - 0x42,0x01,0x43,0x14,0xb1,0x84,0xc5,0xe8,0x8c,0xeb,0xb1,0x31,0xe5,0x85,0x8c,0xe1,0x86,0x78,0x71,0x60, - 0x76,0xeb,0xd0,0xe2,0x1c,0x6d,0xdd,0xf9,0x35,0x89,0x8e,0xab,0x38,0x18,0x39,0x7b,0xd5,0xa1,0x8b,0x2f, - 0x67,0xbb,0xbb,0xfc,0x5a,0x62,0x2c,0xa9,0x29,0xb0,0xee,0x22,0xda,0xc0,0x9d,0x60,0x33,0xfa,0x76,0x67, - 0x40,0x18,0xa8,0xa7,0xce,0x62,0x67,0xdc,0x1f,0x68,0x15,0xfd,0x9e,0xae,0x27,0xb5,0x9c,0x1f,0x32,0x5b, - 0x93,0xdc,0x1c,0x27,0xe6,0x58,0xe1,0xfb,0x4e,0xac,0xc1,0x85,0xbb,0x0d,0x99,0x00,0xe4,0x98,0x28,0xd0, - 0xc8,0xd8,0x29,0x68,0x1b,0xbd,0xd0,0xd3,0x17,0xfa,0x6a,0xc9,0x87,0x7b,0x2e,0xfe,0x11,0xc9,0x84,0xb6, - 0x35,0x31,0x9e,0x27,0xf3,0x6a,0xfa,0xc9,0x60,0x0f,0xd7,0x31,0x5a,0xc4,0x20,0x73,0xdd,0x23,0x9a,0x1d, - 0xb9,0xdb,0xbf,0xa7,0x66,0xda,0x41,0x81,0x84,0xbe,0x54,0x9d,0x0d,0x23,0xc7,0xfe,0x3d,0xd9,0x37,0x26, - 0xac,0x85,0x71,0xf0,0x0d,0xa2,0x48,0xa4,0x87,0x11,0x3b,0xfb,0xda,0x80,0x17,0x43,0xf7,0x66,0xdd,0x54, - 0x36,0xcc,0xbe,0x91,0x3e,0xae,0x3a,0x57,0x71,0x1f,0x4a,0x74,0x8b,0xa3,0xf1,0x0a,0xac,0x76,0xb6,0xbd, - 0xbd,0x42,0xac,0x6c,0xda,0x1b,0x97,0x79,0x8d,0xbb,0x43,0x72,0x71,0xe6,0xdd,0x57,0x0d,0x91,0xdd,0xc2, - 0x08,0x12,0xf1,0x6d,0x42,0x62,0xdc,0x8f,0x1c,0x4f,0xc8,0x89,0xe6,0x05,0xee,0x37,0xbb,0x71,0x25,0xf8, - 0x96,0x60,0x5f,0x68,0x20,0x1c,0x4b,0x8e,0x76,0x0a,0xfd,0x8f,0x36,0x88,0x0f,0x53,0x2c,0x11,0x14,0x52, - 0x8d,0xe8,0x8c,0x99,0xdc,0x67,0x5e,0x93,0x5b,0xa1,0x07,0xb4,0x60,0x73,0x1d,0xe1,0x4a,0x2d,0x79,0x4e, - 0x74,0xa0,0x52,0x4f,0x2b,0xcb,0x3e,0x5c,0x2b,0x1f,0x59,0x69,0x3a,0x69,0xba,0x2c,0xc3,0x91,0x8b,0xf0, - 0x64,0x50,0x37,0x5f,0xac,0xb2,0x9b,0xd5,0x80,0xfc,0x44,0x19,0x01,0x21,0x52,0x20,0x4c,0xe4,0xe3,0x45, - 0xfc,0x69,0x22,0x09,0x09,0x70,0x6a,0x32,0xe9,0x89,0x33,0xe9,0x37,0xc8,0xe4,0x9d,0xea,0x4b,0xf0,0x6b, - 0x0a,0x14,0x21,0x25,0x96,0xec,0x09,0x89,0x4c,0x7a,0x0a,0xd2,0x03,0x6e,0x19,0xb9,0xf7,0x21,0x76,0x65, - 0xdf,0x27,0x20,0x5f,0x5a,0x8c,0xfb,0x5e,0x14,0x25,0x0e,0xb8,0xa2,0xd4,0xfb,0x56,0x97,0x1e,0x3b,0xb1, - 0x2f,0x2e,0x7d,0x1c,0x66,0x11,0xfb,0x04,0x31,0x16,0xa3,0x12,0x73,0xbe,0x72,0xeb,0xfc,0x4c,0x2c,0xd8, - 0xee,0x69,0x69,0x73,0xcc,0xbc,0x29,0xe3,0x95,0x6a,0x0a,0x5a,0x5f,0x04,0x57,0x56,0xa2,0x0e,0xbb,0xb2, - 0xe2,0xce,0x28,0x85,0xc1,0xf4,0x99,0x04,0xb5,0x7d,0x60,0x21,0xcd,0x4e,0x4e,0xe8,0x19,0x19,0x94,0x0f, - 0x93,0x15,0xe3,0xee,0xce,0x57,0x9e,0x14,0x11,0x1a,0xd0,0x8a,0x06,0x4d,0xf7,0xf8,0x22,0x9a,0x68,0x37, - 0x2c,0xe7,0xbe,0xf4,0x01,0x5e,0xa5,0x30,0x6b,0x0d,0x83,0x54,0x5c,0xc9,0x64,0x04,0xa2,0x92,0x90,0x1e, - 0xaf,0x88,0x39,0xea,0x84,0x82,0xc9,0xef,0xe2,0x77,0xb6,0xfa,0x88,0xcd,0x65,0x94,0x86,0xb2,0x2c,0x3b, - 0x24,0x9d,0x8f,0x75,0xd6,0x21,0x28,0x4b,0x43,0x50,0x96,0x8e,0xa0,0x2c,0x7b,0x04,0x65,0xd9,0x27,0x28, - 0xcb,0x1e,0x41,0x59,0x0e,0x12,0x94,0xe5,0xff,0x9c,0xa0,0xb4,0x03,0x32,0x14,0xa5,0xbc,0xa4,0xd1,0x8d, - 0xec,0x06,0xda,0xe3,0xea,0xb4,0x4c,0x83,0x1a,0x8c,0xb3,0x46,0xe9,0x17,0x27,0xe9,0xd4,0x17,0x77,0xa4, - 0xbc,0x6c,0x32,0x33,0xa1,0x4e,0x9f,0xf2,0x9f,0xdd,0x88,0x30,0x72,0xbc,0xe2,0x20,0xca,0x49,0xe7,0xe2, - 0x6a,0x60,0x67,0xff,0x96,0x0e,0x15,0xc1,0xe1,0xc0,0xd7,0xbf,0x52,0x57,0xd7,0x4c,0x89,0xe5,0xb8,0xcf, - 0xbe,0xe9,0x73,0xea,0x74,0xb0,0x27,0x00,0x09,0x13,0x37,0x9d,0x21,0x87,0x9f,0x53,0xeb,0x3d,0xb9,0xdb, - 0x86,0x91,0xd1,0x69,0x88,0xde,0x61,0xd2,0x65,0xd9,0xa4,0xdd,0xa8,0x8b,0xe3,0x5c,0x18,0x76,0x97,0xe8, - 0x76,0x47,0x97,0xc8,0xb2,0x06,0x79,0x5d,0xf3,0x3f,0x17,0xd0,0xcd,0x46,0x22,0xdd,0xe7,0xf0,0x3f,0x07, - 0x12,0x87,0x90,0xed,0xe7,0x0c,0xac,0x94,0x1c,0xf1,0xa7,0xb2,0xc1,0x0e,0x0d,0x91,0xd8,0x6d,0x23,0xb5, - 0x6c,0x5a,0x20,0xf8,0xa0,0x45,0x37,0x91,0xc0,0xd1,0xb1,0x3e,0x3b,0x76,0x88,0xec,0x3e,0xbd,0x73,0x07, - 0x93,0xdf,0xa9,0xb4,0x65,0x06,0xb7,0x3b,0xd3,0x70,0x24,0x25,0x44,0x4b,0x58,0xb5,0x92,0x79,0xae,0x78, - 0x3b,0xae,0x8d,0xf7,0x85,0x83,0xce,0xc0,0x6a,0xfb,0x81,0xba,0xf7,0x40,0x45,0x86,0x64,0x6f,0x47,0x97, - 0x75,0xbe,0x7c,0x66,0x7d,0x0e,0xfc,0x2b,0x6c,0x26,0x4c,0xae,0x53,0x7b,0x06,0x45,0x5c,0x1a,0x97,0x0b, - 0x82,0x2d,0xad,0x06,0x42,0xfd,0xfb,0xb9,0x96,0x60,0xe4,0x61,0x40,0xae,0x3c,0xab,0x82,0x05,0xa8,0x02, - 0xcf,0x26,0xde,0xd5,0x1d,0x7e,0x29,0x17,0xeb,0x2f,0x61,0x8f,0xec,0xbb,0xf5,0x75,0x25,0xbe,0x82,0xd0, - 0x58,0x9c,0x5b,0xe6,0x80,0x36,0x6e,0x2f,0x8c,0x78,0xa0,0x5b,0x50,0x03,0x31,0xad,0x5c,0x7c,0xca,0xda, - 0x75,0xa7,0x30,0xf0,0x80,0xb8,0x1a,0xb8,0x5c,0x0a,0x21,0x2a,0x43,0x12,0x05,0xde,0x1f,0x5d,0x92,0xa5, - 0x5a,0xe8,0x21,0xe4,0x35,0x07,0x26,0x37,0x64,0x4e,0x02,0x8a,0xf1,0xa1,0xa1,0x16,0xd9,0x69,0xe9,0x7f, - 0x5c,0xad,0x0e,0x6b,0xe5,0xd5,0x39,0x48,0x82,0x6b,0xe5,0xe2,0x8a,0xed,0x5f,0xaf,0x4f,0xf4,0x53,0xc7, - 0x22,0xa5,0x1c,0xa7,0xb7,0xef,0xba,0x65,0x4d,0x5d,0x85,0xe7,0xa4,0x31,0x4f,0x0c,0x2d,0x9a,0x7e,0xe1, - 0x92,0xa0,0x24,0x76,0x11,0x00,0x27,0x70,0x0e,0x57,0x20,0x06,0x37,0xc8,0x83,0x5a,0x62,0x4d,0xb3,0x0f, - 0x75,0x1a,0x1d,0x5f,0x80,0xc0,0x7f,0x08,0x0d,0x43,0x09,0x29,0x39,0x57,0x5e,0x06,0x7b,0x37,0x5d,0x96, - 0x71,0x5f,0x64,0x22,0x35,0x24,0x5c,0xc7,0xd8,0x98,0x69,0x5b,0xd5,0x09,0x04,0x87,0xd5,0x5d,0x87,0xc4, - 0x74,0x50,0x6e,0xb8,0x1b,0x37,0x8c,0xb9,0x1b,0x50,0x2b,0x81,0xf0,0x63,0x1e,0x7e,0xea,0x34,0x87,0x2c, - 0x1a,0x20,0xb4,0x37,0xa0,0x2a,0xeb,0x32,0xe6,0x81,0x2f,0x6d,0x4f,0x27,0x4b,0xe7,0xc6,0x9f,0x5c,0xe4, - 0xac,0x45,0xf4,0x5a,0x5b,0xea,0x2f,0xbd,0xbf,0xbb,0x44,0x88,0x42,0x2b,0xfd,0x52,0x91,0xbf,0x59,0x3d, - 0xa0,0xa6,0x02,0x27,0xd5,0x4e,0xf4,0x0b,0xbf,0xb9,0x7f,0x5d,0x3d,0xdc,0x7f,0xf8,0x8f,0x07,0x67,0x2a, - 0xfa,0x55,0x1e,0xa3,0xa4,0x97,0xf9,0xb5,0xcf,0xfc,0x3a,0xbc,0x20,0x74,0x66,0x60,0x01,0xde,0x7b,0x16, - 0x84,0xf4,0xe5,0xd6,0x0b,0x3f,0xcb,0xfe,0xa2,0x58,0xd7,0x37,0xd1,0x6a,0xe8,0xba,0x86,0x06,0x99,0xb0, - 0x72,0x0a,0x67,0xdf,0xb3,0xd0,0xc7,0x33,0xe8,0x67,0xfc,0xa9,0xca,0x3e,0x55,0x7f,0x12,0xa1,0x13,0xc1, - 0x70,0x8d,0xee,0x29,0x6b,0x27,0xf7,0x1f,0xe5,0x5b,0xe7,0x50,0x02,0x47,0xbf,0x96,0xd1,0x83,0x6f,0xee, - 0xa7,0xf7,0x1f,0x51,0x29,0xc2,0x1a,0xe6,0x5d,0x7d,0xaa,0x7c,0x79,0xef,0x85,0xb3,0xf3,0xbf,0x0e,0xf6, - 0xc7,0x51,0xf2,0xcd,0x3e,0x23,0xc2,0x0b,0x17,0xf2,0xee,0xb4,0xd6,0xfa,0x0f,0x1d,0x23,0xd2,0xf2,0xc2, - 0x25,0xfa,0xa8,0xe2,0xf6,0x22,0x70,0x75,0x56,0x66,0x2b,0x11,0xc3,0x28,0x47,0x29,0x46,0x6c,0x34,0x73, - 0xcd,0x39,0x74,0x34,0x2b,0xea,0x95,0xe2,0x12,0x5e,0x5d,0xab,0xa0,0x0e,0x55,0xc7,0x03,0x35,0x9f,0xe7, - 0x4d,0x70,0xed,0xa5,0x3a,0x29,0xb3,0x07,0x7b,0xf1,0xaf,0x97,0x09,0xad,0xc5,0x65,0x99,0x0d,0xc7,0x3c, - 0x71,0xeb,0x76,0x12,0x9a,0x14,0x84,0xb6,0x4d,0x13,0x74,0xf9,0xc7,0xe5,0x12,0x96,0xd3,0xf0,0xf2,0x46, - 0x04,0x56,0x98,0xbc,0x5e,0xdd,0x59,0xa5,0x89,0x6d,0xb3,0x9f,0x74,0x3f,0xdc,0xf5,0x7a,0x47,0xfa,0xfc, - 0x1e,0xf5,0xee,0xd7,0x27,0xf1,0xe1,0xe3,0xbd,0x7f,0x1f,0xa1,0x87,0x9f,0xfe,0xb4,0x87,0xf7,0x4a,0x15, - 0xed,0xdd,0x3b,0x88,0x50,0xed,0xab,0xea,0xd2,0x56,0x4b,0x75,0x3d,0xdd,0x94,0xc9,0x38,0x05,0xbc,0xfa, - 0xd0,0xd5,0x17,0xb9,0x58,0x2e,0xea,0x31,0xf1,0x75,0x20,0xaa,0xf7,0x38,0xce,0x7a,0xbd,0x67,0x2f,0x53, - 0x8c,0xd4,0xc7,0x32,0x3b,0x8c,0x82,0x35,0xf1,0x3c,0x5c,0x64,0xaf,0x3c,0x8c,0x8e,0xd4,0x5b,0x94,0x12, - 0xfb,0xcb,0xa7,0x0c,0x63,0x94,0x29,0xc0,0x46,0x55,0x98,0x0c,0x36,0xea,0x86,0x1c,0x5e,0x8c,0xbb,0x5d, - 0xfa,0x8f,0x26,0x3c,0xa5,0xbb,0x6b,0xd7,0x66,0x3c,0x93,0x48,0xc4,0x68,0x53,0x9e,0x38,0xcf,0xdf,0xd1, - 0x8c,0xf4,0xf0,0x4d,0x6e,0x10,0x12,0x9f,0xf3,0x19,0x75,0xea,0xb7,0x32,0xbb,0x11,0x62,0xe2,0xb5,0x26, - 0xc2,0x99,0x40,0x8d,0x0a,0x9e,0x15,0xc4,0x7c,0x0e,0xdd,0xb0,0xda,0x14,0x73,0x18,0x66,0x10,0x5d,0x4f, - 0x50,0x34,0x5b,0xf1,0x24,0x7d,0x2c,0x96,0x48,0xb0,0xd7,0xfd,0x72,0xa6,0xae,0x21,0xda,0x81,0x7d,0x15, - 0x5e,0xb9,0xcd,0xef,0xe4,0x1e,0x58,0xf6,0xde,0x50,0xa0,0xee,0x3b,0x09,0xc5,0x59,0x49,0x83,0x99,0x99, - 0x5d,0x47,0xf4,0xc8,0x91,0xb2,0x97,0x3f,0x0e,0x76,0xa4,0x13,0xee,0x3e,0x7d,0x5a,0x06,0x09,0x70,0xe5, - 0x92,0x94,0x1f,0xcb,0x4f,0x65,0x75,0x59,0x9a,0x4a,0x91,0xd6,0x8b,0x9e,0x9f,0x9e,0xa9,0xa1,0xe0,0xf8, - 0xe9,0x87,0x52,0x05,0x97,0x30,0xe2,0xc3,0xe3,0x79,0x71,0xaa,0xa7,0xd7,0xd3,0xb9,0xc6,0xbd,0xd3,0xd4, - 0xa7,0x72,0xad,0x9e,0x13,0x44,0x1e,0xfe,0xf7,0xaf,0x97,0xa3,0x7b,0x47,0x0f,0xd4,0x2b,0xc8,0xca,0x8e, - 0x79,0x6f,0x1d,0x1f,0x13,0x39,0x76,0xb3,0x56,0x2f,0x29,0xc9,0x93,0xa9,0xee,0x0a,0x3f,0xf1,0xec,0x51, - 0x2f,0x86,0x73,0x7f,0xfe,0xe5,0x79,0x79,0x51,0xd4,0x55,0x69,0xee,0x43,0xdf,0xee,0x24,0x40,0x92,0xc7, - 0x3d,0x55,0xcf,0xca,0xec,0x45,0xb9,0xb3,0x33,0x9c,0xdb,0x05,0x78,0xf5,0xa6,0xcc,0x5e,0x52,0x59,0xe3, - 0x52,0x54,0xe6,0x17,0xc5,0x19,0x38,0x85,0xd1,0x8a,0x26,0xec,0xf1,0x19,0x5f,0x38,0xd5,0x29,0xff,0xae, - 0xcc,0xde,0x50,0xf9,0x07,0x8b,0xa6,0xd0,0xb7,0x84,0x7b,0x66,0x54,0xc4,0xd8,0x84,0xbd,0x29,0x13,0xf5, - 0x5a,0xb2,0xdf,0x04,0x1e,0x8d,0x28,0xb9,0xf5,0xf5,0x68,0x1f,0xd8,0x4d,0xbd,0xdf,0xcc,0xd7,0xb3,0x33, - 0xfd,0x80,0x33,0x9f,0x6c,0x66,0x12,0x1c,0xd4,0x74,0xce,0x21,0x9b,0x4e,0x33,0xfb,0x86,0x2b,0x37,0x4a, - 0xf5,0xa3,0xe9,0x4a,0xb1,0x3c,0xa7,0xbd,0x75,0x5b,0x2c,0xf3,0x19,0xfd,0xa9,0xe8,0x4f,0xd5,0xf8,0x2e, - 0xc1,0xa9,0xbd,0x6a,0xcc,0x27,0x3f,0x95,0x59,0xcc,0xdf,0x4c,0xcf,0x6b,0x22,0x51,0x7e,0x7d,0xf0,0xeb, - 0x6c,0x37,0xe8,0xfd,0xcd,0x7a,0xc4,0x37,0x0d,0x27,0xea,0x3b,0x28,0xb1,0x41,0x55,0xbd,0x2c,0x39,0xca, - 0x26,0xb0,0xf2,0x1f,0x6c,0x0f,0x31,0x7c,0x2d,0xf3,0x1f,0x84,0x4f,0x4c,0x8c,0x86,0x48,0xdd,0xe0,0x5a, - 0xe7,0x80,0x12,0x46,0x65,0xfb,0x6b,0xc2,0x2d,0x66,0x96,0x37,0x63,0x02,0xa2,0x07,0x7b,0xee,0x7b,0x86, - 0xfa,0x3f,0xca,0x24,0x70,0x3b,0x47,0xfb,0x3f,0x97,0xea,0xf7,0x52,0x7d,0x1f,0xa0,0xa0,0x1e,0x2d,0x40, - 0x63,0xfc,0x19,0x86,0x35,0x3f,0x53,0x7b,0x58,0xd4,0x21,0x18,0x3a,0x9b,0x57,0x27,0xf9,0x1c,0x34,0x29, - 0x23,0x2a,0xcc,0x8b,0x24,0x01,0xf7,0x83,0x17,0x1c,0xe9,0xf2,0x62,0xf4,0xd3,0x8f,0xcf,0x8f,0x9f,0xbf, - 0xf9,0x29,0x51,0x3f,0x13,0x2c,0xff,0xd0,0x01,0x91,0xe3,0x63,0x64,0x3e,0x7b,0xfe,0xd3,0xc7,0xb7,0x6f, - 0x5f,0x7d,0x38,0xfe,0xf6,0xd5,0xdb,0x27,0x8f,0x5f,0x1d,0x7f,0xf7,0xf6,0xed,0x0f,0xc7,0xc7,0xea,0x97, - 0x61,0xc0,0xfd,0x70,0xbd,0x38,0xa9,0xa8,0xd1,0x7b,0xb1,0x3c,0x25,0xc3,0x7d,0x33,0xd7,0x33,0xa3,0x5c, - 0xef,0xa6,0xe6,0x64,0xfc,0xfb,0x1d,0x35,0x6b,0x2e,0x4e,0x3f,0xc9,0xe4,0x43,0x77,0xd6,0x03,0xfe,0xdb, - 0x04,0xd3,0xc7,0x25,0xdb,0x03,0x08,0xc3,0x85,0xd8,0xee,0x1e,0x7f,0x03,0x98,0x7e,0x1b,0x53,0x6c,0xab, - 0x82,0xb2,0x53,0x85,0xdf,0xd0,0xb2,0x76,0xbe,0x09,0x0a,0x62,0xfd,0x3b,0x65,0x09,0x59,0xe4,0x75,0xb8, - 0x90,0x9f,0xed,0xa0,0x6a,0xd7,0xc6,0xd4,0xe0,0xdb,0x32,0x3b,0x53,0xff,0x06,0x43,0xf0,0xaf,0x72,0xe3, - 0xf3,0x62,0x96,0xfd,0x9b,0xe8,0x36,0x73,0x2d,0xe4,0xea,0x04,0x6a,0xfc,0xf5,0xf8,0x5f,0x65,0xb7,0x8f, - 0x1f,0x56,0x27,0x03,0xdd,0xa4,0xd2,0x26,0xde,0x20,0x35,0xd7,0xf9,0x44,0x5c,0x21,0xfb,0x5f,0x99,0x9b, - 0x53,0xf1,0x9d,0xda,0xf8,0x44,0x2e,0x05,0x0f,0xfb,0x17,0xdc,0x19,0xee,0x1e,0xd1,0x99,0x67,0x7a,0x29, - 0xf2,0xf6,0x5e,0x0d,0x65,0xd5,0x12,0x61,0x3d,0x7c,0x2f,0xa0,0xef,0xb0,0x13,0xb8,0xb2,0x9d,0x54,0xdb, - 0xb7,0x93,0xe2,0x8b,0xef,0x57,0xee,0x96,0x40,0xd7,0x30,0x1b,0xee,0xf3,0x74,0xfe,0xb3,0x44,0x64,0xe8, - 0xb6,0xee,0x1d,0xf9,0xde,0x28,0xcb,0x4c,0x0f,0x9c,0x79,0xcc,0x85,0x9e,0x7c,0x9d,0x55,0xff,0x3e,0x4f, - 0x73,0x53,0x27,0x5f,0x8a,0x65,0xee,0xf6,0xd4,0xf3,0x85,0xbd,0xd8,0xb3,0x6c,0xec,0x8d,0x24,0xf2,0x95, - 0xb9,0x3d,0xab,0x92,0x57,0x7f,0x9d,0x56,0x58,0xc8,0x5f,0xab,0xd5,0x4d,0xb5,0x77,0x60,0x86,0xa9,0x6c, - 0xc6,0x08,0x83,0x63,0x50,0x79,0xa6,0x89,0xae,0xe1,0xad,0xbd,0xc4,0x73,0xc3,0xc4,0xb9,0x53,0x8f,0xb9, - 0x8e,0x34,0x4c,0xaa,0xf3,0x4b,0x8e,0x88,0xc3,0xe0,0xe5,0xae,0x88,0x75,0x09,0xde,0xb3,0x8c,0x75,0x16, - 0x92,0x68,0x23,0xb0,0xfb,0x62,0x4f,0xe7,0xd4,0xe8,0x2c,0x48,0xe0,0x5b,0x65,0xed,0x6b,0x27,0x9c,0x79, - 0x13,0xa4,0xf1,0x6d,0x7a,0x61,0x6f,0x36,0xe3,0xa1,0xc3,0xd4,0x88,0x68,0x88,0xec,0x86,0x97,0x22,0x45, - 0x38,0xbf,0xd3,0xe2,0x6c,0xc5,0x37,0xb2,0xa7,0x40,0xba,0x63,0x6d,0x42,0x96,0xc0,0xfa,0x77,0x00,0x73, - 0x0e,0x4f,0xcb,0x5a,0x0d,0xa1,0x79,0xa2,0x7c,0xe2,0xb6,0xf6,0x50,0xaa,0xb4,0x89,0xc5,0x53,0xf6,0x2e, - 0x5c,0xb1,0xd8,0x98,0xaf,0xe7,0xe0,0x08,0x2c,0xc2,0x66,0xc9,0x85,0x38,0xde,0xa4,0x8e,0x57,0x1d,0x51, - 0x79,0x82,0x49,0xdb,0x57,0xd4,0x7a,0x5d,0x67,0xbd,0x0b,0x84,0x54,0x51,0xf7,0x50,0x43,0x4d,0x8d,0x1f, - 0x46,0xd8,0xb3,0x11,0xa2,0x77,0x2f,0x03,0x7b,0x0d,0x13,0xef,0x0d,0x29,0x1c,0xbf,0x0c,0x0f,0x15,0x5c, - 0xdb,0xa2,0x1a,0xce,0x05,0x8d,0x86,0x19,0xc7,0x80,0x39,0x9f,0x31,0x06,0xac,0x61,0x46,0x70,0x15,0x17, - 0x04,0xc9,0xc3,0xb1,0xc0,0x0f,0x71,0x21,0x9a,0x0b,0x6d,0xe4,0x64,0x12,0x7b,0x7b,0xe3,0x84,0xef,0xf2, - 0x75,0x59,0xce,0x26,0x1d,0x41,0xf1,0x8d,0x9b,0x2b,0x66,0x1c,0x5e,0x24,0xe6,0x1e,0x72,0x09,0x7e,0x31, - 0x36,0x11,0x3a,0x5b,0x89,0xd0,0x29,0xc3,0x4a,0xf9,0xd1,0x0e,0x26,0x45,0x68,0x7a,0x1f,0x30,0xd3,0x0e, - 0x0d,0xc9,0x06,0x11,0x3c,0x74,0xa8,0xbc,0x80,0x3c,0xa6,0x3a,0xe1,0x33,0xce,0x5e,0x04,0xae,0x72,0xe0, - 0x25,0x83,0x59,0x60,0x4f,0x05,0xce,0x43,0x8c,0xb2,0xdd,0xd4,0x12,0x8c,0x04,0x5c,0x0f,0xd3,0x82,0x34, - 0x0d,0xf4,0x29,0x41,0x58,0x73,0x5e,0xad,0xe6,0x33,0xda,0xab,0x34,0x83,0x2d,0x60,0x4b,0x35,0xf5,0x26, - 0x22,0x95,0xf0,0x2a,0x16,0x57,0xe8,0x25,0xaf,0xf9,0xbf,0x0c,0x7e,0xb8,0x58,0xb0,0xa3,0x31,0x61,0xab, - 0xab,0x58,0x2e,0x8a,0xa6,0xa1,0x47,0xe6,0xb2,0xe9,0x8d,0xc8,0x28,0x71,0xfc,0xaa,0x2b,0x11,0x92,0x18, - 0x8c,0x8e,0x92,0xcc,0xf4,0x3a,0xed,0x67,0x07,0xb7,0x46,0x0f,0x6a,0x84,0x8c,0xc3,0x2f,0xd6,0xe5,0x4a, - 0xb4,0x3d,0x08,0x5b,0x4d,0xb4,0x09,0xbd,0xd0,0x7a,0x57,0xb5,0xb9,0xd4,0xb7,0x33,0x77,0x2d,0x7c,0x14, - 0x90,0x7a,0x99,0xcf,0x3f,0xe1,0x80,0x18,0x37,0xc1,0x2e,0xe0,0xd4,0x3b,0x2e,0xcd,0x0a,0x25,0xe5,0x6d, - 0x62,0x64,0x0c,0x3a,0x94,0x31,0x7c,0x44,0xcf,0x11,0x10,0x9e,0x90,0x35,0xfd,0x50,0x5f,0x54,0xa7,0xf2, - 0xb0,0x23,0x77,0xdd,0xcc,0x35,0x84,0xfb,0x1f,0xcb,0x75,0x5c,0x72,0xfb,0xf1,0xb4,0xc6,0x35,0x58,0x83, - 0xac,0xcc,0x78,0x2a,0x81,0x59,0xee,0x60,0xfa,0xb6,0xca,0xc9,0x2b,0x93,0x92,0xea,0xd0,0xef,0xd5,0x51, - 0x20,0x7a,0xd2,0xa6,0xaf,0x44,0x8a,0x43,0x5c,0xdc,0xe0,0xb6,0x9a,0x62,0x43,0x65,0x2f,0x89,0x00,0xfc, - 0x78,0x77,0x81,0xdd,0xa8,0x89,0x8e,0xb2,0x17,0x54,0x88,0x7a,0xc4,0x54,0xe8,0xc6,0xa1,0x24,0xba,0x62, - 0xc2,0x2b,0x3f,0xb1,0xf9,0xb4,0xbb,0x4b,0x4f,0xdb,0x24,0xed,0x92,0x9c,0x7d,0xdb,0x56,0x17,0x69,0xb4, - 0xb7,0xb7,0x03,0xe1,0xf3,0xb5,0x31,0x63,0x24,0xf2,0xf6,0x02,0x36,0x75,0x49,0xd7,0x5f,0x44,0x5b,0xc9, - 0x27,0xbc,0x45,0xa0,0x14,0x81,0xd3,0x48,0x4e,0x0c,0x48,0xff,0xc2,0x3f,0xd6,0x23,0x1e,0xe6,0x47,0x09, - 0xdf,0xa1,0x94,0xe5,0x93,0xdc,0x3a,0xbd,0x37,0x49,0xef,0x46,0xbc,0x26,0x99,0x10,0x27,0xd7,0x1c,0xb9, - 0x1d,0xbb,0xc6,0xb8,0x25,0xdc,0x29,0x3d,0x2c,0x74,0x7b,0x5e,0xcd,0xf8,0x51,0xae,0xbb,0xc6,0xd3,0xd4, - 0x44,0x3b,0x18,0x9e,0x98,0xcd,0xe1,0x0c,0x5d,0x1b,0x60,0x09,0x66,0x1e,0xa6,0xd2,0x30,0x91,0x2c,0xd8, - 0xe2,0xc1,0xb6,0x7f,0x41,0x2c,0x4d,0xf6,0x4a,0xd4,0xa5,0xb5,0x9a,0xd7,0xea,0xb4,0xaf,0xac,0xed,0xd3, - 0xdc,0x80,0x00,0xc2,0xd9,0x4b,0x5c,0x6e,0xa5,0x66,0x1c,0x41,0x8e,0xe3,0xc8,0xb1,0xf9,0xcc,0x00,0xcd, - 0x4a,0x54,0x9e,0x0b,0x28,0x0e,0xe2,0x35,0x7c,0x4f,0x92,0x79,0x87,0x2c,0x0c,0xf3,0xe2,0xef,0x08,0x9c, - 0x9d,0x21,0x9f,0xaf,0xd8,0xb9,0x15,0xbe,0x26,0xf2,0x3d,0x3f,0xd3,0x4f,0xcf,0xf3,0xb2,0xd4,0xf3,0xdb, - 0xdb,0xed,0x7b,0x71,0x37,0x09,0x74,0xb7,0xbd,0xa3,0xa9,0x9b,0x43,0x68,0xad,0x69,0xeb,0x15,0xce,0x60, - 0xbe,0xb6,0xa9,0x9b,0xeb,0xe4,0x4c,0xf1,0x40,0xff,0xac,0x03,0xe0,0x77,0x70,0xf6,0xf3,0xb6,0x25,0x17, - 0x35,0xa3,0xbe,0x6e,0x45,0x6a,0x51,0x67,0x17,0x34,0xcd,0x74,0x18,0x3d,0x1c,0x9b,0x87,0x83,0x11,0x38, - 0x54,0x2e,0x95,0x7d,0xa7,0xba,0xd5,0x2f,0x50,0xa4,0x69,0x4d,0x25,0x10,0xf6,0xac,0xef,0x98,0x54,0xc2, - 0xd9,0x8b,0xa2,0xe1,0xf9,0x34,0x8f,0xc6,0xc2,0xf7,0xac,0xce,0x4c,0x82,0xbd,0x08,0x98,0x48,0xe9,0x55, - 0xa7,0x95,0xb3,0x5a,0x6e,0x55,0xfe,0x2e,0x21,0x9e,0xb2,0xe3,0xd4,0x78,0x66,0xc3,0x26,0xd3,0x07,0xf3, - 0x9a,0x81,0xe2,0xba,0x56,0xc7,0x32,0x34,0x62,0xc6,0x4e,0xea,0x9e,0xa0,0xc9,0x88,0x53,0x77,0x22,0x17, - 0x90,0x9a,0x85,0x57,0x84,0xa1,0xa2,0xff,0xcb,0x56,0xeb,0x2d,0xc0,0xc5,0xc9,0xae,0x52,0xf8,0xef,0xbb, - 0x42,0x35,0xc2,0xdd,0x4a,0xa1,0xf2,0xae,0x42,0xd6,0xd6,0x8e,0xd5,0xf1,0x44,0x6c,0x76,0xca,0x29,0x18, - 0x46,0x40,0xb0,0xb9,0x11,0x37,0x50,0x33,0xfb,0x59,0xcb,0x6d,0x54,0x57,0x0c,0xa9,0xf7,0xf8,0xef,0x27, - 0x0e,0x26,0xf5,0x94,0xa1,0xf6,0x03,0xff,0x7d,0x8c,0xb3,0xe3,0x23,0xfe,0xbc,0x1d,0xa2,0x8b,0xed,0x39, - 0xb7,0x40,0xfc,0x77,0xf6,0x8c,0x38,0x66,0x6c,0x45,0x44,0x98,0x9c,0x63,0x3e,0xc1,0x72,0x14,0x9c,0x5c, - 0x4f,0x62,0x73,0x26,0xd2,0xa1,0xb8,0xbd,0x5d,0xf3,0x83,0x1c,0x36,0x90,0x35,0x70,0x12,0x1e,0x24,0x09, - 0xf1,0xd0,0x38,0x09,0x0f,0x86,0xa1,0x21,0xca,0x8f,0x93,0xf0,0x60,0x0e,0x24,0xae,0xcc,0xd7,0xe1,0x3f, - 0x0d,0xbe,0x30,0x54,0xe6,0xf4,0xc4,0x52,0xe9,0xc4,0x26,0xed,0xee,0x7e,0x34,0x0d,0x49,0xac,0x37,0x47, - 0xbd,0xce,0x0a,0x3a,0xf7,0x7d,0x3d,0xee,0x18,0x6f,0x98,0x4f,0x60,0x62,0x5e,0x5f,0x3e,0x0b,0xdf,0x29, - 0xf3,0x25,0x21,0x2a,0x03,0x10,0x41,0x91,0x7e,0xaa,0xd7,0x20,0x40,0xdc,0x3e,0x10,0x41,0x81,0x00,0x03, - 0xe5,0x88,0x06,0x69,0x69,0x2c,0x3a,0x8d,0xc3,0xd7,0x9e,0xcf,0xcf,0xf6,0xf3,0x52,0xc4,0x16,0xf6,0x66, - 0x3d,0x38,0xac,0x99,0x40,0x2c,0xa3,0xc8,0x5f,0x71,0x39,0x70,0x60,0x0e,0x1c,0xc2,0x1d,0xf4,0x39,0x6e, - 0x33,0x73,0x16,0xfb,0xbb,0xa7,0xd6,0xec,0x7a,0x15,0xf4,0x07,0x16,0xe3,0x43,0xbd,0x4b,0xe0,0xb8,0xaf, - 0x42,0x4a,0xc8,0x4e,0xa5,0x35,0x31,0xb3,0x9f,0x21,0x3c,0xce,0xdb,0xf0,0xa4,0xef,0xd1,0xe7,0xc2,0xe7, - 0xa9,0x80,0x71,0xfc,0xa7,0x89,0x35,0xe4,0x92,0x92,0x80,0xa5,0x93,0xf8,0x17,0x0c,0xa5,0x99,0x01,0x50, - 0x0e,0xeb,0x67,0x7a,0x20,0xfd,0x34,0x57,0xd1,0x29,0x27,0x5a,0x31,0xc6,0xe0,0x0e,0x82,0x92,0xf6,0xbc, - 0xae,0x2e,0xe9,0x00,0x79,0xc2,0x5a,0xed,0xfb,0xf2,0xd9,0x16,0x4d,0xdd,0x96,0x81,0xe9,0x2d,0x18,0x5d, - 0x74,0x97,0x13,0x16,0x29,0xc9,0x9a,0xf0,0x11,0x55,0x7e,0x7d,0xe3,0xe0,0x72,0x67,0xe7,0x67,0x4c,0x9a, - 0xef,0x22,0xfa,0x5f,0x2d,0x63,0x33,0x3d,0x90,0x00,0x94,0xab,0x25,0x60,0xc9,0x47,0xeb,0x03,0xe3,0x51, - 0x77,0xd9,0x75,0x2a,0x30,0xe0,0xb0,0xd3,0x12,0x14,0x8f,0xbb,0xc0,0x06,0x99,0x45,0x0c,0x93,0xb8,0xb8, - 0x97,0x2e,0x51,0xc9,0x3a,0xd0,0x6b,0x59,0xfd,0x10,0x84,0xdd,0xf7,0xad,0x91,0x12,0xc8,0xc6,0x4d,0x7a, - 0x5d,0x0a,0xfa,0xfd,0x19,0xf6,0x1c,0x5b,0xc6,0x42,0x58,0x0b,0xbe,0xc0,0xf6,0xdb,0x66,0x82,0xc5,0x18, - 0xea,0x3f,0x8d,0x0b,0x97,0x35,0x78,0xa9,0x83,0x11,0x0f,0x18,0x0b,0x29,0xdf,0xdd,0x71,0xb8,0xfb,0xba, - 0x35,0x6d,0xec,0xc2,0x5e,0x82,0x48,0x5f,0xe2,0x44,0xf9,0x0a,0x9b,0x60,0xa7,0x87,0x13,0xd5,0xdd,0xf3, - 0x65,0x77,0x12,0x6d,0x04,0xcc,0xde,0x0c,0x89,0xc4,0x61,0x43,0x3a,0xc3,0x9b,0x20,0x40,0x32,0xdb,0x66, - 0x2f,0x00,0x4b,0x49,0x7a,0xbd,0xa2,0xc2,0xe9,0x1d,0x8b,0x6d,0xa2,0x5c,0x67,0xd9,0x27,0x5c,0x48,0xcd, - 0x70,0xcb,0x4f,0x40,0x5d,0x1f,0x3a,0xa6,0x7f,0x57,0xb5,0xb3,0x46,0x1c,0x97,0xdf,0x3c,0xae,0x77,0x76, - 0xae,0x6a,0xbe,0x80,0x6d,0xf6,0x0d,0xd7,0x94,0x94,0xb4,0x20,0x54,0xc8,0xc4,0xb6,0x2e,0x77,0x0f,0xd4, - 0x3e,0x64,0x38,0x7c,0xd0,0x5d,0xd9,0x7b,0x32,0x93,0xf1,0x53,0xec,0x72,0x9c,0x0c,0xfb,0xea,0x8f,0x78, - 0xd5,0x8a,0x73,0x9d,0xc8,0x6a,0x3a,0xe3,0xa5,0x6e,0x87,0x83,0x05,0x8d,0xea,0x31,0xab,0x8d,0xa1,0xe2, - 0xb7,0x3d,0xdb,0x1a,0x6d,0x1b,0x39,0x1a,0x23,0x89,0xdb,0xdb,0x82,0x2f,0xc2,0x73,0x5b,0xa7,0x03,0x2d, - 0xe2,0x03,0x6a,0x6b,0xed,0xf0,0x57,0xb2,0x65,0x6b,0xb3,0xe9,0xa6,0x27,0xb2,0xbf,0xcd,0xf6,0x67,0x5b, - 0x57,0x2f,0x42,0x7d,0x12,0xb7,0x96,0x09,0x53,0xf7,0xad,0xa5,0xc6,0x5f,0xda,0xd9,0xe2,0xca,0x74,0x67, - 0x0b,0xeb,0xde,0x74,0x68,0x74,0x71,0x08,0x00,0x02,0x84,0xc8,0x13,0x11,0x9e,0x38,0x10,0x63,0x74,0x6a, - 0xd9,0x14,0xa1,0xfd,0xd9,0x0e,0x0b,0xb7,0x96,0xf9,0x3c,0xee,0x2f,0x55,0x4b,0x70,0x3f,0xab,0x2e,0x3f, - 0xbb,0x5e,0x66,0x70,0x08,0x23,0xf4,0x44,0x13,0xcd,0xf7,0xcc,0xea,0x8e,0x6e,0x6f,0xdd,0xc8,0xfd,0x11, - 0x2f,0xcc,0xeb,0xf8,0x3f,0xea,0x5c,0x6f,0x6f,0x8f,0x3b,0x07,0xf1,0xc1,0x5a,0x78,0xb6,0xdf,0x88,0x30, - 0xd1,0xe5,0x6a,0xa1,0xad,0x2c,0x47,0xf5,0x64,0x3b,0x50,0xd8,0xa4,0x67,0xaa,0xc1,0xdf,0xb5,0x7a,0x4e, - 0xc5,0xb1,0xc3,0xc0,0x98,0x8f,0x9f,0xb6,0xf1,0x87,0x40,0xda,0x2a,0x5c,0xfe,0x2b,0x2a,0x81,0xa0,0x02, - 0x21,0xcf,0x6c,0x28,0x1a,0x3e,0x03,0x86,0x63,0x06,0x0c,0x04,0x05,0x28,0x1a,0x37,0x25,0xc9,0x50,0xd8, - 0x80,0xac,0xd3,0x80,0xbf,0xec,0x3b,0xbb,0x39,0x66,0x39,0x8f,0x94,0xc6,0x08,0x8c,0x2f,0xf3,0x25,0x91, - 0x94,0xf2,0xf8,0x53,0xc9,0x2a,0x69,0xfb,0xfa,0x7c,0xbe,0x48,0x6b,0xe1,0xd8,0x88,0xe8,0xd4,0xa7,0x78, - 0x2f,0xe4,0x7d,0xcd,0xee,0xa2,0xec,0x60,0xde,0xb5,0xef,0xf1,0x31,0x42,0xe4,0xe2,0x1a,0x63,0xd8,0x93, - 0x4d,0xcd,0x83,0x6a,0xfa,0xb6,0x3c,0x94,0xd5,0x4b,0x81,0x67,0xe2,0xe5,0xd6,0x66,0x74,0x03,0x8e,0x68, - 0x40,0xac,0x1b,0xfc,0xec,0x92,0xd1,0x3d,0x56,0x44,0xc6,0x20,0x55,0x35,0x75,0xcc,0x08,0xea,0x82,0x0b, - 0x9b,0x4c,0xff,0x10,0x1a,0xe0,0xf1,0xdc,0xe1,0x02,0x44,0x10,0x7d,0x05,0xa0,0xd4,0x1c,0xca,0x21,0xae, - 0x54,0x45,0x9b,0x48,0xd9,0xf7,0xb4,0xcb,0x6c,0x59,0x97,0xbc,0x8d,0x40,0x0b,0xdb,0x43,0xa4,0xa9,0xd4, - 0xbf,0xbd,0x1d,0x17,0x58,0x3b,0x1b,0x39,0x61,0x74,0x2c,0x43,0x7f,0x6a,0xc4,0xb5,0xb7,0xb7,0x36,0x3c, - 0xab,0x37,0xed,0xe3,0xf2,0xc1,0x3b,0xdf,0xb4,0x60,0xec,0x22,0x7d,0x3d,0xc1,0x2a,0x41,0xce,0x6b,0xc2, - 0x73,0xf1,0xe3,0xb1,0xb9,0x94,0x3b,0xb6,0x8f,0x56,0x9c,0xca,0x17,0x3d,0xdd,0xd5,0x15,0x88,0x88,0x47, - 0xf7,0xe4,0x62,0x0e,0x7b,0xc3,0x51,0xf7,0x9a,0xb3,0x0b,0xdc,0xb3,0x71,0x6f,0x6e,0xcd,0x97,0x70,0x8b, - 0x00,0x25,0xb1,0x71,0x8b,0xab,0x54,0x4c,0x2e,0x6f,0xf2,0x7a,0xd4,0x11,0x52,0x59,0xf3,0x60,0x61,0xde, - 0x11,0xa7,0x0a,0xe5,0xd8,0xe5,0x24,0x18,0x12,0xa5,0x41,0xc5,0x82,0xf0,0xd8,0x88,0x84,0x38,0x9e,0x3e, - 0x72,0x5b,0x77,0xea,0x2f,0xc2,0x6e,0x0e,0xa7,0xc4,0xf3,0xe3,0x8e,0xf6,0x77,0xf1,0x4a,0xf5,0xdb,0x96, - 0x1b,0xff,0x36,0xdb,0xdf,0xdf,0x28,0xf9,0x8c,0xc5,0xe7,0x6b,0x6f,0xdd,0x3c,0xcf,0x36,0x27,0xd8,0xc7, - 0xad,0xf8,0x4c,0x1e,0x2e,0x2c,0x92,0x7b,0x2c,0xe7,0xc9,0xba,0xe2,0x89,0xbf,0x07,0xcb,0x06,0x9a,0x48, - 0xdc,0xbb,0x18,0x84,0xf2,0xa6,0x0c,0x9a,0x86,0xa9,0x51,0x94,0xb3,0x17,0xbd,0x1e,0xd8,0xb6,0x03,0x5b, - 0x59,0x05,0x61,0x36,0xe8,0xd9,0xad,0x02,0x20,0xce,0x47,0xf0,0x58,0x2b,0x09,0x1d,0x36,0x78,0x74,0xdb, - 0xfb,0xf7,0xca,0xa1,0xfa,0xc7,0x65,0x27,0x5a,0x5b,0x1c,0xbe,0x62,0xf6,0xa6,0xb8,0xe9,0xca,0x29,0xfc, - 0xd9,0xc0,0xad,0xbb,0xa5,0xf8,0x62,0x69,0xff,0xcd,0x84,0xef,0x71,0xaa,0x71,0x6d,0xb4,0xc3,0xa7,0xc4, - 0xe8,0xc9,0x91,0x5e,0x27,0x49,0xda,0xa0,0xc2,0xed,0x7d,0x13,0x8c,0xaa,0x5e,0x2b,0x63,0x19,0x70,0x47, - 0xd7,0xfb,0xdd,0xed,0x62,0x3f,0x76,0x1b,0xed,0xf6,0xc7,0xc9,0x2b,0xc5,0xea,0x55,0x50,0x6b,0x5c,0x4a, - 0x37,0xc5,0xf2,0xe1,0x65,0xe9,0x79,0xae,0x9c,0x2f,0x83,0x06,0xbd,0xe7,0x7a,0x9c,0x20,0xa0,0x66,0xd0, - 0xff,0xfd,0x71,0x20,0xd3,0x1c,0xd7,0xc4,0xb8,0xdc,0xeb,0xdf,0xd9,0x0e,0xc9,0x26,0x5c,0x29,0x5d,0x06, - 0x6e,0x7a,0x1c,0x4f,0xd1,0x83,0x8e,0x85,0x83,0x84,0xdd,0xa7,0xd1,0xa7,0xe1,0x35,0xcd,0x40,0x3e,0x2f, - 0xeb,0x8e,0xa8,0xf2,0x15,0xed,0xd9,0x17,0x75,0x76,0xa0,0x9e,0xd5,0xd9,0x43,0xf5,0x06,0x0d,0x3f,0x0f, - 0xb5,0x77,0x7c,0x2b,0xf7,0xa6,0xec,0xf7,0x78,0x45,0xac,0xe5,0x9b,0xda,0x6a,0xe0,0x68,0xaa,0x7e,0x5a, - 0x09,0x6b,0xc9,0x51,0xe2,0x02,0xe4,0x3f,0x19,0x42,0x72,0x1e,0xd6,0x7b,0x92,0x2b,0x06,0x22,0x2b,0x9e, - 0x71,0xe6,0x9d,0x1c,0x86,0x24,0xc4,0x48,0x63,0x1b,0x31,0x22,0xb3,0xb8,0x47,0x95,0x7d,0x94,0xe5,0x12, - 0xe8,0x28,0xf1,0x9f,0xd3,0x0b,0x72,0xe4,0x84,0x41,0xb2,0x3c,0x19,0x31,0xda,0xc0,0xf5,0x8f,0xc1,0xb6, - 0xc8,0x8a,0xce,0x16,0xd9,0xd8,0xa5,0x45,0xb0,0x6b,0xca,0x4d,0xf4,0xe7,0x76,0x11,0x32,0x5d,0x3b,0x1f, - 0xf3,0x33,0xb9,0xd3,0x57,0x69,0x73,0x6c,0x71,0xa8,0x59,0x73,0x94,0xd9,0x34,0xb5,0xe1,0x28,0x98,0x6d, - 0x38,0xe6,0x24,0x42,0xb3,0xaa,0xd6,0x48,0x0c,0xee,0xf9,0xcb,0xda,0x7f,0x6b,0x63,0xab,0x8f,0xb3,0x93, - 0x4b,0x1b,0x8c,0x43,0x79,0x1b,0x49,0x06,0xaf,0xa2,0xb4,0xf5,0xae,0xae,0xae,0x44,0x30,0x60,0x92,0x1b, - 0x3d,0x3f,0x95,0xf7,0xa1,0xad,0xe3,0x2e,0xfe,0x2c,0xdd,0x62,0x30,0x05,0x8f,0x50,0x98,0x2e,0x14,0x90, - 0x09,0x17,0x5a,0x7a,0x1c,0x67,0x73,0x76,0x76,0x28,0xd1,0xc6,0x7b,0x84,0x2d,0xac,0x7d,0x29,0x03,0xe8, - 0xb7,0xea,0xda,0xd6,0xe6,0xf2,0x95,0x4c,0xf7,0xea,0xaa,0x82,0xfc,0xa8,0x94,0x27,0x22,0x26,0x5a,0xff, - 0x0d,0x4b,0x2d,0xe4,0xc2,0x67,0x88,0x7d,0x02,0xd9,0x0d,0xd3,0x18,0x6d,0xb0,0xf1,0x6c,0x42,0x7f,0xd3, - 0x1e,0x70,0x29,0x8f,0xa4,0xcc,0xbb,0x43,0x0a,0x2e,0xa5,0x4b,0x3c,0x82,0xb0,0x33,0x92,0xa0,0xce,0xbe, - 0x19,0x1d,0x9b,0xfb,0x8e,0x86,0x2c,0x79,0x28,0x97,0x98,0x42,0x58,0xd5,0xb0,0xbd,0x44,0x66,0xa2,0xa1, - 0xe9,0xcf,0x1e,0x19,0x84,0x13,0x4b,0xb9,0xa7,0xeb,0x8e,0x06,0xe5,0xcc,0xb6,0xe3,0x13,0x78,0xf9,0x58, - 0x6b,0xdd,0x78,0xbd,0x70,0x6f,0x09,0xdd,0x41,0xdf,0xdd,0x70,0xb4,0x03,0x4b,0xac,0x94,0x8d,0xc0,0x19, - 0x1e,0x40,0xba,0x0f,0xea,0x72,0xe1,0x63,0x48,0x62,0x64,0x7c,0xb4,0x1f,0x4f,0x3b,0xe6,0xde,0x2a,0xbc, - 0xee,0xfa,0x6d,0x70,0x11,0x2c,0x22,0x44,0xac,0x79,0x2d,0x43,0x1b,0xc4,0xbf,0xfa,0xed,0xbe,0xd1,0x84, - 0x14,0xd2,0x63,0x0e,0x99,0x0f,0xd5,0x4b,0x24,0xb4,0x47,0x04,0x51,0x5e,0x11,0x90,0x1c,0x12,0x70,0x4b, - 0x4a,0xb8,0xfd,0x1b,0x29,0xbd,0x31,0xdd,0xbe,0xb4,0x9d,0xed,0xa9,0x6c,0x2b,0xd5,0x35,0x67,0x1b,0x08, - 0xca,0x92,0x9d,0xb7,0x21,0x71,0x25,0x72,0x7e,0x28,0x1f,0x70,0xaa,0x0d,0xd0,0x32,0x2a,0x44,0xd1,0x7a, - 0x20,0x46,0x39,0x1d,0x37,0x1f,0x99,0x20,0xd0,0x12,0x20,0x57,0x0d,0x10,0x24,0x77,0x01,0x85,0xe5,0x67, - 0xe0,0x68,0xdf,0x87,0x00,0x3a,0xf6,0x8c,0xc7,0xcb,0xe7,0xd1,0xb6,0x47,0x84,0x8c,0x44,0x6a,0x47,0x72, - 0x99,0x78,0xfd,0x03,0x54,0x17,0x36,0x64,0x85,0xa0,0x43,0x76,0x83,0x6f,0x74,0xb9,0x32,0xae,0x6b,0xae, - 0xe9,0x0a,0xf7,0x52,0xf1,0xde,0xaf,0x6c,0xf8,0xdd,0x77,0x30,0x9c,0xa6,0x71,0xd3,0xdc,0x7d,0x8c,0x39, - 0x9e,0x48,0xa2,0x58,0x73,0x43,0xd8,0x6c,0xde,0xb2,0xaa,0x91,0xfb,0x11,0x81,0xd4,0xee,0xc5,0x11,0x48, - 0x72,0xb8,0xdb,0x0f,0xcc,0x14,0x3b,0x3f,0x19,0xd2,0x12,0x66,0xd9,0xa2,0x91,0xe9,0xcf,0x41,0x7f,0xf4, - 0x3e,0x20,0x8e,0xd4,0xce,0xb7,0xb9,0x88,0xe0,0x02,0xab,0x32,0x39,0x4b,0x67,0xb1,0xe8,0xfb,0xe4,0xce, - 0x67,0x5b,0x2f,0x9a,0x00,0x54,0x4e,0x3e,0x87,0x4d,0x05,0x6e,0xab,0x18,0x69,0xc7,0xac,0xb5,0x1b,0x14, - 0xa3,0xf6,0x7a,0xe8,0xcd,0x83,0x5b,0x61,0xdf,0x75,0x47,0x30,0x60,0xf2,0x9e,0xf0,0x76,0x61,0x23,0xce, - 0x18,0xd7,0x6c,0xdd,0xac,0xe5,0x92,0x1e,0x22,0x16,0xf8,0x8e,0x67,0x22,0x76,0x34,0x5f,0xca,0xe6,0x05, - 0x2d,0x5d,0x78,0xe4,0xf5,0xee,0x91,0xc5,0x45,0x16,0x42,0xb8,0x19,0xaa,0x72,0x11,0x19,0xc7,0x85,0x13, - 0x8d,0xe5,0x59,0x79,0x58,0x1c,0xc1,0xd5,0xec,0x94,0x56,0x10,0x77,0xb4,0x5e,0xf2,0x4d,0xad,0x66,0xf9, - 0xd0,0xad,0x08,0xf7,0x64,0x3f,0x16,0x0a,0x06,0x1c,0x58,0xfa,0x38,0xb6,0xd3,0x40,0xf0,0x85,0xfd,0xaa, - 0x9d,0x8a,0xec,0x2e,0x50,0x3d,0xb6,0x05,0x7e,0xb6,0xf0,0x3e,0x84,0x77,0xeb,0xec,0x7b,0x84,0x4a,0xef, - 0x44,0xdf,0x70,0xdc,0x9b,0xc6,0xdd,0x31,0x83,0x33,0x5f,0x4d,0xaa,0xb4,0x82,0x6c,0x63,0x0c,0xc9,0x11, - 0xc6,0xc3,0x02,0xf0,0xb7,0xf0,0xdb,0xa4,0x2d,0x71,0xa6,0xce,0x88,0x4d,0x27,0x22,0xb6,0x30,0xa0,0x79, - 0x8a,0xb1,0x15,0xcc,0xfe,0x31,0x28,0xd8,0xbe,0x25,0xec,0xe3,0x45,0xfd,0x83,0x4d,0x0b,0x3f,0x6c,0x8b, - 0x82,0xf3,0x0e,0xf7,0x88,0xa0,0x7b,0x35,0x43,0xd9,0x66,0x18,0x8f,0x3a,0xbc,0x0b,0x0e,0xee,0x71,0x75, - 0xe8,0x13,0x37,0x13,0x3e,0xa2,0xe6,0x9b,0x22,0x99,0x7b,0xb5,0x29,0xb6,0x6b,0x62,0x16,0x38,0x84,0x3b, - 0x36,0x60,0xd4,0xe8,0x10,0x4d,0x3c,0xb0,0x63,0xf3,0x3a,0x1b,0x06,0x55,0x6d,0x04,0x4a,0x04,0x65,0x9b, - 0x08,0xd4,0x1a,0x00,0x1b,0x4a,0xc4,0xb5,0x00,0x17,0x25,0x49,0x11,0x0e,0xbc,0x9f,0x4b,0xe7,0xc4,0x66, - 0x0f,0x71,0x9b,0xd0,0xe7,0x6c,0x60,0x18,0x90,0xd6,0x63,0x17,0xf7,0xa9,0xfc,0x6c,0x61,0x06,0xef,0x61, - 0x2b,0x99,0xeb,0x38,0x20,0x95,0xe9,0xf8,0x10,0xd0,0xa5,0xfd,0xf1,0x57,0x0a,0x1b,0x34,0x55,0x26,0x1d, - 0x6b,0xb9,0x7b,0x6c,0x18,0xd7,0x4d,0x92,0x8b,0x9c,0xb2,0xdf,0xba,0xa9,0x43,0x8a,0x73,0xb9,0xf3,0xc8, - 0x47,0x72,0xe1,0xc5,0x65,0x42,0x4e,0xee,0x97,0xc6,0x75,0x10,0x72,0x8d,0xbb,0x28,0xa2,0xf6,0x6d,0xc8, - 0x55,0x03,0xbb,0x41,0x51,0xe7,0x3b,0x57,0x78,0x05,0xae,0xf6,0x32,0x41,0x65,0xfd,0x21,0x42,0xb3,0x99, - 0xda,0x49,0xdd,0x38,0x84,0x72,0xfc,0x7c,0x28,0x40,0x59,0xf6,0xe0,0xbf,0x71,0x09,0x7b,0xfa,0x60,0xdc, - 0x19,0x4e,0xd5,0x31,0x46,0x97,0x91,0xf4,0xed,0x44,0x92,0xae,0xcd,0x47,0xdb,0xb7,0xf9,0x30,0xd0,0x41, - 0x15,0xc0,0x17,0xd8,0x88,0x67,0x04,0x66,0x0c,0xed,0x75,0xd8,0x1e,0x59,0xad,0x81,0x4f,0x09,0x82,0x40, - 0x95,0xd8,0x90,0x46,0xdb,0x04,0xa0,0xe6,0x82,0x5d,0xc2,0x6c,0xdf,0xdf,0x0c,0x44,0xb9,0x5d,0x5b,0xc7, - 0x7b,0x55,0x4f,0x28,0xa6,0x03,0xe3,0x4c,0x99,0xa1,0x7b,0xd5,0xe9,0x29,0x0f,0x50,0x59,0x2b,0xa1,0x3a, - 0xb8,0x3a,0x6d,0x6d,0xfc,0x50,0xa8,0xe6,0xc0,0x7b,0x91,0x28,0x6b,0x55,0xcb,0xc0,0xf0,0x61,0xdd,0x6f, - 0xf4,0xf4,0xb4,0xd7,0x26,0x58,0xd1,0xbe,0xd1,0x52,0xd2,0x81,0xea,0xcf,0x91,0xa2,0x68,0x7c,0x68,0xf6, - 0x7b,0x5e,0x5a,0x1b,0x41,0x0d,0xcd,0xf4,0x63,0x7c,0x38,0xf6,0x74,0x77,0xa2,0x8c,0x0b,0x57,0x77,0xea, - 0xbb,0x97,0x56,0xd8,0x96,0xbd,0x49,0x47,0x7f,0xa5,0x84,0x94,0x35,0xc5,0xb4,0x83,0x87,0x2a,0xbc,0xe4, - 0x32,0xc7,0x49,0x43,0xd9,0x71,0x95,0x15,0xb0,0xd0,0x80,0xdd,0x02,0xae,0x2f,0x3a,0x2d,0x7b,0x57,0x5d, - 0xe6,0x1b,0x57,0x5d,0x0e,0xac,0xa8,0x5e,0xf4,0xf8,0x5f,0x2f,0xaf,0x67,0x8e,0xa7,0x3b,0x96,0x12,0x0e, - 0x64,0xf6,0xd0,0xfb,0xe6,0x60,0x02,0x88,0x4a,0xcb,0x80,0xaf,0x3f,0x8f,0xdd,0xba,0x50,0xeb,0x04,0xc4, - 0xfb,0xec,0xf1,0x6a,0x31,0xf4,0xa3,0x8a,0xb1,0x34,0xdf,0xd2,0x45,0x28,0xda,0x40,0x08,0x02,0x82,0x79, - 0x07,0x9f,0x27,0x31,0x91,0x7d,0xea,0x3e,0xb7,0xbb,0x75,0x2e,0xee,0x03,0x2c,0xdd,0x87,0x54,0x5f,0xe4, - 0xf8,0x5e,0xc9,0x26,0x9b,0x30,0x7e,0x5d,0x67,0xf4,0x1b,0xf2,0xf5,0x7d,0xd5,0x8d,0x10,0x10,0x86,0x99, - 0x37,0x2c,0xcf,0xce,0x4e,0x8f,0xc2,0x35,0xfe,0x17,0x36,0xce,0xa1,0x2c,0xb8,0x9e,0x2b,0xa3,0x8f,0x16, - 0x7e,0x83,0x06,0x75,0x59,0x8f,0x2f,0xeb,0x90,0x85,0x14,0x9e,0xa2,0x55,0xf5,0xc4,0x7e,0x63,0x4d,0xe2, - 0x58,0x12,0x7a,0x8c,0x88,0xc5,0x74,0x32,0xc4,0x77,0xe5,0xba,0x96,0x38,0x26,0xc7,0x41,0xef,0x94,0x08, - 0x78,0xfb,0x5e,0x86,0x70,0xf7,0xfd,0x53,0x25,0x10,0x0c,0x0c,0x96,0xb7,0x31,0xb4,0xeb,0xac,0xe0,0xdb, - 0x11,0x89,0x5f,0x3f,0xbe,0x58,0xe9,0xe3,0xe3,0xcc,0xef,0x10,0xf4,0xc6,0x62,0x08,0x7a,0x74,0x25,0x02, - 0x7e,0xfa,0x9e,0x91,0x93,0xca,0x8b,0xb4,0x69,0xdf,0x64,0x42,0x8c,0x6a,0xc8,0xe4,0x05,0x82,0xd5,0x30, - 0xd5,0x4d,0xc7,0x3d,0x3e,0xef,0x5e,0x87,0x5a,0x8e,0x50,0xda,0xb7,0xa1,0x85,0xb1,0x94,0xbe,0x69,0xd3, - 0xbe,0x06,0x76,0xc2,0xdd,0xba,0x8c,0x9c,0xa8,0xa7,0x31,0xd9,0xb6,0x40,0xd1,0xe5,0x72,0x93,0x9b,0x1e, - 0x6c,0x58,0x17,0x9c,0x44,0x0d,0x7f,0xe0,0x6f,0xa6,0x0c,0x47,0x37,0xde,0x6e,0x21,0x8f,0x1e,0xd0,0xc0, - 0x74,0x57,0xc6,0x8a,0x0b,0x58,0x33,0xe3,0xb9,0xfc,0x8e,0xf8,0xe2,0x8e,0xe1,0xfa,0x33,0x69,0xec,0x2d, - 0xe9,0x3a,0x45,0x9c,0x14,0x58,0x3b,0x05,0x8e,0xcb,0x82,0x61,0x75,0x50,0x83,0x27,0x20,0x8c,0x39,0xa7, - 0x6d,0x2d,0x48,0xb2,0xc6,0x8f,0x7b,0x7b,0x6e,0x2a,0xc2,0x59,0x50,0x43,0xb0,0x6d,0xb6,0x8e,0xc0,0x97, - 0x9b,0x59,0xef,0xcc,0xe4,0x40,0x98,0xb0,0xeb,0xe7,0x01,0x30,0x04,0xd1,0x2e,0x3c,0x75,0x64,0xf5,0x62, - 0x6e,0xbf,0x56,0x4f,0xdb,0x38,0x7e,0xd7,0xc3,0x0e,0x89,0x7a,0xd7,0x01,0x8c,0x92,0x58,0xfe,0x8f,0xc5, - 0xb4,0x6b,0xfa,0x68,0x50,0xcc,0x1f,0x46,0xd9,0x48,0xd0,0xd4,0xf9,0xc8,0xc8,0x04,0x42,0x60,0xf2,0xab, - 0xaf,0x36,0x04,0x47,0x46,0xcc,0xb5,0x21,0xe8,0x63,0xad,0x84,0xc7,0x48,0x49,0x87,0x50,0xb7,0x52,0x08, - 0xef,0xcc,0x2c,0xef,0x60,0x2f,0x70,0x0b,0x8b,0x75,0x4d,0x23,0xec,0x7f,0xb8,0x7f,0xb4,0xb3,0x83,0xbf, - 0x50,0xe0,0x24,0x81,0x08,0x1d,0xa4,0xfb,0x07,0x62,0x2a,0x21,0x29,0x5e,0xf7,0xa4,0x16,0xb5,0xd3,0x50, - 0x74,0xd4,0x27,0xa2,0xa7,0x30,0xfa,0x10,0xe1,0x4b,0xd9,0x00,0x03,0x01,0x0b,0x84,0x40,0xea,0x88,0xd2, - 0x36,0x24,0x19,0x81,0x49,0xc6,0x13,0xbe,0x1c,0x35,0x92,0xd2,0x7c,0x33,0x91,0xc5,0x02,0x16,0x85,0xe7, - 0x34,0x50,0x11,0x49,0x23,0x9a,0x3e,0xb8,0x0d,0x6a,0xa6,0x8e,0x39,0xce,0xa7,0x55,0xbb,0x28,0x43,0xcd, - 0xbe,0xab,0x69,0x47,0xab,0xf7,0x75,0x76,0x68,0x7c,0x25,0xdf,0xeb,0xb3,0xe7,0x57,0x4b,0xb1,0xb7,0x3d, - 0x52,0x4f,0xea,0xec,0xe6,0x07,0x2b,0xbe,0x4e,0x4d,0x98,0x93,0x30,0x9a,0xb5,0xdd,0x64,0xac,0xb0,0x93, - 0x48,0x17,0x45,0x39,0x9d,0xaf,0x66,0x3a,0x7d,0x5f,0x2b,0x7d,0xe5,0x1e,0x17,0xf9,0x55,0x6a,0xdb,0x90, - 0xfb,0x77,0x8e,0x60,0x54,0xc8,0x34,0x7c,0xda,0x47,0x43,0xd3,0x9c,0x36,0xd2,0x9d,0x94,0x06,0xf3,0x94, - 0xf0,0xde,0x50,0x0e,0xd8,0x3b,0xae,0x2d,0x56,0xdb,0xca,0xeb,0xed,0xaa,0x4b,0x9e,0x59,0x89,0x26,0xde, - 0x54,0xeb,0xab,0x22,0x38,0xe4,0xad,0xeb,0xbb,0x1e,0x02,0xed,0x0b,0xb3,0xb3,0xbc,0x2c,0xc9,0x01,0xf2, - 0x4b,0x23,0x49,0xa3,0x0a,0xec,0x48,0xff,0xda,0x97,0xdb,0xfe,0xcb,0xb5,0xda,0x8c,0x38,0x10,0xe2,0x3c, - 0x86,0xb8,0x91,0x89,0x05,0x46,0x9b,0xe0,0x9f,0x62,0x2a,0x2c,0xa4,0x75,0x5f,0xf2,0x1c,0x06,0xe4,0x7c, - 0x85,0x10,0xf0,0xca,0x90,0x4f,0x66,0x60,0x08,0x14,0x26,0x4a,0x7c,0x7e,0xe5,0xbb,0x32,0x09,0xb0,0xb7, - 0x09,0x46,0xd0,0xa5,0x02,0xc1,0x20,0x08,0xf2,0x09,0x86,0x77,0x76,0xe8,0xbd,0x0a,0x22,0xfb,0x6b,0x23, - 0x4d,0x09,0xa6,0xd0,0x18,0x83,0x60,0x0a,0xd5,0xd4,0x8a,0x31,0xf8,0x7a,0xe5,0x52,0xa2,0xbb,0x4f,0x8b, - 0xd9,0x6e,0x2c,0x11,0x2b,0xa2,0x34,0x45,0xac,0x0d,0x0e,0xcc,0x12,0x41,0xc5,0x80,0x10,0x4b,0xf9,0xe1, - 0xf4,0x68,0x32,0xa8,0x6d,0x42,0xce,0x80,0xc2,0x69,0x2e,0xb7,0x67,0x19,0x0b,0x9d,0x29,0xa2,0x2c,0xa3, - 0x24,0xd1,0xba,0x2e,0x49,0x96,0x95,0xa0,0x6d,0x67,0xc7,0xe2,0xe8,0x6f,0x7c,0xc0,0x40,0x93,0x47,0xbb, - 0x99,0xa0,0x21,0x57,0xb8,0x57,0x55,0x75,0x08,0x8e,0xc4,0x8a,0x5a,0xbc,0xd6,0x06,0xd2,0x1e,0x3b,0x09, - 0x74,0xc6,0x10,0xf6,0xa6,0xaf,0x88,0x57,0x19,0x88,0x58,0xfc,0x39,0x3e,0xf2,0xb7,0xf2,0x4e,0x8e,0x90, - 0x98,0x59,0xd6,0xde,0x33,0x23,0xd8,0x8e,0x56,0x6d,0x31,0xcf,0x6e,0xe0,0xe9,0x99,0x7e,0x4b,0x74,0xdb, - 0x55,0x4b,0x00,0x82,0x68,0xb2,0xb0,0xcd,0x36,0x2b,0x9d,0x3e,0x53,0x52,0xc9,0x7b,0xd1,0xe0,0xe8,0xf4, - 0x23,0x88,0x50,0xcb,0x09,0x06,0xec,0x9f,0x43,0xc4,0x7f,0x28,0x77,0xe9,0xc3,0xe0,0xce,0x1a,0xb2,0xbe, - 0x66,0x11,0x96,0xbd,0x29,0x42,0x8b,0x11,0xf6,0x90,0x0b,0x56,0xe2,0xeb,0x1e,0x1d,0x9f,0xe4,0x0d,0xe8, - 0x36,0x5c,0x7b,0x6a,0xd3,0xdc,0x4a,0x36,0x84,0x51,0x78,0x88,0x8d,0xbe,0x83,0x42,0x86,0x90,0x9d,0x56, - 0x1b,0x17,0x8e,0xbc,0x9b,0xaf,0xce,0x0a,0x89,0xbf,0x3a,0x98,0xc1,0x77,0xee,0x71,0x68,0x50,0xeb,0x11, - 0xd9,0xe2,0xf6,0x8a,0x0e,0x6b,0x20,0x54,0x67,0x97,0x84,0xf6,0x6c,0x92,0xf1,0x9e,0x30,0xa2,0x85,0x01, - 0x19,0x04,0x62,0x90,0x70,0xa3,0x13,0xf7,0x64,0x1d,0x35,0x60,0xf4,0x3e,0xf4,0x05,0xb4,0x59,0xc1,0x95, - 0x65,0xcc,0xb5,0x85,0x06,0x65,0x58,0xa7,0x45,0x71,0x55,0x0c,0x3b,0x4b,0x63,0xa0,0x5e,0x09,0x13,0xbe, - 0x2a,0xf7,0x7d,0x57,0x38,0x4b,0x9b,0x2c,0xdb,0x37,0x52,0xd9,0x03,0x62,0x90,0x05,0x5e,0xba,0xfa,0xb7, - 0x8c,0x15,0x37,0x01,0x09,0x0e,0xe1,0x3c,0xbe,0x94,0x8b,0x77,0xb1,0x59,0xe5,0x5e,0x43,0x3c,0xb1,0x1c, - 0x0f,0x98,0x01,0x8a,0x42,0x6b,0x80,0x6e,0x7d,0x55,0x70,0x62,0xca,0x75,0x8c,0x2e,0x94,0x8a,0x44,0xd9, - 0xce,0x07,0x34,0x7e,0x50,0x04,0xb2,0x47,0x84,0x09,0x18,0x90,0xfb,0xc3,0xbe,0x0f,0x46,0x01,0x25,0x91, - 0x84,0x3a,0xa7,0x2c,0x47,0xbc,0x6a,0x1a,0x22,0x6e,0x88,0xcf,0x83,0xa9,0x29,0xc3,0x79,0xa1,0xd3,0x76, - 0xb5,0x84,0x9e,0xc6,0x17,0xd9,0x14,0x4a,0x7b,0x69,0xd4,0x67,0x65,0xb2,0x90,0x29,0x86,0x52,0x97,0x63, - 0x27,0x75,0x59,0xe3,0xae,0x93,0xbc,0x03,0xd4,0x7d,0x69,0xe2,0x66,0x1b,0xb6,0x54,0xbf,0x99,0xd3,0x6e, - 0x33,0x56,0x2c,0x2f,0x4d,0x98,0x35,0x2c,0xcd,0x03,0xa5,0x08,0xc4,0x94,0xf2,0x4b,0xef,0xd8,0x40,0x25, - 0xfe,0xde,0xe5,0x35,0x91,0x33,0xef,0xcb,0x31,0x67,0x95,0xdc,0xe0,0xb2,0xb9,0x19,0xd9,0x0d,0xc1,0xcd, - 0x9e,0xf5,0x86,0xf3,0x33,0x6b,0x3b,0x62,0x73,0x5a,0xbe,0x18,0x26,0xa7,0x1d,0xe8,0xdc,0xef,0x70,0x29, - 0x6f,0xee,0xb5,0xae,0x05,0x3b,0x38,0x11,0x71,0xb1,0x96,0x63,0xaa,0xbd,0xab,0x7b,0xe8,0x59,0x2f,0x92, - 0x8f,0xf3,0x29,0x89,0x83,0x88,0x00,0xe2,0x27,0x56,0xc5,0x25,0x07,0x44,0x61,0x50,0xcb,0x4a,0x03,0x81, - 0xce,0x9a,0xb5,0x83,0x7a,0x4c,0x9f,0x39,0x92,0x4d,0x10,0x4e,0x40,0x2a,0x1a,0xd8,0xb0,0xcc,0xad,0x65, - 0x37,0x88,0x6e,0x99,0x96,0xca,0xc4,0x3e,0x2f,0xd7,0xd6,0xd5,0xc7,0x20,0x3f,0xf1,0x40,0x81,0x45,0x61, - 0xc9,0x51,0xf6,0x06,0xf3,0xd6,0xc6,0x65,0xaa,0x14,0x16,0x7a,0x18,0xdb,0x3f,0xef,0xca,0xf4,0x8a,0xe6, - 0x83,0xf8,0x1a,0x8b,0x63,0xf4,0xf7,0x68,0xf9,0x2f,0x7d,0xd8,0x34,0xb5,0x71,0x8d,0xdc,0xf4,0xa9,0x0e, - 0xb1,0x49,0x97,0xa5,0x14,0x82,0xde,0x7f,0x0b,0xcb,0x77,0xaa,0x18,0x7e,0x6f,0x05,0x6c,0xaf,0x1f,0x8e, - 0xbe,0x1a,0x1d,0x7c,0x21,0x61,0x5a,0x7e,0xac,0xd5,0x4f,0xb5,0xfa,0xae,0x56,0x7f,0xd4,0xea,0xe7,0x5a, - 0xfd,0x5e,0xab,0xef,0x6b,0xf5,0x43,0xad,0x7e,0xa9,0x39,0x9c,0x06,0xdf,0xfb,0x6c,0xee,0x7c,0x55,0xdf, - 0x72,0x1a,0xdf,0x6d,0xa3,0x50,0x2f,0x91,0x99,0xb9,0x92,0x09,0x52,0x72,0xbf,0x0f,0xc8,0xc3,0x33,0x98, - 0x0e,0x52,0xe9,0x7f,0xf7,0x6d,0xe7,0x5d,0x88,0x24,0x77,0xbf,0x39,0x2d,0xcb,0xb7,0x35,0x8b,0xd4,0x22, - 0x89,0x68,0x0c,0xc7,0x0b,0xdc,0x02,0x6b,0x6f,0x0b,0x32,0x85,0x22,0x69,0x84,0xd7,0x97,0x72,0x89,0x2e, - 0x99,0x7e,0xf2,0x99,0x72,0xd9,0x8e,0xc9,0x73,0x71,0xd4,0x91,0x03,0xb1,0x73,0xc5,0x39,0x6b,0xf5,0x2f, - 0xee,0xfc,0x54,0x2e,0x7b,0xd7,0xb3,0xa2,0x85,0x11,0x9d,0x9a,0xd5,0xf9,0xd9,0x19,0x3f,0x35,0x4b,0x3d, - 0x9f,0x73,0xcd,0xd4,0xf7,0x7f,0x72,0x61,0x3a,0x08,0xaa,0xcb,0x53,0x42,0xf0,0x0d,0x61,0x30,0x62,0x2a, - 0xd9,0x25,0x53,0xe5,0xab,0xb6,0x3a,0xad,0xa6,0xab,0x86,0x9f,0x96,0xf3,0xfc,0x5a,0x99,0x0e,0x71,0xe0, - 0x11,0x3a,0xaa,0x61,0xa7,0x47,0x24,0xeb,0xbc,0xa1,0xf3,0x9b,0xe6,0xae,0xd6,0xca,0x92,0x76,0xe6,0xd7, - 0x96,0x37,0xaf,0xdc,0x67,0xfb,0x62,0x87,0x8e,0x77,0xe2,0x7c,0x66,0x45,0x83,0xee,0xcd,0x94,0x2e,0xe5, - 0x17,0x11,0x0c,0xca,0x8a,0xa6,0xb0,0x00,0x10,0xab,0xf3,0x62,0x36,0xa3,0xae,0xe1,0x70,0x6c,0x75,0xbd, - 0x28,0x4a,0x24,0x12,0x44,0xd5,0xad,0x2a,0x9a,0x45,0xbe,0x54,0x45,0xab,0x17,0x12,0xe9,0x64,0x5e,0x55, - 0x4b,0x65,0xaf,0x99,0x52,0xd2,0x68,0x59,0x21,0x54,0x8b,0x42,0x78,0x89,0xa6,0xf8,0x83,0x16,0xa9,0x6a, - 0xce,0x73,0x30,0x9c,0xbe,0x85,0xb2,0x42,0xf4,0x28,0x5a,0x67,0x6a,0x66,0x99,0x13,0x36,0xa2,0x4d,0x7b, - 0x55,0xb4,0x44,0xd2,0xe6,0xb3,0xaa,0x9c,0x23,0xaa,0xca,0xef,0x2b,0xda,0x82,0x33,0x65,0x5c,0x2b,0x67, - 0x4a,0xd8,0x22,0x82,0x89,0x7c,0x31,0x27,0x60,0x50,0x6e,0x4c,0xf0,0xc1,0xe4,0xd9,0x76,0x17,0xbb,0x70, - 0x6c,0x50,0x9a,0x7b,0xca,0x04,0xcc,0x23,0xb0,0x04,0xc7,0x8a,0x57,0x17,0x45,0x53,0x50,0x49,0x70,0xb8, - 0x45,0x16,0x9d,0xb7,0xed,0x32,0x7d,0xf0,0xe0,0xf2,0xf2,0x72,0x74,0xf9,0xc5,0xa8,0xaa,0xcf,0x1e,0x1c, - 0x7c,0xfd,0xf5,0xd7,0x0f,0xae,0xe6,0x45,0xf9,0x89,0x28,0xaa,0x62,0xe0,0x9c,0x8d,0xd2,0x8e,0x0b,0xca, - 0x57,0x80,0x32,0x29,0xcf,0xc9,0x36,0x44,0xcf,0x57,0x44,0xd8,0x97,0x43,0xdf,0x6f,0x69,0xd8,0xe4,0x3a, - 0xef,0x92,0xbf,0x2b,0x2b,0xd8,0xe4,0x98,0x2d,0xaa,0x1e,0xfc,0x46,0x08,0x64,0x02,0xc4,0xed,0x03,0x01, - 0xbb,0xa2,0xc8,0x6e,0x9a,0x0b,0x22,0x88,0x37,0x47,0xf0,0x70,0x7f,0x7f,0xff,0x01,0xe5,0x45,0xc4,0x37, - 0xb5,0xe7,0x43,0x25,0x68,0x8c,0xff,0x78,0x80,0x3b,0x52,0xf9,0xcf,0xeb,0x57,0xd4,0x6c,0x55,0x00,0x32, - 0xcf,0xdb,0xc5,0x5c,0x9d,0x54,0xb3,0x6b,0x05,0x6c,0xa8,0xce,0x69,0x29,0x14,0x86,0xa6,0x10,0xa1,0x5c, - 0xc9,0xae,0x6d,0x8b,0x96,0xfe,0xe6,0xb3,0x19,0xf6,0xa3,0xca,0xeb,0xb6,0x98,0xe2,0xbd,0xa1,0x3d,0x41, - 0x40,0x54,0xe1,0x16,0x4f,0x7c,0x87,0x9f,0x03,0x75,0xfe,0x50,0x9d,0x7f,0xa1,0xce,0xbf,0x54,0xe7,0x5f, - 0xa9,0xf3,0xbf,0xab,0xf3,0xb3,0xba,0x5a,0x2d,0x55,0x99,0x5f,0xd0,0xda,0xf1,0x18,0x09,0x10,0x2f,0xd4, - 0x8c,0xa0,0x72,0xae,0x66,0xad,0x22,0x3a,0x16,0x1e,0x36,0x48,0x67,0x83,0x54,0xad,0x96,0xc5,0x14,0x0e, - 0x37,0xea,0xbc,0x56,0xc5,0xe2,0x8c,0x3a,0x43,0x83,0xa2,0x43,0xac,0x9a,0xab,0x25,0x0c,0x1b,0xd5,0x6a, - 0xae,0x72,0x75,0x42,0xac,0xe4,0x49,0xad,0x4e,0x66,0x05,0xfd,0xaf,0x14,0x3d,0x4e,0x09,0x3c,0x39,0x0a, - 0x91,0xe2,0xcb,0xec,0x67,0xa7,0x74,0x46,0x2e,0x54,0xa1,0x3e,0x9d,0xcc,0xa8,0x82,0xfa,0x93,0xfa,0x5d, - 0xd5,0x4b,0x45,0xc0,0x5c,0xb7,0x53,0x55,0xaf,0x4e,0xae,0x89,0x92,0x6f,0xf2,0xc5,0x52,0x11,0x6c,0x13, - 0xe1,0xd5,0x2c,0x73,0x42,0x3d,0xb4,0xd7,0x88,0xe1,0x6c,0x56,0x27,0xf4,0x7f,0xc9,0xf7,0xda,0xaa,0x95, - 0x22,0xe4,0xa6,0x2e,0x4f,0x20,0x44,0x27,0x24,0x95,0xaf,0x66,0x45,0xa5,0xb0,0x1d,0xc0,0xc8,0x7e,0x52, - 0x8c,0x18,0xa8,0xa5,0x13,0x02,0x3b,0xf1,0x06,0x83,0x25,0x6a,0xbe,0x20,0x00,0x5d,0xd5,0xc4,0x83,0x4c, - 0xf3,0xf2,0x22,0xa7,0x96,0xa6,0x75,0xb1,0x6c,0xb1,0x29,0xe4,0x81,0x48,0x6e,0x18,0xba,0x29,0x3b,0xf6, - 0x29,0x0d,0x8f,0xfe,0xcb,0x64,0x19,0xc0,0xe6,0xb5,0x68,0x79,0x6d,0x5a,0x7a,0x38,0xa7,0x16,0x95,0x20, - 0x37,0x1e,0x22,0x4c,0x09,0x68,0xce,0xf4,0x7c,0x46,0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9f,0x50, - 0xed,0x73,0x7d,0x06,0x5a,0x60,0x81,0xcd,0x0c,0xd4,0x2a,0x55,0x1b,0x1c,0x5b,0xad,0x5a,0x94,0xb4,0x38, - 0xd6,0xe2,0x5c,0x87,0x8a,0x09,0x05,0xe4,0x05,0xb0,0x4e,0x91,0xcf,0xab,0x33,0xaa,0xa4,0x5c,0xf1,0x1f, - 0xa0,0x00,0x9a,0x9a,0x05,0x4d,0xe8,0xb5,0x32,0x18,0x50,0x69,0x11,0x3a,0x28,0xec,0xf7,0xea,0x52,0xd9, - 0xd0,0x59,0x8a,0x83,0x93,0xfd,0xbe,0xaa,0x80,0x46,0x4e,0x6b,0x50,0x7d,0x2d,0xa0,0x05,0x42,0x08,0x06, - 0x3d,0x02,0x58,0x95,0x97,0xc5,0x02,0x65,0xa7,0x45,0x3d,0xe5,0xf3,0xa1,0x58,0x2e,0x09,0x40,0xd5,0x74, - 0x55,0xd3,0x0e,0x07,0xe6,0x02,0xea,0x6b,0xa6,0xd4,0x08,0x65,0x11,0x80,0x4a,0x94,0x1f,0x1a,0x6e,0xd9, - 0xee,0x9d,0xe6,0x53,0x00,0x60,0xad,0x8b,0xb3,0x52,0x0e,0x41,0x75,0xa6,0xce,0xe6,0xd7,0xcb,0x73,0x82, - 0x9c,0xfc,0x4c,0x03,0x90,0x35,0x2f,0xbe,0x86,0x44,0xa1,0x21,0xa0,0x2e,0x1a,0xdc,0xb2,0xb6,0x27,0x85, - 0xb8,0x25,0xfa,0x43,0x15,0x12,0x42,0xaa,0xe6,0xd7,0x67,0x95,0xfc,0xf2,0x77,0x20,0x05,0x94,0xb8,0x52, - 0xab,0x86,0x43,0x6d,0xf0,0xfc,0xf0,0x1f,0xfe,0xb2,0x65,0x98,0x01,0x51,0x75,0x51,0xe8,0x4b,0x89,0x10, - 0xd5,0x0c,0xee,0xe5,0x4a,0x6c,0xf2,0x73,0xbe,0x3f,0x9c,0xc6,0x3a,0xc8,0x51,0xad,0x78,0x52,0xc4,0xbe, - 0x91,0x25,0x1e,0xec,0x70,0x76,0x59,0xd5,0x8c,0xfe,0x6a,0xea,0x85,0xa6,0x8d,0x80,0x4e,0xcc,0xd5,0xaa, - 0x46,0xf4,0xec,0x79,0xd1,0x0f,0x6d,0xd5,0x91,0x02,0x0d,0x5a,0xff,0xde,0x11,0x7e,0xcb,0x5d,0xa4,0x6c, - 0x0e,0x4c,0x8e,0x50,0x3e,0x29,0xd3,0x58,0x1b,0x43,0x5a,0x1d,0x18,0xd2,0xee,0xec,0xb8,0x78,0x69,0x61, - 0xb2,0xbb,0x78,0x10,0x56,0x31,0xdd,0x8b,0xe0,0x6d,0x0e,0x22,0x2e,0xd9,0xc7,0x84,0x2f,0x35,0xec,0x74, - 0xe3,0xcd,0x87,0x5e,0x9f,0xad,0x92,0x71,0xb0,0xd3,0x6f,0x3e,0xc4,0x45,0x81,0x10,0x94,0xda,0xd5,0xf3, - 0x91,0x66,0x0f,0x77,0x56,0xa6,0x03,0x8b,0xd0,0xab,0xc4,0x16,0x95,0x25,0xe1,0x24,0x13,0x37,0xe0,0x2f, - 0x7c,0x6c,0x4a,0xf2,0xb7,0x62,0xaf,0xfa,0x84,0x45,0xd4,0x1b,0x3e,0xe4,0xcc,0x07,0xba,0xec,0x58,0x2e, - 0x72,0x14,0x9b,0x7d,0x36,0x66,0xea,0x8d,0xd7,0x5e,0x96,0xce,0x79,0xb8,0x20,0x44,0xe1,0x6e,0xe3,0x72, - 0x36,0x5c,0x36,0xc8,0xe3,0xb2,0xfe,0xce,0xce,0xa1,0x21,0xb4,0xc1,0x9d,0x9e,0x74,0x50,0xd1,0xf0,0x3f, - 0xd0,0xb1,0x48,0xbb,0x61,0xb8,0x70,0x50,0x60,0x8d,0x8b,0xc9,0x38,0x60,0xd3,0x60,0x49,0x93,0xb9,0x86, - 0xfb,0x00,0x66,0xf5,0xff,0x6b,0xef,0xdd,0xf7,0xdb,0x36,0x92,0xfc,0xd1,0x57,0xa1,0x30,0x3a,0x32,0x10, - 0xb6,0x28,0xc9,0x4e,0x66,0x26,0xa0,0x61,0xae,0x63,0x3b,0x89,0x27,0x76,0x9c,0x8d,0x9d,0x2b,0xc5,0x68, - 0x21,0x12,0x94,0x60,0x53,0x00,0x07,0x00,0x25,0xdb,0x22,0x1f,0xe8,0xf7,0x1a,0xe7,0xc9,0x4e,0x7d,0xab, - 0xba,0x1b,0x0d,0x10,0xb4,0x9d,0xec,0x9e,0x3d,0xff,0x9c,0xe4,0x63,0x11,0x68,0xf4,0xbd,0xab,0xab,0xab, - 0xaa,0xeb,0xf2,0x48,0xf0,0xc2,0x56,0x77,0xab,0xfa,0x5b,0x24,0xb9,0x2d,0x84,0x74,0xcc,0x5b,0x03,0x80, - 0x78,0xde,0x10,0x14,0x87,0xce,0x40,0x59,0x81,0x56,0xed,0x3f,0x55,0x3c,0x03,0x9a,0x1e,0x6f,0xb7,0xcc, - 0x30,0x4a,0xd4,0x49,0x0d,0xb0,0xe2,0x59,0xf8,0x27,0xc8,0xd5,0xb0,0x6d,0xb9,0x78,0xd0,0xad,0xc1,0x6b, - 0x32,0x41,0xaf,0x3e,0xd5,0x6e,0x27,0x7c,0x8f,0xa8,0xe8,0x8d,0x42,0x64,0x97,0x59,0x0a,0x9f,0x64,0xc6, - 0xcf,0x98,0x51,0x90,0xb5,0x1e,0xc4,0xd8,0x4f,0x04,0x96,0xb4,0xf6,0x1c,0xe6,0x4d,0x88,0xd6,0xb2,0xe3, - 0x78,0x5f,0x99,0x5e,0xbf,0xaf,0x3a,0xdb,0x7f,0x8f,0xf6,0x97,0x29,0xda,0xbf,0xee,0xc6,0x1c,0x57,0xd4, - 0x85,0x79,0x4a,0x95,0x4e,0xd4,0x45,0x5d,0xf1,0xbf,0x6c,0xc5,0xff,0x22,0xea,0xe1,0x5d,0xfd,0xe1,0x57, - 0xfb,0xe1,0x57,0xfa,0x70,0x96,0x46,0x47,0xe3,0xd3,0x9b,0x60,0xd0,0x3f,0x3d,0x3c,0xdb,0x3f,0x9d,0x4c, - 0x8e,0xd4,0x39,0xe2,0x06,0x9c,0x11,0x8f,0x71,0xc3,0x0f,0x53,0x4f,0xbd,0xad,0x4b,0xd3,0x01,0xab,0x4b, - 0x03,0x8c,0xf6,0xeb,0x0f,0x97,0xf6,0xc3,0x25,0x7d,0x78,0x93,0x76,0x5a,0xf3,0x72,0xc0,0xba,0xa3,0xd0, - 0x1f,0xf4,0x83,0xa3,0x3a,0x1c,0x83,0x18,0x5b,0x1e,0x0d,0xfd,0xd1,0xde,0xf8,0x0f,0x7f,0xf2,0xd9,0x69, - 0x10,0x1c,0x5d,0x74,0x28,0xa5,0x89,0xbd,0x66,0x55,0xbb,0x71,0x95,0x82,0x50,0x26,0xb0,0x37,0xa2,0x50, - 0x8f,0x1e,0x23,0x76,0xab,0x0e,0xe6,0x33,0x89,0x8a,0x3a,0xf0,0x0f,0x03,0x51,0x02,0xcf,0x74,0x34,0xea, - 0x3f,0x0e,0x0f,0x8f,0xd4,0x4b,0x7a,0x38,0x2d,0x3f,0xdb,0x4b,0xaf,0x60,0x3f,0x1d,0x67,0xd5,0xfe,0x91, - 0x7a,0x98,0x76,0x69,0x3d,0x3c,0xd2,0xa1,0xeb,0x09,0x50,0x2a,0x89,0x39,0x08,0x18,0xb5,0xfc,0x56,0xe2, - 0x5a,0x6b,0xbc,0xd4,0x79,0xb3,0x9d,0x79,0xad,0xf7,0xbc,0x97,0x29,0x47,0x2a,0xf2,0x6c,0x07,0xbc,0x46, - 0x50,0x81,0x17,0xa9,0x2f,0xde,0xe9,0x9b,0x97,0xe5,0x59,0x43,0x07,0xa7,0xf3,0x86,0x57,0xda,0x05,0x87, - 0xcd,0xda,0x50,0x62,0x79,0xe5,0x24,0x12,0x3c,0xbd,0x02,0xec,0x4a,0xa8,0x44,0x02,0xcf,0xe7,0xf9,0x7b, - 0xe0,0xe7,0x12,0x2e,0xf4,0xda,0xab,0x47,0x1d,0xf8,0xae,0x88,0xbe,0x2b,0x3e,0xe2,0xbf,0x51,0xaa,0xb7, - 0xbe,0xf8,0xf6,0xd8,0xfe,0x1a,0x01,0x24,0xe0,0xa1,0x94,0x25,0xec,0xdf,0x15,0x56,0xe0,0xe6,0x5e,0x96, - 0x7d,0x82,0x6f,0x42,0xed,0xf1,0xe2,0x55,0xda,0xe1,0x56,0xf3,0x55,0x3a,0xce,0x26,0x7d,0x96,0x50,0x17, - 0xcd,0x56,0x0a,0xac,0xf8,0xeb,0x1a,0x4a,0x2f,0x2c,0x94,0x5e,0x10,0x94,0x3e,0x69,0x8f,0x53,0x5b,0x84, - 0x27,0x1c,0x0a,0x13,0xcc,0x6a,0x48,0xec,0xfa,0x21,0xbf,0x12,0x73,0x80,0x1f,0x1d,0xf9,0xb9,0x4e,0x3f, - 0xac,0x72,0xfd,0xc9,0x89,0x01,0xed,0x7c,0x16,0x89,0xab,0xa7,0xea,0x30,0xd2,0xfc,0x91,0x5f,0x75,0xaa, - 0x5b,0x27,0x27,0x70,0x9d,0xed,0xb8,0xd2,0xce,0x67,0x5d,0x27,0xc6,0xf6,0x2c,0x65,0x8f,0x62,0x88,0x08, - 0xfd,0x34,0xd5,0x71,0x2e,0xd9,0x73,0xac,0xa7,0xbe,0xa6,0x77,0x21,0xb0,0xf8,0xf5,0x71,0xeb,0xf3,0xf7, - 0x8d,0x77,0x3a,0x49,0x3c,0xf5,0x43,0xb3,0xc4,0x73,0xf7,0x15,0x19,0x86,0xcf,0x70,0x01,0x60,0xbd,0x35, - 0x68,0x37,0x66,0xe0,0x51,0x9d,0x6a,0x1c,0xf2,0xc0,0x66,0xb8,0x61,0x20,0x6b,0x65,0xf3,0xd1,0x23,0x27, - 0x52,0xa7,0xd3,0xaf,0x9b,0x56,0xea,0x93,0x0c,0x37,0x94,0xdb,0x0d,0xbb,0xbd,0xdb,0xdd,0x6e,0x33,0x97, - 0xff,0x83,0x6d,0xf6,0x61,0x73,0xac,0x37,0xcd,0x44,0x6e,0x54,0x64,0x34,0x3f,0x62,0x96,0x47,0xba,0x5a, - 0xb0,0xa9,0xb4,0xbb,0x6d,0xbe,0xaf,0x41,0xdc,0x7e,0xf0,0xe3,0x00,0xf2,0x22,0x5f,0x72,0x04,0x61,0xed, - 0x14,0xa1,0xf3,0x40,0xc5,0xbd,0xf9,0x57,0x40,0x4b,0xe7,0xbe,0x8d,0xde,0xb1,0x26,0x1e,0x25,0xf0,0xd5, - 0x7a,0x3f,0x38,0x52,0x3f,0x39,0xe8,0x69,0x2b,0xc0,0x83,0x50,0x79,0x8f,0x9c,0xb3,0x1e,0xb4,0x5d,0xc2, - 0x12,0xb1,0x47,0x0d,0xea,0x02,0x2a,0xae,0x4e,0x04,0x0d,0x8e,0x05,0x97,0x8a,0x89,0x9d,0x84,0xb4,0x69, - 0x78,0xa4,0x8a,0x95,0x6b,0x24,0xc6,0x39,0x8d,0xb2,0xa5,0x9c,0xaf,0x2c,0x5a,0x47,0x44,0x68,0x6d,0xe4, - 0xd4,0x19,0x05,0x38,0x80,0x2f,0x21,0x7b,0x55,0xa2,0x8b,0x44,0xf1,0x00,0xfa,0x5a,0xf4,0x4d,0x5e,0x20, - 0x07,0x46,0x46,0x1c,0xbb,0x27,0xdc,0x90,0xea,0xae,0xcc,0xc6,0xf0,0x40,0x8f,0x08,0x3f,0xf8,0xab,0xa0, - 0xa1,0xd7,0x68,0x22,0x60,0x38,0x3a,0x3c,0xd5,0x30,0xee,0x30,0xc5,0x91,0x28,0xd7,0x1d,0x5f,0xcc,0xad, - 0x79,0xe2,0xe7,0xf4,0x19,0xc3,0xe4,0x5e,0xe6,0x91,0x1b,0x32,0x56,0xeb,0x2d,0x49,0x2c,0x96,0xfd,0x81, - 0x21,0x01,0x0c,0x9a,0xea,0xf7,0xf3,0xa0,0x4e,0x45,0x14,0x96,0x65,0x4a,0x93,0x3c,0xd4,0x46,0x07,0xb1, - 0xd1,0x10,0x9a,0x42,0x43,0x05,0x97,0xc7,0xd4,0xe7,0x8d,0x9d,0x63,0xb5,0x27,0xa1,0x13,0xe4,0xcd,0x4c, - 0xae,0x4c,0xb9,0x9a,0x3b,0xde,0xb5,0xd5,0xa5,0x38,0x26,0xa6,0xb5,0xbe,0x0c,0x46,0x3e,0xd7,0x04,0xe9, - 0x7b,0x39,0x7a,0xb4,0x45,0x36,0x23,0x59,0x5d,0x06,0x61,0xeb,0x8b,0x7f,0x09,0xe9,0xf8,0x0c,0xb2,0xd8, - 0x05,0x35,0x39,0xc7,0xa4,0x26,0x3c,0xa9,0x4b,0x99,0xe1,0x29,0x3c,0xbd,0x70,0x17,0xa9,0x2b,0x61,0xe6, - 0x3b,0x3e,0xa1,0x6d,0x93,0x8f,0xda,0x24,0xb2,0xf8,0x73,0x6e,0x95,0x6d,0x65,0xae,0x89,0xf1,0xae,0xdc, - 0x8e,0x47,0xe1,0x52,0x54,0xf7,0x12,0x63,0x2c,0xa5,0x43,0xd3,0x0b,0x94,0x8a,0xd0,0x17,0xb3,0x6a,0xae, - 0x54,0x54,0x67,0xb6,0xce,0x54,0xa3,0xd6,0xa0,0xe7,0x6d,0x1b,0x14,0xa0,0x1c,0x34,0x67,0x5f,0x52,0x4b, - 0xd1,0x92,0x9b,0xb1,0x33,0x27,0x26,0x22,0x03,0x65,0x4d,0x48,0xdc,0x58,0x25,0x5a,0xef,0x15,0xdd,0x45, - 0xdf,0x38,0xd4,0x7c,0xe1,0x6c,0x4d,0x91,0x32,0x3f,0x6a,0xf2,0x08,0x52,0x86,0xd6,0xc6,0x25,0xef,0x2b, - 0x0e,0xc8,0x6a,0x6b,0x5e,0x38,0x74,0xc9,0x56,0x8c,0xbd,0x76,0xec,0x0a,0x0b,0x87,0x69,0x10,0xfb,0xac, - 0x71,0x9c,0xe9,0xb9,0xe5,0x2b,0x27,0xe8,0x1b,0x32,0x71,0x50,0x98,0xd9,0x47,0x97,0x1a,0x8d,0x73,0xe6, - 0xad,0xb5,0xd2,0x6e,0x6c,0x2a,0xe3,0xb0,0xdb,0x71,0x89,0x6d,0x7c,0x64,0x0c,0xbb,0x0c,0xdf,0x82,0xaa, - 0x73,0x7e,0x65,0xab,0xd5,0x26,0xb7,0x12,0xff,0xca,0x71,0x7a,0x2d,0x4b,0xdf,0xb4,0x60,0xdb,0xd7,0x9d, - 0xaa,0x07,0x59,0x04,0x26,0x8d,0xa8,0x1c,0x6c,0x35,0x46,0x7f,0x37,0xc6,0xc0,0x57,0x63,0x1a,0x5a,0x8b, - 0x1b,0x9d,0x8d,0xde,0xcc,0xa3,0x64,0x57,0xf8,0x96,0x1a,0x88,0xea,0x5a,0xd8,0x99,0xc5,0xb4,0x82,0xc2, - 0xa0,0x0d,0x6e,0xdd,0x09,0x06,0xc1,0xa3,0x26,0xf3,0xa2,0xe7,0x1a,0x64,0x9e,0x4c,0x74,0x3d,0x04,0x8e, - 0x26,0x84,0xf2,0xb5,0x85,0x25,0xf0,0x0b,0x5b,0x29,0xd9,0x6b,0x8a,0x52,0xd7,0x8b,0x65,0xd9,0x55,0xb1, - 0xaa,0x23,0x0f,0x01,0xd9,0x47,0x37,0x08,0xf0,0x99,0xb1,0x43,0x73,0x5d,0xb1,0x79,0xb5,0x2e,0x12,0xff, - 0x5a,0x43,0x8e,0x73,0x6f,0xd7,0xbf,0xa3,0x5e,0xee,0xe2,0x7e,0x94,0xf2,0x1a,0xc4,0x3e,0x47,0xcb,0xc9, - 0x55,0x33,0x88,0xd1,0xb5,0x9d,0x38,0x14,0x6b,0x9c,0x1c,0xa9,0x00,0x2e,0xfa,0x94,0xd6,0xe7,0x01,0x3a, - 0xa8,0x99,0x22,0x0c,0xa8,0x76,0x7c,0xb6,0x6f,0x92,0xeb,0x95,0xcf,0x02,0x9b,0xc8,0x91,0x82,0x83,0x7a, - 0x71,0xea,0x00,0xf1,0x3a,0xc4,0x0f,0xfb,0xff,0x6f,0xdb,0x3e,0xa2,0xe3,0xb8,0x87,0x76,0x4d,0x1f,0xeb, - 0xbe,0x5f,0x35,0x4f,0x94,0x7a,0xac,0xd6,0xe6,0xa0,0x20,0x2a,0x5b,0x3c,0x77,0xd1,0x0f,0x43,0xef,0xc8, - 0xbf,0xc0,0x15,0xdd,0x35,0xce,0xc5,0x10,0xd1,0x8e,0xa0,0x1b,0xe4,0xe2,0xb3,0x0b,0xab,0x8a,0x8c,0x23, - 0x7a,0xbd,0x36,0x88,0x2d,0xb0,0xe1,0x8a,0xa2,0x7d,0x7d,0x6a,0xdb,0x50,0xb4,0x43,0x3d,0x4f,0xc1,0xc8, - 0xb1,0xa2,0xed,0x47,0x69,0x98,0x7d,0x48,0x31,0x98,0xc8,0xa6,0xc3,0x43,0xa7,0x00,0xae,0xc9,0x2a,0xeb, - 0x2c,0xc5,0xf9,0x10,0xd1,0xa2,0x6e,0x7c,0x73,0x12,0xd1,0x66,0x28,0xba,0xb6,0x2b,0xaf,0x0e,0x80,0x4e, - 0x2b,0x42,0xf0,0xab,0x39,0x21,0x2f,0x10,0x3b,0x23,0x50,0x66,0x8b,0x36,0xfa,0xaf,0xb7,0xa8,0xa4,0x61, - 0x8b,0x72,0x4c,0x32,0x69,0xc5,0xdd,0xa1,0x89,0x0e,0xdb,0x8b,0x6c,0x81,0x09,0x57,0x05,0xb5,0x6f,0xde, - 0x42,0xb9,0x74,0xd0,0x59,0x1e,0xa8,0x39,0x83,0x7c,0x29,0x25,0x3a,0x17,0xc1,0x7a,0x6a,0xa2,0x72,0xa6, - 0x8c,0xd3,0x0b,0xfc,0x65,0x9d,0x17,0xc4,0x7d,0xdd,0xf2,0x7e,0x19,0xd0,0x3e,0x4c,0x1b,0xfe,0x33,0x8d, - 0x8f,0xab,0x59,0x30,0x3a,0xf7,0x0b,0x99,0x0f,0x44,0x26,0x4e,0x3b,0x7d,0x67,0x1e,0x5b,0xe6,0x8f,0xa8, - 0x32,0xeb,0xdf,0x93,0x81,0xb6,0x70,0x5f,0x53,0x76,0x31,0x1a,0x49,0xd8,0x30,0x1c,0x58,0x9c,0x5b,0xbc, - 0x7a,0x12,0x00,0xc8,0xeb,0x0b,0x26,0x6f,0x82,0xb4,0x43,0xd7,0xa5,0xe8,0x32,0x25,0xb6,0xc1,0x8e,0xd5, - 0x82,0x46,0xcb,0x9b,0x2a,0xf1,0x17,0x3c,0x8b,0xab,0x68,0x51,0x4f,0xe9,0x2a,0x5a,0x59,0x67,0x01,0x94, - 0xb0,0xc2,0x9c,0x09,0x81,0xbb,0x8c,0x8a,0x9a,0x94,0x98,0x39,0xb6,0xa4,0xb2,0x89,0x50,0xd7,0x1c,0x7b, - 0x94,0x61,0x7f,0x45,0x0b,0xbb,0xa2,0x85,0x15,0x4e,0xaa,0x5e,0xd8,0x55,0x60,0xd2,0xc6,0xab,0x89,0xd4, - 0xdd,0xd1,0x01,0xc9,0x61,0x9b,0xdf,0x54,0x7e,0x2a,0x47,0xc8,0x88,0x10,0x30,0xe7,0xa2,0x19,0x5f,0xd2, - 0x02,0xba,0x77,0xe5,0xc6,0x8f,0x6c,0x59,0x9f,0x00,0x53,0x45,0xc3,0x25,0x1a,0xe8,0x58,0x2d,0xe9,0xdf, - 0x2c,0xaa,0x5d,0xb5,0xa8,0xeb,0x08,0x12,0x00,0x75,0x41,0x3f,0xb3,0x89,0x3a,0xb3,0xaa,0xdb,0xf4,0xe9, - 0x3c,0x4a,0xf1,0xe9,0x86,0x7e,0xce,0x26,0xea,0x6d,0xb4,0x57,0x0e,0xe7,0xf7,0xd1,0xd4,0xf2,0x7e,0x74, - 0x46,0x67,0x93,0x7f,0x1d,0x8c,0x50,0xbc,0xdf,0x9f,0x4f,0x42,0x78,0x2d,0x1b,0xa1,0x96,0xc3,0xc3,0xd9, - 0x24,0xfc,0x99,0x3e,0xaa,0x73,0xda,0xd4,0xef,0xf0,0x0b,0xe2,0xcc,0x64,0xe4,0x5a,0xfb,0xfd,0xe5,0x24, - 0x40,0xa6,0x0b,0x75,0xc3,0x99,0xe8,0x17,0x99,0x4c,0x79,0x6e,0xf3,0xf0,0xf0,0x4c,0x32,0x5d,0xeb,0x4c, - 0xd7,0x92,0xe9,0xed,0x16,0x1d,0x90,0xa9,0x6b,0x7d,0xee,0x3a,0xa2,0x38,0xff,0x42,0x50,0x48,0xdd,0x72, - 0xa3,0xd2,0x0b,0xdd,0xbd,0x0b,0xe9,0x5e,0x57,0xa5,0x5c,0x81,0x54,0xed,0x74,0xad,0xee,0xbf,0x5f,0x89, - 0xb3,0x8b,0x69,0xf4,0x6d,0x45,0xeb,0x33,0x57,0x33,0x98,0xca,0xfb,0x20,0xe8,0xcf,0x39,0x86,0xe9,0x68, - 0x3a,0xe6,0x87,0x49,0x87,0xf3,0x8f,0x3a,0x2e,0xe1,0x9c,0x68,0xe1,0x94,0xa3,0x10,0x5a,0xf4,0x98,0x4f, - 0x0c,0x8f,0x70,0x70,0xf0,0x33,0x84,0x5a,0xb1,0xa5,0xe0,0x73,0xa2,0x71,0xcf,0xa9,0x8a,0x63,0xb4,0x36, - 0x8a,0xe9,0x39,0x57,0x7a,0xfc,0x3c,0xae,0x05,0xf5,0x73,0x35,0xd1,0x83,0x5b,0xc8,0xe0,0x90,0x62,0x3c, - 0xda,0x76,0x0d,0x74,0xe1,0x0c,0x34,0x08,0x9b,0x75,0xd6,0xe3,0x1d,0xce,0x1f,0xcc,0xa0,0x44,0x4f,0x43, - 0x24,0x80,0xe8,0x9f,0x4c,0x02,0x89,0xce,0x28,0x2f,0x7a,0xd3,0x2f,0xd5,0x19,0x36,0xfe,0xf2,0xc1,0xd9, - 0xc1,0xc1,0x95,0x7f,0xac,0x64,0x5a,0x36,0xfe,0x94,0xc3,0x65,0x03,0x28,0x43,0x06,0x5a,0x50,0x78,0x35, - 0x09,0xd5,0x14,0x87,0x52,0x66,0x9c,0xd3,0x97,0xf4,0xcb,0x64,0xd7,0x0c,0x83,0xad,0xc1,0x12,0x44,0x31, - 0xc0,0x7f,0x84,0xfa,0x97,0xf4,0x6d,0x59,0x87,0x41,0x0c,0x3f,0x5a,0x6d,0x28,0xdf,0xf7,0x38,0x6a,0x0d, - 0x9f,0xed,0x1d,0xf9,0xf4,0x2e,0x53,0xbb,0x31,0x43,0x5e,0x56,0x4d,0xd4,0xb0,0x71,0x8e,0xaa,0x33,0xe1, - 0x42,0x18,0xbd,0x82,0xf1,0x44,0x29,0x1b,0x8c,0x3a,0x30,0x4f,0x5d,0x94,0x75,0xd1,0x24,0x7b,0x84,0x51, - 0x2a,0x5c,0xfe,0xa8,0x20,0xe0,0xa8,0xb1,0xbf,0x5e,0x49,0xbf,0x60,0x7f,0xaa,0xb6,0x03,0xe7,0x2d,0xc6, - 0x53,0x4d,0x11,0xb3,0x29,0xbe,0x50,0x2b,0xed,0xee,0x83,0x70,0x41,0xd1,0x8c,0x36,0x14,0xe5,0xeb,0x35, - 0xa2,0xbb,0x03,0xe9,0xa9,0x42,0x48,0x7b,0x25,0x08,0xd9,0xf0,0x2d,0x72,0x70,0xb9,0x78,0xdf,0x42,0x65, - 0xd7,0x31,0x01,0xf5,0x6a,0xc2,0xf5,0x0c,0xc8,0x2b,0x7d,0xd4,0xd3,0xd4,0x75,0x33,0xb0,0x85,0x58,0x12, - 0x52,0x62,0x07,0xd6,0x0e,0x1c,0xfe,0x15,0xf3,0x6a,0xab,0x9d,0x06,0x9a,0x20,0x98,0x07,0x01,0x73,0xe2, - 0x97,0x71,0xc9,0x84,0x38,0xa8,0xee,0xd2,0xe7,0x44,0x6e,0xd5,0x36,0x68,0xe2,0xc6,0x39,0x3d,0xd0,0x51, - 0x51,0xa4,0xaa,0x98,0x29,0xbf,0x3a,0xd1,0x06,0xe1,0xe0,0x83,0xc3,0xac,0x0b,0xab,0x8e,0x83,0x8b,0x9c, - 0xa7,0x45,0x59,0x71,0x8b,0x84,0x66,0x8e,0x87,0xd7,0xf7,0xe7,0x66,0xad,0xae,0x8d,0x83,0xbb,0xcb,0xf5, - 0x7a,0xef,0x9c,0xf8,0xc5,0xf9,0xf8,0x7a,0xa2,0x39,0x53,0x98,0xa5,0x6b,0x56,0xf6,0x32,0xba,0x6c,0xdc, - 0x1f,0xa0,0xc4,0x6c,0xbd,0xbe,0x6c,0x36,0x4c,0x5c,0x0c,0x36,0x52,0x1a,0x98,0xd9,0x94,0x75,0xbd,0x72, - 0x5d,0xad,0x5c,0x40,0x9a,0xb7,0xc2,0x88,0xf7,0x5e,0x12,0x2e,0x0e,0x6e,0xaf,0xd0,0xc9,0xa5,0x9c,0x2d, - 0xd2,0xd8,0xde,0x15,0x16,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x3f,0x1a,0x67,0x93,0x02,0x90,0x7b,0x1c,0xde, - 0x8b,0x37,0x86,0x26,0xb0,0xf4,0xbb,0xb9,0xf6,0xda,0x93,0x60,0x31,0x37,0xea,0xad,0xda,0x87,0x90,0xfa, - 0x0d,0x22,0xcd,0xe7,0xb3,0xd5,0x22,0x29,0xd5,0x23,0x7a,0x06,0x8d,0xf3,0x42,0x6b,0x7f,0xdd,0xd0,0x9c, - 0xdc,0xdc,0x9f,0xa5,0x35,0x00,0xdf,0x30,0x59,0xb9,0x3f,0x9e,0xa5,0xe3,0x9b,0x09,0xac,0xbd,0xe8,0x5c, - 0x39,0x1e,0xbe,0xbd,0xff,0xa6,0xce,0xf2,0x96,0xc8,0x8b,0x37,0xe3,0xb7,0x13,0x9d,0x87,0x56,0xca,0x64, - 0x17,0xfe,0xc2,0xfd,0xc6,0x07,0xf2,0x4b,0xd6,0x1b,0xc1,0xbd,0x9a,0x68,0xcd,0xe8,0x50,0x62,0x8f,0x9c, - 0xe7,0x97,0x2c,0x6c,0x25,0x54,0xdc,0xe1,0xa4,0x50,0x9f,0x96,0x8a,0x0e,0x49,0x6d,0x64,0xc1,0xa7,0xb7, - 0x78,0x89,0x41,0xe8,0x10,0x18,0x67,0x03,0xba,0x60,0xce,0xb9,0x60,0xff,0x21,0x3e,0x10,0x1d,0xf2,0xd7, - 0xf4,0xc4,0x2c,0xc2,0xe6,0xc0,0xe0,0x5f,0xb1,0xef,0x27,0x5e,0x48,0xc6,0xde,0x58,0x80,0x40,0x68,0xae, - 0xa5,0xd2,0x41,0xd1,0xd1,0xce,0x8c,0x5b,0x93,0x78,0x6a,0xa6,0x1c,0x94,0xdc,0x09,0x86,0x6b,0x7e,0xe2, - 0x21,0xeb,0x67,0x19,0xea,0xae,0x91,0x0e,0x0b,0x6e,0xf8,0xf8,0xf4,0x73,0xca,0x72,0x2e,0xf5,0xdb,0x8d, - 0x72,0xc6,0x5d,0xc4,0xf7,0x62,0xf8,0x22,0x82,0x32,0xbf,0xbe,0x8e,0x79,0x64,0x2e,0xa1,0xfc,0x17,0xad, - 0x28,0x34,0x72,0x4d,0xa3,0x25,0x87,0xea,0x85,0xd8,0xbf,0x5d,0x0a,0x31,0x48,0xc7,0x5f,0x43,0x50,0x76, - 0xc9,0x03,0x94,0x79,0xb8,0x1c,0x9c,0x89,0xc0,0xf6,0x5c,0xce,0x83,0x8b,0xd6,0x39,0x7c,0x09,0xd5,0x5f, - 0x22,0x5c,0x0c,0xfe,0x33,0x00,0x7b,0x13,0x99,0x34,0x82,0x01,0x50,0x4c,0xc3,0x9b,0x61,0x7d,0x2e,0xbe, - 0x21,0xb0,0x78,0xd3,0xc5,0xbb,0xbc,0x71,0x78,0x97,0x37,0x13,0xff,0x86,0x7b,0x72,0x23,0x8e,0xef,0xb9, - 0xab,0x6f,0xeb,0x4a,0x5e,0x52,0x25,0x2f,0x3b,0x38,0xdf,0x97,0x35,0xe7,0xfb,0x92,0x39,0xdf,0x1b,0x81, - 0xa4,0x87,0xd1,0xcd,0x16,0x6e,0xe5,0x1b,0x85,0x01,0xeb,0x08,0xd7,0x26,0x0f,0xaf,0xa2,0x93,0xe1,0xab, - 0xfb,0x0f,0x89,0x45,0xb4,0xf6,0x2a,0xaf,0xe0,0xfe,0x19,0x09,0xe3,0x57,0x13,0x43,0x7b,0xff,0x54,0xa1, - 0x7f,0x37,0x54,0xab,0x0e,0x75,0x9b,0x80,0x4a,0xc2,0xb9,0x05,0x96,0xef,0x58,0x1d,0xeb,0x03,0x8b,0xf8, - 0x1f,0xb8,0x04,0x2e,0x6a,0x6b,0x31,0x59,0x3f,0x84,0x95,0xc1,0x98,0x78,0x29,0x5e,0x80,0xf4,0xb7,0xf9, - 0xfc,0x5b,0xbd,0xd1,0x42,0xa8,0x7d,0xc8,0xfe,0x0b,0xc7,0x17,0xa9,0x7a,0x97,0xaa,0xb7,0xa9,0xda,0x4f, - 0xd5,0xeb,0x54,0x3d,0xcd,0x46,0x46,0x9a,0xff,0x2c,0x51,0x46,0xb0,0x86,0x67,0x81,0xa7,0xd6,0xf5,0xdf, - 0x9e,0xc4,0xf5,0x12,0x2b,0x8b,0xcb,0xfc,0x66,0xf4,0x22,0x91,0xe8,0x66,0x30,0x50,0xda,0x84,0xb7,0x9b, - 0x89,0x71,0xac,0x7c,0x95,0xc2,0x8b,0xf9,0xf3,0xec,0xe0,0xc0,0x5e,0x72,0x6c,0x87,0x17,0x91,0xfb,0x71, - 0xaa,0x7d,0x7a,0x19,0x67,0x17,0x89,0xe7,0x9a,0xa7,0x8a,0x26,0x7e,0x5d,0x98,0xa5,0xf4,0x5a,0xb8,0x36, - 0x64,0x55,0xdf,0x6b,0x1d,0x15,0xf1,0x47,0xf4,0x41,0xeb,0x9b,0x19,0xd7,0xe9,0x3f,0xa7,0x70,0xaa,0x86, - 0xd5,0x49,0x66,0xad,0x0b,0x51,0x08,0x91,0xcc,0xcd,0xbc,0x0d,0xeb,0x28,0x3c,0xc9,0xc1,0xc1,0x1e,0xff, - 0x12,0x23,0xa6,0xd5,0x2c,0x47,0xdf,0xc1,0xd1,0x91,0x3d,0xcc,0x1b,0x3d,0xfc,0xd9,0x61,0x29,0xc4,0xa8, - 0x6b,0xa6,0x45,0x49,0x9b,0x20,0x7c,0x9a,0xc8,0xb3,0xeb,0xed,0xc9,0xd6,0x4a,0xf8,0x02,0x81,0xd7,0x8c, - 0xfd,0x89,0x51,0xfa,0xfc,0x3e,0x81,0x0c,0xcc,0x33,0x9a,0x23,0xb6,0x77,0x74,0xee,0xa6,0xbe,0xc4,0x8e, - 0x0b,0x02,0xed,0xc9,0xeb,0xb9,0x89,0x1c,0x1b,0x25,0x75,0x14,0x59,0xe5,0x3c,0xb3,0x5f,0x47,0x56,0x2d, - 0xde,0x9e,0x77,0x33,0xdd,0xcf,0x93,0x40,0x7d,0x95,0xed,0xca,0x84,0xb1,0x89,0x54,0x96,0x50,0x24,0xbc, - 0xf4,0xff,0xc0,0x3a,0xf2,0x1f,0xcc,0xc9,0x37,0x1f,0xcf,0xa1,0xcb,0xff,0x9c,0x7d,0x81,0xeb,0x45,0x02, - 0x1e,0xc2,0x9d,0x70,0x7b,0xbe,0xb6,0xee,0xaa,0x39,0x68,0x7b,0x73,0x6d,0x82,0xdb,0xad,0xb9,0x1c,0x9a, - 0x3b,0x4b,0x3b,0xa3,0xa2,0x4d,0xfd,0xf1,0xf9,0x1d,0xa6,0xed,0x18,0x80,0xb5,0x6a,0xc4,0x1e,0x54,0xcb, - 0xd9,0x89,0xe5,0x46,0x66,0xd9,0xa8,0x57,0x8c,0x12,0x31,0x9f,0xde,0x19,0x3e,0xf0,0x31,0x3a,0x08,0x80, - 0x0f,0x75,0x4e,0xbe,0x1c,0x27,0x1a,0xe7,0x67,0xbc,0x1c,0x1c,0xd0,0x77,0xfd,0x01,0x98,0xde,0x40,0xac, - 0x5e,0x05,0xf6,0xd4,0xf8,0x2d,0xc1,0xab,0x04,0xf6,0xfc,0x39,0x55,0xd8,0x59,0xa1,0xa8,0xc5,0xb6,0xe7, - 0x47,0xfb,0x12,0x30,0x95,0x21,0x16,0xe0,0x57,0x10,0x5f,0x04,0x5a,0xb5,0x44,0x5c,0xa8,0x38,0x02,0x75, - 0x0e,0x50,0x7f,0x46,0x33,0x53,0xa4,0x17,0xf0,0x04,0xfb,0x38,0x2d,0xa1,0x1c,0x19,0x79,0x19,0xad,0x83, - 0xd6,0xb9,0xe3,0x3b,0xd5,0x99,0x7c,0x40,0xb8,0xf8,0x56,0x12,0x9c,0x3f,0xa4,0x23,0x3f,0xab,0xb7,0x3d, - 0x8e,0xb8,0x57,0xe0,0x0b,0x5c,0xeb,0xa1,0x66,0xa1,0x28,0xdf,0xc0,0x3b,0x7f,0x2b,0xb1,0x18,0xe5,0xa1, - 0xb4,0xdc,0xa9,0x5f,0xb0,0x35,0xc2,0x61,0xd1,0x9a,0x49,0xff,0xa3,0x03,0xde,0xea,0x68,0x31,0xfa,0x58, - 0x57,0xbb,0x26,0x88,0xd6,0xf2,0xc5,0x47,0x8a,0xe9,0x81,0x74,0x0e,0xb3,0xab,0x4a,0x3d,0x72,0xa8,0x56, - 0x64,0x1d,0x8b,0xab,0x19,0x02,0xde,0x8d,0x1f,0xef,0x1f,0x43,0xcd,0x7b,0x82,0x1a,0x36,0x0c,0xd3,0xd6, - 0x5d,0x10,0x34,0xc7,0x45,0xf8,0x55,0x9e,0xc3,0x19,0xae,0x9a,0x96,0xa5,0x7d,0x06,0x70,0x99,0x6c,0x40, - 0x24,0xe6,0xd9,0xb9,0x9d,0xd5,0x29,0xce,0xdd,0xaa,0x9b,0xc7,0xdc,0xab,0xba,0xb9,0x5a,0x69,0x5b,0x17, - 0xb7,0x6e,0xde,0x8e,0x74,0xe9,0x6e,0x47,0xd2,0xce,0xbc,0xad,0x06,0x67,0xab,0x82,0xef,0x05,0xc3,0xb1, - 0xd8,0xb5,0x29,0x9d,0x2e,0x8a,0x1d,0x93,0x8d,0xfa,0xc5,0x4c,0x50,0xe3,0xb2,0x56,0xac,0xe5,0xde,0xa7, - 0x0d,0x13,0xba,0xb6,0x2d,0x58,0xdb,0x78,0xbc,0xc3,0x26,0x4c,0x7b,0xce,0x62,0xc1,0xaa,0xdc,0xd2,0x77, - 0x07,0xf7,0x63,0x14,0xfe,0x1b,0x24,0x84,0x04,0xb6,0x6e,0xcc,0x56,0x6d,0x22,0x86,0xb5,0x81,0xda,0x81, - 0x8e,0xdf,0xea,0xd6,0x21,0x82,0xff,0xc8,0x70,0x84,0xc3,0xa0,0x76,0x5f,0xe9,0x5c,0x9a,0x59,0xba,0xdb, - 0xb5,0x1d,0xad,0x05,0x02,0xda,0x7e,0xec,0xa7,0x04,0x9e,0x79,0xd8,0xdb,0x40,0xfd,0xc9,0x78,0x59,0x65, - 0x0a,0x8d,0xe6,0xce,0x7c,0xf9,0x16,0x28,0x2a,0x37,0x11,0x60,0xbd,0xb3,0xb3,0xba,0xb9,0x43,0xaf,0x6f, - 0xdd,0xca,0xf5,0xbd,0x43,0x6f,0x18,0xb3,0x18,0x4e,0x94,0x6c,0xf9,0x79,0x14,0x3b,0x01,0x4e,0xcb,0x3e, - 0x0e,0x08,0x3c,0x7a,0x61,0xd9,0x67,0x59,0x6e,0x58,0xf8,0xb1,0xc8,0x3f,0x70,0x01,0xad,0xef,0x3e,0x24, - 0xc5,0x1a,0x14,0x95,0xc1,0x88,0x53,0xb8,0x0c,0x7e,0xf9,0xaf,0x84,0xcd,0x88,0x7c,0xb9,0x40,0x84,0x7d, - 0xe5,0x40,0x3b,0x9a,0xa1,0xa9,0xad,0xbb,0x18,0xfd,0x9c,0x68,0xcb,0xa2,0x55,0xc3,0xd8,0x7d,0x81,0x49, - 0x58,0x09,0x69,0x2a,0xb3,0x58,0x87,0x9d,0xc7,0x75,0x6a,0x2b,0x69,0x17,0xc2,0xf7,0x80,0x5b,0x04,0x79, - 0x02,0xba,0xf8,0xb8,0x88,0x1b,0x58,0x27,0x50,0x44,0x98,0x2c,0x34,0x8e,0xf2,0x2f,0xa3,0x58,0x5d,0x45, - 0x0b,0x75,0x85,0x21,0x10,0x46,0xbb,0xc4,0xef,0x7a,0x7d,0x85,0xb9,0xe0,0x57,0xa1,0xef,0xf6,0x7e,0x63, - 0x69,0x82,0xbf,0xb7,0xe8,0xf2,0xf9,0xda,0x95,0x6a,0x5c,0x7a,0xd6,0x2c,0xb8,0x00,0xd6,0x3c,0x5a,0xb4, - 0x81,0x44,0x0c,0x46,0xa6,0x3c,0x76,0x2f,0x5f,0x55,0x87,0x29,0x6b,0xee,0xa7,0x4d,0xe7,0x0d,0x1a,0x0a, - 0x80,0x37,0xbf,0xf3,0xe7,0xca,0x8b,0xe7,0x04,0xd5,0xcf,0x44,0xbd,0xc2,0x41,0x85,0x89,0x93,0x13,0xf1, - 0xd2,0x9b,0x7e,0x2c,0x37,0x81,0x32,0xe0,0x83,0xc6,0xd2,0xec,0x30,0x17,0x53,0x00,0x11,0x78,0xfc,0xe6, - 0xd7,0xc2,0xaa,0x95,0x08,0x4c,0x55,0xc3,0xa3,0xf0,0x12,0x3e,0xd8,0xbf,0x83,0x34,0x86,0x9b,0x7f,0x22, - 0x1a,0x23,0xb3,0x40,0x71,0x9a,0x60,0x2c,0x8c,0x1e,0x06,0x69,0x3a,0x7d,0x0e,0x8d,0x30,0x42,0x8b,0xed, - 0xae,0xd2,0x92,0x2d,0xa3,0x6a,0x53,0x93,0xcd,0xb9,0x30,0x2d,0xea,0x8a,0xd0,0xe7,0xbf,0x53,0x4c,0x0a, - 0xe0,0x51,0xe3,0x0d,0xbe,0xd0,0x77,0x10,0x0c,0x30,0x6c,0x30,0x14,0x93,0xbe,0xde,0xbf,0x99,0x8b,0x15, - 0x63,0xcc,0x7f,0x11,0x5e,0xa9,0x15,0x2a,0xc2,0x5f,0x52,0x55,0xbf,0x7d,0x03,0xe5,0xe0,0xf0,0x56,0x90, - 0xcc,0xbf,0xd3,0x2e,0xc4,0xd2,0xb2,0x6c,0x67,0xfc,0xe0,0x1a,0x89,0xc8,0xd2,0x49,0xa0,0xdc,0x65,0x9c, - 0x21,0x08,0x6e,0xb7,0x3b,0x24,0x2e,0xb4,0x2c,0x92,0x6b,0xeb,0xb8,0x50,0x8c,0x44,0x8d,0xf0,0x39,0xed, - 0x42,0x5b,0xec,0x51,0x35,0x6f,0xe6,0x04,0x9f,0x1d,0xd7,0xbb,0xa6,0x24,0xb6,0xa8,0xbc,0x6f,0xb9,0xf2, - 0xd2,0x88,0x1e,0xa7,0x51,0x3a,0x2e,0x27,0xc3,0xa9,0xc4,0x8f,0x46,0x2f,0xf6,0xa2,0xa9,0x08,0xdf,0xc1, - 0x19,0xe8,0x9d,0x3c,0x6d,0xee,0x64,0x42,0x1e,0xd7,0xb8,0x11,0xf1,0x00,0xdb,0xb9,0xb5,0x16,0xcd,0xc6, - 0x9c,0x6f,0x12,0x4d,0x15,0x95,0xd0,0xdb,0x79,0xda,0xbd,0x9d,0xe3,0x00,0x72,0x0f,0xc7,0x9b,0xf8,0x0a, - 0x1d,0x5e,0xe0,0xcf,0x9c,0xba,0x3a,0xaf,0x25,0x60,0x73,0xd3,0xd5,0x65,0x54,0x8c,0xe7,0x93,0xe1,0x72, - 0x6b,0x1f,0xc4,0x4a,0xa7,0x11,0xcd,0x1a,0x2d,0x99,0xdc,0xbf,0x48,0xaa,0xaf,0xf2,0x15,0x8b,0xd9,0x1e, - 0x2d,0x52,0x02,0xb0,0x1f,0x69,0xae,0xe1,0x87,0x7d,0xbc,0xe4,0x2e,0x8e,0x56,0xd2,0xeb,0x65,0x10,0x2e, - 0xcc,0xd3,0x46,0x5b,0xe0,0x2e,0x09,0x3b,0xfb,0xe2,0x0b,0x80,0xd8,0x7d,0x1d,0x9d,0x8c,0x79,0xa7,0x59, - 0xb4,0xb0,0xae,0x4a,0x4c,0x8e,0x9c,0x4e,0x7f,0xd7,0x3b,0xc7,0x96,0xfd,0x75,0xb7,0xa7,0x01,0xdb,0x16, - 0xb4,0x38,0x80,0x5d,0x1a,0x8e,0x3a,0xcc,0x47,0x43,0x53,0xcd,0x76,0x58,0x34,0xbb,0x80,0xa2,0x12,0x73, - 0xf6,0x68,0x90,0xb7,0xfe,0xf9,0xd9,0xc0,0xcb,0xbb,0x46,0xc4,0xe7,0x43,0x56,0xb6,0x1c,0x1a,0x13,0x0b, - 0x6d,0xc9,0x74,0x19,0x97,0xcf,0x29,0xdd,0xaf,0xb4,0x81,0xbe,0x4a,0x84,0x5c,0x36,0x2a,0x86,0xef,0x99, - 0x4d,0x30,0x6f,0xbf,0x34,0xde,0xfe,0x6d,0x1c,0xfe,0xc3,0x79,0xc7,0x82,0x50,0xa5,0x65,0xf0,0xa0,0x9b, - 0x3f,0xc8,0xe7,0xf3,0x32,0xa9,0xbe,0x4d,0xd2,0x8b,0xcb,0xca,0x29,0xd5,0x56,0x5a,0x94,0xf5,0xe3,0x39, - 0xae,0x5d,0x88,0xa1,0x27,0xb0,0xad,0x64,0xda,0x69,0xf8,0x16,0xc4,0x1b,0x9c,0x9f,0x0d,0xac,0xde,0x4f, - 0x54,0x0c,0x1c,0x05,0x29,0x9d,0x52,0x03,0xc6,0x63,0x4d,0x4c,0x70,0xd0,0xe9,0x6d,0x2e,0xe7,0xfb,0x14, - 0x9e,0x40,0x79,0xba,0xea,0x88,0x83,0x3d,0x88,0x7c,0x6e,0x89,0x3e,0xde,0x3b,0xb2,0xcd,0xec,0xeb,0xc0, - 0x9d,0x12,0x35,0xc8,0xc4,0xeb,0x0a,0xd8,0x8b,0xae,0x00,0xc6,0x56,0xc5,0xac,0xf3,0x60,0xea,0x66,0x38, - 0xd9,0x97,0xee,0xb3,0x99,0x3a,0x18,0x27,0xed,0xa2,0x2d,0xbc,0xd5,0x93,0xdf,0xe2,0xcb,0x71,0xa8,0x3f, - 0x4b,0xad,0x48,0xb0,0x3e,0xd5,0x75,0xf6,0x26,0x92,0xd7,0x89,0xc6,0x28,0x75,0x30,0xc5,0x85,0x19,0x4b, - 0x6d,0x02,0x5a,0x6b,0xe7,0xa4,0x67,0xc0,0xc0,0xc9,0xd8,0x95,0xda,0xb9,0x3a,0x67,0x89,0xe8,0x42,0x05, - 0xea,0x9d,0x5e,0x80,0xac,0x93,0x6a,0xb6,0x4e,0x31,0x1a,0xca,0x11,0x99,0xe1,0xec,0x1e,0x25,0x7e,0xd6, - 0x70,0x48,0xc4,0x59,0x1b,0x1a,0x57,0x06,0x8e,0xf4,0x60,0x22,0x16,0x8b,0xd9,0x95,0xdd,0xc0,0x4a,0xfc, - 0x09,0x5f,0xd8,0xcf,0xd3,0x8b,0x81,0x13,0x19,0x37,0xfa,0xbd,0x50,0xf5,0x87,0x46,0x4c,0xde,0xa8,0x4c, - 0x3b,0x3f,0x41,0xa8,0x16,0xfd,0xea,0x16,0x6b,0xc5,0xe4,0x8d,0x7e,0xac,0x1a,0x05,0x9b,0x41,0x7c,0xb7, - 0x62,0xa4,0x3c,0xad,0x29,0x36,0xac,0x54,0x09,0x53,0x86,0xe6,0xda,0x45,0xed,0xf0,0xb6,0x1a,0xd5,0x42, - 0x45,0xdf,0xac,0x25,0xbf,0x68,0xeb,0xe3,0x8f,0x59,0x22,0xb0,0x35,0xb5,0xc6,0xc6,0x87,0x1e,0x4c,0xb5, - 0x47,0x5c,0x9c,0x1d,0x98,0xd7,0x16,0xbf,0x56,0xd9,0x0f,0x92,0xed,0xe6,0x20,0xe0,0x0b,0x79,0x67,0x56, - 0x63,0x24,0x21,0x75,0x1e,0x6d,0x97,0xd6,0x5b,0x22,0x71,0x03,0x36,0x6d,0xd4,0x35,0x0c,0x2b,0xad,0x0b, - 0x45,0x4b,0x75,0x11,0x33,0x1c,0x34,0xbf,0x39,0x46,0xec,0xff,0x4a,0xd9,0x6a,0xd2,0x71,0x5d,0x62,0x10, - 0x26,0x94,0x0a,0x7f,0x4a,0xc3,0x8b,0xe6,0x67,0x71,0x45,0xd7,0x1d,0x29,0x6b,0x5b,0x51,0x1e,0xde,0x7b, - 0x12,0xd7,0x37,0xb8,0x1c,0xde,0xcc,0x93,0xb5,0xd2,0xa2,0xac,0x10,0xdf,0x2f,0xcd,0x30,0xd8,0xb5,0x89, - 0xbb,0xf1,0x30,0xd8,0xe0,0x20,0xb5,0x27,0xa7,0xda,0xe9,0x88,0x2f,0xa6,0x1b,0x17,0x56,0x7f,0x48,0x21, - 0xc2,0xaf,0xd2,0x16,0x6b,0x8e,0x53,0x98,0x6d,0x0f,0xdc,0x55,0xd3,0x03,0xb7,0x71,0x28,0x0c,0x35,0x28, - 0x9a,0x8a,0xaf,0xb0,0xfc,0xc6,0xf9,0x3d,0xf4,0xf9,0x9f,0xd4,0x1e,0x09,0x7c,0xa7,0x4f,0xaf,0xa1,0x14, - 0x22,0x61,0xb0,0x0f,0x0e,0xbe,0xcb,0xf0,0x6f,0x00,0x37,0x5a,0xa0,0xdb,0xa0,0xca,0xfc,0x04,0x76,0x19, - 0xc7,0xb2,0x31,0xbf,0x4b,0xd5,0xaf,0x50,0xa6,0xbc,0x3d,0xbd,0xf5,0xfd,0x51,0x38,0x58,0x9f,0x66,0x41, - 0x7f,0x14,0x9c,0x6e,0x4e,0x37,0x47,0x17,0xea,0x1b,0x68,0xbf,0x1f,0x0e,0x3e,0xeb,0x8f,0xfe,0xd8,0xbf, - 0xdd,0xf8,0xc1,0x7a,0x7c,0x3a,0x39,0x3d,0x3a,0x3d,0x9d,0xd0,0xb7,0xdf,0xbb,0x55,0xd8,0xf9,0x08,0x31, - 0xda,0xdb,0xdf,0xa4,0xca,0x3b,0x3d,0xdd,0x3f,0xf0,0xd8,0x7c,0x19,0x8a,0xe6,0xdb,0x5f,0xdc,0xd9,0x15, - 0x7f,0x29,0x7e,0xd2,0xf7,0x74,0x67,0xa4,0x37,0x5e,0x3f,0x53,0xde,0x05,0x24,0x81,0xea,0x37,0x98,0xf9, - 0xb1,0x78,0x1f,0x3e,0x4d,0xc3,0xb1,0xe7,0xc8,0xfd,0xbd,0x89,0xb2,0x28,0xbb,0x65,0xe6,0x01,0x10,0x81, - 0x6b,0xc5,0x22,0xd3,0x28,0x32,0x15,0x79,0x8d,0x18,0xdc,0x0e,0x45,0xb0,0xe5,0x54,0x15,0xfd,0xeb,0xe5, - 0x8b,0xef,0x29,0x01,0x80,0x8d,0x18,0x8e,0x99,0x71,0x63,0x1e,0x15,0x4e,0x41,0x38,0xca,0x85,0x28,0x05, - 0x4a,0x31,0x48,0xf8,0x2a,0x65,0x82,0x23,0x2a,0xb0,0xfc,0x49,0x06,0xf7,0xac,0x1d,0xdc,0xa7,0xe7,0x39, - 0xaa,0xfd,0x75,0x93,0xb8,0x2c,0xeb,0x47,0xee,0x78,0x42,0xaf,0xdf,0xc8,0xd1,0xf7,0x14,0xac,0x34,0x1b, - 0x6d,0xe9,0x52,0x53,0x9b,0xdf,0xfd,0x28,0x05,0x12,0xa2,0x8b,0xff,0xb3,0x7b,0xda,0xf8,0x8a,0xe4,0xcf, - 0x4f,0x1b,0xa3,0xff,0xd6,0xb4,0x71,0x55,0xed,0x69,0x7b,0x93,0x62,0xe6,0x9a,0x53,0x27,0x85,0x9d,0xa9, - 0xe3,0x84,0xbf,0x3a,0x75,0xdc,0x6c,0x63,0xea,0x38,0xc5,0x99,0x3a,0x7e,0x37,0x53,0xe7,0xb6,0x65,0x4b, - 0x21,0xbf,0x2f,0x05,0xea,0xaf,0x7d,0x58,0x1d,0xc8,0xe4,0x55,0x39,0x5f,0x36,0xc1,0xf2,0x8f,0xad,0x40, - 0x61,0x4e,0x99,0x2f,0xb4,0x55,0xa3,0x98,0xee,0x69,0x6b,0x4c,0xb1,0x30,0x4c,0x4b,0xc6,0xcc,0xb8,0x7a, - 0xa2,0xa1,0x38,0xf6,0xa2,0x0d,0xd3,0x47,0x31,0x90,0xbc,0x39,0x87,0xdb,0xa1,0x24,0x17,0x9b,0x69,0x6d, - 0xe1,0x08,0xf3,0xcf,0x0a,0xa6,0x9d,0x46,0xcc,0xb9,0x64,0x13,0x47,0x98,0x07,0xb2,0xa1,0xa3,0x98,0x3e, - 0x16,0xba,0x26,0x6c,0x2e,0xe9,0x61,0xa7,0x09,0xaa,0x74,0xb9,0x36,0x36,0x64,0x8b,0xc9,0x4e,0xc3,0x4a, - 0x34,0xdb,0xb4,0x6c,0x64,0x5b,0x54,0x6d,0x88,0x6a,0x2c,0x29,0xb7,0x2c,0x52,0xb5,0x8d,0x2b,0x9b,0x58, - 0x76,0x58,0xb8,0xa2,0xaf,0xc6,0xfe,0x55,0xda,0xa1,0xc9,0x62,0xbb,0x5a,0x6d,0x83,0x89,0xbb,0x0c,0x63, - 0x3c,0xc9,0xd3,0xd4,0x36,0xc7,0x94,0x69,0x13,0xf3,0x54,0x3d,0x79,0x62,0x48,0x61,0x4c,0x2d,0x6b,0x2b, - 0xd0,0xd6,0x14,0xb1,0x65,0x2e,0x4d,0x14,0xcf,0x35,0xd4,0x00,0xf3,0xe8,0xe8,0x8f,0xd3,0xf2,0x33,0x7f, - 0x4c,0x7f,0xbd,0x3b,0xf7,0x1f,0x9c,0x1e,0x45,0x93,0x7e,0x40,0xb8,0x06,0x89,0x51,0x80,0xbf,0xa3,0xd0, - 0xa3,0xcf,0xde,0xe4,0x33,0x42,0x3b,0xeb,0x3b,0xf4,0x78,0x87,0x1e,0xef,0xf4,0xd7,0xba,0x4c,0x74,0xff, - 0xc1,0x7f,0x51,0x91,0x20,0x18,0x1d,0xa9,0x34,0x8f,0xbc,0x71,0x7c,0xf8,0xfe,0xe1,0xe1,0xef,0x67,0x93, - 0xf1,0xe9,0xe9,0xcd,0xe9,0xe9,0xe1,0xe9,0xe9,0x60,0xf2,0x99,0xa7,0x72,0xfa,0x04,0x1c,0xe6,0xf5,0xd3, - 0xbc,0x4f,0x98,0x2e,0x0c,0x46,0xf2,0x18,0x78,0x2a,0xce,0x23,0x07,0xd9,0x79,0x7f,0xdc,0xf7,0xfa,0x79, - 0x4e,0x1c,0x9a,0xe9,0xdc,0xe9,0xd1,0x28,0x78,0x70,0x44,0xeb,0xd2,0xca,0x76,0x7a,0x7a,0x84,0x9c,0x7d, - 0x6f,0xfc,0xc7,0x83,0xc9,0x67,0x0f,0x68,0x3c,0x2b,0x14,0xb9,0xbf,0xf7,0xf8,0xc5,0xa3,0x57,0xbf,0xfd, - 0xf0,0xa4,0x87,0xf4,0xfe,0x83,0xa3,0x54,0x2d,0x24,0x1d,0x16,0x3c,0x73,0x79,0x3c,0x1d,0x1f,0xa9,0x65, - 0x8e,0xbb,0x63,0xef,0xad,0x67,0xb1,0xf0,0xd1,0x5b,0x7f,0x40,0x03,0xb9,0x50,0xcd,0x2d,0x4f,0x19,0x3d, - 0x30,0xf7,0x89,0xbe,0x7a,0xb9,0xcc,0xd5,0x75,0x4e,0xac,0xb4,0xba,0xc8,0xd5,0xbb,0x5c,0x9d,0xe5,0x04, - 0x44,0xea,0x26,0x57,0x6f,0x73,0xb5,0x9f,0xab,0x37,0xb9,0x7a,0x94,0xab,0x97,0x0c,0x82,0xda,0x7e,0x57, - 0x1b,0x46,0x9b,0x5b,0x0f,0x3e,0x04,0x1f,0xe6,0xb8,0x39,0x7e,0x45,0x7f,0xbd,0x83,0x45,0x35,0xf4,0x42, - 0xef,0x3e,0x6d,0xca,0x83,0x0b,0x7e,0x7c,0x80,0x47,0xc0,0x27,0xbd,0xdc,0xf1,0xee,0xd0,0x4b,0x7c,0xb5, - 0xc4,0x87,0x03,0x7c,0xf8,0xdb,0xc9,0x31,0x9e,0x4f,0x33,0x7e,0xf9,0x92,0x9f,0x2b,0x6f,0xa3,0x5e,0xd0, - 0xd8,0x0e,0x68,0x92,0x89,0x01,0xbe,0xa8,0xd6,0x28,0xbe,0xa6,0x62,0xc1,0x90,0x06,0xf4,0xba,0xf3,0xd3, - 0x9a,0x6a,0x5a,0xff,0xed,0x4b,0xce,0xf1,0x84,0x3b,0x0c,0xcd,0x87,0x66,0x3f,0x9f,0xe5,0xdd,0xa4,0x05, - 0x9d,0xc1,0x4f,0x72,0xf1,0xa1,0x70,0xca,0x72,0x96,0x04,0x9e,0x8b,0xd4,0x53,0xcc,0xef,0x7f,0xac,0xff, - 0xb8,0x3e,0xcc,0xb3,0xf0,0x48,0x7d,0x8d,0xd7,0xeb,0xc3,0x35,0x92,0xe8,0xf5,0x31,0xbd,0xfa,0x83,0xcf, - 0xe8,0x40,0x2d,0xfb,0xd4,0x9b,0x34,0x5b,0xe7,0x73,0x7e,0x1e,0x7c,0x16,0x1c,0xa9,0xef,0xe9,0xab,0x22, - 0xb8,0x52,0x74,0xdc,0x4e,0x08,0xca,0x28,0x87,0xfb,0x1a,0x8c,0xf6,0x8f,0xd4,0x0f,0x0c,0x15,0xfe,0xfa, - 0x34,0xd8,0xa7,0x4e,0x3f,0xcf,0xd9,0x3c,0xec,0x33,0x7a,0x51,0x3f,0xe2,0x4b,0x88,0x96,0x59,0xf4,0x7c, - 0xa4,0xbe,0xa2,0x84,0xd3,0xc1,0xf8,0x8f,0xc1,0xa4,0x4f,0x59,0x7f,0xca,0x3b,0x8d,0x77,0xfc,0xef,0xd2, - 0xe8,0xbb,0xf4,0x23,0x86,0x4a,0x41,0xad,0x0d,0x11,0x55,0xea,0xbb,0xd4,0x35,0x4e,0xa4,0x43,0xf8,0x67, - 0xb4,0xfc,0xf6,0x6a,0x91,0x95,0xe1,0xf7,0x2f,0x4f,0x67,0xfd,0x23,0xf5,0x2d,0x52,0xf8,0x99,0xfa,0xf1, - 0x3e,0x8f,0xc6,0xbf,0xa5,0x74,0xe6,0xa8,0x5b,0x9a,0xde,0x57,0x1f,0x38,0x5b,0x44,0x96,0x64,0xbc,0x4a, - 0xc8,0xd5,0x90,0x61,0x61,0xf8,0x72,0xff,0x79,0xbc,0x64,0x91,0xec,0xd8,0xbb,0x3e,0xe4,0xcb,0x14,0x6f, - 0x02,0xe9,0x2c,0x5e,0x79,0xd0,0x20,0x08,0xbd,0xc9,0x7a,0x4d,0x29,0xfa,0xd9,0xa8,0x86,0xea,0xd3,0x86, - 0x13,0xe1,0xb9,0x4b,0x4e,0xae,0xeb,0xc3,0x74,0x2e,0xcb,0x9c,0x47,0xe9,0xc8,0xa3,0xba,0x68,0x57,0x62, - 0x53,0x86,0xc4,0x22,0xc6,0x91,0xd0,0xe4,0x26,0x2b,0xae,0x73,0xb5,0xdd,0x72,0x23,0xcd,0xd6,0x31,0x8d, - 0x7e,0x63,0xfb,0x91,0x6f,0xa0,0x95,0xa2,0x92,0x04,0xb2,0x2c,0x6e,0x50,0x89,0xeb,0x8c,0xf3,0xfc,0x2d, - 0xb5,0xfd,0x2b,0xd2,0x89,0x6d,0x9a,0x82,0x86,0x9d,0x12,0x82,0xd6,0xe4,0xde,0x20,0x9d,0x13,0x8e,0xf0, - 0xfa,0x05,0xb5,0x4f,0xc3,0xbf,0x63,0x8a,0xdc,0xa1,0x4d,0xae,0x7e,0x47,0xa1,0xdb,0xe4,0xed,0x32,0x44, - 0x3e,0xc1,0xdf,0xe1,0x54,0xef,0xc7,0x95,0x6e,0x97,0x3a,0xb5,0x42,0xa7,0x68,0x76,0xa5,0x43,0x09,0x27, - 0xe8,0x2e,0x14,0xf1,0x2c,0xcd,0xa5,0xfd,0x15,0xda,0xaf,0xab,0x74,0x5b,0xe5,0x5c,0xdc,0xa4,0xb4,0xb1, - 0xd2,0x6d,0x2c,0x74,0x1b,0xc6,0x67,0x51,0xe2,0x2f,0xda,0x4d,0x51,0x82,0x4c,0x3a,0x8c,0x1f,0x7e,0xc5, - 0x7b,0xa3,0x95,0x54,0xd7,0xb8,0x80,0x7b,0xfc,0xd1,0x74,0x80,0xa9,0x43,0x28,0x3a,0x50,0x3a,0xf2,0x46, - 0x13,0x00,0x27,0xd4,0xe0,0xec,0x26,0xea,0x17,0xc2,0x0c,0x54,0x8c,0x38,0x06,0x80,0x1d,0xe4,0xf7,0xe6, - 0x86,0xfb,0x7d,0xae,0x6a,0x56,0x22,0xd4,0x97,0x6a,0x1f,0xbb,0x46,0x73,0xef,0x50,0x73,0x81,0x2d,0xf6, - 0xee,0x67,0xc0,0x8a,0xef,0x5e,0xc5,0xbd,0xa1,0xe5,0x45,0xac,0x0c,0x3d,0xd1,0xca,0x5c,0x4a,0x87,0xd6, - 0xad,0xef,0x2f,0xf3,0x60,0xaf,0xbb,0xe5,0x3b,0xf8,0xd9,0xdf,0x37,0x1e,0x38,0x7e,0x8e,0x17,0xbd,0xa8, - 0xd7,0x8a,0xac,0xae,0xaf,0x14,0xe4,0x12,0x73,0x9f,0x1d,0xc8,0xea,0x88,0x8d,0xf6,0x42,0xd3,0x56,0x9e, - 0xd7,0xe6,0xf1,0x03,0x53,0xe9,0x26,0xc0,0x1d,0xa8,0xef,0xe6,0x41,0xab,0xd7,0xdc,0x96,0x77,0x26,0xee, - 0x5e,0xa0,0x12,0x94,0xf7,0x46,0x54,0x4c,0x12,0x7a,0x21,0x3d,0xea,0xab,0x37,0xa9,0xf0,0x4e,0xdf,0xe7, - 0x18,0x0c,0x62,0x47,0x3f,0xf2,0xce,0x32,0x9f,0xbe,0x63,0x0f,0xd0,0x0f,0x84,0x44,0x04,0x02,0xde,0x30, - 0x73,0x6f,0x34,0xa1,0x40,0xdf,0xf7,0x7a,0x5e,0x3f,0x86,0xb5,0xb1,0xd7,0xec,0xbb,0xb9,0x54,0xa5,0x46, - 0x9b,0x13,0x10,0x36,0xdf,0x09,0x5f,0x7a,0x81,0xe5,0x8a,0xd8,0x6c,0xa7,0xb6,0x09,0xad,0xf1,0x40,0x4e, - 0x18,0xd6,0x6e,0x1f,0x7a,0x8f,0x77,0x4d,0xb9,0x33,0x08,0x5a,0x62,0xd9,0xef,0x32,0x07,0xc1,0x7a,0xed, - 0xa1,0x1d,0xec,0x69,0x8d,0x07,0x8a,0x55,0x72,0x58,0x7f,0xc4,0xab,0x47,0xdb,0x5a,0x3e,0xce,0x63,0xec, - 0xea,0xfa,0x2b,0xbf,0x7b,0xc3,0xff,0xac,0x64,0x06,0xc4,0x09,0x8e,0xf2,0x9a,0xa6,0x24,0x5e,0x9f,0xa8, - 0xca,0x60,0x74,0x96,0xca,0x93,0xa2,0x2d,0xd4,0x67,0x3e,0xdc,0xeb,0xfb,0x52,0x3f,0xfa,0x3e,0xf2,0x42, - 0x9d,0x93,0xa6,0x37,0x3c,0xfb,0xb7,0xcd,0x1c,0x23,0x29,0x40,0xf8,0x33,0x77,0x9a,0x3d,0x81,0xa2,0x38, - 0x92,0x6c,0xfb,0xe0,0x5e,0x1b,0x93,0x4d,0x49,0xd3,0x08,0xc9,0x03,0xdd,0xaf,0x91,0x2f,0x75,0xa1,0x19, - 0xe2,0x10,0x3a,0x8c,0x61,0xa9,0x3a,0x8d,0x14,0xf7,0xf7,0xaf,0xa9,0x62,0x5f,0x96,0x5c,0xfa,0xeb,0x85, - 0x79,0xc0,0x0d,0xa5,0x11,0x8d,0x84,0xb2,0xd2,0xe3,0x35,0x57,0xe2,0x36,0x12,0xdc,0x52,0x86,0xfb,0xc7, - 0x8c,0x2e,0xa9,0x5f,0xd4,0x01,0x1b,0x6e,0x7b,0x4c,0xf9,0x09,0xe9,0x8a,0xae,0x1c,0xe5,0xa2,0x09,0x68, - 0x64,0x33,0xee,0x5f,0xe8,0x53,0x60,0xca,0xd4,0xe9,0x94,0xda,0x3f,0x81,0x1e,0x81,0x94,0xb7,0xf0,0xb5, - 0x3f,0x65,0x38,0xf4,0x3e,0x0d,0x5a,0x04,0xd3,0xfd,0x37,0x41,0x65,0x6b,0xb9,0x9d,0xc5,0xf2,0xa9,0xcc, - 0xd6,0xa4,0x21,0x74,0x43,0x73,0xf5,0xb8,0xf3,0xf9,0xa7,0x80,0x38,0x40,0xd0,0xd1,0x09,0xd9,0x89,0x55, - 0x5a,0xf8,0x8a,0xf0,0x1a,0xfb,0x8f,0xc7,0xe9,0x25,0x51,0x83,0xe1,0x77,0x5b,0x8f,0x0b,0x01,0x90,0x60, - 0xc7,0x4d,0xc7,0xd2,0x9e,0xcc,0x0a,0x3a,0x05,0xdd,0x3e,0xb5,0x8a,0xf2,0x91,0xe9,0x65,0xa8,0x3f,0x40, - 0x07,0x6d,0x74,0x9e,0x86,0xba,0x57,0x6a,0x11,0xb5,0xb6,0xb5,0xcc,0xcf,0x10,0xe8,0xba,0xfb,0x9b,0xb6, - 0x1a,0x87,0xc7,0x12,0xc9,0xc3,0x13,0xb4,0xe0,0x99,0x19,0xca,0x9d,0x15,0xcf,0xc8,0x22,0x18,0x4e,0x29, - 0x03,0x9d,0x76,0x00,0xab,0x46,0x3d,0x5a,0xcf,0xc4,0x5e,0x52,0x0e,0xbd,0xfe,0x3c,0x50,0xb2,0x12,0xd2, - 0xbe,0xf2,0xcc,0xfe,0xd1,0xb3,0xbd,0x52,0xf3,0x5a,0xb2,0xe2,0x97,0xeb,0x35,0x14,0xa6,0x65,0x1d,0xce, - 0x17,0x2b,0x3a,0x9d,0xbc,0xe6,0xd5,0x95,0x67,0xcc,0x05,0xeb,0x85,0xd8,0x7b,0x9d,0x35,0xc5,0x84,0x84, - 0x49,0x3b,0x71,0xbf,0xbd,0x85,0x65,0x1a,0x71,0x8b,0x31,0xbe,0x16,0x0d,0x06,0xe9,0xae,0x43,0x22,0x01, - 0x78,0x4a,0x74,0x5b,0x72,0x70,0xe7,0x37,0xcc,0xf3,0x7c,0xb8,0x0a,0x4b,0x74,0x75,0x56,0xb0,0x21,0xc6, - 0xf2,0x07,0xa2,0xa7,0xe2,0x2e,0x97,0x14,0x20,0x64,0xb5,0x03,0x2e,0x08,0x2b,0x89,0x2b,0x42,0xbe,0x8a, - 0xa8,0xf6,0x5a,0x4e,0x1a,0xfe,0x5e,0xc0,0xe1,0xce,0x57,0xc9,0xb3,0x64,0x5e,0xbd,0x58,0x26,0x19,0xb2, - 0x24,0xb9,0x6a,0x4c,0x45,0x58,0xa6,0xaa,0x25,0x0b,0x0d,0x7f,0xac,0x94,0x23,0x3c,0x78,0x9f,0x13,0xff, - 0x30,0x5b,0x4d,0xbb,0x55,0x6e,0x38,0x96,0x23,0xef,0x72,0x13,0x20,0xcb,0x84,0xfc,0x0b,0xd8,0x23,0xc4, - 0xe0,0x75,0x9e,0x12,0x98,0x28,0xcc,0xc8,0xbf,0xbb,0x49,0xd4,0x1e,0x1c,0xbd,0x00,0xda,0xf9,0xcc,0x06, - 0xfc,0x43,0xb2,0xae,0xcc,0x4e,0x50,0xc4,0xbb,0xa4,0x99,0x76,0xe7,0xa1,0xec,0xc5,0x98,0x44,0x17,0xea, - 0xfb,0xd5,0x08,0x3b,0xb6,0x82,0x67,0x54,0x08,0x8c,0xfe,0x65,0x59,0xbe,0xd3,0x9b,0xfd,0xb3,0x49,0x7f, - 0x7d,0x4a,0x14,0x76,0x30,0xf9,0x6c,0x74,0x1a,0x80,0xdd,0x8b,0x1e,0xac,0xff,0x30,0x3d,0xa0,0xd7,0x53, - 0xff,0x48,0x7d,0xa7,0x4b,0x8c,0x89,0xad,0x23,0xe6,0xee,0x6c,0x7f,0x82,0xa2,0x13,0x70,0x86,0x44,0x5d, - 0xb7,0x12,0xd7,0xa7,0xe3,0x3b,0x44,0xdf,0xdf,0x99,0xd0,0x83,0x47,0x0f,0x1e,0x1e,0x88,0x0c,0xc6,0x4f, - 0x3b,0xef,0x24,0xf8,0x8c,0xaa,0x25,0xca,0xfd,0x57,0x90,0x3a,0xe5,0x34,0xbc,0xfb,0x0f,0x38,0x33,0x0a, - 0xbf,0x14,0x35,0x8b,0xf0,0xe4,0x9e,0x92,0xf9,0xbe,0x77,0x57,0xad,0x96,0xe1,0xbd,0x7f,0x12,0x87,0x3c, - 0xaf,0xc2,0x7b,0xff,0x50,0x05,0x6e,0x4f,0xc2,0x7b,0x5f,0x2a,0x78,0xc1,0x0e,0x3f,0x3f,0x56,0x72,0x81, - 0x19,0x8e,0xff,0xa9,0x3e,0xff,0x3b,0x31,0x21,0xdf,0xe4,0x5d,0x7e,0xb9,0x80,0x72,0xfa,0x15,0x01,0x8f, - 0xe3,0x33,0x6b,0x48,0x6c,0xd3,0xef,0x39,0x84,0x41,0x04,0x0f,0x66,0x53,0xe3,0x05,0x00,0x12,0x5f,0xc4, - 0x22,0x42,0x1c,0x42,0xa3,0x82,0xbf,0xd9,0x3c,0xfa,0xfd,0xb1,0x5c,0x38,0x72,0x16,0xc4,0x25,0x0b,0xbf, - 0xc9,0xfd,0x26,0x6e,0xe8,0x11,0xc6,0xe9,0xe9,0x94,0xe9,0xaa,0xc0,0x22,0xbd,0xe2,0x0f,0x1e,0x84,0xab, - 0xc5,0x82,0x4b,0xec,0x99,0x0c,0x94,0xf0,0x1d,0x34,0x74,0x15,0xfb,0x0e,0x6d,0x7c,0xe3,0x14,0xf9,0x18, - 0x2f,0x9a,0x9f,0xe8,0x5d,0x3e,0x40,0x5e,0xd0,0xf8,0x82,0x04,0xf9,0xc4,0x73,0x87,0x4f,0x77,0xc4,0x2b, - 0xd4,0x1d,0x10,0x46,0x92,0xab,0x77,0x70,0x60,0x7a,0x28,0xdf,0xb8,0xcf,0xc7,0xa8,0x2f,0x9d,0xcd,0x16, - 0xc9,0x9f,0x2a,0x76,0x02,0xb9,0x02,0xaf,0xcf,0x9f,0x29,0x75,0x17,0xf0,0xff,0x1b,0x2d,0x04,0x71,0x8d, - 0x6d,0x7f,0x2c,0x70,0x03,0x57,0x47,0xb5,0xeb,0x58,0xd8,0xb3,0x0b,0x59,0x58,0xd5,0xc0,0x10,0x84,0x20, - 0xb6,0x74,0x90,0x4c,0x75,0x1c,0x3e,0xaf,0xb6,0x16,0xaa,0x6b,0x3a,0xa7,0x9a,0x32,0xaa,0xe9,0x0e,0xe4, - 0x5f,0xb4,0xdf,0xfa,0x60,0xbe,0xeb,0x5a,0x71,0xf6,0x39,0x94,0x34,0x1c,0x1d,0xd5,0xea,0x88,0xb8,0x0c, - 0x1b,0x09,0xa9,0x13,0x6a,0x9a,0x29,0xf8,0x40,0x76,0x8e,0x3e,0xed,0x29,0x9d,0xdf,0x0b,0x74,0x9f,0xa7, - 0x8b,0x3c,0x7e,0x83,0xb8,0xba,0xff,0x99,0x6f,0x7b,0x3d,0xcd,0xad,0xb3,0x4c,0x7e,0x85,0x24,0x92,0xce, - 0x44,0xfc,0xac,0xd7,0xbf,0xeb,0x44,0x2b,0xbc,0x2c,0xa3,0xdf,0x60,0x50,0x6d,0x14,0xd3,0x3d,0xfb,0xe1, - 0x11,0x71,0x0c,0xc6,0x83,0x3b,0xee,0x19,0xbf,0x49,0x32,0x44,0xf0,0x6b,0xe6,0xd6,0x52,0x47,0x9b,0xcf, - 0x72,0x1c,0xd1,0xb5,0xcf,0x8a,0x16,0xbf,0xe5,0x6c,0x1a,0x6d,0xd3,0x03,0x1b,0xbd,0xab,0x81,0x40,0xd7, - 0xeb,0x47,0xd9,0x50,0xfb,0x46,0x7e,0x77,0x9e,0xd8,0x40,0x8c,0x1d,0x0b,0xb9,0x67,0xcd,0x78,0xb5,0x7f, - 0xcc,0x6c,0x9a,0x3c,0x9d,0x45,0xda,0x43,0x7d,0x3b,0xe0,0x20,0x7c,0x74,0xd3,0x2a,0xfa,0xae,0x50,0xe8, - 0xf4,0xf4,0xdc,0xeb,0x7b,0x33,0xc2,0xe1,0x73,0x08,0xe0,0x08,0xe8,0x2b,0x04,0xd4,0xa5,0x49,0x7e,0xc7, - 0x8e,0xd9,0xa6,0x10,0xfe,0xe1,0xd8,0x53,0x37,0x69,0x75,0xa9,0xe2,0x9b,0x38,0xad,0x14,0x1b,0x06,0x28, - 0xf6,0x81,0xae,0x95,0xe7,0xf9,0x1a,0x48,0xb1,0xe3,0x52,0xc5,0x71,0xe9,0xd5,0x0d,0xa1,0xd5,0x44,0xbd, - 0x83,0xd4,0x4f,0x23,0x1b,0x45,0xcc,0x59,0x0e,0x6f,0x87,0xec,0x89,0x45,0xc9,0x08,0x8c,0x07,0x30,0xeb, - 0x52,0x9b,0xdd,0x85,0x12,0x1b,0x23,0x21,0xea,0xd9,0x09,0x5a,0x9a,0xad,0xe0,0x98,0xf1,0x7c,0x75,0x71, - 0x01,0x31,0xa1,0x9e,0x85,0x3a,0xe8,0x8a,0xa7,0xfd,0xd4,0xe0,0x4c,0xd0,0xa7,0x03,0x0d,0x6b,0x8d,0xa1, - 0x05,0x7d,0x1e,0xa1,0x04,0x09,0x6e,0x8d,0x59,0x3a,0x25,0x7e,0x47,0x59,0x81,0xbd,0xb3,0x1e,0x42,0xe9, - 0x40,0xf8,0xa7,0xa7,0x84,0xf2,0xe9,0x4f,0x5d,0x6b,0xeb,0x03,0xb5,0xe1,0x3f,0x6a,0x4b,0x7e,0x44,0x14, - 0xb1,0xd3,0x6a,0x94,0x3d,0x06,0x13,0x5e,0x44,0xec,0xe3,0x68,0xef,0x24,0x50,0x67,0xb9,0x5e,0x4f,0x36, - 0x10,0x83,0x84,0xdb,0x89,0xd8,0x32,0xcc,0xee,0xbf,0xcb,0x5d,0xe7,0x2c,0xef,0x72,0xb6,0xc3,0xc5,0x4d, - 0xce,0x65,0x1e,0x25,0x35,0x54,0x9f,0xe1,0xcd,0x9c,0xf5,0x00,0x27,0x75,0x8e,0x14,0xe7,0x24,0xe7,0xc4, - 0x1b,0x24,0xb6,0x8e,0x6a,0xfe,0x70,0x95,0x03,0xb4,0x93,0x8e,0x8d,0xf0,0xbd,0x6c,0x84,0x8b,0x76,0x86, - 0xb6,0x98,0x86,0xf2,0xbc,0xdb,0xca,0x93,0x97,0x55,0x3b,0xd3,0x35,0xba,0x40,0x2b,0x91,0x5e,0xa5,0x15, - 0x02,0x22,0x6a,0xa3,0x5c,0x22,0x4f,0x59,0xf9,0x64,0xef,0x84,0x75,0x3d,0x11,0xe3,0x1c,0xbb,0xe3,0x97, - 0x4b,0xca,0xc5,0xdd,0x54,0x98,0x2f,0xd0,0xa9,0x27,0x5b,0x96,0x19,0xed,0x49,0xa6,0xb7,0x45,0x1f,0x37, - 0x78,0x50,0x6b,0x5d,0x9d,0xcb,0xdd,0x82,0xef,0x5a,0x4d,0x17,0xc6,0x8f,0x00,0xeb,0xdf,0xa9,0xb2,0x8e, - 0x5f,0x2f,0x9a,0x7c,0x8b,0x40,0xdf,0xbd,0xe1,0xba,0xa1,0xc0,0x6b,0xc5,0x2b,0xd6,0xba,0x90,0xa5,0x64, - 0x56,0xf5,0x4f,0xa3,0xb8,0x0e,0x6a,0x9f,0x3e,0x88,0x88,0xeb,0x89,0x11,0x0a,0x66,0x61,0xb2,0x62,0x93, - 0xd3,0xb8,0x4a,0x84,0x54,0x33,0x34,0x65,0xc4,0xd7,0xbe,0xc8,0xed,0x18,0x60,0xba,0x15,0x4d,0x1f,0x44, - 0xe9,0x70,0x4a,0x05,0x92,0x01,0x7b,0x59,0xe1,0x1f,0xf6,0xb7,0xce,0x92,0x09,0xf4,0x7f,0x68,0xb2,0x47, - 0x98,0xc0,0x94,0x9b,0x3d,0x3c,0xe1,0xef,0xcc,0x1d,0x79,0xe7,0x05,0x28,0xbc,0x72,0xc4,0x84,0x55,0x01, - 0x0b,0x75,0x79,0xa0,0xf1,0xd3,0x74,0xef,0x1d,0x8b,0x67,0x04,0x6f,0xc9,0xb9,0x38,0x0e,0x6e,0x67,0xbe, - 0x13,0xce,0xa7,0x1a,0x1d,0x91,0x19,0xa4,0x49,0x35,0xce,0x11,0xe0,0xe9,0x04,0x8b,0x08,0x65,0xf4,0x5a, - 0x2a,0x43,0x4b,0x96,0x0c,0x6a,0xfa,0x92,0xa1,0x6d,0x85,0x1b,0xe7,0x16,0x55,0xc9,0x1f,0x16,0x34,0x29, - 0xd5,0x90,0x85,0x7c,0x29,0x21,0x70,0x62,0x49,0x5e,0xe6,0x7e,0x6e,0xd5,0xd9,0x60,0x97,0x9a,0xb7,0xee, - 0xc4,0x67,0xd1,0xc3,0x7c,0xbc,0x44,0x88,0x28,0xfe,0x6d,0xc8,0xbf,0x89,0x80,0x3b,0x2d,0x4f,0x4f,0x5f, - 0x12,0xe9,0x16,0xf8,0xf7,0x8f,0xbc,0xfe,0xd2,0x08,0xc2,0x03,0xda,0xf1,0x29,0x78,0x69,0x58,0x67,0x19, - 0xd1,0xf6,0xcc,0x95,0x69,0x33,0x78,0x18,0x48,0xb3,0x96,0xb0,0x8a,0xfa,0xb3,0x64,0xfe,0x4f,0xfb,0x9d, - 0xc4,0xc4,0x2d,0xa1,0xd5,0x11,0xd5,0x0e,0xa8,0x8e,0x20,0x46,0xa7,0xb6,0x4b,0x69,0xf9,0xf0,0xf0,0xc1, - 0xd1,0x05,0xb1,0x18,0x74,0xea,0xbb,0x59,0x4e,0xc7,0x8f,0x1e,0x3f,0x7c,0xf5,0xf0,0x74,0x5c,0xe7,0x9c, - 0x4c,0x6c,0x4e,0x08,0x95,0xfd,0xa5,0x12,0xb7,0xcb,0xd0,0x67,0xd1,0x3e,0x9b,0x38,0x8c,0xde,0x65,0x2c, - 0x07,0x25,0x3f,0x40,0x09,0xc2,0x83,0xfc,0x85,0x60,0xde,0xe8,0xe8,0x1c,0x5e,0x9a,0xfe,0x56,0xd1,0xa5, - 0x2a,0xa8,0xa2,0xc5,0xe1,0x1c,0x91,0xa8,0xad,0x1d,0xd2,0x75,0xe4,0x28,0x03,0xdc,0x17,0x19,0x00,0xd4, - 0x30,0xaf,0x79,0xf2,0x17,0xb9,0x89,0xa8,0x65,0x2c,0xc8,0x5c,0xd5,0x81,0xc3,0xd3,0xb7,0xf7,0x12,0x29, - 0x72,0xc5,0xe0,0x9b,0xe8,0xf0,0x8c,0x88,0x54,0xa1,0x55,0x10,0x75,0x78,0x04,0xed,0xb0,0xa4,0xde,0x85, - 0x9f,0x2b,0xd8,0xda,0x66,0xfe,0x55,0xff,0x1e,0xb1,0x78,0x1a,0xd5,0x6f,0xa0,0xd7,0x35,0x6f,0xb5,0x79, - 0xe1,0xb6,0x39,0x79,0x20,0xed,0x5d,0x70,0x7b,0x99,0x7f,0xd1,0xbf,0xeb,0x16,0x47,0x7e,0x68,0x48,0xb3, - 0x7b,0x5a,0x7f,0x25,0x2a,0x87,0xef,0x90,0xf1,0x1d,0xee,0x96,0x4d,0x40,0x43,0x5b,0x00,0xf9,0xcf,0x6c, - 0xfe,0xa9,0xe4,0x3f,0x93,0x76,0xcf,0xa3,0xc5,0x30,0xf3,0xcf,0x9c,0x72,0x34,0x81,0x67,0xe3,0x93,0x89, - 0x3a,0x67,0xb6,0xd4,0xad,0xe3,0xa6,0x1d,0x2b,0x25,0xb1,0x95,0xc6,0x52,0xa9,0x8d,0xfc,0x77,0x6b,0x3c, - 0xfe,0x25,0xa8,0x8a,0x39,0x8f,0x10,0x9b,0x05,0xbb,0x2c,0x5c,0x6c,0xa8,0xc9,0xc4,0xed,0xaa,0xb3,0xab, - 0x86,0x7b,0xd8,0x0c,0xba,0xda,0x32,0x67,0xe3,0x8f,0xdc,0x26,0x14,0x94,0x30,0x0c,0x32,0x3f,0x6f,0x74, - 0x58,0xfb,0x8f,0x34,0x81,0x38,0xb1,0x9f,0x6a,0x1b,0xcc,0x15,0xf6,0xe2,0x4b,0x3a,0xc5,0x09,0x6d,0xa0, - 0x33,0x99,0x9f,0x36,0x0b,0xc3,0xf7,0xf9,0x42,0x15,0x9b,0x8d,0x2f,0x56,0x53,0xc1,0xed,0x56,0xa8,0x85, - 0x2c,0xb2,0x6e,0x0a,0xd9,0xea,0xa2,0xae,0x93,0xb9,0x7f,0xc1,0x28,0xb4,0x7f,0x33,0x71,0x1d,0x5e,0x50, - 0x2f,0xd4,0x8a,0x1f,0x73,0x71,0x00,0x5d,0xf0,0x05,0xb9,0x19,0xe6,0x22,0x9a,0xb2,0xb7,0x86,0xbd,0xbd, - 0x94,0x7d,0xf0,0x48,0xf7,0x35,0x0c,0x2f,0x79,0x53,0x8b,0x64,0x6a,0x8e,0x1d,0x7f,0x3c,0x9c,0xdd,0x9f, - 0x0f,0x67,0x46,0xc9,0xef,0xd2,0x14,0x18,0xcf,0x26,0xc3,0x25,0x35,0x7a,0x08,0x6b,0xb9,0x4b,0x8c,0xc9, - 0x00,0xd0,0x1d,0xcf,0xbb,0x83,0x79,0xe3,0x3b,0xaa,0xcb,0xf1,0xbd,0xc9,0xc1,0x81,0x56,0xe8,0xc4,0x8b, - 0xd2,0xc9,0x9f,0xbb,0xc9,0x9f,0xdb,0xe4,0x2f,0xdc,0xe4,0x2f,0xb4,0x35,0xe1,0x35,0x57,0xb3,0x5e,0x23, - 0x23,0xfe,0x7e,0x41,0x7f,0x3d,0x4f,0x5d,0x45,0x5e,0x6c,0x5c,0x5c,0xc3,0x7d,0xb3,0xd4,0x70,0x32,0x19, - 0x99,0x3d,0xf2,0x38,0x81,0x4b,0xdd,0xef,0x93,0x1b,0xb8,0x44,0x2d,0xbf,0xce,0x8b,0x6f,0x29,0x57,0xd8, - 0xfd,0x75,0xb8,0xa4,0x11,0x69,0xdd,0x75,0x54,0xa2,0x98,0xc4,0x0e,0xff,0x95,0xf8,0xd7,0xb4,0x8d,0x36, - 0x9b,0x05,0xab,0x3e,0xf3,0x22,0xb3,0x02,0x2b,0x21,0x50,0xf7,0xc4,0x09,0xb3,0x16,0xae,0x14,0xa8,0x5b, - 0xc2,0x23,0x7d,0xc4,0x71,0x11,0x5a,0xc8,0x3e,0x83,0x2d,0x19,0x5f,0x79,0xd3,0x1b,0x3c,0xda,0x64,0xb0, - 0xc9,0xbe,0x61,0x5c,0x94,0x2b,0xf6,0xdd,0x42,0x28,0xa8,0xb5,0xef,0xde,0x1a,0x93,0xf1,0x7d,0xf3,0xf0, - 0x46,0x3f,0x00,0x76,0xae,0xed,0xf9,0xb6,0x6f,0x1d,0x3b,0x5f,0x07,0x04,0xd2,0x53,0xbd,0xdd,0xf7,0xe1, - 0xc6,0xd5,0x79,0x5e,0x38,0xcf,0x73,0xe7,0xd9,0x7f,0x13,0xed,0xbb,0x18,0x4b,0x11,0x2e,0xbc,0x7f,0x4c, - 0xa0,0x7f,0xdd,0x8f,0xde,0xa8,0x46,0xe5,0x6f,0x1b,0xe7,0xfe,0xb1,0xba,0x06,0xc2,0xb9,0x0e,0x36,0xd7, - 0x2c,0x8e,0x7c,0x0b,0xce,0x20,0x82,0xe5,0xb8,0xc5,0xa4,0x6f,0x6b,0x64,0xfa,0x96,0x75,0x4c,0x2b,0x51, - 0x53,0xde,0x42,0xb5,0x95,0x31,0x91,0xdd,0x14,0x3e,0xcb,0x88,0x24,0x4a,0xc8,0x65,0xae,0x9c,0x6b,0x88, - 0xc6,0xe9,0xe7,0x48,0x56,0xdc,0x63,0xb0,0x43,0xa8,0xb2,0x75,0x22,0xaa,0x2e,0x90,0xd8,0x01,0x29,0x9d, - 0x79,0x3f,0x0c,0x5c,0xfa,0xab,0xda,0x42,0xdd,0xa1,0xc5,0xdc,0xa5,0x46,0x4f,0xce,0xb1,0x18,0xc3,0xfa, - 0x55,0x76,0xac,0x08,0x48,0xcb,0xf5,0xfa,0x06,0x77,0x9c,0xc3,0x1f,0x00,0xf2,0x70,0x99,0x4d,0x73,0x87, - 0x28,0x57,0xcd,0x80,0x14,0xb5,0xb2,0x33,0x21,0x3d,0x21,0x6d,0x2b,0x97,0xb2,0x35,0xc2,0x4b,0xc4,0x47, - 0xfd,0x39,0x37,0xba,0x93,0x99,0xd6,0x99,0x94,0xa7,0x48,0x7e,0xec,0x21,0xfa,0x6d,0xae,0x64,0x19,0x79, - 0x07,0x80,0x16,0xb1,0x31,0xf4,0xa0,0x5c,0xae,0xe5,0x89,0xdf,0x25,0xdc,0xed,0x94,0x0e,0x48,0x48,0x14, - 0xa9,0xc7,0xa0,0xe7,0xf6,0xb4,0x03,0x7d,0xf6,0xa8,0xb8,0x8c,0xe6,0x81,0x28,0x33,0x9b,0xeb,0x68,0x24, - 0x2f,0x45,0xf9,0x7a,0xd9,0x94,0xa7,0xd2,0x20,0x21,0xb6,0x3b,0x7a,0x1d,0x5f,0xc7,0x6e,0xde,0x46,0x26, - 0xea,0x33,0x62,0xd4,0x06,0xdc,0x20,0x0d,0xfd,0x9c,0x3d,0xc1,0x73,0x20,0x4a,0x33,0x11,0x4b,0x8d,0xc7, - 0x2e,0x2c,0x81,0x0f,0x7c,0x36,0x8f,0x2e,0x72,0xda,0xf3,0xfe,0x5c,0xa1,0x8e,0x39,0x2b,0x06,0xd2,0xf8, - 0xaf,0xa2,0xb9,0xb2,0x17,0x8d,0x57,0xb8,0x54,0x83,0xec,0x0e,0xd5,0x5f,0x81,0x54,0x66,0x53,0x83,0x79, - 0xcd,0x57,0x1c,0x07,0xcc,0x58,0xcc,0x1d,0xc6,0x02,0x37,0x92,0x9d,0xd1,0x8b,0xad,0xb0,0xcc,0xba,0xbb, - 0x74,0xa3,0x34,0xda,0x5b,0x55,0x07,0x05,0x27,0xc6,0x0f,0x4d,0xc2,0x11,0x3c,0xe1,0xa5,0x47,0xe3,0x28, - 0xa7,0x36,0x4a,0x94,0xb8,0x24,0x1a,0x65,0x35,0x95,0x7c,0x5a,0x19,0x25,0x2c,0xe9,0xc6,0x78,0xd4,0xa4, - 0x71,0xb0,0xae,0x1d,0x0b,0xed,0x24,0x2a,0xf6,0x3c,0x08,0xe7,0xf5,0x5d,0x28,0x7d,0xfd,0x06,0xc6,0xfc, - 0x1d,0x91,0x4a,0x9d,0x3b,0x5b,0x7d,0xfe,0x56,0xb8,0x34,0x4d,0x70,0xc9,0x58,0xc9,0x25,0xa3,0x56,0x6d, - 0x09,0xab,0x8d,0x36,0xb2,0xee,0xb8,0xc2,0x15,0x5d,0x66,0x7d,0xfd,0x68,0x62,0x27,0xb6,0x2f,0x74,0x8d, - 0x36,0x93,0xbe,0x97,0x84,0x43,0x5d,0x74,0xea,0xda,0x5d,0xac,0x6b,0x14,0x00,0x93,0xce,0x55,0x5e,0x33, - 0xbf,0xce,0xab,0xf1,0x6b,0xc2,0x8b,0x4c,0x73,0x39,0x32,0x10,0xb0,0x5e,0x17,0xd4,0x57,0x86,0x19,0xa9, - 0x92,0x20,0x80,0x9f,0xa8,0x28,0x75,0xbf,0x90,0xee,0x9b,0x8f,0x7a,0x14,0xf3,0x4d,0x10,0x16,0xd4,0x22, - 0xed,0xc6,0x3d,0x07,0xd6,0x60,0x22,0xb4,0x55,0xcd,0xde,0x87,0x79,0xd5,0x86,0x49,0x42,0x23,0xbe,0x9e, - 0xb1,0x40,0xaf,0x38,0xb4,0x1e,0x00,0xdc,0x48,0x6e,0x29,0x01,0x41,0x61,0x73,0x58,0x6b,0x6c,0xfc,0xda, - 0xc9,0x0d,0xcf,0x4d,0xc6,0xc3,0xf9,0x1d,0x3a,0xc0,0xdc,0xf5,0xaa,0xd9,0x75,0x58,0x64,0xd0,0x84,0x59, - 0x19,0xfb,0x7c,0x00,0x0b,0x05,0x76,0xfa,0xc5,0x51,0xc4,0x65,0xf9,0x4f,0x44,0x9f,0x24,0x92,0xaf,0x22, - 0x17,0x5c,0xaf,0xef,0x78,0x5a,0x7e,0xe0,0xdd,0x19,0x52,0xb3,0x8d,0x60,0x6f,0xcd,0x77,0x36,0x23,0x18, - 0x5f,0x4e,0xa2,0xb9,0x18,0x5b,0xd7,0x7d,0x14,0xbc,0x31,0xe7,0xad,0x23,0x61,0xd9,0x52,0x39,0xda,0xd5, - 0xd5,0x70,0x35,0xca,0x00,0x74,0x44,0x79,0xcd,0x55,0x6e,0x32,0x22,0xce,0x58,0xd6,0xa1,0x57,0x9f,0x8f, - 0x73,0xcb,0xb6,0x4d,0x54,0xe2,0xb8,0xc7,0x1a,0x6f,0xf9,0xc4,0xa2,0x1c,0x08,0xbe,0x7c,0x0f,0xda,0x20, - 0x06,0xa1,0xf4,0x3c,0x79,0x63,0x77,0x0a,0x7b,0x53,0x68,0x5a,0xd7,0x7d,0xc4,0xd4,0x2a,0x5b,0x7f,0x74, - 0x42,0xe4,0x56,0xb3,0xbd,0x4c,0x1c,0x6e,0xe3,0x80,0x6a,0x48,0xf9,0x4d,0x70,0xb1,0x1f,0x32,0xf7,0xea, - 0x48,0x3c,0x9a,0x00,0xb1,0xa5,0x35,0xce,0x5a,0xd6,0xee,0x38,0x60,0xda,0x1d,0xd8,0xdd,0xd4,0x70,0xfe, - 0x51,0x45,0x53,0x04,0x7e,0x94,0x2b,0x9c,0x91,0x8f,0x50,0x9b,0x5e,0xcd,0x05,0x15,0xc6,0x56,0x85,0xd1, - 0xaa,0x49,0x18,0x55,0xe1,0x4f,0x39,0xbb,0xf5,0x63,0x97,0xe7,0xd2,0xeb,0x11,0x8d,0x18,0xe2,0x3c,0xed, - 0xf1,0x6d,0xaf,0xe4,0x39,0xd8,0x63,0xdf,0x7d,0x7e,0x5b,0x7a,0x22,0x50,0x7a,0x9d,0x8f,0x7e,0x4f,0xfd, - 0xeb,0x3c,0x08,0x7f,0x4d,0x99,0x5b,0xaf,0x99,0x05,0xeb,0xfc,0x4d,0x39,0x2c,0x28,0xfd,0x99,0xc2,0x85, - 0x6f,0x5c,0x56,0x4f,0x41,0x34,0x00,0x61,0x71,0x3c,0x9f,0x64,0x8a,0xc3,0x2a,0xb8,0xa5,0x95,0x2d,0x84, - 0x9e,0x08,0x1e,0xe0,0xaa,0xc9,0x10,0xcb,0x96,0x90,0x98,0xc2,0x4a,0x57,0x69,0xf2,0xaa,0x85,0xbf,0x72, - 0xa3,0xa1,0xb8,0x8a,0xbe,0x81,0x57,0x95,0xda,0x1d,0xf2,0x50,0x17,0x90,0xcb,0x98,0x95,0x5c,0x42,0xe9, - 0xba,0x6f,0xbd,0xff,0x38,0x17,0x4d,0x41,0x0f,0x3a,0x13,0xd4,0xc1,0xb4,0x5f,0xd4,0x94,0xb7,0x39,0xbd, - 0xa6,0xf7,0x6b,0x53,0x8b,0x8e,0x6e,0x7d,0xb0,0x53,0xbc,0xcf,0xa0,0xd1,0x07,0x83,0xa4,0x58,0x8b,0xb4, - 0xa0,0x97,0x58,0xe5,0x6f,0x92,0xac,0x0c,0xcb,0x0d,0x47,0x06,0x0a,0x46,0x89,0x21,0x1b,0x61,0x05,0x7a, - 0x57,0x39,0xa5,0x30,0x49,0xe6,0xc5,0x14,0x03,0x21,0x89,0x07,0xb9,0xd3,0xa2,0x7d,0x1b,0x0a,0xcc,0x56, - 0xf5,0x9a,0x5a,0x30,0x1e,0x27,0x35,0x6c,0x32,0x48,0x43,0x69,0xdc,0x69,0xec,0x9e,0xad,0x44,0xe8,0xc7, - 0x82,0x0d,0xc2,0xb7,0xdc,0xc4,0xb7,0xb7,0x69,0xb3,0xb0,0xb2,0xb6,0x6e,0xe1,0xde,0x31,0x9b,0x47,0x10, - 0xbb,0xe2,0x1b,0xd8,0x44,0x1c,0x63,0x2d,0x48,0x82,0x34,0xf8,0x2a,0x7d,0x9f,0xb0,0x1c,0x07,0xa6,0x50, - 0x89,0x82,0x4c,0xe7,0x6d,0x1e,0xfd,0x3b,0x07,0x9e,0x70,0xae,0x9b,0x40,0x4b,0xec,0xe3,0x96,0x74,0x4b, - 0x36,0x6b,0xcf,0x19,0x98,0xf0,0x88,0x2b,0x19,0x5d,0x32,0xa2,0xb3,0x35,0x51,0x77,0xa9,0xa9,0xa9,0xde, - 0xcc,0x3e,0x76,0xb6,0xbc,0x10,0x3b,0xe3,0xef,0x4d,0xf5,0xb1,0x3c,0x85,0x65,0x82,0x56,0x14,0xa5,0xc6, - 0xa0,0xa2,0x83,0xbf,0x73,0x44,0xfe,0xba,0xc8,0x7c,0x36,0xa6,0x02,0x03,0xb4,0x9f,0xdb,0xe7,0x6d,0x13, - 0x50,0x6b,0x00,0xca,0x6a,0x50,0x26,0x2e,0x84,0xf6,0x0a,0x6d,0x5d,0x07,0x71,0xf1,0x86,0x25,0x01,0x9a, - 0xa9,0xed,0x43,0xad,0xcf,0x18,0x02,0x26,0x6a,0x51,0x1b,0x95,0x21,0x8c,0x20,0x25,0x0c,0x10,0x28,0xe6, - 0x1d,0x4d,0x50,0x80,0xff,0xd4,0x89,0xc5,0x53,0x62,0xb5,0x40,0xdd,0x4b,0x34,0x59,0xe1,0x01,0x1f,0x73, - 0x54,0xa0,0xda,0x10,0x0c,0x2f,0x06,0xab,0x8c,0xbd,0x34,0x03,0xa5,0x79,0x68,0xfb,0x69,0xac,0x16,0x5c, - 0x19,0x27,0xc7,0x0f,0x6d,0xfb,0x0d,0x34,0xe1,0xa9,0xb5,0x7d,0x6c,0x9d,0x01,0xe4,0x21,0xfc,0xae,0x28, - 0xb3,0x74,0x84,0xed,0xed,0x5a,0xec,0x9d,0x30,0xf1,0x4e,0x74,0xf6,0xfc,0x51,0x4e,0x13,0xcd,0xf7,0x00, - 0x75,0xc0,0x69,0x42,0x9d,0x71,0xd4,0xfc,0x68,0xda,0xcb,0xef,0xc7,0xb5,0x67,0xad,0xb2,0x95,0x09,0x9e, - 0x94,0xf8,0xc0,0xa2,0x96,0x61,0x15,0xb7,0xa3,0x65,0x06,0xe6,0xe9,0x86,0xe8,0xd0,0x06,0xb8,0x68,0x7f, - 0x06,0xad,0x79,0xb4,0x45,0xb1,0x39,0x72,0xf1,0xfe,0x67,0xd3,0x9e,0x66,0x44,0x9b,0x5b,0x06,0x8d,0x12, - 0x84,0x01,0x69,0x4c,0x11,0x65,0x17,0x00,0x6f,0xa5,0xaf,0xd7,0xf7,0x1a,0xc9,0xec,0xb6,0x9d,0x5d,0x46, - 0x68,0xec,0x02,0xd6,0xcc,0xb6,0x04,0x7f,0xc4,0x4c,0xe0,0x38,0x20,0x2d,0x69,0x27,0xaa,0xae,0xa3,0x15, - 0xc3,0x7d,0x7b,0xb9,0x6c,0x30,0x77,0x3f,0x71,0x5d,0x3d,0xaa,0x0c,0x0c,0x7d,0xc2,0xc0,0x37,0xfc,0xef, - 0x2d,0x4c,0xe5,0xef,0x58,0x13,0x0e,0x63,0x00,0xb7,0x50,0x27,0x56,0x69,0x9c,0x85,0xc9,0x59,0xc6,0x86, - 0x47,0x5a,0x56,0x7c,0x4b,0xc7,0x00,0x71,0xc7,0xda,0x08,0x33,0x37,0xa1,0x6b,0x5b,0xd7,0x25,0xf4,0xa1, - 0x95,0xb2,0x69,0x06,0xfb,0xb3,0xeb,0x2a,0xf1,0x13,0x8c,0x43,0xf9,0x86,0x51,0x66,0x05,0xcd,0x41,0x36, - 0xad,0x14,0x77,0x40,0x85,0xdc,0x40,0x35,0xcf,0x34,0x3f,0x19,0xe5,0x61,0x1a,0x18,0x47,0xa8,0x1b,0x54, - 0x96,0x19,0xb9,0x39,0x3b,0xf2,0xd1,0xcf,0x51,0x7d,0xdd,0xc4,0xf7,0xe1,0xe6,0xa2,0xdc,0x66,0x86,0x30, - 0xad,0x61,0xbe,0x0c,0x9f,0x91,0xee,0x3d,0x54,0xab,0x77,0xce,0xc7,0xf5,0x5a,0x0c,0x48,0xdd,0xf2,0x8e, - 0x48,0x06,0x51,0x6c,0x7b,0x59,0xe0,0xe9,0x86,0xb0,0xd1,0xe9,0x08,0xaf,0x23,0xba,0x99,0x14,0x3a,0xfe, - 0x62,0x78,0xc4,0x8f,0x27,0xe2,0x0a,0xa8,0x8c,0x1e,0xe5,0x1c,0xfe,0xdc,0xc8,0xe9,0xcb,0x41,0x52,0x14, - 0x39,0xb1,0x10,0x29,0xed,0x9d,0x2a,0x5d,0x96,0x51,0xae,0x4a,0x8d,0x84,0x6e,0xa1,0xcd,0x91,0x2e,0x92, - 0x30,0x51,0xfa,0xe9,0x55,0xfe,0xb5,0x9e,0xaa,0xb2,0x43,0x9b,0xbf,0xc3,0x00,0x76,0xeb,0x3a,0x40,0xfb, - 0x50,0x20,0x7c,0xcf,0x77,0x70,0xc4,0x17,0xf2,0x12,0xe8,0x3b,0xa9,0x5e,0x51,0x1b,0x27,0xe4,0x70,0x73, - 0x66,0xaf,0x22,0x46,0xda,0x28,0xc9,0x4d,0x0b,0xfa,0x74,0x20,0x32,0xec,0xc2,0x73,0x9a,0x61,0x2f,0xe1, - 0x78,0x4f,0xac,0xe9,0x21,0x33,0x29,0xa0,0xec,0x09,0xab,0x6a,0xac,0xb8,0x1d,0xb3,0xb6,0x0f,0x9a,0x21, - 0xea,0xa2,0x06,0xb7,0x69,0x8d,0x3c,0xea,0x2b,0xba,0xb8,0x9d,0xd2,0xd4,0xd7,0x73,0x02,0xa6,0x00,0x76, - 0xa6,0xd0,0x4f,0x40,0xfb,0x11,0xc1,0x26,0xae,0x34,0x36,0x81,0xff,0x4b,0x1e,0x0c,0xb6,0x27,0x8f,0xb2, - 0xc5,0xd1,0xde,0x1e,0x3c,0xd9,0x5f,0x66,0x3e,0xae,0x9a,0x32,0xf7,0x1d,0x1e,0x9f,0xe2,0x4e,0x6b,0x9c, - 0xaf,0x5c,0x8b,0x31,0x0e,0x73,0x6b,0x75,0x4c,0xa8,0xed,0x34,0x8e,0x3a,0x2c,0xab,0x4c,0xf6,0x8f,0x1b, - 0x5d,0x01,0xf7,0xb1,0x71,0x12,0x37,0x03,0x75,0xd2,0x86,0xed,0x27,0xd1,0x97,0x6e,0x92,0x79,0x30,0x51, - 0x98,0xb7,0x23,0x8b,0x36,0x42,0x8e,0xb3,0x5b,0x83,0x4c,0x4f,0xb7,0xd9,0x9e,0xa0,0x14,0xe5,0xfc,0xe1, - 0xed,0x18,0xb0,0x72,0x26,0xaf,0x74,0x1d,0x83,0xb0,0x08,0xbc,0xbf,0x09,0xc9,0x6a,0xa3,0x26,0x30,0xc1, - 0x50,0xc4,0x10,0x2b,0x58,0x57,0x5c,0x7b,0x8e,0xe7,0x2e,0xb7,0x2b,0x05,0x93,0x92,0x66,0x92,0x84,0x8b, - 0xe5,0xf2,0x5b,0x26,0xab,0xf9,0xaa,0x6a,0x78,0x8c,0xeb,0x39,0x49,0x1f,0xb6,0xe2,0x13,0x2d,0x6b,0xbb, - 0x2e,0x2d,0x77,0xd2,0xb5,0xf1,0x26,0x33,0xff,0xee,0x9a,0x61,0x9a,0x65,0xe4,0xc6,0xdb,0x04,0xdc,0xe8, - 0xdd,0x76,0x0b,0x97,0xe2,0x0f,0x0a,0x92,0x32,0xc4,0xb1,0x32,0x5b,0x23,0xcc,0x9c,0x7d,0x62,0x48,0x38, - 0xa4,0x9a,0xc7,0x8d,0x8e,0xf4,0x0e,0x92,0x4a,0xef,0x00,0xa8,0x9e,0xb5,0xc0,0x7d,0x68,0xd6,0x8b,0xb0, - 0x42,0xb6,0xbd,0x3b,0xac,0xc9,0x7e,0x1a,0x6b,0x47,0x3e,0x6c,0xde,0x66,0x6c,0xd9,0x34,0xdc,0xd3,0x98, - 0xe8,0x6d,0x13,0xb4,0x8c,0x12,0x3c,0x89,0x1f,0x56,0xaf,0xb3,0xdc,0x47,0x83,0xdd,0x58,0x65,0x12,0xdd, - 0x71,0x46,0x58,0x4c,0x7f,0x14,0x44,0x37,0x92,0x9f,0x81,0xce,0x1a,0x25,0x7e,0x67,0x98,0x59,0x29,0x0d, - 0xb9,0x30,0x7e,0x07,0xf1,0xd5,0x6c,0x24,0x8f,0xb4,0x29,0x89,0xcf,0xfd,0x79,0x95,0x3c,0x3d,0xf9,0x67, - 0x86,0xd2,0x9b,0x56,0x10,0x6a,0xea,0xd6,0x8a,0x00,0x04,0x20,0x48,0x5d,0x1b,0x3a,0xb4,0x82,0xf4,0xb9, - 0xa3,0x67,0xb8,0x6b,0xcf,0xd9,0x66,0x49,0x3f,0x31,0x0a,0xf3,0xbd,0xf1,0xf5,0x2a,0x39,0x4c,0xa9,0x9d, - 0x49,0xcf,0xeb,0xc3,0x0f,0xe5,0xc1,0x41,0x23,0x03,0x1f,0xe9,0xd3,0x37,0xae,0xa3,0xed,0xa4,0x15,0x10, - 0x4f,0x98,0xae,0xad,0x89,0xaa,0xea,0x12,0x2e,0x0e,0xba,0xd6,0x6b,0x80,0x7d,0x7b,0xd5,0xb8,0x4e,0x6d, - 0x45,0xd9,0x43,0x98,0x3d,0x1b,0x5b,0xc2,0xa9,0x2c,0x75,0xe3,0x83,0x8b,0x28,0xd0,0x5e,0xea,0x5b,0xe2, - 0x0f,0x12,0x07,0x08,0x02,0xeb,0x4f,0x20,0xfb,0xf4,0x6e,0x86,0x1a,0x5f,0xca,0x3f,0x66,0x2f,0xb0,0x60, - 0xc2,0x70,0x96,0x62,0x90,0x4e,0x64,0x6d,0x53,0xa1,0x95,0x13,0x47,0x29,0x9b,0x1a,0x86,0x5b,0xdb,0xbf, - 0xe2,0x50,0xf3,0x70,0x98,0x8c,0x6c,0xe1,0x5d,0xa7,0x42,0x16,0x09,0x7e,0x30,0xbb,0xf2,0xd1,0xe6,0x49, - 0x57,0x9b,0x94,0x08,0x3c,0x92,0x46,0xf2,0xa8,0x6e,0x89,0x62,0x89,0xe9,0xb0,0x2b,0xc4,0x3e,0xa9,0x0c, - 0x53,0xc7,0x1b,0x68,0x5e,0x1b,0x71,0x63,0x45,0x74,0xa3,0x16,0x06,0xaa,0x86,0x4a,0x96,0x91,0xcd,0x69, - 0xf5,0x85,0xb5,0x63,0x13,0x39,0x4e,0x76,0x18,0xa3,0x44,0x08,0x54,0x38,0x88,0xcf,0x21,0xc6,0x56,0x18, - 0x63,0x32,0x82,0x2b,0xef,0x60,0x94,0x3d,0x38,0x19,0x9d,0x84,0xc7,0xe1,0x49,0x58,0x8d,0x38,0xcf,0x55, - 0x8a,0xa2,0x77,0x83,0xf0,0xd8,0x84,0x53,0x85,0xdf,0x2d,0x7d,0x3f,0x34,0x19,0x65,0x2c,0x05,0x62,0x4e, - 0x2b,0x74,0xd6,0x36,0x76,0xa0,0x80,0x59,0x53,0x0e,0xfb,0xdd,0xe6,0x52,0x1b,0x6e,0xdf,0x4b,0x57,0xe8, - 0xe4,0x80,0x82,0x32,0x54,0x95,0x90,0x53,0xc4,0xc4,0xdc,0xdf,0x02,0x93,0xd4,0xd0,0xeb,0xb9,0x84,0xe3, - 0xc1,0x65,0x83,0x89,0x56,0x92,0x1b,0xb7,0x14,0x91,0x8d,0xa9,0xa1,0xaf,0x24,0xd0,0x18,0x53,0x36,0x79, - 0x30,0x25,0x8c,0xb3,0x8a,0x62,0x75,0x21,0x40,0x0d,0x3f,0x8d,0xec,0x7d,0x34,0x07,0x29,0x33,0x62,0xaa, - 0xa6,0x64,0xe2,0x46,0x71,0x4a,0xc8,0x29,0xfc,0xa8,0x69,0x7d,0xb5,0x32,0x93,0x5e,0x34,0x43,0x14,0x30, - 0x71,0xb8,0x60,0x07,0xdb,0x70,0xf2,0xac,0xdd,0xc1,0xd9,0x2c,0xab,0xda,0xbd,0xef,0x82,0xd5,0x7d,0x21, - 0xf2,0xeb,0x90,0x79,0x24,0xc6,0xd5,0x59,0x6d,0xc1,0x78,0x26,0x10,0xc4,0x5e,0xd1,0xf6,0xb1,0xf3,0x07, - 0x92,0xb0,0xd1,0xf5,0x38,0xd8,0x84,0x2f,0xb0,0x21,0x29,0xc1,0xb9,0x56,0x9b,0x9a,0x6b,0x8e,0xca,0x67, - 0xc7,0x90,0xf0,0x14,0xc8,0x87,0x66,0x4a,0x94,0x7a,0x6e,0x32,0x41,0x94,0x88,0xab,0x77,0x21,0x87,0xb2, - 0xa0,0xf6,0xce,0x43,0xb9,0xab,0xe2,0x9d,0x9e,0xd1,0x76,0xfc,0x24,0xa2,0x82,0x9a,0x49,0x52,0x37,0x91, - 0x88,0xa5,0x85,0x5d,0xa3,0xae,0x10,0xd9,0x1b,0x75,0x48,0x09,0x85,0xe5,0xb4,0x53,0xe0,0x46,0x23,0x06, - 0x07,0x55,0x70,0x64,0x66,0xa9,0x6c,0xbd,0x2e,0x6b,0xd6,0x56,0x54,0x26,0x5c,0xfe,0x35,0x83,0xaf,0x1f, - 0x37,0xa1,0x26,0x43,0xa7,0x75,0xdb,0x2b,0xdb,0xf6,0x74,0xab,0x6d,0xa7,0x65,0xc0,0xb9,0x71,0x05,0xb7, - 0x61,0xdd,0xa7,0x5a,0x0d,0x8e,0xb8,0xe7,0x0d,0x51,0xe1,0x62,0x3a,0x92,0x59,0xdf,0x64,0xe0,0xda,0x6b, - 0xcd,0x08,0xb3,0x18,0x0b,0x97,0x5d,0xc8,0xda,0xab,0x5a,0x8c,0xf6,0x88,0xb0,0xe0,0xd5,0x84,0xd8,0xdb, - 0xf7,0xb2,0xbc,0xa2,0x93,0x2a,0x2d,0xab,0x9e,0x3e,0x46,0x7a,0xa9,0xf6,0xf4,0x03,0xc0,0xa5,0x34,0xfb, - 0xee,0x41,0xe5,0x98,0x3d,0x4c,0x37,0x0b,0x35,0x0b,0x80,0x2e,0xe8,0xe9,0x46,0xa5,0x84,0x1b,0x58,0x22, - 0x11,0x48,0x94,0x9d,0xb4,0x45,0x0e,0xe2,0xa3,0x0d,0x64,0xd8,0xc6,0x83,0x23,0x3a,0x78,0x11,0xb4,0x84, - 0xf7,0x0d,0xcb,0x1f,0xaa,0x4b,0xf8,0xa3,0xd1,0x40,0xc9,0x17,0xc3,0xb4,0x6f,0x89,0x06,0xb8,0xc5,0xa7, - 0x10,0x71,0x6e,0x35,0x02,0x44,0x32,0xd0,0x1f,0x51,0xdb,0x22,0xfd,0x27,0xda,0x20,0x97,0x0a,0x88,0x3f, - 0x30,0x15,0xd0,0x16,0xe5,0x0a,0xcc,0xd2,0xaf,0xd7,0x53,0x8e,0x2c,0x63,0xa2,0xb6,0xa4,0x76,0x2e,0xe1, - 0x04,0xa9,0xd2,0x32,0x54,0x13,0x12,0xcf,0x5f,0xd0,0x4a,0xf3,0xbc,0x06,0x03,0x13,0x13,0x7e,0xa1,0x68, - 0x03,0x1b,0x2e,0x6a,0x7b,0xd3,0x15,0x0e,0x0d,0x5f,0xc1,0xcb,0xaa,0x89,0x1c,0x8f,0xc3,0xb7,0x1d,0x17, - 0x04,0xbe,0xe5,0xd9,0x17,0xa3,0xce,0x96,0xb0,0x10,0x8a,0x68,0xa1,0x80,0x49,0x30,0xb3,0x57,0x57,0x8d, - 0x9d,0x2a,0x96,0x52,0x9a,0x48,0xf4,0x3d,0x13,0xa0,0xb7,0xf7,0x5f,0x18,0xfb,0x7f,0x61,0xbd,0xae,0x0f, - 0xab,0x5e,0x1d,0x37,0x5b,0x8b,0xc7,0xf5,0x0a,0x97,0xab,0x25,0xc8,0x92,0x9e,0x98,0xe9,0x88,0xa5,0x5a, - 0x23,0xa0,0x07,0x6f,0xf9,0xfa,0xe4,0x15,0x1e,0x0f,0x4f,0x7a,0xd7,0x78,0xb4,0x70,0x9e,0xd5,0x42,0x04, - 0xb5,0x0b,0x4d,0x47,0xa6,0x78,0x87,0xa2,0x98,0x87,0x2d,0x00,0x1d,0xc0,0xde,0x97,0x27,0xa1,0xfc,0xde, - 0x93,0xdf,0xcf,0xff,0x2e,0xbf,0xf7,0x3e,0xd7,0xbf,0x5f,0xea,0xf4,0x7f,0x86,0x36,0x00,0x99,0x14,0xf8, - 0x42,0x67,0xd0,0x05,0x3e,0xff,0x22,0x34,0xea,0xc5,0x33,0xa8,0xba,0x4b,0xae,0x7b,0x77,0x75,0xf5,0xf2, - 0x73,0x72,0xac,0x7f,0x75,0x6b,0x27,0x7f,0xd7,0x09,0x7f,0xff,0xe2,0xee,0x3f,0x74,0x9e,0x7f,0xde,0x35, - 0x85,0xe8,0xe9,0x9e,0xa9,0xf4,0xa6,0xf4,0xec,0xc5,0xdf,0x83,0xe8,0xcb,0x7f,0x10,0xcb,0x72,0x3f,0x3a, - 0xb9,0x7b,0x77,0xbd,0xa6,0xd7,0xbf,0x7f,0xc1,0xaf,0x5f,0x1e,0x8f,0x74,0xe3,0x21,0x25,0x7e,0xfe,0x25, - 0x27,0x7e,0xf1,0x8f,0x91,0x27,0x86,0x10,0x5e,0xe8,0xf1,0xb5,0x4f,0x47,0x40,0x12,0x4c,0x93,0x9c,0x75, - 0x1a,0x2e,0x7c,0xef,0xd8,0xdb,0x73,0x82,0x17,0x1f,0x43,0x86,0x96,0x96,0xdf,0xc7,0xdf,0x4b,0x50,0x36, - 0x42,0xb8,0x89,0xfa,0xde,0x44,0xab,0xeb,0xbc,0x73,0x6b,0x4e,0xbb,0xe9,0xbb,0xad,0x54,0x7f,0xb2,0xca, - 0x3c,0x27,0xd4,0xc2,0xbd,0xcf,0x21,0xd6,0x39,0x38,0xb8,0xf7,0x25,0x7e,0x47,0x55,0x68,0xc3,0xb8,0x29, - 0xfa,0x0e,0x56,0x30,0xf4,0x3e,0xf3,0xfa,0x89,0x09,0x80,0x2e,0xfe,0xad,0xae,0x0d,0x2e,0xac,0xb9,0x32, - 0xe3,0x7b,0x03,0x9a,0x0a,0x63,0x21,0xfb,0x7a,0xda,0x53,0x9e,0xa7,0x2e,0xb6,0xf3,0x5f,0xc6,0xe5,0x8b, - 0x9b,0xcc,0x04,0xda,0x53,0xef,0xa2,0x2e,0x02,0xf5,0x69,0x56,0x2d,0x9c,0x60,0x61,0x78,0x1d,0x3c,0x46, - 0x64,0x9b,0xf4,0x2a,0x21,0xe6,0xe1,0x2a,0xae,0xd4,0xd9,0x27,0x17,0x14,0x2f,0x7e,0xba,0xd8,0x79,0x74, - 0x2b,0x8e,0x35,0x1e,0xb5,0x82,0x54,0x36,0x7c,0x1a,0xb9,0x0c,0x60,0x35,0xc0,0x6e,0x8b,0xe4,0x87,0xef, - 0x11,0xcf,0xce,0xf0,0x38,0xba,0xdd,0x84,0x26,0x22,0x11,0xe3,0x84,0x5b,0x9b,0xd9,0xa2,0x4b,0xea,0xd1, - 0x73,0x9d,0x2e,0x85,0x02,0x73,0xdc,0x21,0xd0,0xe2,0xd0,0xa4,0x76,0x3a,0xbd,0x49,0x88,0x5a,0x48,0x94, - 0x43,0xf8,0x54,0x6c,0x4c,0xe0,0x1e,0x46,0x49,0x47,0x04,0x46,0x09,0x69,0x8a,0x4a,0xd9,0x77,0xf0,0x33, - 0x46,0x12,0xcf,0x93,0xb2,0x8c,0x2f,0xd8,0x77,0x8e,0x9c,0x7d,0xfa,0xf8,0xa1,0x66,0xc4,0xe3,0xd4,0x99, - 0x33,0x46,0x55,0xa7,0xfc,0x82,0x5c,0x89,0xf6,0x08,0x26,0x5d,0xbd,0x41,0x12,0x0e,0x11,0x68,0x2a,0xfb, - 0x81,0x93,0x99,0x75,0x24,0xa6,0x45,0x7a,0x9e,0xe0,0xd3,0x23,0x98,0xfa,0x70,0xf4,0x21,0x66,0xda,0x24, - 0x9b,0xc9,0x21,0xce,0xe0,0x36,0x75,0x3c,0x0e,0x3d,0x85,0x32,0x57,0xbc,0x02,0x45,0x9e,0x57,0x26,0xc8, - 0x3d,0x9e,0x05,0xe9,0x6d,0xa7,0x34,0xe6,0x9a,0xaf,0x4f,0xb9,0x2f,0xc8,0x10,0xb5,0xf3,0xea,0x95,0x1a, - 0xcc,0x89,0x3e,0x3b,0x27,0x46,0x46,0x26,0x67,0x2b,0x5b,0xeb,0xbb,0x29,0x55,0x12,0x63,0x98,0x89,0xfe, - 0xe9,0x82,0x8d,0x14,0x7e,0x61,0x55,0xf0,0x76,0xe1,0xce,0x6c,0xec,0xa8,0xb7,0x09,0x01,0xc5,0x47,0x21, - 0xa0,0x00,0xbd,0xb8,0x0d,0x01,0x76,0x79,0x79,0x4d,0xcb,0xa8,0xe8,0x5e,0x4c,0x5c,0xb0,0x3f,0x37,0x13, - 0xfb,0xbf,0xb6,0xa6,0xca,0x39,0x2c,0xf4,0xb4,0xbd,0xcb,0xf8,0x9a,0xcf,0xbe,0xf0,0x5d,0xb8,0xf8,0x05, - 0xe4,0xf9,0x6d,0x74,0x68,0xbf,0xee,0x90,0xcc,0xbe,0x1f,0x58,0x47,0xf1,0x7f,0x1d,0x2e,0x46,0xbe,0x0b, - 0xe5,0x5b,0x50,0xf1,0xd7,0x87,0x0b,0xde,0x5c,0x6e,0x49,0x70,0xc9,0xaa,0x03,0x2c,0x98,0x1e,0x35,0xde, - 0xb7,0xe0,0xd4,0xdd,0x76,0x6e,0xc6,0xff,0x56,0x77,0x8c,0x1f,0xb8,0xc7,0xed,0x30,0xb5,0xc6,0x11,0x9c, - 0x74,0xcd,0xdf,0x2a,0xdc,0xe8,0xd1,0x60,0x95,0x7d,0xa8,0x65,0x2d,0xf8,0xdc,0xaa,0xa3,0x03,0xca,0x1a, - 0xd5,0xea,0x34,0xbf,0x55,0x83,0xf3,0xc9,0xd4,0xd0,0x00,0x8c,0x6e,0x70,0x69,0xd7,0xd2,0xf8,0xe8,0xf6, - 0x44,0xc2,0xc6,0x6d,0x36,0xea,0xc6,0x78,0x6d,0x45,0x6a,0xed,0xcd,0x31,0x5e,0xc0,0xd0,0x5b,0x1c,0x2b, - 0xb2,0xd6,0xdb,0xad,0xeb,0xc9,0x56,0x6b,0x05,0x84,0xe2,0x32,0x71,0xc3,0x11,0xc9,0x9b,0x39,0x0c,0xc5, - 0x85,0x8b,0x43,0x43,0x8f,0xba,0x19,0x36,0x8a,0x6f,0xc3,0x4b,0x9d,0x38,0x66,0x6a,0xcf,0x3a,0x93,0xdd, - 0x6c,0x79,0x72,0x6c,0x90,0xf6,0xdc,0x2d,0xc8,0x27,0x24,0x7c,0x06,0xa2,0xc8,0xd6,0xd6,0x66,0xf8,0xee, - 0x00,0x8e,0xc4,0xd3,0xf0,0x73,0x11,0xec,0x7f,0xd4,0x75,0xac,0x0e,0x0b,0x17,0xc9,0x8f,0x0d,0xbf,0x4b, - 0xf4,0xbc,0xe3,0xc8,0x55,0x04,0xf0,0x85,0x10,0xd2,0x88,0xe6,0xa1,0x09,0xe9,0x15,0x04,0xd4,0x0b,0x7c, - 0xe0,0xb1,0xb1,0x41,0xe8,0xbc,0xc5,0xae,0x2d,0x82,0xd1,0xc2,0x04,0xfd,0x3d,0x0e,0xdd,0x73,0x6b,0x11, - 0xd8,0x74,0xd6,0xc0,0x6e,0xf1,0x4c,0xae,0x3f,0x3e,0x6c,0xa3,0x3a,0x80,0x79,0x4d,0xf2,0x38,0x41,0xcd, - 0xb9,0x0b,0x86,0xea,0xa9,0xe3,0x9e,0x1f,0x1c,0x78,0x7c,0x99,0xb8,0xd9,0xd4,0x22,0xfd,0x83,0x83,0xdc, - 0xb6,0x4c,0x4c,0xe9,0x92,0x6a,0xf7,0xbd,0xa7,0xf3,0x9e,0x8c,0xa2,0x87,0xd9,0xee,0xa5,0x65,0x0f,0x4e, - 0x66,0x7a,0x74,0x06,0xf4,0x78,0xae,0x7b,0x89,0x88,0x4c,0xcb,0x1e,0xcc,0x1f,0x7a,0x97,0xf1,0x75,0x22, - 0x05,0x24,0x3f,0x65,0x1e,0x10,0x17,0xd4,0x31,0xf6,0x6d,0x9c,0x0e,0xb6,0x60,0x45,0x0c,0x20,0x9c,0x87, - 0xb6,0x67,0xa4,0xeb,0x04,0x58,0xc1,0xf3,0xd9,0x82,0xfe,0x40,0xc5,0x72,0x47,0x7d,0xc2,0xdb,0x2f,0x47, - 0x1e,0xcc,0xa7,0xda,0xd3,0x12,0x52,0x6a,0x32,0x5c,0x41,0xf8,0x05,0x71,0xa6,0xf6,0xfa,0xaf,0x52,0x15, - 0x0f,0x52,0x5f,0x62,0x4f,0x60,0x6b,0xbc,0x8d,0xb6,0x10,0xc5,0x94,0x5a,0xa2,0xc3,0xa5,0xe3,0x82,0x64, - 0x33,0x7c,0xeb,0xd0,0x73,0x29,0xec,0x06,0x97,0x39,0xe4,0xe1,0xae,0x9c,0xa8,0x36,0x1f,0x76,0x6a,0x83, - 0x6b,0x39,0xc3,0xa4,0x42,0x0b,0xef,0x83,0x1a,0x7d,0xc4,0xf8,0x79,0x9e,0xab,0xd6,0x67,0xe5,0xcd,0xe3, - 0xac,0xdf,0x67,0xf9,0x8c,0x77,0xab,0xfd,0xbf,0x16,0xb8,0x56,0x70,0xae,0xf5,0x59,0x3d,0xc5,0xd3,0xba, - 0x62,0x05,0x2e,0xf3,0x51,0x97,0xb0,0xa4,0xf4,0x20,0x36,0x16,0xba,0x1e,0x6f,0xc3,0x3a,0x2c,0xc3,0x20, - 0xef,0x47,0xa9,0xb2,0xc9,0x22,0x93,0xd8,0x17,0xba,0x3b,0x0f,0x46,0x1e,0x3b,0x1b,0x0d,0xdf,0xd4,0x09, - 0x40,0x26,0x33,0xa2,0xf4,0x57,0xe2,0x94,0xce,0x1b,0x9a,0x2e,0x48,0xb3,0xb9,0x78,0xc4,0x8e,0x37,0xa2, - 0x25,0xef,0xfd,0x5f,0xdc,0xd7,0x11,0xf5,0x19,0x84,0x39,0xad,0x08,0x44,0x7e,0xd4,0x64,0x10,0xe2,0xaf, - 0xe1,0x38,0x3e,0x3a,0x12,0x88,0x66,0x0c,0x7a,0xb3,0xb3,0x1a,0x15,0x0d,0x51,0x75,0x56,0x33,0x9f,0x4a, - 0x82,0x4f,0xb7,0x65,0x2b,0x66,0x38,0x1c,0xa4,0x6e,0x7b,0x24,0x98,0x5b,0xf3,0xc2,0xb6,0xe1,0xa6,0x77, - 0x3c,0x75,0xc3,0xb4,0xbd,0x28,0x31,0x0d,0x28,0x9d,0x18,0x86,0x2f,0xd6,0xf7,0xd2,0xe0,0xac,0xa4,0xff, - 0xa1,0xe6,0x68,0x63,0xcd,0x9c,0x8b,0xd6,0x2b,0xf3,0x6d,0xba,0x23,0x3a,0x43,0x36,0x66,0x4a,0x87,0xe8, - 0x76,0x93,0x57,0x9d,0x1c,0x07,0x93,0x46,0x01,0xd3,0x5b,0xf9,0x15,0xb5,0x70,0x5b,0x5c,0x97,0x22,0x1a, - 0x37,0xed,0xf7,0xed,0xa4,0x6e,0x38,0xdc,0xdd,0x86,0x17,0x75,0x3f,0x3a,0xfa,0xc3,0x3f,0x9d,0x05,0xfd, - 0x23,0xf5,0x86,0x1f,0x6f,0xf0,0xf8,0x88,0xa6,0xe9,0x65,0x74,0xa2,0x1e,0x46,0x77,0xd5,0xab,0xe8,0x9e, - 0x7a,0x41,0xef,0xaf,0xa3,0xcf,0xd5,0x93,0xe8,0x0b,0xf5,0x2c,0xfa,0xbb,0x7a,0x1a,0xfd,0x43,0x7d,0x1d, - 0xfd,0x53,0x3d,0x06,0x43,0xff,0x78,0xfc,0x62,0x12,0xdd,0xde,0x94,0x21,0xfd,0x2a,0x66,0x03,0xc3,0xf1, - 0x3d,0xf5,0x68,0xa2,0xbc,0xb1,0x17,0x8e,0x5f,0x4f,0x14,0x1d,0xf2,0xe1,0xf8,0xe9,0x64,0xa3,0x1e,0x8f, - 0x4f,0x74,0xce,0x13,0xfa,0x3a,0xa0,0xaf,0x77,0x3b,0x73,0xdd,0xd5,0xb9,0xee,0x36,0xeb,0x3b,0xd6,0xbf, - 0xc2,0x55,0xca,0x0b,0xb2,0xdf,0xa3,0xec,0x1f,0xcb,0xa7,0xb8,0x55,0xf5,0xd2,0xb4,0xcb,0x4f,0xdc,0x32, - 0x9e,0xa4,0x6d,0x7a,0x42,0x75,0xaf,0xa9,0x3a,0xef,0x0e,0x7d,0x7a,0x82,0x72,0x77,0xbc,0x3b,0xe1,0xf8, - 0x59,0x3d,0x1c,0xf5,0x90,0x9e,0x26,0x1e,0x2a,0x7b,0x25,0x05,0xbf,0x66,0x7b,0x3e,0x7c,0x92,0xee,0x3c, - 0x31,0xe5,0x91,0xd0,0xc8,0xf1,0x44,0xe7,0x78,0x46,0x39,0xb8,0xde,0xad,0x1c,0x68,0x48,0x16,0xe6,0x7b, - 0xb6,0x79,0x26,0x52,0xad,0x58,0x25,0x6b,0xb6,0xe5,0x5c,0x1f,0x8e,0xc6,0xa7,0xb3,0xc1,0xa4,0xbf,0xbe, - 0xc3,0x3e,0xb0,0xee,0xac,0x3d,0x76,0x8b,0xe5,0x05,0x94,0x0f,0x8e,0x89,0x76,0xa0,0xad,0x6e,0xac,0xf5, - 0x83,0x83,0xb5,0x18,0xca,0x7e,0xa0,0x43,0x6d,0x5b,0x42,0xe5,0x62,0x2c,0x07,0x61,0x41,0x85,0x34,0xe9, - 0x90,0x67,0x99,0xb0,0x77,0x31,0x42,0xf9,0x60,0xc3,0xad,0xa2,0xc3,0x13,0x3a,0x1a,0x5f,0x70,0xdc,0xbb, - 0x4b,0x80,0x0b,0xf6,0xcc,0xe5,0xf8,0xe5,0xa4,0x61,0xdc,0x61,0xce,0xa9,0x8c,0x75,0x79,0x04,0x7a,0xe1, - 0xa2,0x50,0x3e,0xc0,0x56,0x7f,0xfc,0xa8,0xa3,0x04,0x24,0xb5,0xa3,0x2c,0x2a,0xc2,0xac,0x4f,0x84,0x3f, - 0x65,0x7a,0xd8,0xc8,0x84,0x42,0x44,0x19,0xcd,0x09,0xf6,0xe9,0xdb,0xab,0xc6,0x37,0x68,0x44,0x3e,0x38, - 0x0e,0xe6,0x87,0x87,0xd4,0xbd,0xd7,0x4a,0xb2,0xda,0xbb,0x48,0xf4,0x76,0x0f,0x57,0x1f,0x7e,0x16,0xcd, - 0xd8,0x65,0x9e,0x15,0x8b,0xa2,0xef,0x50,0xc7,0x1c,0x6a,0x19,0xf8,0x82,0x1d,0xc6,0xaf,0xfa,0x7d,0xf8, - 0x4f,0x64,0x65,0x21,0xf8,0x5c,0x5c,0xe1,0xc6,0x62,0xaf,0xc5,0x4f,0xf3,0x87,0xfe,0x09,0x63,0x6b,0x88, - 0x8d,0x9e,0xd0,0xa9,0x7c,0x87,0xd5,0xba,0xd6,0x6b,0xbc,0x3f,0x3b,0x38,0x20,0xb0,0xc0,0xbb,0xf5,0xdd, - 0x4d,0xd5,0x12,0xb6,0xa6,0x8a,0xfb,0x89,0xee,0x23,0x22,0x2c,0xfb,0x81,0xb6,0xe2,0x5a,0x42,0x2c,0x06, - 0x3a,0xa7,0x8c,0x1e,0x8f,0x17,0x93,0x80,0xf0,0xce,0x7a,0x5d,0xb2,0x22,0xe8,0x7a,0xfd,0x35,0x64,0xcb, - 0x5f,0x1b,0xad,0x20,0x6e,0x13,0x76,0x2c,0xca,0x8f,0xa3,0xcb,0x71,0x4e,0x7b,0x70,0x22,0xf7,0xb0,0x39, - 0x36,0x5a,0x11,0xd9,0x29,0x2d,0x46,0x90,0x21,0xf2,0xf0,0x89,0xff,0x09,0x1a,0x15,0x44,0xd1,0x53,0xeb, - 0x1c,0x55,0x94,0xdd,0x2c,0x41,0x6a,0x60,0x84,0x7a,0xaf,0x12,0x90,0x5d,0x1b,0xe5,0x02,0xd9,0x45,0x52, - 0x01,0xc4,0x58,0x90,0xdb,0x3a,0x1b,0x21,0x23,0x4f,0x6a,0x07,0xad,0xf5,0x25,0x8c,0xf1,0xbe,0x6d,0xe0, - 0x13,0x1e,0x6b,0x79,0xdc,0x45,0x8b,0xc2,0x40,0x78,0x37,0x74,0xdd,0xb8,0xd3,0x6e,0xd4,0xe4,0x58,0xfb, - 0xd4,0xa6,0x66,0x84,0xa4,0xb5,0x0b,0xee,0x7c,0x68,0x1c,0x6f,0xc7,0xe3,0x62,0x5c,0x4e,0x9c,0xcb,0x0e, - 0x28,0x9b,0x05,0xb7,0xe2,0x86,0x4a,0xdb,0x26,0xc4,0xd1,0x54,0x95,0x35,0x32,0x8d,0x65,0xb7,0x3e,0xdf, - 0xb1,0x73,0x86,0x35,0xff,0x87,0x79,0x82,0xb6,0xac,0xbd,0x5d,0x12,0xe2,0x71,0xbd,0xf6,0x92,0xec,0xf0, - 0xa7,0x97,0x1e,0xcb,0x73,0x9b,0xbc,0x76,0xfd,0x8d,0x2d,0x92,0x34,0x8b,0xcb,0xe4,0xa5,0x0e,0x63,0xee, - 0xc8,0x80,0x24,0x1d,0x56,0x94,0x99,0x23,0xe2,0xe1,0xd4,0xa1,0x76,0x65,0x7d,0x25,0x17,0x7c,0xf2,0x36, - 0xe7,0xef,0x15,0x58,0xcd,0x81,0x7d,0x5e,0xaf,0xc1,0x28,0xbf,0xd5,0x59,0xae,0xd2,0x12,0xae,0x40,0xd0, - 0xb6,0x3c,0x89,0xc0,0xd3,0x78,0x97,0x66,0xa1,0x02,0xcb,0x16,0x1a,0xe9,0xe0,0x6a,0x23,0x87,0xef,0x15, - 0x96,0x77,0x6f,0x4f,0x9e,0x4c,0xeb,0x7a,0xa0,0xac,0x0f,0xe5,0x64,0x76,0xd3,0xa5,0x90,0x9b,0x62,0x5a, - 0xe8,0x94,0x3d,0x58,0x24,0x52,0x75,0x4b,0x1d,0x88,0xc4,0xdd,0xdb,0xf1,0x49,0xd7,0xdb,0x9c,0x50,0xdc, - 0xbc,0x83,0xb0,0x97,0x6f,0xee,0xa4,0x36,0xbf,0x80,0x1b,0x60,0xf9,0xc2,0x0f,0x75,0x35,0x71,0xed,0x2e, - 0x80,0x90,0xa0,0x24,0xf3,0xfd,0x41,0x0b,0xf2,0x35,0x56,0xf1,0xf7,0x30,0xd8,0x6c,0xbd,0x2e,0xfc,0x44, - 0x2a,0x6c,0x6c,0x17,0x09,0xa7,0x6d,0x8c,0xd2,0xcf,0xe0,0x34,0xf6,0xe7,0xe7,0xbe,0xb9,0xef,0xcc,0x54, - 0x13,0x6a,0x42,0xb8,0x6f,0x14,0x50,0x21,0xb2,0xab,0x05,0x24,0x61,0xac,0x1a,0xe0,0x11,0x96,0x44,0x91, - 0xa9,0x1f,0xa3,0xdb,0xeb,0xab,0xf0,0x76,0x53,0x17,0xa4,0xe7,0x76,0x49,0x4a,0x6a,0x16,0xbd,0xad,0x39, - 0xbc,0x4d,0xbb,0x0f,0xa8,0x4b,0x60,0x86,0x3f,0x9a,0x69,0xc3,0x4b,0xe7,0x0a,0xd0,0x87,0x8d,0x39,0x5c, - 0x9e,0xbb,0xae,0x87,0x65,0xb0,0x1d,0xdb,0xeb,0xd2,0xf8,0x82,0x96,0xfa,0x86,0xad,0x77,0x48,0x5f,0x6a, - 0xb0,0xa7,0xd5,0x21,0x1a,0x12,0x0b,0x03,0xd5,0x58,0xd5,0xce,0x9b,0x6c,0x94,0xdb,0x68,0x27,0xbb,0xbf, - 0xed,0x0b,0xa1,0xb9,0xd0,0xb5,0xba,0x99,0x5b,0xd5,0x0e,0xd9,0x41,0xa3,0xb2,0x96,0xe1,0x00,0x73,0x7b, - 0x6e,0x08,0x93,0xcc,0xb1,0xd5,0x94,0xa0,0x76,0xd9,0x83,0xc3,0x93,0x40,0xee,0xa7,0xa7,0x90,0x63,0x42, - 0x41,0xd2,0xef,0xe8,0x93,0x6a,0x77,0xa7,0x21,0xdb,0x6a,0x9b,0x57,0x8a,0x88,0xb0,0xe1,0x12,0x9c,0x26, - 0x6f,0xb0,0xcf,0x85,0x7c,0x6f,0x1f,0x55,0x37,0x42,0x54,0xb8,0x06,0x0d,0xad,0xc9,0x70,0xed,0x1b,0x2e, - 0x3b,0x9d,0x22,0xb7,0x8b,0x10,0x23,0xc8,0x4e,0xd0,0xdb,0x89,0x5b,0x81,0x2f,0x36,0xea,0x76,0x96,0x24, - 0x4b,0x51,0x4d,0xde,0x1e,0x9d,0x16,0x63,0x36,0x8f,0xfa,0xbd,0x1a,0x35,0xd1,0x46,0xab,0xf1,0xd7,0xd6, - 0x89,0x53,0x99,0x58,0x26,0x57,0xcd,0x79,0x60,0x01,0x99,0x33,0x19,0x02,0xf8,0xce,0x6c,0xb0,0x67,0x8f, - 0x7d,0x62,0x7f,0x61,0xc5,0x62,0xbe,0xb2,0x5f,0xfe,0x56,0xff,0xd5,0x6d,0x7a,0x45,0xa4,0x7a,0x0a,0x79, - 0xbb,0x0c,0xe1,0x47,0x54,0x4c,0xfb,0xdd,0xed,0x73,0x6b,0x11,0x90,0xc9,0xec,0xcd,0x1d,0x59,0x63,0x0d, - 0x00,0xf4,0x55,0x0b,0xb8,0x4b,0xf6,0x00,0xfe,0x63,0xfb,0x9c,0xf8,0x78,0xf9,0xe6,0xe5,0x82,0xa9,0xa6, - 0xb1,0xf9,0x3f,0x5e,0x89,0x7b,0xd1,0x60,0xaa,0x90,0x79,0xf9,0xc8,0x58,0xcd,0xa5,0x7b,0x9d,0xbf,0x4c, - 0xaa,0x8e,0xdd,0x87,0xd5,0xe0,0xf9,0xd6,0x6f,0xf5,0xb4,0x57,0xdc,0x58,0x13,0x23,0x7d,0xac,0xd1,0x66, - 0xee,0x8e,0xf2,0x9f,0xda,0x89,0x66,0x31,0xd3,0x19,0x8d,0x0c,0x3f,0xd8,0x0b,0x9d,0xc7,0xcd,0xde,0xdd, - 0xa8,0x3d,0x97,0xb9,0x9b,0x06,0xb7,0x7e,0xb0,0x6e,0x9b,0xab,0x59,0xa4,0xbb,0x7e,0x87,0x34,0x40,0xf6, - 0x4e,0x84,0xfd,0xc1,0xd6,0x3a,0x4b,0xec,0xae,0xaa,0xbb,0x17,0x3b,0x6e,0x18,0x9a,0x5b,0xde,0x05,0xf7, - 0x0f,0x2d,0xaf,0xd9,0x3c,0xdb,0xa5,0x5b,0xc0,0xfe,0xa1,0x4a,0x5a,0x1b,0x69,0xbb,0xae,0x06,0xcc,0x7f, - 0xa8,0xa6,0xc6,0x5e,0x6a,0xd5,0x03,0xe5,0x32,0xed,0xd5,0xa9,0xa1,0x6b,0x44,0xcc,0x55,0x6a,0x6b,0x82, - 0x81,0xb7,0x96,0xe3,0x6b,0x68,0xd0,0x42,0x7f,0x03,0x39,0x72,0x21,0xcf,0x64,0xd9,0x18,0x85,0xd3,0x09, - 0x0c,0x37,0xc2,0xac,0xd5,0x58,0x5a,0x7e,0xed,0x52,0x62,0x1d,0x2e,0x71,0x60,0x34,0x55,0xf8,0x0e,0xca, - 0xd4,0x0d,0x35,0x48,0xb8,0x76,0xad,0xdd,0x62,0xb0,0xc4,0xf0,0x86,0x9a,0xe4,0xdf,0xc2,0xbe,0xd3,0xa8, - 0x26,0xa9,0x9a,0x14,0x50,0xa2,0xe3,0xee,0x36,0xc9,0xfe,0xa9,0x65,0x19,0xa6,0x62,0x30,0xc4,0xaa,0x98, - 0x26,0x22,0xf1,0x1e,0x2b,0x10,0xb8,0x6d,0x38,0xda,0xa9,0xe6,0x92,0x14,0x91,0xc2,0x89,0x6b,0x6a,0xe4, - 0xdb,0x18,0x36,0x70,0x4b,0x4f,0x6c,0xda,0xa8,0x6e,0x15,0x4d,0x0d,0x1f,0xb0,0xaa,0xad,0xa7,0xff,0x23, - 0xf4,0x02,0xf6,0x52,0xe2,0x9b,0xc0,0x58,0x70,0x38,0xce,0xc3,0x5f,0xe9,0xe1,0xc3,0x5c,0xd4,0x84,0x68, - 0xe1,0x08,0x05,0x2b,0x4e,0x0e,0x57,0xad,0x79,0x44,0xc1,0x36,0x0c,0xb8,0x21,0xa5,0xa3,0x4c,0x41,0xc7, - 0x59,0x7c,0x15,0x1c,0xf9,0xff,0x11,0x8e,0x4f,0x6f,0x4e,0x0f,0xcf,0xd6,0x83,0x49,0x3f,0x38,0xba,0xa8, - 0xb5,0xcd,0xa7,0xd0,0x7c,0x28,0xc1,0xa7,0x96,0xad,0x2b,0x67,0x9e,0x2b,0x51,0xf7,0x28,0xc7,0x53,0xc4, - 0xfb,0x59,0x69,0xeb,0x6e,0xff,0x6e,0x00,0x67,0x01,0x9a,0xe2,0xb4,0xeb,0xc9,0xbd,0x58,0x50,0x2f,0xbc, - 0x22,0xbe,0xd1,0x42,0x3c,0x3d,0x4b,0x44,0x78,0xd6,0x89,0x42,0x8d,0x87,0xe2,0x1e,0x41,0xd7,0xd2,0x80, - 0x35,0x58,0xfc,0x39,0x47,0x33,0x83,0x16,0xbb,0x3a,0xea,0x3d,0x81,0x42,0x3b,0x44,0x6e,0x62,0xe9,0x9d, - 0xcc,0x7a,0xac,0xe2,0xae,0x7d,0x18,0x2e,0xa3,0xba,0xc0,0x70,0x1e,0x2d,0x75,0xd8,0x14,0xee,0xdb,0xb2, - 0x75,0xfc,0x21,0x2a,0xb9,0x88,0xe8,0x97,0xed,0x6b,0xcc,0x85,0x9e,0x48,0x62,0xe8,0x7c,0x33,0x4c,0x67, - 0xe7,0xd1,0x30,0x17,0x6a,0x0e,0x45,0xa3,0x51,0x6c,0x4d,0xa2,0x57,0x6a,0x1e,0x84,0x71,0xcd,0xfa,0x35, - 0x17,0x4b,0x2b,0xda,0x36,0x97,0xab,0x29,0xf8,0xad,0x11,0x6f,0x73,0x46,0x6d,0x20,0x96,0x5a,0x0b,0x28, - 0x4a,0x46,0x85,0xb6,0x30,0x43,0xbc,0xf4,0x56,0x5b,0x76,0xc8,0x5b,0x18,0xc2,0x6c,0x30,0x77,0x3b,0xb9, - 0x8d,0x25,0x0a,0x56,0xa5,0x36,0x9f,0x95,0x40,0x13,0x20,0x8c,0xe8,0x4f,0x47,0x09,0xe2,0x8e,0xc6,0x59, - 0x5d,0x42,0x07,0x9c,0x9f,0x86,0xd3,0x76,0x9f,0xb6,0x20,0xb5,0xa6,0x10,0xb5,0xff,0xa1,0xb6,0x9a,0xe1, - 0xe1,0xe7,0xc3,0xf8,0xf0,0xb0,0xf7,0xe0,0x78,0x18,0x40,0xf5,0xcf,0x51,0x49,0x8d,0xfb,0x9f,0x33,0x1f, - 0xbe,0x67,0x55,0x6b,0x3c,0x7d,0xfd,0x92,0x6a,0xd4,0xa6,0xdd,0x21,0xe4,0xb0,0xf4,0x2b,0x2d,0x33,0x9d, - 0xd8,0x68,0x74,0x35,0x54,0x64,0x4a,0x73,0x9d,0xed,0x9b,0x6c,0x40,0xb1,0x9e,0x70,0xc5,0x52,0x86,0xf8, - 0xaa,0xdc,0x0d,0xaf,0xab,0x3f,0x0f,0xaf,0x5a,0xa7,0x65,0xe1,0x80,0x6c,0x43,0x59,0xaa,0xb2,0xca,0x52, - 0x79,0x6d,0x5f,0xbf,0x0d,0x8b,0xd4,0x7d,0x42,0x1d,0x85,0xf6,0x03,0xdd,0x9c,0xf6,0x26,0xce,0x6e,0x5d, - 0x1b,0x6c,0xcd,0xf7,0x09,0xf4,0x7f,0x79,0xbe,0x93,0x96,0x0a,0x30,0xc4,0x52,0xba,0xbb,0x02,0xad,0x01, - 0x4d,0xa1,0xee,0x69,0x81,0x23,0x84,0xbb,0xa5,0x77,0x53,0x07,0xa5,0xc9,0x46,0xd9,0x76,0x38,0x89,0x31, - 0x17,0x6a,0x1f,0x0c,0x1d,0xd8,0xcc,0x68,0xc7,0x6d,0x2f,0x5b,0xb2,0x7b,0xd9,0x80,0x67,0xf4,0x91,0xd0, - 0xb9,0x58,0xf9,0x5f,0x5d,0x2c,0x97,0xde,0x4f,0xe5,0xcc,0xfa,0xc0,0xca,0xa0,0x37,0xb9,0x2a,0x5a,0x7c, - 0x48,0x7b,0x94,0xf5,0xf9,0x3f,0xda,0x3e,0x52,0x12,0x51,0xef,0xab,0x67,0xd7,0x5e,0xd7,0x72,0xe1,0x5d, - 0x53,0x0d,0x89,0x40,0xe8,0x79,0xed,0x3d,0x38,0xed,0x9c,0x60,0x6b,0x75,0x24,0xe6,0xbb,0x5b,0x60,0xf1, - 0xc5,0xb0,0xd4,0x60,0x11,0x8f,0x4b,0x17,0x2c,0xca,0xfe,0x17,0xb5,0xc6,0xde,0xa8,0x96,0x8a,0xa5,0xac, - 0x78,0x7d,0x12,0xa8,0xdc,0xd7,0x38,0xc3,0x01,0x97,0xa9,0x50,0x1c,0xd4,0xb6,0x85,0x87,0x98,0x8e,0xbc, - 0x94,0x3b,0x2c,0xe7,0x7c,0x0b,0x86,0x9b,0xbd,0x76,0x95,0x96,0xc7,0x90,0x4c,0x6e,0xf5,0xf7,0xee,0xb0, - 0xd0,0xfd,0x65,0xff,0x08,0x75,0x7f,0x8b,0xfe,0x5d,0x0b,0xc6,0xa9,0xed,0xd7,0x54,0x77,0x2c,0xfd,0x54, - 0x38,0x56,0x89,0xed,0xb9,0x09,0x34,0x93,0xb6,0x67,0xba,0x8d,0x7a,0x1d,0x53,0x69,0xb1,0x50,0xdb,0xea, - 0xf5,0xbd,0x61,0xae,0x7b,0x5d,0xc0,0xc6,0xa8,0xee,0x75,0xde,0xbf,0x67,0xae,0xd8,0x5a,0xd8,0xad,0x08, - 0x6a,0xcc,0xd6,0x04,0x50,0x96,0x26,0xe1,0x8a,0x67,0xb2,0xc5,0xe4,0x57,0xbb,0x74,0xd4,0x65,0x83,0xe1, - 0xc0,0xf9,0xd8,0x24,0x24,0xad,0x2a,0xe9,0x6b,0x43,0x77,0xaa,0x83,0x50,0xb4,0xbc,0x9f,0x43,0x6d,0x13, - 0x82,0x83,0xfc,0xb1,0x55,0x59,0xb9,0xbb,0x32,0x76,0x90,0xd9,0x51,0x4b,0x5b,0x42,0xb3,0xad,0xcd,0xf5, - 0x29,0x95,0x5c,0x0e,0x56,0x55,0xba,0x18,0x88,0x4f,0xc4,0x9d,0xbd,0xed,0x1a,0x7c,0x93,0x49,0xf8,0xc8, - 0xe8,0x5b,0x6c,0xc2,0xce,0x49,0xd8,0x59,0x69,0x63,0x00,0xdb,0xb5,0x75,0x4e,0xc6,0x5f,0xae,0x6c,0xc7, - 0xa4,0x74,0x0f,0x62,0x6b,0x6e,0x44,0xd3,0x24,0x7d,0x6f,0xdb,0xef,0x20,0x48,0x0c,0xb1,0x0a,0x2f,0x83, - 0x29,0x01,0x2c,0x90,0x36,0x51,0xe9,0x65,0x00,0x79,0x27,0x8c,0x4d,0xf9,0x12,0x41,0x88,0x59,0x7c,0x87, - 0x4b,0x30,0xf7,0xe3,0x36,0x97,0x80,0x74,0x58,0x17,0xf4,0xbd,0xb3,0x33,0x44,0x4a,0x30,0x07,0xec,0xb6, - 0x00,0x77,0xbc,0xb2,0xf8,0x0b,0xfe,0x9c,0x3e,0x98,0x91,0xc5,0x84,0x1d,0xda,0x95,0x7e,0x0c,0xa5,0x63, - 0xb5,0xd0,0x7c,0xf3,0x96,0x8c,0xef,0x6c,0xb6,0x85,0x0a,0x98,0xfb,0xb0,0x1d,0xdf,0x51,0xad,0x28,0x2c, - 0x4a,0x8d,0xee,0x75,0xc7,0xd6,0x9c,0xd6,0x07,0x41,0xfb,0x28,0xdc,0x29,0xb1,0x51,0xd9,0xee,0xb3,0xb1, - 0xf8,0x9f,0x38,0x1b,0xc5,0x45,0x61,0x62,0xcf,0xc6,0x02,0x26,0xfe,0xcd,0x79,0x99,0x75,0x92,0x26,0xbb, - 0x70,0xfa,0xc9,0x6e,0x9c,0x7e,0x32,0xd1,0x86,0x15,0x2e,0xda,0xca,0xb7,0xcc,0x94,0x8c,0xfd,0xc3,0x68, - 0x4b,0x97,0x1e,0x86,0xda,0x23,0x89,0xfe,0x8c,0x4b,0x7e,0x18,0x16,0x71,0xd4,0x12,0x78,0x87,0xe0,0xda, - 0xf8,0x38,0x73,0xde,0x11,0x97,0x94,0x5e,0x38,0xea,0xaa,0x2f,0x05,0x39,0xe0,0xaa,0x98,0x2f,0x65,0x1f, - 0x30,0x5f,0xca,0xc4,0x7c,0x49,0xca,0x04,0xaa,0xe3,0xfb,0xc9,0x44,0xb7,0xc6,0x56,0x4b,0x1a,0x1e,0x11, - 0xdc,0x9e,0x23,0x97,0xb6,0x10,0x8f,0x2b,0x51,0xf8,0x08,0xda,0x69,0xc8,0x14,0x76,0x22,0x9d,0x1d,0x15, - 0x36,0xb0,0x44,0xbb,0xa6,0x4e,0x84,0xf3,0x97,0x2a,0xda,0x81,0x6c,0xba,0xba,0xbe,0x1b,0xd5,0x48,0xcb, - 0xff,0x9f,0x22,0x9a,0xf6,0x6d,0xd0,0x0e,0x34,0xd3,0x91,0xad,0x46,0x32,0xee,0x04,0x7e,0x14,0xc5,0x64, - 0x9f,0x88,0x62,0x1a,0x95,0x7e,0x14,0xc1,0x48,0xee,0x8f,0xa3,0x97,0x96,0x2c,0xf7,0xff,0x75,0xe4,0x92, - 0x7d,0x1c,0xb9,0x74,0xbb,0x56,0xfa,0xff,0x91,0x4b,0x07,0x72,0xc9,0x2c,0x72,0xd1,0x9a,0x20,0x62,0x28, - 0xa0,0x45,0x40,0x29,0x11,0x7c,0xce,0xc4,0xaa,0x1f,0x03,0x9a,0xe7,0xf8,0x3a,0x4e,0x17,0xf1,0x79,0xba, - 0x48,0xf1,0x3d,0xba,0x6d,0x9e,0x97,0xe1,0xbb,0xc6,0x4d,0x60,0x78,0x86,0xa5,0x61,0x8d,0xde,0xc5,0xc2, - 0x8d,0xdb,0x0b,0x5f,0x0c,0x97,0x11,0x41,0xe1,0x35,0xc1,0x3e,0x25,0x1d,0x1c,0x68,0x80,0xbb,0x34,0x29, - 0xc6,0xc4,0x72,0xe0,0x05,0x3c,0xa2,0xca,0x54,0x23,0x21,0x99,0xba,0xfa,0xfb,0x8e,0x4a,0xd7,0xbd,0xf5, - 0xf6,0x45,0x7f,0xf5,0x96,0xa0,0x34,0xdc,0x25,0x70,0x45,0x16,0x38,0xb1,0xc9,0xa2,0xcb,0x1d,0x55,0x66, - 0x8d,0x2a,0xab,0xed,0xfa,0xb6,0xef,0xc7,0xdc,0x9b,0x9f,0xff,0x11,0xf0,0xd3,0x7a,0xab,0xc6,0x22,0xbb, - 0xe6,0xa7,0x88,0x6d,0x21,0x2e,0xd4,0x9a,0x7d,0xb5,0x69,0xf5,0xca,0xe5,0x55,0x36,0x9b,0xda,0x2a,0xe2, - 0xc3,0x63,0x9c,0xfe,0xb9,0x41,0x6e,0x31,0x38,0x69,0x17,0x5b,0x96,0x5a,0x06,0x27,0x75,0x87,0x99,0x82, - 0x2d,0xd3,0x5c,0x7e,0x73,0x98,0xb9,0xc3,0x9e,0xe5,0x18,0xa7,0xb5,0x4e,0xcb,0xb7,0xc6,0xa9,0x32,0x3b, - 0xd2,0xe2,0xcf,0x8c,0x34,0xf9,0xf3,0x23,0xd5,0xc8,0xb2,0xd9,0xd7,0x82,0x99,0xa7,0x44,0x59,0xbd,0xdf, - 0x62,0x8b,0x77,0xfc,0xf4,0x5e,0xcd,0xfe,0x77,0x61,0xac,0xe6,0x89,0x8d,0xcd,0xde,0xcc,0x81,0xae,0x0e, - 0x6e,0xf7,0x53,0xc7,0xd1,0xb1,0xf7,0xfe,0x77,0xc7,0x91,0x7d,0x7c,0x1c,0xb0,0xb9,0x7e,0x9b,0x66,0xfe, - 0x39,0x1e,0xad,0xf1,0x9f,0xef,0x61,0x9f,0x73,0x84,0x86,0xa9,0x8e,0xea,0xce,0x8e,0xc3,0x2e,0xeb,0xf8, - 0x63,0xfe,0x8d,0xb8,0x59,0xbc,0xd1,0x5a,0x3b,0xd4,0x5f,0xab,0x3a,0x20,0x46,0x51,0xcf,0x41,0x0a,0xbd, - 0xac,0x0a,0x2a,0x7c,0x41,0x98,0x72,0x58,0x88,0x7d,0x54,0x31,0xd0,0xd1,0xc4,0x81,0x19,0x35,0xae,0x8b, - 0xbc,0x7f,0x0c,0xee,0x0d,0xee,0x79,0xaa,0xcb,0x54,0x4b,0x22,0x3d,0x1f,0x1c,0xe8,0x88,0xcf,0x3f,0x23, - 0x06,0x4d,0xfd,0x3c,0x58,0x95,0x89,0xff,0x9c,0x10,0xb3,0x56,0x1f,0xb2,0xd6,0x2e,0xb7,0x49,0x16,0xde, - 0x72,0x54,0xcd,0xd0,0x7b,0x59,0xc5,0x69,0x51,0x7a,0xaa,0x7c,0x57,0x56,0xc9,0xd5,0xd3,0xc7,0x94,0xc2, - 0x4f,0xbd,0xa7,0x8f,0x3d,0x35,0x4f,0x8b,0xab,0x9b,0xb8,0x48,0x7e,0x96,0xbe,0x84,0xde,0xd7,0x3a,0xa1, - 0xa7,0x7b,0x17,0xf6,0x3c,0x35,0xcd,0x97,0xef,0x24,0x72,0x86,0xf7,0xc8,0x3c,0xf6,0xfe,0xef,0xff,0xd3, - 0xbb,0x7b,0x7c,0xf2,0x8f,0xde,0xf3,0xb8,0x78,0xd3,0xbb,0x8e,0xb3,0xde,0x8f,0x49,0x56,0xde,0xe4,0xab, - 0x19,0x6d,0xab,0x45,0x1e,0xc3,0xe3,0x56,0xe8,0xfd,0xb0,0x48,0x60,0x38,0xc8,0xd1,0x0c,0x7a,0x3a,0xb5, - 0x27,0x13,0xa5,0x43,0xbe,0x0f,0x06,0x03,0x4f,0xf1,0x4a,0x7d,0xc5,0x41,0x37,0x42,0xef,0x21,0x5e,0x1a, - 0x69,0x2f,0xe3,0x6b,0xae,0x4d,0x7e,0xb9,0xc4,0x4d,0x3a,0x4f,0x69,0x60,0xd5,0xaa,0x0c,0x6f,0xe3,0x29, - 0x1c,0x54,0x2e,0xf3,0x34,0xab,0xec,0xa0,0x1f,0xfe,0x80,0x8e,0xcf,0xd2,0x32,0x3e,0xa7,0x33,0x23,0xf4, - 0x1e,0xeb,0x27,0xa2,0x16,0xd8,0xdb,0x45,0x9e,0x21,0x3a,0x9d,0xcd,0xfe,0x4b,0xfa,0x75,0xba,0xa3,0x80, - 0x4a,0x11,0x68,0xc4,0x7b,0x3a,0xc3,0xa5,0x6d,0x96,0xbf,0x7c,0xc9,0x33,0x48,0x7f,0x7b,0x30,0x0d,0x9d, - 0xe7,0xb4,0x68,0x34,0xb7,0xd3,0x38,0x43,0x00,0x09,0x98,0x5a,0x50,0xe1,0x97,0xf4,0xda,0x9b,0x9a,0x77, - 0x4c,0x60,0x96,0x11,0x70,0x7d,0x4d,0x87,0x27,0x3e,0xcb,0x6f,0xaf,0xca,0x7b,0xfa,0x83,0xcd,0x41,0xfd, - 0x7a,0x96,0x97,0x3c,0xcf,0xe6,0x9d,0xa6,0xad,0xac,0xb8,0x67,0x3a,0x8f,0xee,0x9d,0x7d,0x43,0x6c,0x8e, - 0x52,0x4f,0x45,0x15,0x9f,0xbf,0xb2,0xab,0x4e,0x29,0x9e,0xd2,0x03,0x7c,0x24,0x01,0x5e,0x7a,0xa5,0x4e, - 0xa6,0xa3,0xf4,0x65,0x95,0x2c,0xcb,0x57,0xc5,0x0a,0x99,0x93,0xaa,0x07,0xd1,0x3e,0xa2,0xcc,0xbf,0xa3, - 0x31,0x15,0xac,0xd7,0x5f,0x22,0x43,0x9d,0xf5,0x6b,0x28,0x9b,0xb6,0xf3,0xc2,0xb5,0xda,0x75,0x3a,0x5b, - 0x21,0x88,0x04,0xcd,0x2d,0xd1,0x1d,0x08,0x1e,0xd1,0xe8,0xc9,0x2b,0x9d,0x86,0xbe,0x5c,0x25,0x26,0x91, - 0x1e,0x25,0xe1,0x29,0xae,0x14,0x32,0xc2,0x14,0x06,0x58,0x68,0x5a,0x61,0xae,0x12,0x57,0x3d,0x7c,0xee, - 0x99,0x2a,0x7b,0xda,0x84,0xa4,0x17,0x67,0xdc,0x3e,0xca,0xf4,0xea,0x69,0x1b,0x48,0x6d,0xcf,0xe2,0xea, - 0x59,0x0e,0x58,0xa1,0x87,0xb4,0x22,0x60,0xec,0x1d,0xd1,0x04,0x66,0x17,0xfc,0xac,0xb3,0x10,0x92,0xae, - 0x18,0xd6,0xbf,0xa1,0x1a,0x16,0x1d,0xf9,0x7a,0xf3,0x22,0xbf,0xea,0x2d,0x74,0xbe,0x66,0xa9,0x97,0x49, - 0x5c,0x4c,0x2f,0x31,0x0d,0xf8,0xf5,0xd4,0x55,0x8e,0x54,0x3d,0xaa,0xe7,0xfc,0xe2,0x6d,0x9c,0xe5,0x74, - 0x67,0xa2,0x5e,0xd4,0x7a,0x5d,0xea,0x75,0xe6,0x7b,0x86,0xa4,0xe2,0x99,0x72,0x41,0xda,0x7b,0x92,0x01, - 0x12,0x7b,0x92,0xd6,0xe3,0xc4,0x46,0x8e,0x6f,0x39,0xd7,0xc3,0xc5,0x22,0xbf,0x29,0x65,0xf1,0xb4,0x25, - 0xb3,0x33,0x3d,0x32,0xa4,0x77,0xf9,0xaa,0xe8,0xcd,0x92,0xeb,0x74,0x9a,0x00,0xfa,0x80,0x8a,0x7b,0x82, - 0x1e,0xb4,0x1f,0x16,0x2e,0xde,0xd8,0x9f,0xbd,0xe5,0xaa,0x58,0xe6,0x65,0x52,0x0e,0x7a,0xaf,0x2e,0x13, - 0x93,0xbb,0x99,0x85,0x6a,0xd1,0x84,0x21,0xd5,0x40,0xef,0x97,0x55,0xb5,0x0c,0x8f,0x8e,0x4e,0xbe,0xbc, - 0x3b,0x38,0xf9,0xfb,0x3f,0x07,0x27,0x83,0xcf,0x8f,0x7a,0x37,0x97,0x49,0x86,0xf6,0x7b,0xc0,0x2d,0x16, - 0x76,0xd1,0x8b,0xb4,0xa2,0xaa,0x99,0xb4,0xa9,0x7a,0xf9,0x7c,0xde,0x8b,0xcb,0x5e,0x99,0xc3,0xb3,0x45, - 0xd9,0xd3,0x5b,0x15,0x9d,0x4b,0xd0,0x8a,0x69,0x36,0x99,0x29,0x7c,0xa6,0x02,0x94,0xc8,0x16,0xda,0xc9, - 0x14,0xa9,0xb8,0xce,0x8c,0xb3,0x77,0x84,0x6f,0xde,0x0d,0x7a,0xbf,0x51,0x63,0xd8,0x87,0xf1,0x82,0x5e, - 0xcb,0x9e,0xa5,0xfb,0x7a,0x82,0xa1,0x7b,0x60,0x4d,0xd0,0xdb,0xf3,0x77,0x3d,0xa8,0x68,0x01,0x33,0x55, - 0x97,0xcd,0x69,0xee,0xe9,0x40,0x40,0xab,0x8c,0xb8,0x53,0xfe,0xfa,0xec,0xc9,0xe3,0xde,0x02,0xf8,0xaf, - 0xec,0xad,0x96,0x04,0x73,0x2e,0x32,0x31,0x0b,0xe5,0xf6,0xba,0x91,0x43,0x16,0x4a,0x2f,0x79,0xd7,0xec, - 0xd3,0x6c,0xf0,0x12,0xe5,0x37,0x59,0x0f,0x28,0xa9,0x57,0xb0,0x9f,0xa2,0x41,0x4f,0x6f,0x0d,0x0e,0x3f, - 0xc5,0xfd,0x00,0x02,0x52,0x04,0x32,0x25,0xa1,0xdc,0x62,0x46,0x83,0x9e,0xd1,0x61,0x5a,0xd0,0x97,0xf6, - 0xf2,0x9d,0x27,0x04,0x16,0xe8,0x68,0x99,0xce,0x04,0x6f,0x79,0xca,0x14,0xa3,0x2d,0xa7,0x9f,0x08,0xbf, - 0x5c,0x4e,0x97,0xa1,0xf7,0x13,0x35,0xf2,0xf8,0xdb,0x47,0x3f,0xc8,0xbb,0x06,0xac,0x55,0x95,0x5f,0xc1, - 0x41,0x10,0xf6,0x38,0x4d,0x7b,0x99,0x5e,0x64,0x25,0x76,0xe1,0xd3,0x1f,0x7a,0x3a,0x92,0x75,0x37,0x30, - 0xc9,0x12,0x10,0x51,0x70,0x4e,0xd3,0x82,0x45,0xa1,0x09,0xa5,0x8c,0x6f,0x92,0x64,0xa9,0x17,0x02,0x33, - 0xbb,0x40,0x79,0x00,0x06,0x0c,0x29,0x08,0x4c,0x68,0xdf,0xd3,0xdb,0x1d,0x82,0x92,0x59,0x0e,0x6c,0x4f, - 0x08,0x78,0xa9,0x9b,0x21,0x2c,0x6c,0x9b,0xa4,0x11,0xad,0xce,0x09,0x05,0x5c,0xc5,0xe5,0x1b,0x1a,0x17, - 0x3f,0xf7,0xf0,0xe2,0xa9,0x0b,0x3a,0x74,0x69,0xc9,0x69,0x7f,0xcb,0x83,0xa7,0x2e,0x09,0x85,0x8a,0x55, - 0xdb,0xb7,0xfa,0xa9,0x4e,0xfb,0xa1,0xf6,0xc2,0x4a,0x78,0x55,0x1b,0xb2,0x51,0x4d,0x53,0xdb,0xd2,0xc6, - 0x9e,0x92,0xee,0x66,0x36,0x07,0xa5,0xdd,0xca,0xf6,0xe4,0x14,0x9a,0x01,0x68,0x39,0x5b,0xd8,0x13,0xe6, - 0x55,0x11,0x2f,0xb7,0xce,0xe0,0x4f,0x3b,0x84,0x93,0xff,0xde,0x19,0xfc,0x84,0x36,0x5e,0x7e,0x91,0x64, - 0xe7,0x8b,0xf4,0x4d,0xef,0x22,0xa1,0x95,0xa1,0xdd,0x73,0x9e,0xbc,0x4f,0x2f,0x88,0x5e,0x00,0x02,0x9c, - 0x51,0x86,0x6b,0x3e,0xb0,0x2c,0xe0,0x24,0xdb,0xc7,0xf2,0xab,0x3c,0x01,0xdc,0x24,0x59,0xe7,0xd1,0xfc, - 0x95,0xad,0x2f,0x5f,0x96,0x8b,0x38,0xce,0xfe,0xd2,0x29,0xfd,0x53,0x5a,0x11,0xf5,0x32,0xbd,0x8c,0xdf, - 0x24,0x8b,0x4f,0x3f,0xaa,0x9b,0xa5,0xf4,0x79,0xfd,0x92,0x3a,0xb1,0x84,0x2d,0xe9,0xac,0x7d,0x6a,0xa7, - 0xd4,0xc9,0x8b,0xe4,0x3a,0x27,0x62,0x2b,0xeb,0x3e,0xb9,0xe3,0x39,0x1d,0x38,0x79,0xb6,0x7d,0x70,0x7f, - 0x47,0x1f,0x2f,0x12,0x4c,0x57,0x52,0x68,0xa7,0xb2,0x04,0x29,0x6f,0x50,0x4f,0xfb,0x00,0xff,0xb9,0xce, - 0x41,0x99,0x17,0x79,0x81,0x4c,0xcd,0x43,0xfc,0x7b,0xf4,0x04,0x35,0x49,0x57,0x3e,0xe5,0x18,0xff,0x76, - 0x95,0xce,0xd2,0x8b,0x64,0xc7,0x31,0x4e,0x47,0x00,0xce,0xcb,0x04,0x0b,0x3a,0x4b,0xde,0x27,0x8b,0x39, - 0xd0,0xa6,0x3e,0xab,0x93,0xb4,0xda,0x3a,0xcb,0x5f,0x49,0x5e,0x73,0x88,0x27,0xc9,0x82,0x0d,0x70,0x13, - 0xaa,0x27,0xfb,0x73,0xa7,0xf9,0xeb,0x59,0xfb,0x34,0x7f,0xc6,0xb0,0xd0,0xa3,0xad,0xd0,0xbb,0xce,0xe9, - 0x54,0xa9,0x28,0x4f,0x7d,0x98,0x27,0x49,0x7d,0x8a,0x5f,0x37,0xa6,0x2a,0x81,0x37,0x15,0xe2,0xce,0x5b, - 0xe7,0xf9,0x57,0x45,0x92,0xcc,0x88,0x98,0x2e,0xe2,0x78,0x86,0xb3,0x1a,0x4c,0x81,0xbc,0xb5,0x4f,0xf5, - 0xdd,0x39,0xa9,0x3f,0x97,0xc4,0x9f,0x65,0xe8,0xd7,0x79,0x5c,0x12,0x06,0x02,0xd8,0xcb,0x39,0x9f,0x74, - 0x1f,0xf3,0xbf,0xe7,0x09,0x2f,0x6f,0xe3,0x98,0xff,0x2a,0xb9,0x49,0xa0,0xad,0xbb,0xf3,0xa0,0xaf,0x17, - 0xdf,0xae,0x9c,0x03,0x0f,0xee,0x3e,0x6b,0x1d,0xf5,0x0f,0xdd,0xc3,0x87,0x96,0x42,0x80,0x9a,0xf7,0x5c, - 0x9d,0xed,0x92,0xb3,0x3e,0x8f,0xe3,0x37,0x55,0xef,0x12,0x58,0x8f,0x76,0xf7,0x22,0x7d,0x4d,0x87,0xd9, - 0x15,0xcf,0xab,0x1c,0xfe,0xf6,0x94,0x4d,0x13,0x0c,0x33,0x9e,0xf3,0x37,0xda,0xba,0x44,0x66,0xd0,0x9a, - 0x64,0x71,0x5c,0x30,0x90,0xf4,0x80,0x99,0xec,0x01,0x94,0x08,0x3c,0xa3,0x2a,0x82,0x9d,0x3a,0xd5,0x9e, - 0xbc,0x70,0x40,0xda,0x7b,0xdc,0x2c,0x45,0x13,0x49,0x59,0xce,0x93,0x8c,0x50,0x49,0x81,0xdd,0x91,0xc6, - 0x9d,0x34,0x00,0x7d,0xa7,0x96,0x5f,0xbb,0x3d,0xbb,0x4c,0xce,0xb1,0x1b,0xaf,0x30,0x98,0x41,0xef,0xa5, - 0x8c,0x57,0xfa,0x85,0x63,0x9a,0x90,0x69,0x8a,0xbe,0xf2,0x38,0xdd,0x3e,0xd0,0xf9,0x8f,0xe0,0xa8,0xef, - 0x53,0x0d,0xea,0xb2,0xad,0xcf,0x93,0xeb,0x24,0xa5,0xe3,0x79,0x06,0x00,0xea,0xfd,0x2b,0xe9,0xbd,0xa1, - 0x93,0xdb,0xad,0x2d,0xcf,0xdf,0xb8,0xd3,0x4a,0x47,0x0c,0x41,0x26,0xa0,0x34,0xe9,0x35,0xa6,0x9e,0xce, - 0xa2,0x25,0xc6,0x34,0x2b,0x56,0x6f,0x30,0x1d,0xc4,0xd6,0xa2,0xeb,0x33,0x21,0x00,0x62,0xa0,0x01,0x9a, - 0xc4,0xf6,0xf9,0xef,0xac,0x31,0x30,0x21,0x9f,0xe0,0x1a,0x3d,0x38,0xf9,0x64,0xf9,0x74,0xde,0xed,0x25, - 0x40,0xe5,0x34,0x45,0x09,0x6d,0xf3,0x16,0x11,0xf0,0xf3,0x6a,0xd1,0xbb,0x4c,0x19,0x33,0xd1,0x31,0x8f, - 0x19,0x61,0x84,0x46,0xd9,0x6e,0xe2,0xe9,0x65,0x75,0x93,0x83,0x12,0x48,0x69,0x6a,0x92,0x1a,0x97,0x27, - 0x94,0x93,0x63,0x1a,0xae,0x78,0x5a,0x7b,0x39,0xed,0x30,0x20,0x10,0x9e,0x8e,0x72,0x27,0x5d,0xf0,0x8b, - 0xad,0xd0,0x50,0x06,0xdf,0x24,0xe7,0xc5,0x8a,0x0e,0x90,0x9a,0x3a,0xb8,0x6c,0x50,0x07,0x34,0xa7,0x0c, - 0x60,0x7c,0x42,0xd3,0xb1,0x49,0x53,0x96,0xdc,0xa4,0xaf,0xdf,0x03,0xe6,0xe2,0x6c,0x6b,0x98,0x83,0xde, - 0x2f,0x04,0x80,0x54,0x28,0x7d,0x9d,0x31,0xec,0xde,0x10,0x81,0x45,0xc3,0x76,0xd6,0x0a,0xc5,0xa0,0xf0, - 0x41,0x03,0xa2,0x3f,0xef,0xd3,0xd7,0xf8,0x7e,0x93,0xd0,0xb0,0x6f,0x00,0xbb,0xf4,0x72,0x95,0x24,0xfa, - 0x20,0x3b,0x87,0x7d,0xf7,0x36,0xa5,0x40,0x8f,0x3b,0xe9,0x84,0xa4,0xf8,0x14,0x4a,0x21,0xbe,0xda,0x41, - 0x29,0xbc,0xc4,0xd1,0x42,0xfd,0x98,0x19,0x5a,0x01,0x6d,0xfd,0x59,0x4a,0xe1,0x3c,0x7d,0x7d,0x93,0x14, - 0x6f,0x18,0xf9,0x6f,0x6a,0xa7,0x84,0x1c,0xff,0x83,0xd8,0x60,0x2b,0x33,0x81,0x18,0x5f,0x7b,0xa5,0xaa, - 0xcd,0x3b,0xe8,0xe4,0xa5,0xfe,0xe7,0xc5,0x60,0x41,0x3b,0x61,0x45,0x6c,0x7f,0xdb,0xd6,0xc2,0x63,0xc4, - 0x65,0x2c,0x37,0xac,0xa6,0x6b,0x30,0xd4,0xd5,0xf9,0xb7,0xc9,0x22,0xf4,0xfe,0x46,0x28,0x81,0x66,0x8e, - 0xaa,0x0e,0x2b,0xc5,0x96,0x10,0xb7,0x86,0x74,0xd8,0x3b,0x56,0xa5,0x9c,0xef,0x7b,0x27,0xfa,0x89,0x4f, - 0x0f,0xbc,0xea,0x3c,0x4f,0x09,0xdc,0xa7,0xe8,0x45,0xe8,0xad,0x3d,0xb5,0x5a,0x22,0xf9,0x87,0x22,0xbf, - 0xe0,0x45,0xa0,0x6c,0x31,0x8b,0x54,0x5e,0xc5,0xe7,0xf0,0xff,0x27,0x67,0x96,0x11,0x2c,0xdc,0xd6,0xc4, - 0x90,0xae,0x8c,0x69,0x06,0xf3,0xd9,0x4d,0xdc,0x34,0x29,0x89,0x65,0x78,0x9b,0x64,0x72,0xf8,0x53,0x13, - 0x29,0x41,0xe7,0xf1,0x80,0xff,0xaf,0x49,0x86,0x46,0x0e,0x7d,0xac,0x1e,0x37,0xb3,0x52,0x5e,0x46,0xf2, - 0xd4,0x86,0x3d,0x3c,0x28,0xb3,0x73,0xe8,0xd1,0x79,0x40,0x93,0x11,0x57,0x0b,0x3e,0x81,0x3c,0xb5,0xb0, - 0x67,0x0c,0xc7,0xc3,0x74,0x50,0xbf,0x05,0x1b,0xd6,0x12,0x71,0x51,0x3a,0xe6,0xb0,0xb2,0x95,0xf3,0x6e, - 0xe3,0x3c,0x76,0xaf,0xf1,0x1b,0xef,0xb1,0x3d,0xee,0x20,0xbf,0x3b,0x30,0xcb,0xef,0x06,0x50,0x59,0x0b, - 0xd5,0x9e,0xe2,0x28,0x61,0x9e,0x59,0x1d,0x36,0x44,0x63,0xf8,0x00,0x23,0x3b,0xb1,0xeb,0xdc,0x0a,0x9c, - 0xa0,0x0d,0xd0,0xac,0xc3,0x53,0x86,0x49,0xf8,0x37,0xf0,0x3d,0x7e,0xf4,0x8c,0x25,0x9a,0x16,0x33,0x99, - 0x41,0x43,0x41,0xf4,0xd2,0xe8,0x80,0x9e,0x48,0x14,0x8e,0x64,0x60,0xd7,0xd7,0x09,0x6d,0xf4,0xac,0x05, - 0x1a,0xd0,0x1b,0x19,0x08,0x51,0x0c,0x7c,0x26,0xcb,0xc8,0x89,0x9a,0x86,0xe3,0x01,0xb0,0x09,0x0c,0xc4, - 0xfb,0x70,0x82,0xed,0x00,0x1b,0x24,0x05,0x05,0x52,0xe3,0xb7,0x69,0xce,0xf6,0x05,0xbe,0x77,0x14,0x2f, - 0xd3,0x23,0x0d,0x28,0x5e,0x30,0x20,0xb6,0x27,0x6b,0x78,0x04,0xd8,0xf6,0xac,0xa9,0xdd,0x24,0x50,0x8f, - 0x8d,0xd4,0x4d,0x92,0x82,0x4d,0x30,0x10,0xc7,0x30,0x6e,0x79,0xe3,0xcf,0x73,0x91,0x5f,0xe0,0xca,0x2d, - 0xd0,0x6d,0xc3,0x61,0xe1,0xb8,0xdd,0x8d,0x1a,0x0c,0xfe,0x6c,0x4f,0xea,0x92,0x7f,0xa5,0x33,0x75,0x0f, - 0x44,0x4e,0xd3,0xd1,0xf8,0x96,0x5e,0xb4,0x6e,0xc6,0x15,0xb6,0xee,0xc1,0x85,0x00,0x76,0x11,0x5b,0xc0, - 0xb3,0x36,0xe6,0xf1,0x30,0xbe,0xaf,0x9d,0x24,0x68,0x73,0x9d,0xb8,0xf6,0xd2,0x2e,0x1f,0x70,0x89,0xca, - 0x86,0xa0,0xc5,0xa8,0x88,0xca,0xb0,0xdc,0x93,0xa0,0x8d,0x19,0x47,0xd7,0xcc,0x1b,0x16,0xfe,0x25,0xfc, - 0x17,0xf7,0xa3,0x72,0x03,0xe8,0x48,0xd8,0x0f,0x75,0x32,0x68,0x40,0xad,0xb8,0xc8,0x9c,0x2f,0x72,0x38, - 0x1c,0x38,0x32,0xbe,0x27,0x02,0x27,0x5b,0x84,0x6b,0x9a,0x89,0x1e,0xa1,0x0c,0xbf,0x5c,0x12,0x78,0xcf, - 0x5c,0x2f,0x0f,0x19,0x87,0xc4,0xab,0xf2,0x65,0x27,0xfc,0x69,0x6c,0x42,0x1d,0xdc,0xc0,0xe6,0x44,0x8b, - 0x61,0x81,0x4c,0x88,0x97,0xa9,0xa5,0x30,0x3b,0xe4,0xd5,0x95,0x86,0x48,0x76,0x08,0x22,0x8f,0x98,0x39, - 0xe9,0x0a,0x02,0x6e,0x6e,0x03,0x83,0xaa,0x91,0x42,0xe5,0x2c,0xf5,0xc0,0xa4,0x36,0xb0,0x44,0x23,0x87, - 0xf3,0xc1,0xe2,0x8e,0x46,0x06,0x9d,0x28,0xd8,0xa4,0xf9,0x85,0x52,0x6a,0xd4,0xd2,0xf8,0x64,0x52,0x05, - 0xd7,0x34,0x3e,0x21,0x05,0xa8,0xa7,0x91,0x98,0x2e,0x5d,0x2c,0xd4,0x6c,0xc5,0xa6,0x5b,0xc4,0xd4,0xf8, - 0xae,0x13,0x37,0x1d,0x20,0xf9,0x49,0x10,0xde,0x2a,0x06,0x0b,0x2a,0x33,0xe7,0xb2,0x7a,0x9d,0x68,0x66, - 0xe7,0xd2,0xe9,0xa5,0x27,0xbc,0x73,0x91,0x20,0x66,0xaf,0x49,0x10,0xcc,0x52,0x26,0x15,0x33,0x2d,0x04, - 0xad,0x6e,0x93,0xda,0x4b,0x43,0xb3,0x74,0xbf,0xaf,0x9a,0x09,0xda,0x69,0xdf,0x49,0x68,0x93,0x6d,0x77, - 0x22,0xef,0xc8,0x73,0x1c,0x32,0xf4,0xee,0x76,0xe6,0x39,0x6c,0xe4,0xb9,0xd7,0x99,0xe7,0xf4,0xb4,0x91, - 0xe9,0xf3,0xce,0x4c,0x74,0xfa,0xb6,0x47,0x4a,0x67,0xd4,0xdd,0x2f,0x8e,0x79,0xba,0xb6,0x37,0x85,0x3b, - 0x5b,0xd3,0x05,0x1d,0x84,0x76,0x12,0xf4,0x7d,0x77,0x3d,0x45,0x54,0x03,0x21,0x1b,0x83,0xba,0xc1,0x1c, - 0xc9,0x79,0xda,0x65,0x4a,0x57,0x9f,0xd3,0x06,0x4a,0x07,0xfa,0x20,0x36,0xfa,0xda,0x2e,0x0f,0xec,0x19, - 0x67,0x18,0xbb,0xca,0xca,0xc9,0xad,0x67,0x59,0xbb,0x26,0xbc,0x6b,0x5c,0x10,0x1a,0x88,0x23,0x2e,0x6b, - 0xa8,0x97,0x41,0x4f,0x10,0xff,0x58,0xff,0x87,0xa2,0x4f,0x60,0x66,0xb8,0x59,0x18,0x7d,0x10,0x87,0x87, - 0xa1,0x71,0x62,0xd4,0xd5,0xcf,0x4d,0xf7,0x14,0xbc,0x42,0x58,0x94,0xbf,0x34,0x0d,0x3d,0x3e,0x70,0xb7, - 0xb3,0x81,0x41,0x30,0xc7,0xe2,0xcc,0x0b,0xfe,0xe4,0xfc,0x7c,0x42,0xdd,0x90,0x8e,0x50,0xbd,0x7a,0xbe, - 0x3e,0xa1,0x80,0x08,0x4f,0x4c,0x91,0xbb,0x9f,0x52,0xa4,0x21,0x53,0x31,0x25,0xef,0x85,0xee,0xdd,0x7b, - 0xc7,0x58,0xd2,0xa5,0x81,0xef,0x4f,0x68,0xa2,0x21,0x98,0x31,0x4d,0x7c,0xf1,0x27,0x4a,0x6a,0x41,0x8d, - 0x29,0xda,0x5e,0xfe,0x8f,0xad,0x4f,0x0d,0x1a,0xf0,0x0c,0xd4,0x26,0x6e,0x3e,0x72,0x8a,0x8c,0x08,0xe7, - 0x60,0x67,0x11,0x5f,0x47,0x08,0xa6,0x5d,0x58,0x7d,0x91,0xdc,0x0b,0xc2,0xdd,0x64,0xc6,0x91,0x26,0xa4, - 0xdb,0x68,0xb2,0xd3,0xf5,0xba,0xa1,0x36,0x2a,0x67,0xc6,0xa3,0xe4,0x4f,0x50,0x1b,0x5b,0xb8,0xf8,0xe3, - 0x7d,0x87,0x76,0x99,0x70,0x02,0x86,0xd1,0xd9,0x31,0x1f,0xbc,0x5d,0xf4,0x9c,0xb8,0x48,0x1e,0x38,0xba, - 0xc9,0x4a,0x44,0xc7,0xda,0x7b,0x2a,0x58,0x17,0x68,0x97,0xc0,0x4e,0x79,0x68,0xfc,0xf1,0xfb,0xde,0x3c, - 0xc5,0xed,0x9c,0xa5,0x69,0x69,0xda,0xb4,0x07,0xff,0xaf,0xde,0x3d,0xe5,0xcf,0xd2,0x8f,0xaf,0x91,0x8d, - 0xbd,0x7e,0x25,0x25,0xf4,0x4a,0x34,0xa5,0xcb,0x94,0x3e,0x0d,0x28,0xbc,0xf7,0xf7,0xe4,0x73,0x95,0x67, - 0x3f,0x35,0xd9,0x98,0xa6,0x2d,0x6f,0xab,0x63,0x4c,0xbb,0x14,0xb8,0x05,0xf4,0x4f,0x8e,0x8f,0x3f,0x13, - 0x42,0x23,0x99,0x1d,0xc1,0xe7,0x67,0x15,0xc3,0xa5,0xda,0x70,0x8b,0x4a,0x98,0x5b,0x86,0x10,0x4a,0x05, - 0xdb,0x87,0xa4,0xbb,0x06,0x9e,0x18,0x08,0xf7,0x4a,0xb8,0x51,0xfd,0x8b,0x4b,0xb6,0xd5,0x69,0xb0,0x39, - 0xf5,0x91,0xfa,0xf1,0x79,0xe3,0x18,0xca,0x30,0x67,0xc5,0xda,0x6e,0x84,0xc7,0xd0,0xf4,0xfa,0xc7,0x4e, - 0x5d,0x38,0x35,0xec,0x20,0xf3,0xd7,0xeb,0x3d,0xf1,0x20,0xdf,0xa6,0xf4,0x19,0x56,0xb7,0xc8,0x7f,0x07, - 0xe8,0x5a,0xe3,0xc2,0xe4,0x70,0x46,0x98,0x50,0xdf,0x3d,0x3e,0x0e,0x02,0xb3,0x1d,0x85,0x45,0xda,0x09, - 0x79,0x8d,0x56,0x04,0xe6,0xba,0xb8,0x8e,0xce,0xde,0x4b,0x76,0x43,0x9d,0xee,0x88,0xb3,0xc9,0xb3,0xe4, - 0x46,0xdb,0x6c,0x7a,0xbe,0xaa,0x9a,0x44,0x30,0xb1,0xe5,0xba,0x48,0x94,0xd4,0x01,0xa3,0x11,0xf2,0x11, - 0x95,0xef,0xac,0xb3,0x40,0xf8,0x69,0x4e,0x1d,0x67,0x3a,0xa4,0xe3,0xb0,0xda,0x4d,0x5e,0x17,0x47,0xcd, - 0x3a,0x24,0x78,0x4c,0x6a,0xfc,0xef,0xec,0x6c,0x26,0xd5,0x5e,0x0c,0x5a,0x4d,0xa1,0xcf,0x3b,0x78,0xb8, - 0x2d,0xa0,0xd7,0xb7,0xc9,0xb7,0x6c,0xc8,0x93,0x8a,0x34,0x95,0x68,0xe3,0x93,0xe4,0x9e,0xf8,0xed,0x82, - 0x63,0xea,0xff,0x71,0x82,0x51,0x2f,0xee,0x09,0x50,0x92,0x70,0xfb,0x96,0xd5,0xdf,0x05,0xb7,0x86,0xff, - 0x1f,0x00,0x29,0x58,0xee,0x57,0xc0,0xb2,0x2d,0x2f,0xa8,0x79,0x80,0x1a,0x51,0x5f,0x24,0x39,0xa2,0x78, - 0x1c,0x69,0xb9,0x81,0x07,0x2f,0xdc,0x1c,0x76,0xe0,0xd6,0xc8,0xa6,0x76,0xb5,0xb1,0xd9,0x1a,0x48,0xd2, - 0xc1,0xc3,0x09,0xf2,0xc6,0x7e,0xa4,0xd3,0xaa,0x0c,0xe0,0x09,0xcd,0x4d,0xb0,0x9e,0xfb,0x6a,0x7f,0xf6, - 0xee,0x67,0xe8,0x14,0x52,0x0f,0x89,0xfd,0x29,0xde,0xd9,0x86,0xb7,0x47,0x2d,0x7d,0xe7,0x50,0x7e,0x55, - 0xdf,0x53,0x5e,0x9f,0x9e,0xb2,0x8b,0xcd,0x5f,0x5e,0x8c,0xed,0x89,0x63,0x42,0x7e,0xa3,0xd8,0x6d,0x02, - 0x4d,0x8d,0x91,0x68,0xdc,0x12,0x04,0x11,0x85,0x52,0x6c,0xf9,0xe4,0x74,0x71,0x0e,0xb6,0x3a,0x5c,0x36, - 0xb0,0x33,0xc9,0xa6,0x00,0xe4,0xcf,0x97,0x2f,0xff,0x5c,0xbb,0xda,0xc5,0x84,0xd3,0xbe,0x95,0x70,0xb9, - 0x93,0xd2,0x25,0x3c,0x89,0xbc,0xbf,0x79,0xfd,0x0a,0x9a,0x47,0x9b,0xff,0x07,0xb6,0xc3,0x8c,0x69,0x2b, - 0xe5,0x01,0x00}; + 0x76,0x39,0xbf,0x47,0x12,0x21,0x3f,0xae,0xd1,0xd3,0x3f,0x9c,0xf0,0xf1,0xf4,0x3c,0xaf,0x1b,0xdd,0x66, + 0xab,0xf6,0x74,0xef,0x6f,0x11,0x80,0xc9,0x32,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0x87,0xeb,0xfc,0xb5, + 0xa9,0xca,0x8d,0x2a,0xfe,0xfe,0xe1,0xed,0x9b,0x91,0xa0,0xcd,0xe2,0xf4,0x1a,0x2c,0x58,0xda,0xae,0x8f, + 0xc2,0x19,0x36,0x48,0xfa,0x30,0xdc,0x23,0x60,0xe5,0x36,0x70,0x6d,0xd2,0xd6,0xd7,0x37,0x6d,0xc6,0x35, + 0x2e,0xd1,0x0a,0x4e,0xb6,0x29,0x76,0x18,0x3e,0x59,0xdb,0x8d,0x83,0xda,0x8b,0x85,0xae,0x56,0x6d,0xba, + 0xaf,0xae,0x9a,0xfa,0xf4,0x69,0x55,0x7d,0x2a,0xf4,0x9b,0x7c,0xa1,0xd3,0xe8,0xe7,0x0f,0xef,0x5f,0xec, + 0x7d,0x7c,0xfb,0xfd,0xf3,0x37,0x11,0xe7,0x7d,0x47,0xb8,0x42,0xd7,0x26,0x6f,0x2f,0xcc,0x5d,0xe4,0x57, + 0x66,0x69,0x5f,0x31,0x6a,0x4a,0xf7,0x0e,0xd4,0x45,0x3e,0x2f,0x68,0xb7,0x69,0x22,0x31,0xdb,0xd5,0x10, + 0x01,0xbb,0xd5,0x7e,0x93,0x3d,0xdc,0xdf,0xa7,0xa3,0xf8,0xd1,0x17,0xfb,0xfb,0xeb,0xf5,0xb8,0x19,0x9d, + 0x73,0x0b,0x04,0xc8,0xd3,0x6a,0xb1,0x20,0xb2,0xf9,0xe6,0xf1,0x14,0x38,0x33,0xdd,0x98,0x3a,0xb5,0xd5, + 0x12,0x8d,0xf5,0x80,0xa8,0x9b,0x82,0x9e,0xff,0xf2,0xe0,0x2f,0x11,0x9d,0x8f,0xc5,0x1f,0xa0,0xb9,0x2e, + 0x6a,0x71,0xad,0x01,0xb1,0xdc,0x00,0x1d,0x14,0xff,0x0e,0x66,0xea,0x7c,0x6e,0xa5,0x18,0x79,0xd2,0xc1, + 0x2a,0xcd,0x1f,0x60,0x15,0xec,0xcd,0x9a,0xb7,0xfe,0xdd,0x84,0x97,0xeb,0x53,0xeb,0xeb,0x12,0xdc,0x47, + 0xa4,0x36,0x51,0x0f,0x35,0x81,0xdd,0x0f,0xcb,0xa5,0x3d,0xe9,0x88,0x03,0xd1,0xdd,0x14,0xc6,0x3b,0x9a, + 0xc8,0x4b,0x25,0x73,0xc2,0xa2,0x2c,0xea,0xe7,0x1f,0x11,0x14,0xbe,0x73,0x0a,0xe8,0xe9,0x6b,0x41,0x4f, + 0x07,0x96,0x12,0xf8,0xc2,0x50,0x02,0x5f,0x0a,0x4b,0x7e,0xb0,0x0f,0x9e,0xfc,0x73,0x64,0xbe,0xfc,0x8e, + 0x4e,0xda,0x2a,0xef,0xbc,0x8c,0x4e,0xe8,0x39,0x96,0x04,0xda,0xc3,0x54,0xd5,0x57,0xc3,0xd3,0xe1,0x69, + 0x30,0x22,0x51,0xcc,0xe9,0x1d,0x07,0x27,0xc2,0x5c,0x90,0xdd,0x29,0xd1,0x00,0xc0,0xf2,0x6a,0x49,0x0f, + 0x66,0x8d,0xc6,0x75,0x88,0x69,0x4e,0x13,0x88,0x26,0x79,0x2e,0x96,0x7d,0x8c,0xcc,0xc3,0x9e,0x31,0x4d, + 0xdb,0xc5,0x8c,0xea,0x3c,0x8b,0xaa,0x12,0x44,0xdd,0x35,0x31,0x54,0xad,0xa6,0xbd,0x5b,0x9e,0x11,0x80, + 0x5d,0x64,0xdb,0x07,0x63,0x6c,0xc1,0x01,0x26,0x49,0x06,0x45,0xf4,0x9c,0x19,0xee,0xcf,0xcf,0xaa,0x05, + 0x01,0xac,0xa9,0x91,0x38,0xa7,0xcb,0xa2,0x3d,0x7f,0x5a,0xeb,0x19,0xb5,0x5f,0xe4,0xf3,0x26,0x2a,0xca, + 0xad,0xd9,0xed,0x2d,0xa1,0xa1,0x11,0x21,0x1a,0x50,0x97,0xd2,0x93,0xc1,0xcf,0xa5,0x43,0x10,0x39,0x72, + 0x27,0xf6,0xd5,0x6c,0x54,0x95,0x84,0xa3,0xcf,0x88,0xba,0x08,0xa6,0x8d,0x36,0x3b,0xe7,0x98,0x6d,0xde, + 0xc9,0x00,0xac,0xe6,0x2b,0xa2,0xd3,0x79,0xe2,0x16,0x99,0xbc,0x8d,0x08,0x0a,0xea,0x92,0x76,0x39,0x75, + 0x30,0x52,0x67,0x36,0x75,0x99,0x37,0xcd,0x65,0x55,0xcf,0x90,0x3a,0x5e,0x8e,0x1e,0x53,0x5a,0x55,0x17, + 0xbf,0xf3,0x9e,0xcc,0xa2,0x27,0x79,0x53,0x4c,0xb7,0xa2,0xdd,0x55,0xbc,0xd8,0xa5,0xf3,0x6a,0xf7,0x2c, + 0x59,0xd3,0xa4,0x50,0xc3,0x4b,0x22,0x4f,0x02,0xa2,0x2c,0x00,0x4c,0x55,0xc9,0x38,0xa9,0x13,0x4b,0xc6, + 0xbe,0xee,0xe1,0x83,0xae,0x69,0x3a,0x8a,0xdf,0x89,0xf8,0x55,0xdb,0x04,0x58,0xf4,0xa1,0xe9,0x7d,0x6b, + 0x9f,0xd4,0xec,0xf0,0xfc,0x28,0x1c,0x0c,0x5a,0x23,0x50,0xff,0x92,0x36,0xc0,0x8c,0x69,0xef,0x6b,0x20, + 0x1e,0x1a,0xc3,0x05,0x76,0x00,0x84,0x5e,0xb3,0x51,0xc3,0xa8,0xe8,0xf6,0x76,0xe6,0x28,0x30,0xc2,0xff, + 0x3b,0x3b,0xfb,0xe6,0x1b,0x97,0x44,0xd4,0xda,0x4c,0x5f,0xbd,0xa5,0x45,0x3d,0x85,0xb0,0x20,0x22,0xa2, + 0xfc,0x46,0x78,0x1d,0xa0,0x93,0xc7,0xf3,0xb9,0x45,0xc4,0x82,0x11,0x65,0xdd,0x26,0x39,0x0d,0x77,0x30, + 0x1b,0xe7,0x01,0x0b,0xb4,0xea,0xec,0x86,0xe9,0x8f,0xd6,0x35,0x06,0xa0,0x23,0xee,0x00,0xc8,0x0c,0xac, + 0x73,0x37,0x63,0xe2,0x3b,0x95,0xfa,0xc7,0x8f,0x54,0x56,0xc9,0x48,0xd2,0x83,0x87,0x0f,0xbf,0xc8,0xfc, + 0xc8,0x26,0x0f,0xf7,0xbf,0x4c,0xed,0x8b,0x29,0x83,0xe2,0x1b,0xe5,0xa2,0x37,0xd5,0x96,0x81,0xfb,0xc8, + 0x7d,0xc0,0x15,0x9b,0x0d,0x93,0x96,0x8a,0xd8,0xa3,0xd3,0xe2,0x8c,0x08,0x27,0xcb,0x28,0xcc,0xd6,0xe3, + 0x02,0xdb,0x8c,0x90,0x8f,0x22,0xb8,0xa4,0x01,0xad,0x05,0xb4,0x74,0x5d,0x57,0x75,0xb8,0x16,0xf3,0x78, + 0x1a,0x47,0x6f,0x74,0x4b,0xe0,0xf2,0x69,0xeb,0x39,0x72,0x23,0xd5,0x2a,0x9e,0x82,0x59,0xe2,0x3e,0xbe, + 0x0b,0x2c,0xf9,0x6b,0x93,0xbe,0x45,0xbb,0x28,0xda,0x75,0xab,0xbe,0x1b,0x2d,0x9a,0x2d,0x7d,0x35,0xd5, + 0x1a,0x24,0x0f,0xd5,0x19,0x3d,0x7f,0xfa,0xf6,0xcd,0x9b,0xc7,0x4f,0xde,0xbe,0xff,0xf8,0xfc,0x59,0xd4, + 0xa9,0xbd,0x1e,0x0d,0x89,0x37,0x62,0xb3,0x94,0xd7,0xc0,0x59,0xc4,0xdc,0x1c,0x67,0x04,0x84,0xbd,0x6d, + 0xe8,0x77,0x60,0x02,0x3e,0xb1,0x7b,0x2c,0x4e,0xae,0x19,0xba,0xe2,0x7e,0x7a,0x92,0x0a,0x6b,0x31,0x3e, + 0x26,0x70,0x5b,0x1e,0x4a,0xb6,0x3f,0x31,0x8f,0xb2,0x63,0xde,0x11,0x11,0x9d,0xf7,0x66,0x03,0x4b,0x26, + 0xc3,0x0e,0xd0,0xb8,0xc5,0xf3,0xcb,0x1e,0xe3,0xeb,0x64,0x5e,0xa7,0x04,0x28,0x53,0x83,0xac,0x80,0x60, + 0x22,0x83,0xeb,0x03,0x3e,0x67,0xe2,0xd0,0x9a,0x3e,0xc2,0xba,0xf6,0xda,0xa2,0xd5,0x6b,0xe5,0x84,0xea, + 0x8d,0x98,0xba,0x3c,0xeb,0xa7,0x65,0xd8,0x79,0x5d,0x80,0x64,0xa2,0x62,0xd6,0x49,0xea,0x81,0xac,0x21, + 0x31,0x44,0xf0,0x1c,0xe1,0xa4,0xde,0x04,0xeb,0xa4,0x3d,0xa7,0xe5,0x20,0x8e,0x76,0x90,0x5b,0xaf,0xca, + 0x67,0xd5,0x25,0xa3,0xb5,0x77,0x06,0x97,0x11,0xb2,0x1e,0xe5,0xb3,0xd9,0xf3,0x0b,0x90,0x17,0x45,0x43, + 0xe3,0xa7,0x91,0x44,0x16,0xd3,0x11,0x14,0x0c,0x7c,0x93,0x0c,0xf1,0xe4,0x28,0xf8,0xc3,0xb2,0x5f,0xf5, + 0x8a,0x53,0xfc,0xd3,0x1f,0xb6,0xd5,0xad,0x02,0x73,0x34,0xf5,0x4a,0x0a,0x16,0x2c,0xf8,0x57,0xb0,0x2f, + 0xcc,0x65,0x32,0x9b,0x16,0x9e,0x65,0x33,0x9e,0xf3,0xfc,0x84,0x0e,0x39,0x42,0x85,0x10,0x18,0x1a,0xc8, + 0xc5,0x02,0x85,0x6b,0x1e,0x9f,0x4a,0xb2,0xc2,0x7a,0xd2,0x49,0x79,0xfa,0x6f,0x9c,0xdd,0x74,0x2a,0xdf, + 0x41,0x59,0xe0,0x13,0xc3,0x79,0x8c,0x64,0xa7,0x8f,0xba,0x04,0xdb,0xb8,0x34,0x68,0x81,0x38,0x9b,0x9d, + 0x9d,0xed,0x22,0xb6,0xef,0xc9,0x84,0x78,0xab,0x38,0x32,0x80,0xb5,0x75,0x9a,0x13,0x8a,0x9c,0x6d,0x01, + 0x78,0xb6,0xa4,0xc0,0x16,0xe8,0x63,0xda,0xb5,0xf6,0x03,0x65,0x5b,0x10,0x0c,0x50,0x3a,0xf5,0x53,0x09, + 0xfa,0x36,0x2e,0xff,0xfc,0x68,0x0e,0xee,0x1e,0x8d,0x2a,0x54,0x25,0x23,0xca,0xf9,0xc8,0x64,0xac,0x03, + 0x9e,0xde,0x69,0x9a,0x72,0x57,0xec,0x3f,0x11,0x81,0x81,0xdf,0x54,0x45,0x20,0x6d,0x93,0x21,0x65,0x94, + 0x01,0x02,0x6b,0x84,0x31,0x67,0xa5,0x6c,0x18,0x91,0x85,0xd4,0xc1,0xe6,0xc9,0x0a,0xe2,0x95,0xfe,0x03, + 0x85,0xd2,0x96,0x30,0x1b,0x3f,0xbc,0x7f,0xf9,0xb4,0x5a,0x50,0x4d,0x04,0x95,0x94,0xe9,0xc5,0x7a,0xff, + 0xf5,0xe5,0xfe,0x83,0xb3,0x42,0x45,0xff,0x37,0x94,0xf5,0xfd,0xd7,0x17,0x8f,0x39,0x31,0xed,0x24,0x3e, + 0xfc,0xf2,0xc1,0x99,0x8a,0xee,0x75,0xd3,0x9e,0x72,0x41,0xd5,0x4d,0xdc,0x47,0xc1,0xdd,0x4e,0xda,0x57, + 0x4f,0xb8,0xe0,0x61,0x37,0xf1,0x19,0x27,0x1e,0x45,0x21,0x0f,0xfb,0x19,0x70,0x23,0x8c,0xb0,0xad,0xad, + 0x2a,0xb6,0xe5,0x55,0xad,0x40,0x39,0x95,0x09,0x08,0x4b,0x6d,0x54,0x47,0x94,0x30,0xc4,0x98,0xe9,0x84, + 0x4a,0xe9,0x80,0xc5,0xe2,0xd2,0x66,0xc1,0x0f,0x8f,0xc6,0x9e,0x76,0xd7,0xbd,0xc5,0x1d,0x52,0x7f,0xd1, + 0x92,0x39,0xee,0x90,0x99,0xf7,0x58,0xef,0x66,0xd1,0xe1,0x91,0xe1,0x49,0x6d,0x3a,0x11,0x60,0x46,0x1f, + 0x56,0x0c,0x91,0xe1,0xe0,0xbd,0x46,0xa2,0x86,0x60,0xc6,0x12,0xd4,0x49,0xf5,0xf2,0xc3,0x5b,0xdb,0xc5, + 0x2e,0x13,0xc8,0x7c,0xf3,0x26,0x87,0x07,0x7d,0x2b,0xe4,0x3d,0x84,0x9c,0x93,0xdd,0x28,0x8b,0x76,0x59, + 0xf5,0x06,0x01,0x05,0x08,0xee,0x7c,0xf4,0x6b,0x55,0x94,0x71,0xb4,0x43,0x93,0x6c,0x19,0x69,0x54,0xb4, + 0x9b,0xc5,0x7b,0x07,0xd0,0x83,0x78,0x52,0x65,0x12,0x25,0x13,0xfa,0x93,0xa2,0xec,0x6e,0x95,0xfc,0x31, + 0xc0,0x75,0x08,0xfc,0xc3,0x28,0x07,0x35,0x1b,0xe5,0x21,0x59,0x47,0xef,0xf6,0xc0,0x11,0x91,0x53,0x90, + 0xc0,0x27,0x90,0x8a,0x74,0x9b,0x9f,0xe1,0xe7,0x6a,0x59,0x10,0xb0,0xd3,0xd3,0x29,0x21,0x3c,0x30,0x5c, + 0xc2,0x3f,0x15,0xa7,0x7b,0x8b,0x6a,0x56,0x9c,0x16,0x7a,0xb6,0xd7,0x14,0x84,0x16,0x25,0x6d,0x55,0x6e, + 0xa4,0xce,0xf3,0xa6,0x75,0x65,0xf1,0x5e,0x4d,0x6d,0x1f,0x88,0xbb,0x04,0xf7,0x7d,0x49,0x07,0x39,0x5a, + 0x20,0x94,0x7a,0x75,0xbd,0xd7,0xef,0x68,0xad,0x89,0xa7,0xa7,0xe3,0x14,0x4f,0x74,0x4c,0xed,0xe5,0xa7, + 0x2d,0xbf,0x81,0x98,0xdd,0xa3,0xb1,0x11,0xa5,0x73,0x74,0x07,0x5b,0xc1,0xc2,0x41,0xda,0xe0,0x15,0x24, + 0x2f,0x5e,0xe3,0x4f,0x5c,0xbb,0x5f,0xf5,0x51,0x43,0x0c,0x68,0x1b,0x47,0xbf,0x94,0x04,0x23,0x3d,0xee, + 0xbb,0x0a,0x97,0x81,0x76,0x9d,0xd2,0x19,0x71,0x65,0x75,0xb1,0xc0,0x67,0xab,0x13,0x9a,0xef,0x78,0x9f, + 0xd0,0x4e,0xd2,0x3d,0xab,0x55,0xb9,0x51,0xaa,0xda,0x3d,0x20,0x80,0x90,0xc3,0x33,0xa7,0x23,0x9c,0x85, + 0x4a,0xa6,0x62,0x9d,0x7c,0x93,0xed,0x9b,0xdd,0x33,0x46,0x66,0x06,0x52,0x62,0x6f,0xca,0x04,0x08,0x93, + 0x02,0x13,0xfe,0x66,0x82,0x3f,0xe9,0xe1,0x51,0x02,0x0c,0x45,0x53,0x18,0x1f,0x96,0x47,0x49,0xea,0x72, + 0x76,0x23,0x05,0xd4,0x9c,0x96,0x60,0x78,0x73,0xca,0xf8,0xf3,0x50,0x12,0xcc,0xde,0x5d,0xb4,0xd5,0x24, + 0x54,0x10,0x78,0x45,0x8d,0xb3,0x48,0x68,0x9d,0x50,0x92,0x77,0x20,0x0d,0xe0,0x71,0x4b,0xed,0x9c,0xac, + 0x68,0x07,0x45,0xe7,0xb4,0x84,0x11,0x8c,0x0c,0x08,0x5d,0x8e,0xf0,0x82,0x6d,0x77,0x47,0x91,0x1b,0x3c, + 0xa5,0x52,0x4c,0xb1,0x88,0x70,0x5a,0xcd,0xe9,0xdd,0x3e,0x4e,0xfc,0xa3,0xc7,0x58,0xa9,0xa8,0x40,0x52, + 0xe2,0x6a,0x00,0x9e,0xf8,0x9c,0x7e,0x54,0xc3,0x78,0x26,0x45,0x5b,0x78,0x98,0xd8,0x87,0x50,0xa1,0x32, + 0xf1,0x5f,0xe6,0x0d,0xca,0xe2,0x67,0x22,0x3f,0x41,0xb9,0xff,0xd3,0x69,0x00,0x3c,0x94,0x69,0x04,0x8f, + 0x0a,0x73,0x87,0x3e,0xd2,0x8f,0x5a,0xe6,0xed,0x39,0xe7,0x47,0x0f,0xb0,0x78,0x94,0x6a,0x12,0x46,0x10, + 0x0a,0x3d,0x6e,0xe3,0xfd,0x64,0xe2,0x13,0x51,0x6a,0xd7,0xbf,0x8a,0x78,0x9e,0xd6,0x2a,0x7b,0x10,0x2f, + 0x9a,0x42,0xdf,0xd2,0x04,0x81,0x6c,0x4b,0x1e,0x14,0xa3,0x16,0x32,0x50,0xaf,0x82,0x03,0xf8,0x3f,0x06, + 0xf4,0x63,0x93,0x5b,0xad,0x9a,0xb1,0xc8,0x78,0x3e,0xd7,0x78,0x8b,0xa3,0x3c,0x72,0xe7,0x24,0xad,0x91, + 0xe1,0xc5,0x47,0x76,0x07,0x9a,0xb5,0xf0,0xd2,0x07,0x4b,0x39,0x08,0x14,0x30,0xae,0x2b,0x09,0xfd,0xd1, + 0x9f,0xb4,0xf4,0x06,0x25,0x76,0xfe,0x99,0x4a,0xb5,0x2f,0x80,0x68,0xcc,0x07,0x27,0xe2,0x61,0xbd,0x26, + 0x3c,0xb9,0xa1,0x72,0xdc,0xde,0xff,0xfc,0x19,0x1d,0x28,0x83,0x8c,0xae,0x63,0x41,0xa4,0x18,0xed,0xf2, + 0x2c,0x92,0x0e,0x6d,0x01,0x4d,0x11,0xaf,0xdc,0x6c,0xe5,0xd4,0x97,0x92,0x49,0x9b,0x2d,0xcc,0x6c,0x3e, + 0x05,0x5a,0x58,0x0b,0x54,0x47,0x8f,0x9f,0x3c,0x7d,0xf6,0xfc,0xc5,0xb7,0xdf,0xbd,0xfc,0xfb,0xf7,0xaf, + 0x5e,0xbf,0x79,0xfb,0xee,0x1f,0xef,0x3f,0x7c,0xfc,0xe1,0xc7,0x9f,0x7e,0xfe,0xe7,0xbf,0xf2,0x93,0x29, + 0xb1,0xf3,0x67,0xe7,0xc5,0xaf,0x9f,0xe6,0x8b,0xb2,0x5a,0xfe,0x56,0x37,0xed,0xea,0xe2,0xf2,0xea,0xfa, + 0xf7,0xfd,0x83,0x87,0x5f,0x7c,0xf9,0xd5,0x5f,0xff,0xfb,0x6f,0x5f,0xef,0x3e,0xc8,0xa2,0x71,0xe9,0x25, + 0xd4,0x9e,0xf0,0x50,0x41,0xaa,0x90,0x06,0x5f,0x75,0x92,0xb0,0x88,0x59,0xf4,0x52,0xfa,0xf5,0xd4,0x76, + 0xcb,0x72,0x4a,0x83,0x48,0xca,0xea,0xdb,0x34,0x48,0x98,0xcc,0x4c,0x7b,0x0b,0x61,0x0c,0x41,0x5b,0x93, + 0xed,0xc3,0xf0,0x66,0x5c,0x39,0xe8,0xb9,0x6d,0x70,0x7a,0x4d,0x33,0x3a,0x51,0x54,0xf3,0x5f,0x44,0x38, + 0xe5,0xbb,0xd9,0xd4,0xe6,0xfe,0xf5,0x8b,0x1d,0xfd,0xcd,0x37,0x7f,0xdb,0xa3,0x8c,0xbf,0xfc,0x2d,0x61, + 0x74,0x13,0x17,0x99,0x7c,0xfc,0x94,0x7a,0x4b,0x45,0x9a,0xdd,0x6c,0xf4,0xdf,0x5f,0x25,0xc9,0x37,0x0f, + 0xbf,0xfa,0xca,0x10,0xec,0x18,0x5d,0x39,0xd6,0x99,0x7e,0xf4,0xe8,0x6f,0xb7,0x85,0x3d,0x8e,0xfe,0x97, + 0x11,0xc8,0xcd,0x65,0x5d,0x74,0xb4,0xfa,0x96,0x6a,0x23,0x64,0x75,0x23,0x66,0x20,0x74,0xda,0x37,0x46, + 0x47,0xc2,0x07,0xe6,0x00,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0xb9,0xb3,0x63,0x3e,0xb1, + 0x27,0x15,0x7d,0x87,0xf1,0xf0,0xd9,0x5d,0x02,0x33,0x7f,0xfb,0xfa,0xa3,0x93,0xde,0xaa,0x00,0xb2,0x8b, + 0xe0,0x5b,0xec,0x3f,0xfa,0xb0,0xe8,0x14,0xa8,0x82,0x02,0x33,0x16,0xd0,0x50,0x91,0x0a,0x82,0x0b,0x02, + 0xf2,0xdc,0xe7,0x35,0x7a,0xba,0xaa,0x21,0xf5,0xf6,0xbb,0x90,0x71,0x77,0xd6,0x98,0x33,0x7e,0xbc,0x45, + 0x87,0xbc,0x02,0x73,0x99,0x6e,0x9c,0x4e,0x59,0xef,0xa3,0xd1,0x82,0xf9,0x2c,0x0c,0xe1,0xbd,0x3e,0x7b, + 0x7e,0xb5,0x8c,0xa3,0xf8,0x7f,0x6e,0xc7,0xbf,0xfc,0xd2,0xfc,0x25,0x89,0x89,0x61,0x26,0xf2,0x2d,0x8b, + 0x0f,0xff,0x67,0x7c,0xf4,0x97,0x24,0xf2,0xaa,0x20,0x4d,0xfc,0xe1,0xe6,0x5c,0x1d,0x7e,0x71,0x24,0xf2, + 0x09,0x34,0xbe,0xa8,0x2e,0xba,0xd6,0x11,0xbc,0xbb,0x78,0x51,0x68,0x2d,0x08,0xd4,0x30,0x63,0xa3,0xb2, + 0xba,0x8c,0x93,0xbd,0xbf,0xfd,0xf5,0x4b,0xfd,0x15,0x51,0xd3,0x69,0x7f,0xd1,0x20,0x73,0xea,0x8e,0xa3, + 0xa3,0x3f,0xdd,0x6c,0x87,0x3e,0xf8,0x37,0xc8,0x63,0xd3,0xa9,0x73,0x02,0x9f,0x39,0xa4,0xc5,0x87,0x47, + 0x21,0x01,0x1a,0xea,0x25,0xa9,0x82,0x61,0x45,0x76,0xa7,0x02,0x59,0xa0,0x1b,0xa7,0x6f,0x63,0x99,0x87, + 0xe8,0xdb,0x44,0xeb,0xde,0x29,0x2c,0x94,0xd0,0xde,0x01,0x24,0x0c,0xbe,0x25,0x2e,0x9f,0x6d,0x4c,0x9c, + 0xfd,0x8a,0x88,0x48,0x90,0x6d,0xbd,0x24,0xc3,0xef,0x75,0x2a,0x32,0x14,0x47,0xd6,0xa5,0x32,0x1d,0x1d, + 0x12,0xd6,0x10,0x18,0x11,0x38,0x32,0x57,0x13,0x03,0x4a,0xaf,0xc4,0x22,0xfe,0x87,0xda,0x2d,0xd8,0x1d, + 0x7e,0x86,0x9f,0x65,0x54,0xf0,0xf2,0xd4,0x70,0x7f,0x7a,0x16,0x6f,0x28,0xb0,0x0e,0xbe,0x16,0x09,0x31, + 0x4c,0xf3,0x9c,0x4d,0x20,0xbd,0x1e,0x40,0x40,0x4c,0xbf,0x77,0xf0,0x08,0xb4,0x34,0x40,0x67,0xed,0xe8, + 0x24,0x37,0x62,0xb9,0xed,0xa9,0x91,0xc2,0x30,0x83,0x45,0x0f,0xd9,0x2a,0x76,0xd9,0xca,0x08,0x68,0x94, + 0x93,0xf1,0x7a,0x69,0x2f,0x2b,0xfe,0x44,0x08,0x9c,0x41,0xc6,0xc8,0xd2,0x60,0x97,0x0b,0x45,0x4d,0x4f, + 0x65,0x15,0xd6,0x62,0x45,0xf9,0x2e,0x65,0x24,0xba,0x08,0x53,0xa9,0x13,0xfa,0x1b,0x91,0xe6,0x51,0x37, + 0x1d,0x6f,0xc9,0x1f,0x2a,0x22,0xd4,0x90,0x7a,0x01,0xa4,0x35,0x1a,0x0a,0xf5,0x0c,0xb4,0xae,0x56,0x68, + 0xef,0x5a,0xd6,0x47,0x6b,0xbb,0xa1,0xa9,0x93,0x46,0xe3,0x77,0x7b,0xdb,0xd8,0xc7,0x04,0x1c,0x62,0x57, + 0xdc,0xe0,0xe1,0x9e,0xe7,0x58,0xdb,0xa9,0x91,0x07,0x7a,0x1f,0x9c,0x1a,0x61,0x5d,0xa9,0xf8,0x5a,0x0d, + 0xd4,0x94,0xd3,0x33,0x9d,0x30,0x52,0x21,0xec,0xf6,0x2c,0xaf,0x0b,0x66,0xca,0x6b,0xb8,0x5d,0x4b,0x9d, + 0x14,0x15,0xbc,0x7f,0xae,0x6d,0x5a,0x5f,0xaf,0xa6,0x67,0x3e,0x4a,0xff,0x5b,0x9a,0x8b,0xcf,0x70,0xa3, + 0x76,0x42,0xdc,0x52,0x95,0x1d,0x0a,0x07,0x2a,0x4e,0x20,0x8c,0xf5,0x26,0x23,0xf5,0x27,0xe4,0x05,0x8e, + 0x8e,0x89,0xb7,0xdb,0xdb,0x5b,0x58,0x73,0x1c,0x3f,0x7d,0xfc,0xe6,0xe9,0xf3,0x57,0xc7,0xc7,0xff,0x81, + 0xf4,0xc1,0xd6,0xf6,0xe0,0x7f,0xe2,0xc3,0x7c,0xef,0xf7,0x23,0xfc,0xf9,0x65,0xf6,0xcb,0xee,0x2f,0x7b, + 0xbf,0x8c,0x8e,0xfe,0x92,0x26,0x93,0x5f,0x1e,0xfc,0xf2,0xc0,0x92,0x7e,0xed,0x7f,0x24,0xde,0xf0,0x02, + 0x87,0x49,0x60,0x48,0xf4,0xcb,0x83,0x5d,0x21,0x99,0x77,0x41,0x7f,0xea,0x90,0x20,0x7e,0xb0,0x2b,0xa4, + 0xee,0x1f,0x4c,0x4e,0xd7,0x6a,0xa7,0x43,0xa9,0xb5,0xeb,0x72,0xc0,0x78,0x33,0xdb,0x38,0x32,0x22,0x31, + 0xf6,0x8d,0x76,0xe3,0xf0,0x73,0x62,0x74,0x21,0x18,0x0e,0x52,0x52,0x58,0x37,0x75,0xa8,0x2c,0x3f,0xe9, + 0x50,0x8f,0x04,0xe6,0xd4,0xff,0x16,0x3a,0x84,0x20,0xd3,0xc9,0x12,0xb7,0x03,0x05,0xab,0x23,0x8a,0x20, + 0xd4,0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb5,0x58,0x35,0xed,0xd6,0x89,0xde,0xca,0x9d, + 0xcd,0xd4,0x28,0x32,0x66,0x28,0x63,0xee,0xb5,0x11,0x0c,0x66,0x83,0xca,0x2c,0x98,0x81,0xd0,0x04,0xc9, + 0x07,0x65,0x86,0x0f,0xc6,0x6d,0x27,0x1b,0x52,0xb4,0xbc,0x01,0x5a,0x8a,0xed,0x23,0x57,0x55,0xf0,0x7e, + 0x74,0x69,0x10,0x23,0x78,0x04,0xfd,0x45,0xf7,0x74,0xec,0xe3,0xf2,0x9e,0x3a,0xc5,0x58,0x55,0x70,0x35, + 0x32,0xd8,0x20,0x05,0x87,0x56,0x53,0xad,0xea,0xa9,0x0e,0xbf,0x0a,0x8d,0x0d,0x6e,0x5a,0x1c,0x18,0x6c, + 0x4f,0x54,0x77,0x50,0x51,0x9b,0xe1,0x50,0x95,0x43,0x85,0xe1,0xe7,0xce,0x83,0xea,0xdf,0xd8,0x1b,0x5b, + 0x03,0x28,0xca,0x1a,0x94,0xb1,0xd8,0x51,0xc3,0xa6,0x0c,0x7a,0xcf,0x7e,0x0b,0x77,0xfb,0x40,0x0c,0x28, + 0x33,0xff,0x97,0xdc,0x20,0x34,0x1c,0x1b,0x7e,0x5c,0xe9,0x61,0xb7,0x86,0x61,0x60,0x6c,0x07,0xed,0x60, + 0x6f,0x6f,0x31,0x3a,0xb6,0x88,0x0d,0x8c,0x21,0xfb,0x25,0x45,0xe6,0x65,0x25,0x61,0xeb,0xee,0xae,0xb4, + 0x2c,0x57,0xb7,0x92,0xd0,0xac,0x7d,0xc3,0xba,0xe0,0xf6,0x76,0xd3,0x8e,0x97,0xd2,0x9a,0xeb,0xc5,0x49, + 0x35,0xef,0xa6,0x9d,0x54,0xd5,0x5c,0xe7,0xe5,0xa0,0x5d,0xfb,0xff,0x8e,0x25,0xbc,0x48,0xd8,0xd8,0xf8, + 0x76,0x51,0x0e,0x1a,0xc2,0x5b,0x22,0x9a,0x0d,0x21,0xd8,0x26,0x2f,0x76,0x0c,0x94,0x27,0x8e,0xbf,0xc9, + 0xf6,0x77,0x76,0x5e,0x13,0x89,0x3f,0x3a,0x9d,0x57,0x15,0xe4,0x71,0x19,0xd3,0x53,0x30,0x30,0x29,0x99, + 0xfe,0x0d,0x6a,0x6d,0x7a,0x5d,0xa7,0xce,0x4e,0xa2,0x68,0xd3,0xb3,0xa5,0x9d,0xf4,0x45,0x7e,0x22,0x05, + 0x7f,0x98,0xa4,0xae,0x0b,0xbe,0xd6,0xe9,0x60,0x5f,0xbd,0x14,0x9b,0x38,0x9a,0xfc,0x0d,0x75,0x6c,0xd2, + 0x12,0x61,0xea,0xbe,0x5a,0x19,0x0b,0x49,0x67,0x91,0x69,0x4c,0xe3,0x85,0xcb,0x8f,0x45,0x7b,0x50,0x67, + 0x4e,0x86,0xa5,0x20,0xe6,0xcc,0xf6,0xc7,0xc5,0xa3,0xda,0x9a,0x92,0x15,0x62,0x98,0x79,0x58,0x1c,0x1d, + 0x11,0xae,0xf4,0xfc,0xc2,0x90,0xf6,0xfd,0xb0,0xed,0x0a,0xb2,0x8e,0xd6,0x43,0xc6,0x1d,0x54,0xec,0x68, + 0xed,0xfb,0x38,0x77,0xee,0x08,0xd6,0x8f,0xc0,0xaa,0x54,0xdb,0x40,0xc4,0xc5,0xe2,0xe0,0x6f,0xf6,0x0e, + 0x9c,0x94,0x98,0xbb,0x4c,0x27,0x4e,0xa9,0x0e,0x92,0xa0,0xb6,0xd3,0xce,0x99,0x75,0x6c,0x57,0x1d,0x9b, + 0xdc,0x95,0x59,0xfa,0xb9,0x1c,0x98,0x8f,0x71,0x1f,0x6d,0x78,0x92,0x40,0x1f,0x96,0x47,0x30,0xec,0xa4, + 0x1f,0x58,0x08,0x27,0x61,0xc3,0xb3,0x0d,0x63,0x54,0x23,0x0d,0xa9,0x07,0x0c,0x85,0x0d,0x85,0x31,0xa9, + 0xbf,0x39,0x98,0x78,0xe3,0x56,0x57,0x0e,0x38,0x80,0xfb,0xcd,0xe6,0xbd,0xf6,0xd9,0xc9,0x79,0xcb,0xd1, + 0xb1,0x54,0xe4,0x3c,0x2f,0x54,0xe9,0x3b,0x72,0x2e,0x1d,0x21,0x0c,0x72,0x7b,0xbb,0x3f,0xf6,0x4b,0x6f, + 0xcb,0xee,0x69,0x5a,0x71,0x6f,0x99,0x5b,0x26,0xe3,0x72,0x6f,0x6f,0x9c,0xd4,0x3c,0xa8,0xc3,0x72,0x57, + 0x3b,0xb3,0xdb,0xda,0x57,0x7a,0xd1,0x03,0x24,0x78,0x6f,0xe8,0x04,0xbe,0x1d,0x19,0x66,0xc3,0x49,0x46, + 0xfd,0x17,0x8b,0x8e,0x68,0x02,0x56,0xd3,0x25,0x01,0x56,0xf9,0xc8,0x3b,0x8b,0x10,0x60,0xa1,0x82,0x9d, + 0x9d,0x0b,0x68,0x1f,0x21,0x8c,0x74,0xd0,0xe5,0xab,0x39,0xb3,0xe7,0xb0,0x4f,0xba,0xf6,0x00,0x83,0x6d, + 0x98,0x58,0x2c,0x65,0x8e,0x44,0x3e,0xe7,0x6a,0xfa,0x11,0xa0,0xd9,0xa6,0x83,0x70,0xbb,0xb6,0x85,0x88, + 0x6b,0xd9,0xae,0x77,0x76,0xdc,0x06,0xa3,0x0a,0xcc,0x33,0x95,0x86,0x0e,0x93,0x75,0x0f,0x19,0x4f,0x4d, + 0x20,0xee,0x27,0xb6,0xa5,0x9b,0x24,0x75,0x57,0x3b,0x3b,0xb9,0x07,0x48,0xb3,0x26,0x90,0x5f,0xc9,0x23, + 0x38,0x24,0x7d,0xa1,0xeb,0xeb,0xe0,0x7c,0x0e,0x08,0x4c,0x1e,0x07,0x86,0xbd,0x96,0xca,0x6e,0x6f,0x6d, + 0x65,0xdb,0x07,0x63,0x11,0x68,0x18,0xf0,0xfc,0xa4,0xaf,0x81,0x55,0x88,0x5b,0x0a,0x13,0xbc,0x5d,0x79, + 0xe3,0xdb,0x9e,0xba,0xb6,0x9b,0x7e,0xdb,0x9d,0x96,0xe1,0x95,0x63,0x1a,0xf7,0xc6,0x5f,0xb6,0xf5,0x00, + 0xac,0x8f,0xfb,0x18,0x64,0x63,0x0d,0xa9,0xeb,0xb6,0xbe,0xc4,0xb9,0xd3,0x99,0x9e,0x11,0x2f,0xec,0x6a, + 0x3a,0xf1,0xbb,0x8e,0xc6,0xb7,0x69,0x36,0xae,0xd9,0x64,0x9a,0xc9,0x31,0xd9,0x10,0x7c,0xf8,0xf9,0x3d, + 0x11,0x6e,0xb6,0x4b,0x5f,0x17,0x44,0x3d,0x51,0x12,0x0a,0xa8,0xf6,0xdd,0xbc,0x7c,0xf1,0x57,0xac,0xc6, + 0xed,0xed,0xd7,0x5f,0xe1,0xd7,0x7f,0x7e,0x65,0xf5,0x76,0xc9,0x8d,0x99,0x50,0x39,0x7d,0xad,0xdb,0x11, + 0x67,0x53,0xfd,0xf3,0x95,0x4e,0x4b,0xa5,0xe9,0x40,0xd3,0x75,0x7e,0x32,0xd7,0xe9,0xf6,0x76,0xad,0x20, + 0xd1,0x90,0x97,0x7d,0x63,0x09,0xb1,0x32,0x99,0xfb,0xeb,0x00,0xc9,0xdc,0x0b,0xce,0xa3,0x01,0x85,0xf3, + 0xce,0xce,0x83,0x92,0xfd,0x22,0x58,0x27,0xfa,0xc0,0x50,0xe8,0xa1,0xa1,0xa0,0xaf,0xea,0x53,0xcf,0xc2, + 0xa9,0xa5,0xb5,0xe0,0xc3,0x5b,0x75,0x7f,0xfc,0xc9,0xe5,0xbf,0x7d,0x6a,0x4c,0x05,0x0c,0x0a,0x98,0x5a, + 0xe1,0xce,0x5b,0x31,0xeb,0x35,0xa8,0x80,0x6a,0xa4,0xb6,0xf3,0x33,0xe5,0x58,0xe2,0xe9,0x79,0x31,0x9f, + 0xd5,0xba,0x04,0xf3,0x05,0xeb,0x0f,0x82,0xe4,0xf9,0x42,0xb1,0x72,0x93,0xdf,0x91,0x91,0x37,0xd7,0xe5, + 0xf4,0x45,0x0e,0x33,0xf9,0x6b,0xaf,0x4e,0x1d,0x95,0x60,0xb8,0x51,0xb5,0x48,0xf2,0xda,0x62,0x0a,0x4c, + 0x6e,0x1e,0x29,0x95,0x80,0x37,0x63,0x10,0xe6,0x12,0x4f,0x89,0xb5,0xa5,0xfe,0x70,0x11,0xf3,0x4c,0xe9, + 0xa7,0xe5,0x53,0x69,0x88,0xd2,0xdd,0x33,0xa7,0x9b,0x8e,0x73,0xba,0x1b,0x04,0x3d,0x7f,0x98,0xd2,0xda, + 0xbd,0x9c,0x71,0xba,0x79,0x96,0xfa,0xe7,0x34,0x5e,0xf6,0xbc,0xd4,0xa2,0x8e,0x35,0x03,0xa3,0x97,0xda, + 0xbd,0x64,0x8f,0x83,0x1c,0x18,0x16,0x25,0x50,0xde,0x96,0x61,0xe1,0x32,0x2c,0x5c,0x76,0x0b,0x13,0xbe, + 0xf1,0x33,0xfe,0xb8,0xbf,0x63,0x1c,0x92,0xee,0xa2,0x5d,0x73,0xd0,0x96,0x7c,0xc2,0xe2,0x7c,0xcd,0x68, + 0xad,0xe8,0x27,0xf0,0x17,0x09,0x6a,0xfd,0xe0,0x90,0x9e,0xb8,0x04,0x6d,0xc7,0x1d,0x07,0x9e,0xb6,0xb6, + 0x86,0x48,0x6e,0x67,0x41,0x28,0x77,0x7c,0x5c,0x9d,0x1c,0x1f,0x47,0x6c,0xac,0x22,0xcf,0xe1,0x47,0x4d, + 0x3d,0x41,0xef,0x24,0x23,0xcd,0x89,0x6c,0x3f,0xaf,0x56,0xf3,0x19,0xcd,0x36,0x21,0x0e,0x82,0xd0,0xed, + 0xef,0x4b,0x36,0x12,0xec,0x63,0xc3,0xdb,0x5b,0x10,0x5b,0x94,0x63,0x36,0x4f,0xd1,0x3c,0x87,0x57,0x4b, + 0x53,0x9c,0xb0,0xb5,0x2d,0x7d,0xc8,0x4e,0x0a,0x44,0xc5,0x62,0xde,0x78,0xd0,0x0d,0xeb,0x2e,0xb1,0x04, + 0x3c,0xaf,0x17,0x8b,0xa7,0xd5,0xaa,0x6c,0x77,0x77,0xe9,0xe0,0xf2,0x63,0xfc,0x18,0xaa,0xd3,0x05,0x11, + 0xe3,0xdb,0x7f,0x96,0x84,0x7e,0x4d,0x53,0x67,0xba,0x0d,0xdc,0x03,0x9f,0xe9,0x66,0x5a,0x17,0xb0,0x9c, + 0xe7,0xd9,0x61,0x74,0x9f,0x13,0xba,0x3f,0x20,0x72,0x31,0x1f,0x85,0x9b,0xd3,0x4a,0x88,0x73,0xc2,0xd8, + 0xa8,0x84,0x50,0x29,0x3f,0x36,0xf4,0xb8,0xca,0xb6,0x0b,0x3a,0x12,0x70,0x12,0x7e,0x06,0x1b,0x84,0x58, + 0x60,0x63,0xe3,0x2b,0xaa,0xb2,0x6f,0x5a,0xad,0xb3,0x66,0xd2,0x58,0xa2,0xd3,0xab,0x3f,0xfe,0x59,0xd2, + 0x46,0xab,0xa9,0x3c,0xcd,0x4d,0x45,0x2d,0x2d,0x61,0xb9,0x91,0xa8,0x15,0xbd,0xae,0xf0,0xea,0x93,0xfa, + 0x27,0xce,0xce,0x4e,0x40,0xf1,0x77,0x20,0xcc,0xec,0x7f,0x71,0x4b,0xd2,0x7d,0x77,0x24,0x5a,0x02,0x0d, + 0xc3,0x4e,0x4c,0xbc,0xac,0xb5,0x7f,0xfa,0x5c,0x8b,0x90,0x8d,0xb3,0x11,0x46,0xcc,0xe2,0x16,0xbd,0x56, + 0x4d,0x38,0x4a,0x6d,0xc9,0x9b,0xee,0x30,0x35,0xa1,0xda,0xfa,0xf6,0x56,0x6f,0xb3,0x09,0xea,0x36,0x9e, + 0xe3,0xe9,0x64,0xea,0xe9,0xb0,0x94,0xba,0xe3,0xe6,0x5c,0xc3,0xea,0xbf,0xac,0x5a,0xd0,0xbf,0x6c,0x79, + 0x1f,0x80,0xc3,0xdb,0xc0,0x3c,0xa0,0x0f,0x82,0xb4,0x76,0xb1,0x3f,0x6e,0xdc,0xd9,0xcb,0x34,0xfa,0x22, + 0xbf,0x72,0xa4,0x24,0x34,0x82,0x8e,0x54,0xd4,0xea,0x80,0xaa,0x53,0x25,0xe0,0x44,0xb3,0xff,0x29,0xf6, + 0x11,0x3f,0xf5,0x5d,0x46,0x7d,0xd5,0x62,0x20,0x5b,0x1a,0xd1,0x91,0xdd,0x2d,0xde,0x33,0x49,0x00,0xfd, + 0xf6,0xb6,0x86,0xa5,0x96,0x81,0xeb,0x49,0x99,0xd6,0x93,0xf8,0x23,0x21,0x18,0x3e,0x43,0x78,0x14,0x84, + 0x8c,0x30,0xd7,0x76,0xac,0x20,0xec,0xac,0xf5,0x6d,0x19,0xe0,0xeb,0x57,0x6e,0x9f,0xdf,0x31,0xe4,0x70, + 0x34,0x81,0xa9,0x83,0xdf,0xc8,0x63,0xdf,0xa7,0x70,0xaf,0xdd,0xde,0x0a,0x69,0x0c,0xe3,0x22,0x6b,0xed, + 0xab,0x8f,0x04,0xcd,0x85,0x1d,0x0b,0x57,0xe0,0x57,0xd7,0x99,0xd0,0x3c,0xc3,0xc1,0x1d,0x36,0xaa,0xdf, + 0x9a,0x86,0x26,0x81,0xc6,0x69,0xdc,0x3c,0xca,0x2d,0x14,0x36,0xc0,0x6e,0x20,0x2c,0xb3,0xfc,0xb0,0x39, + 0x3a,0x02,0x80,0x82,0x56,0x38,0x65,0x52,0x68,0x52,0xc5,0x35,0xfb,0x37,0x42,0x97,0xf2,0x6b,0x8c,0x8d, + 0x9f,0x62,0xd9,0x4b,0x7a,0x18,0xa0,0x29,0x9f,0xf7,0x44,0x74,0xe5,0xa4,0xb7,0xe7,0xea,0x6c,0xd0,0x4f, + 0xce,0xba,0x0e,0xb3,0xb3,0x1c,0xf5,0x60,0xe8,0x40,0x9e,0xb4,0x41,0xa1,0xd6,0x93,0xe8,0xa6,0x57,0xc5, + 0x3a,0xd5,0x93,0x36,0x6c,0xcf,0x94,0xf8,0x35,0xfe,0x5c,0x93,0x4c,0xc3,0xe0,0x0f,0x1a,0xfe,0x5c,0xb3, + 0x41,0x41,0x62,0xfb,0x52,0x9d,0x06,0xc3,0x7e,0xd7,0x97,0xc3,0x4d,0x5a,0xab,0xc2,0xa7,0xed,0xd4,0x47, + 0x13,0x13,0x9d,0x42,0xcf,0x1f,0x7c,0xff,0xd2,0x93,0x3b,0x22,0xf0,0xe9,0x72,0x3d,0x46,0x52,0x10,0xe8, + 0x82,0x2e,0xe2,0x02,0x1b,0xb5,0xf0,0x55,0x3c,0xb3,0x33,0x1f,0x48,0x01,0x5c,0x75,0xd3,0x9a,0xd0,0x0b, + 0xc1,0x57,0x3d,0x5e,0xc1,0x83,0x8f,0x0e,0x28,0x76,0x7b,0xc4,0x1f,0x34,0x3a,0x64,0xcd,0xc7,0xb2,0x60, + 0x42,0x55,0xc6,0xbb,0xa8,0x2f,0x7a,0xb1,0x10,0x4d,0xfb,0x71,0xd9,0x88,0x25,0x90,0xac,0x2f,0x03,0xdc, + 0xcd,0x7a,0xbc,0xb1,0x3f,0x4a,0x71,0x4a,0xa7,0x23,0xd6,0xa1,0x3f,0x70,0x35,0x7d,0x01,0x45,0x2c,0x71, + 0x1d,0xb0,0x0b,0xf2,0xc3,0xcb,0x92,0xe0,0xee,0x28,0xbb,0x41,0x96,0xa8,0xb9,0xbc,0xa5,0x51,0x65,0x6b, + 0xe4,0x73,0x03,0x28,0xa2,0x4c,0xf0,0x6d,0x73,0xa4,0xf8,0xc3,0x86,0x3e,0x04,0xd8,0x4e,0x8a,0x54,0xbe, + 0x2f,0xd6,0x63,0xd3,0xdf,0x2c,0x5f,0x03,0x65,0xde,0x31,0xa4,0xa2,0xc4,0xdc,0x87,0x63,0x72,0x89,0x9f, + 0x1b,0x98,0xcc,0x34,0x13,0x0c,0x21,0x67,0x4e,0x5c,0x1b,0x73,0xe6,0x37,0x30,0xae,0x49,0xf1,0xbc,0x1e, + 0x1e,0x42,0x2e,0x43,0x30,0xc7,0x60,0x79,0x98,0x13,0xcf,0x46,0x7f,0x68,0x0c,0x4d,0x42,0xeb,0x2d,0xdf, + 0xe7,0x84,0xe2,0x93,0x54,0x9e,0x9b,0xf5,0xba,0x3f,0x0c,0x3b,0x08,0x3d,0x9a,0x15,0x35,0xf5,0x97,0xa8, + 0x57,0xb3,0x38,0xb6,0x95,0x3a,0x68,0x45,0x66,0x7a,0x3c,0xb0,0xf8,0x05,0xc8,0x02,0x8e,0xae,0x01,0x03, + 0xff,0xb4,0x50,0xab,0x25,0xac,0x0b,0x69,0x0a,0x13,0x28,0xfd,0x4d,0xfc,0x0d,0x6d,0xc2,0x4b,0x70,0x13, + 0x05,0xdb,0x48,0x01,0x0a,0x0b,0x18,0x07,0x2a,0x3d,0x5a,0x14,0x57,0x44,0xca,0xf8,0xf1,0xd1,0xd9,0xd7, + 0x64,0x36,0xd9,0x4e,0x51,0xfe,0xa8,0x19,0xe7,0xe0,0x33,0xf9,0x53,0x9b,0x4b,0xe3,0xa6,0x4a,0xb8,0x99, + 0x29,0x9d,0x44,0x34,0xeb,0xa8,0x65,0x2a,0x11,0x09,0xe8,0x21,0xf1,0xef,0x3a,0x01,0xa2,0x9a,0x12,0xc9, + 0xc3,0xe9,0x66,0x87,0xac,0xfc,0xc6,0x78,0xe1,0xf7,0xd6,0x90,0xb7,0x8d,0x9b,0x0b,0x20,0x5b,0x0c,0x84, + 0x86,0x82,0x01,0x58,0xa9,0x0d,0x78,0x67,0xa1,0x74,0x2e,0xc1,0xa0,0xd9,0x12,0x55,0x50,0xa2,0x92,0x12, + 0x79,0x76,0x55,0xc6,0x95,0x97,0x4e,0x50,0xa9,0x9c,0xa0,0x8f,0xc6,0x92,0x16,0x2c,0x96,0x40,0x49,0xfc, + 0xcd,0x43,0xe1,0xca,0x9b,0xfe,0xd6,0x87,0xb3,0x9c,0xaa,0xb2,0x6d,0x5a,0x35,0xc5,0x7c,0x2d,0xa4,0x31, + 0x68,0xf6,0x7d,0xfc,0x44,0xe4,0x71,0xaa,0x18,0xf1,0x09,0x08,0xfa,0x84,0xce,0x47,0x34,0x14,0x19,0xf7, + 0xca,0x28,0x99,0xe4,0xc4,0xbc,0xa5,0xef,0x8d,0x90,0xcc,0x16,0x85,0xe1,0xff,0x36,0xab,0xb4,0x73,0xfa, + 0xf9,0x64,0xfc,0x5f,0xf3,0x8c,0x09,0x69,0x27,0x91,0xcc,0x93,0x9b,0x7c,0xc8,0xf4,0xef,0x14,0x1e,0x50, + 0xae,0x05,0xbb,0x29,0xb4,0xf5,0xe9,0x74,0xe7,0x00,0x88,0xd8,0x7b,0x06,0x61,0xc8,0x4e,0x93,0xa8,0x09, + 0x5e,0xe4,0x39,0x90,0x2d,0x02,0x06,0x27,0xea,0x1c,0x1d,0x73,0x0e,0xa5,0x4e,0x82,0xe7,0x21,0x11,0x2d, + 0x7c,0x86,0x5f,0x78,0xe1,0x7e,0xf6,0x3a,0xd6,0x32,0xd8,0x49,0xed,0xa8,0x9d,0x9a,0xc0,0x15,0x28,0xa9, + 0x4d,0x0c,0xbf,0xde,0xa7,0xa1,0xc7,0xfd,0x04,0xf0,0x21,0x1f,0xe2,0x9c,0x26,0xbe,0x9f,0xd1,0x78,0xb3, + 0x09,0xb7,0x7a,0xaf,0x03,0xfb,0x28,0x8c,0xde,0x73,0x87,0x46,0xcb,0xcf,0x0e,0xdd,0xae,0x78,0xfc,0xcb, + 0xe5,0x6e,0xf2,0x20,0xc0,0xe3,0xfa,0xf0,0x80,0xc6,0x16,0xf9,0x0a,0xdf,0xfb,0x03,0xbd,0x7f,0x6c,0x58, + 0x80,0x7b,0x2d,0xd2,0xcd,0xd7,0xd6,0xeb,0xd5,0x86,0xf9,0xa8,0x3d,0x61,0x59,0x3e,0xaa,0x2d,0xe7,0xff, + 0x9a,0x85,0x61,0xf6,0x03,0x2f,0x8a,0x71,0x92,0x04,0xd7,0xf4,0x93,0x60,0xc5,0xb5,0x47,0x18,0x99,0x1e, + 0xd7,0x59,0x3d,0xba,0xb7,0xcc,0x89,0x99,0x6a,0xc7,0xde,0x80,0xc8,0x2d,0x25,0xfb,0x10,0x3c,0xcd,0x97, + 0x54,0xa1,0x9e,0x31,0x2e,0x70,0x5f,0x57,0x84,0x10,0xab,0x47,0x85,0xed,0x57,0x85,0x9d,0x5e,0x5f,0xf3, + 0xf0,0x60,0x02,0x89,0x1d,0x21,0x6b,0x55,0x2b,0x69,0xdc,0x74,0xd0,0x4b,0x3c,0x7e,0xa2,0x5e,0xd5,0x2a, + 0xea,0xb4,0xb1,0x75,0x5e,0x55,0x9f,0xe0,0x0f,0xff,0x93,0xe9,0xb2,0x1f,0xc4,0x4f,0xc1,0x20,0x5e,0x95, + 0xd2,0xb5,0xef,0x44,0xe7,0xce,0x2d,0x9b,0x39,0xec,0x65,0x85,0x81,0x4b,0xa4,0x42,0xd7,0xfe,0x0f,0x56, + 0xea,0x1b,0x19,0x53,0xeb,0xf0,0x3b,0xea,0xc3,0x0f,0x1b,0x5d,0xf8,0x21,0xe8,0xc2,0xf6,0x3b,0xc8,0xb3, + 0x5e,0x96,0xb4,0xff,0x06,0x7c,0x8c,0xe0,0xc5,0x4e,0x3b,0xda,0x6a,0x68,0xc6,0xe6,0x5d,0x9a,0xe8,0x08, + 0x97,0x7f,0x24,0x72,0x66,0x56,0x67,0x46,0xec,0xd4,0x66,0xcb,0xda,0xba,0x9d,0x27,0xe3,0xa5,0x95,0x04, + 0x67,0x5e,0x98,0xa8,0xe9,0x59,0x7b,0x29,0x90,0x66,0x49,0x9e,0x3e,0x8a,0x83,0x2a,0xbf,0x0b,0x4e,0x3d, + 0x2c,0x1a,0x55,0xc3,0xb6,0x14,0x3d,0x45,0x92,0x38,0x23,0x3a,0x01,0xa7,0x9b,0x17,0x81,0x96,0xa8,0xa4, + 0x23,0xe0,0x63,0x31,0xc5,0x6a,0xf0,0xa9,0x56,0xb2,0x4f,0x3c,0x54,0x35,0x33,0xf0,0x15,0xe8,0xf3,0xbe, + 0x3a,0xaf,0x27,0xf3,0x3a,0x4e,0xd2,0x55,0x0d,0x03,0x9d,0xed,0x76,0x58,0x3f,0x63,0x34,0x69,0x49,0x20, + 0x47,0x19,0x52,0xae,0x95,0x50,0xae,0xf9,0x61,0xfc,0x8e,0x34,0x57,0x00,0x7c,0x97,0x72,0xa4,0x48,0x75, + 0x87,0x54,0x30,0x26,0x16,0x14,0xd2,0x47,0x30,0xc2,0x8e,0x43,0x7e,0x51,0x57,0xbf,0xc3,0x1d,0x5b,0x6c, + 0xaa,0xb4,0xa1,0xd5,0xed,0x79,0xac,0x43,0x76,0xac,0x60,0x28,0x2f,0x61,0x41,0x48,0x87,0xb3,0x35,0xec, + 0x2c,0xe1,0x7d,0x40,0xef,0x70,0x15,0xc9,0x0d,0xad,0xa3,0x3b,0xb4,0x0e,0x0c,0x76,0x6a,0x3e,0xd9,0x5c, + 0xa4,0x9d,0x3a,0x8b,0xab,0x1e,0x7d,0x9e,0x6c,0x7c,0x53,0xd1,0x57,0x47,0x1c,0x59,0x21,0xa1,0x59,0x3f, + 0xae,0x13,0xfa,0x3f,0x9a,0xd2,0x51,0x50,0x87,0x0b,0xfa,0x5b,0xdc,0x8d,0xa1,0x65,0x54,0x7a,0x5e,0xb8, + 0xad,0x40,0x18,0x9c,0x96,0x7c,0x5c,0x6f,0x6f,0xd0,0x30,0x4e,0x74,0x1d,0x28,0xde,0xbc,0x6c,0x6f,0xec, + 0xf1,0x41,0x69,0x40,0x6f,0x50,0x11,0x01,0x31,0x49,0x58,0x43,0xeb,0x64,0xe2,0xdc,0x34,0xc2,0x67,0xf9, + 0x1e,0x7f,0x1f,0x1b,0x61,0x82,0xb3,0xff,0x57,0x8d,0xa2,0x03,0x9f,0x1b,0xcb,0xe5,0x74,0xa7,0xa9,0x07, + 0x35,0x30,0x65,0x8a,0x88,0x68,0x81,0x93,0x1a,0xc8,0xb9,0x8d,0xd9,0x46,0xae,0xa5,0x23,0x7f,0x42,0x7f, + 0x1b,0xd4,0x8d,0xf3,0x50,0x4a,0x67,0xbf,0x61,0x59,0x54,0x4d,0xfc,0x3a,0x1b,0x6f,0x36,0x6a,0x35,0x22, + 0x6a,0x9c,0x98,0x5a,0x82,0x63,0x46,0x21,0xf4,0x04,0x9f,0x38,0xa2,0x8f,0xf8,0x09,0x66,0xea,0x49,0x92, + 0x36,0x74,0x8a,0x4c,0xa9,0x96,0x29,0x77,0xb5,0x51,0x5c,0xd7,0x34,0x49,0x7c,0x7f,0x4a,0x5e,0x8f,0x1c, + 0xe4,0x69,0x11,0xc7,0xa6,0x37,0x89,0xb4,0x22,0x1d,0xb4,0x2d,0x04,0x0b,0xf3,0xf7,0xd8,0x0c,0x31,0xd0, + 0x6b,0x25,0x37,0xd5,0xb0,0x10,0x55,0xcd,0x65,0x34,0x44,0x3b,0xac,0xeb,0xae,0x00,0x09,0x02,0x31,0xc2, + 0xbb,0x90,0xff,0x8d,0x80,0x01,0x61,0xc2,0xe1,0xdf,0x88,0x4a,0x4a,0xcc,0x29,0x07,0x7b,0x42,0x5a,0x87, + 0x31,0x4f,0x4f,0x43,0xb3,0x81,0x1e,0xa7,0x5a,0xc6,0x05,0x29,0x03,0x3d,0xb1,0xa5,0xcc,0x8c,0x66,0xaf, + 0xa1,0x11,0x22,0x5d,0x76,0x7f,0x4e,0xb3,0x80,0x0f,0xa6,0x8a,0x3e,0x51,0x8d,0x29,0x86,0x4d,0xcc,0x02, + 0xb0,0xc6,0x8f,0xea,0x5b,0xe6,0x02,0xcd,0xc8,0xb0,0x63,0x00,0x44,0x42,0x2d,0x80,0x9a,0xf1,0xec,0x39, + 0xc2,0xa3,0x00,0xec,0xab,0xdb,0x5b,0xc3,0xd7,0xf2,0x2b,0x9d,0x41,0xa6,0x70,0xd1,0x2f,0x5c,0x74,0x0b, + 0x17,0x28,0xbc,0xde,0x3c,0xb0,0x7e,0x0e,0x9d,0x2d,0x98,0xff,0x86,0xe9,0x0f,0xe4,0x90,0xd8,0xd8,0xc6, + 0xc4,0xde,0x8a,0x2c,0xfd,0x67,0xff,0x0a,0x99,0xb5,0x18,0x4c,0xb9,0x6e,0x5e,0xb3,0x52,0xf8,0xf6,0xf6, + 0x5b,0x04,0x72,0x91,0x17,0xe8,0x24,0xdb,0xc3,0x0f,0xac,0x16,0x75,0xe7,0xfa,0xc7,0xfc,0x4c,0xa2,0x01, + 0x64,0xad,0xa5,0x7e,0x68,0x1b,0xc0,0x83,0xc0,0x12,0xc3,0xa0,0x3a,0x82,0xc6,0xfe,0xd9,0x09,0xf3,0xe2, + 0x7a,0x03,0x5a,0x21,0x14,0xce,0xfa,0x0f,0xfe,0x61,0xec,0x16,0xfa,0xc2,0x85,0xe4,0x33,0x02,0x7e,0xcb, + 0xa5,0x80,0x56,0xe5,0x95,0xa8,0xd9,0x2d,0x02,0xe2,0xd3,0x9e,0x34,0x99,0x36,0xcd,0x3f,0x29,0xd7,0x4d, + 0x78,0x1d,0x50,0xa2,0x6d,0x6b,0x0f,0xae,0x72,0x72,0x8d,0xe3,0x9d,0xe0,0x4e,0xe4,0x41,0xf2,0xd6,0xd3, + 0xd1,0xe9,0x56,0xe6,0x91,0x33,0x4f,0x4f,0x7b,0xb9,0xa5,0xab,0xec,0x9a,0x3a,0xa6,0x78,0xa7,0x8b,0xb9, + 0x15,0x25,0xd3,0x9c,0x51,0xaa,0xd0,0x7c,0x81,0xd6,0xba,0x0d,0xf9,0x30,0xe1,0xb4,0xb6,0x5b,0xaf,0xb0, + 0xf0,0x18,0xa8,0x13,0xd2,0xcc,0x0a,0xd1,0x8c,0x3c,0x92,0x39,0xdb,0x3c,0xab,0x78,0x63,0xa0,0x0a,0x96, + 0x22,0xe6,0x6d,0x5b,0x37,0xee,0x81,0x10,0x58,0xd5,0x3a,0x3f,0xe2,0x30,0x51,0x55,0x56,0x7e,0x2e,0xf6, + 0x78,0x95,0x97,0x6d,0x6f,0xb3,0xa2,0x02,0xd2,0x4b,0xd1,0x19,0xe7,0xfc,0x41,0x12,0x97,0x16,0x10,0xd8, + 0x9c,0xc3,0x86,0xa0,0x3b,0x3c,0x22,0xb4,0xc0,0x3b,0xaa,0x0a,0x64,0x40,0x8d,0xf9,0x8a,0xd1,0x59,0x03, + 0x4d,0x25,0x7e,0x50,0x78,0x1c,0xb5,0x7a,0xb1,0x9c,0x13,0x93,0x05,0xb8,0xab,0x20,0xea,0x9f,0x4c,0xb9, + 0x02,0x83,0x26,0xa6,0xe8,0x9a,0x11,0x69,0xdf,0xde,0xd2,0x17,0xe9,0xd4,0xd6,0xbf,0x76,0xb1,0x8f,0x56, + 0x82,0xa3,0xca,0xc3,0xd5,0x91,0xd1,0x2d,0x15,0xad,0x77,0x98,0x46,0xb2,0x8f,0x2c,0xe2,0x35,0xf9,0xed, + 0x5d,0x30,0xba,0xdd,0x05,0x52,0x22,0x62,0xb6,0x78,0x57,0xf0,0x1e,0x0b,0x14,0xfb,0x6d,0xa0,0xd0,0x34, + 0xbc,0xda,0x1d,0x90,0xda,0x83,0x6a,0x50,0xa6,0x13,0x7c,0x2e,0xca,0xa9,0x94,0x78,0x1f,0x7a,0xc2,0x41, + 0xc8,0x9a,0xce,0x23,0x9a,0xfd,0x01,0x8d,0x23,0xab,0xd5,0x59,0xb8,0x3a,0x6e,0xcd,0x5e,0x34,0xd4,0x69, + 0x32,0x4e,0x58,0x4b,0x7d,0x5c,0x94,0x39,0x73,0xbf,0x9f,0xa3,0x77,0x9b,0xd6,0xd1,0xda,0x56,0xbb,0x7d, + 0x2c,0x6c,0xf3,0x4b,0xf3,0x35,0xd1,0x5b,0x8a,0x1b,0xb3,0x54,0xa9,0x65,0xdc,0x37,0x4a,0x5a,0x1a,0xa0, + 0xdb,0xba,0x37,0xf0,0x08,0x7a,0x74,0x13,0xbc,0x80,0xa0,0xeb,0xcf,0xd6,0x3d,0xbb,0xca,0xe1,0xbc,0xb1, + 0xea,0xc9,0xe5,0xb0,0x26,0x16,0x8e,0x49,0x2a,0xe2,0x7a,0x08,0x6a,0x66,0x51,0x28,0x16,0x9c,0xb6,0x5d, + 0x91,0x86,0x25,0xd5,0x0d,0x8b,0x1b,0x88,0x03,0x78,0x2f,0x95,0xfd,0xbd,0x04,0x9a,0xaf,0x74,0x51,0x33, + 0x5d,0xf4,0x89,0x12,0x64,0x5f,0x09,0x12,0x79,0x37,0xb2,0x34,0x38,0x8d,0x86,0xc8,0xa0,0xef,0xe8,0x85, + 0x1d,0x2f,0x99,0x05,0xd4,0x0b,0x98,0x2a,0xa0,0x40,0x1a,0xed,0x86,0x58,0x61,0x85,0xc0,0x5f,0x8f,0x41, + 0x13,0x0a,0x1d,0xab,0x34,0x0f,0xff,0x0a,0xf6,0x48,0x75,0x68,0x24,0x15,0x9a,0xfb,0x12,0xb9,0xb5,0xa7, + 0xe9,0x0f,0xd1,0x94,0x1f,0x10,0x93,0xea,0x43,0xfd,0xe8,0xca,0xd1,0x1c,0x1f,0xd0,0x5d,0xe8,0x18,0xb3, + 0xab,0xfa,0xf0,0x43,0x7d,0x94,0x50,0x41,0xf5,0xa9,0x66,0xb1,0x2d,0xd3,0x1f,0xa3,0x7a,0x55,0xc6,0xd6, + 0x18,0xeb,0x5e,0xed,0x68,0x97,0x3a,0xbb,0x72,0x2f,0x54,0x4b,0xe6,0xaa,0x44,0x21,0x4b,0x4f,0x53,0x4d, + 0xd0,0x8b,0x3f,0xad,0x33,0x74,0xfa,0xa0,0x23,0x69,0xf9,0x03,0x52,0x3b,0x5c,0xe4,0x7d,0x85,0xf5,0x83, + 0x30,0x77,0x1b,0xd1,0x42,0xcb,0xe4,0x8e,0x8a,0x7c,0x25,0xa0,0xfc,0xec,0xea,0xe1,0x3b,0x50,0x5d,0x17, + 0x8b,0x71,0x3d,0x3a,0xbe,0xc4,0x4a,0xe8,0x9a,0x80,0xaa,0x84,0x3c,0xfb,0xb8,0xa0,0xb3,0x6b,0x45,0x08, + 0x6a,0xb6,0xb3,0x43,0xab,0x4e,0x9c,0x92,0x88,0x6a,0x18,0x1e,0x08,0xd3,0xab,0xbf,0x53,0xb1,0x57,0xc0, + 0x4b,0x17,0x6d,0x55,0xc1,0x5b,0xf8,0xef,0xc4,0xfa,0xf0,0xfa,0x9c,0xce,0x09,0x7d,0x44,0xc1,0xea,0xcc, + 0x1d,0xce,0x7e,0x55,0x43,0x05,0xb3,0x69,0xcf,0xc7,0x56,0x64,0xd4,0x1f,0x02,0xc0,0xb5,0xa2,0x42,0x8d, + 0xde,0xb4,0x9b,0x96,0x6c,0x44,0xf9,0xbb,0x4b,0x57,0x53,0xd2,0xa7,0x41,0xb3,0xa7,0xae,0x59,0x81,0x48, + 0x56,0x6a,0x0d,0x49,0xa5,0xca,0x49,0x6c,0x3a,0x56,0x4f,0x96,0x2c,0x59,0x2d,0x6d,0x27,0xce,0x92,0xd4, + 0xe6,0x95,0xf8,0x3b,0xa9,0x41,0x01,0x20,0xa0,0x1d,0x81,0x30,0xcd,0x97,0x2d,0x8f,0xbc,0xf4,0xcc,0x7e, + 0x55,0xe2,0xef,0x84,0xff,0xa6,0x67,0xc9,0x9d,0xfd,0xd5,0xdd,0xfe,0x2e,0x43,0x7c,0xb9,0xa1,0x52,0x62, + 0x3b,0xbb,0x63,0x9c,0xbb,0x2b,0x5a,0x85,0x9f,0x64,0xb5,0x10,0xcd,0x6f,0x30,0xdd,0x88,0x76,0x1c,0xd3, + 0xc3,0x82,0xbb,0xf6,0x1a,0x36,0xb9,0x1a,0x9a,0x09,0x48,0x7f,0x13,0x15,0x68,0xa4,0xb4,0xd7,0x05,0x69, + 0xd1,0x5d,0x84,0x16,0x2e,0xad,0x17,0x26,0xb9,0xd0,0x3d,0x50,0x12,0x41,0xea,0xaa,0x10,0x71,0xca,0x98, + 0x9f,0x27,0x6a,0x53,0x0e,0xc6,0x9a,0x40,0xc6,0xc8,0xb4,0x69,0xee,0x5d,0x8a,0x2f,0xb8,0x88,0x87,0xbd, + 0xe5,0x8a,0x47,0x99,0xed,0x1f,0x1b,0x2d,0x7d,0x5b,0x4e,0xde,0xeb,0xd3,0x39,0x72,0xaa,0xcb,0xf2,0x7b, + 0x31,0x91,0x18,0x9d,0x16,0xf3,0x56,0xd7,0x43,0x06,0xce,0x7f,0x46,0x83,0x38,0xf2,0x5a,0xbe,0x75,0x92, + 0xf6,0xac,0x2f,0x06,0xf8,0x91,0x1b,0x2f,0x89,0x00,0x01,0x4b,0x94,0x01,0x22,0x93,0x8e,0x20,0x40,0x85, + 0x34,0x72,0xdc,0x8c,0x79,0x34,0x0d,0x8b,0x9a,0x2e,0x8a,0x19,0xf6,0x11,0x53,0xfa,0x41,0x0a,0x11,0x44, + 0xf4,0x4d,0x16,0xa4,0x40,0x38,0x7b,0x42,0x83,0xfd,0xb4,0x26,0x36,0xc1,0x1e,0x3e,0xe0,0xfb,0xb6,0x61, + 0x7b,0x68,0x25,0x65,0x90,0x56,0xd2,0x87,0x02,0x19,0x53,0x69,0xd8,0x8a,0xcc,0xb8,0xc6,0x01,0x18,0x77, + 0x8a,0x38,0x82,0xd6,0xe9,0xda,0xd9,0x13,0x05,0x8b,0x7c,0xd1,0x8a,0x8d,0x8a,0x63,0x71,0xc1,0x33,0x6d, + 0x4a,0xa5,0x21,0xe0,0x1b,0x08,0x2d,0x64,0x44,0xf0,0x4e,0xcb,0xed,0x2c,0xba,0x54,0x45,0xe8,0x2e,0xf7, + 0x28,0xa8,0x7a,0x94,0xb3,0xb8,0xa6,0x46,0x47,0x69,0x73,0x73,0x3c,0x57,0x2f,0x7d,0xdf,0xb4,0x21,0xdc, + 0xac,0x9a,0xeb,0xa4,0x8a,0xda,0xb0,0xa2,0x6a,0xf7,0x20,0xac,0xa7,0xb0,0xa4,0xed,0x86,0x29,0x4d,0x58, + 0x55,0xd3,0xeb,0x65,0xd3,0xef,0xe5,0x34,0x6b,0xd0,0x41,0xd7,0xd9,0x29,0x71,0x8c,0xca,0xcb,0x62,0x0d, + 0x45,0xcc,0xe8,0xf2,0x47,0xc4,0x06,0xe0,0x00,0x09,0x81,0xf2,0x7e,0x11,0xec,0x1c,0x96,0x6f,0x51,0x43, + 0xbc,0x63,0xef,0x35,0xb0,0x54,0x98,0x7d,0x20,0xa2,0xcd,0x6e,0xd6,0x0a,0xb1,0xdb,0x98,0x96,0xad,0x79, + 0xcf,0x5c,0xc4,0x17,0x31,0x5e,0x12,0x96,0x7b,0x17,0x19,0xb6,0xdc,0xed,0xad,0x0e,0x9d,0x9c,0x4d,0x55, + 0xb6,0x92,0x1c,0xca,0x8d,0xd1,0x31,0x01,0xcd,0x4c,0xd7,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0xb5,0x8d,0x96, + 0x0b,0x9d,0x1f,0x8a,0x3b,0xfb,0xa1,0x89,0x54,0xd1,0x73,0xfe,0x73,0x34,0xa3,0xba,0x41,0xe9,0x14,0x71, + 0x41,0x3b,0x5a,0xa1,0xb3,0x10,0x57,0xbd,0x10,0xb3,0x60,0x4b,0x0c,0xa8,0x48,0xb6,0x22,0x42,0x23,0x50, + 0x87,0x1f,0x07,0x24,0xe1,0x75,0x7f,0x3a,0x32,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f,0x84,0x8d, + 0x33,0x6b,0x9c,0x74,0xe1,0xae,0x48,0x26,0xec,0xdd,0xec,0xbd,0x5f,0x89,0x21,0x2a,0x20,0xd9,0x4d,0xeb, + 0xc9,0xa7,0x92,0x16,0x02,0x84,0x74,0xda,0x27,0xfe,0x8f,0x5d,0x8b,0x86,0x9d,0x2c,0xc1,0x61,0x83,0xa3, + 0xdc,0x54,0x79,0xd3,0x9c,0x2f,0x90,0x35,0x36,0x22,0x03,0x7f,0x04,0x15,0x22,0xe3,0x9f,0xce,0x89,0xb7, + 0x67,0xd7,0x4c,0xde,0x03,0xd7,0xc2,0xcc,0xd1,0xcb,0x35,0x8a,0x24,0xb4,0x1e,0x21,0x49,0xde,0x5a,0xee, + 0xc0,0x3c,0xb0,0x10,0x79,0x9c,0x43,0x2f,0x4e,0xa3,0x86,0x31,0xf8,0x0f,0x0d,0x1f,0x07,0x31,0x24,0x09, + 0x05,0xa2,0x90,0xcd,0xaa,0x05,0x12,0x1a,0x88,0x20,0xdc,0x0b,0x18,0xf0,0xd4,0xd4,0xc1,0x19,0xfc,0x84, + 0xd4,0x75,0x01,0x8c,0x92,0x43,0xe2,0x0e,0x26,0x5a,0x38,0xda,0x0a,0x02,0x8c,0x18,0x41,0x29,0xb8,0x70, + 0x55,0x32,0x03,0x7f,0x68,0xce,0x6f,0x22,0x9c,0x8a,0xa3,0xce,0xd9,0x8a,0xaf,0x58,0xf4,0xe5,0x28,0xc6, + 0xa9,0x50,0xfb,0x0d,0x71,0xf9,0x3e,0x28,0x98,0xb7,0xe6,0xea,0xd2,0x80,0x7c,0xfc,0x34,0x6c,0xe1,0xf3, + 0xb1,0xd6,0x9a,0x7b,0xd8,0x4f,0x03,0x23,0x82,0x7d,0x07,0x18,0xb5,0x0c,0x22,0x9d,0xa3,0xba,0xb7,0xc4, + 0x75,0x32,0x79,0x4c,0x7f,0xd2,0xa7,0xf8,0x13,0x5f,0xb5,0xb1,0x7c,0x92,0x75,0xa0,0x6b,0x24,0xf5,0xbe, + 0x67,0x18,0x7f,0x51,0x02,0xee,0xbd,0x1e,0xd5,0xc2,0xfe,0x3b,0xb8,0x83,0x8b,0x78,0x95,0x35,0xab,0xb0, + 0x87,0x91,0xef,0x8e,0x8f,0xa3,0xdd,0x56,0x6d,0x1f,0x24,0x9d,0xf3,0xe7,0xd2,0x91,0x0a,0xa6,0x7b,0x57, + 0xad,0x31,0xa2,0x21,0x5e,0x15,0x9f,0xe8,0xdd,0xb8,0x9c,0x44,0xc7,0xf0,0x92,0x8e,0x22,0x09,0x40,0x14, + 0x4c,0xc9,0x55,0x1b,0x88,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe7,0x2f,0x99,0xa0,0xe3,0x50,0xb4,0x06, + 0x9d,0x7a,0x47,0x02,0x4e,0xbe,0xd7,0x1a,0x75,0xea,0x2e,0x1a,0xae,0x9d,0x78,0xef,0x9e,0x6d,0x2d,0x30, + 0x39,0x73,0x1d,0xf0,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xad,0x90,0xfa,0x96,0x86,0x92,0x05,0x7b,0xf1, + 0x53,0xc0,0xa6,0x40,0x11,0xaf,0x13,0x4f,0xd7,0x57,0xf2,0x67,0xc2,0x08,0x08,0x4f,0x49,0x1a,0xf0,0x5f, + 0xb5,0x48,0xd0,0x02,0x5d,0x1f,0xa1,0x4e,0x48,0x20,0xc7,0xac,0xdb,0x2b,0x26,0x87,0x47,0x56,0x4b,0x5d, + 0x18,0x7f,0xf2,0x4d,0x30,0x7a,0xda,0x8a,0x5f,0xd9,0x71,0x95,0x5d,0xc2,0xc8,0xec,0xb8,0xe4,0x90,0xeb, + 0xc7,0x90,0x8f,0xd1,0xcf,0x3c,0xbb,0xe0,0xd4,0x36,0x5b,0xf0,0xef,0x6f,0xd9,0x35,0x7e,0x8a,0xec,0x18, + 0x3f,0x8b,0xec,0x84,0x53,0x4f,0xb3,0x33,0xfe,0xfd,0x94,0x5d,0xf3,0xef,0x49,0x76,0xcc,0xbf,0x17,0xd9, + 0x27,0xfc,0xd0,0x78,0x11,0x71,0xe3,0x78,0x95,0x55,0x9c,0x7c,0x96,0x7d,0x0a,0x7a,0xf0,0x58,0x26,0x2d, + 0x14,0x13,0x12,0x83,0x6c,0xc0,0x4c,0x1c,0x32,0xd8,0x53,0xc9,0x44,0x4a,0x15,0x0d,0xaf,0x96,0x17,0x67, + 0x11,0x56,0x9b,0x4c,0x3e,0xa9,0x33,0x13,0x93,0x74,0x6e,0xa2,0xc4,0x34,0x99,0x6c,0xc3,0x8b,0xd2,0x06, + 0xfc,0xc4,0x49,0xc4,0x46,0x6c,0x44,0xf1,0xe4,0xe6,0x9d,0xb6,0xbe,0x64,0x33,0x1e,0x1f,0x20,0x8e,0xeb, + 0x96,0x2d,0x11,0xd6,0x5d,0xd3,0x50,0x43,0x14,0x15,0xe2,0x4a,0x97,0x0b,0x0d,0x88,0xb8,0x2b,0xf0,0xa9, + 0xdb,0x9e,0x8e,0xa7,0xd6,0xb9,0xd0,0xee,0x9c,0x2c,0x57,0xc1,0x79,0x91,0xf9,0x26,0xe3,0x44,0x6d,0x9c, + 0x49,0xb0,0x0c,0xf7,0x6f,0x18,0x02,0xa2,0x52,0x1c,0x37,0x62,0x5f,0x37,0x31,0x54,0xe7,0x46,0x38,0x14, + 0x2b,0x2d,0x79,0xdb,0x22,0x7a,0xbf,0x41,0xbc,0x2b,0x77,0x5e,0x56,0x6c,0xfa,0xe4,0x4d,0xf6,0x7c,0x8d, + 0x2a,0x90,0x88,0x64,0x34,0xa6,0x6a,0x9d,0xde,0xdd,0x86,0xa5,0xeb,0xba,0x8d,0x04,0xb4,0xcc,0x87,0xf6, + 0x0e,0xab,0x65,0xd6,0xb5,0x8a,0xe5,0x72,0x60,0x7d,0x86,0xf9,0x35,0x04,0x8f,0x68,0x57,0xda,0xd8,0x5a, + 0xd5,0xad,0xa8,0x8f,0x0e,0xf5,0x1c,0xc3,0xd1,0x90,0x15,0x51,0xe6,0xdc,0xcf,0x56,0x56,0x3a,0x47,0xe5, + 0x87,0xac,0x3c,0xcc,0x84,0xcc,0x99,0x81,0x87,0xdc,0xac,0x98,0xe1,0xc3,0x39,0xc1,0x8d,0x53,0x5e,0xc6, + 0x41,0x9c,0xac,0x5a,0x9c,0x9a,0x71,0x4e,0x51,0x69,0xd6,0xd7,0xb0,0xf8,0xd1,0x3c,0xc3,0x43,0xd7,0xcb, + 0xd8,0x7c,0x9a,0x91,0xce,0xd9,0xb8,0xb5,0xb3,0xa0,0x8c,0x4d,0x1a,0x9b,0x3a,0x11,0xa7,0x88,0x90,0x8d, + 0xa9,0xd5,0xbc,0xf5,0xea,0x0d,0x52,0x59,0x58,0x26,0x12,0x3f,0x5e,0x9b,0x26,0xb1,0x9a,0x0b,0x9f,0x94, + 0x89,0x20,0x9d,0xf0,0xcd,0x2a,0x84,0x5e,0x3b,0xf9,0x2d,0x91,0x56,0xda,0x93,0x56,0xed,0x23,0x3d,0x6e, + 0x21,0x7a,0x00,0xe6,0xbe,0x47,0x85,0xa6,0xfa,0x07,0x3e,0x9a,0xe2,0x64,0xad,0xe6,0xd9,0x49,0x47,0x29, + 0xe3,0xfb,0x9f,0x41,0xbc,0x5a,0x11,0xb0,0xdf,0xde,0xae,0x62,0x76,0xd9,0xe9,0x15,0xed,0x4e,0x12,0x53, + 0x65,0x12,0x84,0x0c,0xfd,0x8a,0x39,0x76,0xca,0x32,0xab,0xe3,0xb9,0x3a,0xf5,0xae,0x13,0x31,0x17,0x1c, + 0x58,0xb7,0x25,0x7b,0x4b,0x4e,0xda,0x70,0x4e,0x77,0x76,0x24,0x95,0xab,0x48,0x75,0xbc,0xf4,0x52,0xd0, + 0x64,0x30,0x9a,0x73,0x50,0x80,0x3f,0x44,0x10,0xb0,0x5e,0x12,0xd7,0xa5,0x50,0x97,0x5d,0xeb,0x70,0x14, + 0x34,0x66,0x93,0x01,0xbb,0x00,0x2e,0xe6,0x97,0xaf,0xbb,0x7a,0x5c,0xd4,0xbc,0x63,0x9a,0x00,0x58,0xb0, + 0xef,0x9b,0xe7,0xd7,0x13,0x57,0x90,0xa6,0x22,0x25,0x9e,0xf4,0xa3,0x04,0x4e,0x0b,0x35,0x72,0xbd,0x81, + 0xb6,0x01,0xf0,0xc5,0xe1,0xe7,0x32,0x93,0xca,0xd4,0x7c,0x7b,0xfb,0x70,0x7f,0xdf,0x74,0xcc,0x44,0x63, + 0x83,0xe3,0xfb,0x9f,0x69,0x41,0xae,0xa0,0xe0,0xaa,0xec,0x97,0x09,0x30,0xd9,0xf6,0x81,0x72,0xed,0x4d, + 0x3a,0x23,0x4c,0xfd,0xf7,0x6b,0x0f,0x7b,0x56,0xbb,0xb0,0xa6,0x99,0x5c,0xd1,0xd6,0xf1,0x22,0xe8,0x3e, + 0xda,0x08,0x4c,0x4b,0xeb,0xd8,0x63,0xa4,0x8e,0x24,0x32,0x83,0xa0,0x96,0x13,0x5e,0x6b,0xc2,0xfc,0x12, + 0x99,0x4f,0x2b,0xd3,0x18,0x02,0xe0,0x19,0xbc,0x9f,0x12,0xde,0xcf,0xcf,0x88,0x22,0x26,0x44,0x45,0x2d, + 0x5b,0xe4,0x31,0xae,0xb2,0x8a,0x29,0xf8,0x57,0xc0,0x20,0x34,0x2f,0xd5,0x68,0x41,0xa4,0xed,0x3c,0xb0, + 0xe0,0x0c,0x98,0x2c,0x04,0xa6,0x46,0x2e,0x28,0x44,0x7e,0xe0,0x33,0x86,0x48,0x4b,0xe6,0xbf,0x23,0x16, + 0x46,0xf7,0x0a,0x68,0xc8,0xc2,0xa8,0x44,0x51,0xc2,0x4d,0x78,0x1c,0x97,0x72,0x2c,0xb1,0x88,0x78,0x69, + 0x89,0xc5,0x84,0xb5,0x1d,0xe6,0x0b,0xae,0xcb,0x58,0x9a,0x94,0x23,0xe3,0x1c,0x28,0x44,0xe1,0x98,0xfa, + 0x47,0xc4,0x5f,0x32,0xc1,0xdf,0xec,0xd0,0x7e,0x01,0x6a,0xea,0x24,0x9f,0x7e,0x72,0x87,0x38,0x17,0x4a, + 0xb9,0x50,0xbf,0xcc,0x9a,0x56,0xd5,0x92,0xfd,0x95,0x10,0xce,0xa7,0x1e,0x07,0x74,0x22,0x70,0xb9,0x82, + 0xde,0xb6,0x8b,0xf0,0x6c,0xee,0xf0,0x09,0xcd,0x1a,0x1d,0x64,0x42,0xdc,0xc2,0x2b,0xdc,0x17,0xd3,0x31, + 0xcc,0x70,0x74,0xbc,0xf2,0xb4,0xd4,0x9c,0x09,0x5f,0x1b,0xdc,0x93,0xc8,0xff,0x79,0x32,0xfe,0x96,0x4e, + 0x83,0x95,0xa2,0x0d,0x05,0xf2,0xec,0xf6,0x16,0xaf,0x53,0x79,0x3d,0x70,0x74,0x6c,0xb3,0x5e,0x43,0x70, + 0x6e,0x70,0xa1,0xed,0x90,0xed,0x70,0x3e,0x1f,0x82,0x9e,0xae,0x26,0x11,0x47,0xba,0x19,0xb0,0xe9,0x73, + 0xde,0xed,0x69,0xd2,0x11,0x9a,0x4f,0x09,0xcf,0xad,0x8e,0xb2,0x37,0xf1,0x8a,0x3a,0xc3,0xa4,0x80,0xa1, + 0xe2,0x80,0xae,0x78,0xac,0x09,0x9c,0x52,0x62,0x98,0xb2,0xcb,0xab,0x42,0x0e,0xd7,0xe8,0x73,0xe4,0x95, + 0xa7,0x77,0x2e,0xec,0x2b,0x8e,0x2c,0x9a,0x72,0x36,0x41,0x21,0x54,0x98,0x8f,0x84,0xf0,0x0d,0x0c,0x0e, + 0xe6,0x74,0x76,0xaa,0xc0,0xa9,0x69,0x43,0xe7,0x77,0x1a,0x9e,0xb8,0xea,0x34,0xb0,0xb0,0xcf,0xe1,0xc8, + 0xc9,0xaa,0x8c,0x98,0x4a,0x61,0x13,0x10,0xd4,0xc8,0x03,0xc3,0x17,0x67,0x66,0x52,0x86,0x76,0xed,0x29, + 0x6c,0x61,0x4e,0x65,0x13,0x48,0x27,0x97,0x20,0xa4,0x58,0x6a,0x8d,0x5f,0x7a,0x11,0x8f,0x87,0xb7,0xa5, + 0x0a,0xa7,0x3d,0x47,0x80,0x23,0xda,0x78,0x06,0x04,0x66,0x54,0x8e,0x79,0xd3,0x0a,0xf3,0x3a,0x63,0x52, + 0x81,0x1b,0x9a,0x25,0xeb,0xed,0x8e,0x34,0xd0,0x6a,0x29,0x5b,0xa7,0xa0,0xec,0x19,0x28,0xbc,0xab,0x43, + 0xb1,0xa9,0x21,0x6b,0xdf,0xd5,0x22,0xf1,0x94,0xaf,0xa0,0x19,0x28,0xb2,0xe7,0x70,0x7e,0x1a,0xbb,0x94, + 0xac,0x9e,0x84,0x68,0x63,0x53,0x1a,0xe7,0x60,0xa1,0x75,0x8f,0xf0,0xac,0x35,0x8f,0x04,0x5c,0x05,0xd1, + 0x27,0x84,0x16,0x18,0xca,0xd0,0xec,0x79,0x00,0xf7,0x12,0x3f,0x75,0xea,0x54,0x25,0xe2,0x7e,0x11,0x5d, + 0xac,0xf4,0x9e,0x3b,0x15,0xf6,0x88,0xd2,0x07,0x95,0xb0,0x1b,0x9f,0x4f,0x22,0x7a,0x39,0x67,0x7e,0xa3, + 0x52,0x83,0x6e,0x1f,0xb9,0xba,0x79,0x4a,0x68,0x8b,0x90,0x91,0xb3,0x7a,0x4a,0x4f,0x95,0xa3,0x3e,0xd3, + 0x25,0x23,0xa9,0xa9,0xc7,0x5a,0xc4,0xc7,0xcf,0xe1,0xf3,0xea,0x2d,0xad,0x41,0xa2,0x1b,0xec,0x45,0x24, + 0x94,0x55,0x5e,0x76,0x79,0x98,0x9c,0x8d,0xe0,0x72,0x98,0x35,0xc4,0xd3,0x0c,0x70,0x9f,0x13,0xc1,0x2f, + 0x7d,0x48,0x68,0x45,0x57,0x92,0xf1,0xac,0x0e,0xe4,0xcf,0x45,0x87,0xa0,0x42,0x14,0x64,0x10,0x1c,0xb9, + 0xb5,0x7e,0x70,0xda,0x37,0xa0,0xe2,0x4e,0x81,0x82,0xf5,0xed,0x88,0x72,0x06,0xbe,0x8d,0xb8,0xd9,0xb0, + 0x64,0xb7,0x5f,0xcd,0xf0,0xb1,0x8b,0x8b,0x03,0x00,0xb9,0x39,0x24,0x1f,0x04,0x1b,0x21,0x21,0x4b,0x28, + 0x5d,0x04,0x65,0xa9,0x5c,0x2f,0xe0,0xfc,0xa7,0x70,0x67,0x14,0x1d,0x99,0xcf,0xea,0x09,0x51,0x36,0xf1, + 0x2a,0x6b,0x92,0xc9,0xe1,0x27,0x1a,0xd9,0x51,0xcf,0xca,0x76,0xe5,0xe3,0x59,0x11,0xf9,0xe0,0x23,0xd0, + 0x60,0xfa,0x80,0x6c,0x10,0x89,0x46,0xc4,0x4e,0xb0,0x85,0xae,0x42,0x5b,0xe8,0x96,0xe6,0xa8,0x3a,0x6c, + 0x8e,0x92,0x21,0x0f,0x58,0x22,0x6b,0x88,0x2a,0x3c,0x3d,0x24,0x0a,0xca,0x45,0x13,0x39,0xea,0x99,0xe5, + 0x4f,0x93,0x89,0x75,0xf2,0xfa,0x66,0x9f,0x46,0xf8,0x73,0x4c,0x35,0x16,0xf1,0x54,0xc1,0xee,0x84,0x3d, + 0xf2,0x89,0x4f,0x24,0x02,0x8d,0x46,0x46,0x33,0xf3,0x73,0xcc,0x51,0x32,0x4e,0x81,0x7e,0x3e,0xc5,0x73, + 0xd6,0xad,0xed,0x4e,0x29,0x4f,0x34,0xd9,0xb8,0xf9,0xca,0xdc,0x0a,0x40,0x7b,0x3f,0x50,0x08,0x9e,0xd2, + 0x9a,0x25,0x29,0x8c,0x1e,0x27,0xa8,0x62,0xd2,0xab,0x00,0x91,0xac,0xc4,0x9c,0x41,0xbe,0x8a,0x3f,0x01, + 0xe7,0xa5,0x3f,0xd3,0x5f,0x69,0xb3,0xff,0x81,0x34,0x97,0x12,0xc2,0xad,0x9c,0x98,0x8c,0xd7,0x7a,0x0a, + 0x65,0x24,0x13,0x1b,0x53,0xb0,0xa9,0xb2,0xfe,0x0c,0x4a,0xcc,0xb5,0x12,0xf7,0x7d,0x01,0x50,0x8e,0x76, + 0x73,0x19,0x18,0xfd,0x3d,0x8e,0x6c,0x67,0xd1,0xa8,0xc7,0x6d,0x6b,0x5a,0x17,0x23,0xfa,0x49,0xb1,0x8c, + 0x2f,0x6b,0xb6,0xd9,0xf8,0x93,0x6a,0x95,0x4d,0xa6,0x9d,0x10,0x85,0x03,0x51,0xc9,0x0a,0x43,0x37,0xe1, + 0x50,0x34,0x93,0x75,0x78,0xa4,0xda,0xc0,0x5e,0x1d,0xe6,0x21,0xbc,0xed,0x19,0x16,0xc6,0x43,0x76,0xa1, + 0xe6,0x1c,0x59,0x8e,0x4f,0xb3,0x62,0x74,0xef,0xa2,0xa4,0xe3,0x14,0x01,0xb0,0xe4,0x69,0x54,0x36,0x2c, + 0x1c,0x3a,0x23,0x12,0x2a,0x3f,0x43,0x8c,0xd8,0x66,0x89,0xe0,0x0a,0x84,0x65,0xe6,0x10,0x95,0x15,0xcd, + 0x7b,0xdd,0xe8,0x9a,0x48,0x20,0xca,0xa6,0xd4,0x89,0xc1,0x21,0x94,0xc5,0xbe,0xc1,0xef,0xe6,0x79,0x8b, + 0x60,0x19,0xe6,0x63,0x7c,0x87,0x4d,0xd8,0xc5,0x1a,0x05,0x13,0xaf,0xd9,0x8b,0xb8,0x08,0x44,0x76,0x0e, + 0x01,0x35,0x11,0x68,0xcd,0x09,0xf1,0x44,0x4b,0xfa,0xb6,0xc0,0x21,0x93,0xa4,0xa6,0x99,0x6a,0xb0,0x36, + 0xd1,0x5e,0xce,0x33,0xfa,0xa4,0x92,0x4f,0x02,0xf9,0x28,0xc1,0x43,0x7c,0x1a,0xf8,0xaf,0xd4,0x71,0xe1, + 0x58,0x9c,0x02,0x0e,0x63,0x15,0xb1,0x4d,0x55,0xad,0x8b,0xb3,0xf2,0xad,0x75,0x93,0xa6,0x89,0x21,0xc8, + 0x60,0x2c,0x60,0x11,0x1d,0x8b,0x32,0x89,0xd9,0x75,0x8c,0x77,0x60,0xa2,0xcd,0x71,0xae,0x7c,0x8e,0xdb, + 0x72,0x8f,0xa6,0xbc,0xed,0x0c,0x1b,0xe7,0x0b,0xd0,0x16,0x24,0xca,0x67,0x65,0xa0,0x8f,0xd8,0xb2,0xd5, + 0x88,0x0d,0x18,0x4a,0x41,0x71,0xb4,0xfb,0xb9,0x87,0xeb,0xb5,0x10,0xe7,0x73,0x1a,0x3e,0xec,0xa1,0x02, + 0x94,0x16,0x38,0x6d,0x84,0x81,0xec,0x9c,0xec,0x80,0xb5,0xb5,0xcd,0x6a,0xa9,0x6b,0x7b,0xf6,0xa0,0x9c, + 0x49,0x61,0xe2,0x83,0x2d,0x52,0xf9,0xdd,0x1a,0x50,0xdc,0x74,0xdf,0x33,0xeb,0x77,0xd2,0x37,0xc2,0x46, + 0x84,0x37,0x4f,0x82,0xe0,0x34,0x13,0x0e,0xd4,0x7a,0xc4,0x81,0x68,0x6c,0x74,0x3e,0xd7,0x36,0xc5,0x1d, + 0x8d,0x95,0x55,0xe2,0x57,0x47,0xdb,0x62,0x22,0x09,0x63,0x0e,0xf6,0xbd,0x44,0x80,0x1a,0x0d,0x19,0xf7, + 0x80,0x91,0xee,0x86,0x3c,0xcb,0x10,0xaf,0x84,0xe8,0xca,0xac,0x2f,0x44,0x9d,0x94,0x29,0xab,0xdc,0x37, + 0xcc,0xe3,0xc4,0x37,0xc1,0xf5,0x45,0x34,0x2a,0x6d,0xa8,0x51,0x89,0xb5,0x97,0xec,0x82,0xe0,0xfc,0x26, + 0xdb,0xa7,0x35,0xe9,0xa6,0x3d,0xda,0xc7,0x02,0x99,0x40,0x5f,0x48,0xf0,0xfe,0x72,0x7e,0x0f,0x96,0x56, + 0x62,0xaf,0x30,0xc6,0xc0,0x99,0x7f,0xcd,0x5e,0xf3,0xf0,0x3a,0xee,0x4f,0x1a,0x9d,0x5c,0x71,0xb0,0x80, + 0xd9,0x33,0x68,0xa3,0xbb,0x65,0x8c,0x35,0x16,0x47,0xb2,0xf1,0x9b,0xe5,0x50,0xe2,0xb6,0x1d,0x65,0x08, + 0xb1,0xb2,0x69,0x51,0xf0,0x6b,0xeb,0x42,0x9c,0x1c,0x23,0x5e,0x40,0xc7,0xf6,0xf2,0x79,0xc7,0x3e,0x82, + 0x5d,0x14,0x71,0x9a,0xf7,0xc8,0x05,0xf6,0xce,0x0c,0xbe,0x7a,0xd7,0x76,0x28,0x93,0xfe,0xea,0x4c,0x42, + 0xd7,0xf9,0x6f,0xf6,0x0e,0xd2,0x4d,0x5d,0xcd,0x24,0x74,0xfa,0xef,0x95,0x86,0xaa,0x4e,0x6d,0xc7,0x2e, + 0x8e,0x82,0x04,0x12,0x3b,0x02,0xc6,0xb7,0x71,0x14,0x4a,0x89,0x80,0xcd,0x6e,0xab,0xda,0xa0,0xbb,0x40, + 0xac,0xf8,0xb2,0x67,0x22,0xc0,0x6a,0x52,0x86,0x53,0x28,0x60,0x18,0x3c,0x8f,0x19,0xd7,0xf5,0xe1,0xd2, + 0x06,0xea,0x85,0xd9,0x3b,0x5b,0x3a,0x1a,0xbe,0xe0,0x39,0x24,0x65,0x1b,0xf6,0x46,0xe3,0x06,0x02,0x64, + 0x26,0x01,0x9e,0x81,0x16,0xab,0x98,0xc1,0x0b,0x49,0x9b,0x67,0x1b,0xba,0x06,0xb6,0xc4,0xdf,0x2e,0xd8, + 0x63,0x8b,0x51,0x0c,0x1c,0xd6,0xf0,0x8b,0x5b,0x42,0x5c,0x0b,0x2f,0x0d,0x99,0x3c,0xba,0x37,0xa3,0x21, + 0xd6,0x15,0x5c,0xb6,0x5a,0xa7,0xf7,0x9f,0xf3,0x9d,0x97,0x81,0x17,0x40,0x1b,0x7a,0x76,0xdf,0x88,0x90, + 0xf9,0x29,0xf4,0x04,0xe9,0x1b,0xde,0xf3,0x3e,0x41,0x95,0xe1,0x1b,0x1d,0xc0,0x5c,0x0a,0xa6,0x65,0xfc, + 0x44,0x04,0x87,0x79,0x42,0x70,0x64,0xfc,0x1e,0xa5,0xe6,0x21,0x34,0xeb,0xef,0x2e,0x7f,0x3b,0xd1,0x93, + 0x76,0x37,0xda,0x8a,0x76,0x75,0xda,0xa6,0x1c,0x9d,0x3f,0x30,0x22,0x0f,0x01,0x6c,0x03,0x50,0x86,0x0e, + 0x47,0x9a,0x2c,0x84,0x0e,0xa4,0xdd,0x09,0x3d,0x95,0xdb,0x9d,0x8f,0x2a,0xde,0xa1,0x44,0xe8,0x66,0xa8, + 0x13,0x1b,0x0f,0xa4,0x17,0x5f,0xec,0x06,0x01,0x01,0xfe,0xef,0x66,0xd4,0x8b,0x44,0xd1,0x6f,0x19,0xec, + 0x4a,0x56,0xd2,0xf4,0x5b,0x13,0x74,0x19,0x45,0xe3,0x8e,0x78,0xae,0x35,0x31,0x01,0x62,0x6d,0x42,0xef, + 0xa2,0x3a,0x1d,0x56,0xc7,0x1b,0x78,0x10,0xa0,0xbb,0xa6,0xee,0xe1,0xb0,0x73,0x6e,0x3d,0x6a,0x2e,0xce, + 0xa2,0x34,0x5a,0xe4,0xed,0x39,0x1b,0x1a,0x4d,0xe4,0x71,0x43,0x5b,0xf4,0xa4,0xb5,0xd1,0x7d,0x36,0x35, + 0x9c,0xb6,0x46,0x17,0x75,0xef,0xb7,0x95,0xae,0xaf,0x3f,0x68,0xe8,0xa1,0x2b,0xb9,0x87,0xe6,0xae,0x58, + 0x9a,0xb3,0xe2,0x22,0x1a,0x52,0xa5,0xfc,0xd4,0xdb,0x2b,0x6c,0x73,0x59,0xeb,0xd3,0x9e,0x8f,0x90,0xf5, + 0xbc,0x2e,0x42,0x37,0x6e,0x0b,0xa6,0xc0,0x10,0x70,0xd0,0xae,0x60,0x39,0x4f,0xdf,0x36,0xe3,0xbe,0x5a, + 0xa5,0x62,0x6b,0xa8,0x39,0xff,0xe2,0xf0,0xc7,0x2f,0x0e,0x59,0x1c,0xb0,0x78,0x34,0x84,0x7c,0xea,0xdb, + 0x7f,0x59,0xbe,0xa8,0xea,0xc1,0x5a,0xf0,0xd7,0xa1,0x8c,0x82,0xf0,0xf1,0xce,0x0e,0x27,0x31,0x46,0xb6, + 0x75,0x13,0x7c,0xc8,0x43,0x11,0x00,0xee,0x0f,0x22,0xc4,0xf6,0x31,0xb6,0x40,0xe3,0xe1,0xa8,0xa7,0x5f, + 0x16,0x32,0xc9,0x7e,0x34,0x47,0x7f,0xe8,0x1f,0xce,0x3a,0x3f,0x6f,0x3c,0xa6,0x8d,0x71,0x2a,0x47,0x62, + 0x21,0x8a,0x80,0x9f,0xfb,0xf2,0x15,0x2c,0xa1,0xc8,0x48,0xf8,0xa4,0x05,0x0a,0xed,0x04,0x8b,0xa8,0xe1, + 0x8d,0x18,0xd7,0x66,0xce,0x45,0x18,0x9a,0x79,0x86,0xbc,0x66,0x5d,0x1d,0xcd,0xa9,0x66,0xbf,0xb2,0xcf, + 0x94,0x71,0xa2,0x44,0x58,0xd7,0xdd,0xde,0xae,0x0a,0x76,0x68,0xa4,0x1f,0xe2,0x06,0x79,0xc0,0xa0,0x2b, + 0x30,0x9a,0xc7,0x90,0x2a,0xbd,0x43,0xa8,0xac,0xf3,0x6a,0x4e,0x9c,0x3a,0xd7,0xd0,0x91,0x3d,0x61,0x9c, + 0x61,0x02,0x28,0xe3,0x6e,0x8a,0x91,0xc9,0x85,0xf6,0xfb,0xad,0x08,0x28,0x9c,0x76,0x59,0x9c,0xe4,0xb0, + 0xb1,0x0a,0x22,0x21,0x8a,0x47,0x59,0x3d,0xde,0xdd,0x2d,0x68,0xeb,0xc2,0x82,0xb1,0x38,0x32,0x84,0x76, + 0x9c,0xe3,0xb0,0xf7,0x9e,0x96,0x81,0xe7,0xc9,0x77,0x06,0x26,0x4d,0x8c,0xbc,0xc0,0xe1,0xeb,0xf6,0x56, + 0xf7,0x93,0xba,0xf3,0x6e,0x21,0x59,0xb8,0xe1,0x0c,0x2b,0xb7,0x84,0xd7,0x9e,0x96,0x87,0x26,0xfb,0xbd, + 0xdd,0xac,0xd5,0x47,0x16,0x00,0x07,0x46,0x25,0x36,0x1a,0x51,0xda,0x97,0x58,0x11,0xd9,0x41,0xa4,0xb0, + 0x61,0xb2,0x4a,0x91,0xb0,0xd4,0x59,0x23,0xdc,0xfc,0x14,0x3f,0xf5,0x84,0x66,0x8d,0xa6,0xf8,0x47,0x08, + 0xbe,0x32,0xeb,0x88,0xfb,0x1b,0x18,0x5d,0xa3,0x03,0x8d,0x14,0xee,0x3c,0x50,0x05,0x8c,0x26,0x70,0x12, + 0xd0,0x8f,0xdf,0x57,0x22,0x8b,0x9e,0xed,0xec,0xcc,0x2d,0x50,0x13,0xef,0x22,0x5f,0xc3,0x67,0x6d,0xe8, + 0xdb,0xa2,0x24,0x9a,0x9c,0xbf,0x59,0xb9,0x6f,0xb0,0x85,0x57,0x9d,0xa8,0x36,0xa7,0x43,0xb2,0x71,0x31, + 0xce,0x5b,0x85,0x26,0x79,0xd4,0xd6,0x0a,0xe3,0x88,0x6c,0xb5,0xd2,0xe4,0x7a,0x5c,0x4d,0xfe,0x0e,0x7f, + 0x29,0x49,0x8e,0x20,0x83,0x3e,0x8d,0xd9,0x29,0x60,0xee,0x22,0x7f,0x70,0x01,0xc4,0x11,0x34,0xe1,0x03, + 0xef,0x6c,0x71,0xde,0x6b,0x71,0xce,0x2d,0xf6,0x27,0xc1,0xb4,0xcc,0x6c,0xb8,0x9b,0xef,0x26,0x99,0xb2, + 0xd7,0x19,0x7d,0xc5,0xd3,0x1e,0xad,0x4a,0x99,0x98,0x96,0xfe,0x41,0x10,0xdb,0x35,0xd8,0xfd,0xbd,0x83, + 0xe3,0x86,0xa2,0xee,0xf4,0xcc,0x71,0xcd,0xf6,0x1c,0x8b,0xd9,0xc7,0x86,0xca,0x34,0x2e,0xd8,0x14,0x37, + 0x19,0x99,0xb8,0xe0,0xac,0x13,0x2f,0xfc,0x5b,0x76,0x51,0x24,0xaa,0x3c,0x24,0x78,0x27,0x18,0x1c,0xd5, + 0xf9,0xe5,0x1b,0x26,0xa3,0x2a,0x26,0xa7,0x76,0xa3,0x51,0xb4,0x1b,0xda,0x83,0x54,0x61,0x35,0x90,0x15, + 0x48,0xd8,0xd5,0x51,0x94,0x24,0xb4,0x3f,0x64,0x99,0x89,0x53,0xd2,0x01,0xa7,0xe4,0x01,0x93,0x0e,0x4a, + 0xae,0x35,0x31,0x71,0xeb,0x37,0x4d,0x60,0x7f,0x6b,0x37,0xa5,0xcf,0xad,0x80,0x0e,0xff,0x18,0xbb,0xc9, + 0x8a,0x0d,0x23,0xab,0xb8,0x94,0x50,0x1b,0xa6,0xbc,0x31,0x8e,0xac,0x61,0x1c,0x59,0xcb,0x85,0x09,0x7c, + 0x0c,0xf8,0x1e,0xf0,0x35,0x28,0x32,0x2e,0x50,0x00,0xde,0x78,0x32,0x70,0x85,0x68,0xe3,0x80,0x02,0xda, + 0x34,0xdc,0xe6,0xd9,0x8f,0x35,0x63,0x2d,0x71,0x9d,0xea,0x12,0xa1,0x45,0x79,0xae,0xeb,0x82,0xe3,0x6d, + 0xd3,0x0c,0xb5,0xb1,0x20,0x43,0x87,0x04,0x5b,0xeb,0x29,0x20,0x09,0x86,0x39,0x60,0x3e,0x89,0x1a,0xc3, + 0x68,0xa6,0x59,0xf8,0x09,0x0b,0xc7,0x57,0x59,0xdd,0x4b,0x62,0x7e,0xcc,0x88,0x86,0x10,0x0e,0xa1,0x53, + 0x20,0x63,0x2d,0xf4,0xca,0xb8,0x4b,0x30,0xb5,0xb8,0x4a,0xf2,0x6c,0x05,0x0a,0x7f,0x2a,0xcc,0x4c,0x4e, + 0xa0,0x0f,0x49,0x29,0xf8,0xb6,0x71,0xfc,0xa6,0xbc,0xbd,0x7d,0x0f,0x83,0x8e,0x95,0x6c,0x7e,0x88,0x2b, + 0xe4,0xc9,0x14,0xb3,0x02,0x76,0x93,0x1f,0x54,0x3c,0x4d,0xb0,0xfb,0x2a,0xb6,0xc5,0xd7,0x40,0xe2,0x13, + 0x04,0xb7,0x43,0x60,0x5a,0x17,0x71,0xfc,0xcd,0x87,0xb8,0x2d,0x54,0x89,0xcc,0x24,0xfd,0x27,0x7d,0x97, + 0x20,0xd0,0x66,0xaf,0x10,0x32,0x83,0x55,0xf8,0x7b,0x68,0x20,0xf0,0x8f,0x9a,0x9d,0xee,0x0a,0x0e,0x90, + 0xbd,0xf1,0xa1,0x86,0xa8,0x24,0x8b,0x88,0xd2,0xae,0x2e,0x4f,0x69,0x7f,0x34,0xb4,0x57,0x74,0x19,0x49, + 0xd8,0xb1,0xe8,0xf9,0xeb,0x27,0xcf,0x9f,0x19,0x5b,0x69,0xe1,0xf1,0x27,0x51,0x5b,0xd3,0x58,0x52,0x28, + 0xf9,0x3b,0x81,0xd1,0xd9,0xeb,0xcd,0xd9,0x43,0xfd,0xb3,0x36,0x21,0x04,0xba,0x45,0xb8,0x17,0x44,0x35, + 0x9e,0xe6,0x54,0x0e,0xf5,0x96,0x13,0xf3,0x9c,0x4a,0xbd,0xbe,0x06,0x5d,0x7c,0xa6,0xdb,0x6e,0x52,0x34, + 0xee,0xef,0xe8,0xb4,0x22,0x59,0xda,0x99,0x2f,0x50,0x55,0x5c,0x49,0x32,0x34,0x76,0xb1,0x9f,0xa1,0x22, + 0x6f,0xe0,0xdf,0xf6,0x1a,0x5e,0x13,0x1f,0x9f,0xff,0xfc,0xf1,0xf1,0xfb,0xe7,0x8f,0x3b,0xa3,0xa6,0xf4, + 0xa5,0x3f,0x4b,0xcd,0xec,0x70,0x4c,0xcd,0x42,0x2f,0xcf,0x2d,0xe9,0x14,0xda,0x02,0x6a,0x22,0xbe,0xab, + 0xe5,0x4b,0x22,0x22,0x66,0x05,0xe1,0x1e,0x58,0xd6,0xe4,0x67,0xb9,0x20,0x47,0x65,0xbb,0xd2,0xbb,0xe3, + 0x45,0x28,0x08,0x58,0x8a,0x8c,0xdb,0x81,0x2b,0x60,0x5c,0xb6,0xb2,0x0d,0x67,0xdb,0xfb,0xeb,0x81,0x65, + 0x08,0x20,0xe1,0xdb,0xde,0x7e,0xb4,0xa4,0x1b,0x07,0xdf,0xc9,0xcd,0x5e,0x91,0x4d,0x89,0x6b,0x2b,0x43, + 0x86,0x01,0xbb,0xad,0x32,0xbc,0x02,0xcb,0x2d,0x20,0x97,0x05,0x73,0xd4,0x2f,0x94,0x9b,0x42,0x89,0xd3, + 0xad,0x0c,0xd2,0xfa,0xf6,0x4e,0x34,0xf8,0x51,0x14,0x30,0x5d,0x8a,0x07,0xb8,0xa0,0x64,0x0c,0x8c,0x3b, + 0xc4,0x1e,0x09,0x17,0xc7,0x97,0x5c,0xce,0xd8,0x1b,0x97,0xc0,0xf6,0x45,0x6b,0x08,0x32,0x86,0x3d,0xb6, + 0xa4,0x17,0xa2,0xc9,0x99,0xd1,0x73,0xb0,0x8c,0xb0,0x7c,0xa9,0x0c,0x39,0xe7,0x55,0x72,0x59,0x87,0x51, + 0xe2,0x59,0x11,0xbe,0x48,0xf3,0x66,0x83,0x94,0x70,0xf2,0x06,0xc2,0xa6,0xd7,0xac,0x3f,0x22,0xe2,0x7f, + 0x6c,0xb0,0x0e,0x5b,0x26,0x43,0x18,0x74,0xcc,0x71,0x63,0x0b,0x8c,0x99,0x2b,0xd1,0x44,0x16,0xb3,0x84, + 0x32,0x6e,0xb2,0x37,0x40,0x01,0xaf,0x5b,0x96,0x20,0x2a,0xb8,0x66,0x15,0x30,0xc0,0xd4,0x17,0x5c,0x70, + 0xe0,0x0e,0x02,0xb1,0xfa,0x52,0x0d,0x4e,0x7d,0x5f,0x30,0x6b,0xc2,0x65,0xfd,0xb9,0xdd,0x70,0x92,0x8b, + 0xd9,0x2e,0x2b,0x70,0xd8,0x68,0x8d,0x59,0xf8,0x39,0xe1,0x76,0xb9,0xe4,0x81,0xda,0x3f,0xcf,0x8a,0xdd, + 0x83,0x75,0x40,0x36,0x31,0xea,0xdc,0x3e,0x10,0x55,0xe8,0x0a,0x7f,0xe6,0x6c,0x21,0x4e,0x2c,0xd9,0x92, + 0xfe,0xcf,0xe8,0xbf,0x75,0xc8,0x1c,0x10,0xa2,0x60,0x73,0xb1,0x49,0x6e,0x1b,0xc6,0xc5,0xa2,0x13,0xb1, + 0x49,0xbe,0xf8,0x5a,0x6c,0xbb,0xbf,0x7e,0x48,0x43,0x16,0xf9,0xe8,0xf6,0x81,0xdf,0x93,0xd3,0xe4,0x8b, + 0x2f,0x7b,0x05,0xa6,0x9d,0x02,0xab,0xe4,0xeb,0xbf,0xf6,0x0a,0xac,0x3a,0x05,0xe6,0xc9,0x97,0xff,0xdd, + 0x2b,0x30,0xef,0x14,0x38,0x78,0xf8,0x25,0x38,0xc6,0xdb,0x5b,0x7a,0xe0,0xcd,0x1c,0x76,0x71,0xf7,0x20, + 0x19,0xce,0xd8,0x43,0xc6,0xe9,0xed,0xed,0x92,0xf8,0xab,0xe4,0xa6,0xb9,0x2c,0x8c,0xc7,0xc0,0x34,0xa7, + 0x5a,0xbf,0xf8,0x32,0x85,0xe1,0x81,0x18,0xcd,0x8e,0x25,0xe9,0xeb,0xb4,0xe9,0x25,0x7d,0xfd,0xd7,0x74, + 0xd5,0x4b,0xfa,0x72,0x3f,0x9d,0xed,0xee,0x76,0x52,0x0e,0xd2,0xd9,0xde,0x5e,0xe7,0xb3,0x83,0x74,0xd9, + 0x2d,0xf3,0xf5,0x17,0xe9,0xb2,0x5b,0xe6,0xe0,0xe1,0x17,0xe9,0x69,0xb7,0xd0,0xc1,0xc3,0xaf,0xd2,0xd3, + 0xbd,0x3d,0x50,0x66,0x32,0x21,0x7e,0xcf,0x5d,0x64,0x34,0x1c,0xb5,0x30,0x2c,0xd7,0xf8,0x82,0xc3,0x4b, + 0x8a,0xf3,0x4b,0xbc,0x30,0xe3,0xa6,0x31,0x5f,0x40,0xac,0xb2,0xb7,0x97,0x8c,0x17,0x3b,0x3b,0xc7,0x26, + 0x86,0xef,0x22,0x61,0x0d,0x01,0x0c,0xfd,0x45,0xe0,0xea,0xec,0x47,0xaa,0x49,0xcc,0x50,0xc4,0x2c,0xbb, + 0xbd,0x34,0xda,0x83,0x58,0xaa,0x45,0xc5,0x12,0x94,0x1f,0x2c,0x98,0xc2,0x4d,0xfe,0x1c,0x5c,0x0e,0x2e, + 0x01,0xf1,0xf0,0x95,0x87,0xf0,0x55,0x65,0x03,0xf4,0x7e,0xe6,0x25,0x77,0x51,0x1c,0x89,0x80,0xf3,0x91, + 0xbd,0x97,0xe4,0xfe,0x31,0xa5,0xde,0x27,0xe2,0xe4,0x7e,0x94,0xc4,0xf7,0x39,0x0a,0x7d,0x34,0xee,0x66, + 0xb9,0xbe,0x94,0x89,0x2f,0xa5,0x22,0x97,0x51,0x12,0x6c,0xac,0x21,0x5b,0x0e,0x25,0x7e,0x55,0xe0,0x78, + 0xc7,0x9b,0xaf,0xeb,0xe4,0x1c,0x1d,0xfe,0xb8,0x42,0x84,0x35,0x36,0x89,0xaa,0x8f,0x38,0x30,0x70,0x40, + 0x95,0xfe,0xb3,0x2f,0x46,0x69,0x47,0x8b,0x7c,0xd9,0x35,0x3d,0xf1,0x61,0x80,0xd6,0x9b,0xd6,0xe5,0x41, + 0x81,0x75,0x92,0x1e,0x06,0xd6,0x44,0xff,0x70,0x67,0x7d,0xdc,0x3a,0xed,0xbc,0x0d,0x10,0xe2,0xb1,0xc1, + 0x0d,0xdf,0xe1,0xa1,0x95,0x89,0x35,0xc7,0x37,0xb0,0xf1,0xd5,0xa5,0x59,0xe8,0x4b,0xc4,0x11,0xf6,0x6d, + 0x65,0x7d,0x0b,0xd0,0x7f,0xb7,0x32,0xad,0xbd,0x95,0x20,0xd7,0xf0,0x3a,0x5f,0x4a,0x1c,0x22,0xf3,0x8e, + 0xa3,0xed,0x8e,0x0a,0x03,0x0f,0x3c,0xed,0x69,0x5a,0x68,0x42,0x81,0xdf,0x59,0xaf,0x6d,0x3d,0x54,0x7d, + 0x9c,0xa1,0xda,0xb9,0xc5,0xea,0x2c,0xda,0x86,0xcb,0x0e,0x21,0x7b,0x98,0x54,0x86,0x45,0xd8,0x81,0x96, + 0xf2,0xff,0x9f,0xc9,0x37,0xfe,0xb3,0x61,0x11,0xeb,0x52,0x4b,0xa5,0x76,0xb8,0x14,0xe1,0x64,0xf8,0x86, + 0xcb,0xb1,0x0f,0xc3,0x92,0xe2,0xec,0xbc,0x9d,0xc4,0x94,0x6f,0x88,0xe4,0x85,0x2e,0x57,0x91,0x72,0x15, + 0x70,0x7e,0x92,0xd6,0xa3,0x45,0x31,0x9b,0xcd,0x25,0x04,0x4d,0xb4,0xa8,0x56,0x8d,0x5e,0x2d,0x23,0x6b, + 0xf0,0x3b,0xae,0x8d,0x9a,0x7a,0xe2,0x5b,0x96,0x04,0xb6,0x5f,0x97,0x47,0x26,0x01,0x64,0x11,0xc2,0x04, + 0x56,0x8b,0xa7,0x28,0xa6,0x7d,0x01,0xed,0xb2,0x8c,0xe5,0x9e,0x0d,0x2c,0xb8,0x1e,0xe3,0xa2,0xd6,0x0b, + 0xc8,0xce,0x9a,0x80,0x73,0x31,0xd7,0xba,0x4f,0x33,0x5c,0xca,0x33,0xde,0xd0,0xfd,0x15,0x93,0xa9,0xbb, + 0x59,0xbc,0x71,0x6e,0x7a,0x8d,0x5c,0xe4,0x93,0x4d,0x29,0xff,0xb0,0x51,0xd3,0xa3,0xf4,0x70,0xaa,0x9a, + 0xa3,0xb4,0x19,0x04,0x81,0xda,0x81,0x80,0x50,0x48,0x05,0xdf,0xe0,0xc0,0xde,0x54,0xb7,0xb7,0xf2,0x72, + 0xb1,0xc7,0xb1,0x59,0x90,0xc4,0x3b,0x99,0x63,0xf0,0xda,0x30,0x9a,0x38,0xe8,0x44,0x85,0x21,0x5e,0x30, + 0x96,0x90,0x29,0xb4,0x8b,0xc3,0x26,0x1f,0x14,0xf6,0x83,0x5e,0xa8,0xdb,0x22,0x3c,0x35,0x8b,0x6e,0x6f, + 0xfc,0xd7,0x2c,0x99,0x09,0x40,0x34,0x8c,0x84,0x13,0xc0,0xaa,0xb1,0xda,0x2f,0xfa,0x56,0xfb,0xd0,0x2d, + 0xc1,0x29,0x82,0xaf,0x54,0x41,0xa0,0xd0,0x9b,0xc2,0xc6,0xce,0xaa,0x10,0x3b,0x4b,0x5c,0x2c,0x2c,0xbb, + 0xe6,0xfc,0x18,0x3b,0x4d,0x86,0x56,0xfc,0x55,0x6f,0xd6,0xc4,0x4a,0xbf,0xc8,0xa2,0x7b,0xf7,0x2e,0x08, + 0x99,0x31,0x02,0x05,0xe1,0x90,0x45,0xb1,0x11,0x17,0x52,0xc6,0x16,0xb5,0xbc,0x75,0x5f,0x46,0x7e,0x7f, + 0x82,0x14,0x8b,0x68,0xf1,0x9c,0x40,0x56,0x3a,0x12,0x67,0x07,0xf9,0xf4,0x98,0xf8,0xce,0xdd,0x02,0xe8, + 0xd1,0xf0,0x93,0x59,0x0e,0xea,0xb1,0x40,0xc0,0x7a,0x36,0xba,0xb1,0xe0,0x43,0x38,0x16,0xbc,0x5e,0x42, + 0xdc,0xf9,0xd5,0x12,0xd7,0x0d,0x52,0x17,0xd3,0xfb,0x06,0xc7,0xde,0x57,0xd6,0x34,0xc7,0x87,0x36,0xd9, + 0x8a,0xd1,0xe0,0xd6,0x4d,0xb4,0x5b,0xed,0x46,0xeb,0x28,0x58,0x80,0x5c,0x87,0x68,0x3c,0x44,0x6e,0x34, + 0x85,0x3f,0xd5,0x3e,0x80,0x61,0x70,0x99,0xd5,0x61,0x94,0x3c,0xda,0x87,0xd4,0x11,0xb7,0x73,0xbd,0xb4, + 0xa9,0x47,0x94,0xfa,0x53,0xed,0xa2,0xf4,0xc6,0xdf,0xf1,0xc7,0x61,0x09,0xf0,0xd4,0xdf,0xec,0x1d,0x4c, + 0x6e,0xa8,0xd7,0xa9,0x3f,0x7f,0xbe,0x23,0x8a,0x8d,0x58,0x71,0x1e,0x80,0x4d,0xfd,0xae,0x26,0x8c,0x8f, + 0xc1,0xac,0x53,0x29,0xcd,0x25,0x38,0x4e,0x13,0x13,0x3e,0x3f,0x80,0x64,0xa5,0x16,0x7e,0xaf,0xb3,0xdf, + 0x20,0x22,0xd8,0x66,0x67,0xbb,0x64,0xa5,0xe3,0x1f,0xeb,0x0c,0xe1,0x87,0x93,0xc9,0x1c,0xcf,0x49,0xfa, + 0x35,0x58,0xda,0x1f,0xeb,0x50,0x4c,0x65,0xe5,0xcf,0xe2,0x21,0x49,0x55,0x7c,0x57,0xdb,0x0a,0x38,0xb0, + 0x2c,0xdf,0xc3,0xb5,0x82,0xdf,0x77,0xc2,0x41,0x0d,0x1d,0xf9,0xc2,0x75,0x41,0x00,0xb9,0xbb,0xab,0xbe, + 0xfe,0xc2,0x3c,0xef,0xed,0xb1,0xa9,0x1d,0xcd,0xe1,0x6f,0x5c,0x93,0x80,0xd6,0x1a,0x8d,0xdb,0x98,0xe7, + 0xdd,0xf1,0xfe,0x6e,0xc6,0x6b,0x53,0x7e,0xa7,0xb1,0xaa,0xdf,0x6a,0xa8,0x1b,0xbd,0x26,0xd9,0xb8,0x77, + 0xb2,0x6f,0xc4,0xc4,0xdc,0x68,0x93,0x46,0xf7,0x88,0x2e,0x8d,0x71,0x87,0x22,0xd5,0x68,0xee,0xec,0x42, + 0x01,0x79,0x64,0x88,0x08,0x9c,0x50,0xb5,0xb7,0x1f,0xfe,0xa1,0x0e,0x09,0xaa,0xdd,0xdd,0xef,0x42,0xd3, + 0xf7,0x69,0x50,0xf0,0xbb,0xfa,0x9b,0xec,0xa7,0x00,0xee,0x57,0x61,0xd4,0x70,0x26,0x0f,0xdb,0xdb,0x5b, + 0xa6,0x23,0x03,0x21,0x36,0x4f,0x52,0xe8,0x6c,0x28,0xb3,0xc9,0x0e,0xb4,0xbc,0x16,0xf0,0xcb,0x18,0x27, + 0xe3,0xc0,0x31,0x4f,0x87,0x52,0x11,0x8d,0x48,0x15,0x3a,0x19,0x1d,0xe3,0xba,0xc8,0x8f,0x79,0x03,0xc3, + 0x9e,0xca,0xbf,0x85,0x52,0xb3,0x73,0xef,0xe1,0x99,0x55,0x77,0xc4,0x93,0x30,0xbd,0x3d,0x67,0xbf,0x4a, + 0x3a,0x9b,0xf9,0x2e,0xc6,0xee,0x8d,0x2f,0x7e,0x23,0x7f,0x5f,0xf7,0xc3,0xd1,0x6e,0x15,0xb1,0xbf,0x1e, + 0x70,0xb8,0x89,0x9d,0x9d,0x25,0x6f,0x4c,0xf1,0x61,0x5b,0x23,0x84,0x31,0xe2,0x12,0xa8,0xef,0xeb,0x4d, + 0x1e,0x11,0xad,0xfd,0x58,0x4e,0x6e,0xcc,0x39,0x08,0x4b,0x1d,0x39,0xcb,0x10,0x56,0xce,0xe0,0xfb,0x80, + 0x92,0x59,0x6a,0xaf,0xb3,0x8a,0xe9,0x54,0xfd,0xbe,0x4e,0x06,0x39,0x53,0x44,0xb4,0x0a,0xe6,0xab,0xeb, + 0x0c,0x30,0xd3,0xb1,0x8d,0x4a,0xb5,0xed,0x04,0x36,0x15,0xd8,0xfc,0x6d,0x27,0xae,0xc1,0x2d,0x00,0x8e, + 0x07,0x35,0x29,0x8c,0xd4,0xaa,0xac,0x0c,0xdf,0xc7,0xdf,0xd7,0x86,0x49,0xed,0x21,0x07,0xea,0xe8,0xe1, + 0x09,0xf4,0x40,0x06,0x77,0xbc,0x29,0x27,0x91,0xb9,0xfe,0x3a,0xb5,0xd6,0x89,0x1c,0x24,0xda,0xfb,0x02, + 0xf0,0x07,0x1c,0xee,0x99,0xfd,0xcc,0xfd,0xd5,0xe3,0x94,0xbc,0x46,0x7d,0x97,0x85,0xc4,0x40,0x18,0x49, + 0x45,0x9d,0x4f,0x2f,0xf1,0xa9,0xc9,0xe8,0x7d,0x8e,0xcf,0xd6,0xe0,0x71,0xbe,0x67,0x15,0xfd,0xa9,0x56, + 0x4b,0xad,0x6a,0x2f,0x33,0xfe,0xde,0x85,0x04,0x08,0x1c,0x0e,0x87,0xe6,0xc8,0x3a,0xdc,0x74,0x66,0xca, + 0x25,0x86,0x22,0x76,0x99,0x92,0x26,0xeb,0x7d,0xd8,0x95,0x6e,0x85,0xa9,0x77,0x09,0xb8,0x9c,0x8f,0x4f, + 0x47,0xc6,0x55,0x88,0x9c,0x15,0xa2,0xa8,0xc2,0x44,0xac,0x2b,0x8e,0xb2,0x28,0x0a,0x72,0x57,0xe6,0x96, + 0x41,0x94,0x50,0x7c,0x57,0xb4,0xbd,0xbb,0xd9,0xb8,0x27,0x15,0x25,0x01,0xca,0x77,0x1f,0x5f,0xbf,0xe2, + 0x04,0x2e,0x5d,0x0f,0x87,0xc0,0x0d,0x4c,0xa0,0x2a,0x2a,0xdb,0xa0,0x4d,0x4c,0x5e,0x51,0xae,0xf4,0x18, + 0x38,0x2f,0x97,0xa2,0x6f,0xe0,0xa4,0xe5,0x44,0xcd,0xb9,0x01,0xcc,0xa7,0xc8,0x8a,0xc3,0x22,0x30,0x3f, + 0xe2,0x6b,0x8d,0x45,0xca,0x26,0xcd,0xe7,0xa3,0x63,0x7e,0xcd,0x2a,0x63,0xc5,0xd8,0x42,0xb8,0x16,0x45, + 0x36,0xe2,0x7d,0x95,0x8c,0x97,0xd9,0x5c,0x6d,0xc7,0xa7,0x59,0x9e,0x88,0xb4,0xa1,0xa1,0x74,0x58,0x67, + 0xbf,0x7d,0xf7,0xf1,0xe5,0xdb,0x37,0xa8,0xe7,0xd4,0x8a,0x7f,0x88,0x21,0x1c,0x60,0x43,0x08,0x37,0xb0, + 0x83,0xb9,0xbf,0x18,0x4b,0x1c,0xa5,0x8d,0x1e,0x8e,0xaf,0x39,0x70,0x71,0x86,0x82,0xe3,0xbf,0x75,0x62, + 0x42,0xbd,0x8e,0x4f,0xd5,0x32,0xe9,0x54,0x1f,0x28,0xe2,0x44,0x95,0x20,0x2a,0xec,0xd7,0x96,0x6c,0x13, + 0xf3,0xb5,0x22,0x31,0x26,0x2d,0xf3,0xfc,0xf7,0x6b,0x1f,0xcc,0x5b,0xac,0x5c,0xf8,0x94,0xb7,0x04,0xd1, + 0x54,0x5c,0xd5,0xa6,0x26,0xe8,0x5b,0xc1,0x54,0x81,0xb7,0xbd,0x17,0x1a,0x81,0x3d,0x8c,0xe5,0xd1,0x76, + 0x14,0x24,0x63,0x29,0xfd,0x63,0x90,0x90,0xde,0x64,0x73,0x63,0x7f,0xc3,0x20,0x52,0xc9,0x2d,0x80,0x54, + 0x26,0xf0,0xeb,0xd4,0xfe,0xcc,0x5b,0x68,0x56,0x49,0x5f,0xcf,0x7d,0xa4,0x61,0xab,0xa2,0xfe,0x80,0xd4, + 0xc9,0x45,0xdc,0x79,0xe7,0xd8,0x09,0x81,0x37,0xa3,0xfe,0x9c,0x42,0x79,0x71,0x87,0x76,0xf6,0x53,0xd1, + 0x8b,0x5d,0x72,0xa6,0xbb,0x32,0x30,0x16,0x18,0x55,0x3d,0xd9,0x57,0x11,0xf6,0x23,0x11,0x5d,0x58,0xe3, + 0x9e,0xab,0x8d,0xdc,0xca,0xe4,0x26,0x41,0xc4,0x1f,0xb3,0x4f,0x57,0x59,0xa7,0xb8,0x9a,0xc3,0x20,0xb5, + 0xaa,0x17,0x7c,0x9d,0xfc,0x8c,0xd3,0xa0,0x20,0x68,0xe4,0x81,0xf6,0xe1,0x69,0xb6,0xba,0xbd,0x9d,0xab, + 0x25,0xe6,0xcb,0x6c,0x54,0xa9,0x9c,0xb7,0xb2,0x49,0xe9,0xd5,0x90,0xc1,0x08,0xde,0xec,0x70,0xf1,0x9b, + 0x5a,0x26,0xe9,0x72,0x2c,0x86,0xad,0x5d,0x68,0x0d,0xb5,0xed,0x4c,0x47,0xb6,0xe3,0x01,0x01,0xdb,0xbf, + 0x25,0x78,0xbb,0x70,0x9a,0xd0,0x04,0xf6,0x2d,0xec,0x2c,0x26,0xc9,0x6d,0x3f,0xd9,0x3b,0x2e,0xc3,0xd2, + 0xb6,0x1a,0xd9,0xf8,0x6b,0x55,0xa7,0xb6,0xaa,0xff,0x99,0x57,0xe9,0xd7,0x52,0x07,0x87,0xc6,0x3c,0x25, + 0x24,0x35,0x83,0x4d,0xe3,0xce,0xce,0x07,0x58,0x22,0x36,0xca,0x62,0x29,0xce,0x9e,0x25,0x71,0x9e,0x71, + 0x3e,0x01,0xef,0x29,0xfd,0xba,0x62,0x26,0xd6,0x09,0x30,0x40,0x1e,0xb2,0x04,0xd7,0x3a,0xf4,0x4a,0xe3, + 0x48,0xa1,0x46,0x8e,0x21,0x11,0x38,0x58,0x18,0xc7,0x26,0x84,0x81,0xd0,0x61,0x2b,0x62,0xca,0x52,0x1b, + 0xbb,0x96,0x07,0xbf,0x34,0xbb,0x0f,0x12,0x77,0x89,0xd3,0x80,0x47,0x78,0x50,0x0f,0x07,0xd7,0x42,0x60, + 0xb1,0x74,0x33,0x31,0x0c,0xb2,0x0b,0x0d,0x4b,0xcc,0x4e,0xe4,0x1b,0xa2,0xc1,0xc4,0x58,0x5f,0x6e,0xe1, + 0xe6,0xc7,0xa0,0x53,0xac,0x91,0x89,0x58,0x49,0xde,0x0e,0xcb,0x14,0xe3,0x92,0xb8,0x2c,0x3b,0xc0,0x30, + 0xf6,0xfe,0xff,0xef,0xb3,0x20,0xc8,0x7c,0x73,0x22,0x5c,0xba,0x0a,0x53,0xe5,0x10,0x00,0x13,0xd0,0x17, + 0xe1,0xdb,0x29,0x91,0xa9,0xf3,0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0xb1,0xd3,0x16,0x4c,0x65,0x0d,0x5b, + 0xb0,0x31,0xbc,0xa3,0xdd,0x6d,0x53,0xb5,0xc2,0x70,0x01,0xe2,0x16,0x4d,0x42,0x29,0x31,0x38,0xc7,0x7c, + 0x8f,0xc6,0x5d,0xdd,0x0c,0xe6,0xfc,0x44,0x1b,0xd2,0xc6,0x58,0x80,0x6c,0xdc,0xda,0x62,0x91,0xa8,0xbb, + 0x0e,0x98,0x59,0x60,0x9a,0x16,0x48,0x8d,0x71,0x93,0xc5,0xaf,0x45,0xdc,0x1a,0xab,0xad,0xe8,0x22,0x42, + 0x00,0xcc,0x98,0x95,0xc5,0xda,0xa0,0xf0,0x01,0xdc,0xf8,0x2b,0xe3,0xc6,0x0d,0xf2,0xe4,0x92,0xfb,0xf2, + 0xbe,0x08,0x1d,0x68,0xde,0xa3,0x68,0x28,0x88,0xb9,0xd2,0x5d,0xeb,0x91,0x4d,0x99,0x37,0x4b,0x21,0x36, + 0x93,0x39,0x2e,0x50,0x19,0x58,0x7e,0x01,0x42,0xe1,0x40,0x02,0x79,0x02,0xad,0xb4,0xd9,0x83,0xa1,0x7f, + 0xa9,0x69,0x6a,0xa8,0xb6,0x9d,0x9d,0xf9,0x60,0x2b,0x08,0xc0,0x6d,0xe0,0x38,0x70,0x3a,0xed,0x71,0xd2, + 0x4f,0xa5,0x80,0xc2,0x31,0x60,0x4c,0x2e,0x6a,0xeb,0x10,0xc4,0x74,0x16,0xc4,0x66,0x1c,0xc5,0x9a,0xcf, + 0x05,0x27,0x55,0xb0,0xa1,0x57,0x9a,0x0c,0x86,0x17,0xef,0x8a,0xc9,0x8b,0x22,0x7d,0x5d,0x10,0xc6,0xef, + 0xf9,0xa0,0x0d,0x2b,0x76,0x1a,0x35,0x87,0xdd,0x3a,0xfb,0x9b,0x75,0x75,0x44,0x12,0x0e,0x43,0x78,0xbb, + 0xdd,0xdd,0xe9,0x37,0xd0,0x2c,0xc2,0xdd,0x6c,0x3c,0xec,0xd4,0x34,0x7d,0x64,0xf2,0x15,0xae,0x69,0x56, + 0x03,0x4a,0x22,0x34,0x15,0x38,0xbd,0x86,0x4b,0x46,0xd0,0x6e,0x6e,0xd5,0xa5,0x26,0x9f,0x9a,0x00,0x1e, + 0x7c,0x96,0x48,0xcc,0x89,0xfa,0xf0,0x59,0xb1,0x1b,0x3d,0x83,0xa3,0x55,0x74,0xe4,0x4c,0xf6,0x60,0x15, + 0x55,0xd9,0xbc,0x55,0x2d,0x57,0x5d,0x77,0xb3,0xf3,0xec,0xb1,0xe6,0x50,0xb2,0x50,0xc2,0x1e,0xbe,0xb9, + 0xa3,0x92,0xa9,0xcd,0x1b,0xae,0x64,0x85,0x4a,0x60,0xec,0x4a,0x73,0xb4,0x0f,0xf5,0x83,0xbf,0x0d,0x98, + 0x27,0x3c,0x67,0x13,0xf4,0x92,0x1e,0xa9,0x40,0x4e,0x05,0xac,0xad,0x3b,0x51,0x0c,0xb0,0xc0,0x2e,0x26, + 0x2b,0x53,0xe2,0x25,0x4a,0xac,0xa8,0xc4,0xd4,0x95,0x38,0xcd,0x28,0x3d,0x9e,0xfb,0xa8,0xed,0x39,0x68, + 0xdf,0x6f,0xf6,0xa9,0xd6,0xd5,0xe4,0x5d,0x91,0xbe,0x2c,0x98,0xdb,0x4f,0x26,0xa5,0x34,0x66,0xeb,0x4e, + 0x6d,0x15,0xe9,0xbe,0x32,0xc1,0x9b,0x95,0x81,0x96,0x74,0xae,0x1c,0xac,0xa4,0xa7,0xb8,0x92,0xf9,0xa3, + 0xbd,0x3a,0x30,0x95,0x5a,0x76,0x76,0x9e,0x18,0x59,0xba,0xcc,0x9e,0x8d,0x04,0x12,0x1d,0x85,0x68,0xe0, + 0xb1,0xf6,0x87,0xf4,0xd8,0x62,0xba,0x47,0x2e,0xde,0x62,0xd2,0x66,0x2e,0x04,0xb7,0xe7,0xd7,0xed,0x38, + 0x3a,0x97,0x8b,0x75,0x25,0xca,0xa1,0x77,0xf9,0x07,0x20,0xd4,0xdd,0x0f,0x5a,0x02,0x55,0xad,0xc3,0x9d, + 0xf6,0x21,0x24,0xb1,0x0e,0xf4,0x17,0x7f,0x31,0xd7,0xd5,0x7a,0x01,0xc2,0xde,0x41,0x58,0xfe,0x63,0x40, + 0x4b,0x81,0x84,0x22,0x7a,0x07,0x6e,0x5d,0xb8,0x27,0x28,0x27,0xe2,0xfc,0x84,0x9d,0x29,0xdc,0x9b,0xb9, + 0xb6,0x73,0x2e,0x91,0xf7,0x7c,0x7a,0x6c,0x65,0xa0,0xd9,0x89,0xb6,0xdc,0x90,0xdf,0xd0,0x89,0xf3,0xd5, + 0x62,0x9b,0x4b,0xfa,0x8c,0x20,0x5c,0xd7,0x5c,0xf9,0x01,0x47,0x15,0x03,0x41,0x82,0x1b,0xef,0x3c,0x6d, + 0x83,0x88,0x64,0x84,0x18,0x15,0xfc,0x67,0x79,0x63,0x13,0x90,0x8c,0xe4,0x33,0x56,0xe5,0x9d,0xda,0xd7, + 0x8f,0x95,0x24,0x2c,0x6d,0xc2,0x63,0xa6,0xd9,0x25,0x11,0x1e,0xc2,0x34,0xa5,0x3a,0x37,0x5f,0x9d,0xbb, + 0x77,0xfb,0xd9,0x85,0x4b,0x09,0xbf,0x5b,0x50,0xea,0x89,0x86,0x5d,0xf9,0x73,0x54,0xa9,0xce,0x6c,0xe5, + 0xea,0x1a,0xe5,0x71,0x0d,0xbc,0x64,0x1c,0xbb,0x5e,0xd9,0x89,0x51,0x97,0xee,0xdb,0xc7,0x5c,0xaf,0xba, + 0x72,0x4d,0xa8,0x7b,0xf6,0x6b,0x93,0xf5,0xc9,0xf7,0xcf,0x7d,0xff,0x94,0xd2,0x66,0x66,0x4f,0xa9,0xc7, + 0xd9,0x65,0xad,0x3e,0xd0,0x1f,0x63,0xe0,0x3f,0xfe,0x40,0x14,0x90,0x23,0xb9,0x1e,0x67,0xf1,0x87,0xcc, + 0xbe,0x26,0x96,0x63,0xe5,0x95,0xf8,0x98,0x6d,0x3f,0x0e,0x82,0x30,0x11,0x47,0xca,0xd6,0xff,0x55,0x05, + 0x3a,0x10,0xf1,0x85,0xb1,0x24,0x1f,0x6f,0x6f,0xaf,0x70,0x78,0xd2,0x1a,0x5c,0x09,0x08,0xbc,0xcd,0x3e, + 0xee,0xec,0xcc,0x26,0x33,0xda,0x0d,0xaf,0xf0,0x78,0x31,0xb9,0x48,0x97,0xea,0x57,0x3c,0x9e,0x4f,0xce, + 0x69,0x5f,0x3c,0xcf,0x3e,0x4e,0x2e,0x6f,0x6f,0x17,0xe9,0x42,0xbd,0x43,0xea,0x80,0xff,0xcc,0xd5,0xe4, + 0x2a,0x3d,0x53,0x2f,0xa9,0xe0,0xbd,0xdb,0xdb,0xeb,0xf4,0x5a,0x3d,0xa3,0xc7,0x4f,0xb7,0xb7,0xc7,0xe9, + 0xb1,0x7a,0x41,0x7c,0x4b,0x11,0x3f,0x4d,0x26,0x4f,0x65,0xda,0xd2,0xa7,0x89,0x7a,0x93,0xf1,0x41,0xd8, + 0xb0,0xc2,0x5e,0xbd,0xce,0x7e,0xd5,0xf1,0xbb,0x44,0xbd,0xcf,0x3c,0x9c,0x84,0x9e,0xba,0xc9,0xcd,0x1b, + 0x02,0xc9,0x7b,0x90,0xc4,0xfe,0x9a,0x28,0xfe,0x7d,0x45,0x47,0xe5,0x7b,0x0f,0x9a,0x93,0x98,0x4a,0x70, + 0xc6,0xdb,0x44,0x3d,0xdb,0xd9,0x79,0xc6,0x96,0x16,0x2f,0x77,0x76,0x5e,0xc2,0x9f,0x21,0xa8,0xd5,0x04, + 0x6e,0x37,0xf0,0xda,0x9c,0x57,0x34,0xb0,0xbf,0xd3,0x76,0xf0,0x26,0x52,0xbe,0x51,0x2b,0x34,0x92,0xb9, + 0x06,0x9f,0xaa,0x4c,0x68,0xe5,0x63,0x84,0x3d,0x62,0x56,0xd3,0x3f,0x1f,0xb2,0x60,0xed,0x68,0xcc,0x97, + 0x98,0x8a,0x61,0x62,0x29,0x86,0x89,0x1a,0x3b,0xcc,0xed,0x9b,0xfe,0x7b,0x9c,0xa8,0x77,0x3b,0x3b,0xef, + 0xa8,0xeb,0xef,0x61,0x36,0xf5,0x7c,0x67,0xe7,0x39,0xfa,0x8c,0x11,0x5f,0x99,0x01,0x5d,0xc9,0x88,0xd5, + 0xa5,0x0e,0xe7,0xe4,0x2a,0x9c,0x8f,0xb7,0x9d,0xe9,0xb8,0xbd,0x7d,0x4d,0xe7,0xf8,0x2b,0x1d,0xbf,0x48, + 0x26,0xc1,0x29,0xf4,0x5e,0xbd,0x48,0xd2,0x4f,0x28,0xbe,0xa2,0xc6,0x80,0x44,0x54,0x30,0x11,0x62,0x95, + 0x5b,0x87,0xfd,0xa1,0x6e,0x70,0x55,0xef,0xe3,0xae,0x07,0x98,0x41,0x20,0x5e,0xd8,0x4d,0xdd,0xf9,0x14, + 0x36,0x1f,0x77,0x26,0x38,0x26,0xce,0xd3,0x4f,0xa2,0x9b,0x31,0xe8,0xba,0x87,0xd2,0xc5,0x1f,0x55,0xa6, + 0x33,0x2b,0x13,0x75,0x4e,0x80,0x88,0x40,0xab,0x97,0x32,0x25,0x39,0x3c,0x2c,0xf8,0x77,0x36,0x30,0x25, + 0x39,0xf1,0x50,0x98,0x12,0x2e,0xd5,0xe9,0xd3,0x95,0x4c,0xc9,0xbd,0xce,0x94,0x7c,0x52,0xf7,0x78,0x4a, + 0x72,0x35,0x57,0x9f,0x64,0x4a,0x2e,0x40,0x99,0xe5,0xf4,0xa6,0x2e,0xf9,0xa3,0x4f,0xa0,0xb3,0x8d,0xa1, + 0xb9,0xc1,0x95,0x79,0x88,0xce,0x82,0xb7,0x2e,0xae,0xf4,0xe9,0x16,0x57,0x36,0x77,0xe3,0x4a,0x89,0x22, + 0x2b,0x77,0xd1,0x38,0xd4,0x68,0x19,0x28,0xd1,0xc6,0x6e,0x73,0xc3,0x16,0x49,0x5b,0x27,0x95,0x86,0x71, + 0xe6,0x3c,0x93,0x58,0x31,0x84,0x24,0x21,0x6f,0xc9,0x2d,0x56,0x5b,0xda,0x57,0x8b,0xfc,0x66,0x36,0x21, + 0xc4,0x7d,0xe7,0x94,0x28,0xf8,0xeb,0x15,0xb2,0x08,0x43,0x9a,0x42,0x84,0x15,0x1b,0xc1,0x5e,0x92,0x71, + 0xe6,0x6a,0x77,0xb8,0xeb,0x9a,0x92,0xd8,0xb3,0x5b,0x4a,0x1c,0xe3,0xd5,0xa2,0xb2,0x4b,0xd9,0xe6,0x2b, + 0xd9,0xe6,0x57,0xd8,0xe6,0x17,0xb4,0x3a,0x8c,0x10,0x88,0xe5,0x3d,0x96,0xba,0xd2,0xe3,0x84,0xb1,0xa2, + 0x1d,0x5a,0x77,0xeb,0x87,0x20,0x02,0x11,0xd2,0x00,0xc0,0xf0,0x1a,0x0c,0xa4,0x3b,0x18,0xe2,0x20,0x60, + 0x97,0x82,0x43,0x3c,0x80,0xcc,0x92,0x0e,0x84,0x4c,0xe2,0x4b,0xc6,0x21,0x0c,0x39,0x54,0xe7,0x19,0x1b, + 0x8a,0xc4,0xd8,0x10,0x8b,0x9d,0x9d,0x05,0xde,0x54,0xd0,0x49,0x83,0x49,0xae,0x27,0xd7,0xb4,0x5d,0xd3, + 0x2a,0x0e,0x09,0x82,0x57,0xc1,0x89,0xbc,0x19,0x9d,0x8a,0x66,0x43,0x2e,0x60,0x0c,0xb5,0xcb,0xbf,0x22, + 0x66,0x2d,0xb3,0x12,0x3e,0x00,0xb2,0x09,0xb1,0x0d,0x73,0x62,0x84,0x4a,0x0e,0x02,0x48,0x4d,0xa8,0xf8, + 0x46,0x20,0x9c,0xfa,0x70,0xff,0x28,0x45,0x18,0x1c,0x77,0xe5,0x1f,0x9c,0x61,0x0c,0xfd,0xf4,0x4d,0xa0, + 0xd1,0x7b,0x6e,0xe8,0x95,0x6d,0xa8,0xef,0x75,0x88,0x01,0x3e,0x32,0x3b,0xe7,0x1d,0x47,0x1c,0xe9,0xfd, + 0xd2,0x3e,0x29,0x6f,0x2a,0x37,0x4c,0xdf,0xba,0x92,0x6b,0xb5,0x1f,0x54,0xf5,0xb2,0x47,0xc5,0xeb,0x40, + 0x32,0xb6,0x58,0xcd,0xdb,0x62,0x39,0xd7,0x42,0xaf,0xdf,0xde,0xf6,0x47,0x16,0x44,0x4e,0x63,0x53,0x17, + 0x38,0x6f,0x39,0xc7,0x9b,0xbe,0xef,0x16,0xfc,0x40,0x7c,0x2e,0xae,0xe0,0x28,0x92,0x2a,0x3b,0x26,0xf6, + 0xef,0x05,0xac,0x80,0xc0,0xef,0x2a,0x5c,0xe5,0x34,0xe7,0x8b,0xd9,0x69,0x02,0x2a,0x06,0x1f,0x9b,0x90, + 0x05,0x01,0xc1,0xae,0x63,0xfe,0x24,0x88,0x20,0x0c,0xae,0x0b,0x74,0x95,0x29,0xcc,0x8a,0x2a,0x39,0xc7, + 0xfa,0xa9,0x19,0xdc,0xfa,0x0a,0xe6,0xa6,0xba,0xe9,0x7b,0x9d,0x1b,0x28,0x9f,0xe9,0xee,0x75,0x2d,0xfd, + 0x6b,0xf8,0x5c,0xd6,0xf6,0x75,0x2c,0x86,0xb5,0x81,0x1f,0x49,0x08,0x65,0x22,0x2a,0xe5,0x38,0x6f,0xb8, + 0xac,0x40,0xd4,0x7e,0x46,0xfc,0x18,0xb8,0x82,0x68,0x71,0x86,0x16,0x9e,0xc5,0xcb,0x4c,0x61,0x84,0xe6, + 0x7d,0x40,0xee,0x28,0xc4,0x83,0xdc,0xfc,0xf2,0x40,0xbd,0xd7,0x2e,0x43,0x19,0x41,0x7e,0x48,0x6f,0xbe, + 0xef,0x30,0x9d,0x7d,0x87,0x87,0x0b,0x76,0x77,0x80,0xd4,0x59,0xd4,0xe2,0x91,0xf0,0x99,0x45,0x2b,0x39, + 0x5a,0x11,0x26,0xe5,0xd8,0x49,0xa3,0x59,0xd1,0xb0,0x8d,0xb2,0x64,0x84,0xea,0x8b,0x27,0xc1,0x4c,0x6c, + 0xdf,0xe1,0xf0,0x20,0x92,0xaa,0xb6,0x8f,0x7c,0x27,0x6d,0xfa,0x84,0xfd,0x69,0xee,0x92,0x99,0x05,0xae, + 0x17,0x81,0x54,0x94,0xc9,0x80,0x0d,0xc3,0x58,0xbb,0x8a,0x38,0xe3,0x3b,0x26,0xb1,0xd6,0x6d,0x7d,0x42, + 0x75,0xfc,0x03,0xde,0x60,0xce,0x25,0x31,0x14,0x72,0xfe,0x10,0x34,0xc0,0x57,0x60,0xfa,0x68,0xa9,0xdd, + 0x40,0x4a,0xa5,0xbf,0xb2,0x22,0x41,0x10,0x25,0x36,0x6f,0x1e,0x9b,0xd8,0x4a,0x84,0xfe,0x18,0x15,0x5a, + 0x7e,0xb2,0xe7,0xcd,0x57,0xd0,0x17,0x97,0xb8,0x1c,0xe4,0x88,0xfd,0xf9,0x06,0x62,0xda,0xfe,0xe8,0x25, + 0x49,0x0f,0x7e,0x99,0xed,0x7d,0xd2,0x7a,0xb9,0x97,0xcf,0xe9,0xb0,0xb8,0x67,0x6e,0x1e,0x64,0xfa,0xc6, + 0x07,0xca,0x8e,0x23,0x5f,0x24,0x52,0x37,0xdc,0xb5,0x54,0x6f,0xcc,0x8e,0xef,0x73,0x08,0xc4,0xdf,0x19, + 0x60,0x63,0x92,0x88,0x95,0x03,0x27,0x7c,0x13,0xa6,0x7f,0x65,0x5b,0x4b,0x7e,0x37,0xa7,0xa9,0xcb,0x77, + 0xa7,0x6b,0x60,0x3a,0x6e,0xaa,0x13,0x71,0xab,0xbe,0x7c,0x57,0x21,0x2c,0x11,0x4a,0x13,0x70,0x3e,0x21, + 0xc2,0x98,0x43,0x83,0xcc,0x0b,0xfa,0xf4,0x3d,0xee,0x81,0x0f,0x63,0xd6,0x87,0xcb,0x2b,0x15,0x10,0x88, + 0x2b,0xe7,0x64,0x23,0xb5,0x99,0xab,0x2d,0x4e,0xdb,0xbd,0x92,0x7f,0xf8,0x0e,0xb5,0xb6,0x5a,0xd2,0x2b, + 0xfd,0x05,0x06,0xab,0x6f,0x6f,0x0b,0xd7,0x05,0x0c,0x61,0x66,0x35,0x90,0x95,0xe9,0x0a,0x0b,0x86,0xc7, + 0x95,0xbf,0xa8,0x9e,0x88,0xcc,0x9f,0xf4,0xc9,0xa7,0xa2,0x75,0xfc,0x67,0x16,0x71,0x26,0x02,0xea,0xc5, + 0xd1,0x6e,0xbd,0x1b,0x2d,0xaf,0x14,0xab,0xfa,0x97,0x57,0x49,0xa4,0xaa,0x00,0x80,0x2d,0x2f,0x9e,0x45, + 0xfb,0x4d,0xa8,0xa7,0xff,0xbe,0xb3,0xeb,0xf4,0xe4,0x55,0x95,0xbe,0xad,0xbc,0x04,0xdf,0x4a,0xc5,0xca, + 0x8e,0x96,0xce,0x64,0x7f,0xac,0x70,0xeb,0x6e,0x18,0x36,0xde,0x61,0x6f,0xa3,0xa0,0x66,0x46,0xfa,0x80, + 0x63,0x05,0xb4,0xca,0x19,0x57,0xa4,0x5a,0x59,0x73,0x88,0xce,0x5d,0xbe,0xfd,0x9b,0x5d,0x95,0x37,0x13, + 0x70,0xf7,0x83,0x98,0x78,0xcb,0xc6,0x35,0x12,0x8f,0x12,0x86,0xc4,0x3b,0x72,0xe9,0x44,0x09,0x64,0x87, + 0x41,0x55,0x0e,0xc3,0x0b,0x6c,0xbe,0xb5,0x07,0xdb,0xa6,0xea,0x9e,0xad,0x58,0x08,0x50,0xaf,0x21,0x67, + 0x64,0x4c,0xc6,0x61,0xce,0xe0,0x7b,0x10,0x58,0x3e,0xb5,0xe2,0x5a,0xb4,0x1d,0x1a,0x37,0x19,0x73,0x86, + 0xbb,0xaa,0xac,0xf5,0xa9,0xab,0x92,0x9e,0x39,0x72,0x9a,0xf5,0x87,0xea,0x48,0x8a,0x02,0x23,0xda,0x71, + 0x29,0xa1,0x3e,0xdd,0x55,0x33,0x25,0x64,0xae,0xde,0xdd,0x08,0x22,0x4a,0x13,0xc8,0xd3,0xc5,0x8a,0x06, + 0x15,0x8a,0xbe,0xf6,0x94,0xaa,0x11,0xc2,0x5d,0x38,0x3b,0x67,0x58,0x6b,0xd3,0x3b,0xf4,0x5d,0xa6,0x7b, + 0x98,0xcf,0x28,0x90,0x4a,0xeb,0x6e,0x74,0x6f,0xfe,0x0a,0x56,0x50,0x62,0xc8,0xc3,0x61,0x0f,0x22,0xbe, + 0x05,0x8f,0xaa,0xe1,0x90,0x5b,0x08,0xa4,0x6d,0x32,0x29,0x69,0xcf,0x94,0x20,0x2a,0xc3,0x7d,0x13,0x26, + 0xcb,0x41,0xe8,0xbf,0xb5,0xd1,0x8e,0x6b,0x57,0x14,0xf8,0xdd,0x95,0xfa,0x28,0xb2,0xb3,0xfb,0x51,0x74, + 0x9f,0x0d,0xc9,0xef,0xbb,0x80,0xa5,0xf7,0x69,0x91,0x37,0x7b,0x0a,0x44,0xee,0x6a,0xa7,0x17,0x5f,0xab, + 0xe2,0x0b,0x96,0xfb,0x13,0x24,0x23,0x8e,0xed,0x64,0x14,0x8d,0xed,0xa2,0x43,0x4e,0xd4,0x45,0x65,0xcc, + 0x8f,0xa4,0x48,0x39,0x2f,0x4a,0xbd,0xe7,0x5a,0x96,0xe2,0x92,0xfa,0xd1,0x24,0xb2,0x45,0x65,0xef,0xca, + 0x1b,0x82,0xe3,0x45,0x15,0x7a,0xc8,0xb4,0xd9,0x02,0x0e,0x6d,0x0c,0x90,0xd4,0xd3,0xf1,0x26,0x4c,0xaa, + 0xc0,0x7c,0x97,0x29,0x1a,0x07,0x73,0x5c,0xb1,0xa6,0x7d,0x52,0x3a,0x01,0xd8,0x58,0x3f,0x2a,0x6d,0xe4, + 0x81,0x3a,0x83,0xdf,0x92,0x96,0xcd,0xa2,0x2a,0x79,0x16,0x72,0xea,0x65,0x65,0xc4,0x55,0x46,0xea,0x7f, + 0x9e,0x37,0x4f,0x0a,0x46,0x7a,0x30,0x70,0x55,0x71,0x78,0xa7,0x92,0x83,0x63,0x73,0x3f,0xd0,0x13,0x89, + 0x72,0x13,0x86,0xbd,0xf7,0xf7,0x65,0xf4,0x55,0x02,0x1c,0x05,0xd2,0x4a,0x98,0x0e,0x12,0x5c,0xf7,0x0d, + 0xc3,0x09,0x5c,0xc9,0x95,0x98,0xcb,0x21,0x2c,0x8a,0x79,0x52,0x41,0xc3,0x43,0x0c,0xaa,0xef,0x5b,0x98, + 0xfd,0x9e,0xb3,0x69,0x18,0x3f,0x43,0xbf,0x2b,0x96,0xcc,0x12,0x95,0x14,0x07,0x86,0x18,0x1d,0xef,0x2b, + 0xa3,0x9c,0x6e,0x17,0xf3,0x48,0xe2,0x9f,0x5d,0x22,0x7e,0xa7,0x34,0x15,0x28,0xae,0x99,0x46,0x9f,0xd2, + 0xb4,0xcc,0x39,0x47,0x0a,0x81,0xde,0xbb,0x2e,0xa7,0x3b,0x3b,0x6c,0x87,0xe8,0xa3,0x5a,0x72,0xae,0xca, + 0xc1,0x10,0x47,0xf7,0xd8,0xf2,0x2e,0x62,0xfb,0x6e,0xe8,0xf2,0x3d,0x84,0xec,0xec,0x9c,0x54,0xee,0xc2, + 0x5b,0x8b,0xde,0x84,0xd9,0x22,0xa2,0x9b,0x4d,0x37,0x11,0x6b,0x2b,0x65,0x60,0xac,0xc3,0x80,0xb2,0xef, + 0x86,0x07,0xfc,0x4e,0x06,0x5c,0x9a,0xf2,0xb4,0xfc,0xdb,0xe1,0xe5,0x8c,0xab,0xac,0x33,0x7b,0x2f,0x65, + 0xf6,0xcc,0x1a,0xbd,0xe6,0xb0,0x0e,0xc4,0x50,0xad,0x0e,0x0f,0x8e,0xc6,0x73,0x33,0xd3,0x4e,0xce,0xe7, + 0xfc,0xba,0x76,0x0f,0x30,0x92,0x65,0x56,0x13,0xc3,0x57,0x10,0x7f,0x57,0x11,0x4f,0x37,0x87,0x8c,0x4b, + 0xc5,0xf1,0x69,0xd6,0x26,0x1d,0x1f,0x3d,0xc4,0xe9,0x71,0xaf,0x1b,0x26,0xa2,0x4b,0x65,0x3c,0xa2,0xd2, + 0x99,0xb1,0xed,0x3c,0x87,0x65,0x4b,0x7a,0xa1,0x9c,0x19,0x62,0xba,0x58,0x73,0x90,0x0d,0x6b,0x3b,0xc8, + 0x13,0x60,0xe6,0xa3,0x67,0xcc,0x57,0xf1,0xad,0x3b,0xe1,0xec,0x46,0x0b,0x08,0xb1,0xb1,0xaa,0xf5,0x67, + 0xa7,0x7a,0x67,0xc7,0xcc,0xb5,0xf5,0x32,0x31,0x6a,0x6b,0x35,0x53,0xe7,0x8a,0x3a,0xb3,0xee,0xf0,0x53, + 0x3f,0xfb,0xd3,0x9c,0x81,0x3a,0xb3,0x96,0x8a,0x04,0xc9,0x51,0x32,0x64,0xbe,0x66,0xed,0x92,0x65,0xa2, + 0x9f,0x99,0x90,0x4f,0x96,0x5f,0x61,0x25,0x2e,0x7d,0x9b,0x95,0x87,0x0f,0x8f,0x8c,0xfe,0xc8,0x52,0x5c, + 0xb4,0x14,0x26,0xc5,0xad,0xda,0x1b,0x0b,0xd4,0x85,0xa9,0xef,0x85,0x8f,0x00,0x5c,0x4d,0x10,0xc7,0x69, + 0x5e,0xe4,0x0d,0xe5,0xda,0x0f,0x5e,0xc8,0x07,0xf5,0xa8,0x20,0x9a,0x26,0x27,0xda,0xf1,0x20,0xab,0x7c, + 0xbd,0xaa,0xa2,0x56,0xd9,0x02,0xc3,0x66,0x3f,0xcc,0x2a,0xdf,0x11,0x04,0x5f,0xb1,0x35,0xaa,0x9a,0xaf, + 0xc5,0x2b,0x39,0x66,0x41,0xd7,0x91,0xe4,0x5f,0x4e,0x25,0x53,0x9c,0x3e,0xad,0x08,0x2b,0x30,0x5d,0xc6, + 0x3c,0x4a,0x98,0xc0,0xa1,0x57,0xbb,0x49,0x56,0xcf,0x13,0x58,0x43,0x87,0x42,0xe7,0xbf,0xeb,0xee,0xaa, + 0xf1,0xb9,0x69,0xa3,0xdb,0xb7,0x56,0x58,0x19,0xd8,0x3b,0xf7,0x99,0xc1,0x49,0x64,0xa3,0x3d,0xa5,0x37, + 0x51,0x1a,0x55,0xf8,0xf1,0x81,0x1f,0xcc,0x5d,0x7b,0xbb,0x19,0x0c,0xfe,0x8a,0xdd,0xfb,0x51,0x7a,0x7f, + 0xb7,0x45,0xbc,0x20,0x76,0x2b,0x87,0xdd,0xb7,0xbf,0x4f,0x3a,0x10,0x79,0xb3,0xe1,0xa2,0x37,0x8b,0x2e, + 0x1d,0x55,0xeb,0xee,0x27,0x75,0x92,0x4c,0xe2,0x5b,0xd7,0xd1,0x66,0xe0,0x6a,0x77,0xd1,0x59,0x74,0x08, + 0xd3,0xf2,0xae,0x70,0xde,0xeb,0x44,0xcd,0x75,0x24,0xd6,0x13,0x50,0x41,0x33,0x79,0x14,0x99,0x93,0xef, + 0xef,0x95,0x25,0x9a,0xc5,0x71,0x8c,0x68,0x9f,0xef,0x7b,0x49,0x0c,0xa0,0xde,0xa8,0xd7,0x5a,0x39,0x44, + 0x44,0xe8,0xe1,0x4f,0x6e,0x7d,0x57,0x59,0x84,0xc4,0x61,0x29,0x83,0xc2,0xf4,0xed,0xbf,0x38,0x44,0x50, + 0xb5,0x9b,0xf1,0x83,0xfa,0xb6,0x62,0xad,0x79,0x6e,0x8d,0x7d,0x7d,0xa0,0x6c,0x7d,0x95,0x4b,0xb4,0x94, + 0xc6,0x06,0x02,0x0f,0x6a,0x1a,0x53,0x05,0x3f,0x57,0xf1,0x61,0x34,0x6d,0xeb,0x39,0x0d,0x82,0xad,0x86, + 0xe9,0x37,0x9f,0xe3,0xef,0x42,0xb7,0x79,0x74,0x74,0xb7,0x4d,0xfb,0xf6,0x94,0x49,0xc6,0x3b,0x4c,0xe2, + 0x0d,0x7a,0x1d,0x45,0x30,0xd3,0xff,0x9e,0x88,0x30,0x37,0x59,0xb7,0xb7,0xe0,0x15,0xc5,0x1c,0xc5,0x75, + 0xd8,0xba,0x18,0x3b,0xcb,0xa1,0xb8,0xd8,0x25,0x2c,0x0f,0x2b,0x8f,0xfb,0x27,0xab,0xb6,0xad,0xca,0xfb, + 0x98,0x06,0xa9,0x14,0x61,0x05,0x76,0x73,0x6e,0x98,0x18,0x2a,0x53,0x2d,0xa5,0xd1,0x22,0x38,0xd5,0x1f, + 0x1d,0xf0,0x63,0x6c,0x47,0xa9,0xa9,0x0a,0xe2,0x6e,0xc6,0xa6,0x92,0x1b,0x50,0xd7,0x71,0x39,0x31,0x6b, + 0xb2,0x1b,0xd9,0x8c,0x28,0xad,0x27,0x6c,0x3e,0x6b,0x33,0x12,0x9f,0x63,0x17,0x90,0x21,0xcd,0xb6,0x75, + 0x7b,0x5b,0xdb,0x5a,0xd2,0xa1,0x66,0x5c,0x45,0x21,0x74,0xea,0xe0,0x3c,0xe6,0xb0,0x3c,0x2f,0xf9,0xd6, + 0x9a,0x83,0xfd,0x24,0x8c,0xc9,0x6f,0xa7,0xd1,0x84,0xbf,0x26,0xc2,0x91,0xaa,0x33,0x70,0xf6,0x6d,0xe5, + 0x43,0x25,0x47,0xc7,0x9f,0xe2,0x6e,0x51,0x62,0x1e,0x7a,0x88,0xb8,0xe5,0x8d,0xd3,0x4f,0x2d,0x91,0xea, + 0x3f,0x0d,0xcd,0x43,0xcb,0x8e,0xe1,0x14,0xc2,0xfb,0xfc,0x03,0x11,0x80,0xad,0xc9,0xaa,0x04,0x93,0x4b, + 0x23,0x98,0x18,0x72,0x10,0x59,0xb7,0x3f,0xa0,0xc5,0x9f,0xd4,0x62,0x17,0x95,0xde,0x3f,0x9e,0x9a,0xe0, + 0x06,0xf7,0x79,0xda,0x54,0x2f,0x36,0x73,0x5a,0xf6,0xa3,0x35,0x07,0x08,0xac,0xf6,0x7b,0xd8,0xda,0x1c, + 0x41,0xbd,0xc1,0x04,0xbb,0xbc,0xbe,0xab,0xab,0xa9,0x6e,0x1a,0x3d,0xb3,0x4b,0x6f,0x0c,0x68,0x24,0xbe, + 0x8e,0xf8,0x11,0x6c,0xcb,0xc3,0x46,0xd1,0x3c,0x2c,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x46,0xc1,0xae,0x61, + 0x68,0x10,0x2c,0x04,0xa5,0xd9,0xa5,0x86,0x71,0x31,0xbb,0x00,0x38,0x74,0x3e,0xc1,0x6c,0x07,0xef,0x29, + 0xed,0xec,0x26,0x28,0xf0,0xb0,0x57,0xe0,0x21,0x7c,0xd4,0x1c,0xbb,0x16,0x76,0x83,0xc9,0xa1,0xe3,0x79, + 0x6c,0x6c,0xbf,0x3d,0xc1,0x0b,0x63,0xed,0x1c,0x41,0xaf,0x82,0xa9,0x37,0x53,0x46,0x53,0x4d,0x6b,0x19, + 0x8c,0xaf,0x38,0xe5,0xe1,0x15,0xa7,0x1b,0xa3,0x6b,0xfc,0x34,0x78,0x02,0x7c,0xbb,0x47,0x80,0x0b,0xe1, + 0x3e,0xc4,0x81,0x0c,0xcc,0x91,0xb7,0x37,0xb0,0xcc,0xc9,0xed,0x6d,0x40,0xe9,0x13,0x46,0x5c,0x95,0x56, + 0xa7,0x1f,0x1d,0xb3,0xbd,0xf2,0x6e,0x5c,0xf3,0x7c,0xd4,0x12,0xcb,0xce,0x07,0x46,0x8f,0x6e,0x30,0x49, + 0x12,0x1c,0xfd,0x0e,0xf7,0x9b,0xcb,0xd2,0xd8,0x54,0xd0,0xa8,0x53,0x94,0x16,0x21,0x58,0x07,0x3d,0xaf, + 0x23,0x5e,0x1d,0x67,0xbc,0x6f,0x5c,0x18,0x22,0xbb,0x83,0xb6,0x71,0x9b,0x69,0x4e,0x5b,0x19,0x9e,0xe2, + 0x84,0x7b,0x98,0x47,0xf0,0x18,0x04,0x5d,0x43,0xa0,0x2c,0x79,0x8b,0x2b,0xd8,0x24,0xd9,0x32,0xbc,0xad, + 0x72,0x1a,0x0b,0x5b,0x57,0xcb,0x5c,0xf2,0xf8,0x65,0xe2,0x7d,0x00,0xd8,0x90,0xfc,0xe8,0x8a,0x46,0xbb, + 0xec,0xc6,0x04,0xf5,0xa6,0x2b,0xd6,0x07,0x43,0x14,0xe6,0x36,0x39,0xed,0x24,0xe3,0xf6,0x34,0x15,0x65, + 0x71,0x67,0xd6,0x4c,0xf3,0xbe,0x41,0xc5,0x5d,0x71,0x74,0x26,0x78,0x70,0xa6,0xd8,0x26,0x36,0x0a,0x9a, + 0x5b,0x84,0x3e,0xc3,0xe3,0x7a,0x80,0x7e,0xa2,0x07,0x65,0x86,0xd6,0xef,0x63,0x72,0x69,0xcd,0x77,0x23, + 0x7a,0xea,0x34,0x1d,0x17,0xfc,0x52,0xb8,0x7e,0x74,0x2f,0xe1,0xd4,0x5e,0xf4,0xe1,0xaf,0x4f,0x20,0xde, + 0xa6,0xcc,0xc2,0x9c,0xc3,0xea,0x88,0x71,0x86,0x77,0x92,0x37,0x0f,0x06,0x5a,0x60,0x32,0xc3,0x3d,0x0f, + 0x90,0xd4,0xc6,0x85,0x3d,0x3d,0xb4,0x80,0xbd,0xa3,0xfb,0x18,0x46,0xce,0x9d,0x41,0xcc,0xe5,0xb7,0x4f, + 0x84,0x88,0xf0,0x0b,0x9a,0xf1,0x78,0xf3,0x7b,0x1b,0x7d,0x2f,0xd9,0x75,0x78,0x49,0xe2,0xa1,0x44,0x4a, + 0x3c,0xad,0xdd,0x34,0x38,0x2f,0x8a,0x10,0x93,0x75,0xb0,0x91,0xc4,0x60,0xff,0x53,0xdb,0xb3,0xd3,0x56, + 0x28,0x60,0x88,0x22,0x96,0xb0,0x18,0x9d,0x71,0x3d,0x36,0xa6,0xbc,0x90,0x31,0xdc,0x10,0x2f,0x0e,0xcc, + 0x6e,0x1d,0x5a,0x9c,0xa3,0xad,0x3b,0xbf,0x26,0xd1,0x71,0x15,0x07,0x23,0x67,0xaf,0x3a,0x74,0xf1,0xe5, + 0x6c,0x77,0x97,0x5f,0x4b,0x8c,0x25,0x35,0x05,0xd6,0x5d,0x44,0x1b,0xb8,0x13,0x6c,0x46,0xdf,0xee,0x0c, + 0x08,0x03,0xf5,0xd4,0x59,0xec,0x8c,0xfb,0x03,0xad,0xa2,0xdf,0xd3,0xf5,0xa4,0x96,0xf3,0x43,0x66,0x6b, + 0x92,0x9b,0xe3,0xc4,0x1c,0x2b,0x7c,0xdf,0x89,0x35,0xb8,0x70,0xb7,0x21,0x13,0x80,0x1c,0x13,0x05,0x1a, + 0x19,0x3b,0x05,0x6d,0xa3,0x17,0x7a,0xfa,0x42,0x5f,0x2d,0xf9,0x70,0xcf,0xc5,0x3f,0x22,0x99,0xd0,0xb6, + 0x26,0xc6,0xf3,0x64,0x5e,0x4d,0x3f,0x19,0xec,0xe1,0x3a,0x46,0x8b,0x18,0x64,0xae,0x7b,0x44,0xb3,0x23, + 0x77,0xfb,0xf7,0xd4,0x4c,0x3b,0x28,0x90,0xd0,0x97,0xaa,0xb3,0x61,0xe4,0xd8,0xbf,0x27,0xfb,0xc6,0x84, + 0xb5,0x30,0x0e,0xbe,0x41,0x14,0x89,0xf4,0x30,0x62,0x67,0x5f,0x1b,0xf0,0x62,0xe8,0xde,0xac,0x9b,0xca, + 0x86,0xd9,0x37,0xd2,0xc7,0x55,0xe7,0x2a,0xee,0x43,0x89,0x6e,0x71,0x34,0x5e,0x81,0xd5,0xce,0xb6,0xb7, + 0x57,0x88,0x95,0x4d,0x7b,0xe3,0x32,0xaf,0x71,0x77,0x48,0x2e,0xce,0xbc,0xfb,0xaa,0x21,0xb2,0x5b,0x18, + 0x41,0x22,0xbe,0x4d,0x48,0x8c,0xfb,0x91,0xe3,0x09,0x39,0xd1,0xbc,0xc0,0xfd,0x66,0x37,0xae,0x04,0xdf, + 0x12,0xec,0x0b,0x0d,0x84,0x63,0xc9,0xd1,0x4e,0xa1,0xff,0xd1,0x06,0xf1,0x61,0x8a,0x25,0x82,0x42,0xaa, + 0x11,0x9d,0x31,0x93,0xfb,0xcc,0x6b,0x72,0x2b,0xf4,0x80,0x16,0x6c,0xae,0x23,0x5c,0xa9,0x25,0xcf,0x89, + 0x0e,0x54,0xea,0x69,0x65,0xd9,0x87,0x6b,0xe5,0x23,0x2b,0x4d,0x27,0x4d,0x97,0x65,0x38,0x72,0x11,0x9e, + 0x0c,0xea,0xe6,0x8b,0x55,0x76,0xb3,0x1a,0x90,0x9f,0x28,0x23,0x20,0x44,0x0a,0x84,0x89,0x7c,0xbc,0x88, + 0x3f,0x4d,0x24,0x21,0x01,0x4e,0x4d,0x26,0x3d,0x71,0x26,0xfd,0x06,0x99,0xbc,0x53,0x7d,0x09,0x7e,0x4d, + 0x81,0x22,0xa4,0xc4,0x92,0x3d,0x21,0x91,0x49,0x4f,0x41,0x7a,0xc0,0x2d,0x23,0xf7,0x3e,0xc4,0xae,0xec, + 0xfb,0x04,0xe4,0x4b,0x8b,0x71,0xdf,0x8b,0xa2,0xc4,0x01,0x57,0x94,0x7a,0xdf,0xea,0xd2,0x63,0x27,0xf6, + 0xc5,0xa5,0x8f,0xc3,0x2c,0x62,0x9f,0x20,0xc6,0x62,0x54,0x62,0xce,0x57,0x6e,0x9d,0x9f,0x89,0x05,0xdb, + 0x3d,0x2d,0x6d,0x8e,0x99,0x37,0x65,0xbc,0x52,0x4d,0x41,0xeb,0x8b,0xe0,0xca,0x4a,0xd4,0x61,0x57,0x56, + 0xdc,0x19,0xa5,0x30,0x98,0x3e,0x93,0xa0,0xb6,0x0f,0x2c,0xa4,0xd9,0xc9,0x09,0x3d,0x23,0x83,0xf2,0x61, + 0xb2,0x62,0xdc,0xdd,0xf9,0xca,0x93,0x22,0x42,0x03,0x5a,0xd1,0xa0,0xe9,0x1e,0x5f,0x44,0x13,0xed,0x86, + 0xe5,0xdc,0x97,0x3e,0xc0,0xab,0x14,0x66,0xad,0x61,0x90,0x8a,0x2b,0x99,0x8c,0x40,0x54,0x12,0xd2,0xe3, + 0x15,0x31,0x47,0x9d,0x50,0x30,0xf9,0x5d,0xfc,0xce,0x56,0x1f,0xb1,0xb9,0x8c,0xd2,0x50,0x96,0x65,0x87, + 0xa4,0xf3,0xb1,0xce,0x3a,0x04,0x65,0x69,0x08,0xca,0xd2,0x11,0x94,0x65,0x8f,0xa0,0x2c,0xfb,0x04,0x65, + 0xd9,0x23,0x28,0xcb,0x41,0x82,0xb2,0xfc,0xcf,0x09,0x4a,0x3b,0x20,0x43,0x51,0xca,0x4b,0x1a,0xdd,0xc8, + 0x6e,0xa0,0x3d,0xae,0x4e,0xcb,0x34,0xa8,0xc1,0x38,0x6b,0x94,0x7e,0x71,0x92,0x4e,0x7d,0x71,0x47,0xca, + 0xcb,0x26,0x33,0x13,0xea,0xf4,0x29,0xff,0xd9,0x8d,0x08,0x23,0xc7,0x2b,0x0e,0xa2,0x9c,0x74,0x2e,0xae, + 0x06,0x76,0xf6,0x6f,0xe9,0x50,0x11,0x1c,0x0e,0x7c,0xfd,0x2b,0x75,0x75,0xcd,0x94,0x58,0x8e,0xfb,0xec, + 0x9b,0x3e,0xa7,0x4e,0x07,0x7b,0x02,0x90,0x30,0x71,0xd3,0x19,0x72,0xf8,0x39,0xb5,0xde,0x93,0xbb,0x6d, + 0x18,0x19,0x9d,0x86,0xe8,0x1d,0x26,0x5d,0x96,0x4d,0xda,0x8d,0xba,0x38,0xce,0x85,0x61,0x77,0x89,0x6e, + 0x77,0x74,0x89,0x2c,0x6b,0x90,0xd7,0x35,0xff,0x73,0x01,0xdd,0x6c,0x24,0xd2,0x7d,0x0e,0xff,0x73,0x20, + 0x71,0x08,0xd9,0x7e,0xce,0xc0,0x4a,0xc9,0x11,0x7f,0x2a,0x1b,0xec,0xd0,0x10,0x89,0xdd,0x36,0x52,0xcb, + 0xa6,0x05,0x82,0x0f,0x5a,0x74,0x13,0x09,0x1c,0x1d,0xeb,0xb3,0x63,0x87,0xc8,0xee,0xd3,0x3b,0x77,0x30, + 0xf9,0x9d,0x4a,0x5b,0x66,0x70,0xbb,0x33,0x0d,0x47,0x52,0x42,0xb4,0x84,0x55,0x2b,0x99,0xe7,0x8a,0xb7, + 0xe3,0xda,0x78,0x5f,0x38,0xe8,0x0c,0xac,0xb6,0x1f,0xa8,0x7b,0x0f,0x54,0x64,0x48,0xf6,0x76,0x74,0x59, + 0xe7,0xcb,0x67,0xd6,0xe7,0xc0,0xbf,0xc2,0x66,0xc2,0xe4,0x3a,0xb5,0x67,0x50,0xc4,0xa5,0x71,0xb9,0x20, + 0xd8,0xd2,0x6a,0x20,0xd4,0xbf,0x9f,0x6b,0x09,0x46,0x1e,0x06,0xe4,0xca,0xb3,0x2a,0x58,0x80,0x2a,0xf0, + 0x6c,0xe2,0x5d,0xdd,0xe1,0x97,0x72,0xb1,0xfe,0x12,0xf6,0xc8,0xbe,0x5b,0x5f,0x57,0xe2,0x2b,0x08,0x8d, + 0xc5,0xb9,0x65,0x0e,0x68,0xe3,0xf6,0xc2,0x88,0x07,0xba,0x05,0x35,0x10,0xd3,0xca,0xc5,0xa7,0xac,0x5d, + 0x77,0x0a,0x03,0x0f,0x88,0xab,0x81,0xcb,0xa5,0x10,0xa2,0x32,0x24,0x51,0xe0,0xfd,0xd1,0x25,0x59,0xaa, + 0x85,0x1e,0x42,0x5e,0x73,0x60,0x72,0x43,0xe6,0x24,0xa0,0x18,0x1f,0x1a,0x6a,0x91,0x9d,0x96,0xfe,0xe3, + 0x6a,0x75,0x58,0x2b,0xaf,0xce,0x41,0x12,0x5c,0x2b,0x17,0x57,0x6c,0xff,0x7a,0x7d,0xa2,0x9f,0x3a,0x16, + 0x29,0xe5,0x38,0xbd,0x7d,0xd7,0x2d,0x6b,0xea,0x2a,0x3c,0x27,0x8d,0x79,0x62,0x68,0xd1,0xf4,0x0b,0x97, + 0x04,0x25,0xb1,0x8b,0x00,0x38,0x81,0x73,0xb8,0x02,0x31,0xb8,0x41,0x1e,0xd4,0x12,0x6b,0x9a,0x7d,0xa8, + 0xd3,0xe8,0xf8,0x02,0x04,0xfe,0x43,0x68,0x18,0x4a,0x48,0xc9,0xb9,0xf2,0x32,0xd8,0xbb,0xe9,0xb2,0x8c, + 0xfb,0x22,0x13,0xa9,0x21,0xe1,0x3a,0xc6,0xc6,0x4c,0xdb,0xaa,0x4e,0x20,0x38,0xac,0xee,0x3a,0x24,0xa6, + 0x83,0x72,0xc3,0xdd,0xb8,0x61,0xcc,0xdd,0x80,0x5a,0x09,0x84,0x1f,0xf3,0xf0,0x53,0xa7,0x39,0x64,0xd1, + 0x00,0xa1,0xbd,0x01,0x55,0x59,0x97,0x31,0x0f,0x7c,0x69,0x7b,0x3a,0x59,0x3a,0x37,0xfe,0xe0,0x22,0x67, + 0x2d,0xa2,0xd7,0xda,0x52,0x7f,0xe9,0xfd,0xdd,0x25,0x42,0x14,0x5a,0xe9,0x97,0x8a,0xfc,0xcd,0xea,0x01, + 0x35,0x15,0x38,0xa9,0x76,0xa2,0x5f,0xf8,0xcd,0xfd,0xcb,0xea,0xe1,0xfe,0xc3,0xbf,0x3d,0x38,0x53,0xd1, + 0x2f,0xf2,0x18,0x25,0xbd,0xcc,0xaf,0x7d,0xe6,0xd7,0xe1,0x05,0xa1,0x33,0x03,0x0b,0xf0,0xde,0xb3,0x20, + 0xa4,0x2f,0xb7,0x5e,0xf8,0x59,0xf6,0x17,0xc5,0xba,0xbe,0x89,0x56,0x43,0xd7,0x35,0x34,0xc8,0x84,0x95, + 0x53,0x38,0xfb,0x9e,0x85,0x3e,0x9e,0x41,0x3f,0xe3,0x4f,0x55,0xf6,0xa9,0xfa,0x83,0x08,0x9d,0x08,0x86, + 0x6b,0x74,0x4f,0x59,0x3b,0xb9,0xff,0x28,0xdf,0x3a,0x87,0x12,0x38,0xfa,0xa5,0x8c,0x1e,0x7c,0x73,0x3f, + 0xbd,0xff,0x88,0x4a,0x11,0xd6,0x30,0xef,0xea,0x53,0xe5,0xcb,0x7b,0x2f,0x9c,0x9d,0xff,0x73,0xb0,0x3f, + 0x8e,0x92,0x6f,0xf6,0x19,0x11,0x5e,0xb8,0x90,0x77,0xa7,0xb5,0xd6,0xbf,0xeb,0x18,0x91,0x96,0x17,0x2e, + 0xd1,0x47,0x15,0xb7,0x17,0x81,0xab,0xb3,0x32,0x5b,0x89,0x18,0x46,0x39,0x4a,0x31,0x62,0xa3,0x99,0x6b, + 0xce,0xa1,0xa3,0x59,0x51,0xaf,0x14,0x97,0xf0,0xea,0x5a,0x05,0x75,0xa8,0x3a,0x1e,0xa8,0xf9,0x3c,0x6f, + 0x82,0x6b,0x2f,0xd5,0x49,0x99,0x3d,0xd8,0x8b,0x7f,0xb9,0x4c,0x68,0x2d,0x2e,0xcb,0x6c,0x38,0xe6,0x89, + 0x5b,0xb7,0x93,0xd0,0xa4,0x20,0xb4,0x6d,0x9a,0xa0,0xcb,0x3f,0x2c,0x97,0xb0,0x9c,0x86,0x97,0x37,0x22, + 0xb0,0xc2,0xe4,0xf5,0xea,0xce,0x2a,0x4d,0x6c,0x9b,0xfd,0xa4,0xfb,0xe1,0xae,0xd7,0x3b,0xd2,0xe7,0xf7, + 0xa8,0x77,0xbf,0x3c,0x89,0x0f,0x1f,0xef,0xfd,0xeb,0x08,0x3d,0xfc,0xf4,0x87,0x3d,0xbc,0x57,0xaa,0x68, + 0xef,0xde,0x41,0x84,0x6a,0x5f,0x55,0x97,0xb6,0x5a,0xaa,0xeb,0xe9,0xa6,0x4c,0xc6,0x29,0xe0,0xd5,0xe3, + 0xae,0xbe,0xc8,0xc5,0x72,0x51,0x1f,0x88,0xaf,0x03,0x51,0xbd,0xc7,0x71,0xd6,0xeb,0x3d,0x7b,0x99,0x62, + 0xa4,0x3e,0x96,0xd9,0x61,0x14,0xac,0x89,0xe7,0xe1,0x22,0x7b,0xe5,0x61,0x74,0xa4,0xde,0xa2,0x94,0xd8, + 0x5f,0x3e,0x65,0x18,0xa3,0x4c,0x01,0x36,0xaa,0xc2,0x64,0xb0,0x51,0x37,0xe4,0xf0,0x62,0xdc,0xed,0xd2, + 0x7f,0x30,0xe1,0x29,0xdd,0x5d,0xbb,0x36,0xe3,0x99,0x44,0x22,0x46,0x9b,0xf2,0xc4,0x79,0xfe,0x8e,0x66, + 0xa4,0x87,0x6f,0x72,0x83,0x90,0xf8,0x9c,0xcf,0xa8,0x53,0xaf,0xca,0xec,0x46,0x88,0x89,0xd7,0x9a,0x08, + 0x67,0x02,0x35,0x2a,0x78,0x56,0x10,0xf3,0x39,0x74,0xc3,0x6a,0x53,0xcc,0x61,0x98,0x41,0x74,0x3d,0x41, + 0xd1,0x6c,0xc5,0x93,0xf4,0xb1,0x58,0x22,0xc1,0x5e,0xf7,0xcb,0x99,0xba,0x86,0x68,0x07,0xf6,0x55,0x78, + 0xe5,0x36,0xbf,0x93,0x7b,0x60,0xd9,0x7b,0x43,0x81,0xba,0xef,0x24,0x14,0x67,0x25,0x0d,0x66,0x66,0x76, + 0x1d,0xd1,0x23,0x47,0xca,0x5e,0xfe,0x38,0xd8,0x91,0x4e,0xb8,0xfb,0xf4,0x69,0x19,0x24,0xc0,0x95,0x4b, + 0x52,0x7e,0x28,0x3f,0x95,0xd5,0x65,0x69,0x2a,0x45,0x5a,0x2f,0x7a,0x7e,0x7a,0xa6,0x86,0x82,0xe3,0xa7, + 0x8f,0x4b,0x15,0x5c,0xc2,0x88,0x0f,0x8f,0xe7,0xc5,0xa9,0x9e,0x5e,0x4f,0xe7,0x1a,0xf7,0x4e,0x53,0x9f, + 0xca,0xb5,0xfa,0x95,0x20,0xf2,0xf0,0x7f,0x7e,0xb9,0x1c,0xdd,0x3b,0x7a,0xa0,0x9e,0x43,0x56,0x76,0xcc, + 0x7b,0xeb,0xf8,0x98,0xc8,0xb1,0x9b,0xb5,0x7a,0x47,0x49,0x9e,0x4c,0x75,0x57,0xf8,0x89,0x67,0x8f,0x7a, + 0x39,0x9c,0xfb,0xd3,0xcf,0xcf,0xcb,0x8b,0xa2,0xae,0x4a,0x73,0x1f,0xfa,0x76,0x27,0x01,0x92,0x3c,0xee, + 0xa9,0x7a,0x56,0x66,0x2f,0xcb,0x9d,0x9d,0xe1,0xdc,0x2e,0xc0,0xab,0x17,0x65,0xf6,0x8e,0xca,0x1a,0x97, + 0xa2,0x32,0xbf,0x28,0xce,0xc0,0x29,0x8c,0x56,0x34,0x61,0x8f,0xcf,0xf8,0xc2,0xa9,0x4e,0xf9,0x37,0x65, + 0xf6,0x82,0xca,0x3f,0x58,0x34,0x85,0xbe,0x25,0xdc,0x33,0xa3,0x22,0xc6,0x26,0xec,0x45,0x99,0xa8,0xd7, + 0x92,0xfd,0x22,0xf0,0x68,0x44,0xc9,0xad,0xaf,0x47,0xfb,0xc0,0x6e,0xea,0xfd,0x66,0xbe,0x9e,0x9d,0xe9, + 0x07,0x9c,0xf9,0x64,0x33,0x93,0xe0,0xa0,0xa6,0x73,0x0e,0xd9,0x74,0x9a,0xd9,0x37,0x5c,0xb9,0x51,0xaa, + 0x9f,0x4c,0x57,0x8a,0xe5,0x39,0xed,0xad,0xdb,0x62,0x99,0xcf,0xe8,0x4f,0x45,0x7f,0xaa,0xc6,0x77,0x09, + 0x4e,0xed,0x55,0x63,0x3e,0xf9,0xa1,0xcc,0x62,0xfe,0x66,0x7a,0x5e,0x13,0x89,0xf2,0xcb,0x83,0x5f,0x66, + 0xbb,0x41,0xef,0x6f,0xd6,0x23,0xbe,0x69,0x38,0x51,0x3f,0x42,0x89,0x0d,0xaa,0xea,0x5d,0xc9,0x51,0x36, + 0x81,0x95,0xbf,0x63,0x7b,0x88,0xe1,0x6b,0x99,0xbf,0x23,0x7c,0x62,0x62,0x34,0x44,0xea,0x06,0xd7,0x3a, + 0x07,0x94,0x30,0x2a,0xdb,0x5f,0x13,0x6e,0x31,0xb3,0xbc,0x19,0x13,0x10,0x3d,0xd8,0x73,0xdf,0x33,0xd4, + 0x7f,0x57,0x26,0x81,0xdb,0x39,0xda,0xff,0xbd,0x54,0xbf,0x95,0xea,0xfb,0x00,0x05,0xf5,0x68,0x01,0x1a, + 0xe3,0xef,0x30,0xac,0xf9,0x9d,0xda,0xc3,0xa2,0x0e,0xc1,0xd0,0xd9,0xbc,0x3a,0xc9,0xe7,0xa0,0x49,0x19, + 0x51,0x61,0x5e,0x24,0x09,0xb8,0x1f,0xbc,0xe0,0x48,0x97,0x17,0xa3,0x1f,0x7f,0x78,0x7e,0xfc,0xfc,0xcd, + 0x8f,0x89,0xfa,0x9d,0x60,0xf9,0xef,0x1d,0x10,0x39,0x3e,0x46,0xe6,0xb3,0xe7,0x3f,0x7e,0x7c,0xfb,0xf6, + 0xd5,0x87,0xe3,0x6f,0x5f,0xbd,0x7d,0xf2,0xf8,0xd5,0xf1,0x77,0x6f,0xdf,0x7e,0x7f,0x7c,0xac,0xbe,0x1d, + 0x06,0xdc,0x0f,0xd7,0x8b,0x93,0x8a,0x1a,0xbd,0x17,0xcb,0x53,0x32,0xdc,0x37,0x73,0x3d,0x33,0xca,0xf5, + 0x6e,0x6a,0x4e,0xc6,0xbf,0xdd,0x51,0xb3,0xe6,0xe2,0xf4,0x93,0x4c,0x3e,0x74,0x67,0x3d,0xe0,0xbf,0x4d, + 0x30,0x7d,0x5c,0xb2,0x3d,0x80,0x30,0x5c,0x88,0xed,0xee,0xf1,0x37,0x80,0xe9,0xb7,0x31,0xc5,0xb6,0x2a, + 0x28,0x3b,0x55,0xf8,0x0d,0x2d,0x6b,0xe7,0x9b,0xa0,0x20,0xd6,0xbf,0x53,0x96,0x90,0x45,0x5e,0x87,0x0b, + 0xf9,0xd9,0x0e,0xaa,0x76,0x6d,0x4c,0x0d,0x7e,0x2e,0xb3,0x33,0xf5,0x2f,0x30,0x04,0xff,0x2c,0x37,0x3e, + 0x2f,0x66,0xd9,0xbf,0x88,0x6e,0x33,0xd7,0x42,0xae,0x4e,0xa0,0xc6,0x5f,0x8f,0xff,0x59,0x76,0xfb,0xf8, + 0x61,0x75,0x32,0xd0,0x4d,0x2a,0x6d,0xe2,0x0d,0x52,0x73,0x9d,0x4f,0xc4,0x15,0xb2,0xff,0x95,0xb9,0x39, + 0x15,0xdf,0xa9,0x8d,0x4f,0xe4,0x52,0xf0,0xb0,0x7f,0xc1,0x9d,0xe1,0xee,0x11,0x9d,0x79,0xa6,0x97,0x22, + 0x6f,0xef,0xd5,0x50,0x56,0x2d,0x11,0xd6,0xc3,0xf7,0x02,0xfa,0x0e,0x3b,0x81,0x2b,0xdb,0x49,0xb5,0x7d, + 0x3b,0x29,0xbe,0xf8,0x7e,0xe5,0x6e,0x09,0x74,0x0d,0xb3,0xe1,0x3e,0x4f,0xe7,0x3f,0x4a,0x44,0x86,0x6e, + 0xeb,0xde,0x91,0xef,0x8d,0xb2,0xcc,0xf4,0xc0,0x99,0xc7,0x5c,0xe8,0xc9,0xd7,0x59,0xf5,0xef,0xf3,0x34, + 0x37,0x75,0xf2,0xa5,0x58,0xe6,0x6e,0x4f,0x3d,0x5f,0xd8,0x8b,0x3d,0xcb,0xc6,0xde,0x48,0x22,0x5f,0x99, + 0xdb,0xb3,0x2a,0x79,0xf5,0xd7,0x69,0x85,0x85,0xfc,0xb5,0x5a,0xdd,0x54,0x7b,0x07,0x66,0x98,0xca,0x66, + 0x8c,0x30,0x38,0x06,0x95,0x67,0x9a,0xe8,0x1a,0xde,0xda,0x4b,0x3c,0x37,0x4c,0x9c,0x3b,0xf5,0x98,0xeb, + 0x48,0xc3,0xa4,0x3a,0xbf,0xe4,0x88,0x38,0x0c,0x5e,0xee,0x8a,0x58,0x97,0xe0,0x3d,0xcb,0x58,0x67,0x21, + 0x89,0x36,0x02,0xbb,0x2f,0xf6,0x74,0x4e,0x8d,0xce,0x82,0x04,0xbe,0x55,0xd6,0xbe,0x76,0xc2,0x99,0x37, + 0x41,0x1a,0xdf,0xa6,0x17,0xf6,0x66,0x33,0x1e,0x3a,0x4c,0x8d,0x88,0x86,0xc8,0x6e,0x78,0x29,0x52,0x84, + 0xf3,0x3b,0x2d,0xce,0x56,0x7c,0x23,0x7b,0x0a,0xa4,0x3b,0xd6,0x26,0x64,0x09,0xac,0x7f,0x07,0x30,0xe7, + 0xf0,0xb4,0xac,0xd5,0x10,0x9a,0x27,0xca,0x27,0x6e,0x6b,0x0f,0xa5,0x4a,0x9b,0x58,0x3c,0x65,0xef,0xc2, + 0x15,0x8b,0x8d,0xf9,0x7a,0x0e,0x8e,0xc0,0x22,0x6c,0x96,0x5c,0x88,0xe3,0x4d,0xea,0x78,0xd5,0x11,0x95, + 0x27,0x98,0xb4,0x7d,0x45,0xad,0xd7,0x75,0xd6,0xbb,0x40,0x48,0x15,0x75,0x0f,0x35,0xd4,0xd4,0xf8,0x61, + 0x84,0x3d,0x1b,0x21,0x7a,0xf7,0x32,0xb0,0xd7,0x30,0xf1,0xde,0x90,0xc2,0xf1,0xcb,0xf0,0x50,0xc1,0xb5, + 0x2d,0xaa,0xe1,0x5c,0xd0,0x68,0x98,0x71,0x0c,0x98,0xf3,0x19,0x63,0xc0,0x1a,0x66,0x04,0x57,0x71,0x41, + 0x90,0x3c,0x1c,0x0b,0xfc,0x10,0x17,0xa2,0xb9,0xd0,0x46,0x4e,0x26,0xb1,0xb7,0x37,0x4e,0xf8,0x2e,0x5f, + 0x97,0xe5,0x6c,0xd2,0x11,0x14,0xdf,0xb8,0xb9,0x62,0xc6,0xe1,0x45,0x62,0xee,0x21,0x97,0xe0,0x17,0x63, + 0x13,0xa1,0xb3,0x95,0x08,0x9d,0x32,0xac,0x94,0x1f,0xed,0x60,0x52,0x84,0xa6,0xf7,0x01,0x33,0xed,0xd0, + 0x90,0x6c,0x10,0xc1,0x43,0x87,0xca,0x0b,0xc8,0x63,0xaa,0x13,0x3e,0xe3,0xec,0x45,0xe0,0x2a,0x07,0x5e, + 0x32,0x98,0x05,0xf6,0x54,0xe0,0x3c,0xc4,0x28,0xdb,0x4d,0x2d,0xc1,0x48,0xc0,0xf5,0x30,0x2d,0x48,0xd3, + 0x40,0x9f,0x12,0x84,0x35,0xe7,0xd5,0x6a,0x3e,0xa3,0xbd,0x4a,0x33,0xd8,0x02,0xb6,0x54,0x53,0x6f,0x22, + 0x52,0x09,0xaf,0x62,0x71,0x85,0x5e,0xf2,0x9a,0xff,0xd3,0xe0,0x87,0x8b,0x05,0x3b,0x1a,0x13,0xb6,0xba, + 0x8a,0xe5,0xa2,0x68,0x1a,0x7a,0x64,0x2e,0x9b,0xde,0x88,0x8c,0x12,0xc7,0xcf,0xbb,0x12,0x21,0x89,0xc1, + 0xe8,0x28,0xc9,0x4c,0xaf,0xd3,0x7e,0x76,0x70,0x6b,0xf4,0xa0,0x46,0xc8,0x38,0xfc,0x62,0x5d,0xae,0x44, + 0xdb,0x83,0xb0,0xd5,0x44,0x9b,0xd0,0x0b,0xad,0x77,0x55,0x9b,0x4b,0x7d,0x3b,0x73,0xd7,0xc2,0x47,0x01, + 0xa9,0x97,0xf9,0xfc,0x13,0x0e,0x88,0x71,0x13,0xec,0x02,0x4e,0xbd,0xe3,0xd2,0xac,0x50,0x52,0xde,0x26, + 0x46,0xc6,0xa0,0x43,0x19,0xc3,0x47,0xf4,0x1c,0x01,0xe1,0x09,0x59,0xd3,0x0f,0xf5,0x45,0x75,0x2a,0x0f, + 0x3b,0x72,0xd7,0xcd,0x5c,0x43,0xb8,0xff,0x83,0x5c,0xc7,0x25,0xb7,0x1f,0x4f,0x6b,0x5c,0x83,0x35,0xc8, + 0xca,0x8c,0xa7,0x12,0x98,0xe5,0x0e,0xa6,0x6f,0xab,0x9c,0x3c,0x37,0x29,0xa9,0x0e,0xfd,0x5e,0x1d,0x05, + 0xa2,0x27,0x6d,0xfa,0x5c,0xa4,0x38,0xc4,0xc5,0x0d,0x6e,0xab,0x29,0x36,0x54,0xf6,0x8e,0x08,0xc0,0x8f, + 0x77,0x17,0xd8,0x8d,0x9a,0xe8,0x28,0x7b,0x49,0x85,0xa8,0x47,0x4c,0x85,0x6e,0x1c,0x4a,0xa2,0x2b,0x26, + 0xbc,0xf2,0x03,0x9b,0x4f,0xbb,0xbb,0xf4,0xb4,0x4d,0xd2,0x2e,0xc9,0xd9,0xb7,0x6d,0x75,0x91,0x46,0x7b, + 0x7b,0x3b,0x10,0x3e,0x5f,0x1b,0x33,0x46,0x22,0x6f,0x2f,0x60,0x53,0x97,0x74,0xfd,0x45,0xb4,0x95,0x7c, + 0xc2,0x5b,0x04,0x4a,0x11,0x38,0x8d,0xe4,0xc4,0x80,0xf4,0x2f,0xfc,0x63,0x3d,0xe2,0x61,0x7e,0x94,0xf0, + 0x1d,0x4a,0x59,0x3e,0xc9,0xad,0xd3,0x7b,0x93,0xf4,0x6e,0xc4,0x6b,0x92,0x09,0x71,0x72,0xcd,0x91,0xdb, + 0xb1,0x6b,0x8c,0x5b,0xc2,0x9d,0xd2,0xc3,0x42,0xb7,0xe7,0xd5,0x8c,0x1f,0xe5,0xba,0x6b,0x3c,0x4d,0x4d, + 0xb4,0x83,0xe1,0x89,0xd9,0x1c,0xce,0xd0,0xb5,0x01,0x96,0x60,0xe6,0x61,0x2a,0x0d,0x13,0xc9,0x82,0x2d, + 0x1e,0x6c,0xfb,0x17,0xc4,0xd2,0x64,0xcf,0x45,0x5d,0x5a,0xab,0x79,0xad,0x4e,0xfb,0xca,0xda,0x3e,0xcd, + 0x0d,0x08,0x20,0x9c,0xbd,0xc4,0xe5,0x56,0x6a,0xc6,0x11,0xe4,0x38,0x8e,0x1c,0x9b,0xcf,0x0c,0xd0,0xac, + 0x44,0xe5,0xb9,0x80,0xe2,0x20,0x5e,0xc3,0xf7,0x24,0x99,0x77,0xc8,0xc2,0x30,0x2f,0xfe,0x91,0xc0,0xd9, + 0x19,0xf2,0xf9,0x8a,0x9d,0x5b,0xe1,0x6b,0x22,0xdf,0xf3,0x33,0xfd,0xf4,0x3c,0x2f,0x4b,0x3d,0xbf,0xbd, + 0xdd,0xbe,0x17,0x77,0x93,0x40,0x77,0xdb,0x3b,0x9a,0xba,0x39,0x84,0xd6,0x9a,0xb6,0x5e,0xe1,0x0c,0xe6, + 0x6b,0x9b,0xba,0xb9,0x4e,0xce,0x14,0x0f,0xf4,0xcf,0x3a,0x00,0xfe,0x08,0x67,0x3f,0x6f,0x5b,0x72,0x51, + 0x33,0xea,0xeb,0x56,0xa4,0x16,0x75,0x76,0x41,0xd3,0x4c,0x87,0xd1,0xc3,0xb1,0x79,0x38,0x18,0x81,0x43, + 0xe5,0x52,0xd9,0x8f,0xaa,0x5b,0xfd,0x02,0x45,0x9a,0xd6,0x54,0x02,0x61,0xcf,0xfa,0x8e,0x49,0x25,0x9c, + 0xbd,0x28,0x1a,0x9e,0x4f,0xf3,0x68,0x2c,0x7c,0xcf,0xea,0xcc,0x24,0xd8,0x8b,0x80,0x89,0x94,0x5e,0x75, + 0x5a,0x39,0xab,0xe5,0x56,0x65,0xe2,0x77,0x7e,0x2a,0x3b,0x4e,0x8d,0x67,0x36,0x6c,0x32,0x7d,0x30,0xaf, + 0x19,0x28,0xae,0x6b,0x75,0x2c,0x43,0x23,0x66,0xec,0xa4,0xee,0x09,0x9a,0x8c,0x38,0x75,0x27,0x72,0x01, + 0xa9,0x59,0x78,0x45,0x18,0x2a,0xfa,0x7f,0x6c,0xb5,0xde,0x02,0x5c,0x9c,0xec,0x2a,0x85,0xff,0xbe,0x2b, + 0x54,0x23,0xdc,0xad,0x14,0x2a,0xef,0x2a,0x64,0x6d,0xed,0x58,0x1d,0x4f,0xc4,0x66,0xa7,0x9c,0x82,0x61, + 0x04,0x04,0x9b,0x1b,0x71,0x03,0x35,0xb3,0x9f,0xb5,0xdc,0x46,0x75,0xc5,0x90,0x7a,0x8f,0xff,0x7e,0xe2, + 0x60,0x52,0x4f,0x19,0x6a,0x1f,0xf3,0xdf,0x0f,0x38,0x3b,0x3e,0xe2,0xcf,0xdb,0x21,0xba,0xd8,0x9e,0x73, + 0x0b,0xc4,0x7f,0x67,0xcf,0x88,0x63,0xc6,0x56,0x44,0x84,0xc9,0x39,0xe6,0x13,0x2c,0x47,0xc1,0xc9,0xf5, + 0x24,0x36,0x67,0x22,0x1d,0x8a,0xdb,0xdb,0x35,0x3f,0xc8,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0x92,0x10, + 0x0f,0x8d,0x93,0xf0,0x60,0x18,0x1a,0xa2,0xfc,0x38,0x09,0x0f,0xe6,0x40,0xe2,0xca,0x7c,0x1d,0xfe,0xd3, + 0xe0,0x0b,0x43,0x65,0x4e,0x4f,0x2c,0x95,0x4e,0x6c,0xd2,0xee,0xee,0x47,0xd3,0x90,0xc4,0x7a,0x73,0xd4, + 0xeb,0xac,0xa0,0x73,0xdf,0xd7,0xe3,0x8e,0xf1,0x86,0xf9,0x04,0x26,0xe6,0xf5,0xe5,0xb3,0xf0,0x9d,0x32, + 0x5f,0x12,0xa2,0x32,0x00,0x11,0x14,0xe9,0xa7,0x7a,0x0d,0x02,0xc4,0xed,0x03,0x11,0x14,0x08,0x30,0x50, + 0x8e,0x68,0x90,0x96,0xc6,0xa2,0xd3,0x38,0x7c,0xed,0xf9,0xfc,0x6c,0xff,0x5a,0x8a,0xd8,0xc2,0xde,0xac, + 0x07,0x87,0x35,0x13,0x88,0x65,0x14,0xf9,0x2b,0x2e,0x07,0x0e,0xcc,0x81,0x43,0xb8,0x83,0x3e,0xc7,0x6d, + 0x66,0xce,0x62,0x7f,0xf7,0xd4,0x9a,0x5d,0xaf,0x82,0xfe,0xc0,0x62,0x7c,0xa8,0x77,0x09,0x1c,0xf7,0x55, + 0x48,0x09,0xd9,0xa9,0xb4,0x26,0x66,0xf6,0x33,0x84,0xc7,0x79,0x1b,0x9e,0xf4,0x3d,0xfa,0x5c,0xf8,0x3c, + 0x15,0x30,0x8e,0xff,0x30,0xb1,0x86,0x5c,0x52,0x12,0xb0,0x74,0x12,0xff,0x82,0xa1,0x34,0x33,0x00,0xca, + 0x61,0xfd,0x4c,0x0f,0xa4,0x9f,0xe6,0x2a,0x3a,0xe5,0x44,0x2b,0xc6,0x18,0xdc,0x41,0x50,0xd2,0x9e,0xd7, + 0xd5,0x25,0x1d,0x20,0x4f,0x58,0xab,0x7d,0x5f,0x3e,0xdb,0xa2,0xa9,0xdb,0x32,0x30,0xbd,0x05,0xa3,0x8b, + 0xee,0x72,0xc2,0x22,0x25,0x59,0x13,0x3e,0xa2,0xca,0xaf,0x6f,0x1c,0x5c,0xee,0xec,0xfc,0x8e,0x49,0xf3, + 0x5d,0x44,0xff,0xab,0x65,0x6c,0xa6,0x07,0x12,0x80,0x72,0xb5,0x04,0x2c,0xf9,0x68,0x7d,0x60,0x3c,0xea, + 0x2e,0xbb,0x4e,0x05,0x06,0x1c,0x76,0x5a,0x82,0xe2,0x71,0x17,0xd8,0x20,0xb3,0x88,0x61,0x12,0x17,0xf7, + 0xd2,0x25,0x2a,0x59,0x07,0x7a,0x2d,0xab,0x1f,0x82,0xb0,0xfb,0xbe,0x35,0x52,0x02,0xd9,0xb8,0x49,0xaf, + 0x4b,0x41,0xbf,0x3f,0xc3,0x9e,0x63,0xcb,0x58,0x08,0x6b,0xc1,0x17,0xd8,0x7e,0xdb,0x4c,0xb0,0x18,0x43, + 0xfd,0xa7,0x71,0xe1,0xb2,0x06,0x2f,0x75,0x30,0xe2,0x01,0x63,0x21,0xe5,0xbb,0x3b,0x0e,0x77,0x5f,0xb7, + 0xa6,0x8d,0x5d,0xd8,0x4b,0x10,0xe9,0x4b,0x9c,0x28,0x5f,0x61,0x13,0xec,0xf4,0x70,0xa2,0xba,0x7b,0xbe, + 0xec,0x4e,0xa2,0x8d,0x80,0xd9,0x9b,0x21,0x91,0x38,0x6c,0x48,0x67,0x78,0x13,0x04,0x48,0x66,0xdb,0xec, + 0x05,0x60,0x29,0x49,0xaf,0x57,0x54,0x38,0xbd,0x63,0xb1,0x4d,0x94,0xeb,0x2c,0xfb,0x84,0x0b,0xa9,0x19, + 0x6e,0xf9,0x09,0xa8,0xeb,0x71,0xc7,0xf4,0xef,0xaa,0x76,0xd6,0x88,0xe3,0xf2,0x9b,0x0f,0xf5,0xce,0xce, + 0x55,0xcd,0x17,0xb0,0xcd,0xbe,0xe1,0x9a,0x92,0x92,0x16,0x84,0x0a,0x99,0xd8,0xd6,0xe5,0xee,0x81,0xda, + 0x87,0x0c,0x87,0x0f,0xba,0x2b,0x7b,0x4f,0x66,0x32,0x7e,0x8a,0x5d,0x8e,0x93,0x61,0x5f,0x7d,0x17,0xaf, + 0x5a,0x71,0xae,0x13,0x59,0x4d,0x67,0xbc,0xd4,0xed,0x70,0xb0,0xa0,0x51,0x3d,0x66,0xb5,0x31,0x54,0xfc, + 0xb6,0x67,0x5b,0xa3,0x6d,0x23,0x47,0x63,0x24,0x71,0x7b,0x5b,0xf0,0x45,0x78,0x6e,0xeb,0x74,0xa0,0x45, + 0x7c,0x40,0x6d,0xad,0x1d,0xfe,0x4a,0xb6,0x6c,0x6d,0x36,0xdd,0xf4,0x44,0xf6,0xb7,0xd9,0xfe,0x6c,0xeb, + 0xea,0x45,0xa8,0x4f,0xe2,0xd6,0x32,0x61,0xea,0xbe,0xb5,0xd4,0xf8,0x53,0x3b,0x5b,0x5c,0x99,0xee,0x6c, + 0x61,0xdd,0x9b,0x0e,0x8d,0x2e,0x0e,0x01,0x40,0x80,0x10,0x79,0x22,0xc2,0x13,0x07,0x62,0x8c,0x4e,0x2d, + 0x9b,0x22,0xb4,0x3f,0xda,0x61,0xe1,0xd6,0x32,0x9f,0xc7,0xfd,0xa5,0x6a,0x09,0xee,0x67,0xd5,0xe5,0x67, + 0xd7,0xcb,0x0c,0x0e,0x61,0x84,0x9e,0x68,0xa2,0xf9,0x9e,0x59,0xdd,0xd1,0xed,0xad,0x1b,0xb9,0x3f,0xe2, + 0x85,0x79,0x1d,0xff,0x5b,0x9d,0xeb,0xed,0xed,0x71,0xe7,0x20,0x3e,0x58,0x0b,0xcf,0xf6,0x8a,0x08,0x13, + 0x5d,0xae,0x16,0xda,0xca,0x72,0x54,0x4f,0xb6,0x03,0x85,0x4d,0x7a,0xa6,0x1a,0xfc,0x5d,0xab,0x5f,0xa9, + 0x38,0x76,0x18,0x18,0xf3,0xf1,0xd3,0x36,0x7e,0x1c,0x48,0x5b,0x85,0xcb,0x7f,0x4e,0x25,0x10,0x54,0x20, + 0xe4,0x99,0x0d,0x45,0xc3,0x67,0xc0,0x70,0xcc,0x80,0x81,0xa0,0x00,0x45,0xe3,0xa6,0x24,0x19,0x0a,0x1b, + 0x90,0x75,0x1a,0xf0,0x97,0x7d,0x67,0x37,0xc7,0x2c,0xe7,0x91,0xd2,0x18,0x81,0xf1,0x65,0xbe,0x24,0x92, + 0x52,0x1e,0x7f,0x2c,0x59,0x25,0x6d,0x5f,0x9f,0xcf,0x17,0x69,0x2d,0x1c,0x1b,0x11,0x9d,0xfa,0x14,0xef, + 0x85,0xbc,0xaf,0xd9,0x5d,0x94,0x1d,0xcc,0xbb,0xf6,0x3d,0x3e,0x46,0x88,0x5c,0x5c,0x63,0x0c,0x7b,0xb2, + 0xa9,0x79,0x50,0x4d,0xdf,0x96,0x87,0xb2,0x7a,0x29,0xf0,0x4c,0xbc,0xdc,0xda,0x8c,0x6e,0xc0,0x11,0x0d, + 0x88,0x75,0x83,0x9f,0x5d,0x32,0xba,0xc7,0x8a,0xc8,0x18,0xa4,0xaa,0xa6,0x8e,0x19,0x41,0x5d,0x70,0x61, + 0x93,0xe9,0x1f,0x42,0x03,0x3c,0x9e,0x3b,0x5c,0x80,0x08,0xa2,0xcf,0x01,0x94,0x9a,0x43,0x39,0xc4,0x95, + 0xaa,0x68,0x13,0x29,0xfb,0x9e,0x76,0x99,0x2d,0xeb,0x92,0xb7,0x11,0x68,0x61,0x7b,0x88,0x34,0x95,0xfa, + 0xb7,0xb7,0xe3,0x02,0x6b,0x67,0x23,0x27,0x8c,0x8e,0x65,0xe8,0x4f,0x8d,0xb8,0xf6,0xf6,0xd6,0x86,0x67, + 0xf5,0xa6,0x7d,0x5c,0x3e,0x78,0xe7,0x9b,0x16,0x8c,0x5d,0xa4,0xaf,0x27,0x58,0x25,0xc8,0x79,0x4d,0x78, + 0x2e,0x7e,0x3c,0x36,0x97,0x72,0xc7,0xf6,0xd1,0x8a,0x53,0xf9,0xa2,0xa7,0xbb,0xba,0x02,0x11,0xf1,0xe8, + 0x9e,0x5c,0xcc,0x61,0x6f,0x38,0xea,0x5e,0x73,0x76,0x81,0x7b,0x36,0xee,0xcd,0xad,0xf9,0x12,0x6e,0x11, + 0xa0,0x24,0x36,0x6e,0x71,0x95,0x8a,0xc9,0xe5,0x4d,0x5e,0x8f,0x3a,0x42,0x2a,0x6b,0x1e,0x2c,0xcc,0x3b, + 0xe2,0x54,0xa1,0x1c,0xbb,0x9c,0x04,0x43,0xa2,0x34,0xa8,0x58,0x10,0x1e,0x1b,0x91,0x10,0xc7,0xd3,0x47, + 0x6e,0xeb,0x4e,0xfd,0x45,0xd8,0xcd,0xe1,0x94,0x78,0x7e,0xdc,0xd1,0xfe,0x26,0x5e,0xa9,0x7e,0xdb,0x72, + 0xe3,0xdf,0x66,0xfb,0xfb,0x1b,0x25,0x9f,0xb1,0xf8,0x7c,0xed,0xad,0x9b,0xe7,0xd9,0xe6,0x04,0xfb,0xb8, + 0x15,0x9f,0xc9,0xc3,0x85,0x45,0x72,0x8f,0xe5,0x3c,0x59,0x57,0x3c,0xf1,0xf7,0x60,0xd9,0x40,0x13,0x89, + 0x7b,0x17,0x83,0x50,0xde,0x94,0x41,0xd3,0x30,0x35,0x8a,0x72,0xf6,0xa2,0xd7,0x03,0xdb,0x76,0x60,0x2b, + 0xab,0x20,0xcc,0x06,0x3d,0xbb,0x55,0x00,0xc4,0xf9,0x08,0x1e,0x6b,0x25,0xa1,0xc3,0x06,0x8f,0x6e,0x7b, + 0xff,0x5e,0x39,0x54,0xff,0xb8,0xec,0x44,0x6b,0x8b,0xc3,0x57,0xcc,0xde,0x14,0x37,0x5d,0x39,0x85,0x3f, + 0x1b,0xb8,0x75,0xb7,0x14,0x5f,0x2c,0xed,0xbf,0x99,0xf0,0x3d,0x4e,0x35,0xae,0x8d,0x76,0xf8,0x94,0x18, + 0x3d,0x39,0xd2,0xeb,0x24,0x49,0x1b,0x54,0xb8,0xbd,0x6f,0x82,0x51,0xd5,0x6b,0x65,0x2c,0x03,0xee,0xe8, + 0x7a,0xbf,0xbb,0x5d,0xec,0xc7,0x6e,0xa3,0xdd,0xfe,0x38,0x79,0xa5,0x58,0xbd,0x0a,0x6a,0x8d,0x4b,0xe9, + 0xa6,0x58,0x3e,0xbc,0x2c,0x3d,0xcf,0x95,0xf3,0x65,0xd0,0xa0,0xf7,0x5c,0x8f,0x13,0x04,0xd4,0x0c,0xfa, + 0xbf,0x3f,0x0e,0x64,0x9a,0xe3,0x9a,0x18,0x97,0x7b,0xfd,0x3b,0xdb,0x21,0xd9,0x84,0x2b,0xa5,0xcb,0xc0, + 0x4d,0x8f,0xe3,0x29,0x7a,0xd0,0xb1,0x70,0x90,0xb0,0xfb,0x34,0xfa,0x34,0xbc,0xa6,0x19,0xc8,0xe7,0x5d, + 0xdd,0x11,0x55,0x3e,0xa7,0x3d,0xfb,0xb2,0xce,0x0e,0xd4,0xb3,0x3a,0x7b,0xa8,0x5e,0xa0,0xe1,0x5f,0x43, + 0xed,0x1d,0xdf,0xca,0xbd,0x29,0xfb,0x3d,0x5e,0x11,0x6b,0xf9,0xa2,0xb6,0x1a,0x38,0x9a,0xaa,0x1f,0x57, + 0xc2,0x5a,0x72,0x94,0xb8,0x00,0xf9,0x4f,0x86,0x90,0x9c,0x87,0xf5,0x9e,0xe4,0x8a,0x81,0xc8,0x8a,0x67, + 0x9c,0x79,0x27,0x87,0x21,0x09,0x31,0xd2,0xd8,0x46,0x8c,0xc8,0x2c,0xee,0x51,0x65,0x1f,0x65,0xb9,0x04, + 0x3a,0x4a,0xfc,0xe7,0xf4,0x82,0x1c,0x39,0x61,0x90,0x2c,0x4f,0x46,0x8c,0x36,0x70,0xfd,0x63,0xb0,0x2d, + 0xb2,0xa2,0xb3,0x45,0x36,0x76,0x69,0x11,0xec,0x9a,0x72,0x13,0xfd,0xb9,0x5d,0x84,0x4c,0xd7,0xce,0xc7, + 0xfc,0x4c,0xee,0xf4,0x55,0xda,0x1c,0x5b,0x1c,0x6a,0xd6,0x1c,0x65,0x36,0x4d,0x6d,0x38,0x0a,0x66,0x1b, + 0x8e,0x39,0x89,0xd0,0xac,0xaa,0x35,0x12,0x83,0x7b,0xfe,0xb2,0xf6,0x57,0x6d,0x6c,0xf5,0x71,0x76,0x72, + 0x69,0x83,0x71,0x28,0x6f,0x23,0xc9,0xe0,0x55,0x94,0xb6,0xde,0xd5,0xd5,0x95,0x08,0x06,0x4c,0x72,0xa3, + 0xe7,0xa7,0xf2,0x3e,0xb4,0x75,0xdc,0xc5,0x9f,0xa5,0x5b,0x0c,0xa6,0xe0,0x11,0x0a,0xd3,0x85,0x02,0x32, + 0xe1,0x42,0x4b,0x8f,0xe3,0x6c,0xce,0xce,0x0e,0x25,0xda,0x78,0x8f,0xb0,0x85,0xb5,0x2f,0x65,0x00,0xfd, + 0x56,0x5d,0xdb,0xda,0x5c,0xbe,0x92,0xe9,0x5e,0x5d,0x55,0x90,0x1f,0x95,0xf2,0x44,0xc4,0x44,0xeb,0xbf, + 0x61,0xa9,0x85,0x5c,0xf8,0x0c,0xb1,0x4f,0x20,0xbb,0x61,0x1a,0xa3,0x0d,0x36,0x9e,0x4d,0xe8,0x6f,0xda, + 0x03,0x2e,0xe5,0x91,0x94,0x79,0x77,0x48,0xc1,0xa5,0x74,0x89,0x47,0x10,0x76,0x46,0x12,0xd4,0xd9,0x37, + 0xa3,0x63,0x73,0xdf,0xd1,0x90,0x25,0x0f,0xe5,0x12,0x53,0x08,0xab,0x1a,0xb6,0x97,0xc8,0x4c,0x34,0x34, + 0xfd,0xd9,0x23,0x83,0x70,0x62,0x29,0xf7,0x74,0xdd,0xd1,0xa0,0x9c,0xd9,0x76,0x7c,0x02,0x2f,0x1f,0x6b, + 0xad,0x1b,0xaf,0x17,0xee,0x2d,0xa1,0x3b,0xe8,0xbb,0x1b,0x8e,0x76,0x60,0x89,0x95,0xb2,0x11,0x38,0xc3, + 0x03,0x48,0xf7,0x41,0x5d,0x2e,0x7c,0x0c,0x49,0x8c,0x8c,0x8f,0xf6,0xe3,0x69,0xc7,0xdc,0x5b,0x85,0xd7, + 0x5d,0xbf,0x0d,0x2e,0x82,0x45,0x84,0x88,0x35,0xaf,0x65,0x68,0x83,0xf8,0x67,0xbf,0xdd,0x37,0x9a,0x90, + 0x42,0x7a,0xcc,0x21,0xf3,0xa1,0x7a,0x89,0x84,0xf6,0x88,0x20,0xca,0x2b,0x02,0x92,0x43,0x02,0x6e,0x49, + 0x09,0xb7,0x7f,0x23,0xa5,0x37,0xa6,0xdb,0x97,0xb6,0xb3,0x3d,0x95,0x6d,0xa5,0xba,0xe6,0x6c,0x03,0x41, + 0x59,0xb2,0xf3,0x36,0x24,0xae,0x44,0xce,0x0f,0xe5,0x03,0x4e,0xb5,0x01,0x5a,0x46,0x85,0x28,0x5a,0x0f, + 0xc4,0x28,0xa7,0xe3,0xe6,0x23,0x13,0x04,0x5a,0x02,0xe4,0xaa,0x01,0x82,0xe4,0x2e,0xa0,0xb0,0xfc,0x0c, + 0x1c,0xed,0xfb,0x10,0x40,0xc7,0x9e,0xf1,0x78,0xf9,0x3c,0xda,0xf6,0x88,0x90,0x91,0x48,0xed,0x48,0x2e, + 0x13,0xaf,0x7f,0x80,0xea,0xc2,0x86,0xac,0x10,0x74,0xc8,0x6e,0xf0,0x8d,0x2e,0x57,0xc6,0x75,0xcd,0x35, + 0x5d,0xe1,0x5e,0x2a,0xde,0xfb,0x95,0x0d,0xbf,0xfb,0x06,0x86,0xd3,0x34,0x6e,0x9a,0xbb,0x8f,0x31,0xc7, + 0x13,0x49,0x14,0x6b,0x6e,0x08,0x9b,0xcd,0x5b,0x56,0x35,0x72,0x3f,0x22,0x90,0xda,0xbd,0x38,0x02,0x49, + 0x0e,0x77,0xfb,0x81,0x99,0x62,0xe7,0x27,0x43,0x5a,0xc2,0x2c,0x5b,0x34,0x32,0xfd,0x39,0xe8,0x8f,0xde, + 0x07,0xc4,0x91,0xda,0xf9,0x36,0x17,0x11,0x5c,0x60,0x55,0x26,0x67,0xe9,0x2c,0x16,0x7d,0x9f,0xdc,0xf9, + 0x6c,0xeb,0x45,0x13,0x80,0xca,0xc9,0xe7,0xb0,0xa9,0xc0,0x6d,0x15,0x23,0xed,0x98,0xb5,0x76,0x83,0x62, + 0xd4,0x5e,0x0f,0xbd,0x79,0x70,0x2b,0xec,0xbb,0xee,0x08,0x06,0x4c,0xde,0x13,0xde,0x2e,0x6c,0xc4,0x19, + 0xe3,0x9a,0xad,0x9b,0xb5,0x5c,0xd2,0x43,0xc4,0x02,0xdf,0xf1,0x4c,0xc4,0x8e,0xe6,0x4b,0xd9,0xbc,0xa0, + 0xa5,0x0b,0x8f,0xbc,0xde,0x3d,0xb2,0xb8,0xc8,0x42,0x08,0x37,0x43,0x55,0x2e,0x22,0xe3,0xb8,0x70,0xa2, + 0xb1,0x3c,0x2b,0x0f,0x8b,0x23,0xb8,0x9a,0x9d,0xd2,0x0a,0xe2,0x8e,0xd6,0x4b,0xbe,0xa9,0xd5,0x2c,0x1f, + 0xba,0x15,0xe1,0x9e,0xec,0x0f,0x42,0xc1,0x80,0x03,0x4b,0x3f,0xc4,0x76,0x1a,0x08,0xbe,0xb0,0x5f,0xb5, + 0x53,0x91,0xdd,0x05,0xaa,0xc7,0xb6,0xc0,0x4f,0x16,0xde,0x87,0xf0,0x6e,0x9d,0x7d,0x8f,0x50,0xe9,0x9d, + 0xe8,0x1b,0x8e,0x7b,0xd3,0xb8,0x3b,0x66,0x70,0xe6,0xab,0x49,0x95,0x56,0x90,0x6d,0x8c,0x21,0x39,0xc2, + 0x78,0x58,0x00,0xfe,0x16,0x7e,0x9b,0xb4,0x25,0xce,0xd4,0x19,0xb1,0xe9,0x44,0xc4,0x16,0x06,0x34,0x4f, + 0x31,0xb6,0x82,0xd9,0x3f,0x06,0x05,0xdb,0xb7,0x84,0x7d,0xbc,0xa8,0x7f,0xb0,0x69,0xe1,0x87,0x6d,0x51, + 0x70,0xde,0xe1,0x1e,0x11,0x74,0xaf,0x66,0x28,0xdb,0x0c,0xe3,0x51,0x87,0x77,0xc1,0xc1,0x3d,0xae,0x0e, + 0x7d,0xe2,0x66,0xc2,0x47,0xd4,0x7c,0x53,0x24,0x73,0xaf,0x36,0xc5,0x76,0x4d,0xcc,0x02,0x87,0x70,0xc7, + 0x06,0x8c,0x1a,0x1d,0xa2,0x89,0x07,0x76,0x6c,0x5e,0x67,0xc3,0xa0,0xaa,0x8d,0x40,0x89,0xa0,0x6c,0x13, + 0x81,0x5a,0x03,0x60,0x43,0x89,0xb8,0x16,0xe0,0xa2,0x24,0x29,0xc2,0x81,0xf7,0x73,0xe9,0x9c,0xd8,0xec, + 0x21,0x6e,0x13,0xfa,0x9c,0x0d,0x0c,0x03,0xd2,0x7a,0xec,0xe2,0x3e,0x95,0x9f,0x2d,0xcc,0xe0,0x3d,0x6c, + 0x25,0x73,0x1d,0x07,0xa4,0x32,0x1d,0x1f,0x02,0xba,0xb4,0x3f,0xfe,0x4c,0x61,0x83,0xa6,0xca,0xa4,0x63, + 0x2d,0x77,0x8f,0x0d,0xe3,0xba,0x49,0x72,0x91,0x53,0xf6,0xaa,0x9b,0x3a,0xa4,0x38,0x97,0x3b,0x8f,0x7c, + 0x24,0x17,0x5e,0x5c,0x26,0xe4,0xe4,0x7e,0x69,0x5c,0x07,0x21,0xd7,0xb8,0x8b,0x22,0x6a,0xdf,0x86,0x5c, + 0x35,0xb0,0x1b,0x14,0x75,0xbe,0x73,0x85,0x57,0xe0,0x6a,0x2f,0x13,0x54,0xd6,0x1f,0x22,0x34,0x9b,0xa9, + 0x9d,0xd4,0x8d,0x43,0x28,0xc7,0xbf,0x0e,0x05,0x28,0xcb,0x1e,0xfc,0x0f,0x2e,0x61,0x4f,0x1f,0x8c,0x3b, + 0xc3,0xa9,0x3a,0xc6,0xe8,0x32,0x92,0xbe,0x9d,0x48,0xd2,0xb5,0xf9,0x68,0xfb,0x36,0x1f,0x06,0x3a,0xa8, + 0x02,0xf8,0x02,0x1b,0xf1,0x8c,0xc0,0x8c,0xa1,0xbd,0x0e,0xdb,0x23,0xab,0x35,0xf0,0x29,0x41,0x10,0xa8, + 0x12,0x1b,0xd2,0x68,0x9b,0x00,0xd4,0x5c,0xb0,0x4b,0x98,0xed,0xfb,0x9b,0x81,0x28,0xb7,0x6b,0xeb,0x78, + 0xaf,0xea,0x09,0xc5,0x74,0x60,0x9c,0x29,0x33,0x74,0xaf,0x3a,0x3d,0xe5,0x01,0x2a,0x6b,0x25,0x54,0x07, + 0x57,0xa7,0xad,0x8d,0x1f,0x0a,0xd5,0x1c,0x78,0x2f,0x12,0x65,0xad,0x6a,0x19,0x18,0x3e,0xac,0xfb,0x8d, + 0x9e,0x9e,0xf6,0xda,0x04,0x2b,0xda,0x37,0x5a,0x4a,0x3a,0x50,0xfd,0x39,0x52,0x14,0x8d,0x0f,0xcd,0x7e, + 0xcf,0x4b,0x6b,0x23,0xa8,0xa1,0x99,0x7e,0x8c,0x0f,0xc7,0x9e,0xee,0x4e,0x94,0x71,0xe1,0xea,0x4e,0x7d, + 0xf7,0xd2,0x0a,0xdb,0xb2,0x37,0xe9,0xe8,0xaf,0x94,0x90,0xb2,0xa6,0x98,0x76,0xf0,0x50,0x85,0x97,0x5c, + 0xe6,0x38,0x69,0x28,0x3b,0xae,0xb2,0x02,0x16,0x1a,0xb0,0x5b,0xc0,0xf5,0x45,0xa7,0x65,0xef,0xaa,0xcb, + 0x7c,0xe3,0xaa,0xcb,0x81,0x15,0xd5,0x8b,0x1e,0xff,0xeb,0xe5,0xf5,0xcc,0xf1,0x74,0xc7,0x52,0xc2,0x81, + 0xcc,0x1e,0x7a,0xdf,0x1c,0x4c,0x00,0x51,0x69,0x19,0xf0,0xf5,0xe7,0xb1,0x5b,0x17,0x6a,0x9d,0x80,0x78, + 0x9f,0x3d,0x5e,0x2d,0x86,0x7e,0x54,0x31,0x96,0xe6,0x5b,0xba,0x08,0x45,0x1b,0x08,0x41,0x40,0x30,0xef, + 0xe0,0xf3,0x24,0x26,0xb2,0x4f,0xdd,0xe7,0x76,0xb7,0xce,0xc5,0x7d,0x80,0xa5,0xfb,0x90,0xea,0x8b,0x1c, + 0xdf,0x2b,0xd9,0x64,0x13,0xc6,0xaf,0xeb,0x8c,0x7e,0x43,0xbe,0xbe,0xaf,0xba,0x11,0x02,0xc2,0x30,0xf3, + 0x86,0xe5,0xd9,0xd9,0xe9,0x51,0xb8,0xc6,0xff,0xc2,0xc6,0x39,0x94,0x05,0xd7,0x73,0x65,0xf4,0xd1,0xc2, + 0x6f,0xd0,0xa0,0x2e,0xeb,0xf1,0x65,0x1d,0xb2,0x90,0xc2,0x53,0xb4,0xaa,0x9e,0xd8,0x6f,0xac,0x49,0x1c, + 0x4b,0x42,0x8f,0x11,0xb1,0x98,0x4e,0x86,0xf8,0xae,0x5c,0xd7,0x12,0xc7,0xe4,0x38,0xe8,0x9d,0x12,0x01, + 0x6f,0xdf,0xcb,0x10,0xee,0xbe,0x7f,0xaa,0x04,0x82,0x81,0xc1,0xf2,0x36,0x86,0x76,0x9d,0x15,0x7c,0x3b, + 0x22,0xf1,0xeb,0xc7,0x17,0x2b,0x7d,0x7c,0x9c,0xf9,0x1d,0x82,0xde,0x58,0x0c,0x41,0x8f,0xae,0x44,0xc0, + 0x4f,0xdf,0x33,0x72,0x52,0x79,0x91,0x36,0xed,0x9b,0x4c,0x88,0x51,0x0d,0x99,0xbc,0x40,0xb0,0x1a,0xa6, + 0xba,0xe9,0xb8,0xc7,0xe7,0xdd,0xeb,0x50,0xcb,0x11,0x4a,0xfb,0x36,0xb4,0x30,0x96,0xd2,0x37,0x6d,0xda, + 0xd7,0xc0,0x4e,0xb8,0x5b,0x97,0x91,0x13,0xf5,0x34,0x26,0xdb,0x16,0x28,0xba,0x5c,0x6e,0x72,0xd3,0x83, + 0x0d,0xeb,0x82,0x93,0xa8,0xe1,0x0f,0xfc,0xcd,0x94,0xe1,0xe8,0xc6,0xdb,0x2d,0xe4,0xd1,0x03,0x1a,0x98, + 0xee,0xca,0x58,0x71,0x01,0x6b,0x66,0x3c,0x97,0xdf,0x11,0x5f,0xdc,0x31,0x5c,0x7f,0x26,0x8d,0xbd,0x25, + 0x5d,0xa7,0x88,0x93,0x02,0x6b,0xa7,0xc0,0x71,0x59,0x30,0xac,0x0e,0x6a,0xf0,0x04,0x84,0x31,0xe7,0xb4, + 0xad,0x05,0x49,0xd6,0xf8,0x71,0x6f,0xcf,0x4d,0x45,0x38,0x0b,0x6a,0x08,0xb6,0xcd,0xd6,0x11,0xf8,0x72, + 0x33,0xeb,0x9d,0x99,0x1c,0x08,0x13,0x76,0xfd,0x3c,0x00,0x86,0x20,0xda,0x85,0xa7,0x8e,0xac,0x5e,0xcc, + 0xed,0xd7,0xea,0x69,0x1b,0xc7,0x6f,0x7a,0xd8,0x21,0x51,0x6f,0x3a,0x80,0x51,0x12,0xcb,0xff,0xb1,0x98, + 0x76,0x4d,0x1f,0x0d,0x8a,0xf9,0xce,0x28,0x1b,0x09,0x9a,0x3a,0x1f,0x19,0x99,0x40,0x08,0x4c,0x7e,0xf5, + 0xd5,0x86,0xe0,0xc8,0x88,0xb9,0x36,0x04,0x7d,0xac,0x95,0xf0,0x18,0x29,0xe9,0x10,0xea,0x56,0x0a,0xe1, + 0x9d,0x99,0xe5,0x1d,0xec,0x05,0x6e,0x61,0xb1,0xae,0x69,0x84,0xfd,0x0f,0xf7,0x8f,0x76,0x76,0xf0,0x17, + 0x0a,0x9c,0x24,0x10,0xa1,0x83,0x74,0x7f,0x4c,0x4c,0x25,0x24,0xc5,0xeb,0x9e,0xd4,0xa2,0x76,0x1a,0x8a, + 0x8e,0xfa,0x44,0xf4,0x14,0x46,0x1f,0x22,0x7c,0x29,0x1b,0x60,0x20,0x60,0x81,0x10,0x48,0x1d,0x51,0xda, + 0x86,0x24,0x23,0x30,0xc9,0x78,0xc2,0x97,0xa3,0x46,0x52,0x9a,0x6f,0x26,0xb2,0x58,0xc0,0xa2,0xf0,0x9c, + 0x06,0x2a,0x22,0x69,0x44,0xd3,0x07,0xb7,0x41,0xcd,0xd4,0x31,0xc7,0xf9,0xb4,0x6a,0x17,0x65,0xa8,0xd9, + 0x37,0x35,0xed,0x68,0xf5,0xbe,0xce,0x0e,0x8d,0xaf,0xe4,0x7b,0x7d,0xf6,0xfc,0x6a,0x29,0xf6,0xb6,0x47, + 0xea,0x49,0x9d,0xdd,0x7c,0x6f,0xc5,0xd7,0xa9,0x09,0x73,0x12,0x46,0xb3,0xb6,0x9b,0x8c,0x15,0x76,0x12, + 0xe9,0xa2,0x28,0xa7,0xf3,0xd5,0x4c,0xa7,0xef,0x6b,0xa5,0xaf,0xdc,0xe3,0x22,0xbf,0x4a,0x6d,0x1b,0x72, + 0xff,0xce,0x11,0x8c,0x0a,0x99,0x86,0x4f,0xfb,0x68,0x68,0x9a,0xd3,0x46,0xba,0x93,0xd2,0x60,0x9e,0x12, + 0xde,0x1b,0xca,0x01,0x7b,0xc7,0xb5,0xc5,0x6a,0x5b,0x79,0xbd,0x5d,0x75,0xc9,0x33,0x2b,0xd1,0xc4,0x9b, + 0x6a,0x7d,0x55,0x04,0x87,0xbc,0x75,0x7d,0xd7,0x43,0xa0,0x7d,0x69,0x76,0x96,0x97,0x25,0x39,0x40,0x7e, + 0x67,0x24,0x69,0x54,0x81,0x1d,0xe9,0x9f,0xfb,0x72,0xdb,0x7f,0xb9,0x56,0x9b,0x11,0x07,0x42,0x9c,0xc7, + 0x10,0x37,0x32,0xb1,0xc0,0x68,0x13,0xfc,0x43,0x4c,0x85,0x85,0xb4,0xee,0x4b,0x9e,0xc3,0x80,0x9c,0xcf, + 0x11,0x02,0x5e,0x19,0xf2,0xc9,0x0c,0x0c,0x81,0xc2,0x44,0x89,0xcf,0xaf,0x7c,0x57,0x26,0x01,0xf6,0x36, + 0xc1,0x08,0xba,0x54,0x20,0x18,0x04,0x41,0x3e,0xc1,0xf0,0xce,0x0e,0xbd,0x57,0x41,0x64,0x7f,0x6d,0xa4, + 0x29,0xc1,0x14,0x1a,0x63,0x10,0x4c,0xa1,0x9a,0x5a,0x31,0x06,0x5f,0xaf,0x5c,0x4a,0x74,0xf7,0x69,0x31, + 0xdb,0x8d,0x25,0x62,0x45,0x94,0xa6,0x88,0xb5,0xc1,0x81,0x59,0x22,0xa8,0x18,0x10,0x62,0x29,0x3f,0x9c, + 0x1e,0x4d,0x06,0xb5,0x4d,0xc8,0x19,0x50,0x38,0xcd,0xe5,0xf6,0x2c,0x63,0xa1,0x33,0x45,0x94,0x65,0x94, + 0x24,0x5a,0xd7,0x25,0xc9,0xb2,0x12,0xb4,0xed,0xec,0x58,0x1c,0xfd,0x8d,0x0f,0x18,0x68,0xf2,0x68,0x37, + 0x13,0x34,0xe4,0x0a,0xf7,0xaa,0xaa,0x0e,0xc1,0x91,0x58,0x51,0x8b,0xd7,0xda,0x40,0xda,0x63,0x27,0x81, + 0xce,0x18,0xc2,0xde,0xf4,0x15,0xf1,0x2a,0x03,0x11,0x8b,0x3f,0xc7,0x47,0xbe,0x2a,0xef,0xe4,0x08,0x89, + 0x99,0x65,0xed,0x3d,0x33,0x82,0xed,0x68,0xd5,0x16,0xf3,0xec,0x06,0x9e,0x9e,0xe9,0xcf,0x44,0xb7,0x5d, + 0xb5,0x04,0x20,0x88,0x26,0x0b,0xdb,0x6c,0xb3,0xd2,0xe9,0x33,0x25,0x95,0xbc,0x17,0x0d,0x8e,0x4e,0x3f, + 0x82,0x08,0xb5,0x9c,0x60,0xc0,0xfe,0x39,0x44,0xfc,0x9d,0x72,0x97,0x3e,0x0c,0xee,0xac,0x21,0xeb,0x6b, + 0x16,0x61,0xd9,0x9b,0x22,0xb4,0x18,0x61,0x0f,0xb9,0x60,0x25,0xbe,0xee,0xd1,0xf1,0x49,0xde,0x80,0x6e, + 0xc3,0xb5,0xa7,0x36,0xcd,0xad,0x64,0x43,0x18,0x85,0x87,0xd8,0xe8,0x3b,0x28,0x64,0x08,0xd9,0x69,0xb5, + 0x71,0xe1,0xc8,0xbb,0xf9,0xea,0xac,0x90,0xf8,0xab,0x83,0x19,0x7c,0xe7,0x1e,0x87,0x06,0xb5,0x1e,0x91, + 0x2d,0x6e,0xaf,0xe8,0xb0,0x06,0x42,0x75,0x76,0x49,0x68,0xcf,0x26,0x19,0xef,0x09,0x23,0x5a,0x18,0x90, + 0x41,0x20,0x06,0x09,0x37,0x3a,0x71,0x4f,0xd6,0x51,0x03,0x46,0xef,0x43,0x5f,0x40,0x9b,0x15,0x5c,0x59, + 0xc6,0x5c,0x5b,0x68,0x50,0x86,0x75,0x5a,0x14,0x57,0xc5,0xb0,0xb3,0x34,0x06,0xea,0x95,0x30,0xe1,0xab, + 0x72,0xdf,0x77,0x85,0xb3,0xb4,0xc9,0xb2,0x7d,0x23,0x95,0x3d,0x20,0x06,0x59,0xe0,0xa5,0xab,0x7f,0xcb, + 0x58,0x71,0x13,0x90,0xe0,0x10,0xce,0xe3,0x4b,0xb9,0x78,0x17,0x9b,0x55,0xee,0x35,0xc4,0x13,0xcb,0xf1, + 0x80,0x19,0xa0,0x28,0xb4,0x06,0xe8,0xd6,0x57,0x05,0x27,0xa6,0x5c,0xc7,0xe8,0x42,0xa9,0x48,0x94,0xed, + 0x7c,0x40,0xe3,0x07,0x45,0x20,0x7b,0x44,0x98,0x80,0x01,0xb9,0x3f,0xec,0xfb,0x60,0x14,0x50,0x12,0x49, + 0xa8,0x73,0xca,0x72,0xc4,0xab,0xa6,0x21,0xe2,0x86,0xf8,0x3c,0x98,0x9a,0x32,0x9c,0x17,0x3a,0x6d,0x57, + 0x4b,0xe8,0x69,0x7c,0x91,0x4d,0xa1,0xb4,0x97,0x46,0x7d,0x56,0x26,0x0b,0x99,0x62,0x28,0x75,0x39,0x76, + 0x52,0x97,0x35,0xee,0x3a,0xc9,0x3b,0x40,0xdd,0x97,0x26,0x6e,0xb6,0x61,0x4b,0xf5,0x9b,0x39,0xed,0x36, + 0x63,0xc5,0xf2,0xd2,0x84,0x59,0xc3,0xd2,0x3c,0x50,0x8a,0x40,0x4c,0x29,0xbf,0xf4,0x8e,0x0d,0x54,0xe2, + 0xef,0x5d,0x5e,0x13,0x39,0xf3,0xbe,0x1c,0x73,0x56,0xc9,0x0d,0x2e,0x9b,0x9b,0x91,0xdd,0x10,0xdc,0xec, + 0x59,0x6f,0x38,0x3f,0xb3,0xb6,0x23,0x36,0xa7,0xe5,0x8b,0x61,0x72,0xda,0x81,0xce,0xfd,0x0e,0x97,0xf2, + 0xe6,0x5e,0xeb,0x5a,0xb0,0x83,0x13,0x11,0x17,0x6b,0x39,0xa6,0xda,0xbb,0xba,0x87,0x9e,0xf5,0x22,0xf9, + 0x38,0x9f,0x92,0x38,0x88,0x08,0x20,0x7e,0x62,0x55,0x5c,0x72,0x40,0x14,0x06,0xb5,0xac,0x34,0x10,0xe8, + 0xac,0x59,0x3b,0xa8,0xc7,0xf4,0x99,0x23,0xd9,0x04,0xe1,0x04,0xa4,0xa2,0x81,0x0d,0xcb,0xdc,0x5a,0x76, + 0x83,0xe8,0x96,0x69,0xa9,0x4c,0xec,0xf3,0x72,0x6d,0x5d,0x7d,0x0c,0xf2,0x13,0x0f,0x14,0x58,0x14,0x96, + 0x1c,0x65,0x6f,0x30,0x6f,0x6d,0x5c,0xa6,0x4a,0x61,0xa1,0x87,0xb1,0xfd,0xaf,0x5d,0x99,0x5e,0xd1,0x7c, + 0x10,0x5f,0x63,0x71,0x8c,0xfe,0x1e,0x2d,0xff,0xa9,0x0f,0x9b,0xa6,0x36,0xae,0x91,0x9b,0x3e,0xd5,0x21, + 0x36,0xe9,0xb2,0x94,0x42,0xd0,0xfb,0x6f,0x61,0xf9,0x4e,0x15,0xc3,0xef,0xad,0x80,0xed,0xf5,0xc3,0xd1, + 0x57,0xa3,0x83,0x2f,0x24,0x4c,0xcb,0x4f,0xb5,0xfa,0xa1,0x56,0x3f,0xd6,0xea,0xbb,0x5a,0xfd,0x5e,0xab, + 0xdf,0x6a,0xf5,0x7d,0xad,0xfe,0x5e,0xab,0x6f,0x6b,0x0e,0xa7,0xc1,0xf7,0x3e,0x9b,0x3b,0x5f,0xd5,0xcf, + 0x9c,0xc6,0x77,0xdb,0x28,0xd4,0x4b,0x64,0x66,0xae,0x64,0x82,0x94,0xdc,0xef,0x03,0xf2,0xf0,0x0c,0xa6, + 0x83,0x54,0xfa,0x5f,0x7d,0xdb,0x79,0x17,0x22,0xc9,0xdd,0x6f,0x4e,0xcb,0xf2,0x73,0xcd,0x22,0xb5,0x48, + 0x22,0x1a,0xc3,0xf1,0x02,0xb7,0xc0,0xda,0xdb,0x82,0x4c,0xa1,0x48,0x1a,0xe1,0xf5,0xa5,0x5c,0xa2,0x4b, + 0xa6,0x9f,0x7c,0xa6,0x5c,0xb6,0x63,0xf2,0x5c,0x1c,0x75,0xe4,0x40,0xec,0x5c,0x71,0xce,0x5a,0xfd,0x93, + 0x3b,0x3f,0x95,0xcb,0xde,0xf5,0xac,0x68,0x61,0x44,0xa7,0x66,0x75,0x7e,0x76,0xc6,0x4f,0xcd,0x52,0xcf, + 0xe7,0x5c,0x33,0xf5,0xfd,0x1f,0x5c,0x98,0x0e,0x82,0xea,0xf2,0x94,0x10,0x7c,0x43,0x18,0x8c,0x98,0x4a, + 0x76,0xc9,0x54,0xf9,0xaa,0xad,0x4e,0xab,0xe9,0xaa,0xe1,0xa7,0xe5,0x3c,0xbf,0x56,0xa6,0x43,0x1c,0x78, + 0x84,0x8e,0x6a,0xd8,0xe9,0x11,0xc9,0x3a,0x6f,0xe8,0xfc,0xa6,0xb9,0xab,0xb5,0xb2,0xa4,0x9d,0xf9,0xb5, + 0xe5,0xcd,0x2b,0xf7,0xd9,0xbe,0xd8,0xa1,0xe3,0x9d,0x38,0x9f,0x59,0xd1,0xa0,0x7b,0x33,0xa5,0x4b,0xf9, + 0x45,0x04,0x83,0xb2,0xa2,0x29,0x2c,0x00,0xc4,0xea,0xbc,0x98,0xcd,0xa8,0x6b,0x38,0x1c,0x5b,0x5d,0x2f, + 0x8a,0x12,0x89,0x04,0x51,0x75,0xab,0x8a,0x66,0x91,0x2f,0x55,0xd1,0xea,0x85,0x44,0x3a,0x99,0x57,0xd5, + 0x52,0xd9,0x6b,0xa6,0x94,0x34,0x5a,0x56,0x08,0xd5,0xa2,0x10,0x5e,0xa2,0x29,0x7e,0xa7,0x45,0xaa,0x9a, + 0xf3,0x1c,0x0c,0xa7,0x6f,0xa1,0xac,0x10,0x3d,0x8a,0xd6,0x99,0x9a,0x59,0xe6,0x84,0x8d,0x68,0xd3,0x5e, + 0x15,0x2d,0x91,0xb4,0xf9,0xac,0x2a,0xe7,0x88,0xaa,0xf2,0xdb,0x8a,0xb6,0xe0,0x4c,0x19,0xd7,0xca,0x99, + 0x12,0xb6,0x88,0x60,0x22,0x5f,0xcc,0x09,0x18,0x94,0x1b,0x13,0x7c,0x30,0x79,0xb6,0xdd,0xc5,0x2e,0x1c, + 0x1b,0x94,0xe6,0x9e,0x32,0x01,0xf3,0x08,0x2c,0xc1,0xb1,0xe2,0xd5,0x45,0xd1,0x14,0x54,0x12,0x1c,0x6e, + 0x91,0x45,0xe7,0x6d,0xbb,0x4c,0x1f,0x3c,0xb8,0xbc,0xbc,0x1c,0x5d,0x7e,0x31,0xaa,0xea,0xb3,0x07,0x07, + 0x5f,0x7f,0xfd,0xf5,0x83,0xab,0x79,0x51,0x7e,0x22,0x8a,0xaa,0x18,0x38,0x67,0xa3,0xb4,0xe3,0x82,0xf2, + 0x15,0xa0,0x4c,0xca,0x73,0xb2,0x0d,0xd1,0xf3,0x15,0x11,0xf6,0xe5,0xd0,0xf7,0x5b,0x1a,0x36,0xb9,0xce, + 0xbb,0xe4,0xaf,0xca,0x0a,0x36,0x39,0x66,0x8b,0xaa,0x07,0xbf,0x11,0x02,0x99,0x00,0x71,0xfb,0x40,0xc0, + 0xae,0x28,0xb2,0x9b,0xe6,0x82,0x08,0xe2,0xcd,0x11,0x3c,0xdc,0xdf,0xdf,0x7f,0x40,0x79,0x11,0xf1,0x4d, + 0xed,0xf9,0x50,0x09,0x1a,0xe3,0xdf,0x1e,0xe0,0x8e,0x54,0xfe,0xf3,0xfa,0x15,0x35,0x5b,0x15,0x80,0xcc, + 0xf3,0x76,0x31,0x57,0x27,0xd5,0xec,0x5a,0x01,0x1b,0xaa,0x73,0x5a,0x0a,0x85,0xa1,0x29,0x44,0x28,0x57, + 0xb2,0x6b,0xdb,0xa2,0xa5,0xbf,0xf9,0x6c,0x86,0xfd,0xa8,0xf2,0xba,0x2d,0xa6,0x78,0x6f,0x68,0x4f,0x10, + 0x10,0x55,0xb8,0xc5,0x13,0xdf,0xe1,0xe7,0x40,0x9d,0x3f,0x54,0xe7,0x5f,0xa8,0xf3,0x2f,0xd5,0xf9,0x57, + 0xea,0xfc,0xaf,0xea,0xfc,0xac,0xae,0x56,0x4b,0x55,0xe6,0x17,0xb4,0x76,0x3c,0x46,0x02,0xc4,0x0b,0x35, + 0x23,0xa8,0x9c,0xab,0x59,0xab,0x88,0x8e,0x85,0x87,0x0d,0xd2,0xd9,0x20,0x55,0xab,0x65,0x31,0x85,0xc3, + 0x8d,0x3a,0xaf,0x55,0xb1,0x38,0xa3,0xce,0xd0,0xa0,0xe8,0x10,0xab,0xe6,0x6a,0x09,0xc3,0x46,0xb5,0x9a, + 0xab,0x5c,0x9d,0x10,0x2b,0x79,0x52,0xab,0x93,0x59,0x41,0xff,0x2b,0x45,0x8f,0x53,0x02,0x4f,0x8e,0x42, + 0xa4,0xf8,0x32,0xfb,0xd9,0x29,0x9d,0x91,0x0b,0x55,0xa8,0x4f,0x27,0x33,0xaa,0xa0,0xfe,0xa4,0x7e,0x53, + 0xf5,0x52,0x11,0x30,0xd7,0xed,0x54,0xd5,0xab,0x93,0x6b,0xa2,0xe4,0x9b,0x7c,0xb1,0x54,0x04,0xdb,0x44, + 0x78,0x35,0xcb,0x9c,0x50,0x0f,0xed,0x35,0x62,0x38,0x9b,0xd5,0x09,0xfd,0x5f,0xf2,0xbd,0xb6,0x6a,0xa5, + 0x08,0xb9,0xa9,0xcb,0x13,0x08,0xd1,0x09,0x49,0xe5,0xab,0x59,0x51,0x29,0x6c,0x07,0x30,0xb2,0x9f,0x14, + 0x23,0x06,0x6a,0xe9,0x84,0xc0,0x4e,0xbc,0xc1,0x60,0x89,0x9a,0x2f,0x08,0x40,0x57,0x35,0xf1,0x20,0xd3, + 0xbc,0xbc,0xc8,0xa9,0xa5,0x69,0x5d,0x2c,0x5b,0x6c,0x0a,0x79,0x20,0x92,0x1b,0x86,0x6e,0xca,0x8e,0x7d, + 0x4a,0xc3,0xa3,0xff,0x32,0x59,0x06,0xb0,0x79,0x2d,0x5a,0x5e,0x9b,0x96,0x1e,0xce,0xa9,0x45,0x25,0xc8, + 0x8d,0x87,0x08,0x53,0x02,0x9a,0x33,0x3d,0x9f,0x11,0x1d,0xcf,0x9b,0x59,0x09,0x42,0x9d,0xe7,0x27,0x54, + 0xfb,0x5c,0x9f,0x81,0x16,0x58,0x60,0x33,0x03,0xb5,0x4a,0xd5,0x06,0xc7,0x56,0xab,0x16,0x25,0x2d,0x8e, + 0xb5,0x38,0xd7,0xa1,0x62,0x42,0x01,0x79,0x01,0xac,0x53,0xe4,0xf3,0xea,0x8c,0x2a,0x29,0x57,0xfc,0x07, + 0x28,0x80,0xa6,0x66,0x41,0x13,0x7a,0xad,0x0c,0x06,0x54,0x5a,0x84,0x0e,0x0a,0xfb,0xbd,0xba,0x54,0x36, + 0x74,0x96,0xe2,0xe0,0x64,0xbf,0xad,0x2a,0xa0,0x91,0xd3,0x1a,0x54,0x5f,0x0b,0x68,0x81,0x10,0x82,0x41, + 0x8f,0x00,0x56,0xe5,0x65,0xb1,0x40,0xd9,0x69,0x51,0x4f,0xf9,0x7c,0x28,0x96,0x4b,0x02,0x50,0x35,0x5d, + 0xd5,0xb4,0xc3,0x81,0xb9,0x80,0xfa,0x9a,0x29,0x35,0x42,0x59,0x04,0xa0,0x12,0xe5,0x87,0x86,0x5b,0xb6, + 0x7b,0xa7,0xf9,0x14,0x00,0x58,0xeb,0xe2,0xac,0x94,0x43,0x50,0x9d,0xa9,0xb3,0xf9,0xf5,0xf2,0x9c,0x20, + 0x27,0x3f,0xd3,0x00,0x64,0xcd,0x8b,0xaf,0x21,0x51,0x68,0x08,0xa8,0x8b,0x06,0xb7,0xac,0xed,0x49,0x21, + 0x6e,0x89,0xfe,0x50,0x85,0x84,0x90,0xaa,0xf9,0xf5,0x59,0x25,0xbf,0xfc,0x1d,0x48,0x01,0x25,0xae,0xd4, + 0xaa,0xe1,0x50,0x1b,0x3c,0x3f,0xfc,0x87,0xbf,0x6c,0x19,0x66,0x40,0x54,0x5d,0x14,0xfa,0x52,0x22,0x44, + 0x35,0x83,0x7b,0xb9,0x12,0x9b,0xfc,0x9c,0xef,0x0f,0xa7,0xb1,0x0e,0x72,0x54,0x2b,0x9e,0x14,0xb1,0x6f, + 0x64,0x89,0x07,0x3b,0x9c,0x5d,0x56,0x35,0xa3,0xbf,0x9a,0x7a,0xa1,0x69,0x23,0xa0,0x13,0x73,0xb5,0xaa, + 0x11,0x3d,0x7b,0x5e,0xf4,0x43,0x5b,0x75,0xa4,0x40,0x83,0xd6,0xbf,0x77,0x84,0xdf,0x72,0x17,0x29,0x9b, + 0x03,0x93,0x23,0x94,0x4f,0xca,0x34,0xd6,0xc6,0x90,0x56,0x07,0x86,0xb4,0x3b,0x3b,0x2e,0x5e,0x5a,0x98, + 0xec,0x2e,0x1e,0x84,0x55,0x4c,0xf7,0x22,0x78,0x9b,0x83,0x88,0x4b,0xf6,0x31,0xe1,0x4b,0x0d,0x3b,0xdd, + 0x78,0xf3,0xa1,0xd7,0x67,0xab,0x64,0x1c,0xec,0xf4,0x9b,0x0f,0x71,0x51,0x20,0x04,0xa5,0x76,0xf5,0x7c, + 0xa4,0xd9,0xc3,0x9d,0x95,0xe9,0xc0,0x22,0xf4,0x2a,0xb1,0x45,0x65,0x49,0x38,0xc9,0xc4,0x0d,0xf8,0x13, + 0x1f,0x9b,0x92,0xfc,0xad,0xd8,0xab,0x3e,0x61,0x11,0xf5,0x86,0x0f,0x39,0xf3,0x81,0x2e,0x3b,0x96,0x8b, + 0x1c,0xc5,0x66,0x9f,0x8d,0x99,0x7a,0xe3,0xb5,0x97,0xa5,0x73,0x1e,0x2e,0x08,0x51,0xb8,0xdb,0xb8,0x9c, + 0x0d,0x97,0x0d,0xf2,0xb8,0xac,0xbf,0xb3,0x73,0x68,0x08,0x6d,0x70,0xa7,0x27,0x1d,0x54,0x34,0xfc,0x0f, + 0x74,0x2c,0xd2,0x6e,0x18,0x2e,0x1c,0x14,0x58,0xe3,0x62,0x32,0x0e,0xd8,0x34,0x58,0xd2,0x64,0xae,0xe1, + 0x3e,0x80,0x59,0x7d,0x2a,0x78,0xe1,0xff,0x6b,0xef,0x5d,0xf7,0xdb,0x36,0x92,0x7d,0xd1,0x57,0xa1,0x30, + 0x3a,0x32,0x10,0xb6,0x28,0xc9,0x4e,0x66,0x26,0xa0,0x61,0x2e,0xc7,0xce,0xc5,0x89,0x1d,0x7b,0xc5,0x4e, + 0x32,0x09,0xc5,0x68,0x41,0x24,0x48,0xc1,0xa6,0x00,0x0e,0x00,0x4a,0x76,0x44,0x3e,0xd0,0xfa,0xba,0x1f, + 0x61,0xed,0x17,0xdb,0xf5,0xaf,0xea,0x6e,0x34,0x40,0xc8,0x76,0x32,0x6b,0xaf,0x73,0x3e,0x9c,0xe4,0x67, + 0x11,0x68,0xf4,0xbd,0xab,0xab,0xab,0xaa,0xeb,0xb2,0xd3,0xdd,0xaa,0xfe,0x16,0x49,0x6e,0x0b,0x21,0x1d, + 0xf3,0xd6,0x00,0x20,0x9e,0x37,0x04,0xc5,0xa1,0x33,0x50,0x56,0xa0,0x55,0xfb,0xcf,0x15,0xcf,0x80,0xa6, + 0xc7,0xdb,0x2d,0x33,0x8c,0x12,0x75,0x52,0x03,0xac,0x78,0x16,0xfe,0x19,0x72,0x35,0x6c,0x5b,0x2e,0x1e, + 0x74,0x6b,0xf0,0x9a,0x4c,0xd0,0xab,0x4f,0xb5,0xdb,0x09,0xdf,0x23,0x2a,0x7a,0xab,0x10,0xd9,0x65,0x96, + 0xc2,0x27,0x99,0xf1,0x33,0x66,0x14,0x64,0xad,0x07,0x31,0xf6,0x13,0x81,0x25,0xad,0x3d,0x87,0x79,0x13, + 0xa2,0xb5,0xec,0x38,0xbe,0xa9,0x4c,0xaf,0xbf,0xa9,0x3a,0xdb,0xff,0x06,0xed,0xaf,0x52,0xb4,0x7f,0xd5, + 0x8d,0x39,0x2e,0xa9,0x0b,0xf3,0x94,0x2a,0x9d,0xa8,0x45,0x5d,0xf1,0x77,0xb6,0xe2,0xef,0x88,0x7a,0x78, + 0x57,0x7f,0xf8,0xda,0x7e,0xf8,0x9a,0x3e,0x9c,0xa5,0xd1,0xd1,0xf8,0xf4,0x3a,0x18,0xf4,0x4f,0x0f,0xcf, + 0xf6,0x4f,0x27,0x93,0x23,0x75,0x8e,0xb8,0x01,0x67,0xc4,0x63,0x5c,0xf3,0xc3,0xd4,0x53,0x6f,0xeb,0xd2, + 0x74,0xc0,0xea,0xd2,0x00,0xa3,0xfd,0xfa,0xc3,0x85,0xfd,0x70,0x41,0x1f,0xde,0xa4,0x9d,0xd6,0xbc,0x1c, + 0xb0,0xee,0x28,0xf4,0x07,0xfd,0xe0,0xa8,0x0e,0xc7,0x20,0xc6,0x96,0x47,0x43,0x7f,0xb4,0x37,0xfe,0xcd, + 0x9f,0x7c,0x72,0x1a,0x04,0x47,0x8b,0x0e,0xa5,0x34,0xb1,0xd7,0xac,0x6a,0x37,0xae,0x52,0x10,0xca,0x04, + 0xf6,0x46,0x14,0xea,0xd1,0x63,0xc4,0x6e,0xd5,0xc1,0x7c,0x26,0x51,0x51,0x07,0xfe,0x61,0x20,0x4a,0xe0, + 0x99,0x8e,0x46,0xfd,0xdb,0xe1,0xe1,0x91,0x7a,0x48,0x0f,0xa7,0xe5,0x27,0x7b,0xe9,0x25,0xec,0xa7,0xe3, + 0xac,0xda,0x3f,0x52,0x2f,0xd3,0x2e,0xad,0x87,0x47,0x3a,0x74,0x3d,0x01,0x4a,0x25,0x31,0x07,0x01,0xa3, + 0x96,0xdf,0x4a,0x5c,0x6b,0x8d,0x87,0x3a,0x6f,0x76,0x6b,0x5e,0xeb,0x3d,0xef,0x61,0xca,0x91,0x8a,0x3c, + 0xdb,0x01,0xaf,0x11,0x54,0xe0,0x79,0xea,0x8b,0x77,0xfa,0xe6,0x65,0x79,0xd6,0xd0,0xc1,0xe9,0xbc,0xe1, + 0x95,0x76,0xc1,0x61,0xb3,0x36,0x94,0x58,0x5e,0x39,0x89,0x04,0x4f,0xaf,0x00,0xbb,0x12,0x2a,0x91,0xc0, + 0xf3,0x59,0xfe,0x3b,0xf0,0x73,0x09,0x17,0x7a,0xed,0xd5,0xa3,0x0e,0x7c,0x5b,0x44,0xdf,0x16,0x1f,0xf0, + 0xdf,0x28,0xd5,0x5b,0x5f,0x7c,0x7b,0x6c,0x7f,0x8d,0x00,0x12,0xf0,0x50,0xca,0x12,0xf6,0x6f,0x0b,0x2b, + 0x70,0x73,0x2f,0xcb,0x3e,0xc2,0x37,0xa1,0xf6,0x78,0xf1,0x2a,0xed,0x70,0xab,0xf9,0x2a,0x1d,0x67,0x93, + 0x3e,0x4b,0xa8,0x8b,0x66,0x2b,0x05,0x56,0xfc,0x69,0x0d,0xa5,0x0b,0x0b,0xa5,0x0b,0x82,0xd2,0xd7,0xed, + 0x71,0x6a,0x8b,0xf0,0x84,0x43,0x61,0x82,0x59,0x0d,0x89,0x5d,0x3f,0xe4,0x57,0x62,0x0e,0xf0,0xa3,0x23, + 0x3f,0xd7,0xe9,0x87,0x55,0xae,0x3f,0x39,0x31,0xa0,0x9d,0xcf,0x22,0x71,0xf5,0x54,0x1d,0x46,0x9a,0x3f, + 0xf2,0xab,0x4e,0x75,0xeb,0xe4,0x04,0xae,0xb3,0x1d,0x57,0xda,0xf9,0xac,0xeb,0xc4,0xd8,0xbe,0x4c,0xd9, + 0xa3,0x18,0x22,0x42,0xbf,0x48,0x75,0x9c,0x4b,0xf6,0x1c,0xeb,0xa9,0x27,0xf4,0x2e,0x04,0x16,0xbf,0x3e, + 0x6e,0x7d,0xfe,0xaa,0xf1,0x4e,0x27,0x89,0xa7,0xbe,0x6f,0x96,0x78,0xe6,0xbe,0x22,0xc3,0xf0,0x4b,0x5c, + 0x00,0x58,0x6f,0x0d,0xda,0x8d,0x19,0x78,0x54,0xa7,0x1a,0x87,0x3c,0xb0,0x19,0xae,0x19,0xc8,0x5a,0xd9, + 0x7c,0xf4,0xc8,0x89,0xd4,0xe9,0xf4,0xeb,0xba,0x95,0xfa,0x65,0x86,0x1b,0xca,0xdd,0x86,0xdd,0xde,0xdd, + 0xde,0x6e,0x33,0x97,0xff,0xbd,0x6d,0xf6,0x61,0x73,0xac,0xd7,0xcd,0x44,0x6e,0x54,0x64,0x34,0x3f,0x60, + 0x96,0x47,0xba,0x5a,0xb0,0xa9,0xb4,0xbb,0x6d,0xbe,0xaf,0x40,0xdc,0xbe,0xf7,0xe3,0x00,0xf2,0x22,0x5f, + 0x72,0x04,0x61,0xed,0x14,0xa1,0xf3,0x40,0xc5,0xbd,0xf9,0x17,0x40,0x4b,0xe7,0xbe,0x8d,0xde,0xb1,0x21, + 0x1e,0x25,0xf0,0xd5,0x66,0x3f,0x38,0x52,0x3f,0x3b,0xe8,0x69,0x27,0xc0,0x83,0x50,0x79,0x8f,0x9c,0xb3, + 0x1e,0xb4,0x5d,0xc2,0x12,0xb1,0x47,0x0d,0xea,0x02,0x2a,0xae,0x4e,0x04,0x0d,0x8e,0x05,0x97,0x8a,0x89, + 0x9d,0x84,0xb4,0x69,0x78,0xa4,0x8a,0x95,0x6b,0x24,0xc6,0x39,0x8d,0xb2,0xa5,0x9c,0xaf,0x2c,0x5a,0x47, + 0x44,0x68,0x6d,0xe4,0xd4,0x19,0x05,0x38,0x80,0x2f,0x21,0x7b,0x55,0xa2,0x8b,0x44,0xf1,0x00,0xfa,0x5a, + 0xf4,0x4d,0x5e,0x20,0x07,0x46,0x46,0x1c,0xbb,0x27,0xdc,0x90,0xea,0xae,0xcc,0xc6,0xf0,0x40,0x8f,0x08, + 0x3f,0xf8,0xeb,0xa0,0xa1,0xd7,0x68,0x22,0x60,0x38,0x3a,0x3c,0xd5,0x30,0xee,0x30,0xc5,0x91,0x28,0xd7, + 0x1d,0x5f,0xcc,0xad,0x79,0xe2,0xe7,0xf4,0x19,0xc3,0xe4,0x5e,0xe6,0x91,0x1b,0x32,0x56,0xeb,0x2d,0x49, + 0x2c,0x96,0xfd,0x81,0x21,0x01,0x0c,0x9a,0xea,0xf7,0xf3,0xa0,0x4e,0x45,0x14,0x96,0x55,0x4a,0x93,0x3c, + 0xd4,0x46,0x07,0xb1,0xd1,0x10,0x9a,0x42,0x43,0x05,0x97,0xc7,0xd4,0xe7,0xad,0x9d,0x63,0xb5,0x27,0xa1, + 0x13,0xe4,0xcd,0x4c,0xae,0x4c,0xb9,0x9a,0x3b,0xde,0xb5,0xd5,0x85,0x38,0x26,0xa6,0xb5,0xbe,0x08,0x46, + 0x3e,0xd7,0x04,0xe9,0x7b,0x39,0x7a,0xb4,0x43,0x36,0x23,0x59,0x5d,0x04,0x61,0xeb,0x8b,0x7f,0x01,0xe9, + 0xf8,0x0c,0xb2,0xd8,0x25,0x35,0x39,0xc7,0xa4,0x26,0x3c,0xa9,0x2b,0x99,0xe1,0x29,0x3c,0xbd,0x70,0x17, + 0xa9,0x2b,0x61,0xe6,0x3b,0x3e,0xa1,0x6d,0x93,0x8f,0xda,0x24,0xb2,0xf8,0x73,0x6e,0x95,0x6d,0x65,0xae, + 0x89,0xf1,0xae,0xdc,0x8e,0x47,0xe1,0x52,0x54,0xf7,0x12,0x63,0x2c,0xa5,0x43,0xd3,0x0b,0x94,0x8a,0xd0, + 0x17,0xb3,0x6a,0xae,0x54,0x54,0x67,0xb6,0xce,0x54,0xa3,0xd6,0xa0,0xe7,0x6d,0x17,0x14,0xa0,0x1c,0x34, + 0x67,0x5f,0x52,0x2b,0xd1,0x92,0x9b,0xb1,0x33,0x27,0x26,0x22,0x03,0x65,0x4d,0x48,0xdc,0x58,0x25,0x5a, + 0xef,0x15,0xdd,0x45,0xdf,0x38,0xd4,0x7c,0xe1,0x6c,0x4d,0x91,0x32,0x3f,0x6a,0xf2,0x08,0x52,0x86,0xd6, + 0xc6,0x25,0xef,0x2b,0x0e,0xc8,0x6a,0x6b,0x5e,0x3a,0x74,0xc9,0x4e,0x8c,0xbd,0x76,0xec,0x0a,0x0b,0x87, + 0x69,0x10,0xfb,0xac,0x71,0x9c,0xe9,0xb9,0xe5,0x2b,0x27,0xe8,0x1b,0x32,0x71,0x50,0x98,0xd9,0x47,0x97, + 0x1a,0x8d,0x73,0xe6,0x9d,0xb5,0xd2,0x6e,0x6c,0x2a,0xe3,0xb0,0xdb,0x71,0x89,0x6d,0x7c,0x64,0x0c,0xbb, + 0x0c,0xdf,0x82,0xaa,0x73,0x7e,0x65,0xab,0xd5,0x26,0xb7,0x12,0xff,0xca,0x71,0x7a,0x2d,0x4b,0xdf,0xb4, + 0x60,0xdb,0xd7,0x9d,0xaa,0x07,0x59,0x04,0x26,0x8d,0xa8,0x1c,0x6c,0x35,0x46,0x7f,0xd7,0xc6,0xc0,0x57, + 0x63,0x1a,0x5a,0x8b,0x6b,0x9d,0x8d,0xde,0xcc,0xa3,0x64,0x57,0xf8,0x96,0x1a,0x88,0xea,0x5a,0xd8,0x99, + 0xc5,0xb4,0x82,0xc2,0xa0,0x0d,0x6e,0xdd,0x09,0x06,0xc1,0xa3,0x26,0xf3,0xa2,0xe7,0x1a,0x64,0x9e,0x4c, + 0x74,0x3d,0x04,0x8e,0x26,0x84,0xf2,0xb5,0x85,0x25,0xf0,0x0b,0x5b,0x29,0xd9,0x6b,0x8a,0x52,0xd7,0x8b, + 0x65,0xb9,0xad,0x62,0x55,0x47,0x1e,0x02,0xb2,0x8f,0xae,0x11,0xe0,0x33,0x63,0x87,0xe6,0xba,0x62,0xf3, + 0x6a,0x5d,0x24,0xfe,0xb9,0x86,0x1c,0xe7,0xde,0xae,0x7f,0x47,0xbd,0xdc,0xc5,0xfd,0x28,0xe5,0x35,0x88, + 0x7d,0x8e,0x96,0x93,0xab,0x66,0x10,0xa3,0x2b,0x3b,0x71,0x28,0xd6,0x38,0x39,0x52,0x01,0x5c,0xf4,0x29, + 0xad,0xcf,0x03,0x74,0x50,0x33,0x45,0x18,0x50,0xed,0xf8,0x6c,0xdf,0x24,0xd7,0x2b,0x9f,0x05,0x36,0x91, + 0x23,0x05,0x07,0xf5,0xe2,0xd4,0x01,0xe2,0x75,0x88,0x1f,0xf6,0xff,0xdf,0xb6,0x7d,0x44,0xc7,0x71,0x0f, + 0xed,0x9a,0x3e,0xd6,0x7d,0xbf,0x6c,0x9e,0x28,0xf5,0x58,0xad,0xcd,0x41,0x41,0x54,0xb6,0x78,0xee,0xa2, + 0x1f,0x86,0xde,0x91,0xbf,0xc0,0x15,0xdd,0x15,0xce,0xc5,0x10,0xd1,0x8e,0xa0,0x1b,0xe4,0xe2,0xb3,0x85, + 0x55,0x45,0xc6,0x11,0xbd,0xd9,0x18,0xc4,0x16,0xd8,0x70,0x45,0xd1,0xbe,0x3e,0xb5,0x6d,0x28,0xda,0xa1, + 0x9e,0xa7,0x60,0xe4,0x58,0xd1,0xf6,0xa3,0x34,0xcc,0xde,0xa7,0x18,0x4c,0x64,0xd3,0xe1,0xa1,0x53,0x00, + 0xd7,0x64,0x95,0x75,0x96,0xe2,0x7c,0x88,0x68,0x51,0xb7,0xbe,0x39,0x89,0x68,0x33,0x14,0x5d,0xdb,0x95, + 0x57,0x07,0x40,0xa7,0x15,0x21,0xf8,0xd5,0x9c,0x90,0x0b,0xc4,0xce,0x08,0x94,0xd9,0xa2,0x8d,0xfe,0xeb, + 0x2d,0x2a,0x69,0xd8,0xa2,0x1c,0x93,0x4c,0x5a,0x71,0x77,0x68,0xa2,0xc3,0xf6,0x22,0x5b,0x60,0xc2,0x55, + 0x41,0xed,0x9b,0xb7,0x50,0x2e,0x1d,0x74,0x96,0x07,0x6a,0xce,0x20,0x5f,0x4a,0x89,0xce,0x45,0xb0,0x9e, + 0x9a,0xa8,0x9c,0x29,0xe3,0xf4,0x02,0x7f,0x59,0xe7,0x05,0x71,0x5f,0x77,0xbc,0x5f,0x06,0xb4,0x0f,0xd3, + 0x86,0xff,0x4c,0xe3,0xe3,0x6a,0x16,0x8c,0xce,0xfd,0x42,0xe6,0x03,0x91,0x89,0xd3,0x4e,0xdf,0x99,0xc7, + 0x96,0xf9,0x23,0xaa,0xcc,0xfa,0xf7,0x64,0xa0,0x2d,0xdc,0xd7,0x94,0x5d,0x8c,0x46,0x12,0x36,0x0c,0x07, + 0x16,0xe7,0x16,0xaf,0x9e,0x04,0x00,0xf2,0xfa,0x9c,0xc9,0x9b,0x20,0xed,0xd0,0x75,0x29,0xba,0x4c,0x89, + 0x6d,0xb0,0x63,0xb5,0xa4,0xd1,0xf2,0xa6,0x4a,0xfc,0x25,0xcf,0xe2,0x3a,0x5a,0xd6,0x53,0xba,0x8e,0xd6, + 0xd6,0x59,0x00,0x25,0xac,0x31,0x67,0x42,0xe0,0xae,0xa2,0xa2,0x26,0x25,0x66,0x8e,0x2d,0xa9,0x6c,0x22, + 0xd4,0x35,0xc7,0x1e,0x65,0xd8,0x5f,0xd3,0xc2,0xae,0x69,0x61,0x85,0x93,0xaa,0x17,0x76,0x1d,0x98,0xb4, + 0xf1,0x7a,0x22,0x75,0x77,0x74,0x40,0x72,0xd8,0xe6,0xb7,0x95,0x9f,0xca,0x11,0x32,0x22,0x04,0xcc,0xb9, + 0x68,0xc6,0x57,0xb4,0x80,0xee,0x5d,0xb9,0xf1,0x23,0x5b,0xd6,0x27,0xc0,0x54,0xd1,0x70,0x89,0x06,0x3a, + 0x56,0x2b,0xfa,0x37,0x8b,0x6a,0x57,0x2d,0xea,0x2a,0x82,0x04,0x40,0x2d,0xe8,0x67,0x36,0x51,0x67,0x56, + 0x75,0x9b,0x3e,0x9d,0x47,0x29,0x3e,0x5d,0xd3,0xcf,0xd9,0x44,0xbd,0x8d,0xf6,0xca,0xe1,0xfc,0x3e,0x9a, + 0x5a,0xdd,0x8f,0xce,0xe8,0x6c,0xf2,0xaf,0x82,0x11,0x8a,0xf7,0xfb,0xf3,0x49,0x08,0xaf,0x65,0x23,0xd4, + 0x72,0x78,0x38,0x9b,0x84,0x3f,0xd2,0x47,0x75,0x4e,0x9b,0xfa,0x1d,0x7e,0x41,0x9c,0x99,0x8c,0x5c,0x6b, + 0xbf,0xbf,0x9a,0x04,0xc8,0xb4,0x50,0xd7,0x9c,0x89,0x7e,0x91,0xc9,0x94,0xe7,0x36,0x0f,0x0f,0xcf,0x24, + 0xd3,0x95,0xce,0x74,0x25,0x99,0xde,0xee,0xd0,0x01,0x99,0xba,0xd2,0xe7,0xae,0x23,0x8a,0xf3,0x17,0x82, + 0x42,0xea,0x96,0x1b,0x95,0x2e,0x74,0xf7,0x16,0xd2,0xbd,0xae,0x4a,0xb9,0x02,0xa9,0xda,0xe9,0x5a,0xdd, + 0x7f,0xbf,0x12,0x67,0x17,0xd3,0xe8,0xa7,0x8a,0xd6,0x67,0xae,0x66,0x30,0x95,0xf7,0x41,0xd0,0x9f,0x73, + 0x0c,0xd3,0xd1,0x74,0xcc,0x0f,0x93,0x0e,0xe7,0x1f,0x75,0x5c,0xc2,0x39,0xd1,0xc2,0x29,0x47,0x21,0xb4, + 0xe8,0x31,0x9f,0x18,0x1e,0xe1,0xe0,0xe0,0x47,0x08,0xb5,0x62,0x4b,0xc1,0xe7,0x44,0xe3,0x9e,0x53,0x15, + 0xc7,0x68,0x6d,0x14,0xd3,0x73,0xae,0xf4,0xf8,0x79,0x5c,0x4b,0xea,0xe7,0x7a,0xa2,0x07,0xb7,0x94,0xc1, + 0x21,0xc5,0x78,0xb4,0xed,0x1a,0xe8,0xd2,0x19,0x68,0x10,0x36,0xeb,0xac,0xc7,0x3b,0x9c,0x3f,0x98,0x41, + 0x89,0x9e,0x86,0x48,0x00,0xd1,0x3f,0x99,0x04,0x12,0x9d,0x51,0x5e,0xf4,0xa6,0x5f,0xa9,0x33,0x6c,0xfc, + 0xd5,0x83,0xb3,0x83,0x83,0x4b,0xff,0x58,0xc9,0xb4,0x6c,0xfd,0x29,0x87,0xcb,0x06,0x50,0x86,0x0c,0xb4, + 0xa0,0xf0,0x6a,0x12,0xaa,0x29,0x0e,0xa5,0xcc,0x38,0xa7,0x2f,0xe8,0x97,0xc9,0xae,0x19,0x06,0x5b,0x83, + 0x25,0x88,0x62,0x80,0xff,0x08,0xf5,0xaf,0xe8,0xdb,0xaa,0x0e,0x83,0x18,0x7e,0xb0,0xda,0x50,0xbe,0xef, + 0x71,0xd4,0x1a,0x3e,0xdb,0x3b,0xf2,0xe9,0x5d,0xa6,0x6e,0xc7,0x0c,0x79,0x59,0x35,0x51,0xc3,0xd6,0x39, + 0xaa,0xce,0x84,0x0b,0x61,0xf4,0x0a,0xc6,0x13,0xa5,0x6c,0x30,0xea,0xc0,0x3c,0x75,0x51,0xd6,0x45,0x93, + 0xec,0x11,0x46,0xa9,0x70,0xf9,0xa3,0x82,0x80,0xa3,0xc6,0xfe,0x7a,0x25,0xfd,0x82,0xfd,0xa9,0xda,0x0e, + 0x9c,0xb7,0x18,0x4f,0x35,0x45,0xcc,0xa6,0x78,0xa1,0xd6,0xda,0xdd,0x07,0xe1,0x82,0xa2,0x19,0x6d,0x28, + 0xca,0x37,0x1b,0x44,0x77,0x07,0xd2,0x53,0x85,0x90,0xf6,0x4a,0x10,0xb2,0xe1,0x5b,0xe4,0xe0,0x72,0xf1, + 0xbe,0x85,0xca,0xae,0x63,0x02,0xea,0xd5,0x84,0xeb,0x19,0x90,0xd7,0xfa,0xa8,0xa7,0xa9,0xeb,0x66,0x60, + 0x0b,0xb1,0x24,0xa4,0xc4,0x0e,0xac,0x1d,0x38,0xfc,0x2b,0xe6,0xd5,0x56,0x3b,0x0d,0x34,0x41,0x30,0x0f, + 0x02,0xe6,0xc4,0x2f,0xe2,0x92,0x09,0x71,0x50,0xdd,0xa5,0xcf,0x89,0xdc,0xaa,0x6d,0xd0,0xc4,0x8d,0x73, + 0x7a,0xa0,0xa3,0xa2,0x48,0x55,0x31,0x53,0x7e,0x75,0xa2,0x0d,0xc2,0xc1,0x07,0x87,0x59,0x17,0x56,0x1d, + 0x07,0x17,0x39,0x4f,0x8b,0xb2,0xe2,0x16,0x09,0xcd,0x1c,0x0f,0xaf,0xee,0xcf,0xcd,0x5a,0x5d,0x19,0x07, + 0x77,0x17,0x9b,0xcd,0xde,0x39,0xf1,0x8b,0xf3,0xf1,0xd5,0x44,0x73,0xa6,0x30,0x4b,0xd7,0xac,0xec,0x45, + 0x74,0xd1,0xb8,0x3f,0x40,0x89,0xd9,0x66,0x73,0xd1,0x6c,0x98,0xb8,0x18,0x6c,0xa4,0x34,0x30,0xb3,0x29, + 0xeb,0x7a,0xe9,0xba,0x5a,0x59,0x40,0x9a,0xb7,0xc6,0x88,0xf7,0x1e,0x12,0x2e,0x0e,0x6e,0x2e,0xd1,0xc9, + 0x95,0x9c,0x2d,0xd2,0xd8,0xde,0x25,0x16,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x3f,0x1a,0x67,0x93,0x02,0x90, + 0x7b,0x1c,0xde,0x8b,0x37,0x86,0x26,0xb0,0xf4,0xbb,0xb9,0xf6,0xda,0x93,0x60,0x31,0xd7,0xea,0xad,0xda, + 0x87,0x90,0xfa,0x0d,0x22,0xcd,0xe7,0xb3,0xf5,0x32,0x29,0xd5,0x23,0x7a,0x06,0x8d,0xf3,0x5c,0x6b,0x7f, + 0x5d,0xd3,0x9c,0x5c,0xdf,0x9f,0xa5,0x35,0x00,0x5f,0x33,0x59,0xb9,0x3f,0x9e,0xa5,0xe3,0xeb,0x09,0xac, + 0xbd,0xe8,0x5c,0x39,0x1e,0xbe,0xbd,0xff,0xa6,0xce,0xf2,0x96,0xc8,0x8b,0x37,0xe3,0xb7,0x13,0x9d,0x87, + 0x56,0xca,0x64,0x17,0xfe,0xc2,0xfd,0xc6,0x07,0xf2,0x43,0xd6,0x1b,0xc1,0xbd,0x9a,0x68,0xcd,0xe8,0x50, + 0x62,0x8f,0x9c,0xe7,0x97,0x2c,0x6c,0x25,0x54,0xdc,0xe1,0xa4,0x50,0x9f,0x96,0x8a,0x0e,0x49,0x6d,0x64, + 0xc1,0xa7,0xb7,0x78,0x89,0x41,0xe8,0x10,0x18,0x67,0x03,0xba,0x60,0xce,0xb9,0x64,0xff,0x21,0x3e,0x10, + 0x1d,0xf2,0xd7,0xf4,0xc4,0x2c,0xc2,0xe6,0xc0,0xe0,0x5f,0xb1,0xef,0x27,0x5e,0x48,0xc6,0xde,0x58,0x80, + 0x40,0x68,0xae,0x95,0xd2,0x41,0xd1,0xd1,0xce,0x8c,0x5b,0x93,0x78,0x6a,0xa6,0x1c,0x94,0xdc,0x09,0x86, + 0x6b,0x7e,0xe2,0x25,0xeb,0x67,0x19,0xea,0xae,0x91,0x0e,0x0b,0x6e,0xf8,0xf8,0xf4,0x73,0xca,0x72,0x2e, + 0xf5,0xdb,0x8d,0x72,0xc6,0x5d,0xc4,0xf7,0x62,0xf8,0x3c,0x82,0x32,0xbf,0xbe,0x8e,0x79,0x64,0x2e,0xa1, + 0xfc,0xe7,0xad,0x28,0x34,0x72,0x4d,0xa3,0x25,0x87,0xea,0xb9,0xd8,0xbf,0x5d,0x08,0x31,0x48,0xc7,0x5f, + 0x43,0x50,0x76,0xc1,0x03,0x94,0x79,0xb8,0x18,0x9c,0x89,0xc0,0xf6,0x5c,0xce,0x83,0x45,0xeb,0x1c,0xbe, + 0x80,0xea,0x2f,0x11,0x2e,0x06,0xff,0x19,0x80,0xbd,0x8e,0x4c,0x1a,0xc1,0x00,0x28,0xa6,0xe1,0xf5,0xb0, + 0x3e,0x17,0xdf,0x10,0x58,0xbc,0xe9,0xe2,0x5d,0xde,0x38,0xbc,0xcb,0x9b,0x89,0x7f,0xcd,0x3d,0xb9,0x16, + 0xc7,0xf7,0xdc,0xd5,0xb7,0x75,0x25,0x0f,0xa9,0x92,0x87,0x1d,0x9c,0xef,0xc3,0x9a,0xf3,0x7d,0xc8,0x9c, + 0xef,0xb5,0x40,0xd2,0xcb,0xe8,0x7a,0x07,0xb7,0xa2,0xfa,0x97,0x03,0xd6,0x11,0xae,0x4d,0x1e,0x5e,0x45, + 0x27,0xc3,0x57,0xf7,0x5f,0x12,0x8b,0x68,0xed,0x55,0x5e,0xc1,0xfd,0x33,0x12,0xc6,0xaf,0x26,0x86,0xf6, + 0xfe,0xb9,0x42,0xff,0xae,0xa9,0x56,0x1d,0xea,0x36,0x01,0x95,0x84,0x73,0x0b,0x2c,0xdf,0xb1,0x3a,0xd6, + 0x07,0x16,0xf1,0x3f,0x70,0x09,0x5c,0xd4,0xd6,0x62,0xb2,0x7e,0x08,0x2b,0x83,0x31,0xf1,0x52,0x3c,0x07, + 0xe9,0x6f,0xf3,0xf9,0x37,0x7a,0xa3,0x85,0x50,0xfb,0x90,0xfd,0x17,0x8e,0x17,0xa9,0x7a,0x97,0xaa,0xb7, + 0xa9,0xda,0x4f,0xd5,0xd3,0x54,0xbd,0xc8,0x46,0x46,0x9a,0xff,0x65,0xa2,0x8c,0x60,0x0d,0xcf,0x02,0x4f, + 0xad,0xeb,0xbf,0x3d,0x89,0xeb,0x25,0x56,0x16,0x17,0xf9,0xf5,0xe8,0x79,0x22,0xd1,0xcd,0x60,0xa0,0xb4, + 0x0d,0x6f,0xb6,0x13,0xe3,0x58,0xf9,0x32,0x85,0x17,0xf3,0x67,0xd9,0xc1,0x81,0xbd,0xe4,0xd8,0x0d,0x2f, + 0x22,0xf7,0xe3,0x54,0xfb,0xf4,0x22,0xce,0x16,0x89,0xe7,0x9a,0xa7,0x8a,0x26,0x7e,0x5d,0x98,0xa5,0xf4, + 0x5a,0xb8,0x36,0x64,0x55,0xdf,0x2b,0x1d,0x15,0xf1,0x07,0xf4,0x41,0xeb,0x9b,0x19,0xd7,0xe9,0x3f,0xa6, + 0x70,0xaa,0x86,0xd5,0x49,0x66,0xad,0x0b,0x51,0x08,0x91,0xcc,0xcd,0xbc,0x0d,0xeb,0x28,0x3c,0xc9,0xc1, + 0xc1,0x1e,0xff,0x12,0x23,0xa6,0xd5,0x2c,0x47,0xdf,0xc2,0xd1,0x91,0x3d,0xcc,0x1b,0x3d,0xfc,0xd1,0x61, + 0x29,0xc4,0xa8,0x6b,0xa6,0x45,0x49,0xdb,0x20,0x7c,0x91,0xc8,0xb3,0xeb,0xed,0xc9,0xd6,0x4a,0xf8,0x02, + 0x81,0xd7,0x8c,0xfd,0x89,0x51,0xfa,0xfc,0x2a,0x81,0x0c,0xcc,0x33,0x9a,0x23,0xb6,0x77,0x74,0xee,0xa6, + 0xbe,0xc4,0x8e,0x0b,0x02,0xed,0xc9,0xeb,0x99,0x89,0x1c,0x1b,0x25,0x75,0x14,0x59,0xe5,0x3c,0xb3,0x5f, + 0x47,0x56,0x2d,0xde,0x9d,0x77,0x33,0xdd,0xcf,0x92,0x40,0x7d,0x91,0xdd,0x96,0x09,0x63,0x13,0xa9,0x2c, + 0xa1,0x48,0x78,0xe9,0xff,0x9e,0x75,0xe4,0xdf,0x9b,0x93,0x6f,0x3e,0x9e,0x41,0x97,0xff,0x19,0xfb,0x02, + 0xd7,0x8b,0x04,0x3c,0x84,0x3b,0xe1,0xf6,0x7c,0xed,0xdc,0x55,0x73,0xd0,0xf6,0xe6,0xda,0x04,0x37,0x3b, + 0x73,0x39,0x34,0x77,0x96,0x76,0x46,0x45,0x9b,0xfa,0xc3,0xf3,0x3b,0x4c,0xdb,0x31,0x00,0x6b,0xd5,0x88, + 0x3d,0xa8,0x96,0xb3,0x13,0xcb,0xad,0xcc,0xb2,0x51,0xaf,0x18,0x25,0x62,0x3e,0x7d,0x6b,0xf8,0xc0,0xc7, + 0xe8,0x20,0x00,0x3e,0xd4,0x39,0xf9,0x72,0x9c,0x68,0x9c,0x9f,0xf0,0x72,0x70,0x40,0xdf,0xf5,0x07,0x60, + 0x7a,0x03,0xb1,0x7a,0x15,0xd8,0x53,0xe3,0x4f,0x04,0xaf,0x12,0xd8,0xf3,0xc7,0x54,0x61,0x67,0x85,0xa2, + 0x16,0xdb,0x9e,0x1f,0xed,0x4b,0xc0,0x54,0x86,0x58,0x80,0x5f,0x40,0x7c,0x11,0x68,0xd5,0x12,0x71,0xa1, + 0xe2,0x08,0xd4,0x39,0x40,0xfd,0x19,0xcd,0x4c,0x91,0x2e,0xe0,0x09,0xf6,0x71,0x5a,0x42,0x39,0x32,0xf2, + 0x32,0x5a,0x07,0xad,0x73,0xc7,0x77,0xaa,0x33,0xf9,0x80,0x70,0xf1,0xad,0x24,0x38,0x7f,0x48,0x47,0x7e, + 0x56,0x6f,0x7b,0x1c,0x71,0xaf,0xc0,0x17,0xb8,0xd6,0x43,0xcd,0x42,0x51,0xbe,0x85,0x77,0xfe,0x56,0x62, + 0x31,0xca,0x43,0x69,0xb9,0x53,0xbf,0x60,0x67,0x84,0xc3,0xa2,0x35,0x93,0xfe,0x07,0x07,0xbc,0xd3,0xd1, + 0x62,0xf4,0xa1,0xae,0x76,0x4d,0x10,0xad,0xe5,0xf3,0x0f,0x14,0xd3,0x03,0xe9,0x1c,0x66,0x57,0x95,0x7a, + 0xe4,0x50,0xad,0xc8,0x3a,0x16,0x57,0x33,0x04,0xbc,0x1b,0x3f,0xdc,0x3f,0x86,0x9a,0x6f,0x08,0x6a,0xd8, + 0x30,0x4c,0x5b,0x77,0x41,0xd0,0x1c,0x17,0xe1,0x17,0x79,0x0e,0x67,0xb8,0x6a,0x5a,0x96,0xf6,0x19,0xc0, + 0x65,0xb2,0x01,0x91,0x98,0x67,0xe7,0x76,0x56,0xa7,0x38,0x77,0xab,0x6e,0x1e,0x73,0xaf,0xea,0xe6,0x6a, + 0xa5,0xed,0x5c,0xdc,0xba,0x79,0x3b,0xd2,0xa5,0xbb,0x1d,0x49,0xb7,0xe6,0x6d,0x35,0x38,0x5b,0x17,0x7c, + 0x2f,0x18,0x8e,0xc5,0xae,0x4d,0xe9,0x74,0x51,0xec,0x98,0x6c,0xd5,0xef,0x66,0x82,0x1a,0x97,0xb5,0x62, + 0x2d,0xf7,0x4d,0xda,0x30,0xa1,0x6b,0xdb,0x82,0xb5,0x8d,0xc7,0x3b,0x6c,0xc2,0xb4,0xe7,0x2c,0x16,0xac, + 0xca,0x2d,0x7d,0x77,0x70,0x3f,0x46,0xe1,0xbf,0x40,0x42,0x48,0x60,0xeb,0xc6,0x6c,0xd5,0x26,0x62,0x58, + 0x1b,0xa8,0x1d,0xe8,0xf8,0xad,0x6e,0x1d,0x22,0xf8,0x8f,0x0c,0x47,0x38,0x0c,0x6a,0xf7,0x95,0xce,0xa5, + 0x99,0xa5,0xbb,0x5d,0xdb,0xd1,0x5a,0x20,0xa0,0xed,0xc7,0x7e,0x4e,0xe0,0x99,0x87,0xbd,0x0d,0xd4,0x9f, + 0x8c,0x97,0x55,0xa6,0xd0,0x68,0xee,0xcc,0x97,0x9f,0x80,0xa2,0x72,0x13,0x01,0xd6,0x3b,0x3b,0xab,0x9b, + 0x3b,0xf4,0xfa,0xd6,0xad,0x5c,0xdf,0x3b,0xf4,0x86,0x31,0x8b,0xe1,0x44,0xc9,0x96,0x9f,0x47,0xb1,0x13, + 0xe0,0xb4,0xec,0xe3,0x80,0xc0,0xa3,0x17,0x96,0x7d,0x96,0xe5,0x86,0x85,0x1f,0x8b,0xfc,0x03,0x17,0xd0, + 0xfa,0xee,0x43,0x52,0xac,0x41,0x51,0x19,0x8c,0x38,0x85,0xcb,0xe0,0x97,0xff,0x4a,0xd8,0x8c,0xc8,0x97, + 0x0b,0x44,0xd8,0x57,0x0e,0xb4,0xa3,0x19,0x9a,0xda,0xba,0x8b,0xd1,0x8f,0x89,0xb6,0x2c,0x5a,0x37,0x8c, + 0xdd,0x97,0x98,0x84,0xb5,0x90,0xa6,0x32,0x8b,0x75,0xd8,0x79,0x5c,0xa7,0xb6,0x92,0x6e,0x43,0xf8,0x1e, + 0x70,0x8b,0x20,0x4f,0x40,0x17,0x1f,0x17,0x71,0x03,0xeb,0x04,0x8a,0x08,0x93,0xa5,0xc6,0x51,0xfe,0x45, + 0x14,0xab,0xcb,0x68,0xa9,0x2e,0x31,0x04,0xc2,0x68,0x17,0xf8,0xdd,0x6c,0x2e,0x31,0x17,0xfc,0x2a,0xf4, + 0xdd,0xde,0x2f,0x2c,0x4d,0xf0,0xf7,0x96,0x5d,0x3e,0x5f,0xbb,0x52,0x8d,0x4b,0xcf,0x9a,0x05,0x17,0xc0, + 0x9a,0x47,0xcb,0x36,0x90,0x88,0xc1,0xc8,0x94,0xc7,0xee,0xe5,0xeb,0xea,0x30,0x65,0xcd,0xfd,0xb4,0xe9, + 0xbc,0x41,0x43,0x01,0xf0,0xe6,0xb7,0xfe,0x5c,0x79,0xf1,0x9c,0xa0,0xfa,0xa9,0xa8,0x57,0x38,0xa8,0x30, + 0x71,0x72,0x22,0x5e,0x7a,0xd3,0x8f,0xe5,0x36,0x50,0x06,0x7c,0xd0,0x58,0x9a,0x1d,0xe6,0x62,0x0a,0x20, + 0x02,0x8f,0x5f,0xfc,0x5a,0x58,0xb5,0x16,0x81,0xa9,0x6a,0x78,0x14,0x5e,0xc1,0x07,0xfb,0xb7,0x90,0xc6, + 0x70,0xf3,0x5f,0x8a,0xc6,0xc8,0x2c,0x50,0x9c,0x26,0x18,0x0b,0xa3,0x87,0x41,0x9a,0x4e,0x9f,0x43,0x23, + 0x8c,0xd0,0x62,0xbb,0xab,0xb4,0x64,0xab,0xa8,0xda,0xd6,0x64,0x73,0x2e,0x4c,0x8b,0xba,0x24,0xf4,0xf9, + 0xcf,0x14,0x93,0x02,0x78,0xd4,0x78,0x83,0x2f,0xf4,0x1d,0x04,0x03,0x0c,0x1b,0x0c,0xc5,0xa4,0xaf,0xf7, + 0x4f,0xe6,0x62,0xc5,0x18,0xf3,0x3b,0xc2,0x2b,0xb5,0x42,0x45,0xf8,0x7b,0xaa,0xea,0xb7,0xaf,0xa1,0x1c, + 0x1c,0xde,0x08,0x92,0xf9,0x67,0xda,0x85,0x58,0x5a,0x96,0xed,0x8c,0x1f,0x5c,0x23,0x11,0x59,0x3a,0x09, + 0x94,0xbb,0x8a,0x33,0x04,0xc1,0xed,0x76,0x87,0xc4,0x85,0x56,0x45,0x72,0x65,0x1d,0x17,0x8a,0x91,0xa8, + 0x11,0x3e,0xa7,0x5d,0x68,0x8b,0x3d,0xaa,0xe6,0xcd,0x9c,0xe0,0xb3,0xe3,0x7a,0xd7,0x94,0xc4,0x16,0x95, + 0xf7,0x2d,0x57,0x5e,0x1a,0xd1,0xe3,0x34,0x4a,0xc7,0xe5,0x64,0x38,0x95,0xf8,0xd1,0xe8,0xc5,0x5e,0x34, + 0x15,0xe1,0x3b,0x38,0x03,0xbd,0x93,0xa7,0xcd,0x9d,0x4c,0xc8,0xe3,0x0a,0x37,0x22,0x1e,0x60,0x3b,0xb7, + 0xd6,0xa2,0xd9,0x98,0xf3,0x4d,0xa2,0xa9,0xa2,0x12,0x7a,0x3b,0x4f,0xbb,0xb7,0x73,0x1c,0x40,0xee,0xe1, + 0x78,0x13,0x5f,0xa3,0xc3,0x4b,0xfc,0x99,0x53,0x57,0xe7,0xb5,0x04,0x6c,0x6e,0xba,0xba,0x8a,0x8a,0xf1, + 0x7c,0x32,0x5c,0xed,0xec,0x83,0x58,0xe9,0x34,0xa2,0x59,0xa3,0x15,0x93,0xfb,0x8b,0xa4,0xfa,0x22,0x5f, + 0xb3,0x98,0xed,0xd1,0x32,0x25,0x00,0xfb,0x81,0xe6,0x1a,0x7e,0xd8,0xc7,0x2b,0xee,0xe2,0x68,0x2d,0xbd, + 0x5e,0x05,0xe1,0xd2,0x3c,0x6d,0xb5,0x05,0xee,0x8a,0xb0,0xb3,0x2f,0xbe,0x00,0x88,0xdd,0xd7,0xd1,0xc9, + 0x98,0x77,0x9a,0x45,0x4b,0xeb,0xaa,0xc4,0xe4,0xc8,0xe9,0xf4,0x77,0xbd,0x73,0xec,0xd8,0x5f,0x77,0x7b, + 0x1a,0xb0,0x6d,0x41,0x8b,0x03,0xd8,0xa5,0xe1,0xa8,0xc3,0x7c,0x34,0x34,0xd5,0xec,0x16,0x8b,0x66,0x17, + 0x50,0x54,0x62,0xce,0x1e,0x0d,0xf2,0xd6,0x3f,0x3f,0x1b,0x78,0x79,0x57,0x88,0xf8,0x7c,0xc8,0xca,0x96, + 0x43,0x63,0x62,0xa1,0x2d,0x99,0x2e,0xe2,0xf2,0x19,0xa5,0xfb,0x95,0x36,0xd0,0x57,0x89,0x90,0xcb,0x46, + 0xc5,0xf0,0x1b,0x66,0x13,0xcc,0xdb,0xef,0x8d,0xb7,0x7f,0x1a,0x87,0xff,0x70,0xde,0xb1,0x24,0x54,0x69, + 0x19,0x3c,0xe8,0xe6,0x0f,0xf2,0xf9,0xbc,0x4c,0xaa,0x6f,0x92,0x74,0x71,0x51,0x39,0xa5,0xda,0x4a,0x8b, + 0xb2,0x7e,0x3c,0xc7,0xb5,0x0b,0x31,0xf4,0x04,0xb6,0x95,0x4c,0x3b,0x0d,0xdf,0x82,0x78,0x83,0xf3,0xb3, + 0x81,0xd5,0xfb,0x89,0x8a,0x81,0xa3,0x20,0xa5,0x53,0x6a,0xc0,0x78,0xac,0x89,0x09,0x0e,0x3a,0xbd,0xcb, + 0xe5,0x7c,0x95,0xc2,0x13,0x28,0x4f,0x57,0x1d,0x71,0xb0,0x07,0x91,0xcf,0x0d,0xd1,0xc7,0x7b,0x47,0xb6, + 0x99,0x7d,0x1d,0xb8,0x53,0xa2,0x06,0x99,0x78,0x5d,0x01,0x7b,0xd1,0x15,0xc0,0xd8,0xa9,0x98,0x75,0x1e, + 0x4c,0xdd,0x0c,0x27,0xfb,0xd2,0x7d,0x36,0x53,0x07,0xe3,0xa4,0x5d,0xb4,0x85,0x37,0x7a,0xf2,0x5b,0x7c, + 0x39,0x0e,0xf5,0x2f,0x53,0x2b,0x12,0xac,0x4f,0x75,0x9d,0xbd,0x89,0xe4,0x75,0xa2,0x31,0x4a,0x1d,0x4c, + 0x71,0x61,0xc6,0x52,0x9b,0x80,0xd6,0xda,0x39,0xe9,0x19,0x30,0x70,0x32,0x76,0xa5,0x76,0xae,0xce,0x59, + 0x22,0xba,0x50,0x81,0x7a,0xa7,0x17,0x20,0xeb,0xa4,0x9a,0xad,0x53,0x8c,0x86,0x72,0x44,0x66,0x38,0xbb, + 0x47,0x89,0x9f,0x35,0x1c,0x12,0x71,0xd6,0x86,0xc6,0x95,0x81,0x23,0x3d,0x98,0x88,0xc5,0x62,0x76,0x65, + 0xb7,0xb0,0x12,0x7f,0xcd,0x17,0xf6,0xf3,0x74,0x31,0x70,0x22,0xe3,0x46,0xbf,0x16,0xaa,0xfe,0xd0,0x88, + 0xc9,0x1b,0x95,0x69,0xe7,0x27,0x08,0xd5,0xa2,0xaf,0xdd,0x62,0xad,0x98,0xbc,0xd1,0x0f,0x55,0xa3,0x60, + 0x33,0x88,0xef,0x4e,0x8c,0x94,0x17,0x35,0xc5,0x86,0x95,0x2a,0x61,0xca,0xd0,0x5c,0xbb,0xa8,0x1d,0xde, + 0x56,0xa3,0x5a,0xa8,0xe8,0x9b,0xb5,0xe4,0x17,0x6d,0x7d,0xfc,0x21,0x4b,0x04,0xb6,0xa6,0xd6,0xd8,0xf8, + 0xd0,0x83,0xa9,0xf6,0x88,0x8b,0xb3,0x03,0xf3,0xda,0xe2,0xd7,0x2a,0xfb,0x41,0xb2,0xdd,0x1c,0x04,0x7c, + 0x21,0xdf,0x9a,0xd5,0x18,0x49,0x48,0x9d,0x47,0xbb,0xa5,0xf5,0x96,0x48,0xdc,0x80,0x4d,0x5b,0x75,0x05, + 0xc3,0x4a,0xeb,0x42,0xd1,0x52,0x5d,0xc4,0x0c,0x07,0xcd,0x6f,0x8e,0x11,0xfb,0x77,0x29,0x5b,0x4d,0x3a, + 0xae,0x4b,0x0c,0xc2,0x84,0x52,0xe1,0xcf,0x69,0xb8,0x68,0x7e,0x16,0x57,0x74,0xdd,0x91,0xb2,0x76,0x15, + 0xe5,0xe1,0xbd,0x27,0x71,0x7d,0x83,0xcb,0xe1,0xcd,0x3c,0x59,0x2b,0x2d,0xca,0x0a,0xf1,0xfd,0xd2,0x0c, + 0x83,0x5d,0x9b,0xb8,0x1b,0x0f,0x83,0x0d,0x0e,0x52,0x7b,0x72,0xaa,0x9d,0x8e,0xf8,0x62,0xba,0xb1,0xb0, + 0xfa,0x43,0x0a,0x11,0x7e,0x95,0xb6,0x58,0x73,0x9c,0xc2,0xec,0x7a,0xe0,0xae,0x9a,0x1e,0xb8,0x8d,0x43, + 0x61,0xa8,0x41,0xd1,0x54,0x7c,0x81,0xe5,0x37,0xce,0xef,0xa1,0xcf,0xff,0xba,0xf6,0x48,0xe0,0x3b,0x7d, + 0x7a,0x0a,0xa5,0x10,0x09,0x83,0x7d,0x70,0xf0,0x6d,0x86,0x7f,0x03,0xb8,0xd1,0x02,0xdd,0x06,0x55,0xe6, + 0xd7,0xb0,0xcb,0x38,0x96,0x8d,0xf9,0x6d,0xaa,0xbe,0x86,0x32,0xe5,0xcd,0xe9,0x8d,0xef,0x8f,0xc2,0xc1, + 0xe6,0x34,0x0b,0xfa,0xa3,0xe0,0x74,0x7b,0xba,0x3d,0x5a,0xa8,0x7f,0x40,0xfb,0xfd,0x70,0xf0,0x49,0x7f, + 0xf4,0xdb,0xfe,0xcd,0xd6,0x0f,0x36,0xe3,0xd3,0xc9,0xe9,0xd1,0xe9,0xe9,0x84,0xbe,0xfd,0xda,0xad,0xc2, + 0xce,0x47,0x88,0xd1,0xde,0xfe,0x47,0xaa,0xbc,0xd3,0xd3,0xfd,0x03,0x8f,0xcd,0x97,0xa1,0x68,0xbe,0xfb, + 0xc5,0x9d,0x5d,0xf1,0x97,0xe2,0x27,0x7d,0x4f,0x77,0x46,0x7a,0xe3,0xf5,0x33,0xe5,0x2d,0x20,0x09,0x54, + 0xbf,0xc0,0xcc,0x8f,0xc5,0xfb,0xf0,0x69,0x1a,0x8e,0x3d,0x47,0xee,0xef,0x4d,0x94,0x45,0xd9,0x2d,0x33, + 0x0f,0x80,0x08,0x5c,0x2b,0x16,0x99,0x46,0x91,0xa9,0xc8,0x6b,0xc4,0xe0,0x76,0x28,0x82,0x2d,0xa7,0xaa, + 0xe8,0xdb,0x97,0xcf,0xbf,0xa7,0x04,0x00,0x36,0x62,0x38,0x66,0xc6,0x8d,0x79,0x54,0x38,0x05,0xe1,0x28, + 0x17,0xa2,0x14,0x28,0xc5,0x20,0xe1,0x8b,0x94,0x09,0x8e,0xa8,0xc0,0xf2,0x27,0x19,0xdc,0xb3,0x76,0x70, + 0x9f,0x9e,0xe7,0xa8,0xf6,0xd7,0x4d,0xe2,0xb2,0xac,0x1f,0xb9,0xe3,0x09,0xbd,0x7e,0x23,0x47,0xdf,0x53, + 0xb0,0xd2,0x6c,0xb4,0xa5,0x4b,0x4d,0x6d,0x7e,0xf7,0xa3,0x14,0x48,0x88,0x2e,0xfe,0xf7,0xee,0x69,0xe3, + 0x2b,0x92,0x3f,0x3e,0x6d,0x8c,0xfe,0x5b,0xd3,0xc6,0x55,0xb5,0xa7,0xed,0x4d,0x8a,0x99,0x6b,0x4e,0x9d, + 0x14,0x76,0xa6,0x8e,0x13,0xfe,0xec,0xd4,0x71,0xb3,0x8d,0xa9,0xe3,0x14,0x67,0xea,0xf8,0xdd,0x4c,0x9d, + 0xdb,0x96,0x2d,0x85,0xfc,0xbe,0x14,0xa8,0xbf,0xf6,0x61,0x75,0x20,0x93,0x57,0xe5,0x7c,0xd9,0x04,0xcb, + 0x3f,0xb6,0x02,0x85,0x39,0x65,0xbe,0xd4,0x56,0x8d,0x62,0xba,0xa7,0xad,0x31,0xc5,0xc2,0x30,0x2d,0x19, + 0x33,0xe3,0xea,0x89,0x86,0xe2,0xd8,0x8b,0x36,0x4c,0x1f,0xc5,0x40,0xf2,0xfa,0x1c,0x6e,0x87,0x92,0x5c, + 0x6c,0xa6,0xb5,0x85,0x23,0xcc,0x3f,0x2b,0x98,0x76,0x1a,0x31,0xe7,0x8a,0x4d,0x1c,0x61,0x1e,0xc8,0x86, + 0x8e,0x62,0xfa,0x58,0xe8,0x9a,0xb0,0xb9,0xa4,0x87,0x9d,0x26,0xa8,0xd2,0xe5,0xda,0xd8,0x90,0x2d,0x26, + 0x3b,0x0d,0x2b,0xd1,0x6c,0xd3,0xb2,0x91,0x6d,0x51,0xb5,0x21,0xaa,0xb1,0xa4,0xdc,0xb1,0x48,0xd5,0x36, + 0xae,0x6c,0x62,0xd9,0x61,0xe1,0x8a,0xbe,0x1a,0xfb,0x57,0x69,0x87,0x26,0x8b,0xed,0x6a,0xb5,0x0d,0x26, + 0xee,0x32,0x8c,0xf1,0x24,0x4f,0x53,0xdb,0x1c,0x53,0xa6,0x4d,0xcc,0x53,0xf5,0xe4,0x89,0x21,0x85,0x31, + 0xb5,0xac,0xad,0x40,0x5b,0x53,0xc4,0x96,0xb9,0x34,0x51,0x3c,0xd7,0x50,0x03,0xcc,0xa3,0xa3,0xdf,0x4e, + 0xcb,0x4f,0xfc,0x31,0xfd,0xf5,0xee,0xdc,0x7f,0x70,0x7a,0x14,0x4d,0xfa,0x01,0xe1,0x1a,0x24,0x46,0x01, + 0xfe,0x8e,0x42,0x8f,0x3e,0x7b,0x93,0x4f,0x08,0xed,0x6c,0xee,0xd0,0xe3,0x1d,0x7a,0xbc,0xd3,0xdf,0xe8, + 0x32,0xd1,0xfd,0x07,0xff,0x41,0x45,0x82,0x60,0x74,0xa4,0xd2,0x3c,0xf2,0xc6,0xf1,0xe1,0xef,0x0f,0x0f, + 0x7f,0x3d,0x9b,0x8c,0x4f,0x4f,0xaf,0x4f,0x4f,0x0f,0x4f,0x4f,0x07,0x93,0x4f,0x3c,0x95,0xd3,0x27,0xe0, + 0x30,0xaf,0x9f,0xe6,0x7d,0xc2,0x74,0x61,0x30,0x92,0xc7,0xc0,0x53,0x71,0x1e,0x39,0xc8,0xce,0xfb,0xed, + 0xbe,0xd7,0xcf,0x73,0xe2,0xd0,0x4c,0xe7,0x4e,0x8f,0x46,0xc1,0x83,0x23,0x5a,0x97,0x56,0xb6,0xd3,0xd3, + 0x23,0xe4,0xec,0x7b,0xe3,0xdf,0x1e,0x4c,0x3e,0x79,0x40,0xe3,0x59,0xa3,0xc8,0xfd,0xbd,0xc7,0xcf,0x1f, + 0xbd,0xfa,0xe5,0xc5,0x97,0x3d,0xa4,0xf7,0x1f,0x1c,0xa5,0x6a,0x29,0xe9,0xb0,0xe0,0x99,0xcb,0xe3,0xe9, + 0xf8,0x48,0xad,0x72,0xdc,0x1d,0x7b,0x6f,0x3d,0x8b,0x85,0x8f,0xde,0xfa,0x03,0x1a,0xc8,0x42,0x35,0xb7, + 0x3c,0x65,0xf4,0xc0,0xdc,0x27,0xfa,0xea,0xe5,0x22,0x57,0x57,0x39,0xb1,0xd2,0x6a,0x91,0xab,0x77,0xb9, + 0x3a,0xcb,0x09,0x88,0xd4,0x75,0xae,0xde,0xe6,0x6a,0x3f,0x57,0x6f,0x72,0xf5,0x28,0x57,0x0f,0x19,0x04, + 0xb5,0xfd,0xae,0x36,0x8c,0x36,0xb7,0x1e,0x7c,0x08,0xbe,0xcc,0x71,0x73,0xfc,0x8a,0xfe,0x7a,0x07,0xcb, + 0x6a,0xe8,0x85,0xde,0x7d,0xda,0x94,0x07,0x0b,0x7e,0x7c,0x80,0x47,0xc0,0x27,0xbd,0xdc,0xf1,0xee,0xd0, + 0x4b,0x7c,0xb9,0xc2,0x87,0x03,0x7c,0xf8,0xcb,0xc9,0x31,0x9e,0x4f,0x33,0x7e,0xf9,0x9c,0x9f,0x2b,0x6f, + 0xab,0x9e,0xd3,0xd8,0x0e,0x68,0x92,0x89,0x01,0x5e,0x54,0x1b,0x14,0xdf,0x50,0xb1,0x60,0x48,0x03,0x7a, + 0xda,0xf9,0x69,0x43,0x35,0x6d,0xfe,0xf2,0x39,0xe7,0x78,0xcd,0x1d,0x86,0xe6,0x43,0xb3,0x9f,0x5f,0xe6, + 0xdd,0xa4,0x05,0x9d,0xc1,0xaf,0x73,0xf1,0xa1,0x70,0xca,0x72,0x96,0x04,0x9e,0x8b,0xd4,0x0b,0xcc,0xef, + 0xbf,0x6d,0x7e,0xbb,0x3a,0xcc,0xb3,0xf0,0x48,0x3d,0xc1,0xeb,0xd5,0xe1,0x06,0x49,0xf4,0xfa,0x98,0x5e, + 0xfd,0xc1,0x27,0x74,0xa0,0x96,0x7d,0xea,0x4d,0x9a,0x6d,0xf2,0x39,0x3f,0x0f,0x3e,0x09,0x8e,0xd4,0x57, + 0xf4,0x55,0x11,0x5c,0x29,0x3a,0x6e,0x27,0x04,0x65,0x94,0xc3,0x7d,0x0d,0x46,0xfb,0x47,0xea,0x7b,0x86, + 0x0a,0x7f,0x73,0x1a,0xec,0x53,0xa7,0x9f,0xe5,0x6c,0x1e,0xf6,0x09,0xbd,0xa8,0x1f,0xf0,0x25,0x44,0xcb, + 0x2c,0x7a,0x3e,0x52,0x5f,0x50,0xc2,0xe9,0x60,0xfc,0xdb,0x60,0xd2,0xa7,0xac,0x3f,0xe7,0x9d,0xc6,0x3b, + 0xfe,0xb7,0x69,0xf4,0x6d,0xfa,0x01,0x43,0xa5,0xa0,0xd6,0x86,0x88,0x2a,0xf5,0x6d,0xea,0x1a,0x27,0xd2, + 0x21,0xfc,0x23,0x5a,0x7e,0x7b,0xb9,0xcc,0xca,0xf0,0xfb,0x97,0xa7,0xb3,0xfe,0x91,0xfa,0x09,0x29,0xfc, + 0x4c,0xfd,0xf8,0x26,0x8f,0xc6,0xbf,0xa4,0x74,0xe6,0xa8,0x1b,0x9a,0xde,0x57,0xef,0x39,0x5b,0x44,0x96, + 0x64,0xbc,0x4a,0xc8,0xd5,0x90,0x61,0x61,0xf8,0x72,0xff,0x59,0xbc,0x62,0x91,0xec,0xd8,0xbb,0x3a,0xe4, + 0xcb,0x14,0x6f,0x02,0xe9,0x2c,0x5e,0x79,0xd0,0x20,0x08,0xbd,0xc9,0x66,0x43,0x29,0xfa,0xd9,0xa8,0x86, + 0xea,0xd3,0x86,0x13,0xe1,0xb9,0x4b,0x4e,0xae,0xab,0xc3,0x74,0x2e,0xcb,0x9c,0x47,0xe9,0xc8,0xa3,0xba, + 0x68,0x57,0x62,0x53,0x86,0xc4,0x22,0xc6,0x91,0xd0,0xe4,0x26,0x2b,0xae,0x73,0xb5,0xdd,0x72,0x23,0xcd, + 0xd6,0x31,0x8d,0x7e,0x61,0xfb,0x91,0x7f,0x40,0x2b,0x45,0x25,0x09,0x64,0x59,0xdc,0xa0,0x12,0xd7,0x19, + 0xe7,0xf9,0x5b,0x6a,0xfb,0x6b,0xa4,0x13,0xdb,0x34,0x05,0x0d,0x3b,0x25,0x04,0xad,0xc9,0xbd,0x41,0x3a, + 0x27,0x1c,0xe1,0xf5,0x0b,0x6a,0x9f,0x86,0x7f,0xc7,0x14,0xb9,0x43,0x9b,0x5c,0xfd,0x8a,0x42,0x37,0xc9, + 0xdb,0x55,0x88,0x7c,0x82,0xbf,0xc3,0xa9,0xde,0x8f,0x6b,0xdd,0x2e,0x75,0x6a,0x8d,0x4e,0xd1,0xec,0x4a, + 0x87,0x12,0x4e,0xd0,0x5d,0x28,0xe2,0x59,0x9a,0x4b,0xfb,0x6b,0xb4,0x5f,0x57,0xe9,0xb6,0xca,0xb9,0xb8, + 0x49,0x69,0x63,0xad,0xdb,0x58,0xea,0x36,0x8c,0xcf,0xa2,0xc4,0x5f,0xb6,0x9b,0xa2,0x04,0x99,0x74,0x18, + 0x3f,0x7c,0x8d,0xf7,0x46,0x2b,0xa9,0xae,0x71,0x09,0xf7,0xf8,0xa3,0xe9,0x00,0x53,0x87,0x50,0x74,0xa0, + 0x74,0xe4,0x8d,0x26,0x00,0x4e,0xa8,0xc1,0xd9,0x4d,0xd4,0xef,0x84,0x19,0xa8,0x18,0x71,0x0c,0x00,0x3b, + 0xc8,0xef,0xcd,0x0d,0xf7,0x37,0xb9,0xaa,0x59,0x89,0x50,0x5f,0xaa,0x7d,0xe8,0x1a,0xcd,0xbd,0x43,0xcd, + 0x05,0xb6,0xd8,0xbb,0x9f,0x01,0x2b,0xbe,0x7b,0x15,0xf7,0x86,0x96,0x17,0xb1,0x32,0xf4,0x44,0x2b,0x73, + 0x29,0x1d,0x5a,0xb7,0xbe,0xbf,0xcc,0x83,0xbd,0xee,0x96,0xef,0xe0,0x67,0x7f,0xdf,0x78,0xe0,0xf8,0x29, + 0x5e,0xf6,0xa2,0x5e,0x2b,0xb2,0xba,0xbe,0x52,0x90,0x4b,0xcc,0x7d,0x76,0x20,0xab,0x23,0x36,0xda,0x0b, + 0x4d,0x5b,0x79,0x5e,0x9b,0xc7,0x0f,0x4c,0xa5,0xdb,0x00,0x77,0xa0,0xbe,0x9b,0x07,0xad,0x5e,0x71,0x5b, + 0xde,0x99,0xb8,0x7b,0x81,0x4a,0x50,0xde,0x1b,0x51,0x31,0x49,0xe8,0x85,0xf4,0xa8,0xaf,0xde,0xa4,0xc2, + 0x3b,0x7d,0x9f,0x63,0x30,0x88,0x1d,0xfd,0xc8,0x3b,0xcb,0x7c,0xfa,0x8e,0x3d,0x40,0x3f,0x10,0x12,0x11, + 0x08,0x78,0xc3,0xcc,0xbd,0xd1,0x84,0x02,0x7d,0xdf,0xeb,0x79,0xfd,0x18,0xd6,0xc6,0x5e,0xb3,0xef,0xe6, + 0x52,0x95,0x1a,0x6d,0x4e,0x40,0xd8,0x7c,0x27,0x7c,0xe9,0x05,0x96,0x2b,0x62,0xb3,0x9d,0xda,0x26,0xb4, + 0xc6,0x03,0x39,0x61,0x58,0xbb,0x7d,0xe8,0x3d,0xbe,0x6d,0xca,0x9d,0x41,0xd0,0x12,0xcb,0x7e,0x97,0x39, + 0x08,0x36,0x1b,0x0f,0xed,0x60,0x4f,0x6b,0x3c,0x50,0xac,0x93,0xc3,0xfa,0x23,0x5e,0x3d,0xda,0xd6,0xf2, + 0x71,0x1e,0x63,0x57,0xd7,0x5f,0xf9,0xdd,0x1b,0xfe,0x7b,0x25,0x33,0x20,0x4e,0x70,0x94,0xd7,0x34,0x25, + 0xf1,0xfa,0x44,0x55,0x06,0xa3,0xb3,0x54,0x9e,0x14,0x6d,0xa1,0x3e,0xf3,0xe1,0x5e,0xdf,0x97,0xfa,0xd1, + 0xf7,0x91,0x17,0xea,0x9c,0x34,0xbd,0xe1,0xd9,0x3f,0x6d,0xe6,0x18,0x49,0x01,0xc2,0x9f,0xb9,0xd3,0xec, + 0x09,0x14,0xc5,0x91,0x64,0xdb,0x07,0xf7,0xda,0x98,0x6c,0x4a,0x9a,0x46,0x48,0x1e,0xe8,0x7e,0x8d,0x7c, + 0xa9,0x0b,0xcd,0x10,0x87,0xd0,0x61,0x0c,0x4b,0xd5,0x69,0xa4,0xb8,0xbf,0x7f,0x45,0x15,0xfb,0xb2,0xe4, + 0xd2,0x5f,0x2f,0xcc,0x03,0x6e,0x28,0x8d,0x68,0x24,0x94,0x95,0x1e,0xaf,0xb8,0x12,0xb7,0x91,0xe0,0x86, + 0x32,0xdc,0x3f,0x66,0x74,0x49,0xfd,0xa2,0x0e,0xd8,0x70,0xdb,0x63,0xca,0x4f,0x48,0x57,0x74,0xe5,0x28, + 0x17,0x4d,0x40,0x23,0x9b,0x71,0xff,0x42,0x9f,0x02,0x53,0xa6,0x4e,0xa7,0xd4,0xfe,0x09,0xf4,0x08,0xa4, + 0xbc,0x85,0xaf,0xfd,0x29,0xc3,0xa1,0xf7,0x71,0xd0,0x22,0x98,0xee,0x5f,0x04,0x95,0x9d,0xe5,0x76,0x16, + 0xcb,0xa7,0x32,0x3b,0x93,0x86,0xd0,0x0d,0xcd,0xd5,0xe3,0xce,0xe7,0x1f,0x03,0xe2,0x00,0x41,0x47,0x27, + 0xe4,0x56,0xac,0xd2,0xc2,0x57,0x84,0xd7,0xd8,0x7f,0x3c,0x4e,0x2f,0x89,0x1a,0x0c,0xbf,0xdb,0x7a,0x5c, + 0x08,0x80,0x04,0x3b,0x6e,0x3a,0x96,0xf6,0x64,0x56,0xd0,0x29,0xe8,0xf6,0xa9,0x75,0x94,0x8f,0x4c,0x2f, + 0x43,0xfd,0x01,0x3a,0x68,0xa3,0xf3,0x34,0xd4,0xbd,0x52,0xcb,0xa8,0xb5,0xad,0x65,0x7e,0x86,0x40,0xd7, + 0xdd,0xdf,0xb4,0xd5,0x38,0x3c,0x96,0x48,0x1e,0x9e,0xa0,0x25,0xcf,0xcc,0x50,0xee,0xac,0x78,0x46,0x96, + 0xc1,0x70,0x4a,0x19,0xe8,0xb4,0x03,0x58,0x35,0xea,0xd1,0x7a,0x26,0xf6,0x92,0x72,0xe8,0xf5,0xe7,0x81, + 0x92,0x95,0x90,0xf6,0x95,0x67,0xf6,0x8f,0x9e,0xed,0xb5,0x9a,0xd7,0x92,0x15,0xbf,0xdc,0x6c,0xa0,0x30, + 0x2d,0xeb,0x70,0xbe,0x5c,0xd3,0xe9,0xe4,0x35,0xaf,0xae,0x3c,0x63,0x2e,0x58,0x2f,0xc4,0xde,0xd3,0xac, + 0x29,0x26,0x24,0x4c,0xda,0x89,0xfb,0xed,0x2d,0x2c,0xd3,0x88,0x3b,0x8c,0xf1,0x95,0x68,0x30,0x48,0x77, + 0x1d,0x12,0x09,0xc0,0x53,0xa2,0xdb,0x92,0x83,0x3b,0xbf,0x65,0x9e,0xe7,0xfd,0x55,0x58,0xa2,0xab,0xb3, + 0x82,0x2d,0x31,0x96,0x2f,0x88,0x9e,0x8a,0xbb,0x5c,0x52,0x80,0x90,0xd5,0x0e,0xb8,0x20,0xac,0x24,0xae, + 0x08,0xf9,0x2a,0xa2,0xda,0x6b,0x39,0x69,0xf8,0x6b,0x01,0x87,0x3b,0x5f,0x24,0x4f,0x93,0x79,0xf5,0x7c, + 0x95,0x64,0xc8,0x92,0xe4,0xaa,0x31,0x15,0x61,0x99,0xaa,0x96,0x2c,0x34,0xfc,0xa1,0x52,0x8e,0xf0,0xe0, + 0x9b,0x9c,0xf8,0x87,0xd9,0x7a,0xda,0xad,0x72,0xc3,0xb1,0x1c,0x79,0x97,0x9b,0x00,0x59,0x26,0xe4,0x5f, + 0xc0,0x1e,0x21,0x06,0xaf,0xf3,0x94,0xc0,0x44,0x61,0x46,0xfe,0xd9,0x4d,0xa2,0xf6,0xe0,0xe8,0x05,0xd0, + 0xce,0x67,0x36,0xe0,0x1f,0x92,0x75,0x65,0x76,0x82,0x22,0xde,0x25,0xcd,0xb4,0x3b,0x0f,0x65,0x2f,0xc6, + 0x24,0xba,0x50,0xdf,0xaf,0x46,0xd8,0xb1,0x15,0x3c,0xa3,0x42,0x60,0xf4,0x9d,0x65,0xf9,0x4e,0xaf,0xf7, + 0xcf,0x26,0xfd,0xcd,0x29,0x51,0xd8,0xc1,0xe4,0x93,0xd1,0x69,0x00,0x76,0x2f,0x7a,0xb0,0xf9,0xcd,0xf4, + 0x80,0x5e,0x4f,0xfd,0x23,0xf5,0xad,0x2e,0x31,0x26,0xb6,0x8e,0x98,0xbb,0xb3,0xfd,0x09,0x8a,0x4e,0xc0, + 0x19,0x12,0x75,0xdd,0x4a,0xdc,0x9c,0x8e,0xef,0x10,0x7d,0x7f,0x67,0x42,0x0f,0x1e,0x3d,0x78,0x78,0x20, + 0x32,0x18,0x3f,0xed,0xbc,0x93,0xe0,0x13,0xaa,0x96,0x28,0xf7,0xaf,0x41,0xea,0x94,0xd3,0xf0,0xee,0xdf, + 0xe0,0xcc,0x28,0xfc,0x5c,0xd4,0x2c,0xc2,0x93,0x7b,0x4a,0xe6,0xfb,0xde,0x5d,0xb5,0x5e,0x85,0xf7,0xfe, + 0x4e,0x1c,0xf2,0xbc,0x0a,0xef,0xfd,0x4d,0x15,0xb8,0x3d,0x09,0xef,0x7d,0xae,0xe0,0x05,0x3b,0xfc,0xf4, + 0x58,0xc9,0x05,0x66,0x38,0xfe,0xbb,0xfa,0xf4,0xaf,0xc4,0x84,0xfc,0x23,0xef,0xf2,0xcb,0x05,0x94,0xd3, + 0xaf,0x08,0x78,0x1c,0x9f,0x59,0x43,0x62,0x9b,0x7e,0xcd,0x21,0x0c,0x22,0x78,0x30,0x9b,0x1a,0x2f,0x00, + 0x90,0x78,0x11,0x8b,0x08,0x71,0x08,0x8d,0x0a,0xfe,0x66,0xf3,0xe8,0xf7,0xc7,0x72,0xe1,0xc8,0x59,0x10, + 0x97,0x2c,0xfc,0x47,0xee,0x37,0x71,0x43,0x8f,0x30,0x4e,0x4f,0xa7,0x4c,0xd7,0x05,0x16,0xe9,0x15,0x7f, + 0xf0,0x20,0x5c,0x2d,0x96,0x5c,0x62,0xcf,0x64,0xa0,0x84,0xef,0xa0,0xa1,0xab,0xd8,0x77,0x68,0xe3,0x1b, + 0xa7,0xc8,0xc7,0x78,0xd9,0xfc,0x44,0xef,0xf2,0x01,0xf2,0x82,0xc6,0x17,0x24,0xc8,0x27,0x9e,0x3b,0x7c, + 0xba,0x23,0x5e,0xa1,0xee,0x80,0x30,0x92,0x5c,0xbd,0x83,0x03,0xd3,0x43,0xf9,0xc6,0x7d,0x3e,0x46,0x7d, + 0xe9,0x6c,0xb6,0x4c,0xfe,0x50,0xb1,0x13,0xc8,0x15,0x78,0x7d,0xfe,0x48,0xa9,0xbb,0x80,0xff,0x5f,0x68, + 0x21,0x88,0x6b,0x6c,0xfb,0x63,0x81,0x1b,0xb8,0x3a,0xaa,0x5d,0xc7,0xc2,0x9e,0x2d,0x64,0x61,0x55,0x03, + 0x43,0x10,0x82,0xd8,0xd1,0x41,0x32,0xd5,0x71,0xf8,0xbc,0xda,0x5a,0xa8,0xae,0xe9,0x9c,0x6a,0xca,0xa8, + 0xa6,0x3b,0x90,0x7f,0xd1,0x7e,0xeb,0x83,0xf9,0xae,0x6b,0xc5,0xd9,0xe7,0x50,0xd2,0x70,0x74,0x54,0xab, + 0x23,0xe2,0x32,0x6c,0x24,0xa4,0x4e,0xa8,0x69,0xa6,0xe0,0x3d,0xd9,0x39,0xfa,0xb4,0xa7,0x74,0x7e,0x2f, + 0xd0,0x7d,0x9e,0x2e,0xf3,0xf8,0x0d,0xe2,0xea,0xfe,0x7b,0xbe,0xeb,0xf5,0x34,0xb7,0xce,0x32,0xf9,0x15, + 0x92,0x48,0x3a,0x13,0xf1,0xb3,0xd9,0xfc,0xaa,0x13,0xad,0xf0,0xb2,0x8c,0x7e,0x81,0x41,0xb5,0x51,0x4c, + 0xf7,0xec,0x87,0x47,0xc4,0x31,0x18,0x0f,0xee,0xb8,0x67,0xfc,0x3a,0xc9,0x10,0xc1,0xaf,0x99,0x5b,0x4b, + 0x1d,0x6d,0x3e,0xcb,0x71,0x44,0x57,0x3e,0x2b,0x5a,0xfc,0x92,0xb3,0x69,0xb4,0x4d,0x0f,0x6c,0xf4,0xae, + 0x06,0x02,0xdd,0x6c,0x1e,0x65,0x43,0xed,0x1b,0xf9,0xdd,0x79,0x62,0x03,0x31,0x76,0x2c,0xe4,0x9e,0x35, + 0xe3,0xd5,0xfe,0x31,0xb3,0x69,0xf2,0x64,0x16,0x69,0x0f,0xf5,0xed,0x80,0x83,0xf0,0xd1,0x4d,0xab,0xe8, + 0xbb,0x42,0xa1,0xd3,0xd3,0x73,0xaf,0xef,0xcd,0x08,0x87,0xcf,0x21,0x80,0x23,0xa0,0xaf,0x10,0x50,0x97, + 0x26,0xf9,0x1d,0x3b,0x66,0x9b,0x42,0xf8,0x87,0x63,0x4f,0x5d,0xa7,0xd5,0x85,0x8a,0xaf,0xe3,0xb4,0x52, + 0x6c,0x18,0xa0,0xd8,0x07,0xba,0x56,0x9e,0xe7,0x6b,0x20,0xc5,0x8e,0x4b,0x15,0xc7,0xa5,0x57,0xd7,0x84, + 0x56,0x13,0xf5,0x0e,0x52,0x3f,0x8d,0x6c,0x14,0x31,0x67,0x39,0xbc,0x1d,0xb2,0x27,0x16,0x25,0x23,0x30, + 0x1e,0xc0,0xac,0x4b,0x6d,0x76,0x17,0x4a,0x6c,0x8c,0x84,0xa8,0x67,0x27,0x68,0x69,0xb6,0x86,0x63,0xc6, + 0xf3,0xf5,0x62,0x01,0x31,0xa1,0x9e,0x85,0x3a,0xe8,0x8a,0xa7,0xfd,0xd4,0xe0,0x4c,0xd0,0xa7,0x03,0x0d, + 0x6b,0x83,0xa1,0x05,0x7d,0x1e,0xa1,0x04,0x09,0x6e,0x8d,0x59,0x3a,0x25,0x7e,0x47,0x59,0x81,0xbd,0xb3, + 0x1e,0x42,0xe9,0x40,0xf8,0xa7,0xa7,0x84,0xf2,0xe9,0x4f,0x5d,0x6b,0xeb,0x03,0xb5,0xe1,0x3f,0x6a,0x4b, + 0x7e,0x44,0x14,0x71,0xab,0xd5,0x28,0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7,0xd1,0xde,0x49,0xa0,0xce,0x72, + 0xbd,0x9e,0x6c,0x20,0x06,0x09,0xb7,0x13,0xb1,0x65,0x98,0xdd,0x7f,0x97,0xbb,0xce,0x59,0xde,0xe5,0x6c, + 0x87,0x8b,0x9b,0x9c,0x8b,0x3c,0x4a,0x6a,0xa8,0x3e,0xc3,0x9b,0x39,0xeb,0x01,0x4e,0xea,0x1c,0x29,0xce, + 0x49,0xce,0x89,0xd7,0x48,0x6c,0x1d,0xd5,0xfc,0xe1,0x32,0x07,0x68,0x27,0x1d,0x1b,0xe1,0x7b,0xd9,0x08, + 0x8b,0x76,0x86,0xb6,0x98,0x86,0xf2,0xbc,0xdb,0xc9,0x93,0x97,0x55,0x3b,0xd3,0x15,0xba,0x40,0x2b,0x91, + 0x5e,0xa6,0x15,0x02,0x22,0x6a,0xa3,0x5c,0x22,0x4f,0x59,0xf9,0x64,0xef,0x84,0x75,0x3d,0x11,0xe3,0x1c, + 0xbb,0xe3,0xe7,0x0b,0xca,0xc5,0xdd,0x54,0x98,0x2f,0xd0,0xa9,0x27,0x3b,0x96,0x19,0xed,0x49,0xa6,0xb7, + 0x65,0x1f,0x37,0x78,0x50,0x6b,0x5d,0x9f,0xcb,0xdd,0x82,0xef,0x5a,0x4d,0x17,0xc6,0x8f,0x00,0xeb,0xdf, + 0xa9,0xb2,0x8e,0x5f,0x2f,0x9a,0x7c,0xcb,0x40,0xdf,0xbd,0xe1,0xba,0xa1,0xc0,0x6b,0xc5,0x2b,0xd6,0xba, + 0x90,0xa5,0x64,0x56,0xf5,0x4f,0xa3,0xb8,0x0e,0x6a,0x9f,0x3e,0x88,0x88,0xeb,0x89,0x11,0x0a,0x66,0x69, + 0xb2,0x62,0x93,0xd3,0xb8,0x4a,0x84,0x54,0x33,0x34,0x65,0xc4,0xd7,0xbe,0xc8,0xed,0x18,0x60,0xba,0x15, + 0x4d,0x1f,0x44,0xe9,0x70,0x4a,0x05,0x92,0x01,0x7b,0x59,0xe1,0x1f,0xf6,0xb7,0xce,0x92,0x09,0xf4,0x7f, + 0x68,0xb2,0x47,0x98,0xc0,0x94,0x9b,0x3d,0x3c,0xe1,0xef,0xcc,0x1d,0x79,0xe7,0x05,0x28,0xbc,0x72,0xc4, + 0x84,0x55,0x01,0x0b,0x75,0x79,0xa0,0xf1,0xd3,0x74,0xef,0x1d,0x8b,0x67,0x04,0x6f,0xc5,0xb9,0x38,0x0e, + 0x6e,0x67,0xbe,0x13,0xce,0xa7,0x1a,0x1d,0x91,0x19,0xa4,0x49,0x35,0xce,0x11,0xe0,0xe9,0x04,0x8b,0x08, + 0x65,0xf4,0x5a,0x2a,0x43,0x4b,0x96,0x0c,0x6a,0xfa,0x92,0xa1,0x6d,0x8d,0x1b,0xe7,0x16,0x55,0xc9,0x1f, + 0x96,0x34,0x29,0xd5,0x90,0x85,0x7c,0x29,0x21,0x70,0x62,0x49,0x1e,0xe6,0x7e,0x6e,0xd5,0xd9,0x60,0x97, + 0x9a,0xb7,0xee,0xc4,0x67,0xd1,0xcb,0x7c,0xbc,0x42,0x88,0x28,0xfe,0x6d,0xc8,0xbf,0x89,0x80,0x3b,0x2d, + 0x4f,0x4f,0x5f,0x12,0xe9,0x16,0xf8,0xf7,0x8f,0xbc,0xfe,0xca,0x08,0xc2,0x03,0xda,0xf1,0x29,0x78,0x69, + 0x58,0x67,0x19,0xd1,0xf6,0xcc,0x95,0x69,0x33,0x78,0x18,0x48,0xb3,0x96,0xb0,0x8a,0xfa,0xb3,0x62,0xfe, + 0x4f,0xfb,0x9d,0xc4,0xc4,0xad,0xa0,0xd5,0x11,0xd5,0x0e,0xa8,0x8e,0x20,0x46,0xa7,0xb6,0x4b,0x69,0xf9, + 0xf0,0xf0,0xc1,0xd1,0x82,0x58,0x0c,0x3a,0xf5,0xdd,0x2c,0xa7,0xe3,0x47,0x8f,0x1f,0xbe,0x7a,0x78,0x3a, + 0xae,0x73,0x4e,0x26,0x36,0x27,0x84,0xca,0xfe,0x4a,0x89,0xdb,0x65,0xe8,0xb3,0x68,0x9f,0x4d,0x1c,0x46, + 0xef,0x22,0x96,0x83,0x92,0x1f,0xa0,0x04,0xe1,0x41,0xfe,0x42,0x30,0x6f,0x74,0x74,0x0e,0x2f,0x4c,0x7f, + 0xab,0xe8,0x42,0x15,0x54,0xd1,0xf2,0x70,0x8e,0x48,0xd4,0xd6,0x0e,0xe9,0x2a,0x72,0x94,0x01,0xee,0x8b, + 0x0c,0x00,0x6a,0x98,0x57,0x3c,0xf9,0xcb,0xdc,0x44,0xd4,0x32,0x16,0x64,0xae,0xea,0xc0,0xe1,0xe9,0xdb, + 0x7b,0x89,0x14,0xb9,0x64,0xf0,0x4d,0x74,0x78,0x46,0x44,0xaa,0xd0,0x2a,0x88,0x3a,0x3c,0x82,0x76,0x58, + 0x52,0xef,0xc2,0x4f,0x15,0x6c,0x6d,0x33,0xff,0xb2,0x7f,0x8f,0x58,0x3c,0x8d,0xea,0xb7,0xd0,0xeb,0x9a, + 0xb7,0xda,0x5c,0xb8,0x6d,0x4e,0x1e,0x48,0x7b,0x0b,0x6e,0x2f,0xf3,0x17,0xfd,0xbb,0x6e,0x71,0xe4,0x87, + 0x86,0x34,0xbb,0xa7,0xf5,0xd7,0xa2,0x72,0xf8,0x0e,0x19,0xdf,0xe1,0x6e,0xd9,0x04,0x34,0xb4,0x05,0x90, + 0xff,0xcc,0xe6,0x9f,0x4a,0xfe,0x33,0x69,0xf7,0x3c,0x5a,0x0e,0x33,0xff,0xcc,0x29,0x47,0x13,0x78,0x36, + 0x3e,0x99,0xa8,0x73,0x66,0x4b,0xdd,0x3a,0xae,0xdb,0xb1,0x52,0x12,0x5b,0x69,0x2c,0x95,0xda,0xc8,0x7f, + 0x37,0xc6,0xe3,0x5f,0x82,0xaa,0x98,0xf3,0x08,0xb1,0x59,0xb0,0xcb,0xc2,0xe5,0x96,0x9a,0x4c,0xdc,0xae, + 0x3a,0xbb,0x6a,0xb8,0x87,0xcd,0xa0,0xab,0x2d,0x73,0x36,0xfe,0xc8,0x6d,0x42,0x41,0x09,0xc3,0x20,0xf3, + 0xf3,0x46,0x87,0xb5,0xff,0x48,0x13,0x88,0x13,0xfb,0xa9,0xb6,0xc1,0x5c,0x63,0x2f,0xbe,0xa4,0x53,0x9c, + 0xd0,0x06,0x3a,0x93,0xf9,0x69,0xb3,0x30,0x7c,0x9f,0x2f,0x55,0xb1,0xdd,0xfa,0x62,0x35,0x15,0xdc,0xec, + 0x84,0x5a,0xc8,0x22,0xeb,0xa6,0x90,0xad,0x2e,0xea,0x3a,0x99,0xfb,0x17,0x8c,0x42,0xfb,0x37,0x13,0xd7, + 0xe1,0x05,0xf5,0x42,0xad,0xf9,0x31,0x17,0x07,0xd0,0x05,0x5f,0x90,0x9b,0x61,0x2e,0xa3,0x29,0x7b,0x6b, + 0xd8,0xdb,0x4b,0xd9,0x07,0x8f,0x74,0x5f,0xc3,0xf0,0x8a,0x37,0xb5,0x48,0xa6,0xe6,0xd8,0xf1,0xc7,0xc3, + 0xd9,0xfd,0xf9,0x70,0x66,0x94,0xfc,0x2e,0x4c,0x81,0xf1,0x6c,0x32,0x5c,0x51,0xa3,0x87,0xb0,0x96,0xbb, + 0xc0,0x98,0x0c,0x00,0xdd,0xf1,0xbc,0x3b,0x98,0x37,0xbe,0xa3,0xba,0x18,0xdf,0x9b,0x1c,0x1c,0x68,0x85, + 0x4e,0xbc,0x28,0x9d,0xfc,0xa9,0x9b,0xfc,0xa9,0x4d,0xfe,0xcc,0x4d,0xfe,0x4c,0x5b,0x13,0x5e,0x71,0x35, + 0x9b,0x0d,0x32,0xe2,0xef,0x67,0xf4,0xd7,0xf3,0xd4,0x65,0xe4,0xc5,0xc6,0xc5,0x35,0xdc,0x37,0x4b,0x0d, + 0x27,0x93,0x91,0xd9,0x23,0x8f,0x13,0xb8,0xd4,0xfd,0x3e,0xb9,0x86,0x4b,0xd4,0xf2,0xab,0xbc,0xf8,0x86, + 0x72,0x85,0xdd,0x5f,0x87,0x2b,0x1a,0x91,0xd6,0x5d,0x47,0x25,0x8a,0x49,0xec,0xf0,0xbb,0xc4,0xbf,0xa2, + 0x6d,0xb4,0xdd,0x2e,0x59,0xf5,0x99,0x17,0x99,0x15,0x58,0x09,0x81,0xba,0x27,0x4e,0x98,0xb5,0x70,0xa5, + 0x40,0xdd,0x0a,0x1e,0xe9,0x23,0x8e,0x8b,0xd0,0x42,0xf6,0x19,0x6c,0xc9,0xf8,0xca,0x9b,0xde,0xe0,0xd1, + 0x26,0x83,0x4d,0xf6,0x35,0xe3,0xa2,0x5c,0xb1,0xef,0x16,0x42,0x41,0xad,0x7d,0xf7,0xd6,0x98,0x8c,0xef, + 0x9b,0x87,0x37,0xfa,0x01,0xb0,0x73,0x65,0xcf,0xb7,0x7d,0xeb,0xd8,0xf9,0x2a,0x20,0x90,0x9e,0xea,0xed, + 0xbe,0x0f,0x37,0xae,0xce,0xf3,0xd2,0x79,0x9e,0x3b,0xcf,0xfe,0x9b,0x68,0xdf,0xc5,0x58,0x8a,0x70,0xe1, + 0xfd,0x63,0x02,0xfd,0xab,0x7e,0xf4,0x46,0x35,0x2a,0x7f,0xdb,0x38,0xf7,0x8f,0xd5,0x15,0x10,0xce,0x55, + 0xb0,0xbd,0x62,0x71,0xe4,0x5b,0x70,0x06,0x11,0x2c,0xc7,0x2d,0x26,0x7d,0x5b,0x23,0xd3,0xb7,0xac,0x63, + 0x5a,0x89,0x9a,0xf2,0x0e,0xaa,0xad,0x8c,0x89,0xec,0xb6,0xf0,0x59,0x46,0x24,0x51,0x42,0x2e,0x72,0xe5, + 0x5c,0x43,0x34,0x4e,0x3f,0x47,0xb2,0xe2,0x1e,0x83,0x1d,0x42,0x95,0x9d,0x13,0x51,0x75,0x81,0xc4,0x2d, + 0x90,0xd2,0x99,0xf7,0xfd,0xc0,0xa5,0xbf,0xaa,0x1d,0xd4,0x1d,0x5a,0xcc,0x5d,0x6a,0xf4,0xe4,0x1c,0x8b, + 0x31,0xac,0x5f,0x65,0xc7,0x8a,0x80,0xb4,0xdc,0x6c,0xae,0x71,0xc7,0x39,0xfc,0x1e,0x20,0x0f,0x97,0xd9, + 0x34,0x77,0x88,0x72,0xd5,0x0c,0x48,0x51,0x2b,0x3b,0x13,0xd2,0x13,0xd2,0xb6,0x72,0x29,0x5b,0x23,0xbc, + 0x44,0x7c,0xd4,0x1f,0x73,0xa3,0x3b,0x99,0x69,0x9d,0x49,0x79,0x8a,0xe4,0xc7,0x1e,0xa2,0x3f,0xe5,0x4a, + 0x96,0x91,0x77,0x00,0x68,0x11,0x1b,0x43,0x0f,0xca,0xe5,0x5a,0x9e,0xf8,0x6d,0xc2,0xdd,0x4e,0xe9,0x80, + 0x84,0x44,0x91,0x7a,0x0c,0x7a,0x6e,0x4f,0x3b,0xd0,0x67,0x8f,0x8a,0xab,0x68,0x1e,0x88,0x32,0xb3,0xb9, + 0x8e,0x46,0xf2,0x4a,0x94,0xaf,0x57,0x4d,0x79,0x2a,0x0d,0x12,0x62,0xbb,0xa3,0xd7,0xf1,0x55,0xec,0xe6, + 0x6d,0x64,0xa2,0x3e,0x23,0x46,0x6d,0xc0,0x0d,0xd2,0xd0,0xcf,0xd9,0x13,0x3c,0x07,0xa2,0x34,0x13,0xb1, + 0xd2,0x78,0x6c,0x61,0x09,0x7c,0xe0,0xb3,0x79,0xb4,0xc8,0x69,0xcf,0xfb,0x73,0x85,0x3a,0xe6,0xac,0x18, + 0x48,0xe3,0xbf,0x8c,0xe6,0xca,0x5e,0x34,0x5e,0xe2,0x52,0x0d,0xb2,0x3b,0x54,0x7f,0x09,0x52,0x99,0x4d, + 0x0d,0xe6,0x35,0x5f,0x71,0x1c,0x30,0x63,0x31,0x77,0x18,0x0b,0xdc,0x48,0x76,0x46,0x2f,0xb6,0xc2,0x32, + 0xeb,0xee,0xd2,0x8d,0xd2,0x68,0x6f,0x55,0x1d,0x14,0x9c,0x18,0x3f,0x34,0x09,0x47,0xf0,0x84,0x97,0x1e, + 0x8d,0xa3,0x9c,0xda,0x28,0x51,0xe2,0x92,0x08,0xca,0x6a,0x29,0xf9,0xb4,0x32,0x4a,0x58,0xd2,0xad,0xf1, + 0xa8,0x49,0xe3,0x60,0x5d,0x3b,0x16,0xda,0x49,0x54,0xec,0x79,0x10,0xce,0xeb,0xbb,0x50,0xfa,0xfa,0x0f, + 0x18,0xf3,0x77,0x44,0x2a,0x75,0xee,0x6c,0xf5,0xf9,0x5b,0xe1,0xd2,0x34,0xc1,0x25,0x63,0x25,0x97,0x8c, + 0x5a,0xb5,0x25,0xac,0xb6,0xda,0xc8,0xba,0xe3,0x0a,0x57,0x74,0x99,0xf5,0xf5,0xa3,0x89,0x9d,0xd8,0xbe, + 0xd0,0x35,0xda,0x4c,0xfa,0x5e,0x12,0x0e,0x75,0xd1,0xa9,0x2b,0x77,0xb1,0xae,0x50,0x00,0x4c,0x3a,0x57, + 0x79,0xc5,0xfc,0x3a,0xaf,0xc6,0xd7,0x09,0x2f,0x32,0xcd,0xe5,0xc8,0x40,0xc0,0x66,0x53,0x50,0x5f,0x19, + 0x66,0xa4,0x4a,0x82,0x00,0x7e,0xa2,0xa2,0xd4,0xfd,0x42,0xba,0x6f,0x3e,0xea,0x51,0xcc,0xb7,0x41,0x58, + 0x50,0x8b,0xb4,0x1b,0xf7,0x1c,0x58,0x83,0x89,0xd0,0x4e,0x35,0x7b,0xef,0xe7,0x55,0x1b,0x26,0x09,0x8d, + 0xf8,0x7a,0xc6,0x02,0xbd,0xe2,0xd0,0x7a,0x00,0x70,0x23,0xb9,0xa5,0x04,0x04,0x85,0xcd,0x61,0xad,0xb1, + 0xf5,0x6b,0x27,0x37,0x3c,0x37,0x19,0x0f,0xe7,0x57,0xe8,0x00,0x73,0xd7,0xab,0x66,0xd7,0x61,0x91,0x41, + 0x13,0x66,0x65,0xec,0xf3,0x01,0x2c,0x14,0xd8,0xe9,0x17,0x47,0x11,0x97,0xe5,0x3f,0x11,0x7d,0x92,0x48, + 0xbe,0x8a,0x5c,0x70,0xb3,0xb9,0xe3,0x69,0xf9,0x81,0x77,0x67,0x48,0xcd,0x36,0x82,0xbd,0x35,0xdf,0xd9, + 0x8c,0x60,0x7c,0x31,0x89,0xe6,0x62,0x6c,0x5d,0xf7,0x51,0xf0,0xc6,0x9c,0xb7,0x8e,0x84,0x65,0x4b,0xe5, + 0x68,0x57,0x97,0xc3,0xf5,0x28,0x03,0xd0,0x11,0xe5,0x35,0x57,0xb9,0xc9,0x88,0x38,0x63,0x59,0x87,0x5e, + 0x7d,0x3e,0xce,0x2d,0xdb,0x36,0x51,0x89,0xe3,0x1e,0x6b,0xbc,0xe3,0x13,0x8b,0x72,0x20,0xf8,0xf2,0x3d, + 0x68,0x83,0x18,0x84,0xd2,0xf3,0xe4,0x8d,0xdd,0x29,0xec,0x4d,0xa1,0x69,0x5d,0xf7,0x11,0x53,0xab,0x6c, + 0xfd,0xd1,0x09,0x91,0x5b,0xcd,0xf6,0x32,0x71,0xb8,0x8d,0x03,0xaa,0x21,0xe5,0x37,0xc1,0xc5,0xbe,0xcf, + 0xdc,0xab,0x23,0xf1,0x68,0x02,0xc4,0x96,0xd6,0x38,0x6b,0x55,0xbb,0xe3,0x80,0x69,0x77,0x60,0x77,0x53, + 0xc3,0xf9,0x47,0x15,0x4d,0x11,0xf8,0x51,0xae,0x70,0x46,0x3e,0x42,0x6d,0x7a,0x35,0x17,0x54,0x18,0x5b, + 0x15,0x46,0xab,0x26,0x61,0x54,0x85,0x3f,0xe7,0xec,0xd6,0x8f,0x5d,0x9e,0x4b,0xaf,0x47,0x34,0x62,0x88, + 0xf3,0xb4,0xc7,0xb7,0xbd,0x92,0xe7,0x60,0x8f,0x7d,0xf7,0xf9,0x6d,0xe9,0x89,0x40,0xe9,0x55,0x3e,0xfa, + 0x35,0xf5,0xaf,0xf2,0x20,0xfc,0x3a,0x65,0x6e,0xbd,0x66,0x16,0xac,0xf3,0x37,0xe5,0xb0,0xa0,0xf4,0x67, + 0x0a,0x17,0xbe,0x71,0x59,0x3d,0x01,0xd1,0x00,0x84,0xc5,0xf1,0x7c,0x92,0x29,0x0e,0xab,0xe0,0x86,0x56, + 0xb6,0x10,0x7a,0x22,0x78,0x80,0xab,0x26,0x43,0x2c,0x5b,0x42,0x62,0x0a,0x2b,0x5d,0xa5,0xc9,0xab,0x16, + 0xfe,0xca,0x8d,0x86,0xe2,0x3a,0xfa,0x07,0xbc,0xaa,0xd4,0xee,0x90,0x87,0xba,0x80,0x5c,0xc6,0xac,0xe5, + 0x12,0x4a,0xd7,0x7d,0xe3,0xfd,0xdb,0xb9,0x68,0x0a,0x7a,0xd0,0x99,0xa0,0x0e,0xa6,0xfd,0xa2,0xa6,0xbc, + 0xcd,0xe9,0x35,0xbd,0x5f,0x9b,0x5a,0x74,0x74,0xeb,0xbd,0x9d,0xe2,0x7d,0x06,0x8d,0x3e,0x18,0x24,0xc5, + 0x5a,0xa4,0x05,0xbd,0xc4,0x2a,0x7f,0x93,0x64,0x65,0x58,0x6e,0x39,0x32,0x50,0x30,0x4a,0x0c,0xd9,0x08, + 0x2b,0xd0,0xbb,0xca,0x29,0x85,0x49,0x32,0x2f,0xa6,0x18,0x08,0x49,0x3c,0xc8,0x9d,0x16,0xed,0xdb,0x50, + 0x60,0xb6,0xaa,0xd7,0xd4,0x82,0xf1,0x38,0xa9,0x61,0x93,0x41,0x1a,0x4a,0xe3,0x4e,0x63,0xf7,0x6c,0x25, + 0x42,0x3f,0x16,0x6c,0x10,0xbe,0xe3,0x26,0xbe,0xbd,0x4d,0x9b,0x85,0x95,0xb5,0x75,0x0b,0xf7,0x8e,0xd9, + 0x3c,0x82,0xd8,0x15,0xdf,0xc0,0x26,0xe2,0x18,0x6b,0x41,0x12,0xa4,0xc1,0x97,0xe9,0xef,0x09,0xcb,0x71, + 0x60,0x0a,0x95,0x28,0xc8,0x74,0xde,0xe6,0xd1,0x3f,0x73,0xe0,0x09,0xe7,0xba,0x09,0xb4,0xc4,0x3e,0x6e, + 0x49,0x77,0x64,0xb3,0xf6,0x9c,0x81,0x09,0x8f,0xb8,0x92,0xd1,0x25,0x23,0x3a,0x5b,0x13,0x75,0x97,0x9a, + 0x9a,0xea,0xcd,0xec,0x63,0x67,0xcb,0x0b,0xb1,0x33,0xfe,0xde,0x54,0x1f,0xcb,0x53,0x58,0x26,0x68,0x45, + 0x51,0x6a,0x0c,0x2a,0x3a,0xf8,0x3b,0x47,0xe4,0xaf,0x45,0xe6,0xb3,0x31,0x15,0x18,0xa0,0xfd,0xdc,0x3e, + 0xef,0x9a,0x80,0x5a,0x03,0x50,0x56,0x83,0x32,0x71,0x21,0xb4,0x57,0x68,0xeb,0x3a,0x88,0x8b,0x37,0x2c, + 0x09,0xd0,0x4c,0x6d,0x1f,0x6a,0x7d,0xc6,0x10,0x30,0x51,0x8b,0xda,0xa8,0x0c,0x61,0x04,0x29,0x61,0x80, + 0x40,0x31,0xef,0x68,0x82,0x02,0xfc,0xa7,0x4e,0x2c,0x9e,0x12,0xab,0x05,0xea,0x5e,0xa2,0xc9,0x0a,0x0f, + 0xf8,0x98,0xa3,0x02,0xd5,0x86,0x60,0x78,0x31,0x58,0x65,0xec,0xa5,0x19,0x28,0xcd,0x43,0xdb,0x4f,0x63, + 0xb5,0xe0,0xca,0x38,0x39,0x7e,0x68,0xdb,0x6f,0xa0,0x09,0x4f,0xad,0xed,0x63,0xeb,0x0c,0x20,0x0f,0xe1, + 0x77,0x45,0x99,0xa5,0x23,0x6c,0x6f,0xd7,0x62,0xef,0x84,0x89,0x77,0xa2,0xb3,0xe7,0x8f,0x72,0x9a,0x68, + 0xbe,0x07,0xa8,0x03,0x4e,0x13,0xea,0x8c,0xa3,0xe6,0x47,0xd3,0x5e,0x7e,0x3f,0xae,0x3d,0x6b,0x95,0xad, + 0x4c,0xf0,0xa4,0xc4,0x07,0x16,0xb5,0x0c,0xab,0xb8,0x5b,0x5a,0x66,0x60,0x9e,0x6e,0x89,0x0e,0x6d,0x80, + 0x8b,0xf6,0x67,0xd0,0x9a,0x47,0x5b,0x14,0x9b,0x23,0x17,0xef,0x7f,0x36,0xed,0x49,0x46,0xb4,0xb9,0x65, + 0xd0,0x28,0x41,0x18,0x90,0xc6,0x14,0x51,0x76,0x01,0xf0,0x56,0xfa,0x66,0x73,0xaf,0x91,0xcc,0x6e,0xdb, + 0xd9,0x65,0x84,0xc6,0x2e,0x60,0xcd,0x6c,0x4b,0xf0,0x47,0xcc,0x04,0x8e,0x03,0xd2,0x92,0x76,0xa2,0xea, + 0x3a,0x5a,0x31,0xdc,0x77,0x97,0xcb,0x06,0x73,0xf7,0x13,0xd7,0xd5,0xa3,0xca,0xc0,0xd0,0x27,0x0c,0x7c, + 0xc3,0x7f,0x6d,0x61,0x2a,0xff,0x96,0x35,0xe1,0x30,0x06,0x70,0x0b,0x75,0x62,0x95,0xc6,0x59,0x98,0x9c, + 0x65,0x6c,0x78,0xa4,0x65,0xc5,0x37,0x74,0x0c,0x10,0x77,0xac,0x8d,0x30,0x73,0x13,0xba,0xb6,0x75,0x5d, + 0x42,0x1f,0x5a,0x29,0xdb,0x66,0xb0,0x3f,0xbb,0xae,0x12,0x3f,0xc1,0x38,0x94,0x6f,0x18,0x65,0x56,0xd0, + 0x1c,0x64,0xd3,0x4a,0x71,0x07,0x54,0xc8,0x0d,0x54,0xf3,0x4c,0xf3,0x93,0x51,0x1e,0xa6,0x81,0x71,0x84, + 0xba,0x45,0x65,0x99,0x91,0x9b,0xb3,0x23,0x1f,0xfd,0x1c,0xd5,0xd7,0x4d,0x7c,0x1f,0x6e,0x2e,0xca,0x6d, + 0x66,0x08,0xd3,0x1a,0xe6,0xcb,0xf0,0x19,0xe9,0xde,0x43,0xb5,0x7a,0xe7,0x7c,0xdc,0x6c,0xc4,0x80,0xd4, + 0x2d,0xef,0x88,0x64,0x10,0xc5,0xb6,0x97,0x05,0x9e,0x6e,0x08,0x1b,0x9d,0x8e,0xf0,0x3a,0xa2,0x9b,0x49, + 0xa1,0xe3,0x2f,0x86,0x47,0xfc,0x78,0x22,0xae,0x80,0xca,0xe8,0x51,0xce,0xe1,0xcf,0x8d,0x9c,0xbe,0x1c, + 0x24,0x45,0x91,0x13,0x0b,0x91,0xd2,0xde,0xa9,0xd2,0x55,0x19,0xe5,0xaa,0xd4,0x48,0xe8,0x06,0xda,0x1c, + 0xe9,0x32,0x09,0x13,0xa5,0x9f,0x5e,0xe5,0x5f,0xe9,0xa9,0x2a,0x3b,0xb4,0xf9,0x3b,0x0c,0x60,0x77,0xae, + 0x03,0xb4,0x0f,0x05,0xc2,0xf7,0x7c,0x07,0x47,0x7c,0x21,0x2f,0x81,0xbe,0x93,0xea,0x15,0xb5,0x71,0x42, + 0x0e,0x37,0x67,0xf6,0x2a,0x62,0xa4,0x8d,0x92,0xdc,0xb4,0xa0,0x4f,0x07,0x22,0xc3,0x2e,0x3c,0xa7,0x19, + 0xf6,0x12,0x8e,0xf7,0xc4,0x9a,0x1e,0x32,0x93,0x02,0xca,0x9e,0xb0,0xaa,0xc6,0x8a,0xdb,0x31,0x6b,0xfb, + 0xa0,0x19,0xa2,0x2e,0x6a,0x70,0x9b,0xd6,0xc8,0xa3,0xbe,0xa2,0x8b,0xdb,0x29,0x4d,0x7d,0x3d,0x27,0x60, + 0x0a,0x60,0x67,0x0a,0xfd,0x04,0xb4,0x1f,0x11,0x6c,0xe2,0x4a,0x63,0x1b,0xf8,0xbf,0xe7,0xc1,0x60,0x77, + 0xf2,0x28,0x5b,0x1c,0xed,0xed,0xc1,0x93,0xfd,0x45,0xe6,0xe3,0xaa,0x29,0x73,0xdf,0xe1,0xf1,0x29,0xee, + 0xb4,0xc6,0xf9,0xc2,0xb5,0x18,0xe3,0x30,0xb7,0x56,0xc7,0x84,0xda,0x4e,0xe3,0xa8,0xc3,0xb2,0xca,0x64, + 0xff,0xb0,0xd1,0x15,0x70,0x1f,0x1b,0x27,0x71,0x33,0x50,0x27,0x6d,0xd8,0x7e,0x12,0x7d,0xe9,0x26,0x99, + 0x07,0x13,0x85,0x79,0x37,0xb2,0x68,0x23,0xe4,0x38,0xbb,0x35,0xc8,0xf4,0x74,0x9b,0xed,0x09,0x4a,0x51, + 0xce,0x1f,0xde,0x8e,0x01,0x2b,0x67,0xf2,0x4a,0xd7,0x31,0x08,0x8b,0xc0,0xfb,0x8b,0x90,0xac,0x36,0x6a, + 0x02,0x13,0x0c,0x45,0x0c,0xb1,0x82,0x75,0xc5,0xb5,0xe7,0x78,0xee,0x72,0xbb,0x52,0x30,0x29,0x69,0x26, + 0x49,0xb8,0x58,0x2e,0xbf,0x63,0xb2,0x9a,0xaf,0xab,0x86,0xc7,0xb8,0x9e,0x93,0xf4,0x7e,0x2b,0x3e,0xd1, + 0xb2,0xb6,0xeb,0xd2,0x72,0x27,0x5d,0x1b,0x6f,0x32,0xf3,0xef,0xae,0x19,0xa6,0x59,0x46,0x6e,0xbc,0x4d, + 0xc0,0x8d,0xde,0x4d,0xb7,0x70,0x29,0x7e,0xaf,0x20,0x29,0x43,0x1c,0x2b,0xb3,0x35,0xc2,0xcc,0xd9,0x27, + 0x86,0x84,0x43,0xaa,0x79,0xdc,0xea,0x48,0xef,0x20,0xa9,0xf4,0x0e,0x80,0xea,0x59,0x0b,0xdc,0x87,0x66, + 0xbd,0x08,0x2b,0x64,0xbb,0xbb,0xc3,0x9a,0xec,0xa7,0xb1,0x76,0xe4,0xc3,0xe6,0x6d,0xc6,0x96,0x4d,0xc3, + 0x3d,0x8d,0x89,0xde,0xb6,0x41,0xcb,0x28,0xc1,0x93,0xf8,0x61,0xf5,0x3a,0xcb,0x7d,0x34,0xd8,0x8d,0x75, + 0x26,0xd1,0x1d,0x67,0x84,0xc5,0xf4,0x47,0x41,0x74,0x23,0xf9,0x19,0xe8,0xac,0x51,0xe2,0x77,0x86,0x99, + 0x95,0xd2,0x90,0x0b,0xe3,0x77,0x10,0x5f,0xce,0x46,0xf2,0x48,0x9b,0x92,0xf8,0xdc,0x9f,0xd6,0xc9,0x93, + 0x93,0xbf,0x67,0x28,0xbd,0x6d,0x05,0xa1,0xa6,0x6e,0xad,0x09,0x40,0x00,0x82,0xd4,0xb5,0xa1,0x43,0x2b, + 0x48,0x9f,0x3b,0x7a,0x86,0xbb,0xf6,0x9c,0x6d,0x96,0xf4,0x13,0xa3,0x30,0xdf,0x1b,0x5f,0xad,0x93,0xc3, + 0x94,0xda,0x99,0xf4,0xbc,0x3e,0xfc,0x50,0x1e,0x1c,0x34,0x32,0xf0,0x91,0x3e,0x7d,0xe3,0x3a,0xda,0x4e, + 0x5a,0x01,0xf1,0x84,0xe9,0xda,0x99,0xa8,0xaa,0x2e,0xe1,0xe2,0xa0,0x2b,0xbd,0x06,0xd8,0xb7,0x97,0x8d, + 0xeb,0xd4,0x56,0x94,0x3d,0x84,0xd9,0xb3,0xb1,0x25,0x9c,0xca,0x52,0x37,0x3e,0xb8,0x88,0x02,0xed,0xa5, + 0xbe,0x25,0xfe,0x20,0x71,0x80,0x20,0xb0,0xfe,0x04,0xb2,0x4f,0xef,0x66,0xa8,0xf1,0xa5,0xfc,0x63,0xf6, + 0x02,0x0b,0x26,0x0c,0x67,0x29,0x06,0xe9,0x44,0xd6,0x36,0x15,0x5a,0x39,0x71,0x94,0xb2,0xa9,0x61,0xb8, + 0xb3,0xfd,0x2b,0x0e,0x35,0x0f,0x87,0xc9,0xc8,0x16,0xde,0x75,0x2a,0x64,0x91,0xe0,0x7b,0xb3,0x2b,0x1f, + 0x6d,0x9e,0x74,0xb5,0x49,0x89,0xc0,0x23,0x69,0x24,0x8f,0xea,0x86,0x28,0x96,0x98,0x0e,0xbb,0x42,0xec, + 0x93,0xca,0x30,0x75,0xbc,0x81,0xe6,0xb5,0x11,0x37,0x56,0x44,0x37,0x6a,0x61,0xa0,0x6a,0xa8,0x64,0x19, + 0xd9,0x9c,0x56,0x5f,0xd8,0x38,0x36,0x91,0xe3,0xe4,0x16,0x63,0x94,0x08,0x81,0x0a,0x07,0xf1,0x39,0xc4, + 0xd8,0x0a,0x63,0x4c,0x46,0x70,0xe5,0x1d,0x8c,0xb2,0x07,0x27,0xa3,0x93,0xf0,0x38,0x3c,0x09,0xab,0x11, + 0xe7,0xb9,0x4c,0x51,0xf4,0x6e,0x10,0x1e,0x9b,0x70,0xaa,0xf0,0xbb,0xa5,0xef,0x87,0x26,0xa3,0x8c,0xa5, + 0x40,0xcc,0x69,0x85,0xce,0xda,0xc6,0x0e,0x14,0x30,0x6b,0xca,0x61,0xbf,0xdb,0x5c,0x6a,0xc3,0xed,0x7b, + 0xe9,0x0a,0x9d,0x1c,0x50,0x50,0x86,0xaa,0x12,0x72,0x8a,0x98,0x98,0xfb,0x3b,0x60,0x92,0x1a,0x7a,0x3d, + 0x97,0x70,0x3c,0xb8,0x6c,0x30,0xd1,0x4a,0x72,0xe3,0x96,0x22,0xb2,0x31,0x35,0xf4,0x95,0x04,0x1a,0x63, + 0xca,0x26,0x0f,0xa6,0x84,0x71,0xd6,0x51,0xac,0x16,0x02,0xd4,0xf0,0xd3,0xc8,0xde,0x47,0x73,0x90,0x32, + 0x23,0xa6,0x6a,0x4a,0x26,0x6e,0x14,0xa7,0x84,0x9c,0xc2,0x8f,0x9a,0xd6,0x57,0x6b,0x33,0xe9,0x45,0x33, + 0x44,0x01,0x13,0x87,0x4b,0x76,0xb0,0x0d,0x27,0xcf,0xda,0x1d,0x9c,0xcd,0xb2,0xae,0xdd,0xfb,0x2e,0x59, + 0xdd,0x17,0x22,0xbf,0x0e,0x99,0x47,0x62,0x5c,0x9d,0xd5,0x16,0x8c,0x67,0x02,0x41,0xec,0x15,0x6d,0x1f, + 0x3b,0x7f,0x20,0x09,0x5b,0x5d,0x8f,0x83,0x4d,0xf8,0x02,0x1b,0x92,0x12,0x9c,0x6b,0xb5,0xa9,0xb9,0xe6, + 0xa8,0x7c,0x76,0x0c,0x09,0x4f,0x81,0x7c,0x68,0xa6,0x44,0xa9,0xe7,0x26,0x13,0x44,0x89,0x34,0x83,0x9a, + 0x1c,0xca,0x82,0xda,0x3b,0x0f,0xe5,0xae,0x8a,0x77,0x7a,0x46,0xdb,0xf1,0x93,0x88,0x0a,0x6a,0x26,0x49, + 0xdd,0x44,0x22,0x96,0x16,0x76,0x8d,0xba,0x42,0x64,0x6f,0xd4,0x21,0x25,0x14,0x96,0xd3,0x4e,0x81,0x1b, + 0x8d,0x18,0x1c,0x54,0xc1,0x91,0x99,0xa5,0xb2,0xcd,0xa6,0xac,0x59,0x5b,0x51,0x99,0x70,0xf9,0xd7,0x0c, + 0xbe,0x7e,0xdc,0x84,0x9a,0x0c,0x9d,0xd6,0x6d,0xaf,0x6d,0xdb,0xd3,0x9d,0xb6,0x9d,0x96,0x01,0xe7,0xc6, + 0x15,0xdc,0x96,0x75,0x9f,0x6a,0x35,0x38,0xe2,0x9e,0xb7,0x44,0x85,0x8b,0xe9,0x48,0x66,0x7d,0x93,0x81, + 0x6b,0xaf,0x35,0x23,0xcc,0x62,0x2c,0x5d,0x76,0x21,0x6b,0xaf,0x6a,0x31,0xda,0x23,0xc2,0x82,0x57,0x13, + 0x62,0x6f,0xdf,0xcb,0xf2,0x8a,0x4e,0xaa,0xb4,0xac,0x7a,0xfa,0x18,0xe9,0xa5,0xda,0xd3,0x0f,0x00,0x97, + 0xd2,0xec,0xbb,0x07,0x95,0x63,0xf6,0x30,0xdd,0x2c,0xd4,0x2c,0x00,0xba,0xa0,0xa7,0x1b,0x95,0x12,0x6e, + 0x60,0x89,0x44,0x20,0x51,0x76,0xd2,0x0e,0x39,0x88,0x8f,0x36,0x90,0x61,0x1b,0x0f,0x8e,0xe8,0xe0,0x45, + 0xd0,0x12,0xde,0x37,0x2c,0x7f,0xa8,0x2e,0xe0,0x8f,0x46,0x03,0x25,0x5f,0x0c,0xd3,0xbe,0x25,0x1a,0xe0, + 0x06,0x9f,0x42,0xc4,0xb9,0xd5,0x08,0x10,0xc9,0x40,0x7f,0x44,0x6d,0x8b,0xf4,0x9f,0x68,0x83,0x5c,0x2a, + 0x20,0xfe,0xc0,0x54,0x40,0x5b,0x94,0x2b,0x30,0x4b,0xbf,0xd9,0x4c,0x39,0xb2,0x8c,0x89,0xda,0x92,0xda, + 0xb9,0x84,0x13,0xa4,0x4a,0xcb,0x50,0x4d,0x48,0x3c,0x7f,0x49,0x2b,0xcd,0xf3,0x1a,0x0c,0x4c,0x4c,0xf8, + 0xa5,0xa2,0x0d,0x6c,0xb8,0xa8,0xdd,0x4d,0x57,0x38,0x34,0x7c,0x05,0x2f,0xab,0x26,0x72,0x3c,0x0e,0xdf, + 0x76,0x5c,0x10,0xf8,0x96,0x67,0x5f,0x8c,0x3a,0x5b,0xc2,0x42,0x28,0xa2,0x85,0x02,0x26,0xc1,0xcc,0x5e, + 0x5d,0x37,0x76,0xaa,0x58,0x4a,0x69,0x22,0xd1,0xf7,0x4c,0x80,0xde,0xde,0x7f,0x60,0xec,0xff,0x81,0xf5, + 0xba,0x3a,0xac,0x7a,0x75,0xdc,0x6c,0x2d,0x1e,0xd7,0x2b,0x5c,0xae,0x57,0x20,0x4b,0x7a,0x62,0xa6,0x23, + 0x96,0x6a,0x8d,0x80,0x1e,0xbc,0xe5,0xeb,0x93,0x57,0x78,0x3c,0x3c,0xe9,0x5d,0xe3,0xd1,0xc2,0x79,0x56, + 0x0b,0x11,0xd4,0x2e,0x34,0x1d,0x99,0xe2,0x1d,0x8a,0x62,0x1e,0xb6,0x00,0x74,0x00,0x7b,0x9f,0x9f,0x84, + 0xf2,0x7b,0x4f,0x7e,0x3f,0xfd,0xab,0xfc,0xde,0xfb,0x54,0xff,0x7e,0xae,0xd3,0xff,0x1e,0xda,0x00,0x64, + 0x52,0xe0,0x33,0x9d,0x41,0x17,0xf8,0xf4,0xb3,0xd0,0xa8,0x17,0xcf,0xa0,0xea,0x2e,0xb9,0xee,0xdd,0xd5, + 0xd5,0xcb,0xcf,0xc9,0xb1,0xfe,0xd5,0xad,0x9d,0xfc,0x55,0x27,0xfc,0xf5,0xb3,0xbb,0x7f,0xd3,0x79,0xfe, + 0x7e,0xd7,0x14,0xa2,0xa7,0x7b,0xa6,0xd2,0xeb,0xd2,0xb3,0x17,0x7f,0x0f,0xa2,0xcf,0xff,0x46,0x2c,0xcb, + 0xfd,0xe8,0xe4,0xee,0xdd,0xcd,0x86,0x5e,0xff,0xfa,0x19,0xbf,0x7e,0x7e,0x3c,0xd2,0x8d,0x87,0x94,0xf8, + 0xe9,0xe7,0x9c,0xf8,0xd9,0xdf,0x46,0x9e,0x18,0x42,0x78,0xa1,0xc7,0xd7,0x3e,0x1d,0x01,0x49,0x30,0x4d, + 0x72,0xd6,0x69,0xb8,0xf0,0xbd,0x63,0x6f,0xcf,0x09,0x5e,0x7c,0x0c,0x19,0x5a,0x5a,0x7e,0x1f,0x7f,0x2f, + 0x41,0xd9,0x08,0xe1,0x26,0xea,0x2b,0x13,0xad,0xae,0xf3,0xce,0xad,0x39,0xed,0xa6,0xef,0xb6,0x52,0xfd, + 0xc9,0x2a,0xf3,0x9c,0x50,0x0b,0xf7,0x3e,0x85,0x58,0xe7,0xe0,0xe0,0xde,0xe7,0xf8,0x1d,0x55,0xa1,0x0d, + 0xe3,0xa6,0xe8,0x3b,0x58,0xc1,0xd0,0xfb,0xc4,0xeb,0x27,0x26,0x00,0xba,0xf8,0xb7,0xba,0x32,0xb8,0xb0, + 0xe6,0xca,0x8c,0xef,0x0d,0x68,0x2a,0x8c,0x85,0xec,0xeb,0x69,0x4f,0x79,0x9e,0x5a,0xec,0xe6,0xbf,0x88, + 0xcb,0xe7,0xd7,0x99,0x09,0xb4,0xa7,0xde,0x45,0x5d,0x04,0xea,0x93,0xac,0x5a,0x3a,0xc1,0xc2,0xf0,0x3a, + 0x78,0x8c,0xc8,0x36,0xe9,0x65,0x42,0xcc,0xc3,0x65,0x5c,0xa9,0xb3,0x8f,0x2e,0x28,0x5e,0xfc,0x74,0xb1, + 0xf3,0xe8,0x46,0x1c,0x6b,0x3c,0x6a,0x05,0xa9,0x6c,0xf8,0x34,0x72,0x19,0xc0,0x6a,0x80,0xdd,0x16,0xc9, + 0x0f,0xdf,0x23,0x9e,0x9d,0xe1,0x71,0x74,0xb3,0x0d,0x4d,0x44,0x22,0xc6,0x09,0x37,0x36,0xb3,0x45,0x97, + 0xd4,0xa3,0x67,0x3a,0x5d,0x0a,0x05,0xe6,0xb8,0x43,0xa0,0xc5,0xa1,0x49,0xed,0x74,0x7a,0x93,0x10,0xb5, + 0x90,0x28,0x87,0xf0,0xa9,0xd8,0x98,0xc0,0x3d,0x8c,0x92,0x8e,0x08,0x8c,0x12,0xd2,0x14,0x95,0xb2,0xef, + 0xe0,0xa7,0x8c,0x24,0x9e,0x25,0x65,0x19,0x2f,0xd8,0x77,0x8e,0x9c,0x7d,0xfa,0xf8,0xa1,0x66,0xc4,0xe3, + 0xd4,0x99,0x33,0x46,0x55,0xa7,0xfc,0x8c,0x5c,0x89,0xf6,0x08,0x26,0x5d,0xbd,0x46,0x12,0x0e,0x11,0x68, + 0x2a,0xfb,0x81,0x93,0x99,0x75,0x24,0xa6,0x45,0x7a,0x9e,0xe0,0xd3,0x23,0x98,0xfa,0x70,0xf4,0x21,0x66, + 0xda,0x24,0x9b,0xc9,0x21,0xce,0xe0,0xb6,0x75,0x3c,0x0e,0x3d,0x85,0x32,0x57,0xbc,0x02,0x45,0x9e,0x57, + 0x26,0xc8,0x3d,0x9e,0x05,0xe9,0xed,0xa6,0x34,0xe6,0x9a,0xaf,0x4f,0xb9,0x2f,0xc8,0x10,0xb5,0xf3,0xea, + 0x95,0x1a,0xcc,0x89,0x3e,0x3b,0x27,0x46,0x46,0x26,0x67,0x27,0x5b,0xeb,0xbb,0x29,0x55,0x12,0x63,0x98, + 0x89,0xfe,0xe9,0x92,0x8d,0x14,0x7e,0x66,0x55,0xf0,0x76,0xe1,0xce,0x6c,0xec,0xa8,0xb7,0x09,0x01,0xc5, + 0x07,0x21,0xa0,0x00,0xbd,0xb8,0x0b,0x01,0x76,0x79,0x79,0x4d,0xcb,0xa8,0xe8,0x5e,0x4c,0x5c,0xb0,0x3f, + 0x33,0x13,0xfb,0x3f,0xb6,0xa6,0xca,0x39,0x2c,0xf4,0xb4,0xbd,0xcb,0xf8,0x9a,0xcf,0xbe,0xf0,0x5d,0xb8, + 0xf8,0x05,0xe4,0xf9,0x6d,0x74,0x68,0xbf,0xee,0x90,0xcc,0xbe,0x1f,0x58,0x47,0xf1,0x7f,0x1e,0x2e,0x46, + 0xbe,0x0b,0xe5,0x3b,0x50,0xf1,0xe7,0x87,0x0b,0xde,0x5c,0x6e,0x49,0x70,0xc9,0xaa,0x03,0x2c,0x98,0x1e, + 0x35,0xde,0x77,0xe0,0xd4,0xdd,0x76,0x6e,0xc6,0x7f,0xa9,0x3b,0xc6,0x0f,0xdc,0xe3,0x76,0x98,0x5a,0xe3, + 0x08,0x4e,0xba,0xe6,0xef,0x14,0x6e,0xf4,0x68,0xb0,0xce,0xde,0xd7,0xb2,0x16,0x7c,0xee,0xd4,0xd1,0x01, + 0x65,0x8d,0x6a,0x75,0x9a,0xdf,0xaa,0xc1,0xf9,0x64,0x6a,0x68,0x00,0x46,0x37,0xb8,0xb4,0x6b,0x69,0x7c, + 0x74,0x7b,0x22,0x61,0xe3,0xb6,0x5b,0x75,0x6d,0xbc,0xb6,0x22,0xb5,0xf6,0xe6,0x18,0x2f,0x61,0xe8,0x2d, + 0x8e,0x15,0x59,0xeb,0xed,0xc6,0xf5,0x64,0xab,0xb5,0x02,0x42,0x71,0x99,0xb8,0xe5,0x88,0xe4,0xcd,0x1c, + 0x86,0xe2,0xc2,0xc5,0xa1,0xa1,0x47,0xdd,0x0c,0x5b,0xc5,0xb7,0xe1,0xa5,0x4e,0x1c,0x33,0xb5,0x67,0x9d, + 0xc9,0x6e,0x77,0x3c,0x39,0x36,0x48,0x7b,0xee,0x16,0xe4,0x13,0x12,0x3e,0x03,0x51,0x64,0x6b,0x6b,0x33, + 0x7c,0x77,0x00,0x47,0xe2,0x69,0xf8,0xb9,0x08,0xf6,0x3f,0xe8,0x3a,0x56,0x87,0x85,0x8b,0xe4,0xc7,0x86, + 0xdf,0x25,0x7a,0xde,0x71,0xe4,0x2a,0x02,0xf8,0x42,0x08,0x69,0x44,0xf3,0xd0,0x84,0xf4,0x1a,0x02,0xea, + 0x25,0x3e,0xf0,0xd8,0xd8,0x20,0x74,0xde,0x62,0xd7,0x96,0xc1,0x68,0x69,0x82,0xfe,0x1e,0x87,0xee,0xb9, + 0xb5,0x0c,0x6c,0x3a,0x6b,0x60,0xb7,0x78,0x26,0xd7,0x1f,0x1f,0xb6,0x51,0x1d,0xc0,0xbc,0x26,0x79,0x9c, + 0xa0,0xe6,0xdc,0x05,0x43,0xf5,0xd4,0x71,0xcf,0x0f,0x0e,0x3c,0xbe,0x4c,0xdc,0x6e,0x6b,0x91,0xfe,0xc1, + 0x41,0x6e,0x5b,0x26,0xa6,0x74,0x45,0xb5,0xfb,0xde,0x93,0x79,0x4f,0x46,0xd1,0xc3,0x6c,0xf7,0xd2,0xb2, + 0x07,0x27,0x33,0x3d,0x3a,0x03,0x7a,0x3c,0xd7,0xbd,0x44,0x44,0xa6,0x65,0x0f,0xe6,0x0f,0xbd,0x8b,0xf8, + 0x2a,0x91,0x02,0x92,0x9f,0x32,0x0f,0x88,0x0b,0xea,0x18,0xfb,0x2e,0x4e,0x07,0x5b,0xb0,0x26,0x06,0x10, + 0xce,0x43,0xdb,0x33,0xd2,0x75,0x02,0xac,0xe1,0xf9,0x6c,0x49,0x7f,0xa0,0x62,0x79,0x4b,0x7d,0xc2,0xdb, + 0xaf,0x46,0x1e,0xcc,0xa7,0xda,0xd3,0x12,0x52,0x6a,0x32,0x5c,0x43,0xf8,0x05,0x71,0xa6,0xf6,0xfa,0xaf, + 0x52,0x15,0x0f,0x52,0x5f,0x62,0x4f,0x60,0x6b,0xbc,0x8d,0x76,0x10,0xc5,0x94,0x5a,0xa2,0xc3,0xa5,0xe3, + 0x82,0x64,0x3b,0x7c,0xeb,0xd0,0x73,0x29,0xec,0x06,0x57,0x39,0xe4,0xe1,0xae,0x9c,0xa8,0x36,0x1f,0x76, + 0x6a,0x83,0x6b,0x39,0xc3,0xa4,0x42,0x0b,0xef,0xbd,0x1a,0x7d,0xc4,0xf8,0x79,0x9e,0xab,0xd6,0x67,0xe5, + 0xcd,0xe3,0xac,0xdf,0x67,0xf9,0x8c,0x77,0xa3,0xfd,0xbf,0x16,0xb8,0x56,0x70,0xae,0xf5,0x59,0x3d,0xc5, + 0xd3,0xba,0x62,0x05,0x2e,0xf3,0x51,0x97,0xb0,0xa4,0xf4,0x20,0x36,0x16,0xba,0x1e,0x6f,0xcb,0x3a,0x2c, + 0xc3,0x20,0xef,0x47,0xa9,0xb2,0xc9,0x22,0x93,0xd8,0x17,0xba,0x3b,0x0f,0x46,0x1e,0x3b,0x1b,0x0d,0xdf, + 0xd4,0x09,0x40,0x26,0x33,0xa2,0xf4,0xd7,0xe2,0x94,0xce,0x1b,0x9a,0x2e,0x48,0xb3,0xb9,0x78,0xc4,0x8e, + 0xb7,0xa2,0x25,0xef,0xfd,0x3f,0xdc,0xd7,0x11,0xf5,0x19,0x84,0x39,0xad,0x08,0x44,0x7e,0xd4,0x64,0x10, + 0xe2,0xaf,0xe1,0x38,0x3e,0x38,0x12,0x88,0x66,0x0c,0x7a,0xb3,0xb3,0x1a,0x15,0x0d,0x51,0x75,0x56,0x33, + 0x9f,0x4a,0x82,0x4f,0xb7,0x65,0x2b,0x66,0x38,0x1c,0xa4,0x6e,0x77,0x24,0x98,0x5b,0xf3,0xc2,0xb6,0xe1, + 0xa6,0x77,0x3c,0x75,0xc3,0xb4,0xbd,0x28,0x31,0x0d,0x28,0x9d,0x18,0x86,0x2f,0xd6,0xf7,0xd2,0xe0,0xac, + 0xa4,0xff,0xa1,0xe6,0x68,0x63,0xcd,0x9c,0x8b,0xd6,0x2b,0xf3,0x6d,0xba,0x23,0x3a,0x43,0x36,0x66,0x4a, + 0x87,0xe8,0x76,0x93,0x57,0x9d,0x1c,0x07,0x93,0x46,0x01,0xd3,0x5b,0xf9,0x15,0xb5,0x70,0x5b,0x5c,0x97, + 0x22,0x1a,0x37,0xed,0xf7,0xed,0xa4,0x6e,0x39,0xdc,0xdd,0x96,0x17,0x75,0x3f,0x3a,0xfa,0xcd,0x3f,0x9d, + 0x05,0xfd,0x23,0xf5,0x86,0x1f,0xaf,0xf1,0xf8,0x88,0xa6,0xe9,0x61,0x74,0xa2,0x5e,0x46,0x77,0xd5,0xab, + 0xe8,0x9e,0x7a,0x4e,0xef,0x4f,0xa3,0x4f,0xd5,0xeb,0xe8,0x33,0xf5,0x65,0xf4,0x57,0xf5,0x22,0xfa,0x9b, + 0x7a,0x12,0xfd,0x5d,0x3d,0x06,0x43,0xff,0x78,0xfc,0x7c,0x12,0xdd,0x5c,0x97,0x21,0xfd,0x2a,0x66,0x03, + 0xc3,0xf1,0x3d,0xf5,0x68,0xa2,0xbc,0xb1,0x17,0x8e,0x9f,0x4e,0x14,0x1d,0xf2,0xe1,0xf8,0xc5,0x64,0xab, + 0x1e,0x8f,0x4f,0x74,0xce,0x13,0xfa,0x3a,0xa0,0xaf,0x77,0x3b,0x73,0xdd,0xd5,0xb9,0xee,0x36,0xeb,0x3b, + 0xd6,0xbf,0xc2,0x55,0xca,0x0b,0xb2,0xdf,0xa3,0xec,0x1f,0xca,0xa7,0xb8,0x55,0xf5,0xd0,0xb4,0xcb,0x4f, + 0xdc,0x32,0x9e,0xa4,0x6d,0x7a,0x42,0x75,0x4f,0xa9,0x3a,0xef,0x0e,0x7d,0x7a,0x8d,0x72,0x77,0xbc,0x3b, + 0xe1,0xf8,0xcb,0x7a,0x38,0xea,0x25,0x3d,0x4d,0x3c,0x54,0xf6,0x4a,0x0a,0x3e,0x61,0x7b,0x3e,0x7c,0x92, + 0xee,0xbc,0x36,0xe5,0x91,0xd0,0xc8,0xf1,0x5a,0xe7,0xf8,0x92,0x72,0x70,0xbd,0x3b,0x39,0xd0,0x90,0x2c, + 0xcc,0x57,0x6c,0xf3,0x4c,0xa4,0x5a,0xb1,0x4e,0x36,0x6c,0xcb,0xb9,0x39,0x1c,0x8d,0x4f,0x67,0x83,0x49, + 0x7f,0x73,0x87,0x7d,0x60,0xdd,0xd9,0x78,0xec,0x16,0xcb,0x0b,0x28,0x1f,0x1c,0x13,0xdd,0x82,0xb6,0xba, + 0xb1,0xd6,0xf7,0x0e,0xd6,0x62,0x28,0x7b,0x41,0x87,0xda,0xae,0x84,0xca,0xc5,0x58,0x0e,0xc2,0x82,0x0a, + 0x69,0xd2,0x21,0xcf,0x32,0x61,0xef,0x62,0x84,0xf2,0xc1,0x86,0x5b,0x47,0x87,0x27,0x74,0x34,0x3e,0xe7, + 0xb8,0x77,0x17,0x00,0x17,0xec,0x99,0x8b,0xf1,0xc3,0x49,0xc3,0xb8,0xc3,0x9c,0x53,0x19,0xeb,0xf2,0x08, + 0xf4,0xc2,0x45,0xa1,0x7c,0x80,0xad,0xfe,0xf8,0x51,0x47,0x09,0x48,0x6a,0x47,0x59,0x54,0x84,0x59,0x9f, + 0x08,0x7f,0xca,0xf4,0xb2,0x91,0x09,0x85,0x88,0x32,0x9a,0x13,0xec,0xd3,0xb7,0x57,0x8d,0x6f,0xd0,0x88, + 0x7c,0x70,0x1c,0xcc,0x0f,0x0f,0xa9,0x7b,0x4f,0x95,0x64,0xb5,0x77,0x91,0xe8,0xed,0x1e,0xae,0x3e,0xfc, + 0x2c,0x9a,0xb1,0xcb,0x3c,0x2b,0x16,0x45,0xdf,0xa1,0x8e,0x39,0xd4,0x32,0xf0,0x25,0x3b,0x8c,0x5f,0xf7, + 0xfb,0xf0,0x9f,0xc8,0xca,0x42,0xf0,0xb9,0xb8,0xc6,0x8d,0xc5,0x5e,0x8b,0x9f,0xe6,0x0f,0xfd,0x13,0xc6, + 0xd6,0x10,0x1b,0xbd,0xa6,0x53,0xf9,0x0e,0xab,0x75,0x6d,0x36,0x78,0xff,0xf2,0xe0,0x80,0xc0,0x02,0xef, + 0xd6,0x77,0x37,0x55,0x4b,0xd8,0x9a,0x2a,0xee,0x27,0xba,0x8f,0x88,0xb0,0xec,0x07,0xda,0x8a,0x6b,0x05, + 0xb1,0x18,0xe8,0x9c,0x32,0x7a,0x3c,0x5e,0x4e,0x02,0xc2,0x3b,0x9b,0x4d,0xc9,0x8a,0xa0,0x9b,0xcd,0x13, + 0xc8,0x96,0x9f,0x18,0xad,0x20,0x6e,0x13,0x76,0x2c,0xca,0x8f,0xa3,0x8b,0x71,0x4e,0x7b,0x70,0x22,0xf7, + 0xb0,0x39,0x36,0x5a,0x11,0xd9,0x29,0x2d,0x46,0x90,0x21,0xf2,0xf0,0x89,0xff,0x09,0x1a,0x15,0x44,0xd1, + 0x0b,0xeb,0x1c,0x55,0x94,0xdd,0x2c,0x41,0x6a,0x60,0x84,0x7a,0xaf,0x12,0x90,0x5d,0x5b,0xe5,0x02,0xd9, + 0x22,0xa9,0x00,0x62,0x2c,0xc8,0x6d,0x9d,0x8d,0x90,0x91,0x27,0xb5,0x83,0xd6,0xfa,0x12,0xc6,0x78,0xdf, + 0x36,0xf0,0x09,0x8f,0xb5,0x3c,0xee,0xa2,0x45,0x61,0x20,0xbc,0x1b,0xba,0x6e,0xdc,0x69,0x37,0x6a,0x72, + 0xac,0x7d,0x6a,0x53,0x33,0x42,0xd2,0xda,0x05,0x77,0x3e,0x34,0x8e,0xb7,0xe3,0x71,0x31,0x2e,0x27,0xce, + 0x65,0x07,0x94,0xcd,0x82,0x1b,0x71,0x43,0xa5,0x6d,0x13,0xe2,0x68,0xaa,0xca,0x1a,0x99,0xc6,0xb2,0x5b, + 0x9f,0xdd,0xb2,0x73,0x86,0x35,0xff,0x87,0x79,0x82,0xb6,0xac,0xbd,0x5d,0x12,0xe2,0x71,0xb3,0xf1,0x92, + 0xec,0xf0,0xc7,0x97,0x1e,0xcb,0x73,0x9b,0xbc,0x76,0xfd,0x8d,0x2d,0x92,0x34,0x8b,0xcb,0xe4,0xa5,0x0e, + 0x63,0xee,0xc8,0x80,0x24,0x1d,0x56,0x94,0x99,0x23,0xe2,0xe1,0xd4,0xa1,0x76,0x65,0x7d,0x29,0x17,0x7c, + 0xf2,0x36,0xe7,0xef,0x15,0x58,0xcd,0x81,0x7d,0xde,0x6c,0xc0,0x28,0xbf,0xd5,0x59,0x2e,0xd3,0x12,0xae, + 0x40,0xd0,0xb6,0x3c,0x89,0xc0,0xd3,0x78,0x97,0x66,0xa1,0x02,0xcb,0x16,0x1a,0xe9,0xe0,0x6a,0x23,0x87, + 0xef,0x15,0x96,0x77,0x6f,0x4f,0x9e,0x4c,0xeb,0x7a,0xa0,0xac,0x0f,0xe5,0x64,0x76,0xd3,0xa5,0x90,0x9b, + 0x62,0x5a,0xe8,0x94,0x3d,0x58,0x24,0x52,0x75,0x4b,0x1d,0x88,0xc4,0xdd,0xbb,0xe5,0x93,0xae,0xb7,0x39, + 0xa1,0xb8,0x79,0x07,0x61,0x2f,0xdf,0xdc,0x49,0x6d,0x7e,0x01,0x37,0xc0,0xf2,0x85,0xef,0xeb,0x6a,0xe2, + 0xda,0x5d,0x00,0x21,0x41,0x49,0xe6,0xfb,0x83,0x16,0xe4,0x6b,0xac,0xe2,0xef,0x61,0xb0,0xd9,0x66,0x53, + 0xf8,0x89,0x54,0xd8,0xd8,0x2e,0x12,0x4e,0xdb,0x18,0xa5,0x9f,0xc1,0x69,0xec,0x4f,0xcf,0x7c,0x73,0xdf, + 0x99,0xa9,0x26,0xd4,0x84,0x70,0xdf,0x28,0xa0,0x42,0x64,0x57,0x0b,0x48,0xc2,0x58,0x35,0xc0,0x23,0x2c, + 0x89,0x22,0x53,0x3f,0x44,0x37,0x57,0x97,0xe1,0xcd,0xb6,0x2e,0x48,0xcf,0xed,0x92,0x94,0xd4,0x2c,0x7a, + 0x53,0x73,0x78,0xdb,0x76,0x1f,0x50,0x97,0xc0,0x0c,0x7f,0x34,0xd3,0x86,0x97,0xce,0x15,0xa0,0x0f,0x5b, + 0x73,0xb8,0x3c,0x73,0x5d,0x0f,0xcb,0x60,0x3b,0xb6,0xd7,0x85,0xf1,0x05,0x2d,0xf5,0x0d,0x5b,0xef,0x90, + 0xbe,0xd4,0x60,0x4f,0xab,0x43,0x34,0x24,0x16,0x06,0xaa,0xb1,0xaa,0x9d,0x37,0xd9,0x2a,0xb7,0xd1,0x4e, + 0x76,0x7f,0xd7,0x17,0x42,0x73,0xa1,0x6b,0x75,0x33,0xb7,0xaa,0x5b,0x64,0x07,0x8d,0xca,0x5a,0x86,0x03, + 0xcc,0xed,0xb9,0x21,0x4c,0x32,0xc7,0x56,0x53,0x82,0xda,0x65,0x0f,0x0e,0x4f,0x02,0xb9,0x9f,0x9e,0x42, + 0x8e,0x09,0x05,0x49,0xbf,0xa3,0x4f,0xaa,0xdd,0x9d,0x86,0x6c,0xab,0x6d,0x5e,0x29,0x22,0xc2,0x86,0x4b, + 0x70,0x9a,0xbc,0xc1,0x3e,0x17,0xf2,0xbd,0x7d,0x54,0xdd,0x08,0x51,0xe1,0x1a,0x34,0xb4,0x26,0xc3,0xb5, + 0x6f,0xb8,0xe8,0x74,0x8a,0xdc,0x2e,0x42,0x8c,0x20,0x3b,0x41,0x6f,0x27,0xee,0x04,0xbe,0xd8,0xaa,0x9b, + 0x59,0x92,0xac,0x44,0x35,0x79,0x77,0x74,0x5a,0x8c,0xd9,0x3c,0xea,0xf7,0x6a,0xd4,0x44,0x1b,0xad,0xc6, + 0x5f,0x3b,0x27,0x4e,0x65,0x62,0x99,0x5c,0x36,0xe7,0x81,0x05,0x64,0xce,0x64,0x08,0xe0,0x3b,0xb3,0xc1, + 0x9e,0x3d,0xf6,0x89,0xfd,0x85,0x15,0x8b,0xf9,0xca,0x7e,0xf9,0x5b,0xfd,0x57,0x37,0xe9,0x25,0x91,0xea, + 0x29,0xe4,0xed,0x32,0x84,0x1f,0x50,0x31,0xed,0x77,0xb7,0xcf,0xad,0x45,0x40,0x26,0xb3,0x37,0x6f,0xc9, + 0x1a,0x6b,0x00,0xa0,0xaf,0x5a,0xc0,0x5d,0xb2,0x07,0xf0,0x1f,0xda,0xe7,0xc4,0x87,0xcb,0x37,0x2f,0x17, + 0x4c,0x35,0x8d,0xcd,0xff,0xe1,0x4a,0xdc,0x8b,0x06,0x53,0x85,0xcc,0xcb,0x07,0xc6,0x6a,0x2e,0xdd,0xeb, + 0xfc,0x65,0x52,0x75,0xec,0x3e,0xac,0x06,0xcf,0xb7,0x7e,0xab,0xa7,0xbd,0xe2,0xc6,0x9a,0x18,0xe9,0x43, + 0x8d,0x36,0x73,0x77,0x94,0xff,0xd8,0x4e,0x34,0x8b,0x99,0xce,0x68,0x64,0xf8,0xde,0x5e,0xe8,0x3c,0x6e, + 0xf6,0xee,0x46,0xed,0xb9,0xcc,0xdd,0x34,0xb8,0xf5,0xbd,0x75,0xdb,0x5c,0xcd,0x22,0xdd,0xf5,0x3b,0xa4, + 0x01,0xb2,0x77,0x22,0xec,0xf7,0xb6,0xd6,0x59,0xe2,0xf6,0xaa,0xba,0x7b,0x71,0xcb,0x0d,0x43,0x73,0xcb, + 0xbb,0xe0,0xfe,0xbe,0xe5,0x35,0x9b,0x67,0xb7,0x74,0x0b,0xd8,0xdf,0x57,0x49,0x6b,0x23,0xed,0xd6,0xd5, + 0x80,0xf9,0xf7,0xd5,0xd4,0xd8,0x4b,0xad,0x7a,0xa0,0x5c,0xa6,0xbd,0x3a,0x35,0x74,0x8d,0x88,0xb9,0x4a, + 0x6d,0x4d,0x30,0xf0,0xd6,0x72,0x7c,0x0d,0x0d,0x5a,0xe8,0x6f,0x20,0x47,0x2e,0xe4,0x99,0x2c,0x1b,0xa3, + 0x70,0x3a,0x81,0xe1,0x46,0x98,0xb5,0x1a,0x4b,0xcb,0xaf,0x5c,0x4a,0xac,0xc3,0x25,0x0e,0x8c,0xa6,0x0a, + 0xdf,0x41,0x99,0xba,0xa1,0x06,0x09,0xd7,0xae,0xb5,0x5b,0x0c,0x96,0x18,0xde,0x50,0x93,0xfc,0x3b,0xd8, + 0x77,0x1a,0xd5,0x24,0x55,0x93,0x02,0x4a,0x74,0xdc,0xdd,0x26,0xd9,0x3f,0xb5,0x2c,0xc3,0x54,0x0c,0x86, + 0x58,0x15,0xd3,0x44,0x24,0xde,0x63,0x05,0x02,0xb7,0x0d,0x47,0x3b,0xd5,0x5c,0x92,0x22,0x52,0x38,0x71, + 0x4d,0x8d,0x7c,0x5b,0xc3,0x06,0xee,0xe8,0x89,0x4d,0x1b,0xd5,0xad,0xa3,0xa9,0xe1,0x03,0xd6,0xb5,0xf5, + 0xf4,0xbf,0x85,0x5e,0xc0,0x5e,0x4a,0x7c,0x13,0x18,0x0b,0x0e,0xc7,0x79,0xf8,0x6b,0x3d,0x7c,0x98,0x8b, + 0x9a,0x10,0x2d,0x1c,0xa1,0x60,0xcd,0xc9,0xe1,0xba,0x35,0x8f,0x28,0xd8,0x86,0x01,0x37,0xa4,0x74,0x94, + 0x29,0xe8,0x38,0x8b,0xaf,0x82,0x23,0xff,0xdf,0xc2,0xf1,0xe9,0xf5,0xe9,0xe1,0xd9,0x66,0x30,0xe9,0x07, + 0x47,0x8b,0x5a,0xdb,0x7c,0x0a,0xcd,0x87,0x12,0x7c,0x6a,0xd9,0xba,0x72,0xe6,0xb9,0x12,0x75,0x8f,0x72, + 0x3c,0x45,0xbc,0x9f,0xb5,0xb6,0xee,0xf6,0xef,0x06,0x70,0x16,0xa0,0x29,0x4e,0xbb,0x9e,0xdc,0x8b,0x25, + 0xf5,0xc2,0x2b,0xe2,0x6b,0x2d,0xc4,0xd3,0xb3,0x44,0x84,0x67,0x9d,0x28,0xd4,0x78,0x28,0xee,0x11,0x74, + 0x2d,0x0d,0x58,0x83,0xc5,0x9f,0x73,0x34,0x33,0x68,0xb1,0xab,0xa3,0xde,0x97,0x50,0x68,0x87,0xc8,0x4d, + 0x2c,0xbd,0x93,0x59,0x8f,0x55,0xdc,0xb5,0x0f,0xc3,0x55,0x54,0x17,0x18,0xce,0xa3,0x95,0x0e,0x9b,0xc2, + 0x7d,0x5b,0xb5,0x8e,0x3f,0x44,0x25,0x17,0x11,0xfd,0xaa,0x7d,0x8d,0xb9,0xd4,0x13,0x49,0x0c,0x9d,0x6f, + 0x86,0xe9,0xec,0x3c,0x1a,0xe6,0x52,0xcd,0xa1,0x68,0x34,0x8a,0xad,0x49,0xf4,0x5a,0xcd,0x83,0x30,0xae, + 0x59,0xbf,0xe6,0x62,0x69,0x45,0xdb,0xe6,0x72,0x35,0x05,0xbf,0x35,0xe2,0x6d,0xce,0xa8,0x0d,0xc4,0x52, + 0x6b,0x01,0x45,0xc9,0xa8,0xd0,0x16,0x66,0x88,0x97,0xde,0x6a,0xcb,0x0e,0x79,0x07,0x43,0x98,0x0d,0xe6, + 0x6e,0x27,0xb7,0xb1,0x44,0xc1,0xaa,0xd4,0xe6,0xb3,0x12,0x68,0x02,0x84,0x11,0xfd,0xe9,0x28,0x41,0xdc, + 0xd1,0x38,0xab,0x4b,0xe8,0x80,0xf3,0xd3,0x70,0xda,0xee,0xd3,0x0e,0xa4,0xd6,0x14,0xa2,0xf6,0x3f,0xd4, + 0x56,0x33,0x3c,0xfc,0x74,0x18,0x1f,0x1e,0xf6,0x1e,0x1c,0x0f,0x03,0xa8,0xfe,0x39,0x2a,0xa9,0x71,0xff, + 0x53,0xe6,0xc3,0xf7,0xac,0x6a,0x8d,0xa7,0xaf,0x5f,0x52,0x8d,0xda,0xb4,0x3b,0x84,0x1c,0x96,0x7e,0xa5, + 0x65,0xa6,0x13,0x1b,0x8d,0xae,0x86,0x8a,0x4c,0x69,0xae,0xb3,0x7d,0x93,0x0d,0x28,0xd6,0x13,0xae,0x58, + 0xca,0x10,0x5f,0x96,0xb7,0xc3,0xeb,0xfa,0x8f,0xc3,0xab,0xd6,0x69,0x59,0x3a,0x20,0xdb,0x50,0x96,0xaa, + 0xac,0xb2,0x54,0x5e,0xdb,0xd7,0xef,0xc2,0x22,0x75,0x9f,0x50,0x47,0xa1,0xfd,0x40,0x37,0xa7,0xbd,0x89, + 0xb3,0x5b,0xd7,0x06,0x3b,0xf3,0x7d,0x02,0xfd,0x5f,0x9e,0xef,0xa4,0xa5,0x02,0x0c,0xb1,0x94,0xee,0xae, + 0x40,0x6b,0x40,0x53,0xa8,0x7b,0x5a,0xe0,0x08,0xe1,0x6e,0xe9,0xdd,0xd4,0x41,0x69,0xb2,0x51,0xb6,0x1d, + 0x4e,0x62,0xcc,0x85,0xda,0x07,0x43,0x07,0x36,0x33,0xda,0x71,0xbb,0xcb,0x96,0xdc,0xbe,0x6c,0xc0,0x33, + 0xfa,0x48,0xe8,0x5c,0xac,0xfc,0xcf,0x2e,0x96,0x4b,0xef,0xa7,0x72,0x66,0xbd,0x67,0x65,0xd0,0x9b,0x5c, + 0x15,0x2d,0x3e,0xa4,0x3d,0xca,0xfa,0xfc,0x1f,0xed,0x1e,0x29,0x89,0xa8,0xf7,0xd5,0xb3,0x6b,0xaf,0x6b, + 0xb9,0xf0,0x6d,0x53,0x0d,0x89,0x40,0xe8,0x79,0xed,0x3d,0x38,0xed,0x9c,0x60,0x6b,0x75,0x24,0xe6,0xbb, + 0x3b,0x60,0xf1,0xd9,0xb0,0xd4,0x60,0x11,0x8f,0x4b,0x17,0x2c,0xca,0xfe,0x67,0xb5,0xc6,0xde,0xa8,0x96, + 0x8a,0xa5,0xac,0x78,0x7d,0x12,0xa8,0xdc,0xd7,0x38,0xc3,0x01,0x97,0xa9,0x50,0x1c,0xd4,0xb6,0x85,0x87, + 0x98,0x8e,0xbc,0x94,0x3b,0x2c,0xe7,0x7c,0x0b,0x86,0x9b,0xbd,0x76,0x95,0x96,0xc7,0x90,0x4c,0xee,0xf4, + 0xf7,0xee,0xb0,0xd0,0xfd,0x65,0xff,0x08,0x75,0x7f,0x8b,0xfe,0x5d,0x0b,0xc6,0xa9,0xed,0xd7,0x54,0x77, + 0x2c,0xfd,0x58,0x38,0x56,0x89,0xed,0xb9,0x09,0x34,0x93,0xb6,0x67,0xba,0x8d,0x7a,0x1d,0x53,0x69,0xb1, + 0x50,0xdb,0xe9,0xf5,0xbd,0x61,0xae,0x7b,0x5d,0xc0,0xc6,0xa8,0xee,0x75,0xde,0xbf,0x67,0xae,0xd8,0x5a, + 0xd8,0xad,0x08,0x6a,0xcc,0xd6,0x04,0x50,0x96,0x26,0xe1,0x8a,0x67,0xb2,0xc3,0xe4,0x57,0xb7,0xe9,0xa8, + 0xcb,0x06,0xc3,0x81,0xf3,0xa1,0x49,0x48,0x5a,0x55,0xd2,0xd7,0x86,0xee,0x54,0x07,0xa1,0x68,0x79,0x3f, + 0x87,0xda,0x26,0x04,0x07,0xf9,0x63,0xab,0xb2,0xf2,0xf6,0xca,0xd8,0x41,0x66,0x47,0x2d,0x6d,0x09,0xcd, + 0xae,0x36,0xd7,0xc7,0x54,0x72,0x31,0x58,0x57,0xe9,0x72,0x20,0x3e,0x11,0x6f,0xed,0x6d,0xd7,0xe0,0x9b, + 0x4c,0xc2,0x07,0x46,0xdf,0x62,0x13,0x6e,0x9d,0x84,0x5b,0x2b,0x6d,0x0c,0x60,0xb7,0xb6,0xce,0xc9,0xf8, + 0xd3,0x95,0xdd,0x32,0x29,0xdd,0x83,0xd8,0x99,0x1b,0xd1,0x34,0x49,0x7f,0xb7,0xed,0x77,0x10,0x24,0x86, + 0x58,0x85,0x97,0xc1,0x94,0x00,0x16,0x48,0x9b,0xa8,0xf4,0x32,0x80,0xbc,0x13,0xc6,0xa6,0x7c,0x89,0x20, + 0xc4,0x2c,0xbe,0xc3,0x25,0x98,0xfb,0x71,0x97,0x4b,0x40,0x3a,0xac,0x0b,0xfa,0xde,0xd9,0x19,0x22,0x25, + 0x98,0x03,0x76,0x57,0x80,0x3b,0x5e,0x5b,0xfc,0x05,0x7f,0x4e,0xef,0xcd,0xc8,0x62,0xc2,0x0e,0xed,0x4a, + 0x3f,0x86,0xd2,0xb1,0x5a,0x6a,0xbe,0x79,0x47,0xc6,0x77,0x36,0xdb,0x41,0x05,0xcc,0x7d,0xd8,0x8e,0xdf, + 0x52,0xad,0x28,0x2c,0x4a,0x8d,0xee,0x75,0xc7,0xce,0x9c,0xd6,0x07,0x41,0xfb,0x28,0xbc,0x55,0x62,0xa3, + 0xb2,0xdb,0xcf,0xc6,0xe2,0xbf,0xe3,0x6c,0x14,0x17,0x85,0x89,0x3d,0x1b,0x0b,0x98,0xf8,0x37,0xe7,0x65, + 0xd6,0x49,0x9a,0xdc,0x86,0xd3,0x4f,0x6e,0xc7,0xe9,0x27,0x13,0x6d,0x58,0xe1,0xa2,0xad,0x7c,0xc7,0x4c, + 0xc9,0xd8,0x3f,0x8c,0x76,0x74,0xe9,0x61,0xa8,0x3d,0x92,0xe8,0xcf,0xb8,0xe4,0x87,0x61,0x11,0x47,0x2d, + 0x81,0x77,0x08,0xae,0x8d,0x8f,0x33,0xe7,0x1d,0x71,0x49,0xe9,0x85,0xa3,0xae,0xfa,0x52,0x90,0x03,0xae, + 0x8a,0xf9,0x52,0xf6,0x1e,0xf3,0xa5,0x4c,0xcc,0x97,0xa4,0x4c,0xa0,0x3a,0xbe,0x9f,0x4c,0x74,0x6b,0x6c, + 0xb5,0xa4,0xe1,0x11,0xc1,0xed,0x39,0x72,0x69,0x0b,0xf1,0xb8,0x12,0x85,0x0f,0xa0,0x9d,0x86,0x4c,0xe1, + 0x56,0xa4,0x73,0x4b,0x85,0x0d,0x2c,0xd1,0xae,0xa9,0x13,0xe1,0xfc,0xa9,0x8a,0x6e,0x41,0x36,0x5d,0x5d, + 0xbf,0x1d,0xd5,0x48,0xcb,0xff,0xaf,0x22,0x9a,0xf6,0x6d,0xd0,0x2d,0x68,0xa6,0x23,0x5b,0x8d,0x64,0xdc, + 0x09,0xfc,0x20,0x8a,0xc9,0x3e,0x12,0xc5,0x34,0x2a,0xfd,0x20,0x82,0x91,0xdc,0x1f,0x46,0x2f,0x2d,0x59, + 0xee,0xff,0x75,0xe4,0x92,0x7d,0x18,0xb9,0x74,0xbb,0x56,0xfa,0xff,0x91,0x4b,0x07,0x72,0xc9,0x2c,0x72, + 0xd1,0x9a,0x20,0x62,0x28,0xa0,0x45,0x40,0x29,0x11,0x7c,0xce,0xc4,0xaa,0x1f,0x02,0x9a,0xe7,0xf8,0x2a, + 0x4e,0x97,0xf1,0x79,0xba,0x4c,0xf1,0x3d,0xba,0x69,0x9e,0x97,0xe1,0xbb,0xc6,0x4d,0x60,0x78,0x86,0xa5, + 0x61,0x8d,0xde,0xe5,0xd2,0x8d,0xdb,0x0b,0x5f,0x0c,0x17,0x11,0x41,0xe1,0x15,0xc1,0x3e,0x25,0x1d,0x1c, + 0x68,0x80,0xbb,0x30,0x29,0xc6,0xc4,0x72,0xe0,0x05,0x3c,0xa2,0xca,0x54,0x23,0x21,0x99,0xba,0xfa,0xfb, + 0x8e,0x4a,0xd7,0xbd,0xf5,0xf6,0x45,0x7f,0xf5,0x86,0xa0,0x34,0xbc,0x4d,0xe0,0x8a,0x2c,0x70,0x62,0x93, + 0x45,0x17,0xb7,0x54,0x99,0x35,0xaa,0xac,0x76,0xeb,0xdb,0xbd,0x1f,0x73,0x6f,0x7e,0xfe,0x5b,0xc0,0x4f, + 0xeb,0xad,0x1a,0x8b,0xec,0x9a,0x9f,0x22,0xb6,0x85,0xb8,0x50,0x6b,0xf6,0xd5,0xa6,0xd5,0x2b,0x97,0x57, + 0xd9,0x6e,0x6b,0xab,0x88,0xf7,0x8f,0x71,0xfa,0xc7,0x06,0xb9,0xc3,0xe0,0xa4,0x5d,0x6c,0x59,0x6a,0x19, + 0x9c,0xd4,0x1d,0x66,0x0a,0xb6,0x4c,0x73,0xf9,0xcd,0x61,0xe6,0x0e,0x7b,0x96,0x63,0x9c,0xd6,0x3a,0x2d, + 0xdf,0x19,0xa7,0xca,0xec,0x48,0x8b,0x3f,0x32,0xd2,0xe4,0x8f,0x8f,0x54,0x23,0xcb,0x66,0x5f,0x0b,0x66, + 0x9e,0x12,0x65,0xf5,0x7e,0x8b,0x1d,0xde,0xf1,0xe3,0x7b,0x35,0xfb,0x9f,0x85,0xb1,0x9a,0x27,0x36,0x36, + 0x7b,0x33,0x07,0xba,0x3a,0xb8,0xdd,0x8f,0x1d,0x47,0xc7,0xde,0xfb,0x9f,0x1d,0x47,0xf6,0xe1,0x71,0xc0, + 0xe6,0xfa,0x6d,0x9a,0xf9,0xe7,0x78,0xb4,0xc6,0x7f,0xbe,0x87,0x7d,0xce,0x11,0x1a,0xa6,0x3a,0xaa,0x3b, + 0x3b,0x0e,0xbb,0xa8,0xe3,0x8f,0xf9,0xd7,0xe2,0x66,0xf1,0x5a,0x6b,0xed,0x50,0x7f,0xad,0xea,0x80,0x18, + 0x45,0x3d,0x03,0x29,0xf4,0xb2,0x2a,0xa8,0xf0,0x82,0x30,0xe5,0xb0,0x10,0xfb,0xa8,0x62,0xa0,0xa3,0x89, + 0x03,0x33,0x6a,0x5c,0x17,0x79,0x7f,0x1b,0xdc,0x1b,0xdc,0xf3,0x54,0x97,0xa9,0x96,0x44,0x7a,0x3e,0x38, + 0xd0,0x11,0x9f,0x7f,0x42,0x0c,0x9a,0xfa,0x79,0xb0,0x2e,0x13,0xff,0x19,0x21,0x66,0xad,0x3e,0x64,0xad, + 0x5d,0x6e,0x92,0x2c,0xbc,0xe1,0xa8,0x9a,0xa1,0xf7,0xb2,0x8a,0xd3,0xa2,0xf4,0x54,0xf9,0xae,0xac,0x92, + 0xcb,0x27,0x8f,0x29,0x85,0x9f,0x7a,0x4f,0x1e,0x7b,0x6a,0x9e,0x16,0x97,0xd7,0x71,0x91,0xfc,0x24,0x7d, + 0x09,0xbd,0xaf,0x74,0x42,0x4f,0xf7,0x2e,0xec,0x79,0x6a,0x9a,0xaf,0xde,0x49,0xe4,0x0c,0xef,0x91,0x79, + 0xec,0xfd,0xd7,0x7f,0xf6,0xee,0x1e,0x9f,0xfc,0xad,0xf7,0x2c,0x2e,0xde,0xf4,0xae,0xe2,0xac,0xf7,0x43, + 0x92,0x95,0xd7,0xf9,0x7a,0x46,0xdb,0x6a,0x99,0xc7,0xf0,0xb8,0x15,0x7a,0x2f,0x96,0x09,0x0c,0x07,0x39, + 0x9a,0x41,0x4f,0xa7,0xf6,0x64,0xa2,0x74,0xc8,0xf7,0xc1,0x60,0xe0,0x29,0x5e,0xa9,0x2f,0x38,0xe8,0x46, + 0xe8,0x3d,0xc4,0x4b,0x23,0xed,0x65,0x7c,0xc5,0xb5,0xc9,0x2f,0x97,0xb8,0x4e,0xe7,0x29,0x0d,0xac,0x5a, + 0x97,0xe1,0x4d,0x3c,0x85,0x83,0xca,0x55,0x9e,0x66,0x95,0x1d,0xf4,0xc3,0x17,0xe8,0xf8,0x2c,0x2d,0xe3, + 0x73,0x3a,0x33,0x42,0xef,0xb1,0x7e,0x22,0x6a,0x81,0xbd,0x5d,0xe4,0x19,0xa2,0xd3,0xd9,0xec,0x3f,0xa7, + 0x5f,0xa5,0xb7,0x14,0x50,0x29,0x02,0x8d,0x78,0x4f,0x66,0xb8,0xb4,0xcd,0xf2,0x97,0x2f,0x79,0x06,0xe9, + 0x6f,0x0f,0xa6,0xa1,0xf3,0x9c,0x16,0x8d,0xe6,0x76,0x1a,0x67,0x08,0x20,0x01,0x53,0x0b,0x2a,0xfc,0x92, + 0x5e,0x7b,0x53,0xf3,0x8e,0x09,0xcc,0x32,0x02,0xae,0xaf,0xe8,0xf0,0xc4,0x67,0xf9,0xed,0x55,0x79,0x4f, + 0x7f,0xb0,0x39,0xa8,0x5f,0x4f,0xf3,0x92,0xe7,0xd9,0xbc,0xd3,0xb4,0x95,0x15,0xf7,0x4c,0xe7,0xd1,0xbd, + 0xb3,0x6f,0x88,0xcd,0x51,0xea,0xa9,0xa8,0xe2,0xf3,0x57,0x76,0xd5,0x29,0xc5,0x53,0x7a,0x80,0x8f,0x24, + 0xc0,0x4b,0xaf,0xd4,0xc9,0x74,0x94,0xbe,0xac,0x92,0x55,0xf9,0xaa,0x58,0x23,0x73,0x52,0xf5,0x20,0xda, + 0x47,0x94,0xf9,0x77,0x34,0xa6,0x82,0xf5,0xfa,0x4b,0x64,0xa8,0xb3,0x7e,0x05,0x65,0xd3,0x76,0x5e,0xb8, + 0x56,0xbb,0x4a,0x67,0x6b,0x04,0x91,0xa0,0xb9,0x25,0xba,0x03,0xc1,0x23,0x1a,0x3d,0x79,0xa5,0xd3,0xd0, + 0x97,0xcb,0xc4,0x24,0xd2,0xa3,0x24,0x3c,0xc1,0x95,0x42,0x46,0x98,0xc2,0x00,0x0b,0x4d,0x2b,0xcc,0x55, + 0xe2,0xaa,0x87,0xcf,0x3d,0x53,0x65,0x4f,0x9b,0x90,0xf4,0xe2,0x8c,0xdb,0x47,0x99,0x5e,0x3d,0x6d,0x04, + 0x13,0x97,0x39,0x1e,0x74,0x03,0xcf,0xf8,0xc5,0xdb,0x3a,0x33,0xeb,0x76,0xaa,0x9e,0xdf,0x7a,0x8a,0xea, + 0x29,0x67,0x91,0x7f,0x52,0x71,0xa7,0x5d,0xe8,0xf2,0xbe,0xcc,0x00,0x14,0x3d,0x49,0xeb,0x71,0x62,0x23, + 0xc7,0x37,0x9c,0xeb,0xe1,0x72,0x99,0x5f,0x97,0x32,0x8f,0xda,0xa8,0xd8,0xe9,0x69,0x6f,0x5e,0xe4,0x97, + 0xbd,0x77,0xf9,0xba,0xe8,0xcd,0x92,0xab,0x74,0x9a,0x00,0x10,0x80,0x15,0x7b,0xb2,0x53,0xb5,0x4b,0x14, + 0x2e,0xde,0xd8,0x2a,0xbd,0xd5,0xba,0x58,0xe5,0x65,0x52,0x0e,0x7a,0xaf,0x2e,0x12,0x93,0xbb,0x99,0x85, + 0x6a,0xd1,0x34,0x1a,0xd5,0x40,0xef,0x17,0x55,0xb5,0x0a,0x8f,0x8e,0x4e,0x3e,0xbf,0x3b,0x38,0xf9,0xeb, + 0xdf,0x07,0x27,0x83,0x4f,0x8f,0x7a,0xd7,0x17,0x49,0x86,0xf6,0x7b,0xd8,0xe6,0x16,0x8c,0xd0,0x8b,0xb4, + 0xa2,0xaa,0x99,0xca,0xa8,0x7a,0xf9,0x7c,0xde,0x8b,0xcb,0x5e,0x99,0xc3,0xc9,0x44,0xd9,0xd3,0xbb,0x06, + 0x9d,0x4b,0xd0,0x8a,0x69,0x36,0x99,0x29,0x7c,0xa6,0x02,0x94,0xc8,0xc6,0xd2,0xc9,0x14,0xa9,0xb8,0x59, + 0x8c,0xb3,0x77,0xb4,0xf5,0xdf,0x0d,0x7a,0xbf,0x50,0x63,0xd8,0x12,0xf1,0x92,0x5e,0xcb,0x9e,0x25,0xc1, + 0x7a,0x82,0x2c,0x7b,0xe0,0x12,0xd0,0xdb,0xf3,0x77,0x3d,0x68,0x4b,0x01,0x49,0x54,0x17,0xcd,0x69,0xee, + 0xe9,0x98,0x3c,0xeb,0x8c,0x18,0x45,0xfe,0xfa,0xf4,0xcb,0xc7,0xbd,0x25,0x50,0x51,0xd9,0x5b,0xaf,0x68, + 0xf9,0xdd,0x7d,0x6d,0x16,0xca,0xed,0x75,0x23,0x87,0x2c,0x94,0x5e,0xf2,0xae,0xd9,0xa7,0xd9,0xe0,0x25, + 0xca,0xaf,0xb3,0x1e,0xb0,0x43,0xaf,0x60,0x97,0x41,0x83,0x9e,0x86,0x52,0x8e,0x04,0xc5,0xfd,0x00,0x2e, + 0x50,0x04,0x32,0x25,0x61,0xbf,0x62,0x46,0x83,0x9e,0xd1,0xb9,0x56,0xd0,0x97,0xf6,0xf2,0x9d,0x27,0x04, + 0x16,0xe8,0x68,0x99,0xce,0x04,0x85,0x78,0xca,0x14,0x23,0xe8,0xd7,0x4f,0xb4,0xd5,0x2f,0xa6,0xab,0xd0, + 0xfb,0x91,0x1a,0x79,0xfc,0xcd,0xa3,0x17,0xf2,0xae,0x01,0x6b,0x5d,0xe5,0x97,0xf0,0xd5,0x83,0xed,0x46, + 0xd3,0x5e,0xa6,0x8b,0xac,0xc4,0x86,0x78,0xf2,0xa2,0xa7,0x83,0x4a,0x77,0x03,0x93,0x2c,0x01,0x9d,0xcf, + 0xe7,0x34,0x2d,0x58,0x14,0x9a,0x50,0xca,0xf8,0x26,0x49,0x56,0x7a,0x21,0x30,0xb3,0x4b,0x94,0x07,0x60, + 0xc0,0xa6,0x81,0xc0,0x84,0xb6,0x20,0xbd,0xdd,0x21,0x28,0x99,0xe5,0x40,0xbc,0x84,0x0b,0x57,0xba,0x19, + 0x42,0x88,0xb6,0x49,0x1a,0xd1,0xfa,0x9c,0x76,0xe3,0x65,0x5c,0xbe,0xa1,0x71,0xf1,0x73,0x0f,0x2f,0x9e, + 0x5a,0xd0,0xf9,0x47,0x4b,0x1e,0x7a,0x5f,0xcb,0x83,0xa7,0x2e,0x08,0x9b,0x89,0x81,0xd9,0x37,0xfa,0xa9, + 0x4e,0x7b,0x51,0x3b,0x44,0x25,0x14,0xa7,0x6d,0xca,0xa8,0xa6,0xa9,0x6d,0x69,0xab,0x4f,0xb1,0x06,0xa6, + 0xe3,0x14,0xc2,0xcd,0xd5,0xca,0x41,0x2e,0x3d,0xe8,0x74,0x11,0x83,0x99,0x11,0x1e,0xe7,0xd9,0xf7,0xbf, + 0x7f,0xf5,0x22,0xa0,0x09,0x27,0x46,0x42,0x67,0xfb,0x26,0x2e,0x66,0x7c,0xd4,0x51,0x5a,0x8e,0xc8,0x7a, + 0x97,0xf1,0xca,0x7c,0xfb,0x3a,0xcf,0x17,0x04,0x05,0xcf,0x28,0xa5,0xf7,0xf0,0xc5,0x93,0xfa,0xa0,0xd4, + 0xdf,0xed,0x31,0x29,0x04,0x02,0xb7,0xfe,0x94,0x58,0x1e,0x8f,0xfe,0xa4,0x15,0x1f,0x82,0x48,0xc1,0xa9, + 0xf5,0x34,0xcf,0x16,0x4e,0x12,0x91,0x88,0x8c,0x8c,0xbc,0xaf,0x69,0x96,0x96,0x3a,0x77,0xef,0x88,0xd0, + 0xbc,0xce,0x26,0xf8,0x61,0xa9,0xf3,0x35,0x0a,0xbd,0x4c,0xe2,0x62,0x7a,0x01,0x1c,0x8c,0x5f,0x1e,0x0c, + 0xed,0x02,0x3a,0xeb,0xbc,0x87,0xb2,0x55,0x5e,0xf0,0x56,0x11,0x24,0xcf,0x1b,0x84,0x72,0xf4,0xfc,0x3e, + 0x91,0x17,0x57,0x81,0xc9,0xfe,0xf2,0xd5,0x43,0x39,0x1e,0x30,0x2b,0xcf,0xb0,0x9d,0xdf,0x93,0xff,0xe1, + 0x0b,0x73,0x2c,0xeb,0x1d,0xd5,0x68,0x48,0xef,0x49,0x2e,0xb4,0x22,0xc6,0x98,0x7a,0x7d,0x2d,0xe5,0x5e, + 0xfc,0xfc,0xec,0x71,0x41,0xc4,0x54,0xf1,0xf2,0x31,0xb5,0xf6,0xe2,0xd1,0xc3,0xcf,0xff,0xfa,0xf7,0xcf, + 0x7a,0x94,0xda,0x9b,0x71,0x72,0x8f,0xd2,0xa5,0x1c,0xf4,0xfa,0xda,0x65,0x1e,0x3d,0xed,0x2e,0xf3,0xe8, + 0xa9,0x94,0x99,0xc2,0x09,0x21,0x0a,0x5d,0x5f,0x3e,0x34,0xf0,0xd8,0x91,0xff,0xc9,0x7f,0xfd,0xaf,0x47, + 0x35,0x90,0x52,0xe6,0xaf,0x70,0x86,0x24,0xd9,0xf4,0x5d,0x67,0xf6,0xb9,0xf9,0x2a,0x90,0x40,0xcb,0xfe, + 0x5d,0xf2,0x6e,0x07,0x14,0x68,0xd3,0x34,0x32,0x5c,0xf0,0xce,0x7c,0xbe,0x12,0x2b,0xc9,0x41,0x4f,0x9f, + 0xb4,0xb4,0xcb,0xf2,0x8c,0xfe,0x10,0x85,0x36,0x63,0x54,0x6e,0x2e,0x30,0x81,0xdc,0x62,0xbb,0xbc,0x3d, + 0xc0,0xbd,0xa0,0xde,0x3b,0x65,0x27,0x38,0x28,0xda,0x88,0xe9,0xf4,0x82,0xf7,0xe5,0x75,0x4a,0x73,0x7c, + 0x49,0xbb,0x85,0x10,0xdf,0x9b,0xc4,0x34,0x31,0xcb,0x7b,0x70,0x66,0x39,0x20,0x3c,0x45,0x9f,0x09,0x87, + 0xbc,0xe9,0x21,0x88,0x14,0x81,0x34,0x50,0x83,0xee,0xb2,0xc2,0x62,0xf5,0xf4,0x58,0x2e,0x99,0x82,0x83, + 0xfc,0xa5,0x22,0x68,0x16,0x44,0xc7,0x83,0x2f,0xab,0x01,0xc8,0x89,0x6c,0x69,0x29,0xa3,0x57,0x45,0xbc, + 0xda,0xa1,0x1d,0x3f,0x8e,0x78,0x4c,0xfe,0x35,0xda,0xf1,0x4b,0x3a,0xa5,0xf2,0x45,0x92,0x9d,0xd3,0x58, + 0x7b,0x8b,0x84,0xd0,0x18,0x1d,0x35,0xe7,0xc9,0xef,0xe9,0x82,0xe8,0x5c,0x6c,0x9d,0x19,0x65,0xb8,0x62, + 0x42,0xcb,0x62,0xd9,0x64,0x97,0x9c,0x7c,0x95,0x27,0x40,0xb2,0x49,0xd6,0x49,0x52,0x7e,0x61,0xeb,0xcb, + 0x57,0xb4,0x3a,0x71,0xf6,0xa7,0xa8,0xcb,0x1f,0xd3,0x8a,0xa8,0xee,0xe9,0x45,0x4c,0x8b,0xf2,0xf1,0x24, + 0x66,0xb3,0x94,0xa6,0x33,0x5f,0x52,0x27,0x56,0xb0,0x81,0x9e,0xb5,0xa9,0xcd,0x94,0x3a,0xb9,0x48,0xae, + 0x72,0x62,0x12,0xb2,0x6e,0x8a,0x33,0x9e,0x13,0xa1,0x94,0x67,0xbb,0x04,0xe7,0x77,0xf4,0x71,0x91,0x60, + 0xba,0x92,0x42,0x3b,0x43,0x26,0xb4,0xfa,0x06,0xf5,0xb4,0x09,0xcf,0x9f,0xea,0x1c,0x94,0x79,0x99,0x17, + 0xc8,0xd4,0x24,0x3e,0xbf,0x47,0x4f,0x50,0x93,0x74,0xe5,0x63,0xc8,0xcf,0x6f,0xd6,0xe9,0x2c,0x5d,0x24, + 0xb7,0x90,0x9f,0x44,0x2f,0x81,0xce,0x4b,0xb0,0xa0,0xb3,0xe4,0xf7,0x64,0x39,0x07,0x8d,0xa1,0x69,0xcc, + 0x24,0xad,0x76,0x68,0xd0,0x57,0x92,0xd7,0x10,0x9f,0x49,0xb2,0x64,0xc3,0xf1,0x84,0xea,0xc9,0xfe,0x18, + 0x15,0xfa,0x7a,0xd6,0xa6,0x42,0x9f,0x32,0x2c,0xf4,0x08,0x2d,0xf5,0xae,0x72,0xec,0x5b,0xca,0x53,0x13, + 0xa1,0x49,0x52,0x53,0x9f,0x57,0x8d,0xa9,0x4a,0xe0,0x05,0x28,0x2d,0xdb,0x74,0xe8,0x17,0xc9,0x75,0x02, + 0xcd,0xee,0x5b,0x29,0xd1,0x7a,0xc2,0xed,0x6c,0x39,0x6b,0xe0,0xc2,0x76,0x8b,0x16,0x7d,0xe8,0x52,0x47, + 0x34,0x7c,0x01,0x24,0x86,0xf3,0x3a,0x9b,0x60,0xa7,0x67,0x71,0xfc,0xa6,0xea,0x5d,0xe0,0x58,0xa6,0x1d, + 0xb5,0x4c,0x5f,0x13,0xb5,0x75,0xc9,0x63,0x11,0xea,0xd4,0x92,0x81,0x69,0x82,0x1d,0x15,0xcf,0xf9,0x1b, + 0x6d,0x17,0xa2,0x83,0x69,0x1e,0xb2,0x38,0x2e,0x78,0x61,0x7a,0xc0,0x06,0x96,0x42,0x4a,0x04,0x86,0x50, + 0x15,0xad,0x57,0x9d,0x6a,0x49,0x43,0x38,0xab,0xed,0x3d,0x6e,0x96,0x22,0x5a,0x83,0xb2,0x9c,0x27,0x19, + 0x6d,0xdf,0x02,0x10,0x99,0xc6,0x9d,0x44,0x2a,0x7d,0xa7,0x96,0x5f,0xbb,0x3d,0xbb,0x48,0xce,0xb1,0x03, + 0x2e,0x31,0x98,0x41,0xef,0xa5,0x8c,0x57,0xfa,0x05,0x3a,0x92,0xce,0xe2,0x14,0x7d,0xe5,0x71,0xba,0x7d, + 0x20,0x02,0x15,0x81,0x74,0x7f,0x4f,0x35,0x78,0xc9,0x56,0x3a,0x4f,0xae,0x92,0x94,0xe8,0xc7,0x19,0x16, + 0xad,0xf7,0x6d,0xd2,0x7b,0x43,0xa4,0xa5,0x5b,0x5b,0x9e,0xbf,0x71,0xa7,0x95,0xd0,0x2c,0x41,0x03,0x20, + 0xc3,0x1e,0x82,0x32,0xf5,0x44,0x2c,0xad,0x30,0xa6,0x59,0xb1,0x7e,0x83,0xe9,0xa8,0xf2,0x0a,0x5d,0x9f, + 0x09,0x85,0x1a,0x63,0xeb,0xd1,0x24,0xb6,0x09,0x54,0x67,0x8d,0x81,0x7d,0x98,0xc4,0xd4,0x5b,0xd2,0xc9, + 0x27,0xcb,0xa7,0xf3,0xee,0x2e,0x01,0x2a,0xa7,0x29,0x4a,0x68,0x6b,0xb5,0xa8,0xd4,0x9f,0xd6,0xcb,0xde, + 0x45,0xca,0xd8,0x80,0x4e,0x36,0xcc,0x08,0x23,0x11,0xca,0x76,0x1d,0x4f,0x2f,0xaa,0xeb,0x1c,0xa4,0x6a, + 0x4a,0x53,0x93,0xd4,0xf8,0x33,0xa1,0x9c,0x1c,0xff,0x72,0xcd,0xd3,0xda,0xcb,0x09,0xaa,0xb1,0x69,0x79, + 0x3a,0xca,0x5b,0x09,0xd7,0x9f,0x6d,0x85,0x86,0x74,0xfd,0x3a,0x39,0x2f,0xd6,0x84,0xb4,0x6b,0xf2,0xf5, + 0xa2,0x41,0xbe,0xd2,0x9c,0x32,0x80,0x31,0x09,0x49,0x87,0x33,0x4d,0x59,0x72,0x9d,0xbe,0xfe,0x1d,0x30, + 0x17,0x67,0x3b,0xc3,0xa4,0x83,0x8d,0x00,0x90,0x0a,0xa5,0xaf,0x33,0x86,0x5d,0x3a,0x06,0x31,0x6c,0x67, + 0xad,0x50,0x0c,0xca,0x41,0x34,0x20,0xfa,0xf3,0x7b,0xfa,0x1a,0xdf,0xaf,0x13,0x1a,0xf6,0x35,0x60,0x97, + 0x5e,0x2e,0x93,0x44,0x1f,0x1e,0xe7,0xf0,0x05,0xb0,0x4b,0xca,0xd2,0xe3,0xad,0x84,0x6c,0x52,0x7c,0x0c, + 0x29,0x1b,0x5f,0xde,0x42,0xca,0xbe,0x04,0x3a,0xa7,0x7e,0xcc,0x0c,0x31,0x8b,0xb6,0x6e,0x25,0x65,0xdb, + 0xb4,0x2c,0xa1,0x9f,0x06,0x2d,0x9b,0xbc,0x8f,0x94,0x8d,0x41,0x64,0xd0,0x3e,0x20,0xb8,0x02,0x28,0xfd, + 0x19,0x8a,0xf6,0x3c,0x7d,0x7d,0x9d,0x14,0x0c,0x89,0x86,0xa8,0xfd,0x82,0x60,0x63,0x56,0x25,0x0b,0xc2, + 0x06,0x33,0x87,0xb0,0x85,0x60,0xce,0x4d,0xb4,0xa4,0xad,0x9b,0x1f,0xb4,0x4c,0x9d,0x91,0xd6,0xeb,0x22, + 0xc6,0x6e,0xa2,0x3d,0x73,0x1e,0x97,0x84,0x0d,0x70,0x82,0x0b,0x35,0x94,0x74,0xd2,0xba,0xbf,0xe6,0x09, + 0xf7,0xe5,0xcf,0xd3,0xba,0xbc,0x31,0x3e,0x8a,0xc6,0x6d,0xd4,0xec,0xee,0x7d,0xde,0xe3,0x5c,0x2e,0x06, + 0x2a,0x9a,0x13,0xb0,0xc5,0x8b,0xff,0x09,0x4a,0xf7,0xcd,0x32,0xff,0xff,0x22,0xa1,0x4b,0x27,0x2e,0xed, + 0x4a,0xda,0xf2,0x72,0x56,0xa6,0x38,0x58,0x20,0x8d,0x25,0x74,0x02,0x9c,0xbc,0x10,0x04,0x50,0x99,0x53, + 0x46,0xaf,0x2f,0xb0,0x24,0xb5,0x5f,0x31,0x00,0xf0,0xa1,0x82,0x8f,0xe7,0x02,0x2c,0x87,0x4d,0x40,0x21, + 0xb2,0x57,0xf0,0xff,0x75,0x73,0xef,0x5f,0xa2,0xd8,0xff,0xfe,0xcf,0xff,0xfd,0x9f,0x19,0xb8,0xd7,0xa2, + 0x97,0xe5,0x44,0x58,0xf0,0xd1,0x40,0x1d,0x22,0xb0,0xad,0x18,0x6f,0xff,0x2e,0x78,0xcf,0xd2,0xbe,0x40, + 0xb1,0x84,0xd1,0xde,0xd0,0xee,0xe0,0x93,0x5d,0x0f,0xf5,0x35,0xf7,0xe7,0x77,0x82,0x30,0x3e,0xe6,0xe5, + 0x64,0xe4,0xd3,0x81,0x30,0x12,0x41,0x4c,0xcc,0xe4,0xf0,0xb6,0x76,0x17,0xcb,0x91,0x99,0x1e,0xae,0x56, + 0x56,0x9a,0x8d,0x0b,0x56,0xed,0x2f,0xb0,0x36,0xbc,0x23,0xda,0x92,0xb0,0x45,0x5e,0x0c,0x96,0x74,0xee, + 0xac,0xe3,0x45,0xd2,0xb6,0x82,0xf3,0x78,0x6f,0x1a,0x9b,0x3a,0x6b,0x83,0x10,0x0c,0x75,0x75,0xfe,0x4d, + 0xb2,0x0c,0xbd,0xbf,0xd0,0x01,0x4c,0x78,0x8a,0xaa,0x0e,0x2b,0xc5,0x36,0x6a,0x37,0x86,0x38,0xde,0x3b, + 0x56,0xa5,0x50,0xb0,0x7b,0x27,0xfa,0x89,0xe9,0x23,0xbc,0xea,0x3c,0x4f,0xe8,0x70,0x99,0xa2,0x17,0xa1, + 0xb7,0xf1,0xd4,0x7a,0x85,0xe4,0x17,0x45,0xbe,0x60,0x20,0xa2,0x6c,0x31,0x0b,0xbb,0x5f,0xc5,0xe7,0xf0, + 0xcc,0x2a,0x54,0x99,0x11,0xf9,0xde,0xd4,0xe4,0xbe,0xae,0x8c,0xa9,0x62,0xf3,0xd9,0x4d,0xdc,0x36,0x69, + 0xe5,0x55,0x78,0x93,0x64,0x42,0xde,0x52,0x13,0x29,0x9d,0x05,0xc7,0x03,0xfe,0xbf,0x26,0x8a,0x1b,0x39, + 0x34,0xe1,0x78,0xdc,0xcc,0x4a,0x79,0x79,0xf3,0x53,0x1b,0x16,0xa7,0x50,0xe6,0x9a,0xac,0x6b,0xd2,0x52, + 0x16,0x0f,0xb3,0x8a,0x9e,0x4b,0x23,0x61,0x9a,0x2a,0x5b,0x9e,0x8f,0x2f,0xce,0x63,0x0f,0x2f,0x7e,0xe3, + 0x43,0x6b,0x8f,0xfb,0xc0,0xef,0xce,0x21,0xc0,0xef,0x06,0xf3,0xb3,0x09,0x80,0xc5,0xda,0x74,0xdc,0xc8, + 0xe7,0x25,0xad,0x82,0xd4,0x4a,0x18,0x83,0xd2,0x93,0x19,0x21,0x29,0xf9,0x92,0xcc,0x80,0x80,0xa4,0x5b, + 0x2b,0x8d,0x64,0x24,0xeb,0xf5,0x25,0xd0,0x85,0x7d,0x26,0x34,0x20,0xb5,0x3b,0x1b,0xdd,0x7c,0xac,0xf7, + 0x32,0xa7,0xb8,0x3b,0x96,0x66,0xd5,0x50,0xc6,0x18,0x80,0x79,0x66,0xd3,0x88,0x10,0x63,0xc7,0x87,0xf1, + 0x44,0x2d,0x2d,0x66,0x06,0x19,0xca,0xf6,0xfe,0x3b,0x01,0x75,0xb4,0x61,0xb2,0x75,0x84,0xcd,0xb4,0x28, + 0xfc,0xde,0xf8,0x1e,0x3f,0x7a,0xc6,0x42,0x59,0x5f,0x3f,0x98,0x3a,0x61,0x38,0x70,0x61,0x6c,0x03,0x4e, + 0x24,0x3a,0x53,0x32,0xb0,0xd0,0xe5,0x84,0xbc,0x7b,0xda,0x02,0x4c,0xe8,0x13,0x0e,0x44,0x7e,0x02,0x14, + 0x2d,0x40,0xc4,0x89,0x9a,0x47,0xe2,0xc1,0xb0,0x69,0x24,0xae,0x7d,0x11,0x1c,0xc1,0x01,0x75,0x08,0x79, + 0x0a,0xa4,0xc6,0x6f,0xd3,0x9c,0xed,0xce,0x7c,0xef,0x28,0x5e,0xa5,0x47,0x1a,0x4c,0xbd,0x60,0x50,0x5d, + 0x24,0x59,0xc3,0x53,0xcc,0xae,0xc7,0x65,0xed,0x3e,0x87,0x7a,0x6c,0x6e,0x63,0x24,0x29,0xd8,0x06,0x03, + 0x71,0x18,0xe6,0x96,0x37,0x7e,0x9e,0x97,0xf9,0x02,0xaa,0x18,0x81,0x6e,0x1b,0x8e,0x6c,0xc7,0xed,0x6e, + 0xd4,0x10,0xfa,0x47,0x7b,0x52,0x97,0xfc,0x33,0x9d,0xa9,0x7b,0x20,0x90,0xfa,0x47,0x5b,0x97,0x52,0xff, + 0x62,0xcb,0x7c,0x73,0xd0,0xd1,0xf0,0x8e,0xa5,0x8e,0x6e,0xc6,0xbd,0xfe,0xdb,0x83,0x53,0x1b,0x60,0x0f, + 0xf6,0xc9,0xc2,0xf6,0x01,0xc7,0xc3,0xf8,0xbe,0x76,0xdb,0xa3,0x0d,0x48,0xe3,0x3a,0x6e,0x88,0x7c,0x80, + 0x5a,0x0f,0xbb,0x26,0x28,0x46,0x45,0x54,0x86,0xe5,0x9e,0x84,0x11,0xce,0x38,0xde,0x73,0xde,0xf0,0x39, + 0x53,0xc2,0xa3,0x7e,0x3f,0x2a,0xb7,0x80,0xcb,0x84,0x23,0x23,0x24,0x83,0xc6,0xde,0x11,0xa7,0xcd,0xf3, + 0x65,0x0e,0x17,0x38,0x47,0xc6,0x1b,0x52,0xe0,0x64,0x8b,0xa0,0x38,0x30,0xd1,0x23,0x94,0xe1,0x97,0x2b, + 0xda,0x58,0x33,0xd7,0xef,0x50,0xc6,0x41,0x5a,0xab,0x7c,0xd5,0x09,0xf9,0x1a,0x8b,0x52,0x07,0xb7,0xb0, + 0x82,0xd4,0x17,0x83,0x40,0xa2,0xab,0xe5,0xbb,0xfa,0x32,0xe2,0x96,0x1b,0xd4,0x4a,0xef,0x05,0x76,0x51, + 0x25,0x8f,0x98,0x39,0xe9,0x0a,0x42,0x40,0xef,0x82,0xa1,0xaa,0x31,0x65,0xe5,0x00,0xd9,0xc0,0xa4,0x36, + 0x50,0x67,0x23,0x87,0xf3,0xc1,0x22,0xd4,0x46,0x06,0x9d,0x28,0x28,0xb6,0xf9,0x85,0x52,0x6a,0x7c,0xdb, + 0xf8,0x64,0x52,0x05,0x01,0x37,0x3e,0x21,0x05,0xf8,0xb8,0x91,0x98,0xae,0x5c,0xd4,0xdc,0x6c,0xc5,0xa6, + 0x5b,0x6c,0xdd,0xf8,0xae,0x13,0xb7,0x1d,0x20,0xf9,0x51,0x10,0xde,0x2a,0x06,0x9b,0x5e,0x33,0xe7,0xb2, + 0x7a,0xbc,0x68,0x22,0x89,0xfe,0x17,0x17,0x4c,0xef,0x5a,0x04,0x04,0xe5,0xa7,0xff,0x6b,0x5d,0xee,0xc4, + 0xc9,0xb7,0x76,0x5e,0x43,0x2b,0x21,0xe9,0x45,0x82,0xc0,0xf7,0x26,0x41,0xd0,0x70,0x99,0x54,0x2c,0x41, + 0xa1,0x0d,0xe6,0x36,0xa9,0x5d,0x1d,0x35,0x4b,0xf7,0xfb,0xaa,0x99,0xa0,0x3d,0xdf,0x9e,0x84,0x36,0xd9, + 0x76,0x27,0xf2,0x8e,0x3c,0xc7,0xab,0x51,0xef,0x6e,0x67,0x9e,0xc3,0x46,0x9e,0x7b,0x9d,0x79,0x4e,0x4f, + 0x1b,0x99,0x3e,0xed,0xcc,0xb4,0xf1,0x54,0x7b,0xa4,0x44,0x8c,0xdc,0xfd,0xec,0x98,0xa7,0x6b,0x77,0x1f, + 0xbb,0xb3,0x35,0x5d,0x12,0xcd,0x62,0x27,0x41,0x2b,0x8d,0xd5,0x53,0x44,0x35,0x10,0x7e,0x34,0xe7,0x1c, + 0xf8,0x1b,0x21,0x7d,0xba,0xec,0xd1,0x6b,0x92,0xca,0x6c,0xac,0x81,0xa6,0x99,0x8c,0xd1,0x93,0x2b,0x90, + 0xf3,0x8c,0x47,0xa9,0xdb,0xca,0x0a,0x91,0xa5,0x67,0x59,0xfb,0xf7,0xbd,0x6b,0xfc,0xf8,0x9a,0x4d,0x92, + 0x2d,0xb4,0x87,0x60,0xed,0x7f,0x58,0xbb,0x1b,0xb6,0x4e,0x84,0x45,0x29,0xcf,0xcc,0x70,0xb3,0x30,0xfa, + 0x20,0x5e,0x83,0x43,0xe3,0x09,0xb0,0xab,0x9f,0xdb,0xee,0x29,0x78,0x85,0xd8,0x62,0x7f,0x6a,0x1a,0x7a, + 0x4c,0x9d,0xec,0x66,0x83,0xe4,0xc4,0xd0,0x10,0x33,0x2f,0xf8,0x83,0xf3,0xf3,0x11,0x75,0x43,0x54,0x4b, + 0xf5,0xea,0xf9,0xfa,0x88,0x02,0x22,0xc9,0x35,0x45,0xee,0x7e,0x4c,0x91,0x86,0x80,0xd7,0x94,0xbc,0x17, + 0xba,0x0a,0x6c,0x1d,0x63,0x49,0x57,0x06,0xbe,0x3f,0xa2,0x89,0x86,0x94,0xd8,0x34,0xf1,0xd9,0x1f,0x28, + 0xa9,0xa5,0xc6,0xa6,0x68,0x7b,0xf9,0x3f,0xb4,0x3e,0x35,0x68,0xc0,0xbd,0x5e,0x9b,0x12,0xfc,0x00,0x1e, + 0x1d,0x11,0xce,0xc1,0xce,0xca,0xd7,0x70,0xda,0xdc,0x2e,0xac,0x3e,0x4b,0xee,0x05,0xe1,0xed,0x34,0xd9, + 0x91,0xe6,0x79,0xda,0x68,0xb2,0x33,0x7e,0x89,0x21,0x8e,0x2a,0x67,0xc6,0xa3,0xe4,0x0f,0x10,0x48,0x3b, + 0xb8,0xf8,0xc3,0x7d,0x87,0x8a,0xb6,0x30,0x6d,0x46,0x30,0x73,0xcb,0x7c,0xf0,0x76,0xd1,0x73,0xe2,0x22, + 0x79,0xe0,0xe8,0x26,0xd7,0x17,0x1d,0x6b,0x17,0xe4,0xe0,0x32,0xa1,0xa2,0x09,0x67,0x1f,0x43,0x13,0xd4, + 0xc6,0xf7,0xe6,0x29,0x54,0x5c,0x2c,0x03,0x40,0xd3,0xa6,0xc3,0xe0,0x7c,0xf1,0xee,0x09,0x7f,0x96,0x7e, + 0x7c,0x85,0x6c,0xec,0x3a,0x33,0x29,0xa1,0x9c,0xa9,0xd9,0x82,0x9b,0x4a,0x06,0x14,0xde,0xfb,0x6b,0xf2, + 0xa9,0xca,0xb3,0x1f,0x9b,0x1c,0x67,0xd3,0x21,0x46,0xab,0x63,0x4c,0x6e,0x15,0x50,0xa5,0xf1,0x4f,0x8e, + 0x8f,0x3f,0x11,0xda,0x28,0x99,0x1d,0xc1,0x71,0x76,0x15,0xc3,0x2f,0xe9,0x70,0xe7,0x9c,0x34,0xdd,0xf1, + 0x58,0xed,0x79,0xf7,0x90,0x74,0xd7,0xc0,0x13,0x2f,0x1b,0xbd,0x12,0xbe,0xc8,0xff,0xe4,0x92,0xed,0x74, + 0x1a,0x1c,0x69,0x7d,0xa4,0x7e,0x78,0xde,0x68,0xce,0xa8,0x1c,0xc1,0x22,0xd6,0x76,0x2b,0xcc,0x99,0x66, + 0x6e,0x3e,0x74,0xea,0xc2,0x33,0x70,0x07,0x4f,0xb4,0xd9,0xec,0x49,0x18,0x96,0x36,0x5b,0xc4,0xb0,0xba, + 0xc3,0x2b,0x39,0x40,0xd7,0x1a,0x17,0x26,0x87,0x33,0xc2,0x0f,0xc9,0xdd,0xe3,0xe3,0x20,0x30,0xdb,0x51, + 0x78,0xcb,0x5b,0x21,0xaf,0xd1,0x8a,0xc0,0x5c,0x17,0x8b,0xd6,0xd9,0x7b,0xc9,0x6e,0x08,0xea,0x5b,0x82, + 0x55,0xf3,0x2c,0xb9,0x21,0xab,0x9b,0xee,0x23,0xab,0x26,0xdd,0xbe,0x0d,0x86,0xba,0x48,0x94,0x88,0xb1, + 0xbe,0x0e,0xa0,0xc7,0x16,0xef,0xb7,0xd6,0x59,0xf4,0x23,0x9d,0x3a,0xce,0x74,0x5c,0xe4,0x61,0x75,0x3b, + 0x47,0x50,0x1c,0x35,0xeb,0x90,0x08,0x6c,0xa9,0x71,0x62,0x77,0x6b,0x33,0xa9,0x76,0x05,0xd4,0x6a,0x0a, + 0x7d,0xbe,0x85,0xe1,0xdd,0x25,0x0e,0x45,0x25,0xeb,0x86,0x2f,0x93,0x53,0xb9,0x66,0x22,0x72,0xfe,0x24, + 0xb9,0x27,0xce,0x2f,0x11,0xdd,0xe1,0xbf,0x9d,0x60,0xd4,0x8b,0x7b,0x02,0x94,0x24,0x82,0x19,0x2b,0x95, + 0xb9,0x1d,0x6e,0x25,0x83,0x00,0x62,0x5b,0x98,0x53,0xd3,0xbd,0x8c,0x9a,0x71,0xfd,0x53,0x86,0x47,0x47, + 0x90,0x6c,0x0c,0x16,0x2c,0x99,0xa3,0xb1,0x96,0x50,0xb7,0xe4,0x34,0x1e,0xf9,0x22,0xc9,0x11,0x1c,0xeb, + 0xe8,0x75,0xc9,0x9c,0x8c,0x0e,0xe5,0x73,0x63,0x64,0xf8,0x75,0x93,0xea,0x4d,0x02,0xe2,0x5f,0x88,0xe7, + 0x41,0x2d,0x2d,0xd9,0xee,0x8c,0x30,0xe9,0xe0,0x47,0x05,0xab,0x63,0xa3,0xd2,0x31,0x56,0x06,0xf0,0x33, + 0xea,0x26,0x58,0xbf,0xb8,0x75,0xb4,0x18,0xf7,0x33,0x34,0xf6,0xa9,0xa3,0xc4,0xca,0x15,0xef,0x6c,0x87, + 0x86,0xb6,0x33,0xcb,0xb8,0xe2,0xe8,0xb8,0x95,0xaa,0x93,0x08,0x79,0x64,0xf8,0xbb,0xfd,0xd3,0x6b,0xb4, + 0x3b,0xbb,0x4c,0xdf,0x6f,0x15,0xbb,0x24,0xa2,0x29,0x32,0x12,0xa2,0x1b,0x02,0x2c,0x22,0x5c,0x8a,0x1d, + 0x7f,0xd7,0x2e,0x2a,0x02,0x06,0xc0,0x75,0x03,0x3b,0x6a,0x6e,0x0a,0x94,0xfe,0x78,0xf9,0xf2,0x8f,0xb5, + 0xab,0xdd,0x37,0x39,0xed,0x5b,0x19,0xa5,0x3b,0x29,0x5d,0x02,0xa8,0xc8,0xfb,0x8b,0xd7,0xaf,0xa0,0xd5, + 0xbb,0xfd,0x3f,0xde,0x16,0x8d,0x40,0x87,0xec,0x01,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 3973ca1..8723f4e 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 14; +const uint8_t VersionMetadata = 15; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+14"; -const char VersionCommitDate[] = "2018-01-10"; +const char VersionFullSemVer[] = "2.0.0-beta.1+15"; +const char VersionCommitDate[] = "2018-01-11"; #endif diff --git a/src/main.cpp b/src/main.cpp index 0bc1b04..9dadd61 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -38,8 +38,9 @@ void updateDebugStatus(); void updateLED(); void updateNTPClient(); -void startServer(); -void stopServer(); +void updateTimeTrigger(); +void checkTriggers(); + void handleNotFound(AsyncWebServerRequest* request); @@ -56,20 +57,6 @@ bool forceAccessPoint = false; uint32_t stationModeStart = 0; uint32_t blinkOnTime = 0; -enum LEDState -{ - Off, - BlinkLow, - BlinkHigh, - On -}; - -bool ledAP = false; -LEDState ledWiFi = Off; - -#ifdef SerialDebug -uint32_t debugStatusTime = 0; -#endif void setup() @@ -201,10 +188,17 @@ void loop() } // TODO check AP button + updateLED(); updateNTPClient(); - // TODO check for triggers every 10 seconds or so + // if motionTriggerEnabled || timeTriggerEnabled + // { + // TODO check for active time trigger every 10 seconds or so + // updateTimeTrigger(); + + checkTriggers(); + // } stairs->tick(); } @@ -292,6 +286,8 @@ void wifiEvent(WiFiEvent_t event) } +uint32_t debugStatusTime = 0; + void updateDebugStatus() { if (currentTime - debugStatusTime < 5000) return; @@ -313,6 +309,18 @@ void updateDebugStatus() #endif +enum LEDState +{ + Off, + BlinkLow, + BlinkHigh, + On +}; + +bool ledAP = false; +LEDState ledWiFi = Off; + + void updateLED() { uint8_t value = (currentTime - blinkOnTime >= 1000) ? LOW : HIGH; @@ -389,6 +397,64 @@ void updateNTPClient() } +TimeTrigger* lastTimeTrigger = nullptr; +TimeTrigger* activeTimeTrigger = nullptr; + +void updateTimeTrigger() +{ + // TODO check active time trigger +} + + +void checkTriggers() +{ + bool inTimeTrigger = timeTriggerSettings->enabled() && + activeTimeTrigger != nullptr && + activeTimeTrigger->brightness; + bool timeTriggerChanged = activeTimeTrigger != lastTimeTrigger; + lastTimeTrigger = activeTimeTrigger; + + // TODO motion sensor settings + bool inMotionTrigger = false; // && (alsoDuringTimeTrigger || !inTimeTrigger) + bool motionChanged = false; + + // TODO dummies, replace these with motionSettings-> values later on + uint16_t motionBrightness = 0; + uint16_t motionTransitionTime = 0; + + + if (!motionChanged && !timeTriggerChanged) + return; + + + if (motionChanged) + { + if (inMotionTrigger) + { + // Start sweep + } + else + { + if (inTimeTrigger) + { + // Fall back to time trigger value + stairs->setAll(activeTimeTrigger->brightness, motionTransitionTime, 0); + } + else + { + // No more motion, no active time trigger, turn off + stairs->setAll(0, motionTransitionTime, 0); + } + } + } + else if (timeTriggerChanged && !inMotionTrigger) + { + // Set to time trigger value + stairs->setAll(activeTimeTrigger->brightness, timeTriggerSettings->transitionTime(), 0); + } +} + + void handleNotFound(AsyncWebServerRequest *request) { _d("HTTP :: not found: "); _dln(request->url()); diff --git a/src/server/api.cpp b/src/server/api.cpp index 8846540..1881059 100644 --- a/src/server/api.cpp +++ b/src/server/api.cpp @@ -71,8 +71,9 @@ void handleGetTimeTriggers(AsyncWebServerRequest *request) uint8_t count = timeTriggerSettings->triggerCount(); - DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(count) + JSON_OBJECT_SIZE(2) + count*JSON_OBJECT_SIZE(5)); + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(count) + JSON_OBJECT_SIZE(3) + count*JSON_OBJECT_SIZE(5)); JsonObject& root = jsonBuffer.createObject(); + root["enabled"] = timeTriggerSettings->enabled(); root["transitionTime"] = timeTriggerSettings->transitionTime(); JsonArray& jsonTriggers = root.createNestedArray("triggers"); @@ -82,7 +83,7 @@ void handleGetTimeTriggers(AsyncWebServerRequest *request) TimeTrigger* trigger = timeTriggerSettings->trigger(i); JsonObject& jsonTrigger = jsonTriggers.createNestedObject(); - jsonTrigger["timeofDay"] = trigger->timeOfDay; + jsonTrigger["time"] = trigger->time; jsonTrigger["daysOfWeek"] = trigger->daysOfWeek; jsonTrigger["brightness"] = trigger->brightness; jsonTrigger["triggerType"] = (uint8_t)trigger->triggerType; @@ -100,7 +101,7 @@ void handlePostTimeTriggers(AsyncWebServerRequest *request, uint8_t *data, size_ { _dln("API :: post time triggers"); - DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(10) + JSON_OBJECT_SIZE(2) + 10*JSON_OBJECT_SIZE(5) + 510); + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(10) + JSON_OBJECT_SIZE(3) + 10*JSON_OBJECT_SIZE(5) + 510); JsonObject& root = jsonBuffer.parseObject((char*)data); if (!root.success()) { @@ -115,6 +116,7 @@ void handlePostTimeTriggers(AsyncWebServerRequest *request, uint8_t *data, size_ return; } + timeTriggerSettings->enabled(root["enabled"]); timeTriggerSettings->transitionTime(root["transitionTime"]); timeTriggerSettings->beginSetTriggers(jsonTriggers.size()); @@ -123,7 +125,7 @@ void handlePostTimeTriggers(AsyncWebServerRequest *request, uint8_t *data, size_ { JsonObject& jsonTrigger = jsonTriggers[i]; - trigger.timeOfDay = jsonTrigger["timeOfDay"]; + trigger.time = jsonTrigger["time"]; trigger.daysOfWeek = jsonTrigger["daysOfWeek"]; trigger.brightness = jsonTrigger["brightness"]; trigger.triggerType = (TimeTriggerType)(uint8_t)jsonTrigger["triggerType"]; diff --git a/src/settings/triggers/time.cpp b/src/settings/triggers/time.cpp index cd79a8b..2195c9a 100644 --- a/src/settings/triggers/time.cpp +++ b/src/settings/triggers/time.cpp @@ -49,6 +49,7 @@ struct Header uint8_t version; uint8_t triggerCount; uint16_t transitionTime; + bool enabled; }; @@ -68,6 +69,7 @@ void TimeTriggerSettings::read() if (header.version != 1) return; + mEnabled = header.enabled; mTransitionTime = header.transitionTime; beginSetTriggers(header.triggerCount); @@ -89,6 +91,7 @@ void TimeTriggerSettings::write() Header header; header.version = 1; + header.enabled = mEnabled; header.transitionTime = mTransitionTime; header.triggerCount = mTriggerCount; @@ -136,7 +139,7 @@ void TimeTriggerSettings::endSetTriggers() swapped = false; for (i = 0, j = gap; j < mTriggerCount; i++, j++) { - if (mTriggers[i].timeOfDay > mTriggers[j].timeOfDay) + if (mTriggers[i].time > mTriggers[j].time) { temp = mTriggers[i]; mTriggers[i] = mTriggers[j]; diff --git a/src/settings/triggers/time.h b/src/settings/triggers/time.h index 32d3a64..3303132 100644 --- a/src/settings/triggers/time.h +++ b/src/settings/triggers/time.h @@ -9,6 +9,7 @@ #include #include +#include enum DayOfWeek { @@ -36,7 +37,7 @@ enum TimeTriggerType struct TimeTrigger { - uint16_t timeOfDay; + uint16_t time; uint8_t daysOfWeek; uint8_t brightness; TimeTriggerType triggerType; @@ -47,6 +48,7 @@ struct TimeTrigger class TimeTriggerSettings { private: + bool mEnabled = false; uint16_t mTransitionTime = 0; uint8_t mTriggerCount = 0; TimeTrigger* mTriggers = nullptr; @@ -56,6 +58,9 @@ class TimeTriggerSettings void write(); + bool enabled() { return mEnabled; } + void enabled(bool value) { mEnabled = value; } + uint16_t transitionTime() { return mTransitionTime; } void transitionTime(uint16_t value) { mTransitionTime = value; } diff --git a/web/app.js b/web/app.js index 2514ff1..d534bcb 100644 --- a/web/app.js +++ b/web/app.js @@ -40,10 +40,6 @@ function startApp() searchingLocation: false, triggers: { - time: { - latlong: '', - location: '' - } }, connection: { @@ -58,9 +54,26 @@ function startApp() gateway: null }, + system: { + lat: null, + lng: null, + pins: { + ledAP: null, + ledSTA: null, + apButton: null, + pwmSDA: null, + pwmSCL: null + }, + pwmAddress: null, + pwmFrequency: null, + mapsAPIKey: '' + }, + allSteps: true, allStepsValue: 0, - steps: [] + steps: [], + + location: '' }, created: function() @@ -89,6 +102,7 @@ function startApp() console.log(error); }); + // TODO retrieve system settings axios.all([ axios.get('/api/connection') .then(function(response) @@ -101,6 +115,17 @@ function startApp() console.log(error); }), + axios.get('/api/system') + .then(function(response) + { + if (typeof response.data == 'object') + self.system = response.data; + }) + .catch(function(error) + { + console.log(error); + }), + axios.get('/api/steps') .then(function(response) { @@ -170,6 +195,27 @@ function startApp() }) }, + applySystem: function() + { + var self = this; + if (self.saving) return; + + self.saving = true; + + axios.post('/api/system', self.system) + .then(function(response) + { + }) + .catch(function(error) + { + console.log(error); + }) + .then(function() + { + self.saving = false; + }); + }, + startLoadingIndicator: function() { var self = this; @@ -378,17 +424,18 @@ function startApp() searchLocation: function() { var self = this; - if (!self.triggers.time.location) return; + if (!self.location) return; self.searchingLocation = true; - axios.get('/api/geocode/latlong', { params: { address: self.triggers.time.location }}) + axios.get('https://maps.googleapis.com/maps/api/geocode/json', { params: { address: self.location, key: self.system.mapsAPIKey }}) .then(function(response) { if (Array.isArray(response.data.results) && response.data.results.length > 0) { var location = response.data.results[0].geometry.location; - self.triggers.time.latlong = location.lat + ',' + location.lng; + self.system.lat = location.lat; + self.system.lng = location.lng; } }) .catch(function(error) diff --git a/web/dist/bundle.css b/web/dist/bundle.css index ad3f4f2..38d6846 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}.header .wifistatus{position:absolute;right:0;top:0}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem} \ No newline at end of file +*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 0f5aedd..57af97b 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Et(t){this._init(t)}function Lt(t){return t&&(t.Ctor.options.name||t.tag)}function It(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function Ft(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Lt(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Nt(t,n){return{staticClass:Pt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Pt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,zr),key:'"'+t.slice(zr+1)+'"'}:{exp:t,key:null};for(Vr=t,zr=Wr=qr=0;!ce();)ue(Hr=se())?le(Hr):91===Hr&&function(t){var e=1;for(Wr=zr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=zr;break}}(Hr);return{exp:t.slice(0,Wr),key:t.slice(Wr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Vr.charCodeAt(++zr)}function ce(){return zr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Jr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Jr.addEventListener(t,e,Hn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Jr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Jr=r.elm,function(t){if(e(t[bi])){var n=Pn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),J(i,o,fe,pe,r.context),Jr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Ai(c,s,"");for(s in d)(a=d[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ei(t.name||"v")),v(e,t),e}return"string"==typeof t?Ei(t):void 0}}function we(t){Ri(function(){Ri(t)})}function xe(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ii?Ni:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ii,l=a,f=o.length):e===Fi?u>0&&(n=Fi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ii:Fi:null)?n===Ii?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ii&&Bi.test(r[Di+"Property"])}}function Se(t,e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Te(e)}function Ie(t,e,n){Fe(t,e,n),(Pn||Rn)&&setTimeout(function(){Fe(t,e,n)},0)}function Fe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ne(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Ne(t){return"_value"in t?t._value:t.value}function Pe(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function Ve(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function He(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ze(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function We(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Je(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Ke(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),xn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),$n=/\B([A-Z])/g,kn=p(function(t){return t.replace($n,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},Sn=function(t){return t},An="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:Sn,mustUseProp:Cn,_lifecycleHooks:On},En=/[^\w.$]/,Ln="__proto__"in{},In="undefined"!=typeof window,Fn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=Fn&&WXEnvironment.platform.toLowerCase(),Nn=In&&window.navigator.userAgent.toLowerCase(),Pn=Nn&&/msie|trident/.test(Nn),Mn=Nn&&Nn.indexOf("msie 9.0")>0,Rn=Nn&&Nn.indexOf("edge/")>0,Bn=Nn&&Nn.indexOf("android")>0||"android"===Dn,Un=Nn&&/iphone|ipad|ipod|ios/.test(Nn)||"ios"===Dn,Vn=(Nn&&/chrome\/\d+/.test(Nn),{}.watch),Hn=!1;if(In)try{var zn={};Object.defineProperty(zn,"passive",{get:function(){Hn=!0}}),window.addEventListener("test-passive",null,zn)}catch(t){}var Wn,qn,Jn=function(){return void 0===Wn&&(Wn=!In&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Wn},Kn=In&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Xn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);qn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Gn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eAr&&xr[n].id>t.id;)n--;xr.splice(n+1,0,t)}else xr.push(t);Cr||(Cr=!0,z(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Ct(St.prototype);var Lr={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Lr.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Gn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=z,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Et),Object.defineProperty(Et.prototype,"$isServer",{get:Jn}),Object.defineProperty(Et.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Et.version="2.5.13";var Ur,Vr,Hr,zr,Wr,qr,Jr,Kr,Xr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Gr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:zt,update:zt,destroy:function(t){zt(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Jt,update:Jt},yi={create:Xt,update:Xt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",xi={create:de,update:de},$i={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Si=/\s*!important$/,Ai=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Si.test(n))t.style.setProperty(e,n.replace(Si,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Et.options.directives,Hi),v(Et.options.components,Ji),Et.prototype.__patch__=In?Ui:g,Et.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&In?Bt(t):void 0,e)},Et.nextTick(function(){jn.devtools&&Kn&&Kn.emit("init",Et)},0);var Ki,Xi=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Gi,"\\$&"),n=t[1].replace(Gi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Lo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for($=t.slice(v);!(co.test($)||ao.test($)||lo.test($)||fo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Pn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,N.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[S]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===E&&"'"===e||l===L&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||F)===F)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===I)return c}}(t))&&(this._cache[t]=e),e||[]},P.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeLatLong:"Latitude / longitude",timeLocation:"Get latitude / longitude from location",timeLocationSearch:"Search",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},firmware:{tabTitle:"Firmware",title:"Firmware update"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeLatLong:"Breedtegraad / lengtegraad",timeLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",timeLocationSearch:"Zoeken",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},firmware:{tabTitle:"Firmware",title:"Firmware bijwerken"}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{latlong:"",location:""}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},allSteps:!0,allStepsValue:0,steps:[]},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.triggers.time.latlong=n.lat+","+n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):X(c)&&X(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Ir&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function jt(t){this._init(t)}function Et(t){return t&&(t.Ctor.options.name||t.tag)}function Pt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function It(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Et(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Ft(t,n){return{staticClass:Nt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Nt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,Hr),key:'"'+t.slice(Hr+1)+'"'}:{exp:t,key:null};for(Ur=t,Hr=zr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(zr=Hr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=Hr;break}}(Vr);return{exp:t.slice(0,zr),key:t.slice(zr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Ur.charCodeAt(++Hr)}function ce(){return Hr>=Wr}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Kr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Kr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Kr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(t){if(e(t[bi])){var n=Nn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),K(i,o,fe,pe,r.context),Kr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,ji(t.name||"v")),v(e,t),e}return"string"==typeof t?ji(t):void 0}}function we(t){Ri(function(){Ri(t)})}function xe(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Pi?Fi:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Pi,l=a,f=o.length):e===Ii?u>0&&(n=Ii,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Pi:Ii:null)?n===Pi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Pi&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Ee(t,e){!0!==e.data.show&&Te(e)}function Pe(t,e,n){Ie(t,e,n),(Nn||Rn)&&setTimeout(function(){Ie(t,e,n)},0)}function Ie(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Fe(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Fe(t){return"_value"in t?t._value:t.value}function Ne(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function We(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?We(Q(e.children)):t}function Ue(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function He(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function ze(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Ke(t,e){var n=e?Lo:Oo;return t.replace(n,function(t){return To[t]})}function Je(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),xn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),$n=/\B([A-Z])/g,kn=p(function(t){return t.replace($n,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],Ln={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},jn=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=In&&WXEnvironment.platform.toLowerCase(),Fn=Pn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Dn,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Dn,Un=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Vn=!1;if(Pn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,Hn)}catch(t){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);qn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&xr[n].id>t.id;)n--;xr.splice(n+1,0,t)}else xr.push(t);Cr||(Cr=!0,H(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var Lr={enumerable:!0,configurable:!0,get:g,set:g},jr={lazy:!0};Ct(At.prototype);var Er={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Er.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return Ln},Object.defineProperty(t,"config",e),t.util={warn:Xn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=L,t.nextTick=H,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(jt),Object.defineProperty(jt.prototype,"$isServer",{get:Kn}),Object.defineProperty(jt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),jt.version="2.5.13";var Wr,Ur,Vr,Hr,zr,qr,Kr,Jr,Gr=u("style,class"),Xr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Xr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Wt(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Wt(t,!0),Wt(e))},destroy:function(t){Wt(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:Ht,update:Ht,destroy:function(t){Ht(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Kt,update:Kt},yi={create:Gt,update:Gt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",xi={create:de,update:de},$i={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(jt.options.directives,Vi),v(jt.options.components,Ki),jt.prototype.__patch__=Pn?Wi:g,jt.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&Pn?Bt(t):void 0,e)},jt.nextTick(function(){Ln.devtools&&Jn&&Jn.emit("init",jt)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Xi,"\\$&"),n=t[1].replace(Xi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Eo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for($=t.slice(v);!(co.test($)||ao.test($)||lo.test($)||fo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Nn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Xt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,F.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=L,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===j&&"'"===e||l===E&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===P)return c}}(t))&&(this._cache[t]=e),e||[]},N.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (pull low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optional. Currently only used for translating a location name to it's latitude / longitude, which you will most likely only do once. Will work without an API key, but Google might throttle your request."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optioneel. Wordt op dit moment enkel gebruikt om een locatie te vertalen naar een breedte- / lengtegraad, wat je waarschijnlijk maar één keer nodig hebt. Werkt ook zonder API key, met de kans dat Google je verzoek tijdelijk niet toestaat."}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:""},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.system.lat=n.lat,t.system.lng=n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index bccb7c4..3d708be 100644 --- a/web/index.html +++ b/web/index.html @@ -36,7 +36,7 @@ - +
@@ -87,16 +87,6 @@
{{ $t('triggers.timeInternet') }}
- - - - -
- - - -
-
@@ -156,15 +146,15 @@
-
+
-
+
-

{{ $t('firmware.title') }}

+

{{ $t('system.firmwareTitle') }}

@@ -177,6 +167,61 @@
+ +
+
+

{{ $t('system.ntpTitle') }}

+ +
+ {{ $t('triggers.timeInternet') }} +
+ + + + + + + +
+ + + +
+ +

{{ $t('system.pinsTitle') }}

+ + + + + + + + + + + + + + + + + + + + + + +

{{ $t('system.mapsTitle') }}

+ + + + {{ $t('system.mapsAPIKeyhint') }} + +
+ +
+
+
diff --git a/web/lang.js b/web/lang.js index b457794..b2123f2 100644 --- a/web/lang.js +++ b/web/lang.js @@ -39,9 +39,6 @@ var messages = { tabTitle: 'Triggers', timeTitle: 'Time', timeInternet: 'Please note that time triggers require an internet connection.', - timeLatLong: 'Latitude / longitude', - timeLocation: 'Get latitude / longitude from location', - timeLocationSearch: 'Search', motionTitle: 'Motion' }, @@ -69,9 +66,28 @@ var messages = { hostnamePlaceholder: 'Default: mac address' }, - firmware: { - tabTitle: 'Firmware', - title: 'Firmware update' + system: { + tabTitle: 'System', + ntpTitle: 'Time synchronisation (NTP)', + pinsTitle: 'Hardware pinout', + mapsTitle: 'Google Maps API', + firmwareTitle: 'Firmware update', + + ntpLat: 'Latitude', + ntpLng: 'Longitude', + ntpLocation: 'Get latitude / longitude from location', + ntpLocationSearch: 'Search', + + pinLEDAP: 'Access Point status LED pin (+3.3v)', + pinLEDSTA: 'Station Mode status LED pin (+3.3v)', + pinAPButton: 'Enable Access Point button pin (pull low)', + pinPWMDriverSDA: 'PCA9685 PWM driver SDA pin (data)', + pinPWMDriverSCL: 'PCA9685 PWM driver SCL pin (clock)', + pwmAddress: 'PCA9685 PWM driver I²C address', + pwmFrequency: 'PCA9685 PWM driver frequency', + + mapsAPIKey: 'Google Maps API key', + mapsAPIKeyhint: 'Optional. Currently only used for translating a location name to it\'s latitude / longitude, which you will most likely only do once. Will work without an API key, but Google might throttle your request.' } }, @@ -115,9 +131,6 @@ var messages = { tabTitle: 'Triggers', timeTitle: 'Tijd', timeInternet: 'Let op dat voor tijd triggers een internetverbinding vereist is.', - timeLatLong: 'Breedtegraad / lengtegraad', - timeLocation: 'Breedtegraad / lengtegraad ophalen op basis van locatie', - timeLocationSearch: 'Zoeken', motionTitle: 'Beweging' }, @@ -145,9 +158,28 @@ var messages = { hostnamePlaceholder: 'Standaard: mac adres' }, - firmware: { - tabTitle: 'Firmware', - title: 'Firmware bijwerken' + system: { + tabTitle: 'Systeem', + ntpTitle: 'Tijd synchronisatie (NTP)', + pinsTitle: 'Hardware aansluitingen', + mapsTitle: 'Google Maps API', + firmwareTitle: 'Firmware bijwerken', + + ntpLat: 'Breedtegraad', + ntpLng: 'Lengtegraad', + ntpLocation: 'Breedtegraad / lengtegraad ophalen op basis van locatie', + ntpLocationSearch: 'Zoeken', + + pinLEDAP: 'Access Point status LED pin (+3.3v)', + pinLEDSTA: 'WiFi status LED pin (+3.3v)', + pinAPButton: 'Access Point inschakelen knop pin (actief laag)', + pinPWMDriverSDA: 'PCA9685 PWM driver SDA pin (data)', + pinPWMDriverSCL: 'PCA9685 PWM driver SCL pin (klok)', + pwmAddress: 'PCA9685 PWM driver I²C address', + pwmFrequency: 'PCA9685 PWM driver frequency', + + mapsAPIKey: 'Google Maps API key', + mapsAPIKeyhint: 'Optioneel. Wordt op dit moment enkel gebruikt om een locatie te vertalen naar een breedte- / lengtegraad, wat je waarschijnlijk maar één keer nodig hebt. Werkt ook zonder API key, met de kans dat Google je verzoek tijdelijk niet toestaat.' } } } \ No newline at end of file diff --git a/web/site.scss b/web/site.scss index f8ced06..571668c 100644 --- a/web/site.scss +++ b/web/site.scss @@ -22,8 +22,8 @@ $sliderValueColor: #808080; $warningColor: #302f28; $warningBorderColor: #000000; - -$smallScreen: "screen and (min-width: 768px)"; +$smallScreen: "screen and (max-width: 767px)"; +$mediumScreen: "screen and (min-width: 768px)"; [v-cloak] @@ -40,7 +40,7 @@ body padding-bottom: 3rem; - @media #{$smallScreen} + @media #{$mediumScreen} { padding-top: 3rem; } @@ -62,7 +62,7 @@ input, textarea box-shadow: $containerShadow; border: solid 1px black; - @media #{$smallScreen} + @media #{$mediumScreen} { width: 768px; margin-left: auto; @@ -83,9 +83,18 @@ input, textarea .wifistatus { - position: absolute; - right: 0; - top: 0; + @media #{$smallScreen} + { + clear: both; + margin-top: 3rem; + } + + @media #{$mediumScreen} + { + position: absolute; + right: 0; + top: 0; + } .indicator { @@ -149,6 +158,11 @@ h3 { background-color: transparent; } + + @media #{$smallScreen} + { + width: 100%; + } } } From 4c4b20c2e184c0f52a5bf9214abd337d44fc9d41 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Fri, 12 Jan 2018 16:20:28 +0100 Subject: [PATCH 16/43] Start of time triggers frontend --- devserver.js | 32 + src/assets/css.h | 272 +-- src/assets/html.h | 243 +- src/assets/js.h | 4387 +++++++++++++++++----------------- src/assets/version.h | 6 +- src/settings/triggers/time.h | 3 +- web/app.js | 16 + web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 26 + web/lang.js | 11 + web/site.scss | 18 + 12 files changed, 2575 insertions(+), 2443 deletions(-) diff --git a/devserver.js b/devserver.js index c772749..99c8641 100644 --- a/devserver.js +++ b/devserver.js @@ -130,6 +130,38 @@ app.post('/api/steps', function(req, res) }); +var timeTriggers = { + "enabled": true, + "transitionTime": 1000, + "triggers": [ + { + "time": 480, + "daysOfWeek": 127, + "brightness": 0, + "triggerType": 0, + "enabled": true + }, + { + "time": 1200, + "daysOfWeek": 127, + "brightness": 255, + "triggerType": 0, + "enabled": true + } + ] +}; + +app.get('/api/triggers/time', function(req, res) +{ + res.send(timeTriggers); +}); + +app.post('/api/triggers/time', function(req, res) +{ + res.sendStatus(200); +}); + + app.listen(3000, function() { console.log('Development server listening on port 3000') diff --git a/src/assets/css.h b/src/assets/css.h index f52cb72..15ff613 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -4,140 +4,142 @@ #include const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0xd9, - 0xda,0xda,0xb7,0x79,0xc0,0x62,0x6c,0x33,0x33,0x78,0x67,0x2b,0xc9,0x29,0x87,0x24,0x87,0x1c,0x72,0xd9, - 0xda,0x83,0x0c,0xc2,0xa8,0x16,0x23,0x02,0x62,0x3c,0xf3,0x28,0xfe,0x7b,0x5a,0x1f,0x18,0x09,0x04,0x9e, - 0xc9,0x4b,0x55,0xd6,0xb5,0x63,0xd3,0xea,0x6e,0xb5,0xba,0x5b,0xad,0xee,0x16,0x7f,0x74,0x63,0x94,0x31, - 0x5c,0xbb,0xf1,0x11,0x67,0xb4,0xc6,0xdd,0x91,0xbe,0x78,0x0d,0xf9,0x8d,0x94,0xa7,0x98,0x94,0x39,0xae, - 0x09,0xeb,0x73,0x76,0x2e,0x74,0xf8,0x91,0xd6,0x29,0xae,0x3d,0x80,0x1c,0x32,0x5a,0x32,0x0e,0xc6,0x71, - 0x14,0xfa,0xfb,0x8f,0xfd,0x91,0xa6,0xaf,0x5d,0x42,0x0b,0x5a,0xc7,0x1f,0xa2,0x20,0x4a,0xee,0x23,0x89, - 0x92,0xa1,0x33,0x29,0x5e,0xe3,0x7f,0xd2,0x23,0x65,0xd4,0xfd,0xf4,0x57,0x5c,0x3c,0x63,0x46,0x12,0xe4, - 0xfc,0x03,0xb7,0xf8,0x93,0x7b,0x7d,0x76,0xff,0x5c,0x13,0x54,0xb8,0x0d,0x2a,0x1b,0xaf,0x81,0xc9,0x33, - 0x6d,0x86,0x8d,0x1f,0xe1,0xb3,0x7c,0xbe,0x60,0x72,0xca,0x59,0xbc,0x0d,0x82,0x43,0x81,0x19,0x88,0xef, - 0x35,0x15,0x4a,0xb8,0x6c,0x7e,0xb0,0x01,0xa4,0x82,0x94,0xd8,0xcb,0x25,0x12,0x90,0xf5,0xc7,0x82,0x26, - 0x3f,0xff,0xdd,0x52,0xc6,0xd7,0x27,0x84,0x2f,0x70,0xc6,0x62,0x7f,0x5b,0xe3,0xb3,0xd3,0xd0,0x82,0xa4, - 0xce,0x87,0x5d,0xc0,0x3f,0x87,0x33,0xaa,0x4f,0xa4,0x94,0xe3,0xd7,0xa7,0x5a,0x70,0x0a,0x0e,0x15,0x4a, - 0x53,0x3e,0xcb,0x86,0xd3,0x6d,0xfc,0x3d,0x7c,0x69,0xbc,0x9d,0xb8,0x40,0x0d,0xf3,0x92,0x9c,0x14,0x69, - 0xa7,0x28,0x61,0xbd,0x8c,0x9e,0xe3,0xa0,0xf7,0x8f,0x2d,0xfc,0x2a,0x5d,0xf5,0x45,0xca,0xaa,0x65,0xdf, - 0xd9,0x6b,0x85,0x9f,0x24,0xe4,0x87,0x0e,0xaa,0x71,0x83,0x99,0x01,0x69,0xda,0xe3,0x99,0xb0,0x1f,0xdd, - 0x11,0x25,0x3f,0x4f,0x35,0x6d,0xcb,0xd4,0x53,0x6a,0x0e,0xa2,0xec,0x20,0x17,0x15,0xfb,0x1b,0x6d,0x3d, - 0x23,0xdc,0xab,0x51,0x4a,0xda,0x26,0xf6,0x77,0x30,0x7c,0x50,0x64,0x59,0x96,0x1d,0x92,0xb6,0x6e,0xe0, - 0x77,0x45,0x49,0x09,0x3a,0x3c,0xa4,0xa4,0xa9,0x0a,0xf4,0x0a,0x76,0x17,0xfa,0x13,0x0b,0x33,0xf4,0xcf, - 0xd9,0x1b,0x06,0xb8,0x07,0x03,0x28,0x35,0x6f,0xfd,0x07,0x3e,0x3a,0x35,0x87,0x20,0xd1,0xcd,0xa1,0xf0, - 0x06,0x4d,0x06,0x0e,0xb7,0xc1,0x81,0xe1,0x17,0xe6,0xa1,0x82,0x9c,0xca,0x38,0xc1,0x42,0x18,0x01,0x49, - 0x71,0x42,0x6b,0xc4,0x08,0x2d,0xe3,0x92,0x96,0x58,0x02,0x59,0x0d,0xde,0x01,0xbe,0x7a,0x8e,0xdb,0xaa, - 0xc2,0x75,0x82,0x1a,0x7c,0xb8,0xe4,0x84,0x61,0x31,0x2b,0x06,0xcc,0x4b,0x8d,0xaa,0x41,0xe1,0x71,0x46, - 0x93,0xb6,0x71,0x87,0xa7,0x9c,0x3e,0x83,0xb3,0x1b,0x43,0xc6,0xc8,0xdc,0x2e,0x0a,0xcb,0x32,0x30,0xa3, - 0x90,0x66,0x9b,0x13,0x28,0xf8,0x0c,0x5f,0x19,0x75,0x4e,0x30,0x0c,0x08,0x0a,0x8b,0xcd,0xd5,0xd6,0x52, - 0xe6,0x35,0x81,0x9a,0x7d,0x69,0xcb,0xb8,0xea,0x47,0xef,0xfb,0x0e,0x26,0x46,0xc7,0x02,0xa7,0x3f,0xdc, - 0x19,0x60,0xbe,0x40,0xfb,0xa0,0x5c,0x8c,0x7d,0x4c,0xc9,0x3d,0x0e,0x76,0xca,0xc5,0x52,0x9c,0xa1,0xb6, - 0x60,0x07,0xca,0xfd,0x82,0xbd,0xc6,0xfe,0x7e,0x2e,0x92,0x69,0x29,0x0d,0xae,0xdb,0x6c,0x86,0xbe,0x80, - 0xbd,0xb6,0x9a,0x45,0x8b,0xae,0x71,0x99,0x2e,0x7b,0xc9,0xca,0x6b,0x3c,0x66,0xea,0x59,0xb4,0xfc,0x94, - 0xcb,0xea,0xbe,0xd7,0x20,0x83,0x56,0xd5,0x97,0xa7,0x3c,0xc0,0xb5,0x43,0xe7,0x1a,0x58,0xc1,0x90,0xcb, - 0x5b,0x41,0x50,0xa2,0x4f,0x30,0xe6,0x92,0x8b,0xfd,0x5b,0xa1,0x1a,0xf6,0xf9,0xe1,0xa6,0xe4,0xa6,0x53, - 0x4c,0x07,0x75,0xcf,0xb0,0x13,0xae,0xd1,0xdd,0x5c,0xfe,0xa2,0xa3,0xdc,0xe4,0x67,0x55,0xd6,0x92,0xcb, - 0xdc,0xe4,0x66,0xd7,0xec,0xa2,0xf3,0x58,0xf9,0xad,0xdb,0x61,0x2d,0x92,0xc8,0xa7,0x05,0xfb,0x2c,0x6d, - 0xdf,0x65,0xb4,0x15,0x9b,0x2d,0x6c,0xee,0x5b,0xbc,0x6e,0xda,0xe7,0x0d,0x5b,0xff,0x1d,0x73,0x58,0x8d, - 0x76,0x3b,0x30,0xbc,0x63,0x06,0xbb,0x1d,0xdf,0x10,0x36,0x6e,0xcc,0xd1,0x19,0x66,0x56,0xe9,0xdd,0xca, - 0x1e,0x4c,0x0a,0x8c,0xa6,0xa6,0x92,0xb0,0x65,0x05,0xce,0xc6,0xcd,0xd5,0xcf,0x86,0x27,0x92,0x8b,0xf1, - 0x77,0xf8,0xea,0xdb,0x82,0x89,0xe0,0x6a,0x77,0x50,0x39,0x64,0x73,0x4a,0x9d,0x68,0x99,0xe6,0x86,0x26, - 0x6e,0x3a,0xdc,0x02,0x2f,0x8b,0xd6,0x6e,0x39,0xd6,0x02,0x27,0x9b,0x82,0x6f,0x3a,0x90,0xc6,0xeb,0xf7, - 0x19,0xc3,0x1e,0x3c,0x04,0xfb,0x5b,0xa1,0x63,0x8a,0xb4,0x68,0xa3,0x1b,0x61,0xc3,0xce,0xe7,0x86,0x45, - 0xde,0x11,0x32,0x6e,0xf2,0xb7,0x98,0xe9,0xed,0xe1,0xe2,0x26,0x77,0x9b,0xe5,0xde,0x11,0x2a,0xac,0xfc, - 0x3b,0x6d,0x2b,0x25,0x34,0xd5,0x0f,0x71,0xc8,0x2c,0x77,0xd9,0x3e,0x8b,0xac,0xb5,0xc5,0x58,0x2c,0x3c, - 0x44,0x1f,0x55,0xf1,0x04,0x29,0xbe,0x1f,0xea,0x29,0xbf,0x78,0x72,0x44,0xf1,0x64,0xcb,0xdb,0xab,0x7a, - 0x6d,0xba,0x79,0xdd,0xc6,0xf3,0x20,0x2e,0x73,0x56,0xd0,0x8b,0xf7,0x1a,0xe7,0x24,0x4d,0x71,0xc9,0xb9, - 0x7c,0x93,0x92,0x1b,0x62,0x06,0xd7,0x22,0x47,0x56,0x37,0x96,0x82,0xce,0x90,0x09,0xd8,0xf4,0xf9,0x10, - 0x37,0x81,0x5a,0x71,0x63,0xb4,0x32,0x8b,0x2d,0x25,0xa4,0x5a,0xb1,0x10,0x2f,0xe8,0x35,0xa5,0xe3,0x33, - 0x22,0x85,0x91,0x2a,0x97,0xed,0xf9,0x88,0x6b,0x03,0x54,0xa1,0xa6,0xb9,0xc0,0x04,0x66,0x4a,0x0d,0xe6, - 0x49,0x72,0x03,0xc4,0x70,0x31,0x79,0x7e,0x31,0x8b,0xc5,0xb6,0x06,0x84,0x06,0x17,0x38,0x61,0x2e,0x1f, - 0x84,0x1d,0x89,0x3a,0x04,0xc5,0x12,0x82,0x0d,0x2a,0x34,0x0d,0xb5,0xd4,0x1b,0xb6,0xb5,0xb9,0x46,0x55, - 0x20,0xdb,0xec,0x2e,0x9a,0x03,0x39,0x4a,0xe9,0x45,0xf1,0x9e,0x35,0x11,0x0e,0xf6,0xf2,0xcf,0x8f,0x84, - 0xe2,0x85,0xda,0x49,0xca,0xf2,0x78,0x13,0x04,0x1f,0xe7,0x8a,0x9b,0x7b,0xb1,0x52,0xdf,0x7c,0xe0,0xaa, - 0x44,0x8b,0xe7,0x4b,0x55,0xce,0x07,0xb8,0x42,0x6d,0xd0,0x17,0x5b,0x6d,0xc6,0x95,0xab,0xa0,0x52,0xc5, - 0xea,0x61,0x50,0xb4,0x7c,0xec,0x66,0xa9,0xb9,0x56,0x8d,0x49,0x3a,0xdd,0xcb,0x81,0xe9,0x2f,0x9f,0x52, - 0xc4,0x50,0x4c,0xce,0xe8,0x84,0xbf,0x34,0xcf,0xa7,0x5f,0x5f,0xce,0xc5,0xa1,0x65,0xd9,0x83,0xfb,0x15, - 0x9e,0x1c,0x78,0x2a,0x9b,0xa7,0xbb,0x9c,0xb1,0x2a,0xfe,0xf2,0xe5,0x72,0xb9,0xf8,0x97,0xad,0x4f,0xeb, - 0xd3,0x97,0x30,0x08,0x02,0x8e,0x7f,0xe7,0x48,0x15,0x3f,0xdd,0x6d,0x76,0x77,0xce,0x33,0xc1,0x97,0xbf, - 0xd0,0x97,0xa7,0xbb,0xc0,0x09,0x9c,0xf0,0xd1,0xe1,0x30,0xa1,0xe1,0xa7,0xbb,0xf0,0xf1,0xee,0xdb,0xd7, - 0x0a,0xb1,0xdc,0xc9,0x48,0x51,0x3c,0xdd,0x7d,0x48,0x37,0xfc,0x73,0xe7,0xa4,0x4f,0x77,0x7f,0x7f,0xf4, - 0xb7,0xf7,0xf7,0xe1,0xbd,0xb3,0xf5,0xa3,0x70,0x5f,0xec,0xfd,0xe0,0x61,0xb3,0xdf,0x39,0x91,0xff,0xb8, - 0xdd,0x87,0xdb,0xbf,0x6d,0x1e,0xfd,0xfd,0x2e,0xd8,0x46,0x72,0xf8,0xee,0xcb,0xb7,0xaf,0x7c,0xe6,0x6f, - 0x9f,0x3e,0x3b,0xb2,0x6a,0x77,0x44,0xa3,0xc4,0x29,0xa9,0x57,0x63,0xf0,0x36,0x36,0xd8,0x59,0x35,0x50, - 0xf8,0xbe,0xe8,0x75,0xa5,0xe9,0x67,0x8b,0x58,0xf8,0xff,0x57,0x11,0x8f,0xc7,0x5d,0x9a,0xa0,0xdf,0xa5, - 0x88,0xfe,0xba,0xdf,0xce,0xa4,0x1c,0x7a,0x1e,0x91,0xec,0x14,0x15,0xe8,0x88,0x0b,0xb7,0xc0,0x27,0x5c, - 0xa6,0x9d,0x19,0x87,0x8c,0x2e,0x97,0xad,0xcb,0x62,0xb6,0x93,0x24,0xbf,0x8c,0xe0,0x22,0x85,0xb3,0x62, - 0xf0,0x35,0xb9,0x83,0xc6,0x2e,0x95,0x11,0x81,0x92,0x1c,0x27,0x3f,0x61,0x5f,0x9a,0xb5,0x3c,0x6c,0x62, - 0xfa,0xe3,0x2a,0x8b,0x6c,0xfc,0xf4,0xbe,0x10,0xd4,0x93,0x4f,0x93,0x41,0xbd,0x2b,0xa4,0xc4,0xdb,0x05, - 0x66,0xd7,0x4c,0x0a,0xe7,0x27,0x80,0x82,0x80,0xa2,0xee,0xae,0xe7,0x00,0x6a,0x19,0x05,0xd4,0x17,0x25, - 0xe9,0x66,0x13,0x9a,0xad,0x20,0xf9,0x48,0x1b,0x22,0x3a,0x3e,0x35,0x2e,0x10,0x23,0xcf,0x58,0x8f,0x0c, - 0x7e,0x4d,0x2f,0x57,0x89,0xb2,0x02,0xbf,0x1c,0xf8,0x1f,0x2f,0x25,0x35,0xf8,0x14,0x27,0x82,0xfd,0xd6, - 0x9e,0xcb,0x91,0xe7,0x94,0x98,0xff,0xf7,0xc0,0x3f,0x15,0x42,0x37,0xea,0xca,0x32,0xfa,0xcd,0x97,0xec, - 0x6c,0x58,0xfc,0xac,0xea,0xc4,0xe4,0xfc,0x57,0x2c,0x5b,0x4e,0xc3,0x20,0x9c,0x0f,0x9d,0xe8,0x66,0x79, - 0x70,0x94,0x9c,0x1b,0x21,0xa9,0xd7,0x80,0x5f,0xb0,0x11,0x47,0x9a,0x72,0x8e,0x06,0xce,0x31,0x22,0xc9, - 0x6d,0x65,0x20,0x49,0xd0,0x88,0xd2,0xb0,0x1a,0xb3,0x24,0x37,0x70,0x14,0x4c,0x9b,0x0c,0xc1,0xb6,0xe3, - 0xd6,0xd4,0xb1,0x06,0xa0,0x40,0x73,0x86,0xb5,0x4e,0x1c,0x13,0x44,0x8a,0x37,0xce,0x66,0xb0,0x9d,0xd9, - 0x1c,0xbd,0x5a,0x12,0xd4,0x3b,0xd5,0xf4,0xc0,0x50,0x7d,0x79,0x34,0xcb,0xc0,0x57,0xbd,0x4d,0xd0,0xe9, - 0x5c,0x36,0xeb,0xd8,0xa1,0x89,0x1d,0xde,0xc0,0xde,0x9b,0xd8,0xfb,0x55,0xec,0xed,0xd6,0x5d,0x1b,0xdd, - 0x19,0xbc,0xb6,0x5b,0x7f,0x0b,0xff,0x56,0x19,0xee,0x4d,0x61,0xf7,0xeb,0xc2,0x46,0xd1,0xda,0xf4,0xd1, - 0xbd,0xc1,0x2b,0x8a,0xfc,0x08,0xfe,0xad,0x32,0xbc,0x37,0x57,0x7f,0xbf,0xbe,0xfa,0x07,0x53,0xd8,0x87, - 0x75,0x61,0x1f,0x4d,0xec,0xc7,0x05,0x6c,0x30,0xae,0x70,0x18,0x1e,0x6b,0xc1,0xb2,0x86,0x87,0xd8,0x29, - 0x42,0x8d,0x22,0x34,0x28,0x96,0x6c,0x0d,0x46,0x1e,0x29,0xf6,0x06,0xc5,0xc2,0x8a,0x17,0x0c,0x0d,0x16, - 0xbe,0x32,0x1a,0xcc,0xab,0x71,0x5b,0xb5,0xf8,0x4e,0x13,0x7b,0x67,0x88,0xbd,0x5b,0x10,0x7b,0xaf,0x51, - 0xec,0x0d,0x8a,0x25,0x3f,0x89,0x34,0x8a,0xc8,0xa0,0x88,0x96,0x28,0xec,0x2e,0x05,0xbe,0x34,0x32,0x52, - 0x8e,0xa4,0x73,0x5b,0xf3,0xad,0x7b,0x4d,0xdb,0xf7,0x86,0xb6,0x97,0xfc,0xeb,0x41,0x13,0xfb,0xc1,0x10, - 0x7b,0xc9,0xc7,0x1e,0x35,0x8a,0x47,0x83,0x62,0xea,0x67,0xc3,0xb7,0x16,0x60,0x21,0x84,0x65,0xd3,0xf8, - 0x3a,0x43,0x37,0x62,0xed,0x48,0x31,0x84,0xda,0x19,0xbe,0x11,0x76,0x05,0xbe,0x8a,0xba,0x7f,0x3a,0xe3, - 0x94,0x20,0xe7,0x17,0x7e,0xb8,0x0f,0xf6,0x86,0x43,0xeb,0x73,0x27,0x0e,0xa6,0xc9,0x59,0x04,0x20,0x23, - 0x62,0x7a,0x5a,0x9e,0x9b,0xa0,0x22,0xf9,0x85,0xc7,0x4a,0xe7,0x57,0x71,0xec,0x7d,0x36,0x83,0xb0,0x79, - 0xdc,0x0f,0x39,0xf4,0x78,0x52,0x72,0x4e,0x7d,0x8f,0xb4,0x3a,0xcd,0x7a,0x61,0xd2,0xab,0x6c,0xd4,0x45, - 0x66,0x5d,0xa7,0xaa,0xf2,0xb4,0x70,0x69,0xe1,0xb6,0x45,0x57,0x90,0x06,0xd2,0x0f,0xf6,0x5a,0xa8,0xda, - 0x40,0x4d,0xcf,0xcb,0x9c,0x6b,0x3a,0xa1,0xa2,0x3e,0x10,0x39,0x40,0x07,0x7f,0xa9,0xf8,0xdb,0x72,0x1e, - 0x8e,0xe0,0xc4,0x21,0x54,0x40,0x5a,0x01,0x69,0x05,0xa4,0xe5,0x90,0x6e,0x4c,0x70,0xa4,0x85,0x45,0x46, - 0x20,0x0b,0x2e,0x1e,0x2b,0xe4,0x0f,0x91,0x1f,0x52,0x43,0x1c,0x58,0x10,0x24,0x82,0x85,0x43,0xca,0x86, - 0xa4,0xb8,0x37,0x65,0x4d,0x48,0x0d,0xe5,0xeb,0x30,0x36,0xb9,0x61,0x4b,0x53,0x37,0x65,0x6e,0x41,0x26, - 0xba,0xdc,0xe8,0x99,0x93,0xcc,0x85,0x66,0xa5,0xd2,0x84,0x62,0x7a,0xcf,0x07,0xcb,0x76,0x33,0x72,0x6a, - 0x6b,0xec,0xf2,0x6b,0x28,0xae,0xc3,0xca,0x85,0x4a,0xd1,0x65,0xbc,0x86,0xe6,0xfa,0x34,0x19,0x84,0x92, - 0x81,0x18,0x1d,0x72,0xb5,0xe1,0x82,0xcc,0x48,0x50,0x58,0xea,0xb2,0xbc,0xbb,0x5e,0xaf,0xca,0x54,0x4f, - 0x2f,0xc1,0xf0,0x86,0x7f,0xc6,0xaa,0x55,0x96,0xd2,0xaa,0x6e,0xd5,0xee,0xd0,0xb8,0xa9,0x80,0x5b,0x9c, - 0x91,0x7a,0xb8,0x90,0x04,0xce,0xfa,0x63,0x37,0xb1,0x2a,0x20,0x8f,0x97,0x97,0x1c,0x57,0xbb,0xca,0x34, - 0x93,0xf8,0xa0,0x3f,0xba,0x90,0x5f,0x50,0x48,0x9e,0x26,0x49,0x6a,0x5f,0x75,0xba,0xe3,0xf4,0xf9,0xc6, - 0xcd,0x43,0x37,0xdf,0xba,0xf9,0xce,0xcd,0xf7,0x6e,0x1e,0x75,0x37,0x2e,0x6f,0x3d,0x79,0x5d,0x38,0xd1, - 0x9e,0x06,0x1a,0xf8,0x6a,0xee,0xb4,0x93,0xf9,0xb2,0x79,0xe3,0x1b,0xf6,0x79,0xa8,0xe1,0x6c,0xad,0x38, - 0xfb,0x3e,0xdf,0x6a,0x48,0xa1,0xba,0xc0,0x34,0x90,0xb6,0x7d,0xbe,0x33,0x70,0x42,0xcb,0x25,0xa7,0x07, - 0xc5,0x81,0x85,0x14,0xf8,0xef,0x3b,0x3d,0xb1,0xb7,0x5d,0x90,0x02,0xed,0x7e,0x4e,0x0b,0xa4,0x51,0x37, - 0xab,0x09,0x26,0xa4,0xc1,0x84,0x68,0xd7,0x93,0xf3,0xa9,0x33,0x93,0x32,0x48,0xc3,0x79,0x7f,0x27,0x23, - 0x2f,0xf2,0x9a,0xbf,0x93,0x8d,0x3d,0x50,0x6d,0x7e,0xe0,0x09,0x3a,0x44,0xb5,0xf8,0x93,0xf3,0xe9,0xda, - 0x15,0x11,0x3e,0xda,0xfb,0x59,0x41,0x11,0x13,0xae,0xd1,0x89,0x9f,0xd2,0xa1,0x14,0x58,0xb8,0x81,0x82, - 0x8b,0xdf,0xfd,0xf7,0x67,0x2f,0x81,0xc7,0x9f,0x63,0x25,0x21,0x82,0x8f,0x78,0x19,0xc0,0x72,0x71,0x05, - 0x86,0xd7,0x2e,0x29,0xf5,0xf7,0x03,0xfe,0x85,0xeb,0x14,0x95,0xeb,0x6f,0x01,0x04,0xd5,0x58,0x56,0x2a, - 0x17,0x11,0x71,0x43,0x85,0xe6,0x26,0xa9,0x31,0x2e,0x1d,0x54,0xa6,0x7a,0x94,0xbe,0x8f,0x1e,0xaa,0x97, - 0xcf,0x9d,0x90,0x68,0x20,0xe6,0xce,0x24,0x28,0x65,0x99,0x34,0x6e,0xff,0x51,0xb8,0xfe,0xc3,0x58,0xc5, - 0xcc,0x17,0x12,0x06,0xfc,0xa3,0xfb,0xa6,0x51,0xcf,0x6c,0x26,0x9d,0x11,0x79,0xf2,0x57,0x2f,0xce,0x87, - 0x2c,0xc9,0xa2,0xe4,0x7a,0x6b,0x2f,0xf7,0xf6,0x86,0x0f,0x80,0x6a,0xde,0xb4,0x0e,0x4d,0x2c,0x0d,0x6e, - 0x1c,0x36,0x7a,0xbe,0x2e,0x37,0x2e,0x87,0xf4,0xbd,0x9f,0x63,0x04,0xb3,0x76,0xb3,0x32,0x6b,0x18,0x71, - 0xb8,0x17,0x8d,0x56,0x37,0x79,0x6c,0x96,0x34,0x3d,0xa6,0x05,0xd1,0x3d,0x97,0x70,0x60,0xe6,0x5f,0x48, - 0x06,0x01,0x1b,0x31,0x28,0xf6,0x35,0xdf,0xd3,0x74,0x26,0x4d,0xf0,0x96,0x55,0xdb,0x78,0x5e,0x97,0x81, - 0x8e,0xa0,0xc7,0x96,0xe1,0xc3,0xf0,0xae,0x86,0x8c,0x15,0xbd,0x85,0xc8,0xf1,0x49,0x99,0x92,0x04,0x31, - 0x5a,0xdb,0xab,0x5b,0xb5,0x7f,0xb8,0xfd,0x86,0xdd,0x25,0x6d,0xa9,0x77,0xbe,0xf6,0xd7,0x73,0x4c,0xe9, - 0x46,0xd5,0xbd,0xab,0xf3,0x7d,0xe7,0xad,0x0d,0x4f,0x82,0x9f,0xc0,0x88,0x25,0x9c,0x3b,0xfc,0x9a,0x7c, - 0xee,0x5c,0xdb,0xc7,0xe8,0x3d,0xbc,0x60,0x1d,0x3a,0xbb,0xa9,0x67,0x9d,0x6a,0xfc,0xfa,0x5f,0x88,0x06, - 0x6e,0x6c,0x93,0x2d,0x7b,0xdc,0xbe,0x87,0x19,0xae,0x6b,0x5a,0xdb,0xf8,0x24,0xc1,0x24,0x98,0x6f,0xa2, - 0x6a,0x70,0x38,0x1e,0xe7,0x43,0xb5,0x15,0x1b,0x52,0x40,0xf2,0x32,0x0d,0x02,0x23,0xde,0x56,0xe1,0xf1, - 0x55,0xce,0xfb,0x9a,0x1f,0xc2,0x07,0xfe,0xd1,0xc9,0x77,0xd5,0xf5,0xe6,0x42,0x85,0x90,0xa9,0xaa,0x60, - 0xbe,0x06,0xdc,0x4a,0x67,0xac,0x35,0xb7,0x81,0x7c,0xfe,0xc6,0xca,0x24,0x0e,0xf4,0x3e,0x04,0xd3,0x55, - 0xa7,0x17,0x08,0x8e,0x4a,0x5b,0x2c,0xea,0x51,0x0d,0xd7,0x31,0x1c,0xfd,0x81,0x9c,0x2b,0x5a,0x33,0x34, - 0xbd,0x77,0x91,0x22,0xeb,0xdc,0xde,0x73,0x09,0xff,0xb6,0xfd,0x6c,0xc8,0xaa,0x1d,0x30,0xaa,0xc7,0x34, - 0x7b,0xe3,0xa3,0xa4,0x5c,0x3d,0x05,0xbd,0xe0,0xf4,0xb0,0x6e,0x9d,0x88,0x7f,0x26,0x4d,0x27,0x63,0x63, - 0x49,0x6d,0xe6,0xa4,0x64,0x8b,0x5d,0x33,0x6e,0x11,0x6d,0x16,0x6b,0x02,0xe7,0x43,0x4c,0x13,0x3d,0x9f, - 0x89,0x1d,0xe6,0xa6,0xec,0xfd,0xa6,0x3d,0xd2,0x8a,0xc7,0x95,0xc6,0x2c,0xe9,0x05,0x1f,0xa9,0x84,0xa6, - 0xb3,0xd1,0x81,0x17,0x81,0xe7,0x74,0x33,0x5f,0x68,0x18,0xae,0x0c,0x56,0x5b,0x2d,0xad,0x19,0xbb,0xa3, - 0xf3,0xee,0x97,0x24,0x75,0x14,0xe7,0x69,0x53,0x4d,0x91,0xee,0x86,0x29,0x1c,0xff,0x19,0x15,0x2d,0xbe, - 0x11,0x16,0x65,0x9a,0xa5,0xfb,0x8e,0xe4,0xde,0x41,0x6e,0x76,0xfc,0x49,0x60,0x51,0x93,0xbb,0x02,0xad, - 0xcb,0xa3,0x02,0xa2,0x4c,0x39,0x27,0x77,0x01,0xa1,0x04,0x6a,0x97,0x37,0xca,0x85,0xb5,0x17,0x91,0xe4, - 0x4c,0x71,0x3c,0x4c,0x25,0x9f,0x3d,0x96,0xb7,0xe7,0xe3,0xe2,0xfc,0x76,0x79,0x42,0x2d,0x40,0x87,0xf6, - 0x00,0x6d,0x5c,0x24,0xc9,0x53,0xd7,0x7c,0xe9,0x4d,0x13,0xe8,0x4c,0x7f,0x03,0xd2,0xf2,0x84,0x95,0x30, - 0xff,0xcb,0x49,0x2e,0xa8,0x2e,0xb9,0xeb,0xe9,0xa8,0xdb,0x20,0xcc,0x20,0x2c,0x59,0xb3,0x80,0xf1,0x82, - 0x64,0x6f,0x4d,0x88,0xfb,0xff,0x00,0xdc,0xc0,0x0e,0xc5,0xb8,0x29,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x5d,0x93,0xa3,0xb8,0xf1,0xaf,0x90,0xd9, + 0xda,0xda,0xdb,0x1c,0xb0,0x18,0xdb,0xcc,0x0c,0xbe,0xd9,0x4a,0xee,0x29,0x0f,0x49,0x1e,0x52,0xa9,0xbc, + 0x6c,0xed,0x83,0x0c,0xc2,0xa8,0x16,0x23,0x02,0x62,0x3c,0x73,0x14,0xff,0x3d,0xad,0x0f,0x8c,0x04,0x02, + 0xcf,0xe4,0x52,0x95,0x75,0xed,0xd8,0xb4,0xba,0x5b,0xad,0xee,0x56,0xab,0xbb,0xc5,0x1f,0xdd,0x18,0x65, + 0x0c,0xd7,0x6e,0x7c,0xc4,0x19,0xad,0x71,0x77,0xa4,0x2f,0x5e,0x43,0x7e,0x23,0xe5,0x29,0x26,0x65,0x8e, + 0x6b,0xc2,0xfa,0x9c,0x9d,0x0b,0x1d,0x7e,0xa4,0x75,0x8a,0x6b,0x0f,0x20,0x87,0x8c,0x96,0x8c,0x83,0x71, + 0x1c,0x85,0xfe,0xfe,0x63,0x7f,0xa4,0xe9,0x6b,0x97,0xd0,0x82,0xd6,0xf1,0x87,0x28,0x88,0x92,0xfb,0x48, + 0xa2,0x64,0xe8,0x4c,0x8a,0xd7,0xf8,0x1f,0xf4,0x48,0x19,0x75,0x3f,0xfd,0x05,0x17,0xcf,0x98,0x91,0x04, + 0x39,0x7f,0xc7,0x2d,0xfe,0xe4,0x5e,0x9f,0xdd,0x3f,0xd7,0x04,0x15,0x6e,0x83,0xca,0xc6,0x6b,0x60,0xf2, + 0x4c,0x9b,0x61,0xe3,0x47,0xf8,0x2c,0x9f,0x2f,0x98,0x9c,0x72,0x16,0x6f,0x83,0xe0,0x50,0x60,0x06,0xe2, + 0x7b,0x4d,0x85,0x12,0x2e,0x9b,0x1f,0x6c,0x00,0xa9,0x20,0x25,0xf6,0x72,0x89,0x04,0x64,0xfd,0xb1,0xa0, + 0xc9,0x8f,0x7f,0xb7,0x94,0xf1,0xf5,0x09,0xe1,0x0b,0x9c,0xb1,0xd8,0xdf,0xd6,0xf8,0xec,0x34,0xb4,0x20, + 0xa9,0xf3,0x61,0x17,0xf0,0xcf,0xe1,0x8c,0xea,0x13,0x29,0xe5,0xf8,0xf5,0xa9,0x16,0x9c,0x82,0x43,0x85, + 0xd2,0x94,0xcf,0xb2,0xe1,0x74,0x1b,0x7f,0x0f,0x5f,0x1a,0x6f,0x27,0x2e,0x50,0xc3,0xbc,0x24,0x27,0x45, + 0xda,0x29,0x4a,0x58,0x2f,0xa3,0xe7,0x38,0xe8,0xfd,0x63,0x0b,0xbf,0x4a,0x57,0x7d,0x91,0xb2,0x6a,0xd9, + 0x37,0xf6,0x5a,0xe1,0x27,0x09,0xf9,0xae,0x83,0x6a,0xdc,0x60,0x66,0x40,0x9a,0xf6,0x78,0x26,0xec,0x7b, + 0x77,0x44,0xc9,0x8f,0x53,0x4d,0xdb,0x32,0xf5,0x94,0x9a,0x83,0x28,0x3b,0xc8,0x45,0xc5,0xfe,0x46,0x5b, + 0xcf,0x08,0xf7,0x6a,0x94,0x92,0xb6,0x89,0xfd,0x1d,0x0c,0x1f,0x14,0x59,0x96,0x65,0x87,0xa4,0xad,0x1b, + 0xf8,0x5d,0x51,0x52,0x82,0x0e,0x0f,0x29,0x69,0xaa,0x02,0xbd,0x82,0xdd,0x85,0xfe,0xc4,0xc2,0x0c,0xfd, + 0x73,0xf6,0x86,0x01,0xee,0xc1,0x00,0x4a,0xcd,0x5b,0xff,0x81,0x8f,0x4e,0xcd,0x21,0x48,0x74,0x73,0x28, + 0xbc,0x41,0x93,0x81,0xc3,0x6d,0x70,0x60,0xf8,0x85,0x79,0xa8,0x20,0xa7,0x32,0x4e,0xb0,0x10,0x46,0x40, + 0x52,0x9c,0xd0,0x1a,0x31,0x42,0xcb,0xb8,0xa4,0x25,0x96,0x40,0x56,0x83,0x77,0x80,0xaf,0x9e,0xe3,0xb6, + 0xaa,0x70,0x9d,0xa0,0x06,0x1f,0x2e,0x39,0x61,0x58,0xcc,0x8a,0x01,0xf3,0x52,0xa3,0x6a,0x50,0x78,0x9c, + 0xd1,0xa4,0x6d,0xdc,0xe1,0x29,0xa7,0xcf,0xe0,0xec,0xc6,0x90,0x31,0x32,0xb7,0x8b,0xc2,0xb2,0x0c,0xcc, + 0x28,0xa4,0xd9,0xe6,0x04,0x0a,0x3e,0xc3,0x57,0x46,0x9d,0x13,0x0c,0x03,0x82,0xc2,0x62,0x73,0xb5,0xb5, + 0x94,0x79,0x4d,0xa0,0x66,0x5f,0xda,0x32,0xae,0xfa,0xd1,0xfb,0xbe,0x81,0x89,0xd1,0xb1,0xc0,0xe9,0x77, + 0x77,0x06,0x98,0x2f,0xd0,0x3e,0x28,0x17,0x63,0x1f,0x53,0x72,0x8f,0x83,0x9d,0x72,0xb1,0x14,0x67,0xa8, + 0x2d,0xd8,0x81,0x72,0xbf,0x60,0xaf,0xb1,0xbf,0x9f,0x8b,0x64,0x5a,0x4a,0x83,0xeb,0x36,0x9b,0xa1,0x2f, + 0x60,0xaf,0xad,0x66,0xd1,0xa2,0x6b,0x5c,0xa6,0xcb,0x5e,0xb2,0xf2,0x1a,0x8f,0x99,0x7a,0x16,0x2d,0x3f, + 0xe5,0xb2,0xba,0xef,0x35,0xc8,0xa0,0x55,0xf5,0xe5,0x29,0x0f,0x70,0xed,0xd0,0xb9,0x06,0x56,0x30,0xe4, + 0xf2,0x56,0x10,0x94,0xe8,0x13,0x8c,0xb9,0xe4,0x62,0xff,0x56,0xa8,0x86,0x7d,0x7e,0xb8,0x29,0xb9,0xe9, + 0x14,0xd3,0x41,0xdd,0x33,0xec,0x84,0x6b,0x74,0x37,0x97,0xbf,0xe8,0x28,0x37,0xf9,0x59,0x95,0xb5,0xe4, + 0x32,0x37,0xb9,0xd9,0x35,0xbb,0xe8,0x3c,0x56,0x7e,0xeb,0x76,0x58,0x8b,0x24,0xf2,0x69,0xc1,0x3e,0x4b, + 0xdb,0x77,0x19,0x6d,0xc5,0x66,0x0b,0x9b,0xfb,0x16,0xaf,0x9b,0xf6,0x79,0xc3,0xd6,0x7f,0xc7,0x1c,0x56, + 0xa3,0xdd,0x0e,0x0c,0xef,0x98,0xc1,0x6e,0xc7,0x37,0x84,0x8d,0x1b,0x73,0x74,0x86,0x99,0x55,0x7a,0xb7, + 0xb2,0x07,0x93,0x02,0xa3,0xa9,0xa9,0x24,0x6c,0x59,0x81,0xb3,0x71,0x73,0xf5,0xb3,0xe1,0x89,0xe4,0x62, + 0xfc,0x1d,0xbe,0xfa,0xb6,0x60,0x22,0xb8,0xda,0x1d,0x54,0x0e,0xd9,0x9c,0x52,0x27,0x5a,0xa6,0xb9,0xa1, + 0x89,0x9b,0x0e,0xb7,0xc0,0xcb,0xa2,0xb5,0x5b,0x8e,0xb5,0xc0,0xc9,0xa6,0xe0,0x9b,0x0e,0xa4,0xf1,0xfa, + 0x7d,0xc6,0xb0,0x07,0x0f,0xc1,0xfe,0x56,0xe8,0x98,0x22,0x2d,0xda,0xe8,0x46,0xd8,0xb0,0xf3,0xb9,0x61, + 0x91,0x77,0x84,0x8c,0x9b,0xfc,0x2d,0x66,0x7a,0x7b,0xb8,0xb8,0xc9,0xdd,0x66,0xb9,0x77,0x84,0x0a,0x2b, + 0xff,0x4e,0xdb,0x4a,0x09,0x4d,0xf5,0x43,0x1c,0x32,0xcb,0x5d,0xb6,0xcf,0x22,0x6b,0x6d,0x31,0x16,0x0b, + 0x0f,0xd1,0x47,0x55,0x3c,0x41,0x8a,0xef,0x87,0x7a,0xca,0x2f,0x9e,0x1c,0x51,0x3c,0xd9,0xf2,0xf6,0xaa, + 0x5e,0x9b,0x6e,0x5e,0xb7,0xf1,0x3c,0x88,0xcb,0x9c,0x15,0xf4,0xe2,0xbd,0xc6,0x39,0x49,0x53,0x5c,0x72, + 0x2e,0x5f,0xa5,0xe4,0x86,0x98,0xc1,0xb5,0xc8,0x91,0xd5,0x8d,0xa5,0xa0,0x33,0x64,0x02,0x36,0x7d,0x3e, + 0xc4,0x4d,0xa0,0x56,0xdc,0x18,0xad,0xcc,0x62,0x4b,0x09,0xa9,0x56,0x2c,0xc4,0x0b,0x7a,0x4d,0xe9,0xf8, + 0x8c,0x48,0x61,0xa4,0xca,0x65,0x7b,0x3e,0xe2,0xda,0x00,0x55,0xa8,0x69,0x2e,0x30,0x81,0x99,0x52,0x83, + 0x79,0x92,0xdc,0x00,0x31,0x5c,0x4c,0x9e,0x5f,0xcc,0x62,0xb1,0xad,0x01,0xa1,0xc1,0x05,0x4e,0x98,0xcb, + 0x07,0x61,0x47,0xa2,0x0e,0x41,0xb1,0x84,0x60,0x83,0x0a,0x4d,0x43,0x2d,0xf5,0x86,0x6d,0x6d,0xae,0x51, + 0x15,0xc8,0x36,0xbb,0x8b,0xe6,0x40,0x8e,0x52,0x7a,0x51,0xbc,0x67,0x4d,0x84,0x83,0xbd,0xfc,0xf3,0x23, + 0xa1,0x78,0xa1,0x76,0x92,0xb2,0x3c,0xde,0x04,0xc1,0xc7,0xb9,0xe2,0xe6,0x5e,0xac,0xd4,0x37,0x1f,0xb8, + 0x2a,0xd1,0xe2,0xf9,0x52,0x95,0xf3,0x01,0xae,0x50,0x1b,0xf4,0xc5,0x56,0x9b,0x71,0xe5,0x2a,0xa8,0x54, + 0xb1,0x7a,0x18,0x14,0x2d,0x1f,0xbb,0x59,0x6a,0xae,0x55,0x63,0x92,0x4e,0xf7,0x72,0x60,0xfa,0xd3,0xa7, + 0x14,0x31,0x14,0x93,0x33,0x3a,0xe1,0x2f,0xcd,0xf3,0xe9,0xe7,0x97,0x73,0x71,0x68,0x59,0xf6,0xe0,0xfe, + 0x02,0x4f,0x0e,0x3c,0x95,0xcd,0xd3,0x5d,0xce,0x58,0x15,0x7f,0xf9,0x72,0xb9,0x5c,0xfc,0xcb,0xd6,0xa7, + 0xf5,0xe9,0x4b,0x18,0x04,0x01,0xc7,0xbf,0x73,0xa4,0x8a,0x9f,0xee,0x36,0xbb,0x3b,0xe7,0x99,0xe0,0xcb, + 0xaf,0xf4,0xe5,0xe9,0x2e,0x70,0x02,0x27,0x7c,0x74,0x38,0x4c,0x68,0xf8,0xe9,0x2e,0x7c,0xbc,0xfb,0xfa, + 0x4b,0x85,0x58,0xee,0x64,0xa4,0x28,0x9e,0xee,0x3e,0xa4,0x1b,0xfe,0xb9,0x73,0xd2,0xa7,0xbb,0xbf,0x3d, + 0xfa,0xdb,0xfb,0xfb,0xf0,0xde,0xd9,0xfa,0x51,0xb8,0x2f,0xf6,0x7e,0xf0,0xb0,0xd9,0xef,0x9c,0xc8,0x7f, + 0xdc,0xee,0xc3,0xed,0x5f,0x37,0x8f,0xfe,0x7e,0x17,0x6c,0x23,0x39,0x7c,0xf7,0xe5,0xeb,0x2f,0x7c,0xe6, + 0xaf,0x9f,0x3e,0x3b,0xb2,0x6a,0x77,0x44,0xa3,0xc4,0x29,0xa9,0x57,0x63,0xf0,0x36,0x36,0xd8,0x59,0x35, + 0x50,0xf8,0xbe,0xe8,0x75,0xa5,0xe9,0x67,0x8b,0x58,0xf8,0xff,0x57,0x11,0x8f,0xc7,0x5d,0x9a,0xa0,0xdf, + 0xa5,0x88,0xfe,0xba,0xdf,0xce,0xa4,0x1c,0x7a,0x1e,0x91,0xec,0x14,0x15,0xe8,0x88,0x0b,0xb7,0xc0,0x27, + 0x5c,0xa6,0x9d,0x19,0x87,0x8c,0x2e,0x97,0xad,0xcb,0x62,0xb6,0x93,0x24,0xbf,0x8c,0xe0,0x22,0x85,0xb3, + 0x62,0xf0,0x35,0xb9,0x83,0xc6,0x2e,0x95,0x11,0x81,0x92,0x1c,0x27,0x3f,0x60,0x5f,0x9a,0xb5,0x3c,0x6c, + 0x62,0xfa,0xfd,0x2a,0x8b,0x6c,0xfc,0xf4,0xbe,0x10,0xd4,0x93,0x4f,0x93,0x41,0xbd,0x2b,0xa4,0xc4,0xdb, + 0x05,0x66,0xd7,0x4c,0x0a,0xe7,0x27,0x80,0x82,0x80,0xa2,0xee,0xae,0xe7,0x00,0x6a,0x19,0x05,0xd4,0x17, + 0x25,0xe9,0x66,0x13,0x9a,0xad,0x20,0xf9,0x48,0x1b,0x22,0x3a,0x3e,0x35,0x2e,0x10,0x23,0xcf,0x58,0x8f, + 0x0c,0x7e,0x4d,0x2f,0x57,0x89,0xb2,0x02,0xbf,0x1c,0xf8,0x1f,0x2f,0x25,0x35,0xf8,0x14,0x27,0x82,0xfd, + 0xd6,0x9e,0xcb,0x91,0xe7,0x94,0x98,0xff,0xf7,0xc0,0x3f,0x15,0x42,0x37,0xea,0xca,0x32,0xfa,0xd5,0x97, + 0xec,0x6c,0x58,0xfc,0xac,0xea,0xc4,0xe4,0xfc,0x57,0x2c,0x5b,0x4e,0xc3,0x20,0x9c,0x0f,0x9d,0xe8,0x66, + 0x79,0x70,0x94,0x9c,0x1b,0x21,0xa9,0xd7,0x80,0x5f,0xb0,0x11,0x47,0x9a,0x72,0x8e,0x06,0xce,0x31,0x22, + 0xc9,0x6d,0x65,0x20,0x49,0xd0,0x88,0xd2,0xb0,0x1a,0xb3,0x24,0x37,0x70,0x14,0x4c,0x9b,0x0c,0xc1,0xb6, + 0xe3,0xd6,0xd4,0xb1,0x06,0xa0,0x40,0x73,0x86,0xb5,0x4e,0x1c,0x13,0x44,0x8a,0x37,0xce,0x66,0xb0,0x9d, + 0xd9,0x1c,0xbd,0x5a,0x12,0xd4,0x3b,0xd5,0xf4,0xc0,0x50,0x7d,0x79,0x34,0xcb,0xc0,0x57,0xbd,0x4d,0xd0, + 0xe9,0x5c,0x36,0xeb,0xd8,0xa1,0x89,0x1d,0xde,0xc0,0xde,0x9b,0xd8,0xfb,0x55,0xec,0xed,0xd6,0x5d,0x1b, + 0xdd,0x19,0xbc,0xb6,0x5b,0x7f,0x0b,0xff,0x56,0x19,0xee,0x4d,0x61,0xf7,0xeb,0xc2,0x46,0xd1,0xda,0xf4, + 0xd1,0xbd,0xc1,0x2b,0x8a,0xfc,0x08,0xfe,0xad,0x32,0xbc,0x37,0x57,0x7f,0xbf,0xbe,0xfa,0x07,0x53,0xd8, + 0x87,0x75,0x61,0x1f,0x4d,0xec,0xc7,0x05,0x6c,0x30,0xae,0x70,0x18,0x1e,0x6b,0xc1,0xb2,0x86,0x87,0xd8, + 0x29,0x42,0x8d,0x22,0x34,0x28,0x96,0x6c,0x0d,0x46,0x1e,0x29,0xf6,0x06,0xc5,0xc2,0x8a,0x17,0x0c,0x0d, + 0x16,0xbe,0x32,0x1a,0xcc,0xab,0x71,0x5b,0xb5,0xf8,0x4e,0x13,0x7b,0x67,0x88,0xbd,0x5b,0x10,0x7b,0xaf, + 0x51,0xec,0x0d,0x8a,0x25,0x3f,0x89,0x34,0x8a,0xc8,0xa0,0x88,0x96,0x28,0xec,0x2e,0x05,0xbe,0x34,0x32, + 0x52,0x8e,0xa4,0x73,0x5b,0xf3,0xad,0x7b,0x4d,0xdb,0xf7,0x86,0xb6,0x97,0xfc,0xeb,0x41,0x13,0xfb,0xc1, + 0x10,0x7b,0xc9,0xc7,0x1e,0x35,0x8a,0x47,0x83,0x62,0xea,0x67,0xc3,0xb7,0x16,0x60,0x21,0x84,0x65,0xd3, + 0xf8,0x3a,0x43,0x37,0x62,0xed,0x48,0x31,0x84,0xda,0x19,0xbe,0x11,0x76,0x05,0xbe,0x8a,0xba,0x7f,0x3a, + 0xe3,0x94,0x20,0xe7,0x27,0x7e,0xb8,0x0f,0xf6,0x86,0x43,0xeb,0x73,0x27,0x0e,0xa6,0xc9,0x59,0x04,0x20, + 0x23,0x62,0x7a,0x5a,0x9e,0x9b,0xa0,0x22,0xf9,0x89,0xc7,0x4a,0xe7,0x67,0x71,0xec,0x7d,0x36,0x83,0xb0, + 0x79,0xdc,0x0f,0x39,0xf4,0x78,0x52,0x72,0x4e,0x7d,0x8f,0xb4,0x3a,0xcd,0x7a,0x61,0xd2,0xab,0x6c,0xd4, + 0x45,0x66,0x5d,0xa7,0xaa,0xf2,0xb4,0x70,0x69,0xe1,0xb6,0x45,0x57,0x90,0x06,0xd2,0x0f,0xf6,0x5a,0xa8, + 0xda,0x40,0x4d,0xcf,0xcb,0x9c,0x6b,0x3a,0xa1,0xa2,0x3e,0x10,0x39,0x40,0x07,0x7f,0xa9,0xf8,0xdb,0x72, + 0x1e,0x8e,0xe0,0xc4,0x21,0x54,0x40,0x5a,0x01,0x69,0x05,0xa4,0xe5,0x90,0x6e,0x4c,0x70,0xa4,0x85,0x45, + 0x46,0x20,0x0b,0x2e,0x1e,0x2b,0xe4,0x0f,0x91,0x1f,0x52,0x43,0x1c,0x58,0x10,0x24,0x82,0x85,0x43,0xca, + 0x86,0xa4,0xb8,0x37,0x65,0x4d,0x48,0x0d,0xe5,0xeb,0x30,0x36,0xb9,0x61,0x4b,0x53,0x37,0x65,0x6e,0x41, + 0x26,0xba,0xdc,0xe8,0x99,0x93,0xcc,0x85,0x66,0xa5,0xd2,0x84,0x62,0x7a,0xcf,0x07,0xcb,0x76,0x33,0x72, + 0x6a,0x6b,0xec,0xf2,0x6b,0x28,0xae,0xc3,0xca,0x85,0x4a,0xd1,0x65,0xbc,0x86,0xe6,0xfa,0x34,0x19,0x84, + 0x92,0x81,0x18,0x1d,0x72,0xb5,0xe1,0x82,0xcc,0x48,0x50,0x58,0xea,0xb2,0xbc,0xbb,0x5e,0xaf,0xca,0x54, + 0x4f,0x2f,0xc1,0xf0,0x86,0x7f,0xc6,0xaa,0x55,0x96,0xd2,0xaa,0x6e,0xd5,0xee,0xd0,0xb8,0xa9,0x80,0x5b, + 0x9c,0x91,0x7a,0xb8,0x90,0x04,0xce,0xfa,0x63,0x37,0xb1,0x2a,0x20,0x8f,0x97,0x97,0x1c,0x57,0xbb,0xca, + 0x34,0x93,0xf8,0xa0,0x3f,0xba,0x90,0x5f,0x50,0x48,0x9e,0x26,0x49,0x6a,0x5f,0x75,0xba,0xe3,0xf4,0xf9, + 0xc6,0xcd,0x43,0x37,0xdf,0xba,0xf9,0xce,0xcd,0xf7,0x6e,0x1e,0x75,0x37,0x2e,0x6f,0x3d,0x79,0x5d,0x38, + 0xd1,0x9e,0x06,0x1a,0xf8,0x6a,0xee,0xb4,0x93,0xf9,0xb2,0x79,0xe3,0x1b,0xf6,0x79,0xa8,0xe1,0x6c,0xad, + 0x38,0xfb,0x3e,0xdf,0x6a,0x48,0xa1,0xba,0xc0,0x34,0x90,0xb6,0x7d,0xbe,0x33,0x70,0x42,0xcb,0x25,0xa7, + 0x07,0xc5,0x81,0x85,0x14,0xf8,0xef,0x3b,0x3d,0xb1,0xb7,0x5d,0x90,0x02,0xed,0x7e,0x4e,0x0b,0xa4,0x51, + 0x37,0xab,0x09,0x26,0xa4,0xc1,0x84,0x68,0xd7,0x93,0xf3,0xa9,0x33,0x93,0x32,0x48,0xc3,0x79,0x7f,0x27, + 0x23,0x2f,0xf2,0x9a,0xbf,0x93,0x8d,0x3d,0x50,0x6d,0x7e,0xe0,0x09,0x3a,0x44,0xb5,0xf8,0x93,0xf3,0xe9, + 0xda,0x15,0x11,0x3e,0xda,0xfb,0x59,0x41,0x11,0x13,0xae,0xd1,0x89,0x9f,0xd2,0xa1,0x14,0x58,0xb8,0x81, + 0x82,0x8b,0xdf,0xfd,0xb7,0x67,0x2f,0x81,0xc7,0x1f,0x63,0x25,0x21,0x82,0x8f,0x78,0x19,0xc0,0x72,0x71, + 0x05,0x86,0xd7,0x2e,0x29,0xf5,0xf7,0x03,0xfe,0x85,0xeb,0x14,0x95,0xeb,0x6f,0x01,0x04,0xd5,0x58,0x56, + 0x2a,0x17,0x11,0x71,0x43,0x85,0xe6,0x26,0xa9,0x31,0x2e,0x1d,0x54,0xa6,0x7a,0x94,0xbe,0x8f,0x1e,0xaa, + 0x97,0xcf,0x9d,0x90,0x68,0x20,0xe6,0xce,0x24,0x28,0x65,0x99,0x34,0x6e,0xff,0x51,0xb8,0xfe,0xc3,0x58, + 0xc5,0xcc,0x17,0x12,0x06,0xfc,0xa3,0xfb,0xa6,0x51,0xcf,0x6c,0x26,0x9d,0x11,0x79,0xf2,0x57,0x2f,0xce, + 0x87,0x2c,0xc9,0xa2,0xe4,0x7a,0x6b,0x2f,0xf7,0xf6,0x86,0x0f,0x80,0x6a,0xde,0xb4,0x0e,0x4d,0x2c,0x0d, + 0x6e,0x1c,0x36,0x7a,0xbe,0x2e,0x37,0x2e,0x87,0xf4,0xbd,0x9f,0x63,0x04,0xb3,0x76,0xb3,0x32,0x6b,0x18, + 0x71,0xb8,0x17,0x8d,0x56,0x37,0x79,0x6c,0x96,0x34,0x3d,0xa6,0x05,0xd1,0x3d,0x97,0x70,0x60,0xe6,0x5f, + 0x48,0x06,0x01,0x1b,0x31,0x28,0xf6,0x35,0xdf,0xd3,0x74,0x26,0x4d,0xf0,0x96,0x55,0xdb,0x78,0x5e,0x97, + 0x81,0x8e,0xa0,0xc7,0x96,0xe1,0xc3,0xf0,0xae,0x86,0x8c,0x15,0xbd,0x85,0xc8,0xf1,0x49,0x99,0x92,0x04, + 0x31,0x5a,0xdb,0xab,0x5b,0xb5,0x7f,0xb8,0xfd,0x86,0xdd,0x25,0x6d,0xa9,0x77,0xbe,0xf6,0xd7,0x73,0x4c, + 0xe9,0x46,0xd5,0xbd,0xab,0xf3,0x7d,0xe3,0xad,0x0d,0x4f,0x82,0x9f,0xc0,0x88,0x25,0x9c,0x3b,0xfc,0x9a, + 0x7c,0xee,0x5c,0xdb,0xc7,0xe8,0x3d,0xbc,0x60,0x1d,0x3a,0xbb,0xa9,0x67,0x9d,0x6a,0xfc,0xfa,0x5f,0x88, + 0x06,0x6e,0x6c,0x93,0x2d,0x7b,0xdc,0xbe,0x87,0x19,0xae,0x6b,0x5a,0xdb,0xf8,0x24,0xc1,0x24,0x98,0x6f, + 0xa2,0x6a,0x70,0x38,0x1e,0xe7,0x43,0xb5,0x15,0x1b,0x52,0x40,0xf2,0x32,0x0d,0x02,0x23,0xde,0x56,0xe1, + 0xf1,0x55,0xce,0xfb,0x9a,0x1f,0xc2,0x07,0xfe,0xd1,0xc9,0x77,0xd5,0xf5,0xe6,0x42,0x85,0x90,0xa9,0xaa, + 0x60,0xbe,0x06,0xdc,0x4a,0x67,0xac,0x35,0xb7,0x81,0x7c,0xfe,0xc6,0xca,0x24,0x0e,0xf4,0x3e,0x04,0xd3, + 0x55,0xa7,0x17,0x08,0x8e,0x4a,0x5b,0x2c,0xea,0x51,0x0d,0xd7,0x31,0x1c,0xfd,0x81,0x9c,0x2b,0x5a,0x33, + 0x34,0xbd,0x77,0x91,0x22,0xeb,0xdc,0xde,0x73,0x09,0xff,0xb6,0xfd,0x6c,0xc8,0xaa,0x1d,0x30,0xaa,0xc7, + 0x34,0x7b,0xe3,0xa3,0xa4,0x5c,0x3d,0x05,0xbd,0xe0,0xf4,0xb0,0x6e,0x9d,0x88,0x7f,0x26,0x4d,0x27,0x63, + 0x63,0x49,0x6d,0xe6,0xa4,0x64,0x8b,0x5d,0x33,0x6e,0x11,0x6d,0x16,0x6b,0x02,0xe7,0x43,0x4c,0x13,0x3d, + 0x9f,0x89,0x1d,0xe6,0xa6,0xec,0xfd,0xa6,0x3d,0xd2,0x8a,0xc7,0x95,0xc6,0x2c,0xe9,0x05,0x1f,0xa9,0x84, + 0xa6,0xb3,0xd1,0x81,0x17,0x81,0xe7,0x74,0x33,0x5f,0x68,0x18,0xae,0x0c,0x56,0x5b,0x2d,0xad,0x19,0xbb, + 0xa3,0xf3,0xee,0x97,0x24,0x75,0x14,0xe7,0x69,0x53,0x4d,0x91,0xee,0x86,0x29,0x1c,0xff,0x19,0x15,0x2d, + 0xbe,0x11,0x16,0x65,0x9a,0xa5,0xfb,0x8e,0xe4,0xde,0x41,0x6e,0x76,0xfc,0x41,0x60,0x51,0x93,0xbb,0x02, + 0xad,0xcb,0xa3,0x02,0xa2,0x4c,0x39,0x27,0x77,0x01,0xa1,0x04,0x6a,0x97,0x37,0xca,0x85,0xb5,0x17,0x91, + 0xe4,0x4c,0x71,0x3c,0x4c,0x25,0x9f,0x3d,0x96,0xb7,0xe7,0xe3,0xe2,0xfc,0x76,0x79,0x42,0x2d,0x40,0x87, + 0xf6,0x00,0x6d,0x5c,0x24,0xc9,0x53,0xd7,0x7c,0xe9,0x4d,0x13,0xe8,0x4c,0x7f,0x03,0xd2,0xf2,0x84,0x95, + 0x30,0xff,0xcb,0x49,0x2e,0xa8,0x2e,0xb9,0xeb,0xe9,0xa8,0xdb,0x20,0xcc,0x20,0x2c,0x59,0xb3,0x80,0xf1, + 0x82,0x64,0x6f,0x4d,0x88,0x7b,0xbf,0xa4,0x3c,0xc4,0xea,0xf1,0xc9,0xe2,0x8e,0x8c,0x9c,0xf1,0x3f,0xc1, + 0xf2,0x27,0xf0,0x49,0xc7,0x67,0xf2,0xd7,0xfc,0x74,0x98,0xbc,0xfb,0xa8,0x27,0xde,0x83,0x1c,0x62,0xd2, + 0xff,0x00,0x72,0xab,0xf3,0xf7,0x2d,0x2a,0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index e5d8fb7..5ccd4ce 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,122 +4,131 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x5a,0x69,0x5b,0xe3,0x38,0x12,0xfe,0x2b,0xee, - 0xec,0xee,0x13,0xd8,0x6e,0x72,0x11,0xe8,0x86,0x25,0xec,0x38,0x17,0xb9,0xc9,0x0d,0xc9,0x37,0xd9,0x56, - 0x6c,0x11,0x5f,0x58,0x72,0x42,0xba,0x67,0xfe,0xfb,0xca,0xb7,0xe2,0xd8,0x49,0x7a,0xfa,0x99,0x67,0x87, - 0x0f,0x18,0xa9,0x4a,0x55,0x6f,0x95,0xab,0x4a,0x25,0x99,0x87,0x4f,0xf5,0xe7,0xda,0x74,0x31,0x6c,0x70, - 0x0a,0xd1,0xd4,0xc7,0x07,0xff,0x37,0x04,0xd2,0xe3,0x83,0x06,0x09,0xe0,0x44,0x05,0x58,0x18,0x92,0x4a, - 0x66,0x36,0x6d,0x5e,0x7d,0xcb,0x3c,0x3e,0x10,0x44,0x54,0xf8,0xf8,0x90,0xf7,0x9f,0x2e,0x93,0x0e,0x34, - 0x58,0xc9,0x10,0x05,0x6a,0xf0,0x4a,0x34,0x54,0xc3,0xca,0x70,0xa2,0xa1,0x13,0xa8,0xd3,0x75,0xff,0x28, - 0xb8,0x3f,0x99,0x3d,0xd6,0x0d,0x82,0x5b,0xd3,0xb0,0x08,0xc3,0xb7,0x45,0x12,0x51,0x2a,0x12,0xdc,0x20, - 0x11,0x5e,0xb9,0x83,0x2f,0x48,0x47,0x04,0x01,0xf5,0x0a,0x8b,0x40,0x85,0x95,0x22,0x15,0xa1,0x22,0x7d, - 0xcd,0x59,0x50,0xad,0x64,0x30,0xd9,0xa9,0x10,0x2b,0x10,0x52,0x19,0x8a,0x05,0x57,0x95,0x8c,0x60,0xeb, - 0x92,0x0a,0x73,0x22,0xc6,0x94,0x11,0x8b,0x16,0x32,0x09,0x87,0x2d,0x31,0x24,0xbc,0x39,0xf3,0x79,0x8f, - 0x40,0xff,0xf0,0x6c,0x14,0x0c,0x69,0xf7,0xf8,0x20,0xa1,0x0d,0x87,0xa4,0x4a,0x06,0x98,0x66,0xc6,0x1b, - 0x6d,0xae,0x44,0xd5,0x00,0xeb,0x88,0xe4,0xe0,0x04,0x48,0x87,0x96,0xcf,0x20,0xaa,0x00,0xe3,0x4a,0xc6, - 0x91,0xe2,0xce,0x21,0x4d,0xf6,0xb4,0x49,0x80,0x80,0x7b,0xa4,0x01,0x19,0xe6,0x4d,0x5d,0xfe,0x8f,0x00, - 0x30,0xbc,0x2d,0x7f,0x41,0xf3,0xea,0xf3,0x78,0x5b,0xe8,0x3e,0xc9,0x06,0x4f,0x7f,0x06,0x93,0x99,0xd2, - 0x98,0xc9,0xf4,0xaf,0xba,0x33,0xe4,0xb7,0x35,0x7e,0x41,0x1f,0xd5,0x57,0x7e,0xa3,0xb5,0x9c,0x89,0xa7, - 0xd7,0x71,0xf3,0xa5,0x35,0x9e,0x0a,0xa5,0x65,0x41,0x2a,0x35,0x77,0xcb,0x51,0xb5,0xba,0x7c,0xba,0x43, - 0xcb,0x49,0xb5,0x23,0xbc,0x34,0xf5,0xe5,0xbc,0xa3,0x2e,0x5e,0xc6,0x37,0xa2,0xa8,0xaa,0x43,0x67,0xc1, - 0x6b,0xb5,0x33,0x6e,0x34,0x67,0x70,0x60,0xe1,0x17,0xa9,0x31,0x90,0xdf,0xf8,0x51,0x4f,0x5c,0x54,0x45, - 0x7e,0x28,0xf2,0x35,0x69,0x34,0x28,0xf3,0x83,0x52,0xbf,0x56,0x96,0xc7,0x78,0xd1,0xb9,0x6b,0x0c,0x24, - 0x7e,0xb8,0xe0,0xeb,0x80,0xaf,0x43,0x53,0x9a,0x29,0xfd,0xe2,0x7b,0xf3,0xcd,0xb6,0x64,0xf3,0x6e,0x22, - 0xf6,0x5b,0xb2,0xf4,0xb5,0x78,0x3d,0xbf,0x5e,0x91,0x99,0x79,0x03,0x5b,0x72,0xbf,0x59,0xb4,0xac,0xa7, - 0x06,0xb0,0x6f,0xe7,0xad,0x7a,0xa9,0xd5,0x17,0x5a,0x37,0xef,0x9d,0xe7,0x5e,0xcb,0x02,0x9f,0x57,0xeb, - 0xef,0x02,0x5e,0x8c,0xb1,0xd2,0xff,0x66,0xf6,0xa6,0xf2,0xac,0x2d,0x4f,0xe4,0x8d,0xdd,0xef,0x1b,0x8b, - 0xed,0x67,0xd4,0x5f,0x4c,0xad,0xdb,0x91,0x32,0x58,0xf4,0xad,0x01,0x1a,0xec,0xb6,0xed,0x9e,0xba,0x9b, - 0x77,0x25,0x71,0xb7,0x1b,0x62,0x4d,0x1c,0xe3,0xdd,0xec,0xa6,0xb0,0x96,0x5b,0x64,0x34,0xb2,0x4b,0xbc, - 0x34,0xe8,0x34,0xcd,0xfa,0x9a,0xef,0x96,0xdb,0xf9,0x5e,0xfb,0xa5,0x2f,0x94,0x78,0xdc,0xae,0x8a,0xef, - 0x05,0x34,0x7e,0x82,0xa3,0xa7,0xe1,0x74,0xb9,0x9a,0xdf,0x8e,0x1a,0x85,0xcf,0x72,0xfd,0xa9,0x59,0xb2, - 0x0c,0xfc,0xd4,0x90,0xfb,0xa3,0x8f,0x36,0xaf,0xe8,0x4b,0x1e,0x0d,0x07,0xdf,0xca,0xb6,0x39,0x5e,0x15, - 0xf2,0xcf,0xaa,0x89,0x7b,0xb5,0xaa,0x79,0xbd,0x7b,0x2f,0x88,0x8a,0x4c,0x6a,0xb3,0xd9,0xd2,0x1a,0x6f, - 0x6f,0x47,0xf5,0xe7,0xeb,0xc6,0x4b,0x6b,0xf2,0xde,0xbc,0x23,0xc0,0x5a,0x82,0x49,0xb7,0xf3,0x0a,0x3b, - 0x75,0x49,0x18,0xa9,0xb8,0x51,0xe8,0xd6,0x6f,0x3b,0x83,0x7c,0xd7,0x18,0xe3,0x27,0xe5,0xe3,0xb5,0x5b, - 0x53,0x6b,0xdd,0x56,0xa7,0xbd,0x5a,0x4f,0x95,0x6d,0xff,0x45,0xe1,0x6f,0xa5,0xea,0xc4,0x50,0xc7,0xe8, - 0x6d,0xdd,0x79,0x96,0x8a,0xcb,0xd9,0xe6,0x6e,0x37,0xba,0x7b,0x36,0xdf,0x85,0x96,0x89,0xc0,0x6c,0x0e, - 0x1a,0xc2,0xb2,0xf1,0x95,0xb4,0xdb,0x6f,0x46,0xb5,0xfb,0xba,0xc3,0x06,0x2e,0x8a,0xe5,0xf9,0x37,0x28, - 0xf4,0x1a,0x92,0xb0,0x29,0x09,0x62,0x1f,0x37,0xbe,0xca,0x6f,0x76,0x55,0xda,0xbc,0x8e,0x27,0x9d,0x72, - 0xf3,0x73,0x7e,0xfb,0xde,0x7e,0x7d,0xb5,0xda,0x4f,0x5b,0xed,0xf5,0xfa,0xfb,0x16,0x88,0xbd,0xba,0x02, - 0x07,0xcf,0x77,0xc5,0xe7,0xb7,0xde,0xa8,0x2b,0x15,0xcb,0xf3,0x7e,0xbd,0xa6,0x2f,0xe4,0xda,0xc7,0xfc, - 0xad,0x7d,0x3d,0x98,0xc2,0xa2,0x36,0x31,0x86,0xf5,0xf2,0xdd,0x47,0x79,0x62,0xd1,0xe0,0xb8,0x7b,0x1f, - 0xea,0x65,0x68,0x6c,0x6a,0x7d,0x37,0x7a,0x1a,0x6a,0x73,0xba,0x9e,0xd8,0x23,0xad,0x56,0xa3,0x91,0xa8, - 0x14,0x1f,0x7f,0xfc,0xe0,0xfe,0x49,0x2e,0xb2,0x6e,0x8a,0x66,0x2f,0xb9,0x3f,0xfe,0xa0,0xe1,0x5e,0xa4, - 0x94,0x92,0x43,0xd9,0x40,0x0b,0x23,0x43,0xcf,0xe1,0x1d,0x26,0x50,0x6b,0xd7,0xb9,0x4f,0x95,0x0a,0xa7, - 0xdb,0xaa,0xca,0xfd,0xd7,0x5d,0x15,0xcc,0xd3,0x85,0x9f,0xb9,0xec,0x3d,0x97,0xa5,0x8f,0x83,0x35,0x74, - 0x3a,0xeb,0xc9,0x2d,0xed,0xe5,0xc3,0x16,0xad,0x10,0x26,0x80,0xd8,0x78,0x3f,0x4f,0x68,0xfa,0xe8,0x50, - 0x24,0x54,0xc6,0xfe,0x3c,0xd2,0x25,0x24,0x02,0xe2,0x54,0x8c,0x7b,0x27,0x73,0xae,0xbc,0xc5,0x9e,0xa0, - 0x89,0xfb,0x77,0x0e,0x98,0x39,0xa8,0x03,0x41,0x85,0x12,0x45,0x98,0xf5,0x25,0x41,0x29,0xeb,0x80,0x90, - 0x10,0x8e,0x26,0x9c,0xfc,0xa6,0xb2,0x03,0xf3,0x59,0x11,0xa2,0x08,0x31,0x36,0x0d,0xa4,0x93,0x5c,0xe4, - 0x15,0x8e,0x32,0xa6,0xe9,0xd9,0x9f,0x47,0x26,0x55,0x76,0x44,0x26,0x85,0xe1,0x2e,0xf4,0x9d,0xed,0x80, - 0xf8,0x25,0xeb,0x65,0x48,0x5e,0x50,0xd3,0xd5,0x44,0x17,0x79,0x0a,0x2f,0x2e,0xd3,0xed,0xc3,0x1e,0xa3, - 0x66,0x48,0x30,0x66,0x5f,0x92,0xa4,0x29,0xfc,0x20,0x17,0x0c,0x52,0xf6,0xb7,0x57,0xfc,0x10,0xad,0xa7, - 0xb4,0xfe,0x49,0x48,0x97,0x33,0x01,0xd8,0x60,0x1c,0xa8,0xf7,0xc7,0xa1,0x26,0x7f,0xdc,0x0e,0x6c,0xda, - 0xf7,0x84,0x27,0xf3,0x53,0x28,0x84,0x75,0x03,0x01,0x82,0x13,0x2e,0x82,0x4d,0x88,0xa1,0x07,0x93,0xde, - 0x88,0x3a,0xc6,0x1f,0xff,0xe0,0xb2,0xde,0xd4,0x95,0x61,0x13,0xba,0x0f,0x40,0x1a,0x9a,0x80,0xfa,0x74, - 0x03,0xa7,0x40,0xa0,0x31,0xcc,0x65,0x3d,0xe7,0xd1,0xb0,0xcc,0x70,0xbf,0x89,0x2a,0x12,0xd7,0xb4,0xa0, - 0x87,0x0c,0x11,0x3d,0x34,0xc0,0x1b,0xe7,0xa8,0xf6,0x29,0x93,0x28,0x9e,0x92,0x47,0xee,0x97,0xe1,0x10, - 0x0b,0xc9,0x32,0xcd,0x9b,0x74,0x40,0x21,0x47,0x08,0x29,0x98,0xf9,0xcb,0x40,0x45,0x91,0x98,0x0e,0x8b, - 0xe1,0x09,0x81,0x45,0x73,0x7f,0x19,0x34,0xaf,0xb6,0x1c,0x79,0x7d,0x1e,0x3d,0x7a,0x7d,0xee,0x38,0x05, - 0xce,0x41,0xe4,0x31,0xa2,0xd8,0x50,0x78,0x50,0xae,0xe3,0xe1,0xc0,0x16,0xcd,0x6b,0x57,0x04,0xdd,0xdd, - 0x75,0xd3,0x26,0x1c,0xd9,0x99,0xb4,0x77,0xb1,0x68,0x04,0x1b,0x19,0xbf,0x91,0x01,0xaa,0x3a,0x21,0xd0, - 0xc4,0xd4,0xd0,0x0d,0x50,0x6d,0xa7,0x0b,0xb2,0x6c,0x98,0xa1,0x4a,0x9d,0x5c,0x54,0x59,0x06,0xb7,0xc1, - 0xf0,0x47,0x53,0x87,0x89,0xb6,0x33,0x40,0x80,0x6a,0x98,0x5f,0xce,0xe0,0x0a,0xe9,0x8e,0x73,0x32,0xdc, - 0xca,0xb0,0xe2,0xec,0xfb,0x38,0x59,0x9a,0x0f,0xd7,0x95,0xc0,0x98,0xfe,0x53,0xb8,0x57,0x40,0xc5,0xa7, - 0x81,0x37,0x5d,0xae,0xf3,0x91,0xfb,0xfc,0xc9,0xd0,0x5d,0x62,0x0a,0xf6,0x40,0x36,0x56,0x11,0x6d,0xb0, - 0x62,0xbb,0x09,0x7d,0xf1,0x66,0x26,0x78,0xb1,0x01,0x4e,0xda,0xf4,0x99,0x20,0x8c,0x3f,0xd7,0x2a,0x57, - 0x71,0x1f,0x10,0x25,0xb7,0x52,0x0d,0xc3,0xba,0x08,0x78,0xe7,0x0e,0x91,0xcb,0x73,0xa5,0x9b,0x1b,0xee, - 0xdf,0x5c,0xb1,0x50,0x70,0x30,0xfc,0x8b,0x36,0x87,0x54,0x40,0x82,0x76,0xb6,0xf7,0xdb,0xf7,0xa8,0x2e, - 0x53,0x83,0x35,0xa4,0x57,0x32,0x05,0xfa,0x04,0x1f,0x95,0x0c,0x15,0x99,0xd9,0x5f,0x1d,0xfa,0x34,0xa7, - 0xdb,0x9a,0x00,0x19,0xe7,0xcc,0x3d,0x8c,0x07,0xf5,0x37,0xc1,0xca,0x4f,0xd1,0xeb,0xd8,0x5c,0xb9,0x1e, - 0xbe,0x70,0xc8,0x5f,0x38,0xba,0x85,0xc0,0x8f,0x4b,0xfa,0xe0,0xf0,0xb9,0x5e,0x70,0x18,0x73,0x9b,0xff, - 0xaf,0x0b,0x22,0x0c,0x31,0xfb,0x93,0xf7,0xa2,0xfd,0xec,0x65,0xea,0xe6,0x03,0xf5,0x85,0xc6,0xfd,0x86, - 0x6d,0x41,0x43,0x24,0x67,0x5a,0x70,0xe3,0x1e,0x26,0x68,0x23,0xaf,0xee,0xa6,0x3e,0x9b,0xc3,0x85,0xa0, - 0x2a,0xd1,0x63,0x0c,0x9b,0xef,0x51,0xad,0x45,0x1a,0x9c,0x1e,0x66,0x7d,0xd8,0xd2,0x00,0x4b,0x77,0xf7, - 0x41,0xff,0x4d,0x1c,0x6e,0xbb,0x61,0xdb,0xf0,0xfb,0xef,0x5c,0x02,0xd5,0x8b,0x7a,0xa7,0xc6,0x5d,0x27, - 0x14,0x7a,0xaa,0xbc,0x4d,0x8f,0x40,0x96,0x0e,0x09,0xdb,0x3d,0xe4,0x23,0xc8,0x47,0xc1,0x6b,0x86,0xa3, - 0x23,0x0e,0x9f,0x59,0x9d,0x77,0x3c,0x74,0xca,0xa3,0x7b,0x25,0xff,0x98,0x4f,0x6b,0x6c,0x27,0x93,0x04, - 0x8c,0xdd,0x28,0x62,0xa0,0xd8,0xb8,0x11,0x15,0x28,0xae,0x05,0xe3,0xc3,0xaf,0x2e,0x51,0x2b,0xc5,0x54, - 0x20,0x46,0x14,0xcb,0x70,0x46,0xf1,0x61,0xb9,0x0f,0x71,0x31,0xe4,0xfd,0xe2,0xc3,0x66,0x8e,0x72,0x7a, - 0x71,0x2b,0x12,0xe0,0x66,0x0d,0x77,0xc4,0x42,0x3f,0x16,0x92,0xad,0x0b,0x88,0xa7,0x2d,0x0b,0x39,0x0f, - 0x81,0x31,0x2d,0xe0,0xcf,0x5b,0xc5,0x2c,0x8e,0x5b,0xe5,0x63,0xf2,0xd4,0x63,0x24,0x25,0x2e,0xa7,0xf3, - 0xfb,0x4a,0x59,0x4f,0x10,0xda,0x6e,0xfa,0x5e,0x70,0xd6,0x27,0xbb,0xc0,0xa5,0xdc,0x07,0x7d,0x34,0x4d, - 0xb3,0x23,0xfe,0x71,0xb1,0x98,0xd4,0xa0,0xad,0x61,0x25,0xe2,0x09,0x68,0xe9,0x98,0xc2,0xd5,0x2e,0xae, - 0x68,0x94,0x84,0x2d,0xa2,0x9e,0xc2,0x77,0x2c,0x02,0x24,0x45,0x34,0x93,0xe5,0x7b,0x94,0x33,0x6d,0x4f, - 0x8f,0x0d,0x57,0x4c,0x82,0x33,0x9c,0xf9,0x9f,0x8f,0x08,0x67,0xd5,0x41,0x28,0xb0,0xdb,0x82,0x2d,0x18, - 0xa6,0xc3,0x89,0xf7,0x5f,0x0b,0x4a,0xc4,0x80,0x4c,0x20,0x49,0x16,0x4d,0x9c,0x73,0xa2,0x04,0xa5,0xf8, - 0x09,0x9d,0xf4,0x92,0x53,0x80,0xe3,0x8e,0xdd,0x0f,0x60,0x5b,0xa0,0x75,0x56,0x03,0x78,0x9d,0x18,0xc6, - 0x21,0xf5,0xac,0x60,0x8e,0x64,0x25,0x87,0x34,0x43,0xff,0x45,0xd8,0x32,0x20,0x70,0x0b,0x76,0x49,0x98, - 0x7d,0xd2,0x39,0x80,0x03,0x29,0x89,0x68,0x43,0xe2,0x9f,0x81,0xea,0x6d,0x2e,0x0c,0x60,0xc5,0xc0,0xc4, - 0x69,0x34,0x93,0x10,0x07,0xb4,0x53,0x90,0xef,0x4d,0x15,0x88,0x50,0x31,0x54,0xc9,0x69,0x18,0x52,0x84, - 0x0c,0x23,0x9e,0xec,0xa5,0x67,0x66,0xa8,0x3b,0xd1,0xce,0x88,0x7a,0x32,0xe1,0x98,0x68,0xf7,0x4e,0x15, - 0x38,0x6c,0x7e,0xf6,0xa6,0xaf,0x4c,0x0b,0x69,0xc0,0xa2,0xbe,0xf3,0xe0,0x7b,0x1b,0xe7,0x9e,0x02,0x0c, - 0x36,0x6e,0x0b,0x11,0x34,0xdb,0xde,0xd8,0xbf,0x70,0x71,0x37,0xd6,0xaa,0x2b,0x6a,0xe2,0xce,0x53,0xcf, - 0xdc,0xc7,0x29,0xd9,0xcb,0xa8,0x51,0xfa,0xc9,0xcd,0x3d,0x3c,0x38,0xa5,0x6c,0xec,0xb6,0xe9,0x9c,0xca, - 0x9b,0xc8,0xd2,0x68,0xab,0x03,0xfd,0xe0,0x76,0xd7,0xa4,0xec,0xf1,0xfe,0xc9,0x6b,0xe5,0xaf,0x88,0x37, - 0x1f,0xec,0xab,0x5c,0x21,0xd5,0x97,0x18,0x70,0x37,0x9d,0x99,0xbf,0xaf,0x73,0x23,0x27,0x7a,0x6e,0x19, - 0x5a,0x86,0xec,0x14,0x2e,0xf7,0x96,0x6c,0x15,0x9e,0x66,0x62,0x44,0xb7,0x75,0x4e,0x79,0x39,0x47,0xba, - 0xa9,0x89,0xe7,0xe5,0xb3,0x3d,0xae,0x13,0xf3,0x6f,0xd7,0xa8,0x32,0x59,0xaf,0x02,0x12,0x3f,0x9d,0x53, - 0xc4,0x3d,0x40,0xce,0xa9,0x4e,0xce,0xe2,0x28,0x63,0xfd,0xe5,0xae,0xc4,0x3d,0x15,0xcc,0x05,0x14,0xa3, - 0xc2,0xbf,0x86,0x3a,0xa5,0xc2,0x73,0x4e,0x4c,0x45,0xfc,0x36,0x2a,0x6d,0x67,0x53,0x0d,0xd1,0xef,0xe1, - 0x92,0xf6,0xe0,0x04,0x50,0x3e,0xff,0x59,0xc8,0x42,0xd9,0x21,0xbc,0x70,0x2a,0xe5,0x6a,0x85,0xdb,0xbf, - 0x4e,0x09,0x2e,0x4d,0xa2,0x08,0xc3,0x10,0x58,0xa2,0xd2,0x0b,0x25,0xb3,0x19,0xe3,0x92,0x68,0xac,0x84, - 0xd4,0x74,0xf8,0x13,0x97,0x37,0xf1,0x76,0xe5,0x20,0x3e,0x4d,0xa4,0xe3,0x78,0x80,0xb2,0x2d,0x1b,0xd2, - 0x7b,0x8d,0x3a,0x3f,0x8c,0x6b,0x0b,0xe6,0xd3,0x3d,0xe5,0x1d,0x1b,0xfd,0x66,0x2d,0x90,0x72,0x78,0xa8, - 0x8c,0x50,0xe4,0xa8,0x9d,0x8e,0xa2,0x43,0xf5,0x93,0x29,0x9f,0xac,0x9f,0x12,0x7e,0x06,0x80,0x23,0xe7, - 0x14,0x02,0x57,0x57,0x0c,0x02,0x3f,0xf4,0x6a,0x4e,0x02,0x88,0x80,0x74,0x36,0x8c,0x50,0xd6,0x51,0x20, - 0xc0,0x0c,0x34,0xc6,0xa0,0x0c,0x5f,0xfa,0x75,0x8b,0x6e,0x14,0xd6,0xa4,0x9e,0xe4,0x13,0x96,0x7c,0x36, - 0xa4,0x3d,0x99,0x47,0x61,0x99,0x5b,0xcd,0xd5,0x9b,0x0a,0xaa,0xd6,0x3b,0x0a,0xaa,0xd6,0xfb,0x13,0xa0, - 0xa8,0xcc,0x93,0xa0,0x1c,0xbd,0x7b,0xa0,0xb6,0x1a,0xef,0x75,0xaf,0x07,0x78,0x42,0xca,0x99,0x50,0x22, - 0x49,0xa9,0x28,0x18,0x65,0x31,0x10,0x4d,0x0b,0xbe,0xdb,0x50,0x17,0x77,0x09,0x30,0x42,0xda,0xd9,0x40, - 0x22,0x69,0x47,0xa0,0x30,0x2a,0x0f,0xb3,0x5d,0x03,0xe6,0xb1,0x6c,0x77,0xc8,0xfc,0xb0,0xdd,0x85,0x07, - 0x78,0x23,0xca,0x79,0x68,0x19,0x49,0x69,0x58,0x59,0x65,0x5c,0xfa,0x01,0xe7,0x80,0x5b,0x39,0x72,0xc4, - 0xf9,0x5b,0xf5,0x25,0x69,0x4d,0xdf,0xe1,0xb7,0x26,0x95,0x16,0xec,0x15,0xfa,0x48,0xbf,0x57,0xf4,0x3f, - 0xe6,0x31,0xbd,0xb9,0xb9,0xa3,0xbb,0xbc,0xe2,0x3b,0x42,0xb0,0xd8,0xaf,0x84,0xfe,0x33,0xfe,0x91,0x30, - 0xe8,0xe6,0xe6,0x1e,0xd9,0xfd,0x56,0x18,0x5f,0x12,0x7e,0x23,0x3c,0xb8,0xd8,0xf3,0xbf,0xce,0xab,0x40, - 0x97,0x6d,0x20,0x53,0xd7,0xbc,0x81,0x0d,0xf0,0x26,0x33,0x8f,0xb4,0x17,0xc7,0x86,0x0a,0x73,0xaa,0x21, - 0x5f,0x64,0xda,0xde,0xbf,0x00,0xa0,0xef,0xd4,0x43,0xb9,0x5c,0x2e,0x73,0xf9,0x85,0x36,0x29,0x16,0xe1, - 0x4d,0xf3,0xe2,0x92,0xf9,0x98,0xef,0x7d,0xc6,0xcf,0xbb,0xff,0xbd,0xf0,0x3f,0x97,0x68,0xfa,0x3c,0xd3, - 0x20,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x5a,0x69,0x7b,0xe2,0x38,0x12,0xfe,0x2b,0x6e, + 0x66,0xf7,0x49,0xb2,0xdd,0x21,0x40,0x8e,0xee,0x64,0x43,0x76,0xcc,0x15,0x20,0x40,0xb8,0x73,0x7c,0x93, + 0x6d,0x61,0x2b,0xf1,0x15,0x4b,0x86,0xd0,0x3d,0xf3,0xdf,0x57,0x96,0x2f,0xd9,0xd8,0x40,0xba,0x9f,0x79, + 0x66,0xf8,0x80,0x91,0xaa,0x54,0xf5,0x56,0xa9,0x54,0x2a,0x09,0x5f,0x7f,0x6a,0xdc,0xd7,0xa7,0x4f,0xc3, + 0xa6,0xa0,0x11,0x43,0xbf,0xb9,0x0e,0xbe,0x21,0x50,0x6e,0xae,0x0d,0x48,0x80,0x20,0x6b,0xc0,0xc1,0x90, + 0x54,0x0b,0xb3,0x69,0xeb,0xf8,0x5b,0xe1,0xe6,0x9a,0x20,0xa2,0xc3,0x9b,0xeb,0x93,0xe0,0xc9,0x98,0x4c, + 0x60,0xc0,0x6a,0x81,0x68,0xd0,0x80,0xc7,0xb2,0xa5,0x5b,0x4e,0x41,0x90,0x2d,0x93,0x40,0x93,0x8e,0xfb, + 0xad,0xc4,0x3e,0x85,0x04,0xeb,0x12,0xc1,0x95,0x6d,0x39,0x84,0xe3,0x5b,0x21,0x85,0x68,0x55,0x05,0x2e, + 0x91,0x0c,0x8f,0x59,0xe3,0x0b,0x32,0x11,0x41,0x40,0x3f,0xc6,0x32,0xd0,0x61,0xb5,0x4c,0x45,0xe8,0xc8, + 0x7c,0x15,0x1c,0xa8,0x57,0x0b,0x98,0xac,0x75,0x88,0x35,0x08,0xa9,0x0c,0xcd,0x81,0x8b,0x6a,0x41,0x72, + 0x4d,0x45,0x87,0x45,0x19,0x63,0xca,0x88,0x65,0x07,0xd9,0x44,0xc0,0x8e,0x1c,0x11,0x5e,0xbc,0xfe,0x13, + 0x9f,0x40,0x7f,0xf8,0x36,0x4a,0x96,0xb2,0xbe,0xb9,0x56,0xd0,0x52,0x40,0x4a,0xb5,0x00,0x6c,0xbb,0xe0, + 0xb7,0x96,0xc7,0xb2,0x6e,0x81,0xd7,0x98,0xe4,0xe1,0x04,0xc8,0x84,0x4e,0xc0,0x20,0xeb,0x00,0xe3,0x6a, + 0xc1,0x93,0xc2,0xfa,0x90,0xa1,0xfa,0xda,0x14,0x40,0xc0,0x15,0x32,0x80,0x0a,0x4f,0x6c,0x53,0xfd,0xaf, + 0x04,0x30,0xbc,0x38,0xfb,0x82,0xe6,0xb5,0xfb,0xf1,0xaa,0x74,0x77,0xab,0x5a,0x22,0xfd,0x0c,0x26,0x33, + 0xad,0x39,0x53,0xe9,0xaf,0x86,0xd7,0x14,0x57,0x75,0xf1,0x89,0x3e,0x6a,0x8f,0xe2,0xd2,0x68,0x7b,0x1d, + 0xb7,0x8f,0xe3,0xd6,0x43,0x7b,0x3c,0x95,0x2a,0xcf,0x25,0xa5,0xd2,0x5a,0x3f,0x8f,0x6a,0xb5,0xe7,0xdb, + 0x4b,0xf4,0x3c,0xa9,0x75,0xa5,0x87,0x96,0xf9,0x3c,0xef,0xea,0x4f,0x0f,0xe3,0x73,0x59,0xd6,0xf5,0xa1, + 0x37,0xe0,0xb1,0xd6,0x1d,0x37,0x5b,0x33,0x38,0x70,0xf0,0x83,0xd2,0x1c,0xa8,0x2f,0xe2,0xa8,0x27,0x3f, + 0xd5,0x64,0x71,0x28,0x8b,0x75,0x65,0x34,0x38,0x13,0x07,0x95,0x7e,0xfd,0x4c,0x1d,0xe3,0xa7,0xee,0x65, + 0x73,0xa0,0x88,0xc3,0x27,0xb1,0x01,0xc4,0x06,0xb4,0x95,0x99,0xd6,0x2f,0xbf,0xb5,0x5e,0x5c,0x47,0xb5, + 0x2f,0x27,0x72,0xbf,0xad,0x2a,0x5f,0xcb,0xa7,0xf3,0xd3,0x05,0x99,0xd9,0xe7,0xb0,0xad,0xf6,0x5b,0x65, + 0xc7,0xb9,0x6d,0x02,0xf7,0x62,0xde,0x6e,0x54,0xda,0x7d,0xa9,0x7d,0xfe,0xd6,0xbd,0xef,0xb5,0x1d,0xf0, + 0x79,0xf1,0xfa,0x5d,0xc2,0x4f,0x63,0xac,0xf5,0xbf,0xd9,0xbd,0xa9,0x3a,0xeb,0xa8,0x13,0x75,0xe9,0xf6, + 0xfb,0xd6,0xd3,0xea,0x33,0xea,0x3f,0x4d,0x9d,0x8b,0x91,0x36,0x78,0xea,0x3b,0x03,0x34,0x58,0xaf,0x3a, + 0x3d,0x7d,0x3d,0xbf,0x53,0xe4,0xf5,0x7a,0x88,0x0d,0x79,0x8c,0xd7,0xb3,0xf3,0xd2,0xab,0xda,0x26,0xa3, + 0x91,0x5b,0x11,0x95,0x41,0xb7,0x65,0x37,0x5e,0xc5,0xbb,0xb3,0xce,0x49,0xaf,0xf3,0xd0,0x97,0x2a,0x22, + 0xee,0xd4,0xe4,0xb7,0x12,0x1a,0xdf,0xc2,0xd1,0xed,0x70,0xfa,0xbc,0x98,0x5f,0x8c,0x9a,0xa5,0xcf,0x6a, + 0xe3,0xb6,0x55,0x71,0x2c,0x7c,0xdb,0x54,0xfb,0xa3,0xf7,0x8e,0xa8,0x99,0xcf,0x22,0x1a,0x0e,0xbe,0x9d, + 0xb9,0xf6,0x78,0x51,0x3a,0xb9,0xd7,0x6d,0xdc,0xab,0xd7,0xec,0xd3,0xf5,0x5b,0x49,0xd6,0x54,0x52,0x9f, + 0xcd,0x9e,0x9d,0xf1,0xea,0x62,0xd4,0xb8,0x3f,0x6d,0x3e,0xb4,0x27,0x6f,0xad,0x4b,0x02,0x9c,0x67,0x30, + 0xb9,0xeb,0x3e,0xc2,0x6e,0x43,0x91,0x46,0x3a,0x6e,0x96,0xee,0x1a,0x17,0xdd,0xc1,0xc9,0x9d,0x35,0xc6, + 0xb7,0xda,0xfb,0xe3,0x5d,0x5d,0xaf,0xdf,0xb5,0xbb,0x9d,0xc5,0xeb,0x54,0x5b,0xf5,0x1f,0x34,0xf1,0x42, + 0xa9,0x4d,0x2c,0x7d,0x8c,0x5e,0x5e,0xbb,0xf7,0x4a,0xf9,0x79,0xb6,0xbc,0x5c,0x8f,0x2e,0xef,0xed,0x37, + 0xa9,0x6d,0x23,0x30,0x9b,0x83,0xa6,0xf4,0xdc,0xfc,0x4a,0x3a,0x9d,0x17,0xab,0x76,0xf7,0xb8,0xc6,0x16, + 0x2e,0xcb,0x67,0xf3,0x6f,0x50,0xea,0x35,0x15,0x69,0x59,0x91,0xe4,0x3e,0x6e,0x7e,0x55,0x5f,0xdc,0x9a, + 0xb2,0x7c,0x1c,0x4f,0xba,0x67,0xad,0xcf,0x27,0xab,0xb7,0xce,0xe3,0xa3,0xd3,0xb9,0x5d,0x19,0x8f,0xa7, + 0xdf,0x57,0x40,0xee,0x35,0x34,0x38,0xb8,0xbf,0x2c,0xdf,0xbf,0xf4,0x46,0x77,0x4a,0xf9,0x6c,0xde,0x6f, + 0xd4,0xcd,0x27,0xb5,0xfe,0x3e,0x7f,0xe9,0x9c,0x0e,0xa6,0xb0,0x6c,0x4c,0xac,0x61,0xe3,0xec,0xf2,0xfd, + 0x6c,0xe2,0xd0,0xe0,0xb8,0x7c,0x1b,0x9a,0x67,0xd0,0x5a,0xd6,0xfb,0x2c,0x7a,0x9a,0x7a,0x6b,0xfa,0x3a, + 0x71,0x47,0x46,0xbd,0x4e,0x23,0x51,0x2b,0xdf,0xfc,0xf8,0x21,0xfc,0x8b,0x1c,0x1e,0xb0,0x25,0x7a,0x70, + 0x24,0xfc,0xf9,0x27,0x0d,0xf7,0x32,0xa5,0x54,0x3c,0xca,0x12,0x3a,0x18,0x59,0x66,0x11,0xaf,0x31,0x81, + 0x46,0xa7,0x21,0x7c,0xaa,0x56,0x05,0xd3,0xd5,0x75,0xe1,0x7f,0x6c,0x54,0xd8,0x4f,0x07,0x7e,0x16,0x0e, + 0xae,0x84,0x03,0xfa,0xd8,0x18,0x43,0xbb,0x0f,0x7c,0xb9,0x95,0xc4,0x7a,0x58,0xa1,0x05,0xc2,0x04,0x10, + 0x17,0x27,0xd7,0x09,0x5d,0x3e,0x26,0x94,0x09,0x95,0x91,0xec,0x47,0xa6,0x82,0x64,0x40,0xbc,0x8c,0x71, + 0xe5,0xad,0x9c,0x63,0x7f,0xb0,0x2f,0x68,0xc2,0x7e,0x17,0x81,0x5d,0x84,0x26,0x90,0x74,0xa8,0x50,0x84, + 0x07,0x81,0x24,0xa8,0x1c,0x78,0x20,0x14,0x84,0xe3,0x0e,0x6f,0x7d,0x53,0xd9,0xa1,0xf9,0xbc,0x08,0x59, + 0x86,0x18,0xdb,0x16,0x32,0x49,0x31,0xf6,0x8a,0x40,0x19,0xf3,0xf4,0x24,0xfb,0x91,0x4d,0x95,0x6d,0x91, + 0x49,0x61,0xb0,0x81,0x81,0xb3,0x3d,0x10,0xbf,0x64,0xbd,0x0a,0xc9,0x03,0x6a,0x31,0x4d,0x74,0x90,0xaf, + 0xf0,0xf0,0x28,0xdf,0x3e,0xec,0x33,0x1a,0x96,0x02,0x53,0xf6,0x65,0x49,0x9a,0xc2,0x77,0x72,0xc8,0x21, + 0xe5,0xbf,0xfd,0xe4,0x87,0x68,0x3e,0xa5,0xf9,0x4f,0x41,0xa6,0x5a,0x08,0xc1,0x86,0xed,0x50,0x7d,0xd0, + 0x8e,0x34,0x05,0xed,0x4e,0x68,0x53,0xd2,0x13,0xbe,0xcc,0x4f,0x91,0x10,0xde,0x0d,0x04,0x48,0x5e,0xb8, + 0x48,0x2e,0x21,0x96,0x19,0x76,0xfa,0x2d,0xea,0x98,0xa0,0xfd,0x43,0x38,0xf0,0xbb,0x8e,0x2d,0x97,0xd0, + 0x7d,0x00,0xd2,0xd0,0x04,0xd4,0xa7,0x4b,0x38,0x05,0x12,0x8d,0x61,0xe1,0xc0,0x77,0x1e,0x0d,0xcb,0x82, + 0xf0,0xbb,0xac,0x23,0xf9,0x95,0x26,0xf4,0x88,0x21,0xa6,0x47,0x06,0xf8,0xed,0x22,0xd5,0x3e,0xe5,0x16, + 0x8a,0xaf,0xe4,0x46,0xf8,0x65,0x38,0xc4,0x41,0xaa,0x4a,0xd7,0x4d,0x3e,0xa0,0x88,0x23,0x82,0x14,0xf6, + 0xfc,0x65,0xa0,0xe2,0x48,0xcc,0x87,0xc5,0xf1,0x44,0xc0,0xe2,0xbe,0xbf,0x0c,0x9a,0x9f,0x5b,0xb6,0x4c, + 0x9f,0x4f,0x8f,0xa7,0x8f,0xb5,0x73,0xe0,0x6c,0x44,0x1e,0x27,0x8a,0x0f,0x85,0x6b,0xed,0x34,0x1d,0x0e, + 0x7c,0xd2,0x3c,0x65,0x22,0xe8,0xee,0x6e,0xda,0x2e,0x11,0xc8,0xda,0xa6,0xb5,0x8b,0x43,0x23,0xd8,0x2a, + 0x04,0x85,0x0c,0xd0,0xf5,0x09,0x81,0x36,0xa6,0x86,0x2e,0x81,0xee,0x7a,0x55,0x90,0xe3,0xc2,0x02,0x55, + 0xea,0xad,0x45,0x9d,0x67,0x60,0x05,0x46,0xd0,0x9a,0x7a,0x4c,0xb4,0x9c,0x01,0x12,0xd4,0xa3,0xf5,0xe5, + 0x35,0x8e,0x91,0xe9,0x39,0xa7,0x20,0x2c,0x2c,0x27,0xcd,0x9e,0xc4,0xc9,0xd3,0x02,0xb8,0x4c,0x02,0x67, + 0xfa,0x87,0x70,0x2f,0x80,0x8e,0x77,0x03,0x6f,0x31,0xae,0xfd,0x91,0x07,0xfc,0xd9,0xd0,0x19,0x31,0x07, + 0x7b,0x28,0x1b,0xeb,0x88,0x16,0x58,0xa9,0xdd,0x84,0x4e,0xbc,0x5d,0x08,0x27,0x36,0xc4,0x49,0x8b,0x3e, + 0x1b,0x44,0xf1,0xc7,0xac,0x62,0x8a,0xfb,0x80,0x68,0xc5,0x85,0x6e,0x59,0xce,0x61,0xc8,0x3b,0xf7,0x88, + 0xc2,0x89,0x50,0x39,0x3f,0x17,0xfe,0x23,0x94,0x4b,0x25,0x0f,0xc3,0xbf,0x69,0x71,0x48,0x05,0x64,0x68, + 0xe7,0x6b,0xbf,0xa4,0x47,0x4d,0x95,0x1a,0x6c,0x20,0xb3,0x5a,0x28,0xd1,0x27,0x78,0xaf,0x16,0xa8,0xc8, + 0x42,0x72,0x74,0xe4,0xd3,0xa2,0xe9,0x1a,0x12,0xe4,0x9c,0x33,0xf7,0x31,0x6e,0xe4,0xdf,0x0c,0x2b,0x3f, + 0xc5,0xd3,0xb1,0x3c,0x66,0x1e,0x3e,0xf4,0xc8,0x5f,0x04,0xba,0x85,0xc0,0xf7,0x23,0xfa,0x10,0xf0,0xbe, + 0x5e,0xf0,0x18,0x8b,0xcb,0xbf,0xd7,0x05,0x31,0x86,0x94,0xfd,0xd9,0x7b,0x51,0x72,0xf5,0x72,0x79,0xf3, + 0x9a,0xfa,0xc2,0x10,0x7e,0xc7,0xae,0x64,0x20,0x52,0xb4,0x1d,0xb8,0x64,0x87,0x09,0x5a,0xc8,0xeb,0xeb, + 0x69,0xc0,0xe6,0x71,0x21,0xa8,0x2b,0xf4,0x18,0xc3,0xaf,0xf7,0x38,0xd7,0x22,0x03,0x4e,0x37,0x57,0x7d, + 0x54,0xd2,0x00,0xc7,0x64,0xfb,0x60,0x30,0x13,0x9b,0xdb,0x6e,0x54,0x36,0xfc,0xf1,0x87,0x90,0x41,0xf5, + 0xa3,0xde,0xcb,0x71,0xa7,0x19,0x89,0x9e,0x2a,0xef,0xd0,0x23,0x90,0x63,0x42,0x92,0xae,0x1e,0x7c,0x85, + 0x09,0xd6,0x62,0xd4,0xd2,0xa1,0xa9,0x12,0x2d,0x72,0x34,0x33,0x22,0x36,0xd8,0x1f,0xee,0x07,0x4a,0x30, + 0x84,0x8f,0x95,0x6c,0x99,0xb1,0x30,0xbf,0x63,0x63,0xae,0x59,0x02,0x09,0xf2,0x05,0x9d,0xed,0x2b,0x3f, + 0x97,0x84,0xc6,0x4c,0x29,0x97,0x57,0x2c,0x32,0x35,0x94,0xea,0xe5,0x0d,0x9e,0x56,0x8a,0x89,0x5b,0x13, + 0xc8,0x15,0x83,0x9d,0x37,0x32,0xcb,0x81,0x2d,0xf4,0x0e,0x95,0x29,0xfd,0x91,0x4c,0x26,0xf9,0xe0,0xcb, + 0x1f,0x06,0x5f,0xfe,0x69,0xf0,0xe5,0x1d,0xe0,0x27,0xae,0xe9,0xa0,0x74,0x1e,0xcc,0x87,0x5e,0xf9,0x30, + 0xf4,0xca,0x4f,0x43,0xaf,0xec,0x86,0x8e,0xa3,0xb0,0x0d,0x90,0xfb,0x0a,0x42,0x59,0xde,0x9c,0x6c,0x97, + 0xb1,0x7d,0xda,0xfc,0x7c,0x11,0x19,0x95,0x10,0xb7,0x91,0x54,0x02,0xb9,0x4c,0x6c,0xc6,0x86,0xb1,0x47, + 0x6a,0x0c,0x25,0x48,0xf4,0xa9,0x11,0x93,0xd6,0xf7,0x7f,0x5f,0x8a,0xdc,0xc4,0xb2,0x33,0x55,0x42,0xba, + 0x9f,0x86,0x62,0x4d,0xcb,0x3b,0x51,0x64,0xfb,0x7c,0x60,0x35,0x28,0x8d,0x4f,0x37,0x27,0x71,0x86,0xdc, + 0x9a,0x2b,0x0d,0xcb,0x4b,0x69,0xe9,0x6c,0xc9,0x8d,0x3e,0xf1,0x12,0xf2,0xae,0x04,0x9e,0xa8,0x30,0xb7, + 0xa5,0xf0,0x3a,0x7f,0x70,0xca,0x02,0xc6,0xd7,0xa5,0x29,0x50,0xfc,0x1c,0xc8,0x1a,0x94,0x5f,0x25,0xeb, + 0x3d,0x28,0x66,0xe2,0x93,0x1b,0x57,0xf0,0x70,0xa2,0x78,0x86,0x3d,0x6a,0x1d,0x9e,0x7b,0x13,0x17,0x47, + 0x4e,0xc6,0x39,0x1f,0x8d,0xda,0xee,0xc1,0xed,0x58,0x00,0x8b,0x40,0x61,0x8b,0x85,0xc1,0xd6,0x93,0x6d, + 0x5d,0x48,0xdc,0x6d,0x59,0xc4,0xb9,0x09,0x8c,0x3b,0x71,0x7e,0xdc,0x2a,0x6e,0x70,0xda,0xaa,0x00,0x93, + 0xaf,0x1e,0x23,0x25,0x73,0x38,0xed,0xcf,0x4f,0x19,0x84,0x9e,0x6e,0x03,0x2f,0x78,0xe3,0xb3,0x5d,0xc0, + 0x28,0x57,0xe1,0xb1,0x9d,0xee,0xea,0x5b,0xfc,0xc3,0xb0,0xd8,0xd4,0xa0,0x95,0xe5,0x64,0xe2,0x09,0x69, + 0xf9,0x98,0xa2,0xd1,0x0c,0x57,0xdc,0xca,0xc2,0x16,0x53,0x77,0xe1,0xdb,0x16,0x01,0x8a,0x26,0xdb,0xd9, + 0xf2,0x7d,0xca,0x9e,0xb6,0xe7,0xc7,0x06,0x13,0x93,0xe1,0x0c,0xaf,0xff,0xe3,0x11,0xe1,0x8d,0xda,0x08, + 0x05,0x3e,0xc5,0xba,0x92,0x65,0x7b,0x9c,0x38,0x39,0x2d,0x28,0x13,0x03,0xb2,0x81,0xa2,0x38,0x74,0xe1, + 0xec,0x13,0x25,0x28,0xc7,0x4f,0x68,0xa7,0x97,0xbc,0x7a,0x2f,0xed,0xd8,0x64,0x00,0xbb,0x12,0x2d,0xeb, + 0x0c,0x80,0x5f,0x33,0xc3,0x38,0xa2,0xee,0x15,0xcc,0xb1,0xac,0xec,0x90,0xe6,0xe8,0xbf,0x08,0x5b,0x05, + 0x04,0xae,0xc0,0x3a,0x0b,0x73,0x40,0xda,0x07,0x70,0x28,0x25,0x13,0x6d,0x44,0xfc,0x19,0xa8,0xfe,0xe6, + 0xc2,0x01,0xd6,0x2c,0x4c,0xbc,0x9a,0x28,0x0b,0x71,0x48,0xdb,0x05,0xf9,0xca,0xd6,0x81,0x0c,0x35,0x4b, + 0x57,0xbc,0xcd,0x37,0x47,0xc8,0x30,0xe6,0x39,0x38,0xf2,0xcd,0x8c,0x74,0x67,0xda,0x19,0x53,0x77,0x2e, + 0x38,0x2e,0xda,0xfd,0x4b,0x0c,0x1c,0x15,0x12,0x89,0xee,0x63,0xdb,0x41,0x06,0x70,0xa8,0xef,0x7c,0xf8, + 0xfe,0xc6,0x99,0x50,0x80,0xc1,0x92,0x9d,0x58,0xc2,0xb3,0xbd,0xdf,0x0e,0xee,0x77,0xd9,0xc6,0x5a,0x63, + 0xa2,0x26,0xac,0x9f,0x7a,0xe6,0x2a,0x4d,0x39,0x38,0x8a,0x8b,0x8d,0x0f,0x6e,0xee,0xd1,0x3d,0x4d,0xce, + 0xc6,0xee,0xda,0xde,0x25,0x60,0x0b,0x39,0x06,0x3d,0x59,0xc1,0x20,0xb8,0xd9,0x98,0x9c,0x3d,0x3e,0xb8, + 0xe8,0x59,0x04,0x23,0xd2,0xc5,0x07,0x3f,0x95,0x0b,0xa4,0x07,0x12,0x43,0xee,0x96,0xd7,0xf3,0xcf,0x75, + 0x6e,0xec,0x44,0xdf,0x2d,0x43,0xc7,0x52,0xbd,0xc4,0xc5,0x2e,0xe5,0x17,0xd1,0xe5,0x49,0x8a,0xc8,0xca, + 0xd0,0x9c,0xc9,0xd9,0x52,0x4d,0x4d,0x7c,0x2f,0xef,0xed,0x71,0x93,0xd8,0xff,0xb8,0x73,0x31,0xb7,0xea, + 0x75,0x40,0xd2,0x97,0x81,0x14,0x71,0x0f,0x90,0x7d,0xb2,0x93,0x37,0x38,0x5e,0xb1,0xc1,0x70,0x26,0x31, + 0xa1,0x82,0xbb,0xef,0xe6,0x54,0x04,0xb7,0xde,0xbb,0x54,0xf8,0xce,0x49,0xa9,0x48,0x5f,0x7e,0xe7,0xed, + 0x6c,0xba,0x25,0x07,0x35,0x5c,0xd6,0x1e,0x9c,0x01,0x2a,0xe0,0xdf,0x0b,0x59,0x24,0x3b,0x82,0x17,0x75, + 0xe5,0xdc,0xe4,0x0a,0xc9,0xdb,0xdb,0xf0,0x8e,0x36,0x8e,0x30,0x0c,0x81,0x23,0x6b,0xbd,0x48,0x32,0xbf, + 0x62,0x18,0x89,0xc6,0x4a,0x44,0xcd,0x87,0x3f,0x61,0xbc,0x99,0x97,0xb9,0x1b,0xf1,0x69,0x23,0x13,0xa7, + 0x03,0x94,0x2f,0xd9,0x90,0xd9,0x6b,0x36,0xc4,0x61,0x5a,0x5b,0xd8,0xbf,0xfb,0xd4,0xc9,0x8a,0xb5,0x50, + 0xca,0xe6,0x1d,0x56,0x8c,0xa2,0x48,0xed,0xf4,0x14,0x6d,0xaa,0x9f,0x4c,0xc5,0x6c,0xfd,0x94,0xf0,0x11, + 0x00,0x9e,0x9c,0x5d,0x08,0x98,0xae,0x14,0x04,0x71,0xe8,0xe7,0x9c,0x0c,0x10,0x21,0x69,0x6f,0x18,0x91, + 0xac,0xad,0x40,0x80,0x1d,0x6a,0x4c,0x41,0x19,0x3e,0xf4,0x1b,0x0e,0xdd,0x28,0x9c,0x49,0x23,0xcb,0x27, + 0x3c,0x79,0x6f,0x48,0x09,0x99,0x5b,0x61,0xd9,0x2b,0x83,0xe9,0xcd,0x05,0x55,0xef,0x6d,0x05,0x55,0xef, + 0xfd,0x04,0x28,0x2a,0x73,0x27,0x28,0x4f,0x6f,0x02,0xd4,0xca,0x10,0xfd,0xea,0x75,0x03,0x4f,0x44,0xd9, + 0x13,0x4a,0x2c,0x29,0x17,0x05,0xa7,0x2c,0x05,0xa2,0xe5,0xc0,0x37,0x17,0x9a,0xf2,0x3a,0x03,0x46,0x44, + 0xdb,0x1b,0x48,0x2c,0x6d,0x0b,0x14,0x4e,0xe5,0xe6,0x6a,0x37,0x80,0xbd,0x6d,0xb5,0x7b,0x64,0x71,0xd8, + 0xb9,0x83,0x1b,0x78,0x63,0xca,0x7e,0x68,0x39,0x49,0x79,0x58,0x79,0x65,0x42,0xfe,0x01,0x67,0x83,0x5b, + 0xdb,0x72,0xc4,0xf9,0x47,0xd5,0x25,0x79,0x45,0xdf,0xe6,0x5f,0xdb,0x3a,0x4d,0xd8,0x0b,0xf4,0x9e,0xff, + 0x37,0x46,0xf0,0xee,0x00,0x57,0x9b,0xdb,0x6b,0x76,0xa5,0xe5,0x3b,0x42,0x72,0xf8,0x97,0x12,0x82,0x67, + 0xfa,0x9d,0x84,0xb0,0x9a,0x9b,0xfb,0x64,0xf6,0x6a,0x42,0x7a,0x48,0xf4,0x4a,0xc2,0xc6,0xe5,0x58,0xf0, + 0x32,0x90,0x0e,0x4c,0xd5,0x05,0x2a,0x75,0xcd,0x0b,0x58,0x02,0xbf,0xb3,0x70,0x43,0x6b,0x71,0x6c,0xe9, + 0xb0,0xa8,0x5b,0xea,0x61,0xa1,0xe3,0xbf,0x71,0x84,0xbe,0x53,0x0f,0x15,0x8b,0xc5,0xc2,0xd1,0x17,0x5a, + 0xa4,0x38,0x44,0xb4,0xed,0xc3,0x23,0xee,0xdd,0x21,0xff,0xad,0xa1,0x13,0xf6,0xb2,0xd4,0xff,0x01,0xc8, + 0x1b,0xc4,0xa6,0x42,0x25,0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index d1a87ce..2b40109 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2189 +4,2208 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb2,0x36,0xfc,0x57, - 0x24,0xbc,0xbe,0x32,0x30,0x6a,0xd1,0x92,0x93,0xcc,0x9d,0x80,0x46,0xf8,0x7a,0x4d,0x3c,0xf1,0x36,0xb6, - 0xb3,0xcc,0x28,0xba,0x3a,0x10,0xd9,0x92,0x10,0x93,0x00,0x03,0x80,0x5a,0x22,0xf1,0xfd,0xed,0x5f,0x3d, - 0x55,0xbd,0x01,0x84,0x9c,0xcc,0x9c,0x7b,0xbe,0xe3,0x63,0x11,0xe8,0x6e,0xf4,0x5a,0x5d,0x5d,0x7b,0x6f, - 0x9f,0xae,0xca,0x69,0x5b,0x54,0x65,0xdc,0x2a,0x9d,0xdc,0x44,0xd5,0xc9,0xaf,0x7a,0xda,0x46,0x59,0xd6, - 0x5e,0x2f,0x75,0x75,0xba,0xa5,0xaf,0x96,0x55,0xdd,0x36,0x3b,0x3b,0x1b,0x39,0x8b,0x6a,0xb6,0x9a,0xeb, - 0x89,0xfc,0x8c,0x4c,0xb9,0x4c,0xc7,0x49,0x1a,0xd9,0x3a,0x7d,0xe1,0x99,0x3e,0x2d,0x4a,0xbd,0xb3,0x23, - 0xbf,0xa3,0x7c,0x31,0x9b,0xc8,0x63,0x7c,0x78,0x44,0xed,0xa6,0x77,0xb5,0x3b,0x31,0xbf,0xa3,0xfc,0xaa, - 0xa8,0xa4,0xf6,0xd6,0x3f,0xaf,0xe3,0xf6,0xbc,0x68,0x94,0x1b,0x42,0x72,0x53,0xeb,0x76,0x55,0x97,0x5b, - 0x7e,0x50,0xc9,0x8d,0x7d,0xde,0xd2,0x71,0x9d,0xdc,0x14,0xa7,0x71,0x79,0x58,0x1f,0x25,0xa6,0x20,0x9e, - 0x6d,0xdf,0xc7,0x17,0x79,0xbd,0x55,0x64,0x48,0xca,0x6e,0x4c,0x5a,0x7a,0xb3,0x56,0xc5,0x2c,0xad,0xd5, - 0xbc,0xca,0x67,0x7a,0x96,0x6e,0x1f,0xac,0xc7,0xe6,0xd3,0x16,0x9f,0x4e,0xf3,0xf9,0x3c,0x2e,0x6c,0x0d, - 0xaa,0x50,0xfe,0x59,0x27,0xf4,0x22,0x9f,0x65,0xdb,0xfb,0x3e,0x63,0x8d,0x66,0xca,0xec,0xc6,0x55,0xa4, - 0x47,0x8b,0x8c,0x26,0x7f,0x34,0xcd,0x4a,0xfa,0xbb,0xcc,0xa2,0x48,0xe9,0x78,0x9f,0x06,0x77,0x18,0xae, - 0x8d,0x2a,0x93,0x9b,0xd6,0x4d,0x73,0x19,0x1f,0x24,0x6b,0xd5,0xcf,0x8f,0x56,0x8d,0xde,0x6a,0xda,0xba, - 0xa0,0x99,0x1c,0xbb,0x71,0xd7,0x98,0x05,0x34,0xaa,0xb3,0x52,0x5f,0x6e,0xe5,0xf4,0xaa,0xca,0xac,0x8a, - 0xf3,0xd1,0xb2,0xae,0xda,0x0a,0x13,0x3e,0xaa,0xf5,0x6f,0x2b,0xdd,0x00,0x04,0x6c,0xaf,0xd0,0xdf,0x56, - 0x97,0xb3,0xb8,0x54,0x41,0x41,0x19,0x95,0xcb,0xa1,0xb7,0x72,0x6d,0xa6,0x2d,0x7e,0x98,0xa8,0x8a,0x7e, - 0xbe,0x48,0x54,0x4e,0x3f,0x5f,0x25,0x0a,0xdd,0xfc,0x6b,0xa2,0xa6,0x59,0x1d,0x37,0xc9,0x78,0x3a,0x7a, - 0xcc,0xeb,0x96,0xab,0xe9,0x68,0x5a,0xeb,0xbc,0xd5,0x59,0xb8,0x4c,0xa6,0xd9,0x9a,0x66,0x73,0xa1,0xeb, - 0x33,0x1d,0x37,0xaa,0x4d,0x68,0x8c,0xd3,0xd1,0xd3,0xbc,0x9c,0xea,0x39,0x1a,0xa0,0xaa,0xed,0xeb,0xc7, - 0xea,0x93,0x2e,0x91,0xf6,0x25,0xd2,0x8a,0xc6,0x17,0xda,0x47,0x02,0x2d,0xcb,0x50,0xed,0xef,0xea,0x6a, - 0x51,0x34,0x1a,0xd9,0x94,0x8a,0xca,0x9b,0x25,0x75,0x65,0x86,0xef,0xa8,0xc3,0x7e,0x7e,0xa7,0xfe,0x79, - 0x44,0x80,0x9a,0xaf,0xe6,0x6d,0x36,0xfd,0xb7,0x26,0x5c,0x5a,0x8c,0x0e,0x05,0xb0,0xb7,0x1e,0xd7,0x75, - 0x7e,0x7d,0x44,0xf0,0x9d,0xad,0x04,0x68,0xa8,0x79,0xf7,0x41,0x11,0x74,0xb1,0x5c,0xcd,0xe7,0xdb,0xb4, - 0x0d,0x06,0x76,0x5c,0xeb,0xbf,0xa8,0x06,0x9a,0x78,0x61,0x32,0xef,0x6a,0x25,0x97,0x2d,0x8e,0x1d,0xe0, - 0xda,0xb8,0xa8,0x8a,0xd9,0xd6,0x3e,0x9e,0x13,0x4a,0xb7,0x2d,0x6e,0xbb,0x16,0x77,0x76,0xe2,0x36,0x3b, - 0x6c,0x8f,0x12,0x85,0x41,0x25,0xa7,0x55,0x1d,0x0b,0xf8,0x12,0x40,0x67,0xed,0x68,0xae,0xcb,0xb3,0xf6, - 0x7c,0x5c,0x3e,0x2a,0xc6,0xe5,0xee,0x6e,0xa2,0xa5,0x51,0x54,0xaf,0xda,0xc3,0xf2,0x48,0x95,0xb4,0x86, - 0x63,0x3d,0xa7,0x49,0xb2,0x5f,0x56,0x5b,0x05,0x6d,0x9d,0xe4,0x2d,0x37,0x14,0x00,0xe0,0x79,0xde,0xbc, - 0xbd,0x2c,0x69,0x7d,0x96,0xba,0x6e,0xaf,0x4d,0xe7,0x55,0x95,0xec,0xec,0x74,0x2b,0xad,0x8e,0x54,0x45, - 0x95,0x32,0xd0,0x35,0x02,0x6d,0xb4,0x6f,0x62,0x82,0x82,0x55,0xb6,0x51,0x69,0x5b,0x7d,0xa0,0xb5,0x29, - 0xcf,0xc6,0x7e,0x61,0x6f,0x8a,0x86,0x97,0x82,0xb6,0xb4,0x79,0x7a,0xb2,0x3a,0x3d,0xd5,0x75,0xba,0x09, - 0x2d,0xdd,0xb5,0x93,0x62,0xbd,0xb9,0xa5,0x3a,0xcc,0xe7,0x53,0x7a,0x7c,0x51,0xd5,0x8b,0x67,0x79,0x9b, - 0x0f,0xd5,0xb5,0x2a,0x05,0xdf,0xcd,0xfc,0xe4,0xda,0xe2,0x3b,0x3b,0x2d,0x4d,0x4a,0xd3,0x02,0x82,0x83, - 0xe4,0x75,0xb7,0x83,0x3f,0x16,0xfa,0xf2,0x4f,0x56,0x1c,0x7c,0xb5,0xb3,0x13,0xbc,0xd0,0x36,0x41,0x2d, - 0x93,0xcd,0x24,0xaa,0x2f,0xa5,0xb5,0x6e,0x47,0x27,0xe6,0x2b,0xfb,0x14,0x76,0x2c,0xf8,0x0c,0x7d,0x93, - 0xa9,0x1d,0xea,0x52,0xc3,0x39,0x21,0xdc,0x52,0xf1,0x37,0xab,0xc5,0xc9,0xf0,0x34,0x97,0x9c,0xd3,0x2b, - 0x2e,0x6b,0x99,0x12,0x42,0x6d,0x7e,0xb0,0x23,0x1c,0xf8,0x78,0x4b,0x00,0x98,0x16,0x85,0xbf,0xa2,0x79, - 0xd3,0x9f,0x5b,0x49,0xe4,0x6f,0x2e,0xe1,0x8b,0x62,0xfe,0xd9,0xaf,0x90,0x3f,0xb0,0xf0,0xf3,0xea,0xe4, - 0x73,0x5f,0x21,0x7f,0xa0,0x2d,0xf3,0x41,0x5a,0xc9,0x14,0xea,0x7c,0x31,0x34,0x2c,0x60,0x84,0x9d,0x1d, - 0xda,0xe5,0xa3,0x65,0xb1,0xd4,0xfc,0xe5,0x0f,0xef,0x5f,0x7d,0xd0,0x79,0x3d,0x3d,0x7f,0x97,0xd7,0xf9, - 0xa2,0xf9,0x93,0xb0,0xd0,0xfb,0xaa,0x07,0x6b,0xbd,0x5c,0x59,0xd6,0xbc,0x9c,0xe5,0xf5,0xec,0x49,0x5d, - 0x5d,0x36,0xba,0x7e,0x5e,0x5e,0xa4,0x1b,0xe7,0x6b,0x1c,0xb4,0xe4,0x96,0xad,0xcc,0x2f,0x8a,0xb3,0xbc, - 0xad,0xea,0xdb,0xdb,0xe8,0xbd,0xce,0xa7,0xed,0x9b,0xbc,0x2d,0x2e,0x34,0x75,0x25,0x73,0x59,0xd8,0x9b, - 0xb3,0xd5,0x14,0x63,0x1b,0xea,0xec,0x65,0x51,0xce,0xaa,0xcb,0xe1,0xbc,0x59,0x35,0x5d,0x2d,0x74,0x49, - 0xcb,0x4c,0xa8,0xe4,0x79,0x3e,0x3d,0x4f,0x73,0xc5,0x07,0x85,0xeb,0xde,0x56,0x1b,0x77,0x4e,0x7b,0xad, - 0xea,0x01,0x82,0x06,0xc7,0xfb,0x00,0x6e,0xd5,0x13,0x3e,0xf7,0x5b,0xa6,0x0e,0x40,0x91,0xf0,0xab,0x5e, - 0x7b,0x8c,0x47,0x94,0x40,0xcd,0x68,0x2f,0xaf,0xcf,0xb8,0x27,0x8d,0x45,0x7f,0x35,0xa1,0xbf,0x9a,0xd0, - 0x5f,0x1e,0xbb,0x2c,0xa9,0xc4,0x9e,0xa5,0xe5,0x5a,0xc9,0x91,0x99,0xf6,0x0f,0x10,0x53,0x20,0xa7,0xce, - 0xba,0x2c,0xee,0x37,0xa8,0x8b,0xac,0xa4,0x8e,0x6e,0xd2,0x52,0x7a,0xd2,0xc4,0xf8,0x38,0xd5,0x6b,0x3a, - 0xb2,0xd6,0x8a,0x76,0xdb,0x20,0x0c,0xb5,0x74,0xaa,0x2f,0xe7,0xf9,0x54,0xc7,0x0f,0xfe,0xe7,0x97,0xe6, - 0x2f,0x0f,0x54,0x14,0x25,0x3e,0x89,0x52,0xee,0x71,0xd2,0x7a,0xdd,0x3d,0xd7,0x7a,0xa7,0x9a,0x47,0x9d, - 0xdd,0x42,0x7d,0x4a,0x8b,0xa6,0xde,0x4d,0x15,0xc8,0x0c,0xc6,0x16,0x71,0x7f,0xae,0x12,0xcc,0x21,0x4d, - 0x58,0xe9,0xe6,0x8e,0xe6,0x8d,0xa7,0x3a,0x9c,0x3a,0x47,0x62,0x8d,0xf2,0xe5,0x72,0x7e,0xcd,0xa3,0xdd, - 0xec,0xa6,0x5b,0xea,0x60,0xd0,0xdb,0xdb,0xed,0x68,0x5a,0x11,0x80,0xd7,0x04,0x65,0x55,0x3d,0x38,0x7f, - 0x9d,0x12,0x23,0x8b,0xc1,0x81,0xf3,0x86,0xd2,0xb1,0x6f,0x87,0xe6,0xa0,0x77,0x60,0xe3,0xa4,0x44,0xea, - 0xed,0x6d,0xac,0x89,0x9a,0x1b,0x5a,0xb6,0x11,0x28,0x8d,0x17,0x44,0x11,0xb6,0xaf,0x9e,0x0f,0x2f,0xec, - 0xa8,0x99,0x17,0x53,0xa2,0x92,0x09,0x06,0xe4,0x31,0xde,0x57,0xfb,0x49,0x42,0x95,0x62,0x5c,0xc7,0xb6, - 0x4b,0x09,0x53,0xaa,0x7a,0xfd,0x6f,0xd1,0x23,0xa0,0x94,0x2d,0x29,0xd3,0x50,0x0f,0xf9,0xbd,0x28,0x5b, - 0x5d,0x4f,0xf5,0x92,0x06,0x4c,0x47,0xa3,0x21,0x02,0x53,0xa6,0x12,0x55,0xad,0x9b,0x25,0xcd,0x87,0x96, - 0xd7,0xb5,0x23,0xf3,0xfe,0x2a,0x64,0xde,0x43,0x21,0xf3,0x0e,0xfe,0x5b,0xe8,0xbc,0x83,0xbf,0x11,0xb4, - 0x6f,0x12,0x94,0x9d,0x09,0xdb,0x3c,0x18,0x98,0xbc,0xa8,0x0c,0xc1,0x77,0xb3,0xaa,0xe7,0xa9,0x07,0x83, - 0xfd,0xa3,0xb5,0xf2,0x6f,0x07,0x47,0x49,0xa2,0x82,0xc2,0x85,0xea,0x0c,0x48,0xdd,0x2c,0x74,0x7b,0x5e, - 0xcd,0xd2,0xe8,0x4c,0xb7,0xd1,0x1a,0xa4,0xe3,0x48,0x52,0x88,0x4a,0x91,0x07,0xa2,0x06,0x5e,0x55,0x97, - 0xba,0x7e,0x9a,0x37,0xc4,0x3a,0xc8,0x14,0x66,0x87,0x8d,0x92,0x13,0x84,0x68,0x95,0xcc,0x52,0x87,0x34, - 0xf2,0x6a,0x7e,0xa1,0xa9,0xcb,0x63,0xc0,0xf4,0xc6,0x4c,0xd9,0xc1,0x8d,0x0c,0x26,0x8a,0xc3,0x41,0xea, - 0xd1,0xaa,0x6c,0xce,0x8b,0xd3,0x96,0x70,0xf7,0xe9,0x6a,0x7e,0x5a,0xcc,0xe7,0x7a,0xa6,0xb0,0x17,0x81, - 0x70,0xf4,0x2c,0xc1,0xa6,0x1d,0xa8,0x51,0x26,0xfb,0x8e,0x2a,0x97,0xab,0xe6,0xfc,0xee,0xfa,0xc6,0xda, - 0xee,0xa6,0x84,0xf6,0xde,0xa8,0x3d,0xd7,0x0c,0x40,0xdc,0x89,0x44,0xb9,0xa7,0x10,0x1d,0x55,0xae,0xa1, - 0xc3,0x68,0xa6,0xe7,0xba,0xd5,0x91,0xe2,0xa9,0x53,0xd1,0x39,0x41,0x29,0xfd,0x54,0x4b,0x34,0xdf,0x44, - 0x47,0xaa,0x03,0xf3,0x7e,0x89,0x89,0x2a,0xcc,0x02,0x9c,0xe5,0x91,0x19,0x8f,0xce,0x4c,0x51,0x6c,0xd7, - 0xab,0xbc,0xbd,0x25,0x04,0x6a,0x57,0xa9,0x55,0x58,0x6b,0xc2,0x5f,0xb4,0xad,0x93,0x4e,0x67,0x96,0x55, - 0x83,0x4e,0x2c,0x57,0xfc,0x37,0x6f,0xa7,0xe7,0x7f,0xbe,0x07,0xc0,0x9b,0x9f,0xeb,0x43,0x3d,0xd4,0x07, - 0x35,0x03,0xc5,0x56,0x9a,0xae,0xf8,0x9d,0x5e,0xff,0x1b,0xbb,0x0b,0xd8,0x68,0xbb,0x18,0x05,0xa4,0x0a, - 0x1f,0xdf,0xbd,0x94,0xc3,0xe8,0x69,0x45,0x6b,0x5e,0xb6,0x7b,0x1f,0xa9,0xf3,0xd1,0x51,0x02,0xe8,0xef, - 0x27,0x66,0x3a,0xe9,0x33,0x54,0xff,0x8d,0x9d,0x76,0xd3,0x2d,0x97,0x46,0xc0,0x8c,0xc5,0x34,0x47,0x17, - 0x1e,0x5c,0xed,0x5d,0x5e,0x5e,0xee,0xd1,0x24,0x2e,0xf6,0x68,0x4c,0xba,0x9c,0x56,0xc4,0x74,0xd2,0x2e, - 0xa0,0x3d,0x9d,0xcf,0xf2,0x65,0x1b,0xd2,0x5d,0xc2,0x0a,0xb6,0xe3,0xbb,0x49,0x86,0x9f,0x5f,0xbf,0xfa, - 0xae,0x6d,0x97,0xef,0x65,0xf6,0x26,0x2d,0x75,0xe1,0x6f,0xc4,0xa1,0x0f,0x94,0xa4,0x95,0x98,0xea,0xa6, - 0xe1,0x5d,0x8c,0x42,0x38,0x8e,0x08,0xe2,0xda,0x3a,0x2f,0x1b,0xf4,0xc6,0x54,0x91,0x1e,0x0e,0x1e,0x1d, - 0x15,0xad,0x59,0x77,0x54,0xe0,0x2d,0x3d,0x19,0xcd,0xd8,0x14,0x09,0x01,0xe1,0xe9,0xd2,0x7a,0xaf,0x42, - 0x49,0xb9,0x57,0x50,0x6c,0xbe,0x28,0x11,0x62,0xf4,0x32,0x21,0x6a,0x72,0xb4,0x41,0x52,0x73,0x86,0x21, - 0x76,0x39,0xbf,0x47,0x12,0x21,0x3f,0xae,0xd1,0xd3,0x3f,0x9c,0xf0,0xf1,0xf4,0x3c,0xaf,0x1b,0xdd,0x66, - 0xab,0xf6,0x74,0xef,0x6f,0x11,0x80,0xc9,0x32,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0x87,0xeb,0xfc,0xb5, - 0xa9,0xca,0x8d,0x2a,0xfe,0xfe,0xe1,0xed,0x9b,0x91,0xa0,0xcd,0xe2,0xf4,0x1a,0x2c,0x58,0xda,0xae,0x8f, - 0xc2,0x19,0x36,0x48,0xfa,0x30,0xdc,0x23,0x60,0xe5,0x36,0x70,0x6d,0xd2,0xd6,0xd7,0x37,0x6d,0xc6,0x35, - 0x2e,0xd1,0x0a,0x4e,0xb6,0x29,0x76,0x18,0x3e,0x59,0xdb,0x8d,0x83,0xda,0x8b,0x85,0xae,0x56,0x6d,0xba, - 0xaf,0xae,0x9a,0xfa,0xf4,0x69,0x55,0x7d,0x2a,0xf4,0x9b,0x7c,0xa1,0xd3,0xe8,0xe7,0x0f,0xef,0x5f,0xec, - 0x7d,0x7c,0xfb,0xfd,0xf3,0x37,0x11,0xe7,0x7d,0x47,0xb8,0x42,0xd7,0x26,0x6f,0x2f,0xcc,0x5d,0xe4,0x57, - 0x66,0x69,0x5f,0x31,0x6a,0x4a,0xf7,0x0e,0xd4,0x45,0x3e,0x2f,0x68,0xb7,0x69,0x22,0x31,0xdb,0xd5,0x10, - 0x01,0xbb,0xd5,0x7e,0x93,0x3d,0xdc,0xdf,0xa7,0xa3,0xf8,0xd1,0x17,0xfb,0xfb,0xeb,0xf5,0xb8,0x19,0x9d, - 0x73,0x0b,0x04,0xc8,0xd3,0x6a,0xb1,0x20,0xb2,0xf9,0xe6,0xf1,0x14,0x38,0x33,0xdd,0x98,0x3a,0xb5,0xd5, - 0x12,0x8d,0xf5,0x80,0xa8,0x9b,0x82,0x9e,0xff,0xf2,0xe0,0x2f,0x11,0x9d,0x8f,0xc5,0x1f,0xa0,0xb9,0x2e, - 0x6a,0x71,0xad,0x01,0xb1,0xdc,0x00,0x1d,0x14,0xff,0x0e,0x66,0xea,0x7c,0x6e,0xa5,0x18,0x79,0xd2,0xc1, - 0x2a,0xcd,0x1f,0x60,0x15,0xec,0xcd,0x9a,0xb7,0xfe,0xdd,0x84,0x97,0xeb,0x53,0xeb,0xeb,0x12,0xdc,0x47, - 0xa4,0x36,0x51,0x0f,0x35,0x81,0xdd,0x0f,0xcb,0xa5,0x3d,0xe9,0x88,0x03,0xd1,0xdd,0x14,0xc6,0x3b,0x9a, - 0xc8,0x4b,0x25,0x73,0xc2,0xa2,0x2c,0xea,0xe7,0x1f,0x11,0x14,0xbe,0x73,0x0a,0xe8,0xe9,0x6b,0x41,0x4f, - 0x07,0x96,0x12,0xf8,0xc2,0x50,0x02,0x5f,0x0a,0x4b,0x7e,0xb0,0x0f,0x9e,0xfc,0x73,0x64,0xbe,0xfc,0x8e, - 0x4e,0xda,0x2a,0xef,0xbc,0x8c,0x4e,0xe8,0x39,0x96,0x04,0xda,0xc3,0x54,0xd5,0x57,0xc3,0xd3,0xe1,0x69, - 0x30,0x22,0x51,0xcc,0xe9,0x1d,0x07,0x27,0xc2,0x5c,0x90,0xdd,0x29,0xd1,0x00,0xc0,0xf2,0x6a,0x49,0x0f, - 0x66,0x8d,0xc6,0x75,0x88,0x69,0x4e,0x13,0x88,0x26,0x79,0x2e,0x96,0x7d,0x8c,0xcc,0xc3,0x9e,0x31,0x4d, - 0xdb,0xc5,0x8c,0xea,0x3c,0x8b,0xaa,0x12,0x44,0xdd,0x35,0x31,0x54,0xad,0xa6,0xbd,0x5b,0x9e,0x11,0x80, - 0x5d,0x64,0xdb,0x07,0x63,0x6c,0xc1,0x01,0x26,0x49,0x06,0x45,0xf4,0x9c,0x19,0xee,0xcf,0xcf,0xaa,0x05, - 0x01,0xac,0xa9,0x91,0x38,0xa7,0xcb,0xa2,0x3d,0x7f,0x5a,0xeb,0x19,0xb5,0x5f,0xe4,0xf3,0x26,0x2a,0xca, - 0xad,0xd9,0xed,0x2d,0xa1,0xa1,0x11,0x21,0x1a,0x50,0x97,0xd2,0x93,0xc1,0xcf,0xa5,0x43,0x10,0x39,0x72, - 0x27,0xf6,0xd5,0x6c,0x54,0x95,0x84,0xa3,0xcf,0x88,0xba,0x08,0xa6,0x8d,0x36,0x3b,0xe7,0x98,0x6d,0xde, - 0xc9,0x00,0xac,0xe6,0x2b,0xa2,0xd3,0x79,0xe2,0x16,0x99,0xbc,0x8d,0x08,0x0a,0xea,0x92,0x76,0x39,0x75, - 0x30,0x52,0x67,0x36,0x75,0x99,0x37,0xcd,0x65,0x55,0xcf,0x90,0x3a,0x5e,0x8e,0x1e,0x53,0x5a,0x55,0x17, - 0xbf,0xf3,0x9e,0xcc,0xa2,0x27,0x79,0x53,0x4c,0xb7,0xa2,0xdd,0x55,0xbc,0xd8,0xa5,0xf3,0x6a,0xf7,0x2c, - 0x59,0xd3,0xa4,0x50,0xc3,0x4b,0x22,0x4f,0x02,0xa2,0x2c,0x00,0x4c,0x55,0xc9,0x38,0xa9,0x13,0x4b,0xc6, - 0xbe,0xee,0xe1,0x83,0xae,0x69,0x3a,0x8a,0xdf,0x89,0xf8,0x55,0xdb,0x04,0x58,0xf4,0xa1,0xe9,0x7d,0x6b, - 0x9f,0xd4,0xec,0xf0,0xfc,0x28,0x1c,0x0c,0x5a,0x23,0x50,0xff,0x92,0x36,0xc0,0x8c,0x69,0xef,0x6b,0x20, - 0x1e,0x1a,0xc3,0x05,0x76,0x00,0x84,0x5e,0xb3,0x51,0xc3,0xa8,0xe8,0xf6,0x76,0xe6,0x28,0x30,0xc2,0xff, - 0x3b,0x3b,0xfb,0xe6,0x1b,0x97,0x44,0xd4,0xda,0x4c,0x5f,0xbd,0xa5,0x45,0x3d,0x85,0xb0,0x20,0x22,0xa2, - 0xfc,0x46,0x78,0x1d,0xa0,0x93,0xc7,0xf3,0xb9,0x45,0xc4,0x82,0x11,0x65,0xdd,0x26,0x39,0x0d,0x77,0x30, - 0x1b,0xe7,0x01,0x0b,0xb4,0xea,0xec,0x86,0xe9,0x8f,0xd6,0x35,0x06,0xa0,0x23,0xee,0x00,0xc8,0x0c,0xac, - 0x73,0x37,0x63,0xe2,0x3b,0x95,0xfa,0xc7,0x8f,0x54,0x56,0xc9,0x48,0xd2,0x83,0x87,0x0f,0xbf,0xc8,0xfc, - 0xc8,0x26,0x0f,0xf7,0xbf,0x4c,0xed,0x8b,0x29,0x83,0xe2,0x1b,0xe5,0xa2,0x37,0xd5,0x96,0x81,0xfb,0xc8, - 0x7d,0xc0,0x15,0x9b,0x0d,0x93,0x96,0x8a,0xd8,0xa3,0xd3,0xe2,0x8c,0x08,0x27,0xcb,0x28,0xcc,0xd6,0xe3, - 0x02,0xdb,0x8c,0x90,0x8f,0x22,0xb8,0xa4,0x01,0xad,0x05,0xb4,0x74,0x5d,0x57,0x75,0xb8,0x16,0xf3,0x78, - 0x1a,0x47,0x6f,0x74,0x4b,0xe0,0xf2,0x69,0xeb,0x39,0x72,0x23,0xd5,0x2a,0x9e,0x82,0x59,0xe2,0x3e,0xbe, - 0x0b,0x2c,0xf9,0x6b,0x93,0xbe,0x45,0xbb,0x28,0xda,0x75,0xab,0xbe,0x1b,0x2d,0x9a,0x2d,0x7d,0x35,0xd5, - 0x1a,0x24,0x0f,0xd5,0x19,0x3d,0x7f,0xfa,0xf6,0xcd,0x9b,0xc7,0x4f,0xde,0xbe,0xff,0xf8,0xfc,0x59,0xd4, - 0xa9,0xbd,0x1e,0x0d,0x89,0x37,0x62,0xb3,0x94,0xd7,0xc0,0x59,0xc4,0xdc,0x1c,0x67,0x04,0x84,0xbd,0x6d, - 0xe8,0x77,0x60,0x02,0x3e,0xb1,0x7b,0x2c,0x4e,0xae,0x19,0xba,0xe2,0x7e,0x7a,0x92,0x0a,0x6b,0x31,0x3e, - 0x26,0x70,0x5b,0x1e,0x4a,0xb6,0x3f,0x31,0x8f,0xb2,0x63,0xde,0x11,0x11,0x9d,0xf7,0x66,0x03,0x4b,0x26, - 0xc3,0x0e,0xd0,0xb8,0xc5,0xf3,0xcb,0x1e,0xe3,0xeb,0x64,0x5e,0xa7,0x04,0x28,0x53,0x83,0xac,0x80,0x60, - 0x22,0x83,0xeb,0x03,0x3e,0x67,0xe2,0xd0,0x9a,0x3e,0xc2,0xba,0xf6,0xda,0xa2,0xd5,0x6b,0xe5,0x84,0xea, - 0x8d,0x98,0xba,0x3c,0xeb,0xa7,0x65,0xd8,0x79,0x5d,0x80,0x64,0xa2,0x62,0xd6,0x49,0xea,0x81,0xac,0x21, - 0x31,0x44,0xf0,0x1c,0xe1,0xa4,0xde,0x04,0xeb,0xa4,0x3d,0xa7,0xe5,0x20,0x8e,0x76,0x90,0x5b,0xaf,0xca, - 0x67,0xd5,0x25,0xa3,0xb5,0x77,0x06,0x97,0x11,0xb2,0x1e,0xe5,0xb3,0xd9,0xf3,0x0b,0x90,0x17,0x45,0x43, - 0xe3,0xa7,0x91,0x44,0x16,0xd3,0x11,0x14,0x0c,0x7c,0x93,0x0c,0xf1,0xe4,0x28,0xf8,0xc3,0xb2,0x5f,0xf5, - 0x8a,0x53,0xfc,0xd3,0x1f,0xb6,0xd5,0xad,0x02,0x73,0x34,0xf5,0x4a,0x0a,0x16,0x2c,0xf8,0x57,0xb0,0x2f, - 0xcc,0x65,0x32,0x9b,0x16,0x9e,0x65,0x33,0x9e,0xf3,0xfc,0x84,0x0e,0x39,0x42,0x85,0x10,0x18,0x1a,0xc8, - 0xc5,0x02,0x85,0x6b,0x1e,0x9f,0x4a,0xb2,0xc2,0x7a,0xd2,0x49,0x79,0xfa,0x6f,0x9c,0xdd,0x74,0x2a,0xdf, - 0x41,0x59,0xe0,0x13,0xc3,0x79,0x8c,0x64,0xa7,0x8f,0xba,0x04,0xdb,0xb8,0x34,0x68,0x81,0x38,0x9b,0x9d, - 0x9d,0xed,0x22,0xb6,0xef,0xc9,0x84,0x78,0xab,0x38,0x32,0x80,0xb5,0x75,0x9a,0x13,0x8a,0x9c,0x6d,0x01, - 0x78,0xb6,0xa4,0xc0,0x16,0xe8,0x63,0xda,0xb5,0xf6,0x03,0x65,0x5b,0x10,0x0c,0x50,0x3a,0xf5,0x53,0x09, - 0xfa,0x36,0x2e,0xff,0xfc,0x68,0x0e,0xee,0x1e,0x8d,0x2a,0x54,0x25,0x23,0xca,0xf9,0xc8,0x64,0xac,0x03, - 0x9e,0xde,0x69,0x9a,0x72,0x57,0xec,0x3f,0x11,0x81,0x81,0xdf,0x54,0x45,0x20,0x6d,0x93,0x21,0x65,0x94, - 0x01,0x02,0x6b,0x84,0x31,0x67,0xa5,0x6c,0x18,0x91,0x85,0xd4,0xc1,0xe6,0xc9,0x0a,0xe2,0x95,0xfe,0x03, - 0x85,0xd2,0x96,0x30,0x1b,0x3f,0xbc,0x7f,0xf9,0xb4,0x5a,0x50,0x4d,0x04,0x95,0x94,0xe9,0xc5,0x7a,0xff, - 0xf5,0xe5,0xfe,0x83,0xb3,0x42,0x45,0xff,0x37,0x94,0xf5,0xfd,0xd7,0x17,0x8f,0x39,0x31,0xed,0x24,0x3e, - 0xfc,0xf2,0xc1,0x99,0x8a,0xee,0x75,0xd3,0x9e,0x72,0x41,0xd5,0x4d,0xdc,0x47,0xc1,0xdd,0x4e,0xda,0x57, - 0x4f,0xb8,0xe0,0x61,0x37,0xf1,0x19,0x27,0x1e,0x45,0x21,0x0f,0xfb,0x19,0x70,0x23,0x8c,0xb0,0xad,0xad, - 0x2a,0xb6,0xe5,0x55,0xad,0x40,0x39,0x95,0x09,0x08,0x4b,0x6d,0x54,0x47,0x94,0x30,0xc4,0x98,0xe9,0x84, - 0x4a,0xe9,0x80,0xc5,0xe2,0xd2,0x66,0xc1,0x0f,0x8f,0xc6,0x9e,0x76,0xd7,0xbd,0xc5,0x1d,0x52,0x7f,0xd1, - 0x92,0x39,0xee,0x90,0x99,0xf7,0x58,0xef,0x66,0xd1,0xe1,0x91,0xe1,0x49,0x6d,0x3a,0x11,0x60,0x46,0x1f, - 0x56,0x0c,0x91,0xe1,0xe0,0xbd,0x46,0xa2,0x86,0x60,0xc6,0x12,0xd4,0x49,0xf5,0xf2,0xc3,0x5b,0xdb,0xc5, - 0x2e,0x13,0xc8,0x7c,0xf3,0x26,0x87,0x07,0x7d,0x2b,0xe4,0x3d,0x84,0x9c,0x93,0xdd,0x28,0x8b,0x76,0x59, - 0xf5,0x06,0x01,0x05,0x08,0xee,0x7c,0xf4,0x6b,0x55,0x94,0x71,0xb4,0x43,0x93,0x6c,0x19,0x69,0x54,0xb4, - 0x9b,0xc5,0x7b,0x07,0xd0,0x83,0x78,0x52,0x65,0x12,0x25,0x13,0xfa,0x93,0xa2,0xec,0x6e,0x95,0xfc,0x31, - 0xc0,0x75,0x08,0xfc,0xc3,0x28,0x07,0x35,0x1b,0xe5,0x21,0x59,0x47,0xef,0xf6,0xc0,0x11,0x91,0x53,0x90, - 0xc0,0x27,0x90,0x8a,0x74,0x9b,0x9f,0xe1,0xe7,0x6a,0x59,0x10,0xb0,0xd3,0xd3,0x29,0x21,0x3c,0x30,0x5c, - 0xc2,0x3f,0x15,0xa7,0x7b,0x8b,0x6a,0x56,0x9c,0x16,0x7a,0xb6,0xd7,0x14,0x84,0x16,0x25,0x6d,0x55,0x6e, - 0xa4,0xce,0xf3,0xa6,0x75,0x65,0xf1,0x5e,0x4d,0x6d,0x1f,0x88,0xbb,0x04,0xf7,0x7d,0x49,0x07,0x39,0x5a, - 0x20,0x94,0x7a,0x75,0xbd,0xd7,0xef,0x68,0xad,0x89,0xa7,0xa7,0xe3,0x14,0x4f,0x74,0x4c,0xed,0xe5,0xa7, - 0x2d,0xbf,0x81,0x98,0xdd,0xa3,0xb1,0x11,0xa5,0x73,0x74,0x07,0x5b,0xc1,0xc2,0x41,0xda,0xe0,0x15,0x24, - 0x2f,0x5e,0xe3,0x4f,0x5c,0xbb,0x5f,0xf5,0x51,0x43,0x0c,0x68,0x1b,0x47,0xbf,0x94,0x04,0x23,0x3d,0xee, - 0xbb,0x0a,0x97,0x81,0x76,0x9d,0xd2,0x19,0x71,0x65,0x75,0xb1,0xc0,0x67,0xab,0x13,0x9a,0xef,0x78,0x9f, - 0xd0,0x4e,0xd2,0x3d,0xab,0x55,0xb9,0x51,0xaa,0xda,0x3d,0x20,0x80,0x90,0xc3,0x33,0xa7,0x23,0x9c,0x85, - 0x4a,0xa6,0x62,0x9d,0x7c,0x93,0xed,0x9b,0xdd,0x33,0x46,0x66,0x06,0x52,0x62,0x6f,0xca,0x04,0x08,0x93, - 0x02,0x13,0xfe,0x66,0x82,0x3f,0xe9,0xe1,0x51,0x02,0x0c,0x45,0x53,0x18,0x1f,0x96,0x47,0x49,0xea,0x72, - 0x76,0x23,0x05,0xd4,0x9c,0x96,0x60,0x78,0x73,0xca,0xf8,0xf3,0x50,0x12,0xcc,0xde,0x5d,0xb4,0xd5,0x24, - 0x54,0x10,0x78,0x45,0x8d,0xb3,0x48,0x68,0x9d,0x50,0x92,0x77,0x20,0x0d,0xe0,0x71,0x4b,0xed,0x9c,0xac, - 0x68,0x07,0x45,0xe7,0xb4,0x84,0x11,0x8c,0x0c,0x08,0x5d,0x8e,0xf0,0x82,0x6d,0x77,0x47,0x91,0x1b,0x3c, - 0xa5,0x52,0x4c,0xb1,0x88,0x70,0x5a,0xcd,0xe9,0xdd,0x3e,0x4e,0xfc,0xa3,0xc7,0x58,0xa9,0xa8,0x40,0x52, - 0xe2,0x6a,0x00,0x9e,0xf8,0x9c,0x7e,0x54,0xc3,0x78,0x26,0x45,0x5b,0x78,0x98,0xd8,0x87,0x50,0xa1,0x32, - 0xf1,0x5f,0xe6,0x0d,0xca,0xe2,0x67,0x22,0x3f,0x41,0xb9,0xff,0xd3,0x69,0x00,0x3c,0x94,0x69,0x04,0x8f, - 0x0a,0x73,0x87,0x3e,0xd2,0x8f,0x5a,0xe6,0xed,0x39,0xe7,0x47,0x0f,0xb0,0x78,0x94,0x6a,0x12,0x46,0x10, - 0x0a,0x3d,0x6e,0xe3,0xfd,0x64,0xe2,0x13,0x51,0x6a,0xd7,0xbf,0x8a,0x78,0x9e,0xd6,0x2a,0x7b,0x10,0x2f, - 0x9a,0x42,0xdf,0xd2,0x04,0x81,0x6c,0x4b,0x1e,0x14,0xa3,0x16,0x32,0x50,0xaf,0x82,0x03,0xf8,0x3f,0x06, - 0xf4,0x63,0x93,0x5b,0xad,0x9a,0xb1,0xc8,0x78,0x3e,0xd7,0x78,0x8b,0xa3,0x3c,0x72,0xe7,0x24,0xad,0x91, - 0xe1,0xc5,0x47,0x76,0x07,0x9a,0xb5,0xf0,0xd2,0x07,0x4b,0x39,0x08,0x14,0x30,0xae,0x2b,0x09,0xfd,0xd1, - 0x9f,0xb4,0xf4,0x06,0x25,0x76,0xfe,0x99,0x4a,0xb5,0x2f,0x80,0x68,0xcc,0x07,0x27,0xe2,0x61,0xbd,0x26, - 0x3c,0xb9,0xa1,0x72,0xdc,0xde,0xff,0xfc,0x19,0x1d,0x28,0x83,0x8c,0xae,0x63,0x41,0xa4,0x18,0xed,0xf2, - 0x2c,0x92,0x0e,0x6d,0x01,0x4d,0x11,0xaf,0xdc,0x6c,0xe5,0xd4,0x97,0x92,0x49,0x9b,0x2d,0xcc,0x6c,0x3e, - 0x05,0x5a,0x58,0x0b,0x54,0x47,0x8f,0x9f,0x3c,0x7d,0xf6,0xfc,0xc5,0xb7,0xdf,0xbd,0xfc,0xfb,0xf7,0xaf, - 0x5e,0xbf,0x79,0xfb,0xee,0x1f,0xef,0x3f,0x7c,0xfc,0xe1,0xc7,0x9f,0x7e,0xfe,0xe7,0xbf,0xf2,0x93,0x29, - 0xb1,0xf3,0x67,0xe7,0xc5,0xaf,0x9f,0xe6,0x8b,0xb2,0x5a,0xfe,0x56,0x37,0xed,0xea,0xe2,0xf2,0xea,0xfa, - 0xf7,0xfd,0x83,0x87,0x5f,0x7c,0xf9,0xd5,0x5f,0xff,0xfb,0x6f,0x5f,0xef,0x3e,0xc8,0xa2,0x71,0xe9,0x25, - 0xd4,0x9e,0xf0,0x50,0x41,0xaa,0x90,0x06,0x5f,0x75,0x92,0xb0,0x88,0x59,0xf4,0x52,0xfa,0xf5,0xd4,0x76, - 0xcb,0x72,0x4a,0x83,0x48,0xca,0xea,0xdb,0x34,0x48,0x98,0xcc,0x4c,0x7b,0x0b,0x61,0x0c,0x41,0x5b,0x93, - 0xed,0xc3,0xf0,0x66,0x5c,0x39,0xe8,0xb9,0x6d,0x70,0x7a,0x4d,0x33,0x3a,0x51,0x54,0xf3,0x5f,0x44,0x38, - 0xe5,0xbb,0xd9,0xd4,0xe6,0xfe,0xf5,0x8b,0x1d,0xfd,0xcd,0x37,0x7f,0xdb,0xa3,0x8c,0xbf,0xfc,0x2d,0x61, - 0x74,0x13,0x17,0x99,0x7c,0xfc,0x94,0x7a,0x4b,0x45,0x9a,0xdd,0x6c,0xf4,0xdf,0x5f,0x25,0xc9,0x37,0x0f, - 0xbf,0xfa,0xca,0x10,0xec,0x18,0x5d,0x39,0xd6,0x99,0x7e,0xf4,0xe8,0x6f,0xb7,0x85,0x3d,0x8e,0xfe,0x97, - 0x11,0xc8,0xcd,0x65,0x5d,0x74,0xb4,0xfa,0x96,0x6a,0x23,0x64,0x75,0x23,0x66,0x20,0x74,0xda,0x37,0x46, - 0x47,0xc2,0x07,0xe6,0x00,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0xb9,0xb3,0x63,0x3e,0xb1, - 0x27,0x15,0x7d,0x87,0xf1,0xf0,0xd9,0x5d,0x02,0x33,0x7f,0xfb,0xfa,0xa3,0x93,0xde,0xaa,0x00,0xb2,0x8b, - 0xe0,0x5b,0xec,0x3f,0xfa,0xb0,0xe8,0x14,0xa8,0x82,0x02,0x33,0x16,0xd0,0x50,0x91,0x0a,0x82,0x0b,0x02, - 0xf2,0xdc,0xe7,0x35,0x7a,0xba,0xaa,0x21,0xf5,0xf6,0xbb,0x90,0x71,0x77,0xd6,0x98,0x33,0x7e,0xbc,0x45, - 0x87,0xbc,0x02,0x73,0x99,0x6e,0x9c,0x4e,0x59,0xef,0xa3,0xd1,0x82,0xf9,0x2c,0x0c,0xe1,0xbd,0x3e,0x7b, - 0x7e,0xb5,0x8c,0xa3,0xf8,0x7f,0x6e,0xc7,0xbf,0xfc,0xd2,0xfc,0x25,0x89,0x89,0x61,0x26,0xf2,0x2d,0x8b, - 0x0f,0xff,0x67,0x7c,0xf4,0x97,0x24,0xf2,0xaa,0x20,0x4d,0xfc,0xe1,0xe6,0x5c,0x1d,0x7e,0x71,0x24,0xf2, - 0x09,0x34,0xbe,0xa8,0x2e,0xba,0xd6,0x11,0xbc,0xbb,0x78,0x51,0x68,0x2d,0x08,0xd4,0x30,0x63,0xa3,0xb2, - 0xba,0x8c,0x93,0xbd,0xbf,0xfd,0xf5,0x4b,0xfd,0x15,0x51,0xd3,0x69,0x7f,0xd1,0x20,0x73,0xea,0x8e,0xa3, - 0xa3,0x3f,0xdd,0x6c,0x87,0x3e,0xf8,0x37,0xc8,0x63,0xd3,0xa9,0x73,0x02,0x9f,0x39,0xa4,0xc5,0x87,0x47, - 0x21,0x01,0x1a,0xea,0x25,0xa9,0x82,0x61,0x45,0x76,0xa7,0x02,0x59,0xa0,0x1b,0xa7,0x6f,0x63,0x99,0x87, - 0xe8,0xdb,0x44,0xeb,0xde,0x29,0x2c,0x94,0xd0,0xde,0x01,0x24,0x0c,0xbe,0x25,0x2e,0x9f,0x6d,0x4c,0x9c, - 0xfd,0x8a,0x88,0x48,0x90,0x6d,0xbd,0x24,0xc3,0xef,0x75,0x2a,0x32,0x14,0x47,0xd6,0xa5,0x32,0x1d,0x1d, - 0x12,0xd6,0x10,0x18,0x11,0x38,0x32,0x57,0x13,0x03,0x4a,0xaf,0xc4,0x22,0xfe,0x87,0xda,0x2d,0xd8,0x1d, - 0x7e,0x86,0x9f,0x65,0x54,0xf0,0xf2,0xd4,0x70,0x7f,0x7a,0x16,0x6f,0x28,0xb0,0x0e,0xbe,0x16,0x09,0x31, - 0x4c,0xf3,0x9c,0x4d,0x20,0xbd,0x1e,0x40,0x40,0x4c,0xbf,0x77,0xf0,0x08,0xb4,0x34,0x40,0x67,0xed,0xe8, - 0x24,0x37,0x62,0xb9,0xed,0xa9,0x91,0xc2,0x30,0x83,0x45,0x0f,0xd9,0x2a,0x76,0xd9,0xca,0x08,0x68,0x94, - 0x93,0xf1,0x7a,0x69,0x2f,0x2b,0xfe,0x44,0x08,0x9c,0x41,0xc6,0xc8,0xd2,0x60,0x97,0x0b,0x45,0x4d,0x4f, - 0x65,0x15,0xd6,0x62,0x45,0xf9,0x2e,0x65,0x24,0xba,0x08,0x53,0xa9,0x13,0xfa,0x1b,0x91,0xe6,0x51,0x37, - 0x1d,0x6f,0xc9,0x1f,0x2a,0x22,0xd4,0x90,0x7a,0x01,0xa4,0x35,0x1a,0x0a,0xf5,0x0c,0xb4,0xae,0x56,0x68, - 0xef,0x5a,0xd6,0x47,0x6b,0xbb,0xa1,0xa9,0x93,0x46,0xe3,0x77,0x7b,0xdb,0xd8,0xc7,0x04,0x1c,0x62,0x57, - 0xdc,0xe0,0xe1,0x9e,0xe7,0x58,0xdb,0xa9,0x91,0x07,0x7a,0x1f,0x9c,0x1a,0x61,0x5d,0xa9,0xf8,0x5a,0x0d, - 0xd4,0x94,0xd3,0x33,0x9d,0x30,0x52,0x21,0xec,0xf6,0x2c,0xaf,0x0b,0x66,0xca,0x6b,0xb8,0x5d,0x4b,0x9d, - 0x14,0x15,0xbc,0x7f,0xae,0x6d,0x5a,0x5f,0xaf,0xa6,0x67,0x3e,0x4a,0xff,0x5b,0x9a,0x8b,0xcf,0x70,0xa3, - 0x76,0x42,0xdc,0x52,0x95,0x1d,0x0a,0x07,0x2a,0x4e,0x20,0x8c,0xf5,0x26,0x23,0xf5,0x27,0xe4,0x05,0x8e, - 0x8e,0x89,0xb7,0xdb,0xdb,0x5b,0x58,0x73,0x1c,0x3f,0x7d,0xfc,0xe6,0xe9,0xf3,0x57,0xc7,0xc7,0xff,0x81, - 0xf4,0xc1,0xd6,0xf6,0xe0,0x7f,0xe2,0xc3,0x7c,0xef,0xf7,0x23,0xfc,0xf9,0x65,0xf6,0xcb,0xee,0x2f,0x7b, - 0xbf,0x8c,0x8e,0xfe,0x92,0x26,0x93,0x5f,0x1e,0xfc,0xf2,0xc0,0x92,0x7e,0xed,0x7f,0x24,0xde,0xf0,0x02, - 0x87,0x49,0x60,0x48,0xf4,0xcb,0x83,0x5d,0x21,0x99,0x77,0x41,0x7f,0xea,0x90,0x20,0x7e,0xb0,0x2b,0xa4, - 0xee,0x1f,0x4c,0x4e,0xd7,0x6a,0xa7,0x43,0xa9,0xb5,0xeb,0x72,0xc0,0x78,0x33,0xdb,0x38,0x32,0x22,0x31, - 0xf6,0x8d,0x76,0xe3,0xf0,0x73,0x62,0x74,0x21,0x18,0x0e,0x52,0x52,0x58,0x37,0x75,0xa8,0x2c,0x3f,0xe9, - 0x50,0x8f,0x04,0xe6,0xd4,0xff,0x16,0x3a,0x84,0x20,0xd3,0xc9,0x12,0xb7,0x03,0x05,0xab,0x23,0x8a,0x20, - 0xd4,0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb5,0x58,0x35,0xed,0xd6,0x89,0xde,0xca,0x9d, - 0xcd,0xd4,0x28,0x32,0x66,0x28,0x63,0xee,0xb5,0x11,0x0c,0x66,0x83,0xca,0x2c,0x98,0x81,0xd0,0x04,0xc9, - 0x07,0x65,0x86,0x0f,0xc6,0x6d,0x27,0x1b,0x52,0xb4,0xbc,0x01,0x5a,0x8a,0xed,0x23,0x57,0x55,0xf0,0x7e, - 0x74,0x69,0x10,0x23,0x78,0x04,0xfd,0x45,0xf7,0x74,0xec,0xe3,0xf2,0x9e,0x3a,0xc5,0x58,0x55,0x70,0x35, - 0x32,0xd8,0x20,0x05,0x87,0x56,0x53,0xad,0xea,0xa9,0x0e,0xbf,0x0a,0x8d,0x0d,0x6e,0x5a,0x1c,0x18,0x6c, - 0x4f,0x54,0x77,0x50,0x51,0x9b,0xe1,0x50,0x95,0x43,0x85,0xe1,0xe7,0xce,0x83,0xea,0xdf,0xd8,0x1b,0x5b, - 0x03,0x28,0xca,0x1a,0x94,0xb1,0xd8,0x51,0xc3,0xa6,0x0c,0x7a,0xcf,0x7e,0x0b,0x77,0xfb,0x40,0x0c,0x28, - 0x33,0xff,0x97,0xdc,0x20,0x34,0x1c,0x1b,0x7e,0x5c,0xe9,0x61,0xb7,0x86,0x61,0x60,0x6c,0x07,0xed,0x60, - 0x6f,0x6f,0x31,0x3a,0xb6,0x88,0x0d,0x8c,0x21,0xfb,0x25,0x45,0xe6,0x65,0x25,0x61,0xeb,0xee,0xae,0xb4, - 0x2c,0x57,0xb7,0x92,0xd0,0xac,0x7d,0xc3,0xba,0xe0,0xf6,0x76,0xd3,0x8e,0x97,0xd2,0x9a,0xeb,0xc5,0x49, - 0x35,0xef,0xa6,0x9d,0x54,0xd5,0x5c,0xe7,0xe5,0xa0,0x5d,0xfb,0xff,0x8e,0x25,0xbc,0x48,0xd8,0xd8,0xf8, - 0x76,0x51,0x0e,0x1a,0xc2,0x5b,0x22,0x9a,0x0d,0x21,0xd8,0x26,0x2f,0x76,0x0c,0x94,0x27,0x8e,0xbf,0xc9, - 0xf6,0x77,0x76,0x5e,0x13,0x89,0x3f,0x3a,0x9d,0x57,0x15,0xe4,0x71,0x19,0xd3,0x53,0x30,0x30,0x29,0x99, - 0xfe,0x0d,0x6a,0x6d,0x7a,0x5d,0xa7,0xce,0x4e,0xa2,0x68,0xd3,0xb3,0xa5,0x9d,0xf4,0x45,0x7e,0x22,0x05, - 0x7f,0x98,0xa4,0xae,0x0b,0xbe,0xd6,0xe9,0x60,0x5f,0xbd,0x14,0x9b,0x38,0x9a,0xfc,0x0d,0x75,0x6c,0xd2, - 0x12,0x61,0xea,0xbe,0x5a,0x19,0x0b,0x49,0x67,0x91,0x69,0x4c,0xe3,0x85,0xcb,0x8f,0x45,0x7b,0x50,0x67, - 0x4e,0x86,0xa5,0x20,0xe6,0xcc,0xf6,0xc7,0xc5,0xa3,0xda,0x9a,0x92,0x15,0x62,0x98,0x79,0x58,0x1c,0x1d, - 0x11,0xae,0xf4,0xfc,0xc2,0x90,0xf6,0xfd,0xb0,0xed,0x0a,0xb2,0x8e,0xd6,0x43,0xc6,0x1d,0x54,0xec,0x68, - 0xed,0xfb,0x38,0x77,0xee,0x08,0xd6,0x8f,0xc0,0xaa,0x54,0xdb,0x40,0xc4,0xc5,0xe2,0xe0,0x6f,0xf6,0x0e, - 0x9c,0x94,0x98,0xbb,0x4c,0x27,0x4e,0xa9,0x0e,0x92,0xa0,0xb6,0xd3,0xce,0x99,0x75,0x6c,0x57,0x1d,0x9b, - 0xdc,0x95,0x59,0xfa,0xb9,0x1c,0x98,0x8f,0x71,0x1f,0x6d,0x78,0x92,0x40,0x1f,0x96,0x47,0x30,0xec,0xa4, - 0x1f,0x58,0x08,0x27,0x61,0xc3,0xb3,0x0d,0x63,0x54,0x23,0x0d,0xa9,0x07,0x0c,0x85,0x0d,0x85,0x31,0xa9, - 0xbf,0x39,0x98,0x78,0xe3,0x56,0x57,0x0e,0x38,0x80,0xfb,0xcd,0xe6,0xbd,0xf6,0xd9,0xc9,0x79,0xcb,0xd1, - 0xb1,0x54,0xe4,0x3c,0x2f,0x54,0xe9,0x3b,0x72,0x2e,0x1d,0x21,0x0c,0x72,0x7b,0xbb,0x3f,0xf6,0x4b,0x6f, - 0xcb,0xee,0x69,0x5a,0x71,0x6f,0x99,0x5b,0x26,0xe3,0x72,0x6f,0x6f,0x9c,0xd4,0x3c,0xa8,0xc3,0x72,0x57, - 0x3b,0xb3,0xdb,0xda,0x57,0x7a,0xd1,0x03,0x24,0x78,0x6f,0xe8,0x04,0xbe,0x1d,0x19,0x66,0xc3,0x49,0x46, - 0xfd,0x17,0x8b,0x8e,0x68,0x02,0x56,0xd3,0x25,0x01,0x56,0xf9,0xc8,0x3b,0x8b,0x10,0x60,0xa1,0x82,0x9d, - 0x9d,0x0b,0x68,0x1f,0x21,0x8c,0x74,0xd0,0xe5,0xab,0x39,0xb3,0xe7,0xb0,0x4f,0xba,0xf6,0x00,0x83,0x6d, - 0x98,0x58,0x2c,0x65,0x8e,0x44,0x3e,0xe7,0x6a,0xfa,0x11,0xa0,0xd9,0xa6,0x83,0x70,0xbb,0xb6,0x85,0x88, - 0x6b,0xd9,0xae,0x77,0x76,0xdc,0x06,0xa3,0x0a,0xcc,0x33,0x95,0x86,0x0e,0x93,0x75,0x0f,0x19,0x4f,0x4d, - 0x20,0xee,0x27,0xb6,0xa5,0x9b,0x24,0x75,0x57,0x3b,0x3b,0xb9,0x07,0x48,0xb3,0x26,0x90,0x5f,0xc9,0x23, - 0x38,0x24,0x7d,0xa1,0xeb,0xeb,0xe0,0x7c,0x0e,0x08,0x4c,0x1e,0x07,0x86,0xbd,0x96,0xca,0x6e,0x6f,0x6d, - 0x65,0xdb,0x07,0x63,0x11,0x68,0x18,0xf0,0xfc,0xa4,0xaf,0x81,0x55,0x88,0x5b,0x0a,0x13,0xbc,0x5d,0x79, - 0xe3,0xdb,0x9e,0xba,0xb6,0x9b,0x7e,0xdb,0x9d,0x96,0xe1,0x95,0x63,0x1a,0xf7,0xc6,0x5f,0xb6,0xf5,0x00, - 0xac,0x8f,0xfb,0x18,0x64,0x63,0x0d,0xa9,0xeb,0xb6,0xbe,0xc4,0xb9,0xd3,0x99,0x9e,0x11,0x2f,0xec,0x6a, - 0x3a,0xf1,0xbb,0x8e,0xc6,0xb7,0x69,0x36,0xae,0xd9,0x64,0x9a,0xc9,0x31,0xd9,0x10,0x7c,0xf8,0xf9,0x3d, - 0x11,0x6e,0xb6,0x4b,0x5f,0x17,0x44,0x3d,0x51,0x12,0x0a,0xa8,0xf6,0xdd,0xbc,0x7c,0xf1,0x57,0xac,0xc6, - 0xed,0xed,0xd7,0x5f,0xe1,0xd7,0x7f,0x7e,0x65,0xf5,0x76,0xc9,0x8d,0x99,0x50,0x39,0x7d,0xad,0xdb,0x11, - 0x67,0x53,0xfd,0xf3,0x95,0x4e,0x4b,0xa5,0xe9,0x40,0xd3,0x75,0x7e,0x32,0xd7,0xe9,0xf6,0x76,0xad,0x20, - 0xd1,0x90,0x97,0x7d,0x63,0x09,0xb1,0x32,0x99,0xfb,0xeb,0x00,0xc9,0xdc,0x0b,0xce,0xa3,0x01,0x85,0xf3, - 0xce,0xce,0x83,0x92,0xfd,0x22,0x58,0x27,0xfa,0xc0,0x50,0xe8,0xa1,0xa1,0xa0,0xaf,0xea,0x53,0xcf,0xc2, - 0xa9,0xa5,0xb5,0xe0,0xc3,0x5b,0x75,0x7f,0xfc,0xc9,0xe5,0xbf,0x7d,0x6a,0x4c,0x05,0x0c,0x0a,0x98,0x5a, - 0xe1,0xce,0x5b,0x31,0xeb,0x35,0xa8,0x80,0x6a,0xa4,0xb6,0xf3,0x33,0xe5,0x58,0xe2,0xe9,0x79,0x31,0x9f, - 0xd5,0xba,0x04,0xf3,0x05,0xeb,0x0f,0x82,0xe4,0xf9,0x42,0xb1,0x72,0x93,0xdf,0x91,0x91,0x37,0xd7,0xe5, - 0xf4,0x45,0x0e,0x33,0xf9,0x6b,0xaf,0x4e,0x1d,0x95,0x60,0xb8,0x51,0xb5,0x48,0xf2,0xda,0x62,0x0a,0x4c, - 0x6e,0x1e,0x29,0x95,0x80,0x37,0x63,0x10,0xe6,0x12,0x4f,0x89,0xb5,0xa5,0xfe,0x70,0x11,0xf3,0x4c,0xe9, - 0xa7,0xe5,0x53,0x69,0x88,0xd2,0xdd,0x33,0xa7,0x9b,0x8e,0x73,0xba,0x1b,0x04,0x3d,0x7f,0x98,0xd2,0xda, - 0xbd,0x9c,0x71,0xba,0x79,0x96,0xfa,0xe7,0x34,0x5e,0xf6,0xbc,0xd4,0xa2,0x8e,0x35,0x03,0xa3,0x97,0xda, - 0xbd,0x64,0x8f,0x83,0x1c,0x18,0x16,0x25,0x50,0xde,0x96,0x61,0xe1,0x32,0x2c,0x5c,0x76,0x0b,0x13,0xbe, - 0xf1,0x33,0xfe,0xb8,0xbf,0x63,0x1c,0x92,0xee,0xa2,0x5d,0x73,0xd0,0x96,0x7c,0xc2,0xe2,0x7c,0xcd,0x68, - 0xad,0xe8,0x27,0xf0,0x17,0x09,0x6a,0xfd,0xe0,0x90,0x9e,0xb8,0x04,0x6d,0xc7,0x1d,0x07,0x9e,0xb6,0xb6, - 0x86,0x48,0x6e,0x67,0x41,0x28,0x77,0x7c,0x5c,0x9d,0x1c,0x1f,0x47,0x6c,0xac,0x22,0xcf,0xe1,0x47,0x4d, - 0x3d,0x41,0xef,0x24,0x23,0xcd,0x89,0x6c,0x3f,0xaf,0x56,0xf3,0x19,0xcd,0x36,0x21,0x0e,0x82,0xd0,0xed, - 0xef,0x4b,0x36,0x12,0xec,0x63,0xc3,0xdb,0x5b,0x10,0x5b,0x94,0x63,0x36,0x4f,0xd1,0x3c,0x87,0x57,0x4b, - 0x53,0x9c,0xb0,0xb5,0x2d,0x7d,0xc8,0x4e,0x0a,0x44,0xc5,0x62,0xde,0x78,0xd0,0x0d,0xeb,0x2e,0xb1,0x04, - 0x3c,0xaf,0x17,0x8b,0xa7,0xd5,0xaa,0x6c,0x77,0x77,0xe9,0xe0,0xf2,0x63,0xfc,0x18,0xaa,0xd3,0x05,0x11, - 0xe3,0xdb,0x7f,0x96,0x84,0x7e,0x4d,0x53,0x67,0xba,0x0d,0xdc,0x03,0x9f,0xe9,0x66,0x5a,0x17,0xb0,0x9c, - 0xe7,0xd9,0x61,0x74,0x9f,0x13,0xba,0x3f,0x20,0x72,0x31,0x1f,0x85,0x9b,0xd3,0x4a,0x88,0x73,0xc2,0xd8, - 0xa8,0x84,0x50,0x29,0x3f,0x36,0xf4,0xb8,0xca,0xb6,0x0b,0x3a,0x12,0x70,0x12,0x7e,0x06,0x1b,0x84,0x58, - 0x60,0x63,0xe3,0x2b,0xaa,0xb2,0x6f,0x5a,0xad,0xb3,0x66,0xd2,0x58,0xa2,0xd3,0xab,0x3f,0xfe,0x59,0xd2, - 0x46,0xab,0xa9,0x3c,0xcd,0x4d,0x45,0x2d,0x2d,0x61,0xb9,0x91,0xa8,0x15,0xbd,0xae,0xf0,0xea,0x93,0xfa, - 0x27,0xce,0xce,0x4e,0x40,0xf1,0x77,0x20,0xcc,0xec,0x7f,0x71,0x4b,0xd2,0x7d,0x77,0x24,0x5a,0x02,0x0d, - 0xc3,0x4e,0x4c,0xbc,0xac,0xb5,0x7f,0xfa,0x5c,0x8b,0x90,0x8d,0xb3,0x11,0x46,0xcc,0xe2,0x16,0xbd,0x56, - 0x4d,0x38,0x4a,0x6d,0xc9,0x9b,0xee,0x30,0x35,0xa1,0xda,0xfa,0xf6,0x56,0x6f,0xb3,0x09,0xea,0x36,0x9e, - 0xe3,0xe9,0x64,0xea,0xe9,0xb0,0x94,0xba,0xe3,0xe6,0x5c,0xc3,0xea,0xbf,0xac,0x5a,0xd0,0xbf,0x6c,0x79, - 0x1f,0x80,0xc3,0xdb,0xc0,0x3c,0xa0,0x0f,0x82,0xb4,0x76,0xb1,0x3f,0x6e,0xdc,0xd9,0xcb,0x34,0xfa,0x22, - 0xbf,0x72,0xa4,0x24,0x34,0x82,0x8e,0x54,0xd4,0xea,0x80,0xaa,0x53,0x25,0xe0,0x44,0xb3,0xff,0x29,0xf6, - 0x11,0x3f,0xf5,0x5d,0x46,0x7d,0xd5,0x62,0x20,0x5b,0x1a,0xd1,0x91,0xdd,0x2d,0xde,0x33,0x49,0x00,0xfd, - 0xf6,0xb6,0x86,0xa5,0x96,0x81,0xeb,0x49,0x99,0xd6,0x93,0xf8,0x23,0x21,0x18,0x3e,0x43,0x78,0x14,0x84, - 0x8c,0x30,0xd7,0x76,0xac,0x20,0xec,0xac,0xf5,0x6d,0x19,0xe0,0xeb,0x57,0x6e,0x9f,0xdf,0x31,0xe4,0x70, - 0x34,0x81,0xa9,0x83,0xdf,0xc8,0x63,0xdf,0xa7,0x70,0xaf,0xdd,0xde,0x0a,0x69,0x0c,0xe3,0x22,0x6b,0xed, - 0xab,0x8f,0x04,0xcd,0x85,0x1d,0x0b,0x57,0xe0,0x57,0xd7,0x99,0xd0,0x3c,0xc3,0xc1,0x1d,0x36,0xaa,0xdf, - 0x9a,0x86,0x26,0x81,0xc6,0x69,0xdc,0x3c,0xca,0x2d,0x14,0x36,0xc0,0x6e,0x20,0x2c,0xb3,0xfc,0xb0,0x39, - 0x3a,0x02,0x80,0x82,0x56,0x38,0x65,0x52,0x68,0x52,0xc5,0x35,0xfb,0x37,0x42,0x97,0xf2,0x6b,0x8c,0x8d, - 0x9f,0x62,0xd9,0x4b,0x7a,0x18,0xa0,0x29,0x9f,0xf7,0x44,0x74,0xe5,0xa4,0xb7,0xe7,0xea,0x6c,0xd0,0x4f, - 0xce,0xba,0x0e,0xb3,0xb3,0x1c,0xf5,0x60,0xe8,0x40,0x9e,0xb4,0x41,0xa1,0xd6,0x93,0xe8,0xa6,0x57,0xc5, - 0x3a,0xd5,0x93,0x36,0x6c,0xcf,0x94,0xf8,0x35,0xfe,0x5c,0x93,0x4c,0xc3,0xe0,0x0f,0x1a,0xfe,0x5c,0xb3, - 0x41,0x41,0x62,0xfb,0x52,0x9d,0x06,0xc3,0x7e,0xd7,0x97,0xc3,0x4d,0x5a,0xab,0xc2,0xa7,0xed,0xd4,0x47, - 0x13,0x13,0x9d,0x42,0xcf,0x1f,0x7c,0xff,0xd2,0x93,0x3b,0x22,0xf0,0xe9,0x72,0x3d,0x46,0x52,0x10,0xe8, - 0x82,0x2e,0xe2,0x02,0x1b,0xb5,0xf0,0x55,0x3c,0xb3,0x33,0x1f,0x48,0x01,0x5c,0x75,0xd3,0x9a,0xd0,0x0b, - 0xc1,0x57,0x3d,0x5e,0xc1,0x83,0x8f,0x0e,0x28,0x76,0x7b,0xc4,0x1f,0x34,0x3a,0x64,0xcd,0xc7,0xb2,0x60, - 0x42,0x55,0xc6,0xbb,0xa8,0x2f,0x7a,0xb1,0x10,0x4d,0xfb,0x71,0xd9,0x88,0x25,0x90,0xac,0x2f,0x03,0xdc, - 0xcd,0x7a,0xbc,0xb1,0x3f,0x4a,0x71,0x4a,0xa7,0x23,0xd6,0xa1,0x3f,0x70,0x35,0x7d,0x01,0x45,0x2c,0x71, - 0x1d,0xb0,0x0b,0xf2,0xc3,0xcb,0x92,0xe0,0xee,0x28,0xbb,0x41,0x96,0xa8,0xb9,0xbc,0xa5,0x51,0x65,0x6b, - 0xe4,0x73,0x03,0x28,0xa2,0x4c,0xf0,0x6d,0x73,0xa4,0xf8,0xc3,0x86,0x3e,0x04,0xd8,0x4e,0x8a,0x54,0xbe, - 0x2f,0xd6,0x63,0xd3,0xdf,0x2c,0x5f,0x03,0x65,0xde,0x31,0xa4,0xa2,0xc4,0xdc,0x87,0x63,0x72,0x89,0x9f, - 0x1b,0x98,0xcc,0x34,0x13,0x0c,0x21,0x67,0x4e,0x5c,0x1b,0x73,0xe6,0x37,0x30,0xae,0x49,0xf1,0xbc,0x1e, - 0x1e,0x42,0x2e,0x43,0x30,0xc7,0x60,0x79,0x98,0x13,0xcf,0x46,0x7f,0x68,0x0c,0x4d,0x42,0xeb,0x2d,0xdf, - 0xe7,0x84,0xe2,0x93,0x54,0x9e,0x9b,0xf5,0xba,0x3f,0x0c,0x3b,0x08,0x3d,0x9a,0x15,0x35,0xf5,0x97,0xa8, - 0x57,0xb3,0x38,0xb6,0x95,0x3a,0x68,0x45,0x66,0x7a,0x3c,0xb0,0xf8,0x05,0xc8,0x02,0x8e,0xae,0x01,0x03, - 0xff,0xb4,0x50,0xab,0x25,0xac,0x0b,0x69,0x0a,0x13,0x28,0xfd,0x4d,0xfc,0x0d,0x6d,0xc2,0x4b,0x70,0x13, - 0x05,0xdb,0x48,0x01,0x0a,0x0b,0x18,0x07,0x2a,0x3d,0x5a,0x14,0x57,0x44,0xca,0xf8,0xf1,0xd1,0xd9,0xd7, - 0x64,0x36,0xd9,0x4e,0x51,0xfe,0xa8,0x19,0xe7,0xe0,0x33,0xf9,0x53,0x9b,0x4b,0xe3,0xa6,0x4a,0xb8,0x99, - 0x29,0x9d,0x44,0x34,0xeb,0xa8,0x65,0x2a,0x11,0x09,0xe8,0x21,0xf1,0xef,0x3a,0x01,0xa2,0x9a,0x12,0xc9, - 0xc3,0xe9,0x66,0x87,0xac,0xfc,0xc6,0x78,0xe1,0xf7,0xd6,0x90,0xb7,0x8d,0x9b,0x0b,0x20,0x5b,0x0c,0x84, - 0x86,0x82,0x01,0x58,0xa9,0x0d,0x78,0x67,0xa1,0x74,0x2e,0xc1,0xa0,0xd9,0x12,0x55,0x50,0xa2,0x92,0x12, - 0x79,0x76,0x55,0xc6,0x95,0x97,0x4e,0x50,0xa9,0x9c,0xa0,0x8f,0xc6,0x92,0x16,0x2c,0x96,0x40,0x49,0xfc, - 0xcd,0x43,0xe1,0xca,0x9b,0xfe,0xd6,0x87,0xb3,0x9c,0xaa,0xb2,0x6d,0x5a,0x35,0xc5,0x7c,0x2d,0xa4,0x31, - 0x68,0xf6,0x7d,0xfc,0x44,0xe4,0x71,0xaa,0x18,0xf1,0x09,0x08,0xfa,0x84,0xce,0x47,0x34,0x14,0x19,0xf7, - 0xca,0x28,0x99,0xe4,0xc4,0xbc,0xa5,0xef,0x8d,0x90,0xcc,0x16,0x85,0xe1,0xff,0x36,0xab,0xb4,0x73,0xfa, - 0xf9,0x64,0xfc,0x5f,0xf3,0x8c,0x09,0x69,0x27,0x91,0xcc,0x93,0x9b,0x7c,0xc8,0xf4,0xef,0x14,0x1e,0x50, - 0xae,0x05,0xbb,0x29,0xb4,0xf5,0xe9,0x74,0xe7,0x00,0x88,0xd8,0x7b,0x06,0x61,0xc8,0x4e,0x93,0xa8,0x09, - 0x5e,0xe4,0x39,0x90,0x2d,0x02,0x06,0x27,0xea,0x1c,0x1d,0x73,0x0e,0xa5,0x4e,0x82,0xe7,0x21,0x11,0x2d, - 0x7c,0x86,0x5f,0x78,0xe1,0x7e,0xf6,0x3a,0xd6,0x32,0xd8,0x49,0xed,0xa8,0x9d,0x9a,0xc0,0x15,0x28,0xa9, - 0x4d,0x0c,0xbf,0xde,0xa7,0xa1,0xc7,0xfd,0x04,0xf0,0x21,0x1f,0xe2,0x9c,0x26,0xbe,0x9f,0xd1,0x78,0xb3, - 0x09,0xb7,0x7a,0xaf,0x03,0xfb,0x28,0x8c,0xde,0x73,0x87,0x46,0xcb,0xcf,0x0e,0xdd,0xae,0x78,0xfc,0xcb, - 0xe5,0x6e,0xf2,0x20,0xc0,0xe3,0xfa,0xf0,0x80,0xc6,0x16,0xf9,0x0a,0xdf,0xfb,0x03,0xbd,0x7f,0x6c,0x58, - 0x80,0x7b,0x2d,0xd2,0xcd,0xd7,0xd6,0xeb,0xd5,0x86,0xf9,0xa8,0x3d,0x61,0x59,0x3e,0xaa,0x2d,0xe7,0xff, - 0x9a,0x85,0x61,0xf6,0x03,0x2f,0x8a,0x71,0x92,0x04,0xd7,0xf4,0x93,0x60,0xc5,0xb5,0x47,0x18,0x99,0x1e, - 0xd7,0x59,0x3d,0xba,0xb7,0xcc,0x89,0x99,0x6a,0xc7,0xde,0x80,0xc8,0x2d,0x25,0xfb,0x10,0x3c,0xcd,0x97, - 0x54,0xa1,0x9e,0x31,0x2e,0x70,0x5f,0x57,0x84,0x10,0xab,0x47,0x85,0xed,0x57,0x85,0x9d,0x5e,0x5f,0xf3, - 0xf0,0x60,0x02,0x89,0x1d,0x21,0x6b,0x55,0x2b,0x69,0xdc,0x74,0xd0,0x4b,0x3c,0x7e,0xa2,0x5e,0xd5,0x2a, - 0xea,0xb4,0xb1,0x75,0x5e,0x55,0x9f,0xe0,0x0f,0xff,0x93,0xe9,0xb2,0x1f,0xc4,0x4f,0xc1,0x20,0x5e,0x95, - 0xd2,0xb5,0xef,0x44,0xe7,0xce,0x2d,0x9b,0x39,0xec,0x65,0x85,0x81,0x4b,0xa4,0x42,0xd7,0xfe,0x0f,0x56, - 0xea,0x1b,0x19,0x53,0xeb,0xf0,0x3b,0xea,0xc3,0x0f,0x1b,0x5d,0xf8,0x21,0xe8,0xc2,0xf6,0x3b,0xc8,0xb3, - 0x5e,0x96,0xb4,0xff,0x06,0x7c,0x8c,0xe0,0xc5,0x4e,0x3b,0xda,0x6a,0x68,0xc6,0xe6,0x5d,0x9a,0xe8,0x08, - 0x97,0x7f,0x24,0x72,0x66,0x56,0x67,0x46,0xec,0xd4,0x66,0xcb,0xda,0xba,0x9d,0x27,0xe3,0xa5,0x95,0x04, - 0x67,0x5e,0x98,0xa8,0xe9,0x59,0x7b,0x29,0x90,0x66,0x49,0x9e,0x3e,0x8a,0x83,0x2a,0xbf,0x0b,0x4e,0x3d, - 0x2c,0x1a,0x55,0xc3,0xb6,0x14,0x3d,0x45,0x92,0x38,0x23,0x3a,0x01,0xa7,0x9b,0x17,0x81,0x96,0xa8,0xa4, - 0x23,0xe0,0x63,0x31,0xc5,0x6a,0xf0,0xa9,0x56,0xb2,0x4f,0x3c,0x54,0x35,0x33,0xf0,0x15,0xe8,0xf3,0xbe, - 0x3a,0xaf,0x27,0xf3,0x3a,0x4e,0xd2,0x55,0x0d,0x03,0x9d,0xed,0x76,0x58,0x3f,0x63,0x34,0x69,0x49,0x20, - 0x47,0x19,0x52,0xae,0x95,0x50,0xae,0xf9,0x61,0xfc,0x8e,0x34,0x57,0x00,0x7c,0x97,0x72,0xa4,0x48,0x75, - 0x87,0x54,0x30,0x26,0x16,0x14,0xd2,0x47,0x30,0xc2,0x8e,0x43,0x7e,0x51,0x57,0xbf,0xc3,0x1d,0x5b,0x6c, - 0xaa,0xb4,0xa1,0xd5,0xed,0x79,0xac,0x43,0x76,0xac,0x60,0x28,0x2f,0x61,0x41,0x48,0x87,0xb3,0x35,0xec, - 0x2c,0xe1,0x7d,0x40,0xef,0x70,0x15,0xc9,0x0d,0xad,0xa3,0x3b,0xb4,0x0e,0x0c,0x76,0x6a,0x3e,0xd9,0x5c, - 0xa4,0x9d,0x3a,0x8b,0xab,0x1e,0x7d,0x9e,0x6c,0x7c,0x53,0xd1,0x57,0x47,0x1c,0x59,0x21,0xa1,0x59,0x3f, - 0xae,0x13,0xfa,0x3f,0x9a,0xd2,0x51,0x50,0x87,0x0b,0xfa,0x5b,0xdc,0x8d,0xa1,0x65,0x54,0x7a,0x5e,0xb8, - 0xad,0x40,0x18,0x9c,0x96,0x7c,0x5c,0x6f,0x6f,0xd0,0x30,0x4e,0x74,0x1d,0x28,0xde,0xbc,0x6c,0x6f,0xec, - 0xf1,0x41,0x69,0x40,0x6f,0x50,0x11,0x01,0x31,0x49,0x58,0x43,0xeb,0x64,0xe2,0xdc,0x34,0xc2,0x67,0xf9, - 0x1e,0x7f,0x1f,0x1b,0x61,0x82,0xb3,0xff,0x57,0x8d,0xa2,0x03,0x9f,0x1b,0xcb,0xe5,0x74,0xa7,0xa9,0x07, - 0x35,0x30,0x65,0x8a,0x88,0x68,0x81,0x93,0x1a,0xc8,0xb9,0x8d,0xd9,0x46,0xae,0xa5,0x23,0x7f,0x42,0x7f, - 0x1b,0xd4,0x8d,0xf3,0x50,0x4a,0x67,0xbf,0x61,0x59,0x54,0x4d,0xfc,0x3a,0x1b,0x6f,0x36,0x6a,0x35,0x22, - 0x6a,0x9c,0x98,0x5a,0x82,0x63,0x46,0x21,0xf4,0x04,0x9f,0x38,0xa2,0x8f,0xf8,0x09,0x66,0xea,0x49,0x92, - 0x36,0x74,0x8a,0x4c,0xa9,0x96,0x29,0x77,0xb5,0x51,0x5c,0xd7,0x34,0x49,0x7c,0x7f,0x4a,0x5e,0x8f,0x1c, - 0xe4,0x69,0x11,0xc7,0xa6,0x37,0x89,0xb4,0x22,0x1d,0xb4,0x2d,0x04,0x0b,0xf3,0xf7,0xd8,0x0c,0x31,0xd0, - 0x6b,0x25,0x37,0xd5,0xb0,0x10,0x55,0xcd,0x65,0x34,0x44,0x3b,0xac,0xeb,0xae,0x00,0x09,0x02,0x31,0xc2, - 0xbb,0x90,0xff,0x8d,0x80,0x01,0x61,0xc2,0xe1,0xdf,0x88,0x4a,0x4a,0xcc,0x29,0x07,0x7b,0x42,0x5a,0x87, - 0x31,0x4f,0x4f,0x43,0xb3,0x81,0x1e,0xa7,0x5a,0xc6,0x05,0x29,0x03,0x3d,0xb1,0xa5,0xcc,0x8c,0x66,0xaf, - 0xa1,0x11,0x22,0x5d,0x76,0x7f,0x4e,0xb3,0x80,0x0f,0xa6,0x8a,0x3e,0x51,0x8d,0x29,0x86,0x4d,0xcc,0x02, - 0xb0,0xc6,0x8f,0xea,0x5b,0xe6,0x02,0xcd,0xc8,0xb0,0x63,0x00,0x44,0x42,0x2d,0x80,0x9a,0xf1,0xec,0x39, - 0xc2,0xa3,0x00,0xec,0xab,0xdb,0x5b,0xc3,0xd7,0xf2,0x2b,0x9d,0x41,0xa6,0x70,0xd1,0x2f,0x5c,0x74,0x0b, - 0x17,0x28,0xbc,0xde,0x3c,0xb0,0x7e,0x0e,0x9d,0x2d,0x98,0xff,0x86,0xe9,0x0f,0xe4,0x90,0xd8,0xd8,0xc6, - 0xc4,0xde,0x8a,0x2c,0xfd,0x67,0xff,0x0a,0x99,0xb5,0x18,0x4c,0xb9,0x6e,0x5e,0xb3,0x52,0xf8,0xf6,0xf6, - 0x5b,0x04,0x72,0x91,0x17,0xe8,0x24,0xdb,0xc3,0x0f,0xac,0x16,0x75,0xe7,0xfa,0xc7,0xfc,0x4c,0xa2,0x01, - 0x64,0xad,0xa5,0x7e,0x68,0x1b,0xc0,0x83,0xc0,0x12,0xc3,0xa0,0x3a,0x82,0xc6,0xfe,0xd9,0x09,0xf3,0xe2, - 0x7a,0x03,0x5a,0x21,0x14,0xce,0xfa,0x0f,0xfe,0x61,0xec,0x16,0xfa,0xc2,0x85,0xe4,0x33,0x02,0x7e,0xcb, - 0xa5,0x80,0x56,0xe5,0x95,0xa8,0xd9,0x2d,0x02,0xe2,0xd3,0x9e,0x34,0x99,0x36,0xcd,0x3f,0x29,0xd7,0x4d, - 0x78,0x1d,0x50,0xa2,0x6d,0x6b,0x0f,0xae,0x72,0x72,0x8d,0xe3,0x9d,0xe0,0x4e,0xe4,0x41,0xf2,0xd6,0xd3, - 0xd1,0xe9,0x56,0xe6,0x91,0x33,0x4f,0x4f,0x7b,0xb9,0xa5,0xab,0xec,0x9a,0x3a,0xa6,0x78,0xa7,0x8b,0xb9, - 0x15,0x25,0xd3,0x9c,0x51,0xaa,0xd0,0x7c,0x81,0xd6,0xba,0x0d,0xf9,0x30,0xe1,0xb4,0xb6,0x5b,0xaf,0xb0, - 0xf0,0x18,0xa8,0x13,0xd2,0xcc,0x0a,0xd1,0x8c,0x3c,0x92,0x39,0xdb,0x3c,0xab,0x78,0x63,0xa0,0x0a,0x96, - 0x22,0xe6,0x6d,0x5b,0x37,0xee,0x81,0x10,0x58,0xd5,0x3a,0x3f,0xe2,0x30,0x51,0x55,0x56,0x7e,0x2e,0xf6, - 0x78,0x95,0x97,0x6d,0x6f,0xb3,0xa2,0x02,0xd2,0x4b,0xd1,0x19,0xe7,0xfc,0x41,0x12,0x97,0x16,0x10,0xd8, - 0x9c,0xc3,0x86,0xa0,0x3b,0x3c,0x22,0xb4,0xc0,0x3b,0xaa,0x0a,0x64,0x40,0x8d,0xf9,0x8a,0xd1,0x59,0x03, - 0x4d,0x25,0x7e,0x50,0x78,0x1c,0xb5,0x7a,0xb1,0x9c,0x13,0x93,0x05,0xb8,0xab,0x20,0xea,0x9f,0x4c,0xb9, - 0x02,0x83,0x26,0xa6,0xe8,0x9a,0x11,0x69,0xdf,0xde,0xd2,0x17,0xe9,0xd4,0xd6,0xbf,0x76,0xb1,0x8f,0x56, - 0x82,0xa3,0xca,0xc3,0xd5,0x91,0xd1,0x2d,0x15,0xad,0x77,0x98,0x46,0xb2,0x8f,0x2c,0xe2,0x35,0xf9,0xed, - 0x5d,0x30,0xba,0xdd,0x05,0x52,0x22,0x62,0xb6,0x78,0x57,0xf0,0x1e,0x0b,0x14,0xfb,0x6d,0xa0,0xd0,0x34, - 0xbc,0xda,0x1d,0x90,0xda,0x83,0x6a,0x50,0xa6,0x13,0x7c,0x2e,0xca,0xa9,0x94,0x78,0x1f,0x7a,0xc2,0x41, - 0xc8,0x9a,0xce,0x23,0x9a,0xfd,0x01,0x8d,0x23,0xab,0xd5,0x59,0xb8,0x3a,0x6e,0xcd,0x5e,0x34,0xd4,0x69, - 0x32,0x4e,0x58,0x4b,0x7d,0x5c,0x94,0x39,0x73,0xbf,0x9f,0xa3,0x77,0x9b,0xd6,0xd1,0xda,0x56,0xbb,0x7d, - 0x2c,0x6c,0xf3,0x4b,0xf3,0x35,0xd1,0x5b,0x8a,0x1b,0xb3,0x54,0xa9,0x65,0xdc,0x37,0x4a,0x5a,0x1a,0xa0, - 0xdb,0xba,0x37,0xf0,0x08,0x7a,0x74,0x13,0xbc,0x80,0xa0,0xeb,0xcf,0xd6,0x3d,0xbb,0xca,0xe1,0xbc,0xb1, - 0xea,0xc9,0xe5,0xb0,0x26,0x16,0x8e,0x49,0x2a,0xe2,0x7a,0x08,0x6a,0x66,0x51,0x28,0x16,0x9c,0xb6,0x5d, - 0x91,0x86,0x25,0xd5,0x0d,0x8b,0x1b,0x88,0x03,0x78,0x2f,0x95,0xfd,0xbd,0x04,0x9a,0xaf,0x74,0x51,0x33, - 0x5d,0xf4,0x89,0x12,0x64,0x5f,0x09,0x12,0x79,0x37,0xb2,0x34,0x38,0x8d,0x86,0xc8,0xa0,0xef,0xe8,0x85, - 0x1d,0x2f,0x99,0x05,0xd4,0x0b,0x98,0x2a,0xa0,0x40,0x1a,0xed,0x86,0x58,0x61,0x85,0xc0,0x5f,0x8f,0x41, - 0x13,0x0a,0x1d,0xab,0x34,0x0f,0xff,0x0a,0xf6,0x48,0x75,0x68,0x24,0x15,0x9a,0xfb,0x12,0xb9,0xb5,0xa7, - 0xe9,0x0f,0xd1,0x94,0x1f,0x10,0x93,0xea,0x43,0xfd,0xe8,0xca,0xd1,0x1c,0x1f,0xd0,0x5d,0xe8,0x18,0xb3, - 0xab,0xfa,0xf0,0x43,0x7d,0x94,0x50,0x41,0xf5,0xa9,0x66,0xb1,0x2d,0xd3,0x1f,0xa3,0x7a,0x55,0xc6,0xd6, - 0x18,0xeb,0x5e,0xed,0x68,0x97,0x3a,0xbb,0x72,0x2f,0x54,0x4b,0xe6,0xaa,0x44,0x21,0x4b,0x4f,0x53,0x4d, - 0xd0,0x8b,0x3f,0xad,0x33,0x74,0xfa,0xa0,0x23,0x69,0xf9,0x03,0x52,0x3b,0x5c,0xe4,0x7d,0x85,0xf5,0x83, - 0x30,0x77,0x1b,0xd1,0x42,0xcb,0xe4,0x8e,0x8a,0x7c,0x25,0xa0,0xfc,0xec,0xea,0xe1,0x3b,0x50,0x5d,0x17, - 0x8b,0x71,0x3d,0x3a,0xbe,0xc4,0x4a,0xe8,0x9a,0x80,0xaa,0x84,0x3c,0xfb,0xb8,0xa0,0xb3,0x6b,0x45,0x08, - 0x6a,0xb6,0xb3,0x43,0xab,0x4e,0x9c,0x92,0x88,0x6a,0x18,0x1e,0x08,0xd3,0xab,0xbf,0x53,0xb1,0x57,0xc0, - 0x4b,0x17,0x6d,0x55,0xc1,0x5b,0xf8,0xef,0xc4,0xfa,0xf0,0xfa,0x9c,0xce,0x09,0x7d,0x44,0xc1,0xea,0xcc, - 0x1d,0xce,0x7e,0x55,0x43,0x05,0xb3,0x69,0xcf,0xc7,0x56,0x64,0xd4,0x1f,0x02,0xc0,0xb5,0xa2,0x42,0x8d, - 0xde,0xb4,0x9b,0x96,0x6c,0x44,0xf9,0xbb,0x4b,0x57,0x53,0xd2,0xa7,0x41,0xb3,0xa7,0xae,0x59,0x81,0x48, - 0x56,0x6a,0x0d,0x49,0xa5,0xca,0x49,0x6c,0x3a,0x56,0x4f,0x96,0x2c,0x59,0x2d,0x6d,0x27,0xce,0x92,0xd4, - 0xe6,0x95,0xf8,0x3b,0xa9,0x41,0x01,0x20,0xa0,0x1d,0x81,0x30,0xcd,0x97,0x2d,0x8f,0xbc,0xf4,0xcc,0x7e, - 0x55,0xe2,0xef,0x84,0xff,0xa6,0x67,0xc9,0x9d,0xfd,0xd5,0xdd,0xfe,0x2e,0x43,0x7c,0xb9,0xa1,0x52,0x62, - 0x3b,0xbb,0x63,0x9c,0xbb,0x2b,0x5a,0x85,0x9f,0x64,0xb5,0x10,0xcd,0x6f,0x30,0xdd,0x88,0x76,0x1c,0xd3, - 0xc3,0x82,0xbb,0xf6,0x1a,0x36,0xb9,0x1a,0x9a,0x09,0x48,0x7f,0x13,0x15,0x68,0xa4,0xb4,0xd7,0x05,0x69, - 0xd1,0x5d,0x84,0x16,0x2e,0xad,0x17,0x26,0xb9,0xd0,0x3d,0x50,0x12,0x41,0xea,0xaa,0x10,0x71,0xca,0x98, - 0x9f,0x27,0x6a,0x53,0x0e,0xc6,0x9a,0x40,0xc6,0xc8,0xb4,0x69,0xee,0x5d,0x8a,0x2f,0xb8,0x88,0x87,0xbd, - 0xe5,0x8a,0x47,0x99,0xed,0x1f,0x1b,0x2d,0x7d,0x5b,0x4e,0xde,0xeb,0xd3,0x39,0x72,0xaa,0xcb,0xf2,0x7b, - 0x31,0x91,0x18,0x9d,0x16,0xf3,0x56,0xd7,0x43,0x06,0xce,0x7f,0x46,0x83,0x38,0xf2,0x5a,0xbe,0x75,0x92, - 0xf6,0xac,0x2f,0x06,0xf8,0x91,0x1b,0x2f,0x89,0x00,0x01,0x4b,0x94,0x01,0x22,0x93,0x8e,0x20,0x40,0x85, - 0x34,0x72,0xdc,0x8c,0x79,0x34,0x0d,0x8b,0x9a,0x2e,0x8a,0x19,0xf6,0x11,0x53,0xfa,0x41,0x0a,0x11,0x44, - 0xf4,0x4d,0x16,0xa4,0x40,0x38,0x7b,0x42,0x83,0xfd,0xb4,0x26,0x36,0xc1,0x1e,0x3e,0xe0,0xfb,0xb6,0x61, - 0x7b,0x68,0x25,0x65,0x90,0x56,0xd2,0x87,0x02,0x19,0x53,0x69,0xd8,0x8a,0xcc,0xb8,0xc6,0x01,0x18,0x77, - 0x8a,0x38,0x82,0xd6,0xe9,0xda,0xd9,0x13,0x05,0x8b,0x7c,0xd1,0x8a,0x8d,0x8a,0x63,0x71,0xc1,0x33,0x6d, - 0x4a,0xa5,0x21,0xe0,0x1b,0x08,0x2d,0x64,0x44,0xf0,0x4e,0xcb,0xed,0x2c,0xba,0x54,0x45,0xe8,0x2e,0xf7, - 0x28,0xa8,0x7a,0x94,0xb3,0xb8,0xa6,0x46,0x47,0x69,0x73,0x73,0x3c,0x57,0x2f,0x7d,0xdf,0xb4,0x21,0xdc, - 0xac,0x9a,0xeb,0xa4,0x8a,0xda,0xb0,0xa2,0x6a,0xf7,0x20,0xac,0xa7,0xb0,0xa4,0xed,0x86,0x29,0x4d,0x58, - 0x55,0xd3,0xeb,0x65,0xd3,0xef,0xe5,0x34,0x6b,0xd0,0x41,0xd7,0xd9,0x29,0x71,0x8c,0xca,0xcb,0x62,0x0d, - 0x45,0xcc,0xe8,0xf2,0x47,0xc4,0x06,0xe0,0x00,0x09,0x81,0xf2,0x7e,0x11,0xec,0x1c,0x96,0x6f,0x51,0x43, - 0xbc,0x63,0xef,0x35,0xb0,0x54,0x98,0x7d,0x20,0xa2,0xcd,0x6e,0xd6,0x0a,0xb1,0xdb,0x98,0x96,0xad,0x79, - 0xcf,0x5c,0xc4,0x17,0x31,0x5e,0x12,0x96,0x7b,0x17,0x19,0xb6,0xdc,0xed,0xad,0x0e,0x9d,0x9c,0x4d,0x55, - 0xb6,0x92,0x1c,0xca,0x8d,0xd1,0x31,0x01,0xcd,0x4c,0xd7,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0xb5,0x8d,0x96, - 0x0b,0x9d,0x1f,0x8a,0x3b,0xfb,0xa1,0x89,0x54,0xd1,0x73,0xfe,0x73,0x34,0xa3,0xba,0x41,0xe9,0x14,0x71, - 0x41,0x3b,0x5a,0xa1,0xb3,0x10,0x57,0xbd,0x10,0xb3,0x60,0x4b,0x0c,0xa8,0x48,0xb6,0x22,0x42,0x23,0x50, - 0x87,0x1f,0x07,0x24,0xe1,0x75,0x7f,0x3a,0x32,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f,0x84,0x8d, - 0x33,0x6b,0x9c,0x74,0xe1,0xae,0x48,0x26,0xec,0xdd,0xec,0xbd,0x5f,0x89,0x21,0x2a,0x20,0xd9,0x4d,0xeb, - 0xc9,0xa7,0x92,0x16,0x02,0x84,0x74,0xda,0x27,0xfe,0x8f,0x5d,0x8b,0x86,0x9d,0x2c,0xc1,0x61,0x83,0xa3, - 0xdc,0x54,0x79,0xd3,0x9c,0x2f,0x90,0x35,0x36,0x22,0x03,0x7f,0x04,0x15,0x22,0xe3,0x9f,0xce,0x89,0xb7, - 0x67,0xd7,0x4c,0xde,0x03,0xd7,0xc2,0xcc,0xd1,0xcb,0x35,0x8a,0x24,0xb4,0x1e,0x21,0x49,0xde,0x5a,0xee, - 0xc0,0x3c,0xb0,0x10,0x79,0x9c,0x43,0x2f,0x4e,0xa3,0x86,0x31,0xf8,0x0f,0x0d,0x1f,0x07,0x31,0x24,0x09, - 0x05,0xa2,0x90,0xcd,0xaa,0x05,0x12,0x1a,0x88,0x20,0xdc,0x0b,0x18,0xf0,0xd4,0xd4,0xc1,0x19,0xfc,0x84, - 0xd4,0x75,0x01,0x8c,0x92,0x43,0xe2,0x0e,0x26,0x5a,0x38,0xda,0x0a,0x02,0x8c,0x18,0x41,0x29,0xb8,0x70, - 0x55,0x32,0x03,0x7f,0x68,0xce,0x6f,0x22,0x9c,0x8a,0xa3,0xce,0xd9,0x8a,0xaf,0x58,0xf4,0xe5,0x28,0xc6, - 0xa9,0x50,0xfb,0x0d,0x71,0xf9,0x3e,0x28,0x98,0xb7,0xe6,0xea,0xd2,0x80,0x7c,0xfc,0x34,0x6c,0xe1,0xf3, - 0xb1,0xd6,0x9a,0x7b,0xd8,0x4f,0x03,0x23,0x82,0x7d,0x07,0x18,0xb5,0x0c,0x22,0x9d,0xa3,0xba,0xb7,0xc4, - 0x75,0x32,0x79,0x4c,0x7f,0xd2,0xa7,0xf8,0x13,0x5f,0xb5,0xb1,0x7c,0x92,0x75,0xa0,0x6b,0x24,0xf5,0xbe, - 0x67,0x18,0x7f,0x51,0x02,0xee,0xbd,0x1e,0xd5,0xc2,0xfe,0x3b,0xb8,0x83,0x8b,0x78,0x95,0x35,0xab,0xb0, - 0x87,0x91,0xef,0x8e,0x8f,0xa3,0xdd,0x56,0x6d,0x1f,0x24,0x9d,0xf3,0xe7,0xd2,0x91,0x0a,0xa6,0x7b,0x57, - 0xad,0x31,0xa2,0x21,0x5e,0x15,0x9f,0xe8,0xdd,0xb8,0x9c,0x44,0xc7,0xf0,0x92,0x8e,0x22,0x09,0x40,0x14, - 0x4c,0xc9,0x55,0x1b,0x88,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe7,0x2f,0x99,0xa0,0xe3,0x50,0xb4,0x06, - 0x9d,0x7a,0x47,0x02,0x4e,0xbe,0xd7,0x1a,0x75,0xea,0x2e,0x1a,0xae,0x9d,0x78,0xef,0x9e,0x6d,0x2d,0x30, - 0x39,0x73,0x1d,0xf0,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xad,0x90,0xfa,0x96,0x86,0x92,0x05,0x7b,0xf1, - 0x53,0xc0,0xa6,0x40,0x11,0xaf,0x13,0x4f,0xd7,0x57,0xf2,0x67,0xc2,0x08,0x08,0x4f,0x49,0x1a,0xf0,0x5f, - 0xb5,0x48,0xd0,0x02,0x5d,0x1f,0xa1,0x4e,0x48,0x20,0xc7,0xac,0xdb,0x2b,0x26,0x87,0x47,0x56,0x4b,0x5d, - 0x18,0x7f,0xf2,0x4d,0x30,0x7a,0xda,0x8a,0x5f,0xd9,0x71,0x95,0x5d,0xc2,0xc8,0xec,0xb8,0xe4,0x90,0xeb, - 0xc7,0x90,0x8f,0xd1,0xcf,0x3c,0xbb,0xe0,0xd4,0x36,0x5b,0xf0,0xef,0x6f,0xd9,0x35,0x7e,0x8a,0xec,0x18, - 0x3f,0x8b,0xec,0x84,0x53,0x4f,0xb3,0x33,0xfe,0xfd,0x94,0x5d,0xf3,0xef,0x49,0x76,0xcc,0xbf,0x17,0xd9, - 0x27,0xfc,0xd0,0x78,0x11,0x71,0xe3,0x78,0x95,0x55,0x9c,0x7c,0x96,0x7d,0x0a,0x7a,0xf0,0x58,0x26,0x2d, - 0x14,0x13,0x12,0x83,0x6c,0xc0,0x4c,0x1c,0x32,0xd8,0x53,0xc9,0x44,0x4a,0x15,0x0d,0xaf,0x96,0x17,0x67, - 0x11,0x56,0x9b,0x4c,0x3e,0xa9,0x33,0x13,0x93,0x74,0x6e,0xa2,0xc4,0x34,0x99,0x6c,0xc3,0x8b,0xd2,0x06, - 0xfc,0xc4,0x49,0xc4,0x46,0x6c,0x44,0xf1,0xe4,0xe6,0x9d,0xb6,0xbe,0x64,0x33,0x1e,0x1f,0x20,0x8e,0xeb, - 0x96,0x2d,0x11,0xd6,0x5d,0xd3,0x50,0x43,0x14,0x15,0xe2,0x4a,0x97,0x0b,0x0d,0x88,0xb8,0x2b,0xf0,0xa9, - 0xdb,0x9e,0x8e,0xa7,0xd6,0xb9,0xd0,0xee,0x9c,0x2c,0x57,0xc1,0x79,0x91,0xf9,0x26,0xe3,0x44,0x6d,0x9c, - 0x49,0xb0,0x0c,0xf7,0x6f,0x18,0x02,0xa2,0x52,0x1c,0x37,0x62,0x5f,0x37,0x31,0x54,0xe7,0x46,0x38,0x14, - 0x2b,0x2d,0x79,0xdb,0x22,0x7a,0xbf,0x41,0xbc,0x2b,0x77,0x5e,0x56,0x6c,0xfa,0xe4,0x4d,0xf6,0x7c,0x8d, - 0x2a,0x90,0x88,0x64,0x34,0xa6,0x6a,0x9d,0xde,0xdd,0x86,0xa5,0xeb,0xba,0x8d,0x04,0xb4,0xcc,0x87,0xf6, - 0x0e,0xab,0x65,0xd6,0xb5,0x8a,0xe5,0x72,0x60,0x7d,0x86,0xf9,0x35,0x04,0x8f,0x68,0x57,0xda,0xd8,0x5a, - 0xd5,0xad,0xa8,0x8f,0x0e,0xf5,0x1c,0xc3,0xd1,0x90,0x15,0x51,0xe6,0xdc,0xcf,0x56,0x56,0x3a,0x47,0xe5, - 0x87,0xac,0x3c,0xcc,0x84,0xcc,0x99,0x81,0x87,0xdc,0xac,0x98,0xe1,0xc3,0x39,0xc1,0x8d,0x53,0x5e,0xc6, - 0x41,0x9c,0xac,0x5a,0x9c,0x9a,0x71,0x4e,0x51,0x69,0xd6,0xd7,0xb0,0xf8,0xd1,0x3c,0xc3,0x43,0xd7,0xcb, - 0xd8,0x7c,0x9a,0x91,0xce,0xd9,0xb8,0xb5,0xb3,0xa0,0x8c,0x4d,0x1a,0x9b,0x3a,0x11,0xa7,0x88,0x90,0x8d, - 0xa9,0xd5,0xbc,0xf5,0xea,0x0d,0x52,0x59,0x58,0x26,0x12,0x3f,0x5e,0x9b,0x26,0xb1,0x9a,0x0b,0x9f,0x94, - 0x89,0x20,0x9d,0xf0,0xcd,0x2a,0x84,0x5e,0x3b,0xf9,0x2d,0x91,0x56,0xda,0x93,0x56,0xed,0x23,0x3d,0x6e, - 0x21,0x7a,0x00,0xe6,0xbe,0x47,0x85,0xa6,0xfa,0x07,0x3e,0x9a,0xe2,0x64,0xad,0xe6,0xd9,0x49,0x47,0x29, - 0xe3,0xfb,0x9f,0x41,0xbc,0x5a,0x11,0xb0,0xdf,0xde,0xae,0x62,0x76,0xd9,0xe9,0x15,0xed,0x4e,0x12,0x53, - 0x65,0x12,0x84,0x0c,0xfd,0x8a,0x39,0x76,0xca,0x32,0xab,0xe3,0xb9,0x3a,0xf5,0xae,0x13,0x31,0x17,0x1c, - 0x58,0xb7,0x25,0x7b,0x4b,0x4e,0xda,0x70,0x4e,0x77,0x76,0x24,0x95,0xab,0x48,0x75,0xbc,0xf4,0x52,0xd0, - 0x64,0x30,0x9a,0x73,0x50,0x80,0x3f,0x44,0x10,0xb0,0x5e,0x12,0xd7,0xa5,0x50,0x97,0x5d,0xeb,0x70,0x14, - 0x34,0x66,0x93,0x01,0xbb,0x00,0x2e,0xe6,0x97,0xaf,0xbb,0x7a,0x5c,0xd4,0xbc,0x63,0x9a,0x00,0x58,0xb0, - 0xef,0x9b,0xe7,0xd7,0x13,0x57,0x90,0xa6,0x22,0x25,0x9e,0xf4,0xa3,0x04,0x4e,0x0b,0x35,0x72,0xbd,0x81, - 0xb6,0x01,0xf0,0xc5,0xe1,0xe7,0x32,0x93,0xca,0xd4,0x7c,0x7b,0xfb,0x70,0x7f,0xdf,0x74,0xcc,0x44,0x63, - 0x83,0xe3,0xfb,0x9f,0x69,0x41,0xae,0xa0,0xe0,0xaa,0xec,0x97,0x09,0x30,0xd9,0xf6,0x81,0x72,0xed,0x4d, - 0x3a,0x23,0x4c,0xfd,0xf7,0x6b,0x0f,0x7b,0x56,0xbb,0xb0,0xa6,0x99,0x5c,0xd1,0xd6,0xf1,0x22,0xe8,0x3e, - 0xda,0x08,0x4c,0x4b,0xeb,0xd8,0x63,0xa4,0x8e,0x24,0x32,0x83,0xa0,0x96,0x13,0x5e,0x6b,0xc2,0xfc,0x12, - 0x99,0x4f,0x2b,0xd3,0x18,0x02,0xe0,0x19,0xbc,0x9f,0x12,0xde,0xcf,0xcf,0x88,0x22,0x26,0x44,0x45,0x2d, - 0x5b,0xe4,0x31,0xae,0xb2,0x8a,0x29,0xf8,0x57,0xc0,0x20,0x34,0x2f,0xd5,0x68,0x41,0xa4,0xed,0x3c,0xb0, - 0xe0,0x0c,0x98,0x2c,0x04,0xa6,0x46,0x2e,0x28,0x44,0x7e,0xe0,0x33,0x86,0x48,0x4b,0xe6,0xbf,0x23,0x16, - 0x46,0xf7,0x0a,0x68,0xc8,0xc2,0xa8,0x44,0x51,0xc2,0x4d,0x78,0x1c,0x97,0x72,0x2c,0xb1,0x88,0x78,0x69, - 0x89,0xc5,0x84,0xb5,0x1d,0xe6,0x0b,0xae,0xcb,0x58,0x9a,0x94,0x23,0xe3,0x1c,0x28,0x44,0xe1,0x98,0xfa, - 0x47,0xc4,0x5f,0x32,0xc1,0xdf,0xec,0xd0,0x7e,0x01,0x6a,0xea,0x24,0x9f,0x7e,0x72,0x87,0x38,0x17,0x4a, - 0xb9,0x50,0xbf,0xcc,0x9a,0x56,0xd5,0x92,0xfd,0x95,0x10,0xce,0xa7,0x1e,0x07,0x74,0x22,0x70,0xb9,0x82, - 0xde,0xb6,0x8b,0xf0,0x6c,0xee,0xf0,0x09,0xcd,0x1a,0x1d,0x64,0x42,0xdc,0xc2,0x2b,0xdc,0x17,0xd3,0x31, - 0xcc,0x70,0x74,0xbc,0xf2,0xb4,0xd4,0x9c,0x09,0x5f,0x1b,0xdc,0x93,0xc8,0xff,0x79,0x32,0xfe,0x96,0x4e, - 0x83,0x95,0xa2,0x0d,0x05,0xf2,0xec,0xf6,0x16,0xaf,0x53,0x79,0x3d,0x70,0x74,0x6c,0xb3,0x5e,0x43,0x70, - 0x6e,0x70,0xa1,0xed,0x90,0xed,0x70,0x3e,0x1f,0x82,0x9e,0xae,0x26,0x11,0x47,0xba,0x19,0xb0,0xe9,0x73, - 0xde,0xed,0x69,0xd2,0x11,0x9a,0x4f,0x09,0xcf,0xad,0x8e,0xb2,0x37,0xf1,0x8a,0x3a,0xc3,0xa4,0x80,0xa1, - 0xe2,0x80,0xae,0x78,0xac,0x09,0x9c,0x52,0x62,0x98,0xb2,0xcb,0xab,0x42,0x0e,0xd7,0xe8,0x73,0xe4,0x95, - 0xa7,0x77,0x2e,0xec,0x2b,0x8e,0x2c,0x9a,0x72,0x36,0x41,0x21,0x54,0x98,0x8f,0x84,0xf0,0x0d,0x0c,0x0e, - 0xe6,0x74,0x76,0xaa,0xc0,0xa9,0x69,0x43,0xe7,0x77,0x1a,0x9e,0xb8,0xea,0x34,0xb0,0xb0,0xcf,0xe1,0xc8, - 0xc9,0xaa,0x8c,0x98,0x4a,0x61,0x13,0x10,0xd4,0xc8,0x03,0xc3,0x17,0x67,0x66,0x52,0x86,0x76,0xed,0x29, - 0x6c,0x61,0x4e,0x65,0x13,0x48,0x27,0x97,0x20,0xa4,0x58,0x6a,0x8d,0x5f,0x7a,0x11,0x8f,0x87,0xb7,0xa5, - 0x0a,0xa7,0x3d,0x47,0x80,0x23,0xda,0x78,0x06,0x04,0x66,0x54,0x8e,0x79,0xd3,0x0a,0xf3,0x3a,0x63,0x52, - 0x81,0x1b,0x9a,0x25,0xeb,0xed,0x8e,0x34,0xd0,0x6a,0x29,0x5b,0xa7,0xa0,0xec,0x19,0x28,0xbc,0xab,0x43, - 0xb1,0xa9,0x21,0x6b,0xdf,0xd5,0x22,0xf1,0x94,0xaf,0xa0,0x19,0x28,0xb2,0xe7,0x70,0x7e,0x1a,0xbb,0x94, - 0xac,0x9e,0x84,0x68,0x63,0x53,0x1a,0xe7,0x60,0xa1,0x75,0x8f,0xf0,0xac,0x35,0x8f,0x04,0x5c,0x05,0xd1, - 0x27,0x84,0x16,0x18,0xca,0xd0,0xec,0x79,0x00,0xf7,0x12,0x3f,0x75,0xea,0x54,0x25,0xe2,0x7e,0x11,0x5d, - 0xac,0xf4,0x9e,0x3b,0x15,0xf6,0x88,0xd2,0x07,0x95,0xb0,0x1b,0x9f,0x4f,0x22,0x7a,0x39,0x67,0x7e,0xa3, - 0x52,0x83,0x6e,0x1f,0xb9,0xba,0x79,0x4a,0x68,0x8b,0x90,0x91,0xb3,0x7a,0x4a,0x4f,0x95,0xa3,0x3e,0xd3, - 0x25,0x23,0xa9,0xa9,0xc7,0x5a,0xc4,0xc7,0xcf,0xe1,0xf3,0xea,0x2d,0xad,0x41,0xa2,0x1b,0xec,0x45,0x24, - 0x94,0x55,0x5e,0x76,0x79,0x98,0x9c,0x8d,0xe0,0x72,0x98,0x35,0xc4,0xd3,0x0c,0x70,0x9f,0x13,0xc1,0x2f, - 0x7d,0x48,0x68,0x45,0x57,0x92,0xf1,0xac,0x0e,0xe4,0xcf,0x45,0x87,0xa0,0x42,0x14,0x64,0x10,0x1c,0xb9, - 0xb5,0x7e,0x70,0xda,0x37,0xa0,0xe2,0x4e,0x81,0x82,0xf5,0xed,0x88,0x72,0x06,0xbe,0x8d,0xb8,0xd9,0xb0, - 0x64,0xb7,0x5f,0xcd,0xf0,0xb1,0x8b,0x8b,0x03,0x00,0xb9,0x39,0x24,0x1f,0x04,0x1b,0x21,0x21,0x4b,0x28, - 0x5d,0x04,0x65,0xa9,0x5c,0x2f,0xe0,0xfc,0xa7,0x70,0x67,0x14,0x1d,0x99,0xcf,0xea,0x09,0x51,0x36,0xf1, - 0x2a,0x6b,0x92,0xc9,0xe1,0x27,0x1a,0xd9,0x51,0xcf,0xca,0x76,0xe5,0xe3,0x59,0x11,0xf9,0xe0,0x23,0xd0, - 0x60,0xfa,0x80,0x6c,0x10,0x89,0x46,0xc4,0x4e,0xb0,0x85,0xae,0x42,0x5b,0xe8,0x96,0xe6,0xa8,0x3a,0x6c, - 0x8e,0x92,0x21,0x0f,0x58,0x22,0x6b,0x88,0x2a,0x3c,0x3d,0x24,0x0a,0xca,0x45,0x13,0x39,0xea,0x99,0xe5, - 0x4f,0x93,0x89,0x75,0xf2,0xfa,0x66,0x9f,0x46,0xf8,0x73,0x4c,0x35,0x16,0xf1,0x54,0xc1,0xee,0x84,0x3d, - 0xf2,0x89,0x4f,0x24,0x02,0x8d,0x46,0x46,0x33,0xf3,0x73,0xcc,0x51,0x32,0x4e,0x81,0x7e,0x3e,0xc5,0x73, - 0xd6,0xad,0xed,0x4e,0x29,0x4f,0x34,0xd9,0xb8,0xf9,0xca,0xdc,0x0a,0x40,0x7b,0x3f,0x50,0x08,0x9e,0xd2, - 0x9a,0x25,0x29,0x8c,0x1e,0x27,0xa8,0x62,0xd2,0xab,0x00,0x91,0xac,0xc4,0x9c,0x41,0xbe,0x8a,0x3f,0x01, - 0xe7,0xa5,0x3f,0xd3,0x5f,0x69,0xb3,0xff,0x81,0x34,0x97,0x12,0xc2,0xad,0x9c,0x98,0x8c,0xd7,0x7a,0x0a, - 0x65,0x24,0x13,0x1b,0x53,0xb0,0xa9,0xb2,0xfe,0x0c,0x4a,0xcc,0xb5,0x12,0xf7,0x7d,0x01,0x50,0x8e,0x76, - 0x73,0x19,0x18,0xfd,0x3d,0x8e,0x6c,0x67,0xd1,0xa8,0xc7,0x6d,0x6b,0x5a,0x17,0x23,0xfa,0x49,0xb1,0x8c, - 0x2f,0x6b,0xb6,0xd9,0xf8,0x93,0x6a,0x95,0x4d,0xa6,0x9d,0x10,0x85,0x03,0x51,0xc9,0x0a,0x43,0x37,0xe1, - 0x50,0x34,0x93,0x75,0x78,0xa4,0xda,0xc0,0x5e,0x1d,0xe6,0x21,0xbc,0xed,0x19,0x16,0xc6,0x43,0x76,0xa1, - 0xe6,0x1c,0x59,0x8e,0x4f,0xb3,0x62,0x74,0xef,0xa2,0xa4,0xe3,0x14,0x01,0xb0,0xe4,0x69,0x54,0x36,0x2c, - 0x1c,0x3a,0x23,0x12,0x2a,0x3f,0x43,0x8c,0xd8,0x66,0x89,0xe0,0x0a,0x84,0x65,0xe6,0x10,0x95,0x15,0xcd, - 0x7b,0xdd,0xe8,0x9a,0x48,0x20,0xca,0xa6,0xd4,0x89,0xc1,0x21,0x94,0xc5,0xbe,0xc1,0xef,0xe6,0x79,0x8b, - 0x60,0x19,0xe6,0x63,0x7c,0x87,0x4d,0xd8,0xc5,0x1a,0x05,0x13,0xaf,0xd9,0x8b,0xb8,0x08,0x44,0x76,0x0e, - 0x01,0x35,0x11,0x68,0xcd,0x09,0xf1,0x44,0x4b,0xfa,0xb6,0xc0,0x21,0x93,0xa4,0xa6,0x99,0x6a,0xb0,0x36, - 0xd1,0x5e,0xce,0x33,0xfa,0xa4,0x92,0x4f,0x02,0xf9,0x28,0xc1,0x43,0x7c,0x1a,0xf8,0xaf,0xd4,0x71,0xe1, - 0x58,0x9c,0x02,0x0e,0x63,0x15,0xb1,0x4d,0x55,0xad,0x8b,0xb3,0xf2,0xad,0x75,0x93,0xa6,0x89,0x21,0xc8, - 0x60,0x2c,0x60,0x11,0x1d,0x8b,0x32,0x89,0xd9,0x75,0x8c,0x77,0x60,0xa2,0xcd,0x71,0xae,0x7c,0x8e,0xdb, - 0x72,0x8f,0xa6,0xbc,0xed,0x0c,0x1b,0xe7,0x0b,0xd0,0x16,0x24,0xca,0x67,0x65,0xa0,0x8f,0xd8,0xb2,0xd5, - 0x88,0x0d,0x18,0x4a,0x41,0x71,0xb4,0xfb,0xb9,0x87,0xeb,0xb5,0x10,0xe7,0x73,0x1a,0x3e,0xec,0xa1,0x02, - 0x94,0x16,0x38,0x6d,0x84,0x81,0xec,0x9c,0xec,0x80,0xb5,0xb5,0xcd,0x6a,0xa9,0x6b,0x7b,0xf6,0xa0,0x9c, - 0x49,0x61,0xe2,0x83,0x2d,0x52,0xf9,0xdd,0x1a,0x50,0xdc,0x74,0xdf,0x33,0xeb,0x77,0xd2,0x37,0xc2,0x46, - 0x84,0x37,0x4f,0x82,0xe0,0x34,0x13,0x0e,0xd4,0x7a,0xc4,0x81,0x68,0x6c,0x74,0x3e,0xd7,0x36,0xc5,0x1d, - 0x8d,0x95,0x55,0xe2,0x57,0x47,0xdb,0x62,0x22,0x09,0x63,0x0e,0xf6,0xbd,0x44,0x80,0x1a,0x0d,0x19,0xf7, - 0x80,0x91,0xee,0x86,0x3c,0xcb,0x10,0xaf,0x84,0xe8,0xca,0xac,0x2f,0x44,0x9d,0x94,0x29,0xab,0xdc,0x37, - 0xcc,0xe3,0xc4,0x37,0xc1,0xf5,0x45,0x34,0x2a,0x6d,0xa8,0x51,0x89,0xb5,0x97,0xec,0x82,0xe0,0xfc,0x26, - 0xdb,0xa7,0x35,0xe9,0xa6,0x3d,0xda,0xc7,0x02,0x99,0x40,0x5f,0x48,0xf0,0xfe,0x72,0x7e,0x0f,0x96,0x56, - 0x62,0xaf,0x30,0xc6,0xc0,0x99,0x7f,0xcd,0x5e,0xf3,0xf0,0x3a,0xee,0x4f,0x1a,0x9d,0x5c,0x71,0xb0,0x80, - 0xd9,0x33,0x68,0xa3,0xbb,0x65,0x8c,0x35,0x16,0x47,0xb2,0xf1,0x9b,0xe5,0x50,0xe2,0xb6,0x1d,0x65,0x08, - 0xb1,0xb2,0x69,0x51,0xf0,0x6b,0xeb,0x42,0x9c,0x1c,0x23,0x5e,0x40,0xc7,0xf6,0xf2,0x79,0xc7,0x3e,0x82, - 0x5d,0x14,0x71,0x9a,0xf7,0xc8,0x05,0xf6,0xce,0x0c,0xbe,0x7a,0xd7,0x76,0x28,0x93,0xfe,0xea,0x4c,0x42, - 0xd7,0xf9,0x6f,0xf6,0x0e,0xd2,0x4d,0x5d,0xcd,0x24,0x74,0xfa,0xef,0x95,0x86,0xaa,0x4e,0x6d,0xc7,0x2e, - 0x8e,0x82,0x04,0x12,0x3b,0x02,0xc6,0xb7,0x71,0x14,0x4a,0x89,0x80,0xcd,0x6e,0xab,0xda,0xa0,0xbb,0x40, - 0xac,0xf8,0xb2,0x67,0x22,0xc0,0x6a,0x52,0x86,0x53,0x28,0x60,0x18,0x3c,0x8f,0x19,0xd7,0xf5,0xe1,0xd2, - 0x06,0xea,0x85,0xd9,0x3b,0x5b,0x3a,0x1a,0xbe,0xe0,0x39,0x24,0x65,0x1b,0xf6,0x46,0xe3,0x06,0x02,0x64, - 0x26,0x01,0x9e,0x81,0x16,0xab,0x98,0xc1,0x0b,0x49,0x9b,0x67,0x1b,0xba,0x06,0xb6,0xc4,0xdf,0x2e,0xd8, - 0x63,0x8b,0x51,0x0c,0x1c,0xd6,0xf0,0x8b,0x5b,0x42,0x5c,0x0b,0x2f,0x0d,0x99,0x3c,0xba,0x37,0xa3,0x21, - 0xd6,0x15,0x5c,0xb6,0x5a,0xa7,0xf7,0x9f,0xf3,0x9d,0x97,0x81,0x17,0x40,0x1b,0x7a,0x76,0xdf,0x88,0x90, - 0xf9,0x29,0xf4,0x04,0xe9,0x1b,0xde,0xf3,0x3e,0x41,0x95,0xe1,0x1b,0x1d,0xc0,0x5c,0x0a,0xa6,0x65,0xfc, - 0x44,0x04,0x87,0x79,0x42,0x70,0x64,0xfc,0x1e,0xa5,0xe6,0x21,0x34,0xeb,0xef,0x2e,0x7f,0x3b,0xd1,0x93, - 0x76,0x37,0xda,0x8a,0x76,0x75,0xda,0xa6,0x1c,0x9d,0x3f,0x30,0x22,0x0f,0x01,0x6c,0x03,0x50,0x86,0x0e, - 0x47,0x9a,0x2c,0x84,0x0e,0xa4,0xdd,0x09,0x3d,0x95,0xdb,0x9d,0x8f,0x2a,0xde,0xa1,0x44,0xe8,0x66,0xa8, - 0x13,0x1b,0x0f,0xa4,0x17,0x5f,0xec,0x06,0x01,0x01,0xfe,0xef,0x66,0xd4,0x8b,0x44,0xd1,0x6f,0x19,0xec, - 0x4a,0x56,0xd2,0xf4,0x5b,0x13,0x74,0x19,0x45,0xe3,0x8e,0x78,0xae,0x35,0x31,0x01,0x62,0x6d,0x42,0xef, - 0xa2,0x3a,0x1d,0x56,0xc7,0x1b,0x78,0x10,0xa0,0xbb,0xa6,0xee,0xe1,0xb0,0x73,0x6e,0x3d,0x6a,0x2e,0xce, - 0xa2,0x34,0x5a,0xe4,0xed,0x39,0x1b,0x1a,0x4d,0xe4,0x71,0x43,0x5b,0xf4,0xa4,0xb5,0xd1,0x7d,0x36,0x35, - 0x9c,0xb6,0x46,0x17,0x75,0xef,0xb7,0x95,0xae,0xaf,0x3f,0x68,0xe8,0xa1,0x2b,0xb9,0x87,0xe6,0xae,0x58, - 0x9a,0xb3,0xe2,0x22,0x1a,0x52,0xa5,0xfc,0xd4,0xdb,0x2b,0x6c,0x73,0x59,0xeb,0xd3,0x9e,0x8f,0x90,0xf5, - 0xbc,0x2e,0x42,0x37,0x6e,0x0b,0xa6,0xc0,0x10,0x70,0xd0,0xae,0x60,0x39,0x4f,0xdf,0x36,0xe3,0xbe,0x5a, - 0xa5,0x62,0x6b,0xa8,0x39,0xff,0xe2,0xf0,0xc7,0x2f,0x0e,0x59,0x1c,0xb0,0x78,0x34,0x84,0x7c,0xea,0xdb, - 0x7f,0x59,0xbe,0xa8,0xea,0xc1,0x5a,0xf0,0xd7,0xa1,0x8c,0x82,0xf0,0xf1,0xce,0x0e,0x27,0x31,0x46,0xb6, - 0x75,0x13,0x7c,0xc8,0x43,0x11,0x00,0xee,0x0f,0x22,0xc4,0xf6,0x31,0xb6,0x40,0xe3,0xe1,0xa8,0xa7,0x5f, - 0x16,0x32,0xc9,0x7e,0x34,0x47,0x7f,0xe8,0x1f,0xce,0x3a,0x3f,0x6f,0x3c,0xa6,0x8d,0x71,0x2a,0x47,0x62, - 0x21,0x8a,0x80,0x9f,0xfb,0xf2,0x15,0x2c,0xa1,0xc8,0x48,0xf8,0xa4,0x05,0x0a,0xed,0x04,0x8b,0xa8,0xe1, - 0x8d,0x18,0xd7,0x66,0xce,0x45,0x18,0x9a,0x79,0x86,0xbc,0x66,0x5d,0x1d,0xcd,0xa9,0x66,0xbf,0xb2,0xcf, - 0x94,0x71,0xa2,0x44,0x58,0xd7,0xdd,0xde,0xae,0x0a,0x76,0x68,0xa4,0x1f,0xe2,0x06,0x79,0xc0,0xa0,0x2b, - 0x30,0x9a,0xc7,0x90,0x2a,0xbd,0x43,0xa8,0xac,0xf3,0x6a,0x4e,0x9c,0x3a,0xd7,0xd0,0x91,0x3d,0x61,0x9c, - 0x61,0x02,0x28,0xe3,0x6e,0x8a,0x91,0xc9,0x85,0xf6,0xfb,0xad,0x08,0x28,0x9c,0x76,0x59,0x9c,0xe4,0xb0, - 0xb1,0x0a,0x22,0x21,0x8a,0x47,0x59,0x3d,0xde,0xdd,0x2d,0x68,0xeb,0xc2,0x82,0xb1,0x38,0x32,0x84,0x76, - 0x9c,0xe3,0xb0,0xf7,0x9e,0x96,0x81,0xe7,0xc9,0x77,0x06,0x26,0x4d,0x8c,0xbc,0xc0,0xe1,0xeb,0xf6,0x56, - 0xf7,0x93,0xba,0xf3,0x6e,0x21,0x59,0xb8,0xe1,0x0c,0x2b,0xb7,0x84,0xd7,0x9e,0x96,0x87,0x26,0xfb,0xbd, - 0xdd,0xac,0xd5,0x47,0x16,0x00,0x07,0x46,0x25,0x36,0x1a,0x51,0xda,0x97,0x58,0x11,0xd9,0x41,0xa4,0xb0, - 0x61,0xb2,0x4a,0x91,0xb0,0xd4,0x59,0x23,0xdc,0xfc,0x14,0x3f,0xf5,0x84,0x66,0x8d,0xa6,0xf8,0x47,0x08, - 0xbe,0x32,0xeb,0x88,0xfb,0x1b,0x18,0x5d,0xa3,0x03,0x8d,0x14,0xee,0x3c,0x50,0x05,0x8c,0x26,0x70,0x12, - 0xd0,0x8f,0xdf,0x57,0x22,0x8b,0x9e,0xed,0xec,0xcc,0x2d,0x50,0x13,0xef,0x22,0x5f,0xc3,0x67,0x6d,0xe8, - 0xdb,0xa2,0x24,0x9a,0x9c,0xbf,0x59,0xb9,0x6f,0xb0,0x85,0x57,0x9d,0xa8,0x36,0xa7,0x43,0xb2,0x71,0x31, - 0xce,0x5b,0x85,0x26,0x79,0xd4,0xd6,0x0a,0xe3,0x88,0x6c,0xb5,0xd2,0xe4,0x7a,0x5c,0x4d,0xfe,0x0e,0x7f, - 0x29,0x49,0x8e,0x20,0x83,0x3e,0x8d,0xd9,0x29,0x60,0xee,0x22,0x7f,0x70,0x01,0xc4,0x11,0x34,0xe1,0x03, - 0xef,0x6c,0x71,0xde,0x6b,0x71,0xce,0x2d,0xf6,0x27,0xc1,0xb4,0xcc,0x6c,0xb8,0x9b,0xef,0x26,0x99,0xb2, - 0xd7,0x19,0x7d,0xc5,0xd3,0x1e,0xad,0x4a,0x99,0x98,0x96,0xfe,0x41,0x10,0xdb,0x35,0xd8,0xfd,0xbd,0x83, - 0xe3,0x86,0xa2,0xee,0xf4,0xcc,0x71,0xcd,0xf6,0x1c,0x8b,0xd9,0xc7,0x86,0xca,0x34,0x2e,0xd8,0x14,0x37, - 0x19,0x99,0xb8,0xe0,0xac,0x13,0x2f,0xfc,0x5b,0x76,0x51,0x24,0xaa,0x3c,0x24,0x78,0x27,0x18,0x1c,0xd5, - 0xf9,0xe5,0x1b,0x26,0xa3,0x2a,0x26,0xa7,0x76,0xa3,0x51,0xb4,0x1b,0xda,0x83,0x54,0x61,0x35,0x90,0x15, - 0x48,0xd8,0xd5,0x51,0x94,0x24,0xb4,0x3f,0x64,0x99,0x89,0x53,0xd2,0x01,0xa7,0xe4,0x01,0x93,0x0e,0x4a, - 0xae,0x35,0x31,0x71,0xeb,0x37,0x4d,0x60,0x7f,0x6b,0x37,0xa5,0xcf,0xad,0x80,0x0e,0xff,0x18,0xbb,0xc9, - 0x8a,0x0d,0x23,0xab,0xb8,0x94,0x50,0x1b,0xa6,0xbc,0x31,0x8e,0xac,0x61,0x1c,0x59,0xcb,0x85,0x09,0x7c, - 0x0c,0xf8,0x1e,0xf0,0x35,0x28,0x32,0x2e,0x50,0x00,0xde,0x78,0x32,0x70,0x85,0x68,0xe3,0x80,0x02,0xda, - 0x34,0xdc,0xe6,0xd9,0x8f,0x35,0x63,0x2d,0x71,0x9d,0xea,0x12,0xa1,0x45,0x79,0xae,0xeb,0x82,0xe3,0x6d, - 0xd3,0x0c,0xb5,0xb1,0x20,0x43,0x87,0x04,0x5b,0xeb,0x29,0x20,0x09,0x86,0x39,0x60,0x3e,0x89,0x1a,0xc3, - 0x68,0xa6,0x59,0xf8,0x09,0x0b,0xc7,0x57,0x59,0xdd,0x4b,0x62,0x7e,0xcc,0x88,0x86,0x10,0x0e,0xa1,0x53, - 0x20,0x63,0x2d,0xf4,0xca,0xb8,0x4b,0x30,0xb5,0xb8,0x4a,0xf2,0x6c,0x05,0x0a,0x7f,0x2a,0xcc,0x4c,0x4e, - 0xa0,0x0f,0x49,0x29,0xf8,0xb6,0x71,0xfc,0xa6,0xbc,0xbd,0x7d,0x0f,0x83,0x8e,0x95,0x6c,0x7e,0x88,0x2b, - 0xe4,0xc9,0x14,0xb3,0x02,0x76,0x93,0x1f,0x54,0x3c,0x4d,0xb0,0xfb,0x2a,0xb6,0xc5,0xd7,0x40,0xe2,0x13, - 0x04,0xb7,0x43,0x60,0x5a,0x17,0x71,0xfc,0xcd,0x87,0xb8,0x2d,0x54,0x89,0xcc,0x24,0xfd,0x27,0x7d,0x97, - 0x20,0xd0,0x66,0xaf,0x10,0x32,0x83,0x55,0xf8,0x7b,0x68,0x20,0xf0,0x8f,0x9a,0x9d,0xee,0x0a,0x0e,0x90, - 0xbd,0xf1,0xa1,0x86,0xa8,0x24,0x8b,0x88,0xd2,0xae,0x2e,0x4f,0x69,0x7f,0x34,0xb4,0x57,0x74,0x19,0x49, - 0xd8,0xb1,0xe8,0xf9,0xeb,0x27,0xcf,0x9f,0x19,0x5b,0x69,0xe1,0xf1,0x27,0x51,0x5b,0xd3,0x58,0x52,0x28, - 0xf9,0x3b,0x81,0xd1,0xd9,0xeb,0xcd,0xd9,0x43,0xfd,0xb3,0x36,0x21,0x04,0xba,0x45,0xb8,0x17,0x44,0x35, - 0x9e,0xe6,0x54,0x0e,0xf5,0x96,0x13,0xf3,0x9c,0x4a,0xbd,0xbe,0x06,0x5d,0x7c,0xa6,0xdb,0x6e,0x52,0x34, - 0xee,0xef,0xe8,0xb4,0x22,0x59,0xda,0x99,0x2f,0x50,0x55,0x5c,0x49,0x32,0x34,0x76,0xb1,0x9f,0xa1,0x22, - 0x6f,0xe0,0xdf,0xf6,0x1a,0x5e,0x13,0x1f,0x9f,0xff,0xfc,0xf1,0xf1,0xfb,0xe7,0x8f,0x3b,0xa3,0xa6,0xf4, - 0xa5,0x3f,0x4b,0xcd,0xec,0x70,0x4c,0xcd,0x42,0x2f,0xcf,0x2d,0xe9,0x14,0xda,0x02,0x6a,0x22,0xbe,0xab, - 0xe5,0x4b,0x22,0x22,0x66,0x05,0xe1,0x1e,0x58,0xd6,0xe4,0x67,0xb9,0x20,0x47,0x65,0xbb,0xd2,0xbb,0xe3, - 0x45,0x28,0x08,0x58,0x8a,0x8c,0xdb,0x81,0x2b,0x60,0x5c,0xb6,0xb2,0x0d,0x67,0xdb,0xfb,0xeb,0x81,0x65, - 0x08,0x20,0xe1,0xdb,0xde,0x7e,0xb4,0xa4,0x1b,0x07,0xdf,0xc9,0xcd,0x5e,0x91,0x4d,0x89,0x6b,0x2b,0x43, - 0x86,0x01,0xbb,0xad,0x32,0xbc,0x02,0xcb,0x2d,0x20,0x97,0x05,0x73,0xd4,0x2f,0x94,0x9b,0x42,0x89,0xd3, - 0xad,0x0c,0xd2,0xfa,0xf6,0x4e,0x34,0xf8,0x51,0x14,0x30,0x5d,0x8a,0x07,0xb8,0xa0,0x64,0x0c,0x8c,0x3b, - 0xc4,0x1e,0x09,0x17,0xc7,0x97,0x5c,0xce,0xd8,0x1b,0x97,0xc0,0xf6,0x45,0x6b,0x08,0x32,0x86,0x3d,0xb6, - 0xa4,0x17,0xa2,0xc9,0x99,0xd1,0x73,0xb0,0x8c,0xb0,0x7c,0xa9,0x0c,0x39,0xe7,0x55,0x72,0x59,0x87,0x51, - 0xe2,0x59,0x11,0xbe,0x48,0xf3,0x66,0x83,0x94,0x70,0xf2,0x06,0xc2,0xa6,0xd7,0xac,0x3f,0x22,0xe2,0x7f, - 0x6c,0xb0,0x0e,0x5b,0x26,0x43,0x18,0x74,0xcc,0x71,0x63,0x0b,0x8c,0x99,0x2b,0xd1,0x44,0x16,0xb3,0x84, - 0x32,0x6e,0xb2,0x37,0x40,0x01,0xaf,0x5b,0x96,0x20,0x2a,0xb8,0x66,0x15,0x30,0xc0,0xd4,0x17,0x5c,0x70, - 0xe0,0x0e,0x02,0xb1,0xfa,0x52,0x0d,0x4e,0x7d,0x5f,0x30,0x6b,0xc2,0x65,0xfd,0xb9,0xdd,0x70,0x92,0x8b, - 0xd9,0x2e,0x2b,0x70,0xd8,0x68,0x8d,0x59,0xf8,0x39,0xe1,0x76,0xb9,0xe4,0x81,0xda,0x3f,0xcf,0x8a,0xdd, - 0x83,0x75,0x40,0x36,0x31,0xea,0xdc,0x3e,0x10,0x55,0xe8,0x0a,0x7f,0xe6,0x6c,0x21,0x4e,0x2c,0xd9,0x92, - 0xfe,0xcf,0xe8,0xbf,0x75,0xc8,0x1c,0x10,0xa2,0x60,0x73,0xb1,0x49,0x6e,0x1b,0xc6,0xc5,0xa2,0x13,0xb1, - 0x49,0xbe,0xf8,0x5a,0x6c,0xbb,0xbf,0x7e,0x48,0x43,0x16,0xf9,0xe8,0xf6,0x81,0xdf,0x93,0xd3,0xe4,0x8b, - 0x2f,0x7b,0x05,0xa6,0x9d,0x02,0xab,0xe4,0xeb,0xbf,0xf6,0x0a,0xac,0x3a,0x05,0xe6,0xc9,0x97,0xff,0xdd, - 0x2b,0x30,0xef,0x14,0x38,0x78,0xf8,0x25,0x38,0xc6,0xdb,0x5b,0x7a,0xe0,0xcd,0x1c,0x76,0x71,0xf7,0x20, - 0x19,0xce,0xd8,0x43,0xc6,0xe9,0xed,0xed,0x92,0xf8,0xab,0xe4,0xa6,0xb9,0x2c,0x8c,0xc7,0xc0,0x34,0xa7, - 0x5a,0xbf,0xf8,0x32,0x85,0xe1,0x81,0x18,0xcd,0x8e,0x25,0xe9,0xeb,0xb4,0xe9,0x25,0x7d,0xfd,0xd7,0x74, - 0xd5,0x4b,0xfa,0x72,0x3f,0x9d,0xed,0xee,0x76,0x52,0x0e,0xd2,0xd9,0xde,0x5e,0xe7,0xb3,0x83,0x74,0xd9, - 0x2d,0xf3,0xf5,0x17,0xe9,0xb2,0x5b,0xe6,0xe0,0xe1,0x17,0xe9,0x69,0xb7,0xd0,0xc1,0xc3,0xaf,0xd2,0xd3, - 0xbd,0x3d,0x50,0x66,0x32,0x21,0x7e,0xcf,0x5d,0x64,0x34,0x1c,0xb5,0x30,0x2c,0xd7,0xf8,0x82,0xc3,0x4b, - 0x8a,0xf3,0x4b,0xbc,0x30,0xe3,0xa6,0x31,0x5f,0x40,0xac,0xb2,0xb7,0x97,0x8c,0x17,0x3b,0x3b,0xc7,0x26, - 0x86,0xef,0x22,0x61,0x0d,0x01,0x0c,0xfd,0x45,0xe0,0xea,0xec,0x47,0xaa,0x49,0xcc,0x50,0xc4,0x2c,0xbb, - 0xbd,0x34,0xda,0x83,0x58,0xaa,0x45,0xc5,0x12,0x94,0x1f,0x2c,0x98,0xc2,0x4d,0xfe,0x1c,0x5c,0x0e,0x2e, - 0x01,0xf1,0xf0,0x95,0x87,0xf0,0x55,0x65,0x03,0xf4,0x7e,0xe6,0x25,0x77,0x51,0x1c,0x89,0x80,0xf3,0x91, - 0xbd,0x97,0xe4,0xfe,0x31,0xa5,0xde,0x27,0xe2,0xe4,0x7e,0x94,0xc4,0xf7,0x39,0x0a,0x7d,0x34,0xee,0x66, - 0xb9,0xbe,0x94,0x89,0x2f,0xa5,0x22,0x97,0x51,0x12,0x6c,0xac,0x21,0x5b,0x0e,0x25,0x7e,0x55,0xe0,0x78, - 0xc7,0x9b,0xaf,0xeb,0xe4,0x1c,0x1d,0xfe,0xb8,0x42,0x84,0x35,0x36,0x89,0xaa,0x8f,0x38,0x30,0x70,0x40, - 0x95,0xfe,0xb3,0x2f,0x46,0x69,0x47,0x8b,0x7c,0xd9,0x35,0x3d,0xf1,0x61,0x80,0xd6,0x9b,0xd6,0xe5,0x41, - 0x81,0x75,0x92,0x1e,0x06,0xd6,0x44,0xff,0x70,0x67,0x7d,0xdc,0x3a,0xed,0xbc,0x0d,0x10,0xe2,0xb1,0xc1, - 0x0d,0xdf,0xe1,0xa1,0x95,0x89,0x35,0xc7,0x37,0xb0,0xf1,0xd5,0xa5,0x59,0xe8,0x4b,0xc4,0x11,0xf6,0x6d, - 0x65,0x7d,0x0b,0xd0,0x7f,0xb7,0x32,0xad,0xbd,0x95,0x20,0xd7,0xf0,0x3a,0x5f,0x4a,0x1c,0x22,0xf3,0x8e, - 0xa3,0xed,0x8e,0x0a,0x03,0x0f,0x3c,0xed,0x69,0x5a,0x68,0x42,0x81,0xdf,0x59,0xaf,0x6d,0x3d,0x54,0x7d, - 0x9c,0xa1,0xda,0xb9,0xc5,0xea,0x2c,0xda,0x86,0xcb,0x0e,0x21,0x7b,0x98,0x54,0x86,0x45,0xd8,0x81,0x96, - 0xf2,0xff,0x9f,0xc9,0x37,0xfe,0xb3,0x61,0x11,0xeb,0x52,0x4b,0xa5,0x76,0xb8,0x14,0xe1,0x64,0xf8,0x86, - 0xcb,0xb1,0x0f,0xc3,0x92,0xe2,0xec,0xbc,0x9d,0xc4,0x94,0x6f,0x88,0xe4,0x85,0x2e,0x57,0x91,0x72,0x15, - 0x70,0x7e,0x92,0xd6,0xa3,0x45,0x31,0x9b,0xcd,0x25,0x04,0x4d,0xb4,0xa8,0x56,0x8d,0x5e,0x2d,0x23,0x6b, - 0xf0,0x3b,0xae,0x8d,0x9a,0x7a,0xe2,0x5b,0x96,0x04,0xb6,0x5f,0x97,0x47,0x26,0x01,0x64,0x11,0xc2,0x04, - 0x56,0x8b,0xa7,0x28,0xa6,0x7d,0x01,0xed,0xb2,0x8c,0xe5,0x9e,0x0d,0x2c,0xb8,0x1e,0xe3,0xa2,0xd6,0x0b, - 0xc8,0xce,0x9a,0x80,0x73,0x31,0xd7,0xba,0x4f,0x33,0x5c,0xca,0x33,0xde,0xd0,0xfd,0x15,0x93,0xa9,0xbb, - 0x59,0xbc,0x71,0x6e,0x7a,0x8d,0x5c,0xe4,0x93,0x4d,0x29,0xff,0xb0,0x51,0xd3,0xa3,0xf4,0x70,0xaa,0x9a, - 0xa3,0xb4,0x19,0x04,0x81,0xda,0x81,0x80,0x50,0x48,0x05,0xdf,0xe0,0xc0,0xde,0x54,0xb7,0xb7,0xf2,0x72, - 0xb1,0xc7,0xb1,0x59,0x90,0xc4,0x3b,0x99,0x63,0xf0,0xda,0x30,0x9a,0x38,0xe8,0x44,0x85,0x21,0x5e,0x30, - 0x96,0x90,0x29,0xb4,0x8b,0xc3,0x26,0x1f,0x14,0xf6,0x83,0x5e,0xa8,0xdb,0x22,0x3c,0x35,0x8b,0x6e,0x6f, - 0xfc,0xd7,0x2c,0x99,0x09,0x40,0x34,0x8c,0x84,0x13,0xc0,0xaa,0xb1,0xda,0x2f,0xfa,0x56,0xfb,0xd0,0x2d, - 0xc1,0x29,0x82,0xaf,0x54,0x41,0xa0,0xd0,0x9b,0xc2,0xc6,0xce,0xaa,0x10,0x3b,0x4b,0x5c,0x2c,0x2c,0xbb, - 0xe6,0xfc,0x18,0x3b,0x4d,0x86,0x56,0xfc,0x55,0x6f,0xd6,0xc4,0x4a,0xbf,0xc8,0xa2,0x7b,0xf7,0x2e,0x08, - 0x99,0x31,0x02,0x05,0xe1,0x90,0x45,0xb1,0x11,0x17,0x52,0xc6,0x16,0xb5,0xbc,0x75,0x5f,0x46,0x7e,0x7f, - 0x82,0x14,0x8b,0x68,0xf1,0x9c,0x40,0x56,0x3a,0x12,0x67,0x07,0xf9,0xf4,0x98,0xf8,0xce,0xdd,0x02,0xe8, - 0xd1,0xf0,0x93,0x59,0x0e,0xea,0xb1,0x40,0xc0,0x7a,0x36,0xba,0xb1,0xe0,0x43,0x38,0x16,0xbc,0x5e,0x42, - 0xdc,0xf9,0xd5,0x12,0xd7,0x0d,0x52,0x17,0xd3,0xfb,0x06,0xc7,0xde,0x57,0xd6,0x34,0xc7,0x87,0x36,0xd9, - 0x8a,0xd1,0xe0,0xd6,0x4d,0xb4,0x5b,0xed,0x46,0xeb,0x28,0x58,0x80,0x5c,0x87,0x68,0x3c,0x44,0x6e,0x34, - 0x85,0x3f,0xd5,0x3e,0x80,0x61,0x70,0x99,0xd5,0x61,0x94,0x3c,0xda,0x87,0xd4,0x11,0xb7,0x73,0xbd,0xb4, - 0xa9,0x47,0x94,0xfa,0x53,0xed,0xa2,0xf4,0xc6,0xdf,0xf1,0xc7,0x61,0x09,0xf0,0xd4,0xdf,0xec,0x1d,0x4c, - 0x6e,0xa8,0xd7,0xa9,0x3f,0x7f,0xbe,0x23,0x8a,0x8d,0x58,0x71,0x1e,0x80,0x4d,0xfd,0xae,0x26,0x8c,0x8f, - 0xc1,0xac,0x53,0x29,0xcd,0x25,0x38,0x4e,0x13,0x13,0x3e,0x3f,0x80,0x64,0xa5,0x16,0x7e,0xaf,0xb3,0xdf, - 0x20,0x22,0xd8,0x66,0x67,0xbb,0x64,0xa5,0xe3,0x1f,0xeb,0x0c,0xe1,0x87,0x93,0xc9,0x1c,0xcf,0x49,0xfa, - 0x35,0x58,0xda,0x1f,0xeb,0x50,0x4c,0x65,0xe5,0xcf,0xe2,0x21,0x49,0x55,0x7c,0x57,0xdb,0x0a,0x38,0xb0, - 0x2c,0xdf,0xc3,0xb5,0x82,0xdf,0x77,0xc2,0x41,0x0d,0x1d,0xf9,0xc2,0x75,0x41,0x00,0xb9,0xbb,0xab,0xbe, - 0xfe,0xc2,0x3c,0xef,0xed,0xb1,0xa9,0x1d,0xcd,0xe1,0x6f,0x5c,0x93,0x80,0xd6,0x1a,0x8d,0xdb,0x98,0xe7, - 0xdd,0xf1,0xfe,0x6e,0xc6,0x6b,0x53,0x7e,0xa7,0xb1,0xaa,0xdf,0x6a,0xa8,0x1b,0xbd,0x26,0xd9,0xb8,0x77, - 0xb2,0x6f,0xc4,0xc4,0xdc,0x68,0x93,0x46,0xf7,0x88,0x2e,0x8d,0x71,0x87,0x22,0xd5,0x68,0xee,0xec,0x42, - 0x01,0x79,0x64,0x88,0x08,0x9c,0x50,0xb5,0xb7,0x1f,0xfe,0xa1,0x0e,0x09,0xaa,0xdd,0xdd,0xef,0x42,0xd3, - 0xf7,0x69,0x50,0xf0,0xbb,0xfa,0x9b,0xec,0xa7,0x00,0xee,0x57,0x61,0xd4,0x70,0x26,0x0f,0xdb,0xdb,0x5b, - 0xa6,0x23,0x03,0x21,0x36,0x4f,0x52,0xe8,0x6c,0x28,0xb3,0xc9,0x0e,0xb4,0xbc,0x16,0xf0,0xcb,0x18,0x27, - 0xe3,0xc0,0x31,0x4f,0x87,0x52,0x11,0x8d,0x48,0x15,0x3a,0x19,0x1d,0xe3,0xba,0xc8,0x8f,0x79,0x03,0xc3, - 0x9e,0xca,0xbf,0x85,0x52,0xb3,0x73,0xef,0xe1,0x99,0x55,0x77,0xc4,0x93,0x30,0xbd,0x3d,0x67,0xbf,0x4a, - 0x3a,0x9b,0xf9,0x2e,0xc6,0xee,0x8d,0x2f,0x7e,0x23,0x7f,0x5f,0xf7,0xc3,0xd1,0x6e,0x15,0xb1,0xbf,0x1e, - 0x70,0xb8,0x89,0x9d,0x9d,0x25,0x6f,0x4c,0xf1,0x61,0x5b,0x23,0x84,0x31,0xe2,0x12,0xa8,0xef,0xeb,0x4d, - 0x1e,0x11,0xad,0xfd,0x58,0x4e,0x6e,0xcc,0x39,0x08,0x4b,0x1d,0x39,0xcb,0x10,0x56,0xce,0xe0,0xfb,0x80, - 0x92,0x59,0x6a,0xaf,0xb3,0x8a,0xe9,0x54,0xfd,0xbe,0x4e,0x06,0x39,0x53,0x44,0xb4,0x0a,0xe6,0xab,0xeb, - 0x0c,0x30,0xd3,0xb1,0x8d,0x4a,0xb5,0xed,0x04,0x36,0x15,0xd8,0xfc,0x6d,0x27,0xae,0xc1,0x2d,0x00,0x8e, - 0x07,0x35,0x29,0x8c,0xd4,0xaa,0xac,0x0c,0xdf,0xc7,0xdf,0xd7,0x86,0x49,0xed,0x21,0x07,0xea,0xe8,0xe1, - 0x09,0xf4,0x40,0x06,0x77,0xbc,0x29,0x27,0x91,0xb9,0xfe,0x3a,0xb5,0xd6,0x89,0x1c,0x24,0xda,0xfb,0x02, - 0xf0,0x07,0x1c,0xee,0x99,0xfd,0xcc,0xfd,0xd5,0xe3,0x94,0xbc,0x46,0x7d,0x97,0x85,0xc4,0x40,0x18,0x49, - 0x45,0x9d,0x4f,0x2f,0xf1,0xa9,0xc9,0xe8,0x7d,0x8e,0xcf,0xd6,0xe0,0x71,0xbe,0x67,0x15,0xfd,0xa9,0x56, - 0x4b,0xad,0x6a,0x2f,0x33,0xfe,0xde,0x85,0x04,0x08,0x1c,0x0e,0x87,0xe6,0xc8,0x3a,0xdc,0x74,0x66,0xca, - 0x25,0x86,0x22,0x76,0x99,0x92,0x26,0xeb,0x7d,0xd8,0x95,0x6e,0x85,0xa9,0x77,0x09,0xb8,0x9c,0x8f,0x4f, - 0x47,0xc6,0x55,0x88,0x9c,0x15,0xa2,0xa8,0xc2,0x44,0xac,0x2b,0x8e,0xb2,0x28,0x0a,0x72,0x57,0xe6,0x96, - 0x41,0x94,0x50,0x7c,0x57,0xb4,0xbd,0xbb,0xd9,0xb8,0x27,0x15,0x25,0x01,0xca,0x77,0x1f,0x5f,0xbf,0xe2, - 0x04,0x2e,0x5d,0x0f,0x87,0xc0,0x0d,0x4c,0xa0,0x2a,0x2a,0xdb,0xa0,0x4d,0x4c,0x5e,0x51,0xae,0xf4,0x18, - 0x38,0x2f,0x97,0xa2,0x6f,0xe0,0xa4,0xe5,0x44,0xcd,0xb9,0x01,0xcc,0xa7,0xc8,0x8a,0xc3,0x22,0x30,0x3f, - 0xe2,0x6b,0x8d,0x45,0xca,0x26,0xcd,0xe7,0xa3,0x63,0x7e,0xcd,0x2a,0x63,0xc5,0xd8,0x42,0xb8,0x16,0x45, - 0x36,0xe2,0x7d,0x95,0x8c,0x97,0xd9,0x5c,0x6d,0xc7,0xa7,0x59,0x9e,0x88,0xb4,0xa1,0xa1,0x74,0x58,0x67, - 0xbf,0x7d,0xf7,0xf1,0xe5,0xdb,0x37,0xa8,0xe7,0xd4,0x8a,0x7f,0x88,0x21,0x1c,0x60,0x43,0x08,0x37,0xb0, - 0x83,0xb9,0xbf,0x18,0x4b,0x1c,0xa5,0x8d,0x1e,0x8e,0xaf,0x39,0x70,0x71,0x86,0x82,0xe3,0xbf,0x75,0x62, - 0x42,0xbd,0x8e,0x4f,0xd5,0x32,0xe9,0x54,0x1f,0x28,0xe2,0x44,0x95,0x20,0x2a,0xec,0xd7,0x96,0x6c,0x13, - 0xf3,0xb5,0x22,0x31,0x26,0x2d,0xf3,0xfc,0xf7,0x6b,0x1f,0xcc,0x5b,0xac,0x5c,0xf8,0x94,0xb7,0x04,0xd1, - 0x54,0x5c,0xd5,0xa6,0x26,0xe8,0x5b,0xc1,0x54,0x81,0xb7,0xbd,0x17,0x1a,0x81,0x3d,0x8c,0xe5,0xd1,0x76, - 0x14,0x24,0x63,0x29,0xfd,0x63,0x90,0x90,0xde,0x64,0x73,0x63,0x7f,0xc3,0x20,0x52,0xc9,0x2d,0x80,0x54, - 0x26,0xf0,0xeb,0xd4,0xfe,0xcc,0x5b,0x68,0x56,0x49,0x5f,0xcf,0x7d,0xa4,0x61,0xab,0xa2,0xfe,0x80,0xd4, - 0xc9,0x45,0xdc,0x79,0xe7,0xd8,0x09,0x81,0x37,0xa3,0xfe,0x9c,0x42,0x79,0x71,0x87,0x76,0xf6,0x53,0xd1, - 0x8b,0x5d,0x72,0xa6,0xbb,0x32,0x30,0x16,0x18,0x55,0x3d,0xd9,0x57,0x11,0xf6,0x23,0x11,0x5d,0x58,0xe3, - 0x9e,0xab,0x8d,0xdc,0xca,0xe4,0x26,0x41,0xc4,0x1f,0xb3,0x4f,0x57,0x59,0xa7,0xb8,0x9a,0xc3,0x20,0xb5, - 0xaa,0x17,0x7c,0x9d,0xfc,0x8c,0xd3,0xa0,0x20,0x68,0xe4,0x81,0xf6,0xe1,0x69,0xb6,0xba,0xbd,0x9d,0xab, - 0x25,0xe6,0xcb,0x6c,0x54,0xa9,0x9c,0xb7,0xb2,0x49,0xe9,0xd5,0x90,0xc1,0x08,0xde,0xec,0x70,0xf1,0x9b, - 0x5a,0x26,0xe9,0x72,0x2c,0x86,0xad,0x5d,0x68,0x0d,0xb5,0xed,0x4c,0x47,0xb6,0xe3,0x01,0x01,0xdb,0xbf, - 0x25,0x78,0xbb,0x70,0x9a,0xd0,0x04,0xf6,0x2d,0xec,0x2c,0x26,0xc9,0x6d,0x3f,0xd9,0x3b,0x2e,0xc3,0xd2, - 0xb6,0x1a,0xd9,0xf8,0x6b,0x55,0xa7,0xb6,0xaa,0xff,0x99,0x57,0xe9,0xd7,0x52,0x07,0x87,0xc6,0x3c,0x25, - 0x24,0x35,0x83,0x4d,0xe3,0xce,0xce,0x07,0x58,0x22,0x36,0xca,0x62,0x29,0xce,0x9e,0x25,0x71,0x9e,0x71, - 0x3e,0x01,0xef,0x29,0xfd,0xba,0x62,0x26,0xd6,0x09,0x30,0x40,0x1e,0xb2,0x04,0xd7,0x3a,0xf4,0x4a,0xe3, - 0x48,0xa1,0x46,0x8e,0x21,0x11,0x38,0x58,0x18,0xc7,0x26,0x84,0x81,0xd0,0x61,0x2b,0x62,0xca,0x52,0x1b, - 0xbb,0x96,0x07,0xbf,0x34,0xbb,0x0f,0x12,0x77,0x89,0xd3,0x80,0x47,0x78,0x50,0x0f,0x07,0xd7,0x42,0x60, - 0xb1,0x74,0x33,0x31,0x0c,0xb2,0x0b,0x0d,0x4b,0xcc,0x4e,0xe4,0x1b,0xa2,0xc1,0xc4,0x58,0x5f,0x6e,0xe1, - 0xe6,0xc7,0xa0,0x53,0xac,0x91,0x89,0x58,0x49,0xde,0x0e,0xcb,0x14,0xe3,0x92,0xb8,0x2c,0x3b,0xc0,0x30, - 0xf6,0xfe,0xff,0xef,0xb3,0x20,0xc8,0x7c,0x73,0x22,0x5c,0xba,0x0a,0x53,0xe5,0x10,0x00,0x13,0xd0,0x17, - 0xe1,0xdb,0x29,0x91,0xa9,0xf3,0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0xb1,0xd3,0x16,0x4c,0x65,0x0d,0x5b, - 0xb0,0x31,0xbc,0xa3,0xdd,0x6d,0x53,0xb5,0xc2,0x70,0x01,0xe2,0x16,0x4d,0x42,0x29,0x31,0x38,0xc7,0x7c, - 0x8f,0xc6,0x5d,0xdd,0x0c,0xe6,0xfc,0x44,0x1b,0xd2,0xc6,0x58,0x80,0x6c,0xdc,0xda,0x62,0x91,0xa8,0xbb, - 0x0e,0x98,0x59,0x60,0x9a,0x16,0x48,0x8d,0x71,0x93,0xc5,0xaf,0x45,0xdc,0x1a,0xab,0xad,0xe8,0x22,0x42, - 0x00,0xcc,0x98,0x95,0xc5,0xda,0xa0,0xf0,0x01,0xdc,0xf8,0x2b,0xe3,0xc6,0x0d,0xf2,0xe4,0x92,0xfb,0xf2, - 0xbe,0x08,0x1d,0x68,0xde,0xa3,0x68,0x28,0x88,0xb9,0xd2,0x5d,0xeb,0x91,0x4d,0x99,0x37,0x4b,0x21,0x36, - 0x93,0x39,0x2e,0x50,0x19,0x58,0x7e,0x01,0x42,0xe1,0x40,0x02,0x79,0x02,0xad,0xb4,0xd9,0x83,0xa1,0x7f, - 0xa9,0x69,0x6a,0xa8,0xb6,0x9d,0x9d,0xf9,0x60,0x2b,0x08,0xc0,0x6d,0xe0,0x38,0x70,0x3a,0xed,0x71,0xd2, - 0x4f,0xa5,0x80,0xc2,0x31,0x60,0x4c,0x2e,0x6a,0xeb,0x10,0xc4,0x74,0x16,0xc4,0x66,0x1c,0xc5,0x9a,0xcf, - 0x05,0x27,0x55,0xb0,0xa1,0x57,0x9a,0x0c,0x86,0x17,0xef,0x8a,0xc9,0x8b,0x22,0x7d,0x5d,0x10,0xc6,0xef, - 0xf9,0xa0,0x0d,0x2b,0x76,0x1a,0x35,0x87,0xdd,0x3a,0xfb,0x9b,0x75,0x75,0x44,0x12,0x0e,0x43,0x78,0xbb, - 0xdd,0xdd,0xe9,0x37,0xd0,0x2c,0xc2,0xdd,0x6c,0x3c,0xec,0xd4,0x34,0x7d,0x64,0xf2,0x15,0xae,0x69,0x56, - 0x03,0x4a,0x22,0x34,0x15,0x38,0xbd,0x86,0x4b,0x46,0xd0,0x6e,0x6e,0xd5,0xa5,0x26,0x9f,0x9a,0x00,0x1e, - 0x7c,0x96,0x48,0xcc,0x89,0xfa,0xf0,0x59,0xb1,0x1b,0x3d,0x83,0xa3,0x55,0x74,0xe4,0x4c,0xf6,0x60,0x15, - 0x55,0xd9,0xbc,0x55,0x2d,0x57,0x5d,0x77,0xb3,0xf3,0xec,0xb1,0xe6,0x50,0xb2,0x50,0xc2,0x1e,0xbe,0xb9, - 0xa3,0x92,0xa9,0xcd,0x1b,0xae,0x64,0x85,0x4a,0x60,0xec,0x4a,0x73,0xb4,0x0f,0xf5,0x83,0xbf,0x0d,0x98, - 0x27,0x3c,0x67,0x13,0xf4,0x92,0x1e,0xa9,0x40,0x4e,0x05,0xac,0xad,0x3b,0x51,0x0c,0xb0,0xc0,0x2e,0x26, - 0x2b,0x53,0xe2,0x25,0x4a,0xac,0xa8,0xc4,0xd4,0x95,0x38,0xcd,0x28,0x3d,0x9e,0xfb,0xa8,0xed,0x39,0x68, - 0xdf,0x6f,0xf6,0xa9,0xd6,0xd5,0xe4,0x5d,0x91,0xbe,0x2c,0x98,0xdb,0x4f,0x26,0xa5,0x34,0x66,0xeb,0x4e, - 0x6d,0x15,0xe9,0xbe,0x32,0xc1,0x9b,0x95,0x81,0x96,0x74,0xae,0x1c,0xac,0xa4,0xa7,0xb8,0x92,0xf9,0xa3, - 0xbd,0x3a,0x30,0x95,0x5a,0x76,0x76,0x9e,0x18,0x59,0xba,0xcc,0x9e,0x8d,0x04,0x12,0x1d,0x85,0x68,0xe0, - 0xb1,0xf6,0x87,0xf4,0xd8,0x62,0xba,0x47,0x2e,0xde,0x62,0xd2,0x66,0x2e,0x04,0xb7,0xe7,0xd7,0xed,0x38, - 0x3a,0x97,0x8b,0x75,0x25,0xca,0xa1,0x77,0xf9,0x07,0x20,0xd4,0xdd,0x0f,0x5a,0x02,0x55,0xad,0xc3,0x9d, - 0xf6,0x21,0x24,0xb1,0x0e,0xf4,0x17,0x7f,0x31,0xd7,0xd5,0x7a,0x01,0xc2,0xde,0x41,0x58,0xfe,0x63,0x40, - 0x4b,0x81,0x84,0x22,0x7a,0x07,0x6e,0x5d,0xb8,0x27,0x28,0x27,0xe2,0xfc,0x84,0x9d,0x29,0xdc,0x9b,0xb9, - 0xb6,0x73,0x2e,0x91,0xf7,0x7c,0x7a,0x6c,0x65,0xa0,0xd9,0x89,0xb6,0xdc,0x90,0xdf,0xd0,0x89,0xf3,0xd5, - 0x62,0x9b,0x4b,0xfa,0x8c,0x20,0x5c,0xd7,0x5c,0xf9,0x01,0x47,0x15,0x03,0x41,0x82,0x1b,0xef,0x3c,0x6d, - 0x83,0x88,0x64,0x84,0x18,0x15,0xfc,0x67,0x79,0x63,0x13,0x90,0x8c,0xe4,0x33,0x56,0xe5,0x9d,0xda,0xd7, - 0x8f,0x95,0x24,0x2c,0x6d,0xc2,0x63,0xa6,0xd9,0x25,0x11,0x1e,0xc2,0x34,0xa5,0x3a,0x37,0x5f,0x9d,0xbb, - 0x77,0xfb,0xd9,0x85,0x4b,0x09,0xbf,0x5b,0x50,0xea,0x89,0x86,0x5d,0xf9,0x73,0x54,0xa9,0xce,0x6c,0xe5, - 0xea,0x1a,0xe5,0x71,0x0d,0xbc,0x64,0x1c,0xbb,0x5e,0xd9,0x89,0x51,0x97,0xee,0xdb,0xc7,0x5c,0xaf,0xba, - 0x72,0x4d,0xa8,0x7b,0xf6,0x6b,0x93,0xf5,0xc9,0xf7,0xcf,0x7d,0xff,0x94,0xd2,0x66,0x66,0x4f,0xa9,0xc7, - 0xd9,0x65,0xad,0x3e,0xd0,0x1f,0x63,0xe0,0x3f,0xfe,0x40,0x14,0x90,0x23,0xb9,0x1e,0x67,0xf1,0x87,0xcc, - 0xbe,0x26,0x96,0x63,0xe5,0x95,0xf8,0x98,0x6d,0x3f,0x0e,0x82,0x30,0x11,0x47,0xca,0xd6,0xff,0x55,0x05, - 0x3a,0x10,0xf1,0x85,0xb1,0x24,0x1f,0x6f,0x6f,0xaf,0x70,0x78,0xd2,0x1a,0x5c,0x09,0x08,0xbc,0xcd,0x3e, - 0xee,0xec,0xcc,0x26,0x33,0xda,0x0d,0xaf,0xf0,0x78,0x31,0xb9,0x48,0x97,0xea,0x57,0x3c,0x9e,0x4f,0xce, - 0x69,0x5f,0x3c,0xcf,0x3e,0x4e,0x2e,0x6f,0x6f,0x17,0xe9,0x42,0xbd,0x43,0xea,0x80,0xff,0xcc,0xd5,0xe4, - 0x2a,0x3d,0x53,0x2f,0xa9,0xe0,0xbd,0xdb,0xdb,0xeb,0xf4,0x5a,0x3d,0xa3,0xc7,0x4f,0xb7,0xb7,0xc7,0xe9, - 0xb1,0x7a,0x41,0x7c,0x4b,0x11,0x3f,0x4d,0x26,0x4f,0x65,0xda,0xd2,0xa7,0x89,0x7a,0x93,0xf1,0x41,0xd8, - 0xb0,0xc2,0x5e,0xbd,0xce,0x7e,0xd5,0xf1,0xbb,0x44,0xbd,0xcf,0x3c,0x9c,0x84,0x9e,0xba,0xc9,0xcd,0x1b, - 0x02,0xc9,0x7b,0x90,0xc4,0xfe,0x9a,0x28,0xfe,0x7d,0x45,0x47,0xe5,0x7b,0x0f,0x9a,0x93,0x98,0x4a,0x70, - 0xc6,0xdb,0x44,0x3d,0xdb,0xd9,0x79,0xc6,0x96,0x16,0x2f,0x77,0x76,0x5e,0xc2,0x9f,0x21,0xa8,0xd5,0x04, - 0x6e,0x37,0xf0,0xda,0x9c,0x57,0x34,0xb0,0xbf,0xd3,0x76,0xf0,0x26,0x52,0xbe,0x51,0x2b,0x34,0x92,0xb9, - 0x06,0x9f,0xaa,0x4c,0x68,0xe5,0x63,0x84,0x3d,0x62,0x56,0xd3,0x3f,0x1f,0xb2,0x60,0xed,0x68,0xcc,0x97, - 0x98,0x8a,0x61,0x62,0x29,0x86,0x89,0x1a,0x3b,0xcc,0xed,0x9b,0xfe,0x7b,0x9c,0xa8,0x77,0x3b,0x3b,0xef, - 0xa8,0xeb,0xef,0x61,0x36,0xf5,0x7c,0x67,0xe7,0x39,0xfa,0x8c,0x11,0x5f,0x99,0x01,0x5d,0xc9,0x88,0xd5, - 0xa5,0x0e,0xe7,0xe4,0x2a,0x9c,0x8f,0xb7,0x9d,0xe9,0xb8,0xbd,0x7d,0x4d,0xe7,0xf8,0x2b,0x1d,0xbf,0x48, - 0x26,0xc1,0x29,0xf4,0x5e,0xbd,0x48,0xd2,0x4f,0x28,0xbe,0xa2,0xc6,0x80,0x44,0x54,0x30,0x11,0x62,0x95, - 0x5b,0x87,0xfd,0xa1,0x6e,0x70,0x55,0xef,0xe3,0xae,0x07,0x98,0x41,0x20,0x5e,0xd8,0x4d,0xdd,0xf9,0x14, - 0x36,0x1f,0x77,0x26,0x38,0x26,0xce,0xd3,0x4f,0xa2,0x9b,0x31,0xe8,0xba,0x87,0xd2,0xc5,0x1f,0x55,0xa6, - 0x33,0x2b,0x13,0x75,0x4e,0x80,0x88,0x40,0xab,0x97,0x32,0x25,0x39,0x3c,0x2c,0xf8,0x77,0x36,0x30,0x25, - 0x39,0xf1,0x50,0x98,0x12,0x2e,0xd5,0xe9,0xd3,0x95,0x4c,0xc9,0xbd,0xce,0x94,0x7c,0x52,0xf7,0x78,0x4a, - 0x72,0x35,0x57,0x9f,0x64,0x4a,0x2e,0x40,0x99,0xe5,0xf4,0xa6,0x2e,0xf9,0xa3,0x4f,0xa0,0xb3,0x8d,0xa1, - 0xb9,0xc1,0x95,0x79,0x88,0xce,0x82,0xb7,0x2e,0xae,0xf4,0xe9,0x16,0x57,0x36,0x77,0xe3,0x4a,0x89,0x22, - 0x2b,0x77,0xd1,0x38,0xd4,0x68,0x19,0x28,0xd1,0xc6,0x6e,0x73,0xc3,0x16,0x49,0x5b,0x27,0x95,0x86,0x71, - 0xe6,0x3c,0x93,0x58,0x31,0x84,0x24,0x21,0x6f,0xc9,0x2d,0x56,0x5b,0xda,0x57,0x8b,0xfc,0x66,0x36,0x21, - 0xc4,0x7d,0xe7,0x94,0x28,0xf8,0xeb,0x15,0xb2,0x08,0x43,0x9a,0x42,0x84,0x15,0x1b,0xc1,0x5e,0x92,0x71, - 0xe6,0x6a,0x77,0xb8,0xeb,0x9a,0x92,0xd8,0xb3,0x5b,0x4a,0x1c,0xe3,0xd5,0xa2,0xb2,0x4b,0xd9,0xe6,0x2b, - 0xd9,0xe6,0x57,0xd8,0xe6,0x17,0xb4,0x3a,0x8c,0x10,0x88,0xe5,0x3d,0x96,0xba,0xd2,0xe3,0x84,0xb1,0xa2, - 0x1d,0x5a,0x77,0xeb,0x87,0x20,0x02,0x11,0xd2,0x00,0xc0,0xf0,0x1a,0x0c,0xa4,0x3b,0x18,0xe2,0x20,0x60, - 0x97,0x82,0x43,0x3c,0x80,0xcc,0x92,0x0e,0x84,0x4c,0xe2,0x4b,0xc6,0x21,0x0c,0x39,0x54,0xe7,0x19,0x1b, - 0x8a,0xc4,0xd8,0x10,0x8b,0x9d,0x9d,0x05,0xde,0x54,0xd0,0x49,0x83,0x49,0xae,0x27,0xd7,0xb4,0x5d,0xd3, - 0x2a,0x0e,0x09,0x82,0x57,0xc1,0x89,0xbc,0x19,0x9d,0x8a,0x66,0x43,0x2e,0x60,0x0c,0xb5,0xcb,0xbf,0x22, - 0x66,0x2d,0xb3,0x12,0x3e,0x00,0xb2,0x09,0xb1,0x0d,0x73,0x62,0x84,0x4a,0x0e,0x02,0x48,0x4d,0xa8,0xf8, - 0x46,0x20,0x9c,0xfa,0x70,0xff,0x28,0x45,0x18,0x1c,0x77,0xe5,0x1f,0x9c,0x61,0x0c,0xfd,0xf4,0x4d,0xa0, - 0xd1,0x7b,0x6e,0xe8,0x95,0x6d,0xa8,0xef,0x75,0x88,0x01,0x3e,0x32,0x3b,0xe7,0x1d,0x47,0x1c,0xe9,0xfd, - 0xd2,0x3e,0x29,0x6f,0x2a,0x37,0x4c,0xdf,0xba,0x92,0x6b,0xb5,0x1f,0x54,0xf5,0xb2,0x47,0xc5,0xeb,0x40, - 0x32,0xb6,0x58,0xcd,0xdb,0x62,0x39,0xd7,0x42,0xaf,0xdf,0xde,0xf6,0x47,0x16,0x44,0x4e,0x63,0x53,0x17, - 0x38,0x6f,0x39,0xc7,0x9b,0xbe,0xef,0x16,0xfc,0x40,0x7c,0x2e,0xae,0xe0,0x28,0x92,0x2a,0x3b,0x26,0xf6, - 0xef,0x05,0xac,0x80,0xc0,0xef,0x2a,0x5c,0xe5,0x34,0xe7,0x8b,0xd9,0x69,0x02,0x2a,0x06,0x1f,0x9b,0x90, - 0x05,0x01,0xc1,0xae,0x63,0xfe,0x24,0x88,0x20,0x0c,0xae,0x0b,0x74,0x95,0x29,0xcc,0x8a,0x2a,0x39,0xc7, - 0xfa,0xa9,0x19,0xdc,0xfa,0x0a,0xe6,0xa6,0xba,0xe9,0x7b,0x9d,0x1b,0x28,0x9f,0xe9,0xee,0x75,0x2d,0xfd, - 0x6b,0xf8,0x5c,0xd6,0xf6,0x75,0x2c,0x86,0xb5,0x81,0x1f,0x49,0x08,0x65,0x22,0x2a,0xe5,0x38,0x6f,0xb8, - 0xac,0x40,0xd4,0x7e,0x46,0xfc,0x18,0xb8,0x82,0x68,0x71,0x86,0x16,0x9e,0xc5,0xcb,0x4c,0x61,0x84,0xe6, - 0x7d,0x40,0xee,0x28,0xc4,0x83,0xdc,0xfc,0xf2,0x40,0xbd,0xd7,0x2e,0x43,0x19,0x41,0x7e,0x48,0x6f,0xbe, - 0xef,0x30,0x9d,0x7d,0x87,0x87,0x0b,0x76,0x77,0x80,0xd4,0x59,0xd4,0xe2,0x91,0xf0,0x99,0x45,0x2b,0x39, - 0x5a,0x11,0x26,0xe5,0xd8,0x49,0xa3,0x59,0xd1,0xb0,0x8d,0xb2,0x64,0x84,0xea,0x8b,0x27,0xc1,0x4c,0x6c, - 0xdf,0xe1,0xf0,0x20,0x92,0xaa,0xb6,0x8f,0x7c,0x27,0x6d,0xfa,0x84,0xfd,0x69,0xee,0x92,0x99,0x05,0xae, - 0x17,0x81,0x54,0x94,0xc9,0x80,0x0d,0xc3,0x58,0xbb,0x8a,0x38,0xe3,0x3b,0x26,0xb1,0xd6,0x6d,0x7d,0x42, - 0x75,0xfc,0x03,0xde,0x60,0xce,0x25,0x31,0x14,0x72,0xfe,0x10,0x34,0xc0,0x57,0x60,0xfa,0x68,0xa9,0xdd, - 0x40,0x4a,0xa5,0xbf,0xb2,0x22,0x41,0x10,0x25,0x36,0x6f,0x1e,0x9b,0xd8,0x4a,0x84,0xfe,0x18,0x15,0x5a, - 0x7e,0xb2,0xe7,0xcd,0x57,0xd0,0x17,0x97,0xb8,0x1c,0xe4,0x88,0xfd,0xf9,0x06,0x62,0xda,0xfe,0xe8,0x25, - 0x49,0x0f,0x7e,0x99,0xed,0x7d,0xd2,0x7a,0xb9,0x97,0xcf,0xe9,0xb0,0xb8,0x67,0x6e,0x1e,0x64,0xfa,0xc6, - 0x07,0xca,0x8e,0x23,0x5f,0x24,0x52,0x37,0xdc,0xb5,0x54,0x6f,0xcc,0x8e,0xef,0x73,0x08,0xc4,0xdf,0x19, - 0x60,0x63,0x92,0x88,0x95,0x03,0x27,0x7c,0x13,0xa6,0x7f,0x65,0x5b,0x4b,0x7e,0x37,0xa7,0xa9,0xcb,0x77, - 0xa7,0x6b,0x60,0x3a,0x6e,0xaa,0x13,0x71,0xab,0xbe,0x7c,0x57,0x21,0x2c,0x11,0x4a,0x13,0x70,0x3e,0x21, - 0xc2,0x98,0x43,0x83,0xcc,0x0b,0xfa,0xf4,0x3d,0xee,0x81,0x0f,0x63,0xd6,0x87,0xcb,0x2b,0x15,0x10,0x88, - 0x2b,0xe7,0x64,0x23,0xb5,0x99,0xab,0x2d,0x4e,0xdb,0xbd,0x92,0x7f,0xf8,0x0e,0xb5,0xb6,0x5a,0xd2,0x2b, - 0xfd,0x05,0x06,0xab,0x6f,0x6f,0x0b,0xd7,0x05,0x0c,0x61,0x66,0x35,0x90,0x95,0xe9,0x0a,0x0b,0x86,0xc7, - 0x95,0xbf,0xa8,0x9e,0x88,0xcc,0x9f,0xf4,0xc9,0xa7,0xa2,0x75,0xfc,0x67,0x16,0x71,0x26,0x02,0xea,0xc5, - 0xd1,0x6e,0xbd,0x1b,0x2d,0xaf,0x14,0xab,0xfa,0x97,0x57,0x49,0xa4,0xaa,0x00,0x80,0x2d,0x2f,0x9e,0x45, - 0xfb,0x4d,0xa8,0xa7,0xff,0xbe,0xb3,0xeb,0xf4,0xe4,0x55,0x95,0xbe,0xad,0xbc,0x04,0xdf,0x4a,0xc5,0xca, - 0x8e,0x96,0xce,0x64,0x7f,0xac,0x70,0xeb,0x6e,0x18,0x36,0xde,0x61,0x6f,0xa3,0xa0,0x66,0x46,0xfa,0x80, - 0x63,0x05,0xb4,0xca,0x19,0x57,0xa4,0x5a,0x59,0x73,0x88,0xce,0x5d,0xbe,0xfd,0x9b,0x5d,0x95,0x37,0x13, - 0x70,0xf7,0x83,0x98,0x78,0xcb,0xc6,0x35,0x12,0x8f,0x12,0x86,0xc4,0x3b,0x72,0xe9,0x44,0x09,0x64,0x87, - 0x41,0x55,0x0e,0xc3,0x0b,0x6c,0xbe,0xb5,0x07,0xdb,0xa6,0xea,0x9e,0xad,0x58,0x08,0x50,0xaf,0x21,0x67, - 0x64,0x4c,0xc6,0x61,0xce,0xe0,0x7b,0x10,0x58,0x3e,0xb5,0xe2,0x5a,0xb4,0x1d,0x1a,0x37,0x19,0x73,0x86, - 0xbb,0xaa,0xac,0xf5,0xa9,0xab,0x92,0x9e,0x39,0x72,0x9a,0xf5,0x87,0xea,0x48,0x8a,0x02,0x23,0xda,0x71, - 0x29,0xa1,0x3e,0xdd,0x55,0x33,0x25,0x64,0xae,0xde,0xdd,0x08,0x22,0x4a,0x13,0xc8,0xd3,0xc5,0x8a,0x06, - 0x15,0x8a,0xbe,0xf6,0x94,0xaa,0x11,0xc2,0x5d,0x38,0x3b,0x67,0x58,0x6b,0xd3,0x3b,0xf4,0x5d,0xa6,0x7b, - 0x98,0xcf,0x28,0x90,0x4a,0xeb,0x6e,0x74,0x6f,0xfe,0x0a,0x56,0x50,0x62,0xc8,0xc3,0x61,0x0f,0x22,0xbe, - 0x05,0x8f,0xaa,0xe1,0x90,0x5b,0x08,0xa4,0x6d,0x32,0x29,0x69,0xcf,0x94,0x20,0x2a,0xc3,0x7d,0x13,0x26, - 0xcb,0x41,0xe8,0xbf,0xb5,0xd1,0x8e,0x6b,0x57,0x14,0xf8,0xdd,0x95,0xfa,0x28,0xb2,0xb3,0xfb,0x51,0x74, - 0x9f,0x0d,0xc9,0xef,0xbb,0x80,0xa5,0xf7,0x69,0x91,0x37,0x7b,0x0a,0x44,0xee,0x6a,0xa7,0x17,0x5f,0xab, - 0xe2,0x0b,0x96,0xfb,0x13,0x24,0x23,0x8e,0xed,0x64,0x14,0x8d,0xed,0xa2,0x43,0x4e,0xd4,0x45,0x65,0xcc, - 0x8f,0xa4,0x48,0x39,0x2f,0x4a,0xbd,0xe7,0x5a,0x96,0xe2,0x92,0xfa,0xd1,0x24,0xb2,0x45,0x65,0xef,0xca, - 0x1b,0x82,0xe3,0x45,0x15,0x7a,0xc8,0xb4,0xd9,0x02,0x0e,0x6d,0x0c,0x90,0xd4,0xd3,0xf1,0x26,0x4c,0xaa, - 0xc0,0x7c,0x97,0x29,0x1a,0x07,0x73,0x5c,0xb1,0xa6,0x7d,0x52,0x3a,0x01,0xd8,0x58,0x3f,0x2a,0x6d,0xe4, - 0x81,0x3a,0x83,0xdf,0x92,0x96,0xcd,0xa2,0x2a,0x79,0x16,0x72,0xea,0x65,0x65,0xc4,0x55,0x46,0xea,0x7f, - 0x9e,0x37,0x4f,0x0a,0x46,0x7a,0x30,0x70,0x55,0x71,0x78,0xa7,0x92,0x83,0x63,0x73,0x3f,0xd0,0x13,0x89, - 0x72,0x13,0x86,0xbd,0xf7,0xf7,0x65,0xf4,0x55,0x02,0x1c,0x05,0xd2,0x4a,0x98,0x0e,0x12,0x5c,0xf7,0x0d, - 0xc3,0x09,0x5c,0xc9,0x95,0x98,0xcb,0x21,0x2c,0x8a,0x79,0x52,0x41,0xc3,0x43,0x0c,0xaa,0xef,0x5b,0x98, - 0xfd,0x9e,0xb3,0x69,0x18,0x3f,0x43,0xbf,0x2b,0x96,0xcc,0x12,0x95,0x14,0x07,0x86,0x18,0x1d,0xef,0x2b, - 0xa3,0x9c,0x6e,0x17,0xf3,0x48,0xe2,0x9f,0x5d,0x22,0x7e,0xa7,0x34,0x15,0x28,0xae,0x99,0x46,0x9f,0xd2, - 0xb4,0xcc,0x39,0x47,0x0a,0x81,0xde,0xbb,0x2e,0xa7,0x3b,0x3b,0x6c,0x87,0xe8,0xa3,0x5a,0x72,0xae,0xca, - 0xc1,0x10,0x47,0xf7,0xd8,0xf2,0x2e,0x62,0xfb,0x6e,0xe8,0xf2,0x3d,0x84,0xec,0xec,0x9c,0x54,0xee,0xc2, - 0x5b,0x8b,0xde,0x84,0xd9,0x22,0xa2,0x9b,0x4d,0x37,0x11,0x6b,0x2b,0x65,0x60,0xac,0xc3,0x80,0xb2,0xef, - 0x86,0x07,0xfc,0x4e,0x06,0x5c,0x9a,0xf2,0xb4,0xfc,0xdb,0xe1,0xe5,0x8c,0xab,0xac,0x33,0x7b,0x2f,0x65, - 0xf6,0xcc,0x1a,0xbd,0xe6,0xb0,0x0e,0xc4,0x50,0xad,0x0e,0x0f,0x8e,0xc6,0x73,0x33,0xd3,0x4e,0xce,0xe7, - 0xfc,0xba,0x76,0x0f,0x30,0x92,0x65,0x56,0x13,0xc3,0x57,0x10,0x7f,0x57,0x11,0x4f,0x37,0x87,0x8c,0x4b, - 0xc5,0xf1,0x69,0xd6,0x26,0x1d,0x1f,0x3d,0xc4,0xe9,0x71,0xaf,0x1b,0x26,0xa2,0x4b,0x65,0x3c,0xa2,0xd2, - 0x99,0xb1,0xed,0x3c,0x87,0x65,0x4b,0x7a,0xa1,0x9c,0x19,0x62,0xba,0x58,0x73,0x90,0x0d,0x6b,0x3b,0xc8, - 0x13,0x60,0xe6,0xa3,0x67,0xcc,0x57,0xf1,0xad,0x3b,0xe1,0xec,0x46,0x0b,0x08,0xb1,0xb1,0xaa,0xf5,0x67, - 0xa7,0x7a,0x67,0xc7,0xcc,0xb5,0xf5,0x32,0x31,0x6a,0x6b,0x35,0x53,0xe7,0x8a,0x3a,0xb3,0xee,0xf0,0x53, - 0x3f,0xfb,0xd3,0x9c,0x81,0x3a,0xb3,0x96,0x8a,0x04,0xc9,0x51,0x32,0x64,0xbe,0x66,0xed,0x92,0x65,0xa2, - 0x9f,0x99,0x90,0x4f,0x96,0x5f,0x61,0x25,0x2e,0x7d,0x9b,0x95,0x87,0x0f,0x8f,0x8c,0xfe,0xc8,0x52,0x5c, - 0xb4,0x14,0x26,0xc5,0xad,0xda,0x1b,0x0b,0xd4,0x85,0xa9,0xef,0x85,0x8f,0x00,0x5c,0x4d,0x10,0xc7,0x69, - 0x5e,0xe4,0x0d,0xe5,0xda,0x0f,0x5e,0xc8,0x07,0xf5,0xa8,0x20,0x9a,0x26,0x27,0xda,0xf1,0x20,0xab,0x7c, - 0xbd,0xaa,0xa2,0x56,0xd9,0x02,0xc3,0x66,0x3f,0xcc,0x2a,0xdf,0x11,0x04,0x5f,0xb1,0x35,0xaa,0x9a,0xaf, - 0xc5,0x2b,0x39,0x66,0x41,0xd7,0x91,0xe4,0x5f,0x4e,0x25,0x53,0x9c,0x3e,0xad,0x08,0x2b,0x30,0x5d,0xc6, - 0x3c,0x4a,0x98,0xc0,0xa1,0x57,0xbb,0x49,0x56,0xcf,0x13,0x58,0x43,0x87,0x42,0xe7,0xbf,0xeb,0xee,0xaa, - 0xf1,0xb9,0x69,0xa3,0xdb,0xb7,0x56,0x58,0x19,0xd8,0x3b,0xf7,0x99,0xc1,0x49,0x64,0xa3,0x3d,0xa5,0x37, - 0x51,0x1a,0x55,0xf8,0xf1,0x81,0x1f,0xcc,0x5d,0x7b,0xbb,0x19,0x0c,0xfe,0x8a,0xdd,0xfb,0x51,0x7a,0x7f, - 0xb7,0x45,0xbc,0x20,0x76,0x2b,0x87,0xdd,0xb7,0xbf,0x4f,0x3a,0x10,0x79,0xb3,0xe1,0xa2,0x37,0x8b,0x2e, - 0x1d,0x55,0xeb,0xee,0x27,0x75,0x92,0x4c,0xe2,0x5b,0xd7,0xd1,0x66,0xe0,0x6a,0x77,0xd1,0x59,0x74,0x08, - 0xd3,0xf2,0xae,0x70,0xde,0xeb,0x44,0xcd,0x75,0x24,0xd6,0x13,0x50,0x41,0x33,0x79,0x14,0x99,0x93,0xef, - 0xef,0x95,0x25,0x9a,0xc5,0x71,0x8c,0x68,0x9f,0xef,0x7b,0x49,0x0c,0xa0,0xde,0xa8,0xd7,0x5a,0x39,0x44, - 0x44,0xe8,0xe1,0x4f,0x6e,0x7d,0x57,0x59,0x84,0xc4,0x61,0x29,0x83,0xc2,0xf4,0xed,0xbf,0x38,0x44,0x50, - 0xb5,0x9b,0xf1,0x83,0xfa,0xb6,0x62,0xad,0x79,0x6e,0x8d,0x7d,0x7d,0xa0,0x6c,0x7d,0x95,0x4b,0xb4,0x94, - 0xc6,0x06,0x02,0x0f,0x6a,0x1a,0x53,0x05,0x3f,0x57,0xf1,0x61,0x34,0x6d,0xeb,0x39,0x0d,0x82,0xad,0x86, - 0xe9,0x37,0x9f,0xe3,0xef,0x42,0xb7,0x79,0x74,0x74,0xb7,0x4d,0xfb,0xf6,0x94,0x49,0xc6,0x3b,0x4c,0xe2, - 0x0d,0x7a,0x1d,0x45,0x30,0xd3,0xff,0x9e,0x88,0x30,0x37,0x59,0xb7,0xb7,0xe0,0x15,0xc5,0x1c,0xc5,0x75, - 0xd8,0xba,0x18,0x3b,0xcb,0xa1,0xb8,0xd8,0x25,0x2c,0x0f,0x2b,0x8f,0xfb,0x27,0xab,0xb6,0xad,0xca,0xfb, - 0x98,0x06,0xa9,0x14,0x61,0x05,0x76,0x73,0x6e,0x98,0x18,0x2a,0x53,0x2d,0xa5,0xd1,0x22,0x38,0xd5,0x1f, - 0x1d,0xf0,0x63,0x6c,0x47,0xa9,0xa9,0x0a,0xe2,0x6e,0xc6,0xa6,0x92,0x1b,0x50,0xd7,0x71,0x39,0x31,0x6b, - 0xb2,0x1b,0xd9,0x8c,0x28,0xad,0x27,0x6c,0x3e,0x6b,0x33,0x12,0x9f,0x63,0x17,0x90,0x21,0xcd,0xb6,0x75, - 0x7b,0x5b,0xdb,0x5a,0xd2,0xa1,0x66,0x5c,0x45,0x21,0x74,0xea,0xe0,0x3c,0xe6,0xb0,0x3c,0x2f,0xf9,0xd6, - 0x9a,0x83,0xfd,0x24,0x8c,0xc9,0x6f,0xa7,0xd1,0x84,0xbf,0x26,0xc2,0x91,0xaa,0x33,0x70,0xf6,0x6d,0xe5, - 0x43,0x25,0x47,0xc7,0x9f,0xe2,0x6e,0x51,0x62,0x1e,0x7a,0x88,0xb8,0xe5,0x8d,0xd3,0x4f,0x2d,0x91,0xea, - 0x3f,0x0d,0xcd,0x43,0xcb,0x8e,0xe1,0x14,0xc2,0xfb,0xfc,0x03,0x11,0x80,0xad,0xc9,0xaa,0x04,0x93,0x4b, - 0x23,0x98,0x18,0x72,0x10,0x59,0xb7,0x3f,0xa0,0xc5,0x9f,0xd4,0x62,0x17,0x95,0xde,0x3f,0x9e,0x9a,0xe0, - 0x06,0xf7,0x79,0xda,0x54,0x2f,0x36,0x73,0x5a,0xf6,0xa3,0x35,0x07,0x08,0xac,0xf6,0x7b,0xd8,0xda,0x1c, - 0x41,0xbd,0xc1,0x04,0xbb,0xbc,0xbe,0xab,0xab,0xa9,0x6e,0x1a,0x3d,0xb3,0x4b,0x6f,0x0c,0x68,0x24,0xbe, - 0x8e,0xf8,0x11,0x6c,0xcb,0xc3,0x46,0xd1,0x3c,0x2c,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x46,0xc1,0xae,0x61, - 0x68,0x10,0x2c,0x04,0xa5,0xd9,0xa5,0x86,0x71,0x31,0xbb,0x00,0x38,0x74,0x3e,0xc1,0x6c,0x07,0xef,0x29, - 0xed,0xec,0x26,0x28,0xf0,0xb0,0x57,0xe0,0x21,0x7c,0xd4,0x1c,0xbb,0x16,0x76,0x83,0xc9,0xa1,0xe3,0x79, - 0x6c,0x6c,0xbf,0x3d,0xc1,0x0b,0x63,0xed,0x1c,0x41,0xaf,0x82,0xa9,0x37,0x53,0x46,0x53,0x4d,0x6b,0x19, - 0x8c,0xaf,0x38,0xe5,0xe1,0x15,0xa7,0x1b,0xa3,0x6b,0xfc,0x34,0x78,0x02,0x7c,0xbb,0x47,0x80,0x0b,0xe1, - 0x3e,0xc4,0x81,0x0c,0xcc,0x91,0xb7,0x37,0xb0,0xcc,0xc9,0xed,0x6d,0x40,0xe9,0x13,0x46,0x5c,0x95,0x56, - 0xa7,0x1f,0x1d,0xb3,0xbd,0xf2,0x6e,0x5c,0xf3,0x7c,0xd4,0x12,0xcb,0xce,0x07,0x46,0x8f,0x6e,0x30,0x49, - 0x12,0x1c,0xfd,0x0e,0xf7,0x9b,0xcb,0xd2,0xd8,0x54,0xd0,0xa8,0x53,0x94,0x16,0x21,0x58,0x07,0x3d,0xaf, - 0x23,0x5e,0x1d,0x67,0xbc,0x6f,0x5c,0x18,0x22,0xbb,0x83,0xb6,0x71,0x9b,0x69,0x4e,0x5b,0x19,0x9e,0xe2, - 0x84,0x7b,0x98,0x47,0xf0,0x18,0x04,0x5d,0x43,0xa0,0x2c,0x79,0x8b,0x2b,0xd8,0x24,0xd9,0x32,0xbc,0xad, - 0x72,0x1a,0x0b,0x5b,0x57,0xcb,0x5c,0xf2,0xf8,0x65,0xe2,0x7d,0x00,0xd8,0x90,0xfc,0xe8,0x8a,0x46,0xbb, - 0xec,0xc6,0x04,0xf5,0xa6,0x2b,0xd6,0x07,0x43,0x14,0xe6,0x36,0x39,0xed,0x24,0xe3,0xf6,0x34,0x15,0x65, - 0x71,0x67,0xd6,0x4c,0xf3,0xbe,0x41,0xc5,0x5d,0x71,0x74,0x26,0x78,0x70,0xa6,0xd8,0x26,0x36,0x0a,0x9a, - 0x5b,0x84,0x3e,0xc3,0xe3,0x7a,0x80,0x7e,0xa2,0x07,0x65,0x86,0xd6,0xef,0x63,0x72,0x69,0xcd,0x77,0x23, - 0x7a,0xea,0x34,0x1d,0x17,0xfc,0x52,0xb8,0x7e,0x74,0x2f,0xe1,0xd4,0x5e,0xf4,0xe1,0xaf,0x4f,0x20,0xde, - 0xa6,0xcc,0xc2,0x9c,0xc3,0xea,0x88,0x71,0x86,0x77,0x92,0x37,0x0f,0x06,0x5a,0x60,0x32,0xc3,0x3d,0x0f, - 0x90,0xd4,0xc6,0x85,0x3d,0x3d,0xb4,0x80,0xbd,0xa3,0xfb,0x18,0x46,0xce,0x9d,0x41,0xcc,0xe5,0xb7,0x4f, - 0x84,0x88,0xf0,0x0b,0x9a,0xf1,0x78,0xf3,0x7b,0x1b,0x7d,0x2f,0xd9,0x75,0x78,0x49,0xe2,0xa1,0x44,0x4a, - 0x3c,0xad,0xdd,0x34,0x38,0x2f,0x8a,0x10,0x93,0x75,0xb0,0x91,0xc4,0x60,0xff,0x53,0xdb,0xb3,0xd3,0x56, - 0x28,0x60,0x88,0x22,0x96,0xb0,0x18,0x9d,0x71,0x3d,0x36,0xa6,0xbc,0x90,0x31,0xdc,0x10,0x2f,0x0e,0xcc, - 0x6e,0x1d,0x5a,0x9c,0xa3,0xad,0x3b,0xbf,0x26,0xd1,0x71,0x15,0x07,0x23,0x67,0xaf,0x3a,0x74,0xf1,0xe5, - 0x6c,0x77,0x97,0x5f,0x4b,0x8c,0x25,0x35,0x05,0xd6,0x5d,0x44,0x1b,0xb8,0x13,0x6c,0x46,0xdf,0xee,0x0c, - 0x08,0x03,0xf5,0xd4,0x59,0xec,0x8c,0xfb,0x03,0xad,0xa2,0xdf,0xd3,0xf5,0xa4,0x96,0xf3,0x43,0x66,0x6b, - 0x92,0x9b,0xe3,0xc4,0x1c,0x2b,0x7c,0xdf,0x89,0x35,0xb8,0x70,0xb7,0x21,0x13,0x80,0x1c,0x13,0x05,0x1a, - 0x19,0x3b,0x05,0x6d,0xa3,0x17,0x7a,0xfa,0x42,0x5f,0x2d,0xf9,0x70,0xcf,0xc5,0x3f,0x22,0x99,0xd0,0xb6, - 0x26,0xc6,0xf3,0x64,0x5e,0x4d,0x3f,0x19,0xec,0xe1,0x3a,0x46,0x8b,0x18,0x64,0xae,0x7b,0x44,0xb3,0x23, - 0x77,0xfb,0xf7,0xd4,0x4c,0x3b,0x28,0x90,0xd0,0x97,0xaa,0xb3,0x61,0xe4,0xd8,0xbf,0x27,0xfb,0xc6,0x84, - 0xb5,0x30,0x0e,0xbe,0x41,0x14,0x89,0xf4,0x30,0x62,0x67,0x5f,0x1b,0xf0,0x62,0xe8,0xde,0xac,0x9b,0xca, - 0x86,0xd9,0x37,0xd2,0xc7,0x55,0xe7,0x2a,0xee,0x43,0x89,0x6e,0x71,0x34,0x5e,0x81,0xd5,0xce,0xb6,0xb7, - 0x57,0x88,0x95,0x4d,0x7b,0xe3,0x32,0xaf,0x71,0x77,0x48,0x2e,0xce,0xbc,0xfb,0xaa,0x21,0xb2,0x5b,0x18, - 0x41,0x22,0xbe,0x4d,0x48,0x8c,0xfb,0x91,0xe3,0x09,0x39,0xd1,0xbc,0xc0,0xfd,0x66,0x37,0xae,0x04,0xdf, - 0x12,0xec,0x0b,0x0d,0x84,0x63,0xc9,0xd1,0x4e,0xa1,0xff,0xd1,0x06,0xf1,0x61,0x8a,0x25,0x82,0x42,0xaa, - 0x11,0x9d,0x31,0x93,0xfb,0xcc,0x6b,0x72,0x2b,0xf4,0x80,0x16,0x6c,0xae,0x23,0x5c,0xa9,0x25,0xcf,0x89, - 0x0e,0x54,0xea,0x69,0x65,0xd9,0x87,0x6b,0xe5,0x23,0x2b,0x4d,0x27,0x4d,0x97,0x65,0x38,0x72,0x11,0x9e, - 0x0c,0xea,0xe6,0x8b,0x55,0x76,0xb3,0x1a,0x90,0x9f,0x28,0x23,0x20,0x44,0x0a,0x84,0x89,0x7c,0xbc,0x88, - 0x3f,0x4d,0x24,0x21,0x01,0x4e,0x4d,0x26,0x3d,0x71,0x26,0xfd,0x06,0x99,0xbc,0x53,0x7d,0x09,0x7e,0x4d, - 0x81,0x22,0xa4,0xc4,0x92,0x3d,0x21,0x91,0x49,0x4f,0x41,0x7a,0xc0,0x2d,0x23,0xf7,0x3e,0xc4,0xae,0xec, - 0xfb,0x04,0xe4,0x4b,0x8b,0x71,0xdf,0x8b,0xa2,0xc4,0x01,0x57,0x94,0x7a,0xdf,0xea,0xd2,0x63,0x27,0xf6, - 0xc5,0xa5,0x8f,0xc3,0x2c,0x62,0x9f,0x20,0xc6,0x62,0x54,0x62,0xce,0x57,0x6e,0x9d,0x9f,0x89,0x05,0xdb, - 0x3d,0x2d,0x6d,0x8e,0x99,0x37,0x65,0xbc,0x52,0x4d,0x41,0xeb,0x8b,0xe0,0xca,0x4a,0xd4,0x61,0x57,0x56, - 0xdc,0x19,0xa5,0x30,0x98,0x3e,0x93,0xa0,0xb6,0x0f,0x2c,0xa4,0xd9,0xc9,0x09,0x3d,0x23,0x83,0xf2,0x61, - 0xb2,0x62,0xdc,0xdd,0xf9,0xca,0x93,0x22,0x42,0x03,0x5a,0xd1,0xa0,0xe9,0x1e,0x5f,0x44,0x13,0xed,0x86, - 0xe5,0xdc,0x97,0x3e,0xc0,0xab,0x14,0x66,0xad,0x61,0x90,0x8a,0x2b,0x99,0x8c,0x40,0x54,0x12,0xd2,0xe3, - 0x15,0x31,0x47,0x9d,0x50,0x30,0xf9,0x5d,0xfc,0xce,0x56,0x1f,0xb1,0xb9,0x8c,0xd2,0x50,0x96,0x65,0x87, - 0xa4,0xf3,0xb1,0xce,0x3a,0x04,0x65,0x69,0x08,0xca,0xd2,0x11,0x94,0x65,0x8f,0xa0,0x2c,0xfb,0x04,0x65, - 0xd9,0x23,0x28,0xcb,0x41,0x82,0xb2,0xfc,0xcf,0x09,0x4a,0x3b,0x20,0x43,0x51,0xca,0x4b,0x1a,0xdd,0xc8, - 0x6e,0xa0,0x3d,0xae,0x4e,0xcb,0x34,0xa8,0xc1,0x38,0x6b,0x94,0x7e,0x71,0x92,0x4e,0x7d,0x71,0x47,0xca, - 0xcb,0x26,0x33,0x13,0xea,0xf4,0x29,0xff,0xd9,0x8d,0x08,0x23,0xc7,0x2b,0x0e,0xa2,0x9c,0x74,0x2e,0xae, - 0x06,0x76,0xf6,0x6f,0xe9,0x50,0x11,0x1c,0x0e,0x7c,0xfd,0x2b,0x75,0x75,0xcd,0x94,0x58,0x8e,0xfb,0xec, - 0x9b,0x3e,0xa7,0x4e,0x07,0x7b,0x02,0x90,0x30,0x71,0xd3,0x19,0x72,0xf8,0x39,0xb5,0xde,0x93,0xbb,0x6d, - 0x18,0x19,0x9d,0x86,0xe8,0x1d,0x26,0x5d,0x96,0x4d,0xda,0x8d,0xba,0x38,0xce,0x85,0x61,0x77,0x89,0x6e, - 0x77,0x74,0x89,0x2c,0x6b,0x90,0xd7,0x35,0xff,0x73,0x01,0xdd,0x6c,0x24,0xd2,0x7d,0x0e,0xff,0x73,0x20, - 0x71,0x08,0xd9,0x7e,0xce,0xc0,0x4a,0xc9,0x11,0x7f,0x2a,0x1b,0xec,0xd0,0x10,0x89,0xdd,0x36,0x52,0xcb, - 0xa6,0x05,0x82,0x0f,0x5a,0x74,0x13,0x09,0x1c,0x1d,0xeb,0xb3,0x63,0x87,0xc8,0xee,0xd3,0x3b,0x77,0x30, - 0xf9,0x9d,0x4a,0x5b,0x66,0x70,0xbb,0x33,0x0d,0x47,0x52,0x42,0xb4,0x84,0x55,0x2b,0x99,0xe7,0x8a,0xb7, - 0xe3,0xda,0x78,0x5f,0x38,0xe8,0x0c,0xac,0xb6,0x1f,0xa8,0x7b,0x0f,0x54,0x64,0x48,0xf6,0x76,0x74,0x59, - 0xe7,0xcb,0x67,0xd6,0xe7,0xc0,0xbf,0xc2,0x66,0xc2,0xe4,0x3a,0xb5,0x67,0x50,0xc4,0xa5,0x71,0xb9,0x20, - 0xd8,0xd2,0x6a,0x20,0xd4,0xbf,0x9f,0x6b,0x09,0x46,0x1e,0x06,0xe4,0xca,0xb3,0x2a,0x58,0x80,0x2a,0xf0, - 0x6c,0xe2,0x5d,0xdd,0xe1,0x97,0x72,0xb1,0xfe,0x12,0xf6,0xc8,0xbe,0x5b,0x5f,0x57,0xe2,0x2b,0x08,0x8d, - 0xc5,0xb9,0x65,0x0e,0x68,0xe3,0xf6,0xc2,0x88,0x07,0xba,0x05,0x35,0x10,0xd3,0xca,0xc5,0xa7,0xac,0x5d, - 0x77,0x0a,0x03,0x0f,0x88,0xab,0x81,0xcb,0xa5,0x10,0xa2,0x32,0x24,0x51,0xe0,0xfd,0xd1,0x25,0x59,0xaa, - 0x85,0x1e,0x42,0x5e,0x73,0x60,0x72,0x43,0xe6,0x24,0xa0,0x18,0x1f,0x1a,0x6a,0x91,0x9d,0x96,0xfe,0xe3, - 0x6a,0x75,0x58,0x2b,0xaf,0xce,0x41,0x12,0x5c,0x2b,0x17,0x57,0x6c,0xff,0x7a,0x7d,0xa2,0x9f,0x3a,0x16, - 0x29,0xe5,0x38,0xbd,0x7d,0xd7,0x2d,0x6b,0xea,0x2a,0x3c,0x27,0x8d,0x79,0x62,0x68,0xd1,0xf4,0x0b,0x97, - 0x04,0x25,0xb1,0x8b,0x00,0x38,0x81,0x73,0xb8,0x02,0x31,0xb8,0x41,0x1e,0xd4,0x12,0x6b,0x9a,0x7d,0xa8, - 0xd3,0xe8,0xf8,0x02,0x04,0xfe,0x43,0x68,0x18,0x4a,0x48,0xc9,0xb9,0xf2,0x32,0xd8,0xbb,0xe9,0xb2,0x8c, - 0xfb,0x22,0x13,0xa9,0x21,0xe1,0x3a,0xc6,0xc6,0x4c,0xdb,0xaa,0x4e,0x20,0x38,0xac,0xee,0x3a,0x24,0xa6, - 0x83,0x72,0xc3,0xdd,0xb8,0x61,0xcc,0xdd,0x80,0x5a,0x09,0x84,0x1f,0xf3,0xf0,0x53,0xa7,0x39,0x64,0xd1, - 0x00,0xa1,0xbd,0x01,0x55,0x59,0x97,0x31,0x0f,0x7c,0x69,0x7b,0x3a,0x59,0x3a,0x37,0xfe,0xe0,0x22,0x67, - 0x2d,0xa2,0xd7,0xda,0x52,0x7f,0xe9,0xfd,0xdd,0x25,0x42,0x14,0x5a,0xe9,0x97,0x8a,0xfc,0xcd,0xea,0x01, - 0x35,0x15,0x38,0xa9,0x76,0xa2,0x5f,0xf8,0xcd,0xfd,0xcb,0xea,0xe1,0xfe,0xc3,0xbf,0x3d,0x38,0x53,0xd1, - 0x2f,0xf2,0x18,0x25,0xbd,0xcc,0xaf,0x7d,0xe6,0xd7,0xe1,0x05,0xa1,0x33,0x03,0x0b,0xf0,0xde,0xb3,0x20, - 0xa4,0x2f,0xb7,0x5e,0xf8,0x59,0xf6,0x17,0xc5,0xba,0xbe,0x89,0x56,0x43,0xd7,0x35,0x34,0xc8,0x84,0x95, - 0x53,0x38,0xfb,0x9e,0x85,0x3e,0x9e,0x41,0x3f,0xe3,0x4f,0x55,0xf6,0xa9,0xfa,0x83,0x08,0x9d,0x08,0x86, - 0x6b,0x74,0x4f,0x59,0x3b,0xb9,0xff,0x28,0xdf,0x3a,0x87,0x12,0x38,0xfa,0xa5,0x8c,0x1e,0x7c,0x73,0x3f, - 0xbd,0xff,0x88,0x4a,0x11,0xd6,0x30,0xef,0xea,0x53,0xe5,0xcb,0x7b,0x2f,0x9c,0x9d,0xff,0x73,0xb0,0x3f, - 0x8e,0x92,0x6f,0xf6,0x19,0x11,0x5e,0xb8,0x90,0x77,0xa7,0xb5,0xd6,0xbf,0xeb,0x18,0x91,0x96,0x17,0x2e, - 0xd1,0x47,0x15,0xb7,0x17,0x81,0xab,0xb3,0x32,0x5b,0x89,0x18,0x46,0x39,0x4a,0x31,0x62,0xa3,0x99,0x6b, - 0xce,0xa1,0xa3,0x59,0x51,0xaf,0x14,0x97,0xf0,0xea,0x5a,0x05,0x75,0xa8,0x3a,0x1e,0xa8,0xf9,0x3c,0x6f, - 0x82,0x6b,0x2f,0xd5,0x49,0x99,0x3d,0xd8,0x8b,0x7f,0xb9,0x4c,0x68,0x2d,0x2e,0xcb,0x6c,0x38,0xe6,0x89, - 0x5b,0xb7,0x93,0xd0,0xa4,0x20,0xb4,0x6d,0x9a,0xa0,0xcb,0x3f,0x2c,0x97,0xb0,0x9c,0x86,0x97,0x37,0x22, - 0xb0,0xc2,0xe4,0xf5,0xea,0xce,0x2a,0x4d,0x6c,0x9b,0xfd,0xa4,0xfb,0xe1,0xae,0xd7,0x3b,0xd2,0xe7,0xf7, - 0xa8,0x77,0xbf,0x3c,0x89,0x0f,0x1f,0xef,0xfd,0xeb,0x08,0x3d,0xfc,0xf4,0x87,0x3d,0xbc,0x57,0xaa,0x68, - 0xef,0xde,0x41,0x84,0x6a,0x5f,0x55,0x97,0xb6,0x5a,0xaa,0xeb,0xe9,0xa6,0x4c,0xc6,0x29,0xe0,0xd5,0xe3, - 0xae,0xbe,0xc8,0xc5,0x72,0x51,0x1f,0x88,0xaf,0x03,0x51,0xbd,0xc7,0x71,0xd6,0xeb,0x3d,0x7b,0x99,0x62, - 0xa4,0x3e,0x96,0xd9,0x61,0x14,0xac,0x89,0xe7,0xe1,0x22,0x7b,0xe5,0x61,0x74,0xa4,0xde,0xa2,0x94,0xd8, - 0x5f,0x3e,0x65,0x18,0xa3,0x4c,0x01,0x36,0xaa,0xc2,0x64,0xb0,0x51,0x37,0xe4,0xf0,0x62,0xdc,0xed,0xd2, - 0x7f,0x30,0xe1,0x29,0xdd,0x5d,0xbb,0x36,0xe3,0x99,0x44,0x22,0x46,0x9b,0xf2,0xc4,0x79,0xfe,0x8e,0x66, - 0xa4,0x87,0x6f,0x72,0x83,0x90,0xf8,0x9c,0xcf,0xa8,0x53,0xaf,0xca,0xec,0x46,0x88,0x89,0xd7,0x9a,0x08, - 0x67,0x02,0x35,0x2a,0x78,0x56,0x10,0xf3,0x39,0x74,0xc3,0x6a,0x53,0xcc,0x61,0x98,0x41,0x74,0x3d,0x41, - 0xd1,0x6c,0xc5,0x93,0xf4,0xb1,0x58,0x22,0xc1,0x5e,0xf7,0xcb,0x99,0xba,0x86,0x68,0x07,0xf6,0x55,0x78, - 0xe5,0x36,0xbf,0x93,0x7b,0x60,0xd9,0x7b,0x43,0x81,0xba,0xef,0x24,0x14,0x67,0x25,0x0d,0x66,0x66,0x76, - 0x1d,0xd1,0x23,0x47,0xca,0x5e,0xfe,0x38,0xd8,0x91,0x4e,0xb8,0xfb,0xf4,0x69,0x19,0x24,0xc0,0x95,0x4b, - 0x52,0x7e,0x28,0x3f,0x95,0xd5,0x65,0x69,0x2a,0x45,0x5a,0x2f,0x7a,0x7e,0x7a,0xa6,0x86,0x82,0xe3,0xa7, - 0x8f,0x4b,0x15,0x5c,0xc2,0x88,0x0f,0x8f,0xe7,0xc5,0xa9,0x9e,0x5e,0x4f,0xe7,0x1a,0xf7,0x4e,0x53,0x9f, - 0xca,0xb5,0xfa,0x95,0x20,0xf2,0xf0,0x7f,0x7e,0xb9,0x1c,0xdd,0x3b,0x7a,0xa0,0x9e,0x43,0x56,0x76,0xcc, - 0x7b,0xeb,0xf8,0x98,0xc8,0xb1,0x9b,0xb5,0x7a,0x47,0x49,0x9e,0x4c,0x75,0x57,0xf8,0x89,0x67,0x8f,0x7a, - 0x39,0x9c,0xfb,0xd3,0xcf,0xcf,0xcb,0x8b,0xa2,0xae,0x4a,0x73,0x1f,0xfa,0x76,0x27,0x01,0x92,0x3c,0xee, - 0xa9,0x7a,0x56,0x66,0x2f,0xcb,0x9d,0x9d,0xe1,0xdc,0x2e,0xc0,0xab,0x17,0x65,0xf6,0x8e,0xca,0x1a,0x97, - 0xa2,0x32,0xbf,0x28,0xce,0xc0,0x29,0x8c,0x56,0x34,0x61,0x8f,0xcf,0xf8,0xc2,0xa9,0x4e,0xf9,0x37,0x65, - 0xf6,0x82,0xca,0x3f,0x58,0x34,0x85,0xbe,0x25,0xdc,0x33,0xa3,0x22,0xc6,0x26,0xec,0x45,0x99,0xa8,0xd7, - 0x92,0xfd,0x22,0xf0,0x68,0x44,0xc9,0xad,0xaf,0x47,0xfb,0xc0,0x6e,0xea,0xfd,0x66,0xbe,0x9e,0x9d,0xe9, - 0x07,0x9c,0xf9,0x64,0x33,0x93,0xe0,0xa0,0xa6,0x73,0x0e,0xd9,0x74,0x9a,0xd9,0x37,0x5c,0xb9,0x51,0xaa, - 0x9f,0x4c,0x57,0x8a,0xe5,0x39,0xed,0xad,0xdb,0x62,0x99,0xcf,0xe8,0x4f,0x45,0x7f,0xaa,0xc6,0x77,0x09, - 0x4e,0xed,0x55,0x63,0x3e,0xf9,0xa1,0xcc,0x62,0xfe,0x66,0x7a,0x5e,0x13,0x89,0xf2,0xcb,0x83,0x5f,0x66, - 0xbb,0x41,0xef,0x6f,0xd6,0x23,0xbe,0x69,0x38,0x51,0x3f,0x42,0x89,0x0d,0xaa,0xea,0x5d,0xc9,0x51,0x36, - 0x81,0x95,0xbf,0x63,0x7b,0x88,0xe1,0x6b,0x99,0xbf,0x23,0x7c,0x62,0x62,0x34,0x44,0xea,0x06,0xd7,0x3a, - 0x07,0x94,0x30,0x2a,0xdb,0x5f,0x13,0x6e,0x31,0xb3,0xbc,0x19,0x13,0x10,0x3d,0xd8,0x73,0xdf,0x33,0xd4, - 0x7f,0x57,0x26,0x81,0xdb,0x39,0xda,0xff,0xbd,0x54,0xbf,0x95,0xea,0xfb,0x00,0x05,0xf5,0x68,0x01,0x1a, - 0xe3,0xef,0x30,0xac,0xf9,0x9d,0xda,0xc3,0xa2,0x0e,0xc1,0xd0,0xd9,0xbc,0x3a,0xc9,0xe7,0xa0,0x49,0x19, - 0x51,0x61,0x5e,0x24,0x09,0xb8,0x1f,0xbc,0xe0,0x48,0x97,0x17,0xa3,0x1f,0x7f,0x78,0x7e,0xfc,0xfc,0xcd, - 0x8f,0x89,0xfa,0x9d,0x60,0xf9,0xef,0x1d,0x10,0x39,0x3e,0x46,0xe6,0xb3,0xe7,0x3f,0x7e,0x7c,0xfb,0xf6, - 0xd5,0x87,0xe3,0x6f,0x5f,0xbd,0x7d,0xf2,0xf8,0xd5,0xf1,0x77,0x6f,0xdf,0x7e,0x7f,0x7c,0xac,0xbe,0x1d, - 0x06,0xdc,0x0f,0xd7,0x8b,0x93,0x8a,0x1a,0xbd,0x17,0xcb,0x53,0x32,0xdc,0x37,0x73,0x3d,0x33,0xca,0xf5, - 0x6e,0x6a,0x4e,0xc6,0xbf,0xdd,0x51,0xb3,0xe6,0xe2,0xf4,0x93,0x4c,0x3e,0x74,0x67,0x3d,0xe0,0xbf,0x4d, - 0x30,0x7d,0x5c,0xb2,0x3d,0x80,0x30,0x5c,0x88,0xed,0xee,0xf1,0x37,0x80,0xe9,0xb7,0x31,0xc5,0xb6,0x2a, - 0x28,0x3b,0x55,0xf8,0x0d,0x2d,0x6b,0xe7,0x9b,0xa0,0x20,0xd6,0xbf,0x53,0x96,0x90,0x45,0x5e,0x87,0x0b, - 0xf9,0xd9,0x0e,0xaa,0x76,0x6d,0x4c,0x0d,0x7e,0x2e,0xb3,0x33,0xf5,0x2f,0x30,0x04,0xff,0x2c,0x37,0x3e, - 0x2f,0x66,0xd9,0xbf,0x88,0x6e,0x33,0xd7,0x42,0xae,0x4e,0xa0,0xc6,0x5f,0x8f,0xff,0x59,0x76,0xfb,0xf8, - 0x61,0x75,0x32,0xd0,0x4d,0x2a,0x6d,0xe2,0x0d,0x52,0x73,0x9d,0x4f,0xc4,0x15,0xb2,0xff,0x95,0xb9,0x39, - 0x15,0xdf,0xa9,0x8d,0x4f,0xe4,0x52,0xf0,0xb0,0x7f,0xc1,0x9d,0xe1,0xee,0x11,0x9d,0x79,0xa6,0x97,0x22, - 0x6f,0xef,0xd5,0x50,0x56,0x2d,0x11,0xd6,0xc3,0xf7,0x02,0xfa,0x0e,0x3b,0x81,0x2b,0xdb,0x49,0xb5,0x7d, - 0x3b,0x29,0xbe,0xf8,0x7e,0xe5,0x6e,0x09,0x74,0x0d,0xb3,0xe1,0x3e,0x4f,0xe7,0x3f,0x4a,0x44,0x86,0x6e, - 0xeb,0xde,0x91,0xef,0x8d,0xb2,0xcc,0xf4,0xc0,0x99,0xc7,0x5c,0xe8,0xc9,0xd7,0x59,0xf5,0xef,0xf3,0x34, - 0x37,0x75,0xf2,0xa5,0x58,0xe6,0x6e,0x4f,0x3d,0x5f,0xd8,0x8b,0x3d,0xcb,0xc6,0xde,0x48,0x22,0x5f,0x99, - 0xdb,0xb3,0x2a,0x79,0xf5,0xd7,0x69,0x85,0x85,0xfc,0xb5,0x5a,0xdd,0x54,0x7b,0x07,0x66,0x98,0xca,0x66, - 0x8c,0x30,0x38,0x06,0x95,0x67,0x9a,0xe8,0x1a,0xde,0xda,0x4b,0x3c,0x37,0x4c,0x9c,0x3b,0xf5,0x98,0xeb, - 0x48,0xc3,0xa4,0x3a,0xbf,0xe4,0x88,0x38,0x0c,0x5e,0xee,0x8a,0x58,0x97,0xe0,0x3d,0xcb,0x58,0x67,0x21, - 0x89,0x36,0x02,0xbb,0x2f,0xf6,0x74,0x4e,0x8d,0xce,0x82,0x04,0xbe,0x55,0xd6,0xbe,0x76,0xc2,0x99,0x37, - 0x41,0x1a,0xdf,0xa6,0x17,0xf6,0x66,0x33,0x1e,0x3a,0x4c,0x8d,0x88,0x86,0xc8,0x6e,0x78,0x29,0x52,0x84, - 0xf3,0x3b,0x2d,0xce,0x56,0x7c,0x23,0x7b,0x0a,0xa4,0x3b,0xd6,0x26,0x64,0x09,0xac,0x7f,0x07,0x30,0xe7, - 0xf0,0xb4,0xac,0xd5,0x10,0x9a,0x27,0xca,0x27,0x6e,0x6b,0x0f,0xa5,0x4a,0x9b,0x58,0x3c,0x65,0xef,0xc2, - 0x15,0x8b,0x8d,0xf9,0x7a,0x0e,0x8e,0xc0,0x22,0x6c,0x96,0x5c,0x88,0xe3,0x4d,0xea,0x78,0xd5,0x11,0x95, - 0x27,0x98,0xb4,0x7d,0x45,0xad,0xd7,0x75,0xd6,0xbb,0x40,0x48,0x15,0x75,0x0f,0x35,0xd4,0xd4,0xf8,0x61, - 0x84,0x3d,0x1b,0x21,0x7a,0xf7,0x32,0xb0,0xd7,0x30,0xf1,0xde,0x90,0xc2,0xf1,0xcb,0xf0,0x50,0xc1,0xb5, - 0x2d,0xaa,0xe1,0x5c,0xd0,0x68,0x98,0x71,0x0c,0x98,0xf3,0x19,0x63,0xc0,0x1a,0x66,0x04,0x57,0x71,0x41, - 0x90,0x3c,0x1c,0x0b,0xfc,0x10,0x17,0xa2,0xb9,0xd0,0x46,0x4e,0x26,0xb1,0xb7,0x37,0x4e,0xf8,0x2e,0x5f, - 0x97,0xe5,0x6c,0xd2,0x11,0x14,0xdf,0xb8,0xb9,0x62,0xc6,0xe1,0x45,0x62,0xee,0x21,0x97,0xe0,0x17,0x63, - 0x13,0xa1,0xb3,0x95,0x08,0x9d,0x32,0xac,0x94,0x1f,0xed,0x60,0x52,0x84,0xa6,0xf7,0x01,0x33,0xed,0xd0, - 0x90,0x6c,0x10,0xc1,0x43,0x87,0xca,0x0b,0xc8,0x63,0xaa,0x13,0x3e,0xe3,0xec,0x45,0xe0,0x2a,0x07,0x5e, - 0x32,0x98,0x05,0xf6,0x54,0xe0,0x3c,0xc4,0x28,0xdb,0x4d,0x2d,0xc1,0x48,0xc0,0xf5,0x30,0x2d,0x48,0xd3, - 0x40,0x9f,0x12,0x84,0x35,0xe7,0xd5,0x6a,0x3e,0xa3,0xbd,0x4a,0x33,0xd8,0x02,0xb6,0x54,0x53,0x6f,0x22, - 0x52,0x09,0xaf,0x62,0x71,0x85,0x5e,0xf2,0x9a,0xff,0xd3,0xe0,0x87,0x8b,0x05,0x3b,0x1a,0x13,0xb6,0xba, - 0x8a,0xe5,0xa2,0x68,0x1a,0x7a,0x64,0x2e,0x9b,0xde,0x88,0x8c,0x12,0xc7,0xcf,0xbb,0x12,0x21,0x89,0xc1, - 0xe8,0x28,0xc9,0x4c,0xaf,0xd3,0x7e,0x76,0x70,0x6b,0xf4,0xa0,0x46,0xc8,0x38,0xfc,0x62,0x5d,0xae,0x44, - 0xdb,0x83,0xb0,0xd5,0x44,0x9b,0xd0,0x0b,0xad,0x77,0x55,0x9b,0x4b,0x7d,0x3b,0x73,0xd7,0xc2,0x47,0x01, - 0xa9,0x97,0xf9,0xfc,0x13,0x0e,0x88,0x71,0x13,0xec,0x02,0x4e,0xbd,0xe3,0xd2,0xac,0x50,0x52,0xde,0x26, - 0x46,0xc6,0xa0,0x43,0x19,0xc3,0x47,0xf4,0x1c,0x01,0xe1,0x09,0x59,0xd3,0x0f,0xf5,0x45,0x75,0x2a,0x0f, - 0x3b,0x72,0xd7,0xcd,0x5c,0x43,0xb8,0xff,0x83,0x5c,0xc7,0x25,0xb7,0x1f,0x4f,0x6b,0x5c,0x83,0x35,0xc8, - 0xca,0x8c,0xa7,0x12,0x98,0xe5,0x0e,0xa6,0x6f,0xab,0x9c,0x3c,0x37,0x29,0xa9,0x0e,0xfd,0x5e,0x1d,0x05, - 0xa2,0x27,0x6d,0xfa,0x5c,0xa4,0x38,0xc4,0xc5,0x0d,0x6e,0xab,0x29,0x36,0x54,0xf6,0x8e,0x08,0xc0,0x8f, - 0x77,0x17,0xd8,0x8d,0x9a,0xe8,0x28,0x7b,0x49,0x85,0xa8,0x47,0x4c,0x85,0x6e,0x1c,0x4a,0xa2,0x2b,0x26, - 0xbc,0xf2,0x03,0x9b,0x4f,0xbb,0xbb,0xf4,0xb4,0x4d,0xd2,0x2e,0xc9,0xd9,0xb7,0x6d,0x75,0x91,0x46,0x7b, - 0x7b,0x3b,0x10,0x3e,0x5f,0x1b,0x33,0x46,0x22,0x6f,0x2f,0x60,0x53,0x97,0x74,0xfd,0x45,0xb4,0x95,0x7c, - 0xc2,0x5b,0x04,0x4a,0x11,0x38,0x8d,0xe4,0xc4,0x80,0xf4,0x2f,0xfc,0x63,0x3d,0xe2,0x61,0x7e,0x94,0xf0, - 0x1d,0x4a,0x59,0x3e,0xc9,0xad,0xd3,0x7b,0x93,0xf4,0x6e,0xc4,0x6b,0x92,0x09,0x71,0x72,0xcd,0x91,0xdb, - 0xb1,0x6b,0x8c,0x5b,0xc2,0x9d,0xd2,0xc3,0x42,0xb7,0xe7,0xd5,0x8c,0x1f,0xe5,0xba,0x6b,0x3c,0x4d,0x4d, - 0xb4,0x83,0xe1,0x89,0xd9,0x1c,0xce,0xd0,0xb5,0x01,0x96,0x60,0xe6,0x61,0x2a,0x0d,0x13,0xc9,0x82,0x2d, - 0x1e,0x6c,0xfb,0x17,0xc4,0xd2,0x64,0xcf,0x45,0x5d,0x5a,0xab,0x79,0xad,0x4e,0xfb,0xca,0xda,0x3e,0xcd, - 0x0d,0x08,0x20,0x9c,0xbd,0xc4,0xe5,0x56,0x6a,0xc6,0x11,0xe4,0x38,0x8e,0x1c,0x9b,0xcf,0x0c,0xd0,0xac, - 0x44,0xe5,0xb9,0x80,0xe2,0x20,0x5e,0xc3,0xf7,0x24,0x99,0x77,0xc8,0xc2,0x30,0x2f,0xfe,0x91,0xc0,0xd9, - 0x19,0xf2,0xf9,0x8a,0x9d,0x5b,0xe1,0x6b,0x22,0xdf,0xf3,0x33,0xfd,0xf4,0x3c,0x2f,0x4b,0x3d,0xbf,0xbd, - 0xdd,0xbe,0x17,0x77,0x93,0x40,0x77,0xdb,0x3b,0x9a,0xba,0x39,0x84,0xd6,0x9a,0xb6,0x5e,0xe1,0x0c,0xe6, - 0x6b,0x9b,0xba,0xb9,0x4e,0xce,0x14,0x0f,0xf4,0xcf,0x3a,0x00,0xfe,0x08,0x67,0x3f,0x6f,0x5b,0x72,0x51, - 0x33,0xea,0xeb,0x56,0xa4,0x16,0x75,0x76,0x41,0xd3,0x4c,0x87,0xd1,0xc3,0xb1,0x79,0x38,0x18,0x81,0x43, - 0xe5,0x52,0xd9,0x8f,0xaa,0x5b,0xfd,0x02,0x45,0x9a,0xd6,0x54,0x02,0x61,0xcf,0xfa,0x8e,0x49,0x25,0x9c, - 0xbd,0x28,0x1a,0x9e,0x4f,0xf3,0x68,0x2c,0x7c,0xcf,0xea,0xcc,0x24,0xd8,0x8b,0x80,0x89,0x94,0x5e,0x75, - 0x5a,0x39,0xab,0xe5,0x56,0x65,0xe2,0x77,0x7e,0x2a,0x3b,0x4e,0x8d,0x67,0x36,0x6c,0x32,0x7d,0x30,0xaf, - 0x19,0x28,0xae,0x6b,0x75,0x2c,0x43,0x23,0x66,0xec,0xa4,0xee,0x09,0x9a,0x8c,0x38,0x75,0x27,0x72,0x01, - 0xa9,0x59,0x78,0x45,0x18,0x2a,0xfa,0x7f,0x6c,0xb5,0xde,0x02,0x5c,0x9c,0xec,0x2a,0x85,0xff,0xbe,0x2b, - 0x54,0x23,0xdc,0xad,0x14,0x2a,0xef,0x2a,0x64,0x6d,0xed,0x58,0x1d,0x4f,0xc4,0x66,0xa7,0x9c,0x82,0x61, - 0x04,0x04,0x9b,0x1b,0x71,0x03,0x35,0xb3,0x9f,0xb5,0xdc,0x46,0x75,0xc5,0x90,0x7a,0x8f,0xff,0x7e,0xe2, - 0x60,0x52,0x4f,0x19,0x6a,0x1f,0xf3,0xdf,0x0f,0x38,0x3b,0x3e,0xe2,0xcf,0xdb,0x21,0xba,0xd8,0x9e,0x73, - 0x0b,0xc4,0x7f,0x67,0xcf,0x88,0x63,0xc6,0x56,0x44,0x84,0xc9,0x39,0xe6,0x13,0x2c,0x47,0xc1,0xc9,0xf5, - 0x24,0x36,0x67,0x22,0x1d,0x8a,0xdb,0xdb,0x35,0x3f,0xc8,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0x92,0x10, - 0x0f,0x8d,0x93,0xf0,0x60,0x18,0x1a,0xa2,0xfc,0x38,0x09,0x0f,0xe6,0x40,0xe2,0xca,0x7c,0x1d,0xfe,0xd3, - 0xe0,0x0b,0x43,0x65,0x4e,0x4f,0x2c,0x95,0x4e,0x6c,0xd2,0xee,0xee,0x47,0xd3,0x90,0xc4,0x7a,0x73,0xd4, - 0xeb,0xac,0xa0,0x73,0xdf,0xd7,0xe3,0x8e,0xf1,0x86,0xf9,0x04,0x26,0xe6,0xf5,0xe5,0xb3,0xf0,0x9d,0x32, - 0x5f,0x12,0xa2,0x32,0x00,0x11,0x14,0xe9,0xa7,0x7a,0x0d,0x02,0xc4,0xed,0x03,0x11,0x14,0x08,0x30,0x50, - 0x8e,0x68,0x90,0x96,0xc6,0xa2,0xd3,0x38,0x7c,0xed,0xf9,0xfc,0x6c,0xff,0x5a,0x8a,0xd8,0xc2,0xde,0xac, - 0x07,0x87,0x35,0x13,0x88,0x65,0x14,0xf9,0x2b,0x2e,0x07,0x0e,0xcc,0x81,0x43,0xb8,0x83,0x3e,0xc7,0x6d, - 0x66,0xce,0x62,0x7f,0xf7,0xd4,0x9a,0x5d,0xaf,0x82,0xfe,0xc0,0x62,0x7c,0xa8,0x77,0x09,0x1c,0xf7,0x55, - 0x48,0x09,0xd9,0xa9,0xb4,0x26,0x66,0xf6,0x33,0x84,0xc7,0x79,0x1b,0x9e,0xf4,0x3d,0xfa,0x5c,0xf8,0x3c, - 0x15,0x30,0x8e,0xff,0x30,0xb1,0x86,0x5c,0x52,0x12,0xb0,0x74,0x12,0xff,0x82,0xa1,0x34,0x33,0x00,0xca, - 0x61,0xfd,0x4c,0x0f,0xa4,0x9f,0xe6,0x2a,0x3a,0xe5,0x44,0x2b,0xc6,0x18,0xdc,0x41,0x50,0xd2,0x9e,0xd7, - 0xd5,0x25,0x1d,0x20,0x4f,0x58,0xab,0x7d,0x5f,0x3e,0xdb,0xa2,0xa9,0xdb,0x32,0x30,0xbd,0x05,0xa3,0x8b, - 0xee,0x72,0xc2,0x22,0x25,0x59,0x13,0x3e,0xa2,0xca,0xaf,0x6f,0x1c,0x5c,0xee,0xec,0xfc,0x8e,0x49,0xf3, - 0x5d,0x44,0xff,0xab,0x65,0x6c,0xa6,0x07,0x12,0x80,0x72,0xb5,0x04,0x2c,0xf9,0x68,0x7d,0x60,0x3c,0xea, - 0x2e,0xbb,0x4e,0x05,0x06,0x1c,0x76,0x5a,0x82,0xe2,0x71,0x17,0xd8,0x20,0xb3,0x88,0x61,0x12,0x17,0xf7, - 0xd2,0x25,0x2a,0x59,0x07,0x7a,0x2d,0xab,0x1f,0x82,0xb0,0xfb,0xbe,0x35,0x52,0x02,0xd9,0xb8,0x49,0xaf, - 0x4b,0x41,0xbf,0x3f,0xc3,0x9e,0x63,0xcb,0x58,0x08,0x6b,0xc1,0x17,0xd8,0x7e,0xdb,0x4c,0xb0,0x18,0x43, - 0xfd,0xa7,0x71,0xe1,0xb2,0x06,0x2f,0x75,0x30,0xe2,0x01,0x63,0x21,0xe5,0xbb,0x3b,0x0e,0x77,0x5f,0xb7, - 0xa6,0x8d,0x5d,0xd8,0x4b,0x10,0xe9,0x4b,0x9c,0x28,0x5f,0x61,0x13,0xec,0xf4,0x70,0xa2,0xba,0x7b,0xbe, - 0xec,0x4e,0xa2,0x8d,0x80,0xd9,0x9b,0x21,0x91,0x38,0x6c,0x48,0x67,0x78,0x13,0x04,0x48,0x66,0xdb,0xec, - 0x05,0x60,0x29,0x49,0xaf,0x57,0x54,0x38,0xbd,0x63,0xb1,0x4d,0x94,0xeb,0x2c,0xfb,0x84,0x0b,0xa9,0x19, - 0x6e,0xf9,0x09,0xa8,0xeb,0x71,0xc7,0xf4,0xef,0xaa,0x76,0xd6,0x88,0xe3,0xf2,0x9b,0x0f,0xf5,0xce,0xce, - 0x55,0xcd,0x17,0xb0,0xcd,0xbe,0xe1,0x9a,0x92,0x92,0x16,0x84,0x0a,0x99,0xd8,0xd6,0xe5,0xee,0x81,0xda, - 0x87,0x0c,0x87,0x0f,0xba,0x2b,0x7b,0x4f,0x66,0x32,0x7e,0x8a,0x5d,0x8e,0x93,0x61,0x5f,0x7d,0x17,0xaf, - 0x5a,0x71,0xae,0x13,0x59,0x4d,0x67,0xbc,0xd4,0xed,0x70,0xb0,0xa0,0x51,0x3d,0x66,0xb5,0x31,0x54,0xfc, - 0xb6,0x67,0x5b,0xa3,0x6d,0x23,0x47,0x63,0x24,0x71,0x7b,0x5b,0xf0,0x45,0x78,0x6e,0xeb,0x74,0xa0,0x45, - 0x7c,0x40,0x6d,0xad,0x1d,0xfe,0x4a,0xb6,0x6c,0x6d,0x36,0xdd,0xf4,0x44,0xf6,0xb7,0xd9,0xfe,0x6c,0xeb, - 0xea,0x45,0xa8,0x4f,0xe2,0xd6,0x32,0x61,0xea,0xbe,0xb5,0xd4,0xf8,0x53,0x3b,0x5b,0x5c,0x99,0xee,0x6c, - 0x61,0xdd,0x9b,0x0e,0x8d,0x2e,0x0e,0x01,0x40,0x80,0x10,0x79,0x22,0xc2,0x13,0x07,0x62,0x8c,0x4e,0x2d, - 0x9b,0x22,0xb4,0x3f,0xda,0x61,0xe1,0xd6,0x32,0x9f,0xc7,0xfd,0xa5,0x6a,0x09,0xee,0x67,0xd5,0xe5,0x67, - 0xd7,0xcb,0x0c,0x0e,0x61,0x84,0x9e,0x68,0xa2,0xf9,0x9e,0x59,0xdd,0xd1,0xed,0xad,0x1b,0xb9,0x3f,0xe2, - 0x85,0x79,0x1d,0xff,0x5b,0x9d,0xeb,0xed,0xed,0x71,0xe7,0x20,0x3e,0x58,0x0b,0xcf,0xf6,0x8a,0x08,0x13, - 0x5d,0xae,0x16,0xda,0xca,0x72,0x54,0x4f,0xb6,0x03,0x85,0x4d,0x7a,0xa6,0x1a,0xfc,0x5d,0xab,0x5f,0xa9, - 0x38,0x76,0x18,0x18,0xf3,0xf1,0xd3,0x36,0x7e,0x1c,0x48,0x5b,0x85,0xcb,0x7f,0x4e,0x25,0x10,0x54,0x20, - 0xe4,0x99,0x0d,0x45,0xc3,0x67,0xc0,0x70,0xcc,0x80,0x81,0xa0,0x00,0x45,0xe3,0xa6,0x24,0x19,0x0a,0x1b, - 0x90,0x75,0x1a,0xf0,0x97,0x7d,0x67,0x37,0xc7,0x2c,0xe7,0x91,0xd2,0x18,0x81,0xf1,0x65,0xbe,0x24,0x92, - 0x52,0x1e,0x7f,0x2c,0x59,0x25,0x6d,0x5f,0x9f,0xcf,0x17,0x69,0x2d,0x1c,0x1b,0x11,0x9d,0xfa,0x14,0xef, - 0x85,0xbc,0xaf,0xd9,0x5d,0x94,0x1d,0xcc,0xbb,0xf6,0x3d,0x3e,0x46,0x88,0x5c,0x5c,0x63,0x0c,0x7b,0xb2, - 0xa9,0x79,0x50,0x4d,0xdf,0x96,0x87,0xb2,0x7a,0x29,0xf0,0x4c,0xbc,0xdc,0xda,0x8c,0x6e,0xc0,0x11,0x0d, - 0x88,0x75,0x83,0x9f,0x5d,0x32,0xba,0xc7,0x8a,0xc8,0x18,0xa4,0xaa,0xa6,0x8e,0x19,0x41,0x5d,0x70,0x61, - 0x93,0xe9,0x1f,0x42,0x03,0x3c,0x9e,0x3b,0x5c,0x80,0x08,0xa2,0xcf,0x01,0x94,0x9a,0x43,0x39,0xc4,0x95, - 0xaa,0x68,0x13,0x29,0xfb,0x9e,0x76,0x99,0x2d,0xeb,0x92,0xb7,0x11,0x68,0x61,0x7b,0x88,0x34,0x95,0xfa, - 0xb7,0xb7,0xe3,0x02,0x6b,0x67,0x23,0x27,0x8c,0x8e,0x65,0xe8,0x4f,0x8d,0xb8,0xf6,0xf6,0xd6,0x86,0x67, - 0xf5,0xa6,0x7d,0x5c,0x3e,0x78,0xe7,0x9b,0x16,0x8c,0x5d,0xa4,0xaf,0x27,0x58,0x25,0xc8,0x79,0x4d,0x78, - 0x2e,0x7e,0x3c,0x36,0x97,0x72,0xc7,0xf6,0xd1,0x8a,0x53,0xf9,0xa2,0xa7,0xbb,0xba,0x02,0x11,0xf1,0xe8, - 0x9e,0x5c,0xcc,0x61,0x6f,0x38,0xea,0x5e,0x73,0x76,0x81,0x7b,0x36,0xee,0xcd,0xad,0xf9,0x12,0x6e,0x11, - 0xa0,0x24,0x36,0x6e,0x71,0x95,0x8a,0xc9,0xe5,0x4d,0x5e,0x8f,0x3a,0x42,0x2a,0x6b,0x1e,0x2c,0xcc,0x3b, - 0xe2,0x54,0xa1,0x1c,0xbb,0x9c,0x04,0x43,0xa2,0x34,0xa8,0x58,0x10,0x1e,0x1b,0x91,0x10,0xc7,0xd3,0x47, - 0x6e,0xeb,0x4e,0xfd,0x45,0xd8,0xcd,0xe1,0x94,0x78,0x7e,0xdc,0xd1,0xfe,0x26,0x5e,0xa9,0x7e,0xdb,0x72, - 0xe3,0xdf,0x66,0xfb,0xfb,0x1b,0x25,0x9f,0xb1,0xf8,0x7c,0xed,0xad,0x9b,0xe7,0xd9,0xe6,0x04,0xfb,0xb8, - 0x15,0x9f,0xc9,0xc3,0x85,0x45,0x72,0x8f,0xe5,0x3c,0x59,0x57,0x3c,0xf1,0xf7,0x60,0xd9,0x40,0x13,0x89, - 0x7b,0x17,0x83,0x50,0xde,0x94,0x41,0xd3,0x30,0x35,0x8a,0x72,0xf6,0xa2,0xd7,0x03,0xdb,0x76,0x60,0x2b, - 0xab,0x20,0xcc,0x06,0x3d,0xbb,0x55,0x00,0xc4,0xf9,0x08,0x1e,0x6b,0x25,0xa1,0xc3,0x06,0x8f,0x6e,0x7b, - 0xff,0x5e,0x39,0x54,0xff,0xb8,0xec,0x44,0x6b,0x8b,0xc3,0x57,0xcc,0xde,0x14,0x37,0x5d,0x39,0x85,0x3f, - 0x1b,0xb8,0x75,0xb7,0x14,0x5f,0x2c,0xed,0xbf,0x99,0xf0,0x3d,0x4e,0x35,0xae,0x8d,0x76,0xf8,0x94,0x18, - 0x3d,0x39,0xd2,0xeb,0x24,0x49,0x1b,0x54,0xb8,0xbd,0x6f,0x82,0x51,0xd5,0x6b,0x65,0x2c,0x03,0xee,0xe8, - 0x7a,0xbf,0xbb,0x5d,0xec,0xc7,0x6e,0xa3,0xdd,0xfe,0x38,0x79,0xa5,0x58,0xbd,0x0a,0x6a,0x8d,0x4b,0xe9, - 0xa6,0x58,0x3e,0xbc,0x2c,0x3d,0xcf,0x95,0xf3,0x65,0xd0,0xa0,0xf7,0x5c,0x8f,0x13,0x04,0xd4,0x0c,0xfa, - 0xbf,0x3f,0x0e,0x64,0x9a,0xe3,0x9a,0x18,0x97,0x7b,0xfd,0x3b,0xdb,0x21,0xd9,0x84,0x2b,0xa5,0xcb,0xc0, - 0x4d,0x8f,0xe3,0x29,0x7a,0xd0,0xb1,0x70,0x90,0xb0,0xfb,0x34,0xfa,0x34,0xbc,0xa6,0x19,0xc8,0xe7,0x5d, - 0xdd,0x11,0x55,0x3e,0xa7,0x3d,0xfb,0xb2,0xce,0x0e,0xd4,0xb3,0x3a,0x7b,0xa8,0x5e,0xa0,0xe1,0x5f,0x43, - 0xed,0x1d,0xdf,0xca,0xbd,0x29,0xfb,0x3d,0x5e,0x11,0x6b,0xf9,0xa2,0xb6,0x1a,0x38,0x9a,0xaa,0x1f,0x57, - 0xc2,0x5a,0x72,0x94,0xb8,0x00,0xf9,0x4f,0x86,0x90,0x9c,0x87,0xf5,0x9e,0xe4,0x8a,0x81,0xc8,0x8a,0x67, - 0x9c,0x79,0x27,0x87,0x21,0x09,0x31,0xd2,0xd8,0x46,0x8c,0xc8,0x2c,0xee,0x51,0x65,0x1f,0x65,0xb9,0x04, - 0x3a,0x4a,0xfc,0xe7,0xf4,0x82,0x1c,0x39,0x61,0x90,0x2c,0x4f,0x46,0x8c,0x36,0x70,0xfd,0x63,0xb0,0x2d, - 0xb2,0xa2,0xb3,0x45,0x36,0x76,0x69,0x11,0xec,0x9a,0x72,0x13,0xfd,0xb9,0x5d,0x84,0x4c,0xd7,0xce,0xc7, - 0xfc,0x4c,0xee,0xf4,0x55,0xda,0x1c,0x5b,0x1c,0x6a,0xd6,0x1c,0x65,0x36,0x4d,0x6d,0x38,0x0a,0x66,0x1b, - 0x8e,0x39,0x89,0xd0,0xac,0xaa,0x35,0x12,0x83,0x7b,0xfe,0xb2,0xf6,0x57,0x6d,0x6c,0xf5,0x71,0x76,0x72, - 0x69,0x83,0x71,0x28,0x6f,0x23,0xc9,0xe0,0x55,0x94,0xb6,0xde,0xd5,0xd5,0x95,0x08,0x06,0x4c,0x72,0xa3, - 0xe7,0xa7,0xf2,0x3e,0xb4,0x75,0xdc,0xc5,0x9f,0xa5,0x5b,0x0c,0xa6,0xe0,0x11,0x0a,0xd3,0x85,0x02,0x32, - 0xe1,0x42,0x4b,0x8f,0xe3,0x6c,0xce,0xce,0x0e,0x25,0xda,0x78,0x8f,0xb0,0x85,0xb5,0x2f,0x65,0x00,0xfd, - 0x56,0x5d,0xdb,0xda,0x5c,0xbe,0x92,0xe9,0x5e,0x5d,0x55,0x90,0x1f,0x95,0xf2,0x44,0xc4,0x44,0xeb,0xbf, - 0x61,0xa9,0x85,0x5c,0xf8,0x0c,0xb1,0x4f,0x20,0xbb,0x61,0x1a,0xa3,0x0d,0x36,0x9e,0x4d,0xe8,0x6f,0xda, - 0x03,0x2e,0xe5,0x91,0x94,0x79,0x77,0x48,0xc1,0xa5,0x74,0x89,0x47,0x10,0x76,0x46,0x12,0xd4,0xd9,0x37, - 0xa3,0x63,0x73,0xdf,0xd1,0x90,0x25,0x0f,0xe5,0x12,0x53,0x08,0xab,0x1a,0xb6,0x97,0xc8,0x4c,0x34,0x34, - 0xfd,0xd9,0x23,0x83,0x70,0x62,0x29,0xf7,0x74,0xdd,0xd1,0xa0,0x9c,0xd9,0x76,0x7c,0x02,0x2f,0x1f,0x6b, - 0xad,0x1b,0xaf,0x17,0xee,0x2d,0xa1,0x3b,0xe8,0xbb,0x1b,0x8e,0x76,0x60,0x89,0x95,0xb2,0x11,0x38,0xc3, - 0x03,0x48,0xf7,0x41,0x5d,0x2e,0x7c,0x0c,0x49,0x8c,0x8c,0x8f,0xf6,0xe3,0x69,0xc7,0xdc,0x5b,0x85,0xd7, - 0x5d,0xbf,0x0d,0x2e,0x82,0x45,0x84,0x88,0x35,0xaf,0x65,0x68,0x83,0xf8,0x67,0xbf,0xdd,0x37,0x9a,0x90, - 0x42,0x7a,0xcc,0x21,0xf3,0xa1,0x7a,0x89,0x84,0xf6,0x88,0x20,0xca,0x2b,0x02,0x92,0x43,0x02,0x6e,0x49, - 0x09,0xb7,0x7f,0x23,0xa5,0x37,0xa6,0xdb,0x97,0xb6,0xb3,0x3d,0x95,0x6d,0xa5,0xba,0xe6,0x6c,0x03,0x41, - 0x59,0xb2,0xf3,0x36,0x24,0xae,0x44,0xce,0x0f,0xe5,0x03,0x4e,0xb5,0x01,0x5a,0x46,0x85,0x28,0x5a,0x0f, - 0xc4,0x28,0xa7,0xe3,0xe6,0x23,0x13,0x04,0x5a,0x02,0xe4,0xaa,0x01,0x82,0xe4,0x2e,0xa0,0xb0,0xfc,0x0c, - 0x1c,0xed,0xfb,0x10,0x40,0xc7,0x9e,0xf1,0x78,0xf9,0x3c,0xda,0xf6,0x88,0x90,0x91,0x48,0xed,0x48,0x2e, - 0x13,0xaf,0x7f,0x80,0xea,0xc2,0x86,0xac,0x10,0x74,0xc8,0x6e,0xf0,0x8d,0x2e,0x57,0xc6,0x75,0xcd,0x35, - 0x5d,0xe1,0x5e,0x2a,0xde,0xfb,0x95,0x0d,0xbf,0xfb,0x06,0x86,0xd3,0x34,0x6e,0x9a,0xbb,0x8f,0x31,0xc7, - 0x13,0x49,0x14,0x6b,0x6e,0x08,0x9b,0xcd,0x5b,0x56,0x35,0x72,0x3f,0x22,0x90,0xda,0xbd,0x38,0x02,0x49, - 0x0e,0x77,0xfb,0x81,0x99,0x62,0xe7,0x27,0x43,0x5a,0xc2,0x2c,0x5b,0x34,0x32,0xfd,0x39,0xe8,0x8f,0xde, - 0x07,0xc4,0x91,0xda,0xf9,0x36,0x17,0x11,0x5c,0x60,0x55,0x26,0x67,0xe9,0x2c,0x16,0x7d,0x9f,0xdc,0xf9, - 0x6c,0xeb,0x45,0x13,0x80,0xca,0xc9,0xe7,0xb0,0xa9,0xc0,0x6d,0x15,0x23,0xed,0x98,0xb5,0x76,0x83,0x62, - 0xd4,0x5e,0x0f,0xbd,0x79,0x70,0x2b,0xec,0xbb,0xee,0x08,0x06,0x4c,0xde,0x13,0xde,0x2e,0x6c,0xc4,0x19, - 0xe3,0x9a,0xad,0x9b,0xb5,0x5c,0xd2,0x43,0xc4,0x02,0xdf,0xf1,0x4c,0xc4,0x8e,0xe6,0x4b,0xd9,0xbc,0xa0, - 0xa5,0x0b,0x8f,0xbc,0xde,0x3d,0xb2,0xb8,0xc8,0x42,0x08,0x37,0x43,0x55,0x2e,0x22,0xe3,0xb8,0x70,0xa2, - 0xb1,0x3c,0x2b,0x0f,0x8b,0x23,0xb8,0x9a,0x9d,0xd2,0x0a,0xe2,0x8e,0xd6,0x4b,0xbe,0xa9,0xd5,0x2c,0x1f, - 0xba,0x15,0xe1,0x9e,0xec,0x0f,0x42,0xc1,0x80,0x03,0x4b,0x3f,0xc4,0x76,0x1a,0x08,0xbe,0xb0,0x5f,0xb5, - 0x53,0x91,0xdd,0x05,0xaa,0xc7,0xb6,0xc0,0x4f,0x16,0xde,0x87,0xf0,0x6e,0x9d,0x7d,0x8f,0x50,0xe9,0x9d, - 0xe8,0x1b,0x8e,0x7b,0xd3,0xb8,0x3b,0x66,0x70,0xe6,0xab,0x49,0x95,0x56,0x90,0x6d,0x8c,0x21,0x39,0xc2, - 0x78,0x58,0x00,0xfe,0x16,0x7e,0x9b,0xb4,0x25,0xce,0xd4,0x19,0xb1,0xe9,0x44,0xc4,0x16,0x06,0x34,0x4f, - 0x31,0xb6,0x82,0xd9,0x3f,0x06,0x05,0xdb,0xb7,0x84,0x7d,0xbc,0xa8,0x7f,0xb0,0x69,0xe1,0x87,0x6d,0x51, - 0x70,0xde,0xe1,0x1e,0x11,0x74,0xaf,0x66,0x28,0xdb,0x0c,0xe3,0x51,0x87,0x77,0xc1,0xc1,0x3d,0xae,0x0e, - 0x7d,0xe2,0x66,0xc2,0x47,0xd4,0x7c,0x53,0x24,0x73,0xaf,0x36,0xc5,0x76,0x4d,0xcc,0x02,0x87,0x70,0xc7, - 0x06,0x8c,0x1a,0x1d,0xa2,0x89,0x07,0x76,0x6c,0x5e,0x67,0xc3,0xa0,0xaa,0x8d,0x40,0x89,0xa0,0x6c,0x13, - 0x81,0x5a,0x03,0x60,0x43,0x89,0xb8,0x16,0xe0,0xa2,0x24,0x29,0xc2,0x81,0xf7,0x73,0xe9,0x9c,0xd8,0xec, - 0x21,0x6e,0x13,0xfa,0x9c,0x0d,0x0c,0x03,0xd2,0x7a,0xec,0xe2,0x3e,0x95,0x9f,0x2d,0xcc,0xe0,0x3d,0x6c, - 0x25,0x73,0x1d,0x07,0xa4,0x32,0x1d,0x1f,0x02,0xba,0xb4,0x3f,0xfe,0x4c,0x61,0x83,0xa6,0xca,0xa4,0x63, - 0x2d,0x77,0x8f,0x0d,0xe3,0xba,0x49,0x72,0x91,0x53,0xf6,0xaa,0x9b,0x3a,0xa4,0x38,0x97,0x3b,0x8f,0x7c, - 0x24,0x17,0x5e,0x5c,0x26,0xe4,0xe4,0x7e,0x69,0x5c,0x07,0x21,0xd7,0xb8,0x8b,0x22,0x6a,0xdf,0x86,0x5c, - 0x35,0xb0,0x1b,0x14,0x75,0xbe,0x73,0x85,0x57,0xe0,0x6a,0x2f,0x13,0x54,0xd6,0x1f,0x22,0x34,0x9b,0xa9, - 0x9d,0xd4,0x8d,0x43,0x28,0xc7,0xbf,0x0e,0x05,0x28,0xcb,0x1e,0xfc,0x0f,0x2e,0x61,0x4f,0x1f,0x8c,0x3b, - 0xc3,0xa9,0x3a,0xc6,0xe8,0x32,0x92,0xbe,0x9d,0x48,0xd2,0xb5,0xf9,0x68,0xfb,0x36,0x1f,0x06,0x3a,0xa8, - 0x02,0xf8,0x02,0x1b,0xf1,0x8c,0xc0,0x8c,0xa1,0xbd,0x0e,0xdb,0x23,0xab,0x35,0xf0,0x29,0x41,0x10,0xa8, - 0x12,0x1b,0xd2,0x68,0x9b,0x00,0xd4,0x5c,0xb0,0x4b,0x98,0xed,0xfb,0x9b,0x81,0x28,0xb7,0x6b,0xeb,0x78, - 0xaf,0xea,0x09,0xc5,0x74,0x60,0x9c,0x29,0x33,0x74,0xaf,0x3a,0x3d,0xe5,0x01,0x2a,0x6b,0x25,0x54,0x07, - 0x57,0xa7,0xad,0x8d,0x1f,0x0a,0xd5,0x1c,0x78,0x2f,0x12,0x65,0xad,0x6a,0x19,0x18,0x3e,0xac,0xfb,0x8d, - 0x9e,0x9e,0xf6,0xda,0x04,0x2b,0xda,0x37,0x5a,0x4a,0x3a,0x50,0xfd,0x39,0x52,0x14,0x8d,0x0f,0xcd,0x7e, - 0xcf,0x4b,0x6b,0x23,0xa8,0xa1,0x99,0x7e,0x8c,0x0f,0xc7,0x9e,0xee,0x4e,0x94,0x71,0xe1,0xea,0x4e,0x7d, - 0xf7,0xd2,0x0a,0xdb,0xb2,0x37,0xe9,0xe8,0xaf,0x94,0x90,0xb2,0xa6,0x98,0x76,0xf0,0x50,0x85,0x97,0x5c, - 0xe6,0x38,0x69,0x28,0x3b,0xae,0xb2,0x02,0x16,0x1a,0xb0,0x5b,0xc0,0xf5,0x45,0xa7,0x65,0xef,0xaa,0xcb, - 0x7c,0xe3,0xaa,0xcb,0x81,0x15,0xd5,0x8b,0x1e,0xff,0xeb,0xe5,0xf5,0xcc,0xf1,0x74,0xc7,0x52,0xc2,0x81, - 0xcc,0x1e,0x7a,0xdf,0x1c,0x4c,0x00,0x51,0x69,0x19,0xf0,0xf5,0xe7,0xb1,0x5b,0x17,0x6a,0x9d,0x80,0x78, - 0x9f,0x3d,0x5e,0x2d,0x86,0x7e,0x54,0x31,0x96,0xe6,0x5b,0xba,0x08,0x45,0x1b,0x08,0x41,0x40,0x30,0xef, - 0xe0,0xf3,0x24,0x26,0xb2,0x4f,0xdd,0xe7,0x76,0xb7,0xce,0xc5,0x7d,0x80,0xa5,0xfb,0x90,0xea,0x8b,0x1c, - 0xdf,0x2b,0xd9,0x64,0x13,0xc6,0xaf,0xeb,0x8c,0x7e,0x43,0xbe,0xbe,0xaf,0xba,0x11,0x02,0xc2,0x30,0xf3, - 0x86,0xe5,0xd9,0xd9,0xe9,0x51,0xb8,0xc6,0xff,0xc2,0xc6,0x39,0x94,0x05,0xd7,0x73,0x65,0xf4,0xd1,0xc2, - 0x6f,0xd0,0xa0,0x2e,0xeb,0xf1,0x65,0x1d,0xb2,0x90,0xc2,0x53,0xb4,0xaa,0x9e,0xd8,0x6f,0xac,0x49,0x1c, - 0x4b,0x42,0x8f,0x11,0xb1,0x98,0x4e,0x86,0xf8,0xae,0x5c,0xd7,0x12,0xc7,0xe4,0x38,0xe8,0x9d,0x12,0x01, - 0x6f,0xdf,0xcb,0x10,0xee,0xbe,0x7f,0xaa,0x04,0x82,0x81,0xc1,0xf2,0x36,0x86,0x76,0x9d,0x15,0x7c,0x3b, - 0x22,0xf1,0xeb,0xc7,0x17,0x2b,0x7d,0x7c,0x9c,0xf9,0x1d,0x82,0xde,0x58,0x0c,0x41,0x8f,0xae,0x44,0xc0, - 0x4f,0xdf,0x33,0x72,0x52,0x79,0x91,0x36,0xed,0x9b,0x4c,0x88,0x51,0x0d,0x99,0xbc,0x40,0xb0,0x1a,0xa6, - 0xba,0xe9,0xb8,0xc7,0xe7,0xdd,0xeb,0x50,0xcb,0x11,0x4a,0xfb,0x36,0xb4,0x30,0x96,0xd2,0x37,0x6d,0xda, - 0xd7,0xc0,0x4e,0xb8,0x5b,0x97,0x91,0x13,0xf5,0x34,0x26,0xdb,0x16,0x28,0xba,0x5c,0x6e,0x72,0xd3,0x83, - 0x0d,0xeb,0x82,0x93,0xa8,0xe1,0x0f,0xfc,0xcd,0x94,0xe1,0xe8,0xc6,0xdb,0x2d,0xe4,0xd1,0x03,0x1a,0x98, - 0xee,0xca,0x58,0x71,0x01,0x6b,0x66,0x3c,0x97,0xdf,0x11,0x5f,0xdc,0x31,0x5c,0x7f,0x26,0x8d,0xbd,0x25, - 0x5d,0xa7,0x88,0x93,0x02,0x6b,0xa7,0xc0,0x71,0x59,0x30,0xac,0x0e,0x6a,0xf0,0x04,0x84,0x31,0xe7,0xb4, - 0xad,0x05,0x49,0xd6,0xf8,0x71,0x6f,0xcf,0x4d,0x45,0x38,0x0b,0x6a,0x08,0xb6,0xcd,0xd6,0x11,0xf8,0x72, - 0x33,0xeb,0x9d,0x99,0x1c,0x08,0x13,0x76,0xfd,0x3c,0x00,0x86,0x20,0xda,0x85,0xa7,0x8e,0xac,0x5e,0xcc, - 0xed,0xd7,0xea,0x69,0x1b,0xc7,0x6f,0x7a,0xd8,0x21,0x51,0x6f,0x3a,0x80,0x51,0x12,0xcb,0xff,0xb1,0x98, - 0x76,0x4d,0x1f,0x0d,0x8a,0xf9,0xce,0x28,0x1b,0x09,0x9a,0x3a,0x1f,0x19,0x99,0x40,0x08,0x4c,0x7e,0xf5, - 0xd5,0x86,0xe0,0xc8,0x88,0xb9,0x36,0x04,0x7d,0xac,0x95,0xf0,0x18,0x29,0xe9,0x10,0xea,0x56,0x0a,0xe1, - 0x9d,0x99,0xe5,0x1d,0xec,0x05,0x6e,0x61,0xb1,0xae,0x69,0x84,0xfd,0x0f,0xf7,0x8f,0x76,0x76,0xf0,0x17, - 0x0a,0x9c,0x24,0x10,0xa1,0x83,0x74,0x7f,0x4c,0x4c,0x25,0x24,0xc5,0xeb,0x9e,0xd4,0xa2,0x76,0x1a,0x8a, - 0x8e,0xfa,0x44,0xf4,0x14,0x46,0x1f,0x22,0x7c,0x29,0x1b,0x60,0x20,0x60,0x81,0x10,0x48,0x1d,0x51,0xda, - 0x86,0x24,0x23,0x30,0xc9,0x78,0xc2,0x97,0xa3,0x46,0x52,0x9a,0x6f,0x26,0xb2,0x58,0xc0,0xa2,0xf0,0x9c, - 0x06,0x2a,0x22,0x69,0x44,0xd3,0x07,0xb7,0x41,0xcd,0xd4,0x31,0xc7,0xf9,0xb4,0x6a,0x17,0x65,0xa8,0xd9, - 0x37,0x35,0xed,0x68,0xf5,0xbe,0xce,0x0e,0x8d,0xaf,0xe4,0x7b,0x7d,0xf6,0xfc,0x6a,0x29,0xf6,0xb6,0x47, - 0xea,0x49,0x9d,0xdd,0x7c,0x6f,0xc5,0xd7,0xa9,0x09,0x73,0x12,0x46,0xb3,0xb6,0x9b,0x8c,0x15,0x76,0x12, - 0xe9,0xa2,0x28,0xa7,0xf3,0xd5,0x4c,0xa7,0xef,0x6b,0xa5,0xaf,0xdc,0xe3,0x22,0xbf,0x4a,0x6d,0x1b,0x72, - 0xff,0xce,0x11,0x8c,0x0a,0x99,0x86,0x4f,0xfb,0x68,0x68,0x9a,0xd3,0x46,0xba,0x93,0xd2,0x60,0x9e,0x12, - 0xde,0x1b,0xca,0x01,0x7b,0xc7,0xb5,0xc5,0x6a,0x5b,0x79,0xbd,0x5d,0x75,0xc9,0x33,0x2b,0xd1,0xc4,0x9b, - 0x6a,0x7d,0x55,0x04,0x87,0xbc,0x75,0x7d,0xd7,0x43,0xa0,0x7d,0x69,0x76,0x96,0x97,0x25,0x39,0x40,0x7e, - 0x67,0x24,0x69,0x54,0x81,0x1d,0xe9,0x9f,0xfb,0x72,0xdb,0x7f,0xb9,0x56,0x9b,0x11,0x07,0x42,0x9c,0xc7, - 0x10,0x37,0x32,0xb1,0xc0,0x68,0x13,0xfc,0x43,0x4c,0x85,0x85,0xb4,0xee,0x4b,0x9e,0xc3,0x80,0x9c,0xcf, - 0x11,0x02,0x5e,0x19,0xf2,0xc9,0x0c,0x0c,0x81,0xc2,0x44,0x89,0xcf,0xaf,0x7c,0x57,0x26,0x01,0xf6,0x36, - 0xc1,0x08,0xba,0x54,0x20,0x18,0x04,0x41,0x3e,0xc1,0xf0,0xce,0x0e,0xbd,0x57,0x41,0x64,0x7f,0x6d,0xa4, - 0x29,0xc1,0x14,0x1a,0x63,0x10,0x4c,0xa1,0x9a,0x5a,0x31,0x06,0x5f,0xaf,0x5c,0x4a,0x74,0xf7,0x69,0x31, - 0xdb,0x8d,0x25,0x62,0x45,0x94,0xa6,0x88,0xb5,0xc1,0x81,0x59,0x22,0xa8,0x18,0x10,0x62,0x29,0x3f,0x9c, - 0x1e,0x4d,0x06,0xb5,0x4d,0xc8,0x19,0x50,0x38,0xcd,0xe5,0xf6,0x2c,0x63,0xa1,0x33,0x45,0x94,0x65,0x94, - 0x24,0x5a,0xd7,0x25,0xc9,0xb2,0x12,0xb4,0xed,0xec,0x58,0x1c,0xfd,0x8d,0x0f,0x18,0x68,0xf2,0x68,0x37, - 0x13,0x34,0xe4,0x0a,0xf7,0xaa,0xaa,0x0e,0xc1,0x91,0x58,0x51,0x8b,0xd7,0xda,0x40,0xda,0x63,0x27,0x81, - 0xce,0x18,0xc2,0xde,0xf4,0x15,0xf1,0x2a,0x03,0x11,0x8b,0x3f,0xc7,0x47,0xbe,0x2a,0xef,0xe4,0x08,0x89, - 0x99,0x65,0xed,0x3d,0x33,0x82,0xed,0x68,0xd5,0x16,0xf3,0xec,0x06,0x9e,0x9e,0xe9,0xcf,0x44,0xb7,0x5d, - 0xb5,0x04,0x20,0x88,0x26,0x0b,0xdb,0x6c,0xb3,0xd2,0xe9,0x33,0x25,0x95,0xbc,0x17,0x0d,0x8e,0x4e,0x3f, - 0x82,0x08,0xb5,0x9c,0x60,0xc0,0xfe,0x39,0x44,0xfc,0x9d,0x72,0x97,0x3e,0x0c,0xee,0xac,0x21,0xeb,0x6b, - 0x16,0x61,0xd9,0x9b,0x22,0xb4,0x18,0x61,0x0f,0xb9,0x60,0x25,0xbe,0xee,0xd1,0xf1,0x49,0xde,0x80,0x6e, - 0xc3,0xb5,0xa7,0x36,0xcd,0xad,0x64,0x43,0x18,0x85,0x87,0xd8,0xe8,0x3b,0x28,0x64,0x08,0xd9,0x69,0xb5, - 0x71,0xe1,0xc8,0xbb,0xf9,0xea,0xac,0x90,0xf8,0xab,0x83,0x19,0x7c,0xe7,0x1e,0x87,0x06,0xb5,0x1e,0x91, - 0x2d,0x6e,0xaf,0xe8,0xb0,0x06,0x42,0x75,0x76,0x49,0x68,0xcf,0x26,0x19,0xef,0x09,0x23,0x5a,0x18,0x90, - 0x41,0x20,0x06,0x09,0x37,0x3a,0x71,0x4f,0xd6,0x51,0x03,0x46,0xef,0x43,0x5f,0x40,0x9b,0x15,0x5c,0x59, - 0xc6,0x5c,0x5b,0x68,0x50,0x86,0x75,0x5a,0x14,0x57,0xc5,0xb0,0xb3,0x34,0x06,0xea,0x95,0x30,0xe1,0xab, - 0x72,0xdf,0x77,0x85,0xb3,0xb4,0xc9,0xb2,0x7d,0x23,0x95,0x3d,0x20,0x06,0x59,0xe0,0xa5,0xab,0x7f,0xcb, - 0x58,0x71,0x13,0x90,0xe0,0x10,0xce,0xe3,0x4b,0xb9,0x78,0x17,0x9b,0x55,0xee,0x35,0xc4,0x13,0xcb,0xf1, - 0x80,0x19,0xa0,0x28,0xb4,0x06,0xe8,0xd6,0x57,0x05,0x27,0xa6,0x5c,0xc7,0xe8,0x42,0xa9,0x48,0x94,0xed, - 0x7c,0x40,0xe3,0x07,0x45,0x20,0x7b,0x44,0x98,0x80,0x01,0xb9,0x3f,0xec,0xfb,0x60,0x14,0x50,0x12,0x49, - 0xa8,0x73,0xca,0x72,0xc4,0xab,0xa6,0x21,0xe2,0x86,0xf8,0x3c,0x98,0x9a,0x32,0x9c,0x17,0x3a,0x6d,0x57, - 0x4b,0xe8,0x69,0x7c,0x91,0x4d,0xa1,0xb4,0x97,0x46,0x7d,0x56,0x26,0x0b,0x99,0x62,0x28,0x75,0x39,0x76, - 0x52,0x97,0x35,0xee,0x3a,0xc9,0x3b,0x40,0xdd,0x97,0x26,0x6e,0xb6,0x61,0x4b,0xf5,0x9b,0x39,0xed,0x36, - 0x63,0xc5,0xf2,0xd2,0x84,0x59,0xc3,0xd2,0x3c,0x50,0x8a,0x40,0x4c,0x29,0xbf,0xf4,0x8e,0x0d,0x54,0xe2, - 0xef,0x5d,0x5e,0x13,0x39,0xf3,0xbe,0x1c,0x73,0x56,0xc9,0x0d,0x2e,0x9b,0x9b,0x91,0xdd,0x10,0xdc,0xec, - 0x59,0x6f,0x38,0x3f,0xb3,0xb6,0x23,0x36,0xa7,0xe5,0x8b,0x61,0x72,0xda,0x81,0xce,0xfd,0x0e,0x97,0xf2, - 0xe6,0x5e,0xeb,0x5a,0xb0,0x83,0x13,0x11,0x17,0x6b,0x39,0xa6,0xda,0xbb,0xba,0x87,0x9e,0xf5,0x22,0xf9, - 0x38,0x9f,0x92,0x38,0x88,0x08,0x20,0x7e,0x62,0x55,0x5c,0x72,0x40,0x14,0x06,0xb5,0xac,0x34,0x10,0xe8, - 0xac,0x59,0x3b,0xa8,0xc7,0xf4,0x99,0x23,0xd9,0x04,0xe1,0x04,0xa4,0xa2,0x81,0x0d,0xcb,0xdc,0x5a,0x76, - 0x83,0xe8,0x96,0x69,0xa9,0x4c,0xec,0xf3,0x72,0x6d,0x5d,0x7d,0x0c,0xf2,0x13,0x0f,0x14,0x58,0x14,0x96, - 0x1c,0x65,0x6f,0x30,0x6f,0x6d,0x5c,0xa6,0x4a,0x61,0xa1,0x87,0xb1,0xfd,0xaf,0x5d,0x99,0x5e,0xd1,0x7c, - 0x10,0x5f,0x63,0x71,0x8c,0xfe,0x1e,0x2d,0xff,0xa9,0x0f,0x9b,0xa6,0x36,0xae,0x91,0x9b,0x3e,0xd5,0x21, - 0x36,0xe9,0xb2,0x94,0x42,0xd0,0xfb,0x6f,0x61,0xf9,0x4e,0x15,0xc3,0xef,0xad,0x80,0xed,0xf5,0xc3,0xd1, - 0x57,0xa3,0x83,0x2f,0x24,0x4c,0xcb,0x4f,0xb5,0xfa,0xa1,0x56,0x3f,0xd6,0xea,0xbb,0x5a,0xfd,0x5e,0xab, - 0xdf,0x6a,0xf5,0x7d,0xad,0xfe,0x5e,0xab,0x6f,0x6b,0x0e,0xa7,0xc1,0xf7,0x3e,0x9b,0x3b,0x5f,0xd5,0xcf, - 0x9c,0xc6,0x77,0xdb,0x28,0xd4,0x4b,0x64,0x66,0xae,0x64,0x82,0x94,0xdc,0xef,0x03,0xf2,0xf0,0x0c,0xa6, - 0x83,0x54,0xfa,0x5f,0x7d,0xdb,0x79,0x17,0x22,0xc9,0xdd,0x6f,0x4e,0xcb,0xf2,0x73,0xcd,0x22,0xb5,0x48, - 0x22,0x1a,0xc3,0xf1,0x02,0xb7,0xc0,0xda,0xdb,0x82,0x4c,0xa1,0x48,0x1a,0xe1,0xf5,0xa5,0x5c,0xa2,0x4b, - 0xa6,0x9f,0x7c,0xa6,0x5c,0xb6,0x63,0xf2,0x5c,0x1c,0x75,0xe4,0x40,0xec,0x5c,0x71,0xce,0x5a,0xfd,0x93, - 0x3b,0x3f,0x95,0xcb,0xde,0xf5,0xac,0x68,0x61,0x44,0xa7,0x66,0x75,0x7e,0x76,0xc6,0x4f,0xcd,0x52,0xcf, - 0xe7,0x5c,0x33,0xf5,0xfd,0x1f,0x5c,0x98,0x0e,0x82,0xea,0xf2,0x94,0x10,0x7c,0x43,0x18,0x8c,0x98,0x4a, - 0x76,0xc9,0x54,0xf9,0xaa,0xad,0x4e,0xab,0xe9,0xaa,0xe1,0xa7,0xe5,0x3c,0xbf,0x56,0xa6,0x43,0x1c,0x78, - 0x84,0x8e,0x6a,0xd8,0xe9,0x11,0xc9,0x3a,0x6f,0xe8,0xfc,0xa6,0xb9,0xab,0xb5,0xb2,0xa4,0x9d,0xf9,0xb5, - 0xe5,0xcd,0x2b,0xf7,0xd9,0xbe,0xd8,0xa1,0xe3,0x9d,0x38,0x9f,0x59,0xd1,0xa0,0x7b,0x33,0xa5,0x4b,0xf9, - 0x45,0x04,0x83,0xb2,0xa2,0x29,0x2c,0x00,0xc4,0xea,0xbc,0x98,0xcd,0xa8,0x6b,0x38,0x1c,0x5b,0x5d,0x2f, - 0x8a,0x12,0x89,0x04,0x51,0x75,0xab,0x8a,0x66,0x91,0x2f,0x55,0xd1,0xea,0x85,0x44,0x3a,0x99,0x57,0xd5, - 0x52,0xd9,0x6b,0xa6,0x94,0x34,0x5a,0x56,0x08,0xd5,0xa2,0x10,0x5e,0xa2,0x29,0x7e,0xa7,0x45,0xaa,0x9a, - 0xf3,0x1c,0x0c,0xa7,0x6f,0xa1,0xac,0x10,0x3d,0x8a,0xd6,0x99,0x9a,0x59,0xe6,0x84,0x8d,0x68,0xd3,0x5e, - 0x15,0x2d,0x91,0xb4,0xf9,0xac,0x2a,0xe7,0x88,0xaa,0xf2,0xdb,0x8a,0xb6,0xe0,0x4c,0x19,0xd7,0xca,0x99, - 0x12,0xb6,0x88,0x60,0x22,0x5f,0xcc,0x09,0x18,0x94,0x1b,0x13,0x7c,0x30,0x79,0xb6,0xdd,0xc5,0x2e,0x1c, - 0x1b,0x94,0xe6,0x9e,0x32,0x01,0xf3,0x08,0x2c,0xc1,0xb1,0xe2,0xd5,0x45,0xd1,0x14,0x54,0x12,0x1c,0x6e, - 0x91,0x45,0xe7,0x6d,0xbb,0x4c,0x1f,0x3c,0xb8,0xbc,0xbc,0x1c,0x5d,0x7e,0x31,0xaa,0xea,0xb3,0x07,0x07, - 0x5f,0x7f,0xfd,0xf5,0x83,0xab,0x79,0x51,0x7e,0x22,0x8a,0xaa,0x18,0x38,0x67,0xa3,0xb4,0xe3,0x82,0xf2, - 0x15,0xa0,0x4c,0xca,0x73,0xb2,0x0d,0xd1,0xf3,0x15,0x11,0xf6,0xe5,0xd0,0xf7,0x5b,0x1a,0x36,0xb9,0xce, - 0xbb,0xe4,0xaf,0xca,0x0a,0x36,0x39,0x66,0x8b,0xaa,0x07,0xbf,0x11,0x02,0x99,0x00,0x71,0xfb,0x40,0xc0, - 0xae,0x28,0xb2,0x9b,0xe6,0x82,0x08,0xe2,0xcd,0x11,0x3c,0xdc,0xdf,0xdf,0x7f,0x40,0x79,0x11,0xf1,0x4d, - 0xed,0xf9,0x50,0x09,0x1a,0xe3,0xdf,0x1e,0xe0,0x8e,0x54,0xfe,0xf3,0xfa,0x15,0x35,0x5b,0x15,0x80,0xcc, - 0xf3,0x76,0x31,0x57,0x27,0xd5,0xec,0x5a,0x01,0x1b,0xaa,0x73,0x5a,0x0a,0x85,0xa1,0x29,0x44,0x28,0x57, - 0xb2,0x6b,0xdb,0xa2,0xa5,0xbf,0xf9,0x6c,0x86,0xfd,0xa8,0xf2,0xba,0x2d,0xa6,0x78,0x6f,0x68,0x4f,0x10, - 0x10,0x55,0xb8,0xc5,0x13,0xdf,0xe1,0xe7,0x40,0x9d,0x3f,0x54,0xe7,0x5f,0xa8,0xf3,0x2f,0xd5,0xf9,0x57, - 0xea,0xfc,0xaf,0xea,0xfc,0xac,0xae,0x56,0x4b,0x55,0xe6,0x17,0xb4,0x76,0x3c,0x46,0x02,0xc4,0x0b,0x35, - 0x23,0xa8,0x9c,0xab,0x59,0xab,0x88,0x8e,0x85,0x87,0x0d,0xd2,0xd9,0x20,0x55,0xab,0x65,0x31,0x85,0xc3, - 0x8d,0x3a,0xaf,0x55,0xb1,0x38,0xa3,0xce,0xd0,0xa0,0xe8,0x10,0xab,0xe6,0x6a,0x09,0xc3,0x46,0xb5,0x9a, - 0xab,0x5c,0x9d,0x10,0x2b,0x79,0x52,0xab,0x93,0x59,0x41,0xff,0x2b,0x45,0x8f,0x53,0x02,0x4f,0x8e,0x42, - 0xa4,0xf8,0x32,0xfb,0xd9,0x29,0x9d,0x91,0x0b,0x55,0xa8,0x4f,0x27,0x33,0xaa,0xa0,0xfe,0xa4,0x7e,0x53, - 0xf5,0x52,0x11,0x30,0xd7,0xed,0x54,0xd5,0xab,0x93,0x6b,0xa2,0xe4,0x9b,0x7c,0xb1,0x54,0x04,0xdb,0x44, - 0x78,0x35,0xcb,0x9c,0x50,0x0f,0xed,0x35,0x62,0x38,0x9b,0xd5,0x09,0xfd,0x5f,0xf2,0xbd,0xb6,0x6a,0xa5, - 0x08,0xb9,0xa9,0xcb,0x13,0x08,0xd1,0x09,0x49,0xe5,0xab,0x59,0x51,0x29,0x6c,0x07,0x30,0xb2,0x9f,0x14, - 0x23,0x06,0x6a,0xe9,0x84,0xc0,0x4e,0xbc,0xc1,0x60,0x89,0x9a,0x2f,0x08,0x40,0x57,0x35,0xf1,0x20,0xd3, - 0xbc,0xbc,0xc8,0xa9,0xa5,0x69,0x5d,0x2c,0x5b,0x6c,0x0a,0x79,0x20,0x92,0x1b,0x86,0x6e,0xca,0x8e,0x7d, - 0x4a,0xc3,0xa3,0xff,0x32,0x59,0x06,0xb0,0x79,0x2d,0x5a,0x5e,0x9b,0x96,0x1e,0xce,0xa9,0x45,0x25,0xc8, - 0x8d,0x87,0x08,0x53,0x02,0x9a,0x33,0x3d,0x9f,0x11,0x1d,0xcf,0x9b,0x59,0x09,0x42,0x9d,0xe7,0x27,0x54, - 0xfb,0x5c,0x9f,0x81,0x16,0x58,0x60,0x33,0x03,0xb5,0x4a,0xd5,0x06,0xc7,0x56,0xab,0x16,0x25,0x2d,0x8e, - 0xb5,0x38,0xd7,0xa1,0x62,0x42,0x01,0x79,0x01,0xac,0x53,0xe4,0xf3,0xea,0x8c,0x2a,0x29,0x57,0xfc,0x07, - 0x28,0x80,0xa6,0x66,0x41,0x13,0x7a,0xad,0x0c,0x06,0x54,0x5a,0x84,0x0e,0x0a,0xfb,0xbd,0xba,0x54,0x36, - 0x74,0x96,0xe2,0xe0,0x64,0xbf,0xad,0x2a,0xa0,0x91,0xd3,0x1a,0x54,0x5f,0x0b,0x68,0x81,0x10,0x82,0x41, - 0x8f,0x00,0x56,0xe5,0x65,0xb1,0x40,0xd9,0x69,0x51,0x4f,0xf9,0x7c,0x28,0x96,0x4b,0x02,0x50,0x35,0x5d, - 0xd5,0xb4,0xc3,0x81,0xb9,0x80,0xfa,0x9a,0x29,0x35,0x42,0x59,0x04,0xa0,0x12,0xe5,0x87,0x86,0x5b,0xb6, - 0x7b,0xa7,0xf9,0x14,0x00,0x58,0xeb,0xe2,0xac,0x94,0x43,0x50,0x9d,0xa9,0xb3,0xf9,0xf5,0xf2,0x9c,0x20, - 0x27,0x3f,0xd3,0x00,0x64,0xcd,0x8b,0xaf,0x21,0x51,0x68,0x08,0xa8,0x8b,0x06,0xb7,0xac,0xed,0x49,0x21, - 0x6e,0x89,0xfe,0x50,0x85,0x84,0x90,0xaa,0xf9,0xf5,0x59,0x25,0xbf,0xfc,0x1d,0x48,0x01,0x25,0xae,0xd4, - 0xaa,0xe1,0x50,0x1b,0x3c,0x3f,0xfc,0x87,0xbf,0x6c,0x19,0x66,0x40,0x54,0x5d,0x14,0xfa,0x52,0x22,0x44, - 0x35,0x83,0x7b,0xb9,0x12,0x9b,0xfc,0x9c,0xef,0x0f,0xa7,0xb1,0x0e,0x72,0x54,0x2b,0x9e,0x14,0xb1,0x6f, - 0x64,0x89,0x07,0x3b,0x9c,0x5d,0x56,0x35,0xa3,0xbf,0x9a,0x7a,0xa1,0x69,0x23,0xa0,0x13,0x73,0xb5,0xaa, - 0x11,0x3d,0x7b,0x5e,0xf4,0x43,0x5b,0x75,0xa4,0x40,0x83,0xd6,0xbf,0x77,0x84,0xdf,0x72,0x17,0x29,0x9b, - 0x03,0x93,0x23,0x94,0x4f,0xca,0x34,0xd6,0xc6,0x90,0x56,0x07,0x86,0xb4,0x3b,0x3b,0x2e,0x5e,0x5a,0x98, - 0xec,0x2e,0x1e,0x84,0x55,0x4c,0xf7,0x22,0x78,0x9b,0x83,0x88,0x4b,0xf6,0x31,0xe1,0x4b,0x0d,0x3b,0xdd, - 0x78,0xf3,0xa1,0xd7,0x67,0xab,0x64,0x1c,0xec,0xf4,0x9b,0x0f,0x71,0x51,0x20,0x04,0xa5,0x76,0xf5,0x7c, - 0xa4,0xd9,0xc3,0x9d,0x95,0xe9,0xc0,0x22,0xf4,0x2a,0xb1,0x45,0x65,0x49,0x38,0xc9,0xc4,0x0d,0xf8,0x13, - 0x1f,0x9b,0x92,0xfc,0xad,0xd8,0xab,0x3e,0x61,0x11,0xf5,0x86,0x0f,0x39,0xf3,0x81,0x2e,0x3b,0x96,0x8b, - 0x1c,0xc5,0x66,0x9f,0x8d,0x99,0x7a,0xe3,0xb5,0x97,0xa5,0x73,0x1e,0x2e,0x08,0x51,0xb8,0xdb,0xb8,0x9c, - 0x0d,0x97,0x0d,0xf2,0xb8,0xac,0xbf,0xb3,0x73,0x68,0x08,0x6d,0x70,0xa7,0x27,0x1d,0x54,0x34,0xfc,0x0f, - 0x74,0x2c,0xd2,0x6e,0x18,0x2e,0x1c,0x14,0x58,0xe3,0x62,0x32,0x0e,0xd8,0x34,0x58,0xd2,0x64,0xae,0xe1, - 0x3e,0x80,0x59,0x7d,0x2a,0x78,0xe1,0xff,0x6b,0xef,0x5d,0xf7,0xdb,0x36,0x92,0x7d,0xd1,0x57,0xa1,0x30, - 0x3a,0x32,0x10,0xb6,0x28,0xc9,0x4e,0x66,0x26,0xa0,0x61,0x2e,0xc7,0xce,0xc5,0x89,0x1d,0x7b,0xc5,0x4e, - 0x32,0x09,0xc5,0x68,0x41,0x24,0x48,0xc1,0xa6,0x00,0x0e,0x00,0x4a,0x76,0x44,0x3e,0xd0,0xfa,0xba,0x1f, - 0x61,0xed,0x17,0xdb,0xf5,0xaf,0xea,0x6e,0x34,0x40,0xc8,0x76,0x32,0x6b,0xaf,0x73,0x3e,0x9c,0xe4,0x67, - 0x11,0x68,0xf4,0xbd,0xab,0xab,0xab,0xaa,0xeb,0xb2,0xd3,0xdd,0xaa,0xfe,0x16,0x49,0x6e,0x0b,0x21,0x1d, - 0xf3,0xd6,0x00,0x20,0x9e,0x37,0x04,0xc5,0xa1,0x33,0x50,0x56,0xa0,0x55,0xfb,0xcf,0x15,0xcf,0x80,0xa6, - 0xc7,0xdb,0x2d,0x33,0x8c,0x12,0x75,0x52,0x03,0xac,0x78,0x16,0xfe,0x19,0x72,0x35,0x6c,0x5b,0x2e,0x1e, - 0x74,0x6b,0xf0,0x9a,0x4c,0xd0,0xab,0x4f,0xb5,0xdb,0x09,0xdf,0x23,0x2a,0x7a,0xab,0x10,0xd9,0x65,0x96, - 0xc2,0x27,0x99,0xf1,0x33,0x66,0x14,0x64,0xad,0x07,0x31,0xf6,0x13,0x81,0x25,0xad,0x3d,0x87,0x79,0x13, - 0xa2,0xb5,0xec,0x38,0xbe,0xa9,0x4c,0xaf,0xbf,0xa9,0x3a,0xdb,0xff,0x06,0xed,0xaf,0x52,0xb4,0x7f,0xd5, - 0x8d,0x39,0x2e,0xa9,0x0b,0xf3,0x94,0x2a,0x9d,0xa8,0x45,0x5d,0xf1,0x77,0xb6,0xe2,0xef,0x88,0x7a,0x78, - 0x57,0x7f,0xf8,0xda,0x7e,0xf8,0x9a,0x3e,0x9c,0xa5,0xd1,0xd1,0xf8,0xf4,0x3a,0x18,0xf4,0x4f,0x0f,0xcf, - 0xf6,0x4f,0x27,0x93,0x23,0x75,0x8e,0xb8,0x01,0x67,0xc4,0x63,0x5c,0xf3,0xc3,0xd4,0x53,0x6f,0xeb,0xd2, - 0x74,0xc0,0xea,0xd2,0x00,0xa3,0xfd,0xfa,0xc3,0x85,0xfd,0x70,0x41,0x1f,0xde,0xa4,0x9d,0xd6,0xbc,0x1c, - 0xb0,0xee,0x28,0xf4,0x07,0xfd,0xe0,0xa8,0x0e,0xc7,0x20,0xc6,0x96,0x47,0x43,0x7f,0xb4,0x37,0xfe,0xcd, - 0x9f,0x7c,0x72,0x1a,0x04,0x47,0x8b,0x0e,0xa5,0x34,0xb1,0xd7,0xac,0x6a,0x37,0xae,0x52,0x10,0xca,0x04, - 0xf6,0x46,0x14,0xea,0xd1,0x63,0xc4,0x6e,0xd5,0xc1,0x7c,0x26,0x51,0x51,0x07,0xfe,0x61,0x20,0x4a,0xe0, - 0x99,0x8e,0x46,0xfd,0xdb,0xe1,0xe1,0x91,0x7a,0x48,0x0f,0xa7,0xe5,0x27,0x7b,0xe9,0x25,0xec,0xa7,0xe3, - 0xac,0xda,0x3f,0x52,0x2f,0xd3,0x2e,0xad,0x87,0x47,0x3a,0x74,0x3d,0x01,0x4a,0x25,0x31,0x07,0x01,0xa3, - 0x96,0xdf,0x4a,0x5c,0x6b,0x8d,0x87,0x3a,0x6f,0x76,0x6b,0x5e,0xeb,0x3d,0xef,0x61,0xca,0x91,0x8a,0x3c, - 0xdb,0x01,0xaf,0x11,0x54,0xe0,0x79,0xea,0x8b,0x77,0xfa,0xe6,0x65,0x79,0xd6,0xd0,0xc1,0xe9,0xbc,0xe1, - 0x95,0x76,0xc1,0x61,0xb3,0x36,0x94,0x58,0x5e,0x39,0x89,0x04,0x4f,0xaf,0x00,0xbb,0x12,0x2a,0x91,0xc0, - 0xf3,0x59,0xfe,0x3b,0xf0,0x73,0x09,0x17,0x7a,0xed,0xd5,0xa3,0x0e,0x7c,0x5b,0x44,0xdf,0x16,0x1f,0xf0, - 0xdf,0x28,0xd5,0x5b,0x5f,0x7c,0x7b,0x6c,0x7f,0x8d,0x00,0x12,0xf0,0x50,0xca,0x12,0xf6,0x6f,0x0b,0x2b, - 0x70,0x73,0x2f,0xcb,0x3e,0xc2,0x37,0xa1,0xf6,0x78,0xf1,0x2a,0xed,0x70,0xab,0xf9,0x2a,0x1d,0x67,0x93, - 0x3e,0x4b,0xa8,0x8b,0x66,0x2b,0x05,0x56,0xfc,0x69,0x0d,0xa5,0x0b,0x0b,0xa5,0x0b,0x82,0xd2,0xd7,0xed, - 0x71,0x6a,0x8b,0xf0,0x84,0x43,0x61,0x82,0x59,0x0d,0x89,0x5d,0x3f,0xe4,0x57,0x62,0x0e,0xf0,0xa3,0x23, - 0x3f,0xd7,0xe9,0x87,0x55,0xae,0x3f,0x39,0x31,0xa0,0x9d,0xcf,0x22,0x71,0xf5,0x54,0x1d,0x46,0x9a,0x3f, - 0xf2,0xab,0x4e,0x75,0xeb,0xe4,0x04,0xae,0xb3,0x1d,0x57,0xda,0xf9,0xac,0xeb,0xc4,0xd8,0xbe,0x4c,0xd9, - 0xa3,0x18,0x22,0x42,0xbf,0x48,0x75,0x9c,0x4b,0xf6,0x1c,0xeb,0xa9,0x27,0xf4,0x2e,0x04,0x16,0xbf,0x3e, - 0x6e,0x7d,0xfe,0xaa,0xf1,0x4e,0x27,0x89,0xa7,0xbe,0x6f,0x96,0x78,0xe6,0xbe,0x22,0xc3,0xf0,0x4b,0x5c, - 0x00,0x58,0x6f,0x0d,0xda,0x8d,0x19,0x78,0x54,0xa7,0x1a,0x87,0x3c,0xb0,0x19,0xae,0x19,0xc8,0x5a,0xd9, - 0x7c,0xf4,0xc8,0x89,0xd4,0xe9,0xf4,0xeb,0xba,0x95,0xfa,0x65,0x86,0x1b,0xca,0xdd,0x86,0xdd,0xde,0xdd, - 0xde,0x6e,0x33,0x97,0xff,0xbd,0x6d,0xf6,0x61,0x73,0xac,0xd7,0xcd,0x44,0x6e,0x54,0x64,0x34,0x3f,0x60, - 0x96,0x47,0xba,0x5a,0xb0,0xa9,0xb4,0xbb,0x6d,0xbe,0xaf,0x40,0xdc,0xbe,0xf7,0xe3,0x00,0xf2,0x22,0x5f, - 0x72,0x04,0x61,0xed,0x14,0xa1,0xf3,0x40,0xc5,0xbd,0xf9,0x17,0x40,0x4b,0xe7,0xbe,0x8d,0xde,0xb1,0x21, - 0x1e,0x25,0xf0,0xd5,0x66,0x3f,0x38,0x52,0x3f,0x3b,0xe8,0x69,0x27,0xc0,0x83,0x50,0x79,0x8f,0x9c,0xb3, - 0x1e,0xb4,0x5d,0xc2,0x12,0xb1,0x47,0x0d,0xea,0x02,0x2a,0xae,0x4e,0x04,0x0d,0x8e,0x05,0x97,0x8a,0x89, - 0x9d,0x84,0xb4,0x69,0x78,0xa4,0x8a,0x95,0x6b,0x24,0xc6,0x39,0x8d,0xb2,0xa5,0x9c,0xaf,0x2c,0x5a,0x47, - 0x44,0x68,0x6d,0xe4,0xd4,0x19,0x05,0x38,0x80,0x2f,0x21,0x7b,0x55,0xa2,0x8b,0x44,0xf1,0x00,0xfa,0x5a, - 0xf4,0x4d,0x5e,0x20,0x07,0x46,0x46,0x1c,0xbb,0x27,0xdc,0x90,0xea,0xae,0xcc,0xc6,0xf0,0x40,0x8f,0x08, - 0x3f,0xf8,0xeb,0xa0,0xa1,0xd7,0x68,0x22,0x60,0x38,0x3a,0x3c,0xd5,0x30,0xee,0x30,0xc5,0x91,0x28,0xd7, - 0x1d,0x5f,0xcc,0xad,0x79,0xe2,0xe7,0xf4,0x19,0xc3,0xe4,0x5e,0xe6,0x91,0x1b,0x32,0x56,0xeb,0x2d,0x49, - 0x2c,0x96,0xfd,0x81,0x21,0x01,0x0c,0x9a,0xea,0xf7,0xf3,0xa0,0x4e,0x45,0x14,0x96,0x55,0x4a,0x93,0x3c, - 0xd4,0x46,0x07,0xb1,0xd1,0x10,0x9a,0x42,0x43,0x05,0x97,0xc7,0xd4,0xe7,0xad,0x9d,0x63,0xb5,0x27,0xa1, - 0x13,0xe4,0xcd,0x4c,0xae,0x4c,0xb9,0x9a,0x3b,0xde,0xb5,0xd5,0x85,0x38,0x26,0xa6,0xb5,0xbe,0x08,0x46, - 0x3e,0xd7,0x04,0xe9,0x7b,0x39,0x7a,0xb4,0x43,0x36,0x23,0x59,0x5d,0x04,0x61,0xeb,0x8b,0x7f,0x01,0xe9, - 0xf8,0x0c,0xb2,0xd8,0x25,0x35,0x39,0xc7,0xa4,0x26,0x3c,0xa9,0x2b,0x99,0xe1,0x29,0x3c,0xbd,0x70,0x17, - 0xa9,0x2b,0x61,0xe6,0x3b,0x3e,0xa1,0x6d,0x93,0x8f,0xda,0x24,0xb2,0xf8,0x73,0x6e,0x95,0x6d,0x65,0xae, - 0x89,0xf1,0xae,0xdc,0x8e,0x47,0xe1,0x52,0x54,0xf7,0x12,0x63,0x2c,0xa5,0x43,0xd3,0x0b,0x94,0x8a,0xd0, - 0x17,0xb3,0x6a,0xae,0x54,0x54,0x67,0xb6,0xce,0x54,0xa3,0xd6,0xa0,0xe7,0x6d,0x17,0x14,0xa0,0x1c,0x34, - 0x67,0x5f,0x52,0x2b,0xd1,0x92,0x9b,0xb1,0x33,0x27,0x26,0x22,0x03,0x65,0x4d,0x48,0xdc,0x58,0x25,0x5a, - 0xef,0x15,0xdd,0x45,0xdf,0x38,0xd4,0x7c,0xe1,0x6c,0x4d,0x91,0x32,0x3f,0x6a,0xf2,0x08,0x52,0x86,0xd6, - 0xc6,0x25,0xef,0x2b,0x0e,0xc8,0x6a,0x6b,0x5e,0x3a,0x74,0xc9,0x4e,0x8c,0xbd,0x76,0xec,0x0a,0x0b,0x87, - 0x69,0x10,0xfb,0xac,0x71,0x9c,0xe9,0xb9,0xe5,0x2b,0x27,0xe8,0x1b,0x32,0x71,0x50,0x98,0xd9,0x47,0x97, - 0x1a,0x8d,0x73,0xe6,0x9d,0xb5,0xd2,0x6e,0x6c,0x2a,0xe3,0xb0,0xdb,0x71,0x89,0x6d,0x7c,0x64,0x0c,0xbb, - 0x0c,0xdf,0x82,0xaa,0x73,0x7e,0x65,0xab,0xd5,0x26,0xb7,0x12,0xff,0xca,0x71,0x7a,0x2d,0x4b,0xdf,0xb4, - 0x60,0xdb,0xd7,0x9d,0xaa,0x07,0x59,0x04,0x26,0x8d,0xa8,0x1c,0x6c,0x35,0x46,0x7f,0xd7,0xc6,0xc0,0x57, - 0x63,0x1a,0x5a,0x8b,0x6b,0x9d,0x8d,0xde,0xcc,0xa3,0x64,0x57,0xf8,0x96,0x1a,0x88,0xea,0x5a,0xd8,0x99, - 0xc5,0xb4,0x82,0xc2,0xa0,0x0d,0x6e,0xdd,0x09,0x06,0xc1,0xa3,0x26,0xf3,0xa2,0xe7,0x1a,0x64,0x9e,0x4c, - 0x74,0x3d,0x04,0x8e,0x26,0x84,0xf2,0xb5,0x85,0x25,0xf0,0x0b,0x5b,0x29,0xd9,0x6b,0x8a,0x52,0xd7,0x8b, - 0x65,0xb9,0xad,0x62,0x55,0x47,0x1e,0x02,0xb2,0x8f,0xae,0x11,0xe0,0x33,0x63,0x87,0xe6,0xba,0x62,0xf3, - 0x6a,0x5d,0x24,0xfe,0xb9,0x86,0x1c,0xe7,0xde,0xae,0x7f,0x47,0xbd,0xdc,0xc5,0xfd,0x28,0xe5,0x35,0x88, - 0x7d,0x8e,0x96,0x93,0xab,0x66,0x10,0xa3,0x2b,0x3b,0x71,0x28,0xd6,0x38,0x39,0x52,0x01,0x5c,0xf4,0x29, - 0xad,0xcf,0x03,0x74,0x50,0x33,0x45,0x18,0x50,0xed,0xf8,0x6c,0xdf,0x24,0xd7,0x2b,0x9f,0x05,0x36,0x91, - 0x23,0x05,0x07,0xf5,0xe2,0xd4,0x01,0xe2,0x75,0x88,0x1f,0xf6,0xff,0xdf,0xb6,0x7d,0x44,0xc7,0x71,0x0f, - 0xed,0x9a,0x3e,0xd6,0x7d,0xbf,0x6c,0x9e,0x28,0xf5,0x58,0xad,0xcd,0x41,0x41,0x54,0xb6,0x78,0xee,0xa2, - 0x1f,0x86,0xde,0x91,0xbf,0xc0,0x15,0xdd,0x15,0xce,0xc5,0x10,0xd1,0x8e,0xa0,0x1b,0xe4,0xe2,0xb3,0x85, - 0x55,0x45,0xc6,0x11,0xbd,0xd9,0x18,0xc4,0x16,0xd8,0x70,0x45,0xd1,0xbe,0x3e,0xb5,0x6d,0x28,0xda,0xa1, - 0x9e,0xa7,0x60,0xe4,0x58,0xd1,0xf6,0xa3,0x34,0xcc,0xde,0xa7,0x18,0x4c,0x64,0xd3,0xe1,0xa1,0x53,0x00, - 0xd7,0x64,0x95,0x75,0x96,0xe2,0x7c,0x88,0x68,0x51,0xb7,0xbe,0x39,0x89,0x68,0x33,0x14,0x5d,0xdb,0x95, - 0x57,0x07,0x40,0xa7,0x15,0x21,0xf8,0xd5,0x9c,0x90,0x0b,0xc4,0xce,0x08,0x94,0xd9,0xa2,0x8d,0xfe,0xeb, - 0x2d,0x2a,0x69,0xd8,0xa2,0x1c,0x93,0x4c,0x5a,0x71,0x77,0x68,0xa2,0xc3,0xf6,0x22,0x5b,0x60,0xc2,0x55, - 0x41,0xed,0x9b,0xb7,0x50,0x2e,0x1d,0x74,0x96,0x07,0x6a,0xce,0x20,0x5f,0x4a,0x89,0xce,0x45,0xb0,0x9e, - 0x9a,0xa8,0x9c,0x29,0xe3,0xf4,0x02,0x7f,0x59,0xe7,0x05,0x71,0x5f,0x77,0xbc,0x5f,0x06,0xb4,0x0f,0xd3, - 0x86,0xff,0x4c,0xe3,0xe3,0x6a,0x16,0x8c,0xce,0xfd,0x42,0xe6,0x03,0x91,0x89,0xd3,0x4e,0xdf,0x99,0xc7, - 0x96,0xf9,0x23,0xaa,0xcc,0xfa,0xf7,0x64,0xa0,0x2d,0xdc,0xd7,0x94,0x5d,0x8c,0x46,0x12,0x36,0x0c,0x07, - 0x16,0xe7,0x16,0xaf,0x9e,0x04,0x00,0xf2,0xfa,0x9c,0xc9,0x9b,0x20,0xed,0xd0,0x75,0x29,0xba,0x4c,0x89, - 0x6d,0xb0,0x63,0xb5,0xa4,0xd1,0xf2,0xa6,0x4a,0xfc,0x25,0xcf,0xe2,0x3a,0x5a,0xd6,0x53,0xba,0x8e,0xd6, - 0xd6,0x59,0x00,0x25,0xac,0x31,0x67,0x42,0xe0,0xae,0xa2,0xa2,0x26,0x25,0x66,0x8e,0x2d,0xa9,0x6c,0x22, - 0xd4,0x35,0xc7,0x1e,0x65,0xd8,0x5f,0xd3,0xc2,0xae,0x69,0x61,0x85,0x93,0xaa,0x17,0x76,0x1d,0x98,0xb4, - 0xf1,0x7a,0x22,0x75,0x77,0x74,0x40,0x72,0xd8,0xe6,0xb7,0x95,0x9f,0xca,0x11,0x32,0x22,0x04,0xcc,0xb9, - 0x68,0xc6,0x57,0xb4,0x80,0xee,0x5d,0xb9,0xf1,0x23,0x5b,0xd6,0x27,0xc0,0x54,0xd1,0x70,0x89,0x06,0x3a, - 0x56,0x2b,0xfa,0x37,0x8b,0x6a,0x57,0x2d,0xea,0x2a,0x82,0x04,0x40,0x2d,0xe8,0x67,0x36,0x51,0x67,0x56, - 0x75,0x9b,0x3e,0x9d,0x47,0x29,0x3e,0x5d,0xd3,0xcf,0xd9,0x44,0xbd,0x8d,0xf6,0xca,0xe1,0xfc,0x3e,0x9a, - 0x5a,0xdd,0x8f,0xce,0xe8,0x6c,0xf2,0xaf,0x82,0x11,0x8a,0xf7,0xfb,0xf3,0x49,0x08,0xaf,0x65,0x23,0xd4, - 0x72,0x78,0x38,0x9b,0x84,0x3f,0xd2,0x47,0x75,0x4e,0x9b,0xfa,0x1d,0x7e,0x41,0x9c,0x99,0x8c,0x5c,0x6b, - 0xbf,0xbf,0x9a,0x04,0xc8,0xb4,0x50,0xd7,0x9c,0x89,0x7e,0x91,0xc9,0x94,0xe7,0x36,0x0f,0x0f,0xcf,0x24, - 0xd3,0x95,0xce,0x74,0x25,0x99,0xde,0xee,0xd0,0x01,0x99,0xba,0xd2,0xe7,0xae,0x23,0x8a,0xf3,0x17,0x82, - 0x42,0xea,0x96,0x1b,0x95,0x2e,0x74,0xf7,0x16,0xd2,0xbd,0xae,0x4a,0xb9,0x02,0xa9,0xda,0xe9,0x5a,0xdd, - 0x7f,0xbf,0x12,0x67,0x17,0xd3,0xe8,0xa7,0x8a,0xd6,0x67,0xae,0x66,0x30,0x95,0xf7,0x41,0xd0,0x9f,0x73, - 0x0c,0xd3,0xd1,0x74,0xcc,0x0f,0x93,0x0e,0xe7,0x1f,0x75,0x5c,0xc2,0x39,0xd1,0xc2,0x29,0x47,0x21,0xb4, - 0xe8,0x31,0x9f,0x18,0x1e,0xe1,0xe0,0xe0,0x47,0x08,0xb5,0x62,0x4b,0xc1,0xe7,0x44,0xe3,0x9e,0x53,0x15, - 0xc7,0x68,0x6d,0x14,0xd3,0x73,0xae,0xf4,0xf8,0x79,0x5c,0x4b,0xea,0xe7,0x7a,0xa2,0x07,0xb7,0x94,0xc1, - 0x21,0xc5,0x78,0xb4,0xed,0x1a,0xe8,0xd2,0x19,0x68,0x10,0x36,0xeb,0xac,0xc7,0x3b,0x9c,0x3f,0x98,0x41, - 0x89,0x9e,0x86,0x48,0x00,0xd1,0x3f,0x99,0x04,0x12,0x9d,0x51,0x5e,0xf4,0xa6,0x5f,0xa9,0x33,0x6c,0xfc, - 0xd5,0x83,0xb3,0x83,0x83,0x4b,0xff,0x58,0xc9,0xb4,0x6c,0xfd,0x29,0x87,0xcb,0x06,0x50,0x86,0x0c,0xb4, - 0xa0,0xf0,0x6a,0x12,0xaa,0x29,0x0e,0xa5,0xcc,0x38,0xa7,0x2f,0xe8,0x97,0xc9,0xae,0x19,0x06,0x5b,0x83, - 0x25,0x88,0x62,0x80,0xff,0x08,0xf5,0xaf,0xe8,0xdb,0xaa,0x0e,0x83,0x18,0x7e,0xb0,0xda,0x50,0xbe,0xef, - 0x71,0xd4,0x1a,0x3e,0xdb,0x3b,0xf2,0xe9,0x5d,0xa6,0x6e,0xc7,0x0c,0x79,0x59,0x35,0x51,0xc3,0xd6,0x39, - 0xaa,0xce,0x84,0x0b,0x61,0xf4,0x0a,0xc6,0x13,0xa5,0x6c,0x30,0xea,0xc0,0x3c,0x75,0x51,0xd6,0x45,0x93, - 0xec,0x11,0x46,0xa9,0x70,0xf9,0xa3,0x82,0x80,0xa3,0xc6,0xfe,0x7a,0x25,0xfd,0x82,0xfd,0xa9,0xda,0x0e, - 0x9c,0xb7,0x18,0x4f,0x35,0x45,0xcc,0xa6,0x78,0xa1,0xd6,0xda,0xdd,0x07,0xe1,0x82,0xa2,0x19,0x6d,0x28, - 0xca,0x37,0x1b,0x44,0x77,0x07,0xd2,0x53,0x85,0x90,0xf6,0x4a,0x10,0xb2,0xe1,0x5b,0xe4,0xe0,0x72,0xf1, - 0xbe,0x85,0xca,0xae,0x63,0x02,0xea,0xd5,0x84,0xeb,0x19,0x90,0xd7,0xfa,0xa8,0xa7,0xa9,0xeb,0x66,0x60, - 0x0b,0xb1,0x24,0xa4,0xc4,0x0e,0xac,0x1d,0x38,0xfc,0x2b,0xe6,0xd5,0x56,0x3b,0x0d,0x34,0x41,0x30,0x0f, - 0x02,0xe6,0xc4,0x2f,0xe2,0x92,0x09,0x71,0x50,0xdd,0xa5,0xcf,0x89,0xdc,0xaa,0x6d,0xd0,0xc4,0x8d,0x73, - 0x7a,0xa0,0xa3,0xa2,0x48,0x55,0x31,0x53,0x7e,0x75,0xa2,0x0d,0xc2,0xc1,0x07,0x87,0x59,0x17,0x56,0x1d, - 0x07,0x17,0x39,0x4f,0x8b,0xb2,0xe2,0x16,0x09,0xcd,0x1c,0x0f,0xaf,0xee,0xcf,0xcd,0x5a,0x5d,0x19,0x07, - 0x77,0x17,0x9b,0xcd,0xde,0x39,0xf1,0x8b,0xf3,0xf1,0xd5,0x44,0x73,0xa6,0x30,0x4b,0xd7,0xac,0xec,0x45, - 0x74,0xd1,0xb8,0x3f,0x40,0x89,0xd9,0x66,0x73,0xd1,0x6c,0x98,0xb8,0x18,0x6c,0xa4,0x34,0x30,0xb3,0x29, - 0xeb,0x7a,0xe9,0xba,0x5a,0x59,0x40,0x9a,0xb7,0xc6,0x88,0xf7,0x1e,0x12,0x2e,0x0e,0x6e,0x2e,0xd1,0xc9, - 0x95,0x9c,0x2d,0xd2,0xd8,0xde,0x25,0x16,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x3f,0x1a,0x67,0x93,0x02,0x90, - 0x7b,0x1c,0xde,0x8b,0x37,0x86,0x26,0xb0,0xf4,0xbb,0xb9,0xf6,0xda,0x93,0x60,0x31,0xd7,0xea,0xad,0xda, - 0x87,0x90,0xfa,0x0d,0x22,0xcd,0xe7,0xb3,0xf5,0x32,0x29,0xd5,0x23,0x7a,0x06,0x8d,0xf3,0x5c,0x6b,0x7f, - 0x5d,0xd3,0x9c,0x5c,0xdf,0x9f,0xa5,0x35,0x00,0x5f,0x33,0x59,0xb9,0x3f,0x9e,0xa5,0xe3,0xeb,0x09,0xac, - 0xbd,0xe8,0x5c,0x39,0x1e,0xbe,0xbd,0xff,0xa6,0xce,0xf2,0x96,0xc8,0x8b,0x37,0xe3,0xb7,0x13,0x9d,0x87, - 0x56,0xca,0x64,0x17,0xfe,0xc2,0xfd,0xc6,0x07,0xf2,0x43,0xd6,0x1b,0xc1,0xbd,0x9a,0x68,0xcd,0xe8,0x50, - 0x62,0x8f,0x9c,0xe7,0x97,0x2c,0x6c,0x25,0x54,0xdc,0xe1,0xa4,0x50,0x9f,0x96,0x8a,0x0e,0x49,0x6d,0x64, - 0xc1,0xa7,0xb7,0x78,0x89,0x41,0xe8,0x10,0x18,0x67,0x03,0xba,0x60,0xce,0xb9,0x64,0xff,0x21,0x3e,0x10, - 0x1d,0xf2,0xd7,0xf4,0xc4,0x2c,0xc2,0xe6,0xc0,0xe0,0x5f,0xb1,0xef,0x27,0x5e,0x48,0xc6,0xde,0x58,0x80, - 0x40,0x68,0xae,0x95,0xd2,0x41,0xd1,0xd1,0xce,0x8c,0x5b,0x93,0x78,0x6a,0xa6,0x1c,0x94,0xdc,0x09,0x86, - 0x6b,0x7e,0xe2,0x25,0xeb,0x67,0x19,0xea,0xae,0x91,0x0e,0x0b,0x6e,0xf8,0xf8,0xf4,0x73,0xca,0x72,0x2e, - 0xf5,0xdb,0x8d,0x72,0xc6,0x5d,0xc4,0xf7,0x62,0xf8,0x3c,0x82,0x32,0xbf,0xbe,0x8e,0x79,0x64,0x2e,0xa1, - 0xfc,0xe7,0xad,0x28,0x34,0x72,0x4d,0xa3,0x25,0x87,0xea,0xb9,0xd8,0xbf,0x5d,0x08,0x31,0x48,0xc7,0x5f, - 0x43,0x50,0x76,0xc1,0x03,0x94,0x79,0xb8,0x18,0x9c,0x89,0xc0,0xf6,0x5c,0xce,0x83,0x45,0xeb,0x1c,0xbe, - 0x80,0xea,0x2f,0x11,0x2e,0x06,0xff,0x19,0x80,0xbd,0x8e,0x4c,0x1a,0xc1,0x00,0x28,0xa6,0xe1,0xf5,0xb0, - 0x3e,0x17,0xdf,0x10,0x58,0xbc,0xe9,0xe2,0x5d,0xde,0x38,0xbc,0xcb,0x9b,0x89,0x7f,0xcd,0x3d,0xb9,0x16, - 0xc7,0xf7,0xdc,0xd5,0xb7,0x75,0x25,0x0f,0xa9,0x92,0x87,0x1d,0x9c,0xef,0xc3,0x9a,0xf3,0x7d,0xc8,0x9c, - 0xef,0xb5,0x40,0xd2,0xcb,0xe8,0x7a,0x07,0xb7,0xa2,0xfa,0x97,0x03,0xd6,0x11,0xae,0x4d,0x1e,0x5e,0x45, - 0x27,0xc3,0x57,0xf7,0x5f,0x12,0x8b,0x68,0xed,0x55,0x5e,0xc1,0xfd,0x33,0x12,0xc6,0xaf,0x26,0x86,0xf6, - 0xfe,0xb9,0x42,0xff,0xae,0xa9,0x56,0x1d,0xea,0x36,0x01,0x95,0x84,0x73,0x0b,0x2c,0xdf,0xb1,0x3a,0xd6, - 0x07,0x16,0xf1,0x3f,0x70,0x09,0x5c,0xd4,0xd6,0x62,0xb2,0x7e,0x08,0x2b,0x83,0x31,0xf1,0x52,0x3c,0x07, - 0xe9,0x6f,0xf3,0xf9,0x37,0x7a,0xa3,0x85,0x50,0xfb,0x90,0xfd,0x17,0x8e,0x17,0xa9,0x7a,0x97,0xaa,0xb7, - 0xa9,0xda,0x4f,0xd5,0xd3,0x54,0xbd,0xc8,0x46,0x46,0x9a,0xff,0x65,0xa2,0x8c,0x60,0x0d,0xcf,0x02,0x4f, - 0xad,0xeb,0xbf,0x3d,0x89,0xeb,0x25,0x56,0x16,0x17,0xf9,0xf5,0xe8,0x79,0x22,0xd1,0xcd,0x60,0xa0,0xb4, - 0x0d,0x6f,0xb6,0x13,0xe3,0x58,0xf9,0x32,0x85,0x17,0xf3,0x67,0xd9,0xc1,0x81,0xbd,0xe4,0xd8,0x0d,0x2f, - 0x22,0xf7,0xe3,0x54,0xfb,0xf4,0x22,0xce,0x16,0x89,0xe7,0x9a,0xa7,0x8a,0x26,0x7e,0x5d,0x98,0xa5,0xf4, - 0x5a,0xb8,0x36,0x64,0x55,0xdf,0x2b,0x1d,0x15,0xf1,0x07,0xf4,0x41,0xeb,0x9b,0x19,0xd7,0xe9,0x3f,0xa6, - 0x70,0xaa,0x86,0xd5,0x49,0x66,0xad,0x0b,0x51,0x08,0x91,0xcc,0xcd,0xbc,0x0d,0xeb,0x28,0x3c,0xc9,0xc1, - 0xc1,0x1e,0xff,0x12,0x23,0xa6,0xd5,0x2c,0x47,0xdf,0xc2,0xd1,0x91,0x3d,0xcc,0x1b,0x3d,0xfc,0xd1,0x61, - 0x29,0xc4,0xa8,0x6b,0xa6,0x45,0x49,0xdb,0x20,0x7c,0x91,0xc8,0xb3,0xeb,0xed,0xc9,0xd6,0x4a,0xf8,0x02, - 0x81,0xd7,0x8c,0xfd,0x89,0x51,0xfa,0xfc,0x2a,0x81,0x0c,0xcc,0x33,0x9a,0x23,0xb6,0x77,0x74,0xee,0xa6, - 0xbe,0xc4,0x8e,0x0b,0x02,0xed,0xc9,0xeb,0x99,0x89,0x1c,0x1b,0x25,0x75,0x14,0x59,0xe5,0x3c,0xb3,0x5f, - 0x47,0x56,0x2d,0xde,0x9d,0x77,0x33,0xdd,0xcf,0x92,0x40,0x7d,0x91,0xdd,0x96,0x09,0x63,0x13,0xa9,0x2c, - 0xa1,0x48,0x78,0xe9,0xff,0x9e,0x75,0xe4,0xdf,0x9b,0x93,0x6f,0x3e,0x9e,0x41,0x97,0xff,0x19,0xfb,0x02, - 0xd7,0x8b,0x04,0x3c,0x84,0x3b,0xe1,0xf6,0x7c,0xed,0xdc,0x55,0x73,0xd0,0xf6,0xe6,0xda,0x04,0x37,0x3b, - 0x73,0x39,0x34,0x77,0x96,0x76,0x46,0x45,0x9b,0xfa,0xc3,0xf3,0x3b,0x4c,0xdb,0x31,0x00,0x6b,0xd5,0x88, - 0x3d,0xa8,0x96,0xb3,0x13,0xcb,0xad,0xcc,0xb2,0x51,0xaf,0x18,0x25,0x62,0x3e,0x7d,0x6b,0xf8,0xc0,0xc7, - 0xe8,0x20,0x00,0x3e,0xd4,0x39,0xf9,0x72,0x9c,0x68,0x9c,0x9f,0xf0,0x72,0x70,0x40,0xdf,0xf5,0x07,0x60, - 0x7a,0x03,0xb1,0x7a,0x15,0xd8,0x53,0xe3,0x4f,0x04,0xaf,0x12,0xd8,0xf3,0xc7,0x54,0x61,0x67,0x85,0xa2, - 0x16,0xdb,0x9e,0x1f,0xed,0x4b,0xc0,0x54,0x86,0x58,0x80,0x5f,0x40,0x7c,0x11,0x68,0xd5,0x12,0x71,0xa1, - 0xe2,0x08,0xd4,0x39,0x40,0xfd,0x19,0xcd,0x4c,0x91,0x2e,0xe0,0x09,0xf6,0x71,0x5a,0x42,0x39,0x32,0xf2, - 0x32,0x5a,0x07,0xad,0x73,0xc7,0x77,0xaa,0x33,0xf9,0x80,0x70,0xf1,0xad,0x24,0x38,0x7f,0x48,0x47,0x7e, - 0x56,0x6f,0x7b,0x1c,0x71,0xaf,0xc0,0x17,0xb8,0xd6,0x43,0xcd,0x42,0x51,0xbe,0x85,0x77,0xfe,0x56,0x62, - 0x31,0xca,0x43,0x69,0xb9,0x53,0xbf,0x60,0x67,0x84,0xc3,0xa2,0x35,0x93,0xfe,0x07,0x07,0xbc,0xd3,0xd1, - 0x62,0xf4,0xa1,0xae,0x76,0x4d,0x10,0xad,0xe5,0xf3,0x0f,0x14,0xd3,0x03,0xe9,0x1c,0x66,0x57,0x95,0x7a, - 0xe4,0x50,0xad,0xc8,0x3a,0x16,0x57,0x33,0x04,0xbc,0x1b,0x3f,0xdc,0x3f,0x86,0x9a,0x6f,0x08,0x6a,0xd8, - 0x30,0x4c,0x5b,0x77,0x41,0xd0,0x1c,0x17,0xe1,0x17,0x79,0x0e,0x67,0xb8,0x6a,0x5a,0x96,0xf6,0x19,0xc0, - 0x65,0xb2,0x01,0x91,0x98,0x67,0xe7,0x76,0x56,0xa7,0x38,0x77,0xab,0x6e,0x1e,0x73,0xaf,0xea,0xe6,0x6a, - 0xa5,0xed,0x5c,0xdc,0xba,0x79,0x3b,0xd2,0xa5,0xbb,0x1d,0x49,0xb7,0xe6,0x6d,0x35,0x38,0x5b,0x17,0x7c, - 0x2f,0x18,0x8e,0xc5,0xae,0x4d,0xe9,0x74,0x51,0xec,0x98,0x6c,0xd5,0xef,0x66,0x82,0x1a,0x97,0xb5,0x62, - 0x2d,0xf7,0x4d,0xda,0x30,0xa1,0x6b,0xdb,0x82,0xb5,0x8d,0xc7,0x3b,0x6c,0xc2,0xb4,0xe7,0x2c,0x16,0xac, - 0xca,0x2d,0x7d,0x77,0x70,0x3f,0x46,0xe1,0xbf,0x40,0x42,0x48,0x60,0xeb,0xc6,0x6c,0xd5,0x26,0x62,0x58, - 0x1b,0xa8,0x1d,0xe8,0xf8,0xad,0x6e,0x1d,0x22,0xf8,0x8f,0x0c,0x47,0x38,0x0c,0x6a,0xf7,0x95,0xce,0xa5, - 0x99,0xa5,0xbb,0x5d,0xdb,0xd1,0x5a,0x20,0xa0,0xed,0xc7,0x7e,0x4e,0xe0,0x99,0x87,0xbd,0x0d,0xd4,0x9f, - 0x8c,0x97,0x55,0xa6,0xd0,0x68,0xee,0xcc,0x97,0x9f,0x80,0xa2,0x72,0x13,0x01,0xd6,0x3b,0x3b,0xab,0x9b, - 0x3b,0xf4,0xfa,0xd6,0xad,0x5c,0xdf,0x3b,0xf4,0x86,0x31,0x8b,0xe1,0x44,0xc9,0x96,0x9f,0x47,0xb1,0x13, - 0xe0,0xb4,0xec,0xe3,0x80,0xc0,0xa3,0x17,0x96,0x7d,0x96,0xe5,0x86,0x85,0x1f,0x8b,0xfc,0x03,0x17,0xd0, - 0xfa,0xee,0x43,0x52,0xac,0x41,0x51,0x19,0x8c,0x38,0x85,0xcb,0xe0,0x97,0xff,0x4a,0xd8,0x8c,0xc8,0x97, - 0x0b,0x44,0xd8,0x57,0x0e,0xb4,0xa3,0x19,0x9a,0xda,0xba,0x8b,0xd1,0x8f,0x89,0xb6,0x2c,0x5a,0x37,0x8c, - 0xdd,0x97,0x98,0x84,0xb5,0x90,0xa6,0x32,0x8b,0x75,0xd8,0x79,0x5c,0xa7,0xb6,0x92,0x6e,0x43,0xf8,0x1e, - 0x70,0x8b,0x20,0x4f,0x40,0x17,0x1f,0x17,0x71,0x03,0xeb,0x04,0x8a,0x08,0x93,0xa5,0xc6,0x51,0xfe,0x45, - 0x14,0xab,0xcb,0x68,0xa9,0x2e,0x31,0x04,0xc2,0x68,0x17,0xf8,0xdd,0x6c,0x2e,0x31,0x17,0xfc,0x2a,0xf4, - 0xdd,0xde,0x2f,0x2c,0x4d,0xf0,0xf7,0x96,0x5d,0x3e,0x5f,0xbb,0x52,0x8d,0x4b,0xcf,0x9a,0x05,0x17,0xc0, - 0x9a,0x47,0xcb,0x36,0x90,0x88,0xc1,0xc8,0x94,0xc7,0xee,0xe5,0xeb,0xea,0x30,0x65,0xcd,0xfd,0xb4,0xe9, - 0xbc,0x41,0x43,0x01,0xf0,0xe6,0xb7,0xfe,0x5c,0x79,0xf1,0x9c,0xa0,0xfa,0xa9,0xa8,0x57,0x38,0xa8,0x30, - 0x71,0x72,0x22,0x5e,0x7a,0xd3,0x8f,0xe5,0x36,0x50,0x06,0x7c,0xd0,0x58,0x9a,0x1d,0xe6,0x62,0x0a,0x20, - 0x02,0x8f,0x5f,0xfc,0x5a,0x58,0xb5,0x16,0x81,0xa9,0x6a,0x78,0x14,0x5e,0xc1,0x07,0xfb,0xb7,0x90,0xc6, - 0x70,0xf3,0x5f,0x8a,0xc6,0xc8,0x2c,0x50,0x9c,0x26,0x18,0x0b,0xa3,0x87,0x41,0x9a,0x4e,0x9f,0x43,0x23, - 0x8c,0xd0,0x62,0xbb,0xab,0xb4,0x64,0xab,0xa8,0xda,0xd6,0x64,0x73,0x2e,0x4c,0x8b,0xba,0x24,0xf4,0xf9, - 0xcf,0x14,0x93,0x02,0x78,0xd4,0x78,0x83,0x2f,0xf4,0x1d,0x04,0x03,0x0c,0x1b,0x0c,0xc5,0xa4,0xaf,0xf7, - 0x4f,0xe6,0x62,0xc5,0x18,0xf3,0x3b,0xc2,0x2b,0xb5,0x42,0x45,0xf8,0x7b,0xaa,0xea,0xb7,0xaf,0xa1,0x1c, - 0x1c,0xde,0x08,0x92,0xf9,0x67,0xda,0x85,0x58,0x5a,0x96,0xed,0x8c,0x1f,0x5c,0x23,0x11,0x59,0x3a,0x09, - 0x94,0xbb,0x8a,0x33,0x04,0xc1,0xed,0x76,0x87,0xc4,0x85,0x56,0x45,0x72,0x65,0x1d,0x17,0x8a,0x91,0xa8, - 0x11,0x3e,0xa7,0x5d,0x68,0x8b,0x3d,0xaa,0xe6,0xcd,0x9c,0xe0,0xb3,0xe3,0x7a,0xd7,0x94,0xc4,0x16,0x95, - 0xf7,0x2d,0x57,0x5e,0x1a,0xd1,0xe3,0x34,0x4a,0xc7,0xe5,0x64,0x38,0x95,0xf8,0xd1,0xe8,0xc5,0x5e,0x34, - 0x15,0xe1,0x3b,0x38,0x03,0xbd,0x93,0xa7,0xcd,0x9d,0x4c,0xc8,0xe3,0x0a,0x37,0x22,0x1e,0x60,0x3b,0xb7, - 0xd6,0xa2,0xd9,0x98,0xf3,0x4d,0xa2,0xa9,0xa2,0x12,0x7a,0x3b,0x4f,0xbb,0xb7,0x73,0x1c,0x40,0xee,0xe1, - 0x78,0x13,0x5f,0xa3,0xc3,0x4b,0xfc,0x99,0x53,0x57,0xe7,0xb5,0x04,0x6c,0x6e,0xba,0xba,0x8a,0x8a,0xf1, - 0x7c,0x32,0x5c,0xed,0xec,0x83,0x58,0xe9,0x34,0xa2,0x59,0xa3,0x15,0x93,0xfb,0x8b,0xa4,0xfa,0x22,0x5f, - 0xb3,0x98,0xed,0xd1,0x32,0x25,0x00,0xfb,0x81,0xe6,0x1a,0x7e,0xd8,0xc7,0x2b,0xee,0xe2,0x68,0x2d,0xbd, - 0x5e,0x05,0xe1,0xd2,0x3c,0x6d,0xb5,0x05,0xee,0x8a,0xb0,0xb3,0x2f,0xbe,0x00,0x88,0xdd,0xd7,0xd1,0xc9, - 0x98,0x77,0x9a,0x45,0x4b,0xeb,0xaa,0xc4,0xe4,0xc8,0xe9,0xf4,0x77,0xbd,0x73,0xec,0xd8,0x5f,0x77,0x7b, - 0x1a,0xb0,0x6d,0x41,0x8b,0x03,0xd8,0xa5,0xe1,0xa8,0xc3,0x7c,0x34,0x34,0xd5,0xec,0x16,0x8b,0x66,0x17, - 0x50,0x54,0x62,0xce,0x1e,0x0d,0xf2,0xd6,0x3f,0x3f,0x1b,0x78,0x79,0x57,0x88,0xf8,0x7c,0xc8,0xca,0x96, - 0x43,0x63,0x62,0xa1,0x2d,0x99,0x2e,0xe2,0xf2,0x19,0xa5,0xfb,0x95,0x36,0xd0,0x57,0x89,0x90,0xcb,0x46, - 0xc5,0xf0,0x1b,0x66,0x13,0xcc,0xdb,0xef,0x8d,0xb7,0x7f,0x1a,0x87,0xff,0x70,0xde,0xb1,0x24,0x54,0x69, - 0x19,0x3c,0xe8,0xe6,0x0f,0xf2,0xf9,0xbc,0x4c,0xaa,0x6f,0x92,0x74,0x71,0x51,0x39,0xa5,0xda,0x4a,0x8b, - 0xb2,0x7e,0x3c,0xc7,0xb5,0x0b,0x31,0xf4,0x04,0xb6,0x95,0x4c,0x3b,0x0d,0xdf,0x82,0x78,0x83,0xf3,0xb3, - 0x81,0xd5,0xfb,0x89,0x8a,0x81,0xa3,0x20,0xa5,0x53,0x6a,0xc0,0x78,0xac,0x89,0x09,0x0e,0x3a,0xbd,0xcb, - 0xe5,0x7c,0x95,0xc2,0x13,0x28,0x4f,0x57,0x1d,0x71,0xb0,0x07,0x91,0xcf,0x0d,0xd1,0xc7,0x7b,0x47,0xb6, - 0x99,0x7d,0x1d,0xb8,0x53,0xa2,0x06,0x99,0x78,0x5d,0x01,0x7b,0xd1,0x15,0xc0,0xd8,0xa9,0x98,0x75,0x1e, - 0x4c,0xdd,0x0c,0x27,0xfb,0xd2,0x7d,0x36,0x53,0x07,0xe3,0xa4,0x5d,0xb4,0x85,0x37,0x7a,0xf2,0x5b,0x7c, - 0x39,0x0e,0xf5,0x2f,0x53,0x2b,0x12,0xac,0x4f,0x75,0x9d,0xbd,0x89,0xe4,0x75,0xa2,0x31,0x4a,0x1d,0x4c, - 0x71,0x61,0xc6,0x52,0x9b,0x80,0xd6,0xda,0x39,0xe9,0x19,0x30,0x70,0x32,0x76,0xa5,0x76,0xae,0xce,0x59, - 0x22,0xba,0x50,0x81,0x7a,0xa7,0x17,0x20,0xeb,0xa4,0x9a,0xad,0x53,0x8c,0x86,0x72,0x44,0x66,0x38,0xbb, - 0x47,0x89,0x9f,0x35,0x1c,0x12,0x71,0xd6,0x86,0xc6,0x95,0x81,0x23,0x3d,0x98,0x88,0xc5,0x62,0x76,0x65, - 0xb7,0xb0,0x12,0x7f,0xcd,0x17,0xf6,0xf3,0x74,0x31,0x70,0x22,0xe3,0x46,0xbf,0x16,0xaa,0xfe,0xd0,0x88, - 0xc9,0x1b,0x95,0x69,0xe7,0x27,0x08,0xd5,0xa2,0xaf,0xdd,0x62,0xad,0x98,0xbc,0xd1,0x0f,0x55,0xa3,0x60, - 0x33,0x88,0xef,0x4e,0x8c,0x94,0x17,0x35,0xc5,0x86,0x95,0x2a,0x61,0xca,0xd0,0x5c,0xbb,0xa8,0x1d,0xde, - 0x56,0xa3,0x5a,0xa8,0xe8,0x9b,0xb5,0xe4,0x17,0x6d,0x7d,0xfc,0x21,0x4b,0x04,0xb6,0xa6,0xd6,0xd8,0xf8, - 0xd0,0x83,0xa9,0xf6,0x88,0x8b,0xb3,0x03,0xf3,0xda,0xe2,0xd7,0x2a,0xfb,0x41,0xb2,0xdd,0x1c,0x04,0x7c, - 0x21,0xdf,0x9a,0xd5,0x18,0x49,0x48,0x9d,0x47,0xbb,0xa5,0xf5,0x96,0x48,0xdc,0x80,0x4d,0x5b,0x75,0x05, - 0xc3,0x4a,0xeb,0x42,0xd1,0x52,0x5d,0xc4,0x0c,0x07,0xcd,0x6f,0x8e,0x11,0xfb,0x77,0x29,0x5b,0x4d,0x3a, - 0xae,0x4b,0x0c,0xc2,0x84,0x52,0xe1,0xcf,0x69,0xb8,0x68,0x7e,0x16,0x57,0x74,0xdd,0x91,0xb2,0x76,0x15, - 0xe5,0xe1,0xbd,0x27,0x71,0x7d,0x83,0xcb,0xe1,0xcd,0x3c,0x59,0x2b,0x2d,0xca,0x0a,0xf1,0xfd,0xd2,0x0c, - 0x83,0x5d,0x9b,0xb8,0x1b,0x0f,0x83,0x0d,0x0e,0x52,0x7b,0x72,0xaa,0x9d,0x8e,0xf8,0x62,0xba,0xb1,0xb0, - 0xfa,0x43,0x0a,0x11,0x7e,0x95,0xb6,0x58,0x73,0x9c,0xc2,0xec,0x7a,0xe0,0xae,0x9a,0x1e,0xb8,0x8d,0x43, - 0x61,0xa8,0x41,0xd1,0x54,0x7c,0x81,0xe5,0x37,0xce,0xef,0xa1,0xcf,0xff,0xba,0xf6,0x48,0xe0,0x3b,0x7d, - 0x7a,0x0a,0xa5,0x10,0x09,0x83,0x7d,0x70,0xf0,0x6d,0x86,0x7f,0x03,0xb8,0xd1,0x02,0xdd,0x06,0x55,0xe6, - 0xd7,0xb0,0xcb,0x38,0x96,0x8d,0xf9,0x6d,0xaa,0xbe,0x86,0x32,0xe5,0xcd,0xe9,0x8d,0xef,0x8f,0xc2,0xc1, - 0xe6,0x34,0x0b,0xfa,0xa3,0xe0,0x74,0x7b,0xba,0x3d,0x5a,0xa8,0x7f,0x40,0xfb,0xfd,0x70,0xf0,0x49,0x7f, - 0xf4,0xdb,0xfe,0xcd,0xd6,0x0f,0x36,0xe3,0xd3,0xc9,0xe9,0xd1,0xe9,0xe9,0x84,0xbe,0xfd,0xda,0xad,0xc2, - 0xce,0x47,0x88,0xd1,0xde,0xfe,0x47,0xaa,0xbc,0xd3,0xd3,0xfd,0x03,0x8f,0xcd,0x97,0xa1,0x68,0xbe,0xfb, - 0xc5,0x9d,0x5d,0xf1,0x97,0xe2,0x27,0x7d,0x4f,0x77,0x46,0x7a,0xe3,0xf5,0x33,0xe5,0x2d,0x20,0x09,0x54, - 0xbf,0xc0,0xcc,0x8f,0xc5,0xfb,0xf0,0x69,0x1a,0x8e,0x3d,0x47,0xee,0xef,0x4d,0x94,0x45,0xd9,0x2d,0x33, - 0x0f,0x80,0x08,0x5c,0x2b,0x16,0x99,0x46,0x91,0xa9,0xc8,0x6b,0xc4,0xe0,0x76,0x28,0x82,0x2d,0xa7,0xaa, - 0xe8,0xdb,0x97,0xcf,0xbf,0xa7,0x04,0x00,0x36,0x62,0x38,0x66,0xc6,0x8d,0x79,0x54,0x38,0x05,0xe1,0x28, - 0x17,0xa2,0x14,0x28,0xc5,0x20,0xe1,0x8b,0x94,0x09,0x8e,0xa8,0xc0,0xf2,0x27,0x19,0xdc,0xb3,0x76,0x70, - 0x9f,0x9e,0xe7,0xa8,0xf6,0xd7,0x4d,0xe2,0xb2,0xac,0x1f,0xb9,0xe3,0x09,0xbd,0x7e,0x23,0x47,0xdf,0x53, - 0xb0,0xd2,0x6c,0xb4,0xa5,0x4b,0x4d,0x6d,0x7e,0xf7,0xa3,0x14,0x48,0x88,0x2e,0xfe,0xf7,0xee,0x69,0xe3, - 0x2b,0x92,0x3f,0x3e,0x6d,0x8c,0xfe,0x5b,0xd3,0xc6,0x55,0xb5,0xa7,0xed,0x4d,0x8a,0x99,0x6b,0x4e,0x9d, - 0x14,0x76,0xa6,0x8e,0x13,0xfe,0xec,0xd4,0x71,0xb3,0x8d,0xa9,0xe3,0x14,0x67,0xea,0xf8,0xdd,0x4c,0x9d, - 0xdb,0x96,0x2d,0x85,0xfc,0xbe,0x14,0xa8,0xbf,0xf6,0x61,0x75,0x20,0x93,0x57,0xe5,0x7c,0xd9,0x04,0xcb, - 0x3f,0xb6,0x02,0x85,0x39,0x65,0xbe,0xd4,0x56,0x8d,0x62,0xba,0xa7,0xad,0x31,0xc5,0xc2,0x30,0x2d,0x19, - 0x33,0xe3,0xea,0x89,0x86,0xe2,0xd8,0x8b,0x36,0x4c,0x1f,0xc5,0x40,0xf2,0xfa,0x1c,0x6e,0x87,0x92,0x5c, - 0x6c,0xa6,0xb5,0x85,0x23,0xcc,0x3f,0x2b,0x98,0x76,0x1a,0x31,0xe7,0x8a,0x4d,0x1c,0x61,0x1e,0xc8,0x86, - 0x8e,0x62,0xfa,0x58,0xe8,0x9a,0xb0,0xb9,0xa4,0x87,0x9d,0x26,0xa8,0xd2,0xe5,0xda,0xd8,0x90,0x2d,0x26, - 0x3b,0x0d,0x2b,0xd1,0x6c,0xd3,0xb2,0x91,0x6d,0x51,0xb5,0x21,0xaa,0xb1,0xa4,0xdc,0xb1,0x48,0xd5,0x36, - 0xae,0x6c,0x62,0xd9,0x61,0xe1,0x8a,0xbe,0x1a,0xfb,0x57,0x69,0x87,0x26,0x8b,0xed,0x6a,0xb5,0x0d,0x26, - 0xee,0x32,0x8c,0xf1,0x24,0x4f,0x53,0xdb,0x1c,0x53,0xa6,0x4d,0xcc,0x53,0xf5,0xe4,0x89,0x21,0x85,0x31, - 0xb5,0xac,0xad,0x40,0x5b,0x53,0xc4,0x96,0xb9,0x34,0x51,0x3c,0xd7,0x50,0x03,0xcc,0xa3,0xa3,0xdf,0x4e, - 0xcb,0x4f,0xfc,0x31,0xfd,0xf5,0xee,0xdc,0x7f,0x70,0x7a,0x14,0x4d,0xfa,0x01,0xe1,0x1a,0x24,0x46,0x01, - 0xfe,0x8e,0x42,0x8f,0x3e,0x7b,0x93,0x4f,0x08,0xed,0x6c,0xee,0xd0,0xe3,0x1d,0x7a,0xbc,0xd3,0xdf,0xe8, - 0x32,0xd1,0xfd,0x07,0xff,0x41,0x45,0x82,0x60,0x74,0xa4,0xd2,0x3c,0xf2,0xc6,0xf1,0xe1,0xef,0x0f,0x0f, - 0x7f,0x3d,0x9b,0x8c,0x4f,0x4f,0xaf,0x4f,0x4f,0x0f,0x4f,0x4f,0x07,0x93,0x4f,0x3c,0x95,0xd3,0x27,0xe0, - 0x30,0xaf,0x9f,0xe6,0x7d,0xc2,0x74,0x61,0x30,0x92,0xc7,0xc0,0x53,0x71,0x1e,0x39,0xc8,0xce,0xfb,0xed, - 0xbe,0xd7,0xcf,0x73,0xe2,0xd0,0x4c,0xe7,0x4e,0x8f,0x46,0xc1,0x83,0x23,0x5a,0x97,0x56,0xb6,0xd3,0xd3, - 0x23,0xe4,0xec,0x7b,0xe3,0xdf,0x1e,0x4c,0x3e,0x79,0x40,0xe3,0x59,0xa3,0xc8,0xfd,0xbd,0xc7,0xcf,0x1f, - 0xbd,0xfa,0xe5,0xc5,0x97,0x3d,0xa4,0xf7,0x1f,0x1c,0xa5,0x6a,0x29,0xe9,0xb0,0xe0,0x99,0xcb,0xe3,0xe9, - 0xf8,0x48,0xad,0x72,0xdc,0x1d,0x7b,0x6f,0x3d,0x8b,0x85,0x8f,0xde,0xfa,0x03,0x1a,0xc8,0x42,0x35,0xb7, - 0x3c,0x65,0xf4,0xc0,0xdc,0x27,0xfa,0xea,0xe5,0x22,0x57,0x57,0x39,0xb1,0xd2,0x6a,0x91,0xab,0x77,0xb9, - 0x3a,0xcb,0x09,0x88,0xd4,0x75,0xae,0xde,0xe6,0x6a,0x3f,0x57,0x6f,0x72,0xf5,0x28,0x57,0x0f,0x19,0x04, - 0xb5,0xfd,0xae,0x36,0x8c,0x36,0xb7,0x1e,0x7c,0x08,0xbe,0xcc,0x71,0x73,0xfc,0x8a,0xfe,0x7a,0x07,0xcb, - 0x6a,0xe8,0x85,0xde,0x7d,0xda,0x94,0x07,0x0b,0x7e,0x7c,0x80,0x47,0xc0,0x27,0xbd,0xdc,0xf1,0xee,0xd0, - 0x4b,0x7c,0xb9,0xc2,0x87,0x03,0x7c,0xf8,0xcb,0xc9,0x31,0x9e,0x4f,0x33,0x7e,0xf9,0x9c,0x9f,0x2b,0x6f, - 0xab,0x9e,0xd3,0xd8,0x0e,0x68,0x92,0x89,0x01,0x5e,0x54,0x1b,0x14,0xdf,0x50,0xb1,0x60,0x48,0x03,0x7a, - 0xda,0xf9,0x69,0x43,0x35,0x6d,0xfe,0xf2,0x39,0xe7,0x78,0xcd,0x1d,0x86,0xe6,0x43,0xb3,0x9f,0x5f,0xe6, - 0xdd,0xa4,0x05,0x9d,0xc1,0xaf,0x73,0xf1,0xa1,0x70,0xca,0x72,0x96,0x04,0x9e,0x8b,0xd4,0x0b,0xcc,0xef, - 0xbf,0x6d,0x7e,0xbb,0x3a,0xcc,0xb3,0xf0,0x48,0x3d,0xc1,0xeb,0xd5,0xe1,0x06,0x49,0xf4,0xfa,0x98,0x5e, - 0xfd,0xc1,0x27,0x74,0xa0,0x96,0x7d,0xea,0x4d,0x9a,0x6d,0xf2,0x39,0x3f,0x0f,0x3e,0x09,0x8e,0xd4,0x57, - 0xf4,0x55,0x11,0x5c,0x29,0x3a,0x6e,0x27,0x04,0x65,0x94,0xc3,0x7d,0x0d,0x46,0xfb,0x47,0xea,0x7b,0x86, - 0x0a,0x7f,0x73,0x1a,0xec,0x53,0xa7,0x9f,0xe5,0x6c,0x1e,0xf6,0x09,0xbd,0xa8,0x1f,0xf0,0x25,0x44,0xcb, - 0x2c,0x7a,0x3e,0x52,0x5f,0x50,0xc2,0xe9,0x60,0xfc,0xdb,0x60,0xd2,0xa7,0xac,0x3f,0xe7,0x9d,0xc6,0x3b, - 0xfe,0xb7,0x69,0xf4,0x6d,0xfa,0x01,0x43,0xa5,0xa0,0xd6,0x86,0x88,0x2a,0xf5,0x6d,0xea,0x1a,0x27,0xd2, - 0x21,0xfc,0x23,0x5a,0x7e,0x7b,0xb9,0xcc,0xca,0xf0,0xfb,0x97,0xa7,0xb3,0xfe,0x91,0xfa,0x09,0x29,0xfc, - 0x4c,0xfd,0xf8,0x26,0x8f,0xc6,0xbf,0xa4,0x74,0xe6,0xa8,0x1b,0x9a,0xde,0x57,0xef,0x39,0x5b,0x44,0x96, - 0x64,0xbc,0x4a,0xc8,0xd5,0x90,0x61,0x61,0xf8,0x72,0xff,0x59,0xbc,0x62,0x91,0xec,0xd8,0xbb,0x3a,0xe4, - 0xcb,0x14,0x6f,0x02,0xe9,0x2c,0x5e,0x79,0xd0,0x20,0x08,0xbd,0xc9,0x66,0x43,0x29,0xfa,0xd9,0xa8,0x86, - 0xea,0xd3,0x86,0x13,0xe1,0xb9,0x4b,0x4e,0xae,0xab,0xc3,0x74,0x2e,0xcb,0x9c,0x47,0xe9,0xc8,0xa3,0xba, - 0x68,0x57,0x62,0x53,0x86,0xc4,0x22,0xc6,0x91,0xd0,0xe4,0x26,0x2b,0xae,0x73,0xb5,0xdd,0x72,0x23,0xcd, - 0xd6,0x31,0x8d,0x7e,0x61,0xfb,0x91,0x7f,0x40,0x2b,0x45,0x25,0x09,0x64,0x59,0xdc,0xa0,0x12,0xd7,0x19, - 0xe7,0xf9,0x5b,0x6a,0xfb,0x6b,0xa4,0x13,0xdb,0x34,0x05,0x0d,0x3b,0x25,0x04,0xad,0xc9,0xbd,0x41,0x3a, - 0x27,0x1c,0xe1,0xf5,0x0b,0x6a,0x9f,0x86,0x7f,0xc7,0x14,0xb9,0x43,0x9b,0x5c,0xfd,0x8a,0x42,0x37,0xc9, - 0xdb,0x55,0x88,0x7c,0x82,0xbf,0xc3,0xa9,0xde,0x8f,0x6b,0xdd,0x2e,0x75,0x6a,0x8d,0x4e,0xd1,0xec,0x4a, - 0x87,0x12,0x4e,0xd0,0x5d,0x28,0xe2,0x59,0x9a,0x4b,0xfb,0x6b,0xb4,0x5f,0x57,0xe9,0xb6,0xca,0xb9,0xb8, - 0x49,0x69,0x63,0xad,0xdb,0x58,0xea,0x36,0x8c,0xcf,0xa2,0xc4,0x5f,0xb6,0x9b,0xa2,0x04,0x99,0x74,0x18, - 0x3f,0x7c,0x8d,0xf7,0x46,0x2b,0xa9,0xae,0x71,0x09,0xf7,0xf8,0xa3,0xe9,0x00,0x53,0x87,0x50,0x74,0xa0, - 0x74,0xe4,0x8d,0x26,0x00,0x4e,0xa8,0xc1,0xd9,0x4d,0xd4,0xef,0x84,0x19,0xa8,0x18,0x71,0x0c,0x00,0x3b, - 0xc8,0xef,0xcd,0x0d,0xf7,0x37,0xb9,0xaa,0x59,0x89,0x50,0x5f,0xaa,0x7d,0xe8,0x1a,0xcd,0xbd,0x43,0xcd, - 0x05,0xb6,0xd8,0xbb,0x9f,0x01,0x2b,0xbe,0x7b,0x15,0xf7,0x86,0x96,0x17,0xb1,0x32,0xf4,0x44,0x2b,0x73, - 0x29,0x1d,0x5a,0xb7,0xbe,0xbf,0xcc,0x83,0xbd,0xee,0x96,0xef,0xe0,0x67,0x7f,0xdf,0x78,0xe0,0xf8,0x29, - 0x5e,0xf6,0xa2,0x5e,0x2b,0xb2,0xba,0xbe,0x52,0x90,0x4b,0xcc,0x7d,0x76,0x20,0xab,0x23,0x36,0xda,0x0b, - 0x4d,0x5b,0x79,0x5e,0x9b,0xc7,0x0f,0x4c,0xa5,0xdb,0x00,0x77,0xa0,0xbe,0x9b,0x07,0xad,0x5e,0x71,0x5b, - 0xde,0x99,0xb8,0x7b,0x81,0x4a,0x50,0xde,0x1b,0x51,0x31,0x49,0xe8,0x85,0xf4,0xa8,0xaf,0xde,0xa4,0xc2, - 0x3b,0x7d,0x9f,0x63,0x30,0x88,0x1d,0xfd,0xc8,0x3b,0xcb,0x7c,0xfa,0x8e,0x3d,0x40,0x3f,0x10,0x12,0x11, - 0x08,0x78,0xc3,0xcc,0xbd,0xd1,0x84,0x02,0x7d,0xdf,0xeb,0x79,0xfd,0x18,0xd6,0xc6,0x5e,0xb3,0xef,0xe6, - 0x52,0x95,0x1a,0x6d,0x4e,0x40,0xd8,0x7c,0x27,0x7c,0xe9,0x05,0x96,0x2b,0x62,0xb3,0x9d,0xda,0x26,0xb4, - 0xc6,0x03,0x39,0x61,0x58,0xbb,0x7d,0xe8,0x3d,0xbe,0x6d,0xca,0x9d,0x41,0xd0,0x12,0xcb,0x7e,0x97,0x39, - 0x08,0x36,0x1b,0x0f,0xed,0x60,0x4f,0x6b,0x3c,0x50,0xac,0x93,0xc3,0xfa,0x23,0x5e,0x3d,0xda,0xd6,0xf2, - 0x71,0x1e,0x63,0x57,0xd7,0x5f,0xf9,0xdd,0x1b,0xfe,0x7b,0x25,0x33,0x20,0x4e,0x70,0x94,0xd7,0x34,0x25, - 0xf1,0xfa,0x44,0x55,0x06,0xa3,0xb3,0x54,0x9e,0x14,0x6d,0xa1,0x3e,0xf3,0xe1,0x5e,0xdf,0x97,0xfa,0xd1, - 0xf7,0x91,0x17,0xea,0x9c,0x34,0xbd,0xe1,0xd9,0x3f,0x6d,0xe6,0x18,0x49,0x01,0xc2,0x9f,0xb9,0xd3,0xec, - 0x09,0x14,0xc5,0x91,0x64,0xdb,0x07,0xf7,0xda,0x98,0x6c,0x4a,0x9a,0x46,0x48,0x1e,0xe8,0x7e,0x8d,0x7c, - 0xa9,0x0b,0xcd,0x10,0x87,0xd0,0x61,0x0c,0x4b,0xd5,0x69,0xa4,0xb8,0xbf,0x7f,0x45,0x15,0xfb,0xb2,0xe4, - 0xd2,0x5f,0x2f,0xcc,0x03,0x6e,0x28,0x8d,0x68,0x24,0x94,0x95,0x1e,0xaf,0xb8,0x12,0xb7,0x91,0xe0,0x86, - 0x32,0xdc,0x3f,0x66,0x74,0x49,0xfd,0xa2,0x0e,0xd8,0x70,0xdb,0x63,0xca,0x4f,0x48,0x57,0x74,0xe5,0x28, - 0x17,0x4d,0x40,0x23,0x9b,0x71,0xff,0x42,0x9f,0x02,0x53,0xa6,0x4e,0xa7,0xd4,0xfe,0x09,0xf4,0x08,0xa4, - 0xbc,0x85,0xaf,0xfd,0x29,0xc3,0xa1,0xf7,0x71,0xd0,0x22,0x98,0xee,0x5f,0x04,0x95,0x9d,0xe5,0x76,0x16, - 0xcb,0xa7,0x32,0x3b,0x93,0x86,0xd0,0x0d,0xcd,0xd5,0xe3,0xce,0xe7,0x1f,0x03,0xe2,0x00,0x41,0x47,0x27, - 0xe4,0x56,0xac,0xd2,0xc2,0x57,0x84,0xd7,0xd8,0x7f,0x3c,0x4e,0x2f,0x89,0x1a,0x0c,0xbf,0xdb,0x7a,0x5c, - 0x08,0x80,0x04,0x3b,0x6e,0x3a,0x96,0xf6,0x64,0x56,0xd0,0x29,0xe8,0xf6,0xa9,0x75,0x94,0x8f,0x4c,0x2f, - 0x43,0xfd,0x01,0x3a,0x68,0xa3,0xf3,0x34,0xd4,0xbd,0x52,0xcb,0xa8,0xb5,0xad,0x65,0x7e,0x86,0x40,0xd7, - 0xdd,0xdf,0xb4,0xd5,0x38,0x3c,0x96,0x48,0x1e,0x9e,0xa0,0x25,0xcf,0xcc,0x50,0xee,0xac,0x78,0x46,0x96, - 0xc1,0x70,0x4a,0x19,0xe8,0xb4,0x03,0x58,0x35,0xea,0xd1,0x7a,0x26,0xf6,0x92,0x72,0xe8,0xf5,0xe7,0x81, - 0x92,0x95,0x90,0xf6,0x95,0x67,0xf6,0x8f,0x9e,0xed,0xb5,0x9a,0xd7,0x92,0x15,0xbf,0xdc,0x6c,0xa0,0x30, - 0x2d,0xeb,0x70,0xbe,0x5c,0xd3,0xe9,0xe4,0x35,0xaf,0xae,0x3c,0x63,0x2e,0x58,0x2f,0xc4,0xde,0xd3,0xac, - 0x29,0x26,0x24,0x4c,0xda,0x89,0xfb,0xed,0x2d,0x2c,0xd3,0x88,0x3b,0x8c,0xf1,0x95,0x68,0x30,0x48,0x77, - 0x1d,0x12,0x09,0xc0,0x53,0xa2,0xdb,0x92,0x83,0x3b,0xbf,0x65,0x9e,0xe7,0xfd,0x55,0x58,0xa2,0xab,0xb3, - 0x82,0x2d,0x31,0x96,0x2f,0x88,0x9e,0x8a,0xbb,0x5c,0x52,0x80,0x90,0xd5,0x0e,0xb8,0x20,0xac,0x24,0xae, - 0x08,0xf9,0x2a,0xa2,0xda,0x6b,0x39,0x69,0xf8,0x6b,0x01,0x87,0x3b,0x5f,0x24,0x4f,0x93,0x79,0xf5,0x7c, - 0x95,0x64,0xc8,0x92,0xe4,0xaa,0x31,0x15,0x61,0x99,0xaa,0x96,0x2c,0x34,0xfc,0xa1,0x52,0x8e,0xf0,0xe0, - 0x9b,0x9c,0xf8,0x87,0xd9,0x7a,0xda,0xad,0x72,0xc3,0xb1,0x1c,0x79,0x97,0x9b,0x00,0x59,0x26,0xe4,0x5f, - 0xc0,0x1e,0x21,0x06,0xaf,0xf3,0x94,0xc0,0x44,0x61,0x46,0xfe,0xd9,0x4d,0xa2,0xf6,0xe0,0xe8,0x05,0xd0, - 0xce,0x67,0x36,0xe0,0x1f,0x92,0x75,0x65,0x76,0x82,0x22,0xde,0x25,0xcd,0xb4,0x3b,0x0f,0x65,0x2f,0xc6, - 0x24,0xba,0x50,0xdf,0xaf,0x46,0xd8,0xb1,0x15,0x3c,0xa3,0x42,0x60,0xf4,0x9d,0x65,0xf9,0x4e,0xaf,0xf7, - 0xcf,0x26,0xfd,0xcd,0x29,0x51,0xd8,0xc1,0xe4,0x93,0xd1,0x69,0x00,0x76,0x2f,0x7a,0xb0,0xf9,0xcd,0xf4, - 0x80,0x5e,0x4f,0xfd,0x23,0xf5,0xad,0x2e,0x31,0x26,0xb6,0x8e,0x98,0xbb,0xb3,0xfd,0x09,0x8a,0x4e,0xc0, - 0x19,0x12,0x75,0xdd,0x4a,0xdc,0x9c,0x8e,0xef,0x10,0x7d,0x7f,0x67,0x42,0x0f,0x1e,0x3d,0x78,0x78,0x20, - 0x32,0x18,0x3f,0xed,0xbc,0x93,0xe0,0x13,0xaa,0x96,0x28,0xf7,0xaf,0x41,0xea,0x94,0xd3,0xf0,0xee,0xdf, - 0xe0,0xcc,0x28,0xfc,0x5c,0xd4,0x2c,0xc2,0x93,0x7b,0x4a,0xe6,0xfb,0xde,0x5d,0xb5,0x5e,0x85,0xf7,0xfe, - 0x4e,0x1c,0xf2,0xbc,0x0a,0xef,0xfd,0x4d,0x15,0xb8,0x3d,0x09,0xef,0x7d,0xae,0xe0,0x05,0x3b,0xfc,0xf4, - 0x58,0xc9,0x05,0x66,0x38,0xfe,0xbb,0xfa,0xf4,0xaf,0xc4,0x84,0xfc,0x23,0xef,0xf2,0xcb,0x05,0x94,0xd3, - 0xaf,0x08,0x78,0x1c,0x9f,0x59,0x43,0x62,0x9b,0x7e,0xcd,0x21,0x0c,0x22,0x78,0x30,0x9b,0x1a,0x2f,0x00, - 0x90,0x78,0x11,0x8b,0x08,0x71,0x08,0x8d,0x0a,0xfe,0x66,0xf3,0xe8,0xf7,0xc7,0x72,0xe1,0xc8,0x59,0x10, - 0x97,0x2c,0xfc,0x47,0xee,0x37,0x71,0x43,0x8f,0x30,0x4e,0x4f,0xa7,0x4c,0xd7,0x05,0x16,0xe9,0x15,0x7f, - 0xf0,0x20,0x5c,0x2d,0x96,0x5c,0x62,0xcf,0x64,0xa0,0x84,0xef,0xa0,0xa1,0xab,0xd8,0x77,0x68,0xe3,0x1b, - 0xa7,0xc8,0xc7,0x78,0xd9,0xfc,0x44,0xef,0xf2,0x01,0xf2,0x82,0xc6,0x17,0x24,0xc8,0x27,0x9e,0x3b,0x7c, - 0xba,0x23,0x5e,0xa1,0xee,0x80,0x30,0x92,0x5c,0xbd,0x83,0x03,0xd3,0x43,0xf9,0xc6,0x7d,0x3e,0x46,0x7d, - 0xe9,0x6c,0xb6,0x4c,0xfe,0x50,0xb1,0x13,0xc8,0x15,0x78,0x7d,0xfe,0x48,0xa9,0xbb,0x80,0xff,0x5f,0x68, - 0x21,0x88,0x6b,0x6c,0xfb,0x63,0x81,0x1b,0xb8,0x3a,0xaa,0x5d,0xc7,0xc2,0x9e,0x2d,0x64,0x61,0x55,0x03, - 0x43,0x10,0x82,0xd8,0xd1,0x41,0x32,0xd5,0x71,0xf8,0xbc,0xda,0x5a,0xa8,0xae,0xe9,0x9c,0x6a,0xca,0xa8, - 0xa6,0x3b,0x90,0x7f,0xd1,0x7e,0xeb,0x83,0xf9,0xae,0x6b,0xc5,0xd9,0xe7,0x50,0xd2,0x70,0x74,0x54,0xab, - 0x23,0xe2,0x32,0x6c,0x24,0xa4,0x4e,0xa8,0x69,0xa6,0xe0,0x3d,0xd9,0x39,0xfa,0xb4,0xa7,0x74,0x7e,0x2f, - 0xd0,0x7d,0x9e,0x2e,0xf3,0xf8,0x0d,0xe2,0xea,0xfe,0x7b,0xbe,0xeb,0xf5,0x34,0xb7,0xce,0x32,0xf9,0x15, - 0x92,0x48,0x3a,0x13,0xf1,0xb3,0xd9,0xfc,0xaa,0x13,0xad,0xf0,0xb2,0x8c,0x7e,0x81,0x41,0xb5,0x51,0x4c, - 0xf7,0xec,0x87,0x47,0xc4,0x31,0x18,0x0f,0xee,0xb8,0x67,0xfc,0x3a,0xc9,0x10,0xc1,0xaf,0x99,0x5b,0x4b, - 0x1d,0x6d,0x3e,0xcb,0x71,0x44,0x57,0x3e,0x2b,0x5a,0xfc,0x92,0xb3,0x69,0xb4,0x4d,0x0f,0x6c,0xf4,0xae, - 0x06,0x02,0xdd,0x6c,0x1e,0x65,0x43,0xed,0x1b,0xf9,0xdd,0x79,0x62,0x03,0x31,0x76,0x2c,0xe4,0x9e,0x35, - 0xe3,0xd5,0xfe,0x31,0xb3,0x69,0xf2,0x64,0x16,0x69,0x0f,0xf5,0xed,0x80,0x83,0xf0,0xd1,0x4d,0xab,0xe8, - 0xbb,0x42,0xa1,0xd3,0xd3,0x73,0xaf,0xef,0xcd,0x08,0x87,0xcf,0x21,0x80,0x23,0xa0,0xaf,0x10,0x50,0x97, - 0x26,0xf9,0x1d,0x3b,0x66,0x9b,0x42,0xf8,0x87,0x63,0x4f,0x5d,0xa7,0xd5,0x85,0x8a,0xaf,0xe3,0xb4,0x52, - 0x6c,0x18,0xa0,0xd8,0x07,0xba,0x56,0x9e,0xe7,0x6b,0x20,0xc5,0x8e,0x4b,0x15,0xc7,0xa5,0x57,0xd7,0x84, - 0x56,0x13,0xf5,0x0e,0x52,0x3f,0x8d,0x6c,0x14,0x31,0x67,0x39,0xbc,0x1d,0xb2,0x27,0x16,0x25,0x23,0x30, - 0x1e,0xc0,0xac,0x4b,0x6d,0x76,0x17,0x4a,0x6c,0x8c,0x84,0xa8,0x67,0x27,0x68,0x69,0xb6,0x86,0x63,0xc6, - 0xf3,0xf5,0x62,0x01,0x31,0xa1,0x9e,0x85,0x3a,0xe8,0x8a,0xa7,0xfd,0xd4,0xe0,0x4c,0xd0,0xa7,0x03,0x0d, - 0x6b,0x83,0xa1,0x05,0x7d,0x1e,0xa1,0x04,0x09,0x6e,0x8d,0x59,0x3a,0x25,0x7e,0x47,0x59,0x81,0xbd,0xb3, - 0x1e,0x42,0xe9,0x40,0xf8,0xa7,0xa7,0x84,0xf2,0xe9,0x4f,0x5d,0x6b,0xeb,0x03,0xb5,0xe1,0x3f,0x6a,0x4b, - 0x7e,0x44,0x14,0x71,0xab,0xd5,0x28,0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7,0xd1,0xde,0x49,0xa0,0xce,0x72, - 0xbd,0x9e,0x6c,0x20,0x06,0x09,0xb7,0x13,0xb1,0x65,0x98,0xdd,0x7f,0x97,0xbb,0xce,0x59,0xde,0xe5,0x6c, - 0x87,0x8b,0x9b,0x9c,0x8b,0x3c,0x4a,0x6a,0xa8,0x3e,0xc3,0x9b,0x39,0xeb,0x01,0x4e,0xea,0x1c,0x29,0xce, - 0x49,0xce,0x89,0xd7,0x48,0x6c,0x1d,0xd5,0xfc,0xe1,0x32,0x07,0x68,0x27,0x1d,0x1b,0xe1,0x7b,0xd9,0x08, - 0x8b,0x76,0x86,0xb6,0x98,0x86,0xf2,0xbc,0xdb,0xc9,0x93,0x97,0x55,0x3b,0xd3,0x15,0xba,0x40,0x2b,0x91, - 0x5e,0xa6,0x15,0x02,0x22,0x6a,0xa3,0x5c,0x22,0x4f,0x59,0xf9,0x64,0xef,0x84,0x75,0x3d,0x11,0xe3,0x1c, - 0xbb,0xe3,0xe7,0x0b,0xca,0xc5,0xdd,0x54,0x98,0x2f,0xd0,0xa9,0x27,0x3b,0x96,0x19,0xed,0x49,0xa6,0xb7, - 0x65,0x1f,0x37,0x78,0x50,0x6b,0x5d,0x9f,0xcb,0xdd,0x82,0xef,0x5a,0x4d,0x17,0xc6,0x8f,0x00,0xeb,0xdf, - 0xa9,0xb2,0x8e,0x5f,0x2f,0x9a,0x7c,0xcb,0x40,0xdf,0xbd,0xe1,0xba,0xa1,0xc0,0x6b,0xc5,0x2b,0xd6,0xba, - 0x90,0xa5,0x64,0x56,0xf5,0x4f,0xa3,0xb8,0x0e,0x6a,0x9f,0x3e,0x88,0x88,0xeb,0x89,0x11,0x0a,0x66,0x69, - 0xb2,0x62,0x93,0xd3,0xb8,0x4a,0x84,0x54,0x33,0x34,0x65,0xc4,0xd7,0xbe,0xc8,0xed,0x18,0x60,0xba,0x15, - 0x4d,0x1f,0x44,0xe9,0x70,0x4a,0x05,0x92,0x01,0x7b,0x59,0xe1,0x1f,0xf6,0xb7,0xce,0x92,0x09,0xf4,0x7f, - 0x68,0xb2,0x47,0x98,0xc0,0x94,0x9b,0x3d,0x3c,0xe1,0xef,0xcc,0x1d,0x79,0xe7,0x05,0x28,0xbc,0x72,0xc4, - 0x84,0x55,0x01,0x0b,0x75,0x79,0xa0,0xf1,0xd3,0x74,0xef,0x1d,0x8b,0x67,0x04,0x6f,0xc5,0xb9,0x38,0x0e, - 0x6e,0x67,0xbe,0x13,0xce,0xa7,0x1a,0x1d,0x91,0x19,0xa4,0x49,0x35,0xce,0x11,0xe0,0xe9,0x04,0x8b,0x08, - 0x65,0xf4,0x5a,0x2a,0x43,0x4b,0x96,0x0c,0x6a,0xfa,0x92,0xa1,0x6d,0x8d,0x1b,0xe7,0x16,0x55,0xc9,0x1f, - 0x96,0x34,0x29,0xd5,0x90,0x85,0x7c,0x29,0x21,0x70,0x62,0x49,0x1e,0xe6,0x7e,0x6e,0xd5,0xd9,0x60,0x97, - 0x9a,0xb7,0xee,0xc4,0x67,0xd1,0xcb,0x7c,0xbc,0x42,0x88,0x28,0xfe,0x6d,0xc8,0xbf,0x89,0x80,0x3b,0x2d, - 0x4f,0x4f,0x5f,0x12,0xe9,0x16,0xf8,0xf7,0x8f,0xbc,0xfe,0xca,0x08,0xc2,0x03,0xda,0xf1,0x29,0x78,0x69, - 0x58,0x67,0x19,0xd1,0xf6,0xcc,0x95,0x69,0x33,0x78,0x18,0x48,0xb3,0x96,0xb0,0x8a,0xfa,0xb3,0x62,0xfe, - 0x4f,0xfb,0x9d,0xc4,0xc4,0xad,0xa0,0xd5,0x11,0xd5,0x0e,0xa8,0x8e,0x20,0x46,0xa7,0xb6,0x4b,0x69,0xf9, - 0xf0,0xf0,0xc1,0xd1,0x82,0x58,0x0c,0x3a,0xf5,0xdd,0x2c,0xa7,0xe3,0x47,0x8f,0x1f,0xbe,0x7a,0x78,0x3a, - 0xae,0x73,0x4e,0x26,0x36,0x27,0x84,0xca,0xfe,0x4a,0x89,0xdb,0x65,0xe8,0xb3,0x68,0x9f,0x4d,0x1c,0x46, - 0xef,0x22,0x96,0x83,0x92,0x1f,0xa0,0x04,0xe1,0x41,0xfe,0x42,0x30,0x6f,0x74,0x74,0x0e,0x2f,0x4c,0x7f, - 0xab,0xe8,0x42,0x15,0x54,0xd1,0xf2,0x70,0x8e,0x48,0xd4,0xd6,0x0e,0xe9,0x2a,0x72,0x94,0x01,0xee,0x8b, - 0x0c,0x00,0x6a,0x98,0x57,0x3c,0xf9,0xcb,0xdc,0x44,0xd4,0x32,0x16,0x64,0xae,0xea,0xc0,0xe1,0xe9,0xdb, - 0x7b,0x89,0x14,0xb9,0x64,0xf0,0x4d,0x74,0x78,0x46,0x44,0xaa,0xd0,0x2a,0x88,0x3a,0x3c,0x82,0x76,0x58, - 0x52,0xef,0xc2,0x4f,0x15,0x6c,0x6d,0x33,0xff,0xb2,0x7f,0x8f,0x58,0x3c,0x8d,0xea,0xb7,0xd0,0xeb,0x9a, - 0xb7,0xda,0x5c,0xb8,0x6d,0x4e,0x1e,0x48,0x7b,0x0b,0x6e,0x2f,0xf3,0x17,0xfd,0xbb,0x6e,0x71,0xe4,0x87, - 0x86,0x34,0xbb,0xa7,0xf5,0xd7,0xa2,0x72,0xf8,0x0e,0x19,0xdf,0xe1,0x6e,0xd9,0x04,0x34,0xb4,0x05,0x90, - 0xff,0xcc,0xe6,0x9f,0x4a,0xfe,0x33,0x69,0xf7,0x3c,0x5a,0x0e,0x33,0xff,0xcc,0x29,0x47,0x13,0x78,0x36, - 0x3e,0x99,0xa8,0x73,0x66,0x4b,0xdd,0x3a,0xae,0xdb,0xb1,0x52,0x12,0x5b,0x69,0x2c,0x95,0xda,0xc8,0x7f, - 0x37,0xc6,0xe3,0x5f,0x82,0xaa,0x98,0xf3,0x08,0xb1,0x59,0xb0,0xcb,0xc2,0xe5,0x96,0x9a,0x4c,0xdc,0xae, - 0x3a,0xbb,0x6a,0xb8,0x87,0xcd,0xa0,0xab,0x2d,0x73,0x36,0xfe,0xc8,0x6d,0x42,0x41,0x09,0xc3,0x20,0xf3, - 0xf3,0x46,0x87,0xb5,0xff,0x48,0x13,0x88,0x13,0xfb,0xa9,0xb6,0xc1,0x5c,0x63,0x2f,0xbe,0xa4,0x53,0x9c, - 0xd0,0x06,0x3a,0x93,0xf9,0x69,0xb3,0x30,0x7c,0x9f,0x2f,0x55,0xb1,0xdd,0xfa,0x62,0x35,0x15,0xdc,0xec, - 0x84,0x5a,0xc8,0x22,0xeb,0xa6,0x90,0xad,0x2e,0xea,0x3a,0x99,0xfb,0x17,0x8c,0x42,0xfb,0x37,0x13,0xd7, - 0xe1,0x05,0xf5,0x42,0xad,0xf9,0x31,0x17,0x07,0xd0,0x05,0x5f,0x90,0x9b,0x61,0x2e,0xa3,0x29,0x7b,0x6b, - 0xd8,0xdb,0x4b,0xd9,0x07,0x8f,0x74,0x5f,0xc3,0xf0,0x8a,0x37,0xb5,0x48,0xa6,0xe6,0xd8,0xf1,0xc7,0xc3, - 0xd9,0xfd,0xf9,0x70,0x66,0x94,0xfc,0x2e,0x4c,0x81,0xf1,0x6c,0x32,0x5c,0x51,0xa3,0x87,0xb0,0x96,0xbb, - 0xc0,0x98,0x0c,0x00,0xdd,0xf1,0xbc,0x3b,0x98,0x37,0xbe,0xa3,0xba,0x18,0xdf,0x9b,0x1c,0x1c,0x68,0x85, - 0x4e,0xbc,0x28,0x9d,0xfc,0xa9,0x9b,0xfc,0xa9,0x4d,0xfe,0xcc,0x4d,0xfe,0x4c,0x5b,0x13,0x5e,0x71,0x35, - 0x9b,0x0d,0x32,0xe2,0xef,0x67,0xf4,0xd7,0xf3,0xd4,0x65,0xe4,0xc5,0xc6,0xc5,0x35,0xdc,0x37,0x4b,0x0d, - 0x27,0x93,0x91,0xd9,0x23,0x8f,0x13,0xb8,0xd4,0xfd,0x3e,0xb9,0x86,0x4b,0xd4,0xf2,0xab,0xbc,0xf8,0x86, - 0x72,0x85,0xdd,0x5f,0x87,0x2b,0x1a,0x91,0xd6,0x5d,0x47,0x25,0x8a,0x49,0xec,0xf0,0xbb,0xc4,0xbf,0xa2, - 0x6d,0xb4,0xdd,0x2e,0x59,0xf5,0x99,0x17,0x99,0x15,0x58,0x09,0x81,0xba,0x27,0x4e,0x98,0xb5,0x70,0xa5, - 0x40,0xdd,0x0a,0x1e,0xe9,0x23,0x8e,0x8b,0xd0,0x42,0xf6,0x19,0x6c,0xc9,0xf8,0xca,0x9b,0xde,0xe0,0xd1, - 0x26,0x83,0x4d,0xf6,0x35,0xe3,0xa2,0x5c,0xb1,0xef,0x16,0x42,0x41,0xad,0x7d,0xf7,0xd6,0x98,0x8c,0xef, - 0x9b,0x87,0x37,0xfa,0x01,0xb0,0x73,0x65,0xcf,0xb7,0x7d,0xeb,0xd8,0xf9,0x2a,0x20,0x90,0x9e,0xea,0xed, - 0xbe,0x0f,0x37,0xae,0xce,0xf3,0xd2,0x79,0x9e,0x3b,0xcf,0xfe,0x9b,0x68,0xdf,0xc5,0x58,0x8a,0x70,0xe1, - 0xfd,0x63,0x02,0xfd,0xab,0x7e,0xf4,0x46,0x35,0x2a,0x7f,0xdb,0x38,0xf7,0x8f,0xd5,0x15,0x10,0xce,0x55, - 0xb0,0xbd,0x62,0x71,0xe4,0x5b,0x70,0x06,0x11,0x2c,0xc7,0x2d,0x26,0x7d,0x5b,0x23,0xd3,0xb7,0xac,0x63, - 0x5a,0x89,0x9a,0xf2,0x0e,0xaa,0xad,0x8c,0x89,0xec,0xb6,0xf0,0x59,0x46,0x24,0x51,0x42,0x2e,0x72,0xe5, - 0x5c,0x43,0x34,0x4e,0x3f,0x47,0xb2,0xe2,0x1e,0x83,0x1d,0x42,0x95,0x9d,0x13,0x51,0x75,0x81,0xc4,0x2d, - 0x90,0xd2,0x99,0xf7,0xfd,0xc0,0xa5,0xbf,0xaa,0x1d,0xd4,0x1d,0x5a,0xcc,0x5d,0x6a,0xf4,0xe4,0x1c,0x8b, - 0x31,0xac,0x5f,0x65,0xc7,0x8a,0x80,0xb4,0xdc,0x6c,0xae,0x71,0xc7,0x39,0xfc,0x1e,0x20,0x0f,0x97,0xd9, - 0x34,0x77,0x88,0x72,0xd5,0x0c,0x48,0x51,0x2b,0x3b,0x13,0xd2,0x13,0xd2,0xb6,0x72,0x29,0x5b,0x23,0xbc, - 0x44,0x7c,0xd4,0x1f,0x73,0xa3,0x3b,0x99,0x69,0x9d,0x49,0x79,0x8a,0xe4,0xc7,0x1e,0xa2,0x3f,0xe5,0x4a, - 0x96,0x91,0x77,0x00,0x68,0x11,0x1b,0x43,0x0f,0xca,0xe5,0x5a,0x9e,0xf8,0x6d,0xc2,0xdd,0x4e,0xe9,0x80, - 0x84,0x44,0x91,0x7a,0x0c,0x7a,0x6e,0x4f,0x3b,0xd0,0x67,0x8f,0x8a,0xab,0x68,0x1e,0x88,0x32,0xb3,0xb9, - 0x8e,0x46,0xf2,0x4a,0x94,0xaf,0x57,0x4d,0x79,0x2a,0x0d,0x12,0x62,0xbb,0xa3,0xd7,0xf1,0x55,0xec,0xe6, - 0x6d,0x64,0xa2,0x3e,0x23,0x46,0x6d,0xc0,0x0d,0xd2,0xd0,0xcf,0xd9,0x13,0x3c,0x07,0xa2,0x34,0x13,0xb1, - 0xd2,0x78,0x6c,0x61,0x09,0x7c,0xe0,0xb3,0x79,0xb4,0xc8,0x69,0xcf,0xfb,0x73,0x85,0x3a,0xe6,0xac,0x18, - 0x48,0xe3,0xbf,0x8c,0xe6,0xca,0x5e,0x34,0x5e,0xe2,0x52,0x0d,0xb2,0x3b,0x54,0x7f,0x09,0x52,0x99,0x4d, - 0x0d,0xe6,0x35,0x5f,0x71,0x1c,0x30,0x63,0x31,0x77,0x18,0x0b,0xdc,0x48,0x76,0x46,0x2f,0xb6,0xc2,0x32, - 0xeb,0xee,0xd2,0x8d,0xd2,0x68,0x6f,0x55,0x1d,0x14,0x9c,0x18,0x3f,0x34,0x09,0x47,0xf0,0x84,0x97,0x1e, - 0x8d,0xa3,0x9c,0xda,0x28,0x51,0xe2,0x92,0x08,0xca,0x6a,0x29,0xf9,0xb4,0x32,0x4a,0x58,0xd2,0xad,0xf1, - 0xa8,0x49,0xe3,0x60,0x5d,0x3b,0x16,0xda,0x49,0x54,0xec,0x79,0x10,0xce,0xeb,0xbb,0x50,0xfa,0xfa,0x0f, - 0x18,0xf3,0x77,0x44,0x2a,0x75,0xee,0x6c,0xf5,0xf9,0x5b,0xe1,0xd2,0x34,0xc1,0x25,0x63,0x25,0x97,0x8c, - 0x5a,0xb5,0x25,0xac,0xb6,0xda,0xc8,0xba,0xe3,0x0a,0x57,0x74,0x99,0xf5,0xf5,0xa3,0x89,0x9d,0xd8,0xbe, - 0xd0,0x35,0xda,0x4c,0xfa,0x5e,0x12,0x0e,0x75,0xd1,0xa9,0x2b,0x77,0xb1,0xae,0x50,0x00,0x4c,0x3a,0x57, - 0x79,0xc5,0xfc,0x3a,0xaf,0xc6,0xd7,0x09,0x2f,0x32,0xcd,0xe5,0xc8,0x40,0xc0,0x66,0x53,0x50,0x5f,0x19, - 0x66,0xa4,0x4a,0x82,0x00,0x7e,0xa2,0xa2,0xd4,0xfd,0x42,0xba,0x6f,0x3e,0xea,0x51,0xcc,0xb7,0x41,0x58, - 0x50,0x8b,0xb4,0x1b,0xf7,0x1c,0x58,0x83,0x89,0xd0,0x4e,0x35,0x7b,0xef,0xe7,0x55,0x1b,0x26,0x09,0x8d, - 0xf8,0x7a,0xc6,0x02,0xbd,0xe2,0xd0,0x7a,0x00,0x70,0x23,0xb9,0xa5,0x04,0x04,0x85,0xcd,0x61,0xad,0xb1, - 0xf5,0x6b,0x27,0x37,0x3c,0x37,0x19,0x0f,0xe7,0x57,0xe8,0x00,0x73,0xd7,0xab,0x66,0xd7,0x61,0x91,0x41, - 0x13,0x66,0x65,0xec,0xf3,0x01,0x2c,0x14,0xd8,0xe9,0x17,0x47,0x11,0x97,0xe5,0x3f,0x11,0x7d,0x92,0x48, - 0xbe,0x8a,0x5c,0x70,0xb3,0xb9,0xe3,0x69,0xf9,0x81,0x77,0x67,0x48,0xcd,0x36,0x82,0xbd,0x35,0xdf,0xd9, - 0x8c,0x60,0x7c,0x31,0x89,0xe6,0x62,0x6c,0x5d,0xf7,0x51,0xf0,0xc6,0x9c,0xb7,0x8e,0x84,0x65,0x4b,0xe5, - 0x68,0x57,0x97,0xc3,0xf5,0x28,0x03,0xd0,0x11,0xe5,0x35,0x57,0xb9,0xc9,0x88,0x38,0x63,0x59,0x87,0x5e, - 0x7d,0x3e,0xce,0x2d,0xdb,0x36,0x51,0x89,0xe3,0x1e,0x6b,0xbc,0xe3,0x13,0x8b,0x72,0x20,0xf8,0xf2,0x3d, - 0x68,0x83,0x18,0x84,0xd2,0xf3,0xe4,0x8d,0xdd,0x29,0xec,0x4d,0xa1,0x69,0x5d,0xf7,0x11,0x53,0xab,0x6c, - 0xfd,0xd1,0x09,0x91,0x5b,0xcd,0xf6,0x32,0x71,0xb8,0x8d,0x03,0xaa,0x21,0xe5,0x37,0xc1,0xc5,0xbe,0xcf, - 0xdc,0xab,0x23,0xf1,0x68,0x02,0xc4,0x96,0xd6,0x38,0x6b,0x55,0xbb,0xe3,0x80,0x69,0x77,0x60,0x77,0x53, - 0xc3,0xf9,0x47,0x15,0x4d,0x11,0xf8,0x51,0xae,0x70,0x46,0x3e,0x42,0x6d,0x7a,0x35,0x17,0x54,0x18,0x5b, - 0x15,0x46,0xab,0x26,0x61,0x54,0x85,0x3f,0xe7,0xec,0xd6,0x8f,0x5d,0x9e,0x4b,0xaf,0x47,0x34,0x62,0x88, - 0xf3,0xb4,0xc7,0xb7,0xbd,0x92,0xe7,0x60,0x8f,0x7d,0xf7,0xf9,0x6d,0xe9,0x89,0x40,0xe9,0x55,0x3e,0xfa, - 0x35,0xf5,0xaf,0xf2,0x20,0xfc,0x3a,0x65,0x6e,0xbd,0x66,0x16,0xac,0xf3,0x37,0xe5,0xb0,0xa0,0xf4,0x67, - 0x0a,0x17,0xbe,0x71,0x59,0x3d,0x01,0xd1,0x00,0x84,0xc5,0xf1,0x7c,0x92,0x29,0x0e,0xab,0xe0,0x86,0x56, - 0xb6,0x10,0x7a,0x22,0x78,0x80,0xab,0x26,0x43,0x2c,0x5b,0x42,0x62,0x0a,0x2b,0x5d,0xa5,0xc9,0xab,0x16, - 0xfe,0xca,0x8d,0x86,0xe2,0x3a,0xfa,0x07,0xbc,0xaa,0xd4,0xee,0x90,0x87,0xba,0x80,0x5c,0xc6,0xac,0xe5, - 0x12,0x4a,0xd7,0x7d,0xe3,0xfd,0xdb,0xb9,0x68,0x0a,0x7a,0xd0,0x99,0xa0,0x0e,0xa6,0xfd,0xa2,0xa6,0xbc, - 0xcd,0xe9,0x35,0xbd,0x5f,0x9b,0x5a,0x74,0x74,0xeb,0xbd,0x9d,0xe2,0x7d,0x06,0x8d,0x3e,0x18,0x24,0xc5, - 0x5a,0xa4,0x05,0xbd,0xc4,0x2a,0x7f,0x93,0x64,0x65,0x58,0x6e,0x39,0x32,0x50,0x30,0x4a,0x0c,0xd9,0x08, - 0x2b,0xd0,0xbb,0xca,0x29,0x85,0x49,0x32,0x2f,0xa6,0x18,0x08,0x49,0x3c,0xc8,0x9d,0x16,0xed,0xdb,0x50, - 0x60,0xb6,0xaa,0xd7,0xd4,0x82,0xf1,0x38,0xa9,0x61,0x93,0x41,0x1a,0x4a,0xe3,0x4e,0x63,0xf7,0x6c,0x25, - 0x42,0x3f,0x16,0x6c,0x10,0xbe,0xe3,0x26,0xbe,0xbd,0x4d,0x9b,0x85,0x95,0xb5,0x75,0x0b,0xf7,0x8e,0xd9, - 0x3c,0x82,0xd8,0x15,0xdf,0xc0,0x26,0xe2,0x18,0x6b,0x41,0x12,0xa4,0xc1,0x97,0xe9,0xef,0x09,0xcb,0x71, - 0x60,0x0a,0x95,0x28,0xc8,0x74,0xde,0xe6,0xd1,0x3f,0x73,0xe0,0x09,0xe7,0xba,0x09,0xb4,0xc4,0x3e,0x6e, - 0x49,0x77,0x64,0xb3,0xf6,0x9c,0x81,0x09,0x8f,0xb8,0x92,0xd1,0x25,0x23,0x3a,0x5b,0x13,0x75,0x97,0x9a, - 0x9a,0xea,0xcd,0xec,0x63,0x67,0xcb,0x0b,0xb1,0x33,0xfe,0xde,0x54,0x1f,0xcb,0x53,0x58,0x26,0x68,0x45, - 0x51,0x6a,0x0c,0x2a,0x3a,0xf8,0x3b,0x47,0xe4,0xaf,0x45,0xe6,0xb3,0x31,0x15,0x18,0xa0,0xfd,0xdc,0x3e, - 0xef,0x9a,0x80,0x5a,0x03,0x50,0x56,0x83,0x32,0x71,0x21,0xb4,0x57,0x68,0xeb,0x3a,0x88,0x8b,0x37,0x2c, - 0x09,0xd0,0x4c,0x6d,0x1f,0x6a,0x7d,0xc6,0x10,0x30,0x51,0x8b,0xda,0xa8,0x0c,0x61,0x04,0x29,0x61,0x80, - 0x40,0x31,0xef,0x68,0x82,0x02,0xfc,0xa7,0x4e,0x2c,0x9e,0x12,0xab,0x05,0xea,0x5e,0xa2,0xc9,0x0a,0x0f, - 0xf8,0x98,0xa3,0x02,0xd5,0x86,0x60,0x78,0x31,0x58,0x65,0xec,0xa5,0x19,0x28,0xcd,0x43,0xdb,0x4f,0x63, - 0xb5,0xe0,0xca,0x38,0x39,0x7e,0x68,0xdb,0x6f,0xa0,0x09,0x4f,0xad,0xed,0x63,0xeb,0x0c,0x20,0x0f,0xe1, - 0x77,0x45,0x99,0xa5,0x23,0x6c,0x6f,0xd7,0x62,0xef,0x84,0x89,0x77,0xa2,0xb3,0xe7,0x8f,0x72,0x9a,0x68, - 0xbe,0x07,0xa8,0x03,0x4e,0x13,0xea,0x8c,0xa3,0xe6,0x47,0xd3,0x5e,0x7e,0x3f,0xae,0x3d,0x6b,0x95,0xad, - 0x4c,0xf0,0xa4,0xc4,0x07,0x16,0xb5,0x0c,0xab,0xb8,0x5b,0x5a,0x66,0x60,0x9e,0x6e,0x89,0x0e,0x6d,0x80, - 0x8b,0xf6,0x67,0xd0,0x9a,0x47,0x5b,0x14,0x9b,0x23,0x17,0xef,0x7f,0x36,0xed,0x49,0x46,0xb4,0xb9,0x65, - 0xd0,0x28,0x41,0x18,0x90,0xc6,0x14,0x51,0x76,0x01,0xf0,0x56,0xfa,0x66,0x73,0xaf,0x91,0xcc,0x6e,0xdb, - 0xd9,0x65,0x84,0xc6,0x2e,0x60,0xcd,0x6c,0x4b,0xf0,0x47,0xcc,0x04,0x8e,0x03,0xd2,0x92,0x76,0xa2,0xea, - 0x3a,0x5a,0x31,0xdc,0x77,0x97,0xcb,0x06,0x73,0xf7,0x13,0xd7,0xd5,0xa3,0xca,0xc0,0xd0,0x27,0x0c,0x7c, - 0xc3,0x7f,0x6d,0x61,0x2a,0xff,0x96,0x35,0xe1,0x30,0x06,0x70,0x0b,0x75,0x62,0x95,0xc6,0x59,0x98,0x9c, - 0x65,0x6c,0x78,0xa4,0x65,0xc5,0x37,0x74,0x0c,0x10,0x77,0xac,0x8d,0x30,0x73,0x13,0xba,0xb6,0x75,0x5d, - 0x42,0x1f,0x5a,0x29,0xdb,0x66,0xb0,0x3f,0xbb,0xae,0x12,0x3f,0xc1,0x38,0x94,0x6f,0x18,0x65,0x56,0xd0, - 0x1c,0x64,0xd3,0x4a,0x71,0x07,0x54,0xc8,0x0d,0x54,0xf3,0x4c,0xf3,0x93,0x51,0x1e,0xa6,0x81,0x71,0x84, - 0xba,0x45,0x65,0x99,0x91,0x9b,0xb3,0x23,0x1f,0xfd,0x1c,0xd5,0xd7,0x4d,0x7c,0x1f,0x6e,0x2e,0xca,0x6d, - 0x66,0x08,0xd3,0x1a,0xe6,0xcb,0xf0,0x19,0xe9,0xde,0x43,0xb5,0x7a,0xe7,0x7c,0xdc,0x6c,0xc4,0x80,0xd4, - 0x2d,0xef,0x88,0x64,0x10,0xc5,0xb6,0x97,0x05,0x9e,0x6e,0x08,0x1b,0x9d,0x8e,0xf0,0x3a,0xa2,0x9b,0x49, - 0xa1,0xe3,0x2f,0x86,0x47,0xfc,0x78,0x22,0xae,0x80,0xca,0xe8,0x51,0xce,0xe1,0xcf,0x8d,0x9c,0xbe,0x1c, - 0x24,0x45,0x91,0x13,0x0b,0x91,0xd2,0xde,0xa9,0xd2,0x55,0x19,0xe5,0xaa,0xd4,0x48,0xe8,0x06,0xda,0x1c, - 0xe9,0x32,0x09,0x13,0xa5,0x9f,0x5e,0xe5,0x5f,0xe9,0xa9,0x2a,0x3b,0xb4,0xf9,0x3b,0x0c,0x60,0x77,0xae, - 0x03,0xb4,0x0f,0x05,0xc2,0xf7,0x7c,0x07,0x47,0x7c,0x21,0x2f,0x81,0xbe,0x93,0xea,0x15,0xb5,0x71,0x42, - 0x0e,0x37,0x67,0xf6,0x2a,0x62,0xa4,0x8d,0x92,0xdc,0xb4,0xa0,0x4f,0x07,0x22,0xc3,0x2e,0x3c,0xa7,0x19, - 0xf6,0x12,0x8e,0xf7,0xc4,0x9a,0x1e,0x32,0x93,0x02,0xca,0x9e,0xb0,0xaa,0xc6,0x8a,0xdb,0x31,0x6b,0xfb, - 0xa0,0x19,0xa2,0x2e,0x6a,0x70,0x9b,0xd6,0xc8,0xa3,0xbe,0xa2,0x8b,0xdb,0x29,0x4d,0x7d,0x3d,0x27,0x60, - 0x0a,0x60,0x67,0x0a,0xfd,0x04,0xb4,0x1f,0x11,0x6c,0xe2,0x4a,0x63,0x1b,0xf8,0xbf,0xe7,0xc1,0x60,0x77, - 0xf2,0x28,0x5b,0x1c,0xed,0xed,0xc1,0x93,0xfd,0x45,0xe6,0xe3,0xaa,0x29,0x73,0xdf,0xe1,0xf1,0x29,0xee, - 0xb4,0xc6,0xf9,0xc2,0xb5,0x18,0xe3,0x30,0xb7,0x56,0xc7,0x84,0xda,0x4e,0xe3,0xa8,0xc3,0xb2,0xca,0x64, - 0xff,0xb0,0xd1,0x15,0x70,0x1f,0x1b,0x27,0x71,0x33,0x50,0x27,0x6d,0xd8,0x7e,0x12,0x7d,0xe9,0x26,0x99, - 0x07,0x13,0x85,0x79,0x37,0xb2,0x68,0x23,0xe4,0x38,0xbb,0x35,0xc8,0xf4,0x74,0x9b,0xed,0x09,0x4a,0x51, - 0xce,0x1f,0xde,0x8e,0x01,0x2b,0x67,0xf2,0x4a,0xd7,0x31,0x08,0x8b,0xc0,0xfb,0x8b,0x90,0xac,0x36,0x6a, - 0x02,0x13,0x0c,0x45,0x0c,0xb1,0x82,0x75,0xc5,0xb5,0xe7,0x78,0xee,0x72,0xbb,0x52,0x30,0x29,0x69,0x26, - 0x49,0xb8,0x58,0x2e,0xbf,0x63,0xb2,0x9a,0xaf,0xab,0x86,0xc7,0xb8,0x9e,0x93,0xf4,0x7e,0x2b,0x3e,0xd1, - 0xb2,0xb6,0xeb,0xd2,0x72,0x27,0x5d,0x1b,0x6f,0x32,0xf3,0xef,0xae,0x19,0xa6,0x59,0x46,0x6e,0xbc,0x4d, - 0xc0,0x8d,0xde,0x4d,0xb7,0x70,0x29,0x7e,0xaf,0x20,0x29,0x43,0x1c,0x2b,0xb3,0x35,0xc2,0xcc,0xd9,0x27, - 0x86,0x84,0x43,0xaa,0x79,0xdc,0xea,0x48,0xef,0x20,0xa9,0xf4,0x0e,0x80,0xea,0x59,0x0b,0xdc,0x87,0x66, - 0xbd,0x08,0x2b,0x64,0xbb,0xbb,0xc3,0x9a,0xec,0xa7,0xb1,0x76,0xe4,0xc3,0xe6,0x6d,0xc6,0x96,0x4d,0xc3, - 0x3d,0x8d,0x89,0xde,0xb6,0x41,0xcb,0x28,0xc1,0x93,0xf8,0x61,0xf5,0x3a,0xcb,0x7d,0x34,0xd8,0x8d,0x75, - 0x26,0xd1,0x1d,0x67,0x84,0xc5,0xf4,0x47,0x41,0x74,0x23,0xf9,0x19,0xe8,0xac,0x51,0xe2,0x77,0x86,0x99, - 0x95,0xd2,0x90,0x0b,0xe3,0x77,0x10,0x5f,0xce,0x46,0xf2,0x48,0x9b,0x92,0xf8,0xdc,0x9f,0xd6,0xc9,0x93, - 0x93,0xbf,0x67,0x28,0xbd,0x6d,0x05,0xa1,0xa6,0x6e,0xad,0x09,0x40,0x00,0x82,0xd4,0xb5,0xa1,0x43,0x2b, - 0x48,0x9f,0x3b,0x7a,0x86,0xbb,0xf6,0x9c,0x6d,0x96,0xf4,0x13,0xa3,0x30,0xdf,0x1b,0x5f,0xad,0x93,0xc3, - 0x94,0xda,0x99,0xf4,0xbc,0x3e,0xfc,0x50,0x1e,0x1c,0x34,0x32,0xf0,0x91,0x3e,0x7d,0xe3,0x3a,0xda,0x4e, - 0x5a,0x01,0xf1,0x84,0xe9,0xda,0x99,0xa8,0xaa,0x2e,0xe1,0xe2,0xa0,0x2b,0xbd,0x06,0xd8,0xb7,0x97,0x8d, - 0xeb,0xd4,0x56,0x94,0x3d,0x84,0xd9,0xb3,0xb1,0x25,0x9c,0xca,0x52,0x37,0x3e,0xb8,0x88,0x02,0xed,0xa5, - 0xbe,0x25,0xfe,0x20,0x71,0x80,0x20,0xb0,0xfe,0x04,0xb2,0x4f,0xef,0x66,0xa8,0xf1,0xa5,0xfc,0x63,0xf6, - 0x02,0x0b,0x26,0x0c,0x67,0x29,0x06,0xe9,0x44,0xd6,0x36,0x15,0x5a,0x39,0x71,0x94,0xb2,0xa9,0x61,0xb8, - 0xb3,0xfd,0x2b,0x0e,0x35,0x0f,0x87,0xc9,0xc8,0x16,0xde,0x75,0x2a,0x64,0x91,0xe0,0x7b,0xb3,0x2b,0x1f, - 0x6d,0x9e,0x74,0xb5,0x49,0x89,0xc0,0x23,0x69,0x24,0x8f,0xea,0x86,0x28,0x96,0x98,0x0e,0xbb,0x42,0xec, - 0x93,0xca,0x30,0x75,0xbc,0x81,0xe6,0xb5,0x11,0x37,0x56,0x44,0x37,0x6a,0x61,0xa0,0x6a,0xa8,0x64,0x19, - 0xd9,0x9c,0x56,0x5f,0xd8,0x38,0x36,0x91,0xe3,0xe4,0x16,0x63,0x94,0x08,0x81,0x0a,0x07,0xf1,0x39,0xc4, - 0xd8,0x0a,0x63,0x4c,0x46,0x70,0xe5,0x1d,0x8c,0xb2,0x07,0x27,0xa3,0x93,0xf0,0x38,0x3c,0x09,0xab,0x11, - 0xe7,0xb9,0x4c,0x51,0xf4,0x6e,0x10,0x1e,0x9b,0x70,0xaa,0xf0,0xbb,0xa5,0xef,0x87,0x26,0xa3,0x8c,0xa5, - 0x40,0xcc,0x69,0x85,0xce,0xda,0xc6,0x0e,0x14,0x30,0x6b,0xca,0x61,0xbf,0xdb,0x5c,0x6a,0xc3,0xed,0x7b, - 0xe9,0x0a,0x9d,0x1c,0x50,0x50,0x86,0xaa,0x12,0x72,0x8a,0x98,0x98,0xfb,0x3b,0x60,0x92,0x1a,0x7a,0x3d, - 0x97,0x70,0x3c,0xb8,0x6c,0x30,0xd1,0x4a,0x72,0xe3,0x96,0x22,0xb2,0x31,0x35,0xf4,0x95,0x04,0x1a,0x63, - 0xca,0x26,0x0f,0xa6,0x84,0x71,0xd6,0x51,0xac,0x16,0x02,0xd4,0xf0,0xd3,0xc8,0xde,0x47,0x73,0x90,0x32, - 0x23,0xa6,0x6a,0x4a,0x26,0x6e,0x14,0xa7,0x84,0x9c,0xc2,0x8f,0x9a,0xd6,0x57,0x6b,0x33,0xe9,0x45,0x33, - 0x44,0x01,0x13,0x87,0x4b,0x76,0xb0,0x0d,0x27,0xcf,0xda,0x1d,0x9c,0xcd,0xb2,0xae,0xdd,0xfb,0x2e,0x59, - 0xdd,0x17,0x22,0xbf,0x0e,0x99,0x47,0x62,0x5c,0x9d,0xd5,0x16,0x8c,0x67,0x02,0x41,0xec,0x15,0x6d,0x1f, - 0x3b,0x7f,0x20,0x09,0x5b,0x5d,0x8f,0x83,0x4d,0xf8,0x02,0x1b,0x92,0x12,0x9c,0x6b,0xb5,0xa9,0xb9,0xe6, - 0xa8,0x7c,0x76,0x0c,0x09,0x4f,0x81,0x7c,0x68,0xa6,0x44,0xa9,0xe7,0x26,0x13,0x44,0x89,0x34,0x83,0x9a, - 0x1c,0xca,0x82,0xda,0x3b,0x0f,0xe5,0xae,0x8a,0x77,0x7a,0x46,0xdb,0xf1,0x93,0x88,0x0a,0x6a,0x26,0x49, - 0xdd,0x44,0x22,0x96,0x16,0x76,0x8d,0xba,0x42,0x64,0x6f,0xd4,0x21,0x25,0x14,0x96,0xd3,0x4e,0x81,0x1b, - 0x8d,0x18,0x1c,0x54,0xc1,0x91,0x99,0xa5,0xb2,0xcd,0xa6,0xac,0x59,0x5b,0x51,0x99,0x70,0xf9,0xd7,0x0c, - 0xbe,0x7e,0xdc,0x84,0x9a,0x0c,0x9d,0xd6,0x6d,0xaf,0x6d,0xdb,0xd3,0x9d,0xb6,0x9d,0x96,0x01,0xe7,0xc6, - 0x15,0xdc,0x96,0x75,0x9f,0x6a,0x35,0x38,0xe2,0x9e,0xb7,0x44,0x85,0x8b,0xe9,0x48,0x66,0x7d,0x93,0x81, - 0x6b,0xaf,0x35,0x23,0xcc,0x62,0x2c,0x5d,0x76,0x21,0x6b,0xaf,0x6a,0x31,0xda,0x23,0xc2,0x82,0x57,0x13, - 0x62,0x6f,0xdf,0xcb,0xf2,0x8a,0x4e,0xaa,0xb4,0xac,0x7a,0xfa,0x18,0xe9,0xa5,0xda,0xd3,0x0f,0x00,0x97, - 0xd2,0xec,0xbb,0x07,0x95,0x63,0xf6,0x30,0xdd,0x2c,0xd4,0x2c,0x00,0xba,0xa0,0xa7,0x1b,0x95,0x12,0x6e, - 0x60,0x89,0x44,0x20,0x51,0x76,0xd2,0x0e,0x39,0x88,0x8f,0x36,0x90,0x61,0x1b,0x0f,0x8e,0xe8,0xe0,0x45, - 0xd0,0x12,0xde,0x37,0x2c,0x7f,0xa8,0x2e,0xe0,0x8f,0x46,0x03,0x25,0x5f,0x0c,0xd3,0xbe,0x25,0x1a,0xe0, - 0x06,0x9f,0x42,0xc4,0xb9,0xd5,0x08,0x10,0xc9,0x40,0x7f,0x44,0x6d,0x8b,0xf4,0x9f,0x68,0x83,0x5c,0x2a, - 0x20,0xfe,0xc0,0x54,0x40,0x5b,0x94,0x2b,0x30,0x4b,0xbf,0xd9,0x4c,0x39,0xb2,0x8c,0x89,0xda,0x92,0xda, - 0xb9,0x84,0x13,0xa4,0x4a,0xcb,0x50,0x4d,0x48,0x3c,0x7f,0x49,0x2b,0xcd,0xf3,0x1a,0x0c,0x4c,0x4c,0xf8, - 0xa5,0xa2,0x0d,0x6c,0xb8,0xa8,0xdd,0x4d,0x57,0x38,0x34,0x7c,0x05,0x2f,0xab,0x26,0x72,0x3c,0x0e,0xdf, - 0x76,0x5c,0x10,0xf8,0x96,0x67,0x5f,0x8c,0x3a,0x5b,0xc2,0x42,0x28,0xa2,0x85,0x02,0x26,0xc1,0xcc,0x5e, - 0x5d,0x37,0x76,0xaa,0x58,0x4a,0x69,0x22,0xd1,0xf7,0x4c,0x80,0xde,0xde,0x7f,0x60,0xec,0xff,0x81,0xf5, - 0xba,0x3a,0xac,0x7a,0x75,0xdc,0x6c,0x2d,0x1e,0xd7,0x2b,0x5c,0xae,0x57,0x20,0x4b,0x7a,0x62,0xa6,0x23, - 0x96,0x6a,0x8d,0x80,0x1e,0xbc,0xe5,0xeb,0x93,0x57,0x78,0x3c,0x3c,0xe9,0x5d,0xe3,0xd1,0xc2,0x79,0x56, - 0x0b,0x11,0xd4,0x2e,0x34,0x1d,0x99,0xe2,0x1d,0x8a,0x62,0x1e,0xb6,0x00,0x74,0x00,0x7b,0x9f,0x9f,0x84, - 0xf2,0x7b,0x4f,0x7e,0x3f,0xfd,0xab,0xfc,0xde,0xfb,0x54,0xff,0x7e,0xae,0xd3,0xff,0x1e,0xda,0x00,0x64, - 0x52,0xe0,0x33,0x9d,0x41,0x17,0xf8,0xf4,0xb3,0xd0,0xa8,0x17,0xcf,0xa0,0xea,0x2e,0xb9,0xee,0xdd,0xd5, - 0xd5,0xcb,0xcf,0xc9,0xb1,0xfe,0xd5,0xad,0x9d,0xfc,0x55,0x27,0xfc,0xf5,0xb3,0xbb,0x7f,0xd3,0x79,0xfe, - 0x7e,0xd7,0x14,0xa2,0xa7,0x7b,0xa6,0xd2,0xeb,0xd2,0xb3,0x17,0x7f,0x0f,0xa2,0xcf,0xff,0x46,0x2c,0xcb, - 0xfd,0xe8,0xe4,0xee,0xdd,0xcd,0x86,0x5e,0xff,0xfa,0x19,0xbf,0x7e,0x7e,0x3c,0xd2,0x8d,0x87,0x94,0xf8, - 0xe9,0xe7,0x9c,0xf8,0xd9,0xdf,0x46,0x9e,0x18,0x42,0x78,0xa1,0xc7,0xd7,0x3e,0x1d,0x01,0x49,0x30,0x4d, - 0x72,0xd6,0x69,0xb8,0xf0,0xbd,0x63,0x6f,0xcf,0x09,0x5e,0x7c,0x0c,0x19,0x5a,0x5a,0x7e,0x1f,0x7f,0x2f, - 0x41,0xd9,0x08,0xe1,0x26,0xea,0x2b,0x13,0xad,0xae,0xf3,0xce,0xad,0x39,0xed,0xa6,0xef,0xb6,0x52,0xfd, - 0xc9,0x2a,0xf3,0x9c,0x50,0x0b,0xf7,0x3e,0x85,0x58,0xe7,0xe0,0xe0,0xde,0xe7,0xf8,0x1d,0x55,0xa1,0x0d, - 0xe3,0xa6,0xe8,0x3b,0x58,0xc1,0xd0,0xfb,0xc4,0xeb,0x27,0x26,0x00,0xba,0xf8,0xb7,0xba,0x32,0xb8,0xb0, - 0xe6,0xca,0x8c,0xef,0x0d,0x68,0x2a,0x8c,0x85,0xec,0xeb,0x69,0x4f,0x79,0x9e,0x5a,0xec,0xe6,0xbf,0x88, - 0xcb,0xe7,0xd7,0x99,0x09,0xb4,0xa7,0xde,0x45,0x5d,0x04,0xea,0x93,0xac,0x5a,0x3a,0xc1,0xc2,0xf0,0x3a, - 0x78,0x8c,0xc8,0x36,0xe9,0x65,0x42,0xcc,0xc3,0x65,0x5c,0xa9,0xb3,0x8f,0x2e,0x28,0x5e,0xfc,0x74,0xb1, - 0xf3,0xe8,0x46,0x1c,0x6b,0x3c,0x6a,0x05,0xa9,0x6c,0xf8,0x34,0x72,0x19,0xc0,0x6a,0x80,0xdd,0x16,0xc9, - 0x0f,0xdf,0x23,0x9e,0x9d,0xe1,0x71,0x74,0xb3,0x0d,0x4d,0x44,0x22,0xc6,0x09,0x37,0x36,0xb3,0x45,0x97, - 0xd4,0xa3,0x67,0x3a,0x5d,0x0a,0x05,0xe6,0xb8,0x43,0xa0,0xc5,0xa1,0x49,0xed,0x74,0x7a,0x93,0x10,0xb5, - 0x90,0x28,0x87,0xf0,0xa9,0xd8,0x98,0xc0,0x3d,0x8c,0x92,0x8e,0x08,0x8c,0x12,0xd2,0x14,0x95,0xb2,0xef, - 0xe0,0xa7,0x8c,0x24,0x9e,0x25,0x65,0x19,0x2f,0xd8,0x77,0x8e,0x9c,0x7d,0xfa,0xf8,0xa1,0x66,0xc4,0xe3, - 0xd4,0x99,0x33,0x46,0x55,0xa7,0xfc,0x8c,0x5c,0x89,0xf6,0x08,0x26,0x5d,0xbd,0x46,0x12,0x0e,0x11,0x68, - 0x2a,0xfb,0x81,0x93,0x99,0x75,0x24,0xa6,0x45,0x7a,0x9e,0xe0,0xd3,0x23,0x98,0xfa,0x70,0xf4,0x21,0x66, - 0xda,0x24,0x9b,0xc9,0x21,0xce,0xe0,0xb6,0x75,0x3c,0x0e,0x3d,0x85,0x32,0x57,0xbc,0x02,0x45,0x9e,0x57, - 0x26,0xc8,0x3d,0x9e,0x05,0xe9,0xed,0xa6,0x34,0xe6,0x9a,0xaf,0x4f,0xb9,0x2f,0xc8,0x10,0xb5,0xf3,0xea, - 0x95,0x1a,0xcc,0x89,0x3e,0x3b,0x27,0x46,0x46,0x26,0x67,0x27,0x5b,0xeb,0xbb,0x29,0x55,0x12,0x63,0x98, - 0x89,0xfe,0xe9,0x92,0x8d,0x14,0x7e,0x66,0x55,0xf0,0x76,0xe1,0xce,0x6c,0xec,0xa8,0xb7,0x09,0x01,0xc5, - 0x07,0x21,0xa0,0x00,0xbd,0xb8,0x0b,0x01,0x76,0x79,0x79,0x4d,0xcb,0xa8,0xe8,0x5e,0x4c,0x5c,0xb0,0x3f, - 0x33,0x13,0xfb,0x3f,0xb6,0xa6,0xca,0x39,0x2c,0xf4,0xb4,0xbd,0xcb,0xf8,0x9a,0xcf,0xbe,0xf0,0x5d,0xb8, - 0xf8,0x05,0xe4,0xf9,0x6d,0x74,0x68,0xbf,0xee,0x90,0xcc,0xbe,0x1f,0x58,0x47,0xf1,0x7f,0x1e,0x2e,0x46, - 0xbe,0x0b,0xe5,0x3b,0x50,0xf1,0xe7,0x87,0x0b,0xde,0x5c,0x6e,0x49,0x70,0xc9,0xaa,0x03,0x2c,0x98,0x1e, - 0x35,0xde,0x77,0xe0,0xd4,0xdd,0x76,0x6e,0xc6,0x7f,0xa9,0x3b,0xc6,0x0f,0xdc,0xe3,0x76,0x98,0x5a,0xe3, - 0x08,0x4e,0xba,0xe6,0xef,0x14,0x6e,0xf4,0x68,0xb0,0xce,0xde,0xd7,0xb2,0x16,0x7c,0xee,0xd4,0xd1,0x01, - 0x65,0x8d,0x6a,0x75,0x9a,0xdf,0xaa,0xc1,0xf9,0x64,0x6a,0x68,0x00,0x46,0x37,0xb8,0xb4,0x6b,0x69,0x7c, - 0x74,0x7b,0x22,0x61,0xe3,0xb6,0x5b,0x75,0x6d,0xbc,0xb6,0x22,0xb5,0xf6,0xe6,0x18,0x2f,0x61,0xe8,0x2d, - 0x8e,0x15,0x59,0xeb,0xed,0xc6,0xf5,0x64,0xab,0xb5,0x02,0x42,0x71,0x99,0xb8,0xe5,0x88,0xe4,0xcd,0x1c, - 0x86,0xe2,0xc2,0xc5,0xa1,0xa1,0x47,0xdd,0x0c,0x5b,0xc5,0xb7,0xe1,0xa5,0x4e,0x1c,0x33,0xb5,0x67,0x9d, - 0xc9,0x6e,0x77,0x3c,0x39,0x36,0x48,0x7b,0xee,0x16,0xe4,0x13,0x12,0x3e,0x03,0x51,0x64,0x6b,0x6b,0x33, - 0x7c,0x77,0x00,0x47,0xe2,0x69,0xf8,0xb9,0x08,0xf6,0x3f,0xe8,0x3a,0x56,0x87,0x85,0x8b,0xe4,0xc7,0x86, - 0xdf,0x25,0x7a,0xde,0x71,0xe4,0x2a,0x02,0xf8,0x42,0x08,0x69,0x44,0xf3,0xd0,0x84,0xf4,0x1a,0x02,0xea, - 0x25,0x3e,0xf0,0xd8,0xd8,0x20,0x74,0xde,0x62,0xd7,0x96,0xc1,0x68,0x69,0x82,0xfe,0x1e,0x87,0xee,0xb9, - 0xb5,0x0c,0x6c,0x3a,0x6b,0x60,0xb7,0x78,0x26,0xd7,0x1f,0x1f,0xb6,0x51,0x1d,0xc0,0xbc,0x26,0x79,0x9c, - 0xa0,0xe6,0xdc,0x05,0x43,0xf5,0xd4,0x71,0xcf,0x0f,0x0e,0x3c,0xbe,0x4c,0xdc,0x6e,0x6b,0x91,0xfe,0xc1, - 0x41,0x6e,0x5b,0x26,0xa6,0x74,0x45,0xb5,0xfb,0xde,0x93,0x79,0x4f,0x46,0xd1,0xc3,0x6c,0xf7,0xd2,0xb2, - 0x07,0x27,0x33,0x3d,0x3a,0x03,0x7a,0x3c,0xd7,0xbd,0x44,0x44,0xa6,0x65,0x0f,0xe6,0x0f,0xbd,0x8b,0xf8, - 0x2a,0x91,0x02,0x92,0x9f,0x32,0x0f,0x88,0x0b,0xea,0x18,0xfb,0x2e,0x4e,0x07,0x5b,0xb0,0x26,0x06,0x10, - 0xce,0x43,0xdb,0x33,0xd2,0x75,0x02,0xac,0xe1,0xf9,0x6c,0x49,0x7f,0xa0,0x62,0x79,0x4b,0x7d,0xc2,0xdb, - 0xaf,0x46,0x1e,0xcc,0xa7,0xda,0xd3,0x12,0x52,0x6a,0x32,0x5c,0x43,0xf8,0x05,0x71,0xa6,0xf6,0xfa,0xaf, - 0x52,0x15,0x0f,0x52,0x5f,0x62,0x4f,0x60,0x6b,0xbc,0x8d,0x76,0x10,0xc5,0x94,0x5a,0xa2,0xc3,0xa5,0xe3, - 0x82,0x64,0x3b,0x7c,0xeb,0xd0,0x73,0x29,0xec,0x06,0x57,0x39,0xe4,0xe1,0xae,0x9c,0xa8,0x36,0x1f,0x76, - 0x6a,0x83,0x6b,0x39,0xc3,0xa4,0x42,0x0b,0xef,0xbd,0x1a,0x7d,0xc4,0xf8,0x79,0x9e,0xab,0xd6,0x67,0xe5, - 0xcd,0xe3,0xac,0xdf,0x67,0xf9,0x8c,0x77,0xa3,0xfd,0xbf,0x16,0xb8,0x56,0x70,0xae,0xf5,0x59,0x3d,0xc5, - 0xd3,0xba,0x62,0x05,0x2e,0xf3,0x51,0x97,0xb0,0xa4,0xf4,0x20,0x36,0x16,0xba,0x1e,0x6f,0xcb,0x3a,0x2c, - 0xc3,0x20,0xef,0x47,0xa9,0xb2,0xc9,0x22,0x93,0xd8,0x17,0xba,0x3b,0x0f,0x46,0x1e,0x3b,0x1b,0x0d,0xdf, - 0xd4,0x09,0x40,0x26,0x33,0xa2,0xf4,0xd7,0xe2,0x94,0xce,0x1b,0x9a,0x2e,0x48,0xb3,0xb9,0x78,0xc4,0x8e, - 0xb7,0xa2,0x25,0xef,0xfd,0x3f,0xdc,0xd7,0x11,0xf5,0x19,0x84,0x39,0xad,0x08,0x44,0x7e,0xd4,0x64,0x10, - 0xe2,0xaf,0xe1,0x38,0x3e,0x38,0x12,0x88,0x66,0x0c,0x7a,0xb3,0xb3,0x1a,0x15,0x0d,0x51,0x75,0x56,0x33, - 0x9f,0x4a,0x82,0x4f,0xb7,0x65,0x2b,0x66,0x38,0x1c,0xa4,0x6e,0x77,0x24,0x98,0x5b,0xf3,0xc2,0xb6,0xe1, - 0xa6,0x77,0x3c,0x75,0xc3,0xb4,0xbd,0x28,0x31,0x0d,0x28,0x9d,0x18,0x86,0x2f,0xd6,0xf7,0xd2,0xe0,0xac, - 0xa4,0xff,0xa1,0xe6,0x68,0x63,0xcd,0x9c,0x8b,0xd6,0x2b,0xf3,0x6d,0xba,0x23,0x3a,0x43,0x36,0x66,0x4a, - 0x87,0xe8,0x76,0x93,0x57,0x9d,0x1c,0x07,0x93,0x46,0x01,0xd3,0x5b,0xf9,0x15,0xb5,0x70,0x5b,0x5c,0x97, - 0x22,0x1a,0x37,0xed,0xf7,0xed,0xa4,0x6e,0x39,0xdc,0xdd,0x96,0x17,0x75,0x3f,0x3a,0xfa,0xcd,0x3f,0x9d, - 0x05,0xfd,0x23,0xf5,0x86,0x1f,0xaf,0xf1,0xf8,0x88,0xa6,0xe9,0x61,0x74,0xa2,0x5e,0x46,0x77,0xd5,0xab, - 0xe8,0x9e,0x7a,0x4e,0xef,0x4f,0xa3,0x4f,0xd5,0xeb,0xe8,0x33,0xf5,0x65,0xf4,0x57,0xf5,0x22,0xfa,0x9b, - 0x7a,0x12,0xfd,0x5d,0x3d,0x06,0x43,0xff,0x78,0xfc,0x7c,0x12,0xdd,0x5c,0x97,0x21,0xfd,0x2a,0x66,0x03, - 0xc3,0xf1,0x3d,0xf5,0x68,0xa2,0xbc,0xb1,0x17,0x8e,0x9f,0x4e,0x14,0x1d,0xf2,0xe1,0xf8,0xc5,0x64,0xab, - 0x1e,0x8f,0x4f,0x74,0xce,0x13,0xfa,0x3a,0xa0,0xaf,0x77,0x3b,0x73,0xdd,0xd5,0xb9,0xee,0x36,0xeb,0x3b, - 0xd6,0xbf,0xc2,0x55,0xca,0x0b,0xb2,0xdf,0xa3,0xec,0x1f,0xca,0xa7,0xb8,0x55,0xf5,0xd0,0xb4,0xcb,0x4f, - 0xdc,0x32,0x9e,0xa4,0x6d,0x7a,0x42,0x75,0x4f,0xa9,0x3a,0xef,0x0e,0x7d,0x7a,0x8d,0x72,0x77,0xbc,0x3b, - 0xe1,0xf8,0xcb,0x7a,0x38,0xea,0x25,0x3d,0x4d,0x3c,0x54,0xf6,0x4a,0x0a,0x3e,0x61,0x7b,0x3e,0x7c,0x92, - 0xee,0xbc,0x36,0xe5,0x91,0xd0,0xc8,0xf1,0x5a,0xe7,0xf8,0x92,0x72,0x70,0xbd,0x3b,0x39,0xd0,0x90,0x2c, - 0xcc,0x57,0x6c,0xf3,0x4c,0xa4,0x5a,0xb1,0x4e,0x36,0x6c,0xcb,0xb9,0x39,0x1c,0x8d,0x4f,0x67,0x83,0x49, - 0x7f,0x73,0x87,0x7d,0x60,0xdd,0xd9,0x78,0xec,0x16,0xcb,0x0b,0x28,0x1f,0x1c,0x13,0xdd,0x82,0xb6,0xba, - 0xb1,0xd6,0xf7,0x0e,0xd6,0x62,0x28,0x7b,0x41,0x87,0xda,0xae,0x84,0xca,0xc5,0x58,0x0e,0xc2,0x82,0x0a, - 0x69,0xd2,0x21,0xcf,0x32,0x61,0xef,0x62,0x84,0xf2,0xc1,0x86,0x5b,0x47,0x87,0x27,0x74,0x34,0x3e,0xe7, - 0xb8,0x77,0x17,0x00,0x17,0xec,0x99,0x8b,0xf1,0xc3,0x49,0xc3,0xb8,0xc3,0x9c,0x53,0x19,0xeb,0xf2,0x08, - 0xf4,0xc2,0x45,0xa1,0x7c,0x80,0xad,0xfe,0xf8,0x51,0x47,0x09,0x48,0x6a,0x47,0x59,0x54,0x84,0x59,0x9f, - 0x08,0x7f,0xca,0xf4,0xb2,0x91,0x09,0x85,0x88,0x32,0x9a,0x13,0xec,0xd3,0xb7,0x57,0x8d,0x6f,0xd0,0x88, - 0x7c,0x70,0x1c,0xcc,0x0f,0x0f,0xa9,0x7b,0x4f,0x95,0x64,0xb5,0x77,0x91,0xe8,0xed,0x1e,0xae,0x3e,0xfc, - 0x2c,0x9a,0xb1,0xcb,0x3c,0x2b,0x16,0x45,0xdf,0xa1,0x8e,0x39,0xd4,0x32,0xf0,0x25,0x3b,0x8c,0x5f,0xf7, - 0xfb,0xf0,0x9f,0xc8,0xca,0x42,0xf0,0xb9,0xb8,0xc6,0x8d,0xc5,0x5e,0x8b,0x9f,0xe6,0x0f,0xfd,0x13,0xc6, - 0xd6,0x10,0x1b,0xbd,0xa6,0x53,0xf9,0x0e,0xab,0x75,0x6d,0x36,0x78,0xff,0xf2,0xe0,0x80,0xc0,0x02,0xef, - 0xd6,0x77,0x37,0x55,0x4b,0xd8,0x9a,0x2a,0xee,0x27,0xba,0x8f,0x88,0xb0,0xec,0x07,0xda,0x8a,0x6b,0x05, - 0xb1,0x18,0xe8,0x9c,0x32,0x7a,0x3c,0x5e,0x4e,0x02,0xc2,0x3b,0x9b,0x4d,0xc9,0x8a,0xa0,0x9b,0xcd,0x13, - 0xc8,0x96,0x9f,0x18,0xad,0x20,0x6e,0x13,0x76,0x2c,0xca,0x8f,0xa3,0x8b,0x71,0x4e,0x7b,0x70,0x22,0xf7, - 0xb0,0x39,0x36,0x5a,0x11,0xd9,0x29,0x2d,0x46,0x90,0x21,0xf2,0xf0,0x89,0xff,0x09,0x1a,0x15,0x44,0xd1, - 0x0b,0xeb,0x1c,0x55,0x94,0xdd,0x2c,0x41,0x6a,0x60,0x84,0x7a,0xaf,0x12,0x90,0x5d,0x5b,0xe5,0x02,0xd9, - 0x22,0xa9,0x00,0x62,0x2c,0xc8,0x6d,0x9d,0x8d,0x90,0x91,0x27,0xb5,0x83,0xd6,0xfa,0x12,0xc6,0x78,0xdf, - 0x36,0xf0,0x09,0x8f,0xb5,0x3c,0xee,0xa2,0x45,0x61,0x20,0xbc,0x1b,0xba,0x6e,0xdc,0x69,0x37,0x6a,0x72, - 0xac,0x7d,0x6a,0x53,0x33,0x42,0xd2,0xda,0x05,0x77,0x3e,0x34,0x8e,0xb7,0xe3,0x71,0x31,0x2e,0x27,0xce, - 0x65,0x07,0x94,0xcd,0x82,0x1b,0x71,0x43,0xa5,0x6d,0x13,0xe2,0x68,0xaa,0xca,0x1a,0x99,0xc6,0xb2,0x5b, - 0x9f,0xdd,0xb2,0x73,0x86,0x35,0xff,0x87,0x79,0x82,0xb6,0xac,0xbd,0x5d,0x12,0xe2,0x71,0xb3,0xf1,0x92, - 0xec,0xf0,0xc7,0x97,0x1e,0xcb,0x73,0x9b,0xbc,0x76,0xfd,0x8d,0x2d,0x92,0x34,0x8b,0xcb,0xe4,0xa5,0x0e, - 0x63,0xee,0xc8,0x80,0x24,0x1d,0x56,0x94,0x99,0x23,0xe2,0xe1,0xd4,0xa1,0x76,0x65,0x7d,0x29,0x17,0x7c, - 0xf2,0x36,0xe7,0xef,0x15,0x58,0xcd,0x81,0x7d,0xde,0x6c,0xc0,0x28,0xbf,0xd5,0x59,0x2e,0xd3,0x12,0xae, - 0x40,0xd0,0xb6,0x3c,0x89,0xc0,0xd3,0x78,0x97,0x66,0xa1,0x02,0xcb,0x16,0x1a,0xe9,0xe0,0x6a,0x23,0x87, - 0xef,0x15,0x96,0x77,0x6f,0x4f,0x9e,0x4c,0xeb,0x7a,0xa0,0xac,0x0f,0xe5,0x64,0x76,0xd3,0xa5,0x90,0x9b, - 0x62,0x5a,0xe8,0x94,0x3d,0x58,0x24,0x52,0x75,0x4b,0x1d,0x88,0xc4,0xdd,0xbb,0xe5,0x93,0xae,0xb7,0x39, - 0xa1,0xb8,0x79,0x07,0x61,0x2f,0xdf,0xdc,0x49,0x6d,0x7e,0x01,0x37,0xc0,0xf2,0x85,0xef,0xeb,0x6a,0xe2, - 0xda,0x5d,0x00,0x21,0x41,0x49,0xe6,0xfb,0x83,0x16,0xe4,0x6b,0xac,0xe2,0xef,0x61,0xb0,0xd9,0x66,0x53, - 0xf8,0x89,0x54,0xd8,0xd8,0x2e,0x12,0x4e,0xdb,0x18,0xa5,0x9f,0xc1,0x69,0xec,0x4f,0xcf,0x7c,0x73,0xdf, - 0x99,0xa9,0x26,0xd4,0x84,0x70,0xdf,0x28,0xa0,0x42,0x64,0x57,0x0b,0x48,0xc2,0x58,0x35,0xc0,0x23,0x2c, - 0x89,0x22,0x53,0x3f,0x44,0x37,0x57,0x97,0xe1,0xcd,0xb6,0x2e,0x48,0xcf,0xed,0x92,0x94,0xd4,0x2c,0x7a, - 0x53,0x73,0x78,0xdb,0x76,0x1f,0x50,0x97,0xc0,0x0c,0x7f,0x34,0xd3,0x86,0x97,0xce,0x15,0xa0,0x0f,0x5b, - 0x73,0xb8,0x3c,0x73,0x5d,0x0f,0xcb,0x60,0x3b,0xb6,0xd7,0x85,0xf1,0x05,0x2d,0xf5,0x0d,0x5b,0xef,0x90, - 0xbe,0xd4,0x60,0x4f,0xab,0x43,0x34,0x24,0x16,0x06,0xaa,0xb1,0xaa,0x9d,0x37,0xd9,0x2a,0xb7,0xd1,0x4e, - 0x76,0x7f,0xd7,0x17,0x42,0x73,0xa1,0x6b,0x75,0x33,0xb7,0xaa,0x5b,0x64,0x07,0x8d,0xca,0x5a,0x86,0x03, - 0xcc,0xed,0xb9,0x21,0x4c,0x32,0xc7,0x56,0x53,0x82,0xda,0x65,0x0f,0x0e,0x4f,0x02,0xb9,0x9f,0x9e,0x42, - 0x8e,0x09,0x05,0x49,0xbf,0xa3,0x4f,0xaa,0xdd,0x9d,0x86,0x6c,0xab,0x6d,0x5e,0x29,0x22,0xc2,0x86,0x4b, - 0x70,0x9a,0xbc,0xc1,0x3e,0x17,0xf2,0xbd,0x7d,0x54,0xdd,0x08,0x51,0xe1,0x1a,0x34,0xb4,0x26,0xc3,0xb5, - 0x6f,0xb8,0xe8,0x74,0x8a,0xdc,0x2e,0x42,0x8c,0x20,0x3b,0x41,0x6f,0x27,0xee,0x04,0xbe,0xd8,0xaa,0x9b, - 0x59,0x92,0xac,0x44,0x35,0x79,0x77,0x74,0x5a,0x8c,0xd9,0x3c,0xea,0xf7,0x6a,0xd4,0x44,0x1b,0xad,0xc6, - 0x5f,0x3b,0x27,0x4e,0x65,0x62,0x99,0x5c,0x36,0xe7,0x81,0x05,0x64,0xce,0x64,0x08,0xe0,0x3b,0xb3,0xc1, - 0x9e,0x3d,0xf6,0x89,0xfd,0x85,0x15,0x8b,0xf9,0xca,0x7e,0xf9,0x5b,0xfd,0x57,0x37,0xe9,0x25,0x91,0xea, - 0x29,0xe4,0xed,0x32,0x84,0x1f,0x50,0x31,0xed,0x77,0xb7,0xcf,0xad,0x45,0x40,0x26,0xb3,0x37,0x6f,0xc9, - 0x1a,0x6b,0x00,0xa0,0xaf,0x5a,0xc0,0x5d,0xb2,0x07,0xf0,0x1f,0xda,0xe7,0xc4,0x87,0xcb,0x37,0x2f,0x17, - 0x4c,0x35,0x8d,0xcd,0xff,0xe1,0x4a,0xdc,0x8b,0x06,0x53,0x85,0xcc,0xcb,0x07,0xc6,0x6a,0x2e,0xdd,0xeb, - 0xfc,0x65,0x52,0x75,0xec,0x3e,0xac,0x06,0xcf,0xb7,0x7e,0xab,0xa7,0xbd,0xe2,0xc6,0x9a,0x18,0xe9,0x43, - 0x8d,0x36,0x73,0x77,0x94,0xff,0xd8,0x4e,0x34,0x8b,0x99,0xce,0x68,0x64,0xf8,0xde,0x5e,0xe8,0x3c,0x6e, - 0xf6,0xee,0x46,0xed,0xb9,0xcc,0xdd,0x34,0xb8,0xf5,0xbd,0x75,0xdb,0x5c,0xcd,0x22,0xdd,0xf5,0x3b,0xa4, - 0x01,0xb2,0x77,0x22,0xec,0xf7,0xb6,0xd6,0x59,0xe2,0xf6,0xaa,0xba,0x7b,0x71,0xcb,0x0d,0x43,0x73,0xcb, - 0xbb,0xe0,0xfe,0xbe,0xe5,0x35,0x9b,0x67,0xb7,0x74,0x0b,0xd8,0xdf,0x57,0x49,0x6b,0x23,0xed,0xd6,0xd5, - 0x80,0xf9,0xf7,0xd5,0xd4,0xd8,0x4b,0xad,0x7a,0xa0,0x5c,0xa6,0xbd,0x3a,0x35,0x74,0x8d,0x88,0xb9,0x4a, - 0x6d,0x4d,0x30,0xf0,0xd6,0x72,0x7c,0x0d,0x0d,0x5a,0xe8,0x6f,0x20,0x47,0x2e,0xe4,0x99,0x2c,0x1b,0xa3, - 0x70,0x3a,0x81,0xe1,0x46,0x98,0xb5,0x1a,0x4b,0xcb,0xaf,0x5c,0x4a,0xac,0xc3,0x25,0x0e,0x8c,0xa6,0x0a, - 0xdf,0x41,0x99,0xba,0xa1,0x06,0x09,0xd7,0xae,0xb5,0x5b,0x0c,0x96,0x18,0xde,0x50,0x93,0xfc,0x3b,0xd8, - 0x77,0x1a,0xd5,0x24,0x55,0x93,0x02,0x4a,0x74,0xdc,0xdd,0x26,0xd9,0x3f,0xb5,0x2c,0xc3,0x54,0x0c,0x86, - 0x58,0x15,0xd3,0x44,0x24,0xde,0x63,0x05,0x02,0xb7,0x0d,0x47,0x3b,0xd5,0x5c,0x92,0x22,0x52,0x38,0x71, - 0x4d,0x8d,0x7c,0x5b,0xc3,0x06,0xee,0xe8,0x89,0x4d,0x1b,0xd5,0xad,0xa3,0xa9,0xe1,0x03,0xd6,0xb5,0xf5, - 0xf4,0xbf,0x85,0x5e,0xc0,0x5e,0x4a,0x7c,0x13,0x18,0x0b,0x0e,0xc7,0x79,0xf8,0x6b,0x3d,0x7c,0x98,0x8b, - 0x9a,0x10,0x2d,0x1c,0xa1,0x60,0xcd,0xc9,0xe1,0xba,0x35,0x8f,0x28,0xd8,0x86,0x01,0x37,0xa4,0x74,0x94, - 0x29,0xe8,0x38,0x8b,0xaf,0x82,0x23,0xff,0xdf,0xc2,0xf1,0xe9,0xf5,0xe9,0xe1,0xd9,0x66,0x30,0xe9,0x07, - 0x47,0x8b,0x5a,0xdb,0x7c,0x0a,0xcd,0x87,0x12,0x7c,0x6a,0xd9,0xba,0x72,0xe6,0xb9,0x12,0x75,0x8f,0x72, - 0x3c,0x45,0xbc,0x9f,0xb5,0xb6,0xee,0xf6,0xef,0x06,0x70,0x16,0xa0,0x29,0x4e,0xbb,0x9e,0xdc,0x8b,0x25, - 0xf5,0xc2,0x2b,0xe2,0x6b,0x2d,0xc4,0xd3,0xb3,0x44,0x84,0x67,0x9d,0x28,0xd4,0x78,0x28,0xee,0x11,0x74, - 0x2d,0x0d,0x58,0x83,0xc5,0x9f,0x73,0x34,0x33,0x68,0xb1,0xab,0xa3,0xde,0x97,0x50,0x68,0x87,0xc8,0x4d, - 0x2c,0xbd,0x93,0x59,0x8f,0x55,0xdc,0xb5,0x0f,0xc3,0x55,0x54,0x17,0x18,0xce,0xa3,0x95,0x0e,0x9b,0xc2, - 0x7d,0x5b,0xb5,0x8e,0x3f,0x44,0x25,0x17,0x11,0xfd,0xaa,0x7d,0x8d,0xb9,0xd4,0x13,0x49,0x0c,0x9d,0x6f, - 0x86,0xe9,0xec,0x3c,0x1a,0xe6,0x52,0xcd,0xa1,0x68,0x34,0x8a,0xad,0x49,0xf4,0x5a,0xcd,0x83,0x30,0xae, - 0x59,0xbf,0xe6,0x62,0x69,0x45,0xdb,0xe6,0x72,0x35,0x05,0xbf,0x35,0xe2,0x6d,0xce,0xa8,0x0d,0xc4,0x52, - 0x6b,0x01,0x45,0xc9,0xa8,0xd0,0x16,0x66,0x88,0x97,0xde,0x6a,0xcb,0x0e,0x79,0x07,0x43,0x98,0x0d,0xe6, - 0x6e,0x27,0xb7,0xb1,0x44,0xc1,0xaa,0xd4,0xe6,0xb3,0x12,0x68,0x02,0x84,0x11,0xfd,0xe9,0x28,0x41,0xdc, - 0xd1,0x38,0xab,0x4b,0xe8,0x80,0xf3,0xd3,0x70,0xda,0xee,0xd3,0x0e,0xa4,0xd6,0x14,0xa2,0xf6,0x3f,0xd4, - 0x56,0x33,0x3c,0xfc,0x74,0x18,0x1f,0x1e,0xf6,0x1e,0x1c,0x0f,0x03,0xa8,0xfe,0x39,0x2a,0xa9,0x71,0xff, - 0x53,0xe6,0xc3,0xf7,0xac,0x6a,0x8d,0xa7,0xaf,0x5f,0x52,0x8d,0xda,0xb4,0x3b,0x84,0x1c,0x96,0x7e,0xa5, - 0x65,0xa6,0x13,0x1b,0x8d,0xae,0x86,0x8a,0x4c,0x69,0xae,0xb3,0x7d,0x93,0x0d,0x28,0xd6,0x13,0xae,0x58, - 0xca,0x10,0x5f,0x96,0xb7,0xc3,0xeb,0xfa,0x8f,0xc3,0xab,0xd6,0x69,0x59,0x3a,0x20,0xdb,0x50,0x96,0xaa, - 0xac,0xb2,0x54,0x5e,0xdb,0xd7,0xef,0xc2,0x22,0x75,0x9f,0x50,0x47,0xa1,0xfd,0x40,0x37,0xa7,0xbd,0x89, - 0xb3,0x5b,0xd7,0x06,0x3b,0xf3,0x7d,0x02,0xfd,0x5f,0x9e,0xef,0xa4,0xa5,0x02,0x0c,0xb1,0x94,0xee,0xae, - 0x40,0x6b,0x40,0x53,0xa8,0x7b,0x5a,0xe0,0x08,0xe1,0x6e,0xe9,0xdd,0xd4,0x41,0x69,0xb2,0x51,0xb6,0x1d, - 0x4e,0x62,0xcc,0x85,0xda,0x07,0x43,0x07,0x36,0x33,0xda,0x71,0xbb,0xcb,0x96,0xdc,0xbe,0x6c,0xc0,0x33, - 0xfa,0x48,0xe8,0x5c,0xac,0xfc,0xcf,0x2e,0x96,0x4b,0xef,0xa7,0x72,0x66,0xbd,0x67,0x65,0xd0,0x9b,0x5c, - 0x15,0x2d,0x3e,0xa4,0x3d,0xca,0xfa,0xfc,0x1f,0xed,0x1e,0x29,0x89,0xa8,0xf7,0xd5,0xb3,0x6b,0xaf,0x6b, - 0xb9,0xf0,0x6d,0x53,0x0d,0x89,0x40,0xe8,0x79,0xed,0x3d,0x38,0xed,0x9c,0x60,0x6b,0x75,0x24,0xe6,0xbb, - 0x3b,0x60,0xf1,0xd9,0xb0,0xd4,0x60,0x11,0x8f,0x4b,0x17,0x2c,0xca,0xfe,0x67,0xb5,0xc6,0xde,0xa8,0x96, - 0x8a,0xa5,0xac,0x78,0x7d,0x12,0xa8,0xdc,0xd7,0x38,0xc3,0x01,0x97,0xa9,0x50,0x1c,0xd4,0xb6,0x85,0x87, - 0x98,0x8e,0xbc,0x94,0x3b,0x2c,0xe7,0x7c,0x0b,0x86,0x9b,0xbd,0x76,0x95,0x96,0xc7,0x90,0x4c,0xee,0xf4, - 0xf7,0xee,0xb0,0xd0,0xfd,0x65,0xff,0x08,0x75,0x7f,0x8b,0xfe,0x5d,0x0b,0xc6,0xa9,0xed,0xd7,0x54,0x77, - 0x2c,0xfd,0x58,0x38,0x56,0x89,0xed,0xb9,0x09,0x34,0x93,0xb6,0x67,0xba,0x8d,0x7a,0x1d,0x53,0x69,0xb1, - 0x50,0xdb,0xe9,0xf5,0xbd,0x61,0xae,0x7b,0x5d,0xc0,0xc6,0xa8,0xee,0x75,0xde,0xbf,0x67,0xae,0xd8,0x5a, - 0xd8,0xad,0x08,0x6a,0xcc,0xd6,0x04,0x50,0x96,0x26,0xe1,0x8a,0x67,0xb2,0xc3,0xe4,0x57,0xb7,0xe9,0xa8, - 0xcb,0x06,0xc3,0x81,0xf3,0xa1,0x49,0x48,0x5a,0x55,0xd2,0xd7,0x86,0xee,0x54,0x07,0xa1,0x68,0x79,0x3f, - 0x87,0xda,0x26,0x04,0x07,0xf9,0x63,0xab,0xb2,0xf2,0xf6,0xca,0xd8,0x41,0x66,0x47,0x2d,0x6d,0x09,0xcd, - 0xae,0x36,0xd7,0xc7,0x54,0x72,0x31,0x58,0x57,0xe9,0x72,0x20,0x3e,0x11,0x6f,0xed,0x6d,0xd7,0xe0,0x9b, - 0x4c,0xc2,0x07,0x46,0xdf,0x62,0x13,0x6e,0x9d,0x84,0x5b,0x2b,0x6d,0x0c,0x60,0xb7,0xb6,0xce,0xc9,0xf8, - 0xd3,0x95,0xdd,0x32,0x29,0xdd,0x83,0xd8,0x99,0x1b,0xd1,0x34,0x49,0x7f,0xb7,0xed,0x77,0x10,0x24,0x86, - 0x58,0x85,0x97,0xc1,0x94,0x00,0x16,0x48,0x9b,0xa8,0xf4,0x32,0x80,0xbc,0x13,0xc6,0xa6,0x7c,0x89,0x20, - 0xc4,0x2c,0xbe,0xc3,0x25,0x98,0xfb,0x71,0x97,0x4b,0x40,0x3a,0xac,0x0b,0xfa,0xde,0xd9,0x19,0x22,0x25, - 0x98,0x03,0x76,0x57,0x80,0x3b,0x5e,0x5b,0xfc,0x05,0x7f,0x4e,0xef,0xcd,0xc8,0x62,0xc2,0x0e,0xed,0x4a, - 0x3f,0x86,0xd2,0xb1,0x5a,0x6a,0xbe,0x79,0x47,0xc6,0x77,0x36,0xdb,0x41,0x05,0xcc,0x7d,0xd8,0x8e,0xdf, - 0x52,0xad,0x28,0x2c,0x4a,0x8d,0xee,0x75,0xc7,0xce,0x9c,0xd6,0x07,0x41,0xfb,0x28,0xbc,0x55,0x62,0xa3, - 0xb2,0xdb,0xcf,0xc6,0xe2,0xbf,0xe3,0x6c,0x14,0x17,0x85,0x89,0x3d,0x1b,0x0b,0x98,0xf8,0x37,0xe7,0x65, - 0xd6,0x49,0x9a,0xdc,0x86,0xd3,0x4f,0x6e,0xc7,0xe9,0x27,0x13,0x6d,0x58,0xe1,0xa2,0xad,0x7c,0xc7,0x4c, - 0xc9,0xd8,0x3f,0x8c,0x76,0x74,0xe9,0x61,0xa8,0x3d,0x92,0xe8,0xcf,0xb8,0xe4,0x87,0x61,0x11,0x47,0x2d, - 0x81,0x77,0x08,0xae,0x8d,0x8f,0x33,0xe7,0x1d,0x71,0x49,0xe9,0x85,0xa3,0xae,0xfa,0x52,0x90,0x03,0xae, - 0x8a,0xf9,0x52,0xf6,0x1e,0xf3,0xa5,0x4c,0xcc,0x97,0xa4,0x4c,0xa0,0x3a,0xbe,0x9f,0x4c,0x74,0x6b,0x6c, - 0xb5,0xa4,0xe1,0x11,0xc1,0xed,0x39,0x72,0x69,0x0b,0xf1,0xb8,0x12,0x85,0x0f,0xa0,0x9d,0x86,0x4c,0xe1, - 0x56,0xa4,0x73,0x4b,0x85,0x0d,0x2c,0xd1,0xae,0xa9,0x13,0xe1,0xfc,0xa9,0x8a,0x6e,0x41,0x36,0x5d,0x5d, - 0xbf,0x1d,0xd5,0x48,0xcb,0xff,0xaf,0x22,0x9a,0xf6,0x6d,0xd0,0x2d,0x68,0xa6,0x23,0x5b,0x8d,0x64,0xdc, - 0x09,0xfc,0x20,0x8a,0xc9,0x3e,0x12,0xc5,0x34,0x2a,0xfd,0x20,0x82,0x91,0xdc,0x1f,0x46,0x2f,0x2d,0x59, - 0xee,0xff,0x75,0xe4,0x92,0x7d,0x18,0xb9,0x74,0xbb,0x56,0xfa,0xff,0x91,0x4b,0x07,0x72,0xc9,0x2c,0x72, - 0xd1,0x9a,0x20,0x62,0x28,0xa0,0x45,0x40,0x29,0x11,0x7c,0xce,0xc4,0xaa,0x1f,0x02,0x9a,0xe7,0xf8,0x2a, - 0x4e,0x97,0xf1,0x79,0xba,0x4c,0xf1,0x3d,0xba,0x69,0x9e,0x97,0xe1,0xbb,0xc6,0x4d,0x60,0x78,0x86,0xa5, - 0x61,0x8d,0xde,0xe5,0xd2,0x8d,0xdb,0x0b,0x5f,0x0c,0x17,0x11,0x41,0xe1,0x15,0xc1,0x3e,0x25,0x1d,0x1c, - 0x68,0x80,0xbb,0x30,0x29,0xc6,0xc4,0x72,0xe0,0x05,0x3c,0xa2,0xca,0x54,0x23,0x21,0x99,0xba,0xfa,0xfb, - 0x8e,0x4a,0xd7,0xbd,0xf5,0xf6,0x45,0x7f,0xf5,0x86,0xa0,0x34,0xbc,0x4d,0xe0,0x8a,0x2c,0x70,0x62,0x93, - 0x45,0x17,0xb7,0x54,0x99,0x35,0xaa,0xac,0x76,0xeb,0xdb,0xbd,0x1f,0x73,0x6f,0x7e,0xfe,0x5b,0xc0,0x4f, - 0xeb,0xad,0x1a,0x8b,0xec,0x9a,0x9f,0x22,0xb6,0x85,0xb8,0x50,0x6b,0xf6,0xd5,0xa6,0xd5,0x2b,0x97,0x57, - 0xd9,0x6e,0x6b,0xab,0x88,0xf7,0x8f,0x71,0xfa,0xc7,0x06,0xb9,0xc3,0xe0,0xa4,0x5d,0x6c,0x59,0x6a,0x19, - 0x9c,0xd4,0x1d,0x66,0x0a,0xb6,0x4c,0x73,0xf9,0xcd,0x61,0xe6,0x0e,0x7b,0x96,0x63,0x9c,0xd6,0x3a,0x2d, - 0xdf,0x19,0xa7,0xca,0xec,0x48,0x8b,0x3f,0x32,0xd2,0xe4,0x8f,0x8f,0x54,0x23,0xcb,0x66,0x5f,0x0b,0x66, - 0x9e,0x12,0x65,0xf5,0x7e,0x8b,0x1d,0xde,0xf1,0xe3,0x7b,0x35,0xfb,0x9f,0x85,0xb1,0x9a,0x27,0x36,0x36, - 0x7b,0x33,0x07,0xba,0x3a,0xb8,0xdd,0x8f,0x1d,0x47,0xc7,0xde,0xfb,0x9f,0x1d,0x47,0xf6,0xe1,0x71,0xc0, - 0xe6,0xfa,0x6d,0x9a,0xf9,0xe7,0x78,0xb4,0xc6,0x7f,0xbe,0x87,0x7d,0xce,0x11,0x1a,0xa6,0x3a,0xaa,0x3b, - 0x3b,0x0e,0xbb,0xa8,0xe3,0x8f,0xf9,0xd7,0xe2,0x66,0xf1,0x5a,0x6b,0xed,0x50,0x7f,0xad,0xea,0x80,0x18, - 0x45,0x3d,0x03,0x29,0xf4,0xb2,0x2a,0xa8,0xf0,0x82,0x30,0xe5,0xb0,0x10,0xfb,0xa8,0x62,0xa0,0xa3,0x89, - 0x03,0x33,0x6a,0x5c,0x17,0x79,0x7f,0x1b,0xdc,0x1b,0xdc,0xf3,0x54,0x97,0xa9,0x96,0x44,0x7a,0x3e,0x38, - 0xd0,0x11,0x9f,0x7f,0x42,0x0c,0x9a,0xfa,0x79,0xb0,0x2e,0x13,0xff,0x19,0x21,0x66,0xad,0x3e,0x64,0xad, - 0x5d,0x6e,0x92,0x2c,0xbc,0xe1,0xa8,0x9a,0xa1,0xf7,0xb2,0x8a,0xd3,0xa2,0xf4,0x54,0xf9,0xae,0xac,0x92, - 0xcb,0x27,0x8f,0x29,0x85,0x9f,0x7a,0x4f,0x1e,0x7b,0x6a,0x9e,0x16,0x97,0xd7,0x71,0x91,0xfc,0x24,0x7d, - 0x09,0xbd,0xaf,0x74,0x42,0x4f,0xf7,0x2e,0xec,0x79,0x6a,0x9a,0xaf,0xde,0x49,0xe4,0x0c,0xef,0x91,0x79, - 0xec,0xfd,0xd7,0x7f,0xf6,0xee,0x1e,0x9f,0xfc,0xad,0xf7,0x2c,0x2e,0xde,0xf4,0xae,0xe2,0xac,0xf7,0x43, - 0x92,0x95,0xd7,0xf9,0x7a,0x46,0xdb,0x6a,0x99,0xc7,0xf0,0xb8,0x15,0x7a,0x2f,0x96,0x09,0x0c,0x07,0x39, - 0x9a,0x41,0x4f,0xa7,0xf6,0x64,0xa2,0x74,0xc8,0xf7,0xc1,0x60,0xe0,0x29,0x5e,0xa9,0x2f,0x38,0xe8,0x46, - 0xe8,0x3d,0xc4,0x4b,0x23,0xed,0x65,0x7c,0xc5,0xb5,0xc9,0x2f,0x97,0xb8,0x4e,0xe7,0x29,0x0d,0xac,0x5a, - 0x97,0xe1,0x4d,0x3c,0x85,0x83,0xca,0x55,0x9e,0x66,0x95,0x1d,0xf4,0xc3,0x17,0xe8,0xf8,0x2c,0x2d,0xe3, - 0x73,0x3a,0x33,0x42,0xef,0xb1,0x7e,0x22,0x6a,0x81,0xbd,0x5d,0xe4,0x19,0xa2,0xd3,0xd9,0xec,0x3f,0xa7, - 0x5f,0xa5,0xb7,0x14,0x50,0x29,0x02,0x8d,0x78,0x4f,0x66,0xb8,0xb4,0xcd,0xf2,0x97,0x2f,0x79,0x06,0xe9, - 0x6f,0x0f,0xa6,0xa1,0xf3,0x9c,0x16,0x8d,0xe6,0x76,0x1a,0x67,0x08,0x20,0x01,0x53,0x0b,0x2a,0xfc,0x92, - 0x5e,0x7b,0x53,0xf3,0x8e,0x09,0xcc,0x32,0x02,0xae,0xaf,0xe8,0xf0,0xc4,0x67,0xf9,0xed,0x55,0x79,0x4f, - 0x7f,0xb0,0x39,0xa8,0x5f,0x4f,0xf3,0x92,0xe7,0xd9,0xbc,0xd3,0xb4,0x95,0x15,0xf7,0x4c,0xe7,0xd1,0xbd, - 0xb3,0x6f,0x88,0xcd,0x51,0xea,0xa9,0xa8,0xe2,0xf3,0x57,0x76,0xd5,0x29,0xc5,0x53,0x7a,0x80,0x8f,0x24, - 0xc0,0x4b,0xaf,0xd4,0xc9,0x74,0x94,0xbe,0xac,0x92,0x55,0xf9,0xaa,0x58,0x23,0x73,0x52,0xf5,0x20,0xda, - 0x47,0x94,0xf9,0x77,0x34,0xa6,0x82,0xf5,0xfa,0x4b,0x64,0xa8,0xb3,0x7e,0x05,0x65,0xd3,0x76,0x5e,0xb8, - 0x56,0xbb,0x4a,0x67,0x6b,0x04,0x91,0xa0,0xb9,0x25,0xba,0x03,0xc1,0x23,0x1a,0x3d,0x79,0xa5,0xd3,0xd0, - 0x97,0xcb,0xc4,0x24,0xd2,0xa3,0x24,0x3c,0xc1,0x95,0x42,0x46,0x98,0xc2,0x00,0x0b,0x4d,0x2b,0xcc,0x55, - 0xe2,0xaa,0x87,0xcf,0x3d,0x53,0x65,0x4f,0x9b,0x90,0xf4,0xe2,0x8c,0xdb,0x47,0x99,0x5e,0x3d,0x6d,0x04, - 0x13,0x97,0x39,0x1e,0x74,0x03,0xcf,0xf8,0xc5,0xdb,0x3a,0x33,0xeb,0x76,0xaa,0x9e,0xdf,0x7a,0x8a,0xea, - 0x29,0x67,0x91,0x7f,0x52,0x71,0xa7,0x5d,0xe8,0xf2,0xbe,0xcc,0x00,0x14,0x3d,0x49,0xeb,0x71,0x62,0x23, - 0xc7,0x37,0x9c,0xeb,0xe1,0x72,0x99,0x5f,0x97,0x32,0x8f,0xda,0xa8,0xd8,0xe9,0x69,0x6f,0x5e,0xe4,0x97, - 0xbd,0x77,0xf9,0xba,0xe8,0xcd,0x92,0xab,0x74,0x9a,0x00,0x10,0x80,0x15,0x7b,0xb2,0x53,0xb5,0x4b,0x14, - 0x2e,0xde,0xd8,0x2a,0xbd,0xd5,0xba,0x58,0xe5,0x65,0x52,0x0e,0x7a,0xaf,0x2e,0x12,0x93,0xbb,0x99,0x85, - 0x6a,0xd1,0x34,0x1a,0xd5,0x40,0xef,0x17,0x55,0xb5,0x0a,0x8f,0x8e,0x4e,0x3e,0xbf,0x3b,0x38,0xf9,0xeb, - 0xdf,0x07,0x27,0x83,0x4f,0x8f,0x7a,0xd7,0x17,0x49,0x86,0xf6,0x7b,0xd8,0xe6,0x16,0x8c,0xd0,0x8b,0xb4, - 0xa2,0xaa,0x99,0xca,0xa8,0x7a,0xf9,0x7c,0xde,0x8b,0xcb,0x5e,0x99,0xc3,0xc9,0x44,0xd9,0xd3,0xbb,0x06, - 0x9d,0x4b,0xd0,0x8a,0x69,0x36,0x99,0x29,0x7c,0xa6,0x02,0x94,0xc8,0xc6,0xd2,0xc9,0x14,0xa9,0xb8,0x59, - 0x8c,0xb3,0x77,0xb4,0xf5,0xdf,0x0d,0x7a,0xbf,0x50,0x63,0xd8,0x12,0xf1,0x92,0x5e,0xcb,0x9e,0x25,0xc1, - 0x7a,0x82,0x2c,0x7b,0xe0,0x12,0xd0,0xdb,0xf3,0x77,0x3d,0x68,0x4b,0x01,0x49,0x54,0x17,0xcd,0x69,0xee, - 0xe9,0x98,0x3c,0xeb,0x8c,0x18,0x45,0xfe,0xfa,0xf4,0xcb,0xc7,0xbd,0x25,0x50,0x51,0xd9,0x5b,0xaf,0x68, - 0xf9,0xdd,0x7d,0x6d,0x16,0xca,0xed,0x75,0x23,0x87,0x2c,0x94,0x5e,0xf2,0xae,0xd9,0xa7,0xd9,0xe0,0x25, - 0xca,0xaf,0xb3,0x1e,0xb0,0x43,0xaf,0x60,0x97,0x41,0x83,0x9e,0x86,0x52,0x8e,0x04,0xc5,0xfd,0x00,0x2e, - 0x50,0x04,0x32,0x25,0x61,0xbf,0x62,0x46,0x83,0x9e,0xd1,0xb9,0x56,0xd0,0x97,0xf6,0xf2,0x9d,0x27,0x04, - 0x16,0xe8,0x68,0x99,0xce,0x04,0x85,0x78,0xca,0x14,0x23,0xe8,0xd7,0x4f,0xb4,0xd5,0x2f,0xa6,0xab,0xd0, - 0xfb,0x91,0x1a,0x79,0xfc,0xcd,0xa3,0x17,0xf2,0xae,0x01,0x6b,0x5d,0xe5,0x97,0xf0,0xd5,0x83,0xed,0x46, - 0xd3,0x5e,0xa6,0x8b,0xac,0xc4,0x86,0x78,0xf2,0xa2,0xa7,0x83,0x4a,0x77,0x03,0x93,0x2c,0x01,0x9d,0xcf, - 0xe7,0x34,0x2d,0x58,0x14,0x9a,0x50,0xca,0xf8,0x26,0x49,0x56,0x7a,0x21,0x30,0xb3,0x4b,0x94,0x07,0x60, - 0xc0,0xa6,0x81,0xc0,0x84,0xb6,0x20,0xbd,0xdd,0x21,0x28,0x99,0xe5,0x40,0xbc,0x84,0x0b,0x57,0xba,0x19, - 0x42,0x88,0xb6,0x49,0x1a,0xd1,0xfa,0x9c,0x76,0xe3,0x65,0x5c,0xbe,0xa1,0x71,0xf1,0x73,0x0f,0x2f,0x9e, - 0x5a,0xd0,0xf9,0x47,0x4b,0x1e,0x7a,0x5f,0xcb,0x83,0xa7,0x2e,0x08,0x9b,0x89,0x81,0xd9,0x37,0xfa,0xa9, - 0x4e,0x7b,0x51,0x3b,0x44,0x25,0x14,0xa7,0x6d,0xca,0xa8,0xa6,0xa9,0x6d,0x69,0xab,0x4f,0xb1,0x06,0xa6, - 0xe3,0x14,0xc2,0xcd,0xd5,0xca,0x41,0x2e,0x3d,0xe8,0x74,0x11,0x83,0x99,0x11,0x1e,0xe7,0xd9,0xf7,0xbf, - 0x7f,0xf5,0x22,0xa0,0x09,0x27,0x46,0x42,0x67,0xfb,0x26,0x2e,0x66,0x7c,0xd4,0x51,0x5a,0x8e,0xc8,0x7a, - 0x97,0xf1,0xca,0x7c,0xfb,0x3a,0xcf,0x17,0x04,0x05,0xcf,0x28,0xa5,0xf7,0xf0,0xc5,0x93,0xfa,0xa0,0xd4, - 0xdf,0xed,0x31,0x29,0x04,0x02,0xb7,0xfe,0x94,0x58,0x1e,0x8f,0xfe,0xa4,0x15,0x1f,0x82,0x48,0xc1,0xa9, - 0xf5,0x34,0xcf,0x16,0x4e,0x12,0x91,0x88,0x8c,0x8c,0xbc,0xaf,0x69,0x96,0x96,0x3a,0x77,0xef,0x88,0xd0, - 0xbc,0xce,0x26,0xf8,0x61,0xa9,0xf3,0x35,0x0a,0xbd,0x4c,0xe2,0x62,0x7a,0x01,0x1c,0x8c,0x5f,0x1e,0x0c, - 0xed,0x02,0x3a,0xeb,0xbc,0x87,0xb2,0x55,0x5e,0xf0,0x56,0x11,0x24,0xcf,0x1b,0x84,0x72,0xf4,0xfc,0x3e, - 0x91,0x17,0x57,0x81,0xc9,0xfe,0xf2,0xd5,0x43,0x39,0x1e,0x30,0x2b,0xcf,0xb0,0x9d,0xdf,0x93,0xff,0xe1, - 0x0b,0x73,0x2c,0xeb,0x1d,0xd5,0x68,0x48,0xef,0x49,0x2e,0xb4,0x22,0xc6,0x98,0x7a,0x7d,0x2d,0xe5,0x5e, - 0xfc,0xfc,0xec,0x71,0x41,0xc4,0x54,0xf1,0xf2,0x31,0xb5,0xf6,0xe2,0xd1,0xc3,0xcf,0xff,0xfa,0xf7,0xcf, - 0x7a,0x94,0xda,0x9b,0x71,0x72,0x8f,0xd2,0xa5,0x1c,0xf4,0xfa,0xda,0x65,0x1e,0x3d,0xed,0x2e,0xf3,0xe8, - 0xa9,0x94,0x99,0xc2,0x09,0x21,0x0a,0x5d,0x5f,0x3e,0x34,0xf0,0xd8,0x91,0xff,0xc9,0x7f,0xfd,0xaf,0x47, - 0x35,0x90,0x52,0xe6,0xaf,0x70,0x86,0x24,0xd9,0xf4,0x5d,0x67,0xf6,0xb9,0xf9,0x2a,0x90,0x40,0xcb,0xfe, - 0x5d,0xf2,0x6e,0x07,0x14,0x68,0xd3,0x34,0x32,0x5c,0xf0,0xce,0x7c,0xbe,0x12,0x2b,0xc9,0x41,0x4f,0x9f, - 0xb4,0xb4,0xcb,0xf2,0x8c,0xfe,0x10,0x85,0x36,0x63,0x54,0x6e,0x2e,0x30,0x81,0xdc,0x62,0xbb,0xbc,0x3d, - 0xc0,0xbd,0xa0,0xde,0x3b,0x65,0x27,0x38,0x28,0xda,0x88,0xe9,0xf4,0x82,0xf7,0xe5,0x75,0x4a,0x73,0x7c, - 0x49,0xbb,0x85,0x10,0xdf,0x9b,0xc4,0x34,0x31,0xcb,0x7b,0x70,0x66,0x39,0x20,0x3c,0x45,0x9f,0x09,0x87, - 0xbc,0xe9,0x21,0x88,0x14,0x81,0x34,0x50,0x83,0xee,0xb2,0xc2,0x62,0xf5,0xf4,0x58,0x2e,0x99,0x82,0x83, - 0xfc,0xa5,0x22,0x68,0x16,0x44,0xc7,0x83,0x2f,0xab,0x01,0xc8,0x89,0x6c,0x69,0x29,0xa3,0x57,0x45,0xbc, - 0xda,0xa1,0x1d,0x3f,0x8e,0x78,0x4c,0xfe,0x35,0xda,0xf1,0x4b,0x3a,0xa5,0xf2,0x45,0x92,0x9d,0xd3,0x58, - 0x7b,0x8b,0x84,0xd0,0x18,0x1d,0x35,0xe7,0xc9,0xef,0xe9,0x82,0xe8,0x5c,0x6c,0x9d,0x19,0x65,0xb8,0x62, - 0x42,0xcb,0x62,0xd9,0x64,0x97,0x9c,0x7c,0x95,0x27,0x40,0xb2,0x49,0xd6,0x49,0x52,0x7e,0x61,0xeb,0xcb, - 0x57,0xb4,0x3a,0x71,0xf6,0xa7,0xa8,0xcb,0x1f,0xd3,0x8a,0xa8,0xee,0xe9,0x45,0x4c,0x8b,0xf2,0xf1,0x24, - 0x66,0xb3,0x94,0xa6,0x33,0x5f,0x52,0x27,0x56,0xb0,0x81,0x9e,0xb5,0xa9,0xcd,0x94,0x3a,0xb9,0x48,0xae, - 0x72,0x62,0x12,0xb2,0x6e,0x8a,0x33,0x9e,0x13,0xa1,0x94,0x67,0xbb,0x04,0xe7,0x77,0xf4,0x71,0x91,0x60, - 0xba,0x92,0x42,0x3b,0x43,0x26,0xb4,0xfa,0x06,0xf5,0xb4,0x09,0xcf,0x9f,0xea,0x1c,0x94,0x79,0x99,0x17, - 0xc8,0xd4,0x24,0x3e,0xbf,0x47,0x4f,0x50,0x93,0x74,0xe5,0x63,0xc8,0xcf,0x6f,0xd6,0xe9,0x2c,0x5d,0x24, - 0xb7,0x90,0x9f,0x44,0x2f,0x81,0xce,0x4b,0xb0,0xa0,0xb3,0xe4,0xf7,0x64,0x39,0x07,0x8d,0xa1,0x69,0xcc, - 0x24,0xad,0x76,0x68,0xd0,0x57,0x92,0xd7,0x10,0x9f,0x49,0xb2,0x64,0xc3,0xf1,0x84,0xea,0xc9,0xfe,0x18, - 0x15,0xfa,0x7a,0xd6,0xa6,0x42,0x9f,0x32,0x2c,0xf4,0x08,0x2d,0xf5,0xae,0x72,0xec,0x5b,0xca,0x53,0x13, - 0xa1,0x49,0x52,0x53,0x9f,0x57,0x8d,0xa9,0x4a,0xe0,0x05,0x28,0x2d,0xdb,0x74,0xe8,0x17,0xc9,0x75,0x02, - 0xcd,0xee,0x5b,0x29,0xd1,0x7a,0xc2,0xed,0x6c,0x39,0x6b,0xe0,0xc2,0x76,0x8b,0x16,0x7d,0xe8,0x52,0x47, - 0x34,0x7c,0x01,0x24,0x86,0xf3,0x3a,0x9b,0x60,0xa7,0x67,0x71,0xfc,0xa6,0xea,0x5d,0xe0,0x58,0xa6,0x1d, - 0xb5,0x4c,0x5f,0x13,0xb5,0x75,0xc9,0x63,0x11,0xea,0xd4,0x92,0x81,0x69,0x82,0x1d,0x15,0xcf,0xf9,0x1b, - 0x6d,0x17,0xa2,0x83,0x69,0x1e,0xb2,0x38,0x2e,0x78,0x61,0x7a,0xc0,0x06,0x96,0x42,0x4a,0x04,0x86,0x50, - 0x15,0xad,0x57,0x9d,0x6a,0x49,0x43,0x38,0xab,0xed,0x3d,0x6e,0x96,0x22,0x5a,0x83,0xb2,0x9c,0x27,0x19, - 0x6d,0xdf,0x02,0x10,0x99,0xc6,0x9d,0x44,0x2a,0x7d,0xa7,0x96,0x5f,0xbb,0x3d,0xbb,0x48,0xce,0xb1,0x03, - 0x2e,0x31,0x98,0x41,0xef,0xa5,0x8c,0x57,0xfa,0x05,0x3a,0x92,0xce,0xe2,0x14,0x7d,0xe5,0x71,0xba,0x7d, - 0x20,0x02,0x15,0x81,0x74,0x7f,0x4f,0x35,0x78,0xc9,0x56,0x3a,0x4f,0xae,0x92,0x94,0xe8,0xc7,0x19,0x16, - 0xad,0xf7,0x6d,0xd2,0x7b,0x43,0xa4,0xa5,0x5b,0x5b,0x9e,0xbf,0x71,0xa7,0x95,0xd0,0x2c,0x41,0x03,0x20, - 0xc3,0x1e,0x82,0x32,0xf5,0x44,0x2c,0xad,0x30,0xa6,0x59,0xb1,0x7e,0x83,0xe9,0xa8,0xf2,0x0a,0x5d,0x9f, - 0x09,0x85,0x1a,0x63,0xeb,0xd1,0x24,0xb6,0x09,0x54,0x67,0x8d,0x81,0x7d,0x98,0xc4,0xd4,0x5b,0xd2,0xc9, - 0x27,0xcb,0xa7,0xf3,0xee,0x2e,0x01,0x2a,0xa7,0x29,0x4a,0x68,0x6b,0xb5,0xa8,0xd4,0x9f,0xd6,0xcb,0xde, - 0x45,0xca,0xd8,0x80,0x4e,0x36,0xcc,0x08,0x23,0x11,0xca,0x76,0x1d,0x4f,0x2f,0xaa,0xeb,0x1c,0xa4,0x6a, - 0x4a,0x53,0x93,0xd4,0xf8,0x33,0xa1,0x9c,0x1c,0xff,0x72,0xcd,0xd3,0xda,0xcb,0x09,0xaa,0xb1,0x69,0x79, - 0x3a,0xca,0x5b,0x09,0xd7,0x9f,0x6d,0x85,0x86,0x74,0xfd,0x3a,0x39,0x2f,0xd6,0x84,0xb4,0x6b,0xf2,0xf5, - 0xa2,0x41,0xbe,0xd2,0x9c,0x32,0x80,0x31,0x09,0x49,0x87,0x33,0x4d,0x59,0x72,0x9d,0xbe,0xfe,0x1d,0x30, - 0x17,0x67,0x3b,0xc3,0xa4,0x83,0x8d,0x00,0x90,0x0a,0xa5,0xaf,0x33,0x86,0x5d,0x3a,0x06,0x31,0x6c,0x67, - 0xad,0x50,0x0c,0xca,0x41,0x34,0x20,0xfa,0xf3,0x7b,0xfa,0x1a,0xdf,0xaf,0x13,0x1a,0xf6,0x35,0x60,0x97, - 0x5e,0x2e,0x93,0x44,0x1f,0x1e,0xe7,0xf0,0x05,0xb0,0x4b,0xca,0xd2,0xe3,0xad,0x84,0x6c,0x52,0x7c,0x0c, - 0x29,0x1b,0x5f,0xde,0x42,0xca,0xbe,0x04,0x3a,0xa7,0x7e,0xcc,0x0c,0x31,0x8b,0xb6,0x6e,0x25,0x65,0xdb, - 0xb4,0x2c,0xa1,0x9f,0x06,0x2d,0x9b,0xbc,0x8f,0x94,0x8d,0x41,0x64,0xd0,0x3e,0x20,0xb8,0x02,0x28,0xfd, - 0x19,0x8a,0xf6,0x3c,0x7d,0x7d,0x9d,0x14,0x0c,0x89,0x86,0xa8,0xfd,0x82,0x60,0x63,0x56,0x25,0x0b,0xc2, - 0x06,0x33,0x87,0xb0,0x85,0x60,0xce,0x4d,0xb4,0xa4,0xad,0x9b,0x1f,0xb4,0x4c,0x9d,0x91,0xd6,0xeb,0x22, - 0xc6,0x6e,0xa2,0x3d,0x73,0x1e,0x97,0x84,0x0d,0x70,0x82,0x0b,0x35,0x94,0x74,0xd2,0xba,0xbf,0xe6,0x09, - 0xf7,0xe5,0xcf,0xd3,0xba,0xbc,0x31,0x3e,0x8a,0xc6,0x6d,0xd4,0xec,0xee,0x7d,0xde,0xe3,0x5c,0x2e,0x06, - 0x2a,0x9a,0x13,0xb0,0xc5,0x8b,0xff,0x09,0x4a,0xf7,0xcd,0x32,0xff,0xff,0x22,0xa1,0x4b,0x27,0x2e,0xed, - 0x4a,0xda,0xf2,0x72,0x56,0xa6,0x38,0x58,0x20,0x8d,0x25,0x74,0x02,0x9c,0xbc,0x10,0x04,0x50,0x99,0x53, - 0x46,0xaf,0x2f,0xb0,0x24,0xb5,0x5f,0x31,0x00,0xf0,0xa1,0x82,0x8f,0xe7,0x02,0x2c,0x87,0x4d,0x40,0x21, - 0xb2,0x57,0xf0,0xff,0x75,0x73,0xef,0x5f,0xa2,0xd8,0xff,0xfe,0xcf,0xff,0xfd,0x9f,0x19,0xb8,0xd7,0xa2, - 0x97,0xe5,0x44,0x58,0xf0,0xd1,0x40,0x1d,0x22,0xb0,0xad,0x18,0x6f,0xff,0x2e,0x78,0xcf,0xd2,0xbe,0x40, - 0xb1,0x84,0xd1,0xde,0xd0,0xee,0xe0,0x93,0x5d,0x0f,0xf5,0x35,0xf7,0xe7,0x77,0x82,0x30,0x3e,0xe6,0xe5, - 0x64,0xe4,0xd3,0x81,0x30,0x12,0x41,0x4c,0xcc,0xe4,0xf0,0xb6,0x76,0x17,0xcb,0x91,0x99,0x1e,0xae,0x56, - 0x56,0x9a,0x8d,0x0b,0x56,0xed,0x2f,0xb0,0x36,0xbc,0x23,0xda,0x92,0xb0,0x45,0x5e,0x0c,0x96,0x74,0xee, - 0xac,0xe3,0x45,0xd2,0xb6,0x82,0xf3,0x78,0x6f,0x1a,0x9b,0x3a,0x6b,0x83,0x10,0x0c,0x75,0x75,0xfe,0x4d, - 0xb2,0x0c,0xbd,0xbf,0xd0,0x01,0x4c,0x78,0x8a,0xaa,0x0e,0x2b,0xc5,0x36,0x6a,0x37,0x86,0x38,0xde,0x3b, - 0x56,0xa5,0x50,0xb0,0x7b,0x27,0xfa,0x89,0xe9,0x23,0xbc,0xea,0x3c,0x4f,0xe8,0x70,0x99,0xa2,0x17,0xa1, - 0xb7,0xf1,0xd4,0x7a,0x85,0xe4,0x17,0x45,0xbe,0x60,0x20,0xa2,0x6c,0x31,0x0b,0xbb,0x5f,0xc5,0xe7,0xf0, - 0xcc,0x2a,0x54,0x99,0x11,0xf9,0xde,0xd4,0xe4,0xbe,0xae,0x8c,0xa9,0x62,0xf3,0xd9,0x4d,0xdc,0x36,0x69, - 0xe5,0x55,0x78,0x93,0x64,0x42,0xde,0x52,0x13,0x29,0x9d,0x05,0xc7,0x03,0xfe,0xbf,0x26,0x8a,0x1b,0x39, - 0x34,0xe1,0x78,0xdc,0xcc,0x4a,0x79,0x79,0xf3,0x53,0x1b,0x16,0xa7,0x50,0xe6,0x9a,0xac,0x6b,0xd2,0x52, - 0x16,0x0f,0xb3,0x8a,0x9e,0x4b,0x23,0x61,0x9a,0x2a,0x5b,0x9e,0x8f,0x2f,0xce,0x63,0x0f,0x2f,0x7e,0xe3, - 0x43,0x6b,0x8f,0xfb,0xc0,0xef,0xce,0x21,0xc0,0xef,0x06,0xf3,0xb3,0x09,0x80,0xc5,0xda,0x74,0xdc,0xc8, - 0xe7,0x25,0xad,0x82,0xd4,0x4a,0x18,0x83,0xd2,0x93,0x19,0x21,0x29,0xf9,0x92,0xcc,0x80,0x80,0xa4,0x5b, - 0x2b,0x8d,0x64,0x24,0xeb,0xf5,0x25,0xd0,0x85,0x7d,0x26,0x34,0x20,0xb5,0x3b,0x1b,0xdd,0x7c,0xac,0xf7, - 0x32,0xa7,0xb8,0x3b,0x96,0x66,0xd5,0x50,0xc6,0x18,0x80,0x79,0x66,0xd3,0x88,0x10,0x63,0xc7,0x87,0xf1, - 0x44,0x2d,0x2d,0x66,0x06,0x19,0xca,0xf6,0xfe,0x3b,0x01,0x75,0xb4,0x61,0xb2,0x75,0x84,0xcd,0xb4,0x28, - 0xfc,0xde,0xf8,0x1e,0x3f,0x7a,0xc6,0x42,0x59,0x5f,0x3f,0x98,0x3a,0x61,0x38,0x70,0x61,0x6c,0x03,0x4e, - 0x24,0x3a,0x53,0x32,0xb0,0xd0,0xe5,0x84,0xbc,0x7b,0xda,0x02,0x4c,0xe8,0x13,0x0e,0x44,0x7e,0x02,0x14, - 0x2d,0x40,0xc4,0x89,0x9a,0x47,0xe2,0xc1,0xb0,0x69,0x24,0xae,0x7d,0x11,0x1c,0xc1,0x01,0x75,0x08,0x79, - 0x0a,0xa4,0xc6,0x6f,0xd3,0x9c,0xed,0xce,0x7c,0xef,0x28,0x5e,0xa5,0x47,0x1a,0x4c,0xbd,0x60,0x50,0x5d, - 0x24,0x59,0xc3,0x53,0xcc,0xae,0xc7,0x65,0xed,0x3e,0x87,0x7a,0x6c,0x6e,0x63,0x24,0x29,0xd8,0x06,0x03, - 0x71,0x18,0xe6,0x96,0x37,0x7e,0x9e,0x97,0xf9,0x02,0xaa,0x18,0x81,0x6e,0x1b,0x8e,0x6c,0xc7,0xed,0x6e, - 0xd4,0x10,0xfa,0x47,0x7b,0x52,0x97,0xfc,0x33,0x9d,0xa9,0x7b,0x20,0x90,0xfa,0x47,0x5b,0x97,0x52,0xff, - 0x62,0xcb,0x7c,0x73,0xd0,0xd1,0xf0,0x8e,0xa5,0x8e,0x6e,0xc6,0xbd,0xfe,0xdb,0x83,0x53,0x1b,0x60,0x0f, - 0xf6,0xc9,0xc2,0xf6,0x01,0xc7,0xc3,0xf8,0xbe,0x76,0xdb,0xa3,0x0d,0x48,0xe3,0x3a,0x6e,0x88,0x7c,0x80, - 0x5a,0x0f,0xbb,0x26,0x28,0x46,0x45,0x54,0x86,0xe5,0x9e,0x84,0x11,0xce,0x38,0xde,0x73,0xde,0xf0,0x39, - 0x53,0xc2,0xa3,0x7e,0x3f,0x2a,0xb7,0x80,0xcb,0x84,0x23,0x23,0x24,0x83,0xc6,0xde,0x11,0xa7,0xcd,0xf3, - 0x65,0x0e,0x17,0x38,0x47,0xc6,0x1b,0x52,0xe0,0x64,0x8b,0xa0,0x38,0x30,0xd1,0x23,0x94,0xe1,0x97,0x2b, - 0xda,0x58,0x33,0xd7,0xef,0x50,0xc6,0x41,0x5a,0xab,0x7c,0xd5,0x09,0xf9,0x1a,0x8b,0x52,0x07,0xb7,0xb0, - 0x82,0xd4,0x17,0x83,0x40,0xa2,0xab,0xe5,0xbb,0xfa,0x32,0xe2,0x96,0x1b,0xd4,0x4a,0xef,0x05,0x76,0x51, - 0x25,0x8f,0x98,0x39,0xe9,0x0a,0x42,0x40,0xef,0x82,0xa1,0xaa,0x31,0x65,0xe5,0x00,0xd9,0xc0,0xa4,0x36, - 0x50,0x67,0x23,0x87,0xf3,0xc1,0x22,0xd4,0x46,0x06,0x9d,0x28,0x28,0xb6,0xf9,0x85,0x52,0x6a,0x7c,0xdb, - 0xf8,0x64,0x52,0x05,0x01,0x37,0x3e,0x21,0x05,0xf8,0xb8,0x91,0x98,0xae,0x5c,0xd4,0xdc,0x6c,0xc5,0xa6, - 0x5b,0x6c,0xdd,0xf8,0xae,0x13,0xb7,0x1d,0x20,0xf9,0x51,0x10,0xde,0x2a,0x06,0x9b,0x5e,0x33,0xe7,0xb2, - 0x7a,0xbc,0x68,0x22,0x89,0xfe,0x17,0x17,0x4c,0xef,0x5a,0x04,0x04,0xe5,0xa7,0xff,0x6b,0x5d,0xee,0xc4, - 0xc9,0xb7,0x76,0x5e,0x43,0x2b,0x21,0xe9,0x45,0x82,0xc0,0xf7,0x26,0x41,0xd0,0x70,0x99,0x54,0x2c,0x41, - 0xa1,0x0d,0xe6,0x36,0xa9,0x5d,0x1d,0x35,0x4b,0xf7,0xfb,0xaa,0x99,0xa0,0x3d,0xdf,0x9e,0x84,0x36,0xd9, - 0x76,0x27,0xf2,0x8e,0x3c,0xc7,0xab,0x51,0xef,0x6e,0x67,0x9e,0xc3,0x46,0x9e,0x7b,0x9d,0x79,0x4e,0x4f, - 0x1b,0x99,0x3e,0xed,0xcc,0xb4,0xf1,0x54,0x7b,0xa4,0x44,0x8c,0xdc,0xfd,0xec,0x98,0xa7,0x6b,0x77,0x1f, - 0xbb,0xb3,0x35,0x5d,0x12,0xcd,0x62,0x27,0x41,0x2b,0x8d,0xd5,0x53,0x44,0x35,0x10,0x7e,0x34,0xe7,0x1c, - 0xf8,0x1b,0x21,0x7d,0xba,0xec,0xd1,0x6b,0x92,0xca,0x6c,0xac,0x81,0xa6,0x99,0x8c,0xd1,0x93,0x2b,0x90, - 0xf3,0x8c,0x47,0xa9,0xdb,0xca,0x0a,0x91,0xa5,0x67,0x59,0xfb,0xf7,0xbd,0x6b,0xfc,0xf8,0x9a,0x4d,0x92, - 0x2d,0xb4,0x87,0x60,0xed,0x7f,0x58,0xbb,0x1b,0xb6,0x4e,0x84,0x45,0x29,0xcf,0xcc,0x70,0xb3,0x30,0xfa, - 0x20,0x5e,0x83,0x43,0xe3,0x09,0xb0,0xab,0x9f,0xdb,0xee,0x29,0x78,0x85,0xd8,0x62,0x7f,0x6a,0x1a,0x7a, - 0x4c,0x9d,0xec,0x66,0x83,0xe4,0xc4,0xd0,0x10,0x33,0x2f,0xf8,0x83,0xf3,0xf3,0x11,0x75,0x43,0x54,0x4b, - 0xf5,0xea,0xf9,0xfa,0x88,0x02,0x22,0xc9,0x35,0x45,0xee,0x7e,0x4c,0x91,0x86,0x80,0xd7,0x94,0xbc,0x17, - 0xba,0x0a,0x6c,0x1d,0x63,0x49,0x57,0x06,0xbe,0x3f,0xa2,0x89,0x86,0x94,0xd8,0x34,0xf1,0xd9,0x1f,0x28, - 0xa9,0xa5,0xc6,0xa6,0x68,0x7b,0xf9,0x3f,0xb4,0x3e,0x35,0x68,0xc0,0xbd,0x5e,0x9b,0x12,0xfc,0x00,0x1e, - 0x1d,0x11,0xce,0xc1,0xce,0xca,0xd7,0x70,0xda,0xdc,0x2e,0xac,0x3e,0x4b,0xee,0x05,0xe1,0xed,0x34,0xd9, - 0x91,0xe6,0x79,0xda,0x68,0xb2,0x33,0x7e,0x89,0x21,0x8e,0x2a,0x67,0xc6,0xa3,0xe4,0x0f,0x10,0x48,0x3b, - 0xb8,0xf8,0xc3,0x7d,0x87,0x8a,0xb6,0x30,0x6d,0x46,0x30,0x73,0xcb,0x7c,0xf0,0x76,0xd1,0x73,0xe2,0x22, - 0x79,0xe0,0xe8,0x26,0xd7,0x17,0x1d,0x6b,0x17,0xe4,0xe0,0x32,0xa1,0xa2,0x09,0x67,0x1f,0x43,0x13,0xd4, - 0xc6,0xf7,0xe6,0x29,0x54,0x5c,0x2c,0x03,0x40,0xd3,0xa6,0xc3,0xe0,0x7c,0xf1,0xee,0x09,0x7f,0x96,0x7e, - 0x7c,0x85,0x6c,0xec,0x3a,0x33,0x29,0xa1,0x9c,0xa9,0xd9,0x82,0x9b,0x4a,0x06,0x14,0xde,0xfb,0x6b,0xf2, - 0xa9,0xca,0xb3,0x1f,0x9b,0x1c,0x67,0xd3,0x21,0x46,0xab,0x63,0x4c,0x6e,0x15,0x50,0xa5,0xf1,0x4f,0x8e, - 0x8f,0x3f,0x11,0xda,0x28,0x99,0x1d,0xc1,0x71,0x76,0x15,0xc3,0x2f,0xe9,0x70,0xe7,0x9c,0x34,0xdd,0xf1, - 0x58,0xed,0x79,0xf7,0x90,0x74,0xd7,0xc0,0x13,0x2f,0x1b,0xbd,0x12,0xbe,0xc8,0xff,0xe4,0x92,0xed,0x74, - 0x1a,0x1c,0x69,0x7d,0xa4,0x7e,0x78,0xde,0x68,0xce,0xa8,0x1c,0xc1,0x22,0xd6,0x76,0x2b,0xcc,0x99,0x66, - 0x6e,0x3e,0x74,0xea,0xc2,0x33,0x70,0x07,0x4f,0xb4,0xd9,0xec,0x49,0x18,0x96,0x36,0x5b,0xc4,0xb0,0xba, - 0xc3,0x2b,0x39,0x40,0xd7,0x1a,0x17,0x26,0x87,0x33,0xc2,0x0f,0xc9,0xdd,0xe3,0xe3,0x20,0x30,0xdb,0x51, - 0x78,0xcb,0x5b,0x21,0xaf,0xd1,0x8a,0xc0,0x5c,0x17,0x8b,0xd6,0xd9,0x7b,0xc9,0x6e,0x08,0xea,0x5b,0x82, - 0x55,0xf3,0x2c,0xb9,0x21,0xab,0x9b,0xee,0x23,0xab,0x26,0xdd,0xbe,0x0d,0x86,0xba,0x48,0x94,0x88,0xb1, - 0xbe,0x0e,0xa0,0xc7,0x16,0xef,0xb7,0xd6,0x59,0xf4,0x23,0x9d,0x3a,0xce,0x74,0x5c,0xe4,0x61,0x75,0x3b, - 0x47,0x50,0x1c,0x35,0xeb,0x90,0x08,0x6c,0xa9,0x71,0x62,0x77,0x6b,0x33,0xa9,0x76,0x05,0xd4,0x6a,0x0a, - 0x7d,0xbe,0x85,0xe1,0xdd,0x25,0x0e,0x45,0x25,0xeb,0x86,0x2f,0x93,0x53,0xb9,0x66,0x22,0x72,0xfe,0x24, - 0xb9,0x27,0xce,0x2f,0x11,0xdd,0xe1,0xbf,0x9d,0x60,0xd4,0x8b,0x7b,0x02,0x94,0x24,0x82,0x19,0x2b,0x95, - 0xb9,0x1d,0x6e,0x25,0x83,0x00,0x62,0x5b,0x98,0x53,0xd3,0xbd,0x8c,0x9a,0x71,0xfd,0x53,0x86,0x47,0x47, - 0x90,0x6c,0x0c,0x16,0x2c,0x99,0xa3,0xb1,0x96,0x50,0xb7,0xe4,0x34,0x1e,0xf9,0x22,0xc9,0x11,0x1c,0xeb, - 0xe8,0x75,0xc9,0x9c,0x8c,0x0e,0xe5,0x73,0x63,0x64,0xf8,0x75,0x93,0xea,0x4d,0x02,0xe2,0x5f,0x88,0xe7, - 0x41,0x2d,0x2d,0xd9,0xee,0x8c,0x30,0xe9,0xe0,0x47,0x05,0xab,0x63,0xa3,0xd2,0x31,0x56,0x06,0xf0,0x33, - 0xea,0x26,0x58,0xbf,0xb8,0x75,0xb4,0x18,0xf7,0x33,0x34,0xf6,0xa9,0xa3,0xc4,0xca,0x15,0xef,0x6c,0x87, - 0x86,0xb6,0x33,0xcb,0xb8,0xe2,0xe8,0xb8,0x95,0xaa,0x93,0x08,0x79,0x64,0xf8,0xbb,0xfd,0xd3,0x6b,0xb4, - 0x3b,0xbb,0x4c,0xdf,0x6f,0x15,0xbb,0x24,0xa2,0x29,0x32,0x12,0xa2,0x1b,0x02,0x2c,0x22,0x5c,0x8a,0x1d, - 0x7f,0xd7,0x2e,0x2a,0x02,0x06,0xc0,0x75,0x03,0x3b,0x6a,0x6e,0x0a,0x94,0xfe,0x78,0xf9,0xf2,0x8f,0xb5, - 0xab,0xdd,0x37,0x39,0xed,0x5b,0x19,0xa5,0x3b,0x29,0x5d,0x02,0xa8,0xc8,0xfb,0x8b,0xd7,0xaf,0xa0,0xd5, - 0xbb,0xfd,0x3f,0xde,0x16,0x8d,0x40,0x87,0xec,0x01,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb6,0x2e,0xfa,0x57, + 0x24,0x5c,0x1d,0x1a,0x68,0x96,0x68,0xc9,0x4e,0xfa,0x74,0x40,0x23,0xbc,0xb6,0x6c,0x27,0x8e,0xc7,0x78, + 0x4a,0xd2,0xb2,0x9a,0x0b,0x22,0x8b,0x12,0x6c,0x12,0x60,0x00,0x50,0x43,0x44,0xde,0xdf,0xfe,0xf6,0xb7, + 0x6b,0x04,0x08,0x39,0xc9,0x59,0x67,0xbd,0xe5,0x65,0x11,0xa8,0x2a,0xd4,0xb8,0x6b,0xd7,0x9e,0x6b,0x77, + 0xb6,0xca,0x27,0x75,0x56,0xe4,0x61,0x2d,0x64,0x74,0x13,0x14,0xa7,0x9f,0xe5,0xa4,0x0e,0x92,0xa4,0xbe, + 0x5e,0xca,0x62,0xb6,0x23,0xaf,0x96,0x45,0x59,0x57,0xbd,0xde,0x56,0xce,0xa2,0x98,0xae,0xe6,0x72,0xa4, + 0x7e,0x06,0xba,0x5c,0x22,0xc3,0x28,0x0e,0x4c,0x9d,0xae,0xf0,0x54,0xce,0xb2,0x5c,0xf6,0x7a,0xea,0x77, + 0x90,0x2e,0xa6,0x23,0xf5,0x18,0x1e,0x9f,0x50,0xbb,0xf1,0x6d,0xed,0x8e,0xf4,0xef,0x20,0xbd,0xca,0x0a, + 0x55,0x7b,0xed,0x9e,0x37,0x61,0x7d,0x9e,0x55,0xc2,0x0e,0x21,0xba,0x29,0x65,0xbd,0x2a,0xf3,0x1d,0x37, + 0xa8,0xe8,0xc6,0x3c,0xef,0xc8,0xb0,0x8c,0x6e,0xb2,0x59,0x98,0x1f,0x97,0x27,0x91,0x2e,0x88,0x67,0xd3, + 0xf7,0xe1,0x45,0x5a,0xee,0x64,0x09,0x92,0x92,0x1b,0x9d,0x16,0xdf,0x6c,0x44,0x36,0x8d,0x4b,0x31,0x2f, + 0xd2,0xa9,0x9c,0xc6,0xbb,0x87,0x9b,0xa1,0xfe,0xb4,0xc6,0xa7,0x93,0x74,0x3e,0x0f,0x33,0x53,0x83,0xc8, + 0x84,0x7b,0x96,0x11,0xbd,0xa8,0xcf,0x92,0xdd,0x03,0x97,0xb1,0x41,0x33,0x79,0x72,0x63,0x2b,0x92,0x83, + 0x45,0x42,0x93,0x3f,0x98,0x24,0x39,0xfd,0x5d,0x26,0x41,0x20,0x64,0x78,0x40,0x83,0x3b,0xf6,0xd7,0x46, + 0xe4,0xd1,0x4d,0x6d,0xa7,0x39,0x0f,0x0f,0xa3,0x8d,0x68,0xe7,0x07,0xab,0x4a,0xee,0x54,0x75,0x99,0xd1, + 0x4c,0x0e,0xed,0xb8,0x4b,0xcc,0x02,0x1a,0x95,0x49,0x2e,0x2f,0x77,0x52,0x7a,0x15,0x79,0x52,0x84,0xe9, + 0x60,0x59,0x16,0x75,0x81,0x09,0x1f,0x94,0xf2,0xf7,0x95,0xac,0x00,0x02,0xa6,0x57,0xe8,0x6f,0x2d,0xf3, + 0x69,0x98,0x0b,0xaf,0xa0,0x1a,0x95,0xcd,0xa1,0xb7,0x7c,0xa3,0xa7,0x2d,0xbc,0x17,0x89,0x82,0x7e,0xee, + 0x47,0x22,0xa5,0x9f,0x6f,0x23,0x81,0x6e,0xfe,0x33,0x12,0x93,0xa4,0x0c,0xab,0x68,0x38,0x19,0x3c,0xe4, + 0x75,0x4b,0xc5,0x64,0x30,0x29,0x65,0x5a,0xcb,0xc4,0x5f,0x26,0xdd,0x6c,0x49,0xb3,0xb9,0x90,0xe5,0x99, + 0x0c,0x2b,0x51,0x47,0x34,0xc6,0xc9,0xe0,0x28,0xcd,0x27,0x72,0x8e,0x06,0xa8,0x6a,0xf3,0xfa,0xbe,0xf8, + 0x22,0x73,0xa4,0x7d,0x83,0xb4,0xac,0x72,0x85,0x0e,0x90,0x40,0xcb,0xd2,0x55,0xfb,0x9b,0xb2,0x58,0x64, + 0x95,0x44,0x36,0xa5,0xa2,0xf2,0x6a,0x49,0x5d,0x99,0xe2,0x3b,0xea,0xb0,0x9b,0xdf,0x89,0x7b,0x1e,0x10, + 0xa0,0xa6,0xab,0x79,0x9d,0x4c,0xfe,0xd6,0x84,0xab,0x16,0x83,0x63,0x05,0xd8,0x3b,0x0f,0xcb,0x32,0xbd, + 0x3e,0x21,0xf8,0x4e,0x56,0x0a,0x68,0xa8,0x79,0xfb,0x41,0xe6,0x75,0x31,0x5f,0xcd,0xe7,0xbb,0xb4,0x0d, + 0x3a,0x76,0x5c,0xed,0xbe,0x28,0x3a,0x9a,0x78,0xaa,0x33,0x6f,0x6b,0x25,0x55,0x5b,0x1c,0x3b,0xc0,0xb6, + 0x71,0x51,0x64,0xd3,0x9d,0x03,0x3c,0x47,0x94,0x6e,0x5a,0xdc,0xb5,0x2d,0xf6,0x7a,0x61,0x9d,0x1c,0xd7, + 0x27,0x91,0xc0,0xa0,0xa2,0x59,0x51,0x86,0x0a,0x7c,0x09,0xa0,0x93,0x7a,0x30,0x97,0xf9,0x59,0x7d,0x3e, + 0xcc,0x1f,0x64,0xc3,0xbc,0xdf,0x8f,0xa4,0x6a,0x14,0xd5,0x8b,0xfa,0x38,0x3f,0x11,0x39,0xad,0xe1,0x50, + 0xce,0x69,0x92,0xcc,0x97,0xc5,0x4e,0x46,0x5b,0x27,0x7a,0xcd,0x0d,0x79,0x00,0x78,0x9e,0x56,0xaf,0x2f, + 0x73,0x5a,0x9f,0xa5,0x2c,0xeb,0x6b,0xdd,0x79,0x51,0x44,0xbd,0x5e,0xb3,0xd2,0xe2,0x44,0x14,0x54,0x29, + 0x03,0x5d,0xa5,0xa0,0x8d,0xf6,0x4d,0x48,0x50,0xb0,0x4a,0xb6,0x2a,0xad,0x8b,0x77,0xb4,0x36,0xf9,0xd9, + 0xd0,0x2d,0xec,0x4d,0x56,0xf1,0x52,0xd0,0x96,0xd6,0x4f,0x8f,0x56,0xb3,0x99,0x2c,0xe3,0x6d,0x68,0x69, + 0xae,0x9d,0x2a,0xd6,0x9a,0x5b,0xaa,0x43,0x7f,0x3e,0xa1,0xc7,0xa7,0x45,0xb9,0x78,0x9c,0xd6,0x69,0x57, + 0x5d,0xab,0x5c,0xe1,0xbb,0xa9,0x9b,0x5c,0x53,0xbc,0xd7,0xab,0x69,0x52,0xaa,0x1a,0x10,0xec,0x25,0x6f, + 0x9a,0x1d,0xfc,0x98,0xc9,0xcb,0xbf,0x58,0xb1,0xf7,0x55,0xaf,0xe7,0xbd,0xd0,0x36,0x41,0x2d,0xa3,0xed, + 0x24,0xaa,0x2f,0xa6,0xb5,0xae,0x07,0xa7,0xfa,0x2b,0xf3,0xe4,0x77,0xcc,0xfb,0x0c,0x7d,0x53,0x53,0xdb, + 0xd5,0xa5,0x8a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x56,0x8b,0xd3,0xee,0x69,0xce,0x39,0xa7,0x55,0x5c,0xad, + 0x65,0x4c,0x08,0xb5,0xfa,0x60,0x46,0xd8,0xf1,0xf1,0x8e,0x02,0x60,0x5a,0x14,0xfe,0x8a,0xe6,0x4d,0x7e, + 0x6d,0x25,0x91,0xbf,0xbd,0x84,0x4f,0xb3,0xf9,0x57,0xbf,0x42,0x7e,0xc7,0xc2,0xcf,0x8b,0xd3,0xaf,0x7d, + 0x85,0xfc,0x8e,0xb6,0xf4,0x07,0x71,0xa1,0xa6,0x50,0xa6,0x8b,0xae,0x61,0x01,0x23,0xf4,0x7a,0xb4,0xcb, + 0x07,0xcb,0x6c,0x29,0xf9,0xcb,0x0f,0x6f,0x5f,0xbc,0x93,0x69,0x39,0x39,0x7f,0x93,0x96,0xe9,0xa2,0xfa, + 0x8b,0xb0,0xd0,0xfa,0xaa,0x05,0x6b,0xad,0x5c,0xb5,0xac,0x69,0x3e,0x4d,0xcb,0xe9,0xa3,0xb2,0xb8,0xac, + 0x64,0xf9,0x24,0xbf,0x88,0xb7,0xce,0xd7,0xd0,0x6b,0xc9,0x2e,0x5b,0x9e,0x5e,0x64,0x67,0x69,0x5d,0x94, + 0xeb,0x75,0xf0,0x56,0xa6,0x93,0xfa,0x55,0x5a,0x67,0x17,0x92,0xba,0x92,0xd8,0x2c,0xec,0xcd,0xe9,0x6a, + 0x82,0xb1,0x75,0x75,0xf6,0x32,0xcb,0xa7,0xc5,0x65,0x77,0xde,0xb4,0x98,0xac,0x16,0x32,0xa7,0x65,0x26, + 0x54,0xf2,0x24,0x9d,0x9c,0xc7,0xa9,0xe0,0x83,0xc2,0x76,0x6f,0xa7,0x0e,0x1b,0xa7,0xbd,0x14,0x65,0x07, + 0x41,0x83,0xe3,0xbd,0x03,0xb7,0xca,0x11,0x9f,0xfb,0x35,0x53,0x07,0xa0,0x48,0xf8,0x55,0x6e,0x1c,0xc6, + 0x23,0x4a,0xa0,0x64,0xb4,0x97,0x96,0x67,0xdc,0x93,0xca,0xa0,0xbf,0x92,0xd0,0x5f,0x49,0xe8,0x2f,0x0d, + 0x6d,0x96,0xaa,0xc4,0x9c,0xa5,0xf9,0x46,0xa8,0x23,0x33,0x6e,0x1f,0x20,0xba,0x40,0x4a,0x9d,0xb5,0x59, + 0xdc,0x6f,0x50,0x17,0x49,0x4e,0x1d,0xdd,0xa6,0xa5,0xe4,0xa8,0x0a,0xf1,0x71,0x2c,0x37,0x74,0x64,0x6d, + 0x04,0xed,0xb6,0x4e,0x18,0xaa,0xe9,0x54,0x5f,0xce,0xd3,0x89,0x0c,0xef,0xfe,0xe7,0x53,0xf5,0x8f,0xbb, + 0x22,0x08,0x22,0x97,0x44,0x29,0x7b,0x9c,0xb4,0xd9,0x34,0xcf,0xb5,0xd6,0xa9,0xe6,0x50,0x67,0xb3,0x50, + 0x9b,0xd2,0xa2,0xa9,0xb7,0x53,0x05,0x32,0x83,0xb1,0x45,0xd8,0x9e,0xab,0x08,0x73,0x48,0x13,0x96,0xdb, + 0xb9,0xa3,0x79,0xe3,0xa9,0xf6,0xa7,0xce,0x92,0x58,0x83,0x74,0xb9,0x9c,0x5f,0xf3,0x68,0xb7,0xbb,0x69, + 0x97,0xda,0x1b,0xf4,0xee,0x6e,0x3d,0x98,0x14,0x04,0xe0,0x25,0x41,0x59,0x51,0x76,0xce,0x5f,0xa3,0xc4, + 0xc0,0x60,0x70,0xe0,0xbc,0xae,0x74,0xec,0xdb,0xae,0x39,0x68,0x1d,0xd8,0x38,0x29,0x91,0x4a,0xc0,0xbf, + 0xd5,0x62,0x28,0xe9,0x78,0x1d,0x80,0xce,0x78,0x4a,0xf4,0x60,0xfd,0xe2,0x49,0xf7,0xb2,0x0e,0xaa,0x79, + 0x36,0x21,0x1a,0x99,0x20,0x40,0x3d,0x86,0x07,0xe2,0x20,0xa2,0x1a,0x31,0xa8,0xb1,0xe9,0x4f,0xc4,0x64, + 0xaa,0xdc,0xfc,0x2d,0x62,0x04,0x64,0xb2,0xa1,0x63,0x2a,0x22,0x36,0xf9,0x3d,0xcb,0x6b,0x59,0x4e,0xe4, + 0x92,0x46,0x4b,0xe7,0xa2,0xa6,0x00,0x63,0x26,0x11,0x45,0x29,0xab,0x25,0x4d,0x86,0x54,0xaf,0x1b,0x4b, + 0xe3,0xfd,0x53,0xd1,0x78,0xf7,0x14,0x8d,0x77,0xf8,0xdf,0x8a,0xc8,0x3b,0xfc,0x17,0x81,0xfa,0x36,0x35, + 0xd9,0x98,0xad,0xed,0x53,0x81,0x69,0x8b,0x42,0x53,0x7b,0x37,0xab,0x72,0x1e,0x3b,0x18,0x38,0x38,0xd9, + 0x08,0xf7,0x76,0x78,0x12,0x45,0xc2,0x2b,0x9c,0x89,0xc6,0x80,0xc4,0xcd,0x42,0xd6,0xe7,0xc5,0x34,0x0e, + 0xce,0x64,0x1d,0x6c,0x40,0x37,0x0e,0x54,0x0a,0x91,0x28,0xea,0x81,0x48,0x81,0x17,0xc5,0xa5,0x2c,0x8f, + 0xd2,0x8a,0xf8,0x06,0x35,0x85,0xc9,0x71,0x25,0xd4,0xf1,0x41,0x84,0x4a,0x62,0x48,0x43,0x1a,0x79,0x31, + 0xbf,0x90,0xd4,0xe5,0x21,0x00,0x7a,0x6b,0xa6,0xcc,0xe0,0x06,0x1a,0x0d,0x85,0xfe,0x20,0xe5,0x60,0x95, + 0x57,0xe7,0xd9,0xac,0x26,0xc4,0x3d,0x5b,0xcd,0x67,0xd9,0x7c,0x2e,0xa7,0x02,0x1b,0x11,0xd8,0x46,0x4e, + 0x23,0xec,0xd8,0x8e,0x1a,0xd5,0x64,0xdf,0x52,0xe5,0x72,0x55,0x9d,0xdf,0x5e,0xdf,0x50,0x9a,0xad,0x14, + 0xd1,0xc6,0x1b,0xd4,0xe7,0x92,0xe1,0x87,0x3b,0x11,0x09,0xfb,0xe4,0xe3,0xa2,0xc2,0x36,0x74,0x1c,0x4c, + 0xe5,0x5c,0xd6,0x32,0x10,0x3c,0x75,0x22,0x38,0x27,0x20,0xa5,0x9f,0x62,0x89,0xe6,0xab,0xe0,0x44,0x34, + 0x00,0xde,0x2d,0x31,0x91,0x84,0x89,0x87,0xb0,0x1c,0x26,0xe3,0xd1,0xe9,0x29,0x0a,0xcd,0x7a,0xe5,0xeb, + 0x35,0x61,0x4f,0xb3,0x4a,0xb5,0xc0,0x5a,0x13,0xf2,0xa2,0x3d,0x1d,0x35,0x3a,0xb3,0x2c,0x2a,0x74,0x62, + 0xb9,0xe2,0xbf,0x69,0x3d,0x39,0xff,0xeb,0x3d,0x00,0xd2,0xfc,0x5a,0x1f,0xca,0xae,0x3e,0x88,0x29,0xc8, + 0xb5,0x5c,0x77,0xc5,0x6d,0xf3,0xf2,0x6f,0xec,0x2e,0xa0,0xa2,0xdd,0x62,0xe0,0xd1,0x29,0xea,0xec,0x6e, + 0xa6,0x1c,0x07,0x47,0x05,0xad,0x79,0x5e,0xef,0xbf,0xa7,0xce,0x07,0x27,0x11,0xa0,0xbf,0x9d,0x98,0x48, + 0x45,0xd8,0x66,0xfe,0x26,0xe3,0x3d,0x76,0xd3,0x2c,0x19,0x07,0x40,0x8c,0xd9,0x24,0x45,0x27,0xee,0x5e, + 0xed,0x5f,0x5e,0x5e,0xee,0xd3,0x34,0x2e,0xf6,0x69,0x54,0x32,0x9f,0x14,0xc4,0x73,0xd2,0x3e,0x98,0x24, + 0x37,0xe9,0x34,0x5d,0x12,0xa4,0xc5,0x61,0xd7,0x91,0xfa,0xeb,0xcb,0x17,0x3f,0xd6,0xf5,0xf2,0xad,0x9a, + 0xa9,0x11,0xf6,0xf7,0xbf,0x88,0x15,0xef,0x28,0x49,0xb3,0x3e,0x91,0x15,0x51,0x0f,0xa1,0x2a,0x44,0x4c, + 0x20,0x4d,0x57,0x99,0xe6,0x15,0x5a,0xd5,0x15,0xc4,0xc7,0x9d,0x27,0x04,0xce,0xb6,0x66,0xef,0xb1,0xe8, + 0x8e,0x5a,0x66,0xa4,0x89,0x04,0x8f,0xbe,0xb4,0x69,0xad,0x57,0x45,0x30,0xd9,0x57,0x10,0x66,0xae,0x28, + 0xd1,0x5b,0xf4,0x32,0xaa,0xe3,0x56,0x65,0x9a,0xc0,0x1d,0x19,0x9a,0x96,0xf3,0x5b,0x94,0x0f,0xf2,0xc3, + 0x12,0x3d,0xfd,0xd3,0x89,0x1d,0x4e,0xce,0xd3,0xb2,0x92,0x75,0xb2,0xaa,0x67,0xfb,0xff,0x0a,0x00,0x36, + 0x86,0xcf,0xa0,0x6d,0xc6,0x95,0x2b,0xe2,0xb5,0xbb,0xce,0xcf,0x55,0x91,0x6f,0x55,0xf1,0xd3,0xbb,0xd7, + 0xaf,0x06,0x0a,0x41,0x66,0xb3,0x6b,0x70,0x5a,0x71,0xbd,0x39,0xf1,0x67,0x58,0xa3,0xe3,0x63,0x7f,0x37, + 0x80,0x63,0xdb,0xc2,0xaa,0x51,0x5d,0x5e,0xdf,0xd4,0x09,0xd7,0xb8,0x44,0x2b,0x38,0xc0,0x26,0xd8,0x4b, + 0xf8,0x64,0x63,0xb6,0x08,0x6a,0xcf,0x16,0xb2,0x58,0xd5,0xf1,0x81,0xb8,0xaa,0xca,0xd9,0x51,0x51,0x7c, + 0xc9,0xe4,0xab,0x74,0x21,0xe3,0xe0,0xd7,0x77,0x6f,0x9f,0xee,0xbf,0x7f,0xfd,0xfc,0xc9,0xab,0x80,0xf3, + 0x7e,0x24,0xac,0x20,0x4b,0x9d,0xb7,0xef,0xe7,0x2e,0xd2,0x2b,0xbd,0xb4,0x2f,0x18,0x09,0xc5,0xfb,0x87, + 0xe2,0x22,0x9d,0x67,0xb4,0xaf,0x24,0x51,0x92,0xf5,0xaa,0x8b,0x4e,0xdd,0xa9,0xbf,0x4f,0xee,0x1d,0x1c, + 0xd0,0x89,0xfb,0xe0,0xfe,0xc1,0xc1,0x66,0x33,0x9c,0x0c,0xce,0xb9,0x05,0x82,0xf3,0x49,0xb1,0x58,0x10, + 0x75,0x7c,0xf3,0x70,0x02,0xec,0x18,0x6f,0x4d,0x9d,0xd8,0xa9,0x89,0x94,0xba,0x4b,0x44,0x4c,0x46,0xcf, + 0xff,0xb8,0xfb,0x8f,0x60,0xf3,0xe7,0x08,0xad,0x89,0x44,0x6c,0x6b,0x40,0x21,0x37,0x7f,0x1b,0x07,0x35, + 0x3e,0x37,0xd8,0xa5,0x8a,0x1a,0xf8,0xe3,0xcf,0x44,0x05,0xd8,0xe4,0x25,0x6f,0xf1,0xdb,0xe9,0x2b,0xdb, + 0xa7,0xda,0xd5,0xa5,0xb0,0x1c,0x51,0xd4,0x44,0x26,0x94,0x04,0x76,0x1f,0x96,0x4b,0x73,0xa6,0x11,0xa3, + 0x21,0x9b,0x29,0x8c,0x61,0x24,0x51,0x91,0x42,0xcd,0x09,0x4b,0xac,0xa8,0x9f,0x7f,0x46,0x3a,0xb8,0xce, + 0x09,0xec,0xf6,0xef,0xd4,0x91,0x7f,0x68,0xce,0xfc,0xfb,0xfa,0xcc,0xff,0x46,0x71,0xde,0x87,0x07,0x60, + 0xbd,0xbf,0x46,0xcd,0xab,0xdf,0xc1,0x69,0x5d,0xa4,0x8d,0x97,0xc1,0x29,0x3d,0x87,0x2a,0x81,0xf6,0x30, + 0x55,0xf5,0x6d,0xf7,0x74,0x38,0x52,0x8b,0x88,0x11,0x7d,0x4e,0x87,0x1e,0xee,0x9f,0x2b,0xf1,0xd6,0x8c, + 0x4e,0x7b,0xe0,0x73,0xb1,0xa4,0x07,0xbd,0x46,0xc3,0xd2,0xc7,0x34,0xb3,0x08,0x12,0x48,0x9e,0x8b,0x65, + 0x1b,0xf7,0xf2,0xb0,0xa7,0x4c,0xba,0x36,0xf1,0xa2,0x38,0x4f,0x82,0x22,0x07,0xf5,0x76,0x4d,0x7c,0x53, + 0x2d,0x69,0xef,0xe6,0x67,0x04,0x60,0x17,0xc9,0xee,0xe1,0x10,0x5b,0xb0,0x83,0x17,0x52,0x83,0x22,0xca, + 0x4d,0x0f,0xf7,0xd7,0xc7,0xc5,0x82,0x00,0x56,0xd7,0x48,0x34,0xe2,0x65,0x56,0x9f,0x1f,0x95,0x72,0x4a, + 0xed,0x67,0xe9,0xbc,0x0a,0xb2,0x7c,0x67,0xba,0x5e,0x13,0x1a,0x1a,0x10,0xa2,0xa1,0xc9,0x08,0x55,0x4f, + 0x3a,0x3f,0x57,0x1d,0x82,0x64,0x91,0x3b,0x71,0x20,0xa6,0x83,0x22,0x27,0x0c,0x7d,0x46,0x74,0x84,0x37, + 0x6d,0xb4,0xd9,0x39,0x47,0x6f,0xf3,0x46,0x06,0x60,0x35,0x5d,0x11,0x39,0xce,0x13,0xb7,0x48,0xd4,0xdb, + 0x80,0xa0,0xa0,0xcc,0x69,0x97,0x53,0x07,0x03,0x71,0x66,0x52,0x97,0x69,0x55,0x5d,0x16,0xe5,0x14,0xa9, + 0xc3,0xe5,0xe0,0x21,0xa5,0x15,0x65,0xf6,0x07,0xef,0xc9,0x24,0x78,0x94,0x56,0xd9,0x64,0x27,0xe8,0xaf, + 0xc2,0x45,0x9f,0xce,0xa5,0xfe,0x59,0xb4,0xa1,0x49,0xa1,0x86,0x97,0x44,0x88,0x78,0xe4,0x97,0x07,0x98, + 0xa2,0x50,0xe3,0xa4,0x4e,0x2c,0x19,0xfb,0xda,0x87,0x77,0xb2,0xa4,0xe9,0xc8,0xfe,0x20,0x32,0x57,0xec, + 0x12,0x60,0xd1,0x87,0xba,0xf7,0xb5,0x79,0x12,0xd3,0xe3,0xf3,0x13,0x7f,0x30,0x68,0x8d,0x40,0xfd,0x1b, + 0xda,0x00,0x53,0x26,0xb2,0xaf,0x81,0x78,0x68,0x0c,0x17,0xd8,0x01,0x90,0x6d,0x4d,0x07,0x15,0xa3,0xa2, + 0xf5,0x7a,0x6a,0x69,0x2d,0xc2,0xff,0xbd,0xde,0x81,0xfe,0xc6,0x26,0x11,0x5d,0x36,0x95,0x57,0xaf,0x69, + 0x51,0x67,0x90,0x09,0x04,0x51,0xa4,0x66,0x88,0xc6,0x49,0xe8,0xe4,0xe1,0x7c,0x6e,0x10,0xb1,0xc2,0x88, + 0x6a,0xdd,0x46,0x29,0x0d,0xb7,0x33,0x1b,0xe7,0x01,0xcb,0xad,0xca,0xe4,0x86,0x29,0x8d,0xda,0x36,0x06, + 0xa0,0x23,0x36,0x00,0xc8,0x0c,0x1c,0x72,0x33,0x63,0xe4,0x3a,0x15,0xbb,0xc7,0xf7,0x54,0x56,0xa8,0x91, + 0xc4,0x87,0xf7,0xee,0xdd,0x4f,0xdc,0xc8,0x46,0xf7,0x0e,0xbe,0x89,0xcd,0x8b,0x2e,0x83,0xe2,0x5b,0xe5, + 0x82,0x57,0xc5,0x8e,0x86,0xfb,0xc0,0x7e,0xc0,0x15,0xeb,0x0d,0x13,0xe7,0x82,0xb8,0xa0,0x59,0x76,0x46, + 0x24,0x92,0x61,0x09,0xa6,0x9b,0x61,0x86,0x6d,0x46,0xc8,0x47,0x10,0x5c,0xd2,0x80,0x36,0x0a,0xb4,0x64, + 0x59,0x16,0xa5,0xbf,0x16,0xf3,0x70,0x12,0x06,0xaf,0x64,0x4d,0xe0,0xf2,0x65,0xe7,0x09,0x72,0x03,0x51, + 0x0b,0x9e,0x82,0x69,0x64,0x3f,0xbe,0x0d,0x2c,0xf9,0x6b,0x9d,0xbe,0x43,0xbb,0x28,0xe8,0xdb,0x55,0xef, + 0x07,0x8b,0x6a,0x47,0x5e,0x4d,0xa4,0x04,0x69,0x43,0x75,0x06,0x4f,0x8e,0x5e,0xbf,0x7a,0xf5,0xf0,0xd1, + 0xeb,0xb7,0xef,0x9f,0x3c,0x0e,0x1a,0xb5,0x97,0x83,0x2e,0x29,0x46,0xa8,0x97,0xf2,0x1a,0x38,0x8b,0xd8, + 0x98,0x71,0x42,0x40,0xd8,0xda,0x86,0x6e,0x07,0x46,0x60,0x07,0x9b,0xc7,0xe2,0xe8,0x9a,0xa1,0x2b,0x6c, + 0xa7,0x47,0xb1,0x62,0x22,0x86,0x63,0x02,0xb7,0xe5,0xb1,0xca,0x76,0x27,0xe6,0x49,0x32,0xe6,0x1d,0x11, + 0xd0,0x79,0xaf,0x37,0xb0,0xca,0x64,0xd8,0x01,0x1a,0x37,0x78,0x7e,0xd9,0xe2,0x6f,0xad,0x68,0x6b,0x46, + 0x80,0x32,0xd1,0xc8,0x0a,0x08,0x26,0xd0,0xb8,0xde,0xe3,0x68,0x46,0x16,0xad,0xc9,0x13,0xac,0x6b,0xab, + 0x2d,0x5a,0xbd,0x5a,0x9d,0x50,0xad,0x11,0x53,0x97,0xa7,0xed,0xb4,0x04,0x3b,0xaf,0x09,0x90,0x4c,0x54, + 0x4c,0x1b,0x49,0x2d,0x90,0xd5,0x24,0x86,0x92,0x2f,0x07,0x38,0xa9,0xb7,0xc1,0x3a,0xaa,0xcf,0x69,0x39, + 0x88,0x77,0xed,0x64,0xca,0x8b,0xfc,0x71,0x71,0xc9,0x68,0xed,0x8d,0xc6,0x65,0x84,0xac,0x07,0xe9,0x74, + 0xfa,0xe4,0x02,0xe4,0x45,0x56,0xd1,0xf8,0x69,0x24,0x81,0xc1,0x74,0x04,0x05,0x1d,0xdf,0x44,0xe2,0x96, + 0xca,0x3f,0x2c,0xdb,0x55,0xaf,0x38,0xc5,0x3d,0xfd,0x69,0x5b,0xcd,0x2a,0x30,0x47,0x13,0xa7,0x8b,0x60, + 0xf9,0x81,0x7b,0x05,0xa3,0xc2,0xfc,0x24,0x33,0x64,0xfe,0x59,0x36,0xe5,0x39,0x4f,0x4f,0xe9,0x90,0x23, + 0x54,0x08,0xb9,0xa0,0x86,0x5c,0x2c,0x90,0xbf,0xe6,0xe1,0x4c,0x25,0x0b,0xac,0x27,0x9d,0x94,0xb3,0xbf, + 0x71,0x76,0xd3,0xa9,0x7c,0x0b,0x65,0x81,0x4f,0x34,0x37,0x3f,0x50,0x3b,0x7d,0xd0,0x24,0xd8,0x86,0xb9, + 0x46,0x0b,0xbd,0x5e,0xd6,0xeb,0xed,0x66,0xa1,0x79,0x8f,0x46,0xc4,0x45,0x85,0x81,0x06,0xac,0x9d,0x59, + 0x4a,0x28,0x72,0xba,0x03,0xe0,0xd9,0x51,0x05,0x76,0x40,0x1f,0xd3,0xae,0x35,0x1f,0x08,0xd3,0x82,0xc2, + 0x00,0xb9,0xd5,0x32,0xe5,0xa0,0x6f,0xc3,0xfc,0xaf,0x8f,0xe6,0xf0,0xf6,0xd1,0x08,0x62,0x96,0xd4,0x88, + 0x52,0x3e,0x32,0x19,0xeb,0x80,0x7b,0xb7,0x0a,0xa5,0xd4,0x16,0xfb,0x9f,0x48,0xba,0xc0,0x59,0x12,0xb7, + 0xe3,0x84,0x6a,0x6a,0x48,0x09,0x65,0x80,0xc0,0x1a,0x60,0xcc,0x49,0xae,0x36,0x8c,0x92,0x7a,0x94,0xde, + 0xe6,0x49,0x32,0x51,0xff,0x3d,0x51,0x8d,0x51,0x0a,0x32,0xb3,0xf1,0xe1,0xed,0xb3,0xa3,0x62,0x41,0x35, + 0x11,0x54,0x86,0xb5,0x27,0xbd,0xfb,0xaf,0x6f,0x0e,0xee,0x9e,0x65,0x22,0xf8,0xbf,0xbe,0x48,0xef,0xbf, + 0xee,0x3f,0xe4,0xc4,0xb8,0x91,0x78,0xef,0x9b,0xbb,0x67,0x22,0xd8,0x6b,0xa6,0x1d,0x71,0x41,0xd1,0x4c, + 0x3c,0x40,0xc1,0x7e,0x23,0xed,0xdb,0x47,0x5c,0xf0,0xb8,0x99,0xf8,0x98,0x13,0x4f,0x82,0xc8,0xd3,0xfd, + 0x7d,0x05,0xdc,0x08,0x23,0xec,0x4a,0xa3,0x71,0xad,0x79,0x55,0x0b,0x50,0x4e,0x79,0x04,0xc2,0x52,0x6a, + 0x0d,0x11,0x25,0x64,0x1d,0x8c,0x99,0x8c,0xa8,0x94,0xf4,0x58,0x2c,0x2e,0xad,0x17,0xfc,0xf8,0x64,0x98, + 0x59,0xfc,0x29,0x5b,0x8b,0xdb,0xa5,0xe5,0x02,0x07,0x6b,0xb8,0x43,0x66,0xd3,0x43,0xd9,0x4f,0x82,0x63, + 0x1a,0x8a,0xf0,0xd3,0x89,0x00,0xd3,0x6a,0xaf,0xac,0x8b,0x0c,0x07,0xef,0x35,0x50,0xda,0x06,0x66,0x2c, + 0x41,0x9d,0x14,0xcf,0xde,0xbd,0x36,0x5d,0x8c,0x33,0x9f,0x09,0x64,0x39,0xd7,0x36,0x87,0x07,0xb5,0x2a, + 0x24,0x3b,0x84,0x9c,0xa3,0x7e,0x90,0x04,0x7d,0xd6,0xb0,0x41,0x14,0x01,0x82,0x3b,0x1d,0x7c,0x2e,0xb2, + 0x3c,0x0c,0x7a,0x34,0xc9,0x7a,0xe6,0x0a,0x54,0xd4,0x4f,0xc2,0xfd,0x43,0xa8,0x3b,0x1c,0xa9,0x32,0x0a, + 0xa2,0x11,0xfd,0x89,0x51,0xb6,0x5f,0x44,0x7f,0x0e,0x70,0x0d,0x02,0xff,0x38,0x48,0x41,0xcd,0x06,0xa9, + 0x4f,0xd6,0xd1,0xbb,0x39,0x70,0x94,0x70,0xc9,0x4b,0xe0,0x13,0x48,0x04,0xb2,0x4e,0xcf,0xf0,0x73,0xb5, + 0xcc,0x08,0xd8,0xe9,0x69,0x46,0x08,0x0f,0x0c,0x97,0xe2,0x9f,0xb2,0xd9,0xfe,0xa2,0x98,0x66,0xb3,0x4c, + 0x4e,0xf7,0xab,0x8c,0xd0,0xa2,0x4a,0x5b,0xe5,0x5b,0xa9,0xf3,0xb4,0xaa,0x6d,0x59,0xbc,0x17,0x13,0xd3, + 0x07,0xe2,0x2e,0xc1,0x7d,0x5f,0xd2,0x41,0x8e,0x16,0x08,0xa5,0x5e,0x5d,0xef,0xb7,0x3b,0x5a,0x4a,0xe2, + 0xe9,0xe9,0x38,0xc5,0x13,0x1d,0x53,0xfb,0xe9,0xac,0xe6,0x37,0x10,0xb3,0xfb,0x34,0x36,0xa2,0x74,0x4e, + 0x6e,0x61,0x2b,0x58,0x0c,0x48,0x1b,0xbc,0x20,0xce,0xc6,0xe9,0xe3,0x6b,0xe2,0xda,0xdd,0xaa,0x0f,0x2a, + 0x62,0x40,0xeb,0x30,0xf8,0x94,0x13,0x8c,0xb4,0xb8,0xef,0xc2,0x5f,0x06,0xda,0x75,0x42,0x26,0xc4,0x95, + 0x95,0xd9,0x02,0x9f,0xad,0x4e,0x69,0xbe,0xc3,0x03,0x42,0x3b,0x51,0xf3,0xac,0x16,0xf9,0x56,0xa9,0xa2, + 0x7f,0x48,0x00,0xa1,0x0e,0xcf,0x94,0x8e,0x70,0x42,0xbd,0xb6,0x62,0x19,0x7d,0x9f,0x1c,0xe8,0xdd,0x33, + 0x44,0x66,0x02,0x52,0x62,0x7f,0xc2,0x04,0x08,0x93,0x02,0x23,0xfe,0x66,0x84,0x3f,0xf1,0xf1,0x49,0x04, + 0x0c,0x45,0x53,0x18,0x1e,0xe7,0x27,0x51,0x6c,0x73,0xfa,0x81,0x00,0x6a,0x8e,0x73,0x30,0xbc,0x29,0x65, + 0xfc,0x75,0x28,0xf1,0x66,0xef,0x36,0xda,0x6a,0xe4,0xeb,0x01,0x9c,0x3e,0xc6,0x1a,0x1e,0xd4,0x56,0xfc, + 0xc8,0x3b,0x90,0x06,0xf0,0xb0,0xa6,0x76,0x4e,0x57,0xb4,0x83,0x82,0x73,0x5a,0xc2,0x00,0xb6,0x04,0x84, + 0x2e,0x07,0x78,0xc1,0xb6,0xbb,0xa5,0xc8,0x0d,0x9e,0x62,0x55,0x4c,0xb0,0x30,0x70,0x52,0xcc,0xe9,0xdd, + 0x3c,0x8e,0xdc,0xa3,0xc3,0x58,0xb1,0xd2,0x74,0xc4,0xc4,0xd5,0x00,0x3c,0xf1,0x39,0xfd,0x88,0x8a,0xf1, + 0x4c,0x8c,0xb6,0xf0,0x30,0x32,0x0f,0xbe,0xde,0x64,0xe4,0xbe,0x4c,0x2b,0x94,0xc5,0xcf,0x48,0xfd,0x78, + 0xe5,0xfe,0x4f,0xa3,0x01,0xf0,0x50,0xba,0x11,0x3c,0x0a,0xcc,0x1d,0xfa,0x48,0x3f,0x62,0x99,0xd6,0xe7, + 0x9c,0x1f,0xdc,0xc5,0xe2,0x51,0xaa,0x4e,0x18,0x40,0x28,0xf4,0xb0,0x0e,0x0f,0xa2,0x91,0x4b,0x44,0xa9, + 0xbe,0x7b,0x55,0x82,0x78,0x5a,0xab,0xe4,0x6e,0xb8,0xa8,0x32,0xb9,0xa6,0x09,0x02,0xd9,0x16,0xdd,0xcd, + 0x06,0x35,0xa4,0x9d,0x4e,0xd3,0x06,0xf0,0x7f,0x08,0xe8,0xc7,0x26,0x37,0xca,0x33,0x6d,0x78,0xf1,0x64, + 0x2e,0xf1,0x16,0x06,0x69,0x60,0xcf,0x49,0x5a,0x23,0xcd,0x8b,0x0f,0xcc,0x0e,0xd4,0x6b,0xe1,0xa4,0x0f, + 0x86,0x72,0x50,0x50,0xc0,0xb8,0x2e,0x27,0xf4,0x47,0x7f,0xe2,0xdc,0xd9,0x8d,0x98,0xf9,0x67,0x2a,0xd5, + 0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86,0xf0,0xe4,0x96,0x66,0x71,0xf7,0xe0,0xeb,0x67,0xb4, + 0xa7,0xf3,0xd1,0x5a,0x8d,0x05,0x91,0x62,0xb4,0xcb,0x93,0x40,0x75,0x68,0x07,0x68,0x8a,0x78,0xe5,0x6a, + 0x27,0xa5,0xbe,0xe4,0x4c,0xda,0xec,0x60,0x66,0xd3,0x09,0xd0,0xc2,0x46,0x41,0x75,0xf0,0xf0,0xd1,0xd1, + 0xe3,0x27,0x4f,0x7f,0xf8,0xf1,0xd9,0x4f,0xcf,0x5f,0xbc,0x7c,0xf5,0xfa,0xcd,0xcf,0x6f,0xdf,0xbd,0xff, + 0xf0,0xf1,0x97,0x5f,0x7f,0xfb,0x77,0x7a,0x3a,0x21,0x76,0xfe,0xec,0x3c,0xfb,0xfc,0x65,0xbe,0xc8,0x8b, + 0xe5,0xef,0x65,0x55,0xaf,0x2e,0x2e,0xaf,0xae,0xff,0x38,0x38,0xbc,0x77,0xff,0x9b,0x6f,0xff,0xf9,0xdf, + 0xff,0xfa,0xae,0x7f,0x37,0x09,0x86,0xb9,0x93,0x45,0x3b,0xc2,0x43,0x78,0xa9,0x8a,0x34,0xf8,0xb6,0x91, + 0x84,0x45,0x4c,0x82,0x67,0xaa,0x5f,0x47,0xa6,0x5b,0x86,0x53,0xea,0x44,0x52,0x46,0xad,0x26,0x41,0xc2, + 0x24,0x7a,0xda,0x6b,0x08,0x63,0x08,0xda,0xaa,0xe4,0x00,0xf6,0x35,0xc3,0xc2,0x42,0xcf,0xba,0xc2,0xe9, + 0x35,0x49,0xe8,0x44,0x11,0xd5,0x7f,0x11,0xe1,0x94,0xf6,0x93,0x89,0xc9,0xfd,0xe7,0xfd,0x9e,0xfc,0xfe, + 0xfb,0x7f,0xed,0x53,0xc6,0x3f,0xfe,0x15,0x31,0xba,0x09,0xb3,0x44,0x7d,0x7c,0x44,0xbd,0xa5,0x22,0x55, + 0x3f,0x19,0xfc,0xf7,0xb7,0x51,0xf4,0xfd,0xbd,0x6f,0xbf,0xd5,0x04,0x3b,0x46,0x97,0x0f,0x65,0x22,0x1f, + 0x3c,0xf8,0xd7,0x3a,0x33,0xc7,0xd1,0xff,0x32,0x02,0xb9,0xb9,0x2c,0xb3,0x86,0xf2,0xde,0x50,0x6d,0x84, + 0xac,0x6e,0x94,0xb5,0x07,0x9d,0xf6,0x95,0xd6,0x86,0xf0,0x81,0xd9,0x41,0x23,0x11,0xb5,0xc0,0xfc,0x9f, + 0xb2,0x36,0x20,0xc0,0xec,0xf5,0xf4,0x27,0xe6,0xa4,0xa2,0xef,0x30,0x1e,0x3e,0xbb,0x73,0x60,0xe6,0x1f, + 0x5e,0xbe,0xb7,0xd2,0x5b,0xe1,0x41,0x76,0xe6,0x7d,0x8b,0xfd,0x47,0x1f,0x66,0x8d,0x02,0x85,0x57,0x60, + 0xca,0x02,0x1a,0x2a,0x52,0x40,0x70,0x41,0x40,0x9e,0xba,0xbc,0x4a,0x4e,0x56,0x25,0xa4,0xde,0x6e,0x17, + 0x32,0xee,0x4e,0x2a,0x7d,0xc6,0x0f,0x77,0xe8,0x90,0x17,0x60,0x2e,0xe3,0xad,0xd3,0x29,0x69,0x7d,0x34, + 0x58,0x30,0x9f,0x85,0x21,0xbc,0x95,0x67,0x4f,0xae,0x96,0x61,0x10,0xfe,0x67,0x3d,0xfc,0xf4,0xa9,0xfa, + 0x47,0x14,0x12,0xc3,0x4c,0xe4,0x5b,0x12,0x1e,0xff,0x67,0x78,0xf2,0x8f,0x28,0x70,0x4a,0x1f,0x49,0xfc, + 0xe1,0xf6,0x5c,0x1d,0xdf,0x3f,0x51,0xf2,0x09,0x34,0xbe,0x28,0x2e,0x9a,0x46,0x10,0xbc,0xbb,0x78,0x51, + 0x68,0x2d,0x08,0xd4,0x30,0x63,0x83,0xbc,0xb8,0x0c,0xa3,0xfd,0x7f,0xfd,0xf3,0x1b,0xf9,0x2d,0x51,0xd3, + 0x71,0x7b,0xd1,0x20,0x73,0x6a,0x8e,0xa3,0xa1,0x26,0xdd,0x6e,0x87,0x3e,0xf8,0x1b,0xe4,0xb1,0xee,0xd4, + 0x39,0x81,0xcf,0x1c,0xd2,0xe2,0xe3,0x13,0x9f,0x00,0xf5,0x35,0x90,0x54,0x41,0xb7,0xbe,0xba,0x51,0x81, + 0x5a,0xa0,0x1b,0xab,0x59,0x63,0x99,0x87,0xd2,0xac,0x29,0xe5,0x7a,0xa3,0xb0,0xa2,0x84,0xf6,0x0f,0x21, + 0x61,0x70,0x2d,0x71,0xf9,0x64,0x6b,0xe2,0xcc,0x57,0x44,0x44,0x82,0x6c,0x6b,0x25,0x69,0x7e,0xaf,0x51, + 0x91,0xa6,0x38,0x92,0x26,0x95,0x69,0xe9,0x10,0xbf,0x06,0xcf,0x56,0xc0,0x92,0xb9,0x92,0x18,0x50,0x7a, + 0x25,0x16,0xf1,0x7f,0xa8,0xc7,0x82,0x79,0xe1,0x57,0xf8,0x59,0x46,0x05,0xcf,0x66,0x9a,0xfb,0x93,0xd3, + 0x30,0x6a,0x1b,0xfe,0x1d,0x7e,0xa7,0x24,0xc4,0xb0,0xc0,0xb3,0xa6,0x7f,0xf4,0x7a,0x08,0x01,0x31,0xfd, + 0xde,0xc2,0x23,0x78,0xa6,0x7f,0x35,0xd8,0xa8,0xd3,0x54,0x4b,0xe7,0x76,0x27,0x5a,0x18,0xc3,0x7c,0x16, + 0x3d,0x24,0xab,0xd0,0x66,0x0b,0x2d,0xa7,0x11,0x56,0xd4,0xeb,0x84,0xbe,0xac,0xe9,0x53,0xb2,0xe0,0x04, + 0xa2,0x46,0x16,0x0a,0xdb,0x5c,0xe8,0x6b,0x5a,0x9a,0x2b,0xbf,0x16,0x63,0x7e,0x68,0x53,0x06,0x4a,0x25, + 0xa1,0x2b,0xb5,0xb2,0x7f,0x2d,0xd9,0x3c,0x69,0xa6,0xe3,0xcd,0x67,0x1a,0x6e,0x53,0xb0,0x76,0x68,0x19, + 0x40,0x61,0xa3,0x21,0x5f,0xdd,0x40,0xcb,0x6b,0x64,0xf7,0xb6,0x65,0x79,0xb2,0x81,0x32,0x7c,0xa0,0x55, + 0x7b,0xeb,0x75,0x65,0x1e,0x23,0xb0,0x88,0x4d,0x79,0x83,0x6c,0xce,0xae,0x34,0x93,0xa2,0x1e,0xe8,0xbd, + 0x73,0x52,0x14,0xef,0x4a,0xc5,0x37,0xa2,0xa3,0xa6,0x94,0x9e,0xe9,0x88,0x51,0x15,0xc2,0x3e,0xcf,0x30, + 0xbb,0xe0,0xa6,0x9c,0x32,0xdb,0xb6,0xd4,0x48,0x11,0xde,0xfb,0xd7,0xda,0xa6,0x95,0x75,0x1a,0x79,0x66, + 0xa4,0xe4,0xdf,0x52,0x5d,0x7c,0x85,0x1d,0x35,0x13,0x62,0x17,0x29,0x6f,0x90,0x38,0x75,0xa2,0x30,0xc6, + 0x66,0x9b,0x93,0xfa,0x0b,0x02,0x03,0x4b,0xc8,0x84,0xbb,0xf5,0x7a,0x0d,0xc3,0x8d,0xf1,0xd1,0xc3,0x57, + 0x47,0x4f,0x5e,0x8c,0xc7,0xff,0x03,0xf1,0x83,0xa9,0xed,0xee,0x7f,0xc2,0xe3,0x74,0xff,0x8f,0x13,0xfc, + 0xf9,0x34,0xfd,0xd4,0xff,0xb4,0xff,0x69,0x70,0xf2,0x8f,0x38,0x1a,0x7d,0xba,0xfb,0xe9,0xae,0xa1,0xfd, + 0xea,0xff,0x91,0x7c,0xc3,0x49,0x1c,0x46,0x9e,0xc1,0xd0,0xa7,0xbb,0x7d,0x45,0x33,0xf7,0x41,0x80,0x4a, + 0x9f,0x22,0xbe,0xdb,0x57,0xb4,0xee,0x9f,0x4c,0x4e,0xd3,0x3a,0xa7,0x41,0xaa,0xd5,0x9b,0xbc,0xc3,0x48, + 0x33,0xd9,0x3a,0x33,0x02,0x65,0xd4,0x1b,0xf4,0x43,0xff,0x73,0xe2,0x74,0x21,0x19,0xf6,0x52,0x62,0x58, + 0x31,0x35,0xc8,0x2c,0x37,0xe9,0xd0,0x8f,0x78,0x66,0xd3,0x7f,0x0b,0x1f,0x42,0x92,0x69,0x85,0x89,0xbb, + 0x9e,0x86,0xd5,0x52,0x45,0x90,0x6a,0x2a,0x81,0x13,0x91,0x17,0x74,0xcc,0x13,0xe1,0xbd,0xb3,0x58,0x55, + 0xf5,0xce,0xa9,0xdc,0x49,0xad,0x6d,0xd4,0x20,0xd0,0x16,0x27,0x43,0xee,0xb5,0x96,0x0c,0x26,0x9d,0xda, + 0x2c,0x58,0x7c,0xd0,0x04,0xa9,0x0f,0xf2,0x04,0x1f,0x0c,0xeb,0x46,0x36,0xc4,0x68,0x69,0x05,0x84,0x14, + 0x9a,0x47,0xae,0x2a,0xe3,0xfd,0x68,0xd3,0x20,0x47,0x70,0x18,0xfa,0x7e,0xf3,0x78,0x6c,0x23,0xf3,0x96, + 0x3e,0x45,0x1b,0x50,0x70,0x35,0x6a,0xb0,0x5e,0x0a,0x4e,0xad,0xaa,0x58,0x95,0x13,0xe9,0x7f,0x85,0x96, + 0x0c,0x93,0x77,0x53,0xe3,0xc4,0x60,0xd3,0xa1,0xb2,0x81,0x8a,0xea,0x04,0xa7,0xaa,0x3a,0x55,0x18,0x7e, + 0x6e,0x3d,0xa9,0xfe,0xc6,0xde,0xd8,0xe9,0x40,0x51,0xc6,0x70,0x8c,0xe5,0x8e,0x12,0xb6,0x63,0x50,0x7c, + 0xb6,0x5b,0xb8,0xdd,0xd7,0xa1,0x43,0x9b,0xf9,0xbf,0xe4,0xee,0x20,0xe1,0xc0,0xf0,0x71,0x25,0xbb,0xdd, + 0x17,0xba,0x81,0xb1,0xee,0xb4,0x77,0x5d,0xaf,0x31,0x3a,0xb6,0x7c,0xf5,0x8c,0x1e,0xdb,0x25,0x95,0xd0, + 0xcb,0x88,0xc2,0x36,0xcd,0x5d,0x69,0x78,0xae,0x66,0x25,0xbe,0xf9,0xfa,0x96,0x79,0xc1,0x7a,0xbd,0x6d, + 0xaf,0x4b,0x69,0xd5,0xf5,0xe2,0xb4,0x98,0x37,0xd3,0x4e,0x8b,0x62,0x2e,0xd3,0xbc,0xd3,0x7e,0xfd,0x7f, + 0xc7,0xe2,0x5d,0x89,0xd8,0xd8,0xc8,0xf6,0x3c,0xef,0x34,0x78,0x37,0x54,0x34,0x5b,0x42,0xb0,0xf5,0x5d, + 0x68,0x39,0x28,0x47,0x1d,0x7f,0x9f,0x1c,0xf4,0x7a,0x2f,0x89,0xc6,0x1f,0xcc,0xe6,0x45,0x01,0x81,0x5c, + 0xc2,0x04,0x15,0x2c,0x4c,0x72,0x26,0x80,0xbd,0x5a,0xab,0x56,0xd7,0xa9,0xb3,0xa3,0x20,0xd8,0xf6,0x60, + 0xa9,0x47,0x6d,0x99,0x9f,0x12,0x83,0xdf,0x8b,0x62,0xdb,0x05,0x57,0xeb,0xa4,0xb3,0xaf,0x4e,0x8c,0x4d, + 0x2c,0x4d,0xfa,0x8a,0x3a,0x36,0xaa,0x89,0x32,0xb5,0x5f,0xad,0xb4,0x25,0xa4,0xb5,0xbc,0xd4,0x26,0xf0, + 0x8a,0xcd,0x0f,0x95,0xfa,0xa0,0x4c,0xac,0x10,0x4b,0x40,0xce,0x99,0x1c,0x0c,0xb3,0x07,0xa5,0xb1,0x1a, + 0xcb,0x94,0x01,0xe6,0x71,0x76,0x72,0x42,0xb8,0xd2,0x31,0x0c,0x5d,0xea,0xf7,0xe3,0xba,0x29,0xc9,0x3a, + 0xd9,0x74,0x59,0x77,0x50,0xb1,0x93,0x8d,0xeb,0xe3,0xdc,0xba,0x1d,0x18,0x7f,0x01,0xa3,0x53,0xad,0x3d, + 0x19,0x17,0xcb,0x83,0xbf,0xdf,0x3f,0xb4,0x62,0x62,0xee,0x32,0x9d,0x38,0xb9,0x38,0x8c,0xbc,0xda,0x66, + 0x8d,0x33,0xeb,0xcc,0xac,0x3a,0x36,0xb9,0x2d,0xb3,0x74,0x73,0xd9,0x31,0x1f,0xc3,0x36,0xda,0x70,0x24, + 0x81,0x3c,0xce,0x89,0x9e,0x0b,0xf1,0x03,0x4b,0xe0,0xc8,0x6f,0x78,0xba,0x65,0x74,0xaa,0xc5,0x21,0x65, + 0x87,0x41,0xb0,0xa6,0x30,0x46,0xe5,0xf7,0x87,0x23,0x67,0xc4,0x6a,0xcb,0x01,0x07,0x70,0xbf,0xd9,0x8c, + 0xd7,0x3c,0x5b,0x41,0x6f,0x3e,0x18,0xab,0x8a,0xac,0x87,0x85,0xc8,0x5d,0x47,0xce,0x55,0x47,0x08,0x83, + 0xac,0xd7,0x07,0x43,0xb7,0xf4,0xa6,0xec,0xbe,0xa4,0x15,0x77,0x16,0xb8,0x79,0x34,0xcc,0xf7,0xf7,0x87, + 0x51,0xc9,0x83,0x3a,0xce,0xfb,0xd2,0x9a,0xd7,0x96,0xae,0xd2,0x8b,0x16,0x20,0xc1,0x4b,0x43,0x46,0xf0, + 0xe1,0x48,0x30,0x1b,0x56,0x34,0xea,0xbe,0x58,0x34,0x64,0x13,0xb0,0x8e,0xce,0x09,0xb0,0xf2,0x07,0xce, + 0x29,0x84,0x00,0x0b,0x15,0xf4,0x7a,0x17,0x50,0x3f,0x42,0x1a,0x69,0xa1,0xcb,0x55,0x73,0x66,0xce,0x61, + 0x97,0x74,0xed,0x00,0x06,0xdb,0x30,0x32,0x58,0x4a,0x1f,0x89,0x7c,0xce,0x95,0xf4,0xa3,0x80,0x66,0x97, + 0x0e,0xc2,0xdd,0xd2,0x14,0x22,0xb6,0x65,0xb7,0xec,0xf5,0xec,0x06,0xa3,0x0a,0xf4,0x33,0x95,0x86,0x12, + 0x93,0x95,0x0f,0x09,0x4f,0x8d,0x27,0xef,0x27,0xbe,0xa5,0x99,0xa4,0xea,0x2e,0x7a,0xbd,0xd4,0x01,0xa4, + 0x5e,0x13,0x08,0xb0,0xd4,0x23,0x58,0x24,0x79,0x21,0xcb,0x6b,0xef,0x7c,0xf6,0x08,0x4c,0x1e,0x07,0x86, + 0xbd,0x51,0x95,0xad,0xd7,0xa6,0xb2,0xdd,0xc3,0xa1,0x92,0x68,0x68,0xf0,0xfc,0x22,0xaf,0x81,0x55,0x88, + 0x5d,0xf2,0x13,0x9c,0xfd,0x78,0xe5,0xda,0x9e,0xd8,0xb6,0xab,0x76,0xdb,0x8d,0x96,0xe1,0x7d,0xa3,0x1b, + 0x77,0xd6,0x5f,0xa6,0x75,0x0f,0xac,0xc7,0x6d,0x0c,0xb2,0xb5,0x86,0xd4,0x75,0x53,0x5f,0x64,0xdd,0xe6, + 0x74,0xcf,0x88,0x19,0xb6,0x35,0x9d,0xba,0x5d,0x47,0xe3,0xdb,0x36,0x0f,0x97,0xd8,0x59,0x8a,0x1c,0x53, + 0x1b,0x82,0x0f,0x3f,0xb7,0x27,0xfc,0xcd,0x76,0x69,0x34,0x6f,0xd1,0x8d,0x9e,0x11,0x75,0x7c,0x1a,0xff, + 0x20,0xce,0xa6,0xc6,0xe6,0x2b,0x19,0xe7,0x42,0xd2,0x89,0x24,0xcb,0xf4,0x74,0x2e,0xe3,0xdd,0xdd,0x52, + 0x40,0x26,0xa1,0x5e,0x0e,0xb4,0x2d,0xc3,0x4a,0x67,0x1e,0x6c,0x3c,0x2c,0x71,0xe5,0x1d,0x28,0x1d,0x2a, + 0xe3,0x5e,0xef,0x6e,0xce,0x0e,0x0c,0xac,0xd5,0xbc,0xab,0x49,0x6c,0xdf,0xd4,0xcf,0x55,0xb5,0xd7,0xb2, + 0x51,0xfa,0x2d,0x0f,0xd5,0xe9,0x2b,0x9a,0x3f,0xee,0xe8,0x71,0xdf,0x7e,0xd1,0xca,0x7e,0xbd,0x87,0x27, + 0x46,0x3c,0xf3,0x5a,0x99,0xe0,0xea,0xbd,0xfc,0x1b,0x6c,0x69,0xea,0xf4,0x4c,0x58,0x6e,0x76,0x72,0x9e, + 0xcd,0xa7,0xa5,0xcc,0xc1,0x3d,0xc1,0x7e,0x83,0x40,0x71,0xbe,0x10,0xac,0x9e,0xe4,0x77,0x64,0xa4,0xd5, + 0x75,0x3e,0x79,0x9a,0xc2,0x9e,0xfd,0xda,0x29,0x44,0x07,0x39,0x78,0x65,0x54,0xad,0x64,0x71,0x75,0x36, + 0x01,0x2a,0xd6,0x8f,0x94,0x4a,0xd0,0x97,0x30,0x0c,0x72,0x89,0x23,0xe2,0x4a,0xa9,0x3f,0x5c,0x44,0x3f, + 0x53,0xfa,0x2c,0x3f,0x52,0x0d,0x51,0xba,0x7d,0xe6,0x74,0xdd,0x71,0x4e,0xb7,0x83,0xa0,0xe7,0x77,0x13, + 0x5a,0xbb,0x67,0x53,0x4e,0xd7,0xcf,0xaa,0xfe,0x39,0x8d,0x97,0x5d,0x24,0xa5,0x52,0xa8,0xea,0x81,0xd1, + 0x4b,0x69,0x5f,0x92,0x23,0x2f,0x07,0xa6,0x41,0x11,0xd4,0xaf,0xb9,0x5f,0x38,0xf7,0x0b,0xe7,0xcd,0xc2, + 0x84,0x30,0xdc,0x8c,0x1f,0xb5,0x41,0xde,0x62,0xd9,0x26,0xde,0xd4,0x27,0x65,0xce,0x47,0x24,0x0e,0xc8, + 0x84,0xd6,0x8a,0x7e,0x3c,0xc7,0x0e,0xaf,0xd6,0x87,0xde,0x3a,0x62,0xbb,0x2b,0x0f,0x9e,0xdd,0xb0,0xe1, + 0x6f,0xf3,0x5b,0x6e,0xb7,0x10,0x0e,0xb2,0x60,0x3c,0x2e,0x4e,0xc7,0xe3,0x80,0xad,0x4d,0xd4,0xb3,0x5f, + 0xba,0x28,0x47,0xe8,0x9c,0xca,0x88,0x33,0x22,0xbb,0xcf,0x8b,0xd5,0x7c,0x4a,0x93,0x4d,0x1b,0x9f,0x00, + 0x74,0xf7,0x8f,0x9c,0xad,0xfc,0xda,0xd8,0x6c,0xbd,0x06,0xb1,0x44,0x39,0x7a,0xef,0x64,0xd5,0x13,0x78, + 0x9f,0x54,0xd9,0x29,0x9b,0xcb,0xd2,0x87,0xec,0x4f,0x40,0x54,0x28,0xa6,0x8d,0xc7,0xcc,0x2a,0x73,0x66, + 0xe7,0x79,0x5a,0x2f,0x16,0x47,0xc5,0x2a,0xaf,0xfb,0x7d,0xff,0xe0,0x79,0xe7,0xab,0xc3,0x15,0x1e,0x65, + 0x6b,0xb9,0x9c,0xb0,0xa7,0x6e,0xe9,0x4c,0xd6,0x9e,0x17,0xdf,0x63,0x59,0x4d,0xca,0x0c,0x36,0xee,0x3c, + 0x37,0x8c,0xad,0x53,0xc2,0xd6,0x87,0x44,0xed,0xa5,0x03,0x7f,0x6b,0x1a,0x09,0x6f,0x4a,0x08,0x17,0x95, + 0x10,0x26,0xe4,0xc7,0x8a,0x1e,0x57,0xc9,0x6e,0xd6,0xeb,0x3d,0xc4,0x41,0xf6,0x15,0x5c,0xe0,0xe3,0x80, + 0xad,0x6d,0x2f,0xa8,0x4a,0x5f,0xe6,0xa8,0xb0,0x54,0x35,0xaa,0x0c,0xcd,0xe8,0xd4,0x17,0xbf,0xe6,0xb4, + 0xcd,0x4a,0x2a,0x4f,0x53,0x53,0x50,0x4b,0x4b,0x58,0x5e,0x44,0x62,0x45,0xaf,0x2b,0xbc,0xba,0xa4,0xf6, + 0x81,0xd1,0xeb,0x79,0x04,0x7b,0x03,0xbe,0xf4,0xee,0x57,0xde,0x43,0xb2,0xed,0x35,0x44,0x2b,0x20,0x61, + 0x98,0x89,0x79,0x57,0x4b,0xed,0x9e,0xbe,0xd6,0x22,0x64,0xdb,0x6c,0x44,0x11,0xb2,0xb4,0x44,0x6e,0x44, + 0xe5,0x8f,0x52,0x1a,0xea,0xa4,0x39,0x4c,0x49,0x67,0x48,0xb9,0x5e,0xcb,0x5d,0x36,0x21,0xdd,0xc5,0x73, + 0x38,0x19,0x4d,0x1c,0x19,0x15,0x53,0x77,0xec,0x9c,0x4b,0xd8,0xc6,0xe6,0x45,0x0d,0xf2,0x95,0x6d,0xe4, + 0x3d,0x1c,0xfd,0xde,0x53,0xef,0xb7,0x21,0x90,0xd6,0x2e,0x74,0xa7,0x85,0x3d,0x3a,0x99,0xc4,0x5e,0xa4, + 0x57,0x96,0x12,0x84,0x46,0xcf,0x52,0x7a,0x52,0x1c,0x52,0x75,0x82,0x77,0x8f,0x64,0x37,0x51,0xec,0x1f, + 0x7e,0x6a,0x7b,0x76,0xba,0xaa,0x95,0x81,0x6b,0xae,0x25,0x3f,0x66,0xb3,0x38,0x07,0x22,0x05,0xe7,0xeb, + 0x75,0x09,0x4b,0x2b,0x0d,0xd6,0xa3,0x3c,0x2e,0x47,0xe1,0x3b,0x42,0x2f,0x7c,0x82,0xf0,0x28,0x08,0x15, + 0x61,0xae,0xcd,0x58,0x41,0x97,0x19,0xeb,0xd9,0xdc,0xc3,0xd6,0xaf,0x2d,0x6d,0x72,0xcb,0x90,0xfd,0xd1, + 0x78,0xa6,0x0a,0x6e,0x1f,0x0f,0x5d,0x9f,0xfc,0xad,0xb6,0x5e,0x2b,0xca,0x16,0xc6,0x41,0xc6,0x5a,0x57, + 0x9e,0x28,0x24,0xe7,0x77,0xcc,0x5f,0x81,0xcf,0xb6,0x33,0xbe,0x79,0x85,0x85,0x3b,0x6c,0x54,0xb7,0x35, + 0x35,0x49,0x01,0x8d,0xd1,0xb0,0x7a,0x90,0x1a,0x28,0xac,0x80,0xdb,0x40,0x17,0x26,0xe9,0x71,0x75,0x72, + 0x02,0x00,0xc5,0x51,0x3f,0x63,0x4a,0x66,0x54,0x84,0x25,0xbb,0x21,0x42,0x17,0xf2,0x39,0xc4,0xc6,0x8f, + 0xb1,0xec,0x39,0x3d,0x74,0x90,0x84,0x2f,0x5a,0x12,0xb6,0x7c,0xd4,0xda,0x73,0x65,0xd2,0xe9,0xce,0x66, + 0x3c,0x7c,0xd9,0xa7,0x8d,0x7a,0xd0,0x75,0x1c,0x8f,0x6a,0xaf,0x50,0xed,0x28,0x6c,0xdd,0xab,0x6c,0x13, + 0xcb,0x51,0xed,0xb7,0xa7,0x4b,0x7c,0x0e,0xbf,0xd6,0x24,0x93,0x20,0xf8,0x83,0x86,0xbf,0xd6,0xac,0x57, + 0x90,0xb8,0xb6,0x58,0xc6,0xde,0xb0,0x9f,0xb4,0xc5,0x68,0xa3,0xda,0xa8,0xe0,0x69,0x3b,0xb5,0xd1,0xc4, + 0x48,0xc6,0xd0,0xd3,0x7b,0xdf,0xbf,0x71,0xc4,0x8e,0x92,0xd7,0x34,0x99,0x16,0xcd,0xe8,0x7b,0xba,0x9c, + 0x8b,0x30,0xc3,0x46,0xcd,0x5c,0x15,0xcf,0xcc,0xcc,0x7b,0x4c,0xbc,0xad,0x2e,0x2d,0x09,0xbd,0xac,0xd7, + 0xab,0x72,0xb8,0x82,0xa3,0x1d,0x1d,0x4c,0xec,0x9d,0x88,0x3f,0x68,0xb4,0xcb,0x1a,0x8f,0x45,0xb9,0x84, + 0xaa,0xb4,0x1f,0x50,0x5b,0x72,0x62,0x20,0x9a,0xf6,0xe3,0xb2,0x52,0x96,0x3c,0x6a,0x7d,0x19,0xe0,0x6e, + 0x36,0xc3,0xad,0xfd,0x91,0x2b,0xdf,0x71,0x3a,0x60,0x2d,0xfa,0x03,0x53,0xd2,0x96,0x2f,0x84,0x2a,0xfc, + 0x02,0x76,0x41,0x7a,0x3c,0xce,0x09,0xee,0x4e,0x92,0x1b,0x64,0x29,0x35,0x95,0xb3,0x14,0x2a,0x4c,0x8d, + 0x7c,0x6e,0x00,0x45,0xe4,0x11,0xbe,0xad,0x4e,0x04,0x7f,0x58,0xd1,0x87,0x00,0xdb,0x51,0x16,0xab,0xef, + 0xb3,0xcd,0x50,0xf7,0x37,0x49,0x37,0x40,0x99,0xb7,0x0c,0x29,0xcb,0x31,0xf7,0xfe,0x98,0x6c,0xe2,0xd7, + 0x06,0xa6,0x66,0x9a,0xc9,0x05,0x9f,0xb1,0x26,0xa6,0x8b,0x19,0xeb,0x1b,0x18,0xc7,0xc4,0x78,0xde,0x74, + 0x0f,0x21,0x55,0x43,0xd0,0xc7,0x60,0x7e,0x9c,0x12,0xcb,0x45,0x7f,0x68,0x0c,0x55,0x44,0xeb,0xad,0xbe, + 0x4f,0x09,0xc5,0x47,0xb1,0x7a,0xae,0x36,0x9b,0xf6,0x30,0xcc,0x20,0xe4,0x60,0x9a,0x95,0xd4,0x5f,0xa2, + 0x5d,0xf5,0xe2,0x98,0x56,0x4a,0xaf,0x15,0x35,0xd3,0xc3,0x8e,0xc5,0xcf,0x40,0x15,0x70,0x10,0x0c,0x18, + 0xe8,0xc7,0x99,0x58,0x2d,0x61,0x1d,0x48,0x53,0x18,0x41,0x69,0xaf,0xc3,0x64,0x48,0x1d,0x05,0x82,0x9b, + 0xc8,0xd8,0xc6,0x09,0x50,0x98,0xc1,0xb8,0x4f,0xc8,0xc1,0x22,0xbb,0x22,0x4a,0xc6,0x8d,0x8f,0xce,0xbe, + 0x2a,0x31,0xc9,0x66,0x8a,0xd2,0x07,0xd5,0x30,0x05,0x9b,0xc8,0x9f,0x9a,0x5c,0x1a,0x37,0x55,0xc2,0xcd, + 0x4c,0xe8,0x24,0xa2,0x59,0x47,0x2d,0x13,0x15,0x38,0x80,0x1e,0x22,0xf7,0x2e,0x23,0x20,0xaa,0x09,0x51, + 0x3c,0x9c,0xae,0x77,0xc8,0xca,0x6d,0x8c,0xc7,0x6e,0x6f,0x75,0x79,0xcb,0xd8,0xb9,0x00,0xb2,0xc5,0x40, + 0x68,0x28,0xc2,0xd1,0x68,0x19,0x58,0x5f,0x45,0xe9,0x8c,0xc1,0x5f,0x99,0x12,0x85,0x57,0xa2,0x50,0x25, + 0xd2,0xe4,0x34,0x0f,0x0b,0x27,0x5c,0xa0,0x52,0x29,0x41,0x1f,0x8d,0x25,0xce,0x58,0xaa,0x80,0x92,0xf8, + 0x9b,0xfa,0xb2,0x91,0xa7,0xed,0xad,0x0f,0xb7,0x36,0x51,0x24,0xbb,0xb4,0x6a,0x82,0xd9,0x52,0x08,0x53, + 0xd0,0xec,0xcb,0xf0,0x91,0x12,0xa7,0x89,0x6c,0xc0,0x27,0x20,0xe8,0x13,0x3a,0x1f,0xd1,0x50,0xa0,0x1d, + 0x21,0x83,0x68,0x94,0x12,0xef,0x15,0xbf,0xd4,0x32,0x2e,0x53,0x14,0x86,0xfb,0xbb,0xac,0x92,0x4e,0xe9, + 0xe7,0x4a,0xb9,0xa9,0x86,0x69,0xc2,0x64,0xb4,0x15,0x28,0xa6,0xd1,0x4d,0xda,0x65,0xba,0x37,0x83,0x07, + 0x93,0x6d,0xc1,0x6c,0x0a,0x69,0xbc,0x2f,0xed,0x39,0x00,0x1a,0x76,0x4f,0x23,0x0c,0xb5,0xd3,0x54,0x70, + 0x03,0x27,0xb1,0xec,0xc8,0x56,0xf2,0x01,0x2b,0xa9,0x1c,0x8c,0x39,0x87,0x52,0x47,0xde,0x73,0x97,0x84, + 0x15,0xae,0xbd,0x4f,0x9d,0x6c,0x3e,0x79,0x15,0x4a,0x35,0xd8,0x51,0x69,0xa9,0x9d,0x92,0xc0,0x15,0x28, + 0xa9,0x8e,0x34,0xbb,0xdd,0x26,0xa1,0x87,0xed,0x04,0x70,0x21,0x0f,0xc3,0x94,0x48,0xff,0x76,0x46,0xe5, + 0xcc,0x1e,0xec,0xea,0xbd,0xf2,0xec,0x9b,0x30,0x7a,0xc7,0x1b,0x6a,0x2d,0x3d,0xfb,0x5d,0xdb,0xe2,0xe1, + 0xa7,0xcb,0x7e,0x74,0xd7,0xc3,0xe3,0xf2,0xf8,0x90,0xc6,0x16,0xb8,0x0a,0x5f,0xba,0x03,0xbd,0x7d,0x6c, + 0x18,0x80,0x7b,0xa5,0x84,0x93,0xaf,0x8c,0x7f,0xaa,0x89,0xc6,0x51,0x3a,0xc2,0x32,0x7f,0x50,0x1a,0xc6, + 0xfd,0x15,0xcb,0xb2,0xcc,0x07,0x4e,0x92,0x62,0x05,0x01,0xb6,0xe9,0xb7,0xde,0x8a,0x4b,0x87,0x30,0x12, + 0x39,0x2c,0x93,0x72,0xb0,0xb7,0x4c,0x89,0x95,0xaa,0x87,0xce,0x00,0xc8,0x2e,0x25,0xfb,0x00,0x1c,0xa5, + 0x4b,0xaa,0x50,0x4e,0x19,0x17,0xd8,0xaf,0x0b,0x42,0x88,0xc5,0x83,0xcc,0xf4,0xab,0xc0,0x4e,0x2f,0xaf, + 0x79,0x78,0x30,0x61,0xc4,0x8e,0x50,0x6b,0x55,0x0a,0xd5,0xb8,0xee,0xa0,0x13,0x58,0x3c,0xa2,0x5e,0x95, + 0x22,0x68,0xb4,0xb1,0x73,0x5e,0x14,0x5f,0xe0,0xb6,0xfe,0x48,0x77,0xd9,0x0d,0xe2,0x91,0x37,0x88,0xf7, + 0xb9,0xea,0xda,0x8f,0x4a,0x67,0xce,0x2d,0xeb,0x39,0x6c,0x65,0xf9,0xf1,0x45,0x54,0x85,0xb6,0xfd,0x5f, + 0x8c,0xd0,0x36,0xd0,0xa6,0xd2,0xfe,0x77,0xd4,0x87,0x5f,0xb6,0xba,0xf0,0x8b,0xd7,0x85,0xdd,0x17,0x10, + 0x47,0x3d,0xc9,0x69,0xff,0x75,0xf8,0x08,0xc1,0xd9,0x9c,0x76,0xb4,0x51,0xb0,0x0c,0xf5,0xbb,0x6a,0xa2, + 0x21,0x1b,0xfe,0x00,0xa3,0xba,0x32,0xd1,0x52,0xa3,0x3a,0x99,0x97,0xc6,0x3f,0x3c,0x1a,0xce,0x8d,0x20, + 0x37,0x71,0xb2,0x40,0x49,0xcf,0xd2,0x09,0x71,0x24,0x0b,0xe2,0xe4,0x49,0xe8,0x55,0xf9,0xb1,0xc5,0xad, + 0x52,0x35,0x6c,0x0b,0xd1,0xd2,0x03,0x29,0x67,0x42,0x2b,0x9f,0xb4,0xf3,0xa2,0xa0,0x25,0xc8,0xe9,0x08, + 0x78,0x9f,0x4d,0xb0,0x1a,0x7c,0xaa,0xe5,0xec,0xbc,0xce,0x9a,0x16,0xf0,0x15,0xe8,0xf3,0x81,0x58,0x96, + 0xa3,0x49,0x19,0x46,0x71,0x55,0xc2,0xc0,0x66,0xb7,0xee,0x56,0xaf,0x68,0x45,0x58,0xe4,0x49,0x51,0xba, + 0x74,0x63,0x39,0x74,0x63,0x6e,0x18,0x3f,0x22,0xcd,0x16,0x00,0xdf,0x25,0x2c,0x29,0x52,0xdc,0x22,0xd4, + 0x0b,0x89,0x05,0x85,0xf0,0x10,0x7c,0xb0,0x65,0x90,0x9f,0x96,0xc5,0x1f,0x70,0x9c,0x56,0x36,0x51,0x52, + 0xd3,0xea,0xe6,0x3c,0x96,0x3e,0x3b,0x96,0x31,0x94,0xe7,0xb0,0x00,0xa4,0xc3,0xd9,0x18,0x66,0xe6,0xf0, + 0x1e,0x80,0x1b,0x20,0x2c,0x38,0x35,0xad,0x23,0x1b,0xb4,0x0e,0x0c,0x6e,0x4a,0x3e,0xd9,0x6c,0x40,0x9c, + 0x32,0x09,0x8b,0x16,0x7d,0x1e,0x6d,0x7d,0x53,0xd0,0x57,0x27,0x1c,0x00,0x21,0xa2,0x59,0x3f,0x2b,0x23, + 0xfa,0x3f,0x98,0xd0,0x51,0x50,0xfa,0x0b,0xfa,0x47,0xd8,0x0c,0x75,0xa5,0x35,0x72,0x4e,0x36,0x2d,0x40, + 0x18,0xcc,0x72,0x3e,0xae,0x77,0xb7,0x68,0x18,0x2b,0x79,0xf6,0xf4,0x66,0x4e,0x34,0x37,0x74,0xf8,0x20, + 0xd7,0xa0,0xd7,0xa9,0x47,0x80,0x90,0xc4,0xaf,0xa1,0xb6,0x22,0x6d,0x6e,0x1a,0x51,0xae,0x5c,0x8f,0x7f, + 0x0f,0xb5,0x30,0xc1,0xda,0xef,0x8b,0x4a,0xd0,0x81,0xcf,0x8d,0xa5,0xea,0x74,0xa7,0xa9,0x07,0x35,0x30, + 0x61,0x8a,0x88,0x68,0x81,0xeb,0x12,0xc8,0xb9,0x0e,0xd9,0xc6,0xad,0xa6,0x23,0x7f,0x44,0x7f,0x2b,0xd4, + 0x8d,0xf3,0x50,0x95,0x4e,0xfe,0xc0,0xb2,0x88,0x92,0xf8,0x75,0x36,0xbe,0xac,0xc4,0x6a,0x40,0xd4,0x38, + 0x31,0xb5,0x04,0xc7,0x8c,0x42,0xe8,0x09,0x3e,0x6d,0x44,0x1f,0xf1,0x13,0xcc,0xcc,0x23,0x82,0x4f,0x3a, + 0x45,0x26,0x54,0xcb,0x84,0xbb,0x5a,0x09,0xae,0x6b,0x12,0x45,0xae,0x3f,0x39,0xaf,0x47,0x0a,0xf2,0x34, + 0x0b,0x43,0xdd,0x9b,0x48,0xb5,0xa2,0x3a,0x68,0x5a,0xf0,0x16,0xe6,0x79,0xa8,0x87,0xe8,0xa9,0xa5,0xa2, + 0x9b,0xa2,0x5b,0x06,0x2a,0xe6,0x6a,0x34,0x44,0x3b,0x6c,0xca,0xa6,0xe0,0x08,0xe2,0x30,0xc2,0xbb,0x90, + 0xfe,0x0d,0x80,0x01,0x61,0x81,0xe1,0xde,0x88,0x4a,0x8a,0xf4,0x29,0x07,0x7b,0x40,0x5a,0x87,0x21,0x4f, + 0x4f,0x45,0xb3,0x81,0x1e,0xc7,0x52,0x8d,0x0b,0x52,0x06,0x7a,0x62,0x13,0x97,0x29,0xcd,0x5e,0x45,0x23, + 0x44,0xba,0xda,0xfd,0x29,0xcd,0x02,0x3e,0x98,0x08,0xfa,0x44,0x54,0xba,0x18,0x36,0x31,0x8b,0xbf,0x2a, + 0x37,0xaa,0x9f,0x98,0x0b,0xd4,0x23,0xc3,0x8e,0x01,0x10,0x29,0x6a,0x01,0xd4,0x8c,0x63,0xcf,0x11,0xc5, + 0x04,0x60,0x5f,0xac,0xd7,0x9a,0xaf,0xe5,0x57,0x3a,0x83,0x74,0xe1,0xac,0x5d,0x38,0x6b,0x16,0xce,0x50, + 0x78,0xb3,0x7d,0x60,0xfd,0xe0,0x3b,0x4b,0x30,0xff,0x0d,0x9b,0x1d,0x48,0x21,0xb1,0xb1,0xb5,0x89,0xbc, + 0x11,0x58,0xba,0xcf,0x7e,0xf5,0x99,0xb5,0x10,0x4c,0xb9,0xac,0x5e,0xb2,0x4e,0x77,0xbd,0x7e,0x8e,0x78, + 0x2b,0xea,0x05,0x2a,0xc5,0xfa,0xf8,0x1d,0x6b,0x35,0xed,0xb9,0xfe,0x3e,0x3d,0x53,0x7e,0xfb,0x49,0x6d, + 0xa8,0x1f,0xda,0x06,0xf0,0x00,0x30,0xc4,0x30,0xa8,0x0e,0xaf,0xb1,0x7f,0x37,0xa2,0xb1,0xd8,0xde,0x80, + 0x56,0xf0,0x45,0xb3,0xee,0x83,0xdf,0xb4,0xd9,0x41,0x5b,0xb8,0x10,0x7d,0x45,0x3e,0x6f,0xb8,0x14,0xd0, + 0xaa,0xbc,0x12,0x25,0xbb,0x35,0x40,0x78,0xda,0x92,0x25,0xd3,0xa6,0xf9,0x37,0xe5,0xda,0x09,0x2f,0x3d, + 0x4a,0xf4,0x67,0x73,0x6e,0xe5,0xa3,0x05,0x4e,0x77,0x02,0x3b,0x25,0x0e,0x52,0x6f,0x2d,0x0d,0x5b,0x5d, + 0xab,0x69,0xe4,0xcc,0xd9,0xac,0x95,0x2b,0x6b,0x53,0xd9,0x82,0xfa,0x25,0x78,0xa3,0xb3,0x99,0xd4,0xcf, + 0xa2,0xa6,0x19,0xa3,0x44,0x45,0xf1,0x79,0xda,0xe8,0xda,0xe7,0xc2,0x14,0x9f,0xb5,0x5b,0x3b,0x6d,0x83, + 0xc3,0x3f,0x8d,0xb8,0x63,0x46,0x84,0xa6,0xa5,0x91,0xcc,0xd7,0xa6,0x49,0xc1,0xdb,0x02,0x55,0xb0,0x0c, + 0x31,0xad,0xeb,0xb2,0xb2,0x0f,0x84,0xbe,0x8a,0xda,0x7a,0x01,0xfb,0x89,0xa2,0x30,0xb2,0x73,0x65,0x4d, + 0x57,0x38,0xb9,0x36,0x12,0xd6,0x6b,0xc8,0x2e,0x95,0xc2,0x37,0xe5,0x0f,0xa2,0x30,0x37,0x60,0xc0,0xb6, + 0x18,0x26,0x4e,0xdc,0xf1,0x09,0x21,0x05,0xde,0x4f,0x85,0x27,0x01,0xaa,0xf4,0x57,0x8c,0xcc,0x2a,0xa8, + 0x19,0xf1,0x83,0xc2,0xc3,0xa0,0x96,0x8b,0xe5,0x9c,0x58,0x2c,0x40,0x5d,0x01,0x31,0xff,0x68,0xc2,0x15, + 0x68,0x24,0x31,0x41,0xd7,0xb4,0x38,0x7b,0xbd,0xa6,0x2f,0xe2,0x89,0xa9,0x7f,0x63,0x03,0x14,0xad,0x14, + 0x86,0xca,0x8f,0x57,0x27,0x5a,0x31,0x54,0xd6,0xce,0xdd,0x19,0xc9,0x2e,0x02,0x88,0x93,0x12,0xd4,0xb7, + 0x41,0xe8,0x6e,0x13,0x44,0x89,0x84,0xd9,0xe1,0x3d,0xc1,0x3b,0xcc,0xd3,0xe3,0xd7,0x9e,0x36,0x52,0x73, + 0x6a,0xb7,0xc0,0x69,0x0b,0xa6,0x41,0x97,0x8e,0xf0,0xb9,0xd2,0x2c,0xc5,0xc4,0xf9,0xd0,0x13,0x8e,0x41, + 0x56,0x53,0x9e,0xd0,0xec,0x77,0xa8,0x0b,0x8b,0xda,0xa8,0x1d,0x87,0xb5,0xde,0x89,0x9a,0x36,0x8d,0x86, + 0x11,0xab,0x98,0xc7,0x59,0x9e,0x32,0xef,0xfb,0x35,0x6a,0x37,0xad,0x2d,0xa5,0x6d,0x54,0xd3,0x63,0xc5, + 0x34,0x3f,0xd3,0x5f,0x13,0xb5,0x25,0xb8,0x31,0x43,0x93,0x1a,0xb6,0x7d,0xab,0xa4,0xa1,0x00,0x9a,0xad, + 0x3b,0xeb,0x0c,0xaf,0x47,0x37,0xde,0x0b,0xc8,0xb9,0xf6,0x6c,0xed,0x99,0x55,0xf6,0xe7,0x0d,0x7d,0x75, + 0x39,0xac,0x46,0x85,0x26,0x4a,0x04,0x5c,0x0f,0x41,0xcd,0x34,0xf0,0x85,0x82,0x55,0xdd,0x14,0x68,0x18, + 0x42,0x5d,0x33,0xb8,0x9e,0x30,0x80,0xf7,0x52,0xde,0xde,0x4b,0xa0,0xf8,0x72,0x1b,0xda,0xd2,0xc6,0x8e, + 0xc8,0x41,0xf4,0xe5,0x20,0x90,0xfb,0x81,0xa1,0xc0,0x69,0x34,0x44,0x04,0xfd,0x48,0x2f,0xec,0x36,0xc9, + 0x0c,0xa0,0x5c,0xc0,0xce,0x00,0x05,0xe2,0xa0,0xef,0x23,0x85,0x49,0x6d,0x68,0x12,0x21,0x79,0xe0,0x5f, + 0x98,0x3a,0x3c,0x85,0x31,0x51,0xe9,0x5b,0x38,0xf9,0xc6,0xba,0x44,0x6c,0xed,0x4b,0xfa,0x43,0x14,0xe5, + 0x11,0x02,0x47,0x1d,0x95,0x0f,0x4e,0x2d,0xc5,0x71,0x84,0xee,0xca,0x84,0x80,0xe0,0xb4,0x3c,0x3e,0x2a, + 0x4f,0x22,0x2a,0x28,0xae,0x4a,0x16,0xda,0x32,0xf5,0x31,0x28,0x57,0x79,0x68,0x2c,0xa9,0x2e,0x4b,0x4b, + 0xb9,0x94,0xc9,0xa9,0x7d,0xa1,0x5a,0x12,0x5b,0x25,0x0a,0x19,0x6a,0x9a,0x6a,0x82,0x52,0x7b,0xaf,0x4c, + 0xd0,0xd1,0xc3,0x86,0x9c,0xe5,0x4f,0x08,0x6d,0x7f,0x91,0x0f,0x04,0xd6,0x0f,0xa2,0xdc,0x5d,0x84,0xf4, + 0xcc,0xa3,0x5b,0x2a,0x72,0x95,0x80,0xee,0x33,0xab,0x87,0xef,0x40,0x73,0x5d,0x2c,0x86,0xe5,0x60,0x7c, + 0x89,0x95,0x90,0x25,0x01,0x55,0x0e,0x69,0xf6,0x38,0xa3,0x93,0x6b,0x45,0x08,0x6a,0xda,0xeb,0xd1,0xaa, + 0x13,0x9f,0xa4,0x04,0x35,0x0c,0x0f,0x84,0xe7,0xc5,0xef,0x54,0xec,0x3d,0xf0,0xd2,0x45,0x5d,0x14,0xf0, + 0xf5,0xfd,0x9d,0x18,0x1f,0x5e,0x9f,0xd9,0x9c,0xd0,0x47,0xe0,0xad,0xce,0xca,0xa2,0xec,0xf7,0x25,0x14, + 0x30,0xdb,0xc6,0x78,0x6c,0x02,0x46,0xfd,0x21,0x00,0xdc,0x08,0x2a,0x54,0xc9,0x6d,0xab,0x67,0x95,0x8d, + 0x50,0x7c,0xb7,0x69,0x6a,0x72,0xfa,0xd4,0x6b,0x76,0x6e,0x9b,0x55,0x10,0xc9,0x1a,0xad,0x2e,0x99,0x54, + 0x3e,0x0a,0x75,0xc7,0xca,0xd1,0x8c,0xe5,0xaa,0xb9,0xe9,0xc4,0x59,0x14,0x9b,0xbc,0x1c,0x7f,0x47,0x25, + 0xce,0x7f,0x44,0x9d,0x23,0x10,0xa6,0xf9,0x32,0xe5,0x91,0x17,0x9f,0x99,0xaf,0x72,0xfc,0x1d,0xf1,0xdf, + 0xf8,0x2c,0xba,0xb5,0xbf,0xb2,0xd9,0xdf,0x99,0x8f,0x2f,0xb7,0x14,0x4a,0x6c,0x24,0x37,0xc6,0xa9,0xbb, + 0xa2,0x55,0xf8,0x45,0xad,0x16,0x42,0xee,0x75,0xa6,0x6b,0xc1,0x8e,0x65,0x79,0x58,0x6c,0x57,0x5f,0xc3, + 0xa0,0x56,0x42,0x2f,0x01,0xd9,0x6f,0x24,0x3c,0x7d,0x94,0x74,0x9a,0x20,0xa9,0x34,0x17,0xde,0xb6,0x5f, + 0xd6,0x4e,0x94,0x64,0xfc,0x05,0x59,0x45,0x04,0x99,0xab,0x40,0x64,0x28,0x6d,0x3c,0x1e,0x89,0x6d,0x29, + 0x18,0xab,0x01,0x19,0x23,0xd3,0xa6,0xd9,0xbb,0x54,0x9e,0xdc,0x4a,0x38,0xec,0xec,0x5f,0x1c,0xca,0xac, + 0xff,0xdc,0xe2,0xe8,0x79,0x3e,0x7a,0x2b,0x67,0x73,0xe4,0x14,0x97,0xf9,0x73,0x65,0xdf,0x30,0x98,0x65, + 0xf3,0x5a,0x96,0x5d,0xd6,0xc9,0x7f,0x45,0x7f,0x38,0x70,0x3a,0xbe,0x4d,0x14,0xb7,0x4c,0x27,0x3a,0xb8, + 0x91,0x1b,0x27,0x87,0x00,0xf9,0x4a,0x94,0x01,0xc2,0x87,0x0e,0x20,0x3e,0x85,0x2c,0x72,0x58,0x0d,0x79, + 0x34,0x15,0x0b,0x9a,0x2e,0xb2,0x29,0xf6,0x11,0xd3,0xf9,0x5e,0x0a,0xd1,0x43,0xf4,0x4d,0xe2,0xa5,0x40, + 0x34,0x7b,0x4a,0x83,0xfd,0xb2,0x21,0x26,0xc1,0x1c,0x3e,0xe0,0xfa,0x76,0x61,0x38,0x68,0xe4,0x64,0x90, + 0x55,0xd2,0x87,0x0a,0x32,0x26,0xaa,0x61,0x23,0x30,0xe3,0x1a,0x3b,0x60,0xdc,0xaa,0xe1,0x08,0x5a,0x27, + 0x1b,0x6b,0x0c,0xe4,0x2d,0xf2,0x79,0xad,0x0c,0x4c,0x2c,0x83,0x0b,0x8e,0x69,0x5b,0x26,0xcd,0x51,0xe8, + 0xb6,0x03,0x03,0x69,0x01,0xbc,0xd5,0x70,0x5b,0x73,0x2c,0x51,0x10,0xba,0x4b,0x1d,0x0a,0x2a,0x1e,0xa4, + 0x2c,0xac,0x29,0xd1,0x51,0xda,0xdc,0x1c,0x74,0xd5,0xc9,0xde,0xb7,0x0d,0x00,0xb7,0xab,0xe6,0x3a,0xa9, + 0xa2,0xda,0xaf,0xa8,0xe8,0x1f,0xfa,0xf5,0x64,0x86,0xb0,0xdd,0xb2,0x83,0xf1,0xab,0xaa,0x5a,0xbd,0xac, + 0xda,0xbd,0x9c,0x24,0x15,0x3a,0x68,0x3b,0x3b,0x21,0x7e,0x51,0x38,0x49,0xac,0xa6,0x87,0x19,0x5d,0x7e, + 0x84,0x67,0x3f,0x87,0x37,0xf0,0x4d,0x9f,0xbc,0x9d,0x63,0x82,0x6f,0xf1,0x8e,0xdd,0xab,0x60,0xa5,0x30, + 0x7d,0x47,0x44,0x9b,0xd9,0xac,0x05,0x62,0xac,0x31,0x29,0x5b,0xf2,0x9e,0xb9,0x08,0x2f,0x42,0xbc,0x44, + 0x2c,0xf5,0xce,0x12,0x6c,0xb9,0xf5,0x5a,0xfa,0x2e,0xca,0xba,0x2a,0x53,0x49,0x0a,0xd5,0xc6,0x60,0x4c, + 0x40,0x33,0x95,0x25,0xf3,0x56,0xf8,0x8e,0x28,0x4b,0x69,0x42,0xda,0x42,0xe3,0x87,0xe2,0xd6,0xf8,0x67, + 0xa4,0xaa,0x68,0xb9,0xee,0x59,0x9a,0x51,0xdc,0xa0,0x74,0x8c,0xe0,0x9d,0x0d,0x9d,0xd0,0xc2,0xc7,0x55, + 0x8f,0x95,0x4d,0xaf,0x21,0x06,0x44,0xa0,0xb6,0x22,0x02,0x1b,0x50,0x87,0xbf,0x78,0x24,0xe1,0x59,0x7b, + 0x3a,0x12,0x3a,0x42,0x68,0x61,0xe0,0x1e,0x06,0x04,0x4f,0x84,0x8d,0xb5,0x49,0x1c,0x35,0xe1,0x2e,0x8b, + 0x46,0xec,0x9b,0xec,0x7c,0x57,0x89,0x1d,0xca,0x20,0xd7,0x8d,0xcb,0xd1,0x55,0x4e,0x0b,0x01,0x42,0x3a, + 0x6e,0x13,0xff,0xd7,0xb6,0x45,0xcd,0x4c,0xe6,0xe0,0xaf,0xc1,0x4f,0x6e,0x2b,0xbc,0x69,0xce,0x17,0xc8, + 0x1a,0x6a,0x81,0x81,0x3b,0x82,0x32,0x25,0xe1,0x9f,0xcc,0x89,0xb3,0x67,0xc7,0x4a,0xde,0x03,0xd7,0x8a, + 0x95,0xa3,0x97,0x05,0x8a,0x44,0xb4,0x1e,0x3e,0x49,0x5e,0x1b,0xee,0x40,0x3f,0xb0,0x08,0x79,0x98,0x42, + 0x2b,0x4e,0xa3,0x86,0x25,0xf7,0x87,0x8a,0x8f,0x83,0x10,0x72,0x84,0x0c,0x31,0xc4,0xa6,0xc5,0x02,0x09, + 0x15,0x04,0x10,0xf6,0x05,0xec,0x77,0xac,0xeb,0xe0,0x0c,0x7e,0x42,0xea,0x26,0x03,0x46,0x49,0x21,0x6f, + 0x07,0x0b,0xad,0xf8,0xd9,0x02,0xe2,0x8b,0x10,0x21,0x25,0xb8,0x70,0x91,0x33,0xfb,0x7e,0xac,0xcf,0x6f, + 0x22,0x9c,0xb2,0x93,0xc6,0xd9,0x8a,0xaf,0x58,0xf0,0x65,0x29,0xc6,0x89,0xa2,0xf6,0x2b,0xe2,0xf1,0x5d, + 0x48,0x2f,0x67,0xd4,0xd5,0xa4,0x01,0xf9,0xf8,0xa9,0xd8,0xba,0xe7,0x7d,0x29,0x25,0xf7,0xb0,0x9d,0x06, + 0x46,0x04,0xfb,0x0e,0x30,0x6a,0xd8,0x43,0x3a,0x47,0x65,0x6b,0x89,0xcb,0x68,0x74,0x44,0x7f,0xe2,0x2f, + 0xf8,0x13,0x5e,0xd6,0xa1,0xfa,0x24,0x69,0x40,0xd7,0x40,0xd5,0xfb,0x96,0x61,0xfc,0x69,0x0e,0xb8,0x77, + 0x5a,0x54,0x03,0xfb,0x6f,0xe0,0xcc,0xad,0x84,0xab,0xac,0x57,0x85,0x31,0x8c,0xfa,0x6e,0x3c,0x0e,0xfa, + 0xb5,0xd8,0x3d,0x8c,0x1a,0xe7,0xcf,0xa9,0x25,0x15,0x74,0xf7,0x2e,0x6b,0x6d,0x41,0x43,0xac,0x2a,0x3e, + 0x91,0xfd,0x30,0x1f,0x05,0x63,0xf8,0x38,0x07,0x81,0x0a,0x1f,0xe4,0x4d,0xc9,0x65,0xed,0x09,0x66,0x6f, + 0x65,0xaf,0x55,0x70,0x52,0xc7,0x5f,0x32,0x41,0xc7,0xf1,0x62,0x35,0x3a,0x75,0x5e,0x00,0x9c,0x7c,0x55, + 0x6b,0x65,0x6a,0x1f,0x0d,0x97,0x56,0xb8,0x77,0x65,0x5a,0xf3,0xcc,0xcd,0x6c,0x07,0x9c,0xad,0x95,0xb2, + 0x86,0x83,0xb9,0x95,0x14,0x48,0x7d,0x4d,0x43,0x49,0xbc,0xbd,0xb8,0xe7,0xb1,0x29,0x50,0xc3,0xcb,0xc8, + 0xd1,0xf5,0x85,0xfa,0x33,0x62,0x04,0x84,0xa7,0x28,0xf6,0xf8,0xaf,0x52,0xc9,0xcf,0x3c,0x4d,0x1f,0xa1, + 0x4e,0xc8,0x1f,0x87,0xac,0xd9,0xcb,0x46,0xc7,0x27,0x46,0x47,0x9d,0x69,0x6f,0xf0,0x6d,0x30,0xfa,0x52, + 0x2b,0xaf,0xb0,0x71,0x91,0x9c,0xc2,0xc0,0x6c,0x9c,0x73,0x5c,0xf4,0x31,0xa4,0x63,0xf4,0x33,0x4f,0xce, + 0x39,0xb5,0x4e,0x2e,0xf8,0xf7,0xf7,0xe4,0x1a,0x3f,0x59,0x32,0xc6,0xcf,0x22,0x19,0x73,0xea,0x2c,0x59, + 0xf0,0xef,0x97,0xe4,0x8c,0x7f,0x4f,0x93,0x6b,0xfe,0xbd,0x48,0xf6,0xf0,0x43,0x54,0x13,0xe2,0x65,0x8c, + 0x57,0x49,0xc6,0xc9,0x67,0xc9,0x9e,0xd7,0x83,0x23,0x35,0x69,0xbe,0x90,0x90,0x18,0x64,0x0d,0x66,0xca, + 0x9b,0x82,0xdd,0x8c,0x74,0x44,0x53,0xa5,0xdf,0x95,0xea,0xc5,0x5a,0x83,0x95,0x3a,0x93,0x4f,0xea,0x44, + 0xc7,0x0e,0x9d,0xeb,0x18,0x2f,0x55,0xa2,0xb6,0xe1,0x34,0x37,0x81,0x39,0x71,0x12,0xb1,0x01,0x1b,0x51, + 0x3c,0xa9,0x7e,0xe7,0x70,0x87,0xc8,0x66,0x3c,0xde,0x41,0x1c,0xe7,0x35,0xdb,0x21,0x6c,0x9a,0x76,0x9d, + 0x9a,0x28,0xca,0x94,0x23,0x5c,0xaa,0x68,0x40,0x44,0x4d,0x81,0x47,0xdc,0xee,0x64,0x38,0x31,0xae,0x81, + 0x66,0xe7,0x24,0xa9,0xf0,0xce,0x8b,0xc4,0x35,0x19,0x46,0x62,0xeb,0x4c,0x82,0x59,0xb7,0x7b,0xc3,0x10, + 0x10,0x53,0x62,0x5c,0x29,0xdb,0xba,0x91,0xa6,0x3a,0xb7,0x82,0x99,0x18,0x69,0xc9,0xfb,0x1a,0x21,0xf6, + 0x35,0xe2,0x5d,0xd9,0xf3,0xb2,0x60,0xc3,0x27,0x67,0xae,0xe7,0x6a,0x14,0x9e,0x44,0x24,0xa1,0x31,0x15, + 0x9b,0xf8,0xf6,0x36,0x8c,0xaa,0xa5,0xd9,0x88,0x47,0xcb,0x3c,0xac,0x6f,0x31,0x39,0x66,0x4d,0xab,0x32, + 0x3b,0xf6,0x6c,0xcf,0x30,0xbf,0x9a,0xe0,0x51,0xba,0x95,0x1a,0x92,0x2c,0x1e,0xca,0x8a,0xfa,0x68,0x51, + 0xcf,0x18,0xfe,0x81,0xca,0xfe,0x4e,0x9d,0xfb,0xc9,0xca,0xc8,0xe6,0xa8,0x7c,0x97,0x8d,0x87,0x9e,0x90, + 0x39,0x33,0xf0,0x90,0x9a,0x65,0xd3,0xc8,0xd3,0x5a,0x86,0x5e,0x80,0xab,0x52,0x79,0x23,0xe3,0x88,0xa2, + 0x82,0xac,0xa8,0x61,0xb9,0xa3,0x7e,0x86,0x6b,0xad,0x13,0xae,0xb9,0x34,0x2d,0x96,0x33,0xa1,0x65,0xa7, + 0x5e,0x19,0x93,0x34,0xd4,0x75,0x22,0xc0,0x10,0xe1,0x19,0x5d,0xab,0x7e,0x6b,0xd5,0xeb,0xa5,0xb2,0x9c, + 0x4c,0x89,0xfa,0x78,0x59,0xaa,0xc8,0xa8,0x2c,0x5c,0x52,0xa2,0x24,0xe8,0x84,0x6a,0x56,0x3e,0xe0,0x9a, + 0x79,0xaf,0x89,0xaa,0x92,0x8e,0xaa,0xaa,0x1f,0xc8,0x61,0x4d,0x68,0x8f,0x91,0xf6,0x1e,0x15,0x9a,0xc8, + 0x0f,0x7c,0x2a,0x85,0xd1,0x46,0xcc,0x93,0xd3,0x86,0x36,0xc6,0xf5,0x3f,0x81,0x5c,0xb5,0x20,0x38,0x5f, + 0xaf,0x57,0x21,0x2b,0x80,0x5a,0x45,0x9b,0x93,0xc4,0x04,0x99,0x8a,0x1e,0x86,0x7e,0x85,0x1c,0xf4,0x64, + 0x99,0x94,0xe1,0x5c,0xcc,0x9c,0xcb,0x43,0xc8,0x05,0x3b,0x96,0x6c,0xc9,0x5e,0x8e,0xa3,0xda,0x9f,0xd3, + 0x5e,0x4f,0xa5,0x72,0x15,0xb1,0x0c,0x97,0x4e,0xfc,0x19,0x75,0xc6,0x5b,0xf6,0x0a,0xf0,0x87,0x88,0xde, + 0xd5,0x4a,0xe2,0xba,0x04,0xea,0x32,0x6b,0xed,0x8f,0x82,0xc6,0xac,0x33,0x60,0x10,0xc0,0xc5,0xdc,0xf2, + 0x35,0x57,0x8f,0x8b,0xea,0x77,0x4c,0x13,0x00,0x0b,0x86,0x7d,0xf3,0xf4,0x7a,0x64,0x0b,0xd2,0x54,0xc4, + 0xc4,0x8e,0xbe,0x57,0x11,0xcf,0x7c,0x55,0x5c,0x6b,0xa0,0xb5,0x07,0x7c,0xa1,0xff,0xb9,0x9a,0x49,0xa1, + 0x6b,0x5e,0xaf,0xef,0x1d,0x1c,0xe8,0x8e,0xe9,0x30,0x6a,0xf0,0x58,0xff,0x2b,0x2d,0xa8,0x2b,0x22,0xb8, + 0x2a,0xf3,0x65,0x04,0x24,0xb6,0x7b,0x28,0x6c,0x7b,0xa3,0xc6,0x08,0x63,0xf7,0xfd,0xc6,0xc1,0x9e,0x51, + 0x2b,0x6c,0xc2,0x39,0xa1,0xe1,0x15,0x6d,0x1e,0x0b,0xc7,0x17,0xc9,0x5c,0x2c,0x92,0x42,0x9c,0x11,0xce, + 0xbb,0xa6,0x03,0x65,0x4c,0x67,0xcb,0x25,0x1d,0x06,0x84,0xe9,0x2e,0x1b,0xa2,0xc7,0xe4,0xc2,0x24,0xbc, + 0x94,0x84,0xea,0x55,0x20,0xbd,0x85,0xd0,0x4d,0x10,0x47,0x6f,0x10,0x7d,0x4c,0xc7,0x4f,0x7a,0x16,0x8f, + 0x37,0xe2,0x72,0x58,0x24,0x05,0x93,0xe9,0xaf,0x81,0x26,0x68,0x06,0x8a,0xc1,0x82,0xe8,0xd7,0xb9,0x67, + 0xa4,0xe9,0x71,0x52,0x88,0x12,0x8d,0x5c,0x90,0x81,0xfc,0xc0,0x07,0x09,0xd1,0x8f,0xcc,0x64,0x07,0x2c, + 0x71,0x6e,0x15,0x90,0x10,0x78,0x51,0x89,0x2c,0x87,0x0b,0xef,0x30,0xcc,0xd5,0xd9,0xc3,0x72,0xe0,0xa5, + 0xa1,0x08,0x23,0x56,0x68,0xe8,0x2f,0xb8,0x2e,0x6d,0x4c,0x92,0x0f,0xb4,0xfb,0x9e,0xa2,0xfc,0x86,0xd4, + 0x3f,0xa2,0xf0,0xa2,0x11,0xfe,0x26,0xc7,0xe6,0x0b,0x90,0x4c,0xa7,0xe9,0xe4,0x8b,0x3d,0xa9,0xb9,0x50, + 0xcc,0x85,0xda,0x65,0x36,0xb4,0x7e,0x86,0xb6,0x2f,0x14,0x75,0x3c,0x73,0xbb,0xbd,0x11,0x24,0xcb,0x16, + 0x74,0xe6,0x5b,0x84,0x4c,0x53,0x8b,0x39,0x6e,0x10,0x38,0x38,0x57,0x14,0x2c,0x1c,0xb7,0x5d,0x31,0x19, + 0xc2,0xd2,0x46,0x86,0x2b,0x47,0x30,0xcd,0x99,0xba,0x35,0xf1,0x37,0x89,0xc6,0x9f,0x47,0xc3,0x9f,0x08, + 0xe5,0xaf,0x04,0x6d,0x1d,0xd0,0x60,0xeb,0x35,0x5e,0x27,0xea,0xf5,0xd0,0x12,0xab,0xd5,0x66,0x03,0xe9, + 0xb8,0xc6,0x7a,0xa6,0x43,0xa6,0xc3,0xe9,0xdc,0x99,0x49,0x7b,0xcb,0xd5,0xa4,0x03,0x6a,0x3b,0x60,0xdd, + 0xe7,0xb4,0xd9,0xd3,0xa8,0x21,0x19,0x9f,0x10,0x46,0x5b,0x9d,0x24,0x4f,0xc3,0x15,0x75,0x86,0xcf,0x7b, + 0x4d,0xaa,0x01,0x31,0xf1,0x58,0x09,0x36,0x10,0xfe,0x42,0x98,0x57,0x81,0x1c,0xae,0xd1,0xe5,0xa8,0x57, + 0x9e,0xde,0x39,0xf3,0xa8,0x47,0x38,0x97,0x68,0xca,0xd9,0xca,0x84,0x90,0x5e,0x3a,0x50,0xd4,0xad,0x67, + 0x53,0x30,0xa7,0x03,0x52,0x78,0x6e,0x47,0x5b,0x6a,0xbd,0x99,0x7f,0xac,0x8a,0x99,0x67,0x42,0x9f,0xc2, + 0xd5,0x92,0xf5,0x15,0x21,0x95,0x02,0xe0,0x43,0xab,0xae,0x48,0x1e,0xc0,0x17,0x67,0x26,0xaa,0x0c,0xed, + 0xcf,0x19,0xcc,0x5d,0x66,0xea,0x98,0x54,0x9d,0x5c,0x82,0x5a,0x62,0xd1,0x34,0x7e,0xe9,0x45,0xb9,0x34, + 0xbc,0xce,0x85,0x3f,0xed,0x29,0x62,0x10,0xd1,0x66,0xd3,0x20,0x30,0xa5,0x72,0xcc,0x80,0x16,0x98,0xd7, + 0x29,0xd3,0x03,0xdc,0xd0,0x34,0xda,0xec,0x36,0x44,0x7e,0x46,0x11,0x59,0x5b,0x1d,0x64,0xcb,0x06,0xe1, + 0x71,0xe9,0xcb,0x46,0x35,0xed,0xfa,0xb8,0x54,0x62,0x4d,0xf5,0x15,0xc4,0xff,0x59,0xf2,0x0c,0xee,0x49, + 0x43,0x9b,0x02,0x29,0x5f,0x97,0x40,0xd8,0x83,0x68,0x0d,0x0b,0xb5,0x7d,0x84,0xef,0xab,0x7e,0x24,0xe0, + 0xca,0x88,0x08,0x21,0x6e,0x98,0xa1,0x0c,0xcd,0x9e,0x7b,0x70,0xaf,0x42,0x9c,0x4e,0xac,0x3e,0x44,0xf9, + 0x57,0x04,0x17,0x2b,0xb9,0x6f,0xf1,0xff,0x3e,0x91,0xf3,0x20,0x05,0xfa,0xe1,0xf9,0x28,0xa0,0x97,0x73, + 0x66,0x2a,0x0a,0xd1,0xe9,0xd7,0x91,0x8a,0x9b,0x23,0x42,0x55,0x71,0x29,0xac,0x61,0x53,0x3c,0x13,0x96, + 0xc4,0x8c,0x97,0x8c,0x98,0x26,0x0e,0x53,0x11,0xb3,0x4e,0xd8,0x95,0x39,0xfe,0x0b,0xb1,0x10,0x67,0xe2, + 0x5a,0x8c,0xc5,0xa5,0x67,0x5b,0x0d,0xb2,0x5c,0x93,0x3b,0x44,0x36,0x19,0x75,0x65,0x93,0x6f,0x49,0xd9, + 0xec,0x2d,0x85,0x21,0x43,0x38,0x49,0xb0,0x0d,0x52,0x22,0xf2,0x55,0x97,0x22,0x5a,0xe0,0x95,0xca,0x78, + 0x55,0x7a,0x32,0xe7,0xac,0x41,0x44,0x49,0xfa,0x1a,0x94,0x46,0x6a,0xec,0x1d,0xac,0x2a,0x96,0xd0,0xf0, + 0xb0,0x51,0x20,0x63,0x0d,0x3b,0xe2,0x92,0x81,0x57,0x23,0x0e,0xd6,0x2f,0xc9,0xbb,0x8c,0xb7,0xf8,0x72, + 0xd8,0xea,0x64,0xd5,0x7d,0xf8,0x22,0xc2,0x3f,0xa0,0x3a,0x85,0xe8,0x83,0xe0,0xc6,0xa7,0x64,0x09,0xc5, + 0x2b,0x49,0x59,0xac,0xee,0x01,0xb0,0xde,0x4f,0xb8,0xd9,0x09,0xa6,0x4c,0xe5,0x88,0xe8,0x9b,0x70,0x95, + 0x54,0xd1,0xe8,0x78,0x8f,0x86,0x79,0xd2,0x32,0xb2,0x5d,0xb9,0x70,0x54,0x44,0x44,0xb8,0x00,0x32,0x98, + 0x4b,0xf4,0x12,0x81,0x64,0x94,0xdc,0x09,0xa6,0xd0,0x85,0x6f,0x0a,0x5d,0xd3,0x84,0x15,0xc7,0xd5,0x49, + 0xd4,0xe5,0xbf,0x4a,0xc4,0x0d,0x9d,0x63,0xb3,0x63,0xa2,0xa3,0x6c,0x30,0x90,0x93,0x96,0x55,0xfe,0x24, + 0x1a,0x19,0x17,0xad,0xef,0x0f,0x68,0x84,0x3f,0x84,0x54,0x63,0x16,0x4e,0x04,0xcc,0x4e,0xd8,0x9f,0x9e, + 0x18,0x45,0x22,0xd3,0x68,0x64,0x34,0x33,0x3f,0x84,0x1c,0xdd,0x62,0x06,0xd4,0xb4,0x17,0xce,0x59,0xb9, + 0xd6,0x9f,0x50,0x9e,0x52,0x64,0xe3,0x7e,0x2a,0x1d,0xbe,0x9f,0xf0,0x82,0xa7,0x11,0x9c,0xd1,0x02,0x46, + 0x31,0x6c,0x1e,0x47,0xa8,0x62,0xd4,0xaa,0x00,0x81,0xa8,0x94,0x35,0x83,0xfa,0x2a,0xdc,0x03,0x3e,0x8c, + 0x7f,0xa0,0xbf,0xaa,0xcd,0xf6,0x07,0xaa,0xb9,0x98,0x90,0x71,0x61,0xe5,0x64,0xbc,0xf0,0x13,0x68,0x23, + 0x99,0xe4,0x98,0x80,0x4f,0x55,0xc0,0xc0,0x70,0xc5,0x6c,0x2b,0xb1,0xdf,0x17,0x00,0xf3,0xa0,0x9f,0xaa, + 0x81,0xd1,0xdf,0x71,0x60,0x3a,0x8b,0x46,0x1d,0xde,0xdb,0xd0,0xba,0x68,0xd9,0x4f,0x8c,0x65,0x7c,0x5a, + 0xb2,0xc9,0xc6,0x5f,0xd4,0xab,0x6c,0x73,0xed,0x84,0x44,0x2c,0xbc,0xaa,0x2c,0x3f,0xf2,0x12,0x0e,0x4c, + 0x3d,0x59,0xc7,0x27,0xa2,0xf6,0xcc,0xd5,0xd9,0x3a,0x64,0x4b,0x3c,0x5a,0x44,0xa3,0x70,0x96,0x64,0x83, + 0xbd,0x8b,0x9c,0x0e,0x56,0x44,0xab,0x52,0x4f,0x83,0xbc,0x62,0x59,0xd0,0x19,0x91,0x4d,0xe9,0x19,0x02, + 0xba,0x56,0x4b,0x04,0x42,0x20,0x7c,0x33,0x87,0x64,0x2c,0xab,0xde,0xca,0x4a,0x96,0x44,0xf6,0x50,0x36, + 0xa5,0x8e,0x34,0x36,0xa1,0x2c,0xf6,0xe3,0x7d,0x33,0x4f,0x6b,0x04,0xb6,0xd0,0x1f,0xe3,0x3b,0xec,0xbf, + 0x26,0xfe,0xc8,0x98,0x60,0x4d,0x1e,0x87,0x99,0x27,0xa1,0xb3,0xa8,0xa8,0x0a,0x40,0x5f,0x8e,0x88,0x05, + 0x5a,0xd2,0xb7,0x19,0x8e,0x9b,0x28,0xd6,0xcd,0x14,0x9d,0xb5,0x45,0xf1,0x3c,0xa1,0xe2,0x85,0x2a,0xee, + 0x89,0x42,0xe7,0x18,0xa5,0xe7,0xa8,0x52,0x86,0x99,0x65,0x69,0x32,0xf8,0x85,0x15,0xc4,0x21,0x15,0xa5, + 0xcc,0xce,0xf2,0xd7,0xc6,0x9d,0x99,0x26,0x85,0x60,0x80,0x37,0xbf,0x41,0x77,0x2c,0xb5,0x24,0xbe,0xd6, + 0xf2,0xd8,0x9e,0x2d,0x36,0x07,0xa4,0x72,0x39,0x76,0x73,0x3d,0x98,0xf0,0x06,0xd3,0x1c,0x9b,0x2b,0x40, + 0x9b,0x8d,0xe8,0x9f,0x95,0x86,0x33,0xe2,0xc0,0x56,0x03,0xb6,0x54,0xc8,0x15,0x66,0xa3,0x7d,0xce,0x3d, + 0x24,0x4c,0xce,0xc4,0xf8,0x3c,0x8a,0x81,0x72,0x36,0x1e,0x26,0xf3,0xbc,0x33,0xfc,0x88,0x73,0x56,0x4c, + 0xc0,0x8a,0xd9,0x6a,0xb5,0x94,0xa5,0x39,0x81,0x50,0x4e,0xa7,0x30,0x09,0xc2,0xa6,0xa7,0xfc,0x6e,0x2c, + 0x25,0x6e,0x9a,0xef,0x89,0x71,0x30,0x69,0x5b,0x5b,0x23,0x14,0x9b,0x23,0x44,0x70,0xa6,0x29,0x66,0xd3, + 0x38,0xbe,0x81,0x74,0xac,0x64,0x4a,0x2c,0xbf,0x4e,0xb1,0x07,0x64,0x61,0xf4,0xf5,0xc5,0xc9,0xae,0xb2, + 0x85,0x84,0xd5,0x06,0xfb,0x48,0x22,0x84,0x8c,0x84,0x38,0xbb,0xc3,0x1a,0x77,0x4b,0x74,0xa5,0x49,0x58, + 0x42,0x69,0x79,0xd2,0x96,0x97,0x8e,0xf2,0x98,0xb5,0xeb,0x5b,0x76,0x70,0xca,0x09,0xc1,0xf6,0x45,0x29, + 0x4f,0x6a,0x5f,0x79,0x12,0x4a,0x27,0xc4,0x05,0xd9,0xf9,0x7d,0x72,0x40,0x6b,0xd2,0x4c,0x7b,0x70,0x80, + 0x05,0xd2,0x11,0xb9,0x90,0xe0,0xdc,0xe2,0xdc,0x6e,0xcb,0x8d,0x70,0x5e,0x60,0x8c,0x9e,0xd3,0xfd,0x86, + 0xbd,0xdb,0xe1,0x1d,0xdc,0x9e,0x34,0x3a,0xb0,0x42,0x6f,0x01,0x93,0x67,0x50,0x3c,0x37,0xcb,0x68,0xb3, + 0x2b,0x8e,0x38,0xe3,0x36,0xca,0xb1,0x0a,0xb0,0x76,0x92,0x20,0x14,0xca,0xb6,0xf1,0xc0,0xe7,0xda,0x86, + 0x22,0x19,0xc3,0xaf,0xbf,0x61,0x64,0xf9,0xa2,0x61,0x0a,0xc1,0x9e,0x88,0x38,0xd3,0x5b,0x44,0x03,0x3b, + 0x61,0x7a,0x5f,0x3d,0xa9,0x1b,0xf4,0x49,0x7b,0x75,0x46,0xbe,0x8b,0xfb,0xf7,0xfb,0x87,0xf1,0xb6,0x5a, + 0x66,0xe4,0x3b,0xe7,0xb7,0x4a,0x43,0x2b,0x27,0x76,0x43,0x1b,0xef,0x40,0x45,0xfc,0x3a,0x01,0x6e,0x37, + 0xf1,0x0e,0x72,0x15,0xaa,0x9a,0xbd,0x53,0xa5,0x96,0x8b,0x7b,0x12,0xc4,0x37,0x2d,0x6b,0x00,0xd6,0x88, + 0x32,0x9c,0x42,0xd7,0xc2,0xe0,0x39,0x66,0x3c,0xd7,0x86,0x4b,0x13,0x51,0x17,0xf6,0xed,0x6c,0xd2,0xa8, + 0xb9,0x83,0x17,0x10,0x8a,0x6d,0x19,0x16,0x0d,0x2b,0xc8,0x8a,0xf9,0xb0,0x7f,0x06,0x8a,0xac,0x60,0x27, + 0xc1,0x8d,0x27,0xee,0x79,0xb6,0xa5,0x56,0x60,0x93,0xfb,0xdd,0x8c,0x5d,0xb3,0x18,0xc5,0xc0,0x33,0x0d, + 0xbf,0xeb,0x75,0xe6,0x5a,0x78,0xa6,0x89,0xe5,0xc1,0xde,0x94,0x86,0x58,0x16,0xf0,0xcd,0xaa,0xad,0x8a, + 0x7f,0xce,0x77,0x50,0x7a,0xe6,0xfe,0xb5,0xef,0x81,0x7d,0xa3,0xe4,0xc9,0x47,0x50,0x09,0xc4,0x4f,0x79, + 0xcf,0xbb,0x04,0x91,0xfb,0x6f,0x74,0xd4,0x72,0x29,0xd8,0x90,0xf1,0x13,0x91,0x16,0xfa,0x09,0x51,0x8c, + 0xf1,0x7b,0x12,0xeb,0x07,0xdf,0x7e,0xbf,0xb9,0xfc,0xf5,0x48,0x8e,0xea,0x7e,0xb0,0x13,0xf4,0x65,0x5c, + 0xc7,0x1c,0x46,0xdf,0xb3,0x16,0xf7,0x01,0x6c,0x0b,0x50,0xba,0x8e,0x41,0x9a,0x2c,0xc4,0xf8,0xa3,0xdd, + 0x09,0x95,0x94,0xdd,0x9d,0x0f,0x0a,0xde,0xa1,0x44,0xee,0x26,0xa8,0x13,0x1b,0x0f,0x44,0x16,0x5f,0xb4, + 0x06,0x81,0x00,0xfe,0xf7,0x13,0xea,0x45,0x24,0xe8,0x37,0xf7,0x76,0x25,0xeb,0x63,0xda,0xad,0x29,0x74, + 0x19,0x04,0xc3,0x86,0x24,0xae,0xd6,0xbe,0xfb,0xa1,0xd4,0x31,0x72,0x51,0x9d,0xf4,0xab,0xe3,0x0d,0xdc, + 0x09,0xd0,0x4d,0x9b,0x76,0x7f,0xd8,0x2b,0x6e,0x3d,0xa8,0x2e,0xce,0x82,0x38,0x58,0xa4,0xf5,0x39,0xdb, + 0x14,0x8d,0xd4,0xe3,0x96,0x62,0xe8,0xad,0xf7,0x69,0x47,0x3b,0x36,0x32,0xde,0xef,0x2b,0x59,0x5e,0xbf, + 0x93,0xd0,0x36,0x17,0xea,0xae,0x98,0xdb,0xe2,0x5d,0x4e,0xb3,0x8b,0xa0,0x61,0xa1,0xf7,0xa8,0xb5,0x3f, + 0xd8,0xa0,0xb2,0x94,0xb3,0x96,0x03,0x90,0x71,0xaa,0xce,0x7c,0x0f,0x6d,0x03,0x9a,0xc0,0x0a,0xf0,0xbd, + 0x2e,0x60,0x16,0x4f,0xdf,0x56,0xc3,0xb6,0xd6,0xa4,0x60,0x63,0xa7,0x39,0xff,0xe2,0xb0,0xc7,0x2f,0x0e, + 0x56,0x1c,0xaa,0x78,0xd4,0x34,0x7b,0xec,0xda,0x7f,0x96,0x3f,0x2d,0xca,0xce,0x5a,0xf0,0xd7,0xa2,0x89, + 0x8c,0x70,0x70,0xaf,0xc7,0x49,0x8c,0x85,0x4d,0xdd,0x04,0x13,0xea,0x21,0xf3,0x80,0xf5,0x17,0x25,0xa3, + 0x76,0xf1,0xaf,0x40,0xc1,0xe1,0x78,0xa7,0x5f,0x16,0x24,0xa9,0x3d,0xa8,0x8f,0x7b,0xdf,0xf5,0x9b,0x55, + 0x7a,0xce,0x36,0x4c,0x6a,0xcb,0x53,0x8e,0x92,0x42,0x54,0x00,0x3f,0xb7,0x25,0x2b,0x50,0xc6,0x29,0xe9, + 0x08,0x9f,0xae,0x40,0x9b,0x8d,0x40,0x0e,0x25,0x5c,0x0d,0xc3,0x52,0xcf,0xb9,0x12,0x78,0x26,0x8e,0x15, + 0x2f,0x59,0x15,0x47,0x73,0x2a,0xd9,0x69,0xec,0x2b,0x65,0xac,0xb8,0x10,0xc6,0x73,0xeb,0xf5,0x32,0x63, + 0x6f,0x45,0xfa,0x21,0x3e,0x90,0x07,0x0c,0x5a,0x02,0xa3,0x79,0x08,0x19,0xd2,0x1b,0x84,0xb1,0x3a,0x2f, + 0xe6,0xc4,0xa3,0x73,0x0d,0x0d,0x49,0x13,0xc6,0xe9,0x27,0x80,0xee,0x6d,0xa6,0x68,0xb9,0x9b,0x6f,0x9c, + 0x5f,0x2b,0xd1,0x84,0x55,0x1e,0x2b,0x0f,0x38,0x6c,0xa6,0x8c,0xc8,0x86,0xec,0x41,0x52,0x0e,0xfb,0xfd, + 0x8c,0xb6,0x2b,0x0c,0x14,0xb3,0x13,0x4d,0x46,0x87,0x29,0x0e,0x78,0xe7,0x46,0xe9,0xb9,0x95,0x7c,0xd4, + 0x30,0xa9,0x23,0xd7,0x79,0xde,0x5c,0xeb,0xb5,0x6c,0x27,0x35,0xe7,0xdd,0x40,0xb2,0xe2,0x83,0x13,0xac, + 0xdc,0x05,0x5c,0xf2,0xa4,0x7a,0xa8,0x92,0x1f,0xeb,0xed,0x5a,0x5d,0xd0,0x00,0xf0,0x57,0x54,0x62,0xab, + 0x11,0x21,0x5d,0x89,0x15,0x91,0x1a,0x44,0xfa,0x6a,0x16,0x2a,0x57,0xb2,0x95,0x32,0xa9,0x14,0x1f,0x3f, + 0xc1,0x4f,0x39,0xa2,0x59,0xa3,0x29,0xfe,0x08,0x91,0x57,0x62,0xbc,0x6c,0xff,0x00,0x4f,0xab,0x55,0x9c, + 0x81,0xc0,0x85,0x04,0x22,0x83,0x4d,0x04,0xb0,0x3f,0xfd,0xb8,0x7d,0xa5,0xe4,0xcd,0xd3,0x5e,0x6f,0x6e, + 0x80,0x9a,0x38,0x13,0xf5,0x35,0x1c,0xd2,0xba,0xbe,0xcd,0x72,0xa2,0xc1,0xf9,0x9b,0x95,0xfd,0x06,0x5b, + 0x78,0xd5,0x88,0x38,0x33,0xeb,0x92,0x7f,0x2b,0xdb,0xbb,0x95,0x6f,0x71,0x47,0x6d,0xad,0x30,0x8e,0xc0, + 0x54,0xab,0x9a,0xdc,0x0c,0x8b,0xd1,0x73,0x38,0x43,0xa9,0xe4,0x00,0x72,0xe6,0x59,0xc8,0x16,0xff,0x73, + 0x1b,0x95,0x83,0x0b,0x20,0xba,0x9f,0x0e,0xea,0x77,0x6b,0x8b,0xf3,0x56,0x8b,0x73,0x6e,0xb1,0x3d,0x09, + 0xba,0x65,0xe6,0xb8,0xed,0x7c,0x57,0xd1,0x84,0x5d,0xca,0xe8,0x2b,0x9e,0xf6,0x60,0x95,0xab,0x89,0xa9, + 0xe9,0x1f,0x84,0xad,0x4d,0x73,0xdc,0x1f,0xeb,0x6d,0xc8,0xe8,0x8a,0x8b,0xd3,0xb0,0xb9,0x2d,0xd4,0xf2, + 0x6e,0x9b,0x71,0x86,0xca,0xd4,0x38,0x1a,0xe8,0x90,0xdd,0xac,0xf0,0x2e,0xdd,0x5b,0x72,0x0d,0xd5,0xd0, + 0x31,0x01,0x3f,0xb5,0x34,0x28,0xd3,0xcb,0x57,0x4c,0x38,0x65,0x4c,0x40,0xf5,0x83,0x41,0xd0,0xf7,0x8d, + 0x3d,0x32,0xbf,0x1a,0xc8,0x01,0x54,0x44,0xd4,0x41,0x10,0x45,0x27,0x54,0x01,0x9c,0xb2,0x67,0xc4,0x17, + 0x49,0x8f,0x2f,0x72,0x60,0x19,0x50,0x3e,0x6a,0x75,0xba,0x2b,0xcf,0x1f,0xc2,0x19,0x15,0xd8,0x68,0x05, + 0xb5,0x02,0x19,0xfe,0xd1,0xe6,0x90,0x05,0xdb,0x3b,0x16,0x61,0xae,0xa2,0x67,0xe8,0xf2,0xda,0xe6,0xb1, + 0x84,0xcd,0x63,0xa9,0x6e,0x31,0x60,0xf4,0xef,0xda,0xe6,0xbb,0x49,0xd4,0x88,0x70,0xda,0x3b,0x9b,0x48, + 0xcf,0xbf,0xa1,0x0e,0x3d,0x6a,0x67,0xdb,0x1a,0x9b,0xe7,0x3b,0x94,0x8c,0xad,0x94,0x3f,0x54,0x93,0xe0, + 0xcc,0xf2,0x73,0x59,0x66,0x1c,0x04,0x9b,0xe6,0xa6,0x0e,0x15,0x12,0xb4,0xc8,0xaf,0x36,0xe6,0xff,0x2a, + 0x41,0x33,0x02,0xcc,0x13,0x51,0x63,0x18,0xcd,0x24,0xf1,0x3f,0x61,0x71,0xf8,0x2a,0x29,0x5b,0x49,0xcc, + 0x7b,0x69,0xe9,0x0f,0x62,0x1c,0x34,0x0a,0x24,0xac,0x5c,0x5e,0x69,0x1f,0x08,0xa6,0x0c,0x57,0x51,0x9a, + 0xac,0x40,0xcd,0x4f,0x14,0xe3,0x92,0x12,0xc8,0x43,0x36,0x0a,0x1e,0x6d,0x18,0x3e,0xce,0xd7,0xeb,0x57, + 0xb0,0xd3,0x58,0xa9,0x4d,0x0f,0x21,0x84,0x7a,0xd2,0xc5,0x8c,0x48,0x5d,0xe7,0x7b,0x15,0x4f,0x22,0xec, + 0xba,0x82,0x0d,0xec,0x33,0x20,0xef,0x11,0x02,0xce,0x21,0x5a,0xac,0x0d,0x03,0xfe,0xea,0x5d,0x58,0x12, + 0xf0,0x22,0x93,0x18,0x66,0xfc,0x20,0xf8,0x65,0xab,0x10,0x32,0xbd,0x55,0x78,0xee,0xeb,0xfd,0x73,0xf6, + 0xfb,0x49,0x33,0x8e,0x5a,0xbd,0xf5,0xa1,0x84,0x00,0x24,0x09,0x88,0xaa,0x2e,0x2e,0x67,0xb4,0x23,0x2a, + 0xda,0x1d,0x32,0x0f,0x54,0x28,0xb0,0xe0,0xc9,0xcb,0x47,0x4f,0x1e,0x6b,0x13,0x68,0xc5,0xcb,0x8f,0x82, + 0xba,0xa4,0xb1,0xc4,0xd0,0xdd,0x37,0xa2,0x95,0xb3,0x2b,0x9b,0x35,0x73,0x92,0x99,0x8e,0x0b,0xd0,0x2c, + 0xc2,0xbd,0xc0,0x6d,0xa1,0x29,0x95,0x43,0xbd,0xf9,0x48,0x3f,0xc7,0xaa,0x5e,0xcf,0x50,0xea,0x6b,0xdd, + 0xb6,0x93,0x22,0x71,0xa9,0x46,0xa3,0x15,0x95,0x25,0xad,0x55,0x02,0xe8,0x78,0x36,0xac,0xe9,0x1a,0xbb, + 0x32,0x8b,0xa1,0x22,0x8f,0xe1,0xb4,0xf6,0x14,0xae,0x10,0xef,0x9f,0xfc,0xfa,0xfe,0xe1,0xdb,0x27,0x0f, + 0x1b,0xa3,0xa6,0xf4,0xa5,0x3b,0x43,0xf5,0xec,0x70,0x9c,0xcb,0x4c,0x2e,0xcf,0x0d,0xc9,0xe4,0x9b,0xf8, + 0x49,0x22,0xb4,0x8b,0xe5,0x33,0x22,0x1e,0xa6,0x19,0x61,0x1b,0x18,0xcc,0xa4,0x67,0xa9,0x42,0x8a,0xc2, + 0x74,0xa5,0x75,0xf1,0x8a,0xa2,0x1c,0x60,0x00,0x32,0xac,0x3b,0xee,0x65,0xb1,0xd9,0xc2,0x34,0x9c,0xec, + 0x1e,0x6c,0x3a,0x96,0xc1,0x83,0x84,0x9f,0x5a,0xfb,0xd1,0x90,0x6c,0x1c,0x4f,0x27,0xd5,0x7b,0x45,0x6d, + 0x4a,0xdc,0x1a,0xe9,0x33,0x07,0xd8,0x6d,0x85,0xe6,0x0b,0x58,0x46,0x01,0xd1,0x2b,0x18,0xa1,0x76,0xa1, + 0x54,0x17,0x8a,0xac,0x36,0xa5,0x93,0xae,0x37,0x17,0x95,0xc1,0x3b,0x22,0x83,0x45,0x52,0xd8,0xc1,0xf1, + 0x44,0xc3,0x88,0x90,0x68,0x17,0x2b,0xa4,0x38,0xb6,0x88,0x0f,0x3f,0x76,0xb1,0x25,0xb0,0x7d,0x5c,0x6b, + 0x42,0x8c,0x61,0x8f,0x0d,0xe4,0x15,0xb1,0x64,0xad,0xe3,0x39,0x02,0x86,0x5f,0x3e,0x17,0x9a,0x8c,0x73, + 0xf8,0x33,0x69,0x30,0x45,0x3c,0x2b,0x8a,0x07,0x92,0xbc,0xd9,0x20,0xfb,0x1b,0x3d,0x85,0x60,0xe9,0x15, + 0x6b,0x8c,0x88,0xd0,0x1f,0x6a,0xac,0xc3,0x06,0xc7,0x10,0xfc,0x8c,0x39,0x96,0x6b,0x86,0x31,0x73,0x25, + 0x92,0xc8,0x61,0x96,0x3b,0x86,0x55,0xf2,0x14,0x28,0xe0,0x55,0xcd,0x72,0x41,0x01,0x7f,0xab,0x0c,0x76, + 0x95,0xf2,0x82,0x0b,0x76,0x5c,0x0c,0xa0,0x8c,0xb9,0x44,0x85,0xd3,0xde,0x15,0x4c,0x2a,0x7f,0x59,0x7f, + 0xa8,0xb7,0x3c,0xdf,0x42,0x36,0xb7,0xf2,0xfc,0x30,0x6a,0x6d,0xed,0x7d,0x46,0xb8,0x5d,0xdd,0xbc,0x40, + 0xed,0x9f,0x25,0x59,0xff,0x70,0xe3,0x1d,0x8a,0x46,0xdc,0x4e,0xd4,0x0d,0xec,0xbd,0xf1,0x67,0x89,0x3f, + 0x53,0xfc,0x81,0x45,0xf8,0x05,0xfd,0x5f,0xd0,0xff,0x33,0xed,0x6b,0xd9,0x21,0x36,0x21,0xf0,0x51,0xf6, + 0xb6,0xb5,0x1f,0x53,0x3d,0x83,0xdc,0xea,0xfe,0x77,0xca,0x70,0xfb,0xbb,0x7b,0x34,0x70,0x30,0x69,0x68, + 0xc6,0xed,0xcc,0x59,0x74,0xff,0x9b,0x56,0x81,0x59,0xa3,0xc0,0x32,0xfa,0xee,0x9f,0xad,0x02,0xcb,0x46, + 0x81,0x69,0xf4,0xcd,0x7f,0xb7,0x0a,0x4c,0x1b,0x05,0x0e,0xef,0x7d,0x03,0x1e,0x71,0xbd,0xa6,0x07,0xde, + 0xd2,0x7e,0x17,0xfb,0x87,0x51,0x77,0xc6,0x3e,0x32,0xce,0xd7,0xeb,0x8b,0xf5,0x7a,0x11,0xdd,0x54,0x97, + 0x99,0x76,0x07,0x98,0xa4,0x54,0xeb,0xfd,0x6f,0xe2,0x19,0xc2,0x06,0xb2,0x45,0xec,0x50,0x25,0x7d,0x17, + 0xcf,0x5b,0x49,0xdf,0xfd,0x33,0x5e,0xb6,0x92,0xbe,0x39,0x88,0x17,0xfd,0x7e,0x23,0xe5,0x30,0x5e,0xec, + 0xef,0x37,0x3e,0x3b,0x8c,0x2f,0x9a,0x65,0xbe,0xbb,0x1f,0x5f,0x34,0xcb,0x1c,0xde,0xbb,0x1f,0x9f,0x37, + 0x0b,0x1d,0xde,0xfb,0x36,0x3e,0xdf,0xdf,0x07,0x5d,0xa6,0x26,0xc4,0xed,0xbc,0xeb,0x84,0x86,0x23,0xc6, + 0x9a,0xe1,0x1a,0x5e,0x73,0xe0,0x47,0xe5,0xd9,0x12,0x8e,0xf5,0xb8,0x69,0xcc,0xd7,0xb4,0x25,0xae,0xf7, + 0xf7,0x23,0x5c,0xe9,0x75,0xa5,0xa3,0xeb,0x8e,0xd5,0xad,0x7c,0xb0,0xe2,0x57,0xbe,0x20,0xd6,0x42,0xa4, + 0x18,0x85,0x0c,0x4b,0xcc,0xa4,0x9b,0x8b,0x9b,0x1d,0xa0,0xc5,0x52,0xe9,0x52,0xbc,0xf2,0x9d,0x05,0x63, + 0x78,0xc0,0x9f,0x81,0xc7,0xc1,0xfd,0x1c,0x0e,0xbe,0x52,0x1f,0xbe,0x20,0xa1,0x9d,0x24,0x30,0x25,0x34, + 0xd2,0xde,0x15,0x9d,0xb0,0xf6,0x0e,0x92,0x10,0x3a,0xaa,0x64,0xf5,0xe0,0x60,0x74,0x67,0x4c,0xaf,0x77, + 0xfa,0x93,0xfe,0x9d,0x20,0x0a,0xef,0x40,0x30,0x1f,0x05,0xb1,0x49,0xb4,0x8d,0xaf,0x22,0x97,0x2f,0x02, + 0x9b,0xb1,0x22,0x60,0xe8,0xa0,0xa9,0x7e,0xe5,0xad,0xd6,0xf4,0x53,0x0e,0x8e,0x3f,0xae,0x10,0x22,0x8d, + 0xed,0x9a,0xca,0x13,0x0e,0xcd,0xeb,0xd1,0x9e,0xff,0x6e,0x0b,0x48,0xea,0xc1,0x22,0x5d,0x36,0x8d,0x48, + 0x5c,0x24,0x9f,0xcd,0xb6,0x89,0xb8,0x57,0x60,0x13,0xc5,0xc7,0x9e,0x49,0xd0,0x6f,0xf6,0x64,0x0f,0x6b, + 0xab,0x7d,0x37,0x31,0x3e,0xdc,0xde,0xbf,0xe1,0x6b,0x34,0xa4,0xd0,0xc1,0xe2,0xf8,0x12,0x34,0xbe,0x3d, + 0x34,0xf1,0x1d,0x82,0x7e,0xf6,0x2b,0x6b,0x9b,0x71,0xfe,0xdd,0xca,0x38,0x62,0xbe,0x36,0xf5,0xe3,0x1a, + 0x5e,0xa6,0x4b,0x15,0x4a,0x48,0xbf,0xe3,0x20,0xbb,0xa5,0x42,0xcf,0x8b,0x4e,0x3a,0x0a,0xd6,0x6a,0xbd, + 0x87,0xc0,0xe9,0xac,0xbd,0x36,0xae,0xa6,0x2e,0x60,0x50,0x69,0xfd,0x5b,0x65,0x12,0xec,0xc2,0xfb,0x86, + 0x10,0x3c,0xac,0x23,0xfd,0x22,0xec,0x09,0x4b,0xf9,0xff,0x4f,0xe7,0x6b,0x47,0x58,0xbf,0x88,0xf1,0x8d, + 0xa5,0x52,0x3d,0x2e,0x45,0x78,0x18,0x4e,0xde,0xea,0xa8,0x87,0xa1,0x48,0x76,0x76,0x5e,0x8f,0x42,0xca, + 0xd7,0x84,0xf1,0x42,0xe6,0xab,0x40,0xd8,0x0a,0x38,0x3f,0x8a,0x89,0x29,0xc8,0xa6,0xd3,0xb9,0x8a,0x25, + 0x13,0x2c,0x8a,0x55,0x25,0x57,0xcb,0x80,0x2f,0x59,0x50,0x6a,0xe8,0x91,0x6b,0x53,0x25,0xb0,0x11,0xba, + 0x7a,0xe4,0x03,0x5f,0x2d,0x82,0x9f,0xc0,0x6a,0xef,0x18,0xc5,0xa4,0x2b,0x20,0x6d,0x96,0x36,0xbf,0x33, + 0x91,0x01,0x37,0x43,0xdc,0x95,0x3a,0x85,0x54,0xac,0xf2,0x38,0x14,0x7d,0x87,0x3a,0xf6,0x11,0x71,0x01, + 0x5b,0xfa,0xbb,0x6c,0x34,0xb1,0xd7,0x78,0x57,0xd6,0xd7,0xae,0x52,0x77,0xe9,0x24,0x13,0xca,0x3f,0xa6, + 0x73,0xe2,0x24,0x3e,0x9e,0x88,0xea,0x24,0xae,0x3a,0x41,0x20,0xb7,0x20,0xa0,0xe8,0xa1,0x92,0x2f,0x51, + 0x60,0x97,0xa8,0xf5,0x5a,0xbd,0x5c,0xec,0x73,0x78,0x15,0x24,0xb1,0xb4,0x89,0xa3,0xe0,0x9a,0x40,0x96, + 0x38,0xd6,0x94,0x72,0x42,0xb9,0xb2,0x58,0xb2,0x45,0xda,0x50,0x6a,0xea,0x83,0xcc,0x7c,0xd0,0x0a,0x36, + 0x9b,0xf9,0x67,0x64,0xd9,0xec,0x8d,0xfb,0x9a,0xe5,0x2f,0x1e,0x88,0xfa,0xc1,0x6c,0x3c,0x58,0xd5,0xa6, + 0xf7,0x59,0xdb,0xf4,0x1e,0xb4,0x29,0x3c,0x1b,0xf8,0x56,0x13,0x84,0xea,0xbc,0xc9,0x4c,0xf8,0xab,0x02, + 0xe1,0xaf,0x94,0x9f,0x84,0x51,0xb3,0x5b,0x67,0xc4,0x46,0x93,0xbe,0x29,0x7e,0xd6,0x9a,0x35,0x65,0x6a, + 0x9f,0x25,0xc1,0xde,0xde,0x45,0x30,0x54,0x97,0x26,0xf1,0x1d,0xd4,0x41,0xa8,0xa5,0x80,0x94,0xb1,0x43, + 0x2d,0xef,0xdc,0x51,0x23,0xbf,0x33,0x42,0x8a,0x41,0xa8,0x78,0x8e,0x02,0x86,0x37,0xf6,0x58,0x50,0x9f, + 0x8e,0x89,0xbf,0xec,0x67,0xc0,0x87,0x91,0x36,0xc7,0x29,0x40,0x2b,0x66,0x08,0x19,0xcf,0x46,0x35,0x06, + 0x7c,0x08,0x9b,0x82,0xb3,0x8b,0x88,0x07,0xbf,0x5a,0xe2,0xc6,0x3f,0xea,0x62,0x7c,0x87,0xf0,0xa7,0x24, + 0xa4,0x79,0x47,0x18,0xd3,0x1b,0x17,0x9d,0x64,0x27,0x44,0x83,0x3b,0x37,0x41,0xbf,0xe8,0x07,0x9b,0xc0, + 0x5b,0x80,0x42,0xfa,0x62,0x46,0x1f,0xb9,0xd1,0x14,0xfe,0x58,0xba,0x08,0x84,0xde,0x7d,0x52,0xc7,0x41, + 0xf4,0xe0,0x00,0xb2,0x45,0x5c,0x90,0xf5,0xcc,0xa4,0x9e,0x50,0xea,0x8f,0xa5,0x8d,0x93,0x1b,0x3e,0xe7, + 0x8f,0xfd,0x12,0xe0,0x9d,0xbf,0xdf,0x3f,0x1c,0xdd,0x50,0xaf,0x63,0x77,0xce,0x3c,0x27,0xfa,0x8c,0x58, + 0x6e,0x1e,0x80,0x49,0x7d,0x5e,0x12,0xa2,0xc7,0x60,0x36,0xb1,0x2a,0xcd,0x25,0x38,0xd4,0x12,0x13,0x38, + 0x7f,0x80,0x40,0xa5,0x16,0x7e,0x2a,0x93,0x1f,0x60,0x1a,0xbd,0x8b,0xa0,0xbf,0xc3,0x88,0xbe,0xfc,0xbd, + 0x4c,0x52,0x7a,0x8e,0x46,0x2b,0x3c,0x47,0xf1,0x77,0x60,0x60,0x7f,0x2f,0x7d,0x61,0x94,0x91,0x2c,0x2b, + 0x37,0x47,0xaa,0xe2,0x79,0x69,0x2a,0xe0,0xd0,0xae,0xf8,0x5e,0xc0,0xcb,0x38,0x8a,0x56,0xf8,0x6b,0xc9, + 0x14,0xae,0x0b,0x62,0xc6,0x7e,0x5f,0x7c,0x77,0x5f,0x3f,0xef,0xef,0xb3,0xd1,0x1c,0xcd,0xe1,0x0f,0x5c, + 0x93,0x02,0xad,0x0d,0x1a,0x37,0x51,0xc7,0x9b,0xe3,0xfd,0x49,0x8f,0xd7,0xa4,0xfc,0x44,0x63,0x15,0x3f, + 0x94,0x50,0x24,0x3a,0x6d,0xb0,0xf6,0xd1,0x64,0x07,0x87,0x91,0xbe,0x54,0x26,0x0e,0xf6,0x88,0x0a,0x0d, + 0x71,0x8d,0x21,0xd5,0xa8,0xaf,0xcd,0x42,0x01,0xf5,0xc8,0x10,0xe1,0x79,0x92,0x4a,0x67,0x04,0xfc,0x47, + 0xe9,0x13,0x4e,0xfd,0xfe,0x73,0xdf,0x7e,0xbd,0xf2,0x0a,0x3e,0x2f,0xbf,0x4f,0x7e,0xf4,0xe0,0x7e,0xe2, + 0xc7,0xed,0x66,0x32,0xb0,0x5e,0xaf,0x99,0x5e,0xf4,0x44,0xd5,0x3c,0x49,0xbe,0xc7,0xa0,0x9a,0x4d,0xf6, + 0x82,0xe5,0xb5,0x80,0x73,0xc5,0x30,0x1a,0x7a,0xde,0x75,0x72,0x4b,0x06,0x62,0x68,0xdc,0xa1,0x4c,0x88, + 0xd7,0x97,0xd1,0x60,0x8c,0xfb,0x1b,0xdf,0xa7,0x15,0xcc,0x78,0x56,0xee,0xcd,0x97,0x94,0x2d,0x61,0xa4, + 0xa9,0x43,0x8f,0xac,0x6e,0x09,0x10,0xa1,0xfb,0xbe,0x64,0x57,0x49,0x3a,0xa9,0xf9,0x72,0xc4,0x22,0x61, + 0x8c,0x0e,0x81,0x04,0x11,0x2d,0xbf,0x96,0xc2,0x45,0x8c,0xdf,0x81,0x37,0xa8,0x0e,0xfc,0x5d,0x74,0xd7, + 0x49,0xb0,0x44,0xfc,0x86,0xa8,0x95,0x8e,0x37,0x12,0xbf,0x96,0xdb,0x8c,0x20,0x86,0xf7,0x4b,0x3e,0xba, + 0xd1,0x07,0x1f,0x0c,0x70,0xd4,0xe1,0x85,0x80,0x70,0x0d,0xc7,0x3d,0xe9,0xd4,0x4f,0x21,0x1d,0xa0,0xbf, + 0x96,0x51,0x27,0xe3,0x89,0x28,0x54,0xde,0x94,0x34,0x4d,0xf8,0x97,0x32,0x34,0x91,0xa4,0x76,0xad,0x3c, + 0xa6,0x00,0x17,0xbf,0x6b,0xa5,0x31,0x08,0xbc,0x6f,0x59,0x4c,0x9d,0xc2,0x58,0xac,0x48,0x72,0xff,0x7d, + 0xf8,0x6b,0xa9,0x79,0xd0,0x16,0x36,0xa0,0x8e,0x1e,0xef,0x41,0xa5,0x63,0xac,0xa5,0xf2,0x51,0xa0,0xaf, + 0x9c,0x8e,0x8d,0xb9,0x21,0xc7,0x65,0x76,0x16,0xfc,0xfc,0x01,0x47,0x58,0x66,0xef,0x70,0x77,0xdd,0x37, + 0x25,0x6f,0x50,0xdf,0x97,0x4c,0xc5,0x2d,0x18,0xa8,0x8a,0x1a,0x9f,0x7e,0xc1,0xa7,0x3a,0xa3,0xf5,0x39, + 0x3e,0xdb,0x80,0x79,0xf9,0x9d,0xb5,0xed,0x73,0x29,0x66,0x52,0x94,0x4e,0x14,0xfc,0xab,0x75,0xe4,0xf7, + 0xdc,0x04,0xbb,0xe6,0xc8,0xb8,0xc9,0x34,0x66,0xca,0x26,0xfa,0x92,0x73,0x35,0x25,0x55,0xd2,0xfa,0xb0, + 0x29,0xbc,0xf2,0x53,0x6f,0x93,0x5f,0x59,0xcf,0x9c,0x86,0x08,0x2b,0x53,0xe2,0x53,0x48,0x9a,0x32,0x1d, + 0x65,0x2e,0x3b,0x49,0x82,0xc0,0xcb,0x5d,0xe9,0x9b,0xfd,0x50,0x42,0xf0,0xfd,0xcc,0xe6,0xbe,0x64,0xed, + 0x54,0x94,0xe5,0x04,0x28,0x3f,0xbe,0x7f,0xf9,0x82,0x13,0xb8,0x74,0xd9,0x1d,0xb4,0xd6,0xb3,0x5b,0x2a, + 0xa8,0x6c,0x85,0x36,0x31,0x79,0x59,0xbe,0x92,0x43,0x20,0xb9,0x54,0x15,0x7d,0x05,0xd7,0x2a,0x2b,0x41, + 0x4e,0x35,0x60,0x1e,0x21,0x2b,0xf4,0x8b,0xc0,0x66,0x88,0xaf,0x12,0x56,0x42,0x34,0xd5,0x7c,0x3a,0x18, + 0xf3,0x6b,0x52,0x68,0xb3,0xc4,0x1a,0xb2,0xb3,0x20,0x30,0x41,0xe6,0x8b,0x68,0xb8,0x4c,0xe6,0x62,0x97, + 0xb8,0xc9,0x34,0x52,0xc2,0x84,0x8a,0xd2,0x61,0x58,0xfd,0xfa,0xcd,0xfb,0x67,0xaf,0x5f,0xa1,0x9e,0x99, + 0x91,0xee,0xac,0xd7,0x1d,0xda,0x04,0x6c,0x7f,0x76,0x0b,0x77,0x97,0x51,0x29,0xf7,0x66,0xad,0x57,0xe3, + 0x9b,0x05,0x6c,0x6c,0x20,0xef,0xbc,0xaf,0xad,0x14,0x50,0x6e,0xc2,0x99,0x58,0x46,0x8d,0xea,0x3d,0xfd, + 0x9a,0xd2,0x10,0x28,0x6d,0xf4,0x4b,0x43,0xa7,0x29,0x03,0xb4,0x2c,0xd2,0xd6,0x29,0xf3,0xf4,0x8f,0x6b, + 0x17,0x3f,0x5b,0x19,0xac,0xf0,0xb1,0x6e,0x28,0xa0,0x89,0x72,0x30,0x9b,0xe8,0x40,0x6d,0x19,0x93,0x01, + 0xce,0x6c,0x5e,0x11,0x05,0xec,0x17,0xac,0x1e,0x4d,0x47,0x41,0x23,0xe6,0xaa,0x7f,0x0c,0x12,0xaa,0x37, + 0xc9,0x5c,0x07,0x35,0x62,0x10,0x29,0x94,0xb1,0x1e,0x95,0xf1,0xbc,0x31,0xa5,0x3b,0xe4,0x2e,0x24,0x6b, + 0x97,0xaf,0xe7,0x4e,0x18,0x6d,0xb4,0xcd,0xef,0x90,0x3a,0xba,0x08,0x1b,0xef,0x1c,0xf1,0xc0,0xf3,0x41, + 0x94,0x5f,0xd3,0x0d,0x2f,0x6e,0x51,0xb4,0xbe,0xcb,0x5a,0xf1,0x46,0x16,0xb2,0x29,0xe2,0x62,0x79,0x50, + 0xd1,0x12,0x6d,0x65,0x7e,0x3f,0x22,0xa5,0xe2,0xaa,0xec,0x73,0xb1,0x95,0x5b,0xe8,0xdc,0xc8,0x8b,0xd2, + 0xa3,0xf7,0xe9,0x2a,0x69,0x14,0x17,0x73,0x58,0x98,0x16,0xe5,0x82,0xaf,0x70,0x9f,0x72,0xda,0x7a,0xad, + 0xbf,0xe7,0x2d,0x3c,0x4b,0x56,0xeb,0xf5,0x5c,0x2c,0x31,0x5f,0x7a,0xa3,0xaa,0xca,0x79,0x2b,0xeb,0x94, + 0x56,0x0d,0x09,0xec,0xd7,0xf5,0x0e,0x57,0xde,0x4e,0xcb,0x28,0x5e,0x0e,0x95,0xa5,0x6a,0x13,0x5a,0x7d, + 0xc5,0x39,0x13,0x8e,0xf5,0xb0,0x43,0x7e,0xf6,0xb7,0xe4,0x6a,0xe7,0x56,0xc1,0x09,0xa7,0x90,0x90,0x5d, + 0xbc,0x54,0x72,0xdd,0x4e,0x76,0xee,0xc6,0x30,0x9d,0x2d,0x06,0x26,0x66,0x5a,0xd1,0xa8,0xad,0x68,0x7f, + 0xe6,0xb4,0xf3,0xa5,0xaa,0x83,0xc3,0x59,0xce,0x08,0x49,0x4d,0x61,0x88,0xd8,0xeb,0x7d,0x86,0xf9,0x60, + 0x25,0x0c,0x96,0xe2,0xec,0x69,0x14,0xa6,0x09,0xe7,0x13,0xf0,0xce,0xe8,0xd7,0x16,0xd3,0x11,0x4a,0x80, + 0x01,0x52,0x9f,0x07,0x38,0x93,0xbe,0x2f,0x19,0x47,0xf7,0xd4,0x02,0x0a,0x15,0x37,0x83,0x65,0x6d,0x6c, + 0xf7,0xe7,0x2c,0x7f,0xa0,0xf4,0x07,0x29,0x29,0xb5,0x89,0xca,0xdd,0x4f,0x55,0xff,0x6e,0x64,0xef,0x4d, + 0xea,0xf0,0xe3,0xf6,0xea,0xe1,0x80,0x58,0x08,0x06,0x16,0x6f,0x27,0xfa,0x81,0x71,0xa1,0x40,0x09,0xd9, + 0xf5,0x7b,0x4b,0xf2,0x17,0x69,0x93,0xc9,0x1d,0xdc,0xb6,0xe8,0x75,0x8a,0x15,0x2e,0x01,0xeb,0xbe,0xeb, + 0x6e,0x91,0x61,0x98,0x13,0x5b,0x65,0x06,0xe8,0xcd,0xc2,0xf5,0xff,0xef,0xb3,0xa0,0x90,0xf9,0xf6,0x44, + 0xd8,0x74,0xe1,0xa7,0xaa,0x43,0x00,0x54,0x7f,0x5b,0x42,0x6f,0xa6,0x44,0x4d,0x9d,0x13,0x25,0xff,0xa5, + 0xe9,0x83,0x21,0x89,0x99,0x36,0x6f,0x2a,0x4b,0x98,0x75,0x0d,0xe1,0xd3,0x6c,0x2f,0x78,0x2a,0x05,0x86, + 0x0b,0x10,0x37,0x68,0x12,0x3a,0x87,0xce,0x39,0xe6,0xab,0x2b,0x6e,0xeb,0xa6,0x7f,0xc5,0x80,0xd4,0xa4, + 0x8d,0xbe,0x52,0x69,0xeb,0xa2,0x14,0x83,0x44,0xed,0x15,0xbc,0xcc,0xf3,0xd2,0xb4,0x40,0x28,0x8c,0xcb, + 0x23,0x9e,0x65,0x61,0xad,0x0d,0xb0,0x82,0x0b,0x48,0x10,0xf8,0x46,0x09,0xc4,0xbc,0xbe,0xd5,0x38,0xe4, + 0x19,0xe3,0xc6,0x2d,0xf2,0xe4,0x94,0xfb,0xf2,0x21,0xf3,0x7d,0x5f,0x3e,0xa0,0xa8,0x2f,0x79,0xb9,0x94, + 0x4d,0xa3,0x90,0x6d,0x91,0x36,0x8b,0x1d,0xb6,0x93,0x39,0x9a,0x4f,0xee,0x19,0x71,0x01,0x42,0xe1,0x11, + 0x02,0x01,0x02,0xad,0xb4,0xde,0x83,0xbe,0x57,0xa8,0x6e,0xaa,0xab,0xb6,0x5e,0x6f,0xde,0xd9,0x0a,0x82, + 0x66,0x6b,0x38,0xf6,0x5c,0x45,0x5b,0xac,0xf3,0x17,0x55,0x40,0xe0,0x18,0xd0,0x96,0x14,0xa5,0xf1,0xe5, + 0x61,0x3a,0x0b,0x72,0x32,0x8e,0x3c,0xcd,0xe7,0x82,0x15,0x23,0x98,0x80,0x29,0x55,0x02,0x7b,0x8a,0xa7, + 0xd9,0xe8,0x6d,0x16,0xff,0x92,0x11,0xc6,0x6f,0xb9,0x8f,0x75,0xeb,0x6d,0x2a,0x31,0x87,0xe5,0x39,0xbb, + 0x8a,0x35,0x55,0x40,0x2a,0x88,0x85,0x62,0xe6,0xfa,0xfd,0xc9,0xf7,0x50,0x1c,0xc2,0x53,0x6c,0xd8,0xed, + 0x8f,0x34,0x79,0xa0,0xf3,0x05,0xae,0x46,0x16,0x1d,0x3a,0x20,0x34,0xe5,0xb9,0xaa,0xca,0x86,0x8e,0x3b, + 0xd1,0x37,0xd9,0x52,0x93,0x47,0x3a,0xec,0x06,0x9f,0x25,0x2a,0x52,0x44,0x79,0xfc,0x92,0xf8,0xff,0xc7, + 0xf0,0x91,0x0a,0x4e,0xac,0xf5,0xdd,0x0e,0xcb,0x4e,0x75,0xde,0xaa,0x54,0xd7,0x4b,0x37,0xb3,0xd3,0xe4, + 0x48,0x72,0xf8,0x57,0xb0,0x34,0xc7,0x8f,0x6e,0xa9,0x64,0x62,0xf2,0xba,0x2b,0x59,0xa1,0x12,0xf0,0x34, + 0x34,0x47,0x07,0x74,0x22,0xba,0x3b,0x77,0xd4,0x84,0xa7,0x6c,0x37,0x9e,0xd3,0x23,0x15,0x48,0xa9,0x80, + 0x31,0x50,0x27,0x8a,0x01,0xd6,0xef,0xd9,0x68,0xa5,0x4b,0xbc,0x42,0x89,0x15,0x95,0x98,0xd8,0x12,0xb3, + 0x84,0xd2,0xc3,0xb9,0x8b,0xb4,0x9e,0x82,0xf6,0xfd,0xfe,0x80,0x6a,0x5d,0x8d,0x9e,0x66,0xf1,0xab,0x8c, + 0xd9,0xfb,0x68,0x94,0xab,0xc6,0x4c,0xdd,0xb1,0xa9,0x22,0x3e,0x10,0x3a,0xe0,0xb2,0xd0,0xd0,0x12,0xcf, + 0x85,0x85,0x95,0x78,0x86,0x6b,0x90,0xdf,0x9b,0xdb,0xfa,0x62,0x55,0x4b,0xaf,0xf7,0x51,0x0b,0xc9,0xd5, + 0xec,0x99,0xf8,0x1d,0xc1,0x89,0x8f,0x06,0x8e,0xa4,0x3b,0xa4,0x87,0x06,0xd3,0x3d,0xb0,0x31,0x12,0xa3, + 0x3a,0xb1,0x61,0xb3,0x1d,0x83,0x6e,0xc6,0xd1,0xb8,0xcf,0xab,0x29,0x42,0xf6,0x7d,0xc2,0x1f,0x02,0xa1, + 0xf6,0x1f,0x4a,0x15,0x5e,0x6a,0xe3,0xef,0xb4,0x87,0x3e,0x89,0x75,0x28,0xef,0xff,0x43,0x5f,0x11,0xeb, + 0x24,0x06,0xfb,0x87,0x7e,0xf9,0x77,0x1e,0x2d,0x05,0x12,0x8a,0xe8,0x1d,0xf8,0x69,0xe1,0x6a,0x9e,0x94, + 0x88,0xf3,0x53,0x76,0x87,0xb0,0x6f,0xfa,0xaa,0xcc,0xb9,0x8a,0x96,0xe7,0xd2,0x43,0x13,0xaa,0x20,0x19, + 0x4b,0xc3,0x0d,0xb9,0x0d,0x1d,0x59,0xe7,0x2b,0x36,0x9f,0xa4,0xcf,0x08,0xc2,0x65,0xc9,0x95,0x1f,0x72, + 0x2c,0x30,0x10,0x24,0xb8,0x64,0xce,0xd1,0x36,0x88,0x23,0x46,0x88,0x51,0xc0,0xeb,0x95,0x37,0x36,0x01, + 0xc9,0x40,0x7d,0xc6,0x9a,0xba,0x99,0x79,0x7d,0x5f,0xa8,0x84,0xa5,0x49,0x78,0xc8,0x34,0xbb,0x4a,0x84, + 0x5f,0x2f,0x4d,0xa9,0x4c,0xf5,0x57,0xe7,0xf6,0xdd,0x7c,0x76,0x61,0x53,0xfc,0xef,0x16,0x94,0x7a,0x2a, + 0x61,0x22,0xfe,0x04,0x55,0xc2,0x7b,0x4f,0x55,0x2e,0xae,0x51,0x1e,0x57,0xaf,0xab,0x8c,0xb1,0xed,0x95, + 0x99,0x18,0x71,0x69,0xbf,0x7d,0xc8,0xf5,0x8a,0x2b,0xdb,0x84,0xd8,0x33,0x5f,0xeb,0xac,0x2f,0xae,0x7f, + 0xf6,0xfb,0x23,0x4a,0x9b,0xea,0x3d,0x25,0x1e,0x26,0xe3,0x52,0xbc,0xa3,0x3f,0xda,0x4e,0x7f,0xf8,0xae, + 0xd7,0x7b,0x67,0x49,0xae,0x87,0x49,0xf8,0x2e,0x31,0xaf,0x91,0xe1,0x58,0x79,0x25,0xde,0x27,0xbb,0x0f, + 0xbd,0xd0,0x49,0xc4,0x91,0xb2,0x11,0x7f,0x51,0x80,0x0e,0xe4,0x98,0xc0,0xb4,0x24,0xef,0xd7,0xeb,0x2b, + 0x1c,0x9e,0xb4,0x06,0x57,0x0a,0x04,0x5e,0x27,0xef,0x7b,0xbd,0xe9,0x68,0x4a,0xbb,0xe1,0x33,0x1e,0x2f, + 0x46,0x17,0xf1,0x52,0xbc,0xc0,0xe3,0xf9,0xe8,0x9c,0xf6,0xc5,0x93,0xe4,0xfd,0xe8,0x72,0xbd,0x5e,0xc4, + 0x0b,0xf1,0x06,0xa9,0x1d,0x4e,0x2f,0x57,0xa3,0xab,0xf8,0x4c,0x3c,0xa3,0x82,0x7b,0xeb,0xf5,0x75,0x7c, + 0x2d,0x1e,0xd3,0xe3,0x97,0xf5,0x7a,0x1c,0x8f,0xc5,0x53,0xe2,0x5b,0xb2,0xf0,0x28,0x1a,0x1d,0xa9,0x69, + 0x8b,0x8f,0x22,0xf1,0x2a,0xe1,0x83,0xb0,0x62,0x7d,0xbc,0x78,0x99,0x7c,0x96,0xe1,0x9b,0x48,0xbc,0x4d, + 0x1c,0x9c,0xf8,0x4e,0xb6,0xd1,0xcd,0x2b,0x02,0xc9,0x2b,0x88,0x5e,0x5f,0x44,0x82,0x7f,0x3f,0xd3,0x51, + 0xf9,0xd6,0x81,0xe6,0x28,0xa4,0x12,0x9c,0xf1,0x3a,0x12,0x8f,0x7b,0xbd,0xc7,0x6c,0x48,0xf1,0xac,0xd7, + 0x7b,0x06,0xb7,0x04,0xaf,0x56,0x1d,0x6c,0x5d,0xc3,0x6b,0x75,0x5e,0xd0,0xc0,0x9e,0xd3,0x76,0x70,0x96, + 0x4f,0xae,0x51,0x25,0x17,0x32,0xd4,0x2e,0xf8,0x54,0xa1,0xc3,0x21,0x8f,0x11,0xac,0x88,0x59,0x4d,0xf7, + 0x7c,0xcc,0x92,0xb4,0x93,0x21,0xdf,0x1b,0xaa,0xec,0x0d,0x73,0x65,0x6f,0x28,0xb1,0xc3,0xec,0xbe,0x69, + 0xbf,0x87,0x91,0x78,0xd3,0xeb,0xbd,0xa1,0xae,0xbf,0x85,0x2c,0xe8,0x49,0xaf,0xf7,0x04,0x7d,0xc6,0x88, + 0x2f,0xf5,0x80,0x2e,0xd5,0x88,0xc5,0xa9,0xf4,0xe7,0xe4,0xd2,0x9f,0x8f,0xd7,0x8d,0xe9,0x58,0xaf,0x5f, + 0xd2,0x39,0xfe,0x5a,0x86,0x4f,0xa3,0x91,0x77,0x0a,0xbd,0x15,0x4f,0xa3,0x78,0x0f,0xc5,0x57,0xd4,0x18, + 0x90,0x88,0xf0,0x26,0x42,0x19,0xd8,0x96,0x7e,0x7f,0xa8,0x1b,0x5c,0xd5,0xdb,0xb0,0x61,0xf1,0xfc,0x5e, + 0x23,0x10,0x27,0x04,0xa6,0xee,0x7c,0xf1,0x9b,0x0f,0x1b,0x13,0x1c,0x12,0xe7,0xe9,0x26,0xd1,0xce,0x18, + 0x54,0xd9,0x5d,0xe9,0xca,0xc1,0x54,0x4d,0x67,0x92,0x47,0xe2,0x9c,0x00,0x11,0xc1,0x51,0x2f,0xd5,0x94, + 0xa4,0x70,0x96,0xe0,0xdf,0x69,0xc7,0x94,0xa4,0xc4,0x43,0x61,0x4a,0xb8,0x54,0xa3,0x4f,0x57,0x6a,0x4a, + 0xf6,0x1a,0x53,0xf2,0x45,0xec,0xf1,0x94,0xa4,0x62,0x2e,0xbe,0xa8,0x29,0xb9,0x00,0x65,0x96,0xd2,0x9b, + 0xb8,0xe4,0x8f,0xbe,0x80,0xce,0xd6,0x36,0xe3,0x1a,0x57,0xa6,0x3e,0x3a,0xf3,0xde,0x9a,0xb8,0xd2,0xa5, + 0x1b,0x5c,0x59,0xdd,0x8e,0x2b,0x55,0xe4,0x57,0x75,0x7f,0x8c,0x45,0x8d,0x86,0x81,0x52,0x6a,0xd6,0x5d, + 0x6e,0xd8,0x20,0x69,0xe3,0x6f,0x52,0x31,0xce,0x9c,0x27,0x2a,0xc2,0x0b,0x21,0x49,0xc8,0x5b,0x52,0x83, + 0xd5,0x96,0xe6,0xd5,0x20,0xbf,0xa9,0x49,0xf0,0x71,0xdf,0x39,0x25,0x2a,0xfc,0xf5,0x02,0x59,0x84,0x21, + 0x75,0x21,0xc2,0x8a,0x95,0xc2,0x5e,0x2a,0xe3,0xcc,0xd6,0x6e,0x71,0xd7,0x35,0x25,0xb1,0x53,0xb6,0x2a, + 0x31,0xc6,0xab,0x41,0x65,0x97,0x6a,0x9b,0xaf,0xd4,0x36,0xbf,0xc2,0x36,0xbf,0x88,0x08,0x23,0x02,0x21, + 0x10,0xcb,0x3b,0x56,0x75,0xc5,0xe3,0x88,0xb1,0xa2,0x19,0x5a,0x73,0xeb,0xfb,0x20,0x02,0x11,0x52,0x07, + 0xc0,0xf0,0x1a,0x74,0xa4,0x5b,0x18,0xe2,0xd0,0x5d,0x97,0x0a,0x87,0x38,0x00,0x99,0x46,0x0d,0x08,0x19, + 0x85,0x97,0x8c,0x43,0x18,0x72,0xa8,0xce,0x33,0xb6,0x03,0x09,0xb1,0x21,0x16,0xbd,0xde,0x02,0x6f,0xc2, + 0xeb,0xa4,0xc6,0x24,0xd7,0xa3,0x6b,0xda,0xae,0x71,0x11,0xfa,0x04,0xc1,0x6b,0xef,0x44,0xde,0x8e,0x29, + 0x45,0xb3,0xa1,0xee,0x3c,0xf4,0xd5,0xc9,0x9f,0x11,0x67,0x96,0x59,0x09,0x17,0xb4,0x58,0x87,0xc5,0x86, + 0x95,0x30,0xc2,0x1b,0x7b,0x61,0x9f,0x46,0x54,0x7c,0x2b,0x7c,0x4d,0x79,0x7c,0x70,0x12,0x23,0x78,0x8d, + 0xbd,0x65,0x0f,0x7e,0x2d,0x9a,0x7e,0xfa,0xde,0x53,0xe1,0xbd,0xd0,0xf4,0xca,0x2e,0xf4,0xf2,0xd2,0xc7, + 0x00,0xef,0x98,0x9d,0x73,0x3e,0x20,0x96,0xf4,0x7e,0x63,0x9e,0x84,0xb3,0x84,0xeb,0xa6,0x6f,0x6d,0xc9, + 0x8d,0x38,0xf0,0xaa,0x7a,0xd3,0xa2,0xe2,0xa5,0x27,0x19,0x5b,0xac,0xe6,0x75,0xb6,0x9c,0x4b,0x45,0xaf, + 0xaf,0xd7,0xed,0x91,0x79,0xf1,0xce,0xd8,0x08,0x10,0x7e,0x58,0xd6,0x87,0xa6,0xed,0x86,0x05,0x53,0x30, + 0x97,0x8b,0x6b,0x33,0xb2,0xa8,0x48,0xc6,0xc4,0xfe,0x3d,0x86,0x91,0x0f,0xf8,0x5d,0x81,0xeb,0x97,0xe6, + 0x7c,0x19,0x3a,0x84,0xf4,0x0c,0x3e,0x26,0x21,0xf1,0xc2,0x78,0x5d,0x87,0xfc,0x89,0x17,0xf5,0x17,0x5c, + 0x17,0xe8,0x2a,0x5d,0x98,0x35,0x53,0xea,0x1c,0x6b,0xa7,0x26,0x15,0xec,0x74,0x99,0x9b,0x6a,0xa6,0xef, + 0x37,0x2e,0x7d,0x7c,0x26,0x9b,0x57,0xac,0xb4,0x6f,0xbe,0xb3,0x59,0xbb,0xd7,0xa1,0xb2,0x97,0xf5,0x5c, + 0x42,0x7c,0x28,0x53,0xa2,0x52,0x8e,0xce,0x86,0x0b,0x06,0x94,0x9e,0x4f,0x8b,0x1f,0x3d,0xaf,0x0e,0xa9, + 0xbc,0x9b,0x15,0xcf,0xe2,0x64,0xa6,0xb0,0x31,0x73,0xee,0x1c,0xb7,0x14,0xe2,0x41,0x6e,0x7f,0x79,0x28, + 0x5e,0x4a,0x9b,0x21,0xb4,0x20,0xdf,0xa7,0x37,0x5f,0x36,0x98,0xce,0xb6,0x03,0xc3,0x05,0xbb,0x2f,0x40, + 0xea,0xac,0xf4,0xe0,0x81,0xe2,0x33,0xb3,0x5a,0xe5,0x48,0x41,0x98,0x94,0x23,0x1e,0x0d,0xa6,0x59,0xc5, + 0xa6,0xc7,0x2a,0xc3,0x57,0x5f,0xbc,0xf5,0x66,0x62,0xf7,0x16,0x3f,0x06,0x25,0xa9,0xaa,0xdb,0xc8,0x77, + 0x54,0xc7,0x6f,0xd9,0x35,0xe6,0x36,0x99,0x99,0xe7,0x51,0xe1,0x49,0x45,0x99,0x0c,0xd8,0xb2,0x7b,0x35, + 0xab,0x88,0x33,0xbe,0x61,0xf1,0x6a,0xfc,0xd0,0x47,0x54,0xc7,0x6f,0x70,0xec,0xb2,0xde,0x85,0xbe,0x90, + 0xf3,0x17,0xaf,0x01,0xbe,0x75,0xd2,0xc5,0x38,0x6d,0x86,0x3f,0xca,0xdd,0x35,0x13,0x11,0x42,0x1f,0x71, + 0x7c,0x60,0x7d,0x7b,0x09,0x6d,0x7e,0x85,0x0a,0x0d,0x3f,0xd9,0x72,0xcc,0xcb,0xe8,0x8b,0x31,0x2e,0xf4, + 0x38,0x61,0xd7,0xbc,0x8e,0x48,0xb4,0x1f,0x9c,0x24,0xe9,0xee,0xa7,0xe9,0xfe,0x17,0x29,0x97,0xfb,0xe9, + 0x9c,0x0e,0x8b,0x3d,0x7d,0x57,0x20,0xd3,0x37,0xce,0xa3,0x3a,0x0c,0x5c,0x91,0x40,0xdc,0x70,0xd7,0x62, + 0xb9,0x35,0x3b,0xae,0xcf,0x3e,0x10,0x7f,0xd4,0xc0,0xc6,0x24,0x11,0x2b,0x07,0x4e,0xf9,0xf2,0x49,0xf7, + 0xca,0xa6,0x94,0xfc,0xae,0x4f,0x53,0x9b,0x6f,0x4f,0x57,0xcf,0x22,0x5c,0x57,0xa7,0xc4,0xad,0xf2,0xf2, + 0x4d,0x81,0x60,0x42,0x28,0x4d,0xc0,0xf9,0x88,0x08,0x63,0x8e,0xea,0x31,0xcf,0xe8,0xd3,0xb7,0xb8,0x7a, + 0xdd,0x8f,0x33,0xef,0x2f,0xaf,0xaa,0x80,0x40,0x5c,0x58,0xdf,0x19,0x55,0x9b,0xbe,0x8e,0x62,0x56,0xef, + 0xe7,0xfc,0xc3,0xf7,0x9e,0xd5,0xc5,0x92,0x5e,0xe9,0x2f,0x30,0x58,0xb9,0x5e,0x67,0xb6,0x0b,0x18,0xc2, + 0xd4,0x28,0x19,0x0b,0xdd,0x15,0x16,0x0c,0x0f,0x0b,0x77,0x37,0x3c,0x11,0x99,0xbf,0xc8,0xd3,0x2f,0x59, + 0x6d,0xf9,0xcf,0x24,0xe0,0x4c,0x84,0xc1,0x0b,0x83,0x7e,0xd9,0x0f,0x96,0x57,0x82,0x75,0xfb,0xcb,0xab, + 0x28,0x10,0x85,0x07,0xc0,0x86,0x17,0x4f,0x82,0x83,0xca,0x57,0xcc,0xff,0x6e,0x11,0xae,0x56,0x22,0x33, + 0xef,0x7b,0xc8,0xfe,0xfa,0xb5,0xb0,0x06,0x10,0xb1,0x14,0xc6,0x64,0xa1,0x71,0xe3,0x6d,0xfb,0xfe,0x53, + 0xe1,0x54,0xf9,0xf6,0x1a,0x0e,0x1d,0xd8,0x58,0x3b,0x26,0xe2,0x51,0x85,0x02,0x71,0x6e,0x54,0x32,0x12, + 0x0a,0x18,0x89,0xe9,0xb6,0x21,0x02,0x8e,0xfd,0x7b,0x62,0x9e,0x37,0xc5,0x1b,0xc6,0x5a,0x71,0x18,0x56, + 0x49,0x2e,0x81,0xc9,0x05,0x41,0xd7,0x75,0xa0,0xf5,0x17,0xf0,0xeb,0xa9,0x3c,0xd3,0xa4,0x5a,0x79,0xf8, + 0xec,0xfa,0xd6,0x47,0xda,0xde,0x20,0xc4,0x1d,0x7e,0x61,0x86,0x0a,0x4a,0x39,0x53,0x15,0x64,0x70,0x40, + 0x4a,0x0a,0x91,0x59,0x47,0xa4,0x5b,0x9c,0xb4,0xb3,0xa1,0x54,0x21,0x34,0xed,0x05,0x2e,0x12,0x52,0x51, + 0xe7,0xe7,0x03,0xf1,0xaa,0x0e,0x90,0x69,0x63,0x30,0xb3,0x2f,0x7b,0x53,0xe5,0x19,0x20,0xba,0x84,0x35, + 0x32,0x86,0xa9,0x34,0xbd,0x43,0x1b,0x95,0xb0,0x19,0x4d,0x80,0xa9,0x0b,0x3c,0x99,0xb1,0x6c,0x46,0xcc, + 0xe6,0xaf,0x60,0x8e,0xa4,0xec,0x6a,0x38,0x92,0x40,0xc0,0xf7,0xca,0x51,0x35,0x1c,0xc6,0x0a,0xc1,0xa9, + 0x75,0x26,0x25,0xed,0xeb,0x12,0x44,0x03,0xd8,0x6f,0xfc,0x64,0x75,0x4c,0xb9,0x6f,0x4d,0x04,0xe1,0xdc, + 0x16,0x05,0xf6,0xb5,0xa5,0xde,0x2b,0xc9,0xd6,0x9d,0x20,0xb8,0xc3,0x56,0xdc,0x77,0x6c,0x10,0xd0,0x3b, + 0xb4,0x9e,0xdb,0x3d,0x05,0x9a,0xb5,0xb5,0xaf,0xd7,0x6c,0x79,0xa6,0x6a,0x15,0x7c,0xe3,0x30,0x64,0x54, + 0x1c,0x4c,0x93,0xbd,0x3f,0x83,0xac,0x52,0x5d,0xca,0x1d,0xaa,0x48,0x10,0x6f,0x52,0x99,0x0b,0x49,0xc5, + 0x95,0xcd,0xb3,0x5c,0xee,0xdb,0x96,0x54,0x71,0x95,0xfa,0x5e,0x27,0xc2,0x70,0xd1,0x45,0x0f,0x4c,0x0e, + 0x86,0x93,0x07,0x63,0x1b,0xf9,0x60,0xc2,0x77,0x30,0x8d,0x8b,0xe3,0xc9,0x09,0xc3,0x19,0x75,0x71,0xd8, + 0x88,0xf4,0xa1,0x5d,0x9d,0xdb,0x76,0xb2,0x08,0xf8,0x20,0xa6,0xe2,0xdc,0xb7,0x15,0xe2,0x46,0x24,0x6d, + 0x85,0x3c,0x39,0xb7,0x0e,0xfc,0x0f,0x72,0xe3,0xc4,0x5f,0x26,0x59,0x72,0x8e,0x18,0xc9,0x7c,0x6b,0x42, + 0xa1,0x9e,0x15,0x91,0xf3,0xaa,0xd0,0x42,0x24,0x2d,0x8b,0x3f,0x4f,0xab,0x47,0x19,0xa3,0xa2,0x0a,0x8c, + 0x42,0x98,0x26,0x5b,0x5d,0x4a,0x4a,0x7d,0xd3,0xce,0x47,0x15,0x4c,0xc6,0x0f,0x21,0xef,0x6e,0x9e,0x68, + 0x0b,0xea,0x39,0xa2,0xa2,0x91,0xfb,0x1c,0x46,0xb8,0xf7,0x1a,0x16,0x0b,0xb8,0xdc,0x2a,0xd2,0xd7,0x2c, + 0x18,0x71,0xf8,0xc7,0x02,0x7a,0x97,0x48,0x7c,0x70,0x7d,0xf3,0xb3,0x3f,0x70,0x36,0x0d,0xe3,0x07,0x68, + 0x5d,0x89,0xe8,0xa2,0x73,0x5e,0x45,0xf8,0x04,0x1a,0x67,0x9b,0x67,0xea,0xb9,0x56,0x19,0xd7,0x8b,0x79, + 0xa0,0x02,0x8a,0x8d,0x11,0x0b,0x53,0x35,0xe5,0xa9,0x93,0x99,0x72,0x9e,0xd0,0xb4,0xcc,0x39,0x47,0x15, + 0x02,0x15,0x76,0x9d,0x4f,0xe8,0xac,0x64,0xe8,0xb3,0x11,0x22,0x39,0x57,0x14,0x60,0x53,0x83,0x3d,0x36, + 0x80,0x0b,0xd8,0xa8,0x1a,0x1a,0x76,0x07,0x29,0xbd,0xde,0x5e,0x61,0x2f,0x8e,0x35,0x18,0x4c,0xb1,0x40, + 0x44,0x0a,0xb3,0x05,0x25,0x82,0x57,0xc5,0x3f,0x9b,0x27,0x4b,0xd5,0x3d,0xed,0x1e,0xf0,0x53,0x35,0x60, + 0xee,0x8c,0x0a,0xc8,0xb6,0xeb,0x5f,0x73,0x78,0x91,0x34,0x66,0xef,0x95,0x9a,0x3d,0xbd,0x46,0xbf,0xd0, + 0x0c,0x2d,0x12,0x30,0x8e,0xc7,0x87,0x27,0xc3,0x85,0x9e,0x69,0x2b,0x7d,0x0b,0x17,0x1a,0x5c,0xfa,0x87, + 0x18,0xc9,0x2a,0x29,0x89,0x5f,0xcb,0x20,0xff,0x24,0xfe,0x6c,0x01,0x89,0x95,0x40,0x2c,0x8d,0x3a,0x6a, + 0x38,0xc4,0x85,0x13,0xef,0x75,0xcb,0x52,0x73,0x25,0xb4,0x03,0x52,0x3c,0xd7,0x26,0x96,0x33,0x58,0x98, + 0xc4,0x4b,0x61,0xad,0x01,0x63,0x04,0x17,0x9f,0x38,0x13,0x3e,0x9e,0x00,0x3d,0x1f,0x2d,0x9b,0xba,0x82, + 0xef,0xaf,0xf1,0x67,0x37,0x58,0x40,0xb4,0x8c,0x55,0x2d,0xbf,0x3a,0xd5,0xbd,0x9e,0x9e,0x6b,0xed,0xda, + 0xb1,0x69,0x70,0x35,0x3f,0xb9,0x33,0x95,0x81,0x38,0x31,0x06,0x82,0x04,0xb9,0x41,0xd4,0x65,0x35,0xa6, + 0x52,0xa4,0x9e,0xd8,0x97,0x3a,0x92,0x92,0xe1,0x1a,0x58,0x95,0x4a,0xdf,0x26,0xf9,0xf1,0xbd,0x13,0xad, + 0xc5,0x31,0x74,0x0f,0x4d,0xbd,0x4e,0xb1,0xab,0xf4,0xc8,0x00,0x71,0xa6,0xeb,0x7b,0xeb,0xa2,0xe7,0x16, + 0x23,0x84,0x47,0x9a,0x67,0x69,0x95,0x64,0xf6,0x83,0xb7,0xea,0x83,0x72,0x90,0x11,0x65,0x91,0x12,0x05, + 0x77,0x98,0x14,0xae,0x5e,0x51,0x50,0xab,0x6c,0x07,0x61,0xb2,0xef,0x25,0x85,0xeb,0x08,0xe2,0x96,0x98, + 0x1a,0x45,0xc9,0x17,0xca,0xe5,0x1c,0x04,0xa0,0xe9,0xad,0xf1,0x83,0x55,0x8c,0x64,0xb3,0xa3,0x82,0xb0, + 0x00,0x53,0x47,0xcc,0x29,0xf8,0x09,0x1c,0xb6,0xb4,0x99,0x64,0xb4,0x2d,0x9e,0xdd,0xb2,0x2f,0xfa,0xfd, + 0x5d,0x36,0x57,0x89,0x4f,0x43,0x13,0x19,0xbe,0x36,0x22,0x43,0xcf,0x82,0xb9,0xcd,0x92,0x8d,0x02,0x13, + 0x44,0x29,0xbe,0x09,0xe2,0xa0,0xc0,0x8f,0x8b,0xa4,0xa0,0x6f,0xa9,0xeb,0x27,0xb0,0xb3,0xcb,0xfa,0x77, + 0x82,0xf8,0x4e,0xff,0x37,0x28,0x0d,0xd8,0x4f,0x1b,0x56,0xd6,0xee,0x1e,0x66,0x4f,0xf0,0xcc,0xf6,0x82, + 0xce,0xb4,0xd9,0xd1,0x96,0xf6,0x66,0xcf,0xc0,0xe3,0x1e,0x37,0xc1,0x76,0xd0,0x67,0x7b,0x45,0x58,0x70, + 0x1c,0xf4,0xdb,0x22,0x72,0x3b,0x7a,0x5d,0xb3,0x75,0xb4,0x13,0xd0,0x0f,0x9e,0x04,0xfa,0x84,0xfb,0x77, + 0x61,0x48,0x57,0xe5,0x9d,0x45,0xe4,0xcc,0xaf,0xad,0x24,0x06,0x50,0x67,0x4b,0x6b,0x6c,0x0d,0x02,0x22, + 0xb7,0xf0,0x27,0x35,0x8e,0xa1,0x2c,0xc8,0xe1,0x90,0x8e,0x5e,0x61,0xa0,0x75,0x5c,0x33,0x1a,0x15,0xfd, + 0x84,0x1f,0xc4,0x6f,0x05,0xeb,0xae,0x53,0x63,0x63,0xeb,0x82,0x4c,0xcb,0xab,0x54,0x85,0x1f,0xa9,0x4c, + 0x10,0x6d,0xaf,0xa6,0x21,0x55,0xf0,0x73,0x11,0x1e,0x07,0x93,0xba,0x9c,0xd3,0x20,0xd8,0x58,0x97,0x7e, + 0xd3,0x39,0xfe,0x2e,0x64,0x9d,0x06,0x27,0xb7,0x9b,0x92,0xef,0x4e,0x8e,0x6b,0xd8,0x9a,0x77,0x5b,0xa2, + 0x6b,0x74,0x3a,0x08,0xfa,0x75,0x3f,0x78,0x4e,0x54,0x95,0x9d,0xac,0xf5,0x1a,0x1c,0x9b,0x32,0x0a,0xb1, + 0x1d,0x36,0xfe,0xbb,0xd6,0x7e,0x27,0xcc,0xfa,0x84,0xd5,0x61,0x6b,0x71,0xe7,0x74,0x55,0xd7,0x45,0x7e, + 0x07,0xd3,0xa0,0x2a,0x85,0x9f,0x7e,0x3f,0xe5,0x86,0x7f,0x96,0xa6,0x5a,0x4a,0xa3,0x45,0xb0,0x0a,0x38, + 0x3a,0xd8,0x87,0xd8,0x8e,0xaa,0xa6,0xc2,0x8b,0x59,0x19,0xea,0x4a,0x6e,0x40,0xe3,0x86,0xf9,0x48,0xaf, + 0x49,0x3f,0x30,0x19,0x41,0x5c,0x8e,0xd8,0x6a,0xd5,0x64,0x44,0x2e,0xc7,0x2c,0x20,0x43,0x9a,0x69,0x8b, + 0xc8,0x22,0x53,0x4b,0xdc,0xd5,0x8c,0xad,0xc8,0x87,0xce,0x9f,0x3d,0x16,0x80,0x63,0xdc,0x3c,0xe3,0xeb, + 0x5b,0x0e,0x0f,0x22,0x3f,0x9e,0xbd,0x99,0x46,0x1d,0x3a,0x9a,0x88,0x43,0xaa,0x4e,0xc3,0x19,0xad,0xba, + 0x0d,0x33,0x1c,0x8c,0xbf,0x84,0xcd,0xa2,0x44,0xc2,0xb7,0x10,0x6f,0xcd,0x1b,0xa7,0x9d,0x9a,0x23,0xd5, + 0x7d,0xea,0x5b,0x65,0xd6,0x0d,0xf3,0x25,0xc4,0xca,0xc9,0x71,0x3b,0xaf,0xb1,0x14,0x55,0x31,0xda,0xe2, + 0x00,0x86,0x7e,0x1c,0x80,0xd5,0xee,0x0f,0xe8,0xd2,0x47,0x52,0x59,0x27,0xc5,0x77,0xc6,0x13,0x1d,0x32, + 0xe0,0x0e,0x4f,0x9b,0x68,0xc5,0x35,0x8e,0xf3,0x76,0xa4,0x63,0x0f,0x81,0xc9,0xdc,0xc5,0xcb,0x37,0xc5, + 0x8a,0x42,0xdd,0xac,0xa2,0x5e,0xdf,0x94,0xc5,0x44,0x56,0x95,0x9c,0xda,0xa5,0xcf,0xad,0x71,0x77,0xad, + 0x0d,0xf7,0x77,0xd5,0xc3,0x56,0xd1,0xd2,0x2f,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x76,0x9d,0x44,0x43,0x12, + 0xd2,0xe2,0x9b,0x3e,0x66,0x88,0x54,0x89,0xd0,0x7e,0xc0,0xbe,0xec,0xdc,0x65,0x11,0xf8,0x08,0xf3,0xeb, + 0xbd,0xc7,0xb4,0x97,0x2b,0xaf,0xc0,0xbd,0x56,0x81,0x7b,0x28,0x90,0x37,0x5a,0x64,0x4a,0x67,0x3c,0x0f, + 0xb5,0x75,0xb5,0x23,0xf2,0x61,0x0e,0x9d,0xb2,0x07,0x8a,0x9b,0x65,0xc9,0x21,0xdc,0x30,0xab,0x91,0x46, + 0x3e,0xb7,0xd1,0x96,0x42,0x07,0x48,0x53,0x43,0xcd,0x66,0x3c,0xd2,0x6c,0xb6,0x35,0xd0,0xc2,0xcd,0x88, + 0xa3,0xb9,0x77,0x5b,0x34,0xb7,0xa2,0xd5,0xbb,0x98,0x0e,0x63,0xc0,0x4a,0xd3,0x35,0xa5,0xe9,0x3a,0x4f, + 0x96,0x96,0x0b,0x59,0xaf,0x3d,0x92,0x1e,0x52,0xdf,0x3c,0x5c,0x42,0xaa,0x4e,0xec,0xe7,0x18,0x76,0xc2, + 0xe7,0xfd,0xf0,0x82,0xa7,0xe7,0x82,0x63,0xc4,0x9d,0xd1,0xa7,0x3a,0xaa,0x78,0x40,0x5b,0x48,0xbf,0xdc, + 0xe6,0xf6,0x32,0xce,0xb5,0x69,0x03,0xcd,0x45,0x0c,0xa7,0x62,0x25,0x8b,0x6a,0xe0,0x67,0x82,0xbc,0x6b, + 0x53,0x29,0x8c,0xe6,0xb5,0xeb,0x40,0x70,0x22,0x76,0xcf,0x68,0x3a,0xae,0xd9,0x37,0x2b,0x5c,0x10,0xda, + 0x61,0xb6,0x20,0x60,0xc1,0xac,0x7a,0x0f,0xfa,0x67,0x91,0xb8,0x56,0x6f,0xe1,0x19,0x8c,0x82,0x4c,0x19, + 0xde,0x51,0xd7,0x34,0x0a,0xd8,0x33,0xf3,0x12,0x8c,0xd5,0x14,0xbb,0xb0,0xa9,0x13,0x3f,0xda,0x05,0x11, + 0x64,0x35,0x11,0x64,0x90,0x9d,0xaf,0x5a,0xbc,0xc5,0x08,0x35,0xc6,0x34,0x2d,0x58,0x36,0x48,0xa1,0xc6, + 0x34,0x33,0xb4,0x75,0xfa,0x13,0x6e,0x24,0xe5,0x8c,0xa8,0x1f,0xce,0x78,0x96,0x66,0x31,0x1b,0xa5,0x50, + 0xa3,0x96,0x6c,0x3c,0x4d,0x34,0xaf,0x3a,0xd2,0xf1,0xc1,0x52,0xb5,0x98,0x08,0x08,0x7a,0x5b,0x5b,0x38, + 0x94,0xc1,0xd3,0xa8,0xb6,0xee,0x60,0xea,0x68,0x1d,0xfb,0x01,0x3d,0x85,0xa7,0xdc,0xd0,0x29,0x37,0x14, + 0x5e,0xf2,0xcb,0xa5,0x69,0xd5,0x5e,0x98,0x74,0x45,0x4c,0xd0,0xd5,0x03,0xe9,0xe4,0x0b,0x56,0x48,0x7a, + 0x45,0xac,0xca,0x38,0xf1,0x73,0x8e,0xaf,0xc0,0x18,0x8d,0x2d,0xb6,0x1f,0xdb,0x38,0x96,0xb9,0x66,0x98, + 0x02,0xd5,0x73,0x0f,0x07,0xe5,0xed,0xbb,0x6c,0x5a,0xbb,0x1e,0xfb,0x45,0xb6,0x11,0x88,0x3a,0x56,0x3a, + 0x11,0x93,0x46,0x28,0x00,0x07,0x04,0x4b,0x5f,0xd0,0xfc,0x86,0xdb,0xdf,0x9b,0xb8,0x74,0x51,0xdf,0xa2, + 0x1d,0x15,0x4b,0x24,0x10,0xca,0x5b,0xd9,0x4e,0x83,0x75,0x0e,0xf1,0x11,0x55,0x03,0xd9,0xa8,0xf0,0xe4, + 0x7f,0x69,0xcb,0x35,0xda,0xf2,0x3d,0x5d,0x83,0x80,0x65,0x22,0x5a,0x31,0x5b,0x0e,0xb5,0xbd,0x2c,0xc4, + 0x04,0x37,0x79,0xc2,0x31,0x48,0x8c,0x9b,0x88,0x75,0x56,0xb5,0xc7,0xd3,0x28,0x18,0x17,0xa1,0x37,0x72, + 0x81,0x13,0x09,0x5d,0x7c,0x36,0xed,0xf7,0xf9,0x35,0x67,0xbf,0x36,0x5d,0x60,0xd3,0xc4,0xa3,0x9e,0xfb, + 0xc5,0x76,0x60,0xea,0xc6,0x80,0x30,0x50,0xcf,0x32,0xdd,0x9a,0xcc,0x7b,0xaa,0x3b,0xb7,0x63,0xcb,0x51, + 0xa9,0x8e,0x07,0x35,0x5b,0xa3,0x52,0x9f,0x16,0xfa,0xd4,0xe0,0xab,0x40,0x8c,0x55,0x83,0xbd,0x26,0x98, + 0x00,0x64,0x4c,0x04,0x66,0xa0,0x8d,0x01,0xa4,0x89,0xeb,0xe7,0xc8,0x07,0x79,0xb5,0xe4,0xb3,0x3b,0x55, + 0x5e,0x07,0xd1,0x88,0xd0,0x26,0xf1,0x91,0xa7,0xf3,0x62,0xf2,0x45,0xe3,0x06,0xdb,0x31,0x5a,0x44,0x2f, + 0x73,0xd3,0xa2,0x89,0x2d,0x35,0xdb,0xbe,0xc2,0x25,0x6d,0x87,0x08,0x49,0x08,0x41,0xd1,0x89,0xd0,0x65, + 0xf2,0x5b,0x6f,0x5d,0x22,0xad,0x6f,0x1d,0xd1,0x48,0x3a,0xf1,0xe2,0x30,0xc4,0xc7,0x01,0xc7,0x06,0x1e, + 0xaa,0x6b,0x40,0x3a,0xaf,0x95,0xba,0x29,0x4c,0x14,0x7a,0x2d,0xe6,0x5b,0x35,0xee,0xa9,0x3e,0x2e,0x94, + 0x80,0x6c,0xb8,0x02,0xf7,0x9c,0xec,0xee,0xae,0x10,0x4f,0x9a,0xf6,0xc7,0x65,0x5a,0xe2,0x6a,0x8d,0x94, + 0x43,0x59,0xd2,0x32,0x55,0x44,0x59,0x2b,0xde,0x8e,0xe8,0x6b,0xf5,0x11,0x11,0xd9,0x96,0xcd,0xe3,0x44, + 0xfd,0x02,0xc7,0x96,0x7e,0x58,0x28,0x8c,0x4a,0xf0,0xaf,0xc8,0x1c,0x1c,0x47,0x96,0x3c,0xf2,0x3d,0x7b, + 0xb6,0xe8,0x0b,0x5d,0x2c,0x52,0x68,0xa4,0x18,0xd0,0xd9,0x31,0xba,0xc3,0xec,0x23,0xb7,0x42,0x0f,0x68, + 0xc1,0xe4,0x5a,0xda,0x94,0x5a,0x72,0xcc,0x65,0x47,0xa5,0x8e,0x1c,0x56,0x7b,0x71,0x43,0x38,0xde,0x40, + 0xee,0x64,0x54,0x35,0xb9,0x82,0x13,0x1b,0x15,0x49,0x45,0xf5,0x18,0x1a,0xb2,0x10,0xd0,0x1f,0x09,0x2d, + 0xd9,0x63,0x92,0x13,0xce,0x2e,0xc0,0x82,0xca,0x53,0x25,0x50,0xae,0xf5,0x33,0x9d,0x49,0x4f,0x9c,0x49, + 0xbf,0x5e,0x26,0xef,0x56,0x57,0x82,0x5f,0x63,0xa0,0x09,0x55,0x62,0xc9,0xde,0x85,0xc8,0xa4,0x27,0x2f, + 0xdd,0x63,0x80,0x91,0x7b,0x07,0xc2,0x52,0xf6,0x2a,0x02,0x02,0xa6,0xc5,0xb8,0xe3,0x24,0x4d,0x29,0x21, + 0xd9,0xf4,0x81,0xd2,0x9e,0xfd,0x20,0xf3,0xa7,0xde,0xdd,0xdf,0x90,0x07,0xf5,0x13,0x3f,0xeb,0x38,0x3d, + 0x81,0xe9,0x0f,0xa3,0x13,0x7d,0x82,0x72,0xeb,0xfc,0x4c,0x5c,0x56,0x7f,0x95,0x9b,0x1c,0x3d,0x6f,0x42, + 0xfb,0x7b,0xea,0x82,0xc6,0xe8,0xdf,0x96,0x55,0xf1,0x7a,0x6d,0x59,0xe5,0x28,0xa8,0x0a,0x83,0xaf,0xd3, + 0x09,0x62,0xf7,0xd0,0x40,0x9a,0x99,0x1c,0xdf,0xe7,0xd0,0x2b,0xef,0x27,0x0b,0xc6,0xdf,0x8d,0xaf,0x1c, + 0x89,0xa1,0xc8,0x3c,0x23,0xe5,0xd3,0xdd,0xe3,0x7b,0x5a,0x82,0xbe,0x5f,0xce,0x7e,0xe9,0xc2,0x9f,0xaa, + 0xc2,0x10,0xfe,0xf9,0xa9,0x4c,0xc4,0x05,0x5e,0x42,0x3c,0x5e,0x11,0xff,0xd3,0x08,0xa6,0x92,0xdf,0xc6, + 0xd2,0xec,0xb4,0x91,0x9b,0xbb,0xb7,0x40,0x13,0x8f,0x4d,0x52,0x6e,0x14,0x66,0xec,0xba,0x53,0xd2,0x3e, + 0x87,0x84,0x98,0x8d,0x5d,0x69,0x8b,0x17,0x9a,0x74,0x84,0xdd,0x77,0x93,0x74,0x2c,0x9a,0xa4,0xe3,0xdc, + 0x2b,0x70,0xaf,0x55,0x80,0x49,0xc7,0xe2,0x36,0xd2,0xb1,0x6a,0x91,0x8e,0x93,0xfe,0xaa,0x3f,0x6f,0x90, + 0x8e,0x3a,0x34,0xae,0xa2,0x1d,0x69,0x0f,0xdd,0x28,0xc0,0xa7,0xed,0x2c,0x66,0x79,0xec,0x7d,0xaa,0x1d, + 0x20,0x72,0xb7,0x0e,0x51,0xa3,0xa2,0xb0,0x21,0x9b,0x65,0x33,0x94,0x11,0x51,0xb8,0x33,0xfe,0xd3,0x0f, + 0x08,0x01,0x87,0x95,0x22,0x53,0x1b,0x17,0x38,0x03,0x19,0xbb,0xb7,0xb8,0xab,0x48,0xac,0xc9,0x5b,0xf4, + 0x71,0xa3,0x70,0x7e,0x83,0xb6,0xc5,0x5e,0xc6,0xb5,0x29,0xc0,0xce,0x4d,0x4e,0x9c,0x4e,0xf6,0x08,0xf0, + 0xa0,0xc3,0x8d,0x33,0xd8,0xf0,0x73,0x6c,0x9c,0x12,0xfb,0xb5,0x1f,0x50,0x9c,0x06,0xed,0xfc,0x10,0x6d, + 0x96,0x49,0xea,0x07,0x4d,0x04,0x67,0xa3,0x97,0xdb,0x44,0xbb,0x35,0x9a,0x54,0xd6,0x56,0xf4,0x0a,0xe9, + 0x7b,0x6b,0xd8,0xd0,0x9d,0x07,0x1c,0x43,0xe7,0x50,0x05,0xee,0x63,0x2b,0x35,0xed,0x3a,0x9a,0x73,0xd8, + 0x9c,0xc2,0x44,0x07,0xd4,0x9c,0x5e,0xb3,0x8d,0xd8,0xb0,0x61,0x9e,0x60,0x83,0x58,0x07,0x1d,0x40,0x1b, + 0x1d,0x6b,0xb3,0x5b,0xc7,0xc8,0x6e,0x13,0x3c,0xb7,0x30,0xf1,0x8d,0x4a,0x6b,0x66,0x60,0x9b,0x33,0x0d, + 0xff,0x4c,0xc2,0xb2,0x92,0x63,0x17,0x62,0x9e,0xd9,0x05,0xde,0x62,0xe2,0xcc,0x93,0x77,0xdd,0x15,0x7b, + 0x77,0x45,0xa0,0x29,0xf1,0x7a,0x70,0x59,0xa6,0x4b,0x75,0xb5,0x3d,0x14,0x27,0xf6,0x15,0x9e,0x2a,0x3a, + 0xd7,0x2a,0x15,0xbd,0x22,0x36,0x8d,0xcb,0x79,0xf7,0x34,0x55,0x96,0x38,0xf1,0x23,0x15,0x99,0x39,0x56, + 0xb1,0xbb,0xfd,0x28,0x56,0x69,0x52,0x78,0x13,0x5f,0x78,0x7e,0x43,0xbc,0x95,0x1b,0xcc,0x4f,0xaa,0x6c, + 0xab,0x14,0xaf,0x63,0xde,0x8d,0xeb,0x68,0xb9,0x5e,0xcb,0x3c,0x0a,0x53,0x21,0x8d,0xdd,0x4d,0xde,0x8a, + 0xba,0xdd,0xbc,0x60,0x7e,0xeb,0x6a,0x1c,0x1b,0xc8,0xb1,0xb4,0xdd,0xc9,0x34,0x1c,0xd0,0xeb,0x04,0x17, + 0x2e,0x21,0xf0,0x93,0x4f,0x9b,0xc0,0xb7,0xa2,0x49,0xab,0x14,0x0b,0xd9,0x85,0xb1,0x26,0x40,0xdf,0x9a, + 0xbe,0x89,0x40,0x2a,0xde,0xd3,0x64,0x22,0xbb,0x04,0xfd,0x8f,0xab,0x95,0x7e,0xad,0x6c,0x44,0x7b,0x18, + 0x79,0x57,0xad,0x85,0x05,0x5b,0x97,0x5e,0x9f,0xca,0x23,0xcb,0x05,0xc5,0x1c,0xd0,0xb6,0xed,0x18,0x65, + 0x0c,0x49,0x15,0x03,0x49,0x63,0x1e,0x69,0x22,0x34,0xbe,0x6f,0x93,0xa0,0x82,0xb5,0x61,0xf3,0x46,0xf0, + 0xb5,0x16,0xa0,0x02,0xb7,0x68,0x82,0x52,0x85,0x5f,0x66,0x97,0xe4,0x38,0x18,0x5f,0x80,0xb2,0xbf,0x07, + 0x4d,0x41,0x0e,0x69,0x37,0x57,0x9e,0x7b,0x7b,0x36,0x9e,0xe7,0x61,0x5b,0x14,0xa2,0x6a,0x88,0x22,0xcb, + 0xcc,0x11,0x38,0x19,0x15,0x08,0x04,0x82,0xc5,0x6d,0x27,0xc3,0xa4,0x53,0x1e,0x48,0x98,0x8f,0xb1,0x76, + 0x05,0x12,0xc5,0x13,0x6a,0x4c,0xfc,0x4f,0xad,0xd6,0x8f,0x25,0x0f,0x84,0x00,0x3b,0x54,0x5d,0x4d,0x2e, + 0xdb,0x73,0x66,0x6d,0xa9,0x12,0x21,0x4d,0xf8,0xfa,0xd5,0xc6,0x52,0x89,0x54,0x4b,0x43,0xf2,0xc5,0x77, + 0xfa,0x73,0xc4,0xf5,0x33,0x52,0x2d,0x11,0xb8,0xbb,0xc6,0x3d,0x12,0xca,0xf3,0x86,0x6d,0x04,0x93,0x70, + 0x9b,0xfb,0xd3,0xea,0xde,0xc1,0xbd,0x7f,0xdd,0x3d,0x13,0xc1,0x27,0xf5,0x18,0x44,0xad,0xcc,0xef,0x5c, + 0xe6,0x77,0xfe,0xa5,0x99,0x33,0x0d,0x0b,0xf0,0x8d,0xf3,0x62,0xc9,0x3f,0x75,0xb3,0xec,0x2e,0x4f,0xb5, + 0x7d,0x53,0xda,0x09,0x59,0x96,0x50,0xf6,0x12,0x36,0x8e,0xe1,0x2d,0x7b,0xe6,0xdf,0xe4,0xe8,0xf5,0x33, + 0x7c,0x57,0x24,0xef,0x8a,0x3f,0x89,0x67,0x89,0xa8,0xb1,0x5a,0x87,0x94,0xd4,0xa3,0x3b,0x0f,0xd2,0x9d, + 0x73,0x28,0x70,0x83,0x4f,0x79,0x70,0xf7,0xfb,0x3b,0xf1,0x9d,0x07,0x54,0x8a,0xb0,0x86,0x7e,0x17,0xef, + 0x0a,0x57,0xde,0xf9,0xb8,0xf4,0xfe,0xcf,0xe1,0xc1,0x30,0x88,0xbe,0x3f,0x60,0x23,0xbe,0xa9,0xbd,0xd7, + 0x71,0x56,0x4a,0xf9,0x87,0x0c,0x11,0x92,0xf8,0xdc,0x26,0xba,0x40,0xdb,0xe6,0x6a,0x6c,0x71,0x91,0x27, + 0x2b,0x25,0x53,0x11,0x96,0x3c,0x0c,0x58,0x18,0xb0,0xe0,0x1c,0x3a,0xa4,0x05,0xf5,0x4a,0x70,0x09,0xa7, + 0x6e,0x15,0x50,0x6f,0x8a,0xb3,0x8e,0x9a,0xcf,0xd3,0xca,0xbb,0x0a,0x52,0x5c,0xe7,0xc9,0xdd,0xfd,0xf0, + 0xd3,0x65,0x44,0x6b,0x31,0xce,0x93,0xee,0x10,0x22,0x76,0xdd,0xae,0x73,0xd1,0xb9,0x5d,0x69,0x97,0x52, + 0x97,0x3f,0x2c,0x97,0xb0,0x4b,0x86,0xf7,0x34,0x42,0x95,0xc2,0xa0,0xf4,0xf4,0xd6,0x2a,0x75,0x48,0x98, + 0x83,0xa8,0xf9,0x61,0xdf,0xe9,0x0f,0xe9,0xf3,0x4b,0xea,0xdd,0xa7,0x47,0xe1,0xf1,0xc3,0xfd,0x7f,0x9f, + 0xa0,0x87,0x57,0x7f,0xda,0xc3,0xcb,0x5c,0x04,0xfb,0x7b,0x87,0x01,0xaa,0x7d,0x51,0x5c,0x9a,0x6a,0xa9, + 0xae,0xbd,0xbc,0xc1,0x90,0x39,0xdb,0x84,0xdd,0xc3,0x8d,0xf8,0xd2,0xd4,0x03,0xd9,0xd0,0x28,0xe2,0x88, + 0x58,0x6d,0x50,0xd2,0xfb,0x1c,0x8c,0xbc,0xdc,0x37,0x17,0x0c,0x06,0xe2,0x61,0x9e,0x1c,0x07,0xde,0x9a, + 0x38,0xc6,0x2d,0x30,0xd7,0x00,0x06,0x27,0xe2,0x1d,0x4a,0x29,0xeb,0xc6,0x23,0x86,0x31,0xca,0x54,0xc0, + 0x46,0x55,0xe8,0x0c,0x36,0x99,0x86,0x7c,0x5d,0x99,0x4e,0xdb,0xf4,0x0f,0x3a,0xa6,0xa3,0xbd,0x7f,0xd6, + 0x64,0x3c,0x56,0x21,0x7b,0xd1,0xa6,0x7a,0xe2,0x3c,0x77,0x6f,0x31,0xd2,0xfd,0x37,0x75,0xb5,0x8e,0xf2, + 0xe5,0x86,0x78,0xeb,0x7d,0x9e,0xdc,0x28,0x22,0xe2,0x25,0x6e,0xa2,0x27,0x50,0xa3,0x82,0x67,0x19,0x71, + 0x9c,0x5d,0xb7,0x8e,0x56,0xd9,0x1c,0x36,0x14,0x08,0xdb,0x54,0x16,0xd3,0x15,0x4f,0xd2,0xfb,0x6c,0x89, + 0x04,0x73,0x05,0x2e,0x67,0xca,0x12,0x32,0x1d,0x58,0x2f,0xe1,0x95,0xdb,0xfc,0x51,0xdd,0x8d,0xca,0xbe, + 0x11,0x02,0x24,0x7d,0x23,0x21,0x3b,0xcb,0x69,0x30,0x53,0xbd,0xeb,0x88,0x0e,0x39,0x11,0xe6,0x42,0xc4, + 0xce,0x8e,0x34,0x62,0xc2,0xc7,0x7b,0xb9,0x97,0x00,0x47,0x29,0x95,0xf2,0x21,0xff,0x92,0x17,0x97,0xb9, + 0xae,0x14,0x69,0xad,0x10,0xf3,0xf1,0x99,0xe8,0x8a,0x20,0x1f,0x7f,0xc9,0x85,0x77,0x31,0x21,0x3e,0x1c, + 0xcf,0xb3,0x99,0x9c,0x5c,0x4f,0xe6,0x12,0x77,0x31,0x57,0xf1,0xbb,0x7c,0x23,0x5e,0x13,0x44,0x1e,0xff, + 0xe7,0xd3,0xe5,0x60,0xef,0xe4,0xae,0xf8,0x9c,0x23,0x52,0x3f,0xef,0xad,0xf1,0x98,0xc8,0xb0,0x9b,0x8d, + 0x78,0x41,0x49,0x8e,0x60,0xb5,0xd7,0xda,0x29,0xbf,0x19,0xf1,0xa4,0x3b,0xf7,0x97,0x5f,0x9f,0xe4,0x17, + 0x59,0x59,0xe4,0xfa,0x8e,0xf0,0xdd,0x46,0x02,0x44,0x78,0xdc,0x53,0xf1,0x26,0x4f,0x9e,0xe4,0xbd,0x5e, + 0x77,0x6e,0x13,0xe0,0xc5,0xb3,0x3c,0x79,0x41,0x65,0xb5,0xc3,0x4e,0x9e,0x5e,0x64,0x67,0xe0,0x12,0x06, + 0x2b,0x9a,0xb0,0x87,0x67,0x7c,0x13,0x53,0xa3,0xfc,0xe3,0x3c,0x79,0x46,0xe5,0xef,0x2e,0xaa,0x4c,0xae, + 0x09,0xf7,0x4c,0xa9,0x88,0xb6,0xb8,0x7a,0x96,0x47,0xe2,0xa9,0xca,0x7e,0xe6,0xf9,0x0b,0xa2,0xe4,0xce, + 0x77,0x83,0x03,0x60,0x37,0xf1,0x6a,0x3b,0x5f,0x4e,0xcf,0xe4,0x5d,0xce,0x7c,0xb9,0x9d,0x49,0x70,0x50, + 0xd2,0x39,0x87,0x6c,0x3a,0xcd,0xcc,0x1b,0x1d,0x68,0x6f,0x72,0xf1,0x56,0x77,0x25,0x5b,0x9e,0xd3,0xde, + 0x5a,0x67,0xcb,0x74,0x4a,0x7f,0x0a,0xfa,0x53,0x54,0xae,0x4b,0x70,0x19,0x2f,0x2a,0xfd,0xc9,0xa3,0x3c, + 0x09,0xf9,0x9b,0xc9,0x79,0x49,0x24,0xca,0xa7,0xbb,0x9f,0xa6,0x7d,0xaf,0xf7,0x37,0x9b,0x01,0xdf,0xbe, + 0x1b,0x89,0x5f,0xa0,0x8c,0x06,0x55,0xf5,0x22,0xe7,0x10,0x95,0xc0,0xca,0x1f,0xd8,0xae,0xa1,0xfb,0xaa, + 0xe2,0x0f,0x84,0x4f,0x74,0xec,0x83,0x40,0xdc,0xe0,0xaa,0x63,0x8f,0x02,0x46,0x65,0x07,0x1b,0xe0,0x29, + 0x35,0xcb,0xdb,0x01,0xf5,0xd0,0x83,0x7d,0xfb,0x3d,0x43,0xfd,0x87,0x3c,0xf2,0x9c,0xba,0xd1,0xfe,0xc7, + 0x5c,0xfc,0x98,0x8b,0x3f,0x3c,0x14,0xd4,0xa2,0x05,0x68,0x8c,0x1f,0x61,0x18,0xf3,0x91,0xda,0xc3,0xa2, + 0x76,0xc1,0xd0,0xd9,0xbc,0x38,0x4d,0xe7,0xa0,0x49,0x19,0x51,0x61,0x5e,0x54,0x12,0x70,0x3f,0xd8,0xc1, + 0x81,0xcc,0x2f,0x06,0x1f,0x3f,0x3c,0x19,0x3f,0x79,0xf5,0x31,0x12,0x1f,0x09,0x96,0x7f,0x6f,0x80,0xc8, + 0x78,0x8c,0xcc,0xc7,0x4f,0x3e,0xbe,0x7f,0xfd,0xfa,0xc5,0xbb,0xf1,0x0f,0x2f,0x5e,0x3f,0x7a,0xf8,0x62, + 0xfc,0xe3,0xeb,0xd7,0xcf,0xc7,0x63,0xf1,0xbc,0x1b,0x70,0xdf,0x5d,0x2f,0x4e,0x0b,0x6a,0xf4,0x2a,0x54, + 0x4f,0x51,0x77,0xdf,0xf4,0x95,0xc5,0x28,0xd7,0xba,0xbd,0x38,0x1a,0xfe,0x78,0x4b,0xcd,0x92,0x8b,0xd3, + 0x4f,0x34,0x7a,0xd7,0x9c,0xf5,0x46,0xac,0x0b,0x75,0x95,0x9f,0xac,0xbb,0x22,0xaf,0xda,0x68,0xf9,0xcd, + 0xe3,0xaf,0x03,0xd3,0xef,0x62,0x8a,0x4d,0x55,0x50,0x62,0x0a,0xff,0x1b,0x5a,0xd6,0xc6,0x37,0x5e,0x41, + 0xac,0x7f,0xa3,0x2c,0x21,0x8b,0xb4,0xf4,0x17,0xf2,0xab,0x1d,0x14,0xf5,0x46,0x9b,0x10,0xfc,0x94,0x27, + 0x67,0xe2,0x07,0x30,0x04,0xbf,0xe6,0x5b,0x9f,0x67,0xd3,0xe4,0x07,0xa2,0xdb,0xf4,0x55,0x89,0xab,0x53, + 0xa8,0xe7,0x37,0xc3,0x5f,0xf3,0x66,0x1f,0xdf,0xad,0x4e,0x3b,0xba,0x49,0xa5,0x75,0xb0,0x3e,0x6a,0xae, + 0xf1,0x89,0x72,0x34,0x6c,0x7f,0xa5,0x6f,0x13,0xc5,0x77,0x62,0xeb,0x13,0x75,0x51,0xb6,0xdf,0x3f,0xef, + 0x1e,0x6d,0xfb,0x88,0xce,0x3c,0x96,0x4b,0x25,0x68,0x6f,0xd5,0x90,0x17,0x35,0x11,0xd6,0xdd,0x17,0xe6, + 0xb9,0x0e,0x5b,0x49,0x2b,0xdb,0x3b,0xd5,0x6d,0x7b,0x27,0xbe,0x0c,0x7e,0x65,0xaf,0xcf,0xb3,0x0d,0xb3, + 0x59,0x3c,0x4f,0xe7,0xbf,0x73,0x84,0x53,0xfe,0xad,0x7d,0xe4,0x3b,0x65,0x98,0x9e,0x1e,0xb8,0xca,0xe8, + 0x4b,0x2e,0xf9,0xf6,0xa7,0xf6,0x1d,0x97,0xfa,0xf6,0x4a,0xbe,0x43,0x4a,0xdf,0x77,0x29,0xe7,0x0b,0x73, + 0xd9,0x65,0x5e,0x99,0xab,0x3b,0xd4,0x57,0xfa,0xb2,0xa9,0x42,0xbd,0xba,0xdb,0xa7,0xfc,0x42,0xee,0x16, + 0xaa,0x66,0xaa,0xb9,0x17,0xd2,0x4f,0xe5,0x1b,0x4c,0x61,0xce,0x0b,0x2a,0x4f,0x37,0xd1,0x34,0x6b,0x35, + 0x17,0x5b,0x6e,0x19,0x10,0x37,0xea,0xd1,0x57,0x74,0xfa,0x49,0x65,0x7a,0xc9,0x21,0x65,0x18,0xbc,0xec, + 0xb5,0xa9,0x36,0xc1,0xf9,0x6d,0xb1,0xb2,0x42,0x25,0x9a,0xb0,0xe5,0xae,0xd8,0xd1,0x9c,0x1a,0x9d,0x7a, + 0x09,0x7c,0xd3,0xaa,0x79,0x6d,0xc4,0x00,0xaf,0xbc,0x34,0xbe,0x70,0xce,0xef,0xcd,0x76,0x10,0x71,0x98, + 0x0c,0x89,0x9f,0x09,0x31,0xf3,0x52,0xc4,0x88,0x8e,0x37,0xcb,0xce,0x56,0x7c,0x4b,0x79,0x0c,0xa4,0x3b, + 0xfc,0x39,0x57,0xcb,0xc4,0x37,0xd4,0x6f,0x63,0xce,0xee,0x69,0xd9,0x74,0xde,0x48,0x4f,0x94,0x4f,0xf8, + 0x9b,0x07,0xa5,0xd4,0xb0,0xda,0x95,0x75,0xeb,0x66,0x12,0x83,0x8d,0xf9,0x1e,0x0b,0x8e,0x6f,0xa2,0xd8, + 0x2c,0x75,0x6b,0x8c,0x33,0x8d,0xe3,0x55,0x47,0xcc,0x1b,0x6f,0xd2,0x0e,0x04,0xb5,0x4e,0x03,0x6b,0xdd, + 0xa9,0x23,0xf2,0xb2,0x85,0x1a,0x70,0x7b,0xca,0x71,0x80,0x3d,0x1b,0x20,0xe4,0xf5,0xd2,0xb3,0xc3,0xd0, + 0xe1,0xd3,0x90,0xc2,0xe1,0xc0,0xf0,0x50,0xc0,0x71,0x2c,0x28,0x61,0xba,0x5f,0x49,0x98,0x67,0x74,0x98, + 0xe5,0xa9,0x5e,0xca,0x12,0xe6,0x01,0x97,0x61,0x4e,0x90,0xdc,0x1d,0x40,0xfb,0x18,0xf7,0x87,0xd9,0x50, + 0x41,0x56,0x26,0xb1,0xbf,0x3f,0x8c,0xf8,0x7e,0x5b,0x9b,0x65,0x2d,0xbe,0x11,0x49,0x5e,0x3b,0x91,0x62, + 0xc6,0xe1,0xa3,0xa1,0xef,0xe6,0x56,0xa1,0x25,0x86,0x3a,0xb0,0x65,0xad,0x02,0x5b,0xaa,0x61,0xc5,0xfc, + 0x68,0x06,0x13,0x23,0x9e,0xbb,0x8b,0x33,0x69,0x86,0x86,0x64,0x8d,0x08,0xee,0x39,0xf1,0x11,0xe4,0x31, + 0xc5,0x29,0x9f,0x71,0xe6,0x72,0x6c,0x91,0x02,0x2f,0x69,0xcc,0x02,0x3b,0x29,0x70,0x1e,0xca,0x77,0xc5, + 0x4e,0x2d,0xc1,0x88,0xc7,0xf5,0x30,0x2d,0x48,0xd3,0x40,0x24,0x65,0x99,0xdc,0x54,0xe7,0xc5,0x6a,0x3e, + 0xa5,0xbd,0x4a,0x33,0x58,0x03,0xb6,0x44,0xcb,0x32,0x97,0x87,0xa3,0x82,0x97,0x18,0x5c,0x21,0x97,0xbc, + 0xe6,0xbf,0x6a,0xfc,0x70,0xb1,0x60,0x37,0x5e,0xc2,0x56,0x97,0xfa,0xf2,0x64,0x1a,0x7a,0xa0,0x2f,0x60, + 0xde,0x8a,0x3b,0x12,0x86,0x9f,0x9b,0x12,0x21,0x15,0xd2,0xd0,0x52,0x92,0x89,0xdc,0xc4,0xed,0x6c,0xef, + 0x26,0xe5,0x4e,0x35,0x90,0x76,0xa7,0xc5,0xba,0x5c,0x2a,0x15,0x0f,0x62,0x3e,0x13,0x6d,0x02,0x91,0x68, + 0x29,0xca,0x52,0x5f,0x74,0xdb,0x98,0xbb,0x1a,0x1e,0x00,0x48,0xbd,0x4c,0xe7,0x5f,0x42,0x8e,0xc4,0x5e, + 0x7a,0xb8,0x1a,0xa9,0xb7,0x98,0x28,0xb7,0x2e,0x96,0x57,0x32,0x06,0xe9,0xcb,0x18,0xde,0xa1,0xe7,0x88, + 0xa2,0x4e,0xc8,0x9a,0x7e,0x4e,0xe0,0x72,0xee,0x57,0xee,0x77,0xe4,0xb6,0xcb,0xaa,0xba,0x70,0xff,0x43, + 0x75,0x43,0x95,0xba,0x11,0x98,0x8e,0xda,0xf7,0x46,0x1e,0xda,0x62,0x65,0x86,0xa9,0x0a,0x7b,0x72,0x0b, + 0xd3,0xb7,0x93,0x8f,0x5e,0xe8,0x94,0x58,0xfa,0x5e,0xa5,0x96,0x02,0x91,0xa3,0x3a,0x7e,0xa1,0xa4,0x38, + 0xc4,0xc5,0x75,0x6e,0xab,0x14,0x1b,0x2a,0x79,0x42,0x04,0xe0,0xc3,0xdb,0x0b,0xf4,0x83,0x2a,0x38,0x49, + 0xde,0x50,0x21,0xea,0x11,0x53,0xa1,0x5b,0x87,0x92,0x52,0x12,0x13,0x5e,0x79,0xc4,0xe6,0xcf,0xf6,0xae, + 0x39,0x69,0x92,0xa4,0x4d,0xb2,0x76,0x6b,0x3b,0x4d,0xa4,0x51,0xaf,0xd7,0x1d,0xd1,0xe6,0xa5,0x36,0x4f, + 0x24,0xf2,0xf6,0x02,0xb6,0x72,0x51,0xd3,0x1b,0x43,0x1a,0xc9,0x27,0x7c,0x31,0x44,0x95,0x00,0x66,0x86, + 0x29,0x31,0x20,0xed,0x0b,0xf1,0x58,0x79,0x78,0x9c,0x9e,0x44,0x7c,0xd9,0x50,0x92,0x8e,0x52,0xe3,0x52, + 0x5e,0x45,0xad,0x4b,0xe2,0xaa,0x68,0x44,0x9c,0x5c,0x75,0x62,0x77,0xec,0x06,0xe3,0x56,0xd1,0x43,0xe9, + 0x61,0x21,0xeb,0xf3,0x62,0xca,0x8f,0xea,0x0a,0x68,0x3c,0x4d,0x74,0x2c,0x81,0xee,0x89,0xd9,0x1e,0x4e, + 0x57,0x94,0x7d,0x43,0x30,0xf3,0x30,0x85,0x84,0xe9,0x63,0xc6,0x81,0x1a,0x4c,0xfb,0x17,0xc4,0xd2,0x24, + 0x2f,0x94,0x44,0xb6,0x14,0x93,0x52,0xac,0xca,0x96,0x86,0xb6,0x4d,0x73,0x03,0x02,0x08,0x67,0xcf,0x71, + 0x0b,0x94,0x98,0x71,0x08,0x36,0x0e,0xc4,0xc6,0xb6,0x30,0x1d,0x34,0x2b,0x51,0x79,0x36,0x1a,0x37,0x88, + 0x57,0xff,0x3d,0x8a,0x26,0x0d,0xb2,0xd0,0xcf,0x0b,0x3f,0x10,0x38,0x5b,0x03,0x3d,0x57,0xb1,0x75,0xda, + 0x7b,0x49,0xe4,0x7b,0x7a,0x26,0x8f,0xce,0xd3,0x3c,0x97,0xf3,0xf5,0x7a,0xf7,0x2a,0x6c,0x26,0x81,0xee, + 0x36,0x97,0x19,0x35,0x73,0x08,0xad,0x55,0x75,0xb9,0xc2,0x19,0xcc,0xf7,0x1b,0x35,0x73,0xad,0x9c,0x29, + 0xec,0xe8,0x9f,0x71,0xaf,0xfb,0x00,0x57,0x3a,0x67,0x54,0x32,0x2d,0x19,0xf5,0x35,0x2b,0x12,0xe7,0x65, + 0x32,0xa5,0x69,0xa6,0xc3,0xe8,0xde,0x50,0x3f,0x1c,0x0e,0xc0,0xa1,0x72,0xa9,0xe4,0x83,0x68,0x56,0x7f, + 0x8e,0x22,0x55,0xad,0x2b,0x81,0xb0,0x67,0x73,0xcb,0xa4,0x12,0xce,0x5e,0x64,0x15,0xcf,0xa7,0x7e,0xd4, + 0x96,0xbb,0x17,0x65,0xa2,0x13,0xcc,0x0d,0xb9,0x44,0x4a,0x57,0x8d,0x56,0x2e,0x4a,0x75,0xdd,0xf0,0x87, + 0x88,0x78,0xca,0x86,0xcb,0xe0,0x99,0x89,0x36,0x4c,0x1f,0x4c,0x4a,0x06,0x8a,0x45,0x29,0xce,0xd4,0xd0, + 0x88,0x19,0xbb,0x2e,0x5b,0x82,0x26,0x2d,0x4e,0xed,0x05,0x36,0x8e,0x33,0x0b,0xaf,0x08,0x43,0x05,0xff, + 0x8f,0xad,0xcf,0x6b,0x80,0x8b,0x95,0x5d,0xc5,0xf0,0x8e,0xb7,0x85,0x4a,0xc4,0x8d,0x55,0x85,0xf2,0xdb, + 0x0a,0x19,0x1b,0x3a,0xd6,0xc1,0x13,0xb1,0xd9,0x28,0x27,0x60,0x11,0x01,0xc1,0xe6,0x56,0x3c,0x3e,0x09, + 0xf6,0x73,0x5c,0xaa,0x6b,0x9b,0x4e,0x19,0x52,0x2f,0xf9,0xef,0x15,0x87,0x6a,0xda,0x63,0xa8,0xfd,0xc2, + 0x7f,0x8f,0x70,0x76,0x3c,0xc4,0x9f,0x77,0x65,0x07,0x5d,0x6c,0xce,0xb9,0x05,0x82,0xa7,0xb3,0x17,0xc6, + 0x98,0xb1,0x15,0x91,0x2c,0xea,0x1c,0x73,0x09,0x86,0xa3,0xe0,0xe4,0x72,0x14,0xea,0x33,0x91,0x0e,0xc5, + 0xdd,0xdd,0x92,0x1f,0xd4,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0xdf,0x0f,0x9f,0xfe,0x71,0xcd,0x49,0x78, + 0xd0,0x0c,0x0d,0x51,0x7e,0x9c,0x84,0x07,0x7d,0x20,0x71,0x65,0xae,0x0e,0xf7,0xa9,0xf7,0x85,0xa6,0x32, + 0x27,0xa7,0x86,0x4a,0x27,0x36,0xa9,0xdf,0x7f,0xa8,0x1b,0x52,0x91,0xd4,0x2c,0xf5,0x3a,0xcd,0xe8,0xdc, + 0x77,0xf5,0xd8,0x63,0x1c,0xac,0x94,0x26,0xe6,0xe5,0xe5,0x63,0xff,0x9d,0x32,0x9f,0x4d,0x2b,0x03,0x10, + 0x5e,0x91,0x76,0xaa,0xd3,0x20,0x40,0xdc,0xde,0x11,0x9f,0x40,0xaa,0x3b,0xe3,0x89,0x06,0xa9,0x69,0x2c, + 0x32,0x0e,0xfd,0xd7,0x96,0xcf,0xce,0xee,0xeb,0x5c,0x89,0x2d,0xcc,0x15,0x74,0x70,0x07,0xd3,0x61,0x4e, + 0x06,0x81,0xbb,0xf5,0xb1,0xe3,0xc0,0xec,0x38,0x84,0x1b,0xe8,0x73,0x58,0x27,0xfa,0x2c,0x76,0xd7,0xc8, + 0x6d,0xd8,0x4b,0xca,0xeb,0x0f,0x2c,0xc1,0xbb,0x7a,0x17,0xc1,0x2d,0x5e,0xf8,0x94,0x90,0x99,0x4a,0x63, + 0x5b,0x66,0x3e,0x43,0xf0,0x99,0x77,0xfe,0x49,0xdf,0xa2,0xcf,0x99,0xae,0x1e,0x2a,0x6e,0x4f,0x78,0xec, + 0xe3,0xbf,0x75,0x3c,0x1f,0x9b,0x14,0x79,0x8c,0x9d,0x8a,0x31,0xc1,0xb7,0x02,0x2a,0x20,0xe5,0xc0,0x79, + 0xba,0x17,0xaa,0xaf,0xfa,0xde,0x36,0x61,0xc5,0x2b,0xda,0xd0,0xdb,0x42,0x51,0x54,0x9f,0x97,0xc5,0x25, + 0x1d,0x22,0x6f,0x59,0x59,0x7f,0x47,0x7d,0xb6,0x43,0xd3,0xb7,0xa3,0xe1,0x7a,0x07,0xd6,0x16,0xcd,0x25, + 0x85,0x29,0x4a,0xb4,0x21,0x9c,0x44,0x95,0x5f,0xdf,0x58,0xd8,0xec,0xf5,0x7e,0xc4,0xc4,0xb9,0x0e,0xa2, + 0xf7,0xc5,0x32,0xd4,0x53,0x04,0x29,0x40,0xbe,0x5a,0x02,0x9e,0x5c,0x3c,0x3c,0x3a,0x4a,0x1a,0xf3,0xa2, + 0xb8,0xe4,0x0e,0xe7,0x9b,0x9a,0x20,0x79,0xd8,0x04,0x38,0xc8,0x2d,0x42,0xd8,0xc3,0x85,0xad,0x74,0x15, + 0xf7,0xab,0x01,0xc1,0x86,0xdd,0xf7,0xc1,0xd8,0x7e,0x5f,0x6b,0x49,0x81,0xda,0xbc,0x51,0xab,0x4b,0x5e, + 0xbf,0xbf,0xc2,0xa2,0x63,0xdb,0xd8,0x7b,0xed,0xc1,0x1b,0x98,0x7e,0x9b,0x4c,0xb0,0x19,0x5d,0xfd,0xa7, + 0x71,0xe1,0xb6,0x03,0x27,0x79,0xd0,0x22,0x02,0x6d,0x1a,0xe5,0xba,0x3b,0xf4,0x77,0x60,0xb3,0xa6,0xad, + 0x9d,0xd8,0x4a,0x50,0x12,0x98,0x30,0x12,0xae,0xc2,0xca,0xdb,0xed,0xfe,0x44,0x35,0xf7,0x7d,0xde,0x9c, + 0x44,0x13,0x63,0xb2,0x35,0x43,0x4a,0xea,0xb0,0x25,0xa1,0xe1,0x8d,0xe0,0x21,0x9a,0x5d,0xbd,0x1f,0x80, + 0xa9,0x54,0x7a,0xb9,0xa2,0xc2,0xf1,0x2d,0x8b,0xad,0x03,0x47,0x27,0xc9,0x15,0xee,0x70,0x66,0xb8,0xe5, + 0x27,0xa0,0xaf,0x2f,0x0d,0xbb,0xbf,0xd3,0xd2,0x9a,0x22,0x0e,0xf3,0xef,0x8f,0xca,0x5e,0xef,0xb4,0xe4, + 0x9b,0xcb,0xa6,0xdf,0x73,0x4d,0x51,0xce,0x71,0xfc,0x4d,0xb8,0xe8,0xbc,0x7f,0x28,0x0e,0x20,0xc7,0xe1, + 0xc3,0xee,0xd4,0x5c,0x2a,0x19,0x0d,0xf7,0xb0,0xd3,0x71,0x3a,0x1c,0x88,0x8f,0x21,0xae,0xa8,0x86,0x21, + 0x94,0x92,0xd7,0x34,0xc6,0x4b,0xdd,0xf6,0x07,0x0b,0x3a,0xd5,0x61,0x57,0x13,0xa5,0xc4,0x6d,0x7d,0x36, + 0x32,0xda,0xd5,0xb2,0x34,0x46,0x14,0xeb,0x75,0xc6,0x57,0xc7,0xd9,0xad,0xd3,0x80,0x16,0xe5,0xb2,0x69, + 0x6a,0x6d,0xf0,0x58,0x6a,0xcb,0x96,0x7a,0xd3,0x4d,0x4e,0xd5,0xfe,0xd6,0xdb,0x5f,0x30,0x5d,0x6e,0xc5, + 0xa8,0x6f,0xc3,0xda,0x30,0x62,0xe2,0x8e,0xb1,0xd2,0xf8,0x4b,0x3b,0x9b,0xe7,0xe5,0xf6,0x16,0x36,0xad, + 0xe9,0x90,0xe8,0x62,0x17,0x00,0x78,0x48,0x91,0x27,0xc2,0x3f,0x75,0x20,0xca,0x68,0xd4,0xb2,0x2d,0x46, + 0xfb,0xb3,0x1d,0xe6,0x6f,0x2d,0xfd,0x79,0xd8,0x5e,0xaa,0x9a,0xe0,0x7e,0x5a,0x5c,0x7e,0x75,0xbd,0xf4, + 0xe0,0x10,0xa8,0xe7,0x91,0x24,0xba,0xef,0xb1,0xd1,0x1f,0xad,0xd7,0x76,0xe4,0xee,0x98,0x57,0x0c,0xec, + 0xf0,0x6f,0x75,0xae,0xb5,0xb7,0x87,0x8d,0xc3,0xf8,0x70,0xa3,0xf8,0xb6,0xf7,0x44,0x9c,0xc8,0x7c,0xb5, + 0x90,0x46,0x9e,0x23,0x5a,0xf2,0x1d,0x28,0x6d,0xe2,0x33,0x51,0xe1,0xef,0x46,0xbc,0xa6,0xe2,0xd8,0x61, + 0x60,0xce,0x87,0x5f,0xea,0xf0,0xc8,0x93,0xb8,0x2a,0x4e,0xff,0x73,0x29,0x5e,0x94,0xe2,0x49,0x29,0xde, + 0x94,0xe2,0x19,0x95,0x86,0x0b,0xbf,0xcf,0x43,0x6b,0x0a,0x87,0xcf,0x83,0x6e,0x0f,0xfd,0x0e,0x17,0xfc, + 0xac,0xb2,0xd3,0x13,0x75,0x39,0xe9,0x27,0xa1,0x8a,0xc2,0x7c,0x33,0x66,0x31,0x8f,0xca,0x44,0xe7,0xb5, + 0xd7,0xf1,0xb8,0x14,0xda,0x1b,0xfe,0x23,0x9c,0xf9,0xe3,0xd4,0xbc,0x3e,0x99,0x2f,0xe2,0x52,0x31,0x6c, + 0x44,0xbb,0xc9,0x19,0xde,0x33,0xf5,0xbe,0xc1,0x35,0x14,0xca,0x7b,0xbb,0x69,0xd6,0x23,0xcc,0x6d,0x2f, + 0xda,0x90,0x27,0x99,0xe8,0x07,0x51,0xb5,0x6d,0x77,0x28,0xab,0x95,0x42,0xd8,0x90,0x08,0x96,0xed,0x0b, + 0x46,0x39,0x4e,0x00,0x2e,0x6e,0x8e,0x06,0x7b,0xac,0x7d,0x0c,0x41,0x9f,0x4a,0xea,0x8e,0x96,0xce,0x79, + 0x57,0x1c,0x69,0x9f,0x72,0x78,0xdb,0x3f,0x9c,0xdb,0xcd,0x8f,0xa0,0x9c,0xcf,0x00,0x85,0x92,0xa3,0x23, + 0x84,0x05,0xae,0x89,0xb7,0xf1,0x4c,0x37,0xc2,0x64,0xc4,0x4d,0x56,0xcb,0x38,0xda,0x6d,0x05,0x31,0xd8, + 0xed,0x22,0x4c,0x55,0x43,0xbb,0xbb,0x61,0x86,0x95,0x32,0x51,0x09,0x06,0x63,0x35,0x01,0x47,0x5a,0x58, + 0xbb,0x5e,0x9b,0xd0,0xa7,0xce,0x9a,0x8f,0xcb,0x7b,0xef,0x7c,0x6d,0x81,0x36,0x85,0x74,0xf5,0x78,0x8b, + 0x04,0x29,0xaf,0x0e,0x7d,0xc5,0x8f,0x63,0x7d,0x6f,0x75,0x68,0x1e,0x8d,0x30,0x95,0xef,0x48,0xba,0xad, + 0x2b,0x10,0x10,0x0f,0xf6,0xd4,0x2d,0x17,0xe6,0x72,0xa0,0xe6,0x0d,0x61,0x53,0x5c,0x5a,0xb1,0x67,0xaf, + 0xb2,0x47,0x48,0x7e,0x4a,0x62,0xd3,0x16,0x5b,0xa9,0xb2,0xb2,0xbc,0xc9,0xca,0x41,0x43,0x44,0x65,0x2c, + 0x82,0x15,0xeb,0x8e,0x18,0x50,0x28,0x27,0xaa,0xa4,0x31,0x24,0x4a,0x83,0x82,0x05,0xa1,0xa7,0x85,0xf2, + 0x4b,0xae,0x7c,0xb7,0x64,0x13,0xbf,0xe7,0x78,0x42,0x1c,0x3f,0x2e,0x2d,0x7f,0x1a,0xae,0x44,0xbb,0x6d, + 0x75,0x49,0xde,0x76,0xfb,0x07,0x5b,0x25,0x1f,0xb3,0xf0,0x7c,0xe3,0x0c,0x9a,0xe7,0xc9,0xf6,0x04,0xbb, + 0x98,0x10,0x5f,0xc9,0xa3,0x73,0x58,0xaa,0xab,0x1f,0xe7,0xd1,0xa6,0xe0,0x89,0xdf,0xab,0xf8,0xfa,0xfa, + 0x1c,0x16,0x8a,0x5e,0x98,0x6c,0xca,0xa0,0x69,0x98,0x68,0x35,0x39,0xe2,0x24,0xf9,0x97,0x16,0xdb,0x4d, + 0xda,0xb1,0x71,0x85,0x17,0xc2,0x82,0x9e,0xed,0x2a,0x00,0xe2,0x5c,0x74,0x8c,0x8d,0x50,0x61,0xb9,0xb6, + 0x0f,0x6d,0x75,0x0f,0x91,0xbe,0xbc,0xae,0xec,0x6a,0x61,0x58,0x36,0x62,0xa1,0x85,0xfe,0x2b,0x9b,0x5b, + 0xe3,0xce,0x50,0xab,0xf0,0x67,0x03,0xb7,0xe6,0xee,0x62,0x57,0x73,0xf7,0xcd,0x28,0x84,0xfb,0x6a,0x84, + 0xfb,0x95,0x2d,0x2e,0x25,0x46,0xcf,0xf8,0x64,0x46,0x71,0x8a,0x0a,0x77,0x0f,0x40,0xd1,0x69,0x9b,0x80, + 0x4e,0x5a,0x63,0xbb,0xa3,0x4d,0x3c,0xc7,0x8e,0xa0,0xcd,0x9e,0x58,0x49,0xa5,0x32,0x72,0x55,0x48,0x34, + 0x64,0xa9,0xd4,0x60,0xac,0x6c,0x1e,0x9e,0xe5,0x8e,0xdb,0x2a,0xf8,0xbe,0x64,0x50,0x79,0xb6,0xaf,0x11, + 0x02,0x55,0x7a,0x3d,0x3f,0x18,0x7a,0xd2,0xcc,0x61,0x49,0x2c,0xcb,0x5e,0xfb,0x5a,0x73,0xc8,0x34,0xe1, + 0x1c,0x69,0x33,0x8e,0xcb,0x13,0xe2,0xee,0xd1,0x83,0x86,0x6d,0x03,0xc8,0x16,0xf6,0x57,0x89,0xfd,0x9b, + 0x8c,0x29,0x55,0x3c,0x2e,0x1b,0x42,0xca,0x67,0xb4,0x5f,0x9f,0x96,0xc9,0xa1,0x78,0x55,0x26,0xf7,0xc4, + 0x4b,0x34,0xfc,0xd9,0xd7,0xdb,0xf1,0xc5,0xd5,0xdb,0xb4,0xb8,0xc2,0x40,0xea,0x10,0x1b,0xaf,0x88,0xc1, + 0x7c,0x59,0x1a,0x3d,0x1c,0x4d,0xdb,0xc7,0x95,0x62,0x30,0x39,0x12,0x9b,0x77,0x06,0x8c,0xba,0x90,0x9d, + 0x83,0xf9,0x96,0xfc,0x8a,0x41,0xc9,0x08,0x69,0xac,0x71,0x27,0x87,0xfa,0xf0,0x31,0xd3,0x30,0x37,0xa8, + 0xc7,0xe0,0x20,0x91,0xb7,0x51,0x97,0x4d,0xa0,0x13,0xc5,0x7d,0x4e,0x2f,0xc8,0x51,0x07,0x0d,0x92,0xd5, + 0x93,0x16,0xa6,0x75,0xdc,0xa0,0xe8,0x6d,0x8f,0x24,0x6b,0x6c,0x95,0xad,0xdd,0x9a,0x79,0xbb,0x27,0xdf, + 0x46,0x83,0x76,0x37,0x21,0xd3,0xb6,0xf3,0x3e,0x3d,0x53,0xd7,0xe1,0x0a,0xa9,0x0f,0x31,0x06,0x77,0x7d, + 0xb0,0x99,0x34,0xb1,0xe5,0x06,0x98,0x6c,0xf9,0xe5,0x44,0x8a,0x6a,0x15,0xb5,0x96,0x1b,0xec,0xb9,0xbb, + 0xcd,0x71,0x19,0xbd,0xd6,0xca,0x99,0xc9,0xa5,0x6d,0xc6,0xe1,0xb2,0xb5,0x3c,0x83,0x57,0x51,0xb5,0xf5, + 0xa6,0x2c,0xae,0x94,0x78,0x40,0x27,0x57,0x72,0x3e,0x53,0xef,0x5d,0xdb,0xc8,0xde,0x9a,0x99,0xdb,0xc5, + 0x60,0x1a,0x1e,0xe1,0x26,0x6d,0xb8,0x1d,0x1d,0x92,0x33,0x77,0xb8,0xce,0xe4,0xf4,0x7a,0x94,0x68,0x62, + 0x2a,0x22,0x22,0xb0,0x79,0xc9,0xbd,0x9d,0x60,0x94,0xb6,0xb5,0xc9,0xe5,0x7b,0x8e,0xf6,0xca,0xa2,0x80, + 0x14,0x29,0x57,0x4f,0x71,0x8d,0x34,0xab,0xae,0x84,0xec,0x42,0xdd,0x95,0x0c,0xe1,0x8f,0x27,0xc1,0x61, + 0x52,0xa3,0xf6,0x36,0xa1,0x49,0x68,0x6f,0xe0,0x43,0x2e,0xe5,0x50,0x95,0x7e,0xb7,0x08,0xc2,0xa6,0x34, + 0xc9,0x47,0x90,0x76,0x5a,0x1e,0xd4,0xd0,0x9c,0x0c,0xc6,0xfa,0x12,0xa1,0x2e,0x7b,0x1e,0xca,0x25,0xb6, + 0x10,0xb6,0x35,0x6c,0x35,0x91,0xe8,0x88,0x63,0xf2,0xab,0x47,0x07,0xf4,0xa1,0xea,0xf2,0xab,0x5b,0x1a, + 0x54,0x67,0xb7,0x19,0x9f,0x82,0x97,0xf7,0xa5,0x94,0x95,0xd3,0x0e,0xb7,0x96,0xd0,0x1e,0xf8,0xcd,0x0d, + 0x47,0x3b,0x30,0xc7,0x4a,0x99,0x28,0x97,0xfe,0x41,0x24,0xdb,0xa0,0xae,0xee,0x4c,0xf4,0x49,0x8d,0x84, + 0x8f,0xf8,0xf1,0xa4,0x61,0xec,0x2d,0xfc,0x9b,0xa2,0xdf,0x7b,0x77,0xa9,0x22,0xde,0xc3,0x86,0xd7,0xd2, + 0xb7,0x44,0xfc,0xab,0xdf,0x1e,0x68,0x7d,0x48,0xa6,0x7a,0xcc,0x61,0xe9,0xa1,0x80,0x09,0x14,0x0d,0x12, + 0x40,0xa0,0x97,0x79,0xa4,0x87,0x0a,0x6a,0xa5,0x4a,0xd8,0xfd,0x1b,0x08,0xb9,0x35,0xdd,0xae,0xb4,0x99, + 0xed,0x4a,0x6d,0x2b,0xd1,0x34,0x6a,0x8b,0x44,0x98,0x25,0xd3,0x3a,0x0c,0xb5,0xb0,0xd0,0x2d,0xa0,0x92, + 0xf2,0x0b,0x15,0x97,0xa3,0x83,0x94,0x11,0x8d,0x6b,0x6b,0x3b,0xc2,0x7f,0xd3,0xaa,0xbe,0x0b,0xa1,0xb1, + 0xcc,0x88,0xbd,0x80,0x21,0x5f,0x07,0x3d,0xb2,0x05,0x04,0x86,0x83,0x81,0xdb,0x7c,0x7b,0xc5,0xe9,0xc8, + 0xd3,0xce,0x2d,0x5f,0x47,0xd3,0x0e,0xf1,0x31,0xd2,0x28,0x2d,0xa9,0xa5,0x63,0xe0,0x77,0x50,0x5b,0xd8, + 0x80,0x05,0x02,0x03,0x99,0x0d,0xbd,0xd5,0xd7,0x42,0x7b,0xaa,0xd9,0xa6,0x0b,0x5c,0xee,0xc4,0x7b,0xbd, + 0x30,0x21,0x6d,0x9f,0xc2,0x5c,0x9a,0x96,0x96,0xd8,0x74,0x8c,0x1c,0x4e,0x19,0x82,0xf5,0x35,0x84,0xbd, + 0x56,0x1c,0xd6,0x46,0xf5,0x23,0x00,0xad,0xdd,0x8a,0x0a,0x10,0xa5,0x70,0x9e,0xef,0x98,0x22,0xf6,0x73, + 0xd2,0x24,0x25,0x8c,0xb1,0x95,0x1e,0xa6,0x3d,0x07,0xed,0xd1,0x37,0x2f,0xaf,0x97,0x7c,0x79,0x7d,0xa2, + 0x44,0x15,0x90,0x24,0x8e,0xce,0xe2,0x69,0xa8,0xb4,0x7c,0xea,0x7a,0x64,0x53,0x2f,0x9a,0x00,0x14,0x8e, + 0xbe,0x86,0x3d,0x15,0x9c,0x16,0x21,0xd2,0xc6,0xac,0xab,0xeb,0x14,0x9e,0xb6,0x7a,0xe8,0x8c,0x82,0x6b, + 0xc5,0xb0,0xcb,0x86,0x28,0x40,0xe7,0xbd,0xe5,0xed,0xc1,0xa6,0x9b,0x21,0xee,0xaa,0xba,0x61,0x51,0x27, + 0xce,0x09,0xbe,0x31,0x01,0x92,0x34,0xc9,0x37,0x9b,0xf9,0x77,0x1b,0xf8,0xa0,0xc8,0x31,0xbe,0xb7,0x08, + 0xe2,0x34,0xf1,0x19,0x07,0x3d,0x58,0x61,0x64,0x32,0xd1,0x30,0xb5,0xe2,0x30,0x44,0xb2,0x4e,0x4f,0x86, + 0xb4,0xf1,0x66,0x44,0xb6,0x22,0xbc,0xe6,0xfd,0x7f,0x2a,0xdb,0xf3,0xb0,0xea,0x07,0x41,0xe4,0x5f,0x69, + 0x74,0x00,0x82,0xe9,0xbb,0x6f,0x13,0xbe,0x44,0x52,0xaf,0x30,0x7a,0x8e,0x2b,0x3a,0x37,0x0f,0x15,0x81, + 0x83,0xd0,0x26,0xf1,0xc3,0xd0,0xcc,0x14,0x81,0x20,0xc0,0x5e,0x5a,0xdd,0xd9,0x6d,0xd0,0x3c,0x36,0x05, + 0x7e,0x31,0x5b,0xa2,0x0b,0x15,0x97,0xc9,0x1f,0x88,0x50,0xde,0x08,0xb7,0x61,0x39,0x3c,0x89,0x2b,0x5b, + 0x3a,0x17,0xa7,0x18,0x15,0x71,0x01,0x81,0xc7,0x10,0xe2,0xa4,0x1c,0x37,0x7a,0x80,0xd1,0x7c,0x07,0x4f, + 0x4e,0xda,0x35,0x67,0xe2,0x8c,0x78,0x77,0xb8,0x65,0x68,0xe8,0x9d,0x63,0x6c,0x08,0xf4,0xad,0xdc,0xee, + 0x6c,0xe7,0x23,0xf6,0xf8,0xa2,0xfe,0xc1,0xd8,0x85,0x1f,0x76,0x95,0xe6,0xf3,0x16,0xbf,0x09,0xaf,0x7b, + 0x25,0x03,0xe2,0x76,0xdc,0x8e,0xd2,0xbf,0x73,0x0d,0xf7,0x3d,0x9a,0x45,0xe2,0xfb,0x1e,0x97,0xfa,0x76, + 0x79,0x04,0x0f,0x51,0x1c,0xae,0x49,0x31,0x5d,0x53,0xf6,0x82,0x06,0xeb,0x61,0xd9,0x64,0x1b,0xb5,0x69, + 0xa5,0x62,0xa4,0x48,0x61,0xfd,0x36,0xed,0x9a,0x27,0x9c,0xd7,0x0a,0x56,0xa3,0x38,0xf7,0x70,0xa8,0xb1, + 0x04,0xd6,0xc4,0x88,0xad,0x19,0x3e,0x4a,0x2a,0x45,0x71,0xe5,0xed,0x5c,0x3a,0x2a,0xb6,0x37,0x16,0x2e, + 0xed,0xf9,0x9a,0x31,0x0c,0x03,0xce,0x66,0x68,0x03,0x39,0xe5,0x5f,0x2d,0xcc,0xf0,0xde,0x6d,0x2e,0x73, + 0x1d,0x7a,0x94,0x33,0x9d,0x20,0x0a,0x54,0x69,0xc3,0xfc,0x95,0xc2,0x1a,0x73,0xe5,0x51,0xc3,0x6c,0x0e, + 0x57,0x83,0x25,0xef,0x9b,0x49,0xea,0xbe,0xa4,0xe4,0x75,0x33,0xb5,0x4b,0x83,0xae,0xae,0x16,0x72,0xa1, + 0x5a,0x78,0x31,0x99,0x96,0x53,0xb7,0x34,0xe3,0xd6,0x05,0x75,0x0d,0xba,0xd2,0x48,0x1d,0x98,0xc8,0xa6, + 0x1a,0x56,0xbd,0xa2,0xd6,0x7f,0x2f,0x73,0x9a,0x5c,0xe9,0x04,0x83,0xc2,0x38,0x46,0xf8,0xf6,0x33,0xa5, + 0x15,0xbd,0x71,0xa4,0xe2,0xf0,0x33,0x31,0xa7,0x6f,0xca,0xe4,0xee,0x7f,0x70,0x77,0x79,0x7c,0x57,0x84, + 0x4f,0xca,0x84,0xd2,0xfc,0x51,0x14,0x79,0x4b,0xf7,0xbc,0x05,0xbf,0xb5,0x83,0xdf,0x5b,0x02,0xe0,0x69, + 0xa0,0xc8,0x39,0x28,0xbb,0xd0,0x97,0x7f,0x28,0x50,0xd1,0x54,0x17,0x1d,0x98,0x46,0x63,0xe0,0x52,0xbc, + 0x60,0x4e,0x12,0xfd,0x34,0xea,0x26,0xb0,0xda,0x5c,0xb2,0x49,0x93,0x1d,0xb8,0x8b,0x77,0x28,0x77,0x23, + 0x9e,0x94,0xcd,0x71,0x4c,0x64,0x6b,0x24,0xce,0x51,0x9f,0xa7,0x66,0xaf,0x98,0xcd,0xd8,0x81,0x5b,0x18, + 0x3b,0xa1,0xd2,0xbb,0x8c,0x6c,0xa3,0x3d,0x51,0xa8,0x6a,0x37,0xf5,0x33,0xa2,0xaa,0x45,0xa9,0x86,0x86, + 0x0f,0xcb,0xad,0x56,0x67,0xb3,0xed,0xe9,0xdb,0x6d,0xdb,0x2d,0x45,0x0d,0x78,0xfe,0x1a,0x1d,0x8a,0xd6, + 0xbb,0x16,0xe0,0xe6,0xaf,0xad,0x00,0x06,0xa8,0x97,0xc0,0x9f,0x2a,0xed,0xc5,0xd5,0x9c,0xfd,0xe6,0xad, + 0x10,0xa6,0x65,0x67,0xd5,0xd1,0x5e,0x2c,0x45,0xc7,0xea,0x62,0xd2,0x82,0x44,0xe1,0x5f,0x1b,0xc9,0x87, + 0x0e,0x65,0x87,0x45,0x92,0xc1,0x48,0x03,0xa6,0x0b,0xb8,0x1f,0x68,0x96,0xb7,0x2e,0x8f,0x4c,0xb7,0x2e, + 0x8f,0xec,0x5a,0x53,0xb9,0xe8,0xe2,0x84,0x15,0x33,0x04,0x7e,0xa7,0x39,0x98,0x1c,0x4e,0x64,0x86,0x6f, + 0xff,0xfe,0x70,0x04,0xaf,0x9c,0x38,0xf7,0x38,0xfc,0xf3,0xd0,0x2e,0x0c,0x35,0x4f,0x87,0xea,0x01,0x07, + 0x4b,0x31,0xc8,0xf8,0x41,0xc1,0x08,0x99,0xef,0xc1,0x22,0x6c,0xac,0x61,0x04,0xc1,0xbd,0x9c,0x93,0xcf, + 0xdb,0x30,0xa7,0xdd,0x79,0x87,0xdb,0xdd,0x39,0x57,0x2e,0x04,0x2c,0xdd,0x87,0x54,0x5f,0xc9,0xf1,0x3d, + 0x25,0x5b,0xf8,0xa2,0xbd,0xdd,0xc6,0x6d,0xad,0x8d,0xa2,0x24,0x34,0x17,0xaf,0x79,0x9d,0x5e,0xaf,0x45, + 0xda,0x6a,0xf7,0x0b,0x13,0xa6,0x50,0x2d,0xb6,0x9c,0x0b,0xad,0x8e,0x56,0x8c,0x06,0x8d,0x67,0x5c,0x0e, + 0xc7,0xa5,0xcf,0x3b,0x2a,0x66,0x82,0x68,0xde,0x91,0xf9,0xc6,0x58,0xc4,0xb1,0x28,0x74,0x8c,0x70,0xc0, + 0x74,0x98,0x87,0xb7,0xe5,0xda,0x96,0x38,0x16,0xc7,0x61,0xeb,0x6c,0xf0,0x98,0xfa,0x56,0x86,0x62,0xeb, + 0xdb,0x67,0x89,0x27,0x11,0xe8,0x2c,0xaf,0x03,0x54,0xd3,0x10,0x32,0xbe,0x5d,0x90,0x18,0xf5,0xf1,0xc5, + 0x4a,0x8e,0xc7,0x89,0xdb,0x1d,0xe8,0x8d,0xc1,0x0f,0xf4,0x68,0x4b,0x78,0x8c,0xf4,0x9e,0x16,0x94,0xaa, + 0x17,0xd5,0xa6,0x79,0x53,0x13,0xa2,0xb5,0x42,0x3a,0xcf,0x93,0xac,0xfa,0xa9,0x76,0x3a,0xf6,0xf8,0x94, + 0x7b,0xd1,0x80,0x4c,0x4f,0xdc,0xb7,0xa5,0x80,0x31,0x24,0xbf,0x6e,0xd3,0xbc,0x7a,0x66,0xc2,0xcd,0xba, + 0xb4,0xb0,0xa8,0xa5,0x2c,0xd9,0x35,0x40,0xd1,0x64,0x6f,0xa3,0x9b,0x16,0x6c,0x18,0x0f,0x9c,0x48,0x74, + 0x7f,0xe0,0x6e,0x76,0xf4,0x47,0x37,0xdc,0xad,0x21,0x90,0xee,0x50,0xbe,0x34,0x57,0xc6,0xc8,0x09,0x58, + 0x29,0xe3,0xd8,0xfb,0x86,0xdc,0xe2,0x96,0xe1,0xba,0x93,0x68,0xe8,0x0c,0xe9,0x1a,0x45,0xac,0x18,0x58, + 0x5a,0xdd,0x8d,0xcd,0x82,0x5d,0xb5,0x57,0x83,0x23,0x1b,0xb4,0x35,0xa7,0x69,0xcd,0x4b,0x32,0xb6,0x8f, + 0xfb,0xfb,0x76,0x2a,0xfc,0x59,0x10,0x5d,0xb0,0xad,0xb7,0x8e,0x76,0x2f,0x32,0x33,0xeb,0x7c,0x99,0x2c, + 0x08,0x13,0x66,0xfd,0x3a,0x00,0xfa,0x20,0xda,0x84,0xa7,0x86,0xb0,0x5e,0x59,0xdb,0x6f,0xc4,0x17,0xe2, + 0x50,0x3f,0xb7,0xb0,0x43,0x24,0x3e,0x37,0x00,0x23,0x27,0x5e,0xff,0x7d,0x36,0x69,0x5a,0x3e,0x6a,0xec, + 0xf2,0x51,0xeb,0x19,0x09,0x9a,0x1a,0x1f,0x69,0x61,0xc0,0x96,0x99,0x83,0xf0,0xd0,0xa6,0x15,0x38,0x94, + 0x89,0x11,0x75,0x09,0x2f,0x60,0xb2,0x92,0xf1,0x71,0x14,0x38,0x87,0x93,0xa2,0xa6,0xb9,0x9e,0x16,0x40, + 0x18,0xab,0x3d,0xf3,0x0e,0xab,0x3d,0x04,0xe7,0x37,0xbe,0x69,0xeb,0x75,0x7a,0x7c,0x80,0xe8,0x6f,0xf4, + 0x17,0xca,0x1c,0x45,0xa0,0xda,0xb2,0xc9,0x11,0x1d,0x04,0x2c,0x2a,0x96,0x4d,0x81,0x45,0x66,0x6e,0x68, + 0x6b,0x6a,0x50,0xa0,0x97,0x30,0x7b,0x38,0x63,0xbb,0x8b,0x3a,0xd1,0xd6,0x16,0xb2,0x21,0x3f,0x43,0xb1, + 0x86,0xf8,0x62,0x0b,0x85,0x07,0xaa,0x34,0x16,0x38,0x31,0x31,0xae,0xed,0x51,0x44,0x43,0x54,0x32,0x69, + 0x22,0x98,0x7f,0xcb,0x41,0xb8,0x24,0x75,0x19,0x46,0x2e,0x7a,0x20,0xb4,0x2a,0x8a,0x7e,0x7d,0x5b,0x8a, + 0x47,0xa5,0xf8,0xa5,0x14,0x1f,0xca,0xe4,0x58,0x7b,0x4a,0xbe,0x95,0x67,0x4f,0xae,0x96,0xca,0xda,0xf6, + 0x44,0x7c,0x2c,0x93,0x9b,0xe7,0x46,0x84,0x1d,0xeb,0xc8,0x26,0x7e,0xa4,0x68,0xb3,0xc7,0x58,0x5f,0xa7, + 0x82,0x5b,0x64,0xf9,0x64,0xbe,0x9a,0xca,0xf8,0x43,0x29,0xe4,0x95,0x7d,0x5c,0xa4,0x57,0xb1,0x69,0x43, + 0xdd,0x6d,0x73,0xb2,0x11,0x9a,0x70,0x8f,0xdb,0x58,0x68,0x92,0xd2,0x3e,0xba,0x95,0xc8,0x60,0xce,0x12, + 0xbe,0x1b,0xc2,0xc2,0x7a,0xc3,0xb1,0xc5,0xe8,0x59,0x99,0x5b,0xb2,0xd5,0x45,0xcf,0x8c,0x24,0x13,0x6f, + 0xa2,0x76,0x55,0x11,0x18,0xf2,0xce,0x75,0x5d,0xf7,0x61,0xf6,0x8d,0xde,0x58,0x4e,0x86,0x64,0xe1,0xf8, + 0x89,0x96,0xa0,0x51,0x05,0x66,0xa4,0x7f,0xed,0xcb,0x5d,0xf7,0xe5,0x46,0x6c,0xc7,0x19,0xf0,0x51,0x1e, + 0x83,0xdb,0x40,0x07,0xf8,0xa2,0x8d,0xf0,0x9b,0x32,0x14,0x56,0xf4,0x74,0x5b,0xe2,0xec,0x87,0xd9,0x7c, + 0x81,0xf0,0xea,0x42,0x53,0x4e,0x7a,0x60,0x44,0x32,0x68,0xf5,0x3d,0xbf,0xf2,0x3d,0x94,0x04,0xd5,0xbb, + 0xc4,0x76,0xa2,0x4b,0x19,0xe4,0x4b,0x44,0xf2,0xf4,0x7a,0x84,0x10,0xe9,0xbd,0xf0,0xa2,0xe6,0x4b,0x2d, + 0x55,0xf1,0xa6,0x50,0x9b,0x81,0x60,0x0a,0xc5,0xc4,0x88,0x33,0xf8,0xae,0xe2,0x5c,0x45,0x4e,0x9f,0x64, + 0xd3,0x7e,0xa8,0x22,0x57,0x04,0x71,0x8c,0x00,0x6d,0x1c,0x8b,0x25,0x80,0x9a,0x01,0x91,0x95,0xd2,0xe3, + 0xc9,0xc9,0xa8,0x53,0xdb,0x84,0x9c,0x0e,0x85,0xd3,0x5c,0xdd,0x4c,0xa5,0x6d,0x73,0x26,0x88,0x91,0x8c, + 0x92,0x44,0xe7,0xda,0x24,0xb5,0xac,0x04,0x6d,0x44,0x88,0x18,0x72,0xca,0x85,0x01,0xd4,0x79,0xb4,0x95, + 0x09,0x1a,0x52,0x81,0x3b,0x4b,0x45,0x83,0xde,0x88,0x8c,0xc8,0xc5,0x69,0x6e,0x20,0xf5,0x31,0x93,0x40, + 0x47,0x0c,0x21,0x6f,0xfa,0x8a,0x18,0x94,0xe1,0x5b,0xa0,0x40,0x11,0xfe,0x02,0x13,0xc1,0xe8,0x16,0x2e, + 0xf0,0x7d,0x7e,0x1b,0xf3,0x47,0x9b,0x2f,0x50,0xea,0xfa,0x80,0xb6,0x60,0x24,0xde,0xd2,0x21,0x5b,0x67, + 0xf3,0xe4,0x06,0x0e,0x9e,0xf1,0x4f,0xb4,0xcf,0xaf,0x6a,0x82,0x8c,0xf8,0x42,0x2c,0x60,0x92,0xad,0x97, + 0x38,0x7e,0x26,0x54,0x3d,0x6f,0x95,0xfa,0x46,0xc6,0xef,0x36,0xf8,0x54,0x31,0x7e,0x6f,0x61,0x36,0xa8, + 0xd9,0x3d,0x7a,0xb6,0x38,0xf8,0x23,0xde,0xba,0xd5,0x26,0x6a,0x5b,0xdd,0x62,0x78,0xed,0xbe,0x32,0x06, + 0xd8,0x5d,0xee,0x57,0x91,0x57,0xfb,0x60,0x7c,0x9a,0x56,0x32,0xa1,0xc1,0x5d,0x84,0x5e,0xaa,0x5d,0xca, + 0x8a,0x50,0x8a,0x1a,0x6b,0x25,0x6f,0xa1,0x8e,0x21,0x5e,0xa7,0xf5,0xc6,0x75,0x1e,0x6f,0xe6,0xab,0xb3, + 0x4c,0xc5,0x55,0xed,0xcc,0xe0,0x1b,0xed,0x18,0xd9,0x1b,0x8f,0xc8,0x1a,0x77,0x43,0x34,0xf8,0x02,0x45, + 0x76,0x36,0xc9,0x67,0xc7,0x24,0x69,0xef,0x09,0x2d,0x9f,0xe8,0x90,0x39,0x20,0xf6,0x08,0x37,0x3a,0xb2, + 0x4f,0xc6,0x51,0x03,0x46,0xef,0x5d,0x5f,0x40,0x8f,0xe5,0x5d,0x08,0xc6,0x3c,0x9b,0x6f,0x4c,0xc6,0x0b, + 0xb6,0xc8,0xae,0xb2,0x6e,0x6f,0x69,0x8c,0xd4,0xe9,0x5f,0xfc,0x57,0x61,0x2b,0x68,0xca,0x69,0x69,0x9f, + 0x25,0x07,0x5a,0x40,0x7b,0x38,0xac,0x07,0x0a,0x72,0x9a,0xce,0x17,0x09,0xeb,0x6c,0x3c,0x22,0x9c,0x0f, + 0x50,0xfa,0x52,0xdd,0x6b,0x8b,0xfd,0xaa,0xae,0x0d,0xc4,0x13,0x8b,0xf4,0x80,0x1c,0xa0,0x2f,0x34,0x16, + 0xe8,0xc6,0x59,0x05,0xf1,0x3f,0xd4,0x6d,0x87,0x36,0x86,0x8a,0x0a,0x97,0xdd,0x8c,0x80,0x6d,0x56,0x2c, + 0xab,0xd9,0x25,0x42,0x47,0x0c,0x48,0xdd,0x71,0xdf,0x86,0x25,0x8f,0x96,0x88,0x7c,0x75,0x53,0x92,0x22, + 0xf0,0x34,0x0d,0x11,0x37,0xae,0xa7,0xde,0xd4,0xe4,0xfe,0xbc,0xd0,0x69,0xbb,0x5a,0x42,0x45,0xe3,0x8a, + 0x6c,0xcb,0xa7,0x9d,0xf0,0xf4,0xab,0xe2,0x59,0xc8,0x0e,0x7d,0x69,0xcb,0xd8,0x4a,0x5b,0x36,0xb8,0x4a, + 0x24,0x6d,0x80,0x75,0x5b,0x6a,0xb8,0xdd,0x86,0x29,0xd5,0x6e,0x66,0xde,0x6c,0x26,0x67,0x47,0x0f,0xd3, + 0x84,0x5e,0xc3,0x5c,0x3f,0x50,0x8a,0x82,0x98,0x5c,0xfd,0xd2,0x3b,0x76,0x50,0x8e,0xbf,0xb7,0xba,0x4d, + 0x30,0xe7,0xcb,0xc1,0x64,0x85,0xba,0x20,0x65,0x7b,0x3b,0xb2,0x1f,0x82,0x9d,0x3d,0xe3,0x0e,0xe7,0x66, + 0xd6,0x74,0xc4,0xe4,0xd4,0x7c,0xef,0x4a,0x4a,0x5b,0xd0,0xfa,0xdf,0xe1,0xce,0xdb,0xd4,0x29,0x5c,0x33, + 0xf6,0x70,0x12,0xe9,0x66,0x43,0x08,0x20,0x22,0x02,0x03,0xc8,0xe0,0x96,0x1e,0x3e,0x62,0xcf,0x0f,0x5f, + 0x3b,0xe3,0x39,0x96,0x84,0x5e,0x58,0x00,0xe5,0x2c,0x56,0x84,0xb9,0x0a,0x1e,0x9f,0x73,0xf4,0x7d,0x0d, + 0x85,0xd6,0x9c,0xb5,0x81,0x82,0x74,0xbf,0x71,0x11,0x8f,0x1f,0x53,0x40,0x55,0xd4,0x25,0x5b,0xe4,0x70, + 0x2b,0x37,0x88,0x5c,0x19,0xe7,0x42,0x07,0x32,0xcf,0x37,0xc6,0xdf,0xa7,0x81,0x05,0x61,0x52,0x98,0x73, + 0x8c,0xbd,0xce,0x3c,0xd8,0x92,0x77,0xe3,0xfc,0xcf,0x4d,0x21,0x5e,0x56,0xbd,0x53,0x5e,0xc6,0xca,0x25, + 0xfa,0x8f,0xfc,0xaf,0x7e,0x58,0x55,0xa5,0x76,0x8a,0xdc,0xf6,0xa6,0xf6,0xd1,0x48,0x93,0x9b,0x54,0xb4, + 0xbc,0xfb,0x16,0xfd,0xa4,0x8a,0xe1,0xf1,0x96,0xc1,0xea,0xfa,0xde,0xe0,0xdb,0xc1,0xe1,0x7d,0x15,0xa0, + 0xe5,0xc7,0x52,0xfc,0x51,0x8a,0xdf,0x4b,0xf1,0xbc,0x14,0x3f,0x95,0xe2,0x87,0x52,0xfc,0x5a,0x8a,0x7f, + 0x97,0xe2,0xb7,0x92,0x03,0x69,0xf0,0x7d,0xca,0xfa,0x2e,0x55,0xf1,0x33,0xa7,0xf1,0x9d,0x31,0x02,0xf5, + 0x12,0x95,0x99,0x0a,0x35,0x2b,0x42,0xdd,0x9b,0x03,0xd2,0xf0,0x0c,0x06,0x83,0x20,0x59,0xb3,0x5b,0x7c, + 0x89,0xdc,0xbd,0xe1,0xb4,0x16,0x3f,0x97,0x2c,0x4b,0x0b,0x54,0x8c,0x62,0xb8,0x5c,0xe0,0x76,0x55,0x73, + 0x0b,0x8f,0x2e,0x14,0xa8,0x46,0x78,0x51,0x29,0x97,0x68,0x92,0xc9,0x17,0x97,0xa9,0x2e,0xb1,0xd1,0x79, + 0x36,0x12,0x3a,0x72,0x20,0x60,0x2e,0x38,0x87,0x08,0xb7,0x0c,0x9d,0x9f,0xa8,0x4b,0xd4,0xe5,0x34,0xab, + 0x61,0x3a,0x27,0xa6,0x65,0x7a,0x76,0xc6,0x4f,0xd5,0x52,0xce,0xe7,0x5c,0x33,0xf5,0x3d,0xe7,0xc2,0x74, + 0x04,0x14,0x97,0x33,0x42,0xed,0x15,0xa1,0x2e,0xe2,0x27,0xd9,0x19,0x53,0xa4,0xab,0xba,0x98,0x15,0x93, + 0x55,0xc5,0x4f,0xcb,0x79,0x7a,0x2d,0x74,0x87,0x38,0xe4,0x08,0x9d,0xd6,0xb0,0xce,0x23,0x72,0x75,0x5e, + 0xd1,0x11,0x4e,0x73,0x57,0x4a,0x61,0xc8,0x3a,0xfd,0x6b,0xca,0xeb,0x57,0xee,0xb3,0x79,0x31,0x43,0xc7, + 0x3b,0xb1,0x3c,0xd3,0xac,0x42,0xf7,0xa6,0x42,0xe6,0xea,0x17,0xb1,0x0b,0xf2,0x82,0xa6,0x30,0x03,0xe4, + 0x8a,0xf3,0x6c,0x3a,0xa5,0xae,0xe1,0x58,0xac,0x65,0xb9,0xc8,0x72,0x24,0x12,0x44,0x95,0xb5,0xc8,0xaa, + 0x45,0xba,0x14,0x59,0x2d,0x17,0x2a,0xc6,0xc9,0xbc,0x28,0x96,0xc2,0x5c,0xdf,0x24,0x54,0xa3,0x79,0x81, + 0x20,0x2d,0x02,0x81,0x25,0xaa,0xec,0x0f,0x5a,0xa4,0xa2,0x3a,0x4f,0xc1,0x6b,0xba,0x16,0xf2,0x02,0x71, + 0xa3,0x68,0x9d,0xa9,0x99,0x65,0x4a,0x68,0x88,0x76,0xea,0x55,0x56,0x13,0x39,0x9b,0x4e,0x8b,0x7c,0x8e, + 0x78,0x2a,0xbf,0xaf,0x68,0xdf,0x4d,0x85,0x76,0xaa,0x9c,0x0a,0xc5,0x0f,0x11,0x4c,0xa4,0x8b,0x39,0x01, + 0x83,0xb0,0x63,0x82,0xf7,0x25,0xcf,0xb6,0xbd,0x30,0x85,0xc3,0x81,0xd2,0xdc,0x53,0x26,0x60,0x1e,0x21, + 0x25,0x38,0xfa,0xbb,0xb8,0xc8,0xaa,0x8c,0x4a,0x22,0xc0,0x7b,0x96,0x04,0xe7,0x75,0xbd,0x8c,0xef,0xde, + 0xbd,0xbc,0xbc,0x1c,0x5c,0xde,0x1f,0x14,0xe5,0xd9,0xdd,0xc3,0xef,0xbe,0xfb,0xee,0xee,0xd5,0x3c,0xcb, + 0xbf,0x04,0x22,0xcb,0x3a,0x0e,0xd8,0x20,0x6e,0x38,0x9f,0x7c,0x0b,0x28,0x53,0xe5,0x39,0xd9,0x04,0xe7, + 0xf9,0x16,0x9e,0x76,0x5d,0xdf,0xef,0x64,0xb0,0xc4,0xb5,0x7e,0x25,0xff,0x14,0x46,0x9e,0xc9,0xd1,0x5a, + 0x44,0xda,0xf9,0x8d,0x22,0x8e,0x09,0x10,0x77,0x0f,0x15,0xd8,0x55,0x59,0x72,0x53,0x5d,0x10,0x31,0xbc, + 0x3d,0x82,0x7b,0x07,0x07,0x07,0x77,0x29,0x2f,0x20,0x9e,0xa9,0x3e,0xef,0x2a,0x41,0x63,0xfc,0xd7,0x5d, + 0xdc,0x3d,0xca,0x7f,0x5e,0xbe,0xa0,0x66,0x27,0x0c,0x99,0xe7,0xf5,0x62,0x2e,0x4e,0x8b,0xe9,0xb5,0x00, + 0x0a,0x14,0xe7,0xb4,0x14,0x02,0x43,0x13,0x88,0x39,0x2e,0xd4,0xae,0xad,0xb3,0x9a,0xfe,0xa6,0xd3,0x29, + 0xf6,0xa3,0x48,0xcb,0x3a,0x9b,0xe0,0xbd,0xa2,0x3d,0x41,0x40,0x54,0xe0,0x76,0x4c,0x7c,0x87,0x9f,0x43, + 0x71,0x7e,0x4f,0x9c,0xdf,0x17,0xe7,0xdf,0x88,0xf3,0x6f,0xc5,0xf9,0x3f,0xc5,0xf9,0x59,0x59,0xac,0x96, + 0x22,0x4f,0x2f,0x68,0xed,0x78,0x8c,0x04,0x88,0x17,0x62,0x4a,0x50,0x39,0x17,0xd3,0x5a,0x10,0x31,0x0b, + 0xdf,0x1a,0xa4,0xb3,0x19,0xaa,0x14,0xcb,0x6c,0x02,0x57,0x1b,0x71,0x4e,0x5c,0xfa,0xe2,0x8c,0x3a,0x43, + 0x83,0xa2,0xd3,0xab,0x98,0x8b,0x25,0x8c,0x1a,0xc5,0x6a,0x2e,0x52,0x71,0x4a,0x6c,0xe4,0x69,0x29,0x4e, + 0xa7,0x19,0xfd,0x2f,0x04,0x3d,0x4e,0x08,0x3c,0x39,0xfe,0x90,0xe0,0x4b,0xe2,0xa7,0x33,0x3a,0x1c,0x17, + 0x22,0x13,0x5f,0x4e,0xa7,0x54,0x41,0xf9,0x45,0xfc,0x2e,0xca,0xa5,0x20,0x60,0x2e,0xeb,0x89,0x28,0x57, + 0xa7,0xd7,0x44,0xc5,0x57,0xe9,0x62,0x29,0x08,0xb6,0x89,0xe4,0xaa,0x96,0x29,0xa1,0x1e,0xda,0x6b,0xc4, + 0x6c,0x56,0xab,0x53,0xfa,0xbf,0xe4,0xfb,0x62,0xc5,0x4a,0x10,0x72,0x13,0x97,0xa7,0x10,0x9e,0x13,0x92, + 0x4a,0x57,0xd3,0xac,0x10,0xd8,0x0e,0x60,0x62,0xbf,0x08,0x46,0x0c,0xd4,0xd2,0x29,0x81,0x9d,0xf2,0x03, + 0x83,0x11,0x6a,0xba,0x20,0x00,0x5d,0x95,0xc4,0x7f,0x4c,0xd2,0xfc,0x22,0xa5,0x96,0x26,0x65,0xb6,0xac, + 0xb1,0x29,0xd4,0x03,0xd1,0xdc,0x30,0x72,0x13,0x66,0xec,0x13,0x1a,0x1e,0xfd,0x57,0x93,0xa5,0x01,0x9b, + 0xd7,0xa2,0xe6,0xb5,0xa9,0xe9,0xe1,0x9c,0x5a,0x14,0x0a,0xb9,0xf1,0x10,0x61,0x3e,0x40,0x73,0x26,0xe7, + 0x53,0xa2,0xe4,0x79,0x33,0x0b,0x85,0x50,0xe7,0xe9,0x29,0xd5,0x3e,0x97,0x67,0x20,0x02,0x16,0xd8,0xcc, + 0x40,0xad,0xaa,0x6a,0x8d,0x63,0x8b,0x55,0x8d,0x92,0x06,0xc7,0x1a,0x9c,0x6b,0x51,0x31,0xa1,0x80,0x34, + 0x03,0xd6,0xc9,0xd2,0x79,0x71,0x46,0x95,0xe4,0x2b,0xfe,0x03,0x14,0x40,0x53,0xb3,0xa0,0x09,0xbd,0x16, + 0x1a,0x03,0x0a,0xa9,0x64,0x0e,0x02,0xfb,0xbd,0xb8,0x14,0x26,0x68,0x96,0xe0,0xb0,0x64,0xbf,0xaf,0x0a, + 0xa0,0x91,0x59,0x09,0x72,0xaf,0x06,0xb4,0xe0,0xc6,0x60,0x06,0x3d,0x02,0x58,0x91,0xe6,0xd9,0x02,0x65, + 0x27,0x59,0x39,0xe1,0xf3,0x21,0x5b,0x2e,0x09,0x40,0xc5,0x64,0x55,0xd2,0x0e,0x07,0xe6,0x02,0xea,0xab, + 0x26,0xd4,0x08,0x65,0x11,0x80,0xaa,0xf8,0x3e,0x34,0xdc,0xbc,0xde,0x9f,0xa5,0x13,0x00,0x60,0x29,0xb3, + 0xb3,0x5c,0x1d,0x82,0xe2,0x4c,0x9c,0xcd,0xaf,0x97,0xe7,0x04,0x39,0xe9,0x99,0x04,0x20,0x4b,0x5e,0x7c, + 0x09,0x69,0x42,0x45,0x40,0x9d,0x55,0xb8,0xbd,0x6c,0x5f,0x15,0xe2,0x96,0xe8,0x0f,0x55,0x48,0x08,0xa9, + 0x98,0x5f,0x9f,0x15,0xff,0x5f,0x7b,0x5f,0xbb,0xde,0xb6,0x91,0xa4,0x7b,0x2b,0x14,0x46,0x47,0x06,0xc2, + 0x16,0x25,0xd9,0x49,0x66,0x02,0x1a,0xe6,0x3a,0x76,0x9c,0x38,0xf1,0xd7,0xc6,0x9e,0x64,0x26,0x14,0xa3, + 0x85,0x48,0x88,0x82,0x4d,0x02,0x1c,0x10,0xa4,0xac,0x88,0xbc,0xa0,0xfd,0x7b,0x2e,0x61,0xf7,0xc6,0x4e, + 0xbd,0x55,0xdd,0x8d,0x06,0x08,0xd9,0x4e,0x66,0x77,0xcf,0xf9,0x71,0x1e,0x3f,0x16,0x81,0x46,0x7f,0x56, + 0x57,0x57,0x57,0x57,0xd7,0x87,0xfc,0x72,0x39,0xec,0xff,0x4a,0x8c,0xa8,0xd5,0x92,0x9d,0x6c,0x30,0x7c, + 0xf8,0x0f,0x97,0x2c,0x19,0x67,0xc0,0x4d,0xad,0xd3,0xe4,0x4a,0x7c,0x43,0xcd,0x5a,0xd7,0xf2,0x58,0x34, + 0xf1,0x57,0x1c,0x97,0x9b,0x86,0xd0,0x7a,0xa0,0x5a,0x30,0x50,0xb8,0x09,0x89,0x1d,0xc8,0xa6,0x66,0x57, + 0x79,0xc1,0xe4,0xaf,0xa0,0x5e,0x24,0xb4,0x10,0xd0,0x89,0x99,0x5a,0x15,0x70,0x8a,0x3d,0x49,0x9b,0x4e, + 0xad,0x6a,0x42,0xa0,0x56,0xcd,0xdf,0x5b,0x1c,0x6f,0xd9,0x00,0xc5,0x7a,0xc3,0x64,0x47,0xe3,0x83,0x2c, + 0xf4,0x13,0xad,0x44,0x9b,0x38,0x4a,0xb4,0x07,0x07,0x4e,0x7c,0xa4,0x2a,0xd9,0x06,0xf4,0x83,0x26,0x4c, + 0x3d,0xc0,0xba,0xf9,0x02,0x5f,0x4b,0xe6,0x31,0xe0,0x60,0x81,0xb5,0x6e,0xbc,0x78,0xdd,0xe8,0xb3,0x86, + 0x5f,0x7b,0xa7,0x5f,0xbc,0xf6,0x97,0x50,0x4d,0x61,0x43,0x61,0xf9,0xf2,0x86,0xa0,0x87,0x58,0x90,0x61, + 0xcb,0x24,0x34,0x2a,0x31,0x59,0x79,0x4a,0x24,0x49,0x7b,0x0c,0xf8,0x84,0xc2,0x3a,0x27,0x97,0x15,0x5d, + 0xd5,0xaf,0x59,0x3a,0xbd,0x63,0x3d,0xce,0x27,0x40,0xfb,0xd9,0x97,0x00,0x89,0xa2,0xa9,0xcf,0x0a,0x4c, + 0x8d,0xf1,0x9a,0x20,0xe4,0xfc,0x0d,0x21,0x3f,0x14,0x62,0x06,0x67,0x93,0xf6,0xbc,0xce,0x37,0xce,0x5b, + 0xc5,0xc2,0x6c,0x1b,0x42,0xe9,0xc4,0xca,0xdc,0x2a,0x1c,0xf4,0x5f,0xd3,0xb6,0x48,0xab,0xa1,0x3d,0xb3, + 0x93,0x61,0x8b,0xe8,0x61,0xec,0xaa,0xa9,0x35,0xa7,0xfe,0xb8,0x85,0xd1,0x00,0xa0,0xfa,0x48,0xe8,0xc2, + 0x4e,0x77,0xcb,0xea,0x5b,0x24,0xb9,0x2d,0x86,0xb4,0xc0,0xad,0x86,0x40,0x0c,0x37,0x78,0x6c,0xa3,0x3d, + 0x50,0x66,0xa0,0x51,0xfb,0xd7,0x25,0x43,0x40,0x33,0xe1,0xcd,0x96,0x19,0x47,0x89,0x3b,0xa9,0x10,0x56, + 0x1c,0x09,0x7f,0x0d,0x99,0x1a,0x96,0x2d,0x17,0xbf,0x45,0x83,0xd7,0x64,0xda,0x6e,0x69,0x9d,0x6b,0x87, + 0x13,0xbe,0x47,0x5c,0xf4,0x56,0x21,0x56,0xcb,0x3c,0x85,0x37,0x32,0xe3,0x61,0xcc,0x28,0xc8,0x5a,0xdf, + 0x61,0xec,0x21,0x02,0x53,0x5a,0xf9,0x0c,0xf3,0x46,0x6a,0x5a,0x8d,0xe3,0xa7,0xd2,0xf4,0xfa,0xa7,0xb2, + 0xb5,0xfd,0x9f,0xd0,0xfe,0x3a,0x45,0xfb,0xd7,0xed,0x94,0xe3,0x8c,0xba,0x70,0x99,0x52,0xa5,0x23,0x75, + 0x5e,0x55,0xfc,0x0f,0x5b,0xf1,0x3f,0x88,0x7b,0xb8,0xaa,0x3e,0x7c,0x6f,0x3f,0x7c,0x4f,0x1f,0xde,0xa7, + 0xd1,0xd1,0xf0,0xf4,0x2a,0xe8,0x75,0x4f,0x0f,0xcf,0xf6,0x4f,0x47,0xa3,0x23,0xb5,0x9f,0xc2,0xbb,0x16, + 0x9d,0x31,0xde,0xf1,0xc3,0xd8,0x53,0x8f,0xaa,0xd2,0xc4,0xfe,0xe9,0xd2,0x0b,0x9a,0xc4,0x87,0xd5,0x87, + 0x89,0xfd,0x00,0xfc,0x7a,0x9d,0xb6,0xda,0xf1,0x72,0x54,0xb9,0xa3,0xd0,0xef,0x75,0x83,0x23,0x7b,0x67, + 0xab,0xcd,0x2c,0x8f,0xfa,0xfe,0x60,0x6f,0xf8,0xab,0x3f,0xfa,0xec,0x34,0x08,0x8e,0xa6,0xed,0x1a,0x69, + 0x30,0x20,0xa8,0x1c,0xb7,0x4a,0x41,0x68,0x0f,0xd8,0x7b,0x50,0x88,0xdc,0x87,0x88,0x89,0xaa,0xc3,0xf3, + 0x8c,0xa2,0xa2,0x0a,0xe5,0xc3,0x48,0x94,0xd0,0xff,0x37,0x34,0xea,0x5f,0x0f,0x0f,0x8f,0xd4,0x4b,0x7a, + 0x38,0x5d,0x7e,0xb6,0x97,0xce,0x61,0x39,0x1d,0x67,0xe5,0xfe,0x91,0x7a,0xbb,0x7b,0xde,0xa0,0x66,0xdf, + 0xe8,0x90,0xf0,0x84,0x28,0xa5,0xc4,0xf2,0x03,0x8e,0xda,0xf3,0x56,0xe2,0x9a,0x6c,0xbc,0xd4,0x79,0xb3, + 0x5b,0xf3,0x5a,0xbf,0x79,0x2f,0x53,0x8e,0x3d,0xe4,0xd9,0x0e,0xb8,0x81,0xe1,0x8a,0xe8,0x9b,0xd4,0x17, + 0x87,0xf4,0xf5,0x3b,0xf2,0xac,0xa6,0x64,0xd3,0x7a,0xaf,0x2b,0xed,0xe2,0x68,0x8d,0xeb,0x5d,0xe9,0x9a, + 0x9b,0x48,0xf8,0xf4,0x0c,0xb8,0x2b,0x21,0x08,0x09,0x3d,0x9f,0xe7,0xbf,0x81,0x3e,0xd3,0x89,0x54,0x7d, + 0xd3,0x9c,0x3d,0xea,0xc0,0x2f,0x45,0xf4,0x4b,0xf1,0x11,0xcf,0x8d,0x52,0xbd,0xf5,0xc2,0xb7,0xc7,0x96, + 0xd7,0x88,0x08,0x01,0x25,0x44,0x96,0xae,0xff,0x52,0x58,0x51,0x9b,0x7b,0x4f,0xf6,0x09,0x5e,0x09,0xb5, + 0xaf,0x8b,0x67,0x69,0x8b,0x43,0xcd,0x67,0xe9,0x30,0x1b,0x75,0x59,0x3a,0x5d,0xd4,0x5b,0x29,0x30,0xe3, + 0xaf,0x2a,0x2c,0x9d,0x5b,0x2c,0x05,0xc5,0x7a,0xda,0x1c,0xa7,0xb6,0x05,0x4f,0x6c,0xf8,0xf9,0x90,0xce, + 0xe8,0x87,0xfc,0xea,0xa9,0xc4,0x89,0x42,0x5f,0xa5,0x1f,0x96,0xb9,0xfe,0xe4,0xc4,0x56,0x76,0x3e,0x8b, + 0xd0,0xd5,0x53,0x55,0x78,0x66,0xfe,0xc8,0xaf,0x3a,0xd5,0xad,0x93,0x13,0xb8,0xce,0x66,0xbc,0x66,0xe7, + 0xb3,0xae,0x13,0x63,0x7b,0x9c,0xb2,0x2f,0x31,0x44,0x5a,0x7e,0x92,0xea,0xf8,0x91,0xec,0x33,0xd6,0x53, + 0x2f,0xe8,0x5d,0x18,0x2c,0x7e,0x7d,0xde,0xf8,0xfc,0x63,0xed,0x9d,0x76,0x12,0x4f,0x7d,0x5d,0x2f,0xf1, + 0xb3,0xfb,0x8a,0x0c,0xfd,0xc7,0x10,0xfe,0x5b,0x3f,0x0d,0xda,0x81,0x19,0xce,0xa8,0x4e,0x35,0x0e,0x7b, + 0x60,0x33,0x5c,0x31,0x92,0x35,0xb2,0xf9,0xe8,0x91,0x13,0x01,0xd3,0xe9,0xd7,0x55,0x23,0xf5,0x9b,0x0c, + 0x97,0x93,0xbb,0x0d,0xbb,0xbd,0xbb,0xbd,0xdd,0x7a,0x2e,0xff,0x6b,0xdb,0xec,0xc3,0xfa,0x58,0xaf,0xea, + 0x89,0xdc,0xa8,0x68,0x21,0xfc,0x15,0x50,0x1e,0xe8,0x6a,0x71,0x4c,0xa5,0xd5,0x6d,0xf3,0x3d,0x01,0x73, + 0xfb,0xc1,0x8f,0x3d,0x08,0x89,0x7c,0xc9,0x11,0x84,0x95,0x3b,0x84,0xd6,0x0d,0x15,0x57,0xe6,0x3f,0x81, + 0x2c,0x9d,0xfb,0x36,0x60,0xc7,0x86,0xce,0x28,0x81,0xaf,0x36,0xfb,0xc1,0x91,0xfa,0xce,0x21,0x4f,0x3b, + 0x31,0x1d,0x84,0xcb,0x7b,0xe4,0xec,0xf5,0xe0,0xed,0x12,0x16,0x83,0x3d,0xaa,0x71,0x17,0x50,0x73,0x75, + 0x42,0x29,0x70,0x34,0x37,0x71,0x44,0x2e,0x91,0x33,0xea,0xbe,0xa8,0x62,0xe5,0x1a,0x88,0x71,0x4e,0x73, + 0x1b,0x2a,0xfb,0x2b,0x0b,0xd5,0x11,0x69,0x59,0x1b,0x38,0xb5,0x46,0xd7,0x0d,0xe0,0x45,0xc8,0x5e,0x93, + 0xe8,0x22,0x51,0xdc,0x83,0xbe,0x16,0x7d,0x93,0x17,0x08,0x80,0x91,0x11,0xdb,0xee,0x09,0x37,0xa4,0xda, + 0x2b,0x33,0x6b,0x7c,0x89,0x1e,0x11,0x7d,0xf0,0x57,0x41,0x4d,0x71,0xd1,0x04,0xbd,0x70,0x54,0x77,0xca, + 0x7e,0xdc,0x62,0x8a,0x23,0xd1,0xa3,0x5b,0xbe,0x98,0x0b,0xf3,0xc4,0xcf,0xb5,0x71,0x20,0xf7,0x32,0x8f, + 0xdc,0x50,0xac,0x5a,0x5d,0x29,0x27,0xf2,0x94,0xdf,0xdf,0xef,0x19,0x16,0xc0,0x90,0xa9,0x6e,0x37,0x0f, + 0xaa,0xd4,0x61,0x3e,0xf2,0xd7,0x29,0x01,0xb9,0xaf,0x0d,0x0d,0x62,0xa3,0x18,0x34,0x86,0x72,0x0a,0x6e, + 0x8d,0xa9,0xcf,0x5b,0x0b,0x63,0xb5,0x27,0x91,0x12,0xe4,0xcd,0x00,0x57,0x40,0xae,0x2e,0x1c,0xbf,0xda, + 0x1c,0xb4,0x92,0x58,0x31,0x9a,0xeb,0xcb,0x60,0xe0,0x73,0x4d,0x10,0xbb,0x2f,0x07,0x8f,0x76,0xd8,0x66, + 0x24,0xab,0xcb,0x20,0x6c,0x7c,0xf1,0x2f,0x21,0x16,0x9f,0xe0,0xd2,0x61,0x46,0x4d,0x5e,0x00,0xa8,0x09, + 0x03,0x75,0x21,0x10,0x1e,0xc3,0xc7,0x0b,0x77,0x91,0xba,0x12,0x66,0xbe,0xe3,0x0d,0xda,0x36,0xf9,0xa8, + 0xc9,0x22,0x8b,0x27,0xe7,0x46,0xd9,0x46,0xe6,0x8a,0x19,0x6f,0xcb,0xed,0xf8,0x12,0x5e,0xf2,0x1d,0xca, + 0x4d,0x62,0x8c,0xa5,0x74,0xc8,0x77,0xc1,0x52,0x91,0xf4,0x02,0xaa,0xe6,0x32,0x45,0xb5,0x66,0x6b,0x4d, + 0x35,0x1a,0x0d,0x1a,0x6e,0xbb,0xa8,0x00,0xbd,0xa0,0x0b,0xf6,0x22,0xb5,0x10,0xed,0xb8,0x09,0xbb,0x71, + 0x62,0x26,0x32,0x50,0xd6,0x6c,0xc4,0x59,0x53,0x63,0xad,0xd8,0x8a,0xee,0xb2,0x2a,0x00,0x87,0x6b,0x77, + 0x96,0xa6,0x88,0x96,0x1f,0xd5,0xcf,0x08,0x52,0x86,0xe6,0xc6,0x65,0xef,0x4b,0x0e,0xa5,0x6a,0x6b,0x9e, + 0x39,0x7c,0xc9,0x4e,0xd4,0xbc,0xba,0xf6,0xad,0x83,0x87,0x69,0x10,0xfb,0xac,0x52,0x9c,0x69,0xd8,0xf2, + 0x65,0x13,0x14,0x0d,0x99,0x39,0x28,0x0c,0xf4,0xd1,0xa5,0x5a,0xe3,0x9c,0x79,0x67,0xae,0xb4,0x03,0x9b, + 0xd2,0xb8,0xea,0x76,0xfc,0x48,0x1b,0xef,0x18,0xfd,0x36,0xc3,0xb7,0xa0,0x6c,0x85,0xaf,0x2c,0xb5,0x2a, + 0xdc,0xbd,0x84,0xb1,0x72,0xdc,0x48,0xcb,0xd4,0xd7,0x2d,0xd8,0xf6,0x75,0xa7,0xaa,0x41,0x16,0x81,0x49, + 0x23,0x2e,0x07,0x4b,0x8d,0xc9,0xdf,0x95,0x09,0xe7,0xac,0x29,0x0d,0xcd,0xc5,0x95,0xce,0x46,0x6f,0xe6, + 0x51,0xb2,0x2b,0x7c,0x4b,0x0d,0x46,0xb5,0x4d,0xec,0xc4,0x52,0x5a,0x21,0x61,0x50,0xf7,0xb6,0x8e,0x04, + 0x83,0xe0,0x51,0xfd,0xf0,0xa2,0x61,0x0d,0x36,0x4f,0x00,0x5d,0x0d,0x81,0x03,0x08,0xa1,0x7c,0x65,0x5d, + 0x09,0xfa,0xc2,0x96,0x49,0xf6,0x6e,0x62,0xa9,0xeb,0xc5,0xb4,0xdc,0x56,0xb1,0xaa,0x82,0x0d,0x81,0xd8, + 0x47,0x67,0x08,0xd1,0x99,0xb1,0x2b,0x73,0x5d,0xb1,0x79,0xb5,0xce,0x11,0xff,0x58,0x43,0x15,0x10,0x2e, + 0x5d,0xcf,0x8e,0x7a,0xba,0x8b,0xfb,0x51,0xca,0x73,0x10,0xfb,0x1c,0x1c,0x27,0x57,0xf5,0xb8,0x45,0x6b, + 0x0b,0x38,0x8e,0xd6,0xe3,0xee,0x1c,0xa9,0x20,0x2e,0xfa,0x94,0x56,0xfb,0x01,0x3a,0xa8,0x0f,0x45,0x18, + 0x50,0xe5,0xf2,0x6c,0xdf,0x24,0x57,0x33,0x9f,0x05,0x36,0x91,0xb8,0x41,0x1d,0x78,0x45,0x26,0xa7,0x0a, + 0xbc,0xae,0x23,0xfa,0xb0,0xe7,0xff,0xa6,0xed,0x23,0x3a,0xbe,0xf6,0x9d,0x70,0x10,0xc5,0xc8,0xe9,0xfb, + 0xbc,0xbe,0xa3,0x54,0x63,0xd5,0xdb,0x20,0xbb,0x80,0x4b,0xc4,0x67,0x17,0xfd,0x30,0xf6,0x0e,0xfc,0x29, + 0xee,0xe6,0xd6,0xd8,0x17,0x43,0x04,0x38,0x82,0x52,0x90,0x4b,0xcf,0xa6,0x82,0xd4,0xd2,0x51,0x18,0x6f, + 0x6a,0xc2,0x16,0xd8,0xe8,0x44,0xd1,0xbe,0xde,0xb5,0x6d,0x30,0xd9,0xbe,0x86,0x53,0x30,0x70,0x2c,0x68, + 0xbb,0x51,0x1a,0x36,0x55,0x9b,0x6b,0x0a,0xc1,0xc4,0x36,0x1d,0x1e,0x3a,0x05,0x70,0x37,0x56,0x56,0x11, + 0xa6,0xaa,0x0f,0x11,0x4d,0xea,0xd6,0x37,0x3b,0x11,0x2d,0x86,0x56,0x3b,0x5b,0x9e,0x1d,0x20,0x9d,0x56, + 0x82,0xe0,0x57,0xb3,0x43,0x4e,0x11,0x2d,0x23,0x50,0x66,0x89,0xd6,0xfa,0xaf,0x97,0xa8,0xa4,0x61,0x89, + 0x96,0x7c,0x70,0xe2,0x56,0xdc,0x15,0x9a,0xe8,0xc0,0xbb,0xc8,0x16,0x98,0x08,0x55,0xd0,0xf3,0xe6,0x25, + 0x94,0x4b,0x07,0x9d,0xe9,0x81,0x7a,0x33,0xd8,0x97,0xa5,0x04,0xe4,0x22,0x5c,0x4f,0x4d,0x9c,0xcd,0x94, + 0x69,0x7a,0x81,0xbf,0xac,0xef,0x82,0x48,0xae,0x3b,0x7e,0x2f,0x03,0x5a,0x87,0x69,0xcd,0x73,0xa6,0xf1, + 0x6e,0x35,0x09,0x06,0xe7,0x7e,0x21,0xf0,0x40,0x6c,0xe1,0xb4,0xd5,0x6b,0xe6,0xb1,0x3d,0xfc,0x11,0x57, + 0x66,0x3d,0x7b,0x32,0xd2,0x16,0xee,0x6b,0xca,0xce,0x45,0x23,0x89,0x14,0x86,0x0d,0x8b,0x73,0x8b,0x3f, + 0x4f,0x42,0x00,0x79,0x7d,0xc9,0xec,0x4d,0x90,0xb6,0xe8,0xb9,0x14,0x6d,0xa6,0xc4,0xe6,0xbc,0xb8,0x42, + 0x84,0x61,0x59,0x54,0x89,0x3f,0x63,0x28,0xae,0xa2,0x59,0x05,0xd2,0x55,0xb4,0xb2,0x1e,0x03,0x28,0x61, + 0x05,0x98,0x09,0x83,0xbb,0x40,0xc5,0x86,0x95,0x98,0x38,0xf6,0xa3,0xb2,0x88,0x50,0xd7,0x05,0xd6,0x28, + 0xe3,0xfe,0x8a,0x26,0x76,0x45,0x13,0x2b,0x27,0xa9,0x6a,0x62,0x57,0x81,0x49,0x1b,0xae,0x46,0x52,0x77, + 0x4b,0x07,0x24,0x87,0x6d,0x7e,0x5b,0xfa,0xa9,0x6c,0x21,0x83,0xc4,0x5f,0x70,0x2e,0x82,0xf8,0x02,0x0e, + 0x03,0x1c,0x6e,0xce,0x78,0x90,0x5d,0x56,0x3b,0x80,0x8e,0xaa,0x48,0xc7,0xdf,0x05,0xfd,0x9f,0x44,0x95, + 0x83,0x16,0xb5,0x8e,0x20,0x01,0x50,0x53,0xfa,0x99,0x8c,0xd4,0x99,0xd5,0xd8,0xa6,0x4f,0xe7,0x51,0x8a, + 0x4f,0x57,0xf4,0x73,0x36,0x52,0xef,0xa3,0xbd,0x65,0xff,0xe2,0x3e,0x9a,0x5a,0xdc,0x8f,0xce,0x68,0x6f, + 0xf2,0xd7,0xc1,0x00,0xc5,0xbb,0xdd,0x8b,0x51,0x08,0x7f,0x65,0x03,0xd4,0x72,0x78,0x38,0x19,0x85,0x3f, + 0xd3,0x47,0x75,0x4e,0x8b,0xfa,0x1a,0xbf,0x60,0xce,0x4c,0x46,0xae,0xb5,0xdb,0x5d,0x8c,0x02,0x64,0x9a, + 0xaa,0x2b,0xce,0x44,0xbf,0xc8,0x64,0xca,0x73,0x9b,0x87,0x87,0x67,0x92,0x69,0xad,0x33,0xad,0x25,0xd3, + 0xfb,0x1d,0x3e,0x20,0x53,0x6b,0xbd,0xef,0x3a,0xa2,0x38,0x7f,0x2a,0x24,0xa4,0x6a,0xb9,0x56,0xe9,0x54, + 0x77,0x6f,0x2a,0xdd,0x6b,0xab,0x94,0x2b,0x90,0xaa,0x9d,0xae,0x55,0xfd,0xf7,0x4b,0x71,0x77,0x31,0x8e, + 0xfe,0x0a,0xcb,0xf6,0x0b,0x35,0x81,0x22,0xa0,0x0f,0x86,0xfe,0x9c,0xa3,0x92,0x0e,0xc6,0x43,0x7e,0x18, + 0xb5,0xb8,0xf9,0xb0,0xac,0x76,0x74,0x41,0xbc,0x70,0xda,0xcf,0xcd,0x11,0x1d,0xe4,0x31,0x1f,0x99,0x33, + 0xc2,0xc1,0xc1,0xcf,0x10,0x6a,0xc5,0x96,0x83,0xcf,0x89,0xc7,0x3d,0xa7,0x2a,0x8e,0xd1,0xda,0x20,0xa6, + 0xe7,0x5c,0xe9,0xf1,0xf3,0xb8,0x66,0xd4,0xcf,0xd5,0x48,0x0f,0x6e,0x26,0x83,0x43,0x8a,0xf1,0x65,0xdb, + 0x36,0xd0,0x99,0x33,0xd0,0x20,0xac,0xd7,0x59,0x8d,0xb7,0x7f,0xf1,0x60,0x02,0xd5,0x79,0x1a,0x22,0x21, + 0x44,0xf7,0x64,0x14,0x48,0x40,0x46,0x79,0xd1,0x8b,0x7e,0xa1,0xce,0xb0,0xf0,0x17,0x0f,0xce,0x0e,0x0e, + 0xe6,0xfe,0xb1,0x12,0xb0,0x6c,0xfd,0x31,0x47,0xf4,0x04,0x52,0x86,0x8c,0xb4,0xe0,0xf0,0x2a,0x16,0xaa, + 0x2e,0x0e,0xa5,0xcc,0xd8,0xa7,0x2f,0xe9,0x97,0xd9,0xae,0x09,0x06,0x5b,0xa1,0x25,0x98,0x62,0xa0,0xff, + 0x00,0xf5,0x2f,0xe8,0xdb,0xa2,0x8a,0x7c,0x18,0x7e,0xb4,0xda,0x50,0xbe,0xef,0x71,0xbc,0x1a,0xde,0xdb, + 0x5b,0xf2,0xe9,0x55,0xa6,0x6e,0xa7,0x0c,0xf9,0xb2,0xac,0x93,0x86,0xad,0xb3,0x55,0x9d,0xc9,0x29,0x84, + 0xc9,0x2b,0x0e,0x9e,0x28,0x65,0xc3,0x4b,0x07,0xe6,0xa9,0x8d,0xb3,0x2e,0xea,0x6c,0x8f,0x1c,0x94,0x0a, + 0xf7,0x7c,0x54,0x10,0x72,0x54,0xd4,0x5f,0xcf,0xa4,0x5f,0xb0,0x27,0x55,0xdb,0x81,0xf3,0xc6,0xc1,0x53, + 0x8d,0x11,0xa5,0x29,0x9e,0x22,0xb2,0xba,0x39,0x0f,0x15,0xf5,0x38,0x43,0x51,0xbe,0xd9,0xac,0x68,0x30, + 0x20,0x7a,0xaa,0x10,0xd6,0x5e,0x09,0x41,0x36,0xe7,0x16,0xd9,0xb8,0x5c,0xba,0x6f,0xb1,0xb2,0x6d,0x9b, + 0x80,0x66,0x35,0xd1,0x7a,0x46,0xe4,0x95,0xde,0xea,0x09,0x74,0xed,0x07,0xd8,0x42,0x4c,0x05,0x29,0xb1, + 0x85,0x6a,0x07,0xce,0xf9,0x15,0x70,0xb5,0xd5,0x8e,0x03,0xcd,0x10,0x5c,0x04,0x1c,0x60,0x1a,0x2e,0xbc, + 0x98,0x11,0x07,0xd7,0xbd,0xf4,0x39,0x91,0x5b,0xb5,0x0d,0x9a,0x30,0x71,0x4e,0x0f,0x74,0x3c,0x14,0xa9, + 0x2a,0x66,0xce,0xaf,0x4a,0xb4,0xe1,0x37,0x78,0xe3,0x30,0xf3,0xc2,0x5a,0xe3,0x38,0x45,0x5e,0xa4,0xc5, + 0xb2,0xe4,0x16,0x89,0xcc,0x1c,0xf7,0xd7,0xf7,0x2f,0xcc,0x5c,0xad,0x8d,0x6b,0xbb,0xcb,0xcd,0x66,0xef, + 0x9c,0xce,0x8b,0x17,0xc3,0xf5,0x48,0x9f,0x4c,0x61,0x8a,0xae,0x8f,0xb2,0x97,0xd1,0x65,0xed,0xfe,0x00, + 0x25,0x26,0x9b,0xcd,0x65,0xbd,0x61,0x3a,0xc5,0x60,0x21,0xa5,0x81,0x81,0xa6,0xcc,0xeb,0xdc,0x75,0xb3, + 0x32,0x85,0x34,0x6f,0x85,0x11,0xef,0x3d,0x24,0x5a,0x1c,0xdc,0xcc,0xd1,0xc9,0x85,0xec,0x2d,0xd2,0xd8, + 0xde,0x1c,0x13,0xcc,0x9a,0x25,0x70,0x0e,0xa7,0x1f,0x8d,0x9b,0x49,0x41,0xc8,0x3d,0x0e,0xe8,0xc5,0x0b, + 0x43,0x33,0x58,0xfa,0xdd,0x5c,0x7b,0xed,0x49,0x98,0x98,0x2b,0xf5,0x5e,0xed,0x43,0x48,0xfd,0x0e,0xb1, + 0xe3,0xf3,0xc9,0x6a,0x96,0x2c,0xd5,0x23,0x7a,0x06,0x8f,0xf3,0x52,0xab,0x7d,0x5d,0x11,0x4c,0xae,0xee, + 0xcf,0xd3,0x0a,0x81,0xaf,0x98,0xad,0xdc,0x1f,0xce,0xd3,0xe1,0xd5,0x68,0xc4,0x4e,0x20,0x39,0x16,0xeb, + 0xbb,0x2a,0xcb,0x7b,0x62,0x2f,0xde,0x0d,0xdf,0x8f,0x74,0x1e,0x9a,0x29,0x93,0x5d,0xce,0x17,0xee,0x37, + 0xde,0x90,0x1f,0xb2,0xde,0x08,0xee,0xd5,0x44,0x6b,0x46,0x07,0x0f,0x7b,0xe4,0x3c,0xbf,0x66,0x61,0x2b, + 0x91,0xe2,0x16,0xf7,0x84,0x7a,0xb7,0x44,0x78,0x36,0x6d,0x5f,0xc1,0xbb,0xb7,0x78,0x88,0x81,0x3f,0x55, + 0x18,0x68,0x03,0xbb,0x60,0xaf,0x39,0x03,0x50,0x63,0x1f,0x84,0x0e,0xf9,0x1d,0x97,0xa3,0x11,0x16,0x07, + 0x06,0xff,0x86,0x3d,0x3e,0xf1,0x44,0x32,0xf5,0xc6,0x04,0x04,0xc2,0x73,0x2d,0x94,0x0e,0x73,0x8e,0x76, + 0x26,0xdc,0x9a,0x44,0x50,0x33,0xe5,0xe0,0x82,0x87,0x70,0xb8,0x3a,0x4f,0x3c,0x62,0xa5,0x2c,0xc3,0xdd, + 0xd5,0xd2,0x61,0xc5,0x0d,0xef,0x9e,0x7e,0x4e,0x59,0xce,0xa5,0x7e,0xbb,0x50,0xce,0xb8,0x8b,0xf8,0x5e, + 0xf4,0x5f,0x46,0x85,0x2a,0xcc,0x75,0xcc,0x23,0x73,0x09,0xe5,0xbf,0x6c,0xc4,0x9f,0x91,0x6b,0x1a,0x2d, + 0x39,0x54,0x2f,0xc5,0xee,0xed,0x52,0x98,0x41,0xda,0xfe,0x6a,0x82,0xb2,0x4b,0x1e,0xa0,0xc0,0xe1,0xb2, + 0x77,0x26,0x02,0xdb,0x73,0xd9,0x0f,0xa6,0x8d,0x7d,0xf8,0x12,0x6a,0xbf,0xc4,0xb8,0x18,0xfa,0x67,0x10, + 0xf6,0x2a,0x32,0x69,0x84,0x03,0xe0,0x98,0xfa,0x57,0xfd,0x6a,0x5f,0x7c,0x47,0x68,0xf1,0xae,0xed,0xec, + 0xf2,0xce,0x39,0xbb,0xbc,0x1b,0xf9,0x57,0xdc,0x93,0x2b,0x71,0x79,0xcf,0x5d,0x7d,0x5f,0x55,0xf2,0x90, + 0x2a,0x79,0xd8,0x72,0xf2,0x7d,0x58,0x9d,0x7c,0x1f,0xf2,0xc9,0xf7,0x4a,0x30,0xe9,0x75,0x74,0xb5,0x43, + 0x5b,0x51,0xfd,0xeb,0x1e,0xab,0x09,0x57,0xb6,0x0e,0x6f,0xa2,0x93,0xfe,0x9b,0xfb,0xaf,0xe9,0x88,0x68, + 0x4d,0x55,0xde,0xc0,0xa1,0x34,0x12,0x86,0x6f,0x46,0x86,0xf7,0xfe,0xba,0x44,0xff,0xae,0xa8,0x56,0x1d, + 0xdd,0x36,0x01,0x97,0x84,0x7d,0x0b,0x47,0xbe,0x63,0x75,0xac,0x37,0x2c,0x3a,0xff,0xc0,0x19,0x70,0x51, + 0xd9,0x88,0xc9,0xfc,0x21,0xa0,0x0c,0xc6,0xc4,0x53,0xf1,0x12,0xac,0xbf,0xcd,0xe7,0xdf,0xe8,0x85,0x16, + 0x4e,0x52,0xa5,0xd7,0x5f,0x38,0x3c,0xa7,0xa1,0xa4,0xea,0x51,0xaa,0x1e,0xa6,0xea,0x55,0xaa,0x9e,0x65, + 0x03,0x23,0xcd,0x7f,0x96,0x28,0x23,0x58,0xc3,0xb3,0xe0,0x53,0xe3,0xfa,0x6f,0x4f,0x22,0x7a,0x89,0x79, + 0xc5,0x65,0x7e,0x35,0x78,0x93,0x48,0x5c,0x33,0xd8,0x26,0x6d,0xc3,0x9b,0xed,0xc8,0xb8,0x54,0x3e,0x4b, + 0xe1,0xbf,0xfc,0x49,0x76,0x70,0x60,0x2f,0x39,0x76,0x03,0x8b,0xc8,0xfd,0x38,0xd5,0x3e,0xbe,0x8c,0xb3, + 0x69,0xe2,0xb9,0xf6,0xa8,0xa2,0x85,0x5f,0x15,0x66,0x29,0xbd,0x16,0xae,0xf5,0x59,0xc9,0x77,0xad,0xe3, + 0x20,0x3e,0x47,0x1f,0xb4,0xbe,0x99,0x71,0x9a,0xfe,0x5b,0x0a,0xf7,0x69,0x98,0x9d,0x64,0xd2,0xb8,0x10, + 0x85,0x10,0xc9,0xdc,0xcc,0xdb,0xd0,0x8e,0x72,0x26,0x39,0x38,0xd8,0xe3,0x5f,0x3a,0x88,0x69,0xfd,0xca, + 0xc1,0x0f,0x3e,0x62,0xa7,0x98,0xcd,0xbc,0xd6,0xc3,0xdf,0x9c,0x23,0x85,0xd8,0x73,0x4d,0xb4,0x28,0x69, + 0x1b,0x84,0xdf,0x24,0xf2,0xec,0x7a,0x7a,0xb2,0xb5,0x12,0xbd,0x40,0xc8,0x35,0x6d,0x91,0x6b,0xb5,0x3d, + 0x1f,0xc3,0x07,0x92,0xa8,0x2d,0x40,0x73,0xc4,0xf6,0x6e,0xb3,0x59,0xa4,0xbe,0x44,0x8d,0x63,0x07,0x14, + 0xa8,0xe9,0xb9,0x09,0x14,0x1b,0x25,0x55,0xd0,0x58,0xe5,0x3c,0xb3,0x37,0x47,0xd6,0x29,0xde,0x85,0xbb, + 0x01,0xf7,0x8b,0x24,0x50,0xcf,0xb3,0xdb,0x32,0x61,0x6c,0x22,0x95,0x25,0x12,0x09,0xff,0xfc,0x4f,0xe0, + 0xa3,0xf3,0xc3,0x39,0xf9,0xe6,0xe3,0x05,0xf4,0xf8,0x9f,0xb0,0x17,0x70,0x3d,0x49,0xa0,0x43,0xb8,0x13, + 0x6e,0xc2,0x6b,0xe7,0xae,0x9a,0x63,0xaf,0xd7,0xe7,0x26,0xb8,0xd9,0x81,0x65,0xdf,0xdc,0x59,0x5a,0x88, + 0x8a,0x1a,0xf5,0xc7,0xe1,0xdb,0x4f,0x9b,0xd1,0xff,0x2a,0xd5,0x88,0x3d,0x28,0x95,0xb3,0xeb,0xca,0xad, + 0x40,0xd9,0xa8,0x57,0x0c,0x12,0xb1,0x97,0xbe,0x35,0x70,0xe0,0x53,0x74,0x10,0x08,0x1f,0xea,0x9c,0x7c, + 0x39,0x4e,0x3c,0xce,0x4f,0x78,0x39,0x38,0xa0,0xef,0xfa,0x03,0x28,0xbd,0xc1,0x58,0x3d,0x0b,0xec,0x9f, + 0xf1,0x1f,0x84,0xaf,0x12,0xca,0xf3,0xb7,0x54,0x61,0x65,0x85,0xa2,0x0b,0xdb,0x84,0x8f,0x76,0x16,0x60, + 0x2a,0x83,0x27,0x86,0x1f,0x21,0xbe,0x08,0xb4,0x6a,0x89,0xb8,0x4d,0x71,0x04,0xea,0xb0,0x39,0x81,0xa1, + 0xd9,0xcb,0x22,0x9d,0xc2,0xff,0xeb,0xe3,0x74,0x09,0xe5,0xc8,0xc8,0xcb,0x68,0x1e,0xb4,0xce,0x1d,0xdf, + 0xa9,0x4e,0xe4,0x03,0xa2,0xc0,0x37,0x92,0xfa,0x05,0x9d,0xb4,0x07,0x7e,0x56,0x2d,0x7b,0x6c,0x71,0xaf, + 0x71,0x2e,0x70,0x2d,0x87,0xea,0x85,0xa2,0x7c,0x0b,0xbf,0xfc,0x8d,0xc4,0x62,0x90,0x87,0xd2,0x72,0xab, + 0x7e,0xc1,0xce,0x08,0xfb,0x45,0x03,0x92,0xfe,0x47,0x07,0xbc,0xd3,0xd1,0x62,0xf0,0xb1,0xae,0xb6,0x01, + 0x88,0xe6,0xf2,0xcd,0x47,0x8a,0xe9,0x81,0xb4,0x0e,0xb3,0xad,0x4a,0x3d,0x72,0xa8,0x56,0x64,0x2d,0x93, + 0xab,0x0f,0x04,0xbc,0x1a,0x3f,0xde,0x3f,0xc6,0x9a,0x1f,0x08,0x6b,0xd8,0x28,0x4c,0x5b,0x76,0x41,0xd0, + 0x1c,0x17,0xe1,0xd7,0x79,0x0e,0x17,0xb8,0x6a,0xbc,0x5c,0xda,0x67,0x20,0x97,0xc9,0x06,0x42,0x62,0x9e, + 0x9d,0xdb,0x59,0x9d,0xe2,0xdc,0xad,0xba,0x79,0xcc,0xbd,0xaa,0x9b,0xab,0x91,0xb6,0x73,0x71,0xeb,0xe6, + 0x6d,0x49,0x97,0xee,0xb6,0x24,0xdd,0x9a,0xb7,0xd1,0xe0,0x64,0x55,0xf0,0xbd,0x60,0x38,0x14,0x9b,0x36, + 0xa5,0xd3,0x45,0xb1,0x63,0xb4,0x55,0xdf,0x1b,0x00,0xd5,0x2e,0x6b,0xc5,0x52,0xee,0x87,0xb4,0x66,0x3e, + 0xd7,0xb4,0x03,0x73,0x9c,0xa7,0x89,0x15,0x97,0xb1,0xde,0xaa,0xdb,0x84,0xf1,0xd1,0x88,0xf0,0x12,0xd7, + 0x58,0x72,0x53,0xdf,0x1e,0xda,0x8f,0xc9,0xf8,0x2f,0x90,0x12,0x12,0xea,0xd6,0x23,0xb6,0x8a,0x59,0x14, + 0xae,0xc6,0x96,0x36,0x7a,0xab,0x5b,0x87,0x08,0xff,0x23,0x73,0x2a,0xec,0x07,0x95,0x1f,0x4b,0xe7,0xe2, + 0xcc,0xf2,0xde,0xae,0xe9,0x68,0x75,0x2c,0xea,0x8b,0xf8,0xee,0xeb,0x84,0x3d,0xeb,0x10,0xeb,0x39,0xae, + 0x3e,0x19,0xff,0xaa,0xcc,0xa5,0x11,0xfc,0xcc,0x97,0xbf,0x82,0x4c,0x2d,0x03,0x1d,0x91,0xdd,0x3b,0x3b, + 0xab,0x9a,0x3b,0xf4,0xba,0xd6,0x9d,0x5c,0xd7,0x3b,0xf4,0xfa,0x63,0x16,0xc5,0x89,0xa2,0x2d,0x3f,0x0f, + 0xc6,0x4e,0x78,0xd3,0x55,0x17,0x9b,0x04,0x1e,0xbd,0x70,0xd5,0x1d,0xb3,0x21,0x5a,0xe1,0x8f,0x45,0x06, + 0x82,0x4b,0x68,0x7d,0xff,0x21,0x29,0xd6,0x9c,0x68,0x15,0x0c,0x38,0x85,0xcb,0xe0,0x97,0xff,0xf6,0x85, + 0xf1,0xa6,0xcc,0x13,0x76,0x6b,0xa4,0x1f,0x60,0x35,0x13,0x38,0x10,0x89,0x7e,0x4e,0x8c,0x6f,0xad,0x9a, + 0xad,0xfb,0x02,0x40,0xb8,0x60,0x20,0x48,0x41,0x27,0xd2,0xfc,0xc1,0xc1,0x4e,0xd2,0x6d,0x44,0xdf,0x03, + 0x7d,0x11,0x02,0x0a,0x0c,0xe3,0x2d,0x63,0x5c,0xa3,0x3c,0x81,0x5a,0x1c,0x1c,0x2c,0x34,0x9d,0xf2,0x93, + 0x68,0x0c,0x07,0x2c,0x8b,0x00,0x43,0xd8,0xd3,0xa6,0x7a,0x30,0xe2,0x21,0x58,0xf0,0xab,0xf0,0x78,0x7b, + 0xbf,0xb0,0xdc,0xce,0xdf,0x5b,0xb4,0x79,0x78,0x6d,0x4b,0x35,0x2e,0x3d,0xab,0x63,0x78,0xa0,0xcf,0x1b, + 0x8b,0x26,0x92,0x88,0xb5,0x88,0xc4,0xd7,0xf0,0xf2,0x55,0x79,0x98,0xb2,0xf6,0x7e,0x5c,0xf7,0xdb,0xa0, + 0xb1,0x00,0xb4,0xf3,0x07,0x7f,0xa2,0xbc,0xf8,0x82,0xb0,0xfa,0x99,0xa8,0x58,0xb8,0x86,0xe6,0x4e,0xce, + 0x13,0xe2,0x42,0xeb,0x7e,0x2c,0xb7,0x81,0x32,0xe8,0x83,0xc6,0xd2,0xec,0x30,0x17,0x73,0x00,0xb9,0x12, + 0xff,0x05,0x27,0x73,0x73,0xce,0xe2,0x09,0xbd,0x54,0xf3,0x5a,0x6c,0x05,0x78,0x60,0xff,0xc1,0x9f,0xe9, + 0xe6,0xbf,0x11,0xad,0x91,0x79,0xa0,0x38,0x4d,0xa8,0x16,0x46,0x0f,0x73,0x34,0x9d,0x3e,0x81,0x56,0x18, + 0x91,0xc6,0x66,0x57,0x69,0xca,0xe8,0x24,0xbe,0xad,0x58,0xe7,0x25,0x68,0xe7,0xb7,0x29,0xa0,0x01,0x44, + 0xd4,0x44,0x83,0x6f,0xf3,0x1d,0xea,0x02,0xf2,0x1a,0xf4,0xc5,0xa0,0xaf,0xf3,0x2d,0x1f,0x61,0xc5,0x0a, + 0xf3,0x6f,0x44,0x54,0x2a,0x6d,0x8a,0xf0,0xfb,0x54,0x55,0x6f,0xdf,0x42,0x33,0x38,0xbc,0x11,0x0a,0xf3, + 0x6d,0xda,0x46,0x55,0x1a,0x16,0xed,0x4c,0x18,0x5c,0x0b,0x11,0x99,0x33,0x89,0x8f,0xbb,0x88,0x33,0xc4, + 0xbe,0x6d,0x77,0x76,0xc4,0x85,0x16,0x45,0xb2,0xb6,0x9e,0x0a,0xc5,0x3a,0xd4,0x48,0x9e,0xd3,0x36,0x7a, + 0xc5,0xae,0x54,0xf3,0x7a,0x4e,0x1c,0xb2,0xe3,0x6a,0xb9,0x2c,0xe9,0x4c,0xb4,0xbc,0x6f,0x8f,0xe4,0x4b, + 0x23,0x77,0x1c,0x47,0xe9,0x70,0x39,0xea,0x8f,0x25,0x6c,0x34,0x7a,0xb1,0x27,0x4b,0xfd,0xe0,0x00,0xc7, + 0x82,0xf6,0x25,0x4c,0x54,0x63,0x8d,0xeb,0x10,0x0f,0x48,0x9d,0x5b,0x33,0xd1,0x6c,0xc8,0xf9,0x46,0x58, + 0x14,0x1f,0x5b,0xc7,0x71,0x00,0xa1,0x87,0xe3,0x40,0x7c,0x85,0x0e,0xcf,0x38,0x9e,0x09,0x75,0xf5,0xa2, + 0x12,0x7f,0x5d,0x98,0xae,0x2e,0xa2,0x62,0x78,0x31,0xea,0xef,0x2e,0x80,0x58,0xe9,0x34,0x62,0x58,0x69, + 0x7d,0x80,0xd7,0x9f,0x26,0xe5,0xd7,0xf9,0x8a,0x65,0x6c,0x8f,0x66,0x29,0x61,0xd6,0x8f,0x04,0x6b,0xb8, + 0x5e,0x1f,0x2e,0xb8,0x8b,0x83,0x95,0xf4,0x7a,0x11,0x84,0x33,0xf3,0xb4,0xd5,0xa6,0xb7,0x0b,0x22,0xcb, + 0xbe,0xf8,0x00,0xa0,0xb3,0xbe,0x0e,0x4a,0xc6,0x07,0xa7,0x49,0x34,0xb3,0x36,0xe1,0x26,0x47,0x4e,0x5b, + 0xbf,0xeb,0x95,0x63,0xc7,0xf0,0xba,0xdd,0xc3,0x80,0x6d,0x0b,0x2a,0x1c,0x20,0x2b,0x35,0x07,0x1d,0xe6, + 0xa3,0x61,0xa8,0x26,0xb7,0x98,0x32,0xbb,0x88,0xa2,0x2d,0xfa,0x7b,0x16,0xe5,0xad,0x4b,0x7e,0x36,0xe9, + 0xf2,0xd6,0x08,0xf4,0x7c,0xc8,0x9a,0x96,0x7d,0x63,0x5f,0xa1,0xcd,0x98,0x2e,0xe3,0xe5,0x73,0x4a,0xf7, + 0x4b,0x6d,0x96,0xaf,0x12,0xe1,0x95,0x8d,0x7e,0xe1,0x4f,0x7c,0x46,0x30,0x6f,0xdf,0xd5,0xde,0x7e,0x33, + 0x3e,0xfe,0xe1,0xb4,0x63,0x46,0x34,0xd2,0x9e,0xee,0xa0,0x98,0xdf,0xcb,0x2f,0x2e,0x96,0x49,0xf9,0x5d, + 0x92,0x4e,0x2f,0x4b,0xa7,0x54,0x53,0x63,0x51,0xe6,0x8f,0x61,0x5c,0x39,0x08,0x43,0x4f,0x60,0x51,0xc9, + 0x8c,0x53,0xff,0x0a,0x9c,0x1b,0x35,0x56,0xf4,0xac,0xd2,0x4f,0x54,0xf4,0x1c,0xed,0x28,0x9d,0x52,0x21, + 0xc6,0x63,0xcd,0x49,0x70,0xac,0xe9,0xdd,0x23,0xce,0x8f,0x29,0x5c,0x7f,0x32,0xb8,0xaa,0x40,0x83,0x1d, + 0xc8,0x7b,0x6e,0x88,0x39,0xde,0x3b,0xb2,0xcd,0xec,0xeb,0x78,0x9d,0x12,0x2c,0xc8,0x84,0xe9,0x82,0xa3, + 0xb6,0x4c,0x23,0xc6,0x4e,0xc5,0xac,0xf0,0x60,0xea,0x66,0x3c,0x79,0x2f,0xdd,0x67,0xfb,0x74,0x9c,0x9a, + 0xb4,0x87,0xb6,0xf0,0x46,0x03,0xbf,0x71,0x28,0xc7,0x6e,0xfe,0x38,0xb5,0xf2,0xc0,0x6a,0x3b,0xd7,0xd9, + 0xeb,0xd4,0x5d,0x27,0x1a,0x53,0xd4,0xde,0x18,0xb7,0x65,0x2c,0xb2,0x09,0x68,0xae,0x9d,0x2d,0x9e,0x11, + 0x03,0x5b,0x62,0x5b,0x6a,0xeb,0xec,0x5c,0x27,0xa2,0x08,0x15,0xa8,0xa9,0x9e,0x80,0xac,0x95,0x65,0xb6, + 0xce,0x30,0x6a,0x9a,0x11,0x99,0x39,0xd6,0xbd,0x4b,0xfc,0xac,0xe6,0x84,0x88,0xb3,0xd6,0xd4,0xad,0x0c, + 0x1e,0xe9,0xc1,0x44,0x2c,0x13,0xb3,0x33,0xbb,0x85,0x79,0xf8,0x5b,0xbe,0xad,0xbf,0x48,0xa7,0x3d,0x27, + 0x20,0x6e,0x54,0xa6,0xaa,0xfa,0x50,0x0b,0xc5,0x1b,0xcd,0xda,0x3f,0x41,0xa2,0x16,0xfd,0xbd,0x70,0xbe, + 0x35,0x42,0xf1,0x46,0xcf,0xcb,0x5a,0xc1,0x7a,0xec,0xde,0x9d,0xd0,0x28,0xcf,0x2a,0x56,0x0d,0x33,0x35, + 0x83,0x1d,0x43,0x7d,0xee,0xa2,0x66,0x54,0x5b,0x21,0xb5,0x17,0xec,0x3a,0xd2,0xec,0x99,0x78,0xd1,0x36, + 0xc7,0x1f,0x33,0x43,0x60,0x23,0x6a,0x4d,0x8d,0x0f,0x3d,0x58,0x68,0x0f,0xb8,0x38,0x7b,0x2e,0xaf,0xec, + 0x7c,0xad,0xa6,0x1f,0xc4,0xda,0xf5,0x41,0xc0,0x11,0xf2,0xad,0x59,0xad,0x85,0x04,0xd7,0x79,0xb4,0x5b, + 0x5a,0x2f,0x89,0xc4,0x8d,0xd3,0xb4,0x55,0x6b,0x58,0x55,0x5a,0x1f,0x8a,0x96,0xdd,0xa2,0x93,0x70,0x50, + 0xff,0xe6,0x18,0xaf,0xff,0x2d,0x65,0x93,0x49,0xc7,0x65,0x89,0x21,0x98,0xd0,0x28,0xfc,0x2e,0x0d,0xa7, + 0xf5,0xcf,0xe2,0x78,0xae,0x3d,0x40,0x56,0x09,0x75,0x21,0x2a,0xf5,0x23,0x20,0x65,0x3c,0xc5,0x17,0x08, + 0x1b,0x14,0x25,0x60,0xd4,0x78,0x2f,0x64,0x4f,0x3e,0xf0,0xe1,0x6b,0x15,0x3b,0x64,0x43,0xe7,0xf5,0xdc, + 0x48,0x8b,0xca,0x82,0xfd,0xc0,0x64,0xf5,0x88,0xd8,0xe2,0xb5,0xfe,0x75,0x51,0x3f,0x4b,0x66,0xc6,0x9d, + 0x93,0x6f,0xfd,0x0d,0xd3,0x44,0xa7,0x04,0x97,0xa9,0xd5,0x24,0xa2,0x9e,0x10,0xc1,0x17,0x96,0x3a,0xab, + 0x3c,0xc3,0x64,0xbb,0x5e,0xb8,0xb3,0x9a,0x17,0xee,0xac,0x6f,0xb5,0x42,0xb6,0x80,0x87,0xf1,0x43,0xe0, + 0x3b,0xed,0xbf,0x81,0x2a,0x88,0x84,0xbd,0x3e,0x38,0xf8,0x47,0x86,0xff,0x3d,0xb8,0xcc,0x02,0xa7,0x06, + 0x05,0xe6,0xb7,0xb0,0xc6,0x38,0x96,0x15,0xf9,0x4b,0xaa,0xfe,0x0e,0x15,0xca,0x9b,0xd3,0x1b,0xdf,0x1f, + 0x84,0xbd,0xcd,0x69,0x16,0x74,0x07,0xc1,0xe9,0xf6,0x74,0x7b,0x34,0x55,0xff,0x0a,0x9d,0xf7,0xc3,0xde, + 0x67,0xdd,0xc1,0xaf,0xfb,0x37,0x5b,0x3f,0xd8,0x0c,0x4f,0x47,0xa7,0x47,0xa7,0xa7,0x23,0xfa,0x56,0xe6, + 0xad,0x8a,0xeb,0xbc,0x77,0x18,0x9d,0xed,0x7f,0x4d,0x95,0x77,0x7a,0xba,0x7f,0xe0,0x71,0xb0,0x13,0xa8, + 0x97,0xef,0x7e,0xb1,0x0e,0x03,0x08,0x92,0xe2,0x21,0xc5,0x4f,0xba,0x9e,0xee,0x8c,0xf4,0xc6,0xeb,0x12, + 0x10,0xa6,0x90,0xff,0xa9,0x24,0x8f,0x6e,0x44,0xa8,0x0f,0x6f,0xa6,0xe1,0xd0,0x73,0xa4,0xfd,0xde,0x48, + 0x59,0x5a,0xdd,0x30,0xee,0x00,0x6e,0xc0,0x63,0x62,0xa1,0xe1,0x17,0x15,0x22,0xa5,0x11,0x33,0xdb,0xbe, + 0x88,0xb3,0x9c,0xaa,0xa2,0xef,0x5f,0xbf,0x7c,0x41,0x09,0xc0,0x68,0xc4,0x6c,0xcc,0x02,0x43,0xc0,0x32, + 0xa7,0x20,0x5c,0xe2,0x42,0x80,0x02,0x55,0x18,0x24,0x7c,0x9d,0x32,0xa7,0x11,0x15,0x98,0xea,0x24,0x83, + 0x63,0xd6,0x16,0x1f,0xe7,0x9e,0xe7,0x28,0xf4,0x57,0x4d,0xe2,0x18,0xd1,0x8d,0xdc,0xf1,0x84,0x5e,0xb7, + 0x96,0xa3,0xeb,0x29,0x18,0xf9,0xd6,0xda,0xd2,0xa5,0xc6,0x36,0xbf,0xfb,0x51,0x0a,0x24,0xc4,0x10,0x67, + 0xed,0x60,0xe3,0x8b,0x91,0xdf,0x0f,0x36,0xa6,0xfb,0x0d,0xb0,0x71,0x55,0x4d,0xb0,0xbd,0x4e,0x01,0xb9, + 0x3a,0xe8,0xa4,0xb0,0x03,0x3a,0x4e,0xf8,0xa3,0xa0,0xe3,0x66,0x6b,0xa0,0xe3,0x14,0x07,0x74,0xfc,0x6e, + 0x40,0xe7,0xb6,0x65,0x4b,0x21,0xbf,0x2f,0x05,0xaa,0xaf,0x5d,0xd8,0x1a,0x08,0xf0,0x8a,0x9c,0xaf,0x98, + 0x60,0xef,0xc7,0xb6,0x9f,0x30,0xa2,0xcc,0x67,0xda,0x96,0x51,0x0c,0xf6,0xb4,0x0d,0xa6,0xd8,0x15,0xa6, + 0x4b,0x26,0xc9,0xb8,0x70,0xa2,0xa1,0x38,0x56,0xa2,0x35,0x83,0x47,0x31,0x8b,0xbc,0x3a,0x87,0xaf,0xa1, + 0x34,0x17,0x4b,0x69,0x6d,0xd7,0x08,0xa3,0xcf,0x12,0x06,0x9d,0x46,0xb8,0xb9,0x60,0xc3,0x46,0x18,0x05, + 0xb2,0x79,0xa3,0x18,0x3c,0x16,0xba,0x26,0x2a,0x9f,0x4b,0x0f,0x5b,0x0d,0x4f,0xa5,0xcb,0x95,0x89,0x21, + 0xdb,0x49,0xb6,0x9a,0x53,0xa2,0xd9,0xba,0x3d,0x23,0x5b,0xa0,0x6a,0xf3,0x53,0x63,0x3f,0xb9,0x63,0x87, + 0xaa,0x2d,0x5b,0xd9,0xb0,0xb2,0xc5,0xae,0x15,0x7d,0x35,0x56,0xaf,0xd2,0x0e,0x01,0x8b,0xad,0x69,0xb5, + 0xe5,0x25,0x0c,0x57,0x8d,0xc9,0x24,0x83,0xa9,0x69,0x84,0x29,0x60,0x13,0xa3,0x54,0x0d,0x3c,0x31,0x9f, + 0x30,0x06,0x96,0x95,0xed,0x67,0x03,0x44,0x6c,0x8f,0x4b,0x80,0x62,0x58,0x13,0x9c,0xe2,0x3c,0x3a,0xfa, + 0xf5,0x74,0xf9,0x99,0x3f,0xa4,0xbf,0xde,0x9d,0xfb,0x0f,0x4e,0x8f,0xa2,0x51,0x37,0x20,0x5a,0x83,0xc4, + 0x28,0xc0,0xdf,0x41,0xe8,0xd1,0x67,0x6f,0xf4,0x19,0x91,0x9d,0xcd,0x1d,0x7a,0xbc,0x43,0x8f,0x77,0xba, + 0x1b,0x5d,0x26,0xba,0xff,0xe0,0xdf,0xa8,0x48,0x10,0x0c,0x8e,0xa8,0x33,0x91,0x37,0x8c,0x0f,0x7f,0x7b, + 0x78,0xf8,0xcb,0xd9,0x68,0x78,0x7a,0x7a,0x75,0x7a,0x7a,0x78,0x7a,0xda,0x1b,0x7d,0xe6,0x11,0x50,0x23, + 0xa6,0x61,0x5e,0x77,0x99,0x77,0x89,0xd2,0x85,0xc1,0x40,0x1e,0x03,0x4f,0xad,0xf2,0xc8,0x21,0x76,0xde, + 0xaf,0xf7,0xbd,0xee,0x38,0x0f,0xd4,0xcc,0x74,0xee,0xf4,0x68,0x10,0x3c,0x38,0x22,0x80,0x36,0xb2,0x9d, + 0x9e,0x1e,0x21,0x67,0xd7,0x1b,0xfe,0xfa,0x60,0xf4,0xd9,0x03,0x1a,0xcf,0x02,0x45,0xee,0xef,0x3d,0x7e, + 0xf9,0xe8,0xcd,0xdf,0x5f,0x7d,0xd3,0x41,0x7a,0xf7,0xc1,0x51,0xaa,0x2e,0x25,0x1d,0x76,0x3b,0x6b,0x79, + 0x3c,0x1d,0x1e,0xd1,0x21,0x18,0x37,0xc6,0xde,0x7b,0xcf,0x52,0xe1,0xa3,0xf7,0x7e,0x8f,0x06,0x32,0x55, + 0xf5,0x25,0x4f,0x19,0x3d,0x1c,0xe7,0x13,0x7d,0xe1,0x32,0xcd,0xd5,0x75,0xae,0xce,0x72,0xc2,0x1d,0x75, + 0x95,0xab,0xf7,0xb9,0xda,0xcf,0xd5,0xbb,0x5c,0x3d,0xca,0xd5,0xc3,0x5c,0xbd,0xce,0xd5,0x9b,0x5c,0xbd, + 0x64,0x14,0xd4,0x56,0xbb,0xda,0x1c,0xda,0xdc,0x75,0xf0,0x86,0xf7,0x36,0xc7,0x7d,0xf1,0x33,0xfa,0xeb, + 0x1d,0xcc,0xca,0xbe,0x17,0x7a,0xf7,0x69,0x51,0x1e,0x4c,0xf9,0xf1,0x01,0x1e,0x81,0x9f,0xf4,0x72,0xc7, + 0xbb,0x43,0x2f,0xf1,0x7c,0x81,0x0f,0x07,0xf8,0xf0,0xa7,0x93,0x63,0x3c,0x9f,0x66,0xfc,0xf2,0x15,0x3f, + 0x97,0xde,0x56,0x7d,0x43,0x63,0x3b,0x20,0x20,0xd3,0xc9,0x77,0x5a,0x6e,0x50,0x7c,0x43,0xc5,0x82,0x3e, + 0x0d,0xe8,0x55,0xeb,0xa7,0x0d,0xd5,0xb4,0xf9,0xd3,0x57,0x9c,0xe3,0x29,0x77,0x18,0xfa,0x0e,0xf5,0x7e, + 0x3e,0xce,0x6f,0xe1,0x29,0x0e,0x0e,0x9e,0xe6,0xe2,0x39,0xe1,0x94,0x25,0x2b,0x09,0x7c,0x15,0xa9,0x27, + 0x80,0xef,0xbf,0x6c,0x7e,0x5d,0x1f,0xe6,0x59,0x78,0xa4,0x5e,0xe0,0x75,0x7d,0xb8,0x41,0x12,0xbd,0x3e, + 0xa7,0x57,0xbf,0xf7,0x19,0x6d,0xa8,0xcb,0x2e,0xf5,0x26,0xcd,0x36,0xf9,0x05,0x3f,0xf7,0x3e,0x0b,0x8e, + 0xd4,0x8f,0xf4,0x55,0x11,0x5e,0x29,0xda,0x6e,0x47,0x84,0x65,0x94,0xc3,0x7d,0x0d,0x06,0xfb,0x47,0xea, + 0x6b,0xc6,0x0a,0x7f,0x73,0x1a,0xec,0x53,0xa7,0x7f,0xce,0xd9,0x28,0xec,0x33,0x7a,0x51,0x7f,0xc5,0x97, + 0x10,0x2d,0xb3,0xc0,0xf9,0x48,0xfd,0x44,0x09,0xa7,0xbd,0xe1,0xaf,0xbd,0x51,0x97,0xb2,0x7e,0xd7,0xdc, + 0x9f,0xb5,0x9b,0x98,0x5f,0xd2,0xe8,0x97,0xf4,0x23,0xe6,0x49,0x41,0xa5,0x03,0x41,0x4c,0xd3,0x2f,0xa9, + 0x6b,0x92,0x48,0x9b,0xf0,0x6f,0x68,0xf9,0xfd,0x7c,0x96,0x2d,0xc3,0x17,0xaf,0x4f,0x27,0xdd,0x23,0xf5, + 0x0f,0xa4,0xf0,0x33,0xf5,0xe3,0x87,0x3c,0x1a,0x26,0x39,0xed,0x39,0xea,0x86,0xc0,0xfb,0xe6,0x03,0x7b, + 0x8b,0x48,0x8f,0x8c,0x2f,0x09,0xb9,0x10,0x32,0x67,0x17,0xbe,0xd2,0x7f,0x1e,0x2f,0x58,0x13,0x71,0xe8, + 0xad,0x0f,0xf9,0x0a,0xc5,0x1b,0x81,0x4b,0xc2,0x2b,0x0f,0x1a,0x9c,0xa0,0x37,0xda,0x6c,0x28,0x45,0x3f, + 0x1b,0x85,0x50,0xbd,0xdb,0x70,0x22,0xb8,0x2d,0xd9,0xb9,0xd6,0x87,0xe9,0x85,0x4c,0x73,0x1e,0xa5,0x03, + 0x8f,0xea,0xf2,0xba,0x29,0x16,0x65,0x48,0x67,0xc3,0x38,0x12,0x66,0xdc,0x64,0xc5,0x25,0xae,0x64,0x5e, + 0xd6,0xd2,0x6c,0x1d,0xe3,0xe8,0x6f,0x6c,0x35,0xf2,0x7d,0xc2,0xde,0xb1,0x12,0xe8,0x18,0x71,0x83,0x4a, + 0x1c,0x66,0x9c,0xe7,0xef,0xa9,0xed,0x1f,0x90,0x4e,0xe7,0xa5,0x31,0x98,0xd7,0x31,0x11,0x68,0x61,0xed, + 0xc6,0xbd,0xf4,0x82,0x68,0x84,0xd7,0x2d,0xa8,0x7d,0x1a,0xfe,0x1d,0x53,0xe4,0x8e,0xd7,0xcd,0xd5,0xb7, + 0x28,0x74,0x93,0xbc,0x5f,0x84,0xc8,0x27,0xf4,0x3b,0x1c,0x6f,0x8d,0xbc,0x56,0xda,0xa5,0x4e,0xad,0xd0, + 0x29,0x82,0xae,0x74,0xa8,0xe4,0x04,0xdd,0x85,0x22,0x9e,0xa4,0xb9,0xb4,0xbf,0x42,0xfb,0x55,0x95,0x6e, + 0xab,0x9c,0x8b,0x9b,0x94,0x36,0x56,0xba,0x8d,0x99,0x6d,0x43,0x54,0x7c,0x12,0x88,0xe6,0xea,0x4d,0x51, + 0x82,0x00,0x1d,0x26,0x0f,0x3f,0xe0,0xbd,0xd6,0x4a,0xaa,0x6b,0x9c,0x21,0xb0,0xf0,0x60,0xdc,0x03,0xe8, + 0x10,0x76,0x6e,0xc9,0xc2,0x54,0xbc,0x11,0x00,0x96,0x04,0x17,0x1c,0xe9,0x46,0xea,0x7b,0xa2,0x0c,0x54, + 0x8c,0x8e,0x0a,0x40,0x3b,0x48,0xed,0xcd,0xbd,0xf6,0x0f,0xb9,0xaa,0xce,0x10,0xa1,0xbe,0x4a,0x6b,0xbd, + 0x5a,0x12,0xbb,0x1c,0xd1,0xe6,0x80,0xca,0x23,0xab,0x9d,0x5d,0xaa,0xb5,0x9a,0xdb,0x6b,0xb5,0x69,0xed, + 0x4e,0xf5,0x5a,0xb0,0x4e,0x9d,0x39,0x08,0xc7,0x77,0xb1,0x12,0x80,0xc9,0x1e,0x4f,0xac,0xa7,0x26,0xa0, + 0xc1,0x5c,0x4d,0x03,0xa5,0x83,0xec,0x56,0xf7,0x99,0xd7,0xc1,0x84,0xd6,0xca,0x65,0x34,0x57,0xeb,0xe8, + 0x0e,0x7a,0xb3,0xbf,0x6f,0x9c,0x70,0xfc,0x14,0xcf,0x3a,0x51,0xa7,0x11,0x56,0x5d,0xdf,0x28,0xc8,0x3d, + 0xe6,0x3e,0x7b,0x8e,0xd5,0xa1,0x1a,0xed,0x9d,0xa6,0x1d,0x63,0x6e,0xa9,0x50,0xde,0x33,0x95,0x6e,0x03, + 0x5c,0x83,0xfa,0x6e,0x1e,0xb4,0xba,0xe6,0xb6,0xbc,0x33,0xf1,0xf8,0x02,0xad,0xa0,0xbc,0x33,0xa0,0x62, + 0x92,0xd0,0x09,0xe9,0x51,0xdf,0xbe,0x49,0x85,0x77,0xba,0x3e,0x71,0x42,0xd3,0x9e,0x98,0xd2,0x0f,0xbc, + 0xb3,0xcc,0xa7,0xef,0x58,0x10,0xf4,0x03,0x51,0x11,0xe1,0x83,0xa7,0x92,0x04,0x12,0x58,0x73,0xb5,0xbc, + 0x8e,0xd6,0x5d,0xaf,0x43,0x38,0x93,0xf8,0x97,0xca,0xab,0xf7,0xdd,0xdc,0xab,0x52,0xa3,0x75,0x00,0x84, + 0xf5,0x77,0x22,0x9e,0x5e,0xd0,0x30,0xac,0xa8,0x91,0x83,0x6b,0x22,0xb4,0x76,0x15,0xd1,0xfb,0x59,0x00, + 0x17,0x49,0x63,0x82,0xef,0x2a,0x72,0x7a,0xac,0x66,0x58,0xe9,0x4b,0xa5,0x5d,0xdc,0x04,0x9b,0x8d,0x87, + 0x4a,0x3d,0x75,0xa1,0xd3,0xe1,0xed,0xe4,0xb0,0xfa,0x88,0x57,0x4f,0x2d,0xf4,0xc7,0x8b,0x18,0xeb,0xb9, + 0xfa,0xca,0xef,0x9e,0xfa,0x7b,0x89,0x8f,0xc6,0xe9,0x8d,0xf2,0xea,0xa6,0x23,0xb4,0x09,0xd3,0xe2,0x19, + 0x9c,0xa5,0xf2,0xa4,0xbc,0xee,0xac,0xcb,0x47,0x6f,0xaf,0xeb,0x4b,0xfd,0xd4,0xdd,0x8b,0x81,0x17,0xea, + 0x9c,0x04,0xcb,0xf0,0xec,0x1f,0x36,0xf3,0x05,0x92,0xa0,0x15,0x93,0x48,0x23,0x02,0x53,0x4f,0x50,0x26, + 0x8e,0x24,0xdb,0x3e,0x0e,0xa7,0x35,0xc8,0x52,0xd2,0x38,0x42,0x72,0x4f,0xf7,0x6b,0xe0,0x4b,0x5d,0x68, + 0x66,0x41,0xbf,0xbb,0xc6,0xaf,0x54,0x9d,0x26,0x87,0xfb,0xfb,0x6b,0xaa,0xd8,0x5f,0xf1,0xfc,0x4a,0x7f, + 0xbd,0x70,0x16,0x70,0x43,0x69,0x44,0x23,0xa1,0xac,0xf4,0xb8,0xe6,0x4a,0xdc,0x46,0x82,0x1b,0xca,0x70, + 0xff,0x98,0x09,0x25,0xf5,0x8b,0x3a,0x60,0x03,0x6b,0x0f,0x29,0xff,0x28,0x10,0x5d,0x17,0xe4,0x22,0x00, + 0xd4,0xb2,0x19,0x77,0x2f,0xf4,0x29,0x30,0x65,0xaa,0x74,0x4a,0xed,0x9e,0x40,0x6f,0x40,0xca,0x33,0x32, + 0x11,0xf9,0xa4,0x41,0x32,0xd2,0x79,0x1f,0x43,0x0d,0xa1,0x6e,0x8c,0x17,0x72,0xb0,0x9f,0x13,0x49,0x77, + 0xf1,0x22,0xc6,0x14,0x17,0xbb,0x78,0xf1,0x77,0x0e,0x6c,0x55,0xcd,0x2d,0xcf,0x4c,0xca,0x33,0xe3,0xc7, + 0x51,0xae,0x21,0x14,0x33,0x84,0xe2,0x80,0xe7,0x0a,0x53,0x55,0x54,0x53,0x45,0x3d,0x85,0x61,0xda,0x07, + 0x7b,0x08,0x4c,0x73,0x54,0x3d,0xae,0x83,0xbd,0x56,0x82,0xd5,0x24,0x3b,0xf0,0xb7,0xca,0xb1,0x3c,0x72, + 0xa8,0x62,0x23,0x0c,0x30,0xbc,0x68,0xeb,0x11,0x21,0x96,0x11,0xcc,0xb3,0x69,0x11,0xec,0xe5,0x0c,0x02, + 0x74,0x07,0x2a,0x7b,0xb4,0x24,0xa8,0xe3,0xba,0x7f,0xa1,0xfe,0x00,0xd5,0xb2,0xc1,0x7e,0x1a,0xea,0x5e, + 0xd1,0x42,0x69,0x2c,0x55,0x81,0x4c,0x1f,0xf4,0xb8,0xfd,0x9b,0x36,0x06,0x07,0xe3,0x2c,0x79,0x2a,0xe4, + 0x91,0x4d,0xe2,0x22,0xca,0xe1,0x73,0x60,0x16,0xf4,0xc7,0x94,0x81,0xb6,0x33,0x60,0x4f,0xad,0x1e,0xad, + 0x3e,0x62,0xef,0x1d,0xfb,0x84,0xb3,0x01,0xe6,0xa0,0x34,0x33,0xa3,0xb0,0x1b,0x25,0x16,0xce,0x25,0x51, + 0xee,0x8b,0x4a,0x4c,0xe2,0x2f,0x37,0x1b,0xb6,0x25,0xe4,0xfd,0xf7,0x7c,0xb6,0xa2,0xed,0xc7,0xab,0xdf, + 0x46,0x79,0x6c,0x05,0x08,0xa2,0x6c,0x27,0x62,0xef,0x4d,0x56,0x17,0x00,0xfa,0x95,0xb2,0x6a,0x8d,0x84, + 0xdb,0x8b,0x55,0x66,0x02,0x77,0x4e,0xbe,0x6b,0x51,0x4c,0x90,0xee,0x3a,0x3c,0x10,0xd0,0x66,0x89,0x6e, + 0x4b,0x0e,0xee,0xfc,0x96,0x0f,0x35,0x1f,0xae,0xc2,0x72,0x55,0xad,0x15,0x6c,0xe9,0xe4,0xf8,0x8a,0x18, + 0xa6,0xb8,0xcd,0xd3,0x04,0x38,0x55,0xed,0x57,0x0b,0x62,0x48,0x3a,0xf6,0x20,0x5f,0x91,0x2b,0x47,0x02, + 0x1a,0x96,0x29,0xfc,0xe8,0x7c,0x9d,0x3c,0x4b,0x2e,0xca,0x97,0x8b,0x24,0x43,0x96,0x34,0x57,0x35,0x50, + 0x84,0x74,0xde,0x6a,0x48,0x39,0xc3,0xe7,0xa5,0x72,0xa4,0x03,0x3f,0xe4,0x74,0x40,0x98,0xac,0xc6,0xed, + 0x9a,0x34,0x9d,0xd2,0x2c,0x66,0x13,0xeb,0xca,0x44,0xf1,0x0b,0xd8,0xd1,0x43,0xef,0x6d,0x9e,0x12,0x9a, + 0x28,0x40,0xe4,0xdb,0x76,0x1e,0xb4,0x03,0xff,0x2d,0xc0,0x76,0x6c,0xbd,0x8c,0xff,0x90,0x99,0x2b,0xb3, + 0x12,0x14,0x1d,0x4e,0xd2,0x4c,0x7b,0xe9,0x50,0xf6,0xca,0x4b,0x02,0x05,0x75,0xfd,0x72,0x80,0xb5,0x5a, + 0xc2,0xd9,0x29,0x24,0x42,0x7f,0xb3,0x67,0xba,0xd3,0xab,0xfd,0xb3,0x51,0x77,0x73,0x4a,0x2c,0x74,0x30, + 0xfa,0x6c,0x70,0x1a,0xe0,0x3c,0x17,0x3d,0xd8,0xfc,0x6a,0x7a,0x40,0xaf,0xa7,0xfe,0x91,0xfa,0x45,0x97, + 0x18,0xd2,0xb9,0x8d,0x4e,0x6f,0x67,0xfb,0x23,0x14,0x1d,0xe1,0xe8,0x47,0xec,0x73,0x23,0x71,0x73,0x3a, + 0xbc,0x43,0x0c,0xfc,0x9d,0x11,0x3d,0x78,0xf4,0xe0,0xe1,0x81,0xf8,0x5c,0xfc,0x34,0xf3,0x8e,0x82,0xcf, + 0xa8,0x5a,0x62,0xcd,0xff,0x0e,0x5e,0x66,0x39,0x0e,0xef,0xfe,0x19,0x3e,0x8a,0xc2,0xaf,0x44,0x7b,0x22, + 0x3c,0xb9,0xa7,0x04,0xde,0xf7,0xee,0xaa,0xd5,0x22,0xbc,0xf7,0x17,0x3a,0x02,0x5f,0x94,0xe1,0xbd,0x3f, + 0xab,0x02,0xf7,0x22,0xe1,0xbd,0xaf,0x14,0xfc,0x5a,0x87,0x9f,0x1f,0x2b,0xb9,0x9a,0x0c,0x87,0x7f,0x51, + 0x9f,0x7f,0x49,0xa7,0x8c,0x7f,0xcd,0xdb,0xdc,0x6d,0x81,0xe4,0x74,0x4b,0x42,0x1e,0xc7,0x15,0x56,0xdf, + 0x83,0x17,0x12,0x48,0x7b,0x08,0x1f,0xcc,0xa2,0xc6,0x0b,0x10,0x24,0x9e,0xc6,0x22,0x23,0xec,0x43,0x51, + 0x82,0xbf,0xd9,0x3c,0xfa,0xfd,0xb1,0x5c,0x25,0x72,0x16,0x84,0x18,0x0b,0xff,0x35,0xf7,0xeb,0xb4,0xa1, + 0x43,0x14,0xa7,0xa3,0x53,0xc6,0xab,0x02,0x93,0xf4,0x86,0x3f,0xd0,0x02,0x1e,0x97,0xc5,0x8c,0x4b,0xec, + 0x99,0x0c,0x94,0xf0,0x03,0x14,0x6f,0x15,0x3b,0x03,0xad,0x7d,0xe3,0x14,0xf9,0x18,0xcf,0xea,0x9f,0xe8, + 0x5d,0x3e,0x40,0x20,0x50,0xfb,0x82,0x04,0xf9,0xc4,0xb0,0xc3,0xa7,0x3b,0xe2,0xec,0xe9,0x0e,0x98,0x1d, + 0xc9,0xd5,0x39,0x38,0x30,0x3d,0x94,0x6f,0xdc,0xe7,0x63,0xd4,0x97,0x4e,0x26,0xb3,0xe4,0x77,0x15,0x3b, + 0x61,0x87,0x68,0x98,0x9f,0xdf,0x53,0xea,0x2e,0xf0,0x3f,0xa1,0x89,0xa0,0x63,0x61,0xd3,0xcd,0x0a,0xbc, + 0xbb,0x55,0x01,0xea,0x5a,0x26,0xf6,0x6c,0x2a,0x13,0xab,0x6a,0x14,0x82,0x08,0xc4,0x8e,0x6a,0x91,0xa9, + 0x8e,0x23,0xe1,0x55,0x46,0x40,0x55,0x4d,0xe7,0x54,0x53,0x46,0x35,0xdd,0x81,0x80,0x8b,0xd6,0x5b,0x17, + 0xa7,0xeb,0xaa,0x56,0xec,0x7a,0x0e,0x43,0x0c,0xff,0x45,0x95,0x96,0x21,0xae,0xb9,0x06,0xc2,0xd1,0x84, + 0x9a,0x35,0x0a,0x3e,0x90,0x9d,0x43,0x49,0x7b,0x4a,0xe7,0xf7,0x02,0xdd,0xe7,0xf1,0x2c,0x8f,0xdf,0x21, + 0x48,0x6e,0xd6,0xe2,0xc5,0x34,0xb7,0xce,0x2f,0xf9,0x15,0xa2,0x46,0xda,0x13,0xf1,0xb3,0xd9,0xfc,0x4d, + 0x27,0x5a,0xe9,0xe4,0x32,0xfa,0x05,0x76,0xd2,0x46,0xdf,0xdc,0xb3,0x1f,0x10,0xa5,0xc8,0xf8,0x64,0xc7, + 0x0d,0xe2,0xb7,0x49,0x86,0x60,0x7c,0xf5,0xdc,0x5a,0xac,0x68,0xf3,0xd9,0x23,0x45,0xb4,0xf6,0x59,0x77, + 0x22,0x89,0xd9,0xe2,0xd9,0xa6,0x07,0x36,0x30,0x57,0x8d,0x80,0x6e,0x36,0xfb,0x59,0x5f,0xbb,0x3b,0xbe, + 0x3e,0x4f,0x6c,0x4c,0xc5,0x96,0x89,0xdc,0xb3,0xd6,0xb9,0xda,0xd7,0x65,0x36,0x4e,0x9e,0x4e,0x22,0xed, + 0x73,0xbe,0x19,0x3b,0x10,0x6e,0xb7,0x8b,0x38,0xf2,0x5d,0xa9,0xcf,0xe9,0xe9,0xb9,0xd7,0xf5,0x26,0x44, + 0xc3,0x2f,0x20,0x61,0x23,0xa4,0x2f,0x71,0xe7,0x40,0x40,0xbe,0x66,0x7f,0x6b,0x63,0x48,0xf7,0xb0,0xed, + 0xa9,0xab,0xb4,0xbc,0x54,0xf1,0x55,0x9c,0x96,0x8a,0xf5,0xfd,0x15,0x7b,0x36,0xd7,0x3a,0xf1,0x7c,0xc1, + 0xa3,0xd8,0x11,0xa9,0xe2,0x20,0xf3,0xea,0x8a,0xc8,0x6a,0xa2,0xae,0x21,0xd6,0xd3,0xc4,0x46,0xd1,0xe9, + 0x2b,0x87,0x13,0x43,0x76,0xb0,0xa2,0x64,0x04,0xc6,0xb1,0x97,0xf5,0x92,0xcd,0xae,0x3f,0xe9,0x68,0x22, + 0xf1,0xe6,0xd9,0xb7,0x59,0x9a,0xad,0xe0,0x6f,0xf1,0x7c,0x35,0x9d,0x42,0x0e,0xa8,0xa1,0x50,0xc5,0x50, + 0xf1,0xb4,0xfb,0x19,0xec,0x09,0x7a,0x77,0xa0,0x61,0x6d,0x30,0xb4,0xa0,0xcb,0x23,0x94,0x7b,0x94,0xc6, + 0x98,0xa5,0x53,0xe2,0x43,0x94,0xf5,0xd2,0x5b,0xeb,0x21,0x92,0x0e,0x82,0x7f,0x7a,0x4a,0x24,0x9f,0xfe, + 0x54,0xb5,0x36,0x3e,0x20,0x00,0xdc,0x9b,0xa6,0x68,0xa7,0xb2,0xb0,0xbd,0xd5,0x20,0x94,0xbd,0x00,0x13, + 0x6d,0x44,0x60,0xe3,0x68,0xef,0x24,0x50,0xef,0x73,0x3d,0xa7,0x6c,0xfb,0x05,0x31,0xb6,0x13,0x83,0xa5, + 0x9f,0xdd,0xbf,0xca,0x5d,0xbf,0x2b,0x57,0x39,0x9b,0xd8,0xc2,0xb8,0x77,0x9a,0x47,0x49,0x85,0xd9,0xef, + 0xf1,0x66,0xf6,0x7b,0xa0,0x94,0xda,0x47,0x8a,0xb3,0x9b,0x73,0xe2,0x3b,0x24,0x36,0xb6,0x6b,0xfe,0x70, + 0x96,0x03,0xbd,0x93,0x96,0xc5,0xf0,0x42,0x16,0xc3,0x79,0x33,0x43,0x53,0x16,0x43,0x79,0xae,0x76,0xf2, + 0xe4,0xcb,0xb2,0x99,0xe9,0x1a,0x5d,0xa0,0xd9,0x48,0xe7,0x69,0x89,0xf8,0x86,0xf6,0xa4,0x2d,0xaa,0x25, + 0x7b,0x27,0xac,0xe1,0x84,0xa0,0xe5,0x58,0x21,0x3f,0x5f,0x52,0x2e,0xee,0xa6,0x02,0xbc,0xc0,0xab,0x9e, + 0xec,0x18,0x5d,0x34,0x81,0x4c,0x6f,0xb3,0x6e,0x44,0x93,0x0d,0x8d,0xd5,0xd5,0xb9,0x5c,0x20,0xf8,0xae, + 0x41,0x74,0x61,0x5c,0x04,0xb0,0xc1,0xbe,0x5a,0x56,0x01,0xe9,0xc5,0xbb,0xec,0x2c,0xd0,0x97,0x69,0xb8, + 0x53,0x28,0xf0,0x5a,0xf2,0x8c,0x35,0xae,0x5b,0x29,0x99,0xb5,0xf8,0xd3,0x28,0xae,0xa2,0xd4,0xa7,0x0f, + 0xa2,0x63,0xc4,0x22,0x48,0x47,0xbd,0x99,0xc9,0x8a,0x85,0x4e,0xe3,0xa2,0x76,0x0e,0x0f,0x0d,0x5f,0x19, + 0xf1,0xa5,0x2e,0x72,0x3b,0xb6,0x95,0x6e,0x45,0xe3,0x07,0x51,0xda,0x1f,0x53,0x81,0xa4,0xc7,0x0e,0x54, + 0xf8,0x87,0xdd,0xa8,0xb3,0x90,0x01,0xfd,0xef,0x9b,0xec,0x11,0x00,0x98,0x72,0xb3,0x87,0x27,0xfc,0x9d, + 0x0f,0x42,0xde,0x79,0x01,0x2e,0x6f,0x39,0x60,0xe6,0xaa,0x80,0xf1,0xb9,0x3c,0xd0,0xf8,0x09,0xdc,0x7b, + 0xc7,0xe2,0xf4,0xc0,0x5b,0x70,0x2e,0x0e,0x9b,0xd0,0x9a,0xef,0x84,0xf3,0xa9,0x5a,0x47,0x04,0x82,0x04, + 0x54,0xe3,0xf7,0x00,0xc2,0x12,0x4c,0x22,0xf4,0xcc,0x2b,0xd1,0x0b,0x4d,0x59,0xd2,0xab,0x78,0x4c,0xc6, + 0xb6,0x15,0xee,0x93,0x1b,0x9c,0x25,0x7f,0x98,0x11,0x50,0xca,0x3e,0x4b,0xf2,0x52,0x22,0xe2,0x74,0x2c, + 0x79,0x99,0xfb,0xc6,0xff,0x86,0x98,0x9c,0xe6,0x8d,0x1b,0xef,0x49,0xf4,0x36,0x1f,0x2e,0x10,0xf7,0x89, + 0x7f,0x6b,0x42,0x6e,0x62,0xe2,0x4e,0x97,0xa7,0xa7,0xaf,0x89,0x7d,0x0b,0xfc,0xfb,0x47,0x7c,0xb0,0x15, + 0x69,0x77,0x40,0xab,0x3e,0xc5,0xb1,0x19,0x86,0x57,0x46,0x7e,0x3d,0x71,0x05,0xd7,0x8c,0x1e,0x06,0xd3, + 0xac,0x91,0xab,0xa2,0xfe,0x2c,0xf8,0xf4,0xa7,0x5d,0x4a,0x02,0x70,0x0b,0xdc,0xf1,0x46,0x95,0x6f,0xa9, + 0x23,0xc8,0xca,0xa9,0xed,0xa5,0xb4,0x7c,0x78,0xf8,0xe0,0x68,0x4a,0xc7,0x0c,0xda,0xf9,0xdd,0x2c,0xa7, + 0xc3,0x47,0x8f,0x1f,0xbe,0x79,0x78,0x3a,0xac,0x72,0x8e,0x46,0x36,0x27,0x24,0xc7,0xfe,0x42,0x89,0x1b, + 0x65,0x68,0xab,0x68,0x77,0x4c,0x1c,0x02,0xef,0x32,0x96,0xcd,0x92,0x1f,0xa0,0xe2,0xe0,0x41,0xae,0x42, + 0x38,0x6f,0x34,0x70,0x0e,0x2f,0x4d,0x7f,0xcb,0xe8,0x52,0x15,0x54,0xd1,0xec,0xf0,0x02,0x01,0xa6,0xad, + 0x89,0xd1,0x3a,0x72,0xae,0xfa,0xef,0xcb,0x71,0x1f,0xda,0x95,0x6b,0x06,0xfe,0x65,0x6e,0xa2,0x64,0x19, + 0xe3,0x30,0x57,0x31,0xe0,0xf0,0xf4,0xfd,0xbd,0x44,0x8a,0xcc,0x19,0x7d,0x13,0x1d,0x7d,0x11,0x01,0x28, + 0xb4,0x66,0xa1,0x8e,0x7a,0xa0,0x7d,0x91,0x54,0xab,0xf0,0x73,0x05,0x33,0xda,0xcc,0x9f,0x77,0xef,0xd1, + 0x31,0x4f,0x93,0xfb,0x2d,0xb4,0xb6,0xd6,0x8d,0x36,0xa7,0x6e,0x9b,0xa3,0x07,0xd2,0xde,0x94,0xdb,0xcb, + 0xfc,0x69,0xf7,0xae,0x5b,0x1c,0xf9,0x21,0x7c,0x63,0xcf,0xb3,0xfe,0x22,0xe7,0xbc,0xd7,0xc8,0x78,0x8d, + 0x0b,0x64,0x13,0xad,0xd0,0x16,0x40,0xfe,0x33,0x9b,0xff,0x42,0xf2,0x9f,0x49,0xbb,0xe7,0xd1,0xac,0x9f, + 0xf9,0x67,0x4e,0x39,0x02,0xe0,0xd9,0xf0,0x64,0xa4,0xce,0xf9,0x68,0xea,0xd6,0x71,0xd5,0x8c,0x80,0x92, + 0xd8,0x4a,0x57,0x52,0x69,0xe2,0xc8,0x12,0xa3,0x1b,0xe3,0xd0,0x2f,0x41,0x75,0x7c,0x02,0x09,0xb1,0x60, + 0xb0,0xd2,0xc2,0x99,0x84,0xb6,0x24,0xf2,0xe5,0x76,0x79,0x8f,0x2d,0xf4,0xa5,0xca,0x59,0x2e,0x41,0x45, + 0x6d,0x42,0x4c,0x09,0xfd,0x20,0xf3,0x53,0xb7,0xb3,0xb9,0x76,0x0b,0xc9,0xfa,0x67,0x62,0xe5,0x67,0xdd, + 0x72,0xe5,0xbd,0x15,0xd6,0xe1,0x6b,0xda,0xc5,0x2f,0xd9,0x41,0x1b,0xac,0x32,0xeb,0x85,0xe1,0xcb,0x7c, + 0xa6,0x60,0x19,0x2c,0xc6,0x50,0xc1,0xcd,0x5e,0xf3,0xe6,0x34,0xa3,0xc1,0xcc,0xd8,0x0b,0x8e,0x1e,0x0f, + 0x2d,0xcb,0xd2,0xa9,0x99,0x65,0x00,0x42,0x53,0x68,0x05,0xe7,0xb9,0x7f,0x41,0xdd,0x2e,0x68,0x1d,0xab, + 0x15,0x3f,0xe6,0x10,0x68,0x21,0xe5,0x22,0xa8,0xb6,0xbb,0x49,0x34,0xa6,0xf7,0xcd,0x66,0x6f,0x6f,0xc1, + 0x8b,0x52,0x06,0xa1,0xb1,0x78,0xcd,0xcb,0x5a,0xc4,0x50,0xd4,0xcb,0x39,0x91,0x89,0xf9,0xfd,0xcb,0xfe, + 0xdc,0x28,0xf1,0x4d,0x4d,0x81,0xe1,0x7c,0xd4,0x9f,0x53,0xa3,0x87,0x30,0x85,0x9b,0x62,0x64,0x06,0x85, + 0xee,0x78,0xde,0x1d,0x40,0x8f,0xaf,0xa2,0xa6,0xc3,0x7b,0xa3,0x83,0x03,0xad,0xb0,0x89,0x17,0xa5,0x93, + 0x3f,0x77,0x93,0x3f,0xb7,0xc9,0x5f,0xb8,0xc9,0x5f,0x68,0x53,0xc1,0x6b,0xae,0x66,0xb3,0x41,0x46,0xfc, + 0xfd,0x82,0xfe,0x7a,0x9e,0x3a,0x8b,0x3c,0x16,0xd2,0xd0,0x08,0x3d,0xf8,0x66,0x96,0x1a,0x4e,0x46,0x03, + 0xb3,0x4a,0x1e,0x27,0xf0,0x97,0xfb,0x22,0xb9,0x82,0xbf,0xd3,0xe5,0x93,0xbc,0xf8,0x8e,0x72,0x85,0xed, + 0x5f,0xfb,0x6b,0x1a,0x91,0x56,0x4c,0x47,0x25,0x8a,0x19,0xed,0x90,0x48,0xc2,0x35,0x22,0x71,0xc1,0xef, + 0xc0,0xe0,0x55,0x1e,0x7e,0x93,0x3b,0xae,0xed,0x66,0xaa,0xe5,0x8c,0xfc,0x2c,0x67,0xf7,0xf2,0xc1,0x76, + 0x8b,0x98,0xe7,0xb1,0x60,0x07,0xeb,0xb4,0x12,0x5d,0x70,0xb7,0xa9,0xf0,0xa2,0x41,0x60,0x05,0x4d,0xd7, + 0x70,0x4d,0x1f,0x5d,0x80,0xfc,0x34,0x76,0x08,0xe2,0xa6,0xd4,0x84,0x2f,0xc3,0xe9,0x0d,0x1e,0x6e,0x32, + 0xd8,0x68,0x5f,0x31,0x01,0xcb,0x15,0xfb,0x72,0x21,0xba,0xd5,0x58,0xac,0xef,0x8d,0x09,0xf9,0xbe,0x79, + 0x78,0xa7,0x1f,0x80,0x74,0x6b,0xbb,0x29,0xee,0x5b,0x47,0xcf,0x6b,0xac,0x85,0x0b,0x4d,0x23,0xf6,0xe1, + 0xd6,0xd5,0x79,0xbe,0x74,0x9e,0xd7,0xce,0xb3,0xff,0x2e,0xda,0x77,0xc9,0x9c,0x22,0x02,0x7a,0xff,0x98, + 0xd6,0xcc,0xba,0x1b,0xbd,0x53,0xb5,0xca,0xdf,0xd7,0x98,0x85,0x63,0xb5,0x06,0x95,0x5a,0x07,0xdb,0x35, + 0x8b,0x2b,0xdf,0xe3,0x48,0x11,0xc1,0x92,0xdc,0x92,0xdf,0xf7,0x15,0x05,0x7e,0xcf,0x6a,0xa7,0x65,0xc4, + 0xce,0x2f,0x76,0xe8,0x73,0x69,0x4c,0x66,0xb7,0x85,0xcf,0xc2,0x25,0x09,0x1c,0x32,0xcd,0x95,0x73,0x41, + 0x51,0xdb,0x32,0x1d,0x91,0x8c,0xbb,0x77,0xee,0x4a,0x63,0x76,0xb7,0x51,0xd5,0x86,0x45,0xb7,0x20,0x57, + 0x6b,0xde,0x0f,0xe3,0xa3,0xfe,0xaa,0x76,0xe8,0x7d,0x68,0xc9,0xfd,0x52,0xd3,0x33,0x67,0x2f,0x8d,0x61, + 0x0d,0x2b,0xd7,0x40,0x1c,0x73,0x09,0x81,0x42,0xde,0xe1,0xf6,0xb3,0xff,0x18,0x5e,0xde,0xe1,0x42,0x9b, + 0x60,0x87,0x80,0x57,0xf5,0x33,0x5d,0xa5,0xff,0x4c,0x54,0x52,0xf8,0xe1,0xd2,0x65,0x87,0x8d,0xd4,0x13, + 0x01,0x51,0x7f,0xcb,0x8d,0x3a,0x65,0xa6,0xd5,0x28,0xe5,0x29,0x92,0x1f,0xbb,0x3a,0xfe,0x91,0x2b,0x99, + 0x46,0x5e,0x01,0x60,0x60,0x6c,0x24,0x3d,0xb8,0x8b,0x11,0x41,0xa4,0x73,0xd3,0xf3,0x8f,0x84,0x07,0x40, + 0x84,0x14,0xfd,0x9b,0x53,0xdf,0xc1,0x0e,0xee,0x69,0xd7,0xfa,0xec,0x6b,0xf1,0x22,0x9a,0x07,0xa2,0xe9, + 0x6c,0xae,0xac,0x91,0x7c,0x21,0x9a,0xd9,0x17,0x75,0x91,0x2c,0x0d,0x17,0x92,0xbf,0xa3,0xb7,0xf1,0x3a, + 0x76,0xf3,0xd6,0x32,0x51,0xef,0x11,0x9e,0x36,0xe0,0x06,0x09,0x08,0xe7,0xec,0x23,0x9e,0x63,0x53,0x5a, + 0x0b,0x6d,0x82,0xc6,0xf4,0xfe,0xb9,0x3d,0x1d,0x4c,0x09,0x1c,0xf3,0xe8,0x3c,0x1f,0x4e,0x47,0x3e,0x34, + 0x6d,0x37,0x1b,0x76,0xba,0x02,0x75,0x5d,0x7b,0x0d,0xb9,0x8e,0xe6,0xb8,0x74,0x83,0xe8,0x0f,0x55,0xaf, + 0xc1,0x65,0xb3,0xf1,0xc1,0xbc,0x3a,0x92,0x1c,0x07,0x7c,0x26,0x99,0x3b,0x67,0x12,0xdc,0x58,0xb6,0xc6, + 0x35,0xb6,0xb2,0x36,0xeb,0x04,0xd3,0x0d,0xd9,0x68,0x6f,0x5d,0x1d,0xda,0x9d,0x18,0xef,0x34,0x49,0xbf, + 0xa0,0x0e,0xc3,0x77,0x8f,0x26,0x6e,0x4e,0x6d,0x94,0x28,0x61,0x4a,0x84,0xd6,0x35,0x94,0x80,0x1a,0x19, + 0x25,0x3a,0xe9,0xd6,0xf8,0xd9,0xa4,0x71,0xb0,0x55,0x14,0xcb,0xfc,0x22,0x0e,0x23,0x3c,0x0f,0xc2,0x79, + 0x75,0x57,0x4a,0x5f,0xbf,0x4f,0x28,0xad,0x25,0x9e,0xac,0x73,0xa7,0xab,0xb7,0xee,0x12,0x97,0xaa,0x09, + 0x2e,0x21,0x4b,0xb9,0x84,0xd4,0xaa,0x2f,0x61,0xb9,0xd5,0xa6,0xd7,0x2d,0x57,0xbc,0xa2,0xe4,0xac,0xaf, + 0x27,0x83,0x9a,0xa6,0x53,0x75,0xe1,0x6b,0xb4,0x9d,0xf4,0xbd,0x25,0xdc,0xec,0xa2,0x53,0xb6,0xba,0x4b, + 0x99,0x2a,0x9c,0xf0,0xb9,0xc2,0x4b,0x3e,0xec,0xf3,0x5c,0xfc,0x90,0xf0,0x04,0x13,0x24,0x07,0x66,0xf6, + 0x37,0x9b,0x82,0x7a,0xca,0xd8,0x22,0x15,0xd2,0xec,0xf3,0x13,0x15,0xfd,0x16,0x97,0x0d,0xdc,0x79,0xf3, + 0x51,0x8f,0x61,0xbe,0x0d,0xc2,0x82,0x9a,0xa1,0x15,0xb9,0xe7,0x60,0x19,0x4c,0x86,0x76,0xaa,0x59,0x50, + 0xbe,0xc9,0x2d,0x4b,0xd3,0xce,0x3e,0xc7,0xd7,0x33,0x66,0xe8,0x25,0x87,0xd6,0x03,0x2e,0x1b,0x39,0x2f, + 0x25,0xf4,0x69,0x62,0xf2,0x05,0xec,0x7f,0xfd,0xca,0xd3,0x0d,0xb1,0xf0,0xb4,0xb9,0x72,0xff,0xbf,0x05, + 0x0f,0xce,0x7d,0x5d,0xd4,0xfb,0xba,0xd8,0x56,0xd2,0xf8,0x79,0x0f,0x56,0x0a,0xec,0xf5,0x8b,0x43,0x89, + 0xcb,0x4c,0x9f,0xe8,0x2d,0x59,0xbe,0x8a,0x04,0x71,0xb3,0xb9,0xe3,0x69,0x49,0x83,0x77,0xa7,0x4f,0x4d, + 0xd6,0xc2,0xbc,0xd5,0xdf,0xd9,0x94,0x60,0x78,0x3d,0x8a,0xe6,0x62,0x6d,0x5d,0xf5,0x4f,0x08,0xc5,0x9c, + 0x57,0x89,0x0e,0xcb,0xd6,0x5f,0x0d,0x32,0xe0,0x95,0xcf,0xf7,0x44,0x26,0x03,0x24,0x74,0x59,0x8b,0x4e, + 0x7d,0x3e,0xcc,0xed,0xa1,0x6e,0xa4,0x12,0xc7,0x2f,0xd6,0x70,0xc7,0x19,0x16,0xe5,0xe8,0xd3,0x4a,0xbc, + 0x17,0xb1,0x99,0x8f,0xd0,0x8b,0x8e,0x27,0x6f,0xec,0x47,0x61,0x6f,0x0c,0x2d,0xeb,0xaa,0x6f,0x00,0xa7, + 0xb2,0xf5,0x47,0x27,0xc4,0x15,0xd4,0xdb,0xcb,0xc4,0xd3,0x36,0x76,0xa2,0xda,0x3d,0x80,0x89,0x28,0xf6, + 0x38,0x73,0x2f,0x97,0xc4,0x95,0x09,0xe8,0x56,0x5a,0x91,0xa4,0x45,0xe5,0x87,0x03,0x36,0xdd,0x81,0x35, + 0x77,0x73,0xfd,0x15,0xd1,0xf6,0x37,0x46,0xb0,0x47,0xb9,0xe4,0x19,0x78,0xd5,0xf1,0x88,0x38,0xd8,0x34, + 0x30,0x66,0x2a,0x4c,0x34,0xd9,0x4d,0x01,0x6c,0xa9,0xcb,0xf0,0x3b,0x6c,0x03,0x21,0x5b,0x67,0x4a,0x9f, + 0x07,0x34,0x5e,0x88,0xfb,0xd0,0xb7,0x25,0x8f,0x7e,0x8f,0xdd,0xf5,0xf9,0xcd,0x70,0xa6,0xb2,0xb0,0xae, + 0xf3,0x41,0x99,0xfb,0xd7,0x79,0x10,0xfe,0x3d,0xe5,0x53,0x7c,0x75,0x88,0xb0,0xfe,0xde,0x94,0x73,0x34, + 0xa5,0x3f,0x63,0x78,0xed,0x8d,0x97,0xe5,0x53,0xf0,0x05,0xa0,0x46,0x1c,0xbb,0x27,0x19,0x63,0x3f,0x0a, + 0x6e,0x68,0x4e,0x0b,0x61,0x19,0x82,0x07,0xb8,0x86,0xd2,0x8c,0x74,0x6e,0x79,0x85,0x31,0x0c,0x73,0x95, + 0xe6,0xa0,0x1a,0xc4,0x29,0x37,0xea,0x89,0xab,0xe8,0x5b,0x38,0x52,0xa9,0x3c,0x20,0xf7,0x75,0x01,0xb9, + 0xa8,0x59,0xc9,0x05,0x95,0xae,0xfb,0xc6,0xfb,0x97,0x73,0x51,0x13,0xf4,0xa0,0x30,0x41,0x1d,0x4c,0xbb, + 0x0e,0x57,0x6e,0x36,0xa8,0xf1,0xfd,0xca,0xc0,0xa2,0xa5,0x5b,0x1f,0xec,0x14,0xaf,0x2a,0xa8,0xf3,0xc1, + 0x0c,0x29,0xd6,0xe2,0x2e,0x28,0x25,0x96,0xf9,0xbb,0x24,0x5b,0x86,0xb0,0x73,0x02,0xd0,0x06,0x99,0xe1, + 0x0c,0x61,0xf8,0x79,0x57,0x39,0xa5,0x98,0x43,0xd1,0x2f,0xa6,0x18,0x14,0xb5,0xf1,0x20,0xf7,0x5d,0x44, + 0x15,0x43,0xc1,0xd6,0xb2,0x9a,0x4f,0x83,0xc0,0xd9,0xd0,0xc1,0x71,0x46,0x66,0x58,0xb4,0x39,0x8d,0xdd, + 0xb3,0x95,0xe8,0x28,0xc9,0x6c,0x03,0xbe,0xe3,0x19,0xbe,0xb9,0x30,0xeb,0x85,0x95,0x35,0x6d,0x0b,0xf7, + 0x8e,0xd9,0x28,0x42,0x15,0xf0,0xaa,0x26,0xb3,0x80,0x88,0xc5,0x5a,0xc0,0x04,0x49,0xf1,0x3c,0xfd,0x2d, + 0x61,0xf9,0x0e,0x6b,0x71,0xc3,0xb5,0x8e,0xff,0x28,0x8f,0xbe,0xcd,0x89,0x73,0x70,0xaf,0xa2,0xc0,0x2e, + 0x3c,0xcc,0x81,0x15,0x4d,0xb9,0xad,0xdd,0x44,0x60,0xb8,0x23,0xde,0x63,0x74,0xc9,0xe8,0x2e,0x18,0x83, + 0x71,0x94,0x04,0x7a,0x15,0xfb,0x58,0xd2,0x63,0x7e,0xa1,0x33,0x8e,0xbf,0x37,0xd6,0x5b,0xee,0x18,0xe6, + 0x08,0x5a,0x49,0x94,0xda,0x82,0x7a,0x0e,0xfe,0x5e,0x20,0xc8,0xd7,0x3a,0xf3,0xd9,0x82,0x0a,0xa7,0xa2, + 0x87,0xb9,0x7d,0xde,0x35,0xf8,0xb4,0xe6,0x9e,0xac,0x02,0x65,0x22,0x41,0x68,0x3f,0xd0,0xd6,0x59,0x10, + 0x17,0xaf,0x99,0x0f,0xa0,0x99,0xca,0x1a,0xd4,0x7a,0x89,0x21,0x5c,0xa2,0x16,0xb5,0x25,0x19,0x82,0x06, + 0x52,0x42,0x0f,0xa1,0x61,0xae,0x09,0x3e,0x01,0xb0,0xe9,0xc4,0xd2,0x27,0xb1,0x54,0xa0,0xde,0x19,0xab, + 0x44,0x0f,0xf4,0xd7,0x33,0x66,0x8a,0x62,0xfc,0x85,0x17,0x43,0x4d,0x86,0x5e,0x9a,0x81,0x95,0x3c,0xb4, + 0xdd,0x34,0x96,0x0a,0xae,0xe4,0x53,0xc1,0xae,0xbb,0xe9,0x28,0xd0,0x84,0xa1,0x16,0xa9,0x9d,0x93,0x01, + 0xfc,0x1f,0x1c,0xad,0xa8,0x54,0x83,0x9f,0xa8,0xbb,0x9d,0x89,0xbd,0x13,0xe6,0xce,0x89,0x91,0xbe,0x78, + 0x94,0x13,0x9c,0xf9,0x86,0xa0,0x0a,0x34,0x4a,0x24,0x13,0x91,0x45,0xdd,0x8f,0xa6,0xbd,0xfc,0x7e,0x5c, + 0xb9,0xd2,0x5a,0x36,0x32,0xc1,0x75,0x12,0x6f,0x4e,0xd4,0x32,0x2c,0xe1,0x6e,0x69,0x99,0x51,0x79,0xbc, + 0x85,0x90,0xc6,0x45,0x16,0xed,0xc0,0xa0,0x01,0x47,0x5b,0x14,0x56,0x14,0xb9,0xb8,0xfb,0xb3,0x69,0x4f, + 0x33,0x62,0xbe,0xa3,0x4c,0x9f,0xc0,0x28,0x41,0x4e,0x18,0x35,0x10,0x51,0x76,0x41,0xef,0x46,0xfa,0x66, + 0x73,0xaf,0x96,0xcc,0x7e,0xda,0xd9,0x47,0x84,0xa6,0x2d,0x38,0x7b,0xd9,0x96,0xe0,0x80,0x98,0x79,0x17, + 0x07,0xa1,0x25,0xed,0x44,0x55,0x75,0x58,0x10,0x12,0x47,0xa7,0xd2,0x96,0xe9,0x2a,0xee,0xa7,0xcc,0xe5, + 0x41,0x24,0xec,0xf8,0x76,0x54,0x19,0x0e,0xf9,0x09,0xe3,0x5e,0xff,0x9f,0x9b,0x98,0xd2,0xbf,0x65,0x4e, + 0x38,0x6e,0x81,0x9f,0x41,0x2d,0x5c,0x13,0x64,0x22,0x94,0x99,0x9f,0x56,0x21,0xcb,0x6f,0x68,0x03,0x08, + 0xad,0xd1,0x65,0x6e,0x02,0xd4,0x36,0x2e,0x51,0xe8,0x43,0x23,0x65,0x5b,0x0f,0xe9,0x67,0xe7,0x54,0x82, + 0x25,0xe8,0x03,0x49,0xdd,0x08,0xb3,0x84,0xc2,0x20,0x9b,0x52,0x8a,0xef,0x9f,0x42,0xee,0xa5,0xea,0xbb, + 0x99,0x9f,0x0c,0xf2,0x30,0x0d,0x8c,0xd7,0xd3,0x2d,0x2a,0xcb,0x8c,0x24,0x9d,0xbd,0xf6,0xe8,0xe7,0xa8, + 0xba,0x84,0xe2,0x5b,0x72,0x73,0x7d,0x6e,0x33,0x43,0xbc,0x56,0xb3,0x53,0x86,0x83,0x48,0xf7,0x76,0xaa, + 0xd1,0x3b,0xe7,0x23,0x51,0x64,0x36,0x18,0x75,0xcb,0x3b,0x22,0x9a,0x18,0xb7,0x94,0x59,0xe0,0xe9,0x86, + 0xb0,0xc8,0x69,0xe3,0xae,0x62,0xb6,0x99,0x14,0xda,0xf8,0x62,0xb8,0xbf,0x8f,0x47,0x42,0xc9,0x97,0xd1, + 0x9b,0x9c,0x23,0x9c,0x1b,0xc9,0xfd,0xb2,0x97,0x14,0x45,0x4e,0x27,0x83,0x94,0xd6,0x4d,0x99,0x2e,0x96, + 0x51,0xae,0x96,0x9a,0xfe,0xdc,0x40,0xc7,0x23,0x9d,0x25,0x61,0xa2,0xf4,0xd3,0x9b,0xfc,0x89,0x06,0xd5, + 0x12,0x82,0x0f,0xaa,0xa8,0xd5,0xca,0xb5,0xa6,0x11,0x93,0x02,0xa2,0x62,0xc3,0x8c,0x20,0x85,0x00,0xb8, + 0xbe,0x97,0xea,0x38,0x16,0x08,0xf5,0xab,0x88,0x81,0x36,0x39,0x72,0xd3,0x82,0x2e,0x6d,0x2a,0x3c,0x69, + 0x70,0x8a,0x66,0xb4,0x17,0xe1,0x53,0x4f,0xbb,0xd7,0xe3,0xd9,0x53,0x60,0x1f,0x69,0xdb,0xa6,0xf9,0xb5, + 0x23,0x34,0x11,0x92,0x11,0x49,0x51,0x23,0xd7,0xb8,0x22,0x13,0xd5,0x35,0x5d,0xdc,0x4c,0xa9,0xeb,0xe1, + 0x55,0x12,0x9c,0x0b,0xb4,0x35,0x86,0x8e,0x02,0xda,0x8f,0x96,0xb4,0xbb,0x19,0xeb,0x9d,0x6d,0xe0,0x7f, + 0x9f,0x07,0xbd,0x5d,0x78,0x11,0xe6,0xc5,0xd1,0xde,0x1e,0x3c,0xd5,0x2f,0x32,0x1f,0xf7,0x4d,0xb9,0xfb, + 0x4e,0xa7,0x89,0x38,0x6e,0xb5,0xbb,0xf9,0xd1,0x35,0x0a,0xe3,0x10,0xb6,0x56,0xd9,0x84,0x3a,0xb0,0x8c, + 0xa3,0x16,0xe3,0x29,0x93,0xfd,0xe3,0x76,0x55,0x20,0x75,0x6c,0x54,0xc5,0xcd,0x40,0x71,0xb4,0x66,0xde, + 0x49,0x6c,0xa4,0x9b,0x64,0x1e,0x4c,0x90,0xe5,0xdd,0x98,0xa1,0xb5,0x68,0xe2,0xec,0xb2,0xc0,0x44,0x9c, + 0xb6,0xea,0xbb,0x3d,0xb3,0xdd,0x88,0x3c,0x94,0x95,0x2d,0x79,0xba,0xab,0xc0,0x82,0x45,0xe0,0xfd,0x49, + 0x58,0x53,0x1b,0x15,0x81,0xb9,0x83,0x38,0x86,0x98,0xc0,0xba,0xda,0xda,0x73,0x3c,0x73,0xb9,0x5d,0x29, + 0x98,0x6f,0x34,0x40,0x92,0xf3,0x28,0x97,0xdf,0xb1,0x4a,0xcd,0x57,0x65,0xcd,0x23,0x5c,0xc7,0x49,0xfa, + 0xb0,0xa1,0x9e,0xe8,0x53,0xdb,0x79,0x69,0xb8,0x8b,0xae,0xec,0x33,0xf9,0x18,0xef,0xce,0x19,0xc0,0x2c, + 0x23,0xd7,0x9b,0x67,0x01,0x37,0x79,0x37,0xad,0xc2,0xa2,0x34,0xfe,0xa0,0x60,0x28,0x47,0x9c,0x2a,0xb3, + 0x3e,0xc2,0xcc,0x59,0x2c,0x86,0x5f,0x43,0xaa,0x79,0xdc,0xea,0x20,0xee,0xd0,0x40,0xd3,0xcb,0x00,0x3a, + 0x68,0x0d,0x9c,0xef,0x9b,0xf9,0x8a,0x72,0x36,0x04,0x6d,0x2c,0x91,0xca,0x1c,0x3f,0xd6,0x8e,0x7a,0xe0, + 0x64,0x83,0xaf,0x41,0xc5,0x9e,0x92,0xf1,0x9e,0xc6,0x44,0x6f,0xdb,0xa0,0x61,0x7e,0xe0,0x49,0x7c,0xb0, + 0x6a,0x9e,0xe5,0x62,0x1a,0x67,0x8b,0x55,0x26,0xd1,0x1b,0x27,0x44,0xb8,0xf4,0x47,0xa1,0x6d,0x03,0xf9, + 0xe9,0xe9,0xac,0x51,0xe2,0xb7,0x06,0x90,0x95,0xd2,0x10,0x0d,0xe3,0xb7,0x17,0xcf,0x27,0x03,0x79,0x24, + 0x6e,0x30,0x2c,0x7b,0x3f,0xad,0x92,0xa7,0x27,0x7f,0xc9,0x50,0x7a,0xdb,0x08,0x30,0x4d,0xdd,0x5a,0x11, + 0x82,0x00,0x05,0xa9,0x6b,0x7d,0x87,0x35,0x90,0x3e,0xb7,0xf4,0x0c,0x97,0xee,0x39,0x5b,0x27,0xe9,0x27, + 0xa6,0x63,0xbe,0x37,0x5c,0xaf,0x92,0xc3,0x94,0xda,0x19,0x75,0xbc,0x2e,0xfc,0x4c,0x1e,0x1c,0xd4,0x32, + 0xf0,0x0e,0x3e,0x7e,0xe7,0x3a,0xd2,0x4e,0x1a,0x01,0xef,0xe4,0x84,0xb5,0x03,0xa8,0xb2,0x2a,0xe1,0x12, + 0xa2,0xb5,0x9e,0x03,0xac,0xdb,0x79,0xed,0x4e,0xb5,0x11,0x45,0x0f,0x61,0xf4,0x6c,0xec,0x08,0xa7,0xb2, + 0xd4,0x8d,0xfd,0x2d,0xa2,0x3d,0x7b,0xbb,0x6f,0x79,0x3d,0x08,0x13,0x20,0xd8,0xab,0x3e,0x81,0xcb,0xd3, + 0xab,0x19,0xfa,0x7c,0x29,0xff,0x98,0xb5,0xc0,0x32,0x07,0x73,0x84,0x14,0x9b,0x73,0x62,0x62,0xeb,0x0a, + 0xac,0x9c,0x38,0x48,0xd9,0xa8,0x30,0xdc,0x59,0xfe,0x25,0xc7,0x90,0xc7,0x75,0x0b,0xb2,0x85,0x77,0x9d, + 0x0a,0x59,0xb0,0xf7,0xc1,0xec,0xca,0x47,0x9b,0x27,0x6d,0x6d,0x52,0xa2,0xbe,0xb5,0xe1,0x47,0x75,0x43, + 0x0c,0x4a,0x4c,0xfb,0x5b,0x21,0x96,0x48,0xb4,0xde,0x1c,0x6f,0x9f,0x79,0x65,0xa7,0x8d,0x19,0xd1,0x8d, + 0x5a,0x1c,0x28,0x6b,0xba,0x59,0x56,0xdf,0x80,0x3d,0x37,0x69,0x6d,0x86,0x8d,0x63,0x03,0xc9,0x7b,0xa5, + 0x11,0x06,0x10,0x94,0x11,0x84,0xb0,0x17,0x9f,0xf3,0x95,0x61,0x3e,0x4c,0xa2,0xbb,0xac,0xd4,0x49,0x5d, + 0xcb,0x08,0x2c,0x0f,0x4e,0x06,0x27,0xe1,0x71,0x78,0x12,0x66,0x03,0xce,0x37,0x4f,0xe1,0xfe,0xf7,0x6e, + 0x10,0x1e,0x8f,0x06,0x39,0x4b,0x73,0xf8,0x0c,0x15,0x3a,0x13,0x19,0x3b,0x53,0xce,0x87,0x4e,0x8e,0xdf, + 0xdd,0x3c,0x7f,0xd6,0x7c,0xb8,0x2f,0x5d,0xe1,0x91,0x33,0xef,0x76,0x53,0x17,0x76,0x89,0xce,0x27,0xf7, + 0x77,0x70,0x22,0x35,0xbc,0x78,0x2e,0xb1,0x75,0xf8,0xd2,0x50,0x87,0x1e,0xc9,0x8d,0x9b,0x89,0xc8,0x06, + 0xc8,0xd0,0xf7,0x09,0x68,0x8c,0x39,0x97,0x3c,0x18,0x13,0x79,0x59,0x45,0xb1,0x9a,0x0a,0x06,0xc3,0xe9, + 0x22,0xbb,0x12,0xcd,0xc1,0xaa,0x0c,0x98,0x6b,0x59,0x32,0xf3,0xa2,0x38,0x25,0xe4,0x14,0x7e,0xd4,0x7c, + 0xbc,0x5a,0x59,0x0b,0x86,0x7a,0xbc,0x01,0x66,0xfe,0x66,0xec,0x2d,0x1b,0x1e,0x9b,0xb5,0x6f,0x37,0x9b, + 0x65,0x55,0xf9,0xea,0xe5,0xfe,0xab,0xb8,0x3f,0xe3,0xd8,0x0e,0xec,0x0e,0xa8,0x54,0x71,0xe5,0x89,0x5e, + 0xe5,0xbd,0x33,0xc1,0x10,0x78,0x40,0xe9,0xed,0x63,0x65,0xf7,0x24,0xa1,0xf2,0xcb,0xdc,0x81,0x21,0x6f, + 0x21,0x3e,0x61,0x31,0x87,0x95,0x9d,0xb8,0x3e,0x1a,0xf1,0x0c,0xc3,0x8b,0xa4,0x78,0xf0,0x49,0x89,0xe5, + 0xce,0x4d,0x26,0x08,0xfc,0x08,0x5c,0x9a,0xdb,0xc9,0x82,0xca,0xa7,0x0e,0xe5,0x2e,0x8b,0x6b,0x0d,0xbe, + 0x66,0xe4,0x23,0x62,0x72,0xea,0x49,0x52,0x37,0xf1,0x7b,0x4b,0x8b,0x95,0x46,0x1b,0x21,0xb2,0x17,0xe6, + 0x10,0x04,0xc8,0xd1,0xd1,0xd2,0x3e,0x37,0x78,0x30,0x8e,0x42,0x05,0x07,0x53,0x96,0xca,0x36,0x9b,0x65, + 0x75,0x44,0x15,0x8d,0x08,0xf7,0x1c,0x4a,0xbd,0x58,0xd5,0x12,0x2a,0x9e,0x72,0x5c,0xb5,0xbd,0xb2,0x6d, + 0x8f,0x77,0xda,0x76,0x5a,0xce,0x08,0xa9,0x8d,0x13,0xb7,0x2d,0xab,0x37,0x55,0x9a,0x6e,0x74,0x0a,0xa6, + 0xf3,0x83,0x36,0xf2,0xc8,0xac,0x57,0x31,0x9c,0xbe,0x2b,0xc5,0x87,0x2a,0x2c,0x84,0xc3,0xfb,0x5b,0xd7, + 0x73,0x16,0x53,0x06,0x7b,0xc4,0x32,0xf0,0x3c,0x42,0x34,0xed,0x7b,0x59,0x5e,0xd2,0x1e,0x94,0x2e,0xcb, + 0x8e,0xde,0x20,0x3a,0xa9,0xf6,0xcf,0x03,0x2c,0xa5,0x34,0xfb,0xee,0x41,0xab,0x98,0x7d,0x43,0xd7,0x0b, + 0xd5,0x0b,0x60,0xc7,0xef,0xe8,0x46,0xa5,0x84,0x1b,0x12,0x22,0xa9,0xa1,0x9d,0x18,0xb3,0xd0,0xec,0xc8, + 0xc8,0x66,0xd1,0x0e,0x61,0x23,0x7c,0x5c,0x05,0x83,0x38,0xca,0x43,0x71,0x06,0x0a,0x2d,0xf6,0x1e,0x07, + 0x5e,0x5c,0x82,0x94,0x30,0x22,0x12,0xab,0x9b,0xf7,0x68,0x79,0xd2,0xbe,0x7e,0x83,0x4f,0x61,0xac,0x34, + 0x51,0x83,0xb9,0xe8,0x74,0x09,0xd3,0x22,0x75,0x11,0xcd,0xa4,0xdc,0x82,0x1e,0x74,0xb9,0x09,0x3d,0x22, + 0x03,0xfb,0xad,0xda,0x6c,0x16,0x9b,0xcd,0x04,0xac,0xd8,0x85,0xf4,0x8f,0x2f,0x5c,0xd4,0x54,0x5d,0x43, + 0xae,0xa8,0x81,0x08,0x9f,0x45,0xa5,0x96,0x7e,0x9a,0x28,0x76,0xfe,0x34,0xba,0x16,0x80,0x06,0x3d,0x13, + 0xc0,0x7d,0xaa,0x86,0x17,0xd6,0xa3,0xa4,0xbf,0x8e,0x26,0x6a,0x8e,0x9d,0xc5,0xbf,0x8c,0xe0,0x23,0x69, + 0x2e,0xe7,0xaa,0xcb,0x40,0xad,0x69,0x44,0x75,0x34,0x5e,0xb3,0xfb,0xf7,0x75,0x50,0x65,0x5b,0x07,0x50, + 0x52,0x00,0x03,0x65,0x56,0xe2,0x75,0x6d,0x1d,0x6a,0xe6,0xce,0xf7,0x4c,0xe0,0xdc,0xce,0xbf,0x61,0xa0, + 0xff,0x86,0xd9,0x58,0x1f,0x96,0x9d,0x2a,0x88,0xb5,0x96,0x5a,0xeb,0xf9,0x5b,0xae,0x16,0x60,0x27,0x3a, + 0x62,0x3b,0x23,0xb6,0x64,0xb5,0x40,0x1b,0xbc,0xa0,0xab,0x1d,0x53,0x8e,0x63,0x78,0xd2,0x6b,0xc2,0xa3, + 0xf9,0xf1,0xac,0x1a,0x21,0xb8,0x54,0xa8,0x2a,0x32,0xa7,0xda,0x17,0xcd,0x3a,0x20,0x38,0x94,0xf8,0x3a, + 0x5f,0x9d,0x84,0xf2,0x7b,0x4f,0x7e,0x3f,0xff,0x52,0x7e,0xef,0x7d,0xae,0x7f,0xbf,0xd2,0xe9,0x7f,0x09, + 0x6d,0x60,0x30,0x29,0xf0,0x85,0xce,0xa0,0x0b,0x7c,0xfe,0x45,0x68,0xf4,0x83,0x27,0xd0,0x55,0x97,0x5c, + 0xf7,0xee,0xea,0xea,0xe5,0xe7,0xe4,0x58,0xff,0xea,0xd6,0x4e,0xbe,0xd4,0x09,0x5f,0x7e,0x71,0xf7,0xcf, + 0x3a,0xcf,0x5f,0xee,0x9a,0x42,0xf4,0x74,0xcf,0x54,0x7a,0xb5,0xf4,0xec,0x05,0xdc,0x83,0xe8,0xab,0x3f, + 0xd3,0x51,0xe3,0x7e,0x74,0x72,0xf7,0xee,0x66,0x43,0xaf,0x5f,0x7e,0xc1,0xaf,0x5f,0x1d,0x0f,0x74,0xe3, + 0x21,0x25,0x7e,0xfe,0x15,0x27,0x7e,0xf1,0xe7,0x81,0x27,0x96,0x0c,0x5e,0xe8,0xf1,0xc5,0x4b,0x4b,0xa0, + 0x10,0xed,0x2b,0x2f,0x32,0x02,0x40,0x13,0xdc,0xde,0x3b,0xf6,0xf6,0x9c,0xd0,0xc2,0xc7,0x90,0x77,0xa5, + 0xcb,0x17,0xf1,0x0b,0x09,0x99,0x06,0x89,0xb5,0x7a,0xa2,0xef,0x13,0x83,0x01,0xd1,0x58,0x3a,0x4c,0xc2, + 0xec,0xc4,0x85,0x78,0xa0,0x25,0x2a,0x36,0x29,0xb1,0xf2,0x4d,0xaa,0xee,0xde,0xe7,0x7b,0xac,0x4c,0x76, + 0xef,0x2b,0xfc,0x0e,0x12,0xdc,0xa7,0x8a,0x0a,0x8f,0x82,0x6b,0x71,0xef,0x33,0xaf,0x9b,0x6a,0xaf,0xb8, + 0x6a,0x6d,0x48,0x5a,0x75,0x6c,0x32,0xfe,0x2f,0x08,0x8b,0xbd,0xa1,0xf0,0x65,0x1d,0xed,0xaa,0xce,0x53, + 0xd3,0xdd,0xfc,0x97,0xf1,0xf2,0xe5,0x55,0x66,0x22,0xdd,0xd1,0x0a,0x6a,0xe3,0x20,0x9f,0x66,0xe5,0xcc, + 0x89,0xd6,0x85,0xd7,0xde,0x63,0x84,0x96,0x49,0xe7,0x09,0x71,0xf7,0xf3,0xb8,0x84,0xf2,0xc2,0x27,0x16, + 0x14,0x37,0x7a,0xba,0xd8,0x79,0x74,0x23,0x8e,0x2c,0x1e,0x35,0xa2,0x44,0xd6,0xfc,0x0a,0xb9,0x27,0xb4, + 0xb2,0x87,0x05,0x15,0xc9,0x0f,0x5f,0xd9,0x9d,0x9d,0xe1,0x71,0x70,0xb3,0x0d,0x4d,0x48,0x20,0x5e,0xe1, + 0x37,0x36,0xb3,0xa5,0x7a,0xd4,0xa3,0xe7,0x3a,0x5d,0x0a,0x05,0x66,0xd7,0x42,0xa4,0xc3,0xbe,0x49,0x6d, + 0x75,0x3c,0x93,0xd0,0x0e,0x9f,0x28,0x87,0x59,0x29,0x59,0xed,0xdf,0xdd,0x53,0x92,0x96,0x10,0x88,0x12, + 0x53,0x14,0x95,0xb2,0xf3,0xde,0x67,0x4c,0x07,0x9e,0x27,0xcb,0x65,0x2c,0xfe,0x6b,0x64,0x0b,0xd3,0xbb, + 0x08,0x35,0x23,0x5e,0x9f,0xce,0x9c,0x31,0xaa,0x2a,0xe5,0x67,0xe4,0x4a,0xb4,0x57,0x2e,0xe9,0xea,0x15, + 0x92,0xb0,0x17,0x40,0xa7,0xd8,0x0f,0x9c,0xcc,0xac,0x94,0x30,0x2e,0xd2,0xf3,0x04,0x9f,0x1e,0xc1,0x28, + 0x87,0xc3,0xff,0xf0,0xa9,0x4a,0xb2,0x99,0x1c,0xe2,0x89,0x6d,0x5b,0x05,0xc4,0xd0,0x20,0x14,0x58,0xf1, + 0x0c,0x14,0x79,0x5e,0x9a,0x28,0xf3,0x78,0x16,0xba,0xb6,0x9b,0x52,0x83,0x35,0xdf,0x54,0x72,0x5f,0x90, + 0x21,0x6a,0xe6,0xd5,0x33,0x05,0xa0,0xcd,0x39,0xaa,0xef,0x4e,0x8e,0xea,0x93,0xcd,0x4b,0xfc,0xd7,0x39, + 0x9d,0x4a,0x04,0x90,0x2d,0x05,0x6a,0xdf,0x4d,0xa9,0x25,0x9d,0xf2,0x32,0xd1,0x28,0x9d,0xb1,0xe9,0xc1, + 0xcf,0xac,0xe0,0xdd,0x2c,0xdc,0x9a,0x8d,0xbd,0xea,0xd6,0xb1,0xa5,0xf8,0x28,0xb6,0x14,0xe0,0x07,0x77, + 0xb1,0xc5,0xa2,0x02,0xcf,0xff,0x32,0x2a,0xda,0x27,0x1e,0xf7,0xde,0xcf,0xcd,0x24,0xfc,0x8f,0xcd,0xbf, + 0x72,0x76,0x10,0x0d,0xb6,0xeb,0x8c,0xaf,0xe6,0xec,0x0b,0x5f,0x51,0x8b,0x03,0x3f,0x86,0x6f,0xad,0x43, + 0xfb,0x55,0x87,0x04,0xfa,0x7e,0x60,0xbd,0xba,0xff,0x71,0x1c,0x1a,0xf8,0xee,0x8a,0xd8,0xc1,0xa0,0x3f, + 0x3e,0x5c,0x1c,0xb4,0xe5,0x82,0x03,0x17,0xa3,0x3a,0x1a,0x82,0xe9,0x51,0xed,0x7d,0x07,0xa7,0xdd,0x25, + 0xea,0x66,0xfc,0xa7,0xba,0x63,0xfc,0xb6,0x3d,0x6e,0xc6,0x94,0x35,0x8e,0xdb,0xa4,0x6b,0xfe,0x4e,0xe1, + 0x5a,0x8f,0x7a,0xab,0xec,0x43,0x2d,0x6b,0x51,0xe6,0x4e,0x1d,0x2d,0x58,0x56,0xab,0x56,0xa7,0xf9,0x8d, + 0x1a,0x9c,0x4f,0xa6,0x86,0x1a,0x62,0xb4,0xa3,0x4b,0xb3,0x96,0xda,0x47,0xb7,0x27,0x12,0xe3,0x6d,0xbb, + 0x55,0x57,0xc6,0xc5,0x2a,0x52,0x2b,0xb7,0x8b,0xf1,0x0c,0xf6,0xd9,0xe2,0x08,0x91,0x55,0xd2,0x6e,0x5c, + 0xb7,0xb3,0xfa,0x06,0x3f,0x14,0x17,0x87,0x5b,0x0e,0x1f,0x5e,0xcf,0x61,0xd8,0x30,0x5c,0xf9,0x19,0x46, + 0xd4,0xcd,0xb0,0x55,0x7c,0x83,0xbd,0xd4,0x89,0x43,0xe6,0xfb,0xac,0xe7,0xd7,0xed,0x8e,0xe7,0xc5,0x1a, + 0x37,0xcf,0xdd,0x82,0xb0,0x41,0x62,0x5d,0x20,0xe4,0x6b,0x65,0x43,0x86,0xef,0x0e,0xe2,0x48,0xf0,0x0b, + 0x3f,0x17,0xc1,0xfc,0x47,0x7d,0xbc,0xea,0x18,0x6e,0x91,0xfc,0xd8,0x58,0xb9,0xc4,0xc2,0x5b,0x37,0x9b, + 0x79,0x5f,0x04,0xe8,0x85,0xb0,0xd2,0x08,0xbd,0xa1,0x59,0xe9,0x15,0x44,0xce,0x33,0x7c,0xe0,0xb1,0xb1, + 0x99,0xe7,0x45,0xe3,0x84,0x36,0x0b,0x06,0x33,0x13,0xa1,0xf7,0x38,0x74,0xf7,0xb8,0x59,0x60,0xd3,0x59, + 0xa7,0xba,0x71,0x4c,0x72,0xfd,0xe7,0x61,0x19,0x55,0xd1,0xc6,0x2b,0xed,0x1f,0x27,0x02,0x39,0x77,0xc1, + 0x9c,0x77,0xaa,0x20,0xe5,0x07,0x07,0x1e,0x5f,0x04,0x6e,0xb7,0x55,0xa0,0x84,0x83,0x83,0xdc,0xb6,0x4c, + 0xe7,0xd0,0x05,0xd5,0xee,0x7b,0x4f,0x2f,0x3a,0x32,0x8a,0x0e,0xa0,0xdd,0x49,0x97,0x1d,0xf8,0x86,0xe9, + 0xd0,0x1e,0xd0,0x61,0x58,0x77,0x74,0xac,0xfb,0x65,0x07,0x06,0x0d,0x9d,0xcb,0x78,0x9d,0x48,0x01,0xc9, + 0x4f,0x99,0x7b,0xb8,0xa3,0xdd,0x1d,0xfb,0x2e,0x4d,0x87,0x74,0x65,0x45,0x67,0x3e,0x78,0xf9,0x6c,0x42, + 0xa4,0x6d,0x07,0x58,0xc1,0x53,0xd9,0x8c,0x75,0x27,0xe9,0x64,0xde,0x5e,0x9f,0x88,0x32,0x16,0x03,0x0f, + 0x46,0x51,0x4d,0xb0,0x84,0x94,0x9a,0xf4,0x57,0x90,0x64,0x41,0x36,0xa9,0x5d,0xf4,0xab,0x54,0xc5,0xbd, + 0xd4,0x97,0x40,0x11,0x58,0x1a,0xef,0xa3,0x1d,0x42,0x31,0xa6,0x96,0x68,0x73,0x69,0xb9,0xeb,0xd8,0xf6, + 0xdf,0x3b,0xbc,0x5f,0x0a,0x6b,0xc0,0x45,0x0e,0xe1,0xb6,0x2b,0x67,0xaf,0x8c,0x82,0x9d,0xda,0xe0,0x0a, + 0xce,0x9c,0x4b,0xa1,0x22,0xf7,0x41,0x75,0x3b,0x55,0xc0,0x45,0x92,0xa3,0x73,0x67,0x84,0xc7,0xe5,0x30, + 0xeb,0x76,0x59,0xfe,0xe2,0xdd,0x78,0xa2,0xf5,0x58,0xe0,0x8e,0xc0,0xb9,0x90,0x67,0x95,0x12,0x4f,0xab, + 0x70,0x15,0xb8,0xb4,0x40,0x5d,0x22,0xbc,0xa1,0x07,0xb1,0x9a,0xd0,0xf5,0x78,0x5b,0xd6,0x3b,0xe9,0x07, + 0x79,0x97,0xf8,0x6e,0x9b,0x2c,0x62,0x88,0x7d,0x61,0xc3,0xf3,0x60,0xe0,0xb1,0x73,0xd0,0xf0,0x5d,0x95, + 0x00,0x62,0x32,0x21,0xf6,0x7f,0x25,0x4e,0xe4,0xbc,0xbe,0xe9,0x82,0x34,0x9b,0x8b,0xfb,0xea,0x78,0x2b, + 0x7a,0xef,0xde,0xff,0xe2,0xbe,0x0e,0xa8,0xcf,0x60,0xfe,0x69,0x46,0xc0,0xe9,0x53,0x93,0x41,0x88,0xbf, + 0xe6,0x18,0xf2,0xd1,0x91,0x24,0x90,0xa6,0xab,0x06,0x54,0xa3,0xa2,0x26,0x77,0xb6,0xc0,0x27,0x48,0x4a, + 0xa4,0xe8,0xa6,0x38,0xc5,0x0c,0x87,0x23,0xca,0xed,0x8e,0x04,0xb0,0x35,0x2f,0xd0,0xa3,0xb6,0x77,0x4f, + 0x0c,0xba,0x7e,0xda,0x9c,0x94,0x98,0x06,0x94,0x8e,0xcc,0x29,0x30,0xd6,0x77,0xca,0x38,0x6e,0x49,0xff, + 0xc3,0x42,0xc7,0x3d,0xd5,0x1a,0x73,0xa2,0x92,0xca,0x87,0x39,0xdd,0x11,0x9d,0x21,0x1b,0x32,0xa7,0x43, + 0x3c,0xbe,0xc9,0xab,0x4e,0x8e,0x83,0x51,0xad,0x80,0xe9,0xad,0xfc,0x8a,0x9a,0xb7,0x2d,0xae,0x4b,0x11, + 0x3f,0x9c,0x76,0xbb,0x16,0xa8,0x5b,0x8e,0x4d,0x27,0x37,0x56,0xfb,0xd1,0xd1,0xaf,0xfe,0xe9,0x24,0xe8, + 0x1e,0xa9,0x77,0xfc,0x78,0x85,0xc7,0x47,0x04,0xa6,0x87,0xd1,0x89,0x7a,0x1d,0xdd,0x55,0x6f,0xa2,0x7b, + 0xea,0x25,0xbd,0xbf,0x8d,0x3e,0x57,0xcf,0xa2,0x2f,0xd4,0x37,0xd1,0x97,0xea,0x55,0xf4,0x67,0xf5,0x34, + 0xfa,0x8b,0x7a,0x8c,0x6b,0xb6,0xc7,0xc3,0x97,0xa3,0xe8,0xe6,0x6a,0x19,0xd2,0xaf,0xe2,0xb3,0x61,0x38, + 0xbc,0xa7,0x1e,0x8d,0x94,0x37,0xf4,0xc2,0xe1,0xdb,0x91,0xa2,0x4d,0x3e,0x1c,0xbe,0x1a,0x6d,0xd5,0xe3, + 0xe1,0x89,0xce,0x79,0x42,0x5f,0x7b,0xf4,0xf5,0x6e,0x6b,0xae,0xbb,0x3a,0xd7,0xdd,0x7a,0x7d,0xc7,0xfa, + 0x57,0x8e,0x9a,0xf2,0x82,0xec,0xf7,0x28,0xfb,0xc7,0xf2,0x29,0x6e,0x55,0x3d,0x34,0xed,0xf2,0x13,0xb7, + 0x8c,0x27,0x69,0x9b,0x9e,0x50,0xdd,0x5b,0xaa,0xce,0xbb,0x43,0x9f,0x9e,0xa1,0xdc,0x1d,0xef,0x4e,0x38, + 0xfc,0xa6,0x1a,0x8e,0x7a,0x4d,0x4f,0x23,0x0f,0x95,0xbd,0x91,0x82,0x4f,0xd9,0x4a,0x0f,0x9f,0xa4,0x3b, + 0xcf,0x4c,0x79,0x24,0xd4,0x72,0x3c,0xd3,0x39,0xbe,0xa1,0x1c,0x5c,0xef,0x4e,0x0e,0x34,0x24,0x13,0xf3, + 0x84,0x2d,0x99,0x89,0x55,0x2b,0x56,0xc9,0x86,0x2d,0x34,0x37,0x87,0x83,0xe1,0xe9,0xa4,0x37,0xea,0x6e, + 0xee,0xb0,0xeb,0xaa,0x3b,0x1b,0x8f,0xbd,0x59,0x79,0x01,0xe5,0xdb,0x3f,0x52,0x2f,0x6e,0x21,0x5b,0xed, + 0x54,0xeb,0x85,0x43,0xb5,0x18,0xcb,0x5e,0xd1,0xa6,0x56,0x23,0x41,0x8e,0xb7,0x63,0xa9,0xc8,0x21,0x58, + 0xd0,0xec,0x4c,0x76,0x73,0x9b,0x58,0x98,0x22,0xdc,0xc2,0x82,0x5b,0x45,0x87,0x27,0xb4,0x35,0xbe,0xe4, + 0x20,0x75,0x97,0x40,0x17,0xac,0x99,0xcb,0xe1,0xc3,0x51,0xcd,0x5c,0xc3,0xec,0x53,0x19,0xab,0xe1,0x08, + 0xf6,0xc2,0xb3,0xa0,0x7c,0x80,0x05,0xfe,0xf0,0x51,0x4b,0x09,0xe8,0x32,0x0d,0xb2,0xa8,0x08,0xb3,0x2e, + 0x31,0xfe,0x94,0xe9,0x75,0x2d,0x13,0x0a,0x11,0x67,0x74,0x41,0xb8,0x4f,0xdf,0xde,0xd4,0xbe,0x41,0xd4, + 0xf5,0xe0,0x38,0xb8,0x38,0x3c,0xa4,0xee,0xbd,0x55,0x92,0xd5,0x5e,0x2c,0xa2,0xb7,0x7b,0xb8,0xc7,0xf0, + 0xb3,0x68,0xc2,0x9e,0xee,0xac,0x24,0x14,0x7d,0x87,0xda,0x64,0x5f,0xcb,0xb8,0x67,0xec,0xd9,0x7d,0xd5, + 0xed,0xc2,0xed,0x21,0xeb,0xf9,0xc0,0x55,0xe2,0x0a,0xd7,0x0f,0x7b,0x8d,0xb3,0x37,0x7f,0xe8,0x9e,0x30, + 0xb5,0x86,0x2c,0xe9,0x19,0xed,0xca,0x77,0x58,0xa3,0x70,0xb3,0xc1,0xfb,0x37,0x07,0x07,0x84,0x16,0x78, + 0x37,0x24,0x06,0xd5,0x12,0xb5,0xa6,0x8a,0xbb,0x89,0xee,0x23,0xc2,0x21,0xfb,0x81,0xb6,0xcb,0x5a,0x40, + 0x8d,0x17,0x7c,0xce,0x32,0x7a,0x3c,0x9c,0x8d,0x02,0xa2,0x3b,0x9b,0xcd,0x92,0x15,0x36,0x37,0x9b,0xa7, + 0x10,0x27,0x3f,0x35,0x1a,0x3d,0xdc,0x26,0x1c,0xd5,0x2b,0x3f,0x8e,0x2e,0x87,0x39,0xad,0xc1,0x91,0xc8, + 0x57,0x2c,0x2c,0xe9,0x39,0xa7,0x45,0x17,0x0c,0x70,0x23,0xc2,0xc3,0xa7,0xf3,0x4f,0x50,0xab,0x20,0x8a, + 0x5e,0x99,0xbe,0x8d,0x45,0x4d,0xcd,0x32,0xa4,0x06,0x47,0xa8,0xf7,0x2a,0x01,0xdb,0xb5,0x55,0x2e,0x92, + 0x4d,0x93,0x12,0x28,0xc6,0xb2,0xdb,0xc6,0xde,0x08,0xb1,0x78,0x52,0x39,0x54,0xad,0x6e,0x54,0x0a,0xe3, + 0x0d,0xdb,0x62,0x28,0x7c,0xcc,0xe2,0xee,0x94,0x36,0xa7,0xa6,0x04,0xfc,0xe0,0xe0,0xd8,0x11,0x76,0xd7, + 0xea,0xaa,0x14,0x59,0x8c,0x7f,0x6c,0x04,0xc2,0xd6,0x2e,0xb3,0xf3,0xbe,0x71,0x94,0x1d,0x0f,0xe1,0x2a, + 0xdb,0xb9,0xcc,0x80,0x9e,0x58,0x70,0x23,0xde,0xa3,0xb4,0xe1,0x40,0x1c,0x8d,0xd5,0xb2,0x22,0xa6,0xb1, + 0xac,0xd6,0xe7,0xb7,0xac,0x9c,0x7e,0x75,0xfe,0x03,0x9c,0xa0,0xd9,0x6a,0x5d,0xf8,0x0a,0xf3,0xb8,0xd9, + 0x78,0x49,0x76,0xf8,0xd7,0xd7,0x1e,0x8b,0xc6,0xea,0x67,0xed,0xea,0x1b,0x2e,0x95,0xcc,0x11,0x97,0xd9, + 0x4b,0x1d,0x73,0xdc,0x91,0x17,0x49,0x3a,0xec,0x22,0x33,0x47,0x1c,0xc4,0xa9,0x7d,0xed,0x7a,0x7a,0x2e, + 0xb7,0x75,0xf2,0xe6,0x88,0x08,0x2a,0x99,0xc0,0x66,0x83,0x83,0xf2,0x7b,0x9d,0x65,0x9e,0x2e,0xe1,0xe0, + 0x03,0x6d,0xcb,0x93,0x48,0x41,0x8d,0x37,0x68,0x16,0x40,0xb0,0x1c,0xa2,0x96,0x8e,0x53,0x6d,0xe4,0x9c, + 0x7b,0xe5,0xc8,0xbb,0xb7,0x27,0x4f,0xa6,0x75,0x3d,0x50,0xd6,0x65,0x72,0x32,0xbb,0xe9,0x52,0xc8,0x4d, + 0x31,0x2d,0xb4,0xca,0x1e,0x2c,0x11,0x29,0xdb,0xa5,0x0e,0xc4,0xe2,0xee,0xdd,0xf2,0x49,0xd7,0x5b,0x07, + 0x28,0xae,0xd1,0xc1,0xd8,0xcb,0x37,0x17,0xa8,0xf5,0x2f,0x38,0x0d,0xb0,0x7c,0xe1,0x45,0x55,0x4d,0x5c, + 0x39,0x01,0x20,0x22,0x28,0xc9,0x7c,0x65,0xd0,0xc0,0x7c,0x4d,0x55,0xfc,0x3d,0x0c,0x36,0xdb,0x6c,0x0a, + 0x3f,0x91,0x0a,0x6b,0xcb,0x45,0x62,0x5f,0x1b,0x53,0xf3,0x33,0xf8,0x7a,0xfd,0xe9,0xb9,0x6f,0x2e,0x2f, + 0x33,0x55,0xc7,0x9a,0x10,0x5e,0x17,0x05,0x55,0x88,0xed,0x6a,0x20,0x49,0x18,0xab,0x1a,0x7a,0x84,0xd0, + 0x5d,0x51,0x3f,0x46,0x37,0xeb,0x79,0x78,0xb3,0xad,0x0a,0xd2,0x73,0xb3,0x24,0x25,0xd5,0x8b,0xde,0x54, + 0x27,0xbc,0x6d,0xb3,0x0f,0xa8,0x4b,0x70,0x86,0x3f,0x1a,0xb0,0xe1,0xa5,0x75,0x06,0xe8,0xc3,0xd6,0x6c, + 0x2e,0xcf,0x5d,0x57,0xc1,0x32,0xd8,0x96,0xe5,0x75,0x69,0x7c,0x37,0x4b,0x7d,0xfd,0xc6,0x3b,0xa4,0x2f, + 0x15,0xda,0xd3,0xec,0x10,0x0f,0x89,0x89,0x81,0x52,0xab,0x6a,0xe6,0x4d,0xb6,0xca,0x6d,0xb4,0xf5,0xb8, + 0xbf,0xeb,0xe1,0xa0,0x3e,0xd1,0x95,0xba,0x98,0x5b,0xd5,0x2d,0xb2,0x83,0x5a,0x65,0x7b,0xf5,0x23,0x0c, + 0x9f,0xf6,0xdc,0x58,0x23,0x99,0x63,0x7d,0x29,0x11,0xe8,0xb2,0x07,0x87,0x27,0x81,0x5c,0x33,0x8f,0x21, + 0xf3,0x84,0x72,0xa3,0xdf,0xd2,0x27,0xd5,0xec,0x4e,0x4d,0xb6,0xd5,0x34,0x98,0x14,0x71,0x62,0xcd,0x85, + 0x37,0x01,0xaf,0xb7,0xcf,0x85,0x7c,0x6f,0x1f,0x55,0xd7,0x62,0x49,0xb8,0x86,0x07,0x0d,0x60,0xb8,0x76, + 0x08,0x97,0xad,0xbe,0x8c,0x9b,0x45,0xe8,0x20,0xc8,0x4e,0xcb,0x9b,0x89,0x3b,0x11,0x2a,0xb6,0xea,0x66, + 0x92,0x24,0x0b,0x51,0x2a,0xde,0x1d,0x9d,0x16,0x63,0xd6,0xb7,0xfa,0xbd,0x8a,0x34,0xd1,0x42,0xab,0xe8, + 0xd7,0xce,0x8e,0x53,0x9a,0xa0,0x23,0xf3,0x3a,0x1c,0x58,0x40,0xe6,0x00,0x43,0x10,0xdf,0x81,0x06,0xfb, + 0xeb,0xd8,0xa7,0xe3,0x2f,0x8c,0x4b,0xcc,0x57,0xf6,0xa3,0xdf,0xe8,0xbf,0xba,0x49,0xe7,0xc4,0xaa,0xa7, + 0x90,0xcd,0xcb,0x10,0x7e,0x44,0xc5,0xb4,0xde,0xdd,0x3e,0x37,0x26,0x01,0x99,0xcc,0xda,0xbc,0x25,0x6b, + 0xac,0x11,0x80,0xbe,0x6a,0x61,0xf8,0x92,0x3d,0x76,0xff,0xd8,0xdc,0x27,0x3e,0x5e,0xbe,0x7e,0x11,0x61, + 0xaa,0xa9,0x2d,0xfe,0x8f,0x57,0xe2,0x5e,0x4a,0x98,0x2a,0x04,0x2e,0x1f,0x19,0xab,0xb9,0xd9,0xab,0xf2, + 0x2f,0x93,0xb2,0x65,0xf5,0x61,0x36,0x18,0xde,0xfa,0xad,0x02,0x7b,0xc9,0x8d,0xd5,0x29,0xd2,0xc7,0x1a, + 0xad,0xe7,0x6e,0x29,0xff,0xa9,0x9d,0xa8,0x17,0x33,0x9d,0xd1,0xc4,0xf0,0x83,0xbd,0xd0,0x79,0xdc,0xec, + 0xed,0x8d,0xda,0x7d,0x99,0xbb,0x69,0x68,0xeb,0x07,0xeb,0xb6,0xb9,0xea,0x45,0xda,0xeb,0x77,0x58,0x03, + 0x64,0x6f,0x25,0xd8,0x1f,0x6c,0xad,0xb5,0xc4,0xed,0x55,0xb5,0xf7,0xe2,0x96,0x1b,0x86,0xfa,0x92,0x77, + 0xd1,0xfd,0x43,0xd3,0x6b,0x16,0xcf,0x6e,0xe9,0x06,0xb2,0x7f,0xa8,0x92,0xc6,0x42,0xda,0xad,0xab,0x86, + 0xf3,0x1f,0xaa,0xa9,0xb6,0x96,0x1a,0xf5,0x40,0x53,0x4c,0xfb,0x6a,0xaa,0xe9,0x6a,0x22,0xa4,0x95,0xad, + 0xa9,0x80,0xa8,0x42,0xb0,0x4e,0x63,0x83,0x16,0xfa,0x1b,0xcc,0x91,0xab,0x78,0x66,0xcb,0x86,0xac,0x85, + 0x3b,0x82,0xc9,0x45,0x98,0x35,0x1a,0x4b,0x97,0x4f,0x5c,0x4e,0xac,0xc5,0xd1,0x0d,0x0c,0x9d,0x0a,0xdf, + 0x21,0x99,0xba,0xa1,0x1a,0x0b,0xd7,0xac,0xb5,0x5d,0x0c,0x96,0x98,0xb3,0xa1,0x66,0xf9,0x77,0xa8,0x2f, + 0xf4,0x21,0x2a,0xa6,0xaa,0xce,0x03,0x25,0x3a,0x4c,0x6e,0x9d,0xed,0x5f,0xd9,0x43,0xc3,0x8a,0xcf,0x05, + 0x1c,0x43,0x97,0xb5,0x4e,0xfd,0xa4,0x7e,0x9e,0x70,0xd4,0x4c,0xcd,0x65,0x2a,0x8c,0x42,0xe8,0xc4,0x54, + 0xcb,0xb7,0x35,0x47,0xc0,0x1d,0x85,0xaf,0x55,0xad,0xba,0x71,0xb4,0xb2,0xc6,0x40,0x95,0x59,0xf3,0xbf, + 0x84,0x5e,0xc0,0x3e,0x47,0xa8,0x6a,0x2d,0x89,0x4f,0xb3,0x77,0x3c,0xf4,0xb1,0x1e,0x3a,0x2c,0x38,0x4d, + 0x38,0x15,0x0e,0x20,0x30,0xe6,0xe4,0x70,0xdc,0x80,0x21,0x0a,0x36,0xe7,0xdf,0x8d,0xfd,0x1c,0x65,0x0a, + 0x1a,0xcb,0xe2,0x7d,0xe0,0xc8,0xff,0x97,0x70,0x78,0x7a,0x75,0x7a,0x78,0xb6,0xe9,0x8d,0xba,0xc1,0xd1, + 0xb4,0xd2,0x14,0x1f,0x43,0x15,0x62,0x89,0x33,0xea,0xb2,0x71,0x35,0xcd,0x61,0x96,0xc5,0x42,0x6a,0x39, + 0x1c,0x23,0x36,0xcf,0x4a,0x9b,0x5d,0xfb,0x77,0xab,0xf0,0x5b,0xce,0x5c,0x72,0x2f,0x66,0xd4,0x0b,0xaf, + 0x88,0xaf,0xb4,0x00,0x4f,0x43,0x89,0x98,0xce,0x2a,0x51,0x38,0xf1,0x50,0xbc,0x2e,0xe8,0x5a,0x6a,0x78, + 0x06,0x6f,0x03,0xce,0xb6,0xcc,0x68,0xc5,0xce,0x8b,0x3a,0xdf,0x40,0x19,0x1d,0xe2,0x36,0x31,0xc1,0x4e, + 0x26,0x1d,0x56,0x4f,0xd7,0x5e,0x09,0x17,0x51,0x55,0xa0,0x7f,0x11,0x2d,0x74,0x88,0x13,0xee,0xdb,0xa2, + 0xb1,0xf5,0x21,0x7c,0xb8,0x88,0xe7,0x17,0xcd,0x2b,0xcc,0x99,0x06,0x24,0x1d,0xe6,0x7c,0x33,0x4c,0x67, + 0xd5,0xd1,0x30,0xe1,0x61,0xb6,0x40,0x1c,0x76,0x6b,0xab,0xbc,0x52,0x17,0x41,0x18,0x57,0xc7,0xbe,0xfa, + 0x64,0x19,0x0d,0xf3,0x76,0x4f,0x90,0x75,0xa2,0xda,0xab,0x43,0xd4,0x06,0x4d,0xa9,0xb4,0x7f,0xa2,0x64, + 0x50,0x68,0xbb,0x30,0x04,0x36,0x6f,0xb4,0x65,0x87,0xbc,0x43,0x1d,0xcc,0xe2,0x92,0xd3,0xec,0xee,0xf4, + 0x25,0x0a,0x96,0x9f,0x36,0x9f,0x95,0x3e,0x13,0x22,0x0c,0x0a,0xbf,0xad,0x04,0x9d,0x8c,0x86,0x59,0x55, + 0x42,0x47,0x86,0x1f,0xef,0x20,0xeb,0x0e,0xa5,0x72,0xe2,0x3e,0x69,0x6f,0x42,0x4d,0x15,0xc2,0xc3,0xcf, + 0xfb,0xf1,0xe1,0x61,0xe7,0xc1,0x71,0x3f,0x80,0x5a,0x9f,0xa3,0x5b,0x1a,0x77,0x3f,0xe7,0x33,0xf8,0x9e, + 0xd5,0xb5,0x11,0x69,0x35,0x44,0x4a,0xa9,0x26,0x6c,0xda,0x53,0x01,0xfc,0x58,0x44,0x63,0x7b,0x94,0x86, + 0x16,0x95,0x0c,0xa2,0xc2,0x8b,0x4c,0xad,0xe4,0x20,0xd0,0xbc,0xc7,0x06,0x1e,0x6b,0x90,0xc3,0x83,0x33, + 0x2b,0x80,0xde,0x8e,0xb1,0xb3,0xdf,0x8f,0xb1,0x5a,0xc1,0x65,0xe9,0x20,0x6d,0xa5,0x24,0xb5,0x24,0xb2, + 0x6c,0x95,0xa4,0xf2,0xca,0xf4,0x7d,0x17,0x1b,0xa9,0xfb,0xc0,0xd8,0x06,0xaf,0x5b,0xa7,0xd5,0x8d,0xeb, + 0x82,0x1d,0x58,0x9f,0x40,0x89,0x97,0x61,0x9d,0x34,0xf4,0x78,0x21,0x8e,0xd2,0x1d,0x2d,0x74,0xf4,0x94, + 0x33,0xd3,0xc7,0x02,0x5b,0x07,0x77,0x48,0xaf,0xa4,0x16,0x0e,0x93,0xed,0xa4,0xed,0x40,0x12,0x13,0x12, + 0xa2,0xb9,0x21,0xb4,0x50,0x32,0xa3,0x3f,0xba,0x3b,0x61,0xc9,0xed,0x13,0x06,0x1a,0xa3,0x37,0x82,0xd6, + 0x69,0xca,0xff,0xe8,0x34,0xb9,0x7c,0x7e,0xaa,0xed,0x56,0x6e,0x9f,0x13,0xf4,0x26,0xdf,0x99,0x93,0xe6, + 0x28,0xab,0x7d,0x7f,0xb0,0xbb,0x9d,0x70,0x6c,0x8b,0xc8,0x81,0xae,0xbd,0xa6,0xe5,0xc2,0xb7,0x81,0x1a, + 0x92,0x80,0xd0,0xf3,0x9a,0xeb,0x6f,0xdc,0x0a,0x60,0x6b,0x2d,0x24,0x06,0xb7,0x3b,0x68,0xf1,0x45,0x7f, + 0xa9,0xd1,0x22,0x1e,0x2e,0x5d,0xb4,0x58,0x76,0xbf,0xb0,0xb2,0x5e,0xea,0xbc,0x15,0xd0,0xa4,0xac,0x3d, + 0x0d,0xdb,0x15,0x5f,0xd3,0x0b,0x07,0x5d,0xc6,0xc2,0x69,0x50,0xdb,0x16,0x1f,0xe2,0x00,0xe1,0x71,0xd0, + 0x61,0xd9,0xdf,0x1b,0x38,0x5c,0xef,0xb5,0xab,0x8c,0x4c,0xfd,0x2d,0x76,0xfb,0x7b,0xb7,0x5f,0xe8,0xfe, + 0xb2,0xbb,0x82,0xaa,0xbf,0x45,0xf7,0xae,0x45,0xe3,0xd4,0xf6,0x6b,0xac,0x3b,0x96,0x7e,0x2a,0x1e,0xab, + 0xc4,0xf6,0xdc,0xc4,0x85,0x49,0x9b,0x90,0x6e,0x92,0x5d,0xc7,0xb8,0x59,0x2c,0xcb,0x76,0x7a,0x7d,0xaf, + 0x9f,0xeb,0x5e,0xb3,0xb5,0x50,0xd5,0xeb,0xbc,0x7b,0xcf,0x5c,0xad,0x35,0xe8,0x5a,0x11,0x54,0x34,0xad, + 0x8e,0xa0,0x2c,0x45,0xc2,0xd5,0xce,0x68,0xe7,0x70,0x5f,0x36,0xcd,0xb2,0x6b,0x05,0x79,0xb3,0xf9,0x18, + 0x10,0x92,0x46,0x95,0xf4,0xb5,0xa6,0x5f,0xd5,0xc2,0x20,0xda,0x33,0x9f,0xc3,0x65,0x13,0x69,0x83,0xdc, + 0xb1,0x51,0xd9,0xf2,0xf6,0xca,0xd8,0xdd,0x65,0x4b,0x2d,0x4d,0xc9,0xcc,0xae,0xc6,0xd7,0xa7,0x54,0x72, + 0xd9,0x5b,0x95,0xe9,0xac,0x27,0x1e,0x0e,0x6f,0xed,0x6d,0xdb,0xe0,0xeb,0x87,0x83,0x8f,0x8c,0xbe,0x71, + 0x3c,0xb8,0x15,0x08,0xb7,0x56,0x5a,0x1b,0xc0,0x6e,0x6d,0xad,0xc0,0xf8,0xc3,0x95,0xdd,0x02,0x94,0xf6, + 0x41,0xec,0xc0,0x46,0x34,0x4c,0xd2,0xdf,0x6c,0xfb,0x2d,0xcc,0x88,0x61,0x54,0xe1,0x2f,0x30,0x25,0x84, + 0x05,0xd1,0x26,0x0e,0x7d,0x19,0x40,0xce,0x09,0x03,0x51,0xbe,0x3c,0xe0,0x6f,0x51,0x36,0x82,0x6b,0x2f, + 0xf7,0xd3,0xce,0xd9,0x20,0x42,0x3a,0x6c,0x06,0xba,0xde,0xd9,0x19,0xc2,0x1a,0x98,0xbd,0x7e,0x57,0x6c, + 0x3b,0x5c,0x59,0xea,0x35,0xdb,0x6c,0xfc,0x0f,0x66,0x64,0xe1,0x60,0x8b,0xfe,0xa5,0x1f,0x2b,0xd8,0xf1, + 0xcf,0xf4,0x69,0x79,0x47,0xb2,0x77,0x36,0xd9,0x21,0x04,0x7c,0xee,0xb0,0x1d,0xbf,0xa5,0x5a,0x51,0x69, + 0x94,0x1a,0xfb,0x2e,0x83,0xd8,0x84,0x68,0xb5,0x0d,0x34,0x37,0xc2,0x5b,0xe5,0x34,0x2a,0xbb,0x7d,0x67, + 0x2c,0xfe,0x2b,0x76,0x46,0x71,0x35,0x98,0xd8,0x9d,0xb1,0x80,0x49,0x7e,0x1d,0x2e,0xed,0xbe,0x49,0x6e, + 0xa3,0xe8,0x27,0xb7,0x53,0xf4,0x93,0x91,0xb6,0xa0,0x70,0x89,0x56,0xbe,0x63,0x69,0x54,0x39,0xab,0x68, + 0x9a,0x05,0xc1,0xb4,0x7a,0x00,0xfb,0x94,0xe3,0x11,0xae,0xf6,0x61,0x1b,0xc4,0x21,0x46,0xe0,0xcd,0x41, + 0x1b,0x71,0xc0,0xde,0xa6,0x7a,0x47,0xf4,0x50,0x7a,0xe1,0xd8,0xa8,0xbe,0x14,0xe4,0xb0,0xa8,0x62,0x81, + 0x94,0x7d,0xc0,0x02,0x29,0x13,0x0b,0x24,0x29,0x13,0xa8,0x96,0xef,0x27,0x23,0xdd,0x1a,0x1b,0x1e,0x69, + 0x7c,0x44,0xfc,0x79,0x8e,0x2f,0xda,0x20,0x3b,0xae,0x1c,0xe1,0x23,0x44,0xa7,0x26,0x49,0xb8,0x95,0xe4, + 0xdc,0x52,0x61,0x8d,0x46,0x34,0x6b,0x6a,0x25,0x37,0x7f,0xa8,0xa2,0x5b,0x48,0x4d,0x5b,0xd7,0x6f,0x27, + 0x34,0xd2,0xf2,0xff,0x45,0x32,0xd3,0xbc,0x01,0xba,0x85,0xc8,0xb4,0x64,0xab,0x48,0x8c,0x0b,0xbe,0x8f, + 0x12,0x98,0xec,0x13,0x09,0x4c,0xad,0xd2,0x8f,0x92,0x17,0xc9,0xfd,0x71,0xe2,0xd2,0x90,0xdf,0xfe,0xb7, + 0x93,0x96,0xec,0xe3,0xa4,0x25,0xfb,0xff,0xa4,0xe5,0x53,0x49,0x4b,0x66,0x49,0x8b,0xd6,0xfe,0x10,0x43, + 0x02,0x2d,0xfa,0x49,0x89,0xd9,0x73,0x00,0xab,0x7e,0x0c,0x08,0xce,0xf1,0x3a,0x4e,0x67,0xf1,0x79,0x3a, + 0x4b,0xf1,0x3d,0xba,0xa9,0xef,0x96,0xe1,0x75,0xed,0xf6,0x2f,0x3c,0xc3,0xd4,0xb0,0x16,0xef,0x6c,0xe6, + 0xc6,0xd6,0x35,0x3a,0x78,0x7d,0xff,0x12,0x1e,0x57,0xd6,0xb4,0x02,0xe8,0xc3,0xc1,0x81,0x46,0xbb,0x4b, + 0x93,0x62,0x6c,0x24,0x7b,0x5e,0xc0,0xe3,0x2a,0x4d,0x65,0x12,0x43,0xa9,0xad,0xd7,0xd7,0x54,0xba,0xea, + 0xb3,0xb7,0x2f,0x9a,0xab,0x37,0x84,0xab,0xe1,0x6d,0xa2,0x56,0x64,0x81,0xe3,0x99,0x2c,0xba,0xbc,0xa5, + 0xca,0xac,0x56,0x65,0xb9,0x5b,0xdf,0xee,0xcd,0x98,0x7b,0xe7,0xf3,0x5f,0x82,0x84,0x5a,0x63,0x55,0x57, + 0x9f,0x56,0x27,0x2a,0x3a,0xb8,0xd0,0x39,0xd4,0x20,0x68,0xda,0xe4,0xd6,0x4b,0xf7,0xb4,0xb2,0xdd,0x56, + 0xb6,0x13,0x1f,0x1e,0xe3,0xf8,0xf7,0x0d,0x72,0xe7,0x88,0x93,0xb6,0x1d,0xcc,0x52,0x7b,0xc4,0x49,0xdd, + 0x61,0xa6,0x38,0x98,0xe9,0x73,0x7e,0x7d,0x98,0xb9,0x73,0x40,0xcb,0x31,0x4e,0x6b,0xd1,0x96,0xef,0x8c, + 0x53,0x65,0x76,0xa4,0xc5,0xef,0x19,0x69,0xf2,0xfb,0x47,0xaa,0x49,0x66,0xbd,0xaf,0x05,0x1f,0x9f,0x12, + 0x65,0x35,0x7e,0x8b,0x9d,0xd3,0xe3,0xa7,0xf7,0x6a,0xf2,0x3f,0x8b,0x63,0xd5,0xa9,0xd8,0xd8,0xe9,0x4d, + 0x1c,0xec,0x6a,0x39,0xef,0x7e,0xea,0x38,0x5a,0xd6,0xde,0xff,0xec,0x38,0xb2,0x8f,0x8f,0x03,0xa6,0xd3, + 0xef,0xd3,0xcc,0x3f,0xc7,0xa3,0xb5,0x05,0xf4,0x3d,0xac,0x73,0x8e,0xb8,0x30,0xd6,0xf1,0xd7,0xd9,0xd9, + 0xd7,0x65,0x15,0x16,0xcc,0xbf,0x12,0xbf,0x87,0x57,0x66,0x13,0xb5,0x2a,0x03,0x62,0x38,0xf5,0x1c,0xcc, + 0xd0,0xeb,0xb2,0xa0,0xa2,0x53,0xa2,0x96,0xfd,0x42,0x6c,0xa8,0x8a,0x9e,0x8e,0xfa,0x0d,0xea,0xa8,0x29, + 0x5d,0xe4,0xfd,0xb9,0x77,0xaf,0xf7,0xb9,0xa7,0xda,0xcc,0xb9,0x24,0x22,0xf3,0xc1,0x81,0x8e,0xcc,0xfc, + 0x13,0x22,0xca,0x54,0xcf,0xbd,0xd5,0x32,0xf1,0x9f,0x13,0x71,0xd6,0x6a,0x43,0xd6,0xca,0xe5,0x26,0xc9, + 0xc2,0x1b,0x0e,0x82,0x19,0x7a,0xaf,0xcb,0x38,0x2d,0x96,0x9e,0x5a,0x5e,0x2f,0xcb,0x64,0xfe,0xf4,0x31, + 0xa5,0xf0,0x53,0xe7,0xe9,0x63,0x4f,0x5d,0xa4,0xc5,0xfc,0x2a,0x2e,0x92,0x9f,0xa4,0x2f,0xa1,0xf7,0x44, + 0x27,0x74,0x74,0xef,0xc2,0x0e,0x42,0x5a,0x2e,0xae,0x25,0x0e,0x86,0xf7,0xc8,0x3c,0x76,0xfe,0xe3,0xdf, + 0x3b,0x77,0x8f,0x4f,0xfe,0xdc,0x79,0x1e,0x17,0xef,0x3a,0xeb,0x38,0xeb,0xfc,0x98,0x64,0xcb,0xab,0x7c, + 0x35,0xa1,0x45,0x35,0xcb,0x63,0x38,0xc9,0x0a,0xbd,0x57,0xb3,0x04,0x56,0x84,0x1c,0x9b,0xa0,0xa3,0x53, + 0x3b,0x02,0x28,0x1d,0x9a,0xbd,0xd7,0xeb,0x79,0x8a,0xe7,0xe9,0x6b,0x0e,0xa1,0x11,0x7a,0x0f,0xf1,0x52, + 0x4b,0x7b,0x1d,0xaf,0xb9,0x36,0xf9,0xe5,0x12,0x57,0xe9,0x45,0x4a,0x03,0x2b,0x57,0xcb,0xf0,0x26,0x1e, + 0xc3,0x5f,0xe4,0x22,0x4f,0xb3,0xd2,0x0e,0xfa,0xe1,0x2b,0x74,0x7c,0x92,0x2e,0xe3,0x73,0xda,0x31,0x42, + 0xef,0xb1,0x7e,0x22,0x8e,0x81,0x5d,0x56,0xe4,0x19,0x82,0xc9,0xd9,0xec,0x3f,0xa7,0x4f,0xd2,0x5b,0x0a, + 0xa8,0x14,0x61,0x43,0xbc,0xa7,0x13,0x5c,0xd6,0x66,0xf9,0xeb,0xd7,0x0c,0x41,0xfa,0xdb,0x81,0x9d,0xe8, + 0x45,0x4e,0x93,0x46,0xb0,0x1d,0xc7,0x19,0xc2,0x41,0xc0,0xc4,0x82,0x0a,0xbf,0xa6,0xd7,0xce,0xd8,0xbc, + 0x03,0x80,0x59,0x46,0xa8,0xf5,0x84,0x36,0x50,0x7c,0x96,0xdf,0x4e,0x99,0x77,0xf4,0x07,0x9b,0x83,0xfa, + 0xf5,0x2c,0x5f,0x32,0x9c,0xcd,0x3b,0x81,0x6d,0x59,0x72,0xcf,0x74,0x1e,0xdd,0x3b,0xfb,0x86,0x48,0x1b, + 0x4b,0x0d,0x8a,0x32,0x3e,0x7f,0x63,0x67,0x9d,0x52,0x3c,0xa5,0x07,0xf8,0x48,0xc2,0xb5,0x74,0x96,0x3a, + 0x99,0x36,0xd2,0xd7,0x65,0xb2,0x58,0xbe,0x29,0x56,0xc8,0x9c,0x94,0x1d,0x88,0xf5,0x11,0x0d,0xfe,0x9a, + 0xc6,0x54,0xb0,0x3e,0xff,0x12,0x19,0xaa,0xac,0x4f,0xa0,0x64,0xda,0xcc,0x0b,0x6f,0x68,0xeb,0x74,0xb2, + 0x42,0x48,0x08,0xc4,0x9f,0x21,0xdc,0x98,0xc2,0xd7,0x88,0xd3,0x93,0x37,0x3a,0x0d,0x7d,0x99,0x27,0x26, + 0x91,0x1e,0x25,0xe1,0x29,0xae,0x13,0x32,0xa2,0x13,0x06,0x59,0x08,0xac,0x30,0x53,0x89,0xcb,0x0e,0x3e, + 0x77,0x4c,0x95,0x1d,0x6d,0x3a,0xd2,0x89,0x33,0x6e,0x1f,0x65,0x3a,0x15,0xd8,0x7a,0x52,0xdb,0x8b,0x9c, + 0x03,0x08,0x7b,0x2f,0xf2,0x46,0x69,0xbd,0xb2,0x3a,0xd7,0x49,0x29,0x39,0x9f,0xa4,0xef,0x93,0x09,0xba, + 0x01,0x9c,0x7f,0x8f,0xe9,0xb0,0x5d,0x7a,0xbd,0xca,0x8a,0x94,0xc7,0x2a,0x0f,0x36,0x75,0x89,0x6e,0xca, + 0xaf,0x19,0xcd,0x5c,0x0f,0x06,0xb7,0x68,0xf3,0x34,0x5b,0x95,0x09,0x0d,0x74,0x9e,0xa3,0x4b,0x7a,0xa8, + 0xcf,0xf9,0xc5,0xdb,0x3a,0x73,0xec,0x82,0xa7,0x9a,0xe9,0x6a,0xb2,0xaa,0xc9,0xe7,0x6b,0x87,0xa4,0x64, + 0xf0,0xb9,0x78,0xee,0x7d,0x93,0x01,0x3d,0x3b,0x92,0xd6,0xe1,0xc4,0x5a,0x8e,0xef,0x38,0xd7,0xc3,0xd9, + 0x2c,0xbf,0x5a,0xca,0x8c,0x6a,0x5b,0x67,0x07,0x66,0x9d,0x8b,0x22,0x9f,0x77,0xae,0xf3,0x55,0x41,0xe0, + 0x59,0xa7,0xe3,0x04,0x28,0x09,0xea,0xdc,0x11,0x9a,0xa1,0x3d,0xac,0x70,0xf1,0xda,0xa2,0xed,0x2c,0x56, + 0xc5,0x22,0x5f,0x26,0xcb,0x5e,0xe7,0xcd,0x65,0x62,0x72,0xd7,0xb3,0x50,0x2d,0x9a,0x63,0xa4,0x1a,0xe8, + 0xfd,0xb2,0x2c,0x17,0xe1,0xd1,0xd1,0xc9,0x57,0x77,0x7b,0x27,0x5f,0xfe,0xa5,0x77,0xd2,0xfb,0xfc,0xa8, + 0x73,0x75,0x99,0x64,0x68,0xbf,0x03,0x82,0x63,0x11,0x1a,0xbd,0x48,0x4b,0xaa,0x9a,0xb9,0x9d,0xb2,0x93, + 0x5f,0x5c,0x74,0xe2,0x65,0x67,0x99,0xc3,0x8d,0xc5,0xb2,0xa3,0xd7,0x2f,0x3a,0x97,0xa0,0x15,0xd3,0x6c, + 0x32,0x51,0xf8,0x4c,0x05,0x28,0x91,0x6d,0xb8,0x93,0x31,0x52,0x31,0x33,0x71,0x76,0x4d,0x44,0xe8,0xba, + 0xd7,0xf9,0x3b,0x35,0x86,0xc5,0x19,0xcf,0xe8,0x75,0xd9,0xb1,0xac,0x60,0x47,0xc8,0x76,0x07,0x67,0x16, + 0xf4,0xf6,0xfc,0xba,0x03,0x7d,0x2d,0x90,0xab,0xf2,0xb2,0x0e,0xe6,0x8e,0x8e,0xf5,0xb3,0xca,0xe8,0xd0, + 0xca,0x5f,0x9f,0x7d,0xf3,0xb8,0x33,0x03,0x51,0x5c,0x76,0x56,0x0b,0x42,0x44,0x97,0xc2,0x98,0x89,0x72, + 0x7b,0x5d,0xcb,0x21,0x13,0xa5,0xa7,0xbc,0x0d,0xfa,0x04,0x0d,0x9e,0xa2,0xfc,0x2a,0xeb,0x80,0x4e,0x75, + 0x0a,0xf6,0x40,0xd4,0xeb,0xe8,0xf5,0xc2,0x11,0xa6,0xb8,0x1f,0xa0,0x4a,0x8a,0x50,0x66,0x49,0x74,0xb8, + 0x98,0xd0,0xa0,0x27,0xb4,0xbf,0x16,0xf4,0xa5,0x39,0x7d,0xe7,0x09,0xa1,0x05,0x3a,0xba,0x4c,0x27,0x42, + 0xcc,0x3c,0x65,0x8a,0xd1,0x3a,0xd4,0x4f,0x44,0x74,0x2e,0xc7,0x8b,0xd0,0xfb,0x2b,0x35,0xf2,0xf8,0xbb, + 0x47,0xaf,0xe4,0x5d,0x23,0xd6,0xaa,0xcc,0xe7,0x70,0xfd,0x83,0x85,0x4f,0x60,0x5f,0xa6,0xd3,0x6c,0x89, + 0xa5,0xf9,0xf4,0x55,0x47,0x47,0xa3,0x6e,0x47,0x26,0x99,0x02,0xe2,0x13,0xce,0x09,0x2c,0x98,0x14,0x02, + 0x28,0x65,0x7c,0x97,0x24,0x0b,0x3d,0x11,0x80,0xec,0x0c,0xe5,0x81,0x18,0xb0,0xaa,0x20,0x34,0x21,0x62, + 0x40,0x6f,0x77,0x08,0x4b,0x26,0x39,0xb6,0x00,0xa2,0xca,0x0b,0xdd,0x0c,0x91,0x66,0xdb,0x24,0x8d,0x68, + 0x75,0x4e,0x74,0x61,0x1e,0x2f,0xdf,0x61,0xa1,0xe2,0xb9,0x83,0x17,0x4f,0x4d,0x69,0x27,0xa6,0x29,0x0f, + 0xbd,0x6f,0xe5,0xc1,0x53,0x97,0x44,0x57,0xc5,0xc4,0xed,0x3b,0xfd,0x54,0xa5,0xbd,0xaa,0xdc,0xa8,0x12, + 0xb1,0xd5,0x56,0x6d,0x54,0xd3,0xd8,0xb6,0xb4,0xd5,0xfb,0x69,0x8d,0xe6,0x72,0x0a,0xed,0x12,0xe5,0xc2, + 0x21,0x73,0x1d,0x68,0x95,0xd1,0x71,0x37,0xa3,0x1d,0x85,0xa1,0xef,0xbf,0x78,0xf3,0x2a,0x20,0x80,0xd3, + 0x81,0x46,0x67,0xfb,0x2e,0x2e,0x26,0xbc,0xe9,0x52,0x5a,0x8e,0x88,0x7d,0xf3,0x78,0x61,0xbe,0x7d,0x9b, + 0xe7,0x53,0xc2,0x82,0xe7,0x94,0xd2,0x79,0xf8,0xea,0x69,0xb5,0x65,0xeb,0xef,0x76,0xc3,0x16,0x46,0x85, + 0x5b,0x7f,0x46,0x07,0x30,0x8f,0xfe,0xa4,0x25,0x6f,0xc7,0x48,0xc1,0xfe,0xf9,0x2c,0xcf,0xa6,0x4e,0x12, + 0xb1,0xaa,0x4c,0x8c,0xbc,0x6f,0x09,0x4a,0x33,0x9d,0xbb,0x73,0x44,0x1b,0x8e,0xce,0x26,0xf4,0x61,0xa6, + 0xf3,0xd5,0x0a,0xbd,0x4e,0xe2,0x62,0x7c,0x89,0xdd,0x00,0xbf,0x3c,0x18,0x5a,0x05,0xb4,0xeb,0x7a,0x0f, + 0x65,0xa9,0xbc,0xe2,0xa5,0x22,0xdb,0x0d,0x2f,0x10,0xca,0xd1,0xf1,0xbb,0xf7,0x7a,0xf7,0xd6,0x81,0xc9, + 0xfe,0xfa,0xcd,0x43,0xd9,0xa8,0x00,0x95,0xe7,0x58,0xce,0x1f,0xc8,0xff,0xf0,0x95,0x61,0x10,0xf4,0x8a, + 0xaa,0x35,0xa4,0xd7,0x24,0x17,0x5a,0xd0,0x31,0x9d,0x7a,0x7d,0x25,0xe5,0x5e,0xfd,0xfc,0xfc,0x71,0x41, + 0x4c,0x5d,0xf1,0xfa,0x31,0xb5,0xf6,0xea,0xd1,0xc3,0xaf,0xbe,0xfc,0xcb,0x17,0x1d,0x4a,0xed,0x4c,0x38, + 0xb9,0x43,0xe9,0x52,0x0e,0x9a,0x85,0xcd,0x32,0x8f,0x9e,0xb5,0x97,0x79,0xf4,0x4c,0xca,0x8c,0xe1,0xc2, + 0x10,0x85,0xae,0xe6,0x0f,0x0d,0x3e,0xb6,0xe4,0x7f,0xfa,0x1f,0xff,0xfb,0x51,0x85,0xa4,0x94,0xf9,0x09, + 0x76,0xb3,0x24,0x1b,0x5f,0xb7,0x66,0xbf,0x30,0x5f,0x05,0x13,0x68,0xda,0x7f,0x48,0xae,0x77,0x50,0x81, + 0x16,0x4d,0x2d,0xc3,0x25,0xaf,0xcc,0x97,0x0b,0xb1,0xd3,0xec,0x75,0xf4,0x9e,0x4f,0xab,0x2c,0xcf,0xe8, + 0x0f,0xf1,0x8a,0x13,0x26,0xe5,0xe6,0x2a,0x15,0xc4,0x2d,0xb6,0xd3,0xdb,0x01,0xde,0x0b,0xe9,0xbd,0xb3, + 0x6c,0x45,0x07,0x45,0x0b,0x31,0x1d,0x5f,0xf2,0xba,0xbc,0x4a,0x09,0xc6,0x73,0x5a,0x2d,0x44,0xf8,0xde, + 0x25,0xa6,0x89,0x49,0xde,0x81,0x2b,0xcc,0x1e,0xd1,0x29,0xfa,0x4c,0x34,0xe4,0x5d,0x07,0xc1,0xa9,0x08, + 0xa5,0x41,0x1a,0x74,0x97,0x15,0x26,0xab,0xa3,0xc7,0x32,0x67,0x5e,0x12,0xd2,0xa0,0x92,0xb0,0x59,0x08, + 0x1d,0x0f,0x7e,0x59,0xf6,0xc0,0xd8,0x64,0x33,0xcb,0xa3,0xbd,0x29,0xe2,0xc5,0x0e,0x17,0xfb,0x69,0x6c, + 0x6c,0xf2,0xcf,0x71,0xb1,0xdf,0xd0,0x2e,0x95,0x4f,0x93,0xec,0x9c,0xc6,0xda,0x99,0x26,0x44,0xc6,0x68, + 0xab,0x39,0x4f,0x7e,0x4b,0xa7,0xc4,0x71,0x63,0xe9,0x4c,0x28,0xc3,0x9a,0x59,0x3e,0x4b,0x65,0x93,0x5d, + 0xc6,0xf6,0x4d,0x9e,0x80,0xc8,0x26,0x59,0x2b,0x73,0xfb,0xb5,0xad,0x2f,0x5f,0xd0,0xec,0xc4,0xd9,0x1f, + 0xe2,0x73,0xff,0x9a,0x96,0xc4,0xff,0x8f,0x2f,0x63,0x9a,0x94,0x4f,0x67,0x76,0xeb,0xa5,0x34,0xc7,0xfb, + 0x9a,0x3a,0xb1,0x80,0x15,0xf6,0xa4,0xc9,0xf7,0xa6,0xd4,0xc9,0x69,0xb2,0xce,0xe9,0xb8,0x92,0xb5,0xf3, + 0xbe,0xf1,0x05,0x31,0x5d,0x79,0xb6,0xcb,0xfa,0xfe,0x40,0x1f,0xa7,0x09,0xc0,0x95,0x14,0xda,0x91,0x32, + 0x91,0xd5,0x77,0xa8,0xa7,0xc9,0x02,0xff,0x54,0xe5,0xa0,0xcc,0xb3,0xbc,0x40,0xa6,0x3a,0x1b,0xfc,0x02, + 0x3d,0x41,0x4d,0xd2,0x95,0x4f,0x61,0x84,0xbf,0x5b,0xa5,0x93,0x74,0x9a,0xdc,0xc2,0x08,0x13,0xbf,0x04, + 0x9e,0x31,0xc1,0x84,0x4e,0x92,0xdf,0x92,0xd9,0x05,0x78,0x0c,0xcd,0xed,0x26,0x69,0xb9,0xc3,0x0d,0xbf, + 0x91,0xbc,0x86,0x0d,0x4e,0x92,0x19,0x9b,0xae,0x27,0x54,0x4f,0xf6,0xfb,0xf8,0xe1,0xb7,0x93,0x26,0x3f, + 0xfc,0x8c,0x71,0xa1,0x43,0x64,0xa9,0xb3,0xce,0xb1,0x6e,0x29,0x4f,0xc5,0xd0,0x26,0x49,0xc5,0x07,0xaf, + 0x6b,0xa0,0x4a,0xe0,0x7a,0x28,0x5d,0xee,0x70,0xc4,0x53,0x81,0x7c,0xbd,0x9a,0x69,0x62,0xf9,0xa7,0xa4, + 0x98,0xec,0xb0,0xc6,0x3f,0xc5,0x4b,0x70,0xe3,0xb6,0x77,0x96,0x35,0xfe,0x05,0x7e,0xeb,0x16,0xef,0xf2, + 0xf9,0xb2,0xac,0xb3,0xc7,0xfc,0x01,0xda,0x4e,0xd3,0x18,0x9a,0x33,0x35,0x56,0xf8,0xeb,0xe4,0x2a,0x81, + 0x7a,0xfb,0xad,0xcc,0x70,0x35,0xe7,0x76,0xc2,0x1c,0x34,0x70,0x97,0x57,0x83,0x1d,0x7e,0xe8,0x32,0x68, + 0x34,0x03,0x82,0xcb,0xbc,0xd4,0xaa,0x6c,0x42,0x20,0x9f,0xc7,0xf1,0xbb,0xb2,0x73,0x09,0xce,0x80,0x16, + 0xf5,0x2c,0x7d,0x4b,0x0c,0xdf,0x9c,0xc1,0x29,0x0c,0xb2,0xe5,0x44,0xd3,0x04,0x8b,0x3a,0xbe,0xe0,0x6f, + 0xb4,0x62,0x89,0x15,0xa7,0xa9,0xc8,0xe2,0xb8,0x60,0xdc,0xe8,0x80,0x20,0x59,0x26,0x2d,0x11,0x34,0x46, + 0x55,0x84,0x32,0x55,0xaa,0x85,0x2e,0xbc,0xed,0x76,0x1e,0xd7,0x4b,0x11,0xbb,0x43,0x59,0xce,0x93,0x8c, + 0x28,0x48,0x81,0x45,0x91,0xc6,0xad,0x7c,0x32,0x7d,0xa7,0x96,0xdf,0xba,0x3d,0xbb,0x4c,0xce,0xb1,0x08, + 0xe7,0x18,0x4c,0xaf,0xf3,0x5a,0xc6,0x2b,0xfd,0x02,0x2b,0x4b,0xec,0x40,0x8a,0xbe,0xf2,0x38,0xdd,0x3e, + 0x10,0x8f,0x8c,0x18,0xc1,0xbf,0xa5,0x1a,0xc3,0x65,0x35,0x9f,0x27,0xeb,0x24,0x25,0x16,0x76,0x02,0xbc, + 0xe9,0x7c,0x9f,0x74,0xde,0x11,0x77,0xeb,0xd6,0x96,0xe7,0xef,0x5c,0xb0,0x12,0xa5,0x27,0x84,0x04,0x72, + 0xda,0x7d,0x58,0x40,0x4f,0xfc,0xda,0x02,0x63,0x9a,0x14,0xab,0x77,0x00,0x47,0x99,0x97,0xe8,0xfa,0x44, + 0x98,0xe4,0x18,0xab,0x9f,0x80,0xd8,0xe4,0x91,0x9d,0x39,0x06,0x01,0x64,0x2e,0x57,0x53,0x05,0x27,0x9f, + 0x4c,0x9f,0xce,0xbb,0x3b,0x05,0xa8,0x9c,0x40,0x94,0xd0,0xea,0x6e,0x30,0xca,0x3f,0xad,0x66,0x9d,0xcb, + 0x94,0x09,0x12,0x6d,0xae,0x80,0x08,0xd3,0x31,0xca,0x76,0x15,0x8f,0x2f,0xcb,0xab,0x1c,0xdc,0x72,0x4a, + 0xa0,0x49,0x2a,0x12,0x4e,0xab,0xa1,0xc3,0xa1,0x3d,0x57,0x0c,0xd6,0x4e,0x4e,0x0b,0x0b,0x74,0x83,0xc1, + 0xb1,0xbc,0x95,0x77,0xfe,0xd9,0x56,0x68,0xb8,0xe7,0x6f,0x93,0xf3,0x62,0x45,0xfb,0x46,0xc5,0x41,0x5f, + 0xd6,0x38,0x68,0x82,0x29,0x23,0x18,0x73,0xb1,0xc4,0x1f,0x10,0xc8,0x92,0xab,0xf4,0xed,0x6f,0xc0,0xb9, + 0x38,0xdb,0x19,0x26,0xed,0xad,0x84,0x80,0x54,0x28,0x7d,0x9b,0x31,0xee,0xd2,0x4e,0x8c,0x61,0x3b,0x73, + 0x85,0x62,0xd0,0x94,0xa2,0x01,0xd1,0x9f,0xdf,0xd2,0xb7,0xf8,0x7e,0x95,0xd0,0xb0,0xaf,0x80,0xbb,0xf4, + 0x32,0x4f,0x12,0xbd,0x7f,0x9d,0xc3,0x21,0xc2,0x2e,0x37,0x5d,0x24,0xb7,0xf3,0xd2,0x49,0xf1,0x29,0xdc, + 0x74,0x3c,0xbf,0x85,0x9b,0x7e,0x8d,0x1d,0x85,0xfa,0x31,0x31,0xfc,0x34,0xda,0xba,0x95,0x9b,0x6e,0xb2, + 0xd3,0x44,0xba,0x6a,0xec,0x74,0xf2,0x21,0x6e,0x3a,0x06,0x9f,0x43,0xeb,0x80,0xf0,0x0a,0xa8,0xf4,0x47, + 0x98,0xea,0xf3,0xf4,0xed,0x55,0x52,0x30,0x26,0x1a,0xbe,0xfa,0x6b,0xc2,0x8d,0x49,0x99,0x4c,0x89,0x1a, + 0x4c,0x1c,0xde,0x1a,0x32,0x4a,0x37,0xd1,0x72,0xd7,0x6e,0x7e,0xb0,0x53,0x55,0x46,0x9a,0xaf,0xcb,0x18, + 0xab,0x89,0xd6,0xcc,0x79,0xbc,0x24,0x6a,0x00,0x26,0x42,0x18,0xb2,0xa4,0x95,0xdd,0xfe,0x25,0x4f,0xb8, + 0x2f,0x7f,0x9c,0xdd,0xe6,0x85,0xf1,0x49,0x6c,0x76,0xad,0x66,0x77,0xed,0xf3,0x1a,0xe7,0x72,0x31,0x48, + 0xd1,0x05,0x21,0x5b,0x3c,0xfd,0x9f,0x60,0xb6,0xdf,0xcd,0xf2,0xff,0x17,0x79,0x6d,0xda,0xf4,0x69,0x55, + 0xd2,0x92,0x97,0xed,0x3a,0xc5,0xc6,0x02,0xc1,0x34,0x91,0x13,0xd0,0xe4,0xa9,0x10,0x80,0xd2,0xec,0x32, + 0x7a,0x7e,0x41,0x25,0xa9,0xfd,0x92,0x11,0x80,0x37,0x15,0x7c,0x3c,0x17,0x64,0x39,0xac,0x23,0x0a,0x71, + 0xde,0x42,0xff,0xaf,0xea,0x6b,0x7f,0x8e,0x62,0xff,0xf9,0xef,0xff,0xf9,0xef,0x19,0x0e,0xd0,0x45,0x27, + 0xcb,0x89,0xb7,0xe1,0xad,0x81,0x3a,0x44,0x68,0x5b,0x32,0xdd,0xfe,0x4d,0xe8,0x9e,0x65,0xbf,0x41,0x62, + 0x89,0xa2,0xbd,0xa3,0xd5,0xc1,0xcc,0x85,0x1e,0xea,0x5b,0xee,0xcf,0x6f,0x84,0x61,0xbc,0xdf,0xcb,0xce, + 0xc8,0xbb,0x03,0x51,0x24,0xc2,0x98,0x98,0x39,0xf2,0x6d,0xe5,0x00,0x97,0x63,0x47,0x3d,0x5c,0x2c,0xac, + 0x60,0x1f,0x37,0xce,0xda,0x4f,0x62,0x65,0x7d,0x48,0xec,0x2d,0x51,0x8b,0xbc,0xe8,0xcd,0x68,0xdf,0x59, + 0xc5,0xd3,0xa4,0x69,0x0a,0xe8,0xf1,0xda,0x34,0x86,0x85,0xd6,0x10,0x23,0xe8,0xeb,0xea,0xfc,0x9b,0x64, + 0x16,0x7a,0x7f,0xa2,0x0d,0x98,0xe8,0x14,0x55,0x1d,0x96,0x8a,0x0d,0xf5,0x6e,0x0c,0x7f,0xbe,0x77,0xac, + 0x96,0xc2,0x44,0xef,0x9d,0xe8,0x27,0x66,0xd1,0xf0,0xaa,0xf3,0x3c,0xa5,0xcd,0x65,0x8c,0x5e,0x84,0xde, + 0xc6,0x53,0xab,0x05,0x92,0x5f,0x15,0xf9,0x94,0x91,0x88,0xb2,0xc5,0x2c,0xf7,0x7f,0x13,0x9f,0xc3,0xd7, + 0xac,0x30,0x86,0x46,0xfe,0x7d,0x53,0x9d,0x38,0x74,0x65,0xcc,0x98,0x9b,0xcf,0x6e,0xe2,0xb6,0xce,0xae, + 0x2f,0xc2,0x9b,0x24,0x13,0x0e,0x9b,0x9a,0x48,0x69,0x2f,0x38,0xee,0xf1,0xbf,0x8a,0x2f,0xaf,0xe5,0xd0, + 0xbc,0xeb,0x71,0x3d,0x2b,0xe5,0xe5,0xc5,0x4f,0x6d,0x58,0x9a,0x42,0x99,0x1d,0xce,0x12,0x8c,0x9a,0x5b, + 0x0f,0x9f,0xef,0x52,0x61,0xbb,0xe8,0xd3,0x71,0x95,0x77,0x08,0x17,0x3a,0x2e,0xe7,0x65,0xa9,0x36,0x6b, + 0x37,0xba,0x1c,0x15,0x80,0x5a,0xda,0xd6,0x78,0xb3,0xe3,0x3c,0x76,0xab,0xe3,0x37,0xde,0xe2,0xf6,0xb8, + 0xc7,0xfc,0xee,0x6c,0x19,0xfc,0x6e,0xf6,0x09,0xb6,0x9c,0xb0,0x34,0x9e,0x36,0x27,0xf9,0x3c,0xa3,0x39, + 0x93,0x5a,0x89,0xbe,0x50,0x7a,0x32,0x21,0x92,0x26,0x5f,0x92,0x09,0xc8,0x95,0x74,0x6b,0xa1,0x49,0x92, + 0x64,0xbd,0x9a,0x83,0xb8,0xd8,0x67,0x22,0x1a,0x52,0xbb,0x43,0x16,0xcc,0xc7,0x6a,0xe5,0x73,0x8a,0xbb, + 0xbe,0x69,0x0e,0x0c,0x2b,0x8f,0x01,0x98,0x67,0xb6,0x25,0x09,0x31,0x76,0x7c,0x18,0x8e,0xd4,0xcc,0xd2, + 0x71,0x30,0xad,0xec,0x22,0x61,0x27,0x6e,0x90,0xb6,0xe5,0xb6,0x8e,0xc0,0x99,0x73,0x85,0xab,0x20,0xdf, + 0xe3,0x47,0xcf,0x18,0x75,0xeb,0x9b,0x1b,0x53,0x27,0xec,0x2d,0x2e,0x8d,0x49,0xc5,0x89,0xc4,0x99,0x4a, + 0x7a,0x16,0x17,0x6d,0x00,0x89,0xa2,0x7c,0xd6,0x40,0x63,0xa8,0x62,0xf6,0x44,0xe0,0x03,0x82,0x2e,0x28, + 0xc7,0x89,0xfa,0x50,0xc7,0x83,0x61,0x6b,0x52,0xdc,0x97,0x23,0x16,0x84,0xb3,0x30,0x80,0x16,0x05,0x52, + 0xe3,0xf7,0x69,0xce,0xa6,0x7a,0xbe,0x77,0x14,0x2f,0xd2,0x23,0x8d,0xd4,0x5e,0xd0,0x2b,0x2f,0x93,0xac, + 0xe6,0x5c,0x67,0xd7,0xe3,0xb4,0xf6,0x38,0x44,0x3d,0x36,0x17,0x59,0x92,0x14,0x6c,0x83,0x9e,0xf8,0x58, + 0x73,0xcb,0x1b,0x3f,0xd7,0xb3,0x7c,0x0a,0x4d,0x96,0x40,0xb7,0x0d,0xdf,0xbe,0xc3,0x66,0x37,0x2a,0x0c, + 0xfd,0xbd,0x3d,0xa9,0x4a,0xfe,0x91,0xce,0x54,0x3d,0x10,0x4c,0xfd,0xbd,0xad,0x4b,0xa9,0x7f,0xae,0x65, + 0xb3,0x56,0x8f,0xf8,0x3a,0xe2,0x77,0x76,0xc0,0x14,0xee,0xa1,0xf0,0x3f,0x09,0x01,0xbe,0xfc,0x69,0x69, + 0x7f,0xc7,0xc4,0x4a,0x37,0xe3,0xde,0xdf,0xee,0xc1,0x1f,0x11,0x68,0x1e,0xbb,0xd3,0x61,0xf3,0x8e,0xe3, + 0x7e,0x7c,0x5f,0x7b,0x5c,0xd2,0xb6,0xbf,0x71,0x15,0xae,0x45,0x3e,0x40,0x37,0x8b,0xbd,0x4a,0x14,0x83, + 0x22,0x5a,0x86,0xcb,0x3d,0x89,0xe9,0x9c,0x71,0xf0,0xed,0xbc,0xe6,0x2e,0x88,0xb6,0x07,0x95,0x76,0xa3, + 0xe5,0x16,0xeb,0x23,0xe1,0xa0,0x14,0x49,0xaf,0xb6,0x86,0xc5,0x81,0xf6,0xc5,0x2c,0x87,0xf7,0xa2,0x23, + 0xe3,0xc8,0x2a,0x70,0xb2,0x45,0xd0,0xfc,0x18,0xe9,0x11,0xca,0xf0,0x97,0x0b,0x5a,0xe0,0x13,0xd7,0x65, + 0x54,0xc6,0x11,0x73,0xcb,0x7c,0xd1,0xba,0x02,0x35,0xed,0xa7,0x0e,0x22,0x12,0x92,0xd2,0x77,0xbb,0x20, + 0xfd,0x8b,0xd9,0x75,0x75,0x8b,0x73,0xcb,0x15,0x78,0xa9,0xd7,0x24,0x7b,0x17,0x93,0x47,0x40,0x4e,0xba, + 0x82,0x78,0xdc,0xbb,0xcb,0x41,0x55,0x14,0xbb,0x74,0x90,0xbd,0x67,0x52,0x6b,0x24,0xbc,0x96,0xc3,0xf9, + 0x60,0x09,0x7b,0x2d,0x83,0x4e,0x14,0x52,0x5f,0xff,0x42,0x29,0x15,0xdd,0xaf,0x7d,0x32,0xa9,0xb2,0x11, + 0xd4,0x3e,0x21,0x05,0xfb,0x42,0x2d,0x31,0x5d,0xb8,0x5b,0x44,0xbd,0x15,0x9b,0x6e,0x77,0x8d,0xda,0x77, + 0x9d,0xb8,0x6d,0x41,0xc9,0x4f,0xc2,0xf0,0x46,0x31,0x98,0x63,0x1b,0x98,0xcb,0xec,0xf1,0xa4,0x89,0x08, + 0xff,0x9f,0x9c,0x30,0x4d,0x3d,0x10,0x68,0x95,0x9f,0xfe,0xdb,0xba,0xdc,0xba,0x37,0xdc,0xda,0x79,0x8d, + 0xad,0xb4,0x59,0x4c,0x13,0x5a,0x98,0x36,0x41,0xb6,0x83,0x65,0x52,0xb2,0xe8,0x89,0x16,0x98,0xdb,0xa4, + 0xf6,0x52,0x55,0x2f,0xdd,0xed,0xaa,0x7a,0x82,0xf6,0x64,0x7c,0x12,0xda,0x64,0xdb,0x9d,0xc8,0x3b,0xf2, + 0x1c,0x87,0x54,0x9d,0xbb,0xad,0x79,0x0e,0x6b,0x79,0xee,0xb5,0xe6,0x39,0x3d,0xad,0x65,0xfa,0xbc,0x35, + 0xd3,0xc6,0x53,0xcd,0x91,0x12,0xcf,0x73,0xf7,0x8b,0x63,0x06,0xd7,0xee,0x3a,0x76,0xa1,0x35,0x9e,0x11, + 0xa7,0x65,0x81,0xa0,0x75,0xff,0x2a,0x10,0x51,0x0d,0x44,0x1f,0xcd,0x7e,0x8b,0x53,0x99,0x30,0x6c,0x6d, + 0xae,0x04,0x2a,0x46,0xd0,0x2c,0xac,0x9e,0xe6,0xd0,0x8c,0xcd,0x9a,0x2b,0xc9,0xf4,0x8c,0x33,0xb0,0xdb, + 0xca,0x0a,0x6b,0xa8,0xa1,0xac,0xfd,0x35,0xdf,0x35,0x7e,0x99,0xcd,0x22,0xc9,0xa6,0xda,0xe3,0xb3,0xf6, + 0x27,0xad,0xdd,0x47,0x5b,0xa7,0xd0,0xa2,0x5b,0x69,0x20,0x5c,0x2f,0x8c,0x3e,0x88,0x17,0xe8,0xd0,0x38, + 0x71,0x6c,0xeb,0xe7,0xb6,0x1d,0x04,0x6f,0x10,0xd0,0xed,0x0f,0x81,0xa1,0xc3,0x5c,0xd2,0x6e,0x36,0xc8, + 0x7b,0x0c,0x2f,0x33,0xf1,0x82,0xdf,0x09,0x9f,0x4f,0xa8,0x1b,0x32,0x6e,0xaa,0x57,0xc3,0xeb,0x13,0x0a, + 0x88,0x08,0xdc,0x14,0xb9,0xfb,0x29,0x45,0x6a,0x92,0x71,0x53,0xf2,0x5e,0xe8,0x6a,0x20,0xb6,0x8c,0x25, + 0x5d,0x18,0xfc,0xfe,0x84,0x26,0x6a,0xe2,0x75,0xd3,0xc4,0x17,0xbf,0xa3,0xa4,0x16,0xb7,0x9b,0xa2,0xcd, + 0xe9,0xff,0xd8,0xfc,0x54,0xa8,0x01,0xcf,0x88,0x4d,0x8e,0xf4,0x23,0x74,0x74,0x40,0x34,0x07,0x2b,0x2b, + 0x5f,0x21,0xf0,0x7c,0xb3,0xb0,0xfa,0x22,0xb9,0x17,0x84,0xb7,0xf3,0x86,0x47,0xfa,0xa4,0xd6,0x24,0x93, + 0xad,0x71,0x64,0x0c,0x8f,0x54,0x3a,0x10,0x8f,0x92,0xdf,0xc1,0x20,0xed,0xd0,0xe2,0x8f,0xf7,0x1d,0x7a, + 0xf6,0x72,0xd4,0x34,0xe2,0xa4,0x5b,0xe0,0xc1,0xcb,0x45,0xc3,0xc4,0x25,0xf2,0xa0,0xd1,0xf5,0xb3,0x6a, + 0x74,0xac,0x5d,0xca,0xe3,0x6c,0x0c,0x4d,0x5b,0xc8,0xf6,0xfb,0x26,0xb8,0x90,0xef,0x5d,0xa4,0xd0,0x52, + 0xb2,0x07,0x11,0x02,0x9b,0x0e,0x47,0xf4,0xf5,0xf5,0x53,0xfe,0x2c,0xfd,0x78,0x82,0x6c,0xec,0xf5,0x34, + 0x59,0x42,0xbb,0x56,0x1f,0x4f,0xf8,0x28,0x49,0x03,0x0a,0xef,0x7d,0x99,0x7c,0xae,0xf2,0xec,0xaf,0xf5, + 0x73,0x72,0xdd,0x97,0x49,0xa3,0x63,0xcc,0x6e,0x15,0xd0,0x86,0xf2,0x4f,0x8e,0x8f,0x3f,0x13,0xde,0x28, + 0x99,0x1c,0xc1,0x3f,0x7a,0x19,0xc3,0xa5,0x6c,0x7f,0x67,0x9f,0x34,0xdd,0xf1,0x58,0x7b,0x7d,0x77,0x93, + 0x74,0xe7,0xc0,0x13,0x07,0x29,0x9d,0x25,0x7c,0xcb,0xff,0xc1,0x29,0xdb,0xe9,0x34,0x0e,0xcb,0xd5,0x96, + 0xfa,0x71,0xb8,0x11,0xcc,0xa8,0x1c,0xe1,0x22,0xe6,0x76,0x2b,0x87,0x44,0x7d,0xc8,0xfa,0xd8,0xae,0x0b, + 0xa7,0xce,0x2d,0x67,0xb3,0xcd,0x66,0x4f,0xc2,0xe1,0x34,0x8f,0x67,0x8c,0xab,0x3b,0x67,0x36,0x07,0xe9, + 0x1a,0xe3,0x02,0x70,0x38,0x23,0x5c,0xc8,0xdc,0x3d,0x3e,0x0e,0x02,0xb3,0x1c,0xe5,0x8c,0x7b,0x2b,0xe6, + 0xd5,0x5a,0x11,0x9c,0x6b,0x3b,0x2a,0xb6,0xf6,0x5e,0xb2,0x1b,0x86,0xfa,0x96,0x20,0xe0,0x0c,0x25,0x37, + 0x14,0x78,0xdd,0xf3,0x67,0x59,0xe7,0xdb,0xb7,0x41,0x5f,0x17,0x89,0x24,0x78,0x83,0xd6,0xb8,0x95,0xe0, + 0x30,0xb7,0xd6,0x59,0x74,0x23,0x9d,0x3a,0xcc,0x74,0xa4,0xe9,0x7e,0x79,0xfb,0x89,0xa0,0x38,0xaa,0xd7, + 0x21,0xee,0xfd,0x53,0xe3,0x7f,0xf0,0xd6,0x66,0x52,0xed,0xc5,0xa9,0xd1,0x14,0xfa,0x7c,0xcb,0xc1,0x7b, + 0x97,0x39,0x14,0xad,0xba,0x9b,0x86,0x94,0xe6,0x24,0xb9,0x27,0x7e,0x4b,0x11,0x64,0xe8,0xbf,0x9c,0x61, + 0xd4,0x93,0x7b,0x02,0x92,0x24,0xe2,0x24,0x2b,0x4b,0xba,0x1d,0x6f,0x25,0x83,0x20,0x62,0x53,0x04,0x55, + 0xf1,0xbd,0x4c,0x9a,0x71,0x69,0xb5,0x0c,0x8f,0x8e,0x20,0x61,0xe9,0x4d,0x59,0x9e,0x48,0x63,0x5d,0x42, + 0x5f,0x96,0xd3,0x78,0xe4,0xd3,0x24,0x47,0x90,0xb2,0xa3,0xb7,0x4b,0x3e,0xc9,0xe8,0x90,0x4a,0x37,0xe6, + 0xe6,0xa1,0x6a,0x52,0xbd,0x4b,0xc0,0xfc,0x0b,0xf3,0xdc,0xab,0xa4,0x36,0xdb,0x9d,0x11,0x26,0x2d,0xe7, + 0x51,0xa1,0xea,0x58,0xa8,0xb4,0x8d,0x2d,0x03,0xb8,0x88,0x75,0x13,0xac,0x4b,0x63,0xe3,0x3c,0xab,0xfe, + 0x19,0x86,0x17,0xd4,0x51,0x3a,0xca,0x15,0xd7,0xb6,0x43,0x7d,0xdb,0x99,0x59,0x5c,0x72,0x48,0xe2,0x52, + 0x55,0x49,0x44,0x3c,0x32,0xfc,0xdd,0xfe,0xe1,0x39,0xda,0x85,0x2e,0xf3,0xf7,0x5b,0xc5,0xde,0xa4,0x08, + 0x44,0x46,0x52,0x75,0x43,0x88,0x45,0x8c,0x4b,0xb1,0xe3,0xaa,0xdc,0x25,0x45,0xa0,0x00,0xb8,0x24,0x61, + 0x1f,0xdb,0x75,0xc1,0xd6,0xef,0x2f,0xbf,0xfc,0x7d,0xed,0x6a,0xcf,0x5b,0x4e,0xfb,0x56,0xb2,0xea,0x02, + 0xa5,0x4d,0x10,0x16,0x79,0x7f,0xf2,0xba,0x25,0xd4,0xb2,0xb7,0xff,0x07,0xaa,0x30,0x8a,0xf4,0xa2,0xec, + 0x01,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 8723f4e..3b15925 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 15; +const uint8_t VersionMetadata = 17; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+15"; -const char VersionCommitDate[] = "2018-01-11"; +const char VersionFullSemVer[] = "2.0.0-beta.1+17"; +const char VersionCommitDate[] = "2018-01-12"; #endif diff --git a/src/settings/triggers/time.h b/src/settings/triggers/time.h index 3303132..13e1075 100644 --- a/src/settings/triggers/time.h +++ b/src/settings/triggers/time.h @@ -9,7 +9,6 @@ #include #include -#include enum DayOfWeek { @@ -37,7 +36,7 @@ enum TimeTriggerType struct TimeTrigger { - uint16_t time; + int16_t time; uint8_t daysOfWeek; uint8_t brightness; TimeTriggerType triggerType; diff --git a/web/app.js b/web/app.js index d534bcb..93eeab0 100644 --- a/web/app.js +++ b/web/app.js @@ -40,6 +40,11 @@ function startApp() searchingLocation: false, triggers: { + time: { + enabled: false, + transitionTime: 0, + triggers: [] + } }, connection: { @@ -126,6 +131,17 @@ function startApp() console.log(error); }), + axios.get('/api/triggers/time') + .then(function(response) + { + if (typeof response.data == 'object') + self.triggers.time = response.data; + }) + .catch(function(error) + { + console.log(error); + }), + axios.get('/api/steps') .then(function(response) { diff --git a/web/dist/bundle.css b/web/dist/bundle.css index 38d6846..17fa35b 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem} \ No newline at end of file +*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem}.nodata{color:grey;text-align:center}.timeTriggers .trigger{border:solid 1px #404040;margin-bottom:2rem;padding:2rem} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 57af97b..a38c1bf 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):X(c)&&X(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Ir&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function jt(t){this._init(t)}function Et(t){return t&&(t.Ctor.options.name||t.tag)}function Pt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function It(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Et(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Ft(t,n){return{staticClass:Nt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Nt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,Hr),key:'"'+t.slice(Hr+1)+'"'}:{exp:t,key:null};for(Ur=t,Hr=zr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(zr=Hr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=Hr;break}}(Vr);return{exp:t.slice(0,zr),key:t.slice(zr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Ur.charCodeAt(++Hr)}function ce(){return Hr>=Wr}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Kr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Kr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Kr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(t){if(e(t[bi])){var n=Nn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),K(i,o,fe,pe,r.context),Kr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,ji(t.name||"v")),v(e,t),e}return"string"==typeof t?ji(t):void 0}}function we(t){Ri(function(){Ri(t)})}function xe(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Pi?Fi:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Pi,l=a,f=o.length):e===Ii?u>0&&(n=Ii,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Pi:Ii:null)?n===Pi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Pi&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Ee(t,e){!0!==e.data.show&&Te(e)}function Pe(t,e,n){Ie(t,e,n),(Nn||Rn)&&setTimeout(function(){Ie(t,e,n)},0)}function Ie(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Fe(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Fe(t){return"_value"in t?t._value:t.value}function Ne(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function We(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?We(Q(e.children)):t}function Ue(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function He(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function ze(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Ke(t,e){var n=e?Lo:Oo;return t.replace(n,function(t){return To[t]})}function Je(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),xn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),$n=/\B([A-Z])/g,kn=p(function(t){return t.replace($n,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],Ln={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},jn=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=In&&WXEnvironment.platform.toLowerCase(),Fn=Pn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Dn,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Dn,Un=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Vn=!1;if(Pn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,Hn)}catch(t){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);qn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&xr[n].id>t.id;)n--;xr.splice(n+1,0,t)}else xr.push(t);Cr||(Cr=!0,H(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var Lr={enumerable:!0,configurable:!0,get:g,set:g},jr={lazy:!0};Ct(At.prototype);var Er={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Er.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return Ln},Object.defineProperty(t,"config",e),t.util={warn:Xn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=L,t.nextTick=H,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(jt),Object.defineProperty(jt.prototype,"$isServer",{get:Kn}),Object.defineProperty(jt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),jt.version="2.5.13";var Wr,Ur,Vr,Hr,zr,qr,Kr,Jr,Gr=u("style,class"),Xr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Xr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Wt(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Wt(t,!0),Wt(e))},destroy:function(t){Wt(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:Ht,update:Ht,destroy:function(t){Ht(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Kt,update:Kt},yi={create:Gt,update:Gt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",xi={create:de,update:de},$i={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(jt.options.directives,Vi),v(jt.options.components,Ki),jt.prototype.__patch__=Pn?Wi:g,jt.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&Pn?Bt(t):void 0,e)},jt.nextTick(function(){Ln.devtools&&Jn&&Jn.emit("init",jt)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Xi,"\\$&"),n=t[1].replace(Xi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Eo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for($=t.slice(v);!(co.test($)||ao.test($)||lo.test($)||fo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Nn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Xt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,F.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=L,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===j&&"'"===e||l===E&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===P)return c}}(t))&&(this._cache[t]=e),e||[]},N.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (pull low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optional. Currently only used for translating a location name to it's latitude / longitude, which you will most likely only do once. Will work without an API key, but Google might throttle your request."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optioneel. Wordt op dit moment enkel gebruikt om een locatie te vertalen naar een breedte- / lengtegraad, wat je waarschijnlijk maar één keer nodig hebt. Werkt ook zonder API key, met de kans dat Google je verzoek tijdelijk niet toestaat."}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:""},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.system.lat=n.lat,t.system.lng=n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(t){c.headers[t]={}}),o.forEach(["post","put","patch"],function(t){c.headers[t]=o.merge(s)}),t.exports=c},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){return r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]}),(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===hn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return gn.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=$(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=$(l.text+c):""!==c&&f.push($(c)):G(c)&&G(l)?f[u]=$(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=I(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function jt(t){this._init(t)}function Lt(t){return t&&(t.Ctor.options.name||t.tag)}function Et(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==hn.call(n))&&t.test(e));var n}function Pt(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Lt(a.componentOptions);s&&!e(s)&&It(n,o,r,i)}}}function It(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Dt(t,n){return{staticClass:Ft(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Ft(t,e){return t?e?t+" "+e:t:e||""}function Nt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(_=t.charAt(y));y--);_&&xi.test(_)||(d=!0)}}else void 0===o?(g=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==g&&e(),a)for(i=0;i-1?{exp:t.slice(0,Kr),key:'"'+t.slice(Kr+1)+'"'}:{exp:t,key:null};for(zr=t,Kr=Jr=Gr=0;!se();)ce(qr=ae())?ue(qr):91===qr&&function(t){var e=1;for(Jr=Kr;!se();)if(t=ae(),ce(t))ue(t);else if(91===t&&e++,93===t&&e--,0===e){Gr=Kr;break}}(qr);return{exp:t.slice(0,Jr),key:t.slice(Jr+1,Gr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function ae(){return zr.charCodeAt(++Kr)}function se(){return Kr>=Hr}function ce(t){return 34===t||39===t}function ue(t){for(var e=t;!se()&&(t=ae())!==e;);}function le(t,e,n,r,i){var o,a,s,c,u;e=(u=e)._withTask||(u._withTask=function(){pr=!0;var t=u.apply(null,arguments);return pr=!1,t}),n&&(o=e,a=t,s=r,c=Xr,e=function t(){null!==o.apply(null,arguments)&&fe(a,t,s,c)}),Xr.addEventListener(t,e,Wn?{capture:r,passive:i}:r)}function fe(t,e,n,r){(r||Xr).removeEventListener(t,e._withTask||e,n)}function pe(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(t){if(e(t[$i])){var n=Dn?"change":"input";t[n]=[].concat(t[$i],t[n]||[]),delete t[$i]}e(t[ki])&&(t.change=[].concat(t[ki],t.change||[]),delete t[ki])}(i),q(i,o,le,fe,r.context),Xr=void 0}}function de(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function he(t){var e=ve(t.style);return t.staticStyle?v(t.staticStyle,e):e}function ve(t){return Array.isArray(t)?m(t):"string"==typeof t?Si(t):t}function me(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=ve(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=he(i.data))&&v(r,n);(n=he(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=he(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&ji(c,s,"");for(s in d)(a=d[s])!==f[s]&&ji(c,s,null==a?"":a)}}function ge(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function _e(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ii(t.name||"v")),v(e,t),e}return"string"==typeof t?Ii(t):void 0}}function be(t){Ui(function(){Ui(t)})}function we(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ge(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),ye(t,e)}function $e(t,e,n){var r=ke(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Wi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Fi,l=a,f=o.length):e===Ni?u>0&&(n=Ni,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Fi&&Vi.test(r[Mi+"Property"])}}function Ce(t,e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Se(e)}function Ee(t,e,n){Pe(t,e,n),(Dn||Nn)&&setTimeout(function(){Pe(t,e,n)},0)}function Pe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(De(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function Ie(t,e){return e.every(function(e){return!y(e,t)})}function De(t){return"_value"in t?t._value:t.value}function Fe(t){t.target.composing=!0}function Ne(t){t.target.composing&&(t.target.composing=!1,Me(t.target,"input"))}function Me(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Re(t){return!t.componentInstance||t.data&&t.data.transition?t:Re(t.componentInstance._vnode)}function Be(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Be(Y(e.children)):t}function We(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[_n(o)]=i[o];return e}function Ue(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function Ve(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function He(t){t.data.newPos=t.elm.getBoundingClientRect()}function ze(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qe(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',So.innerHTML.indexOf(" ")>0}var dn=Object.freeze({}),hn=Object.prototype.toString,vn=u("slot,component",!0),mn=u("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,_n=p(function(t){return t.replace(yn,function(t,e){return e?e.toUpperCase():""})}),bn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),wn=/\B([A-Z])/g,xn=p(function(t){return t.replace(wn,"-$1").toLowerCase()}),$n=function(t,e,n){return!1},kn=function(t){return t},Cn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],Tn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:$n,isReservedAttr:$n,isUnknownElement:$n,getTagNamespace:g,parsePlatformTagName:kn,mustUseProp:$n,_lifecycleHooks:Sn},On=/[^\w.$]/,jn="__proto__"in{},Ln="undefined"!=typeof window,En="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Pn=En&&WXEnvironment.platform.toLowerCase(),In=Ln&&window.navigator.userAgent.toLowerCase(),Dn=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===Pn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===Pn,Bn=(In&&/chrome\/\d+/.test(In),{}.watch),Wn=!1;if(Ln)try{var Un={};Object.defineProperty(Un,"passive",{get:function(){Wn=!0}}),window.addEventListener("test-passive",null,Un)}catch(t){}var Vn,Hn,zn=function(){return void 0===Vn&&(Vn=!Ln&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Vn},qn=Ln&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);Hn="undefined"!=typeof Set&&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(t){this.subs.push(t)},Xn.prototype.removeSub=function(t){l(this.subs,t)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eCr&&br[n].id>t.id;)n--;br.splice(n+1,0,t)}else br.push(t);$r||($r=!0,V(ct))}}(this)},Sr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){R(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var Tr={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};kt(Ct.prototype);var jr,Lr,Er,Pr,Ir={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=(a=t,s={_isComponent:!0,parent:_r,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Ir.prepatch(o,o)}var a,s,c},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==dn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||dn,t.$listeners=n||dn,e&&t.$options.props){ir.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&It(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};Rr=jt,(Wr={}).get=function(){return Tn},Object.defineProperty(Rr,"config",Wr),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=T,Rr.delete=O,Rr.nextTick=V,Rr.options=Object.create(null),An.forEach(function(t){Rr.options[t+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Vr),Rr.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},Rr.mixin=function(t){return this.options=I(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=I(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)ut(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)lt(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Br=Rr,An.forEach(function(t){Br[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}),Object.defineProperty(jt.prototype,"$isServer",{get:zn}),Object.defineProperty(jt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),jt.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=u("style,class"),Qr=u("input,textarea,option,select,progress"),ti=function(t,e,n){return"value"===n&&Qr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},ei=u("contenteditable,draggable,spellcheck"),ni=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},oi=function(t){return ii(t)?t.slice(6,t.length):""},ai=function(t){return null==t||!1===t},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ui=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),li=function(t){return ci(t)||ui(t)},fi=Object.create(null),pi=u("text,number,password,search,email,tel,url"),di=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(si[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),hi={create:function(t,e){Bt(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Bt(t,!0),Bt(e))},destroy:function(t){Bt(t,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Vt,update:Vt,destroy:function(t){Vt(t,vi)}},yi=Object.create(null),_i=[hi,gi],bi={create:qt,update:qt},wi={create:Jt,update:Jt},xi=/[\w).+\-_$\]]/,$i="__r",ki="__c",Ci={create:pe,update:pe},Ai={create:de,update:de},Si=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ti=/^--/,Oi=/\s*!important$/,ji=function(t,e,n){if(Ti.test(e))t.style.setProperty(e,n);else if(Oi.test(n))t.style.setProperty(e,n.replace(Oi,""),"important");else{var r=Ei(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:fi[t]=/HTMLUnknownElement/.test(e.toString())},v(jt.options.directives,qi),v(jt.options.components,Xi),jt.prototype.__patch__=Ln?Hi:g,jt.prototype.$mount=function(t,e){return t=t&&Ln?Rt(t):void 0,r=t,i=e,(n=this).$el=r,n.$options.render||(n.$options.render=tr),st(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,st(n,"mounted")),n;var n,r,i},jt.nextTick(function(){Tn.devtools&&qn&&qn.emit("init",jt)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,to=p(function(t){var e=t[0].replace(Qi,"\\$&"),n=t[1].replace(Qi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),eo={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=re(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=ne(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},no={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=re(t,"style");n&&(t.staticStyle=JSON.stringify(Si(n)));var r=ne(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},ro=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",uo=new RegExp("^<"+co),lo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Do(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(ho.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(vo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(po);if(y){n(y[0].length);continue}var _=t.match(fo);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(uo);if(e){var r,i,o={tagName:e[1],attrs:[],start:l};for(n(e[0].length);!(r=t.match(lo))&&(i=t.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=l,o}}();if(w){!function(t){var n,i,l,f=t.tagName,p=t.unarySlash;s&&("p"===o&&oo(f)&&r(o),u(f)&&o===f&&r(f));for(var d=c(f)||!!p,h=t.attrs.length,v=new Array(h),m=0;m=0){for($=t.slice(v);!(fo.test($)||uo.test($)||ho.test($)||vo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:go,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||ko(t);Dn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e,n,r,i=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(r=i,F.test(r)?(n=(e=i).charCodeAt(0))!==e.charCodeAt(e.length-1)||34!==n&&39!==n?e:e.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.formatter=this.$root.$i18n.formatter,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===L&&"'"===e||l===E&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?e:r,!1===a()))return;if(l===P)return c}}(t))&&(this._cache[t]=e),e||[]},N.prototype.getPathValue=function(t,n){if(!e(t))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c,u=this._path.getPathValue(e,i);if(Array.isArray(u))return u;if(r(u)){if(!n(e))return null;if("string"!=typeof(c=e[i]))return null}else{if("string"!=typeof u)return null;c=u}return c.indexOf("@:")>=0&&(c=this._link(t,e,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s,c=i.apply(void 0,o),u=c.locale||e,l=this._translate(n,u,this.fallbackLocale,t,r,"string",c.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[t].concat(o))}return this._warnDefault(u,t,l,r)},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){var n;(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (pull low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optional. Currently only used for translating a location name to it's latitude / longitude, which you will most likely only do once. Will work without an API key, but Google might throttle your request."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optioneel. Wordt op dit moment enkel gebruikt om een locatie te vertalen naar een breedte- / lengtegraad, wat je waarschijnlijk maar één keer nodig hebt. Werkt ook zonder API key, met de kans dat Google je verzoek tijdelijk niet toestaat."}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:0,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:""},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/triggers/time").then(function(t){"object"==typeof t.data&&(e.triggers.time=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.system.lat=n.lat,t.system.lng=n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 3d708be..c8d4a3f 100644 --- a/web/index.html +++ b/web/index.html @@ -87,6 +87,32 @@
{{ $t('triggers.timeInternet') }}
+ +
+
+ + + + + + + + + + + +
+ {{ Math.floor(trigger.brightness / 255 * 100) }}% +
+ +
+
+
+
+ +
+ {{ $t('triggers.timeNoData') }} +
diff --git a/web/lang.js b/web/lang.js index b2123f2..f232347 100644 --- a/web/lang.js +++ b/web/lang.js @@ -39,6 +39,12 @@ var messages = { tabTitle: 'Triggers', timeTitle: 'Time', timeInternet: 'Please note that time triggers require an internet connection.', + timeNoData: 'No time triggers defined yet', + + timeFixedTime: 'Fixed time', + timeSunrise: 'Sunrise', + timeSunset: 'Sunset', + timeTime: 'Time in minutes', motionTitle: 'Motion' }, @@ -131,6 +137,11 @@ var messages = { tabTitle: 'Triggers', timeTitle: 'Tijd', timeInternet: 'Let op dat voor tijd triggers een internetverbinding vereist is.', + timeNoData: 'Nog geen tijd triggers geconfigureerd', + + timeFixedTime: 'Vaste tijd', + timeSunrise: 'Zonsopkomst', + timeSunset: 'Zonsondergang', motionTitle: 'Beweging' }, diff --git a/web/site.scss b/web/site.scss index 571668c..82404ef 100644 --- a/web/site.scss +++ b/web/site.scss @@ -273,4 +273,22 @@ input[disabled] border: solid 1px $warningBorderColor; padding: .5em; margin-bottom: 2rem; +} + + +.nodata +{ + color: #808080; + text-align: center; +} + + +.timeTriggers +{ + & .trigger + { + border: solid 1px #404040; + margin-bottom: 2rem; + padding: 2rem; + } } \ No newline at end of file From f6808c48338d080b67c1100a4d4ed15c6c9eec9e Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Sun, 14 Jan 2018 13:56:18 +0100 Subject: [PATCH 17/43] Implemented time triggers logic Frontend needs quite a bit of work still --- src/assets/html.h | 252 +- src/assets/js.h | 4394 ++++++++++++++++---------------- src/assets/version.h | 2 +- src/main.cpp | 65 +- src/settings/system.cpp | 52 +- src/settings/system.h | 23 +- src/settings/triggers/time.cpp | 79 + src/settings/triggers/time.h | 3 + web/dist/bundle.js | 2 +- web/index.html | 6 +- web/lang.js | 1 + 11 files changed, 2510 insertions(+), 2369 deletions(-) diff --git a/src/assets/html.h b/src/assets/html.h index 5ccd4ce..3cc966c 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,131 +4,131 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x5a,0x69,0x7b,0xe2,0x38,0x12,0xfe,0x2b,0x6e, - 0x66,0xf7,0x49,0xb2,0xdd,0x21,0x40,0x8e,0xee,0x64,0x43,0x76,0xcc,0x15,0x20,0x40,0xb8,0x73,0x7c,0x93, - 0x6d,0x61,0x2b,0xf1,0x15,0x4b,0x86,0xd0,0x3d,0xf3,0xdf,0x57,0x96,0x2f,0xd9,0xd8,0x40,0xba,0x9f,0x79, - 0x66,0xf8,0x80,0x91,0xaa,0x54,0xf5,0x56,0xa9,0x54,0x2a,0x09,0x5f,0x7f,0x6a,0xdc,0xd7,0xa7,0x4f,0xc3, - 0xa6,0xa0,0x11,0x43,0xbf,0xb9,0x0e,0xbe,0x21,0x50,0x6e,0xae,0x0d,0x48,0x80,0x20,0x6b,0xc0,0xc1,0x90, - 0x54,0x0b,0xb3,0x69,0xeb,0xf8,0x5b,0xe1,0xe6,0x9a,0x20,0xa2,0xc3,0x9b,0xeb,0x93,0xe0,0xc9,0x98,0x4c, - 0x60,0xc0,0x6a,0x81,0x68,0xd0,0x80,0xc7,0xb2,0xa5,0x5b,0x4e,0x41,0x90,0x2d,0x93,0x40,0x93,0x8e,0xfb, - 0xad,0xc4,0x3e,0x85,0x04,0xeb,0x12,0xc1,0x95,0x6d,0x39,0x84,0xe3,0x5b,0x21,0x85,0x68,0x55,0x05,0x2e, - 0x91,0x0c,0x8f,0x59,0xe3,0x0b,0x32,0x11,0x41,0x40,0x3f,0xc6,0x32,0xd0,0x61,0xb5,0x4c,0x45,0xe8,0xc8, - 0x7c,0x15,0x1c,0xa8,0x57,0x0b,0x98,0xac,0x75,0x88,0x35,0x08,0xa9,0x0c,0xcd,0x81,0x8b,0x6a,0x41,0x72, - 0x4d,0x45,0x87,0x45,0x19,0x63,0xca,0x88,0x65,0x07,0xd9,0x44,0xc0,0x8e,0x1c,0x11,0x5e,0xbc,0xfe,0x13, - 0x9f,0x40,0x7f,0xf8,0x36,0x4a,0x96,0xb2,0xbe,0xb9,0x56,0xd0,0x52,0x40,0x4a,0xb5,0x00,0x6c,0xbb,0xe0, - 0xb7,0x96,0xc7,0xb2,0x6e,0x81,0xd7,0x98,0xe4,0xe1,0x04,0xc8,0x84,0x4e,0xc0,0x20,0xeb,0x00,0xe3,0x6a, - 0xc1,0x93,0xc2,0xfa,0x90,0xa1,0xfa,0xda,0x14,0x40,0xc0,0x15,0x32,0x80,0x0a,0x4f,0x6c,0x53,0xfd,0xaf, - 0x04,0x30,0xbc,0x38,0xfb,0x82,0xe6,0xb5,0xfb,0xf1,0xaa,0x74,0x77,0xab,0x5a,0x22,0xfd,0x0c,0x26,0x33, - 0xad,0x39,0x53,0xe9,0xaf,0x86,0xd7,0x14,0x57,0x75,0xf1,0x89,0x3e,0x6a,0x8f,0xe2,0xd2,0x68,0x7b,0x1d, - 0xb7,0x8f,0xe3,0xd6,0x43,0x7b,0x3c,0x95,0x2a,0xcf,0x25,0xa5,0xd2,0x5a,0x3f,0x8f,0x6a,0xb5,0xe7,0xdb, - 0x4b,0xf4,0x3c,0xa9,0x75,0xa5,0x87,0x96,0xf9,0x3c,0xef,0xea,0x4f,0x0f,0xe3,0x73,0x59,0xd6,0xf5,0xa1, - 0x37,0xe0,0xb1,0xd6,0x1d,0x37,0x5b,0x33,0x38,0x70,0xf0,0x83,0xd2,0x1c,0xa8,0x2f,0xe2,0xa8,0x27,0x3f, - 0xd5,0x64,0x71,0x28,0x8b,0x75,0x65,0x34,0x38,0x13,0x07,0x95,0x7e,0xfd,0x4c,0x1d,0xe3,0xa7,0xee,0x65, - 0x73,0xa0,0x88,0xc3,0x27,0xb1,0x01,0xc4,0x06,0xb4,0x95,0x99,0xd6,0x2f,0xbf,0xb5,0x5e,0x5c,0x47,0xb5, - 0x2f,0x27,0x72,0xbf,0xad,0x2a,0x5f,0xcb,0xa7,0xf3,0xd3,0x05,0x99,0xd9,0xe7,0xb0,0xad,0xf6,0x5b,0x65, - 0xc7,0xb9,0x6d,0x02,0xf7,0x62,0xde,0x6e,0x54,0xda,0x7d,0xa9,0x7d,0xfe,0xd6,0xbd,0xef,0xb5,0x1d,0xf0, - 0x79,0xf1,0xfa,0x5d,0xc2,0x4f,0x63,0xac,0xf5,0xbf,0xd9,0xbd,0xa9,0x3a,0xeb,0xa8,0x13,0x75,0xe9,0xf6, - 0xfb,0xd6,0xd3,0xea,0x33,0xea,0x3f,0x4d,0x9d,0x8b,0x91,0x36,0x78,0xea,0x3b,0x03,0x34,0x58,0xaf,0x3a, - 0x3d,0x7d,0x3d,0xbf,0x53,0xe4,0xf5,0x7a,0x88,0x0d,0x79,0x8c,0xd7,0xb3,0xf3,0xd2,0xab,0xda,0x26,0xa3, - 0x91,0x5b,0x11,0x95,0x41,0xb7,0x65,0x37,0x5e,0xc5,0xbb,0xb3,0xce,0x49,0xaf,0xf3,0xd0,0x97,0x2a,0x22, - 0xee,0xd4,0xe4,0xb7,0x12,0x1a,0xdf,0xc2,0xd1,0xed,0x70,0xfa,0xbc,0x98,0x5f,0x8c,0x9a,0xa5,0xcf,0x6a, - 0xe3,0xb6,0x55,0x71,0x2c,0x7c,0xdb,0x54,0xfb,0xa3,0xf7,0x8e,0xa8,0x99,0xcf,0x22,0x1a,0x0e,0xbe,0x9d, - 0xb9,0xf6,0x78,0x51,0x3a,0xb9,0xd7,0x6d,0xdc,0xab,0xd7,0xec,0xd3,0xf5,0x5b,0x49,0xd6,0x54,0x52,0x9f, - 0xcd,0x9e,0x9d,0xf1,0xea,0x62,0xd4,0xb8,0x3f,0x6d,0x3e,0xb4,0x27,0x6f,0xad,0x4b,0x02,0x9c,0x67,0x30, - 0xb9,0xeb,0x3e,0xc2,0x6e,0x43,0x91,0x46,0x3a,0x6e,0x96,0xee,0x1a,0x17,0xdd,0xc1,0xc9,0x9d,0x35,0xc6, - 0xb7,0xda,0xfb,0xe3,0x5d,0x5d,0xaf,0xdf,0xb5,0xbb,0x9d,0xc5,0xeb,0x54,0x5b,0xf5,0x1f,0x34,0xf1,0x42, - 0xa9,0x4d,0x2c,0x7d,0x8c,0x5e,0x5e,0xbb,0xf7,0x4a,0xf9,0x79,0xb6,0xbc,0x5c,0x8f,0x2e,0xef,0xed,0x37, - 0xa9,0x6d,0x23,0x30,0x9b,0x83,0xa6,0xf4,0xdc,0xfc,0x4a,0x3a,0x9d,0x17,0xab,0x76,0xf7,0xb8,0xc6,0x16, - 0x2e,0xcb,0x67,0xf3,0x6f,0x50,0xea,0x35,0x15,0x69,0x59,0x91,0xe4,0x3e,0x6e,0x7e,0x55,0x5f,0xdc,0x9a, - 0xb2,0x7c,0x1c,0x4f,0xba,0x67,0xad,0xcf,0x27,0xab,0xb7,0xce,0xe3,0xa3,0xd3,0xb9,0x5d,0x19,0x8f,0xa7, - 0xdf,0x57,0x40,0xee,0x35,0x34,0x38,0xb8,0xbf,0x2c,0xdf,0xbf,0xf4,0x46,0x77,0x4a,0xf9,0x6c,0xde,0x6f, - 0xd4,0xcd,0x27,0xb5,0xfe,0x3e,0x7f,0xe9,0x9c,0x0e,0xa6,0xb0,0x6c,0x4c,0xac,0x61,0xe3,0xec,0xf2,0xfd, - 0x6c,0xe2,0xd0,0xe0,0xb8,0x7c,0x1b,0x9a,0x67,0xd0,0x5a,0xd6,0xfb,0x2c,0x7a,0x9a,0x7a,0x6b,0xfa,0x3a, - 0x71,0x47,0x46,0xbd,0x4e,0x23,0x51,0x2b,0xdf,0xfc,0xf8,0x21,0xfc,0x8b,0x1c,0x1e,0xb0,0x25,0x7a,0x70, - 0x24,0xfc,0xf9,0x27,0x0d,0xf7,0x32,0xa5,0x54,0x3c,0xca,0x12,0x3a,0x18,0x59,0x66,0x11,0xaf,0x31,0x81, - 0x46,0xa7,0x21,0x7c,0xaa,0x56,0x05,0xd3,0xd5,0x75,0xe1,0x7f,0x6c,0x54,0xd8,0x4f,0x07,0x7e,0x16,0x0e, - 0xae,0x84,0x03,0xfa,0xd8,0x18,0x43,0xbb,0x0f,0x7c,0xb9,0x95,0xc4,0x7a,0x58,0xa1,0x05,0xc2,0x04,0x10, - 0x17,0x27,0xd7,0x09,0x5d,0x3e,0x26,0x94,0x09,0x95,0x91,0xec,0x47,0xa6,0x82,0x64,0x40,0xbc,0x8c,0x71, - 0xe5,0xad,0x9c,0x63,0x7f,0xb0,0x2f,0x68,0xc2,0x7e,0x17,0x81,0x5d,0x84,0x26,0x90,0x74,0xa8,0x50,0x84, - 0x07,0x81,0x24,0xa8,0x1c,0x78,0x20,0x14,0x84,0xe3,0x0e,0x6f,0x7d,0x53,0xd9,0xa1,0xf9,0xbc,0x08,0x59, - 0x86,0x18,0xdb,0x16,0x32,0x49,0x31,0xf6,0x8a,0x40,0x19,0xf3,0xf4,0x24,0xfb,0x91,0x4d,0x95,0x6d,0x91, - 0x49,0x61,0xb0,0x81,0x81,0xb3,0x3d,0x10,0xbf,0x64,0xbd,0x0a,0xc9,0x03,0x6a,0x31,0x4d,0x74,0x90,0xaf, - 0xf0,0xf0,0x28,0xdf,0x3e,0xec,0x33,0x1a,0x96,0x02,0x53,0xf6,0x65,0x49,0x9a,0xc2,0x77,0x72,0xc8,0x21, - 0xe5,0xbf,0xfd,0xe4,0x87,0x68,0x3e,0xa5,0xf9,0x4f,0x41,0xa6,0x5a,0x08,0xc1,0x86,0xed,0x50,0x7d,0xd0, - 0x8e,0x34,0x05,0xed,0x4e,0x68,0x53,0xd2,0x13,0xbe,0xcc,0x4f,0x91,0x10,0xde,0x0d,0x04,0x48,0x5e,0xb8, - 0x48,0x2e,0x21,0x96,0x19,0x76,0xfa,0x2d,0xea,0x98,0xa0,0xfd,0x43,0x38,0xf0,0xbb,0x8e,0x2d,0x97,0xd0, - 0x7d,0x00,0xd2,0xd0,0x04,0xd4,0xa7,0x4b,0x38,0x05,0x12,0x8d,0x61,0xe1,0xc0,0x77,0x1e,0x0d,0xcb,0x82, - 0xf0,0xbb,0xac,0x23,0xf9,0x95,0x26,0xf4,0x88,0x21,0xa6,0x47,0x06,0xf8,0xed,0x22,0xd5,0x3e,0xe5,0x16, - 0x8a,0xaf,0xe4,0x46,0xf8,0x65,0x38,0xc4,0x41,0xaa,0x4a,0xd7,0x4d,0x3e,0xa0,0x88,0x23,0x82,0x14,0xf6, - 0xfc,0x65,0xa0,0xe2,0x48,0xcc,0x87,0xc5,0xf1,0x44,0xc0,0xe2,0xbe,0xbf,0x0c,0x9a,0x9f,0x5b,0xb6,0x4c, - 0x9f,0x4f,0x8f,0xa7,0x8f,0xb5,0x73,0xe0,0x6c,0x44,0x1e,0x27,0x8a,0x0f,0x85,0x6b,0xed,0x34,0x1d,0x0e, - 0x7c,0xd2,0x3c,0x65,0x22,0xe8,0xee,0x6e,0xda,0x2e,0x11,0xc8,0xda,0xa6,0xb5,0x8b,0x43,0x23,0xd8,0x2a, - 0x04,0x85,0x0c,0xd0,0xf5,0x09,0x81,0x36,0xa6,0x86,0x2e,0x81,0xee,0x7a,0x55,0x90,0xe3,0xc2,0x02,0x55, - 0xea,0xad,0x45,0x9d,0x67,0x60,0x05,0x46,0xd0,0x9a,0x7a,0x4c,0xb4,0x9c,0x01,0x12,0xd4,0xa3,0xf5,0xe5, - 0x35,0x8e,0x91,0xe9,0x39,0xa7,0x20,0x2c,0x2c,0x27,0xcd,0x9e,0xc4,0xc9,0xd3,0x02,0xb8,0x4c,0x02,0x67, - 0xfa,0x87,0x70,0x2f,0x80,0x8e,0x77,0x03,0x6f,0x31,0xae,0xfd,0x91,0x07,0xfc,0xd9,0xd0,0x19,0x31,0x07, - 0x7b,0x28,0x1b,0xeb,0x88,0x16,0x58,0xa9,0xdd,0x84,0x4e,0xbc,0x5d,0x08,0x27,0x36,0xc4,0x49,0x8b,0x3e, - 0x1b,0x44,0xf1,0xc7,0xac,0x62,0x8a,0xfb,0x80,0x68,0xc5,0x85,0x6e,0x59,0xce,0x61,0xc8,0x3b,0xf7,0x88, - 0xc2,0x89,0x50,0x39,0x3f,0x17,0xfe,0x23,0x94,0x4b,0x25,0x0f,0xc3,0xbf,0x69,0x71,0x48,0x05,0x64,0x68, - 0xe7,0x6b,0xbf,0xa4,0x47,0x4d,0x95,0x1a,0x6c,0x20,0xb3,0x5a,0x28,0xd1,0x27,0x78,0xaf,0x16,0xa8,0xc8, - 0x42,0x72,0x74,0xe4,0xd3,0xa2,0xe9,0x1a,0x12,0xe4,0x9c,0x33,0xf7,0x31,0x6e,0xe4,0xdf,0x0c,0x2b,0x3f, - 0xc5,0xd3,0xb1,0x3c,0x66,0x1e,0x3e,0xf4,0xc8,0x5f,0x04,0xba,0x85,0xc0,0xf7,0x23,0xfa,0x10,0xf0,0xbe, - 0x5e,0xf0,0x18,0x8b,0xcb,0xbf,0xd7,0x05,0x31,0x86,0x94,0xfd,0xd9,0x7b,0x51,0x72,0xf5,0x72,0x79,0xf3, - 0x9a,0xfa,0xc2,0x10,0x7e,0xc7,0xae,0x64,0x20,0x52,0xb4,0x1d,0xb8,0x64,0x87,0x09,0x5a,0xc8,0xeb,0xeb, - 0x69,0xc0,0xe6,0x71,0x21,0xa8,0x2b,0xf4,0x18,0xc3,0xaf,0xf7,0x38,0xd7,0x22,0x03,0x4e,0x37,0x57,0x7d, - 0x54,0xd2,0x00,0xc7,0x64,0xfb,0x60,0x30,0x13,0x9b,0xdb,0x6e,0x54,0x36,0xfc,0xf1,0x87,0x90,0x41,0xf5, - 0xa3,0xde,0xcb,0x71,0xa7,0x19,0x89,0x9e,0x2a,0xef,0xd0,0x23,0x90,0x63,0x42,0x92,0xae,0x1e,0x7c,0x85, - 0x09,0xd6,0x62,0xd4,0xd2,0xa1,0xa9,0x12,0x2d,0x72,0x34,0x33,0x22,0x36,0xd8,0x1f,0xee,0x07,0x4a,0x30, - 0x84,0x8f,0x95,0x6c,0x99,0xb1,0x30,0xbf,0x63,0x63,0xae,0x59,0x02,0x09,0xf2,0x05,0x9d,0xed,0x2b,0x3f, - 0x97,0x84,0xc6,0x4c,0x29,0x97,0x57,0x2c,0x32,0x35,0x94,0xea,0xe5,0x0d,0x9e,0x56,0x8a,0x89,0x5b,0x13, - 0xc8,0x15,0x83,0x9d,0x37,0x32,0xcb,0x81,0x2d,0xf4,0x0e,0x95,0x29,0xfd,0x91,0x4c,0x26,0xf9,0xe0,0xcb, - 0x1f,0x06,0x5f,0xfe,0x69,0xf0,0xe5,0x1d,0xe0,0x27,0xae,0xe9,0xa0,0x74,0x1e,0xcc,0x87,0x5e,0xf9,0x30, - 0xf4,0xca,0x4f,0x43,0xaf,0xec,0x86,0x8e,0xa3,0xb0,0x0d,0x90,0xfb,0x0a,0x42,0x59,0xde,0x9c,0x6c,0x97, - 0xb1,0x7d,0xda,0xfc,0x7c,0x11,0x19,0x95,0x10,0xb7,0x91,0x54,0x02,0xb9,0x4c,0x6c,0xc6,0x86,0xb1,0x47, - 0x6a,0x0c,0x25,0x48,0xf4,0xa9,0x11,0x93,0xd6,0xf7,0x7f,0x5f,0x8a,0xdc,0xc4,0xb2,0x33,0x55,0x42,0xba, - 0x9f,0x86,0x62,0x4d,0xcb,0x3b,0x51,0x64,0xfb,0x7c,0x60,0x35,0x28,0x8d,0x4f,0x37,0x27,0x71,0x86,0xdc, - 0x9a,0x2b,0x0d,0xcb,0x4b,0x69,0xe9,0x6c,0xc9,0x8d,0x3e,0xf1,0x12,0xf2,0xae,0x04,0x9e,0xa8,0x30,0xb7, - 0xa5,0xf0,0x3a,0x7f,0x70,0xca,0x02,0xc6,0xd7,0xa5,0x29,0x50,0xfc,0x1c,0xc8,0x1a,0x94,0x5f,0x25,0xeb, - 0x3d,0x28,0x66,0xe2,0x93,0x1b,0x57,0xf0,0x70,0xa2,0x78,0x86,0x3d,0x6a,0x1d,0x9e,0x7b,0x13,0x17,0x47, - 0x4e,0xc6,0x39,0x1f,0x8d,0xda,0xee,0xc1,0xed,0x58,0x00,0x8b,0x40,0x61,0x8b,0x85,0xc1,0xd6,0x93,0x6d, - 0x5d,0x48,0xdc,0x6d,0x59,0xc4,0xb9,0x09,0x8c,0x3b,0x71,0x7e,0xdc,0x2a,0x6e,0x70,0xda,0xaa,0x00,0x93, - 0xaf,0x1e,0x23,0x25,0x73,0x38,0xed,0xcf,0x4f,0x19,0x84,0x9e,0x6e,0x03,0x2f,0x78,0xe3,0xb3,0x5d,0xc0, - 0x28,0x57,0xe1,0xb1,0x9d,0xee,0xea,0x5b,0xfc,0xc3,0xb0,0xd8,0xd4,0xa0,0x95,0xe5,0x64,0xe2,0x09,0x69, - 0xf9,0x98,0xa2,0xd1,0x0c,0x57,0xdc,0xca,0xc2,0x16,0x53,0x77,0xe1,0xdb,0x16,0x01,0x8a,0x26,0xdb,0xd9, - 0xf2,0x7d,0xca,0x9e,0xb6,0xe7,0xc7,0x06,0x13,0x93,0xe1,0x0c,0xaf,0xff,0xe3,0x11,0xe1,0x8d,0xda,0x08, - 0x05,0x3e,0xc5,0xba,0x92,0x65,0x7b,0x9c,0x38,0x39,0x2d,0x28,0x13,0x03,0xb2,0x81,0xa2,0x38,0x74,0xe1, - 0xec,0x13,0x25,0x28,0xc7,0x4f,0x68,0xa7,0x97,0xbc,0x7a,0x2f,0xed,0xd8,0x64,0x00,0xbb,0x12,0x2d,0xeb, - 0x0c,0x80,0x5f,0x33,0xc3,0x38,0xa2,0xee,0x15,0xcc,0xb1,0xac,0xec,0x90,0xe6,0xe8,0xbf,0x08,0x5b,0x05, - 0x04,0xae,0xc0,0x3a,0x0b,0x73,0x40,0xda,0x07,0x70,0x28,0x25,0x13,0x6d,0x44,0xfc,0x19,0xa8,0xfe,0xe6, - 0xc2,0x01,0xd6,0x2c,0x4c,0xbc,0x9a,0x28,0x0b,0x71,0x48,0xdb,0x05,0xf9,0xca,0xd6,0x81,0x0c,0x35,0x4b, - 0x57,0xbc,0xcd,0x37,0x47,0xc8,0x30,0xe6,0x39,0x38,0xf2,0xcd,0x8c,0x74,0x67,0xda,0x19,0x53,0x77,0x2e, - 0x38,0x2e,0xda,0xfd,0x4b,0x0c,0x1c,0x15,0x12,0x89,0xee,0x63,0xdb,0x41,0x06,0x70,0xa8,0xef,0x7c,0xf8, - 0xfe,0xc6,0x99,0x50,0x80,0xc1,0x92,0x9d,0x58,0xc2,0xb3,0xbd,0xdf,0x0e,0xee,0x77,0xd9,0xc6,0x5a,0x63, - 0xa2,0x26,0xac,0x9f,0x7a,0xe6,0x2a,0x4d,0x39,0x38,0x8a,0x8b,0x8d,0x0f,0x6e,0xee,0xd1,0x3d,0x4d,0xce, - 0xc6,0xee,0xda,0xde,0x25,0x60,0x0b,0x39,0x06,0x3d,0x59,0xc1,0x20,0xb8,0xd9,0x98,0x9c,0x3d,0x3e,0xb8, - 0xe8,0x59,0x04,0x23,0xd2,0xc5,0x07,0x3f,0x95,0x0b,0xa4,0x07,0x12,0x43,0xee,0x96,0xd7,0xf3,0xcf,0x75, - 0x6e,0xec,0x44,0xdf,0x2d,0x43,0xc7,0x52,0xbd,0xc4,0xc5,0x2e,0xe5,0x17,0xd1,0xe5,0x49,0x8a,0xc8,0xca, - 0xd0,0x9c,0xc9,0xd9,0x52,0x4d,0x4d,0x7c,0x2f,0xef,0xed,0x71,0x93,0xd8,0xff,0xb8,0x73,0x31,0xb7,0xea, - 0x75,0x40,0xd2,0x97,0x81,0x14,0x71,0x0f,0x90,0x7d,0xb2,0x93,0x37,0x38,0x5e,0xb1,0xc1,0x70,0x26,0x31, - 0xa1,0x82,0xbb,0xef,0xe6,0x54,0x04,0xb7,0xde,0xbb,0x54,0xf8,0xce,0x49,0xa9,0x48,0x5f,0x7e,0xe7,0xed, - 0x6c,0xba,0x25,0x07,0x35,0x5c,0xd6,0x1e,0x9c,0x01,0x2a,0xe0,0xdf,0x0b,0x59,0x24,0x3b,0x82,0x17,0x75, - 0xe5,0xdc,0xe4,0x0a,0xc9,0xdb,0xdb,0xf0,0x8e,0x36,0x8e,0x30,0x0c,0x81,0x23,0x6b,0xbd,0x48,0x32,0xbf, - 0x62,0x18,0x89,0xc6,0x4a,0x44,0xcd,0x87,0x3f,0x61,0xbc,0x99,0x97,0xb9,0x1b,0xf1,0x69,0x23,0x13,0xa7, - 0x03,0x94,0x2f,0xd9,0x90,0xd9,0x6b,0x36,0xc4,0x61,0x5a,0x5b,0xd8,0xbf,0xfb,0xd4,0xc9,0x8a,0xb5,0x50, - 0xca,0xe6,0x1d,0x56,0x8c,0xa2,0x48,0xed,0xf4,0x14,0x6d,0xaa,0x9f,0x4c,0xc5,0x6c,0xfd,0x94,0xf0,0x11, - 0x00,0x9e,0x9c,0x5d,0x08,0x98,0xae,0x14,0x04,0x71,0xe8,0xe7,0x9c,0x0c,0x10,0x21,0x69,0x6f,0x18,0x91, - 0xac,0xad,0x40,0x80,0x1d,0x6a,0x4c,0x41,0x19,0x3e,0xf4,0x1b,0x0e,0xdd,0x28,0x9c,0x49,0x23,0xcb,0x27, - 0x3c,0x79,0x6f,0x48,0x09,0x99,0x5b,0x61,0xd9,0x2b,0x83,0xe9,0xcd,0x05,0x55,0xef,0x6d,0x05,0x55,0xef, - 0xfd,0x04,0x28,0x2a,0x73,0x27,0x28,0x4f,0x6f,0x02,0xd4,0xca,0x10,0xfd,0xea,0x75,0x03,0x4f,0x44,0xd9, - 0x13,0x4a,0x2c,0x29,0x17,0x05,0xa7,0x2c,0x05,0xa2,0xe5,0xc0,0x37,0x17,0x9a,0xf2,0x3a,0x03,0x46,0x44, - 0xdb,0x1b,0x48,0x2c,0x6d,0x0b,0x14,0x4e,0xe5,0xe6,0x6a,0x37,0x80,0xbd,0x6d,0xb5,0x7b,0x64,0x71,0xd8, - 0xb9,0x83,0x1b,0x78,0x63,0xca,0x7e,0x68,0x39,0x49,0x79,0x58,0x79,0x65,0x42,0xfe,0x01,0x67,0x83,0x5b, - 0xdb,0x72,0xc4,0xf9,0x47,0xd5,0x25,0x79,0x45,0xdf,0xe6,0x5f,0xdb,0x3a,0x4d,0xd8,0x0b,0xf4,0x9e,0xff, - 0x37,0x46,0xf0,0xee,0x00,0x57,0x9b,0xdb,0x6b,0x76,0xa5,0xe5,0x3b,0x42,0x72,0xf8,0x97,0x12,0x82,0x67, - 0xfa,0x9d,0x84,0xb0,0x9a,0x9b,0xfb,0x64,0xf6,0x6a,0x42,0x7a,0x48,0xf4,0x4a,0xc2,0xc6,0xe5,0x58,0xf0, - 0x32,0x90,0x0e,0x4c,0xd5,0x05,0x2a,0x75,0xcd,0x0b,0x58,0x02,0xbf,0xb3,0x70,0x43,0x6b,0x71,0x6c,0xe9, - 0xb0,0xa8,0x5b,0xea,0x61,0xa1,0xe3,0xbf,0x71,0x84,0xbe,0x53,0x0f,0x15,0x8b,0xc5,0xc2,0xd1,0x17,0x5a, - 0xa4,0x38,0x44,0xb4,0xed,0xc3,0x23,0xee,0xdd,0x21,0xff,0xad,0xa1,0x13,0xf6,0xb2,0xd4,0xff,0x01,0xc8, - 0x1b,0xc4,0xa6,0x42,0x25,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x5a,0x59,0x77,0xe2,0xb8,0x12,0xfe,0x2b,0x6e, + 0x66,0xee,0x21,0xb9,0xdd,0x21,0x40,0x96,0xee,0x64,0x42,0xee,0x98,0x2d,0x40,0x80,0xb0,0x67,0x79,0x93, + 0x6d,0x61,0x2b,0xf1,0x16,0x4b,0x40,0xe8,0x9e,0xf9,0xef,0x57,0xb6,0xbc,0xc8,0xc6,0x06,0x92,0x3e,0x73, + 0xa6,0xf3,0x10,0x47,0xaa,0xed,0xab,0x72,0xa9,0x54,0x52,0x7c,0xf5,0xa9,0x7e,0x57,0x9b,0x3c,0x0e,0x1a, + 0x82,0x46,0x0c,0xfd,0xfa,0xca,0xff,0x0d,0x81,0x72,0x7d,0x65,0x40,0x02,0x04,0x59,0x03,0x0e,0x86,0xa4, + 0x92,0x9b,0x4e,0x9a,0x47,0xdf,0x72,0xd7,0x57,0x04,0x11,0x1d,0x5e,0x5f,0x1d,0xfb,0x4f,0x8f,0xc9,0x04, + 0x06,0xac,0xe4,0x88,0x06,0x0d,0x78,0x24,0x5b,0xba,0xe5,0xe4,0x04,0xd9,0x32,0x09,0x34,0xa9,0xdc,0x6f, + 0x45,0xef,0x27,0x17,0x63,0x5d,0x22,0xb8,0xb2,0x2d,0x87,0x70,0x7c,0x2b,0xa4,0x10,0xad,0xa2,0xc0,0x25, + 0x92,0xe1,0x91,0x37,0xf8,0x82,0x4c,0x44,0x10,0xd0,0x8f,0xb0,0x0c,0x74,0x58,0x29,0x51,0x15,0x3a,0x32, + 0x5f,0x04,0x07,0xea,0x95,0x1c,0x26,0x6b,0x1d,0x62,0x0d,0x42,0xaa,0x43,0x73,0xe0,0xbc,0x92,0x93,0x16, + 0xa6,0xa2,0xc3,0x82,0x8c,0x31,0x65,0xc4,0xb2,0x83,0x6c,0x22,0x60,0x47,0x0e,0x09,0xcf,0xee,0xfc,0x31, + 0x23,0xd0,0x3f,0x98,0x8f,0x92,0xa5,0xac,0xaf,0xaf,0x14,0xb4,0x14,0x90,0x52,0xc9,0x01,0xdb,0xce,0xb1, + 0xd1,0xf2,0x48,0xd6,0x2d,0xf0,0x12,0x91,0x5c,0x9c,0x00,0x99,0xd0,0xf1,0x19,0x64,0x1d,0x60,0x5c,0xc9, + 0xb9,0x5a,0xbc,0x39,0x64,0xa8,0xcc,0x9a,0x02,0x08,0xb8,0x44,0x06,0x50,0xe1,0xb1,0x6d,0xaa,0x7f,0x48, + 0x00,0xc3,0xf3,0xd3,0x2f,0x68,0x56,0xbd,0x1b,0xad,0x8a,0xb7,0x37,0xaa,0x25,0xd2,0x9f,0xfe,0x78,0xaa, + 0x35,0xa6,0x2a,0xfd,0xab,0xee,0x0e,0xc5,0x55,0x4d,0x7c,0xa4,0x8f,0xea,0x83,0xb8,0x34,0x5a,0xee,0xc4, + 0xcd,0xc3,0xa8,0x79,0xdf,0x1a,0x4d,0xa4,0xf2,0x53,0x51,0x29,0x37,0xd7,0x4f,0xc3,0x6a,0xf5,0xe9,0xe6, + 0x02,0x3d,0x8d,0xab,0x1d,0xe9,0xbe,0x69,0x3e,0xcd,0x3a,0xfa,0xe3,0xfd,0xe8,0x4c,0x96,0x75,0x7d,0xe0, + 0x0a,0x3c,0x54,0x3b,0xa3,0x46,0x73,0x0a,0xfb,0x0e,0xbe,0x57,0x1a,0x7d,0xf5,0x59,0x1c,0x76,0xe5,0xc7, + 0xaa,0x2c,0x0e,0x64,0xb1,0xa6,0x0c,0xfb,0xa7,0x62,0xbf,0xdc,0xab,0x9d,0xaa,0x23,0xfc,0xd8,0xb9,0x68, + 0xf4,0x15,0x71,0xf0,0x28,0xd6,0x81,0x58,0x87,0xb6,0x32,0xd5,0x7a,0xa5,0xd7,0xe6,0xf3,0xc2,0x51,0xed, + 0x8b,0xb1,0xdc,0x6b,0xa9,0xca,0xd7,0xd2,0xc9,0xec,0x64,0x4e,0xa6,0xf6,0x19,0x6c,0xa9,0xbd,0x66,0xc9, + 0x71,0x6e,0x1a,0x60,0x71,0x3e,0x6b,0xd5,0xcb,0xad,0x9e,0xd4,0x3a,0x7b,0xed,0xdc,0x75,0x5b,0x0e,0xf8, + 0x3c,0x7f,0xf9,0x2e,0xe1,0xc7,0x11,0xd6,0x7a,0xdf,0xec,0xee,0x44,0x9d,0xb6,0xd5,0xb1,0xba,0x5c,0xf4, + 0x7a,0xd6,0xe3,0xea,0x33,0xea,0x3d,0x4e,0x9c,0xf3,0xa1,0xd6,0x7f,0xec,0x39,0x7d,0xd4,0x5f,0xaf,0xda, + 0x5d,0x7d,0x3d,0xbb,0x55,0xe4,0xf5,0x7a,0x80,0x0d,0x79,0x84,0xd7,0xd3,0xb3,0xe2,0x8b,0xda,0x22,0xc3, + 0xe1,0xa2,0x2c,0x2a,0xfd,0x4e,0xd3,0xae,0xbf,0x88,0xb7,0xa7,0xed,0xe3,0x6e,0xfb,0xbe,0x27,0x95,0x45, + 0xdc,0xae,0xca,0xaf,0x45,0x34,0xba,0x81,0xc3,0x9b,0xc1,0xe4,0x69,0x3e,0x3b,0x1f,0x36,0x8a,0x9f,0xd5, + 0xfa,0x4d,0xb3,0xec,0x58,0xf8,0xa6,0xa1,0xf6,0x86,0x6f,0x6d,0x51,0x33,0x9f,0x44,0x34,0xe8,0x7f,0x3b, + 0x5d,0xd8,0xa3,0x79,0xf1,0xf8,0x4e,0xb7,0x71,0xb7,0x56,0xb5,0x4f,0xd6,0xaf,0x45,0x59,0x53,0x49,0x6d, + 0x3a,0x7d,0x72,0x46,0xab,0xf3,0x61,0xfd,0xee,0xa4,0x71,0xdf,0x1a,0xbf,0x36,0x2f,0x08,0x70,0x9e,0xc0, + 0xf8,0xb6,0xf3,0x00,0x3b,0x75,0x45,0x1a,0xea,0xb8,0x51,0xbc,0xad,0x9f,0x77,0xfa,0xc7,0xb7,0xd6,0x08, + 0xdf,0x68,0x6f,0x0f,0xb7,0x35,0xbd,0x76,0xdb,0xea,0xb4,0xe7,0x2f,0x13,0x6d,0xd5,0xbb,0xd7,0xc4,0x73, + 0xa5,0x3a,0xb6,0xf4,0x11,0x7a,0x7e,0xe9,0xdc,0x29,0xa5,0xa7,0xe9,0xf2,0x62,0x3d,0xbc,0xb8,0xb3,0x5f, + 0xa5,0x96,0x8d,0xc0,0x74,0x06,0x1a,0xd2,0x53,0xe3,0x2b,0x69,0xb7,0x9f,0xad,0xea,0xed,0xc3,0x1a,0x5b, + 0xb8,0x24,0x9f,0xce,0xbe,0x41,0xa9,0xdb,0x50,0xa4,0x65,0x59,0x92,0x7b,0xb8,0xf1,0x55,0x7d,0x5e,0x54, + 0x95,0xe5,0xc3,0x68,0xdc,0x39,0x6d,0x7e,0x3e,0x5e,0xbd,0xb6,0x1f,0x1e,0x9c,0xf6,0xcd,0xca,0x78,0x38, + 0xf9,0xbe,0x02,0x72,0xb7,0xae,0xc1,0xfe,0xdd,0x45,0xe9,0xee,0xb9,0x3b,0xbc,0x55,0x4a,0xa7,0xb3,0x5e, + 0xbd,0x66,0x3e,0xaa,0xb5,0xb7,0xd9,0x73,0xfb,0xa4,0x3f,0x81,0x25,0x63,0x6c,0x0d,0xea,0xa7,0x17,0x6f, + 0xa7,0x63,0x87,0x26,0xc7,0xc5,0xeb,0xc0,0x3c,0x85,0xd6,0xb2,0xd6,0xf3,0xb2,0xa7,0xa1,0x37,0x27,0x2f, + 0xe3,0xc5,0xd0,0xa8,0xd5,0x68,0x26,0x6a,0xa5,0xeb,0x1f,0x3f,0x84,0xdf,0xc9,0x41,0xde,0x5b,0xa2,0xf9, + 0x43,0xe1,0xef,0xbf,0x69,0xba,0x97,0x28,0xa5,0xec,0x52,0x96,0xd0,0xc1,0xc8,0x32,0x0b,0x78,0x8d,0x09, + 0x34,0xda,0x75,0xe1,0x53,0xa5,0x22,0x98,0x0b,0x5d,0x17,0xfe,0xe7,0x49,0x05,0xf3,0x54,0xf0,0xb3,0x90, + 0xbf,0x14,0xf2,0xf4,0xb1,0x21,0x43,0xa7,0xf3,0x4c,0x6f,0x39,0xb6,0x1e,0x56,0x68,0x8e,0x30,0x01,0x64, + 0x81,0xe3,0xeb,0x84,0x2e,0x1f,0x13,0xca,0x84,0xea,0x88,0xcf,0x23,0x53,0x41,0x32,0x20,0x6e,0xc5,0xb8, + 0x74,0x57,0xce,0x11,0x13,0x66,0x8a,0xc6,0xde,0xdf,0x05,0x60,0x17,0xa0,0x09,0x24,0x1d,0x2a,0x14,0x61, + 0xde,0xd7,0x04,0x95,0xbc,0x0b,0x42,0x41,0x38,0x9a,0x70,0xd7,0x37,0xd5,0x1d,0xb8,0xcf,0xab,0x90,0x65, + 0x88,0xb1,0x6d,0x21,0x93,0x14,0xa2,0xa8,0x08,0x94,0x31,0xcb,0x4e,0x7c,0x1e,0xd9,0xd4,0xd8,0x16,0x9d, + 0x14,0x86,0x27,0xe8,0x07,0xdb,0x05,0xf1,0x53,0xde,0xab,0x90,0xdc,0xa3,0xa6,0x67,0x89,0x0a,0x31,0x83, + 0x07,0x87,0xd9,0xfe,0x61,0xc6,0x68,0x58,0x0a,0x4c,0xf8,0x97,0xa6,0x69,0x02,0xdf,0xc8,0x01,0x87,0x94, + 0xff,0xcd,0x8a,0x1f,0xa2,0xf5,0x94,0xd6,0x3f,0x05,0x99,0x6a,0x2e,0x00,0x1b,0x8c,0x03,0xf3,0xfe,0x38, + 0xb4,0xe4,0x8f,0xdb,0x81,0x4f,0xf1,0x48,0x30,0x9d,0x9f,0x42,0x25,0x7c,0x18,0x08,0x90,0xdc,0x74,0x91, + 0x16,0x84,0x58,0x66,0x30,0xc9,0x46,0x34,0x30,0xfe,0xf8,0x87,0x90,0x67,0x53,0x47,0xd6,0x82,0xd0,0x7d, + 0x00,0xd2,0xd4,0x04,0x34,0xa6,0x4b,0x38,0x01,0x12,0xcd,0x61,0x21,0xcf,0x82,0x47,0xd3,0x32,0x27,0xfc, + 0x29,0xeb,0x48,0x7e,0xa1,0x05,0x3d,0x64,0x88,0xe8,0xa1,0x03,0x6c,0x5c,0xa0,0xd6,0x27,0xdc,0x42,0x61, + 0x46,0xae,0x85,0x9f,0x86,0x43,0x1c,0xa4,0xaa,0x74,0xdd,0x64,0x03,0x0a,0x39,0x42,0x48,0xc1,0xcc,0x3f, + 0x06,0x2a,0xca,0xc4,0x6c,0x58,0x1c,0x4f,0x08,0x2c,0x9a,0xfb,0xc7,0xa0,0xb1,0xda,0xb2,0xe5,0xf5,0x31, + 0x7a,0xf4,0xfa,0xbc,0x71,0x06,0x9c,0x8d,0xcc,0xe3,0x54,0xf1,0xa9,0x70,0xa5,0x9d,0x24,0xd3,0x81,0x2f, + 0x9a,0x27,0x9e,0x0a,0xba,0xbb,0x9b,0xf6,0x82,0x08,0x64,0x6d,0xd3,0xde,0xc5,0xa1,0x19,0x6c,0xe5,0xfc, + 0x46,0x06,0xe8,0xfa,0x98,0x40,0x1b,0x53,0x47,0x97,0x40,0x5f,0xb8,0x5d,0x90,0xb3,0x80,0x39,0x6a,0xd4, + 0x5d,0x8b,0x3a,0xcf,0xe0,0x35,0x18,0xfe,0x68,0xe2,0x32,0xd1,0x76,0x06,0x48,0x50,0x0f,0xd7,0x97,0x3b, + 0x38,0x42,0xa6,0x1b,0x9c,0x9c,0x30,0xb7,0x9c,0x24,0x7b,0x1c,0x27,0x4f,0xf3,0xe1,0x7a,0x1a,0x38,0xd7, + 0xdf,0x85,0x7b,0x0e,0x74,0xbc,0x1b,0x78,0xd3,0xe3,0xda,0x1f,0xb9,0xcf,0x9f,0x0e,0xdd,0x23,0x66,0x60, + 0x0f,0x74,0x63,0x1d,0xd1,0x06,0x2b,0xb1,0x9b,0xd0,0x17,0x6f,0xe7,0x82,0x17,0x1b,0xe0,0xa4,0x4d,0x9f, + 0x0d,0xc2,0xfc,0xf3,0xbc,0xf2,0x0c,0xf7,0x00,0xd1,0x0a,0x73,0xdd,0xb2,0x9c,0x83,0x80,0x77,0xe6,0x12, + 0x85,0x63,0xa1,0x7c,0x76,0x26,0xfc,0x57,0x28,0x15,0x8b,0x2e,0x86,0xff,0xd0,0xe6,0x90,0x2a,0x48,0xb1, + 0xce,0xf7,0x7e,0xf1,0x88,0x9a,0x2a,0x75,0xd8,0x40,0x66,0x25,0x57,0xa4,0x4f,0xf0,0x56,0xc9,0x51,0x95, + 0xb9,0xb8,0x74,0x18,0xd3,0x82,0xb9,0x30,0x24,0xc8,0x05,0x67,0xc6,0x30,0x6e,0xd4,0xdf,0x14,0x2f,0x3f, + 0x45,0xaf,0x63,0x79,0xe4,0x45,0xf8,0xc0,0x25,0x7f,0x11,0xe8,0x16,0x02,0xdf,0x0e,0xe9,0x43,0xc0,0xfb, + 0x46,0xc1,0x65,0x2c,0x2c,0xff,0xdd,0x10,0x44,0x18,0x12,0xfe,0xa7,0xef,0x45,0xf1,0xd5,0xcb,0xd5,0xcd, + 0x2b,0x1a,0x0b,0x43,0xf8,0x13,0x2f,0x24,0x03,0x91,0x82,0xed,0xc0,0xa5,0x77,0x98,0xa0,0x8d,0xbc,0xbe, + 0x9e,0xf8,0x6c,0x2e,0x17,0x82,0xba,0x42,0x8f,0x31,0xfc,0x7a,0x8f,0x6a,0x2d,0x32,0xe0,0x64,0x73,0xd5, + 0x87,0x2d,0x0d,0x70,0x4c,0x6f,0x1f,0xf4,0xdf,0xc4,0xe6,0xb6,0x1b,0xb6,0x0d,0x7f,0xfd,0x25,0xa4,0x50, + 0x59,0xd6,0xbb,0x35,0xee,0x24,0xa5,0xd0,0x53,0xe3,0x6d,0x7a,0x04,0x72,0x4c,0x48,0x92,0xdd,0x03,0x33, + 0x18,0x63,0x2d,0x84,0x23,0x1d,0x9a,0x2a,0xd1,0xc2,0x40,0x7b,0x4e,0x44,0x0e,0x33,0x71,0x96,0x28,0xbe, + 0x08,0x9f,0x2b,0xe9,0x3a,0x23,0x65,0x6c,0x62,0xe3,0x5d,0x7b,0x05,0x24,0xac,0x10,0x3e,0x57,0x20,0x3e, + 0xa1,0x4c,0x94,0xca,0xaa,0x09,0xcd,0x85,0x4b,0x56,0x69,0xf2,0x1c,0xd9,0x6d,0x25,0x3d,0x10,0x94,0xea, + 0x56,0x15,0x9e,0x56,0x8c,0x88,0x5b,0xcb,0xcb,0xa5,0xe7,0x54,0x96,0x64,0x5a,0x78,0x9b,0xe8,0x0d,0x2a, + 0x13,0xfa,0x47,0xbc,0xd4,0x7c,0xd4,0xb5,0xd2,0xbb,0x5d,0x2b,0x7d,0xd8,0xb5,0xd2,0x0e,0xd7,0xc6,0x0b, + 0xd3,0x41,0xc9,0x1a,0xfa,0x51,0xc7,0xca,0xef,0x76,0xac,0xfc,0x61,0xc7,0xca,0xbb,0x1d,0xc3,0xe1,0x82, + 0xf0,0xfd,0x62,0x06,0x02,0x5d,0xee,0xfb,0xdc,0xae,0x63,0xfb,0x2b,0x67,0x95,0x28,0x74,0x2a,0xa6,0x6e, + 0xa3,0x5c,0x85,0x61,0xa3,0x6c,0x29,0x5b,0xd1,0x1e,0x45,0x37,0xd0,0x20,0xd1,0xa7,0x46,0x4c,0x7a,0x72, + 0xf8,0xf7,0x8a,0xef,0x26,0x96,0x9d,0x45,0x18,0xd2,0x9d,0x3a,0x50,0x6b,0x5a,0xee,0x59,0x25,0x3d,0xe6, + 0x7d,0xab,0x4e,0x69,0x7c,0x21,0x3b,0x8e,0x6a,0xef,0xd6,0x2a,0x6c,0x58,0x6e,0xb1,0x4c,0xd6,0x61,0x4e, + 0xfa,0xd8,0x2d,0xf5,0xbb,0xb6,0x86,0x58,0xef,0xba,0x6d,0x73,0xa8,0xf1,0x47,0xb2,0x34,0x60,0x7c,0xc7, + 0x9b,0x00,0xc5,0xbf,0x03,0x59,0x83,0xf2,0x8b,0x64,0xbd,0xf9,0x6d,0x52,0x74,0x26,0xe4,0x16,0x1d,0xa7, + 0x8a,0x67,0xd8,0xa3,0x8b,0xe2,0xb9,0x37,0x71,0x71,0xe4,0x78,0x9e,0xf3,0xd9,0xa8,0xed,0x16,0x6e,0x45, + 0x0a,0xbc,0x0c,0x14,0xb6,0x78,0xe8,0x6f,0x6a,0xe9,0xde,0x05,0xc4,0xdd,0x9e,0x85,0x9c,0x9b,0xc0,0xb8, + 0xb3,0xec,0xfb,0xbd,0xe2,0x84,0x93,0x5e,0xf9,0x98,0x98,0x79,0x8c,0x94,0x54,0x71,0x3a,0x9f,0x5d,0x32, + 0x08,0x3d,0x37,0xfb,0x51,0x70,0xe5,0xd3,0x43,0xe0,0x51,0x2e,0x83,0x0b,0x01,0xda,0x2f,0x6c,0x89,0x8f, + 0x87,0xc5,0xa6,0x0e,0xad,0x2c,0x27,0x15,0x4f,0x40,0xcb,0xc6,0x14,0x4a,0x7b,0xb8,0xa2,0x51,0x1a,0xb6, + 0x88,0xba,0x0b,0xdf,0xb6,0x0c,0x50,0x34,0xd9,0x4e,0xd7,0xcf,0x28,0x7b,0xfa,0x9e,0x9d,0x1b,0x9e,0x9a, + 0x94,0x60,0xb8,0xf3,0xef,0xcf,0x08,0x57,0x6a,0x23,0x15,0xf8,0x12,0xbb,0x90,0x2c,0xdb,0xe5,0xc4,0xf1, + 0xd7,0x82,0x52,0x31,0x20,0x1b,0x28,0x8a,0x43,0x17,0xce,0x3e,0x59,0x82,0x32,0xe2,0x84,0x76,0x46,0xc9, + 0xed,0x24,0x93,0x81,0x8d,0x27,0xf0,0x42,0xa2,0x0d,0xa3,0x01,0xf0,0x4b,0x6a,0x1a,0x87,0xd4,0xbd,0x92, + 0x39,0xd2,0x95,0x9e,0xd2,0x1c,0xfd,0x27,0x61,0xab,0x80,0xc0,0x15,0x58,0xa7,0x61,0xf6,0x49,0xfb,0x00, + 0x0e,0xb4,0xa4,0xa2,0x0d,0x89,0x1f,0x81,0xca,0x36,0x17,0x0e,0xb0,0x66,0x61,0xe2,0xf6,0x44,0x69,0x88, + 0x03,0xda,0x2e,0xc8,0x97,0xb6,0x0e,0x64,0xa8,0x59,0xba,0xe2,0x6e,0xbe,0x19,0x4a,0x06,0x11,0x4f,0xfe, + 0x90,0xb9,0x19,0xda,0x4e,0xf5,0x33,0xa2,0xee,0x5c,0x70,0x5c,0xb6,0xb3,0xeb,0x11,0x1c,0x36,0x12,0xb1, + 0xe9,0x23,0xdb,0x41,0x06,0x70,0x68,0xec,0x18,0x7c,0xb6,0x71,0xc6,0x0c,0x60,0xb0,0xf4,0xce,0x42,0xc1, + 0xad,0x01,0x1b,0xfb,0x37,0xc7,0xde,0xc6,0x5a,0xf5,0x54,0x8d,0xbd,0x79,0x1a,0x99,0xcb,0x24,0x25,0x7f, + 0x18,0x35,0x1b,0xef,0xdc,0xdc,0xc3,0x1b,0xa0,0x8c,0x8d,0x7d,0x61,0xbb,0xd7,0x8b,0x4d,0xe4,0x18,0xf4, + 0xcc,0x06,0xfd,0xe4,0xf6,0x64,0x32,0xf6,0x78,0xff,0x0a,0x69,0xee,0x4b,0x24,0x9b,0x0f,0xfe,0x55,0xce, + 0x91,0xee,0x6b,0x0c,0xb8,0x9b,0xee,0xcc,0xaf,0x1b,0xdc,0x28,0x88,0x2c,0x2c,0x03,0xc7,0x52,0xdd,0xc2, + 0xe5,0x5d,0xf7,0xcf,0xc3,0x6b,0x99,0x04,0xd1,0x6b,0x43,0x33,0x5e,0xce,0x96,0x6e,0x6a,0xcc,0xa2,0xbc, + 0x77,0xc4,0x4d,0x62,0xff,0x72,0x27,0x6e,0x6e,0xd5,0xeb,0x80,0x24,0xaf,0x19,0x29,0xe2,0x2e,0x20,0xfb, + 0x54,0x27,0x57,0x38,0x5a,0xb1,0xbe,0xb8,0xa7,0x31,0x66,0x82,0xbb,0x49,0xe7,0x4c,0xf8,0xf7,0xe9,0xbb, + 0x4c,0xb0,0xe0,0x24,0x4c,0x24,0xaf,0xd5,0xb3,0x76,0x36,0xdd,0x92,0xfd,0x1e,0x2e,0x6d,0x0f,0x4e,0x01, + 0xe5,0xf3,0xef,0x85,0x2c,0xd4,0x1d,0xc2,0x0b,0xa7,0x32,0xee,0x88,0x85,0xf8,0xbd,0x70,0x70,0xfb,0x1b, + 0x65,0x18,0x86,0xc0,0x91,0xb5,0x6e,0xa8,0x99,0x5f,0x31,0x1e,0x89,0xe6,0x4a,0x48,0xcd,0x86,0x3f,0xf6, + 0x78,0x53,0xaf,0x89,0x37,0xf2,0xd3,0x46,0x26,0x4e,0x26,0x28,0xdf,0xb2,0x21,0xb3,0xdb,0xa8,0x8b,0x83, + 0xa4,0xb5,0x60,0x7e,0xf7,0xa9,0xd3,0x6b,0xd6,0x02,0x2d,0x9b,0xb7,0x63,0x11,0x8a,0x02,0xf5,0xd3,0x35, + 0xb4,0x69,0x7e,0x3c,0x11,0xd3,0xed,0x53,0xc2,0x7b,0x00,0xb8,0x7a,0x76,0x21,0xf0,0x6c,0x25,0x20,0x88, + 0x03,0x56,0x73,0x52,0x40,0x04,0xa4,0xbd,0x61,0x84,0xba,0xb6,0x02,0x01,0x76,0x60,0x31,0x01,0x65,0x70, + 0xdf,0xab,0x3b,0x74,0xa3,0x70,0xc6,0xf5,0xb4,0x98,0xf0,0xe4,0xbd,0x21,0xc5,0x74,0x6e,0x85,0x65,0xaf, + 0x0c,0xcf,0x6e,0x26,0xa8,0x5a,0x77,0x2b,0xa8,0x5a,0xf7,0x03,0xa0,0xa8,0xce,0x9d,0xa0,0x5c,0xbb,0x31, + 0x50,0x2b,0x43,0x64,0xdd,0xeb,0x06,0x9e,0x90,0xb2,0x27,0x94,0x48,0x53,0x26,0x0a,0xce,0x58,0x02,0x44, + 0xd3,0x81,0xaf,0x0b,0x68,0xca,0xeb,0x14,0x18,0x21,0x6d,0x6f,0x20,0x91,0xb6,0x2d,0x50,0x38,0x93,0x9b, + 0xab,0xdd,0x00,0xf6,0xb6,0xd5,0xee,0x92,0xc5,0x41,0xfb,0x16,0x6e,0xe0,0x8d,0x28,0xfb,0xa1,0xe5,0x34, + 0x65,0x61,0xe5,0x8d,0x09,0xd9,0x07,0x9c,0x0d,0x6e,0x6d,0xcb,0x11,0xe7,0x97,0xea,0x4b,0xb2,0x9a,0xbe, + 0xcd,0x7f,0x9a,0xeb,0xb4,0x60,0xcf,0xd1,0x5b,0xf6,0x3f,0x48,0xfc,0xaf,0x12,0xb8,0xde,0xdc,0x5e,0x7b, + 0x57,0x5a,0x2c,0x10,0x92,0xc3,0x7f,0xee,0xe0,0x3f,0x93,0x5f,0x3b,0x04,0xdd,0xdc,0x8c,0x91,0xbd,0x8f, + 0x1e,0x92,0x22,0xe1,0xc7,0x0e,0x1b,0x97,0x63,0xfe,0x67,0x46,0x3a,0x30,0xd5,0x05,0x50,0x69,0x68,0x9e, + 0xc1,0x12,0xb0,0xc9,0xdc,0x35,0xed,0xc5,0xb1,0xa5,0xc3,0x82,0x6e,0xa9,0x07,0xb9,0x36,0xfb,0x96,0x09, + 0x7d,0xa7,0x11,0x2a,0x14,0x0a,0xb9,0xc3,0x2f,0xb4,0x49,0x71,0x88,0x68,0xdb,0x07,0x87,0xdc,0x57,0x49, + 0xec,0x7b,0xa4,0x63,0xef,0x33,0xac,0xff,0x03,0x5c,0xda,0x59,0xb1,0x9c,0x25,0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index 2b40109..f624811 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2208 +4,2196 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb6,0x2e,0xfa,0x57, - 0x24,0x5c,0x1d,0x1a,0x68,0x96,0x68,0xc9,0x4e,0xfa,0x74,0x40,0x23,0xbc,0xb6,0x6c,0x27,0x8e,0xc7,0x78, - 0x4a,0xd2,0xb2,0x9a,0x0b,0x22,0x8b,0x12,0x6c,0x12,0x60,0x00,0x50,0x43,0x44,0xde,0xdf,0xfe,0xf6,0xb7, - 0x6b,0x04,0x08,0x39,0xc9,0x59,0x67,0xbd,0xe5,0x65,0x11,0xa8,0x2a,0xd4,0xb8,0x6b,0xd7,0x9e,0x6b,0x77, - 0xb6,0xca,0x27,0x75,0x56,0xe4,0x61,0x2d,0x64,0x74,0x13,0x14,0xa7,0x9f,0xe5,0xa4,0x0e,0x92,0xa4,0xbe, - 0x5e,0xca,0x62,0xb6,0x23,0xaf,0x96,0x45,0x59,0x57,0xbd,0xde,0x56,0xce,0xa2,0x98,0xae,0xe6,0x72,0xa4, - 0x7e,0x06,0xba,0x5c,0x22,0xc3,0x28,0x0e,0x4c,0x9d,0xae,0xf0,0x54,0xce,0xb2,0x5c,0xf6,0x7a,0xea,0x77, - 0x90,0x2e,0xa6,0x23,0xf5,0x18,0x1e,0x9f,0x50,0xbb,0xf1,0x6d,0xed,0x8e,0xf4,0xef,0x20,0xbd,0xca,0x0a, - 0x55,0x7b,0xed,0x9e,0x37,0x61,0x7d,0x9e,0x55,0xc2,0x0e,0x21,0xba,0x29,0x65,0xbd,0x2a,0xf3,0x1d,0x37, - 0xa8,0xe8,0xc6,0x3c,0xef,0xc8,0xb0,0x8c,0x6e,0xb2,0x59,0x98,0x1f,0x97,0x27,0x91,0x2e,0x88,0x67,0xd3, - 0xf7,0xe1,0x45,0x5a,0xee,0x64,0x09,0x92,0x92,0x1b,0x9d,0x16,0xdf,0x6c,0x44,0x36,0x8d,0x4b,0x31,0x2f, - 0xd2,0xa9,0x9c,0xc6,0xbb,0x87,0x9b,0xa1,0xfe,0xb4,0xc6,0xa7,0x93,0x74,0x3e,0x0f,0x33,0x53,0x83,0xc8, - 0x84,0x7b,0x96,0x11,0xbd,0xa8,0xcf,0x92,0xdd,0x03,0x97,0xb1,0x41,0x33,0x79,0x72,0x63,0x2b,0x92,0x83, - 0x45,0x42,0x93,0x3f,0x98,0x24,0x39,0xfd,0x5d,0x26,0x41,0x20,0x64,0x78,0x40,0x83,0x3b,0xf6,0xd7,0x46, - 0xe4,0xd1,0x4d,0x6d,0xa7,0x39,0x0f,0x0f,0xa3,0x8d,0x68,0xe7,0x07,0xab,0x4a,0xee,0x54,0x75,0x99,0xd1, - 0x4c,0x0e,0xed,0xb8,0x4b,0xcc,0x02,0x1a,0x95,0x49,0x2e,0x2f,0x77,0x52,0x7a,0x15,0x79,0x52,0x84,0xe9, - 0x60,0x59,0x16,0x75,0x81,0x09,0x1f,0x94,0xf2,0xf7,0x95,0xac,0x00,0x02,0xa6,0x57,0xe8,0x6f,0x2d,0xf3, - 0x69,0x98,0x0b,0xaf,0xa0,0x1a,0x95,0xcd,0xa1,0xb7,0x7c,0xa3,0xa7,0x2d,0xbc,0x17,0x89,0x82,0x7e,0xee, - 0x47,0x22,0xa5,0x9f,0x6f,0x23,0x81,0x6e,0xfe,0x33,0x12,0x93,0xa4,0x0c,0xab,0x68,0x38,0x19,0x3c,0xe4, - 0x75,0x4b,0xc5,0x64,0x30,0x29,0x65,0x5a,0xcb,0xc4,0x5f,0x26,0xdd,0x6c,0x49,0xb3,0xb9,0x90,0xe5,0x99, - 0x0c,0x2b,0x51,0x47,0x34,0xc6,0xc9,0xe0,0x28,0xcd,0x27,0x72,0x8e,0x06,0xa8,0x6a,0xf3,0xfa,0xbe,0xf8, - 0x22,0x73,0xa4,0x7d,0x83,0xb4,0xac,0x72,0x85,0x0e,0x90,0x40,0xcb,0xd2,0x55,0xfb,0x9b,0xb2,0x58,0x64, - 0x95,0x44,0x36,0xa5,0xa2,0xf2,0x6a,0x49,0x5d,0x99,0xe2,0x3b,0xea,0xb0,0x9b,0xdf,0x89,0x7b,0x1e,0x10, - 0xa0,0xa6,0xab,0x79,0x9d,0x4c,0xfe,0xd6,0x84,0xab,0x16,0x83,0x63,0x05,0xd8,0x3b,0x0f,0xcb,0x32,0xbd, - 0x3e,0x21,0xf8,0x4e,0x56,0x0a,0x68,0xa8,0x79,0xfb,0x41,0xe6,0x75,0x31,0x5f,0xcd,0xe7,0xbb,0xb4,0x0d, - 0x3a,0x76,0x5c,0xed,0xbe,0x28,0x3a,0x9a,0x78,0xaa,0x33,0x6f,0x6b,0x25,0x55,0x5b,0x1c,0x3b,0xc0,0xb6, - 0x71,0x51,0x64,0xd3,0x9d,0x03,0x3c,0x47,0x94,0x6e,0x5a,0xdc,0xb5,0x2d,0xf6,0x7a,0x61,0x9d,0x1c,0xd7, - 0x27,0x91,0xc0,0xa0,0xa2,0x59,0x51,0x86,0x0a,0x7c,0x09,0xa0,0x93,0x7a,0x30,0x97,0xf9,0x59,0x7d,0x3e, - 0xcc,0x1f,0x64,0xc3,0xbc,0xdf,0x8f,0xa4,0x6a,0x14,0xd5,0x8b,0xfa,0x38,0x3f,0x11,0x39,0xad,0xe1,0x50, - 0xce,0x69,0x92,0xcc,0x97,0xc5,0x4e,0x46,0x5b,0x27,0x7a,0xcd,0x0d,0x79,0x00,0x78,0x9e,0x56,0xaf,0x2f, - 0x73,0x5a,0x9f,0xa5,0x2c,0xeb,0x6b,0xdd,0x79,0x51,0x44,0xbd,0x5e,0xb3,0xd2,0xe2,0x44,0x14,0x54,0x29, - 0x03,0x5d,0xa5,0xa0,0x8d,0xf6,0x4d,0x48,0x50,0xb0,0x4a,0xb6,0x2a,0xad,0x8b,0x77,0xb4,0x36,0xf9,0xd9, - 0xd0,0x2d,0xec,0x4d,0x56,0xf1,0x52,0xd0,0x96,0xd6,0x4f,0x8f,0x56,0xb3,0x99,0x2c,0xe3,0x6d,0x68,0x69, - 0xae,0x9d,0x2a,0xd6,0x9a,0x5b,0xaa,0x43,0x7f,0x3e,0xa1,0xc7,0xa7,0x45,0xb9,0x78,0x9c,0xd6,0x69,0x57, - 0x5d,0xab,0x5c,0xe1,0xbb,0xa9,0x9b,0x5c,0x53,0xbc,0xd7,0xab,0x69,0x52,0xaa,0x1a,0x10,0xec,0x25,0x6f, - 0x9a,0x1d,0xfc,0x98,0xc9,0xcb,0xbf,0x58,0xb1,0xf7,0x55,0xaf,0xe7,0xbd,0xd0,0x36,0x41,0x2d,0xa3,0xed, - 0x24,0xaa,0x2f,0xa6,0xb5,0xae,0x07,0xa7,0xfa,0x2b,0xf3,0xe4,0x77,0xcc,0xfb,0x0c,0x7d,0x53,0x53,0xdb, - 0xd5,0xa5,0x8a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x56,0x8b,0xd3,0xee,0x69,0xce,0x39,0xa7,0x55,0x5c,0xad, - 0x65,0x4c,0x08,0xb5,0xfa,0x60,0x46,0xd8,0xf1,0xf1,0x8e,0x02,0x60,0x5a,0x14,0xfe,0x8a,0xe6,0x4d,0x7e, - 0x6d,0x25,0x91,0xbf,0xbd,0x84,0x4f,0xb3,0xf9,0x57,0xbf,0x42,0x7e,0xc7,0xc2,0xcf,0x8b,0xd3,0xaf,0x7d, - 0x85,0xfc,0x8e,0xb6,0xf4,0x07,0x71,0xa1,0xa6,0x50,0xa6,0x8b,0xae,0x61,0x01,0x23,0xf4,0x7a,0xb4,0xcb, - 0x07,0xcb,0x6c,0x29,0xf9,0xcb,0x0f,0x6f,0x5f,0xbc,0x93,0x69,0x39,0x39,0x7f,0x93,0x96,0xe9,0xa2,0xfa, - 0x8b,0xb0,0xd0,0xfa,0xaa,0x05,0x6b,0xad,0x5c,0xb5,0xac,0x69,0x3e,0x4d,0xcb,0xe9,0xa3,0xb2,0xb8,0xac, - 0x64,0xf9,0x24,0xbf,0x88,0xb7,0xce,0xd7,0xd0,0x6b,0xc9,0x2e,0x5b,0x9e,0x5e,0x64,0x67,0x69,0x5d,0x94, - 0xeb,0x75,0xf0,0x56,0xa6,0x93,0xfa,0x55,0x5a,0x67,0x17,0x92,0xba,0x92,0xd8,0x2c,0xec,0xcd,0xe9,0x6a, - 0x82,0xb1,0x75,0x75,0xf6,0x32,0xcb,0xa7,0xc5,0x65,0x77,0xde,0xb4,0x98,0xac,0x16,0x32,0xa7,0x65,0x26, - 0x54,0xf2,0x24,0x9d,0x9c,0xc7,0xa9,0xe0,0x83,0xc2,0x76,0x6f,0xa7,0x0e,0x1b,0xa7,0xbd,0x14,0x65,0x07, - 0x41,0x83,0xe3,0xbd,0x03,0xb7,0xca,0x11,0x9f,0xfb,0x35,0x53,0x07,0xa0,0x48,0xf8,0x55,0x6e,0x1c,0xc6, - 0x23,0x4a,0xa0,0x64,0xb4,0x97,0x96,0x67,0xdc,0x93,0xca,0xa0,0xbf,0x92,0xd0,0x5f,0x49,0xe8,0x2f,0x0d, - 0x6d,0x96,0xaa,0xc4,0x9c,0xa5,0xf9,0x46,0xa8,0x23,0x33,0x6e,0x1f,0x20,0xba,0x40,0x4a,0x9d,0xb5,0x59, - 0xdc,0x6f,0x50,0x17,0x49,0x4e,0x1d,0xdd,0xa6,0xa5,0xe4,0xa8,0x0a,0xf1,0x71,0x2c,0x37,0x74,0x64,0x6d, - 0x04,0xed,0xb6,0x4e,0x18,0xaa,0xe9,0x54,0x5f,0xce,0xd3,0x89,0x0c,0xef,0xfe,0xe7,0x53,0xf5,0x8f,0xbb, - 0x22,0x08,0x22,0x97,0x44,0x29,0x7b,0x9c,0xb4,0xd9,0x34,0xcf,0xb5,0xd6,0xa9,0xe6,0x50,0x67,0xb3,0x50, - 0x9b,0xd2,0xa2,0xa9,0xb7,0x53,0x05,0x32,0x83,0xb1,0x45,0xd8,0x9e,0xab,0x08,0x73,0x48,0x13,0x96,0xdb, - 0xb9,0xa3,0x79,0xe3,0xa9,0xf6,0xa7,0xce,0x92,0x58,0x83,0x74,0xb9,0x9c,0x5f,0xf3,0x68,0xb7,0xbb,0x69, - 0x97,0xda,0x1b,0xf4,0xee,0x6e,0x3d,0x98,0x14,0x04,0xe0,0x25,0x41,0x59,0x51,0x76,0xce,0x5f,0xa3,0xc4, - 0xc0,0x60,0x70,0xe0,0xbc,0xae,0x74,0xec,0xdb,0xae,0x39,0x68,0x1d,0xd8,0x38,0x29,0x91,0x4a,0xc0,0xbf, - 0xd5,0x62,0x28,0xe9,0x78,0x1d,0x80,0xce,0x78,0x4a,0xf4,0x60,0xfd,0xe2,0x49,0xf7,0xb2,0x0e,0xaa,0x79, - 0x36,0x21,0x1a,0x99,0x20,0x40,0x3d,0x86,0x07,0xe2,0x20,0xa2,0x1a,0x31,0xa8,0xb1,0xe9,0x4f,0xc4,0x64, - 0xaa,0xdc,0xfc,0x2d,0x62,0x04,0x64,0xb2,0xa1,0x63,0x2a,0x22,0x36,0xf9,0x3d,0xcb,0x6b,0x59,0x4e,0xe4, - 0x92,0x46,0x4b,0xe7,0xa2,0xa6,0x00,0x63,0x26,0x11,0x45,0x29,0xab,0x25,0x4d,0x86,0x54,0xaf,0x1b,0x4b, - 0xe3,0xfd,0x53,0xd1,0x78,0xf7,0x14,0x8d,0x77,0xf8,0xdf,0x8a,0xc8,0x3b,0xfc,0x17,0x81,0xfa,0x36,0x35, - 0xd9,0x98,0xad,0xed,0x53,0x81,0x69,0x8b,0x42,0x53,0x7b,0x37,0xab,0x72,0x1e,0x3b,0x18,0x38,0x38,0xd9, - 0x08,0xf7,0x76,0x78,0x12,0x45,0xc2,0x2b,0x9c,0x89,0xc6,0x80,0xc4,0xcd,0x42,0xd6,0xe7,0xc5,0x34,0x0e, - 0xce,0x64,0x1d,0x6c,0x40,0x37,0x0e,0x54,0x0a,0x91,0x28,0xea,0x81,0x48,0x81,0x17,0xc5,0xa5,0x2c,0x8f, - 0xd2,0x8a,0xf8,0x06,0x35,0x85,0xc9,0x71,0x25,0xd4,0xf1,0x41,0x84,0x4a,0x62,0x48,0x43,0x1a,0x79,0x31, - 0xbf,0x90,0xd4,0xe5,0x21,0x00,0x7a,0x6b,0xa6,0xcc,0xe0,0x06,0x1a,0x0d,0x85,0xfe,0x20,0xe5,0x60,0x95, - 0x57,0xe7,0xd9,0xac,0x26,0xc4,0x3d,0x5b,0xcd,0x67,0xd9,0x7c,0x2e,0xa7,0x02,0x1b,0x11,0xd8,0x46,0x4e, - 0x23,0xec,0xd8,0x8e,0x1a,0xd5,0x64,0xdf,0x52,0xe5,0x72,0x55,0x9d,0xdf,0x5e,0xdf,0x50,0x9a,0xad,0x14, - 0xd1,0xc6,0x1b,0xd4,0xe7,0x92,0xe1,0x87,0x3b,0x11,0x09,0xfb,0xe4,0xe3,0xa2,0xc2,0x36,0x74,0x1c,0x4c, - 0xe5,0x5c,0xd6,0x32,0x10,0x3c,0x75,0x22,0x38,0x27,0x20,0xa5,0x9f,0x62,0x89,0xe6,0xab,0xe0,0x44,0x34, - 0x00,0xde,0x2d,0x31,0x91,0x84,0x89,0x87,0xb0,0x1c,0x26,0xe3,0xd1,0xe9,0x29,0x0a,0xcd,0x7a,0xe5,0xeb, - 0x35,0x61,0x4f,0xb3,0x4a,0xb5,0xc0,0x5a,0x13,0xf2,0xa2,0x3d,0x1d,0x35,0x3a,0xb3,0x2c,0x2a,0x74,0x62, - 0xb9,0xe2,0xbf,0x69,0x3d,0x39,0xff,0xeb,0x3d,0x00,0xd2,0xfc,0x5a,0x1f,0xca,0xae,0x3e,0x88,0x29,0xc8, - 0xb5,0x5c,0x77,0xc5,0x6d,0xf3,0xf2,0x6f,0xec,0x2e,0xa0,0xa2,0xdd,0x62,0xe0,0xd1,0x29,0xea,0xec,0x6e, - 0xa6,0x1c,0x07,0x47,0x05,0xad,0x79,0x5e,0xef,0xbf,0xa7,0xce,0x07,0x27,0x11,0xa0,0xbf,0x9d,0x98,0x48, - 0x45,0xd8,0x66,0xfe,0x26,0xe3,0x3d,0x76,0xd3,0x2c,0x19,0x07,0x40,0x8c,0xd9,0x24,0x45,0x27,0xee,0x5e, - 0xed,0x5f,0x5e,0x5e,0xee,0xd3,0x34,0x2e,0xf6,0x69,0x54,0x32,0x9f,0x14,0xc4,0x73,0xd2,0x3e,0x98,0x24, - 0x37,0xe9,0x34,0x5d,0x12,0xa4,0xc5,0x61,0xd7,0x91,0xfa,0xeb,0xcb,0x17,0x3f,0xd6,0xf5,0xf2,0xad,0x9a, - 0xa9,0x11,0xf6,0xf7,0xbf,0x88,0x15,0xef,0x28,0x49,0xb3,0x3e,0x91,0x15,0x51,0x0f,0xa1,0x2a,0x44,0x4c, - 0x20,0x4d,0x57,0x99,0xe6,0x15,0x5a,0xd5,0x15,0xc4,0xc7,0x9d,0x27,0x04,0xce,0xb6,0x66,0xef,0xb1,0xe8, - 0x8e,0x5a,0x66,0xa4,0x89,0x04,0x8f,0xbe,0xb4,0x69,0xad,0x57,0x45,0x30,0xd9,0x57,0x10,0x66,0xae,0x28, - 0xd1,0x5b,0xf4,0x32,0xaa,0xe3,0x56,0x65,0x9a,0xc0,0x1d,0x19,0x9a,0x96,0xf3,0x5b,0x94,0x0f,0xf2,0xc3, - 0x12,0x3d,0xfd,0xd3,0x89,0x1d,0x4e,0xce,0xd3,0xb2,0x92,0x75,0xb2,0xaa,0x67,0xfb,0xff,0x0a,0x00,0x36, - 0x86,0xcf,0xa0,0x6d,0xc6,0x95,0x2b,0xe2,0xb5,0xbb,0xce,0xcf,0x55,0x91,0x6f,0x55,0xf1,0xd3,0xbb,0xd7, - 0xaf,0x06,0x0a,0x41,0x66,0xb3,0x6b,0x70,0x5a,0x71,0xbd,0x39,0xf1,0x67,0x58,0xa3,0xe3,0x63,0x7f,0x37, - 0x80,0x63,0xdb,0xc2,0xaa,0x51,0x5d,0x5e,0xdf,0xd4,0x09,0xd7,0xb8,0x44,0x2b,0x38,0xc0,0x26,0xd8,0x4b, - 0xf8,0x64,0x63,0xb6,0x08,0x6a,0xcf,0x16,0xb2,0x58,0xd5,0xf1,0x81,0xb8,0xaa,0xca,0xd9,0x51,0x51,0x7c, - 0xc9,0xe4,0xab,0x74,0x21,0xe3,0xe0,0xd7,0x77,0x6f,0x9f,0xee,0xbf,0x7f,0xfd,0xfc,0xc9,0xab,0x80,0xf3, - 0x7e,0x24,0xac,0x20,0x4b,0x9d,0xb7,0xef,0xe7,0x2e,0xd2,0x2b,0xbd,0xb4,0x2f,0x18,0x09,0xc5,0xfb,0x87, - 0xe2,0x22,0x9d,0x67,0xb4,0xaf,0x24,0x51,0x92,0xf5,0xaa,0x8b,0x4e,0xdd,0xa9,0xbf,0x4f,0xee,0x1d,0x1c, - 0xd0,0x89,0xfb,0xe0,0xfe,0xc1,0xc1,0x66,0x33,0x9c,0x0c,0xce,0xb9,0x05,0x82,0xf3,0x49,0xb1,0x58,0x10, - 0x75,0x7c,0xf3,0x70,0x02,0xec,0x18,0x6f,0x4d,0x9d,0xd8,0xa9,0x89,0x94,0xba,0x4b,0x44,0x4c,0x46,0xcf, - 0xff,0xb8,0xfb,0x8f,0x60,0xf3,0xe7,0x08,0xad,0x89,0x44,0x6c,0x6b,0x40,0x21,0x37,0x7f,0x1b,0x07,0x35, - 0x3e,0x37,0xd8,0xa5,0x8a,0x1a,0xf8,0xe3,0xcf,0x44,0x05,0xd8,0xe4,0x25,0x6f,0xf1,0xdb,0xe9,0x2b,0xdb, - 0xa7,0xda,0xd5,0xa5,0xb0,0x1c,0x51,0xd4,0x44,0x26,0x94,0x04,0x76,0x1f,0x96,0x4b,0x73,0xa6,0x11,0xa3, - 0x21,0x9b,0x29,0x8c,0x61,0x24,0x51,0x91,0x42,0xcd,0x09,0x4b,0xac,0xa8,0x9f,0x7f,0x46,0x3a,0xb8,0xce, - 0x09,0xec,0xf6,0xef,0xd4,0x91,0x7f,0x68,0xce,0xfc,0xfb,0xfa,0xcc,0xff,0x46,0x71,0xde,0x87,0x07,0x60, - 0xbd,0xbf,0x46,0xcd,0xab,0xdf,0xc1,0x69,0x5d,0xa4,0x8d,0x97,0xc1,0x29,0x3d,0x87,0x2a,0x81,0xf6,0x30, - 0x55,0xf5,0x6d,0xf7,0x74,0x38,0x52,0x8b,0x88,0x11,0x7d,0x4e,0x87,0x1e,0xee,0x9f,0x2b,0xf1,0xd6,0x8c, - 0x4e,0x7b,0xe0,0x73,0xb1,0xa4,0x07,0xbd,0x46,0xc3,0xd2,0xc7,0x34,0xb3,0x08,0x12,0x48,0x9e,0x8b,0x65, - 0x1b,0xf7,0xf2,0xb0,0xa7,0x4c,0xba,0x36,0xf1,0xa2,0x38,0x4f,0x82,0x22,0x07,0xf5,0x76,0x4d,0x7c,0x53, - 0x2d,0x69,0xef,0xe6,0x67,0x04,0x60,0x17,0xc9,0xee,0xe1,0x10,0x5b,0xb0,0x83,0x17,0x52,0x83,0x22,0xca, - 0x4d,0x0f,0xf7,0xd7,0xc7,0xc5,0x82,0x00,0x56,0xd7,0x48,0x34,0xe2,0x65,0x56,0x9f,0x1f,0x95,0x72,0x4a, - 0xed,0x67,0xe9,0xbc,0x0a,0xb2,0x7c,0x67,0xba,0x5e,0x13,0x1a,0x1a,0x10,0xa2,0xa1,0xc9,0x08,0x55,0x4f, - 0x3a,0x3f,0x57,0x1d,0x82,0x64,0x91,0x3b,0x71,0x20,0xa6,0x83,0x22,0x27,0x0c,0x7d,0x46,0x74,0x84,0x37, - 0x6d,0xb4,0xd9,0x39,0x47,0x6f,0xf3,0x46,0x06,0x60,0x35,0x5d,0x11,0x39,0xce,0x13,0xb7,0x48,0xd4,0xdb, - 0x80,0xa0,0xa0,0xcc,0x69,0x97,0x53,0x07,0x03,0x71,0x66,0x52,0x97,0x69,0x55,0x5d,0x16,0xe5,0x14,0xa9, - 0xc3,0xe5,0xe0,0x21,0xa5,0x15,0x65,0xf6,0x07,0xef,0xc9,0x24,0x78,0x94,0x56,0xd9,0x64,0x27,0xe8,0xaf, - 0xc2,0x45,0x9f,0xce,0xa5,0xfe,0x59,0xb4,0xa1,0x49,0xa1,0x86,0x97,0x44,0x88,0x78,0xe4,0x97,0x07,0x98, - 0xa2,0x50,0xe3,0xa4,0x4e,0x2c,0x19,0xfb,0xda,0x87,0x77,0xb2,0xa4,0xe9,0xc8,0xfe,0x20,0x32,0x57,0xec, - 0x12,0x60,0xd1,0x87,0xba,0xf7,0xb5,0x79,0x12,0xd3,0xe3,0xf3,0x13,0x7f,0x30,0x68,0x8d,0x40,0xfd,0x1b, - 0xda,0x00,0x53,0x26,0xb2,0xaf,0x81,0x78,0x68,0x0c,0x17,0xd8,0x01,0x90,0x6d,0x4d,0x07,0x15,0xa3,0xa2, - 0xf5,0x7a,0x6a,0x69,0x2d,0xc2,0xff,0xbd,0xde,0x81,0xfe,0xc6,0x26,0x11,0x5d,0x36,0x95,0x57,0xaf,0x69, - 0x51,0x67,0x90,0x09,0x04,0x51,0xa4,0x66,0x88,0xc6,0x49,0xe8,0xe4,0xe1,0x7c,0x6e,0x10,0xb1,0xc2,0x88, - 0x6a,0xdd,0x46,0x29,0x0d,0xb7,0x33,0x1b,0xe7,0x01,0xcb,0xad,0xca,0xe4,0x86,0x29,0x8d,0xda,0x36,0x06, - 0xa0,0x23,0x36,0x00,0xc8,0x0c,0x1c,0x72,0x33,0x63,0xe4,0x3a,0x15,0xbb,0xc7,0xf7,0x54,0x56,0xa8,0x91, - 0xc4,0x87,0xf7,0xee,0xdd,0x4f,0xdc,0xc8,0x46,0xf7,0x0e,0xbe,0x89,0xcd,0x8b,0x2e,0x83,0xe2,0x5b,0xe5, - 0x82,0x57,0xc5,0x8e,0x86,0xfb,0xc0,0x7e,0xc0,0x15,0xeb,0x0d,0x13,0xe7,0x82,0xb8,0xa0,0x59,0x76,0x46, - 0x24,0x92,0x61,0x09,0xa6,0x9b,0x61,0x86,0x6d,0x46,0xc8,0x47,0x10,0x5c,0xd2,0x80,0x36,0x0a,0xb4,0x64, - 0x59,0x16,0xa5,0xbf,0x16,0xf3,0x70,0x12,0x06,0xaf,0x64,0x4d,0xe0,0xf2,0x65,0xe7,0x09,0x72,0x03,0x51, - 0x0b,0x9e,0x82,0x69,0x64,0x3f,0xbe,0x0d,0x2c,0xf9,0x6b,0x9d,0xbe,0x43,0xbb,0x28,0xe8,0xdb,0x55,0xef, - 0x07,0x8b,0x6a,0x47,0x5e,0x4d,0xa4,0x04,0x69,0x43,0x75,0x06,0x4f,0x8e,0x5e,0xbf,0x7a,0xf5,0xf0,0xd1, - 0xeb,0xb7,0xef,0x9f,0x3c,0x0e,0x1a,0xb5,0x97,0x83,0x2e,0x29,0x46,0xa8,0x97,0xf2,0x1a,0x38,0x8b,0xd8, - 0x98,0x71,0x42,0x40,0xd8,0xda,0x86,0x6e,0x07,0x46,0x60,0x07,0x9b,0xc7,0xe2,0xe8,0x9a,0xa1,0x2b,0x6c, - 0xa7,0x47,0xb1,0x62,0x22,0x86,0x63,0x02,0xb7,0xe5,0xb1,0xca,0x76,0x27,0xe6,0x49,0x32,0xe6,0x1d,0x11, - 0xd0,0x79,0xaf,0x37,0xb0,0xca,0x64,0xd8,0x01,0x1a,0x37,0x78,0x7e,0xd9,0xe2,0x6f,0xad,0x68,0x6b,0x46, - 0x80,0x32,0xd1,0xc8,0x0a,0x08,0x26,0xd0,0xb8,0xde,0xe3,0x68,0x46,0x16,0xad,0xc9,0x13,0xac,0x6b,0xab, - 0x2d,0x5a,0xbd,0x5a,0x9d,0x50,0xad,0x11,0x53,0x97,0xa7,0xed,0xb4,0x04,0x3b,0xaf,0x09,0x90,0x4c,0x54, - 0x4c,0x1b,0x49,0x2d,0x90,0xd5,0x24,0x86,0x92,0x2f,0x07,0x38,0xa9,0xb7,0xc1,0x3a,0xaa,0xcf,0x69,0x39, - 0x88,0x77,0xed,0x64,0xca,0x8b,0xfc,0x71,0x71,0xc9,0x68,0xed,0x8d,0xc6,0x65,0x84,0xac,0x07,0xe9,0x74, - 0xfa,0xe4,0x02,0xe4,0x45,0x56,0xd1,0xf8,0x69,0x24,0x81,0xc1,0x74,0x04,0x05,0x1d,0xdf,0x44,0xe2,0x96, - 0xca,0x3f,0x2c,0xdb,0x55,0xaf,0x38,0xc5,0x3d,0xfd,0x69,0x5b,0xcd,0x2a,0x30,0x47,0x13,0xa7,0x8b,0x60, - 0xf9,0x81,0x7b,0x05,0xa3,0xc2,0xfc,0x24,0x33,0x64,0xfe,0x59,0x36,0xe5,0x39,0x4f,0x4f,0xe9,0x90,0x23, - 0x54,0x08,0xb9,0xa0,0x86,0x5c,0x2c,0x90,0xbf,0xe6,0xe1,0x4c,0x25,0x0b,0xac,0x27,0x9d,0x94,0xb3,0xbf, - 0x71,0x76,0xd3,0xa9,0x7c,0x0b,0x65,0x81,0x4f,0x34,0x37,0x3f,0x50,0x3b,0x7d,0xd0,0x24,0xd8,0x86,0xb9, - 0x46,0x0b,0xbd,0x5e,0xd6,0xeb,0xed,0x66,0xa1,0x79,0x8f,0x46,0xc4,0x45,0x85,0x81,0x06,0xac,0x9d,0x59, - 0x4a,0x28,0x72,0xba,0x03,0xe0,0xd9,0x51,0x05,0x76,0x40,0x1f,0xd3,0xae,0x35,0x1f,0x08,0xd3,0x82,0xc2, - 0x00,0xb9,0xd5,0x32,0xe5,0xa0,0x6f,0xc3,0xfc,0xaf,0x8f,0xe6,0xf0,0xf6,0xd1,0x08,0x62,0x96,0xd4,0x88, - 0x52,0x3e,0x32,0x19,0xeb,0x80,0x7b,0xb7,0x0a,0xa5,0xd4,0x16,0xfb,0x9f,0x48,0xba,0xc0,0x59,0x12,0xb7, - 0xe3,0x84,0x6a,0x6a,0x48,0x09,0x65,0x80,0xc0,0x1a,0x60,0xcc,0x49,0xae,0x36,0x8c,0x92,0x7a,0x94,0xde, - 0xe6,0x49,0x32,0x51,0xff,0x3d,0x51,0x8d,0x51,0x0a,0x32,0xb3,0xf1,0xe1,0xed,0xb3,0xa3,0x62,0x41,0x35, - 0x11,0x54,0x86,0xb5,0x27,0xbd,0xfb,0xaf,0x6f,0x0e,0xee,0x9e,0x65,0x22,0xf8,0xbf,0xbe,0x48,0xef,0xbf, - 0xee,0x3f,0xe4,0xc4,0xb8,0x91,0x78,0xef,0x9b,0xbb,0x67,0x22,0xd8,0x6b,0xa6,0x1d,0x71,0x41,0xd1,0x4c, - 0x3c,0x40,0xc1,0x7e,0x23,0xed,0xdb,0x47,0x5c,0xf0,0xb8,0x99,0xf8,0x98,0x13,0x4f,0x82,0xc8,0xd3,0xfd, - 0x7d,0x05,0xdc,0x08,0x23,0xec,0x4a,0xa3,0x71,0xad,0x79,0x55,0x0b,0x50,0x4e,0x79,0x04,0xc2,0x52,0x6a, - 0x0d,0x11,0x25,0x64,0x1d,0x8c,0x99,0x8c,0xa8,0x94,0xf4,0x58,0x2c,0x2e,0xad,0x17,0xfc,0xf8,0x64,0x98, - 0x59,0xfc,0x29,0x5b,0x8b,0xdb,0xa5,0xe5,0x02,0x07,0x6b,0xb8,0x43,0x66,0xd3,0x43,0xd9,0x4f,0x82,0x63, - 0x1a,0x8a,0xf0,0xd3,0x89,0x00,0xd3,0x6a,0xaf,0xac,0x8b,0x0c,0x07,0xef,0x35,0x50,0xda,0x06,0x66,0x2c, - 0x41,0x9d,0x14,0xcf,0xde,0xbd,0x36,0x5d,0x8c,0x33,0x9f,0x09,0x64,0x39,0xd7,0x36,0x87,0x07,0xb5,0x2a, - 0x24,0x3b,0x84,0x9c,0xa3,0x7e,0x90,0x04,0x7d,0xd6,0xb0,0x41,0x14,0x01,0x82,0x3b,0x1d,0x7c,0x2e,0xb2, - 0x3c,0x0c,0x7a,0x34,0xc9,0x7a,0xe6,0x0a,0x54,0xd4,0x4f,0xc2,0xfd,0x43,0xa8,0x3b,0x1c,0xa9,0x32,0x0a, - 0xa2,0x11,0xfd,0x89,0x51,0xb6,0x5f,0x44,0x7f,0x0e,0x70,0x0d,0x02,0xff,0x38,0x48,0x41,0xcd,0x06,0xa9, - 0x4f,0xd6,0xd1,0xbb,0x39,0x70,0x94,0x70,0xc9,0x4b,0xe0,0x13,0x48,0x04,0xb2,0x4e,0xcf,0xf0,0x73,0xb5, - 0xcc,0x08,0xd8,0xe9,0x69,0x46,0x08,0x0f,0x0c,0x97,0xe2,0x9f,0xb2,0xd9,0xfe,0xa2,0x98,0x66,0xb3,0x4c, - 0x4e,0xf7,0xab,0x8c,0xd0,0xa2,0x4a,0x5b,0xe5,0x5b,0xa9,0xf3,0xb4,0xaa,0x6d,0x59,0xbc,0x17,0x13,0xd3, - 0x07,0xe2,0x2e,0xc1,0x7d,0x5f,0xd2,0x41,0x8e,0x16,0x08,0xa5,0x5e,0x5d,0xef,0xb7,0x3b,0x5a,0x4a,0xe2, - 0xe9,0xe9,0x38,0xc5,0x13,0x1d,0x53,0xfb,0xe9,0xac,0xe6,0x37,0x10,0xb3,0xfb,0x34,0x36,0xa2,0x74,0x4e, - 0x6e,0x61,0x2b,0x58,0x0c,0x48,0x1b,0xbc,0x20,0xce,0xc6,0xe9,0xe3,0x6b,0xe2,0xda,0xdd,0xaa,0x0f,0x2a, - 0x62,0x40,0xeb,0x30,0xf8,0x94,0x13,0x8c,0xb4,0xb8,0xef,0xc2,0x5f,0x06,0xda,0x75,0x42,0x26,0xc4,0x95, - 0x95,0xd9,0x02,0x9f,0xad,0x4e,0x69,0xbe,0xc3,0x03,0x42,0x3b,0x51,0xf3,0xac,0x16,0xf9,0x56,0xa9,0xa2, - 0x7f,0x48,0x00,0xa1,0x0e,0xcf,0x94,0x8e,0x70,0x42,0xbd,0xb6,0x62,0x19,0x7d,0x9f,0x1c,0xe8,0xdd,0x33, - 0x44,0x66,0x02,0x52,0x62,0x7f,0xc2,0x04,0x08,0x93,0x02,0x23,0xfe,0x66,0x84,0x3f,0xf1,0xf1,0x49,0x04, - 0x0c,0x45,0x53,0x18,0x1e,0xe7,0x27,0x51,0x6c,0x73,0xfa,0x81,0x00,0x6a,0x8e,0x73,0x30,0xbc,0x29,0x65, - 0xfc,0x75,0x28,0xf1,0x66,0xef,0x36,0xda,0x6a,0xe4,0xeb,0x01,0x9c,0x3e,0xc6,0x1a,0x1e,0xd4,0x56,0xfc, - 0xc8,0x3b,0x90,0x06,0xf0,0xb0,0xa6,0x76,0x4e,0x57,0xb4,0x83,0x82,0x73,0x5a,0xc2,0x00,0xb6,0x04,0x84, - 0x2e,0x07,0x78,0xc1,0xb6,0xbb,0xa5,0xc8,0x0d,0x9e,0x62,0x55,0x4c,0xb0,0x30,0x70,0x52,0xcc,0xe9,0xdd, - 0x3c,0x8e,0xdc,0xa3,0xc3,0x58,0xb1,0xd2,0x74,0xc4,0xc4,0xd5,0x00,0x3c,0xf1,0x39,0xfd,0x88,0x8a,0xf1, - 0x4c,0x8c,0xb6,0xf0,0x30,0x32,0x0f,0xbe,0xde,0x64,0xe4,0xbe,0x4c,0x2b,0x94,0xc5,0xcf,0x48,0xfd,0x78, - 0xe5,0xfe,0x4f,0xa3,0x01,0xf0,0x50,0xba,0x11,0x3c,0x0a,0xcc,0x1d,0xfa,0x48,0x3f,0x62,0x99,0xd6,0xe7, - 0x9c,0x1f,0xdc,0xc5,0xe2,0x51,0xaa,0x4e,0x18,0x40,0x28,0xf4,0xb0,0x0e,0x0f,0xa2,0x91,0x4b,0x44,0xa9, - 0xbe,0x7b,0x55,0x82,0x78,0x5a,0xab,0xe4,0x6e,0xb8,0xa8,0x32,0xb9,0xa6,0x09,0x02,0xd9,0x16,0xdd,0xcd, - 0x06,0x35,0xa4,0x9d,0x4e,0xd3,0x06,0xf0,0x7f,0x08,0xe8,0xc7,0x26,0x37,0xca,0x33,0x6d,0x78,0xf1,0x64, - 0x2e,0xf1,0x16,0x06,0x69,0x60,0xcf,0x49,0x5a,0x23,0xcd,0x8b,0x0f,0xcc,0x0e,0xd4,0x6b,0xe1,0xa4,0x0f, - 0x86,0x72,0x50,0x50,0xc0,0xb8,0x2e,0x27,0xf4,0x47,0x7f,0xe2,0xdc,0xd9,0x8d,0x98,0xf9,0x67,0x2a,0xd5, - 0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86,0xf0,0xe4,0x96,0x66,0x71,0xf7,0xe0,0xeb,0x67,0xb4, - 0xa7,0xf3,0xd1,0x5a,0x8d,0x05,0x91,0x62,0xb4,0xcb,0x93,0x40,0x75,0x68,0x07,0x68,0x8a,0x78,0xe5,0x6a, - 0x27,0xa5,0xbe,0xe4,0x4c,0xda,0xec,0x60,0x66,0xd3,0x09,0xd0,0xc2,0x46,0x41,0x75,0xf0,0xf0,0xd1,0xd1, - 0xe3,0x27,0x4f,0x7f,0xf8,0xf1,0xd9,0x4f,0xcf,0x5f,0xbc,0x7c,0xf5,0xfa,0xcd,0xcf,0x6f,0xdf,0xbd,0xff, - 0xf0,0xf1,0x97,0x5f,0x7f,0xfb,0x77,0x7a,0x3a,0x21,0x76,0xfe,0xec,0x3c,0xfb,0xfc,0x65,0xbe,0xc8,0x8b, - 0xe5,0xef,0x65,0x55,0xaf,0x2e,0x2e,0xaf,0xae,0xff,0x38,0x38,0xbc,0x77,0xff,0x9b,0x6f,0xff,0xf9,0xdf, - 0xff,0xfa,0xae,0x7f,0x37,0x09,0x86,0xb9,0x93,0x45,0x3b,0xc2,0x43,0x78,0xa9,0x8a,0x34,0xf8,0xb6,0x91, - 0x84,0x45,0x4c,0x82,0x67,0xaa,0x5f,0x47,0xa6,0x5b,0x86,0x53,0xea,0x44,0x52,0x46,0xad,0x26,0x41,0xc2, - 0x24,0x7a,0xda,0x6b,0x08,0x63,0x08,0xda,0xaa,0xe4,0x00,0xf6,0x35,0xc3,0xc2,0x42,0xcf,0xba,0xc2,0xe9, - 0x35,0x49,0xe8,0x44,0x11,0xd5,0x7f,0x11,0xe1,0x94,0xf6,0x93,0x89,0xc9,0xfd,0xe7,0xfd,0x9e,0xfc,0xfe, - 0xfb,0x7f,0xed,0x53,0xc6,0x3f,0xfe,0x15,0x31,0xba,0x09,0xb3,0x44,0x7d,0x7c,0x44,0xbd,0xa5,0x22,0x55, - 0x3f,0x19,0xfc,0xf7,0xb7,0x51,0xf4,0xfd,0xbd,0x6f,0xbf,0xd5,0x04,0x3b,0x46,0x97,0x0f,0x65,0x22,0x1f, - 0x3c,0xf8,0xd7,0x3a,0x33,0xc7,0xd1,0xff,0x32,0x02,0xb9,0xb9,0x2c,0xb3,0x86,0xf2,0xde,0x50,0x6d,0x84, - 0xac,0x6e,0x94,0xb5,0x07,0x9d,0xf6,0x95,0xd6,0x86,0xf0,0x81,0xd9,0x41,0x23,0x11,0xb5,0xc0,0xfc,0x9f, - 0xb2,0x36,0x20,0xc0,0xec,0xf5,0xf4,0x27,0xe6,0xa4,0xa2,0xef,0x30,0x1e,0x3e,0xbb,0x73,0x60,0xe6,0x1f, - 0x5e,0xbe,0xb7,0xd2,0x5b,0xe1,0x41,0x76,0xe6,0x7d,0x8b,0xfd,0x47,0x1f,0x66,0x8d,0x02,0x85,0x57,0x60, - 0xca,0x02,0x1a,0x2a,0x52,0x40,0x70,0x41,0x40,0x9e,0xba,0xbc,0x4a,0x4e,0x56,0x25,0xa4,0xde,0x6e,0x17, - 0x32,0xee,0x4e,0x2a,0x7d,0xc6,0x0f,0x77,0xe8,0x90,0x17,0x60,0x2e,0xe3,0xad,0xd3,0x29,0x69,0x7d,0x34, - 0x58,0x30,0x9f,0x85,0x21,0xbc,0x95,0x67,0x4f,0xae,0x96,0x61,0x10,0xfe,0x67,0x3d,0xfc,0xf4,0xa9,0xfa, - 0x47,0x14,0x12,0xc3,0x4c,0xe4,0x5b,0x12,0x1e,0xff,0x67,0x78,0xf2,0x8f,0x28,0x70,0x4a,0x1f,0x49,0xfc, - 0xe1,0xf6,0x5c,0x1d,0xdf,0x3f,0x51,0xf2,0x09,0x34,0xbe,0x28,0x2e,0x9a,0x46,0x10,0xbc,0xbb,0x78,0x51, - 0x68,0x2d,0x08,0xd4,0x30,0x63,0x83,0xbc,0xb8,0x0c,0xa3,0xfd,0x7f,0xfd,0xf3,0x1b,0xf9,0x2d,0x51,0xd3, - 0x71,0x7b,0xd1,0x20,0x73,0x6a,0x8e,0xa3,0xa1,0x26,0xdd,0x6e,0x87,0x3e,0xf8,0x1b,0xe4,0xb1,0xee,0xd4, - 0x39,0x81,0xcf,0x1c,0xd2,0xe2,0xe3,0x13,0x9f,0x00,0xf5,0x35,0x90,0x54,0x41,0xb7,0xbe,0xba,0x51,0x81, - 0x5a,0xa0,0x1b,0xab,0x59,0x63,0x99,0x87,0xd2,0xac,0x29,0xe5,0x7a,0xa3,0xb0,0xa2,0x84,0xf6,0x0f,0x21, - 0x61,0x70,0x2d,0x71,0xf9,0x64,0x6b,0xe2,0xcc,0x57,0x44,0x44,0x82,0x6c,0x6b,0x25,0x69,0x7e,0xaf,0x51, - 0x91,0xa6,0x38,0x92,0x26,0x95,0x69,0xe9,0x10,0xbf,0x06,0xcf,0x56,0xc0,0x92,0xb9,0x92,0x18,0x50,0x7a, - 0x25,0x16,0xf1,0x7f,0xa8,0xc7,0x82,0x79,0xe1,0x57,0xf8,0x59,0x46,0x05,0xcf,0x66,0x9a,0xfb,0x93,0xd3, - 0x30,0x6a,0x1b,0xfe,0x1d,0x7e,0xa7,0x24,0xc4,0xb0,0xc0,0xb3,0xa6,0x7f,0xf4,0x7a,0x08,0x01,0x31,0xfd, - 0xde,0xc2,0x23,0x78,0xa6,0x7f,0x35,0xd8,0xa8,0xd3,0x54,0x4b,0xe7,0x76,0x27,0x5a,0x18,0xc3,0x7c,0x16, - 0x3d,0x24,0xab,0xd0,0x66,0x0b,0x2d,0xa7,0x11,0x56,0xd4,0xeb,0x84,0xbe,0xac,0xe9,0x53,0xb2,0xe0,0x04, - 0xa2,0x46,0x16,0x0a,0xdb,0x5c,0xe8,0x6b,0x5a,0x9a,0x2b,0xbf,0x16,0x63,0x7e,0x68,0x53,0x06,0x4a,0x25, - 0xa1,0x2b,0xb5,0xb2,0x7f,0x2d,0xd9,0x3c,0x69,0xa6,0xe3,0xcd,0x67,0x1a,0x6e,0x53,0xb0,0x76,0x68,0x19, - 0x40,0x61,0xa3,0x21,0x5f,0xdd,0x40,0xcb,0x6b,0x64,0xf7,0xb6,0x65,0x79,0xb2,0x81,0x32,0x7c,0xa0,0x55, - 0x7b,0xeb,0x75,0x65,0x1e,0x23,0xb0,0x88,0x4d,0x79,0x83,0x6c,0xce,0xae,0x34,0x93,0xa2,0x1e,0xe8,0xbd, - 0x73,0x52,0x14,0xef,0x4a,0xc5,0x37,0xa2,0xa3,0xa6,0x94,0x9e,0xe9,0x88,0x51,0x15,0xc2,0x3e,0xcf,0x30, - 0xbb,0xe0,0xa6,0x9c,0x32,0xdb,0xb6,0xd4,0x48,0x11,0xde,0xfb,0xd7,0xda,0xa6,0x95,0x75,0x1a,0x79,0x66, - 0xa4,0xe4,0xdf,0x52,0x5d,0x7c,0x85,0x1d,0x35,0x13,0x62,0x17,0x29,0x6f,0x90,0x38,0x75,0xa2,0x30,0xc6, - 0x66,0x9b,0x93,0xfa,0x0b,0x02,0x03,0x4b,0xc8,0x84,0xbb,0xf5,0x7a,0x0d,0xc3,0x8d,0xf1,0xd1,0xc3,0x57, - 0x47,0x4f,0x5e,0x8c,0xc7,0xff,0x03,0xf1,0x83,0xa9,0xed,0xee,0x7f,0xc2,0xe3,0x74,0xff,0x8f,0x13,0xfc, - 0xf9,0x34,0xfd,0xd4,0xff,0xb4,0xff,0x69,0x70,0xf2,0x8f,0x38,0x1a,0x7d,0xba,0xfb,0xe9,0xae,0xa1,0xfd, - 0xea,0xff,0x91,0x7c,0xc3,0x49,0x1c,0x46,0x9e,0xc1,0xd0,0xa7,0xbb,0x7d,0x45,0x33,0xf7,0x41,0x80,0x4a, - 0x9f,0x22,0xbe,0xdb,0x57,0xb4,0xee,0x9f,0x4c,0x4e,0xd3,0x3a,0xa7,0x41,0xaa,0xd5,0x9b,0xbc,0xc3,0x48, - 0x33,0xd9,0x3a,0x33,0x02,0x65,0xd4,0x1b,0xf4,0x43,0xff,0x73,0xe2,0x74,0x21,0x19,0xf6,0x52,0x62,0x58, - 0x31,0x35,0xc8,0x2c,0x37,0xe9,0xd0,0x8f,0x78,0x66,0xd3,0x7f,0x0b,0x1f,0x42,0x92,0x69,0x85,0x89,0xbb, - 0x9e,0x86,0xd5,0x52,0x45,0x90,0x6a,0x2a,0x81,0x13,0x91,0x17,0x74,0xcc,0x13,0xe1,0xbd,0xb3,0x58,0x55, - 0xf5,0xce,0xa9,0xdc,0x49,0xad,0x6d,0xd4,0x20,0xd0,0x16,0x27,0x43,0xee,0xb5,0x96,0x0c,0x26,0x9d,0xda, - 0x2c,0x58,0x7c,0xd0,0x04,0xa9,0x0f,0xf2,0x04,0x1f,0x0c,0xeb,0x46,0x36,0xc4,0x68,0x69,0x05,0x84,0x14, - 0x9a,0x47,0xae,0x2a,0xe3,0xfd,0x68,0xd3,0x20,0x47,0x70,0x18,0xfa,0x7e,0xf3,0x78,0x6c,0x23,0xf3,0x96, - 0x3e,0x45,0x1b,0x50,0x70,0x35,0x6a,0xb0,0x5e,0x0a,0x4e,0xad,0xaa,0x58,0x95,0x13,0xe9,0x7f,0x85,0x96, - 0x0c,0x93,0x77,0x53,0xe3,0xc4,0x60,0xd3,0xa1,0xb2,0x81,0x8a,0xea,0x04,0xa7,0xaa,0x3a,0x55,0x18,0x7e, - 0x6e,0x3d,0xa9,0xfe,0xc6,0xde,0xd8,0xe9,0x40,0x51,0xc6,0x70,0x8c,0xe5,0x8e,0x12,0xb6,0x63,0x50,0x7c, - 0xb6,0x5b,0xb8,0xdd,0xd7,0xa1,0x43,0x9b,0xf9,0xbf,0xe4,0xee,0x20,0xe1,0xc0,0xf0,0x71,0x25,0xbb,0xdd, - 0x17,0xba,0x81,0xb1,0xee,0xb4,0x77,0x5d,0xaf,0x31,0x3a,0xb6,0x7c,0xf5,0x8c,0x1e,0xdb,0x25,0x95,0xd0, - 0xcb,0x88,0xc2,0x36,0xcd,0x5d,0x69,0x78,0xae,0x66,0x25,0xbe,0xf9,0xfa,0x96,0x79,0xc1,0x7a,0xbd,0x6d, - 0xaf,0x4b,0x69,0xd5,0xf5,0xe2,0xb4,0x98,0x37,0xd3,0x4e,0x8b,0x62,0x2e,0xd3,0xbc,0xd3,0x7e,0xfd,0x7f, - 0xc7,0xe2,0x5d,0x89,0xd8,0xd8,0xc8,0xf6,0x3c,0xef,0x34,0x78,0x37,0x54,0x34,0x5b,0x42,0xb0,0xf5,0x5d, - 0x68,0x39,0x28,0x47,0x1d,0x7f,0x9f,0x1c,0xf4,0x7a,0x2f,0x89,0xc6,0x1f,0xcc,0xe6,0x45,0x01,0x81,0x5c, - 0xc2,0x04,0x15,0x2c,0x4c,0x72,0x26,0x80,0xbd,0x5a,0xab,0x56,0xd7,0xa9,0xb3,0xa3,0x20,0xd8,0xf6,0x60, - 0xa9,0x47,0x6d,0x99,0x9f,0x12,0x83,0xdf,0x8b,0x62,0xdb,0x05,0x57,0xeb,0xa4,0xb3,0xaf,0x4e,0x8c,0x4d, - 0x2c,0x4d,0xfa,0x8a,0x3a,0x36,0xaa,0x89,0x32,0xb5,0x5f,0xad,0xb4,0x25,0xa4,0xb5,0xbc,0xd4,0x26,0xf0, - 0x8a,0xcd,0x0f,0x95,0xfa,0xa0,0x4c,0xac,0x10,0x4b,0x40,0xce,0x99,0x1c,0x0c,0xb3,0x07,0xa5,0xb1,0x1a, - 0xcb,0x94,0x01,0xe6,0x71,0x76,0x72,0x42,0xb8,0xd2,0x31,0x0c,0x5d,0xea,0xf7,0xe3,0xba,0x29,0xc9,0x3a, - 0xd9,0x74,0x59,0x77,0x50,0xb1,0x93,0x8d,0xeb,0xe3,0xdc,0xba,0x1d,0x18,0x7f,0x01,0xa3,0x53,0xad,0x3d, - 0x19,0x17,0xcb,0x83,0xbf,0xdf,0x3f,0xb4,0x62,0x62,0xee,0x32,0x9d,0x38,0xb9,0x38,0x8c,0xbc,0xda,0x66, - 0x8d,0x33,0xeb,0xcc,0xac,0x3a,0x36,0xb9,0x2d,0xb3,0x74,0x73,0xd9,0x31,0x1f,0xc3,0x36,0xda,0x70,0x24, - 0x81,0x3c,0xce,0x89,0x9e,0x0b,0xf1,0x03,0x4b,0xe0,0xc8,0x6f,0x78,0xba,0x65,0x74,0xaa,0xc5,0x21,0x65, - 0x87,0x41,0xb0,0xa6,0x30,0x46,0xe5,0xf7,0x87,0x23,0x67,0xc4,0x6a,0xcb,0x01,0x07,0x70,0xbf,0xd9,0x8c, - 0xd7,0x3c,0x5b,0x41,0x6f,0x3e,0x18,0xab,0x8a,0xac,0x87,0x85,0xc8,0x5d,0x47,0xce,0x55,0x47,0x08,0x83, - 0xac,0xd7,0x07,0x43,0xb7,0xf4,0xa6,0xec,0xbe,0xa4,0x15,0x77,0x16,0xb8,0x79,0x34,0xcc,0xf7,0xf7,0x87, - 0x51,0xc9,0x83,0x3a,0xce,0xfb,0xd2,0x9a,0xd7,0x96,0xae,0xd2,0x8b,0x16,0x20,0xc1,0x4b,0x43,0x46,0xf0, - 0xe1,0x48,0x30,0x1b,0x56,0x34,0xea,0xbe,0x58,0x34,0x64,0x13,0xb0,0x8e,0xce,0x09,0xb0,0xf2,0x07,0xce, - 0x29,0x84,0x00,0x0b,0x15,0xf4,0x7a,0x17,0x50,0x3f,0x42,0x1a,0x69,0xa1,0xcb,0x55,0x73,0x66,0xce,0x61, - 0x97,0x74,0xed,0x00,0x06,0xdb,0x30,0x32,0x58,0x4a,0x1f,0x89,0x7c,0xce,0x95,0xf4,0xa3,0x80,0x66,0x97, - 0x0e,0xc2,0xdd,0xd2,0x14,0x22,0xb6,0x65,0xb7,0xec,0xf5,0xec,0x06,0xa3,0x0a,0xf4,0x33,0x95,0x86,0x12, - 0x93,0x95,0x0f,0x09,0x4f,0x8d,0x27,0xef,0x27,0xbe,0xa5,0x99,0xa4,0xea,0x2e,0x7a,0xbd,0xd4,0x01,0xa4, - 0x5e,0x13,0x08,0xb0,0xd4,0x23,0x58,0x24,0x79,0x21,0xcb,0x6b,0xef,0x7c,0xf6,0x08,0x4c,0x1e,0x07,0x86, - 0xbd,0x51,0x95,0xad,0xd7,0xa6,0xb2,0xdd,0xc3,0xa1,0x92,0x68,0x68,0xf0,0xfc,0x22,0xaf,0x81,0x55,0x88, - 0x5d,0xf2,0x13,0x9c,0xfd,0x78,0xe5,0xda,0x9e,0xd8,0xb6,0xab,0x76,0xdb,0x8d,0x96,0xe1,0x7d,0xa3,0x1b, - 0x77,0xd6,0x5f,0xa6,0x75,0x0f,0xac,0xc7,0x6d,0x0c,0xb2,0xb5,0x86,0xd4,0x75,0x53,0x5f,0x64,0xdd,0xe6, - 0x74,0xcf,0x88,0x19,0xb6,0x35,0x9d,0xba,0x5d,0x47,0xe3,0xdb,0x36,0x0f,0x97,0xd8,0x59,0x8a,0x1c,0x53, - 0x1b,0x82,0x0f,0x3f,0xb7,0x27,0xfc,0xcd,0x76,0x69,0x34,0x6f,0xd1,0x8d,0x9e,0x11,0x75,0x7c,0x1a,0xff, - 0x20,0xce,0xa6,0xc6,0xe6,0x2b,0x19,0xe7,0x42,0xd2,0x89,0x24,0xcb,0xf4,0x74,0x2e,0xe3,0xdd,0xdd,0x52, - 0x40,0x26,0xa1,0x5e,0x0e,0xb4,0x2d,0xc3,0x4a,0x67,0x1e,0x6c,0x3c,0x2c,0x71,0xe5,0x1d,0x28,0x1d,0x2a, - 0xe3,0x5e,0xef,0x6e,0xce,0x0e,0x0c,0xac,0xd5,0xbc,0xab,0x49,0x6c,0xdf,0xd4,0xcf,0x55,0xb5,0xd7,0xb2, - 0x51,0xfa,0x2d,0x0f,0xd5,0xe9,0x2b,0x9a,0x3f,0xee,0xe8,0x71,0xdf,0x7e,0xd1,0xca,0x7e,0xbd,0x87,0x27, - 0x46,0x3c,0xf3,0x5a,0x99,0xe0,0xea,0xbd,0xfc,0x1b,0x6c,0x69,0xea,0xf4,0x4c,0x58,0x6e,0x76,0x72,0x9e, - 0xcd,0xa7,0xa5,0xcc,0xc1,0x3d,0xc1,0x7e,0x83,0x40,0x71,0xbe,0x10,0xac,0x9e,0xe4,0x77,0x64,0xa4,0xd5, - 0x75,0x3e,0x79,0x9a,0xc2,0x9e,0xfd,0xda,0x29,0x44,0x07,0x39,0x78,0x65,0x54,0xad,0x64,0x71,0x75,0x36, - 0x01,0x2a,0xd6,0x8f,0x94,0x4a,0xd0,0x97,0x30,0x0c,0x72,0x89,0x23,0xe2,0x4a,0xa9,0x3f,0x5c,0x44,0x3f, - 0x53,0xfa,0x2c,0x3f,0x52,0x0d,0x51,0xba,0x7d,0xe6,0x74,0xdd,0x71,0x4e,0xb7,0x83,0xa0,0xe7,0x77,0x13, - 0x5a,0xbb,0x67,0x53,0x4e,0xd7,0xcf,0xaa,0xfe,0x39,0x8d,0x97,0x5d,0x24,0xa5,0x52,0xa8,0xea,0x81,0xd1, - 0x4b,0x69,0x5f,0x92,0x23,0x2f,0x07,0xa6,0x41,0x11,0xd4,0xaf,0xb9,0x5f,0x38,0xf7,0x0b,0xe7,0xcd,0xc2, - 0x84,0x30,0xdc,0x8c,0x1f,0xb5,0x41,0xde,0x62,0xd9,0x26,0xde,0xd4,0x27,0x65,0xce,0x47,0x24,0x0e,0xc8, - 0x84,0xd6,0x8a,0x7e,0x3c,0xc7,0x0e,0xaf,0xd6,0x87,0xde,0x3a,0x62,0xbb,0x2b,0x0f,0x9e,0xdd,0xb0,0xe1, - 0x6f,0xf3,0x5b,0x6e,0xb7,0x10,0x0e,0xb2,0x60,0x3c,0x2e,0x4e,0xc7,0xe3,0x80,0xad,0x4d,0xd4,0xb3,0x5f, - 0xba,0x28,0x47,0xe8,0x9c,0xca,0x88,0x33,0x22,0xbb,0xcf,0x8b,0xd5,0x7c,0x4a,0x93,0x4d,0x1b,0x9f,0x00, - 0x74,0xf7,0x8f,0x9c,0xad,0xfc,0xda,0xd8,0x6c,0xbd,0x06,0xb1,0x44,0x39,0x7a,0xef,0x64,0xd5,0x13,0x78, - 0x9f,0x54,0xd9,0x29,0x9b,0xcb,0xd2,0x87,0xec,0x4f,0x40,0x54,0x28,0xa6,0x8d,0xc7,0xcc,0x2a,0x73,0x66, - 0xe7,0x79,0x5a,0x2f,0x16,0x47,0xc5,0x2a,0xaf,0xfb,0x7d,0xff,0xe0,0x79,0xe7,0xab,0xc3,0x15,0x1e,0x65, - 0x6b,0xb9,0x9c,0xb0,0xa7,0x6e,0xe9,0x4c,0xd6,0x9e,0x17,0xdf,0x63,0x59,0x4d,0xca,0x0c,0x36,0xee,0x3c, - 0x37,0x8c,0xad,0x53,0xc2,0xd6,0x87,0x44,0xed,0xa5,0x03,0x7f,0x6b,0x1a,0x09,0x6f,0x4a,0x08,0x17,0x95, - 0x10,0x26,0xe4,0xc7,0x8a,0x1e,0x57,0xc9,0x6e,0xd6,0xeb,0x3d,0xc4,0x41,0xf6,0x15,0x5c,0xe0,0xe3,0x80, - 0xad,0x6d,0x2f,0xa8,0x4a,0x5f,0xe6,0xa8,0xb0,0x54,0x35,0xaa,0x0c,0xcd,0xe8,0xd4,0x17,0xbf,0xe6,0xb4, - 0xcd,0x4a,0x2a,0x4f,0x53,0x53,0x50,0x4b,0x4b,0x58,0x5e,0x44,0x62,0x45,0xaf,0x2b,0xbc,0xba,0xa4,0xf6, - 0x81,0xd1,0xeb,0x79,0x04,0x7b,0x03,0xbe,0xf4,0xee,0x57,0xde,0x43,0xb2,0xed,0x35,0x44,0x2b,0x20,0x61, - 0x98,0x89,0x79,0x57,0x4b,0xed,0x9e,0xbe,0xd6,0x22,0x64,0xdb,0x6c,0x44,0x11,0xb2,0xb4,0x44,0x6e,0x44, - 0xe5,0x8f,0x52,0x1a,0xea,0xa4,0x39,0x4c,0x49,0x67,0x48,0xb9,0x5e,0xcb,0x5d,0x36,0x21,0xdd,0xc5,0x73, - 0x38,0x19,0x4d,0x1c,0x19,0x15,0x53,0x77,0xec,0x9c,0x4b,0xd8,0xc6,0xe6,0x45,0x0d,0xf2,0x95,0x6d,0xe4, - 0x3d,0x1c,0xfd,0xde,0x53,0xef,0xb7,0x21,0x90,0xd6,0x2e,0x74,0xa7,0x85,0x3d,0x3a,0x99,0xc4,0x5e,0xa4, - 0x57,0x96,0x12,0x84,0x46,0xcf,0x52,0x7a,0x52,0x1c,0x52,0x75,0x82,0x77,0x8f,0x64,0x37,0x51,0xec,0x1f, - 0x7e,0x6a,0x7b,0x76,0xba,0xaa,0x95,0x81,0x6b,0xae,0x25,0x3f,0x66,0xb3,0x38,0x07,0x22,0x05,0xe7,0xeb, - 0x75,0x09,0x4b,0x2b,0x0d,0xd6,0xa3,0x3c,0x2e,0x47,0xe1,0x3b,0x42,0x2f,0x7c,0x82,0xf0,0x28,0x08,0x15, - 0x61,0xae,0xcd,0x58,0x41,0x97,0x19,0xeb,0xd9,0xdc,0xc3,0xd6,0xaf,0x2d,0x6d,0x72,0xcb,0x90,0xfd,0xd1, - 0x78,0xa6,0x0a,0x6e,0x1f,0x0f,0x5d,0x9f,0xfc,0xad,0xb6,0x5e,0x2b,0xca,0x16,0xc6,0x41,0xc6,0x5a,0x57, - 0x9e,0x28,0x24,0xe7,0x77,0xcc,0x5f,0x81,0xcf,0xb6,0x33,0xbe,0x79,0x85,0x85,0x3b,0x6c,0x54,0xb7,0x35, - 0x35,0x49,0x01,0x8d,0xd1,0xb0,0x7a,0x90,0x1a,0x28,0xac,0x80,0xdb,0x40,0x17,0x26,0xe9,0x71,0x75,0x72, - 0x02,0x00,0xc5,0x51,0x3f,0x63,0x4a,0x66,0x54,0x84,0x25,0xbb,0x21,0x42,0x17,0xf2,0x39,0xc4,0xc6,0x8f, - 0xb1,0xec,0x39,0x3d,0x74,0x90,0x84,0x2f,0x5a,0x12,0xb6,0x7c,0xd4,0xda,0x73,0x65,0xd2,0xe9,0xce,0x66, - 0x3c,0x7c,0xd9,0xa7,0x8d,0x7a,0xd0,0x75,0x1c,0x8f,0x6a,0xaf,0x50,0xed,0x28,0x6c,0xdd,0xab,0x6c,0x13, - 0xcb,0x51,0xed,0xb7,0xa7,0x4b,0x7c,0x0e,0xbf,0xd6,0x24,0x93,0x20,0xf8,0x83,0x86,0xbf,0xd6,0xac,0x57, - 0x90,0xb8,0xb6,0x58,0xc6,0xde,0xb0,0x9f,0xb4,0xc5,0x68,0xa3,0xda,0xa8,0xe0,0x69,0x3b,0xb5,0xd1,0xc4, - 0x48,0xc6,0xd0,0xd3,0x7b,0xdf,0xbf,0x71,0xc4,0x8e,0x92,0xd7,0x34,0x99,0x16,0xcd,0xe8,0x7b,0xba,0x9c, - 0x8b,0x30,0xc3,0x46,0xcd,0x5c,0x15,0xcf,0xcc,0xcc,0x7b,0x4c,0xbc,0xad,0x2e,0x2d,0x09,0xbd,0xac,0xd7, - 0xab,0x72,0xb8,0x82,0xa3,0x1d,0x1d,0x4c,0xec,0x9d,0x88,0x3f,0x68,0xb4,0xcb,0x1a,0x8f,0x45,0xb9,0x84, - 0xaa,0xb4,0x1f,0x50,0x5b,0x72,0x62,0x20,0x9a,0xf6,0xe3,0xb2,0x52,0x96,0x3c,0x6a,0x7d,0x19,0xe0,0x6e, - 0x36,0xc3,0xad,0xfd,0x91,0x2b,0xdf,0x71,0x3a,0x60,0x2d,0xfa,0x03,0x53,0xd2,0x96,0x2f,0x84,0x2a,0xfc, - 0x02,0x76,0x41,0x7a,0x3c,0xce,0x09,0xee,0x4e,0x92,0x1b,0x64,0x29,0x35,0x95,0xb3,0x14,0x2a,0x4c,0x8d, - 0x7c,0x6e,0x00,0x45,0xe4,0x11,0xbe,0xad,0x4e,0x04,0x7f,0x58,0xd1,0x87,0x00,0xdb,0x51,0x16,0xab,0xef, - 0xb3,0xcd,0x50,0xf7,0x37,0x49,0x37,0x40,0x99,0xb7,0x0c,0x29,0xcb,0x31,0xf7,0xfe,0x98,0x6c,0xe2,0xd7, - 0x06,0xa6,0x66,0x9a,0xc9,0x05,0x9f,0xb1,0x26,0xa6,0x8b,0x19,0xeb,0x1b,0x18,0xc7,0xc4,0x78,0xde,0x74, - 0x0f,0x21,0x55,0x43,0xd0,0xc7,0x60,0x7e,0x9c,0x12,0xcb,0x45,0x7f,0x68,0x0c,0x55,0x44,0xeb,0xad,0xbe, - 0x4f,0x09,0xc5,0x47,0xb1,0x7a,0xae,0x36,0x9b,0xf6,0x30,0xcc,0x20,0xe4,0x60,0x9a,0x95,0xd4,0x5f,0xa2, - 0x5d,0xf5,0xe2,0x98,0x56,0x4a,0xaf,0x15,0x35,0xd3,0xc3,0x8e,0xc5,0xcf,0x40,0x15,0x70,0x10,0x0c,0x18, - 0xe8,0xc7,0x99,0x58,0x2d,0x61,0x1d,0x48,0x53,0x18,0x41,0x69,0xaf,0xc3,0x64,0x48,0x1d,0x05,0x82,0x9b, - 0xc8,0xd8,0xc6,0x09,0x50,0x98,0xc1,0xb8,0x4f,0xc8,0xc1,0x22,0xbb,0x22,0x4a,0xc6,0x8d,0x8f,0xce,0xbe, - 0x2a,0x31,0xc9,0x66,0x8a,0xd2,0x07,0xd5,0x30,0x05,0x9b,0xc8,0x9f,0x9a,0x5c,0x1a,0x37,0x55,0xc2,0xcd, - 0x4c,0xe8,0x24,0xa2,0x59,0x47,0x2d,0x13,0x15,0x38,0x80,0x1e,0x22,0xf7,0x2e,0x23,0x20,0xaa,0x09,0x51, - 0x3c,0x9c,0xae,0x77,0xc8,0xca,0x6d,0x8c,0xc7,0x6e,0x6f,0x75,0x79,0xcb,0xd8,0xb9,0x00,0xb2,0xc5,0x40, - 0x68,0x28,0xc2,0xd1,0x68,0x19,0x58,0x5f,0x45,0xe9,0x8c,0xc1,0x5f,0x99,0x12,0x85,0x57,0xa2,0x50,0x25, - 0xd2,0xe4,0x34,0x0f,0x0b,0x27,0x5c,0xa0,0x52,0x29,0x41,0x1f,0x8d,0x25,0xce,0x58,0xaa,0x80,0x92,0xf8, - 0x9b,0xfa,0xb2,0x91,0xa7,0xed,0xad,0x0f,0xb7,0x36,0x51,0x24,0xbb,0xb4,0x6a,0x82,0xd9,0x52,0x08,0x53, - 0xd0,0xec,0xcb,0xf0,0x91,0x12,0xa7,0x89,0x6c,0xc0,0x27,0x20,0xe8,0x13,0x3a,0x1f,0xd1,0x50,0xa0,0x1d, - 0x21,0x83,0x68,0x94,0x12,0xef,0x15,0xbf,0xd4,0x32,0x2e,0x53,0x14,0x86,0xfb,0xbb,0xac,0x92,0x4e,0xe9, - 0xe7,0x4a,0xb9,0xa9,0x86,0x69,0xc2,0x64,0xb4,0x15,0x28,0xa6,0xd1,0x4d,0xda,0x65,0xba,0x37,0x83,0x07, - 0x93,0x6d,0xc1,0x6c,0x0a,0x69,0xbc,0x2f,0xed,0x39,0x00,0x1a,0x76,0x4f,0x23,0x0c,0xb5,0xd3,0x54,0x70, - 0x03,0x27,0xb1,0xec,0xc8,0x56,0xf2,0x01,0x2b,0xa9,0x1c,0x8c,0x39,0x87,0x52,0x47,0xde,0x73,0x97,0x84, - 0x15,0xae,0xbd,0x4f,0x9d,0x6c,0x3e,0x79,0x15,0x4a,0x35,0xd8,0x51,0x69,0xa9,0x9d,0x92,0xc0,0x15,0x28, - 0xa9,0x8e,0x34,0xbb,0xdd,0x26,0xa1,0x87,0xed,0x04,0x70,0x21,0x0f,0xc3,0x94,0x48,0xff,0x76,0x46,0xe5, - 0xcc,0x1e,0xec,0xea,0xbd,0xf2,0xec,0x9b,0x30,0x7a,0xc7,0x1b,0x6a,0x2d,0x3d,0xfb,0x5d,0xdb,0xe2,0xe1, - 0xa7,0xcb,0x7e,0x74,0xd7,0xc3,0xe3,0xf2,0xf8,0x90,0xc6,0x16,0xb8,0x0a,0x5f,0xba,0x03,0xbd,0x7d,0x6c, - 0x18,0x80,0x7b,0xa5,0x84,0x93,0xaf,0x8c,0x7f,0xaa,0x89,0xc6,0x51,0x3a,0xc2,0x32,0x7f,0x50,0x1a,0xc6, - 0xfd,0x15,0xcb,0xb2,0xcc,0x07,0x4e,0x92,0x62,0x05,0x01,0xb6,0xe9,0xb7,0xde,0x8a,0x4b,0x87,0x30,0x12, - 0x39,0x2c,0x93,0x72,0xb0,0xb7,0x4c,0x89,0x95,0xaa,0x87,0xce,0x00,0xc8,0x2e,0x25,0xfb,0x00,0x1c,0xa5, - 0x4b,0xaa,0x50,0x4e,0x19,0x17,0xd8,0xaf,0x0b,0x42,0x88,0xc5,0x83,0xcc,0xf4,0xab,0xc0,0x4e,0x2f,0xaf, - 0x79,0x78,0x30,0x61,0xc4,0x8e,0x50,0x6b,0x55,0x0a,0xd5,0xb8,0xee,0xa0,0x13,0x58,0x3c,0xa2,0x5e,0x95, - 0x22,0x68,0xb4,0xb1,0x73,0x5e,0x14,0x5f,0xe0,0xb6,0xfe,0x48,0x77,0xd9,0x0d,0xe2,0x91,0x37,0x88,0xf7, - 0xb9,0xea,0xda,0x8f,0x4a,0x67,0xce,0x2d,0xeb,0x39,0x6c,0x65,0xf9,0xf1,0x45,0x54,0x85,0xb6,0xfd,0x5f, - 0x8c,0xd0,0x36,0xd0,0xa6,0xd2,0xfe,0x77,0xd4,0x87,0x5f,0xb6,0xba,0xf0,0x8b,0xd7,0x85,0xdd,0x17,0x10, - 0x47,0x3d,0xc9,0x69,0xff,0x75,0xf8,0x08,0xc1,0xd9,0x9c,0x76,0xb4,0x51,0xb0,0x0c,0xf5,0xbb,0x6a,0xa2, - 0x21,0x1b,0xfe,0x00,0xa3,0xba,0x32,0xd1,0x52,0xa3,0x3a,0x99,0x97,0xc6,0x3f,0x3c,0x1a,0xce,0x8d,0x20, - 0x37,0x71,0xb2,0x40,0x49,0xcf,0xd2,0x09,0x71,0x24,0x0b,0xe2,0xe4,0x49,0xe8,0x55,0xf9,0xb1,0xc5,0xad, - 0x52,0x35,0x6c,0x0b,0xd1,0xd2,0x03,0x29,0x67,0x42,0x2b,0x9f,0xb4,0xf3,0xa2,0xa0,0x25,0xc8,0xe9,0x08, - 0x78,0x9f,0x4d,0xb0,0x1a,0x7c,0xaa,0xe5,0xec,0xbc,0xce,0x9a,0x16,0xf0,0x15,0xe8,0xf3,0x81,0x58,0x96, - 0xa3,0x49,0x19,0x46,0x71,0x55,0xc2,0xc0,0x66,0xb7,0xee,0x56,0xaf,0x68,0x45,0x58,0xe4,0x49,0x51,0xba, - 0x74,0x63,0x39,0x74,0x63,0x6e,0x18,0x3f,0x22,0xcd,0x16,0x00,0xdf,0x25,0x2c,0x29,0x52,0xdc,0x22,0xd4, - 0x0b,0x89,0x05,0x85,0xf0,0x10,0x7c,0xb0,0x65,0x90,0x9f,0x96,0xc5,0x1f,0x70,0x9c,0x56,0x36,0x51,0x52, - 0xd3,0xea,0xe6,0x3c,0x96,0x3e,0x3b,0x96,0x31,0x94,0xe7,0xb0,0x00,0xa4,0xc3,0xd9,0x18,0x66,0xe6,0xf0, - 0x1e,0x80,0x1b,0x20,0x2c,0x38,0x35,0xad,0x23,0x1b,0xb4,0x0e,0x0c,0x6e,0x4a,0x3e,0xd9,0x6c,0x40,0x9c, - 0x32,0x09,0x8b,0x16,0x7d,0x1e,0x6d,0x7d,0x53,0xd0,0x57,0x27,0x1c,0x00,0x21,0xa2,0x59,0x3f,0x2b,0x23, - 0xfa,0x3f,0x98,0xd0,0x51,0x50,0xfa,0x0b,0xfa,0x47,0xd8,0x0c,0x75,0xa5,0x35,0x72,0x4e,0x36,0x2d,0x40, - 0x18,0xcc,0x72,0x3e,0xae,0x77,0xb7,0x68,0x18,0x2b,0x79,0xf6,0xf4,0x66,0x4e,0x34,0x37,0x74,0xf8,0x20, - 0xd7,0xa0,0xd7,0xa9,0x47,0x80,0x90,0xc4,0xaf,0xa1,0xb6,0x22,0x6d,0x6e,0x1a,0x51,0xae,0x5c,0x8f,0x7f, - 0x0f,0xb5,0x30,0xc1,0xda,0xef,0x8b,0x4a,0xd0,0x81,0xcf,0x8d,0xa5,0xea,0x74,0xa7,0xa9,0x07,0x35,0x30, - 0x61,0x8a,0x88,0x68,0x81,0xeb,0x12,0xc8,0xb9,0x0e,0xd9,0xc6,0xad,0xa6,0x23,0x7f,0x44,0x7f,0x2b,0xd4, - 0x8d,0xf3,0x50,0x95,0x4e,0xfe,0xc0,0xb2,0x88,0x92,0xf8,0x75,0x36,0xbe,0xac,0xc4,0x6a,0x40,0xd4,0x38, - 0x31,0xb5,0x04,0xc7,0x8c,0x42,0xe8,0x09,0x3e,0x6d,0x44,0x1f,0xf1,0x13,0xcc,0xcc,0x23,0x82,0x4f,0x3a, - 0x45,0x26,0x54,0xcb,0x84,0xbb,0x5a,0x09,0xae,0x6b,0x12,0x45,0xae,0x3f,0x39,0xaf,0x47,0x0a,0xf2,0x34, - 0x0b,0x43,0xdd,0x9b,0x48,0xb5,0xa2,0x3a,0x68,0x5a,0xf0,0x16,0xe6,0x79,0xa8,0x87,0xe8,0xa9,0xa5,0xa2, - 0x9b,0xa2,0x5b,0x06,0x2a,0xe6,0x6a,0x34,0x44,0x3b,0x6c,0xca,0xa6,0xe0,0x08,0xe2,0x30,0xc2,0xbb,0x90, - 0xfe,0x0d,0x80,0x01,0x61,0x81,0xe1,0xde,0x88,0x4a,0x8a,0xf4,0x29,0x07,0x7b,0x40,0x5a,0x87,0x21,0x4f, - 0x4f,0x45,0xb3,0x81,0x1e,0xc7,0x52,0x8d,0x0b,0x52,0x06,0x7a,0x62,0x13,0x97,0x29,0xcd,0x5e,0x45,0x23, - 0x44,0xba,0xda,0xfd,0x29,0xcd,0x02,0x3e,0x98,0x08,0xfa,0x44,0x54,0xba,0x18,0x36,0x31,0x8b,0xbf,0x2a, - 0x37,0xaa,0x9f,0x98,0x0b,0xd4,0x23,0xc3,0x8e,0x01,0x10,0x29,0x6a,0x01,0xd4,0x8c,0x63,0xcf,0x11,0xc5, - 0x04,0x60,0x5f,0xac,0xd7,0x9a,0xaf,0xe5,0x57,0x3a,0x83,0x74,0xe1,0xac,0x5d,0x38,0x6b,0x16,0xce,0x50, - 0x78,0xb3,0x7d,0x60,0xfd,0xe0,0x3b,0x4b,0x30,0xff,0x0d,0x9b,0x1d,0x48,0x21,0xb1,0xb1,0xb5,0x89,0xbc, - 0x11,0x58,0xba,0xcf,0x7e,0xf5,0x99,0xb5,0x10,0x4c,0xb9,0xac,0x5e,0xb2,0x4e,0x77,0xbd,0x7e,0x8e,0x78, - 0x2b,0xea,0x05,0x2a,0xc5,0xfa,0xf8,0x1d,0x6b,0x35,0xed,0xb9,0xfe,0x3e,0x3d,0x53,0x7e,0xfb,0x49,0x6d, - 0xa8,0x1f,0xda,0x06,0xf0,0x00,0x30,0xc4,0x30,0xa8,0x0e,0xaf,0xb1,0x7f,0x37,0xa2,0xb1,0xd8,0xde,0x80, - 0x56,0xf0,0x45,0xb3,0xee,0x83,0xdf,0xb4,0xd9,0x41,0x5b,0xb8,0x10,0x7d,0x45,0x3e,0x6f,0xb8,0x14,0xd0, - 0xaa,0xbc,0x12,0x25,0xbb,0x35,0x40,0x78,0xda,0x92,0x25,0xd3,0xa6,0xf9,0x37,0xe5,0xda,0x09,0x2f,0x3d, - 0x4a,0xf4,0x67,0x73,0x6e,0xe5,0xa3,0x05,0x4e,0x77,0x02,0x3b,0x25,0x0e,0x52,0x6f,0x2d,0x0d,0x5b,0x5d, - 0xab,0x69,0xe4,0xcc,0xd9,0xac,0x95,0x2b,0x6b,0x53,0xd9,0x82,0xfa,0x25,0x78,0xa3,0xb3,0x99,0xd4,0xcf, - 0xa2,0xa6,0x19,0xa3,0x44,0x45,0xf1,0x79,0xda,0xe8,0xda,0xe7,0xc2,0x14,0x9f,0xb5,0x5b,0x3b,0x6d,0x83, - 0xc3,0x3f,0x8d,0xb8,0x63,0x46,0x84,0xa6,0xa5,0x91,0xcc,0xd7,0xa6,0x49,0xc1,0xdb,0x02,0x55,0xb0,0x0c, - 0x31,0xad,0xeb,0xb2,0xb2,0x0f,0x84,0xbe,0x8a,0xda,0x7a,0x01,0xfb,0x89,0xa2,0x30,0xb2,0x73,0x65,0x4d, - 0x57,0x38,0xb9,0x36,0x12,0xd6,0x6b,0xc8,0x2e,0x95,0xc2,0x37,0xe5,0x0f,0xa2,0x30,0x37,0x60,0xc0,0xb6, - 0x18,0x26,0x4e,0xdc,0xf1,0x09,0x21,0x05,0xde,0x4f,0x85,0x27,0x01,0xaa,0xf4,0x57,0x8c,0xcc,0x2a,0xa8, - 0x19,0xf1,0x83,0xc2,0xc3,0xa0,0x96,0x8b,0xe5,0x9c,0x58,0x2c,0x40,0x5d,0x01,0x31,0xff,0x68,0xc2,0x15, - 0x68,0x24,0x31,0x41,0xd7,0xb4,0x38,0x7b,0xbd,0xa6,0x2f,0xe2,0x89,0xa9,0x7f,0x63,0x03,0x14,0xad,0x14, - 0x86,0xca,0x8f,0x57,0x27,0x5a,0x31,0x54,0xd6,0xce,0xdd,0x19,0xc9,0x2e,0x02,0x88,0x93,0x12,0xd4,0xb7, - 0x41,0xe8,0x6e,0x13,0x44,0x89,0x84,0xd9,0xe1,0x3d,0xc1,0x3b,0xcc,0xd3,0xe3,0xd7,0x9e,0x36,0x52,0x73, - 0x6a,0xb7,0xc0,0x69,0x0b,0xa6,0x41,0x97,0x8e,0xf0,0xb9,0xd2,0x2c,0xc5,0xc4,0xf9,0xd0,0x13,0x8e,0x41, - 0x56,0x53,0x9e,0xd0,0xec,0x77,0xa8,0x0b,0x8b,0xda,0xa8,0x1d,0x87,0xb5,0xde,0x89,0x9a,0x36,0x8d,0x86, - 0x11,0xab,0x98,0xc7,0x59,0x9e,0x32,0xef,0xfb,0x35,0x6a,0x37,0xad,0x2d,0xa5,0x6d,0x54,0xd3,0x63,0xc5, - 0x34,0x3f,0xd3,0x5f,0x13,0xb5,0x25,0xb8,0x31,0x43,0x93,0x1a,0xb6,0x7d,0xab,0xa4,0xa1,0x00,0x9a,0xad, - 0x3b,0xeb,0x0c,0xaf,0x47,0x37,0xde,0x0b,0xc8,0xb9,0xf6,0x6c,0xed,0x99,0x55,0xf6,0xe7,0x0d,0x7d,0x75, - 0x39,0xac,0x46,0x85,0x26,0x4a,0x04,0x5c,0x0f,0x41,0xcd,0x34,0xf0,0x85,0x82,0x55,0xdd,0x14,0x68,0x18, - 0x42,0x5d,0x33,0xb8,0x9e,0x30,0x80,0xf7,0x52,0xde,0xde,0x4b,0xa0,0xf8,0x72,0x1b,0xda,0xd2,0xc6,0x8e, - 0xc8,0x41,0xf4,0xe5,0x20,0x90,0xfb,0x81,0xa1,0xc0,0x69,0x34,0x44,0x04,0xfd,0x48,0x2f,0xec,0x36,0xc9, - 0x0c,0xa0,0x5c,0xc0,0xce,0x00,0x05,0xe2,0xa0,0xef,0x23,0x85,0x49,0x6d,0x68,0x12,0x21,0x79,0xe0,0x5f, - 0x98,0x3a,0x3c,0x85,0x31,0x51,0xe9,0x5b,0x38,0xf9,0xc6,0xba,0x44,0x6c,0xed,0x4b,0xfa,0x43,0x14,0xe5, - 0x11,0x02,0x47,0x1d,0x95,0x0f,0x4e,0x2d,0xc5,0x71,0x84,0xee,0xca,0x84,0x80,0xe0,0xb4,0x3c,0x3e,0x2a, - 0x4f,0x22,0x2a,0x28,0xae,0x4a,0x16,0xda,0x32,0xf5,0x31,0x28,0x57,0x79,0x68,0x2c,0xa9,0x2e,0x4b,0x4b, - 0xb9,0x94,0xc9,0xa9,0x7d,0xa1,0x5a,0x12,0x5b,0x25,0x0a,0x19,0x6a,0x9a,0x6a,0x82,0x52,0x7b,0xaf,0x4c, - 0xd0,0xd1,0xc3,0x86,0x9c,0xe5,0x4f,0x08,0x6d,0x7f,0x91,0x0f,0x04,0xd6,0x0f,0xa2,0xdc,0x5d,0x84,0xf4, - 0xcc,0xa3,0x5b,0x2a,0x72,0x95,0x80,0xee,0x33,0xab,0x87,0xef,0x40,0x73,0x5d,0x2c,0x86,0xe5,0x60,0x7c, - 0x89,0x95,0x90,0x25,0x01,0x55,0x0e,0x69,0xf6,0x38,0xa3,0x93,0x6b,0x45,0x08,0x6a,0xda,0xeb,0xd1,0xaa, - 0x13,0x9f,0xa4,0x04,0x35,0x0c,0x0f,0x84,0xe7,0xc5,0xef,0x54,0xec,0x3d,0xf0,0xd2,0x45,0x5d,0x14,0xf0, - 0xf5,0xfd,0x9d,0x18,0x1f,0x5e,0x9f,0xd9,0x9c,0xd0,0x47,0xe0,0xad,0xce,0xca,0xa2,0xec,0xf7,0x25,0x14, - 0x30,0xdb,0xc6,0x78,0x6c,0x02,0x46,0xfd,0x21,0x00,0xdc,0x08,0x2a,0x54,0xc9,0x6d,0xab,0x67,0x95,0x8d, - 0x50,0x7c,0xb7,0x69,0x6a,0x72,0xfa,0xd4,0x6b,0x76,0x6e,0x9b,0x55,0x10,0xc9,0x1a,0xad,0x2e,0x99,0x54, - 0x3e,0x0a,0x75,0xc7,0xca,0xd1,0x8c,0xe5,0xaa,0xb9,0xe9,0xc4,0x59,0x14,0x9b,0xbc,0x1c,0x7f,0x47,0x25, - 0xce,0x7f,0x44,0x9d,0x23,0x10,0xa6,0xf9,0x32,0xe5,0x91,0x17,0x9f,0x99,0xaf,0x72,0xfc,0x1d,0xf1,0xdf, - 0xf8,0x2c,0xba,0xb5,0xbf,0xb2,0xd9,0xdf,0x99,0x8f,0x2f,0xb7,0x14,0x4a,0x6c,0x24,0x37,0xc6,0xa9,0xbb, - 0xa2,0x55,0xf8,0x45,0xad,0x16,0x42,0xee,0x75,0xa6,0x6b,0xc1,0x8e,0x65,0x79,0x58,0x6c,0x57,0x5f,0xc3, - 0xa0,0x56,0x42,0x2f,0x01,0xd9,0x6f,0x24,0x3c,0x7d,0x94,0x74,0x9a,0x20,0xa9,0x34,0x17,0xde,0xb6,0x5f, - 0xd6,0x4e,0x94,0x64,0xfc,0x05,0x59,0x45,0x04,0x99,0xab,0x40,0x64,0x28,0x6d,0x3c,0x1e,0x89,0x6d,0x29, - 0x18,0xab,0x01,0x19,0x23,0xd3,0xa6,0xd9,0xbb,0x54,0x9e,0xdc,0x4a,0x38,0xec,0xec,0x5f,0x1c,0xca,0xac, - 0xff,0xdc,0xe2,0xe8,0x79,0x3e,0x7a,0x2b,0x67,0x73,0xe4,0x14,0x97,0xf9,0x73,0x65,0xdf,0x30,0x98,0x65, - 0xf3,0x5a,0x96,0x5d,0xd6,0xc9,0x7f,0x45,0x7f,0x38,0x70,0x3a,0xbe,0x4d,0x14,0xb7,0x4c,0x27,0x3a,0xb8, - 0x91,0x1b,0x27,0x87,0x00,0xf9,0x4a,0x94,0x01,0xc2,0x87,0x0e,0x20,0x3e,0x85,0x2c,0x72,0x58,0x0d,0x79, - 0x34,0x15,0x0b,0x9a,0x2e,0xb2,0x29,0xf6,0x11,0xd3,0xf9,0x5e,0x0a,0xd1,0x43,0xf4,0x4d,0xe2,0xa5,0x40, - 0x34,0x7b,0x4a,0x83,0xfd,0xb2,0x21,0x26,0xc1,0x1c,0x3e,0xe0,0xfa,0x76,0x61,0x38,0x68,0xe4,0x64,0x90, - 0x55,0xd2,0x87,0x0a,0x32,0x26,0xaa,0x61,0x23,0x30,0xe3,0x1a,0x3b,0x60,0xdc,0xaa,0xe1,0x08,0x5a,0x27, - 0x1b,0x6b,0x0c,0xe4,0x2d,0xf2,0x79,0xad,0x0c,0x4c,0x2c,0x83,0x0b,0x8e,0x69,0x5b,0x26,0xcd,0x51,0xe8, - 0xb6,0x03,0x03,0x69,0x01,0xbc,0xd5,0x70,0x5b,0x73,0x2c,0x51,0x10,0xba,0x4b,0x1d,0x0a,0x2a,0x1e,0xa4, - 0x2c,0xac,0x29,0xd1,0x51,0xda,0xdc,0x1c,0x74,0xd5,0xc9,0xde,0xb7,0x0d,0x00,0xb7,0xab,0xe6,0x3a,0xa9, - 0xa2,0xda,0xaf,0xa8,0xe8,0x1f,0xfa,0xf5,0x64,0x86,0xb0,0xdd,0xb2,0x83,0xf1,0xab,0xaa,0x5a,0xbd,0xac, - 0xda,0xbd,0x9c,0x24,0x15,0x3a,0x68,0x3b,0x3b,0x21,0x7e,0x51,0x38,0x49,0xac,0xa6,0x87,0x19,0x5d,0x7e, - 0x84,0x67,0x3f,0x87,0x37,0xf0,0x4d,0x9f,0xbc,0x9d,0x63,0x82,0x6f,0xf1,0x8e,0xdd,0xab,0x60,0xa5,0x30, - 0x7d,0x47,0x44,0x9b,0xd9,0xac,0x05,0x62,0xac,0x31,0x29,0x5b,0xf2,0x9e,0xb9,0x08,0x2f,0x42,0xbc,0x44, - 0x2c,0xf5,0xce,0x12,0x6c,0xb9,0xf5,0x5a,0xfa,0x2e,0xca,0xba,0x2a,0x53,0x49,0x0a,0xd5,0xc6,0x60,0x4c, - 0x40,0x33,0x95,0x25,0xf3,0x56,0xf8,0x8e,0x28,0x4b,0x69,0x42,0xda,0x42,0xe3,0x87,0xe2,0xd6,0xf8,0x67, - 0xa4,0xaa,0x68,0xb9,0xee,0x59,0x9a,0x51,0xdc,0xa0,0x74,0x8c,0xe0,0x9d,0x0d,0x9d,0xd0,0xc2,0xc7,0x55, - 0x8f,0x95,0x4d,0xaf,0x21,0x06,0x44,0xa0,0xb6,0x22,0x02,0x1b,0x50,0x87,0xbf,0x78,0x24,0xe1,0x59,0x7b, - 0x3a,0x12,0x3a,0x42,0x68,0x61,0xe0,0x1e,0x06,0x04,0x4f,0x84,0x8d,0xb5,0x49,0x1c,0x35,0xe1,0x2e,0x8b, - 0x46,0xec,0x9b,0xec,0x7c,0x57,0x89,0x1d,0xca,0x20,0xd7,0x8d,0xcb,0xd1,0x55,0x4e,0x0b,0x01,0x42,0x3a, - 0x6e,0x13,0xff,0xd7,0xb6,0x45,0xcd,0x4c,0xe6,0xe0,0xaf,0xc1,0x4f,0x6e,0x2b,0xbc,0x69,0xce,0x17,0xc8, - 0x1a,0x6a,0x81,0x81,0x3b,0x82,0x32,0x25,0xe1,0x9f,0xcc,0x89,0xb3,0x67,0xc7,0x4a,0xde,0x03,0xd7,0x8a, - 0x95,0xa3,0x97,0x05,0x8a,0x44,0xb4,0x1e,0x3e,0x49,0x5e,0x1b,0xee,0x40,0x3f,0xb0,0x08,0x79,0x98,0x42, - 0x2b,0x4e,0xa3,0x86,0x25,0xf7,0x87,0x8a,0x8f,0x83,0x10,0x72,0x84,0x0c,0x31,0xc4,0xa6,0xc5,0x02,0x09, - 0x15,0x04,0x10,0xf6,0x05,0xec,0x77,0xac,0xeb,0xe0,0x0c,0x7e,0x42,0xea,0x26,0x03,0x46,0x49,0x21,0x6f, - 0x07,0x0b,0xad,0xf8,0xd9,0x02,0xe2,0x8b,0x10,0x21,0x25,0xb8,0x70,0x91,0x33,0xfb,0x7e,0xac,0xcf,0x6f, - 0x22,0x9c,0xb2,0x93,0xc6,0xd9,0x8a,0xaf,0x58,0xf0,0x65,0x29,0xc6,0x89,0xa2,0xf6,0x2b,0xe2,0xf1,0x5d, - 0x48,0x2f,0x67,0xd4,0xd5,0xa4,0x01,0xf9,0xf8,0xa9,0xd8,0xba,0xe7,0x7d,0x29,0x25,0xf7,0xb0,0x9d,0x06, - 0x46,0x04,0xfb,0x0e,0x30,0x6a,0xd8,0x43,0x3a,0x47,0x65,0x6b,0x89,0xcb,0x68,0x74,0x44,0x7f,0xe2,0x2f, - 0xf8,0x13,0x5e,0xd6,0xa1,0xfa,0x24,0x69,0x40,0xd7,0x40,0xd5,0xfb,0x96,0x61,0xfc,0x69,0x0e,0xb8,0x77, - 0x5a,0x54,0x03,0xfb,0x6f,0xe0,0xcc,0xad,0x84,0xab,0xac,0x57,0x85,0x31,0x8c,0xfa,0x6e,0x3c,0x0e,0xfa, - 0xb5,0xd8,0x3d,0x8c,0x1a,0xe7,0xcf,0xa9,0x25,0x15,0x74,0xf7,0x2e,0x6b,0x6d,0x41,0x43,0xac,0x2a,0x3e, - 0x91,0xfd,0x30,0x1f,0x05,0x63,0xf8,0x38,0x07,0x81,0x0a,0x1f,0xe4,0x4d,0xc9,0x65,0xed,0x09,0x66,0x6f, - 0x65,0xaf,0x55,0x70,0x52,0xc7,0x5f,0x32,0x41,0xc7,0xf1,0x62,0x35,0x3a,0x75,0x5e,0x00,0x9c,0x7c,0x55, - 0x6b,0x65,0x6a,0x1f,0x0d,0x97,0x56,0xb8,0x77,0x65,0x5a,0xf3,0xcc,0xcd,0x6c,0x07,0x9c,0xad,0x95,0xb2, - 0x86,0x83,0xb9,0x95,0x14,0x48,0x7d,0x4d,0x43,0x49,0xbc,0xbd,0xb8,0xe7,0xb1,0x29,0x50,0xc3,0xcb,0xc8, - 0xd1,0xf5,0x85,0xfa,0x33,0x62,0x04,0x84,0xa7,0x28,0xf6,0xf8,0xaf,0x52,0xc9,0xcf,0x3c,0x4d,0x1f,0xa1, - 0x4e,0xc8,0x1f,0x87,0xac,0xd9,0xcb,0x46,0xc7,0x27,0x46,0x47,0x9d,0x69,0x6f,0xf0,0x6d,0x30,0xfa,0x52, - 0x2b,0xaf,0xb0,0x71,0x91,0x9c,0xc2,0xc0,0x6c,0x9c,0x73,0x5c,0xf4,0x31,0xa4,0x63,0xf4,0x33,0x4f,0xce, - 0x39,0xb5,0x4e,0x2e,0xf8,0xf7,0xf7,0xe4,0x1a,0x3f,0x59,0x32,0xc6,0xcf,0x22,0x19,0x73,0xea,0x2c,0x59, - 0xf0,0xef,0x97,0xe4,0x8c,0x7f,0x4f,0x93,0x6b,0xfe,0xbd,0x48,0xf6,0xf0,0x43,0x54,0x13,0xe2,0x65,0x8c, - 0x57,0x49,0xc6,0xc9,0x67,0xc9,0x9e,0xd7,0x83,0x23,0x35,0x69,0xbe,0x90,0x90,0x18,0x64,0x0d,0x66,0xca, - 0x9b,0x82,0xdd,0x8c,0x74,0x44,0x53,0xa5,0xdf,0x95,0xea,0xc5,0x5a,0x83,0x95,0x3a,0x93,0x4f,0xea,0x44, - 0xc7,0x0e,0x9d,0xeb,0x18,0x2f,0x55,0xa2,0xb6,0xe1,0x34,0x37,0x81,0x39,0x71,0x12,0xb1,0x01,0x1b,0x51, - 0x3c,0xa9,0x7e,0xe7,0x70,0x87,0xc8,0x66,0x3c,0xde,0x41,0x1c,0xe7,0x35,0xdb,0x21,0x6c,0x9a,0x76,0x9d, - 0x9a,0x28,0xca,0x94,0x23,0x5c,0xaa,0x68,0x40,0x44,0x4d,0x81,0x47,0xdc,0xee,0x64,0x38,0x31,0xae,0x81, - 0x66,0xe7,0x24,0xa9,0xf0,0xce,0x8b,0xc4,0x35,0x19,0x46,0x62,0xeb,0x4c,0x82,0x59,0xb7,0x7b,0xc3,0x10, - 0x10,0x53,0x62,0x5c,0x29,0xdb,0xba,0x91,0xa6,0x3a,0xb7,0x82,0x99,0x18,0x69,0xc9,0xfb,0x1a,0x21,0xf6, - 0x35,0xe2,0x5d,0xd9,0xf3,0xb2,0x60,0xc3,0x27,0x67,0xae,0xe7,0x6a,0x14,0x9e,0x44,0x24,0xa1,0x31,0x15, - 0x9b,0xf8,0xf6,0x36,0x8c,0xaa,0xa5,0xd9,0x88,0x47,0xcb,0x3c,0xac,0x6f,0x31,0x39,0x66,0x4d,0xab,0x32, - 0x3b,0xf6,0x6c,0xcf,0x30,0xbf,0x9a,0xe0,0x51,0xba,0x95,0x1a,0x92,0x2c,0x1e,0xca,0x8a,0xfa,0x68,0x51, - 0xcf,0x18,0xfe,0x81,0xca,0xfe,0x4e,0x9d,0xfb,0xc9,0xca,0xc8,0xe6,0xa8,0x7c,0x97,0x8d,0x87,0x9e,0x90, - 0x39,0x33,0xf0,0x90,0x9a,0x65,0xd3,0xc8,0xd3,0x5a,0x86,0x5e,0x80,0xab,0x52,0x79,0x23,0xe3,0x88,0xa2, - 0x82,0xac,0xa8,0x61,0xb9,0xa3,0x7e,0x86,0x6b,0xad,0x13,0xae,0xb9,0x34,0x2d,0x96,0x33,0xa1,0x65,0xa7, - 0x5e,0x19,0x93,0x34,0xd4,0x75,0x22,0xc0,0x10,0xe1,0x19,0x5d,0xab,0x7e,0x6b,0xd5,0xeb,0xa5,0xb2,0x9c, - 0x4c,0x89,0xfa,0x78,0x59,0xaa,0xc8,0xa8,0x2c,0x5c,0x52,0xa2,0x24,0xe8,0x84,0x6a,0x56,0x3e,0xe0,0x9a, - 0x79,0xaf,0x89,0xaa,0x92,0x8e,0xaa,0xaa,0x1f,0xc8,0x61,0x4d,0x68,0x8f,0x91,0xf6,0x1e,0x15,0x9a,0xc8, - 0x0f,0x7c,0x2a,0x85,0xd1,0x46,0xcc,0x93,0xd3,0x86,0x36,0xc6,0xf5,0x3f,0x81,0x5c,0xb5,0x20,0x38,0x5f, - 0xaf,0x57,0x21,0x2b,0x80,0x5a,0x45,0x9b,0x93,0xc4,0x04,0x99,0x8a,0x1e,0x86,0x7e,0x85,0x1c,0xf4,0x64, - 0x99,0x94,0xe1,0x5c,0xcc,0x9c,0xcb,0x43,0xc8,0x05,0x3b,0x96,0x6c,0xc9,0x5e,0x8e,0xa3,0xda,0x9f,0xd3, - 0x5e,0x4f,0xa5,0x72,0x15,0xb1,0x0c,0x97,0x4e,0xfc,0x19,0x75,0xc6,0x5b,0xf6,0x0a,0xf0,0x87,0x88,0xde, - 0xd5,0x4a,0xe2,0xba,0x04,0xea,0x32,0x6b,0xed,0x8f,0x82,0xc6,0xac,0x33,0x60,0x10,0xc0,0xc5,0xdc,0xf2, - 0x35,0x57,0x8f,0x8b,0xea,0x77,0x4c,0x13,0x00,0x0b,0x86,0x7d,0xf3,0xf4,0x7a,0x64,0x0b,0xd2,0x54,0xc4, - 0xc4,0x8e,0xbe,0x57,0x11,0xcf,0x7c,0x55,0x5c,0x6b,0xa0,0xb5,0x07,0x7c,0xa1,0xff,0xb9,0x9a,0x49,0xa1, - 0x6b,0x5e,0xaf,0xef,0x1d,0x1c,0xe8,0x8e,0xe9,0x30,0x6a,0xf0,0x58,0xff,0x2b,0x2d,0xa8,0x2b,0x22,0xb8, - 0x2a,0xf3,0x65,0x04,0x24,0xb6,0x7b,0x28,0x6c,0x7b,0xa3,0xc6,0x08,0x63,0xf7,0xfd,0xc6,0xc1,0x9e,0x51, - 0x2b,0x6c,0xc2,0x39,0xa1,0xe1,0x15,0x6d,0x1e,0x0b,0xc7,0x17,0xc9,0x5c,0x2c,0x92,0x42,0x9c,0x11,0xce, - 0xbb,0xa6,0x03,0x65,0x4c,0x67,0xcb,0x25,0x1d,0x06,0x84,0xe9,0x2e,0x1b,0xa2,0xc7,0xe4,0xc2,0x24,0xbc, - 0x94,0x84,0xea,0x55,0x20,0xbd,0x85,0xd0,0x4d,0x10,0x47,0x6f,0x10,0x7d,0x4c,0xc7,0x4f,0x7a,0x16,0x8f, - 0x37,0xe2,0x72,0x58,0x24,0x05,0x93,0xe9,0xaf,0x81,0x26,0x68,0x06,0x8a,0xc1,0x82,0xe8,0xd7,0xb9,0x67, - 0xa4,0xe9,0x71,0x52,0x88,0x12,0x8d,0x5c,0x90,0x81,0xfc,0xc0,0x07,0x09,0xd1,0x8f,0xcc,0x64,0x07,0x2c, - 0x71,0x6e,0x15,0x90,0x10,0x78,0x51,0x89,0x2c,0x87,0x0b,0xef,0x30,0xcc,0xd5,0xd9,0xc3,0x72,0xe0,0xa5, - 0xa1,0x08,0x23,0x56,0x68,0xe8,0x2f,0xb8,0x2e,0x6d,0x4c,0x92,0x0f,0xb4,0xfb,0x9e,0xa2,0xfc,0x86,0xd4, - 0x3f,0xa2,0xf0,0xa2,0x11,0xfe,0x26,0xc7,0xe6,0x0b,0x90,0x4c,0xa7,0xe9,0xe4,0x8b,0x3d,0xa9,0xb9,0x50, - 0xcc,0x85,0xda,0x65,0x36,0xb4,0x7e,0x86,0xb6,0x2f,0x14,0x75,0x3c,0x73,0xbb,0xbd,0x11,0x24,0xcb,0x16, - 0x74,0xe6,0x5b,0x84,0x4c,0x53,0x8b,0x39,0x6e,0x10,0x38,0x38,0x57,0x14,0x2c,0x1c,0xb7,0x5d,0x31,0x19, - 0xc2,0xd2,0x46,0x86,0x2b,0x47,0x30,0xcd,0x99,0xba,0x35,0xf1,0x37,0x89,0xc6,0x9f,0x47,0xc3,0x9f,0x08, - 0xe5,0xaf,0x04,0x6d,0x1d,0xd0,0x60,0xeb,0x35,0x5e,0x27,0xea,0xf5,0xd0,0x12,0xab,0xd5,0x66,0x03,0xe9, - 0xb8,0xc6,0x7a,0xa6,0x43,0xa6,0xc3,0xe9,0xdc,0x99,0x49,0x7b,0xcb,0xd5,0xa4,0x03,0x6a,0x3b,0x60,0xdd, - 0xe7,0xb4,0xd9,0xd3,0xa8,0x21,0x19,0x9f,0x10,0x46,0x5b,0x9d,0x24,0x4f,0xc3,0x15,0x75,0x86,0xcf,0x7b, - 0x4d,0xaa,0x01,0x31,0xf1,0x58,0x09,0x36,0x10,0xfe,0x42,0x98,0x57,0x81,0x1c,0xae,0xd1,0xe5,0xa8,0x57, - 0x9e,0xde,0x39,0xf3,0xa8,0x47,0x38,0x97,0x68,0xca,0xd9,0xca,0x84,0x90,0x5e,0x3a,0x50,0xd4,0xad,0x67, - 0x53,0x30,0xa7,0x03,0x52,0x78,0x6e,0x47,0x5b,0x6a,0xbd,0x99,0x7f,0xac,0x8a,0x99,0x67,0x42,0x9f,0xc2, - 0xd5,0x92,0xf5,0x15,0x21,0x95,0x02,0xe0,0x43,0xab,0xae,0x48,0x1e,0xc0,0x17,0x67,0x26,0xaa,0x0c,0xed, - 0xcf,0x19,0xcc,0x5d,0x66,0xea,0x98,0x54,0x9d,0x5c,0x82,0x5a,0x62,0xd1,0x34,0x7e,0xe9,0x45,0xb9,0x34, - 0xbc,0xce,0x85,0x3f,0xed,0x29,0x62,0x10,0xd1,0x66,0xd3,0x20,0x30,0xa5,0x72,0xcc,0x80,0x16,0x98,0xd7, - 0x29,0xd3,0x03,0xdc,0xd0,0x34,0xda,0xec,0x36,0x44,0x7e,0x46,0x11,0x59,0x5b,0x1d,0x64,0xcb,0x06,0xe1, - 0x71,0xe9,0xcb,0x46,0x35,0xed,0xfa,0xb8,0x54,0x62,0x4d,0xf5,0x15,0xc4,0xff,0x59,0xf2,0x0c,0xee,0x49, - 0x43,0x9b,0x02,0x29,0x5f,0x97,0x40,0xd8,0x83,0x68,0x0d,0x0b,0xb5,0x7d,0x84,0xef,0xab,0x7e,0x24,0xe0, - 0xca,0x88,0x08,0x21,0x6e,0x98,0xa1,0x0c,0xcd,0x9e,0x7b,0x70,0xaf,0x42,0x9c,0x4e,0xac,0x3e,0x44,0xf9, - 0x57,0x04,0x17,0x2b,0xb9,0x6f,0xf1,0xff,0x3e,0x91,0xf3,0x20,0x05,0xfa,0xe1,0xf9,0x28,0xa0,0x97,0x73, - 0x66,0x2a,0x0a,0xd1,0xe9,0xd7,0x91,0x8a,0x9b,0x23,0x42,0x55,0x71,0x29,0xac,0x61,0x53,0x3c,0x13,0x96, - 0xc4,0x8c,0x97,0x8c,0x98,0x26,0x0e,0x53,0x11,0xb3,0x4e,0xd8,0x95,0x39,0xfe,0x0b,0xb1,0x10,0x67,0xe2, - 0x5a,0x8c,0xc5,0xa5,0x67,0x5b,0x0d,0xb2,0x5c,0x93,0x3b,0x44,0x36,0x19,0x75,0x65,0x93,0x6f,0x49,0xd9, - 0xec,0x2d,0x85,0x21,0x43,0x38,0x49,0xb0,0x0d,0x52,0x22,0xf2,0x55,0x97,0x22,0x5a,0xe0,0x95,0xca,0x78, - 0x55,0x7a,0x32,0xe7,0xac,0x41,0x44,0x49,0xfa,0x1a,0x94,0x46,0x6a,0xec,0x1d,0xac,0x2a,0x96,0xd0,0xf0, - 0xb0,0x51,0x20,0x63,0x0d,0x3b,0xe2,0x92,0x81,0x57,0x23,0x0e,0xd6,0x2f,0xc9,0xbb,0x8c,0xb7,0xf8,0x72, - 0xd8,0xea,0x64,0xd5,0x7d,0xf8,0x22,0xc2,0x3f,0xa0,0x3a,0x85,0xe8,0x83,0xe0,0xc6,0xa7,0x64,0x09,0xc5, - 0x2b,0x49,0x59,0xac,0xee,0x01,0xb0,0xde,0x4f,0xb8,0xd9,0x09,0xa6,0x4c,0xe5,0x88,0xe8,0x9b,0x70,0x95, - 0x54,0xd1,0xe8,0x78,0x8f,0x86,0x79,0xd2,0x32,0xb2,0x5d,0xb9,0x70,0x54,0x44,0x44,0xb8,0x00,0x32,0x98, - 0x4b,0xf4,0x12,0x81,0x64,0x94,0xdc,0x09,0xa6,0xd0,0x85,0x6f,0x0a,0x5d,0xd3,0x84,0x15,0xc7,0xd5,0x49, - 0xd4,0xe5,0xbf,0x4a,0xc4,0x0d,0x9d,0x63,0xb3,0x63,0xa2,0xa3,0x6c,0x30,0x90,0x93,0x96,0x55,0xfe,0x24, - 0x1a,0x19,0x17,0xad,0xef,0x0f,0x68,0x84,0x3f,0x84,0x54,0x63,0x16,0x4e,0x04,0xcc,0x4e,0xd8,0x9f,0x9e, - 0x18,0x45,0x22,0xd3,0x68,0x64,0x34,0x33,0x3f,0x84,0x1c,0xdd,0x62,0x06,0xd4,0xb4,0x17,0xce,0x59,0xb9, - 0xd6,0x9f,0x50,0x9e,0x52,0x64,0xe3,0x7e,0x2a,0x1d,0xbe,0x9f,0xf0,0x82,0xa7,0x11,0x9c,0xd1,0x02,0x46, - 0x31,0x6c,0x1e,0x47,0xa8,0x62,0xd4,0xaa,0x00,0x81,0xa8,0x94,0x35,0x83,0xfa,0x2a,0xdc,0x03,0x3e,0x8c, - 0x7f,0xa0,0xbf,0xaa,0xcd,0xf6,0x07,0xaa,0xb9,0x98,0x90,0x71,0x61,0xe5,0x64,0xbc,0xf0,0x13,0x68,0x23, - 0x99,0xe4,0x98,0x80,0x4f,0x55,0xc0,0xc0,0x70,0xc5,0x6c,0x2b,0xb1,0xdf,0x17,0x00,0xf3,0xa0,0x9f,0xaa, - 0x81,0xd1,0xdf,0x71,0x60,0x3a,0x8b,0x46,0x1d,0xde,0xdb,0xd0,0xba,0x68,0xd9,0x4f,0x8c,0x65,0x7c,0x5a, - 0xb2,0xc9,0xc6,0x5f,0xd4,0xab,0x6c,0x73,0xed,0x84,0x44,0x2c,0xbc,0xaa,0x2c,0x3f,0xf2,0x12,0x0e,0x4c, - 0x3d,0x59,0xc7,0x27,0xa2,0xf6,0xcc,0xd5,0xd9,0x3a,0x64,0x4b,0x3c,0x5a,0x44,0xa3,0x70,0x96,0x64,0x83, - 0xbd,0x8b,0x9c,0x0e,0x56,0x44,0xab,0x52,0x4f,0x83,0xbc,0x62,0x59,0xd0,0x19,0x91,0x4d,0xe9,0x19,0x02, - 0xba,0x56,0x4b,0x04,0x42,0x20,0x7c,0x33,0x87,0x64,0x2c,0xab,0xde,0xca,0x4a,0x96,0x44,0xf6,0x50,0x36, - 0xa5,0x8e,0x34,0x36,0xa1,0x2c,0xf6,0xe3,0x7d,0x33,0x4f,0x6b,0x04,0xb6,0xd0,0x1f,0xe3,0x3b,0xec,0xbf, - 0x26,0xfe,0xc8,0x98,0x60,0x4d,0x1e,0x87,0x99,0x27,0xa1,0xb3,0xa8,0xa8,0x0a,0x40,0x5f,0x8e,0x88,0x05, - 0x5a,0xd2,0xb7,0x19,0x8e,0x9b,0x28,0xd6,0xcd,0x14,0x9d,0xb5,0x45,0xf1,0x3c,0xa1,0xe2,0x85,0x2a,0xee, - 0x89,0x42,0xe7,0x18,0xa5,0xe7,0xa8,0x52,0x86,0x99,0x65,0x69,0x32,0xf8,0x85,0x15,0xc4,0x21,0x15,0xa5, - 0xcc,0xce,0xf2,0xd7,0xc6,0x9d,0x99,0x26,0x85,0x60,0x80,0x37,0xbf,0x41,0x77,0x2c,0xb5,0x24,0xbe,0xd6, - 0xf2,0xd8,0x9e,0x2d,0x36,0x07,0xa4,0x72,0x39,0x76,0x73,0x3d,0x98,0xf0,0x06,0xd3,0x1c,0x9b,0x2b,0x40, - 0x9b,0x8d,0xe8,0x9f,0x95,0x86,0x33,0xe2,0xc0,0x56,0x03,0xb6,0x54,0xc8,0x15,0x66,0xa3,0x7d,0xce,0x3d, - 0x24,0x4c,0xce,0xc4,0xf8,0x3c,0x8a,0x81,0x72,0x36,0x1e,0x26,0xf3,0xbc,0x33,0xfc,0x88,0x73,0x56,0x4c, - 0xc0,0x8a,0xd9,0x6a,0xb5,0x94,0xa5,0x39,0x81,0x50,0x4e,0xa7,0x30,0x09,0xc2,0xa6,0xa7,0xfc,0x6e,0x2c, - 0x25,0x6e,0x9a,0xef,0x89,0x71,0x30,0x69,0x5b,0x5b,0x23,0x14,0x9b,0x23,0x44,0x70,0xa6,0x29,0x66,0xd3, - 0x38,0xbe,0x81,0x74,0xac,0x64,0x4a,0x2c,0xbf,0x4e,0xb1,0x07,0x64,0x61,0xf4,0xf5,0xc5,0xc9,0xae,0xb2, - 0x85,0x84,0xd5,0x06,0xfb,0x48,0x22,0x84,0x8c,0x84,0x38,0xbb,0xc3,0x1a,0x77,0x4b,0x74,0xa5,0x49,0x58, - 0x42,0x69,0x79,0xd2,0x96,0x97,0x8e,0xf2,0x98,0xb5,0xeb,0x5b,0x76,0x70,0xca,0x09,0xc1,0xf6,0x45,0x29, - 0x4f,0x6a,0x5f,0x79,0x12,0x4a,0x27,0xc4,0x05,0xd9,0xf9,0x7d,0x72,0x40,0x6b,0xd2,0x4c,0x7b,0x70,0x80, - 0x05,0xd2,0x11,0xb9,0x90,0xe0,0xdc,0xe2,0xdc,0x6e,0xcb,0x8d,0x70,0x5e,0x60,0x8c,0x9e,0xd3,0xfd,0x86, - 0xbd,0xdb,0xe1,0x1d,0xdc,0x9e,0x34,0x3a,0xb0,0x42,0x6f,0x01,0x93,0x67,0x50,0x3c,0x37,0xcb,0x68,0xb3, - 0x2b,0x8e,0x38,0xe3,0x36,0xca,0xb1,0x0a,0xb0,0x76,0x92,0x20,0x14,0xca,0xb6,0xf1,0xc0,0xe7,0xda,0x86, - 0x22,0x19,0xc3,0xaf,0xbf,0x61,0x64,0xf9,0xa2,0x61,0x0a,0xc1,0x9e,0x88,0x38,0xd3,0x5b,0x44,0x03,0x3b, - 0x61,0x7a,0x5f,0x3d,0xa9,0x1b,0xf4,0x49,0x7b,0x75,0x46,0xbe,0x8b,0xfb,0xf7,0xfb,0x87,0xf1,0xb6,0x5a, - 0x66,0xe4,0x3b,0xe7,0xb7,0x4a,0x43,0x2b,0x27,0x76,0x43,0x1b,0xef,0x40,0x45,0xfc,0x3a,0x01,0x6e,0x37, - 0xf1,0x0e,0x72,0x15,0xaa,0x9a,0xbd,0x53,0xa5,0x96,0x8b,0x7b,0x12,0xc4,0x37,0x2d,0x6b,0x00,0xd6,0x88, - 0x32,0x9c,0x42,0xd7,0xc2,0xe0,0x39,0x66,0x3c,0xd7,0x86,0x4b,0x13,0x51,0x17,0xf6,0xed,0x6c,0xd2,0xa8, - 0xb9,0x83,0x17,0x10,0x8a,0x6d,0x19,0x16,0x0d,0x2b,0xc8,0x8a,0xf9,0xb0,0x7f,0x06,0x8a,0xac,0x60,0x27, - 0xc1,0x8d,0x27,0xee,0x79,0xb6,0xa5,0x56,0x60,0x93,0xfb,0xdd,0x8c,0x5d,0xb3,0x18,0xc5,0xc0,0x33,0x0d, - 0xbf,0xeb,0x75,0xe6,0x5a,0x78,0xa6,0x89,0xe5,0xc1,0xde,0x94,0x86,0x58,0x16,0xf0,0xcd,0xaa,0xad,0x8a, - 0x7f,0xce,0x77,0x50,0x7a,0xe6,0xfe,0xb5,0xef,0x81,0x7d,0xa3,0xe4,0xc9,0x47,0x50,0x09,0xc4,0x4f,0x79, - 0xcf,0xbb,0x04,0x91,0xfb,0x6f,0x74,0xd4,0x72,0x29,0xd8,0x90,0xf1,0x13,0x91,0x16,0xfa,0x09,0x51,0x8c, - 0xf1,0x7b,0x12,0xeb,0x07,0xdf,0x7e,0xbf,0xb9,0xfc,0xf5,0x48,0x8e,0xea,0x7e,0xb0,0x13,0xf4,0x65,0x5c, - 0xc7,0x1c,0x46,0xdf,0xb3,0x16,0xf7,0x01,0x6c,0x0b,0x50,0xba,0x8e,0x41,0x9a,0x2c,0xc4,0xf8,0xa3,0xdd, - 0x09,0x95,0x94,0xdd,0x9d,0x0f,0x0a,0xde,0xa1,0x44,0xee,0x26,0xa8,0x13,0x1b,0x0f,0x44,0x16,0x5f,0xb4, - 0x06,0x81,0x00,0xfe,0xf7,0x13,0xea,0x45,0x24,0xe8,0x37,0xf7,0x76,0x25,0xeb,0x63,0xda,0xad,0x29,0x74, - 0x19,0x04,0xc3,0x86,0x24,0xae,0xd6,0xbe,0xfb,0xa1,0xd4,0x31,0x72,0x51,0x9d,0xf4,0xab,0xe3,0x0d,0xdc, - 0x09,0xd0,0x4d,0x9b,0x76,0x7f,0xd8,0x2b,0x6e,0x3d,0xa8,0x2e,0xce,0x82,0x38,0x58,0xa4,0xf5,0x39,0xdb, - 0x14,0x8d,0xd4,0xe3,0x96,0x62,0xe8,0xad,0xf7,0x69,0x47,0x3b,0x36,0x32,0xde,0xef,0x2b,0x59,0x5e,0xbf, - 0x93,0xd0,0x36,0x17,0xea,0xae,0x98,0xdb,0xe2,0x5d,0x4e,0xb3,0x8b,0xa0,0x61,0xa1,0xf7,0xa8,0xb5,0x3f, - 0xd8,0xa0,0xb2,0x94,0xb3,0x96,0x03,0x90,0x71,0xaa,0xce,0x7c,0x0f,0x6d,0x03,0x9a,0xc0,0x0a,0xf0,0xbd, - 0x2e,0x60,0x16,0x4f,0xdf,0x56,0xc3,0xb6,0xd6,0xa4,0x60,0x63,0xa7,0x39,0xff,0xe2,0xb0,0xc7,0x2f,0x0e, - 0x56,0x1c,0xaa,0x78,0xd4,0x34,0x7b,0xec,0xda,0x7f,0x96,0x3f,0x2d,0xca,0xce,0x5a,0xf0,0xd7,0xa2,0x89, - 0x8c,0x70,0x70,0xaf,0xc7,0x49,0x8c,0x85,0x4d,0xdd,0x04,0x13,0xea,0x21,0xf3,0x80,0xf5,0x17,0x25,0xa3, - 0x76,0xf1,0xaf,0x40,0xc1,0xe1,0x78,0xa7,0x5f,0x16,0x24,0xa9,0x3d,0xa8,0x8f,0x7b,0xdf,0xf5,0x9b,0x55, - 0x7a,0xce,0x36,0x4c,0x6a,0xcb,0x53,0x8e,0x92,0x42,0x54,0x00,0x3f,0xb7,0x25,0x2b,0x50,0xc6,0x29,0xe9, - 0x08,0x9f,0xae,0x40,0x9b,0x8d,0x40,0x0e,0x25,0x5c,0x0d,0xc3,0x52,0xcf,0xb9,0x12,0x78,0x26,0x8e,0x15, - 0x2f,0x59,0x15,0x47,0x73,0x2a,0xd9,0x69,0xec,0x2b,0x65,0xac,0xb8,0x10,0xc6,0x73,0xeb,0xf5,0x32,0x63, - 0x6f,0x45,0xfa,0x21,0x3e,0x90,0x07,0x0c,0x5a,0x02,0xa3,0x79,0x08,0x19,0xd2,0x1b,0x84,0xb1,0x3a,0x2f, - 0xe6,0xc4,0xa3,0x73,0x0d,0x0d,0x49,0x13,0xc6,0xe9,0x27,0x80,0xee,0x6d,0xa6,0x68,0xb9,0x9b,0x6f,0x9c, - 0x5f,0x2b,0xd1,0x84,0x55,0x1e,0x2b,0x0f,0x38,0x6c,0xa6,0x8c,0xc8,0x86,0xec,0x41,0x52,0x0e,0xfb,0xfd, - 0x8c,0xb6,0x2b,0x0c,0x14,0xb3,0x13,0x4d,0x46,0x87,0x29,0x0e,0x78,0xe7,0x46,0xe9,0xb9,0x95,0x7c,0xd4, - 0x30,0xa9,0x23,0xd7,0x79,0xde,0x5c,0xeb,0xb5,0x6c,0x27,0x35,0xe7,0xdd,0x40,0xb2,0xe2,0x83,0x13,0xac, - 0xdc,0x05,0x5c,0xf2,0xa4,0x7a,0xa8,0x92,0x1f,0xeb,0xed,0x5a,0x5d,0xd0,0x00,0xf0,0x57,0x54,0x62,0xab, - 0x11,0x21,0x5d,0x89,0x15,0x91,0x1a,0x44,0xfa,0x6a,0x16,0x2a,0x57,0xb2,0x95,0x32,0xa9,0x14,0x1f,0x3f, - 0xc1,0x4f,0x39,0xa2,0x59,0xa3,0x29,0xfe,0x08,0x91,0x57,0x62,0xbc,0x6c,0xff,0x00,0x4f,0xab,0x55,0x9c, - 0x81,0xc0,0x85,0x04,0x22,0x83,0x4d,0x04,0xb0,0x3f,0xfd,0xb8,0x7d,0xa5,0xe4,0xcd,0xd3,0x5e,0x6f,0x6e, - 0x80,0x9a,0x38,0x13,0xf5,0x35,0x1c,0xd2,0xba,0xbe,0xcd,0x72,0xa2,0xc1,0xf9,0x9b,0x95,0xfd,0x06,0x5b, - 0x78,0xd5,0x88,0x38,0x33,0xeb,0x92,0x7f,0x2b,0xdb,0xbb,0x95,0x6f,0x71,0x47,0x6d,0xad,0x30,0x8e,0xc0, - 0x54,0xab,0x9a,0xdc,0x0c,0x8b,0xd1,0x73,0x38,0x43,0xa9,0xe4,0x00,0x72,0xe6,0x59,0xc8,0x16,0xff,0x73, - 0x1b,0x95,0x83,0x0b,0x20,0xba,0x9f,0x0e,0xea,0x77,0x6b,0x8b,0xf3,0x56,0x8b,0x73,0x6e,0xb1,0x3d,0x09, - 0xba,0x65,0xe6,0xb8,0xed,0x7c,0x57,0xd1,0x84,0x5d,0xca,0xe8,0x2b,0x9e,0xf6,0x60,0x95,0xab,0x89,0xa9, - 0xe9,0x1f,0x84,0xad,0x4d,0x73,0xdc,0x1f,0xeb,0x6d,0xc8,0xe8,0x8a,0x8b,0xd3,0xb0,0xb9,0x2d,0xd4,0xf2, - 0x6e,0x9b,0x71,0x86,0xca,0xd4,0x38,0x1a,0xe8,0x90,0xdd,0xac,0xf0,0x2e,0xdd,0x5b,0x72,0x0d,0xd5,0xd0, - 0x31,0x01,0x3f,0xb5,0x34,0x28,0xd3,0xcb,0x57,0x4c,0x38,0x65,0x4c,0x40,0xf5,0x83,0x41,0xd0,0xf7,0x8d, - 0x3d,0x32,0xbf,0x1a,0xc8,0x01,0x54,0x44,0xd4,0x41,0x10,0x45,0x27,0x54,0x01,0x9c,0xb2,0x67,0xc4,0x17, - 0x49,0x8f,0x2f,0x72,0x60,0x19,0x50,0x3e,0x6a,0x75,0xba,0x2b,0xcf,0x1f,0xc2,0x19,0x15,0xd8,0x68,0x05, - 0xb5,0x02,0x19,0xfe,0xd1,0xe6,0x90,0x05,0xdb,0x3b,0x16,0x61,0xae,0xa2,0x67,0xe8,0xf2,0xda,0xe6,0xb1, - 0x84,0xcd,0x63,0xa9,0x6e,0x31,0x60,0xf4,0xef,0xda,0xe6,0xbb,0x49,0xd4,0x88,0x70,0xda,0x3b,0x9b,0x48, - 0xcf,0xbf,0xa1,0x0e,0x3d,0x6a,0x67,0xdb,0x1a,0x9b,0xe7,0x3b,0x94,0x8c,0xad,0x94,0x3f,0x54,0x93,0xe0, - 0xcc,0xf2,0x73,0x59,0x66,0x1c,0x04,0x9b,0xe6,0xa6,0x0e,0x15,0x12,0xb4,0xc8,0xaf,0x36,0xe6,0xff,0x2a, - 0x41,0x33,0x02,0xcc,0x13,0x51,0x63,0x18,0xcd,0x24,0xf1,0x3f,0x61,0x71,0xf8,0x2a,0x29,0x5b,0x49,0xcc, - 0x7b,0x69,0xe9,0x0f,0x62,0x1c,0x34,0x0a,0x24,0xac,0x5c,0x5e,0x69,0x1f,0x08,0xa6,0x0c,0x57,0x51,0x9a, - 0xac,0x40,0xcd,0x4f,0x14,0xe3,0x92,0x12,0xc8,0x43,0x36,0x0a,0x1e,0x6d,0x18,0x3e,0xce,0xd7,0xeb,0x57, - 0xb0,0xd3,0x58,0xa9,0x4d,0x0f,0x21,0x84,0x7a,0xd2,0xc5,0x8c,0x48,0x5d,0xe7,0x7b,0x15,0x4f,0x22,0xec, - 0xba,0x82,0x0d,0xec,0x33,0x20,0xef,0x11,0x02,0xce,0x21,0x5a,0xac,0x0d,0x03,0xfe,0xea,0x5d,0x58,0x12, - 0xf0,0x22,0x93,0x18,0x66,0xfc,0x20,0xf8,0x65,0xab,0x10,0x32,0xbd,0x55,0x78,0xee,0xeb,0xfd,0x73,0xf6, - 0xfb,0x49,0x33,0x8e,0x5a,0xbd,0xf5,0xa1,0x84,0x00,0x24,0x09,0x88,0xaa,0x2e,0x2e,0x67,0xb4,0x23,0x2a, - 0xda,0x1d,0x32,0x0f,0x54,0x28,0xb0,0xe0,0xc9,0xcb,0x47,0x4f,0x1e,0x6b,0x13,0x68,0xc5,0xcb,0x8f,0x82, - 0xba,0xa4,0xb1,0xc4,0xd0,0xdd,0x37,0xa2,0x95,0xb3,0x2b,0x9b,0x35,0x73,0x92,0x99,0x8e,0x0b,0xd0,0x2c, - 0xc2,0xbd,0xc0,0x6d,0xa1,0x29,0x95,0x43,0xbd,0xf9,0x48,0x3f,0xc7,0xaa,0x5e,0xcf,0x50,0xea,0x6b,0xdd, - 0xb6,0x93,0x22,0x71,0xa9,0x46,0xa3,0x15,0x95,0x25,0xad,0x55,0x02,0xe8,0x78,0x36,0xac,0xe9,0x1a,0xbb, - 0x32,0x8b,0xa1,0x22,0x8f,0xe1,0xb4,0xf6,0x14,0xae,0x10,0xef,0x9f,0xfc,0xfa,0xfe,0xe1,0xdb,0x27,0x0f, - 0x1b,0xa3,0xa6,0xf4,0xa5,0x3b,0x43,0xf5,0xec,0x70,0x9c,0xcb,0x4c,0x2e,0xcf,0x0d,0xc9,0xe4,0x9b,0xf8, - 0x49,0x22,0xb4,0x8b,0xe5,0x33,0x22,0x1e,0xa6,0x19,0x61,0x1b,0x18,0xcc,0xa4,0x67,0xa9,0x42,0x8a,0xc2, - 0x74,0xa5,0x75,0xf1,0x8a,0xa2,0x1c,0x60,0x00,0x32,0xac,0x3b,0xee,0x65,0xb1,0xd9,0xc2,0x34,0x9c,0xec, - 0x1e,0x6c,0x3a,0x96,0xc1,0x83,0x84,0x9f,0x5a,0xfb,0xd1,0x90,0x6c,0x1c,0x4f,0x27,0xd5,0x7b,0x45,0x6d, - 0x4a,0xdc,0x1a,0xe9,0x33,0x07,0xd8,0x6d,0x85,0xe6,0x0b,0x58,0x46,0x01,0xd1,0x2b,0x18,0xa1,0x76,0xa1, - 0x54,0x17,0x8a,0xac,0x36,0xa5,0x93,0xae,0x37,0x17,0x95,0xc1,0x3b,0x22,0x83,0x45,0x52,0xd8,0xc1,0xf1, - 0x44,0xc3,0x88,0x90,0x68,0x17,0x2b,0xa4,0x38,0xb6,0x88,0x0f,0x3f,0x76,0xb1,0x25,0xb0,0x7d,0x5c,0x6b, - 0x42,0x8c,0x61,0x8f,0x0d,0xe4,0x15,0xb1,0x64,0xad,0xe3,0x39,0x02,0x86,0x5f,0x3e,0x17,0x9a,0x8c,0x73, - 0xf8,0x33,0x69,0x30,0x45,0x3c,0x2b,0x8a,0x07,0x92,0xbc,0xd9,0x20,0xfb,0x1b,0x3d,0x85,0x60,0xe9,0x15, - 0x6b,0x8c,0x88,0xd0,0x1f,0x6a,0xac,0xc3,0x06,0xc7,0x10,0xfc,0x8c,0x39,0x96,0x6b,0x86,0x31,0x73,0x25, - 0x92,0xc8,0x61,0x96,0x3b,0x86,0x55,0xf2,0x14,0x28,0xe0,0x55,0xcd,0x72,0x41,0x01,0x7f,0xab,0x0c,0x76, - 0x95,0xf2,0x82,0x0b,0x76,0x5c,0x0c,0xa0,0x8c,0xb9,0x44,0x85,0xd3,0xde,0x15,0x4c,0x2a,0x7f,0x59,0x7f, - 0xa8,0xb7,0x3c,0xdf,0x42,0x36,0xb7,0xf2,0xfc,0x30,0x6a,0x6d,0xed,0x7d,0x46,0xb8,0x5d,0xdd,0xbc,0x40, - 0xed,0x9f,0x25,0x59,0xff,0x70,0xe3,0x1d,0x8a,0x46,0xdc,0x4e,0xd4,0x0d,0xec,0xbd,0xf1,0x67,0x89,0x3f, - 0x53,0xfc,0x81,0x45,0xf8,0x05,0xfd,0x5f,0xd0,0xff,0x33,0xed,0x6b,0xd9,0x21,0x36,0x21,0xf0,0x51,0xf6, - 0xb6,0xb5,0x1f,0x53,0x3d,0x83,0xdc,0xea,0xfe,0x77,0xca,0x70,0xfb,0xbb,0x7b,0x34,0x70,0x30,0x69,0x68, - 0xc6,0xed,0xcc,0x59,0x74,0xff,0x9b,0x56,0x81,0x59,0xa3,0xc0,0x32,0xfa,0xee,0x9f,0xad,0x02,0xcb,0x46, - 0x81,0x69,0xf4,0xcd,0x7f,0xb7,0x0a,0x4c,0x1b,0x05,0x0e,0xef,0x7d,0x03,0x1e,0x71,0xbd,0xa6,0x07,0xde, - 0xd2,0x7e,0x17,0xfb,0x87,0x51,0x77,0xc6,0x3e,0x32,0xce,0xd7,0xeb,0x8b,0xf5,0x7a,0x11,0xdd,0x54,0x97, - 0x99,0x76,0x07,0x98,0xa4,0x54,0xeb,0xfd,0x6f,0xe2,0x19,0xc2,0x06,0xb2,0x45,0xec,0x50,0x25,0x7d,0x17, - 0xcf,0x5b,0x49,0xdf,0xfd,0x33,0x5e,0xb6,0x92,0xbe,0x39,0x88,0x17,0xfd,0x7e,0x23,0xe5,0x30,0x5e,0xec, - 0xef,0x37,0x3e,0x3b,0x8c,0x2f,0x9a,0x65,0xbe,0xbb,0x1f,0x5f,0x34,0xcb,0x1c,0xde,0xbb,0x1f,0x9f,0x37, - 0x0b,0x1d,0xde,0xfb,0x36,0x3e,0xdf,0xdf,0x07,0x5d,0xa6,0x26,0xc4,0xed,0xbc,0xeb,0x84,0x86,0x23,0xc6, - 0x9a,0xe1,0x1a,0x5e,0x73,0xe0,0x47,0xe5,0xd9,0x12,0x8e,0xf5,0xb8,0x69,0xcc,0xd7,0xb4,0x25,0xae,0xf7, - 0xf7,0x23,0x5c,0xe9,0x75,0xa5,0xa3,0xeb,0x8e,0xd5,0xad,0x7c,0xb0,0xe2,0x57,0xbe,0x20,0xd6,0x42,0xa4, - 0x18,0x85,0x0c,0x4b,0xcc,0xa4,0x9b,0x8b,0x9b,0x1d,0xa0,0xc5,0x52,0xe9,0x52,0xbc,0xf2,0x9d,0x05,0x63, - 0x78,0xc0,0x9f,0x81,0xc7,0xc1,0xfd,0x1c,0x0e,0xbe,0x52,0x1f,0xbe,0x20,0xa1,0x9d,0x24,0x30,0x25,0x34, - 0xd2,0xde,0x15,0x9d,0xb0,0xf6,0x0e,0x92,0x10,0x3a,0xaa,0x64,0xf5,0xe0,0x60,0x74,0x67,0x4c,0xaf,0x77, - 0xfa,0x93,0xfe,0x9d,0x20,0x0a,0xef,0x40,0x30,0x1f,0x05,0xb1,0x49,0xb4,0x8d,0xaf,0x22,0x97,0x2f,0x02, - 0x9b,0xb1,0x22,0x60,0xe8,0xa0,0xa9,0x7e,0xe5,0xad,0xd6,0xf4,0x53,0x0e,0x8e,0x3f,0xae,0x10,0x22,0x8d, - 0xed,0x9a,0xca,0x13,0x0e,0xcd,0xeb,0xd1,0x9e,0xff,0x6e,0x0b,0x48,0xea,0xc1,0x22,0x5d,0x36,0x8d,0x48, - 0x5c,0x24,0x9f,0xcd,0xb6,0x89,0xb8,0x57,0x60,0x13,0xc5,0xc7,0x9e,0x49,0xd0,0x6f,0xf6,0x64,0x0f,0x6b, - 0xab,0x7d,0x37,0x31,0x3e,0xdc,0xde,0xbf,0xe1,0x6b,0x34,0xa4,0xd0,0xc1,0xe2,0xf8,0x12,0x34,0xbe,0x3d, - 0x34,0xf1,0x1d,0x82,0x7e,0xf6,0x2b,0x6b,0x9b,0x71,0xfe,0xdd,0xca,0x38,0x62,0xbe,0x36,0xf5,0xe3,0x1a, - 0x5e,0xa6,0x4b,0x15,0x4a,0x48,0xbf,0xe3,0x20,0xbb,0xa5,0x42,0xcf,0x8b,0x4e,0x3a,0x0a,0xd6,0x6a,0xbd, - 0x87,0xc0,0xe9,0xac,0xbd,0x36,0xae,0xa6,0x2e,0x60,0x50,0x69,0xfd,0x5b,0x65,0x12,0xec,0xc2,0xfb,0x86, - 0x10,0x3c,0xac,0x23,0xfd,0x22,0xec,0x09,0x4b,0xf9,0xff,0x4f,0xe7,0x6b,0x47,0x58,0xbf,0x88,0xf1,0x8d, - 0xa5,0x52,0x3d,0x2e,0x45,0x78,0x18,0x4e,0xde,0xea,0xa8,0x87,0xa1,0x48,0x76,0x76,0x5e,0x8f,0x42,0xca, - 0xd7,0x84,0xf1,0x42,0xe6,0xab,0x40,0xd8,0x0a,0x38,0x3f,0x8a,0x89,0x29,0xc8,0xa6,0xd3,0xb9,0x8a,0x25, - 0x13,0x2c,0x8a,0x55,0x25,0x57,0xcb,0x80,0x2f,0x59,0x50,0x6a,0xe8,0x91,0x6b,0x53,0x25,0xb0,0x11,0xba, - 0x7a,0xe4,0x03,0x5f,0x2d,0x82,0x9f,0xc0,0x6a,0xef,0x18,0xc5,0xa4,0x2b,0x20,0x6d,0x96,0x36,0xbf,0x33, - 0x91,0x01,0x37,0x43,0xdc,0x95,0x3a,0x85,0x54,0xac,0xf2,0x38,0x14,0x7d,0x87,0x3a,0xf6,0x11,0x71,0x01, - 0x5b,0xfa,0xbb,0x6c,0x34,0xb1,0xd7,0x78,0x57,0xd6,0xd7,0xae,0x52,0x77,0xe9,0x24,0x13,0xca,0x3f,0xa6, - 0x73,0xe2,0x24,0x3e,0x9e,0x88,0xea,0x24,0xae,0x3a,0x41,0x20,0xb7,0x20,0xa0,0xe8,0xa1,0x92,0x2f,0x51, - 0x60,0x97,0xa8,0xf5,0x5a,0xbd,0x5c,0xec,0x73,0x78,0x15,0x24,0xb1,0xb4,0x89,0xa3,0xe0,0x9a,0x40,0x96, - 0x38,0xd6,0x94,0x72,0x42,0xb9,0xb2,0x58,0xb2,0x45,0xda,0x50,0x6a,0xea,0x83,0xcc,0x7c,0xd0,0x0a,0x36, - 0x9b,0xf9,0x67,0x64,0xd9,0xec,0x8d,0xfb,0x9a,0xe5,0x2f,0x1e,0x88,0xfa,0xc1,0x6c,0x3c,0x58,0xd5,0xa6, - 0xf7,0x59,0xdb,0xf4,0x1e,0xb4,0x29,0x3c,0x1b,0xf8,0x56,0x13,0x84,0xea,0xbc,0xc9,0x4c,0xf8,0xab,0x02, - 0xe1,0xaf,0x94,0x9f,0x84,0x51,0xb3,0x5b,0x67,0xc4,0x46,0x93,0xbe,0x29,0x7e,0xd6,0x9a,0x35,0x65,0x6a, - 0x9f,0x25,0xc1,0xde,0xde,0x45,0x30,0x54,0x97,0x26,0xf1,0x1d,0xd4,0x41,0xa8,0xa5,0x80,0x94,0xb1,0x43, - 0x2d,0xef,0xdc,0x51,0x23,0xbf,0x33,0x42,0x8a,0x41,0xa8,0x78,0x8e,0x02,0x86,0x37,0xf6,0x58,0x50,0x9f, - 0x8e,0x89,0xbf,0xec,0x67,0xc0,0x87,0x91,0x36,0xc7,0x29,0x40,0x2b,0x66,0x08,0x19,0xcf,0x46,0x35,0x06, - 0x7c,0x08,0x9b,0x82,0xb3,0x8b,0x88,0x07,0xbf,0x5a,0xe2,0xc6,0x3f,0xea,0x62,0x7c,0x87,0xf0,0xa7,0x24, - 0xa4,0x79,0x47,0x18,0xd3,0x1b,0x17,0x9d,0x64,0x27,0x44,0x83,0x3b,0x37,0x41,0xbf,0xe8,0x07,0x9b,0xc0, - 0x5b,0x80,0x42,0xfa,0x62,0x46,0x1f,0xb9,0xd1,0x14,0xfe,0x58,0xba,0x08,0x84,0xde,0x7d,0x52,0xc7,0x41, - 0xf4,0xe0,0x00,0xb2,0x45,0x5c,0x90,0xf5,0xcc,0xa4,0x9e,0x50,0xea,0x8f,0xa5,0x8d,0x93,0x1b,0x3e,0xe7, - 0x8f,0xfd,0x12,0xe0,0x9d,0xbf,0xdf,0x3f,0x1c,0xdd,0x50,0xaf,0x63,0x77,0xce,0x3c,0x27,0xfa,0x8c,0x58, - 0x6e,0x1e,0x80,0x49,0x7d,0x5e,0x12,0xa2,0xc7,0x60,0x36,0xb1,0x2a,0xcd,0x25,0x38,0xd4,0x12,0x13,0x38, - 0x7f,0x80,0x40,0xa5,0x16,0x7e,0x2a,0x93,0x1f,0x60,0x1a,0xbd,0x8b,0xa0,0xbf,0xc3,0x88,0xbe,0xfc,0xbd, - 0x4c,0x52,0x7a,0x8e,0x46,0x2b,0x3c,0x47,0xf1,0x77,0x60,0x60,0x7f,0x2f,0x7d,0x61,0x94,0x91,0x2c,0x2b, - 0x37,0x47,0xaa,0xe2,0x79,0x69,0x2a,0xe0,0xd0,0xae,0xf8,0x5e,0xc0,0xcb,0x38,0x8a,0x56,0xf8,0x6b,0xc9, - 0x14,0xae,0x0b,0x62,0xc6,0x7e,0x5f,0x7c,0x77,0x5f,0x3f,0xef,0xef,0xb3,0xd1,0x1c,0xcd,0xe1,0x0f,0x5c, - 0x93,0x02,0xad,0x0d,0x1a,0x37,0x51,0xc7,0x9b,0xe3,0xfd,0x49,0x8f,0xd7,0xa4,0xfc,0x44,0x63,0x15,0x3f, - 0x94,0x50,0x24,0x3a,0x6d,0xb0,0xf6,0xd1,0x64,0x07,0x87,0x91,0xbe,0x54,0x26,0x0e,0xf6,0x88,0x0a,0x0d, - 0x71,0x8d,0x21,0xd5,0xa8,0xaf,0xcd,0x42,0x01,0xf5,0xc8,0x10,0xe1,0x79,0x92,0x4a,0x67,0x04,0xfc,0x47, - 0xe9,0x13,0x4e,0xfd,0xfe,0x73,0xdf,0x7e,0xbd,0xf2,0x0a,0x3e,0x2f,0xbf,0x4f,0x7e,0xf4,0xe0,0x7e,0xe2, - 0xc7,0xed,0x66,0x32,0xb0,0x5e,0xaf,0x99,0x5e,0xf4,0x44,0xd5,0x3c,0x49,0xbe,0xc7,0xa0,0x9a,0x4d,0xf6, - 0x82,0xe5,0xb5,0x80,0x73,0xc5,0x30,0x1a,0x7a,0xde,0x75,0x72,0x4b,0x06,0x62,0x68,0xdc,0xa1,0x4c,0x88, - 0xd7,0x97,0xd1,0x60,0x8c,0xfb,0x1b,0xdf,0xa7,0x15,0xcc,0x78,0x56,0xee,0xcd,0x97,0x94,0x2d,0x61,0xa4, - 0xa9,0x43,0x8f,0xac,0x6e,0x09,0x10,0xa1,0xfb,0xbe,0x64,0x57,0x49,0x3a,0xa9,0xf9,0x72,0xc4,0x22,0x61, - 0x8c,0x0e,0x81,0x04,0x11,0x2d,0xbf,0x96,0xc2,0x45,0x8c,0xdf,0x81,0x37,0xa8,0x0e,0xfc,0x5d,0x74,0xd7, - 0x49,0xb0,0x44,0xfc,0x86,0xa8,0x95,0x8e,0x37,0x12,0xbf,0x96,0xdb,0x8c,0x20,0x86,0xf7,0x4b,0x3e,0xba, - 0xd1,0x07,0x1f,0x0c,0x70,0xd4,0xe1,0x85,0x80,0x70,0x0d,0xc7,0x3d,0xe9,0xd4,0x4f,0x21,0x1d,0xa0,0xbf, - 0x96,0x51,0x27,0xe3,0x89,0x28,0x54,0xde,0x94,0x34,0x4d,0xf8,0x97,0x32,0x34,0x91,0xa4,0x76,0xad,0x3c, - 0xa6,0x00,0x17,0xbf,0x6b,0xa5,0x31,0x08,0xbc,0x6f,0x59,0x4c,0x9d,0xc2,0x58,0xac,0x48,0x72,0xff,0x7d, - 0xf8,0x6b,0xa9,0x79,0xd0,0x16,0x36,0xa0,0x8e,0x1e,0xef,0x41,0xa5,0x63,0xac,0xa5,0xf2,0x51,0xa0,0xaf, - 0x9c,0x8e,0x8d,0xb9,0x21,0xc7,0x65,0x76,0x16,0xfc,0xfc,0x01,0x47,0x58,0x66,0xef,0x70,0x77,0xdd,0x37, - 0x25,0x6f,0x50,0xdf,0x97,0x4c,0xc5,0x2d,0x18,0xa8,0x8a,0x1a,0x9f,0x7e,0xc1,0xa7,0x3a,0xa3,0xf5,0x39, - 0x3e,0xdb,0x80,0x79,0xf9,0x9d,0xb5,0xed,0x73,0x29,0x66,0x52,0x94,0x4e,0x14,0xfc,0xab,0x75,0xe4,0xf7, - 0xdc,0x04,0xbb,0xe6,0xc8,0xb8,0xc9,0x34,0x66,0xca,0x26,0xfa,0x92,0x73,0x35,0x25,0x55,0xd2,0xfa,0xb0, - 0x29,0xbc,0xf2,0x53,0x6f,0x93,0x5f,0x59,0xcf,0x9c,0x86,0x08,0x2b,0x53,0xe2,0x53,0x48,0x9a,0x32,0x1d, - 0x65,0x2e,0x3b,0x49,0x82,0xc0,0xcb,0x5d,0xe9,0x9b,0xfd,0x50,0x42,0xf0,0xfd,0xcc,0xe6,0xbe,0x64,0xed, - 0x54,0x94,0xe5,0x04,0x28,0x3f,0xbe,0x7f,0xf9,0x82,0x13,0xb8,0x74,0xd9,0x1d,0xb4,0xd6,0xb3,0x5b,0x2a, - 0xa8,0x6c,0x85,0x36,0x31,0x79,0x59,0xbe,0x92,0x43,0x20,0xb9,0x54,0x15,0x7d,0x05,0xd7,0x2a,0x2b,0x41, - 0x4e,0x35,0x60,0x1e,0x21,0x2b,0xf4,0x8b,0xc0,0x66,0x88,0xaf,0x12,0x56,0x42,0x34,0xd5,0x7c,0x3a,0x18, - 0xf3,0x6b,0x52,0x68,0xb3,0xc4,0x1a,0xb2,0xb3,0x20,0x30,0x41,0xe6,0x8b,0x68,0xb8,0x4c,0xe6,0x62,0x97, - 0xb8,0xc9,0x34,0x52,0xc2,0x84,0x8a,0xd2,0x61,0x58,0xfd,0xfa,0xcd,0xfb,0x67,0xaf,0x5f,0xa1,0x9e,0x99, - 0x91,0xee,0xac,0xd7,0x1d,0xda,0x04,0x6c,0x7f,0x76,0x0b,0x77,0x97,0x51,0x29,0xf7,0x66,0xad,0x57,0xe3, - 0x9b,0x05,0x6c,0x6c,0x20,0xef,0xbc,0xaf,0xad,0x14,0x50,0x6e,0xc2,0x99,0x58,0x46,0x8d,0xea,0x3d,0xfd, - 0x9a,0xd2,0x10,0x28,0x6d,0xf4,0x4b,0x43,0xa7,0x29,0x03,0xb4,0x2c,0xd2,0xd6,0x29,0xf3,0xf4,0x8f,0x6b, - 0x17,0x3f,0x5b,0x19,0xac,0xf0,0xb1,0x6e,0x28,0xa0,0x89,0x72,0x30,0x9b,0xe8,0x40,0x6d,0x19,0x93,0x01, - 0xce,0x6c,0x5e,0x11,0x05,0xec,0x17,0xac,0x1e,0x4d,0x47,0x41,0x23,0xe6,0xaa,0x7f,0x0c,0x12,0xaa,0x37, - 0xc9,0x5c,0x07,0x35,0x62,0x10,0x29,0x94,0xb1,0x1e,0x95,0xf1,0xbc,0x31,0xa5,0x3b,0xe4,0x2e,0x24,0x6b, - 0x97,0xaf,0xe7,0x4e,0x18,0x6d,0xb4,0xcd,0xef,0x90,0x3a,0xba,0x08,0x1b,0xef,0x1c,0xf1,0xc0,0xf3,0x41, - 0x94,0x5f,0xd3,0x0d,0x2f,0x6e,0x51,0xb4,0xbe,0xcb,0x5a,0xf1,0x46,0x16,0xb2,0x29,0xe2,0x62,0x79,0x50, - 0xd1,0x12,0x6d,0x65,0x7e,0x3f,0x22,0xa5,0xe2,0xaa,0xec,0x73,0xb1,0x95,0x5b,0xe8,0xdc,0xc8,0x8b,0xd2, - 0xa3,0xf7,0xe9,0x2a,0x69,0x14,0x17,0x73,0x58,0x98,0x16,0xe5,0x82,0xaf,0x70,0x9f,0x72,0xda,0x7a,0xad, - 0xbf,0xe7,0x2d,0x3c,0x4b,0x56,0xeb,0xf5,0x5c,0x2c,0x31,0x5f,0x7a,0xa3,0xaa,0xca,0x79,0x2b,0xeb,0x94, - 0x56,0x0d,0x09,0xec,0xd7,0xf5,0x0e,0x57,0xde,0x4e,0xcb,0x28,0x5e,0x0e,0x95,0xa5,0x6a,0x13,0x5a,0x7d, - 0xc5,0x39,0x13,0x8e,0xf5,0xb0,0x43,0x7e,0xf6,0xb7,0xe4,0x6a,0xe7,0x56,0xc1,0x09,0xa7,0x90,0x90,0x5d, - 0xbc,0x54,0x72,0xdd,0x4e,0x76,0xee,0xc6,0x30,0x9d,0x2d,0x06,0x26,0x66,0x5a,0xd1,0xa8,0xad,0x68,0x7f, - 0xe6,0xb4,0xf3,0xa5,0xaa,0x83,0xc3,0x59,0xce,0x08,0x49,0x4d,0x61,0x88,0xd8,0xeb,0x7d,0x86,0xf9,0x60, - 0x25,0x0c,0x96,0xe2,0xec,0x69,0x14,0xa6,0x09,0xe7,0x13,0xf0,0xce,0xe8,0xd7,0x16,0xd3,0x11,0x4a,0x80, - 0x01,0x52,0x9f,0x07,0x38,0x93,0xbe,0x2f,0x19,0x47,0xf7,0xd4,0x02,0x0a,0x15,0x37,0x83,0x65,0x6d,0x6c, - 0xf7,0xe7,0x2c,0x7f,0xa0,0xf4,0x07,0x29,0x29,0xb5,0x89,0xca,0xdd,0x4f,0x55,0xff,0x6e,0x64,0xef,0x4d, - 0xea,0xf0,0xe3,0xf6,0xea,0xe1,0x80,0x58,0x08,0x06,0x16,0x6f,0x27,0xfa,0x81,0x71,0xa1,0x40,0x09,0xd9, - 0xf5,0x7b,0x4b,0xf2,0x17,0x69,0x93,0xc9,0x1d,0xdc,0xb6,0xe8,0x75,0x8a,0x15,0x2e,0x01,0xeb,0xbe,0xeb, - 0x6e,0x91,0x61,0x98,0x13,0x5b,0x65,0x06,0xe8,0xcd,0xc2,0xf5,0xff,0xef,0xb3,0xa0,0x90,0xf9,0xf6,0x44, - 0xd8,0x74,0xe1,0xa7,0xaa,0x43,0x00,0x54,0x7f,0x5b,0x42,0x6f,0xa6,0x44,0x4d,0x9d,0x13,0x25,0xff,0xa5, - 0xe9,0x83,0x21,0x89,0x99,0x36,0x6f,0x2a,0x4b,0x98,0x75,0x0d,0xe1,0xd3,0x6c,0x2f,0x78,0x2a,0x05,0x86, - 0x0b,0x10,0x37,0x68,0x12,0x3a,0x87,0xce,0x39,0xe6,0xab,0x2b,0x6e,0xeb,0xa6,0x7f,0xc5,0x80,0xd4,0xa4, - 0x8d,0xbe,0x52,0x69,0xeb,0xa2,0x14,0x83,0x44,0xed,0x15,0xbc,0xcc,0xf3,0xd2,0xb4,0x40,0x28,0x8c,0xcb, - 0x23,0x9e,0x65,0x61,0xad,0x0d,0xb0,0x82,0x0b,0x48,0x10,0xf8,0x46,0x09,0xc4,0xbc,0xbe,0xd5,0x38,0xe4, - 0x19,0xe3,0xc6,0x2d,0xf2,0xe4,0x94,0xfb,0xf2,0x21,0xf3,0x7d,0x5f,0x3e,0xa0,0xa8,0x2f,0x79,0xb9,0x94, - 0x4d,0xa3,0x90,0x6d,0x91,0x36,0x8b,0x1d,0xb6,0x93,0x39,0x9a,0x4f,0xee,0x19,0x71,0x01,0x42,0xe1,0x11, - 0x02,0x01,0x02,0xad,0xb4,0xde,0x83,0xbe,0x57,0xa8,0x6e,0xaa,0xab,0xb6,0x5e,0x6f,0xde,0xd9,0x0a,0x82, - 0x66,0x6b,0x38,0xf6,0x5c,0x45,0x5b,0xac,0xf3,0x17,0x55,0x40,0xe0,0x18,0xd0,0x96,0x14,0xa5,0xf1,0xe5, - 0x61,0x3a,0x0b,0x72,0x32,0x8e,0x3c,0xcd,0xe7,0x82,0x15,0x23,0x98,0x80,0x29,0x55,0x02,0x7b,0x8a,0xa7, - 0xd9,0xe8,0x6d,0x16,0xff,0x92,0x11,0xc6,0x6f,0xb9,0x8f,0x75,0xeb,0x6d,0x2a,0x31,0x87,0xe5,0x39,0xbb, - 0x8a,0x35,0x55,0x40,0x2a,0x88,0x85,0x62,0xe6,0xfa,0xfd,0xc9,0xf7,0x50,0x1c,0xc2,0x53,0x6c,0xd8,0xed, - 0x8f,0x34,0x79,0xa0,0xf3,0x05,0xae,0x46,0x16,0x1d,0x3a,0x20,0x34,0xe5,0xb9,0xaa,0xca,0x86,0x8e,0x3b, - 0xd1,0x37,0xd9,0x52,0x93,0x47,0x3a,0xec,0x06,0x9f,0x25,0x2a,0x52,0x44,0x79,0xfc,0x92,0xf8,0xff,0xc7, - 0xf0,0x91,0x0a,0x4e,0xac,0xf5,0xdd,0x0e,0xcb,0x4e,0x75,0xde,0xaa,0x54,0xd7,0x4b,0x37,0xb3,0xd3,0xe4, - 0x48,0x72,0xf8,0x57,0xb0,0x34,0xc7,0x8f,0x6e,0xa9,0x64,0x62,0xf2,0xba,0x2b,0x59,0xa1,0x12,0xf0,0x34, - 0x34,0x47,0x07,0x74,0x22,0xba,0x3b,0x77,0xd4,0x84,0xa7,0x6c,0x37,0x9e,0xd3,0x23,0x15,0x48,0xa9,0x80, - 0x31,0x50,0x27,0x8a,0x01,0xd6,0xef,0xd9,0x68,0xa5,0x4b,0xbc,0x42,0x89,0x15,0x95,0x98,0xd8,0x12,0xb3, - 0x84,0xd2,0xc3,0xb9,0x8b,0xb4,0x9e,0x82,0xf6,0xfd,0xfe,0x80,0x6a,0x5d,0x8d,0x9e,0x66,0xf1,0xab,0x8c, - 0xd9,0xfb,0x68,0x94,0xab,0xc6,0x4c,0xdd,0xb1,0xa9,0x22,0x3e,0x10,0x3a,0xe0,0xb2,0xd0,0xd0,0x12,0xcf, - 0x85,0x85,0x95,0x78,0x86,0x6b,0x90,0xdf,0x9b,0xdb,0xfa,0x62,0x55,0x4b,0xaf,0xf7,0x51,0x0b,0xc9,0xd5, - 0xec,0x99,0xf8,0x1d,0xc1,0x89,0x8f,0x06,0x8e,0xa4,0x3b,0xa4,0x87,0x06,0xd3,0x3d,0xb0,0x31,0x12,0xa3, - 0x3a,0xb1,0x61,0xb3,0x1d,0x83,0x6e,0xc6,0xd1,0xb8,0xcf,0xab,0x29,0x42,0xf6,0x7d,0xc2,0x1f,0x02,0xa1, - 0xf6,0x1f,0x4a,0x15,0x5e,0x6a,0xe3,0xef,0xb4,0x87,0x3e,0x89,0x75,0x28,0xef,0xff,0x43,0x5f,0x11,0xeb, - 0x24,0x06,0xfb,0x87,0x7e,0xf9,0x77,0x1e,0x2d,0x05,0x12,0x8a,0xe8,0x1d,0xf8,0x69,0xe1,0x6a,0x9e,0x94, - 0x88,0xf3,0x53,0x76,0x87,0xb0,0x6f,0xfa,0xaa,0xcc,0xb9,0x8a,0x96,0xe7,0xd2,0x43,0x13,0xaa,0x20,0x19, - 0x4b,0xc3,0x0d,0xb9,0x0d,0x1d,0x59,0xe7,0x2b,0x36,0x9f,0xa4,0xcf,0x08,0xc2,0x65,0xc9,0x95,0x1f,0x72, - 0x2c,0x30,0x10,0x24,0xb8,0x64,0xce,0xd1,0x36,0x88,0x23,0x46,0x88,0x51,0xc0,0xeb,0x95,0x37,0x36,0x01, - 0xc9,0x40,0x7d,0xc6,0x9a,0xba,0x99,0x79,0x7d,0x5f,0xa8,0x84,0xa5,0x49,0x78,0xc8,0x34,0xbb,0x4a,0x84, - 0x5f,0x2f,0x4d,0xa9,0x4c,0xf5,0x57,0xe7,0xf6,0xdd,0x7c,0x76,0x61,0x53,0xfc,0xef,0x16,0x94,0x7a,0x2a, - 0x61,0x22,0xfe,0x04,0x55,0xc2,0x7b,0x4f,0x55,0x2e,0xae,0x51,0x1e,0x57,0xaf,0xab,0x8c,0xb1,0xed,0x95, - 0x99,0x18,0x71,0x69,0xbf,0x7d,0xc8,0xf5,0x8a,0x2b,0xdb,0x84,0xd8,0x33,0x5f,0xeb,0xac,0x2f,0xae,0x7f, - 0xf6,0xfb,0x23,0x4a,0x9b,0xea,0x3d,0x25,0x1e,0x26,0xe3,0x52,0xbc,0xa3,0x3f,0xda,0x4e,0x7f,0xf8,0xae, - 0xd7,0x7b,0x67,0x49,0xae,0x87,0x49,0xf8,0x2e,0x31,0xaf,0x91,0xe1,0x58,0x79,0x25,0xde,0x27,0xbb,0x0f, - 0xbd,0xd0,0x49,0xc4,0x91,0xb2,0x11,0x7f,0x51,0x80,0x0e,0xe4,0x98,0xc0,0xb4,0x24,0xef,0xd7,0xeb,0x2b, - 0x1c,0x9e,0xb4,0x06,0x57,0x0a,0x04,0x5e,0x27,0xef,0x7b,0xbd,0xe9,0x68,0x4a,0xbb,0xe1,0x33,0x1e,0x2f, - 0x46,0x17,0xf1,0x52,0xbc,0xc0,0xe3,0xf9,0xe8,0x9c,0xf6,0xc5,0x93,0xe4,0xfd,0xe8,0x72,0xbd,0x5e,0xc4, - 0x0b,0xf1,0x06,0xa9,0x1d,0x4e,0x2f,0x57,0xa3,0xab,0xf8,0x4c,0x3c,0xa3,0x82,0x7b,0xeb,0xf5,0x75,0x7c, - 0x2d,0x1e,0xd3,0xe3,0x97,0xf5,0x7a,0x1c,0x8f,0xc5,0x53,0xe2,0x5b,0xb2,0xf0,0x28,0x1a,0x1d,0xa9,0x69, - 0x8b,0x8f,0x22,0xf1,0x2a,0xe1,0x83,0xb0,0x62,0x7d,0xbc,0x78,0x99,0x7c,0x96,0xe1,0x9b,0x48,0xbc,0x4d, - 0x1c,0x9c,0xf8,0x4e,0xb6,0xd1,0xcd,0x2b,0x02,0xc9,0x2b,0x88,0x5e,0x5f,0x44,0x82,0x7f,0x3f,0xd3,0x51, - 0xf9,0xd6,0x81,0xe6,0x28,0xa4,0x12,0x9c,0xf1,0x3a,0x12,0x8f,0x7b,0xbd,0xc7,0x6c,0x48,0xf1,0xac,0xd7, - 0x7b,0x06,0xb7,0x04,0xaf,0x56,0x1d,0x6c,0x5d,0xc3,0x6b,0x75,0x5e,0xd0,0xc0,0x9e,0xd3,0x76,0x70,0x96, - 0x4f,0xae,0x51,0x25,0x17,0x32,0xd4,0x2e,0xf8,0x54,0xa1,0xc3,0x21,0x8f,0x11,0xac,0x88,0x59,0x4d,0xf7, - 0x7c,0xcc,0x92,0xb4,0x93,0x21,0xdf,0x1b,0xaa,0xec,0x0d,0x73,0x65,0x6f,0x28,0xb1,0xc3,0xec,0xbe,0x69, - 0xbf,0x87,0x91,0x78,0xd3,0xeb,0xbd,0xa1,0xae,0xbf,0x85,0x2c,0xe8,0x49,0xaf,0xf7,0x04,0x7d,0xc6,0x88, - 0x2f,0xf5,0x80,0x2e,0xd5,0x88,0xc5,0xa9,0xf4,0xe7,0xe4,0xd2,0x9f,0x8f,0xd7,0x8d,0xe9,0x58,0xaf,0x5f, - 0xd2,0x39,0xfe,0x5a,0x86,0x4f,0xa3,0x91,0x77,0x0a,0xbd,0x15,0x4f,0xa3,0x78,0x0f,0xc5,0x57,0xd4,0x18, - 0x90,0x88,0xf0,0x26,0x42,0x19,0xd8,0x96,0x7e,0x7f,0xa8,0x1b,0x5c,0xd5,0xdb,0xb0,0x61,0xf1,0xfc,0x5e, - 0x23,0x10,0x27,0x04,0xa6,0xee,0x7c,0xf1,0x9b,0x0f,0x1b,0x13,0x1c,0x12,0xe7,0xe9,0x26,0xd1,0xce,0x18, - 0x54,0xd9,0x5d,0xe9,0xca,0xc1,0x54,0x4d,0x67,0x92,0x47,0xe2,0x9c,0x00,0x11,0xc1,0x51,0x2f,0xd5,0x94, - 0xa4,0x70,0x96,0xe0,0xdf,0x69,0xc7,0x94,0xa4,0xc4,0x43,0x61,0x4a,0xb8,0x54,0xa3,0x4f,0x57,0x6a,0x4a, - 0xf6,0x1a,0x53,0xf2,0x45,0xec,0xf1,0x94,0xa4,0x62,0x2e,0xbe,0xa8,0x29,0xb9,0x00,0x65,0x96,0xd2,0x9b, - 0xb8,0xe4,0x8f,0xbe,0x80,0xce,0xd6,0x36,0xe3,0x1a,0x57,0xa6,0x3e,0x3a,0xf3,0xde,0x9a,0xb8,0xd2,0xa5, - 0x1b,0x5c,0x59,0xdd,0x8e,0x2b,0x55,0xe4,0x57,0x75,0x7f,0x8c,0x45,0x8d,0x86,0x81,0x52,0x6a,0xd6,0x5d, - 0x6e,0xd8,0x20,0x69,0xe3,0x6f,0x52,0x31,0xce,0x9c,0x27,0x2a,0xc2,0x0b,0x21,0x49,0xc8,0x5b,0x52,0x83, - 0xd5,0x96,0xe6,0xd5,0x20,0xbf,0xa9,0x49,0xf0,0x71,0xdf,0x39,0x25,0x2a,0xfc,0xf5,0x02,0x59,0x84,0x21, - 0x75,0x21,0xc2,0x8a,0x95,0xc2,0x5e,0x2a,0xe3,0xcc,0xd6,0x6e,0x71,0xd7,0x35,0x25,0xb1,0x53,0xb6,0x2a, - 0x31,0xc6,0xab,0x41,0x65,0x97,0x6a,0x9b,0xaf,0xd4,0x36,0xbf,0xc2,0x36,0xbf,0x88,0x08,0x23,0x02,0x21, - 0x10,0xcb,0x3b,0x56,0x75,0xc5,0xe3,0x88,0xb1,0xa2,0x19,0x5a,0x73,0xeb,0xfb,0x20,0x02,0x11,0x52,0x07, - 0xc0,0xf0,0x1a,0x74,0xa4,0x5b,0x18,0xe2,0xd0,0x5d,0x97,0x0a,0x87,0x38,0x00,0x99,0x46,0x0d,0x08,0x19, - 0x85,0x97,0x8c,0x43,0x18,0x72,0xa8,0xce,0x33,0xb6,0x03,0x09,0xb1,0x21,0x16,0xbd,0xde,0x02,0x6f,0xc2, - 0xeb,0xa4,0xc6,0x24,0xd7,0xa3,0x6b,0xda,0xae,0x71,0x11,0xfa,0x04,0xc1,0x6b,0xef,0x44,0xde,0x8e,0x29, - 0x45,0xb3,0xa1,0xee,0x3c,0xf4,0xd5,0xc9,0x9f,0x11,0x67,0x96,0x59,0x09,0x17,0xb4,0x58,0x87,0xc5,0x86, - 0x95,0x30,0xc2,0x1b,0x7b,0x61,0x9f,0x46,0x54,0x7c,0x2b,0x7c,0x4d,0x79,0x7c,0x70,0x12,0x23,0x78,0x8d, - 0xbd,0x65,0x0f,0x7e,0x2d,0x9a,0x7e,0xfa,0xde,0x53,0xe1,0xbd,0xd0,0xf4,0xca,0x2e,0xf4,0xf2,0xd2,0xc7, - 0x00,0xef,0x98,0x9d,0x73,0x3e,0x20,0x96,0xf4,0x7e,0x63,0x9e,0x84,0xb3,0x84,0xeb,0xa6,0x6f,0x6d,0xc9, - 0x8d,0x38,0xf0,0xaa,0x7a,0xd3,0xa2,0xe2,0xa5,0x27,0x19,0x5b,0xac,0xe6,0x75,0xb6,0x9c,0x4b,0x45,0xaf, - 0xaf,0xd7,0xed,0x91,0x79,0xf1,0xce,0xd8,0x08,0x10,0x7e,0x58,0xd6,0x87,0xa6,0xed,0x86,0x05,0x53,0x30, - 0x97,0x8b,0x6b,0x33,0xb2,0xa8,0x48,0xc6,0xc4,0xfe,0x3d,0x86,0x91,0x0f,0xf8,0x5d,0x81,0xeb,0x97,0xe6, - 0x7c,0x19,0x3a,0x84,0xf4,0x0c,0x3e,0x26,0x21,0xf1,0xc2,0x78,0x5d,0x87,0xfc,0x89,0x17,0xf5,0x17,0x5c, - 0x17,0xe8,0x2a,0x5d,0x98,0x35,0x53,0xea,0x1c,0x6b,0xa7,0x26,0x15,0xec,0x74,0x99,0x9b,0x6a,0xa6,0xef, - 0x37,0x2e,0x7d,0x7c,0x26,0x9b,0x57,0xac,0xb4,0x6f,0xbe,0xb3,0x59,0xbb,0xd7,0xa1,0xb2,0x97,0xf5,0x5c, - 0x42,0x7c,0x28,0x53,0xa2,0x52,0x8e,0xce,0x86,0x0b,0x06,0x94,0x9e,0x4f,0x8b,0x1f,0x3d,0xaf,0x0e,0xa9, - 0xbc,0x9b,0x15,0xcf,0xe2,0x64,0xa6,0xb0,0x31,0x73,0xee,0x1c,0xb7,0x14,0xe2,0x41,0x6e,0x7f,0x79,0x28, - 0x5e,0x4a,0x9b,0x21,0xb4,0x20,0xdf,0xa7,0x37,0x5f,0x36,0x98,0xce,0xb6,0x03,0xc3,0x05,0xbb,0x2f,0x40, - 0xea,0xac,0xf4,0xe0,0x81,0xe2,0x33,0xb3,0x5a,0xe5,0x48,0x41,0x98,0x94,0x23,0x1e,0x0d,0xa6,0x59,0xc5, - 0xa6,0xc7,0x2a,0xc3,0x57,0x5f,0xbc,0xf5,0x66,0x62,0xf7,0x16,0x3f,0x06,0x25,0xa9,0xaa,0xdb,0xc8,0x77, - 0x54,0xc7,0x6f,0xd9,0x35,0xe6,0x36,0x99,0x99,0xe7,0x51,0xe1,0x49,0x45,0x99,0x0c,0xd8,0xb2,0x7b,0x35, - 0xab,0x88,0x33,0xbe,0x61,0xf1,0x6a,0xfc,0xd0,0x47,0x54,0xc7,0x6f,0x70,0xec,0xb2,0xde,0x85,0xbe,0x90, - 0xf3,0x17,0xaf,0x01,0xbe,0x75,0xd2,0xc5,0x38,0x6d,0x86,0x3f,0xca,0xdd,0x35,0x13,0x11,0x42,0x1f,0x71, - 0x7c,0x60,0x7d,0x7b,0x09,0x6d,0x7e,0x85,0x0a,0x0d,0x3f,0xd9,0x72,0xcc,0xcb,0xe8,0x8b,0x31,0x2e,0xf4, - 0x38,0x61,0xd7,0xbc,0x8e,0x48,0xb4,0x1f,0x9c,0x24,0xe9,0xee,0xa7,0xe9,0xfe,0x17,0x29,0x97,0xfb,0xe9, - 0x9c,0x0e,0x8b,0x3d,0x7d,0x57,0x20,0xd3,0x37,0xce,0xa3,0x3a,0x0c,0x5c,0x91,0x40,0xdc,0x70,0xd7,0x62, - 0xb9,0x35,0x3b,0xae,0xcf,0x3e,0x10,0x7f,0xd4,0xc0,0xc6,0x24,0x11,0x2b,0x07,0x4e,0xf9,0xf2,0x49,0xf7, - 0xca,0xa6,0x94,0xfc,0xae,0x4f,0x53,0x9b,0x6f,0x4f,0x57,0xcf,0x22,0x5c,0x57,0xa7,0xc4,0xad,0xf2,0xf2, - 0x4d,0x81,0x60,0x42,0x28,0x4d,0xc0,0xf9,0x88,0x08,0x63,0x8e,0xea,0x31,0xcf,0xe8,0xd3,0xb7,0xb8,0x7a, - 0xdd,0x8f,0x33,0xef,0x2f,0xaf,0xaa,0x80,0x40,0x5c,0x58,0xdf,0x19,0x55,0x9b,0xbe,0x8e,0x62,0x56,0xef, - 0xe7,0xfc,0xc3,0xf7,0x9e,0xd5,0xc5,0x92,0x5e,0xe9,0x2f,0x30,0x58,0xb9,0x5e,0x67,0xb6,0x0b,0x18,0xc2, - 0xd4,0x28,0x19,0x0b,0xdd,0x15,0x16,0x0c,0x0f,0x0b,0x77,0x37,0x3c,0x11,0x99,0xbf,0xc8,0xd3,0x2f,0x59, - 0x6d,0xf9,0xcf,0x24,0xe0,0x4c,0x84,0xc1,0x0b,0x83,0x7e,0xd9,0x0f,0x96,0x57,0x82,0x75,0xfb,0xcb,0xab, - 0x28,0x10,0x85,0x07,0xc0,0x86,0x17,0x4f,0x82,0x83,0xca,0x57,0xcc,0xff,0x6e,0x11,0xae,0x56,0x22,0x33, - 0xef,0x7b,0xc8,0xfe,0xfa,0xb5,0xb0,0x06,0x10,0xb1,0x14,0xc6,0x64,0xa1,0x71,0xe3,0x6d,0xfb,0xfe,0x53, - 0xe1,0x54,0xf9,0xf6,0x1a,0x0e,0x1d,0xd8,0x58,0x3b,0x26,0xe2,0x51,0x85,0x02,0x71,0x6e,0x54,0x32,0x12, - 0x0a,0x18,0x89,0xe9,0xb6,0x21,0x02,0x8e,0xfd,0x7b,0x62,0x9e,0x37,0xc5,0x1b,0xc6,0x5a,0x71,0x18,0x56, - 0x49,0x2e,0x81,0xc9,0x05,0x41,0xd7,0x75,0xa0,0xf5,0x17,0xf0,0xeb,0xa9,0x3c,0xd3,0xa4,0x5a,0x79,0xf8, - 0xec,0xfa,0xd6,0x47,0xda,0xde,0x20,0xc4,0x1d,0x7e,0x61,0x86,0x0a,0x4a,0x39,0x53,0x15,0x64,0x70,0x40, - 0x4a,0x0a,0x91,0x59,0x47,0xa4,0x5b,0x9c,0xb4,0xb3,0xa1,0x54,0x21,0x34,0xed,0x05,0x2e,0x12,0x52,0x51, - 0xe7,0xe7,0x03,0xf1,0xaa,0x0e,0x90,0x69,0x63,0x30,0xb3,0x2f,0x7b,0x53,0xe5,0x19,0x20,0xba,0x84,0x35, - 0x32,0x86,0xa9,0x34,0xbd,0x43,0x1b,0x95,0xb0,0x19,0x4d,0x80,0xa9,0x0b,0x3c,0x99,0xb1,0x6c,0x46,0xcc, - 0xe6,0xaf,0x60,0x8e,0xa4,0xec,0x6a,0x38,0x92,0x40,0xc0,0xf7,0xca,0x51,0x35,0x1c,0xc6,0x0a,0xc1,0xa9, - 0x75,0x26,0x25,0xed,0xeb,0x12,0x44,0x03,0xd8,0x6f,0xfc,0x64,0x75,0x4c,0xb9,0x6f,0x4d,0x04,0xe1,0xdc, - 0x16,0x05,0xf6,0xb5,0xa5,0xde,0x2b,0xc9,0xd6,0x9d,0x20,0xb8,0xc3,0x56,0xdc,0x77,0x6c,0x10,0xd0,0x3b, - 0xb4,0x9e,0xdb,0x3d,0x05,0x9a,0xb5,0xb5,0xaf,0xd7,0x6c,0x79,0xa6,0x6a,0x15,0x7c,0xe3,0x30,0x64,0x54, - 0x1c,0x4c,0x93,0xbd,0x3f,0x83,0xac,0x52,0x5d,0xca,0x1d,0xaa,0x48,0x10,0x6f,0x52,0x99,0x0b,0x49,0xc5, - 0x95,0xcd,0xb3,0x5c,0xee,0xdb,0x96,0x54,0x71,0x95,0xfa,0x5e,0x27,0xc2,0x70,0xd1,0x45,0x0f,0x4c,0x0e, - 0x86,0x93,0x07,0x63,0x1b,0xf9,0x60,0xc2,0x77,0x30,0x8d,0x8b,0xe3,0xc9,0x09,0xc3,0x19,0x75,0x71,0xd8, - 0x88,0xf4,0xa1,0x5d,0x9d,0xdb,0x76,0xb2,0x08,0xf8,0x20,0xa6,0xe2,0xdc,0xb7,0x15,0xe2,0x46,0x24,0x6d, - 0x85,0x3c,0x39,0xb7,0x0e,0xfc,0x0f,0x72,0xe3,0xc4,0x5f,0x26,0x59,0x72,0x8e,0x18,0xc9,0x7c,0x6b,0x42, - 0xa1,0x9e,0x15,0x91,0xf3,0xaa,0xd0,0x42,0x24,0x2d,0x8b,0x3f,0x4f,0xab,0x47,0x19,0xa3,0xa2,0x0a,0x8c, - 0x42,0x98,0x26,0x5b,0x5d,0x4a,0x4a,0x7d,0xd3,0xce,0x47,0x15,0x4c,0xc6,0x0f,0x21,0xef,0x6e,0x9e,0x68, - 0x0b,0xea,0x39,0xa2,0xa2,0x91,0xfb,0x1c,0x46,0xb8,0xf7,0x1a,0x16,0x0b,0xb8,0xdc,0x2a,0xd2,0xd7,0x2c, - 0x18,0x71,0xf8,0xc7,0x02,0x7a,0x97,0x48,0x7c,0x70,0x7d,0xf3,0xb3,0x3f,0x70,0x36,0x0d,0xe3,0x07,0x68, - 0x5d,0x89,0xe8,0xa2,0x73,0x5e,0x45,0xf8,0x04,0x1a,0x67,0x9b,0x67,0xea,0xb9,0x56,0x19,0xd7,0x8b,0x79, - 0xa0,0x02,0x8a,0x8d,0x11,0x0b,0x53,0x35,0xe5,0xa9,0x93,0x99,0x72,0x9e,0xd0,0xb4,0xcc,0x39,0x47,0x15, - 0x02,0x15,0x76,0x9d,0x4f,0xe8,0xac,0x64,0xe8,0xb3,0x11,0x22,0x39,0x57,0x14,0x60,0x53,0x83,0x3d,0x36, - 0x80,0x0b,0xd8,0xa8,0x1a,0x1a,0x76,0x07,0x29,0xbd,0xde,0x5e,0x61,0x2f,0x8e,0x35,0x18,0x4c,0xb1,0x40, - 0x44,0x0a,0xb3,0x05,0x25,0x82,0x57,0xc5,0x3f,0x9b,0x27,0x4b,0xd5,0x3d,0xed,0x1e,0xf0,0x53,0x35,0x60, - 0xee,0x8c,0x0a,0xc8,0xb6,0xeb,0x5f,0x73,0x78,0x91,0x34,0x66,0xef,0x95,0x9a,0x3d,0xbd,0x46,0xbf,0xd0, - 0x0c,0x2d,0x12,0x30,0x8e,0xc7,0x87,0x27,0xc3,0x85,0x9e,0x69,0x2b,0x7d,0x0b,0x17,0x1a,0x5c,0xfa,0x87, - 0x18,0xc9,0x2a,0x29,0x89,0x5f,0xcb,0x20,0xff,0x24,0xfe,0x6c,0x01,0x89,0x95,0x40,0x2c,0x8d,0x3a,0x6a, - 0x38,0xc4,0x85,0x13,0xef,0x75,0xcb,0x52,0x73,0x25,0xb4,0x03,0x52,0x3c,0xd7,0x26,0x96,0x33,0x58,0x98, - 0xc4,0x4b,0x61,0xad,0x01,0x63,0x04,0x17,0x9f,0x38,0x13,0x3e,0x9e,0x00,0x3d,0x1f,0x2d,0x9b,0xba,0x82, - 0xef,0xaf,0xf1,0x67,0x37,0x58,0x40,0xb4,0x8c,0x55,0x2d,0xbf,0x3a,0xd5,0xbd,0x9e,0x9e,0x6b,0xed,0xda, - 0xb1,0x69,0x70,0x35,0x3f,0xb9,0x33,0x95,0x81,0x38,0x31,0x06,0x82,0x04,0xb9,0x41,0xd4,0x65,0x35,0xa6, - 0x52,0xa4,0x9e,0xd8,0x97,0x3a,0x92,0x92,0xe1,0x1a,0x58,0x95,0x4a,0xdf,0x26,0xf9,0xf1,0xbd,0x13,0xad, - 0xc5,0x31,0x74,0x0f,0x4d,0xbd,0x4e,0xb1,0xab,0xf4,0xc8,0x00,0x71,0xa6,0xeb,0x7b,0xeb,0xa2,0xe7,0x16, - 0x23,0x84,0x47,0x9a,0x67,0x69,0x95,0x64,0xf6,0x83,0xb7,0xea,0x83,0x72,0x90,0x11,0x65,0x91,0x12,0x05, - 0x77,0x98,0x14,0xae,0x5e,0x51,0x50,0xab,0x6c,0x07,0x61,0xb2,0xef,0x25,0x85,0xeb,0x08,0xe2,0x96,0x98, - 0x1a,0x45,0xc9,0x17,0xca,0xe5,0x1c,0x04,0xa0,0xe9,0xad,0xf1,0x83,0x55,0x8c,0x64,0xb3,0xa3,0x82,0xb0, - 0x00,0x53,0x47,0xcc,0x29,0xf8,0x09,0x1c,0xb6,0xb4,0x99,0x64,0xb4,0x2d,0x9e,0xdd,0xb2,0x2f,0xfa,0xfd, - 0x5d,0x36,0x57,0x89,0x4f,0x43,0x13,0x19,0xbe,0x36,0x22,0x43,0xcf,0x82,0xb9,0xcd,0x92,0x8d,0x02,0x13, - 0x44,0x29,0xbe,0x09,0xe2,0xa0,0xc0,0x8f,0x8b,0xa4,0xa0,0x6f,0xa9,0xeb,0x27,0xb0,0xb3,0xcb,0xfa,0x77, - 0x82,0xf8,0x4e,0xff,0x37,0x28,0x0d,0xd8,0x4f,0x1b,0x56,0xd6,0xee,0x1e,0x66,0x4f,0xf0,0xcc,0xf6,0x82, - 0xce,0xb4,0xd9,0xd1,0x96,0xf6,0x66,0xcf,0xc0,0xe3,0x1e,0x37,0xc1,0x76,0xd0,0x67,0x7b,0x45,0x58,0x70, - 0x1c,0xf4,0xdb,0x22,0x72,0x3b,0x7a,0x5d,0xb3,0x75,0xb4,0x13,0xd0,0x0f,0x9e,0x04,0xfa,0x84,0xfb,0x77, - 0x61,0x48,0x57,0xe5,0x9d,0x45,0xe4,0xcc,0xaf,0xad,0x24,0x06,0x50,0x67,0x4b,0x6b,0x6c,0x0d,0x02,0x22, - 0xb7,0xf0,0x27,0x35,0x8e,0xa1,0x2c,0xc8,0xe1,0x90,0x8e,0x5e,0x61,0xa0,0x75,0x5c,0x33,0x1a,0x15,0xfd, - 0x84,0x1f,0xc4,0x6f,0x05,0xeb,0xae,0x53,0x63,0x63,0xeb,0x82,0x4c,0xcb,0xab,0x54,0x85,0x1f,0xa9,0x4c, - 0x10,0x6d,0xaf,0xa6,0x21,0x55,0xf0,0x73,0x11,0x1e,0x07,0x93,0xba,0x9c,0xd3,0x20,0xd8,0x58,0x97,0x7e, - 0xd3,0x39,0xfe,0x2e,0x64,0x9d,0x06,0x27,0xb7,0x9b,0x92,0xef,0x4e,0x8e,0x6b,0xd8,0x9a,0x77,0x5b,0xa2, - 0x6b,0x74,0x3a,0x08,0xfa,0x75,0x3f,0x78,0x4e,0x54,0x95,0x9d,0xac,0xf5,0x1a,0x1c,0x9b,0x32,0x0a,0xb1, - 0x1d,0x36,0xfe,0xbb,0xd6,0x7e,0x27,0xcc,0xfa,0x84,0xd5,0x61,0x6b,0x71,0xe7,0x74,0x55,0xd7,0x45,0x7e, - 0x07,0xd3,0xa0,0x2a,0x85,0x9f,0x7e,0x3f,0xe5,0x86,0x7f,0x96,0xa6,0x5a,0x4a,0xa3,0x45,0xb0,0x0a,0x38, - 0x3a,0xd8,0x87,0xd8,0x8e,0xaa,0xa6,0xc2,0x8b,0x59,0x19,0xea,0x4a,0x6e,0x40,0xe3,0x86,0xf9,0x48,0xaf, - 0x49,0x3f,0x30,0x19,0x41,0x5c,0x8e,0xd8,0x6a,0xd5,0x64,0x44,0x2e,0xc7,0x2c,0x20,0x43,0x9a,0x69,0x8b, - 0xc8,0x22,0x53,0x4b,0xdc,0xd5,0x8c,0xad,0xc8,0x87,0xce,0x9f,0x3d,0x16,0x80,0x63,0xdc,0x3c,0xe3,0xeb, - 0x5b,0x0e,0x0f,0x22,0x3f,0x9e,0xbd,0x99,0x46,0x1d,0x3a,0x9a,0x88,0x43,0xaa,0x4e,0xc3,0x19,0xad,0xba, - 0x0d,0x33,0x1c,0x8c,0xbf,0x84,0xcd,0xa2,0x44,0xc2,0xb7,0x10,0x6f,0xcd,0x1b,0xa7,0x9d,0x9a,0x23,0xd5, - 0x7d,0xea,0x5b,0x65,0xd6,0x0d,0xf3,0x25,0xc4,0xca,0xc9,0x71,0x3b,0xaf,0xb1,0x14,0x55,0x31,0xda,0xe2, - 0x00,0x86,0x7e,0x1c,0x80,0xd5,0xee,0x0f,0xe8,0xd2,0x47,0x52,0x59,0x27,0xc5,0x77,0xc6,0x13,0x1d,0x32, - 0xe0,0x0e,0x4f,0x9b,0x68,0xc5,0x35,0x8e,0xf3,0x76,0xa4,0x63,0x0f,0x81,0xc9,0xdc,0xc5,0xcb,0x37,0xc5, - 0x8a,0x42,0xdd,0xac,0xa2,0x5e,0xdf,0x94,0xc5,0x44,0x56,0x95,0x9c,0xda,0xa5,0xcf,0xad,0x71,0x77,0xad, - 0x0d,0xf7,0x77,0xd5,0xc3,0x56,0xd1,0xd2,0x2f,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x76,0x9d,0x44,0x43,0x12, - 0xd2,0xe2,0x9b,0x3e,0x66,0x88,0x54,0x89,0xd0,0x7e,0xc0,0xbe,0xec,0xdc,0x65,0x11,0xf8,0x08,0xf3,0xeb, - 0xbd,0xc7,0xb4,0x97,0x2b,0xaf,0xc0,0xbd,0x56,0x81,0x7b,0x28,0x90,0x37,0x5a,0x64,0x4a,0x67,0x3c,0x0f, - 0xb5,0x75,0xb5,0x23,0xf2,0x61,0x0e,0x9d,0xb2,0x07,0x8a,0x9b,0x65,0xc9,0x21,0xdc,0x30,0xab,0x91,0x46, - 0x3e,0xb7,0xd1,0x96,0x42,0x07,0x48,0x53,0x43,0xcd,0x66,0x3c,0xd2,0x6c,0xb6,0x35,0xd0,0xc2,0xcd,0x88, - 0xa3,0xb9,0x77,0x5b,0x34,0xb7,0xa2,0xd5,0xbb,0x98,0x0e,0x63,0xc0,0x4a,0xd3,0x35,0xa5,0xe9,0x3a,0x4f, - 0x96,0x96,0x0b,0x59,0xaf,0x3d,0x92,0x1e,0x52,0xdf,0x3c,0x5c,0x42,0xaa,0x4e,0xec,0xe7,0x18,0x76,0xc2, - 0xe7,0xfd,0xf0,0x82,0xa7,0xe7,0x82,0x63,0xc4,0x9d,0xd1,0xa7,0x3a,0xaa,0x78,0x40,0x5b,0x48,0xbf,0xdc, - 0xe6,0xf6,0x32,0xce,0xb5,0x69,0x03,0xcd,0x45,0x0c,0xa7,0x62,0x25,0x8b,0x6a,0xe0,0x67,0x82,0xbc,0x6b, - 0x53,0x29,0x8c,0xe6,0xb5,0xeb,0x40,0x70,0x22,0x76,0xcf,0x68,0x3a,0xae,0xd9,0x37,0x2b,0x5c,0x10,0xda, - 0x61,0xb6,0x20,0x60,0xc1,0xac,0x7a,0x0f,0xfa,0x67,0x91,0xb8,0x56,0x6f,0xe1,0x19,0x8c,0x82,0x4c,0x19, - 0xde,0x51,0xd7,0x34,0x0a,0xd8,0x33,0xf3,0x12,0x8c,0xd5,0x14,0xbb,0xb0,0xa9,0x13,0x3f,0xda,0x05,0x11, - 0x64,0x35,0x11,0x64,0x90,0x9d,0xaf,0x5a,0xbc,0xc5,0x08,0x35,0xc6,0x34,0x2d,0x58,0x36,0x48,0xa1,0xc6, - 0x34,0x33,0xb4,0x75,0xfa,0x13,0x6e,0x24,0xe5,0x8c,0xa8,0x1f,0xce,0x78,0x96,0x66,0x31,0x1b,0xa5,0x50, - 0xa3,0x96,0x6c,0x3c,0x4d,0x34,0xaf,0x3a,0xd2,0xf1,0xc1,0x52,0xb5,0x98,0x08,0x08,0x7a,0x5b,0x5b,0x38, - 0x94,0xc1,0xd3,0xa8,0xb6,0xee,0x60,0xea,0x68,0x1d,0xfb,0x01,0x3d,0x85,0xa7,0xdc,0xd0,0x29,0x37,0x14, - 0x5e,0xf2,0xcb,0xa5,0x69,0xd5,0x5e,0x98,0x74,0x45,0x4c,0xd0,0xd5,0x03,0xe9,0xe4,0x0b,0x56,0x48,0x7a, - 0x45,0xac,0xca,0x38,0xf1,0x73,0x8e,0xaf,0xc0,0x18,0x8d,0x2d,0xb6,0x1f,0xdb,0x38,0x96,0xb9,0x66,0x98, - 0x02,0xd5,0x73,0x0f,0x07,0xe5,0xed,0xbb,0x6c,0x5a,0xbb,0x1e,0xfb,0x45,0xb6,0x11,0x88,0x3a,0x56,0x3a, - 0x11,0x93,0x46,0x28,0x00,0x07,0x04,0x4b,0x5f,0xd0,0xfc,0x86,0xdb,0xdf,0x9b,0xb8,0x74,0x51,0xdf,0xa2, - 0x1d,0x15,0x4b,0x24,0x10,0xca,0x5b,0xd9,0x4e,0x83,0x75,0x0e,0xf1,0x11,0x55,0x03,0xd9,0xa8,0xf0,0xe4, - 0x7f,0x69,0xcb,0x35,0xda,0xf2,0x3d,0x5d,0x83,0x80,0x65,0x22,0x5a,0x31,0x5b,0x0e,0xb5,0xbd,0x2c,0xc4, - 0x04,0x37,0x79,0xc2,0x31,0x48,0x8c,0x9b,0x88,0x75,0x56,0xb5,0xc7,0xd3,0x28,0x18,0x17,0xa1,0x37,0x72, - 0x81,0x13,0x09,0x5d,0x7c,0x36,0xed,0xf7,0xf9,0x35,0x67,0xbf,0x36,0x5d,0x60,0xd3,0xc4,0xa3,0x9e,0xfb, - 0xc5,0x76,0x60,0xea,0xc6,0x80,0x30,0x50,0xcf,0x32,0xdd,0x9a,0xcc,0x7b,0xaa,0x3b,0xb7,0x63,0xcb,0x51, - 0xa9,0x8e,0x07,0x35,0x5b,0xa3,0x52,0x9f,0x16,0xfa,0xd4,0xe0,0xab,0x40,0x8c,0x55,0x83,0xbd,0x26,0x98, - 0x00,0x64,0x4c,0x04,0x66,0xa0,0x8d,0x01,0xa4,0x89,0xeb,0xe7,0xc8,0x07,0x79,0xb5,0xe4,0xb3,0x3b,0x55, - 0x5e,0x07,0xd1,0x88,0xd0,0x26,0xf1,0x91,0xa7,0xf3,0x62,0xf2,0x45,0xe3,0x06,0xdb,0x31,0x5a,0x44,0x2f, - 0x73,0xd3,0xa2,0x89,0x2d,0x35,0xdb,0xbe,0xc2,0x25,0x6d,0x87,0x08,0x49,0x08,0x41,0xd1,0x89,0xd0,0x65, - 0xf2,0x5b,0x6f,0x5d,0x22,0xad,0x6f,0x1d,0xd1,0x48,0x3a,0xf1,0xe2,0x30,0xc4,0xc7,0x01,0xc7,0x06,0x1e, - 0xaa,0x6b,0x40,0x3a,0xaf,0x95,0xba,0x29,0x4c,0x14,0x7a,0x2d,0xe6,0x5b,0x35,0xee,0xa9,0x3e,0x2e,0x94, - 0x80,0x6c,0xb8,0x02,0xf7,0x9c,0xec,0xee,0xae,0x10,0x4f,0x9a,0xf6,0xc7,0x65,0x5a,0xe2,0x6a,0x8d,0x94, - 0x43,0x59,0xd2,0x32,0x55,0x44,0x59,0x2b,0xde,0x8e,0xe8,0x6b,0xf5,0x11,0x11,0xd9,0x96,0xcd,0xe3,0x44, - 0xfd,0x02,0xc7,0x96,0x7e,0x58,0x28,0x8c,0x4a,0xf0,0xaf,0xc8,0x1c,0x1c,0x47,0x96,0x3c,0xf2,0x3d,0x7b, - 0xb6,0xe8,0x0b,0x5d,0x2c,0x52,0x68,0xa4,0x18,0xd0,0xd9,0x31,0xba,0xc3,0xec,0x23,0xb7,0x42,0x0f,0x68, - 0xc1,0xe4,0x5a,0xda,0x94,0x5a,0x72,0xcc,0x65,0x47,0xa5,0x8e,0x1c,0x56,0x7b,0x71,0x43,0x38,0xde,0x40, - 0xee,0x64,0x54,0x35,0xb9,0x82,0x13,0x1b,0x15,0x49,0x45,0xf5,0x18,0x1a,0xb2,0x10,0xd0,0x1f,0x09,0x2d, - 0xd9,0x63,0x92,0x13,0xce,0x2e,0xc0,0x82,0xca,0x53,0x25,0x50,0xae,0xf5,0x33,0x9d,0x49,0x4f,0x9c,0x49, - 0xbf,0x5e,0x26,0xef,0x56,0x57,0x82,0x5f,0x63,0xa0,0x09,0x55,0x62,0xc9,0xde,0x85,0xc8,0xa4,0x27,0x2f, - 0xdd,0x63,0x80,0x91,0x7b,0x07,0xc2,0x52,0xf6,0x2a,0x02,0x02,0xa6,0xc5,0xb8,0xe3,0x24,0x4d,0x29,0x21, - 0xd9,0xf4,0x81,0xd2,0x9e,0xfd,0x20,0xf3,0xa7,0xde,0xdd,0xdf,0x90,0x07,0xf5,0x13,0x3f,0xeb,0x38,0x3d, - 0x81,0xe9,0x0f,0xa3,0x13,0x7d,0x82,0x72,0xeb,0xfc,0x4c,0x5c,0x56,0x7f,0x95,0x9b,0x1c,0x3d,0x6f,0x42, - 0xfb,0x7b,0xea,0x82,0xc6,0xe8,0xdf,0x96,0x55,0xf1,0x7a,0x6d,0x59,0xe5,0x28,0xa8,0x0a,0x83,0xaf,0xd3, - 0x09,0x62,0xf7,0xd0,0x40,0x9a,0x99,0x1c,0xdf,0xe7,0xd0,0x2b,0xef,0x27,0x0b,0xc6,0xdf,0x8d,0xaf,0x1c, - 0x89,0xa1,0xc8,0x3c,0x23,0xe5,0xd3,0xdd,0xe3,0x7b,0x5a,0x82,0xbe,0x5f,0xce,0x7e,0xe9,0xc2,0x9f,0xaa, - 0xc2,0x10,0xfe,0xf9,0xa9,0x4c,0xc4,0x05,0x5e,0x42,0x3c,0x5e,0x11,0xff,0xd3,0x08,0xa6,0x92,0xdf,0xc6, - 0xd2,0xec,0xb4,0x91,0x9b,0xbb,0xb7,0x40,0x13,0x8f,0x4d,0x52,0x6e,0x14,0x66,0xec,0xba,0x53,0xd2,0x3e, - 0x87,0x84,0x98,0x8d,0x5d,0x69,0x8b,0x17,0x9a,0x74,0x84,0xdd,0x77,0x93,0x74,0x2c,0x9a,0xa4,0xe3,0xdc, - 0x2b,0x70,0xaf,0x55,0x80,0x49,0xc7,0xe2,0x36,0xd2,0xb1,0x6a,0x91,0x8e,0x93,0xfe,0xaa,0x3f,0x6f,0x90, - 0x8e,0x3a,0x34,0xae,0xa2,0x1d,0x69,0x0f,0xdd,0x28,0xc0,0xa7,0xed,0x2c,0x66,0x79,0xec,0x7d,0xaa,0x1d, - 0x20,0x72,0xb7,0x0e,0x51,0xa3,0xa2,0xb0,0x21,0x9b,0x65,0x33,0x94,0x11,0x51,0xb8,0x33,0xfe,0xd3,0x0f, - 0x08,0x01,0x87,0x95,0x22,0x53,0x1b,0x17,0x38,0x03,0x19,0xbb,0xb7,0xb8,0xab,0x48,0xac,0xc9,0x5b,0xf4, - 0x71,0xa3,0x70,0x7e,0x83,0xb6,0xc5,0x5e,0xc6,0xb5,0x29,0xc0,0xce,0x4d,0x4e,0x9c,0x4e,0xf6,0x08,0xf0, - 0xa0,0xc3,0x8d,0x33,0xd8,0xf0,0x73,0x6c,0x9c,0x12,0xfb,0xb5,0x1f,0x50,0x9c,0x06,0xed,0xfc,0x10,0x6d, - 0x96,0x49,0xea,0x07,0x4d,0x04,0x67,0xa3,0x97,0xdb,0x44,0xbb,0x35,0x9a,0x54,0xd6,0x56,0xf4,0x0a,0xe9, - 0x7b,0x6b,0xd8,0xd0,0x9d,0x07,0x1c,0x43,0xe7,0x50,0x05,0xee,0x63,0x2b,0x35,0xed,0x3a,0x9a,0x73,0xd8, - 0x9c,0xc2,0x44,0x07,0xd4,0x9c,0x5e,0xb3,0x8d,0xd8,0xb0,0x61,0x9e,0x60,0x83,0x58,0x07,0x1d,0x40,0x1b, - 0x1d,0x6b,0xb3,0x5b,0xc7,0xc8,0x6e,0x13,0x3c,0xb7,0x30,0xf1,0x8d,0x4a,0x6b,0x66,0x60,0x9b,0x33,0x0d, - 0xff,0x4c,0xc2,0xb2,0x92,0x63,0x17,0x62,0x9e,0xd9,0x05,0xde,0x62,0xe2,0xcc,0x93,0x77,0xdd,0x15,0x7b, - 0x77,0x45,0xa0,0x29,0xf1,0x7a,0x70,0x59,0xa6,0x4b,0x75,0xb5,0x3d,0x14,0x27,0xf6,0x15,0x9e,0x2a,0x3a, - 0xd7,0x2a,0x15,0xbd,0x22,0x36,0x8d,0xcb,0x79,0xf7,0x34,0x55,0x96,0x38,0xf1,0x23,0x15,0x99,0x39,0x56, - 0xb1,0xbb,0xfd,0x28,0x56,0x69,0x52,0x78,0x13,0x5f,0x78,0x7e,0x43,0xbc,0x95,0x1b,0xcc,0x4f,0xaa,0x6c, - 0xab,0x14,0xaf,0x63,0xde,0x8d,0xeb,0x68,0xb9,0x5e,0xcb,0x3c,0x0a,0x53,0x21,0x8d,0xdd,0x4d,0xde,0x8a, - 0xba,0xdd,0xbc,0x60,0x7e,0xeb,0x6a,0x1c,0x1b,0xc8,0xb1,0xb4,0xdd,0xc9,0x34,0x1c,0xd0,0xeb,0x04,0x17, - 0x2e,0x21,0xf0,0x93,0x4f,0x9b,0xc0,0xb7,0xa2,0x49,0xab,0x14,0x0b,0xd9,0x85,0xb1,0x26,0x40,0xdf,0x9a, - 0xbe,0x89,0x40,0x2a,0xde,0xd3,0x64,0x22,0xbb,0x04,0xfd,0x8f,0xab,0x95,0x7e,0xad,0x6c,0x44,0x7b,0x18, - 0x79,0x57,0xad,0x85,0x05,0x5b,0x97,0x5e,0x9f,0xca,0x23,0xcb,0x05,0xc5,0x1c,0xd0,0xb6,0xed,0x18,0x65, - 0x0c,0x49,0x15,0x03,0x49,0x63,0x1e,0x69,0x22,0x34,0xbe,0x6f,0x93,0xa0,0x82,0xb5,0x61,0xf3,0x46,0xf0, - 0xb5,0x16,0xa0,0x02,0xb7,0x68,0x82,0x52,0x85,0x5f,0x66,0x97,0xe4,0x38,0x18,0x5f,0x80,0xb2,0xbf,0x07, - 0x4d,0x41,0x0e,0x69,0x37,0x57,0x9e,0x7b,0x7b,0x36,0x9e,0xe7,0x61,0x5b,0x14,0xa2,0x6a,0x88,0x22,0xcb, - 0xcc,0x11,0x38,0x19,0x15,0x08,0x04,0x82,0xc5,0x6d,0x27,0xc3,0xa4,0x53,0x1e,0x48,0x98,0x8f,0xb1,0x76, - 0x05,0x12,0xc5,0x13,0x6a,0x4c,0xfc,0x4f,0xad,0xd6,0x8f,0x25,0x0f,0x84,0x00,0x3b,0x54,0x5d,0x4d,0x2e, - 0xdb,0x73,0x66,0x6d,0xa9,0x12,0x21,0x4d,0xf8,0xfa,0xd5,0xc6,0x52,0x89,0x54,0x4b,0x43,0xf2,0xc5,0x77, - 0xfa,0x73,0xc4,0xf5,0x33,0x52,0x2d,0x11,0xb8,0xbb,0xc6,0x3d,0x12,0xca,0xf3,0x86,0x6d,0x04,0x93,0x70, - 0x9b,0xfb,0xd3,0xea,0xde,0xc1,0xbd,0x7f,0xdd,0x3d,0x13,0xc1,0x27,0xf5,0x18,0x44,0xad,0xcc,0xef,0x5c, - 0xe6,0x77,0xfe,0xa5,0x99,0x33,0x0d,0x0b,0xf0,0x8d,0xf3,0x62,0xc9,0x3f,0x75,0xb3,0xec,0x2e,0x4f,0xb5, - 0x7d,0x53,0xda,0x09,0x59,0x96,0x50,0xf6,0x12,0x36,0x8e,0xe1,0x2d,0x7b,0xe6,0xdf,0xe4,0xe8,0xf5,0x33, - 0x7c,0x57,0x24,0xef,0x8a,0x3f,0x89,0x67,0x89,0xa8,0xb1,0x5a,0x87,0x94,0xd4,0xa3,0x3b,0x0f,0xd2,0x9d, - 0x73,0x28,0x70,0x83,0x4f,0x79,0x70,0xf7,0xfb,0x3b,0xf1,0x9d,0x07,0x54,0x8a,0xb0,0x86,0x7e,0x17,0xef, - 0x0a,0x57,0xde,0xf9,0xb8,0xf4,0xfe,0xcf,0xe1,0xc1,0x30,0x88,0xbe,0x3f,0x60,0x23,0xbe,0xa9,0xbd,0xd7, - 0x71,0x56,0x4a,0xf9,0x87,0x0c,0x11,0x92,0xf8,0xdc,0x26,0xba,0x40,0xdb,0xe6,0x6a,0x6c,0x71,0x91,0x27, - 0x2b,0x25,0x53,0x11,0x96,0x3c,0x0c,0x58,0x18,0xb0,0xe0,0x1c,0x3a,0xa4,0x05,0xf5,0x4a,0x70,0x09,0xa7, - 0x6e,0x15,0x50,0x6f,0x8a,0xb3,0x8e,0x9a,0xcf,0xd3,0xca,0xbb,0x0a,0x52,0x5c,0xe7,0xc9,0xdd,0xfd,0xf0, - 0xd3,0x65,0x44,0x6b,0x31,0xce,0x93,0xee,0x10,0x22,0x76,0xdd,0xae,0x73,0xd1,0xb9,0x5d,0x69,0x97,0x52, - 0x97,0x3f,0x2c,0x97,0xb0,0x4b,0x86,0xf7,0x34,0x42,0x95,0xc2,0xa0,0xf4,0xf4,0xd6,0x2a,0x75,0x48,0x98, - 0x83,0xa8,0xf9,0x61,0xdf,0xe9,0x0f,0xe9,0xf3,0x4b,0xea,0xdd,0xa7,0x47,0xe1,0xf1,0xc3,0xfd,0x7f,0x9f, - 0xa0,0x87,0x57,0x7f,0xda,0xc3,0xcb,0x5c,0x04,0xfb,0x7b,0x87,0x01,0xaa,0x7d,0x51,0x5c,0x9a,0x6a,0xa9, - 0xae,0xbd,0xbc,0xc1,0x90,0x39,0xdb,0x84,0xdd,0xc3,0x8d,0xf8,0xd2,0xd4,0x03,0xd9,0xd0,0x28,0xe2,0x88, - 0x58,0x6d,0x50,0xd2,0xfb,0x1c,0x8c,0xbc,0xdc,0x37,0x17,0x0c,0x06,0xe2,0x61,0x9e,0x1c,0x07,0xde,0x9a, - 0x38,0xc6,0x2d,0x30,0xd7,0x00,0x06,0x27,0xe2,0x1d,0x4a,0x29,0xeb,0xc6,0x23,0x86,0x31,0xca,0x54,0xc0, - 0x46,0x55,0xe8,0x0c,0x36,0x99,0x86,0x7c,0x5d,0x99,0x4e,0xdb,0xf4,0x0f,0x3a,0xa6,0xa3,0xbd,0x7f,0xd6, - 0x64,0x3c,0x56,0x21,0x7b,0xd1,0xa6,0x7a,0xe2,0x3c,0x77,0x6f,0x31,0xd2,0xfd,0x37,0x75,0xb5,0x8e,0xf2, - 0xe5,0x86,0x78,0xeb,0x7d,0x9e,0xdc,0x28,0x22,0xe2,0x25,0x6e,0xa2,0x27,0x50,0xa3,0x82,0x67,0x19,0x71, - 0x9c,0x5d,0xb7,0x8e,0x56,0xd9,0x1c,0x36,0x14,0x08,0xdb,0x54,0x16,0xd3,0x15,0x4f,0xd2,0xfb,0x6c,0x89, - 0x04,0x73,0x05,0x2e,0x67,0xca,0x12,0x32,0x1d,0x58,0x2f,0xe1,0x95,0xdb,0xfc,0x51,0xdd,0x8d,0xca,0xbe, - 0x11,0x02,0x24,0x7d,0x23,0x21,0x3b,0xcb,0x69,0x30,0x53,0xbd,0xeb,0x88,0x0e,0x39,0x11,0xe6,0x42,0xc4, - 0xce,0x8e,0x34,0x62,0xc2,0xc7,0x7b,0xb9,0x97,0x00,0x47,0x29,0x95,0xf2,0x21,0xff,0x92,0x17,0x97,0xb9, - 0xae,0x14,0x69,0xad,0x10,0xf3,0xf1,0x99,0xe8,0x8a,0x20,0x1f,0x7f,0xc9,0x85,0x77,0x31,0x21,0x3e,0x1c, - 0xcf,0xb3,0x99,0x9c,0x5c,0x4f,0xe6,0x12,0x77,0x31,0x57,0xf1,0xbb,0x7c,0x23,0x5e,0x13,0x44,0x1e,0xff, - 0xe7,0xd3,0xe5,0x60,0xef,0xe4,0xae,0xf8,0x9c,0x23,0x52,0x3f,0xef,0xad,0xf1,0x98,0xc8,0xb0,0x9b,0x8d, - 0x78,0x41,0x49,0x8e,0x60,0xb5,0xd7,0xda,0x29,0xbf,0x19,0xf1,0xa4,0x3b,0xf7,0x97,0x5f,0x9f,0xe4,0x17, - 0x59,0x59,0xe4,0xfa,0x8e,0xf0,0xdd,0x46,0x02,0x44,0x78,0xdc,0x53,0xf1,0x26,0x4f,0x9e,0xe4,0xbd,0x5e, - 0x77,0x6e,0x13,0xe0,0xc5,0xb3,0x3c,0x79,0x41,0x65,0xb5,0xc3,0x4e,0x9e,0x5e,0x64,0x67,0xe0,0x12,0x06, - 0x2b,0x9a,0xb0,0x87,0x67,0x7c,0x13,0x53,0xa3,0xfc,0xe3,0x3c,0x79,0x46,0xe5,0xef,0x2e,0xaa,0x4c,0xae, - 0x09,0xf7,0x4c,0xa9,0x88,0xb6,0xb8,0x7a,0x96,0x47,0xe2,0xa9,0xca,0x7e,0xe6,0xf9,0x0b,0xa2,0xe4,0xce, - 0x77,0x83,0x03,0x60,0x37,0xf1,0x6a,0x3b,0x5f,0x4e,0xcf,0xe4,0x5d,0xce,0x7c,0xb9,0x9d,0x49,0x70,0x50, - 0xd2,0x39,0x87,0x6c,0x3a,0xcd,0xcc,0x1b,0x1d,0x68,0x6f,0x72,0xf1,0x56,0x77,0x25,0x5b,0x9e,0xd3,0xde, - 0x5a,0x67,0xcb,0x74,0x4a,0x7f,0x0a,0xfa,0x53,0x54,0xae,0x4b,0x70,0x19,0x2f,0x2a,0xfd,0xc9,0xa3,0x3c, - 0x09,0xf9,0x9b,0xc9,0x79,0x49,0x24,0xca,0xa7,0xbb,0x9f,0xa6,0x7d,0xaf,0xf7,0x37,0x9b,0x01,0xdf,0xbe, - 0x1b,0x89,0x5f,0xa0,0x8c,0x06,0x55,0xf5,0x22,0xe7,0x10,0x95,0xc0,0xca,0x1f,0xd8,0xae,0xa1,0xfb,0xaa, - 0xe2,0x0f,0x84,0x4f,0x74,0xec,0x83,0x40,0xdc,0xe0,0xaa,0x63,0x8f,0x02,0x46,0x65,0x07,0x1b,0xe0,0x29, - 0x35,0xcb,0xdb,0x01,0xf5,0xd0,0x83,0x7d,0xfb,0x3d,0x43,0xfd,0x87,0x3c,0xf2,0x9c,0xba,0xd1,0xfe,0xc7, - 0x5c,0xfc,0x98,0x8b,0x3f,0x3c,0x14,0xd4,0xa2,0x05,0x68,0x8c,0x1f,0x61,0x18,0xf3,0x91,0xda,0xc3,0xa2, - 0x76,0xc1,0xd0,0xd9,0xbc,0x38,0x4d,0xe7,0xa0,0x49,0x19,0x51,0x61,0x5e,0x54,0x12,0x70,0x3f,0xd8,0xc1, - 0x81,0xcc,0x2f,0x06,0x1f,0x3f,0x3c,0x19,0x3f,0x79,0xf5,0x31,0x12,0x1f,0x09,0x96,0x7f,0x6f,0x80,0xc8, - 0x78,0x8c,0xcc,0xc7,0x4f,0x3e,0xbe,0x7f,0xfd,0xfa,0xc5,0xbb,0xf1,0x0f,0x2f,0x5e,0x3f,0x7a,0xf8,0x62, - 0xfc,0xe3,0xeb,0xd7,0xcf,0xc7,0x63,0xf1,0xbc,0x1b,0x70,0xdf,0x5d,0x2f,0x4e,0x0b,0x6a,0xf4,0x2a,0x54, - 0x4f,0x51,0x77,0xdf,0xf4,0x95,0xc5,0x28,0xd7,0xba,0xbd,0x38,0x1a,0xfe,0x78,0x4b,0xcd,0x92,0x8b,0xd3, - 0x4f,0x34,0x7a,0xd7,0x9c,0xf5,0x46,0xac,0x0b,0x75,0x95,0x9f,0xac,0xbb,0x22,0xaf,0xda,0x68,0xf9,0xcd, - 0xe3,0xaf,0x03,0xd3,0xef,0x62,0x8a,0x4d,0x55,0x50,0x62,0x0a,0xff,0x1b,0x5a,0xd6,0xc6,0x37,0x5e,0x41, - 0xac,0x7f,0xa3,0x2c,0x21,0x8b,0xb4,0xf4,0x17,0xf2,0xab,0x1d,0x14,0xf5,0x46,0x9b,0x10,0xfc,0x94,0x27, - 0x67,0xe2,0x07,0x30,0x04,0xbf,0xe6,0x5b,0x9f,0x67,0xd3,0xe4,0x07,0xa2,0xdb,0xf4,0x55,0x89,0xab,0x53, - 0xa8,0xe7,0x37,0xc3,0x5f,0xf3,0x66,0x1f,0xdf,0xad,0x4e,0x3b,0xba,0x49,0xa5,0x75,0xb0,0x3e,0x6a,0xae, - 0xf1,0x89,0x72,0x34,0x6c,0x7f,0xa5,0x6f,0x13,0xc5,0x77,0x62,0xeb,0x13,0x75,0x51,0xb6,0xdf,0x3f,0xef, - 0x1e,0x6d,0xfb,0x88,0xce,0x3c,0x96,0x4b,0x25,0x68,0x6f,0xd5,0x90,0x17,0x35,0x11,0xd6,0xdd,0x17,0xe6, - 0xb9,0x0e,0x5b,0x49,0x2b,0xdb,0x3b,0xd5,0x6d,0x7b,0x27,0xbe,0x0c,0x7e,0x65,0xaf,0xcf,0xb3,0x0d,0xb3, - 0x59,0x3c,0x4f,0xe7,0xbf,0x73,0x84,0x53,0xfe,0xad,0x7d,0xe4,0x3b,0x65,0x98,0x9e,0x1e,0xb8,0xca,0xe8, - 0x4b,0x2e,0xf9,0xf6,0xa7,0xf6,0x1d,0x97,0xfa,0xf6,0x4a,0xbe,0x43,0x4a,0xdf,0x77,0x29,0xe7,0x0b,0x73, - 0xd9,0x65,0x5e,0x99,0xab,0x3b,0xd4,0x57,0xfa,0xb2,0xa9,0x42,0xbd,0xba,0xdb,0xa7,0xfc,0x42,0xee,0x16, - 0xaa,0x66,0xaa,0xb9,0x17,0xd2,0x4f,0xe5,0x1b,0x4c,0x61,0xce,0x0b,0x2a,0x4f,0x37,0xd1,0x34,0x6b,0x35, - 0x17,0x5b,0x6e,0x19,0x10,0x37,0xea,0xd1,0x57,0x74,0xfa,0x49,0x65,0x7a,0xc9,0x21,0x65,0x18,0xbc,0xec, - 0xb5,0xa9,0x36,0xc1,0xf9,0x6d,0xb1,0xb2,0x42,0x25,0x9a,0xb0,0xe5,0xae,0xd8,0xd1,0x9c,0x1a,0x9d,0x7a, - 0x09,0x7c,0xd3,0xaa,0x79,0x6d,0xc4,0x00,0xaf,0xbc,0x34,0xbe,0x70,0xce,0xef,0xcd,0x76,0x10,0x71,0x98, - 0x0c,0x89,0x9f,0x09,0x31,0xf3,0x52,0xc4,0x88,0x8e,0x37,0xcb,0xce,0x56,0x7c,0x4b,0x79,0x0c,0xa4,0x3b, - 0xfc,0x39,0x57,0xcb,0xc4,0x37,0xd4,0x6f,0x63,0xce,0xee,0x69,0xd9,0x74,0xde,0x48,0x4f,0x94,0x4f,0xf8, - 0x9b,0x07,0xa5,0xd4,0xb0,0xda,0x95,0x75,0xeb,0x66,0x12,0x83,0x8d,0xf9,0x1e,0x0b,0x8e,0x6f,0xa2,0xd8, - 0x2c,0x75,0x6b,0x8c,0x33,0x8d,0xe3,0x55,0x47,0xcc,0x1b,0x6f,0xd2,0x0e,0x04,0xb5,0x4e,0x03,0x6b,0xdd, - 0xa9,0x23,0xf2,0xb2,0x85,0x1a,0x70,0x7b,0xca,0x71,0x80,0x3d,0x1b,0x20,0xe4,0xf5,0xd2,0xb3,0xc3,0xd0, - 0xe1,0xd3,0x90,0xc2,0xe1,0xc0,0xf0,0x50,0xc0,0x71,0x2c,0x28,0x61,0xba,0x5f,0x49,0x98,0x67,0x74,0x98, - 0xe5,0xa9,0x5e,0xca,0x12,0xe6,0x01,0x97,0x61,0x4e,0x90,0xdc,0x1d,0x40,0xfb,0x18,0xf7,0x87,0xd9,0x50, - 0x41,0x56,0x26,0xb1,0xbf,0x3f,0x8c,0xf8,0x7e,0x5b,0x9b,0x65,0x2d,0xbe,0x11,0x49,0x5e,0x3b,0x91,0x62, - 0xc6,0xe1,0xa3,0xa1,0xef,0xe6,0x56,0xa1,0x25,0x86,0x3a,0xb0,0x65,0xad,0x02,0x5b,0xaa,0x61,0xc5,0xfc, - 0x68,0x06,0x13,0x23,0x9e,0xbb,0x8b,0x33,0x69,0x86,0x86,0x64,0x8d,0x08,0xee,0x39,0xf1,0x11,0xe4,0x31, - 0xc5,0x29,0x9f,0x71,0xe6,0x72,0x6c,0x91,0x02,0x2f,0x69,0xcc,0x02,0x3b,0x29,0x70,0x1e,0xca,0x77,0xc5, - 0x4e,0x2d,0xc1,0x88,0xc7,0xf5,0x30,0x2d,0x48,0xd3,0x40,0x24,0x65,0x99,0xdc,0x54,0xe7,0xc5,0x6a,0x3e, - 0xa5,0xbd,0x4a,0x33,0x58,0x03,0xb6,0x44,0xcb,0x32,0x97,0x87,0xa3,0x82,0x97,0x18,0x5c,0x21,0x97,0xbc, - 0xe6,0xbf,0x6a,0xfc,0x70,0xb1,0x60,0x37,0x5e,0xc2,0x56,0x97,0xfa,0xf2,0x64,0x1a,0x7a,0xa0,0x2f,0x60, - 0xde,0x8a,0x3b,0x12,0x86,0x9f,0x9b,0x12,0x21,0x15,0xd2,0xd0,0x52,0x92,0x89,0xdc,0xc4,0xed,0x6c,0xef, - 0x26,0xe5,0x4e,0x35,0x90,0x76,0xa7,0xc5,0xba,0x5c,0x2a,0x15,0x0f,0x62,0x3e,0x13,0x6d,0x02,0x91,0x68, - 0x29,0xca,0x52,0x5f,0x74,0xdb,0x98,0xbb,0x1a,0x1e,0x00,0x48,0xbd,0x4c,0xe7,0x5f,0x42,0x8e,0xc4,0x5e, - 0x7a,0xb8,0x1a,0xa9,0xb7,0x98,0x28,0xb7,0x2e,0x96,0x57,0x32,0x06,0xe9,0xcb,0x18,0xde,0xa1,0xe7,0x88, - 0xa2,0x4e,0xc8,0x9a,0x7e,0x4e,0xe0,0x72,0xee,0x57,0xee,0x77,0xe4,0xb6,0xcb,0xaa,0xba,0x70,0xff,0x43, - 0x75,0x43,0x95,0xba,0x11,0x98,0x8e,0xda,0xf7,0x46,0x1e,0xda,0x62,0x65,0x86,0xa9,0x0a,0x7b,0x72,0x0b, - 0xd3,0xb7,0x93,0x8f,0x5e,0xe8,0x94,0x58,0xfa,0x5e,0xa5,0x96,0x02,0x91,0xa3,0x3a,0x7e,0xa1,0xa4,0x38, - 0xc4,0xc5,0x75,0x6e,0xab,0x14,0x1b,0x2a,0x79,0x42,0x04,0xe0,0xc3,0xdb,0x0b,0xf4,0x83,0x2a,0x38,0x49, - 0xde,0x50,0x21,0xea,0x11,0x53,0xa1,0x5b,0x87,0x92,0x52,0x12,0x13,0x5e,0x79,0xc4,0xe6,0xcf,0xf6,0xae, - 0x39,0x69,0x92,0xa4,0x4d,0xb2,0x76,0x6b,0x3b,0x4d,0xa4,0x51,0xaf,0xd7,0x1d,0xd1,0xe6,0xa5,0x36,0x4f, - 0x24,0xf2,0xf6,0x02,0xb6,0x72,0x51,0xd3,0x1b,0x43,0x1a,0xc9,0x27,0x7c,0x31,0x44,0x95,0x00,0x66,0x86, - 0x29,0x31,0x20,0xed,0x0b,0xf1,0x58,0x79,0x78,0x9c,0x9e,0x44,0x7c,0xd9,0x50,0x92,0x8e,0x52,0xe3,0x52, - 0x5e,0x45,0xad,0x4b,0xe2,0xaa,0x68,0x44,0x9c,0x5c,0x75,0x62,0x77,0xec,0x06,0xe3,0x56,0xd1,0x43,0xe9, - 0x61,0x21,0xeb,0xf3,0x62,0xca,0x8f,0xea,0x0a,0x68,0x3c,0x4d,0x74,0x2c,0x81,0xee,0x89,0xd9,0x1e,0x4e, - 0x57,0x94,0x7d,0x43,0x30,0xf3,0x30,0x85,0x84,0xe9,0x63,0xc6,0x81,0x1a,0x4c,0xfb,0x17,0xc4,0xd2,0x24, - 0x2f,0x94,0x44,0xb6,0x14,0x93,0x52,0xac,0xca,0x96,0x86,0xb6,0x4d,0x73,0x03,0x02,0x08,0x67,0xcf,0x71, - 0x0b,0x94,0x98,0x71,0x08,0x36,0x0e,0xc4,0xc6,0xb6,0x30,0x1d,0x34,0x2b,0x51,0x79,0x36,0x1a,0x37,0x88, - 0x57,0xff,0x3d,0x8a,0x26,0x0d,0xb2,0xd0,0xcf,0x0b,0x3f,0x10,0x38,0x5b,0x03,0x3d,0x57,0xb1,0x75,0xda, - 0x7b,0x49,0xe4,0x7b,0x7a,0x26,0x8f,0xce,0xd3,0x3c,0x97,0xf3,0xf5,0x7a,0xf7,0x2a,0x6c,0x26,0x81,0xee, - 0x36,0x97,0x19,0x35,0x73,0x08,0xad,0x55,0x75,0xb9,0xc2,0x19,0xcc,0xf7,0x1b,0x35,0x73,0xad,0x9c,0x29, - 0xec,0xe8,0x9f,0x71,0xaf,0xfb,0x00,0x57,0x3a,0x67,0x54,0x32,0x2d,0x19,0xf5,0x35,0x2b,0x12,0xe7,0x65, - 0x32,0xa5,0x69,0xa6,0xc3,0xe8,0xde,0x50,0x3f,0x1c,0x0e,0xc0,0xa1,0x72,0xa9,0xe4,0x83,0x68,0x56,0x7f, - 0x8e,0x22,0x55,0xad,0x2b,0x81,0xb0,0x67,0x73,0xcb,0xa4,0x12,0xce,0x5e,0x64,0x15,0xcf,0xa7,0x7e,0xd4, - 0x96,0xbb,0x17,0x65,0xa2,0x13,0xcc,0x0d,0xb9,0x44,0x4a,0x57,0x8d,0x56,0x2e,0x4a,0x75,0xdd,0xf0,0x87, - 0x88,0x78,0xca,0x86,0xcb,0xe0,0x99,0x89,0x36,0x4c,0x1f,0x4c,0x4a,0x06,0x8a,0x45,0x29,0xce,0xd4,0xd0, - 0x88,0x19,0xbb,0x2e,0x5b,0x82,0x26,0x2d,0x4e,0xed,0x05,0x36,0x8e,0x33,0x0b,0xaf,0x08,0x43,0x05,0xff, - 0x8f,0xad,0xcf,0x6b,0x80,0x8b,0x95,0x5d,0xc5,0xf0,0x8e,0xb7,0x85,0x4a,0xc4,0x8d,0x55,0x85,0xf2,0xdb, - 0x0a,0x19,0x1b,0x3a,0xd6,0xc1,0x13,0xb1,0xd9,0x28,0x27,0x60,0x11,0x01,0xc1,0xe6,0x56,0x3c,0x3e,0x09, - 0xf6,0x73,0x5c,0xaa,0x6b,0x9b,0x4e,0x19,0x52,0x2f,0xf9,0xef,0x15,0x87,0x6a,0xda,0x63,0xa8,0xfd,0xc2, - 0x7f,0x8f,0x70,0x76,0x3c,0xc4,0x9f,0x77,0x65,0x07,0x5d,0x6c,0xce,0xb9,0x05,0x82,0xa7,0xb3,0x17,0xc6, - 0x98,0xb1,0x15,0x91,0x2c,0xea,0x1c,0x73,0x09,0x86,0xa3,0xe0,0xe4,0x72,0x14,0xea,0x33,0x91,0x0e,0xc5, - 0xdd,0xdd,0x92,0x1f,0xd4,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0xdf,0x0f,0x9f,0xfe,0x71,0xcd,0x49,0x78, - 0xd0,0x0c,0x0d,0x51,0x7e,0x9c,0x84,0x07,0x7d,0x20,0x71,0x65,0xae,0x0e,0xf7,0xa9,0xf7,0x85,0xa6,0x32, - 0x27,0xa7,0x86,0x4a,0x27,0x36,0xa9,0xdf,0x7f,0xa8,0x1b,0x52,0x91,0xd4,0x2c,0xf5,0x3a,0xcd,0xe8,0xdc, - 0x77,0xf5,0xd8,0x63,0x1c,0xac,0x94,0x26,0xe6,0xe5,0xe5,0x63,0xff,0x9d,0x32,0x9f,0x4d,0x2b,0x03,0x10, - 0x5e,0x91,0x76,0xaa,0xd3,0x20,0x40,0xdc,0xde,0x11,0x9f,0x40,0xaa,0x3b,0xe3,0x89,0x06,0xa9,0x69,0x2c, - 0x32,0x0e,0xfd,0xd7,0x96,0xcf,0xce,0xee,0xeb,0x5c,0x89,0x2d,0xcc,0x15,0x74,0x70,0x07,0xd3,0x61,0x4e, - 0x06,0x81,0xbb,0xf5,0xb1,0xe3,0xc0,0xec,0x38,0x84,0x1b,0xe8,0x73,0x58,0x27,0xfa,0x2c,0x76,0xd7,0xc8, - 0x6d,0xd8,0x4b,0xca,0xeb,0x0f,0x2c,0xc1,0xbb,0x7a,0x17,0xc1,0x2d,0x5e,0xf8,0x94,0x90,0x99,0x4a,0x63, - 0x5b,0x66,0x3e,0x43,0xf0,0x99,0x77,0xfe,0x49,0xdf,0xa2,0xcf,0x99,0xae,0x1e,0x2a,0x6e,0x4f,0x78,0xec, - 0xe3,0xbf,0x75,0x3c,0x1f,0x9b,0x14,0x79,0x8c,0x9d,0x8a,0x31,0xc1,0xb7,0x02,0x2a,0x20,0xe5,0xc0,0x79, - 0xba,0x17,0xaa,0xaf,0xfa,0xde,0x36,0x61,0xc5,0x2b,0xda,0xd0,0xdb,0x42,0x51,0x54,0x9f,0x97,0xc5,0x25, - 0x1d,0x22,0x6f,0x59,0x59,0x7f,0x47,0x7d,0xb6,0x43,0xd3,0xb7,0xa3,0xe1,0x7a,0x07,0xd6,0x16,0xcd,0x25, - 0x85,0x29,0x4a,0xb4,0x21,0x9c,0x44,0x95,0x5f,0xdf,0x58,0xd8,0xec,0xf5,0x7e,0xc4,0xc4,0xb9,0x0e,0xa2, - 0xf7,0xc5,0x32,0xd4,0x53,0x04,0x29,0x40,0xbe,0x5a,0x02,0x9e,0x5c,0x3c,0x3c,0x3a,0x4a,0x1a,0xf3,0xa2, - 0xb8,0xe4,0x0e,0xe7,0x9b,0x9a,0x20,0x79,0xd8,0x04,0x38,0xc8,0x2d,0x42,0xd8,0xc3,0x85,0xad,0x74,0x15, - 0xf7,0xab,0x01,0xc1,0x86,0xdd,0xf7,0xc1,0xd8,0x7e,0x5f,0x6b,0x49,0x81,0xda,0xbc,0x51,0xab,0x4b,0x5e, - 0xbf,0xbf,0xc2,0xa2,0x63,0xdb,0xd8,0x7b,0xed,0xc1,0x1b,0x98,0x7e,0x9b,0x4c,0xb0,0x19,0x5d,0xfd,0xa7, - 0x71,0xe1,0xb6,0x03,0x27,0x79,0xd0,0x22,0x02,0x6d,0x1a,0xe5,0xba,0x3b,0xf4,0x77,0x60,0xb3,0xa6,0xad, - 0x9d,0xd8,0x4a,0x50,0x12,0x98,0x30,0x12,0xae,0xc2,0xca,0xdb,0xed,0xfe,0x44,0x35,0xf7,0x7d,0xde,0x9c, - 0x44,0x13,0x63,0xb2,0x35,0x43,0x4a,0xea,0xb0,0x25,0xa1,0xe1,0x8d,0xe0,0x21,0x9a,0x5d,0xbd,0x1f,0x80, - 0xa9,0x54,0x7a,0xb9,0xa2,0xc2,0xf1,0x2d,0x8b,0xad,0x03,0x47,0x27,0xc9,0x15,0xee,0x70,0x66,0xb8,0xe5, - 0x27,0xa0,0xaf,0x2f,0x0d,0xbb,0xbf,0xd3,0xd2,0x9a,0x22,0x0e,0xf3,0xef,0x8f,0xca,0x5e,0xef,0xb4,0xe4, - 0x9b,0xcb,0xa6,0xdf,0x73,0x4d,0x51,0xce,0x71,0xfc,0x4d,0xb8,0xe8,0xbc,0x7f,0x28,0x0e,0x20,0xc7,0xe1, - 0xc3,0xee,0xd4,0x5c,0x2a,0x19,0x0d,0xf7,0xb0,0xd3,0x71,0x3a,0x1c,0x88,0x8f,0x21,0xae,0xa8,0x86,0x21, - 0x94,0x92,0xd7,0x34,0xc6,0x4b,0xdd,0xf6,0x07,0x0b,0x3a,0xd5,0x61,0x57,0x13,0xa5,0xc4,0x6d,0x7d,0x36, - 0x32,0xda,0xd5,0xb2,0x34,0x46,0x14,0xeb,0x75,0xc6,0x57,0xc7,0xd9,0xad,0xd3,0x80,0x16,0xe5,0xb2,0x69, - 0x6a,0x6d,0xf0,0x58,0x6a,0xcb,0x96,0x7a,0xd3,0x4d,0x4e,0xd5,0xfe,0xd6,0xdb,0x5f,0x30,0x5d,0x6e,0xc5, - 0xa8,0x6f,0xc3,0xda,0x30,0x62,0xe2,0x8e,0xb1,0xd2,0xf8,0x4b,0x3b,0x9b,0xe7,0xe5,0xf6,0x16,0x36,0xad, - 0xe9,0x90,0xe8,0x62,0x17,0x00,0x78,0x48,0x91,0x27,0xc2,0x3f,0x75,0x20,0xca,0x68,0xd4,0xb2,0x2d,0x46, - 0xfb,0xb3,0x1d,0xe6,0x6f,0x2d,0xfd,0x79,0xd8,0x5e,0xaa,0x9a,0xe0,0x7e,0x5a,0x5c,0x7e,0x75,0xbd,0xf4, - 0xe0,0x10,0xa8,0xe7,0x91,0x24,0xba,0xef,0xb1,0xd1,0x1f,0xad,0xd7,0x76,0xe4,0xee,0x98,0x57,0x0c,0xec, - 0xf0,0x6f,0x75,0xae,0xb5,0xb7,0x87,0x8d,0xc3,0xf8,0x70,0xa3,0xf8,0xb6,0xf7,0x44,0x9c,0xc8,0x7c,0xb5, - 0x90,0x46,0x9e,0x23,0x5a,0xf2,0x1d,0x28,0x6d,0xe2,0x33,0x51,0xe1,0xef,0x46,0xbc,0xa6,0xe2,0xd8,0x61, - 0x60,0xce,0x87,0x5f,0xea,0xf0,0xc8,0x93,0xb8,0x2a,0x4e,0xff,0x73,0x29,0x5e,0x94,0xe2,0x49,0x29,0xde, - 0x94,0xe2,0x19,0x95,0x86,0x0b,0xbf,0xcf,0x43,0x6b,0x0a,0x87,0xcf,0x83,0x6e,0x0f,0xfd,0x0e,0x17,0xfc, - 0xac,0xb2,0xd3,0x13,0x75,0x39,0xe9,0x27,0xa1,0x8a,0xc2,0x7c,0x33,0x66,0x31,0x8f,0xca,0x44,0xe7,0xb5, - 0xd7,0xf1,0xb8,0x14,0xda,0x1b,0xfe,0x23,0x9c,0xf9,0xe3,0xd4,0xbc,0x3e,0x99,0x2f,0xe2,0x52,0x31,0x6c, - 0x44,0xbb,0xc9,0x19,0xde,0x33,0xf5,0xbe,0xc1,0x35,0x14,0xca,0x7b,0xbb,0x69,0xd6,0x23,0xcc,0x6d,0x2f, - 0xda,0x90,0x27,0x99,0xe8,0x07,0x51,0xb5,0x6d,0x77,0x28,0xab,0x95,0x42,0xd8,0x90,0x08,0x96,0xed,0x0b, - 0x46,0x39,0x4e,0x00,0x2e,0x6e,0x8e,0x06,0x7b,0xac,0x7d,0x0c,0x41,0x9f,0x4a,0xea,0x8e,0x96,0xce,0x79, - 0x57,0x1c,0x69,0x9f,0x72,0x78,0xdb,0x3f,0x9c,0xdb,0xcd,0x8f,0xa0,0x9c,0xcf,0x00,0x85,0x92,0xa3,0x23, - 0x84,0x05,0xae,0x89,0xb7,0xf1,0x4c,0x37,0xc2,0x64,0xc4,0x4d,0x56,0xcb,0x38,0xda,0x6d,0x05,0x31,0xd8, - 0xed,0x22,0x4c,0x55,0x43,0xbb,0xbb,0x61,0x86,0x95,0x32,0x51,0x09,0x06,0x63,0x35,0x01,0x47,0x5a,0x58, - 0xbb,0x5e,0x9b,0xd0,0xa7,0xce,0x9a,0x8f,0xcb,0x7b,0xef,0x7c,0x6d,0x81,0x36,0x85,0x74,0xf5,0x78,0x8b, - 0x04,0x29,0xaf,0x0e,0x7d,0xc5,0x8f,0x63,0x7d,0x6f,0x75,0x68,0x1e,0x8d,0x30,0x95,0xef,0x48,0xba,0xad, - 0x2b,0x10,0x10,0x0f,0xf6,0xd4,0x2d,0x17,0xe6,0x72,0xa0,0xe6,0x0d,0x61,0x53,0x5c,0x5a,0xb1,0x67,0xaf, - 0xb2,0x47,0x48,0x7e,0x4a,0x62,0xd3,0x16,0x5b,0xa9,0xb2,0xb2,0xbc,0xc9,0xca,0x41,0x43,0x44,0x65,0x2c, - 0x82,0x15,0xeb,0x8e,0x18,0x50,0x28,0x27,0xaa,0xa4,0x31,0x24,0x4a,0x83,0x82,0x05,0xa1,0xa7,0x85,0xf2, - 0x4b,0xae,0x7c,0xb7,0x64,0x13,0xbf,0xe7,0x78,0x42,0x1c,0x3f,0x2e,0x2d,0x7f,0x1a,0xae,0x44,0xbb,0x6d, - 0x75,0x49,0xde,0x76,0xfb,0x07,0x5b,0x25,0x1f,0xb3,0xf0,0x7c,0xe3,0x0c,0x9a,0xe7,0xc9,0xf6,0x04,0xbb, - 0x98,0x10,0x5f,0xc9,0xa3,0x73,0x58,0xaa,0xab,0x1f,0xe7,0xd1,0xa6,0xe0,0x89,0xdf,0xab,0xf8,0xfa,0xfa, - 0x1c,0x16,0x8a,0x5e,0x98,0x6c,0xca,0xa0,0x69,0x98,0x68,0x35,0x39,0xe2,0x24,0xf9,0x97,0x16,0xdb,0x4d, - 0xda,0xb1,0x71,0x85,0x17,0xc2,0x82,0x9e,0xed,0x2a,0x00,0xe2,0x5c,0x74,0x8c,0x8d,0x50,0x61,0xb9,0xb6, - 0x0f,0x6d,0x75,0x0f,0x91,0xbe,0xbc,0xae,0xec,0x6a,0x61,0x58,0x36,0x62,0xa1,0x85,0xfe,0x2b,0x9b,0x5b, - 0xe3,0xce,0x50,0xab,0xf0,0x67,0x03,0xb7,0xe6,0xee,0x62,0x57,0x73,0xf7,0xcd,0x28,0x84,0xfb,0x6a,0x84, - 0xfb,0x95,0x2d,0x2e,0x25,0x46,0xcf,0xf8,0x64,0x46,0x71,0x8a,0x0a,0x77,0x0f,0x40,0xd1,0x69,0x9b,0x80, - 0x4e,0x5a,0x63,0xbb,0xa3,0x4d,0x3c,0xc7,0x8e,0xa0,0xcd,0x9e,0x58,0x49,0xa5,0x32,0x72,0x55,0x48,0x34, - 0x64,0xa9,0xd4,0x60,0xac,0x6c,0x1e,0x9e,0xe5,0x8e,0xdb,0x2a,0xf8,0xbe,0x64,0x50,0x79,0xb6,0xaf,0x11, - 0x02,0x55,0x7a,0x3d,0x3f,0x18,0x7a,0xd2,0xcc,0x61,0x49,0x2c,0xcb,0x5e,0xfb,0x5a,0x73,0xc8,0x34,0xe1, - 0x1c,0x69,0x33,0x8e,0xcb,0x13,0xe2,0xee,0xd1,0x83,0x86,0x6d,0x03,0xc8,0x16,0xf6,0x57,0x89,0xfd,0x9b, - 0x8c,0x29,0x55,0x3c,0x2e,0x1b,0x42,0xca,0x67,0xb4,0x5f,0x9f,0x96,0xc9,0xa1,0x78,0x55,0x26,0xf7,0xc4, - 0x4b,0x34,0xfc,0xd9,0xd7,0xdb,0xf1,0xc5,0xd5,0xdb,0xb4,0xb8,0xc2,0x40,0xea,0x10,0x1b,0xaf,0x88,0xc1, - 0x7c,0x59,0x1a,0x3d,0x1c,0x4d,0xdb,0xc7,0x95,0x62,0x30,0x39,0x12,0x9b,0x77,0x06,0x8c,0xba,0x90,0x9d, - 0x83,0xf9,0x96,0xfc,0x8a,0x41,0xc9,0x08,0x69,0xac,0x71,0x27,0x87,0xfa,0xf0,0x31,0xd3,0x30,0x37,0xa8, - 0xc7,0xe0,0x20,0x91,0xb7,0x51,0x97,0x4d,0xa0,0x13,0xc5,0x7d,0x4e,0x2f,0xc8,0x51,0x07,0x0d,0x92,0xd5, - 0x93,0x16,0xa6,0x75,0xdc,0xa0,0xe8,0x6d,0x8f,0x24,0x6b,0x6c,0x95,0xad,0xdd,0x9a,0x79,0xbb,0x27,0xdf, - 0x46,0x83,0x76,0x37,0x21,0xd3,0xb6,0xf3,0x3e,0x3d,0x53,0xd7,0xe1,0x0a,0xa9,0x0f,0x31,0x06,0x77,0x7d, - 0xb0,0x99,0x34,0xb1,0xe5,0x06,0x98,0x6c,0xf9,0xe5,0x44,0x8a,0x6a,0x15,0xb5,0x96,0x1b,0xec,0xb9,0xbb, - 0xcd,0x71,0x19,0xbd,0xd6,0xca,0x99,0xc9,0xa5,0x6d,0xc6,0xe1,0xb2,0xb5,0x3c,0x83,0x57,0x51,0xb5,0xf5, - 0xa6,0x2c,0xae,0x94,0x78,0x40,0x27,0x57,0x72,0x3e,0x53,0xef,0x5d,0xdb,0xc8,0xde,0x9a,0x99,0xdb,0xc5, - 0x60,0x1a,0x1e,0xe1,0x26,0x6d,0xb8,0x1d,0x1d,0x92,0x33,0x77,0xb8,0xce,0xe4,0xf4,0x7a,0x94,0x68,0x62, - 0x2a,0x22,0x22,0xb0,0x79,0xc9,0xbd,0x9d,0x60,0x94,0xb6,0xb5,0xc9,0xe5,0x7b,0x8e,0xf6,0xca,0xa2,0x80, - 0x14,0x29,0x57,0x4f,0x71,0x8d,0x34,0xab,0xae,0x84,0xec,0x42,0xdd,0x95,0x0c,0xe1,0x8f,0x27,0xc1,0x61, - 0x52,0xa3,0xf6,0x36,0xa1,0x49,0x68,0x6f,0xe0,0x43,0x2e,0xe5,0x50,0x95,0x7e,0xb7,0x08,0xc2,0xa6,0x34, - 0xc9,0x47,0x90,0x76,0x5a,0x1e,0xd4,0xd0,0x9c,0x0c,0xc6,0xfa,0x12,0xa1,0x2e,0x7b,0x1e,0xca,0x25,0xb6, - 0x10,0xb6,0x35,0x6c,0x35,0x91,0xe8,0x88,0x63,0xf2,0xab,0x47,0x07,0xf4,0xa1,0xea,0xf2,0xab,0x5b,0x1a, - 0x54,0x67,0xb7,0x19,0x9f,0x82,0x97,0xf7,0xa5,0x94,0x95,0xd3,0x0e,0xb7,0x96,0xd0,0x1e,0xf8,0xcd,0x0d, - 0x47,0x3b,0x30,0xc7,0x4a,0x99,0x28,0x97,0xfe,0x41,0x24,0xdb,0xa0,0xae,0xee,0x4c,0xf4,0x49,0x8d,0x84, - 0x8f,0xf8,0xf1,0xa4,0x61,0xec,0x2d,0xfc,0x9b,0xa2,0xdf,0x7b,0x77,0xa9,0x22,0xde,0xc3,0x86,0xd7,0xd2, - 0xb7,0x44,0xfc,0xab,0xdf,0x1e,0x68,0x7d,0x48,0xa6,0x7a,0xcc,0x61,0xe9,0xa1,0x80,0x09,0x14,0x0d,0x12, - 0x40,0xa0,0x97,0x79,0xa4,0x87,0x0a,0x6a,0xa5,0x4a,0xd8,0xfd,0x1b,0x08,0xb9,0x35,0xdd,0xae,0xb4,0x99, - 0xed,0x4a,0x6d,0x2b,0xd1,0x34,0x6a,0x8b,0x44,0x98,0x25,0xd3,0x3a,0x0c,0xb5,0xb0,0xd0,0x2d,0xa0,0x92, - 0xf2,0x0b,0x15,0x97,0xa3,0x83,0x94,0x11,0x8d,0x6b,0x6b,0x3b,0xc2,0x7f,0xd3,0xaa,0xbe,0x0b,0xa1,0xb1, - 0xcc,0x88,0xbd,0x80,0x21,0x5f,0x07,0x3d,0xb2,0x05,0x04,0x86,0x83,0x81,0xdb,0x7c,0x7b,0xc5,0xe9,0xc8, - 0xd3,0xce,0x2d,0x5f,0x47,0xd3,0x0e,0xf1,0x31,0xd2,0x28,0x2d,0xa9,0xa5,0x63,0xe0,0x77,0x50,0x5b,0xd8, - 0x80,0x05,0x02,0x03,0x99,0x0d,0xbd,0xd5,0xd7,0x42,0x7b,0xaa,0xd9,0xa6,0x0b,0x5c,0xee,0xc4,0x7b,0xbd, - 0x30,0x21,0x6d,0x9f,0xc2,0x5c,0x9a,0x96,0x96,0xd8,0x74,0x8c,0x1c,0x4e,0x19,0x82,0xf5,0x35,0x84,0xbd, - 0x56,0x1c,0xd6,0x46,0xf5,0x23,0x00,0xad,0xdd,0x8a,0x0a,0x10,0xa5,0x70,0x9e,0xef,0x98,0x22,0xf6,0x73, - 0xd2,0x24,0x25,0x8c,0xb1,0x95,0x1e,0xa6,0x3d,0x07,0xed,0xd1,0x37,0x2f,0xaf,0x97,0x7c,0x79,0x7d,0xa2, - 0x44,0x15,0x90,0x24,0x8e,0xce,0xe2,0x69,0xa8,0xb4,0x7c,0xea,0x7a,0x64,0x53,0x2f,0x9a,0x00,0x14,0x8e, - 0xbe,0x86,0x3d,0x15,0x9c,0x16,0x21,0xd2,0xc6,0xac,0xab,0xeb,0x14,0x9e,0xb6,0x7a,0xe8,0x8c,0x82,0x6b, - 0xc5,0xb0,0xcb,0x86,0x28,0x40,0xe7,0xbd,0xe5,0xed,0xc1,0xa6,0x9b,0x21,0xee,0xaa,0xba,0x61,0x51,0x27, - 0xce,0x09,0xbe,0x31,0x01,0x92,0x34,0xc9,0x37,0x9b,0xf9,0x77,0x1b,0xf8,0xa0,0xc8,0x31,0xbe,0xb7,0x08, - 0xe2,0x34,0xf1,0x19,0x07,0x3d,0x58,0x61,0x64,0x32,0xd1,0x30,0xb5,0xe2,0x30,0x44,0xb2,0x4e,0x4f,0x86, - 0xb4,0xf1,0x66,0x44,0xb6,0x22,0xbc,0xe6,0xfd,0x7f,0x2a,0xdb,0xf3,0xb0,0xea,0x07,0x41,0xe4,0x5f,0x69, - 0x74,0x00,0x82,0xe9,0xbb,0x6f,0x13,0xbe,0x44,0x52,0xaf,0x30,0x7a,0x8e,0x2b,0x3a,0x37,0x0f,0x15,0x81, - 0x83,0xd0,0x26,0xf1,0xc3,0xd0,0xcc,0x14,0x81,0x20,0xc0,0x5e,0x5a,0xdd,0xd9,0x6d,0xd0,0x3c,0x36,0x05, - 0x7e,0x31,0x5b,0xa2,0x0b,0x15,0x97,0xc9,0x1f,0x88,0x50,0xde,0x08,0xb7,0x61,0x39,0x3c,0x89,0x2b,0x5b, - 0x3a,0x17,0xa7,0x18,0x15,0x71,0x01,0x81,0xc7,0x10,0xe2,0xa4,0x1c,0x37,0x7a,0x80,0xd1,0x7c,0x07,0x4f, - 0x4e,0xda,0x35,0x67,0xe2,0x8c,0x78,0x77,0xb8,0x65,0x68,0xe8,0x9d,0x63,0x6c,0x08,0xf4,0xad,0xdc,0xee, - 0x6c,0xe7,0x23,0xf6,0xf8,0xa2,0xfe,0xc1,0xd8,0x85,0x1f,0x76,0x95,0xe6,0xf3,0x16,0xbf,0x09,0xaf,0x7b, - 0x25,0x03,0xe2,0x76,0xdc,0x8e,0xd2,0xbf,0x73,0x0d,0xf7,0x3d,0x9a,0x45,0xe2,0xfb,0x1e,0x97,0xfa,0x76, - 0x79,0x04,0x0f,0x51,0x1c,0xae,0x49,0x31,0x5d,0x53,0xf6,0x82,0x06,0xeb,0x61,0xd9,0x64,0x1b,0xb5,0x69, - 0xa5,0x62,0xa4,0x48,0x61,0xfd,0x36,0xed,0x9a,0x27,0x9c,0xd7,0x0a,0x56,0xa3,0x38,0xf7,0x70,0xa8,0xb1, - 0x04,0xd6,0xc4,0x88,0xad,0x19,0x3e,0x4a,0x2a,0x45,0x71,0xe5,0xed,0x5c,0x3a,0x2a,0xb6,0x37,0x16,0x2e, - 0xed,0xf9,0x9a,0x31,0x0c,0x03,0xce,0x66,0x68,0x03,0x39,0xe5,0x5f,0x2d,0xcc,0xf0,0xde,0x6d,0x2e,0x73, - 0x1d,0x7a,0x94,0x33,0x9d,0x20,0x0a,0x54,0x69,0xc3,0xfc,0x95,0xc2,0x1a,0x73,0xe5,0x51,0xc3,0x6c,0x0e, - 0x57,0x83,0x25,0xef,0x9b,0x49,0xea,0xbe,0xa4,0xe4,0x75,0x33,0xb5,0x4b,0x83,0xae,0xae,0x16,0x72,0xa1, - 0x5a,0x78,0x31,0x99,0x96,0x53,0xb7,0x34,0xe3,0xd6,0x05,0x75,0x0d,0xba,0xd2,0x48,0x1d,0x98,0xc8,0xa6, - 0x1a,0x56,0xbd,0xa2,0xd6,0x7f,0x2f,0x73,0x9a,0x5c,0xe9,0x04,0x83,0xc2,0x38,0x46,0xf8,0xf6,0x33,0xa5, - 0x15,0xbd,0x71,0xa4,0xe2,0xf0,0x33,0x31,0xa7,0x6f,0xca,0xe4,0xee,0x7f,0x70,0x77,0x79,0x7c,0x57,0x84, - 0x4f,0xca,0x84,0xd2,0xfc,0x51,0x14,0x79,0x4b,0xf7,0xbc,0x05,0xbf,0xb5,0x83,0xdf,0x5b,0x02,0xe0,0x69, - 0xa0,0xc8,0x39,0x28,0xbb,0xd0,0x97,0x7f,0x28,0x50,0xd1,0x54,0x17,0x1d,0x98,0x46,0x63,0xe0,0x52,0xbc, - 0x60,0x4e,0x12,0xfd,0x34,0xea,0x26,0xb0,0xda,0x5c,0xb2,0x49,0x93,0x1d,0xb8,0x8b,0x77,0x28,0x77,0x23, - 0x9e,0x94,0xcd,0x71,0x4c,0x64,0x6b,0x24,0xce,0x51,0x9f,0xa7,0x66,0xaf,0x98,0xcd,0xd8,0x81,0x5b,0x18, - 0x3b,0xa1,0xd2,0xbb,0x8c,0x6c,0xa3,0x3d,0x51,0xa8,0x6a,0x37,0xf5,0x33,0xa2,0xaa,0x45,0xa9,0x86,0x86, - 0x0f,0xcb,0xad,0x56,0x67,0xb3,0xed,0xe9,0xdb,0x6d,0xdb,0x2d,0x45,0x0d,0x78,0xfe,0x1a,0x1d,0x8a,0xd6, - 0xbb,0x16,0xe0,0xe6,0xaf,0xad,0x00,0x06,0xa8,0x97,0xc0,0x9f,0x2a,0xed,0xc5,0xd5,0x9c,0xfd,0xe6,0xad, - 0x10,0xa6,0x65,0x67,0xd5,0xd1,0x5e,0x2c,0x45,0xc7,0xea,0x62,0xd2,0x82,0x44,0xe1,0x5f,0x1b,0xc9,0x87, - 0x0e,0x65,0x87,0x45,0x92,0xc1,0x48,0x03,0xa6,0x0b,0xb8,0x1f,0x68,0x96,0xb7,0x2e,0x8f,0x4c,0xb7,0x2e, - 0x8f,0xec,0x5a,0x53,0xb9,0xe8,0xe2,0x84,0x15,0x33,0x04,0x7e,0xa7,0x39,0x98,0x1c,0x4e,0x64,0x86,0x6f, - 0xff,0xfe,0x70,0x04,0xaf,0x9c,0x38,0xf7,0x38,0xfc,0xf3,0xd0,0x2e,0x0c,0x35,0x4f,0x87,0xea,0x01,0x07, - 0x4b,0x31,0xc8,0xf8,0x41,0xc1,0x08,0x99,0xef,0xc1,0x22,0x6c,0xac,0x61,0x04,0xc1,0xbd,0x9c,0x93,0xcf, - 0xdb,0x30,0xa7,0xdd,0x79,0x87,0xdb,0xdd,0x39,0x57,0x2e,0x04,0x2c,0xdd,0x87,0x54,0x5f,0xc9,0xf1,0x3d, - 0x25,0x5b,0xf8,0xa2,0xbd,0xdd,0xc6,0x6d,0xad,0x8d,0xa2,0x24,0x34,0x17,0xaf,0x79,0x9d,0x5e,0xaf,0x45, - 0xda,0x6a,0xf7,0x0b,0x13,0xa6,0x50,0x2d,0xb6,0x9c,0x0b,0xad,0x8e,0x56,0x8c,0x06,0x8d,0x67,0x5c,0x0e, - 0xc7,0xa5,0xcf,0x3b,0x2a,0x66,0x82,0x68,0xde,0x91,0xf9,0xc6,0x58,0xc4,0xb1,0x28,0x74,0x8c,0x70,0xc0, - 0x74,0x98,0x87,0xb7,0xe5,0xda,0x96,0x38,0x16,0xc7,0x61,0xeb,0x6c,0xf0,0x98,0xfa,0x56,0x86,0x62,0xeb, - 0xdb,0x67,0x89,0x27,0x11,0xe8,0x2c,0xaf,0x03,0x54,0xd3,0x10,0x32,0xbe,0x5d,0x90,0x18,0xf5,0xf1,0xc5, - 0x4a,0x8e,0xc7,0x89,0xdb,0x1d,0xe8,0x8d,0xc1,0x0f,0xf4,0x68,0x4b,0x78,0x8c,0xf4,0x9e,0x16,0x94,0xaa, - 0x17,0xd5,0xa6,0x79,0x53,0x13,0xa2,0xb5,0x42,0x3a,0xcf,0x93,0xac,0xfa,0xa9,0x76,0x3a,0xf6,0xf8,0x94, - 0x7b,0xd1,0x80,0x4c,0x4f,0xdc,0xb7,0xa5,0x80,0x31,0x24,0xbf,0x6e,0xd3,0xbc,0x7a,0x66,0xc2,0xcd,0xba, - 0xb4,0xb0,0xa8,0xa5,0x2c,0xd9,0x35,0x40,0xd1,0x64,0x6f,0xa3,0x9b,0x16,0x6c,0x18,0x0f,0x9c,0x48,0x74, - 0x7f,0xe0,0x6e,0x76,0xf4,0x47,0x37,0xdc,0xad,0x21,0x90,0xee,0x50,0xbe,0x34,0x57,0xc6,0xc8,0x09,0x58, - 0x29,0xe3,0xd8,0xfb,0x86,0xdc,0xe2,0x96,0xe1,0xba,0x93,0x68,0xe8,0x0c,0xe9,0x1a,0x45,0xac,0x18,0x58, - 0x5a,0xdd,0x8d,0xcd,0x82,0x5d,0xb5,0x57,0x83,0x23,0x1b,0xb4,0x35,0xa7,0x69,0xcd,0x4b,0x32,0xb6,0x8f, - 0xfb,0xfb,0x76,0x2a,0xfc,0x59,0x10,0x5d,0xb0,0xad,0xb7,0x8e,0x76,0x2f,0x32,0x33,0xeb,0x7c,0x99,0x2c, - 0x08,0x13,0x66,0xfd,0x3a,0x00,0xfa,0x20,0xda,0x84,0xa7,0x86,0xb0,0x5e,0x59,0xdb,0x6f,0xc4,0x17,0xe2, - 0x50,0x3f,0xb7,0xb0,0x43,0x24,0x3e,0x37,0x00,0x23,0x27,0x5e,0xff,0x7d,0x36,0x69,0x5a,0x3e,0x6a,0xec, - 0xf2,0x51,0xeb,0x19,0x09,0x9a,0x1a,0x1f,0x69,0x61,0xc0,0x96,0x99,0x83,0xf0,0xd0,0xa6,0x15,0x38,0x94, - 0x89,0x11,0x75,0x09,0x2f,0x60,0xb2,0x92,0xf1,0x71,0x14,0x38,0x87,0x93,0xa2,0xa6,0xb9,0x9e,0x16,0x40, - 0x18,0xab,0x3d,0xf3,0x0e,0xab,0x3d,0x04,0xe7,0x37,0xbe,0x69,0xeb,0x75,0x7a,0x7c,0x80,0xe8,0x6f,0xf4, - 0x17,0xca,0x1c,0x45,0xa0,0xda,0xb2,0xc9,0x11,0x1d,0x04,0x2c,0x2a,0x96,0x4d,0x81,0x45,0x66,0x6e,0x68, - 0x6b,0x6a,0x50,0xa0,0x97,0x30,0x7b,0x38,0x63,0xbb,0x8b,0x3a,0xd1,0xd6,0x16,0xb2,0x21,0x3f,0x43,0xb1, - 0x86,0xf8,0x62,0x0b,0x85,0x07,0xaa,0x34,0x16,0x38,0x31,0x31,0xae,0xed,0x51,0x44,0x43,0x54,0x32,0x69, - 0x22,0x98,0x7f,0xcb,0x41,0xb8,0x24,0x75,0x19,0x46,0x2e,0x7a,0x20,0xb4,0x2a,0x8a,0x7e,0x7d,0x5b,0x8a, - 0x47,0xa5,0xf8,0xa5,0x14,0x1f,0xca,0xe4,0x58,0x7b,0x4a,0xbe,0x95,0x67,0x4f,0xae,0x96,0xca,0xda,0xf6, - 0x44,0x7c,0x2c,0x93,0x9b,0xe7,0x46,0x84,0x1d,0xeb,0xc8,0x26,0x7e,0xa4,0x68,0xb3,0xc7,0x58,0x5f,0xa7, - 0x82,0x5b,0x64,0xf9,0x64,0xbe,0x9a,0xca,0xf8,0x43,0x29,0xe4,0x95,0x7d,0x5c,0xa4,0x57,0xb1,0x69,0x43, - 0xdd,0x6d,0x73,0xb2,0x11,0x9a,0x70,0x8f,0xdb,0x58,0x68,0x92,0xd2,0x3e,0xba,0x95,0xc8,0x60,0xce,0x12, - 0xbe,0x1b,0xc2,0xc2,0x7a,0xc3,0xb1,0xc5,0xe8,0x59,0x99,0x5b,0xb2,0xd5,0x45,0xcf,0x8c,0x24,0x13,0x6f, - 0xa2,0x76,0x55,0x11,0x18,0xf2,0xce,0x75,0x5d,0xf7,0x61,0xf6,0x8d,0xde,0x58,0x4e,0x86,0x64,0xe1,0xf8, - 0x89,0x96,0xa0,0x51,0x05,0x66,0xa4,0x7f,0xed,0xcb,0x5d,0xf7,0xe5,0x46,0x6c,0xc7,0x19,0xf0,0x51,0x1e, - 0x83,0xdb,0x40,0x07,0xf8,0xa2,0x8d,0xf0,0x9b,0x32,0x14,0x56,0xf4,0x74,0x5b,0xe2,0xec,0x87,0xd9,0x7c, - 0x81,0xf0,0xea,0x42,0x53,0x4e,0x7a,0x60,0x44,0x32,0x68,0xf5,0x3d,0xbf,0xf2,0x3d,0x94,0x04,0xd5,0xbb, - 0xc4,0x76,0xa2,0x4b,0x19,0xe4,0x4b,0x44,0xf2,0xf4,0x7a,0x84,0x10,0xe9,0xbd,0xf0,0xa2,0xe6,0x4b,0x2d, - 0x55,0xf1,0xa6,0x50,0x9b,0x81,0x60,0x0a,0xc5,0xc4,0x88,0x33,0xf8,0xae,0xe2,0x5c,0x45,0x4e,0x9f,0x64, - 0xd3,0x7e,0xa8,0x22,0x57,0x04,0x71,0x8c,0x00,0x6d,0x1c,0x8b,0x25,0x80,0x9a,0x01,0x91,0x95,0xd2,0xe3, - 0xc9,0xc9,0xa8,0x53,0xdb,0x84,0x9c,0x0e,0x85,0xd3,0x5c,0xdd,0x4c,0xa5,0x6d,0x73,0x26,0x88,0x91,0x8c, - 0x92,0x44,0xe7,0xda,0x24,0xb5,0xac,0x04,0x6d,0x44,0x88,0x18,0x72,0xca,0x85,0x01,0xd4,0x79,0xb4,0x95, - 0x09,0x1a,0x52,0x81,0x3b,0x4b,0x45,0x83,0xde,0x88,0x8c,0xc8,0xc5,0x69,0x6e,0x20,0xf5,0x31,0x93,0x40, - 0x47,0x0c,0x21,0x6f,0xfa,0x8a,0x18,0x94,0xe1,0x5b,0xa0,0x40,0x11,0xfe,0x02,0x13,0xc1,0xe8,0x16,0x2e, - 0xf0,0x7d,0x7e,0x1b,0xf3,0x47,0x9b,0x2f,0x50,0xea,0xfa,0x80,0xb6,0x60,0x24,0xde,0xd2,0x21,0x5b,0x67, - 0xf3,0xe4,0x06,0x0e,0x9e,0xf1,0x4f,0xb4,0xcf,0xaf,0x6a,0x82,0x8c,0xf8,0x42,0x2c,0x60,0x92,0xad,0x97, - 0x38,0x7e,0x26,0x54,0x3d,0x6f,0x95,0xfa,0x46,0xc6,0xef,0x36,0xf8,0x54,0x31,0x7e,0x6f,0x61,0x36,0xa8, - 0xd9,0x3d,0x7a,0xb6,0x38,0xf8,0x23,0xde,0xba,0xd5,0x26,0x6a,0x5b,0xdd,0x62,0x78,0xed,0xbe,0x32,0x06, - 0xd8,0x5d,0xee,0x57,0x91,0x57,0xfb,0x60,0x7c,0x9a,0x56,0x32,0xa1,0xc1,0x5d,0x84,0x5e,0xaa,0x5d,0xca, - 0x8a,0x50,0x8a,0x1a,0x6b,0x25,0x6f,0xa1,0x8e,0x21,0x5e,0xa7,0xf5,0xc6,0x75,0x1e,0x6f,0xe6,0xab,0xb3, - 0x4c,0xc5,0x55,0xed,0xcc,0xe0,0x1b,0xed,0x18,0xd9,0x1b,0x8f,0xc8,0x1a,0x77,0x43,0x34,0xf8,0x02,0x45, - 0x76,0x36,0xc9,0x67,0xc7,0x24,0x69,0xef,0x09,0x2d,0x9f,0xe8,0x90,0x39,0x20,0xf6,0x08,0x37,0x3a,0xb2, - 0x4f,0xc6,0x51,0x03,0x46,0xef,0x5d,0x5f,0x40,0x8f,0xe5,0x5d,0x08,0xc6,0x3c,0x9b,0x6f,0x4c,0xc6,0x0b, - 0xb6,0xc8,0xae,0xb2,0x6e,0x6f,0x69,0x8c,0xd4,0xe9,0x5f,0xfc,0x57,0x61,0x2b,0x68,0xca,0x69,0x69,0x9f, - 0x25,0x07,0x5a,0x40,0x7b,0x38,0xac,0x07,0x0a,0x72,0x9a,0xce,0x17,0x09,0xeb,0x6c,0x3c,0x22,0x9c,0x0f, - 0x50,0xfa,0x52,0xdd,0x6b,0x8b,0xfd,0xaa,0xae,0x0d,0xc4,0x13,0x8b,0xf4,0x80,0x1c,0xa0,0x2f,0x34,0x16, - 0xe8,0xc6,0x59,0x05,0xf1,0x3f,0xd4,0x6d,0x87,0x36,0x86,0x8a,0x0a,0x97,0xdd,0x8c,0x80,0x6d,0x56,0x2c, - 0xab,0xd9,0x25,0x42,0x47,0x0c,0x48,0xdd,0x71,0xdf,0x86,0x25,0x8f,0x96,0x88,0x7c,0x75,0x53,0x92,0x22, - 0xf0,0x34,0x0d,0x11,0x37,0xae,0xa7,0xde,0xd4,0xe4,0xfe,0xbc,0xd0,0x69,0xbb,0x5a,0x42,0x45,0xe3,0x8a, - 0x6c,0xcb,0xa7,0x9d,0xf0,0xf4,0xab,0xe2,0x59,0xc8,0x0e,0x7d,0x69,0xcb,0xd8,0x4a,0x5b,0x36,0xb8,0x4a, - 0x24,0x6d,0x80,0x75,0x5b,0x6a,0xb8,0xdd,0x86,0x29,0xd5,0x6e,0x66,0xde,0x6c,0x26,0x67,0x47,0x0f,0xd3, - 0x84,0x5e,0xc3,0x5c,0x3f,0x50,0x8a,0x82,0x98,0x5c,0xfd,0xd2,0x3b,0x76,0x50,0x8e,0xbf,0xb7,0xba,0x4d, - 0x30,0xe7,0xcb,0xc1,0x64,0x85,0xba,0x20,0x65,0x7b,0x3b,0xb2,0x1f,0x82,0x9d,0x3d,0xe3,0x0e,0xe7,0x66, - 0xd6,0x74,0xc4,0xe4,0xd4,0x7c,0xef,0x4a,0x4a,0x5b,0xd0,0xfa,0xdf,0xe1,0xce,0xdb,0xd4,0x29,0x5c,0x33, - 0xf6,0x70,0x12,0xe9,0x66,0x43,0x08,0x20,0x22,0x02,0x03,0xc8,0xe0,0x96,0x1e,0x3e,0x62,0xcf,0x0f,0x5f, - 0x3b,0xe3,0x39,0x96,0x84,0x5e,0x58,0x00,0xe5,0x2c,0x56,0x84,0xb9,0x0a,0x1e,0x9f,0x73,0xf4,0x7d,0x0d, - 0x85,0xd6,0x9c,0xb5,0x81,0x82,0x74,0xbf,0x71,0x11,0x8f,0x1f,0x53,0x40,0x55,0xd4,0x25,0x5b,0xe4,0x70, - 0x2b,0x37,0x88,0x5c,0x19,0xe7,0x42,0x07,0x32,0xcf,0x37,0xc6,0xdf,0xa7,0x81,0x05,0x61,0x52,0x98,0x73, - 0x8c,0xbd,0xce,0x3c,0xd8,0x92,0x77,0xe3,0xfc,0xcf,0x4d,0x21,0x5e,0x56,0xbd,0x53,0x5e,0xc6,0xca,0x25, - 0xfa,0x8f,0xfc,0xaf,0x7e,0x58,0x55,0xa5,0x76,0x8a,0xdc,0xf6,0xa6,0xf6,0xd1,0x48,0x93,0x9b,0x54,0xb4, - 0xbc,0xfb,0x16,0xfd,0xa4,0x8a,0xe1,0xf1,0x96,0xc1,0xea,0xfa,0xde,0xe0,0xdb,0xc1,0xe1,0x7d,0x15,0xa0, - 0xe5,0xc7,0x52,0xfc,0x51,0x8a,0xdf,0x4b,0xf1,0xbc,0x14,0x3f,0x95,0xe2,0x87,0x52,0xfc,0x5a,0x8a,0x7f, - 0x97,0xe2,0xb7,0x92,0x03,0x69,0xf0,0x7d,0xca,0xfa,0x2e,0x55,0xf1,0x33,0xa7,0xf1,0x9d,0x31,0x02,0xf5, - 0x12,0x95,0x99,0x0a,0x35,0x2b,0x42,0xdd,0x9b,0x03,0xd2,0xf0,0x0c,0x06,0x83,0x20,0x59,0xb3,0x5b,0x7c, - 0x89,0xdc,0xbd,0xe1,0xb4,0x16,0x3f,0x97,0x2c,0x4b,0x0b,0x54,0x8c,0x62,0xb8,0x5c,0xe0,0x76,0x55,0x73, - 0x0b,0x8f,0x2e,0x14,0xa8,0x46,0x78,0x51,0x29,0x97,0x68,0x92,0xc9,0x17,0x97,0xa9,0x2e,0xb1,0xd1,0x79, - 0x36,0x12,0x3a,0x72,0x20,0x60,0x2e,0x38,0x87,0x08,0xb7,0x0c,0x9d,0x9f,0xa8,0x4b,0xd4,0xe5,0x34,0xab, - 0x61,0x3a,0x27,0xa6,0x65,0x7a,0x76,0xc6,0x4f,0xd5,0x52,0xce,0xe7,0x5c,0x33,0xf5,0x3d,0xe7,0xc2,0x74, - 0x04,0x14,0x97,0x33,0x42,0xed,0x15,0xa1,0x2e,0xe2,0x27,0xd9,0x19,0x53,0xa4,0xab,0xba,0x98,0x15,0x93, - 0x55,0xc5,0x4f,0xcb,0x79,0x7a,0x2d,0x74,0x87,0x38,0xe4,0x08,0x9d,0xd6,0xb0,0xce,0x23,0x72,0x75,0x5e, - 0xd1,0x11,0x4e,0x73,0x57,0x4a,0x61,0xc8,0x3a,0xfd,0x6b,0xca,0xeb,0x57,0xee,0xb3,0x79,0x31,0x43,0xc7, - 0x3b,0xb1,0x3c,0xd3,0xac,0x42,0xf7,0xa6,0x42,0xe6,0xea,0x17,0xb1,0x0b,0xf2,0x82,0xa6,0x30,0x03,0xe4, - 0x8a,0xf3,0x6c,0x3a,0xa5,0xae,0xe1,0x58,0xac,0x65,0xb9,0xc8,0x72,0x24,0x12,0x44,0x95,0xb5,0xc8,0xaa, - 0x45,0xba,0x14,0x59,0x2d,0x17,0x2a,0xc6,0xc9,0xbc,0x28,0x96,0xc2,0x5c,0xdf,0x24,0x54,0xa3,0x79,0x81, - 0x20,0x2d,0x02,0x81,0x25,0xaa,0xec,0x0f,0x5a,0xa4,0xa2,0x3a,0x4f,0xc1,0x6b,0xba,0x16,0xf2,0x02,0x71, - 0xa3,0x68,0x9d,0xa9,0x99,0x65,0x4a,0x68,0x88,0x76,0xea,0x55,0x56,0x13,0x39,0x9b,0x4e,0x8b,0x7c,0x8e, - 0x78,0x2a,0xbf,0xaf,0x68,0xdf,0x4d,0x85,0x76,0xaa,0x9c,0x0a,0xc5,0x0f,0x11,0x4c,0xa4,0x8b,0x39,0x01, - 0x83,0xb0,0x63,0x82,0xf7,0x25,0xcf,0xb6,0xbd,0x30,0x85,0xc3,0x81,0xd2,0xdc,0x53,0x26,0x60,0x1e,0x21, - 0x25,0x38,0xfa,0xbb,0xb8,0xc8,0xaa,0x8c,0x4a,0x22,0xc0,0x7b,0x96,0x04,0xe7,0x75,0xbd,0x8c,0xef,0xde, - 0xbd,0xbc,0xbc,0x1c,0x5c,0xde,0x1f,0x14,0xe5,0xd9,0xdd,0xc3,0xef,0xbe,0xfb,0xee,0xee,0xd5,0x3c,0xcb, - 0xbf,0x04,0x22,0xcb,0x3a,0x0e,0xd8,0x20,0x6e,0x38,0x9f,0x7c,0x0b,0x28,0x53,0xe5,0x39,0xd9,0x04,0xe7, - 0xf9,0x16,0x9e,0x76,0x5d,0xdf,0xef,0x64,0xb0,0xc4,0xb5,0x7e,0x25,0xff,0x14,0x46,0x9e,0xc9,0xd1,0x5a, - 0x44,0xda,0xf9,0x8d,0x22,0x8e,0x09,0x10,0x77,0x0f,0x15,0xd8,0x55,0x59,0x72,0x53,0x5d,0x10,0x31,0xbc, - 0x3d,0x82,0x7b,0x07,0x07,0x07,0x77,0x29,0x2f,0x20,0x9e,0xa9,0x3e,0xef,0x2a,0x41,0x63,0xfc,0xd7,0x5d, - 0xdc,0x3d,0xca,0x7f,0x5e,0xbe,0xa0,0x66,0x27,0x0c,0x99,0xe7,0xf5,0x62,0x2e,0x4e,0x8b,0xe9,0xb5,0x00, - 0x0a,0x14,0xe7,0xb4,0x14,0x02,0x43,0x13,0x88,0x39,0x2e,0xd4,0xae,0xad,0xb3,0x9a,0xfe,0xa6,0xd3,0x29, - 0xf6,0xa3,0x48,0xcb,0x3a,0x9b,0xe0,0xbd,0xa2,0x3d,0x41,0x40,0x54,0xe0,0x76,0x4c,0x7c,0x87,0x9f,0x43, - 0x71,0x7e,0x4f,0x9c,0xdf,0x17,0xe7,0xdf,0x88,0xf3,0x6f,0xc5,0xf9,0x3f,0xc5,0xf9,0x59,0x59,0xac,0x96, - 0x22,0x4f,0x2f,0x68,0xed,0x78,0x8c,0x04,0x88,0x17,0x62,0x4a,0x50,0x39,0x17,0xd3,0x5a,0x10,0x31,0x0b, - 0xdf,0x1a,0xa4,0xb3,0x19,0xaa,0x14,0xcb,0x6c,0x02,0x57,0x1b,0x71,0x4e,0x5c,0xfa,0xe2,0x8c,0x3a,0x43, - 0x83,0xa2,0xd3,0xab,0x98,0x8b,0x25,0x8c,0x1a,0xc5,0x6a,0x2e,0x52,0x71,0x4a,0x6c,0xe4,0x69,0x29,0x4e, - 0xa7,0x19,0xfd,0x2f,0x04,0x3d,0x4e,0x08,0x3c,0x39,0xfe,0x90,0xe0,0x4b,0xe2,0xa7,0x33,0x3a,0x1c,0x17, - 0x22,0x13,0x5f,0x4e,0xa7,0x54,0x41,0xf9,0x45,0xfc,0x2e,0xca,0xa5,0x20,0x60,0x2e,0xeb,0x89,0x28,0x57, - 0xa7,0xd7,0x44,0xc5,0x57,0xe9,0x62,0x29,0x08,0xb6,0x89,0xe4,0xaa,0x96,0x29,0xa1,0x1e,0xda,0x6b,0xc4, - 0x6c,0x56,0xab,0x53,0xfa,0xbf,0xe4,0xfb,0x62,0xc5,0x4a,0x10,0x72,0x13,0x97,0xa7,0x10,0x9e,0x13,0x92, - 0x4a,0x57,0xd3,0xac,0x10,0xd8,0x0e,0x60,0x62,0xbf,0x08,0x46,0x0c,0xd4,0xd2,0x29,0x81,0x9d,0xf2,0x03, - 0x83,0x11,0x6a,0xba,0x20,0x00,0x5d,0x95,0xc4,0x7f,0x4c,0xd2,0xfc,0x22,0xa5,0x96,0x26,0x65,0xb6,0xac, - 0xb1,0x29,0xd4,0x03,0xd1,0xdc,0x30,0x72,0x13,0x66,0xec,0x13,0x1a,0x1e,0xfd,0x57,0x93,0xa5,0x01,0x9b, - 0xd7,0xa2,0xe6,0xb5,0xa9,0xe9,0xe1,0x9c,0x5a,0x14,0x0a,0xb9,0xf1,0x10,0x61,0x3e,0x40,0x73,0x26,0xe7, - 0x53,0xa2,0xe4,0x79,0x33,0x0b,0x85,0x50,0xe7,0xe9,0x29,0xd5,0x3e,0x97,0x67,0x20,0x02,0x16,0xd8,0xcc, - 0x40,0xad,0xaa,0x6a,0x8d,0x63,0x8b,0x55,0x8d,0x92,0x06,0xc7,0x1a,0x9c,0x6b,0x51,0x31,0xa1,0x80,0x34, - 0x03,0xd6,0xc9,0xd2,0x79,0x71,0x46,0x95,0xe4,0x2b,0xfe,0x03,0x14,0x40,0x53,0xb3,0xa0,0x09,0xbd,0x16, - 0x1a,0x03,0x0a,0xa9,0x64,0x0e,0x02,0xfb,0xbd,0xb8,0x14,0x26,0x68,0x96,0xe0,0xb0,0x64,0xbf,0xaf,0x0a, - 0xa0,0x91,0x59,0x09,0x72,0xaf,0x06,0xb4,0xe0,0xc6,0x60,0x06,0x3d,0x02,0x58,0x91,0xe6,0xd9,0x02,0x65, - 0x27,0x59,0x39,0xe1,0xf3,0x21,0x5b,0x2e,0x09,0x40,0xc5,0x64,0x55,0xd2,0x0e,0x07,0xe6,0x02,0xea,0xab, - 0x26,0xd4,0x08,0x65,0x11,0x80,0xaa,0xf8,0x3e,0x34,0xdc,0xbc,0xde,0x9f,0xa5,0x13,0x00,0x60,0x29,0xb3, - 0xb3,0x5c,0x1d,0x82,0xe2,0x4c,0x9c,0xcd,0xaf,0x97,0xe7,0x04,0x39,0xe9,0x99,0x04,0x20,0x4b,0x5e,0x7c, - 0x09,0x69,0x42,0x45,0x40,0x9d,0x55,0xb8,0xbd,0x6c,0x5f,0x15,0xe2,0x96,0xe8,0x0f,0x55,0x48,0x08,0xa9, - 0x98,0x5f,0x9f,0x15,0xff,0x5f,0x7b,0x5f,0xbb,0xde,0xb6,0x91,0xa4,0x7b,0x2b,0x14,0x46,0x47,0x06,0xc2, - 0x16,0x25,0xd9,0x49,0x66,0x02,0x1a,0xe6,0x3a,0x76,0x9c,0x38,0xf1,0xd7,0xc6,0x9e,0x64,0x26,0x14,0xa3, - 0x85,0x48,0x88,0x82,0x4d,0x02,0x1c,0x10,0xa4,0xac,0x88,0xbc,0xa0,0xfd,0x7b,0x2e,0x61,0xf7,0xc6,0x4e, - 0xbd,0x55,0xdd,0x8d,0x06,0x08,0xd9,0x4e,0x66,0x77,0xcf,0xf9,0x71,0x1e,0x3f,0x16,0x81,0x46,0x7f,0x56, - 0x57,0x57,0x57,0x57,0xd7,0x87,0xfc,0x72,0x39,0xec,0xff,0x4a,0x8c,0xa8,0xd5,0x92,0x9d,0x6c,0x30,0x7c, - 0xf8,0x0f,0x97,0x2c,0x19,0x67,0xc0,0x4d,0xad,0xd3,0xe4,0x4a,0x7c,0x43,0xcd,0x5a,0xd7,0xf2,0x58,0x34, - 0xf1,0x57,0x1c,0x97,0x9b,0x86,0xd0,0x7a,0xa0,0x5a,0x30,0x50,0xb8,0x09,0x89,0x1d,0xc8,0xa6,0x66,0x57, - 0x79,0xc1,0xe4,0xaf,0xa0,0x5e,0x24,0xb4,0x10,0xd0,0x89,0x99,0x5a,0x15,0x70,0x8a,0x3d,0x49,0x9b,0x4e, - 0xad,0x6a,0x42,0xa0,0x56,0xcd,0xdf,0x5b,0x1c,0x6f,0xd9,0x00,0xc5,0x7a,0xc3,0x64,0x47,0xe3,0x83,0x2c, - 0xf4,0x13,0xad,0x44,0x9b,0x38,0x4a,0xb4,0x07,0x07,0x4e,0x7c,0xa4,0x2a,0xd9,0x06,0xf4,0x83,0x26,0x4c, - 0x3d,0xc0,0xba,0xf9,0x02,0x5f,0x4b,0xe6,0x31,0xe0,0x60,0x81,0xb5,0x6e,0xbc,0x78,0xdd,0xe8,0xb3,0x86, - 0x5f,0x7b,0xa7,0x5f,0xbc,0xf6,0x97,0x50,0x4d,0x61,0x43,0x61,0xf9,0xf2,0x86,0xa0,0x87,0x58,0x90,0x61, - 0xcb,0x24,0x34,0x2a,0x31,0x59,0x79,0x4a,0x24,0x49,0x7b,0x0c,0xf8,0x84,0xc2,0x3a,0x27,0x97,0x15,0x5d, - 0xd5,0xaf,0x59,0x3a,0xbd,0x63,0x3d,0xce,0x27,0x40,0xfb,0xd9,0x97,0x00,0x89,0xa2,0xa9,0xcf,0x0a,0x4c, - 0x8d,0xf1,0x9a,0x20,0xe4,0xfc,0x0d,0x21,0x3f,0x14,0x62,0x06,0x67,0x93,0xf6,0xbc,0xce,0x37,0xce,0x5b, - 0xc5,0xc2,0x6c,0x1b,0x42,0xe9,0xc4,0xca,0xdc,0x2a,0x1c,0xf4,0x5f,0xd3,0xb6,0x48,0xab,0xa1,0x3d,0xb3, - 0x93,0x61,0x8b,0xe8,0x61,0xec,0xaa,0xa9,0x35,0xa7,0xfe,0xb8,0x85,0xd1,0x00,0xa0,0xfa,0x48,0xe8,0xc2, - 0x4e,0x77,0xcb,0xea,0x5b,0x24,0xb9,0x2d,0x86,0xb4,0xc0,0xad,0x86,0x40,0x0c,0x37,0x78,0x6c,0xa3,0x3d, - 0x50,0x66,0xa0,0x51,0xfb,0xd7,0x25,0x43,0x40,0x33,0xe1,0xcd,0x96,0x19,0x47,0x89,0x3b,0xa9,0x10,0x56, - 0x1c,0x09,0x7f,0x0d,0x99,0x1a,0x96,0x2d,0x17,0xbf,0x45,0x83,0xd7,0x64,0xda,0x6e,0x69,0x9d,0x6b,0x87, - 0x13,0xbe,0x47,0x5c,0xf4,0x56,0x21,0x56,0xcb,0x3c,0x85,0x37,0x32,0xe3,0x61,0xcc,0x28,0xc8,0x5a,0xdf, - 0x61,0xec,0x21,0x02,0x53,0x5a,0xf9,0x0c,0xf3,0x46,0x6a,0x5a,0x8d,0xe3,0xa7,0xd2,0xf4,0xfa,0xa7,0xb2, - 0xb5,0xfd,0x9f,0xd0,0xfe,0x3a,0x45,0xfb,0xd7,0xed,0x94,0xe3,0x8c,0xba,0x70,0x99,0x52,0xa5,0x23,0x75, - 0x5e,0x55,0xfc,0x0f,0x5b,0xf1,0x3f,0x88,0x7b,0xb8,0xaa,0x3e,0x7c,0x6f,0x3f,0x7c,0x4f,0x1f,0xde,0xa7, - 0xd1,0xd1,0xf0,0xf4,0x2a,0xe8,0x75,0x4f,0x0f,0xcf,0xf6,0x4f,0x47,0xa3,0x23,0xb5,0x9f,0xc2,0xbb,0x16, - 0x9d,0x31,0xde,0xf1,0xc3,0xd8,0x53,0x8f,0xaa,0xd2,0xc4,0xfe,0xe9,0xd2,0x0b,0x9a,0xc4,0x87,0xd5,0x87, - 0x89,0xfd,0x00,0xfc,0x7a,0x9d,0xb6,0xda,0xf1,0x72,0x54,0xb9,0xa3,0xd0,0xef,0x75,0x83,0x23,0x7b,0x67, - 0xab,0xcd,0x2c,0x8f,0xfa,0xfe,0x60,0x6f,0xf8,0xab,0x3f,0xfa,0xec,0x34,0x08,0x8e,0xa6,0xed,0x1a,0x69, - 0x30,0x20,0xa8,0x1c,0xb7,0x4a,0x41,0x68,0x0f,0xd8,0x7b,0x50,0x88,0xdc,0x87,0x88,0x89,0xaa,0xc3,0xf3, - 0x8c,0xa2,0xa2,0x0a,0xe5,0xc3,0x48,0x94,0xd0,0xff,0x37,0x34,0xea,0x5f,0x0f,0x0f,0x8f,0xd4,0x4b,0x7a, - 0x38,0x5d,0x7e,0xb6,0x97,0xce,0x61,0x39,0x1d,0x67,0xe5,0xfe,0x91,0x7a,0xbb,0x7b,0xde,0xa0,0x66,0xdf, - 0xe8,0x90,0xf0,0x84,0x28,0xa5,0xc4,0xf2,0x03,0x8e,0xda,0xf3,0x56,0xe2,0x9a,0x6c,0xbc,0xd4,0x79,0xb3, - 0x5b,0xf3,0x5a,0xbf,0x79,0x2f,0x53,0x8e,0x3d,0xe4,0xd9,0x0e,0xb8,0x81,0xe1,0x8a,0xe8,0x9b,0xd4,0x17, - 0x87,0xf4,0xf5,0x3b,0xf2,0xac,0xa6,0x64,0xd3,0x7a,0xaf,0x2b,0xed,0xe2,0x68,0x8d,0xeb,0x5d,0xe9,0x9a, - 0x9b,0x48,0xf8,0xf4,0x0c,0xb8,0x2b,0x21,0x08,0x09,0x3d,0x9f,0xe7,0xbf,0x81,0x3e,0xd3,0x89,0x54,0x7d, - 0xd3,0x9c,0x3d,0xea,0xc0,0x2f,0x45,0xf4,0x4b,0xf1,0x11,0xcf,0x8d,0x52,0xbd,0xf5,0xc2,0xb7,0xc7,0x96, - 0xd7,0x88,0x08,0x01,0x25,0x44,0x96,0xae,0xff,0x52,0x58,0x51,0x9b,0x7b,0x4f,0xf6,0x09,0x5e,0x09,0xb5, - 0xaf,0x8b,0x67,0x69,0x8b,0x43,0xcd,0x67,0xe9,0x30,0x1b,0x75,0x59,0x3a,0x5d,0xd4,0x5b,0x29,0x30,0xe3, - 0xaf,0x2a,0x2c,0x9d,0x5b,0x2c,0x05,0xc5,0x7a,0xda,0x1c,0xa7,0xb6,0x05,0x4f,0x6c,0xf8,0xf9,0x90,0xce, - 0xe8,0x87,0xfc,0xea,0xa9,0xc4,0x89,0x42,0x5f,0xa5,0x1f,0x96,0xb9,0xfe,0xe4,0xc4,0x56,0x76,0x3e,0x8b, - 0xd0,0xd5,0x53,0x55,0x78,0x66,0xfe,0xc8,0xaf,0x3a,0xd5,0xad,0x93,0x13,0xb8,0xce,0x66,0xbc,0x66,0xe7, - 0xb3,0xae,0x13,0x63,0x7b,0x9c,0xb2,0x2f,0x31,0x44,0x5a,0x7e,0x92,0xea,0xf8,0x91,0xec,0x33,0xd6,0x53, - 0x2f,0xe8,0x5d,0x18,0x2c,0x7e,0x7d,0xde,0xf8,0xfc,0x63,0xed,0x9d,0x76,0x12,0x4f,0x7d,0x5d,0x2f,0xf1, - 0xb3,0xfb,0x8a,0x0c,0xfd,0xc7,0x10,0xfe,0x5b,0x3f,0x0d,0xda,0x81,0x19,0xce,0xa8,0x4e,0x35,0x0e,0x7b, - 0x60,0x33,0x5c,0x31,0x92,0x35,0xb2,0xf9,0xe8,0x91,0x13,0x01,0xd3,0xe9,0xd7,0x55,0x23,0xf5,0x9b,0x0c, - 0x97,0x93,0xbb,0x0d,0xbb,0xbd,0xbb,0xbd,0xdd,0x7a,0x2e,0xff,0x6b,0xdb,0xec,0xc3,0xfa,0x58,0xaf,0xea, - 0x89,0xdc,0xa8,0x68,0x21,0xfc,0x15,0x50,0x1e,0xe8,0x6a,0x71,0x4c,0xa5,0xd5,0x6d,0xf3,0x3d,0x01,0x73, - 0xfb,0xc1,0x8f,0x3d,0x08,0x89,0x7c,0xc9,0x11,0x84,0x95,0x3b,0x84,0xd6,0x0d,0x15,0x57,0xe6,0x3f,0x81, - 0x2c,0x9d,0xfb,0x36,0x60,0xc7,0x86,0xce,0x28,0x81,0xaf,0x36,0xfb,0xc1,0x91,0xfa,0xce,0x21,0x4f,0x3b, - 0x31,0x1d,0x84,0xcb,0x7b,0xe4,0xec,0xf5,0xe0,0xed,0x12,0x16,0x83,0x3d,0xaa,0x71,0x17,0x50,0x73,0x75, - 0x42,0x29,0x70,0x34,0x37,0x71,0x44,0x2e,0x91,0x33,0xea,0xbe,0xa8,0x62,0xe5,0x1a,0x88,0x71,0x4e,0x73, - 0x1b,0x2a,0xfb,0x2b,0x0b,0xd5,0x11,0x69,0x59,0x1b,0x38,0xb5,0x46,0xd7,0x0d,0xe0,0x45,0xc8,0x5e,0x93, - 0xe8,0x22,0x51,0xdc,0x83,0xbe,0x16,0x7d,0x93,0x17,0x08,0x80,0x91,0x11,0xdb,0xee,0x09,0x37,0xa4,0xda, - 0x2b,0x33,0x6b,0x7c,0x89,0x1e,0x11,0x7d,0xf0,0x57,0x41,0x4d,0x71,0xd1,0x04,0xbd,0x70,0x54,0x77,0xca, - 0x7e,0xdc,0x62,0x8a,0x23,0xd1,0xa3,0x5b,0xbe,0x98,0x0b,0xf3,0xc4,0xcf,0xb5,0x71,0x20,0xf7,0x32,0x8f, - 0xdc,0x50,0xac,0x5a,0x5d,0x29,0x27,0xf2,0x94,0xdf,0xdf,0xef,0x19,0x16,0xc0,0x90,0xa9,0x6e,0x37,0x0f, - 0xaa,0xd4,0x61,0x3e,0xf2,0xd7,0x29,0x01,0xb9,0xaf,0x0d,0x0d,0x62,0xa3,0x18,0x34,0x86,0x72,0x0a,0x6e, - 0x8d,0xa9,0xcf,0x5b,0x0b,0x63,0xb5,0x27,0x91,0x12,0xe4,0xcd,0x00,0x57,0x40,0xae,0x2e,0x1c,0xbf,0xda, - 0x1c,0xb4,0x92,0x58,0x31,0x9a,0xeb,0xcb,0x60,0xe0,0x73,0x4d,0x10,0xbb,0x2f,0x07,0x8f,0x76,0xd8,0x66, - 0x24,0xab,0xcb,0x20,0x6c,0x7c,0xf1,0x2f,0x21,0x16,0x9f,0xe0,0xd2,0x61,0x46,0x4d,0x5e,0x00,0xa8,0x09, - 0x03,0x75,0x21,0x10,0x1e,0xc3,0xc7,0x0b,0x77,0x91,0xba,0x12,0x66,0xbe,0xe3,0x0d,0xda,0x36,0xf9,0xa8, - 0xc9,0x22,0x8b,0x27,0xe7,0x46,0xd9,0x46,0xe6,0x8a,0x19,0x6f,0xcb,0xed,0xf8,0x12,0x5e,0xf2,0x1d,0xca, - 0x4d,0x62,0x8c,0xa5,0x74,0xc8,0x77,0xc1,0x52,0x91,0xf4,0x02,0xaa,0xe6,0x32,0x45,0xb5,0x66,0x6b,0x4d, - 0x35,0x1a,0x0d,0x1a,0x6e,0xbb,0xa8,0x00,0xbd,0xa0,0x0b,0xf6,0x22,0xb5,0x10,0xed,0xb8,0x09,0xbb,0x71, - 0x62,0x26,0x32,0x50,0xd6,0x6c,0xc4,0x59,0x53,0x63,0xad,0xd8,0x8a,0xee,0xb2,0x2a,0x00,0x87,0x6b,0x77, - 0x96,0xa6,0x88,0x96,0x1f,0xd5,0xcf,0x08,0x52,0x86,0xe6,0xc6,0x65,0xef,0x4b,0x0e,0xa5,0x6a,0x6b,0x9e, - 0x39,0x7c,0xc9,0x4e,0xd4,0xbc,0xba,0xf6,0xad,0x83,0x87,0x69,0x10,0xfb,0xac,0x52,0x9c,0x69,0xd8,0xf2, - 0x65,0x13,0x14,0x0d,0x99,0x39,0x28,0x0c,0xf4,0xd1,0xa5,0x5a,0xe3,0x9c,0x79,0x67,0xae,0xb4,0x03,0x9b, - 0xd2,0xb8,0xea,0x76,0xfc,0x48,0x1b,0xef,0x18,0xfd,0x36,0xc3,0xb7,0xa0,0x6c,0x85,0xaf,0x2c,0xb5,0x2a, - 0xdc,0xbd,0x84,0xb1,0x72,0xdc,0x48,0xcb,0xd4,0xd7,0x2d,0xd8,0xf6,0x75,0xa7,0xaa,0x41,0x16,0x81,0x49, - 0x23,0x2e,0x07,0x4b,0x8d,0xc9,0xdf,0x95,0x09,0xe7,0xac,0x29,0x0d,0xcd,0xc5,0x95,0xce,0x46,0x6f,0xe6, - 0x51,0xb2,0x2b,0x7c,0x4b,0x0d,0x46,0xb5,0x4d,0xec,0xc4,0x52,0x5a,0x21,0x61,0x50,0xf7,0xb6,0x8e,0x04, - 0x83,0xe0,0x51,0xfd,0xf0,0xa2,0x61,0x0d,0x36,0x4f,0x00,0x5d,0x0d,0x81,0x03,0x08,0xa1,0x7c,0x65,0x5d, - 0x09,0xfa,0xc2,0x96,0x49,0xf6,0x6e,0x62,0xa9,0xeb,0xc5,0xb4,0xdc,0x56,0xb1,0xaa,0x82,0x0d,0x81,0xd8, - 0x47,0x67,0x08,0xd1,0x99,0xb1,0x2b,0x73,0x5d,0xb1,0x79,0xb5,0xce,0x11,0xff,0x58,0x43,0x15,0x10,0x2e, - 0x5d,0xcf,0x8e,0x7a,0xba,0x8b,0xfb,0x51,0xca,0x73,0x10,0xfb,0x1c,0x1c,0x27,0x57,0xf5,0xb8,0x45,0x6b, - 0x0b,0x38,0x8e,0xd6,0xe3,0xee,0x1c,0xa9,0x20,0x2e,0xfa,0x94,0x56,0xfb,0x01,0x3a,0xa8,0x0f,0x45,0x18, - 0x50,0xe5,0xf2,0x6c,0xdf,0x24,0x57,0x33,0x9f,0x05,0x36,0x91,0xb8,0x41,0x1d,0x78,0x45,0x26,0xa7,0x0a, - 0xbc,0xae,0x23,0xfa,0xb0,0xe7,0xff,0xa6,0xed,0x23,0x3a,0xbe,0xf6,0x9d,0x70,0x10,0xc5,0xc8,0xe9,0xfb, - 0xbc,0xbe,0xa3,0x54,0x63,0xd5,0xdb,0x20,0xbb,0x80,0x4b,0xc4,0x67,0x17,0xfd,0x30,0xf6,0x0e,0xfc,0x29, - 0xee,0xe6,0xd6,0xd8,0x17,0x43,0x04,0x38,0x82,0x52,0x90,0x4b,0xcf,0xa6,0x82,0xd4,0xd2,0x51,0x18,0x6f, - 0x6a,0xc2,0x16,0xd8,0xe8,0x44,0xd1,0xbe,0xde,0xb5,0x6d,0x30,0xd9,0xbe,0x86,0x53,0x30,0x70,0x2c,0x68, - 0xbb,0x51,0x1a,0x36,0x55,0x9b,0x6b,0x0a,0xc1,0xc4,0x36,0x1d,0x1e,0x3a,0x05,0x70,0x37,0x56,0x56,0x11, - 0xa6,0xaa,0x0f,0x11,0x4d,0xea,0xd6,0x37,0x3b,0x11,0x2d,0x86,0x56,0x3b,0x5b,0x9e,0x1d,0x20,0x9d,0x56, - 0x82,0xe0,0x57,0xb3,0x43,0x4e,0x11,0x2d,0x23,0x50,0x66,0x89,0xd6,0xfa,0xaf,0x97,0xa8,0xa4,0x61,0x89, - 0x96,0x7c,0x70,0xe2,0x56,0xdc,0x15,0x9a,0xe8,0xc0,0xbb,0xc8,0x16,0x98,0x08,0x55,0xd0,0xf3,0xe6,0x25, - 0x94,0x4b,0x07,0x9d,0xe9,0x81,0x7a,0x33,0xd8,0x97,0xa5,0x04,0xe4,0x22,0x5c,0x4f,0x4d,0x9c,0xcd,0x94, - 0x69,0x7a,0x81,0xbf,0xac,0xef,0x82,0x48,0xae,0x3b,0x7e,0x2f,0x03,0x5a,0x87,0x69,0xcd,0x73,0xa6,0xf1, - 0x6e,0x35,0x09,0x06,0xe7,0x7e,0x21,0xf0,0x40,0x6c,0xe1,0xb4,0xd5,0x6b,0xe6,0xb1,0x3d,0xfc,0x11,0x57, - 0x66,0x3d,0x7b,0x32,0xd2,0x16,0xee,0x6b,0xca,0xce,0x45,0x23,0x89,0x14,0x86,0x0d,0x8b,0x73,0x8b,0x3f, - 0x4f,0x42,0x00,0x79,0x7d,0xc9,0xec,0x4d,0x90,0xb6,0xe8,0xb9,0x14,0x6d,0xa6,0xc4,0xe6,0xbc,0xb8,0x42, - 0x84,0x61,0x59,0x54,0x89,0x3f,0x63,0x28,0xae,0xa2,0x59,0x05,0xd2,0x55,0xb4,0xb2,0x1e,0x03,0x28,0x61, - 0x05,0x98,0x09,0x83,0xbb,0x40,0xc5,0x86,0x95,0x98,0x38,0xf6,0xa3,0xb2,0x88,0x50,0xd7,0x05,0xd6,0x28, - 0xe3,0xfe,0x8a,0x26,0x76,0x45,0x13,0x2b,0x27,0xa9,0x6a,0x62,0x57,0x81,0x49,0x1b,0xae,0x46,0x52,0x77, - 0x4b,0x07,0x24,0x87,0x6d,0x7e,0x5b,0xfa,0xa9,0x6c,0x21,0x83,0xc4,0x5f,0x70,0x2e,0x82,0xf8,0x02,0x0e, - 0x03,0x1c,0x6e,0xce,0x78,0x90,0x5d,0x56,0x3b,0x80,0x8e,0xaa,0x48,0xc7,0xdf,0x05,0xfd,0x9f,0x44,0x95, - 0x83,0x16,0xb5,0x8e,0x20,0x01,0x50,0x53,0xfa,0x99,0x8c,0xd4,0x99,0xd5,0xd8,0xa6,0x4f,0xe7,0x51,0x8a, - 0x4f,0x57,0xf4,0x73,0x36,0x52,0xef,0xa3,0xbd,0x65,0xff,0xe2,0x3e,0x9a,0x5a,0xdc,0x8f,0xce,0x68,0x6f, - 0xf2,0xd7,0xc1,0x00,0xc5,0xbb,0xdd,0x8b,0x51,0x08,0x7f,0x65,0x03,0xd4,0x72,0x78,0x38,0x19,0x85,0x3f, - 0xd3,0x47,0x75,0x4e,0x8b,0xfa,0x1a,0xbf,0x60,0xce,0x4c,0x46,0xae,0xb5,0xdb,0x5d,0x8c,0x02,0x64,0x9a, - 0xaa,0x2b,0xce,0x44,0xbf,0xc8,0x64,0xca,0x73,0x9b,0x87,0x87,0x67,0x92,0x69,0xad,0x33,0xad,0x25,0xd3, - 0xfb,0x1d,0x3e,0x20,0x53,0x6b,0xbd,0xef,0x3a,0xa2,0x38,0x7f,0x2a,0x24,0xa4,0x6a,0xb9,0x56,0xe9,0x54, - 0x77,0x6f,0x2a,0xdd,0x6b,0xab,0x94,0x2b,0x90,0xaa,0x9d,0xae,0x55,0xfd,0xf7,0x4b,0x71,0x77,0x31,0x8e, - 0xfe,0x0a,0xcb,0xf6,0x0b,0x35,0x81,0x22,0xa0,0x0f,0x86,0xfe,0x9c,0xa3,0x92,0x0e,0xc6,0x43,0x7e,0x18, - 0xb5,0xb8,0xf9,0xb0,0xac,0x76,0x74,0x41,0xbc,0x70,0xda,0xcf,0xcd,0x11,0x1d,0xe4,0x31,0x1f,0x99,0x33, - 0xc2,0xc1,0xc1,0xcf,0x10,0x6a,0xc5,0x96,0x83,0xcf,0x89,0xc7,0x3d,0xa7,0x2a,0x8e,0xd1,0xda,0x20,0xa6, - 0xe7,0x5c,0xe9,0xf1,0xf3,0xb8,0x66,0xd4,0xcf,0xd5,0x48,0x0f,0x6e,0x26,0x83,0x43,0x8a,0xf1,0x65,0xdb, - 0x36,0xd0,0x99,0x33,0xd0,0x20,0xac,0xd7,0x59,0x8d,0xb7,0x7f,0xf1,0x60,0x02,0xd5,0x79,0x1a,0x22,0x21, - 0x44,0xf7,0x64,0x14,0x48,0x40,0x46,0x79,0xd1,0x8b,0x7e,0xa1,0xce,0xb0,0xf0,0x17,0x0f,0xce,0x0e,0x0e, - 0xe6,0xfe,0xb1,0x12,0xb0,0x6c,0xfd,0x31,0x47,0xf4,0x04,0x52,0x86,0x8c,0xb4,0xe0,0xf0,0x2a,0x16,0xaa, - 0x2e,0x0e,0xa5,0xcc,0xd8,0xa7,0x2f,0xe9,0x97,0xd9,0xae,0x09,0x06,0x5b,0xa1,0x25,0x98,0x62,0xa0,0xff, - 0x00,0xf5,0x2f,0xe8,0xdb,0xa2,0x8a,0x7c,0x18,0x7e,0xb4,0xda,0x50,0xbe,0xef,0x71,0xbc,0x1a,0xde,0xdb, - 0x5b,0xf2,0xe9,0x55,0xa6,0x6e,0xa7,0x0c,0xf9,0xb2,0xac,0x93,0x86,0xad,0xb3,0x55,0x9d,0xc9,0x29,0x84, - 0xc9,0x2b,0x0e,0x9e,0x28,0x65,0xc3,0x4b,0x07,0xe6,0xa9,0x8d,0xb3,0x2e,0xea,0x6c,0x8f,0x1c,0x94,0x0a, - 0xf7,0x7c,0x54,0x10,0x72,0x54,0xd4,0x5f,0xcf,0xa4,0x5f,0xb0,0x27,0x55,0xdb,0x81,0xf3,0xc6,0xc1,0x53, - 0x8d,0x11,0xa5,0x29,0x9e,0x22,0xb2,0xba,0x39,0x0f,0x15,0xf5,0x38,0x43,0x51,0xbe,0xd9,0xac,0x68,0x30, - 0x20,0x7a,0xaa,0x10,0xd6,0x5e,0x09,0x41,0x36,0xe7,0x16,0xd9,0xb8,0x5c,0xba,0x6f,0xb1,0xb2,0x6d,0x9b, - 0x80,0x66,0x35,0xd1,0x7a,0x46,0xe4,0x95,0xde,0xea,0x09,0x74,0xed,0x07,0xd8,0x42,0x4c,0x05,0x29,0xb1, - 0x85,0x6a,0x07,0xce,0xf9,0x15,0x70,0xb5,0xd5,0x8e,0x03,0xcd,0x10,0x5c,0x04,0x1c,0x60,0x1a,0x2e,0xbc, - 0x98,0x11,0x07,0xd7,0xbd,0xf4,0x39,0x91,0x5b,0xb5,0x0d,0x9a,0x30,0x71,0x4e,0x0f,0x74,0x3c,0x14,0xa9, - 0x2a,0x66,0xce,0xaf,0x4a,0xb4,0xe1,0x37,0x78,0xe3,0x30,0xf3,0xc2,0x5a,0xe3,0x38,0x45,0x5e,0xa4,0xc5, - 0xb2,0xe4,0x16,0x89,0xcc,0x1c,0xf7,0xd7,0xf7,0x2f,0xcc,0x5c,0xad,0x8d,0x6b,0xbb,0xcb,0xcd,0x66,0xef, - 0x9c,0xce,0x8b,0x17,0xc3,0xf5,0x48,0x9f,0x4c,0x61,0x8a,0xae,0x8f,0xb2,0x97,0xd1,0x65,0xed,0xfe,0x00, - 0x25,0x26,0x9b,0xcd,0x65,0xbd,0x61,0x3a,0xc5,0x60,0x21,0xa5,0x81,0x81,0xa6,0xcc,0xeb,0xdc,0x75,0xb3, - 0x32,0x85,0x34,0x6f,0x85,0x11,0xef,0x3d,0x24,0x5a,0x1c,0xdc,0xcc,0xd1,0xc9,0x85,0xec,0x2d,0xd2,0xd8, - 0xde,0x1c,0x13,0xcc,0x9a,0x25,0x70,0x0e,0xa7,0x1f,0x8d,0x9b,0x49,0x41,0xc8,0x3d,0x0e,0xe8,0xc5,0x0b, - 0x43,0x33,0x58,0xfa,0xdd,0x5c,0x7b,0xed,0x49,0x98,0x98,0x2b,0xf5,0x5e,0xed,0x43,0x48,0xfd,0x0e,0xb1, - 0xe3,0xf3,0xc9,0x6a,0x96,0x2c,0xd5,0x23,0x7a,0x06,0x8f,0xf3,0x52,0xab,0x7d,0x5d,0x11,0x4c,0xae,0xee, - 0xcf,0xd3,0x0a,0x81,0xaf,0x98,0xad,0xdc,0x1f,0xce,0xd3,0xe1,0xd5,0x68,0xc4,0x4e,0x20,0x39,0x16,0xeb, - 0xbb,0x2a,0xcb,0x7b,0x62,0x2f,0xde,0x0d,0xdf,0x8f,0x74,0x1e,0x9a,0x29,0x93,0x5d,0xce,0x17,0xee,0x37, - 0xde,0x90,0x1f,0xb2,0xde,0x08,0xee,0xd5,0x44,0x6b,0x46,0x07,0x0f,0x7b,0xe4,0x3c,0xbf,0x66,0x61,0x2b, - 0x91,0xe2,0x16,0xf7,0x84,0x7a,0xb7,0x44,0x78,0x36,0x6d,0x5f,0xc1,0xbb,0xb7,0x78,0x88,0x81,0x3f,0x55, - 0x18,0x68,0x03,0xbb,0x60,0xaf,0x39,0x03,0x50,0x63,0x1f,0x84,0x0e,0xf9,0x1d,0x97,0xa3,0x11,0x16,0x07, - 0x06,0xff,0x86,0x3d,0x3e,0xf1,0x44,0x32,0xf5,0xc6,0x04,0x04,0xc2,0x73,0x2d,0x94,0x0e,0x73,0x8e,0x76, - 0x26,0xdc,0x9a,0x44,0x50,0x33,0xe5,0xe0,0x82,0x87,0x70,0xb8,0x3a,0x4f,0x3c,0x62,0xa5,0x2c,0xc3,0xdd, - 0xd5,0xd2,0x61,0xc5,0x0d,0xef,0x9e,0x7e,0x4e,0x59,0xce,0xa5,0x7e,0xbb,0x50,0xce,0xb8,0x8b,0xf8,0x5e, - 0xf4,0x5f,0x46,0x85,0x2a,0xcc,0x75,0xcc,0x23,0x73,0x09,0xe5,0xbf,0x6c,0xc4,0x9f,0x91,0x6b,0x1a,0x2d, - 0x39,0x54,0x2f,0xc5,0xee,0xed,0x52,0x98,0x41,0xda,0xfe,0x6a,0x82,0xb2,0x4b,0x1e,0xa0,0xc0,0xe1,0xb2, - 0x77,0x26,0x02,0xdb,0x73,0xd9,0x0f,0xa6,0x8d,0x7d,0xf8,0x12,0x6a,0xbf,0xc4,0xb8,0x18,0xfa,0x67,0x10, - 0xf6,0x2a,0x32,0x69,0x84,0x03,0xe0,0x98,0xfa,0x57,0xfd,0x6a,0x5f,0x7c,0x47,0x68,0xf1,0xae,0xed,0xec, - 0xf2,0xce,0x39,0xbb,0xbc,0x1b,0xf9,0x57,0xdc,0x93,0x2b,0x71,0x79,0xcf,0x5d,0x7d,0x5f,0x55,0xf2,0x90, - 0x2a,0x79,0xd8,0x72,0xf2,0x7d,0x58,0x9d,0x7c,0x1f,0xf2,0xc9,0xf7,0x4a,0x30,0xe9,0x75,0x74,0xb5,0x43, - 0x5b,0x51,0xfd,0xeb,0x1e,0xab,0x09,0x57,0xb6,0x0e,0x6f,0xa2,0x93,0xfe,0x9b,0xfb,0xaf,0xe9,0x88,0x68, - 0x4d,0x55,0xde,0xc0,0xa1,0x34,0x12,0x86,0x6f,0x46,0x86,0xf7,0xfe,0xba,0x44,0xff,0xae,0xa8,0x56,0x1d, - 0xdd,0x36,0x01,0x97,0x84,0x7d,0x0b,0x47,0xbe,0x63,0x75,0xac,0x37,0x2c,0x3a,0xff,0xc0,0x19,0x70,0x51, - 0xd9,0x88,0xc9,0xfc,0x21,0xa0,0x0c,0xc6,0xc4,0x53,0xf1,0x12,0xac,0xbf,0xcd,0xe7,0xdf,0xe8,0x85,0x16, - 0x4e,0x52,0xa5,0xd7,0x5f,0x38,0x3c,0xa7,0xa1,0xa4,0xea,0x51,0xaa,0x1e,0xa6,0xea,0x55,0xaa,0x9e,0x65, - 0x03,0x23,0xcd,0x7f,0x96,0x28,0x23,0x58,0xc3,0xb3,0xe0,0x53,0xe3,0xfa,0x6f,0x4f,0x22,0x7a,0x89,0x79, - 0xc5,0x65,0x7e,0x35,0x78,0x93,0x48,0x5c,0x33,0xd8,0x26,0x6d,0xc3,0x9b,0xed,0xc8,0xb8,0x54,0x3e,0x4b, - 0xe1,0xbf,0xfc,0x49,0x76,0x70,0x60,0x2f,0x39,0x76,0x03,0x8b,0xc8,0xfd,0x38,0xd5,0x3e,0xbe,0x8c,0xb3, - 0x69,0xe2,0xb9,0xf6,0xa8,0xa2,0x85,0x5f,0x15,0x66,0x29,0xbd,0x16,0xae,0xf5,0x59,0xc9,0x77,0xad,0xe3, - 0x20,0x3e,0x47,0x1f,0xb4,0xbe,0x99,0x71,0x9a,0xfe,0x5b,0x0a,0xf7,0x69,0x98,0x9d,0x64,0xd2,0xb8,0x10, - 0x85,0x10,0xc9,0xdc,0xcc,0xdb,0xd0,0x8e,0x72,0x26,0x39,0x38,0xd8,0xe3,0x5f,0x3a,0x88,0x69,0xfd,0xca, - 0xc1,0x0f,0x3e,0x62,0xa7,0x98,0xcd,0xbc,0xd6,0xc3,0xdf,0x9c,0x23,0x85,0xd8,0x73,0x4d,0xb4,0x28,0x69, - 0x1b,0x84,0xdf,0x24,0xf2,0xec,0x7a,0x7a,0xb2,0xb5,0x12,0xbd,0x40,0xc8,0x35,0x6d,0x91,0x6b,0xb5,0x3d, - 0x1f,0xc3,0x07,0x92,0xa8,0x2d,0x40,0x73,0xc4,0xf6,0x6e,0xb3,0x59,0xa4,0xbe,0x44,0x8d,0x63,0x07,0x14, - 0xa8,0xe9,0xb9,0x09,0x14,0x1b,0x25,0x55,0xd0,0x58,0xe5,0x3c,0xb3,0x37,0x47,0xd6,0x29,0xde,0x85,0xbb, - 0x01,0xf7,0x8b,0x24,0x50,0xcf,0xb3,0xdb,0x32,0x61,0x6c,0x22,0x95,0x25,0x12,0x09,0xff,0xfc,0x4f,0xe0, - 0xa3,0xf3,0xc3,0x39,0xf9,0xe6,0xe3,0x05,0xf4,0xf8,0x9f,0xb0,0x17,0x70,0x3d,0x49,0xa0,0x43,0xb8,0x13, - 0x6e,0xc2,0x6b,0xe7,0xae,0x9a,0x63,0xaf,0xd7,0xe7,0x26,0xb8,0xd9,0x81,0x65,0xdf,0xdc,0x59,0x5a,0x88, - 0x8a,0x1a,0xf5,0xc7,0xe1,0xdb,0x4f,0x9b,0xd1,0xff,0x2a,0xd5,0x88,0x3d,0x28,0x95,0xb3,0xeb,0xca,0xad, - 0x40,0xd9,0xa8,0x57,0x0c,0x12,0xb1,0x97,0xbe,0x35,0x70,0xe0,0x53,0x74,0x10,0x08,0x1f,0xea,0x9c,0x7c, - 0x39,0x4e,0x3c,0xce,0x4f,0x78,0x39,0x38,0xa0,0xef,0xfa,0x03,0x28,0xbd,0xc1,0x58,0x3d,0x0b,0xec,0x9f, - 0xf1,0x1f,0x84,0xaf,0x12,0xca,0xf3,0xb7,0x54,0x61,0x65,0x85,0xa2,0x0b,0xdb,0x84,0x8f,0x76,0x16,0x60, - 0x2a,0x83,0x27,0x86,0x1f,0x21,0xbe,0x08,0xb4,0x6a,0x89,0xb8,0x4d,0x71,0x04,0xea,0xb0,0x39,0x81,0xa1, - 0xd9,0xcb,0x22,0x9d,0xc2,0xff,0xeb,0xe3,0x74,0x09,0xe5,0xc8,0xc8,0xcb,0x68,0x1e,0xb4,0xce,0x1d,0xdf, - 0xa9,0x4e,0xe4,0x03,0xa2,0xc0,0x37,0x92,0xfa,0x05,0x9d,0xb4,0x07,0x7e,0x56,0x2d,0x7b,0x6c,0x71,0xaf, - 0x71,0x2e,0x70,0x2d,0x87,0xea,0x85,0xa2,0x7c,0x0b,0xbf,0xfc,0x8d,0xc4,0x62,0x90,0x87,0xd2,0x72,0xab, - 0x7e,0xc1,0xce,0x08,0xfb,0x45,0x03,0x92,0xfe,0x47,0x07,0xbc,0xd3,0xd1,0x62,0xf0,0xb1,0xae,0xb6,0x01, - 0x88,0xe6,0xf2,0xcd,0x47,0x8a,0xe9,0x81,0xb4,0x0e,0xb3,0xad,0x4a,0x3d,0x72,0xa8,0x56,0x64,0x2d,0x93, - 0xab,0x0f,0x04,0xbc,0x1a,0x3f,0xde,0x3f,0xc6,0x9a,0x1f,0x08,0x6b,0xd8,0x28,0x4c,0x5b,0x76,0x41,0xd0, - 0x1c,0x17,0xe1,0xd7,0x79,0x0e,0x17,0xb8,0x6a,0xbc,0x5c,0xda,0x67,0x20,0x97,0xc9,0x06,0x42,0x62,0x9e, - 0x9d,0xdb,0x59,0x9d,0xe2,0xdc,0xad,0xba,0x79,0xcc,0xbd,0xaa,0x9b,0xab,0x91,0xb6,0x73,0x71,0xeb,0xe6, - 0x6d,0x49,0x97,0xee,0xb6,0x24,0xdd,0x9a,0xb7,0xd1,0xe0,0x64,0x55,0xf0,0xbd,0x60,0x38,0x14,0x9b,0x36, - 0xa5,0xd3,0x45,0xb1,0x63,0xb4,0x55,0xdf,0x1b,0x00,0xd5,0x2e,0x6b,0xc5,0x52,0xee,0x87,0xb4,0x66,0x3e, - 0xd7,0xb4,0x03,0x73,0x9c,0xa7,0x89,0x15,0x97,0xb1,0xde,0xaa,0xdb,0x84,0xf1,0xd1,0x88,0xf0,0x12,0xd7, - 0x58,0x72,0x53,0xdf,0x1e,0xda,0x8f,0xc9,0xf8,0x2f,0x90,0x12,0x12,0xea,0xd6,0x23,0xb6,0x8a,0x59,0x14, - 0xae,0xc6,0x96,0x36,0x7a,0xab,0x5b,0x87,0x08,0xff,0x23,0x73,0x2a,0xec,0x07,0x95,0x1f,0x4b,0xe7,0xe2, - 0xcc,0xf2,0xde,0xae,0xe9,0x68,0x75,0x2c,0xea,0x8b,0xf8,0xee,0xeb,0x84,0x3d,0xeb,0x10,0xeb,0x39,0xae, - 0x3e,0x19,0xff,0xaa,0xcc,0xa5,0x11,0xfc,0xcc,0x97,0xbf,0x82,0x4c,0x2d,0x03,0x1d,0x91,0xdd,0x3b,0x3b, - 0xab,0x9a,0x3b,0xf4,0xba,0xd6,0x9d,0x5c,0xd7,0x3b,0xf4,0xfa,0x63,0x16,0xc5,0x89,0xa2,0x2d,0x3f,0x0f, - 0xc6,0x4e,0x78,0xd3,0x55,0x17,0x9b,0x04,0x1e,0xbd,0x70,0xd5,0x1d,0xb3,0x21,0x5a,0xe1,0x8f,0x45,0x06, - 0x82,0x4b,0x68,0x7d,0xff,0x21,0x29,0xd6,0x9c,0x68,0x15,0x0c,0x38,0x85,0xcb,0xe0,0x97,0xff,0xf6,0x85, - 0xf1,0xa6,0xcc,0x13,0x76,0x6b,0xa4,0x1f,0x60,0x35,0x13,0x38,0x10,0x89,0x7e,0x4e,0x8c,0x6f,0xad,0x9a, - 0xad,0xfb,0x02,0x40,0xb8,0x60,0x20,0x48,0x41,0x27,0xd2,0xfc,0xc1,0xc1,0x4e,0xd2,0x6d,0x44,0xdf,0x03, - 0x7d,0x11,0x02,0x0a,0x0c,0xe3,0x2d,0x63,0x5c,0xa3,0x3c,0x81,0x5a,0x1c,0x1c,0x2c,0x34,0x9d,0xf2,0x93, - 0x68,0x0c,0x07,0x2c,0x8b,0x00,0x43,0xd8,0xd3,0xa6,0x7a,0x30,0xe2,0x21,0x58,0xf0,0xab,0xf0,0x78,0x7b, - 0xbf,0xb0,0xdc,0xce,0xdf,0x5b,0xb4,0x79,0x78,0x6d,0x4b,0x35,0x2e,0x3d,0xab,0x63,0x78,0xa0,0xcf,0x1b, - 0x8b,0x26,0x92,0x88,0xb5,0x88,0xc4,0xd7,0xf0,0xf2,0x55,0x79,0x98,0xb2,0xf6,0x7e,0x5c,0xf7,0xdb,0xa0, - 0xb1,0x00,0xb4,0xf3,0x07,0x7f,0xa2,0xbc,0xf8,0x82,0xb0,0xfa,0x99,0xa8,0x58,0xb8,0x86,0xe6,0x4e,0xce, - 0x13,0xe2,0x42,0xeb,0x7e,0x2c,0xb7,0x81,0x32,0xe8,0x83,0xc6,0xd2,0xec,0x30,0x17,0x73,0x00,0xb9,0x12, - 0xff,0x05,0x27,0x73,0x73,0xce,0xe2,0x09,0xbd,0x54,0xf3,0x5a,0x6c,0x05,0x78,0x60,0xff,0xc1,0x9f,0xe9, - 0xe6,0xbf,0x11,0xad,0x91,0x79,0xa0,0x38,0x4d,0xa8,0x16,0x46,0x0f,0x73,0x34,0x9d,0x3e,0x81,0x56,0x18, - 0x91,0xc6,0x66,0x57,0x69,0xca,0xe8,0x24,0xbe,0xad,0x58,0xe7,0x25,0x68,0xe7,0xb7,0x29,0xa0,0x01,0x44, - 0xd4,0x44,0x83,0x6f,0xf3,0x1d,0xea,0x02,0xf2,0x1a,0xf4,0xc5,0xa0,0xaf,0xf3,0x2d,0x1f,0x61,0xc5,0x0a, - 0xf3,0x6f,0x44,0x54,0x2a,0x6d,0x8a,0xf0,0xfb,0x54,0x55,0x6f,0xdf,0x42,0x33,0x38,0xbc,0x11,0x0a,0xf3, - 0x6d,0xda,0x46,0x55,0x1a,0x16,0xed,0x4c,0x18,0x5c,0x0b,0x11,0x99,0x33,0x89,0x8f,0xbb,0x88,0x33,0xc4, - 0xbe,0x6d,0x77,0x76,0xc4,0x85,0x16,0x45,0xb2,0xb6,0x9e,0x0a,0xc5,0x3a,0xd4,0x48,0x9e,0xd3,0x36,0x7a, - 0xc5,0xae,0x54,0xf3,0x7a,0x4e,0x1c,0xb2,0xe3,0x6a,0xb9,0x2c,0xe9,0x4c,0xb4,0xbc,0x6f,0x8f,0xe4,0x4b, - 0x23,0x77,0x1c,0x47,0xe9,0x70,0x39,0xea,0x8f,0x25,0x6c,0x34,0x7a,0xb1,0x27,0x4b,0xfd,0xe0,0x00,0xc7, - 0x82,0xf6,0x25,0x4c,0x54,0x63,0x8d,0xeb,0x10,0x0f,0x48,0x9d,0x5b,0x33,0xd1,0x6c,0xc8,0xf9,0x46,0x58, - 0x14,0x1f,0x5b,0xc7,0x71,0x00,0xa1,0x87,0xe3,0x40,0x7c,0x85,0x0e,0xcf,0x38,0x9e,0x09,0x75,0xf5,0xa2, - 0x12,0x7f,0x5d,0x98,0xae,0x2e,0xa2,0x62,0x78,0x31,0xea,0xef,0x2e,0x80,0x58,0xe9,0x34,0x62,0x58,0x69, - 0x7d,0x80,0xd7,0x9f,0x26,0xe5,0xd7,0xf9,0x8a,0x65,0x6c,0x8f,0x66,0x29,0x61,0xd6,0x8f,0x04,0x6b,0xb8, - 0x5e,0x1f,0x2e,0xb8,0x8b,0x83,0x95,0xf4,0x7a,0x11,0x84,0x33,0xf3,0xb4,0xd5,0xa6,0xb7,0x0b,0x22,0xcb, - 0xbe,0xf8,0x00,0xa0,0xb3,0xbe,0x0e,0x4a,0xc6,0x07,0xa7,0x49,0x34,0xb3,0x36,0xe1,0x26,0x47,0x4e,0x5b, - 0xbf,0xeb,0x95,0x63,0xc7,0xf0,0xba,0xdd,0xc3,0x80,0x6d,0x0b,0x2a,0x1c,0x20,0x2b,0x35,0x07,0x1d,0xe6, - 0xa3,0x61,0xa8,0x26,0xb7,0x98,0x32,0xbb,0x88,0xa2,0x2d,0xfa,0x7b,0x16,0xe5,0xad,0x4b,0x7e,0x36,0xe9, - 0xf2,0xd6,0x08,0xf4,0x7c,0xc8,0x9a,0x96,0x7d,0x63,0x5f,0xa1,0xcd,0x98,0x2e,0xe3,0xe5,0x73,0x4a,0xf7, - 0x4b,0x6d,0x96,0xaf,0x12,0xe1,0x95,0x8d,0x7e,0xe1,0x4f,0x7c,0x46,0x30,0x6f,0xdf,0xd5,0xde,0x7e,0x33, - 0x3e,0xfe,0xe1,0xb4,0x63,0x46,0x34,0xd2,0x9e,0xee,0xa0,0x98,0xdf,0xcb,0x2f,0x2e,0x96,0x49,0xf9,0x5d, - 0x92,0x4e,0x2f,0x4b,0xa7,0x54,0x53,0x63,0x51,0xe6,0x8f,0x61,0x5c,0x39,0x08,0x43,0x4f,0x60,0x51,0xc9, - 0x8c,0x53,0xff,0x0a,0x9c,0x1b,0x35,0x56,0xf4,0xac,0xd2,0x4f,0x54,0xf4,0x1c,0xed,0x28,0x9d,0x52,0x21, - 0xc6,0x63,0xcd,0x49,0x70,0xac,0xe9,0xdd,0x23,0xce,0x8f,0x29,0x5c,0x7f,0x32,0xb8,0xaa,0x40,0x83,0x1d, - 0xc8,0x7b,0x6e,0x88,0x39,0xde,0x3b,0xb2,0xcd,0xec,0xeb,0x78,0x9d,0x12,0x2c,0xc8,0x84,0xe9,0x82,0xa3, - 0xb6,0x4c,0x23,0xc6,0x4e,0xc5,0xac,0xf0,0x60,0xea,0x66,0x3c,0x79,0x2f,0xdd,0x67,0xfb,0x74,0x9c,0x9a, - 0xb4,0x87,0xb6,0xf0,0x46,0x03,0xbf,0x71,0x28,0xc7,0x6e,0xfe,0x38,0xb5,0xf2,0xc0,0x6a,0x3b,0xd7,0xd9, - 0xeb,0xd4,0x5d,0x27,0x1a,0x53,0xd4,0xde,0x18,0xb7,0x65,0x2c,0xb2,0x09,0x68,0xae,0x9d,0x2d,0x9e,0x11, - 0x03,0x5b,0x62,0x5b,0x6a,0xeb,0xec,0x5c,0x27,0xa2,0x08,0x15,0xa8,0xa9,0x9e,0x80,0xac,0x95,0x65,0xb6, - 0xce,0x30,0x6a,0x9a,0x11,0x99,0x39,0xd6,0xbd,0x4b,0xfc,0xac,0xe6,0x84,0x88,0xb3,0xd6,0xd4,0xad,0x0c, - 0x1e,0xe9,0xc1,0x44,0x2c,0x13,0xb3,0x33,0xbb,0x85,0x79,0xf8,0x5b,0xbe,0xad,0xbf,0x48,0xa7,0x3d,0x27, - 0x20,0x6e,0x54,0xa6,0xaa,0xfa,0x50,0x0b,0xc5,0x1b,0xcd,0xda,0x3f,0x41,0xa2,0x16,0xfd,0xbd,0x70,0xbe, - 0x35,0x42,0xf1,0x46,0xcf,0xcb,0x5a,0xc1,0x7a,0xec,0xde,0x9d,0xd0,0x28,0xcf,0x2a,0x56,0x0d,0x33,0x35, - 0x83,0x1d,0x43,0x7d,0xee,0xa2,0x66,0x54,0x5b,0x21,0xb5,0x17,0xec,0x3a,0xd2,0xec,0x99,0x78,0xd1,0x36, - 0xc7,0x1f,0x33,0x43,0x60,0x23,0x6a,0x4d,0x8d,0x0f,0x3d,0x58,0x68,0x0f,0xb8,0x38,0x7b,0x2e,0xaf,0xec, - 0x7c,0xad,0xa6,0x1f,0xc4,0xda,0xf5,0x41,0xc0,0x11,0xf2,0xad,0x59,0xad,0x85,0x04,0xd7,0x79,0xb4,0x5b, - 0x5a,0x2f,0x89,0xc4,0x8d,0xd3,0xb4,0x55,0x6b,0x58,0x55,0x5a,0x1f,0x8a,0x96,0xdd,0xa2,0x93,0x70,0x50, - 0xff,0xe6,0x18,0xaf,0xff,0x2d,0x65,0x93,0x49,0xc7,0x65,0x89,0x21,0x98,0xd0,0x28,0xfc,0x2e,0x0d,0xa7, - 0xf5,0xcf,0xe2,0x78,0xae,0x3d,0x40,0x56,0x09,0x75,0x21,0x2a,0xf5,0x23,0x20,0x65,0x3c,0xc5,0x17,0x08, - 0x1b,0x14,0x25,0x60,0xd4,0x78,0x2f,0x64,0x4f,0x3e,0xf0,0xe1,0x6b,0x15,0x3b,0x64,0x43,0xe7,0xf5,0xdc, - 0x48,0x8b,0xca,0x82,0xfd,0xc0,0x64,0xf5,0x88,0xd8,0xe2,0xb5,0xfe,0x75,0x51,0x3f,0x4b,0x66,0xc6,0x9d, - 0x93,0x6f,0xfd,0x0d,0xd3,0x44,0xa7,0x04,0x97,0xa9,0xd5,0x24,0xa2,0x9e,0x10,0xc1,0x17,0x96,0x3a,0xab, - 0x3c,0xc3,0x64,0xbb,0x5e,0xb8,0xb3,0x9a,0x17,0xee,0xac,0x6f,0xb5,0x42,0xb6,0x80,0x87,0xf1,0x43,0xe0, - 0x3b,0xed,0xbf,0x81,0x2a,0x88,0x84,0xbd,0x3e,0x38,0xf8,0x47,0x86,0xff,0x3d,0xb8,0xcc,0x02,0xa7,0x06, - 0x05,0xe6,0xb7,0xb0,0xc6,0x38,0x96,0x15,0xf9,0x4b,0xaa,0xfe,0x0e,0x15,0xca,0x9b,0xd3,0x1b,0xdf,0x1f, - 0x84,0xbd,0xcd,0x69,0x16,0x74,0x07,0xc1,0xe9,0xf6,0x74,0x7b,0x34,0x55,0xff,0x0a,0x9d,0xf7,0xc3,0xde, - 0x67,0xdd,0xc1,0xaf,0xfb,0x37,0x5b,0x3f,0xd8,0x0c,0x4f,0x47,0xa7,0x47,0xa7,0xa7,0x23,0xfa,0x56,0xe6, - 0xad,0x8a,0xeb,0xbc,0x77,0x18,0x9d,0xed,0x7f,0x4d,0x95,0x77,0x7a,0xba,0x7f,0xe0,0x71,0xb0,0x13,0xa8, - 0x97,0xef,0x7e,0xb1,0x0e,0x03,0x08,0x92,0xe2,0x21,0xc5,0x4f,0xba,0x9e,0xee,0x8c,0xf4,0xc6,0xeb,0x12, - 0x10,0xa6,0x90,0xff,0xa9,0x24,0x8f,0x6e,0x44,0xa8,0x0f,0x6f,0xa6,0xe1,0xd0,0x73,0xa4,0xfd,0xde,0x48, - 0x59,0x5a,0xdd,0x30,0xee,0x00,0x6e,0xc0,0x63,0x62,0xa1,0xe1,0x17,0x15,0x22,0xa5,0x11,0x33,0xdb,0xbe, - 0x88,0xb3,0x9c,0xaa,0xa2,0xef,0x5f,0xbf,0x7c,0x41,0x09,0xc0,0x68,0xc4,0x6c,0xcc,0x02,0x43,0xc0,0x32, - 0xa7,0x20,0x5c,0xe2,0x42,0x80,0x02,0x55,0x18,0x24,0x7c,0x9d,0x32,0xa7,0x11,0x15,0x98,0xea,0x24,0x83, - 0x63,0xd6,0x16,0x1f,0xe7,0x9e,0xe7,0x28,0xf4,0x57,0x4d,0xe2,0x18,0xd1,0x8d,0xdc,0xf1,0x84,0x5e,0xb7, - 0x96,0xa3,0xeb,0x29,0x18,0xf9,0xd6,0xda,0xd2,0xa5,0xc6,0x36,0xbf,0xfb,0x51,0x0a,0x24,0xc4,0x10,0x67, - 0xed,0x60,0xe3,0x8b,0x91,0xdf,0x0f,0x36,0xa6,0xfb,0x0d,0xb0,0x71,0x55,0x4d,0xb0,0xbd,0x4e,0x01,0xb9, - 0x3a,0xe8,0xa4,0xb0,0x03,0x3a,0x4e,0xf8,0xa3,0xa0,0xe3,0x66,0x6b,0xa0,0xe3,0x14,0x07,0x74,0xfc,0x6e, - 0x40,0xe7,0xb6,0x65,0x4b,0x21,0xbf,0x2f,0x05,0xaa,0xaf,0x5d,0xd8,0x1a,0x08,0xf0,0x8a,0x9c,0xaf,0x98, - 0x60,0xef,0xc7,0xb6,0x9f,0x30,0xa2,0xcc,0x67,0xda,0x96,0x51,0x0c,0xf6,0xb4,0x0d,0xa6,0xd8,0x15,0xa6, - 0x4b,0x26,0xc9,0xb8,0x70,0xa2,0xa1,0x38,0x56,0xa2,0x35,0x83,0x47,0x31,0x8b,0xbc,0x3a,0x87,0xaf,0xa1, - 0x34,0x17,0x4b,0x69,0x6d,0xd7,0x08,0xa3,0xcf,0x12,0x06,0x9d,0x46,0xb8,0xb9,0x60,0xc3,0x46,0x18,0x05, - 0xb2,0x79,0xa3,0x18,0x3c,0x16,0xba,0x26,0x2a,0x9f,0x4b,0x0f,0x5b,0x0d,0x4f,0xa5,0xcb,0x95,0x89,0x21, - 0xdb,0x49,0xb6,0x9a,0x53,0xa2,0xd9,0xba,0x3d,0x23,0x5b,0xa0,0x6a,0xf3,0x53,0x63,0x3f,0xb9,0x63,0x87, - 0xaa,0x2d,0x5b,0xd9,0xb0,0xb2,0xc5,0xae,0x15,0x7d,0x35,0x56,0xaf,0xd2,0x0e,0x01,0x8b,0xad,0x69,0xb5, - 0xe5,0x25,0x0c,0x57,0x8d,0xc9,0x24,0x83,0xa9,0x69,0x84,0x29,0x60,0x13,0xa3,0x54,0x0d,0x3c,0x31,0x9f, - 0x30,0x06,0x96,0x95,0xed,0x67,0x03,0x44,0x6c,0x8f,0x4b,0x80,0x62,0x58,0x13,0x9c,0xe2,0x3c,0x3a,0xfa, - 0xf5,0x74,0xf9,0x99,0x3f,0xa4,0xbf,0xde,0x9d,0xfb,0x0f,0x4e,0x8f,0xa2,0x51,0x37,0x20,0x5a,0x83,0xc4, - 0x28,0xc0,0xdf,0x41,0xe8,0xd1,0x67,0x6f,0xf4,0x19,0x91,0x9d,0xcd,0x1d,0x7a,0xbc,0x43,0x8f,0x77,0xba, - 0x1b,0x5d,0x26,0xba,0xff,0xe0,0xdf,0xa8,0x48,0x10,0x0c,0x8e,0xa8,0x33,0x91,0x37,0x8c,0x0f,0x7f,0x7b, - 0x78,0xf8,0xcb,0xd9,0x68,0x78,0x7a,0x7a,0x75,0x7a,0x7a,0x78,0x7a,0xda,0x1b,0x7d,0xe6,0x11,0x50,0x23, - 0xa6,0x61,0x5e,0x77,0x99,0x77,0x89,0xd2,0x85,0xc1,0x40,0x1e,0x03,0x4f,0xad,0xf2,0xc8,0x21,0x76,0xde, - 0xaf,0xf7,0xbd,0xee,0x38,0x0f,0xd4,0xcc,0x74,0xee,0xf4,0x68,0x10,0x3c,0x38,0x22,0x80,0x36,0xb2,0x9d, - 0x9e,0x1e,0x21,0x67,0xd7,0x1b,0xfe,0xfa,0x60,0xf4,0xd9,0x03,0x1a,0xcf,0x02,0x45,0xee,0xef,0x3d,0x7e, - 0xf9,0xe8,0xcd,0xdf,0x5f,0x7d,0xd3,0x41,0x7a,0xf7,0xc1,0x51,0xaa,0x2e,0x25,0x1d,0x76,0x3b,0x6b,0x79, - 0x3c,0x1d,0x1e,0xd1,0x21,0x18,0x37,0xc6,0xde,0x7b,0xcf,0x52,0xe1,0xa3,0xf7,0x7e,0x8f,0x06,0x32,0x55, - 0xf5,0x25,0x4f,0x19,0x3d,0x1c,0xe7,0x13,0x7d,0xe1,0x32,0xcd,0xd5,0x75,0xae,0xce,0x72,0xc2,0x1d,0x75, - 0x95,0xab,0xf7,0xb9,0xda,0xcf,0xd5,0xbb,0x5c,0x3d,0xca,0xd5,0xc3,0x5c,0xbd,0xce,0xd5,0x9b,0x5c,0xbd, - 0x64,0x14,0xd4,0x56,0xbb,0xda,0x1c,0xda,0xdc,0x75,0xf0,0x86,0xf7,0x36,0xc7,0x7d,0xf1,0x33,0xfa,0xeb, - 0x1d,0xcc,0xca,0xbe,0x17,0x7a,0xf7,0x69,0x51,0x1e,0x4c,0xf9,0xf1,0x01,0x1e,0x81,0x9f,0xf4,0x72,0xc7, - 0xbb,0x43,0x2f,0xf1,0x7c,0x81,0x0f,0x07,0xf8,0xf0,0xa7,0x93,0x63,0x3c,0x9f,0x66,0xfc,0xf2,0x15,0x3f, - 0x97,0xde,0x56,0x7d,0x43,0x63,0x3b,0x20,0x20,0xd3,0xc9,0x77,0x5a,0x6e,0x50,0x7c,0x43,0xc5,0x82,0x3e, - 0x0d,0xe8,0x55,0xeb,0xa7,0x0d,0xd5,0xb4,0xf9,0xd3,0x57,0x9c,0xe3,0x29,0x77,0x18,0xfa,0x0e,0xf5,0x7e, - 0x3e,0xce,0x6f,0xe1,0x29,0x0e,0x0e,0x9e,0xe6,0xe2,0x39,0xe1,0x94,0x25,0x2b,0x09,0x7c,0x15,0xa9,0x27, - 0x80,0xef,0xbf,0x6c,0x7e,0x5d,0x1f,0xe6,0x59,0x78,0xa4,0x5e,0xe0,0x75,0x7d,0xb8,0x41,0x12,0xbd,0x3e, - 0xa7,0x57,0xbf,0xf7,0x19,0x6d,0xa8,0xcb,0x2e,0xf5,0x26,0xcd,0x36,0xf9,0x05,0x3f,0xf7,0x3e,0x0b,0x8e, - 0xd4,0x8f,0xf4,0x55,0x11,0x5e,0x29,0xda,0x6e,0x47,0x84,0x65,0x94,0xc3,0x7d,0x0d,0x06,0xfb,0x47,0xea, - 0x6b,0xc6,0x0a,0x7f,0x73,0x1a,0xec,0x53,0xa7,0x7f,0xce,0xd9,0x28,0xec,0x33,0x7a,0x51,0x7f,0xc5,0x97, - 0x10,0x2d,0xb3,0xc0,0xf9,0x48,0xfd,0x44,0x09,0xa7,0xbd,0xe1,0xaf,0xbd,0x51,0x97,0xb2,0x7e,0xd7,0xdc, - 0x9f,0xb5,0x9b,0x98,0x5f,0xd2,0xe8,0x97,0xf4,0x23,0xe6,0x49,0x41,0xa5,0x03,0x41,0x4c,0xd3,0x2f,0xa9, - 0x6b,0x92,0x48,0x9b,0xf0,0x6f,0x68,0xf9,0xfd,0x7c,0x96,0x2d,0xc3,0x17,0xaf,0x4f,0x27,0xdd,0x23,0xf5, - 0x0f,0xa4,0xf0,0x33,0xf5,0xe3,0x87,0x3c,0x1a,0x26,0x39,0xed,0x39,0xea,0x86,0xc0,0xfb,0xe6,0x03,0x7b, - 0x8b,0x48,0x8f,0x8c,0x2f,0x09,0xb9,0x10,0x32,0x67,0x17,0xbe,0xd2,0x7f,0x1e,0x2f,0x58,0x13,0x71,0xe8, - 0xad,0x0f,0xf9,0x0a,0xc5,0x1b,0x81,0x4b,0xc2,0x2b,0x0f,0x1a,0x9c,0xa0,0x37,0xda,0x6c,0x28,0x45,0x3f, - 0x1b,0x85,0x50,0xbd,0xdb,0x70,0x22,0xb8,0x2d,0xd9,0xb9,0xd6,0x87,0xe9,0x85,0x4c,0x73,0x1e,0xa5,0x03, - 0x8f,0xea,0xf2,0xba,0x29,0x16,0x65,0x48,0x67,0xc3,0x38,0x12,0x66,0xdc,0x64,0xc5,0x25,0xae,0x64,0x5e, - 0xd6,0xd2,0x6c,0x1d,0xe3,0xe8,0x6f,0x6c,0x35,0xf2,0x7d,0xc2,0xde,0xb1,0x12,0xe8,0x18,0x71,0x83,0x4a, - 0x1c,0x66,0x9c,0xe7,0xef,0xa9,0xed,0x1f,0x90,0x4e,0xe7,0xa5,0x31,0x98,0xd7,0x31,0x11,0x68,0x61,0xed, - 0xc6,0xbd,0xf4,0x82,0x68,0x84,0xd7,0x2d,0xa8,0x7d,0x1a,0xfe,0x1d,0x53,0xe4,0x8e,0xd7,0xcd,0xd5,0xb7, - 0x28,0x74,0x93,0xbc,0x5f,0x84,0xc8,0x27,0xf4,0x3b,0x1c,0x6f,0x8d,0xbc,0x56,0xda,0xa5,0x4e,0xad,0xd0, - 0x29,0x82,0xae,0x74,0xa8,0xe4,0x04,0xdd,0x85,0x22,0x9e,0xa4,0xb9,0xb4,0xbf,0x42,0xfb,0x55,0x95,0x6e, - 0xab,0x9c,0x8b,0x9b,0x94,0x36,0x56,0xba,0x8d,0x99,0x6d,0x43,0x54,0x7c,0x12,0x88,0xe6,0xea,0x4d,0x51, - 0x82,0x00,0x1d,0x26,0x0f,0x3f,0xe0,0xbd,0xd6,0x4a,0xaa,0x6b,0x9c,0x21,0xb0,0xf0,0x60,0xdc,0x03,0xe8, - 0x10,0x76,0x6e,0xc9,0xc2,0x54,0xbc,0x11,0x00,0x96,0x04,0x17,0x1c,0xe9,0x46,0xea,0x7b,0xa2,0x0c,0x54, - 0x8c,0x8e,0x0a,0x40,0x3b,0x48,0xed,0xcd,0xbd,0xf6,0x0f,0xb9,0xaa,0xce,0x10,0xa1,0xbe,0x4a,0x6b,0xbd, - 0x5a,0x12,0xbb,0x1c,0xd1,0xe6,0x80,0xca,0x23,0xab,0x9d,0x5d,0xaa,0xb5,0x9a,0xdb,0x6b,0xb5,0x69,0xed, - 0x4e,0xf5,0x5a,0xb0,0x4e,0x9d,0x39,0x08,0xc7,0x77,0xb1,0x12,0x80,0xc9,0x1e,0x4f,0xac,0xa7,0x26,0xa0, - 0xc1,0x5c,0x4d,0x03,0xa5,0x83,0xec,0x56,0xf7,0x99,0xd7,0xc1,0x84,0xd6,0xca,0x65,0x34,0x57,0xeb,0xe8, - 0x0e,0x7a,0xb3,0xbf,0x6f,0x9c,0x70,0xfc,0x14,0xcf,0x3a,0x51,0xa7,0x11,0x56,0x5d,0xdf,0x28,0xc8,0x3d, - 0xe6,0x3e,0x7b,0x8e,0xd5,0xa1,0x1a,0xed,0x9d,0xa6,0x1d,0x63,0x6e,0xa9,0x50,0xde,0x33,0x95,0x6e,0x03, - 0x5c,0x83,0xfa,0x6e,0x1e,0xb4,0xba,0xe6,0xb6,0xbc,0x33,0xf1,0xf8,0x02,0xad,0xa0,0xbc,0x33,0xa0,0x62, - 0x92,0xd0,0x09,0xe9,0x51,0xdf,0xbe,0x49,0x85,0x77,0xba,0x3e,0x71,0x42,0xd3,0x9e,0x98,0xd2,0x0f,0xbc, - 0xb3,0xcc,0xa7,0xef,0x58,0x10,0xf4,0x03,0x51,0x11,0xe1,0x83,0xa7,0x92,0x04,0x12,0x58,0x73,0xb5,0xbc, - 0x8e,0xd6,0x5d,0xaf,0x43,0x38,0x93,0xf8,0x97,0xca,0xab,0xf7,0xdd,0xdc,0xab,0x52,0xa3,0x75,0x00,0x84, - 0xf5,0x77,0x22,0x9e,0x5e,0xd0,0x30,0xac,0xa8,0x91,0x83,0x6b,0x22,0xb4,0x76,0x15,0xd1,0xfb,0x59,0x00, - 0x17,0x49,0x63,0x82,0xef,0x2a,0x72,0x7a,0xac,0x66,0x58,0xe9,0x4b,0xa5,0x5d,0xdc,0x04,0x9b,0x8d,0x87, - 0x4a,0x3d,0x75,0xa1,0xd3,0xe1,0xed,0xe4,0xb0,0xfa,0x88,0x57,0x4f,0x2d,0xf4,0xc7,0x8b,0x18,0xeb,0xb9, - 0xfa,0xca,0xef,0x9e,0xfa,0x7b,0x89,0x8f,0xc6,0xe9,0x8d,0xf2,0xea,0xa6,0x23,0xb4,0x09,0xd3,0xe2,0x19, - 0x9c,0xa5,0xf2,0xa4,0xbc,0xee,0xac,0xcb,0x47,0x6f,0xaf,0xeb,0x4b,0xfd,0xd4,0xdd,0x8b,0x81,0x17,0xea, - 0x9c,0x04,0xcb,0xf0,0xec,0x1f,0x36,0xf3,0x05,0x92,0xa0,0x15,0x93,0x48,0x23,0x02,0x53,0x4f,0x50,0x26, - 0x8e,0x24,0xdb,0x3e,0x0e,0xa7,0x35,0xc8,0x52,0xd2,0x38,0x42,0x72,0x4f,0xf7,0x6b,0xe0,0x4b,0x5d,0x68, - 0x66,0x41,0xbf,0xbb,0xc6,0xaf,0x54,0x9d,0x26,0x87,0xfb,0xfb,0x6b,0xaa,0xd8,0x5f,0xf1,0xfc,0x4a,0x7f, - 0xbd,0x70,0x16,0x70,0x43,0x69,0x44,0x23,0xa1,0xac,0xf4,0xb8,0xe6,0x4a,0xdc,0x46,0x82,0x1b,0xca,0x70, - 0xff,0x98,0x09,0x25,0xf5,0x8b,0x3a,0x60,0x03,0x6b,0x0f,0x29,0xff,0x28,0x10,0x5d,0x17,0xe4,0x22,0x00, - 0xd4,0xb2,0x19,0x77,0x2f,0xf4,0x29,0x30,0x65,0xaa,0x74,0x4a,0xed,0x9e,0x40,0x6f,0x40,0xca,0x33,0x32, - 0x11,0xf9,0xa4,0x41,0x32,0xd2,0x79,0x1f,0x43,0x0d,0xa1,0x6e,0x8c,0x17,0x72,0xb0,0x9f,0x13,0x49,0x77, - 0xf1,0x22,0xc6,0x14,0x17,0xbb,0x78,0xf1,0x77,0x0e,0x6c,0x55,0xcd,0x2d,0xcf,0x4c,0xca,0x33,0xe3,0xc7, - 0x51,0xae,0x21,0x14,0x33,0x84,0xe2,0x80,0xe7,0x0a,0x53,0x55,0x54,0x53,0x45,0x3d,0x85,0x61,0xda,0x07, - 0x7b,0x08,0x4c,0x73,0x54,0x3d,0xae,0x83,0xbd,0x56,0x82,0xd5,0x24,0x3b,0xf0,0xb7,0xca,0xb1,0x3c,0x72, - 0xa8,0x62,0x23,0x0c,0x30,0xbc,0x68,0xeb,0x11,0x21,0x96,0x11,0xcc,0xb3,0x69,0x11,0xec,0xe5,0x0c,0x02, - 0x74,0x07,0x2a,0x7b,0xb4,0x24,0xa8,0xe3,0xba,0x7f,0xa1,0xfe,0x00,0xd5,0xb2,0xc1,0x7e,0x1a,0xea,0x5e, - 0xd1,0x42,0x69,0x2c,0x55,0x81,0x4c,0x1f,0xf4,0xb8,0xfd,0x9b,0x36,0x06,0x07,0xe3,0x2c,0x79,0x2a,0xe4, - 0x91,0x4d,0xe2,0x22,0xca,0xe1,0x73,0x60,0x16,0xf4,0xc7,0x94,0x81,0xb6,0x33,0x60,0x4f,0xad,0x1e,0xad, - 0x3e,0x62,0xef,0x1d,0xfb,0x84,0xb3,0x01,0xe6,0xa0,0x34,0x33,0xa3,0xb0,0x1b,0x25,0x16,0xce,0x25,0x51, - 0xee,0x8b,0x4a,0x4c,0xe2,0x2f,0x37,0x1b,0xb6,0x25,0xe4,0xfd,0xf7,0x7c,0xb6,0xa2,0xed,0xc7,0xab,0xdf, - 0x46,0x79,0x6c,0x05,0x08,0xa2,0x6c,0x27,0x62,0xef,0x4d,0x56,0x17,0x00,0xfa,0x95,0xb2,0x6a,0x8d,0x84, - 0xdb,0x8b,0x55,0x66,0x02,0x77,0x4e,0xbe,0x6b,0x51,0x4c,0x90,0xee,0x3a,0x3c,0x10,0xd0,0x66,0x89,0x6e, - 0x4b,0x0e,0xee,0xfc,0x96,0x0f,0x35,0x1f,0xae,0xc2,0x72,0x55,0xad,0x15,0x6c,0xe9,0xe4,0xf8,0x8a,0x18, - 0xa6,0xb8,0xcd,0xd3,0x04,0x38,0x55,0xed,0x57,0x0b,0x62,0x48,0x3a,0xf6,0x20,0x5f,0x91,0x2b,0x47,0x02, - 0x1a,0x96,0x29,0xfc,0xe8,0x7c,0x9d,0x3c,0x4b,0x2e,0xca,0x97,0x8b,0x24,0x43,0x96,0x34,0x57,0x35,0x50, - 0x84,0x74,0xde,0x6a,0x48,0x39,0xc3,0xe7,0xa5,0x72,0xa4,0x03,0x3f,0xe4,0x74,0x40,0x98,0xac,0xc6,0xed, - 0x9a,0x34,0x9d,0xd2,0x2c,0x66,0x13,0xeb,0xca,0x44,0xf1,0x0b,0xd8,0xd1,0x43,0xef,0x6d,0x9e,0x12,0x9a, - 0x28,0x40,0xe4,0xdb,0x76,0x1e,0xb4,0x03,0xff,0x2d,0xc0,0x76,0x6c,0xbd,0x8c,0xff,0x90,0x99,0x2b,0xb3, - 0x12,0x14,0x1d,0x4e,0xd2,0x4c,0x7b,0xe9,0x50,0xf6,0xca,0x4b,0x02,0x05,0x75,0xfd,0x72,0x80,0xb5,0x5a, - 0xc2,0xd9,0x29,0x24,0x42,0x7f,0xb3,0x67,0xba,0xd3,0xab,0xfd,0xb3,0x51,0x77,0x73,0x4a,0x2c,0x74,0x30, - 0xfa,0x6c,0x70,0x1a,0xe0,0x3c,0x17,0x3d,0xd8,0xfc,0x6a,0x7a,0x40,0xaf,0xa7,0xfe,0x91,0xfa,0x45,0x97, - 0x18,0xd2,0xb9,0x8d,0x4e,0x6f,0x67,0xfb,0x23,0x14,0x1d,0xe1,0xe8,0x47,0xec,0x73,0x23,0x71,0x73,0x3a, - 0xbc,0x43,0x0c,0xfc,0x9d,0x11,0x3d,0x78,0xf4,0xe0,0xe1,0x81,0xf8,0x5c,0xfc,0x34,0xf3,0x8e,0x82,0xcf, - 0xa8,0x5a,0x62,0xcd,0xff,0x0e,0x5e,0x66,0x39,0x0e,0xef,0xfe,0x19,0x3e,0x8a,0xc2,0xaf,0x44,0x7b,0x22, - 0x3c,0xb9,0xa7,0x04,0xde,0xf7,0xee,0xaa,0xd5,0x22,0xbc,0xf7,0x17,0x3a,0x02,0x5f,0x94,0xe1,0xbd,0x3f, - 0xab,0x02,0xf7,0x22,0xe1,0xbd,0xaf,0x14,0xfc,0x5a,0x87,0x9f,0x1f,0x2b,0xb9,0x9a,0x0c,0x87,0x7f,0x51, - 0x9f,0x7f,0x49,0xa7,0x8c,0x7f,0xcd,0xdb,0xdc,0x6d,0x81,0xe4,0x74,0x4b,0x42,0x1e,0xc7,0x15,0x56,0xdf, - 0x83,0x17,0x12,0x48,0x7b,0x08,0x1f,0xcc,0xa2,0xc6,0x0b,0x10,0x24,0x9e,0xc6,0x22,0x23,0xec,0x43,0x51, - 0x82,0xbf,0xd9,0x3c,0xfa,0xfd,0xb1,0x5c,0x25,0x72,0x16,0x84,0x18,0x0b,0xff,0x35,0xf7,0xeb,0xb4,0xa1, - 0x43,0x14,0xa7,0xa3,0x53,0xc6,0xab,0x02,0x93,0xf4,0x86,0x3f,0xd0,0x02,0x1e,0x97,0xc5,0x8c,0x4b,0xec, - 0x99,0x0c,0x94,0xf0,0x03,0x14,0x6f,0x15,0x3b,0x03,0xad,0x7d,0xe3,0x14,0xf9,0x18,0xcf,0xea,0x9f,0xe8, - 0x5d,0x3e,0x40,0x20,0x50,0xfb,0x82,0x04,0xf9,0xc4,0xb0,0xc3,0xa7,0x3b,0xe2,0xec,0xe9,0x0e,0x98,0x1d, - 0xc9,0xd5,0x39,0x38,0x30,0x3d,0x94,0x6f,0xdc,0xe7,0x63,0xd4,0x97,0x4e,0x26,0xb3,0xe4,0x77,0x15,0x3b, - 0x61,0x87,0x68,0x98,0x9f,0xdf,0x53,0xea,0x2e,0xf0,0x3f,0xa1,0x89,0xa0,0x63,0x61,0xd3,0xcd,0x0a,0xbc, - 0xbb,0x55,0x01,0xea,0x5a,0x26,0xf6,0x6c,0x2a,0x13,0xab,0x6a,0x14,0x82,0x08,0xc4,0x8e,0x6a,0x91,0xa9, - 0x8e,0x23,0xe1,0x55,0x46,0x40,0x55,0x4d,0xe7,0x54,0x53,0x46,0x35,0xdd,0x81,0x80,0x8b,0xd6,0x5b,0x17, - 0xa7,0xeb,0xaa,0x56,0xec,0x7a,0x0e,0x43,0x0c,0xff,0x45,0x95,0x96,0x21,0xae,0xb9,0x06,0xc2,0xd1,0x84, - 0x9a,0x35,0x0a,0x3e,0x90,0x9d,0x43,0x49,0x7b,0x4a,0xe7,0xf7,0x02,0xdd,0xe7,0xf1,0x2c,0x8f,0xdf,0x21, - 0x48,0x6e,0xd6,0xe2,0xc5,0x34,0xb7,0xce,0x2f,0xf9,0x15,0xa2,0x46,0xda,0x13,0xf1,0xb3,0xd9,0xfc,0x4d, - 0x27,0x5a,0xe9,0xe4,0x32,0xfa,0x05,0x76,0xd2,0x46,0xdf,0xdc,0xb3,0x1f,0x10,0xa5,0xc8,0xf8,0x64,0xc7, - 0x0d,0xe2,0xb7,0x49,0x86,0x60,0x7c,0xf5,0xdc,0x5a,0xac,0x68,0xf3,0xd9,0x23,0x45,0xb4,0xf6,0x59,0x77, - 0x22,0x89,0xd9,0xe2,0xd9,0xa6,0x07,0x36,0x30,0x57,0x8d,0x80,0x6e,0x36,0xfb,0x59,0x5f,0xbb,0x3b,0xbe, - 0x3e,0x4f,0x6c,0x4c,0xc5,0x96,0x89,0xdc,0xb3,0xd6,0xb9,0xda,0xd7,0x65,0x36,0x4e,0x9e,0x4e,0x22,0xed, - 0x73,0xbe,0x19,0x3b,0x10,0x6e,0xb7,0x8b,0x38,0xf2,0x5d,0xa9,0xcf,0xe9,0xe9,0xb9,0xd7,0xf5,0x26,0x44, - 0xc3,0x2f,0x20,0x61,0x23,0xa4,0x2f,0x71,0xe7,0x40,0x40,0xbe,0x66,0x7f,0x6b,0x63,0x48,0xf7,0xb0,0xed, - 0xa9,0xab,0xb4,0xbc,0x54,0xf1,0x55,0x9c,0x96,0x8a,0xf5,0xfd,0x15,0x7b,0x36,0xd7,0x3a,0xf1,0x7c,0xc1, - 0xa3,0xd8,0x11,0xa9,0xe2,0x20,0xf3,0xea,0x8a,0xc8,0x6a,0xa2,0xae,0x21,0xd6,0xd3,0xc4,0x46,0xd1,0xe9, - 0x2b,0x87,0x13,0x43,0x76,0xb0,0xa2,0x64,0x04,0xc6,0xb1,0x97,0xf5,0x92,0xcd,0xae,0x3f,0xe9,0x68,0x22, - 0xf1,0xe6,0xd9,0xb7,0x59,0x9a,0xad,0xe0,0x6f,0xf1,0x7c,0x35,0x9d,0x42,0x0e,0xa8,0xa1,0x50,0xc5,0x50, - 0xf1,0xb4,0xfb,0x19,0xec,0x09,0x7a,0x77,0xa0,0x61,0x6d,0x30,0xb4,0xa0,0xcb,0x23,0x94,0x7b,0x94,0xc6, - 0x98,0xa5,0x53,0xe2,0x43,0x94,0xf5,0xd2,0x5b,0xeb,0x21,0x92,0x0e,0x82,0x7f,0x7a,0x4a,0x24,0x9f,0xfe, - 0x54,0xb5,0x36,0x3e,0x20,0x00,0xdc,0x9b,0xa6,0x68,0xa7,0xb2,0xb0,0xbd,0xd5,0x20,0x94,0xbd,0x00,0x13, - 0x6d,0x44,0x60,0xe3,0x68,0xef,0x24,0x50,0xef,0x73,0x3d,0xa7,0x6c,0xfb,0x05,0x31,0xb6,0x13,0x83,0xa5, - 0x9f,0xdd,0xbf,0xca,0x5d,0xbf,0x2b,0x57,0x39,0x9b,0xd8,0xc2,0xb8,0x77,0x9a,0x47,0x49,0x85,0xd9,0xef, - 0xf1,0x66,0xf6,0x7b,0xa0,0x94,0xda,0x47,0x8a,0xb3,0x9b,0x73,0xe2,0x3b,0x24,0x36,0xb6,0x6b,0xfe,0x70, - 0x96,0x03,0xbd,0x93,0x96,0xc5,0xf0,0x42,0x16,0xc3,0x79,0x33,0x43,0x53,0x16,0x43,0x79,0xae,0x76,0xf2, - 0xe4,0xcb,0xb2,0x99,0xe9,0x1a,0x5d,0xa0,0xd9,0x48,0xe7,0x69,0x89,0xf8,0x86,0xf6,0xa4,0x2d,0xaa,0x25, - 0x7b,0x27,0xac,0xe1,0x84,0xa0,0xe5,0x58,0x21,0x3f,0x5f,0x52,0x2e,0xee,0xa6,0x02,0xbc,0xc0,0xab,0x9e, - 0xec,0x18,0x5d,0x34,0x81,0x4c,0x6f,0xb3,0x6e,0x44,0x93,0x0d,0x8d,0xd5,0xd5,0xb9,0x5c,0x20,0xf8,0xae, - 0x41,0x74,0x61,0x5c,0x04,0xb0,0xc1,0xbe,0x5a,0x56,0x01,0xe9,0xc5,0xbb,0xec,0x2c,0xd0,0x97,0x69,0xb8, - 0x53,0x28,0xf0,0x5a,0xf2,0x8c,0x35,0xae,0x5b,0x29,0x99,0xb5,0xf8,0xd3,0x28,0xae,0xa2,0xd4,0xa7,0x0f, - 0xa2,0x63,0xc4,0x22,0x48,0x47,0xbd,0x99,0xc9,0x8a,0x85,0x4e,0xe3,0xa2,0x76,0x0e,0x0f,0x0d,0x5f,0x19, - 0xf1,0xa5,0x2e,0x72,0x3b,0xb6,0x95,0x6e,0x45,0xe3,0x07,0x51,0xda,0x1f,0x53,0x81,0xa4,0xc7,0x0e,0x54, - 0xf8,0x87,0xdd,0xa8,0xb3,0x90,0x01,0xfd,0xef,0x9b,0xec,0x11,0x00,0x98,0x72,0xb3,0x87,0x27,0xfc,0x9d, - 0x0f,0x42,0xde,0x79,0x01,0x2e,0x6f,0x39,0x60,0xe6,0xaa,0x80,0xf1,0xb9,0x3c,0xd0,0xf8,0x09,0xdc,0x7b, - 0xc7,0xe2,0xf4,0xc0,0x5b,0x70,0x2e,0x0e,0x9b,0xd0,0x9a,0xef,0x84,0xf3,0xa9,0x5a,0x47,0x04,0x82,0x04, - 0x54,0xe3,0xf7,0x00,0xc2,0x12,0x4c,0x22,0xf4,0xcc,0x2b,0xd1,0x0b,0x4d,0x59,0xd2,0xab,0x78,0x4c,0xc6, - 0xb6,0x15,0xee,0x93,0x1b,0x9c,0x25,0x7f,0x98,0x11,0x50,0xca,0x3e,0x4b,0xf2,0x52,0x22,0xe2,0x74,0x2c, - 0x79,0x99,0xfb,0xc6,0xff,0x86,0x98,0x9c,0xe6,0x8d,0x1b,0xef,0x49,0xf4,0x36,0x1f,0x2e,0x10,0xf7,0x89, - 0x7f,0x6b,0x42,0x6e,0x62,0xe2,0x4e,0x97,0xa7,0xa7,0xaf,0x89,0x7d,0x0b,0xfc,0xfb,0x47,0x7c,0xb0,0x15, - 0x69,0x77,0x40,0xab,0x3e,0xc5,0xb1,0x19,0x86,0x57,0x46,0x7e,0x3d,0x71,0x05,0xd7,0x8c,0x1e,0x06,0xd3, - 0xac,0x91,0xab,0xa2,0xfe,0x2c,0xf8,0xf4,0xa7,0x5d,0x4a,0x02,0x70,0x0b,0xdc,0xf1,0x46,0x95,0x6f,0xa9, - 0x23,0xc8,0xca,0xa9,0xed,0xa5,0xb4,0x7c,0x78,0xf8,0xe0,0x68,0x4a,0xc7,0x0c,0xda,0xf9,0xdd,0x2c,0xa7, - 0xc3,0x47,0x8f,0x1f,0xbe,0x79,0x78,0x3a,0xac,0x72,0x8e,0x46,0x36,0x27,0x24,0xc7,0xfe,0x42,0x89,0x1b, - 0x65,0x68,0xab,0x68,0x77,0x4c,0x1c,0x02,0xef,0x32,0x96,0xcd,0x92,0x1f,0xa0,0xe2,0xe0,0x41,0xae,0x42, - 0x38,0x6f,0x34,0x70,0x0e,0x2f,0x4d,0x7f,0xcb,0xe8,0x52,0x15,0x54,0xd1,0xec,0xf0,0x02,0x01,0xa6,0xad, - 0x89,0xd1,0x3a,0x72,0xae,0xfa,0xef,0xcb,0x71,0x1f,0xda,0x95,0x6b,0x06,0xfe,0x65,0x6e,0xa2,0x64,0x19, - 0xe3,0x30,0x57,0x31,0xe0,0xf0,0xf4,0xfd,0xbd,0x44,0x8a,0xcc,0x19,0x7d,0x13,0x1d,0x7d,0x11,0x01,0x28, - 0xb4,0x66,0xa1,0x8e,0x7a,0xa0,0x7d,0x91,0x54,0xab,0xf0,0x73,0x05,0x33,0xda,0xcc,0x9f,0x77,0xef,0xd1, - 0x31,0x4f,0x93,0xfb,0x2d,0xb4,0xb6,0xd6,0x8d,0x36,0xa7,0x6e,0x9b,0xa3,0x07,0xd2,0xde,0x94,0xdb,0xcb, - 0xfc,0x69,0xf7,0xae,0x5b,0x1c,0xf9,0x21,0x7c,0x63,0xcf,0xb3,0xfe,0x22,0xe7,0xbc,0xd7,0xc8,0x78,0x8d, - 0x0b,0x64,0x13,0xad,0xd0,0x16,0x40,0xfe,0x33,0x9b,0xff,0x42,0xf2,0x9f,0x49,0xbb,0xe7,0xd1,0xac,0x9f, - 0xf9,0x67,0x4e,0x39,0x02,0xe0,0xd9,0xf0,0x64,0xa4,0xce,0xf9,0x68,0xea,0xd6,0x71,0xd5,0x8c,0x80,0x92, - 0xd8,0x4a,0x57,0x52,0x69,0xe2,0xc8,0x12,0xa3,0x1b,0xe3,0xd0,0x2f,0x41,0x75,0x7c,0x02,0x09,0xb1,0x60, - 0xb0,0xd2,0xc2,0x99,0x84,0xb6,0x24,0xf2,0xe5,0x76,0x79,0x8f,0x2d,0xf4,0xa5,0xca,0x59,0x2e,0x41,0x45, - 0x6d,0x42,0x4c,0x09,0xfd,0x20,0xf3,0x53,0xb7,0xb3,0xb9,0x76,0x0b,0xc9,0xfa,0x67,0x62,0xe5,0x67,0xdd, - 0x72,0xe5,0xbd,0x15,0xd6,0xe1,0x6b,0xda,0xc5,0x2f,0xd9,0x41,0x1b,0xac,0x32,0xeb,0x85,0xe1,0xcb,0x7c, - 0xa6,0x60,0x19,0x2c,0xc6,0x50,0xc1,0xcd,0x5e,0xf3,0xe6,0x34,0xa3,0xc1,0xcc,0xd8,0x0b,0x8e,0x1e,0x0f, - 0x2d,0xcb,0xd2,0xa9,0x99,0x65,0x00,0x42,0x53,0x68,0x05,0xe7,0xb9,0x7f,0x41,0xdd,0x2e,0x68,0x1d,0xab, - 0x15,0x3f,0xe6,0x10,0x68,0x21,0xe5,0x22,0xa8,0xb6,0xbb,0x49,0x34,0xa6,0xf7,0xcd,0x66,0x6f,0x6f,0xc1, - 0x8b,0x52,0x06,0xa1,0xb1,0x78,0xcd,0xcb,0x5a,0xc4,0x50,0xd4,0xcb,0x39,0x91,0x89,0xf9,0xfd,0xcb,0xfe, - 0xdc,0x28,0xf1,0x4d,0x4d,0x81,0xe1,0x7c,0xd4,0x9f,0x53,0xa3,0x87,0x30,0x85,0x9b,0x62,0x64,0x06,0x85, - 0xee,0x78,0xde,0x1d,0x40,0x8f,0xaf,0xa2,0xa6,0xc3,0x7b,0xa3,0x83,0x03,0xad,0xb0,0x89,0x17,0xa5,0x93, - 0x3f,0x77,0x93,0x3f,0xb7,0xc9,0x5f,0xb8,0xc9,0x5f,0x68,0x53,0xc1,0x6b,0xae,0x66,0xb3,0x41,0x46,0xfc, - 0xfd,0x82,0xfe,0x7a,0x9e,0x3a,0x8b,0x3c,0x16,0xd2,0xd0,0x08,0x3d,0xf8,0x66,0x96,0x1a,0x4e,0x46,0x03, - 0xb3,0x4a,0x1e,0x27,0xf0,0x97,0xfb,0x22,0xb9,0x82,0xbf,0xd3,0xe5,0x93,0xbc,0xf8,0x8e,0x72,0x85,0xed, - 0x5f,0xfb,0x6b,0x1a,0x91,0x56,0x4c,0x47,0x25,0x8a,0x19,0xed,0x90,0x48,0xc2,0x35,0x22,0x71,0xc1,0xef, - 0xc0,0xe0,0x55,0x1e,0x7e,0x93,0x3b,0xae,0xed,0x66,0xaa,0xe5,0x8c,0xfc,0x2c,0x67,0xf7,0xf2,0xc1,0x76, - 0x8b,0x98,0xe7,0xb1,0x60,0x07,0xeb,0xb4,0x12,0x5d,0x70,0xb7,0xa9,0xf0,0xa2,0x41,0x60,0x05,0x4d,0xd7, - 0x70,0x4d,0x1f,0x5d,0x80,0xfc,0x34,0x76,0x08,0xe2,0xa6,0xd4,0x84,0x2f,0xc3,0xe9,0x0d,0x1e,0x6e,0x32, - 0xd8,0x68,0x5f,0x31,0x01,0xcb,0x15,0xfb,0x72,0x21,0xba,0xd5,0x58,0xac,0xef,0x8d,0x09,0xf9,0xbe,0x79, - 0x78,0xa7,0x1f,0x80,0x74,0x6b,0xbb,0x29,0xee,0x5b,0x47,0xcf,0x6b,0xac,0x85,0x0b,0x4d,0x23,0xf6,0xe1, - 0xd6,0xd5,0x79,0xbe,0x74,0x9e,0xd7,0xce,0xb3,0xff,0x2e,0xda,0x77,0xc9,0x9c,0x22,0x02,0x7a,0xff,0x98, - 0xd6,0xcc,0xba,0x1b,0xbd,0x53,0xb5,0xca,0xdf,0xd7,0x98,0x85,0x63,0xb5,0x06,0x95,0x5a,0x07,0xdb,0x35, - 0x8b,0x2b,0xdf,0xe3,0x48,0x11,0xc1,0x92,0xdc,0x92,0xdf,0xf7,0x15,0x05,0x7e,0xcf,0x6a,0xa7,0x65,0xc4, - 0xce,0x2f,0x76,0xe8,0x73,0x69,0x4c,0x66,0xb7,0x85,0xcf,0xc2,0x25,0x09,0x1c,0x32,0xcd,0x95,0x73,0x41, - 0x51,0xdb,0x32,0x1d,0x91,0x8c,0xbb,0x77,0xee,0x4a,0x63,0x76,0xb7,0x51,0xd5,0x86,0x45,0xb7,0x20,0x57, - 0x6b,0xde,0x0f,0xe3,0xa3,0xfe,0xaa,0x76,0xe8,0x7d,0x68,0xc9,0xfd,0x52,0xd3,0x33,0x67,0x2f,0x8d,0x61, - 0x0d,0x2b,0xd7,0x40,0x1c,0x73,0x09,0x81,0x42,0xde,0xe1,0xf6,0xb3,0xff,0x18,0x5e,0xde,0xe1,0x42,0x9b, - 0x60,0x87,0x80,0x57,0xf5,0x33,0x5d,0xa5,0xff,0x4c,0x54,0x52,0xf8,0xe1,0xd2,0x65,0x87,0x8d,0xd4,0x13, - 0x01,0x51,0x7f,0xcb,0x8d,0x3a,0x65,0xa6,0xd5,0x28,0xe5,0x29,0x92,0x1f,0xbb,0x3a,0xfe,0x91,0x2b,0x99, - 0x46,0x5e,0x01,0x60,0x60,0x6c,0x24,0x3d,0xb8,0x8b,0x11,0x41,0xa4,0x73,0xd3,0xf3,0x8f,0x84,0x07,0x40, - 0x84,0x14,0xfd,0x9b,0x53,0xdf,0xc1,0x0e,0xee,0x69,0xd7,0xfa,0xec,0x6b,0xf1,0x22,0x9a,0x07,0xa2,0xe9, - 0x6c,0xae,0xac,0x91,0x7c,0x21,0x9a,0xd9,0x17,0x75,0x91,0x2c,0x0d,0x17,0x92,0xbf,0xa3,0xb7,0xf1,0x3a, - 0x76,0xf3,0xd6,0x32,0x51,0xef,0x11,0x9e,0x36,0xe0,0x06,0x09,0x08,0xe7,0xec,0x23,0x9e,0x63,0x53,0x5a, - 0x0b,0x6d,0x82,0xc6,0xf4,0xfe,0xb9,0x3d,0x1d,0x4c,0x09,0x1c,0xf3,0xe8,0x3c,0x1f,0x4e,0x47,0x3e,0x34, - 0x6d,0x37,0x1b,0x76,0xba,0x02,0x75,0x5d,0x7b,0x0d,0xb9,0x8e,0xe6,0xb8,0x74,0x83,0xe8,0x0f,0x55,0xaf, - 0xc1,0x65,0xb3,0xf1,0xc1,0xbc,0x3a,0x92,0x1c,0x07,0x7c,0x26,0x99,0x3b,0x67,0x12,0xdc,0x58,0xb6,0xc6, - 0x35,0xb6,0xb2,0x36,0xeb,0x04,0xd3,0x0d,0xd9,0x68,0x6f,0x5d,0x1d,0xda,0x9d,0x18,0xef,0x34,0x49,0xbf, - 0xa0,0x0e,0xc3,0x77,0x8f,0x26,0x6e,0x4e,0x6d,0x94,0x28,0x61,0x4a,0x84,0xd6,0x35,0x94,0x80,0x1a,0x19, - 0x25,0x3a,0xe9,0xd6,0xf8,0xd9,0xa4,0x71,0xb0,0x55,0x14,0xcb,0xfc,0x22,0x0e,0x23,0x3c,0x0f,0xc2,0x79, - 0x75,0x57,0x4a,0x5f,0xbf,0x4f,0x28,0xad,0x25,0x9e,0xac,0x73,0xa7,0xab,0xb7,0xee,0x12,0x97,0xaa,0x09, - 0x2e,0x21,0x4b,0xb9,0x84,0xd4,0xaa,0x2f,0x61,0xb9,0xd5,0xa6,0xd7,0x2d,0x57,0xbc,0xa2,0xe4,0xac,0xaf, - 0x27,0x83,0x9a,0xa6,0x53,0x75,0xe1,0x6b,0xb4,0x9d,0xf4,0xbd,0x25,0xdc,0xec,0xa2,0x53,0xb6,0xba,0x4b, - 0x99,0x2a,0x9c,0xf0,0xb9,0xc2,0x4b,0x3e,0xec,0xf3,0x5c,0xfc,0x90,0xf0,0x04,0x13,0x24,0x07,0x66,0xf6, - 0x37,0x9b,0x82,0x7a,0xca,0xd8,0x22,0x15,0xd2,0xec,0xf3,0x13,0x15,0xfd,0x16,0x97,0x0d,0xdc,0x79,0xf3, - 0x51,0x8f,0x61,0xbe,0x0d,0xc2,0x82,0x9a,0xa1,0x15,0xb9,0xe7,0x60,0x19,0x4c,0x86,0x76,0xaa,0x59,0x50, - 0xbe,0xc9,0x2d,0x4b,0xd3,0xce,0x3e,0xc7,0xd7,0x33,0x66,0xe8,0x25,0x87,0xd6,0x03,0x2e,0x1b,0x39,0x2f, - 0x25,0xf4,0x69,0x62,0xf2,0x05,0xec,0x7f,0xfd,0xca,0xd3,0x0d,0xb1,0xf0,0xb4,0xb9,0x72,0xff,0xbf,0x05, - 0x0f,0xce,0x7d,0x5d,0xd4,0xfb,0xba,0xd8,0x56,0xd2,0xf8,0x79,0x0f,0x56,0x0a,0xec,0xf5,0x8b,0x43,0x89, - 0xcb,0x4c,0x9f,0xe8,0x2d,0x59,0xbe,0x8a,0x04,0x71,0xb3,0xb9,0xe3,0x69,0x49,0x83,0x77,0xa7,0x4f,0x4d, - 0xd6,0xc2,0xbc,0xd5,0xdf,0xd9,0x94,0x60,0x78,0x3d,0x8a,0xe6,0x62,0x6d,0x5d,0xf5,0x4f,0x08,0xc5,0x9c, - 0x57,0x89,0x0e,0xcb,0xd6,0x5f,0x0d,0x32,0xe0,0x95,0xcf,0xf7,0x44,0x26,0x03,0x24,0x74,0x59,0x8b,0x4e, - 0x7d,0x3e,0xcc,0xed,0xa1,0x6e,0xa4,0x12,0xc7,0x2f,0xd6,0x70,0xc7,0x19,0x16,0xe5,0xe8,0xd3,0x4a,0xbc, - 0x17,0xb1,0x99,0x8f,0xd0,0x8b,0x8e,0x27,0x6f,0xec,0x47,0x61,0x6f,0x0c,0x2d,0xeb,0xaa,0x6f,0x00,0xa7, - 0xb2,0xf5,0x47,0x27,0xc4,0x15,0xd4,0xdb,0xcb,0xc4,0xd3,0x36,0x76,0xa2,0xda,0x3d,0x80,0x89,0x28,0xf6, - 0x38,0x73,0x2f,0x97,0xc4,0x95,0x09,0xe8,0x56,0x5a,0x91,0xa4,0x45,0xe5,0x87,0x03,0x36,0xdd,0x81,0x35, - 0x77,0x73,0xfd,0x15,0xd1,0xf6,0x37,0x46,0xb0,0x47,0xb9,0xe4,0x19,0x78,0xd5,0xf1,0x88,0x38,0xd8,0x34, - 0x30,0x66,0x2a,0x4c,0x34,0xd9,0x4d,0x01,0x6c,0xa9,0xcb,0xf0,0x3b,0x6c,0x03,0x21,0x5b,0x67,0x4a,0x9f, - 0x07,0x34,0x5e,0x88,0xfb,0xd0,0xb7,0x25,0x8f,0x7e,0x8f,0xdd,0xf5,0xf9,0xcd,0x70,0xa6,0xb2,0xb0,0xae, - 0xf3,0x41,0x99,0xfb,0xd7,0x79,0x10,0xfe,0x3d,0xe5,0x53,0x7c,0x75,0x88,0xb0,0xfe,0xde,0x94,0x73,0x34, - 0xa5,0x3f,0x63,0x78,0xed,0x8d,0x97,0xe5,0x53,0xf0,0x05,0xa0,0x46,0x1c,0xbb,0x27,0x19,0x63,0x3f,0x0a, - 0x6e,0x68,0x4e,0x0b,0x61,0x19,0x82,0x07,0xb8,0x86,0xd2,0x8c,0x74,0x6e,0x79,0x85,0x31,0x0c,0x73,0x95, - 0xe6,0xa0,0x1a,0xc4,0x29,0x37,0xea,0x89,0xab,0xe8,0x5b,0x38,0x52,0xa9,0x3c,0x20,0xf7,0x75,0x01,0xb9, - 0xa8,0x59,0xc9,0x05,0x95,0xae,0xfb,0xc6,0xfb,0x97,0x73,0x51,0x13,0xf4,0xa0,0x30,0x41,0x1d,0x4c,0xbb, - 0x0e,0x57,0x6e,0x36,0xa8,0xf1,0xfd,0xca,0xc0,0xa2,0xa5,0x5b,0x1f,0xec,0x14,0xaf,0x2a,0xa8,0xf3,0xc1, - 0x0c,0x29,0xd6,0xe2,0x2e,0x28,0x25,0x96,0xf9,0xbb,0x24,0x5b,0x86,0xb0,0x73,0x02,0xd0,0x06,0x99,0xe1, - 0x0c,0x61,0xf8,0x79,0x57,0x39,0xa5,0x98,0x43,0xd1,0x2f,0xa6,0x18,0x14,0xb5,0xf1,0x20,0xf7,0x5d,0x44, - 0x15,0x43,0xc1,0xd6,0xb2,0x9a,0x4f,0x83,0xc0,0xd9,0xd0,0xc1,0x71,0x46,0x66,0x58,0xb4,0x39,0x8d,0xdd, - 0xb3,0x95,0xe8,0x28,0xc9,0x6c,0x03,0xbe,0xe3,0x19,0xbe,0xb9,0x30,0xeb,0x85,0x95,0x35,0x6d,0x0b,0xf7, - 0x8e,0xd9,0x28,0x42,0x15,0xf0,0xaa,0x26,0xb3,0x80,0x88,0xc5,0x5a,0xc0,0x04,0x49,0xf1,0x3c,0xfd,0x2d, - 0x61,0xf9,0x0e,0x6b,0x71,0xc3,0xb5,0x8e,0xff,0x28,0x8f,0xbe,0xcd,0x89,0x73,0x70,0xaf,0xa2,0xc0,0x2e, - 0x3c,0xcc,0x81,0x15,0x4d,0xb9,0xad,0xdd,0x44,0x60,0xb8,0x23,0xde,0x63,0x74,0xc9,0xe8,0x2e,0x18,0x83, - 0x71,0x94,0x04,0x7a,0x15,0xfb,0x58,0xd2,0x63,0x7e,0xa1,0x33,0x8e,0xbf,0x37,0xd6,0x5b,0xee,0x18,0xe6, - 0x08,0x5a,0x49,0x94,0xda,0x82,0x7a,0x0e,0xfe,0x5e,0x20,0xc8,0xd7,0x3a,0xf3,0xd9,0x82,0x0a,0xa7,0xa2, - 0x87,0xb9,0x7d,0xde,0x35,0xf8,0xb4,0xe6,0x9e,0xac,0x02,0x65,0x22,0x41,0x68,0x3f,0xd0,0xd6,0x59,0x10, - 0x17,0xaf,0x99,0x0f,0xa0,0x99,0xca,0x1a,0xd4,0x7a,0x89,0x21,0x5c,0xa2,0x16,0xb5,0x25,0x19,0x82,0x06, - 0x52,0x42,0x0f,0xa1,0x61,0xae,0x09,0x3e,0x01,0xb0,0xe9,0xc4,0xd2,0x27,0xb1,0x54,0xa0,0xde,0x19,0xab, - 0x44,0x0f,0xf4,0xd7,0x33,0x66,0x8a,0x62,0xfc,0x85,0x17,0x43,0x4d,0x86,0x5e,0x9a,0x81,0x95,0x3c,0xb4, - 0xdd,0x34,0x96,0x0a,0xae,0xe4,0x53,0xc1,0xae,0xbb,0xe9,0x28,0xd0,0x84,0xa1,0x16,0xa9,0x9d,0x93,0x01, - 0xfc,0x1f,0x1c,0xad,0xa8,0x54,0x83,0x9f,0xa8,0xbb,0x9d,0x89,0xbd,0x13,0xe6,0xce,0x89,0x91,0xbe,0x78, - 0x94,0x13,0x9c,0xf9,0x86,0xa0,0x0a,0x34,0x4a,0x24,0x13,0x91,0x45,0xdd,0x8f,0xa6,0xbd,0xfc,0x7e,0x5c, - 0xb9,0xd2,0x5a,0x36,0x32,0xc1,0x75,0x12,0x6f,0x4e,0xd4,0x32,0x2c,0xe1,0x6e,0x69,0x99,0x51,0x79,0xbc, - 0x85,0x90,0xc6,0x45,0x16,0xed,0xc0,0xa0,0x01,0x47,0x5b,0x14,0x56,0x14,0xb9,0xb8,0xfb,0xb3,0x69,0x4f, - 0x33,0x62,0xbe,0xa3,0x4c,0x9f,0xc0,0x28,0x41,0x4e,0x18,0x35,0x10,0x51,0x76,0x41,0xef,0x46,0xfa,0x66, - 0x73,0xaf,0x96,0xcc,0x7e,0xda,0xd9,0x47,0x84,0xa6,0x2d,0x38,0x7b,0xd9,0x96,0xe0,0x80,0x98,0x79,0x17, - 0x07,0xa1,0x25,0xed,0x44,0x55,0x75,0x58,0x10,0x12,0x47,0xa7,0xd2,0x96,0xe9,0x2a,0xee,0xa7,0xcc,0xe5, - 0x41,0x24,0xec,0xf8,0x76,0x54,0x19,0x0e,0xf9,0x09,0xe3,0x5e,0xff,0x9f,0x9b,0x98,0xd2,0xbf,0x65,0x4e, - 0x38,0x6e,0x81,0x9f,0x41,0x2d,0x5c,0x13,0x64,0x22,0x94,0x99,0x9f,0x56,0x21,0xcb,0x6f,0x68,0x03,0x08, - 0xad,0xd1,0x65,0x6e,0x02,0xd4,0x36,0x2e,0x51,0xe8,0x43,0x23,0x65,0x5b,0x0f,0xe9,0x67,0xe7,0x54,0x82, - 0x25,0xe8,0x03,0x49,0xdd,0x08,0xb3,0x84,0xc2,0x20,0x9b,0x52,0x8a,0xef,0x9f,0x42,0xee,0xa5,0xea,0xbb, - 0x99,0x9f,0x0c,0xf2,0x30,0x0d,0x8c,0xd7,0xd3,0x2d,0x2a,0xcb,0x8c,0x24,0x9d,0xbd,0xf6,0xe8,0xe7,0xa8, - 0xba,0x84,0xe2,0x5b,0x72,0x73,0x7d,0x6e,0x33,0x43,0xbc,0x56,0xb3,0x53,0x86,0x83,0x48,0xf7,0x76,0xaa, - 0xd1,0x3b,0xe7,0x23,0x51,0x64,0x36,0x18,0x75,0xcb,0x3b,0x22,0x9a,0x18,0xb7,0x94,0x59,0xe0,0xe9,0x86, - 0xb0,0xc8,0x69,0xe3,0xae,0x62,0xb6,0x99,0x14,0xda,0xf8,0x62,0xb8,0xbf,0x8f,0x47,0x42,0xc9,0x97,0xd1, - 0x9b,0x9c,0x23,0x9c,0x1b,0xc9,0xfd,0xb2,0x97,0x14,0x45,0x4e,0x27,0x83,0x94,0xd6,0x4d,0x99,0x2e,0x96, - 0x51,0xae,0x96,0x9a,0xfe,0xdc,0x40,0xc7,0x23,0x9d,0x25,0x61,0xa2,0xf4,0xd3,0x9b,0xfc,0x89,0x06,0xd5, - 0x12,0x82,0x0f,0xaa,0xa8,0xd5,0xca,0xb5,0xa6,0x11,0x93,0x02,0xa2,0x62,0xc3,0x8c,0x20,0x85,0x00,0xb8, - 0xbe,0x97,0xea,0x38,0x16,0x08,0xf5,0xab,0x88,0x81,0x36,0x39,0x72,0xd3,0x82,0x2e,0x6d,0x2a,0x3c,0x69, - 0x70,0x8a,0x66,0xb4,0x17,0xe1,0x53,0x4f,0xbb,0xd7,0xe3,0xd9,0x53,0x60,0x1f,0x69,0xdb,0xa6,0xf9,0xb5, - 0x23,0x34,0x11,0x92,0x11,0x49,0x51,0x23,0xd7,0xb8,0x22,0x13,0xd5,0x35,0x5d,0xdc,0x4c,0xa9,0xeb,0xe1, - 0x55,0x12,0x9c,0x0b,0xb4,0x35,0x86,0x8e,0x02,0xda,0x8f,0x96,0xb4,0xbb,0x19,0xeb,0x9d,0x6d,0xe0,0x7f, - 0x9f,0x07,0xbd,0x5d,0x78,0x11,0xe6,0xc5,0xd1,0xde,0x1e,0x3c,0xd5,0x2f,0x32,0x1f,0xf7,0x4d,0xb9,0xfb, - 0x4e,0xa7,0x89,0x38,0x6e,0xb5,0xbb,0xf9,0xd1,0x35,0x0a,0xe3,0x10,0xb6,0x56,0xd9,0x84,0x3a,0xb0,0x8c, - 0xa3,0x16,0xe3,0x29,0x93,0xfd,0xe3,0x76,0x55,0x20,0x75,0x6c,0x54,0xc5,0xcd,0x40,0x71,0xb4,0x66,0xde, - 0x49,0x6c,0xa4,0x9b,0x64,0x1e,0x4c,0x90,0xe5,0xdd,0x98,0xa1,0xb5,0x68,0xe2,0xec,0xb2,0xc0,0x44,0x9c, - 0xb6,0xea,0xbb,0x3d,0xb3,0xdd,0x88,0x3c,0x94,0x95,0x2d,0x79,0xba,0xab,0xc0,0x82,0x45,0xe0,0xfd,0x49, - 0x58,0x53,0x1b,0x15,0x81,0xb9,0x83,0x38,0x86,0x98,0xc0,0xba,0xda,0xda,0x73,0x3c,0x73,0xb9,0x5d,0x29, - 0x98,0x6f,0x34,0x40,0x92,0xf3,0x28,0x97,0xdf,0xb1,0x4a,0xcd,0x57,0x65,0xcd,0x23,0x5c,0xc7,0x49,0xfa, - 0xb0,0xa1,0x9e,0xe8,0x53,0xdb,0x79,0x69,0xb8,0x8b,0xae,0xec,0x33,0xf9,0x18,0xef,0xce,0x19,0xc0,0x2c, - 0x23,0xd7,0x9b,0x67,0x01,0x37,0x79,0x37,0xad,0xc2,0xa2,0x34,0xfe,0xa0,0x60,0x28,0x47,0x9c,0x2a,0xb3, - 0x3e,0xc2,0xcc,0x59,0x2c,0x86,0x5f,0x43,0xaa,0x79,0xdc,0xea,0x20,0xee,0xd0,0x40,0xd3,0xcb,0x00,0x3a, - 0x68,0x0d,0x9c,0xef,0x9b,0xf9,0x8a,0x72,0x36,0x04,0x6d,0x2c,0x91,0xca,0x1c,0x3f,0xd6,0x8e,0x7a,0xe0, - 0x64,0x83,0xaf,0x41,0xc5,0x9e,0x92,0xf1,0x9e,0xc6,0x44,0x6f,0xdb,0xa0,0x61,0x7e,0xe0,0x49,0x7c,0xb0, - 0x6a,0x9e,0xe5,0x62,0x1a,0x67,0x8b,0x55,0x26,0xd1,0x1b,0x27,0x44,0xb8,0xf4,0x47,0xa1,0x6d,0x03,0xf9, - 0xe9,0xe9,0xac,0x51,0xe2,0xb7,0x06,0x90,0x95,0xd2,0x10,0x0d,0xe3,0xb7,0x17,0xcf,0x27,0x03,0x79,0x24, - 0x6e,0x30,0x2c,0x7b,0x3f,0xad,0x92,0xa7,0x27,0x7f,0xc9,0x50,0x7a,0xdb,0x08,0x30,0x4d,0xdd,0x5a,0x11, - 0x82,0x00,0x05,0xa9,0x6b,0x7d,0x87,0x35,0x90,0x3e,0xb7,0xf4,0x0c,0x97,0xee,0x39,0x5b,0x27,0xe9,0x27, - 0xa6,0x63,0xbe,0x37,0x5c,0xaf,0x92,0xc3,0x94,0xda,0x19,0x75,0xbc,0x2e,0xfc,0x4c,0x1e,0x1c,0xd4,0x32, - 0xf0,0x0e,0x3e,0x7e,0xe7,0x3a,0xd2,0x4e,0x1a,0x01,0xef,0xe4,0x84,0xb5,0x03,0xa8,0xb2,0x2a,0xe1,0x12, - 0xa2,0xb5,0x9e,0x03,0xac,0xdb,0x79,0xed,0x4e,0xb5,0x11,0x45,0x0f,0x61,0xf4,0x6c,0xec,0x08,0xa7,0xb2, - 0xd4,0x8d,0xfd,0x2d,0xa2,0x3d,0x7b,0xbb,0x6f,0x79,0x3d,0x08,0x13,0x20,0xd8,0xab,0x3e,0x81,0xcb,0xd3, - 0xab,0x19,0xfa,0x7c,0x29,0xff,0x98,0xb5,0xc0,0x32,0x07,0x73,0x84,0x14,0x9b,0x73,0x62,0x62,0xeb,0x0a, - 0xac,0x9c,0x38,0x48,0xd9,0xa8,0x30,0xdc,0x59,0xfe,0x25,0xc7,0x90,0xc7,0x75,0x0b,0xb2,0x85,0x77,0x9d, - 0x0a,0x59,0xb0,0xf7,0xc1,0xec,0xca,0x47,0x9b,0x27,0x6d,0x6d,0x52,0xa2,0xbe,0xb5,0xe1,0x47,0x75,0x43, - 0x0c,0x4a,0x4c,0xfb,0x5b,0x21,0x96,0x48,0xb4,0xde,0x1c,0x6f,0x9f,0x79,0x65,0xa7,0x8d,0x19,0xd1,0x8d, - 0x5a,0x1c,0x28,0x6b,0xba,0x59,0x56,0xdf,0x80,0x3d,0x37,0x69,0x6d,0x86,0x8d,0x63,0x03,0xc9,0x7b,0xa5, - 0x11,0x06,0x10,0x94,0x11,0x84,0xb0,0x17,0x9f,0xf3,0x95,0x61,0x3e,0x4c,0xa2,0xbb,0xac,0xd4,0x49,0x5d, - 0xcb,0x08,0x2c,0x0f,0x4e,0x06,0x27,0xe1,0x71,0x78,0x12,0x66,0x03,0xce,0x37,0x4f,0xe1,0xfe,0xf7,0x6e, - 0x10,0x1e,0x8f,0x06,0x39,0x4b,0x73,0xf8,0x0c,0x15,0x3a,0x13,0x19,0x3b,0x53,0xce,0x87,0x4e,0x8e,0xdf, - 0xdd,0x3c,0x7f,0xd6,0x7c,0xb8,0x2f,0x5d,0xe1,0x91,0x33,0xef,0x76,0x53,0x17,0x76,0x89,0xce,0x27,0xf7, - 0x77,0x70,0x22,0x35,0xbc,0x78,0x2e,0xb1,0x75,0xf8,0xd2,0x50,0x87,0x1e,0xc9,0x8d,0x9b,0x89,0xc8,0x06, - 0xc8,0xd0,0xf7,0x09,0x68,0x8c,0x39,0x97,0x3c,0x18,0x13,0x79,0x59,0x45,0xb1,0x9a,0x0a,0x06,0xc3,0xe9, - 0x22,0xbb,0x12,0xcd,0xc1,0xaa,0x0c,0x98,0x6b,0x59,0x32,0xf3,0xa2,0x38,0x25,0xe4,0x14,0x7e,0xd4,0x7c, - 0xbc,0x5a,0x59,0x0b,0x86,0x7a,0xbc,0x01,0x66,0xfe,0x66,0xec,0x2d,0x1b,0x1e,0x9b,0xb5,0x6f,0x37,0x9b, - 0x65,0x55,0xf9,0xea,0xe5,0xfe,0xab,0xb8,0x3f,0xe3,0xd8,0x0e,0xec,0x0e,0xa8,0x54,0x71,0xe5,0x89,0x5e, - 0xe5,0xbd,0x33,0xc1,0x10,0x78,0x40,0xe9,0xed,0x63,0x65,0xf7,0x24,0xa1,0xf2,0xcb,0xdc,0x81,0x21,0x6f, - 0x21,0x3e,0x61,0x31,0x87,0x95,0x9d,0xb8,0x3e,0x1a,0xf1,0x0c,0xc3,0x8b,0xa4,0x78,0xf0,0x49,0x89,0xe5, - 0xce,0x4d,0x26,0x08,0xfc,0x08,0x5c,0x9a,0xdb,0xc9,0x82,0xca,0xa7,0x0e,0xe5,0x2e,0x8b,0x6b,0x0d,0xbe, - 0x66,0xe4,0x23,0x62,0x72,0xea,0x49,0x52,0x37,0xf1,0x7b,0x4b,0x8b,0x95,0x46,0x1b,0x21,0xb2,0x17,0xe6, - 0x10,0x04,0xc8,0xd1,0xd1,0xd2,0x3e,0x37,0x78,0x30,0x8e,0x42,0x05,0x07,0x53,0x96,0xca,0x36,0x9b,0x65, - 0x75,0x44,0x15,0x8d,0x08,0xf7,0x1c,0x4a,0xbd,0x58,0xd5,0x12,0x2a,0x9e,0x72,0x5c,0xb5,0xbd,0xb2,0x6d, - 0x8f,0x77,0xda,0x76,0x5a,0xce,0x08,0xa9,0x8d,0x13,0xb7,0x2d,0xab,0x37,0x55,0x9a,0x6e,0x74,0x0a,0xa6, - 0xf3,0x83,0x36,0xf2,0xc8,0xac,0x57,0x31,0x9c,0xbe,0x2b,0xc5,0x87,0x2a,0x2c,0x84,0xc3,0xfb,0x5b,0xd7, - 0x73,0x16,0x53,0x06,0x7b,0xc4,0x32,0xf0,0x3c,0x42,0x34,0xed,0x7b,0x59,0x5e,0xd2,0x1e,0x94,0x2e,0xcb, - 0x8e,0xde,0x20,0x3a,0xa9,0xf6,0xcf,0x03,0x2c,0xa5,0x34,0xfb,0xee,0x41,0xab,0x98,0x7d,0x43,0xd7,0x0b, - 0xd5,0x0b,0x60,0xc7,0xef,0xe8,0x46,0xa5,0x84,0x1b,0x12,0x22,0xa9,0xa1,0x9d,0x18,0xb3,0xd0,0xec,0xc8, - 0xc8,0x66,0xd1,0x0e,0x61,0x23,0x7c,0x5c,0x05,0x83,0x38,0xca,0x43,0x71,0x06,0x0a,0x2d,0xf6,0x1e,0x07, - 0x5e,0x5c,0x82,0x94,0x30,0x22,0x12,0xab,0x9b,0xf7,0x68,0x79,0xd2,0xbe,0x7e,0x83,0x4f,0x61,0xac,0x34, - 0x51,0x83,0xb9,0xe8,0x74,0x09,0xd3,0x22,0x75,0x11,0xcd,0xa4,0xdc,0x82,0x1e,0x74,0xb9,0x09,0x3d,0x22, - 0x03,0xfb,0xad,0xda,0x6c,0x16,0x9b,0xcd,0x04,0xac,0xd8,0x85,0xf4,0x8f,0x2f,0x5c,0xd4,0x54,0x5d,0x43, - 0xae,0xa8,0x81,0x08,0x9f,0x45,0xa5,0x96,0x7e,0x9a,0x28,0x76,0xfe,0x34,0xba,0x16,0x80,0x06,0x3d,0x13, - 0xc0,0x7d,0xaa,0x86,0x17,0xd6,0xa3,0xa4,0xbf,0x8e,0x26,0x6a,0x8e,0x9d,0xc5,0xbf,0x8c,0xe0,0x23,0x69, - 0x2e,0xe7,0xaa,0xcb,0x40,0xad,0x69,0x44,0x75,0x34,0x5e,0xb3,0xfb,0xf7,0x75,0x50,0x65,0x5b,0x07,0x50, - 0x52,0x00,0x03,0x65,0x56,0xe2,0x75,0x6d,0x1d,0x6a,0xe6,0xce,0xf7,0x4c,0xe0,0xdc,0xce,0xbf,0x61,0xa0, - 0xff,0x86,0xd9,0x58,0x1f,0x96,0x9d,0x2a,0x88,0xb5,0x96,0x5a,0xeb,0xf9,0x5b,0xae,0x16,0x60,0x27,0x3a, - 0x62,0x3b,0x23,0xb6,0x64,0xb5,0x40,0x1b,0xbc,0xa0,0xab,0x1d,0x53,0x8e,0x63,0x78,0xd2,0x6b,0xc2,0xa3, - 0xf9,0xf1,0xac,0x1a,0x21,0xb8,0x54,0xa8,0x2a,0x32,0xa7,0xda,0x17,0xcd,0x3a,0x20,0x38,0x94,0xf8,0x3a, - 0x5f,0x9d,0x84,0xf2,0x7b,0x4f,0x7e,0x3f,0xff,0x52,0x7e,0xef,0x7d,0xae,0x7f,0xbf,0xd2,0xe9,0x7f,0x09, - 0x6d,0x60,0x30,0x29,0xf0,0x85,0xce,0xa0,0x0b,0x7c,0xfe,0x45,0x68,0xf4,0x83,0x27,0xd0,0x55,0x97,0x5c, - 0xf7,0xee,0xea,0xea,0xe5,0xe7,0xe4,0x58,0xff,0xea,0xd6,0x4e,0xbe,0xd4,0x09,0x5f,0x7e,0x71,0xf7,0xcf, - 0x3a,0xcf,0x5f,0xee,0x9a,0x42,0xf4,0x74,0xcf,0x54,0x7a,0xb5,0xf4,0xec,0x05,0xdc,0x83,0xe8,0xab,0x3f, - 0xd3,0x51,0xe3,0x7e,0x74,0x72,0xf7,0xee,0x66,0x43,0xaf,0x5f,0x7e,0xc1,0xaf,0x5f,0x1d,0x0f,0x74,0xe3, - 0x21,0x25,0x7e,0xfe,0x15,0x27,0x7e,0xf1,0xe7,0x81,0x27,0x96,0x0c,0x5e,0xe8,0xf1,0xc5,0x4b,0x4b,0xa0, - 0x10,0xed,0x2b,0x2f,0x32,0x02,0x40,0x13,0xdc,0xde,0x3b,0xf6,0xf6,0x9c,0xd0,0xc2,0xc7,0x90,0x77,0xa5, - 0xcb,0x17,0xf1,0x0b,0x09,0x99,0x06,0x89,0xb5,0x7a,0xa2,0xef,0x13,0x83,0x01,0xd1,0x58,0x3a,0x4c,0xc2, - 0xec,0xc4,0x85,0x78,0xa0,0x25,0x2a,0x36,0x29,0xb1,0xf2,0x4d,0xaa,0xee,0xde,0xe7,0x7b,0xac,0x4c,0x76, - 0xef,0x2b,0xfc,0x0e,0x12,0xdc,0xa7,0x8a,0x0a,0x8f,0x82,0x6b,0x71,0xef,0x33,0xaf,0x9b,0x6a,0xaf,0xb8, - 0x6a,0x6d,0x48,0x5a,0x75,0x6c,0x32,0xfe,0x2f,0x08,0x8b,0xbd,0xa1,0xf0,0x65,0x1d,0xed,0xaa,0xce,0x53, - 0xd3,0xdd,0xfc,0x97,0xf1,0xf2,0xe5,0x55,0x66,0x22,0xdd,0xd1,0x0a,0x6a,0xe3,0x20,0x9f,0x66,0xe5,0xcc, - 0x89,0xd6,0x85,0xd7,0xde,0x63,0x84,0x96,0x49,0xe7,0x09,0x71,0xf7,0xf3,0xb8,0x84,0xf2,0xc2,0x27,0x16, - 0x14,0x37,0x7a,0xba,0xd8,0x79,0x74,0x23,0x8e,0x2c,0x1e,0x35,0xa2,0x44,0xd6,0xfc,0x0a,0xb9,0x27,0xb4, - 0xb2,0x87,0x05,0x15,0xc9,0x0f,0x5f,0xd9,0x9d,0x9d,0xe1,0x71,0x70,0xb3,0x0d,0x4d,0x48,0x20,0x5e,0xe1, - 0x37,0x36,0xb3,0xa5,0x7a,0xd4,0xa3,0xe7,0x3a,0x5d,0x0a,0x05,0x66,0xd7,0x42,0xa4,0xc3,0xbe,0x49,0x6d, - 0x75,0x3c,0x93,0xd0,0x0e,0x9f,0x28,0x87,0x59,0x29,0x59,0xed,0xdf,0xdd,0x53,0x92,0x96,0x10,0x88,0x12, - 0x53,0x14,0x95,0xb2,0xf3,0xde,0x67,0x4c,0x07,0x9e,0x27,0xcb,0x65,0x2c,0xfe,0x6b,0x64,0x0b,0xd3,0xbb, - 0x08,0x35,0x23,0x5e,0x9f,0xce,0x9c,0x31,0xaa,0x2a,0xe5,0x67,0xe4,0x4a,0xb4,0x57,0x2e,0xe9,0xea,0x15, - 0x92,0xb0,0x17,0x40,0xa7,0xd8,0x0f,0x9c,0xcc,0xac,0x94,0x30,0x2e,0xd2,0xf3,0x04,0x9f,0x1e,0xc1,0x28, - 0x87,0xc3,0xff,0xf0,0xa9,0x4a,0xb2,0x99,0x1c,0xe2,0x89,0x6d,0x5b,0x05,0xc4,0xd0,0x20,0x14,0x58,0xf1, - 0x0c,0x14,0x79,0x5e,0x9a,0x28,0xf3,0x78,0x16,0xba,0xb6,0x9b,0x52,0x83,0x35,0xdf,0x54,0x72,0x5f,0x90, - 0x21,0x6a,0xe6,0xd5,0x33,0x05,0xa0,0xcd,0x39,0xaa,0xef,0x4e,0x8e,0xea,0x93,0xcd,0x4b,0xfc,0xd7,0x39, - 0x9d,0x4a,0x04,0x90,0x2d,0x05,0x6a,0xdf,0x4d,0xa9,0x25,0x9d,0xf2,0x32,0xd1,0x28,0x9d,0xb1,0xe9,0xc1, - 0xcf,0xac,0xe0,0xdd,0x2c,0xdc,0x9a,0x8d,0xbd,0xea,0xd6,0xb1,0xa5,0xf8,0x28,0xb6,0x14,0xe0,0x07,0x77, - 0xb1,0xc5,0xa2,0x02,0xcf,0xff,0x32,0x2a,0xda,0x27,0x1e,0xf7,0xde,0xcf,0xcd,0x24,0xfc,0x8f,0xcd,0xbf, - 0x72,0x76,0x10,0x0d,0xb6,0xeb,0x8c,0xaf,0xe6,0xec,0x0b,0x5f,0x51,0x8b,0x03,0x3f,0x86,0x6f,0xad,0x43, - 0xfb,0x55,0x87,0x04,0xfa,0x7e,0x60,0xbd,0xba,0xff,0x71,0x1c,0x1a,0xf8,0xee,0x8a,0xd8,0xc1,0xa0,0x3f, - 0x3e,0x5c,0x1c,0xb4,0xe5,0x82,0x03,0x17,0xa3,0x3a,0x1a,0x82,0xe9,0x51,0xed,0x7d,0x07,0xa7,0xdd,0x25, - 0xea,0x66,0xfc,0xa7,0xba,0x63,0xfc,0xb6,0x3d,0x6e,0xc6,0x94,0x35,0x8e,0xdb,0xa4,0x6b,0xfe,0x4e,0xe1, - 0x5a,0x8f,0x7a,0xab,0xec,0x43,0x2d,0x6b,0x51,0xe6,0x4e,0x1d,0x2d,0x58,0x56,0xab,0x56,0xa7,0xf9,0x8d, - 0x1a,0x9c,0x4f,0xa6,0x86,0x1a,0x62,0xb4,0xa3,0x4b,0xb3,0x96,0xda,0x47,0xb7,0x27,0x12,0xe3,0x6d,0xbb, - 0x55,0x57,0xc6,0xc5,0x2a,0x52,0x2b,0xb7,0x8b,0xf1,0x0c,0xf6,0xd9,0xe2,0x08,0x91,0x55,0xd2,0x6e,0x5c, - 0xb7,0xb3,0xfa,0x06,0x3f,0x14,0x17,0x87,0x5b,0x0e,0x1f,0x5e,0xcf,0x61,0xd8,0x30,0x5c,0xf9,0x19,0x46, - 0xd4,0xcd,0xb0,0x55,0x7c,0x83,0xbd,0xd4,0x89,0x43,0xe6,0xfb,0xac,0xe7,0xd7,0xed,0x8e,0xe7,0xc5,0x1a, - 0x37,0xcf,0xdd,0x82,0xb0,0x41,0x62,0x5d,0x20,0xe4,0x6b,0x65,0x43,0x86,0xef,0x0e,0xe2,0x48,0xf0,0x0b, - 0x3f,0x17,0xc1,0xfc,0x47,0x7d,0xbc,0xea,0x18,0x6e,0x91,0xfc,0xd8,0x58,0xb9,0xc4,0xc2,0x5b,0x37,0x9b, - 0x79,0x5f,0x04,0xe8,0x85,0xb0,0xd2,0x08,0xbd,0xa1,0x59,0xe9,0x15,0x44,0xce,0x33,0x7c,0xe0,0xb1,0xb1, - 0x99,0xe7,0x45,0xe3,0x84,0x36,0x0b,0x06,0x33,0x13,0xa1,0xf7,0x38,0x74,0xf7,0xb8,0x59,0x60,0xd3,0x59, - 0xa7,0xba,0x71,0x4c,0x72,0xfd,0xe7,0x61,0x19,0x55,0xd1,0xc6,0x2b,0xed,0x1f,0x27,0x02,0x39,0x77,0xc1, - 0x9c,0x77,0xaa,0x20,0xe5,0x07,0x07,0x1e,0x5f,0x04,0x6e,0xb7,0x55,0xa0,0x84,0x83,0x83,0xdc,0xb6,0x4c, - 0xe7,0xd0,0x05,0xd5,0xee,0x7b,0x4f,0x2f,0x3a,0x32,0x8a,0x0e,0xa0,0xdd,0x49,0x97,0x1d,0xf8,0x86,0xe9, - 0xd0,0x1e,0xd0,0x61,0x58,0x77,0x74,0xac,0xfb,0x65,0x07,0x06,0x0d,0x9d,0xcb,0x78,0x9d,0x48,0x01,0xc9, - 0x4f,0x99,0x7b,0xb8,0xa3,0xdd,0x1d,0xfb,0x2e,0x4d,0x87,0x74,0x65,0x45,0x67,0x3e,0x78,0xf9,0x6c,0x42, - 0xa4,0x6d,0x07,0x58,0xc1,0x53,0xd9,0x8c,0x75,0x27,0xe9,0x64,0xde,0x5e,0x9f,0x88,0x32,0x16,0x03,0x0f, - 0x46,0x51,0x4d,0xb0,0x84,0x94,0x9a,0xf4,0x57,0x90,0x64,0x41,0x36,0xa9,0x5d,0xf4,0xab,0x54,0xc5,0xbd, - 0xd4,0x97,0x40,0x11,0x58,0x1a,0xef,0xa3,0x1d,0x42,0x31,0xa6,0x96,0x68,0x73,0x69,0xb9,0xeb,0xd8,0xf6, - 0xdf,0x3b,0xbc,0x5f,0x0a,0x6b,0xc0,0x45,0x0e,0xe1,0xb6,0x2b,0x67,0xaf,0x8c,0x82,0x9d,0xda,0xe0,0x0a, - 0xce,0x9c,0x4b,0xa1,0x22,0xf7,0x41,0x75,0x3b,0x55,0xc0,0x45,0x92,0xa3,0x73,0x67,0x84,0xc7,0xe5,0x30, - 0xeb,0x76,0x59,0xfe,0xe2,0xdd,0x78,0xa2,0xf5,0x58,0xe0,0x8e,0xc0,0xb9,0x90,0x67,0x95,0x12,0x4f,0xab, - 0x70,0x15,0xb8,0xb4,0x40,0x5d,0x22,0xbc,0xa1,0x07,0xb1,0x9a,0xd0,0xf5,0x78,0x5b,0xd6,0x3b,0xe9,0x07, - 0x79,0x97,0xf8,0x6e,0x9b,0x2c,0x62,0x88,0x7d,0x61,0xc3,0xf3,0x60,0xe0,0xb1,0x73,0xd0,0xf0,0x5d,0x95, - 0x00,0x62,0x32,0x21,0xf6,0x7f,0x25,0x4e,0xe4,0xbc,0xbe,0xe9,0x82,0x34,0x9b,0x8b,0xfb,0xea,0x78,0x2b, - 0x7a,0xef,0xde,0xff,0xe2,0xbe,0x0e,0xa8,0xcf,0x60,0xfe,0x69,0x46,0xc0,0xe9,0x53,0x93,0x41,0x88,0xbf, - 0xe6,0x18,0xf2,0xd1,0x91,0x24,0x90,0xa6,0xab,0x06,0x54,0xa3,0xa2,0x26,0x77,0xb6,0xc0,0x27,0x48,0x4a, - 0xa4,0xe8,0xa6,0x38,0xc5,0x0c,0x87,0x23,0xca,0xed,0x8e,0x04,0xb0,0x35,0x2f,0xd0,0xa3,0xb6,0x77,0x4f, - 0x0c,0xba,0x7e,0xda,0x9c,0x94,0x98,0x06,0x94,0x8e,0xcc,0x29,0x30,0xd6,0x77,0xca,0x38,0x6e,0x49,0xff, - 0xc3,0x42,0xc7,0x3d,0xd5,0x1a,0x73,0xa2,0x92,0xca,0x87,0x39,0xdd,0x11,0x9d,0x21,0x1b,0x32,0xa7,0x43, - 0x3c,0xbe,0xc9,0xab,0x4e,0x8e,0x83,0x51,0xad,0x80,0xe9,0xad,0xfc,0x8a,0x9a,0xb7,0x2d,0xae,0x4b,0x11, - 0x3f,0x9c,0x76,0xbb,0x16,0xa8,0x5b,0x8e,0x4d,0x27,0x37,0x56,0xfb,0xd1,0xd1,0xaf,0xfe,0xe9,0x24,0xe8, - 0x1e,0xa9,0x77,0xfc,0x78,0x85,0xc7,0x47,0x04,0xa6,0x87,0xd1,0x89,0x7a,0x1d,0xdd,0x55,0x6f,0xa2,0x7b, - 0xea,0x25,0xbd,0xbf,0x8d,0x3e,0x57,0xcf,0xa2,0x2f,0xd4,0x37,0xd1,0x97,0xea,0x55,0xf4,0x67,0xf5,0x34, - 0xfa,0x8b,0x7a,0x8c,0x6b,0xb6,0xc7,0xc3,0x97,0xa3,0xe8,0xe6,0x6a,0x19,0xd2,0xaf,0xe2,0xb3,0x61,0x38, - 0xbc,0xa7,0x1e,0x8d,0x94,0x37,0xf4,0xc2,0xe1,0xdb,0x91,0xa2,0x4d,0x3e,0x1c,0xbe,0x1a,0x6d,0xd5,0xe3, - 0xe1,0x89,0xce,0x79,0x42,0x5f,0x7b,0xf4,0xf5,0x6e,0x6b,0xae,0xbb,0x3a,0xd7,0xdd,0x7a,0x7d,0xc7,0xfa, - 0x57,0x8e,0x9a,0xf2,0x82,0xec,0xf7,0x28,0xfb,0xc7,0xf2,0x29,0x6e,0x55,0x3d,0x34,0xed,0xf2,0x13,0xb7, - 0x8c,0x27,0x69,0x9b,0x9e,0x50,0xdd,0x5b,0xaa,0xce,0xbb,0x43,0x9f,0x9e,0xa1,0xdc,0x1d,0xef,0x4e,0x38, - 0xfc,0xa6,0x1a,0x8e,0x7a,0x4d,0x4f,0x23,0x0f,0x95,0xbd,0x91,0x82,0x4f,0xd9,0x4a,0x0f,0x9f,0xa4,0x3b, - 0xcf,0x4c,0x79,0x24,0xd4,0x72,0x3c,0xd3,0x39,0xbe,0xa1,0x1c,0x5c,0xef,0x4e,0x0e,0x34,0x24,0x13,0xf3, - 0x84,0x2d,0x99,0x89,0x55,0x2b,0x56,0xc9,0x86,0x2d,0x34,0x37,0x87,0x83,0xe1,0xe9,0xa4,0x37,0xea,0x6e, - 0xee,0xb0,0xeb,0xaa,0x3b,0x1b,0x8f,0xbd,0x59,0x79,0x01,0xe5,0xdb,0x3f,0x52,0x2f,0x6e,0x21,0x5b,0xed, - 0x54,0xeb,0x85,0x43,0xb5,0x18,0xcb,0x5e,0xd1,0xa6,0x56,0x23,0x41,0x8e,0xb7,0x63,0xa9,0xc8,0x21,0x58, - 0xd0,0xec,0x4c,0x76,0x73,0x9b,0x58,0x98,0x22,0xdc,0xc2,0x82,0x5b,0x45,0x87,0x27,0xb4,0x35,0xbe,0xe4, - 0x20,0x75,0x97,0x40,0x17,0xac,0x99,0xcb,0xe1,0xc3,0x51,0xcd,0x5c,0xc3,0xec,0x53,0x19,0xab,0xe1,0x08, - 0xf6,0xc2,0xb3,0xa0,0x7c,0x80,0x05,0xfe,0xf0,0x51,0x4b,0x09,0xe8,0x32,0x0d,0xb2,0xa8,0x08,0xb3,0x2e, - 0x31,0xfe,0x94,0xe9,0x75,0x2d,0x13,0x0a,0x11,0x67,0x74,0x41,0xb8,0x4f,0xdf,0xde,0xd4,0xbe,0x41,0xd4, - 0xf5,0xe0,0x38,0xb8,0x38,0x3c,0xa4,0xee,0xbd,0x55,0x92,0xd5,0x5e,0x2c,0xa2,0xb7,0x7b,0xb8,0xc7,0xf0, - 0xb3,0x68,0xc2,0x9e,0xee,0xac,0x24,0x14,0x7d,0x87,0xda,0x64,0x5f,0xcb,0xb8,0x67,0xec,0xd9,0x7d,0xd5, - 0xed,0xc2,0xed,0x21,0xeb,0xf9,0xc0,0x55,0xe2,0x0a,0xd7,0x0f,0x7b,0x8d,0xb3,0x37,0x7f,0xe8,0x9e,0x30, - 0xb5,0x86,0x2c,0xe9,0x19,0xed,0xca,0x77,0x58,0xa3,0x70,0xb3,0xc1,0xfb,0x37,0x07,0x07,0x84,0x16,0x78, - 0x37,0x24,0x06,0xd5,0x12,0xb5,0xa6,0x8a,0xbb,0x89,0xee,0x23,0xc2,0x21,0xfb,0x81,0xb6,0xcb,0x5a,0x40, - 0x8d,0x17,0x7c,0xce,0x32,0x7a,0x3c,0x9c,0x8d,0x02,0xa2,0x3b,0x9b,0xcd,0x92,0x15,0x36,0x37,0x9b,0xa7, - 0x10,0x27,0x3f,0x35,0x1a,0x3d,0xdc,0x26,0x1c,0xd5,0x2b,0x3f,0x8e,0x2e,0x87,0x39,0xad,0xc1,0x91,0xc8, - 0x57,0x2c,0x2c,0xe9,0x39,0xa7,0x45,0x17,0x0c,0x70,0x23,0xc2,0xc3,0xa7,0xf3,0x4f,0x50,0xab,0x20,0x8a, - 0x5e,0x99,0xbe,0x8d,0x45,0x4d,0xcd,0x32,0xa4,0x06,0x47,0xa8,0xf7,0x2a,0x01,0xdb,0xb5,0x55,0x2e,0x92, - 0x4d,0x93,0x12,0x28,0xc6,0xb2,0xdb,0xc6,0xde,0x08,0xb1,0x78,0x52,0x39,0x54,0xad,0x6e,0x54,0x0a,0xe3, - 0x0d,0xdb,0x62,0x28,0x7c,0xcc,0xe2,0xee,0x94,0x36,0xa7,0xa6,0x04,0xfc,0xe0,0xe0,0xd8,0x11,0x76,0xd7, - 0xea,0xaa,0x14,0x59,0x8c,0x7f,0x6c,0x04,0xc2,0xd6,0x2e,0xb3,0xf3,0xbe,0x71,0x94,0x1d,0x0f,0xe1,0x2a, - 0xdb,0xb9,0xcc,0x80,0x9e,0x58,0x70,0x23,0xde,0xa3,0xb4,0xe1,0x40,0x1c,0x8d,0xd5,0xb2,0x22,0xa6,0xb1, - 0xac,0xd6,0xe7,0xb7,0xac,0x9c,0x7e,0x75,0xfe,0x03,0x9c,0xa0,0xd9,0x6a,0x5d,0xf8,0x0a,0xf3,0xb8,0xd9, - 0x78,0x49,0x76,0xf8,0xd7,0xd7,0x1e,0x8b,0xc6,0xea,0x67,0xed,0xea,0x1b,0x2e,0x95,0xcc,0x11,0x97,0xd9, - 0x4b,0x1d,0x73,0xdc,0x91,0x17,0x49,0x3a,0xec,0x22,0x33,0x47,0x1c,0xc4,0xa9,0x7d,0xed,0x7a,0x7a,0x2e, - 0xb7,0x75,0xf2,0xe6,0x88,0x08,0x2a,0x99,0xc0,0x66,0x83,0x83,0xf2,0x7b,0x9d,0x65,0x9e,0x2e,0xe1,0xe0, - 0x03,0x6d,0xcb,0x93,0x48,0x41,0x8d,0x37,0x68,0x16,0x40,0xb0,0x1c,0xa2,0x96,0x8e,0x53,0x6d,0xe4,0x9c, - 0x7b,0xe5,0xc8,0xbb,0xb7,0x27,0x4f,0xa6,0x75,0x3d,0x50,0xd6,0x65,0x72,0x32,0xbb,0xe9,0x52,0xc8,0x4d, - 0x31,0x2d,0xb4,0xca,0x1e,0x2c,0x11,0x29,0xdb,0xa5,0x0e,0xc4,0xe2,0xee,0xdd,0xf2,0x49,0xd7,0x5b,0x07, - 0x28,0xae,0xd1,0xc1,0xd8,0xcb,0x37,0x17,0xa8,0xf5,0x2f,0x38,0x0d,0xb0,0x7c,0xe1,0x45,0x55,0x4d,0x5c, - 0x39,0x01,0x20,0x22,0x28,0xc9,0x7c,0x65,0xd0,0xc0,0x7c,0x4d,0x55,0xfc,0x3d,0x0c,0x36,0xdb,0x6c,0x0a, - 0x3f,0x91,0x0a,0x6b,0xcb,0x45,0x62,0x5f,0x1b,0x53,0xf3,0x33,0xf8,0x7a,0xfd,0xe9,0xb9,0x6f,0x2e,0x2f, - 0x33,0x55,0xc7,0x9a,0x10,0x5e,0x17,0x05,0x55,0x88,0xed,0x6a,0x20,0x49,0x18,0xab,0x1a,0x7a,0x84,0xd0, - 0x5d,0x51,0x3f,0x46,0x37,0xeb,0x79,0x78,0xb3,0xad,0x0a,0xd2,0x73,0xb3,0x24,0x25,0xd5,0x8b,0xde,0x54, - 0x27,0xbc,0x6d,0xb3,0x0f,0xa8,0x4b,0x70,0x86,0x3f,0x1a,0xb0,0xe1,0xa5,0x75,0x06,0xe8,0xc3,0xd6,0x6c, - 0x2e,0xcf,0x5d,0x57,0xc1,0x32,0xd8,0x96,0xe5,0x75,0x69,0x7c,0x37,0x4b,0x7d,0xfd,0xc6,0x3b,0xa4,0x2f, - 0x15,0xda,0xd3,0xec,0x10,0x0f,0x89,0x89,0x81,0x52,0xab,0x6a,0xe6,0x4d,0xb6,0xca,0x6d,0xb4,0xf5,0xb8, - 0xbf,0xeb,0xe1,0xa0,0x3e,0xd1,0x95,0xba,0x98,0x5b,0xd5,0x2d,0xb2,0x83,0x5a,0x65,0x7b,0xf5,0x23,0x0c, - 0x9f,0xf6,0xdc,0x58,0x23,0x99,0x63,0x7d,0x29,0x11,0xe8,0xb2,0x07,0x87,0x27,0x81,0x5c,0x33,0x8f,0x21, - 0xf3,0x84,0x72,0xa3,0xdf,0xd2,0x27,0xd5,0xec,0x4e,0x4d,0xb6,0xd5,0x34,0x98,0x14,0x71,0x62,0xcd,0x85, - 0x37,0x01,0xaf,0xb7,0xcf,0x85,0x7c,0x6f,0x1f,0x55,0xd7,0x62,0x49,0xb8,0x86,0x07,0x0d,0x60,0xb8,0x76, - 0x08,0x97,0xad,0xbe,0x8c,0x9b,0x45,0xe8,0x20,0xc8,0x4e,0xcb,0x9b,0x89,0x3b,0x11,0x2a,0xb6,0xea,0x66, - 0x92,0x24,0x0b,0x51,0x2a,0xde,0x1d,0x9d,0x16,0x63,0xd6,0xb7,0xfa,0xbd,0x8a,0x34,0xd1,0x42,0xab,0xe8, - 0xd7,0xce,0x8e,0x53,0x9a,0xa0,0x23,0xf3,0x3a,0x1c,0x58,0x40,0xe6,0x00,0x43,0x10,0xdf,0x81,0x06,0xfb, - 0xeb,0xd8,0xa7,0xe3,0x2f,0x8c,0x4b,0xcc,0x57,0xf6,0xa3,0xdf,0xe8,0xbf,0xba,0x49,0xe7,0xc4,0xaa,0xa7, - 0x90,0xcd,0xcb,0x10,0x7e,0x44,0xc5,0xb4,0xde,0xdd,0x3e,0x37,0x26,0x01,0x99,0xcc,0xda,0xbc,0x25,0x6b, - 0xac,0x11,0x80,0xbe,0x6a,0x61,0xf8,0x92,0x3d,0x76,0xff,0xd8,0xdc,0x27,0x3e,0x5e,0xbe,0x7e,0x11,0x61, - 0xaa,0xa9,0x2d,0xfe,0x8f,0x57,0xe2,0x5e,0x4a,0x98,0x2a,0x04,0x2e,0x1f,0x19,0xab,0xb9,0xd9,0xab,0xf2, - 0x2f,0x93,0xb2,0x65,0xf5,0x61,0x36,0x18,0xde,0xfa,0xad,0x02,0x7b,0xc9,0x8d,0xd5,0x29,0xd2,0xc7,0x1a, - 0xad,0xe7,0x6e,0x29,0xff,0xa9,0x9d,0xa8,0x17,0x33,0x9d,0xd1,0xc4,0xf0,0x83,0xbd,0xd0,0x79,0xdc,0xec, - 0xed,0x8d,0xda,0x7d,0x99,0xbb,0x69,0x68,0xeb,0x07,0xeb,0xb6,0xb9,0xea,0x45,0xda,0xeb,0x77,0x58,0x03, - 0x64,0x6f,0x25,0xd8,0x1f,0x6c,0xad,0xb5,0xc4,0xed,0x55,0xb5,0xf7,0xe2,0x96,0x1b,0x86,0xfa,0x92,0x77, - 0xd1,0xfd,0x43,0xd3,0x6b,0x16,0xcf,0x6e,0xe9,0x06,0xb2,0x7f,0xa8,0x92,0xc6,0x42,0xda,0xad,0xab,0x86, - 0xf3,0x1f,0xaa,0xa9,0xb6,0x96,0x1a,0xf5,0x40,0x53,0x4c,0xfb,0x6a,0xaa,0xe9,0x6a,0x22,0xa4,0x95,0xad, - 0xa9,0x80,0xa8,0x42,0xb0,0x4e,0x63,0x83,0x16,0xfa,0x1b,0xcc,0x91,0xab,0x78,0x66,0xcb,0x86,0xac,0x85, - 0x3b,0x82,0xc9,0x45,0x98,0x35,0x1a,0x4b,0x97,0x4f,0x5c,0x4e,0xac,0xc5,0xd1,0x0d,0x0c,0x9d,0x0a,0xdf, - 0x21,0x99,0xba,0xa1,0x1a,0x0b,0xd7,0xac,0xb5,0x5d,0x0c,0x96,0x98,0xb3,0xa1,0x66,0xf9,0x77,0xa8,0x2f, - 0xf4,0x21,0x2a,0xa6,0xaa,0xce,0x03,0x25,0x3a,0x4c,0x6e,0x9d,0xed,0x5f,0xd9,0x43,0xc3,0x8a,0xcf,0x05, - 0x1c,0x43,0x97,0xb5,0x4e,0xfd,0xa4,0x7e,0x9e,0x70,0xd4,0x4c,0xcd,0x65,0x2a,0x8c,0x42,0xe8,0xc4,0x54, - 0xcb,0xb7,0x35,0x47,0xc0,0x1d,0x85,0xaf,0x55,0xad,0xba,0x71,0xb4,0xb2,0xc6,0x40,0x95,0x59,0xf3,0xbf, - 0x84,0x5e,0xc0,0x3e,0x47,0xa8,0x6a,0x2d,0x89,0x4f,0xb3,0x77,0x3c,0xf4,0xb1,0x1e,0x3a,0x2c,0x38,0x4d, - 0x38,0x15,0x0e,0x20,0x30,0xe6,0xe4,0x70,0xdc,0x80,0x21,0x0a,0x36,0xe7,0xdf,0x8d,0xfd,0x1c,0x65,0x0a, - 0x1a,0xcb,0xe2,0x7d,0xe0,0xc8,0xff,0x97,0x70,0x78,0x7a,0x75,0x7a,0x78,0xb6,0xe9,0x8d,0xba,0xc1,0xd1, - 0xb4,0xd2,0x14,0x1f,0x43,0x15,0x62,0x89,0x33,0xea,0xb2,0x71,0x35,0xcd,0x61,0x96,0xc5,0x42,0x6a,0x39, - 0x1c,0x23,0x36,0xcf,0x4a,0x9b,0x5d,0xfb,0x77,0xab,0xf0,0x5b,0xce,0x5c,0x72,0x2f,0x66,0xd4,0x0b,0xaf, - 0x88,0xaf,0xb4,0x00,0x4f,0x43,0x89,0x98,0xce,0x2a,0x51,0x38,0xf1,0x50,0xbc,0x2e,0xe8,0x5a,0x6a,0x78, - 0x06,0x6f,0x03,0xce,0xb6,0xcc,0x68,0xc5,0xce,0x8b,0x3a,0xdf,0x40,0x19,0x1d,0xe2,0x36,0x31,0xc1,0x4e, - 0x26,0x1d,0x56,0x4f,0xd7,0x5e,0x09,0x17,0x51,0x55,0xa0,0x7f,0x11,0x2d,0x74,0x88,0x13,0xee,0xdb,0xa2, - 0xb1,0xf5,0x21,0x7c,0xb8,0x88,0xe7,0x17,0xcd,0x2b,0xcc,0x99,0x06,0x24,0x1d,0xe6,0x7c,0x33,0x4c,0x67, - 0xd5,0xd1,0x30,0xe1,0x61,0xb6,0x40,0x1c,0x76,0x6b,0xab,0xbc,0x52,0x17,0x41,0x18,0x57,0xc7,0xbe,0xfa, - 0x64,0x19,0x0d,0xf3,0x76,0x4f,0x90,0x75,0xa2,0xda,0xab,0x43,0xd4,0x06,0x4d,0xa9,0xb4,0x7f,0xa2,0x64, - 0x50,0x68,0xbb,0x30,0x04,0x36,0x6f,0xb4,0x65,0x87,0xbc,0x43,0x1d,0xcc,0xe2,0x92,0xd3,0xec,0xee,0xf4, - 0x25,0x0a,0x96,0x9f,0x36,0x9f,0x95,0x3e,0x13,0x22,0x0c,0x0a,0xbf,0xad,0x04,0x9d,0x8c,0x86,0x59,0x55, - 0x42,0x47,0x86,0x1f,0xef,0x20,0xeb,0x0e,0xa5,0x72,0xe2,0x3e,0x69,0x6f,0x42,0x4d,0x15,0xc2,0xc3,0xcf, - 0xfb,0xf1,0xe1,0x61,0xe7,0xc1,0x71,0x3f,0x80,0x5a,0x9f,0xa3,0x5b,0x1a,0x77,0x3f,0xe7,0x33,0xf8,0x9e, - 0xd5,0xb5,0x11,0x69,0x35,0x44,0x4a,0xa9,0x26,0x6c,0xda,0x53,0x01,0xfc,0x58,0x44,0x63,0x7b,0x94,0x86, - 0x16,0x95,0x0c,0xa2,0xc2,0x8b,0x4c,0xad,0xe4,0x20,0xd0,0xbc,0xc7,0x06,0x1e,0x6b,0x90,0xc3,0x83,0x33, - 0x2b,0x80,0xde,0x8e,0xb1,0xb3,0xdf,0x8f,0xb1,0x5a,0xc1,0x65,0xe9,0x20,0x6d,0xa5,0x24,0xb5,0x24,0xb2, - 0x6c,0x95,0xa4,0xf2,0xca,0xf4,0x7d,0x17,0x1b,0xa9,0xfb,0xc0,0xd8,0x06,0xaf,0x5b,0xa7,0xd5,0x8d,0xeb, - 0x82,0x1d,0x58,0x9f,0x40,0x89,0x97,0x61,0x9d,0x34,0xf4,0x78,0x21,0x8e,0xd2,0x1d,0x2d,0x74,0xf4,0x94, - 0x33,0xd3,0xc7,0x02,0x5b,0x07,0x77,0x48,0xaf,0xa4,0x16,0x0e,0x93,0xed,0xa4,0xed,0x40,0x12,0x13,0x12, - 0xa2,0xb9,0x21,0xb4,0x50,0x32,0xa3,0x3f,0xba,0x3b,0x61,0xc9,0xed,0x13,0x06,0x1a,0xa3,0x37,0x82,0xd6, - 0x69,0xca,0xff,0xe8,0x34,0xb9,0x7c,0x7e,0xaa,0xed,0x56,0x6e,0x9f,0x13,0xf4,0x26,0xdf,0x99,0x93,0xe6, - 0x28,0xab,0x7d,0x7f,0xb0,0xbb,0x9d,0x70,0x6c,0x8b,0xc8,0x81,0xae,0xbd,0xa6,0xe5,0xc2,0xb7,0x81,0x1a, - 0x92,0x80,0xd0,0xf3,0x9a,0xeb,0x6f,0xdc,0x0a,0x60,0x6b,0x2d,0x24,0x06,0xb7,0x3b,0x68,0xf1,0x45,0x7f, - 0xa9,0xd1,0x22,0x1e,0x2e,0x5d,0xb4,0x58,0x76,0xbf,0xb0,0xb2,0x5e,0xea,0xbc,0x15,0xd0,0xa4,0xac,0x3d, - 0x0d,0xdb,0x15,0x5f,0xd3,0x0b,0x07,0x5d,0xc6,0xc2,0x69,0x50,0xdb,0x16,0x1f,0xe2,0x00,0xe1,0x71,0xd0, - 0x61,0xd9,0xdf,0x1b,0x38,0x5c,0xef,0xb5,0xab,0x8c,0x4c,0xfd,0x2d,0x76,0xfb,0x7b,0xb7,0x5f,0xe8,0xfe, - 0xb2,0xbb,0x82,0xaa,0xbf,0x45,0xf7,0xae,0x45,0xe3,0xd4,0xf6,0x6b,0xac,0x3b,0x96,0x7e,0x2a,0x1e,0xab, - 0xc4,0xf6,0xdc,0xc4,0x85,0x49,0x9b,0x90,0x6e,0x92,0x5d,0xc7,0xb8,0x59,0x2c,0xcb,0x76,0x7a,0x7d,0xaf, - 0x9f,0xeb,0x5e,0xb3,0xb5,0x50,0xd5,0xeb,0xbc,0x7b,0xcf,0x5c,0xad,0x35,0xe8,0x5a,0x11,0x54,0x34,0xad, - 0x8e,0xa0,0x2c,0x45,0xc2,0xd5,0xce,0x68,0xe7,0x70,0x5f,0x36,0xcd,0xb2,0x6b,0x05,0x79,0xb3,0xf9,0x18, - 0x10,0x92,0x46,0x95,0xf4,0xb5,0xa6,0x5f,0xd5,0xc2,0x20,0xda,0x33,0x9f,0xc3,0x65,0x13,0x69,0x83,0xdc, - 0xb1,0x51,0xd9,0xf2,0xf6,0xca,0xd8,0xdd,0x65,0x4b,0x2d,0x4d,0xc9,0xcc,0xae,0xc6,0xd7,0xa7,0x54,0x72, - 0xd9,0x5b,0x95,0xe9,0xac,0x27,0x1e,0x0e,0x6f,0xed,0x6d,0xdb,0xe0,0xeb,0x87,0x83,0x8f,0x8c,0xbe,0x71, - 0x3c,0xb8,0x15,0x08,0xb7,0x56,0x5a,0x1b,0xc0,0x6e,0x6d,0xad,0xc0,0xf8,0xc3,0x95,0xdd,0x02,0x94,0xf6, - 0x41,0xec,0xc0,0x46,0x34,0x4c,0xd2,0xdf,0x6c,0xfb,0x2d,0xcc,0x88,0x61,0x54,0xe1,0x2f,0x30,0x25,0x84, - 0x05,0xd1,0x26,0x0e,0x7d,0x19,0x40,0xce,0x09,0x03,0x51,0xbe,0x3c,0xe0,0x6f,0x51,0x36,0x82,0x6b,0x2f, - 0xf7,0xd3,0xce,0xd9,0x20,0x42,0x3a,0x6c,0x06,0xba,0xde,0xd9,0x19,0xc2,0x1a,0x98,0xbd,0x7e,0x57,0x6c, - 0x3b,0x5c,0x59,0xea,0x35,0xdb,0x6c,0xfc,0x0f,0x66,0x64,0xe1,0x60,0x8b,0xfe,0xa5,0x1f,0x2b,0xd8,0xf1, - 0xcf,0xf4,0x69,0x79,0x47,0xb2,0x77,0x36,0xd9,0x21,0x04,0x7c,0xee,0xb0,0x1d,0xbf,0xa5,0x5a,0x51,0x69, - 0x94,0x1a,0xfb,0x2e,0x83,0xd8,0x84,0x68,0xb5,0x0d,0x34,0x37,0xc2,0x5b,0xe5,0x34,0x2a,0xbb,0x7d,0x67, - 0x2c,0xfe,0x2b,0x76,0x46,0x71,0x35,0x98,0xd8,0x9d,0xb1,0x80,0x49,0x7e,0x1d,0x2e,0xed,0xbe,0x49,0x6e, - 0xa3,0xe8,0x27,0xb7,0x53,0xf4,0x93,0x91,0xb6,0xa0,0x70,0x89,0x56,0xbe,0x63,0x69,0x54,0x39,0xab,0x68, - 0x9a,0x05,0xc1,0xb4,0x7a,0x00,0xfb,0x94,0xe3,0x11,0xae,0xf6,0x61,0x1b,0xc4,0x21,0x46,0xe0,0xcd,0x41, - 0x1b,0x71,0xc0,0xde,0xa6,0x7a,0x47,0xf4,0x50,0x7a,0xe1,0xd8,0xa8,0xbe,0x14,0xe4,0xb0,0xa8,0x62,0x81, - 0x94,0x7d,0xc0,0x02,0x29,0x13,0x0b,0x24,0x29,0x13,0xa8,0x96,0xef,0x27,0x23,0xdd,0x1a,0x1b,0x1e,0x69, - 0x7c,0x44,0xfc,0x79,0x8e,0x2f,0xda,0x20,0x3b,0xae,0x1c,0xe1,0x23,0x44,0xa7,0x26,0x49,0xb8,0x95,0xe4, - 0xdc,0x52,0x61,0x8d,0x46,0x34,0x6b,0x6a,0x25,0x37,0x7f,0xa8,0xa2,0x5b,0x48,0x4d,0x5b,0xd7,0x6f,0x27, - 0x34,0xd2,0xf2,0xff,0x45,0x32,0xd3,0xbc,0x01,0xba,0x85,0xc8,0xb4,0x64,0xab,0x48,0x8c,0x0b,0xbe,0x8f, - 0x12,0x98,0xec,0x13,0x09,0x4c,0xad,0xd2,0x8f,0x92,0x17,0xc9,0xfd,0x71,0xe2,0xd2,0x90,0xdf,0xfe,0xb7, - 0x93,0x96,0xec,0xe3,0xa4,0x25,0xfb,0xff,0xa4,0xe5,0x53,0x49,0x4b,0x66,0x49,0x8b,0xd6,0xfe,0x10,0x43, - 0x02,0x2d,0xfa,0x49,0x89,0xd9,0x73,0x00,0xab,0x7e,0x0c,0x08,0xce,0xf1,0x3a,0x4e,0x67,0xf1,0x79,0x3a, - 0x4b,0xf1,0x3d,0xba,0xa9,0xef,0x96,0xe1,0x75,0xed,0xf6,0x2f,0x3c,0xc3,0xd4,0xb0,0x16,0xef,0x6c,0xe6, - 0xc6,0xd6,0x35,0x3a,0x78,0x7d,0xff,0x12,0x1e,0x57,0xd6,0xb4,0x02,0xe8,0xc3,0xc1,0x81,0x46,0xbb,0x4b, - 0x93,0x62,0x6c,0x24,0x7b,0x5e,0xc0,0xe3,0x2a,0x4d,0x65,0x12,0x43,0xa9,0xad,0xd7,0xd7,0x54,0xba,0xea, - 0xb3,0xb7,0x2f,0x9a,0xab,0x37,0x84,0xab,0xe1,0x6d,0xa2,0x56,0x64,0x81,0xe3,0x99,0x2c,0xba,0xbc,0xa5, - 0xca,0xac,0x56,0x65,0xb9,0x5b,0xdf,0xee,0xcd,0x98,0x7b,0xe7,0xf3,0x5f,0x82,0x84,0x5a,0x63,0x55,0x57, - 0x9f,0x56,0x27,0x2a,0x3a,0xb8,0xd0,0x39,0xd4,0x20,0x68,0xda,0xe4,0xd6,0x4b,0xf7,0xb4,0xb2,0xdd,0x56, - 0xb6,0x13,0x1f,0x1e,0xe3,0xf8,0xf7,0x0d,0x72,0xe7,0x88,0x93,0xb6,0x1d,0xcc,0x52,0x7b,0xc4,0x49,0xdd, - 0x61,0xa6,0x38,0x98,0xe9,0x73,0x7e,0x7d,0x98,0xb9,0x73,0x40,0xcb,0x31,0x4e,0x6b,0xd1,0x96,0xef,0x8c, - 0x53,0x65,0x76,0xa4,0xc5,0xef,0x19,0x69,0xf2,0xfb,0x47,0xaa,0x49,0x66,0xbd,0xaf,0x05,0x1f,0x9f,0x12, - 0x65,0x35,0x7e,0x8b,0x9d,0xd3,0xe3,0xa7,0xf7,0x6a,0xf2,0x3f,0x8b,0x63,0xd5,0xa9,0xd8,0xd8,0xe9,0x4d, - 0x1c,0xec,0x6a,0x39,0xef,0x7e,0xea,0x38,0x5a,0xd6,0xde,0xff,0xec,0x38,0xb2,0x8f,0x8f,0x03,0xa6,0xd3, - 0xef,0xd3,0xcc,0x3f,0xc7,0xa3,0xb5,0x05,0xf4,0x3d,0xac,0x73,0x8e,0xb8,0x30,0xd6,0xf1,0xd7,0xd9,0xd9, - 0xd7,0x65,0x15,0x16,0xcc,0xbf,0x12,0xbf,0x87,0x57,0x66,0x13,0xb5,0x2a,0x03,0x62,0x38,0xf5,0x1c,0xcc, - 0xd0,0xeb,0xb2,0xa0,0xa2,0x53,0xa2,0x96,0xfd,0x42,0x6c,0xa8,0x8a,0x9e,0x8e,0xfa,0x0d,0xea,0xa8,0x29, - 0x5d,0xe4,0xfd,0xb9,0x77,0xaf,0xf7,0xb9,0xa7,0xda,0xcc,0xb9,0x24,0x22,0xf3,0xc1,0x81,0x8e,0xcc,0xfc, - 0x13,0x22,0xca,0x54,0xcf,0xbd,0xd5,0x32,0xf1,0x9f,0x13,0x71,0xd6,0x6a,0x43,0xd6,0xca,0xe5,0x26,0xc9, - 0xc2,0x1b,0x0e,0x82,0x19,0x7a,0xaf,0xcb,0x38,0x2d,0x96,0x9e,0x5a,0x5e,0x2f,0xcb,0x64,0xfe,0xf4,0x31, - 0xa5,0xf0,0x53,0xe7,0xe9,0x63,0x4f,0x5d,0xa4,0xc5,0xfc,0x2a,0x2e,0x92,0x9f,0xa4,0x2f,0xa1,0xf7,0x44, - 0x27,0x74,0x74,0xef,0xc2,0x0e,0x42,0x5a,0x2e,0xae,0x25,0x0e,0x86,0xf7,0xc8,0x3c,0x76,0xfe,0xe3,0xdf, - 0x3b,0x77,0x8f,0x4f,0xfe,0xdc,0x79,0x1e,0x17,0xef,0x3a,0xeb,0x38,0xeb,0xfc,0x98,0x64,0xcb,0xab,0x7c, - 0x35,0xa1,0x45,0x35,0xcb,0x63,0x38,0xc9,0x0a,0xbd,0x57,0xb3,0x04,0x56,0x84,0x1c,0x9b,0xa0,0xa3,0x53, - 0x3b,0x02,0x28,0x1d,0x9a,0xbd,0xd7,0xeb,0x79,0x8a,0xe7,0xe9,0x6b,0x0e,0xa1,0x11,0x7a,0x0f,0xf1,0x52, - 0x4b,0x7b,0x1d,0xaf,0xb9,0x36,0xf9,0xe5,0x12,0x57,0xe9,0x45,0x4a,0x03,0x2b,0x57,0xcb,0xf0,0x26,0x1e, - 0xc3,0x5f,0xe4,0x22,0x4f,0xb3,0xd2,0x0e,0xfa,0xe1,0x2b,0x74,0x7c,0x92,0x2e,0xe3,0x73,0xda,0x31,0x42, - 0xef,0xb1,0x7e,0x22,0x8e,0x81,0x5d,0x56,0xe4,0x19,0x82,0xc9,0xd9,0xec,0x3f,0xa7,0x4f,0xd2,0x5b,0x0a, - 0xa8,0x14,0x61,0x43,0xbc,0xa7,0x13,0x5c,0xd6,0x66,0xf9,0xeb,0xd7,0x0c,0x41,0xfa,0xdb,0x81,0x9d,0xe8, - 0x45,0x4e,0x93,0x46,0xb0,0x1d,0xc7,0x19,0xc2,0x41,0xc0,0xc4,0x82,0x0a,0xbf,0xa6,0xd7,0xce,0xd8,0xbc, - 0x03,0x80,0x59,0x46,0xa8,0xf5,0x84,0x36,0x50,0x7c,0x96,0xdf,0x4e,0x99,0x77,0xf4,0x07,0x9b,0x83,0xfa, - 0xf5,0x2c,0x5f,0x32,0x9c,0xcd,0x3b,0x81,0x6d,0x59,0x72,0xcf,0x74,0x1e,0xdd,0x3b,0xfb,0x86,0x48,0x1b, - 0x4b,0x0d,0x8a,0x32,0x3e,0x7f,0x63,0x67,0x9d,0x52,0x3c,0xa5,0x07,0xf8,0x48,0xc2,0xb5,0x74,0x96,0x3a, - 0x99,0x36,0xd2,0xd7,0x65,0xb2,0x58,0xbe,0x29,0x56,0xc8,0x9c,0x94,0x1d,0x88,0xf5,0x11,0x0d,0xfe,0x9a, - 0xc6,0x54,0xb0,0x3e,0xff,0x12,0x19,0xaa,0xac,0x4f,0xa0,0x64,0xda,0xcc,0x0b,0x6f,0x68,0xeb,0x74,0xb2, - 0x42,0x48,0x08,0xc4,0x9f,0x21,0xdc,0x98,0xc2,0xd7,0x88,0xd3,0x93,0x37,0x3a,0x0d,0x7d,0x99,0x27,0x26, - 0x91,0x1e,0x25,0xe1,0x29,0xae,0x13,0x32,0xa2,0x13,0x06,0x59,0x08,0xac,0x30,0x53,0x89,0xcb,0x0e,0x3e, - 0x77,0x4c,0x95,0x1d,0x6d,0x3a,0xd2,0x89,0x33,0x6e,0x1f,0x65,0x3a,0x15,0xd8,0x7a,0x52,0xdb,0x8b,0x9c, - 0x03,0x08,0x7b,0x2f,0xf2,0x46,0x69,0xbd,0xb2,0x3a,0xd7,0x49,0x29,0x39,0x9f,0xa4,0xef,0x93,0x09,0xba, - 0x01,0x9c,0x7f,0x8f,0xe9,0xb0,0x5d,0x7a,0xbd,0xca,0x8a,0x94,0xc7,0x2a,0x0f,0x36,0x75,0x89,0x6e,0xca, - 0xaf,0x19,0xcd,0x5c,0x0f,0x06,0xb7,0x68,0xf3,0x34,0x5b,0x95,0x09,0x0d,0x74,0x9e,0xa3,0x4b,0x7a,0xa8, - 0xcf,0xf9,0xc5,0xdb,0x3a,0x73,0xec,0x82,0xa7,0x9a,0xe9,0x6a,0xb2,0xaa,0xc9,0xe7,0x6b,0x87,0xa4,0x64, - 0xf0,0xb9,0x78,0xee,0x7d,0x93,0x01,0x3d,0x3b,0x92,0xd6,0xe1,0xc4,0x5a,0x8e,0xef,0x38,0xd7,0xc3,0xd9, - 0x2c,0xbf,0x5a,0xca,0x8c,0x6a,0x5b,0x67,0x07,0x66,0x9d,0x8b,0x22,0x9f,0x77,0xae,0xf3,0x55,0x41,0xe0, - 0x59,0xa7,0xe3,0x04,0x28,0x09,0xea,0xdc,0x11,0x9a,0xa1,0x3d,0xac,0x70,0xf1,0xda,0xa2,0xed,0x2c,0x56, - 0xc5,0x22,0x5f,0x26,0xcb,0x5e,0xe7,0xcd,0x65,0x62,0x72,0xd7,0xb3,0x50,0x2d,0x9a,0x63,0xa4,0x1a,0xe8, - 0xfd,0xb2,0x2c,0x17,0xe1,0xd1,0xd1,0xc9,0x57,0x77,0x7b,0x27,0x5f,0xfe,0xa5,0x77,0xd2,0xfb,0xfc,0xa8, - 0x73,0x75,0x99,0x64,0x68,0xbf,0x03,0x82,0x63,0x11,0x1a,0xbd,0x48,0x4b,0xaa,0x9a,0xb9,0x9d,0xb2,0x93, - 0x5f,0x5c,0x74,0xe2,0x65,0x67,0x99,0xc3,0x8d,0xc5,0xb2,0xa3,0xd7,0x2f,0x3a,0x97,0xa0,0x15,0xd3,0x6c, - 0x32,0x51,0xf8,0x4c,0x05,0x28,0x91,0x6d,0xb8,0x93,0x31,0x52,0x31,0x33,0x71,0x76,0x4d,0x44,0xe8,0xba, - 0xd7,0xf9,0x3b,0x35,0x86,0xc5,0x19,0xcf,0xe8,0x75,0xd9,0xb1,0xac,0x60,0x47,0xc8,0x76,0x07,0x67,0x16, - 0xf4,0xf6,0xfc,0xba,0x03,0x7d,0x2d,0x90,0xab,0xf2,0xb2,0x0e,0xe6,0x8e,0x8e,0xf5,0xb3,0xca,0xe8,0xd0, - 0xca,0x5f,0x9f,0x7d,0xf3,0xb8,0x33,0x03,0x51,0x5c,0x76,0x56,0x0b,0x42,0x44,0x97,0xc2,0x98,0x89,0x72, - 0x7b,0x5d,0xcb,0x21,0x13,0xa5,0xa7,0xbc,0x0d,0xfa,0x04,0x0d,0x9e,0xa2,0xfc,0x2a,0xeb,0x80,0x4e,0x75, - 0x0a,0xf6,0x40,0xd4,0xeb,0xe8,0xf5,0xc2,0x11,0xa6,0xb8,0x1f,0xa0,0x4a,0x8a,0x50,0x66,0x49,0x74,0xb8, - 0x98,0xd0,0xa0,0x27,0xb4,0xbf,0x16,0xf4,0xa5,0x39,0x7d,0xe7,0x09,0xa1,0x05,0x3a,0xba,0x4c,0x27,0x42, - 0xcc,0x3c,0x65,0x8a,0xd1,0x3a,0xd4,0x4f,0x44,0x74,0x2e,0xc7,0x8b,0xd0,0xfb,0x2b,0x35,0xf2,0xf8,0xbb, - 0x47,0xaf,0xe4,0x5d,0x23,0xd6,0xaa,0xcc,0xe7,0x70,0xfd,0x83,0x85,0x4f,0x60,0x5f,0xa6,0xd3,0x6c,0x89, - 0xa5,0xf9,0xf4,0x55,0x47,0x47,0xa3,0x6e,0x47,0x26,0x99,0x02,0xe2,0x13,0xce,0x09,0x2c,0x98,0x14,0x02, - 0x28,0x65,0x7c,0x97,0x24,0x0b,0x3d,0x11,0x80,0xec,0x0c,0xe5,0x81,0x18,0xb0,0xaa,0x20,0x34,0x21,0x62, - 0x40,0x6f,0x77,0x08,0x4b,0x26,0x39,0xb6,0x00,0xa2,0xca,0x0b,0xdd,0x0c,0x91,0x66,0xdb,0x24,0x8d,0x68, - 0x75,0x4e,0x74,0x61,0x1e,0x2f,0xdf,0x61,0xa1,0xe2,0xb9,0x83,0x17,0x4f,0x4d,0x69,0x27,0xa6,0x29,0x0f, - 0xbd,0x6f,0xe5,0xc1,0x53,0x97,0x44,0x57,0xc5,0xc4,0xed,0x3b,0xfd,0x54,0xa5,0xbd,0xaa,0xdc,0xa8,0x12, - 0xb1,0xd5,0x56,0x6d,0x54,0xd3,0xd8,0xb6,0xb4,0xd5,0xfb,0x69,0x8d,0xe6,0x72,0x0a,0xed,0x12,0xe5,0xc2, - 0x21,0x73,0x1d,0x68,0x95,0xd1,0x71,0x37,0xa3,0x1d,0x85,0xa1,0xef,0xbf,0x78,0xf3,0x2a,0x20,0x80,0xd3, - 0x81,0x46,0x67,0xfb,0x2e,0x2e,0x26,0xbc,0xe9,0x52,0x5a,0x8e,0x88,0x7d,0xf3,0x78,0x61,0xbe,0x7d,0x9b, - 0xe7,0x53,0xc2,0x82,0xe7,0x94,0xd2,0x79,0xf8,0xea,0x69,0xb5,0x65,0xeb,0xef,0x76,0xc3,0x16,0x46,0x85, - 0x5b,0x7f,0x46,0x07,0x30,0x8f,0xfe,0xa4,0x25,0x6f,0xc7,0x48,0xc1,0xfe,0xf9,0x2c,0xcf,0xa6,0x4e,0x12, - 0xb1,0xaa,0x4c,0x8c,0xbc,0x6f,0x09,0x4a,0x33,0x9d,0xbb,0x73,0x44,0x1b,0x8e,0xce,0x26,0xf4,0x61,0xa6, - 0xf3,0xd5,0x0a,0xbd,0x4e,0xe2,0x62,0x7c,0x89,0xdd,0x00,0xbf,0x3c,0x18,0x5a,0x05,0xb4,0xeb,0x7a,0x0f, - 0x65,0xa9,0xbc,0xe2,0xa5,0x22,0xdb,0x0d,0x2f,0x10,0xca,0xd1,0xf1,0xbb,0xf7,0x7a,0xf7,0xd6,0x81,0xc9, - 0xfe,0xfa,0xcd,0x43,0xd9,0xa8,0x00,0x95,0xe7,0x58,0xce,0x1f,0xc8,0xff,0xf0,0x95,0x61,0x10,0xf4,0x8a, - 0xaa,0x35,0xa4,0xd7,0x24,0x17,0x5a,0xd0,0x31,0x9d,0x7a,0x7d,0x25,0xe5,0x5e,0xfd,0xfc,0xfc,0x71,0x41, - 0x4c,0x5d,0xf1,0xfa,0x31,0xb5,0xf6,0xea,0xd1,0xc3,0xaf,0xbe,0xfc,0xcb,0x17,0x1d,0x4a,0xed,0x4c,0x38, - 0xb9,0x43,0xe9,0x52,0x0e,0x9a,0x85,0xcd,0x32,0x8f,0x9e,0xb5,0x97,0x79,0xf4,0x4c,0xca,0x8c,0xe1,0xc2, - 0x10,0x85,0xae,0xe6,0x0f,0x0d,0x3e,0xb6,0xe4,0x7f,0xfa,0x1f,0xff,0xfb,0x51,0x85,0xa4,0x94,0xf9,0x09, - 0x76,0xb3,0x24,0x1b,0x5f,0xb7,0x66,0xbf,0x30,0x5f,0x05,0x13,0x68,0xda,0x7f,0x48,0xae,0x77,0x50,0x81, - 0x16,0x4d,0x2d,0xc3,0x25,0xaf,0xcc,0x97,0x0b,0xb1,0xd3,0xec,0x75,0xf4,0x9e,0x4f,0xab,0x2c,0xcf,0xe8, - 0x0f,0xf1,0x8a,0x13,0x26,0xe5,0xe6,0x2a,0x15,0xc4,0x2d,0xb6,0xd3,0xdb,0x01,0xde,0x0b,0xe9,0xbd,0xb3, - 0x6c,0x45,0x07,0x45,0x0b,0x31,0x1d,0x5f,0xf2,0xba,0xbc,0x4a,0x09,0xc6,0x73,0x5a,0x2d,0x44,0xf8,0xde, - 0x25,0xa6,0x89,0x49,0xde,0x81,0x2b,0xcc,0x1e,0xd1,0x29,0xfa,0x4c,0x34,0xe4,0x5d,0x07,0xc1,0xa9,0x08, - 0xa5,0x41,0x1a,0x74,0x97,0x15,0x26,0xab,0xa3,0xc7,0x32,0x67,0x5e,0x12,0xd2,0xa0,0x92,0xb0,0x59,0x08, - 0x1d,0x0f,0x7e,0x59,0xf6,0xc0,0xd8,0x64,0x33,0xcb,0xa3,0xbd,0x29,0xe2,0xc5,0x0e,0x17,0xfb,0x69,0x6c, - 0x6c,0xf2,0xcf,0x71,0xb1,0xdf,0xd0,0x2e,0x95,0x4f,0x93,0xec,0x9c,0xc6,0xda,0x99,0x26,0x44,0xc6,0x68, - 0xab,0x39,0x4f,0x7e,0x4b,0xa7,0xc4,0x71,0x63,0xe9,0x4c,0x28,0xc3,0x9a,0x59,0x3e,0x4b,0x65,0x93,0x5d, - 0xc6,0xf6,0x4d,0x9e,0x80,0xc8,0x26,0x59,0x2b,0x73,0xfb,0xb5,0xad,0x2f,0x5f,0xd0,0xec,0xc4,0xd9,0x1f, - 0xe2,0x73,0xff,0x9a,0x96,0xc4,0xff,0x8f,0x2f,0x63,0x9a,0x94,0x4f,0x67,0x76,0xeb,0xa5,0x34,0xc7,0xfb, - 0x9a,0x3a,0xb1,0x80,0x15,0xf6,0xa4,0xc9,0xf7,0xa6,0xd4,0xc9,0x69,0xb2,0xce,0xe9,0xb8,0x92,0xb5,0xf3, - 0xbe,0xf1,0x05,0x31,0x5d,0x79,0xb6,0xcb,0xfa,0xfe,0x40,0x1f,0xa7,0x09,0xc0,0x95,0x14,0xda,0x91,0x32, - 0x91,0xd5,0x77,0xa8,0xa7,0xc9,0x02,0xff,0x54,0xe5,0xa0,0xcc,0xb3,0xbc,0x40,0xa6,0x3a,0x1b,0xfc,0x02, - 0x3d,0x41,0x4d,0xd2,0x95,0x4f,0x61,0x84,0xbf,0x5b,0xa5,0x93,0x74,0x9a,0xdc,0xc2,0x08,0x13,0xbf,0x04, - 0x9e,0x31,0xc1,0x84,0x4e,0x92,0xdf,0x92,0xd9,0x05,0x78,0x0c,0xcd,0xed,0x26,0x69,0xb9,0xc3,0x0d,0xbf, - 0x91,0xbc,0x86,0x0d,0x4e,0x92,0x19,0x9b,0xae,0x27,0x54,0x4f,0xf6,0xfb,0xf8,0xe1,0xb7,0x93,0x26,0x3f, - 0xfc,0x8c,0x71,0xa1,0x43,0x64,0xa9,0xb3,0xce,0xb1,0x6e,0x29,0x4f,0xc5,0xd0,0x26,0x49,0xc5,0x07,0xaf, - 0x6b,0xa0,0x4a,0xe0,0x7a,0x28,0x5d,0xee,0x70,0xc4,0x53,0x81,0x7c,0xbd,0x9a,0x69,0x62,0xf9,0xa7,0xa4, - 0x98,0xec,0xb0,0xc6,0x3f,0xc5,0x4b,0x70,0xe3,0xb6,0x77,0x96,0x35,0xfe,0x05,0x7e,0xeb,0x16,0xef,0xf2, - 0xf9,0xb2,0xac,0xb3,0xc7,0xfc,0x01,0xda,0x4e,0xd3,0x18,0x9a,0x33,0x35,0x56,0xf8,0xeb,0xe4,0x2a,0x81, - 0x7a,0xfb,0xad,0xcc,0x70,0x35,0xe7,0x76,0xc2,0x1c,0x34,0x70,0x97,0x57,0x83,0x1d,0x7e,0xe8,0x32,0x68, - 0x34,0x03,0x82,0xcb,0xbc,0xd4,0xaa,0x6c,0x42,0x20,0x9f,0xc7,0xf1,0xbb,0xb2,0x73,0x09,0xce,0x80,0x16, - 0xf5,0x2c,0x7d,0x4b,0x0c,0xdf,0x9c,0xc1,0x29,0x0c,0xb2,0xe5,0x44,0xd3,0x04,0x8b,0x3a,0xbe,0xe0,0x6f, - 0xb4,0x62,0x89,0x15,0xa7,0xa9,0xc8,0xe2,0xb8,0x60,0xdc,0xe8,0x80,0x20,0x59,0x26,0x2d,0x11,0x34,0x46, - 0x55,0x84,0x32,0x55,0xaa,0x85,0x2e,0xbc,0xed,0x76,0x1e,0xd7,0x4b,0x11,0xbb,0x43,0x59,0xce,0x93,0x8c, - 0x28,0x48,0x81,0x45,0x91,0xc6,0xad,0x7c,0x32,0x7d,0xa7,0x96,0xdf,0xba,0x3d,0xbb,0x4c,0xce,0xb1,0x08, - 0xe7,0x18,0x4c,0xaf,0xf3,0x5a,0xc6,0x2b,0xfd,0x02,0x2b,0x4b,0xec,0x40,0x8a,0xbe,0xf2,0x38,0xdd,0x3e, - 0x10,0x8f,0x8c,0x18,0xc1,0xbf,0xa5,0x1a,0xc3,0x65,0x35,0x9f,0x27,0xeb,0x24,0x25,0x16,0x76,0x02,0xbc, - 0xe9,0x7c,0x9f,0x74,0xde,0x11,0x77,0xeb,0xd6,0x96,0xe7,0xef,0x5c,0xb0,0x12,0xa5,0x27,0x84,0x04,0x72, - 0xda,0x7d,0x58,0x40,0x4f,0xfc,0xda,0x02,0x63,0x9a,0x14,0xab,0x77,0x00,0x47,0x99,0x97,0xe8,0xfa,0x44, - 0x98,0xe4,0x18,0xab,0x9f,0x80,0xd8,0xe4,0x91,0x9d,0x39,0x06,0x01,0x64,0x2e,0x57,0x53,0x05,0x27,0x9f, - 0x4c,0x9f,0xce,0xbb,0x3b,0x05,0xa8,0x9c,0x40,0x94,0xd0,0xea,0x6e,0x30,0xca,0x3f,0xad,0x66,0x9d,0xcb, - 0x94,0x09,0x12,0x6d,0xae,0x80,0x08,0xd3,0x31,0xca,0x76,0x15,0x8f,0x2f,0xcb,0xab,0x1c,0xdc,0x72,0x4a, - 0xa0,0x49,0x2a,0x12,0x4e,0xab,0xa1,0xc3,0xa1,0x3d,0x57,0x0c,0xd6,0x4e,0x4e,0x0b,0x0b,0x74,0x83,0xc1, - 0xb1,0xbc,0x95,0x77,0xfe,0xd9,0x56,0x68,0xb8,0xe7,0x6f,0x93,0xf3,0x62,0x45,0xfb,0x46,0xc5,0x41,0x5f, - 0xd6,0x38,0x68,0x82,0x29,0x23,0x18,0x73,0xb1,0xc4,0x1f,0x10,0xc8,0x92,0xab,0xf4,0xed,0x6f,0xc0,0xb9, - 0x38,0xdb,0x19,0x26,0xed,0xad,0x84,0x80,0x54,0x28,0x7d,0x9b,0x31,0xee,0xd2,0x4e,0x8c,0x61,0x3b,0x73, - 0x85,0x62,0xd0,0x94,0xa2,0x01,0xd1,0x9f,0xdf,0xd2,0xb7,0xf8,0x7e,0x95,0xd0,0xb0,0xaf,0x80,0xbb,0xf4, - 0x32,0x4f,0x12,0xbd,0x7f,0x9d,0xc3,0x21,0xc2,0x2e,0x37,0x5d,0x24,0xb7,0xf3,0xd2,0x49,0xf1,0x29,0xdc, - 0x74,0x3c,0xbf,0x85,0x9b,0x7e,0x8d,0x1d,0x85,0xfa,0x31,0x31,0xfc,0x34,0xda,0xba,0x95,0x9b,0x6e,0xb2, - 0xd3,0x44,0xba,0x6a,0xec,0x74,0xf2,0x21,0x6e,0x3a,0x06,0x9f,0x43,0xeb,0x80,0xf0,0x0a,0xa8,0xf4,0x47, - 0x98,0xea,0xf3,0xf4,0xed,0x55,0x52,0x30,0x26,0x1a,0xbe,0xfa,0x6b,0xc2,0x8d,0x49,0x99,0x4c,0x89,0x1a, - 0x4c,0x1c,0xde,0x1a,0x32,0x4a,0x37,0xd1,0x72,0xd7,0x6e,0x7e,0xb0,0x53,0x55,0x46,0x9a,0xaf,0xcb,0x18, - 0xab,0x89,0xd6,0xcc,0x79,0xbc,0x24,0x6a,0x00,0x26,0x42,0x18,0xb2,0xa4,0x95,0xdd,0xfe,0x25,0x4f,0xb8, - 0x2f,0x7f,0x9c,0xdd,0xe6,0x85,0xf1,0x49,0x6c,0x76,0xad,0x66,0x77,0xed,0xf3,0x1a,0xe7,0x72,0x31,0x48, - 0xd1,0x05,0x21,0x5b,0x3c,0xfd,0x9f,0x60,0xb6,0xdf,0xcd,0xf2,0xff,0x17,0x79,0x6d,0xda,0xf4,0x69,0x55, - 0xd2,0x92,0x97,0xed,0x3a,0xc5,0xc6,0x02,0xc1,0x34,0x91,0x13,0xd0,0xe4,0xa9,0x10,0x80,0xd2,0xec,0x32, - 0x7a,0x7e,0x41,0x25,0xa9,0xfd,0x92,0x11,0x80,0x37,0x15,0x7c,0x3c,0x17,0x64,0x39,0xac,0x23,0x0a,0x71, - 0xde,0x42,0xff,0xaf,0xea,0x6b,0x7f,0x8e,0x62,0xff,0xf9,0xef,0xff,0xf9,0xef,0x19,0x0e,0xd0,0x45,0x27, - 0xcb,0x89,0xb7,0xe1,0xad,0x81,0x3a,0x44,0x68,0x5b,0x32,0xdd,0xfe,0x4d,0xe8,0x9e,0x65,0xbf,0x41,0x62, - 0x89,0xa2,0xbd,0xa3,0xd5,0xc1,0xcc,0x85,0x1e,0xea,0x5b,0xee,0xcf,0x6f,0x84,0x61,0xbc,0xdf,0xcb,0xce, - 0xc8,0xbb,0x03,0x51,0x24,0xc2,0x98,0x98,0x39,0xf2,0x6d,0xe5,0x00,0x97,0x63,0x47,0x3d,0x5c,0x2c,0xac, - 0x60,0x1f,0x37,0xce,0xda,0x4f,0x62,0x65,0x7d,0x48,0xec,0x2d,0x51,0x8b,0xbc,0xe8,0xcd,0x68,0xdf,0x59, - 0xc5,0xd3,0xa4,0x69,0x0a,0xe8,0xf1,0xda,0x34,0x86,0x85,0xd6,0x10,0x23,0xe8,0xeb,0xea,0xfc,0x9b,0x64, - 0x16,0x7a,0x7f,0xa2,0x0d,0x98,0xe8,0x14,0x55,0x1d,0x96,0x8a,0x0d,0xf5,0x6e,0x0c,0x7f,0xbe,0x77,0xac, - 0x96,0xc2,0x44,0xef,0x9d,0xe8,0x27,0x66,0xd1,0xf0,0xaa,0xf3,0x3c,0xa5,0xcd,0x65,0x8c,0x5e,0x84,0xde, - 0xc6,0x53,0xab,0x05,0x92,0x5f,0x15,0xf9,0x94,0x91,0x88,0xb2,0xc5,0x2c,0xf7,0x7f,0x13,0x9f,0xc3,0xd7, - 0xac,0x30,0x86,0x46,0xfe,0x7d,0x53,0x9d,0x38,0x74,0x65,0xcc,0x98,0x9b,0xcf,0x6e,0xe2,0xb6,0xce,0xae, - 0x2f,0xc2,0x9b,0x24,0x13,0x0e,0x9b,0x9a,0x48,0x69,0x2f,0x38,0xee,0xf1,0xbf,0x8a,0x2f,0xaf,0xe5,0xd0, - 0xbc,0xeb,0x71,0x3d,0x2b,0xe5,0xe5,0xc5,0x4f,0x6d,0x58,0x9a,0x42,0x99,0x1d,0xce,0x12,0x8c,0x9a,0x5b, - 0x0f,0x9f,0xef,0x52,0x61,0xbb,0xe8,0xd3,0x71,0x95,0x77,0x08,0x17,0x3a,0x2e,0xe7,0x65,0xa9,0x36,0x6b, - 0x37,0xba,0x1c,0x15,0x80,0x5a,0xda,0xd6,0x78,0xb3,0xe3,0x3c,0x76,0xab,0xe3,0x37,0xde,0xe2,0xf6,0xb8, - 0xc7,0xfc,0xee,0x6c,0x19,0xfc,0x6e,0xf6,0x09,0xb6,0x9c,0xb0,0x34,0x9e,0x36,0x27,0xf9,0x3c,0xa3,0x39, - 0x93,0x5a,0x89,0xbe,0x50,0x7a,0x32,0x21,0x92,0x26,0x5f,0x92,0x09,0xc8,0x95,0x74,0x6b,0xa1,0x49,0x92, - 0x64,0xbd,0x9a,0x83,0xb8,0xd8,0x67,0x22,0x1a,0x52,0xbb,0x43,0x16,0xcc,0xc7,0x6a,0xe5,0x73,0x8a,0xbb, - 0xbe,0x69,0x0e,0x0c,0x2b,0x8f,0x01,0x98,0x67,0xb6,0x25,0x09,0x31,0x76,0x7c,0x18,0x8e,0xd4,0xcc,0xd2, - 0x71,0x30,0xad,0xec,0x22,0x61,0x27,0x6e,0x90,0xb6,0xe5,0xb6,0x8e,0xc0,0x99,0x73,0x85,0xab,0x20,0xdf, - 0xe3,0x47,0xcf,0x18,0x75,0xeb,0x9b,0x1b,0x53,0x27,0xec,0x2d,0x2e,0x8d,0x49,0xc5,0x89,0xc4,0x99,0x4a, - 0x7a,0x16,0x17,0x6d,0x00,0x89,0xa2,0x7c,0xd6,0x40,0x63,0xa8,0x62,0xf6,0x44,0xe0,0x03,0x82,0x2e,0x28, - 0xc7,0x89,0xfa,0x50,0xc7,0x83,0x61,0x6b,0x52,0xdc,0x97,0x23,0x16,0x84,0xb3,0x30,0x80,0x16,0x05,0x52, - 0xe3,0xf7,0x69,0xce,0xa6,0x7a,0xbe,0x77,0x14,0x2f,0xd2,0x23,0x8d,0xd4,0x5e,0xd0,0x2b,0x2f,0x93,0xac, - 0xe6,0x5c,0x67,0xd7,0xe3,0xb4,0xf6,0x38,0x44,0x3d,0x36,0x17,0x59,0x92,0x14,0x6c,0x83,0x9e,0xf8,0x58, - 0x73,0xcb,0x1b,0x3f,0xd7,0xb3,0x7c,0x0a,0x4d,0x96,0x40,0xb7,0x0d,0xdf,0xbe,0xc3,0x66,0x37,0x2a,0x0c, - 0xfd,0xbd,0x3d,0xa9,0x4a,0xfe,0x91,0xce,0x54,0x3d,0x10,0x4c,0xfd,0xbd,0xad,0x4b,0xa9,0x7f,0xae,0x65, - 0xb3,0x56,0x8f,0xf8,0x3a,0xe2,0x77,0x76,0xc0,0x14,0xee,0xa1,0xf0,0x3f,0x09,0x01,0xbe,0xfc,0x69,0x69, - 0x7f,0xc7,0xc4,0x4a,0x37,0xe3,0xde,0xdf,0xee,0xc1,0x1f,0x11,0x68,0x1e,0xbb,0xd3,0x61,0xf3,0x8e,0xe3, - 0x7e,0x7c,0x5f,0x7b,0x5c,0xd2,0xb6,0xbf,0x71,0x15,0xae,0x45,0x3e,0x40,0x37,0x8b,0xbd,0x4a,0x14,0x83, - 0x22,0x5a,0x86,0xcb,0x3d,0x89,0xe9,0x9c,0x71,0xf0,0xed,0xbc,0xe6,0x2e,0x88,0xb6,0x07,0x95,0x76,0xa3, - 0xe5,0x16,0xeb,0x23,0xe1,0xa0,0x14,0x49,0xaf,0xb6,0x86,0xc5,0x81,0xf6,0xc5,0x2c,0x87,0xf7,0xa2,0x23, - 0xe3,0xc8,0x2a,0x70,0xb2,0x45,0xd0,0xfc,0x18,0xe9,0x11,0xca,0xf0,0x97,0x0b,0x5a,0xe0,0x13,0xd7,0x65, - 0x54,0xc6,0x11,0x73,0xcb,0x7c,0xd1,0xba,0x02,0x35,0xed,0xa7,0x0e,0x22,0x12,0x92,0xd2,0x77,0xbb,0x20, - 0xfd,0x8b,0xd9,0x75,0x75,0x8b,0x73,0xcb,0x15,0x78,0xa9,0xd7,0x24,0x7b,0x17,0x93,0x47,0x40,0x4e,0xba, - 0x82,0x78,0xdc,0xbb,0xcb,0x41,0x55,0x14,0xbb,0x74,0x90,0xbd,0x67,0x52,0x6b,0x24,0xbc,0x96,0xc3,0xf9, - 0x60,0x09,0x7b,0x2d,0x83,0x4e,0x14,0x52,0x5f,0xff,0x42,0x29,0x15,0xdd,0xaf,0x7d,0x32,0xa9,0xb2,0x11, - 0xd4,0x3e,0x21,0x05,0xfb,0x42,0x2d,0x31,0x5d,0xb8,0x5b,0x44,0xbd,0x15,0x9b,0x6e,0x77,0x8d,0xda,0x77, - 0x9d,0xb8,0x6d,0x41,0xc9,0x4f,0xc2,0xf0,0x46,0x31,0x98,0x63,0x1b,0x98,0xcb,0xec,0xf1,0xa4,0x89,0x08, - 0xff,0x9f,0x9c,0x30,0x4d,0x3d,0x10,0x68,0x95,0x9f,0xfe,0xdb,0xba,0xdc,0xba,0x37,0xdc,0xda,0x79,0x8d, - 0xad,0xb4,0x59,0x4c,0x13,0x5a,0x98,0x36,0x41,0xb6,0x83,0x65,0x52,0xb2,0xe8,0x89,0x16,0x98,0xdb,0xa4, - 0xf6,0x52,0x55,0x2f,0xdd,0xed,0xaa,0x7a,0x82,0xf6,0x64,0x7c,0x12,0xda,0x64,0xdb,0x9d,0xc8,0x3b,0xf2, - 0x1c,0x87,0x54,0x9d,0xbb,0xad,0x79,0x0e,0x6b,0x79,0xee,0xb5,0xe6,0x39,0x3d,0xad,0x65,0xfa,0xbc,0x35, - 0xd3,0xc6,0x53,0xcd,0x91,0x12,0xcf,0x73,0xf7,0x8b,0x63,0x06,0xd7,0xee,0x3a,0x76,0xa1,0x35,0x9e,0x11, - 0xa7,0x65,0x81,0xa0,0x75,0xff,0x2a,0x10,0x51,0x0d,0x44,0x1f,0xcd,0x7e,0x8b,0x53,0x99,0x30,0x6c,0x6d, - 0xae,0x04,0x2a,0x46,0xd0,0x2c,0xac,0x9e,0xe6,0xd0,0x8c,0xcd,0x9a,0x2b,0xc9,0xf4,0x8c,0x33,0xb0,0xdb, - 0xca,0x0a,0x6b,0xa8,0xa1,0xac,0xfd,0x35,0xdf,0x35,0x7e,0x99,0xcd,0x22,0xc9,0xa6,0xda,0xe3,0xb3,0xf6, - 0x27,0xad,0xdd,0x47,0x5b,0xa7,0xd0,0xa2,0x5b,0x69,0x20,0x5c,0x2f,0x8c,0x3e,0x88,0x17,0xe8,0xd0,0x38, - 0x71,0x6c,0xeb,0xe7,0xb6,0x1d,0x04,0x6f,0x10,0xd0,0xed,0x0f,0x81,0xa1,0xc3,0x5c,0xd2,0x6e,0x36,0xc8, - 0x7b,0x0c,0x2f,0x33,0xf1,0x82,0xdf,0x09,0x9f,0x4f,0xa8,0x1b,0x32,0x6e,0xaa,0x57,0xc3,0xeb,0x13,0x0a, - 0x88,0x08,0xdc,0x14,0xb9,0xfb,0x29,0x45,0x6a,0x92,0x71,0x53,0xf2,0x5e,0xe8,0x6a,0x20,0xb6,0x8c,0x25, - 0x5d,0x18,0xfc,0xfe,0x84,0x26,0x6a,0xe2,0x75,0xd3,0xc4,0x17,0xbf,0xa3,0xa4,0x16,0xb7,0x9b,0xa2,0xcd, - 0xe9,0xff,0xd8,0xfc,0x54,0xa8,0x01,0xcf,0x88,0x4d,0x8e,0xf4,0x23,0x74,0x74,0x40,0x34,0x07,0x2b,0x2b, - 0x5f,0x21,0xf0,0x7c,0xb3,0xb0,0xfa,0x22,0xb9,0x17,0x84,0xb7,0xf3,0x86,0x47,0xfa,0xa4,0xd6,0x24,0x93, - 0xad,0x71,0x64,0x0c,0x8f,0x54,0x3a,0x10,0x8f,0x92,0xdf,0xc1,0x20,0xed,0xd0,0xe2,0x8f,0xf7,0x1d,0x7a, - 0xf6,0x72,0xd4,0x34,0xe2,0xa4,0x5b,0xe0,0xc1,0xcb,0x45,0xc3,0xc4,0x25,0xf2,0xa0,0xd1,0xf5,0xb3,0x6a, - 0x74,0xac,0x5d,0xca,0xe3,0x6c,0x0c,0x4d,0x5b,0xc8,0xf6,0xfb,0x26,0xb8,0x90,0xef,0x5d,0xa4,0xd0,0x52, - 0xb2,0x07,0x11,0x02,0x9b,0x0e,0x47,0xf4,0xf5,0xf5,0x53,0xfe,0x2c,0xfd,0x78,0x82,0x6c,0xec,0xf5,0x34, - 0x59,0x42,0xbb,0x56,0x1f,0x4f,0xf8,0x28,0x49,0x03,0x0a,0xef,0x7d,0x99,0x7c,0xae,0xf2,0xec,0xaf,0xf5, - 0x73,0x72,0xdd,0x97,0x49,0xa3,0x63,0xcc,0x6e,0x15,0xd0,0x86,0xf2,0x4f,0x8e,0x8f,0x3f,0x13,0xde,0x28, - 0x99,0x1c,0xc1,0x3f,0x7a,0x19,0xc3,0xa5,0x6c,0x7f,0x67,0x9f,0x34,0xdd,0xf1,0x58,0x7b,0x7d,0x77,0x93, - 0x74,0xe7,0xc0,0x13,0x07,0x29,0x9d,0x25,0x7c,0xcb,0xff,0xc1,0x29,0xdb,0xe9,0x34,0x0e,0xcb,0xd5,0x96, - 0xfa,0x71,0xb8,0x11,0xcc,0xa8,0x1c,0xe1,0x22,0xe6,0x76,0x2b,0x87,0x44,0x7d,0xc8,0xfa,0xd8,0xae,0x0b, - 0xa7,0xce,0x2d,0x67,0xb3,0xcd,0x66,0x4f,0xc2,0xe1,0x34,0x8f,0x67,0x8c,0xab,0x3b,0x67,0x36,0x07,0xe9, - 0x1a,0xe3,0x02,0x70,0x38,0x23,0x5c,0xc8,0xdc,0x3d,0x3e,0x0e,0x02,0xb3,0x1c,0xe5,0x8c,0x7b,0x2b,0xe6, - 0xd5,0x5a,0x11,0x9c,0x6b,0x3b,0x2a,0xb6,0xf6,0x5e,0xb2,0x1b,0x86,0xfa,0x96,0x20,0xe0,0x0c,0x25,0x37, - 0x14,0x78,0xdd,0xf3,0x67,0x59,0xe7,0xdb,0xb7,0x41,0x5f,0x17,0x89,0x24,0x78,0x83,0xd6,0xb8,0x95,0xe0, - 0x30,0xb7,0xd6,0x59,0x74,0x23,0x9d,0x3a,0xcc,0x74,0xa4,0xe9,0x7e,0x79,0xfb,0x89,0xa0,0x38,0xaa,0xd7, - 0x21,0xee,0xfd,0x53,0xe3,0x7f,0xf0,0xd6,0x66,0x52,0xed,0xc5,0xa9,0xd1,0x14,0xfa,0x7c,0xcb,0xc1,0x7b, - 0x97,0x39,0x14,0xad,0xba,0x9b,0x86,0x94,0xe6,0x24,0xb9,0x27,0x7e,0x4b,0x11,0x64,0xe8,0xbf,0x9c,0x61, - 0xd4,0x93,0x7b,0x02,0x92,0x24,0xe2,0x24,0x2b,0x4b,0xba,0x1d,0x6f,0x25,0x83,0x20,0x62,0x53,0x04,0x55, - 0xf1,0xbd,0x4c,0x9a,0x71,0x69,0xb5,0x0c,0x8f,0x8e,0x20,0x61,0xe9,0x4d,0x59,0x9e,0x48,0x63,0x5d,0x42, - 0x5f,0x96,0xd3,0x78,0xe4,0xd3,0x24,0x47,0x90,0xb2,0xa3,0xb7,0x4b,0x3e,0xc9,0xe8,0x90,0x4a,0x37,0xe6, - 0xe6,0xa1,0x6a,0x52,0xbd,0x4b,0xc0,0xfc,0x0b,0xf3,0xdc,0xab,0xa4,0x36,0xdb,0x9d,0x11,0x26,0x2d,0xe7, - 0x51,0xa1,0xea,0x58,0xa8,0xb4,0x8d,0x2d,0x03,0xb8,0x88,0x75,0x13,0xac,0x4b,0x63,0xe3,0x3c,0xab,0xfe, - 0x19,0x86,0x17,0xd4,0x51,0x3a,0xca,0x15,0xd7,0xb6,0x43,0x7d,0xdb,0x99,0x59,0x5c,0x72,0x48,0xe2,0x52, - 0x55,0x49,0x44,0x3c,0x32,0xfc,0xdd,0xfe,0xe1,0x39,0xda,0x85,0x2e,0xf3,0xf7,0x5b,0xc5,0xde,0xa4,0x08, - 0x44,0x46,0x52,0x75,0x43,0x88,0x45,0x8c,0x4b,0xb1,0xe3,0xaa,0xdc,0x25,0x45,0xa0,0x00,0xb8,0x24,0x61, - 0x1f,0xdb,0x75,0xc1,0xd6,0xef,0x2f,0xbf,0xfc,0x7d,0xed,0x6a,0xcf,0x5b,0x4e,0xfb,0x56,0xb2,0xea,0x02, - 0xa5,0x4d,0x10,0x16,0x79,0x7f,0xf2,0xba,0x25,0xd4,0xb2,0xb7,0xff,0x07,0xaa,0x30,0x8a,0xf4,0xa2,0xec, - 0x01,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb2,0x36,0xfc,0x57, + 0x24,0xbc,0xbe,0x32,0x30,0x6a,0xd1,0x92,0x93,0xcc,0x9d,0x80,0x46,0xf8,0x7a,0x4d,0x3c,0xf1,0x36,0xb6, + 0xb3,0xcc,0x28,0xba,0x3a,0x10,0xd9,0x92,0x10,0x93,0x00,0x03,0x80,0x5a,0x22,0xf1,0xfd,0xed,0x5f,0x3d, + 0x55,0xbd,0x01,0x84,0x9c,0xcc,0x9c,0x7b,0xbe,0xe3,0x63,0x11,0xe8,0x6e,0xf4,0x5a,0x5d,0x5d,0x7b,0x6f, + 0x9f,0xae,0xca,0x69,0x5b,0x54,0x65,0xdc,0x2a,0x9d,0xdc,0x44,0xd5,0xc9,0xaf,0x7a,0xda,0x46,0x59,0xd6, + 0x5e,0x2f,0x75,0x75,0xba,0xa5,0xaf,0x96,0x55,0xdd,0x36,0x3b,0x3b,0x1b,0x39,0x8b,0x6a,0xb6,0x9a,0xeb, + 0x89,0xfc,0x8c,0x4c,0xb9,0x4c,0xc7,0x49,0x1a,0xd9,0x3a,0x7d,0xe1,0x99,0x3e,0x2d,0x4a,0xbd,0xb3,0x23, + 0xbf,0xa3,0x7c,0x31,0x9b,0xc8,0x63,0x7c,0x78,0x44,0xed,0xa6,0x77,0xb5,0x3b,0x31,0xbf,0xa3,0xfc,0xaa, + 0xa8,0xa4,0xf6,0xd6,0x3f,0xaf,0xe3,0xf6,0xbc,0x68,0x94,0x1b,0x42,0x72,0x53,0xeb,0x76,0x55,0x97,0x5b, + 0x7e,0x50,0xc9,0x8d,0x7d,0xde,0xd2,0x71,0x9d,0xdc,0x14,0xa7,0x71,0x79,0x58,0x1f,0x25,0xa6,0x20,0x9e, + 0x6d,0xdf,0xc7,0x17,0x79,0xbd,0x55,0x64,0x48,0xca,0x6e,0x4c,0x5a,0x7a,0xb3,0x56,0xc5,0x2c,0xad,0xd5, + 0xbc,0xca,0x67,0x7a,0x96,0x6e,0x1f,0xac,0xc7,0xe6,0xd3,0x16,0x9f,0x4e,0xf3,0xf9,0x3c,0x2e,0x6c,0x0d, + 0xaa,0x50,0xfe,0x59,0x27,0xf4,0x22,0x9f,0x65,0xdb,0xfb,0x3e,0x63,0x8d,0x66,0xca,0xec,0xc6,0x55,0xa4, + 0x47,0x8b,0x8c,0x26,0x7f,0x34,0xcd,0x4a,0xfa,0xbb,0xcc,0xa2,0x48,0xe9,0x78,0x9f,0x06,0x77,0x18,0xae, + 0x8d,0x2a,0x93,0x9b,0xd6,0x4d,0x73,0x19,0x1f,0x24,0x6b,0xd5,0xcf,0x8f,0x56,0x8d,0xde,0x6a,0xda,0xba, + 0xa0,0x99,0x1c,0xbb,0x71,0xd7,0x98,0x05,0x34,0xaa,0xb3,0x52,0x5f,0x6e,0xe5,0xf4,0xaa,0xca,0xac,0x8a, + 0xf3,0xd1,0xb2,0xae,0xda,0x0a,0x13,0x3e,0xaa,0xf5,0x6f,0x2b,0xdd,0x00,0x04,0x6c,0xaf,0xd0,0xdf,0x56, + 0x97,0xb3,0xb8,0x54,0x41,0x41,0x19,0x95,0xcb,0xa1,0xb7,0x72,0x6d,0xa6,0x2d,0x7e,0x98,0xa8,0x8a,0x7e, + 0xbe,0x48,0x54,0x4e,0x3f,0x5f,0x25,0x0a,0xdd,0xfc,0x6b,0xa2,0xa6,0x59,0x1d,0x37,0xc9,0x78,0x3a,0x7a, + 0xcc,0xeb,0x96,0xab,0xe9,0x68,0x5a,0xeb,0xbc,0xd5,0x59,0xb8,0x4c,0xa6,0xd9,0x9a,0x66,0x73,0xa1,0xeb, + 0x33,0x1d,0x37,0xaa,0x4d,0x68,0x8c,0xd3,0xd1,0xd3,0xbc,0x9c,0xea,0x39,0x1a,0xa0,0xaa,0xed,0xeb,0xc7, + 0xea,0x93,0x2e,0x91,0xf6,0x25,0xd2,0x8a,0xc6,0x17,0xda,0x47,0x02,0x2d,0xcb,0x50,0xed,0xef,0xea,0x6a, + 0x51,0x34,0x1a,0xd9,0x94,0x8a,0xca,0x9b,0x25,0x75,0x65,0x86,0xef,0xa8,0xc3,0x7e,0x7e,0xa7,0xfe,0x79, + 0x44,0x80,0x9a,0xaf,0xe6,0x6d,0x36,0xfd,0xb7,0x26,0x5c,0x5a,0x8c,0x0e,0x05,0xb0,0xb7,0x1e,0xd7,0x75, + 0x7e,0x7d,0x44,0xf0,0x9d,0xad,0x04,0x68,0xa8,0x79,0xf7,0x41,0x11,0x74,0xb1,0x5c,0xcd,0xe7,0xdb,0xb4, + 0x0d,0x06,0x76,0x5c,0xeb,0xbf,0xa8,0x06,0x9a,0x78,0x61,0x32,0xef,0x6a,0x25,0x97,0x2d,0x8e,0x1d,0xe0, + 0xda,0xb8,0xa8,0x8a,0xd9,0xd6,0x3e,0x9e,0x13,0x4a,0xb7,0x2d,0x6e,0xbb,0x16,0x77,0x76,0xe2,0x36,0x3b, + 0x6c,0x8f,0x12,0x85,0x41,0x25,0xa7,0x55,0x1d,0x0b,0xf8,0x12,0x40,0x67,0xed,0x68,0xae,0xcb,0xb3,0xf6, + 0x7c,0x5c,0x3e,0x2a,0xc6,0xe5,0xee,0x6e,0xa2,0xa5,0x51,0x54,0xaf,0xda,0xc3,0xf2,0x48,0x95,0xb4,0x86, + 0x63,0x3d,0xa7,0x49,0xb2,0x5f,0x56,0x5b,0x05,0x6d,0x9d,0xe4,0x2d,0x37,0x14,0x00,0xe0,0x79,0xde,0xbc, + 0xbd,0x2c,0x69,0x7d,0x96,0xba,0x6e,0xaf,0x4d,0xe7,0x55,0x95,0xec,0xec,0x74,0x2b,0xad,0x8e,0x54,0x45, + 0x95,0x32,0xd0,0x35,0x02,0x6d,0xb4,0x6f,0x62,0x82,0x82,0x55,0xb6,0x51,0x69,0x5b,0x7d,0xa0,0xb5,0x29, + 0xcf,0xc6,0x7e,0x61,0x6f,0x8a,0x86,0x97,0x82,0xb6,0xb4,0x79,0x7a,0xb2,0x3a,0x3d,0xd5,0x75,0xba,0x09, + 0x2d,0xdd,0xb5,0x93,0x62,0xbd,0xb9,0xa5,0x3a,0xcc,0xe7,0x53,0x7a,0x7c,0x51,0xd5,0x8b,0x67,0x79,0x9b, + 0x0f,0xd5,0xb5,0x2a,0x05,0xdf,0xcd,0xfc,0xe4,0xda,0xe2,0x3b,0x3b,0x2d,0x4d,0x4a,0xd3,0x02,0x82,0x83, + 0xe4,0x75,0xb7,0x83,0x3f,0x16,0xfa,0xf2,0x4f,0x56,0x1c,0x7c,0xb5,0xb3,0x13,0xbc,0xd0,0x36,0x41,0x2d, + 0x93,0xcd,0x24,0xaa,0x2f,0xa5,0xb5,0x6e,0x47,0x27,0xe6,0x2b,0xfb,0x14,0x76,0x2c,0xf8,0x0c,0x7d,0x93, + 0xa9,0x1d,0xea,0x52,0xc3,0x39,0x21,0xdc,0x52,0xf1,0x37,0xab,0xc5,0xc9,0xf0,0x34,0x97,0x9c,0xd3,0x2b, + 0x2e,0x6b,0x99,0x12,0x42,0x6d,0x7e,0xb0,0x23,0x1c,0xf8,0x78,0x4b,0x00,0x98,0x16,0x85,0xbf,0xa2,0x79, + 0xd3,0x9f,0x5b,0x49,0xe4,0x6f,0x2e,0xe1,0x8b,0x62,0xfe,0xd9,0xaf,0x90,0x3f,0xb0,0xf0,0xf3,0xea,0xe4, + 0x73,0x5f,0x21,0x7f,0xa0,0x2d,0xf3,0x41,0x5a,0xc9,0x14,0xea,0x7c,0x31,0x34,0x2c,0x60,0x84,0x9d,0x1d, + 0xda,0xe5,0xa3,0x65,0xb1,0xd4,0xfc,0xe5,0x0f,0xef,0x5f,0x7d,0xd0,0x79,0x3d,0x3d,0x7f,0x97,0xd7,0xf9, + 0xa2,0xf9,0x93,0xb0,0xd0,0xfb,0xaa,0x07,0x6b,0xbd,0x5c,0x59,0xd6,0xbc,0x9c,0xe5,0xf5,0xec,0x49,0x5d, + 0x5d,0x36,0xba,0x7e,0x5e,0x5e,0xa4,0x1b,0xe7,0x6b,0x1c,0xb4,0xe4,0x96,0xad,0xcc,0x2f,0x8a,0xb3,0xbc, + 0xad,0xea,0xdb,0xdb,0xe8,0xbd,0xce,0xa7,0xed,0x9b,0xbc,0x2d,0x2e,0x34,0x75,0x25,0x73,0x59,0xd8,0x9b, + 0xb3,0xd5,0x14,0x63,0x1b,0xea,0xec,0x65,0x51,0xce,0xaa,0xcb,0xe1,0xbc,0x59,0x35,0x5d,0x2d,0x74,0x49, + 0xcb,0x4c,0xa8,0xe4,0x79,0x3e,0x3d,0x4f,0x73,0xc5,0x07,0x85,0xeb,0xde,0x56,0x1b,0x77,0x4e,0x7b,0xad, + 0xea,0x01,0x82,0x06,0xc7,0xfb,0x00,0x6e,0xd5,0x13,0x3e,0xf7,0x5b,0xa6,0x0e,0x40,0x91,0xf0,0xab,0x5e, + 0x7b,0x8c,0x47,0x94,0x40,0xcd,0x68,0x2f,0xaf,0xcf,0xb8,0x27,0x8d,0x45,0x7f,0x35,0xa1,0xbf,0x9a,0xd0, + 0x5f,0x1e,0xbb,0x2c,0xa9,0xc4,0x9e,0xa5,0xe5,0x5a,0xc9,0x91,0x99,0xf6,0x0f,0x10,0x53,0x20,0xa7,0xce, + 0xba,0x2c,0xee,0x37,0xa8,0x8b,0xac,0xa4,0x8e,0x6e,0xd2,0x52,0x7a,0xd2,0xc4,0xf8,0x38,0xd5,0x6b,0x3a, + 0xb2,0xd6,0x8a,0x76,0xdb,0x20,0x0c,0xb5,0x74,0xaa,0x2f,0xe7,0xf9,0x54,0xc7,0x0f,0xfe,0xe7,0x97,0xe6, + 0x2f,0x0f,0x54,0x14,0x25,0x3e,0x89,0x52,0xee,0x71,0xd2,0x7a,0xdd,0x3d,0xd7,0x7a,0xa7,0x9a,0x47,0x9d, + 0xdd,0x42,0x7d,0x4a,0x8b,0xa6,0xde,0x4d,0x15,0xc8,0x0c,0xc6,0x16,0x71,0x7f,0xae,0x12,0xcc,0x21,0x4d, + 0x58,0xe9,0xe6,0x8e,0xe6,0x8d,0xa7,0x3a,0x9c,0x3a,0x47,0x62,0x8d,0xf2,0xe5,0x72,0x7e,0xcd,0xa3,0xdd, + 0xec,0xa6,0x5b,0xea,0x60,0xd0,0xdb,0xdb,0xed,0x68,0x5a,0x11,0x80,0xd7,0x04,0x65,0x55,0x3d,0x38,0x7f, + 0x9d,0x12,0x23,0x8b,0xc1,0x81,0xf3,0x86,0xd2,0xb1,0x6f,0x87,0xe6,0xa0,0x77,0x60,0xe3,0xa4,0x44,0xea, + 0xed,0x6d,0xac,0x89,0x9a,0x1b,0x5a,0xb6,0x11,0x28,0x8d,0x17,0x44,0x11,0xb6,0xaf,0x9e,0x0f,0x2f,0xec, + 0xa8,0x99,0x17,0x53,0xa2,0x92,0x09,0x06,0xe4,0x31,0xde,0x57,0xfb,0x49,0x42,0x95,0x62,0x5c,0xc7,0xb6, + 0x4b,0x09,0x53,0xaa,0x7a,0xfd,0x6f,0xd1,0x23,0xa0,0x94,0x2d,0x29,0xd3,0x50,0x0f,0xf9,0xbd,0x28,0x5b, + 0x5d,0x4f,0xf5,0x92,0x06,0x4c,0x47,0xa3,0x21,0x02,0x53,0xa6,0x12,0x55,0xad,0x9b,0x25,0xcd,0x87,0x96, + 0xd7,0xb5,0x23,0xf3,0xfe,0x2a,0x64,0xde,0x43,0x21,0xf3,0x0e,0xfe,0x5b,0xe8,0xbc,0x83,0xbf,0x11,0xb4, + 0x6f,0x12,0x94,0x9d,0x09,0xdb,0x3c,0x18,0x98,0xbc,0xa8,0x0c,0xc1,0x77,0xb3,0xaa,0xe7,0xa9,0x07,0x83, + 0xfd,0xa3,0xb5,0xf2,0x6f,0x07,0x47,0x49,0xa2,0x82,0xc2,0x85,0xea,0x0c,0x48,0xdd,0x2c,0x74,0x7b,0x5e, + 0xcd,0xd2,0xe8,0x4c,0xb7,0xd1,0x1a,0xa4,0xe3,0x48,0x52,0x88,0x4a,0x91,0x07,0xa2,0x06,0x5e,0x55,0x97, + 0xba,0x7e,0x9a,0x37,0xc4,0x3a,0xc8,0x14,0x66,0x87,0x8d,0x92,0x13,0x84,0x68,0x95,0xcc,0x52,0x87,0x34, + 0xf2,0x6a,0x7e,0xa1,0xa9,0xcb,0x63,0xc0,0xf4,0xc6,0x4c,0xd9,0xc1,0x8d,0x0c,0x26,0x8a,0xc3,0x41,0xea, + 0xd1,0xaa,0x6c,0xce,0x8b,0xd3,0x96,0x70,0xf7,0xe9,0x6a,0x7e,0x5a,0xcc,0xe7,0x7a,0xa6,0xb0,0x17,0x81, + 0x70,0xf4,0x2c,0xc1,0xa6,0x1d,0xa8,0x51,0x26,0xfb,0x8e,0x2a,0x97,0xab,0xe6,0xfc,0xee,0xfa,0xc6,0xda, + 0xee,0xa6,0x84,0xf6,0xde,0xa8,0x3d,0xd7,0x0c,0x40,0xdc,0x89,0x44,0xb9,0xa7,0x10,0x1d,0x55,0xae,0xa1, + 0xc3,0x68,0xa6,0xe7,0xba,0xd5,0x91,0xe2,0xa9,0x53,0xd1,0x39,0x41,0x29,0xfd,0x54,0x4b,0x34,0xdf,0x44, + 0x47,0xaa,0x03,0xf3,0x7e,0x89,0x89,0x2a,0xcc,0x02,0x9c,0xe5,0x91,0x19,0x8f,0xce,0x4c,0x51,0x6c,0xd7, + 0xab,0xbc,0xbd,0x25,0x04,0x6a,0x57,0xa9,0x55,0x58,0x6b,0xc2,0x5f,0xb4,0xad,0x93,0x4e,0x67,0x96,0x55, + 0x83,0x4e,0x2c,0x57,0xfc,0x37,0x6f,0xa7,0xe7,0x7f,0xbe,0x07,0xc0,0x9b,0x9f,0xeb,0x43,0x3d,0xd4,0x07, + 0x35,0x03,0xc5,0x56,0x9a,0xae,0xf8,0x9d,0x5e,0xff,0x1b,0xbb,0x0b,0xd8,0x68,0xbb,0x18,0x05,0xa4,0x0a, + 0x1f,0xdf,0xbd,0x94,0xc3,0xe8,0x69,0x45,0x6b,0x5e,0xb6,0x7b,0x1f,0xa9,0xf3,0xd1,0x51,0x02,0xe8,0xef, + 0x27,0x66,0x3a,0xe9,0x33,0x54,0xff,0x8d,0x9d,0x76,0xd3,0x2d,0x97,0x46,0xc0,0x8c,0xc5,0x34,0x47,0x17, + 0x1e,0x5c,0xed,0x5d,0x5e,0x5e,0xee,0xd1,0x24,0x2e,0xf6,0x68,0x4c,0xba,0x9c,0x56,0xc4,0x74,0xd2,0x2e, + 0xa0,0x3d,0x9d,0xcf,0xf2,0x65,0x1b,0xd2,0x5d,0xc2,0x0a,0xb6,0xe3,0xbb,0x49,0x86,0x9f,0x5f,0xbf,0xfa, + 0xae,0x6d,0x97,0xef,0x65,0xf6,0x26,0x2d,0x75,0xe1,0x6f,0xc4,0xa1,0x0f,0x94,0xa4,0x95,0x98,0xea,0xa6, + 0xe1,0x5d,0x8c,0x42,0x38,0x8e,0x08,0xe2,0xda,0x3a,0x2f,0x1b,0xf4,0xc6,0x54,0x91,0x1e,0x0e,0x1e,0x1d, + 0x15,0xad,0x59,0x77,0x54,0xe0,0x2d,0x3d,0x19,0xcd,0xd8,0x14,0x09,0x01,0xe1,0xe9,0xd2,0x7a,0xaf,0x42, + 0x49,0xb9,0x57,0x50,0x6c,0xbe,0x28,0x11,0x62,0xf4,0x32,0x21,0x6a,0x72,0xb4,0x41,0x52,0x73,0x86,0x21, + 0x76,0x39,0xbf,0x47,0x12,0x21,0x3f,0xae,0xd1,0xd3,0x3f,0x9c,0xf0,0xf1,0xf4,0x3c,0xaf,0x1b,0xdd,0x66, + 0xab,0xf6,0x74,0xef,0x6f,0x11,0x80,0xc9,0x32,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0x87,0xeb,0xfc,0xb5, + 0xa9,0xca,0x8d,0x2a,0xfe,0xfe,0xe1,0xed,0x9b,0x91,0xa0,0xcd,0xe2,0xf4,0x1a,0x2c,0x58,0xda,0xae,0x8f, + 0xc2,0x19,0x36,0x48,0xfa,0x30,0xdc,0x23,0x60,0xe5,0x36,0x70,0x6d,0xd2,0xd6,0xd7,0x37,0x6d,0xc6,0x35, + 0x2e,0xd1,0x0a,0x4e,0xb6,0x29,0x76,0x18,0x3e,0x59,0xdb,0x8d,0x83,0xda,0x8b,0x85,0xae,0x56,0x6d,0xba, + 0xaf,0xae,0x9a,0xfa,0xf4,0x69,0x55,0x7d,0x2a,0xf4,0x9b,0x7c,0xa1,0xd3,0xe8,0xe7,0x0f,0xef,0x5f,0xec, + 0x7d,0x7c,0xfb,0xfd,0xf3,0x37,0x11,0xe7,0x7d,0x47,0xb8,0x42,0xd7,0x26,0x6f,0x2f,0xcc,0x5d,0xe4,0x57, + 0x66,0x69,0x5f,0x31,0x6a,0x4a,0xf7,0x0e,0xd4,0x45,0x3e,0x2f,0x68,0xb7,0x69,0x22,0x31,0xdb,0xd5,0x10, + 0x01,0xbb,0xd5,0x7e,0x93,0x3d,0xdc,0xdf,0xa7,0xa3,0xf8,0xd1,0x17,0xfb,0xfb,0xeb,0xf5,0xb8,0x19,0x9d, + 0x73,0x0b,0x04,0xc8,0xd3,0x6a,0xb1,0x20,0xb2,0xf9,0xe6,0xf1,0x14,0x38,0x33,0xdd,0x98,0x3a,0xb5,0xd5, + 0x12,0x8d,0xf5,0x80,0xa8,0x9b,0x82,0x9e,0xff,0xf2,0xe0,0x2f,0x11,0x9d,0x8f,0xc5,0x1f,0xa0,0xb9,0x2e, + 0x6a,0x71,0xad,0x01,0xb1,0xdc,0x00,0x1d,0x14,0xff,0x0e,0x66,0xea,0x7c,0x6e,0xa5,0x18,0x79,0xd2,0xc1, + 0x2a,0xcd,0x1f,0x60,0x15,0xec,0xcd,0x9a,0xb7,0xfe,0xdd,0x84,0x97,0xeb,0x53,0xeb,0xeb,0x12,0xdc,0x47, + 0xa4,0x36,0x51,0x0f,0x35,0x81,0xdd,0x0f,0xcb,0xa5,0x3d,0xe9,0x88,0x03,0xd1,0xdd,0x14,0xc6,0x3b,0x9a, + 0xc8,0x4b,0x25,0x73,0xc2,0xa2,0x2c,0xea,0xe7,0x1f,0x11,0x14,0xbe,0x73,0x0a,0xe8,0xe9,0x6b,0x41,0x4f, + 0x07,0x96,0x12,0xf8,0xc2,0x50,0x02,0x5f,0x0a,0x4b,0x7e,0xb0,0x0f,0x9e,0xfc,0x73,0x64,0xbe,0xfc,0x8e, + 0x4e,0xda,0x2a,0xef,0xbc,0x8c,0x4e,0xe8,0x39,0x96,0x04,0xda,0xc3,0x54,0xd5,0x57,0xc3,0xd3,0xe1,0x69, + 0x30,0x22,0x51,0xcc,0xe9,0x1d,0x07,0x27,0xc2,0x5c,0x90,0xdd,0x29,0xd1,0x00,0xc0,0xf2,0x6a,0x49,0x0f, + 0x66,0x8d,0xc6,0x75,0x88,0x69,0x4e,0x13,0x88,0x26,0x79,0x2e,0x96,0x7d,0x8c,0xcc,0xc3,0x9e,0x31,0x4d, + 0xdb,0xc5,0x8c,0xea,0x3c,0x8b,0xaa,0x12,0x44,0xdd,0x35,0x31,0x54,0xad,0xa6,0xbd,0x5b,0x9e,0x11,0x80, + 0x5d,0x64,0xdb,0x07,0x63,0x6c,0xc1,0x01,0x26,0x49,0x06,0x45,0xf4,0x9c,0x19,0xee,0xcf,0xcf,0xaa,0x05, + 0x01,0xac,0xa9,0x91,0x38,0xa7,0xcb,0xa2,0x3d,0x7f,0x5a,0xeb,0x19,0xb5,0x5f,0xe4,0xf3,0x26,0x2a,0xca, + 0xad,0xd9,0xed,0x2d,0xa1,0xa1,0x11,0x21,0x1a,0x50,0x97,0xd2,0x93,0xc1,0xcf,0xa5,0x43,0x10,0x39,0x72, + 0x27,0xf6,0xd5,0x6c,0x54,0x95,0x84,0xa3,0xcf,0x88,0xba,0x08,0xa6,0x8d,0x36,0x3b,0xe7,0x98,0x6d,0xde, + 0xc9,0x00,0xac,0xe6,0x2b,0xa2,0xd3,0x79,0xe2,0x16,0x99,0xbc,0x8d,0x08,0x0a,0xea,0x92,0x76,0x39,0x75, + 0x30,0x52,0x67,0x36,0x75,0x99,0x37,0xcd,0x65,0x55,0xcf,0x90,0x3a,0x5e,0x8e,0x1e,0x53,0x5a,0x55,0x17, + 0xbf,0xf3,0x9e,0xcc,0xa2,0x27,0x79,0x53,0x4c,0xb7,0xa2,0xdd,0x55,0xbc,0xd8,0xa5,0xf3,0x6a,0xf7,0x2c, + 0x59,0xd3,0xa4,0x50,0xc3,0x4b,0x22,0x4f,0x02,0xa2,0x2c,0x00,0x4c,0x55,0xc9,0x38,0xa9,0x13,0x4b,0xc6, + 0xbe,0xee,0xe1,0x83,0xae,0x69,0x3a,0x8a,0xdf,0x89,0xf8,0x55,0xdb,0x04,0x58,0xf4,0xa1,0xe9,0x7d,0x6b, + 0x9f,0xd4,0xec,0xf0,0xfc,0x28,0x1c,0x0c,0x5a,0x23,0x50,0xff,0x92,0x36,0xc0,0x8c,0x69,0xef,0x6b,0x20, + 0x1e,0x1a,0xc3,0x05,0x76,0x00,0x84,0x5e,0xb3,0x51,0xc3,0xa8,0xe8,0xf6,0x76,0xe6,0x28,0x30,0xc2,0xff, + 0x3b,0x3b,0xfb,0xe6,0x1b,0x97,0x44,0xd4,0xda,0x4c,0x5f,0xbd,0xa5,0x45,0x3d,0x85,0xb0,0x20,0x22,0xa2, + 0xfc,0x46,0x78,0x1d,0xa0,0x93,0xc7,0xf3,0xb9,0x45,0xc4,0x82,0x11,0x65,0xdd,0x26,0x39,0x0d,0x77,0x30, + 0x1b,0xe7,0x01,0x0b,0xb4,0xea,0xec,0x86,0xe9,0x8f,0xd6,0x35,0x06,0xa0,0x23,0xee,0x00,0xc8,0x0c,0xac, + 0x73,0x37,0x63,0xe2,0x3b,0x95,0xfa,0xc7,0x8f,0x54,0x56,0xc9,0x48,0xd2,0x83,0x87,0x0f,0xbf,0xc8,0xfc, + 0xc8,0x26,0x0f,0xf7,0xbf,0x4c,0xed,0x8b,0x29,0x83,0xe2,0x1b,0xe5,0xa2,0x37,0xd5,0x96,0x81,0xfb,0xc8, + 0x7d,0xc0,0x15,0x9b,0x0d,0x93,0x96,0x8a,0xd8,0xa3,0xd3,0xe2,0x8c,0x08,0x27,0xcb,0x28,0xcc,0xd6,0xe3, + 0x02,0xdb,0x8c,0x90,0x8f,0x22,0xb8,0xa4,0x01,0xad,0x05,0xb4,0x74,0x5d,0x57,0x75,0xb8,0x16,0xf3,0x78, + 0x1a,0x47,0x6f,0x74,0x4b,0xe0,0xf2,0x69,0xeb,0x39,0x72,0x23,0xd5,0x2a,0x9e,0x82,0x59,0xe2,0x3e,0xbe, + 0x0b,0x2c,0xf9,0x6b,0x93,0xbe,0x45,0xbb,0x28,0xda,0x75,0xab,0xbe,0x1b,0x2d,0x9a,0x2d,0x7d,0x35,0xd5, + 0x1a,0x24,0x0f,0xd5,0x19,0x3d,0x7f,0xfa,0xf6,0xcd,0x9b,0xc7,0x4f,0xde,0xbe,0xff,0xf8,0xfc,0x59,0xd4, + 0xa9,0xbd,0x1e,0x0d,0x89,0x37,0x62,0xb3,0x94,0xd7,0xc0,0x59,0xc4,0xdc,0x1c,0x67,0x04,0x84,0xbd,0x6d, + 0xe8,0x77,0x60,0x02,0x3e,0xb1,0x7b,0x2c,0x4e,0xae,0x19,0xba,0xe2,0x7e,0x7a,0x92,0x0a,0x6b,0x31,0x3e, + 0x26,0x70,0x5b,0x1e,0x4a,0xb6,0x3f,0x31,0x8f,0xb2,0x63,0xde,0x11,0x11,0x9d,0xf7,0x66,0x03,0x4b,0x26, + 0xc3,0x0e,0xd0,0xb8,0xc5,0xf3,0xcb,0x1e,0xe3,0xeb,0x64,0x5e,0xa7,0x04,0x28,0x53,0x83,0xac,0x80,0x60, + 0x22,0x83,0xeb,0x03,0x3e,0x67,0xe2,0xd0,0x9a,0x3e,0xc2,0xba,0xf6,0xda,0xa2,0xd5,0x6b,0xe5,0x84,0xea, + 0x8d,0x98,0xba,0x3c,0xeb,0xa7,0x65,0xd8,0x79,0x5d,0x80,0x64,0xa2,0x62,0xd6,0x49,0xea,0x81,0xac,0x21, + 0x31,0x44,0xf0,0x1c,0xe1,0xa4,0xde,0x04,0xeb,0xa4,0x3d,0xa7,0xe5,0x20,0x8e,0x76,0x90,0x5b,0xaf,0xca, + 0x67,0xd5,0x25,0xa3,0xb5,0x77,0x06,0x97,0x11,0xb2,0x1e,0xe5,0xb3,0xd9,0xf3,0x0b,0x90,0x17,0x45,0x43, + 0xe3,0xa7,0x91,0x44,0x16,0xd3,0x11,0x14,0x0c,0x7c,0x93,0x0c,0xf1,0xe4,0x28,0xf8,0xc3,0xb2,0x5f,0xf5, + 0x8a,0x53,0xfc,0xd3,0x1f,0xb6,0xd5,0xad,0x02,0x73,0x34,0xf5,0x4a,0x0a,0x16,0x2c,0xf8,0x57,0xb0,0x2f, + 0xcc,0x65,0x32,0x9b,0x16,0x9e,0x65,0x33,0x9e,0xf3,0xfc,0x84,0x0e,0x39,0x42,0x85,0x10,0x18,0x1a,0xc8, + 0xc5,0x02,0x85,0x6b,0x1e,0x9f,0x4a,0xb2,0xc2,0x7a,0xd2,0x49,0x79,0xfa,0x6f,0x9c,0xdd,0x74,0x2a,0xdf, + 0x41,0x59,0xe0,0x13,0xc3,0x79,0x8c,0x64,0xa7,0x8f,0xba,0x04,0xdb,0xb8,0x34,0x68,0x81,0x38,0x9b,0x9d, + 0x9d,0xed,0x22,0xb6,0xef,0xc9,0x84,0x78,0xab,0x38,0x32,0x80,0xb5,0x75,0x9a,0x13,0x8a,0x9c,0x6d,0x01, + 0x78,0xb6,0xa4,0xc0,0x16,0xe8,0x63,0xda,0xb5,0xf6,0x03,0x65,0x5b,0x10,0x0c,0x50,0x3a,0xf5,0x53,0x09, + 0xfa,0x36,0x2e,0xff,0xfc,0x68,0x0e,0xee,0x1e,0x8d,0x2a,0x54,0x25,0x23,0xca,0xf9,0xc8,0x64,0xac,0x03, + 0x9e,0xde,0x69,0x9a,0x72,0x57,0xec,0x3f,0x11,0x81,0x81,0xdf,0x54,0x45,0x20,0x6d,0x93,0x21,0x65,0x94, + 0x01,0x02,0x6b,0x84,0x31,0x67,0xa5,0x6c,0x18,0x91,0x85,0xd4,0xc1,0xe6,0xc9,0x0a,0xe2,0x95,0xfe,0x03, + 0x85,0xd2,0x96,0x30,0x1b,0x3f,0xbc,0x7f,0xf9,0xb4,0x5a,0x50,0x4d,0x04,0x95,0x94,0xe9,0xc5,0x7a,0xff, + 0xf5,0xe5,0xfe,0x83,0xb3,0x42,0x45,0xff,0x37,0x94,0xf5,0xfd,0xd7,0x17,0x8f,0x39,0x31,0xed,0x24,0x3e, + 0xfc,0xf2,0xc1,0x99,0x8a,0xee,0x75,0xd3,0x9e,0x72,0x41,0xd5,0x4d,0xdc,0x47,0xc1,0xdd,0x4e,0xda,0x57, + 0x4f,0xb8,0xe0,0x61,0x37,0xf1,0x19,0x27,0x1e,0x45,0x21,0x0f,0xfb,0x19,0x70,0x23,0x8c,0xb0,0xad,0xad, + 0x2a,0xb6,0xe5,0x55,0xad,0x40,0x39,0x95,0x09,0x08,0x4b,0x6d,0x54,0x47,0x94,0x30,0xc4,0x98,0xe9,0x84, + 0x4a,0xe9,0x80,0xc5,0xe2,0xd2,0x66,0xc1,0x0f,0x8f,0xc6,0x9e,0x76,0xd7,0xbd,0xc5,0x1d,0x52,0x7f,0xd1, + 0x92,0x39,0xee,0x90,0x99,0xf7,0x58,0xef,0x66,0xd1,0xe1,0x91,0xe1,0x49,0x6d,0x3a,0x11,0x60,0x46,0x1f, + 0x56,0x0c,0x91,0xe1,0xe0,0xbd,0x46,0xa2,0x86,0x60,0xc6,0x12,0xd4,0x49,0xf5,0xf2,0xc3,0x5b,0xdb,0xc5, + 0x2e,0x13,0xc8,0x7c,0xf3,0x26,0x87,0x07,0x7d,0x2b,0xe4,0x3d,0x84,0x9c,0x93,0xdd,0x28,0x8b,0x76,0x59, + 0xf5,0x06,0x01,0x05,0x08,0xee,0x7c,0xf4,0x6b,0x55,0x94,0x71,0xb4,0x43,0x93,0x6c,0x19,0x69,0x54,0xb4, + 0x9b,0xc5,0x7b,0x07,0xd0,0x83,0x78,0x52,0x65,0x12,0x25,0x13,0xfa,0x93,0xa2,0xec,0x6e,0x95,0xfc,0x31, + 0xc0,0x75,0x08,0xfc,0xc3,0x28,0x07,0x35,0x1b,0xe5,0x21,0x59,0x47,0xef,0xf6,0xc0,0x11,0x91,0x53,0x90, + 0xc0,0x27,0x90,0x8a,0x74,0x9b,0x9f,0xe1,0xe7,0x6a,0x59,0x10,0xb0,0xd3,0xd3,0x29,0x21,0x3c,0x30,0x5c, + 0xc2,0x3f,0x15,0xa7,0x7b,0x8b,0x6a,0x56,0x9c,0x16,0x7a,0xb6,0xd7,0x14,0x84,0x16,0x25,0x6d,0x55,0x6e, + 0xa4,0xce,0xf3,0xa6,0x75,0x65,0xf1,0x5e,0x4d,0x6d,0x1f,0x88,0xbb,0x04,0xf7,0x7d,0x49,0x07,0x39,0x5a, + 0x20,0x94,0x7a,0x75,0xbd,0xd7,0xef,0x68,0xad,0x89,0xa7,0xa7,0xe3,0x14,0x4f,0x74,0x4c,0xed,0xe5,0xa7, + 0x2d,0xbf,0x81,0x98,0xdd,0xa3,0xb1,0x11,0xa5,0x73,0x74,0x07,0x5b,0xc1,0xc2,0x41,0xda,0xe0,0x15,0x24, + 0x2f,0x5e,0xe3,0x4f,0x5c,0xbb,0x5f,0xf5,0x51,0x43,0x0c,0x68,0x1b,0x47,0xbf,0x94,0x04,0x23,0x3d,0xee, + 0xbb,0x0a,0x97,0x81,0x76,0x9d,0xd2,0x19,0x71,0x65,0x75,0xb1,0xc0,0x67,0xab,0x13,0x9a,0xef,0x78,0x9f, + 0xd0,0x4e,0xd2,0x3d,0xab,0x55,0xb9,0x51,0xaa,0xda,0x3d,0x20,0x80,0x90,0xc3,0x33,0xa7,0x23,0x9c,0x85, + 0x4a,0xa6,0x62,0x9d,0x7c,0x93,0xed,0x9b,0xdd,0x33,0x46,0x66,0x06,0x52,0x62,0x6f,0xca,0x04,0x08,0x93, + 0x02,0x13,0xfe,0x66,0x82,0x3f,0xe9,0xe1,0x51,0x02,0x0c,0x45,0x53,0x18,0x1f,0x96,0x47,0x49,0xea,0x72, + 0x76,0x23,0x05,0xd4,0x9c,0x96,0x60,0x78,0x73,0xca,0xf8,0xf3,0x50,0x12,0xcc,0xde,0x5d,0xb4,0xd5,0x24, + 0x54,0x10,0x78,0x45,0x8d,0xb3,0x48,0x68,0x9d,0x50,0x92,0x77,0x20,0x0d,0xe0,0x71,0x4b,0xed,0x9c,0xac, + 0x68,0x07,0x45,0xe7,0xb4,0x84,0x11,0x8c,0x0c,0x08,0x5d,0x8e,0xf0,0x82,0x6d,0x77,0x47,0x91,0x1b,0x3c, + 0xa5,0x52,0x4c,0xb1,0x88,0x70,0x5a,0xcd,0xe9,0xdd,0x3e,0x4e,0xfc,0xa3,0xc7,0x58,0xa9,0xa8,0x40,0x52, + 0xe2,0x6a,0x00,0x9e,0xf8,0x9c,0x7e,0x54,0xc3,0x78,0x26,0x45,0x5b,0x78,0x98,0xd8,0x87,0x50,0xa1,0x32, + 0xf1,0x5f,0xe6,0x0d,0xca,0xe2,0x67,0x22,0x3f,0x41,0xb9,0xff,0xd3,0x69,0x00,0x3c,0x94,0x69,0x04,0x8f, + 0x0a,0x73,0x87,0x3e,0xd2,0x8f,0x5a,0xe6,0xed,0x39,0xe7,0x47,0x0f,0xb0,0x78,0x94,0x6a,0x12,0x46,0x10, + 0x0a,0x3d,0x6e,0xe3,0xfd,0x64,0xe2,0x13,0x51,0x6a,0xd7,0xbf,0x8a,0x78,0x9e,0xd6,0x2a,0x7b,0x10,0x2f, + 0x9a,0x42,0xdf,0xd2,0x04,0x81,0x6c,0x4b,0x1e,0x14,0xa3,0x16,0x32,0x50,0xaf,0x82,0x03,0xf8,0x3f,0x06, + 0xf4,0x63,0x93,0x5b,0xad,0x9a,0xb1,0xc8,0x78,0x3e,0xd7,0x78,0x8b,0xa3,0x3c,0x72,0xe7,0x24,0xad,0x91, + 0xe1,0xc5,0x47,0x76,0x07,0x9a,0xb5,0xf0,0xd2,0x07,0x4b,0x39,0x08,0x14,0x30,0xae,0x2b,0x09,0xfd,0xd1, + 0x9f,0xb4,0xf4,0x06,0x25,0x76,0xfe,0x99,0x4a,0xb5,0x2f,0x80,0x68,0xcc,0x07,0x27,0xe2,0x61,0xbd,0x26, + 0x3c,0xb9,0xa1,0x72,0xdc,0xde,0xff,0xfc,0x19,0x1d,0x28,0x83,0x8c,0xae,0x63,0x41,0xa4,0x18,0xed,0xf2, + 0x2c,0x92,0x0e,0x6d,0x01,0x4d,0x11,0xaf,0xdc,0x6c,0xe5,0xd4,0x97,0x92,0x49,0x9b,0x2d,0xcc,0x6c,0x3e, + 0x05,0x5a,0x58,0x0b,0x54,0x47,0x8f,0x9f,0x3c,0x7d,0xf6,0xfc,0xc5,0xb7,0xdf,0xbd,0xfc,0xfb,0xf7,0xaf, + 0x5e,0xbf,0x79,0xfb,0xee,0x1f,0xef,0x3f,0x7c,0xfc,0xe1,0xc7,0x9f,0x7e,0xfe,0xe7,0xbf,0xf2,0x93,0x29, + 0xb1,0xf3,0x67,0xe7,0xc5,0xaf,0x9f,0xe6,0x8b,0xb2,0x5a,0xfe,0x56,0x37,0xed,0xea,0xe2,0xf2,0xea,0xfa, + 0xf7,0xfd,0x83,0x87,0x5f,0x7c,0xf9,0xd5,0x5f,0xff,0xfb,0x6f,0x5f,0xef,0x3e,0xc8,0xa2,0x71,0xe9,0x25, + 0xd4,0x9e,0xf0,0x50,0x41,0xaa,0x90,0x06,0x5f,0x75,0x92,0xb0,0x88,0x59,0xf4,0x52,0xfa,0xf5,0xd4,0x76, + 0xcb,0x72,0x4a,0x83,0x48,0xca,0xea,0xdb,0x34,0x48,0x98,0xcc,0x4c,0x7b,0x0b,0x61,0x0c,0x41,0x5b,0x93, + 0xed,0xc3,0xf0,0x66,0x5c,0x39,0xe8,0xb9,0x6d,0x70,0x7a,0x4d,0x33,0x3a,0x51,0x54,0xf3,0x5f,0x44,0x38, + 0xe5,0xbb,0xd9,0xd4,0xe6,0xfe,0xf5,0x8b,0x1d,0xfd,0xcd,0x37,0x7f,0xdb,0xa3,0x8c,0xbf,0xfc,0x2d,0x61, + 0x74,0x13,0x17,0x99,0x7c,0xfc,0x94,0x7a,0x4b,0x45,0x9a,0xdd,0x6c,0xf4,0xdf,0x5f,0x25,0xc9,0x37,0x0f, + 0xbf,0xfa,0xca,0x10,0xec,0x18,0x5d,0x39,0xd6,0x99,0x7e,0xf4,0xe8,0x6f,0xb7,0x85,0x3d,0x8e,0xfe,0x97, + 0x11,0xc8,0xcd,0x65,0x5d,0x74,0xb4,0xfa,0x96,0x6a,0x23,0x64,0x75,0x23,0x66,0x20,0x74,0xda,0x37,0x46, + 0x47,0xc2,0x07,0xe6,0x00,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0xb9,0xb3,0x63,0x3e,0xb1, + 0x27,0x15,0x7d,0x87,0xf1,0xf0,0xd9,0x5d,0x02,0x33,0x7f,0xfb,0xfa,0xa3,0x93,0xde,0xaa,0x00,0xb2,0x8b, + 0xe0,0x5b,0xec,0x3f,0xfa,0xb0,0xe8,0x14,0xa8,0x82,0x02,0x33,0x16,0xd0,0x50,0x91,0x0a,0x82,0x0b,0x02, + 0xf2,0xdc,0xe7,0x35,0x7a,0xba,0xaa,0x21,0xf5,0xf6,0xbb,0x90,0x71,0x77,0xd6,0x98,0x33,0x7e,0xbc,0x45, + 0x87,0xbc,0x02,0x73,0x99,0x6e,0x9c,0x4e,0x59,0xef,0xa3,0xd1,0x82,0xf9,0x2c,0x0c,0xe1,0xbd,0x3e,0x7b, + 0x7e,0xb5,0x8c,0xa3,0xf8,0x7f,0x6e,0xc7,0xbf,0xfc,0xd2,0xfc,0x25,0x89,0x89,0x61,0x26,0xf2,0x2d,0x8b, + 0x0f,0xff,0x67,0x7c,0xf4,0x97,0x24,0xf2,0xaa,0x20,0x4d,0xfc,0xe1,0xe6,0x5c,0x1d,0x7e,0x71,0x24,0xf2, + 0x09,0x34,0xbe,0xa8,0x2e,0xba,0xd6,0x11,0xbc,0xbb,0x78,0x51,0x68,0x2d,0x08,0xd4,0x30,0x63,0xa3,0xb2, + 0xba,0x8c,0x93,0xbd,0xbf,0xfd,0xf5,0x4b,0xfd,0x15,0x51,0xd3,0x69,0x7f,0xd1,0x20,0x73,0xea,0x8e,0xa3, + 0xa3,0x3f,0xdd,0x6c,0x87,0x3e,0xf8,0x37,0xc8,0x63,0xd3,0xa9,0x73,0x02,0x9f,0x39,0xa4,0xc5,0x87,0x47, + 0x21,0x01,0x1a,0xea,0x25,0xa9,0x82,0x61,0x45,0x76,0xa7,0x02,0x59,0xa0,0x1b,0xa7,0x6f,0x63,0x99,0x87, + 0xe8,0xdb,0x44,0xeb,0xde,0x29,0x2c,0x94,0xd0,0xde,0x01,0x24,0x0c,0xbe,0x25,0x2e,0x9f,0x6d,0x4c,0x9c, + 0xfd,0x8a,0x88,0x48,0x90,0x6d,0xbd,0x24,0xc3,0xef,0x75,0x2a,0x32,0x14,0x47,0xd6,0xa5,0x32,0x1d,0x1d, + 0x12,0xd6,0x10,0x18,0x11,0x38,0x32,0x57,0x13,0x03,0x4a,0xaf,0xc4,0x22,0xfe,0x87,0xda,0x2d,0xd8,0x1d, + 0x7e,0x86,0x9f,0x65,0x54,0xf0,0xf2,0xd4,0x70,0x7f,0x7a,0x16,0x6f,0x28,0xb0,0x0e,0xbe,0x16,0x09,0x31, + 0x4c,0xf3,0x9c,0x4d,0x20,0xbd,0x1e,0x40,0x40,0x4c,0xbf,0x77,0xf0,0x08,0xb4,0x34,0x40,0x67,0xed,0xe8, + 0x24,0x37,0x62,0xb9,0xed,0xa9,0x91,0xc2,0x30,0x83,0x45,0x0f,0xd9,0x2a,0x76,0xd9,0xca,0x08,0x68,0x94, + 0x93,0xf1,0x7a,0x69,0x2f,0x2b,0xfe,0x44,0x08,0x9c,0x41,0xc6,0xc8,0xd2,0x60,0x97,0x0b,0x45,0x4d,0x4f, + 0x65,0x15,0xd6,0x62,0x45,0xf9,0x2e,0x65,0x24,0xba,0x08,0x53,0xa9,0x13,0xfa,0x1b,0x91,0xe6,0x51,0x37, + 0x1d,0x6f,0xc9,0x1f,0x2a,0x22,0xd4,0x90,0x7a,0x01,0xa4,0x35,0x1a,0x0a,0xf5,0x0c,0xb4,0xae,0x56,0x68, + 0xef,0x5a,0xd6,0x47,0x6b,0xbb,0xa1,0xa9,0x93,0x46,0xe3,0x77,0x7b,0xdb,0xd8,0xc7,0x04,0x1c,0x62,0x57, + 0xdc,0xe0,0xe1,0x9e,0xe7,0x58,0xdb,0xa9,0x91,0x07,0x7a,0x1f,0x9c,0x1a,0x61,0x5d,0xa9,0xf8,0x5a,0x0d, + 0xd4,0x94,0xd3,0x33,0x9d,0x30,0x52,0x21,0xec,0xf6,0x2c,0xaf,0x0b,0x66,0xca,0x6b,0xb8,0x5d,0x4b,0x9d, + 0x14,0x15,0xbc,0x7f,0xae,0x6d,0x5a,0x5f,0xaf,0xa6,0x67,0x3e,0x4a,0xff,0x5b,0x9a,0x8b,0xcf,0x70,0xa3, + 0x76,0x42,0xdc,0x52,0x95,0x1d,0x0a,0x07,0x2a,0x4e,0x20,0x8c,0xf5,0x26,0x23,0xf5,0x27,0xe4,0x05,0x8e, + 0x8e,0x89,0xb7,0xdb,0xdb,0x5b,0x58,0x73,0x1c,0x3f,0x7d,0xfc,0xe6,0xe9,0xf3,0x57,0xc7,0xc7,0xff,0x81, + 0xf4,0xc1,0xd6,0xf6,0xe0,0x7f,0xe2,0xc3,0x7c,0xef,0xf7,0x23,0xfc,0xf9,0x65,0xf6,0xcb,0xee,0x2f,0x7b, + 0xbf,0x8c,0x8e,0xfe,0x92,0x26,0x93,0x5f,0x1e,0xfc,0xf2,0xc0,0x92,0x7e,0xed,0x7f,0x24,0xde,0xf0,0x02, + 0x87,0x49,0x60,0x48,0xf4,0xcb,0x83,0x5d,0x21,0x99,0x77,0x41,0x7f,0xea,0x90,0x20,0x7e,0xb0,0x2b,0xa4, + 0xee,0x1f,0x4c,0x4e,0xd7,0x6a,0xa7,0x43,0xa9,0xb5,0xeb,0x72,0xc0,0x78,0x33,0xdb,0x38,0x32,0x22,0x31, + 0xf6,0x8d,0x76,0xe3,0xf0,0x73,0x62,0x74,0x21,0x18,0x0e,0x52,0x52,0x58,0x37,0x75,0xa8,0x2c,0x3f,0xe9, + 0x50,0x8f,0x04,0xe6,0xd4,0xff,0x16,0x3a,0x84,0x20,0xd3,0xc9,0x12,0xb7,0x03,0x05,0xab,0x23,0x8a,0x20, + 0xd4,0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb5,0x58,0x35,0xed,0xd6,0x89,0xde,0xca,0x9d, + 0xcd,0xd4,0x28,0x32,0x66,0x28,0x63,0xee,0xb5,0x11,0x0c,0x66,0x83,0xca,0x2c,0x98,0x81,0xd0,0x04,0xc9, + 0x07,0x65,0x86,0x0f,0xc6,0x6d,0x27,0x1b,0x52,0xb4,0xbc,0x01,0x5a,0x8a,0xed,0x23,0x57,0x55,0xf0,0x7e, + 0x74,0x69,0x10,0x23,0x78,0x04,0xfd,0x45,0xf7,0x74,0xec,0xe3,0xf2,0x9e,0x3a,0xc5,0x58,0x55,0x70,0x35, + 0x32,0xd8,0x20,0x05,0x87,0x56,0x53,0xad,0xea,0xa9,0x0e,0xbf,0x0a,0x8d,0x0d,0x6e,0x5a,0x1c,0x18,0x6c, + 0x4f,0x54,0x77,0x50,0x51,0x9b,0xe1,0x50,0x95,0x43,0x85,0xe1,0xe7,0xce,0x83,0xea,0xdf,0xd8,0x1b,0x5b, + 0x03,0x28,0xca,0x1a,0x94,0xb1,0xd8,0x51,0xc3,0xa6,0x0c,0x7a,0xcf,0x7e,0x0b,0x77,0xfb,0x40,0x0c,0x28, + 0x33,0xff,0x97,0xdc,0x20,0x34,0x1c,0x1b,0x7e,0x5c,0xe9,0x61,0xb7,0x86,0x61,0x60,0x6c,0x07,0xed,0x60, + 0x6f,0x6f,0x31,0x3a,0xb6,0x88,0x0d,0x8c,0x21,0xfb,0x25,0x45,0xe6,0x65,0x25,0x61,0xeb,0xee,0xae,0xb4, + 0x2c,0x57,0xb7,0x92,0xd0,0xac,0x7d,0xc3,0xba,0xe0,0xf6,0x76,0xd3,0x8e,0x97,0xd2,0x9a,0xeb,0xc5,0x49, + 0x35,0xef,0xa6,0x9d,0x54,0xd5,0x5c,0xe7,0xe5,0xa0,0x5d,0xfb,0xff,0x8e,0x25,0xbc,0x48,0xd8,0xd8,0xf8, + 0x76,0x51,0x0e,0x1a,0xc2,0x5b,0x22,0x9a,0x0d,0x21,0xd8,0x26,0x2f,0x76,0x0c,0x94,0x27,0x8e,0xbf,0xc9, + 0xf6,0x77,0x76,0x5e,0x13,0x89,0x3f,0x3a,0x9d,0x57,0x15,0xe4,0x71,0x19,0xd3,0x53,0x30,0x30,0x29,0x99, + 0xfe,0x0d,0x6a,0x6d,0x7a,0x5d,0xa7,0xce,0x4e,0xa2,0x68,0xd3,0xb3,0xa5,0x9d,0xf4,0x45,0x7e,0x22,0x05, + 0x7f,0x98,0xa4,0xae,0x0b,0xbe,0xd6,0xe9,0x60,0x5f,0xbd,0x14,0x9b,0x38,0x9a,0xfc,0x0d,0x75,0x6c,0xd2, + 0x12,0x61,0xea,0xbe,0x5a,0x19,0x0b,0x49,0x67,0x91,0x69,0x4c,0xe3,0x85,0xcb,0x8f,0x45,0x7b,0x50,0x67, + 0x4e,0x86,0xa5,0x20,0xe6,0xcc,0xf6,0xc7,0xc5,0xa3,0xda,0x9a,0x92,0x15,0x62,0x98,0x79,0x58,0x1c,0x1d, + 0x11,0xae,0xf4,0xfc,0xc2,0x90,0xf6,0xfd,0xb0,0xed,0x0a,0xb2,0x8e,0xd6,0x43,0xc6,0x1d,0x54,0xec,0x68, + 0xed,0xfb,0x38,0x77,0xee,0x08,0xd6,0x8f,0xc0,0xaa,0x54,0xdb,0x40,0xc4,0xc5,0xe2,0xe0,0x6f,0xf6,0x0e, + 0x9c,0x94,0x98,0xbb,0x4c,0x27,0x4e,0xa9,0x0e,0x92,0xa0,0xb6,0xd3,0xce,0x99,0x75,0x6c,0x57,0x1d,0x9b, + 0xdc,0x95,0x59,0xfa,0xb9,0x1c,0x98,0x8f,0x71,0x1f,0x6d,0x78,0x92,0x40,0x1f,0x96,0x47,0x30,0xec,0xa4, + 0x1f,0x58,0x08,0x27,0x61,0xc3,0xb3,0x0d,0x63,0x54,0x23,0x0d,0xa9,0x07,0x0c,0x85,0x0d,0x85,0x31,0xa9, + 0xbf,0x39,0x98,0x78,0xe3,0x56,0x57,0x0e,0x38,0x80,0xfb,0xcd,0xe6,0xbd,0xf6,0xd9,0xc9,0x79,0xcb,0xd1, + 0xb1,0x54,0xe4,0x3c,0x2f,0x54,0xe9,0x3b,0x72,0x2e,0x1d,0x21,0x0c,0x72,0x7b,0xbb,0x3f,0xf6,0x4b,0x6f, + 0xcb,0xee,0x69,0x5a,0x71,0x6f,0x99,0x5b,0x26,0xe3,0x72,0x6f,0x6f,0x9c,0xd4,0x3c,0xa8,0xc3,0x72,0x57, + 0x3b,0xb3,0xdb,0xda,0x57,0x7a,0xd1,0x03,0x24,0x78,0x6f,0xe8,0x04,0xbe,0x1d,0x19,0x66,0xc3,0x49,0x46, + 0xfd,0x17,0x8b,0x8e,0x68,0x02,0x56,0xd3,0x25,0x01,0x56,0xf9,0xc8,0x3b,0x8b,0x10,0x60,0xa1,0x82,0x9d, + 0x9d,0x0b,0x68,0x1f,0x21,0x8c,0x74,0xd0,0xe5,0xab,0x39,0xb3,0xe7,0xb0,0x4f,0xba,0xf6,0x00,0x83,0x6d, + 0x98,0x58,0x2c,0x65,0x8e,0x44,0x3e,0xe7,0x6a,0xfa,0x11,0xa0,0xd9,0xa6,0x83,0x70,0xbb,0xb6,0x85,0x88, + 0x6b,0xd9,0xae,0x77,0x76,0xdc,0x06,0xa3,0x0a,0xcc,0x33,0x95,0x86,0x0e,0x93,0x75,0x0f,0x19,0x4f,0x4d, + 0x20,0xee,0x27,0xb6,0xa5,0x9b,0x24,0x75,0x57,0x3b,0x3b,0xb9,0x07,0x48,0xb3,0x26,0x90,0x5f,0xc9,0x23, + 0x38,0x24,0x7d,0xa1,0xeb,0xeb,0xe0,0x7c,0x0e,0x08,0x4c,0x1e,0x07,0x86,0xbd,0x96,0xca,0x6e,0x6f,0x6d, + 0x65,0xdb,0x07,0x63,0x11,0x68,0x18,0xf0,0xfc,0xa4,0xaf,0x81,0x55,0x88,0x5b,0x0a,0x13,0xbc,0x5d,0x79, + 0xe3,0xdb,0x9e,0xba,0xb6,0x9b,0x7e,0xdb,0x9d,0x96,0xe1,0x95,0x63,0x1a,0xf7,0xc6,0x5f,0xb6,0xf5,0x00, + 0xac,0x8f,0xfb,0x18,0x64,0x63,0x0d,0xa9,0xeb,0xb6,0xbe,0xc4,0xb9,0xd3,0x99,0x9e,0x11,0x2f,0xec,0x6a, + 0x3a,0xf1,0xbb,0x8e,0xc6,0xb7,0x69,0x36,0xae,0xd9,0x64,0x9a,0xc9,0x31,0xd9,0x10,0x7c,0xf8,0xf9,0x3d, + 0x11,0x6e,0xb6,0x4b,0x5f,0x17,0x44,0x3d,0x51,0x12,0x0a,0xa8,0xf6,0xdd,0xbc,0x7c,0xf1,0x57,0xac,0xc6, + 0xed,0xed,0xd7,0x5f,0xe1,0xd7,0x7f,0x7e,0x65,0xf5,0x76,0xc9,0x8d,0x99,0x50,0x39,0x7d,0xad,0xdb,0x11, + 0x67,0x53,0xfd,0xf3,0x95,0x4e,0x4b,0xa5,0xe9,0x40,0xd3,0x75,0x7e,0x32,0xd7,0xe9,0xf6,0x76,0xad,0x20, + 0xd1,0x90,0x97,0x7d,0x63,0x09,0xb1,0x32,0x99,0xfb,0xeb,0x00,0xc9,0xdc,0x0b,0xce,0xa3,0x01,0x85,0xf3, + 0xce,0xce,0x83,0x92,0xfd,0x22,0x58,0x27,0xfa,0xc0,0x50,0xe8,0xa1,0xa1,0xa0,0xaf,0xea,0x53,0xcf,0xc2, + 0xa9,0xa5,0xb5,0xe0,0xc3,0x5b,0x75,0x7f,0xfc,0xc9,0xe5,0xbf,0x7d,0x6a,0x4c,0x05,0x0c,0x0a,0x98,0x5a, + 0xe1,0xce,0x5b,0x31,0xeb,0x35,0xa8,0x80,0x6a,0xa4,0xb6,0xf3,0x33,0xe5,0x58,0xe2,0xe9,0x79,0x31,0x9f, + 0xd5,0xba,0x04,0xf3,0x05,0xeb,0x0f,0x82,0xe4,0xf9,0x42,0xb1,0x72,0x93,0xdf,0x91,0x91,0x37,0xd7,0xe5, + 0xf4,0x45,0x0e,0x33,0xf9,0x6b,0xaf,0x4e,0x1d,0x95,0x60,0xb8,0x51,0xb5,0x48,0xf2,0xda,0x62,0x0a,0x4c, + 0x6e,0x1e,0x29,0x95,0x80,0x37,0x63,0x10,0xe6,0x12,0x4f,0x89,0xb5,0xa5,0xfe,0x70,0x11,0xf3,0x4c,0xe9, + 0xa7,0xe5,0x53,0x69,0x88,0xd2,0xdd,0x33,0xa7,0x9b,0x8e,0x73,0xba,0x1b,0x04,0x3d,0x7f,0x98,0xd2,0xda, + 0xbd,0x9c,0x71,0xba,0x79,0x96,0xfa,0xe7,0x34,0x5e,0xf6,0xbc,0xd4,0xa2,0x8e,0x35,0x03,0xa3,0x97,0xda, + 0xbd,0x64,0x8f,0x83,0x1c,0x18,0x16,0x25,0x50,0xde,0x96,0x61,0xe1,0x32,0x2c,0x5c,0x76,0x0b,0x13,0xbe, + 0xf1,0x33,0xfe,0xb8,0xbf,0x63,0x1c,0x92,0xee,0xa2,0x5d,0x73,0xd0,0x96,0x7c,0xc2,0xe2,0x7c,0xcd,0x68, + 0xad,0xe8,0x27,0xf0,0x17,0x09,0x6a,0xfd,0xe0,0x90,0x9e,0xb8,0x04,0x6d,0xc7,0x1d,0x07,0x9e,0xb6,0xb6, + 0x86,0x48,0x6e,0x67,0x41,0x28,0x77,0x7c,0x5c,0x9d,0x1c,0x1f,0x47,0x6c,0xac,0x22,0xcf,0xe1,0x47,0x4d, + 0x3d,0x41,0xef,0x24,0x23,0xcd,0x89,0x6c,0x3f,0xaf,0x56,0xf3,0x19,0xcd,0x36,0x21,0x0e,0x82,0xd0,0xed, + 0xef,0x4b,0x36,0x12,0xec,0x63,0xc3,0xdb,0x5b,0x10,0x5b,0x94,0x63,0x36,0x4f,0xd1,0x3c,0x87,0x57,0x4b, + 0x53,0x9c,0xb0,0xb5,0x2d,0x7d,0xc8,0x4e,0x0a,0x44,0xc5,0x62,0xde,0x78,0xd0,0x0d,0xeb,0x2e,0xb1,0x04, + 0x3c,0xaf,0x17,0x8b,0xa7,0xd5,0xaa,0x6c,0x77,0x77,0xe9,0xe0,0xf2,0x63,0xfc,0x18,0xaa,0xd3,0x05,0x11, + 0xe3,0xdb,0x7f,0x96,0x84,0x7e,0x4d,0x53,0x67,0xba,0x0d,0xdc,0x03,0x9f,0xe9,0x66,0x5a,0x17,0xb0,0x9c, + 0xe7,0xd9,0x61,0x74,0x9f,0x13,0xba,0x3f,0x20,0x72,0x31,0x1f,0x85,0x9b,0xd3,0x4a,0x88,0x73,0xc2,0xd8, + 0xa8,0x84,0x50,0x29,0x3f,0x36,0xf4,0xb8,0xca,0xb6,0x0b,0x3a,0x12,0x70,0x12,0x7e,0x06,0x1b,0x84,0x58, + 0x60,0x63,0xe3,0x2b,0xaa,0xb2,0x6f,0x5a,0xad,0xb3,0x66,0xd2,0x58,0xa2,0xd3,0xab,0x3f,0xfe,0x59,0xd2, + 0x46,0xab,0xa9,0x3c,0xcd,0x4d,0x45,0x2d,0x2d,0x61,0xb9,0x91,0xa8,0x15,0xbd,0xae,0xf0,0xea,0x93,0xfa, + 0x27,0xce,0xce,0x4e,0x40,0xf1,0x77,0x20,0xcc,0xec,0x7f,0x71,0x4b,0xd2,0x7d,0x77,0x24,0x5a,0x02,0x0d, + 0xc3,0x4e,0x4c,0xbc,0xac,0xb5,0x7f,0xfa,0x5c,0x8b,0x90,0x8d,0xb3,0x11,0x46,0xcc,0xe2,0x16,0xbd,0x56, + 0x4d,0x38,0x4a,0x6d,0xc9,0x9b,0xee,0x30,0x35,0xa1,0xda,0xfa,0xf6,0x56,0x6f,0xb3,0x09,0xea,0x36,0x9e, + 0xe3,0xe9,0x64,0xea,0xe9,0xb0,0x94,0xba,0xe3,0xe6,0x5c,0xc3,0xea,0xbf,0xac,0x5a,0xd0,0xbf,0x6c,0x79, + 0x1f,0x80,0xc3,0xdb,0xc0,0x3c,0xa0,0x0f,0x82,0xb4,0x76,0xb1,0x3f,0x6e,0xdc,0xd9,0xcb,0x34,0xfa,0x22, + 0xbf,0x72,0xa4,0x24,0x34,0x82,0x8e,0x54,0xd4,0xea,0x80,0xaa,0x53,0x25,0xe0,0x44,0xb3,0xff,0x29,0xf6, + 0x11,0x3f,0xf5,0x5d,0x46,0x7d,0xd5,0x62,0x20,0x5b,0x1a,0xd1,0x91,0xdd,0x2d,0xde,0x33,0x49,0x00,0xfd, + 0xf6,0xb6,0x86,0xa5,0x96,0x81,0xeb,0x49,0x99,0xd6,0x93,0xf8,0x23,0x21,0x18,0x3e,0x43,0x78,0x14,0x84, + 0x8c,0x30,0xd7,0x76,0xac,0x20,0xec,0xac,0xf5,0x6d,0x19,0xe0,0xeb,0x5f,0xdd,0x3e,0xbf,0x63,0xc8,0xe1, + 0x68,0x02,0x53,0x07,0xbf,0x91,0xc7,0xbe,0x4f,0xe1,0x5e,0xbb,0xbd,0x15,0xd2,0x18,0xc6,0x45,0xd6,0xda, + 0x57,0x1f,0x09,0x9a,0x0b,0x3b,0x16,0xae,0xc0,0x2b,0xd7,0x99,0xd0,0x3c,0xc3,0xc1,0x1d,0x36,0xaa,0xdf, + 0x9a,0x86,0x26,0x81,0xc6,0x69,0xdc,0x3c,0xca,0x2d,0x14,0x36,0xc0,0x6e,0x20,0x2c,0xb3,0xfc,0xb0,0x39, + 0x3a,0x02,0x80,0x82,0x56,0x38,0x65,0x52,0x68,0x52,0xc5,0x35,0xfb,0x37,0x42,0x97,0xf2,0x2a,0xc6,0xc6, + 0x4f,0xb1,0xec,0x25,0x3d,0x0c,0xd0,0x94,0xcf,0x7b,0x22,0xba,0x72,0xd2,0xdb,0x73,0x75,0x36,0xe8,0x27, + 0x67,0x5d,0x87,0xd9,0x59,0x8e,0x7a,0x30,0x74,0x20,0x4f,0xda,0xa0,0x50,0xeb,0x49,0x74,0xd3,0xab,0x62, + 0x9d,0xea,0x49,0x1b,0xb6,0x67,0x4a,0xbc,0x8a,0x3f,0xd7,0x24,0xd3,0x30,0xf8,0x83,0x86,0x3f,0xd7,0x6c, + 0x50,0x90,0xd8,0xbe,0x54,0xa7,0xc1,0xb0,0xdf,0xf5,0xe5,0x70,0x93,0xd6,0xaa,0xf0,0x69,0x3b,0xf5,0xd1, + 0xc4,0x44,0xa7,0xd0,0xf3,0x07,0xdf,0xbf,0xf4,0xe4,0x8e,0x08,0x7c,0xba,0x5c,0x8f,0x91,0x14,0x04,0xba, + 0xa0,0x8b,0xb8,0xc0,0x46,0x2d,0x7c,0x15,0xcf,0xec,0xcc,0x07,0x52,0x00,0x57,0xdd,0xb4,0x26,0xf4,0x42, + 0xf0,0x55,0x8f,0x57,0xf0,0xe0,0xa3,0x03,0x8a,0xdd,0x1e,0xf1,0x07,0x8d,0x0e,0x59,0xf3,0xb1,0x2c,0x98, + 0x50,0x95,0xf1,0x2e,0xea,0x8b,0x5e,0x2c,0x44,0xd3,0x7e,0x5c,0x36,0x62,0x09,0x24,0xeb,0xcb,0x00,0x77, + 0xb3,0x1e,0x6f,0xec,0x8f,0x52,0x9c,0xd2,0xe9,0x88,0x75,0xe8,0x0f,0x5c,0x4d,0x5f,0x40,0x11,0x4b,0x5c, + 0x07,0xec,0x82,0xfc,0xf0,0xb2,0x24,0xb8,0x3b,0xca,0x6e,0x90,0x25,0x6a,0x2e,0x6f,0x69,0x54,0xd9,0x1a, + 0xf9,0xdc,0x00,0x8a,0x28,0x13,0x7c,0xdb,0x1c,0x29,0xfe,0xb0,0xa1,0x0f,0x01,0xb6,0x93,0x22,0x95,0xef, + 0x8b,0xf5,0xd8,0xf4,0x37,0xcb,0xd7,0x40,0x99,0x77,0x0c,0xa9,0x28,0x31,0xf7,0xe1,0x98,0x5c,0xe2,0xe7, + 0x06,0x26,0x33,0xcd,0x04,0x43,0xc8,0x99,0x13,0xd7,0xc6,0x9c,0xf9,0x0d,0x8c,0x6b,0x52,0x3c,0xaf,0x87, + 0x87,0x90,0xcb,0x10,0xcc,0x31,0x58,0x1e,0xe6,0xc4,0xb3,0xd1,0x1f,0x1a,0x43,0x93,0xd0,0x7a,0xcb,0xf7, + 0x39,0xa1,0xf8,0x24,0x95,0xe7,0x66,0xbd,0xee,0x0f,0xc3,0x0e,0x42,0x8f,0x66,0x45,0x4d,0xfd,0x25,0xea, + 0xd5,0x2c,0x8e,0x6d,0xa5,0x0e,0x5a,0x91,0x99,0x1e,0x0f,0x2c,0x7e,0x01,0xb2,0x80,0xa3,0x6b,0xc0,0xc0, + 0x3f,0x2d,0xd4,0x6a,0x09,0xeb,0x42,0x9a,0xc2,0x04,0x4a,0x7f,0x13,0x7f,0x43,0x9b,0xf0,0x12,0xdc,0x44, + 0xc1,0x36,0x52,0x80,0xc2,0x02,0xc6,0x81,0x4a,0x8f,0x16,0xc5,0x15,0x91,0x32,0x7e,0x7c,0x74,0xf6,0x35, + 0x99,0x4d,0xb6,0x53,0x94,0x3f,0x6a,0xc6,0x39,0xf8,0x4c,0xfe,0xd4,0xe6,0xd2,0xb8,0xa9,0x12,0x6e,0x66, + 0x4a,0x27,0x11,0xcd,0x3a,0x6a,0x99,0x4a,0x44,0x02,0x7a,0x48,0xfc,0xbb,0x4e,0x80,0xa8,0xa6,0x44,0xf2, + 0x70,0xba,0xd9,0x21,0x2b,0xbf,0x31,0x5e,0xf8,0xbd,0x35,0xe4,0x6d,0xe3,0xe6,0x02,0xc8,0x16,0x03,0xa1, + 0xa1,0x60,0x00,0x56,0x6a,0x03,0xde,0x59,0x28,0x9d,0x4b,0x30,0x68,0xb6,0x44,0x15,0x94,0xa8,0xa4,0x44, + 0x9e,0x5d,0x95,0x71,0xe5,0xa5,0x13,0x54,0x2a,0x27,0xe8,0xa3,0xb1,0xa4,0x05,0x8b,0x25,0x50,0x12,0x7f, + 0xf3,0x50,0xb8,0xf2,0xa6,0xbf,0xf5,0xe1,0x2c,0xa7,0xaa,0x6c,0x9b,0x56,0x4d,0x31,0x5f,0x0b,0x69,0x0c, + 0x9a,0x7d,0x1f,0x3f,0x11,0x79,0x9c,0x2a,0x46,0x7c,0x02,0x82,0x3e,0xa1,0xf3,0x11,0x0d,0x45,0xc6,0xbd, + 0x32,0x4a,0x26,0x39,0x31,0x6f,0xe9,0x7b,0x23,0x24,0xb3,0x45,0x61,0xf8,0xbf,0xcd,0x2a,0xed,0x9c,0x7e, + 0x3e,0x19,0xff,0xd7,0x3c,0x63,0x42,0xda,0x49,0x24,0xf3,0xe4,0x26,0x1f,0x32,0xfd,0x3b,0x85,0x07,0x94, + 0x6b,0xc1,0x6e,0x0a,0x6d,0x7d,0x3a,0xdd,0x39,0x00,0x22,0xf6,0x9e,0x41,0x18,0xb2,0xd3,0x24,0x6a,0x82, + 0x17,0x79,0x0e,0x64,0x8b,0x80,0xc1,0x89,0x3a,0x47,0xc7,0x9c,0x43,0xa9,0x93,0xe0,0x79,0x48,0x44,0x0b, + 0x9f,0xe1,0x17,0x5e,0xb8,0x9f,0xbd,0x8e,0xb5,0x0c,0x76,0x52,0x3b,0x6a,0xa7,0x26,0x70,0x05,0x4a,0x6a, + 0x13,0xc3,0xaf,0xf7,0x69,0xe8,0x71,0x3f,0x01,0x7c,0xc8,0x87,0x38,0xa7,0x89,0xef,0x67,0x34,0xde,0x6c, + 0xc2,0xad,0xde,0xeb,0xc0,0x3e,0x0a,0xa3,0xf7,0xdc,0xa1,0xd1,0xf2,0xb3,0x43,0xb7,0x2b,0x1e,0xff,0x72, + 0xb9,0x9b,0x3c,0x08,0xf0,0xb8,0x3e,0x3c,0xa0,0xb1,0x45,0xbe,0xc2,0xf7,0xfe,0x40,0xef,0x1f,0x1b,0x16, + 0xe0,0x5e,0x8b,0x74,0xf3,0xb5,0xf5,0x7a,0xb5,0x61,0x3e,0x6a,0x4f,0x58,0x96,0x8f,0x6a,0xcb,0xf9,0xbf, + 0x66,0x61,0x98,0xfd,0xc0,0x8b,0x62,0x9c,0x24,0xc1,0x35,0xfd,0x24,0x58,0x71,0xed,0x11,0x46,0xa6,0xc7, + 0x75,0x56,0x8f,0xee,0x2d,0x73,0x62,0xa6,0xda,0xb1,0x37,0x20,0x72,0x4b,0xc9,0x3e,0x04,0x4f,0xf3,0x25, + 0x55,0xa8,0x67,0x8c,0x0b,0xdc,0xd7,0x15,0x21,0xc4,0xea,0x51,0x61,0xfb,0x55,0x61,0xa7,0xd7,0xd7,0x3c, + 0x3c,0x98,0x40,0x62,0x47,0xc8,0x5a,0xd5,0x4a,0x1a,0x37,0x1d,0xf4,0x12,0x8f,0x9f,0xa8,0x57,0xb5,0x8a, + 0x3a,0x6d,0x6c,0x9d,0x57,0xd5,0x27,0xf8,0xc3,0xff,0x64,0xba,0xec,0x07,0xf1,0x53,0x30,0x88,0x5f,0x4b, + 0xe9,0xda,0x77,0xa2,0x73,0xe7,0x96,0xcd,0x1c,0xf6,0xb2,0xc2,0xc0,0x25,0x52,0xa1,0x6b,0xff,0x07,0x2b, + 0xf5,0x8d,0x8c,0xa9,0x75,0xf8,0x1d,0xf5,0xe1,0x87,0x8d,0x2e,0xfc,0x10,0x74,0x61,0xfb,0x1d,0xe4,0x59, + 0x2f,0x4b,0xda,0x7f,0x03,0x3e,0x46,0xf0,0x62,0xa7,0x1d,0x6d,0x35,0x34,0x63,0xf3,0x2e,0x4d,0x74,0x84, + 0xcb,0x3f,0x12,0x39,0x33,0xab,0x33,0x23,0x76,0x6a,0xb3,0x65,0x6d,0xdd,0xce,0x93,0xf1,0xd2,0x4a,0x82, + 0x33,0x2f,0x4c,0xd4,0xf4,0xac,0xbd,0x14,0x48,0xb3,0x24,0x4f,0x1f,0xc5,0x41,0x95,0xdf,0x05,0xa7,0x1e, + 0x16,0x8d,0xaa,0x61,0x5b,0x8a,0x9e,0x22,0x49,0x9c,0x11,0x9d,0x80,0xd3,0xcd,0x8b,0x40,0x4b,0x54,0xd2, + 0x11,0xf0,0xb1,0x98,0x62,0x35,0xf8,0x54,0x2b,0xd9,0x27,0x1e,0xaa,0x9a,0x19,0xf8,0x0a,0xf4,0x79,0x5f, + 0x9d,0xd7,0x93,0x79,0x1d,0x27,0xe9,0xaa,0x86,0x81,0xce,0x76,0x3b,0xac,0x9f,0x31,0x9a,0xb4,0x24,0x90, + 0xa3,0x0c,0x29,0xd7,0x4a,0x28,0xd7,0xfc,0x30,0x7e,0x47,0x9a,0x2b,0x00,0xbe,0x4b,0x39,0x52,0xa4,0xba, + 0x43,0x2a,0x18,0x13,0x0b,0x0a,0xe9,0x23,0x18,0x61,0xc7,0x21,0xbf,0xa8,0xab,0xdf,0xe1,0x8e,0x2d,0x36, + 0x55,0xda,0xd0,0xea,0xf6,0x3c,0xd6,0x21,0x3b,0x56,0x30,0x94,0x97,0xb0,0x20,0xa4,0xc3,0xd9,0x1a,0x76, + 0x96,0xf0,0x3e,0xa0,0x77,0xb8,0x8a,0xe4,0x86,0xd6,0xd1,0x1d,0x5a,0x07,0x06,0x3b,0x35,0x9f,0x6c,0x2e, + 0xd2,0x4e,0x9d,0xc5,0x55,0x8f,0x3e,0x4f,0x36,0xbe,0xa9,0xe8,0xab,0x23,0x8e,0xac,0x90,0xd0,0xac,0x1f, + 0xd7,0x09,0xfd,0x1f,0x4d,0xe9,0x28,0xa8,0xc3,0x05,0xfd,0x2d,0xee,0xc6,0xd0,0x32,0x2a,0x3d,0x2f,0xdc, + 0x56,0x20,0x0c,0x4e,0x4b,0x3e,0xae,0xb7,0x37,0x68,0x18,0x27,0xba,0x0e,0x14,0x6f,0x5e,0xb6,0x37,0xf6, + 0xf8,0xa0,0x34,0xa0,0x37,0xa8,0x88,0x80,0x98,0x24,0xac,0xa1,0x75,0x32,0x71,0x6e,0x1a,0xe1,0xb3,0x7c, + 0x8f,0xbf,0x8f,0x8d,0x30,0xc1,0xd9,0xff,0xab,0x46,0xd1,0x81,0xcf,0x8d,0xe5,0x72,0xba,0xd3,0xd4,0x83, + 0x1a,0x98,0x32,0x45,0x44,0xb4,0xc0,0x49,0x0d,0xe4,0xdc,0xc6,0x6c,0x23,0xd7,0xd2,0x91,0x3f,0xa1,0xbf, + 0x0d,0xea,0xc6,0x79,0x28,0xa5,0xb3,0xdf,0xb0,0x2c,0xaa,0x26,0x7e,0x9d,0x8d,0x37,0x1b,0xb5,0x1a,0x11, + 0x35,0x4e,0x4c,0x2d,0xc1,0x31,0xa3,0x10,0x7a,0x82,0x4f,0x1c,0xd1,0x47,0xfc,0x04,0x33,0xf5,0x24,0x49, + 0x1b,0x3a,0x45,0xa6,0x54,0xcb,0x94,0xbb,0xda,0x28,0xae,0x6b,0x9a,0x24,0xbe,0x3f,0x25,0xaf,0x47,0x0e, + 0xf2,0xb4,0x88,0x63,0xd3,0x9b,0x44,0x5a,0x91,0x0e,0xda,0x16,0x82,0x85,0xf9,0x7b,0x6c,0x86,0x18,0xe8, + 0xb5,0x92,0x9b,0x6a,0x58,0x88,0xaa,0xe6,0x32,0x1a,0xa2,0x1d,0xd6,0x75,0x57,0x80,0x04,0x81,0x18,0xe1, + 0x5d,0xc8,0xff,0x46,0xc0,0x80,0x30,0xe1,0xf0,0x6f,0x44,0x25,0x25,0xe6,0x94,0x83,0x3d,0x21,0xad,0xc3, + 0x98,0xa7,0xa7,0xa1,0xd9,0x40,0x8f,0x53,0x2d,0xe3,0x82,0x94,0x81,0x9e,0xd8,0x52,0x66,0x46,0xb3,0xd7, + 0xd0,0x08,0x91,0x2e,0xbb,0x3f,0xa7,0x59,0xc0,0x07,0x53,0x45,0x9f,0xa8,0xc6,0x14,0xc3,0x26,0x66,0x01, + 0x58,0xe3,0x47,0xf5,0x2d,0x73,0x81,0x66,0x64,0xd8,0x31,0x00,0x22,0xa1,0x16,0x40,0xcd,0x78,0xf6,0x1c, + 0xe1,0x51,0x00,0xf6,0xd5,0xed,0xad,0xe1,0x6b,0xf9,0x95,0xce,0x20,0x53,0xb8,0xe8,0x17,0x2e,0xba,0x85, + 0x0b,0x14,0x5e,0x6f,0x1e,0x58,0x3f,0x87,0xce,0x16,0xcc,0x7f,0xc3,0xf4,0x07,0x72,0x48,0x6c,0x6c,0x63, + 0x62,0x6f,0x45,0x96,0xfe,0xb3,0x7f,0x85,0xcc,0x5a,0x0c,0xa6,0x5c,0x37,0xaf,0x59,0x29,0x7c,0x7b,0xfb, + 0x2d,0x02,0xb9,0xc8,0x0b,0x74,0x92,0xed,0xe1,0x07,0x56,0x8b,0xba,0x73,0xfd,0x63,0x7e,0x26,0xd1,0x00, + 0xb2,0xd6,0x52,0x3f,0xb4,0x0d,0xe0,0x41,0x60,0x89,0x61,0x50,0x1d,0x41,0x63,0xff,0xec,0x84,0x79,0x71, + 0xbd,0x01,0xad,0x10,0x0a,0x67,0xfd,0x07,0xff,0x30,0x76,0x0b,0x7d,0xe1,0x42,0xf2,0x19,0x01,0xbf,0xe5, + 0x52,0x40,0xab,0xf2,0x4a,0xd4,0xec,0x16,0x01,0xf1,0x69,0x4f,0x9a,0x4c,0x9b,0xe6,0x9f,0x94,0xeb,0x26, + 0xbc,0x0e,0x28,0xd1,0xb6,0xb5,0x07,0x57,0x39,0xb9,0xc6,0xf1,0x4e,0x70,0x27,0xf2,0x20,0x79,0xeb,0xe9, + 0xe8,0x74,0x2b,0xf3,0xc8,0x99,0xa7,0xa7,0xbd,0xdc,0xd2,0x55,0x76,0x4d,0x1d,0x53,0xbc,0xd3,0xc5,0xdc, + 0x8a,0x92,0x69,0xce,0x28,0x55,0x68,0xbe,0x40,0x6b,0xdd,0x86,0x7c,0x98,0x70,0x5a,0xdb,0xad,0x57,0x58, + 0x78,0x0c,0xd4,0x09,0x69,0x66,0x85,0x68,0x46,0x1e,0xc9,0x9c,0x6d,0x9e,0x55,0xbc,0x31,0x50,0x05,0x4b, + 0x11,0xf3,0xb6,0xad,0x1b,0xf7,0x40,0x08,0xac,0x6a,0x9d,0x1f,0x71,0x98,0xa8,0x2a,0x2b,0x3f,0x17,0x7b, + 0xbc,0xca,0xcb,0xb6,0xb7,0x59,0x51,0x01,0xe9,0xa5,0xe8,0x8c,0x73,0xfe,0x20,0x89,0x4b,0x0b,0x08,0x6c, + 0xce,0x61,0x43,0xd0,0x1d,0x1e,0x11,0x5a,0xe0,0x1d,0x55,0x05,0x32,0xa0,0xc6,0x7c,0xc5,0xe8,0xac,0x81, + 0xa6,0x12,0x3f,0x28,0x3c,0x8e,0x5a,0xbd,0x58,0xce,0x89,0xc9,0x02,0xdc,0x55,0x10,0xf5,0x4f,0xa6,0x5c, + 0x81,0x41,0x13,0x53,0x74,0xcd,0x88,0xb4,0x6f,0x6f,0xe9,0x8b,0x74,0x6a,0xeb,0x5f,0xbb,0xd8,0x47,0x2b, + 0xc1,0x51,0xe5,0xe1,0xea,0xc8,0xe8,0x96,0x8a,0xd6,0x3b,0x4c,0x23,0xd9,0x47,0x16,0xf1,0x9a,0xfc,0xf6, + 0x2e,0x18,0xdd,0xee,0x02,0x29,0x11,0x31,0x5b,0xbc,0x2b,0x78,0x8f,0x05,0x8a,0xfd,0x36,0x50,0x68,0x1a, + 0x5e,0xed,0x0e,0x48,0xed,0x41,0x35,0x28,0xd3,0x09,0x3e,0x17,0xe5,0x54,0x4a,0xbc,0x0f,0x3d,0xe1,0x20, + 0x64,0x4d,0xe7,0x11,0xcd,0xfe,0x80,0xc6,0x91,0xd5,0xea,0x2c,0x5c,0x1d,0xb7,0x66,0x2f,0x1a,0xea,0x34, + 0x19,0x27,0xac,0xa5,0x3e,0x2e,0xca,0x9c,0xb9,0xdf,0xcf,0xd1,0xbb,0x4d,0xeb,0x68,0x6d,0xab,0xdd,0x3e, + 0x16,0xb6,0xf9,0xa5,0xf9,0x9a,0xe8,0x2d,0xc5,0x8d,0x59,0xaa,0xd4,0x32,0xee,0x1b,0x25,0x2d,0x0d,0xd0, + 0x6d,0xdd,0x1b,0x78,0x04,0x3d,0xba,0x09,0x5e,0x40,0xd0,0xf5,0x67,0xeb,0x9e,0x5d,0xe5,0x70,0xde,0x58, + 0xf5,0xe4,0x72,0x58,0x13,0x0b,0xc7,0x24,0x15,0x71,0x3d,0x04,0x35,0xb3,0x28,0x14,0x0b,0x4e,0xdb,0xae, + 0x48,0xc3,0x92,0xea,0x86,0xc5,0x0d,0xc4,0x01,0xbc,0x97,0xca,0xfe,0x5e,0x02,0xcd,0x57,0xba,0xa8,0x99, + 0x2e,0xfa,0x44,0x09,0xb2,0xaf,0x04,0x89,0xbc,0x1b,0x59,0x1a,0x9c,0x46,0x43,0x64,0xd0,0x77,0xf4,0xc2, + 0x8e,0x97,0xcc,0x02,0xea,0x05,0x4c,0x15,0x50,0x20,0x8d,0x76,0x43,0xac,0xb0,0x42,0xe0,0xaf,0xc7,0xa0, + 0x09,0x85,0x8e,0x55,0x9a,0x87,0x7f,0x05,0x7b,0xa4,0x3a,0x34,0x92,0x0a,0xcd,0x7d,0x89,0xdc,0xda,0xd3, + 0xf4,0x87,0x68,0xca,0x0f,0x88,0x49,0xf5,0xa1,0x7e,0x74,0xe5,0x68,0x8e,0x0f,0xe8,0x2e,0x74,0x8c,0xd9, + 0x55,0x7d,0xf8,0xa1,0x3e,0x4a,0xa8,0xa0,0xfa,0x54,0xb3,0xd8,0x96,0xe9,0x8f,0x51,0xbd,0x2a,0x63,0x6b, + 0x8c,0x75,0xaf,0x76,0xb4,0x4b,0x9d,0x5d,0xb9,0x17,0xaa,0x25,0x73,0x55,0xa2,0x90,0xa5,0xa7,0xa9,0x26, + 0xe8,0xc5,0x9f,0xd6,0x19,0x3a,0x7d,0xd0,0x91,0xb4,0xfc,0x01,0xa9,0x1d,0x2e,0xf2,0xbe,0xc2,0xfa,0x41, + 0x98,0xbb,0x8d,0x68,0xa1,0x65,0x72,0x47,0x45,0xbe,0x12,0x50,0x7e,0x76,0xf5,0xf0,0x1d,0xa8,0xae,0x8b, + 0xc5,0xb8,0x1e,0x1d,0x5f,0x62,0x25,0x74,0x4d,0x40,0x55,0x42,0x9e,0x7d,0x5c,0xd0,0xd9,0xb5,0x22,0x04, + 0x35,0xdb,0xd9,0xa1,0x55,0x27,0x4e,0x49,0x44,0x35,0x0c,0x0f,0x84,0xe9,0xd5,0xdf,0xa9,0xd8,0xaf,0xc0, + 0x4b,0x17,0x6d,0x55,0xc1,0x5b,0xf8,0xef,0xc4,0xfa,0xf0,0xfa,0x9c,0xce,0x09,0x7d,0x44,0xc1,0xea,0xcc, + 0x1d,0xce,0xfe,0xb5,0x86,0x0a,0x66,0xd3,0x9e,0x8f,0xad,0xc8,0xa8,0x3f,0x04,0x80,0x6b,0x45,0x85,0x1a, + 0xbd,0x69,0x37,0x2d,0xd9,0x88,0xf2,0x77,0x97,0xae,0xa6,0xa4,0x4f,0x83,0x66,0x4f,0x5d,0xb3,0x02,0x91, + 0xac,0xd4,0x1a,0x92,0x4a,0x95,0x93,0xd8,0x74,0xac,0x9e,0x2c,0x59,0xb2,0x5a,0xda,0x4e,0x9c,0x25,0xa9, + 0xcd,0x2b,0xf1,0x77,0x52,0x83,0x02,0x40,0x40,0x3b,0x02,0x61,0x9a,0x2f,0x5b,0x1e,0x79,0xe9,0x99,0xfd, + 0xaa,0xc4,0xdf,0x09,0xff,0x4d,0xcf,0x92,0x3b,0xfb,0xab,0xbb,0xfd,0x5d,0x86,0xf8,0x72,0x43,0xa5,0xc4, + 0x76,0x76,0xc7,0x38,0x77,0x57,0xb4,0x0a,0x3f,0xc9,0x6a,0x21,0x9a,0xdf,0x60,0xba,0x11,0xed,0x38,0xa6, + 0x87,0x05,0x77,0xed,0x35,0x6c,0x72,0x35,0x34,0x13,0x90,0xfe,0x26,0x2a,0xd0,0x48,0x69,0xaf,0x0b,0xd2, + 0xa2,0xbb,0x08,0x2d,0x5c,0x5a,0x2f,0x4c,0x72,0xa1,0x7b,0xa0,0x24,0x82,0xd4,0x55,0x21,0xe2,0x94,0x31, + 0x3f,0x4f,0xd4,0xa6,0x1c,0x8c,0x35,0x81,0x8c,0x91,0x69,0xd3,0xdc,0xbb,0x14,0x5f,0x70,0x11,0x0f,0x7b, + 0xcb,0x15,0x8f,0x32,0xdb,0x3f,0x36,0x5a,0xfa,0xb6,0x9c,0xbc,0xd7,0xa7,0x73,0xe4,0x54,0x97,0xe5,0xf7, + 0x62,0x22,0x31,0x3a,0x2d,0xe6,0xad,0xae,0x87,0x0c,0x9c,0xff,0x8c,0x06,0x71,0xe4,0xb5,0x7c,0xeb,0x24, + 0xed,0x59,0x5f,0x0c,0xf0,0x23,0x37,0x5e,0x12,0x01,0x02,0x96,0x28,0x03,0x44,0x26,0x1d,0x41,0x80,0x0a, + 0x69,0xe4,0xb8,0x19,0xf3,0x68,0x1a,0x16,0x35,0x5d,0x14,0x33,0xec,0x23,0xa6,0xf4,0x83,0x14,0x22,0x88, + 0xe8,0x9b,0x2c,0x48,0x81,0x70,0xf6,0x84,0x06,0xfb,0x69,0x4d,0x6c,0x82,0x3d,0x7c,0xc0,0xf7,0x6d,0xc3, + 0xf6,0xd0,0x4a,0xca,0x20,0xad,0xa4,0x0f,0x05,0x32,0xa6,0xd2,0xb0,0x15,0x99,0x71,0x8d,0x03,0x30,0xee, + 0x14,0x71,0x04,0xad,0xd3,0xb5,0xb3,0x27,0x0a,0x16,0xf9,0xa2,0x15,0x1b,0x15,0xc7,0xe2,0x82,0x67,0xda, + 0x94,0x4a,0x43,0xc0,0x37,0x10,0x5a,0xc8,0x88,0xe0,0x9d,0x96,0xdb,0x59,0x74,0xa9,0x8a,0xd0,0x5d,0xee, + 0x51,0x50,0xf5,0x28,0x67,0x71,0x4d,0x8d,0x8e,0xd2,0xe6,0xe6,0x78,0xae,0x5e,0xfa,0xbe,0x69,0x43,0xb8, + 0x59,0x35,0xd7,0x49,0x15,0xb5,0x61,0x45,0xd5,0xee,0x41,0x58,0x4f,0x61,0x49,0xdb,0x0d,0x53,0x9a,0xb0, + 0xaa,0xa6,0xd7,0xcb,0xa6,0xdf,0xcb,0x69,0xd6,0xa0,0x83,0xae,0xb3,0x53,0xe2,0x18,0x95,0x97,0xc5,0x1a, + 0x8a,0x98,0xd1,0xe5,0x8f,0x88,0x0d,0xc0,0x01,0x12,0x02,0xe5,0xfd,0x22,0xd8,0x39,0x2c,0xdf,0xa2,0x86, + 0x78,0xc7,0xde,0x6b,0x60,0xa9,0x30,0xfb,0x40,0x44,0x9b,0xdd,0xac,0x15,0x62,0xb7,0x31,0x2d,0x5b,0xf3, + 0x9e,0xb9,0x88,0x2f,0x62,0xbc,0x24,0x2c,0xf7,0x2e,0x32,0x6c,0xb9,0xdb,0x5b,0x1d,0x3a,0x39,0x9b,0xaa, + 0x6c,0x25,0x39,0x94,0x1b,0xa3,0x63,0x02,0x9a,0x99,0xae,0x99,0xbb,0xc2,0x77,0x44,0x59,0x6a,0x1b,0x2d, + 0x17,0x3a,0x3f,0x14,0x77,0xf6,0x43,0x13,0xa9,0xa2,0xe7,0xfc,0xe7,0x68,0x46,0x75,0x83,0xd2,0x29,0xe2, + 0x82,0x76,0xb4,0x42,0x67,0x21,0xae,0x7a,0x21,0x66,0xc1,0x96,0x18,0x50,0x91,0x6c,0x45,0x84,0x46,0xa0, + 0x0e,0x3f,0x0e,0x48,0xc2,0xeb,0xfe,0x74,0x64,0x74,0x84,0xd0,0xc2,0xc0,0x7e,0x07,0x08,0x9e,0x08,0x1b, + 0x67,0xd6,0x38,0xe9,0xc2,0x5d,0x91,0x4c,0xd8,0xbb,0xd9,0x7b,0xbf,0x12,0x43,0x54,0x40,0xb2,0x9b,0xd6, + 0x93,0x4f,0x25,0x2d,0x04,0x08,0xe9,0xb4,0x4f,0xfc,0x1f,0xbb,0x16,0x0d,0x3b,0x59,0x82,0xc3,0x06,0x47, + 0xb9,0xa9,0xf2,0xa6,0x39,0x5f,0x20,0x6b,0x6c,0x44,0x06,0xfe,0x08,0x2a,0x44,0xc6,0x3f,0x9d,0x13,0x6f, + 0xcf,0xae,0x99,0xbc,0x07,0xae,0x85,0x99,0xa3,0x97,0x6b,0x14,0x49,0x68,0x3d,0x42,0x92,0xbc,0xb5,0xdc, + 0x81,0x79,0x60,0x21,0xf2,0x38,0x87,0x5e,0x9c,0x46,0x0d,0x63,0xf0,0x1f,0x1a,0x3e,0x0e,0x62,0x48,0x12, + 0x0a,0x44,0x21,0x9b,0x55,0x0b,0x24,0x34,0x10,0x41,0xb8,0x17,0x30,0xe0,0xa9,0xa9,0x83,0x33,0xf8,0x09, + 0xa9,0xeb,0x02,0x18,0x25,0x87,0xc4,0x1d,0x4c,0xb4,0x70,0xb4,0x15,0x04,0x18,0x31,0x82,0x52,0x70,0xe1, + 0xaa,0x64,0x06,0xfe,0xd0,0x9c,0xdf,0x44,0x38,0x15,0x47,0x9d,0xb3,0x15,0x5f,0xb1,0xe8,0xcb,0x51,0x8c, + 0x53,0xa1,0xf6,0x1b,0xe2,0xf2,0x7d,0x50,0x30,0x6f,0xcd,0xd5,0xa5,0x01,0xf9,0xf8,0x69,0xd8,0xc2,0xe7, + 0x63,0xad,0x35,0xf7,0xb0,0x9f,0x06,0x46,0x04,0xfb,0x0e,0x30,0x6a,0x19,0x44,0x3a,0x47,0x75,0x6f,0x89, + 0xeb,0x64,0xf2,0x98,0xfe,0xa4,0x4f,0xf1,0x27,0xbe,0x6a,0x63,0xf9,0x24,0xeb,0x40,0xd7,0x48,0xea,0x7d, + 0xcf,0x30,0xfe,0xa2,0x04,0xdc,0x7b,0x3d,0xaa,0x85,0xfd,0x77,0x70,0x07,0x17,0xf1,0x2a,0x6b,0x56,0x61, + 0x0f,0x23,0xdf,0x1d,0x1f,0x47,0xbb,0xad,0xda,0x3e,0x48,0x3a,0xe7,0xcf,0xa5,0x23,0x15,0x4c,0xf7,0xae, + 0x5a,0x63,0x44,0x43,0xbc,0x2a,0x3e,0xd1,0xbb,0x71,0x39,0x89,0x8e,0xe1,0x25,0x1d,0x45,0x12,0x80,0x28, + 0x98,0x92,0xab,0x36,0x10,0xcd,0xde,0xc9,0x60,0x4b,0xdc,0x53,0xcf,0x5f,0x32,0x41,0xc7,0xa1,0x68,0x0d, + 0x3a,0xf5,0x8e,0x04,0x9c,0x7c,0xaf,0x35,0xea,0xd4,0x5d,0x34,0x5c,0x3b,0xf1,0xde,0x3d,0xdb,0x5a,0x60, + 0x72,0xe6,0x3a,0xe0,0xed,0xad,0xc4,0xa0,0x0e,0x26,0x57,0x5a,0x21,0xf5,0x2d,0x0d,0x25,0x0b,0xf6,0xe2, + 0xa7,0x80,0x4d,0x81,0x22,0x5e,0x27,0x9e,0xae,0xaf,0xe4,0xcf,0x84,0x11,0x10,0x9e,0x92,0x34,0xe0,0xbf, + 0x6a,0x91,0xa0,0x05,0xba,0x3e,0x42,0x9d,0x90,0x40,0x8e,0x59,0xb7,0x57,0x4c,0x0e,0x8f,0xac,0x96,0xba, + 0x30,0xfe,0xe4,0x9b,0x60,0xf4,0xb4,0x15,0xbf,0xb2,0xe3,0x2a,0xbb,0x84,0x91,0xd9,0x71,0xc9,0x21,0xd7, + 0x8f,0x21,0x1f,0xa3,0x9f,0x79,0x76,0xc1,0xa9,0x6d,0xb6,0xe0,0xdf,0xdf,0xb2,0x6b,0xfc,0x14,0xd9,0x31, + 0x7e,0x16,0xd9,0x09,0xa7,0x9e,0x66,0x67,0xfc,0xfb,0x29,0xbb,0xe6,0xdf,0x93,0xec,0x98,0x7f,0x2f,0xb2, + 0x4f,0xf8,0xa1,0xf1,0x22,0xe2,0xc6,0xf1,0x2a,0xab,0x38,0xf9,0x2c,0xfb,0x14,0xf4,0xe0,0xb1,0x4c,0x5a, + 0x28,0x26,0x24,0x06,0xd9,0x80,0x99,0x38,0x64,0xb0,0xa7,0x92,0x89,0x94,0x2a,0x1a,0x5e,0x2d,0x2f,0xce, + 0x22,0xac,0x36,0x99,0x7c,0x52,0x67,0x26,0x26,0xe9,0xdc,0x44,0x89,0x69,0x32,0xd9,0x86,0x17,0xa5,0x0d, + 0xf8,0x89,0x93,0x88,0x8d,0xd8,0x88,0xe2,0xc9,0xcd,0x3b,0x6d,0x7d,0xc9,0x66,0x3c,0x3e,0x40,0x1c,0xd7, + 0x2d,0x5b,0x22,0xac,0xbb,0xa6,0xa1,0x86,0x28,0x2a,0xc4,0x95,0x2e,0x17,0x1a,0x10,0x71,0x57,0xe0,0x53, + 0xb7,0x3d,0x1d,0x4f,0xad,0x73,0xa1,0xdd,0x39,0x59,0xae,0x82,0xf3,0x22,0xf3,0x4d,0xc6,0x89,0xda,0x38, + 0x93,0x60,0x19,0xee,0xdf,0x30,0x04,0x44,0xa5,0x38,0x6e,0xc4,0xbe,0x6e,0x62,0xa8,0xce,0x8d,0x70,0x28, + 0x56,0x5a,0xf2,0xb6,0x45,0xf4,0x7e,0x83,0x78,0x57,0xee,0xbc,0xac,0xd8,0xf4,0xc9,0x9b,0xec,0xf9,0x1a, + 0x55,0x20,0x11,0xc9,0x68,0x4c,0xd5,0x3a,0xbd,0xbb,0x0d,0x4b,0xd7,0x75,0x1b,0x09,0x68,0x99,0x0f,0xed, + 0x1d,0x56,0xcb,0xac,0x6b,0x15,0xcb,0xe5,0xc0,0xfa,0x0c,0xf3,0x6b,0x08,0x1e,0xd1,0xae,0xb4,0xb1,0xb5, + 0xaa,0x5b,0x51,0x1f,0x1d,0xea,0x39,0x86,0xa3,0x21,0x2b,0xa2,0xcc,0xb9,0x9f,0xad,0xac,0x74,0x8e,0xca, + 0x0f,0x59,0x79,0x98,0x09,0x99,0x33,0x03,0x0f,0xb9,0x59,0x31,0xc3,0x87,0x73,0x82,0x1b,0xa7,0xbc,0x8c, + 0x83,0x38,0x59,0xb5,0x38,0x35,0xe3,0x9c,0xa2,0xd2,0xac,0xaf,0x61,0xf1,0xa3,0x79,0x86,0x87,0xae,0x97, + 0xb1,0xf9,0x34,0x23,0x9d,0xb3,0x71,0x6b,0x67,0x41,0x19,0x9b,0x34,0x36,0x75,0x22,0x4e,0x11,0x21,0x1b, + 0x53,0xab,0x79,0xeb,0xd5,0x1b,0xa4,0xb2,0xb0,0x4c,0x24,0x7e,0xbc,0x36,0x4d,0x62,0x35,0x17,0x3e,0x29, + 0x13,0x41,0x3a,0xe1,0x9b,0x55,0x08,0xbd,0x76,0xf2,0x5b,0x22,0xad,0xb4,0x27,0xad,0xda,0x47,0x7a,0xdc, + 0x42,0xf4,0x00,0xcc,0x7d,0x8f,0x0a,0x4d,0xf5,0x0f,0x7c,0x34,0xc5,0xc9,0x5a,0xcd,0xb3,0x93,0x8e,0x52, + 0xc6,0xf7,0x3f,0x83,0x78,0xb5,0x22,0x60,0xbf,0xbd,0x5d,0xc5,0xec,0xb2,0xd3,0x2b,0xda,0x9d,0x24,0xa6, + 0xca,0x24,0x08,0x19,0xfa,0x15,0x73,0xec,0x94,0x65,0x56,0xc7,0x73,0x75,0xea,0x5d,0x27,0x62,0x2e,0x38, + 0xb0,0x6e,0x4b,0xf6,0x96,0x9c,0xb4,0xe1,0x9c,0xee,0xec,0x48,0x2a,0x57,0x91,0xea,0x78,0xe9,0xa5,0xa0, + 0xc9,0x60,0x34,0xe7,0xa0,0x00,0x7f,0x88,0x20,0x60,0xbd,0x24,0xae,0x4b,0xa1,0x2e,0xbb,0xd6,0xe1,0x28, + 0x68,0xcc,0x26,0x03,0x76,0x01,0x5c,0xcc,0x2f,0x5f,0x77,0xf5,0xb8,0xa8,0x79,0xc7,0x34,0x01,0xb0,0x60, + 0xdf,0x37,0xcf,0xaf,0x27,0xae,0x20,0x4d,0x45,0x4a,0x3c,0xe9,0x47,0x09,0x9c,0x16,0x6a,0xe4,0x7a,0x03, + 0x6d,0x03,0xe0,0x8b,0xc3,0xcf,0x65,0x26,0x95,0xa9,0xf9,0xf6,0xf6,0xe1,0xfe,0xbe,0xe9,0x98,0x89,0xc6, + 0x06,0xc7,0xf7,0x3f,0xd3,0x82,0x5c,0x41,0xc1,0x55,0xd9,0x2f,0x13,0x60,0xb2,0xed,0x03,0xe5,0xda,0x9b, + 0x74,0x46,0x98,0xfa,0xef,0xd7,0x1e,0xf6,0xac,0x76,0x61,0x4d,0x33,0xb9,0xa2,0xad,0xe3,0x45,0xd0,0x7d, + 0xb4,0x11,0x98,0x96,0xd6,0xb1,0xc7,0x48,0x1d,0x49,0x64,0x06,0x41,0x2d,0x27,0xbc,0xd6,0x84,0xf9,0x25, + 0x32,0x9f,0x56,0xa6,0x31,0x04,0xc0,0x33,0x78,0x3f,0x25,0xbc,0x9f,0x9f,0x11,0x45,0x4c,0x88,0x8a,0x5a, + 0xb6,0xc8,0x63,0x5c,0x65,0x15,0x53,0xf0,0xbf,0x02,0x83,0xd0,0xbc,0x54,0xa3,0x05,0x91,0xb6,0xf3,0xc0, + 0x82,0x33,0x60,0xb2,0x10,0x98,0x1a,0xb9,0xa0,0x10,0xf9,0x81,0xcf,0x18,0x22,0x2d,0x99,0xff,0x8e,0x58, + 0x18,0xdd,0x2b,0xa0,0x21,0x0b,0xa3,0x12,0x45,0x09,0x37,0xe1,0x71,0x5c,0xca,0xb1,0xc4,0x22,0xe2,0xa5, + 0x25,0x16,0x13,0xd6,0x76,0x98,0x2f,0xb8,0x2e,0x63,0x69,0x52,0x8e,0x8c,0x73,0xa0,0x10,0x85,0x63,0xea, + 0x1f,0x11,0x7f,0xc9,0x04,0x7f,0xb3,0x43,0xfb,0x05,0xa8,0xa9,0x93,0x7c,0xfa,0xc9,0x1d,0xe2,0x5c,0x28, + 0xe5,0x42,0xfd,0x32,0x6b,0x5a,0x55,0x4b,0xf6,0x57,0x42,0x38,0x9f,0x7a,0x1c,0xd0,0x89,0xc0,0xe5,0x0a, + 0x7a,0xdb,0x2e,0xc2,0xb3,0xb9,0xc3,0x27,0x34,0x6b,0x74,0x90,0x09,0x71,0x0b,0xaf,0x70,0x5f,0x4c,0xc7, + 0x30,0xc3,0xd1,0xf1,0xca,0xd3,0x52,0x73,0x26,0x7c,0x6d,0x70,0x4f,0x22,0xff,0xe7,0xc9,0xf8,0x5b,0x3a, + 0x0d,0x56,0x8a,0x36,0x14,0xc8,0xb3,0xdb,0x5b,0xbc,0x4e,0xe5,0xf5,0xc0,0xd1,0xb1,0xcd,0x7a,0x0d,0xc1, + 0xb9,0xc1,0x85,0xb6,0x43,0xb6,0xc3,0xf9,0x7c,0x08,0x7a,0xba,0x9a,0x44,0x1c,0xe9,0x66,0xc0,0xa6,0xcf, + 0x79,0xb7,0xa7,0x49,0x47,0x68,0x3e,0x25,0x3c,0xb7,0x3a,0xca,0xde,0xc4,0x2b,0xea,0x0c,0x93,0x02,0x86, + 0x8a,0x03,0xba,0xe2,0xb1,0x26,0x70,0x4a,0x89,0x61,0xca,0x2e,0xaf,0x0a,0x39,0x5c,0xa3,0xcf,0x91,0x57, + 0x9e,0xde,0xb9,0xb0,0xaf,0x38,0xb2,0x68,0xca,0xd9,0x04,0x85,0x50,0x61,0x3e,0x12,0xc2,0x37,0x30,0x38, + 0x98,0xd3,0xd9,0xa9,0x02,0xa7,0xa6,0x0d,0x9d,0xdf,0x69,0x78,0xe2,0xaa,0xd3,0xc0,0xc2,0x3e,0x87,0x23, + 0x27,0xab,0x32,0x62,0x2a,0x85,0x4d,0x40,0x50,0x23,0x0f,0x0c,0x5f,0x9c,0x99,0x49,0x19,0xda,0xb5,0xa7, + 0xb0,0x85,0x39,0x95,0x4d,0x20,0x9d,0x5c,0x82,0x90,0x62,0xa9,0x35,0x7e,0xe9,0x45,0x3c,0x1e,0xde,0x96, + 0x2a,0x9c,0xf6,0x1c,0x01,0x8e,0x68,0xe3,0x19,0x10,0x98,0x51,0x39,0xe6,0x4d,0x2b,0xcc,0xeb,0x8c,0x49, + 0x05,0x6e,0x68,0x96,0xac,0xb7,0x3b,0xd2,0x40,0xab,0xa5,0x6c,0x9d,0x82,0xb2,0x67,0xa0,0xf0,0xae,0x0e, + 0xc5,0xa6,0x86,0xac,0x7d,0x57,0x8b,0xc4,0x53,0xbe,0x82,0x66,0xa0,0xc8,0x9e,0xc3,0xf9,0x69,0xec,0x52, + 0xb2,0x7a,0x12,0xa2,0x8d,0x4d,0x69,0x9c,0x83,0x85,0xd6,0x3d,0xc2,0xb3,0xd6,0x3c,0x12,0x70,0x15,0x44, + 0x9f,0x10,0x5a,0x60,0x28,0x43,0xb3,0xe7,0x01,0xdc,0x4b,0xfc,0xd4,0xa9,0x53,0x95,0x88,0xfb,0x45,0x74, + 0xb1,0xd2,0x7b,0xee,0x54,0xd8,0x23,0x4a,0x1f,0x54,0xc2,0x6e,0x7c,0x3e,0x89,0xe8,0xe5,0x9c,0xf9,0x8d, + 0x4a,0x0d,0xba,0x7d,0xe4,0xea,0xe6,0x29,0xa1,0x2d,0x42,0x46,0xce,0xea,0x29,0x3d,0x55,0x8e,0xfa,0x4c, + 0x97,0x8c,0xa4,0xa6,0x1e,0x6b,0x11,0x1f,0x3f,0x87,0xcf,0xab,0xb7,0xb4,0x06,0x89,0x6e,0xb0,0x17,0x91, + 0x50,0x56,0x79,0xd9,0xe5,0x61,0x72,0x36,0x82,0xcb,0x61,0xd6,0x10,0x4f,0x33,0xc0,0x7d,0x4e,0x04,0xbf, + 0xf4,0x21,0xa1,0x15,0x5d,0x49,0xc6,0xb3,0x3a,0x90,0x3f,0x17,0x1d,0x82,0x0a,0x51,0x90,0x41,0x70,0xe4, + 0xd6,0xfa,0xc1,0x69,0xdf,0x80,0x8a,0x3b,0x05,0x0a,0xd6,0xb7,0x23,0xca,0x19,0xf8,0x36,0xe2,0x66,0xc3, + 0x92,0xdd,0x7e,0x35,0xc3,0xc7,0x2e,0x2e,0x0e,0x00,0xe4,0xe6,0x90,0x7c,0x10,0x6c,0x84,0x84,0x2c,0xa1, + 0x74,0x11,0x94,0xa5,0x72,0xbd,0x80,0xf3,0x9f,0xc2,0x9d,0x51,0x74,0x64,0x3e,0xab,0x27,0x44,0xd9,0xc4, + 0xab,0xac,0x49,0x26,0x87,0x9f,0x68,0x64,0x47,0x3d,0x2b,0xdb,0x95,0x8f,0x67,0x45,0xe4,0x83,0x8f,0x40, + 0x83,0xe9,0x03,0xb2,0x41,0x24,0x1a,0x11,0x3b,0xc1,0x16,0xba,0x0a,0x6d,0xa1,0x5b,0x9a,0xa3,0xea,0xb0, + 0x39,0x4a,0x86,0x3c,0x60,0x89,0xac,0x21,0xaa,0xf0,0xf4,0x90,0x28,0x28,0x17,0x4d,0xe4,0xa8,0x67,0x96, + 0x3f,0x4d,0x26,0xd6,0xc9,0xeb,0x9b,0x7d,0x1a,0xe1,0xcf,0x31,0xd5,0x58,0xc4,0x53,0x05,0xbb,0x13,0xf6, + 0xc8,0x27,0x3e,0x91,0x08,0x34,0x1a,0x19,0xcd,0xcc,0xcf,0x31,0x47,0xc9,0x38,0x05,0xfa,0xf9,0x14,0xcf, + 0x59,0xb7,0xb6,0x3b,0xa5,0x3c,0xd1,0x64,0xe3,0xe6,0x2b,0x73,0x2b,0x00,0xed,0xfd,0x40,0x21,0x78,0x4a, + 0x6b,0x96,0xa4,0x30,0x7a,0x9c,0xa0,0x8a,0x49,0xaf,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0xfe,0x04, + 0x9c,0x97,0xfe,0x4c,0x7f,0xa5,0xcd,0xfe,0x07,0xd2,0x5c,0x4a,0x08,0xb7,0x72,0x62,0x32,0x5e,0xeb,0x29, + 0x94,0x91,0x4c,0x6c,0x4c,0xc1,0xa6,0xca,0xfa,0x33,0x28,0x31,0xd7,0x4a,0xdc,0xf7,0x05,0x40,0x39,0xda, + 0xcd,0x65,0x60,0xf4,0xf7,0x38,0xb2,0x9d,0x45,0xa3,0x1e,0xb7,0xad,0x69,0x5d,0x8c,0xe8,0x27,0xc5,0x32, + 0xbe,0xac,0xd9,0x66,0xe3,0x4f,0xaa,0x55,0x36,0x99,0x76,0x42,0x14,0x0e,0x44,0x25,0x2b,0x0c,0xdd,0x84, + 0x43,0xd1,0x4c,0xd6,0xe1,0x91,0x6a,0x03,0x7b,0x75,0x98,0x87,0xf0,0xb6,0x67,0x58,0x18,0x0f,0xd9,0x85, + 0x9a,0x73,0x64,0x39,0x3e,0xcd,0x8a,0xd1,0xbd,0x8b,0x92,0x8e,0x53,0x04,0xc0,0x92,0xa7,0x51,0xd9,0xb0, + 0x70,0xe8,0x8c,0x48,0xa8,0xfc,0x0c,0x31,0x62,0x9b,0x25,0x82,0x2b,0x10,0x96,0x99,0x43,0x54,0x56,0x34, + 0xef,0x75,0xa3,0x6b,0x22,0x81,0x28,0x9b,0x52,0x27,0x06,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9b,0xe7,0x2d, + 0x82,0x65,0x98,0x8f,0xf1,0x1d,0x36,0x61,0x17,0x6b,0x14,0x4c,0xbc,0x66,0x2f,0xe2,0x22,0x10,0xd9,0x39, + 0x04,0xd4,0x44,0xa0,0x35,0x27,0xc4,0x13,0x2d,0xe9,0xdb,0x02,0x87,0x4c,0x92,0x9a,0x66,0xaa,0xc1,0xda, + 0x44,0x7b,0x39,0xcf,0xe8,0x93,0x4a,0x3e,0x09,0xe4,0xa3,0x04,0x0f,0xf1,0x69,0xe0,0xbf,0x52,0xc7,0x85, + 0x63,0x71,0x0a,0x38,0x8c,0x55,0xc4,0x36,0x55,0xb5,0x2e,0xce,0xca,0xb7,0xd6,0x4d,0x9a,0x26,0x86,0x20, + 0x83,0xb1,0x80,0x45,0x74,0x2c,0xca,0x24,0x66,0xd7,0x31,0xde,0x81,0x89,0x36,0xc7,0xb9,0xf2,0x39,0x6e, + 0xcb,0x3d,0x9a,0xf2,0xb6,0x33,0x6c,0x9c,0x2f,0x40,0x5b,0x90,0x28,0x9f,0x95,0x81,0x3e,0x62,0xcb,0x56, + 0x23,0x36,0x60,0x28,0x05,0xc5,0xd1,0xee,0xe7,0x1e,0xae,0xd7,0x42,0x9c,0xcf,0x69,0xf8,0xb0,0x87,0x0a, + 0x50,0x5a,0xe0,0xb4,0x11,0x06,0xb2,0x73,0xb2,0x03,0xd6,0xd6,0x36,0xab,0xa5,0xae,0xed,0xd9,0x83,0x72, + 0x26,0x85,0x89,0x0f,0xb6,0x48,0xe5,0x77,0x6b,0x40,0x71,0xd3,0x7d,0xcf,0xac,0xdf,0x49,0xdf,0x08,0x1b, + 0x11,0xde,0x3c,0x09,0x82,0xd3,0x4c,0x38,0x50,0xeb,0x11,0x07,0xa2,0xb1,0xd1,0xf9,0x5c,0xdb,0x14,0x77, + 0x34,0x56,0x56,0x89,0x5f,0x1d,0x6d,0x8b,0x89,0x24,0x8c,0x39,0xd8,0xf7,0x12,0x01,0x6a,0x34,0x64,0xdc, + 0x03,0x46,0xba,0x1b,0xf2,0x2c,0x43,0xbc,0x12,0xa2,0x2b,0xb3,0xbe,0x10,0x75,0x52,0xa6,0xac,0x72,0xdf, + 0x30,0x8f,0x13,0xdf,0x04,0xd7,0x17,0xd1,0xa8,0xb4,0xa1,0x46,0x25,0xd6,0x5e,0xb2,0x0b,0x82,0xf3,0x9b, + 0x6c,0x9f,0xd6,0xa4,0x9b,0xf6,0x68,0x1f,0x0b,0x64,0x02,0x7d,0x21,0xc1,0xfb,0xcb,0xf9,0x3d,0x58,0x5a, + 0x89,0xbd,0xc2,0x18,0x03,0x67,0xfe,0x35,0x7b,0xcd,0xc3,0xeb,0xb8,0x3f,0x69,0x74,0x72,0xc5,0xc1,0x02, + 0x66,0xcf,0xa0,0x8d,0xee,0x96,0x31,0xd6,0x58,0x1c,0xc9,0xc6,0x6f,0x96,0x43,0x89,0xdb,0x76,0x94,0x21, + 0xc4,0xca,0xa6,0x45,0xc1,0xab,0xd6,0x85,0x38,0x39,0x46,0xbc,0x80,0x8e,0xed,0xe5,0xf3,0x8e,0x7d,0x04, + 0xbb,0x28,0xe2,0x34,0xef,0x91,0x0b,0xec,0x9d,0x19,0x7c,0xf5,0xae,0xed,0x50,0x26,0xfd,0xd5,0x99,0x84, + 0xae,0xf3,0xdf,0xec,0x1d,0xa4,0x9b,0xba,0x9a,0x49,0xe8,0xf4,0xdf,0x2b,0x0d,0x55,0x9d,0xda,0x8e,0x5d, + 0x1c,0x05,0x09,0x24,0x76,0x04,0x8c,0x6f,0xe3,0x28,0x94,0x12,0x01,0x9b,0xdd,0x56,0xb5,0x41,0x77,0x81, + 0x58,0xf1,0x65,0xcf,0x44,0x80,0xd5,0xa4,0x0c,0xa7,0x50,0xc0,0x30,0x78,0x1e,0x33,0xae,0xeb,0xc3,0xa5, + 0x0d,0xd4,0x0b,0xb3,0x77,0xb6,0x74,0x34,0x7c,0xc1,0x73,0x48,0xca,0x36,0xec,0x8d,0xc6,0x0d,0x04,0xc8, + 0x4c,0x02,0x3c,0x03,0x2d,0x56,0x31,0x83,0x17,0x92,0x36,0xcf,0x36,0x74,0x0d,0x6c,0x89,0xbf,0x5d,0xb0, + 0xc7,0x16,0xa3,0x18,0x38,0xac,0xe1,0x17,0xb7,0x84,0xb8,0x16,0x5e,0x1a,0x32,0x79,0x74,0x6f,0x46,0x43, + 0xac,0x2b,0xb8,0x6c,0xb5,0x4e,0xef,0x3f,0xe7,0x3b,0x2f,0x03,0x2f,0x80,0x36,0xf4,0xec,0xbe,0x11,0x21, + 0xf3,0x53,0xe8,0x09,0xd2,0x37,0xbc,0xe7,0x7d,0x82,0x2a,0xc3,0x37,0x3a,0x80,0xb9,0x14,0x4c,0xcb,0xf8, + 0x89,0x08,0x0e,0xf3,0x84,0xe0,0xc8,0xf8,0x3d,0x4a,0xcd,0x43,0x68,0xd6,0xdf,0x5d,0xfe,0x76,0xa2,0x27, + 0xed,0x6e,0xb4,0x15,0xed,0xea,0xb4,0x4d,0x39,0x3a,0x7f,0x60,0x44,0x1e,0x02,0xd8,0x06,0xa0,0x0c,0x1d, + 0x8e,0x34,0x59,0x08,0x1d,0x48,0xbb,0x13,0x7a,0x2a,0xb7,0x3b,0x1f,0x55,0xbc,0x43,0x89,0xd0,0xcd,0x50, + 0x27,0x36,0x1e,0x48,0x2f,0xbe,0xd8,0x0d,0x02,0x02,0xfc,0xdf,0xcd,0xa8,0x17,0x89,0xa2,0xdf,0x32,0xd8, + 0x95,0xac,0xa4,0xe9,0xb7,0x26,0xe8,0x32,0x8a,0xc6,0x1d,0xf1,0x5c,0x6b,0x62,0x02,0xc4,0xda,0x84,0xde, + 0x45,0x75,0x3a,0xac,0x8e,0x37,0xf0,0x20,0x40,0x77,0x4d,0xdd,0xc3,0x61,0xe7,0xdc,0x7a,0xd4,0x5c,0x9c, + 0x45,0x69,0xb4,0xc8,0xdb,0x73,0x36,0x34,0x9a,0xc8,0xe3,0x86,0xb6,0xe8,0x49,0x6b,0xa3,0xfb,0x6c,0x6a, + 0x38,0x6d,0x8d,0x2e,0xea,0xde,0x6f,0x2b,0x5d,0x5f,0x7f,0xd0,0xd0,0x43,0x57,0x72,0x0f,0xcd,0x5d,0xb1, + 0x34,0x67,0xc5,0x45,0x34,0xa4,0x4a,0xf9,0xa9,0xb7,0x57,0xd8,0xe6,0xb2,0xd6,0xa7,0x3d,0x1f,0x21,0xeb, + 0x79,0x5d,0x84,0x6e,0xdc,0x16,0x4c,0x81,0x21,0xe0,0xa0,0x5d,0xc1,0x72,0x9e,0xbe,0x6d,0xc6,0x7d,0xb5, + 0x4a,0xc5,0xd6,0x50,0x73,0xfe,0xc5,0xe1,0x8f,0x5f,0x1c,0xb2,0x38,0x60,0xf1,0x68,0x08,0xf9,0xd4,0xb7, + 0xff,0xb2,0x7c,0x51,0xd5,0x83,0xb5,0xe0,0xaf,0x43,0x19,0x05,0xe1,0xe3,0x9d,0x1d,0x4e,0x62,0x8c,0x6c, + 0xeb,0x26,0xf8,0x90,0x87,0x22,0x00,0xdc,0x1f,0x44,0x88,0xed,0x63,0x6c,0x81,0xc6,0xc3,0x51,0x4f,0xbf, + 0x2c,0x64,0x92,0xfd,0x68,0x8e,0xfe,0xd0,0x3f,0x9c,0x75,0x7e,0xde,0x78,0x4c,0x1b,0xe3,0x54,0x8e,0xc4, + 0x42,0x14,0x01,0x3f,0xf7,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x09,0x16,0x51,0xc3, + 0x1b,0x31,0xae,0xcd,0x9c,0x8b,0x30,0x34,0xf3,0x0c,0x79,0xcd,0xba,0x3a,0x9a,0x53,0xcd,0x7e,0x65,0x9f, + 0x29,0xe3,0x44,0x89,0xb0,0xae,0xbb,0xbd,0x5d,0x15,0xec,0xd0,0x48,0x3f,0xc4,0x0d,0xf2,0x80,0x41,0x57, + 0x60,0x34,0x8f,0x21,0x55,0x7a,0x87,0x50,0x59,0xe7,0xd5,0x9c,0x38,0x75,0xae,0xa1,0x23,0x7b,0xc2,0x38, + 0xc3,0x04,0x50,0xc6,0xdd,0x14,0x23,0x93,0x0b,0xed,0xf7,0x5b,0x11,0x50,0x38,0xed,0xb2,0x38,0xc9,0x61, + 0x63,0x15,0x44,0x42,0x14,0x8f,0xb2,0x7a,0xbc,0xbb,0x5b,0xd0,0xd6,0x85,0x05,0x63,0x71,0x64,0x08,0xed, + 0x38,0xc7,0x61,0xef,0x3d,0x2d,0x03,0xcf,0x93,0xef,0x0c,0x4c,0x9a,0x18,0x79,0x81,0xc3,0xd7,0xed,0xad, + 0xee,0x27,0x75,0xe7,0xdd,0x42,0xb2,0x70,0xc3,0x19,0x56,0x6e,0x09,0xaf,0x3d,0x2d,0x0f,0x4d,0xf6,0x7b, + 0xbb,0x59,0xab,0x8f,0x2c,0x00,0x0e,0x8c,0x4a,0x6c,0x34,0xa2,0xb4,0x2f,0xb1,0x22,0xb2,0x83,0x48,0x61, + 0xc3,0x64,0x95,0x22,0x61,0xa9,0xb3,0x46,0xb8,0xf9,0x29,0x7e,0xea,0x09,0xcd,0x1a,0x4d,0xf1,0x8f,0x10, + 0x7c,0x65,0xd6,0x11,0xf7,0x37,0x30,0xba,0x46,0x07,0x1a,0x29,0xdc,0x79,0xa0,0x0a,0x18,0x4d,0xe0,0x24, + 0xa0,0x1f,0xbf,0xaf,0x44,0x16,0x3d,0xdb,0xd9,0x99,0x5b,0xa0,0x26,0xde,0x45,0xbe,0x86,0xcf,0xda,0xd0, + 0xb7,0x45,0x49,0x34,0x39,0x7f,0xb3,0x72,0xdf,0x60,0x0b,0xaf,0x3a,0x51,0x6d,0x4e,0x87,0x64,0xe3,0x62, + 0x9c,0xb7,0x0a,0x4d,0xf2,0xa8,0xad,0x15,0xc6,0x11,0xd9,0x6a,0xa5,0xc9,0xf5,0xb8,0x9a,0xfc,0x1d,0xfe, + 0x52,0x92,0x1c,0x41,0x06,0x7d,0x1a,0xb3,0x53,0xc0,0xdc,0x45,0xfe,0xe0,0x02,0x88,0x23,0x68,0xc2,0x07, + 0xde,0xd9,0xe2,0xbc,0xd7,0xe2,0x9c,0x5b,0xec,0x4f,0x82,0x69,0x99,0xd9,0x70,0x37,0xdf,0x4d,0x32,0x65, + 0xaf,0x33,0xfa,0x8a,0xa7,0x3d,0x5a,0x95,0x32,0x31,0x2d,0xfd,0x83,0x20,0xb6,0x6b,0xb0,0xfb,0x7b,0x07, + 0xc7,0x0d,0x45,0xdd,0xe9,0x99,0xe3,0x9a,0xed,0x39,0x16,0xb3,0x8f,0x0d,0x95,0x69,0x5c,0xb0,0x29,0x6e, + 0x32,0x32,0x71,0xc1,0x59,0x27,0x5e,0xf8,0xb7,0xec,0xa2,0x48,0x54,0x79,0x48,0xf0,0x4e,0x30,0x38,0xaa, + 0xf3,0xcb,0x37,0x4c,0x46,0x55,0x4c,0x4e,0xed,0x46,0xa3,0x68,0x37,0xb4,0x07,0xa9,0xc2,0x6a,0x20,0x2b, + 0x90,0xb0,0xab,0xa3,0x28,0x49,0x68,0x7f,0xc8,0x32,0x13,0xa7,0xa4,0x03,0x4e,0xc9,0x03,0x26,0x1d,0x94, + 0x5c,0x6b,0x62,0xe2,0xd6,0x6f,0x9a,0xc0,0xfe,0xd6,0x6e,0x4a,0x9f,0x5b,0x01,0x1d,0xfe,0x31,0x76,0x93, + 0x15,0x1b,0x46,0x56,0x71,0x29,0xa1,0x36,0x4c,0x79,0x63,0x1c,0x59,0xc3,0x38,0xb2,0x96,0x0b,0x13,0xf8, + 0x18,0xf0,0x3d,0xe0,0x6b,0x50,0x64,0x5c,0xa0,0x00,0xbc,0xf1,0x64,0xe0,0x0a,0xd1,0xc6,0x01,0x05,0xb4, + 0x69,0xb8,0xcd,0xb3,0x1f,0x6b,0xc6,0x5a,0xe2,0x3a,0xd5,0x25,0x42,0x8b,0xf2,0x5c,0xd7,0x05,0xc7,0xdb, + 0xa6,0x19,0x6a,0x63,0x41,0x86,0x0e,0x09,0xb6,0xd6,0x53,0x40,0x12,0x0c,0x73,0xc0,0x7c,0x12,0x35,0x86, + 0xd1,0x4c,0xb3,0xf0,0x13,0x16,0x8e,0xaf,0xb2,0xba,0x97,0xc4,0xfc,0x98,0x11,0x0d,0x21,0x1c,0x42,0xa7, + 0x40,0xc6,0x5a,0xe8,0x95,0x71,0x97,0x60,0x6a,0x71,0x95,0xe4,0xd9,0x0a,0x14,0xfe,0x54,0x98,0x99,0x9c, + 0x40,0x1f,0x92,0x52,0xf0,0x6d,0xe3,0xf8,0x4d,0x79,0x7b,0xfb,0x1e,0x06,0x1d,0x2b,0xd9,0xfc,0x10,0x57, + 0xc8,0x93,0x29,0x66,0x05,0xec,0x26,0x3f,0xa8,0x78,0x9a,0x60,0xf7,0x55,0x6c,0x8b,0xaf,0x81,0xc4,0x27, + 0x08,0x6e,0x87,0xc0,0xb4,0x2e,0xe2,0xf8,0x9b,0x0f,0x71,0x5b,0xa8,0x12,0x99,0x49,0xfa,0x4f,0xfa,0x2e, + 0x41,0xa0,0xcd,0x5e,0x21,0x64,0x06,0xab,0xf0,0xf7,0xd0,0x40,0xe0,0x1f,0x35,0x3b,0xdd,0x15,0x1c,0x20, + 0x7b,0xe3,0x43,0x0d,0x51,0x49,0x16,0x11,0xa5,0x5d,0x5d,0x9e,0xd2,0xfe,0x68,0x68,0xaf,0xe8,0x32,0x92, + 0xb0,0x63,0xd1,0xf3,0xd7,0x4f,0x9e,0x3f,0x33,0xb6,0xd2,0xc2,0xe3,0x4f,0xa2,0xb6,0xa6,0xb1,0xa4,0x50, + 0xf2,0x77,0x02,0xa3,0xb3,0xd7,0x9b,0xb3,0x87,0xfa,0x67,0x6d,0x42,0x08,0x74,0x8b,0x70,0x2f,0x88,0x6a, + 0x3c,0xcd,0xa9,0x1c,0xea,0x2d,0x27,0xe6,0x39,0x95,0x7a,0x7d,0x0d,0xba,0xf8,0x4c,0xb7,0xdd,0xa4,0x68, + 0xdc,0xdf,0xd1,0x69,0x45,0xb2,0xb4,0x33,0x5f,0xa0,0xaa,0xb8,0x92,0x64,0x68,0xec,0x62,0x3f,0x43,0x45, + 0xde,0xc0,0xbf,0xed,0x35,0xbc,0x26,0x3e,0x3e,0xff,0xf9,0xe3,0xe3,0xf7,0xcf,0x1f,0x77,0x46,0x4d,0xe9, + 0x4b,0x7f,0x96,0x9a,0xd9,0xe1,0x98,0x9a,0x85,0x5e,0x9e,0x5b,0xd2,0x29,0xb4,0x05,0xd4,0x44,0x7c,0x57, + 0xcb,0x97,0x44,0x44,0xcc,0x0a,0xc2,0x3d,0xb0,0xac,0xc9,0xcf,0x72,0x41,0x8e,0xca,0x76,0xa5,0x77,0xc7, + 0x8b,0x50,0x10,0xb0,0x14,0x19,0xb7,0x03,0x57,0xc0,0xb8,0x6c,0x65,0x1b,0xce,0xb6,0xf7,0xd7,0x03,0xcb, + 0x10,0x40,0xc2,0xb7,0xbd,0xfd,0x68,0x49,0x37,0x0e,0xbe,0x93,0x9b,0xbd,0x22,0x9b,0x12,0xd7,0x56,0x86, + 0x0c,0x03,0x76,0x5b,0x65,0x78,0x05,0x96,0x5b,0x40,0x2e,0x0b,0xe6,0xa8,0x5f,0x28,0x37,0x85,0x12,0xa7, + 0x5b,0x19,0xa4,0xf5,0xed,0x9d,0x68,0xf0,0xa3,0x28,0x60,0xba,0x14,0x0f,0x70,0x41,0xc9,0x18,0x18,0x77, + 0x88,0x3d,0x12,0x2e,0x8e,0x2f,0xb9,0x9c,0xb1,0x37,0x2e,0x81,0xed,0x8b,0xd6,0x10,0x64,0x0c,0x7b,0x6c, + 0x49,0x2f,0x44,0x93,0x33,0xa3,0xe7,0x60,0x19,0x61,0xf9,0x52,0x19,0x72,0xce,0xab,0xe4,0xb2,0x0e,0xa3, + 0xc4,0xb3,0x22,0x7c,0x91,0xe6,0xcd,0x06,0x29,0xe1,0xe4,0x0d,0x84,0x4d,0xaf,0x59,0x7f,0x44,0xc4,0xff, + 0xd8,0x60,0x1d,0xb6,0x4c,0x86,0x30,0xe8,0x98,0xe3,0xc6,0x16,0x18,0x33,0x57,0xa2,0x89,0x2c,0x66,0x09, + 0x65,0xdc,0x64,0x6f,0x80,0x02,0x5e,0xb7,0x2c,0x41,0x54,0x70,0xcd,0x2a,0x60,0x80,0xa9,0x2f,0xb8,0xe0, + 0xc0,0x1d,0x04,0x62,0xf5,0xa5,0x1a,0x9c,0xfa,0xbe,0x60,0xd6,0x84,0xcb,0xfa,0x73,0xbb,0xe1,0x24,0x17, + 0xb3,0x5d,0x56,0xe0,0xb0,0xd1,0x1a,0xb3,0xf0,0x73,0xc2,0xed,0x72,0xc9,0x03,0xb5,0x7f,0x9e,0x15,0xbb, + 0x07,0xeb,0x80,0x6c,0x62,0xd4,0xb9,0x7d,0x20,0xaa,0xd0,0x15,0xfe,0xcc,0xd9,0x42,0x9c,0x58,0xb2,0x25, + 0xfd,0x9f,0xd1,0x7f,0xeb,0x90,0x39,0x20,0x44,0xc1,0xe6,0x62,0x93,0xdc,0x36,0x8c,0x8b,0x45,0x27,0x62, + 0x93,0x7c,0xf1,0xb5,0xd8,0x76,0x7f,0xfd,0x90,0x86,0x2c,0xf2,0xd1,0xed,0x03,0xbf,0x27,0xa7,0xc9,0x17, + 0x5f,0xf6,0x0a,0x4c,0x3b,0x05,0x56,0xc9,0xd7,0x7f,0xed,0x15,0x58,0x75,0x0a,0xcc,0x93,0x2f,0xff,0xbb, + 0x57,0x60,0xde,0x29,0x70,0xf0,0xf0,0x4b,0x70,0x8c,0xb7,0xb7,0xf4,0xc0,0x9b,0x39,0xec,0xe2,0xee,0x41, + 0x32,0x9c,0xb1,0x87,0x8c,0xd3,0xdb,0xdb,0x25,0xf1,0x57,0xc9,0x4d,0x73,0x59,0x18,0x8f,0x81,0x69,0x4e, + 0xb5,0x7e,0xf1,0x65,0x0a,0xc3,0x03,0x31,0x9a,0x1d,0x4b,0xd2,0xd7,0x69,0xd3,0x4b,0xfa,0xfa,0xaf,0xe9, + 0xaa,0x97,0xf4,0xe5,0x7e,0x3a,0xdb,0xdd,0xed,0xa4,0x1c,0xa4,0xb3,0xbd,0xbd,0xce,0x67,0x07,0xe9,0xb2, + 0x5b,0xe6,0xeb,0x2f,0xd2,0x65,0xb7,0xcc,0xc1,0xc3,0x2f,0xd2,0xd3,0x6e,0xa1,0x83,0x87,0x5f,0xa5,0xa7, + 0x7b,0x7b,0xa0,0xcc,0x64,0x42,0xfc,0x9e,0xbb,0xc8,0x68,0x38,0x6a,0x61,0x58,0xae,0xf1,0x05,0x87,0x97, + 0x14,0xe7,0x97,0x78,0x61,0xc6,0x4d,0x63,0xbe,0x80,0x58,0x65,0x6f,0x2f,0x19,0x2f,0x76,0x76,0x8e,0x4d, + 0x0c,0xdf,0x45,0xc2,0x1a,0x02,0x18,0xfa,0x8b,0xc0,0xd5,0xd9,0x8f,0x54,0x93,0x98,0xa1,0x88,0x59,0x76, + 0x7b,0x69,0xb4,0x07,0xb1,0x54,0x8b,0x8a,0x25,0x28,0x3f,0x58,0x30,0x85,0x9b,0xfc,0x39,0xb8,0x1c,0x5c, + 0x02,0xe2,0xe1,0x2b,0x0f,0xe1,0xab,0xca,0x06,0xe8,0xfd,0xcc,0x4b,0xee,0xa2,0x38,0x12,0x01,0xe7,0x23, + 0x7b,0x2f,0xc9,0xfd,0x63,0x4a,0xbd,0x4f,0xc4,0xc9,0xfd,0x28,0x89,0xef,0x73,0x14,0xfa,0x68,0xdc,0xcd, + 0x72,0x7d,0x29,0x13,0x5f,0x4a,0x45,0x2e,0xa3,0x24,0xd8,0x58,0x43,0xb6,0x1c,0x4a,0xfc,0xaa,0xc0,0xf1, + 0x8e,0x37,0x5f,0xd7,0xc9,0x39,0x3a,0xfc,0x71,0x85,0x08,0x6b,0x6c,0x12,0x55,0x1f,0x71,0x60,0xe0,0x80, + 0x2a,0xfd,0x67,0x5f,0x8c,0xd2,0x8e,0x16,0xf9,0xb2,0x6b,0x7a,0xe2,0xc3,0x00,0xad,0x37,0xad,0xcb,0x83, + 0x02,0xeb,0x24,0x3d,0x0c,0xac,0x89,0xfe,0xe1,0xce,0xfa,0xb8,0x75,0xda,0x79,0x1b,0x20,0xc4,0x63,0x83, + 0x1b,0xbe,0xc3,0x43,0x2b,0x13,0x6b,0x8e,0x6f,0x60,0xe3,0xab,0x4b,0xb3,0xd0,0x97,0x88,0x23,0xec,0xdb, + 0xca,0xfa,0x16,0xa0,0xff,0x6e,0x65,0x5a,0x7b,0x2b,0x41,0xae,0xe1,0x75,0xbe,0x94,0x38,0x44,0xe6,0x1d, + 0x47,0xdb,0x1d,0x15,0x06,0x1e,0x78,0xda,0xd3,0xb4,0xd0,0x84,0x02,0xbf,0xb3,0x5e,0xdb,0x7a,0xa8,0xfa, + 0x38,0x43,0xb5,0x73,0x8b,0xd5,0x59,0xb4,0x0d,0x97,0x1d,0x42,0xf6,0x30,0xa9,0x0c,0x8b,0xb0,0x03,0x2d, + 0xe5,0xff,0x3f,0x93,0x6f,0xfc,0x67,0xc3,0x22,0xd6,0xa5,0x96,0x4a,0xed,0x70,0x29,0xc2,0xc9,0xf0,0x0d, + 0x97,0x63,0x1f,0x86,0x25,0xc5,0xd9,0x79,0x3b,0x89,0x29,0xdf,0x10,0xc9,0x0b,0x5d,0xae,0x22,0xe5,0x2a, + 0xe0,0xfc,0x24,0xad,0x47,0x8b,0x62,0x36,0x9b,0x4b,0x08,0x9a,0x68,0x51,0xad,0x1a,0xbd,0x5a,0x46,0xd6, + 0xe0,0x77,0x5c,0x1b,0x35,0xf5,0xc4,0xb7,0x2c,0x09,0x6c,0xbf,0x2e,0x8f,0x4c,0x02,0xc8,0x22,0x84,0x09, + 0xac,0x16,0x4f,0x51,0x4c,0xfb,0x02,0xda,0x65,0x19,0xcb,0x3d,0x1b,0x58,0x70,0x3d,0xc6,0x45,0xad,0x17, + 0x90,0x9d,0x35,0x01,0xe7,0x62,0xae,0x75,0x9f,0x66,0xb8,0x94,0x67,0xbc,0xa1,0xfb,0x2b,0x26,0x53,0x77, + 0xb3,0x78,0xe3,0xdc,0xf4,0x1a,0xb9,0xc8,0x27,0x9b,0x52,0xfe,0x61,0xa3,0xa6,0x47,0xe9,0xe1,0x54,0x35, + 0x47,0x69,0x33,0x08,0x02,0xb5,0x03,0x01,0xa1,0x90,0x0a,0xbe,0xc1,0x81,0xbd,0xa9,0x6e,0x6f,0xe5,0xe5, + 0x62,0x8f,0x63,0xb3,0x20,0x89,0x77,0x32,0xc7,0xe0,0xb5,0x61,0x34,0x71,0xd0,0x89,0x0a,0x43,0xbc,0x60, + 0x2c,0x21,0x53,0x68,0x17,0x87,0x4d,0x3e,0x28,0xec,0x07,0xbd,0x50,0xb7,0x45,0x78,0x6a,0x16,0xdd,0xde, + 0xf8,0xaf,0x59,0x32,0x13,0x80,0x68,0x18,0x09,0x27,0x80,0x55,0x63,0xb5,0x5f,0xf4,0xad,0xf6,0xa1,0x5b, + 0x82,0x53,0x04,0x5f,0xa9,0x82,0x40,0xa1,0x37,0x85,0x8d,0x9d,0x55,0x21,0x76,0x96,0xb8,0x58,0x58,0x76, + 0xcd,0xf9,0x31,0x76,0x9a,0x0c,0xad,0xf8,0xab,0xde,0xac,0x89,0x95,0x7e,0x91,0x45,0xf7,0xee,0x5d,0x10, + 0x32,0x63,0x04,0x0a,0xc2,0x21,0x8b,0x62,0x23,0x2e,0xa4,0x8c,0x2d,0x6a,0x79,0xeb,0xbe,0x8c,0xfc,0xfe, + 0x04,0x29,0x16,0xd1,0xe2,0x39,0x81,0xac,0x74,0x24,0xce,0x0e,0xf2,0xe9,0x31,0xf1,0x9d,0xbb,0x05,0xd0, + 0xa3,0xe1,0x27,0xb3,0x1c,0xd4,0x63,0x81,0x80,0xf5,0x6c,0x74,0x63,0xc1,0x87,0x70,0x2c,0x78,0xbd,0x84, + 0xb8,0xf3,0xab,0x25,0xae,0x1b,0xa4,0x2e,0xa6,0xf7,0x0d,0x8e,0xbd,0xaf,0xac,0x69,0x8e,0x0f,0x6d,0xb2, + 0x15,0xa3,0xc1,0xad,0x9b,0x68,0xb7,0xda,0x8d,0xd6,0x51,0xb0,0x00,0xb9,0x0e,0xd1,0x78,0x88,0xdc,0x68, + 0x0a,0x7f,0xaa,0x7d,0x00,0xc3,0xe0,0x32,0xab,0xc3,0x28,0x79,0xb4,0x0f,0xa9,0x23,0x6e,0xe7,0x7a,0x69, + 0x53,0x8f,0x28,0xf5,0xa7,0xda,0x45,0xe9,0x8d,0xbf,0xe3,0x8f,0xc3,0x12,0xe0,0xa9,0xbf,0xd9,0x3b,0x98, + 0xdc,0x50,0xaf,0x53,0x7f,0xfe,0x7c,0x47,0x14,0x1b,0xb1,0xe2,0x3c,0x00,0x9b,0xfa,0x5d,0x4d,0x18,0x1f, + 0x83,0x59,0xa7,0x52,0x9a,0x4b,0x70,0x9c,0x26,0x26,0x7c,0x7e,0x00,0xc9,0x4a,0x2d,0xfc,0x5e,0x67,0xbf, + 0x41,0x44,0xb0,0xcd,0xce,0x76,0xc9,0x4a,0xc7,0x3f,0xd6,0x19,0xc2,0x0f,0x27,0x93,0x39,0x9e,0x93,0xf4, + 0x6b,0xb0,0xb4,0x3f,0xd6,0xa1,0x98,0xca,0xca,0x9f,0xc5,0x43,0x92,0xaa,0xf8,0xae,0xb6,0x15,0x70,0x60, + 0x59,0xbe,0x87,0x6b,0x05,0xbf,0xef,0x84,0x83,0x1a,0x3a,0xf2,0x85,0xeb,0x82,0x00,0x72,0x77,0x57,0x7d, + 0xfd,0x85,0x79,0xde,0xdb,0x63,0x53,0x3b,0x9a,0xc3,0xdf,0xb8,0x26,0x01,0xad,0x35,0x1a,0xb7,0x31,0xcf, + 0xbb,0xe3,0xfd,0xdd,0x8c,0xd7,0xa6,0xfc,0x4e,0x63,0x55,0xbf,0xd5,0x50,0x37,0x7a,0x4d,0xb2,0x71,0xef, + 0x64,0xdf,0x88,0x89,0xb9,0xd1,0x26,0x8d,0xee,0x11,0x5d,0x1a,0xe3,0x0e,0x45,0xaa,0xd1,0xdc,0xd9,0x85, + 0x02,0xf2,0xc8,0x10,0x11,0x38,0xa1,0x6a,0x6f,0x3f,0xfc,0x43,0x1d,0x12,0x54,0xbb,0xbb,0xdf,0x85,0xa6, + 0xef,0xd3,0xa0,0xe0,0x77,0xf5,0x37,0xd9,0x4f,0x01,0xdc,0xaf,0xc2,0xa8,0xe1,0x4c,0x1e,0xb6,0xb7,0xb7, + 0x4c,0x47,0x06,0x42,0x6c,0x9e,0xa4,0xd0,0xd9,0x50,0x66,0x93,0x1d,0x68,0x79,0x2d,0xe0,0x97,0x31,0x4e, + 0xc6,0x81,0x63,0x9e,0x0e,0xa5,0x22,0x1a,0x91,0x2a,0x74,0x32,0x3a,0xc6,0x75,0x91,0x1f,0xf3,0x06,0x86, + 0x3d,0x95,0x7f,0x0b,0xa5,0x66,0xe7,0xde,0xc3,0x33,0xab,0xee,0x88,0x27,0x61,0x7a,0x7b,0xce,0x7e,0x95, + 0x74,0x36,0xf3,0x5d,0x8c,0xdd,0x1b,0x5f,0xfc,0x46,0xfe,0xbe,0xee,0x87,0xa3,0xdd,0x2a,0x62,0x7f,0x3d, + 0xe0,0x70,0x13,0x3b,0x3b,0x4b,0xde,0x98,0xe2,0xc3,0xb6,0x46,0x08,0x63,0xc4,0x25,0x50,0xdf,0xd7,0x9b, + 0x3c,0x22,0x5a,0xfb,0xb1,0x9c,0xdc,0x98,0x73,0x10,0x96,0x3a,0x72,0x96,0x21,0xac,0x9c,0xc1,0xf7,0x01, + 0x25,0xb3,0xd4,0x5e,0x67,0x15,0xd3,0xa9,0xfa,0x7d,0x9d,0x0c,0x72,0xa6,0x88,0x68,0x15,0xcc,0x57,0xd7, + 0x19,0x60,0xa6,0x63,0x1b,0x95,0x6a,0xdb,0x09,0x6c,0x2a,0xb0,0xf9,0xdb,0x4e,0x5c,0x83,0x5b,0x00,0x1c, + 0x0f,0x6a,0x52,0x18,0xa9,0x55,0x59,0x19,0xbe,0x8f,0xbf,0xaf,0x0d,0x93,0xda,0x43,0x0e,0xd4,0xd1,0xc3, + 0x13,0xe8,0x81,0x0c,0xee,0x78,0x53,0x4e,0x22,0x73,0xfd,0x75,0x6a,0xad,0x13,0x39,0x48,0xb4,0xf7,0x05, + 0xe0,0x0f,0x38,0xdc,0x33,0xfb,0x99,0xfb,0xab,0xc7,0x29,0x79,0x8d,0xfa,0x2e,0x0b,0x89,0x81,0x30,0x92, + 0x8a,0x3a,0x9f,0x5e,0xe2,0x53,0x93,0xd1,0xfb,0x1c,0x9f,0xad,0xc1,0xe3,0x7c,0xcf,0x2a,0xfa,0x53,0xad, + 0x96,0x5a,0xd5,0x5e,0x66,0xfc,0xbd,0x0b,0x09,0x10,0x38,0x1c,0x0e,0xcd,0x91,0x75,0xb8,0xe9,0xcc,0x94, + 0x4b,0x0c,0x45,0xec,0x32,0x25,0x4d,0xd6,0xfb,0xb0,0x2b,0xdd,0x0a,0x53,0xef,0x12,0x70,0x39,0x1f,0x9f, + 0x8e,0x8c,0xab,0x10,0x39,0x2b,0x44,0x51,0x85,0x89,0x58,0x57,0x1c,0x65,0x51,0x14,0xe4,0xae,0xcc,0x2d, + 0x83,0x28,0xa1,0xf8,0xae,0x68,0x7b,0x77,0xb3,0x71,0x4f,0x2a,0x4a,0x02,0x94,0xef,0x3e,0xbe,0x7e,0xc5, + 0x09,0x5c,0xba,0x1e,0x0e,0x81,0x1b,0x98,0x40,0x55,0x54,0xb6,0x41,0x9b,0x98,0xbc,0xa2,0x5c,0xe9,0x31, + 0x70,0x5e,0x2e,0x45,0xdf,0xc0,0x49,0xcb,0x89,0x9a,0x73,0x03,0x98,0x4f,0x91,0x15,0x87,0x45,0x60,0x7e, + 0xc4,0xd7,0x1a,0x8b,0x94,0x4d,0x9a,0xcf,0x47,0xc7,0xfc,0x9a,0x55,0xc6,0x8a,0xb1,0x85,0x70,0x2d,0x8a, + 0x6c,0xc4,0xfb,0x2a,0x19,0x2f,0xb3,0xb9,0xda,0x8e,0x4f,0xb3,0x3c,0x11,0x69,0x43,0x43,0xe9,0xb0,0xce, + 0x7e,0xfb,0xee,0xe3,0xcb,0xb7,0x6f,0x50,0xcf,0xa9,0x15,0xff,0x10,0x43,0x38,0xc0,0x86,0x10,0x6e,0x60, + 0x07,0x73,0x7f,0x31,0x96,0x38,0x4a,0x1b,0x3d,0x1c,0x5f,0x73,0xe0,0xe2,0x0c,0x05,0xc7,0x7f,0xeb,0xc4, + 0x84,0x7a,0x1d,0x9f,0xaa,0x65,0xd2,0xa9,0x3e,0x50,0xc4,0x89,0x2a,0x41,0x54,0xd8,0xaf,0x2d,0xd9,0x26, + 0xe6,0x6b,0x45,0x62,0x4c,0x5a,0xe6,0xf9,0xef,0xd7,0x3e,0x98,0xb7,0x58,0xb9,0xf0,0x29,0x6f,0x09,0xa2, + 0xa9,0xb8,0xaa,0x4d,0x4d,0xd0,0xb7,0x82,0xa9,0x02,0x6f,0x7b,0x2f,0x34,0x02,0x7b,0x18,0xcb,0xa3,0xed, + 0x28,0x48,0xc6,0x52,0xfa,0xc7,0x20,0x21,0xbd,0xc9,0xe6,0xc6,0xfe,0x86,0x41,0xa4,0x92,0x5b,0x00,0xa9, + 0x4c,0xe0,0xd7,0xa9,0xfd,0x99,0xb7,0xd0,0xac,0x92,0xbe,0x9e,0xfb,0x48,0xc3,0x56,0x45,0xfd,0x01,0xa9, + 0x93,0x8b,0xb8,0xf3,0xce,0xb1,0x13,0x02,0x6f,0x46,0xfd,0x39,0x85,0xf2,0xe2,0x0e,0xed,0xec,0xa7,0xa2, + 0x17,0xbb,0xe4,0x4c,0x77,0x65,0x60,0x2c,0x30,0xaa,0x7a,0xb2,0xaf,0x22,0xec,0x47,0x22,0xba,0xb0,0xc6, + 0x3d,0x57,0x1b,0xb9,0x95,0xc9,0x4d,0x82,0x88,0x3f,0x66,0x9f,0xae,0xb2,0x4e,0x71,0x35,0x87,0x41,0x6a, + 0x55,0x2f,0xf8,0x3a,0xf9,0x19,0xa7,0x41,0x41,0xd0,0xc8,0x03,0xed,0xc3,0xd3,0x6c,0x75,0x7b,0x3b,0x57, + 0x4b,0xcc,0x97,0xd9,0xa8,0x52,0x39,0x6f,0x65,0x93,0xd2,0xab,0x21,0x83,0x11,0xbc,0xd9,0xe1,0xe2,0x37, + 0xb5,0x4c,0xd2,0xe5,0x58,0x0c,0x5b,0xbb,0xd0,0x1a,0x6a,0xdb,0x99,0x8e,0x6c,0xc7,0x03,0x02,0xb6,0x7f, + 0x4b,0xf0,0x76,0xe1,0x34,0xa1,0x09,0xec,0x5b,0xd8,0x59,0x4c,0x92,0xdb,0x7e,0xb2,0x77,0x5c,0x86,0xa5, + 0x6d,0x35,0xb2,0xf1,0xd7,0xaa,0x4e,0x6d,0x55,0xff,0x33,0xaf,0xd2,0xaf,0xa5,0x0e,0x0e,0x8d,0x79,0x4a, + 0x48,0x6a,0x06,0x9b,0xc6,0x9d,0x9d,0x0f,0xb0,0x44,0x6c,0x94,0xc5,0x52,0x9c,0x3d,0x4b,0xe2,0x3c,0xe3, + 0x7c,0x02,0xde,0x53,0xfa,0x75,0xc5,0x4c,0xac,0x13,0x60,0x80,0x3c,0x64,0x09,0xae,0x75,0xe8,0x95,0xc6, + 0x91,0x42,0x8d,0x1c,0x43,0x22,0x70,0xb0,0x30,0x8e,0x4d,0x08,0x03,0xa1,0xc3,0x56,0xc4,0x94,0xa5,0x36, + 0x76,0x2d,0x0f,0x7e,0x69,0x76,0x1f,0x24,0xee,0x12,0xa7,0x01,0x8f,0xf0,0xa0,0x1e,0x0e,0xae,0x85,0xc0, + 0x62,0xe9,0x66,0x62,0x18,0x64,0x17,0x1a,0x96,0x98,0x9d,0xc8,0x37,0x44,0x83,0x89,0xb1,0xbe,0xdc,0xc2, + 0xcd,0x8f,0x41,0xa7,0x58,0x23,0x13,0xb1,0x92,0xbc,0x1d,0x96,0x29,0xc6,0x25,0x71,0x59,0x76,0x80,0x61, + 0xec,0xfd,0xff,0xdf,0x67,0x41,0x90,0xf9,0xe6,0x44,0xb8,0x74,0x15,0xa6,0xca,0x21,0x00,0x26,0xa0,0x2f, + 0xc2,0xb7,0x53,0x22,0x53,0xe7,0x65,0xcd,0x7f,0x6a,0xfa,0x60,0x7d,0x62,0xa7,0x2d,0x98,0xca,0x1a,0xb6, + 0x60,0x63,0x78,0x47,0xbb,0xdb,0xa6,0x6a,0x85,0xe1,0x02,0xc4,0x2d,0x9a,0x84,0x52,0x62,0x70,0x8e,0xf9, + 0x1e,0x8d,0xbb,0xba,0x19,0xcc,0xf9,0x89,0x36,0xa4,0x8d,0xb1,0x00,0xd9,0xb8,0xb5,0xc5,0x22,0x51,0x77, + 0x1d,0x30,0xb3,0xc0,0x34,0x2d,0x90,0x1a,0xe3,0x26,0x8b,0x57,0x45,0xdc,0x1a,0xab,0xad,0xe8,0x22,0x42, + 0x00,0xcc,0x98,0x95,0xc5,0xda,0xa0,0xf0,0x01,0xdc,0xf8,0x8a,0x71,0xe3,0x06,0x79,0x72,0xc9,0x7d,0x79, + 0x5f,0x84,0x0e,0x34,0xef,0x51,0x34,0x14,0xc4,0x5c,0xe9,0xae,0xf5,0xc8,0xa6,0xcc,0x9b,0xa5,0x10,0x9b, + 0xc9,0x1c,0x17,0xa8,0x0c,0x2c,0xbf,0x00,0xa1,0x70,0x20,0x81,0x3c,0x81,0x56,0xda,0xec,0xc1,0xd0,0xbf, + 0xd4,0x34,0x35,0x54,0xdb,0xce,0xce,0x7c,0xb0,0x15,0x04,0xe0,0x36,0x70,0x1c,0x38,0x9d,0xf6,0x38,0xe9, + 0xa7,0x52,0x40,0xe1,0x18,0x30,0x26,0x17,0xb5,0x75,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7, + 0x82,0x93,0x2a,0xd8,0xd0,0x2b,0x4d,0x06,0xc3,0x8b,0x77,0xc5,0xe4,0x45,0x91,0xbe,0x2e,0x08,0xe3,0xf7, + 0x7c,0xd0,0x86,0x15,0x3b,0x8d,0x9a,0xc3,0x6e,0x9d,0xfd,0xcd,0xba,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd, + 0xee,0xee,0xf4,0x1b,0x68,0x16,0xe1,0x6e,0x36,0x1e,0x76,0x6a,0x9a,0x3e,0x32,0xf9,0x0a,0xd7,0x34,0xab, + 0x01,0x25,0x11,0x9a,0x0a,0x9c,0x5e,0xc3,0x25,0x23,0x68,0x37,0xb7,0xea,0x52,0x93,0x4f,0x4d,0x00,0x0f, + 0x3e,0x4b,0x24,0xe6,0x44,0x7d,0xf8,0xac,0xd8,0x8d,0x9e,0xc1,0xd1,0x2a,0x3a,0x72,0x26,0x7b,0xb0,0x8a, + 0xaa,0x6c,0xde,0xaa,0x96,0xab,0xae,0xbb,0xd9,0x79,0xf6,0x58,0x73,0x28,0x59,0x28,0x61,0x0f,0xdf,0xdc, + 0x51,0xc9,0xd4,0xe6,0x0d,0x57,0xb2,0x42,0x25,0x30,0x76,0xa5,0x39,0xda,0x87,0xfa,0xc1,0xdf,0x06,0xcc, + 0x13,0x9e,0xb3,0x09,0x7a,0x49,0x8f,0x54,0x20,0xa7,0x02,0xd6,0xd6,0x9d,0x28,0x06,0x58,0x60,0x17,0x93, + 0x95,0x29,0xf1,0x12,0x25,0x56,0x54,0x62,0xea,0x4a,0x9c,0x66,0x94,0x1e,0xcf,0x7d,0xd4,0xf6,0x1c,0xb4, + 0xef,0x37,0xfb,0x54,0xeb,0x6a,0xf2,0xae,0x48,0x5f,0x16,0xcc,0xed,0x27,0x93,0x52,0x1a,0xb3,0x75,0xa7, + 0xb6,0x8a,0x74,0x5f,0x99,0xe0,0xcd,0xca,0x40,0x4b,0x3a,0x57,0x0e,0x56,0xd2,0x53,0x5c,0xc9,0xfc,0xd1, + 0x5e,0x1d,0x98,0x4a,0x2d,0x3b,0x3b,0x4f,0x8c,0x2c,0x5d,0x66,0xcf,0x46,0x02,0x89,0x8e,0x42,0x34,0xf0, + 0x58,0xfb,0x43,0x7a,0x6c,0x31,0xdd,0x23,0x17,0x6f,0x31,0x69,0x33,0x17,0x82,0xdb,0xf3,0xeb,0x76,0x1c, + 0x9d,0xcb,0xc5,0xba,0x12,0xe5,0xd0,0xbb,0xfc,0x03,0x10,0xea,0xee,0x07,0x2d,0x81,0xaa,0xd6,0xe1,0x4e, + 0xfb,0x10,0x92,0x58,0x07,0xfa,0x8b,0xbf,0x98,0xeb,0x6a,0xbd,0x00,0x61,0xef,0x20,0x2c,0xff,0x31,0xa0, + 0xa5,0x40,0x42,0x11,0xbd,0x03,0xb7,0x2e,0xdc,0x13,0x94,0x13,0x71,0x7e,0xc2,0xce,0x14,0xee,0xcd,0x5c, + 0xdb,0x39,0x97,0xc8,0x7b,0x3e,0x3d,0xb6,0x32,0xd0,0xec,0x44,0x5b,0x6e,0xc8,0x6f,0xe8,0xc4,0xf9,0x6a, + 0xb1,0xcd,0x25,0x7d,0x46,0x10,0xae,0x6b,0xae,0xfc,0x80,0xa3,0x8a,0x81,0x20,0xc1,0x8d,0x77,0x9e,0xb6, + 0x41,0x44,0x32,0x42,0x8c,0x0a,0xfe,0xb3,0xbc,0xb1,0x09,0x48,0x46,0xf2,0x19,0xab,0xf2,0x4e,0xed,0xeb, + 0xc7,0x4a,0x12,0x96,0x36,0xe1,0x31,0xd3,0xec,0x92,0x08,0x0f,0x61,0x9a,0x52,0x9d,0x9b,0xaf,0xce,0xdd, + 0xbb,0xfd,0xec,0xc2,0xa5,0x84,0xdf,0x2d,0x28,0xf5,0x44,0xc3,0xae,0xfc,0x39,0xaa,0x54,0x67,0xb6,0x72, + 0x75,0x8d,0xf2,0xb8,0x06,0x5e,0x32,0x8e,0x5d,0xaf,0xec,0xc4,0xa8,0x4b,0xf7,0xed,0x63,0xae,0x57,0x5d, + 0xb9,0x26,0xd4,0x3d,0xfb,0xb5,0xc9,0xfa,0xe4,0xfb,0xe7,0xbe,0x7f,0x4a,0x69,0x33,0xb3,0xa7,0xd4,0xe3, + 0xec,0xb2,0x56,0x1f,0xe8,0x8f,0x31,0xf0,0x1f,0x7f,0x20,0x0a,0xc8,0x91,0x5c,0x8f,0xb3,0xf8,0x43,0x66, + 0x5f,0x13,0xcb,0xb1,0xf2,0x4a,0x7c,0xcc,0xb6,0x1f,0x07,0x41,0x98,0x88,0x23,0x65,0xeb,0xff,0xaa,0x02, + 0x1d,0x88,0xf8,0xc2,0x58,0x92,0x8f,0xb7,0xb7,0x57,0x38,0x3c,0x69,0x0d,0xae,0x04,0x04,0xde,0x66,0x1f, + 0x77,0x76,0x66,0x93,0x19,0xed,0x86,0x5f,0xf1,0x78,0x31,0xb9,0x48,0x97,0xea,0x15,0x1e,0xcf,0x27,0xe7, + 0xb4,0x2f,0x9e,0x67,0x1f,0x27,0x97,0xb7,0xb7,0x8b,0x74,0xa1,0xde,0x21,0x75,0xc0,0x7f,0xe6,0x6a,0x72, + 0x95,0x9e,0xa9,0x97,0x54,0xf0,0xde,0xed,0xed,0x75,0x7a,0xad,0x9e,0xd1,0xe3,0xa7,0xdb,0xdb,0xe3,0xf4, + 0x58,0xbd,0x20,0xbe,0xa5,0x88,0x9f,0x26,0x93,0xa7,0x32,0x6d,0xe9,0xd3,0x44,0xbd,0xc9,0xf8,0x20,0x6c, + 0x58,0x61,0xaf,0x5e,0x67,0xaf,0x74,0xfc,0x2e,0x51,0xef,0x33,0x0f,0x27,0xa1,0xa7,0x6e,0x72,0xf3,0x86, + 0x40,0xf2,0x1e,0x24,0xb1,0xaf,0x12,0xc5,0xbf,0xbf,0xd2,0x51,0xf9,0xde,0x83,0xe6,0x24,0xa6,0x12,0x9c, + 0xf1,0x36,0x51,0xcf,0x76,0x76,0x9e,0xb1,0xa5,0xc5,0xcb,0x9d,0x9d,0x97,0xf0,0x67,0x08,0x6a,0x35,0x81, + 0xdb,0x0d,0xbc,0x36,0xe7,0x15,0x0d,0xec,0xef,0xb4,0x1d,0xbc,0x89,0x94,0x6f,0xd4,0x0a,0x8d,0x64,0xae, + 0xc1,0xa7,0x2a,0x13,0x5a,0xf9,0x18,0x61,0x8f,0x98,0xd5,0xf4,0xcf,0x87,0x2c,0x58,0x3b,0x1a,0xf3,0x25, + 0xa6,0x62,0x98,0x58,0x8a,0x61,0xa2,0xc6,0x0e,0x73,0xfb,0xa6,0xff,0x1e,0x27,0xea,0xdd,0xce,0xce,0x3b, + 0xea,0xfa,0x7b,0x98,0x4d,0x3d,0xdf,0xd9,0x79,0x8e,0x3e,0x63,0xc4,0x57,0x66,0x40,0x57,0x32,0x62,0x75, + 0xa9,0xc3,0x39,0xb9,0x0a,0xe7,0xe3,0x6d,0x67,0x3a,0x6e,0x6f,0x5f,0xd3,0x39,0xfe,0xab,0x8e,0x5f,0x24, + 0x93,0xe0,0x14,0x7a,0xaf,0x5e,0x24,0xe9,0x27,0x14,0x5f,0x51,0x63,0x40,0x22,0x2a,0x98,0x08,0xb1,0xca, + 0xad,0xc3,0xfe,0x50,0x37,0xb8,0xaa,0xf7,0x71,0xd7,0x03,0xcc,0x20,0x10,0x2f,0xec,0xa6,0xee,0x7c,0x0a, + 0x9b,0x8f,0x3b,0x13,0x1c,0x13,0xe7,0xe9,0x27,0xd1,0xcd,0x18,0x74,0xdd,0x43,0xe9,0xe2,0x8f,0x2a,0xd3, + 0x99,0x95,0x89,0x3a,0x27,0x40,0x44,0xa0,0xd5,0x4b,0x99,0x92,0x1c,0x1e,0x16,0xfc,0x3b,0x1b,0x98,0x92, + 0x9c,0x78,0x28,0x4c,0x09,0x97,0xea,0xf4,0xe9,0x4a,0xa6,0xe4,0x5e,0x67,0x4a,0x3e,0xa9,0x7b,0x3c,0x25, + 0xb9,0x9a,0xab,0x4f,0x32,0x25,0x17,0xa0,0xcc,0x72,0x7a,0x53,0x97,0xfc,0xd1,0x27,0xd0,0xd9,0xc6,0xd0, + 0xdc,0xe0,0xca,0x3c,0x44,0x67,0xc1,0x5b,0x17,0x57,0xfa,0x74,0x8b,0x2b,0x9b,0xbb,0x71,0xa5,0x44,0x91, + 0x95,0xbb,0x68,0x1c,0x6a,0xb4,0x0c,0x94,0x68,0x63,0xb7,0xb9,0x61,0x8b,0xa4,0xad,0x93,0x4a,0xc3,0x38, + 0x73,0x9e,0x49,0xac,0x18,0x42,0x92,0x90,0xb7,0xe4,0x16,0xab,0x2d,0xed,0xab,0x45,0x7e,0x33,0x9b,0x10, + 0xe2,0xbe,0x73,0x4a,0x14,0xfc,0xf5,0x0a,0x59,0x84,0x21,0x4d,0x21,0xc2,0x8a,0x8d,0x60,0x2f,0xc9,0x38, + 0x73,0xb5,0x3b,0xdc,0x75,0x4d,0x49,0xec,0xd9,0x2d,0x25,0x8e,0xf1,0x6a,0x51,0xd9,0xa5,0x6c,0xf3,0x95, + 0x6c,0xf3,0x2b,0x6c,0xf3,0x0b,0x5a,0x1d,0x46,0x08,0xc4,0xf2,0x1e,0x4b,0x5d,0xe9,0x71,0xc2,0x58,0xd1, + 0x0e,0xad,0xbb,0xf5,0x43,0x10,0x81,0x08,0x69,0x00,0x60,0x78,0x0d,0x06,0xd2,0x1d,0x0c,0x71,0x10,0xb0, + 0x4b,0xc1,0x21,0x1e,0x40,0x66,0x49,0x07,0x42,0x26,0xf1,0x25,0xe3,0x10,0x86,0x1c,0xaa,0xf3,0x8c,0x0d, + 0x45,0x62,0x6c,0x88,0xc5,0xce,0xce,0x02,0x6f,0x2a,0xe8,0xa4,0xc1,0x24,0xd7,0x93,0x6b,0xda,0xae,0x69, + 0x15,0x87,0x04,0xc1,0xaf,0xc1,0x89,0xbc,0x19,0x9d,0x8a,0x66,0x43,0x2e,0x60,0x0c,0xb5,0xcb,0xaf,0x10, + 0xb3,0x96,0x59,0x09,0x1f,0x00,0xd9,0x84,0xd8,0x86,0x39,0x31,0x42,0x25,0x07,0x01,0xa4,0x26,0x54,0x7c, + 0x23,0x10,0x4e,0x7d,0xb8,0x7f,0x94,0x22,0x0c,0x8e,0xbb,0xf2,0x0f,0xce,0x30,0x86,0x7e,0xfa,0x26,0xd0, + 0xe8,0x3d,0x37,0xf4,0xca,0x36,0xd4,0xf7,0x3a,0xc4,0x00,0x1f,0x99,0x9d,0xf3,0x8e,0x23,0x8e,0xf4,0x7e, + 0x69,0x9f,0x94,0x37,0x95,0x1b,0xa6,0x6f,0x5d,0xc9,0xb5,0xda,0x0f,0xaa,0x7a,0xd9,0xa3,0xe2,0x75,0x20, + 0x19,0x5b,0xac,0xe6,0x6d,0xb1,0x9c,0x6b,0xa1,0xd7,0x6f,0x6f,0xfb,0x23,0x0b,0x22,0xa7,0xb1,0xa9,0x0b, + 0x9c,0xb7,0x9c,0xe3,0x4d,0xdf,0x77,0x0b,0x7e,0x20,0x3e,0x17,0x57,0x70,0x14,0x49,0x95,0x1d,0x13,0xfb, + 0xf7,0x02,0x56,0x40,0xe0,0x77,0x15,0xae,0x72,0x9a,0xf3,0xc5,0xec,0x34,0x01,0x15,0x83,0x8f,0x4d,0xc8, + 0x82,0x80,0x60,0xd7,0x31,0x7f,0x12,0x44,0x10,0x06,0xd7,0x05,0xba,0xca,0x14,0x66,0x45,0x95,0x9c,0x63, + 0xfd,0xd4,0x0c,0x6e,0x7d,0x05,0x73,0x53,0xdd,0xf4,0xbd,0xce,0x0d,0x94,0xcf,0x74,0xf7,0xba,0x96,0xfe, + 0x35,0x7c,0x2e,0x6b,0xfb,0x3a,0x16,0xc3,0xda,0xc0,0x8f,0x24,0x84,0x32,0x11,0x95,0x72,0x9c,0x37,0x5c, + 0x56,0x20,0x6a,0x3f,0x23,0x7e,0x0c,0x5c,0x41,0xb4,0x38,0x43,0x0b,0xcf,0xe2,0x65,0xa6,0x30,0x42,0xf3, + 0x3e,0x20,0x77,0x14,0xe2,0x41,0x6e,0x7e,0x79,0xa0,0xde,0x6b,0x97,0xa1,0x8c,0x20,0x3f,0xa4,0x37,0xdf, + 0x77,0x98,0xce,0xbe,0xc3,0xc3,0x05,0xbb,0x3b,0x40,0xea,0x2c,0x6a,0xf1,0x48,0xf8,0xcc,0xa2,0x95,0x1c, + 0xad,0x08,0x93,0x72,0xec,0xa4,0xd1,0xac,0x68,0xd8,0x46,0x59,0x32,0x42,0xf5,0xc5,0x93,0x60,0x26,0xb6, + 0xef,0x70,0x78,0x10,0x49,0x55,0xdb,0x47,0xbe,0x93,0x36,0x7d,0xc2,0xfe,0x34,0x77,0xc9,0xcc,0x02,0xd7, + 0x8b,0x40,0x2a,0xca,0x64,0xc0,0x86,0x61,0xac,0x5d,0x45,0x9c,0xf1,0x1d,0x93,0x58,0xeb,0xb6,0x3e,0xa1, + 0x3a,0xfe,0x01,0x6f,0x30,0xe7,0x92,0x18,0x0a,0x39,0x7f,0x08,0x1a,0xe0,0x2b,0x30,0x7d,0xb4,0xd4,0x6e, + 0x20,0xa5,0xd2,0x5f,0x59,0x91,0x20,0x88,0x12,0x9b,0x37,0x8f,0x4d,0x6c,0x25,0x42,0x7f,0x8c,0x0a,0x2d, + 0x3f,0xd9,0xf3,0xe6,0x2b,0xe8,0x8b,0x4b,0x5c,0x0e,0x72,0xc4,0xfe,0x7c,0x03,0x31,0x6d,0x7f,0xf4,0x92, + 0xa4,0x07,0xbf,0xcc,0xf6,0x3e,0x69,0xbd,0xdc,0xcb,0xe7,0x74,0x58,0xdc,0x33,0x37,0x0f,0x32,0x7d,0xe3, + 0x03,0x65,0xc7,0x91,0x2f,0x12,0xa9,0x1b,0xee,0x5a,0xaa,0x37,0x66,0xc7,0xf7,0x39,0x04,0xe2,0xef,0x0c, + 0xb0,0x31,0x49,0xc4,0xca,0x81,0x13,0xbe,0x09,0xd3,0xbf,0xb2,0xad,0x25,0xbf,0x9b,0xd3,0xd4,0xe5,0xbb, + 0xd3,0x35,0x30,0x1d,0x37,0xd5,0x89,0xb8,0x55,0x5f,0xbe,0xab,0x10,0x96,0x08,0xa5,0x09,0x38,0x9f,0x10, + 0x61,0xcc,0xa1,0x41,0xe6,0x05,0x7d,0xfa,0x1e,0xf7,0xc0,0x87,0x31,0xeb,0xc3,0xe5,0x95,0x0a,0x08,0xc4, + 0x95,0x73,0xb2,0x91,0xda,0xcc,0xd5,0x16,0xa7,0xed,0x5e,0xc9,0x3f,0x7c,0x87,0x5a,0x5b,0x2d,0xe9,0x95, + 0xfe,0x02,0x83,0xd5,0xb7,0xb7,0x85,0xeb,0x02,0x86,0x30,0xb3,0x1a,0xc8,0xca,0x74,0x85,0x05,0xc3,0xe3, + 0xca,0x5f,0x54,0x4f,0x44,0xe6,0x4f,0xfa,0xe4,0x53,0xd1,0x3a,0xfe,0x33,0x8b,0x38,0x13,0x01,0xf5,0xe2, + 0x68,0xb7,0xde,0x8d,0x96,0x57,0x8a,0x55,0xfd,0xcb,0xab,0x24,0x52,0x55,0x00,0xc0,0x96,0x17,0xcf,0xa2, + 0xfd,0x26,0xd4,0xd3,0x7f,0xdf,0xd9,0x75,0x7a,0xf2,0x6b,0x95,0xbe,0xad,0xbc,0x04,0xdf,0x4a,0xc5,0xca, + 0x8e,0x96,0xce,0x64,0x7f,0xac,0x70,0xeb,0x6e,0x18,0x36,0xde,0x61,0x6f,0xa3,0xa0,0x66,0x46,0xfa,0x80, + 0x63,0x05,0xb4,0xca,0x19,0x57,0xa4,0x5a,0x59,0x73,0x88,0xce,0x5d,0xbe,0xfd,0x9b,0x5d,0x95,0x37,0x13, + 0x70,0xf7,0x83,0x98,0x78,0xcb,0xc6,0x35,0x12,0x8f,0x12,0x86,0xc4,0x3b,0x72,0xe9,0x44,0x09,0x64,0x87, + 0x41,0x55,0x0e,0xc3,0x0b,0x6c,0xbe,0xb5,0x07,0xdb,0xa6,0xea,0x9e,0xad,0x58,0x08,0x50,0xaf,0x21,0x67, + 0x64,0x4c,0xc6,0x61,0xce,0xe0,0x7b,0x10,0x58,0x3e,0xb5,0xe2,0x5a,0xb4,0x1d,0x1a,0x37,0x19,0x73,0x86, + 0xbb,0xaa,0xac,0xf5,0xa9,0xab,0x92,0x9e,0x39,0x72,0x9a,0xf5,0x87,0xea,0x48,0x8a,0x02,0x23,0xda,0x71, + 0x29,0xa1,0x3e,0xdd,0x55,0x33,0x25,0x64,0xae,0xde,0xdd,0x08,0x22,0x4a,0x13,0xc8,0xd3,0xc5,0x8a,0x06, + 0x15,0x8a,0xbe,0xf6,0x94,0xaa,0x11,0xc2,0x5d,0x38,0x3b,0x67,0x58,0x6b,0xd3,0x3b,0xf4,0x5d,0xa6,0x7b, + 0x98,0xcf,0x28,0x90,0x4a,0xeb,0x6e,0x74,0x6f,0xfe,0x0a,0x56,0x50,0x62,0xc8,0xc3,0x61,0x0f,0x22,0xbe, + 0x05,0x8f,0xaa,0xe1,0x90,0x5b,0x08,0xa4,0x6d,0x32,0x29,0x69,0xcf,0x94,0x20,0x2a,0xc3,0x7d,0x13,0x26, + 0xcb,0x41,0xe8,0xbf,0xb5,0xd1,0x8e,0x6b,0x57,0x14,0xf8,0xdd,0x95,0xfa,0x28,0xb2,0xb3,0xfb,0x51,0x74, + 0x9f,0x0d,0xc9,0xef,0xbb,0x80,0xa5,0xf7,0x69,0x91,0x37,0x7b,0x0a,0x44,0xee,0x6a,0xa7,0x17,0x5f,0xab, + 0xe2,0x0b,0x96,0xfb,0x13,0x24,0x23,0x8e,0xed,0x64,0x14,0x8d,0xed,0xa2,0x43,0x4e,0xd4,0x45,0x65,0xcc, + 0x8f,0xa4,0x48,0x39,0x2f,0x4a,0xbd,0xe7,0x5a,0x96,0xe2,0x92,0xfa,0xd1,0x24,0xb2,0x45,0x65,0xef,0xca, + 0x1b,0x82,0xe3,0x45,0x15,0x7a,0xc8,0xb4,0xd9,0x02,0x0e,0x6d,0x0c,0x90,0xd4,0xd3,0xf1,0x26,0x4c,0xaa, + 0xc0,0x7c,0x97,0x29,0x1a,0x07,0x73,0x5c,0xb1,0xa6,0x7d,0x52,0x3a,0x01,0xd8,0x58,0x3f,0x2a,0x6d,0xe4, + 0x81,0x3a,0x83,0xdf,0x92,0x96,0xcd,0xa2,0x2a,0x79,0x16,0x72,0xea,0x65,0x65,0xc4,0x55,0x46,0xea,0x7f, + 0x9e,0x37,0x4f,0x0a,0x46,0x7a,0x30,0x70,0x55,0x71,0x78,0xa7,0x92,0x83,0x63,0x73,0x3f,0xd0,0x13,0x89, + 0x72,0x13,0x86,0xbd,0xf7,0xf7,0x65,0xf4,0x55,0x02,0x1c,0x05,0xd2,0x4a,0x98,0x0e,0x12,0x5c,0xf7,0x0d, + 0xc3,0x09,0x5c,0xc9,0x95,0x98,0xcb,0x21,0x2c,0x8a,0x79,0x52,0x41,0xc3,0x43,0x0c,0xaa,0xef,0x5b,0x98, + 0xfd,0x9e,0xb3,0x69,0x18,0x3f,0x43,0xbf,0x2b,0x96,0xcc,0x12,0x95,0x14,0x07,0x86,0x18,0x1d,0xef,0x2b, + 0xa3,0x9c,0x6e,0x17,0xf3,0x48,0xe2,0x9f,0x5d,0x22,0x7e,0xa7,0x34,0x15,0x28,0xae,0x99,0x46,0x9f,0xd2, + 0xb4,0xcc,0x39,0x47,0x0a,0x81,0xde,0xbb,0x2e,0xa7,0x3b,0x3b,0x6c,0x87,0xe8,0xa3,0x5a,0x72,0xae,0xca, + 0xc1,0x10,0x47,0xf7,0xd8,0xf2,0x2e,0x62,0xfb,0x6e,0xe8,0xf2,0x3d,0x84,0xec,0xec,0x9c,0x54,0xee,0xc2, + 0x5b,0x8b,0xde,0x84,0xd9,0x22,0xa2,0x9b,0x4d,0x37,0x11,0x6b,0x2b,0x65,0x60,0xac,0xc3,0x80,0xb2,0xef, + 0x86,0x07,0xfc,0x4e,0x06,0x5c,0x9a,0xf2,0xb4,0xfc,0xdb,0xe1,0xe5,0x8c,0xab,0xac,0x33,0x7b,0x2f,0x65, + 0xf6,0xcc,0x1a,0xbd,0xe6,0xb0,0x0e,0xc4,0x50,0xad,0x0e,0x0f,0x8e,0xc6,0x73,0x33,0xd3,0x4e,0xce,0xe7, + 0xfc,0xba,0x76,0x0f,0x30,0x92,0x65,0x56,0x13,0xc3,0x57,0x10,0x7f,0x57,0x11,0x4f,0x37,0x87,0x8c,0x4b, + 0xc5,0xf1,0x69,0xd6,0x26,0x1d,0x1f,0x3d,0xc4,0xe9,0x71,0xaf,0x1b,0x26,0xa2,0x4b,0x65,0x3c,0xa2,0xd2, + 0x99,0xb1,0xed,0x3c,0x87,0x65,0x4b,0x7a,0xa1,0x9c,0x19,0x62,0xba,0x58,0x73,0x90,0x0d,0x6b,0x3b,0xc8, + 0x13,0x60,0xe6,0xa3,0x67,0xcc,0x57,0xf1,0xad,0x3b,0xe1,0xec,0x46,0x0b,0x08,0xb1,0xb1,0xaa,0xf5,0x67, + 0xa7,0x7a,0x67,0xc7,0xcc,0xb5,0xf5,0x32,0x31,0x6a,0x6b,0x35,0x53,0xe7,0x8a,0x3a,0xb3,0xee,0xf0,0x53, + 0x3f,0xfb,0xd3,0x9c,0x81,0x3a,0xb3,0x96,0x8a,0x04,0xc9,0x51,0x32,0x64,0xbe,0x66,0xed,0x92,0x65,0xa2, + 0x9f,0x99,0x90,0x4f,0x96,0x5f,0x61,0x25,0x2e,0x7d,0x9b,0x95,0x87,0x0f,0x8f,0x8c,0xfe,0xc8,0x52,0x5c, + 0xb4,0x14,0x26,0xc5,0xad,0xda,0x1b,0x0b,0xd4,0x85,0xa9,0xef,0x85,0x8f,0x00,0x5c,0x4d,0x10,0xc7,0x69, + 0x5e,0xe4,0x0d,0xe5,0xda,0x0f,0x5e,0xc8,0x07,0xf5,0xa8,0x20,0x9a,0x26,0x27,0xda,0xf1,0x20,0xab,0x7c, + 0xbd,0xaa,0xa2,0x56,0xd9,0x02,0xc3,0x66,0x3f,0xcc,0x2a,0xdf,0x11,0x04,0x5f,0xb1,0x35,0xaa,0x9a,0xaf, + 0xc5,0x2b,0x39,0x66,0x41,0xd7,0x91,0xe4,0x5f,0x4e,0x25,0x53,0x9c,0x3e,0xad,0x08,0x2b,0x30,0x5d,0xc6, + 0x3c,0x4a,0x98,0xc0,0xa1,0x57,0xbb,0x49,0x56,0xcf,0x13,0x58,0x43,0x87,0x42,0xe7,0xbf,0xeb,0xee,0xaa, + 0xf1,0xb9,0x69,0xa3,0xdb,0xb7,0x56,0x58,0x19,0xd8,0x3b,0xf7,0x99,0xc1,0x49,0x64,0xa3,0x3d,0xa5,0x37, + 0x51,0x1a,0x55,0xf8,0xf1,0x81,0x1f,0xcc,0x5d,0x7b,0xbb,0x19,0x0c,0xfe,0x8a,0xdd,0xfb,0x51,0x7a,0x7f, + 0xb7,0x45,0xbc,0x20,0x76,0x2b,0x87,0xdd,0xb7,0xbf,0x4f,0x3a,0x10,0x79,0xb3,0xe1,0xa2,0x37,0x8b,0x2e, + 0x1d,0x55,0xeb,0xee,0x27,0x75,0x92,0x4c,0xe2,0x5b,0xd7,0xd1,0x66,0xe0,0x6a,0x77,0xd1,0x59,0x74,0x08, + 0xd3,0xf2,0xae,0x70,0xde,0xeb,0x44,0xcd,0x75,0x24,0xd6,0x13,0x50,0x41,0x33,0x79,0x14,0x99,0x93,0xef, + 0xef,0x95,0x25,0x9a,0xc5,0x71,0x8c,0x68,0x9f,0xef,0x7b,0x49,0x0c,0xa0,0xde,0xa8,0xd7,0x5a,0x39,0x44, + 0x44,0xe8,0xe1,0x4f,0x6e,0x7d,0x57,0x59,0x84,0xc4,0x61,0x29,0x83,0xc2,0xf4,0xed,0xbf,0x38,0x44,0x50, + 0xb5,0x9b,0xf1,0x83,0xfa,0xb6,0x62,0xad,0x79,0x6e,0x8d,0x7d,0x7d,0xa0,0x6c,0x7d,0x95,0x4b,0xb4,0x94, + 0xc6,0x06,0x02,0x0f,0x6a,0x1a,0x53,0x05,0x3f,0x57,0xf1,0x61,0x34,0x6d,0xeb,0x39,0x0d,0x82,0xad,0x86, + 0xe9,0x37,0x9f,0xe3,0xef,0x42,0xb7,0x79,0x74,0x74,0xb7,0x4d,0xfb,0xf6,0x94,0x49,0xc6,0x3b,0x4c,0xe2, + 0x0d,0x7a,0x1d,0x45,0x30,0xd3,0xff,0x9e,0x88,0x30,0x37,0x59,0xb7,0xb7,0xe0,0x15,0xc5,0x1c,0xc5,0x75, + 0xd8,0xba,0x18,0x3b,0xcb,0xa1,0xb8,0xd8,0x25,0x2c,0x0f,0x2b,0x8f,0xfb,0x27,0xab,0xb6,0xad,0xca,0xfb, + 0x98,0x06,0xa9,0x14,0x61,0x05,0x76,0x73,0x6e,0x98,0x18,0x2a,0x53,0x2d,0xa5,0xd1,0x22,0x38,0xd5,0x1f, + 0x1d,0xf0,0x63,0x6c,0x47,0xa9,0xa9,0x0a,0xe2,0x6e,0xc6,0xa6,0x92,0x1b,0x50,0xd7,0x71,0x39,0x31,0x6b, + 0xb2,0x1b,0xd9,0x8c,0x28,0xad,0x27,0x6c,0x3e,0x6b,0x33,0x12,0x9f,0x63,0x17,0x90,0x21,0xcd,0xb6,0x75, + 0x7b,0x5b,0xdb,0x5a,0xd2,0xa1,0x66,0x5c,0x45,0x21,0x74,0xea,0xe0,0x3c,0xe6,0xb0,0x3c,0x2f,0xf9,0xd6, + 0x9a,0x83,0xfd,0x24,0x8c,0xc9,0x6f,0xa7,0xd1,0x84,0xbf,0x26,0xc2,0x91,0xaa,0x33,0x70,0xf6,0x6d,0xe5, + 0x43,0x25,0x47,0xc7,0x9f,0xe2,0x6e,0x51,0x62,0x1e,0x7a,0x88,0xb8,0xe5,0x8d,0xd3,0x4f,0x2d,0x91,0xea, + 0x3f,0x0d,0xcd,0x43,0xcb,0x8e,0xe1,0x14,0xc2,0xfb,0xfc,0x03,0x11,0x80,0xad,0xc9,0xaa,0x04,0x93,0x4b, + 0x23,0x98,0x18,0x72,0x10,0x59,0xb7,0x3f,0xa0,0xc5,0x9f,0xd4,0x62,0x17,0x95,0xde,0x3f,0x9e,0x9a,0xe0, + 0x06,0xf7,0x79,0xda,0x54,0x2f,0x36,0x73,0x5a,0xf6,0xa3,0x35,0x07,0x08,0xac,0xf6,0x7b,0xd8,0xda,0x1c, + 0x41,0xbd,0xc1,0x04,0xbb,0xbc,0xbe,0xab,0xab,0xa9,0x6e,0x1a,0x3d,0xb3,0x4b,0x6f,0x0c,0x68,0x24,0xbe, + 0x8e,0xf8,0x11,0x6c,0xcb,0xc3,0x46,0xd1,0x3c,0x2c,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x46,0xc1,0xae,0x61, + 0x68,0x10,0x2c,0x04,0xa5,0xd9,0xa5,0x86,0x71,0x31,0xbb,0x00,0x38,0x74,0x3e,0xc1,0x6c,0x07,0xef,0x29, + 0xed,0xec,0x26,0x28,0xf0,0xb0,0x57,0xe0,0x21,0x7c,0xd4,0x1c,0xbb,0x16,0x76,0x83,0xc9,0xa1,0xe3,0x79, + 0x6c,0x6c,0xbf,0x3d,0xc1,0x0b,0x63,0xed,0x1c,0x41,0xaf,0x82,0xa9,0x37,0x53,0x46,0x53,0x4d,0x6b,0x19, + 0x8c,0xaf,0x38,0xe5,0xe1,0x15,0xa7,0x1b,0xa3,0x6b,0xfc,0x34,0x78,0x02,0x7c,0xbb,0x47,0x80,0x0b,0xe1, + 0x3e,0xc4,0x81,0x0c,0xcc,0x91,0xb7,0x37,0xb0,0xcc,0xc9,0xed,0x6d,0x40,0xe9,0x13,0x46,0x5c,0x95,0x56, + 0xa7,0x1f,0x1d,0xb3,0xbd,0xf2,0x6e,0x5c,0xf3,0x7c,0xd4,0x12,0xcb,0xce,0x07,0x46,0x8f,0x6e,0x30,0x49, + 0x12,0x1c,0xfd,0x0e,0xf7,0x9b,0xcb,0xd2,0xd8,0x54,0xd0,0xa8,0x53,0x94,0x16,0x21,0x58,0x07,0x3d,0xaf, + 0x23,0x5e,0x1d,0x67,0xbc,0x6f,0x5c,0x18,0x22,0xbb,0x83,0xb6,0x71,0x9b,0x69,0x4e,0x5b,0x19,0x9e,0xe2, + 0x84,0x7b,0x98,0x47,0xf0,0x18,0x04,0x5d,0x43,0xa0,0x2c,0x79,0x8b,0x2b,0xd8,0x24,0xd9,0x32,0xbc,0xad, + 0x72,0x1a,0x0b,0x5b,0x57,0xcb,0x5c,0xf2,0xf8,0x65,0xe2,0x7d,0x00,0xd8,0x90,0xfc,0xe8,0x8a,0x46,0xbb, + 0xec,0xc6,0x04,0xf5,0xa6,0x2b,0xd6,0x07,0x43,0x14,0xe6,0x36,0x39,0xed,0x24,0xe3,0xf6,0x34,0x15,0x65, + 0x71,0x67,0xd6,0x4c,0xf3,0xbe,0x41,0xc5,0x5d,0x71,0x74,0x26,0x78,0x70,0xa6,0xd8,0x26,0x36,0x0a,0x9a, + 0x5b,0x84,0x3e,0xc3,0xe3,0x7a,0x80,0x7e,0xa2,0x07,0x65,0x86,0xd6,0xef,0x63,0x72,0x69,0xcd,0x77,0x23, + 0x7a,0xea,0x34,0x1d,0x17,0xfc,0x52,0xb8,0x7e,0x74,0x2f,0xe1,0xd4,0x5e,0xf4,0xe1,0xaf,0x4f,0x20,0xde, + 0xa6,0xcc,0xc2,0x9c,0xc3,0xea,0x88,0x71,0x86,0x77,0x92,0x37,0x0f,0x06,0x5a,0x60,0x32,0xc3,0x3d,0x0f, + 0x90,0xd4,0xc6,0x85,0x3d,0x3d,0xb4,0x80,0xbd,0xa3,0xfb,0x18,0x46,0xce,0x9d,0x41,0xcc,0xe5,0xb7,0x4f, + 0x84,0x88,0xf0,0x0b,0x9a,0xf1,0x78,0xf3,0x7b,0x1b,0x7d,0x2f,0xd9,0x75,0x78,0x49,0xe2,0xa1,0x44,0x4a, + 0x3c,0xad,0xdd,0x34,0x38,0x2f,0x8a,0x10,0x93,0x75,0xb0,0x91,0xc4,0x60,0xff,0x53,0xdb,0xb3,0xd3,0x56, + 0x28,0x60,0x88,0x22,0x96,0xb0,0x18,0x9d,0x71,0x3d,0x36,0xa6,0xbc,0x90,0x31,0xdc,0x10,0x2f,0x0e,0xcc, + 0x6e,0x1d,0x5a,0x9c,0xa3,0xad,0x3b,0xbf,0x26,0xd1,0x71,0x15,0x07,0x23,0x67,0xaf,0x3a,0x74,0xf1,0xe5, + 0x6c,0x77,0x97,0x5f,0x4b,0x8c,0x25,0x35,0x05,0xd6,0x5d,0x44,0x1b,0xb8,0x13,0x6c,0x46,0xdf,0xee,0x0c, + 0x08,0x03,0xf5,0xd4,0x59,0xec,0x8c,0xfb,0x03,0xad,0xa2,0xdf,0xd3,0xf5,0xa4,0x96,0xf3,0x43,0x66,0x6b, + 0x92,0x9b,0xe3,0xc4,0x1c,0x2b,0x7c,0xdf,0x89,0x35,0xb8,0x70,0xb7,0x21,0x13,0x80,0x1c,0x13,0x05,0x1a, + 0x19,0x3b,0x05,0x6d,0xa3,0x17,0x7a,0xfa,0x42,0x5f,0x2d,0xf9,0x70,0xcf,0xc5,0x3f,0x22,0x99,0xd0,0xb6, + 0x26,0xc6,0xf3,0x64,0x5e,0x4d,0x3f,0x19,0xec,0xe1,0x3a,0x46,0x8b,0x18,0x64,0xae,0x7b,0x44,0xb3,0x23, + 0x77,0xfb,0xf7,0xd4,0x4c,0x3b,0x28,0x90,0xd0,0x97,0xaa,0xb3,0x61,0xe4,0xd8,0xbf,0x27,0xfb,0xc6,0x84, + 0xb5,0x30,0x0e,0xbe,0x41,0x14,0x89,0xf4,0x30,0x62,0x67,0x5f,0x1b,0xf0,0x62,0xe8,0xde,0xac,0x9b,0xca, + 0x86,0xd9,0x37,0xd2,0xc7,0x55,0xe7,0x2a,0xee,0x43,0x89,0x6e,0x71,0x34,0x5e,0x81,0xd5,0xce,0xb6,0xb7, + 0x57,0x88,0x95,0x4d,0x7b,0xe3,0x32,0xaf,0x71,0x77,0x48,0x2e,0xce,0xbc,0xfb,0xaa,0x21,0xb2,0x5b,0x18, + 0x41,0x22,0xbe,0x4d,0x48,0x8c,0xfb,0x91,0xe3,0x09,0x39,0xd1,0xbc,0xc0,0xfd,0x66,0x37,0xae,0x04,0xdf, + 0x12,0xec,0x0b,0x0d,0x84,0x63,0xc9,0xd1,0x4e,0xa1,0xff,0xd1,0x06,0xf1,0x61,0x8a,0x25,0x82,0x42,0xaa, + 0x11,0x9d,0x31,0x93,0xfb,0xcc,0x6b,0x72,0x2b,0xf4,0x80,0x16,0x6c,0xae,0x23,0x5c,0xa9,0x25,0xcf,0x89, + 0x0e,0x54,0xea,0x69,0x65,0xd9,0x87,0x6b,0xe5,0x23,0x2b,0x4d,0x27,0x4d,0x97,0x65,0x38,0x72,0x11,0x9e, + 0x0c,0xea,0xe6,0x8b,0x55,0x76,0xb3,0x1a,0x90,0x9f,0x28,0x23,0x20,0x44,0x0a,0x84,0x89,0x7c,0xbc,0x88, + 0x3f,0x4d,0x24,0x21,0x01,0x4e,0x4d,0x26,0x3d,0x71,0x26,0xfd,0x06,0x99,0xbc,0x53,0x7d,0x09,0x7e,0x4d, + 0x81,0x22,0xa4,0xc4,0x92,0x3d,0x21,0x91,0x49,0x4f,0x41,0x7a,0xc0,0x2d,0x23,0xf7,0x3e,0xc4,0xae,0xec, + 0xfb,0x04,0xe4,0x4b,0x8b,0x71,0xdf,0x8b,0xa2,0xc4,0x01,0x57,0x94,0x7a,0xdf,0xea,0xd2,0x63,0x27,0xf6, + 0xc5,0xa5,0x8f,0xc3,0x2c,0x62,0x9f,0x20,0xc6,0x62,0x54,0x62,0xce,0x57,0x6e,0x9d,0x9f,0x89,0x05,0xdb, + 0x3d,0x2d,0x6d,0x8e,0x99,0x37,0x65,0xbc,0x52,0x4d,0x41,0xeb,0x8b,0xe0,0xca,0x4a,0xd4,0x61,0x57,0x56, + 0xdc,0x19,0xa5,0x30,0x98,0x3e,0x93,0xa0,0xb6,0x0f,0x2c,0xa4,0xd9,0xc9,0x09,0x3d,0x23,0x83,0xf2,0x61, + 0xb2,0x62,0xdc,0xdd,0xf9,0xca,0x93,0x22,0x42,0x03,0x5a,0xd1,0xa0,0xe9,0x1e,0x5f,0x44,0x13,0xed,0x86, + 0xe5,0xdc,0x97,0x3e,0xc0,0xab,0x14,0x66,0xad,0x61,0x90,0x8a,0x2b,0x99,0x8c,0x40,0x54,0x12,0xd2,0xe3, + 0x15,0x31,0x47,0x9d,0x50,0x30,0xf9,0x5d,0xfc,0xce,0x56,0x1f,0xb1,0xb9,0x8c,0xd2,0x50,0x96,0x65,0x87, + 0xa4,0xf3,0xb1,0xce,0x3a,0x04,0x65,0x69,0x08,0xca,0xd2,0x11,0x94,0x65,0x8f,0xa0,0x2c,0xfb,0x04,0x65, + 0xd9,0x23,0x28,0xcb,0x41,0x82,0xb2,0xfc,0xcf,0x09,0x4a,0x3b,0x20,0x43,0x51,0xca,0x4b,0x1a,0xdd,0xc8, + 0x6e,0xa0,0x3d,0xae,0x4e,0xcb,0x34,0xa8,0xc1,0x38,0x6b,0x94,0x7e,0x71,0x92,0x4e,0x7d,0x71,0x47,0xca, + 0xcb,0x26,0x33,0x13,0xea,0xf4,0x29,0xff,0xd9,0x8d,0x08,0x23,0xc7,0x2b,0x0e,0xa2,0x9c,0x74,0x2e,0xae, + 0x06,0x76,0xf6,0x6f,0xe9,0x50,0x11,0x1c,0x0e,0x7c,0xfd,0x2b,0x75,0x75,0xcd,0x94,0x58,0x8e,0xfb,0xec, + 0x9b,0x3e,0xa7,0x4e,0x07,0x7b,0x02,0x90,0x30,0x71,0xd3,0x19,0x72,0xf8,0x39,0xb5,0xde,0x93,0xbb,0x6d, + 0x18,0x19,0x9d,0x86,0xe8,0x1d,0x26,0x5d,0x96,0x4d,0xda,0x8d,0xba,0x38,0xce,0x85,0x61,0x77,0x89,0x6e, + 0x77,0x74,0x89,0x2c,0x6b,0x90,0xd7,0x35,0xff,0x73,0x01,0xdd,0x6c,0x24,0xd2,0x7d,0x0e,0xff,0x73,0x20, + 0x71,0x08,0xd9,0x7e,0xce,0xc0,0x4a,0xc9,0x11,0x7f,0x2a,0x1b,0xec,0xd0,0x10,0x89,0xdd,0x36,0x52,0xcb, + 0xa6,0x05,0x82,0x0f,0x5a,0x74,0x13,0x09,0x1c,0x1d,0xeb,0xb3,0x63,0x87,0xc8,0xee,0xd3,0x3b,0x77,0x30, + 0xf9,0x9d,0x4a,0x5b,0x66,0x70,0xbb,0x33,0x0d,0x47,0x52,0x42,0xb4,0x84,0x55,0x2b,0x99,0xe7,0x8a,0xb7, + 0xe3,0xda,0x78,0x5f,0x38,0xe8,0x0c,0xac,0xb6,0x1f,0xa8,0x7b,0x0f,0x54,0x64,0x48,0xf6,0x76,0x74,0x59, + 0xe7,0xcb,0x67,0xd6,0xe7,0xc0,0xbf,0xc2,0x66,0xc2,0xe4,0x3a,0xb5,0x67,0x50,0xc4,0xa5,0x71,0xb9,0x20, + 0xd8,0xd2,0x6a,0x20,0xd4,0xbf,0x9f,0x6b,0x09,0x46,0x1e,0x06,0xe4,0xca,0xb3,0x2a,0x58,0x80,0x2a,0xf0, + 0x6c,0xe2,0x5d,0xdd,0xe1,0x97,0x72,0xb1,0xfe,0x12,0xf6,0xc8,0xbe,0x5b,0x5f,0x57,0xe2,0x2b,0x08,0x8d, + 0xc5,0xb9,0x65,0x0e,0x68,0xe3,0xf6,0xc2,0x88,0x07,0xba,0x05,0x35,0x10,0xd3,0xca,0xc5,0xa7,0xac,0x5d, + 0x77,0x0a,0x03,0x0f,0x88,0xab,0x81,0xcb,0xa5,0x10,0xa2,0x32,0x24,0x51,0xe0,0xfd,0xd1,0x25,0x59,0xaa, + 0x85,0x1e,0x42,0x5e,0x73,0x60,0x72,0x43,0xe6,0x24,0xa0,0x18,0x1f,0x1a,0x6a,0x91,0x9d,0x96,0xfe,0xe3, + 0x6a,0x75,0x58,0x2b,0xaf,0xce,0x41,0x12,0x5c,0x2b,0x17,0x57,0x6c,0xff,0x7a,0x7d,0xa2,0x9f,0x3a,0x16, + 0x29,0xe5,0x38,0xbd,0x7d,0xd7,0x2d,0x6b,0xea,0x2a,0x3c,0x27,0x8d,0x79,0x62,0x68,0xd1,0xf4,0x0b,0x97, + 0x04,0x25,0xb1,0x8b,0x00,0x38,0x81,0x73,0xb8,0x02,0x31,0xb8,0x41,0x1e,0xd4,0x12,0x6b,0x9a,0x7d,0xa8, + 0xd3,0xe8,0xf8,0x02,0x04,0xfe,0x43,0x68,0x18,0x4a,0x48,0xc9,0xb9,0xf2,0x32,0xd8,0xbb,0xe9,0xb2,0x8c, + 0xfb,0x22,0x13,0xa9,0x21,0xe1,0x3a,0xc6,0xc6,0x4c,0xdb,0xaa,0x4e,0x20,0x38,0xac,0xee,0x3a,0x24,0xa6, + 0x83,0x72,0xc3,0xdd,0xb8,0x61,0xcc,0xdd,0x80,0x5a,0x09,0x84,0x1f,0xf3,0xf0,0x53,0xa7,0x39,0x64,0xd1, + 0x00,0xa1,0xbd,0x01,0x55,0x59,0x97,0x31,0x0f,0x7c,0x69,0x7b,0x3a,0x59,0x3a,0x37,0xfe,0xe0,0x22,0x67, + 0x2d,0xa2,0xd7,0xda,0x52,0x7f,0xe9,0xfd,0xdd,0x25,0x42,0x14,0x5a,0xe9,0x97,0x8a,0xfc,0xcd,0xea,0x01, + 0x35,0x15,0x38,0xa9,0x76,0xa2,0x5f,0xf8,0xcd,0xfd,0xcb,0xea,0xe1,0xfe,0xc3,0xbf,0x3d,0x38,0x53,0xd1, + 0x2f,0xf2,0x18,0x25,0xbd,0xcc,0xaf,0x7d,0xe6,0xd7,0xe1,0x05,0xa1,0x33,0x03,0x0b,0xf0,0xde,0xb3,0x20, + 0xa4,0x2f,0xb7,0x5e,0xf8,0x59,0xf6,0x17,0xc5,0xba,0xbe,0x89,0x56,0x43,0xd7,0x35,0x34,0xc8,0x84,0x95, + 0x53,0x38,0xfb,0x9e,0x85,0x3e,0x9e,0x41,0x3f,0xe3,0x4f,0x55,0xf6,0xa9,0xfa,0x83,0x08,0x9d,0x08,0x86, + 0x6b,0x74,0x4f,0x59,0x3b,0xb9,0xff,0x28,0xdf,0x3a,0x87,0x12,0x38,0xfa,0xa5,0x8c,0x1e,0x7c,0x73,0x3f, + 0xbd,0xff,0x88,0x4a,0x11,0xd6,0x30,0xef,0xea,0x53,0xe5,0xcb,0x7b,0x2f,0x9c,0x9d,0xff,0x73,0xb0,0x3f, + 0x8e,0x92,0x6f,0xf6,0x19,0x11,0x5e,0xb8,0x90,0x77,0xa7,0xb5,0xd6,0xbf,0xeb,0x18,0x91,0x96,0x17,0x2e, + 0xd1,0x47,0x15,0xb7,0x17,0x81,0xab,0xb3,0x32,0x5b,0x89,0x18,0x46,0x39,0x4a,0x31,0x62,0xa3,0x99,0x6b, + 0xce,0xa1,0xa3,0x59,0x51,0xaf,0x14,0x97,0xf0,0xea,0x5a,0x05,0x75,0xa8,0x3a,0x1e,0xa8,0xf9,0x3c,0x6f, + 0x82,0x6b,0x2f,0xd5,0x49,0x99,0x3d,0xd8,0x8b,0x7f,0xb9,0x4c,0x68,0x2d,0x2e,0xcb,0x6c,0x38,0xe6,0x89, + 0x5b,0xb7,0x93,0xd0,0xa4,0x20,0xb4,0x6d,0x9a,0xa0,0xcb,0x3f,0x2c,0x97,0xb0,0x9c,0x86,0x97,0x37,0x22, + 0xb0,0xc2,0xe4,0xf5,0xea,0xce,0x2a,0x4d,0x6c,0x9b,0xfd,0xa4,0xfb,0xe1,0xae,0xd7,0x3b,0xd2,0xe7,0xf7, + 0xa8,0x77,0xbf,0x3c,0x89,0x0f,0x1f,0xef,0xfd,0xeb,0x08,0x3d,0xfc,0xf4,0x87,0x3d,0xbc,0x57,0xaa,0x68, + 0xef,0xde,0x41,0x84,0x6a,0x5f,0x55,0x97,0xb6,0x5a,0xaa,0xeb,0xe9,0xa6,0x4c,0xc6,0x29,0xe0,0xd5,0xe3, + 0xae,0xbe,0xc8,0xc5,0x72,0x51,0x1f,0x88,0xaf,0x03,0x51,0xbd,0xc7,0x71,0xd6,0xeb,0x3d,0x7b,0x99,0x62, + 0xa4,0x3e,0x96,0xd9,0x61,0x14,0xac,0x89,0xe7,0xe1,0x22,0x7b,0xe5,0x61,0x74,0xa4,0xde,0xa2,0x94,0xd8, + 0x5f,0x3e,0x65,0x18,0xa3,0x4c,0x01,0x36,0xaa,0xc2,0x64,0xb0,0x51,0x37,0xe4,0xf0,0x62,0xdc,0xed,0xd2, + 0x7f,0x30,0xe1,0x29,0xdd,0x5d,0xbb,0x36,0xe3,0x99,0x44,0x22,0x46,0x9b,0xf2,0xc4,0x79,0xfe,0x8e,0x66, + 0xa4,0x87,0x6f,0x72,0x83,0x90,0xf8,0x9c,0xcf,0xa8,0x53,0xbf,0x96,0xd9,0x8d,0x10,0x13,0xaf,0x35,0x11, + 0xce,0x04,0x6a,0x54,0xf0,0xac,0x20,0xe6,0x73,0xe8,0x86,0xd5,0xa6,0x98,0xc3,0x30,0x83,0xe8,0x7a,0x82, + 0xa2,0xd9,0x8a,0x27,0xe9,0x63,0xb1,0x44,0x82,0xbd,0xee,0x97,0x33,0x75,0x0d,0xd1,0x0e,0xec,0xab,0xf0, + 0xca,0x6d,0x7e,0x27,0xf7,0xc0,0xb2,0xf7,0x86,0x02,0x75,0xdf,0x49,0x28,0xce,0x4a,0x1a,0xcc,0xcc,0xec, + 0x3a,0xa2,0x47,0x8e,0x94,0xbd,0xfc,0x71,0xb0,0x23,0x9d,0x70,0xf7,0xe9,0xd3,0x32,0x48,0x80,0x2b,0x97, + 0xa4,0xfc,0x50,0x7e,0x2a,0xab,0xcb,0xd2,0x54,0x8a,0xb4,0x5e,0xf4,0xfc,0xf4,0x4c,0x0d,0x05,0xc7,0x4f, + 0x1f,0x97,0x2a,0xb8,0x84,0x11,0x1f,0x1e,0xcf,0x8b,0x53,0x3d,0xbd,0x9e,0xce,0x35,0xee,0x9d,0xa6,0x3e, + 0x95,0x6b,0xf5,0x8a,0x20,0xf2,0xf0,0x7f,0x7e,0xb9,0x1c,0xdd,0x3b,0x7a,0xa0,0x9e,0x43,0x56,0x76,0xcc, + 0x7b,0xeb,0xf8,0x98,0xc8,0xb1,0x9b,0xb5,0x7a,0x47,0x49,0x9e,0x4c,0x75,0x57,0xf8,0x89,0x67,0x8f,0x7a, + 0x39,0x9c,0xfb,0xd3,0xcf,0xcf,0xcb,0x8b,0xa2,0xae,0x4a,0x73,0x1f,0xfa,0x76,0x27,0x01,0x92,0x3c,0xee, + 0xa9,0x7a,0x56,0x66,0x2f,0xcb,0x9d,0x9d,0xe1,0xdc,0x2e,0xc0,0xab,0x17,0x65,0xf6,0x8e,0xca,0x1a,0x97, + 0xa2,0x32,0xbf,0x28,0xce,0xc0,0x29,0x8c,0x56,0x34,0x61,0x8f,0xcf,0xf8,0xc2,0xa9,0x4e,0xf9,0x37,0x65, + 0xf6,0x82,0xca,0x3f,0x58,0x34,0x85,0xbe,0x25,0xdc,0x33,0xa3,0x22,0xc6,0x26,0xec,0x45,0x99,0xa8,0xd7, + 0x92,0xfd,0x22,0xf0,0x68,0x44,0xc9,0xad,0xaf,0x47,0xfb,0xc0,0x6e,0xea,0xfd,0x66,0xbe,0x9e,0x9d,0xe9, + 0x07,0x9c,0xf9,0x64,0x33,0x93,0xe0,0xa0,0xa6,0x73,0x0e,0xd9,0x74,0x9a,0xd9,0x37,0x5c,0xb9,0x51,0xaa, + 0x9f,0x4c,0x57,0x8a,0xe5,0x39,0xed,0xad,0xdb,0x62,0x99,0xcf,0xe8,0x4f,0x45,0x7f,0xaa,0xc6,0x77,0x09, + 0x4e,0xed,0x55,0x63,0x3e,0xf9,0xa1,0xcc,0x62,0xfe,0x66,0x7a,0x5e,0x13,0x89,0xf2,0xcb,0x83,0x5f,0x66, + 0xbb,0x41,0xef,0x6f,0xd6,0x23,0xbe,0x69,0x38,0x51,0x3f,0x42,0x89,0x0d,0xaa,0xea,0x5d,0xc9,0x51,0x36, + 0x81,0x95,0xbf,0x63,0x7b,0x88,0xe1,0x6b,0x99,0xbf,0x23,0x7c,0x62,0x62,0x34,0x44,0xea,0x06,0xd7,0x3a, + 0x07,0x94,0x30,0x2a,0xdb,0x5f,0x13,0x6e,0x31,0xb3,0xbc,0x19,0x13,0x10,0x3d,0xd8,0x73,0xdf,0x33,0xd4, + 0x7f,0x57,0x26,0x81,0xdb,0x39,0xda,0xff,0xbd,0x54,0xbf,0x95,0xea,0xfb,0x00,0x05,0xf5,0x68,0x01,0x1a, + 0xe3,0xef,0x30,0xac,0xf9,0x9d,0xda,0xc3,0xa2,0x0e,0xc1,0xd0,0xd9,0xbc,0x3a,0xc9,0xe7,0xa0,0x49,0x19, + 0x51,0x61,0x5e,0x24,0x09,0xb8,0x1f,0xbc,0xe0,0x48,0x97,0x17,0xa3,0x1f,0x7f,0x78,0x7e,0xfc,0xfc,0xcd, + 0x8f,0x89,0xfa,0x9d,0x60,0xf9,0xef,0x1d,0x10,0x39,0x3e,0x46,0xe6,0xb3,0xe7,0x3f,0x7e,0x7c,0xfb,0xf6, + 0xd5,0x87,0xe3,0x6f,0x5f,0xbd,0x7d,0xf2,0xf8,0xd5,0xf1,0x77,0x6f,0xdf,0x7e,0x7f,0x7c,0xac,0xbe,0x1d, + 0x06,0xdc,0x0f,0xd7,0x8b,0x93,0x8a,0x1a,0xbd,0x17,0xcb,0x53,0x32,0xdc,0x37,0x73,0x3d,0x33,0xca,0xf5, + 0x6e,0x6a,0x4e,0xc6,0xbf,0xdd,0x51,0xb3,0xe6,0xe2,0xf4,0x93,0x4c,0x3e,0x74,0x67,0x3d,0xe0,0xbf,0x4d, + 0x30,0x7d,0x5c,0xb2,0x3d,0x80,0x30,0x5c,0x88,0xed,0xee,0xf1,0x37,0x80,0xe9,0xb7,0x31,0xc5,0xb6,0x2a, + 0x28,0x3b,0x55,0xf8,0x0d,0x2d,0x6b,0xe7,0x9b,0xa0,0x20,0xd6,0xbf,0x53,0x96,0x90,0x45,0x5e,0x87,0x0b, + 0xf9,0xd9,0x0e,0xaa,0x76,0x6d,0x4c,0x0d,0x7e,0x2e,0xb3,0x33,0xf5,0x2f,0x30,0x04,0xff,0x2c,0x37,0x3e, + 0x2f,0x66,0xd9,0xbf,0x88,0x6e,0x33,0xd7,0x42,0xae,0x4e,0xa0,0xc6,0x5f,0x8f,0xff,0x59,0x76,0xfb,0xf8, + 0x61,0x75,0x32,0xd0,0x4d,0x2a,0x6d,0xe2,0x0d,0x52,0x73,0x9d,0x4f,0xc4,0x15,0xb2,0xff,0x95,0xb9,0x39, + 0x15,0xdf,0xa9,0x8d,0x4f,0xe4,0x52,0xf0,0xb0,0x7f,0xc1,0x9d,0xe1,0xee,0x11,0x9d,0x79,0xa6,0x97,0x22, + 0x6f,0xef,0xd5,0x50,0x56,0x2d,0x11,0xd6,0xc3,0xf7,0x02,0xfa,0x0e,0x3b,0x81,0x2b,0xdb,0x49,0xb5,0x7d, + 0x3b,0x29,0xbe,0xf8,0x7e,0xe5,0x6e,0x09,0x74,0x0d,0xb3,0xe1,0x3e,0x4f,0xe7,0x3f,0x4a,0x44,0x86,0x6e, + 0xeb,0xde,0x91,0xef,0x8d,0xb2,0xcc,0xf4,0xc0,0x99,0xc7,0x5c,0xe8,0xc9,0xd7,0x59,0xf5,0xef,0xf3,0x34, + 0x37,0x75,0xf2,0xa5,0x58,0xe6,0x6e,0x4f,0x3d,0x5f,0xd8,0x8b,0x3d,0xcb,0xc6,0xde,0x48,0x22,0x5f,0x99, + 0xdb,0xb3,0x2a,0x79,0xf5,0xd7,0x69,0x85,0x85,0xfc,0xb5,0x5a,0xdd,0x54,0x7b,0x07,0x66,0x98,0xca,0x66, + 0x8c,0x30,0x38,0x06,0x95,0x67,0x9a,0xe8,0x1a,0xde,0xda,0x4b,0x3c,0x37,0x4c,0x9c,0x3b,0xf5,0x98,0xeb, + 0x48,0xc3,0xa4,0x3a,0xbf,0xe4,0x88,0x38,0x0c,0x5e,0xee,0x8a,0x58,0x97,0xe0,0x3d,0xcb,0x58,0x67,0x21, + 0x89,0x36,0x02,0xbb,0x2f,0xf6,0x74,0x4e,0x8d,0xce,0x82,0x04,0xbe,0x55,0xd6,0xbe,0x76,0xc2,0x99,0x37, + 0x41,0x1a,0xdf,0xa6,0x17,0xf6,0x66,0x33,0x1e,0x3a,0x4c,0x8d,0x88,0x86,0xc8,0x6e,0x78,0x29,0x52,0x84, + 0xf3,0x3b,0x2d,0xce,0x56,0x7c,0x23,0x7b,0x0a,0xa4,0x3b,0xd6,0x26,0x64,0x09,0xac,0x7f,0x07,0x30,0xe7, + 0xf0,0xb4,0xac,0xd5,0x10,0x9a,0x27,0xca,0x27,0x6e,0x6b,0x0f,0xa5,0x4a,0x9b,0x58,0x3c,0x65,0xef,0xc2, + 0x15,0x8b,0x8d,0xf9,0x7a,0x0e,0x8e,0xc0,0x22,0x6c,0x96,0x5c,0x88,0xe3,0x4d,0xea,0x78,0xd5,0x11,0x95, + 0x27,0x98,0xb4,0x7d,0x45,0xad,0xd7,0x75,0xd6,0xbb,0x40,0x48,0x15,0x75,0x0f,0x35,0xd4,0xd4,0xf8,0x61, + 0x84,0x3d,0x1b,0x21,0x7a,0xf7,0x32,0xb0,0xd7,0x30,0xf1,0xde,0x90,0xc2,0xf1,0xcb,0xf0,0x50,0xc1,0xb5, + 0x2d,0xaa,0xe1,0x5c,0xd0,0x68,0x98,0x71,0x0c,0x98,0xf3,0x19,0x63,0xc0,0x1a,0x66,0x04,0x57,0x71,0x41, + 0x90,0x3c,0x1c,0x0b,0xfc,0x10,0x17,0xa2,0xb9,0xd0,0x46,0x4e,0x26,0xb1,0xb7,0x37,0x4e,0xf8,0x2e,0x5f, + 0x97,0xe5,0x6c,0xd2,0x11,0x14,0xdf,0xb8,0xb9,0x62,0xc6,0xe1,0x45,0x62,0xee,0x21,0x97,0xe0,0x17,0x63, + 0x13,0xa1,0xb3,0x95,0x08,0x9d,0x32,0xac,0x94,0x1f,0xed,0x60,0x52,0x84,0xa6,0xf7,0x01,0x33,0xed,0xd0, + 0x90,0x6c,0x10,0xc1,0x43,0x87,0xca,0x0b,0xc8,0x63,0xaa,0x13,0x3e,0xe3,0xec,0x45,0xe0,0x2a,0x07,0x5e, + 0x32,0x98,0x05,0xf6,0x54,0xe0,0x3c,0xc4,0x28,0xdb,0x4d,0x2d,0xc1,0x48,0xc0,0xf5,0x30,0x2d,0x48,0xd3, + 0x40,0x9f,0x12,0x84,0x35,0xe7,0xd5,0x6a,0x3e,0xa3,0xbd,0x4a,0x33,0xd8,0x02,0xb6,0x54,0x53,0x6f,0x22, + 0x52,0x09,0xaf,0x62,0x71,0x85,0x5e,0xf2,0x9a,0xff,0xd3,0xe0,0x87,0x8b,0x05,0x3b,0x1a,0x13,0xb6,0xba, + 0x8a,0xe5,0xa2,0x68,0x1a,0x7a,0x64,0x2e,0x9b,0xde,0x88,0x8c,0x12,0xc7,0xcf,0xbb,0x12,0x21,0x89,0xc1, + 0xe8,0x28,0xc9,0x4c,0xaf,0xd3,0x7e,0x76,0x70,0x6b,0xf4,0xa0,0x46,0xc8,0x38,0xfc,0x62,0x5d,0xae,0x44, + 0xdb,0x83,0xb0,0xd5,0x44,0x9b,0xd0,0x0b,0xad,0x77,0x55,0x9b,0x4b,0x7d,0x3b,0x73,0xd7,0xc2,0x47,0x01, + 0xa9,0x97,0xf9,0xfc,0x13,0x0e,0x88,0x71,0x13,0xec,0x02,0x4e,0xbd,0xe3,0xd2,0xac,0x50,0x52,0xde,0x26, + 0x46,0xc6,0xa0,0x43,0x19,0xc3,0x47,0xf4,0x1c,0x01,0xe1,0x09,0x59,0xd3,0x0f,0xf5,0x45,0x75,0x2a,0x0f, + 0x3b,0x72,0xd7,0xcd,0x5c,0x43,0xb8,0xff,0x83,0x5c,0xc7,0x25,0xb7,0x1f,0x4f,0x6b,0x5c,0x83,0x35,0xc8, + 0xca,0x8c,0xa7,0x12,0x98,0xe5,0x0e,0xa6,0x6f,0xab,0x9c,0x3c,0x37,0x29,0xa9,0x0e,0xfd,0x5e,0x1d,0x05, + 0xa2,0x27,0x6d,0xfa,0x5c,0xa4,0x38,0xc4,0xc5,0x0d,0x6e,0xab,0x29,0x36,0x54,0xf6,0x8e,0x08,0xc0,0x8f, + 0x77,0x17,0xd8,0x8d,0x9a,0xe8,0x28,0x7b,0x49,0x85,0xa8,0x47,0x4c,0x85,0x6e,0x1c,0x4a,0xa2,0x2b,0x26, + 0xbc,0xf2,0x03,0x9b,0x4f,0xbb,0xbb,0xf4,0xb4,0x4d,0xd2,0x2e,0xc9,0xd9,0xb7,0x6d,0x75,0x91,0x46,0x7b, + 0x7b,0x3b,0x10,0x3e,0x5f,0x1b,0x33,0x46,0x22,0x6f,0x2f,0x60,0x53,0x97,0x74,0xfd,0x45,0xb4,0x95,0x7c, + 0xc2,0x5b,0x04,0x4a,0x11,0x38,0x8d,0xe4,0xc4,0x80,0xf4,0x2f,0xfc,0x63,0x3d,0xe2,0x61,0x7e,0x94,0xf0, + 0x1d,0x4a,0x59,0x3e,0xc9,0xad,0xd3,0x7b,0x93,0xf4,0x6e,0xc4,0x6b,0x92,0x09,0x71,0x72,0xcd,0x91,0xdb, + 0xb1,0x6b,0x8c,0x5b,0xc2,0x9d,0xd2,0xc3,0x42,0xb7,0xe7,0xd5,0x8c,0x1f,0xe5,0xba,0x6b,0x3c,0x4d,0x4d, + 0xb4,0x83,0xe1,0x89,0xd9,0x1c,0xce,0xd0,0xb5,0x01,0x96,0x60,0xe6,0x61,0x2a,0x0d,0x13,0xc9,0x82,0x2d, + 0x1e,0x6c,0xfb,0x17,0xc4,0xd2,0x64,0xcf,0x45,0x5d,0x5a,0xab,0x79,0xad,0x4e,0xfb,0xca,0xda,0x3e,0xcd, + 0x0d,0x08,0x20,0x9c,0xbd,0xc4,0xe5,0x56,0x6a,0xc6,0x11,0xe4,0x38,0x8e,0x1c,0x9b,0xcf,0x0c,0xd0,0xac, + 0x44,0xe5,0xb9,0x80,0xe2,0x20,0x5e,0xc3,0xf7,0x24,0x99,0x77,0xc8,0xc2,0x30,0x2f,0xfe,0x91,0xc0,0xd9, + 0x19,0xf2,0xf9,0x8a,0x9d,0x5b,0xe1,0x6b,0x22,0xdf,0xf3,0x33,0xfd,0xf4,0x3c,0x2f,0x4b,0x3d,0xbf,0xbd, + 0xdd,0xbe,0x17,0x77,0x93,0x40,0x77,0xdb,0x3b,0x9a,0xba,0x39,0x84,0xd6,0x9a,0xb6,0x5e,0xe1,0x0c,0xe6, + 0x6b,0x9b,0xba,0xb9,0x4e,0xce,0x14,0x0f,0xf4,0xcf,0x3a,0x00,0xfe,0x08,0x67,0x3f,0x6f,0x5b,0x72,0x51, + 0x33,0xea,0xeb,0x56,0xa4,0x16,0x75,0x76,0x41,0xd3,0x4c,0x87,0xd1,0xc3,0xb1,0x79,0x38,0x18,0x81,0x43, + 0xe5,0x52,0xd9,0x8f,0xaa,0x5b,0xfd,0x02,0x45,0x9a,0xd6,0x54,0x02,0x61,0xcf,0xfa,0x8e,0x49,0x25,0x9c, + 0xbd,0x28,0x1a,0x9e,0x4f,0xf3,0x68,0x2c,0x7c,0xcf,0xea,0xcc,0x24,0xd8,0x8b,0x80,0x89,0x94,0x5e,0x75, + 0x5a,0x39,0xab,0xe5,0x56,0x65,0xe2,0x77,0x7e,0x2a,0x3b,0x4e,0x8d,0x67,0x36,0x6c,0x32,0x7d,0x30,0xaf, + 0x19,0x28,0xae,0x6b,0x75,0x2c,0x43,0x23,0x66,0xec,0xa4,0xee,0x09,0x9a,0x8c,0x38,0x75,0x27,0x72,0x01, + 0xa9,0x59,0x78,0x45,0x18,0x2a,0xfa,0x7f,0x6c,0xb5,0xde,0x02,0x5c,0x9c,0xec,0x2a,0x85,0xff,0xbe,0x2b, + 0x54,0x23,0xdc,0xad,0x14,0x2a,0xef,0x2a,0x64,0x6d,0xed,0x58,0x1d,0x4f,0xc4,0x66,0xa7,0x9c,0x82,0x61, + 0x04,0x04,0x9b,0x1b,0x71,0x03,0x35,0xb3,0x9f,0xb5,0xdc,0x46,0x75,0xc5,0x90,0x7a,0x8f,0xff,0x7e,0xe2, + 0x60,0x52,0x4f,0x19,0x6a,0x1f,0xf3,0xdf,0x0f,0x38,0x3b,0x3e,0xe2,0xcf,0xdb,0x21,0xba,0xd8,0x9e,0x73, + 0x0b,0xc4,0x7f,0x67,0xcf,0x88,0x63,0xc6,0x56,0x44,0x84,0xc9,0x39,0xe6,0x13,0x2c,0x47,0xc1,0xc9,0xf5, + 0x24,0x36,0x67,0x22,0x1d,0x8a,0xdb,0xdb,0x35,0x3f,0xc8,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0x92,0x10, + 0x0f,0x8d,0x93,0xf0,0x60,0x18,0x1a,0xa2,0xfc,0x38,0x09,0x0f,0xe6,0x40,0xe2,0xca,0x7c,0x1d,0xfe,0xd3, + 0xe0,0x0b,0x43,0x65,0x4e,0x4f,0x2c,0x95,0x4e,0x6c,0xd2,0xee,0xee,0x47,0xd3,0x90,0xc4,0x7a,0x73,0xd4, + 0xeb,0xac,0xa0,0x73,0xdf,0xd7,0xe3,0x8e,0xf1,0x86,0xf9,0x04,0x26,0xe6,0xf5,0xe5,0xb3,0xf0,0x9d,0x32, + 0x5f,0x12,0xa2,0x32,0x00,0x11,0x14,0xe9,0xa7,0x7a,0x0d,0x02,0xc4,0xed,0x03,0x11,0x14,0x08,0x30,0x50, + 0x8e,0x68,0x90,0x96,0xc6,0xa2,0xd3,0x38,0x7c,0xed,0xf9,0xfc,0x6c,0xbf,0x2a,0x45,0x6c,0x61,0x6f,0xd6, + 0x83,0xc3,0x9a,0x09,0xc4,0x32,0x8a,0xfc,0x15,0x97,0x03,0x07,0xe6,0xc0,0x21,0xdc,0x41,0x9f,0xe3,0x36, + 0x33,0x67,0xb1,0xbf,0x7b,0x6a,0xcd,0xae,0x57,0x41,0x7f,0x60,0x31,0x3e,0xd4,0xbb,0x04,0x8e,0xfb,0x2a, + 0xa4,0x84,0xec,0x54,0x5a,0x13,0x33,0xfb,0x19,0xc2,0xe3,0xbc,0x0d,0x4f,0xfa,0x1e,0x7d,0x2e,0x7c,0x9e, + 0x0a,0x18,0xc7,0x7f,0x98,0x58,0x43,0x2e,0x29,0x09,0x58,0x3a,0x89,0x7f,0xc1,0x50,0x9a,0x19,0x00,0xe5, + 0xb0,0x7e,0xa6,0x07,0xd2,0x4f,0x73,0x15,0x9d,0x72,0xa2,0x15,0x63,0x0c,0xee,0x20,0x28,0x69,0xcf,0xeb, + 0xea,0x92,0x0e,0x90,0x27,0xac,0xd5,0xbe,0x2f,0x9f,0x6d,0xd1,0xd4,0x6d,0x19,0x98,0xde,0x82,0xd1,0x45, + 0x77,0x39,0x61,0x91,0x92,0xac,0x09,0x1f,0x51,0xe5,0xd7,0x37,0x0e,0x2e,0x77,0x76,0x7e,0xc7,0xa4,0xf9, + 0x2e,0xa2,0xff,0xd5,0x32,0x36,0xd3,0x03,0x09,0x40,0xb9,0x5a,0x02,0x96,0x7c,0xb4,0x3e,0x30,0x1e,0x75, + 0x97,0x5d,0xa7,0x02,0x03,0x0e,0x3b,0x2d,0x41,0xf1,0xb8,0x0b,0x6c,0x90,0x59,0xc4,0x30,0x89,0x8b,0x7b, + 0xe9,0x12,0x95,0xac,0x03,0xbd,0x96,0xd5,0x0f,0x41,0xd8,0x7d,0xdf,0x1a,0x29,0x81,0x6c,0xdc,0xa4,0xd7, + 0xa5,0xa0,0xdf,0x9f,0x61,0xcf,0xb1,0x65,0x2c,0x84,0xb5,0xe0,0x0b,0x6c,0xbf,0x6d,0x26,0x58,0x8c,0xa1, + 0xfe,0xd3,0xb8,0x70,0x59,0x83,0x97,0x3a,0x18,0xf1,0x80,0xb1,0x90,0xf2,0xdd,0x1d,0x87,0xbb,0xaf,0x5b, + 0xd3,0xc6,0x2e,0xec,0x25,0x88,0xf4,0x25,0x4e,0x94,0xaf,0xb0,0x09,0x76,0x7a,0x38,0x51,0xdd,0x3d,0x5f, + 0x76,0x27,0xd1,0x46,0xc0,0xec,0xcd,0x90,0x48,0x1c,0x36,0xa4,0x33,0xbc,0x09,0x02,0x24,0xb3,0x6d,0xf6, + 0x02,0xb0,0x94,0xa4,0xd7,0x2b,0x2a,0x9c,0xde,0xb1,0xd8,0x26,0xca,0x75,0x96,0x7d,0xc2,0x85,0xd4,0x0c, + 0xb7,0xfc,0x04,0xd4,0xf5,0xb8,0x63,0xfa,0x77,0x55,0x3b,0x6b,0xc4,0x71,0xf9,0xcd,0x87,0x7a,0x67,0xe7, + 0xaa,0xe6,0x0b,0xd8,0x66,0xdf,0x70,0x4d,0x49,0x49,0x0b,0x42,0x85,0x4c,0x6c,0xeb,0x72,0xf7,0x40,0xed, + 0x43,0x86,0xc3,0x07,0xdd,0x95,0xbd,0x27,0x33,0x19,0x3f,0xc5,0x2e,0xc7,0xc9,0xb0,0xaf,0xbe,0x8b,0x57, + 0xad,0x38,0xd7,0x89,0xac,0xa6,0x33,0x5e,0xea,0x76,0x38,0x58,0xd0,0xa8,0x1e,0xb3,0xda,0x18,0x2a,0x7e, + 0xdb,0xb3,0xad,0xd1,0xb6,0x91,0xa3,0x31,0x92,0xb8,0xbd,0x2d,0xf8,0x22,0x3c,0xb7,0x75,0x3a,0xd0,0x22, + 0x3e,0xa0,0xb6,0xd6,0x0e,0x7f,0x25,0x5b,0xb6,0x36,0x9b,0x6e,0x7a,0x22,0xfb,0xdb,0x6c,0x7f,0xb6,0x75, + 0xf5,0x22,0xd4,0x27,0x71,0x6b,0x99,0x30,0x75,0xdf,0x5a,0x6a,0xfc,0xa9,0x9d,0x2d,0xae,0x4c,0x77,0xb6, + 0xb0,0xee,0x4d,0x87,0x46,0x17,0x87,0x00,0x20,0x40,0x88,0x3c,0x11,0xe1,0x89,0x03,0x31,0x46,0xa7,0x96, + 0x4d,0x11,0xda,0x1f,0xed,0xb0,0x70,0x6b,0x99,0xcf,0xe3,0xfe,0x52,0xb5,0x04,0xf7,0xb3,0xea,0xf2,0xb3, + 0xeb,0x65,0x06,0x87,0x30,0x42,0x4f,0x34,0xd1,0x7c,0xcf,0xac,0xee,0xe8,0xf6,0xd6,0x8d,0xdc,0x1f,0xf1, + 0xc2,0xbc,0x8e,0xff,0xad,0xce,0xf5,0xf6,0xf6,0xb8,0x73,0x10,0x1f,0xac,0x85,0x67,0xfb,0x95,0x08,0x13, + 0x5d,0xae,0x16,0xda,0xca,0x72,0x54,0x4f,0xb6,0x03,0x85,0x4d,0x7a,0xa6,0x1a,0xfc,0x5d,0xab,0x57,0x54, + 0x1c,0x3b,0x0c,0x8c,0xf9,0xf8,0x69,0x1b,0x3f,0x0e,0xa4,0xad,0xc2,0xe5,0x3f,0xa7,0x12,0x08,0x2a,0x10, + 0xf2,0xcc,0x86,0xa2,0xe1,0x33,0x60,0x38,0x66,0xc0,0x40,0x50,0x80,0xa2,0x71,0x53,0x92,0x0c,0x85,0x0d, + 0xc8,0x3a,0x0d,0xf8,0xcb,0xbe,0xb3,0x9b,0x63,0x96,0xf3,0x48,0x69,0x8c,0xc0,0xf8,0x32,0x5f,0x12,0x49, + 0x29,0x8f,0x3f,0x96,0xac,0x92,0xb6,0xaf,0xcf,0xe7,0x8b,0xb4,0x16,0x8e,0x8d,0x88,0x4e,0x7d,0x8a,0xf7, + 0x42,0xde,0xd7,0xec,0x2e,0xca,0x0e,0xe6,0x5d,0xfb,0x1e,0x1f,0x23,0x44,0x2e,0xae,0x31,0x86,0x3d,0xd9, + 0xd4,0x3c,0xa8,0xa6,0x6f,0xcb,0x43,0x59,0xbd,0x14,0x78,0x26,0x5e,0x6e,0x6d,0x46,0x37,0xe0,0x88,0x06, + 0xc4,0xba,0xc1,0xcf,0x2e,0x19,0xdd,0x63,0x45,0x64,0x0c,0x52,0x55,0x53,0xc7,0x8c,0xa0,0x2e,0xb8,0xb0, + 0xc9,0xf4,0x0f,0xa1,0x01,0x1e,0xcf,0x1d,0x2e,0x40,0x04,0xd1,0xe7,0x00,0x4a,0xcd,0xa1,0x1c,0xe2,0x4a, + 0x55,0xb4,0x89,0x94,0x7d,0x4f,0xbb,0xcc,0x96,0x75,0xc9,0xdb,0x08,0xb4,0xb0,0x3d,0x44,0x9a,0x4a,0xfd, + 0xdb,0xdb,0x71,0x81,0xb5,0xb3,0x91,0x13,0x46,0xc7,0x32,0xf4,0xa7,0x46,0x5c,0x7b,0x7b,0x6b,0xc3,0xb3, + 0x7a,0xd3,0x3e,0x2e,0x1f,0xbc,0xf3,0x4d,0x0b,0xc6,0x2e,0xd2,0xd7,0x13,0xac,0x12,0xe4,0xbc,0x26,0x3c, + 0x17,0x3f,0x1e,0x9b,0x4b,0xb9,0x63,0xfb,0x68,0xc5,0xa9,0x7c,0xd1,0xd3,0x5d,0x5d,0x81,0x88,0x78,0x74, + 0x4f,0x2e,0xe6,0xb0,0x37,0x1c,0x75,0xaf,0x39,0xbb,0xc0,0x3d,0x1b,0xf7,0xe6,0xd6,0x7c,0x09,0xb7,0x08, + 0x50,0x12,0x1b,0xb7,0xb8,0x4a,0xc5,0xe4,0xf2,0x26,0xaf,0x47,0x1d,0x21,0x95,0x35,0x0f,0x16,0xe6,0x1d, + 0x71,0xaa,0x50,0x8e,0x5d,0x4e,0x82,0x21,0x51,0x1a,0x54,0x2c,0x08,0x8f,0x8d,0x48,0x88,0xe3,0xe9,0x23, + 0xb7,0x75,0xa7,0xfe,0x22,0xec,0xe6,0x70,0x4a,0x3c,0x3f,0xee,0x68,0x7f,0x13,0xaf,0x54,0xbf,0x6d,0xb9, + 0xf1,0x6f,0xb3,0xfd,0xfd,0x8d,0x92,0xcf,0x58,0x7c,0xbe,0xf6,0xd6,0xcd,0xf3,0x6c,0x73,0x82,0x7d,0xdc, + 0x8a,0xcf,0xe4,0xe1,0xc2,0x22,0xb9,0xc7,0x72,0x9e,0xac,0x2b,0x9e,0xf8,0x7b,0xb0,0x6c,0xa0,0x89,0xc4, + 0xbd,0x8b,0x41,0x28,0x6f,0xca,0xa0,0x69,0x98,0x1a,0x45,0x39,0x7b,0xd1,0xeb,0x81,0x6d,0x3b,0xb0,0x95, + 0x55,0x10,0x66,0x83,0x9e,0xdd,0x2a,0x00,0xe2,0x7c,0x04,0x8f,0xb5,0x92,0xd0,0x61,0x83,0x47,0xb7,0xbd, + 0x7f,0xaf,0x1c,0xaa,0x7f,0x5c,0x76,0xa2,0xb5,0xc5,0xe1,0x2b,0x66,0x6f,0x8a,0x9b,0xae,0x9c,0xc2,0x9f, + 0x0d,0xdc,0xba,0x5b,0x8a,0x2f,0x96,0xf6,0xdf,0x4c,0xf8,0x1e,0xa7,0x1a,0xd7,0x46,0x3b,0x7c,0x4a,0x8c, + 0x9e,0x1c,0xe9,0x75,0x92,0xa4,0x0d,0x2a,0xdc,0xde,0x37,0xc1,0xa8,0xea,0xb5,0x32,0x96,0x01,0x77,0x74, + 0xbd,0xdf,0xdd,0x2e,0xf6,0x63,0xb7,0xd1,0x6e,0x7f,0x9c,0xbc,0x52,0xac,0x5e,0x05,0xb5,0xc6,0xa5,0x74, + 0x53,0x2c,0x1f,0x5e,0x96,0x9e,0xe7,0xca,0xf9,0x32,0x68,0xd0,0x7b,0xae,0xc7,0x09,0x02,0x6a,0x06,0xfd, + 0xdf,0x1f,0x07,0x32,0xcd,0x71,0x4d,0x8c,0xcb,0xbd,0xfe,0x9d,0xed,0x90,0x6c,0xc2,0x95,0xd2,0x65,0xe0, + 0xa6,0xc7,0xf1,0x14,0x3d,0xe8,0x58,0x38,0x48,0xd8,0x7d,0x1a,0x7d,0x1a,0x5e,0xd3,0x0c,0xe4,0xf3,0xae, + 0xee,0x88,0x2a,0x9f,0xd3,0x9e,0x7d,0x59,0x67,0x07,0xea,0x59,0x9d,0x3d,0x54,0x2f,0xd0,0xf0,0xab,0x50, + 0x7b,0xc7,0xb7,0x72,0x6f,0xca,0x7e,0x8f,0x57,0xc4,0x5a,0xbe,0xa8,0xad,0x06,0x8e,0xa6,0xea,0xc7,0x95, + 0xb0,0x96,0x1c,0x25,0x2e,0x40,0xfe,0x93,0x21,0x24,0xe7,0x61,0xbd,0x27,0xb9,0x62,0x20,0xb2,0xe2,0x19, + 0x67,0xde,0xc9,0x61,0x48,0x42,0x8c,0x34,0xb6,0x11,0x23,0x32,0x8b,0x7b,0x54,0xd9,0x47,0x59,0x2e,0x81, + 0x8e,0x12,0xff,0x39,0xbd,0x20,0x47,0x4e,0x18,0x24,0xcb,0x93,0x11,0xa3,0x0d,0x5c,0xff,0x18,0x6c,0x8b, + 0xac,0xe8,0x6c,0x91,0x8d,0x5d,0x5a,0x04,0xbb,0xa6,0xdc,0x44,0x7f,0x6e,0x17,0x21,0xd3,0xb5,0xf3,0x31, + 0x3f,0x93,0x3b,0x7d,0x95,0x36,0xc7,0x16,0x87,0x9a,0x35,0x47,0x99,0x4d,0x53,0x1b,0x8e,0x82,0xd9,0x86, + 0x63,0x4e,0x22,0x34,0xab,0x6a,0x8d,0xc4,0xe0,0x9e,0xbf,0xac,0xfd,0xd7,0x36,0xb6,0xfa,0x38,0x3b,0xb9, + 0xb4,0xc1,0x38,0x94,0xb7,0x91,0x64,0xf0,0x2a,0x4a,0x5b,0xef,0xea,0xea,0x4a,0x04,0x03,0x26,0xb9,0xd1, + 0xf3,0x53,0x79,0x1f,0xda,0x3a,0xee,0xe2,0xcf,0xd2,0x2d,0x06,0x53,0xf0,0x08,0x85,0xe9,0x42,0x01,0x99, + 0x70,0xa1,0xa5,0xc7,0x71,0x36,0x67,0x67,0x87,0x12,0x6d,0xbc,0x47,0xd8,0xc2,0xda,0x97,0x32,0x80,0x7e, + 0xab,0xae,0x6d,0x6d,0x2e,0x5f,0xc9,0x74,0xaf,0xae,0x2a,0xc8,0x8f,0x4a,0x79,0x22,0x62,0xa2,0xf5,0xdf, + 0xb0,0xd4,0x42,0x2e,0x7c,0x86,0xd8,0x27,0x90,0xdd,0x30,0x8d,0xd1,0x06,0x1b,0xcf,0x26,0xf4,0x37,0xed, + 0x01,0x97,0xf2,0x48,0xca,0xbc,0x3b,0xa4,0xe0,0x52,0xba,0xc4,0x23,0x08,0x3b,0x23,0x09,0xea,0xec,0x9b, + 0xd1,0xb1,0xb9,0xef,0x68,0xc8,0x92,0x87,0x72,0x89,0x29,0x84,0x55,0x0d,0xdb,0x4b,0x64,0x26,0x1a,0x9a, + 0xfe,0xec,0x91,0x41,0x38,0xb1,0x94,0x7b,0xba,0xee,0x68,0x50,0xce,0x6c,0x3b,0x3e,0x81,0x97,0x8f,0xb5, + 0xd6,0x8d,0xd7,0x0b,0xf7,0x96,0xd0,0x1d,0xf4,0xdd,0x0d,0x47,0x3b,0xb0,0xc4,0x4a,0xd9,0x08,0x9c,0xe1, + 0x01,0xa4,0xfb,0xa0,0x2e,0x17,0x3e,0x86,0x24,0x46,0xc6,0x47,0xfb,0xf1,0xb4,0x63,0xee,0xad,0xc2,0xeb, + 0xae,0xdf,0x06,0x17,0xc1,0x22,0x42,0xc4,0x9a,0xd7,0x32,0xb4,0x41,0xfc,0xb3,0xdf,0xee,0x1b,0x4d,0x48, + 0x21,0x3d,0xe6,0x90,0xf9,0x50,0xbd,0x44,0x42,0x7b,0x44,0x10,0xe5,0x15,0x01,0xc9,0x21,0x01,0xb7,0xa4, + 0x84,0xdb,0xbf,0x91,0xd2,0x1b,0xd3,0xed,0x4b,0xdb,0xd9,0x9e,0xca,0xb6,0x52,0x5d,0x73,0xb6,0x81,0xa0, + 0x2c,0xd9,0x79,0x1b,0x12,0x57,0x22,0xe7,0x87,0xf2,0x01,0xa7,0xda,0x00,0x2d,0xa3,0x42,0x14,0xad,0x07, + 0x62,0x94,0xd3,0x71,0xf3,0x91,0x09,0x02,0x2d,0x01,0x72,0xd5,0x00,0x41,0x72,0x17,0x50,0x58,0x7e,0x06, + 0x8e,0xf6,0x7d,0x08,0xa0,0x63,0xcf,0x78,0xbc,0x7c,0x1e,0x6d,0x7b,0x44,0xc8,0x48,0xa4,0x76,0x24,0x97, + 0x89,0xd7,0x3f,0x40,0x75,0x61,0x43,0x56,0x08,0x3a,0x64,0x37,0xf8,0x46,0x97,0x2b,0xe3,0xba,0xe6,0x9a, + 0xae,0x70,0x2f,0x15,0xef,0xfd,0xca,0x86,0xdf,0x7d,0x03,0xc3,0x69,0x1a,0x37,0xcd,0xdd,0xc7,0x98,0xe3, + 0x89,0x24,0x8a,0x35,0x37,0x84,0xcd,0xe6,0x2d,0xab,0x1a,0xb9,0x1f,0x11,0x48,0xed,0x5e,0x1c,0x81,0x24, + 0x87,0xbb,0xfd,0xc0,0x4c,0xb1,0xf3,0x93,0x21,0x2d,0x61,0x96,0x2d,0x1a,0x99,0xfe,0x1c,0xf4,0x47,0xef, + 0x03,0xe2,0x48,0xed,0x7c,0x9b,0x8b,0x08,0x2e,0xb0,0x2a,0x93,0xb3,0x74,0x16,0x8b,0xbe,0x4f,0xee,0x7c, + 0xb6,0xf5,0xa2,0x09,0x40,0xe5,0xe4,0x73,0xd8,0x54,0xe0,0xb6,0x8a,0x91,0x76,0xcc,0x5a,0xbb,0x41,0x31, + 0x6a,0xaf,0x87,0xde,0x3c,0xb8,0x15,0xf6,0x5d,0x77,0x04,0x03,0x26,0xef,0x09,0x6f,0x17,0x36,0xe2,0x8c, + 0x71,0xcd,0xd6,0xcd,0x5a,0x2e,0xe9,0x21,0x62,0x81,0xef,0x78,0x26,0x62,0x47,0xf3,0xa5,0x6c,0x5e,0xd0, + 0xd2,0x85,0x47,0x5e,0xef,0x1e,0x59,0x5c,0x64,0x21,0x84,0x9b,0xa1,0x2a,0x17,0x91,0x71,0x5c,0x38,0xd1, + 0x58,0x9e,0x95,0x87,0xc5,0x11,0x5c,0xcd,0x4e,0x69,0x05,0x71,0x47,0xeb,0x25,0xdf,0xd4,0x6a,0x96,0x0f, + 0xdd,0x8a,0x70,0x4f,0xf6,0x07,0xa1,0x60,0xc0,0x81,0xa5,0x1f,0x62,0x3b,0x0d,0x04,0x5f,0xd8,0xaf,0xda, + 0xa9,0xc8,0xee,0x02,0xd5,0x63,0x5b,0xe0,0x27,0x0b,0xef,0x43,0x78,0xb7,0xce,0xbe,0x47,0xa8,0xf4,0x4e, + 0xf4,0x0d,0xc7,0xbd,0x69,0xdc,0x1d,0x33,0x38,0xf3,0xd5,0xa4,0x4a,0x2b,0xc8,0x36,0xc6,0x90,0x1c,0x61, + 0x3c,0x2c,0x00,0x7f,0x0b,0xbf,0x4d,0xda,0x12,0x67,0xea,0x8c,0xd8,0x74,0x22,0x62,0x0b,0x03,0x9a,0xa7, + 0x18,0x5b,0xc1,0xec,0x1f,0x83,0x82,0xed,0x5b,0xc2,0x3e,0x5e,0xd4,0x3f,0xd8,0xb4,0xf0,0xc3,0xb6,0x28, + 0x38,0xef,0x70,0x8f,0x08,0xba,0x57,0x33,0x94,0x6d,0x86,0xf1,0xa8,0xc3,0xbb,0xe0,0xe0,0x1e,0x57,0x87, + 0x3e,0x71,0x33,0xe1,0x23,0x6a,0xbe,0x29,0x92,0xb9,0x57,0x9b,0x62,0xbb,0x26,0x66,0x81,0x43,0xb8,0x63, + 0x03,0x46,0x8d,0x0e,0xd1,0xc4,0x03,0x3b,0x36,0xaf,0xb3,0x61,0x50,0xd5,0x46,0xa0,0x44,0x50,0xb6,0x89, + 0x40,0xad,0x01,0xb0,0xa1,0x44,0x5c,0x0b,0x70,0x51,0x92,0x14,0xe1,0xc0,0xfb,0xb9,0x74,0x4e,0x6c,0xf6, + 0x10,0xb7,0x09,0x7d,0xce,0x06,0x86,0x01,0x69,0x3d,0x76,0x71,0x9f,0xca,0xcf,0x16,0x66,0xf0,0x1e,0xb6, + 0x92,0xb9,0x8e,0x03,0x52,0x99,0x8e,0x0f,0x01,0x5d,0xda,0x1f,0x7f,0xa6,0xb0,0x41,0x53,0x65,0xd2,0xb1, + 0x96,0xbb,0xc7,0x86,0x71,0xdd,0x24,0xb9,0xc8,0x29,0xfb,0xb5,0x9b,0x3a,0xa4,0x38,0x97,0x3b,0x8f,0x7c, + 0x24,0x17,0x5e,0x5c,0x26,0xe4,0xe4,0x7e,0x69,0x5c,0x07,0x21,0xd7,0xb8,0x8b,0x22,0x6a,0xdf,0x86,0x5c, + 0x35,0xb0,0x1b,0x14,0x75,0xbe,0x73,0x85,0x57,0xe0,0x6a,0x2f,0x13,0x54,0xd6,0x1f,0x22,0x34,0x9b,0xa9, + 0x9d,0xd4,0x8d,0x43,0x28,0xc7,0xaf,0x86,0x02,0x94,0x65,0x0f,0xfe,0x07,0x97,0xb0,0xa7,0x0f,0xc6,0x9d, + 0xe1,0x54,0x1d,0x63,0x74,0x19,0x49,0xdf,0x4e,0x24,0xe9,0xda,0x7c,0xb4,0x7d,0x9b,0x0f,0x03,0x1d,0x54, + 0x01,0x7c,0x81,0x8d,0x78,0x46,0x60,0xc6,0xd0,0x5e,0x87,0xed,0x91,0xd5,0x1a,0xf8,0x94,0x20,0x08,0x54, + 0x89,0x0d,0x69,0xb4,0x4d,0x00,0x6a,0x2e,0xd8,0x25,0xcc,0xf6,0xfd,0xcd,0x40,0x94,0xdb,0xb5,0x75,0xbc, + 0x57,0xf5,0x84,0x62,0x3a,0x30,0xce,0x94,0x19,0xba,0x57,0x9d,0x9e,0xf2,0x00,0x95,0xb5,0x12,0xaa,0x83, + 0xab,0xd3,0xd6,0xc6,0x0f,0x85,0x6a,0x0e,0xbc,0x17,0x89,0xb2,0x56,0xb5,0x0c,0x0c,0x1f,0xd6,0xfd,0x46, + 0x4f,0x4f,0x7b,0x6d,0x82,0x15,0xed,0x1b,0x2d,0x25,0x1d,0xa8,0xfe,0x1c,0x29,0x8a,0xc6,0x87,0x66,0xbf, + 0xe7,0xa5,0xb5,0x11,0xd4,0xd0,0x4c,0x3f,0xc6,0x87,0x63,0x4f,0x77,0x27,0xca,0xb8,0x70,0x75,0xa7,0xbe, + 0x7b,0x69,0x85,0x6d,0xd9,0x9b,0x74,0xf4,0x57,0x4a,0x48,0x59,0x53,0x4c,0x3b,0x78,0xa8,0xc2,0x4b,0x2e, + 0x73,0x9c,0x34,0x94,0x1d,0x57,0x59,0x01,0x0b,0x0d,0xd8,0x2d,0xe0,0xfa,0xa2,0xd3,0xb2,0x77,0xd5,0x65, + 0xbe,0x71,0xd5,0xe5,0xc0,0x8a,0xea,0x45,0x8f,0xff,0xf5,0xf2,0x7a,0xe6,0x78,0xba,0x63,0x29,0xe1,0x40, + 0x66,0x0f,0xbd,0x6f,0x0e,0x26,0x80,0xa8,0xb4,0x0c,0xf8,0xfa,0xf3,0xd8,0xad,0x0b,0xb5,0x4e,0x40,0xbc, + 0xcf,0x1e,0xaf,0x16,0x43,0x3f,0xaa,0x18,0x4b,0xf3,0x2d,0x5d,0x84,0xa2,0x0d,0x84,0x20,0x20,0x98,0x77, + 0xf0,0x79,0x12,0x13,0xd9,0xa7,0xee,0x73,0xbb,0x5b,0xe7,0xe2,0x3e,0xc0,0xd2,0x7d,0x48,0xf5,0x45,0x8e, + 0xef,0x95,0x6c,0xb2,0x09,0xe3,0xd7,0x75,0x46,0xbf,0x21,0x5f,0xdf,0x57,0xdd,0x08,0x01,0x61,0x98,0x79, + 0xc3,0xf2,0xec,0xec,0xf4,0x28,0x5c,0xe3,0x7f,0x61,0xe3,0x1c,0xca,0x82,0xeb,0xb9,0x32,0xfa,0x68,0xe1, + 0x37,0x68,0x50,0x97,0xf5,0xf8,0xb2,0x0e,0x59,0x48,0xe1,0x29,0x5a,0x55,0x4f,0xec,0x37,0xd6,0x24,0x8e, + 0x25,0xa1,0xc7,0x88,0x58,0x4c,0x27,0x43,0x7c,0x57,0xae,0x6b,0x89,0x63,0x72,0x1c,0xf4,0x4e,0x89,0x80, + 0xb7,0xef,0x65,0x08,0x77,0xdf,0x3f,0x55,0x02,0xc1,0xc0,0x60,0x79,0x1b,0x43,0xbb,0xce,0x0a,0xbe,0x1d, + 0x91,0xf8,0xf5,0xe3,0x8b,0x95,0x3e,0x3e,0xce,0xfc,0x0e,0x41,0x6f,0x2c,0x86,0xa0,0x47,0x57,0x22,0xe0, + 0xa7,0xef,0x19,0x39,0xa9,0xbc,0x48,0x9b,0xf6,0x4d,0x26,0xc4,0xa8,0x86,0x4c,0x5e,0x20,0x58,0x0d,0x53, + 0xdd,0x74,0xdc,0xe3,0xf3,0xee,0x75,0xa8,0xe5,0x08,0xa5,0x7d,0x1b,0x5a,0x18,0x4b,0xe9,0x9b,0x36,0xed, + 0x6b,0x60,0x27,0xdc,0xad,0xcb,0xc8,0x89,0x7a,0x1a,0x93,0x6d,0x0b,0x14,0x5d,0x2e,0x37,0xb9,0xe9,0xc1, + 0x86,0x75,0xc1,0x49,0xd4,0xf0,0x07,0xfe,0x66,0xca,0x70,0x74,0xe3,0xed,0x16,0xf2,0xe8,0x01,0x0d,0x4c, + 0x77,0x65,0xac,0xb8,0x80,0x35,0x33,0x9e,0xcb,0xef,0x88,0x2f,0xee,0x18,0xae,0x3f,0x93,0xc6,0xde,0x92, + 0xae,0x53,0xc4,0x49,0x81,0xb5,0x53,0xe0,0xb8,0x2c,0x18,0x56,0x07,0x35,0x78,0x02,0xc2,0x98,0x73,0xda, + 0xd6,0x82,0x24,0x6b,0xfc,0xb8,0xb7,0xe7,0xa6,0x22,0x9c,0x05,0x35,0x04,0xdb,0x66,0xeb,0x08,0x7c,0xb9, + 0x99,0xf5,0xce,0x4c,0x0e,0x84,0x09,0xbb,0x7e,0x1e,0x00,0x43,0x10,0xed,0xc2,0x53,0x47,0x56,0x2f,0xe6, + 0xf6,0x6b,0xf5,0xb4,0x8d,0xe3,0x37,0x3d,0xec,0x90,0xa8,0x37,0x1d,0xc0,0x28,0x89,0xe5,0xff,0x58,0x4c, + 0xbb,0xa6,0x8f,0x06,0xc5,0x7c,0x67,0x94,0x8d,0x04,0x4d,0x9d,0x8f,0x8c,0x4c,0x20,0x04,0x26,0xbf,0xfa, + 0x6a,0x43,0x70,0x64,0xc4,0x5c,0x1b,0x82,0x3e,0xd6,0x4a,0x78,0x8c,0x94,0x74,0x08,0x75,0x2b,0x85,0xf0, + 0xce,0xcc,0xf2,0x0e,0xf6,0x02,0xb7,0xb0,0x58,0xd7,0x34,0xc2,0xfe,0x87,0xfb,0x47,0x3b,0x3b,0xf8,0x0b, + 0x05,0x4e,0x12,0x88,0xd0,0x41,0xba,0x3f,0x26,0xa6,0x12,0x92,0xe2,0x75,0x4f,0x6a,0x51,0x3b,0x0d,0x45, + 0x47,0x7d,0x22,0x7a,0x0a,0xa3,0x0f,0x11,0xbe,0x94,0x0d,0x30,0x10,0xb0,0x40,0x08,0xa4,0x8e,0x28,0x6d, + 0x43,0x92,0x11,0x98,0x64,0x3c,0xe1,0xcb,0x51,0x23,0x29,0xcd,0x37,0x13,0x59,0x2c,0x60,0x51,0x78,0x4e, + 0x03,0x15,0x91,0x34,0xa2,0xe9,0x83,0xdb,0xa0,0x66,0xea,0x98,0xe3,0x7c,0x5a,0xb5,0x8b,0x32,0xd4,0xec, + 0x9b,0x9a,0x76,0xb4,0x7a,0x5f,0x67,0x87,0xc6,0x57,0xf2,0xbd,0x3e,0x7b,0x7e,0xb5,0x14,0x7b,0xdb,0x23, + 0xf5,0xa4,0xce,0x6e,0xbe,0xb7,0xe2,0xeb,0xd4,0x84,0x39,0x09,0xa3,0x59,0xdb,0x4d,0xc6,0x0a,0x3b,0x89, + 0x74,0x51,0x94,0xd3,0xf9,0x6a,0xa6,0xd3,0xf7,0xb5,0xd2,0x57,0xee,0x71,0x91,0x5f,0xa5,0xb6,0x0d,0xb9, + 0x7f,0xe7,0x08,0x46,0x85,0x4c,0xc3,0xa7,0x7d,0x34,0x34,0xcd,0x69,0x23,0xdd,0x49,0x69,0x30,0x4f,0x09, + 0xef,0x0d,0xe5,0x80,0xbd,0xe3,0xda,0x62,0xb5,0xad,0xbc,0xde,0xae,0xba,0xe4,0x99,0x95,0x68,0xe2,0x4d, + 0xb5,0xbe,0x2a,0x82,0x43,0xde,0xba,0xbe,0xeb,0x21,0xd0,0xbe,0x34,0x3b,0xcb,0xcb,0x92,0x1c,0x20,0xbf, + 0x33,0x92,0x34,0xaa,0xc0,0x8e,0xf4,0xcf,0x7d,0xb9,0xed,0xbf,0x5c,0xab,0xcd,0x88,0x03,0x21,0xce,0x63, + 0x88,0x1b,0x99,0x58,0x60,0xb4,0x09,0xfe,0x21,0xa6,0xc2,0x42,0x5a,0xf7,0x25,0xcf,0x61,0x40,0xce,0xe7, + 0x08,0x01,0xaf,0x0c,0xf9,0x64,0x06,0x86,0x40,0x61,0xa2,0xc4,0xe7,0x57,0xbe,0x2b,0x93,0x00,0x7b,0x9b, + 0x60,0x04,0x5d,0x2a,0x10,0x0c,0x82,0x20,0x9f,0x60,0x78,0x67,0x87,0xde,0xab,0x20,0xb2,0xbf,0x36,0xd2, + 0x94,0x60,0x0a,0x8d,0x31,0x08,0xa6,0x50,0x4d,0xad,0x18,0x83,0xaf,0x57,0x2e,0x25,0xba,0xfb,0xb4,0x98, + 0xed,0xc6,0x12,0xb1,0x22,0x4a,0x53,0xc4,0xda,0xe0,0xc0,0x2c,0x11,0x54,0x0c,0x08,0xb1,0x94,0x1f,0x4e, + 0x8f,0x26,0x83,0xda,0x26,0xe4,0x0c,0x28,0x9c,0xe6,0x72,0x7b,0x96,0xb1,0xd0,0x99,0x22,0xca,0x32,0x4a, + 0x12,0xad,0xeb,0x92,0x64,0x59,0x09,0xda,0x76,0x76,0x2c,0x8e,0xfe,0xc6,0x07,0x0c,0x34,0x79,0xb4,0x9b, + 0x09,0x1a,0x72,0x85,0x7b,0x55,0x55,0x87,0xe0,0x48,0xac,0xa8,0xc5,0x6b,0x6d,0x20,0xed,0xb1,0x93,0x40, + 0x67,0x0c,0x61,0x6f,0xfa,0x8a,0x78,0x95,0x81,0x88,0xc5,0x9f,0xe3,0x23,0x7f,0x2d,0xef,0xe4,0x08,0x89, + 0x99,0x65,0xed,0x3d,0x33,0x82,0xed,0x68,0xd5,0x16,0xf3,0xec,0x06,0x9e,0x9e,0xe9,0xcf,0x44,0xb7,0x5d, + 0xb5,0x04,0x20,0x88,0x26,0x0b,0xdb,0x6c,0xb3,0xd2,0xe9,0x33,0x25,0x95,0xbc,0x17,0x0d,0x8e,0x4e,0x3f, + 0x82,0x08,0xb5,0x9c,0x60,0xc0,0xfe,0x39,0x44,0xfc,0x9d,0x72,0x97,0x3e,0x0c,0xee,0xac,0x21,0xeb,0x6b, + 0x16,0x61,0xd9,0x9b,0x22,0xb4,0x18,0x61,0x0f,0xb9,0x60,0x25,0xbe,0xee,0xd1,0xf1,0x49,0xde,0x80,0x6e, + 0xc3,0xb5,0xa7,0x36,0xcd,0xad,0x64,0x43,0x18,0x85,0x87,0xd8,0xe8,0x3b,0x28,0x64,0x08,0xd9,0x69,0xb5, + 0x71,0xe1,0xc8,0xbb,0xf9,0xea,0xac,0x90,0xf8,0xab,0x83,0x19,0x7c,0xe7,0x1e,0x87,0x06,0xb5,0x1e,0x91, + 0x2d,0x6e,0xaf,0xe8,0xb0,0x06,0x42,0x75,0x76,0x49,0x68,0xcf,0x26,0x19,0xef,0x09,0x23,0x5a,0x18,0x90, + 0x41,0x20,0x06,0x09,0x37,0x3a,0x71,0x4f,0xd6,0x51,0x03,0x46,0xef,0x43,0x5f,0x40,0x9b,0x15,0x5c,0x59, + 0xc6,0x5c,0x5b,0x68,0x50,0x86,0x75,0x5a,0x14,0x57,0xc5,0xb0,0xb3,0x34,0x06,0xea,0x95,0x30,0xe1,0xab, + 0x72,0xdf,0x77,0x85,0xb3,0xb4,0xc9,0xb2,0x7d,0x23,0x95,0x3d,0x20,0x06,0x59,0xe0,0xa5,0xab,0x7f,0xcb, + 0x58,0x71,0x13,0x90,0xe0,0x10,0xce,0xe3,0x4b,0xb9,0x78,0x17,0x9b,0x55,0xee,0x35,0xc4,0x13,0xcb,0xf1, + 0x80,0x19,0xa0,0x28,0xb4,0x06,0xe8,0xd6,0x57,0x05,0x27,0xa6,0x5c,0xc7,0xe8,0x42,0xa9,0x48,0x94,0xed, + 0x7c,0x40,0xe3,0x07,0x45,0x20,0x7b,0x44,0x98,0x80,0x01,0xb9,0x3f,0xec,0xfb,0x60,0x14,0x50,0x12,0x49, + 0xa8,0x73,0xca,0x72,0xc4,0xab,0xa6,0x21,0xe2,0x86,0xf8,0x3c,0x98,0x9a,0x32,0x9c,0x17,0x3a,0x6d,0x57, + 0x4b,0xe8,0x69,0x7c,0x91,0x4d,0xa1,0xb4,0x97,0x46,0x7d,0x56,0x26,0x0b,0x99,0x62,0x28,0x75,0x39,0x76, + 0x52,0x97,0x35,0xee,0x3a,0xc9,0x3b,0x40,0xdd,0x97,0x26,0x6e,0xb6,0x61,0x4b,0xf5,0x9b,0x39,0xed,0x36, + 0x63,0xc5,0xf2,0xd2,0x84,0x59,0xc3,0xd2,0x3c,0x50,0x8a,0x40,0x4c,0x29,0xbf,0xf4,0x8e,0x0d,0x54,0xe2, + 0xef,0x5d,0x5e,0x13,0x39,0xf3,0xbe,0x1c,0x73,0x56,0xc9,0x0d,0x2e,0x9b,0x9b,0x91,0xdd,0x10,0xdc,0xec, + 0x59,0x6f,0x38,0x3f,0xb3,0xb6,0x23,0x36,0xa7,0xe5,0x8b,0x61,0x72,0xda,0x81,0xce,0xfd,0x0e,0x97,0xf2, + 0xe6,0x5e,0xeb,0x5a,0xb0,0x83,0x13,0x11,0x17,0x6b,0x39,0xa6,0xda,0xbb,0xba,0x87,0x9e,0xf5,0x22,0xf9, + 0x38,0x9f,0x92,0x38,0x88,0x08,0x20,0x7e,0x62,0x55,0x5c,0x72,0x40,0x14,0x06,0xb5,0xac,0x34,0x10,0xe8, + 0xac,0x59,0x3b,0xa8,0xc7,0xf4,0x99,0x23,0xd9,0x04,0xe1,0x04,0xa4,0xa2,0x81,0x0d,0xcb,0xdc,0x5a,0x76, + 0x83,0xe8,0x96,0x69,0xa9,0x4c,0xec,0xf3,0x72,0x6d,0x5d,0x7d,0x0c,0xf2,0x13,0x0f,0x14,0x58,0x14,0x96, + 0x1c,0x65,0x6f,0x30,0x6f,0x6d,0x5c,0xa6,0x4a,0x61,0xa1,0x87,0xb1,0xfd,0xab,0xae,0x4c,0xaf,0x68,0x3e, + 0x88,0xaf,0xb1,0x38,0x46,0x7f,0x8f,0x96,0xff,0xd4,0x87,0x4d,0x53,0x1b,0xd7,0xc8,0x4d,0x9f,0xea,0x10, + 0x9b,0x74,0x59,0x4a,0x21,0xe8,0xfd,0xb7,0xb0,0x7c,0xa7,0x8a,0xe1,0xf7,0x56,0xc0,0xf6,0xfa,0xe1,0xe8, + 0xab,0xd1,0xc1,0x17,0x12,0xa6,0xe5,0xa7,0x5a,0xfd,0x50,0xab,0x1f,0x6b,0xf5,0x5d,0xad,0x7e,0xaf,0xd5, + 0x6f,0xb5,0xfa,0xbe,0x56,0x7f,0xaf,0xd5,0xb7,0x35,0x87,0xd3,0xe0,0x7b,0x9f,0xcd,0x9d,0xaf,0xea,0x67, + 0x4e,0xe3,0xbb,0x6d,0x14,0xea,0x25,0x32,0x33,0x57,0x32,0x41,0x4a,0xee,0xf7,0x01,0x79,0x78,0x06,0xd3, + 0x41,0x2a,0xfd,0xaf,0xbe,0xed,0xbc,0x0b,0x91,0xe4,0xee,0x37,0xa7,0x65,0xf9,0xb9,0x66,0x91,0x5a,0x24, + 0x11,0x8d,0xe1,0x78,0x81,0x5b,0x60,0xed,0x6d,0x41,0xa6,0x50,0x24,0x8d,0xf0,0xfa,0x52,0x2e,0xd1,0x25, + 0xd3,0x4f,0x3e,0x53,0x2e,0xdb,0x31,0x79,0x2e,0x8e,0x3a,0x72,0x20,0x76,0xae,0x38,0x67,0xad,0xfe,0xc9, + 0x9d,0x9f,0xca,0x65,0xef,0x7a,0x56,0xb4,0x30,0xa2,0x53,0xb3,0x3a,0x3f,0x3b,0xe3,0xa7,0x66,0xa9,0xe7, + 0x73,0xae,0x99,0xfa,0xfe,0x0f,0x2e,0x4c,0x07,0x41,0x75,0x79,0x4a,0x08,0xbe,0x21,0x0c,0x46,0x4c,0x25, + 0xbb,0x64,0xaa,0x7c,0xd5,0x56,0xa7,0xd5,0x74,0xd5,0xf0,0xd3,0x72,0x9e,0x5f,0x2b,0xd3,0x21,0x0e,0x3c, + 0x42,0x47,0x35,0xec,0xf4,0x88,0x64,0x9d,0x37,0x74,0x7e,0xd3,0xdc,0xd5,0x5a,0x59,0xd2,0xce,0xfc,0xda, + 0xf2,0xe6,0x95,0xfb,0x6c,0x5f,0xec,0xd0,0xf1,0x4e,0x9c,0xcf,0xac,0x68,0xd0,0xbd,0x99,0xd2,0xa5,0xfc, + 0x22,0x82,0x41,0x59,0xd1,0x14,0x16,0x00,0x62,0x75,0x5e,0xcc,0x66,0xd4,0x35,0x1c,0x8e,0xad,0xae,0x17, + 0x45,0x89,0x44,0x82,0xa8,0xba,0x55,0x45,0xb3,0xc8,0x97,0xaa,0x68,0xf5,0x42,0x22,0x9d,0xcc,0xab,0x6a, + 0xa9,0xec,0x35,0x53,0x4a,0x1a,0x2d,0x2b,0x84,0x6a,0x51,0x08,0x2f,0xd1,0x14,0xbf,0xd3,0x22,0x55,0xcd, + 0x79,0x0e,0x86,0xd3,0xb7,0x50,0x56,0x88,0x1e,0x45,0xeb,0x4c,0xcd,0x2c,0x73,0xc2,0x46,0xb4,0x69,0xaf, + 0x8a,0x96,0x48,0xda,0x7c,0x56,0x95,0x73,0x44,0x55,0xf9,0x6d,0x45,0x5b,0x70,0xa6,0x8c,0x6b,0xe5,0x4c, + 0x09,0x5b,0x44,0x30,0x91,0x2f,0xe6,0x04,0x0c,0xca,0x8d,0x09,0x3e,0x98,0x3c,0xdb,0xee,0x62,0x17,0x8e, + 0x0d,0x4a,0x73,0x4f,0x99,0x80,0x79,0x04,0x96,0xe0,0x58,0xf1,0xea,0xa2,0x68,0x0a,0x2a,0x09,0x0e,0xb7, + 0xc8,0xa2,0xf3,0xb6,0x5d,0xa6,0x0f,0x1e,0x5c,0x5e,0x5e,0x8e,0x2e,0xbf,0x18,0x55,0xf5,0xd9,0x83,0x83, + 0xaf,0xbf,0xfe,0xfa,0xc1,0xd5,0xbc,0x28,0x3f,0x11,0x45,0x55,0x0c,0x9c,0xb3,0x51,0xda,0x71,0x41,0xf9, + 0x0a,0x50,0x26,0xe5,0x39,0xd9,0x86,0xe8,0xf9,0x8a,0x08,0xfb,0x72,0xe8,0xfb,0x2d,0x0d,0x9b,0x5c,0xe7, + 0x5d,0xf2,0x57,0x65,0x05,0x9b,0x1c,0xb3,0x45,0xd5,0x83,0xdf,0x08,0x81,0x4c,0x80,0xb8,0x7d,0x20,0x60, + 0x57,0x14,0xd9,0x4d,0x73,0x41,0x04,0xf1,0xe6,0x08,0x1e,0xee,0xef,0xef,0x3f,0xa0,0xbc,0x88,0xf8,0xa6, + 0xf6,0x7c,0xa8,0x04,0x8d,0xf1,0x6f,0x0f,0x70,0x47,0x2a,0xff,0x79,0xfd,0x8a,0x9a,0xad,0x0a,0x40,0xe6, + 0x79,0xbb,0x98,0xab,0x93,0x6a,0x76,0xad,0x80,0x0d,0xd5,0x39,0x2d,0x85,0xc2,0xd0,0x14,0x22,0x94,0x2b, + 0xd9,0xb5,0x6d,0xd1,0xd2,0xdf,0x7c,0x36,0xc3,0x7e,0x54,0x79,0xdd,0x16,0x53,0xbc,0x37,0xb4,0x27,0x08, + 0x88,0x2a,0xdc,0xe2,0x89,0xef,0xf0,0x73,0xa0,0xce,0x1f,0xaa,0xf3,0x2f,0xd4,0xf9,0x97,0xea,0xfc,0x2b, + 0x75,0xfe,0x57,0x75,0x7e,0x56,0x57,0xab,0xa5,0x2a,0xf3,0x0b,0x5a,0x3b,0x1e,0x23,0x01,0xe2,0x85,0x9a, + 0x11,0x54,0xce,0xd5,0xac,0x55,0x44,0xc7,0xc2,0xc3,0x06,0xe9,0x6c,0x90,0xaa,0xd5,0xb2,0x98,0xc2,0xe1, + 0x46,0x9d,0xd7,0xaa,0x58,0x9c,0x51,0x67,0x68,0x50,0x74,0x88,0x55,0x73,0xb5,0x84,0x61,0xa3,0x5a,0xcd, + 0x55,0xae,0x4e,0x88,0x95,0x3c,0xa9,0xd5,0xc9,0xac,0xa0,0xff,0x95,0xa2,0xc7,0x29,0x81,0x27,0x47,0x21, + 0x52,0x7c,0x99,0xfd,0xec,0x94,0xce,0xc8,0x85,0x2a,0xd4,0xa7,0x93,0x19,0x55,0x50,0x7f,0x52,0xbf,0xa9, + 0x7a,0xa9,0x08,0x98,0xeb,0x76,0xaa,0xea,0xd5,0xc9,0x35,0x51,0xf2,0x4d,0xbe,0x58,0x2a,0x82,0x6d,0x22, + 0xbc,0x9a,0x65,0x4e,0xa8,0x87,0xf6,0x1a,0x31,0x9c,0xcd,0xea,0x84,0xfe,0x2f,0xf9,0x5e,0x5b,0xb5,0x52, + 0x84,0xdc,0xd4,0xe5,0x09,0x84,0xe8,0x84,0xa4,0xf2,0xd5,0xac,0xa8,0x14,0xb6,0x03,0x18,0xd9,0x4f,0x8a, + 0x11,0x03,0xb5,0x74,0x42,0x60,0x27,0xde,0x60,0xb0,0x44,0xcd,0x17,0x04,0xa0,0xab,0x9a,0x78,0x90,0x69, + 0x5e,0x5e,0xe4,0xd4,0xd2,0xb4,0x2e,0x96,0x2d,0x36,0x85,0x3c,0x10,0xc9,0x0d,0x43,0x37,0x65,0xc7,0x3e, + 0xa5,0xe1,0xd1,0x7f,0x99,0x2c,0x03,0xd8,0xbc,0x16,0x2d,0xaf,0x4d,0x4b,0x0f,0xe7,0xd4,0xa2,0x12,0xe4, + 0xc6,0x43,0x84,0x29,0x01,0xcd,0x99,0x9e,0xcf,0x88,0x8e,0xe7,0xcd,0xac,0x04,0xa1,0xce,0xf3,0x13,0xaa, + 0x7d,0xae,0xcf,0x40,0x0b,0x2c,0xb0,0x99,0x81,0x5a,0xa5,0x6a,0x83,0x63,0xab,0x55,0x8b,0x92,0x16,0xc7, + 0x5a,0x9c,0xeb,0x50,0x31,0xa1,0x80,0xbc,0x00,0xd6,0x29,0xf2,0x79,0x75,0x46,0x95,0x94,0x2b,0xfe,0x03, + 0x14,0x40,0x53,0xb3,0xa0,0x09,0xbd,0x56,0x06,0x03,0x2a,0x2d,0x42,0x07,0x85,0xfd,0x5e,0x5d,0x2a,0x1b, + 0x3a,0x4b,0x71,0x70,0xb2,0xdf,0x56,0x15,0xd0,0xc8,0x69,0x0d,0xaa,0xaf,0x05,0xb4,0x40,0x08,0xc1,0xa0, + 0x47,0x00,0xab,0xf2,0xb2,0x58,0xa0,0xec,0xb4,0xa8,0xa7,0x7c,0x3e,0x14,0xcb,0x25,0x01,0xa8,0x9a,0xae, + 0x6a,0xda,0xe1,0xc0,0x5c,0x40,0x7d,0xcd,0x94,0x1a,0xa1,0x2c,0x02,0x50,0x89,0xf2,0x43,0xc3,0x2d,0xdb, + 0xbd,0xd3,0x7c,0x0a,0x00,0xac,0x75,0x71,0x56,0xca,0x21,0xa8,0xce,0xd4,0xd9,0xfc,0x7a,0x79,0x4e,0x90, + 0x93,0x9f,0x69,0x00,0xb2,0xe6,0xc5,0xd7,0x90,0x28,0x34,0x04,0xd4,0x45,0x83,0x5b,0xd6,0xf6,0xa4,0x10, + 0xb7,0x44,0x7f,0xa8,0x42,0x42,0x48,0xd5,0xfc,0xfa,0xac,0x92,0x5f,0xfe,0x0e,0xa4,0x80,0x12,0x57,0x6a, + 0xd5,0x70,0xa8,0x0d,0x9e,0x1f,0xfe,0xc3,0x5f,0xb6,0x0c,0x33,0x20,0xaa,0x2e,0x0a,0x7d,0x29,0x11,0xa2, + 0x9a,0xc1,0xbd,0x5c,0x89,0x4d,0x7e,0xce,0xf7,0x87,0xd3,0x58,0x07,0x39,0xaa,0x15,0x4f,0x8a,0xd8,0x37, + 0xb2,0xc4,0x83,0x1d,0xce,0x2e,0xab,0x9a,0xd1,0x5f,0x4d,0xbd,0xd0,0xb4,0x11,0xd0,0x89,0xb9,0x5a,0xd5, + 0x88,0x9e,0x3d,0x2f,0xfa,0xa1,0xad,0x3a,0x52,0xa0,0x41,0xeb,0xdf,0x3b,0xc2,0x6f,0xb9,0x8b,0x94,0xcd, + 0x81,0xc9,0x11,0xca,0x27,0x65,0x1a,0x6b,0x63,0x48,0xab,0x03,0x43,0xda,0x9d,0x1d,0x17,0x2f,0x2d,0x4c, + 0x76,0x17,0x0f,0xc2,0x2a,0xa6,0x7b,0x11,0xbc,0xcd,0x41,0xc4,0x25,0xfb,0x98,0xf0,0xa5,0x86,0x9d,0x6e, + 0xbc,0xf9,0xd0,0xeb,0xb3,0x55,0x32,0x0e,0x76,0xfa,0xcd,0x87,0xb8,0x28,0x10,0x82,0x52,0xbb,0x7a,0x3e, + 0xd2,0xec,0xe1,0xce,0xca,0x74,0x60,0x11,0x7a,0x95,0xd8,0xa2,0xb2,0x24,0x9c,0x64,0xe2,0x06,0xfc,0x89, + 0x8f,0x4d,0x49,0xfe,0x56,0xec,0x55,0x9f,0xb0,0x88,0x7a,0xc3,0x87,0x9c,0xf9,0x40,0x97,0x1d,0xcb,0x45, + 0x8e,0x62,0xb3,0xcf,0xc6,0x4c,0xbd,0xf1,0xda,0xcb,0xd2,0x39,0x0f,0x17,0x84,0x28,0xdc,0x6d,0x5c,0xce, + 0x86,0xcb,0x06,0x79,0x5c,0xd6,0xdf,0xd9,0x39,0x34,0x84,0x36,0xb8,0xd3,0x93,0x0e,0x2a,0x1a,0xfe,0x07, + 0x3a,0x16,0x69,0x37,0x0c,0x17,0x0e,0x0a,0xac,0x71,0x31,0x19,0x07,0x6c,0x1a,0x2c,0x69,0x32,0xd7,0x70, + 0x1f,0xc0,0xac,0x3e,0x15,0xbc,0xf0,0xff,0xb5,0xf7,0xad,0xfb,0x6d,0x1b,0x49,0xbe,0xaf,0x42,0x61,0x74, + 0x6c,0x20,0x6c,0x51,0x92,0x9d,0x64,0x26,0xa0,0x61,0xae,0x63,0xe7,0xe2,0xc4,0xb7,0x8d,0x9d,0x64,0x12, + 0x8a,0xd1,0x42,0x24,0x48,0xc1,0xa6,0x00,0x0e,0x00,0x4a,0x76,0x44,0x3e,0xd0,0x7e,0x3d,0x8f,0xb0,0xfb, + 0x62,0xa7,0xfe,0x55,0xdd,0x8d,0x06,0x08,0xd9,0x4e,0x66,0x77,0xcf,0xf9,0x70,0x92,0x9f,0x45,0xa0,0xd1, + 0xf7,0xae,0xae,0xae,0xaa,0xae,0xcb,0x4e,0x77,0xab,0xfa,0x5b,0x24,0xb9,0x2d,0x84,0x74,0xcc,0x5b,0x03, + 0x80,0x78,0xde,0x10,0x14,0x87,0xce,0x40,0x59,0x81,0x56,0xed,0x3f,0x57,0x3c,0x03,0x9a,0x1e,0x6f,0xb7, + 0xcc,0x30,0x4a,0xd4,0x49,0x0d,0xb0,0xe2,0x59,0xf8,0x67,0xc8,0xd5,0xb0,0x6d,0xb9,0x78,0xd0,0xad,0xc1, + 0x6b,0x32,0x41,0xaf,0x3e,0xd5,0x6e,0x27,0x7c,0x8f,0xa8,0xe8,0xad,0x42,0x64,0x97,0x59,0x0a,0x9f,0x64, + 0xc6,0xcf,0x98,0x51,0x90,0xb5,0x1e,0xc4,0xd8,0x4f,0x04,0x96,0xb4,0xf6,0x1c,0xe6,0x4d,0x88,0xd6,0xb2, + 0xe3,0xf8,0xb6,0x32,0xbd,0xfe,0xb6,0xea,0x6c,0xff,0x5b,0xb4,0xbf,0x4a,0xd1,0xfe,0x65,0x37,0xe6,0xb8, + 0xa0,0x2e,0xcc,0x53,0xaa,0x74,0xa2,0x16,0x75,0xc5,0xdf,0xdb,0x8a,0xbf,0x27,0xea,0xe1,0x5d,0xfd,0xe1, + 0x1b,0xfb,0xe1,0x1b,0xfa,0x70,0x9a,0x46,0x87,0xe3,0x93,0xab,0x60,0xd0,0x3f,0x39,0x38,0xdd,0x3f,0x99, + 0x4c,0x0e,0xd5,0x19,0xe2,0x06,0x9c,0x12,0x8f,0x71,0xc5,0x0f,0x53,0x4f,0xbd,0xad,0x4b,0xd3,0x01,0xab, + 0x4b,0x03,0x8c,0xf6,0xeb,0x0f,0xe7,0xf6,0xc3,0x39,0x7d,0x78,0x93,0x76,0x5a,0xf3,0x72,0xc0,0xba,0xc3, + 0xd0,0x1f,0xf4,0x83,0xc3,0x3a,0x1c,0x83,0x18,0x5b,0x1e,0x0e,0xfd,0xd1,0xde,0xf8,0x37,0x7f,0xf2,0xc9, + 0x49,0x10,0x1c,0x2e,0x3a,0x94,0xd2,0xc4,0x5e,0xb3,0xaa,0xdd,0xb8,0x4a,0x41,0x28,0x13,0xd8,0x1b,0x51, + 0xa8,0x47,0x8f,0x11,0xbb,0x55,0x07,0xf3,0x99,0x44,0x45,0x1d,0xf8,0x87,0x81,0x28,0x81,0x67,0x3a,0x1a, + 0xf5,0x6f,0x07,0x07,0x87,0xea,0x01,0x3d,0x9c,0x94,0x9f,0xec,0xa5,0x17,0xb0,0x9f,0x8e,0xb3,0x6a,0xff, + 0x50,0xbd,0x4c,0xbb,0xb4,0x1e,0x1e,0xea,0xd0,0xf5,0x04,0x28,0x95,0xc4,0x1c,0x04,0x8c,0x5a,0x7e,0x2b, + 0x71,0xad,0x35,0x1e,0xe8,0xbc,0xd9,0x8d,0x79,0xad,0xf7,0xbc,0x07,0x29,0x47,0x2a,0xf2,0x6c,0x07,0xbc, + 0x46,0x50,0x81,0xe7,0xa9,0x2f,0xde,0xe9,0x9b,0x97,0xe5,0x59,0x43,0x07,0xa7,0xf3,0x86,0x57,0xda,0x05, + 0x87,0xcd,0xda,0x50,0x62,0x79,0xe5,0x24,0x12,0x3c,0xbd,0x02,0xec,0x4a,0xa8,0x44,0x02,0xcf,0xa7,0xf9, + 0xef,0xc0,0xcf,0x25,0x5c,0xe8,0xb5,0x57,0x8f,0x3a,0xf0,0x5d,0x11,0x7d,0x57,0x7c,0xc0,0x7f,0xa3,0x54, + 0x6f,0x7d,0xf1,0xed,0xb1,0xfd,0x35,0x02,0x48,0xc0,0x43,0x29,0x4b,0xd8,0xbf,0x2b,0xac,0xc0,0xcd,0xbd, + 0x2c,0xfb,0x08,0xdf,0x84,0xda,0xe3,0xc5,0xab,0xb4,0xc3,0xad,0xe6,0xab,0x74,0x9c,0x4d,0xfa,0x2c,0xa1, + 0x2e,0x9a,0xad,0x14,0x58,0xf1,0xd7,0x35,0x94,0x2e,0x2c,0x94,0x2e,0x08,0x4a,0x9f,0xb4,0xc7,0xa9,0x2d, + 0xc2,0x13,0x0e,0x85,0x09,0x66,0x35,0x24,0x76,0xfd,0x80,0x5f,0x89,0x39,0xc0,0x8f,0x8e,0xfc,0x5c,0xa7, + 0x1f,0x54,0xb9,0xfe,0xe4,0xc4,0x80,0x76,0x3e,0x8b,0xc4,0xd5,0x53,0x75,0x18,0x69,0xfe,0xc8,0xaf,0x3a, + 0xd5,0xad,0x93,0x13,0xb8,0xce,0x76,0x5c,0x69,0xe7,0xb3,0xae,0x13,0x63,0xfb,0x2a,0x65,0x8f,0x62,0x88, + 0x08,0xfd,0x22,0xd5,0x71,0x2e,0xd9,0x73,0xac,0xa7,0x1e,0xd3,0xbb,0x10,0x58,0xfc,0xfa,0xa8,0xf5,0xf9, + 0xeb,0xc6,0x3b,0x9d,0x24,0x9e,0x7a,0xd6,0x2c,0xf1,0xd4,0x7d,0x45,0x86,0xe1,0x57,0xb8,0x00,0xb0,0xde, + 0x1a,0xb4,0x1b,0x33,0xf0,0xa8,0x4e,0x35,0x0e,0x79,0x60,0x33,0x5c,0x31,0x90,0xb5,0xb2,0xf9,0xe8,0x91, + 0x13,0xa9,0xd3,0xe9,0xd7,0x55,0x2b,0xf5,0xab,0x0c,0x37,0x94,0xbb,0x0d,0xbb,0xbd,0xbb,0xb9,0xdd,0x66, + 0x2e,0xff,0x99,0x6d,0xf6,0x41,0x73,0xac,0x57,0xcd,0x44,0x6e,0x54,0x64,0x34,0x3f,0x60,0x96,0x47,0xba, + 0x5a,0xb0,0xa9,0xb4,0xbb,0x6d,0xbe,0xaf,0x41,0xdc,0xbe,0xf7,0xe3,0x00,0xf2,0x22,0x5f,0x72,0x04,0x61, + 0xed,0x14,0xa1,0xf3,0x40,0xc5,0xbd,0xf9,0x97,0x40,0x4b,0x67,0xbe,0x8d,0xde,0xb1,0x21,0x1e,0x25,0xf0, + 0xd5,0x66,0x3f,0x38,0x54,0x3f,0x3b,0xe8,0x69,0x27,0xc0,0x83,0x50,0x79,0x0f,0x9d,0xb3,0x1e,0xb4,0x5d, + 0xc2,0x12,0xb1,0x87,0x0d,0xea,0x02,0x2a,0xae,0x4e,0x04,0x0d,0x8e,0x05,0x97,0x8a,0x89,0x9d,0x84,0xb4, + 0x69,0x78,0xa4,0x8a,0x95,0x6b,0x24,0xc6,0x39,0x8d,0xb2,0xa5,0x9c,0xaf,0x2c,0x5a,0x47,0x44,0x68,0x6d, + 0xe4,0xd4,0x19,0x05,0x38,0x80,0x2f,0x21,0x7b,0x55,0xa2,0x8b,0x44,0xf1,0x00,0xfa,0x5a,0xf4,0x4d,0x5e, + 0x20,0x07,0x46,0x46,0x1c,0xbb,0xc7,0xdc,0x90,0xea,0xae,0xcc,0xc6,0xf0,0x40,0x8f,0x08,0x3f,0xf8,0xeb, + 0xa0,0xa1,0xd7,0x68,0x22,0x60,0x38,0x3a,0x3c,0xd5,0x30,0xee,0x30,0xc5,0x91,0x28,0xd7,0x1d,0x5f,0xcc, + 0xad,0x79,0xe2,0xe7,0xf4,0x19,0xc3,0xe4,0x5e,0xe6,0x91,0x1b,0x32,0x56,0xeb,0x2d,0x49,0x2c,0x96,0xfd, + 0x81,0x21,0x01,0x0c,0x9a,0xea,0xf7,0xf3,0xa0,0x4e,0x45,0x14,0x96,0x55,0x4a,0x93,0x3c,0xd4,0x46,0x07, + 0xb1,0xd1,0x10,0x9a,0x42,0x43,0x05,0x97,0xc7,0xd4,0xe7,0xad,0x9d,0x63,0xb5,0x27,0xa1,0x13,0xe4,0xcd, + 0x4c,0xae,0x4c,0xb9,0x9a,0x3b,0xde,0xb5,0xd5,0xb9,0x38,0x26,0xa6,0xb5,0x3e,0x0f,0x46,0x3e,0xd7,0x04, + 0xe9,0x7b,0x39,0x7a,0xb8,0x43,0x36,0x23,0x59,0x9d,0x07,0x61,0xeb,0x8b,0x7f,0x0e,0xe9,0xf8,0x0c,0xb2, + 0xd8,0x25,0x35,0x39,0xc7,0xa4,0x26,0x3c,0xa9,0x2b,0x99,0xe1,0x29,0x3c,0xbd,0x70,0x17,0xa9,0x2b,0x61, + 0xe6,0x3b,0x3e,0xa1,0x6d,0x93,0x0f,0xdb,0x24,0xb2,0xf8,0x73,0x6e,0x95,0x6d,0x65,0xae,0x89,0xf1,0xae, + 0xdc,0x8e,0x47,0xe1,0x52,0x54,0xf7,0x12,0x63,0x2c,0xa5,0x43,0xd3,0x0b,0x94,0x8a,0xd0,0x17,0xb3,0x6a, + 0xae,0x54,0x54,0x67,0xb6,0xce,0x54,0xa3,0xd6,0xa0,0xe7,0x6d,0x17,0x14,0xa0,0x1c,0x34,0x67,0x5f,0x52, + 0x2b,0xd1,0x92,0x9b,0xb1,0x33,0x27,0x26,0x22,0x03,0x65,0x4d,0x48,0xdc,0x58,0x25,0x5a,0xef,0x15,0xdd, + 0x45,0xdf,0x38,0xd4,0x7c,0xe1,0x6c,0x4d,0x91,0x32,0x3f,0x6c,0xf2,0x08,0x52,0x86,0xd6,0xc6,0x25,0xef, + 0x2b,0x0e,0xc8,0x6a,0x6b,0x5e,0x3a,0x74,0xc9,0x4e,0x8c,0xbd,0x76,0xec,0x0a,0x0b,0x87,0x69,0x10,0xfb, + 0xac,0x71,0x9c,0xe9,0xb9,0xe5,0x2b,0x27,0xe8,0x1b,0x32,0x71,0x50,0x98,0xd9,0x47,0x97,0x1a,0x8d,0x73, + 0xe6,0x9d,0xb5,0xd2,0x6e,0x6c,0x2a,0xe3,0xb0,0xdb,0x71,0x89,0x6d,0x7c,0x64,0x0c,0xbb,0x0c,0xdf,0x82, + 0xaa,0x73,0x7e,0x65,0xab,0xd5,0x26,0xb7,0x12,0xff,0xca,0x71,0x7a,0x2d,0x4b,0xdf,0xb4,0x60,0xdb,0xd7, + 0x9d,0xaa,0x07,0x59,0x04,0x26,0x8d,0xa8,0x1c,0x6c,0x35,0x46,0x7f,0x57,0xc6,0xc0,0x57,0x63,0x1a,0x5a, + 0x8b,0x2b,0x9d,0x8d,0xde,0xcc,0xa3,0x64,0x57,0xf8,0x96,0x1a,0x88,0xea,0x5a,0xd8,0x99,0xc5,0xb4,0x82, + 0xc2,0xa0,0x0d,0x6e,0xdd,0x09,0x06,0xc1,0xc3,0x26,0xf3,0xa2,0xe7,0x1a,0x64,0x9e,0x4c,0x74,0x3d,0x04, + 0x8e,0x26,0x84,0xf2,0xb5,0x85,0x25,0xf0,0x0b,0x5b,0x29,0xd9,0x6b,0x8a,0x52,0xd7,0x8b,0x65,0xb9,0xa9, + 0x62,0x55,0x47,0x1e,0x02,0xb2,0x8f,0xae,0x10,0xe0,0x33,0x63,0x87,0xe6,0xba,0x62,0xf3,0x6a,0x5d,0x24, + 0xfe,0xb9,0x86,0x1c,0xe7,0xde,0xae,0x7f,0x47,0xbd,0xdc,0xc5,0xbd,0x28,0xe5,0x35,0x88,0x7d,0x8e,0x96, + 0x93,0xab,0x66,0x10,0xa3,0x4b,0x3b,0x71,0x28,0xd6,0x38,0x39,0x52,0x01,0x5c,0xf4,0x29,0xad,0xcf,0x03, + 0x74,0x50,0x33,0x45,0x18,0x50,0xed,0xf8,0x6c,0xdf,0x24,0xd7,0x2b,0x9f,0x05,0x36,0x91,0x23,0x05,0x07, + 0xf5,0xe2,0xd4,0x01,0xe2,0x75,0x88,0x1f,0xf6,0xff,0xdf,0xb6,0x7d,0x44,0xc7,0x71,0x0f,0xed,0x9a,0x3e, + 0xd6,0x7d,0xbf,0x68,0x9e,0x28,0xf5,0x58,0xad,0xcd,0x41,0x41,0x54,0xb6,0x78,0xee,0xa2,0x1f,0x86,0xde, + 0x91,0xbf,0xc0,0x15,0xdd,0x25,0xce,0xc5,0x10,0xd1,0x8e,0xa0,0x1b,0xe4,0xe2,0xb3,0x85,0x55,0x45,0xc6, + 0x11,0xbd,0xd9,0x18,0xc4,0x16,0xd8,0x70,0x45,0xd1,0xbe,0x3e,0xb5,0x6d,0x28,0xda,0xa1,0x9e,0xa7,0x60, + 0xe4,0x58,0xd1,0xf6,0xa3,0x34,0xcc,0xde,0xa7,0x18,0x4c,0x64,0xd3,0xc1,0x81,0x53,0x00,0xd7,0x64,0x95, + 0x75,0x96,0xe2,0x7c,0x88,0x68,0x51,0xb7,0xbe,0x39,0x89,0x68,0x33,0x14,0x5d,0xdb,0x95,0x57,0x07,0x40, + 0xa7,0x15,0x21,0xf8,0xd5,0x9c,0x90,0x0b,0xc4,0xce,0x08,0x94,0xd9,0xa2,0x8d,0xfe,0xeb,0x2d,0x2a,0x69, + 0xd8,0xa2,0x1c,0x93,0x4c,0x5a,0x71,0x77,0x68,0xa2,0xc3,0xf6,0x22,0x5b,0x60,0xc2,0x55,0x41,0xed,0x9b, + 0xb7,0x50,0x2e,0x1d,0x74,0x96,0x07,0x6a,0xce,0x20,0x5f,0x4a,0x89,0xce,0x45,0xb0,0x9e,0x9a,0xa8,0x9c, + 0x29,0xe3,0xf4,0x02,0x7f,0x59,0xe7,0x05,0x71,0x5f,0x77,0xbc,0x5f,0x06,0xb4,0x0f,0xd3,0x86,0xff,0x4c, + 0xe3,0xe3,0x6a,0x16,0x8c,0xce,0xfc,0x42,0xe6,0x03,0x91,0x89,0xd3,0x4e,0xdf,0x99,0x47,0x96,0xf9,0x23, + 0xaa,0xcc,0xfa,0xf7,0x64,0xa0,0x2d,0xdc,0xd7,0x94,0x5d,0x8c,0x46,0x12,0x36,0x0c,0x07,0x16,0xe7,0x16, + 0xaf,0x9e,0x04,0x00,0xf2,0xfa,0x9c,0xc9,0x9b,0x20,0xed,0xd0,0x75,0x29,0xba,0x4c,0x89,0x6d,0xb0,0x63, + 0xb5,0xa4,0xd1,0xf2,0xa6,0x4a,0xfc,0x25,0xcf,0xe2,0x3a,0x5a,0xd6,0x53,0xba,0x8e,0xd6,0xd6,0x59,0x00, + 0x25,0xac,0x31,0x67,0x42,0xe0,0xae,0xa2,0xa2,0x26,0x25,0x66,0x8e,0x2d,0xa9,0x6c,0x22,0xd4,0x35,0xc7, + 0x1e,0x65,0xd8,0x5f,0xd3,0xc2,0xae,0x69,0x61,0x85,0x93,0xaa,0x17,0x76,0x1d,0x98,0xb4,0xf1,0x7a,0x22, + 0x75,0x77,0x74,0x40,0x72,0xd8,0xe6,0xb7,0x95,0x9f,0xca,0x11,0x32,0x22,0x04,0xcc,0xb9,0x68,0xc6,0x57, + 0xb4,0x80,0xee,0x5d,0xb9,0xf1,0x23,0x5b,0xd6,0x27,0xc0,0x54,0xd1,0x70,0x89,0x06,0x3a,0x52,0x2b,0xfa, + 0x37,0x8b,0x6a,0x57,0x2d,0xea,0x32,0x82,0x04,0x40,0x2d,0xe8,0x67,0x36,0x51,0xa7,0x56,0x75,0x9b,0x3e, + 0x9d,0x45,0x29,0x3e,0x5d,0xd1,0xcf,0xe9,0x44,0xbd,0x8d,0xf6,0xca,0xe1,0xfc,0x1e,0x9a,0x5a,0xdd,0x8b, + 0x4e,0xe9,0x6c,0xf2,0x2f,0x83,0x11,0x8a,0xf7,0xfb,0xf3,0x49,0x08,0xaf,0x65,0x23,0xd4,0x72,0x70,0x30, + 0x9b,0x84,0x3f,0xd2,0x47,0x75,0x46,0x9b,0xfa,0x1d,0x7e,0x41,0x9c,0x99,0x8c,0x5c,0x6b,0xbf,0xbf,0x9a, + 0x04,0xc8,0xb4,0x50,0x57,0x9c,0x89,0x7e,0x91,0xc9,0x94,0xe7,0x36,0x0f,0x0e,0x4e,0x25,0xd3,0xa5,0xce, + 0x74,0x29,0x99,0xde,0xee,0xd0,0x01,0x99,0xba,0xd4,0xe7,0xae,0x23,0x8a,0xf3,0x17,0x82,0x42,0xea,0x96, + 0x1b,0x95,0x2e,0x74,0xf7,0x16,0xd2,0xbd,0xae,0x4a,0xb9,0x02,0xa9,0xda,0xe9,0x5a,0xdd,0x7f,0xbf,0x12, + 0x67,0x17,0xd3,0xe8,0xa7,0x8a,0xd6,0x67,0xae,0x66,0x30,0x95,0xf7,0x41,0xd0,0x9f,0x71,0x0c,0xd3,0xd1, + 0x74,0xcc,0x0f,0x93,0x0e,0xe7,0x1f,0x75,0x5c,0xc2,0x39,0xd1,0xc2,0x29,0x47,0x21,0xb4,0xe8,0x31,0x9f, + 0x18,0x1e,0xe1,0xd6,0xad,0x1f,0x21,0xd4,0x8a,0x2d,0x05,0x9f,0x13,0x8d,0x7b,0x46,0x55,0x1c,0xa1,0xb5, + 0x51,0x4c,0xcf,0xb9,0xd2,0xe3,0xe7,0x71,0x2d,0xa9,0x9f,0xeb,0x89,0x1e,0xdc,0x52,0x06,0x87,0x14,0xe3, + 0xd1,0xb6,0x6b,0xa0,0x4b,0x67,0xa0,0x41,0xd8,0xac,0xb3,0x1e,0xef,0x70,0x7e,0x7f,0x06,0x25,0x7a,0x1a, + 0x22,0x01,0x44,0xff,0x78,0x12,0x48,0x74,0x46,0x79,0xd1,0x9b,0x7e,0xa5,0x4e,0xb1,0xf1,0x57,0xf7,0x4f, + 0x6f,0xdd,0xba,0xf0,0x8f,0x94,0x4c,0xcb,0xd6,0x9f,0x72,0xb8,0x6c,0x00,0x65,0xc8,0x40,0x0b,0x0a,0xaf, + 0x26,0xa1,0x9a,0xe2,0x50,0xca,0x8c,0x73,0xfa,0x9c,0x7e,0x99,0xec,0x9a,0x61,0xb0,0x35,0x58,0x82,0x28, + 0x06,0xf8,0x8f,0x50,0xff,0x8a,0xbe,0xad,0xea,0x30,0x88,0xe1,0x07,0xab,0x0d,0xe5,0xfb,0x1e,0x47,0xad, + 0xe1,0xb3,0xbd,0x23,0x9f,0xde,0x65,0xea,0x66,0xcc,0x90,0x97,0x55,0x13,0x35,0x6c,0x9d,0xa3,0xea,0x54, + 0xb8,0x10,0x46,0xaf,0x60,0x3c,0x51,0xca,0x06,0xa3,0x0e,0xcc,0x53,0x17,0x65,0x5d,0x34,0xc9,0x1e,0x61, + 0x94,0x0a,0x97,0x3f,0x2a,0x08,0x38,0x6a,0xec,0xaf,0x57,0xd2,0x2f,0xd8,0x9f,0xaa,0xed,0xc0,0x59,0x8b, + 0xf1,0x54,0x53,0xc4,0x6c,0x8a,0x17,0x6a,0xad,0xdd,0x7d,0x10,0x2e,0x28,0x9a,0xd1,0x86,0xa2,0x7c,0xb3, + 0x41,0x74,0x77,0x20,0x3d,0x55,0x08,0x69,0xaf,0x04,0x21,0x1b,0xbe,0x45,0x0e,0x2e,0x17,0xef,0x5b,0xa8, + 0xec,0x3a,0x26,0xa0,0x5e,0x4d,0xb8,0x9e,0x01,0x79,0xad,0x8f,0x7a,0x9a,0xba,0x6e,0x06,0xb6,0x10,0x4b, + 0x42,0x4a,0xec,0xc0,0xda,0x81,0xc3,0xbf,0x62,0x5e,0x6d,0xb5,0xd3,0x40,0x13,0x04,0xf3,0x20,0x60,0x4e, + 0xfc,0x3c,0x2e,0x99,0x10,0x07,0xd5,0x5d,0xfa,0x9c,0xc8,0xad,0xda,0x06,0x4d,0xdc,0x38,0xa7,0x07,0x3a, + 0x2a,0x8a,0x54,0x15,0x33,0xe5,0x57,0x27,0xda,0x20,0x1c,0x7c,0x70,0x98,0x75,0x61,0xd5,0x71,0x70,0x91, + 0xf3,0xb4,0x28,0x2b,0x6e,0x91,0xd0,0xcc,0xd1,0xf0,0xf2,0xde,0xdc,0xac,0xd5,0xa5,0x71,0x70,0x77,0xbe, + 0xd9,0xec,0x9d,0x11,0xbf,0x38,0x1f,0x5f,0x4e,0x34,0x67,0x0a,0xb3,0x74,0xcd,0xca,0x9e,0x47,0xe7,0x8d, + 0xfb,0x03,0x94,0x98,0x6d,0x36,0xe7,0xcd,0x86,0x89,0x8b,0xc1,0x46,0x4a,0x03,0x33,0x9b,0xb2,0xae,0x17, + 0xae,0xab,0x95,0x05,0xa4,0x79,0x6b,0x8c,0x78,0xef,0x01,0xe1,0xe2,0xe0,0xfa,0x02,0x9d,0x5c,0xc9,0xd9, + 0x22,0x8d,0xed,0x5d,0x60,0x81,0x59,0xb3,0x04,0x6e,0xe2,0xf4,0xa3,0x71,0x36,0x29,0x00,0xb9,0xc7,0xe1, + 0xbd,0x78,0x63,0x68,0x02,0x4b,0xbf,0x9b,0x6b,0xaf,0x3d,0x09,0x16,0x73,0xa5,0xde,0xaa,0x7d,0x08,0xa9, + 0xdf,0x20,0xd2,0x7c,0x3e,0x5b,0x2f,0x93,0x52,0x3d,0xa4,0x67,0xd0,0x38,0xcf,0xb5,0xf6,0xd7,0x15,0xcd, + 0xc9,0xd5,0xbd,0x59,0x5a,0x03,0xf0,0x15,0x93,0x95,0xfb,0xe3,0x59,0x3a,0xbe,0x9a,0xc0,0xda,0x8b,0xce, + 0x95,0xa3,0xe1,0xdb,0x7b,0x6f,0xea,0x2c,0x6f,0x89,0xbc,0x78,0x33,0x7e,0x3b,0xd1,0x79,0x68,0xa5,0x4c, + 0x76,0xe1,0x2f,0xdc,0x6f,0x7c,0x20,0x3f,0x60,0xbd,0x11,0xdc,0xab,0x89,0xd6,0x8c,0x0e,0x25,0xf6,0xd0, + 0x79,0x7e,0xc9,0xc2,0x56,0x42,0xc5,0x1d,0x4e,0x0a,0xf5,0x69,0xa9,0xe8,0x90,0xd4,0x46,0x16,0x7c,0x7a, + 0x8b,0x97,0x18,0x84,0x0e,0x81,0x71,0x36,0xa0,0x0b,0xe6,0x9c,0x4b,0xf6,0x1f,0xe2,0x03,0xd1,0x21,0x7f, + 0x4d,0x4f,0xcc,0x22,0x6c,0x0e,0x0c,0xfe,0x15,0xfb,0x7e,0xe2,0x85,0x64,0xec,0x8d,0x05,0x08,0x84,0xe6, + 0x5a,0x29,0x1d,0x14,0x1d,0xed,0xcc,0xb8,0x35,0x89,0xa7,0x66,0xca,0x41,0xc9,0x9d,0x60,0xb8,0xe6,0x27, + 0x5e,0xb2,0x7e,0x96,0xa1,0xee,0x1a,0xe9,0xb0,0xe0,0x86,0x8f,0x4f,0x3f,0xa7,0x2c,0x67,0x52,0xbf,0xdd, + 0x28,0xa7,0xdc,0x45,0x7c,0x2f,0x86,0xcf,0x23,0x28,0xf3,0xeb,0xeb,0x98,0x87,0xe6,0x12,0xca,0x7f,0xde, + 0x8a,0x42,0x23,0xd7,0x34,0x5a,0x72,0xa8,0x9e,0x8b,0xfd,0xdb,0xb9,0x10,0x83,0x74,0xfc,0x35,0x04,0x65, + 0xe7,0x3c,0x40,0x99,0x87,0xf3,0xc1,0xa9,0x08,0x6c,0xcf,0xe4,0x3c,0x58,0xb4,0xce,0xe1,0x73,0xa8,0xfe, + 0x12,0xe1,0x62,0xf0,0x9f,0x01,0xd8,0xab,0xc8,0xa4,0x11,0x0c,0x80,0x62,0x1a,0x5e,0x0d,0xeb,0x73,0xf1, + 0x0d,0x81,0xc5,0x9b,0x2e,0xde,0xe5,0x8d,0xc3,0xbb,0xbc,0x99,0xf8,0x57,0xdc,0x93,0x2b,0x71,0x7c,0xcf, + 0x5d,0x7d,0x5b,0x57,0xf2,0x80,0x2a,0x79,0xd0,0xc1,0xf9,0x3e,0xa8,0x39,0xdf,0x07,0xcc,0xf9,0x5e,0x09, + 0x24,0xbd,0x8c,0xae,0x76,0x70,0x2b,0xaa,0x7f,0x39,0x60,0x1d,0xe1,0xda,0xe4,0xe1,0x55,0x74,0x3c,0x7c, + 0x75,0xef,0x25,0xb1,0x88,0xd6,0x5e,0xe5,0x15,0xdc,0x3f,0x23,0x61,0xfc,0x6a,0x62,0x68,0xef,0x9f,0x2b, + 0xf4,0xef,0x8a,0x6a,0xd5,0xa1,0x6e,0x13,0x50,0x49,0x38,0xb7,0xc0,0xf2,0x1d,0xa9,0x23,0x7d,0x60,0x11, + 0xff,0x03,0x97,0xc0,0x45,0x6d,0x2d,0x26,0xeb,0x87,0xb0,0x32,0x18,0x13,0x2f,0xc5,0x73,0x90,0xfe,0x36, + 0x9f,0x7f,0xad,0x37,0x5a,0x08,0xb5,0x0f,0xd9,0x7f,0xe1,0x78,0x91,0xaa,0x77,0xa9,0x7a,0x9b,0xaa,0xfd, + 0x54,0xbd,0x4e,0xd5,0x8b,0x6c,0x64,0xa4,0xf9,0x5f,0x25,0xca,0x08,0xd6,0xf0,0x2c,0xf0,0xd4,0xba,0xfe, + 0xdb,0x93,0xb8,0x5e,0x62,0x65,0x71,0x9e,0x5f,0x8d,0x9e,0x27,0x12,0xdd,0x0c,0x06,0x4a,0xdb,0xf0,0x7a, + 0x3b,0x31,0x8e,0x95,0x2f,0x52,0x78,0x31,0x7f,0x9a,0xdd,0xba,0x65,0x2f,0x39,0x76,0xc3,0x8b,0xc8,0xfd, + 0x38,0xd5,0x3e,0x3d,0x8f,0xb3,0x45,0xe2,0xb9,0xe6,0xa9,0xa2,0x89,0x5f,0x17,0x66,0x29,0xbd,0x16,0xae, + 0x0d,0x59,0xd5,0xf7,0x52,0x47,0x45,0xfc,0x01,0x7d,0xd0,0xfa,0x66,0xc6,0x75,0xfa,0x8f,0x29,0x9c,0xaa, + 0x61,0x75,0x92,0x59,0xeb,0x42,0x14,0x42,0x24,0x73,0x33,0x6f,0xc3,0x3a,0x0a,0x4f,0x72,0xeb,0xd6,0x1e, + 0xff,0x12,0x23,0xa6,0xd5,0x2c,0x47,0xdf,0xc1,0xd1,0x91,0x3d,0xcc,0x1b,0x3d,0xfc,0xd1,0x61,0x29,0xc4, + 0xa8,0x6b,0xa6,0x45,0x49,0xdb,0x20,0x7c,0x91,0xc8,0xb3,0xeb,0xed,0xc9,0xd6,0x4a,0xf8,0x02,0x81,0xd7, + 0x8c,0xfd,0x89,0x51,0xfa,0xfc,0x3a,0x81,0x0c,0xcc,0x33,0x9a,0x23,0xb6,0x77,0x74,0xee,0xa6,0xbe,0xc4, + 0x8e,0x0b,0x02,0xed,0xc9,0xeb,0xa9,0x89,0x1c,0x1b,0x25,0x75,0x14,0x59,0xe5,0x3c,0xb3,0x5f,0x47,0x56, + 0x2d,0xde,0x9d,0x77,0x33,0xdd,0x4f,0x93,0x40,0x7d,0x99,0xdd,0x94,0x09,0x63,0x13,0xa9,0x2c,0xa1,0x48, + 0x78,0xe9,0x7f,0xc6,0x3a,0xf2,0xef,0xcd,0xc9,0x37,0x1f,0x4f,0xa1,0xcb,0xff,0x94,0x7d,0x81,0xeb,0x45, + 0x02,0x1e,0xc2,0x9d,0x70,0x7b,0xbe,0x76,0xee,0xaa,0x39,0x68,0x7b,0x73,0x6d,0x82,0xeb,0x9d,0xb9,0x1c, + 0x9a,0x3b,0x4b,0x3b,0xa3,0xa2,0x4d,0xfd,0xe1,0xf9,0x1d,0xa6,0xed,0x18,0x80,0xb5,0x6a,0xc4,0x1e,0x54, + 0xcb,0xd9,0x89,0xe5,0x56,0x66,0xd9,0xa8,0x57,0x8c,0x12,0x31,0x9f,0xbe,0x31,0x7c,0xe0,0x23,0x74,0x10, + 0x00,0x1f,0xea,0x9c,0x7c,0x39,0x4e,0x34,0xce,0x4f,0x78,0xb9,0x75,0x8b,0xbe,0xeb,0x0f,0xc0,0xf4,0x06, + 0x62,0xf5,0x2a,0xb0,0xa7,0xc6,0x9f,0x08,0x5e,0x25,0xb0,0xe7,0x8f,0xa9,0xc2,0xce,0x0a,0x45,0x2d,0xb6, + 0x3d,0x3f,0xda,0x97,0x80,0xa9,0x0c,0xb1,0x00,0xbf,0x84,0xf8,0x22,0xd0,0xaa,0x25,0xe2,0x42,0xc5,0x11, + 0xa8,0x73,0x80,0xfa,0x53,0x9a,0x99,0x22,0x5d,0xc0,0x13,0xec,0xa3,0xb4,0x84,0x72,0x64,0xe4,0x65,0xb4, + 0x0e,0x5a,0xe7,0x8e,0xef,0x54,0x67,0xf2,0x01,0xe1,0xe2,0x5b,0x49,0x70,0xfe,0x90,0x8e,0xfc,0xac,0xde, + 0xf6,0x38,0xe2,0x5e,0x81,0x2f,0x70,0xad,0x87,0x9a,0x85,0xa2,0x7c,0x0b,0xef,0xfc,0xad,0xc4,0x62,0x94, + 0x87,0xd2,0x72,0xa7,0x7e,0xc1,0xce,0x08,0x87,0x45,0x6b,0x26,0xfd,0x0f,0x0e,0x78,0xa7,0xa3,0xc5,0xe8, + 0x43,0x5d,0xed,0x9a,0x20,0x5a,0xcb,0xe7,0x1f,0x28,0xa6,0x07,0xd2,0x39,0xcc,0xae,0x2a,0xf5,0xc8,0xa1, + 0x5a,0x91,0x75,0x2c,0xae,0x66,0x08,0x78,0x37,0x7e,0xb8,0x7f,0x0c,0x35,0xdf,0x12,0xd4,0xb0,0x61,0x98, + 0xb6,0xee,0x82,0xa0,0x39,0x2e,0xc2,0x2f,0xf3,0x1c,0xce,0x70,0xd5,0xb4,0x2c,0xed,0x33,0x80,0xcb,0x64, + 0x03,0x22,0x31,0xcf,0xce,0xed,0xac,0x4e,0x71,0xee,0x56,0xdd,0x3c,0xe6,0x5e,0xd5,0xcd,0xd5,0x4a,0xdb, + 0xb9,0xb8,0x75,0xf3,0x76,0xa4,0x4b,0x77,0x3b,0x92,0x6e,0xcc,0xdb,0x6a,0x70,0xb6,0x2e,0xf8,0x5e,0x30, + 0x1c,0x8b,0x5d,0x9b,0xd2,0xe9,0xa2,0xd8,0x31,0xd9,0xaa,0xdf,0xcd,0x04,0x35,0x2e,0x6b,0xc5,0x5a,0xee, + 0xdb,0xb4,0x61,0x42,0xd7,0xb6,0x05,0x6b,0x1b,0x8f,0x77,0xd8,0x84,0x69,0xcf,0x59,0x2c,0x58,0x95,0x5b, + 0xfa,0xee,0xe0,0x7e,0x8c,0xc2,0x7f,0x81,0x84,0x90,0xc0,0xd6,0x8d,0xd9,0xaa,0x4d,0xc4,0xb0,0x36,0x50, + 0x3b,0xd0,0xf1,0x5b,0xdd,0x3a,0x44,0xf0,0x1f,0x19,0x8e,0x70,0x18,0xd4,0xee,0x2b,0x9d,0x4b,0x33,0x4b, + 0x77,0xbb,0xb6,0xa3,0xb5,0x40,0x40,0xdb,0x8f,0xfd,0x9c,0xc0,0x33,0x0f,0x7b,0x1b,0xa8,0x3f,0x19,0x2f, + 0xab,0x4c,0xa1,0xd1,0xdc,0x99,0x2f,0x3f,0x01,0x45,0xe5,0x26,0x02,0xac,0x77,0x7a,0x5a,0x37,0x77,0xe0, + 0xf5,0xad,0x5b,0xb9,0xbe,0x77,0xe0,0x0d,0x63,0x16,0xc3,0x89,0x92,0x2d,0x3f,0x8f,0x62,0x27,0xc0,0x69, + 0xd9,0xc7,0x01,0x81,0x47,0x2f,0x2c,0xfb,0x2c,0xcb,0x0d,0x0b,0x3f,0x16,0xf9,0x07,0x2e,0xa0,0xf5,0xdd, + 0x87,0xa4,0x58,0x83,0xa2,0x32,0x18,0x71,0x0a,0x97,0xc1,0x2f,0xff,0x95,0xb0,0x19,0x91,0x2f,0x17,0x88, + 0xb0,0xaf,0x1c,0x68,0x47,0x33,0x34,0xb5,0x75,0x17,0xa3,0x1f,0x13,0x6d,0x59,0xb4,0x6e,0x18,0xbb,0x2f, + 0x31,0x09,0x6b,0x21,0x4d,0x65,0x16,0xeb,0xb0,0xf3,0xb8,0x4e,0x6d,0x25,0xdd,0x84,0xf0,0x3d,0xe0,0x16, + 0x41,0x9e,0x80,0x2e,0x3e,0x2e,0xe2,0x06,0xd6,0x09,0x14,0x11,0x26,0x4b,0x8d,0xa3,0xfc,0xf3,0x28,0x56, + 0x17,0xd1,0x52,0x5d,0x60,0x08,0x84,0xd1,0xce,0xf1,0xbb,0xd9,0x5c,0x60,0x2e,0xf8,0x55,0xe8,0xbb,0xbd, + 0x5f,0x58,0x9a,0xe0,0xef,0x2d,0xbb,0x7c,0xbe,0x76,0xa5,0x1a,0x97,0x9e,0x35,0x0b,0x2e,0x80,0x35,0x8f, + 0x96,0x6d,0x20,0x11,0x83,0x91,0x29,0x8f,0xdd,0xcb,0xd7,0xd5,0x41,0xca,0x9a,0xfb,0x69,0xd3,0x79,0x83, + 0x86,0x02,0xe0,0xcd,0xef,0xfc,0xb9,0xf2,0xe2,0x39,0x41,0xf5,0x13,0x51,0xaf,0x70,0x50,0x61,0xe2,0xe4, + 0x44,0xbc,0xf4,0xa6,0x1f,0xcb,0x6d,0xa0,0x0c,0xf8,0xa0,0xb1,0x34,0x3b,0xc8,0xc5,0x14,0x40,0x04,0x1e, + 0xbf,0xf8,0xb5,0xb0,0x6a,0x2d,0x02,0x53,0xd5,0xf0,0x28,0xbc,0x82,0x0f,0xf6,0xef,0x20,0x8d,0xe1,0xe6, + 0xbf,0x12,0x8d,0x91,0x59,0xa0,0x38,0x4d,0x30,0x16,0x46,0x0f,0x83,0x34,0x9d,0x3e,0x87,0x46,0x18,0xa1, + 0xc5,0x76,0x57,0x69,0xc9,0x56,0x51,0xb5,0xad,0xc9,0xe6,0x5c,0x98,0x16,0x75,0x41,0xe8,0xf3,0x1f,0x29, + 0x26,0x05,0xf0,0xa8,0xf1,0x06,0x5f,0xe8,0x3b,0x08,0x06,0x18,0x36,0x18,0x8a,0x49,0x5f,0xef,0x1f,0xcc, + 0xc5,0x8a,0x31,0xe6,0xf7,0x84,0x57,0x6a,0x85,0x8a,0xf0,0xf7,0x54,0xd5,0x6f,0xdf,0x40,0x39,0x38,0xbc, + 0x16,0x24,0xf3,0x8f,0xb4,0x0b,0xb1,0xb4,0x2c,0xdb,0x19,0x3f,0xb8,0x46,0x22,0xb2,0x74,0x12,0x28,0x77, + 0x15,0x67,0x08,0x82,0xdb,0xed,0x0e,0x89,0x0b,0xad,0x8a,0xe4,0xd2,0x3a,0x2e,0x14,0x23,0x51,0x23,0x7c, + 0x4e,0xbb,0xd0,0x16,0x7b,0x54,0xcd,0x9b,0x39,0xc1,0x67,0xc7,0xf5,0xae,0x29,0x89,0x2d,0x2a,0xef,0x59, + 0xae,0xbc,0x34,0xa2,0xc7,0x69,0x94,0x8e,0xcb,0xc9,0x70,0x2a,0xf1,0xa3,0xd1,0x8b,0xbd,0x68,0x2a,0xc2, + 0x77,0x70,0x06,0x7a,0x27,0x4f,0x9b,0x3b,0x99,0x90,0xc7,0x25,0x6e,0x44,0x3c,0xc0,0x76,0x6e,0xad,0x45, + 0xb3,0x31,0xe7,0x9b,0x44,0x53,0x45,0x25,0xf4,0x76,0x9e,0x76,0x6f,0xe7,0x38,0x80,0xdc,0xc3,0xf1,0x26, + 0xbe,0x46,0x87,0x97,0xf8,0x33,0xa7,0xae,0xce,0x6b,0x09,0xd8,0xdc,0x74,0x75,0x15,0x15,0xe3,0xf9,0x64, + 0xb8,0xda,0xd9,0x07,0xb1,0xd2,0x69,0x44,0xb3,0x46,0x2b,0x26,0xf7,0x17,0x49,0xf5,0x65,0xbe,0x66,0x31, + 0xdb,0xc3,0x65,0x4a,0x00,0xf6,0x03,0xcd,0x35,0xfc,0xb0,0x8f,0x57,0xdc,0xc5,0xd1,0x5a,0x7a,0xbd,0x0a, + 0xc2,0xa5,0x79,0xda,0x6a,0x0b,0xdc,0x15,0x61,0x67,0x5f,0x7c,0x01,0x10,0xbb,0xaf,0xa3,0x93,0x31,0xef, + 0x34,0x8b,0x96,0xd6,0x55,0x89,0xc9,0x91,0xd3,0xe9,0xef,0x7a,0xe7,0xd8,0xb1,0xbf,0xee,0xf6,0x34,0x60, + 0xdb,0x82,0x16,0x07,0xb0,0x4b,0xc3,0x51,0x87,0xf9,0x68,0x68,0xaa,0xd9,0x0d,0x16,0xcd,0x2e,0xa0,0xa8, + 0xc4,0x9c,0x3d,0x1a,0xe4,0xad,0x7f,0x7e,0x36,0xf0,0xf2,0x2e,0x11,0xf1,0xf9,0x80,0x95,0x2d,0x87,0xc6, + 0xc4,0x42,0x5b,0x32,0x9d,0xc7,0xe5,0x53,0x4a,0xf7,0x2b,0x6d,0xa0,0xaf,0x12,0x21,0x97,0x8d,0x8a,0xe1, + 0xb7,0xcc,0x26,0x98,0xb7,0xdf,0x1b,0x6f,0xff,0x30,0x0e,0xff,0xe1,0xbc,0x63,0x49,0xa8,0xd2,0x32,0x78, + 0xd0,0xcd,0x1f,0xe4,0xf3,0x79,0x99,0x54,0xdf,0x26,0xe9,0xe2,0xbc,0x72,0x4a,0xb5,0x95,0x16,0x65,0xfd, + 0x78,0x8e,0x6b,0x17,0x62,0xe8,0x09,0x6c,0x2b,0x99,0x76,0x1a,0xbe,0x05,0xf1,0x06,0xe7,0x67,0x03,0xab, + 0xf7,0x13,0x15,0x03,0x47,0x41,0x4a,0xa7,0xd4,0x80,0xf1,0x48,0x13,0x13,0x1c,0x74,0x7a,0x97,0xcb,0xf9, + 0x3a,0x85,0x27,0x50,0x9e,0xae,0x3a,0xe2,0x60,0x0f,0x22,0x9f,0x6b,0xa2,0x8f,0xf7,0x0e,0x6d,0x33,0xfb, + 0x3a,0x70,0xa7,0x44,0x0d,0x32,0xf1,0xba,0x02,0xf6,0xa2,0x2b,0x80,0xb1,0x53,0x31,0xeb,0x3c,0x98,0xba, + 0x19,0x4e,0xf6,0xa5,0xfb,0x6c,0xa6,0x0e,0xc6,0x49,0xbb,0x68,0x0b,0xaf,0xf5,0xe4,0xb7,0xf8,0x72,0x1c, + 0xea,0x5f,0xa5,0x56,0x24,0x58,0x9f,0xea,0x3a,0x7b,0x13,0xc9,0xeb,0x44,0x63,0x94,0x3a,0x98,0xe2,0xc2, + 0x8c,0xa5,0x36,0x01,0xad,0xb5,0x73,0xd2,0x33,0x60,0xe0,0x64,0xec,0x4a,0xed,0x5c,0x9d,0xd3,0x44,0x74, + 0xa1,0x02,0xf5,0x4e,0x2f,0x40,0xd6,0x49,0x35,0x5b,0xa7,0x18,0x0d,0xe5,0x88,0xcc,0x70,0x76,0x0f,0x13, + 0x3f,0x6b,0x38,0x24,0xe2,0xac,0x0d,0x8d,0x2b,0x03,0x47,0x7a,0x30,0x11,0x8b,0xc5,0xec,0xca,0x6e,0x61, + 0x25,0xfe,0x84,0x2f,0xec,0xe7,0xe9,0x62,0xe0,0x44,0xc6,0x8d,0x7e,0x2d,0x54,0xfd,0xa1,0x11,0x93,0x37, + 0x2a,0xd3,0xce,0x4f,0x10,0xaa,0x45,0xdf,0xb8,0xc5,0x5a,0x31,0x79,0xa3,0x1f,0xaa,0x46,0xc1,0x66,0x10, + 0xdf,0x9d,0x18,0x29,0x2f,0x6a,0x8a,0x0d,0x2b,0x55,0xc2,0x94,0xa1,0xb9,0x76,0x51,0x3b,0xbc,0xad,0x46, + 0xb5,0x50,0xd1,0x37,0x6b,0xc9,0x2f,0xda,0xfa,0xf8,0x43,0x96,0x08,0x6c,0x4d,0xad,0xb1,0xf1,0x81,0x07, + 0x53,0xed,0x11,0x17,0x67,0x07,0xe6,0xb5,0xc5,0xaf,0x55,0xf6,0x83,0x64,0xbb,0x39,0x08,0xf8,0x42,0xbe, + 0x31,0xab,0x31,0x92,0x90,0x3a,0x0f,0x77,0x4b,0xeb,0x2d,0x91,0xb8,0x01,0x9b,0xb6,0xea,0x12,0x86,0x95, + 0xd6,0x85,0xa2,0xa5,0xba,0x88,0x19,0x0e,0x9a,0xdf,0x1c,0x23,0xf6,0xef,0x53,0xb6,0x9a,0x74,0x5c,0x97, + 0x18,0x84,0x09,0xa5,0xc2,0x9f,0xd3,0x70,0xd1,0xfc,0x2c,0xae,0xe8,0xba,0x23,0x65,0xed,0x2a,0xca,0xc3, + 0x7b,0x4f,0xe2,0xfa,0x06,0x97,0xc3,0x9b,0x79,0xb2,0x56,0x5a,0x94,0x15,0xe2,0xfb,0xa5,0x19,0x06,0xbb, + 0x36,0x71,0x37,0x1e,0x06,0x1b,0x1c,0xa4,0xf6,0xe4,0x54,0x3b,0x1d,0xf1,0xc5,0x74,0x63,0x61,0xf5,0x87, + 0x14,0x22,0xfc,0x2a,0x6d,0xb1,0xe6,0x38,0x85,0xd9,0xf5,0xc0,0x5d,0x35,0x3d,0x70,0x1b,0x87,0xc2,0x50, + 0x83,0xa2,0xa9,0xf8,0x12,0xcb,0x6f,0x9c,0xdf,0x43,0x9f,0xff,0x49,0xed,0x91,0xc0,0x77,0xfa,0xf4,0x1a, + 0x4a,0x21,0x12,0x06,0xfb,0xd6,0xad,0xef,0x32,0xfc,0x1b,0xc0,0x8d,0x16,0xe8,0x36,0xa8,0x32,0x3f,0x81, + 0x5d,0xc6,0x91,0x6c,0xcc,0xef,0x52,0xf5,0x0d,0x94,0x29,0xaf,0x4f,0xae,0x7d,0x7f,0x14,0x0e,0x36,0x27, + 0x59,0xd0,0x1f,0x05,0x27,0xdb,0x93,0xed,0xe1,0x42,0xfd,0x1d,0xda,0xef,0x07,0x83,0x4f,0xfa,0xa3,0xdf, + 0xf6,0xaf,0xb7,0x7e,0xb0,0x19,0x9f,0x4c,0x4e,0x0e,0x4f,0x4e,0x26,0xf4,0xed,0xd7,0x6e,0x15,0x76,0x3e, + 0x42,0x8c,0xf6,0xf6,0xdf,0x53,0xe5,0x9d,0x9c,0xec,0xdf,0xf2,0xd8,0x7c,0x19,0x8a,0xe6,0xbb,0x5f,0xdc, + 0xd9,0x15,0x7f,0x29,0x7e,0xd2,0xf7,0x74,0x67,0xa4,0x37,0x5e,0x3f,0x53,0xde,0x02,0x92,0x40,0xf5,0x0b, + 0xcc,0xfc,0x58,0xbc,0x0f,0x9f,0xa6,0xe1,0xd8,0x73,0xe4,0xfe,0xde,0x44,0x59,0x94,0xdd,0x32,0xf3,0x00, + 0x88,0xc0,0xb5,0x62,0x91,0x69,0x14,0x99,0x8a,0xbc,0x46,0x0c,0x6e,0x87,0x22,0xd8,0x72,0xaa,0x8a,0xbe, + 0x7b,0xf9,0xfc,0x19,0x25,0x00,0xb0,0x11,0xc3,0x31,0x33,0x6e,0xcc,0xa3,0xc2,0x29,0x08,0x47,0xb9,0x10, + 0xa5,0x40,0x29,0x06,0x09,0x5f,0xa6,0x4c,0x70,0x44,0x05,0x96,0x3f,0xc9,0xe0,0x9e,0xb5,0x83,0xfb,0xf4, + 0x3c,0x47,0xb5,0xbf,0x6e,0x12,0x97,0x65,0xfd,0xc8,0x1d,0x4f,0xe8,0xf5,0x1b,0x39,0xfa,0x9e,0x82,0x95, + 0x66,0xa3,0x2d,0x5d,0x6a,0x6a,0xf3,0xbb,0x1f,0xa5,0x40,0x42,0x74,0xf1,0xbf,0x76,0x4f,0x1b,0x5f,0x91, + 0xfc,0xf1,0x69,0x63,0xf4,0xdf,0x9a,0x36,0xae,0xaa,0x3d,0x6d,0x6f,0x52,0xcc,0x5c,0x73,0xea,0xa4,0xb0, + 0x33,0x75,0x9c,0xf0,0x67,0xa7,0x8e,0x9b,0x6d,0x4c,0x1d,0xa7,0x38,0x53,0xc7,0xef,0x66,0xea,0xdc,0xb6, + 0x6c,0x29,0xe4,0xf7,0xa5,0x40,0xfd,0xb5,0x0f,0xab,0x03,0x99,0xbc,0x2a,0xe7,0xcb,0x26,0x58,0xfe,0xb1, + 0x15,0x28,0xcc,0x29,0xf3,0xa5,0xb6,0x6a,0x14,0xd3,0x3d,0x6d,0x8d,0x29,0x16,0x86,0x69,0xc9,0x98,0x19, + 0x57,0x4f,0x34,0x14,0xc7,0x5e,0xb4,0x61,0xfa,0x28,0x06,0x92,0x57,0x67,0x70,0x3b,0x94,0xe4,0x62,0x33, + 0xad,0x2d,0x1c,0x61,0xfe,0x59,0xc1,0xb4,0xd3,0x88,0x39,0x57,0x6c,0xe2,0x08,0xf3,0x40,0x36,0x74,0x14, + 0xd3,0xc7,0x42,0xd7,0x84,0xcd,0x25,0x3d,0xec,0x34,0x41,0x95,0x2e,0xd7,0xc6,0x86,0x6c,0x31,0xd9,0x69, + 0x58,0x89,0x66,0x9b,0x96,0x8d,0x6c,0x8b,0xaa,0x0d,0x51,0x8d,0x25,0xe5,0x8e,0x45,0xaa,0xb6,0x71,0x65, + 0x13,0xcb,0x0e,0x0b,0x57,0xf4,0xd5,0xd8,0xbf,0x4a,0x3b,0x34,0x59,0x6c,0x57,0xab,0x6d,0x30,0x71,0x97, + 0x61,0x8c,0x27,0x79,0x9a,0xda,0xe6,0x98,0x32,0x6d,0x62,0x9e,0xaa,0x27,0x4f,0x0c,0x29,0x8c,0xa9,0x65, + 0x6d,0x05,0xda,0x9a,0x22,0xb6,0xcc,0xa5,0x89,0xe2,0xb9,0x86,0x1a,0x60,0x1e,0x1d,0xfe,0x76,0x52,0x7e, + 0xe2,0x8f,0xe9,0xaf,0x77,0xfb,0xde,0xfd,0x93,0xc3,0x68,0xd2,0x0f,0x08,0xd7,0x20,0x31,0x0a,0xf0,0x77, + 0x14,0x7a,0xf4,0xd9,0x9b,0x7c,0x42,0x68,0x67,0x73,0x9b,0x1e,0x6f,0xd3,0xe3,0xed,0xfe,0x46,0x97,0x89, + 0xee,0xdd,0xff,0x37,0x2a,0x12,0x04,0xa3,0x43,0x95,0xe6,0x91,0x37,0x8e,0x0f,0x7e,0x7f,0x70,0xf0,0xeb, + 0xe9,0x64,0x7c,0x72,0x72,0x75,0x72,0x72,0x70,0x72,0x32,0x98,0x7c,0xe2,0xa9,0x9c,0x3e,0x01,0x87,0x79, + 0xfd,0x34,0xef,0x13,0xa6,0x0b,0x83,0x91,0x3c,0x06,0x9e,0x8a,0xf3,0xc8,0x41,0x76,0xde,0x6f,0xf7,0xbc, + 0x7e,0x9e,0x13,0x87,0x66,0x3a,0x77,0x72,0x38,0x0a,0xee,0x1f,0xd2,0xba,0xb4,0xb2,0x9d,0x9c,0x1c,0x22, + 0x67,0xdf,0x1b,0xff,0x76,0x7f,0xf2,0xc9,0x7d,0x1a,0xcf,0x1a,0x45,0xee,0xed,0x3d,0x7a,0xfe,0xf0,0xd5, + 0x2f,0x2f,0xbe,0xea,0x21,0xbd,0x7f,0xff,0x30,0x55,0x4b,0x49,0x87,0x05,0xcf,0x5c,0x1e,0x4f,0xc6,0x87, + 0x6a,0x95,0xe3,0xee,0xd8,0x7b,0xeb,0x59,0x2c,0x7c,0xf8,0xd6,0x1f,0xd0,0x40,0x16,0xaa,0xb9,0xe5,0x29, + 0xa3,0x07,0xe6,0x3e,0xd1,0x57,0x2f,0xe7,0xb9,0xba,0xcc,0x89,0x95,0x56,0x8b,0x5c,0xbd,0xcb,0xd5,0x69, + 0x4e,0x40,0xa4,0xae,0x72,0xf5,0x36,0x57,0xfb,0xb9,0x7a,0x93,0xab,0x87,0xb9,0x7a,0xc0,0x20,0xa8,0xed, + 0x77,0xb5,0x61,0xb4,0xb9,0xf5,0xe0,0x43,0xf0,0x65,0x8e,0x9b,0xe3,0x57,0xf4,0xd7,0xbb,0xb5,0xac,0x86, + 0x5e,0xe8,0xdd,0xa3,0x4d,0x79,0x6b,0xc1,0x8f,0xf7,0xf1,0x08,0xf8,0xa4,0x97,0xdb,0xde,0x6d,0x7a,0x89, + 0x2f,0x56,0xf8,0x70,0x0b,0x1f,0xfe,0x72,0x7c,0x84,0xe7,0x93,0x8c,0x5f,0xbe,0xe0,0xe7,0xca,0xdb,0xaa, + 0xe7,0x34,0xb6,0x5b,0x34,0xc9,0xc4,0x00,0x2f,0xaa,0x0d,0x8a,0x6f,0xa8,0x58,0x30,0xa4,0x01,0xbd,0xee, + 0xfc,0xb4,0xa1,0x9a,0x36,0x7f,0xf9,0x82,0x73,0x3c,0xe1,0x0e,0x43,0xf3,0xa1,0xd9,0xcf,0xaf,0xf2,0x6e, + 0xd2,0x82,0xce,0xe0,0x27,0xb9,0xf8,0x50,0x38,0x61,0x39,0x4b,0x02,0xcf,0x45,0xea,0x05,0xe6,0xf7,0x5f, + 0x36,0xbf,0x5d,0x1e,0xe4,0x59,0x78,0xa8,0x1e,0xe3,0xf5,0xf2,0x60,0x83,0x24,0x7a,0x7d,0x44,0xaf,0xfe, + 0xe0,0x13,0x3a,0x50,0xcb,0x3e,0xf5,0x26,0xcd,0x36,0xf9,0x9c,0x9f,0x07,0x9f,0x04,0x87,0xea,0x6b,0xfa, + 0xaa,0x08,0xae,0x14,0x1d,0xb7,0x13,0x82,0x32,0xca,0xe1,0xbe,0x06,0xa3,0xfd,0x43,0xf5,0x8c,0xa1,0xc2, + 0xdf,0x9c,0x04,0xfb,0xd4,0xe9,0xa7,0x39,0x9b,0x87,0x7d,0x42,0x2f,0xea,0x07,0x7c,0x09,0xd1,0x32,0x8b, + 0x9e,0x0f,0xd5,0x97,0x94,0x70,0x32,0x18,0xff,0x36,0x98,0xf4,0x29,0xeb,0xcf,0x79,0xa7,0xf1,0x8e,0xff, + 0x5d,0x1a,0x7d,0x97,0x7e,0xc0,0x50,0x29,0xa8,0xb5,0x21,0xa2,0x4a,0x7d,0x97,0xba,0xc6,0x89,0x74,0x08, + 0xff,0x88,0x96,0xdf,0x5e,0x2c,0xb3,0x32,0x7c,0xf6,0xf2,0x64,0xd6,0x3f,0x54,0x3f,0x21,0x85,0x9f,0xa9, + 0x1f,0xdf,0xe6,0xd1,0xf8,0x97,0x94,0xce,0x1c,0x75,0x4d,0xd3,0xfb,0xea,0x3d,0x67,0x8b,0xc8,0x92,0x8c, + 0x57,0x09,0xb9,0x1a,0x32,0x2c,0x0c,0x5f,0xee,0x3f,0x8d,0x57,0x2c,0x92,0x1d,0x7b,0x97,0x07,0x7c,0x99, + 0xe2,0x4d,0x20,0x9d,0xc5,0x2b,0x0f,0x1a,0x04,0xa1,0x37,0xd9,0x6c,0x28,0x45,0x3f,0x1b,0xd5,0x50,0x7d, + 0xda,0x70,0x22,0x3c,0x77,0xc9,0xc9,0x75,0x79,0x90,0xce,0x65,0x99,0xf3,0x28,0x1d,0x79,0x54,0x17,0xed, + 0x4a,0x6c,0xca,0x90,0x58,0xc4,0x38,0x12,0x9a,0xdc,0x64,0xc5,0x75,0xae,0xb6,0x5b,0x6e,0xa4,0xd9,0x3a, + 0xa6,0xd1,0x2f,0x6c,0x3f,0xf2,0x77,0x68,0xa5,0xa8,0x24,0x81,0x2c,0x8b,0x1b,0x54,0xe2,0x3a,0xe3,0x2c, + 0x7f,0x4b,0x6d,0x7f,0x83,0x74,0x62,0x9b,0xa6,0xa0,0x61,0xa7,0x84,0xa0,0x35,0xb9,0x37,0x48,0xe7,0x84, + 0x23,0xbc,0x7e,0x41,0xed,0xd3,0xf0,0x6f,0x9b,0x22,0xb7,0x69,0x93,0xab,0x5f,0x51,0xe8,0x3a,0x79,0xbb, + 0x0a,0x91,0x4f,0xf0,0x77,0x38,0xd5,0xfb,0x71,0xad,0xdb,0xa5,0x4e,0xad,0xd1,0x29,0x9a,0x5d,0xe9,0x50, + 0xc2,0x09,0xba,0x0b,0x45,0x3c,0x4b,0x73,0x69,0x7f,0x8d,0xf6,0xeb,0x2a,0xdd,0x56,0x39,0x17,0x37,0x29, + 0x6d,0xac,0x75,0x1b,0x4b,0xdd,0x86,0xf1,0x59,0x94,0xf8,0xcb,0x76,0x53,0x94,0x20,0x93,0x0e,0xe3,0x87, + 0x6f,0xf0,0xde,0x68,0x25,0xd5,0x35,0x2e,0xe1,0x1e,0x7f,0x34,0x1d,0x60,0xea,0x10,0x8a,0x0e,0x94,0x8e, + 0xbc,0xd1,0x04,0xc0,0x09,0x35,0x38,0xbb,0x89,0xfa,0x9d,0x30,0x03,0x15,0x23,0x8e,0x01,0x60,0x07,0xf9, + 0xbd,0xb9,0xe1,0xfe,0x36,0x57,0x35,0x2b,0x11,0xea,0x4b,0xb5,0x0f,0x5d,0xa3,0xb9,0x77,0xa8,0xb9,0xc0, + 0x16,0x7b,0xf7,0x33,0x60,0xc5,0x77,0xaf,0xe2,0xde,0xd0,0xf2,0x22,0x56,0x86,0x9e,0x68,0x65,0x2e,0xa5, + 0x43,0xeb,0xd6,0xf7,0x97,0x79,0xb0,0xd7,0xdd,0xf2,0x6d,0xfc,0xec,0xef,0x1b,0x0f,0x1c,0x3f,0xc5,0xcb, + 0x5e,0xd4,0x6b,0x45,0x56,0xd7,0x57,0x0a,0x72,0x89,0xb9,0xcf,0x0e,0x64,0x75,0xc4,0x46,0x7b,0xa1,0x69, + 0x2b,0xcf,0x6b,0xf3,0xf8,0x81,0xa9,0x74,0x1b,0xe0,0x0e,0xd4,0x77,0xf3,0xa0,0xd5,0x4b,0x6e,0xcb,0x3b, + 0x15,0x77,0x2f,0x50,0x09,0xca,0x7b,0x23,0x2a,0x26,0x09,0xbd,0x90,0x1e,0xf5,0xd5,0x9b,0x54,0x78,0xbb, + 0xef,0x73,0x0c,0x06,0xb1,0xa3,0x1f,0x79,0xa7,0x99,0x4f,0xdf,0xb1,0x07,0xe8,0x07,0x42,0x22,0x02,0x01, + 0x6f,0x98,0xb9,0x37,0x9a,0x50,0xa0,0xef,0x7b,0x3d,0xaf,0x1f,0xc3,0xda,0xd8,0x6b,0xf6,0xdd,0x5c,0xaa, + 0x52,0xa3,0xcd,0x09,0x08,0x9b,0xef,0x84,0x2f,0xbd,0xc0,0x72,0x45,0x6c,0xb6,0x53,0xdb,0x84,0xd6,0x78, + 0x20,0x27,0x0c,0x6b,0xb7,0x0f,0xbd,0xc7,0x37,0x4d,0xb9,0x33,0x08,0x5a,0x62,0xd9,0xef,0x32,0x07,0xc1, + 0x66,0xe3,0xa1,0x1d,0xec,0x69,0x8d,0x07,0x8a,0x75,0x72,0x50,0x7f,0xc4,0xab,0x47,0xdb,0x5a,0x3e,0xce, + 0x63,0xec,0xea,0xfa,0x2b,0xbf,0x7b,0xc3,0x7f,0xad,0x64,0x06,0xc4,0x09,0x8e,0xf2,0x9a,0xa6,0x24,0x5e, + 0x9f,0xa8,0xca,0x60,0x74,0x9a,0xca,0x93,0xa2,0x2d,0xd4,0x67,0x3e,0xdc,0xeb,0xfb,0x52,0x3f,0xfa,0x3e, + 0xf2,0x42,0x9d,0x93,0xa6,0x37,0x3c,0xfd,0x87,0xcd,0x1c,0x23,0x29,0x40,0xf8,0x33,0x77,0x9a,0x3d,0x81, + 0xa2,0x38,0x92,0x6c,0xfb,0xe0,0x5e,0x1b,0x93,0x4d,0x49,0xd3,0x08,0xc9,0x03,0xdd,0xaf,0x91,0x2f,0x75, + 0xa1,0x19,0xe2,0x10,0x3a,0x8c,0x61,0xa9,0x3a,0x8d,0x14,0xf7,0xf7,0x2f,0xa9,0x62,0x5f,0x96,0x5c,0xfa, + 0xeb,0x85,0x79,0xc0,0x0d,0xa5,0x11,0x8d,0x84,0xb2,0xd2,0xe3,0x25,0x57,0xe2,0x36,0x12,0x5c,0x53,0x86, + 0x7b,0x47,0x8c,0x2e,0xa9,0x5f,0xd4,0x01,0x1b,0x6e,0x7b,0x4c,0xf9,0x09,0xe9,0x8a,0xae,0x1c,0xe5,0xa2, + 0x09,0x68,0x64,0x33,0xee,0x5f,0xe8,0x53,0x60,0xca,0xd4,0xe9,0x94,0xda,0x3f,0x86,0x1e,0x81,0x94,0xb7, + 0xf0,0xb5,0x3f,0x65,0x38,0xf4,0x3e,0x0e,0x5a,0x04,0xd3,0xfd,0x93,0xa0,0xb2,0xb3,0xdc,0xce,0x62,0xf9, + 0x54,0x66,0x67,0xd2,0x10,0xba,0xa1,0xb9,0x7a,0xdc,0xf9,0xfc,0x63,0x40,0x1c,0x20,0xe8,0xe8,0x84,0xdc, + 0x88,0x55,0x5a,0xf8,0x8a,0xf0,0x1a,0xfb,0x8f,0xc7,0xe9,0x25,0x51,0x83,0xe1,0x77,0x5b,0x8f,0x0b,0x01, + 0x90,0x60,0xc7,0x4d,0xc7,0xd2,0x9e,0xcc,0x0a,0x3a,0x05,0xdd,0x3e,0xb5,0x8e,0xf2,0x91,0xe9,0x65,0xa8, + 0x3f,0x40,0x07,0x6d,0x74,0x96,0x86,0xba,0x57,0x6a,0x19,0xb5,0xb6,0xb5,0xcc,0xcf,0x10,0xe8,0xba,0xfb, + 0x9b,0xb6,0x1a,0x87,0xc7,0x12,0xc9,0xc3,0x13,0xb4,0xe4,0x99,0x19,0xca,0x9d,0x15,0xcf,0xc8,0x32,0x18, + 0x4e,0x29,0x03,0x9d,0x76,0x00,0xab,0x46,0x3d,0x5a,0xcf,0xc4,0x5e,0x52,0x0e,0xbd,0xfe,0x3c,0x50,0xb2, + 0x12,0xd2,0xbe,0xf2,0xcc,0xfe,0xd1,0xb3,0xbd,0x56,0xf3,0x5a,0xb2,0xe2,0x97,0x9b,0x0d,0x14,0xa6,0x65, + 0x1d,0xce,0x96,0x6b,0x3a,0x9d,0xbc,0xe6,0xd5,0x95,0x67,0xcc,0x05,0xeb,0x85,0xd8,0x7b,0x9d,0x35,0xc5, + 0x84,0x84,0x49,0x3b,0x71,0xbf,0xbd,0x85,0x65,0x1a,0x71,0x87,0x31,0xbe,0x14,0x0d,0x06,0xe9,0xae,0x43, + 0x22,0x01,0x78,0x4a,0x74,0x5b,0x72,0x70,0xe7,0xb7,0xcc,0xf3,0xbc,0xbf,0x0a,0x4b,0x74,0x75,0x56,0xb0, + 0x25,0xc6,0xf2,0x05,0xd1,0x53,0x71,0x97,0x4b,0x0a,0x10,0xb2,0xda,0x01,0x17,0x84,0x95,0xc4,0x15,0x21, + 0x5f,0x45,0x54,0x7b,0x2d,0x27,0x0d,0x7f,0x2d,0xe0,0x70,0xe7,0xcb,0xe4,0x49,0x32,0xaf,0x9e,0xaf,0x92, + 0x0c,0x59,0x92,0x5c,0x35,0xa6,0x22,0x2c,0x53,0xd5,0x92,0x85,0x86,0x3f,0x54,0xca,0x11,0x1e,0x7c,0x9b, + 0x13,0xff,0x30,0x5b,0x4f,0xbb,0x55,0x6e,0x38,0x96,0x23,0xef,0x72,0x13,0x20,0xcb,0x84,0xfc,0x0b,0xd8, + 0x23,0xc4,0xe0,0x75,0x9e,0x12,0x98,0x28,0xcc,0xc8,0x3f,0xba,0x49,0xd4,0x1e,0x1c,0xbd,0x00,0xda,0xf9, + 0xcc,0x06,0xfc,0x43,0xb2,0xae,0xcc,0x4e,0x50,0xc4,0xbb,0xa4,0x99,0x76,0xe7,0xa1,0xec,0xc5,0x98,0x44, + 0x17,0xea,0xfb,0xd5,0x08,0x3b,0xb6,0x82,0x67,0x54,0x08,0x8c,0xbe,0xb7,0x2c,0xdf,0xc9,0xd5,0xfe,0xe9, + 0xa4,0xbf,0x39,0x21,0x0a,0x3b,0x98,0x7c,0x32,0x3a,0x09,0xc0,0xee,0x45,0xf7,0x37,0xbf,0x99,0x1e,0xd0, + 0xeb,0x89,0x7f,0xa8,0xbe,0xd3,0x25,0xc6,0xc4,0xd6,0x11,0x73,0x77,0xba,0x3f,0x41,0xd1,0x09,0x38,0x43, + 0xa2,0xae,0x5b,0x89,0x9b,0x93,0xf1,0x6d,0xa2,0xef,0x6f,0x4f,0xe8,0xc1,0xa3,0x07,0x0f,0x0f,0x44,0x06, + 0xe3,0xa7,0x9d,0x77,0x12,0x7c,0x42,0xd5,0x12,0xe5,0xfe,0x0d,0x48,0x9d,0x72,0x1a,0xde,0xf9,0x2b,0x9c, + 0x19,0x85,0x5f,0x88,0x9a,0x45,0x78,0x7c,0x57,0xc9,0x7c,0xdf,0xbd,0xa3,0xd6,0xab,0xf0,0xee,0xdf,0x88, + 0x43,0x9e,0x57,0xe1,0xdd,0xbf,0xaa,0x02,0xb7,0x27,0xe1,0xdd,0x2f,0x14,0xbc,0x60,0x87,0x9f,0x1e,0x29, + 0xb9,0xc0,0x0c,0xc7,0x7f,0x53,0x9f,0x7e,0x4e,0x4c,0xc8,0xdf,0xf3,0x2e,0xbf,0x5c,0x40,0x39,0xfd,0x8a, + 0x80,0xc7,0xf1,0x99,0x35,0x24,0xb6,0xe9,0xd7,0x1c,0xc2,0x20,0x82,0x07,0xb3,0xa9,0xf1,0x02,0x00,0x89, + 0x17,0xb1,0x88,0x10,0x87,0xd0,0xa8,0xe0,0x6f,0x36,0x8f,0x7e,0x7f,0x24,0x17,0x8e,0x9c,0x05,0x71,0xc9, + 0xc2,0xbf,0xe7,0x7e,0x13,0x37,0xf4,0x08,0xe3,0xf4,0x74,0xca,0x74,0x5d,0x60,0x91,0x5e,0xf1,0x07,0x0f, + 0xc2,0xd5,0x62,0xc9,0x25,0xf6,0x4c,0x06,0x4a,0xf8,0x1e,0x1a,0xba,0x8a,0x7d,0x87,0x36,0xbe,0x71,0x8a, + 0x7c,0x8c,0x97,0xcd,0x4f,0xf4,0x2e,0x1f,0x20,0x2f,0x68,0x7c,0x41,0x82,0x7c,0xe2,0xb9,0xc3,0xa7,0xdb, + 0xe2,0x15,0xea,0x36,0x08,0x23,0xc9,0xd5,0xbb,0x75,0xcb,0xf4,0x50,0xbe,0x71,0x9f,0x8f,0x50,0x5f,0x3a, + 0x9b,0x2d,0x93,0x3f,0x54,0xec,0x18,0x72,0x05,0x5e,0x9f,0x3f,0x52,0xea,0x0e,0xe0,0xff,0x17,0x5a,0x08, + 0xe2,0x1a,0xdb,0xfe,0x58,0xe0,0x06,0xae,0x8e,0x6a,0xd7,0xb1,0xb0,0xa7,0x0b,0x59,0x58,0xd5,0xc0,0x10, + 0x84,0x20,0x76,0x74,0x90,0x4c,0x75,0x1c,0x3e,0xaf,0xb6,0x16,0xaa,0x6b,0x3a,0xa3,0x9a,0x32,0xaa,0xe9, + 0x36,0xe4,0x5f,0xb4,0xdf,0xfa,0x60,0xbe,0xeb,0x5a,0x71,0xf6,0x39,0x94,0x34,0x1c,0x1d,0xd5,0xea,0x88, + 0xb8,0x0c,0x1b,0x09,0xa9,0x13,0x6a,0x9a,0x29,0x78,0x4f,0x76,0x8e,0x3e,0xed,0x29,0x9d,0xdf,0x0b,0x74, + 0x9f,0xa7,0xcb,0x3c,0x7e,0x83,0xb8,0xba,0xff,0x9a,0xef,0x7a,0x3d,0xcd,0xad,0xb3,0x4c,0x7e,0x85,0x24, + 0x92,0xce,0x44,0xfc,0x6c,0x36,0xbf,0xea,0x44,0x2b,0xbc,0x2c,0xa3,0x5f,0x60,0x50,0x6d,0x14,0xd3,0x3d, + 0xfb,0xe1,0x21,0x71,0x0c,0xc6,0x83,0x3b,0xee,0x19,0xbf,0x49,0x32,0x44,0xf0,0x6b,0xe6,0xd6,0x52,0x47, + 0x9b,0xcf,0x72,0x1c,0xd1,0xa5,0xcf,0x8a,0x16,0xbf,0xe4,0x6c,0x1a,0x6d,0xd3,0x03,0x1b,0xbd,0xab,0x81, + 0x40,0x37,0x9b,0x87,0xd9,0x50,0xfb,0x46,0x7e,0x77,0x96,0xd8,0x40,0x8c,0x1d,0x0b,0xb9,0x67,0xcd,0x78, + 0xb5,0x7f,0xcc,0x6c,0x9a,0x3c,0x9e,0x45,0xda,0x43,0x7d,0x3b,0xe0,0x20,0x7c,0x74,0xd3,0x2a,0xfa,0xae, + 0x50,0xe8,0xe4,0xe4,0xcc,0xeb,0x7b,0x33,0xc2,0xe1,0x73,0x08,0xe0,0x08,0xe8,0x2b,0x04,0xd4,0xa5,0x49, + 0x7e,0xc7,0x8e,0xd9,0xa6,0x10,0xfe,0xe1,0xd8,0x53,0x57,0x69,0x75,0xae,0xe2,0xab,0x38,0xad,0x14,0x1b, + 0x06,0x28,0xf6,0x81,0xae,0x95,0xe7,0xf9,0x1a,0x48,0xb1,0xe3,0x52,0xc5,0x71,0xe9,0xd5,0x15,0xa1,0xd5, + 0x44,0xbd,0x83,0xd4,0x4f,0x23,0x1b,0x45,0xcc,0x59,0x0e,0x6f,0x87,0xec,0x89,0x45,0xc9,0x08,0x8c,0x07, + 0x30,0xeb,0x52,0x9b,0xdd,0x85,0x12,0x1b,0x23,0x21,0xea,0xd9,0x09,0x5a,0x9a,0xad,0xe1,0x98,0xf1,0x6c, + 0xbd,0x58,0x40,0x4c,0xa8,0x67,0xa1,0x0e,0xba,0xe2,0x69,0x3f,0x35,0x38,0x13,0xf4,0xe9,0x40,0xc3,0xda, + 0x60,0x68,0x41,0x9f,0x47,0x28,0x41,0x82,0x5b,0x63,0x96,0x4e,0x89,0xdf,0x51,0x56,0x60,0xef,0xac,0x87, + 0x50,0x3a,0x10,0xfe,0xc9,0x09,0xa1,0x7c,0xfa,0x53,0xd7,0xda,0xfa,0x40,0x6d,0xf8,0x0f,0xdb,0x92,0x1f, + 0x11,0x45,0xdc,0x68,0x35,0xca,0x1e,0x83,0x09,0x2f,0x22,0xf6,0x71,0xb4,0x77,0x1c,0xa8,0xd3,0x5c,0xaf, + 0x27,0x1b,0x88,0x41,0xc2,0xed,0x44,0x6c,0x19,0x66,0xf7,0xde,0xe5,0xae,0x73,0x96,0x77,0x39,0xdb,0xe1, + 0xe2,0x26,0xe7,0x3c,0x8f,0x92,0x1a,0xaa,0x4f,0xf1,0x66,0xce,0x7a,0x80,0x93,0x3a,0x43,0x8a,0x73,0x92, + 0x73,0xe2,0x15,0x12,0x5b,0x47,0x35,0x7f,0xb8,0xc8,0x01,0xda,0x49,0xc7,0x46,0x78,0x26,0x1b,0x61,0xd1, + 0xce,0xd0,0x16,0xd3,0x50,0x9e,0x77,0x3b,0x79,0xf2,0xb2,0x6a,0x67,0xba,0x44,0x17,0x68,0x25,0xd2,0x8b, + 0xb4,0x42,0x40,0x44,0x6d,0x94,0x4b,0xe4,0x29,0x2b,0x9f,0xec,0x1d,0xb3,0xae,0x27,0x62,0x9c,0x63,0x77, + 0xfc,0x7c,0x4e,0xb9,0xb8,0x9b,0x0a,0xf3,0x05,0x3a,0xf5,0x78,0xc7,0x32,0xa3,0x3d,0xc9,0xf4,0xb6,0xec, + 0xe3,0x06,0x0f,0x6a,0xad,0xeb,0x33,0xb9,0x5b,0xf0,0x5d,0xab,0xe9,0xc2,0xf8,0x11,0x60,0xfd,0x3b,0x55, + 0xd6,0xf1,0xeb,0x45,0x93,0x6f,0x19,0xe8,0xbb,0x37,0x5c,0x37,0x14,0x78,0xad,0x78,0xc5,0x5a,0x17,0xb2, + 0x94,0xcc,0xaa,0xfe,0x69,0x14,0xd7,0x41,0xed,0xd3,0xfb,0x11,0x71,0x3d,0x31,0x42,0xc1,0x2c,0x4d,0x56, + 0x6c,0x72,0x1a,0x57,0x89,0x90,0x6a,0x86,0xa6,0x8c,0xf8,0xda,0x17,0xb9,0x1d,0x03,0x4c,0xb7,0xa2,0xe9, + 0xfd,0x28,0x1d,0x4e,0xa9,0x40,0x32,0x60,0x2f,0x2b,0xfc,0xc3,0xfe,0xd6,0x59,0x32,0x81,0xfe,0x0f,0x4d, + 0xf6,0x08,0x13,0x98,0x72,0xb3,0x07,0xc7,0xfc,0x9d,0xb9,0x23,0xef,0xac,0x00,0x85,0x57,0x8e,0x98,0xb0, + 0x2a,0x60,0xa1,0x2e,0x0f,0x34,0x7e,0x9a,0xee,0xbd,0x23,0xf1,0x8c,0xe0,0xad,0x38,0x17,0xc7,0xc1,0xed, + 0xcc,0x77,0xcc,0xf9,0x54,0xa3,0x23,0x32,0x83,0x34,0xa9,0xc6,0x39,0x02,0x3c,0x9d,0x60,0x11,0xa1,0x8c, + 0x5e,0x4b,0x65,0x68,0xc9,0x92,0x41,0x4d,0x5f,0x32,0xb4,0xad,0x71,0xe3,0xdc,0xa2,0x2a,0xf9,0xc3,0x92, + 0x26,0xa5,0x1a,0xb2,0x90,0x2f,0x25,0x04,0x4e,0x2c,0xc9,0x83,0xdc,0xcf,0xad,0x3a,0x1b,0xec,0x52,0xf3, + 0xd6,0x9d,0xf8,0x2c,0x7a,0x99,0x8f,0x57,0x08,0x11,0xc5,0xbf,0x0d,0xf9,0x37,0x11,0x70,0x27,0xe5,0xc9, + 0xc9,0x4b,0x22,0xdd,0x02,0xff,0xde,0xa1,0xd7,0x5f,0x19,0x41,0x78,0x40,0x3b,0x3e,0x05,0x2f,0x0d,0xeb, + 0x2c,0x23,0xda,0x9e,0xb9,0x32,0x6d,0x06,0x0f,0x03,0x69,0xd6,0x12,0x56,0x51,0x7f,0x56,0xcc,0xff,0x69, + 0xbf,0x93,0x98,0xb8,0x15,0xb4,0x3a,0xa2,0xda,0x01,0xd5,0x21,0xc4,0xe8,0xd4,0x76,0x29,0x2d,0x1f,0x1c, + 0xdc,0x3f,0x5c,0x10,0x8b,0x41,0xa7,0xbe,0x9b,0xe5,0x64,0xfc,0xf0,0xd1,0x83,0x57,0x0f,0x4e,0xc6,0x75, + 0xce,0xc9,0xc4,0xe6,0x84,0x50,0xd9,0x5f,0x29,0x71,0xbb,0x0c,0x7d,0x16,0xed,0xb3,0x89,0xc3,0xe8,0x9d, + 0xc7,0x72,0x50,0xf2,0x03,0x94,0x20,0x3c,0xc8,0x5f,0x08,0xe6,0x8d,0x8e,0xce,0xc1,0xb9,0xe9,0x6f,0x15, + 0x9d,0xab,0x82,0x2a,0x5a,0x1e,0xcc,0x11,0x89,0xda,0xda,0x21,0x5d,0x46,0x8e,0x32,0xc0,0x3d,0x91,0x01, + 0x40,0x0d,0xf3,0x92,0x27,0x7f,0x99,0x9b,0x88,0x5a,0xc6,0x82,0xcc,0x55,0x1d,0x38,0x38,0x79,0x7b,0x37, + 0x91,0x22,0x17,0x0c,0xbe,0x89,0x0e,0xcf,0x88,0x48,0x15,0x5a,0x05,0x51,0x87,0x47,0xd0,0x0e,0x4b,0xea, + 0x5d,0xf8,0xa9,0x82,0xad,0x6d,0xe6,0x5f,0xf4,0xef,0x12,0x8b,0xa7,0x51,0xfd,0x16,0x7a,0x5d,0xf3,0x56, + 0x9b,0x0b,0xb7,0xcd,0xc9,0x7d,0x69,0x6f,0xc1,0xed,0x65,0xfe,0xa2,0x7f,0xc7,0x2d,0x8e,0xfc,0xd0,0x90, + 0x66,0xf7,0xb4,0xfe,0x5a,0x54,0x0e,0xdf,0x21,0xe3,0x3b,0xdc,0x2d,0x9b,0x80,0x86,0xb6,0x00,0xf2,0x9f, + 0xda,0xfc,0x53,0xc9,0x7f,0x2a,0xed,0x9e,0x45,0xcb,0x61,0xe6,0x9f,0x3a,0xe5,0x68,0x02,0x4f,0xc7,0xc7, + 0x13,0x75,0xc6,0x6c,0xa9,0x5b,0xc7,0x55,0x3b,0x56,0x4a,0x62,0x2b,0x8d,0xa5,0x52,0x1b,0xf9,0xef,0xda, + 0x78,0xfc,0x4b,0x50,0x15,0x73,0x1e,0x21,0x36,0x0b,0x76,0x59,0xb8,0xdc,0x52,0x93,0x89,0xdb,0x55,0x67, + 0x57,0x0d,0xf7,0xb0,0x19,0x74,0xb5,0x65,0xce,0xc6,0x1f,0xb9,0x4d,0x28,0x28,0x61,0x18,0x64,0x7e,0xde, + 0xe8,0xb0,0xf6,0x1f,0x69,0x02,0x71,0x62,0x3f,0xd5,0x36,0x98,0x6b,0xec,0xc5,0x97,0x74,0x8a,0x13,0xda, + 0x40,0x67,0x32,0x3f,0x6d,0x16,0x86,0xef,0xf3,0xa5,0x2a,0xb6,0x5b,0x5f,0xac,0xa6,0x82,0xeb,0x9d,0x50, + 0x0b,0x59,0x64,0xdd,0x14,0xb2,0xd5,0x45,0x5d,0x27,0x73,0xff,0x82,0x51,0x68,0xff,0x66,0xe2,0x3a,0xbc, + 0xa0,0x5e,0xa8,0x35,0x3f,0xe6,0xe2,0x00,0xba,0xe0,0x0b,0x72,0x33,0xcc,0x65,0x34,0x65,0x6f,0x0d,0x7b, + 0x7b,0x29,0xfb,0xe0,0x91,0xee,0x6b,0x18,0x5e,0xf1,0xa6,0x16,0xc9,0xd4,0x1c,0x3b,0xfe,0x68,0x38,0xbb, + 0x37,0x1f,0xce,0x8c,0x92,0xdf,0xb9,0x29,0x30,0x9e,0x4d,0x86,0x2b,0x6a,0xf4,0x00,0xd6,0x72,0xe7,0x18, + 0x93,0x01,0xa0,0xdb,0x9e,0x77,0x1b,0xf3,0xc6,0x77,0x54,0xe7,0xe3,0xbb,0x93,0x5b,0xb7,0xb4,0x42,0x27, + 0x5e,0x94,0x4e,0xfe,0xd4,0x4d,0xfe,0xd4,0x26,0x7f,0xe6,0x26,0x7f,0xa6,0xad,0x09,0x2f,0xb9,0x9a,0xcd, + 0x06,0x19,0xf1,0xf7,0x33,0xfa,0xeb,0x79,0xea,0x22,0xf2,0x62,0xe3,0xe2,0x1a,0xee,0x9b,0xa5,0x86,0xe3, + 0xc9,0xc8,0xec,0x91,0x47,0x09,0x5c,0xea,0x3e,0x4b,0xae,0xe0,0x12,0xb5,0xfc,0x3a,0x2f,0xbe,0xa5,0x5c, + 0x61,0xf7,0xd7,0xe1,0x8a,0x46,0xa4,0x75,0xd7,0x51,0x89,0x62,0x12,0x3b,0xfc,0x3e,0xf1,0x2f,0x69,0x1b, + 0x6d,0xb7,0x4b,0x56,0x7d,0xe6,0x45,0x66,0x05,0x56,0x42,0xa0,0xee,0x89,0x13,0x66,0x2d,0x5c,0x29,0x50, + 0xb7,0x82,0x47,0xfa,0x88,0xe3,0x22,0xb4,0x90,0x7d,0x06,0x5b,0x32,0xbe,0xf2,0xa6,0x37,0x78,0xb4,0xc9, + 0x60,0x93,0x7d,0xc5,0xb8,0x28,0x57,0xec,0xbb,0x85,0x50,0x50,0x6b,0xdf,0xbd,0x35,0x26,0xe3,0xfb,0xe6, + 0xe1,0x8d,0x7e,0x00,0xec,0x5c,0xda,0xf3,0x6d,0xdf,0x3a,0x76,0xbe,0x0c,0x08,0xa4,0xa7,0x7a,0xbb,0xef, + 0xc3,0x8d,0xab,0xf3,0xbc,0x74,0x9e,0xe7,0xce,0xb3,0xff,0x26,0xda,0x77,0x31,0x96,0x22,0x5c,0x78,0xef, + 0x88,0x40,0xff,0xb2,0x1f,0xbd,0x51,0x8d,0xca,0xdf,0x36,0xce,0xfd,0x23,0x75,0x09,0x84,0x73,0x19,0x6c, + 0x2f,0x59,0x1c,0xf9,0x16,0x9c,0x41,0x04,0xcb,0x71,0x8b,0x49,0xdf,0xd6,0xc8,0xf4,0x2d,0xeb,0x98,0x56, + 0xa2,0xa6,0xbc,0x83,0x6a,0x2b,0x63,0x22,0xbb,0x2d,0x7c,0x96,0x11,0x49,0x94,0x90,0xf3,0x5c,0x39,0xd7, + 0x10,0x8d,0xd3,0xcf,0x91,0xac,0xb8,0xc7,0x60,0x87,0x50,0x65,0xe7,0x44,0x54,0x5d,0x20,0x71,0x03,0xa4, + 0x74,0xe6,0x7d,0x3f,0x70,0xe9,0xaf,0x6a,0x07,0x75,0x87,0x16,0x73,0x97,0x1a,0x3d,0x39,0xc7,0x62,0x0c, + 0xeb,0x57,0xd9,0xb1,0x22,0x20,0x2d,0x37,0x9b,0x2b,0xdc,0x71,0x0e,0x9f,0x01,0xe4,0xe1,0x32,0x9b,0xe6, + 0x0e,0x51,0xae,0x9a,0x01,0x29,0x6a,0x65,0x67,0x42,0x7a,0x42,0xda,0x56,0x2e,0x65,0x6b,0x84,0x97,0x88, + 0x8f,0xfa,0x63,0x6e,0x74,0x27,0x33,0xad,0x33,0x29,0x4f,0x91,0xfc,0xd8,0x43,0xf4,0xa7,0x5c,0xc9,0x32, + 0xf2,0x0e,0x00,0x2d,0x62,0x63,0xe8,0x41,0xb9,0x5c,0xcb,0x13,0xbf,0x4b,0xb8,0xdb,0x29,0x1d,0x90,0x90, + 0x28,0x52,0x8f,0x41,0xcf,0xed,0x69,0x07,0xfa,0xec,0x51,0x71,0x15,0xcd,0x03,0x51,0x66,0x36,0xd7,0xd1, + 0x48,0x5e,0x89,0xf2,0xf5,0xaa,0x29,0x4f,0xa5,0x41,0x42,0x6c,0x77,0xf8,0x3a,0xbe,0x8c,0xdd,0xbc,0x8d, + 0x4c,0xd4,0x67,0xc4,0xa8,0x0d,0xb8,0x41,0x1a,0xfa,0x19,0x7b,0x82,0xe7,0x40,0x94,0x66,0x22,0x56,0x1a, + 0x8f,0x2d,0x2c,0x81,0x0f,0x7c,0x36,0x8f,0x16,0x39,0xed,0x79,0x7f,0xae,0x50,0xc7,0x9c,0x15,0x03,0x69, + 0xfc,0x17,0xd1,0x5c,0xd9,0x8b,0xc6,0x0b,0x5c,0xaa,0x41,0x76,0x87,0xea,0x2f,0x40,0x2a,0xb3,0xa9,0xc1, + 0xbc,0xe6,0x2b,0x8e,0x02,0x66,0x2c,0xe6,0x0e,0x63,0x81,0x1b,0xc9,0xce,0xe8,0xc5,0x56,0x58,0x66,0xdd, + 0x5d,0xba,0x51,0x1a,0xed,0xad,0xaa,0x83,0x82,0x13,0xe3,0x87,0x26,0xe1,0x08,0x9e,0xf0,0xd2,0xa3,0x71, + 0x94,0x53,0x1b,0x25,0x4a,0x5c,0x12,0x41,0x59,0x2d,0x25,0x9f,0x56,0x46,0x09,0x4b,0xba,0x35,0x1e,0x35, + 0x69,0x1c,0xac,0x6b,0xc7,0x42,0x3b,0x89,0x8a,0x3d,0x0f,0xc2,0x79,0x7d,0x17,0x4a,0x5f,0xff,0x0e,0x63, + 0xfe,0x8e,0x48,0xa5,0xce,0x9d,0xad,0x3e,0x7f,0x2b,0x5c,0x9a,0x26,0xb8,0x64,0xac,0xe4,0x92,0x51,0xab, + 0xb6,0x84,0xd5,0x56,0x1b,0x59,0x77,0x5c,0xe1,0x8a,0x2e,0xb3,0xbe,0x7e,0x34,0xb1,0x13,0xdb,0x17,0xba, + 0x46,0x9b,0x49,0xdf,0x4b,0xc2,0xa1,0x2e,0x3a,0x75,0xe9,0x2e,0xd6,0x25,0x0a,0x80,0x49,0xe7,0x2a,0x2f, + 0x99,0x5f,0xe7,0xd5,0xf8,0x26,0xe1,0x45,0xa6,0xb9,0x1c,0x19,0x08,0xd8,0x6c,0x0a,0xea,0x2b,0xc3,0x8c, + 0x54,0x49,0x10,0xc0,0x4f,0x54,0x94,0xba,0x5f,0x48,0xf7,0xcd,0x47,0x3d,0x8a,0xf9,0x36,0x08,0x0b,0x6a, + 0x91,0x76,0xe3,0x9e,0x03,0x6b,0x30,0x11,0xda,0xa9,0x66,0xef,0xfd,0xbc,0x6a,0xc3,0x24,0xa1,0x11,0x5f, + 0xcf,0x58,0xa0,0x57,0x1c,0x5a,0x0f,0x00,0x6e,0x24,0xb7,0x94,0x80,0xa0,0xb0,0x39,0xac,0x35,0xb6,0x7e, + 0xed,0xe4,0x86,0xe7,0x26,0xe3,0xe1,0xfc,0x0a,0x1d,0x60,0xee,0x7a,0xd5,0xec,0x3a,0x2c,0x32,0x68,0xc2, + 0xac,0x8c,0x7d,0x3e,0x80,0x85,0x02,0x3b,0xfd,0xe2,0x28,0xe2,0xb2,0xfc,0xc7,0xa2,0x4f,0x12,0xc9,0x57, + 0x91,0x0b,0x6e,0x36,0xb7,0x3d,0x2d,0x3f,0xf0,0x6e,0x0f,0xa9,0xd9,0x46,0xb0,0xb7,0xe6,0x3b,0x9b,0x11, + 0x8c,0xcf,0x27,0xd1,0x5c,0x8c,0xad,0xeb,0x3e,0x0a,0xde,0x98,0xf3,0xd6,0x91,0xb0,0x6c,0xa9,0x1c,0xed, + 0xea,0x62,0xb8,0x1e,0x65,0x00,0x3a,0xa2,0xbc,0xe6,0x2a,0x37,0x19,0x11,0x67,0x2c,0xeb,0xd0,0xab,0xcf, + 0xc7,0xb9,0x65,0xdb,0x26,0x2a,0x71,0xdc,0x63,0x8d,0x77,0x7c,0x62,0x51,0x0e,0x04,0x5f,0xbe,0x0b,0x6d, + 0x10,0x83,0x50,0x7a,0x9e,0xbc,0xb1,0x3b,0x85,0xbd,0x29,0x34,0xad,0xeb,0x3e,0x62,0x6a,0x95,0xad,0x3f, + 0x3a,0x26,0x72,0xab,0xd9,0x5e,0x26,0x0e,0xb7,0x71,0x40,0x35,0xa4,0xfc,0x26,0xb8,0xd8,0xb3,0xcc,0xbd, + 0x3a,0x12,0x8f,0x26,0x40,0x6c,0x69,0x8d,0xb3,0x56,0xb5,0x3b,0x0e,0x98,0x76,0x07,0x76,0x37,0x35,0x9c, + 0x7f,0x54,0xd1,0x14,0x81,0x1f,0xe5,0x0a,0x67,0xe4,0x23,0xd4,0xa6,0x57,0x73,0x41,0x85,0xb1,0x55,0x61, + 0xb4,0x6a,0x12,0x46,0x55,0xf8,0x73,0xce,0x6e,0xfd,0xd8,0xe5,0xb9,0xf4,0x7a,0x44,0x23,0x86,0x38,0x4f, + 0x7b,0x7c,0xdb,0x2b,0x79,0x0e,0xf6,0xd8,0x77,0x9f,0xdf,0x96,0x9e,0x08,0x94,0x5e,0xe6,0xa3,0x5f,0x53, + 0xff,0x32,0x0f,0xc2,0x6f,0x52,0xe6,0xd6,0x6b,0x66,0xc1,0x3a,0x7f,0x53,0x0e,0x0b,0x4a,0x7f,0xa6,0x70, + 0xe1,0x1b,0x97,0xd5,0x63,0x10,0x0d,0x40,0x58,0x1c,0xcf,0x27,0x99,0xe2,0xb0,0x0a,0xae,0x69,0x65,0x0b, + 0xa1,0x27,0x82,0xfb,0xb8,0x6a,0x32,0xc4,0xb2,0x25,0x24,0xa6,0xb0,0xd2,0x55,0x9a,0xbc,0x6a,0xe1,0xaf, + 0xdc,0x68,0x28,0xae,0xa3,0xbf,0xc3,0xab,0x4a,0xed,0x0e,0x79,0xa8,0x0b,0xc8,0x65,0xcc,0x5a,0x2e,0xa1, + 0x74,0xdd,0xd7,0xde,0xbf,0x9c,0x89,0xa6,0xa0,0x07,0x9d,0x09,0xea,0x60,0xda,0x2f,0x6a,0xca,0xdb,0x9c, + 0x5e,0xd3,0x7b,0xb5,0xa9,0x45,0x47,0xb7,0xde,0xdb,0x29,0xde,0x67,0xd0,0xe8,0x83,0x41,0x52,0xac,0x45, + 0x5a,0xd0,0x4b,0xac,0xf2,0x37,0x49,0x56,0x86,0xe5,0x96,0x23,0x03,0x05,0xa3,0xc4,0x90,0x8d,0xb0,0x02, + 0xbd,0xa3,0x9c,0x52,0x98,0x24,0xf3,0x62,0x8a,0x81,0x90,0xc4,0x83,0xdc,0x69,0xd1,0xbe,0x0d,0x05,0x66, + 0xab,0x7a,0x4d,0x2d,0x18,0x8f,0x93,0x1a,0x36,0x19,0xa4,0xa1,0x34,0xee,0x34,0x76,0xd7,0x56,0x22,0xf4, + 0x63,0xc1,0x06,0xe1,0x3b,0x6e,0xe2,0xdb,0xdb,0xb4,0x59,0x58,0x59,0x5b,0xb7,0x70,0xef,0x88,0xcd,0x23, + 0x88,0x5d,0xf1,0x0d,0x6c,0x22,0x8e,0xb1,0x16,0x24,0x41,0x1a,0x7c,0x91,0xfe,0x9e,0xb0,0x1c,0x07,0xa6, + 0x50,0x89,0x82,0x4c,0xe7,0x6d,0x1e,0xfd,0x23,0x07,0x9e,0x70,0xae,0x9b,0x40,0x4b,0xec,0xe3,0x96,0x74, + 0x47,0x36,0x6b,0xcf,0x19,0x98,0xf0,0x88,0x2b,0x19,0x5d,0x32,0xa2,0xb3,0x35,0x51,0x77,0xa8,0xa9,0xa9, + 0xde,0xcc,0x3e,0x76,0xb6,0xbc,0x10,0x3b,0xe3,0xef,0x4d,0xf5,0xb1,0x3c,0x85,0x65,0x82,0x56,0x14,0xa5, + 0xc6,0xa0,0xa2,0x83,0xbf,0x73,0x44,0xfe,0x5a,0x64,0x3e,0x1b,0x53,0x81,0x01,0xda,0xcf,0xed,0xf3,0xae, + 0x09,0xa8,0x35,0x00,0x65,0x35,0x28,0x13,0x17,0x42,0x7b,0x85,0xb6,0xae,0x83,0xb8,0x78,0xc3,0x92,0x00, + 0xcd,0xd4,0xf6,0xa1,0xd6,0x67,0x0c,0x01,0x13,0xb5,0xa8,0x8d,0xca,0x10,0x46,0x90,0x12,0x06,0x08,0x14, + 0xf3,0x8e,0x26,0x28,0xc0,0x7f,0xea,0xd8,0xe2,0x29,0xb1,0x5a,0xa0,0xee,0x25,0x9a,0xac,0xf0,0x80,0x8f, + 0x39,0x2a,0x50,0x6d,0x08,0x86,0x17,0x83,0x55,0xc6,0x5e,0x9a,0x81,0xd2,0x3c,0xb0,0xfd,0x34,0x56,0x0b, + 0xae,0x8c,0x93,0xe3,0x87,0xb6,0xfd,0x06,0x9a,0xf0,0xd4,0xda,0x3e,0xb6,0xce,0x00,0xf2,0x10,0x7e,0x57, + 0x94,0x59,0x3a,0xc2,0xf6,0x76,0x2d,0xf6,0x8e,0x99,0x78,0x27,0x3a,0x7b,0xfe,0x30,0xa7,0x89,0xe6,0x7b, + 0x80,0x3a,0xe0,0x34,0xa1,0xce,0x38,0x6a,0x7e,0x34,0xed,0xe5,0xf7,0xe2,0xda,0xb3,0x56,0xd9,0xca,0x04, + 0x4f,0x4a,0x7c,0x60,0x51,0xcb,0xb0,0x8a,0xbb,0xa1,0x65,0x06,0xe6,0xe9,0x96,0xe8,0xd0,0x06,0xb8,0x68, + 0x7f,0x06,0xad,0x79,0xb4,0x45,0xb1,0x39,0x72,0xf1,0xfe,0x67,0xd3,0x1e,0x67,0x44,0x9b,0x5b,0x06,0x8d, + 0x12,0x84,0x01,0x69,0x4c,0x11,0x65,0x17,0x00,0x6f,0xa5,0x6f,0x36,0x77,0x1b,0xc9,0xec,0xb6,0x9d,0x5d, + 0x46,0x68,0xec,0x02,0xd6,0xcc,0xb6,0x04,0x7f,0xc4,0x4c,0xe0,0x38,0x20,0x2d,0x69,0xc7,0xaa,0xae,0xa3, + 0x15,0xc3,0x7d,0x77,0xb9,0x6c,0x30,0x77,0x3f,0x71,0x5d,0x3d,0xaa,0x0c,0x0c,0x7d,0xc2,0xc0,0x37,0xfc, + 0xe7,0x16,0xa6,0xf2,0x6f,0x58,0x13,0x0e,0x63,0x00,0xb7,0x50,0xc7,0x56,0x69,0x9c,0x85,0xc9,0x59,0xc6, + 0x86,0x47,0x5a,0x56,0x7c,0x4d,0xc7,0x00,0x71,0xc7,0xda,0x08,0x33,0x37,0xa1,0x6b,0x5b,0xd7,0x25,0xf4, + 0xa1,0x95,0xb2,0x6d,0x06,0xfb,0xb3,0xeb,0x2a,0xf1,0x13,0x8c,0x43,0xf9,0x86,0x51,0x66,0x05,0xcd,0x41, + 0x36,0xad,0x14,0x77,0x40,0x85,0xdc,0x40,0x35,0xcf,0x34,0x3f,0x19,0xe5,0x61,0x1a,0x18,0x47,0xa8,0x5b, + 0x54,0x96,0x19,0xb9,0x39,0x3b,0xf2,0xd1,0xcf,0x51,0x7d,0xdd,0xc4,0xf7,0xe1,0xe6,0xa2,0xdc,0x66,0x86, + 0x30,0xad,0x61,0xbe,0x0c,0x9f,0x91,0xee,0x3d,0x54,0xab,0x77,0xce,0xc7,0xcd,0x46,0x0c,0x48,0xdd,0xf2, + 0x8e,0x48,0x06,0x51,0x6c,0x7b,0x59,0xe0,0xe9,0x86,0xb0,0xd1,0xe9,0x08,0xaf,0x23,0xba,0x99,0x14,0x3a, + 0xfe,0x62,0x78,0xc4,0x8f,0x27,0xe2,0x0a,0xa8,0x8c,0x1e,0xe6,0x1c,0xfe,0xdc,0xc8,0xe9,0xcb,0x41,0x52, + 0x14,0x39,0xb1,0x10,0x29,0xed,0x9d,0x2a,0x5d,0x95,0x51,0xae,0x4a,0x8d,0x84,0xae,0xa1,0xcd,0x91,0x2e, + 0x93,0x30,0x51,0xfa,0xe9,0x55,0xfe,0xb5,0x9e,0xaa,0xb2,0x43,0x9b,0xbf,0xc3,0x00,0x76,0xe7,0x3a,0x40, + 0xfb,0x50,0x20,0x7c,0xcf,0x77,0x70,0xc4,0x17,0xf2,0x12,0xe8,0x3b,0xa9,0x5e,0x51,0x1b,0x27,0xe4,0x70, + 0x73,0x66,0xaf,0x22,0x46,0xda,0x28,0xc9,0x4d,0x0b,0xfa,0x74,0x20,0x32,0xec,0xc2,0x73,0x9a,0x61,0x2f, + 0xe1,0x78,0x4f,0xac,0xe9,0x21,0x33,0x29,0xa0,0xec,0x09,0xab,0x6a,0xac,0xb8,0x1d,0xb3,0xb6,0x0f,0x9a, + 0x21,0xea,0xa2,0x06,0xb7,0x69,0x8d,0x3c,0xea,0x2b,0xba,0xb8,0x9d,0xd2,0xd4,0xd7,0x73,0x02,0xa6,0x00, + 0x76,0xa6,0xd0,0x4f,0x40,0xfb,0x11,0xc1,0x26,0xae,0x34,0xb6,0x81,0xff,0x7b,0x1e,0x0c,0x76,0x27,0x8f, + 0xb2,0xc5,0xd1,0xde,0x1e,0x3c,0xd9,0x9f,0x67,0x3e,0xae,0x9a,0x32,0xf7,0x1d,0x1e,0x9f,0xe2,0x4e,0x6b, + 0x9c,0x2f,0x5d,0x8b,0x31,0x0e,0x73,0x6b,0x75,0x4c,0xa8,0xed,0x34,0x8e,0x3a,0x2c,0xab,0x4c,0xf6,0x0f, + 0x1b,0x5d,0x01,0xf7,0xb1,0x71,0x12,0x37,0x03,0x75,0xd2,0x86,0xed,0x27,0xd1,0x97,0x6e,0x92,0x79,0x30, + 0x51,0x98,0x77,0x23,0x8b,0x36,0x42,0x8e,0xb3,0x5b,0x83,0x4c,0x4f,0xb7,0xd9,0x9e,0xa0,0x14,0xe5,0xfc, + 0xe1,0xed,0x18,0xb0,0x72,0x26,0xaf,0x74,0x1d,0x83,0xb0,0x08,0xbc,0xbf,0x08,0xc9,0x6a,0xa3,0x26,0x30, + 0xc1,0x50,0xc4,0x10,0x2b,0x58,0x57,0x5c,0x7b,0x8e,0xe7,0x2e,0xb7,0x2b,0x05,0x93,0x92,0x66,0x92,0x84, + 0x8b,0xe5,0xf2,0x3b,0x26,0xab,0xf9,0xba,0x6a,0x78,0x8c,0xeb,0x39,0x49,0xef,0xb7,0xe2,0x13,0x2d,0x6b, + 0xbb,0x2e,0x2d,0x77,0xd2,0xb5,0xf1,0x26,0x33,0xff,0xee,0x9a,0x61,0x9a,0x65,0xe4,0xc6,0xdb,0x04,0xdc, + 0xe8,0x5d,0x77,0x0b,0x97,0xe2,0xf7,0x0a,0x92,0x32,0xc4,0xb1,0x32,0x5b,0x23,0xcc,0x9c,0x7d,0x62,0x48, + 0x38,0xa4,0x9a,0xc7,0xad,0x8e,0xf4,0x0e,0x92,0x4a,0xef,0x00,0xa8,0x9e,0xb5,0xc0,0x7d,0x68,0xd6,0x8b, + 0xb0,0x42,0xb6,0xbb,0x3b,0xac,0xc9,0x7e,0x1a,0x6b,0x47,0x3e,0x6c,0xde,0x66,0x6c,0xd9,0x34,0xdc,0xd3, + 0x98,0xe8,0x6d,0x1b,0xb4,0x8c,0x12,0x3c,0x89,0x1f,0x56,0xaf,0xb3,0xdc,0x47,0x83,0xdd,0x58,0x67,0x12, + 0xdd,0x71,0x46,0x58,0x4c,0x7f,0x14,0x44,0x37,0x92,0x9f,0x81,0xce,0x1a,0x25,0x7e,0x67,0x98,0x59,0x29, + 0x0d,0xb9,0x30,0x7e,0x07,0xf1,0xc5,0x6c,0x24,0x8f,0xb4,0x29,0x89,0xcf,0xfd,0x69,0x9d,0x3c,0x3e,0xfe, + 0x5b,0x86,0xd2,0xdb,0x56,0x10,0x6a,0xea,0xd6,0x9a,0x00,0x04,0x20,0x48,0x5d,0x1b,0x3a,0xb4,0x82,0xf4, + 0xb9,0xa3,0x67,0xb8,0x6b,0xcf,0xd9,0x66,0x49,0x3f,0x31,0x0a,0xf3,0xbd,0xf1,0xe5,0x3a,0x39,0x48,0xa9, + 0x9d,0x49,0xcf,0xeb,0xc3,0x0f,0xe5,0xad,0x5b,0x8d,0x0c,0x7c,0xa4,0x4f,0xdf,0xb8,0x8e,0xb6,0x93,0x56, + 0x40,0x3c,0x61,0xba,0x76,0x26,0xaa,0xaa,0x4b,0xb8,0x38,0xe8,0x52,0xaf,0x01,0xf6,0xed,0x45,0xe3,0x3a, + 0xb5,0x15,0x65,0x0f,0x61,0xf6,0x6c,0x6c,0x09,0xa7,0xb2,0xd4,0x8d,0x0f,0x2e,0xa2,0x40,0x7b,0xa9,0x6f, + 0x89,0x3f,0x48,0x1c,0x20,0x08,0xac,0x3f,0x81,0xec,0xd3,0xbb,0x19,0x6a,0x7c,0x29,0xff,0x98,0xbd,0xc0, + 0x82,0x09,0xc3,0x59,0x8a,0x41,0x3a,0x91,0xb5,0x4d,0x85,0x56,0x4e,0x1c,0xa5,0x6c,0x6a,0x18,0xee,0x6c, + 0xff,0x8a,0x43,0xcd,0xc3,0x61,0x32,0xb2,0x85,0x77,0x9c,0x0a,0x59,0x24,0xf8,0xde,0xec,0xca,0x47,0x9b, + 0xc7,0x5d,0x6d,0x52,0x22,0xf0,0x48,0x1a,0xc9,0xa3,0xba,0x26,0x8a,0x25,0xa6,0xc3,0xae,0x10,0xfb,0xa4, + 0x32,0x4c,0x1d,0x6f,0xa0,0x79,0x6d,0xc4,0x8d,0x15,0xd1,0x8d,0x5a,0x18,0xa8,0x1a,0x2a,0x59,0x46,0x36, + 0xa7,0xd5,0x17,0x36,0x8e,0x4d,0xe4,0x38,0xb9,0xc1,0x18,0x25,0x42,0xa0,0xc2,0x41,0x7c,0x06,0x31,0xb6, + 0xc2,0x18,0x93,0x11,0x5c,0x79,0x07,0xa3,0xec,0xfe,0xf1,0xe8,0x38,0x3c,0x0a,0x8f,0xc3,0x6a,0xc4,0x79, + 0x2e,0x52,0x14,0xbd,0x13,0x84,0x47,0x26,0x9c,0x2a,0xfc,0x6e,0xe9,0xfb,0xa1,0xc9,0x28,0x63,0x29,0x10, + 0x73,0x5a,0xa1,0xb3,0xb6,0xb1,0x03,0x05,0xcc,0x9a,0x72,0xd8,0xef,0x36,0x97,0xda,0x70,0xfb,0x5e,0xba, + 0x42,0x27,0x07,0x14,0x94,0xa1,0xaa,0x84,0x9c,0x22,0x26,0xe6,0xde,0x0e,0x98,0xa4,0x86,0x5e,0xcf,0x25, + 0x1c,0x0f,0x2e,0x1b,0x4c,0xb4,0x92,0xdc,0xb8,0xa5,0x88,0x6c,0x4c,0x0d,0x7d,0x25,0x81,0xc6,0x98,0xb2, + 0xc9,0x83,0x29,0x61,0x9c,0x75,0x14,0xab,0x85,0x00,0x35,0xfc,0x34,0xb2,0xf7,0xd1,0x1c,0xa4,0xcc,0x88, + 0xa9,0x9a,0x92,0x89,0x1b,0xc5,0x29,0x21,0xa7,0xf0,0xa3,0xa6,0xf5,0xd5,0xda,0x4c,0x7a,0xd1,0x0c,0x51, + 0xc0,0xc4,0xe1,0x92,0x1d,0x6c,0xc3,0xc9,0xb3,0x76,0x07,0x67,0xb3,0xac,0x6b,0xf7,0xbe,0x4b,0x56,0xf7, + 0x85,0xc8,0xaf,0x43,0xe6,0x91,0x18,0x57,0x67,0xb5,0x05,0xe3,0xa9,0x40,0x10,0x7b,0x45,0xdb,0xc7,0xce, + 0x1f,0x48,0xc2,0x56,0xd7,0xe3,0x60,0x13,0xbe,0xc0,0x86,0xa4,0x04,0xe7,0x5a,0x6d,0x6a,0xae,0x39,0x2a, + 0x9f,0x1d,0x43,0xc2,0x53,0x20,0x1f,0x9a,0x29,0x51,0xea,0xb9,0xc9,0x04,0x51,0x22,0xcd,0xa0,0x26,0x87, + 0xb2,0xa0,0xf6,0xce,0x43,0xb9,0xab,0xe2,0x9d,0x9e,0xd1,0x76,0xfc,0x24,0xa2,0x82,0x9a,0x49,0x52,0x37, + 0x91,0x88,0xa5,0x85,0x5d,0xa3,0xae,0x10,0xd9,0x1b,0x75,0x48,0x09,0x85,0xe5,0xb4,0x53,0xe0,0x46,0x23, + 0x06,0x07,0x55,0x70,0x64,0x66,0xa9,0x6c,0xb3,0x29,0x6b,0xd6,0x56,0x54,0x26,0x5c,0xfe,0x35,0x83,0xaf, + 0x1f,0x37,0xa1,0x26,0x43,0xa7,0x75,0xdb,0x6b,0xdb,0xf6,0x74,0xa7,0x6d,0xa7,0x65,0xc0,0xb9,0x71,0x05, + 0xb7,0x65,0xdd,0xa7,0x5a,0x0d,0x8e,0xb8,0xe7,0x2d,0x51,0xe1,0x62,0x3a,0x92,0x59,0xdf,0x64,0xe0,0xda, + 0x6b,0xcd,0x08,0xb3,0x18,0x4b,0x97,0x5d,0xc8,0xda,0xab,0x5a,0x8c,0xf6,0x88,0xb0,0xe0,0xd5,0x84,0xd8, + 0xdb,0xf7,0xb2,0xbc,0xa2,0x93,0x2a,0x2d,0xab,0x9e,0x3e,0x46,0x7a,0xa9,0xf6,0xf4,0x03,0xc0,0xa5,0x34, + 0xfb,0xee,0x41,0xe5,0x98,0x3d,0x4c,0x37,0x0b,0x35,0x0b,0x80,0x2e,0xe8,0xe9,0x46,0xa5,0x84,0x1b,0x58, + 0x22,0x11,0x48,0x94,0x9d,0xb4,0x43,0x0e,0xe2,0xa3,0x0d,0x64,0xd8,0xc6,0x83,0x23,0x3a,0x78,0x11,0xb4, + 0x84,0xf7,0x0d,0xcb,0x1f,0xaa,0x73,0xf8,0xa3,0xd1,0x40,0xc9,0x17,0xc3,0xb4,0x6f,0x89,0x06,0xb8,0xc6, + 0xa7,0x10,0x71,0x6e,0x35,0x02,0x44,0x32,0xd0,0x1f,0x51,0xdb,0x22,0xfd,0x27,0xda,0x20,0x97,0x0a,0x88, + 0x3f,0x30,0x15,0xd0,0x16,0xe5,0x0a,0xcc,0xd2,0x6f,0x36,0x53,0x8e,0x2c,0x63,0xa2,0xb6,0xa4,0x76,0x2e, + 0xe1,0x04,0xa9,0xd2,0x32,0x54,0x13,0x12,0xcf,0x5f,0xd2,0x4a,0xf3,0xbc,0x06,0x03,0x13,0x13,0x7e,0xa9, + 0x68,0x03,0x1b,0x2e,0x6a,0x77,0xd3,0x15,0x0e,0x0d,0x5f,0xc1,0xcb,0xaa,0x89,0x1c,0x8f,0xc3,0xb7,0x1d, + 0x17,0x04,0xbe,0xe5,0xd9,0x17,0xa3,0xce,0x96,0xb0,0x10,0x8a,0x68,0xa1,0x80,0x49,0x30,0xb3,0x57,0xd7, + 0x8d,0x9d,0x2a,0x96,0x52,0x9a,0x48,0xf4,0x3d,0x13,0xa0,0xb7,0xf7,0x6f,0x18,0xfb,0xbf,0x61,0xbd,0x2e, + 0x0f,0xaa,0x5e,0x1d,0x37,0x5b,0x8b,0xc7,0xf5,0x0a,0x97,0xeb,0x15,0xc8,0x92,0x9e,0x98,0xe9,0x88,0xa5, + 0x5a,0x23,0xa0,0x07,0x6f,0xf9,0xfa,0xe4,0x15,0x1e,0x0f,0x4f,0x7a,0xd7,0x78,0xb4,0x70,0x9e,0xd5,0x42, + 0x04,0xb5,0x0b,0x4d,0x47,0xa6,0x78,0x87,0xa2,0x98,0x87,0x2d,0x00,0x1d,0xc0,0xde,0x17,0xc7,0xa1,0xfc, + 0xde,0x95,0xdf,0x4f,0x3f,0x97,0xdf,0xbb,0x9f,0xea,0xdf,0x2f,0x74,0xfa,0xdf,0x42,0x1b,0x80,0x4c,0x0a, + 0x7c,0xa6,0x33,0xe8,0x02,0x9f,0x7e,0x16,0x1a,0xf5,0xe2,0x19,0x54,0xdd,0x25,0xd7,0xdd,0x3b,0xba,0x7a, + 0xf9,0x39,0x3e,0xd2,0xbf,0xba,0xb5,0xe3,0xcf,0x75,0xc2,0xe7,0x9f,0xdd,0xf9,0xab,0xce,0xf3,0xb7,0x3b, + 0xa6,0x10,0x3d,0xdd,0x35,0x95,0x5e,0x95,0x9e,0xbd,0xf8,0xbb,0x1f,0x7d,0xf1,0x57,0x62,0x59,0xee,0x45, + 0xc7,0x77,0xee,0x6c,0x36,0xf4,0xfa,0xf9,0x67,0xfc,0xfa,0xc5,0xd1,0x48,0x37,0x1e,0x52,0xe2,0xa7,0x5f, + 0x70,0xe2,0x67,0x7f,0x1d,0x79,0x62,0x08,0xe1,0x85,0x1e,0x5f,0xfb,0x74,0x04,0x24,0xc1,0x34,0xc9,0x59, + 0xa7,0xe1,0xc2,0xf7,0x8e,0xbc,0x3d,0x27,0x78,0xf1,0x11,0x64,0x68,0x69,0xf9,0x2c,0x7e,0x26,0x41,0xd9, + 0x08,0xe1,0x26,0xea,0x6b,0x13,0xad,0xae,0xf3,0xce,0xad,0x39,0xed,0xa6,0xef,0xb6,0x52,0xfd,0xc9,0x2a, + 0xf3,0x1c,0x53,0x0b,0x77,0x3f,0x85,0x58,0xe7,0xd6,0xad,0xbb,0x5f,0xe0,0x77,0x54,0x85,0x36,0x8c,0x9b, + 0xa2,0xef,0x60,0x05,0x43,0xef,0x13,0xaf,0x9f,0x98,0x00,0xe8,0xe2,0xdf,0xea,0xd2,0xe0,0xc2,0x9a,0x2b, + 0x33,0xbe,0x37,0xa0,0xa9,0x30,0x16,0xb2,0xaf,0xa7,0x3d,0xe5,0x79,0x6a,0xb1,0x9b,0xff,0x3c,0x2e,0x9f, + 0x5f,0x65,0x26,0xd0,0x9e,0x7a,0x17,0x75,0x11,0xa8,0x8f,0xb3,0x6a,0xe9,0x04,0x0b,0xc3,0xeb,0xe0,0x11, + 0x22,0xdb,0xa4,0x17,0x09,0x31,0x0f,0x17,0x71,0xa5,0x4e,0x3f,0xba,0xa0,0x78,0xf1,0xd3,0xc5,0xce,0xa2, + 0x6b,0x71,0xac,0xf1,0xb0,0x15,0xa4,0xb2,0xe1,0xd3,0xc8,0x65,0x00,0xab,0x01,0x76,0x5b,0x24,0x3f,0x7c, + 0x8f,0x78,0x7a,0x8a,0xc7,0xd1,0xf5,0x36,0x34,0x11,0x89,0x18,0x27,0x5c,0xdb,0xcc,0x16,0x5d,0x52,0x8f, + 0x9e,0xea,0x74,0x29,0x14,0x98,0xe3,0x0e,0x81,0x16,0x87,0x26,0xb5,0xd3,0xe9,0x4d,0x42,0xd4,0x42,0xa2, + 0x1c,0xc2,0xa7,0x62,0x63,0x02,0xf7,0x30,0x4a,0x3a,0x22,0x30,0x4a,0x48,0x53,0x54,0xca,0xbe,0x83,0x9f, + 0x30,0x92,0x78,0x9a,0x94,0x65,0xbc,0x60,0xdf,0x39,0x72,0xf6,0xe9,0xe3,0x87,0x9a,0x11,0x8f,0x53,0xa7, + 0xce,0x18,0x55,0x9d,0xf2,0x33,0x72,0x25,0xda,0x23,0x98,0x74,0xf5,0x0a,0x49,0x38,0x44,0xa0,0xa9,0xec, + 0x07,0x4e,0x66,0xd6,0x91,0x98,0x16,0xe9,0x59,0x82,0x4f,0x0f,0x61,0xea,0xc3,0xd1,0x87,0x98,0x69,0x93, + 0x6c,0x26,0x87,0x38,0x83,0xdb,0xd6,0xf1,0x38,0xf4,0x14,0xca,0x5c,0xf1,0x0a,0x14,0x79,0x5e,0x99,0x20, + 0xf7,0x78,0x16,0xa4,0xb7,0x9b,0xd2,0x98,0x6b,0xbe,0x3e,0xe5,0xbe,0x20,0x43,0xd4,0xce,0xab,0x57,0x6a, + 0x30,0x27,0xfa,0xec,0x8c,0x18,0x19,0x99,0x9c,0x9d,0x6c,0xad,0xef,0xa6,0x54,0x49,0x8c,0x61,0x26,0xfa, + 0xa7,0x4b,0x36,0x52,0xf8,0x99,0x55,0xc1,0xdb,0x85,0x3b,0xb3,0xb1,0xa3,0xde,0x26,0x04,0x14,0x1f,0x84, + 0x80,0x02,0xf4,0xe2,0x2e,0x04,0xd8,0xe5,0xe5,0x35,0x2d,0xa3,0xa2,0x7b,0x31,0x71,0xc1,0xfe,0xd4,0x4c, + 0xec,0xff,0xd8,0x9a,0x2a,0xe7,0xb0,0xd0,0xd3,0xf6,0x2e,0xe3,0x6b,0x3e,0xfb,0xc2,0x77,0xe1,0xe2,0x17, + 0x90,0xe7,0xb7,0xd1,0xa1,0xfd,0xba,0x43,0x32,0xfb,0x7e,0x60,0x1d,0xc5,0xff,0x79,0xb8,0x18,0xf9,0x2e, + 0x94,0xef,0x40,0xc5,0x9f,0x1f,0x2e,0x78,0x73,0xb9,0x25,0xc1,0x25,0xab,0x0e,0xb0,0x60,0x7a,0xd4,0x78, + 0xdf,0x81,0x53,0x77,0xdb,0xb9,0x19,0xff,0xa9,0xee,0x18,0x3f,0x70,0x8f,0xda,0x61,0x6a,0x8d,0x23,0x38, + 0xe9,0x9a,0xbf,0x53,0xb8,0xd1,0xa3,0xc1,0x3a,0x7b,0x5f,0xcb,0x5a,0xf0,0xb9,0x53,0x47,0x07,0x94,0x35, + 0xaa,0xd5,0x69,0x7e,0xab,0x06,0xe7,0x93,0xa9,0xa1,0x01,0x18,0xdd,0xe0,0xd2,0xae,0xa5,0xf1,0xd1,0xed, + 0x89,0x84,0x8d,0xdb,0x6e,0xd5,0x95,0xf1,0xda,0x8a,0xd4,0xda,0x9b,0x63,0xbc,0x84,0xa1,0xb7,0x38,0x56, + 0x64,0xad,0xb7,0x6b,0xd7,0x93,0xad,0xd6,0x0a,0x08,0xc5,0x65,0xe2,0x96,0x23,0x92,0x37,0x73,0x18,0x8a, + 0x0b,0x17,0x87,0x86,0x1e,0x75,0x33,0x6c,0x15,0xdf,0x86,0x97,0x3a,0x71,0xcc,0xd4,0x9e,0x75,0x26,0xbb, + 0xdd,0xf1,0xe4,0xd8,0x20,0xed,0xb9,0x5b,0x90,0x4f,0x48,0xf8,0x0c,0x44,0x91,0xad,0xad,0xcd,0xf0,0xdd, + 0x01,0x1c,0x89,0xa7,0xe1,0xe7,0x22,0xd8,0xff,0xa0,0xeb,0x58,0x1d,0x16,0x2e,0x92,0x1f,0x1b,0x7e,0x97, + 0xe8,0x79,0xc7,0x91,0xab,0x08,0xe0,0x0b,0x21,0xa4,0x11,0xcd,0x43,0x13,0xd2,0x6b,0x08,0xa8,0x97,0xf8, + 0xc0,0x63,0x63,0x83,0xd0,0x79,0x8b,0x5d,0x5b,0x06,0xa3,0xa5,0x09,0xfa,0x7b,0x14,0xba,0xe7,0xd6,0x32, + 0xb0,0xe9,0xac,0x81,0xdd,0xe2,0x99,0x5c,0x7f,0x7c,0xd8,0x46,0x75,0x00,0xf3,0x9a,0xe4,0x71,0x82,0x9a, + 0x73,0x17,0x0c,0xd5,0x53,0xc7,0x3d,0xbf,0x75,0xcb,0xe3,0xcb,0xc4,0xed,0xb6,0x16,0xe9,0xdf,0xba,0x95, + 0xdb,0x96,0x89,0x29,0x5d,0x51,0xed,0xbe,0xf7,0x78,0xde,0x93,0x51,0xf4,0x30,0xdb,0xbd,0xb4,0xec,0xc1, + 0xc9,0x4c,0x8f,0xce,0x80,0x1e,0xcf,0x75,0x2f,0x11,0x91,0x69,0xd9,0x83,0xf9,0x43,0xef,0x3c,0xbe,0x4c, + 0xa4,0x80,0xe4,0xa7,0xcc,0x03,0xe2,0x82,0x3a,0xc6,0xbe,0x8b,0xd3,0xc1,0x16,0xac,0x89,0x01,0x84,0xf3, + 0xd0,0xf6,0x8c,0x74,0x9d,0x00,0x6b,0x78,0x3e,0x5b,0xd2,0x1f,0xa8,0x58,0xde,0x50,0x9f,0xf0,0xf6,0xab, + 0x91,0x07,0xf3,0xa9,0xf6,0xb4,0x84,0x94,0x9a,0x0c,0xd7,0x10,0x7e,0x41,0x9c,0xa9,0xbd,0xfe,0xab,0x54, + 0xc5,0x83,0xd4,0x97,0xd8,0x13,0xd8,0x1a,0x6f,0xa3,0x1d,0x44,0x31,0xa5,0x96,0xe8,0x70,0xe9,0xb8,0x20, + 0xd9,0x0e,0xdf,0x3a,0xf4,0x5c,0x0a,0xbb,0xc1,0x55,0x0e,0x79,0xb8,0x2b,0x27,0xaa,0xcd,0x87,0x9d,0xda, + 0xe0,0x5a,0xce,0x30,0xa9,0xd0,0xc2,0x7b,0xaf,0x46,0x1f,0x31,0x7e,0x9e,0xe7,0xaa,0xf5,0x59,0x79,0xf3, + 0x38,0xeb,0xf7,0x59,0x3e,0xe3,0x5d,0x6b,0xff,0xaf,0x05,0xae,0x15,0x9c,0x6b,0x7d,0x56,0x4f,0xf1,0xb4, + 0xae,0x58,0x81,0xcb,0x7c,0xd4,0x25,0x2c,0x29,0x3d,0x88,0x8d,0x85,0xae,0xc7,0xdb,0xb2,0x0e,0xcb,0x30, + 0xc8,0xfb,0x51,0xaa,0x6c,0xb2,0xc8,0x24,0xf6,0x85,0xee,0xce,0x83,0x91,0xc7,0xce,0x46,0xc3,0x37,0x75, + 0x02,0x90,0xc9,0x8c,0x28,0xfd,0xb5,0x38,0xa5,0xf3,0x86,0xa6,0x0b,0xd2,0x6c,0x2e,0x1e,0xb1,0xe3,0xad, + 0x68,0xc9,0x7b,0xff,0x8b,0xfb,0x3a,0xa2,0x3e,0x83,0x30,0xa7,0x15,0x81,0xc8,0x8f,0x9a,0x0c,0x42,0xfc, + 0x35,0x1c,0xc7,0x07,0x47,0x02,0xd1,0x8c,0x41,0x6f,0x76,0x56,0xa3,0xa2,0x21,0xaa,0xce,0x6a,0xe6,0x53, + 0x49,0xf0,0xe9,0xb6,0x6c,0xc5,0x0c,0x87,0x83,0xd4,0xed,0x8e,0x04,0x73,0x6b,0x5e,0xd8,0x36,0xdc,0xf4, + 0x8e,0xa7,0x6e,0x98,0xb6,0x17,0x25,0xa6,0x01,0xa5,0x13,0xc3,0xf0,0xc5,0xfa,0x5e,0x1a,0x9c,0x95,0xf4, + 0x3f,0xd4,0x1c,0x6d,0xac,0x99,0x73,0xd1,0x7a,0x65,0xbe,0x4d,0x77,0x44,0x67,0xc8,0xc6,0x4c,0xe9,0x10, + 0xdd,0x6e,0xf2,0xaa,0xe3,0xa3,0x60,0xd2,0x28,0x60,0x7a,0x2b,0xbf,0xa2,0x16,0x6e,0x8b,0xeb,0x52,0x44, + 0xe3,0xa6,0xfd,0xbe,0x9d,0xd4,0x2d,0x87,0xbb,0xdb,0xf2,0xa2,0xee,0x47,0x87,0xbf,0xf9,0x27,0xb3,0xa0, + 0x7f,0xa8,0xde,0xf0,0xe3,0x15,0x1e,0x1f,0xd2,0x34,0x3d,0x88,0x8e,0xd5,0xcb,0xe8,0x8e,0x7a,0x15,0xdd, + 0x55,0xcf,0xe9,0xfd,0x75,0xf4,0xa9,0x7a,0x12,0x7d,0xa6,0xbe,0x8a,0x3e,0x57,0x2f,0xa2,0xbf,0xaa,0xc7, + 0xd1,0xdf,0xd4,0x23,0x30,0xf4,0x8f,0xc6,0xcf,0x27,0xd1,0xf5,0x55,0x19,0xd2,0xaf,0x62,0x36,0x30,0x1c, + 0xdf,0x55,0x0f,0x27,0xca,0x1b,0x7b,0xe1,0xf8,0xf5,0x44,0xd1,0x21,0x1f,0x8e,0x5f,0x4c,0xb6,0xea,0xd1, + 0xf8,0x58,0xe7,0x3c,0xa6,0xaf,0x03,0xfa,0x7a,0xa7,0x33,0xd7,0x1d,0x9d,0xeb,0x4e,0xb3,0xbe,0x23,0xfd, + 0x2b,0x5c,0xa5,0xbc,0x20,0xfb,0x5d,0xca,0xfe,0xa1,0x7c,0x8a,0x5b,0x55,0x0f,0x4c,0xbb,0xfc,0xc4,0x2d, + 0xe3,0x49,0xda,0xa6,0x27,0x54,0xf7,0x9a,0xaa,0xf3,0x6e,0xd3,0xa7,0x27,0x28,0x77,0xdb,0xbb,0x1d,0x8e, + 0xbf,0xaa,0x87,0xa3,0x5e,0xd2,0xd3,0xc4,0x43,0x65,0xaf,0xa4,0xe0,0x63,0xb6,0xe7,0xc3,0x27,0xe9,0xce, + 0x13,0x53,0x1e,0x09,0x8d,0x1c,0x4f,0x74,0x8e,0xaf,0x28,0x07,0xd7,0xbb,0x93,0x03,0x0d,0xc9,0xc2,0x7c, + 0xcd,0x36,0xcf,0x44,0xaa,0x15,0xeb,0x64,0xc3,0xb6,0x9c,0x9b,0x83,0xd1,0xf8,0x64,0x36,0x98,0xf4,0x37, + 0xb7,0xd9,0x07,0xd6,0xed,0x8d,0xc7,0x6e,0xb1,0xbc,0x80,0xf2,0xc1,0x31,0xd1,0x0d,0x68,0xab,0x1b,0x6b, + 0x3d,0x73,0xb0,0x16,0x43,0xd9,0x0b,0x3a,0xd4,0x76,0x25,0x54,0x2e,0xc6,0x72,0x10,0x16,0x54,0x48,0x93, + 0x0e,0x79,0x96,0x09,0x7b,0x17,0x23,0x94,0x0f,0x36,0xdc,0x3a,0x3a,0x38,0xa6,0xa3,0xf1,0x39,0xc7,0xbd, + 0x3b,0x07,0xb8,0x60,0xcf,0x9c,0x8f,0x1f,0x4c,0x1a,0xc6,0x1d,0xe6,0x9c,0xca,0x58,0x97,0x47,0xa0,0x17, + 0x2e,0x0a,0xe5,0x03,0x6c,0xf5,0xc7,0x0f,0x3b,0x4a,0x40,0x52,0x3b,0xca,0xa2,0x22,0xcc,0xfa,0x44,0xf8, + 0x53,0xa6,0x97,0x8d,0x4c,0x28,0x44,0x94,0xd1,0x9c,0x60,0x9f,0xbe,0xbd,0x6a,0x7c,0x83,0x46,0xe4,0xfd, + 0xa3,0x60,0x7e,0x70,0x40,0xdd,0x7b,0xad,0x24,0xab,0xbd,0x8b,0x44,0x6f,0xf7,0x70,0xf5,0xe1,0x67,0xd1, + 0x8c,0x5d,0xe6,0x59,0xb1,0x28,0xfa,0x0e,0x75,0xcc,0xa1,0x96,0x81,0x2f,0xd9,0x61,0xfc,0xba,0xdf,0x87, + 0xff,0x44,0x56,0x16,0x82,0xcf,0xc5,0x35,0x6e,0x2c,0xf6,0x5a,0xfc,0x34,0x7f,0xe8,0x1f,0x33,0xb6,0x86, + 0xd8,0xe8,0x09,0x9d,0xca,0xb7,0x59,0xad,0x6b,0xb3,0xc1,0xfb,0x57,0xb7,0x6e,0x11,0x58,0xe0,0xdd,0xfa, + 0xee,0xa6,0x6a,0x09,0x5b,0x53,0xc5,0xfd,0x44,0xf7,0x11,0x11,0x96,0xfd,0x40,0x5b,0x71,0xad,0x20,0x16, + 0x03,0x9d,0x53,0x46,0x8f,0xc6,0xcb,0x49,0x40,0x78,0x67,0xb3,0x29,0x59,0x11,0x74,0xb3,0x79,0x0c,0xd9, + 0xf2,0x63,0xa3,0x15,0xc4,0x6d,0xc2,0x8e,0x45,0xf9,0x71,0x74,0x3e,0xce,0x69,0x0f,0x4e,0xe4,0x1e,0x36, + 0xc7,0x46,0x2b,0x22,0x3b,0xa5,0xc5,0x08,0x32,0x44,0x1e,0x3e,0xf1,0x3f,0x41,0xa3,0x82,0x28,0x7a,0x61, + 0x9d,0xa3,0x8a,0xb2,0x9b,0x25,0x48,0x0d,0x8c,0x50,0xef,0x55,0x02,0xb2,0x6b,0xab,0x5c,0x20,0x5b,0x24, + 0x15,0x40,0x8c,0x05,0xb9,0xad,0xb3,0x11,0x32,0xf2,0xa4,0x76,0xd0,0x5a,0x5f,0xc2,0x18,0xef,0xdb,0x06, + 0x3e,0xe1,0xb1,0x96,0xc7,0x5d,0xb4,0x28,0x0c,0x84,0x77,0x43,0xd7,0x8d,0x3b,0xed,0x46,0x4d,0x8e,0xb5, + 0x4f,0x6d,0x6a,0x46,0x48,0x5a,0xbb,0xe0,0xce,0x87,0xc6,0xf1,0x76,0x3c,0x2e,0xc6,0xe5,0xc4,0xb9,0xec, + 0x80,0xb2,0x59,0x70,0x2d,0x6e,0xa8,0xb4,0x6d,0x42,0x1c,0x4d,0x55,0x59,0x23,0xd3,0x58,0x76,0xeb,0xd3, + 0x1b,0x76,0xce,0xb0,0xe6,0xff,0x30,0x4f,0xd0,0x96,0xb5,0xb7,0x4b,0x42,0x3c,0x6e,0x36,0x5e,0x92,0x1d, + 0xfc,0xf8,0xd2,0x63,0x79,0x6e,0x93,0xd7,0xae,0xbf,0xb1,0x45,0x92,0x66,0x71,0x99,0xbc,0xd4,0x61,0xcc, + 0x1d,0x19,0x90,0xa4,0xc3,0x8a,0x32,0x73,0x44,0x3c,0x9c,0x3a,0xd4,0xae,0xac,0x2f,0xe4,0x82,0x4f,0xde, + 0xe6,0xfc,0xbd,0x02,0xab,0x39,0xb0,0xcf,0x9b,0x0d,0x18,0xe5,0xb7,0x3a,0xcb,0x45,0x5a,0xc2,0x15,0x08, + 0xda,0x96,0x27,0x11,0x78,0x1a,0xef,0xd2,0x2c,0x54,0x60,0xd9,0x42,0x23,0x1d,0x5c,0x6d,0xe4,0xf0,0xbd, + 0xc2,0xf2,0xee,0xed,0xc9,0x93,0x69,0x5d,0x0f,0x94,0xf5,0xa1,0x9c,0xcc,0x6e,0xba,0x14,0x72,0x53,0x4c, + 0x0b,0x9d,0xb2,0x07,0x8b,0x44,0xaa,0x6e,0xa9,0x03,0x91,0xb8,0x7b,0x37,0x7c,0xd2,0xf5,0x36,0x27,0x14, + 0x37,0xef,0x20,0xec,0xe5,0x9b,0x3b,0xa9,0xcd,0x2f,0xe0,0x06,0x58,0xbe,0xf0,0xac,0xae,0x26,0xae,0xdd, + 0x05,0x10,0x12,0x94,0x64,0xbe,0x3f,0x68,0x41,0xbe,0xc6,0x2a,0xfe,0x1e,0x06,0x9b,0x6d,0x36,0x85,0x9f, + 0x48,0x85,0x8d,0xed,0x22,0xe1,0xb4,0x8d,0x51,0xfa,0x29,0x9c,0xc6,0xfe,0xf4,0xd4,0x37,0xf7,0x9d,0x99, + 0x6a,0x42,0x4d,0x08,0xf7,0x8d,0x02,0x2a,0x44,0x76,0xb5,0x80,0x24,0x8c,0x55,0x03,0x3c,0xc2,0x92,0x28, + 0x32,0xf5,0x43,0x74,0x7d,0x79,0x11,0x5e,0x6f,0xeb,0x82,0xf4,0xdc,0x2e,0x49,0x49,0xcd,0xa2,0xd7,0x35, + 0x87,0xb7,0x6d,0xf7,0x01,0x75,0x09,0xcc,0xf0,0x47,0x33,0x6d,0x78,0xe9,0x5c,0x01,0xfa,0xb0,0x35,0x87, + 0xcb,0x53,0xd7,0xf5,0xb0,0x0c,0xb6,0x63,0x7b,0x9d,0x1b,0x5f,0xd0,0x52,0xdf,0xb0,0xf5,0x0e,0xe9,0x4b, + 0x0d,0xf6,0xb4,0x3a,0x44,0x43,0x62,0x61,0xa0,0x1a,0xab,0xda,0x79,0x93,0xad,0x72,0x1b,0xed,0x64,0xf7, + 0x77,0x7d,0x21,0x34,0x17,0xba,0x56,0x37,0x73,0xab,0xba,0x41,0x76,0xd0,0xa8,0xac,0x65,0x38,0xc0,0xdc, + 0x9e,0x1b,0xc2,0x24,0x73,0x6c,0x35,0x25,0xa8,0x5d,0x76,0xff,0xe0,0x38,0x90,0xfb,0xe9,0x29,0xe4,0x98, + 0x50,0x90,0xf4,0x3b,0xfa,0xa4,0xda,0xdd,0x69,0xc8,0xb6,0xda,0xe6,0x95,0x22,0x22,0x6c,0xb8,0x04,0xa7, + 0xc9,0x1b,0xec,0x73,0x21,0xdf,0xdb,0x47,0xd5,0x8d,0x10,0x15,0xae,0x41,0x43,0x6b,0x32,0x5c,0xfb,0x86, + 0xf3,0x4e,0xa7,0xc8,0xed,0x22,0xc4,0x08,0xb2,0x13,0xf4,0x76,0xe2,0x4e,0xe0,0x8b,0xad,0xba,0x9e,0x25, + 0xc9,0x4a,0x54,0x93,0x77,0x47,0xa7,0xc5,0x98,0xcd,0xa3,0x7e,0xaf,0x46,0x4d,0xb4,0xd1,0x6a,0xfc,0xb5, + 0x73,0xe2,0x54,0x26,0x96,0xc9,0x45,0x73,0x1e,0x58,0x40,0xe6,0x4c,0x86,0x00,0xbe,0x33,0x1b,0xec,0xd9, + 0x63,0x9f,0xd8,0x5f,0x58,0xb1,0x98,0xaf,0xec,0x97,0xbf,0xd5,0x7f,0x75,0x9d,0x5e,0x10,0xa9,0x9e,0x42, + 0xde,0x2e,0x43,0xf8,0x01,0x15,0xd3,0x7e,0x77,0xfb,0xdc,0x5a,0x04,0x64,0x32,0x7b,0xf3,0x86,0xac,0xb1, + 0x06,0x00,0xfa,0xaa,0x05,0xdc,0x25,0x7b,0x00,0xff,0xa1,0x7d,0x4e,0x7c,0xb8,0x7c,0xf3,0x72,0xc1,0x54, + 0xd3,0xd8,0xfc,0x1f,0xae,0xc4,0xbd,0x68,0x30,0x55,0xc8,0xbc,0x7c,0x60,0xac,0xe6,0xd2,0xbd,0xce,0x5f, + 0x26,0x55,0xc7,0xee,0xc3,0x6a,0xf0,0x7c,0xeb,0xb7,0x7a,0xda,0x2b,0x6e,0xac,0x89,0x91,0x3e,0xd4,0x68, + 0x33,0x77,0x47,0xf9,0x8f,0xed,0x44,0xb3,0x98,0xe9,0x8c,0x46,0x86,0xef,0xed,0x85,0xce,0xe3,0x66,0xef, + 0x6e,0xd4,0x9e,0xcb,0xdc,0x4d,0x83,0x5b,0xdf,0x5b,0xb7,0xcd,0xd5,0x2c,0xd2,0x5d,0xbf,0x43,0x1a,0x20, + 0x7b,0x27,0xc2,0x7e,0x6f,0x6b,0x9d,0x25,0x6e,0xae,0xaa,0xbb,0x17,0x37,0xdc,0x30,0x34,0xb7,0xbc,0x0b, + 0xee,0xef,0x5b,0x5e,0xb3,0x79,0x76,0x4b,0xb7,0x80,0xfd,0x7d,0x95,0xb4,0x36,0xd2,0x6e,0x5d,0x0d,0x98, + 0x7f,0x5f,0x4d,0x8d,0xbd,0xd4,0xaa,0x07,0xca,0x65,0xda,0xab,0x53,0x43,0xd7,0x88,0x98,0xab,0xd4,0xd6, + 0x04,0x03,0x6f,0x2d,0xc7,0xd7,0xd0,0xa0,0x85,0xfe,0x06,0x72,0xe4,0x42,0x9e,0xc9,0xb2,0x31,0x0a,0xa7, + 0x13,0x18,0x6e,0x84,0x59,0xab,0xb1,0xb4,0xfc,0xda,0xa5,0xc4,0x3a,0x5c,0xe2,0xc0,0x68,0xaa,0xf0,0x1d, + 0x94,0xa9,0x1b,0x6a,0x90,0x70,0xed,0x5a,0xbb,0xc5,0x60,0x89,0xe1,0x0d,0x35,0xc9,0xbf,0x83,0x7d,0xa7, + 0x51,0x4d,0x52,0x35,0x29,0xa0,0x44,0xc7,0xdd,0x6d,0x92,0xfd,0x53,0xcb,0x32,0x4c,0xc5,0x60,0x88,0x55, + 0x31,0x4d,0x44,0xe2,0x3d,0x56,0x20,0x70,0xdb,0x70,0xb4,0x53,0xcd,0x25,0x29,0x22,0x85,0x13,0xd7,0xd4, + 0xc8,0xb7,0x35,0x6c,0xe0,0x8e,0x9e,0xd8,0xb4,0x51,0xdd,0x3a,0x9a,0x1a,0x3e,0x60,0x5d,0x5b,0x4f,0xff, + 0x4b,0xe8,0x05,0xec,0xa5,0xc4,0x37,0x81,0xb1,0xe0,0x70,0x9c,0x87,0xbf,0xd6,0xc3,0x87,0xb9,0xa8,0x09, + 0xd1,0xc2,0x11,0x0a,0xd6,0x9c,0x1c,0xae,0x5b,0xf3,0x88,0x82,0x6d,0x18,0x70,0x43,0x4a,0x47,0x99,0x82, + 0x8e,0xb3,0xf8,0x2a,0x38,0xf4,0xff,0x25,0x1c,0x9f,0x5c,0x9d,0x1c,0x9c,0x6e,0x06,0x93,0x7e,0x70,0xb8, + 0xa8,0xb5,0xcd,0xa7,0xd0,0x7c,0x28,0xc1,0xa7,0x96,0xad,0x2b,0x67,0x9e,0x2b,0x51,0xf7,0x28,0xc7,0x53, + 0xc4,0xfb,0x59,0x6b,0xeb,0x6e,0xff,0x4e,0x00,0x67,0x01,0x9a,0xe2,0xb4,0xeb,0xc9,0xbd,0x58,0x52,0x2f, + 0xbc,0x22,0xbe,0xd2,0x42,0x3c,0x3d,0x4b,0x44,0x78,0xd6,0x89,0x42,0x8d,0x87,0xe2,0x1e,0x41,0xd7,0xd2, + 0x80,0x35,0x58,0xfc,0x39,0x47,0x33,0x83,0x16,0xbb,0x3a,0xea,0x7d,0x05,0x85,0x76,0x88,0xdc,0xc4,0xd2, + 0x3b,0x99,0xf5,0x58,0xc5,0x5d,0xfb,0x30,0x5c,0x45,0x75,0x81,0xe1,0x3c,0x5a,0xe9,0xb0,0x29,0xdc,0xb7, + 0x55,0xeb,0xf8,0x43,0x54,0x72,0x11,0xd1,0xaf,0xda,0xd7,0x98,0x4b,0x3d,0x91,0xc4,0xd0,0xf9,0x66,0x98, + 0xce,0xce,0xa3,0x61,0x2e,0xd5,0x1c,0x8a,0x46,0xa3,0xd8,0x9a,0x44,0xaf,0xd5,0x3c,0x08,0xe3,0x9a,0xf5, + 0x6b,0x2e,0x96,0x56,0xb4,0x6d,0x2e,0x57,0x53,0xf0,0x5b,0x23,0xde,0xe6,0x8c,0xda,0x40,0x2c,0xb5,0x16, + 0x50,0x94,0x8c,0x0a,0x6d,0x61,0x86,0x78,0xe9,0xad,0xb6,0xec,0x90,0x77,0x30,0x84,0xd9,0x60,0xee,0x76, + 0x72,0x1b,0x4b,0x14,0xac,0x4a,0x6d,0x3e,0x2b,0x81,0x26,0x40,0x18,0xd1,0x9f,0x8e,0x12,0xc4,0x1d,0x8d, + 0xb3,0xba,0x84,0x0e,0x38,0x3f,0x0d,0xa7,0xed,0x3e,0xed,0x40,0x6a,0x4d,0x21,0x6a,0xff,0x43,0x6d,0x35, + 0xc3,0x83,0x4f,0x87,0xf1,0xc1,0x41,0xef,0xfe,0xd1,0x30,0x80,0xea,0x9f,0xa3,0x92,0x1a,0xf7,0x3f,0x65, + 0x3e,0x7c,0xcf,0xaa,0xd6,0x78,0xfa,0xfa,0x25,0xd5,0xa8,0x4d,0xbb,0x43,0xc8,0x61,0xe9,0x57,0x5a,0x66, + 0x3a,0xb1,0xd1,0xe8,0x6a,0xa8,0xc8,0x94,0xe6,0x3a,0xdb,0x37,0xd9,0x80,0x62,0x3d,0xe1,0x8a,0xa5,0x0c, + 0xf1,0x45,0x79,0x33,0xbc,0xae,0xff,0x38,0xbc,0x6a,0x9d,0x96,0xa5,0x03,0xb2,0x0d,0x65,0xa9,0xca,0x2a, + 0x4b,0xe5,0xb5,0x7d,0xfd,0x2e,0x2c,0x52,0xf7,0x09,0x75,0x14,0xda,0x0f,0x74,0x73,0xda,0x9b,0x38,0xbb, + 0x75,0x6d,0xb0,0x33,0xdf,0xc7,0xd0,0xff,0xe5,0xf9,0x4e,0x5a,0x2a,0xc0,0x10,0x4b,0xe9,0xee,0x0a,0xb4, + 0x06,0x34,0x85,0xba,0xa7,0x05,0x8e,0x10,0xee,0x96,0xde,0x4d,0x1d,0x94,0x26,0x1b,0x65,0xdb,0xe1,0x24, + 0xc6,0x5c,0xa8,0x7d,0x30,0x74,0x60,0x33,0xa3,0x1d,0xb7,0xbb,0x6c,0xc9,0xcd,0xcb,0x06,0x3c,0xa3,0x8f, + 0x84,0xce,0xc5,0xca,0xff,0xec,0x62,0xb9,0xf4,0x7e,0x2a,0x67,0xd6,0x7b,0x56,0x06,0xbd,0xc9,0x55,0xd1, + 0xe2,0x43,0xda,0xa3,0xac,0xcf,0xff,0xd1,0xee,0x91,0x92,0x88,0x7a,0x5f,0x3d,0xbb,0xf6,0xba,0x96,0x0b, + 0xdf,0x34,0xd5,0x90,0x08,0x84,0x9e,0xd7,0xde,0x83,0xd3,0xce,0x09,0xb6,0x56,0x47,0x62,0xbe,0xbb,0x03, + 0x16,0x9f,0x0d,0x4b,0x0d,0x16,0xf1,0xb8,0x74,0xc1,0xa2,0xec,0x7f,0x56,0x6b,0xec,0x8d,0x6a,0xa9,0x58, + 0xca,0x8a,0xd7,0xc7,0x81,0xca,0x7d,0x8d,0x33,0x1c,0x70,0x99,0x0a,0xc5,0x41,0x6d,0x5b,0x78,0x88,0xe9, + 0xc8,0x4b,0xb9,0xc3,0x72,0xce,0xb7,0x60,0xb8,0xd9,0x6b,0x57,0x69,0x79,0x0c,0xc9,0xe4,0x4e,0x7f,0xef, + 0x0c,0x0b,0xdd,0x5f,0xf6,0x8f,0x50,0xf7,0xb7,0xe8,0xdf,0xb1,0x60,0x9c,0xda,0x7e,0x4d,0x75,0xc7,0xd2, + 0x8f,0x85,0x63,0x95,0xd8,0x9e,0x9b,0x40,0x33,0x69,0x7b,0xa6,0xdb,0xa8,0xd7,0x31,0x95,0x16,0x0b,0xb5, + 0x9d,0x5e,0xdf,0x1d,0xe6,0xba,0xd7,0x05,0x6c,0x8c,0xea,0x5e,0xe7,0xfd,0xbb,0xe6,0x8a,0xad,0x85,0xdd, + 0x8a,0xa0,0xc6,0x6c,0x4d,0x00,0x65,0x69,0x12,0xae,0x78,0x26,0x3b,0x4c,0x7e,0x75,0x93,0x8e,0xba,0x6c, + 0x30,0x1c,0x38,0x1f,0x9a,0x84,0xa4,0x55,0x25,0x7d,0x6d,0xe8,0x4e,0x75,0x10,0x8a,0x96,0xf7,0x73,0xa8, + 0x6d,0x42,0x70,0x90,0x3f,0xb6,0x2a,0x2b,0x6f,0xae,0x8c,0x1d,0x64,0x76,0xd4,0xd2,0x96,0xd0,0xec,0x6a, + 0x73,0x7d,0x4c,0x25,0xe7,0x83,0x75,0x95,0x2e,0x07,0xe2,0x13,0xf1,0xc6,0xde,0x76,0x0d,0xbe,0xc9,0x24, + 0x7c,0x60,0xf4,0x2d,0x36,0xe1,0xc6,0x49,0xb8,0xb1,0xd2,0xc6,0x00,0x76,0x6b,0xeb,0x9c,0x8c,0x3f,0x5d, + 0xd9,0x0d,0x93,0xd2,0x3d,0x88,0x9d,0xb9,0x11,0x4d,0x93,0xf4,0x77,0xdb,0x7e,0x07,0x41,0x62,0x88,0x55, + 0x78,0x19,0x4c,0x09,0x60,0x81,0xb4,0x89,0x4a,0x2f,0x03,0xc8,0x3b,0x61,0x6c,0xca,0x97,0x08,0x42,0xcc, + 0xe2,0x3b,0x5c,0x82,0xb9,0x1f,0x77,0xb9,0x04,0xa4,0xc3,0xba,0xa0,0xef,0x9d,0x9e,0x22,0x52,0x82,0x39, + 0x60,0x77,0x05,0xb8,0xe3,0xb5,0xc5,0x5f,0xf0,0xe7,0xf4,0xde,0x8c,0x2c,0x26,0xec,0xd0,0xae,0xf4,0x63, + 0x28,0x1d,0xab,0xa5,0xe6,0x9b,0x77,0x64,0x7c,0xa7,0xb3,0x1d,0x54,0xc0,0xdc,0x87,0xed,0xf8,0x0d,0xd5, + 0x8a,0xc2,0xa2,0xd4,0xe8,0x5e,0x77,0xec,0xcc,0x69,0x7d,0x10,0xb4,0x8f,0xc2,0x1b,0x25,0x36,0x2a,0xbb, + 0xf9,0x6c,0x2c,0xfe,0x2b,0xce,0x46,0x71,0x51,0x98,0xd8,0xb3,0xb1,0x80,0x89,0x7f,0x73,0x5e,0x66,0x9d, + 0xa4,0xc9,0x4d,0x38,0xfd,0xf8,0x66,0x9c,0x7e,0x3c,0xd1,0x86,0x15,0x2e,0xda,0xca,0x77,0xcc,0x94,0x8c, + 0xfd,0xc3,0x68,0x47,0x97,0x1e,0x86,0xda,0x23,0x89,0xfe,0x8c,0x4b,0x7e,0x18,0x16,0x71,0xd4,0x12,0x78, + 0x87,0xe0,0xda,0xf8,0x38,0x73,0xde,0x11,0x97,0x94,0x5e,0x38,0xea,0xaa,0x2f,0x05,0x39,0xe0,0xaa,0x98, + 0x2f,0x65,0xef,0x31,0x5f,0xca,0xc4,0x7c,0x49,0xca,0x04,0xaa,0xe3,0xfb,0xf1,0x44,0xb7,0xc6,0x56,0x4b, + 0x1a,0x1e,0x11,0xdc,0x9e,0x23,0x97,0xb6,0x10,0x8f,0x2b,0x51,0xf8,0x00,0xda,0x69,0xc8,0x14,0x6e,0x44, + 0x3a,0x37,0x54,0xd8,0xc0,0x12,0xed,0x9a,0x3a,0x11,0xce,0x9f,0xaa,0xe8,0x06,0x64,0xd3,0xd5,0xf5,0x9b, + 0x51,0x8d,0xb4,0xfc,0x7f,0x15,0xd1,0xb4,0x6f,0x83,0x6e,0x40,0x33,0x1d,0xd9,0x6a,0x24,0xe3,0x4e,0xe0, + 0x07,0x51,0x4c,0xf6,0x91,0x28,0xa6,0x51,0xe9,0x07,0x11,0x8c,0xe4,0xfe,0x30,0x7a,0x69,0xc9,0x72,0xff, + 0xdb,0x91,0x4b,0xf6,0x61,0xe4,0xd2,0xed,0x5a,0xe9,0xff,0x23,0x97,0x0e,0xe4,0x92,0x59,0xe4,0xa2,0x35, + 0x41,0xc4,0x50,0x40,0x8b,0x80,0x52,0x22,0xf8,0x9c,0x89,0x55,0x3f,0x04,0x34,0xcf,0xf1,0x65,0x9c,0x2e, + 0xe3,0xb3,0x74,0x99,0xe2,0x7b,0x74,0xdd,0x3c,0x2f,0xc3,0x77,0x8d,0x9b,0xc0,0xf0,0x14,0x4b,0xc3,0x1a, + 0xbd,0xcb,0xa5,0x1b,0xb7,0x17,0xbe,0x18,0xce,0x23,0x82,0xc2,0x4b,0x82,0x7d,0x4a,0xba,0x75,0x4b,0x03, + 0xdc,0xb9,0x49,0x31,0x26,0x96,0x03,0x2f,0xe0,0x11,0x55,0xa6,0x1a,0x09,0xc9,0xd4,0xd5,0xdf,0x77,0x54, + 0xba,0xee,0xad,0xb7,0x2f,0xfa,0xab,0xd7,0x04,0xa5,0xe1,0x4d,0x02,0x57,0x64,0x81,0x13,0x9b,0x2c,0x3a, + 0xbf,0xa1,0xca,0xac,0x51,0x65,0xb5,0x5b,0xdf,0xee,0xfd,0x98,0x7b,0xf3,0xf3,0x5f,0x02,0x7e,0x5a,0x6f, + 0xd5,0x58,0x64,0xd7,0xfc,0x14,0xb1,0x2d,0xc4,0x85,0x5a,0xb3,0xaf,0x36,0xad,0x5e,0xb9,0xbc,0xca,0x76, + 0x5b,0x5b,0x45,0xbc,0x7f,0x8c,0xd3,0x3f,0x36,0xc8,0x1d,0x06,0x27,0xed,0x62,0xcb,0x52,0xcb,0xe0,0xa4, + 0xee,0x30,0x53,0xb0,0x65,0x9a,0xcb,0x6f,0x0e,0x33,0x77,0xd8,0xb3,0x1c,0xe3,0xb4,0xd6,0x69,0xf9,0xce, + 0x38,0x55,0x66,0x47,0x5a,0xfc,0x91,0x91,0x26,0x7f,0x7c,0xa4,0x1a,0x59,0x36,0xfb,0x5a,0x30,0xf3,0x94, + 0x28,0xab,0xf7,0x5b,0xec,0xf0,0x8e,0x1f,0xdf,0xab,0xd9,0xff,0x2c,0x8c,0xd5,0x3c,0xb1,0xb1,0xd9,0x9b, + 0x39,0xd0,0xd5,0xc1,0xed,0x7e,0xec,0x38,0x3a,0xf6,0xde,0xff,0xec,0x38,0xb2,0x0f,0x8f,0x03,0x36,0xd7, + 0x6f,0xd3,0xcc,0x3f,0xc3,0xa3,0x35,0xfe,0xf3,0x3d,0xec,0x73,0x8e,0xd0,0x30,0xd5,0x51,0xdd,0xd9,0x71, + 0xd8,0x79,0x1d,0x7f,0xcc,0xbf,0x12,0x37,0x8b,0x57,0x5a,0x6b,0x87,0xfa,0x6b,0x55,0x07,0xc4,0x28,0xea, + 0x29,0x48,0xa1,0x97,0x55,0x41,0x85,0x17,0x84,0x29,0x87,0x85,0xd8,0x47,0x15,0x03,0x1d,0x4d,0x1c,0x98, + 0x51,0xe3,0xba,0xc8,0xfb,0xeb,0xe0,0xee,0xe0,0xae,0xa7,0xba,0x4c,0xb5,0x24,0xd2,0xf3,0xad,0x5b,0x3a, + 0xe2,0xf3,0x4f,0x88,0x41,0x53,0x3f,0x0f,0xd6,0x65,0xe2,0x3f,0x25,0xc4,0xac,0xd5,0x87,0xac,0xb5,0xcb, + 0x75,0x92,0x85,0xd7,0x1c,0x55,0x33,0xf4,0x5e,0x56,0x71,0x5a,0x94,0x9e,0x2a,0xdf,0x95,0x55,0x72,0xf1, + 0xf8,0x11,0xa5,0xf0,0x53,0xef,0xf1,0x23,0x4f,0xcd,0xd3,0xe2,0xe2,0x2a,0x2e,0x92,0x9f,0xa4,0x2f,0xa1, + 0xf7,0xb5,0x4e,0xe8,0xe9,0xde,0x85,0x3d,0x4f,0x4d,0xf3,0xd5,0x3b,0x89,0x9c,0xe1,0x3d,0x34,0x8f,0xbd, + 0xff,0xf8,0xf7,0xde,0x9d,0xa3,0xe3,0xbf,0xf6,0x9e,0xc6,0xc5,0x9b,0xde,0x65,0x9c,0xf5,0x7e,0x48,0xb2, + 0xf2,0x2a,0x5f,0xcf,0x68,0x5b,0x2d,0xf3,0x18,0x1e,0xb7,0x42,0xef,0xc5,0x32,0x81,0xe1,0x20,0x47,0x33, + 0xe8,0xe9,0xd4,0x9e,0x4c,0x94,0x0e,0xf9,0x3e,0x18,0x0c,0x3c,0xc5,0x2b,0xf5,0x25,0x07,0xdd,0x08,0xbd, + 0x07,0x78,0x69,0xa4,0xbd,0x8c,0x2f,0xb9,0x36,0xf9,0xe5,0x12,0x57,0xe9,0x3c,0xa5,0x81,0x55,0xeb,0x32, + 0xbc,0x8e,0xa7,0x70,0x50,0xb9,0xca,0xd3,0xac,0xb2,0x83,0x7e,0xf0,0x02,0x1d,0x9f,0xa5,0x65,0x7c,0x46, + 0x67,0x46,0xe8,0x3d,0xd2,0x4f,0x44,0x2d,0xb0,0xb7,0x8b,0x3c,0x43,0x74,0x3a,0x9b,0xfd,0xe7,0xf4,0xeb, + 0xf4,0x86,0x02,0x2a,0x45,0xa0,0x11,0xef,0xf1,0x0c,0x97,0xb6,0x59,0xfe,0xf2,0x25,0xcf,0x20,0xfd,0xed, + 0xc1,0x34,0x74,0x9e,0xd3,0xa2,0xd1,0xdc,0x4e,0xe3,0x0c,0x01,0x24,0x60,0x6a,0x41,0x85,0x5f,0xd2,0x6b, + 0x6f,0x6a,0xde,0x31,0x81,0x59,0x46,0xc0,0xf5,0x35,0x1d,0x9e,0xf8,0x2c,0xbf,0xbd,0x2a,0xef,0xe9,0x0f, + 0x36,0x07,0xf5,0xeb,0x49,0x5e,0xf2,0x3c,0x9b,0x77,0x9a,0xb6,0xb2,0xe2,0x9e,0xe9,0x3c,0xba,0x77,0xf6, + 0x0d,0xb1,0x39,0x4a,0x3d,0x15,0x55,0x7c,0xf6,0xca,0xae,0x3a,0xa5,0x78,0x4a,0x0f,0xf0,0xa1,0x04,0x78, + 0xe9,0x95,0x3a,0x99,0x8e,0xd2,0x97,0x55,0xb2,0x2a,0x5f,0x15,0x6b,0x64,0x4e,0xaa,0x1e,0x44,0xfb,0x88, + 0x32,0xff,0x8e,0xc6,0x54,0xb0,0x5e,0x7f,0x89,0x0c,0x75,0xd6,0xaf,0xa1,0x6c,0xda,0xce,0x0b,0xd7,0x6a, + 0x97,0xe9,0x6c,0x8d,0x20,0x12,0x34,0xb7,0x44,0x77,0x20,0x78,0x44,0xa3,0x27,0xaf,0x74,0x1a,0xfa,0x72, + 0x91,0x98,0x44,0x7a,0x94,0x84,0xc7,0xb8,0x52,0xc8,0x08,0x53,0x18,0x60,0xa1,0x69,0x85,0xb9,0x4a,0x5c, + 0xf5,0xf0,0xb9,0x67,0xaa,0xec,0x69,0x13,0x92,0x5e,0x9c,0x71,0xfb,0x28,0xd3,0xab,0xa7,0x6d,0x20,0xb5, + 0x3d,0xcb,0x39,0x22,0xb1,0xf7,0x2c,0x6f,0x95,0xd6,0x3b,0xab,0xf7,0x2e,0xa9,0x24,0xe7,0xd7,0xe9,0xdb, + 0x64,0x86,0x6e,0x00,0xe6,0xdf,0x62,0x39,0x6c,0x97,0x5e,0xae,0xb3,0x22,0xe5,0xb1,0xca,0x83,0x4d,0x2d, + 0xd1,0x4d,0xf9,0x35,0xa3,0xb9,0xd0,0x83,0xc1,0x4d,0xda,0x45,0x9a,0xad,0xab,0x84,0x06,0x7a,0x91,0xa3, + 0x4b,0x7a,0xa8,0x4f,0xf9,0xc5,0xdb,0x3a,0x6b,0xec,0x4e,0x4f,0xbd,0xd2,0xf5,0x62,0xd5,0x8b,0xcf,0x97, + 0x0f,0x49,0xc5,0xd3,0xe7,0xc2,0xb9,0xf7,0x55,0x06,0xf0,0xec,0x49,0x5a,0x8f,0x13,0x1b,0x39,0xbe,0xe5, + 0x5c,0x0f,0x96,0xcb,0xfc,0xaa,0x94,0x15,0xd5,0xe6,0xcd,0xce,0x9c,0xf5,0xe6,0x45,0x7e,0xd1,0x7b,0x97, + 0xaf,0x0b,0x9a,0x9e,0xcb,0x74,0x9a,0x00,0x24,0x81,0x9f,0x7b,0x82,0x33,0xb4,0x73,0x16,0x2e,0xde,0xd8, + 0xb4,0xbd,0xd5,0xba,0x58,0xe5,0x65,0x52,0x0e,0x7a,0xaf,0xce,0x13,0x93,0xbb,0x99,0x85,0x6a,0xd1,0xd4, + 0x22,0xd5,0x40,0xef,0xe7,0x55,0xb5,0x0a,0x0f,0x0f,0x8f,0xbf,0xb8,0x33,0x38,0xfe,0xfc,0x6f,0x83,0xe3, + 0xc1,0xa7,0x87,0xbd,0xab,0xf3,0x24,0x43,0xfb,0x3d,0x20,0x1c,0x0b,0xd0,0xe8,0x45,0x5a,0x51,0xd5,0x4c, + 0xef,0x54,0xbd,0x7c,0x3e,0xef,0xc5,0x65,0xaf,0xcc,0xe1,0xee,0xa2,0xec,0xe9,0xfd,0x8b,0xce,0x25,0x68, + 0xc5,0x34,0x9b,0xcc,0x14,0x3e,0x53,0x01,0x4a,0x64,0xb3,0xed,0x64,0x8a,0x54,0xac,0x4c,0x9c,0xbd,0x23, + 0x24,0xf4,0x6e,0xd0,0xfb,0x85,0x1a,0xc3,0xe6,0x8c,0x97,0xf4,0x5a,0xf6,0x2c,0x31,0xd8,0x13,0xb4,0xdd, + 0x03,0xbf,0x82,0xde,0x9e,0xbd,0xeb,0x41,0x6f,0x0b,0xe8,0xaa,0x3a,0x6f,0x4e,0x73,0x4f,0x47,0x07,0x5a, + 0x67,0xc4,0xb2,0xf2,0xd7,0x27,0x5f,0x3d,0xea,0x2d,0x81,0x14,0xcb,0xde,0x7a,0x45,0x80,0xe8,0x62,0x18, + 0xb3,0x50,0x6e,0xaf,0x1b,0x39,0x64,0xa1,0xf4,0x92,0x77,0xcd,0x3e,0xcd,0x06,0x2f,0x51,0x7e,0x95,0xf5, + 0x80,0xa7,0x7a,0x05,0x3b,0x2f,0x1a,0xf4,0xf4,0x7e,0xe1,0x98,0x54,0xdc,0x0f,0x60,0x25,0x45,0x20,0x53, + 0x12,0x1e,0x2e,0x66,0x34,0xe8,0x19,0x9d,0xb0,0x05,0x7d,0x69,0x2f,0xdf,0x59,0x42,0x60,0x81,0x8e,0x96, + 0xe9,0x4c,0x90,0x99,0xa7,0x4c,0x31,0xda,0x87,0xfa,0x89,0x90,0xce,0xf9,0x74,0x15,0x7a,0x3f,0x52,0x23, + 0x8f,0xbe,0x7d,0xf8,0x42,0xde,0x35,0x60,0xad,0xab,0xfc,0x02,0x5e,0x83,0xb0,0xf1,0x69,0xda,0xcb,0x74, + 0x91,0x95,0xd8,0x9a,0x8f,0x5f,0xf4,0x74,0x78,0xeb,0x6e,0x60,0x92,0x25,0x20,0x4a,0xe1,0x8c,0xa6,0x05, + 0x8b,0x42,0x13,0x4a,0x19,0xdf,0x24,0xc9,0x4a,0x2f,0x04,0x66,0x76,0x89,0xf2,0x00,0x0c,0x58,0x57,0x10, + 0x98,0x10,0x32,0xa0,0xb7,0xdb,0x04,0x25,0xb3,0x1c,0x47,0x00,0x61,0xe5,0x95,0x6e,0x86,0x50,0xb3,0x6d, + 0x92,0x46,0xb4,0x3e,0x23,0xbc,0x70,0x11,0x97,0x6f,0xb0,0x51,0xf1,0xdc,0xc3,0x8b,0xa7,0x16,0x74,0x12, + 0xd3,0x92,0x87,0xde,0x37,0xf2,0xe0,0xa9,0x73,0xc2,0xab,0x62,0xea,0xf6,0xad,0x7e,0xaa,0xd3,0x5e,0xd4, + 0xae,0x59,0x09,0xd9,0x6a,0xeb,0x36,0xaa,0x69,0x6a,0x5b,0xda,0xea,0xf3,0xb4,0x81,0x73,0x39,0x85,0x4e, + 0x89,0x6a,0xe5,0xa0,0xb9,0x1e,0xb4,0xcb,0x88,0xd5,0xcd,0xe8,0x44,0xe1,0xd9,0xf7,0x9f,0xbd,0x7a,0x11, + 0xd0,0x84,0x13,0x4b,0xa3,0xb3,0x7d,0x1b,0x17,0x33,0x3e,0x74,0x29,0x2d,0x47,0x8c,0xbf,0x8b,0x78,0x65, + 0xbe,0x7d,0x93,0xe7,0x0b,0x82,0x82,0xa7,0x94,0xd2,0x7b,0xf0,0xe2,0x71,0x7d,0x64,0xeb,0xef,0xf6,0xc0, + 0x16,0x52,0x85,0x5b,0x7f,0x42,0xcc,0x97,0x47,0x7f,0xd2,0x8a,0x8f,0x63,0xa4,0xe0,0xfc,0x7c,0x92,0x67, + 0x0b,0x27,0x89,0x88,0x55,0x46,0x46,0xde,0x37,0x34,0x4b,0x4b,0x9d,0xbb,0x77,0x48,0x07,0x8e,0xce,0x26, + 0xf8,0x61,0xa9,0xf3,0x35,0x0a,0xbd,0x4c,0xe2,0x62,0x7a,0x8e,0xd3,0x00,0xbf,0x3c,0x18,0xda,0x05,0x74, + 0xea,0x7a,0x0f,0x64,0xab,0xbc,0xe0,0xad,0x22,0xc7,0x0d,0x6f,0x10,0xca,0xd1,0xf3,0xfb,0x44,0xe8,0x5c, + 0x06,0x26,0xfb,0xcb,0x57,0x0f,0xe4,0xa0,0xc2,0xac,0x3c,0xc5,0x76,0x7e,0x4f,0xfe,0x07,0x2f,0x0c,0x81, + 0xa0,0x77,0x54,0xa3,0x21,0xbd,0x27,0xb9,0xd0,0x8a,0x58,0x74,0xea,0xf5,0x95,0x94,0x7b,0xf1,0xf3,0xd3, + 0x47,0x05,0x91,0x75,0xc5,0xcb,0x47,0xd4,0xda,0x8b,0x87,0x0f,0xbe,0xf8,0xfc,0x6f,0x9f,0xf5,0x28,0xb5, + 0x37,0xe3,0xe4,0x1e,0xa5,0x4b,0x39,0x68,0x18,0xb6,0xcb,0x3c,0x7c,0xd2,0x5d,0xe6,0xe1,0x13,0x29,0x33, + 0x85,0x3b,0x44,0x14,0xba,0xba,0x78,0x60,0xe0,0xb1,0x23,0xff,0xe3,0xff,0xf8,0xdf,0x0f,0x6b,0x20,0xa5, + 0xcc,0x5f,0xe3,0x34,0x4b,0xb2,0xe9,0xbb,0xce,0xec,0x73,0xf3,0x55,0x20,0x81,0x96,0xfd,0xfb,0xe4,0xdd, + 0x0e,0x28,0xd0,0xa6,0x69,0x64,0x38,0xe7,0x9d,0xf9,0x7c,0x25,0xf6,0x9a,0x83,0x9e,0x3e,0xf3,0x69,0x97, + 0xe5,0x19,0xfd,0x21,0x5a,0x71,0xc6,0xa8,0xdc,0x5c,0xa5,0x02,0xb9,0xc5,0x76,0x79,0x7b,0x80,0x7b,0x41, + 0xbd,0xb7,0xcb,0x4e,0x70,0x50,0xb4,0x11,0xd3,0xe9,0x39,0xef,0xcb,0xab,0x94,0xe6,0xf8,0x82,0x76,0x0b, + 0x21,0xbe,0x37,0x89,0x69,0x62,0x96,0xf7,0xe0,0x56,0x73,0x40,0x78,0x8a,0x3e,0x13,0x0e,0x79,0xd3,0x43, + 0x38,0x2b,0x02,0x69,0xa0,0x06,0xdd,0x65,0x85,0xc5,0xea,0xe9,0xb1,0x5c,0x30,0x2d,0x09,0x49,0x50,0x45, + 0xd0,0x2c,0x88,0x8e,0x07,0x5f,0x56,0x03,0x10,0x36,0xd9,0xd2,0xd2,0x68,0xaf,0x8a,0x78,0xb5,0x43,0xc5, + 0x7e,0x1c,0x19,0x9b,0xfc,0x73,0x54,0xec,0x57,0x74,0x4a,0xe5,0x8b,0x24,0x3b,0xa3,0xb1,0xf6,0x16,0x09, + 0xa1,0x31,0x3a,0x6a,0xce,0x92,0xdf,0xd3,0x05,0x51,0xdc,0xd8,0x3a,0x33,0xca,0x70,0xc9,0x24,0x9f,0xc5, + 0xb2,0xc9,0x2e,0x61,0xfb,0x2a,0x4f,0x80,0x64,0x93,0xac,0x93,0xb8,0xfd,0xd2,0xd6,0x97,0xaf,0x68,0x75, + 0xe2,0xec,0x4f,0xd1,0xb9,0x3f,0xa6,0x15,0xd1,0xff,0xd3,0xf3,0x98,0x16,0xe5,0xe3,0x89,0xdd,0x66,0x29, + 0x4d,0xf1,0xbe,0xa4,0x4e,0xac,0x60,0x8d,0x3d,0x6b,0xd3,0xbd,0x29,0x75,0x72,0x91,0x5c,0xe6,0xc4,0xae, + 0x64,0xdd,0xb4,0x6f,0x3c,0x27,0xa2,0x2b,0xcf,0x76,0x49,0xdf,0xef,0xe9,0xe3,0x22,0xc1,0x74,0x25,0x85, + 0x76,0xcb,0x4c,0x68,0xf5,0x0d,0xea,0x69,0x93,0xc0,0x3f,0xd5,0x39,0x28,0xf3,0x32,0x2f,0x90,0xa9,0x49, + 0x06,0x3f,0x43,0x4f,0x50,0x93,0x74,0xe5,0x63,0x08,0xe1,0x6f,0xd7,0xe9,0x2c,0x5d,0x24,0x37,0x10,0xc2, + 0x44,0x2f,0x81,0x66,0x4c,0xb0,0xa0,0xb3,0xe4,0xf7,0x64,0x39,0x07,0x8d,0xa1,0xa9,0xdd,0x24,0xad,0x76, + 0xa8,0xe1,0x57,0x92,0xd7,0x90,0xc1,0x49,0xb2,0x64,0x13,0xf6,0x84,0xea,0xc9,0xfe,0x18,0x3d,0xfc,0x7a, + 0xd6,0xa6,0x87,0x9f,0x30,0x2c,0xf4,0x08,0x2d,0xf5,0x2e,0x73,0xec,0x5b,0xca,0x53,0x13,0xb4,0x49,0x52, + 0xd3,0xc1,0x97,0x8d,0xa9,0x4a,0xe0,0x8f,0x28,0x2d,0x77,0x28,0xe2,0x85,0xcc,0x7c,0xb3,0x9a,0x45,0x62, + 0xe9,0xa7,0xa4,0x98,0xed,0x90,0xc6,0x3f,0xc5,0x25,0xa8,0x71,0xdb,0x3b,0x4b,0x1a,0xff,0x0a,0x97,0x77, + 0xab,0x37,0xf9,0x45,0x59,0x35,0xc9,0x63,0xfe,0x00,0x8d,0xa7,0x45,0x0c,0xfd,0x19,0x97,0x4a,0x7e,0x3d, + 0xab,0xa9,0xe4,0xac,0x45,0x25,0x7f,0x99,0x5c,0x25,0xd0,0x80,0xbf,0x91,0x4e,0xae,0xc1,0xc1,0xae,0xa5, + 0x03,0x21,0xee,0xce,0x6b,0x51,0xca,0x0f,0x5c,0xda,0x8d,0x16,0x47,0xc0,0x9c,0x77,0x61,0x9d,0x4d,0x70, + 0xe7,0xd3,0x38,0x7e,0x53,0xf5,0xce,0x41,0x34,0xd0,0x7e,0x5f,0xa6,0xaf,0x89,0x16,0xbc,0xe0,0x99,0x16, + 0xda,0xd9,0x12,0xa9,0x69,0x82,0xfd,0x1e,0xcf,0xf9,0x1b,0x6d,0x66,0xa2,0xd2,0x69,0x95,0xb2,0x38,0x2e, + 0x18,0x6c,0x7a,0xc0,0x55,0x96,0x7e,0x4b,0x04,0xc2,0x51,0x15,0x41,0x53,0x9d,0x6a,0x27,0x1e,0x4e,0x7d, + 0x7b,0x8f,0x9a,0xa5,0x88,0x12,0xa2,0x2c,0x67,0x49,0x46,0xc8,0xa5,0xc0,0x7e,0x49,0xe3,0x4e,0x12,0x9a, + 0xbe,0x53,0xcb,0xaf,0xdd,0x9e,0x9d,0x27,0x67,0xd8,0x9f,0x17,0x18,0xcc,0xa0,0xf7,0x52,0xc6,0x2b,0xfd, + 0x02,0x95,0x4b,0x94,0x42,0x8a,0xbe,0xf2,0x38,0xdd,0x3e,0x10,0xf9,0x8c,0x80,0xc3,0xbf,0xa7,0x1a,0xf8, + 0x65,0xa3,0x9f,0x25,0x97,0x49,0x4a,0xd4,0xed,0x0c,0x20,0xd5,0xfb,0x2e,0xe9,0xbd,0x21,0xc2,0xd7,0xad, + 0x2d,0xcf,0xdf,0xb8,0xd3,0x4a,0x87,0x00,0xc1,0x2a,0xe0,0xd6,0x1e,0xd1,0x32,0xf5,0x44,0xca,0xad,0x30, + 0xa6,0x59,0xb1,0x7e,0x83,0xe9,0xa8,0xf2,0x0a,0x5d,0x9f,0x09,0xfd,0x1c,0x03,0x31,0xd0,0x24,0xb6,0xc9, + 0x67,0x67,0x8d,0x81,0x1b,0x99,0x00,0xd6,0x08,0xc3,0xc9,0x27,0xcb,0xa7,0xf3,0xee,0x2e,0x01,0x2a,0xa7, + 0x29,0x4a,0x68,0xe3,0xb7,0x68,0xe8,0x9f,0xd6,0xcb,0xde,0x79,0xca,0xb8,0x8a,0xce,0x5d,0xcc,0x08,0xa3, + 0x38,0xca,0x76,0x15,0x4f,0xcf,0xab,0xab,0x1c,0x84,0x74,0x4a,0x53,0x93,0xd4,0xd8,0x9d,0x36,0x4a,0x8f, + 0xe3,0x84,0xae,0x79,0x5a,0x7b,0x39,0xed,0x39,0xa0,0x14,0x9e,0x8e,0xf2,0x46,0xb2,0xfa,0x67,0x5b,0xa1, + 0x21,0xac,0xbf,0x49,0xce,0x8a,0x35,0x1d,0x29,0x35,0x71,0x7d,0xde,0x20,0xae,0x69,0x4e,0x19,0xc0,0x98, + 0xc0,0x25,0xd2,0x81,0xa6,0x2c,0xb9,0x4a,0x5f,0xff,0x0e,0x98,0x8b,0xb3,0x9d,0x61,0xd2,0xb1,0x4b,0x00, + 0x48,0x85,0xd2,0xd7,0x19,0xc3,0x2e,0x1d,0xd2,0x18,0xb6,0xb3,0x56,0x28,0x06,0x25,0x2a,0x1a,0x10,0xfd, + 0xf9,0x3d,0x7d,0x8d,0xef,0x57,0x09,0x0d,0xfb,0x0a,0xb0,0x4b,0x2f,0x17,0x49,0xa2,0x8f,0xb6,0x33,0xf8, + 0x4c,0xd8,0x25,0xb4,0x8b,0xe4,0x66,0x32,0x3b,0x29,0x3e,0x86,0xd0,0x8e,0x2f,0x6e,0x20,0xb4,0x5f,0xe2, + 0xb0,0xa1,0x7e,0xcc,0x0c,0xa9,0x8d,0xb6,0x6e,0x24,0xb4,0xdb,0x94,0x36,0x61,0x97,0x06,0xa5,0x9d,0xbc, + 0x8f,0xd0,0x8e,0x41,0x02,0xd1,0x3e,0x20,0xb8,0x62,0x54,0xf4,0x27,0xe8,0xed,0xb3,0xf4,0xf5,0x55,0x52, + 0x30,0x24,0x1a,0x92,0xfb,0x4b,0x82,0x8d,0x59,0x95,0x2c,0x08,0x1b,0xcc,0x1c,0xb2,0x1b,0x02,0x4c,0x37, + 0xd1,0x12,0xde,0x6e,0x7e,0x50,0x5a,0x75,0x46,0x5a,0xaf,0xf3,0x18,0xbb,0x89,0xf6,0xcc,0x59,0x5c,0x12, + 0x36,0x00,0x7d,0x21,0xb4,0x5a,0xd2,0x49,0x89,0xff,0x9a,0x27,0xdc,0x97,0x3f,0x4f,0x89,0xf3,0xc6,0xf8, + 0x28,0x0a,0xbc,0x51,0xb3,0xbb,0xf7,0x79,0x8f,0x73,0xb9,0x18,0xa8,0x68,0x4e,0xc0,0x16,0x2f,0xfe,0x27, + 0xe8,0xf0,0x37,0xcb,0xfc,0xff,0x45,0x32,0x9c,0xe8,0x01,0xda,0x95,0xb4,0xe5,0xe5,0x24,0x4f,0x71,0xb0, + 0x40,0x6a,0x4d,0xe8,0x04,0x38,0x79,0x21,0x08,0xa0,0x32,0xa7,0x8c,0x5e,0x5f,0x60,0x49,0x6a,0xbf,0x62, + 0x00,0xe0,0x43,0x05,0x1f,0xcf,0x04,0x58,0x0e,0x9a,0x80,0x42,0x44,0xb9,0xe0,0xff,0xab,0xe6,0xde,0xbf, + 0x40,0xb1,0xff,0xfc,0xf7,0xff,0xfc,0xf7,0x0c,0xbc,0x75,0xd1,0xcb,0x72,0x22,0x7b,0xf8,0x68,0xa0,0x0e, + 0x11,0xd8,0x56,0x8c,0xb7,0x7f,0x17,0xbc,0x67,0x29,0x73,0xa0,0x58,0xc2,0x68,0x6f,0x68,0x77,0x30,0xdd, + 0xa1,0x87,0xfa,0x9a,0xfb,0xf3,0x3b,0x41,0x18,0x93,0x02,0x72,0x32,0xf2,0xe9,0x40,0x18,0x89,0x20,0x26, + 0x66,0x62,0x7d,0x5b,0xbb,0xd5,0xe5,0x08,0x56,0x0f,0x56,0x2b,0x2b,0xf5,0xc7,0x45,0xb4,0xf6,0xab,0x58, + 0x1b,0x28,0x12,0xe5,0x4b,0xd8,0x22,0x2f,0x06,0x4b,0x3a,0x77,0xd6,0xf1,0x22,0x69,0x5b,0x0b,0x7a,0xbc, + 0x37,0x8d,0xed,0xa1,0xb5,0xd5,0x08,0x86,0xba,0x3a,0xff,0x3a,0x59,0x86,0xde,0x5f,0xe8,0x00,0x26,0x3c, + 0x45,0x55,0x87,0x95,0x62,0x5b,0xbe,0x6b,0x43,0xba,0xef,0x1d,0xa9,0x52,0xe8,0xeb,0xbd,0x63,0xfd,0xc4, + 0xd4,0x1b,0x5e,0x75,0x9e,0xc7,0x74,0xb8,0x4c,0xd1,0x8b,0xd0,0xdb,0x78,0x6a,0xbd,0x42,0xf2,0x8b,0x22, + 0x5f,0x30,0x10,0x51,0xb6,0x98,0x2f,0x05,0x5e,0xc5,0x67,0xf0,0x60,0x2b,0x34,0xa3,0x11,0x8d,0x5f,0xd7, + 0xcc,0x88,0xae,0x8c,0x69,0x76,0xf3,0xd9,0x4d,0xdc,0x36,0x29,0xf9,0x55,0x78,0x9d,0x64,0x42,0x7c,0x53, + 0x13,0x29,0x9d,0x05,0x47,0x03,0xfe,0xbf,0x26,0xd9,0x1b,0x39,0x34,0x59,0x7b,0xd4,0xcc,0x4a,0x79,0x79, + 0xf3,0x53,0x1b,0x16,0xa7,0x50,0x66,0x87,0xe8,0x04,0xe1,0xe5,0xd6,0xc3,0xac,0x5f,0x2a,0x64,0x17,0x7d, + 0x3a,0xaa,0xf3,0x8e,0xe1,0x65,0xc7,0xa5,0xbc,0x2c,0xd6,0x66,0xc5,0x47,0x97,0xa2,0xc2,0xa4,0x56,0xb6, + 0x35,0x3e,0xec,0x38,0x8f,0x3d,0xea,0xf8,0x8d,0x8f,0xb8,0x3d,0xee,0x31,0xbf,0x3b,0x47,0x06,0xbf,0x9b, + 0x73,0x82,0x0d,0x2b,0x2c,0x8e,0xa7,0xc3,0x49,0x3e,0x2f,0x69,0xcd,0xa4,0x56,0xc2,0x2f,0x94,0x9e,0xcc, + 0x08,0xa5,0xc9,0x97,0x64,0x06,0x74,0x25,0xdd,0x5a,0x69,0x94,0x24,0x59,0xaf,0x2e,0x80,0x5c,0xec,0x33, + 0x21,0x0d,0xa9,0xdd,0x41,0x0b,0xe6,0x63,0xbd,0xf3,0x39,0xc5,0xdd,0xdf,0xb4,0x06,0x86,0xca,0xc7,0x00, + 0xcc,0x33,0x1b,0x9c,0x84,0x18,0x3b,0x3e,0x8c,0x27,0x6a,0x69,0xf1,0x38,0x88,0x56,0xf6,0xa2,0xb0,0x13, + 0xa6,0x48,0x9b,0x7b,0x5b,0xf7,0xe2,0x4c,0xb9,0xc2,0x9b,0x90,0xef,0xf1,0xa3,0x67,0xec,0xbe,0xf5,0xa5, + 0x8e,0xa9,0x13,0xe6,0x18,0xe7,0xc6,0xe2,0xe2,0x58,0x62,0x5e,0x25,0x03,0x0b,0x8b,0x4e,0x20,0xc1,0x27, + 0x2d,0x30,0x86,0x96,0xe6,0x40,0x64,0x41,0x40,0xe8,0x02,0x72,0x9c,0xa8,0xf9,0x3d,0x1e,0x0c,0x1b,0x9c, + 0xe2,0x32,0x1d,0x21,0x27,0x9c,0x8d,0x01,0xb0,0x28,0x90,0x1a,0xbf,0x4d,0x73,0xb6,0xe6,0xf3,0xbd,0xc3, + 0x78,0x95,0x1e,0x6a,0xa0,0xf6,0x82,0x41,0x75,0x9e,0x64,0x0d,0xff,0x3b,0xbb,0x7e,0xac,0xb5,0x53,0x22, + 0xea,0xb1,0xb9,0xe3,0x92,0xa4,0x60,0x1b,0x0c,0xc4,0x0d,0x9b,0x5b,0xde,0x78,0xcf,0x5e,0xe6,0x0b,0x28, + 0xb8,0x04,0xba,0x6d,0xb8,0x07,0x1e,0xb7,0xbb,0x51,0x43,0xe8,0x1f,0xed,0x49,0x5d,0xf2,0xcf,0x74,0xa6, + 0xee,0x81,0x40,0xea,0x1f,0x6d,0x5d,0x4a,0xfd,0x73,0x2d,0x9b,0xbd,0x7a,0xc8,0x37,0x15,0x7f,0xb0,0x03, + 0xa6,0xf0,0x00,0x85,0xff,0xc9,0x19,0xe0,0x7b,0xa1,0x8e,0xf6,0x77,0xec,0xb0,0x74,0x33,0xee,0xe5,0xee, + 0x1e,0x5c,0x16,0x01,0xe7,0xb1,0xc7,0x1d,0xb6,0xfe,0x38,0x1a,0xc6,0xf7,0xb4,0x53,0x26,0x6d,0x1e,0x1c, + 0xd7,0x51,0x61,0xe4,0x03,0x94,0xb6,0xd8,0xf1,0x44,0x31,0x2a,0xa2,0x32,0x2c,0xf7,0x24,0x48,0x74,0xc6, + 0xd1,0xbc,0xf3,0x86,0x47,0xa1,0x12,0xf1,0x12,0xfa,0x51,0xb9,0xc5,0xfe,0x48,0x38,0xee,0x45,0x32,0x68, + 0xec,0x61,0x71,0xc9,0x3d,0x5f,0xe6,0x70,0x70,0x74,0x68,0x7c,0x5d,0x05,0x4e,0xb6,0x08,0x6a,0x21,0x13, + 0x3d,0x42,0x19,0x7e,0xb9,0xa2,0x0d,0x3e,0x73,0xbd,0x4a,0x65,0x1c,0x82,0xb7,0xca,0x57,0x9d,0x3b,0x50, + 0xe3,0x7e,0xea,0xe0,0x16,0x36,0xae,0xfa,0xda,0x17,0xa8,0x7f,0xb5,0x7c,0x57,0x5f,0xf0,0xdc,0x70,0x3f, + 0x5e,0xe9,0x3d,0xc9,0x0e,0xc8,0xe4,0x11,0x33,0x27,0x5d,0x41,0x80,0xef,0xdd,0xed,0xa0,0x6a,0x8c,0x5d, + 0x39,0xc0,0x3e,0x30,0xa9,0x0d,0x14,0xde,0xc8,0xe1,0x7c,0xb0,0x88,0xbd,0x91,0x41,0x27,0x0a,0xaa,0x6f, + 0x7e,0xa1,0x94,0x1a,0xef,0x37,0x3e,0x99,0x54,0x39,0x08,0x1a,0x9f,0x90,0x82,0x73,0xa1,0x91,0x98,0xae, + 0xdc,0x23,0xa2,0xd9,0x8a,0x4d,0xb7,0xa7,0x46,0xe3,0xbb,0x4e,0xdc,0x76,0x80,0xe4,0x47,0x41,0x78,0xab, + 0x18,0x2c,0xb6,0xcd,0x9c,0xcb,0xea,0xf1,0xa2,0x89,0x74,0xff,0x9f,0x5c,0x30,0x8d,0x3d,0x10,0xee,0x95, + 0x9f,0xfe,0xdb,0xba,0xdc,0x79,0x36,0xdc,0xd8,0x79,0x0d,0xad,0x74,0x58,0x2c,0x12,0xda,0x98,0x36,0x41, + 0x8e,0x83,0x32,0xa9,0x58,0x2a,0x45,0x1b,0xcc,0x6d,0x52,0x3b,0xb2,0x6a,0x96,0xee,0xf7,0x55,0x33,0x41, + 0xfb,0x35,0x3e,0x0e,0x6d,0xb2,0xed,0x4e,0xe4,0x1d,0x7a,0x8e,0xcf,0xaa,0xde,0x9d,0xce,0x3c,0x07,0x8d, + 0x3c,0x77,0x3b,0xf3,0x9c,0x9c,0x34,0x32,0x7d,0xda,0x99,0x69,0xe3,0xa9,0xf6,0x48,0x89,0xe6,0xb9,0xf3, + 0xd9,0x11,0x4f,0xd7,0xee,0x3e,0x76,0x67,0x6b,0xba,0x24,0x4a,0xcb,0x4e,0x82,0x56,0x09,0xac,0xa7,0x88, + 0x6a,0x20,0xfc,0x68,0xce,0x5b,0x70,0x65,0x42,0xb0,0x75,0x79,0x1b,0xa8,0x09,0x41,0xb3,0xb1,0x06,0x9a, + 0x42,0x33,0x26,0x6d,0xae,0x90,0xd3,0x33,0xfe,0xc2,0x6e,0x2a,0x2b,0xa4,0xa1,0x9e,0x65,0xed,0xbd,0xf9, + 0x8e,0xf1,0xd2,0x6c,0x36,0x49,0xb6,0xd0,0xfe,0x9f,0xb5,0x77,0x69,0xed,0x4c,0xda,0xba,0x88,0x16,0x95, + 0x4b,0x33,0xc3,0xcd,0xc2,0xe8,0x83,0xf8,0x84,0x0e,0x8d,0x9f,0xc7,0xae,0x7e,0x6e,0xbb,0xa7,0xe0,0x15, + 0x22,0xc7,0xfd,0xa9,0x69,0xe8,0x31,0x95,0xb4,0x9b,0x0d,0xf2,0x1e,0x43,0xcb,0xcc,0xbc,0xe0,0x0f,0xce, + 0xcf,0x47,0xd4,0x0d,0xf1,0x37,0xd5,0xab,0xe7,0xeb,0x23,0x0a,0x88,0x74,0xdc,0x14,0xb9,0xf3,0x31,0x45, + 0x1a,0x42,0x73,0x53,0xf2,0x6e,0xe8,0xaa,0x27,0x76,0x8c,0x25,0x5d,0x19,0xf8,0xfe,0x88,0x26,0x1a,0x92, + 0x77,0xd3,0xc4,0x67,0x7f,0xa0,0xa4,0x96,0xc4,0x9b,0xa2,0xed,0xe5,0xff,0xd0,0xfa,0xd4,0xa0,0x01,0xe7, + 0x89,0x6d,0x8a,0xf4,0x03,0x78,0x74,0x44,0x38,0x07,0x3b,0x2b,0x5f,0xc3,0x25,0x77,0xbb,0xb0,0xfa,0x2c, + 0xb9,0x1b,0x84,0x37,0xd3,0x86,0x87,0x9a,0x53,0x6b,0xa3,0xc9,0xce,0xe8,0x34,0x86,0x46,0xaa,0x9c,0x19, + 0x8f,0x92,0x3f,0x40,0x20,0xed,0xe0,0xe2,0x0f,0xf7,0x1d,0x0a,0xf8,0xc2,0x6a,0x1a,0x71,0xd2,0x0d,0xf3, + 0xc1,0xdb,0x45,0xcf,0x89,0x8b,0xe4,0x81,0xa3,0x9b,0xbc,0x6a,0x74,0xa4,0x1d,0xcc,0x83,0x37,0x86,0x02, + 0x2e,0xc4,0xfe,0x43,0x13,0xb2,0xc8,0xf7,0xe6,0x29,0x14,0x98,0x2c,0x23,0x42,0xd3,0xa6,0x83,0x1c,0x7d, + 0xf9,0xee,0x31,0x7f,0x96,0x7e,0x7c,0x8d,0x6c,0xec,0x18,0x35,0x29,0xa1,0x7a,0xab,0xd9,0x13,0x66,0x25, + 0x69,0x40,0xe1,0xdd,0xcf,0x93,0x4f,0x55,0x9e,0xfd,0xd8,0xe4,0x93,0x9b,0xee,0x4e,0x5a,0x1d,0x63,0x72, + 0xab,0x80,0xa2,0x94,0x7f,0x7c,0x74,0xf4,0x89,0xd0,0x46,0xc9,0xec,0x10,0x6e,0xd1,0xab,0x18,0x5e,0x67, + 0x87,0x3b,0xe7,0xa4,0xe9,0x8e,0xc7,0x4a,0xed,0xbb,0x87,0xa4,0xbb,0x06,0x9e,0xf8,0x50,0xe9,0x95,0xf0, + 0x34,0xff,0x27,0x97,0x6c,0xa7,0xd3,0x60,0x96,0xeb,0x23,0xf5,0xc3,0xf3,0x46,0x73,0x46,0xe5,0x08,0x16, + 0xb1,0xb6,0x5b,0x61,0x12,0x35,0x93,0xf5,0xa1,0x53,0x17,0x7e,0x9f,0x3b,0x78,0xb3,0xcd,0x66,0x4f,0x82, + 0xec,0xb4,0xd9,0x33,0x86,0xd5,0x1d,0x9e,0xcd,0x01,0xba,0xd6,0xb8,0x30,0x39,0x9c,0x11,0x5e,0x66,0xee, + 0x1c,0x1d,0x05,0x81,0xd9,0x8e,0xc2,0xe3,0xde,0x08,0x79,0x8d,0x56,0x04,0xe6,0xba,0x58,0xc5,0xce,0xde, + 0x4b,0x76,0x43,0x50,0xdf,0x10,0x8a,0x9c,0x67,0xc9,0x0d,0x48,0xde,0x74,0x0e,0x5a,0x35,0xe9,0xf6,0x6d, + 0x30,0xd4,0x45,0xa2,0x44,0x5c,0x31,0xe8,0xf0,0x88,0xec,0xcf,0xe0,0xc6,0x3a,0x8b,0x7e,0xa4,0x53,0xc7, + 0x99,0x8e,0x7a,0x3d,0xac,0x6e,0xe6,0x08,0x8a,0xc3,0x66,0x1d,0x12,0x5f,0x2f,0x35,0x2e,0x0a,0x6f,0x6c, + 0x26,0xd5,0x8e,0x9e,0x5a,0x4d,0xa1,0xcf,0x37,0x30,0xde,0xbb,0xc4,0xa1,0x28,0xdc,0x5d,0xb7,0xa4,0x34, + 0xc7,0xc9,0x5d,0x71,0x6d,0x8a,0xd8,0x1d,0xff,0xe5,0x04,0xa3,0x5e,0xdc,0x63,0xa0,0x24,0x11,0x27,0x59, + 0x59,0xd2,0xcd,0x70,0x2b,0x19,0x04,0x10,0xdb,0x22,0xa8,0x9a,0xee,0x65,0xd4,0x8c,0x4b,0xab,0x32,0x3c, + 0x3c,0x84,0x84,0x65,0xb0,0x60,0x79,0x22,0x8d,0xb5,0x84,0x32,0x2d,0xa7,0xf1,0xc8,0x17,0x49,0x8e,0xd0, + 0x67,0x87,0xaf,0x4b,0xe6,0x64,0x74,0xa0,0xa6,0x6b,0x73,0xf3,0x50,0x37,0xa9,0xde,0x24,0x20,0xfe,0x85, + 0x78,0x1e,0xd4,0x52,0x9b,0xed,0xce,0x08,0x93,0x0e,0x7e,0x54,0xb0,0x3a,0x36,0x2a,0x1d,0x63,0x65,0x00, + 0x2f,0xb2,0x6e,0x82,0xf5,0x7a,0x5c,0xc7,0x02,0x72,0x3f,0xc3,0x1e,0x83,0x3a,0x4a,0xac,0x5c,0xf1,0xce, + 0x76,0x68,0x68,0x3b,0xb3,0x8c,0x2b,0x8e,0x7d,0x5c,0xa9,0x3a,0x89,0x90,0x47,0x86,0xbf,0xdb,0x3f,0xbd, + 0x46,0xbb,0xb3,0xcb,0xf4,0xfd,0x56,0xb1,0xc3,0x29,0x9a,0x22,0x23,0xa9,0xba,0x26,0xc0,0x22,0xc2,0xa5, + 0xd8,0xf1,0x66,0xee,0xa2,0x22,0x60,0x00,0x5c,0x92,0xb0,0x1b,0xee,0xa6,0x60,0xeb,0x8f,0x97,0x2f,0xff, + 0x58,0xbb,0xda,0x39,0x97,0xd3,0xbe,0x95,0xac,0xba,0x93,0xd2,0x25,0x08,0x8b,0xbc,0xbf,0x78,0xfd,0x0a, + 0x3a,0xdb,0xdb,0xff,0x03,0xa5,0x65,0x38,0xca,0x65,0xee,0x01,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 3b15925..8bd50d0 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -8,6 +8,6 @@ const uint8_t VersionMetadata = 17; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; const char VersionFullSemVer[] = "2.0.0-beta.1+17"; -const char VersionCommitDate[] = "2018-01-12"; +const char VersionCommitDate[] = "2018-01-14"; #endif diff --git a/src/main.cpp b/src/main.cpp index 9dadd61..1ef57ed 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -192,13 +192,11 @@ void loop() updateLED(); updateNTPClient(); - // if motionTriggerEnabled || timeTriggerEnabled - // { - // TODO check for active time trigger every 10 seconds or so - // updateTimeTrigger(); - + if (timeTriggerSettings->enabled() /*|| motionTriggerEnabled*/) + { + updateTimeTrigger(); checkTriggers(); - // } + } stairs->tick(); } @@ -397,12 +395,43 @@ void updateNTPClient() } +uint32_t lastTimeTriggerChecked = 0; TimeTrigger* lastTimeTrigger = nullptr; TimeTrigger* activeTimeTrigger = nullptr; + void updateTimeTrigger() { - // TODO check active time trigger + if (ntpClient == nullptr || !timeTriggerSettings->enabled()) + return; + + if (currentTime - lastTimeTriggerChecked < 10000) + return; + + lastTimeTriggerChecked = currentTime; + _dln("Triggers:: updating time trigger"); + + uint32_t epochTime = ntpClient->getEpochTime(); + if (epochTime == 0) + { + _dln("Triggers:: time not synchronised yet"); + return; + } + + // TODO compensate for UTC + + tmElements_t time; + breakTime(epochTime, time); + + activeTimeTrigger = timeTriggerSettings->getActiveTrigger(time); + + #ifdef SerialDebug + _d("Triggers:: active time trigger: "); + if (activeTimeTrigger != nullptr) + _dln(activeTimeTrigger->time); + else + _dln("null"); + #endif } @@ -431,17 +460,37 @@ void checkTriggers() { if (inMotionTrigger) { + _dln("Triggers :: start motion trigger"); + // Start sweep + bool sweepDown = true; + uint8_t stepsCount = stepsSettings->count(); + uint16_t offset = sweepDown ? 0 : motionTransitionTime; + uint16_t offsetIncrement = stepsCount > 0 ? motionTransitionTime / stepsCount : 0; + + for (uint8_t step = 0; step < stepsCount; step++) + { + stairs->set(step, motionBrightness, motionTransitionTime, offset); + + if (sweepDown) + offset += offsetIncrement; + else + offset -= offsetIncrement; + } } else { if (inTimeTrigger) { + _dln("Triggers :: motion stopped, falling back to time trigger"); + // Fall back to time trigger value stairs->setAll(activeTimeTrigger->brightness, motionTransitionTime, 0); } else { + _dln("Triggers :: motion stopped, turning off"); + // No more motion, no active time trigger, turn off stairs->setAll(0, motionTransitionTime, 0); } @@ -449,6 +498,8 @@ void checkTriggers() } else if (timeTriggerChanged && !inMotionTrigger) { + _dln("Triggers :: time trigger changed"); + // Set to time trigger value stairs->setAll(activeTimeTrigger->brightness, timeTriggerSettings->transitionTime(), 0); } diff --git a/src/settings/system.cpp b/src/settings/system.cpp index 9ba006a..4647c2d 100644 --- a/src/settings/system.cpp +++ b/src/settings/system.cpp @@ -65,20 +65,23 @@ void SystemSettings::write() void SystemSettings::toJson(Print &print) { - DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(4) + JSON_OBJECT_SIZE(5)); + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(6) + JSON_OBJECT_SIZE(5)); JsonObject& root = jsonBuffer.createObject(); - JsonObject& pins = root.createNestedObject("Pins"); - pins["LEDAP"] = pinLEDAP(); - pins["LEDSTA"] = pinLEDSTA(); - pins["APButton"] = pinAPButton(); - pins["PWMSDA"] = pinPWMDriverSDA(); - pins["PWMSCL"] = pinPWMDriverSCL(); + root["lat"] = latitude(); + root["lng"] = longitude(); - root["PWMAddress"] = pwmDriverAddress(); - root["PWMFrequency"] = pwmDriverFrequency(); - root["MapsAPIKey"] = mapsAPIKey(); + JsonObject& pins = root.createNestedObject("pins"); + pins["ledAP"] = pinLEDAP(); + pins["ledSTA"] = pinLEDSTA(); + pins["apButton"] = pinAPButton(); + pins["pwmSDA"] = pinPWMDriverSDA(); + pins["pwmSCL"] = pinPWMDriverSCL(); + + root["pwmAddress"] = pwmDriverAddress(); + root["pwmFrequency"] = pwmDriverFrequency(); + root["mapsAPIKey"] = mapsAPIKey(); root.printTo(print); } @@ -94,22 +97,25 @@ bool SystemSettings::fromJson(char* data, bool* changed) if (changed != nullptr) *changed = false; - DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(4) + JSON_OBJECT_SIZE(5) + 160); + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(6) + JSON_OBJECT_SIZE(5) + 316); JsonObject& root = jsonBuffer.parseObject(data); if (!root.success()) return false; - JsonObject& pins = root["Pins"]; - uint8_t jsonPinLEDAP = pins["LEDAP"]; - uint8_t jsonPinLEDSTA = pins["LEDSTA"]; - uint8_t jsonPinAPButton = pins["APButton"]; - uint8_t jsonPinPWMDriverSDA = pins["PWMSDA"]; - uint8_t jsonPinPWMDriverSCL = pins["PWMSCL"]; + double jsonLat = root["lat"]; + double jsonLng = root["lng"]; - uint8_t jsonPWMDriverAddress = root["PWMAddress"]; - uint16_t jsonPWMDriverFrequency = root["PWMFrequency"]; - const char* jsonMapAPIKey = root["MapsAPIKey"]; + JsonObject& pins = root["pins"]; + uint8_t jsonPinLEDAP = pins["ledAP"]; + uint8_t jsonPinLEDSTA = pins["ledSTA"]; + uint8_t jsonPinAPButton = pins["apButton"]; + uint8_t jsonPinPWMDriverSDA = pins["pwmSDA"]; + uint8_t jsonPinPWMDriverSCL = pins["pwmSCL"]; + + uint8_t jsonPWMDriverAddress = root["pwmAddress"]; + uint16_t jsonPWMDriverFrequency = root["pwmFrequency"]; + const char* jsonMapAPIKey = root["mapsAPIKey"]; if (jsonPinLEDAP == 0) jsonPinLEDAP = pinLEDAP(); if (jsonPinLEDSTA == 0) jsonPinLEDSTA = pinLEDSTA(); @@ -128,8 +134,12 @@ bool SystemSettings::fromJson(char* data, bool* changed) (jsonPinPWMDriverSCL != pinPWMDriverSCL()) || (jsonPWMDriverAddress != pwmDriverAddress()) || (jsonPWMDriverFrequency != pwmDriverFrequency()) || - (jsonMapAPIKey != mapsAPIKey())) + (jsonMapAPIKey != mapsAPIKey()) || + (jsonLat != latitude()) || + (jsonLng != longitude())) { + latitude(jsonLat); + longitude(jsonLng); pinLEDAP(jsonPinLEDAP); pinLEDSTA(jsonPinLEDSTA); pinAPButton(jsonPinAPButton); diff --git a/src/settings/system.h b/src/settings/system.h index 4115593..c212d0a 100644 --- a/src/settings/system.h +++ b/src/settings/system.h @@ -16,6 +16,9 @@ class SystemSettings : CharProperties { private: + double mLatitude = 0; + double mLongitude = 0; + uint8_t mPinLEDAP = 4; uint8_t mPinLEDSTA = 5; uint8_t mPinAPButton = 2; @@ -41,27 +44,33 @@ class SystemSettings : CharProperties bool fromJson(char* data, bool* changed); + double latitude() { return mLatitude; } + void latitude(double value) { mLatitude = value; } + + double longitude() { return mLongitude; } + void longitude(double value) { mLongitude = value; } + uint8_t pinLEDAP() { return mPinLEDAP; } - uint8_t pinLEDAP(uint8_t value) { mPinLEDAP = value; } + void pinLEDAP(uint8_t value) { mPinLEDAP = value; } uint8_t pinLEDSTA() { return mPinLEDSTA; } - uint8_t pinLEDSTA(uint8_t value) { mPinLEDSTA = value; } + void pinLEDSTA(uint8_t value) { mPinLEDSTA = value; } uint8_t pinAPButton() { return mPinAPButton; } - uint8_t pinAPButton(uint8_t value) { mPinAPButton = value; } + void pinAPButton(uint8_t value) { mPinAPButton = value; } uint8_t pinPWMDriverSDA() { return mPinPWMDriverSDA; } - uint8_t pinPWMDriverSDA(uint8_t value) { mPinPWMDriverSDA = value; } + void pinPWMDriverSDA(uint8_t value) { mPinPWMDriverSDA = value; } uint8_t pinPWMDriverSCL() { return mPinPWMDriverSCL; } - uint8_t pinPWMDriverSCL(uint8_t value) { mPinPWMDriverSCL = value; } + void pinPWMDriverSCL(uint8_t value) { mPinPWMDriverSCL = value; } uint8_t pwmDriverAddress() { return mPWMDriverAddress; } - uint8_t pwmDriverAddress(uint8_t value) { mPWMDriverAddress = value; } + void pwmDriverAddress(uint8_t value) { mPWMDriverAddress = value; } uint16_t pwmDriverFrequency() { return mPWMDriverFrequency; } - uint16_t pwmDriverFrequency(uint16_t value) { mPWMDriverFrequency = value; } + void pwmDriverFrequency(uint16_t value) { mPWMDriverFrequency = value; } char* mapsAPIKey() { return mMapsAPIKey; } diff --git a/src/settings/triggers/time.cpp b/src/settings/triggers/time.cpp index 2195c9a..dc21980 100644 --- a/src/settings/triggers/time.cpp +++ b/src/settings/triggers/time.cpp @@ -8,6 +8,8 @@ #include #include #include "../../debug.h" +#include "../../global.h" +#include "../../praisethesun.h" timeDayOfWeek_t toTimeDayOfWeek(DayOfWeek day) @@ -101,6 +103,81 @@ void TimeTriggerSettings::write() } +TimeTrigger* TimeTriggerSettings::getActiveTrigger(tmElements_t &time) +{ + if (mTriggerCount == 0) + return nullptr; + + + DayOfWeek dayOfWeek = toDayOfWeek((timeDayOfWeek_t)time.Wday); + DayOfWeek startDayOfWeek = dayOfWeek; + TimeTrigger* activeTrigger = nullptr; + int16_t activeTriggerTime = 0; + + // TODO calculate sunrise and sunset + double sunrise = 0; + double sunset = 0; + + sun_rise_set(tmYearToCalendar(time.Year), time.Month, time.Day, + systemSettings->latitude(), systemSettings->longitude(), + &sunrise, &sunset); + + uint16_t sunriseMinutes = floor(sunrise * 60); + uint16_t sunsetMinutes = floor(sunset * 60); + uint16_t dayTime = (time.Hour * 60) + time.Minute; + + _d("TimeTrigger :: sunrise: "); _dln(sunriseMinutes); + _d("TimeTrigger :: sunset: "); _dln(sunsetMinutes); + _d("TimeTrigger :: current time: "); _dln(dayTime); + + do + { + for (uint16_t i = 0; i < mTriggerCount; i++) + { + TimeTrigger* trigger = &mTriggers[i]; + + if (trigger->enabled && (trigger->daysOfWeek & dayOfWeek)) + { + int16_t triggerTime = trigger->time; + + switch (trigger->triggerType) + { + RelativeToSunrise: + triggerTime += sunriseMinutes; + break; + + RelativeToSunset: + triggerTime += sunsetMinutes; + break; + } + + + // Check if the current time is after the time set in the trigger, and + // if this trigger is later than any previously found trigger, so that + // we'll always get the most recent match + if (triggerTime < dayTime && (activeTrigger == nullptr || triggerTime > activeTriggerTime)) + { + activeTrigger = trigger; + activeTriggerTime = triggerTime; + } + } + } + + if (activeTrigger != nullptr) + return activeTrigger; + + // If there are no active triggers on this day, go back + // one weekday and try again until we've come around completely + if (dayOfWeek == Monday) + dayOfWeek = Sunday; + else + dayOfWeek = (DayOfWeek)((uint8_t)dayOfWeek / 2); + } while (dayOfWeek != startDayOfWeek); + + return nullptr; +} + + void TimeTriggerSettings::beginSetTriggers(uint8_t count) { if (mTriggers != nullptr) @@ -119,6 +196,7 @@ void TimeTriggerSettings::setTrigger(uint8_t index, TimeTrigger* value) void TimeTriggerSettings::endSetTriggers() { + /* No need to sort, sunrise / sunset triggers already mess things up anyways // Sort triggers by time of day // Based on the Comb sort implementation by Rob Tillaart // http://forum.arduino.cc/index.php?topic=280486.0 @@ -148,4 +226,5 @@ void TimeTriggerSettings::endSetTriggers() } } } + */ } \ No newline at end of file diff --git a/src/settings/triggers/time.h b/src/settings/triggers/time.h index 13e1075..766bb78 100644 --- a/src/settings/triggers/time.h +++ b/src/settings/triggers/time.h @@ -57,6 +57,9 @@ class TimeTriggerSettings void write(); + TimeTrigger* getActiveTrigger(tmElements_t &time); + + bool enabled() { return mEnabled; } void enabled(bool value) { mEnabled = value; } diff --git a/web/dist/bundle.js b/web/dist/bundle.js index a38c1bf..3aa1007 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(t){c.headers[t]={}}),o.forEach(["post","put","patch"],function(t){c.headers[t]=o.merge(s)}),t.exports=c},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){return r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]}),(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===hn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return gn.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=$(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=$(l.text+c):""!==c&&f.push($(c)):G(c)&&G(l)?f[u]=$(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=I(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function jt(t){this._init(t)}function Lt(t){return t&&(t.Ctor.options.name||t.tag)}function Et(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==hn.call(n))&&t.test(e));var n}function Pt(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Lt(a.componentOptions);s&&!e(s)&&It(n,o,r,i)}}}function It(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Dt(t,n){return{staticClass:Ft(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Ft(t,e){return t?e?t+" "+e:t:e||""}function Nt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(_=t.charAt(y));y--);_&&xi.test(_)||(d=!0)}}else void 0===o?(g=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==g&&e(),a)for(i=0;i-1?{exp:t.slice(0,Kr),key:'"'+t.slice(Kr+1)+'"'}:{exp:t,key:null};for(zr=t,Kr=Jr=Gr=0;!se();)ce(qr=ae())?ue(qr):91===qr&&function(t){var e=1;for(Jr=Kr;!se();)if(t=ae(),ce(t))ue(t);else if(91===t&&e++,93===t&&e--,0===e){Gr=Kr;break}}(qr);return{exp:t.slice(0,Jr),key:t.slice(Jr+1,Gr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function ae(){return zr.charCodeAt(++Kr)}function se(){return Kr>=Hr}function ce(t){return 34===t||39===t}function ue(t){for(var e=t;!se()&&(t=ae())!==e;);}function le(t,e,n,r,i){var o,a,s,c,u;e=(u=e)._withTask||(u._withTask=function(){pr=!0;var t=u.apply(null,arguments);return pr=!1,t}),n&&(o=e,a=t,s=r,c=Xr,e=function t(){null!==o.apply(null,arguments)&&fe(a,t,s,c)}),Xr.addEventListener(t,e,Wn?{capture:r,passive:i}:r)}function fe(t,e,n,r){(r||Xr).removeEventListener(t,e._withTask||e,n)}function pe(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(t){if(e(t[$i])){var n=Dn?"change":"input";t[n]=[].concat(t[$i],t[n]||[]),delete t[$i]}e(t[ki])&&(t.change=[].concat(t[ki],t.change||[]),delete t[ki])}(i),q(i,o,le,fe,r.context),Xr=void 0}}function de(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function he(t){var e=ve(t.style);return t.staticStyle?v(t.staticStyle,e):e}function ve(t){return Array.isArray(t)?m(t):"string"==typeof t?Si(t):t}function me(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=ve(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=he(i.data))&&v(r,n);(n=he(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=he(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&ji(c,s,"");for(s in d)(a=d[s])!==f[s]&&ji(c,s,null==a?"":a)}}function ge(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function _e(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Ii(t.name||"v")),v(e,t),e}return"string"==typeof t?Ii(t):void 0}}function be(t){Ui(function(){Ui(t)})}function we(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ge(t,e))}function xe(t,e){t._transitionClasses&&l(t._transitionClasses,e),ye(t,e)}function $e(t,e,n){var r=ke(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Wi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Fi,l=a,f=o.length):e===Ni?u>0&&(n=Ni,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Fi&&Vi.test(r[Mi+"Property"])}}function Ce(t,e){for(;t.length1}function Le(t,e){!0!==e.data.show&&Se(e)}function Ee(t,e,n){Pe(t,e,n),(Dn||Nn)&&setTimeout(function(){Pe(t,e,n)},0)}function Pe(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(De(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function Ie(t,e){return e.every(function(e){return!y(e,t)})}function De(t){return"_value"in t?t._value:t.value}function Fe(t){t.target.composing=!0}function Ne(t){t.target.composing&&(t.target.composing=!1,Me(t.target,"input"))}function Me(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Re(t){return!t.componentInstance||t.data&&t.data.transition?t:Re(t.componentInstance._vnode)}function Be(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Be(Y(e.children)):t}function We(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[_n(o)]=i[o];return e}function Ue(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function Ve(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function He(t){t.data.newPos=t.elm.getBoundingClientRect()}function ze(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qe(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',So.innerHTML.indexOf(" ")>0}var dn=Object.freeze({}),hn=Object.prototype.toString,vn=u("slot,component",!0),mn=u("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,_n=p(function(t){return t.replace(yn,function(t,e){return e?e.toUpperCase():""})}),bn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),wn=/\B([A-Z])/g,xn=p(function(t){return t.replace(wn,"-$1").toLowerCase()}),$n=function(t,e,n){return!1},kn=function(t){return t},Cn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],Tn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:$n,isReservedAttr:$n,isUnknownElement:$n,getTagNamespace:g,parsePlatformTagName:kn,mustUseProp:$n,_lifecycleHooks:Sn},On=/[^\w.$]/,jn="__proto__"in{},Ln="undefined"!=typeof window,En="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Pn=En&&WXEnvironment.platform.toLowerCase(),In=Ln&&window.navigator.userAgent.toLowerCase(),Dn=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===Pn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===Pn,Bn=(In&&/chrome\/\d+/.test(In),{}.watch),Wn=!1;if(Ln)try{var Un={};Object.defineProperty(Un,"passive",{get:function(){Wn=!0}}),window.addEventListener("test-passive",null,Un)}catch(t){}var Vn,Hn,zn=function(){return void 0===Vn&&(Vn=!Ln&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Vn},qn=Ln&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);Hn="undefined"!=typeof Set&&x(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(t){this.subs.push(t)},Xn.prototype.removeSub=function(t){l(this.subs,t)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eCr&&br[n].id>t.id;)n--;br.splice(n+1,0,t)}else br.push(t);$r||($r=!0,V(ct))}}(this)},Sr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){R(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var Tr={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};kt(Ct.prototype);var jr,Lr,Er,Pr,Ir={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=(a=t,s={_isComponent:!0,parent:_r,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Ir.prepatch(o,o)}var a,s,c},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==dn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||dn,t.$listeners=n||dn,e&&t.$options.props){ir.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&It(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};Rr=jt,(Wr={}).get=function(){return Tn},Object.defineProperty(Rr,"config",Wr),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=T,Rr.delete=O,Rr.nextTick=V,Rr.options=Object.create(null),An.forEach(function(t){Rr.options[t+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Vr),Rr.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},Rr.mixin=function(t){return this.options=I(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=I(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)ut(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)lt(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Br=Rr,An.forEach(function(t){Br[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}),Object.defineProperty(jt.prototype,"$isServer",{get:zn}),Object.defineProperty(jt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),jt.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=u("style,class"),Qr=u("input,textarea,option,select,progress"),ti=function(t,e,n){return"value"===n&&Qr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},ei=u("contenteditable,draggable,spellcheck"),ni=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},oi=function(t){return ii(t)?t.slice(6,t.length):""},ai=function(t){return null==t||!1===t},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ui=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),li=function(t){return ci(t)||ui(t)},fi=Object.create(null),pi=u("text,number,password,search,email,tel,url"),di=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(si[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),hi={create:function(t,e){Bt(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Bt(t,!0),Bt(e))},destroy:function(t){Bt(t,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Vt,update:Vt,destroy:function(t){Vt(t,vi)}},yi=Object.create(null),_i=[hi,gi],bi={create:qt,update:qt},wi={create:Jt,update:Jt},xi=/[\w).+\-_$\]]/,$i="__r",ki="__c",Ci={create:pe,update:pe},Ai={create:de,update:de},Si=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ti=/^--/,Oi=/\s*!important$/,ji=function(t,e,n){if(Ti.test(e))t.style.setProperty(e,n);else if(Oi.test(n))t.style.setProperty(e,n.replace(Oi,""),"important");else{var r=Ei(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:fi[t]=/HTMLUnknownElement/.test(e.toString())},v(jt.options.directives,qi),v(jt.options.components,Xi),jt.prototype.__patch__=Ln?Hi:g,jt.prototype.$mount=function(t,e){return t=t&&Ln?Rt(t):void 0,r=t,i=e,(n=this).$el=r,n.$options.render||(n.$options.render=tr),st(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,st(n,"mounted")),n;var n,r,i},jt.nextTick(function(){Tn.devtools&&qn&&qn.emit("init",jt)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,to=p(function(t){var e=t[0].replace(Qi,"\\$&"),n=t[1].replace(Qi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),eo={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=re(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=ne(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},no={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=re(t,"style");n&&(t.staticStyle=JSON.stringify(Si(n)));var r=ne(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},ro=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",uo=new RegExp("^<"+co),lo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Do(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(ho.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(vo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(po);if(y){n(y[0].length);continue}var _=t.match(fo);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(uo);if(e){var r,i,o={tagName:e[1],attrs:[],start:l};for(n(e[0].length);!(r=t.match(lo))&&(i=t.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=l,o}}();if(w){!function(t){var n,i,l,f=t.tagName,p=t.unarySlash;s&&("p"===o&&oo(f)&&r(o),u(f)&&o===f&&r(f));for(var d=c(f)||!!p,h=t.attrs.length,v=new Array(h),m=0;m=0){for($=t.slice(v);!(fo.test($)||uo.test($)||ho.test($)||vo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:go,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||ko(t);Dn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Gt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e,n,r,i=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(r=i,F.test(r)?(n=(e=i).charCodeAt(0))!==e.charCodeAt(e.length-1)||34!==n&&39!==n?e:e.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.formatter=this.$root.$i18n.formatter,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===L&&"'"===e||l===E&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?e:r,!1===a()))return;if(l===P)return c}}(t))&&(this._cache[t]=e),e||[]},N.prototype.getPathValue=function(t,n){if(!e(t))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c,u=this._path.getPathValue(e,i);if(Array.isArray(u))return u;if(r(u)){if(!n(e))return null;if("string"!=typeof(c=e[i]))return null}else{if("string"!=typeof u)return null;c=u}return c.indexOf("@:")>=0&&(c=this._link(t,e,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s,c=i.apply(void 0,o),u=c.locale||e,l=this._translate(n,u,this.fallbackLocale,t,r,"string",c.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[t].concat(o))}return this._warnDefault(u,t,l,r)},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){var n;(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (pull low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optional. Currently only used for translating a location name to it's latitude / longitude, which you will most likely only do once. Will work without an API key, but Google might throttle your request."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optioneel. Wordt op dit moment enkel gebruikt om een locatie te vertalen naar een breedte- / lengtegraad, wat je waarschijnlijk maar één keer nodig hebt. Werkt ook zonder API key, met de kans dat Google je verzoek tijdelijk niet toestaat."}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:0,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:""},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/triggers/time").then(function(t){"object"==typeof t.data&&(e.triggers.time=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.system.lat=n.lat,t.system.lng=n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):X(c)&&X(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Ir&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Lt(t){this._init(t)}function Et(t){return t&&(t.Ctor.options.name||t.tag)}function Pt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function It(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Et(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Ft(t,n){return{staticClass:Nt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Nt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,Hr),key:'"'+t.slice(Hr+1)+'"'}:{exp:t,key:null};for(Ur=t,Hr=zr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(zr=Hr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=Hr;break}}(Vr);return{exp:t.slice(0,zr),key:t.slice(zr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Ur.charCodeAt(++Hr)}function ce(){return Hr>=Wr}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Kr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Kr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Kr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(t){if(e(t[bi])){var n=Nn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),K(i,o,fe,pe,r.context),Kr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Li(t.name||"v")),v(e,t),e}return"string"==typeof t?Li(t):void 0}}function we(t){Ri(function(){Ri(t)})}function xe(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Pi?Fi:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Pi,l=a,f=o.length):e===Ii?u>0&&(n=Ii,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Pi:Ii:null)?n===Pi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Pi&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Ee(t,e){!0!==e.data.show&&Te(e)}function Pe(t,e,n){Ie(t,e,n),(Nn||Rn)&&setTimeout(function(){Ie(t,e,n)},0)}function Ie(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Fe(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Fe(t){return"_value"in t?t._value:t.value}function Ne(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function We(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?We(Q(e.children)):t}function Ue(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function He(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function ze(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Ke(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Je(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),xn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),$n=/\B([A-Z])/g,kn=p(function(t){return t.replace($n,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},Ln=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=In&&WXEnvironment.platform.toLowerCase(),Fn=Pn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Dn,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Dn,Un=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Vn=!1;if(Pn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,Hn)}catch(t){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);qn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&xr[n].id>t.id;)n--;xr.splice(n+1,0,t)}else xr.push(t);Cr||(Cr=!0,H(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Lr={lazy:!0};Ct(At.prototype);var Er={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Er.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Xn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=H,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Lt),Object.defineProperty(Lt.prototype,"$isServer",{get:Kn}),Object.defineProperty(Lt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Lt.version="2.5.13";var Wr,Ur,Vr,Hr,zr,qr,Kr,Jr,Gr=u("style,class"),Xr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Xr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Wt(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Wt(t,!0),Wt(e))},destroy:function(t){Wt(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:Ht,update:Ht,destroy:function(t){Ht(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Kt,update:Kt},yi={create:Gt,update:Gt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",xi={create:de,update:de},$i={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Lt.options.directives,Vi),v(Lt.options.components,Ki),Lt.prototype.__patch__=Pn?Wi:g,Lt.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&Pn?Bt(t):void 0,e)},Lt.nextTick(function(){jn.devtools&&Jn&&Jn.emit("init",Lt)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Xi,"\\$&"),n=t[1].replace(Xi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Eo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for($=t.slice(v);!(co.test($)||ao.test($)||lo.test($)||fo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Nn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Xt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,F.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===L&&"'"===e||l===E&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===P)return c}}(t))&&(this._cache[t]=e),e||[]},N.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (pull low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optional. Currently only used for translating a location name to it's latitude / longitude, which you will most likely only do once. Will work without an API key, but Google might throttle your request."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optioneel. Wordt op dit moment enkel gebruikt om een locatie te vertalen naar een breedte- / lengtegraad, wat je waarschijnlijk maar één keer nodig hebt. Werkt ook zonder API key, met de kans dat Google je verzoek tijdelijk niet toestaat."}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:0,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:""},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/triggers/time").then(function(t){"object"==typeof t.data&&(e.triggers.time=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.system.lat=n.lat,t.system.lng=n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index c8d4a3f..00cc450 100644 --- a/web/index.html +++ b/web/index.html @@ -92,9 +92,9 @@
- - - + + + diff --git a/web/lang.js b/web/lang.js index f232347..626084f 100644 --- a/web/lang.js +++ b/web/lang.js @@ -142,6 +142,7 @@ var messages = { timeFixedTime: 'Vaste tijd', timeSunrise: 'Zonsopkomst', timeSunset: 'Zonsondergang', + timeTime: 'Tijd in minuten', motionTitle: 'Beweging' }, From 981d6ac1bbb48ceebd7a539c09b8c2d95367a47a Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Sun, 14 Jan 2018 21:31:37 +0100 Subject: [PATCH 18/43] Implemented motion sensor settings Moved all settings to JSON storage --- API.md | 52 ++++++++++ src/ESP8266HTTPClient-h4xx0red.cpp | 2 +- src/assets/version.h | 4 +- src/charproperties.cpp | 6 +- src/charproperties.h | 6 +- src/components/PCA9685.cpp | 2 +- src/config.h | 5 +- src/debug.cpp | 2 +- src/debug.h | 2 +- src/global.cpp | 5 +- src/global.h | 14 ++- src/main.cpp | 153 ++++++++++++++++++++-------- src/praisethesun.cpp | 2 +- src/server/api.cpp | 100 ++++++++----------- src/server/firmware.cpp | 2 +- src/server/settings.cpp | 4 +- src/server/shared.cpp | 2 +- src/server/static.cpp | 2 +- src/settings/abstractjson.cpp | 70 +++++++++++++ src/settings/abstractjson.h | 28 ++++++ src/settings/connection.cpp | 62 +----------- src/settings/connection.h | 13 +-- src/settings/steps.cpp | 89 ++++++++++------- src/settings/steps.h | 15 ++- src/settings/system.cpp | 57 +---------- src/settings/system.h | 12 +-- src/settings/triggers/motion.cpp | 81 +++++++++++++++ src/settings/triggers/motion.h | 67 +++++++++++++ src/settings/triggers/time.cpp | 154 +++++++++++------------------ src/settings/triggers/time.h | 16 +-- src/stairs.cpp | 6 +- src/stairs.h | 6 +- 32 files changed, 636 insertions(+), 405 deletions(-) create mode 100644 src/settings/abstractjson.cpp create mode 100644 src/settings/abstractjson.h create mode 100644 src/settings/triggers/motion.cpp create mode 100644 src/settings/triggers/motion.h diff --git a/API.md b/API.md index d377e13..f25e41c 100644 --- a/API.md +++ b/API.md @@ -10,6 +10,8 @@ - [POST /api/steps](#post-apisteps) - [GET /api/triggers/time](#get-apitriggerstime) - [POST /api/triggers/time](#post-apitriggerstime) +- [GET /api/triggers/motion](#get-apitriggersmotion) +- [POST /api/triggers/motion](#post-apitriggersmotion) - [POST /api/firmware](#post-apifirmware) ## GET /api/version @@ -203,6 +205,56 @@ enabled: whether or not this trigger is enabled Changes the time trigger settings. Request body format is the same as is returned in the GET request. + +## GET /api/triggers/motion + +Returns the current settings for the motion triggers. + +delay: How long to keep the lights on after the last sensor stops detecting motion. + +pin: GPIO pin to which the motion sensor is connected. High is assumed to be active. + +direction: +Enumeration determining from which side the sweep animation starts if transitionTime is set. + +| value | description | +| ----- | --- | +| 1 | Non-directional. All steps change brightness at the same time. | +| 2 | Top-down. Starts a sweeping fade from the top step. | +| 3 | Bottom-up. Starts a sweeping fade from the bottom step. | + +brightness: value from 0 to 255 + +enabled: whether or not this trigger is enabled + +*Example response:* +```json +{ + "enabled": true, + "enabledDuringTimeTrigger": true, + "transitionTime": 1000, + "delay": 30000, + "triggers": [ + { + "pin": 14, + "brightness": 64, + "direction": 2, + "enabled": true + }, + { + "pin": 15, + "brightness": 64, + "direction": 3, + "enabled": true + } + ] +} +``` + +## POST /api/triggers/motion + +Changes the motion trigger settings. Request body format is the same as is returned in the GET request. + ## POST /api/firmware Uploads new firmware. The bin file should be posted as a multipart/form-data file attachment. Name is not relevant. \ No newline at end of file diff --git a/src/ESP8266HTTPClient-h4xx0red.cpp b/src/ESP8266HTTPClient-h4xx0red.cpp index cc0bcc6..222513f 100644 --- a/src/ESP8266HTTPClient-h4xx0red.cpp +++ b/src/ESP8266HTTPClient-h4xx0red.cpp @@ -45,7 +45,7 @@ #include #include -#include "ESP8266HTTPClient-h4xx0red.h" +#include "./ESP8266HTTPClient-h4xx0red.h" class TransportTraits { diff --git a/src/assets/version.h b/src/assets/version.h index 8bd50d0..2a39259 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 17; +const uint8_t VersionMetadata = 18; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+17"; +const char VersionFullSemVer[] = "2.0.0-beta.1+18"; const char VersionCommitDate[] = "2018-01-14"; #endif diff --git a/src/charproperties.cpp b/src/charproperties.cpp index 9d3a3b1..de13473 100644 --- a/src/charproperties.cpp +++ b/src/charproperties.cpp @@ -4,12 +4,12 @@ * * https://git.x2software.net/pub/Stairs */ -#include "charproperties.h" +#include "./charproperties.h" #include #include -#include "debug.h" +#include "./debug.h" -void CharProperties::assignChar(char** field, const char* newValue) +void assignChar(char** field, const char* newValue) { if (*field != nullptr) delete *field; diff --git a/src/charproperties.h b/src/charproperties.h index 3ef9df4..2b5e941 100644 --- a/src/charproperties.h +++ b/src/charproperties.h @@ -9,10 +9,6 @@ #include -class CharProperties -{ - protected: - void assignChar(char** field, const char* newValue); -}; +void assignChar(char** field, const char* newValue); #endif \ No newline at end of file diff --git a/src/components/PCA9685.cpp b/src/components/PCA9685.cpp index fcc2f26..4a7f6eb 100644 --- a/src/components/PCA9685.cpp +++ b/src/components/PCA9685.cpp @@ -3,7 +3,7 @@ * Copyright 2017 (c) Mark van Renswoude */ #include -#include "PCA9685.h" +#include "./PCA9685.h" #include #include diff --git a/src/config.h b/src/config.h index 05983bc..c132ae7 100644 --- a/src/config.h +++ b/src/config.h @@ -14,8 +14,9 @@ static const uint32_t SerialDebugStartupDelay = 2000; static const char* ConnectionSettingsFile = "/connection.json"; static const char* SystemSettingsFile = "/system.json"; -static const char* StepSettingsFile = "/stepsettings.dat"; -static const char* TimeTriggerSettingsFile = "/timetriggersettings.dat"; +static const char* StepsSettingsFile = "/steps.json"; +static const char* TimeTriggerSettingsFile = "/timetriggers.json"; +static const char* MotionTriggerSettingsFile = "/motiontriggers.json"; static const char* DefaultAPSSIDPrefix = "Stairs-"; diff --git a/src/debug.cpp b/src/debug.cpp index 00065a7..1501daa 100644 --- a/src/debug.cpp +++ b/src/debug.cpp @@ -4,7 +4,7 @@ * * https://git.x2software.net/pub/Stairs */ -#include "debug.h" +#include "./debug.h" void _dinit() diff --git a/src/debug.h b/src/debug.h index f722331..78ec055 100644 --- a/src/debug.h +++ b/src/debug.h @@ -7,7 +7,7 @@ #ifndef __serialdebug #define __serialdebug -#include "config.h" +#include "./config.h" #include void _dinit(); diff --git a/src/global.cpp b/src/global.cpp index a6d1bb7..07b3335 100644 --- a/src/global.cpp +++ b/src/global.cpp @@ -4,7 +4,7 @@ * * https://git.x2software.net/pub/Stairs */ -#include "global.h" +#include "./global.h" ConnectionSettings* connectionSettings = new ConnectionSettings(); bool connectionSettingsChanged = false; @@ -18,6 +18,9 @@ bool stepsSettingsChanged = false; TimeTriggerSettings* timeTriggerSettings = new TimeTriggerSettings(); bool timeTriggerSettingsChanged = false; +MotionTriggerSettings* motionTriggerSettings = new MotionTriggerSettings(); +bool motionTriggerSettingsChanged = false; + Stairs* stairs; diff --git a/src/global.h b/src/global.h index b8fb847..fc751bf 100644 --- a/src/global.h +++ b/src/global.h @@ -10,11 +10,12 @@ #include #include #include -#include "settings/connection.h" -#include "settings/system.h" -#include "settings/steps.h" -#include "settings/triggers/time.h" -#include "stairs.h" +#include "./settings/connection.h" +#include "./settings/system.h" +#include "./settings/steps.h" +#include "./settings/triggers/time.h" +#include "./settings/triggers/motion.h" +#include "./stairs.h" extern ConnectionSettings* connectionSettings; extern bool connectionSettingsChanged; @@ -28,6 +29,9 @@ extern bool stepsSettingsChanged; extern TimeTriggerSettings* timeTriggerSettings; extern bool timeTriggerSettingsChanged; +extern MotionTriggerSettings* motionTriggerSettings; +extern bool motionTriggerSettingsChanged; + extern Stairs* stairs; diff --git a/src/main.cpp b/src/main.cpp index 1ef57ed..f7878a0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -16,29 +16,28 @@ extern "C" { #include } -#include "config.h" -#include "debug.h" -#include "global.h" -#include "components/PCA9685.h" -#include "settings/connection.h" -#include "server/static.h" -#include "server/settings.h" -#include "server/firmware.h" -#include "server/api.h" +#include "./config.h" +#include "./debug.h" +#include "./global.h" +#include "./components/PCA9685.h" +#include "./settings/connection.h" +#include "./server/static.h" +#include "./server/settings.h" +#include "./server/firmware.h" +#include "./server/api.h" ADC_MODE(ADC_VCC); // Forward declarations void initWiFi(); +void initMotionPins(); #ifdef SerialDebug void wifiEvent(WiFiEvent_t event); void updateDebugStatus(); #endif void updateLED(); void updateNTPClient(); - -void updateTimeTrigger(); void checkTriggers(); void handleNotFound(AsyncWebServerRequest* request); @@ -73,10 +72,12 @@ void setup() systemSettings->read(); stepsSettings->read(); timeTriggerSettings->read(); + motionTriggerSettings->read(); pinMode(systemSettings->pinAPButton(), INPUT_PULLUP); pinMode(systemSettings->pinLEDAP(), OUTPUT); pinMode(systemSettings->pinLEDSTA(), OUTPUT); + initMotionPins(); _dln("Setup :: initializing PCA9685"); @@ -142,6 +143,12 @@ void loop() ESP.restart(); } + if (motionTriggerSettingsChanged) + { + initMotionPins(); + motionTriggerSettingsChanged = false; + } + currentTime = millis(); @@ -191,12 +198,7 @@ void loop() updateLED(); updateNTPClient(); - - if (timeTriggerSettings->enabled() /*|| motionTriggerEnabled*/) - { - updateTimeTrigger(); - checkTriggers(); - } + checkTriggers(); stairs->tick(); } @@ -253,6 +255,20 @@ void initWiFi() } +void initMotionPins() +{ + if (!motionTriggerSettings->enabled()) + return; + + for (uint8_t i = 0; i < motionTriggerSettings->triggerCount(); i++) + { + MotionTrigger* trigger = motionTriggerSettings->trigger(i); + if (trigger->enabled) + pinMode(trigger->pin, INPUT); + } +} + + #ifdef SerialDebug void wifiEvent(WiFiEvent_t event) { @@ -403,10 +419,20 @@ TimeTrigger* activeTimeTrigger = nullptr; void updateTimeTrigger() { if (ntpClient == nullptr || !timeTriggerSettings->enabled()) + { + activeTimeTrigger = nullptr; + return; + } + + if (timeTriggerSettingsChanged) + { + // Time trigger settings changed, activeTimeTrigger pointer is considered + // invalid, force recheck + timeTriggerSettingsChanged = false; + } + else if (currentTime - lastTimeTriggerChecked < 10000) return; - if (currentTime - lastTimeTriggerChecked < 10000) - return; lastTimeTriggerChecked = currentTime; _dln("Triggers:: updating time trigger"); @@ -414,11 +440,12 @@ void updateTimeTrigger() uint32_t epochTime = ntpClient->getEpochTime(); if (epochTime == 0) { + activeTimeTrigger = nullptr; _dln("Triggers:: time not synchronised yet"); return; } - // TODO compensate for UTC + // TODO apply timezone offset tmElements_t time; breakTime(epochTime, time); @@ -435,21 +462,59 @@ void updateTimeTrigger() } +uint32_t activeMotionStart = 0; +uint16_t activeMotionBrightness = 0; +MotionDirection activeMotionDirection = Nondirectional; +bool lastMotion = false; + + +void updateMotionTrigger() +{ + if (!motionTriggerSettings->enabled() || !motionTriggerSettings->triggerCount()) + { + activeMotionStart = 0; + return; + } + + for (uint8_t i = 0; i < motionTriggerSettings->triggerCount(); i++) + { + MotionTrigger* trigger = motionTriggerSettings->trigger(i); + + if (trigger->enabled && digitalRead(trigger->pin) == HIGH) + { + if (activeMotionStart == 0) + { + activeMotionDirection = trigger->direction; + activeMotionBrightness = trigger->brightness; + } + + activeMotionStart = currentTime; + } + } + + if (currentTime - activeMotionStart >= motionTriggerSettings->delay()) + activeMotionStart = 0; +} + + void checkTriggers() { + if (!timeTriggerSettings->enabled() && activeTimeTrigger == nullptr && + !motionTriggerSettings->enabled() && activeMotionStart == 0) + return; + + updateTimeTrigger(); + updateMotionTrigger(); + bool inTimeTrigger = timeTriggerSettings->enabled() && activeTimeTrigger != nullptr && activeTimeTrigger->brightness; bool timeTriggerChanged = activeTimeTrigger != lastTimeTrigger; lastTimeTrigger = activeTimeTrigger; - // TODO motion sensor settings - bool inMotionTrigger = false; // && (alsoDuringTimeTrigger || !inTimeTrigger) - bool motionChanged = false; - - // TODO dummies, replace these with motionSettings-> values later on - uint16_t motionBrightness = 0; - uint16_t motionTransitionTime = 0; + bool inMotionTrigger = (activeMotionStart > 0) && (!inTimeTrigger || motionTriggerSettings->enabledDuringTimeTrigger()); + bool motionChanged = (activeMotionStart > 0) != lastMotion; + lastMotion = (activeMotionStart > 0); if (!motionChanged && !timeTriggerChanged) @@ -462,20 +527,26 @@ void checkTriggers() { _dln("Triggers :: start motion trigger"); - // Start sweep - bool sweepDown = true; - uint8_t stepsCount = stepsSettings->count(); - uint16_t offset = sweepDown ? 0 : motionTransitionTime; - uint16_t offsetIncrement = stepsCount > 0 ? motionTransitionTime / stepsCount : 0; - - for (uint8_t step = 0; step < stepsCount; step++) + if (activeMotionDirection == Nondirectional || motionTriggerSettings->transitionTime() == 0) { - stairs->set(step, motionBrightness, motionTransitionTime, offset); + stairs->setAll(activeMotionBrightness, motionTriggerSettings->transitionTime(), 0); + } + else + { + // Start sweep + uint8_t stepsCount = stepsSettings->count(); + uint16_t offsetIncrement = stepsCount > 0 ? (motionTriggerSettings->transitionTime() / stepsCount) * 1.5 : 0; + uint16_t offset = activeMotionDirection == TopDown ? 0 : (stepsCount - 1) * offsetIncrement; - if (sweepDown) - offset += offsetIncrement; - else - offset -= offsetIncrement; + for (uint8_t step = 0; step < stepsCount; step++) + { + stairs->set(step, activeMotionBrightness, motionTriggerSettings->transitionTime(), offset); + + if (activeMotionDirection == TopDown) + offset += offsetIncrement; + else + offset -= offsetIncrement; + } } } else @@ -485,14 +556,14 @@ void checkTriggers() _dln("Triggers :: motion stopped, falling back to time trigger"); // Fall back to time trigger value - stairs->setAll(activeTimeTrigger->brightness, motionTransitionTime, 0); + stairs->setAll(activeTimeTrigger->brightness, motionTriggerSettings->transitionTime(), 0); } else { _dln("Triggers :: motion stopped, turning off"); // No more motion, no active time trigger, turn off - stairs->setAll(0, motionTransitionTime, 0); + stairs->setAll(0, motionTriggerSettings->transitionTime(), 0); } } } diff --git a/src/praisethesun.cpp b/src/praisethesun.cpp index 80c2294..8c32def 100644 --- a/src/praisethesun.cpp +++ b/src/praisethesun.cpp @@ -7,7 +7,7 @@ * This code was ported over from Domoticz' SunRiseSet.cpp * https://github.com/domoticz/domoticz/ */ -#include "praisethesun.h" +#include "./praisethesun.h" #include diff --git a/src/server/api.cpp b/src/server/api.cpp index 1881059..86b3e5b 100644 --- a/src/server/api.cpp +++ b/src/server/api.cpp @@ -4,11 +4,11 @@ * * https://git.x2software.net/pub/Stairs */ -#include "api.h" +#include "./api.h" #include #include #include -#include "shared.h" +#include "./shared.h" #include "../assets/version.h" #include "../debug.h" #include "../global.h" @@ -69,30 +69,8 @@ void handleGetTimeTriggers(AsyncWebServerRequest *request) { _dln("API :: get time triggers"); - uint8_t count = timeTriggerSettings->triggerCount(); - - DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(count) + JSON_OBJECT_SIZE(3) + count*JSON_OBJECT_SIZE(5)); - JsonObject& root = jsonBuffer.createObject(); - root["enabled"] = timeTriggerSettings->enabled(); - root["transitionTime"] = timeTriggerSettings->transitionTime(); - - JsonArray& jsonTriggers = root.createNestedArray("triggers"); - - for (uint8_t i = 0; i < count; i++) - { - TimeTrigger* trigger = timeTriggerSettings->trigger(i); - - JsonObject& jsonTrigger = jsonTriggers.createNestedObject(); - jsonTrigger["time"] = trigger->time; - jsonTrigger["daysOfWeek"] = trigger->daysOfWeek; - jsonTrigger["brightness"] = trigger->brightness; - jsonTrigger["triggerType"] = (uint8_t)trigger->triggerType; - jsonTrigger["enabled"] = trigger->enabled; - } - AsyncResponseStream *response = request->beginResponseStream("application/json"); - root.printTo(*response); - + timeTriggerSettings->toJson(*response); request->send(response); } @@ -101,44 +79,47 @@ void handlePostTimeTriggers(AsyncWebServerRequest *request, uint8_t *data, size_ { _dln("API :: post time triggers"); - DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(10) + JSON_OBJECT_SIZE(3) + 10*JSON_OBJECT_SIZE(5) + 510); - JsonObject& root = jsonBuffer.parseObject((char*)data); - if (!root.success()) + bool changed; + if (timeTriggerSettings->fromJson((char*)data, &changed)) { + timeTriggerSettings->write(); + + if (changed) + timeTriggerSettingsChanged = true; + + request->send(200); + } + else request->send(400); - return; - } +} - JsonArray& jsonTriggers = root["triggers"]; - if (jsonTriggers.size() > 255) + +void handleGetMotionTriggers(AsyncWebServerRequest *request) +{ + _dln("API :: get motion triggers"); + + AsyncResponseStream *response = request->beginResponseStream("application/json"); + motionTriggerSettings->toJson(*response); + request->send(response); +} + + +void handlePostMotionTriggers(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total) +{ + _dln("API :: post motion triggers"); + + bool changed; + if (motionTriggerSettings->fromJson((char*)data, &changed)) { + motionTriggerSettings->write(); + + if (changed) + motionTriggerSettingsChanged = true; + + request->send(200); + } + else request->send(400); - return; - } - - timeTriggerSettings->enabled(root["enabled"]); - timeTriggerSettings->transitionTime(root["transitionTime"]); - timeTriggerSettings->beginSetTriggers(jsonTriggers.size()); - - TimeTrigger trigger; - for (uint8_t i = 0; i < jsonTriggers.size(); i++) - { - JsonObject& jsonTrigger = jsonTriggers[i]; - - trigger.time = jsonTrigger["time"]; - trigger.daysOfWeek = jsonTrigger["daysOfWeek"]; - trigger.brightness = jsonTrigger["brightness"]; - trigger.triggerType = (TimeTriggerType)(uint8_t)jsonTrigger["triggerType"]; - trigger.enabled = jsonTrigger["enabled"]; - - timeTriggerSettings->setTrigger(i, &trigger); - } - - timeTriggerSettings->endSetTriggers(); - timeTriggerSettings->write(); - timeTriggerSettingsChanged = true; - - request->send(200); } @@ -149,4 +130,7 @@ void registerAPIRoutes(AsyncWebServer* server) server->on("/api/triggers/time", HTTP_GET, handleGetTimeTriggers); server->on("/api/triggers/time", HTTP_POST, devNullRequest, devNullFileUpload, handlePostTimeTriggers); + + server->on("/api/triggers/motion", HTTP_GET, handleGetMotionTriggers); + server->on("/api/triggers/motion", HTTP_POST, devNullRequest, devNullFileUpload, handlePostMotionTriggers); } \ No newline at end of file diff --git a/src/server/firmware.cpp b/src/server/firmware.cpp index 5d1389d..5774629 100644 --- a/src/server/firmware.cpp +++ b/src/server/firmware.cpp @@ -4,7 +4,7 @@ * * https://git.x2software.net/pub/Stairs */ -#include "firmware.h" +#include "./firmware.h" #include "../config.h" #include "../debug.h" #include "../global.h" diff --git a/src/server/settings.cpp b/src/server/settings.cpp index a642c41..6b11f84 100644 --- a/src/server/settings.cpp +++ b/src/server/settings.cpp @@ -4,11 +4,11 @@ * * https://git.x2software.net/pub/Stairs */ -#include "settings.h" +#include "./settings.h" #include #include #include -#include "shared.h" +#include "./shared.h" #include "../assets/version.h" #include "../debug.h" #include "../global.h" diff --git a/src/server/shared.cpp b/src/server/shared.cpp index 6fbfd50..eb87a21 100644 --- a/src/server/shared.cpp +++ b/src/server/shared.cpp @@ -4,7 +4,7 @@ * * https://git.x2software.net/pub/Stairs */ -#include "shared.h" +#include "./shared.h" void devNullRequest(AsyncWebServerRequest *request) {} void devNullFileUpload(AsyncWebServerRequest *request, const String& filename, size_t index, uint8_t *data, size_t len, bool final) {} diff --git a/src/server/static.cpp b/src/server/static.cpp index 070971d..cf14d69 100644 --- a/src/server/static.cpp +++ b/src/server/static.cpp @@ -4,7 +4,7 @@ * * https://git.x2software.net/pub/Stairs */ -#include "static.h" +#include "./static.h" #include "../debug.h" #include "../assets/html.h" #include "../assets/js.h" diff --git a/src/settings/abstractjson.cpp b/src/settings/abstractjson.cpp new file mode 100644 index 0000000..79eb409 --- /dev/null +++ b/src/settings/abstractjson.cpp @@ -0,0 +1,70 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "./abstractjson.h" +#include + + +void AbstractJsonSettings::read() +{ + _d(getDebugPrefix()); _dln(" :: opening file"); + File settingsFile = SPIFFS.open(getFilename(), "r"); + if (!settingsFile) + { + _d(getDebugPrefix()); _dln(" :: failed to open file"); + return; + } + + size_t size = settingsFile.size(); + if (size > 1024) + { + _d(getDebugPrefix()); _dln(" :: file size is too large"); + return; + } + + if (size == 0) + { + _d(getDebugPrefix()); _dln(" :: zero size file"); + return; + } + + std::unique_ptr buf(new char[size]); + settingsFile.readBytes(buf.get(), size); + + _dln(buf.get()); + + if (fromJson(buf.get())) + { + _d(getDebugPrefix()); + _dln(" :: read from file"); + } + else + { + _d(getDebugPrefix()); + _dln(" :: failed to parse file"); + } +} + + +void AbstractJsonSettings::write() +{ + _d(getDebugPrefix()); _dln(" :: opening file for writing"); + File settingsFile = SPIFFS.open(getFilename(), "w"); + if (!settingsFile) + { + _d(getDebugPrefix()); _dln(" :: failed to open file for writing"); + return; + } + + toJson(settingsFile); + _d(getDebugPrefix()); _dln(" :: written to file"); +} + + +bool AbstractJsonSettings::fromJson(char* data) +{ + return fromJson(data, nullptr); +} diff --git a/src/settings/abstractjson.h b/src/settings/abstractjson.h new file mode 100644 index 0000000..326ef21 --- /dev/null +++ b/src/settings/abstractjson.h @@ -0,0 +1,28 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __settingsjson +#define __settingsjson + +#include "../debug.h" + +class AbstractJsonSettings +{ + protected: + virtual const char* getFilename() = 0; + virtual const char* getDebugPrefix() = 0; + + public: + void read(); + void write(); + + virtual void toJson(Print &print) = 0; + virtual bool fromJson(char* data, bool* changed) = 0; + + bool fromJson(char* data); +}; + +#endif \ No newline at end of file diff --git a/src/settings/connection.cpp b/src/settings/connection.cpp index 0589192..4053ef3 100644 --- a/src/settings/connection.cpp +++ b/src/settings/connection.cpp @@ -4,65 +4,15 @@ * * https://git.x2software.net/pub/Stairs */ -#include "connection.h" +#include "./connection.h" #include -#include +#include "./abstractjson.h" #include "../debug.h" -#include "../global.h" #include "../config.h" +#include "../global.h" -void ConnectionSettings::read() -{ - _dln("ConnectionSettings :: opening file"); - File settingsFile = SPIFFS.open(ConnectionSettingsFile, "r"); - if (!settingsFile) - { - _dln("ConnectionSettings :: failed to open file"); - return; - } - - size_t size = settingsFile.size(); - if (size > 1024) - { - _dln("ConnectionSettings :: file size is too large"); - return; - } - - if (size == 0) - { - _dln("ConnectionSettings :: zero size file"); - return; - } - - std::unique_ptr buf(new char[size]); - settingsFile.readBytes(buf.get(), size); - - _dln(buf.get()); - - if (fromJson(buf.get())) - _dln("ConnectionSettings :: read from file"); - else - _dln("ConnectionSettings :: failed to parse file"); -} - - -void ConnectionSettings::write() -{ - _dln("ConnectionSettings :: opening file for writing"); - File settingsFile = SPIFFS.open(ConnectionSettingsFile, "w"); - if (!settingsFile) - { - _dln("ConnectionSettings:: failed to open file for writing"); - return; - } - - toJson(settingsFile); - _dln("ConnectionSettings:: written to file"); -} - - void ConnectionSettings::toJson(Print &print) { DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(9)); @@ -82,12 +32,6 @@ void ConnectionSettings::toJson(Print &print) } -bool ConnectionSettings::fromJson(char* data) -{ - return fromJson(data, nullptr); -} - - bool ConnectionSettings::fromJson(char* data, bool* changed) { if (changed != nullptr) diff --git a/src/settings/connection.h b/src/settings/connection.h index 06ee43b..5391523 100644 --- a/src/settings/connection.h +++ b/src/settings/connection.h @@ -10,7 +10,9 @@ #include #include #include +#include "./abstractjson.h" #include "../charproperties.h" +#include "../config.h" enum ConnectionSettingsFlags @@ -21,7 +23,7 @@ enum ConnectionSettingsFlags }; -class ConnectionSettings : CharProperties +class ConnectionSettings : public AbstractJsonSettings { private: char* mHostname = nullptr; @@ -32,13 +34,12 @@ class ConnectionSettings : CharProperties IPAddress mSubnetMask = (uint32_t)0; IPAddress mGateway = (uint32_t)0; + protected: + virtual const char* getFilename() { return ConnectionSettingsFile; }; + virtual const char* getDebugPrefix() { return "ConnectionSettings"; }; + public: - void read(); - void write(); - - void toJson(Print &print); - bool fromJson(char* data); bool fromJson(char* data, bool* changed); diff --git a/src/settings/steps.cpp b/src/settings/steps.cpp index 18e0efd..55fcd76 100644 --- a/src/settings/steps.cpp +++ b/src/settings/steps.cpp @@ -4,20 +4,11 @@ * * https://git.x2software.net/pub/Stairs */ -#include "steps.h" -#include +#include "./steps.h" +#include #include "../debug.h" -struct Header -{ - uint8_t version; - uint8_t stepCount; - bool useCurve; -}; - - - StepsSettings::StepsSettings() { for (uint8_t i = 0; i < MaxStepCount; i++) @@ -25,41 +16,63 @@ StepsSettings::StepsSettings() } -void StepsSettings::read() +void StepsSettings::toJson(Print &print) { - _dln("StepsSettings :: Loading step settings"); - File f = SPIFFS.open(StepSettingsFile, "r"); - if (!f) - return; + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(16) + JSON_OBJECT_SIZE(3)); - if (!f.available()) - return; + JsonObject& root = jsonBuffer.createObject(); + root["count"] = count(); + root["useCurve"] = useCurve(); - Header header; - f.readBytes((char*)&header, sizeof(Header)); + JsonArray& jsonCurveShift = root.createNestedArray("curveShift"); + for (uint8_t step = 0; step < MaxStepCount; step++) + jsonCurveShift.add(curveShift(step)); - if (header.version != 1) - return; - - mUseCurve = (header.useCurve == 1); - f.readBytes((char*)&mCurveShift, header.stepCount * sizeof(uint16_t)); - f.close(); + root.printTo(print); } -void StepsSettings::write() +bool StepsSettings::fromJson(char* data, bool* changed) { - _dln("StepsSettings :: Saving step settings"); - File f = SPIFFS.open(StepSettingsFile, "w"); - if (!f) - return; + if (changed != nullptr) + *changed = false; - Header header; - header.version = 1; - header.useCurve = mUseCurve; - header.stepCount = mCount; + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(16) + JSON_OBJECT_SIZE(3) + 80); + JsonObject& root = jsonBuffer.parseObject(data); - f.write((uint8_t*)&header, sizeof(Header)); - f.write((uint8_t*)&mCurveShift, header.stepCount * sizeof(uint16_t)); - f.close(); + if (!root.success()) + return false; + + uint8_t jsonCount = root["count"]; + bool jsonUseCurve = root["useCurve"]; + + if (jsonCount != count() || + jsonUseCurve != useCurve()) + { + count(jsonCount); + useCurve(jsonUseCurve); + + if (changed != nullptr) + *changed = true; + } + + + JsonArray& jsonCurveShift = root["curveShift"]; + uint8_t stepCount = jsonCurveShift.size(); + if (stepCount >= MaxStepCount) + stepCount = MaxStepCount - 1; + + for (uint8_t step = 0; step < stepCount; step++) + { + uint16_t value = jsonCurveShift[step]; + + if (value != curveShift(step)) + { + curveShift(step, value); + if (changed != nullptr) + *changed = true; + } + } + + return true; } \ No newline at end of file diff --git a/src/settings/steps.h b/src/settings/steps.h index 0b1687c..7b83a51 100644 --- a/src/settings/steps.h +++ b/src/settings/steps.h @@ -8,22 +8,29 @@ #define __settingssteps #include +#include "./abstractjson.h" +#include "../config.h" #define MaxStepCount 16 -class StepsSettings +class StepsSettings : public AbstractJsonSettings { private: - uint8_t mCount = 16; + uint8_t mCount = MaxStepCount; bool mUseCurve = true; uint16_t mCurveShift[MaxStepCount]; + protected: + virtual const char* getFilename() { return StepsSettingsFile; }; + virtual const char* getDebugPrefix() { return "StepsSettings"; }; + public: StepsSettings(); - void read(); - void write(); + void toJson(Print &print); + bool fromJson(char* data, bool* changed); + uint8_t count() { return mCount; } void count(uint8_t value) { mCount = value; } diff --git a/src/settings/system.cpp b/src/settings/system.cpp index 4647c2d..18a05f9 100644 --- a/src/settings/system.cpp +++ b/src/settings/system.cpp @@ -4,7 +4,7 @@ * * https://git.x2software.net/pub/Stairs */ -#include "system.h" +#include "./system.h" #include #include #include "../debug.h" @@ -13,56 +13,6 @@ -void SystemSettings::read() -{ - _dln("SystemSettings :: opening file"); - File settingsFile = SPIFFS.open(SystemSettingsFile, "r"); - if (!settingsFile) - { - _dln("SystemSettings :: failed to open file"); - return; - } - - size_t size = settingsFile.size(); - if (size > 1024) - { - _dln("SystemSettings :: file size is too large"); - return; - } - - if (size == 0) - { - _dln("SystemSettings :: zero size file"); - return; - } - - std::unique_ptr buf(new char[size]); - settingsFile.readBytes(buf.get(), size); - - _dln(buf.get()); - - if (fromJson(buf.get())) - _dln("SystemSettings :: read from file"); - else - _dln("SystemSettings :: failed to parse file"); -} - - -void SystemSettings::write() -{ - _dln("SystemSettings :: opening file for writing"); - File settingsFile = SPIFFS.open(SystemSettingsFile, "w"); - if (!settingsFile) - { - _dln("SystemSettings:: failed to open file for writing"); - return; - } - - toJson(settingsFile); - _dln("SystemSettings:: written to file"); -} - - void SystemSettings::toJson(Print &print) { DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(6) + JSON_OBJECT_SIZE(5)); @@ -87,11 +37,6 @@ void SystemSettings::toJson(Print &print) } -bool SystemSettings::fromJson(char* data) -{ - return fromJson(data, nullptr); -} - bool SystemSettings::fromJson(char* data, bool* changed) { if (changed != nullptr) diff --git a/src/settings/system.h b/src/settings/system.h index c212d0a..b7c9652 100644 --- a/src/settings/system.h +++ b/src/settings/system.h @@ -11,9 +11,10 @@ #include #include #include "../charproperties.h" +#include "./abstractjson.h" -class SystemSettings : CharProperties +class SystemSettings : public AbstractJsonSettings { private: double mLatitude = 0; @@ -34,13 +35,12 @@ class SystemSettings : CharProperties // TODO loginUsername // TODO loginPassword + protected: + virtual const char* getFilename() { return SystemSettingsFile; }; + virtual const char* getDebugPrefix() { return "SystemSettings"; }; + public: - void read(); - void write(); - - void toJson(Print &print); - bool fromJson(char* data); bool fromJson(char* data, bool* changed); diff --git a/src/settings/triggers/motion.cpp b/src/settings/triggers/motion.cpp new file mode 100644 index 0000000..0fa9abe --- /dev/null +++ b/src/settings/triggers/motion.cpp @@ -0,0 +1,81 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#include "./motion.h" +#include +#include +#include "../../debug.h" +#include "../../global.h" + + +void MotionTriggerSettings::toJson(Print &print) +{ + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(2) + 2*JSON_OBJECT_SIZE(4) + JSON_OBJECT_SIZE(5)); + + JsonObject& root = jsonBuffer.createObject(); + root["enabled"] = enabled(); + root["enabledDuringTimeTrigger"] = enabledDuringTimeTrigger(); + root["transitionTime"] = transitionTime(); + root["delay"] = delay(); + + JsonArray& jsonTriggers = root.createNestedArray("triggers"); + + for (uint8_t i = 0; i < triggerCount(); i++) + { + MotionTrigger* triggerItem = trigger(i); + + JsonObject& jsonTrigger = jsonTriggers.createNestedObject(); + jsonTrigger["pin"] = triggerItem->pin; + jsonTrigger["brightness"] = triggerItem->brightness; + jsonTrigger["direction"] = (uint8_t)triggerItem->direction; + jsonTrigger["enabled"] = triggerItem->enabled; + } + + root.printTo(print); +} + + +bool MotionTriggerSettings::fromJson(char* data, bool* changed) +{ + if (changed != nullptr) + *changed = false; + + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(2) + 2*JSON_OBJECT_SIZE(4) + JSON_OBJECT_SIZE(5) + 200); + JsonObject& root = jsonBuffer.parseObject(data); + + if (!root.success()) + return false; + + + enabled(root["enabled"]); + enabledDuringTimeTrigger(root["enabledDuringTimeTrigger"]); + transitionTime(root["transitionTime"]); + delay(root["delay"]); + + JsonArray& jsonTriggers = root["triggers"]; + if (mTriggers != nullptr) + delete [] mTriggers; + + mTriggerCount = jsonTriggers.size(); + mTriggers = new MotionTrigger[mTriggerCount]; + + + for (uint8_t i = 0; i < mTriggerCount; i++) + { + JsonObject& jsonTrigger = jsonTriggers[i]; + MotionTrigger* trigger = &mTriggers[i]; + + trigger->pin = jsonTrigger["pin"]; + trigger->brightness = jsonTrigger["brightness"]; + trigger->direction = (MotionDirection)(uint8_t)jsonTrigger["direction"]; + trigger->enabled = jsonTrigger["enabled"]; + } + + if (changed != nullptr) + *changed = true; + + return true; +} diff --git a/src/settings/triggers/motion.h b/src/settings/triggers/motion.h new file mode 100644 index 0000000..cda7176 --- /dev/null +++ b/src/settings/triggers/motion.h @@ -0,0 +1,67 @@ +/* + * Stairs + * Copyright 2017 (c) Mark van Renswoude + * + * https://git.x2software.net/pub/Stairs +*/ +#ifndef __settingstriggersmotion +#define __settingstriggersmotion + +#include +#include "../../config.h" +#include "../abstractjson.h" + + +enum MotionDirection +{ + Nondirectional = 1, + TopDown = 2, + BottomUp = 3 +}; + + +struct MotionTrigger +{ + uint8_t pin; + uint8_t brightness; + MotionDirection direction; + bool enabled; +}; + + +class MotionTriggerSettings : public AbstractJsonSettings +{ + private: + bool mEnabled = false; + bool mEnabledDuringTimeTrigger = false; + uint16_t mTransitionTime = 0; + uint32_t mDelay = 0; + uint8_t mTriggerCount = 0; + MotionTrigger* mTriggers = nullptr; + + protected: + virtual const char* getFilename() { return MotionTriggerSettingsFile; }; + virtual const char* getDebugPrefix() { return "MotionTriggerSettings"; }; + + public: + void toJson(Print &print); + bool fromJson(char* data, bool* changed); + + + bool enabled() { return mEnabled; } + void enabled(bool value) { mEnabled = value; } + + bool enabledDuringTimeTrigger() { return mEnabledDuringTimeTrigger; } + void enabledDuringTimeTrigger(bool value) { mEnabledDuringTimeTrigger = value; } + + uint16_t transitionTime() { return mTransitionTime; } + void transitionTime(uint16_t value) { mTransitionTime = value; } + + uint32_t delay() { return mDelay; } + void delay(uint32_t value) { mDelay = value; } + + uint8_t triggerCount() { return mTriggerCount; } + MotionTrigger* trigger(uint8_t index) { return &mTriggers[index]; } +}; + +#endif \ No newline at end of file diff --git a/src/settings/triggers/time.cpp b/src/settings/triggers/time.cpp index dc21980..9e90ef6 100644 --- a/src/settings/triggers/time.cpp +++ b/src/settings/triggers/time.cpp @@ -4,9 +4,9 @@ * * https://git.x2software.net/pub/Stairs */ -#include "time.h" +#include "./time.h" #include -#include +#include #include "../../debug.h" #include "../../global.h" #include "../../praisethesun.h" @@ -46,63 +46,77 @@ DayOfWeek toDayOfWeek(timeDayOfWeek_t timeDay) } -struct Header + + +void TimeTriggerSettings::toJson(Print &print) { - uint8_t version; - uint8_t triggerCount; - uint16_t transitionTime; - bool enabled; -}; + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(10) + JSON_OBJECT_SIZE(3) + 10*JSON_OBJECT_SIZE(5)); + JsonObject& root = jsonBuffer.createObject(); + root["enabled"] = enabled(); + root["transitionTime"] = transitionTime(); -void TimeTriggerSettings::read() -{ - _dln("TimeTriggerSettings :: Loading time triggers"); - File f = SPIFFS.open(TimeTriggerSettingsFile, "r"); - if (!f) - return; + JsonArray& jsonTriggers = root.createNestedArray("triggers"); - if (!f.available()) - return; + for (uint8_t i = 0; i < triggerCount(); i++) + { + TimeTrigger* triggerItem = trigger(i); - Header header; - f.readBytes((char*)&header, sizeof(Header)); + JsonObject& jsonTrigger = jsonTriggers.createNestedObject(); + jsonTrigger["time"] = triggerItem->time; + jsonTrigger["daysOfWeek"] = triggerItem->daysOfWeek; + jsonTrigger["brightness"] = triggerItem->brightness; + jsonTrigger["triggerType"] = (uint8_t)triggerItem->triggerType; + jsonTrigger["enabled"] = triggerItem->enabled; + } - if (header.version != 1) - return; - - mEnabled = header.enabled; - mTransitionTime = header.transitionTime; - beginSetTriggers(header.triggerCount); - - if (header.triggerCount > 0) - f.readBytes((char*)&mTriggers, header.triggerCount * sizeof(TimeTrigger)); - - endSetTriggers(); - - f.close(); + root.printTo(print); } -void TimeTriggerSettings::write() +bool TimeTriggerSettings::fromJson(char* data, bool* changed) { - _dln("TimeTriggerSettings :: Saving time triggers"); - File f = SPIFFS.open(TimeTriggerSettingsFile, "w"); - if (!f) - return; + if (changed != nullptr) + *changed = false; - Header header; - header.version = 1; - header.enabled = mEnabled; - header.transitionTime = mTransitionTime; - header.triggerCount = mTriggerCount; + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(10) + JSON_OBJECT_SIZE(3) + 10*JSON_OBJECT_SIZE(5) + 270); + JsonObject& root = jsonBuffer.parseObject(data); - f.write((uint8_t*)&header, sizeof(Header)); - f.write((uint8_t*)&mTriggers, header.triggerCount * sizeof(TimeTrigger)); - f.close(); + if (!root.success()) + return false; + + + enabled(root["enabled"]); + transitionTime(root["transitionTime"]); + + JsonArray& jsonTriggers = root["triggers"]; + if (mTriggers != nullptr) + delete [] mTriggers; + + mTriggerCount = jsonTriggers.size(); + mTriggers = new TimeTrigger[mTriggerCount]; + + + for (uint8_t i = 0; i < mTriggerCount; i++) + { + JsonObject& jsonTrigger = jsonTriggers[i]; + TimeTrigger* trigger = &mTriggers[i]; + + trigger->time = jsonTrigger["time"]; + trigger->daysOfWeek = jsonTrigger["daysOfWeek"]; + trigger->brightness = jsonTrigger["brightness"]; + trigger->triggerType = (TimeTriggerType)(uint8_t)jsonTrigger["triggerType"]; + trigger->enabled = jsonTrigger["enabled"]; + } + + if (changed != nullptr) + *changed = true; + + return true; } + TimeTrigger* TimeTriggerSettings::getActiveTrigger(tmElements_t &time) { if (mTriggerCount == 0) @@ -176,55 +190,3 @@ TimeTrigger* TimeTriggerSettings::getActiveTrigger(tmElements_t &time) return nullptr; } - - -void TimeTriggerSettings::beginSetTriggers(uint8_t count) -{ - if (mTriggers != nullptr) - delete [] mTriggers; - - mTriggers = new TimeTrigger[count]; - mTriggerCount = count; -} - - -void TimeTriggerSettings::setTrigger(uint8_t index, TimeTrigger* value) -{ - memcpy(&mTriggers[index], value, sizeof(TimeTrigger)); -} - - -void TimeTriggerSettings::endSetTriggers() -{ - /* No need to sort, sunrise / sunset triggers already mess things up anyways - // Sort triggers by time of day - // Based on the Comb sort implementation by Rob Tillaart - // http://forum.arduino.cc/index.php?topic=280486.0 - uint8_t i, j; - uint8_t gap; - bool swapped = true; - TimeTrigger temp; - - gap = mTriggerCount; - while (gap > 1 || swapped) - { - if (gap > 1) - { - gap = gap * 10/13; - if (gap == 9 || gap == 10) gap = 11; - } - - swapped = false; - for (i = 0, j = gap; j < mTriggerCount; i++, j++) - { - if (mTriggers[i].time > mTriggers[j].time) - { - temp = mTriggers[i]; - mTriggers[i] = mTriggers[j]; - mTriggers[j] = temp; - swapped = true; - } - } - } - */ -} \ No newline at end of file diff --git a/src/settings/triggers/time.h b/src/settings/triggers/time.h index 766bb78..2747fdf 100644 --- a/src/settings/triggers/time.h +++ b/src/settings/triggers/time.h @@ -9,6 +9,8 @@ #include #include +#include "../../config.h" +#include "../abstractjson.h" enum DayOfWeek { @@ -44,7 +46,7 @@ struct TimeTrigger }; -class TimeTriggerSettings +class TimeTriggerSettings : public AbstractJsonSettings { private: bool mEnabled = false; @@ -52,9 +54,13 @@ class TimeTriggerSettings uint8_t mTriggerCount = 0; TimeTrigger* mTriggers = nullptr; + protected: + virtual const char* getFilename() { return ConnectionSettingsFile; }; + virtual const char* getDebugPrefix() { return "ConnectionSettings"; }; + public: - void read(); - void write(); + void toJson(Print &print); + bool fromJson(char* data, bool* changed); TimeTrigger* getActiveTrigger(tmElements_t &time); @@ -68,10 +74,6 @@ class TimeTriggerSettings uint8_t triggerCount() { return mTriggerCount; } TimeTrigger* trigger(uint8_t index) { return &mTriggers[index]; } - - void beginSetTriggers(uint8_t count); - void setTrigger(uint8_t index, TimeTrigger* value); - void endSetTriggers(); }; #endif \ No newline at end of file diff --git a/src/stairs.cpp b/src/stairs.cpp index b8dcdf8..8ff5b3f 100644 --- a/src/stairs.cpp +++ b/src/stairs.cpp @@ -1,8 +1,8 @@ -#include "stairs.h" +#include "./stairs.h" #include #include -#include "debug.h" -#include "global.h" +#include "./debug.h" +#include "./global.h" diff --git a/src/stairs.h b/src/stairs.h index b687b9d..324ec3f 100644 --- a/src/stairs.h +++ b/src/stairs.h @@ -1,9 +1,9 @@ #ifndef __Stairs #define __Stairs -#include "components/PCA9685.h" -#include "config.h" -#include "settings/steps.h" +#include "./components/PCA9685.h" +#include "./config.h" +#include "./settings/steps.h" struct Step { From 85a60ea44e29c8110805ef1933101d19d3be54a0 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Tue, 16 Jan 2018 22:07:20 +0100 Subject: [PATCH 19/43] Implemented Access Point mode button Split main.cpp in multiple files --- src/assets/js.h | 1864 +++++++++++++++++++++--------------------- src/assets/version.h | 6 +- src/config.h | 2 + src/global.cpp | 1 + src/global.h | 3 + src/main.cpp | 455 +---------- src/main.debug.h | 74 ++ src/main.led.h | 70 ++ src/main.triggers.h | 197 +++++ src/main.wifi.h | 121 +++ web/app.js | 91 ++- web/dist/bundle.js | 2 +- web/lang.js | 4 +- 13 files changed, 1482 insertions(+), 1408 deletions(-) create mode 100644 src/main.debug.h create mode 100644 src/main.led.h create mode 100644 src/main.triggers.h create mode 100644 src/main.wifi.h diff --git a/src/assets/js.h b/src/assets/js.h index f624811..54ffb30 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -336,10 +336,10 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x66,0x61,0x98,0xfd,0xc0,0x8b,0x62,0x9c,0x24,0xc1,0x35,0xfd,0x24,0x58,0x71,0xed,0x11,0x46,0xa6,0xc7, 0x75,0x56,0x8f,0xee,0x2d,0x73,0x62,0xa6,0xda,0xb1,0x37,0x20,0x72,0x4b,0xc9,0x3e,0x04,0x4f,0xf3,0x25, 0x55,0xa8,0x67,0x8c,0x0b,0xdc,0xd7,0x15,0x21,0xc4,0xea,0x51,0x61,0xfb,0x55,0x61,0xa7,0xd7,0xd7,0x3c, - 0x3c,0x98,0x40,0x62,0x47,0xc8,0x5a,0xd5,0x4a,0x1a,0x37,0x1d,0xf4,0x12,0x8f,0x9f,0xa8,0x57,0xb5,0x8a, - 0x3a,0x6d,0x6c,0x9d,0x57,0xd5,0x27,0xf8,0xc3,0xff,0x64,0xba,0xec,0x07,0xf1,0x53,0x30,0x88,0x5f,0x4b, - 0xe9,0xda,0x77,0xa2,0x73,0xe7,0x96,0xcd,0x1c,0xf6,0xb2,0xc2,0xc0,0x25,0x52,0xa1,0x6b,0xff,0x07,0x2b, - 0xf5,0x8d,0x8c,0xa9,0x75,0xf8,0x1d,0xf5,0xe1,0x87,0x8d,0x2e,0xfc,0x10,0x74,0x61,0xfb,0x1d,0xe4,0x59, + 0x3c,0x98,0x40,0x62,0x47,0xc8,0x5a,0xd5,0x4a,0x1a,0x37,0x1d,0xf4,0x12,0x8f,0x1f,0xa8,0x57,0xb5,0x8a, + 0x3a,0x6d,0x6c,0x9d,0x57,0xd5,0x27,0xf8,0xc3,0xff,0x60,0xba,0xec,0x07,0xf1,0x43,0x30,0x88,0x5f,0x4b, + 0xe9,0xda,0x77,0xa2,0x73,0xe7,0x96,0xcd,0x1c,0xf6,0xb2,0xc2,0xc0,0x25,0x52,0xa1,0x6b,0xff,0x27,0x2b, + 0xf5,0x8d,0x8c,0xa9,0x75,0xf8,0x1d,0xf5,0xe1,0xa7,0x8d,0x2e,0xfc,0x14,0x74,0x61,0xfb,0x1d,0xe4,0x59, 0x2f,0x4b,0xda,0x7f,0x03,0x3e,0x46,0xf0,0x62,0xa7,0x1d,0x6d,0x35,0x34,0x63,0xf3,0x2e,0x4d,0x74,0x84, 0xcb,0x3f,0x12,0x39,0x33,0xab,0x33,0x23,0x76,0x6a,0xb3,0x65,0x6d,0xdd,0xce,0x93,0xf1,0xd2,0x4a,0x82, 0x33,0x2f,0x4c,0xd4,0xf4,0xac,0xbd,0x14,0x48,0xb3,0x24,0x4f,0x1f,0xc5,0x41,0x95,0xdf,0x05,0xa7,0x1e, @@ -556,11 +556,11 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x45,0x75,0x3a,0xac,0x8e,0x37,0xf0,0x20,0x40,0x77,0x4d,0xdd,0xc3,0x61,0xe7,0xdc,0x7a,0xd4,0x5c,0x9c, 0x45,0x69,0xb4,0xc8,0xdb,0x73,0x36,0x34,0x9a,0xc8,0xe3,0x86,0xb6,0xe8,0x49,0x6b,0xa3,0xfb,0x6c,0x6a, 0x38,0x6d,0x8d,0x2e,0xea,0xde,0x6f,0x2b,0x5d,0x5f,0x7f,0xd0,0xd0,0x43,0x57,0x72,0x0f,0xcd,0x5d,0xb1, - 0x34,0x67,0xc5,0x45,0x34,0xa4,0x4a,0xf9,0xa9,0xb7,0x57,0xd8,0xe6,0xb2,0xd6,0xa7,0x3d,0x1f,0x21,0xeb, + 0x34,0x67,0xc5,0x45,0x34,0xa4,0x4a,0xf9,0xa1,0xb7,0x57,0xd8,0xe6,0xb2,0xd6,0xa7,0x3d,0x1f,0x21,0xeb, 0x79,0x5d,0x84,0x6e,0xdc,0x16,0x4c,0x81,0x21,0xe0,0xa0,0x5d,0xc1,0x72,0x9e,0xbe,0x6d,0xc6,0x7d,0xb5, 0x4a,0xc5,0xd6,0x50,0x73,0xfe,0xc5,0xe1,0x8f,0x5f,0x1c,0xb2,0x38,0x60,0xf1,0x68,0x08,0xf9,0xd4,0xb7, 0xff,0xb2,0x7c,0x51,0xd5,0x83,0xb5,0xe0,0xaf,0x43,0x19,0x05,0xe1,0xe3,0x9d,0x1d,0x4e,0x62,0x8c,0x6c, - 0xeb,0x26,0xf8,0x90,0x87,0x22,0x00,0xdc,0x1f,0x44,0x88,0xed,0x63,0x6c,0x81,0xc6,0xc3,0x51,0x4f,0xbf, + 0xeb,0x26,0xf8,0x90,0x87,0x22,0x00,0xdc,0x9f,0x44,0x88,0xed,0x63,0x6c,0x81,0xc6,0xc3,0x51,0x4f,0xbf, 0x2c,0x64,0x92,0xfd,0x68,0x8e,0xfe,0xd0,0x3f,0x9c,0x75,0x7e,0xde,0x78,0x4c,0x1b,0xe3,0x54,0x8e,0xc4, 0x42,0x14,0x01,0x3f,0xf7,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x09,0x16,0x51,0xc3, 0x1b,0x31,0xae,0xcd,0x9c,0x8b,0x30,0x34,0xf3,0x0c,0x79,0xcd,0xba,0x3a,0x9a,0x53,0xcd,0x7e,0x65,0x9f, @@ -654,18 +654,18 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xa3,0xe1,0x27,0xb3,0x1c,0xd4,0x63,0x81,0x80,0xf5,0x6c,0x74,0x63,0xc1,0x87,0x70,0x2c,0x78,0xbd,0x84, 0xb8,0xf3,0xab,0x25,0xae,0x1b,0xa4,0x2e,0xa6,0xf7,0x0d,0x8e,0xbd,0xaf,0xac,0x69,0x8e,0x0f,0x6d,0xb2, 0x15,0xa3,0xc1,0xad,0x9b,0x68,0xb7,0xda,0x8d,0xd6,0x51,0xb0,0x00,0xb9,0x0e,0xd1,0x78,0x88,0xdc,0x68, - 0x0a,0x7f,0xaa,0x7d,0x00,0xc3,0xe0,0x32,0xab,0xc3,0x28,0x79,0xb4,0x0f,0xa9,0x23,0x6e,0xe7,0x7a,0x69, - 0x53,0x8f,0x28,0xf5,0xa7,0xda,0x45,0xe9,0x8d,0xbf,0xe3,0x8f,0xc3,0x12,0xe0,0xa9,0xbf,0xd9,0x3b,0x98, + 0x0a,0x7f,0xa8,0x7d,0x00,0xc3,0xe0,0x32,0xab,0xc3,0x28,0x79,0xb4,0x0f,0xa9,0x23,0x6e,0xe7,0x7a,0x69, + 0x53,0x8f,0x28,0xf5,0x87,0xda,0x45,0xe9,0x8d,0xbf,0xe3,0x8f,0xc3,0x12,0xe0,0xa9,0xbf,0xd9,0x3b,0x98, 0xdc,0x50,0xaf,0x53,0x7f,0xfe,0x7c,0x47,0x14,0x1b,0xb1,0xe2,0x3c,0x00,0x9b,0xfa,0x5d,0x4d,0x18,0x1f, - 0x83,0x59,0xa7,0x52,0x9a,0x4b,0x70,0x9c,0x26,0x26,0x7c,0x7e,0x00,0xc9,0x4a,0x2d,0xfc,0x5e,0x67,0xbf, + 0x83,0x59,0xa7,0x52,0x9a,0x4b,0x70,0x9c,0x26,0x26,0x7c,0x7e,0x02,0xc9,0x4a,0x2d,0xfc,0x5e,0x67,0xbf, 0x41,0x44,0xb0,0xcd,0xce,0x76,0xc9,0x4a,0xc7,0x3f,0xd6,0x19,0xc2,0x0f,0x27,0x93,0x39,0x9e,0x93,0xf4, 0x6b,0xb0,0xb4,0x3f,0xd6,0xa1,0x98,0xca,0xca,0x9f,0xc5,0x43,0x92,0xaa,0xf8,0xae,0xb6,0x15,0x70,0x60, 0x59,0xbe,0x87,0x6b,0x05,0xbf,0xef,0x84,0x83,0x1a,0x3a,0xf2,0x85,0xeb,0x82,0x00,0x72,0x77,0x57,0x7d, 0xfd,0x85,0x79,0xde,0xdb,0x63,0x53,0x3b,0x9a,0xc3,0xdf,0xb8,0x26,0x01,0xad,0x35,0x1a,0xb7,0x31,0xcf, 0xbb,0xe3,0xfd,0xdd,0x8c,0xd7,0xa6,0xfc,0x4e,0x63,0x55,0xbf,0xd5,0x50,0x37,0x7a,0x4d,0xb2,0x71,0xef, 0x64,0xdf,0x88,0x89,0xb9,0xd1,0x26,0x8d,0xee,0x11,0x5d,0x1a,0xe3,0x0e,0x45,0xaa,0xd1,0xdc,0xd9,0x85, - 0x02,0xf2,0xc8,0x10,0x11,0x38,0xa1,0x6a,0x6f,0x3f,0xfc,0x43,0x1d,0x12,0x54,0xbb,0xbb,0xdf,0x85,0xa6, - 0xef,0xd3,0xa0,0xe0,0x77,0xf5,0x37,0xd9,0x4f,0x01,0xdc,0xaf,0xc2,0xa8,0xe1,0x4c,0x1e,0xb6,0xb7,0xb7, + 0x02,0xf2,0xc8,0x10,0x11,0x38,0xa1,0x6a,0x6f,0x3f,0xfc,0x53,0x1d,0x12,0x54,0xbb,0xbb,0xdf,0x85,0xa6, + 0xef,0xd3,0xa0,0xe0,0x77,0xf5,0x37,0xd9,0x0f,0x01,0xdc,0xaf,0xc2,0xa8,0xe1,0x4c,0x1e,0xb6,0xb7,0xb7, 0x4c,0x47,0x06,0x42,0x6c,0x9e,0xa4,0xd0,0xd9,0x50,0x66,0x93,0x1d,0x68,0x79,0x2d,0xe0,0x97,0x31,0x4e, 0xc6,0x81,0x63,0x9e,0x0e,0xa5,0x22,0x1a,0x91,0x2a,0x74,0x32,0x3a,0xc6,0x75,0x91,0x1f,0xf3,0x06,0x86, 0x3d,0x95,0x7f,0x0b,0xa5,0x66,0xe7,0xde,0xc3,0x33,0xab,0xee,0x88,0x27,0x61,0x7a,0x7b,0xce,0x7e,0x95, @@ -787,7 +787,7 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xad,0x08,0x93,0x72,0xec,0xa4,0xd1,0xac,0x68,0xd8,0x46,0x59,0x32,0x42,0xf5,0xc5,0x93,0x60,0x26,0xb6, 0xef,0x70,0x78,0x10,0x49,0x55,0xdb,0x47,0xbe,0x93,0x36,0x7d,0xc2,0xfe,0x34,0x77,0xc9,0xcc,0x02,0xd7, 0x8b,0x40,0x2a,0xca,0x64,0xc0,0x86,0x61,0xac,0x5d,0x45,0x9c,0xf1,0x1d,0x93,0x58,0xeb,0xb6,0x3e,0xa1, - 0x3a,0xfe,0x01,0x6f,0x30,0xe7,0x92,0x18,0x0a,0x39,0x7f,0x08,0x1a,0xe0,0x2b,0x30,0x7d,0xb4,0xd4,0x6e, + 0x3a,0xfe,0x01,0x6f,0x30,0xe7,0x92,0x18,0x0a,0x39,0x7f,0x0a,0x1a,0xe0,0x2b,0x30,0x7d,0xb4,0xd4,0x6e, 0x20,0xa5,0xd2,0x5f,0x59,0x91,0x20,0x88,0x12,0x9b,0x37,0x8f,0x4d,0x6c,0x25,0x42,0x7f,0x8c,0x0a,0x2d, 0x3f,0xd9,0xf3,0xe6,0x2b,0xe8,0x8b,0x4b,0x5c,0x0e,0x72,0xc4,0xfe,0x7c,0x03,0x31,0x6d,0x7f,0xf4,0x92, 0xa4,0x07,0xbf,0xcc,0xf6,0x3e,0x69,0xbd,0xdc,0xcb,0xe7,0x74,0x58,0xdc,0x33,0x37,0x0f,0x32,0x7d,0xe3, @@ -964,8 +964,8 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xf6,0x82,0xca,0x3f,0x58,0x34,0x85,0xbe,0x25,0xdc,0x33,0xa3,0x22,0xc6,0x26,0xec,0x45,0x99,0xa8,0xd7, 0x92,0xfd,0x22,0xf0,0x68,0x44,0xc9,0xad,0xaf,0x47,0xfb,0xc0,0x6e,0xea,0xfd,0x66,0xbe,0x9e,0x9d,0xe9, 0x07,0x9c,0xf9,0x64,0x33,0x93,0xe0,0xa0,0xa6,0x73,0x0e,0xd9,0x74,0x9a,0xd9,0x37,0x5c,0xb9,0x51,0xaa, - 0x9f,0x4c,0x57,0x8a,0xe5,0x39,0xed,0xad,0xdb,0x62,0x99,0xcf,0xe8,0x4f,0x45,0x7f,0xaa,0xc6,0x77,0x09, - 0x4e,0xed,0x55,0x63,0x3e,0xf9,0xa1,0xcc,0x62,0xfe,0x66,0x7a,0x5e,0x13,0x89,0xf2,0xcb,0x83,0x5f,0x66, + 0x1f,0x4c,0x57,0x8a,0xe5,0x39,0xed,0xad,0xdb,0x62,0x99,0xcf,0xe8,0x4f,0x45,0x7f,0xaa,0xc6,0x77,0x09, + 0x4e,0xed,0x55,0x63,0x3e,0xf9,0xa9,0xcc,0x62,0xfe,0x66,0x7a,0x5e,0x13,0x89,0xf2,0xcb,0x83,0x5f,0x66, 0xbb,0x41,0xef,0x6f,0xd6,0x23,0xbe,0x69,0x38,0x51,0x3f,0x42,0x89,0x0d,0xaa,0xea,0x5d,0xc9,0x51,0x36, 0x81,0x95,0xbf,0x63,0x7b,0x88,0xe1,0x6b,0x99,0xbf,0x23,0x7c,0x62,0x62,0x34,0x44,0xea,0x06,0xd7,0x3a, 0x07,0x94,0x30,0x2a,0xdb,0x5f,0x13,0x6e,0x31,0xb3,0xbc,0x19,0x13,0x10,0x3d,0xd8,0x73,0xdf,0x33,0xd4, @@ -1013,7 +1013,7 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xca,0x8c,0xa7,0x12,0x98,0xe5,0x0e,0xa6,0x6f,0xab,0x9c,0x3c,0x37,0x29,0xa9,0x0e,0xfd,0x5e,0x1d,0x05, 0xa2,0x27,0x6d,0xfa,0x5c,0xa4,0x38,0xc4,0xc5,0x0d,0x6e,0xab,0x29,0x36,0x54,0xf6,0x8e,0x08,0xc0,0x8f, 0x77,0x17,0xd8,0x8d,0x9a,0xe8,0x28,0x7b,0x49,0x85,0xa8,0x47,0x4c,0x85,0x6e,0x1c,0x4a,0xa2,0x2b,0x26, - 0xbc,0xf2,0x03,0x9b,0x4f,0xbb,0xbb,0xf4,0xb4,0x4d,0xd2,0x2e,0xc9,0xd9,0xb7,0x6d,0x75,0x91,0x46,0x7b, + 0xbc,0xf2,0x13,0x9b,0x4f,0xbb,0xbb,0xf4,0xb4,0x4d,0xd2,0x2e,0xc9,0xd9,0xb7,0x6d,0x75,0x91,0x46,0x7b, 0x7b,0x3b,0x10,0x3e,0x5f,0x1b,0x33,0x46,0x22,0x6f,0x2f,0x60,0x53,0x97,0x74,0xfd,0x45,0xb4,0x95,0x7c, 0xc2,0x5b,0x04,0x4a,0x11,0x38,0x8d,0xe4,0xc4,0x80,0xf4,0x2f,0xfc,0x63,0x3d,0xe2,0x61,0x7e,0x94,0xf0, 0x1d,0x4a,0x59,0x3e,0xc9,0xad,0xd3,0x7b,0x93,0xf4,0x6e,0xc4,0x6b,0x92,0x09,0x71,0x72,0xcd,0x91,0xdb, @@ -1028,7 +1028,7 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x33,0xea,0xeb,0x56,0xa4,0x16,0x75,0x76,0x41,0xd3,0x4c,0x87,0xd1,0xc3,0xb1,0x79,0x38,0x18,0x81,0x43, 0xe5,0x52,0xd9,0x8f,0xaa,0x5b,0xfd,0x02,0x45,0x9a,0xd6,0x54,0x02,0x61,0xcf,0xfa,0x8e,0x49,0x25,0x9c, 0xbd,0x28,0x1a,0x9e,0x4f,0xf3,0x68,0x2c,0x7c,0xcf,0xea,0xcc,0x24,0xd8,0x8b,0x80,0x89,0x94,0x5e,0x75, - 0x5a,0x39,0xab,0xe5,0x56,0x65,0xe2,0x77,0x7e,0x2a,0x3b,0x4e,0x8d,0x67,0x36,0x6c,0x32,0x7d,0x30,0xaf, + 0x5a,0x39,0xab,0xe5,0x56,0x65,0xe2,0x77,0x7e,0x28,0x3b,0x4e,0x8d,0x67,0x36,0x6c,0x32,0x7d,0x30,0xaf, 0x19,0x28,0xae,0x6b,0x75,0x2c,0x43,0x23,0x66,0xec,0xa4,0xee,0x09,0x9a,0x8c,0x38,0x75,0x27,0x72,0x01, 0xa9,0x59,0x78,0x45,0x18,0x2a,0xfa,0x7f,0x6c,0xb5,0xde,0x02,0x5c,0x9c,0xec,0x2a,0x85,0xff,0xbe,0x2b, 0x54,0x23,0xdc,0xad,0x14,0x2a,0xef,0x2a,0x64,0x6d,0xed,0x58,0x1d,0x4f,0xc4,0x66,0xa7,0x9c,0x82,0x61, @@ -1221,7 +1221,7 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x1c,0x65,0x6f,0x30,0x6f,0x6d,0x5c,0xa6,0x4a,0x61,0xa1,0x87,0xb1,0xfd,0xab,0xae,0x4c,0xaf,0x68,0x3e, 0x88,0xaf,0xb1,0x38,0x46,0x7f,0x8f,0x96,0xff,0xd4,0x87,0x4d,0x53,0x1b,0xd7,0xc8,0x4d,0x9f,0xea,0x10, 0x9b,0x74,0x59,0x4a,0x21,0xe8,0xfd,0xb7,0xb0,0x7c,0xa7,0x8a,0xe1,0xf7,0x56,0xc0,0xf6,0xfa,0xe1,0xe8, - 0xab,0xd1,0xc1,0x17,0x12,0xa6,0xe5,0xa7,0x5a,0xfd,0x50,0xab,0x1f,0x6b,0xf5,0x5d,0xad,0x7e,0xaf,0xd5, + 0xab,0xd1,0xc1,0x17,0x12,0xa6,0xe5,0x87,0x5a,0xfd,0x54,0xab,0x1f,0x6b,0xf5,0x5d,0xad,0x7e,0xaf,0xd5, 0x6f,0xb5,0xfa,0xbe,0x56,0x7f,0xaf,0xd5,0xb7,0x35,0x87,0xd3,0xe0,0x7b,0x9f,0xcd,0x9d,0xaf,0xea,0x67, 0x4e,0xe3,0xbb,0x6d,0x14,0xea,0x25,0x32,0x33,0x57,0x32,0x41,0x4a,0xee,0xf7,0x01,0x79,0x78,0x06,0xd3, 0x41,0x2a,0xfd,0xaf,0xbe,0xed,0xbc,0x0b,0x91,0xe4,0xee,0x37,0xa7,0x65,0xf9,0xb9,0x66,0x91,0x5a,0x24, @@ -1281,919 +1281,921 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x8e,0x62,0xb3,0xcf,0xc6,0x4c,0xbd,0xf1,0xda,0xcb,0xd2,0x39,0x0f,0x17,0x84,0x28,0xdc,0x6d,0x5c,0xce, 0x86,0xcb,0x06,0x79,0x5c,0xd6,0xdf,0xd9,0x39,0x34,0x84,0x36,0xb8,0xd3,0x93,0x0e,0x2a,0x1a,0xfe,0x07, 0x3a,0x16,0x69,0x37,0x0c,0x17,0x0e,0x0a,0xac,0x71,0x31,0x19,0x07,0x6c,0x1a,0x2c,0x69,0x32,0xd7,0x70, - 0x1f,0xc0,0xac,0x3e,0x15,0xbc,0xf0,0xff,0xb5,0xf7,0xad,0xfb,0x6d,0x1b,0x49,0xbe,0xaf,0x42,0x61,0x74, - 0x6c,0x20,0x6c,0x51,0x92,0x9d,0x64,0x26,0xa0,0x61,0xae,0x63,0xe7,0xe2,0xc4,0xb7,0x8d,0x9d,0x64,0x12, - 0x8a,0xd1,0x42,0x24,0x48,0xc1,0xa6,0x00,0x0e,0x00,0x4a,0x76,0x44,0x3e,0xd0,0x7e,0x3d,0x8f,0xb0,0xfb, - 0x62,0xa7,0xfe,0x55,0xdd,0x8d,0x06,0x08,0xd9,0x4e,0x66,0x77,0xcf,0xf9,0x70,0x92,0x9f,0x45,0xa0,0xd1, - 0xf7,0xae,0xae,0xae,0xaa,0xae,0xcb,0x4e,0x77,0xab,0xfa,0x5b,0x24,0xb9,0x2d,0x84,0x74,0xcc,0x5b,0x03, - 0x80,0x78,0xde,0x10,0x14,0x87,0xce,0x40,0x59,0x81,0x56,0xed,0x3f,0x57,0x3c,0x03,0x9a,0x1e,0x6f,0xb7, - 0xcc,0x30,0x4a,0xd4,0x49,0x0d,0xb0,0xe2,0x59,0xf8,0x67,0xc8,0xd5,0xb0,0x6d,0xb9,0x78,0xd0,0xad,0xc1, - 0x6b,0x32,0x41,0xaf,0x3e,0xd5,0x6e,0x27,0x7c,0x8f,0xa8,0xe8,0xad,0x42,0x64,0x97,0x59,0x0a,0x9f,0x64, - 0xc6,0xcf,0x98,0x51,0x90,0xb5,0x1e,0xc4,0xd8,0x4f,0x04,0x96,0xb4,0xf6,0x1c,0xe6,0x4d,0x88,0xd6,0xb2, - 0xe3,0xf8,0xb6,0x32,0xbd,0xfe,0xb6,0xea,0x6c,0xff,0x5b,0xb4,0xbf,0x4a,0xd1,0xfe,0x65,0x37,0xe6,0xb8, - 0xa0,0x2e,0xcc,0x53,0xaa,0x74,0xa2,0x16,0x75,0xc5,0xdf,0xdb,0x8a,0xbf,0x27,0xea,0xe1,0x5d,0xfd,0xe1, - 0x1b,0xfb,0xe1,0x1b,0xfa,0x70,0x9a,0x46,0x87,0xe3,0x93,0xab,0x60,0xd0,0x3f,0x39,0x38,0xdd,0x3f,0x99, - 0x4c,0x0e,0xd5,0x19,0xe2,0x06,0x9c,0x12,0x8f,0x71,0xc5,0x0f,0x53,0x4f,0xbd,0xad,0x4b,0xd3,0x01,0xab, - 0x4b,0x03,0x8c,0xf6,0xeb,0x0f,0xe7,0xf6,0xc3,0x39,0x7d,0x78,0x93,0x76,0x5a,0xf3,0x72,0xc0,0xba,0xc3, - 0xd0,0x1f,0xf4,0x83,0xc3,0x3a,0x1c,0x83,0x18,0x5b,0x1e,0x0e,0xfd,0xd1,0xde,0xf8,0x37,0x7f,0xf2,0xc9, - 0x49,0x10,0x1c,0x2e,0x3a,0x94,0xd2,0xc4,0x5e,0xb3,0xaa,0xdd,0xb8,0x4a,0x41,0x28,0x13,0xd8,0x1b,0x51, - 0xa8,0x47,0x8f,0x11,0xbb,0x55,0x07,0xf3,0x99,0x44,0x45,0x1d,0xf8,0x87,0x81,0x28,0x81,0x67,0x3a,0x1a, - 0xf5,0x6f,0x07,0x07,0x87,0xea,0x01,0x3d,0x9c,0x94,0x9f,0xec,0xa5,0x17,0xb0,0x9f,0x8e,0xb3,0x6a,0xff, - 0x50,0xbd,0x4c,0xbb,0xb4,0x1e,0x1e,0xea,0xd0,0xf5,0x04,0x28,0x95,0xc4,0x1c,0x04,0x8c,0x5a,0x7e,0x2b, - 0x71,0xad,0x35,0x1e,0xe8,0xbc,0xd9,0x8d,0x79,0xad,0xf7,0xbc,0x07,0x29,0x47,0x2a,0xf2,0x6c,0x07,0xbc, - 0x46,0x50,0x81,0xe7,0xa9,0x2f,0xde,0xe9,0x9b,0x97,0xe5,0x59,0x43,0x07,0xa7,0xf3,0x86,0x57,0xda,0x05, - 0x87,0xcd,0xda,0x50,0x62,0x79,0xe5,0x24,0x12,0x3c,0xbd,0x02,0xec,0x4a,0xa8,0x44,0x02,0xcf,0xa7,0xf9, - 0xef,0xc0,0xcf,0x25,0x5c,0xe8,0xb5,0x57,0x8f,0x3a,0xf0,0x5d,0x11,0x7d,0x57,0x7c,0xc0,0x7f,0xa3,0x54, - 0x6f,0x7d,0xf1,0xed,0xb1,0xfd,0x35,0x02,0x48,0xc0,0x43,0x29,0x4b,0xd8,0xbf,0x2b,0xac,0xc0,0xcd,0xbd, - 0x2c,0xfb,0x08,0xdf,0x84,0xda,0xe3,0xc5,0xab,0xb4,0xc3,0xad,0xe6,0xab,0x74,0x9c,0x4d,0xfa,0x2c,0xa1, - 0x2e,0x9a,0xad,0x14,0x58,0xf1,0xd7,0x35,0x94,0x2e,0x2c,0x94,0x2e,0x08,0x4a,0x9f,0xb4,0xc7,0xa9,0x2d, - 0xc2,0x13,0x0e,0x85,0x09,0x66,0x35,0x24,0x76,0xfd,0x80,0x5f,0x89,0x39,0xc0,0x8f,0x8e,0xfc,0x5c,0xa7, - 0x1f,0x54,0xb9,0xfe,0xe4,0xc4,0x80,0x76,0x3e,0x8b,0xc4,0xd5,0x53,0x75,0x18,0x69,0xfe,0xc8,0xaf,0x3a, - 0xd5,0xad,0x93,0x13,0xb8,0xce,0x76,0x5c,0x69,0xe7,0xb3,0xae,0x13,0x63,0xfb,0x2a,0x65,0x8f,0x62,0x88, - 0x08,0xfd,0x22,0xd5,0x71,0x2e,0xd9,0x73,0xac,0xa7,0x1e,0xd3,0xbb,0x10,0x58,0xfc,0xfa,0xa8,0xf5,0xf9, - 0xeb,0xc6,0x3b,0x9d,0x24,0x9e,0x7a,0xd6,0x2c,0xf1,0xd4,0x7d,0x45,0x86,0xe1,0x57,0xb8,0x00,0xb0,0xde, - 0x1a,0xb4,0x1b,0x33,0xf0,0xa8,0x4e,0x35,0x0e,0x79,0x60,0x33,0x5c,0x31,0x90,0xb5,0xb2,0xf9,0xe8,0x91, - 0x13,0xa9,0xd3,0xe9,0xd7,0x55,0x2b,0xf5,0xab,0x0c,0x37,0x94,0xbb,0x0d,0xbb,0xbd,0xbb,0xb9,0xdd,0x66, - 0x2e,0xff,0x99,0x6d,0xf6,0x41,0x73,0xac,0x57,0xcd,0x44,0x6e,0x54,0x64,0x34,0x3f,0x60,0x96,0x47,0xba, - 0x5a,0xb0,0xa9,0xb4,0xbb,0x6d,0xbe,0xaf,0x41,0xdc,0xbe,0xf7,0xe3,0x00,0xf2,0x22,0x5f,0x72,0x04,0x61, - 0xed,0x14,0xa1,0xf3,0x40,0xc5,0xbd,0xf9,0x97,0x40,0x4b,0x67,0xbe,0x8d,0xde,0xb1,0x21,0x1e,0x25,0xf0, - 0xd5,0x66,0x3f,0x38,0x54,0x3f,0x3b,0xe8,0x69,0x27,0xc0,0x83,0x50,0x79,0x0f,0x9d,0xb3,0x1e,0xb4,0x5d, - 0xc2,0x12,0xb1,0x87,0x0d,0xea,0x02,0x2a,0xae,0x4e,0x04,0x0d,0x8e,0x05,0x97,0x8a,0x89,0x9d,0x84,0xb4, - 0x69,0x78,0xa4,0x8a,0x95,0x6b,0x24,0xc6,0x39,0x8d,0xb2,0xa5,0x9c,0xaf,0x2c,0x5a,0x47,0x44,0x68,0x6d, - 0xe4,0xd4,0x19,0x05,0x38,0x80,0x2f,0x21,0x7b,0x55,0xa2,0x8b,0x44,0xf1,0x00,0xfa,0x5a,0xf4,0x4d,0x5e, - 0x20,0x07,0x46,0x46,0x1c,0xbb,0xc7,0xdc,0x90,0xea,0xae,0xcc,0xc6,0xf0,0x40,0x8f,0x08,0x3f,0xf8,0xeb, - 0xa0,0xa1,0xd7,0x68,0x22,0x60,0x38,0x3a,0x3c,0xd5,0x30,0xee,0x30,0xc5,0x91,0x28,0xd7,0x1d,0x5f,0xcc, - 0xad,0x79,0xe2,0xe7,0xf4,0x19,0xc3,0xe4,0x5e,0xe6,0x91,0x1b,0x32,0x56,0xeb,0x2d,0x49,0x2c,0x96,0xfd, - 0x81,0x21,0x01,0x0c,0x9a,0xea,0xf7,0xf3,0xa0,0x4e,0x45,0x14,0x96,0x55,0x4a,0x93,0x3c,0xd4,0x46,0x07, - 0xb1,0xd1,0x10,0x9a,0x42,0x43,0x05,0x97,0xc7,0xd4,0xe7,0xad,0x9d,0x63,0xb5,0x27,0xa1,0x13,0xe4,0xcd, - 0x4c,0xae,0x4c,0xb9,0x9a,0x3b,0xde,0xb5,0xd5,0xb9,0x38,0x26,0xa6,0xb5,0x3e,0x0f,0x46,0x3e,0xd7,0x04, - 0xe9,0x7b,0x39,0x7a,0xb8,0x43,0x36,0x23,0x59,0x9d,0x07,0x61,0xeb,0x8b,0x7f,0x0e,0xe9,0xf8,0x0c,0xb2, - 0xd8,0x25,0x35,0x39,0xc7,0xa4,0x26,0x3c,0xa9,0x2b,0x99,0xe1,0x29,0x3c,0xbd,0x70,0x17,0xa9,0x2b,0x61, - 0xe6,0x3b,0x3e,0xa1,0x6d,0x93,0x0f,0xdb,0x24,0xb2,0xf8,0x73,0x6e,0x95,0x6d,0x65,0xae,0x89,0xf1,0xae, - 0xdc,0x8e,0x47,0xe1,0x52,0x54,0xf7,0x12,0x63,0x2c,0xa5,0x43,0xd3,0x0b,0x94,0x8a,0xd0,0x17,0xb3,0x6a, - 0xae,0x54,0x54,0x67,0xb6,0xce,0x54,0xa3,0xd6,0xa0,0xe7,0x6d,0x17,0x14,0xa0,0x1c,0x34,0x67,0x5f,0x52, - 0x2b,0xd1,0x92,0x9b,0xb1,0x33,0x27,0x26,0x22,0x03,0x65,0x4d,0x48,0xdc,0x58,0x25,0x5a,0xef,0x15,0xdd, - 0x45,0xdf,0x38,0xd4,0x7c,0xe1,0x6c,0x4d,0x91,0x32,0x3f,0x6c,0xf2,0x08,0x52,0x86,0xd6,0xc6,0x25,0xef, - 0x2b,0x0e,0xc8,0x6a,0x6b,0x5e,0x3a,0x74,0xc9,0x4e,0x8c,0xbd,0x76,0xec,0x0a,0x0b,0x87,0x69,0x10,0xfb, - 0xac,0x71,0x9c,0xe9,0xb9,0xe5,0x2b,0x27,0xe8,0x1b,0x32,0x71,0x50,0x98,0xd9,0x47,0x97,0x1a,0x8d,0x73, - 0xe6,0x9d,0xb5,0xd2,0x6e,0x6c,0x2a,0xe3,0xb0,0xdb,0x71,0x89,0x6d,0x7c,0x64,0x0c,0xbb,0x0c,0xdf,0x82, - 0xaa,0x73,0x7e,0x65,0xab,0xd5,0x26,0xb7,0x12,0xff,0xca,0x71,0x7a,0x2d,0x4b,0xdf,0xb4,0x60,0xdb,0xd7, - 0x9d,0xaa,0x07,0x59,0x04,0x26,0x8d,0xa8,0x1c,0x6c,0x35,0x46,0x7f,0x57,0xc6,0xc0,0x57,0x63,0x1a,0x5a, - 0x8b,0x2b,0x9d,0x8d,0xde,0xcc,0xa3,0x64,0x57,0xf8,0x96,0x1a,0x88,0xea,0x5a,0xd8,0x99,0xc5,0xb4,0x82, - 0xc2,0xa0,0x0d,0x6e,0xdd,0x09,0x06,0xc1,0xc3,0x26,0xf3,0xa2,0xe7,0x1a,0x64,0x9e,0x4c,0x74,0x3d,0x04, - 0x8e,0x26,0x84,0xf2,0xb5,0x85,0x25,0xf0,0x0b,0x5b,0x29,0xd9,0x6b,0x8a,0x52,0xd7,0x8b,0x65,0xb9,0xa9, - 0x62,0x55,0x47,0x1e,0x02,0xb2,0x8f,0xae,0x10,0xe0,0x33,0x63,0x87,0xe6,0xba,0x62,0xf3,0x6a,0x5d,0x24, - 0xfe,0xb9,0x86,0x1c,0xe7,0xde,0xae,0x7f,0x47,0xbd,0xdc,0xc5,0xbd,0x28,0xe5,0x35,0x88,0x7d,0x8e,0x96, - 0x93,0xab,0x66,0x10,0xa3,0x4b,0x3b,0x71,0x28,0xd6,0x38,0x39,0x52,0x01,0x5c,0xf4,0x29,0xad,0xcf,0x03, - 0x74,0x50,0x33,0x45,0x18,0x50,0xed,0xf8,0x6c,0xdf,0x24,0xd7,0x2b,0x9f,0x05,0x36,0x91,0x23,0x05,0x07, - 0xf5,0xe2,0xd4,0x01,0xe2,0x75,0x88,0x1f,0xf6,0xff,0xdf,0xb6,0x7d,0x44,0xc7,0x71,0x0f,0xed,0x9a,0x3e, - 0xd6,0x7d,0xbf,0x68,0x9e,0x28,0xf5,0x58,0xad,0xcd,0x41,0x41,0x54,0xb6,0x78,0xee,0xa2,0x1f,0x86,0xde, - 0x91,0xbf,0xc0,0x15,0xdd,0x25,0xce,0xc5,0x10,0xd1,0x8e,0xa0,0x1b,0xe4,0xe2,0xb3,0x85,0x55,0x45,0xc6, - 0x11,0xbd,0xd9,0x18,0xc4,0x16,0xd8,0x70,0x45,0xd1,0xbe,0x3e,0xb5,0x6d,0x28,0xda,0xa1,0x9e,0xa7,0x60, - 0xe4,0x58,0xd1,0xf6,0xa3,0x34,0xcc,0xde,0xa7,0x18,0x4c,0x64,0xd3,0xc1,0x81,0x53,0x00,0xd7,0x64,0x95, - 0x75,0x96,0xe2,0x7c,0x88,0x68,0x51,0xb7,0xbe,0x39,0x89,0x68,0x33,0x14,0x5d,0xdb,0x95,0x57,0x07,0x40, - 0xa7,0x15,0x21,0xf8,0xd5,0x9c,0x90,0x0b,0xc4,0xce,0x08,0x94,0xd9,0xa2,0x8d,0xfe,0xeb,0x2d,0x2a,0x69, - 0xd8,0xa2,0x1c,0x93,0x4c,0x5a,0x71,0x77,0x68,0xa2,0xc3,0xf6,0x22,0x5b,0x60,0xc2,0x55,0x41,0xed,0x9b, - 0xb7,0x50,0x2e,0x1d,0x74,0x96,0x07,0x6a,0xce,0x20,0x5f,0x4a,0x89,0xce,0x45,0xb0,0x9e,0x9a,0xa8,0x9c, - 0x29,0xe3,0xf4,0x02,0x7f,0x59,0xe7,0x05,0x71,0x5f,0x77,0xbc,0x5f,0x06,0xb4,0x0f,0xd3,0x86,0xff,0x4c, - 0xe3,0xe3,0x6a,0x16,0x8c,0xce,0xfc,0x42,0xe6,0x03,0x91,0x89,0xd3,0x4e,0xdf,0x99,0x47,0x96,0xf9,0x23, - 0xaa,0xcc,0xfa,0xf7,0x64,0xa0,0x2d,0xdc,0xd7,0x94,0x5d,0x8c,0x46,0x12,0x36,0x0c,0x07,0x16,0xe7,0x16, - 0xaf,0x9e,0x04,0x00,0xf2,0xfa,0x9c,0xc9,0x9b,0x20,0xed,0xd0,0x75,0x29,0xba,0x4c,0x89,0x6d,0xb0,0x63, - 0xb5,0xa4,0xd1,0xf2,0xa6,0x4a,0xfc,0x25,0xcf,0xe2,0x3a,0x5a,0xd6,0x53,0xba,0x8e,0xd6,0xd6,0x59,0x00, - 0x25,0xac,0x31,0x67,0x42,0xe0,0xae,0xa2,0xa2,0x26,0x25,0x66,0x8e,0x2d,0xa9,0x6c,0x22,0xd4,0x35,0xc7, - 0x1e,0x65,0xd8,0x5f,0xd3,0xc2,0xae,0x69,0x61,0x85,0x93,0xaa,0x17,0x76,0x1d,0x98,0xb4,0xf1,0x7a,0x22, - 0x75,0x77,0x74,0x40,0x72,0xd8,0xe6,0xb7,0x95,0x9f,0xca,0x11,0x32,0x22,0x04,0xcc,0xb9,0x68,0xc6,0x57, - 0xb4,0x80,0xee,0x5d,0xb9,0xf1,0x23,0x5b,0xd6,0x27,0xc0,0x54,0xd1,0x70,0x89,0x06,0x3a,0x52,0x2b,0xfa, - 0x37,0x8b,0x6a,0x57,0x2d,0xea,0x32,0x82,0x04,0x40,0x2d,0xe8,0x67,0x36,0x51,0xa7,0x56,0x75,0x9b,0x3e, - 0x9d,0x45,0x29,0x3e,0x5d,0xd1,0xcf,0xe9,0x44,0xbd,0x8d,0xf6,0xca,0xe1,0xfc,0x1e,0x9a,0x5a,0xdd,0x8b, - 0x4e,0xe9,0x6c,0xf2,0x2f,0x83,0x11,0x8a,0xf7,0xfb,0xf3,0x49,0x08,0xaf,0x65,0x23,0xd4,0x72,0x70,0x30, - 0x9b,0x84,0x3f,0xd2,0x47,0x75,0x46,0x9b,0xfa,0x1d,0x7e,0x41,0x9c,0x99,0x8c,0x5c,0x6b,0xbf,0xbf,0x9a, - 0x04,0xc8,0xb4,0x50,0x57,0x9c,0x89,0x7e,0x91,0xc9,0x94,0xe7,0x36,0x0f,0x0e,0x4e,0x25,0xd3,0xa5,0xce, - 0x74,0x29,0x99,0xde,0xee,0xd0,0x01,0x99,0xba,0xd4,0xe7,0xae,0x23,0x8a,0xf3,0x17,0x82,0x42,0xea,0x96, - 0x1b,0x95,0x2e,0x74,0xf7,0x16,0xd2,0xbd,0xae,0x4a,0xb9,0x02,0xa9,0xda,0xe9,0x5a,0xdd,0x7f,0xbf,0x12, - 0x67,0x17,0xd3,0xe8,0xa7,0x8a,0xd6,0x67,0xae,0x66,0x30,0x95,0xf7,0x41,0xd0,0x9f,0x71,0x0c,0xd3,0xd1, - 0x74,0xcc,0x0f,0x93,0x0e,0xe7,0x1f,0x75,0x5c,0xc2,0x39,0xd1,0xc2,0x29,0x47,0x21,0xb4,0xe8,0x31,0x9f, - 0x18,0x1e,0xe1,0xd6,0xad,0x1f,0x21,0xd4,0x8a,0x2d,0x05,0x9f,0x13,0x8d,0x7b,0x46,0x55,0x1c,0xa1,0xb5, - 0x51,0x4c,0xcf,0xb9,0xd2,0xe3,0xe7,0x71,0x2d,0xa9,0x9f,0xeb,0x89,0x1e,0xdc,0x52,0x06,0x87,0x14,0xe3, - 0xd1,0xb6,0x6b,0xa0,0x4b,0x67,0xa0,0x41,0xd8,0xac,0xb3,0x1e,0xef,0x70,0x7e,0x7f,0x06,0x25,0x7a,0x1a, - 0x22,0x01,0x44,0xff,0x78,0x12,0x48,0x74,0x46,0x79,0xd1,0x9b,0x7e,0xa5,0x4e,0xb1,0xf1,0x57,0xf7,0x4f, - 0x6f,0xdd,0xba,0xf0,0x8f,0x94,0x4c,0xcb,0xd6,0x9f,0x72,0xb8,0x6c,0x00,0x65,0xc8,0x40,0x0b,0x0a,0xaf, - 0x26,0xa1,0x9a,0xe2,0x50,0xca,0x8c,0x73,0xfa,0x9c,0x7e,0x99,0xec,0x9a,0x61,0xb0,0x35,0x58,0x82,0x28, - 0x06,0xf8,0x8f,0x50,0xff,0x8a,0xbe,0xad,0xea,0x30,0x88,0xe1,0x07,0xab,0x0d,0xe5,0xfb,0x1e,0x47,0xad, - 0xe1,0xb3,0xbd,0x23,0x9f,0xde,0x65,0xea,0x66,0xcc,0x90,0x97,0x55,0x13,0x35,0x6c,0x9d,0xa3,0xea,0x54, - 0xb8,0x10,0x46,0xaf,0x60,0x3c,0x51,0xca,0x06,0xa3,0x0e,0xcc,0x53,0x17,0x65,0x5d,0x34,0xc9,0x1e,0x61, - 0x94,0x0a,0x97,0x3f,0x2a,0x08,0x38,0x6a,0xec,0xaf,0x57,0xd2,0x2f,0xd8,0x9f,0xaa,0xed,0xc0,0x59,0x8b, - 0xf1,0x54,0x53,0xc4,0x6c,0x8a,0x17,0x6a,0xad,0xdd,0x7d,0x10,0x2e,0x28,0x9a,0xd1,0x86,0xa2,0x7c,0xb3, - 0x41,0x74,0x77,0x20,0x3d,0x55,0x08,0x69,0xaf,0x04,0x21,0x1b,0xbe,0x45,0x0e,0x2e,0x17,0xef,0x5b,0xa8, - 0xec,0x3a,0x26,0xa0,0x5e,0x4d,0xb8,0x9e,0x01,0x79,0xad,0x8f,0x7a,0x9a,0xba,0x6e,0x06,0xb6,0x10,0x4b, - 0x42,0x4a,0xec,0xc0,0xda,0x81,0xc3,0xbf,0x62,0x5e,0x6d,0xb5,0xd3,0x40,0x13,0x04,0xf3,0x20,0x60,0x4e, - 0xfc,0x3c,0x2e,0x99,0x10,0x07,0xd5,0x5d,0xfa,0x9c,0xc8,0xad,0xda,0x06,0x4d,0xdc,0x38,0xa7,0x07,0x3a, - 0x2a,0x8a,0x54,0x15,0x33,0xe5,0x57,0x27,0xda,0x20,0x1c,0x7c,0x70,0x98,0x75,0x61,0xd5,0x71,0x70,0x91, - 0xf3,0xb4,0x28,0x2b,0x6e,0x91,0xd0,0xcc,0xd1,0xf0,0xf2,0xde,0xdc,0xac,0xd5,0xa5,0x71,0x70,0x77,0xbe, - 0xd9,0xec,0x9d,0x11,0xbf,0x38,0x1f,0x5f,0x4e,0x34,0x67,0x0a,0xb3,0x74,0xcd,0xca,0x9e,0x47,0xe7,0x8d, - 0xfb,0x03,0x94,0x98,0x6d,0x36,0xe7,0xcd,0x86,0x89,0x8b,0xc1,0x46,0x4a,0x03,0x33,0x9b,0xb2,0xae,0x17, - 0xae,0xab,0x95,0x05,0xa4,0x79,0x6b,0x8c,0x78,0xef,0x01,0xe1,0xe2,0xe0,0xfa,0x02,0x9d,0x5c,0xc9,0xd9, - 0x22,0x8d,0xed,0x5d,0x60,0x81,0x59,0xb3,0x04,0x6e,0xe2,0xf4,0xa3,0x71,0x36,0x29,0x00,0xb9,0xc7,0xe1, - 0xbd,0x78,0x63,0x68,0x02,0x4b,0xbf,0x9b,0x6b,0xaf,0x3d,0x09,0x16,0x73,0xa5,0xde,0xaa,0x7d,0x08,0xa9, - 0xdf,0x20,0xd2,0x7c,0x3e,0x5b,0x2f,0x93,0x52,0x3d,0xa4,0x67,0xd0,0x38,0xcf,0xb5,0xf6,0xd7,0x15,0xcd, - 0xc9,0xd5,0xbd,0x59,0x5a,0x03,0xf0,0x15,0x93,0x95,0xfb,0xe3,0x59,0x3a,0xbe,0x9a,0xc0,0xda,0x8b,0xce, - 0x95,0xa3,0xe1,0xdb,0x7b,0x6f,0xea,0x2c,0x6f,0x89,0xbc,0x78,0x33,0x7e,0x3b,0xd1,0x79,0x68,0xa5,0x4c, - 0x76,0xe1,0x2f,0xdc,0x6f,0x7c,0x20,0x3f,0x60,0xbd,0x11,0xdc,0xab,0x89,0xd6,0x8c,0x0e,0x25,0xf6,0xd0, - 0x79,0x7e,0xc9,0xc2,0x56,0x42,0xc5,0x1d,0x4e,0x0a,0xf5,0x69,0xa9,0xe8,0x90,0xd4,0x46,0x16,0x7c,0x7a, - 0x8b,0x97,0x18,0x84,0x0e,0x81,0x71,0x36,0xa0,0x0b,0xe6,0x9c,0x4b,0xf6,0x1f,0xe2,0x03,0xd1,0x21,0x7f, - 0x4d,0x4f,0xcc,0x22,0x6c,0x0e,0x0c,0xfe,0x15,0xfb,0x7e,0xe2,0x85,0x64,0xec,0x8d,0x05,0x08,0x84,0xe6, - 0x5a,0x29,0x1d,0x14,0x1d,0xed,0xcc,0xb8,0x35,0x89,0xa7,0x66,0xca,0x41,0xc9,0x9d,0x60,0xb8,0xe6,0x27, - 0x5e,0xb2,0x7e,0x96,0xa1,0xee,0x1a,0xe9,0xb0,0xe0,0x86,0x8f,0x4f,0x3f,0xa7,0x2c,0x67,0x52,0xbf,0xdd, - 0x28,0xa7,0xdc,0x45,0x7c,0x2f,0x86,0xcf,0x23,0x28,0xf3,0xeb,0xeb,0x98,0x87,0xe6,0x12,0xca,0x7f,0xde, - 0x8a,0x42,0x23,0xd7,0x34,0x5a,0x72,0xa8,0x9e,0x8b,0xfd,0xdb,0xb9,0x10,0x83,0x74,0xfc,0x35,0x04,0x65, - 0xe7,0x3c,0x40,0x99,0x87,0xf3,0xc1,0xa9,0x08,0x6c,0xcf,0xe4,0x3c,0x58,0xb4,0xce,0xe1,0x73,0xa8,0xfe, - 0x12,0xe1,0x62,0xf0,0x9f,0x01,0xd8,0xab,0xc8,0xa4,0x11,0x0c,0x80,0x62,0x1a,0x5e,0x0d,0xeb,0x73,0xf1, - 0x0d,0x81,0xc5,0x9b,0x2e,0xde,0xe5,0x8d,0xc3,0xbb,0xbc,0x99,0xf8,0x57,0xdc,0x93,0x2b,0x71,0x7c,0xcf, - 0x5d,0x7d,0x5b,0x57,0xf2,0x80,0x2a,0x79,0xd0,0xc1,0xf9,0x3e,0xa8,0x39,0xdf,0x07,0xcc,0xf9,0x5e,0x09, - 0x24,0xbd,0x8c,0xae,0x76,0x70,0x2b,0xaa,0x7f,0x39,0x60,0x1d,0xe1,0xda,0xe4,0xe1,0x55,0x74,0x3c,0x7c, - 0x75,0xef,0x25,0xb1,0x88,0xd6,0x5e,0xe5,0x15,0xdc,0x3f,0x23,0x61,0xfc,0x6a,0x62,0x68,0xef,0x9f,0x2b, - 0xf4,0xef,0x8a,0x6a,0xd5,0xa1,0x6e,0x13,0x50,0x49,0x38,0xb7,0xc0,0xf2,0x1d,0xa9,0x23,0x7d,0x60,0x11, - 0xff,0x03,0x97,0xc0,0x45,0x6d,0x2d,0x26,0xeb,0x87,0xb0,0x32,0x18,0x13,0x2f,0xc5,0x73,0x90,0xfe,0x36, - 0x9f,0x7f,0xad,0x37,0x5a,0x08,0xb5,0x0f,0xd9,0x7f,0xe1,0x78,0x91,0xaa,0x77,0xa9,0x7a,0x9b,0xaa,0xfd, - 0x54,0xbd,0x4e,0xd5,0x8b,0x6c,0x64,0xa4,0xf9,0x5f,0x25,0xca,0x08,0xd6,0xf0,0x2c,0xf0,0xd4,0xba,0xfe, - 0xdb,0x93,0xb8,0x5e,0x62,0x65,0x71,0x9e,0x5f,0x8d,0x9e,0x27,0x12,0xdd,0x0c,0x06,0x4a,0xdb,0xf0,0x7a, - 0x3b,0x31,0x8e,0x95,0x2f,0x52,0x78,0x31,0x7f,0x9a,0xdd,0xba,0x65,0x2f,0x39,0x76,0xc3,0x8b,0xc8,0xfd, - 0x38,0xd5,0x3e,0x3d,0x8f,0xb3,0x45,0xe2,0xb9,0xe6,0xa9,0xa2,0x89,0x5f,0x17,0x66,0x29,0xbd,0x16,0xae, - 0x0d,0x59,0xd5,0xf7,0x52,0x47,0x45,0xfc,0x01,0x7d,0xd0,0xfa,0x66,0xc6,0x75,0xfa,0x8f,0x29,0x9c,0xaa, - 0x61,0x75,0x92,0x59,0xeb,0x42,0x14,0x42,0x24,0x73,0x33,0x6f,0xc3,0x3a,0x0a,0x4f,0x72,0xeb,0xd6,0x1e, - 0xff,0x12,0x23,0xa6,0xd5,0x2c,0x47,0xdf,0xc1,0xd1,0x91,0x3d,0xcc,0x1b,0x3d,0xfc,0xd1,0x61,0x29,0xc4, - 0xa8,0x6b,0xa6,0x45,0x49,0xdb,0x20,0x7c,0x91,0xc8,0xb3,0xeb,0xed,0xc9,0xd6,0x4a,0xf8,0x02,0x81,0xd7, - 0x8c,0xfd,0x89,0x51,0xfa,0xfc,0x3a,0x81,0x0c,0xcc,0x33,0x9a,0x23,0xb6,0x77,0x74,0xee,0xa6,0xbe,0xc4, - 0x8e,0x0b,0x02,0xed,0xc9,0xeb,0xa9,0x89,0x1c,0x1b,0x25,0x75,0x14,0x59,0xe5,0x3c,0xb3,0x5f,0x47,0x56, - 0x2d,0xde,0x9d,0x77,0x33,0xdd,0x4f,0x93,0x40,0x7d,0x99,0xdd,0x94,0x09,0x63,0x13,0xa9,0x2c,0xa1,0x48, - 0x78,0xe9,0x7f,0xc6,0x3a,0xf2,0xef,0xcd,0xc9,0x37,0x1f,0x4f,0xa1,0xcb,0xff,0x94,0x7d,0x81,0xeb,0x45, - 0x02,0x1e,0xc2,0x9d,0x70,0x7b,0xbe,0x76,0xee,0xaa,0x39,0x68,0x7b,0x73,0x6d,0x82,0xeb,0x9d,0xb9,0x1c, - 0x9a,0x3b,0x4b,0x3b,0xa3,0xa2,0x4d,0xfd,0xe1,0xf9,0x1d,0xa6,0xed,0x18,0x80,0xb5,0x6a,0xc4,0x1e,0x54, - 0xcb,0xd9,0x89,0xe5,0x56,0x66,0xd9,0xa8,0x57,0x8c,0x12,0x31,0x9f,0xbe,0x31,0x7c,0xe0,0x23,0x74,0x10, - 0x00,0x1f,0xea,0x9c,0x7c,0x39,0x4e,0x34,0xce,0x4f,0x78,0xb9,0x75,0x8b,0xbe,0xeb,0x0f,0xc0,0xf4,0x06, - 0x62,0xf5,0x2a,0xb0,0xa7,0xc6,0x9f,0x08,0x5e,0x25,0xb0,0xe7,0x8f,0xa9,0xc2,0xce,0x0a,0x45,0x2d,0xb6, - 0x3d,0x3f,0xda,0x97,0x80,0xa9,0x0c,0xb1,0x00,0xbf,0x84,0xf8,0x22,0xd0,0xaa,0x25,0xe2,0x42,0xc5,0x11, - 0xa8,0x73,0x80,0xfa,0x53,0x9a,0x99,0x22,0x5d,0xc0,0x13,0xec,0xa3,0xb4,0x84,0x72,0x64,0xe4,0x65,0xb4, - 0x0e,0x5a,0xe7,0x8e,0xef,0x54,0x67,0xf2,0x01,0xe1,0xe2,0x5b,0x49,0x70,0xfe,0x90,0x8e,0xfc,0xac,0xde, - 0xf6,0x38,0xe2,0x5e,0x81,0x2f,0x70,0xad,0x87,0x9a,0x85,0xa2,0x7c,0x0b,0xef,0xfc,0xad,0xc4,0x62,0x94, - 0x87,0xd2,0x72,0xa7,0x7e,0xc1,0xce,0x08,0x87,0x45,0x6b,0x26,0xfd,0x0f,0x0e,0x78,0xa7,0xa3,0xc5,0xe8, - 0x43,0x5d,0xed,0x9a,0x20,0x5a,0xcb,0xe7,0x1f,0x28,0xa6,0x07,0xd2,0x39,0xcc,0xae,0x2a,0xf5,0xc8,0xa1, - 0x5a,0x91,0x75,0x2c,0xae,0x66,0x08,0x78,0x37,0x7e,0xb8,0x7f,0x0c,0x35,0xdf,0x12,0xd4,0xb0,0x61,0x98, - 0xb6,0xee,0x82,0xa0,0x39,0x2e,0xc2,0x2f,0xf3,0x1c,0xce,0x70,0xd5,0xb4,0x2c,0xed,0x33,0x80,0xcb,0x64, - 0x03,0x22,0x31,0xcf,0xce,0xed,0xac,0x4e,0x71,0xee,0x56,0xdd,0x3c,0xe6,0x5e,0xd5,0xcd,0xd5,0x4a,0xdb, - 0xb9,0xb8,0x75,0xf3,0x76,0xa4,0x4b,0x77,0x3b,0x92,0x6e,0xcc,0xdb,0x6a,0x70,0xb6,0x2e,0xf8,0x5e,0x30, - 0x1c,0x8b,0x5d,0x9b,0xd2,0xe9,0xa2,0xd8,0x31,0xd9,0xaa,0xdf,0xcd,0x04,0x35,0x2e,0x6b,0xc5,0x5a,0xee, - 0xdb,0xb4,0x61,0x42,0xd7,0xb6,0x05,0x6b,0x1b,0x8f,0x77,0xd8,0x84,0x69,0xcf,0x59,0x2c,0x58,0x95,0x5b, - 0xfa,0xee,0xe0,0x7e,0x8c,0xc2,0x7f,0x81,0x84,0x90,0xc0,0xd6,0x8d,0xd9,0xaa,0x4d,0xc4,0xb0,0x36,0x50, - 0x3b,0xd0,0xf1,0x5b,0xdd,0x3a,0x44,0xf0,0x1f,0x19,0x8e,0x70,0x18,0xd4,0xee,0x2b,0x9d,0x4b,0x33,0x4b, - 0x77,0xbb,0xb6,0xa3,0xb5,0x40,0x40,0xdb,0x8f,0xfd,0x9c,0xc0,0x33,0x0f,0x7b,0x1b,0xa8,0x3f,0x19,0x2f, - 0xab,0x4c,0xa1,0xd1,0xdc,0x99,0x2f,0x3f,0x01,0x45,0xe5,0x26,0x02,0xac,0x77,0x7a,0x5a,0x37,0x77,0xe0, - 0xf5,0xad,0x5b,0xb9,0xbe,0x77,0xe0,0x0d,0x63,0x16,0xc3,0x89,0x92,0x2d,0x3f,0x8f,0x62,0x27,0xc0,0x69, - 0xd9,0xc7,0x01,0x81,0x47,0x2f,0x2c,0xfb,0x2c,0xcb,0x0d,0x0b,0x3f,0x16,0xf9,0x07,0x2e,0xa0,0xf5,0xdd, - 0x87,0xa4,0x58,0x83,0xa2,0x32,0x18,0x71,0x0a,0x97,0xc1,0x2f,0xff,0x95,0xb0,0x19,0x91,0x2f,0x17,0x88, - 0xb0,0xaf,0x1c,0x68,0x47,0x33,0x34,0xb5,0x75,0x17,0xa3,0x1f,0x13,0x6d,0x59,0xb4,0x6e,0x18,0xbb,0x2f, - 0x31,0x09,0x6b,0x21,0x4d,0x65,0x16,0xeb,0xb0,0xf3,0xb8,0x4e,0x6d,0x25,0xdd,0x84,0xf0,0x3d,0xe0,0x16, - 0x41,0x9e,0x80,0x2e,0x3e,0x2e,0xe2,0x06,0xd6,0x09,0x14,0x11,0x26,0x4b,0x8d,0xa3,0xfc,0xf3,0x28,0x56, - 0x17,0xd1,0x52,0x5d,0x60,0x08,0x84,0xd1,0xce,0xf1,0xbb,0xd9,0x5c,0x60,0x2e,0xf8,0x55,0xe8,0xbb,0xbd, - 0x5f,0x58,0x9a,0xe0,0xef,0x2d,0xbb,0x7c,0xbe,0x76,0xa5,0x1a,0x97,0x9e,0x35,0x0b,0x2e,0x80,0x35,0x8f, - 0x96,0x6d,0x20,0x11,0x83,0x91,0x29,0x8f,0xdd,0xcb,0xd7,0xd5,0x41,0xca,0x9a,0xfb,0x69,0xd3,0x79,0x83, - 0x86,0x02,0xe0,0xcd,0xef,0xfc,0xb9,0xf2,0xe2,0x39,0x41,0xf5,0x13,0x51,0xaf,0x70,0x50,0x61,0xe2,0xe4, - 0x44,0xbc,0xf4,0xa6,0x1f,0xcb,0x6d,0xa0,0x0c,0xf8,0xa0,0xb1,0x34,0x3b,0xc8,0xc5,0x14,0x40,0x04,0x1e, - 0xbf,0xf8,0xb5,0xb0,0x6a,0x2d,0x02,0x53,0xd5,0xf0,0x28,0xbc,0x82,0x0f,0xf6,0xef,0x20,0x8d,0xe1,0xe6, - 0xbf,0x12,0x8d,0x91,0x59,0xa0,0x38,0x4d,0x30,0x16,0x46,0x0f,0x83,0x34,0x9d,0x3e,0x87,0x46,0x18,0xa1, - 0xc5,0x76,0x57,0x69,0xc9,0x56,0x51,0xb5,0xad,0xc9,0xe6,0x5c,0x98,0x16,0x75,0x41,0xe8,0xf3,0x1f,0x29, - 0x26,0x05,0xf0,0xa8,0xf1,0x06,0x5f,0xe8,0x3b,0x08,0x06,0x18,0x36,0x18,0x8a,0x49,0x5f,0xef,0x1f,0xcc, - 0xc5,0x8a,0x31,0xe6,0xf7,0x84,0x57,0x6a,0x85,0x8a,0xf0,0xf7,0x54,0xd5,0x6f,0xdf,0x40,0x39,0x38,0xbc, - 0x16,0x24,0xf3,0x8f,0xb4,0x0b,0xb1,0xb4,0x2c,0xdb,0x19,0x3f,0xb8,0x46,0x22,0xb2,0x74,0x12,0x28,0x77, - 0x15,0x67,0x08,0x82,0xdb,0xed,0x0e,0x89,0x0b,0xad,0x8a,0xe4,0xd2,0x3a,0x2e,0x14,0x23,0x51,0x23,0x7c, - 0x4e,0xbb,0xd0,0x16,0x7b,0x54,0xcd,0x9b,0x39,0xc1,0x67,0xc7,0xf5,0xae,0x29,0x89,0x2d,0x2a,0xef,0x59, - 0xae,0xbc,0x34,0xa2,0xc7,0x69,0x94,0x8e,0xcb,0xc9,0x70,0x2a,0xf1,0xa3,0xd1,0x8b,0xbd,0x68,0x2a,0xc2, - 0x77,0x70,0x06,0x7a,0x27,0x4f,0x9b,0x3b,0x99,0x90,0xc7,0x25,0x6e,0x44,0x3c,0xc0,0x76,0x6e,0xad,0x45, - 0xb3,0x31,0xe7,0x9b,0x44,0x53,0x45,0x25,0xf4,0x76,0x9e,0x76,0x6f,0xe7,0x38,0x80,0xdc,0xc3,0xf1,0x26, - 0xbe,0x46,0x87,0x97,0xf8,0x33,0xa7,0xae,0xce,0x6b,0x09,0xd8,0xdc,0x74,0x75,0x15,0x15,0xe3,0xf9,0x64, - 0xb8,0xda,0xd9,0x07,0xb1,0xd2,0x69,0x44,0xb3,0x46,0x2b,0x26,0xf7,0x17,0x49,0xf5,0x65,0xbe,0x66,0x31, - 0xdb,0xc3,0x65,0x4a,0x00,0xf6,0x03,0xcd,0x35,0xfc,0xb0,0x8f,0x57,0xdc,0xc5,0xd1,0x5a,0x7a,0xbd,0x0a, - 0xc2,0xa5,0x79,0xda,0x6a,0x0b,0xdc,0x15,0x61,0x67,0x5f,0x7c,0x01,0x10,0xbb,0xaf,0xa3,0x93,0x31,0xef, - 0x34,0x8b,0x96,0xd6,0x55,0x89,0xc9,0x91,0xd3,0xe9,0xef,0x7a,0xe7,0xd8,0xb1,0xbf,0xee,0xf6,0x34,0x60, - 0xdb,0x82,0x16,0x07,0xb0,0x4b,0xc3,0x51,0x87,0xf9,0x68,0x68,0xaa,0xd9,0x0d,0x16,0xcd,0x2e,0xa0,0xa8, - 0xc4,0x9c,0x3d,0x1a,0xe4,0xad,0x7f,0x7e,0x36,0xf0,0xf2,0x2e,0x11,0xf1,0xf9,0x80,0x95,0x2d,0x87,0xc6, - 0xc4,0x42,0x5b,0x32,0x9d,0xc7,0xe5,0x53,0x4a,0xf7,0x2b,0x6d,0xa0,0xaf,0x12,0x21,0x97,0x8d,0x8a,0xe1, - 0xb7,0xcc,0x26,0x98,0xb7,0xdf,0x1b,0x6f,0xff,0x30,0x0e,0xff,0xe1,0xbc,0x63,0x49,0xa8,0xd2,0x32,0x78, - 0xd0,0xcd,0x1f,0xe4,0xf3,0x79,0x99,0x54,0xdf,0x26,0xe9,0xe2,0xbc,0x72,0x4a,0xb5,0x95,0x16,0x65,0xfd, - 0x78,0x8e,0x6b,0x17,0x62,0xe8,0x09,0x6c,0x2b,0x99,0x76,0x1a,0xbe,0x05,0xf1,0x06,0xe7,0x67,0x03,0xab, - 0xf7,0x13,0x15,0x03,0x47,0x41,0x4a,0xa7,0xd4,0x80,0xf1,0x48,0x13,0x13,0x1c,0x74,0x7a,0x97,0xcb,0xf9, - 0x3a,0x85,0x27,0x50,0x9e,0xae,0x3a,0xe2,0x60,0x0f,0x22,0x9f,0x6b,0xa2,0x8f,0xf7,0x0e,0x6d,0x33,0xfb, - 0x3a,0x70,0xa7,0x44,0x0d,0x32,0xf1,0xba,0x02,0xf6,0xa2,0x2b,0x80,0xb1,0x53,0x31,0xeb,0x3c,0x98,0xba, - 0x19,0x4e,0xf6,0xa5,0xfb,0x6c,0xa6,0x0e,0xc6,0x49,0xbb,0x68,0x0b,0xaf,0xf5,0xe4,0xb7,0xf8,0x72,0x1c, - 0xea,0x5f,0xa5,0x56,0x24,0x58,0x9f,0xea,0x3a,0x7b,0x13,0xc9,0xeb,0x44,0x63,0x94,0x3a,0x98,0xe2,0xc2, - 0x8c,0xa5,0x36,0x01,0xad,0xb5,0x73,0xd2,0x33,0x60,0xe0,0x64,0xec,0x4a,0xed,0x5c,0x9d,0xd3,0x44,0x74, - 0xa1,0x02,0xf5,0x4e,0x2f,0x40,0xd6,0x49,0x35,0x5b,0xa7,0x18,0x0d,0xe5,0x88,0xcc,0x70,0x76,0x0f,0x13, - 0x3f,0x6b,0x38,0x24,0xe2,0xac,0x0d,0x8d,0x2b,0x03,0x47,0x7a,0x30,0x11,0x8b,0xc5,0xec,0xca,0x6e,0x61, - 0x25,0xfe,0x84,0x2f,0xec,0xe7,0xe9,0x62,0xe0,0x44,0xc6,0x8d,0x7e,0x2d,0x54,0xfd,0xa1,0x11,0x93,0x37, - 0x2a,0xd3,0xce,0x4f,0x10,0xaa,0x45,0xdf,0xb8,0xc5,0x5a,0x31,0x79,0xa3,0x1f,0xaa,0x46,0xc1,0x66,0x10, - 0xdf,0x9d,0x18,0x29,0x2f,0x6a,0x8a,0x0d,0x2b,0x55,0xc2,0x94,0xa1,0xb9,0x76,0x51,0x3b,0xbc,0xad,0x46, - 0xb5,0x50,0xd1,0x37,0x6b,0xc9,0x2f,0xda,0xfa,0xf8,0x43,0x96,0x08,0x6c,0x4d,0xad,0xb1,0xf1,0x81,0x07, - 0x53,0xed,0x11,0x17,0x67,0x07,0xe6,0xb5,0xc5,0xaf,0x55,0xf6,0x83,0x64,0xbb,0x39,0x08,0xf8,0x42,0xbe, - 0x31,0xab,0x31,0x92,0x90,0x3a,0x0f,0x77,0x4b,0xeb,0x2d,0x91,0xb8,0x01,0x9b,0xb6,0xea,0x12,0x86,0x95, - 0xd6,0x85,0xa2,0xa5,0xba,0x88,0x19,0x0e,0x9a,0xdf,0x1c,0x23,0xf6,0xef,0x53,0xb6,0x9a,0x74,0x5c,0x97, - 0x18,0x84,0x09,0xa5,0xc2,0x9f,0xd3,0x70,0xd1,0xfc,0x2c,0xae,0xe8,0xba,0x23,0x65,0xed,0x2a,0xca,0xc3, - 0x7b,0x4f,0xe2,0xfa,0x06,0x97,0xc3,0x9b,0x79,0xb2,0x56,0x5a,0x94,0x15,0xe2,0xfb,0xa5,0x19,0x06,0xbb, - 0x36,0x71,0x37,0x1e,0x06,0x1b,0x1c,0xa4,0xf6,0xe4,0x54,0x3b,0x1d,0xf1,0xc5,0x74,0x63,0x61,0xf5,0x87, - 0x14,0x22,0xfc,0x2a,0x6d,0xb1,0xe6,0x38,0x85,0xd9,0xf5,0xc0,0x5d,0x35,0x3d,0x70,0x1b,0x87,0xc2,0x50, - 0x83,0xa2,0xa9,0xf8,0x12,0xcb,0x6f,0x9c,0xdf,0x43,0x9f,0xff,0x49,0xed,0x91,0xc0,0x77,0xfa,0xf4,0x1a, - 0x4a,0x21,0x12,0x06,0xfb,0xd6,0xad,0xef,0x32,0xfc,0x1b,0xc0,0x8d,0x16,0xe8,0x36,0xa8,0x32,0x3f,0x81, - 0x5d,0xc6,0x91,0x6c,0xcc,0xef,0x52,0xf5,0x0d,0x94,0x29,0xaf,0x4f,0xae,0x7d,0x7f,0x14,0x0e,0x36,0x27, - 0x59,0xd0,0x1f,0x05,0x27,0xdb,0x93,0xed,0xe1,0x42,0xfd,0x1d,0xda,0xef,0x07,0x83,0x4f,0xfa,0xa3,0xdf, - 0xf6,0xaf,0xb7,0x7e,0xb0,0x19,0x9f,0x4c,0x4e,0x0e,0x4f,0x4e,0x26,0xf4,0xed,0xd7,0x6e,0x15,0x76,0x3e, - 0x42,0x8c,0xf6,0xf6,0xdf,0x53,0xe5,0x9d,0x9c,0xec,0xdf,0xf2,0xd8,0x7c,0x19,0x8a,0xe6,0xbb,0x5f,0xdc, - 0xd9,0x15,0x7f,0x29,0x7e,0xd2,0xf7,0x74,0x67,0xa4,0x37,0x5e,0x3f,0x53,0xde,0x02,0x92,0x40,0xf5,0x0b, - 0xcc,0xfc,0x58,0xbc,0x0f,0x9f,0xa6,0xe1,0xd8,0x73,0xe4,0xfe,0xde,0x44,0x59,0x94,0xdd,0x32,0xf3,0x00, - 0x88,0xc0,0xb5,0x62,0x91,0x69,0x14,0x99,0x8a,0xbc,0x46,0x0c,0x6e,0x87,0x22,0xd8,0x72,0xaa,0x8a,0xbe, - 0x7b,0xf9,0xfc,0x19,0x25,0x00,0xb0,0x11,0xc3,0x31,0x33,0x6e,0xcc,0xa3,0xc2,0x29,0x08,0x47,0xb9,0x10, - 0xa5,0x40,0x29,0x06,0x09,0x5f,0xa6,0x4c,0x70,0x44,0x05,0x96,0x3f,0xc9,0xe0,0x9e,0xb5,0x83,0xfb,0xf4, - 0x3c,0x47,0xb5,0xbf,0x6e,0x12,0x97,0x65,0xfd,0xc8,0x1d,0x4f,0xe8,0xf5,0x1b,0x39,0xfa,0x9e,0x82,0x95, - 0x66,0xa3,0x2d,0x5d,0x6a,0x6a,0xf3,0xbb,0x1f,0xa5,0x40,0x42,0x74,0xf1,0xbf,0x76,0x4f,0x1b,0x5f,0x91, - 0xfc,0xf1,0x69,0x63,0xf4,0xdf,0x9a,0x36,0xae,0xaa,0x3d,0x6d,0x6f,0x52,0xcc,0x5c,0x73,0xea,0xa4,0xb0, - 0x33,0x75,0x9c,0xf0,0x67,0xa7,0x8e,0x9b,0x6d,0x4c,0x1d,0xa7,0x38,0x53,0xc7,0xef,0x66,0xea,0xdc,0xb6, - 0x6c,0x29,0xe4,0xf7,0xa5,0x40,0xfd,0xb5,0x0f,0xab,0x03,0x99,0xbc,0x2a,0xe7,0xcb,0x26,0x58,0xfe,0xb1, - 0x15,0x28,0xcc,0x29,0xf3,0xa5,0xb6,0x6a,0x14,0xd3,0x3d,0x6d,0x8d,0x29,0x16,0x86,0x69,0xc9,0x98,0x19, - 0x57,0x4f,0x34,0x14,0xc7,0x5e,0xb4,0x61,0xfa,0x28,0x06,0x92,0x57,0x67,0x70,0x3b,0x94,0xe4,0x62,0x33, - 0xad,0x2d,0x1c,0x61,0xfe,0x59,0xc1,0xb4,0xd3,0x88,0x39,0x57,0x6c,0xe2,0x08,0xf3,0x40,0x36,0x74,0x14, - 0xd3,0xc7,0x42,0xd7,0x84,0xcd,0x25,0x3d,0xec,0x34,0x41,0x95,0x2e,0xd7,0xc6,0x86,0x6c,0x31,0xd9,0x69, - 0x58,0x89,0x66,0x9b,0x96,0x8d,0x6c,0x8b,0xaa,0x0d,0x51,0x8d,0x25,0xe5,0x8e,0x45,0xaa,0xb6,0x71,0x65, - 0x13,0xcb,0x0e,0x0b,0x57,0xf4,0xd5,0xd8,0xbf,0x4a,0x3b,0x34,0x59,0x6c,0x57,0xab,0x6d,0x30,0x71,0x97, - 0x61,0x8c,0x27,0x79,0x9a,0xda,0xe6,0x98,0x32,0x6d,0x62,0x9e,0xaa,0x27,0x4f,0x0c,0x29,0x8c,0xa9,0x65, - 0x6d,0x05,0xda,0x9a,0x22,0xb6,0xcc,0xa5,0x89,0xe2,0xb9,0x86,0x1a,0x60,0x1e,0x1d,0xfe,0x76,0x52,0x7e, - 0xe2,0x8f,0xe9,0xaf,0x77,0xfb,0xde,0xfd,0x93,0xc3,0x68,0xd2,0x0f,0x08,0xd7,0x20,0x31,0x0a,0xf0,0x77, - 0x14,0x7a,0xf4,0xd9,0x9b,0x7c,0x42,0x68,0x67,0x73,0x9b,0x1e,0x6f,0xd3,0xe3,0xed,0xfe,0x46,0x97,0x89, - 0xee,0xdd,0xff,0x37,0x2a,0x12,0x04,0xa3,0x43,0x95,0xe6,0x91,0x37,0x8e,0x0f,0x7e,0x7f,0x70,0xf0,0xeb, - 0xe9,0x64,0x7c,0x72,0x72,0x75,0x72,0x72,0x70,0x72,0x32,0x98,0x7c,0xe2,0xa9,0x9c,0x3e,0x01,0x87,0x79, - 0xfd,0x34,0xef,0x13,0xa6,0x0b,0x83,0x91,0x3c,0x06,0x9e,0x8a,0xf3,0xc8,0x41,0x76,0xde,0x6f,0xf7,0xbc, - 0x7e,0x9e,0x13,0x87,0x66,0x3a,0x77,0x72,0x38,0x0a,0xee,0x1f,0xd2,0xba,0xb4,0xb2,0x9d,0x9c,0x1c,0x22, - 0x67,0xdf,0x1b,0xff,0x76,0x7f,0xf2,0xc9,0x7d,0x1a,0xcf,0x1a,0x45,0xee,0xed,0x3d,0x7a,0xfe,0xf0,0xd5, - 0x2f,0x2f,0xbe,0xea,0x21,0xbd,0x7f,0xff,0x30,0x55,0x4b,0x49,0x87,0x05,0xcf,0x5c,0x1e,0x4f,0xc6,0x87, - 0x6a,0x95,0xe3,0xee,0xd8,0x7b,0xeb,0x59,0x2c,0x7c,0xf8,0xd6,0x1f,0xd0,0x40,0x16,0xaa,0xb9,0xe5,0x29, - 0xa3,0x07,0xe6,0x3e,0xd1,0x57,0x2f,0xe7,0xb9,0xba,0xcc,0x89,0x95,0x56,0x8b,0x5c,0xbd,0xcb,0xd5,0x69, - 0x4e,0x40,0xa4,0xae,0x72,0xf5,0x36,0x57,0xfb,0xb9,0x7a,0x93,0xab,0x87,0xb9,0x7a,0xc0,0x20,0xa8,0xed, - 0x77,0xb5,0x61,0xb4,0xb9,0xf5,0xe0,0x43,0xf0,0x65,0x8e,0x9b,0xe3,0x57,0xf4,0xd7,0xbb,0xb5,0xac,0x86, - 0x5e,0xe8,0xdd,0xa3,0x4d,0x79,0x6b,0xc1,0x8f,0xf7,0xf1,0x08,0xf8,0xa4,0x97,0xdb,0xde,0x6d,0x7a,0x89, - 0x2f,0x56,0xf8,0x70,0x0b,0x1f,0xfe,0x72,0x7c,0x84,0xe7,0x93,0x8c,0x5f,0xbe,0xe0,0xe7,0xca,0xdb,0xaa, - 0xe7,0x34,0xb6,0x5b,0x34,0xc9,0xc4,0x00,0x2f,0xaa,0x0d,0x8a,0x6f,0xa8,0x58,0x30,0xa4,0x01,0xbd,0xee, - 0xfc,0xb4,0xa1,0x9a,0x36,0x7f,0xf9,0x82,0x73,0x3c,0xe1,0x0e,0x43,0xf3,0xa1,0xd9,0xcf,0xaf,0xf2,0x6e, - 0xd2,0x82,0xce,0xe0,0x27,0xb9,0xf8,0x50,0x38,0x61,0x39,0x4b,0x02,0xcf,0x45,0xea,0x05,0xe6,0xf7,0x5f, - 0x36,0xbf,0x5d,0x1e,0xe4,0x59,0x78,0xa8,0x1e,0xe3,0xf5,0xf2,0x60,0x83,0x24,0x7a,0x7d,0x44,0xaf,0xfe, - 0xe0,0x13,0x3a,0x50,0xcb,0x3e,0xf5,0x26,0xcd,0x36,0xf9,0x9c,0x9f,0x07,0x9f,0x04,0x87,0xea,0x6b,0xfa, - 0xaa,0x08,0xae,0x14,0x1d,0xb7,0x13,0x82,0x32,0xca,0xe1,0xbe,0x06,0xa3,0xfd,0x43,0xf5,0x8c,0xa1,0xc2, - 0xdf,0x9c,0x04,0xfb,0xd4,0xe9,0xa7,0x39,0x9b,0x87,0x7d,0x42,0x2f,0xea,0x07,0x7c,0x09,0xd1,0x32,0x8b, - 0x9e,0x0f,0xd5,0x97,0x94,0x70,0x32,0x18,0xff,0x36,0x98,0xf4,0x29,0xeb,0xcf,0x79,0xa7,0xf1,0x8e,0xff, - 0x5d,0x1a,0x7d,0x97,0x7e,0xc0,0x50,0x29,0xa8,0xb5,0x21,0xa2,0x4a,0x7d,0x97,0xba,0xc6,0x89,0x74,0x08, - 0xff,0x88,0x96,0xdf,0x5e,0x2c,0xb3,0x32,0x7c,0xf6,0xf2,0x64,0xd6,0x3f,0x54,0x3f,0x21,0x85,0x9f,0xa9, - 0x1f,0xdf,0xe6,0xd1,0xf8,0x97,0x94,0xce,0x1c,0x75,0x4d,0xd3,0xfb,0xea,0x3d,0x67,0x8b,0xc8,0x92,0x8c, - 0x57,0x09,0xb9,0x1a,0x32,0x2c,0x0c,0x5f,0xee,0x3f,0x8d,0x57,0x2c,0x92,0x1d,0x7b,0x97,0x07,0x7c,0x99, - 0xe2,0x4d,0x20,0x9d,0xc5,0x2b,0x0f,0x1a,0x04,0xa1,0x37,0xd9,0x6c,0x28,0x45,0x3f,0x1b,0xd5,0x50,0x7d, - 0xda,0x70,0x22,0x3c,0x77,0xc9,0xc9,0x75,0x79,0x90,0xce,0x65,0x99,0xf3,0x28,0x1d,0x79,0x54,0x17,0xed, - 0x4a,0x6c,0xca,0x90,0x58,0xc4,0x38,0x12,0x9a,0xdc,0x64,0xc5,0x75,0xae,0xb6,0x5b,0x6e,0xa4,0xd9,0x3a, - 0xa6,0xd1,0x2f,0x6c,0x3f,0xf2,0x77,0x68,0xa5,0xa8,0x24,0x81,0x2c,0x8b,0x1b,0x54,0xe2,0x3a,0xe3,0x2c, - 0x7f,0x4b,0x6d,0x7f,0x83,0x74,0x62,0x9b,0xa6,0xa0,0x61,0xa7,0x84,0xa0,0x35,0xb9,0x37,0x48,0xe7,0x84, - 0x23,0xbc,0x7e,0x41,0xed,0xd3,0xf0,0x6f,0x9b,0x22,0xb7,0x69,0x93,0xab,0x5f,0x51,0xe8,0x3a,0x79,0xbb, - 0x0a,0x91,0x4f,0xf0,0x77,0x38,0xd5,0xfb,0x71,0xad,0xdb,0xa5,0x4e,0xad,0xd1,0x29,0x9a,0x5d,0xe9,0x50, - 0xc2,0x09,0xba,0x0b,0x45,0x3c,0x4b,0x73,0x69,0x7f,0x8d,0xf6,0xeb,0x2a,0xdd,0x56,0x39,0x17,0x37,0x29, - 0x6d,0xac,0x75,0x1b,0x4b,0xdd,0x86,0xf1,0x59,0x94,0xf8,0xcb,0x76,0x53,0x94,0x20,0x93,0x0e,0xe3,0x87, - 0x6f,0xf0,0xde,0x68,0x25,0xd5,0x35,0x2e,0xe1,0x1e,0x7f,0x34,0x1d,0x60,0xea,0x10,0x8a,0x0e,0x94,0x8e, - 0xbc,0xd1,0x04,0xc0,0x09,0x35,0x38,0xbb,0x89,0xfa,0x9d,0x30,0x03,0x15,0x23,0x8e,0x01,0x60,0x07,0xf9, - 0xbd,0xb9,0xe1,0xfe,0x36,0x57,0x35,0x2b,0x11,0xea,0x4b,0xb5,0x0f,0x5d,0xa3,0xb9,0x77,0xa8,0xb9,0xc0, - 0x16,0x7b,0xf7,0x33,0x60,0xc5,0x77,0xaf,0xe2,0xde,0xd0,0xf2,0x22,0x56,0x86,0x9e,0x68,0x65,0x2e,0xa5, - 0x43,0xeb,0xd6,0xf7,0x97,0x79,0xb0,0xd7,0xdd,0xf2,0x6d,0xfc,0xec,0xef,0x1b,0x0f,0x1c,0x3f,0xc5,0xcb, - 0x5e,0xd4,0x6b,0x45,0x56,0xd7,0x57,0x0a,0x72,0x89,0xb9,0xcf,0x0e,0x64,0x75,0xc4,0x46,0x7b,0xa1,0x69, - 0x2b,0xcf,0x6b,0xf3,0xf8,0x81,0xa9,0x74,0x1b,0xe0,0x0e,0xd4,0x77,0xf3,0xa0,0xd5,0x4b,0x6e,0xcb,0x3b, - 0x15,0x77,0x2f,0x50,0x09,0xca,0x7b,0x23,0x2a,0x26,0x09,0xbd,0x90,0x1e,0xf5,0xd5,0x9b,0x54,0x78,0xbb, - 0xef,0x73,0x0c,0x06,0xb1,0xa3,0x1f,0x79,0xa7,0x99,0x4f,0xdf,0xb1,0x07,0xe8,0x07,0x42,0x22,0x02,0x01, - 0x6f,0x98,0xb9,0x37,0x9a,0x50,0xa0,0xef,0x7b,0x3d,0xaf,0x1f,0xc3,0xda,0xd8,0x6b,0xf6,0xdd,0x5c,0xaa, - 0x52,0xa3,0xcd,0x09,0x08,0x9b,0xef,0x84,0x2f,0xbd,0xc0,0x72,0x45,0x6c,0xb6,0x53,0xdb,0x84,0xd6,0x78, - 0x20,0x27,0x0c,0x6b,0xb7,0x0f,0xbd,0xc7,0x37,0x4d,0xb9,0x33,0x08,0x5a,0x62,0xd9,0xef,0x32,0x07,0xc1, - 0x66,0xe3,0xa1,0x1d,0xec,0x69,0x8d,0x07,0x8a,0x75,0x72,0x50,0x7f,0xc4,0xab,0x47,0xdb,0x5a,0x3e,0xce, - 0x63,0xec,0xea,0xfa,0x2b,0xbf,0x7b,0xc3,0x7f,0xad,0x64,0x06,0xc4,0x09,0x8e,0xf2,0x9a,0xa6,0x24,0x5e, - 0x9f,0xa8,0xca,0x60,0x74,0x9a,0xca,0x93,0xa2,0x2d,0xd4,0x67,0x3e,0xdc,0xeb,0xfb,0x52,0x3f,0xfa,0x3e, - 0xf2,0x42,0x9d,0x93,0xa6,0x37,0x3c,0xfd,0x87,0xcd,0x1c,0x23,0x29,0x40,0xf8,0x33,0x77,0x9a,0x3d,0x81, - 0xa2,0x38,0x92,0x6c,0xfb,0xe0,0x5e,0x1b,0x93,0x4d,0x49,0xd3,0x08,0xc9,0x03,0xdd,0xaf,0x91,0x2f,0x75, - 0xa1,0x19,0xe2,0x10,0x3a,0x8c,0x61,0xa9,0x3a,0x8d,0x14,0xf7,0xf7,0x2f,0xa9,0x62,0x5f,0x96,0x5c,0xfa, - 0xeb,0x85,0x79,0xc0,0x0d,0xa5,0x11,0x8d,0x84,0xb2,0xd2,0xe3,0x25,0x57,0xe2,0x36,0x12,0x5c,0x53,0x86, - 0x7b,0x47,0x8c,0x2e,0xa9,0x5f,0xd4,0x01,0x1b,0x6e,0x7b,0x4c,0xf9,0x09,0xe9,0x8a,0xae,0x1c,0xe5,0xa2, - 0x09,0x68,0x64,0x33,0xee,0x5f,0xe8,0x53,0x60,0xca,0xd4,0xe9,0x94,0xda,0x3f,0x86,0x1e,0x81,0x94,0xb7, - 0xf0,0xb5,0x3f,0x65,0x38,0xf4,0x3e,0x0e,0x5a,0x04,0xd3,0xfd,0x93,0xa0,0xb2,0xb3,0xdc,0xce,0x62,0xf9, - 0x54,0x66,0x67,0xd2,0x10,0xba,0xa1,0xb9,0x7a,0xdc,0xf9,0xfc,0x63,0x40,0x1c,0x20,0xe8,0xe8,0x84,0xdc, - 0x88,0x55,0x5a,0xf8,0x8a,0xf0,0x1a,0xfb,0x8f,0xc7,0xe9,0x25,0x51,0x83,0xe1,0x77,0x5b,0x8f,0x0b,0x01, - 0x90,0x60,0xc7,0x4d,0xc7,0xd2,0x9e,0xcc,0x0a,0x3a,0x05,0xdd,0x3e,0xb5,0x8e,0xf2,0x91,0xe9,0x65,0xa8, - 0x3f,0x40,0x07,0x6d,0x74,0x96,0x86,0xba,0x57,0x6a,0x19,0xb5,0xb6,0xb5,0xcc,0xcf,0x10,0xe8,0xba,0xfb, - 0x9b,0xb6,0x1a,0x87,0xc7,0x12,0xc9,0xc3,0x13,0xb4,0xe4,0x99,0x19,0xca,0x9d,0x15,0xcf,0xc8,0x32,0x18, - 0x4e,0x29,0x03,0x9d,0x76,0x00,0xab,0x46,0x3d,0x5a,0xcf,0xc4,0x5e,0x52,0x0e,0xbd,0xfe,0x3c,0x50,0xb2, - 0x12,0xd2,0xbe,0xf2,0xcc,0xfe,0xd1,0xb3,0xbd,0x56,0xf3,0x5a,0xb2,0xe2,0x97,0x9b,0x0d,0x14,0xa6,0x65, - 0x1d,0xce,0x96,0x6b,0x3a,0x9d,0xbc,0xe6,0xd5,0x95,0x67,0xcc,0x05,0xeb,0x85,0xd8,0x7b,0x9d,0x35,0xc5, - 0x84,0x84,0x49,0x3b,0x71,0xbf,0xbd,0x85,0x65,0x1a,0x71,0x87,0x31,0xbe,0x14,0x0d,0x06,0xe9,0xae,0x43, - 0x22,0x01,0x78,0x4a,0x74,0x5b,0x72,0x70,0xe7,0xb7,0xcc,0xf3,0xbc,0xbf,0x0a,0x4b,0x74,0x75,0x56,0xb0, - 0x25,0xc6,0xf2,0x05,0xd1,0x53,0x71,0x97,0x4b,0x0a,0x10,0xb2,0xda,0x01,0x17,0x84,0x95,0xc4,0x15,0x21, - 0x5f,0x45,0x54,0x7b,0x2d,0x27,0x0d,0x7f,0x2d,0xe0,0x70,0xe7,0xcb,0xe4,0x49,0x32,0xaf,0x9e,0xaf,0x92, - 0x0c,0x59,0x92,0x5c,0x35,0xa6,0x22,0x2c,0x53,0xd5,0x92,0x85,0x86,0x3f,0x54,0xca,0x11,0x1e,0x7c,0x9b, - 0x13,0xff,0x30,0x5b,0x4f,0xbb,0x55,0x6e,0x38,0x96,0x23,0xef,0x72,0x13,0x20,0xcb,0x84,0xfc,0x0b,0xd8, - 0x23,0xc4,0xe0,0x75,0x9e,0x12,0x98,0x28,0xcc,0xc8,0x3f,0xba,0x49,0xd4,0x1e,0x1c,0xbd,0x00,0xda,0xf9, - 0xcc,0x06,0xfc,0x43,0xb2,0xae,0xcc,0x4e,0x50,0xc4,0xbb,0xa4,0x99,0x76,0xe7,0xa1,0xec,0xc5,0x98,0x44, - 0x17,0xea,0xfb,0xd5,0x08,0x3b,0xb6,0x82,0x67,0x54,0x08,0x8c,0xbe,0xb7,0x2c,0xdf,0xc9,0xd5,0xfe,0xe9, - 0xa4,0xbf,0x39,0x21,0x0a,0x3b,0x98,0x7c,0x32,0x3a,0x09,0xc0,0xee,0x45,0xf7,0x37,0xbf,0x99,0x1e,0xd0, - 0xeb,0x89,0x7f,0xa8,0xbe,0xd3,0x25,0xc6,0xc4,0xd6,0x11,0x73,0x77,0xba,0x3f,0x41,0xd1,0x09,0x38,0x43, - 0xa2,0xae,0x5b,0x89,0x9b,0x93,0xf1,0x6d,0xa2,0xef,0x6f,0x4f,0xe8,0xc1,0xa3,0x07,0x0f,0x0f,0x44,0x06, - 0xe3,0xa7,0x9d,0x77,0x12,0x7c,0x42,0xd5,0x12,0xe5,0xfe,0x0d,0x48,0x9d,0x72,0x1a,0xde,0xf9,0x2b,0x9c, - 0x19,0x85,0x5f,0x88,0x9a,0x45,0x78,0x7c,0x57,0xc9,0x7c,0xdf,0xbd,0xa3,0xd6,0xab,0xf0,0xee,0xdf,0x88, - 0x43,0x9e,0x57,0xe1,0xdd,0xbf,0xaa,0x02,0xb7,0x27,0xe1,0xdd,0x2f,0x14,0xbc,0x60,0x87,0x9f,0x1e,0x29, - 0xb9,0xc0,0x0c,0xc7,0x7f,0x53,0x9f,0x7e,0x4e,0x4c,0xc8,0xdf,0xf3,0x2e,0xbf,0x5c,0x40,0x39,0xfd,0x8a, - 0x80,0xc7,0xf1,0x99,0x35,0x24,0xb6,0xe9,0xd7,0x1c,0xc2,0x20,0x82,0x07,0xb3,0xa9,0xf1,0x02,0x00,0x89, - 0x17,0xb1,0x88,0x10,0x87,0xd0,0xa8,0xe0,0x6f,0x36,0x8f,0x7e,0x7f,0x24,0x17,0x8e,0x9c,0x05,0x71,0xc9, - 0xc2,0xbf,0xe7,0x7e,0x13,0x37,0xf4,0x08,0xe3,0xf4,0x74,0xca,0x74,0x5d,0x60,0x91,0x5e,0xf1,0x07,0x0f, - 0xc2,0xd5,0x62,0xc9,0x25,0xf6,0x4c,0x06,0x4a,0xf8,0x1e,0x1a,0xba,0x8a,0x7d,0x87,0x36,0xbe,0x71,0x8a, - 0x7c,0x8c,0x97,0xcd,0x4f,0xf4,0x2e,0x1f,0x20,0x2f,0x68,0x7c,0x41,0x82,0x7c,0xe2,0xb9,0xc3,0xa7,0xdb, - 0xe2,0x15,0xea,0x36,0x08,0x23,0xc9,0xd5,0xbb,0x75,0xcb,0xf4,0x50,0xbe,0x71,0x9f,0x8f,0x50,0x5f,0x3a, - 0x9b,0x2d,0x93,0x3f,0x54,0xec,0x18,0x72,0x05,0x5e,0x9f,0x3f,0x52,0xea,0x0e,0xe0,0xff,0x17,0x5a,0x08, - 0xe2,0x1a,0xdb,0xfe,0x58,0xe0,0x06,0xae,0x8e,0x6a,0xd7,0xb1,0xb0,0xa7,0x0b,0x59,0x58,0xd5,0xc0,0x10, - 0x84,0x20,0x76,0x74,0x90,0x4c,0x75,0x1c,0x3e,0xaf,0xb6,0x16,0xaa,0x6b,0x3a,0xa3,0x9a,0x32,0xaa,0xe9, - 0x36,0xe4,0x5f,0xb4,0xdf,0xfa,0x60,0xbe,0xeb,0x5a,0x71,0xf6,0x39,0x94,0x34,0x1c,0x1d,0xd5,0xea,0x88, - 0xb8,0x0c,0x1b,0x09,0xa9,0x13,0x6a,0x9a,0x29,0x78,0x4f,0x76,0x8e,0x3e,0xed,0x29,0x9d,0xdf,0x0b,0x74, - 0x9f,0xa7,0xcb,0x3c,0x7e,0x83,0xb8,0xba,0xff,0x9a,0xef,0x7a,0x3d,0xcd,0xad,0xb3,0x4c,0x7e,0x85,0x24, - 0x92,0xce,0x44,0xfc,0x6c,0x36,0xbf,0xea,0x44,0x2b,0xbc,0x2c,0xa3,0x5f,0x60,0x50,0x6d,0x14,0xd3,0x3d, - 0xfb,0xe1,0x21,0x71,0x0c,0xc6,0x83,0x3b,0xee,0x19,0xbf,0x49,0x32,0x44,0xf0,0x6b,0xe6,0xd6,0x52,0x47, - 0x9b,0xcf,0x72,0x1c,0xd1,0xa5,0xcf,0x8a,0x16,0xbf,0xe4,0x6c,0x1a,0x6d,0xd3,0x03,0x1b,0xbd,0xab,0x81, - 0x40,0x37,0x9b,0x87,0xd9,0x50,0xfb,0x46,0x7e,0x77,0x96,0xd8,0x40,0x8c,0x1d,0x0b,0xb9,0x67,0xcd,0x78, - 0xb5,0x7f,0xcc,0x6c,0x9a,0x3c,0x9e,0x45,0xda,0x43,0x7d,0x3b,0xe0,0x20,0x7c,0x74,0xd3,0x2a,0xfa,0xae, - 0x50,0xe8,0xe4,0xe4,0xcc,0xeb,0x7b,0x33,0xc2,0xe1,0x73,0x08,0xe0,0x08,0xe8,0x2b,0x04,0xd4,0xa5,0x49, - 0x7e,0xc7,0x8e,0xd9,0xa6,0x10,0xfe,0xe1,0xd8,0x53,0x57,0x69,0x75,0xae,0xe2,0xab,0x38,0xad,0x14,0x1b, - 0x06,0x28,0xf6,0x81,0xae,0x95,0xe7,0xf9,0x1a,0x48,0xb1,0xe3,0x52,0xc5,0x71,0xe9,0xd5,0x15,0xa1,0xd5, - 0x44,0xbd,0x83,0xd4,0x4f,0x23,0x1b,0x45,0xcc,0x59,0x0e,0x6f,0x87,0xec,0x89,0x45,0xc9,0x08,0x8c,0x07, - 0x30,0xeb,0x52,0x9b,0xdd,0x85,0x12,0x1b,0x23,0x21,0xea,0xd9,0x09,0x5a,0x9a,0xad,0xe1,0x98,0xf1,0x6c, - 0xbd,0x58,0x40,0x4c,0xa8,0x67,0xa1,0x0e,0xba,0xe2,0x69,0x3f,0x35,0x38,0x13,0xf4,0xe9,0x40,0xc3,0xda, - 0x60,0x68,0x41,0x9f,0x47,0x28,0x41,0x82,0x5b,0x63,0x96,0x4e,0x89,0xdf,0x51,0x56,0x60,0xef,0xac,0x87, - 0x50,0x3a,0x10,0xfe,0xc9,0x09,0xa1,0x7c,0xfa,0x53,0xd7,0xda,0xfa,0x40,0x6d,0xf8,0x0f,0xdb,0x92,0x1f, - 0x11,0x45,0xdc,0x68,0x35,0xca,0x1e,0x83,0x09,0x2f,0x22,0xf6,0x71,0xb4,0x77,0x1c,0xa8,0xd3,0x5c,0xaf, - 0x27,0x1b,0x88,0x41,0xc2,0xed,0x44,0x6c,0x19,0x66,0xf7,0xde,0xe5,0xae,0x73,0x96,0x77,0x39,0xdb,0xe1, - 0xe2,0x26,0xe7,0x3c,0x8f,0x92,0x1a,0xaa,0x4f,0xf1,0x66,0xce,0x7a,0x80,0x93,0x3a,0x43,0x8a,0x73,0x92, - 0x73,0xe2,0x15,0x12,0x5b,0x47,0x35,0x7f,0xb8,0xc8,0x01,0xda,0x49,0xc7,0x46,0x78,0x26,0x1b,0x61,0xd1, - 0xce,0xd0,0x16,0xd3,0x50,0x9e,0x77,0x3b,0x79,0xf2,0xb2,0x6a,0x67,0xba,0x44,0x17,0x68,0x25,0xd2,0x8b, - 0xb4,0x42,0x40,0x44,0x6d,0x94,0x4b,0xe4,0x29,0x2b,0x9f,0xec,0x1d,0xb3,0xae,0x27,0x62,0x9c,0x63,0x77, - 0xfc,0x7c,0x4e,0xb9,0xb8,0x9b,0x0a,0xf3,0x05,0x3a,0xf5,0x78,0xc7,0x32,0xa3,0x3d,0xc9,0xf4,0xb6,0xec, - 0xe3,0x06,0x0f,0x6a,0xad,0xeb,0x33,0xb9,0x5b,0xf0,0x5d,0xab,0xe9,0xc2,0xf8,0x11,0x60,0xfd,0x3b,0x55, - 0xd6,0xf1,0xeb,0x45,0x93,0x6f,0x19,0xe8,0xbb,0x37,0x5c,0x37,0x14,0x78,0xad,0x78,0xc5,0x5a,0x17,0xb2, - 0x94,0xcc,0xaa,0xfe,0x69,0x14,0xd7,0x41,0xed,0xd3,0xfb,0x11,0x71,0x3d,0x31,0x42,0xc1,0x2c,0x4d,0x56, - 0x6c,0x72,0x1a,0x57,0x89,0x90,0x6a,0x86,0xa6,0x8c,0xf8,0xda,0x17,0xb9,0x1d,0x03,0x4c,0xb7,0xa2,0xe9, - 0xfd,0x28,0x1d,0x4e,0xa9,0x40,0x32,0x60,0x2f,0x2b,0xfc,0xc3,0xfe,0xd6,0x59,0x32,0x81,0xfe,0x0f,0x4d, - 0xf6,0x08,0x13,0x98,0x72,0xb3,0x07,0xc7,0xfc,0x9d,0xb9,0x23,0xef,0xac,0x00,0x85,0x57,0x8e,0x98,0xb0, - 0x2a,0x60,0xa1,0x2e,0x0f,0x34,0x7e,0x9a,0xee,0xbd,0x23,0xf1,0x8c,0xe0,0xad,0x38,0x17,0xc7,0xc1,0xed, - 0xcc,0x77,0xcc,0xf9,0x54,0xa3,0x23,0x32,0x83,0x34,0xa9,0xc6,0x39,0x02,0x3c,0x9d,0x60,0x11,0xa1,0x8c, - 0x5e,0x4b,0x65,0x68,0xc9,0x92,0x41,0x4d,0x5f,0x32,0xb4,0xad,0x71,0xe3,0xdc,0xa2,0x2a,0xf9,0xc3,0x92, - 0x26,0xa5,0x1a,0xb2,0x90,0x2f,0x25,0x04,0x4e,0x2c,0xc9,0x83,0xdc,0xcf,0xad,0x3a,0x1b,0xec,0x52,0xf3, - 0xd6,0x9d,0xf8,0x2c,0x7a,0x99,0x8f,0x57,0x08,0x11,0xc5,0xbf,0x0d,0xf9,0x37,0x11,0x70,0x27,0xe5,0xc9, - 0xc9,0x4b,0x22,0xdd,0x02,0xff,0xde,0xa1,0xd7,0x5f,0x19,0x41,0x78,0x40,0x3b,0x3e,0x05,0x2f,0x0d,0xeb, - 0x2c,0x23,0xda,0x9e,0xb9,0x32,0x6d,0x06,0x0f,0x03,0x69,0xd6,0x12,0x56,0x51,0x7f,0x56,0xcc,0xff,0x69, - 0xbf,0x93,0x98,0xb8,0x15,0xb4,0x3a,0xa2,0xda,0x01,0xd5,0x21,0xc4,0xe8,0xd4,0x76,0x29,0x2d,0x1f,0x1c, - 0xdc,0x3f,0x5c,0x10,0x8b,0x41,0xa7,0xbe,0x9b,0xe5,0x64,0xfc,0xf0,0xd1,0x83,0x57,0x0f,0x4e,0xc6,0x75, - 0xce,0xc9,0xc4,0xe6,0x84,0x50,0xd9,0x5f,0x29,0x71,0xbb,0x0c,0x7d,0x16,0xed,0xb3,0x89,0xc3,0xe8,0x9d, - 0xc7,0x72,0x50,0xf2,0x03,0x94,0x20,0x3c,0xc8,0x5f,0x08,0xe6,0x8d,0x8e,0xce,0xc1,0xb9,0xe9,0x6f,0x15, - 0x9d,0xab,0x82,0x2a,0x5a,0x1e,0xcc,0x11,0x89,0xda,0xda,0x21,0x5d,0x46,0x8e,0x32,0xc0,0x3d,0x91,0x01, - 0x40,0x0d,0xf3,0x92,0x27,0x7f,0x99,0x9b,0x88,0x5a,0xc6,0x82,0xcc,0x55,0x1d,0x38,0x38,0x79,0x7b,0x37, - 0x91,0x22,0x17,0x0c,0xbe,0x89,0x0e,0xcf,0x88,0x48,0x15,0x5a,0x05,0x51,0x87,0x47,0xd0,0x0e,0x4b,0xea, - 0x5d,0xf8,0xa9,0x82,0xad,0x6d,0xe6,0x5f,0xf4,0xef,0x12,0x8b,0xa7,0x51,0xfd,0x16,0x7a,0x5d,0xf3,0x56, - 0x9b,0x0b,0xb7,0xcd,0xc9,0x7d,0x69,0x6f,0xc1,0xed,0x65,0xfe,0xa2,0x7f,0xc7,0x2d,0x8e,0xfc,0xd0,0x90, - 0x66,0xf7,0xb4,0xfe,0x5a,0x54,0x0e,0xdf,0x21,0xe3,0x3b,0xdc,0x2d,0x9b,0x80,0x86,0xb6,0x00,0xf2,0x9f, - 0xda,0xfc,0x53,0xc9,0x7f,0x2a,0xed,0x9e,0x45,0xcb,0x61,0xe6,0x9f,0x3a,0xe5,0x68,0x02,0x4f,0xc7,0xc7, - 0x13,0x75,0xc6,0x6c,0xa9,0x5b,0xc7,0x55,0x3b,0x56,0x4a,0x62,0x2b,0x8d,0xa5,0x52,0x1b,0xf9,0xef,0xda, - 0x78,0xfc,0x4b,0x50,0x15,0x73,0x1e,0x21,0x36,0x0b,0x76,0x59,0xb8,0xdc,0x52,0x93,0x89,0xdb,0x55,0x67, - 0x57,0x0d,0xf7,0xb0,0x19,0x74,0xb5,0x65,0xce,0xc6,0x1f,0xb9,0x4d,0x28,0x28,0x61,0x18,0x64,0x7e,0xde, - 0xe8,0xb0,0xf6,0x1f,0x69,0x02,0x71,0x62,0x3f,0xd5,0x36,0x98,0x6b,0xec,0xc5,0x97,0x74,0x8a,0x13,0xda, - 0x40,0x67,0x32,0x3f,0x6d,0x16,0x86,0xef,0xf3,0xa5,0x2a,0xb6,0x5b,0x5f,0xac,0xa6,0x82,0xeb,0x9d,0x50, - 0x0b,0x59,0x64,0xdd,0x14,0xb2,0xd5,0x45,0x5d,0x27,0x73,0xff,0x82,0x51,0x68,0xff,0x66,0xe2,0x3a,0xbc, - 0xa0,0x5e,0xa8,0x35,0x3f,0xe6,0xe2,0x00,0xba,0xe0,0x0b,0x72,0x33,0xcc,0x65,0x34,0x65,0x6f,0x0d,0x7b, - 0x7b,0x29,0xfb,0xe0,0x91,0xee,0x6b,0x18,0x5e,0xf1,0xa6,0x16,0xc9,0xd4,0x1c,0x3b,0xfe,0x68,0x38,0xbb, - 0x37,0x1f,0xce,0x8c,0x92,0xdf,0xb9,0x29,0x30,0x9e,0x4d,0x86,0x2b,0x6a,0xf4,0x00,0xd6,0x72,0xe7,0x18, - 0x93,0x01,0xa0,0xdb,0x9e,0x77,0x1b,0xf3,0xc6,0x77,0x54,0xe7,0xe3,0xbb,0x93,0x5b,0xb7,0xb4,0x42,0x27, - 0x5e,0x94,0x4e,0xfe,0xd4,0x4d,0xfe,0xd4,0x26,0x7f,0xe6,0x26,0x7f,0xa6,0xad,0x09,0x2f,0xb9,0x9a,0xcd, - 0x06,0x19,0xf1,0xf7,0x33,0xfa,0xeb,0x79,0xea,0x22,0xf2,0x62,0xe3,0xe2,0x1a,0xee,0x9b,0xa5,0x86,0xe3, - 0xc9,0xc8,0xec,0x91,0x47,0x09,0x5c,0xea,0x3e,0x4b,0xae,0xe0,0x12,0xb5,0xfc,0x3a,0x2f,0xbe,0xa5,0x5c, - 0x61,0xf7,0xd7,0xe1,0x8a,0x46,0xa4,0x75,0xd7,0x51,0x89,0x62,0x12,0x3b,0xfc,0x3e,0xf1,0x2f,0x69,0x1b, - 0x6d,0xb7,0x4b,0x56,0x7d,0xe6,0x45,0x66,0x05,0x56,0x42,0xa0,0xee,0x89,0x13,0x66,0x2d,0x5c,0x29,0x50, - 0xb7,0x82,0x47,0xfa,0x88,0xe3,0x22,0xb4,0x90,0x7d,0x06,0x5b,0x32,0xbe,0xf2,0xa6,0x37,0x78,0xb4,0xc9, - 0x60,0x93,0x7d,0xc5,0xb8,0x28,0x57,0xec,0xbb,0x85,0x50,0x50,0x6b,0xdf,0xbd,0x35,0x26,0xe3,0xfb,0xe6, - 0xe1,0x8d,0x7e,0x00,0xec,0x5c,0xda,0xf3,0x6d,0xdf,0x3a,0x76,0xbe,0x0c,0x08,0xa4,0xa7,0x7a,0xbb,0xef, - 0xc3,0x8d,0xab,0xf3,0xbc,0x74,0x9e,0xe7,0xce,0xb3,0xff,0x26,0xda,0x77,0x31,0x96,0x22,0x5c,0x78,0xef, - 0x88,0x40,0xff,0xb2,0x1f,0xbd,0x51,0x8d,0xca,0xdf,0x36,0xce,0xfd,0x23,0x75,0x09,0x84,0x73,0x19,0x6c, - 0x2f,0x59,0x1c,0xf9,0x16,0x9c,0x41,0x04,0xcb,0x71,0x8b,0x49,0xdf,0xd6,0xc8,0xf4,0x2d,0xeb,0x98,0x56, - 0xa2,0xa6,0xbc,0x83,0x6a,0x2b,0x63,0x22,0xbb,0x2d,0x7c,0x96,0x11,0x49,0x94,0x90,0xf3,0x5c,0x39,0xd7, - 0x10,0x8d,0xd3,0xcf,0x91,0xac,0xb8,0xc7,0x60,0x87,0x50,0x65,0xe7,0x44,0x54,0x5d,0x20,0x71,0x03,0xa4, - 0x74,0xe6,0x7d,0x3f,0x70,0xe9,0xaf,0x6a,0x07,0x75,0x87,0x16,0x73,0x97,0x1a,0x3d,0x39,0xc7,0x62,0x0c, - 0xeb,0x57,0xd9,0xb1,0x22,0x20,0x2d,0x37,0x9b,0x2b,0xdc,0x71,0x0e,0x9f,0x01,0xe4,0xe1,0x32,0x9b,0xe6, - 0x0e,0x51,0xae,0x9a,0x01,0x29,0x6a,0x65,0x67,0x42,0x7a,0x42,0xda,0x56,0x2e,0x65,0x6b,0x84,0x97,0x88, - 0x8f,0xfa,0x63,0x6e,0x74,0x27,0x33,0xad,0x33,0x29,0x4f,0x91,0xfc,0xd8,0x43,0xf4,0xa7,0x5c,0xc9,0x32, - 0xf2,0x0e,0x00,0x2d,0x62,0x63,0xe8,0x41,0xb9,0x5c,0xcb,0x13,0xbf,0x4b,0xb8,0xdb,0x29,0x1d,0x90,0x90, - 0x28,0x52,0x8f,0x41,0xcf,0xed,0x69,0x07,0xfa,0xec,0x51,0x71,0x15,0xcd,0x03,0x51,0x66,0x36,0xd7,0xd1, - 0x48,0x5e,0x89,0xf2,0xf5,0xaa,0x29,0x4f,0xa5,0x41,0x42,0x6c,0x77,0xf8,0x3a,0xbe,0x8c,0xdd,0xbc,0x8d, - 0x4c,0xd4,0x67,0xc4,0xa8,0x0d,0xb8,0x41,0x1a,0xfa,0x19,0x7b,0x82,0xe7,0x40,0x94,0x66,0x22,0x56,0x1a, - 0x8f,0x2d,0x2c,0x81,0x0f,0x7c,0x36,0x8f,0x16,0x39,0xed,0x79,0x7f,0xae,0x50,0xc7,0x9c,0x15,0x03,0x69, - 0xfc,0x17,0xd1,0x5c,0xd9,0x8b,0xc6,0x0b,0x5c,0xaa,0x41,0x76,0x87,0xea,0x2f,0x40,0x2a,0xb3,0xa9,0xc1, - 0xbc,0xe6,0x2b,0x8e,0x02,0x66,0x2c,0xe6,0x0e,0x63,0x81,0x1b,0xc9,0xce,0xe8,0xc5,0x56,0x58,0x66,0xdd, - 0x5d,0xba,0x51,0x1a,0xed,0xad,0xaa,0x83,0x82,0x13,0xe3,0x87,0x26,0xe1,0x08,0x9e,0xf0,0xd2,0xa3,0x71, - 0x94,0x53,0x1b,0x25,0x4a,0x5c,0x12,0x41,0x59,0x2d,0x25,0x9f,0x56,0x46,0x09,0x4b,0xba,0x35,0x1e,0x35, - 0x69,0x1c,0xac,0x6b,0xc7,0x42,0x3b,0x89,0x8a,0x3d,0x0f,0xc2,0x79,0x7d,0x17,0x4a,0x5f,0xff,0x0e,0x63, - 0xfe,0x8e,0x48,0xa5,0xce,0x9d,0xad,0x3e,0x7f,0x2b,0x5c,0x9a,0x26,0xb8,0x64,0xac,0xe4,0x92,0x51,0xab, - 0xb6,0x84,0xd5,0x56,0x1b,0x59,0x77,0x5c,0xe1,0x8a,0x2e,0xb3,0xbe,0x7e,0x34,0xb1,0x13,0xdb,0x17,0xba, - 0x46,0x9b,0x49,0xdf,0x4b,0xc2,0xa1,0x2e,0x3a,0x75,0xe9,0x2e,0xd6,0x25,0x0a,0x80,0x49,0xe7,0x2a,0x2f, - 0x99,0x5f,0xe7,0xd5,0xf8,0x26,0xe1,0x45,0xa6,0xb9,0x1c,0x19,0x08,0xd8,0x6c,0x0a,0xea,0x2b,0xc3,0x8c, - 0x54,0x49,0x10,0xc0,0x4f,0x54,0x94,0xba,0x5f,0x48,0xf7,0xcd,0x47,0x3d,0x8a,0xf9,0x36,0x08,0x0b,0x6a, - 0x91,0x76,0xe3,0x9e,0x03,0x6b,0x30,0x11,0xda,0xa9,0x66,0xef,0xfd,0xbc,0x6a,0xc3,0x24,0xa1,0x11,0x5f, - 0xcf,0x58,0xa0,0x57,0x1c,0x5a,0x0f,0x00,0x6e,0x24,0xb7,0x94,0x80,0xa0,0xb0,0x39,0xac,0x35,0xb6,0x7e, - 0xed,0xe4,0x86,0xe7,0x26,0xe3,0xe1,0xfc,0x0a,0x1d,0x60,0xee,0x7a,0xd5,0xec,0x3a,0x2c,0x32,0x68,0xc2, - 0xac,0x8c,0x7d,0x3e,0x80,0x85,0x02,0x3b,0xfd,0xe2,0x28,0xe2,0xb2,0xfc,0xc7,0xa2,0x4f,0x12,0xc9,0x57, - 0x91,0x0b,0x6e,0x36,0xb7,0x3d,0x2d,0x3f,0xf0,0x6e,0x0f,0xa9,0xd9,0x46,0xb0,0xb7,0xe6,0x3b,0x9b,0x11, - 0x8c,0xcf,0x27,0xd1,0x5c,0x8c,0xad,0xeb,0x3e,0x0a,0xde,0x98,0xf3,0xd6,0x91,0xb0,0x6c,0xa9,0x1c,0xed, - 0xea,0x62,0xb8,0x1e,0x65,0x00,0x3a,0xa2,0xbc,0xe6,0x2a,0x37,0x19,0x11,0x67,0x2c,0xeb,0xd0,0xab,0xcf, - 0xc7,0xb9,0x65,0xdb,0x26,0x2a,0x71,0xdc,0x63,0x8d,0x77,0x7c,0x62,0x51,0x0e,0x04,0x5f,0xbe,0x0b,0x6d, - 0x10,0x83,0x50,0x7a,0x9e,0xbc,0xb1,0x3b,0x85,0xbd,0x29,0x34,0xad,0xeb,0x3e,0x62,0x6a,0x95,0xad,0x3f, - 0x3a,0x26,0x72,0xab,0xd9,0x5e,0x26,0x0e,0xb7,0x71,0x40,0x35,0xa4,0xfc,0x26,0xb8,0xd8,0xb3,0xcc,0xbd, - 0x3a,0x12,0x8f,0x26,0x40,0x6c,0x69,0x8d,0xb3,0x56,0xb5,0x3b,0x0e,0x98,0x76,0x07,0x76,0x37,0x35,0x9c, - 0x7f,0x54,0xd1,0x14,0x81,0x1f,0xe5,0x0a,0x67,0xe4,0x23,0xd4,0xa6,0x57,0x73,0x41,0x85,0xb1,0x55,0x61, - 0xb4,0x6a,0x12,0x46,0x55,0xf8,0x73,0xce,0x6e,0xfd,0xd8,0xe5,0xb9,0xf4,0x7a,0x44,0x23,0x86,0x38,0x4f, - 0x7b,0x7c,0xdb,0x2b,0x79,0x0e,0xf6,0xd8,0x77,0x9f,0xdf,0x96,0x9e,0x08,0x94,0x5e,0xe6,0xa3,0x5f,0x53, - 0xff,0x32,0x0f,0xc2,0x6f,0x52,0xe6,0xd6,0x6b,0x66,0xc1,0x3a,0x7f,0x53,0x0e,0x0b,0x4a,0x7f,0xa6,0x70, - 0xe1,0x1b,0x97,0xd5,0x63,0x10,0x0d,0x40,0x58,0x1c,0xcf,0x27,0x99,0xe2,0xb0,0x0a,0xae,0x69,0x65,0x0b, - 0xa1,0x27,0x82,0xfb,0xb8,0x6a,0x32,0xc4,0xb2,0x25,0x24,0xa6,0xb0,0xd2,0x55,0x9a,0xbc,0x6a,0xe1,0xaf, - 0xdc,0x68,0x28,0xae,0xa3,0xbf,0xc3,0xab,0x4a,0xed,0x0e,0x79,0xa8,0x0b,0xc8,0x65,0xcc,0x5a,0x2e,0xa1, - 0x74,0xdd,0xd7,0xde,0xbf,0x9c,0x89,0xa6,0xa0,0x07,0x9d,0x09,0xea,0x60,0xda,0x2f,0x6a,0xca,0xdb,0x9c, - 0x5e,0xd3,0x7b,0xb5,0xa9,0x45,0x47,0xb7,0xde,0xdb,0x29,0xde,0x67,0xd0,0xe8,0x83,0x41,0x52,0xac,0x45, - 0x5a,0xd0,0x4b,0xac,0xf2,0x37,0x49,0x56,0x86,0xe5,0x96,0x23,0x03,0x05,0xa3,0xc4,0x90,0x8d,0xb0,0x02, - 0xbd,0xa3,0x9c,0x52,0x98,0x24,0xf3,0x62,0x8a,0x81,0x90,0xc4,0x83,0xdc,0x69,0xd1,0xbe,0x0d,0x05,0x66, - 0xab,0x7a,0x4d,0x2d,0x18,0x8f,0x93,0x1a,0x36,0x19,0xa4,0xa1,0x34,0xee,0x34,0x76,0xd7,0x56,0x22,0xf4, - 0x63,0xc1,0x06,0xe1,0x3b,0x6e,0xe2,0xdb,0xdb,0xb4,0x59,0x58,0x59,0x5b,0xb7,0x70,0xef,0x88,0xcd,0x23, - 0x88,0x5d,0xf1,0x0d,0x6c,0x22,0x8e,0xb1,0x16,0x24,0x41,0x1a,0x7c,0x91,0xfe,0x9e,0xb0,0x1c,0x07,0xa6, - 0x50,0x89,0x82,0x4c,0xe7,0x6d,0x1e,0xfd,0x23,0x07,0x9e,0x70,0xae,0x9b,0x40,0x4b,0xec,0xe3,0x96,0x74, - 0x47,0x36,0x6b,0xcf,0x19,0x98,0xf0,0x88,0x2b,0x19,0x5d,0x32,0xa2,0xb3,0x35,0x51,0x77,0xa8,0xa9,0xa9, - 0xde,0xcc,0x3e,0x76,0xb6,0xbc,0x10,0x3b,0xe3,0xef,0x4d,0xf5,0xb1,0x3c,0x85,0x65,0x82,0x56,0x14,0xa5, - 0xc6,0xa0,0xa2,0x83,0xbf,0x73,0x44,0xfe,0x5a,0x64,0x3e,0x1b,0x53,0x81,0x01,0xda,0xcf,0xed,0xf3,0xae, - 0x09,0xa8,0x35,0x00,0x65,0x35,0x28,0x13,0x17,0x42,0x7b,0x85,0xb6,0xae,0x83,0xb8,0x78,0xc3,0x92,0x00, - 0xcd,0xd4,0xf6,0xa1,0xd6,0x67,0x0c,0x01,0x13,0xb5,0xa8,0x8d,0xca,0x10,0x46,0x90,0x12,0x06,0x08,0x14, - 0xf3,0x8e,0x26,0x28,0xc0,0x7f,0xea,0xd8,0xe2,0x29,0xb1,0x5a,0xa0,0xee,0x25,0x9a,0xac,0xf0,0x80,0x8f, - 0x39,0x2a,0x50,0x6d,0x08,0x86,0x17,0x83,0x55,0xc6,0x5e,0x9a,0x81,0xd2,0x3c,0xb0,0xfd,0x34,0x56,0x0b, - 0xae,0x8c,0x93,0xe3,0x87,0xb6,0xfd,0x06,0x9a,0xf0,0xd4,0xda,0x3e,0xb6,0xce,0x00,0xf2,0x10,0x7e,0x57, - 0x94,0x59,0x3a,0xc2,0xf6,0x76,0x2d,0xf6,0x8e,0x99,0x78,0x27,0x3a,0x7b,0xfe,0x30,0xa7,0x89,0xe6,0x7b, - 0x80,0x3a,0xe0,0x34,0xa1,0xce,0x38,0x6a,0x7e,0x34,0xed,0xe5,0xf7,0xe2,0xda,0xb3,0x56,0xd9,0xca,0x04, - 0x4f,0x4a,0x7c,0x60,0x51,0xcb,0xb0,0x8a,0xbb,0xa1,0x65,0x06,0xe6,0xe9,0x96,0xe8,0xd0,0x06,0xb8,0x68, - 0x7f,0x06,0xad,0x79,0xb4,0x45,0xb1,0x39,0x72,0xf1,0xfe,0x67,0xd3,0x1e,0x67,0x44,0x9b,0x5b,0x06,0x8d, - 0x12,0x84,0x01,0x69,0x4c,0x11,0x65,0x17,0x00,0x6f,0xa5,0x6f,0x36,0x77,0x1b,0xc9,0xec,0xb6,0x9d,0x5d, - 0x46,0x68,0xec,0x02,0xd6,0xcc,0xb6,0x04,0x7f,0xc4,0x4c,0xe0,0x38,0x20,0x2d,0x69,0xc7,0xaa,0xae,0xa3, - 0x15,0xc3,0x7d,0x77,0xb9,0x6c,0x30,0x77,0x3f,0x71,0x5d,0x3d,0xaa,0x0c,0x0c,0x7d,0xc2,0xc0,0x37,0xfc, - 0xe7,0x16,0xa6,0xf2,0x6f,0x58,0x13,0x0e,0x63,0x00,0xb7,0x50,0xc7,0x56,0x69,0x9c,0x85,0xc9,0x59,0xc6, - 0x86,0x47,0x5a,0x56,0x7c,0x4d,0xc7,0x00,0x71,0xc7,0xda,0x08,0x33,0x37,0xa1,0x6b,0x5b,0xd7,0x25,0xf4, - 0xa1,0x95,0xb2,0x6d,0x06,0xfb,0xb3,0xeb,0x2a,0xf1,0x13,0x8c,0x43,0xf9,0x86,0x51,0x66,0x05,0xcd,0x41, - 0x36,0xad,0x14,0x77,0x40,0x85,0xdc,0x40,0x35,0xcf,0x34,0x3f,0x19,0xe5,0x61,0x1a,0x18,0x47,0xa8,0x5b, - 0x54,0x96,0x19,0xb9,0x39,0x3b,0xf2,0xd1,0xcf,0x51,0x7d,0xdd,0xc4,0xf7,0xe1,0xe6,0xa2,0xdc,0x66,0x86, - 0x30,0xad,0x61,0xbe,0x0c,0x9f,0x91,0xee,0x3d,0x54,0xab,0x77,0xce,0xc7,0xcd,0x46,0x0c,0x48,0xdd,0xf2, - 0x8e,0x48,0x06,0x51,0x6c,0x7b,0x59,0xe0,0xe9,0x86,0xb0,0xd1,0xe9,0x08,0xaf,0x23,0xba,0x99,0x14,0x3a, - 0xfe,0x62,0x78,0xc4,0x8f,0x27,0xe2,0x0a,0xa8,0x8c,0x1e,0xe6,0x1c,0xfe,0xdc,0xc8,0xe9,0xcb,0x41,0x52, - 0x14,0x39,0xb1,0x10,0x29,0xed,0x9d,0x2a,0x5d,0x95,0x51,0xae,0x4a,0x8d,0x84,0xae,0xa1,0xcd,0x91,0x2e, - 0x93,0x30,0x51,0xfa,0xe9,0x55,0xfe,0xb5,0x9e,0xaa,0xb2,0x43,0x9b,0xbf,0xc3,0x00,0x76,0xe7,0x3a,0x40, - 0xfb,0x50,0x20,0x7c,0xcf,0x77,0x70,0xc4,0x17,0xf2,0x12,0xe8,0x3b,0xa9,0x5e,0x51,0x1b,0x27,0xe4,0x70, - 0x73,0x66,0xaf,0x22,0x46,0xda,0x28,0xc9,0x4d,0x0b,0xfa,0x74,0x20,0x32,0xec,0xc2,0x73,0x9a,0x61,0x2f, - 0xe1,0x78,0x4f,0xac,0xe9,0x21,0x33,0x29,0xa0,0xec,0x09,0xab,0x6a,0xac,0xb8,0x1d,0xb3,0xb6,0x0f,0x9a, - 0x21,0xea,0xa2,0x06,0xb7,0x69,0x8d,0x3c,0xea,0x2b,0xba,0xb8,0x9d,0xd2,0xd4,0xd7,0x73,0x02,0xa6,0x00, - 0x76,0xa6,0xd0,0x4f,0x40,0xfb,0x11,0xc1,0x26,0xae,0x34,0xb6,0x81,0xff,0x7b,0x1e,0x0c,0x76,0x27,0x8f, - 0xb2,0xc5,0xd1,0xde,0x1e,0x3c,0xd9,0x9f,0x67,0x3e,0xae,0x9a,0x32,0xf7,0x1d,0x1e,0x9f,0xe2,0x4e,0x6b, - 0x9c,0x2f,0x5d,0x8b,0x31,0x0e,0x73,0x6b,0x75,0x4c,0xa8,0xed,0x34,0x8e,0x3a,0x2c,0xab,0x4c,0xf6,0x0f, - 0x1b,0x5d,0x01,0xf7,0xb1,0x71,0x12,0x37,0x03,0x75,0xd2,0x86,0xed,0x27,0xd1,0x97,0x6e,0x92,0x79,0x30, - 0x51,0x98,0x77,0x23,0x8b,0x36,0x42,0x8e,0xb3,0x5b,0x83,0x4c,0x4f,0xb7,0xd9,0x9e,0xa0,0x14,0xe5,0xfc, - 0xe1,0xed,0x18,0xb0,0x72,0x26,0xaf,0x74,0x1d,0x83,0xb0,0x08,0xbc,0xbf,0x08,0xc9,0x6a,0xa3,0x26,0x30, - 0xc1,0x50,0xc4,0x10,0x2b,0x58,0x57,0x5c,0x7b,0x8e,0xe7,0x2e,0xb7,0x2b,0x05,0x93,0x92,0x66,0x92,0x84, - 0x8b,0xe5,0xf2,0x3b,0x26,0xab,0xf9,0xba,0x6a,0x78,0x8c,0xeb,0x39,0x49,0xef,0xb7,0xe2,0x13,0x2d,0x6b, - 0xbb,0x2e,0x2d,0x77,0xd2,0xb5,0xf1,0x26,0x33,0xff,0xee,0x9a,0x61,0x9a,0x65,0xe4,0xc6,0xdb,0x04,0xdc, - 0xe8,0x5d,0x77,0x0b,0x97,0xe2,0xf7,0x0a,0x92,0x32,0xc4,0xb1,0x32,0x5b,0x23,0xcc,0x9c,0x7d,0x62,0x48, - 0x38,0xa4,0x9a,0xc7,0xad,0x8e,0xf4,0x0e,0x92,0x4a,0xef,0x00,0xa8,0x9e,0xb5,0xc0,0x7d,0x68,0xd6,0x8b, - 0xb0,0x42,0xb6,0xbb,0x3b,0xac,0xc9,0x7e,0x1a,0x6b,0x47,0x3e,0x6c,0xde,0x66,0x6c,0xd9,0x34,0xdc,0xd3, - 0x98,0xe8,0x6d,0x1b,0xb4,0x8c,0x12,0x3c,0x89,0x1f,0x56,0xaf,0xb3,0xdc,0x47,0x83,0xdd,0x58,0x67,0x12, - 0xdd,0x71,0x46,0x58,0x4c,0x7f,0x14,0x44,0x37,0x92,0x9f,0x81,0xce,0x1a,0x25,0x7e,0x67,0x98,0x59,0x29, - 0x0d,0xb9,0x30,0x7e,0x07,0xf1,0xc5,0x6c,0x24,0x8f,0xb4,0x29,0x89,0xcf,0xfd,0x69,0x9d,0x3c,0x3e,0xfe, - 0x5b,0x86,0xd2,0xdb,0x56,0x10,0x6a,0xea,0xd6,0x9a,0x00,0x04,0x20,0x48,0x5d,0x1b,0x3a,0xb4,0x82,0xf4, - 0xb9,0xa3,0x67,0xb8,0x6b,0xcf,0xd9,0x66,0x49,0x3f,0x31,0x0a,0xf3,0xbd,0xf1,0xe5,0x3a,0x39,0x48,0xa9, - 0x9d,0x49,0xcf,0xeb,0xc3,0x0f,0xe5,0xad,0x5b,0x8d,0x0c,0x7c,0xa4,0x4f,0xdf,0xb8,0x8e,0xb6,0x93,0x56, - 0x40,0x3c,0x61,0xba,0x76,0x26,0xaa,0xaa,0x4b,0xb8,0x38,0xe8,0x52,0xaf,0x01,0xf6,0xed,0x45,0xe3,0x3a, - 0xb5,0x15,0x65,0x0f,0x61,0xf6,0x6c,0x6c,0x09,0xa7,0xb2,0xd4,0x8d,0x0f,0x2e,0xa2,0x40,0x7b,0xa9,0x6f, - 0x89,0x3f,0x48,0x1c,0x20,0x08,0xac,0x3f,0x81,0xec,0xd3,0xbb,0x19,0x6a,0x7c,0x29,0xff,0x98,0xbd,0xc0, - 0x82,0x09,0xc3,0x59,0x8a,0x41,0x3a,0x91,0xb5,0x4d,0x85,0x56,0x4e,0x1c,0xa5,0x6c,0x6a,0x18,0xee,0x6c, - 0xff,0x8a,0x43,0xcd,0xc3,0x61,0x32,0xb2,0x85,0x77,0x9c,0x0a,0x59,0x24,0xf8,0xde,0xec,0xca,0x47,0x9b, - 0xc7,0x5d,0x6d,0x52,0x22,0xf0,0x48,0x1a,0xc9,0xa3,0xba,0x26,0x8a,0x25,0xa6,0xc3,0xae,0x10,0xfb,0xa4, - 0x32,0x4c,0x1d,0x6f,0xa0,0x79,0x6d,0xc4,0x8d,0x15,0xd1,0x8d,0x5a,0x18,0xa8,0x1a,0x2a,0x59,0x46,0x36, - 0xa7,0xd5,0x17,0x36,0x8e,0x4d,0xe4,0x38,0xb9,0xc1,0x18,0x25,0x42,0xa0,0xc2,0x41,0x7c,0x06,0x31,0xb6, - 0xc2,0x18,0x93,0x11,0x5c,0x79,0x07,0xa3,0xec,0xfe,0xf1,0xe8,0x38,0x3c,0x0a,0x8f,0xc3,0x6a,0xc4,0x79, - 0x2e,0x52,0x14,0xbd,0x13,0x84,0x47,0x26,0x9c,0x2a,0xfc,0x6e,0xe9,0xfb,0xa1,0xc9,0x28,0x63,0x29,0x10, - 0x73,0x5a,0xa1,0xb3,0xb6,0xb1,0x03,0x05,0xcc,0x9a,0x72,0xd8,0xef,0x36,0x97,0xda,0x70,0xfb,0x5e,0xba, - 0x42,0x27,0x07,0x14,0x94,0xa1,0xaa,0x84,0x9c,0x22,0x26,0xe6,0xde,0x0e,0x98,0xa4,0x86,0x5e,0xcf,0x25, - 0x1c,0x0f,0x2e,0x1b,0x4c,0xb4,0x92,0xdc,0xb8,0xa5,0x88,0x6c,0x4c,0x0d,0x7d,0x25,0x81,0xc6,0x98,0xb2, - 0xc9,0x83,0x29,0x61,0x9c,0x75,0x14,0xab,0x85,0x00,0x35,0xfc,0x34,0xb2,0xf7,0xd1,0x1c,0xa4,0xcc,0x88, - 0xa9,0x9a,0x92,0x89,0x1b,0xc5,0x29,0x21,0xa7,0xf0,0xa3,0xa6,0xf5,0xd5,0xda,0x4c,0x7a,0xd1,0x0c,0x51, - 0xc0,0xc4,0xe1,0x92,0x1d,0x6c,0xc3,0xc9,0xb3,0x76,0x07,0x67,0xb3,0xac,0x6b,0xf7,0xbe,0x4b,0x56,0xf7, - 0x85,0xc8,0xaf,0x43,0xe6,0x91,0x18,0x57,0x67,0xb5,0x05,0xe3,0xa9,0x40,0x10,0x7b,0x45,0xdb,0xc7,0xce, - 0x1f,0x48,0xc2,0x56,0xd7,0xe3,0x60,0x13,0xbe,0xc0,0x86,0xa4,0x04,0xe7,0x5a,0x6d,0x6a,0xae,0x39,0x2a, - 0x9f,0x1d,0x43,0xc2,0x53,0x20,0x1f,0x9a,0x29,0x51,0xea,0xb9,0xc9,0x04,0x51,0x22,0xcd,0xa0,0x26,0x87, - 0xb2,0xa0,0xf6,0xce,0x43,0xb9,0xab,0xe2,0x9d,0x9e,0xd1,0x76,0xfc,0x24,0xa2,0x82,0x9a,0x49,0x52,0x37, - 0x91,0x88,0xa5,0x85,0x5d,0xa3,0xae,0x10,0xd9,0x1b,0x75,0x48,0x09,0x85,0xe5,0xb4,0x53,0xe0,0x46,0x23, - 0x06,0x07,0x55,0x70,0x64,0x66,0xa9,0x6c,0xb3,0x29,0x6b,0xd6,0x56,0x54,0x26,0x5c,0xfe,0x35,0x83,0xaf, - 0x1f,0x37,0xa1,0x26,0x43,0xa7,0x75,0xdb,0x6b,0xdb,0xf6,0x74,0xa7,0x6d,0xa7,0x65,0xc0,0xb9,0x71,0x05, - 0xb7,0x65,0xdd,0xa7,0x5a,0x0d,0x8e,0xb8,0xe7,0x2d,0x51,0xe1,0x62,0x3a,0x92,0x59,0xdf,0x64,0xe0,0xda, - 0x6b,0xcd,0x08,0xb3,0x18,0x4b,0x97,0x5d,0xc8,0xda,0xab,0x5a,0x8c,0xf6,0x88,0xb0,0xe0,0xd5,0x84,0xd8, - 0xdb,0xf7,0xb2,0xbc,0xa2,0x93,0x2a,0x2d,0xab,0x9e,0x3e,0x46,0x7a,0xa9,0xf6,0xf4,0x03,0xc0,0xa5,0x34, - 0xfb,0xee,0x41,0xe5,0x98,0x3d,0x4c,0x37,0x0b,0x35,0x0b,0x80,0x2e,0xe8,0xe9,0x46,0xa5,0x84,0x1b,0x58, - 0x22,0x11,0x48,0x94,0x9d,0xb4,0x43,0x0e,0xe2,0xa3,0x0d,0x64,0xd8,0xc6,0x83,0x23,0x3a,0x78,0x11,0xb4, - 0x84,0xf7,0x0d,0xcb,0x1f,0xaa,0x73,0xf8,0xa3,0xd1,0x40,0xc9,0x17,0xc3,0xb4,0x6f,0x89,0x06,0xb8,0xc6, - 0xa7,0x10,0x71,0x6e,0x35,0x02,0x44,0x32,0xd0,0x1f,0x51,0xdb,0x22,0xfd,0x27,0xda,0x20,0x97,0x0a,0x88, - 0x3f,0x30,0x15,0xd0,0x16,0xe5,0x0a,0xcc,0xd2,0x6f,0x36,0x53,0x8e,0x2c,0x63,0xa2,0xb6,0xa4,0x76,0x2e, - 0xe1,0x04,0xa9,0xd2,0x32,0x54,0x13,0x12,0xcf,0x5f,0xd2,0x4a,0xf3,0xbc,0x06,0x03,0x13,0x13,0x7e,0xa9, - 0x68,0x03,0x1b,0x2e,0x6a,0x77,0xd3,0x15,0x0e,0x0d,0x5f,0xc1,0xcb,0xaa,0x89,0x1c,0x8f,0xc3,0xb7,0x1d, - 0x17,0x04,0xbe,0xe5,0xd9,0x17,0xa3,0xce,0x96,0xb0,0x10,0x8a,0x68,0xa1,0x80,0x49,0x30,0xb3,0x57,0xd7, - 0x8d,0x9d,0x2a,0x96,0x52,0x9a,0x48,0xf4,0x3d,0x13,0xa0,0xb7,0xf7,0x6f,0x18,0xfb,0xbf,0x61,0xbd,0x2e, - 0x0f,0xaa,0x5e,0x1d,0x37,0x5b,0x8b,0xc7,0xf5,0x0a,0x97,0xeb,0x15,0xc8,0x92,0x9e,0x98,0xe9,0x88,0xa5, - 0x5a,0x23,0xa0,0x07,0x6f,0xf9,0xfa,0xe4,0x15,0x1e,0x0f,0x4f,0x7a,0xd7,0x78,0xb4,0x70,0x9e,0xd5,0x42, - 0x04,0xb5,0x0b,0x4d,0x47,0xa6,0x78,0x87,0xa2,0x98,0x87,0x2d,0x00,0x1d,0xc0,0xde,0x17,0xc7,0xa1,0xfc, - 0xde,0x95,0xdf,0x4f,0x3f,0x97,0xdf,0xbb,0x9f,0xea,0xdf,0x2f,0x74,0xfa,0xdf,0x42,0x1b,0x80,0x4c,0x0a, - 0x7c,0xa6,0x33,0xe8,0x02,0x9f,0x7e,0x16,0x1a,0xf5,0xe2,0x19,0x54,0xdd,0x25,0xd7,0xdd,0x3b,0xba,0x7a, - 0xf9,0x39,0x3e,0xd2,0xbf,0xba,0xb5,0xe3,0xcf,0x75,0xc2,0xe7,0x9f,0xdd,0xf9,0xab,0xce,0xf3,0xb7,0x3b, - 0xa6,0x10,0x3d,0xdd,0x35,0x95,0x5e,0x95,0x9e,0xbd,0xf8,0xbb,0x1f,0x7d,0xf1,0x57,0x62,0x59,0xee,0x45, - 0xc7,0x77,0xee,0x6c,0x36,0xf4,0xfa,0xf9,0x67,0xfc,0xfa,0xc5,0xd1,0x48,0x37,0x1e,0x52,0xe2,0xa7,0x5f, - 0x70,0xe2,0x67,0x7f,0x1d,0x79,0x62,0x08,0xe1,0x85,0x1e,0x5f,0xfb,0x74,0x04,0x24,0xc1,0x34,0xc9,0x59, - 0xa7,0xe1,0xc2,0xf7,0x8e,0xbc,0x3d,0x27,0x78,0xf1,0x11,0x64,0x68,0x69,0xf9,0x2c,0x7e,0x26,0x41,0xd9, - 0x08,0xe1,0x26,0xea,0x6b,0x13,0xad,0xae,0xf3,0xce,0xad,0x39,0xed,0xa6,0xef,0xb6,0x52,0xfd,0xc9,0x2a, - 0xf3,0x1c,0x53,0x0b,0x77,0x3f,0x85,0x58,0xe7,0xd6,0xad,0xbb,0x5f,0xe0,0x77,0x54,0x85,0x36,0x8c,0x9b, - 0xa2,0xef,0x60,0x05,0x43,0xef,0x13,0xaf,0x9f,0x98,0x00,0xe8,0xe2,0xdf,0xea,0xd2,0xe0,0xc2,0x9a,0x2b, - 0x33,0xbe,0x37,0xa0,0xa9,0x30,0x16,0xb2,0xaf,0xa7,0x3d,0xe5,0x79,0x6a,0xb1,0x9b,0xff,0x3c,0x2e,0x9f, - 0x5f,0x65,0x26,0xd0,0x9e,0x7a,0x17,0x75,0x11,0xa8,0x8f,0xb3,0x6a,0xe9,0x04,0x0b,0xc3,0xeb,0xe0,0x11, - 0x22,0xdb,0xa4,0x17,0x09,0x31,0x0f,0x17,0x71,0xa5,0x4e,0x3f,0xba,0xa0,0x78,0xf1,0xd3,0xc5,0xce,0xa2, - 0x6b,0x71,0xac,0xf1,0xb0,0x15,0xa4,0xb2,0xe1,0xd3,0xc8,0x65,0x00,0xab,0x01,0x76,0x5b,0x24,0x3f,0x7c, - 0x8f,0x78,0x7a,0x8a,0xc7,0xd1,0xf5,0x36,0x34,0x11,0x89,0x18,0x27,0x5c,0xdb,0xcc,0x16,0x5d,0x52,0x8f, - 0x9e,0xea,0x74,0x29,0x14,0x98,0xe3,0x0e,0x81,0x16,0x87,0x26,0xb5,0xd3,0xe9,0x4d,0x42,0xd4,0x42,0xa2, - 0x1c,0xc2,0xa7,0x62,0x63,0x02,0xf7,0x30,0x4a,0x3a,0x22,0x30,0x4a,0x48,0x53,0x54,0xca,0xbe,0x83,0x9f, - 0x30,0x92,0x78,0x9a,0x94,0x65,0xbc,0x60,0xdf,0x39,0x72,0xf6,0xe9,0xe3,0x87,0x9a,0x11,0x8f,0x53,0xa7, - 0xce,0x18,0x55,0x9d,0xf2,0x33,0x72,0x25,0xda,0x23,0x98,0x74,0xf5,0x0a,0x49,0x38,0x44,0xa0,0xa9,0xec, - 0x07,0x4e,0x66,0xd6,0x91,0x98,0x16,0xe9,0x59,0x82,0x4f,0x0f,0x61,0xea,0xc3,0xd1,0x87,0x98,0x69,0x93, - 0x6c,0x26,0x87,0x38,0x83,0xdb,0xd6,0xf1,0x38,0xf4,0x14,0xca,0x5c,0xf1,0x0a,0x14,0x79,0x5e,0x99,0x20, - 0xf7,0x78,0x16,0xa4,0xb7,0x9b,0xd2,0x98,0x6b,0xbe,0x3e,0xe5,0xbe,0x20,0x43,0xd4,0xce,0xab,0x57,0x6a, - 0x30,0x27,0xfa,0xec,0x8c,0x18,0x19,0x99,0x9c,0x9d,0x6c,0xad,0xef,0xa6,0x54,0x49,0x8c,0x61,0x26,0xfa, - 0xa7,0x4b,0x36,0x52,0xf8,0x99,0x55,0xc1,0xdb,0x85,0x3b,0xb3,0xb1,0xa3,0xde,0x26,0x04,0x14,0x1f,0x84, - 0x80,0x02,0xf4,0xe2,0x2e,0x04,0xd8,0xe5,0xe5,0x35,0x2d,0xa3,0xa2,0x7b,0x31,0x71,0xc1,0xfe,0xd4,0x4c, - 0xec,0xff,0xd8,0x9a,0x2a,0xe7,0xb0,0xd0,0xd3,0xf6,0x2e,0xe3,0x6b,0x3e,0xfb,0xc2,0x77,0xe1,0xe2,0x17, - 0x90,0xe7,0xb7,0xd1,0xa1,0xfd,0xba,0x43,0x32,0xfb,0x7e,0x60,0x1d,0xc5,0xff,0x79,0xb8,0x18,0xf9,0x2e, - 0x94,0xef,0x40,0xc5,0x9f,0x1f,0x2e,0x78,0x73,0xb9,0x25,0xc1,0x25,0xab,0x0e,0xb0,0x60,0x7a,0xd4,0x78, - 0xdf,0x81,0x53,0x77,0xdb,0xb9,0x19,0xff,0xa9,0xee,0x18,0x3f,0x70,0x8f,0xda,0x61,0x6a,0x8d,0x23,0x38, - 0xe9,0x9a,0xbf,0x53,0xb8,0xd1,0xa3,0xc1,0x3a,0x7b,0x5f,0xcb,0x5a,0xf0,0xb9,0x53,0x47,0x07,0x94,0x35, - 0xaa,0xd5,0x69,0x7e,0xab,0x06,0xe7,0x93,0xa9,0xa1,0x01,0x18,0xdd,0xe0,0xd2,0xae,0xa5,0xf1,0xd1,0xed, - 0x89,0x84,0x8d,0xdb,0x6e,0xd5,0x95,0xf1,0xda,0x8a,0xd4,0xda,0x9b,0x63,0xbc,0x84,0xa1,0xb7,0x38,0x56, - 0x64,0xad,0xb7,0x6b,0xd7,0x93,0xad,0xd6,0x0a,0x08,0xc5,0x65,0xe2,0x96,0x23,0x92,0x37,0x73,0x18,0x8a, - 0x0b,0x17,0x87,0x86,0x1e,0x75,0x33,0x6c,0x15,0xdf,0x86,0x97,0x3a,0x71,0xcc,0xd4,0x9e,0x75,0x26,0xbb, - 0xdd,0xf1,0xe4,0xd8,0x20,0xed,0xb9,0x5b,0x90,0x4f,0x48,0xf8,0x0c,0x44,0x91,0xad,0xad,0xcd,0xf0,0xdd, - 0x01,0x1c,0x89,0xa7,0xe1,0xe7,0x22,0xd8,0xff,0xa0,0xeb,0x58,0x1d,0x16,0x2e,0x92,0x1f,0x1b,0x7e,0x97, - 0xe8,0x79,0xc7,0x91,0xab,0x08,0xe0,0x0b,0x21,0xa4,0x11,0xcd,0x43,0x13,0xd2,0x6b,0x08,0xa8,0x97,0xf8, - 0xc0,0x63,0x63,0x83,0xd0,0x79,0x8b,0x5d,0x5b,0x06,0xa3,0xa5,0x09,0xfa,0x7b,0x14,0xba,0xe7,0xd6,0x32, - 0xb0,0xe9,0xac,0x81,0xdd,0xe2,0x99,0x5c,0x7f,0x7c,0xd8,0x46,0x75,0x00,0xf3,0x9a,0xe4,0x71,0x82,0x9a, - 0x73,0x17,0x0c,0xd5,0x53,0xc7,0x3d,0xbf,0x75,0xcb,0xe3,0xcb,0xc4,0xed,0xb6,0x16,0xe9,0xdf,0xba,0x95, - 0xdb,0x96,0x89,0x29,0x5d,0x51,0xed,0xbe,0xf7,0x78,0xde,0x93,0x51,0xf4,0x30,0xdb,0xbd,0xb4,0xec,0xc1, - 0xc9,0x4c,0x8f,0xce,0x80,0x1e,0xcf,0x75,0x2f,0x11,0x91,0x69,0xd9,0x83,0xf9,0x43,0xef,0x3c,0xbe,0x4c, - 0xa4,0x80,0xe4,0xa7,0xcc,0x03,0xe2,0x82,0x3a,0xc6,0xbe,0x8b,0xd3,0xc1,0x16,0xac,0x89,0x01,0x84,0xf3, - 0xd0,0xf6,0x8c,0x74,0x9d,0x00,0x6b,0x78,0x3e,0x5b,0xd2,0x1f,0xa8,0x58,0xde,0x50,0x9f,0xf0,0xf6,0xab, - 0x91,0x07,0xf3,0xa9,0xf6,0xb4,0x84,0x94,0x9a,0x0c,0xd7,0x10,0x7e,0x41,0x9c,0xa9,0xbd,0xfe,0xab,0x54, - 0xc5,0x83,0xd4,0x97,0xd8,0x13,0xd8,0x1a,0x6f,0xa3,0x1d,0x44,0x31,0xa5,0x96,0xe8,0x70,0xe9,0xb8,0x20, - 0xd9,0x0e,0xdf,0x3a,0xf4,0x5c,0x0a,0xbb,0xc1,0x55,0x0e,0x79,0xb8,0x2b,0x27,0xaa,0xcd,0x87,0x9d,0xda, - 0xe0,0x5a,0xce,0x30,0xa9,0xd0,0xc2,0x7b,0xaf,0x46,0x1f,0x31,0x7e,0x9e,0xe7,0xaa,0xf5,0x59,0x79,0xf3, - 0x38,0xeb,0xf7,0x59,0x3e,0xe3,0x5d,0x6b,0xff,0xaf,0x05,0xae,0x15,0x9c,0x6b,0x7d,0x56,0x4f,0xf1,0xb4, - 0xae,0x58,0x81,0xcb,0x7c,0xd4,0x25,0x2c,0x29,0x3d,0x88,0x8d,0x85,0xae,0xc7,0xdb,0xb2,0x0e,0xcb,0x30, - 0xc8,0xfb,0x51,0xaa,0x6c,0xb2,0xc8,0x24,0xf6,0x85,0xee,0xce,0x83,0x91,0xc7,0xce,0x46,0xc3,0x37,0x75, - 0x02,0x90,0xc9,0x8c,0x28,0xfd,0xb5,0x38,0xa5,0xf3,0x86,0xa6,0x0b,0xd2,0x6c,0x2e,0x1e,0xb1,0xe3,0xad, - 0x68,0xc9,0x7b,0xff,0x8b,0xfb,0x3a,0xa2,0x3e,0x83,0x30,0xa7,0x15,0x81,0xc8,0x8f,0x9a,0x0c,0x42,0xfc, - 0x35,0x1c,0xc7,0x07,0x47,0x02,0xd1,0x8c,0x41,0x6f,0x76,0x56,0xa3,0xa2,0x21,0xaa,0xce,0x6a,0xe6,0x53, - 0x49,0xf0,0xe9,0xb6,0x6c,0xc5,0x0c,0x87,0x83,0xd4,0xed,0x8e,0x04,0x73,0x6b,0x5e,0xd8,0x36,0xdc,0xf4, - 0x8e,0xa7,0x6e,0x98,0xb6,0x17,0x25,0xa6,0x01,0xa5,0x13,0xc3,0xf0,0xc5,0xfa,0x5e,0x1a,0x9c,0x95,0xf4, - 0x3f,0xd4,0x1c,0x6d,0xac,0x99,0x73,0xd1,0x7a,0x65,0xbe,0x4d,0x77,0x44,0x67,0xc8,0xc6,0x4c,0xe9,0x10, - 0xdd,0x6e,0xf2,0xaa,0xe3,0xa3,0x60,0xd2,0x28,0x60,0x7a,0x2b,0xbf,0xa2,0x16,0x6e,0x8b,0xeb,0x52,0x44, - 0xe3,0xa6,0xfd,0xbe,0x9d,0xd4,0x2d,0x87,0xbb,0xdb,0xf2,0xa2,0xee,0x47,0x87,0xbf,0xf9,0x27,0xb3,0xa0, - 0x7f,0xa8,0xde,0xf0,0xe3,0x15,0x1e,0x1f,0xd2,0x34,0x3d,0x88,0x8e,0xd5,0xcb,0xe8,0x8e,0x7a,0x15,0xdd, - 0x55,0xcf,0xe9,0xfd,0x75,0xf4,0xa9,0x7a,0x12,0x7d,0xa6,0xbe,0x8a,0x3e,0x57,0x2f,0xa2,0xbf,0xaa,0xc7, - 0xd1,0xdf,0xd4,0x23,0x30,0xf4,0x8f,0xc6,0xcf,0x27,0xd1,0xf5,0x55,0x19,0xd2,0xaf,0x62,0x36,0x30,0x1c, - 0xdf,0x55,0x0f,0x27,0xca,0x1b,0x7b,0xe1,0xf8,0xf5,0x44,0xd1,0x21,0x1f,0x8e,0x5f,0x4c,0xb6,0xea,0xd1, - 0xf8,0x58,0xe7,0x3c,0xa6,0xaf,0x03,0xfa,0x7a,0xa7,0x33,0xd7,0x1d,0x9d,0xeb,0x4e,0xb3,0xbe,0x23,0xfd, - 0x2b,0x5c,0xa5,0xbc,0x20,0xfb,0x5d,0xca,0xfe,0xa1,0x7c,0x8a,0x5b,0x55,0x0f,0x4c,0xbb,0xfc,0xc4,0x2d, - 0xe3,0x49,0xda,0xa6,0x27,0x54,0xf7,0x9a,0xaa,0xf3,0x6e,0xd3,0xa7,0x27,0x28,0x77,0xdb,0xbb,0x1d,0x8e, - 0xbf,0xaa,0x87,0xa3,0x5e,0xd2,0xd3,0xc4,0x43,0x65,0xaf,0xa4,0xe0,0x63,0xb6,0xe7,0xc3,0x27,0xe9,0xce, - 0x13,0x53,0x1e,0x09,0x8d,0x1c,0x4f,0x74,0x8e,0xaf,0x28,0x07,0xd7,0xbb,0x93,0x03,0x0d,0xc9,0xc2,0x7c, - 0xcd,0x36,0xcf,0x44,0xaa,0x15,0xeb,0x64,0xc3,0xb6,0x9c,0x9b,0x83,0xd1,0xf8,0x64,0x36,0x98,0xf4,0x37, - 0xb7,0xd9,0x07,0xd6,0xed,0x8d,0xc7,0x6e,0xb1,0xbc,0x80,0xf2,0xc1,0x31,0xd1,0x0d,0x68,0xab,0x1b,0x6b, - 0x3d,0x73,0xb0,0x16,0x43,0xd9,0x0b,0x3a,0xd4,0x76,0x25,0x54,0x2e,0xc6,0x72,0x10,0x16,0x54,0x48,0x93, - 0x0e,0x79,0x96,0x09,0x7b,0x17,0x23,0x94,0x0f,0x36,0xdc,0x3a,0x3a,0x38,0xa6,0xa3,0xf1,0x39,0xc7,0xbd, - 0x3b,0x07,0xb8,0x60,0xcf,0x9c,0x8f,0x1f,0x4c,0x1a,0xc6,0x1d,0xe6,0x9c,0xca,0x58,0x97,0x47,0xa0,0x17, - 0x2e,0x0a,0xe5,0x03,0x6c,0xf5,0xc7,0x0f,0x3b,0x4a,0x40,0x52,0x3b,0xca,0xa2,0x22,0xcc,0xfa,0x44,0xf8, - 0x53,0xa6,0x97,0x8d,0x4c,0x28,0x44,0x94,0xd1,0x9c,0x60,0x9f,0xbe,0xbd,0x6a,0x7c,0x83,0x46,0xe4,0xfd, - 0xa3,0x60,0x7e,0x70,0x40,0xdd,0x7b,0xad,0x24,0xab,0xbd,0x8b,0x44,0x6f,0xf7,0x70,0xf5,0xe1,0x67,0xd1, - 0x8c,0x5d,0xe6,0x59,0xb1,0x28,0xfa,0x0e,0x75,0xcc,0xa1,0x96,0x81,0x2f,0xd9,0x61,0xfc,0xba,0xdf,0x87, - 0xff,0x44,0x56,0x16,0x82,0xcf,0xc5,0x35,0x6e,0x2c,0xf6,0x5a,0xfc,0x34,0x7f,0xe8,0x1f,0x33,0xb6,0x86, - 0xd8,0xe8,0x09,0x9d,0xca,0xb7,0x59,0xad,0x6b,0xb3,0xc1,0xfb,0x57,0xb7,0x6e,0x11,0x58,0xe0,0xdd,0xfa, - 0xee,0xa6,0x6a,0x09,0x5b,0x53,0xc5,0xfd,0x44,0xf7,0x11,0x11,0x96,0xfd,0x40,0x5b,0x71,0xad,0x20,0x16, - 0x03,0x9d,0x53,0x46,0x8f,0xc6,0xcb,0x49,0x40,0x78,0x67,0xb3,0x29,0x59,0x11,0x74,0xb3,0x79,0x0c,0xd9, - 0xf2,0x63,0xa3,0x15,0xc4,0x6d,0xc2,0x8e,0x45,0xf9,0x71,0x74,0x3e,0xce,0x69,0x0f,0x4e,0xe4,0x1e,0x36, - 0xc7,0x46,0x2b,0x22,0x3b,0xa5,0xc5,0x08,0x32,0x44,0x1e,0x3e,0xf1,0x3f,0x41,0xa3,0x82,0x28,0x7a,0x61, - 0x9d,0xa3,0x8a,0xb2,0x9b,0x25,0x48,0x0d,0x8c,0x50,0xef,0x55,0x02,0xb2,0x6b,0xab,0x5c,0x20,0x5b,0x24, - 0x15,0x40,0x8c,0x05,0xb9,0xad,0xb3,0x11,0x32,0xf2,0xa4,0x76,0xd0,0x5a,0x5f,0xc2,0x18,0xef,0xdb,0x06, - 0x3e,0xe1,0xb1,0x96,0xc7,0x5d,0xb4,0x28,0x0c,0x84,0x77,0x43,0xd7,0x8d,0x3b,0xed,0x46,0x4d,0x8e,0xb5, - 0x4f,0x6d,0x6a,0x46,0x48,0x5a,0xbb,0xe0,0xce,0x87,0xc6,0xf1,0x76,0x3c,0x2e,0xc6,0xe5,0xc4,0xb9,0xec, - 0x80,0xb2,0x59,0x70,0x2d,0x6e,0xa8,0xb4,0x6d,0x42,0x1c,0x4d,0x55,0x59,0x23,0xd3,0x58,0x76,0xeb,0xd3, - 0x1b,0x76,0xce,0xb0,0xe6,0xff,0x30,0x4f,0xd0,0x96,0xb5,0xb7,0x4b,0x42,0x3c,0x6e,0x36,0x5e,0x92,0x1d, - 0xfc,0xf8,0xd2,0x63,0x79,0x6e,0x93,0xd7,0xae,0xbf,0xb1,0x45,0x92,0x66,0x71,0x99,0xbc,0xd4,0x61,0xcc, - 0x1d,0x19,0x90,0xa4,0xc3,0x8a,0x32,0x73,0x44,0x3c,0x9c,0x3a,0xd4,0xae,0xac,0x2f,0xe4,0x82,0x4f,0xde, - 0xe6,0xfc,0xbd,0x02,0xab,0x39,0xb0,0xcf,0x9b,0x0d,0x18,0xe5,0xb7,0x3a,0xcb,0x45,0x5a,0xc2,0x15,0x08, - 0xda,0x96,0x27,0x11,0x78,0x1a,0xef,0xd2,0x2c,0x54,0x60,0xd9,0x42,0x23,0x1d,0x5c,0x6d,0xe4,0xf0,0xbd, - 0xc2,0xf2,0xee,0xed,0xc9,0x93,0x69,0x5d,0x0f,0x94,0xf5,0xa1,0x9c,0xcc,0x6e,0xba,0x14,0x72,0x53,0x4c, - 0x0b,0x9d,0xb2,0x07,0x8b,0x44,0xaa,0x6e,0xa9,0x03,0x91,0xb8,0x7b,0x37,0x7c,0xd2,0xf5,0x36,0x27,0x14, - 0x37,0xef,0x20,0xec,0xe5,0x9b,0x3b,0xa9,0xcd,0x2f,0xe0,0x06,0x58,0xbe,0xf0,0xac,0xae,0x26,0xae,0xdd, - 0x05,0x10,0x12,0x94,0x64,0xbe,0x3f,0x68,0x41,0xbe,0xc6,0x2a,0xfe,0x1e,0x06,0x9b,0x6d,0x36,0x85,0x9f, - 0x48,0x85,0x8d,0xed,0x22,0xe1,0xb4,0x8d,0x51,0xfa,0x29,0x9c,0xc6,0xfe,0xf4,0xd4,0x37,0xf7,0x9d,0x99, - 0x6a,0x42,0x4d,0x08,0xf7,0x8d,0x02,0x2a,0x44,0x76,0xb5,0x80,0x24,0x8c,0x55,0x03,0x3c,0xc2,0x92,0x28, - 0x32,0xf5,0x43,0x74,0x7d,0x79,0x11,0x5e,0x6f,0xeb,0x82,0xf4,0xdc,0x2e,0x49,0x49,0xcd,0xa2,0xd7,0x35, - 0x87,0xb7,0x6d,0xf7,0x01,0x75,0x09,0xcc,0xf0,0x47,0x33,0x6d,0x78,0xe9,0x5c,0x01,0xfa,0xb0,0x35,0x87, - 0xcb,0x53,0xd7,0xf5,0xb0,0x0c,0xb6,0x63,0x7b,0x9d,0x1b,0x5f,0xd0,0x52,0xdf,0xb0,0xf5,0x0e,0xe9,0x4b, - 0x0d,0xf6,0xb4,0x3a,0x44,0x43,0x62,0x61,0xa0,0x1a,0xab,0xda,0x79,0x93,0xad,0x72,0x1b,0xed,0x64,0xf7, - 0x77,0x7d,0x21,0x34,0x17,0xba,0x56,0x37,0x73,0xab,0xba,0x41,0x76,0xd0,0xa8,0xac,0x65,0x38,0xc0,0xdc, - 0x9e,0x1b,0xc2,0x24,0x73,0x6c,0x35,0x25,0xa8,0x5d,0x76,0xff,0xe0,0x38,0x90,0xfb,0xe9,0x29,0xe4,0x98, - 0x50,0x90,0xf4,0x3b,0xfa,0xa4,0xda,0xdd,0x69,0xc8,0xb6,0xda,0xe6,0x95,0x22,0x22,0x6c,0xb8,0x04,0xa7, - 0xc9,0x1b,0xec,0x73,0x21,0xdf,0xdb,0x47,0xd5,0x8d,0x10,0x15,0xae,0x41,0x43,0x6b,0x32,0x5c,0xfb,0x86, - 0xf3,0x4e,0xa7,0xc8,0xed,0x22,0xc4,0x08,0xb2,0x13,0xf4,0x76,0xe2,0x4e,0xe0,0x8b,0xad,0xba,0x9e,0x25, - 0xc9,0x4a,0x54,0x93,0x77,0x47,0xa7,0xc5,0x98,0xcd,0xa3,0x7e,0xaf,0x46,0x4d,0xb4,0xd1,0x6a,0xfc,0xb5, - 0x73,0xe2,0x54,0x26,0x96,0xc9,0x45,0x73,0x1e,0x58,0x40,0xe6,0x4c,0x86,0x00,0xbe,0x33,0x1b,0xec,0xd9, - 0x63,0x9f,0xd8,0x5f,0x58,0xb1,0x98,0xaf,0xec,0x97,0xbf,0xd5,0x7f,0x75,0x9d,0x5e,0x10,0xa9,0x9e,0x42, - 0xde,0x2e,0x43,0xf8,0x01,0x15,0xd3,0x7e,0x77,0xfb,0xdc,0x5a,0x04,0x64,0x32,0x7b,0xf3,0x86,0xac,0xb1, - 0x06,0x00,0xfa,0xaa,0x05,0xdc,0x25,0x7b,0x00,0xff,0xa1,0x7d,0x4e,0x7c,0xb8,0x7c,0xf3,0x72,0xc1,0x54, - 0xd3,0xd8,0xfc,0x1f,0xae,0xc4,0xbd,0x68,0x30,0x55,0xc8,0xbc,0x7c,0x60,0xac,0xe6,0xd2,0xbd,0xce,0x5f, - 0x26,0x55,0xc7,0xee,0xc3,0x6a,0xf0,0x7c,0xeb,0xb7,0x7a,0xda,0x2b,0x6e,0xac,0x89,0x91,0x3e,0xd4,0x68, - 0x33,0x77,0x47,0xf9,0x8f,0xed,0x44,0xb3,0x98,0xe9,0x8c,0x46,0x86,0xef,0xed,0x85,0xce,0xe3,0x66,0xef, - 0x6e,0xd4,0x9e,0xcb,0xdc,0x4d,0x83,0x5b,0xdf,0x5b,0xb7,0xcd,0xd5,0x2c,0xd2,0x5d,0xbf,0x43,0x1a,0x20, - 0x7b,0x27,0xc2,0x7e,0x6f,0x6b,0x9d,0x25,0x6e,0xae,0xaa,0xbb,0x17,0x37,0xdc,0x30,0x34,0xb7,0xbc,0x0b, - 0xee,0xef,0x5b,0x5e,0xb3,0x79,0x76,0x4b,0xb7,0x80,0xfd,0x7d,0x95,0xb4,0x36,0xd2,0x6e,0x5d,0x0d,0x98, - 0x7f,0x5f,0x4d,0x8d,0xbd,0xd4,0xaa,0x07,0xca,0x65,0xda,0xab,0x53,0x43,0xd7,0x88,0x98,0xab,0xd4,0xd6, - 0x04,0x03,0x6f,0x2d,0xc7,0xd7,0xd0,0xa0,0x85,0xfe,0x06,0x72,0xe4,0x42,0x9e,0xc9,0xb2,0x31,0x0a,0xa7, - 0x13,0x18,0x6e,0x84,0x59,0xab,0xb1,0xb4,0xfc,0xda,0xa5,0xc4,0x3a,0x5c,0xe2,0xc0,0x68,0xaa,0xf0,0x1d, - 0x94,0xa9,0x1b,0x6a,0x90,0x70,0xed,0x5a,0xbb,0xc5,0x60,0x89,0xe1,0x0d,0x35,0xc9,0xbf,0x83,0x7d,0xa7, - 0x51,0x4d,0x52,0x35,0x29,0xa0,0x44,0xc7,0xdd,0x6d,0x92,0xfd,0x53,0xcb,0x32,0x4c,0xc5,0x60,0x88,0x55, - 0x31,0x4d,0x44,0xe2,0x3d,0x56,0x20,0x70,0xdb,0x70,0xb4,0x53,0xcd,0x25,0x29,0x22,0x85,0x13,0xd7,0xd4, - 0xc8,0xb7,0x35,0x6c,0xe0,0x8e,0x9e,0xd8,0xb4,0x51,0xdd,0x3a,0x9a,0x1a,0x3e,0x60,0x5d,0x5b,0x4f,0xff, - 0x4b,0xe8,0x05,0xec,0xa5,0xc4,0x37,0x81,0xb1,0xe0,0x70,0x9c,0x87,0xbf,0xd6,0xc3,0x87,0xb9,0xa8,0x09, - 0xd1,0xc2,0x11,0x0a,0xd6,0x9c,0x1c,0xae,0x5b,0xf3,0x88,0x82,0x6d,0x18,0x70,0x43,0x4a,0x47,0x99,0x82, - 0x8e,0xb3,0xf8,0x2a,0x38,0xf4,0xff,0x25,0x1c,0x9f,0x5c,0x9d,0x1c,0x9c,0x6e,0x06,0x93,0x7e,0x70,0xb8, - 0xa8,0xb5,0xcd,0xa7,0xd0,0x7c,0x28,0xc1,0xa7,0x96,0xad,0x2b,0x67,0x9e,0x2b,0x51,0xf7,0x28,0xc7,0x53, - 0xc4,0xfb,0x59,0x6b,0xeb,0x6e,0xff,0x4e,0x00,0x67,0x01,0x9a,0xe2,0xb4,0xeb,0xc9,0xbd,0x58,0x52,0x2f, - 0xbc,0x22,0xbe,0xd2,0x42,0x3c,0x3d,0x4b,0x44,0x78,0xd6,0x89,0x42,0x8d,0x87,0xe2,0x1e,0x41,0xd7,0xd2, - 0x80,0x35,0x58,0xfc,0x39,0x47,0x33,0x83,0x16,0xbb,0x3a,0xea,0x7d,0x05,0x85,0x76,0x88,0xdc,0xc4,0xd2, - 0x3b,0x99,0xf5,0x58,0xc5,0x5d,0xfb,0x30,0x5c,0x45,0x75,0x81,0xe1,0x3c,0x5a,0xe9,0xb0,0x29,0xdc,0xb7, - 0x55,0xeb,0xf8,0x43,0x54,0x72,0x11,0xd1,0xaf,0xda,0xd7,0x98,0x4b,0x3d,0x91,0xc4,0xd0,0xf9,0x66,0x98, - 0xce,0xce,0xa3,0x61,0x2e,0xd5,0x1c,0x8a,0x46,0xa3,0xd8,0x9a,0x44,0xaf,0xd5,0x3c,0x08,0xe3,0x9a,0xf5, - 0x6b,0x2e,0x96,0x56,0xb4,0x6d,0x2e,0x57,0x53,0xf0,0x5b,0x23,0xde,0xe6,0x8c,0xda,0x40,0x2c,0xb5,0x16, - 0x50,0x94,0x8c,0x0a,0x6d,0x61,0x86,0x78,0xe9,0xad,0xb6,0xec,0x90,0x77,0x30,0x84,0xd9,0x60,0xee,0x76, - 0x72,0x1b,0x4b,0x14,0xac,0x4a,0x6d,0x3e,0x2b,0x81,0x26,0x40,0x18,0xd1,0x9f,0x8e,0x12,0xc4,0x1d,0x8d, - 0xb3,0xba,0x84,0x0e,0x38,0x3f,0x0d,0xa7,0xed,0x3e,0xed,0x40,0x6a,0x4d,0x21,0x6a,0xff,0x43,0x6d,0x35, - 0xc3,0x83,0x4f,0x87,0xf1,0xc1,0x41,0xef,0xfe,0xd1,0x30,0x80,0xea,0x9f,0xa3,0x92,0x1a,0xf7,0x3f,0x65, - 0x3e,0x7c,0xcf,0xaa,0xd6,0x78,0xfa,0xfa,0x25,0xd5,0xa8,0x4d,0xbb,0x43,0xc8,0x61,0xe9,0x57,0x5a,0x66, - 0x3a,0xb1,0xd1,0xe8,0x6a,0xa8,0xc8,0x94,0xe6,0x3a,0xdb,0x37,0xd9,0x80,0x62,0x3d,0xe1,0x8a,0xa5,0x0c, - 0xf1,0x45,0x79,0x33,0xbc,0xae,0xff,0x38,0xbc,0x6a,0x9d,0x96,0xa5,0x03,0xb2,0x0d,0x65,0xa9,0xca,0x2a, - 0x4b,0xe5,0xb5,0x7d,0xfd,0x2e,0x2c,0x52,0xf7,0x09,0x75,0x14,0xda,0x0f,0x74,0x73,0xda,0x9b,0x38,0xbb, - 0x75,0x6d,0xb0,0x33,0xdf,0xc7,0xd0,0xff,0xe5,0xf9,0x4e,0x5a,0x2a,0xc0,0x10,0x4b,0xe9,0xee,0x0a,0xb4, - 0x06,0x34,0x85,0xba,0xa7,0x05,0x8e,0x10,0xee,0x96,0xde,0x4d,0x1d,0x94,0x26,0x1b,0x65,0xdb,0xe1,0x24, - 0xc6,0x5c,0xa8,0x7d,0x30,0x74,0x60,0x33,0xa3,0x1d,0xb7,0xbb,0x6c,0xc9,0xcd,0xcb,0x06,0x3c,0xa3,0x8f, - 0x84,0xce,0xc5,0xca,0xff,0xec,0x62,0xb9,0xf4,0x7e,0x2a,0x67,0xd6,0x7b,0x56,0x06,0xbd,0xc9,0x55,0xd1, - 0xe2,0x43,0xda,0xa3,0xac,0xcf,0xff,0xd1,0xee,0x91,0x92,0x88,0x7a,0x5f,0x3d,0xbb,0xf6,0xba,0x96,0x0b, - 0xdf,0x34,0xd5,0x90,0x08,0x84,0x9e,0xd7,0xde,0x83,0xd3,0xce,0x09,0xb6,0x56,0x47,0x62,0xbe,0xbb,0x03, - 0x16,0x9f,0x0d,0x4b,0x0d,0x16,0xf1,0xb8,0x74,0xc1,0xa2,0xec,0x7f,0x56,0x6b,0xec,0x8d,0x6a,0xa9,0x58, - 0xca,0x8a,0xd7,0xc7,0x81,0xca,0x7d,0x8d,0x33,0x1c,0x70,0x99,0x0a,0xc5,0x41,0x6d,0x5b,0x78,0x88,0xe9, - 0xc8,0x4b,0xb9,0xc3,0x72,0xce,0xb7,0x60,0xb8,0xd9,0x6b,0x57,0x69,0x79,0x0c,0xc9,0xe4,0x4e,0x7f,0xef, - 0x0c,0x0b,0xdd,0x5f,0xf6,0x8f,0x50,0xf7,0xb7,0xe8,0xdf,0xb1,0x60,0x9c,0xda,0x7e,0x4d,0x75,0xc7,0xd2, - 0x8f,0x85,0x63,0x95,0xd8,0x9e,0x9b,0x40,0x33,0x69,0x7b,0xa6,0xdb,0xa8,0xd7,0x31,0x95,0x16,0x0b,0xb5, - 0x9d,0x5e,0xdf,0x1d,0xe6,0xba,0xd7,0x05,0x6c,0x8c,0xea,0x5e,0xe7,0xfd,0xbb,0xe6,0x8a,0xad,0x85,0xdd, - 0x8a,0xa0,0xc6,0x6c,0x4d,0x00,0x65,0x69,0x12,0xae,0x78,0x26,0x3b,0x4c,0x7e,0x75,0x93,0x8e,0xba,0x6c, - 0x30,0x1c,0x38,0x1f,0x9a,0x84,0xa4,0x55,0x25,0x7d,0x6d,0xe8,0x4e,0x75,0x10,0x8a,0x96,0xf7,0x73,0xa8, - 0x6d,0x42,0x70,0x90,0x3f,0xb6,0x2a,0x2b,0x6f,0xae,0x8c,0x1d,0x64,0x76,0xd4,0xd2,0x96,0xd0,0xec,0x6a, - 0x73,0x7d,0x4c,0x25,0xe7,0x83,0x75,0x95,0x2e,0x07,0xe2,0x13,0xf1,0xc6,0xde,0x76,0x0d,0xbe,0xc9,0x24, - 0x7c,0x60,0xf4,0x2d,0x36,0xe1,0xc6,0x49,0xb8,0xb1,0xd2,0xc6,0x00,0x76,0x6b,0xeb,0x9c,0x8c,0x3f,0x5d, - 0xd9,0x0d,0x93,0xd2,0x3d,0x88,0x9d,0xb9,0x11,0x4d,0x93,0xf4,0x77,0xdb,0x7e,0x07,0x41,0x62,0x88,0x55, - 0x78,0x19,0x4c,0x09,0x60,0x81,0xb4,0x89,0x4a,0x2f,0x03,0xc8,0x3b,0x61,0x6c,0xca,0x97,0x08,0x42,0xcc, - 0xe2,0x3b,0x5c,0x82,0xb9,0x1f,0x77,0xb9,0x04,0xa4,0xc3,0xba,0xa0,0xef,0x9d,0x9e,0x22,0x52,0x82,0x39, - 0x60,0x77,0x05,0xb8,0xe3,0xb5,0xc5,0x5f,0xf0,0xe7,0xf4,0xde,0x8c,0x2c,0x26,0xec,0xd0,0xae,0xf4,0x63, - 0x28,0x1d,0xab,0xa5,0xe6,0x9b,0x77,0x64,0x7c,0xa7,0xb3,0x1d,0x54,0xc0,0xdc,0x87,0xed,0xf8,0x0d,0xd5, - 0x8a,0xc2,0xa2,0xd4,0xe8,0x5e,0x77,0xec,0xcc,0x69,0x7d,0x10,0xb4,0x8f,0xc2,0x1b,0x25,0x36,0x2a,0xbb, - 0xf9,0x6c,0x2c,0xfe,0x2b,0xce,0x46,0x71,0x51,0x98,0xd8,0xb3,0xb1,0x80,0x89,0x7f,0x73,0x5e,0x66,0x9d, - 0xa4,0xc9,0x4d,0x38,0xfd,0xf8,0x66,0x9c,0x7e,0x3c,0xd1,0x86,0x15,0x2e,0xda,0xca,0x77,0xcc,0x94,0x8c, - 0xfd,0xc3,0x68,0x47,0x97,0x1e,0x86,0xda,0x23,0x89,0xfe,0x8c,0x4b,0x7e,0x18,0x16,0x71,0xd4,0x12,0x78, - 0x87,0xe0,0xda,0xf8,0x38,0x73,0xde,0x11,0x97,0x94,0x5e,0x38,0xea,0xaa,0x2f,0x05,0x39,0xe0,0xaa,0x98, - 0x2f,0x65,0xef,0x31,0x5f,0xca,0xc4,0x7c,0x49,0xca,0x04,0xaa,0xe3,0xfb,0xf1,0x44,0xb7,0xc6,0x56,0x4b, - 0x1a,0x1e,0x11,0xdc,0x9e,0x23,0x97,0xb6,0x10,0x8f,0x2b,0x51,0xf8,0x00,0xda,0x69,0xc8,0x14,0x6e,0x44, - 0x3a,0x37,0x54,0xd8,0xc0,0x12,0xed,0x9a,0x3a,0x11,0xce,0x9f,0xaa,0xe8,0x06,0x64,0xd3,0xd5,0xf5,0x9b, - 0x51,0x8d,0xb4,0xfc,0x7f,0x15,0xd1,0xb4,0x6f,0x83,0x6e,0x40,0x33,0x1d,0xd9,0x6a,0x24,0xe3,0x4e,0xe0, - 0x07,0x51,0x4c,0xf6,0x91,0x28,0xa6,0x51,0xe9,0x07,0x11,0x8c,0xe4,0xfe,0x30,0x7a,0x69,0xc9,0x72,0xff, - 0xdb,0x91,0x4b,0xf6,0x61,0xe4,0xd2,0xed,0x5a,0xe9,0xff,0x23,0x97,0x0e,0xe4,0x92,0x59,0xe4,0xa2,0x35, - 0x41,0xc4,0x50,0x40,0x8b,0x80,0x52,0x22,0xf8,0x9c,0x89,0x55,0x3f,0x04,0x34,0xcf,0xf1,0x65,0x9c,0x2e, - 0xe3,0xb3,0x74,0x99,0xe2,0x7b,0x74,0xdd,0x3c,0x2f,0xc3,0x77,0x8d,0x9b,0xc0,0xf0,0x14,0x4b,0xc3,0x1a, - 0xbd,0xcb,0xa5,0x1b,0xb7,0x17,0xbe,0x18,0xce,0x23,0x82,0xc2,0x4b,0x82,0x7d,0x4a,0xba,0x75,0x4b,0x03, - 0xdc,0xb9,0x49,0x31,0x26,0x96,0x03,0x2f,0xe0,0x11,0x55,0xa6,0x1a,0x09,0xc9,0xd4,0xd5,0xdf,0x77,0x54, - 0xba,0xee,0xad,0xb7,0x2f,0xfa,0xab,0xd7,0x04,0xa5,0xe1,0x4d,0x02,0x57,0x64,0x81,0x13,0x9b,0x2c,0x3a, - 0xbf,0xa1,0xca,0xac,0x51,0x65,0xb5,0x5b,0xdf,0xee,0xfd,0x98,0x7b,0xf3,0xf3,0x5f,0x02,0x7e,0x5a,0x6f, - 0xd5,0x58,0x64,0xd7,0xfc,0x14,0xb1,0x2d,0xc4,0x85,0x5a,0xb3,0xaf,0x36,0xad,0x5e,0xb9,0xbc,0xca,0x76, - 0x5b,0x5b,0x45,0xbc,0x7f,0x8c,0xd3,0x3f,0x36,0xc8,0x1d,0x06,0x27,0xed,0x62,0xcb,0x52,0xcb,0xe0,0xa4, - 0xee,0x30,0x53,0xb0,0x65,0x9a,0xcb,0x6f,0x0e,0x33,0x77,0xd8,0xb3,0x1c,0xe3,0xb4,0xd6,0x69,0xf9,0xce, - 0x38,0x55,0x66,0x47,0x5a,0xfc,0x91,0x91,0x26,0x7f,0x7c,0xa4,0x1a,0x59,0x36,0xfb,0x5a,0x30,0xf3,0x94, - 0x28,0xab,0xf7,0x5b,0xec,0xf0,0x8e,0x1f,0xdf,0xab,0xd9,0xff,0x2c,0x8c,0xd5,0x3c,0xb1,0xb1,0xd9,0x9b, - 0x39,0xd0,0xd5,0xc1,0xed,0x7e,0xec,0x38,0x3a,0xf6,0xde,0xff,0xec,0x38,0xb2,0x0f,0x8f,0x03,0x36,0xd7, - 0x6f,0xd3,0xcc,0x3f,0xc3,0xa3,0x35,0xfe,0xf3,0x3d,0xec,0x73,0x8e,0xd0,0x30,0xd5,0x51,0xdd,0xd9,0x71, - 0xd8,0x79,0x1d,0x7f,0xcc,0xbf,0x12,0x37,0x8b,0x57,0x5a,0x6b,0x87,0xfa,0x6b,0x55,0x07,0xc4,0x28,0xea, - 0x29,0x48,0xa1,0x97,0x55,0x41,0x85,0x17,0x84,0x29,0x87,0x85,0xd8,0x47,0x15,0x03,0x1d,0x4d,0x1c,0x98, - 0x51,0xe3,0xba,0xc8,0xfb,0xeb,0xe0,0xee,0xe0,0xae,0xa7,0xba,0x4c,0xb5,0x24,0xd2,0xf3,0xad,0x5b,0x3a, - 0xe2,0xf3,0x4f,0x88,0x41,0x53,0x3f,0x0f,0xd6,0x65,0xe2,0x3f,0x25,0xc4,0xac,0xd5,0x87,0xac,0xb5,0xcb, - 0x75,0x92,0x85,0xd7,0x1c,0x55,0x33,0xf4,0x5e,0x56,0x71,0x5a,0x94,0x9e,0x2a,0xdf,0x95,0x55,0x72,0xf1, - 0xf8,0x11,0xa5,0xf0,0x53,0xef,0xf1,0x23,0x4f,0xcd,0xd3,0xe2,0xe2,0x2a,0x2e,0x92,0x9f,0xa4,0x2f,0xa1, - 0xf7,0xb5,0x4e,0xe8,0xe9,0xde,0x85,0x3d,0x4f,0x4d,0xf3,0xd5,0x3b,0x89,0x9c,0xe1,0x3d,0x34,0x8f,0xbd, - 0xff,0xf8,0xf7,0xde,0x9d,0xa3,0xe3,0xbf,0xf6,0x9e,0xc6,0xc5,0x9b,0xde,0x65,0x9c,0xf5,0x7e,0x48,0xb2, - 0xf2,0x2a,0x5f,0xcf,0x68,0x5b,0x2d,0xf3,0x18,0x1e,0xb7,0x42,0xef,0xc5,0x32,0x81,0xe1,0x20,0x47,0x33, - 0xe8,0xe9,0xd4,0x9e,0x4c,0x94,0x0e,0xf9,0x3e,0x18,0x0c,0x3c,0xc5,0x2b,0xf5,0x25,0x07,0xdd,0x08,0xbd, - 0x07,0x78,0x69,0xa4,0xbd,0x8c,0x2f,0xb9,0x36,0xf9,0xe5,0x12,0x57,0xe9,0x3c,0xa5,0x81,0x55,0xeb,0x32, - 0xbc,0x8e,0xa7,0x70,0x50,0xb9,0xca,0xd3,0xac,0xb2,0x83,0x7e,0xf0,0x02,0x1d,0x9f,0xa5,0x65,0x7c,0x46, - 0x67,0x46,0xe8,0x3d,0xd2,0x4f,0x44,0x2d,0xb0,0xb7,0x8b,0x3c,0x43,0x74,0x3a,0x9b,0xfd,0xe7,0xf4,0xeb, - 0xf4,0x86,0x02,0x2a,0x45,0xa0,0x11,0xef,0xf1,0x0c,0x97,0xb6,0x59,0xfe,0xf2,0x25,0xcf,0x20,0xfd,0xed, - 0xc1,0x34,0x74,0x9e,0xd3,0xa2,0xd1,0xdc,0x4e,0xe3,0x0c,0x01,0x24,0x60,0x6a,0x41,0x85,0x5f,0xd2,0x6b, - 0x6f,0x6a,0xde,0x31,0x81,0x59,0x46,0xc0,0xf5,0x35,0x1d,0x9e,0xf8,0x2c,0xbf,0xbd,0x2a,0xef,0xe9,0x0f, - 0x36,0x07,0xf5,0xeb,0x49,0x5e,0xf2,0x3c,0x9b,0x77,0x9a,0xb6,0xb2,0xe2,0x9e,0xe9,0x3c,0xba,0x77,0xf6, - 0x0d,0xb1,0x39,0x4a,0x3d,0x15,0x55,0x7c,0xf6,0xca,0xae,0x3a,0xa5,0x78,0x4a,0x0f,0xf0,0xa1,0x04,0x78, - 0xe9,0x95,0x3a,0x99,0x8e,0xd2,0x97,0x55,0xb2,0x2a,0x5f,0x15,0x6b,0x64,0x4e,0xaa,0x1e,0x44,0xfb,0x88, - 0x32,0xff,0x8e,0xc6,0x54,0xb0,0x5e,0x7f,0x89,0x0c,0x75,0xd6,0xaf,0xa1,0x6c,0xda,0xce,0x0b,0xd7,0x6a, - 0x97,0xe9,0x6c,0x8d,0x20,0x12,0x34,0xb7,0x44,0x77,0x20,0x78,0x44,0xa3,0x27,0xaf,0x74,0x1a,0xfa,0x72, - 0x91,0x98,0x44,0x7a,0x94,0x84,0xc7,0xb8,0x52,0xc8,0x08,0x53,0x18,0x60,0xa1,0x69,0x85,0xb9,0x4a,0x5c, - 0xf5,0xf0,0xb9,0x67,0xaa,0xec,0x69,0x13,0x92,0x5e,0x9c,0x71,0xfb,0x28,0xd3,0xab,0xa7,0x6d,0x20,0xb5, - 0x3d,0xcb,0x39,0x22,0xb1,0xf7,0x2c,0x6f,0x95,0xd6,0x3b,0xab,0xf7,0x2e,0xa9,0x24,0xe7,0xd7,0xe9,0xdb, - 0x64,0x86,0x6e,0x00,0xe6,0xdf,0x62,0x39,0x6c,0x97,0x5e,0xae,0xb3,0x22,0xe5,0xb1,0xca,0x83,0x4d,0x2d, - 0xd1,0x4d,0xf9,0x35,0xa3,0xb9,0xd0,0x83,0xc1,0x4d,0xda,0x45,0x9a,0xad,0xab,0x84,0x06,0x7a,0x91,0xa3, - 0x4b,0x7a,0xa8,0x4f,0xf9,0xc5,0xdb,0x3a,0x6b,0xec,0x4e,0x4f,0xbd,0xd2,0xf5,0x62,0xd5,0x8b,0xcf,0x97, - 0x0f,0x49,0xc5,0xd3,0xe7,0xc2,0xb9,0xf7,0x55,0x06,0xf0,0xec,0x49,0x5a,0x8f,0x13,0x1b,0x39,0xbe,0xe5, - 0x5c,0x0f,0x96,0xcb,0xfc,0xaa,0x94,0x15,0xd5,0xe6,0xcd,0xce,0x9c,0xf5,0xe6,0x45,0x7e,0xd1,0x7b,0x97, - 0xaf,0x0b,0x9a,0x9e,0xcb,0x74,0x9a,0x00,0x24,0x81,0x9f,0x7b,0x82,0x33,0xb4,0x73,0x16,0x2e,0xde,0xd8, - 0xb4,0xbd,0xd5,0xba,0x58,0xe5,0x65,0x52,0x0e,0x7a,0xaf,0xce,0x13,0x93,0xbb,0x99,0x85,0x6a,0xd1,0xd4, - 0x22,0xd5,0x40,0xef,0xe7,0x55,0xb5,0x0a,0x0f,0x0f,0x8f,0xbf,0xb8,0x33,0x38,0xfe,0xfc,0x6f,0x83,0xe3, - 0xc1,0xa7,0x87,0xbd,0xab,0xf3,0x24,0x43,0xfb,0x3d,0x20,0x1c,0x0b,0xd0,0xe8,0x45,0x5a,0x51,0xd5,0x4c, - 0xef,0x54,0xbd,0x7c,0x3e,0xef,0xc5,0x65,0xaf,0xcc,0xe1,0xee,0xa2,0xec,0xe9,0xfd,0x8b,0xce,0x25,0x68, - 0xc5,0x34,0x9b,0xcc,0x14,0x3e,0x53,0x01,0x4a,0x64,0xb3,0xed,0x64,0x8a,0x54,0xac,0x4c,0x9c,0xbd,0x23, - 0x24,0xf4,0x6e,0xd0,0xfb,0x85,0x1a,0xc3,0xe6,0x8c,0x97,0xf4,0x5a,0xf6,0x2c,0x31,0xd8,0x13,0xb4,0xdd, - 0x03,0xbf,0x82,0xde,0x9e,0xbd,0xeb,0x41,0x6f,0x0b,0xe8,0xaa,0x3a,0x6f,0x4e,0x73,0x4f,0x47,0x07,0x5a, - 0x67,0xc4,0xb2,0xf2,0xd7,0x27,0x5f,0x3d,0xea,0x2d,0x81,0x14,0xcb,0xde,0x7a,0x45,0x80,0xe8,0x62,0x18, - 0xb3,0x50,0x6e,0xaf,0x1b,0x39,0x64,0xa1,0xf4,0x92,0x77,0xcd,0x3e,0xcd,0x06,0x2f,0x51,0x7e,0x95,0xf5, - 0x80,0xa7,0x7a,0x05,0x3b,0x2f,0x1a,0xf4,0xf4,0x7e,0xe1,0x98,0x54,0xdc,0x0f,0x60,0x25,0x45,0x20,0x53, - 0x12,0x1e,0x2e,0x66,0x34,0xe8,0x19,0x9d,0xb0,0x05,0x7d,0x69,0x2f,0xdf,0x59,0x42,0x60,0x81,0x8e,0x96, - 0xe9,0x4c,0x90,0x99,0xa7,0x4c,0x31,0xda,0x87,0xfa,0x89,0x90,0xce,0xf9,0x74,0x15,0x7a,0x3f,0x52,0x23, - 0x8f,0xbe,0x7d,0xf8,0x42,0xde,0x35,0x60,0xad,0xab,0xfc,0x02,0x5e,0x83,0xb0,0xf1,0x69,0xda,0xcb,0x74, - 0x91,0x95,0xd8,0x9a,0x8f,0x5f,0xf4,0x74,0x78,0xeb,0x6e,0x60,0x92,0x25,0x20,0x4a,0xe1,0x8c,0xa6,0x05, - 0x8b,0x42,0x13,0x4a,0x19,0xdf,0x24,0xc9,0x4a,0x2f,0x04,0x66,0x76,0x89,0xf2,0x00,0x0c,0x58,0x57,0x10, - 0x98,0x10,0x32,0xa0,0xb7,0xdb,0x04,0x25,0xb3,0x1c,0x47,0x00,0x61,0xe5,0x95,0x6e,0x86,0x50,0xb3,0x6d, - 0x92,0x46,0xb4,0x3e,0x23,0xbc,0x70,0x11,0x97,0x6f,0xb0,0x51,0xf1,0xdc,0xc3,0x8b,0xa7,0x16,0x74,0x12, - 0xd3,0x92,0x87,0xde,0x37,0xf2,0xe0,0xa9,0x73,0xc2,0xab,0x62,0xea,0xf6,0xad,0x7e,0xaa,0xd3,0x5e,0xd4, - 0xae,0x59,0x09,0xd9,0x6a,0xeb,0x36,0xaa,0x69,0x6a,0x5b,0xda,0xea,0xf3,0xb4,0x81,0x73,0x39,0x85,0x4e, - 0x89,0x6a,0xe5,0xa0,0xb9,0x1e,0xb4,0xcb,0x88,0xd5,0xcd,0xe8,0x44,0xe1,0xd9,0xf7,0x9f,0xbd,0x7a,0x11, - 0xd0,0x84,0x13,0x4b,0xa3,0xb3,0x7d,0x1b,0x17,0x33,0x3e,0x74,0x29,0x2d,0x47,0x8c,0xbf,0x8b,0x78,0x65, - 0xbe,0x7d,0x93,0xe7,0x0b,0x82,0x82,0xa7,0x94,0xd2,0x7b,0xf0,0xe2,0x71,0x7d,0x64,0xeb,0xef,0xf6,0xc0, - 0x16,0x52,0x85,0x5b,0x7f,0x42,0xcc,0x97,0x47,0x7f,0xd2,0x8a,0x8f,0x63,0xa4,0xe0,0xfc,0x7c,0x92,0x67, - 0x0b,0x27,0x89,0x88,0x55,0x46,0x46,0xde,0x37,0x34,0x4b,0x4b,0x9d,0xbb,0x77,0x48,0x07,0x8e,0xce,0x26, - 0xf8,0x61,0xa9,0xf3,0x35,0x0a,0xbd,0x4c,0xe2,0x62,0x7a,0x8e,0xd3,0x00,0xbf,0x3c,0x18,0xda,0x05,0x74, - 0xea,0x7a,0x0f,0x64,0xab,0xbc,0xe0,0xad,0x22,0xc7,0x0d,0x6f,0x10,0xca,0xd1,0xf3,0xfb,0x44,0xe8,0x5c, - 0x06,0x26,0xfb,0xcb,0x57,0x0f,0xe4,0xa0,0xc2,0xac,0x3c,0xc5,0x76,0x7e,0x4f,0xfe,0x07,0x2f,0x0c,0x81, - 0xa0,0x77,0x54,0xa3,0x21,0xbd,0x27,0xb9,0xd0,0x8a,0x58,0x74,0xea,0xf5,0x95,0x94,0x7b,0xf1,0xf3,0xd3, - 0x47,0x05,0x91,0x75,0xc5,0xcb,0x47,0xd4,0xda,0x8b,0x87,0x0f,0xbe,0xf8,0xfc,0x6f,0x9f,0xf5,0x28,0xb5, - 0x37,0xe3,0xe4,0x1e,0xa5,0x4b,0x39,0x68,0x18,0xb6,0xcb,0x3c,0x7c,0xd2,0x5d,0xe6,0xe1,0x13,0x29,0x33, - 0x85,0x3b,0x44,0x14,0xba,0xba,0x78,0x60,0xe0,0xb1,0x23,0xff,0xe3,0xff,0xf8,0xdf,0x0f,0x6b,0x20,0xa5, - 0xcc,0x5f,0xe3,0x34,0x4b,0xb2,0xe9,0xbb,0xce,0xec,0x73,0xf3,0x55,0x20,0x81,0x96,0xfd,0xfb,0xe4,0xdd, - 0x0e,0x28,0xd0,0xa6,0x69,0x64,0x38,0xe7,0x9d,0xf9,0x7c,0x25,0xf6,0x9a,0x83,0x9e,0x3e,0xf3,0x69,0x97, - 0xe5,0x19,0xfd,0x21,0x5a,0x71,0xc6,0xa8,0xdc,0x5c,0xa5,0x02,0xb9,0xc5,0x76,0x79,0x7b,0x80,0x7b,0x41, - 0xbd,0xb7,0xcb,0x4e,0x70,0x50,0xb4,0x11,0xd3,0xe9,0x39,0xef,0xcb,0xab,0x94,0xe6,0xf8,0x82,0x76,0x0b, - 0x21,0xbe,0x37,0x89,0x69,0x62,0x96,0xf7,0xe0,0x56,0x73,0x40,0x78,0x8a,0x3e,0x13,0x0e,0x79,0xd3,0x43, - 0x38,0x2b,0x02,0x69,0xa0,0x06,0xdd,0x65,0x85,0xc5,0xea,0xe9,0xb1,0x5c,0x30,0x2d,0x09,0x49,0x50,0x45, - 0xd0,0x2c,0x88,0x8e,0x07,0x5f,0x56,0x03,0x10,0x36,0xd9,0xd2,0xd2,0x68,0xaf,0x8a,0x78,0xb5,0x43,0xc5, - 0x7e,0x1c,0x19,0x9b,0xfc,0x73,0x54,0xec,0x57,0x74,0x4a,0xe5,0x8b,0x24,0x3b,0xa3,0xb1,0xf6,0x16,0x09, - 0xa1,0x31,0x3a,0x6a,0xce,0x92,0xdf,0xd3,0x05,0x51,0xdc,0xd8,0x3a,0x33,0xca,0x70,0xc9,0x24,0x9f,0xc5, - 0xb2,0xc9,0x2e,0x61,0xfb,0x2a,0x4f,0x80,0x64,0x93,0xac,0x93,0xb8,0xfd,0xd2,0xd6,0x97,0xaf,0x68,0x75, - 0xe2,0xec,0x4f,0xd1,0xb9,0x3f,0xa6,0x15,0xd1,0xff,0xd3,0xf3,0x98,0x16,0xe5,0xe3,0x89,0xdd,0x66,0x29, - 0x4d,0xf1,0xbe,0xa4,0x4e,0xac,0x60,0x8d,0x3d,0x6b,0xd3,0xbd,0x29,0x75,0x72,0x91,0x5c,0xe6,0xc4,0xae, - 0x64,0xdd,0xb4,0x6f,0x3c,0x27,0xa2,0x2b,0xcf,0x76,0x49,0xdf,0xef,0xe9,0xe3,0x22,0xc1,0x74,0x25,0x85, - 0x76,0xcb,0x4c,0x68,0xf5,0x0d,0xea,0x69,0x93,0xc0,0x3f,0xd5,0x39,0x28,0xf3,0x32,0x2f,0x90,0xa9,0x49, - 0x06,0x3f,0x43,0x4f,0x50,0x93,0x74,0xe5,0x63,0x08,0xe1,0x6f,0xd7,0xe9,0x2c,0x5d,0x24,0x37,0x10,0xc2, - 0x44,0x2f,0x81,0x66,0x4c,0xb0,0xa0,0xb3,0xe4,0xf7,0x64,0x39,0x07,0x8d,0xa1,0xa9,0xdd,0x24,0xad,0x76, - 0xa8,0xe1,0x57,0x92,0xd7,0x90,0xc1,0x49,0xb2,0x64,0x13,0xf6,0x84,0xea,0xc9,0xfe,0x18,0x3d,0xfc,0x7a, - 0xd6,0xa6,0x87,0x9f,0x30,0x2c,0xf4,0x08,0x2d,0xf5,0x2e,0x73,0xec,0x5b,0xca,0x53,0x13,0xb4,0x49,0x52, - 0xd3,0xc1,0x97,0x8d,0xa9,0x4a,0xe0,0x8f,0x28,0x2d,0x77,0x28,0xe2,0x85,0xcc,0x7c,0xb3,0x9a,0x45,0x62, - 0xe9,0xa7,0xa4,0x98,0xed,0x90,0xc6,0x3f,0xc5,0x25,0xa8,0x71,0xdb,0x3b,0x4b,0x1a,0xff,0x0a,0x97,0x77, - 0xab,0x37,0xf9,0x45,0x59,0x35,0xc9,0x63,0xfe,0x00,0x8d,0xa7,0x45,0x0c,0xfd,0x19,0x97,0x4a,0x7e,0x3d, - 0xab,0xa9,0xe4,0xac,0x45,0x25,0x7f,0x99,0x5c,0x25,0xd0,0x80,0xbf,0x91,0x4e,0xae,0xc1,0xc1,0xae,0xa5, - 0x03,0x21,0xee,0xce,0x6b,0x51,0xca,0x0f,0x5c,0xda,0x8d,0x16,0x47,0xc0,0x9c,0x77,0x61,0x9d,0x4d,0x70, - 0xe7,0xd3,0x38,0x7e,0x53,0xf5,0xce,0x41,0x34,0xd0,0x7e,0x5f,0xa6,0xaf,0x89,0x16,0xbc,0xe0,0x99,0x16, - 0xda,0xd9,0x12,0xa9,0x69,0x82,0xfd,0x1e,0xcf,0xf9,0x1b,0x6d,0x66,0xa2,0xd2,0x69,0x95,0xb2,0x38,0x2e, - 0x18,0x6c,0x7a,0xc0,0x55,0x96,0x7e,0x4b,0x04,0xc2,0x51,0x15,0x41,0x53,0x9d,0x6a,0x27,0x1e,0x4e,0x7d, - 0x7b,0x8f,0x9a,0xa5,0x88,0x12,0xa2,0x2c,0x67,0x49,0x46,0xc8,0xa5,0xc0,0x7e,0x49,0xe3,0x4e,0x12,0x9a, - 0xbe,0x53,0xcb,0xaf,0xdd,0x9e,0x9d,0x27,0x67,0xd8,0x9f,0x17,0x18,0xcc,0xa0,0xf7,0x52,0xc6,0x2b,0xfd, - 0x02,0x95,0x4b,0x94,0x42,0x8a,0xbe,0xf2,0x38,0xdd,0x3e,0x10,0xf9,0x8c,0x80,0xc3,0xbf,0xa7,0x1a,0xf8, - 0x65,0xa3,0x9f,0x25,0x97,0x49,0x4a,0xd4,0xed,0x0c,0x20,0xd5,0xfb,0x2e,0xe9,0xbd,0x21,0xc2,0xd7,0xad, - 0x2d,0xcf,0xdf,0xb8,0xd3,0x4a,0x87,0x00,0xc1,0x2a,0xe0,0xd6,0x1e,0xd1,0x32,0xf5,0x44,0xca,0xad,0x30, - 0xa6,0x59,0xb1,0x7e,0x83,0xe9,0xa8,0xf2,0x0a,0x5d,0x9f,0x09,0xfd,0x1c,0x03,0x31,0xd0,0x24,0xb6,0xc9, - 0x67,0x67,0x8d,0x81,0x1b,0x99,0x00,0xd6,0x08,0xc3,0xc9,0x27,0xcb,0xa7,0xf3,0xee,0x2e,0x01,0x2a,0xa7, - 0x29,0x4a,0x68,0xe3,0xb7,0x68,0xe8,0x9f,0xd6,0xcb,0xde,0x79,0xca,0xb8,0x8a,0xce,0x5d,0xcc,0x08,0xa3, - 0x38,0xca,0x76,0x15,0x4f,0xcf,0xab,0xab,0x1c,0x84,0x74,0x4a,0x53,0x93,0xd4,0xd8,0x9d,0x36,0x4a,0x8f, - 0xe3,0x84,0xae,0x79,0x5a,0x7b,0x39,0xed,0x39,0xa0,0x14,0x9e,0x8e,0xf2,0x46,0xb2,0xfa,0x67,0x5b,0xa1, - 0x21,0xac,0xbf,0x49,0xce,0x8a,0x35,0x1d,0x29,0x35,0x71,0x7d,0xde,0x20,0xae,0x69,0x4e,0x19,0xc0,0x98, - 0xc0,0x25,0xd2,0x81,0xa6,0x2c,0xb9,0x4a,0x5f,0xff,0x0e,0x98,0x8b,0xb3,0x9d,0x61,0xd2,0xb1,0x4b,0x00, - 0x48,0x85,0xd2,0xd7,0x19,0xc3,0x2e,0x1d,0xd2,0x18,0xb6,0xb3,0x56,0x28,0x06,0x25,0x2a,0x1a,0x10,0xfd, - 0xf9,0x3d,0x7d,0x8d,0xef,0x57,0x09,0x0d,0xfb,0x0a,0xb0,0x4b,0x2f,0x17,0x49,0xa2,0x8f,0xb6,0x33,0xf8, - 0x4c,0xd8,0x25,0xb4,0x8b,0xe4,0x66,0x32,0x3b,0x29,0x3e,0x86,0xd0,0x8e,0x2f,0x6e,0x20,0xb4,0x5f,0xe2, - 0xb0,0xa1,0x7e,0xcc,0x0c,0xa9,0x8d,0xb6,0x6e,0x24,0xb4,0xdb,0x94,0x36,0x61,0x97,0x06,0xa5,0x9d,0xbc, - 0x8f,0xd0,0x8e,0x41,0x02,0xd1,0x3e,0x20,0xb8,0x62,0x54,0xf4,0x27,0xe8,0xed,0xb3,0xf4,0xf5,0x55,0x52, - 0x30,0x24,0x1a,0x92,0xfb,0x4b,0x82,0x8d,0x59,0x95,0x2c,0x08,0x1b,0xcc,0x1c,0xb2,0x1b,0x02,0x4c,0x37, - 0xd1,0x12,0xde,0x6e,0x7e,0x50,0x5a,0x75,0x46,0x5a,0xaf,0xf3,0x18,0xbb,0x89,0xf6,0xcc,0x59,0x5c,0x12, - 0x36,0x00,0x7d,0x21,0xb4,0x5a,0xd2,0x49,0x89,0xff,0x9a,0x27,0xdc,0x97,0x3f,0x4f,0x89,0xf3,0xc6,0xf8, - 0x28,0x0a,0xbc,0x51,0xb3,0xbb,0xf7,0x79,0x8f,0x73,0xb9,0x18,0xa8,0x68,0x4e,0xc0,0x16,0x2f,0xfe,0x27, - 0xe8,0xf0,0x37,0xcb,0xfc,0xff,0x45,0x32,0x9c,0xe8,0x01,0xda,0x95,0xb4,0xe5,0xe5,0x24,0x4f,0x71,0xb0, - 0x40,0x6a,0x4d,0xe8,0x04,0x38,0x79,0x21,0x08,0xa0,0x32,0xa7,0x8c,0x5e,0x5f,0x60,0x49,0x6a,0xbf,0x62, - 0x00,0xe0,0x43,0x05,0x1f,0xcf,0x04,0x58,0x0e,0x9a,0x80,0x42,0x44,0xb9,0xe0,0xff,0xab,0xe6,0xde,0xbf, - 0x40,0xb1,0xff,0xfc,0xf7,0xff,0xfc,0xf7,0x0c,0xbc,0x75,0xd1,0xcb,0x72,0x22,0x7b,0xf8,0x68,0xa0,0x0e, - 0x11,0xd8,0x56,0x8c,0xb7,0x7f,0x17,0xbc,0x67,0x29,0x73,0xa0,0x58,0xc2,0x68,0x6f,0x68,0x77,0x30,0xdd, - 0xa1,0x87,0xfa,0x9a,0xfb,0xf3,0x3b,0x41,0x18,0x93,0x02,0x72,0x32,0xf2,0xe9,0x40,0x18,0x89,0x20,0x26, - 0x66,0x62,0x7d,0x5b,0xbb,0xd5,0xe5,0x08,0x56,0x0f,0x56,0x2b,0x2b,0xf5,0xc7,0x45,0xb4,0xf6,0xab,0x58, - 0x1b,0x28,0x12,0xe5,0x4b,0xd8,0x22,0x2f,0x06,0x4b,0x3a,0x77,0xd6,0xf1,0x22,0x69,0x5b,0x0b,0x7a,0xbc, - 0x37,0x8d,0xed,0xa1,0xb5,0xd5,0x08,0x86,0xba,0x3a,0xff,0x3a,0x59,0x86,0xde,0x5f,0xe8,0x00,0x26,0x3c, - 0x45,0x55,0x87,0x95,0x62,0x5b,0xbe,0x6b,0x43,0xba,0xef,0x1d,0xa9,0x52,0xe8,0xeb,0xbd,0x63,0xfd,0xc4, - 0xd4,0x1b,0x5e,0x75,0x9e,0xc7,0x74,0xb8,0x4c,0xd1,0x8b,0xd0,0xdb,0x78,0x6a,0xbd,0x42,0xf2,0x8b,0x22, - 0x5f,0x30,0x10,0x51,0xb6,0x98,0x2f,0x05,0x5e,0xc5,0x67,0xf0,0x60,0x2b,0x34,0xa3,0x11,0x8d,0x5f,0xd7, - 0xcc,0x88,0xae,0x8c,0x69,0x76,0xf3,0xd9,0x4d,0xdc,0x36,0x29,0xf9,0x55,0x78,0x9d,0x64,0x42,0x7c,0x53, - 0x13,0x29,0x9d,0x05,0x47,0x03,0xfe,0xbf,0x26,0xd9,0x1b,0x39,0x34,0x59,0x7b,0xd4,0xcc,0x4a,0x79,0x79, - 0xf3,0x53,0x1b,0x16,0xa7,0x50,0x66,0x87,0xe8,0x04,0xe1,0xe5,0xd6,0xc3,0xac,0x5f,0x2a,0x64,0x17,0x7d, - 0x3a,0xaa,0xf3,0x8e,0xe1,0x65,0xc7,0xa5,0xbc,0x2c,0xd6,0x66,0xc5,0x47,0x97,0xa2,0xc2,0xa4,0x56,0xb6, - 0x35,0x3e,0xec,0x38,0x8f,0x3d,0xea,0xf8,0x8d,0x8f,0xb8,0x3d,0xee,0x31,0xbf,0x3b,0x47,0x06,0xbf,0x9b, - 0x73,0x82,0x0d,0x2b,0x2c,0x8e,0xa7,0xc3,0x49,0x3e,0x2f,0x69,0xcd,0xa4,0x56,0xc2,0x2f,0x94,0x9e,0xcc, - 0x08,0xa5,0xc9,0x97,0x64,0x06,0x74,0x25,0xdd,0x5a,0x69,0x94,0x24,0x59,0xaf,0x2e,0x80,0x5c,0xec,0x33, - 0x21,0x0d,0xa9,0xdd,0x41,0x0b,0xe6,0x63,0xbd,0xf3,0x39,0xc5,0xdd,0xdf,0xb4,0x06,0x86,0xca,0xc7,0x00, - 0xcc,0x33,0x1b,0x9c,0x84,0x18,0x3b,0x3e,0x8c,0x27,0x6a,0x69,0xf1,0x38,0x88,0x56,0xf6,0xa2,0xb0,0x13, - 0xa6,0x48,0x9b,0x7b,0x5b,0xf7,0xe2,0x4c,0xb9,0xc2,0x9b,0x90,0xef,0xf1,0xa3,0x67,0xec,0xbe,0xf5,0xa5, - 0x8e,0xa9,0x13,0xe6,0x18,0xe7,0xc6,0xe2,0xe2,0x58,0x62,0x5e,0x25,0x03,0x0b,0x8b,0x4e,0x20,0xc1,0x27, - 0x2d,0x30,0x86,0x96,0xe6,0x40,0x64,0x41,0x40,0xe8,0x02,0x72,0x9c,0xa8,0xf9,0x3d,0x1e,0x0c,0x1b,0x9c, - 0xe2,0x32,0x1d,0x21,0x27,0x9c,0x8d,0x01,0xb0,0x28,0x90,0x1a,0xbf,0x4d,0x73,0xb6,0xe6,0xf3,0xbd,0xc3, - 0x78,0x95,0x1e,0x6a,0xa0,0xf6,0x82,0x41,0x75,0x9e,0x64,0x0d,0xff,0x3b,0xbb,0x7e,0xac,0xb5,0x53,0x22, - 0xea,0xb1,0xb9,0xe3,0x92,0xa4,0x60,0x1b,0x0c,0xc4,0x0d,0x9b,0x5b,0xde,0x78,0xcf,0x5e,0xe6,0x0b,0x28, - 0xb8,0x04,0xba,0x6d,0xb8,0x07,0x1e,0xb7,0xbb,0x51,0x43,0xe8,0x1f,0xed,0x49,0x5d,0xf2,0xcf,0x74,0xa6, - 0xee,0x81,0x40,0xea,0x1f,0x6d,0x5d,0x4a,0xfd,0x73,0x2d,0x9b,0xbd,0x7a,0xc8,0x37,0x15,0x7f,0xb0,0x03, - 0xa6,0xf0,0x00,0x85,0xff,0xc9,0x19,0xe0,0x7b,0xa1,0x8e,0xf6,0x77,0xec,0xb0,0x74,0x33,0xee,0xe5,0xee, - 0x1e,0x5c,0x16,0x01,0xe7,0xb1,0xc7,0x1d,0xb6,0xfe,0x38,0x1a,0xc6,0xf7,0xb4,0x53,0x26,0x6d,0x1e,0x1c, - 0xd7,0x51,0x61,0xe4,0x03,0x94,0xb6,0xd8,0xf1,0x44,0x31,0x2a,0xa2,0x32,0x2c,0xf7,0x24,0x48,0x74,0xc6, - 0xd1,0xbc,0xf3,0x86,0x47,0xa1,0x12,0xf1,0x12,0xfa,0x51,0xb9,0xc5,0xfe,0x48,0x38,0xee,0x45,0x32,0x68, - 0xec,0x61,0x71,0xc9,0x3d,0x5f,0xe6,0x70,0x70,0x74,0x68,0x7c,0x5d,0x05,0x4e,0xb6,0x08,0x6a,0x21,0x13, - 0x3d,0x42,0x19,0x7e,0xb9,0xa2,0x0d,0x3e,0x73,0xbd,0x4a,0x65,0x1c,0x82,0xb7,0xca,0x57,0x9d,0x3b,0x50, - 0xe3,0x7e,0xea,0xe0,0x16,0x36,0xae,0xfa,0xda,0x17,0xa8,0x7f,0xb5,0x7c,0x57,0x5f,0xf0,0xdc,0x70,0x3f, - 0x5e,0xe9,0x3d,0xc9,0x0e,0xc8,0xe4,0x11,0x33,0x27,0x5d,0x41,0x80,0xef,0xdd,0xed,0xa0,0x6a,0x8c,0x5d, - 0x39,0xc0,0x3e,0x30,0xa9,0x0d,0x14,0xde,0xc8,0xe1,0x7c,0xb0,0x88,0xbd,0x91,0x41,0x27,0x0a,0xaa,0x6f, - 0x7e,0xa1,0x94,0x1a,0xef,0x37,0x3e,0x99,0x54,0x39,0x08,0x1a,0x9f,0x90,0x82,0x73,0xa1,0x91,0x98,0xae, - 0xdc,0x23,0xa2,0xd9,0x8a,0x4d,0xb7,0xa7,0x46,0xe3,0xbb,0x4e,0xdc,0x76,0x80,0xe4,0x47,0x41,0x78,0xab, - 0x18,0x2c,0xb6,0xcd,0x9c,0xcb,0xea,0xf1,0xa2,0x89,0x74,0xff,0x9f,0x5c,0x30,0x8d,0x3d,0x10,0xee,0x95, - 0x9f,0xfe,0xdb,0xba,0xdc,0x79,0x36,0xdc,0xd8,0x79,0x0d,0xad,0x74,0x58,0x2c,0x12,0xda,0x98,0x36,0x41, - 0x8e,0x83,0x32,0xa9,0x58,0x2a,0x45,0x1b,0xcc,0x6d,0x52,0x3b,0xb2,0x6a,0x96,0xee,0xf7,0x55,0x33,0x41, - 0xfb,0x35,0x3e,0x0e,0x6d,0xb2,0xed,0x4e,0xe4,0x1d,0x7a,0x8e,0xcf,0xaa,0xde,0x9d,0xce,0x3c,0x07,0x8d, - 0x3c,0x77,0x3b,0xf3,0x9c,0x9c,0x34,0x32,0x7d,0xda,0x99,0x69,0xe3,0xa9,0xf6,0x48,0x89,0xe6,0xb9,0xf3, - 0xd9,0x11,0x4f,0xd7,0xee,0x3e,0x76,0x67,0x6b,0xba,0x24,0x4a,0xcb,0x4e,0x82,0x56,0x09,0xac,0xa7,0x88, - 0x6a,0x20,0xfc,0x68,0xce,0x5b,0x70,0x65,0x42,0xb0,0x75,0x79,0x1b,0xa8,0x09,0x41,0xb3,0xb1,0x06,0x9a, - 0x42,0x33,0x26,0x6d,0xae,0x90,0xd3,0x33,0xfe,0xc2,0x6e,0x2a,0x2b,0xa4,0xa1,0x9e,0x65,0xed,0xbd,0xf9, - 0x8e,0xf1,0xd2,0x6c,0x36,0x49,0xb6,0xd0,0xfe,0x9f,0xb5,0x77,0x69,0xed,0x4c,0xda,0xba,0x88,0x16,0x95, - 0x4b,0x33,0xc3,0xcd,0xc2,0xe8,0x83,0xf8,0x84,0x0e,0x8d,0x9f,0xc7,0xae,0x7e,0x6e,0xbb,0xa7,0xe0,0x15, - 0x22,0xc7,0xfd,0xa9,0x69,0xe8,0x31,0x95,0xb4,0x9b,0x0d,0xf2,0x1e,0x43,0xcb,0xcc,0xbc,0xe0,0x0f,0xce, - 0xcf,0x47,0xd4,0x0d,0xf1,0x37,0xd5,0xab,0xe7,0xeb,0x23,0x0a,0x88,0x74,0xdc,0x14,0xb9,0xf3,0x31,0x45, - 0x1a,0x42,0x73,0x53,0xf2,0x6e,0xe8,0xaa,0x27,0x76,0x8c,0x25,0x5d,0x19,0xf8,0xfe,0x88,0x26,0x1a,0x92, - 0x77,0xd3,0xc4,0x67,0x7f,0xa0,0xa4,0x96,0xc4,0x9b,0xa2,0xed,0xe5,0xff,0xd0,0xfa,0xd4,0xa0,0x01,0xe7, - 0x89,0x6d,0x8a,0xf4,0x03,0x78,0x74,0x44,0x38,0x07,0x3b,0x2b,0x5f,0xc3,0x25,0x77,0xbb,0xb0,0xfa,0x2c, - 0xb9,0x1b,0x84,0x37,0xd3,0x86,0x87,0x9a,0x53,0x6b,0xa3,0xc9,0xce,0xe8,0x34,0x86,0x46,0xaa,0x9c,0x19, - 0x8f,0x92,0x3f,0x40,0x20,0xed,0xe0,0xe2,0x0f,0xf7,0x1d,0x0a,0xf8,0xc2,0x6a,0x1a,0x71,0xd2,0x0d,0xf3, - 0xc1,0xdb,0x45,0xcf,0x89,0x8b,0xe4,0x81,0xa3,0x9b,0xbc,0x6a,0x74,0xa4,0x1d,0xcc,0x83,0x37,0x86,0x02, - 0x2e,0xc4,0xfe,0x43,0x13,0xb2,0xc8,0xf7,0xe6,0x29,0x14,0x98,0x2c,0x23,0x42,0xd3,0xa6,0x83,0x1c,0x7d, - 0xf9,0xee,0x31,0x7f,0x96,0x7e,0x7c,0x8d,0x6c,0xec,0x18,0x35,0x29,0xa1,0x7a,0xab,0xd9,0x13,0x66,0x25, - 0x69,0x40,0xe1,0xdd,0xcf,0x93,0x4f,0x55,0x9e,0xfd,0xd8,0xe4,0x93,0x9b,0xee,0x4e,0x5a,0x1d,0x63,0x72, - 0xab,0x80,0xa2,0x94,0x7f,0x7c,0x74,0xf4,0x89,0xd0,0x46,0xc9,0xec,0x10,0x6e,0xd1,0xab,0x18,0x5e,0x67, - 0x87,0x3b,0xe7,0xa4,0xe9,0x8e,0xc7,0x4a,0xed,0xbb,0x87,0xa4,0xbb,0x06,0x9e,0xf8,0x50,0xe9,0x95,0xf0, - 0x34,0xff,0x27,0x97,0x6c,0xa7,0xd3,0x60,0x96,0xeb,0x23,0xf5,0xc3,0xf3,0x46,0x73,0x46,0xe5,0x08,0x16, - 0xb1,0xb6,0x5b,0x61,0x12,0x35,0x93,0xf5,0xa1,0x53,0x17,0x7e,0x9f,0x3b,0x78,0xb3,0xcd,0x66,0x4f,0x82, - 0xec,0xb4,0xd9,0x33,0x86,0xd5,0x1d,0x9e,0xcd,0x01,0xba,0xd6,0xb8,0x30,0x39,0x9c,0x11,0x5e,0x66,0xee, - 0x1c,0x1d,0x05,0x81,0xd9,0x8e,0xc2,0xe3,0xde,0x08,0x79,0x8d,0x56,0x04,0xe6,0xba,0x58,0xc5,0xce,0xde, - 0x4b,0x76,0x43,0x50,0xdf,0x10,0x8a,0x9c,0x67,0xc9,0x0d,0x48,0xde,0x74,0x0e,0x5a,0x35,0xe9,0xf6,0x6d, - 0x30,0xd4,0x45,0xa2,0x44,0x5c,0x31,0xe8,0xf0,0x88,0xec,0xcf,0xe0,0xc6,0x3a,0x8b,0x7e,0xa4,0x53,0xc7, - 0x99,0x8e,0x7a,0x3d,0xac,0x6e,0xe6,0x08,0x8a,0xc3,0x66,0x1d,0x12,0x5f,0x2f,0x35,0x2e,0x0a,0x6f,0x6c, - 0x26,0xd5,0x8e,0x9e,0x5a,0x4d,0xa1,0xcf,0x37,0x30,0xde,0xbb,0xc4,0xa1,0x28,0xdc,0x5d,0xb7,0xa4,0x34, - 0xc7,0xc9,0x5d,0x71,0x6d,0x8a,0xd8,0x1d,0xff,0xe5,0x04,0xa3,0x5e,0xdc,0x63,0xa0,0x24,0x11,0x27,0x59, - 0x59,0xd2,0xcd,0x70,0x2b,0x19,0x04,0x10,0xdb,0x22,0xa8,0x9a,0xee,0x65,0xd4,0x8c,0x4b,0xab,0x32,0x3c, - 0x3c,0x84,0x84,0x65,0xb0,0x60,0x79,0x22,0x8d,0xb5,0x84,0x32,0x2d,0xa7,0xf1,0xc8,0x17,0x49,0x8e,0xd0, - 0x67,0x87,0xaf,0x4b,0xe6,0x64,0x74,0xa0,0xa6,0x6b,0x73,0xf3,0x50,0x37,0xa9,0xde,0x24,0x20,0xfe,0x85, - 0x78,0x1e,0xd4,0x52,0x9b,0xed,0xce,0x08,0x93,0x0e,0x7e,0x54,0xb0,0x3a,0x36,0x2a,0x1d,0x63,0x65,0x00, - 0x2f,0xb2,0x6e,0x82,0xf5,0x7a,0x5c,0xc7,0x02,0x72,0x3f,0xc3,0x1e,0x83,0x3a,0x4a,0xac,0x5c,0xf1,0xce, - 0x76,0x68,0x68,0x3b,0xb3,0x8c,0x2b,0x8e,0x7d,0x5c,0xa9,0x3a,0x89,0x90,0x47,0x86,0xbf,0xdb,0x3f,0xbd, - 0x46,0xbb,0xb3,0xcb,0xf4,0xfd,0x56,0xb1,0xc3,0x29,0x9a,0x22,0x23,0xa9,0xba,0x26,0xc0,0x22,0xc2,0xa5, - 0xd8,0xf1,0x66,0xee,0xa2,0x22,0x60,0x00,0x5c,0x92,0xb0,0x1b,0xee,0xa6,0x60,0xeb,0x8f,0x97,0x2f,0xff, - 0x58,0xbb,0xda,0x39,0x97,0xd3,0xbe,0x95,0xac,0xba,0x93,0xd2,0x25,0x08,0x8b,0xbc,0xbf,0x78,0xfd,0x0a, - 0x3a,0xdb,0xdb,0xff,0x03,0xa5,0x65,0x38,0xca,0x65,0xee,0x01,0x00}; + 0x1f,0xc0,0xac,0x3e,0x15,0xbc,0xf0,0xff,0xb5,0xf7,0xb6,0xfb,0x6d,0x1b,0x4b,0x9e,0xf0,0xad,0x50,0x38, + 0x7a,0x6c,0x20,0x6c,0x51,0x92,0x9d,0xe4,0x9c,0x80,0x86,0x39,0x8e,0x1d,0x27,0x4e,0x6c,0xc7,0x13,0x3b, + 0xc9,0x49,0x28,0x46,0x03,0x91,0x20,0x05,0x9b,0x02,0x78,0x00,0x50,0xb2,0x23,0xf2,0x82,0xf6,0xeb,0x5e, + 0xc2,0x5e,0xd9,0xd6,0xbf,0xaa,0xbb,0xd1,0x00,0x21,0xbf,0x64,0x66,0xe7,0xd9,0x0f,0x1b,0xff,0x22,0x02, + 0x8d,0x7e,0xad,0xae,0xae,0xae,0xae,0xae,0x97,0x9d,0xee,0x56,0xf5,0xb7,0x48,0x72,0x5b,0x0c,0xe9,0x80, + 0x5b,0x03,0x81,0x18,0x6e,0x08,0x8a,0x43,0x7b,0xa0,0xcc,0x40,0xab,0xf6,0x9f,0x2b,0x86,0x80,0xe6,0xc7, + 0xdb,0x2d,0x33,0x8e,0x12,0x77,0x52,0x23,0xac,0x78,0x16,0xfe,0x19,0x72,0x35,0x2c,0x5b,0x2e,0x1e,0x74, + 0x6b,0xf0,0x9a,0x4c,0xd0,0xab,0x4f,0xb5,0xdb,0x09,0xdf,0x23,0x2e,0x7a,0xab,0x10,0xd9,0x65,0x96,0xc2, + 0x27,0x99,0xf1,0x33,0x66,0x14,0x64,0xad,0x07,0x31,0xf6,0x13,0x81,0x29,0xad,0x3d,0x87,0x79,0x13,0xe2, + 0xb5,0xec,0x38,0xbe,0xab,0x4c,0xaf,0xbf,0xab,0x3a,0xdb,0xff,0x0e,0xed,0xaf,0x52,0xb4,0x7f,0xd9,0x4d, + 0x39,0x2e,0xa8,0x0b,0xf3,0x94,0x2a,0x9d,0xa8,0x45,0x5d,0xf1,0x0f,0xb6,0xe2,0x1f,0x88,0x7b,0x78,0x57, + 0x7f,0xf8,0xd6,0x7e,0xf8,0x96,0x3e,0x9c,0xa6,0xd1,0xe1,0xf8,0xe4,0x2a,0x18,0xf4,0x4f,0x0e,0x4e,0xf7, + 0x4f,0x26,0x93,0x43,0x75,0x86,0xb8,0x01,0xa7,0x74,0xc6,0xb8,0xe2,0x87,0xa9,0xa7,0xde,0xd6,0xa5,0x69, + 0x83,0xd5,0xa5,0x81,0x46,0xfb,0xf5,0x87,0x73,0xfb,0xe1,0x9c,0x3e,0xbc,0x49,0x3b,0xad,0x79,0x39,0x60, + 0xdd,0x61,0xe8,0x0f,0xfa,0xc1,0x61,0x1d,0x8e,0x41,0x8c,0x2d,0x0f,0x87,0xfe,0x68,0x6f,0xfc,0x87,0x3f, + 0xf9,0xec,0x24,0x08,0x0e,0x17,0x1d,0x4a,0x69,0x62,0xaf,0x59,0xd5,0x6e,0x5c,0xa5,0x20,0x94,0x09,0xec, + 0x8d,0x28,0xd4,0xa3,0xc7,0x88,0xdd,0xaa,0x83,0xf9,0x4c,0xa2,0xa2,0x0e,0xfc,0xc3,0x48,0x94,0xc0,0x33, + 0x1d,0x8d,0xfa,0x8f,0x83,0x83,0x43,0xf5,0x80,0x1e,0x4e,0xca,0xcf,0xf6,0xd2,0x0b,0xd8,0x4f,0xc7,0x59, + 0xb5,0x7f,0xa8,0x5e,0xa6,0x5d,0x5a,0x0f,0x0f,0x75,0xe8,0x7a,0x42,0x94,0x4a,0x62,0x0e,0x02,0x47,0xed, + 0x79,0x2b,0x71,0xad,0x35,0x1e,0xe8,0xbc,0xd9,0x8d,0x79,0xad,0xf7,0xbc,0x07,0x29,0x47,0x2a,0xf2,0x6c, + 0x07,0xbc,0x46,0x50,0x81,0x1f,0x53,0x5f,0xbc,0xd3,0x37,0x2f,0xcb,0xb3,0x86,0x0e,0x4e,0xe7,0x0d,0xaf, + 0xb4,0x8b,0x13,0x36,0x6b,0x43,0x89,0xe5,0x95,0x93,0x48,0xf8,0xf4,0x0a,0xb8,0x2b,0xa1,0x12,0x09,0x3d, + 0x9f,0xe5,0x7f,0x82,0x3e,0x97,0x70,0xa1,0xd7,0x9e,0x3d,0xea,0xc0,0xf7,0x45,0xf4,0x7d,0xf1,0x01,0xff, + 0x8d,0x52,0xbd,0xf5,0xc5,0xb7,0xc7,0xf6,0xd7,0x08,0x20,0x01,0x0f,0xa5,0x2c,0x61,0xff,0xbe,0xb0,0x02, + 0x37,0xf7,0xb2,0xec,0x23,0x7c,0x13,0x6a,0x8f,0x17,0xaf,0xd2,0x0e,0xb7,0x9a,0xaf,0xd2,0x71,0x36,0xe9, + 0xb3,0x84,0xba,0x68,0xb6,0x52,0x60,0xc6,0x5f,0xd7,0x58,0xba,0xb0,0x58,0xba,0x20,0x2c,0x7d,0xda,0x1e, + 0xa7,0xb6,0x08,0x4f,0x38,0x14,0x26,0x0e,0xab,0x21,0x1d,0xd7,0x0f,0xf8,0x95,0x0e,0x07,0xf8,0xd1,0x91, + 0x9f,0xeb,0xf4,0x83,0x2a,0xd7,0x9f,0x9c,0x18,0xd0,0xce,0x67,0x91,0xb8,0x7a,0xaa,0x0e,0x23,0xcd,0x1f, + 0xf9,0x55,0xa7,0xba,0x75,0x72,0x02,0xd7,0xd9,0x8e,0x2b,0xed,0x7c,0xd6,0x75,0x62,0x6c,0xdf,0xa4,0xec, + 0x51,0x0c,0x11,0xa1,0x5f,0xa4,0x3a,0xce,0x25,0x7b,0x8e,0xf5,0xd4,0x13,0x7a,0x17,0x06,0x8b,0x5f,0x1f, + 0xb5,0x3e,0x3f,0x6e,0xbc,0xd3,0x4e,0xe2,0xa9,0xe7,0xcd,0x12,0xcf,0xdc,0x57,0x64,0x18,0x7e,0x83,0x0b, + 0x00,0xeb,0xad,0x41,0xbb,0x31,0xc3,0x19,0xd5,0xa9,0xc6,0x61,0x0f,0x6c,0x86,0x2b,0x46,0xb2,0x56,0x36, + 0x1f,0x3d,0x72,0x22,0x75,0x3a,0xfd,0xba,0x6a,0xa5,0x7e,0x93,0xe1,0x86,0x72,0xb7,0x61,0xb7,0x77,0x37, + 0xb7,0xdb,0xcc,0xe5,0x3f,0xb7,0xcd,0x3e,0x68,0x8e,0xf5,0xaa,0x99,0xc8,0x8d,0x8a,0x8c,0xe6,0x27,0x40, + 0x79,0xa4,0xab,0xc5,0x31,0x95,0x56,0xb7,0xcd,0xf7,0x18,0xcc,0xed,0x7b,0x3f,0x0e,0x20,0x2f,0xf2,0x25, + 0x47,0x10,0xd6,0x4e,0x11,0x3a,0x37,0x54,0xdc,0x9b,0x7f,0x0d,0xb2,0x74,0xe6,0xdb,0xe8,0x1d,0x1b,0x3a, + 0xa3,0x04,0xbe,0xda,0xec,0x07,0x87,0xea,0x67,0x87,0x3c,0xed,0x04,0x78,0x10,0x2e,0xef,0xa1,0xb3,0xd7, + 0x83,0xb7,0x4b,0x58,0x22,0xf6,0xb0,0xc1,0x5d,0x40,0xc5,0xd5,0x89,0xa0,0xc1,0xb1,0xe0,0x52,0x31,0xb1, + 0x93,0x90,0x36,0x0d,0x8f,0x54,0xb1,0x72,0x8d,0xc4,0x38,0xa7,0x51,0xb6,0x94,0xfd,0x95,0x45,0xeb,0x88, + 0x08,0xad,0x8d,0x9c,0x3a,0xa3,0x00,0x07,0xf0,0x25,0x64,0xaf,0x4a,0x74,0x91,0x28,0x1e,0x40,0x5f,0x8b, + 0xbe,0xc9,0x0b,0xe4,0xc0,0xc8,0x88,0x6d,0xf7,0x98,0x1b,0x52,0xdd,0x95,0xd9,0x18,0x1e,0xe8,0x11,0xd1, + 0x07,0x7f,0x1d,0x34,0xf4,0x1a,0x4d,0x04,0x0c,0x47,0x87,0xa7,0x1a,0xc6,0x1d,0xa6,0x38,0x12,0xe5,0xba, + 0xe3,0x8b,0xb9,0x35,0x4f,0xfc,0x9c,0x3e,0x63,0x98,0xdc,0xcb,0x3c,0x72,0x43,0xc6,0x6a,0xbd,0x25,0x89, + 0xc5,0xb2,0x3f,0x30,0x2c,0x80,0x21,0x53,0xfd,0x7e,0x1e,0xd4,0xa9,0x88,0xc2,0xb2,0x4a,0x09,0xc8,0x43, + 0x6d,0x74,0x10,0x1b,0x0d,0xa1,0x29,0x34,0x54,0x70,0x79,0x4c,0x7d,0xde,0x5a,0x18,0xab,0x3d,0x09,0x9d, + 0x20,0x6f,0x06,0xb8,0x02,0x72,0x35,0x77,0xbc,0x6b,0xab,0x73,0x71,0x4c,0x4c,0x73,0x7d,0x1e,0x8c,0x7c, + 0xae,0x09,0xd2,0xf7,0x72,0xf4,0x70,0x87,0x6d,0x46,0xb2,0x3a,0x0f,0xc2,0xd6,0x17,0xff,0x1c,0xd2,0xf1, + 0x19,0x64,0xb1,0x4b,0x6a,0x72,0x0e,0xa0,0x26,0x0c,0xd4,0x95,0x40,0x78,0x0a,0x4f,0x2f,0xdc,0x45,0xea, + 0x4a,0x98,0xf9,0x8e,0x4f,0x68,0xdb,0xe4,0xc3,0x36,0x8b,0x2c,0xfe,0x9c,0x5b,0x65,0x5b,0x99,0x6b,0x66, + 0xbc,0x2b,0xb7,0xe3,0x51,0xb8,0x14,0xd5,0xbd,0xc4,0x18,0x4b,0xe9,0xd0,0xf4,0x82,0xa5,0x22,0xf4,0x05, + 0x54,0xcd,0x95,0x8a,0xea,0xcc,0xd6,0x99,0x6a,0xd4,0x1a,0x34,0xdc,0x76,0x51,0x01,0xca,0x41,0x73,0xf6, + 0x25,0xb5,0x12,0x2d,0xb9,0x19,0x3b,0x73,0x62,0x26,0x32,0x50,0xd6,0x84,0xc4,0x8d,0x55,0xa2,0xf5,0x5e, + 0xd1,0x5d,0xf4,0x8d,0x43,0xcd,0x17,0xce,0xd2,0x14,0x29,0xf3,0xc3,0xe6,0x19,0x41,0xca,0xd0,0xdc,0xb8, + 0xec,0x7d,0xc5,0x01,0x59,0x6d,0xcd,0x4b,0x87,0x2f,0xd9,0x89,0xb1,0xd7,0x8e,0x5d,0x61,0xf1,0x30,0x0d, + 0x62,0x9f,0x35,0x8e,0x33,0x0d,0x5b,0xbe,0x72,0x82,0xbe,0x21,0x33,0x07,0x85,0x81,0x3e,0xba,0xd4,0x68, + 0x9c,0x33,0xef,0xcc,0x95,0x76,0x63,0x53,0x19,0x87,0xdd,0x8e,0x4b,0x6c,0xe3,0x23,0x63,0xd8,0x65,0xf8, + 0x16,0x54,0x9d,0xf0,0x95,0xa5,0x56,0x9b,0xdc,0x4a,0xfc,0x2b,0xc7,0xe9,0xb5,0x4c,0x7d,0xd3,0x82,0x6d, + 0x5f,0x77,0xaa,0x1e,0x64,0x11,0x98,0x34,0xe2,0x72,0xb0,0xd4,0x98,0xfc,0x5d,0x19,0x03,0x5f,0x4d,0x69, + 0x68,0x2e,0xae,0x74,0x36,0x7a,0x33,0x8f,0x92,0x5d,0xe1,0x5b,0x6a,0x30,0xaa,0x6b,0x62,0x67,0x96,0xd2, + 0x0a,0x09,0x83,0x36,0xb8,0x75,0x27,0x18,0x04,0x0f,0x9b,0x87,0x17,0x0d,0x6b,0xb0,0x79,0x02,0xe8,0x7a, + 0x08,0x1c,0x4d,0x08,0xe5,0x6b,0x0b,0x4b,0xd0,0x17,0xb6,0x52,0xb2,0xd7,0x14,0xa5,0xae,0x17,0xd3,0x72, + 0x53,0xc5,0xaa,0x8e,0x3c,0x04,0x62,0x1f,0x5d,0x21,0xc0,0x67,0xc6,0x0e,0xcd,0x75,0xc5,0xe6,0xd5,0xba, + 0x48,0xfc,0x6b,0x0d,0x39,0xce,0xbd,0x5d,0xff,0x8e,0x7a,0xba,0x8b,0x7b,0x51,0xca,0x73,0x10,0xfb,0x1c, + 0x2d,0x27,0x57,0xcd,0x20,0x46,0x97,0x16,0x70,0x28,0xd6,0xd8,0x39,0x52,0x41,0x5c,0xf4,0x29,0xad,0xf7, + 0x03,0x74,0x50,0x1f,0x8a,0x30,0xa0,0xda,0xf1,0xd9,0xbe,0x49,0xae,0x67,0x3e,0x0b,0x6c,0x22,0x47,0x0a, + 0x0e,0xea,0xc9,0xa9,0x03,0xc4,0xeb,0x10,0x3f,0xec,0xff,0xbf,0x6d,0xfb,0x88,0x8e,0xe3,0x1e,0xda,0x35, + 0x7d,0xac,0xfb,0x7e,0xd1,0xdc,0x51,0xea,0xb1,0x5a,0x9b,0x83,0x82,0xb8,0x6c,0xf1,0xdc,0x45,0x3f,0x8c, + 0xbd,0x23,0x7f,0x81,0x2b,0xba,0x4b,0xec,0x8b,0x21,0xa2,0x1d,0x41,0x37,0xc8,0xa5,0x67,0x0b,0xab,0x8a, + 0x8c,0x2d,0x7a,0xb3,0x31,0x84,0x2d,0xb0,0xe1,0x8a,0xa2,0x7d,0xbd,0x6b,0xdb,0x50,0xb4,0x43,0x0d,0xa7, + 0x60,0xe4,0x58,0xd1,0xf6,0xa3,0x34,0xcc,0xde,0xa7,0x18,0x4c,0x6c,0xd3,0xc1,0x81,0x53,0x00,0xd7,0x64, + 0x95,0x75,0x96,0xe2,0x7c,0x88,0x68,0x52,0xb7,0xbe,0xd9,0x89,0x68,0x31,0x14,0x5d,0xcb,0x95,0x67,0x07, + 0x48,0xa7,0x15,0x21,0xf8,0xd5,0xec,0x90,0x0b,0xc4,0xce,0x08,0x94,0x59,0xa2,0x8d,0xfe,0xeb,0x25,0x2a, + 0x69,0x58,0xa2,0x1c,0x93,0x4c,0x5a,0x71,0x57,0x68,0xa2,0xc3,0xf6,0x22,0x5b,0x60,0xc2,0x55,0x41,0xed, + 0x9b,0x97,0x50,0x2e,0x1d,0x74,0xa6,0x07,0x6a,0xce,0x60,0x5f,0x4a,0x89,0xce,0x45,0xb8,0x9e,0x9a,0xa8, + 0x9c,0x29,0xd3,0xf4,0x02,0x7f,0x59,0xe7,0x05,0x71,0x5f,0x77,0xbc,0x5f,0x06,0xb4,0x0e,0xd3,0x86,0xff, + 0x4c,0xe3,0xe3,0x6a,0x16,0x8c,0xce,0xfc,0x42,0xe0,0x81,0xc8,0xc4,0x69,0xa7,0xef,0xcc,0x23,0x7b,0xf8, + 0x23,0xae,0xcc,0xfa,0xf7,0x64,0xa4,0x2d,0xdc,0xd7,0x94,0x5d,0x8c,0x46,0x12,0x36,0x0c,0x1b,0x16,0xe7, + 0x16,0xaf,0x9e,0x84,0x00,0xf2,0xfa,0x23,0xb3,0x37,0x41,0xda,0xa1,0xeb,0x52,0x74,0x99,0x12,0xdb,0x60, + 0xc7,0x6a,0x49,0xa3,0xe5,0x45,0x95,0xf8,0x4b,0x86,0xe2,0x3a,0x5a,0xd6,0x20,0x5d,0x47,0x6b,0xeb,0x2c, + 0x80,0x12,0xd6,0x80,0x99,0x30,0xb8,0xab,0xa8,0xa8,0x59,0x89,0x99,0x63,0x4b,0x2a,0x8b,0x08,0x75,0xcd, + 0xb1,0x46,0x19,0xf7,0xd7,0x34,0xb1,0x6b,0x9a,0x58,0x39,0x49,0xd5,0x13,0xbb,0x0e,0x4c,0xda,0x78,0x3d, + 0x91,0xba,0x3b,0x3a,0x20,0x39,0x6c,0xf3,0xdb,0xca,0x4f,0x65,0x0b,0x19,0x11,0x01,0xe6,0x5c,0x04,0xf1, + 0x15,0x4d,0xa0,0x7b,0x57,0x6e,0xfc,0xc8,0x96,0xf5,0x0e,0x30,0x55,0x34,0x5c,0xe2,0x81,0x8e,0xd4,0x8a, + 0xfe,0x9f,0x45,0xb5,0xab,0x16,0x75,0x19,0x41,0x02,0xa0,0x16,0xf4,0x33,0x9b,0xa8,0x53,0xab,0xba,0x4d, + 0x9f,0xce,0xa2,0x14,0x9f,0xae,0xe8,0xe7,0x74,0xa2,0xde,0x46,0x7b,0xe5,0x70,0x7e,0x0f,0x4d,0xad,0xee, + 0x45,0xa7,0xb4,0x37,0xf9,0x97,0xc1,0x08,0xc5,0xfb,0xfd,0xf9,0x24,0x84,0xd7,0xb2,0x11,0x6a,0x39,0x38, + 0x98,0x4d,0xc2,0x5f,0xe9,0xa3,0x3a,0xa3,0x45,0xfd,0x0e,0xbf,0x60,0xce,0x4c,0x46,0xae,0xb5,0xdf,0x5f, + 0x4d,0x02,0x64,0x5a,0xa8,0x2b,0xce,0x44,0xbf,0xc8,0x64,0xca,0x73,0x9b,0x07,0x07,0xa7,0x92,0xe9,0x52, + 0x67,0xba,0x94,0x4c,0x6f,0x77,0xf8,0x80,0x4c,0x5d,0xea,0x7d,0xd7,0x11,0xc5,0xf9,0x0b,0x21,0x21,0x75, + 0xcb,0x8d,0x4a,0x17,0xba,0x7b,0x0b,0xe9,0x5e,0x57,0xa5,0x5c,0x81,0x54,0xed,0x74,0xad,0xee,0xbf,0x5f, + 0x89,0xb3,0x8b,0x69,0xf4,0x4b,0x45,0xf3,0x33,0x57,0x33,0x98,0xca,0xfb,0x60,0xe8,0xcf,0x38,0x86,0xe9, + 0x68,0x3a,0xe6,0x87,0x49,0x87,0xf3,0x8f,0x3a,0x2e,0xe1,0x9c,0x78,0xe1,0x94,0xa3,0x10,0x5a,0xf2,0x98, + 0x4f,0xcc,0x19,0xe1,0xd6,0xad,0x5f,0x21,0xd4,0x8a,0x2d,0x07,0x9f,0x13,0x8f,0x7b,0x46,0x55,0x1c,0xa1, + 0xb5,0x51,0x4c,0xcf,0xb9,0xd2,0xe3,0xe7,0x71,0x2d,0xa9,0x9f,0xeb,0x89,0x1e,0xdc,0x52,0x06,0x87,0x14, + 0xe3,0xd1,0xb6,0x6b,0xa0,0x4b,0x67,0xa0,0x41,0xd8,0xac,0xb3,0x1e,0xef,0x70,0x7e,0x7f,0x06,0x25,0x7a, + 0x1a,0x22,0x21,0x44,0xff,0x78,0x12,0x48,0x74,0x46,0x79,0xd1,0x8b,0x7e,0xa5,0x4e,0xb1,0xf0,0x57,0xf7, + 0x4f,0x6f,0xdd,0xba,0xf0,0x8f,0x94,0x80,0x65,0xeb,0x4f,0x39,0x5c,0x36,0x90,0x32,0x64,0xa4,0x05,0x87, + 0x57,0xb3,0x50,0x4d,0x71,0x28,0x65,0xc6,0x3e,0x7d,0x4e,0xbf,0xcc,0x76,0xcd,0x30,0xd8,0x1a,0x2d,0xc1, + 0x14,0x03,0xfd,0x47,0xa8,0x7f,0x45,0xdf,0x56,0x75,0x18,0xc4,0xf0,0x83,0xd5,0x86,0xf2,0x7d,0x8f,0xa3, + 0xd6,0xf0,0xde,0xde,0x91,0x4f,0xaf,0x32,0x75,0x33,0x65,0xc8,0xcb,0xaa,0x49,0x1a,0xb6,0xce,0x56,0x75, + 0x2a,0xa7,0x10,0x26,0xaf,0x38,0x78,0xa2,0x94,0x0d,0x46,0x1d,0x98,0xa7,0x2e,0xce,0xba,0x68,0xb2,0x3d, + 0x72,0x50,0x2a,0xdc,0xf3,0x51,0x41,0xc8,0x51,0x53,0x7f,0x3d,0x93,0x7e,0xc1,0xfe,0x54,0x6d,0x07,0xce, + 0x5a,0x07,0x4f,0x35,0x45,0xcc,0xa6,0x78,0xa1,0xd6,0xda,0xdd,0x07,0xd1,0x82,0xa2,0x19,0x6d,0x28,0xca, + 0x37,0x1b,0x44,0x77,0x07,0xd1,0x53,0x85,0xb0,0xf6,0x4a,0x08,0xb2,0x39,0xb7,0xc8,0xc6,0xe5,0xd2,0x7d, + 0x8b,0x95,0x5d,0xdb,0x04,0xd4,0xab,0x89,0xd6,0x33,0x22,0xaf,0xf5,0x56,0x4f,0xa0,0xeb,0x3e,0xc0,0x16, + 0x62,0x49,0x48,0x89,0x1d,0x54,0x3b,0x70,0xce,0xaf,0x80,0xab,0xad,0x76,0x1a,0x68,0x86,0x60,0x1e,0x04, + 0x7c,0x12,0x3f,0x8f,0x4b,0x66,0xc4,0xc1,0x75,0x97,0x3e,0x27,0x72,0xab,0xb6,0x41,0x13,0x37,0xce,0xe9, + 0x81,0x8e,0x8a,0x22,0x55,0xc5,0xcc,0xf9,0xd5,0x89,0x36,0x08,0x07,0x6f,0x1c,0x66,0x5e,0x58,0x75,0x1c, + 0xa7,0xc8,0x79,0x5a,0x94,0x15,0xb7,0x48,0x64,0xe6,0x68,0x78,0x79,0x6f,0x6e,0xe6,0xea,0xd2,0x38,0xb8, + 0x3b,0xdf,0x6c,0xf6,0xce,0xe8,0xbc,0x38,0x1f,0x5f,0x4e,0xf4,0xc9,0x14,0x66,0xe9,0xfa,0x28,0x7b,0x1e, + 0x9d,0x37,0xee,0x0f,0x50,0x62,0xb6,0xd9,0x9c,0x37,0x1b,0xa6,0x53,0x0c,0x16,0x52,0x1a,0x18,0x68,0xca, + 0xbc,0x5e,0xb8,0xae,0x56,0x16,0x90,0xe6,0xad,0x31,0xe2,0xbd,0x07,0x44,0x8b,0x83,0xeb,0x0b,0x74,0x72, + 0x25,0x7b,0x8b,0x34,0xb6,0x77,0x81,0x09,0x66,0xcd,0x12,0xb8,0x89,0xd3,0x8f,0xc6,0xd9,0xa4,0x20,0xe4, + 0x1e,0x87,0xf7,0xe2,0x85,0xa1,0x19,0x2c,0xfd,0x6e,0xae,0xbd,0xf6,0x24,0x58,0xcc,0x95,0x7a,0xab,0xf6, + 0x21,0xa4,0x7e,0x83,0x48,0xf3,0xf9,0x6c,0xbd,0x4c,0x4a,0xf5,0x90,0x9e,0xc1,0xe3,0xfc,0xa8,0xb5,0xbf, + 0xae,0x08,0x26,0x57,0xf7,0x66,0x69,0x8d,0xc0,0x57,0xcc,0x56,0xee,0x8f,0x67,0xe9,0xf8,0x6a,0x02,0x6b, + 0x2f,0xda,0x57,0x8e,0x86,0x6f,0xef,0xbd,0xa9,0xb3,0xbc,0x25,0xf6,0xe2,0xcd,0xf8,0xed,0x44,0xe7,0xa1, + 0x99,0x32,0xd9,0xe5,0x7c,0xe1,0x7e,0xe3,0x0d,0xf9,0x01,0xeb,0x8d,0xe0,0x5e,0x4d,0xb4,0x66,0x74,0x28, + 0xb1,0x87,0xce,0xf3,0x4b,0x16,0xb6,0x12,0x29,0xee,0x70,0x52,0xa8,0x77,0x4b,0x45,0x9b,0xa4,0x36,0xb2, + 0xe0,0xdd,0x5b,0xbc,0xc4,0x20,0x74,0x08,0x8c,0xb3,0x81,0x5d,0x30,0xe7,0x5c,0xb2,0xff,0x10,0x1f,0x84, + 0x0e,0xf9,0x6b,0x7e,0x62,0x16,0x61,0x71,0x60,0xf0,0xaf,0xd8,0xf7,0x13,0x4f,0x24,0x53,0x6f,0x4c,0x40, + 0x20,0x3c,0xd7,0x4a,0xe9,0xa0,0xe8,0x68,0x67,0xc6,0xad,0x49,0x3c,0x35,0x53,0x0e,0x4a,0xee,0x84,0xc3, + 0xf5,0x79,0xe2,0x25,0xeb,0x67,0x19,0xee,0xae,0x91,0x0e,0x0b,0x6e,0xf8,0xf8,0xf4,0x73,0xca,0x72,0x26, + 0xf5,0xdb,0x85,0x72,0xca,0x5d,0xc4,0xf7,0x62,0xf8,0x63,0x04,0x65,0x7e,0x7d,0x1d,0xf3,0xd0,0x5c,0x42, + 0xf9,0x3f,0xb6,0xa2,0xd0,0xc8,0x35,0x8d,0x96,0x1c,0xaa,0x1f,0xc5,0xfe,0xed,0x5c,0x98,0x41,0xda,0xfe, + 0x1a,0x82,0xb2,0x73,0x1e,0xa0,0xc0,0xe1,0x7c,0x70,0x2a,0x02,0xdb,0x33,0xd9,0x0f,0x16,0xad,0x7d,0xf8, + 0x1c,0xaa,0xbf,0xc4,0xb8,0x18,0xfa,0x67,0x10,0xf6,0x2a,0x32,0x69,0x84,0x03,0xe0,0x98,0x86,0x57,0xc3, + 0x7a,0x5f,0x7c,0x43,0x68,0xf1,0xa6,0xeb,0xec,0xf2,0xc6,0x39,0xbb,0xbc,0x99,0xf8,0x57,0xdc,0x93,0x2b, + 0x71,0x7c,0xcf,0x5d,0x7d,0x5b,0x57,0xf2,0x80,0x2a,0x79,0xd0,0x71,0xf2,0x7d,0x50,0x9f,0x7c,0x1f,0xf0, + 0xc9,0xf7,0x4a,0x30,0xe9,0x65,0x74,0xb5,0x43,0x5b,0x51,0xfd,0xcb,0x01,0xeb,0x08,0xd7,0x26,0x0f,0xaf, + 0xa2,0xe3,0xe1,0xab,0x7b,0x2f,0xe9,0x88,0x68,0xed,0x55,0x5e,0xc1,0xfd,0x33,0x12,0xc6,0xaf,0x26,0x86, + 0xf7,0xfe,0xb9,0x42,0xff,0xae,0xa8,0x56,0x1d,0xea,0x36,0x01,0x97,0x84,0x7d,0x0b,0x47,0xbe,0x23,0x75, + 0xa4,0x37,0x2c,0x3a,0xff,0xc0,0x25,0x70,0x51,0x5b,0x8b,0xc9,0xfc,0x21,0xac,0x0c,0xc6,0xc4,0x53,0xf1, + 0x23,0x58,0x7f,0x9b,0xcf,0xbf,0xd6,0x0b,0x2d,0x84,0xda,0x87,0xac,0xbf,0x70,0xbc,0x48,0xd5,0xbb,0x54, + 0xbd,0x4d,0xd5,0x7e,0xaa,0x5e,0xa7,0xea,0x45,0x36,0x32,0xd2,0xfc,0x6f,0x12,0x65,0x04,0x6b,0x78,0x16, + 0x7c,0x6a,0x5d,0xff,0xed,0x49,0x5c,0x2f,0xb1,0xb2,0x38,0xcf,0xaf,0x46,0x3f,0x26,0x12,0xdd,0x0c,0x06, + 0x4a,0xdb,0xf0,0x7a,0x3b,0x31,0x8e,0x95,0x2f,0x52,0x78,0x31,0x7f,0x96,0xdd,0xba,0x65,0x2f,0x39,0x76, + 0xc3,0x8b,0xc8,0xfd,0x38,0xd5,0x3e,0x3d,0x8f,0xb3,0x45,0xe2,0xb9,0xe6,0xa9,0xa2,0x89,0x5f,0x17,0x66, + 0x29,0xbd,0x16,0xae,0x0d,0x59,0xd5,0xf7,0x52,0x47,0x45,0xfc,0x09,0x7d,0xd0,0xfa,0x66,0xc6,0x75,0xfa, + 0xaf,0x29,0x9c,0xaa,0x61,0x76,0x92,0x59,0xeb,0x42,0x14,0x42,0x24,0x73,0x33,0x6f,0xc3,0x3a,0xca,0x99, + 0xe4,0xd6,0xad,0x3d,0xfe,0xa5,0x83,0x98,0x56,0xb3,0x1c,0x7d,0x0f,0x47,0x47,0x76,0x33,0x6f,0xf4,0xf0, + 0x57,0xe7,0x48,0x21,0x46,0x5d,0x33,0x2d,0x4a,0xda,0x06,0xe1,0x8b,0x44,0x9e,0x5d,0x6f,0x4f,0xb6,0x56, + 0xa2,0x17,0x08,0xbc,0x66,0xec,0x4f,0x8c,0xd2,0xe7,0xe3,0x04,0x32,0x30,0xcf,0x68,0x8e,0xd8,0xde,0xd1, + 0xbe,0x9b,0xfa,0x12,0x3b,0x2e,0x08,0xb4,0x27,0xaf,0x67,0x26,0x72,0x6c,0x94,0xd4,0x51,0x64,0x95,0xf3, + 0xcc,0x7e,0x1d,0x59,0xb5,0x78,0x17,0xee,0x06,0xdc,0xcf,0x92,0x40,0x7d,0x9d,0xdd,0x94,0x09,0x63,0x13, + 0xa9,0x2c,0x91,0x48,0x78,0xe9,0x7f,0xce,0x3a,0xf2,0xef,0xcd,0xc9,0x37,0x1f,0xcf,0xa0,0xcb,0xff,0x8c, + 0x7d,0x81,0xeb,0x49,0x02,0x1d,0xc2,0x9d,0x70,0x1b,0x5e,0x3b,0x77,0xd5,0x1c,0xb4,0xbd,0x39,0x37,0xc1, + 0xf5,0x0e,0x2c,0x87,0xe6,0xce,0xd2,0x42,0x54,0xb4,0xa9,0x3f,0x0c,0xdf,0x61,0xda,0x8e,0x01,0x58,0xab, + 0x46,0xec,0x41,0xb5,0x9c,0x9d,0x58,0x6e,0x05,0xca,0x46,0xbd,0x62,0x94,0x88,0xf9,0xf4,0x8d,0xe1,0x03, + 0x1f,0xa1,0x83,0x40,0xf8,0x50,0xe7,0xe4,0xcb,0x71,0xe2,0x71,0x7e,0xc1,0xcb,0xad,0x5b,0xf4,0x5d,0x7f, + 0x00,0xa5,0x37,0x18,0xab,0x67,0x81,0x3d,0x35,0xfe,0x42,0xf8,0x2a,0x81,0x3d,0x7f,0x4d,0x15,0x56,0x56, + 0x28,0x6a,0xb1,0x6d,0xf8,0x68,0x5f,0x02,0xa6,0x32,0xc4,0x02,0xfc,0x1a,0xe2,0x8b,0x40,0xab,0x96,0x88, + 0x0b,0x15,0x47,0xa0,0xce,0x01,0xea,0x4f,0x09,0x32,0x45,0xba,0x80,0x27,0xd8,0x47,0x69,0x09,0xe5,0xc8, + 0xc8,0xcb,0x68,0x1e,0xb4,0xce,0x1d,0xdf,0xa9,0xce,0xe4,0x03,0xc2,0xc5,0xb7,0x92,0xe0,0xfc,0x21,0x1d, + 0xf9,0x59,0xbd,0xec,0xb1,0xc5,0xbd,0xc2,0xb9,0xc0,0xb5,0x1e,0x6a,0x16,0x8a,0xf2,0x2d,0xbc,0xf3,0xb7, + 0x12,0x8b,0x51,0x1e,0x4a,0xcb,0x9d,0xfa,0x05,0x3b,0x23,0x1c,0x16,0x2d,0x48,0xfa,0x1f,0x1c,0xf0,0x4e, + 0x47,0x8b,0xd1,0x87,0xba,0xda,0x05,0x20,0x9a,0xcb,0x1f,0x3f,0x50,0x4c,0x0f,0xa4,0x73,0x98,0x5d,0x55, + 0xea,0x91,0x43,0xb5,0x22,0xeb,0x98,0x5c,0x7d,0x20,0xe0,0xd5,0xf8,0xe1,0xfe,0x31,0xd6,0x7c,0x47,0x58, + 0xc3,0x86,0x61,0xda,0xba,0x0b,0x82,0xe6,0xb8,0x08,0xbf,0xce,0x73,0x38,0xc3,0x55,0xd3,0xb2,0xb4,0xcf, + 0x40,0x2e,0x93,0x0d,0x84,0xc4,0x3c,0x3b,0xb7,0xb3,0x3a,0xc5,0xb9,0x5b,0x75,0xf3,0x98,0x7b,0x55,0x37, + 0x57,0x2b,0x6d,0xe7,0xe2,0xd6,0xcd,0xdb,0x91,0x2e,0xdd,0xed,0x48,0xba,0x31,0x6f,0xab,0xc1,0xd9,0xba, + 0xe0,0x7b,0xc1,0x70,0x2c,0x76,0x6d,0x4a,0xa7,0x8b,0x62,0xc7,0x64,0xab,0xfe,0x34,0x00,0x6a,0x5c,0xd6, + 0x8a,0xb5,0xdc,0x77,0x69,0xc3,0x84,0xae,0x6d,0x0b,0xd6,0x36,0x1e,0xef,0xb0,0x09,0xd3,0x9e,0xb3,0x58, + 0xb0,0x2a,0xb7,0xf4,0xdd,0xc1,0xfd,0x98,0x84,0xff,0x06,0x09,0x21,0xa1,0xad,0x1b,0xb3,0x55,0x9b,0x88, + 0x61,0x6e,0xa0,0x76,0xa0,0xe3,0xb7,0xba,0x75,0x88,0xe0,0x3f,0x32,0x27,0xc2,0x61,0x50,0xbb,0xaf,0x74, + 0x2e,0xcd,0x2c,0xdf,0xed,0xda,0x8e,0xd6,0x02,0x01,0x6d,0x3f,0xf6,0x73,0x02,0xcf,0x3c,0xec,0x6d,0xa0, + 0xfe,0x64,0xbc,0xac,0x32,0x87,0x46,0xb0,0x33,0x5f,0x7e,0x01,0x89,0xca,0x4d,0x04,0x58,0xef,0xf4,0xb4, + 0x6e,0xee,0xc0,0xeb,0x5b,0xb7,0x72,0x7d,0xef,0xc0,0x1b,0xc6,0x2c,0x86,0x13,0x25,0x5b,0x7e,0x1e,0xc5, + 0x4e,0x80,0xd3,0xb2,0x8f,0x0d,0x02,0x8f,0x5e,0x58,0xf6,0x59,0x96,0x1b,0x16,0x7e,0x2c,0xf2,0x0f,0x5c, + 0x40,0xeb,0xbb,0x0f,0x49,0xb1,0x06,0x45,0x65,0x30,0xe2,0x14,0x2e,0x83,0x5f,0xfe,0x2b,0x61,0x33,0x22, + 0x5f,0x2e,0x10,0x61,0x5f,0x39,0xd0,0x8e,0x66,0x08,0xb4,0x75,0x17,0xa3,0x5f,0x13,0x6d,0x59,0xb4,0x6e, + 0x18,0xbb,0x2f,0x01,0x84,0xb5,0xb0,0xa6,0x02,0xc5,0x3a,0xec,0x3c,0xae,0x53,0x5b,0x49,0x37,0x11,0x7c, + 0x0f,0xb4,0x45,0x88,0x27,0xb0,0x8b,0xb7,0x8b,0xb8,0x41,0x75,0x02,0x45,0x8c,0xc9,0x52,0xd3,0x28,0xff, + 0x3c,0x8a,0xd5,0x45,0xb4,0x54,0x17,0x18,0x02,0x51,0xb4,0x73,0xfc,0x6e,0x36,0x17,0x80,0x05,0xbf,0x0a, + 0x7f,0xb7,0xf7,0x1b,0x4b,0x13,0xfc,0xbd,0x65,0x97,0xcf,0xd7,0xae,0x54,0xe3,0xd2,0xb3,0x3e,0x82,0x0b, + 0x62,0xcd,0xa3,0x65,0x1b,0x49,0xc4,0x60,0x64,0xca,0x63,0xf7,0xf2,0x75,0x75,0x90,0xb2,0xe6,0x7e,0xda, + 0x74,0xde,0xa0,0xb1,0x00,0x74,0xf3,0x7b,0x7f,0xae,0xbc,0x78,0x4e,0x58,0xfd,0x54,0xd4,0x2b,0x1c,0x52, + 0x98,0x38,0x39,0x11,0x2f,0xbd,0xe9,0xc7,0x72,0x1b,0x28,0x83,0x3e,0x68,0x2c,0xcd,0x0e,0x72,0x31,0x05, + 0x10,0x81,0xc7,0x6f,0x7e,0x2d,0xac,0x5a,0x8b,0xc0,0x54,0x35,0x3c,0x0a,0xaf,0xe0,0x83,0xfd,0x7b,0x48, + 0x63,0xb8,0xf9,0x6f,0x44,0x63,0x64,0x16,0x28,0x4e,0x13,0x8a,0x85,0xd1,0xc3,0x20,0x4d,0xa7,0xcf,0xa1, + 0x11,0x46,0x64,0xb1,0xdd,0x55,0x9a,0xb2,0x55,0x54,0x6d,0x6b,0xb6,0x39,0x97,0x43,0x8b,0xba,0x20,0xf2, + 0xf9,0xaf,0x14,0x40,0x01,0x3e,0x6a,0xba,0xc1,0x17,0xfa,0x0e,0x81,0x01,0x85,0x0d,0x86,0x62,0xd2,0xd7, + 0xfb,0x17,0x9f,0x62,0xc5,0x18,0xf3,0x07,0xa2,0x2b,0xb5,0x42,0x45,0xf8,0x67,0xaa,0xea,0xb7,0x6f,0xa1, + 0x1c,0x1c,0x5e,0x0b,0x91,0xf9,0x57,0xda,0x45,0x58,0x5a,0x96,0xed,0x4c,0x1f,0x5c,0x23,0x11,0x99,0x3a, + 0x09,0x94,0xbb,0x8a,0x33,0x04,0xc1,0xed,0x76,0x87,0xc4,0x85,0x56,0x45,0x72,0x69,0x1d,0x17,0x8a,0x91, + 0xa8,0x11,0x3e,0xa7,0x5d,0x64,0x8b,0x3d,0xaa,0xe6,0xcd,0x9c,0x38,0x67,0xc7,0xf5,0xaa,0x29,0xe9,0x58, + 0x54,0xde,0xb3,0xa7,0xf2,0xd2,0x88,0x1e,0xa7,0x51,0x3a,0x2e,0x27,0xc3,0xa9,0xc4,0x8f,0x46,0x2f,0xf6, + 0xa2,0xa9,0x08,0xdf,0x71,0x32,0xd0,0x2b,0x79,0xda,0x5c,0xc9,0x44,0x3c,0x2e,0x71,0x23,0xe2,0x01,0xb7, + 0x73,0x6b,0x2d,0x9a,0x8d,0x39,0xdf,0x24,0x9a,0x2a,0x2a,0xa1,0x97,0xf3,0xb4,0x7b,0x39,0xc7,0x01,0xe4, + 0x1e,0x8e,0x37,0xf1,0x35,0x3a,0xbc,0xc4,0x9f,0x39,0x75,0x75,0x5e,0x4b,0xc0,0xe6,0xa6,0xab,0xab,0xa8, + 0x18,0xcf,0x27,0xc3,0xd5,0xce,0x3a,0x88,0x95,0x4e,0x23,0x9e,0x35,0x5a,0x31,0xbb,0xbf,0x48,0xaa,0xaf, + 0xf3,0x35,0x8b,0xd9,0x1e,0x2e,0x53,0x42,0xb0,0x9f,0x08,0xd6,0xf0,0xc3,0x3e,0x5e,0x71,0x17,0x47,0x6b, + 0xe9,0xf5,0x2a,0x08,0x97,0xe6,0x69,0xab,0x2d,0x70,0x57,0x44,0x9d,0x7d,0xf1,0x05,0x40,0xc7,0x7d,0x1d, + 0x9d,0x8c,0xcf,0x4e,0xb3,0x68,0x69,0x5d,0x95,0x98,0x1c,0x39,0xed,0xfe,0xae,0x77,0x8e,0x1d,0xfb,0xeb, + 0x6e,0x4f,0x03,0xb6,0x2d,0x68,0x71,0x80,0xba,0x34,0x1c,0x75,0x98,0x8f,0x86,0xa7,0x9a,0xdd,0x60,0xd1, + 0xec,0x22,0x8a,0x4a,0xcc,0xde,0xa3,0x51,0xde,0xfa,0xe7,0x67,0x03,0x2f,0xef,0x12,0x11,0x9f,0x0f,0x58, + 0xd9,0x72,0x68,0x4c,0x2c,0xb4,0x25,0xd3,0x79,0x5c,0x3e,0xa3,0x74,0xbf,0xd2,0x06,0xfa,0x2a,0x11,0x76, + 0xd9,0xa8,0x18,0x7e,0xc7,0xc7,0x04,0xf3,0xf6,0x67,0xe3,0xed,0x5f,0xc6,0xe1,0x3f,0x9c,0x77,0x2c,0x89, + 0x54,0xda,0x03,0x1e,0x74,0xf3,0x07,0xf9,0x7c,0x5e,0x26,0xd5,0x77,0x49,0xba,0x38,0xaf,0x9c,0x52,0x6d, + 0xa5,0x45,0x99,0x3f,0x86,0x71,0xed,0x42,0x0c,0x3d,0x81,0x6d,0x25,0xf3,0x4e,0xc3,0xb7,0x60,0xde,0xe0, + 0xfc,0x6c,0x60,0xf5,0x7e,0xa2,0x62,0xe0,0x28,0x48,0xe9,0x94,0x1a,0x31,0x1e,0x69,0x66,0x82,0x83,0x4e, + 0xef,0x9e,0x72,0x1e,0xa7,0xf0,0x04,0xca,0xe0,0xaa,0x23,0x0e,0xf6,0x20,0xf2,0xb9,0x26,0xfe,0x78,0xef, + 0xd0,0x36,0xb3,0xaf,0x03,0x77,0x4a,0xd4,0x20,0x13,0xaf,0x2b,0x60,0x2f,0xba,0x82,0x18,0x3b,0x15,0xb3, + 0xce,0x83,0xa9,0x9b,0xf1,0x64,0x5f,0xba,0xcf,0x66,0xea,0x38,0x38,0x69,0x17,0x6d,0xe1,0xb5,0x06,0x7e, + 0xeb,0x5c,0x8e,0x4d,0xfd,0x9b,0xd4,0x8a,0x04,0xeb,0x5d,0x5d,0x67,0x6f,0x12,0x79,0x9d,0x68,0x8c,0x52, + 0x07,0x53,0x5c,0x98,0xb1,0xd4,0x26,0xa0,0xb9,0x76,0x76,0x7a,0x46,0x0c,0xec,0x8c,0x5d,0xa9,0x9d,0xb3, + 0x73,0x9a,0x88,0x2e,0x54,0xa0,0xde,0xe9,0x09,0xc8,0x3a,0xb9,0x66,0xeb,0x14,0xa3,0xa1,0x1c,0x91,0x99, + 0x93,0xdd,0xc3,0xc4,0xcf,0x1a,0x0e,0x89,0x38,0x6b,0x43,0xe3,0xca,0xe0,0x91,0x1e,0x4c,0xc4,0x62,0x31, + 0x3b,0xb3,0x5b,0x58,0x89,0x3f,0xe5,0x0b,0xfb,0x79,0xba,0x18,0x38,0x91,0x71,0xa3,0xdf,0x0b,0x55,0x7f, + 0x68,0xc4,0xe4,0x8d,0xca,0xb4,0xf3,0x13,0x84,0x6a,0xd1,0xb7,0x6e,0xb1,0x56,0x4c,0xde,0xe8,0xa7,0xaa, + 0x51,0xb0,0x19,0xc4,0x77,0x27,0x46,0xca,0x8b,0x9a,0x63,0xc3,0x4c,0x95,0x30,0x65,0x68,0xce,0x5d,0xd4, + 0x0e,0x6f,0xab,0x49,0x2d,0x54,0xf4,0xcd,0x5c,0xf2,0x8b,0xb6,0x3e,0xfe,0x90,0x25,0x02,0x5b,0x53,0x6b, + 0x6a,0x7c,0xe0,0xc1,0x54,0x7b,0xc4,0xc5,0xd9,0x81,0x79,0x6d,0xf1,0x6b,0x95,0xfd,0x20,0xd9,0x6e,0x0e, + 0x02,0xbe,0x90,0x6f,0xcc,0x6a,0x8c,0x24,0xa4,0xce,0xc3,0xdd,0xd2,0x7a,0x49,0x24,0x6e,0xc0,0xa6,0xad, + 0xba,0x84,0x61,0xa5,0x75,0xa1,0x68,0xb9,0x2e,0x3a,0x0c,0x07,0xcd,0x6f,0x8e,0x11,0xfb,0x0f,0x29,0x5b, + 0x4d,0x3a,0xae,0x4b,0x0c,0xc1,0x84,0x52,0xe1,0xcf,0x69,0xb8,0x68,0x7e,0x16,0x57,0x74,0xdd,0x91,0xb2, + 0x76,0x15,0xe5,0xe1,0xbd,0x27,0x71,0x7d,0x83,0xcb,0xe6,0xcd,0x67,0xb2,0x56,0x5a,0x94,0x15,0xe2,0xfb, + 0xa5,0x19,0x06,0xbb,0x36,0x71,0x37,0x1e,0x06,0x1b,0x27,0x48,0xed,0xc9,0xa9,0x76,0x3a,0xe2,0x8b,0xe9, + 0xc6,0xc2,0xea,0x0f,0x29,0x44,0xf8,0x55,0xda,0x62,0xcd,0x71,0x0a,0xb3,0xeb,0x81,0xbb,0x6a,0x7a,0xe0, + 0x36,0x0e,0x85,0xa1,0x06,0x45,0xa0,0xf8,0x1a,0xd3,0x6f,0x9c,0xdf,0x43,0x9f,0xff,0x69,0xed,0x91,0xc0, + 0x77,0xfa,0xf4,0x1a,0x4a,0x21,0x12,0x06,0xfb,0xd6,0xad,0xef,0x33,0xfc,0x3f,0x80,0x1b,0x2d,0xf0,0x6d, + 0x50,0x65,0x7e,0x0a,0xbb,0x8c,0x23,0x59,0x98,0xdf,0xa7,0xea,0x5b,0x28,0x53,0x5e,0x9f,0x5c,0xfb,0xfe, + 0x28,0x1c,0x6c,0x4e,0xb2,0xa0,0x3f,0x0a,0x4e,0xb6,0x27,0xdb,0xc3,0x85,0xfa,0x27,0xb4,0xdf,0x0f,0x06, + 0x9f,0xf5,0x47,0x7f,0xec,0x5f,0x6f,0xfd,0x60,0x33,0x3e,0x99,0x9c,0x1c,0x9e,0x9c,0x4c,0xe8,0xdb,0xef, + 0xdd,0x2a,0xec,0xbc,0x85,0x18,0xed,0xed,0x7f,0xa6,0xca,0x3b,0x39,0xd9,0xbf,0xe5,0xb1,0xf9,0x32,0x14, + 0xcd,0x77,0xbf,0xb8,0xd0,0x15,0x7f,0x29,0x7e,0xd2,0xf7,0x74,0x67,0xa4,0x37,0x5e,0x3f,0x53,0xde,0x02, + 0x92,0x40,0xf5,0x1b,0xcc,0xfc,0x58,0xbc,0x0f,0x9f,0xa6,0xe1,0xd8,0x73,0xe4,0xfe,0xde,0x44,0x59,0x92, + 0xdd,0x32,0xf3,0x00,0x8a,0xc0,0xb5,0x62,0x91,0x69,0x12,0x99,0x8a,0xbc,0x46,0x0c,0x6e,0x87,0x22,0xd8, + 0x72,0xaa,0x8a,0xbe,0x7f,0xf9,0xe3,0x73,0x4a,0x00,0x62,0x23,0x86,0x63,0x66,0xdc,0x98,0x47,0x85,0x53, + 0x10,0x8e,0x72,0x21,0x4a,0x81,0x52,0x0c,0x12,0xbe,0x4e,0x99,0xe1,0x88,0x0a,0x4c,0x7f,0x92,0xc1,0x3d, + 0x6b,0xc7,0xe9,0xd3,0xf3,0x1c,0xd5,0xfe,0xba,0x49,0x5c,0x96,0xf5,0x23,0x77,0x3c,0xa1,0xd7,0x6f,0xe4, + 0xe8,0x7b,0x0a,0x56,0x9a,0x8d,0xb6,0x74,0xa9,0xa9,0xcd,0xef,0x7e,0x94,0x02,0x09,0xf1,0xc5,0xff,0xde, + 0x0d,0x36,0xbe,0x22,0xf9,0x74,0xb0,0x31,0xf9,0x6f,0x81,0x8d,0xab,0x6a,0x83,0xed,0x4d,0x0a,0xc8,0x35, + 0x41,0x27,0x85,0x1d,0xd0,0x71,0xc2,0x5f,0x05,0x1d,0x37,0xdb,0x00,0x1d,0xa7,0x38,0xa0,0xe3,0x77,0x03, + 0x3a,0xb7,0x2d,0x5b,0x0a,0xf9,0x7d,0x29,0x50,0x7f,0xed,0xc3,0xea,0x40,0x80,0x57,0xe5,0x7c,0xd9,0x04, + 0xcb,0x3f,0xb6,0x02,0x85,0x39,0x65,0xbe,0xd4,0x56,0x8d,0x62,0xba,0xa7,0xad,0x31,0xc5,0xc2,0x30,0x2d, + 0x99,0x32,0xe3,0xea,0x89,0x86,0xe2,0xd8,0x8b,0x36,0x4c,0x1f,0xc5,0x40,0xf2,0xea,0x0c,0x6e,0x87,0x92, + 0x5c,0x6c,0xa6,0xb5,0x85,0x23,0xcc,0x3f,0x2b,0x98,0x76,0x1a,0x31,0xe7,0x8a,0x4d,0x1c,0x61,0x1e,0xc8, + 0x86,0x8e,0x62,0xfa,0x58,0xe8,0x9a,0xb0,0xb8,0xa4,0x87,0x9d,0x26,0xa8,0xd2,0xe5,0xda,0xd8,0x90,0x2d, + 0x26,0x3b,0x0d,0x2b,0xd1,0x6c,0xd3,0xb2,0x91,0x6d,0x51,0xb5,0x21,0xaa,0xb1,0xa4,0xdc,0xb1,0x48,0xd5, + 0x36,0xae,0x6c,0x62,0xd9,0x61,0xe1,0x8a,0xbe,0x1a,0xfb,0x57,0x69,0x87,0x80,0xc5,0x76,0xb5,0xda,0x06, + 0x13,0x77,0x19,0xc6,0x78,0x92,0xc1,0xd4,0x36,0xc7,0x14,0xb0,0x89,0x79,0xaa,0x06,0x9e,0x18,0x52,0x18, + 0x53,0xcb,0xda,0x0a,0xb4,0x05,0x22,0xb6,0xcc,0x25,0x40,0x31,0xac,0xa1,0x06,0x98,0x47,0x87,0x7f,0x9c, + 0x94,0x9f,0xf9,0x63,0xfa,0xeb,0xdd,0xbe,0x77,0xff,0xe4,0x30,0x9a,0xf4,0x03,0xa2,0x35,0x48,0x8c,0x02, + 0xfc,0x1d,0x85,0x1e,0x7d,0xf6,0x26,0x9f,0x11,0xd9,0xd9,0xdc,0xa6,0xc7,0xdb,0xf4,0x78,0xbb,0xbf,0xd1, + 0x65,0xa2,0x7b,0xf7,0xff,0x83,0x8a,0x04,0xc1,0xe8,0x50,0xa5,0x79,0xe4,0x8d,0xe3,0x83,0x3f,0x1f,0x1c, + 0xfc,0x7e,0x3a,0x19,0x9f,0x9c,0x5c,0x9d,0x9c,0x1c,0x9c,0x9c,0x0c,0x26,0x9f,0x79,0x2a,0xa7,0x4f,0xa0, + 0x61,0x5e,0x3f,0xcd,0xfb,0x44,0xe9,0xc2,0x60,0x24,0x8f,0x81,0xa7,0xe2,0x3c,0x72,0x88,0x9d,0xf7,0xc7, + 0x3d,0xaf,0x9f,0xe7,0x74,0x42,0x33,0x9d,0x3b,0x39,0x1c,0x05,0xf7,0x0f,0x69,0x5e,0x5a,0xd9,0x4e,0x4e, + 0x0e,0x91,0xb3,0xef,0x8d,0xff,0xb8,0x3f,0xf9,0xec,0x3e,0x8d,0x67,0x8d,0x22,0xf7,0xf6,0x1e,0xfd,0xf8, + 0xf0,0xd5,0x6f,0x2f,0xbe,0xe9,0x21,0xbd,0x7f,0xff,0x30,0x55,0x4b,0x49,0x87,0x05,0xcf,0x5c,0x1e,0x4f, + 0xc6,0x87,0x6a,0x95,0xe3,0xee,0xd8,0x7b,0xeb,0x59,0x2a,0x7c,0xf8,0xd6,0x1f,0xd0,0x40,0x16,0xaa,0xb9, + 0xe4,0x29,0xa3,0x87,0xc3,0x7d,0xa2,0xaf,0x5e,0xce,0x73,0x75,0x99,0xd3,0x51,0x5a,0x2d,0x72,0xf5,0x2e, + 0x57,0xa7,0x39,0x21,0x91,0xba,0xca,0xd5,0xdb,0x5c,0xed,0xe7,0xea,0x4d,0xae,0x1e,0xe6,0xea,0x01,0xa3, + 0xa0,0xb6,0xdf,0xd5,0x86,0xd1,0xe6,0xd6,0x83,0x37,0xc1,0x97,0x39,0x6e,0x8e,0x5f,0xd1,0x5f,0xef,0xd6, + 0xb2,0x1a,0x7a,0xa1,0x77,0x8f,0x16,0xe5,0xad,0x05,0x3f,0xde,0xc7,0x23,0xf0,0x93,0x5e,0x6e,0x7b,0xb7, + 0xe9,0x25,0xbe,0x58,0xe1,0xc3,0x2d,0x7c,0xf8,0xdb,0xf1,0x11,0x9e,0x4f,0x32,0x7e,0xf9,0x8a,0x9f,0x2b, + 0x6f,0xab,0x7e,0xa4,0xb1,0xdd,0x22,0x20,0xd3,0x01,0x78,0x51,0x6d,0x50,0x7c,0x43,0xc5,0x82,0x21,0x0d, + 0xe8,0x75,0xe7,0xa7,0x0d,0xd5,0xb4,0xf9,0xdb,0x57,0x9c,0xe3,0x29,0x77,0x18,0x9a,0x0f,0xcd,0x7e,0x7e, + 0x93,0x77,0xb3,0x16,0xb4,0x07,0x3f,0xcd,0xc5,0x87,0xc2,0x09,0xcb,0x59,0x12,0x78,0x2e,0x52,0x2f,0x00, + 0xdf,0x7f,0xdb,0xfc,0x71,0x79,0x90,0x67,0xe1,0xa1,0x7a,0x82,0xd7,0xcb,0x83,0x0d,0x92,0xe8,0xf5,0x11, + 0xbd,0xfa,0x83,0xcf,0x68,0x43,0x2d,0xfb,0xd4,0x9b,0x34,0xdb,0xe4,0x73,0x7e,0x1e,0x7c,0x16,0x1c,0xaa, + 0xc7,0xf4,0x55,0x11,0x5e,0x29,0xda,0x6e,0x27,0x84,0x65,0x94,0xc3,0x7d,0x0d,0x46,0xfb,0x87,0xea,0x39, + 0x63,0x85,0xbf,0x39,0x09,0xf6,0xa9,0xd3,0xcf,0x72,0x36,0x0f,0xfb,0x8c,0x5e,0xd4,0x4f,0xf8,0x12,0xa2, + 0x65,0x16,0x3d,0x1f,0xaa,0xaf,0x29,0xe1,0x64,0x30,0xfe,0x63,0x30,0xe9,0x53,0xd6,0x9f,0xf3,0x4e,0xe3, + 0x1d,0xff,0xfb,0x34,0xfa,0x3e,0xfd,0x80,0xa1,0x52,0x50,0x6b,0x43,0x44,0x95,0xfa,0x3e,0x75,0x8d,0x13, + 0x69,0x13,0xfe,0x15,0x2d,0xbf,0xbd,0x58,0x66,0x65,0xf8,0xfc,0xe5,0xc9,0xac,0x7f,0xa8,0x7e,0x41,0x0a, + 0x3f,0x53,0x3f,0xbe,0xcb,0xa3,0xf1,0x6f,0x29,0xed,0x39,0xea,0x9a,0xc0,0xfb,0xea,0x3d,0x7b,0x8b,0xc8, + 0x92,0x8c,0x57,0x09,0xb9,0x1a,0x32,0x47,0x18,0xbe,0xdc,0x7f,0x16,0xaf,0x58,0x24,0x3b,0xf6,0x2e,0x0f, + 0xf8,0x32,0xc5,0x9b,0x40,0x3a,0x8b,0x57,0x1e,0x34,0x18,0x42,0x6f,0xb2,0xd9,0x50,0x8a,0x7e,0x36,0xaa, + 0xa1,0x7a,0xb7,0xe1,0x44,0x78,0xee,0x92,0x9d,0xeb,0xf2,0x20,0x9d,0xcb,0x34,0xe7,0x51,0x3a,0xf2,0xa8, + 0x2e,0x5a,0x95,0x58,0x94,0x21,0x1d,0x11,0xe3,0x48,0x78,0x72,0x93,0x15,0xd7,0xb9,0xda,0x6e,0xb9,0x91, + 0x66,0xeb,0x98,0x46,0xbf,0xb1,0xfd,0xc8,0x3f,0xa1,0x95,0xa2,0x92,0x04,0xb2,0x2c,0x6e,0x50,0x89,0xeb, + 0x8c,0xb3,0xfc,0x2d,0xb5,0xfd,0x2d,0xd2,0xe9,0xd8,0x34,0x05,0x0f,0x3b,0x25,0x02,0xad,0xd9,0xbd,0x41, + 0x3a,0x27,0x1a,0xe1,0xf5,0x0b,0x6a,0x9f,0x86,0x7f,0xdb,0x14,0xb9,0x4d,0x8b,0x5c,0xfd,0x8e,0x42,0xd7, + 0xc9,0xdb,0x55,0x88,0x7c,0x42,0xbf,0xc3,0xa9,0x5e,0x8f,0x6b,0xdd,0x2e,0x75,0x6a,0x8d,0x4e,0x11,0x74, + 0xa5,0x43,0x09,0x27,0xe8,0x2e,0x14,0xf1,0x2c,0xcd,0xa5,0xfd,0x35,0xda,0xaf,0xab,0x74,0x5b,0xe5,0x5c, + 0xdc,0xa4,0xb4,0xb1,0xd6,0x6d,0x2c,0x75,0x1b,0xc6,0x67,0x51,0xe2,0x2f,0xdb,0x4d,0x51,0x82,0x00,0x1d, + 0xc6,0x0f,0xdf,0xe2,0xbd,0xd1,0x4a,0xaa,0x6b,0x5c,0xc2,0x3d,0xfe,0x68,0x3a,0x00,0xe8,0x10,0x8a,0x0e, + 0x9c,0x8e,0xbc,0x11,0x00,0xe0,0x84,0x1a,0x27,0xbb,0x89,0xfa,0x93,0x28,0x03,0x15,0xa3,0x13,0x03,0xd0, + 0x0e,0xf2,0x7b,0x73,0xc3,0xfd,0x5d,0xae,0xea,0xa3,0x44,0xa8,0x2f,0xd5,0x3e,0x74,0x8d,0xe6,0xde,0xa1, + 0xe6,0x82,0x5b,0xec,0xdd,0xcf,0xa0,0x15,0xdf,0xbd,0x8a,0x7b,0x43,0x7b,0x16,0xb1,0x32,0xf4,0x44,0x2b, + 0x73,0x29,0x1d,0x5a,0xb7,0xbe,0xbf,0xcc,0x83,0xbd,0xee,0x96,0x6f,0xe3,0x67,0x7f,0xdf,0x78,0xe0,0xf8, + 0x25,0x5e,0xf6,0xa2,0x5e,0x2b,0xb2,0xba,0xbe,0x52,0x90,0x4b,0xcc,0x7d,0x76,0x20,0xab,0x23,0x36,0xda, + 0x0b,0x4d,0x5b,0x79,0x5e,0x9b,0xc7,0x0f,0x4c,0xa5,0xdb,0x00,0x77,0xa0,0xbe,0x9b,0x07,0xad,0x5e,0x72, + 0x5b,0xde,0xa9,0xb8,0x7b,0x81,0x4a,0x50,0xde,0x1b,0x51,0x31,0x49,0xe8,0x85,0xf4,0xa8,0xaf,0xde,0xa4, + 0xc2,0xdb,0x7d,0x9f,0x63,0x30,0x88,0x1d,0xfd,0xc8,0x3b,0xcd,0x7c,0xfa,0x8e,0x35,0x40,0x3f,0x10,0x12, + 0x11,0x0a,0x78,0xc3,0xcc,0xbd,0xd1,0x84,0x02,0x7d,0xdf,0xeb,0x79,0xfd,0x18,0xd6,0xc6,0x5e,0xb3,0xef, + 0xe6,0x52,0x95,0x1a,0x6d,0x02,0x20,0x6c,0xbe,0x13,0xbd,0xf4,0x02,0x7b,0x2a,0x62,0xb3,0x9d,0xda,0x26, + 0xb4,0xa6,0x03,0x39,0x51,0x58,0xbb,0x7c,0xe8,0x3d,0xbe,0x09,0xe4,0xce,0x20,0x68,0x8a,0x65,0xbd,0x0b, + 0x0c,0x82,0xcd,0xc6,0x43,0x3b,0x58,0xd3,0x9a,0x0e,0x14,0xeb,0xe4,0xa0,0xfe,0x88,0x57,0x8f,0x96,0xb5, + 0x7c,0x9c,0xc7,0x58,0xd5,0xf5,0x57,0x7e,0xf7,0x86,0xff,0x5e,0x09,0x04,0xc4,0x09,0x8e,0xf2,0x9a,0xa6, + 0x24,0x5e,0x9f,0xb8,0xca,0x60,0x74,0x9a,0xca,0x93,0xa2,0x25,0xd4,0xe7,0x73,0xb8,0xd7,0xf7,0xa5,0x7e, + 0xf4,0x7d,0xe4,0x85,0x3a,0x27,0x81,0x37,0x3c,0xfd,0x97,0xcd,0x1c,0x23,0x29,0x40,0xf8,0x33,0x17,0xcc, + 0x9e,0x60,0x51,0x1c,0x49,0xb6,0x7d,0x9c,0x5e,0x1b,0xc0,0xa6,0xa4,0x69,0x84,0xe4,0x81,0xee,0xd7,0xc8, + 0x97,0xba,0xd0,0x0c,0x9d,0x10,0x3a,0x8c,0x61,0xa9,0x3a,0x4d,0x14,0xf7,0xf7,0x2f,0xa9,0x62,0x5f,0xa6, + 0x5c,0xfa,0xeb,0x85,0x79,0xc0,0x0d,0xa5,0x11,0x8d,0x84,0xb2,0xd2,0xe3,0x25,0x57,0xe2,0x36,0x12,0x5c, + 0x53,0x86,0x7b,0x47,0x4c,0x2e,0xa9,0x5f,0xd4,0x01,0x1b,0x6e,0x7b,0x4c,0xf9,0x89,0xe8,0x8a,0xae,0x1c, + 0xe5,0x22,0x00,0x34,0xb2,0x19,0xf7,0x2f,0xf4,0x29,0x30,0x65,0xea,0x74,0x4a,0xed,0x1f,0x43,0x8f,0x40, + 0xca,0x5b,0xfc,0xda,0x9f,0x32,0x1e,0x7a,0x1f,0x87,0x2d,0x42,0xe9,0xfe,0x93,0xa8,0xb2,0x33,0xdd,0xce, + 0x64,0xf9,0x54,0x66,0x07,0x68,0x08,0xdd,0xd0,0x9c,0x3d,0xee,0x7c,0xfe,0x31,0x28,0x0e,0x14,0x74,0x74, + 0x42,0x6e,0xa4,0x2a,0x2d,0x7a,0x45,0x74,0x8d,0xfd,0xc7,0x63,0xf7,0x92,0xa8,0xc1,0xf0,0xbb,0xad,0xc7, + 0x85,0x00,0x48,0xb0,0xe3,0xa6,0x6d,0x69,0x4f,0xa0,0x82,0x4e,0x41,0xb7,0x4f,0xad,0xa3,0x7c,0x64,0x7a, + 0x19,0xea,0x0f,0xd0,0x41,0x1b,0x9d,0xa5,0xa1,0xee,0x95,0x5a,0x46,0xad,0x65,0x2d,0xf0,0x19,0x82,0x5c, + 0x77,0x7f,0xd3,0x56,0xe3,0xf0,0x58,0x22,0x79,0x18,0x40,0x4b,0x86,0xcc,0x50,0xee,0xac,0x18,0x22,0xcb, + 0x60,0x38,0xa5,0x0c,0xb4,0xdb,0x01,0xad,0x1a,0xf5,0x68,0x3d,0x13,0x7b,0x49,0x39,0xf4,0xfa,0xf3,0x40, + 0xc9,0x4c,0x48,0xfb,0xca,0x33,0xeb,0x47,0x43,0x7b,0xad,0xe6,0xb5,0x64,0xc5,0x2f,0x37,0x1b,0x28,0x4c, + 0xcb,0x3c,0x9c,0x2d,0xd7,0xb4,0x3b,0x79,0xcd,0xab,0x2b,0xcf,0x98,0x0b,0xd6,0x13,0xb1,0xf7,0x3a,0x6b, + 0x8a,0x09,0x89,0x92,0x76,0xd2,0x7e,0x7b,0x0b,0xcb,0x3c,0xe2,0xce,0xc1,0xf8,0x52,0x34,0x18,0xa4,0xbb, + 0x0e,0x8b,0x04,0xe4,0x29,0xd1,0x6d,0xc9,0xc1,0x9d,0xdf,0xf2,0x99,0xe7,0xfd,0x55,0x58,0xa6,0xab,0xb3, + 0x82,0x2d,0x1d,0x2c,0x5f,0x10,0x3f,0x15,0x77,0xb9,0xa4,0x00,0x23,0xab,0x1d,0x70,0x41,0x58,0x49,0xa7, + 0x22,0xe4,0xab,0x88,0x6b,0xaf,0xe5,0xa4,0xe1,0xef,0x05,0x1c,0xee,0x7c,0x9d,0x3c,0x4d,0xe6,0xd5,0x8f, + 0xab,0x24,0x43,0x96,0x24,0x57,0x0d,0x50,0x84,0x65,0xaa,0x5a,0xb2,0xd0,0xf0,0xa7,0x4a,0x39,0xc2,0x83, + 0xef,0x72,0x3a,0x3f,0xcc,0xd6,0xd3,0x6e,0x95,0x1b,0x8e,0xe5,0xc8,0xab,0xdc,0x04,0xc8,0x32,0x21,0xff, + 0x02,0xf6,0x08,0x31,0x78,0x9d,0xa7,0x84,0x26,0x0a,0x10,0xf9,0x57,0x37,0x8b,0xda,0x83,0xa3,0x17,0x60, + 0x3b,0xef,0xd9,0xc0,0x7f,0x48,0xd6,0x95,0x59,0x09,0x8a,0xce,0x2e,0x69,0xa6,0xdd,0x79,0x28,0x7b,0x31, + 0x26,0xd1,0x85,0xfa,0x7e,0x35,0xc2,0x8a,0xad,0xe0,0x19,0x15,0x02,0xa3,0x1f,0xec,0x91,0xef,0xe4,0x6a, + 0xff,0x74,0xd2,0xdf,0x9c,0x10,0x87,0x1d,0x4c,0x3e,0x1b,0x9d,0x04,0x38,0xee,0x45,0xf7,0x37,0x7f,0x98, + 0x1e,0xd0,0xeb,0x89,0x7f,0xa8,0xbe,0xd7,0x25,0xc6,0x74,0xac,0xa3,0xc3,0xdd,0xe9,0xfe,0x04,0x45,0x27, + 0x38,0x19,0x12,0x77,0xdd,0x4a,0xdc,0x9c,0x8c,0x6f,0x13,0x7f,0x7f,0x7b,0x42,0x0f,0x1e,0x3d,0x78,0x78, + 0x20,0x36,0x18,0x3f,0xed,0xbc,0x93,0xe0,0x33,0xaa,0x96,0x38,0xf7,0x6f,0xc1,0xea,0x94,0xd3,0xf0,0xce, + 0xdf,0xe1,0xcc,0x28,0xfc,0x4a,0xd4,0x2c,0xc2,0xe3,0xbb,0x4a,0xe0,0x7d,0xf7,0x8e,0x5a,0xaf,0xc2,0xbb, + 0xff,0xa0,0x13,0xf2,0xbc,0x0a,0xef,0xfe,0x5d,0x15,0xb8,0x3d,0x09,0xef,0x7e,0xa5,0xe0,0x05,0x3b,0xfc, + 0xfc,0x48,0xc9,0x05,0x66,0x38,0xfe,0x87,0xfa,0xfc,0x4b,0x3a,0x84,0xfc,0x33,0xef,0xf2,0xcb,0x05,0x92, + 0xd3,0xaf,0x08,0x79,0x1c,0x9f,0x59,0x43,0x3a,0x36,0xfd,0x9e,0x43,0x18,0x44,0xf8,0x60,0x16,0x35,0x5e, + 0x80,0x20,0xf1,0x22,0x16,0x11,0xe2,0x10,0x1a,0x15,0xfc,0xcd,0xe6,0xd1,0xef,0x8f,0xe4,0xc2,0x91,0xb3, + 0x20,0x2e,0x59,0xf8,0xcf,0xdc,0x6f,0xd2,0x86,0x1e,0x51,0x9c,0x9e,0x4e,0x99,0xae,0x0b,0x4c,0xd2,0x2b, + 0xfe,0xe0,0x41,0xb8,0x5a,0x2c,0xb9,0xc4,0x9e,0xc9,0x40,0x09,0x3f,0x40,0x43,0x57,0xb1,0xef,0xd0,0xc6, + 0x37,0x4e,0x91,0x8f,0xf1,0xb2,0xf9,0x89,0xde,0xe5,0x03,0xe4,0x05,0x8d,0x2f,0x48,0x90,0x4f,0x0c,0x3b, + 0x7c,0xba,0x2d,0x5e,0xa1,0x6e,0x83,0x31,0x92,0x5c,0xbd,0x5b,0xb7,0x4c,0x0f,0xe5,0x1b,0xf7,0xf9,0x08, + 0xf5,0xa5,0xb3,0xd9,0x32,0xf9,0xa4,0x62,0xc7,0x90,0x2b,0xf0,0xfc,0x7c,0x4a,0xa9,0x3b,0xc0,0xff,0xdf, + 0x68,0x22,0xe8,0xd4,0xd8,0xf6,0xc7,0x02,0x37,0x70,0x75,0x54,0xbb,0x8e,0x89,0x3d,0x5d,0xc8,0xc4,0xaa, + 0x06,0x85,0x20,0x02,0xb1,0xa3,0x83,0x64,0xaa,0xe3,0xf0,0x79,0xb5,0xb5,0x50,0x5d,0xd3,0x19,0xd5,0x94, + 0x51,0x4d,0xb7,0x21,0xff,0xa2,0xf5,0xd6,0xc7,0xe1,0xbb,0xae,0x15,0x7b,0x9f,0xc3,0x49,0xc3,0xd1,0x51, + 0xad,0x8e,0x88,0xcb,0xb0,0x91,0xb0,0x3a,0xa1,0xe6,0x99,0x82,0xf7,0x64,0xe7,0xe8,0xd3,0x9e,0xd2,0xf9, + 0xbd,0x40,0xf7,0x79,0xba,0xcc,0xe3,0x37,0x88,0xab,0xfb,0xef,0xf9,0xae,0xd7,0xd3,0xdc,0x3a,0xcb,0xe4, + 0x57,0x48,0x22,0x69,0x4f,0xc4,0xcf,0x66,0xf3,0xbb,0x4e,0xb4,0xc2,0xcb,0x32,0xfa,0x0d,0x06,0xd5,0x46, + 0x31,0xdd,0xb3,0x1f,0x1e,0xd2,0x89,0xc1,0x78,0x70,0xc7,0x3d,0xe3,0xb7,0x49,0x86,0x08,0x7e,0xcd,0xdc, + 0x5a,0xea,0x68,0xf3,0xd9,0x13,0x47,0x74,0xe9,0xb3,0xa2,0xc5,0x6f,0x39,0x9b,0x46,0xdb,0xf4,0xc0,0x46, + 0xef,0x6a,0x10,0xd0,0xcd,0xe6,0x61,0x36,0xd4,0xbe,0x91,0xdf,0x9d,0x25,0x36,0x10,0x63,0xc7,0x44,0xee, + 0x59,0x33,0x5e,0xed,0x1f,0x33,0x9b,0x26,0x4f,0x66,0x91,0xf6,0x50,0xdf,0x0e,0x38,0x08,0x1f,0xdd,0x34, + 0x8b,0xbe,0x2b,0x14,0x3a,0x39,0x39,0xf3,0xfa,0xde,0x8c,0x68,0xf8,0x1c,0x02,0x38,0x42,0xfa,0x0a,0x01, + 0x75,0x09,0xc8,0xef,0xd8,0x31,0xdb,0x14,0xc2,0x3f,0x6c,0x7b,0xea,0x2a,0xad,0xce,0x55,0x7c,0x15,0xa7, + 0x95,0x62,0xc3,0x00,0xc5,0x3e,0xd0,0xb5,0xf2,0x3c,0x5f,0x03,0x29,0x76,0x5c,0xaa,0x38,0x2e,0xbd,0xba, + 0x22,0xb2,0x9a,0xa8,0x77,0x90,0xfa,0x69,0x62,0xa3,0xe8,0x70,0x96,0xc3,0xdb,0x21,0x7b,0x62,0x51,0x32, + 0x02,0xe3,0x01,0xcc,0xba,0xd4,0x66,0x77,0xa1,0x74,0x8c,0x91,0x10,0xf5,0xec,0x04,0x2d,0xcd,0xd6,0x70, + 0xcc,0x78,0xb6,0x5e,0x2c,0x20,0x26,0xd4,0x50,0xa8,0x83,0xae,0x78,0xda,0x4f,0x0d,0xf6,0x04,0xbd,0x3b, + 0xd0,0xb0,0x36,0x18,0x5a,0xd0,0xe7,0x11,0x4a,0x90,0xe0,0xd6,0x98,0xa5,0x53,0xe2,0x77,0x94,0x15,0xd8, + 0x3b,0xeb,0x21,0x92,0x0e,0x82,0x7f,0x72,0x42,0x24,0x9f,0xfe,0xd4,0xb5,0xb6,0x3e,0x50,0x1b,0xfe,0xc3, + 0xb6,0xe4,0x47,0x44,0x11,0x37,0x5a,0x8d,0xb2,0xc7,0x60,0xa2,0x8b,0x88,0x7d,0x1c,0xed,0x1d,0x07,0xea, + 0x34,0xd7,0xf3,0xc9,0x06,0x62,0x90,0x70,0x3b,0x11,0x5b,0x86,0xd9,0xbd,0x77,0xb9,0xeb,0x9c,0xe5,0x5d, + 0xce,0x76,0xb8,0xb8,0xc9,0x39,0xcf,0xa3,0xa4,0xc6,0xea,0x53,0xbc,0x99,0xbd,0x1e,0xe8,0xa4,0xce,0x90, + 0xe2,0xec,0xe4,0x9c,0x78,0x85,0xc4,0xd6,0x56,0xcd,0x1f,0x2e,0x72,0xa0,0x76,0xd2,0xb1,0x10,0x9e,0xcb, + 0x42,0x58,0xb4,0x33,0xb4,0xc5,0x34,0x94,0xe7,0xdd,0x4e,0x9e,0xbc,0xac,0xda,0x99,0x2e,0xd1,0x05,0x9a, + 0x89,0xf4,0x22,0xad,0x10,0x10,0x51,0x1b,0xe5,0x12,0x7b,0xca,0xca,0x27,0x7b,0xc7,0xac,0xeb,0x89,0x18, + 0xe7,0x58,0x1d,0xbf,0x9e,0x53,0x2e,0xee,0xa6,0x02,0xbc,0xc0,0xa7,0x1e,0xef,0x58,0x66,0xb4,0x81,0x4c, + 0x6f,0xcb,0x3e,0x6e,0xf0,0xa0,0xd6,0xba,0x3e,0x93,0xbb,0x05,0xdf,0xb5,0x9a,0x2e,0x8c,0x1f,0x01,0xd6, + 0xbf,0x53,0x65,0x1d,0xbf,0x5e,0x34,0xf9,0x96,0x81,0xbe,0x7b,0xc3,0x75,0x43,0x81,0xd7,0x8a,0x67,0xac, + 0x75,0x21,0x4b,0xc9,0xac,0xea,0x9f,0x46,0x71,0x1d,0xd4,0x3e,0xbd,0x1f,0xd1,0xa9,0x27,0x46,0x28,0x98, + 0xa5,0xc9,0x8a,0x45,0x4e,0xe3,0x2a,0x11,0x52,0xcd,0xf0,0x94,0x11,0x5f,0xfb,0x22,0xb7,0x63,0x80,0xe9, + 0x56,0x34,0xbd,0x1f,0xa5,0xc3,0x29,0x15,0x48,0x06,0xec,0x65,0x85,0x7f,0xd8,0xdf,0x3a,0x4b,0x26,0xd0, + 0xff,0xa1,0xc9,0x1e,0x01,0x80,0x29,0x37,0x7b,0x70,0xcc,0xdf,0xf9,0x74,0xe4,0x9d,0x15,0xe0,0xf0,0xca, + 0x11,0x33,0x56,0x05,0x2c,0xd4,0xe5,0x81,0xc6,0x4f,0xe0,0xde,0x3b,0x12,0xcf,0x08,0xde,0x8a,0x73,0x71, + 0x1c,0xdc,0xce,0x7c,0xc7,0x9c,0x4f,0x35,0x3a,0x22,0x10,0x24,0xa0,0x1a,0xe7,0x08,0xf0,0x74,0x82,0x49, + 0x84,0x32,0x7a,0x2d,0x95,0xa1,0x29,0x4b,0x06,0x35,0x7f,0xc9,0xd8,0xb6,0xc6,0x8d,0x73,0x8b,0xab,0xe4, + 0x0f,0x4b,0x02,0x4a,0x35,0x64,0x21,0x5f,0x4a,0x04,0x9c,0x8e,0x24,0x0f,0x72,0x3f,0xb7,0xea,0x6c,0xb0, + 0x4b,0xcd,0x5b,0x77,0xe2,0xb3,0xe8,0x65,0x3e,0x5e,0x21,0x44,0x14,0xff,0x36,0xe4,0xdf,0xc4,0xc0,0x9d, + 0x94,0x27,0x27,0x2f,0x89,0x75,0x0b,0xfc,0x7b,0x87,0x5e,0x7f,0x65,0x04,0xe1,0x01,0xad,0xf8,0x14,0x67, + 0x69,0x58,0x67,0x19,0xd1,0xf6,0xcc,0x95,0x69,0x33,0x7a,0x18,0x4c,0xb3,0x96,0xb0,0x8a,0xfa,0xb3,0xe2, + 0xf3,0x9f,0xf6,0x3b,0x09,0xc0,0xad,0xa0,0xd5,0x11,0xd5,0x0e,0xa8,0x0e,0x21,0x46,0xa7,0xb6,0x4b,0x69, + 0xf9,0xe0,0xe0,0xfe,0xe1,0x82,0x8e,0x18,0xb4,0xeb,0xbb,0x59,0x4e,0xc6,0x0f,0x1f,0x3d,0x78,0xf5,0xe0, + 0x64,0x5c,0xe7,0x9c,0x4c,0x6c,0x4e,0x08,0x95,0xfd,0x95,0x12,0xb7,0xcb,0xd0,0x67,0xd1,0x3e,0x9b,0x38, + 0x8c,0xde,0x79,0x2c,0x1b,0x25,0x3f,0x40,0x09,0xc2,0x83,0xfc,0x85,0x70,0xde,0xe8,0xe8,0x1c,0x9c,0x9b, + 0xfe,0x56,0xd1,0xb9,0x2a,0xa8,0xa2,0xe5,0xc1,0x1c,0x91,0xa8,0xad,0x1d,0xd2,0x65,0xe4,0x28,0x03,0xdc, + 0x13,0x19,0x00,0xd4,0x30,0x2f,0x19,0xf8,0xcb,0xdc,0x44,0xd4,0x32,0x16,0x64,0xae,0xea,0xc0,0xc1,0xc9, + 0xdb,0xbb,0x89,0x14,0xb9,0x60,0xf4,0x4d,0x74,0x78,0x46,0x44,0xaa,0xd0,0x2a,0x88,0x3a,0x3c,0x82,0x76, + 0x58,0x52,0xaf,0xc2,0xcf,0x15,0x6c,0x6d,0x33,0xff,0xa2,0x7f,0x97,0x8e,0x78,0x9a,0xd4,0x6f,0xa1,0xd7, + 0x35,0x6f,0xb5,0xb9,0x70,0xdb,0x9c,0xdc,0x97,0xf6,0x16,0xdc,0x5e,0xe6,0x2f,0xfa,0x77,0xdc,0xe2,0xc8, + 0x0f,0x0d,0x69,0x76,0x4f,0xeb,0xaf,0x45,0xe5,0xf0,0x1d,0x32,0xbe,0xc3,0xdd,0xb2,0x09,0x68,0x68,0x0b, + 0x20,0xff,0xa9,0xcd,0x3f,0x95,0xfc,0xa7,0xd2,0xee,0x59,0xb4,0x1c,0x66,0xfe,0xa9,0x53,0x8e,0x00,0x78, + 0x3a,0x3e,0x9e,0xa8,0x33,0x3e,0x96,0xba,0x75,0x5c,0xb5,0x63,0xa5,0x24,0xb6,0xd2,0x58,0x2a,0xb5,0x91, + 0xff,0xae,0x8d,0xc7,0xbf,0x04,0x55,0xf1,0xc9,0x23,0xc4,0x62,0xc1,0x2a,0x0b,0x97,0x5b,0x6a,0x32,0x71, + 0xbb,0xea,0xac,0xaa,0xe1,0x1e,0x16,0x83,0xae,0xb6,0xcc,0xd9,0xf8,0x23,0xb7,0x09,0x05,0x25,0x0c,0x83, + 0xcc,0xcf,0x1b,0x1d,0xd6,0xfe,0x23,0x4d,0x20,0x4e,0xac,0xa7,0xda,0x06,0x73,0x8d,0xb5,0xf8,0x92,0x76, + 0x71,0x22,0x1b,0xe8,0x4c,0xe6,0xa7,0xcd,0xc2,0xf0,0x7d,0xbe,0x54,0xc5,0x76,0xeb,0x8b,0xd5,0x54,0x70, + 0xbd,0x13,0x6a,0x21,0x8b,0xac,0x9b,0x42,0xb6,0xba,0xa8,0xeb,0xe4,0xd3,0xbf,0x50,0x14,0x5a,0xbf,0x99, + 0xb8,0x0e,0x2f,0xa8,0x17,0x6a,0xcd,0x8f,0xb9,0x38,0x80,0x2e,0xf8,0x82,0xdc,0x0c,0x73,0x19,0x4d,0xd9, + 0x5b,0xc3,0xde,0x5e,0xca,0x3e,0x78,0xa4,0xfb,0x1a,0x87,0x57,0xbc,0xa8,0x45,0x32,0x35,0xc7,0x8a,0x3f, + 0x1a,0xce,0xee,0xcd,0x87,0x33,0xa3,0xe4,0x77,0x6e,0x0a,0x8c,0x67,0x93,0xe1,0x8a,0x1a,0x3d,0x80,0xb5, + 0xdc,0x39,0xc6,0x64,0x10,0xe8,0xb6,0xe7,0xdd,0x06,0xdc,0xf8,0x8e,0xea,0x7c,0x7c,0x77,0x72,0xeb,0x96, + 0x56,0xe8,0xc4,0x8b,0xd2,0xc9,0x9f,0xbb,0xc9,0x9f,0xdb,0xe4,0x2f,0xdc,0xe4,0x2f,0xb4,0x35,0xe1,0x25, + 0x57,0xb3,0xd9,0x20,0x23,0xfe,0x7e,0x41,0x7f,0x3d,0x4f,0x5d,0x44,0x5e,0x6c,0x5c,0x5c,0xc3,0x7d,0xb3, + 0xd4,0x70,0x3c,0x19,0x99,0x35,0xf2,0x28,0x81,0x4b,0xdd,0xe7,0xc9,0x15,0x5c,0xa2,0x96,0x8f,0xf3,0xe2, + 0x3b,0xca,0x15,0x76,0x7f,0x1d,0xae,0x68,0x44,0x5a,0x77,0x1d,0x95,0x28,0x66,0xb1,0xc3,0x1f,0x12,0xff, + 0x92,0x96,0xd1,0x76,0xbb,0x64,0xd5,0x67,0x9e,0x64,0x56,0x60,0x25,0x02,0xea,0xee,0x38,0x61,0xd6,0xa2, + 0x95,0x82,0x75,0x2b,0x78,0xa4,0x8f,0x38,0x2e,0x42,0x8b,0xd8,0x67,0xb0,0x25,0xe3,0x2b,0x6f,0x7a,0x83, + 0x47,0x9b,0x0c,0x36,0xd9,0x57,0x4c,0x8b,0x72,0xc5,0xbe,0x5b,0x88,0x04,0xb5,0xd6,0xdd,0x5b,0x63,0x32, + 0xbe,0x6f,0x1e,0xde,0xe8,0x07,0xe0,0xce,0xa5,0xdd,0xdf,0xf6,0xad,0x63,0xe7,0xcb,0x80,0x50,0x7a,0xaa, + 0x97,0xfb,0x3e,0xdc,0xb8,0x3a,0xcf,0x4b,0xe7,0x79,0xee,0x3c,0xfb,0x6f,0xa2,0x7d,0x97,0x62,0x29,0xa2, + 0x85,0xf7,0x8e,0x08,0xf5,0x2f,0xfb,0xd1,0x1b,0xd5,0xa8,0xfc,0x6d,0x63,0xdf,0x3f,0x52,0x97,0x20,0x38, + 0x97,0xc1,0xf6,0x92,0xc5,0x91,0x6f,0x71,0x32,0x88,0x60,0x39,0x6e,0x29,0xe9,0xdb,0x9a,0x98,0xbe,0x65, + 0x1d,0xd3,0x4a,0xd4,0x94,0x77,0x48,0x6d,0x65,0x4c,0x64,0xb7,0x85,0xcf,0x32,0x22,0x89,0x12,0x72,0x9e, + 0x2b,0xe7,0x1a,0xa2,0xb1,0xfb,0x39,0x92,0x15,0x77,0x1b,0xec,0x10,0xaa,0xec,0xec,0x88,0xaa,0x0b,0x25, + 0x6e,0xc0,0x94,0xce,0xbc,0xef,0x47,0x2e,0xfd,0x55,0xed,0x90,0xee,0xd0,0x52,0xee,0x52,0x93,0x27,0x67, + 0x5b,0x8c,0x61,0xfd,0x2a,0x2b,0x56,0x04,0xa4,0xe5,0x66,0x73,0x85,0x3b,0xce,0xe1,0x73,0xa0,0x3c,0x5c, + 0x66,0x13,0xec,0x10,0xe5,0xaa,0x19,0x90,0xa2,0x56,0x76,0x26,0xa2,0x27,0xac,0x6d,0xe5,0x72,0xb6,0x46, + 0x78,0x89,0xf8,0xa8,0xbf,0xe6,0x46,0x77,0x32,0xd3,0x3a,0x93,0xf2,0x14,0xc9,0x8f,0xdd,0x44,0x7f,0xc9, + 0x95,0x4c,0x23,0xaf,0x00,0xf0,0x22,0x36,0x86,0x1e,0x94,0xcb,0xb5,0x3c,0xf1,0xfb,0x84,0xbb,0x9d,0xd2, + 0x06,0x09,0x89,0x22,0xf5,0x18,0xfc,0xdc,0x9e,0x76,0xa0,0xcf,0x1e,0x15,0x57,0xd1,0x3c,0x10,0x65,0x66, + 0x73,0x1d,0x8d,0xe4,0x95,0x28,0x5f,0xaf,0x9a,0xf2,0x54,0x1a,0x24,0xc4,0x76,0x87,0xaf,0xe3,0xcb,0xd8, + 0xcd,0xdb,0xc8,0x44,0x7d,0x46,0x8c,0xda,0x80,0x1b,0xa4,0xa1,0x9f,0xb1,0x27,0x78,0x0e,0x44,0x69,0x00, + 0xb1,0xd2,0x74,0x6c,0x61,0x19,0x7c,0xd0,0xb3,0x79,0xb4,0xc8,0x69,0xcd,0xfb,0x73,0x85,0x3a,0xe6,0xac, + 0x18,0x48,0xe3,0xbf,0x88,0xe6,0xca,0x5e,0x34,0x5e,0xe0,0x52,0x0d,0xb2,0x3b,0x54,0x7f,0x01,0x56,0x99, + 0x4d,0x0d,0xe6,0xf5,0xb9,0xe2,0x28,0xe0,0x83,0xc5,0xdc,0x39,0x58,0xe0,0x46,0xb2,0x33,0x7a,0xb1,0x15, + 0x96,0x59,0x77,0x97,0x6e,0x94,0x46,0x7b,0xab,0xea,0x90,0xe0,0xc4,0xf8,0xa1,0x49,0x38,0x82,0x27,0xbc, + 0xf4,0x68,0x1a,0xe5,0xd4,0x46,0x89,0x12,0x97,0x44,0x48,0x56,0x4b,0xc9,0xa7,0x95,0x51,0xc2,0x92,0x6e, + 0x8d,0x47,0x4d,0x1a,0x07,0xeb,0xda,0xb1,0xd0,0x4e,0xa2,0x62,0xcf,0x83,0x70,0x5e,0xdf,0x85,0xd2,0xd7, + 0x7f,0xc2,0x98,0xbf,0x23,0x52,0xa9,0x73,0x67,0xab,0xf7,0xdf,0x0a,0x97,0xa6,0x09,0x2e,0x19,0x2b,0xb9, + 0x64,0xd4,0xaa,0x2d,0x61,0xb5,0xd5,0x46,0xd6,0x1d,0x57,0xb8,0xa2,0xcb,0xac,0xaf,0x1f,0x4d,0xec,0xc4, + 0xf6,0x85,0xae,0xd1,0x66,0xd2,0xf7,0x92,0x70,0xa8,0x8b,0x4e,0x5d,0xba,0x93,0x75,0x89,0x02,0x38,0xa4, + 0x73,0x95,0x97,0x7c,0x5e,0xe7,0xd9,0xf8,0x36,0xe1,0x49,0x26,0x58,0x8e,0x0c,0x06,0x6c,0x36,0x05,0xf5, + 0x95,0x71,0x46,0xaa,0x24,0x0c,0xe0,0x27,0x2a,0x4a,0xdd,0x2f,0xa4,0xfb,0xe6,0xa3,0x1e,0xc5,0x7c,0x1b, + 0x84,0x05,0xb5,0x48,0xab,0x71,0xcf,0xc1,0x35,0x98,0x08,0xed,0x54,0xb3,0xf7,0xfe,0xb3,0x6a,0xc3,0x24, + 0xa1,0x11,0x5f,0xcf,0x58,0xa0,0x57,0x1c,0x5a,0x0f,0x08,0x6e,0x24,0xb7,0x94,0x80,0xa0,0xb0,0x39,0xac, + 0x35,0xb6,0x7e,0xed,0xe4,0x86,0x61,0x93,0xf1,0x70,0x7e,0x87,0x0e,0x30,0x77,0xbd,0x6a,0x76,0x1d,0x16, + 0x19,0x04,0x30,0x2b,0x63,0x9f,0x0f,0x60,0xa1,0xc0,0x4e,0xbf,0x38,0x8a,0xb8,0x4c,0xff,0xb1,0xe8,0x93, + 0x44,0xf2,0x55,0xe4,0x82,0x9b,0xcd,0x6d,0x4f,0xcb,0x0f,0xbc,0xdb,0x43,0x6a,0xb6,0x11,0xec,0xad,0xf9, + 0xce,0x66,0x04,0xe3,0xf3,0x49,0x34,0x17,0x63,0xeb,0xba,0x8f,0x42,0x37,0xe6,0xbc,0x74,0x24,0x2c,0x5b, + 0x2a,0x5b,0xbb,0xba,0x18,0xae,0x47,0x19,0x90,0x8e,0x38,0xaf,0xb9,0xca,0x4d,0x46,0xc4,0x19,0xcb,0x3a, + 0xf4,0xea,0xf3,0x71,0x6e,0x8f,0x6d,0x13,0x95,0x38,0xee,0xb1,0xc6,0x3b,0x3e,0xb1,0x28,0x07,0x82,0x2f, + 0xdf,0x85,0x36,0x88,0x21,0x28,0x3d,0x4f,0xde,0xd8,0x9d,0xc2,0xde,0x14,0x9a,0xd6,0x75,0x1f,0x01,0x5a, + 0x65,0xeb,0x8f,0x8e,0x89,0xdd,0x6a,0xb6,0x97,0x89,0xc3,0x6d,0x6c,0x50,0x0d,0x29,0xbf,0x09,0x2e,0xf6, + 0x3c,0x73,0xaf,0x8e,0xc4,0xa3,0x09,0x08,0x5b,0x5a,0xd3,0xac,0x55,0xed,0x8e,0x03,0xa6,0xdd,0x81,0x5d, + 0x4d,0x0d,0xe7,0x1f,0x55,0x34,0x45,0xe0,0x47,0xb9,0xc2,0x19,0xf9,0x08,0xb5,0xe9,0xd5,0xa7,0xa0,0xc2, + 0xd8,0xaa,0x30,0x59,0x35,0x09,0xa3,0x2a,0xfc,0x39,0x67,0xb7,0x7e,0xec,0xf2,0x5c,0x7a,0x3d,0xa2,0x11, + 0x43,0x9c,0xa7,0x3d,0xbe,0xed,0x95,0x0c,0x83,0x3d,0xf6,0xdd,0xe7,0xb7,0xa5,0x27,0x82,0xa5,0x97,0xf9, + 0xe8,0xf7,0xd4,0xbf,0xcc,0x83,0xf0,0xdb,0x94,0x4f,0xeb,0xf5,0x61,0xc1,0x3a,0x7f,0x53,0xce,0x11,0x94, + 0xfe,0x4c,0xe1,0xc2,0x37,0x2e,0xab,0x27,0x60,0x1a,0x40,0xb0,0x38,0x9e,0x4f,0x32,0xc5,0x66,0x15,0x5c, + 0xd3,0xcc,0x16,0xc2,0x4f,0x04,0xf7,0x71,0xd5,0x64,0x98,0x65,0xcb,0x48,0x4c,0x61,0xa5,0xab,0x34,0x7b, + 0xd5,0xa2,0x5f,0xb9,0xd1,0x50,0x5c,0x47,0xff,0x84,0x57,0x95,0xda,0x1d,0xf2,0x50,0x17,0x90,0xcb,0x98, + 0xb5,0x5c,0x42,0xe9,0xba,0xaf,0xbd,0x7f,0x3b,0x13,0x4d,0x41,0x0f,0x3a,0x13,0xd4,0xc1,0xb4,0x5f,0xd4, + 0x9c,0xb7,0xd9,0xbd,0xa6,0xf7,0x6a,0x53,0x8b,0x8e,0x6e,0xbd,0xb7,0x53,0xbc,0xce,0xa0,0xd1,0x07,0x83, + 0xa4,0x58,0x8b,0xb4,0xa0,0x97,0x58,0xe5,0x6f,0x92,0xac,0x0c,0xcb,0x2d,0x47,0x06,0x0a,0x46,0x89,0x61, + 0x1b,0x61,0x05,0x7a,0x47,0x39,0xa5,0x00,0x24,0xf3,0x62,0x8a,0x81,0x91,0xc4,0x83,0xdc,0x69,0xd1,0xba, + 0x0d,0x05,0x67,0xab,0x7a,0x4e,0x2d,0x1a,0x8f,0x93,0x1a,0x37,0x19,0xa5,0xa1,0x34,0xee,0x34,0x76,0xd7, + 0x56,0x22,0xfc,0x63,0xc1,0x06,0xe1,0x3b,0x6e,0xe2,0xdb,0xcb,0xb4,0x59,0x58,0x59,0x5b,0xb7,0x70,0xef, + 0x88,0xcd,0x23,0xe8,0xb8,0xe2,0x1b,0xdc,0x44,0x1c,0x63,0x2d,0x48,0x82,0x34,0xf8,0x22,0xfd,0x33,0x61, + 0x39,0x0e,0x4c,0xa1,0x12,0x05,0x99,0xce,0xdb,0x3c,0xfa,0x57,0x0e,0x3a,0xe1,0x5c,0x37,0x81,0x97,0xd8, + 0xc7,0x2d,0xe9,0x8e,0x6c,0xd6,0xee,0x33,0x30,0xe1,0x11,0x57,0x32,0xba,0x64,0x44,0x7b,0x6b,0xa2,0xee, + 0x50,0x53,0x53,0xbd,0x98,0x7d,0xac,0x6c,0x79,0xa1,0xe3,0x8c,0xbf,0x37,0xd5,0xdb,0xf2,0x14,0x96,0x09, + 0x5a,0x51,0x94,0x1a,0x83,0x8a,0x0e,0xfe,0xce,0x11,0xf9,0x6b,0x91,0xf9,0x6c,0x4c,0x85,0x03,0xd0,0x7e, + 0x6e,0x9f,0x77,0x4d,0x40,0xad,0x01,0x28,0xab,0x41,0x99,0xb8,0x10,0xda,0x2b,0xb4,0x75,0x1d,0xc4,0xc5, + 0x1b,0x96,0x04,0x68,0xa6,0xb6,0x0f,0xb5,0x3e,0x63,0x08,0x99,0xa8,0x45,0x6d,0x54,0x86,0x30,0x82,0x94, + 0x30,0x40,0xa0,0x98,0x77,0x04,0xa0,0x00,0xff,0xa9,0x63,0x4b,0xa7,0xc4,0x6a,0x81,0xba,0x97,0x68,0xb6, + 0xc2,0x03,0x3d,0xe6,0xa8,0x40,0xb5,0x21,0x18,0x5e,0x0c,0x55,0x19,0x7b,0x69,0x06,0x4e,0xf3,0xc0,0xf6, + 0xd3,0x58,0x2d,0xb8,0x32,0x4e,0x8e,0x1f,0xda,0xf6,0x1b,0x68,0xc2,0x53,0x6b,0xfb,0xd8,0x3a,0x03,0xd8, + 0x43,0xf8,0x5d,0x51,0x66,0xea,0x88,0xda,0xdb,0xb9,0xd8,0x3b,0x66,0xe6,0x9d,0xf8,0xec,0xf9,0xc3,0x9c, + 0x00,0xcd,0xf7,0x00,0x75,0xc0,0x69,0x22,0x9d,0x71,0xd4,0xfc,0x68,0xda,0xcb,0xef,0xc5,0xb5,0x67,0xad, + 0xb2,0x95,0x09,0x9e,0x94,0x78,0xc3,0xa2,0x96,0x61,0x15,0x77,0x43,0xcb,0x8c,0xcc,0xd3,0x2d,0xf1,0xa1, + 0x0d,0x74,0xd1,0xfe,0x0c,0x5a,0x70,0xb4,0x45,0xb1,0x38,0x72,0xf1,0xfe,0x67,0xd3,0x9e,0x64,0xc4,0x9b, + 0xdb,0x03,0x1a,0x25,0xc8,0x01,0xa4,0x01,0x22,0xca,0x2e,0x08,0xde,0x4a,0xdf,0x6c,0xee,0x36,0x92,0xd9, + 0x6d,0x3b,0xbb,0x8c,0xd0,0xd4,0x05,0x47,0x33,0xdb,0x12,0xfc,0x11,0x33,0x83,0xe3,0xa0,0xb4,0xa4,0x1d, + 0xab,0xba,0x8e,0x56,0x0c,0xf7,0xdd,0xe9,0xb2,0xc1,0xdc,0xfd,0xc4,0x75,0xf5,0xa8,0x32,0x1c,0xe8,0x13, + 0x46,0xbe,0xe1,0x7f,0x6e,0x62,0x2a,0xff,0x86,0x39,0xe1,0x30,0x06,0x70,0x0b,0x75,0x6c,0x95,0xc6,0x59, + 0x98,0x9c,0x65,0x6c,0x78,0xa4,0x65,0xc5,0xd7,0xb4,0x0d,0xd0,0xe9,0x58,0x1b,0x61,0xe6,0x26,0x74,0x6d, + 0xeb,0xba,0x84,0x3e,0xb4,0x52,0xb6,0xcd,0x60,0x7f,0x76,0x5e,0x25,0x7e,0x82,0x71,0x28,0xdf,0x30,0xca, + 0xac,0xa0,0x39,0xc8,0xa6,0x95,0xe2,0x0e,0xa8,0x90,0x1b,0xa8,0xe6,0x9e,0xe6,0x27,0xa3,0x3c,0x4c,0x03, + 0xe3,0x08,0x75,0x8b,0xca,0x32,0x23,0x37,0x67,0x47,0x3e,0xfa,0x39,0xaa,0xaf,0x9b,0xf8,0x3e,0xdc,0x5c, + 0x94,0xdb,0xcc,0x10,0xa6,0x35,0xcc,0x97,0xe1,0x33,0xd2,0xbd,0x87,0x6a,0xf5,0xce,0xf9,0xb8,0xd9,0x88, + 0x01,0xa9,0x5b,0xde,0x11,0xc9,0x20,0x8a,0x6d,0x2f,0x0b,0x3c,0xdd,0x10,0x16,0x3a,0x6d,0xe1,0x75,0x44, + 0x37,0x93,0x42,0xdb,0x5f,0x0c,0x8f,0xf8,0xf1,0x44,0x5c,0x01,0x95,0xd1,0xc3,0x9c,0xc3,0x9f,0x1b,0x39, + 0x7d,0x39,0x48,0x8a,0x22,0xa7,0x23,0x44,0x4a,0x6b,0xa7,0x4a,0x57,0x65,0x94,0xab,0x52,0x13,0xa1,0x6b, + 0x68,0x73,0xa4,0xcb,0x24,0x4c,0x94,0x7e,0x7a,0x95,0x3f,0xd6,0xa0,0x2a,0x3b,0xb4,0xf9,0x3b,0x0c,0x60, + 0x77,0xae,0x03,0xb4,0x0f,0x05,0xa2,0xf7,0x7c,0x07,0x47,0xe7,0x42,0x9e,0x02,0x7d,0x27,0xd5,0x2b,0x6a, + 0xe3,0x84,0x1c,0x6e,0xce,0xec,0x55,0xc4,0x48,0x1b,0x25,0xb9,0x69,0x41,0x9f,0x36,0x44,0xc6,0x5d,0x78, + 0x4e,0x33,0xc7,0x4b,0x38,0xde,0x13,0x6b,0x7a,0xc8,0x4c,0x0a,0x28,0x7b,0xc2,0xaa,0x1a,0x33,0x6e,0xc7, + 0xac,0xed,0x83,0x66,0x88,0xba,0xa8,0xd1,0x6d,0x5a,0x13,0x8f,0xfa,0x8a,0x2e,0x6e,0xa7,0x34,0xf5,0xf5, + 0x9c,0x80,0x29,0xc0,0x9d,0x29,0xf4,0x13,0xd0,0x7e,0x44,0xb8,0x89,0x2b,0x8d,0x6d,0xe0,0xff,0x99,0x07, + 0x83,0x5d,0xe0,0x51,0xb6,0x38,0xda,0xdb,0x83,0x27,0xfb,0xf3,0xcc,0xc7,0x55,0x53,0xe6,0xbe,0xc3,0xe3, + 0x53,0xdc,0x69,0x8d,0xf3,0xb5,0x6b,0x31,0xc6,0x61,0x6e,0xad,0x8e,0x09,0xb5,0x9d,0xc6,0x51,0x87,0x65, + 0x95,0xc9,0xfe,0x61,0xa3,0x2b,0xd0,0x3e,0x36,0x4e,0xe2,0x66,0xa0,0x4e,0xda,0xb0,0xfd,0x24,0xfe,0xd2, + 0x4d,0x32,0x0f,0x26,0x0a,0xf3,0x6e,0x64,0xd1,0x46,0xc8,0x71,0x76,0x6b,0x90,0x69,0x70,0x9b,0xe5,0x09, + 0x4e,0x51,0xf6,0x1f,0x5e,0x8e,0x01,0x2b,0x67,0xf2,0x4c,0xd7,0x31,0x08,0x8b,0xc0,0xfb,0x9b,0xb0,0xac, + 0x36,0x6a,0x02,0x33,0x0c,0x45,0x0c,0xb1,0x82,0x75,0xc5,0xb5,0xe7,0x78,0xee,0x72,0xbb,0x52,0x30,0x2b, + 0x69,0x80,0x24,0xa7,0x58,0x2e,0xbf,0x63,0xb2,0x9a,0xaf,0xab,0x86,0xc7,0xb8,0x9e,0x93,0xf4,0x7e,0x2b, + 0x3e,0xd1,0xb2,0xb6,0xf3,0xd2,0x72,0x27,0x5d,0x1b,0x6f,0xf2,0xe1,0xdf,0x9d,0x33,0x80,0x59,0x46,0x6e, + 0xbc,0x4d,0xc0,0x8d,0xde,0x75,0xb7,0x70,0x29,0x7e,0xaf,0x20,0x29,0x43,0x1c,0x2b,0xb3,0x34,0xc2,0xcc, + 0x59,0x27,0x86,0x85,0x43,0xaa,0x79,0xdc,0xea,0x48,0xef,0x60,0xa9,0xf4,0x0a,0x80,0xea,0x59,0x0b,0xdd, + 0x87,0x66,0xbe,0x88,0x2a,0x64,0xbb,0xab,0xc3,0x9a,0xec,0xa7,0xb1,0x76,0xe4,0xc3,0xe6,0x6d,0xc6,0x96, + 0x4d,0xe3,0x3d,0x8d,0x89,0xde,0xb6,0x41,0xcb,0x28,0xc1,0x93,0xf8,0x61,0xf5,0x3c,0xcb,0x7d,0x34,0x8e, + 0x1b,0xeb,0x4c,0xa2,0x3b,0xce,0x88,0x8a,0xe9,0x8f,0x42,0xe8,0x46,0xf2,0x33,0xd0,0x59,0xa3,0xc4,0xef, + 0x0c,0x33,0x2b,0xa5,0x21,0x17,0xc6,0xef,0x20,0xbe,0x98,0x8d,0xe4,0x91,0x16,0x25,0x9d,0x73,0x7f,0x59, + 0x27,0x4f,0x8e,0xff,0x91,0xa1,0xf4,0xb6,0x15,0x84,0x9a,0xba,0xb5,0x26,0x04,0x01,0x0a,0x52,0xd7,0x86, + 0x0e,0xaf,0x20,0x7d,0xee,0xe8,0x19,0xee,0xda,0x73,0xb6,0x59,0xd2,0x4f,0x4c,0xc2,0x7c,0x6f,0x7c,0xb9, + 0x4e,0x0e,0x52,0x6a,0x67,0xd2,0xf3,0xfa,0xf0,0x43,0x79,0xeb,0x56,0x23,0x03,0x6f,0xe9,0xd3,0x37,0xae, + 0xa3,0xed,0xa4,0x15,0x10,0x4f,0x0e,0x5d,0x3b,0x80,0xaa,0xea,0x12,0x2e,0x0d,0xba,0xd4,0x73,0x80,0x75, + 0x7b,0xd1,0xb8,0x4e,0x6d,0x45,0xd9,0x43,0x98,0x3d,0x1b,0x5b,0xc2,0xa9,0x2c,0x75,0xe3,0x83,0x8b,0x28, + 0xd0,0x5e,0xea,0x5b,0xe6,0x0f,0x12,0x07,0x08,0x02,0xeb,0x4f,0x60,0xfb,0xf4,0x6a,0x86,0x1a,0x5f,0xca, + 0x3f,0x66,0x2d,0xb0,0x60,0xc2,0x9c,0x2c,0xc5,0x20,0x9d,0xd8,0xda,0xa6,0x42,0x2b,0x27,0x8e,0x52,0x36, + 0x35,0x0c,0x77,0x96,0x7f,0xc5,0xa1,0xe6,0xe1,0x30,0x19,0xd9,0xc2,0x3b,0x4e,0x85,0x2c,0x12,0x7c,0x6f, + 0x76,0xe5,0xa3,0xcd,0xe3,0xae,0x36,0x29,0x11,0x74,0x24,0x8d,0xe4,0x51,0x5d,0x13,0xc7,0x12,0xd3,0x66, + 0x57,0x88,0x7d,0x52,0x19,0xa6,0x8e,0x37,0xd0,0xbc,0x36,0xe2,0xc6,0x8c,0xe8,0x46,0x2d,0x0e,0x54,0x0d, + 0x95,0x2c,0x23,0x9b,0xd3,0xea,0x0b,0x1b,0xc7,0x26,0x72,0x9c,0xdc,0x60,0x8c,0x12,0x21,0x50,0xe1,0x20, + 0x3e,0x83,0x18,0x5b,0x61,0x8c,0xc9,0x08,0xae,0xbc,0x83,0x51,0x76,0xff,0x78,0x74,0x1c,0x1e,0x85,0xc7, + 0x61,0x35,0xe2,0x3c,0x17,0x29,0x8a,0xde,0x09,0xc2,0x23,0x13,0x4e,0x15,0x7e,0xb7,0xf4,0xfd,0xd0,0x64, + 0x94,0xb1,0x14,0x88,0x4f,0x5a,0xa1,0x33,0xb7,0xb1,0x83,0x05,0x7c,0x34,0xe5,0xb0,0xdf,0xed,0x53,0x6a, + 0xc3,0xed,0x7b,0xe9,0x0a,0x9d,0x1c,0x54,0x50,0x86,0xab,0x12,0x76,0x8a,0x0e,0x31,0xf7,0x76,0xd0,0x24, + 0x35,0xfc,0x7a,0x2e,0xe1,0x78,0x70,0xd9,0x60,0xa2,0x95,0xe4,0xc6,0x2d,0x45,0x64,0x63,0x6a,0xe8,0x2b, + 0x09,0x34,0xc6,0x9c,0x4d,0x1e,0x4c,0x89,0xe2,0xac,0xa3,0x58,0x2d,0x04,0xa9,0xe1,0xa7,0x91,0xbd,0x8f, + 0xe6,0x60,0x65,0x46,0xcc,0xd5,0x94,0xcc,0xdc,0x28,0x4e,0x09,0x39,0x85,0x1f,0x35,0xaf,0xaf,0xd6,0x06, + 0xe8,0x45,0x33,0x44,0x01,0x33,0x87,0x4b,0x76,0xb0,0x0d,0x27,0xcf,0xda,0x1d,0x9c,0xcd,0xb2,0xae,0xdd, + 0xfb,0x2e,0x59,0xdd,0x17,0x22,0xbf,0x0e,0x99,0x47,0x62,0x5c,0x9d,0xd5,0x16,0x8c,0xa7,0x82,0x41,0xec, + 0x15,0x6d,0x1f,0x2b,0x7f,0x20,0x09,0x5b,0x5d,0x8f,0x43,0x4d,0xf8,0x02,0x1b,0x92,0x12,0xec,0x6b,0xb5, + 0xa9,0xb9,0x3e,0x51,0xf9,0xec,0x18,0x12,0x9e,0x02,0x79,0xd3,0x4c,0x89,0x53,0xcf,0x4d,0x26,0x88,0x12, + 0x09,0x82,0x9a,0x1d,0xca,0x82,0xda,0x3b,0x0f,0xe5,0xae,0x8a,0x77,0x1a,0xa2,0xed,0xf8,0x49,0xc4,0x05, + 0x35,0x93,0xa4,0x6e,0x62,0x11,0x4b,0x8b,0xbb,0x46,0x5d,0x21,0xb2,0x37,0xea,0x90,0x12,0xca,0x91,0xd3, + 0x82,0xc0,0x8d,0x46,0x8c,0x13,0x54,0xc1,0x91,0x99,0xa5,0xb2,0xcd,0xa6,0xac,0x8f,0xb6,0xa2,0x32,0xe1, + 0x9e,0x5f,0x33,0xf8,0xfa,0x71,0x13,0x6a,0x36,0x74,0x5a,0xb7,0xbd,0xb6,0x6d,0x4f,0x77,0xda,0x76,0x5a, + 0x06,0x9e,0x1b,0x57,0x70,0x5b,0xd6,0x7d,0xaa,0xd5,0xe0,0xe8,0xf4,0xbc,0x25,0x2e,0x5c,0x4c,0x47,0x32, + 0xeb,0x9b,0x0c,0xa7,0xf6,0x5a,0x33,0xc2,0x4c,0xc6,0xd2,0x3d,0x2e,0x64,0xed,0x59,0x2d,0x46,0x7b,0xc4, + 0x58,0xf0,0x6c,0x42,0xec,0xed,0x7b,0x59,0x5e,0xd1,0x4e,0x95,0x96,0x55,0x4f,0x6f,0x23,0xbd,0x54,0x7b, + 0xfa,0x01,0xe2,0x52,0x9a,0x7d,0xf7,0xa0,0x72,0xcc,0x1e,0xa6,0x9b,0x85,0x9a,0x05,0xc0,0x17,0xf4,0x74, + 0xa3,0x52,0xc2,0x0d,0x2c,0x91,0x08,0x26,0xca,0x4a,0xda,0x61,0x07,0xf1,0xd1,0x06,0x32,0x6c,0xd3,0xc1, + 0x11,0x6d,0xbc,0x08,0x5a,0xc2,0xeb,0x86,0xe5,0x0f,0xd5,0x39,0xfc,0xd1,0x68,0xa4,0xe4,0x8b,0x61,0x5a, + 0xb7,0xc4,0x03,0x5c,0xe3,0x53,0x88,0x38,0xb7,0x9a,0x00,0x22,0x19,0xe4,0x8f,0xb8,0x6d,0x91,0xfe,0x13, + 0x6f,0x90,0x4b,0x05,0x74,0x3e,0x30,0x15,0xd0,0x12,0xe5,0x0a,0xcc,0xd4,0x6f,0x36,0x53,0x8e,0x2c,0x63, + 0xa2,0xb6,0xa4,0x16,0x96,0x70,0x82,0x54,0x69,0x19,0xaa,0x09,0x89,0xe7,0x2f,0x69,0xa6,0x19,0xae,0xc1, + 0xc0,0xc4,0x84,0x5f,0x2a,0x5a,0xc0,0xe6,0x14,0xb5,0xbb,0xe8,0x0a,0x87,0x87,0xaf,0xe0,0x65,0xd5,0x44, + 0x8e,0xc7,0xe6,0xdb,0x8e,0x0b,0x02,0xdf,0xf2,0xec,0x8b,0x51,0x67,0x4b,0x58,0x08,0x45,0xbc,0x50,0xc0, + 0x2c,0x98,0x59,0xab,0xeb,0xc6,0x4a,0x15,0x4b,0x29,0xcd,0x24,0xfa,0x9e,0x09,0xd0,0xdb,0xfb,0x0f,0x8c, + 0xfd,0x3f,0x30,0x5f,0x97,0x07,0x55,0xaf,0x8e,0x9b,0xad,0xc5,0xe3,0x7a,0x86,0xcb,0xf5,0x0a,0x6c,0x49, + 0x4f,0xcc,0x74,0xc4,0x52,0xad,0x11,0xd0,0x83,0x97,0x7c,0xbd,0xf3,0xca,0x19,0x0f,0x4f,0x7a,0xd5,0x78, + 0x34,0x71,0x9e,0xd5,0x42,0x04,0xb7,0x0b,0x4d,0x47,0xe6,0x78,0x87,0xa2,0x98,0x87,0x25,0x00,0x1d,0xc0, + 0xde,0x57,0xc7,0xa1,0xfc,0xde,0x95,0xdf,0xcf,0xbf,0x94,0xdf,0xbb,0x9f,0xeb,0xdf,0xaf,0x74,0xfa,0x3f, + 0x42,0x1b,0x80,0x4c,0x0a,0x7c,0xa1,0x33,0xe8,0x02,0x9f,0x7f,0x11,0x1a,0xf5,0xe2,0x19,0x54,0xdd,0x25, + 0xd7,0xdd,0x3b,0xba,0x7a,0xf9,0x39,0x3e,0xd2,0xbf,0xba,0xb5,0xe3,0x2f,0x75,0xc2,0x97,0x5f,0xdc,0xf9, + 0xbb,0xce,0xf3,0x8f,0x3b,0xa6,0x10,0x3d,0xdd,0x35,0x95,0x5e,0x95,0x9e,0xbd,0xf8,0xbb,0x1f,0x7d,0xf5, + 0x77,0x3a,0xb2,0xdc,0x8b,0x8e,0xef,0xdc,0xd9,0x6c,0xe8,0xf5,0xcb,0x2f,0xf8,0xf5,0xab,0xa3,0x91,0x6e, + 0x3c,0xa4,0xc4,0xcf,0xbf,0xe2,0xc4,0x2f,0xfe,0x3e,0xf2,0xc4,0x10,0xc2,0x0b,0x3d,0xbe,0xf6,0xe9,0x08, + 0x48,0x02,0x30,0xc9,0x5e,0xa7,0xf1,0xc2,0xf7,0x8e,0xbc,0x3d,0x27,0x78,0xf1,0x11,0x64,0x68,0x69,0xf9, + 0x3c,0x7e,0x2e,0x41,0xd9,0x88,0xe0,0x26,0xea,0xb1,0x89,0x56,0xd7,0x79,0xe7,0xd6,0x04,0xbb,0xe9,0xbb, + 0xad,0x54,0x7f,0xb2,0xca,0x3c,0xc7,0xd4,0xc2,0xdd,0xcf,0x21,0xd6,0xb9,0x75,0xeb,0xee,0x57,0xf8,0x1d, + 0x55,0xa1,0x0d,0xe3,0xa6,0xe8,0x3b,0x8e,0x82,0xa1,0xf7,0x99,0xd7,0x4f,0x4c,0x00,0x74,0xf1,0x6f,0x75, + 0x69,0x68,0x61,0x7d,0x2a,0x33,0xbe,0x37,0xa0,0xa9,0x30,0x16,0xb6,0xaf,0xa7,0x3d,0xe5,0x79,0x6a,0xb1, + 0x9b,0xff,0x3c,0x2e,0x7f,0xbc,0xca,0x4c,0xa0,0x3d,0xf5,0x2e,0xea,0x62,0x50,0x9f,0x64,0xd5,0xd2,0x09, + 0x16,0x86,0xd7,0xc1,0x23,0x44,0xb6,0x49,0x2f,0x12,0x3a,0x3c,0x5c,0xc4,0x95,0x3a,0xfd,0xe8,0x82,0xe2, + 0xc5,0x4f,0x17,0x3b,0x8b,0xae,0xc5,0xb1,0xc6,0xc3,0x56,0x90,0xca,0x86,0x4f,0x23,0xf7,0x00,0x58,0x0d, + 0xb0,0xda,0x22,0xf9,0xe1,0x7b,0xc4,0xd3,0x53,0x3c,0x8e,0xae,0xb7,0xa1,0x89,0x48,0xc4,0x34,0xe1,0xda, + 0x66,0xb6,0xe4,0x92,0x7a,0xf4,0x4c,0xa7,0x4b,0xa1,0xc0,0x6c,0x77,0x08,0xb4,0x38,0x34,0xa9,0x9d,0x4e, + 0x6f,0x12,0xe2,0x16,0x12,0xe5,0x30,0x3e,0x15,0x1b,0x13,0xb8,0x9b,0x51,0xd2,0x11,0x81,0x51,0x42,0x9a, + 0xa2,0x52,0xf6,0x1d,0xfc,0x94,0x89,0xc4,0xb3,0xa4,0x2c,0xe3,0x05,0xfb,0xce,0x91,0xbd,0x4f,0x6f,0x3f, + 0xd4,0x8c,0x78,0x9c,0x3a,0x75,0xc6,0xa8,0xea,0x94,0x5f,0x91,0x2b,0xd1,0x1e,0xc1,0xa4,0xab,0x57,0x48, + 0xc2,0x26,0x02,0x4d,0x65,0x3f,0x70,0x32,0xb3,0x8e,0xc4,0xb4,0x48,0xcf,0x12,0x7c,0x7a,0x08,0x53,0x1f, + 0x8e,0x3e,0xc4,0x87,0x36,0xc9,0x66,0x72,0x88,0x33,0xb8,0x6d,0x1d,0x8f,0x43,0x83,0x50,0x60,0xc5,0x33, + 0x50,0xe4,0x79,0x65,0x82,0xdc,0xe3,0x59,0x88,0xde,0x6e,0x4a,0x03,0xd6,0x7c,0x7d,0xca,0x7d,0x41,0x86, + 0xa8,0x9d,0x57,0xcf,0xd4,0x60,0x4e,0xfc,0xd9,0x19,0x1d,0x64,0x04,0x38,0x3b,0xd9,0x5a,0xdf,0x4d,0xa9, + 0x92,0x0e,0x86,0x99,0xe8,0x9f,0x2e,0xd9,0x48,0xe1,0x57,0x56,0x05,0x6f,0x17,0xee,0xcc,0xc6,0x8e,0x7a, + 0x9b,0x18,0x50,0x7c,0x10,0x03,0x0a,0xf0,0x8b,0xbb,0x18,0x60,0xa7,0x97,0xe7,0xb4,0x8c,0x8a,0xee,0xc9, + 0xc4,0x05,0xfb,0x33,0x03,0xd8,0xff,0xb6,0x39,0x55,0xce,0x66,0xa1,0xc1,0xf6,0x2e,0xe3,0x6b,0x3e,0xfb, + 0xc2,0x77,0xe1,0xe2,0x17,0x90,0xe1,0xdb,0xe8,0xd0,0x7e,0xdd,0x21,0x81,0xbe,0x1f,0x58,0x47,0xf1,0x7f, + 0x1d,0x2f,0x46,0xbe,0x8b,0xe5,0x3b,0x58,0xf1,0xd7,0x87,0x8b,0xb3,0xb9,0xdc,0x92,0xe0,0x92,0x55,0x07, + 0x58,0x30,0x3d,0x6a,0xbc,0xef,0xe0,0xa9,0xbb,0xec,0xdc,0x8c,0xff,0xa9,0xee,0x18,0x3f,0x70,0x8f,0xda, + 0x61,0x6a,0x8d,0x23,0x38,0xe9,0x9a,0xbf,0x53,0xb8,0xd1,0xa3,0xc1,0x3a,0x7b,0x5f,0xcb,0x5a,0xf0,0xb9, + 0x53,0x47,0x07,0x96,0x35,0xaa,0xd5,0x69,0x7e,0xab,0x06,0xe7,0x93,0xa9,0xa1,0x81,0x18,0xdd,0xe8,0xd2, + 0xae,0xa5,0xf1,0xd1,0xed,0x89,0x84,0x8d,0xdb,0x6e,0xd5,0x95,0xf1,0xda,0x8a,0xd4,0xda,0x9b,0x63,0xbc, + 0x84,0xa1,0xb7,0x38,0x56,0x64,0xad,0xb7,0x6b,0xd7,0x93,0xad,0xd6,0x0a,0x08,0xc5,0x65,0xe2,0x96,0x23, + 0x92,0x37,0x73,0x18,0x8e,0x0b,0x17,0x87,0x86,0x1f,0x75,0x33,0x6c,0x15,0xdf,0x86,0x97,0x3a,0x71,0xcc, + 0xdc,0x9e,0x75,0x26,0xbb,0xdd,0xf1,0xe4,0xd8,0x60,0xed,0xb9,0x5b,0x90,0x4f,0x48,0xf8,0x0c,0x44,0x91, + 0xad,0xad,0xcd,0xf0,0xdd,0x41,0x1c,0x89,0xa7,0xe1,0xe7,0x22,0xd8,0xff,0xa0,0xeb,0x58,0x1d,0x16,0x2e, + 0x92,0x1f,0x1b,0x7e,0x97,0xf8,0x79,0xc7,0x91,0xab,0x08,0xe0,0x0b,0x61,0xa4,0x11,0xcd,0x43,0x33,0xd2, + 0x6b,0x08,0xa8,0x97,0xf8,0xc0,0x63,0x63,0x83,0xd0,0x79,0xeb,0xb8,0xb6,0x0c,0x46,0x4b,0x13,0xf4,0xf7, + 0x28,0x74,0xf7,0xad,0x65,0x60,0xd3,0x59,0x03,0xbb,0x75,0x66,0x72,0xfd,0xf1,0x61,0x19,0xd5,0x01,0xcc, + 0x6b,0x96,0xc7,0x09,0x6a,0xce,0x5d,0x30,0x5c,0x4f,0x1d,0xf7,0xfc,0xd6,0x2d,0x8f,0x2f,0x13,0xb7,0xdb, + 0x5a,0xa4,0x7f,0xeb,0x56,0x6e,0x5b,0xa6,0x43,0xe9,0x8a,0x6a,0xf7,0xbd,0x27,0xf3,0x9e,0x8c,0xa2,0x07, + 0x68,0xf7,0xd2,0xb2,0x07,0x27,0x33,0x3d,0xda,0x03,0x7a,0x0c,0xeb,0x5e,0x22,0x22,0xd3,0xb2,0x07,0xf3, + 0x87,0xde,0x79,0x7c,0x99,0x48,0x01,0xc9,0x4f,0x99,0x07,0x74,0x0a,0xea,0x18,0xfb,0x2e,0x4d,0xc7,0xb1, + 0x60,0x4d,0x07,0x40,0x38,0x0f,0x6d,0x43,0xa4,0x6b,0x07,0x58,0xc3,0xf3,0xd9,0x92,0xfe,0x40,0xc5,0xf2, + 0x86,0xfa,0xe4,0x6c,0xbf,0x1a,0x79,0x30,0x9f,0x6a,0x83,0x25,0xa4,0xd4,0x64,0xb8,0x86,0xf0,0x0b,0xe2, + 0x4c,0xed,0xf5,0x5f,0xa5,0x2a,0x1e,0xa4,0xbe,0xc4,0x9e,0xc0,0xd2,0x78,0x1b,0xed,0x10,0x8a,0x29,0xb5, + 0x44,0x9b,0x4b,0xc7,0x05,0xc9,0x76,0xf8,0xd6,0xe1,0xe7,0x52,0xd8,0x0d,0xae,0x72,0xc8,0xc3,0x5d,0x39, + 0x51,0x6d,0x3e,0xec,0xd4,0x06,0xd7,0x72,0xe6,0x90,0x0a,0x2d,0xbc,0xf7,0x6a,0xf4,0xd1,0xc1,0xcf,0xf3, + 0x5c,0xb5,0x3e,0x2b,0x6f,0x1e,0x67,0xfd,0x3e,0xcb,0x67,0xbc,0x6b,0xed,0xff,0xb5,0xc0,0xb5,0x82,0x73, + 0xad,0xcf,0xea,0x29,0x9e,0xd6,0x15,0x2b,0x70,0x99,0x8f,0xba,0xe4,0x48,0x4a,0x0f,0x62,0x63,0xa1,0xeb, + 0xf1,0xb6,0xac,0xc3,0x32,0x0c,0xf2,0x7e,0x94,0x2a,0x9b,0x2c,0x32,0x89,0x7d,0xe1,0xbb,0xf3,0x60,0xe4, + 0xb1,0xb3,0xd1,0xf0,0x4d,0x9d,0x00,0x62,0x32,0x23,0x4e,0x7f,0x2d,0x4e,0xe9,0xbc,0xa1,0xe9,0x82,0x34, + 0x9b,0x8b,0x47,0xec,0x78,0x2b,0x5a,0xf2,0xde,0xff,0xc7,0x7d,0x1d,0x51,0x9f,0xc1,0x98,0xd3,0x8c,0x40, + 0xe4,0x47,0x4d,0x06,0x21,0xfe,0x9a,0x13,0xc7,0x07,0x47,0x02,0xd1,0x8c,0x21,0x6f,0x16,0xaa,0x51,0xd1, + 0x10,0x55,0x67,0xf5,0xe1,0x53,0x49,0xf0,0xe9,0xb6,0x6c,0xc5,0x0c,0x87,0x83,0xd4,0xed,0x8e,0x04,0xb0, + 0x35,0x2f,0x6c,0x1b,0x6e,0x7a,0xc7,0xa0,0x1b,0xa6,0xed,0x49,0x89,0x69,0x40,0xe9,0xc4,0x1c,0xf8,0x62, + 0x7d,0x2f,0x8d,0x93,0x95,0xf4,0x3f,0xd4,0x27,0xda,0x58,0x1f,0xce,0x45,0xeb,0x95,0xcf,0x6d,0xba,0x23, + 0x3a,0x43,0x36,0x66,0x4e,0x87,0xf8,0x76,0x93,0x57,0x1d,0x1f,0x05,0x93,0x46,0x01,0xd3,0x5b,0xf9,0x15, + 0xb5,0x70,0x5b,0x5c,0x97,0x22,0x1e,0x37,0xed,0xf7,0x2d,0x50,0xb7,0x1c,0xee,0x6e,0xcb,0x93,0xba,0x1f, + 0x1d,0xfe,0xe1,0x9f,0xcc,0x82,0xfe,0xa1,0x7a,0xc3,0x8f,0x57,0x78,0x7c,0x48,0x60,0x7a,0x10,0x1d,0xab, + 0x97,0xd1,0x1d,0xf5,0x2a,0xba,0xab,0x7e,0xa4,0xf7,0xd7,0xd1,0xe7,0xea,0x69,0xf4,0x85,0xfa,0x26,0xfa, + 0x52,0xbd,0x88,0xfe,0xae,0x9e,0x44,0xff,0x50,0x8f,0x70,0xa0,0x7f,0x34,0xfe,0x71,0x12,0x5d,0x5f,0x95, + 0x21,0xfd,0x2a,0x3e,0x06,0x86,0xe3,0xbb,0xea,0xe1,0x44,0x79,0x63,0x2f,0x1c,0xbf,0x9e,0x28,0xda,0xe4, + 0xc3,0xf1,0x8b,0xc9,0x56,0x3d,0x1a,0x1f,0xeb,0x9c,0xc7,0xf4,0x75,0x40,0x5f,0xef,0x74,0xe6,0xba,0xa3, + 0x73,0xdd,0x69,0xd6,0x77,0xa4,0x7f,0xe5,0x54,0x29,0x2f,0xc8,0x7e,0x97,0xb2,0x7f,0x28,0x9f,0xe2,0x56, + 0xd5,0x03,0xd3,0x2e,0x3f,0x71,0xcb,0x78,0x92,0xb6,0xe9,0x09,0xd5,0xbd,0xa6,0xea,0xbc,0xdb,0xf4,0xe9, + 0x29,0xca,0xdd,0xf6,0x6e,0x87,0xe3,0x6f,0xea,0xe1,0xa8,0x97,0xf4,0x34,0xf1,0x50,0xd9,0x2b,0x29,0xf8, + 0x84,0xed,0xf9,0xf0,0x49,0xba,0xf3,0xd4,0x94,0x47,0x42,0x23,0xc7,0x53,0x9d,0xe3,0x1b,0xca,0xc1,0xf5, + 0xee,0xe4,0x40,0x43,0x32,0x31,0x8f,0xd9,0xe6,0x99,0x58,0xb5,0x62,0x9d,0x6c,0xd8,0x96,0x73,0x73,0x30, + 0x1a,0x9f,0xcc,0x06,0x93,0xfe,0xe6,0x36,0xfb,0xc0,0xba,0xbd,0xf1,0xd8,0x2d,0x96,0x17,0x50,0x3e,0x38, + 0x26,0xba,0x81,0x6c,0x75,0x53,0xad,0xe7,0x0e,0xd5,0x62,0x2c,0x7b,0x41,0x9b,0xda,0xae,0x84,0xca,0xa5, + 0x58,0x0e,0xc1,0x82,0x0a,0x69,0xd2,0x21,0xcf,0x32,0x61,0xef,0x62,0x84,0xf2,0xc1,0x82,0x5b,0x47,0x07, + 0xc7,0xb4,0x35,0xfe,0xc8,0x71,0xef,0xce,0x81,0x2e,0x58,0x33,0xe7,0xe3,0x07,0x93,0x86,0x71,0x87,0xd9, + 0xa7,0x32,0xd6,0xe5,0x11,0xec,0x85,0x8b,0x42,0xf9,0x00,0x5b,0xfd,0xf1,0xc3,0x8e,0x12,0x90,0xd4,0x8e, + 0xb2,0xa8,0x08,0xb3,0x3e,0x31,0xfe,0x94,0xe9,0x65,0x23,0x13,0x0a,0x11,0x67,0x34,0x27,0xdc,0xa7,0x6f, + 0xaf,0x1a,0xdf,0xa0,0x11,0x79,0xff,0x28,0x98,0x1f,0x1c,0x50,0xf7,0x5e,0x2b,0xc9,0x6a,0xef,0x22,0xd1, + 0xdb,0x3d,0x5c,0x7d,0xf8,0x59,0x34,0x63,0x97,0x79,0x56,0x2c,0x8a,0xbe,0x43,0x1d,0x73,0xa8,0x65,0xe0, + 0x4b,0x76,0x18,0xbf,0xee,0xf7,0xe1,0x3f,0x91,0x95,0x85,0xe0,0x73,0x71,0x8d,0x1b,0x8b,0xbd,0xd6,0x79, + 0x9a,0x3f,0xf4,0x8f,0x99,0x5a,0x43,0x6c,0xf4,0x94,0x76,0xe5,0xdb,0xac,0xd6,0xb5,0xd9,0xe0,0xfd,0x9b, + 0x5b,0xb7,0x08,0x2d,0xf0,0x6e,0x7d,0x77,0x53,0xb5,0x44,0xad,0xa9,0xe2,0x7e,0xa2,0xfb,0x88,0x08,0xcb, + 0x7e,0xa0,0xad,0xb8,0x56,0x10,0x8b,0x81,0xcf,0x29,0xa3,0x47,0xe3,0xe5,0x24,0x20,0xba,0xb3,0xd9,0x94, + 0xac,0x08,0xba,0xd9,0x3c,0x81,0x6c,0xf9,0x89,0xd1,0x0a,0xe2,0x36,0x61,0xc7,0xa2,0xfc,0x38,0x3a,0x1f, + 0xe7,0xb4,0x06,0x27,0x72,0x0f,0x9b,0x63,0xa1,0x15,0x91,0x05,0x69,0x31,0x82,0x0c,0x91,0x87,0x4f,0xe7, + 0x9f,0xa0,0x51,0x41,0x14,0xbd,0xb0,0xce,0x51,0x45,0xd9,0xcd,0x32,0xa4,0x06,0x47,0xa8,0xf7,0x2a,0x01, + 0xdb,0xb5,0x55,0x2e,0x92,0x2d,0x92,0x0a,0x28,0xc6,0x82,0xdc,0xd6,0xde,0x08,0x19,0x79,0x52,0x3b,0x68, + 0xad,0x2f,0x61,0x8c,0xf7,0x6d,0x83,0x9f,0xf0,0x58,0xcb,0xe3,0x2e,0x5a,0x1c,0x06,0xc2,0xbb,0xa1,0xeb, + 0xc6,0x9d,0x76,0xa3,0x26,0xc7,0xda,0xa7,0x36,0x35,0x23,0x22,0xad,0x5d,0x70,0xe7,0x43,0xe3,0x78,0x3b, + 0x1e,0x17,0xe3,0x72,0xe2,0x5c,0x76,0x40,0xd9,0x2c,0xb8,0x16,0x37,0x54,0xda,0x36,0x21,0x8e,0xa6,0xaa, + 0xac,0x89,0x69,0x2c,0xab,0xf5,0xd9,0x0d,0x2b,0x67,0x58,0x9f,0xff,0x00,0x27,0x68,0xcb,0xda,0xdb,0x25, + 0x61,0x1e,0x37,0x1b,0x2f,0xc9,0x0e,0x7e,0x7e,0xe9,0xb1,0x3c,0xb7,0x79,0xd6,0xae,0xbf,0xb1,0x45,0x92, + 0x3e,0xe2,0x32,0x7b,0xa9,0xc3,0x98,0x3b,0x32,0x20,0x49,0x87,0x15,0x65,0xe6,0x88,0x78,0x38,0x75,0xa8, + 0x5d,0x59,0x5f,0xc8,0x05,0x9f,0xbc,0xcd,0xf9,0x7b,0x85,0xa3,0xe6,0xc0,0x3e,0x6f,0x36,0x38,0x28,0xbf, + 0xd5,0x59,0x2e,0xd2,0x12,0xae,0x40,0xd0,0xb6,0x3c,0x89,0xc0,0xd3,0x78,0x97,0x66,0xa1,0x02,0xcb,0x16, + 0x1a,0xe9,0x38,0xd5,0x46,0xce,0xb9,0x57,0x8e,0xbc,0x7b,0x7b,0xf2,0x64,0x5a,0xd7,0x03,0x65,0x7d,0x28, + 0x27,0xb3,0x9b,0x2e,0x85,0xdc,0x14,0xd3,0x42,0xa7,0xec,0xc1,0x12,0x91,0xaa,0x5b,0xea,0x40,0x2c,0xee, + 0xde,0x0d,0x9f,0x74,0xbd,0x4d,0x80,0xe2,0xe6,0x1d,0x8c,0xbd,0x7c,0x73,0x81,0xda,0xfc,0x82,0xd3,0x00, + 0xcb,0x17,0x9e,0xd7,0xd5,0xc4,0xb5,0xbb,0x00,0x22,0x82,0x92,0xcc,0xf7,0x07,0x2d,0xcc,0xd7,0x54,0xc5, + 0xdf,0xc3,0x60,0xb3,0xcd,0xa6,0xf0,0x13,0xa9,0xb0,0xb1,0x5c,0x24,0x9c,0xb6,0x31,0x4a,0x3f,0x85,0xd3, + 0xd8,0x5f,0x9e,0xf9,0xe6,0xbe,0x33,0x53,0x4d,0xac,0x09,0xe1,0xbe,0x51,0x50,0x85,0xd8,0xae,0x16,0x92, + 0x84,0xb1,0x6a,0xa0,0x47,0x58,0x12,0x47,0xa6,0x7e,0x8a,0xae,0x2f,0x2f,0xc2,0xeb,0x6d,0x5d,0x90,0x9e, + 0xdb,0x25,0x29,0xa9,0x59,0xf4,0xba,0x3e,0xe1,0x6d,0xdb,0x7d,0x40,0x5d,0x82,0x33,0xfc,0xd1,0x80,0x0d, + 0x2f,0x9d,0x33,0x40,0x1f,0xb6,0x66,0x73,0x79,0xe6,0xba,0x1e,0x96,0xc1,0x76,0x2c,0xaf,0x73,0xe3,0x0b, + 0x5a,0xea,0x1b,0xb6,0xde,0x21,0x7d,0xa9,0xd1,0x9e,0x66,0x87,0x78,0x48,0x4c,0x0c,0x54,0x63,0x55,0x3b, + 0x6f,0xb2,0x55,0x6e,0xa3,0x9d,0xc7,0xfd,0x5d,0x5f,0x08,0xcd,0x89,0xae,0xd5,0xcd,0xdc,0xaa,0x6e,0x90, + 0x1d,0x34,0x2a,0x6b,0x19,0x0e,0xf0,0x69,0xcf,0x0d,0x61,0x92,0x39,0xb6,0x9a,0x12,0xd4,0x2e,0xbb,0x7f, + 0x70,0x1c,0xc8,0xfd,0xf4,0x14,0x72,0x4c,0x28,0x48,0xfa,0x1d,0x7d,0x52,0xed,0xee,0x34,0x64,0x5b,0x6d, + 0xf3,0x4a,0x11,0x11,0x36,0x5c,0x82,0x13,0xf0,0x06,0xfb,0x5c,0xc8,0xf7,0xf6,0x51,0x75,0x23,0x44,0x85, + 0x6b,0xd0,0xd0,0x02,0x86,0x6b,0xdf,0x70,0xde,0xe9,0x14,0xb9,0x5d,0x84,0x0e,0x82,0xec,0x04,0xbd,0x9d, + 0xb8,0x13,0xf8,0x62,0xab,0xae,0x67,0x49,0xb2,0x12,0xd5,0xe4,0xdd,0xd1,0x69,0x31,0x66,0x73,0xab,0xdf, + 0xab,0x49,0x13,0x2d,0xb4,0x9a,0x7e,0xed,0xec,0x38,0x95,0x89,0x65,0x72,0xd1,0x84,0x03,0x0b,0xc8,0x1c, + 0x60,0x08,0xe2,0x3b,0xd0,0x60,0xcf,0x1e,0xfb,0x74,0xfc,0x85,0x15,0x8b,0xf9,0xca,0x7e,0xf9,0x5b,0xfd, + 0x57,0xd7,0xe9,0x05,0xb1,0xea,0x29,0xe4,0xed,0x32,0x84,0x9f,0x50,0x31,0xad,0x77,0xb7,0xcf,0xad,0x49, + 0x40,0x26,0xb3,0x36,0x6f,0xc8,0x1a,0x6b,0x04,0xa0,0xaf,0x5a,0xc0,0x5d,0xb2,0x07,0xf0,0x9f,0xda,0xfb, + 0xc4,0x87,0xcb,0x37,0x2f,0x17,0x4c,0x35,0x8d,0xc5,0xff,0xe1,0x4a,0xdc,0x8b,0x06,0x53,0x85,0xc0,0xe5, + 0x03,0x63,0x35,0x97,0xee,0x75,0xfe,0x32,0xa9,0x3a,0x56,0x1f,0x66,0x83,0xe1,0xad,0xdf,0x6a,0xb0,0x57, + 0xdc,0x58,0x93,0x22,0x7d,0xa8,0xd1,0x66,0xee,0x8e,0xf2,0x1f,0xdb,0x89,0x66,0x31,0xd3,0x19,0x4d,0x0c, + 0xdf,0xdb,0x0b,0x9d,0xc7,0xcd,0xde,0xdd,0xa8,0xdd,0x97,0xb9,0x9b,0x86,0xb6,0xbe,0xb7,0x6e,0x9b,0xab, + 0x59,0xa4,0xbb,0x7e,0x87,0x35,0x40,0xf6,0x4e,0x82,0xfd,0xde,0xd6,0x3a,0x4b,0xdc,0x5c,0x55,0x77,0x2f, + 0x6e,0xb8,0x61,0x68,0x2e,0x79,0x17,0xdd,0xdf,0x37,0xbd,0x66,0xf1,0xec,0x96,0x6e,0x21,0xfb,0xfb,0x2a, + 0x69,0x2d,0xa4,0xdd,0xba,0x1a,0x38,0xff,0xbe,0x9a,0x1a,0x6b,0xa9,0x55,0x0f,0x94,0xcb,0xb4,0x57,0xa7, + 0x86,0xae,0x11,0x1d,0xae,0x52,0x5b,0x13,0x0c,0xbc,0xb5,0x1c,0x5f,0x63,0x83,0x16,0xfa,0x1b,0xcc,0x91, + 0x0b,0x79,0x66,0xcb,0xc6,0x28,0x9c,0x4e,0x60,0xb8,0x11,0x66,0xad,0xc6,0xd2,0xf2,0xb1,0xcb,0x89,0x75, + 0xb8,0xc4,0x81,0xd1,0x54,0xe1,0x3b,0x24,0x53,0x37,0xd4,0x60,0xe1,0xda,0xb5,0x76,0x8b,0xc1,0x12,0x73, + 0x36,0xd4,0x2c,0xff,0x0e,0xf5,0x9d,0x46,0x35,0x4b,0xd5,0xe4,0x80,0x12,0x1d,0x77,0xb7,0xc9,0xf6,0x4f, + 0xed,0x91,0x61,0x2a,0x06,0x43,0xac,0x8a,0x69,0x22,0x12,0xef,0xb1,0x02,0x81,0xdb,0x86,0xa3,0x9d,0x6a, + 0x2e,0x49,0x11,0x29,0x9c,0x4e,0x4d,0x8d,0x7c,0x5b,0x73,0x0c,0xdc,0xd1,0x13,0x9b,0x36,0xaa,0x5b,0x47, + 0x53,0x73,0x0e,0x58,0xd7,0xd6,0xd3,0xff,0x16,0x7a,0x01,0x7b,0x29,0xf1,0x4d,0x60,0x2c,0x38,0x1c,0xe7, + 0xe1,0xaf,0xf5,0xf0,0x61,0x2e,0x6a,0x42,0xb4,0x70,0x84,0x82,0x35,0x27,0x87,0xeb,0x16,0x1c,0x51,0xb0, + 0x8d,0x03,0x6e,0x48,0xe9,0x28,0x53,0xd0,0x71,0x16,0x5f,0x05,0x87,0xfe,0xbf,0x85,0xe3,0x93,0xab,0x93, + 0x83,0xd3,0xcd,0x60,0xd2,0x0f,0x0e,0x17,0xb5,0xb6,0xf9,0x14,0x9a,0x0f,0x25,0xce,0xa9,0x65,0xeb,0xca, + 0x99,0x61,0x25,0xea,0x1e,0xe5,0x78,0x8a,0x78,0x3f,0x6b,0x6d,0xdd,0xed,0xdf,0x09,0xe0,0x2c,0x40,0x73, + 0x9c,0x76,0x3e,0xb9,0x17,0x4b,0xea,0x85,0x57,0xc4,0x57,0x5a,0x88,0xa7,0xa1,0x44,0x8c,0x67,0x9d,0x28, + 0xdc,0x78,0x28,0xee,0x11,0x74,0x2d,0x0d,0x5c,0x83,0xc5,0x9f,0xb3,0x35,0x33,0x6a,0xb1,0xab,0xa3,0xde, + 0x37,0x50,0x68,0x87,0xc8,0x4d,0x2c,0xbd,0x93,0x59,0x8f,0x55,0xdc,0xb5,0x0f,0xc3,0x55,0x54,0x17,0x18, + 0xce,0xa3,0x95,0x0e,0x9b,0xc2,0x7d,0x5b,0xb5,0xb6,0x3f,0x44,0x25,0x17,0x11,0xfd,0xaa,0x7d,0x8d,0xb9, + 0xd4,0x80,0xa4,0x03,0x9d,0x6f,0x86,0xe9,0xac,0x3c,0x1a,0xe6,0x52,0xcd,0xa1,0x68,0x34,0x8a,0xad,0x49, + 0xf4,0x5a,0xcd,0x83,0x30,0xae,0x8f,0x7e,0xcd,0xc9,0xd2,0x8a,0xb6,0xcd,0xe9,0x6a,0x0a,0x7e,0x6b,0xc2, + 0xdb,0x84,0xa8,0x0d,0xc4,0x52,0x6b,0x01,0x45,0xc9,0xa8,0xd0,0x16,0x66,0x88,0x97,0xde,0x6a,0xcb,0x0e, + 0x79,0x87,0x42,0x98,0x05,0xe6,0x2e,0x27,0xb7,0xb1,0x44,0xc1,0xaa,0xd4,0xe6,0xb3,0x12,0x68,0x42,0x84, + 0x11,0xfd,0xe9,0x28,0x41,0xa7,0xa3,0x71,0x56,0x97,0xd0,0x01,0xe7,0xa7,0xe1,0xb4,0xdd,0xa7,0x1d,0x4c, + 0xad,0x39,0x44,0xed,0x7f,0xa8,0xad,0x66,0x78,0xf0,0xf9,0x30,0x3e,0x38,0xe8,0xdd,0x3f,0x1a,0x06,0x50, + 0xfd,0x73,0x54,0x52,0xe3,0xfe,0xe7,0x7c,0x0e,0xdf,0xb3,0xaa,0x35,0x9e,0xbe,0x7e,0x49,0x35,0x69,0xd3, + 0xee,0x10,0x72,0x58,0xfa,0x95,0xf6,0x30,0x9d,0xd8,0x68,0x74,0x35,0x56,0x64,0x4a,0x9f,0x3a,0xdb,0x37, + 0xd9,0xc0,0x62,0x0d,0x70,0xc5,0x52,0x86,0xf8,0xa2,0xbc,0x19,0x5f,0xd7,0x9f,0x8e,0xaf,0x5a,0xa7,0x65, + 0xe9,0xa0,0x6c,0x43,0x59,0xaa,0xb2,0xca,0x52,0x79,0x6d,0x5f,0xbf,0x8b,0x8b,0xd4,0x7d,0x22,0x1d,0x85, + 0xf6,0x03,0xdd,0x04,0x7b,0x93,0x66,0xb7,0xae,0x0d,0x76,0xe0,0x7d,0x0c,0xfd,0x5f,0x86,0x77,0xd2,0x52, + 0x01,0x86,0x58,0x4a,0x77,0x57,0xb0,0x35,0x20,0x10,0xea,0x9e,0x16,0xd8,0x42,0xb8,0x5b,0x7a,0x35,0x75, + 0x70,0x9a,0x6c,0x94,0x6d,0x87,0x93,0x18,0x73,0xa1,0xf6,0xc6,0xd0,0x41,0xcd,0x8c,0x76,0xdc,0xee,0xb4, + 0x25,0x37,0x4f,0x1b,0xe8,0x8c,0xde,0x12,0x3a,0x27,0x2b,0xff,0xab,0x93,0xe5,0xf2,0xfb,0xa9,0xec,0x59, + 0xef,0x99,0x19,0xf4,0x26,0x57,0x45,0xeb,0x1c,0xd2,0x1e,0x65,0xbd,0xff,0x8f,0x76,0xb7,0x94,0x44,0xd4, + 0xfb,0x6a,0xe8,0xda,0xeb,0x5a,0x2e,0x7c,0x13,0xa8,0x21,0x11,0x08,0x3d,0xaf,0xbd,0x06,0xa7,0x9d,0x00, + 0xb6,0x56,0x47,0x62,0xbe,0xbb,0x83,0x16,0x5f,0x0c,0x4b,0x8d,0x16,0xf1,0xb8,0x74,0xd1,0xa2,0xec,0x7f, + 0x51,0x6b,0xec,0x8d,0x6a,0xa9,0x58,0xca,0x8a,0xd7,0xc7,0x81,0xca,0x7d,0x4d,0x33,0x1c,0x74,0x99,0x0a, + 0xc7,0x41,0x6d,0x5b,0x7c,0x88,0x69,0xcb,0x4b,0xb9,0xc3,0xb2,0xcf,0xb7,0x70,0xb8,0xd9,0x6b,0x57,0x69, + 0x79,0x0c,0xc9,0xe4,0x4e,0x7f,0xef,0x0c,0x0b,0xdd,0x5f,0xf6,0x8f,0x50,0xf7,0xb7,0xe8,0xdf,0xb1,0x68, + 0x9c,0xda,0x7e,0x4d,0x75,0xc7,0xd2,0x8f,0xc5,0x63,0x95,0xd8,0x9e,0x9b,0x40,0x33,0x69,0x1b,0xd2,0x6d, + 0xd2,0xeb,0x98,0x4a,0x8b,0x85,0xda,0x4e,0xaf,0xef,0x0e,0x73,0xdd,0xeb,0x02,0x36,0x46,0x75,0xaf,0xf3, + 0xfe,0x5d,0x73,0xc5,0xd6,0xa2,0x6e,0x45,0x50,0x53,0xb6,0x26,0x82,0xb2,0x34,0x09,0x57,0x3c,0x93,0x9d, + 0x43,0x7e,0x75,0x93,0x8e,0xba,0x2c,0x30,0x6c,0x38,0x1f,0x02,0x42,0xd2,0xaa,0x92,0xbe,0x36,0x74,0xa7, + 0x3a,0x18,0x45,0x7b,0xf6,0x73,0xb8,0x6d,0x22,0x70,0x90,0x3f,0xb6,0x2a,0x2b,0x6f,0xae,0x8c,0x1d,0x64, + 0x76,0xd4,0xd2,0x96,0xd0,0xec,0x6a,0x73,0x7d,0x4c,0x25,0xe7,0x83,0x75,0x95,0x2e,0x07,0xe2,0x13,0xf1, + 0xc6,0xde,0x76,0x0d,0xbe,0x79,0x48,0xf8,0xc0,0xe8,0x5b,0xc7,0x84,0x1b,0x81,0x70,0x63,0xa5,0x8d,0x01, + 0xec,0xd6,0xd6,0x09,0x8c,0xbf,0x5c,0xd9,0x0d,0x40,0xe9,0x1e,0xc4,0x0e,0x6c,0x44,0xd3,0x24,0xfd,0xd3, + 0xb6,0xdf,0xc1,0x90,0x18,0x66,0x15,0x5e,0x06,0x53,0x42,0x58,0x10,0x6d,0xe2,0xd2,0xcb,0x00,0xf2,0x4e, + 0x18,0x9b,0xf2,0x25,0x82,0x30,0xb3,0xf8,0x0e,0x97,0x60,0xee,0xc7,0xdd,0x53,0x02,0xd2,0x61,0x5d,0xd0, + 0xf7,0x4e,0x4f,0x11,0x29,0xc1,0x6c,0xb0,0xbb,0x02,0xdc,0xf1,0xda,0xd2,0x2f,0xf8,0x73,0x7a,0x6f,0x46, + 0x16,0x13,0x76,0x68,0x57,0xfa,0x31,0x94,0x8e,0xd5,0x52,0x9f,0x9b,0x77,0x64,0x7c,0xa7,0xb3,0x1d,0x52, + 0xc0,0xa7,0x0f,0xdb,0xf1,0x1b,0xaa,0x15,0x85,0x45,0xa9,0xd1,0xbd,0xee,0xd8,0x81,0x69,0xbd,0x11,0xb4, + 0xb7,0xc2,0x1b,0x25,0x36,0x2a,0xbb,0x79,0x6f,0x2c,0xfe,0x2b,0xf6,0x46,0x71,0x51,0x98,0xd8,0xbd,0xb1, + 0x80,0x89,0x7f,0x13,0x2e,0xb3,0x4e,0xd6,0xe4,0x26,0x9a,0x7e,0x7c,0x33,0x4d,0x3f,0x9e,0x68,0xc3,0x0a, + 0x97,0x6c,0xe5,0x3b,0x66,0x4a,0xc6,0xfe,0x61,0xb4,0xa3,0x4b,0x0f,0x43,0xed,0x91,0x44,0x7f,0xc6,0x25, + 0x3f,0x0c,0x8b,0x38,0x6a,0x09,0xbc,0x43,0x70,0x6d,0xbc,0x9d,0x39,0xef,0x88,0x4b,0x4a,0x2f,0x1c,0x75, + 0xd5,0x97,0x82,0x1c,0x70,0x55,0xcc,0x97,0xb2,0xf7,0x98,0x2f,0x65,0x62,0xbe,0x24,0x65,0x02,0xd5,0xf1, + 0xfd,0x78,0xa2,0x5b,0x63,0xab,0x25,0x8d,0x8f,0x08,0x6e,0xcf,0x91,0x4b,0x5b,0x84,0xc7,0x95,0x28,0x7c, + 0x80,0xec,0x34,0x64,0x0a,0x37,0x12,0x9d,0x1b,0x2a,0x6c,0x50,0x89,0x76,0x4d,0x9d,0x04,0xe7,0x2f,0x55, + 0x74,0x03,0xb1,0xe9,0xea,0xfa,0xcd,0xa4,0x46,0x5a,0xfe,0xff,0x95,0xd0,0xb4,0x6f,0x83,0x6e,0x20,0x33, + 0x1d,0xd9,0x6a,0x22,0xe3,0x02,0xf0,0x83,0x24,0x26,0xfb,0x48,0x12,0xd3,0xa8,0xf4,0x83,0x04,0x46,0x72, + 0x7f,0x98,0xbc,0xb4,0x64,0xb9,0xff,0xc7,0x89,0x4b,0xf6,0x61,0xe2,0xd2,0xed,0x5a,0xe9,0xff,0x11,0x97, + 0x0e,0xe2,0x92,0x59,0xe2,0xa2,0x35,0x41,0xc4,0x50,0x40,0x8b,0x80,0x52,0x62,0xf8,0x1c,0xc0,0xaa,0x9f, + 0x02,0x82,0x73,0x7c,0x19,0xa7,0xcb,0xf8,0x2c,0x5d,0xa6,0xf8,0x1e,0x5d,0x37,0xf7,0xcb,0xf0,0x5d,0xe3, + 0x26,0x30,0x3c,0xc5,0xd4,0xb0,0x46,0xef,0x72,0xe9,0xc6,0xed,0x85,0x2f,0x86,0xf3,0x88,0xb0,0xf0,0x92, + 0x70,0x9f,0x92,0x6e,0xdd,0xd2,0x08,0x77,0x6e,0x52,0x8c,0x89,0xe5,0xc0,0x0b,0x78,0x44,0x95,0xa9,0x46, + 0x42,0x32,0x75,0xf5,0xf7,0x1d,0x95,0xae,0x7b,0xeb,0xed,0x8b,0xfe,0xea,0x35,0x61,0x69,0x78,0x93,0xc0, + 0x15,0x59,0xe0,0xc4,0x26,0x8b,0xce,0x6f,0xa8,0x32,0x6b,0x54,0x59,0xed,0xd6,0xb7,0x7b,0x3f,0xe6,0xde, + 0xfc,0xfc,0x97,0xa0,0x9f,0xd6,0x5b,0x35,0x16,0xd9,0xf5,0x79,0x8a,0x8e,0x2d,0x74,0x0a,0xb5,0x66,0x5f, + 0x6d,0x5e,0xbd,0x72,0xcf,0x2a,0xdb,0x6d,0x6d,0x15,0xf1,0xfe,0x31,0x4e,0x3f,0x6d,0x90,0x3b,0x07,0x9c, + 0xb4,0xeb,0x58,0x96,0xda,0x03,0x4e,0xea,0x0e,0x33,0xc5,0xb1,0x4c,0x9f,0xf2,0x9b,0xc3,0xcc,0x9d,0xe3, + 0x59,0x8e,0x71,0x5a,0xeb,0xb4,0x7c,0x67,0x9c,0x2a,0xb3,0x23,0x2d,0x3e,0x65,0xa4,0xc9,0xa7,0x8f,0x54, + 0x13,0xcb,0x66,0x5f,0x0b,0x3e,0x3c,0x25,0xca,0xea,0xfd,0x16,0x3b,0x67,0xc7,0x8f,0xef,0xd5,0xec,0xbf, + 0x17,0xc7,0xea,0x33,0xb1,0xb1,0xd9,0x9b,0x39,0xd8,0xd5,0x71,0xda,0xfd,0xd8,0x71,0x74,0xac,0xbd,0xff, + 0xde,0x71,0x64,0x1f,0x1e,0x07,0x6c,0xae,0xdf,0xa6,0x99,0x7f,0x86,0x47,0x6b,0xfc,0xe7,0x7b,0x58,0xe7, + 0x1c,0xa1,0x61,0xaa,0xa3,0xba,0xb3,0xe3,0xb0,0xf3,0x3a,0xfe,0x98,0x7f,0x25,0x6e,0x16,0xaf,0xb4,0xd6, + 0x0e,0xf5,0xd7,0xaa,0x0e,0x88,0x51,0xd4,0x33,0xb0,0x42,0x2f,0xab,0x82,0x0a,0x2f,0x88,0x52,0x0e,0x0b, + 0xb1,0x8f,0x2a,0x06,0x3a,0x9a,0x38,0x28,0xa3,0xa6,0x75,0x91,0xf7,0xf7,0xc1,0xdd,0xc1,0x5d,0x4f,0x75, + 0x99,0x6a,0x49,0xa4,0xe7,0x5b,0xb7,0x74,0xc4,0xe7,0x5f,0x10,0x83,0xa6,0x7e,0x1e,0xac,0xcb,0xc4,0x7f, + 0x46,0x84,0x59,0xab,0x0f,0x59,0x6b,0x97,0xeb,0x24,0x0b,0xaf,0x39,0xaa,0x66,0xe8,0xbd,0xac,0xe2,0xb4, + 0x28,0x3d,0x55,0xbe,0x2b,0xab,0xe4,0xe2,0xc9,0x23,0x4a,0xe1,0xa7,0xde,0x93,0x47,0x9e,0x9a,0xa7,0xc5, + 0xc5,0x55,0x5c,0x24,0xbf,0x48,0x5f,0x42,0xef,0xb1,0x4e,0xe8,0xe9,0xde,0x85,0x3d,0x4f,0x4d,0xf3,0xd5, + 0x3b,0x89,0x9c,0xe1,0x3d,0x34,0x8f,0xbd,0xff,0xf5,0x3f,0x7a,0x77,0x8e,0x8e,0xff,0xde,0x7b,0x16,0x17, + 0x6f,0x7a,0x97,0x71,0xd6,0xfb,0x29,0xc9,0xca,0xab,0x7c,0x3d,0xa3,0x65,0xb5,0xcc,0x63,0x78,0xdc,0x0a, + 0xbd,0x17,0xcb,0x04,0x86,0x83,0x1c,0xcd,0xa0,0xa7,0x53,0x7b,0x02,0x28,0x1d,0xf2,0x7d,0x30,0x18,0x78, + 0x8a,0x67,0xea,0x6b,0x0e,0xba,0x11,0x7a,0x0f,0xf0,0xd2,0x48,0x7b,0x19,0x5f,0x72,0x6d,0xf2,0xcb,0x25, + 0xae,0xd2,0x79,0x4a,0x03,0xab,0xd6,0x65,0x78,0x1d,0x4f,0xe1,0xa0,0x72,0x95,0xa7,0x59,0x65,0x07,0xfd, + 0xe0,0x05,0x3a,0x3e,0x4b,0xcb,0xf8,0x8c,0xf6,0x8c,0xd0,0x7b,0xa4,0x9f,0x88,0x5b,0x60,0x6f,0x17,0x79, + 0x86,0xe8,0x74,0x36,0xfb,0xaf,0xe9,0xe3,0xf4,0x86,0x02,0x2a,0x45,0xa0,0x11,0xef,0xc9,0x0c,0x97,0xb6, + 0x59,0xfe,0xf2,0x25,0x43,0x90,0xfe,0xf6,0x60,0x1a,0x3a,0xcf,0x69,0xd2,0x08,0xb6,0xd3,0x38,0x43,0x00, + 0x09,0x98,0x5a,0x50,0xe1,0x97,0xf4,0xda,0x9b,0x9a,0x77,0x00,0x30,0xcb,0x08,0xb9,0x1e,0xd3,0xe6,0x89, + 0xcf,0xf2,0xdb,0xab,0xf2,0x9e,0xfe,0x60,0x73,0x50,0xbf,0x9e,0xe6,0x25,0xc3,0xd9,0xbc,0x13,0xd8,0xca, + 0x8a,0x7b,0xa6,0xf3,0xe8,0xde,0xd9,0x37,0xc4,0xe6,0x28,0x35,0x28,0xaa,0xf8,0xec,0x95,0x9d,0x75,0x4a, + 0xf1,0x94,0x1e,0xe0,0x43,0x09,0xf0,0xd2,0x2b,0x75,0x32,0x6d,0xa5,0x2f,0xab,0x64,0x55,0xbe,0x2a,0xd6, + 0xc8,0x9c,0x54,0x3d,0x88,0xf6,0x11,0x65,0xfe,0x1d,0x8d,0xa9,0x60,0xbd,0xfe,0x12,0x19,0xea,0xac,0x8f, + 0xa1,0x6c,0xda,0xce,0x0b,0xd7,0x6a,0x97,0xe9,0x6c,0x8d,0x20,0x12,0x04,0x5b,0xe2,0x3b,0x10,0x3c,0xa2, + 0xd1,0x93,0x57,0x3a,0x0d,0x7d,0xb9,0x48,0x4c,0x22,0x3d,0x4a,0xc2,0x13,0x5c,0x29,0x64,0x44,0x29,0x0c, + 0xb2,0x10,0x58,0x61,0xae,0x12,0x57,0x3d,0x7c,0xee,0x99,0x2a,0x7b,0xda,0x84,0xa4,0x17,0x67,0xdc,0x3e, + 0xca,0xf4,0x6a,0xb0,0x0d,0xa4,0xb6,0xe7,0x39,0x47,0x24,0xf6,0x9e,0xe7,0xad,0xd2,0x7a,0x65,0xf5,0xde, + 0x25,0x95,0xe4,0x7c,0x9c,0xbe,0x4d,0x66,0xe8,0x06,0x70,0xfe,0x2d,0xa6,0xc3,0x76,0xe9,0xe5,0x3a,0x2b, + 0x52,0x1e,0xab,0x3c,0xd8,0xd4,0x12,0xdd,0x94,0x5f,0x33,0x9a,0x0b,0x3d,0x18,0xdc,0xa4,0x5d,0xa4,0xd9, + 0xba,0x4a,0x68,0xa0,0x17,0x39,0xba,0xa4,0x87,0xfa,0x8c,0x5f,0xbc,0xad,0x33,0xc7,0x2e,0x78,0xea,0x99, + 0xae,0x27,0xab,0x9e,0x7c,0xbe,0x7c,0x48,0x2a,0x06,0x9f,0x8b,0xe7,0xde,0x37,0x19,0xd0,0xb3,0x27,0x69, + 0x3d,0x4e,0x6c,0xe4,0xf8,0x8e,0x73,0x3d,0x58,0x2e,0xf3,0xab,0x52,0x66,0x54,0x9b,0x37,0x3b,0x30,0xeb, + 0xcd,0x8b,0xfc,0xa2,0xf7,0x2e,0x5f,0x17,0x04,0x9e,0xcb,0x74,0x9a,0x00,0x25,0x41,0x9f,0x7b,0x42,0x33, + 0xb4,0x73,0x16,0x2e,0xde,0x58,0xb4,0xbd,0xd5,0xba,0x58,0xe5,0x65,0x52,0x0e,0x7a,0xaf,0xce,0x13,0x93, + 0xbb,0x99,0x85,0x6a,0xd1,0xdc,0x22,0xd5,0x40,0xef,0xe7,0x55,0xb5,0x0a,0x0f,0x0f,0x8f,0xbf,0xba,0x33, + 0x38,0xfe,0xf2,0x1f,0x83,0xe3,0xc1,0xe7,0x87,0xbd,0xab,0xf3,0x24,0x43,0xfb,0x3d,0x10,0x1c,0x8b,0xd0, + 0xe8,0x45,0x5a,0x51,0xd5,0xcc,0xef,0x54,0xbd,0x7c,0x3e,0xef,0xc5,0x65,0xaf,0xcc,0xe1,0xee,0xa2,0xec, + 0xe9,0xf5,0x8b,0xce,0x25,0x68,0xc5,0x34,0x9b,0xcc,0x14,0x3e,0x53,0x01,0x4a,0x64,0xb3,0xed,0x64,0x8a, + 0x54,0xcc,0x4c,0x9c,0xbd,0x23,0x22,0xf4,0x6e,0xd0,0xfb,0x8d,0x1a,0xc3,0xe2,0x8c,0x97,0xf4,0x5a,0xf6, + 0x2c,0x33,0xd8,0x13,0xb2,0xdd,0xc3,0x79,0x05,0xbd,0x3d,0x7b,0xd7,0x83,0xde,0x16,0xc8,0x55,0x75,0xde, + 0x04,0x73,0x4f,0x47,0x07,0x5a,0x67,0x74,0x64,0xe5,0xaf,0x4f,0xbf,0x79,0xd4,0x5b,0x82,0x28,0x96,0xbd, + 0xf5,0x8a,0x10,0xd1,0xa5,0x30,0x66,0xa2,0xdc,0x5e,0x37,0x72,0xc8,0x44,0xe9,0x29,0xef,0x82,0x3e,0x41, + 0x83,0xa7,0x28,0xbf,0xca,0x7a,0xa0,0x53,0xbd,0x82,0x9d,0x17,0x0d,0x7a,0x7a,0xbd,0x70,0x4c,0x2a,0xee, + 0x07,0xa8,0x92,0x22,0x94,0x29,0x89,0x0e,0x17,0x33,0x1a,0xf4,0x8c,0x76,0xd8,0x82,0xbe,0xb4,0xa7,0xef, + 0x2c,0x21,0xb4,0x40,0x47,0xcb,0x74,0x26,0xc4,0xcc,0x53,0xa6,0x18,0xad,0x43,0xfd,0x44,0x44,0xe7,0x7c, + 0xba,0x0a,0xbd,0x9f,0xa9,0x91,0x47,0xdf,0x3d,0x7c,0x21,0xef,0x1a,0xb1,0xd6,0x55,0x7e,0x01,0xaf,0x41, + 0x58,0xf8,0x04,0xf6,0x32,0x5d,0x64,0x25,0x96,0xe6,0x93,0x17,0x3d,0x1d,0xde,0xba,0x1b,0x99,0x64,0x0a, + 0x88,0x53,0x38,0x23,0xb0,0x60,0x52,0x08,0xa0,0x94,0xf1,0x4d,0x92,0xac,0xf4,0x44,0x00,0xb2,0x4b,0x94, + 0x07,0x62,0xc0,0xba,0x82,0xd0,0x84,0x88,0x01,0xbd,0xdd,0x26,0x2c,0x99,0xe5,0xd8,0x02,0x88,0x2a,0xaf, + 0x74,0x33,0x44,0x9a,0x6d,0x93,0x34,0xa2,0xf5,0x19,0xd1,0x85,0x8b,0xb8,0x7c,0x83,0x85,0x8a,0xe7,0x1e, + 0x5e,0x3c,0xb5,0xa0,0x9d,0x98,0xa6,0x3c,0xf4,0xbe,0x95,0x07,0x4f,0x9d,0x13,0x5d,0x15,0x53,0xb7,0xef, + 0xf4,0x53,0x9d,0xf6,0xa2,0x76,0xcd,0x4a,0xc4,0x56,0x5b,0xb7,0x51,0x4d,0x53,0xdb,0xd2,0x56,0xef,0xa7, + 0x0d,0x9a,0xcb,0x29,0xb4,0x4b,0x54,0x2b,0x87,0xcc,0xf5,0xa0,0x5d,0x46,0x47,0xdd,0x8c,0x76,0x14,0x86, + 0xbe,0xff,0xfc,0xd5,0x8b,0x80,0x00,0x4e,0x47,0x1a,0x9d,0xed,0xbb,0xb8,0x98,0xf1,0xa6,0x4b,0x69,0x39, + 0x62,0xfc,0x5d,0xc4,0x2b,0xf3,0xed,0xdb,0x3c,0x5f,0x10,0x16,0x3c,0xa3,0x94,0xde,0x83,0x17,0x4f,0xea, + 0x2d,0x5b,0x7f,0xb7,0x1b,0xb6,0xb0,0x2a,0xdc,0xfa,0x53,0x3a,0x7c,0x79,0xf4,0x27,0xad,0x78,0x3b,0x46, + 0x0a,0xf6,0xcf,0xa7,0x79,0xb6,0x70,0x92,0x88,0x59,0x65,0x62,0xe4,0x7d,0x4b,0x50,0x5a,0xea,0xdc,0xbd, + 0x43,0xda,0x70,0x74,0x36,0xa1,0x0f,0x4b,0x9d,0xaf,0x51,0xe8,0x65,0x12,0x17,0xd3,0x73,0xec,0x06,0xf8, + 0xe5,0xc1,0xd0,0x2a,0xa0,0x5d,0xd7,0x7b,0x20,0x4b,0xe5,0x05,0x2f,0x15,0xd9,0x6e,0x78,0x81,0x50,0x8e, + 0x9e,0xdf,0x27,0x46,0xe7,0x32,0x30,0xd9,0x5f,0xbe,0x7a,0x20,0x1b,0x15,0xa0,0xf2,0x0c,0xcb,0xf9,0x3d, + 0xf9,0x1f,0xbc,0x30,0x0c,0x82,0x5e,0x51,0x8d,0x86,0xf4,0x9a,0xe4,0x42,0x2b,0x3a,0xa2,0x53,0xaf,0xaf, + 0xa4,0xdc,0x8b,0x5f,0x9f,0x3d,0x2a,0x88,0xad,0x2b,0x5e,0x3e,0xa2,0xd6,0x5e,0x3c,0x7c,0xf0,0xd5,0x97, + 0xff,0xf8,0xa2,0x47,0xa9,0xbd,0x19,0x27,0xf7,0x28,0x5d,0xca,0x41,0xc3,0xb0,0x5d,0xe6,0xe1,0xd3,0xee, + 0x32,0x0f,0x9f,0x4a,0x99,0x29,0xdc,0x21,0xa2,0xd0,0xd5,0xc5,0x03,0x83,0x8f,0x1d,0xf9,0x9f,0xfc,0xaf, + 0xff,0xf9,0xb0,0x46,0x52,0xca,0xfc,0x18,0xbb,0x59,0x92,0x4d,0xdf,0x75,0x66,0x9f,0x9b,0xaf,0x82,0x09, + 0x34,0xed,0x3f,0x24,0xef,0x76,0x50,0x81,0x16,0x4d,0x23,0xc3,0x39,0xaf,0xcc,0x9f,0x12,0x71,0x05,0x36, + 0x03,0xe5,0x9b,0xf7,0xd6,0x25,0xd3,0x30,0x77,0x2f,0x1c,0xf4,0x68,0x45,0xcf,0x98,0xaa,0x2f,0xf3,0xfc, + 0x0d,0xbe,0xaf,0x57,0x4c,0x40,0x74,0x18,0x38,0xce,0xfe,0x27,0x71,0xba,0x03,0x22,0x38,0x04,0x4b,0x22, + 0x06,0x6f,0x7a,0x88,0x4b,0x45,0xb8,0x89,0x35,0xae,0xdb,0x56,0x80,0x7a,0x4f,0x77,0xea,0x82,0x99,0x42, + 0x88,0x74,0x2a,0x42,0x4b,0xa1,0x58,0x3c,0x8a,0x92,0x28,0xf9,0x4f,0xc4,0x04,0x97,0xa0,0x52,0xb2,0x11, + 0xd1,0xf0,0x12,0x53,0x49,0x8f,0x96,0xb6,0xde,0x1a,0x8c,0x17,0x2d,0xda,0x8b,0x88,0x3e,0xad,0xd0,0xd3, + 0x05,0x57,0x0e,0xc6,0xfb,0x90,0xc9,0x59,0x0c,0x0e,0x9d,0xb0,0x9c,0xa8,0xfc,0x6d,0x22,0xb6,0xa5,0xec, + 0x4d,0xe8,0xba,0x01,0xca,0x00,0xec,0x50,0xb6,0xb4,0x9c,0xdd,0xab,0x22,0x5e,0xed,0xf0,0xbe,0x1f,0xc7, + 0xfc,0x26,0xff,0x39,0xde,0xf7,0x1b,0xda,0xdb,0xf2,0x45,0x92,0x9d,0x2d,0xd3,0x37,0xbd,0x45,0x42,0xc4, + 0x8f,0x36,0xa8,0xb3,0xe4,0xcf,0x74,0x41,0x7c,0x3a,0x16,0xdc,0x8c,0x32,0x5c,0x32,0xa3,0x68,0x69,0x73, + 0xb2,0xcb,0x0e,0xbf,0xca,0x13,0x90,0xe6,0x24,0xeb,0x64,0x89,0xbf,0xb6,0xf5,0xe5,0xab,0x72,0x19,0xc7, + 0xd9,0x5f,0xe2,0x8e,0x7f,0x4e,0x2b,0x3a,0x35,0x4c,0xcf,0xe3,0x37,0xc9,0xf2,0xe3,0x59,0xe4,0x66,0x29, + 0xcd,0x27,0xbf,0xa4,0x4e,0xac,0x60,0xc3,0x3d,0x6b,0x73,0xcb,0x29,0x75,0x72,0x91,0x5c,0xe6,0x84,0x99, + 0x59,0x37,0xc7,0x1c,0xcf,0x09,0x3d,0xf3,0x6c,0x97,0x61,0xfe,0x81,0x3e,0x2e,0x12,0x80,0x2b,0x29,0xb4, + 0x33,0x67,0x22,0xc6,0x6f,0x50,0x4f,0x9b,0x71,0xfe,0xa5,0xce,0x41,0x99,0x97,0x79,0x81,0x4c,0x4d,0xe6, + 0xf9,0x39,0x7a,0x82,0x9a,0xa4,0x2b,0x1f,0xc3,0x3e,0x7f,0xb7,0x4e,0x67,0xe9,0x22,0xb9,0x81,0x7d,0x26, + 0x2e,0x0b,0xab,0x2b,0xc1,0x84,0xce,0x92,0x3f,0x93,0xe5,0x1c,0x9c,0x89,0xe6,0x91,0x93,0xb4,0xda,0xe1, + 0xa1,0x5f,0x49,0x5e,0xc3,0x3c,0x27,0xc9,0x92,0x0d,0xdf,0x13,0xaa,0x27,0xfb,0x34,0x2e,0xfa,0xf5,0xac, + 0xcd,0x45,0x3f,0x65,0x5c,0xe8,0x11,0x31,0xeb,0x5d,0xe6,0x58,0x1c,0x94,0xa7,0x66,0x83,0x93,0xa4,0xe6, + 0x9e,0x2f,0x1b,0xa0,0x4a,0xe0,0xc5,0x28,0x2d,0x77,0xf8,0xe8,0x85,0x40,0xbe,0x59,0xcd,0x22,0xb1,0x5c, + 0x57,0x52,0xcc,0x76,0x18,0xea,0x5f,0xe2,0x12,0x3c,0xbc,0xed,0x9d,0x65,0xa8,0x7f,0xc7,0x12,0x5f,0xbd, + 0xc9,0x2f,0xca,0xaa,0xc9,0x54,0xf3,0x07,0xe8,0x49,0x2d,0x62,0x68,0xdd,0xb8,0xbc,0xf5,0xeb,0x59,0xcd, + 0x5b,0x67,0x2d,0xde,0xfa,0xeb,0xe4,0x2a,0x81,0xde,0xfc,0x8d,0xdc,0x75,0x8d,0x0e,0x76,0x2e,0x1d,0x0c, + 0x71,0x57,0x5e,0x8b,0xbf,0x7e,0xe0,0x72,0x7c,0x34,0x39,0x82,0xe6,0xbc,0x0a,0xeb,0x6c,0x42,0x71,0x9f, + 0xc5,0xf1,0x1b,0x22,0x62,0x60,0x35,0x68,0xbd,0x2f,0xd3,0xd7,0xc4,0x41,0x5e,0x30,0xa4,0x85,0xe3,0xb6, + 0xac,0x6d,0x9a,0x60,0xbd,0xc7,0x73,0xfe,0x46,0x8b,0x99,0x78,0x7b,0x9a,0xa5,0x2c,0x8e,0x0b,0x46,0x9b, + 0x1e,0x68,0x95,0xe5,0xfa,0x12,0xc1,0x70,0x54,0x45,0xd8,0x54,0xa7,0x5a,0xc0,0xc3,0x15,0x70,0xef,0x51, + 0xb3,0x14,0xf1,0x4f,0x94,0xe5,0x2c,0xc9,0x88,0xb8,0x14,0x58,0x2f,0x69,0xdc,0xc9,0x78,0xd3,0x77,0x6a, + 0xf9,0xb5,0xdb,0xb3,0xf3,0xe4,0x0c,0xeb,0xf3,0x02,0x83,0x19,0xf4,0x5e,0xca,0x78,0xa5,0x5f,0xe0,0x8d, + 0x89,0xbf,0x48,0xd1,0x57,0x1e,0xa7,0xdb,0x07,0x62,0xba,0x11,0xa6,0xf8,0xcf,0x54,0x23,0xbf,0x2c,0xf4, + 0x33,0xa2,0xe1,0x29,0xf1,0xc4,0x33,0xa0,0x54,0xef,0xfb,0xa4,0xf7,0x86,0xd8,0x65,0xb7,0x36,0xda,0x78, + 0x5c,0xb0,0x12,0x5f,0x47,0xb8,0x0a,0xbc,0xb5,0x1b,0xbb,0x80,0x9e,0x18,0xc0,0x15,0xc6,0x34,0x2b,0xd6, + 0x6f,0x00,0x8e,0x2a,0xaf,0xd0,0xf5,0x99,0x70,0xdd,0x31,0x08,0x03,0x01,0xb1,0xcd,0x74,0x3b,0x73,0x0c, + 0xda,0xc8,0x6c,0xb3,0x26,0x18,0x4e,0x3e,0x99,0x3e,0x9d,0x77,0x77,0x0a,0x50,0x39,0x81,0x28,0xa1,0x85, + 0xdf,0xe2,0xbc,0x7f,0x59,0x2f,0x7b,0xe7,0x29,0xd3,0x2a,0xda,0xd4,0x00,0x11,0x26,0x71,0x94,0xed,0x2a, + 0x9e,0x9e,0x57,0x57,0x39,0xd8,0xef,0x94,0x40,0x93,0xd4,0xd4,0x9d,0x16,0x4a,0x8f,0xa3,0x8b,0xae,0x19, + 0xac,0xbd,0x9c,0xd6,0x1c,0x48,0x0a,0x83,0xa3,0xbc,0x91,0x19,0xff,0xd5,0x56,0x68,0xd8,0xf1,0x6f,0x93, + 0xb3,0x62,0x4d,0x5b,0x4a,0xcd,0x92,0x9f,0x37,0x58,0x72,0x82,0x29,0x23,0x18,0xb3,0xc5,0xc4,0x70,0x10, + 0xc8,0x92,0xab,0xf4,0xf5,0x9f,0xc0,0xb9,0x38,0xdb,0x19,0x26,0xed,0xf1,0x84,0x80,0x54,0x28,0x7d,0x9d, + 0x31,0xee,0x5e,0xd1,0xa9,0x86,0x86,0xed,0xcc,0x15,0x8a,0x41,0xf5,0x8a,0x06,0x44,0x7f,0xfe,0x4c,0x5f, + 0xe3,0xfb,0x55,0x42,0xc3,0xbe,0x02,0xee,0xd2,0xcb,0x45,0x92,0xe8,0xad,0xed,0x0c,0x9e,0x16,0x76,0xd9, + 0xf3,0x22,0xb9,0x99,0x39,0x4f,0x8a,0x8f,0x61,0xcf,0xe3,0x8b,0x1b,0xd8,0xf3,0x97,0xd8,0x6c,0xa8,0x1f, + 0x33,0xc3,0xa0,0xa3,0xad,0x1b,0xd9,0xf3,0x36,0x7f,0x4e,0xd4,0xa5,0xc1,0x9f,0x27,0xef,0x63,0xcf,0x63, + 0xe8,0xa0,0xd1,0x3a,0x20,0xbc,0x62,0x52,0xf4,0x17,0xb8,0xf4,0xb3,0xf4,0xf5,0x55,0x52,0x30,0x26,0x1a, + 0x46,0xfd,0x6b,0xc2,0x8d,0x59,0x95,0x2c,0x88,0x1a,0xcc,0x1c,0x66,0x1d,0x62,0x4f,0x37,0xd1,0xb2,0xeb, + 0x6e,0x7e,0xb0,0xeb,0x75,0x46,0x9a,0xaf,0xf3,0x18,0xab,0x89,0xd6,0xcc,0x59,0x5c,0x12,0x35,0x00,0x7f, + 0x21,0x0c,0x7c,0xd2,0xc9,0xbf,0xff,0x9e,0x27,0xdc,0x97,0xbf,0xce,0xbf,0xf3,0xc2,0xf8,0x28,0xbe,0xbd, + 0x51,0xb3,0xbb,0xf6,0x79,0x8d,0x73,0x39,0xf0,0x77,0xc9,0x9c,0x90,0x2d,0x5e,0xfc,0x77,0x70,0xef,0x6f, + 0x96,0xf9,0xff,0x5d,0xcc,0xfb,0x03,0x90,0xd2,0x82,0x39,0x43,0x42,0x14,0x22,0xc7,0xb2,0xd4,0x2f,0x79, + 0xdd,0x36,0xf7,0x60,0x5a,0xb7,0x44,0x14,0x2a,0x93,0xa7,0xd2,0x1b,0xc5,0xb9,0xe6,0x54,0x90,0x17,0x2c, + 0xbc,0xec,0x07,0x2b,0x60,0x05,0x95,0x20,0xcc,0xab,0x98,0xf4,0xfe,0x29,0xa4,0xcb,0x72,0xf2,0x17,0x58, + 0xc8,0xba,0x8b,0x94,0x9d,0xf3,0xcd,0xa8,0x55,0x70,0xed,0x6f,0x50,0xaf,0xe6,0xe5,0x4b,0xc3,0xcc,0x0b, + 0x3d,0xa3,0x7e,0x2e,0xb0,0x7b,0xda,0x21,0x01,0xf3,0x3e,0x8e,0x9d,0x07,0x39,0x62,0x79,0xbb,0xa6,0xa0, + 0xcc,0xac,0x98,0x01,0x83,0x68,0xcf,0x9a,0x4c,0xfd,0xb6,0x76,0xda,0xcb,0xf1,0xb1,0x1e,0xac,0x56,0xf6, + 0x4e,0x01,0xd7,0xdc,0xda,0x6b,0x63,0x6d,0xfe,0x48,0x1c,0x32,0x51,0x95,0xbc,0x18,0x2c,0x09,0xa8,0xeb, + 0x78,0x91,0xb4,0x6d,0x11,0x3d,0x5e,0xc3,0xc6,0xb2,0xd1,0x5a,0x82,0x04,0x43,0x5d,0x9d,0x7f,0x9d,0x2c, + 0x43,0xef,0x6f,0xb4,0x51,0x13,0x3d,0xa3,0xaa,0xc3,0x4a,0xb1,0xa5,0xe0,0xb5,0x61,0xf1,0xf7,0x8e,0x54, + 0x29,0x7c,0xf8,0xde,0xb1,0x7e,0x62,0x2e,0x0f,0xaf,0x3a,0xcf,0x13,0xda,0x84,0xa6,0xe8,0x45,0xe8,0x6d, + 0x3c,0xb5,0x5e,0x21,0xf9,0x45,0x91,0x2f,0x18,0xd9,0x28,0x9b,0x80,0xe0,0x55,0x7c,0x06,0xff,0xb8,0xc2, + 0x5b,0x1a,0xc1,0xfb,0x75,0x7d,0x68,0xd1,0x95,0x31,0x6f,0x6f,0x3e,0xbb,0x89,0xdb,0x26,0xc7,0xbf,0x0a, + 0xaf,0x93,0x4c,0x98,0x74,0x6a,0x22,0xa5,0x3d,0xe3,0x68,0xc0,0xff,0x6a,0xd6,0xbe,0x91,0x43,0xb3,0xbf, + 0x47,0xcd,0xac,0x94,0x97,0x89,0x04,0xb5,0x61,0x69,0x0f,0x65,0x76,0x98,0x53,0x30,0x68,0x6e,0x3d,0xac, + 0xa3,0x9b,0x0a,0x7b,0x46,0x9f,0x8e,0xea,0xbc,0x63,0xf8,0xf0,0x71,0x39,0x34,0x4b,0xdd,0x59,0xad,0xd2, + 0xe5,0xbc,0x00,0xd4,0xca,0xb6,0xc6,0x9b,0x22,0xe7,0xb1,0x5b,0x22,0xbf,0xf1,0x56,0xb8,0xc7,0x3d,0xe6, + 0x77,0x67,0x6b,0xe1,0x77,0xb3,0x9f,0xb0,0xd9,0x86,0xdd,0x0b,0x68,0x13,0x93,0xcf,0x4b,0x9a,0x33,0xa9, + 0x95,0xe8,0x10,0xa5,0x27,0x33,0x22,0x7d,0xf2,0x25,0x99,0x81,0xac,0x49,0xb7,0x56,0x9a,0x74,0x49,0xd6, + 0xab,0x0b,0x10,0x21,0xfb,0x4c,0xc4,0x45,0x6a,0x77,0xc8,0x87,0xf9,0x58,0x53,0x08,0x4e,0x71,0xe9,0x00, + 0xcd,0x81,0x39,0x0d,0x60,0x00,0xe6,0x99,0xcd,0x59,0x42,0x8c,0x1d,0x1f,0xc6,0x13,0xb5,0xb4,0xf4,0x1e, + 0xcc,0x2d,0xfb,0x68,0xd8,0x09,0x82,0xa4,0x8d,0xc9,0xad,0xf3,0x72,0xe6,0x70,0xe1,0xab,0xc8,0xf7,0xf8, + 0xd1,0x33,0x56,0xe5,0xfa,0xca,0xc8,0xd4,0x09,0x63,0x8f,0x73,0x63,0xcf,0x71,0x2c,0x11,0xb5,0x92,0x81, + 0xc5,0x45,0x27,0x4c,0xe1,0xd3,0x16,0x1a,0x43,0x07,0x74,0x20,0x92,0x26,0x10,0x7e,0x41,0x39,0x4e,0xd4, + 0xe7,0x42,0x1e,0x0c,0x9b,0xb3,0xe2,0xaa,0x1e,0x01,0x2d,0x9c,0x85,0x01,0xb4,0x28,0x24,0x15,0xd8,0xab, + 0xcf,0xdd,0x7e,0x30,0xa0,0x13,0x7c,0xe6,0x1a,0x81,0xca,0xf7,0x5a,0x0e,0x7e,0x63,0x16,0x11,0xb9,0xdd, + 0xf8,0x19,0x0d,0x9a,0x93,0xd3,0xcd,0x75,0xa0,0x6b,0x9d,0x5f,0xcb,0x2a,0x5f,0x75,0x42,0x40,0xaf,0x3d, + 0x1a,0xca,0x36,0xb0,0xff,0x94,0xbe,0xdb,0x13,0x02,0x61,0x84,0x0a,0xef,0xbd,0x00,0x8d,0xdf,0xa6,0x39, + 0xdb,0x4c,0xfa,0xde,0x61,0xbc,0x4a,0x0f,0xf5,0xe2,0xf6,0xda,0x9d,0xe9,0x74,0xab,0xae,0x5d,0x3f,0xf9, + 0x95,0xbd,0x49,0x94,0x24,0xea,0xcb,0x40,0x9c,0xdd,0xb9,0xaa,0x30,0x86,0x1c,0x2f,0xf3,0x05,0xd4,0x88, + 0x82,0xad,0x6a,0x82,0xf8,0xd3,0x3a,0x5a,0xaf,0xe5,0x4f,0xed,0x6b,0x5d,0xf2,0x2f,0x74,0x57,0xa6,0xfb, + 0xd3,0xba,0x2a,0x8b,0xff,0x53,0xbb,0x29,0xa5,0xfe,0x42,0x17,0x5d,0x94,0xfb,0xb4,0x8e,0x1a,0x6a,0x79, + 0xc8,0x37,0x51,0x9f,0xd8,0x5f,0xcb,0x16,0xa0,0xf0,0x5f,0x81,0x2c,0xd3,0x9d,0x4f,0x03,0x2c,0xdf,0x0f, + 0x76,0xf4,0x73,0xc7,0x1e,0x4f,0x77,0xc7,0xbd,0xe4,0xdf,0x83,0xeb,0x2a,0xec,0x4e,0xec,0x79,0x89,0xad, + 0x80,0x8e,0x86,0xf1,0x3d,0xc9,0x69,0xcc,0xc4,0x63,0x37,0x3a,0x10,0x3e,0x40,0x79,0x8f,0x1d,0x90,0x14, + 0xa3,0x22,0x2a,0xc3,0x72,0x4f,0x82,0x85,0x67,0x1c,0xd5,0x3d,0x6f,0x78,0x96,0x2a,0x11,0x37,0xa3,0x1f, + 0x95,0x5b,0x44,0x56,0x4d,0x38,0xfe,0x49,0x35,0x68,0x50,0x5b,0x71,0xcd,0x3e,0x5f,0xe6,0x70,0x74,0x75, + 0x68,0x7c,0x9e,0x05,0x4e,0xb6,0x08,0xea,0x41,0x5b,0x91,0xbb,0x7d,0x70,0xa5,0x54,0x9a,0xd2,0xb1,0xd3, + 0x38,0x79,0xc4,0x28,0x05,0x6a,0x08,0xca,0xbe,0xbb,0x74,0x54,0xbd,0x0f,0xba,0x0b,0x63,0x60,0x52,0x1b, + 0x1b,0x63,0x23,0x87,0xf3,0xc1,0x6e,0x97,0x8d,0x0c,0x3a,0x51,0x36,0xd0,0xe6,0x17,0x4a,0xa9,0x77,0xd3, + 0xc6,0x27,0x93,0x2a,0xdb,0x6b,0xe3,0x13,0x52,0xb0,0xdb,0x36,0x12,0xd3,0x95,0xbb,0xf1,0x36,0x5b,0xb1, + 0xe9,0x76,0x2f,0x6e,0x7c,0xd7,0x89,0xdb,0x36,0xfa,0xc0,0x3f,0xe7,0xc7,0x60,0xed,0x0e,0xb5,0xae,0x61, + 0x4e,0x34,0xd9,0x4c,0xda,0x7b,0xe9,0xc5,0xc7,0x4e,0x98,0x26,0x20,0xca,0x10,0x85,0xff,0x63,0x5d,0xee, + 0xdc,0x71,0x6f,0xec,0xbc,0xde,0x83,0x68,0x0b,0x5e,0x24,0xb4,0x88,0x6c,0x82,0x6c,0xb2,0x65,0x52,0xb1, + 0x4c,0x90,0x16,0x83,0xdb,0xa4,0x76,0x3e,0xd6,0x2c,0xdd,0xef,0xab,0x66,0x82,0xf6,0x45,0x7d,0x1c,0xda, + 0x64,0xdb,0x9d,0xc8,0x3b,0xf4,0x1c,0x3f,0x63,0xbd,0x3b,0x9d,0x79,0x0e,0x1a,0x79,0xee,0x76,0xe6,0x39, + 0x39,0x69,0x64,0xfa,0xbc,0x33,0xd3,0xc6,0x53,0xed,0x91,0x12,0x27,0x79,0xe7,0x8b,0x23,0x06,0xd7,0xee, + 0xee,0xec,0x42,0x6b,0xba,0x24,0xfe,0xd5,0x02,0x41,0xab,0x71,0xd6,0x20,0xa2,0x1a,0x88,0x96,0x19,0x2e, + 0x06,0x67,0x62,0x61,0x83,0xbb,0x3c,0x44,0xd4,0xec,0xb5,0x59,0x58,0x03,0xcd,0xf7,0x1a,0x33,0x44,0x57, + 0xc4,0xec,0x19,0x1f,0x6f,0x37,0x95,0x15,0x86,0x5b,0x43,0x59,0x7b,0xdc,0xbe,0x63,0x3c,0x6b,0x9b,0x45, + 0x92,0x2d,0xb4,0xcf,0x6e,0xed,0x11,0x5c,0x3b,0x00,0xb7,0x6e,0xbd,0x45,0x4d,0xd6,0x40,0xb8,0x59,0x18, + 0x7d,0x10,0x3f,0xde,0xa1,0xf1,0xcd,0xd9,0xd5,0xcf,0x6d,0x37,0x08,0x5e,0x21,0xda,0xdf,0x5f,0x02,0x43, + 0x8f,0x79,0xcf,0xdd,0x6c,0x90,0xb6,0x19,0x0e,0x71,0xe6,0x05,0x9f,0x08,0x9f,0x8f,0xa8,0x1b,0x97,0x0f, + 0x54,0xaf,0x86,0xd7,0x47,0x14,0x90,0xbb,0x09,0x53,0xe4,0xce,0xc7,0x14,0x69,0x5c,0x59,0x98,0x92,0x77, + 0x43,0x57,0xa5,0xb4,0x63,0x2c,0xe9,0xca,0xe0,0xf7,0x47,0x34,0xd1,0xb8,0xf7,0x30,0x4d,0x7c,0xf1,0x09, + 0x25,0xf5,0x3d,0x88,0x29,0xda,0x9e,0xfe,0x0f,0xcd,0x4f,0x8d,0x1a,0x70,0x78,0xd9,0xe6,0xf3,0x3f,0x40, + 0x47,0x47,0x44,0x73,0xb0,0xb2,0xf2,0x35,0xdc,0xa8,0xb7,0x0b,0xab,0x2f,0x92,0xbb,0x41,0x78,0x33,0x1f, + 0x79,0xa8,0xcf,0xbf,0x9f,0xc8,0xf7,0xd4,0x63,0xf9,0x24,0xa6,0x67,0x87,0x16,0x7f,0xb8,0xef,0xe0,0x04, + 0xe4,0x00,0x6f,0x84,0x79,0x37,0xc0,0x83,0x97,0x8b,0x86,0x89,0x4b,0xe4,0x41,0xa3,0x9b,0x12,0x80,0xe8, + 0x48,0x07,0x05,0x80,0xc4,0x01,0x4a,0xd3,0xb8,0x74,0x19,0x9a,0x30,0x53,0xbe,0x37,0x4f,0xa1,0x74,0x66, + 0x8f,0x77,0x04,0x36,0x1d,0x98,0xea,0xeb,0x77,0x4f,0xf8,0xb3,0xf4,0xe3,0x31,0xb2,0xb1,0x33,0xdb,0xa4, + 0x84,0xba,0xb4,0x3e,0xf4,0xf1,0x01,0x9d,0x06,0x14,0xde,0xfd,0x32,0xf9,0x5c,0xe5,0xd9,0xcf,0x4d,0xe9, + 0x43,0xd3,0x45,0x4d,0xab,0x63,0xcc,0x1a,0x15,0x50,0x6e,0xf3,0x8f,0x8f,0x8e,0x3e,0x93,0x13,0x4f,0x32, + 0x3b,0x84,0x2b,0xfb,0x2a,0x86,0xa7,0xe0,0xe1,0xce,0x3e,0x69,0xba,0xe3,0xb1,0x21,0xc2,0xee,0x26,0xe9, + 0xce,0x81,0x27,0x7e,0x6f,0x7a,0x25,0xa2,0x03,0xfc,0xc5,0x29,0xdb,0xe9,0x34,0x44,0x10,0xf5,0x96,0xfa, + 0x61,0xb8,0x11,0xcc,0xa8,0x1c,0xe1,0x22,0xe6,0x76,0x2b,0x47,0x6f,0x7d,0x74,0xfd,0xd0,0xae,0x0b,0x5f, + 0xdd,0x1d,0x27,0xde,0xcd,0x66,0x4f,0x02,0x23,0xb5,0x0f,0xbd,0x72,0xa6,0x68,0x9f,0x84,0x1d,0xa4,0x6b, + 0x8d,0x0b,0xc0,0xd1,0xe7,0x52,0xda,0xee,0x8e,0x8e,0x82,0xc0,0x2c,0xc7,0xf7,0x31,0xea,0xec,0x22,0xca, + 0x69,0x45,0x70,0xae,0xeb,0x00,0xde,0xd9,0x7b,0xc9,0x6e,0x98,0xdf,0x1b,0xc2,0xc7,0x33,0x94,0xdc,0x20, + 0xf2,0x4d,0x87,0xae,0x2d,0x1e,0x7b,0x1b,0x0c,0x0d,0xff,0x9d,0x88,0xfb,0x0c,0x51,0xa1,0x96,0x98,0x40, + 0x37,0xd6,0x59,0xf4,0x23,0x9d,0x3a,0xce,0x74,0xa4,0xf2,0xe1,0x7b,0xb8,0xf7,0xe2,0xb0,0x59,0x87,0xc4, + 0x44,0x4c,0x8d,0x5b,0xc9,0x1b,0x9b,0x49,0xb5,0x73,0xae,0x56,0x53,0xe8,0xf3,0x0d,0xe2,0x8c,0x5d,0xe6, + 0x50,0x94,0x24,0xaf,0x5b,0xb2,0xaf,0xe3,0xe4,0xae,0xb8,0xa3,0x45,0xbc,0x95,0xff,0x72,0x86,0x51,0x4f, + 0x2e,0x84,0x0f,0x5a,0x48,0x67,0x25,0x74,0x37,0xe3,0xad,0x64,0x10,0x44,0x6c,0x0b,0xf6,0x6a,0xbe,0x97, + 0x49,0x33,0x24,0xb8,0x65,0x78,0x78,0x08,0xb9,0x95,0x16,0xda,0xd2,0x58,0x4b,0x16,0xdc,0x22,0x8d,0x47, + 0xbe,0x48,0x72,0x84,0xab,0x3b,0x7c,0x5d,0xf2,0x49,0x46,0x07,0xd7,0xba,0x36,0xf7,0x3e,0x75,0x93,0xea, + 0x4d,0x02,0xe6,0x5f,0x98,0xe7,0x41,0x2d,0x0b,0xdb,0xee,0x8c,0xf0,0xe6,0xb3,0x23,0x16,0x2a,0x6d,0x63, + 0x65,0x00,0xcf,0xbf,0x6e,0x82,0xf5,0x54,0x5d,0xc7,0x6f,0x72,0x3f,0xc3,0x86,0x86,0x3a,0x7a,0x91,0x54, + 0xc5,0x3b,0xdb,0xa1,0xa1,0xed,0xcc,0x32,0xae,0x38,0x5e,0x75,0xa5,0xea,0x24,0x22,0x1e,0x19,0xfe,0x6e, + 0xff,0xf2,0x1c,0xed,0x42,0x97,0xf9,0xfb,0xad,0x62,0x27,0x61,0x04,0x22,0x23,0xff,0xbb,0x26,0xc4,0x22, + 0xc6,0xa5,0xd8,0xf1,0x40,0xef,0x92,0x22,0x50,0x00,0x5c,0x51,0xb1,0xeb,0xf4,0xa6,0xb8,0xf0,0xd3,0xcb, + 0x97,0x9f,0xd6,0xae,0x76,0xa8,0xe6,0xb4,0x6f,0xe5,0xd5,0x2e,0x50,0xba,0xc4,0x8b,0x91,0xf7,0x37,0xaf, + 0x5f,0x41,0xcf,0x7e,0xfb,0xbf,0x01,0xea,0xfd,0x9e,0x2c,0x19,0xf0,0x01,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 2a39259..359a266 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 18; +const uint8_t VersionMetadata = 19; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+18"; -const char VersionCommitDate[] = "2018-01-14"; +const char VersionFullSemVer[] = "2.0.0-beta.1+19"; +const char VersionCommitDate[] = "2018-01-16"; #endif diff --git a/src/config.h b/src/config.h index c132ae7..27eb077 100644 --- a/src/config.h +++ b/src/config.h @@ -25,5 +25,7 @@ static const char* DefaultAPSSIDPrefix = "Stairs-"; // to the STA will block the AP) static const uint32_t StationModeTimeout = 30000; +static const uint16_t APButtonHoldTime = 5000; + #endif \ No newline at end of file diff --git a/src/global.cpp b/src/global.cpp index 07b3335..bf75b42 100644 --- a/src/global.cpp +++ b/src/global.cpp @@ -28,5 +28,6 @@ bool shouldReboot = false; uint32_t currentTime; +NTPClient* ntpClient = nullptr; IPAddress emptyIP(0, 0, 0, 0); diff --git a/src/global.h b/src/global.h index fc751bf..9c457a9 100644 --- a/src/global.h +++ b/src/global.h @@ -10,6 +10,7 @@ #include #include #include +#include #include "./settings/connection.h" #include "./settings/system.h" #include "./settings/steps.h" @@ -39,6 +40,8 @@ extern bool shouldReboot; extern uint32_t currentTime; +extern NTPClient* ntpClient; + extern IPAddress emptyIP; #endif \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp index f7878a0..55f40e1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -6,10 +6,9 @@ */ #include #include -#include +//#include +#include #include -#include -#include #include extern "C" { @@ -26,44 +25,28 @@ extern "C" { #include "./server/firmware.h" #include "./server/api.h" +#include "./main.wifi.h" +#include "./main.debug.h" +#include "./main.led.h" +#include "./main.triggers.h" + ADC_MODE(ADC_VCC); -// Forward declarations -void initWiFi(); -void initMotionPins(); -#ifdef SerialDebug -void wifiEvent(WiFiEvent_t event); -void updateDebugStatus(); -#endif -void updateLED(); -void updateNTPClient(); -void checkTriggers(); +// Forward declarations void handleNotFound(AsyncWebServerRequest* request); AsyncWebServer server(80); PCA9685* pwmDriver; -WiFiUDP ntpUDP; -NTPClient* ntpClient = nullptr; - -bool accessPoint = false; -bool stationMode = false; -bool forceAccessPoint = false; - -uint32_t stationModeStart = 0; -uint32_t blinkOnTime = 0; - - void setup() { _dinit(); currentTime = millis(); - blinkOnTime = currentTime; if (!SPIFFS.begin()) _dln("Setup :: failed to mount file system"); @@ -109,17 +92,7 @@ void setup() WiFi.persistent(false); WiFi.mode(WIFI_OFF); - #ifdef SerialDebug - // onEvent is already deprecated, but since I'm only using it - // for debug purposes we'll see how long it lasts... - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wdeprecated-declarations" - WiFi.onEvent(wifiEvent); - _d("WiFi :: MAC address: "); - _dln(WiFi.macAddress()); - #pragma GCC diagnostic pop - #endif - + initDebug(); initWiFi(); _dln("Setup :: registering routes"); @@ -149,12 +122,9 @@ void loop() motionTriggerSettingsChanged = false; } + currentTime = millis(); - - - #ifdef SerialDebug updateDebugStatus(); - #endif if (connectionSettingsChanged) @@ -165,37 +135,7 @@ void loop() } - if (stationModeStart > 0) - { - bool isConnected = WiFi.status() == WL_CONNECTED; - - if (isConnected) - { - _d("WiFi :: connected, IP address: "); - _dln(WiFi.localIP()); - - stationModeStart = 0; - } - else if (stationMode && accessPoint && - currentTime - stationModeStart >= StationModeTimeout) - { - _dln("WiFi :: unable to connect, switching off station mode, status:"); - _dln(WiFi.status()); - - #ifdef SerialDebug - WiFi.printDiag(Serial); - #endif - - // Connecting to access point is taking too long and is blocking - // the access point mode, stop trying - stationMode = false; - WiFi.disconnect(); - WiFi.mode(WIFI_AP); - } - } - - // TODO check AP button - + updateWiFi(); updateLED(); updateNTPClient(); checkTriggers(); @@ -204,379 +144,6 @@ void loop() } -void initWiFi() -{ - WiFi.disconnect(); - WiFi.softAPdisconnect(); - - accessPoint = connectionSettings->flag(AccessPoint) || forceAccessPoint; - stationMode = connectionSettings->flag(StationMode) && connectionSettings->ssid() != nullptr; - - WiFi.mode(accessPoint && stationMode ? WIFI_AP_STA : - accessPoint ? WIFI_AP : - stationMode ? WIFI_STA : - WIFI_OFF); - - if (accessPoint) - { - _dln("WiFi :: starting access point"); - String ssidString = DefaultAPSSIDPrefix + String(ESP.getChipId(), HEX); - if (WiFi.softAP((const char *)ssidString.c_str())) - { - _d("WiFi :: IP address: "); - _dln(WiFi.softAPIP()); - } - else - _d("WiFi :: failed to start soft access point"); - } - - if (stationMode) - { - _d("WiFi :: starting station mode to: "); - _dln(connectionSettings->ssid()); - - stationModeStart = currentTime; - - if (connectionSettings->hostname() != nullptr) - WiFi.hostname(connectionSettings->hostname()); - - if (WiFi.begin(connectionSettings->ssid(), connectionSettings->password())) - { - if (connectionSettings->flag(DHCP)) - // I've had the same issue as described here with config(0, 0, 0): - // https://stackoverflow.com/questions/40069654/how-to-clear-static-ip-configuration-and-start-dhcp - wifi_station_dhcpc_start(); - else - WiFi.config(connectionSettings->ip(), connectionSettings->gateway(), connectionSettings->subnetMask()); - } - else - _d("WiFi :: failed to start station mode"); - } -} - - -void initMotionPins() -{ - if (!motionTriggerSettings->enabled()) - return; - - for (uint8_t i = 0; i < motionTriggerSettings->triggerCount(); i++) - { - MotionTrigger* trigger = motionTriggerSettings->trigger(i); - if (trigger->enabled) - pinMode(trigger->pin, INPUT); - } -} - - -#ifdef SerialDebug -void wifiEvent(WiFiEvent_t event) -{ - switch (event) - { - case WIFI_EVENT_STAMODE_CONNECTED: - _dln("WiFi:: station mode: connected"); break; - - case WIFI_EVENT_STAMODE_DISCONNECTED: - _dln("WiFi:: station mode: disconnected"); break; - - case WIFI_EVENT_STAMODE_AUTHMODE_CHANGE: - _dln("WiFi:: station mode: authmode change"); break; - - case WIFI_EVENT_STAMODE_GOT_IP: - _dln("WiFi:: station mode: got IP"); - _dln(WiFi.localIP()); - break; - - case WIFI_EVENT_STAMODE_DHCP_TIMEOUT: - _dln("WiFi:: station mode: DHCP timeout"); break; - - case WIFI_EVENT_SOFTAPMODE_STACONNECTED: - _dln("WiFi:: soft AP mode: station connected"); break; - - case WIFI_EVENT_SOFTAPMODE_STADISCONNECTED: - _dln("WiFi:: soft AP mode: station disconnected"); break; - } -} - - -uint32_t debugStatusTime = 0; - -void updateDebugStatus() -{ - if (currentTime - debugStatusTime < 5000) return; - debugStatusTime = currentTime; - - - _d("Status :: available heap: "); - _dln(ESP.getFreeHeap()); - - if (ntpClient != nullptr) - { - _d("Status :: time: "); - uint32_t time = ntpClient->getEpochTime(); - - _d(day(time)); _d("-"); _d(month(time)); _d("-"); _d(year(time)); _d(" "); - _d(hour(time)); _d(":"); _d(minute(time)); _d(":"); _dln(second(time)); - } -} -#endif - - -enum LEDState -{ - Off, - BlinkLow, - BlinkHigh, - On -}; - -bool ledAP = false; -LEDState ledWiFi = Off; - - -void updateLED() -{ - uint8_t value = (currentTime - blinkOnTime >= 1000) ? LOW : HIGH; - - WiFiMode_t mode = WiFi.getMode(); - if (mode == WIFI_AP_STA || mode == WIFI_AP) - { - if (!ledAP) - { - digitalWrite(systemSettings->pinLEDAP(), HIGH); - ledAP = true; - } - } - else - { - if (ledAP) - { - digitalWrite(systemSettings->pinLEDAP(), LOW); - ledAP = false; - } - } - - if (mode == WIFI_AP_STA || mode == WIFI_STA) - { - wl_status_t status = WiFi.status(); - - if (status == WL_CONNECTED) - { - if (ledWiFi != On) - { - digitalWrite(systemSettings->pinLEDSTA(), HIGH); - ledWiFi = On; - } - } - else - { - LEDState expectedState = value == HIGH ? BlinkHigh : BlinkLow; - if (ledWiFi != expectedState) - { - digitalWrite(systemSettings->pinLEDSTA(), value); - ledWiFi = expectedState; - } - } - } - else - { - if (ledWiFi != Off) - { - digitalWrite(systemSettings->pinLEDSTA(), LOW); - ledWiFi = Off; - } - } - - - if (currentTime - blinkOnTime >= 2000) - blinkOnTime = currentTime; -} - - -void updateNTPClient() -{ - if (ntpClient == nullptr && WiFi.status() == WL_CONNECTED) - { - _dln("NTP :: initializing NTP client"); - - // TODO make NTP address and refresh interval configurable - ntpClient = new NTPClient(ntpUDP, "nl.pool.ntp.org", 0, 5 * 60 * 1000); - ntpClient->begin(); - } - - - if (ntpClient != nullptr) - ntpClient->update(); -} - - -uint32_t lastTimeTriggerChecked = 0; -TimeTrigger* lastTimeTrigger = nullptr; -TimeTrigger* activeTimeTrigger = nullptr; - - -void updateTimeTrigger() -{ - if (ntpClient == nullptr || !timeTriggerSettings->enabled()) - { - activeTimeTrigger = nullptr; - return; - } - - if (timeTriggerSettingsChanged) - { - // Time trigger settings changed, activeTimeTrigger pointer is considered - // invalid, force recheck - timeTriggerSettingsChanged = false; - } - else if (currentTime - lastTimeTriggerChecked < 10000) - return; - - - lastTimeTriggerChecked = currentTime; - _dln("Triggers:: updating time trigger"); - - uint32_t epochTime = ntpClient->getEpochTime(); - if (epochTime == 0) - { - activeTimeTrigger = nullptr; - _dln("Triggers:: time not synchronised yet"); - return; - } - - // TODO apply timezone offset - - tmElements_t time; - breakTime(epochTime, time); - - activeTimeTrigger = timeTriggerSettings->getActiveTrigger(time); - - #ifdef SerialDebug - _d("Triggers:: active time trigger: "); - if (activeTimeTrigger != nullptr) - _dln(activeTimeTrigger->time); - else - _dln("null"); - #endif -} - - -uint32_t activeMotionStart = 0; -uint16_t activeMotionBrightness = 0; -MotionDirection activeMotionDirection = Nondirectional; -bool lastMotion = false; - - -void updateMotionTrigger() -{ - if (!motionTriggerSettings->enabled() || !motionTriggerSettings->triggerCount()) - { - activeMotionStart = 0; - return; - } - - for (uint8_t i = 0; i < motionTriggerSettings->triggerCount(); i++) - { - MotionTrigger* trigger = motionTriggerSettings->trigger(i); - - if (trigger->enabled && digitalRead(trigger->pin) == HIGH) - { - if (activeMotionStart == 0) - { - activeMotionDirection = trigger->direction; - activeMotionBrightness = trigger->brightness; - } - - activeMotionStart = currentTime; - } - } - - if (currentTime - activeMotionStart >= motionTriggerSettings->delay()) - activeMotionStart = 0; -} - - -void checkTriggers() -{ - if (!timeTriggerSettings->enabled() && activeTimeTrigger == nullptr && - !motionTriggerSettings->enabled() && activeMotionStart == 0) - return; - - updateTimeTrigger(); - updateMotionTrigger(); - - bool inTimeTrigger = timeTriggerSettings->enabled() && - activeTimeTrigger != nullptr && - activeTimeTrigger->brightness; - bool timeTriggerChanged = activeTimeTrigger != lastTimeTrigger; - lastTimeTrigger = activeTimeTrigger; - - bool inMotionTrigger = (activeMotionStart > 0) && (!inTimeTrigger || motionTriggerSettings->enabledDuringTimeTrigger()); - bool motionChanged = (activeMotionStart > 0) != lastMotion; - lastMotion = (activeMotionStart > 0); - - - if (!motionChanged && !timeTriggerChanged) - return; - - - if (motionChanged) - { - if (inMotionTrigger) - { - _dln("Triggers :: start motion trigger"); - - if (activeMotionDirection == Nondirectional || motionTriggerSettings->transitionTime() == 0) - { - stairs->setAll(activeMotionBrightness, motionTriggerSettings->transitionTime(), 0); - } - else - { - // Start sweep - uint8_t stepsCount = stepsSettings->count(); - uint16_t offsetIncrement = stepsCount > 0 ? (motionTriggerSettings->transitionTime() / stepsCount) * 1.5 : 0; - uint16_t offset = activeMotionDirection == TopDown ? 0 : (stepsCount - 1) * offsetIncrement; - - for (uint8_t step = 0; step < stepsCount; step++) - { - stairs->set(step, activeMotionBrightness, motionTriggerSettings->transitionTime(), offset); - - if (activeMotionDirection == TopDown) - offset += offsetIncrement; - else - offset -= offsetIncrement; - } - } - } - else - { - if (inTimeTrigger) - { - _dln("Triggers :: motion stopped, falling back to time trigger"); - - // Fall back to time trigger value - stairs->setAll(activeTimeTrigger->brightness, motionTriggerSettings->transitionTime(), 0); - } - else - { - _dln("Triggers :: motion stopped, turning off"); - - // No more motion, no active time trigger, turn off - stairs->setAll(0, motionTriggerSettings->transitionTime(), 0); - } - } - } - else if (timeTriggerChanged && !inMotionTrigger) - { - _dln("Triggers :: time trigger changed"); - - // Set to time trigger value - stairs->setAll(activeTimeTrigger->brightness, timeTriggerSettings->transitionTime(), 0); - } -} - - void handleNotFound(AsyncWebServerRequest *request) { _d("HTTP :: not found: "); _dln(request->url()); diff --git a/src/main.debug.h b/src/main.debug.h new file mode 100644 index 0000000..7339030 --- /dev/null +++ b/src/main.debug.h @@ -0,0 +1,74 @@ +#ifdef SerialDebug +void wifiEvent(WiFiEvent_t event); + + +void initDebug() +{ + // onEvent is already deprecated, but since I'm only using it + // for debug purposes we'll see how long it lasts... + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" + WiFi.onEvent(wifiEvent); + _d("WiFi :: MAC address: "); + _dln(WiFi.macAddress()); + #pragma GCC diagnostic pop +} + + +void wifiEvent(WiFiEvent_t event) +{ + switch (event) + { + case WIFI_EVENT_STAMODE_CONNECTED: + _dln("WiFi:: station mode: connected"); break; + + case WIFI_EVENT_STAMODE_DISCONNECTED: + _dln("WiFi:: station mode: disconnected"); break; + + case WIFI_EVENT_STAMODE_AUTHMODE_CHANGE: + _dln("WiFi:: station mode: authmode change"); break; + + case WIFI_EVENT_STAMODE_GOT_IP: + _dln("WiFi:: station mode: got IP"); + _dln(WiFi.localIP()); + break; + + case WIFI_EVENT_STAMODE_DHCP_TIMEOUT: + _dln("WiFi:: station mode: DHCP timeout"); break; + + case WIFI_EVENT_SOFTAPMODE_STACONNECTED: + _dln("WiFi:: soft AP mode: station connected"); break; + + case WIFI_EVENT_SOFTAPMODE_STADISCONNECTED: + _dln("WiFi:: soft AP mode: station disconnected"); break; + } +} + + +uint32_t debugStatusTime = 0; + +void updateDebugStatus() +{ + if (currentTime - debugStatusTime < 5000) return; + debugStatusTime = currentTime; + + + _d("Status :: available heap: "); + _dln(ESP.getFreeHeap()); + + if (ntpClient != nullptr) + { + _d("Status :: time: "); + uint32_t time = ntpClient->getEpochTime(); + + _d(day(time)); _d("-"); _d(month(time)); _d("-"); _d(year(time)); _d(" "); + _d(hour(time)); _d(":"); _d(minute(time)); _d(":"); _dln(second(time)); + } +} + +#else + +#define initDebug() do { } while (0) +#define updateDebugStatus() do { } while (0) + +#endif \ No newline at end of file diff --git a/src/main.led.h b/src/main.led.h new file mode 100644 index 0000000..f877b4a --- /dev/null +++ b/src/main.led.h @@ -0,0 +1,70 @@ +enum LEDState +{ + Off, + BlinkLow, + BlinkHigh, + On +}; + +bool ledAP = false; +LEDState ledWiFi = Off; +uint32_t blinkOnTime = 0; + + +void updateLED() +{ + uint8_t value = (currentTime - blinkOnTime >= 1000) ? LOW : HIGH; + + WiFiMode_t mode = WiFi.getMode(); + if (mode == WIFI_AP_STA || mode == WIFI_AP) + { + if (!ledAP) + { + digitalWrite(systemSettings->pinLEDAP(), HIGH); + ledAP = true; + } + } + else + { + if (ledAP) + { + digitalWrite(systemSettings->pinLEDAP(), LOW); + ledAP = false; + } + } + + if (mode == WIFI_AP_STA || mode == WIFI_STA) + { + wl_status_t status = WiFi.status(); + + if (status == WL_CONNECTED) + { + if (ledWiFi != On) + { + digitalWrite(systemSettings->pinLEDSTA(), HIGH); + ledWiFi = On; + } + } + else + { + LEDState expectedState = value == HIGH ? BlinkHigh : BlinkLow; + if (ledWiFi != expectedState) + { + digitalWrite(systemSettings->pinLEDSTA(), value); + ledWiFi = expectedState; + } + } + } + else + { + if (ledWiFi != Off) + { + digitalWrite(systemSettings->pinLEDSTA(), LOW); + ledWiFi = Off; + } + } + + + if (currentTime - blinkOnTime >= 2000) + blinkOnTime = currentTime; +} \ No newline at end of file diff --git a/src/main.triggers.h b/src/main.triggers.h new file mode 100644 index 0000000..44246c5 --- /dev/null +++ b/src/main.triggers.h @@ -0,0 +1,197 @@ +WiFiUDP ntpUDP; + +uint32_t lastTimeTriggerChecked = 0; +TimeTrigger* lastTimeTrigger = nullptr; +TimeTrigger* activeTimeTrigger = nullptr; + + +void initMotionPins() +{ + if (!motionTriggerSettings->enabled()) + return; + + for (uint8_t i = 0; i < motionTriggerSettings->triggerCount(); i++) + { + MotionTrigger* trigger = motionTriggerSettings->trigger(i); + if (trigger->enabled) + pinMode(trigger->pin, INPUT); + } +} + + +void updateNTPClient() +{ + if (ntpClient == nullptr && WiFi.status() == WL_CONNECTED) + { + _dln("NTP :: initializing NTP client"); + + // TODO make NTP address and refresh interval configurable + ntpClient = new NTPClient(ntpUDP, "nl.pool.ntp.org", 0, 5 * 60 * 1000); + ntpClient->begin(); + } + + + if (ntpClient != nullptr) + ntpClient->update(); +} + + +void updateTimeTrigger() +{ + if (ntpClient == nullptr || !timeTriggerSettings->enabled()) + { + activeTimeTrigger = nullptr; + return; + } + + if (timeTriggerSettingsChanged) + { + // Time trigger settings changed, activeTimeTrigger pointer is considered + // invalid, force recheck + timeTriggerSettingsChanged = false; + } + else if (currentTime - lastTimeTriggerChecked < 10000) + return; + + + lastTimeTriggerChecked = currentTime; + _dln("Triggers:: updating time trigger"); + + uint32_t epochTime = ntpClient->getEpochTime(); + if (epochTime == 0) + { + activeTimeTrigger = nullptr; + _dln("Triggers:: time not synchronised yet"); + return; + } + + // TODO apply timezone offset + + tmElements_t time; + breakTime(epochTime, time); + + activeTimeTrigger = timeTriggerSettings->getActiveTrigger(time); + + #ifdef SerialDebug + _d("Triggers:: active time trigger: "); + if (activeTimeTrigger != nullptr) + _dln(activeTimeTrigger->time); + else + _dln("null"); + #endif +} + + +uint32_t activeMotionStart = 0; +uint16_t activeMotionBrightness = 0; +MotionDirection activeMotionDirection = Nondirectional; +bool lastMotion = false; + + +void updateMotionTrigger() +{ + if (!motionTriggerSettings->enabled() || !motionTriggerSettings->triggerCount()) + { + activeMotionStart = 0; + return; + } + + for (uint8_t i = 0; i < motionTriggerSettings->triggerCount(); i++) + { + MotionTrigger* trigger = motionTriggerSettings->trigger(i); + + if (trigger->enabled && digitalRead(trigger->pin) == HIGH) + { + if (activeMotionStart == 0) + { + activeMotionDirection = trigger->direction; + activeMotionBrightness = trigger->brightness; + } + + activeMotionStart = currentTime; + } + } + + if (currentTime - activeMotionStart >= motionTriggerSettings->delay()) + activeMotionStart = 0; +} + + +void checkTriggers() +{ + if (!timeTriggerSettings->enabled() && activeTimeTrigger == nullptr && + !motionTriggerSettings->enabled() && activeMotionStart == 0) + return; + + updateTimeTrigger(); + updateMotionTrigger(); + + bool inTimeTrigger = timeTriggerSettings->enabled() && + activeTimeTrigger != nullptr && + activeTimeTrigger->brightness; + bool timeTriggerChanged = activeTimeTrigger != lastTimeTrigger; + lastTimeTrigger = activeTimeTrigger; + + bool inMotionTrigger = (activeMotionStart > 0) && (!inTimeTrigger || motionTriggerSettings->enabledDuringTimeTrigger()); + bool motionChanged = (activeMotionStart > 0) != lastMotion; + lastMotion = (activeMotionStart > 0); + + + if (!motionChanged && !timeTriggerChanged) + return; + + + if (motionChanged) + { + if (inMotionTrigger) + { + _dln("Triggers :: start motion trigger"); + + if (activeMotionDirection == Nondirectional || motionTriggerSettings->transitionTime() == 0) + { + stairs->setAll(activeMotionBrightness, motionTriggerSettings->transitionTime(), 0); + } + else + { + // Start sweep + uint8_t stepsCount = stepsSettings->count(); + uint16_t offsetIncrement = stepsCount > 0 ? (motionTriggerSettings->transitionTime() / stepsCount) * 1.5 : 0; + uint16_t offset = activeMotionDirection == TopDown ? 0 : (stepsCount - 1) * offsetIncrement; + + for (uint8_t step = 0; step < stepsCount; step++) + { + stairs->set(step, activeMotionBrightness, motionTriggerSettings->transitionTime(), offset); + + if (activeMotionDirection == TopDown) + offset += offsetIncrement; + else + offset -= offsetIncrement; + } + } + } + else + { + if (inTimeTrigger) + { + _dln("Triggers :: motion stopped, falling back to time trigger"); + + // Fall back to time trigger value + stairs->setAll(activeTimeTrigger->brightness, motionTriggerSettings->transitionTime(), 0); + } + else + { + _dln("Triggers :: motion stopped, turning off"); + + // No more motion, no active time trigger, turn off + stairs->setAll(0, motionTriggerSettings->transitionTime(), 0); + } + } + } + else if (timeTriggerChanged && !inMotionTrigger) + { + _dln("Triggers :: time trigger changed"); + + // Set to time trigger value + stairs->setAll(activeTimeTrigger->brightness, timeTriggerSettings->transitionTime(), 0); + } +} \ No newline at end of file diff --git a/src/main.wifi.h b/src/main.wifi.h new file mode 100644 index 0000000..1eb3072 --- /dev/null +++ b/src/main.wifi.h @@ -0,0 +1,121 @@ +bool accessPoint = false; +bool stationMode = false; + +uint32_t stationModeStart = 0; +uint32_t apButtonStart = 0; + + +void startAccessPoint(); +void startStationMode(); + + +void initWiFi() +{ + WiFi.disconnect(); + WiFi.softAPdisconnect(); + + accessPoint = connectionSettings->flag(AccessPoint); + stationMode = connectionSettings->flag(StationMode) && connectionSettings->ssid() != nullptr; + + WiFi.mode(accessPoint && stationMode ? WIFI_AP_STA : + accessPoint ? WIFI_AP : + stationMode ? WIFI_STA : + WIFI_OFF); + + if (accessPoint) + startAccessPoint(); + + if (stationMode) + startStationMode(); +} + + +void updateWiFi() +{ + if (stationModeStart > 0) + { + bool isConnected = WiFi.status() == WL_CONNECTED; + + if (isConnected) + { + _d("WiFi :: connected, IP address: "); + _dln(WiFi.localIP()); + + stationModeStart = 0; + } + else if (stationMode && accessPoint && + currentTime - stationModeStart >= StationModeTimeout) + { + _dln("WiFi :: unable to connect, switching off station mode, status:"); + _dln(WiFi.status()); + + #ifdef SerialDebug + WiFi.printDiag(Serial); + #endif + + // Connecting to access point is taking too long and is blocking + // the access point mode, stop trying + stationMode = false; + WiFi.disconnect(); + WiFi.mode(WIFI_AP); + } + } + + + if (!accessPoint) + { + if (digitalRead(systemSettings->pinAPButton()) == LOW) + { + if (apButtonStart == 0) + apButtonStart = currentTime; + else if (currentTime - apButtonStart >= APButtonHoldTime) + { + connectionSettings->flag(AccessPoint, true); + connectionSettings->write(); + + startAccessPoint(); + apButtonStart = 0; + } + } + else if (apButtonStart > 0) + apButtonStart = 0; + } +} + + +void startAccessPoint() +{ + _dln("WiFi :: starting access point"); + String ssidString = DefaultAPSSIDPrefix + String(ESP.getChipId(), HEX); + if (WiFi.softAP((const char *)ssidString.c_str())) + { + _d("WiFi :: IP address: "); + _dln(WiFi.softAPIP()); + } + else + _d("WiFi :: failed to start soft access point"); +} + + +void startStationMode() +{ + _d("WiFi :: starting station mode to: "); + _dln(connectionSettings->ssid()); + + stationModeStart = currentTime; + + if (connectionSettings->hostname() != nullptr) + WiFi.hostname(connectionSettings->hostname()); + + if (WiFi.begin(connectionSettings->ssid(), connectionSettings->password())) + { + if (connectionSettings->flag(DHCP)) + // I've had the same issue as described here with config(0, 0, 0): + // https://stackoverflow.com/questions/40069654/how-to-clear-static-ip-configuration-and-start-dhcp + wifi_station_dhcpc_start(); + else + WiFi.config(connectionSettings->ip(), connectionSettings->gateway(), connectionSettings->subnetMask()); + } + else + _d("WiFi :: failed to start station mode"); +} diff --git a/web/app.js b/web/app.js index 93eeab0..7fbb8e6 100644 --- a/web/app.js +++ b/web/app.js @@ -96,20 +96,49 @@ function startApp() self.disableStepsChanged = false; self.savingStepsTimer = false; - axios.get('/api/version') - .then(function(response) - { - if (typeof response.data == 'object') - self.version = response.data; - }) - .catch(function(error) - { - console.log(error); - }); - // TODO retrieve system settings - axios.all([ - axios.get('/api/connection') + // Sequential loading of all the settings makes sure + // we don't overload the ESP8266 with requests, as that + // can cause it to run out of memory easily. + self.loadVersion().then(function() + { + self.loadConnection().then(function() + { + self.loadSystem().then(function() + { + self.loadTimeTriggers().then(function() + { + self.loadSteps().then(function() + { + self.stopLoadingIndicator(); + self.loading = false; + }); + }); + }); + }); + }); + }, + + methods: { + loadVersion: function() + { + var self = this; + return axios.get('/api/version') + .then(function(response) + { + if (typeof response.data == 'object') + self.version = response.data; + }) + .catch(function(error) + { + console.log(error); + }); + }, + + loadConnection: function() + { + var self = this; + return axios.get('/api/connection') .then(function(response) { if (typeof response.data == 'object') @@ -118,9 +147,13 @@ function startApp() .catch(function(error) { console.log(error); - }), + }); + }, - axios.get('/api/system') + loadSystem: function() + { + var self = this; + return axios.get('/api/system') .then(function(response) { if (typeof response.data == 'object') @@ -129,9 +162,13 @@ function startApp() .catch(function(error) { console.log(error); - }), + }); + }, - axios.get('/api/triggers/time') + loadTimeTriggers: function() + { + var self = this; + return axios.get('/api/triggers/time') .then(function(response) { if (typeof response.data == 'object') @@ -140,9 +177,14 @@ function startApp() .catch(function(error) { console.log(error); - }), + }); + }, - axios.get('/api/steps') + + loadSteps: function() + { + var self = this; + return axios.get('/api/steps') .then(function(response) { if (Array.isArray(response.data)) @@ -171,15 +213,10 @@ function startApp() self.allStepsValue = Math.floor(total / steps.length); self.allSteps = allSteps; } - }) - ]) - .then(axios.spread(function(acct, perms) { - self.stopLoadingIndicator(); - self.loading = false; - })); - }, + }); + }, + - methods: { applyConnection: function() { var self = this; diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 3aa1007..65da002 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):X(c)&&X(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Ir&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Lt(t){this._init(t)}function Et(t){return t&&(t.Ctor.options.name||t.tag)}function Pt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function It(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Et(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Ft(t,n){return{staticClass:Nt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Nt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,Hr),key:'"'+t.slice(Hr+1)+'"'}:{exp:t,key:null};for(Ur=t,Hr=zr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(zr=Hr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=Hr;break}}(Vr);return{exp:t.slice(0,zr),key:t.slice(zr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Ur.charCodeAt(++Hr)}function ce(){return Hr>=Wr}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Kr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Kr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Kr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(t){if(e(t[bi])){var n=Nn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),K(i,o,fe,pe,r.context),Kr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Li(t.name||"v")),v(e,t),e}return"string"==typeof t?Li(t):void 0}}function we(t){Ri(function(){Ri(t)})}function xe(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Pi?Fi:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Pi,l=a,f=o.length):e===Ii?u>0&&(n=Ii,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Pi:Ii:null)?n===Pi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Pi&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Ee(t,e){!0!==e.data.show&&Te(e)}function Pe(t,e,n){Ie(t,e,n),(Nn||Rn)&&setTimeout(function(){Ie(t,e,n)},0)}function Ie(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Fe(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Fe(t){return"_value"in t?t._value:t.value}function Ne(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function We(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?We(Q(e.children)):t}function Ue(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function He(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function ze(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Ke(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Je(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),xn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),$n=/\B([A-Z])/g,kn=p(function(t){return t.replace($n,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},Ln=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=In&&WXEnvironment.platform.toLowerCase(),Fn=Pn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Dn,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Dn,Un=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Vn=!1;if(Pn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,Hn)}catch(t){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);qn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&xr[n].id>t.id;)n--;xr.splice(n+1,0,t)}else xr.push(t);Cr||(Cr=!0,H(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Lr={lazy:!0};Ct(At.prototype);var Er={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Er.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Xn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=H,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Lt),Object.defineProperty(Lt.prototype,"$isServer",{get:Kn}),Object.defineProperty(Lt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Lt.version="2.5.13";var Wr,Ur,Vr,Hr,zr,qr,Kr,Jr,Gr=u("style,class"),Xr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Xr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Wt(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Wt(t,!0),Wt(e))},destroy:function(t){Wt(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:Ht,update:Ht,destroy:function(t){Ht(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Kt,update:Kt},yi={create:Gt,update:Gt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",xi={create:de,update:de},$i={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Lt.options.directives,Vi),v(Lt.options.components,Ki),Lt.prototype.__patch__=Pn?Wi:g,Lt.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&Pn?Bt(t):void 0,e)},Lt.nextTick(function(){jn.devtools&&Jn&&Jn.emit("init",Lt)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Xi,"\\$&"),n=t[1].replace(Xi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Eo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for($=t.slice(v);!(co.test($)||ao.test($)||lo.test($)||fo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Nn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Xt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,F.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===L&&"'"===e||l===E&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===P)return c}}(t))&&(this._cache[t]=e),e||[]},N.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (pull low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optional. Currently only used for translating a location name to it's latitude / longitude, which you will most likely only do once. Will work without an API key, but Google might throttle your request."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Optioneel. Wordt op dit moment enkel gebruikt om een locatie te vertalen naar een breedte- / lengtegraad, wat je waarschijnlijk maar één keer nodig hebt. Werkt ook zonder API key, met de kans dat Google je verzoek tijdelijk niet toestaat."}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:0,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:""},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(t){console.log(t)}),axios.all([axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/triggers/time").then(function(t){"object"==typeof t.data&&(e.triggers.time=t.data)}).catch(function(t){console.log(t)}),axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.system.lat=n.lat,t.system.lng=n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):X(c)&&X(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Ir&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Lt(t){this._init(t)}function Et(t){return t&&(t.Ctor.options.name||t.tag)}function Pt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function It(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Et(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Ft(t,n){return{staticClass:Nt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Nt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,Hr),key:'"'+t.slice(Hr+1)+'"'}:{exp:t,key:null};for(Wr=t,Hr=zr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(zr=Hr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=Hr;break}}(Vr);return{exp:t.slice(0,zr),key:t.slice(zr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Wr.charCodeAt(++Hr)}function ce(){return Hr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Kr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Kr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Kr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(t){if(e(t[bi])){var n=Nn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),K(i,o,fe,pe,r.context),Kr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Li(t.name||"v")),v(e,t),e}return"string"==typeof t?Li(t):void 0}}function we(t){Ri(function(){Ri(t)})}function xe(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Pi?Fi:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Pi,l=a,f=o.length):e===Ii?u>0&&(n=Ii,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Pi:Ii:null)?n===Pi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Pi&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Ee(t,e){!0!==e.data.show&&Te(e)}function Pe(t,e,n){Ie(t,e,n),(Nn||Rn)&&setTimeout(function(){Ie(t,e,n)},0)}function Ie(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Fe(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Fe(t){return"_value"in t?t._value:t.value}function Ne(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function We(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function He(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function ze(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Ke(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Je(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),xn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),$n=/\B([A-Z])/g,kn=p(function(t){return t.replace($n,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},Ln=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=In&&WXEnvironment.platform.toLowerCase(),Fn=Pn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Dn,Un=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Dn,Wn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Vn=!1;if(Pn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,Hn)}catch(t){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);qn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&xr[n].id>t.id;)n--;xr.splice(n+1,0,t)}else xr.push(t);Cr||(Cr=!0,H(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Lr={lazy:!0};Ct(At.prototype);var Er={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Er.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Xn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=H,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Lt),Object.defineProperty(Lt.prototype,"$isServer",{get:Kn}),Object.defineProperty(Lt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Lt.version="2.5.13";var Ur,Wr,Vr,Hr,zr,qr,Kr,Jr,Gr=u("style,class"),Xr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Xr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:Ht,update:Ht,destroy:function(t){Ht(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Kt,update:Kt},yi={create:Gt,update:Gt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",xi={create:de,update:de},$i={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Lt.options.directives,Vi),v(Lt.options.components,Ki),Lt.prototype.__patch__=Pn?Ui:g,Lt.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&Pn?Bt(t):void 0,e)},Lt.nextTick(function(){jn.devtools&&Jn&&Jn.emit("init",Lt)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Xi,"\\$&"),n=t[1].replace(Xi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Eo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for($=t.slice(v);!(co.test($)||ao.test($)||lo.test($)||fo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Nn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Xt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,F.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===L&&"'"===e||l===E&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===P)return c}}(t))&&(this._cache[t]=e),e||[]},N.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (pull low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:0,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:""},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,e.loadVersion().then(function(){e.loadConnection().then(function(){e.loadSystem().then(function(){e.loadTimeTriggers().then(function(){e.loadSteps().then(function(){e.stopLoadingIndicator(),e.loading=!1})})})})})},methods:{loadVersion:function(){var t=this;return axios.get("/api/version").then(function(e){"object"==typeof e.data&&(t.version=e.data)}).catch(function(t){console.log(t)})},loadConnection:function(){var t=this;return axios.get("/api/connection").then(function(e){"object"==typeof e.data&&(t.connection=e.data)}).catch(function(t){console.log(t)})},loadSystem:function(){var t=this;return axios.get("/api/system").then(function(e){"object"==typeof e.data&&(t.system=e.data)}).catch(function(t){console.log(t)})},loadTimeTriggers:function(){var t=this;return axios.get("/api/triggers/time").then(function(e){"object"==typeof e.data&&(t.triggers.time=e.data)}).catch(function(t){console.log(t)})},loadSteps:function(){var t=this;return axios.get("/api/steps").then(function(e){if(Array.isArray(e.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.system.lat=n.lat,t.system.lng=n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file diff --git a/web/lang.js b/web/lang.js index 626084f..b6fdec0 100644 --- a/web/lang.js +++ b/web/lang.js @@ -93,7 +93,7 @@ var messages = { pwmFrequency: 'PCA9685 PWM driver frequency', mapsAPIKey: 'Google Maps API key', - mapsAPIKeyhint: 'Optional. Currently only used for translating a location name to it\'s latitude / longitude, which you will most likely only do once. Will work without an API key, but Google might throttle your request.' + mapsAPIKeyhint: 'Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it\'s use for the Maps API.' } }, @@ -191,7 +191,7 @@ var messages = { pwmFrequency: 'PCA9685 PWM driver frequency', mapsAPIKey: 'Google Maps API key', - mapsAPIKeyhint: 'Optioneel. Wordt op dit moment enkel gebruikt om een locatie te vertalen naar een breedte- / lengtegraad, wat je waarschijnlijk maar één keer nodig hebt. Werkt ook zonder API key, met de kans dat Google je verzoek tijdelijk niet toestaat.' + mapsAPIKeyhint: 'Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API.' } } } \ No newline at end of file From 0b42c492106512663a1c2db2772558f835253d17 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Wed, 17 Jan 2018 16:57:14 +0100 Subject: [PATCH 20/43] Implemented time triggers frontend --- src/assets/css.h | 279 +- src/assets/html.h | 269 +- src/assets/js.h | 4432 ++++++++++++++++---------------- src/assets/version.h | 6 +- src/settings/triggers/time.cpp | 1 - web/app.js | 147 +- web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 78 +- web/lang.js | 22 + web/site.scss | 80 +- 11 files changed, 2837 insertions(+), 2481 deletions(-) diff --git a/src/assets/css.h b/src/assets/css.h index 15ff613..1076523 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -4,142 +4,147 @@ #include const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x5d,0x93,0xa3,0xb8,0xf1,0xaf,0x90,0xd9, - 0xda,0xda,0xdb,0x1c,0xb0,0x18,0xdb,0xcc,0x0c,0xbe,0xd9,0x4a,0xee,0x29,0x0f,0x49,0x1e,0x52,0xa9,0xbc, - 0x6c,0xed,0x83,0x0c,0xc2,0xa8,0x16,0x23,0x02,0x62,0x3c,0x73,0x14,0xff,0x3d,0xad,0x0f,0x8c,0x04,0x02, - 0xcf,0xe4,0x52,0x95,0x75,0xed,0xd8,0xb4,0xba,0x5b,0xad,0xee,0x56,0xab,0xbb,0xc5,0x1f,0xdd,0x18,0x65, - 0x0c,0xd7,0x6e,0x7c,0xc4,0x19,0xad,0x71,0x77,0xa4,0x2f,0x5e,0x43,0x7e,0x23,0xe5,0x29,0x26,0x65,0x8e, - 0x6b,0xc2,0xfa,0x9c,0x9d,0x0b,0x1d,0x7e,0xa4,0x75,0x8a,0x6b,0x0f,0x20,0x87,0x8c,0x96,0x8c,0x83,0x71, - 0x1c,0x85,0xfe,0xfe,0x63,0x7f,0xa4,0xe9,0x6b,0x97,0xd0,0x82,0xd6,0xf1,0x87,0x28,0x88,0x92,0xfb,0x48, - 0xa2,0x64,0xe8,0x4c,0x8a,0xd7,0xf8,0x1f,0xf4,0x48,0x19,0x75,0x3f,0xfd,0x05,0x17,0xcf,0x98,0x91,0x04, - 0x39,0x7f,0xc7,0x2d,0xfe,0xe4,0x5e,0x9f,0xdd,0x3f,0xd7,0x04,0x15,0x6e,0x83,0xca,0xc6,0x6b,0x60,0xf2, - 0x4c,0x9b,0x61,0xe3,0x47,0xf8,0x2c,0x9f,0x2f,0x98,0x9c,0x72,0x16,0x6f,0x83,0xe0,0x50,0x60,0x06,0xe2, - 0x7b,0x4d,0x85,0x12,0x2e,0x9b,0x1f,0x6c,0x00,0xa9,0x20,0x25,0xf6,0x72,0x89,0x04,0x64,0xfd,0xb1,0xa0, - 0xc9,0x8f,0x7f,0xb7,0x94,0xf1,0xf5,0x09,0xe1,0x0b,0x9c,0xb1,0xd8,0xdf,0xd6,0xf8,0xec,0x34,0xb4,0x20, - 0xa9,0xf3,0x61,0x17,0xf0,0xcf,0xe1,0x8c,0xea,0x13,0x29,0xe5,0xf8,0xf5,0xa9,0x16,0x9c,0x82,0x43,0x85, - 0xd2,0x94,0xcf,0xb2,0xe1,0x74,0x1b,0x7f,0x0f,0x5f,0x1a,0x6f,0x27,0x2e,0x50,0xc3,0xbc,0x24,0x27,0x45, - 0xda,0x29,0x4a,0x58,0x2f,0xa3,0xe7,0x38,0xe8,0xfd,0x63,0x0b,0xbf,0x4a,0x57,0x7d,0x91,0xb2,0x6a,0xd9, - 0x37,0xf6,0x5a,0xe1,0x27,0x09,0xf9,0xae,0x83,0x6a,0xdc,0x60,0x66,0x40,0x9a,0xf6,0x78,0x26,0xec,0x7b, - 0x77,0x44,0xc9,0x8f,0x53,0x4d,0xdb,0x32,0xf5,0x94,0x9a,0x83,0x28,0x3b,0xc8,0x45,0xc5,0xfe,0x46,0x5b, - 0xcf,0x08,0xf7,0x6a,0x94,0x92,0xb6,0x89,0xfd,0x1d,0x0c,0x1f,0x14,0x59,0x96,0x65,0x87,0xa4,0xad,0x1b, - 0xf8,0x5d,0x51,0x52,0x82,0x0e,0x0f,0x29,0x69,0xaa,0x02,0xbd,0x82,0xdd,0x85,0xfe,0xc4,0xc2,0x0c,0xfd, - 0x73,0xf6,0x86,0x01,0xee,0xc1,0x00,0x4a,0xcd,0x5b,0xff,0x81,0x8f,0x4e,0xcd,0x21,0x48,0x74,0x73,0x28, - 0xbc,0x41,0x93,0x81,0xc3,0x6d,0x70,0x60,0xf8,0x85,0x79,0xa8,0x20,0xa7,0x32,0x4e,0xb0,0x10,0x46,0x40, - 0x52,0x9c,0xd0,0x1a,0x31,0x42,0xcb,0xb8,0xa4,0x25,0x96,0x40,0x56,0x83,0x77,0x80,0xaf,0x9e,0xe3,0xb6, - 0xaa,0x70,0x9d,0xa0,0x06,0x1f,0x2e,0x39,0x61,0x58,0xcc,0x8a,0x01,0xf3,0x52,0xa3,0x6a,0x50,0x78,0x9c, - 0xd1,0xa4,0x6d,0xdc,0xe1,0x29,0xa7,0xcf,0xe0,0xec,0xc6,0x90,0x31,0x32,0xb7,0x8b,0xc2,0xb2,0x0c,0xcc, - 0x28,0xa4,0xd9,0xe6,0x04,0x0a,0x3e,0xc3,0x57,0x46,0x9d,0x13,0x0c,0x03,0x82,0xc2,0x62,0x73,0xb5,0xb5, - 0x94,0x79,0x4d,0xa0,0x66,0x5f,0xda,0x32,0xae,0xfa,0xd1,0xfb,0xbe,0x81,0x89,0xd1,0xb1,0xc0,0xe9,0x77, - 0x77,0x06,0x98,0x2f,0xd0,0x3e,0x28,0x17,0x63,0x1f,0x53,0x72,0x8f,0x83,0x9d,0x72,0xb1,0x14,0x67,0xa8, - 0x2d,0xd8,0x81,0x72,0xbf,0x60,0xaf,0xb1,0xbf,0x9f,0x8b,0x64,0x5a,0x4a,0x83,0xeb,0x36,0x9b,0xa1,0x2f, - 0x60,0xaf,0xad,0x66,0xd1,0xa2,0x6b,0x5c,0xa6,0xcb,0x5e,0xb2,0xf2,0x1a,0x8f,0x99,0x7a,0x16,0x2d,0x3f, - 0xe5,0xb2,0xba,0xef,0x35,0xc8,0xa0,0x55,0xf5,0xe5,0x29,0x0f,0x70,0xed,0xd0,0xb9,0x06,0x56,0x30,0xe4, - 0xf2,0x56,0x10,0x94,0xe8,0x13,0x8c,0xb9,0xe4,0x62,0xff,0x56,0xa8,0x86,0x7d,0x7e,0xb8,0x29,0xb9,0xe9, - 0x14,0xd3,0x41,0xdd,0x33,0xec,0x84,0x6b,0x74,0x37,0x97,0xbf,0xe8,0x28,0x37,0xf9,0x59,0x95,0xb5,0xe4, - 0x32,0x37,0xb9,0xd9,0x35,0xbb,0xe8,0x3c,0x56,0x7e,0xeb,0x76,0x58,0x8b,0x24,0xf2,0x69,0xc1,0x3e,0x4b, - 0xdb,0x77,0x19,0x6d,0xc5,0x66,0x0b,0x9b,0xfb,0x16,0xaf,0x9b,0xf6,0x79,0xc3,0xd6,0x7f,0xc7,0x1c,0x56, - 0xa3,0xdd,0x0e,0x0c,0xef,0x98,0xc1,0x6e,0xc7,0x37,0x84,0x8d,0x1b,0x73,0x74,0x86,0x99,0x55,0x7a,0xb7, - 0xb2,0x07,0x93,0x02,0xa3,0xa9,0xa9,0x24,0x6c,0x59,0x81,0xb3,0x71,0x73,0xf5,0xb3,0xe1,0x89,0xe4,0x62, - 0xfc,0x1d,0xbe,0xfa,0xb6,0x60,0x22,0xb8,0xda,0x1d,0x54,0x0e,0xd9,0x9c,0x52,0x27,0x5a,0xa6,0xb9,0xa1, - 0x89,0x9b,0x0e,0xb7,0xc0,0xcb,0xa2,0xb5,0x5b,0x8e,0xb5,0xc0,0xc9,0xa6,0xe0,0x9b,0x0e,0xa4,0xf1,0xfa, - 0x7d,0xc6,0xb0,0x07,0x0f,0xc1,0xfe,0x56,0xe8,0x98,0x22,0x2d,0xda,0xe8,0x46,0xd8,0xb0,0xf3,0xb9,0x61, - 0x91,0x77,0x84,0x8c,0x9b,0xfc,0x2d,0x66,0x7a,0x7b,0xb8,0xb8,0xc9,0xdd,0x66,0xb9,0x77,0x84,0x0a,0x2b, - 0xff,0x4e,0xdb,0x4a,0x09,0x4d,0xf5,0x43,0x1c,0x32,0xcb,0x5d,0xb6,0xcf,0x22,0x6b,0x6d,0x31,0x16,0x0b, - 0x0f,0xd1,0x47,0x55,0x3c,0x41,0x8a,0xef,0x87,0x7a,0xca,0x2f,0x9e,0x1c,0x51,0x3c,0xd9,0xf2,0xf6,0xaa, - 0x5e,0x9b,0x6e,0x5e,0xb7,0xf1,0x3c,0x88,0xcb,0x9c,0x15,0xf4,0xe2,0xbd,0xc6,0x39,0x49,0x53,0x5c,0x72, - 0x2e,0x5f,0xa5,0xe4,0x86,0x98,0xc1,0xb5,0xc8,0x91,0xd5,0x8d,0xa5,0xa0,0x33,0x64,0x02,0x36,0x7d,0x3e, - 0xc4,0x4d,0xa0,0x56,0xdc,0x18,0xad,0xcc,0x62,0x4b,0x09,0xa9,0x56,0x2c,0xc4,0x0b,0x7a,0x4d,0xe9,0xf8, - 0x8c,0x48,0x61,0xa4,0xca,0x65,0x7b,0x3e,0xe2,0xda,0x00,0x55,0xa8,0x69,0x2e,0x30,0x81,0x99,0x52,0x83, - 0x79,0x92,0xdc,0x00,0x31,0x5c,0x4c,0x9e,0x5f,0xcc,0x62,0xb1,0xad,0x01,0xa1,0xc1,0x05,0x4e,0x98,0xcb, - 0x07,0x61,0x47,0xa2,0x0e,0x41,0xb1,0x84,0x60,0x83,0x0a,0x4d,0x43,0x2d,0xf5,0x86,0x6d,0x6d,0xae,0x51, - 0x15,0xc8,0x36,0xbb,0x8b,0xe6,0x40,0x8e,0x52,0x7a,0x51,0xbc,0x67,0x4d,0x84,0x83,0xbd,0xfc,0xf3,0x23, - 0xa1,0x78,0xa1,0x76,0x92,0xb2,0x3c,0xde,0x04,0xc1,0xc7,0xb9,0xe2,0xe6,0x5e,0xac,0xd4,0x37,0x1f,0xb8, - 0x2a,0xd1,0xe2,0xf9,0x52,0x95,0xf3,0x01,0xae,0x50,0x1b,0xf4,0xc5,0x56,0x9b,0x71,0xe5,0x2a,0xa8,0x54, - 0xb1,0x7a,0x18,0x14,0x2d,0x1f,0xbb,0x59,0x6a,0xae,0x55,0x63,0x92,0x4e,0xf7,0x72,0x60,0xfa,0xd3,0xa7, - 0x14,0x31,0x14,0x93,0x33,0x3a,0xe1,0x2f,0xcd,0xf3,0xe9,0xe7,0x97,0x73,0x71,0x68,0x59,0xf6,0xe0,0xfe, - 0x02,0x4f,0x0e,0x3c,0x95,0xcd,0xd3,0x5d,0xce,0x58,0x15,0x7f,0xf9,0x72,0xb9,0x5c,0xfc,0xcb,0xd6,0xa7, - 0xf5,0xe9,0x4b,0x18,0x04,0x01,0xc7,0xbf,0x73,0xa4,0x8a,0x9f,0xee,0x36,0xbb,0x3b,0xe7,0x99,0xe0,0xcb, - 0xaf,0xf4,0xe5,0xe9,0x2e,0x70,0x02,0x27,0x7c,0x74,0x38,0x4c,0x68,0xf8,0xe9,0x2e,0x7c,0xbc,0xfb,0xfa, - 0x4b,0x85,0x58,0xee,0x64,0xa4,0x28,0x9e,0xee,0x3e,0xa4,0x1b,0xfe,0xb9,0x73,0xd2,0xa7,0xbb,0xbf,0x3d, - 0xfa,0xdb,0xfb,0xfb,0xf0,0xde,0xd9,0xfa,0x51,0xb8,0x2f,0xf6,0x7e,0xf0,0xb0,0xd9,0xef,0x9c,0xc8,0x7f, - 0xdc,0xee,0xc3,0xed,0x5f,0x37,0x8f,0xfe,0x7e,0x17,0x6c,0x23,0x39,0x7c,0xf7,0xe5,0xeb,0x2f,0x7c,0xe6, - 0xaf,0x9f,0x3e,0x3b,0xb2,0x6a,0x77,0x44,0xa3,0xc4,0x29,0xa9,0x57,0x63,0xf0,0x36,0x36,0xd8,0x59,0x35, - 0x50,0xf8,0xbe,0xe8,0x75,0xa5,0xe9,0x67,0x8b,0x58,0xf8,0xff,0x57,0x11,0x8f,0xc7,0x5d,0x9a,0xa0,0xdf, - 0xa5,0x88,0xfe,0xba,0xdf,0xce,0xa4,0x1c,0x7a,0x1e,0x91,0xec,0x14,0x15,0xe8,0x88,0x0b,0xb7,0xc0,0x27, - 0x5c,0xa6,0x9d,0x19,0x87,0x8c,0x2e,0x97,0xad,0xcb,0x62,0xb6,0x93,0x24,0xbf,0x8c,0xe0,0x22,0x85,0xb3, - 0x62,0xf0,0x35,0xb9,0x83,0xc6,0x2e,0x95,0x11,0x81,0x92,0x1c,0x27,0x3f,0x60,0x5f,0x9a,0xb5,0x3c,0x6c, - 0x62,0xfa,0xfd,0x2a,0x8b,0x6c,0xfc,0xf4,0xbe,0x10,0xd4,0x93,0x4f,0x93,0x41,0xbd,0x2b,0xa4,0xc4,0xdb, - 0x05,0x66,0xd7,0x4c,0x0a,0xe7,0x27,0x80,0x82,0x80,0xa2,0xee,0xae,0xe7,0x00,0x6a,0x19,0x05,0xd4,0x17, - 0x25,0xe9,0x66,0x13,0x9a,0xad,0x20,0xf9,0x48,0x1b,0x22,0x3a,0x3e,0x35,0x2e,0x10,0x23,0xcf,0x58,0x8f, - 0x0c,0x7e,0x4d,0x2f,0x57,0x89,0xb2,0x02,0xbf,0x1c,0xf8,0x1f,0x2f,0x25,0x35,0xf8,0x14,0x27,0x82,0xfd, - 0xd6,0x9e,0xcb,0x91,0xe7,0x94,0x98,0xff,0xf7,0xc0,0x3f,0x15,0x42,0x37,0xea,0xca,0x32,0xfa,0xd5,0x97, - 0xec,0x6c,0x58,0xfc,0xac,0xea,0xc4,0xe4,0xfc,0x57,0x2c,0x5b,0x4e,0xc3,0x20,0x9c,0x0f,0x9d,0xe8,0x66, - 0x79,0x70,0x94,0x9c,0x1b,0x21,0xa9,0xd7,0x80,0x5f,0xb0,0x11,0x47,0x9a,0x72,0x8e,0x06,0xce,0x31,0x22, - 0xc9,0x6d,0x65,0x20,0x49,0xd0,0x88,0xd2,0xb0,0x1a,0xb3,0x24,0x37,0x70,0x14,0x4c,0x9b,0x0c,0xc1,0xb6, - 0xe3,0xd6,0xd4,0xb1,0x06,0xa0,0x40,0x73,0x86,0xb5,0x4e,0x1c,0x13,0x44,0x8a,0x37,0xce,0x66,0xb0,0x9d, - 0xd9,0x1c,0xbd,0x5a,0x12,0xd4,0x3b,0xd5,0xf4,0xc0,0x50,0x7d,0x79,0x34,0xcb,0xc0,0x57,0xbd,0x4d,0xd0, - 0xe9,0x5c,0x36,0xeb,0xd8,0xa1,0x89,0x1d,0xde,0xc0,0xde,0x9b,0xd8,0xfb,0x55,0xec,0xed,0xd6,0x5d,0x1b, - 0xdd,0x19,0xbc,0xb6,0x5b,0x7f,0x0b,0xff,0x56,0x19,0xee,0x4d,0x61,0xf7,0xeb,0xc2,0x46,0xd1,0xda,0xf4, - 0xd1,0xbd,0xc1,0x2b,0x8a,0xfc,0x08,0xfe,0xad,0x32,0xbc,0x37,0x57,0x7f,0xbf,0xbe,0xfa,0x07,0x53,0xd8, - 0x87,0x75,0x61,0x1f,0x4d,0xec,0xc7,0x05,0x6c,0x30,0xae,0x70,0x18,0x1e,0x6b,0xc1,0xb2,0x86,0x87,0xd8, - 0x29,0x42,0x8d,0x22,0x34,0x28,0x96,0x6c,0x0d,0x46,0x1e,0x29,0xf6,0x06,0xc5,0xc2,0x8a,0x17,0x0c,0x0d, - 0x16,0xbe,0x32,0x1a,0xcc,0xab,0x71,0x5b,0xb5,0xf8,0x4e,0x13,0x7b,0x67,0x88,0xbd,0x5b,0x10,0x7b,0xaf, - 0x51,0xec,0x0d,0x8a,0x25,0x3f,0x89,0x34,0x8a,0xc8,0xa0,0x88,0x96,0x28,0xec,0x2e,0x05,0xbe,0x34,0x32, - 0x52,0x8e,0xa4,0x73,0x5b,0xf3,0xad,0x7b,0x4d,0xdb,0xf7,0x86,0xb6,0x97,0xfc,0xeb,0x41,0x13,0xfb,0xc1, - 0x10,0x7b,0xc9,0xc7,0x1e,0x35,0x8a,0x47,0x83,0x62,0xea,0x67,0xc3,0xb7,0x16,0x60,0x21,0x84,0x65,0xd3, - 0xf8,0x3a,0x43,0x37,0x62,0xed,0x48,0x31,0x84,0xda,0x19,0xbe,0x11,0x76,0x05,0xbe,0x8a,0xba,0x7f,0x3a, - 0xe3,0x94,0x20,0xe7,0x27,0x7e,0xb8,0x0f,0xf6,0x86,0x43,0xeb,0x73,0x27,0x0e,0xa6,0xc9,0x59,0x04,0x20, - 0x23,0x62,0x7a,0x5a,0x9e,0x9b,0xa0,0x22,0xf9,0x89,0xc7,0x4a,0xe7,0x67,0x71,0xec,0x7d,0x36,0x83,0xb0, - 0x79,0xdc,0x0f,0x39,0xf4,0x78,0x52,0x72,0x4e,0x7d,0x8f,0xb4,0x3a,0xcd,0x7a,0x61,0xd2,0xab,0x6c,0xd4, - 0x45,0x66,0x5d,0xa7,0xaa,0xf2,0xb4,0x70,0x69,0xe1,0xb6,0x45,0x57,0x90,0x06,0xd2,0x0f,0xf6,0x5a,0xa8, - 0xda,0x40,0x4d,0xcf,0xcb,0x9c,0x6b,0x3a,0xa1,0xa2,0x3e,0x10,0x39,0x40,0x07,0x7f,0xa9,0xf8,0xdb,0x72, - 0x1e,0x8e,0xe0,0xc4,0x21,0x54,0x40,0x5a,0x01,0x69,0x05,0xa4,0xe5,0x90,0x6e,0x4c,0x70,0xa4,0x85,0x45, - 0x46,0x20,0x0b,0x2e,0x1e,0x2b,0xe4,0x0f,0x91,0x1f,0x52,0x43,0x1c,0x58,0x10,0x24,0x82,0x85,0x43,0xca, - 0x86,0xa4,0xb8,0x37,0x65,0x4d,0x48,0x0d,0xe5,0xeb,0x30,0x36,0xb9,0x61,0x4b,0x53,0x37,0x65,0x6e,0x41, - 0x26,0xba,0xdc,0xe8,0x99,0x93,0xcc,0x85,0x66,0xa5,0xd2,0x84,0x62,0x7a,0xcf,0x07,0xcb,0x76,0x33,0x72, - 0x6a,0x6b,0xec,0xf2,0x6b,0x28,0xae,0xc3,0xca,0x85,0x4a,0xd1,0x65,0xbc,0x86,0xe6,0xfa,0x34,0x19,0x84, - 0x92,0x81,0x18,0x1d,0x72,0xb5,0xe1,0x82,0xcc,0x48,0x50,0x58,0xea,0xb2,0xbc,0xbb,0x5e,0xaf,0xca,0x54, - 0x4f,0x2f,0xc1,0xf0,0x86,0x7f,0xc6,0xaa,0x55,0x96,0xd2,0xaa,0x6e,0xd5,0xee,0xd0,0xb8,0xa9,0x80,0x5b, - 0x9c,0x91,0x7a,0xb8,0x90,0x04,0xce,0xfa,0x63,0x37,0xb1,0x2a,0x20,0x8f,0x97,0x97,0x1c,0x57,0xbb,0xca, - 0x34,0x93,0xf8,0xa0,0x3f,0xba,0x90,0x5f,0x50,0x48,0x9e,0x26,0x49,0x6a,0x5f,0x75,0xba,0xe3,0xf4,0xf9, - 0xc6,0xcd,0x43,0x37,0xdf,0xba,0xf9,0xce,0xcd,0xf7,0x6e,0x1e,0x75,0x37,0x2e,0x6f,0x3d,0x79,0x5d,0x38, - 0xd1,0x9e,0x06,0x1a,0xf8,0x6a,0xee,0xb4,0x93,0xf9,0xb2,0x79,0xe3,0x1b,0xf6,0x79,0xa8,0xe1,0x6c,0xad, - 0x38,0xfb,0x3e,0xdf,0x6a,0x48,0xa1,0xba,0xc0,0x34,0x90,0xb6,0x7d,0xbe,0x33,0x70,0x42,0xcb,0x25,0xa7, - 0x07,0xc5,0x81,0x85,0x14,0xf8,0xef,0x3b,0x3d,0xb1,0xb7,0x5d,0x90,0x02,0xed,0x7e,0x4e,0x0b,0xa4,0x51, - 0x37,0xab,0x09,0x26,0xa4,0xc1,0x84,0x68,0xd7,0x93,0xf3,0xa9,0x33,0x93,0x32,0x48,0xc3,0x79,0x7f,0x27, - 0x23,0x2f,0xf2,0x9a,0xbf,0x93,0x8d,0x3d,0x50,0x6d,0x7e,0xe0,0x09,0x3a,0x44,0xb5,0xf8,0x93,0xf3,0xe9, - 0xda,0x15,0x11,0x3e,0xda,0xfb,0x59,0x41,0x11,0x13,0xae,0xd1,0x89,0x9f,0xd2,0xa1,0x14,0x58,0xb8,0x81, - 0x82,0x8b,0xdf,0xfd,0xb7,0x67,0x2f,0x81,0xc7,0x1f,0x63,0x25,0x21,0x82,0x8f,0x78,0x19,0xc0,0x72,0x71, - 0x05,0x86,0xd7,0x2e,0x29,0xf5,0xf7,0x03,0xfe,0x85,0xeb,0x14,0x95,0xeb,0x6f,0x01,0x04,0xd5,0x58,0x56, - 0x2a,0x17,0x11,0x71,0x43,0x85,0xe6,0x26,0xa9,0x31,0x2e,0x1d,0x54,0xa6,0x7a,0x94,0xbe,0x8f,0x1e,0xaa, - 0x97,0xcf,0x9d,0x90,0x68,0x20,0xe6,0xce,0x24,0x28,0x65,0x99,0x34,0x6e,0xff,0x51,0xb8,0xfe,0xc3,0x58, - 0xc5,0xcc,0x17,0x12,0x06,0xfc,0xa3,0xfb,0xa6,0x51,0xcf,0x6c,0x26,0x9d,0x11,0x79,0xf2,0x57,0x2f,0xce, - 0x87,0x2c,0xc9,0xa2,0xe4,0x7a,0x6b,0x2f,0xf7,0xf6,0x86,0x0f,0x80,0x6a,0xde,0xb4,0x0e,0x4d,0x2c,0x0d, - 0x6e,0x1c,0x36,0x7a,0xbe,0x2e,0x37,0x2e,0x87,0xf4,0xbd,0x9f,0x63,0x04,0xb3,0x76,0xb3,0x32,0x6b,0x18, - 0x71,0xb8,0x17,0x8d,0x56,0x37,0x79,0x6c,0x96,0x34,0x3d,0xa6,0x05,0xd1,0x3d,0x97,0x70,0x60,0xe6,0x5f, - 0x48,0x06,0x01,0x1b,0x31,0x28,0xf6,0x35,0xdf,0xd3,0x74,0x26,0x4d,0xf0,0x96,0x55,0xdb,0x78,0x5e,0x97, - 0x81,0x8e,0xa0,0xc7,0x96,0xe1,0xc3,0xf0,0xae,0x86,0x8c,0x15,0xbd,0x85,0xc8,0xf1,0x49,0x99,0x92,0x04, - 0x31,0x5a,0xdb,0xab,0x5b,0xb5,0x7f,0xb8,0xfd,0x86,0xdd,0x25,0x6d,0xa9,0x77,0xbe,0xf6,0xd7,0x73,0x4c, - 0xe9,0x46,0xd5,0xbd,0xab,0xf3,0x7d,0xe3,0xad,0x0d,0x4f,0x82,0x9f,0xc0,0x88,0x25,0x9c,0x3b,0xfc,0x9a, - 0x7c,0xee,0x5c,0xdb,0xc7,0xe8,0x3d,0xbc,0x60,0x1d,0x3a,0xbb,0xa9,0x67,0x9d,0x6a,0xfc,0xfa,0x5f,0x88, - 0x06,0x6e,0x6c,0x93,0x2d,0x7b,0xdc,0xbe,0x87,0x19,0xae,0x6b,0x5a,0xdb,0xf8,0x24,0xc1,0x24,0x98,0x6f, - 0xa2,0x6a,0x70,0x38,0x1e,0xe7,0x43,0xb5,0x15,0x1b,0x52,0x40,0xf2,0x32,0x0d,0x02,0x23,0xde,0x56,0xe1, - 0xf1,0x55,0xce,0xfb,0x9a,0x1f,0xc2,0x07,0xfe,0xd1,0xc9,0x77,0xd5,0xf5,0xe6,0x42,0x85,0x90,0xa9,0xaa, - 0x60,0xbe,0x06,0xdc,0x4a,0x67,0xac,0x35,0xb7,0x81,0x7c,0xfe,0xc6,0xca,0x24,0x0e,0xf4,0x3e,0x04,0xd3, - 0x55,0xa7,0x17,0x08,0x8e,0x4a,0x5b,0x2c,0xea,0x51,0x0d,0xd7,0x31,0x1c,0xfd,0x81,0x9c,0x2b,0x5a,0x33, - 0x34,0xbd,0x77,0x91,0x22,0xeb,0xdc,0xde,0x73,0x09,0xff,0xb6,0xfd,0x6c,0xc8,0xaa,0x1d,0x30,0xaa,0xc7, - 0x34,0x7b,0xe3,0xa3,0xa4,0x5c,0x3d,0x05,0xbd,0xe0,0xf4,0xb0,0x6e,0x9d,0x88,0x7f,0x26,0x4d,0x27,0x63, - 0x63,0x49,0x6d,0xe6,0xa4,0x64,0x8b,0x5d,0x33,0x6e,0x11,0x6d,0x16,0x6b,0x02,0xe7,0x43,0x4c,0x13,0x3d, - 0x9f,0x89,0x1d,0xe6,0xa6,0xec,0xfd,0xa6,0x3d,0xd2,0x8a,0xc7,0x95,0xc6,0x2c,0xe9,0x05,0x1f,0xa9,0x84, - 0xa6,0xb3,0xd1,0x81,0x17,0x81,0xe7,0x74,0x33,0x5f,0x68,0x18,0xae,0x0c,0x56,0x5b,0x2d,0xad,0x19,0xbb, - 0xa3,0xf3,0xee,0x97,0x24,0x75,0x14,0xe7,0x69,0x53,0x4d,0x91,0xee,0x86,0x29,0x1c,0xff,0x19,0x15,0x2d, - 0xbe,0x11,0x16,0x65,0x9a,0xa5,0xfb,0x8e,0xe4,0xde,0x41,0x6e,0x76,0xfc,0x41,0x60,0x51,0x93,0xbb,0x02, - 0xad,0xcb,0xa3,0x02,0xa2,0x4c,0x39,0x27,0x77,0x01,0xa1,0x04,0x6a,0x97,0x37,0xca,0x85,0xb5,0x17,0x91, - 0xe4,0x4c,0x71,0x3c,0x4c,0x25,0x9f,0x3d,0x96,0xb7,0xe7,0xe3,0xe2,0xfc,0x76,0x79,0x42,0x2d,0x40,0x87, - 0xf6,0x00,0x6d,0x5c,0x24,0xc9,0x53,0xd7,0x7c,0xe9,0x4d,0x13,0xe8,0x4c,0x7f,0x03,0xd2,0xf2,0x84,0x95, - 0x30,0xff,0xcb,0x49,0x2e,0xa8,0x2e,0xb9,0xeb,0xe9,0xa8,0xdb,0x20,0xcc,0x20,0x2c,0x59,0xb3,0x80,0xf1, - 0x82,0x64,0x6f,0x4d,0x88,0x7b,0xbf,0xa4,0x3c,0xc4,0xea,0xf1,0xc9,0xe2,0x8e,0x8c,0x9c,0xf1,0x3f,0xc1, - 0xf2,0x27,0xf0,0x49,0xc7,0x67,0xf2,0xd7,0xfc,0x74,0x98,0xbc,0xfb,0xa8,0x27,0xde,0x83,0x1c,0x62,0xd2, - 0xff,0x00,0x72,0xab,0xf3,0xf7,0x2d,0x2a,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0xd9, + 0xda,0xda,0xb7,0x79,0xc0,0x62,0x6c,0x33,0x33,0x78,0x67,0x2b,0xc9,0x29,0x87,0x24,0x87,0x1c,0x72,0xd9, + 0xda,0x83,0x0c,0xc2,0xa8,0x16,0x23,0x02,0x62,0x3c,0xf3,0x28,0xfe,0x7b,0x5a,0x1f,0x18,0x09,0x04,0x9e, + 0xc9,0x4b,0x55,0xd6,0xb5,0x63,0xd3,0xea,0x6e,0xb5,0xba,0x5b,0xad,0xee,0x16,0x7f,0x74,0x63,0x94,0x31, + 0x5c,0xbb,0xf1,0x11,0x67,0xb4,0xc6,0xdd,0x91,0xbe,0x78,0x0d,0xf9,0x8d,0x94,0xa7,0x98,0x94,0x39,0xae, + 0x09,0xeb,0x73,0x76,0x2e,0x74,0xf8,0x91,0xd6,0x29,0xae,0x3d,0x80,0x1c,0x32,0x5a,0x32,0x0e,0xc6,0x71, + 0x14,0xfa,0xfb,0x8f,0xfd,0x91,0xa6,0xaf,0x5d,0x42,0x0b,0x5a,0xc7,0x1f,0xa2,0x20,0x4a,0xee,0x23,0x89, + 0x92,0xa1,0x33,0x29,0x5e,0xe3,0x7f,0xd2,0x23,0x65,0xd4,0xfd,0xf4,0x57,0x5c,0x3c,0x63,0x46,0x12,0xe4, + 0xfc,0x03,0xb7,0xf8,0x93,0x7b,0x7d,0x76,0xff,0x5c,0x13,0x54,0xb8,0x0d,0x2a,0x1b,0xaf,0x81,0xc9,0x33, + 0x6d,0x86,0x8d,0x1f,0xe1,0xb3,0x7c,0xbe,0x60,0x72,0xca,0x59,0xbc,0x0d,0x82,0x43,0x81,0x19,0x88,0xef, + 0x35,0x15,0x4a,0xb8,0x6c,0x7e,0xb0,0x01,0xa4,0x82,0x94,0xd8,0xcb,0x25,0x12,0x90,0xf5,0xc7,0x82,0x26, + 0x3f,0xff,0xdd,0x52,0xc6,0xd7,0x27,0x84,0x2f,0x70,0xc6,0x62,0x7f,0x5b,0xe3,0xb3,0xd3,0xd0,0x82,0xa4, + 0xce,0x87,0x5d,0xc0,0x3f,0x87,0x33,0xaa,0x4f,0xa4,0x94,0xe3,0xd7,0xa7,0x5a,0x70,0x0a,0x0e,0x15,0x4a, + 0x53,0x3e,0xcb,0x86,0xd3,0x6d,0xfc,0x3d,0x7c,0x69,0xbc,0x9d,0xb8,0x40,0x0d,0xf3,0x92,0x9c,0x14,0x69, + 0xa7,0x28,0x61,0xbd,0x8c,0x9e,0xe3,0xa0,0xf7,0x8f,0x2d,0xfc,0x2a,0x5d,0xf5,0x45,0xca,0xaa,0x65,0xdf, + 0xd9,0x6b,0x85,0x9f,0x24,0xe4,0x87,0x0e,0xaa,0x71,0x83,0x99,0x01,0x69,0xda,0xe3,0x99,0xb0,0x1f,0xdd, + 0x11,0x25,0x3f,0x4f,0x35,0x6d,0xcb,0xd4,0x53,0x6a,0x0e,0xa2,0xec,0x20,0x17,0x15,0xfb,0x1b,0x6d,0x3d, + 0x23,0xdc,0xab,0x51,0x4a,0xda,0x26,0xf6,0x77,0x30,0x7c,0x50,0x64,0x59,0x96,0x1d,0x92,0xb6,0x6e,0xe0, + 0x77,0x45,0x49,0x09,0x3a,0x3c,0xa4,0xa4,0xa9,0x0a,0xf4,0x0a,0x76,0x17,0xfa,0x13,0x0b,0x33,0xf4,0xcf, + 0xd9,0x1b,0x06,0xb8,0x07,0x03,0x28,0x35,0x6f,0xfd,0x07,0x3e,0x3a,0x35,0x87,0x20,0xd1,0xcd,0xa1,0xf0, + 0x06,0x4d,0x06,0x0e,0xb7,0xc1,0x81,0xe1,0x17,0xe6,0xa1,0x82,0x9c,0xca,0x38,0xc1,0x42,0x18,0x01,0x49, + 0x71,0x42,0x6b,0xc4,0x08,0x2d,0xe3,0x92,0x96,0x58,0x02,0x59,0x0d,0xde,0x01,0xbe,0x7a,0x8e,0xdb,0xaa, + 0xc2,0x75,0x82,0x1a,0x7c,0xb8,0xe4,0x84,0x61,0x31,0x2b,0x06,0xcc,0x4b,0x8d,0xaa,0x41,0xe1,0x71,0x46, + 0x93,0xb6,0x71,0x87,0xa7,0x9c,0x3e,0x83,0xb3,0x1b,0x43,0xc6,0xc8,0xdc,0x2e,0x0a,0xcb,0x32,0x30,0xa3, + 0x90,0x66,0x9b,0x13,0x28,0xf8,0x0c,0x5f,0x19,0x75,0x4e,0x30,0x0c,0x08,0x0a,0x8b,0xcd,0xd5,0xd6,0x52, + 0xe6,0x35,0x81,0x9a,0x7d,0x69,0xcb,0xb8,0xea,0x47,0xef,0xfb,0x0e,0x26,0x46,0xc7,0x02,0xa7,0x3f,0xdc, + 0x19,0x60,0xbe,0x40,0xfb,0xa0,0x5c,0x8c,0x7d,0x4c,0xc9,0x3d,0x0e,0x76,0xca,0xc5,0x52,0x9c,0xa1,0xb6, + 0x60,0x07,0xca,0xfd,0x82,0xbd,0xc6,0xfe,0x7e,0x2e,0x92,0x69,0x29,0x0d,0xae,0xdb,0x6c,0x86,0xbe,0x80, + 0xbd,0xb6,0x9a,0x45,0x8b,0xae,0x71,0x99,0x2e,0x7b,0xc9,0xca,0x6b,0x3c,0x66,0xea,0x59,0xb4,0xfc,0x94, + 0xcb,0xea,0xbe,0xd7,0x20,0x83,0x56,0xd5,0x97,0xa7,0x3c,0xc0,0xb5,0x43,0xe7,0x1a,0x58,0xc1,0x90,0xcb, + 0x5b,0x41,0x50,0xa2,0x4f,0x30,0xe6,0x92,0x8b,0xfd,0x5b,0xa1,0x1a,0xf6,0xf9,0xe1,0xa6,0xe4,0xa6,0x53, + 0x4c,0x07,0x75,0xcf,0xb0,0x13,0xae,0xd1,0xdd,0x5c,0xfe,0xa2,0xa3,0xdc,0xe4,0x67,0x55,0xd6,0x92,0xcb, + 0xdc,0xe4,0x66,0xd7,0xec,0xa2,0xf3,0x58,0xf9,0xad,0xdb,0x61,0x2d,0x92,0xc8,0xa7,0x05,0xfb,0x2c,0x6d, + 0xdf,0x65,0xb4,0x15,0x9b,0x2d,0x6c,0xee,0x5b,0xbc,0x6e,0xda,0xe7,0x0d,0x5b,0xff,0x1d,0x73,0x58,0x8d, + 0x76,0x3b,0x30,0xbc,0x63,0x06,0xbb,0x1d,0xdf,0x10,0x36,0x6e,0xcc,0xd1,0x19,0x66,0x56,0xe9,0xdd,0xca, + 0x1e,0x4c,0x0a,0x8c,0xa6,0xa6,0x92,0xb0,0x65,0x05,0xce,0xc6,0xcd,0xd5,0xcf,0x86,0x27,0x92,0x8b,0xf1, + 0x77,0xf8,0xea,0xdb,0x82,0x89,0xe0,0x6a,0x77,0x50,0x39,0x64,0x73,0x4a,0x9d,0x68,0x99,0xe6,0x86,0x26, + 0x6e,0x3a,0xdc,0x02,0x2f,0x8b,0xd6,0x6e,0x39,0xd6,0x02,0x27,0x9b,0x82,0x6f,0x3a,0x90,0xc6,0xeb,0xf7, + 0x19,0xc3,0x1e,0x3c,0x04,0xfb,0x5b,0xa1,0x63,0x8a,0xb4,0x68,0xa3,0x1b,0x61,0xc3,0xce,0xe7,0x86,0x45, + 0xde,0x11,0x32,0x6e,0xf2,0xb7,0x98,0xe9,0xed,0xe1,0xe2,0x26,0x77,0x9b,0xe5,0xde,0x11,0x2a,0xac,0xfc, + 0x3b,0x6d,0x2b,0x25,0x34,0xd5,0x0f,0x71,0xc8,0x2c,0x77,0xd9,0x3e,0x8b,0xac,0xb5,0xc5,0x58,0x2c,0x3c, + 0x44,0x1f,0x55,0xf1,0x04,0x29,0xbe,0x1f,0xea,0x29,0xbf,0x78,0x72,0x44,0xf1,0x64,0xcb,0xdb,0xab,0x7a, + 0x6d,0xba,0x79,0xdd,0xc6,0xf3,0x20,0x2e,0x73,0x56,0xd0,0x8b,0xf7,0x1a,0xe7,0x24,0x4d,0x71,0xc9,0xb9, + 0x7c,0x93,0x92,0x1b,0x62,0x06,0xd7,0x22,0x47,0x56,0x37,0x96,0x82,0xce,0x90,0x09,0xd8,0xf4,0xf9,0x10, + 0x37,0x81,0x5a,0x71,0x63,0xb4,0x32,0x8b,0x2d,0x25,0xa4,0x5a,0xb1,0x10,0x2f,0xe8,0x35,0xa5,0xe3,0x33, + 0x22,0x85,0x91,0x2a,0x97,0xed,0xf9,0x88,0x6b,0x03,0x54,0xa1,0xa6,0xb9,0xc0,0x04,0x66,0x4a,0x0d,0xe6, + 0x49,0x72,0x03,0xc4,0x70,0x31,0x79,0x7e,0x31,0x8b,0xc5,0xb6,0x06,0x84,0x06,0x17,0x38,0x61,0x2e,0x1f, + 0x84,0x1d,0x89,0x3a,0x04,0xc5,0x12,0x82,0x0d,0x2a,0x34,0x0d,0xb5,0xd4,0x1b,0xb6,0xb5,0xb9,0x46,0x55, + 0x20,0xdb,0xec,0x2e,0x9a,0x03,0x39,0x4a,0xe9,0x45,0xf1,0x9e,0x35,0x11,0x0e,0xf6,0xf2,0xcf,0x8f,0x84, + 0xe2,0x85,0xda,0x49,0xca,0xf2,0x78,0x13,0x04,0x1f,0xe7,0x8a,0x9b,0x7b,0xb1,0x52,0xdf,0x7c,0xe0,0xaa, + 0x44,0x8b,0xe7,0x4b,0x55,0xce,0x07,0xb8,0x42,0x6d,0xd0,0x17,0x5b,0x6d,0xc6,0x95,0xab,0xa0,0x52,0xc5, + 0xea,0x61,0x50,0xb4,0x7c,0xec,0x66,0xa9,0xb9,0x56,0x8d,0x49,0x3a,0xdd,0xcb,0x81,0xe9,0x2f,0x9f,0x52, + 0xc4,0x50,0x4c,0xce,0xe8,0x84,0xbf,0x34,0xcf,0xa7,0x5f,0x5f,0xce,0xc5,0xa1,0x65,0xd9,0x83,0xfb,0x15, + 0x9e,0x1c,0x78,0x2a,0x9b,0xa7,0xbb,0x9c,0xb1,0x2a,0xfe,0xf2,0xe5,0x72,0xb9,0xf8,0x97,0xad,0x4f,0xeb, + 0xd3,0x97,0x30,0x08,0x02,0x8e,0x7f,0xe7,0x48,0x15,0x3f,0xdd,0x6d,0x76,0x77,0xce,0x33,0xc1,0x97,0xbf, + 0xd0,0x97,0xa7,0xbb,0xc0,0x09,0x9c,0xf0,0xd1,0xe1,0x30,0xa1,0xe1,0xa7,0xbb,0xf0,0xf1,0xee,0xdb,0xd7, + 0x0a,0xb1,0xdc,0xc9,0x48,0x51,0x3c,0xdd,0x7d,0x48,0x37,0xfc,0x73,0xe7,0xa4,0x4f,0x77,0x7f,0x7f,0xf4, + 0xb7,0xf7,0xf7,0xe1,0xbd,0xb3,0xf5,0xa3,0x70,0x5f,0xec,0xfd,0xe0,0x61,0xb3,0xdf,0x39,0x91,0xff,0xb8, + 0xdd,0x87,0xdb,0xbf,0x6d,0x1e,0xfd,0xfd,0x2e,0xd8,0x46,0x72,0xf8,0xee,0xcb,0xb7,0xaf,0x7c,0xe6,0x6f, + 0x9f,0x3e,0x3b,0xb2,0x6a,0x77,0x44,0xa3,0xc4,0x29,0xa9,0x57,0x63,0xf0,0x36,0x36,0xd8,0x59,0x35,0x50, + 0xf8,0xbe,0xe8,0x75,0xa5,0xe9,0x67,0x8b,0x58,0xf8,0xff,0x57,0x11,0x8f,0xc7,0x5d,0x9a,0xa0,0xdf,0xa5, + 0x88,0xfe,0xba,0xdf,0xce,0xa4,0x1c,0x7a,0x1e,0x91,0xec,0x14,0x15,0xe8,0x88,0x0b,0xb7,0xc0,0x27,0x5c, + 0xa6,0x9d,0x19,0x87,0x8c,0x2e,0x97,0xad,0xcb,0x62,0xb6,0x93,0x24,0xbf,0x8c,0xe0,0x22,0x85,0xb3,0x62, + 0xf0,0x35,0xb9,0x83,0xc6,0x2e,0x95,0x11,0x81,0x92,0x1c,0x27,0x3f,0x61,0x5f,0x9a,0xb5,0x3c,0x6c,0x62, + 0xfa,0xe3,0x2a,0x8b,0x6c,0xfc,0xf4,0xbe,0x10,0xd4,0x93,0x4f,0x93,0x41,0xbd,0x2b,0xa4,0xc4,0xdb,0x05, + 0x66,0xd7,0x4c,0x0a,0xe7,0x27,0x80,0x82,0x80,0xa2,0xee,0xae,0xe7,0x00,0x6a,0x19,0x05,0xd4,0x17,0x25, + 0xe9,0x66,0x13,0x9a,0xad,0x20,0xf9,0x48,0x1b,0x22,0x3a,0x3e,0x35,0x2e,0x10,0x23,0xcf,0x58,0x8f,0x0c, + 0x7e,0x4d,0x2f,0x57,0x89,0xb2,0x02,0xbf,0x1c,0xf8,0x1f,0x2f,0x25,0x35,0xf8,0x14,0x27,0x82,0xfd,0xd6, + 0x9e,0xcb,0x91,0xe7,0x94,0x98,0xff,0xf7,0xc0,0x3f,0x15,0x42,0x37,0xea,0xca,0x32,0xfa,0xcd,0x97,0xec, + 0x6c,0x58,0xfc,0xac,0xea,0xc4,0xe4,0xfc,0x57,0x2c,0x5b,0x4e,0xc3,0x20,0x9c,0x0f,0x9d,0xe8,0x66,0x79, + 0x70,0x94,0x9c,0x1b,0x21,0xa9,0xd7,0x80,0x5f,0xb0,0x11,0x47,0x9a,0x72,0x8e,0x06,0xce,0x31,0x22,0xc9, + 0x6d,0x65,0x20,0x49,0xd0,0x88,0xd2,0xb0,0x1a,0xb3,0x24,0x37,0x70,0x14,0x4c,0x9b,0x0c,0xc1,0xb6,0xe3, + 0xd6,0xd4,0xb1,0x06,0xa0,0x40,0x73,0x86,0xb5,0x4e,0x1c,0x13,0x44,0x8a,0x37,0xce,0x66,0xb0,0x9d,0xd9, + 0x1c,0xbd,0x5a,0x12,0xd4,0x3b,0xd5,0xf4,0xc0,0x50,0x7d,0x79,0x34,0xcb,0xc0,0x57,0xbd,0x4d,0xd0,0xe9, + 0x5c,0x36,0xeb,0xd8,0xa1,0x89,0x1d,0xde,0xc0,0xde,0x9b,0xd8,0xfb,0x55,0xec,0xed,0xd6,0x5d,0x1b,0xdd, + 0x19,0xbc,0xb6,0x5b,0x7f,0x0b,0xff,0x56,0x19,0xee,0x4d,0x61,0xf7,0xeb,0xc2,0x46,0xd1,0xda,0xf4,0xd1, + 0xbd,0xc1,0x2b,0x8a,0xfc,0x08,0xfe,0xad,0x32,0xbc,0x37,0x57,0x7f,0xbf,0xbe,0xfa,0x07,0x53,0xd8,0x87, + 0x75,0x61,0x1f,0x4d,0xec,0xc7,0x05,0x6c,0x30,0xae,0x70,0x18,0x1e,0x6b,0xc1,0xb2,0x86,0x87,0xd8,0x29, + 0x42,0x8d,0x22,0x34,0x28,0x96,0x6c,0x0d,0x46,0x1e,0x29,0xf6,0x06,0xc5,0xc2,0x8a,0x17,0x0c,0x0d,0x16, + 0xbe,0x32,0x1a,0xcc,0xab,0x71,0x5b,0xb5,0xf8,0x4e,0x13,0x7b,0x67,0x88,0xbd,0x5b,0x10,0x7b,0xaf,0x51, + 0xec,0x0d,0x8a,0x25,0x3f,0x89,0x34,0x8a,0xc8,0xa0,0x88,0x96,0x28,0xec,0x2e,0x05,0xbe,0x34,0x32,0x52, + 0x8e,0xa4,0x73,0x5b,0xf3,0xad,0x7b,0x4d,0xdb,0xf7,0x86,0xb6,0x97,0xfc,0xeb,0x41,0x13,0xfb,0xc1,0x10, + 0x7b,0xc9,0xc7,0x1e,0x35,0x8a,0x47,0x83,0x62,0xea,0x67,0xc3,0xb7,0x16,0x60,0x21,0x84,0x65,0xd3,0xf8, + 0x3a,0x43,0x37,0x62,0xed,0x48,0x31,0x84,0xda,0x19,0xbe,0x11,0x76,0x05,0xbe,0x8a,0xba,0x7f,0x3a,0xe3, + 0x94,0x20,0xe7,0x17,0x7e,0xb8,0x0f,0xf6,0x86,0x43,0xeb,0x73,0x27,0x0e,0xa6,0xc9,0x59,0x04,0x20,0x23, + 0x62,0x7a,0x5a,0x9e,0x9b,0xa0,0x22,0xf9,0x85,0xc7,0x4a,0xe7,0x57,0x71,0xec,0x7d,0x36,0x83,0xb0,0x79, + 0xdc,0x0f,0x39,0xf4,0x78,0x52,0x72,0x4e,0x7d,0x8f,0xb4,0x3a,0xcd,0x7a,0x61,0xd2,0xab,0x6c,0xd4,0x45, + 0x66,0x5d,0xa7,0xaa,0xf2,0xb4,0x70,0x69,0xe1,0xb6,0x45,0x57,0x90,0x06,0xd2,0x0f,0xf6,0x5a,0xa8,0xda, + 0x40,0x4d,0xcf,0xcb,0x9c,0x6b,0x3a,0xa1,0xa2,0x3e,0x10,0x39,0x40,0x07,0x7f,0xa9,0xf8,0xdb,0x72,0x1e, + 0x8e,0xe0,0xc4,0x21,0x54,0x40,0x5a,0x01,0x69,0x05,0xa4,0xe5,0x90,0x6e,0x4c,0x70,0xa4,0x85,0x45,0x46, + 0x20,0x0b,0x2e,0x1e,0x2b,0xe4,0x0f,0x91,0x1f,0x52,0x43,0x1c,0x58,0x10,0x24,0x82,0x85,0x43,0xca,0x86, + 0xa4,0xb8,0x37,0x65,0x4d,0x48,0x0d,0xe5,0xeb,0x30,0x36,0xb9,0x61,0x4b,0x53,0x37,0x65,0x6e,0x41,0x26, + 0xba,0xdc,0xe8,0x99,0x93,0xcc,0x85,0x66,0xa5,0xd2,0x84,0x62,0x7a,0xcf,0x07,0xcb,0x76,0x33,0x72,0x6a, + 0x6b,0xec,0xf2,0x6b,0x28,0xae,0xc3,0xca,0x85,0x4a,0xd1,0x65,0xbc,0x86,0xe6,0xfa,0x34,0x19,0x84,0x92, + 0x81,0x18,0x1d,0x72,0xb5,0xe1,0x82,0xcc,0x48,0x50,0x58,0xea,0xb2,0xbc,0xbb,0x5e,0xaf,0xca,0x54,0x4f, + 0x2f,0xc1,0xf0,0x86,0x7f,0xc6,0xaa,0x55,0x96,0xd2,0xaa,0x6e,0xd5,0xee,0xd0,0xb8,0xa9,0x80,0x5b,0x9c, + 0x91,0x7a,0xb8,0x90,0x04,0xce,0xfa,0x63,0x37,0xb1,0x2a,0x20,0x8f,0x97,0x97,0x1c,0x57,0xbb,0xca,0x34, + 0x93,0xf8,0xa0,0x3f,0xba,0x90,0x5f,0x50,0x48,0x9e,0x26,0x49,0x6a,0x5f,0x75,0xba,0xe3,0xf4,0xf9,0xc6, + 0xcd,0x43,0x37,0xdf,0xba,0xf9,0xce,0xcd,0xf7,0x6e,0x1e,0x75,0x37,0x2e,0x6f,0x3d,0x79,0x5d,0x38,0xd1, + 0x9e,0x06,0x1a,0xf8,0x6a,0xee,0xb4,0x93,0xf9,0xb2,0x79,0xe3,0x1b,0xf6,0x79,0xa8,0xe1,0x6c,0xad,0x38, + 0xfb,0x3e,0xdf,0x6a,0x48,0xa1,0xba,0xc0,0x34,0x90,0xb6,0x7d,0xbe,0x33,0x70,0x42,0xcb,0x25,0xa7,0x07, + 0xc5,0x81,0x85,0x14,0xf8,0xef,0x3b,0x3d,0xb1,0xb7,0x5d,0x90,0x02,0xed,0x7e,0x4e,0x0b,0xa4,0x51,0x37, + 0xab,0x09,0x26,0xa4,0xc1,0x84,0x68,0xd7,0x93,0xf3,0xa9,0x33,0x93,0x32,0x48,0xc3,0x79,0x7f,0x27,0x23, + 0x2f,0xf2,0x9a,0xbf,0x93,0x8d,0x3d,0x50,0x6d,0x7e,0xe0,0x09,0x3a,0x44,0xb5,0xf8,0x93,0xf3,0xe9,0xda, + 0x15,0x11,0x3e,0xda,0xfb,0x59,0x41,0x11,0x13,0xae,0xd1,0x89,0x9f,0xd2,0xa1,0x14,0x58,0xb8,0x81,0x82, + 0x8b,0xdf,0xfd,0xf7,0x67,0x2f,0x81,0xc7,0x9f,0x63,0x25,0x21,0x82,0x8f,0x78,0x19,0xc0,0x72,0x71,0x05, + 0x86,0xd7,0x2e,0x29,0xf5,0xf7,0x03,0xfe,0x85,0xeb,0x14,0x95,0xeb,0x6f,0x01,0x04,0xd5,0x58,0x56,0x2a, + 0x17,0x11,0x71,0x43,0x85,0xe6,0x26,0xa9,0x31,0x2e,0x1d,0x54,0xa6,0x7a,0x94,0xbe,0x8f,0x1e,0xaa,0x97, + 0xcf,0x9d,0x90,0x68,0x20,0xe6,0xce,0x24,0x28,0x65,0x99,0x34,0x6e,0xff,0x51,0xb8,0xfe,0xc3,0x58,0xc5, + 0xcc,0x17,0x12,0x06,0xfc,0xa3,0xfb,0xa6,0x51,0xcf,0x6c,0x26,0x9d,0x11,0x79,0xf2,0x57,0x2f,0xce,0x87, + 0x2c,0xc9,0xa2,0xe4,0x7a,0x6b,0x2f,0xf7,0xf6,0x86,0x0f,0x80,0x6a,0xde,0xb4,0x0e,0x4d,0x2c,0x0d,0x6e, + 0x1c,0x36,0x7a,0xbe,0x2e,0x37,0x2e,0x87,0xf4,0xbd,0x9f,0x63,0x04,0xb3,0x76,0xb3,0x32,0x6b,0x18,0x71, + 0xb8,0x17,0x8d,0x56,0x37,0x79,0x6c,0x96,0x34,0x3d,0xa6,0x05,0xd1,0x3d,0x97,0x70,0x60,0xe6,0x5f,0x48, + 0x06,0x01,0x1b,0x31,0x28,0xf6,0x35,0xdf,0xd3,0x74,0x26,0x4d,0xf0,0x96,0x55,0xdb,0x78,0x5e,0x97,0x81, + 0x8e,0xa0,0xc7,0x96,0xe1,0xc3,0xf0,0xae,0x86,0x8c,0x15,0xbd,0x85,0xc8,0xf1,0x49,0x99,0x92,0x04,0x31, + 0x5a,0xdb,0xab,0x5b,0xb5,0x7f,0xb8,0xfd,0x86,0xdd,0x25,0x6d,0xa9,0x77,0xbe,0xf6,0xd7,0x73,0x4c,0xe9, + 0x46,0xd5,0xbd,0xab,0xf3,0x7d,0xe7,0xad,0x0d,0x4f,0x82,0x9f,0xc0,0x88,0x25,0x9c,0x3b,0xfc,0x9a,0x7c, + 0xee,0x5c,0xdb,0xc7,0xe8,0x3d,0xbc,0x60,0x1d,0x3a,0xbb,0xa9,0x67,0x9d,0x6a,0xfc,0xfa,0x5f,0x88,0x06, + 0x6e,0x6c,0x93,0x2d,0x7b,0xdc,0xbe,0x87,0x19,0xae,0x6b,0x5a,0xdb,0xf8,0x24,0xc1,0x24,0x98,0x6f,0xa2, + 0x6a,0x70,0x38,0x1e,0xe7,0x43,0xb5,0x15,0x1b,0x52,0x40,0xf2,0x32,0x0d,0x02,0x23,0xde,0x56,0xe1,0xf1, + 0x55,0xce,0xfb,0x9a,0x1f,0xc2,0x07,0xfe,0xd1,0xc9,0x77,0xd5,0xf5,0xe6,0x42,0x85,0x90,0xa9,0xaa,0x60, + 0xbe,0x06,0xdc,0x4a,0x67,0xac,0x35,0xb7,0x81,0x7c,0xfe,0xc6,0xca,0x24,0x0e,0xf4,0x3e,0x04,0xd3,0x55, + 0xa7,0x17,0x08,0x8e,0x4a,0x5b,0x2c,0xea,0x51,0x0d,0xd7,0x31,0x1c,0xfd,0x81,0x9c,0x2b,0x5a,0x33,0x34, + 0xbd,0x77,0x91,0x22,0xeb,0xdc,0xde,0x73,0x09,0xff,0xb6,0xfd,0x6c,0xc8,0xaa,0x1d,0x30,0xaa,0xc7,0x34, + 0x7b,0xe3,0xa3,0xa4,0x5c,0x3d,0x05,0xbd,0xe0,0xf4,0xb0,0x6e,0x9d,0x88,0x7f,0x26,0x4d,0x27,0x63,0x63, + 0x49,0x6d,0xe6,0xa4,0x64,0x8b,0x5d,0x33,0x6e,0x11,0x6d,0x16,0x6b,0x02,0xe7,0x43,0x4c,0x13,0x3d,0x9f, + 0x89,0x1d,0xe6,0xa6,0xec,0xfd,0xa6,0x3d,0xd2,0x8a,0xc7,0x95,0xc6,0x2c,0xe9,0x05,0x1f,0xa9,0x84,0xa6, + 0xb3,0xd1,0x81,0x17,0x81,0xe7,0x74,0x33,0x5f,0x68,0x18,0xae,0x0c,0x56,0x5b,0x2d,0xad,0x19,0xbb,0xa3, + 0xf3,0xee,0x97,0x24,0x75,0x14,0xe7,0x69,0x53,0x4d,0x91,0xee,0x86,0x29,0x1c,0xff,0x19,0x15,0x2d,0xbe, + 0x11,0x16,0x65,0x9a,0xa5,0xfb,0x8e,0xe4,0xde,0x41,0x6e,0x76,0xfc,0x49,0x60,0x51,0x93,0xbb,0x02,0xad, + 0xcb,0xa3,0x02,0xa2,0x4c,0x39,0x27,0x77,0x01,0xa1,0x04,0x6a,0x97,0x37,0xca,0x85,0xb5,0x17,0x91,0xe4, + 0x4c,0x71,0x3c,0x4c,0x25,0x9f,0x3d,0x96,0xb7,0xe7,0xe3,0xe2,0xfc,0x76,0x79,0x42,0x2d,0x40,0x87,0xf6, + 0x00,0x6d,0x5c,0x24,0xc9,0x53,0xd7,0x7c,0xe9,0x4d,0x13,0xe8,0x4c,0x7f,0x03,0xd2,0xf2,0x84,0x95,0x30, + 0xff,0xcb,0x49,0x2e,0xa8,0x2e,0xb9,0xeb,0xe9,0xa8,0xdb,0x20,0xcc,0x20,0x2c,0x59,0xb3,0x80,0xf1,0x82, + 0x64,0x6f,0x4d,0x88,0x7b,0xbf,0xa4,0x3c,0xc4,0xea,0xf1,0xc9,0xe2,0x8e,0xf2,0x36,0x7d,0x0c,0x41,0xbd, + 0x5f,0xa1,0x12,0x17,0xf3,0xf3,0x61,0xf2,0xf6,0xa3,0x9e,0x7a,0x6b,0xbd,0x4f,0x41,0xec,0xc8,0x2f,0x4f, + 0xe5,0x11,0x96,0x93,0x4b,0xae,0x4b,0x77,0x2f,0x0b,0xa1,0x63,0xeb,0x4d,0x1b,0x3b,0x44,0x5f,0xba,0xf0, + 0xda,0xb9,0x2a,0x38,0xc8,0xce,0x5d,0x44,0x13,0xfd,0x64,0x79,0x63,0x86,0x68,0x65,0xe6,0xa3,0x44,0xc6, + 0x02,0x3d,0xe9,0xb5,0xcf,0x8b,0xdc,0x15,0x71,0xb4,0xc4,0xd2,0xc4,0xd2,0xf3,0x52,0x69,0xdf,0xf9,0x15, + 0xd1,0x90,0x6e,0x6a,0x4c,0xd6,0xaf,0x52,0x44,0x0e,0xee,0xaf,0x75,0xf1,0xe5,0xca,0x45,0x5e,0xe8,0x0f, + 0x36,0xe8,0x6c,0xaf,0x52,0x5e,0x30,0xfe,0x99,0xa2,0x57,0xb5,0x0c,0xd5,0xb6,0x02,0x29,0xff,0x03,0x66, + 0x1f,0x62,0x0d,0x3e,0x2c,0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index 3cc966c..9f1fe01 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,131 +4,148 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x5a,0x59,0x77,0xe2,0xb8,0x12,0xfe,0x2b,0x6e, - 0x66,0xee,0x21,0xb9,0xdd,0x21,0x40,0x96,0xee,0x64,0x42,0xee,0x98,0x2d,0x40,0x80,0xb0,0x67,0x79,0x93, - 0x6d,0x61,0x2b,0xf1,0x16,0x4b,0x40,0xe8,0x9e,0xf9,0xef,0x57,0xb6,0xbc,0xc8,0xc6,0x06,0x92,0x3e,0x73, - 0xa6,0xf3,0x10,0x47,0xaa,0xed,0xab,0x72,0xa9,0x54,0x52,0x7c,0xf5,0xa9,0x7e,0x57,0x9b,0x3c,0x0e,0x1a, - 0x82,0x46,0x0c,0xfd,0xfa,0xca,0xff,0x0d,0x81,0x72,0x7d,0x65,0x40,0x02,0x04,0x59,0x03,0x0e,0x86,0xa4, - 0x92,0x9b,0x4e,0x9a,0x47,0xdf,0x72,0xd7,0x57,0x04,0x11,0x1d,0x5e,0x5f,0x1d,0xfb,0x4f,0x8f,0xc9,0x04, - 0x06,0xac,0xe4,0x88,0x06,0x0d,0x78,0x24,0x5b,0xba,0xe5,0xe4,0x04,0xd9,0x32,0x09,0x34,0xa9,0xdc,0x6f, - 0x45,0xef,0x27,0x17,0x63,0x5d,0x22,0xb8,0xb2,0x2d,0x87,0x70,0x7c,0x2b,0xa4,0x10,0xad,0xa2,0xc0,0x25, - 0x92,0xe1,0x91,0x37,0xf8,0x82,0x4c,0x44,0x10,0xd0,0x8f,0xb0,0x0c,0x74,0x58,0x29,0x51,0x15,0x3a,0x32, - 0x5f,0x04,0x07,0xea,0x95,0x1c,0x26,0x6b,0x1d,0x62,0x0d,0x42,0xaa,0x43,0x73,0xe0,0xbc,0x92,0x93,0x16, - 0xa6,0xa2,0xc3,0x82,0x8c,0x31,0x65,0xc4,0xb2,0x83,0x6c,0x22,0x60,0x47,0x0e,0x09,0xcf,0xee,0xfc,0x31, - 0x23,0xd0,0x3f,0x98,0x8f,0x92,0xa5,0xac,0xaf,0xaf,0x14,0xb4,0x14,0x90,0x52,0xc9,0x01,0xdb,0xce,0xb1, - 0xd1,0xf2,0x48,0xd6,0x2d,0xf0,0x12,0x91,0x5c,0x9c,0x00,0x99,0xd0,0xf1,0x19,0x64,0x1d,0x60,0x5c,0xc9, - 0xb9,0x5a,0xbc,0x39,0x64,0xa8,0xcc,0x9a,0x02,0x08,0xb8,0x44,0x06,0x50,0xe1,0xb1,0x6d,0xaa,0x7f,0x48, - 0x00,0xc3,0xf3,0xd3,0x2f,0x68,0x56,0xbd,0x1b,0xad,0x8a,0xb7,0x37,0xaa,0x25,0xd2,0x9f,0xfe,0x78,0xaa, - 0x35,0xa6,0x2a,0xfd,0xab,0xee,0x0e,0xc5,0x55,0x4d,0x7c,0xa4,0x8f,0xea,0x83,0xb8,0x34,0x5a,0xee,0xc4, - 0xcd,0xc3,0xa8,0x79,0xdf,0x1a,0x4d,0xa4,0xf2,0x53,0x51,0x29,0x37,0xd7,0x4f,0xc3,0x6a,0xf5,0xe9,0xe6, - 0x02,0x3d,0x8d,0xab,0x1d,0xe9,0xbe,0x69,0x3e,0xcd,0x3a,0xfa,0xe3,0xfd,0xe8,0x4c,0x96,0x75,0x7d,0xe0, - 0x0a,0x3c,0x54,0x3b,0xa3,0x46,0x73,0x0a,0xfb,0x0e,0xbe,0x57,0x1a,0x7d,0xf5,0x59,0x1c,0x76,0xe5,0xc7, - 0xaa,0x2c,0x0e,0x64,0xb1,0xa6,0x0c,0xfb,0xa7,0x62,0xbf,0xdc,0xab,0x9d,0xaa,0x23,0xfc,0xd8,0xb9,0x68, - 0xf4,0x15,0x71,0xf0,0x28,0xd6,0x81,0x58,0x87,0xb6,0x32,0xd5,0x7a,0xa5,0xd7,0xe6,0xf3,0xc2,0x51,0xed, - 0x8b,0xb1,0xdc,0x6b,0xa9,0xca,0xd7,0xd2,0xc9,0xec,0x64,0x4e,0xa6,0xf6,0x19,0x6c,0xa9,0xbd,0x66,0xc9, - 0x71,0x6e,0x1a,0x60,0x71,0x3e,0x6b,0xd5,0xcb,0xad,0x9e,0xd4,0x3a,0x7b,0xed,0xdc,0x75,0x5b,0x0e,0xf8, - 0x3c,0x7f,0xf9,0x2e,0xe1,0xc7,0x11,0xd6,0x7a,0xdf,0xec,0xee,0x44,0x9d,0xb6,0xd5,0xb1,0xba,0x5c,0xf4, - 0x7a,0xd6,0xe3,0xea,0x33,0xea,0x3d,0x4e,0x9c,0xf3,0xa1,0xd6,0x7f,0xec,0x39,0x7d,0xd4,0x5f,0xaf,0xda, - 0x5d,0x7d,0x3d,0xbb,0x55,0xe4,0xf5,0x7a,0x80,0x0d,0x79,0x84,0xd7,0xd3,0xb3,0xe2,0x8b,0xda,0x22,0xc3, - 0xe1,0xa2,0x2c,0x2a,0xfd,0x4e,0xd3,0xae,0xbf,0x88,0xb7,0xa7,0xed,0xe3,0x6e,0xfb,0xbe,0x27,0x95,0x45, - 0xdc,0xae,0xca,0xaf,0x45,0x34,0xba,0x81,0xc3,0x9b,0xc1,0xe4,0x69,0x3e,0x3b,0x1f,0x36,0x8a,0x9f,0xd5, - 0xfa,0x4d,0xb3,0xec,0x58,0xf8,0xa6,0xa1,0xf6,0x86,0x6f,0x6d,0x51,0x33,0x9f,0x44,0x34,0xe8,0x7f,0x3b, - 0x5d,0xd8,0xa3,0x79,0xf1,0xf8,0x4e,0xb7,0x71,0xb7,0x56,0xb5,0x4f,0xd6,0xaf,0x45,0x59,0x53,0x49,0x6d, - 0x3a,0x7d,0x72,0x46,0xab,0xf3,0x61,0xfd,0xee,0xa4,0x71,0xdf,0x1a,0xbf,0x36,0x2f,0x08,0x70,0x9e,0xc0, - 0xf8,0xb6,0xf3,0x00,0x3b,0x75,0x45,0x1a,0xea,0xb8,0x51,0xbc,0xad,0x9f,0x77,0xfa,0xc7,0xb7,0xd6,0x08, - 0xdf,0x68,0x6f,0x0f,0xb7,0x35,0xbd,0x76,0xdb,0xea,0xb4,0xe7,0x2f,0x13,0x6d,0xd5,0xbb,0xd7,0xc4,0x73, - 0xa5,0x3a,0xb6,0xf4,0x11,0x7a,0x7e,0xe9,0xdc,0x29,0xa5,0xa7,0xe9,0xf2,0x62,0x3d,0xbc,0xb8,0xb3,0x5f, - 0xa5,0x96,0x8d,0xc0,0x74,0x06,0x1a,0xd2,0x53,0xe3,0x2b,0x69,0xb7,0x9f,0xad,0xea,0xed,0xc3,0x1a,0x5b, - 0xb8,0x24,0x9f,0xce,0xbe,0x41,0xa9,0xdb,0x50,0xa4,0x65,0x59,0x92,0x7b,0xb8,0xf1,0x55,0x7d,0x5e,0x54, - 0x95,0xe5,0xc3,0x68,0xdc,0x39,0x6d,0x7e,0x3e,0x5e,0xbd,0xb6,0x1f,0x1e,0x9c,0xf6,0xcd,0xca,0x78,0x38, - 0xf9,0xbe,0x02,0x72,0xb7,0xae,0xc1,0xfe,0xdd,0x45,0xe9,0xee,0xb9,0x3b,0xbc,0x55,0x4a,0xa7,0xb3,0x5e, - 0xbd,0x66,0x3e,0xaa,0xb5,0xb7,0xd9,0x73,0xfb,0xa4,0x3f,0x81,0x25,0x63,0x6c,0x0d,0xea,0xa7,0x17,0x6f, - 0xa7,0x63,0x87,0x26,0xc7,0xc5,0xeb,0xc0,0x3c,0x85,0xd6,0xb2,0xd6,0xf3,0xb2,0xa7,0xa1,0x37,0x27,0x2f, - 0xe3,0xc5,0xd0,0xa8,0xd5,0x68,0x26,0x6a,0xa5,0xeb,0x1f,0x3f,0x84,0xdf,0xc9,0x41,0xde,0x5b,0xa2,0xf9, - 0x43,0xe1,0xef,0xbf,0x69,0xba,0x97,0x28,0xa5,0xec,0x52,0x96,0xd0,0xc1,0xc8,0x32,0x0b,0x78,0x8d,0x09, - 0x34,0xda,0x75,0xe1,0x53,0xa5,0x22,0x98,0x0b,0x5d,0x17,0xfe,0xe7,0x49,0x05,0xf3,0x54,0xf0,0xb3,0x90, - 0xbf,0x14,0xf2,0xf4,0xb1,0x21,0x43,0xa7,0xf3,0x4c,0x6f,0x39,0xb6,0x1e,0x56,0x68,0x8e,0x30,0x01,0x64, - 0x81,0xe3,0xeb,0x84,0x2e,0x1f,0x13,0xca,0x84,0xea,0x88,0xcf,0x23,0x53,0x41,0x32,0x20,0x6e,0xc5,0xb8, - 0x74,0x57,0xce,0x11,0x13,0x66,0x8a,0xc6,0xde,0xdf,0x05,0x60,0x17,0xa0,0x09,0x24,0x1d,0x2a,0x14,0x61, - 0xde,0xd7,0x04,0x95,0xbc,0x0b,0x42,0x41,0x38,0x9a,0x70,0xd7,0x37,0xd5,0x1d,0xb8,0xcf,0xab,0x90,0x65, - 0x88,0xb1,0x6d,0x21,0x93,0x14,0xa2,0xa8,0x08,0x94,0x31,0xcb,0x4e,0x7c,0x1e,0xd9,0xd4,0xd8,0x16,0x9d, - 0x14,0x86,0x27,0xe8,0x07,0xdb,0x05,0xf1,0x53,0xde,0xab,0x90,0xdc,0xa3,0xa6,0x67,0x89,0x0a,0x31,0x83, - 0x07,0x87,0xd9,0xfe,0x61,0xc6,0x68,0x58,0x0a,0x4c,0xf8,0x97,0xa6,0x69,0x02,0xdf,0xc8,0x01,0x87,0x94, - 0xff,0xcd,0x8a,0x1f,0xa2,0xf5,0x94,0xd6,0x3f,0x05,0x99,0x6a,0x2e,0x00,0x1b,0x8c,0x03,0xf3,0xfe,0x38, - 0xb4,0xe4,0x8f,0xdb,0x81,0x4f,0xf1,0x48,0x30,0x9d,0x9f,0x42,0x25,0x7c,0x18,0x08,0x90,0xdc,0x74,0x91, - 0x16,0x84,0x58,0x66,0x30,0xc9,0x46,0x34,0x30,0xfe,0xf8,0x87,0x90,0x67,0x53,0x47,0xd6,0x82,0xd0,0x7d, - 0x00,0xd2,0xd4,0x04,0x34,0xa6,0x4b,0x38,0x01,0x12,0xcd,0x61,0x21,0xcf,0x82,0x47,0xd3,0x32,0x27,0xfc, - 0x29,0xeb,0x48,0x7e,0xa1,0x05,0x3d,0x64,0x88,0xe8,0xa1,0x03,0x6c,0x5c,0xa0,0xd6,0x27,0xdc,0x42,0x61, - 0x46,0xae,0x85,0x9f,0x86,0x43,0x1c,0xa4,0xaa,0x74,0xdd,0x64,0x03,0x0a,0x39,0x42,0x48,0xc1,0xcc,0x3f, - 0x06,0x2a,0xca,0xc4,0x6c,0x58,0x1c,0x4f,0x08,0x2c,0x9a,0xfb,0xc7,0xa0,0xb1,0xda,0xb2,0xe5,0xf5,0x31, - 0x7a,0xf4,0xfa,0xbc,0x71,0x06,0x9c,0x8d,0xcc,0xe3,0x54,0xf1,0xa9,0x70,0xa5,0x9d,0x24,0xd3,0x81,0x2f, - 0x9a,0x27,0x9e,0x0a,0xba,0xbb,0x9b,0xf6,0x82,0x08,0x64,0x6d,0xd3,0xde,0xc5,0xa1,0x19,0x6c,0xe5,0xfc, - 0x46,0x06,0xe8,0xfa,0x98,0x40,0x1b,0x53,0x47,0x97,0x40,0x5f,0xb8,0x5d,0x90,0xb3,0x80,0x39,0x6a,0xd4, - 0x5d,0x8b,0x3a,0xcf,0xe0,0x35,0x18,0xfe,0x68,0xe2,0x32,0xd1,0x76,0x06,0x48,0x50,0x0f,0xd7,0x97,0x3b, - 0x38,0x42,0xa6,0x1b,0x9c,0x9c,0x30,0xb7,0x9c,0x24,0x7b,0x1c,0x27,0x4f,0xf3,0xe1,0x7a,0x1a,0x38,0xd7, - 0xdf,0x85,0x7b,0x0e,0x74,0xbc,0x1b,0x78,0xd3,0xe3,0xda,0x1f,0xb9,0xcf,0x9f,0x0e,0xdd,0x23,0x66,0x60, - 0x0f,0x74,0x63,0x1d,0xd1,0x06,0x2b,0xb1,0x9b,0xd0,0x17,0x6f,0xe7,0x82,0x17,0x1b,0xe0,0xa4,0x4d,0x9f, - 0x0d,0xc2,0xfc,0xf3,0xbc,0xf2,0x0c,0xf7,0x00,0xd1,0x0a,0x73,0xdd,0xb2,0x9c,0x83,0x80,0x77,0xe6,0x12, - 0x85,0x63,0xa1,0x7c,0x76,0x26,0xfc,0x57,0x28,0x15,0x8b,0x2e,0x86,0xff,0xd0,0xe6,0x90,0x2a,0x48,0xb1, - 0xce,0xf7,0x7e,0xf1,0x88,0x9a,0x2a,0x75,0xd8,0x40,0x66,0x25,0x57,0xa4,0x4f,0xf0,0x56,0xc9,0x51,0x95, - 0xb9,0xb8,0x74,0x18,0xd3,0x82,0xb9,0x30,0x24,0xc8,0x05,0x67,0xc6,0x30,0x6e,0xd4,0xdf,0x14,0x2f,0x3f, - 0x45,0xaf,0x63,0x79,0xe4,0x45,0xf8,0xc0,0x25,0x7f,0x11,0xe8,0x16,0x02,0xdf,0x0e,0xe9,0x43,0xc0,0xfb, - 0x46,0xc1,0x65,0x2c,0x2c,0xff,0xdd,0x10,0x44,0x18,0x12,0xfe,0xa7,0xef,0x45,0xf1,0xd5,0xcb,0xd5,0xcd, - 0x2b,0x1a,0x0b,0x43,0xf8,0x13,0x2f,0x24,0x03,0x91,0x82,0xed,0xc0,0xa5,0x77,0x98,0xa0,0x8d,0xbc,0xbe, - 0x9e,0xf8,0x6c,0x2e,0x17,0x82,0xba,0x42,0x8f,0x31,0xfc,0x7a,0x8f,0x6a,0x2d,0x32,0xe0,0x64,0x73,0xd5, - 0x87,0x2d,0x0d,0x70,0x4c,0x6f,0x1f,0xf4,0xdf,0xc4,0xe6,0xb6,0x1b,0xb6,0x0d,0x7f,0xfd,0x25,0xa4,0x50, - 0x59,0xd6,0xbb,0x35,0xee,0x24,0xa5,0xd0,0x53,0xe3,0x6d,0x7a,0x04,0x72,0x4c,0x48,0x92,0xdd,0x03,0x33, - 0x18,0x63,0x2d,0x84,0x23,0x1d,0x9a,0x2a,0xd1,0xc2,0x40,0x7b,0x4e,0x44,0x0e,0x33,0x71,0x96,0x28,0xbe, - 0x08,0x9f,0x2b,0xe9,0x3a,0x23,0x65,0x6c,0x62,0xe3,0x5d,0x7b,0x05,0x24,0xac,0x10,0x3e,0x57,0x20,0x3e, - 0xa1,0x4c,0x94,0xca,0xaa,0x09,0xcd,0x85,0x4b,0x56,0x69,0xf2,0x1c,0xd9,0x6d,0x25,0x3d,0x10,0x94,0xea, - 0x56,0x15,0x9e,0x56,0x8c,0x88,0x5b,0xcb,0xcb,0xa5,0xe7,0x54,0x96,0x64,0x5a,0x78,0x9b,0xe8,0x0d,0x2a, - 0x13,0xfa,0x47,0xbc,0xd4,0x7c,0xd4,0xb5,0xd2,0xbb,0x5d,0x2b,0x7d,0xd8,0xb5,0xd2,0x0e,0xd7,0xc6,0x0b, - 0xd3,0x41,0xc9,0x1a,0xfa,0x51,0xc7,0xca,0xef,0x76,0xac,0xfc,0x61,0xc7,0xca,0xbb,0x1d,0xc3,0xe1,0x82, - 0xf0,0xfd,0x62,0x06,0x02,0x5d,0xee,0xfb,0xdc,0xae,0x63,0xfb,0x2b,0x67,0x95,0x28,0x74,0x2a,0xa6,0x6e, - 0xa3,0x5c,0x85,0x61,0xa3,0x6c,0x29,0x5b,0xd1,0x1e,0x45,0x37,0xd0,0x20,0xd1,0xa7,0x46,0x4c,0x7a,0x72, - 0xf8,0xf7,0x8a,0xef,0x26,0x96,0x9d,0x45,0x18,0xd2,0x9d,0x3a,0x50,0x6b,0x5a,0xee,0x59,0x25,0x3d,0xe6, - 0x7d,0xab,0x4e,0x69,0x7c,0x21,0x3b,0x8e,0x6a,0xef,0xd6,0x2a,0x6c,0x58,0x6e,0xb1,0x4c,0xd6,0x61,0x4e, - 0xfa,0xd8,0x2d,0xf5,0xbb,0xb6,0x86,0x58,0xef,0xba,0x6d,0x73,0xa8,0xf1,0x47,0xb2,0x34,0x60,0x7c,0xc7, - 0x9b,0x00,0xc5,0xbf,0x03,0x59,0x83,0xf2,0x8b,0x64,0xbd,0xf9,0x6d,0x52,0x74,0x26,0xe4,0x16,0x1d,0xa7, - 0x8a,0x67,0xd8,0xa3,0x8b,0xe2,0xb9,0x37,0x71,0x71,0xe4,0x78,0x9e,0xf3,0xd9,0xa8,0xed,0x16,0x6e,0x45, - 0x0a,0xbc,0x0c,0x14,0xb6,0x78,0xe8,0x6f,0x6a,0xe9,0xde,0x05,0xc4,0xdd,0x9e,0x85,0x9c,0x9b,0xc0,0xb8, - 0xb3,0xec,0xfb,0xbd,0xe2,0x84,0x93,0x5e,0xf9,0x98,0x98,0x79,0x8c,0x94,0x54,0x71,0x3a,0x9f,0x5d,0x32, - 0x08,0x3d,0x37,0xfb,0x51,0x70,0xe5,0xd3,0x43,0xe0,0x51,0x2e,0x83,0x0b,0x01,0xda,0x2f,0x6c,0x89,0x8f, - 0x87,0xc5,0xa6,0x0e,0xad,0x2c,0x27,0x15,0x4f,0x40,0xcb,0xc6,0x14,0x4a,0x7b,0xb8,0xa2,0x51,0x1a,0xb6, - 0x88,0xba,0x0b,0xdf,0xb6,0x0c,0x50,0x34,0xd9,0x4e,0xd7,0xcf,0x28,0x7b,0xfa,0x9e,0x9d,0x1b,0x9e,0x9a, - 0x94,0x60,0xb8,0xf3,0xef,0xcf,0x08,0x57,0x6a,0x23,0x15,0xf8,0x12,0xbb,0x90,0x2c,0xdb,0xe5,0xc4,0xf1, - 0xd7,0x82,0x52,0x31,0x20,0x1b,0x28,0x8a,0x43,0x17,0xce,0x3e,0x59,0x82,0x32,0xe2,0x84,0x76,0x46,0xc9, - 0xed,0x24,0x93,0x81,0x8d,0x27,0xf0,0x42,0xa2,0x0d,0xa3,0x01,0xf0,0x4b,0x6a,0x1a,0x87,0xd4,0xbd,0x92, - 0x39,0xd2,0x95,0x9e,0xd2,0x1c,0xfd,0x27,0x61,0xab,0x80,0xc0,0x15,0x58,0xa7,0x61,0xf6,0x49,0xfb,0x00, - 0x0e,0xb4,0xa4,0xa2,0x0d,0x89,0x1f,0x81,0xca,0x36,0x17,0x0e,0xb0,0x66,0x61,0xe2,0xf6,0x44,0x69,0x88, - 0x03,0xda,0x2e,0xc8,0x97,0xb6,0x0e,0x64,0xa8,0x59,0xba,0xe2,0x6e,0xbe,0x19,0x4a,0x06,0x11,0x4f,0xfe, - 0x90,0xb9,0x19,0xda,0x4e,0xf5,0x33,0xa2,0xee,0x5c,0x70,0x5c,0xb6,0xb3,0xeb,0x11,0x1c,0x36,0x12,0xb1, - 0xe9,0x23,0xdb,0x41,0x06,0x70,0x68,0xec,0x18,0x7c,0xb6,0x71,0xc6,0x0c,0x60,0xb0,0xf4,0xce,0x42,0xc1, - 0xad,0x01,0x1b,0xfb,0x37,0xc7,0xde,0xc6,0x5a,0xf5,0x54,0x8d,0xbd,0x79,0x1a,0x99,0xcb,0x24,0x25,0x7f, - 0x18,0x35,0x1b,0xef,0xdc,0xdc,0xc3,0x1b,0xa0,0x8c,0x8d,0x7d,0x61,0xbb,0xd7,0x8b,0x4d,0xe4,0x18,0xf4, - 0xcc,0x06,0xfd,0xe4,0xf6,0x64,0x32,0xf6,0x78,0xff,0x0a,0x69,0xee,0x4b,0x24,0x9b,0x0f,0xfe,0x55,0xce, - 0x91,0xee,0x6b,0x0c,0xb8,0x9b,0xee,0xcc,0xaf,0x1b,0xdc,0x28,0x88,0x2c,0x2c,0x03,0xc7,0x52,0xdd,0xc2, - 0xe5,0x5d,0xf7,0xcf,0xc3,0x6b,0x99,0x04,0xd1,0x6b,0x43,0x33,0x5e,0xce,0x96,0x6e,0x6a,0xcc,0xa2,0xbc, - 0x77,0xc4,0x4d,0x62,0xff,0x72,0x27,0x6e,0x6e,0xd5,0xeb,0x80,0x24,0xaf,0x19,0x29,0xe2,0x2e,0x20,0xfb, - 0x54,0x27,0x57,0x38,0x5a,0xb1,0xbe,0xb8,0xa7,0x31,0x66,0x82,0xbb,0x49,0xe7,0x4c,0xf8,0xf7,0xe9,0xbb, - 0x4c,0xb0,0xe0,0x24,0x4c,0x24,0xaf,0xd5,0xb3,0x76,0x36,0xdd,0x92,0xfd,0x1e,0x2e,0x6d,0x0f,0x4e,0x01, - 0xe5,0xf3,0xef,0x85,0x2c,0xd4,0x1d,0xc2,0x0b,0xa7,0x32,0xee,0x88,0x85,0xf8,0xbd,0x70,0x70,0xfb,0x1b, - 0x65,0x18,0x86,0xc0,0x91,0xb5,0x6e,0xa8,0x99,0x5f,0x31,0x1e,0x89,0xe6,0x4a,0x48,0xcd,0x86,0x3f,0xf6, - 0x78,0x53,0xaf,0x89,0x37,0xf2,0xd3,0x46,0x26,0x4e,0x26,0x28,0xdf,0xb2,0x21,0xb3,0xdb,0xa8,0x8b,0x83, - 0xa4,0xb5,0x60,0x7e,0xf7,0xa9,0xd3,0x6b,0xd6,0x02,0x2d,0x9b,0xb7,0x63,0x11,0x8a,0x02,0xf5,0xd3,0x35, - 0xb4,0x69,0x7e,0x3c,0x11,0xd3,0xed,0x53,0xc2,0x7b,0x00,0xb8,0x7a,0x76,0x21,0xf0,0x6c,0x25,0x20,0x88, - 0x03,0x56,0x73,0x52,0x40,0x04,0xa4,0xbd,0x61,0x84,0xba,0xb6,0x02,0x01,0x76,0x60,0x31,0x01,0x65,0x70, - 0xdf,0xab,0x3b,0x74,0xa3,0x70,0xc6,0xf5,0xb4,0x98,0xf0,0xe4,0xbd,0x21,0xc5,0x74,0x6e,0x85,0x65,0xaf, - 0x0c,0xcf,0x6e,0x26,0xa8,0x5a,0x77,0x2b,0xa8,0x5a,0xf7,0x03,0xa0,0xa8,0xce,0x9d,0xa0,0x5c,0xbb,0x31, - 0x50,0x2b,0x43,0x64,0xdd,0xeb,0x06,0x9e,0x90,0xb2,0x27,0x94,0x48,0x53,0x26,0x0a,0xce,0x58,0x02,0x44, - 0xd3,0x81,0xaf,0x0b,0x68,0xca,0xeb,0x14,0x18,0x21,0x6d,0x6f,0x20,0x91,0xb6,0x2d,0x50,0x38,0x93,0x9b, - 0xab,0xdd,0x00,0xf6,0xb6,0xd5,0xee,0x92,0xc5,0x41,0xfb,0x16,0x6e,0xe0,0x8d,0x28,0xfb,0xa1,0xe5,0x34, - 0x65,0x61,0xe5,0x8d,0x09,0xd9,0x07,0x9c,0x0d,0x6e,0x6d,0xcb,0x11,0xe7,0x97,0xea,0x4b,0xb2,0x9a,0xbe, - 0xcd,0x7f,0x9a,0xeb,0xb4,0x60,0xcf,0xd1,0x5b,0xf6,0x3f,0x48,0xfc,0xaf,0x12,0xb8,0xde,0xdc,0x5e,0x7b, - 0x57,0x5a,0x2c,0x10,0x92,0xc3,0x7f,0xee,0xe0,0x3f,0x93,0x5f,0x3b,0x04,0xdd,0xdc,0x8c,0x91,0xbd,0x8f, - 0x1e,0x92,0x22,0xe1,0xc7,0x0e,0x1b,0x97,0x63,0xfe,0x67,0x46,0x3a,0x30,0xd5,0x05,0x50,0x69,0x68,0x9e, - 0xc1,0x12,0xb0,0xc9,0xdc,0x35,0xed,0xc5,0xb1,0xa5,0xc3,0x82,0x6e,0xa9,0x07,0xb9,0x36,0xfb,0x96,0x09, - 0x7d,0xa7,0x11,0x2a,0x14,0x0a,0xb9,0xc3,0x2f,0xb4,0x49,0x71,0x88,0x68,0xdb,0x07,0x87,0xdc,0x57,0x49, - 0xec,0x7b,0xa4,0x63,0xef,0x33,0xac,0xff,0x03,0x5c,0xda,0x59,0xb1,0x9c,0x25,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x5a,0x79,0x57,0xdb,0x48,0x12,0xff,0x2a,0x8a, + 0x67,0xf7,0x99,0x6c,0x82,0xb1,0x81,0x90,0xc0,0x02,0x3b,0x3e,0xb1,0xc1,0x36,0xbe,0x30,0xc7,0xbe,0x7d, + 0xfb,0x5a,0x52,0x5b,0x6a,0xd0,0x85,0xba,0x65,0xe3,0x64,0xe6,0xbb,0x6f,0x1f,0x3a,0xda,0xb2,0x64,0x4c, + 0x66,0x33,0x13,0xfe,0x40,0x56,0xd7,0xf5,0xab,0x52,0x55,0x77,0x75,0x4b,0xa7,0xef,0x1a,0xd7,0xf5,0xc9, + 0xfd,0xa0,0xa9,0x98,0xc4,0xb6,0xce,0x4f,0xc3,0xff,0x10,0xe8,0xe7,0xa7,0x36,0x24,0x40,0xd1,0x4c,0xe0, + 0x63,0x48,0xce,0x0a,0x37,0x93,0xd6,0xee,0x97,0xc2,0xf9,0x29,0x41,0xc4,0x82,0xe7,0xa7,0x7b,0xe1,0x95, + 0x33,0x39,0xc0,0x86,0x67,0x05,0x62,0x42,0x1b,0xee,0x6a,0xae,0xe5,0xfa,0x05,0x45,0x73,0x1d,0x02,0x1d, + 0x2a,0xf7,0x4b,0x99,0xff,0x15,0x56,0x58,0xe7,0x08,0x2e,0x3c,0xd7,0x27,0x12,0xdf,0x02,0xe9,0xc4,0x3c, + 0xd3,0xe1,0x1c,0x69,0x70,0x97,0xdf,0x7c,0x44,0x0e,0x22,0x08,0x58,0xbb,0x58,0x03,0x16,0x3c,0xab,0x50, + 0x15,0x16,0x72,0x9e,0x14,0x1f,0x5a,0x67,0x05,0x4c,0x96,0x16,0xc4,0x26,0x84,0x54,0x87,0xe9,0xc3,0xd9, + 0x59,0x41,0x0d,0x1c,0xdd,0x82,0x25,0x0d,0x63,0xca,0x88,0x35,0x1f,0x79,0x44,0xc1,0xbe,0x16,0x13,0x1e, + 0xd9,0xf8,0x9e,0x20,0xd0,0x1f,0xc2,0x47,0xd5,0xd5,0x97,0xe7,0xa7,0x3a,0x9a,0x2b,0x48,0x3f,0x2b,0x00, + 0xcf,0x2b,0x88,0xbb,0xf9,0xae,0x66,0xb9,0xe0,0x29,0x21,0x31,0x9c,0x00,0x39,0xd0,0x0f,0x19,0x34,0x0b, + 0x60,0x7c,0x56,0x60,0x5a,0xf8,0x18,0xb2,0x0d,0x61,0x4d,0x07,0x04,0x9c,0x20,0x1b,0x18,0x70,0xcf,0x73, + 0x8c,0x7f,0xaa,0x00,0xc3,0xa3,0xc3,0x8f,0x68,0x5a,0xbb,0x1e,0x2d,0xca,0x57,0x17,0x86,0x5b,0xa5,0x7f, + 0xfd,0xf1,0x8d,0xd9,0xbc,0x31,0xe8,0xaf,0x06,0xbb,0xad,0x2e,0xea,0xd5,0x7b,0x7a,0xa9,0xdd,0x55,0xe7, + 0x76,0x9b,0x0d,0x5c,0xdc,0x8d,0x5a,0xb7,0xed,0xd1,0x44,0xdd,0x7f,0x28,0xeb,0xfb,0xad,0xe5,0xc3,0xb0, + 0x56,0x7b,0xb8,0x38,0x46,0x0f,0xe3,0xda,0xa5,0x7a,0xdb,0x72,0x1e,0xa6,0x97,0xd6,0xfd,0xed,0xe8,0x93, + 0xa6,0x59,0xd6,0x80,0x09,0xdc,0xd5,0x2e,0x47,0xcd,0xd6,0x0d,0xec,0xfb,0xf8,0x56,0x6f,0xf6,0x8d,0xc7, + 0xea,0xb0,0xab,0xdd,0xd7,0xb4,0xea,0x40,0xab,0xd6,0xf5,0x61,0xff,0xb0,0xda,0xdf,0xef,0xd5,0x0f,0x8d, + 0x11,0xbe,0xbf,0x3c,0x6e,0xf6,0xf5,0xea,0xe0,0xbe,0xda,0x00,0xd5,0x06,0xf4,0xf4,0x1b,0xb3,0x57,0x79, + 0x6e,0x3d,0x06,0xbe,0xe1,0x1d,0x8f,0xb5,0x5e,0xdb,0xd0,0x3f,0x57,0x0e,0xa6,0x07,0x33,0x72,0xe3,0x7d, + 0x82,0x6d,0xa3,0xd7,0xaa,0xf8,0xfe,0x45,0x13,0x04,0x47,0xd3,0x76,0x63,0xbf,0xdd,0x53,0xdb,0x9f,0x9e, + 0x2f,0xaf,0xbb,0x6d,0x1f,0x7c,0x98,0x3d,0x7d,0x55,0xf1,0xfd,0x08,0x9b,0xbd,0x2f,0x5e,0x77,0x62,0xdc, + 0x74,0x8c,0xb1,0x31,0x0f,0x7a,0x3d,0xf7,0x7e,0xf1,0x01,0xf5,0xee,0x27,0xfe,0xd1,0xd0,0xec,0xdf,0xf7, + 0xfc,0x3e,0xea,0x2f,0x17,0x9d,0xae,0xb5,0x9c,0x5e,0xe9,0xda,0x72,0x39,0xc0,0xb6,0x36,0xc2,0xcb,0x9b, + 0x4f,0xe5,0x27,0xa3,0x4d,0x86,0xc3,0x60,0xbf,0xaa,0xf7,0x2f,0x5b,0x5e,0xe3,0xa9,0x7a,0x75,0xd8,0xd9, + 0xeb,0x76,0x6e,0x7b,0xea,0x7e,0x15,0x77,0x6a,0xda,0x73,0x19,0x8d,0x2e,0xe0,0xf0,0x62,0x30,0x79,0x98, + 0x4d,0x8f,0x86,0xcd,0xf2,0x07,0xa3,0x71,0xd1,0xda,0xf7,0x5d,0x7c,0xd1,0x34,0x7a,0xc3,0x97,0x4e,0xd5, + 0x74,0x1e,0xaa,0x68,0xd0,0xff,0x72,0x18,0x78,0xa3,0x59,0x79,0xef,0xda,0xf2,0x70,0xb7,0x5e,0xf3,0x0e, + 0x96,0xcf,0x65,0xcd,0x34,0x48,0xfd,0xe6,0xe6,0xc1,0x1f,0x2d,0x8e,0x86,0x8d,0xeb,0x83,0xe6,0x6d,0x7b, + 0xfc,0xdc,0x3a,0x26,0xc0,0x7f,0x00,0xe3,0xab,0xcb,0x3b,0x78,0xd9,0xd0,0xd5,0xa1,0x85,0x9b,0xe5,0xab, + 0xc6,0xd1,0x65,0x7f,0xef,0xca,0x1d,0xe1,0x0b,0xf3,0xe5,0xee,0xaa,0x6e,0xd5,0xaf,0xda,0x97,0x9d,0xd9, + 0xd3,0xc4,0x5c,0xf4,0x6e,0xcd,0xea,0x91,0x5e,0x1b,0xbb,0xd6,0x08,0x3d,0x3e,0x5d,0x5e,0xeb,0x95,0x87, + 0x9b,0xf9,0xf1,0x72,0x78,0x7c,0xed,0x3d,0xab,0x6d,0x0f,0x81,0x9b,0x29,0x68,0xaa,0x0f,0xcd,0xcf,0xa4, + 0xd3,0x79,0x74,0x6b,0x57,0x77,0x4b,0xec,0xe2,0x8a,0x76,0x38,0xfd,0x02,0xd5,0x6e,0x53,0x57,0xe7,0xfb, + 0xaa,0xd6,0xc3,0xcd,0xcf,0xc6,0x63,0x50,0xd3,0xe7,0x77,0xa3,0xf1,0xe5,0x61,0xeb,0xc3,0xde,0xe2,0xb9, + 0x73,0x77,0xe7,0x77,0x2e,0x16,0xf6,0xdd,0xc1,0xd7,0x05,0xd0,0xba,0x0d,0x13,0xf6,0xaf,0x8f,0x2b,0xd7, + 0x8f,0xdd,0xe1,0x95,0x5e,0x39,0x9c,0xf6,0x1a,0x75,0xe7,0xde,0xa8,0xbf,0x4c,0x1f,0x3b,0x07,0xfd,0x09, + 0xac,0xd8,0x63,0x77,0xd0,0x38,0x3c,0x7e,0x39,0x1c,0xfb,0x34,0x39,0x8e,0x9f,0x07,0xce,0x21,0x74,0xe7, + 0xf5,0x1e,0xcf,0x9e,0xa6,0xd5,0x9a,0x3c,0x8d,0x83,0xa1,0x5d,0xaf,0xd3,0x4c,0x34,0x2b,0xe7,0xdf,0xbe, + 0x29,0x7f,0x23,0x3b,0x45,0x5e,0xa2,0xc5,0xf7,0xca,0xef,0xbf,0xd3,0x74,0xaf,0x50,0xca,0x3e,0xa3,0xcc, + 0xa1,0x8f,0x91,0xeb,0x94,0xf0,0x12,0x13,0x68,0x77,0x1a,0xca,0xbb,0xb3,0x33,0xc5,0x09,0x2c,0x4b,0xf9, + 0x17,0x97,0x8a,0xc6,0xa9,0xe0,0x07,0xa5,0x78,0xa2,0x14,0xe9,0x65,0x4d,0x86,0x0e,0x17,0x85,0xde,0xfd, + 0x95,0x7a,0x58,0xa0,0x19,0xc2,0x04,0x90,0x00,0xaf,0xd6,0x09,0x2d,0x1f,0x07,0x6a,0x84,0xea,0x58,0x1d, + 0x47,0x8e,0x8e,0x34,0x40,0xd8,0x8c,0x71,0xc2,0x2a,0x67,0x57,0x08,0x0b,0x45,0x63,0xfe,0xbb,0x04,0xbc, + 0x12,0x74,0x80,0x6a,0x41,0x9d,0x22,0x2c,0x86,0x9a,0xa0,0x5e,0x64,0x20,0x74,0x84,0x93,0x01,0x56,0xdf, + 0x54,0x77,0xe4,0xbe,0xac,0x42,0xd3,0x20,0xc6,0x9e,0x8b,0x1c,0x52,0x4a,0xa2,0xa2,0x50,0xc6,0x3c,0x3b, + 0xab,0xe3,0xc8,0xa3,0xc6,0x36,0xe8,0xa4,0x30,0xb8,0x60,0x18,0x6c,0x06,0xe2,0x0f,0x79,0x6f,0x40,0x72, + 0x8b,0x5a,0xdc,0x12,0x15,0x12,0x06,0x77,0xde,0xe7,0xfb,0x87,0x05,0xa3,0xed,0xea,0x30,0xe5,0x5f,0x96, + 0xa6,0x09,0x7c,0x21,0x3b,0x12,0x52,0xf9,0xbf,0x98,0xfc,0x10,0x9d,0x4f,0xe9,0xfc,0xa7,0x23,0xc7,0x28, + 0x44,0x60,0xa3,0xfb,0xc8,0x7c,0x78,0x1f,0x5b,0x0a,0xef,0x3b,0x91,0x4f,0xab,0x91,0x10,0x3a,0xdf,0xc5, + 0x4a,0xe4,0x30,0x10,0xa0,0xb2,0x74,0x51,0x03,0x42,0x5c,0x27,0x1a,0x14,0x77,0x34,0x30,0xe1,0xfd,0x37, + 0xa5,0x28,0x86,0x76,0xdd,0x80,0xd0,0x75,0x00,0xd2,0xd4,0x04,0x34,0xa6,0x73,0x38,0x01,0x2a,0xcd,0x61, + 0xa5,0x28,0x82,0x47,0xd3,0xb2,0xa0,0xfc,0xaa,0x59,0x48,0x7b,0xa2,0x13,0x7a,0xcc,0x90,0xd0,0x63,0x07, + 0xc4,0x7d,0x89,0x5a,0x9f,0x48,0x85,0x22,0x8c,0x9c,0x2b,0x7f,0x18,0x0e,0xf1,0x91,0x61,0xd0,0xba,0xc9, + 0x07,0x14,0x73,0xc4,0x90,0xa2,0x91,0x1f,0x06,0x2a,0xc9,0xc4,0x7c,0x58,0x12,0x4f,0x0c,0x2c,0x19,0xfb, + 0x61,0xd0,0xc4,0xdc,0xb2,0xe1,0xf1,0x09,0x7a,0xf2,0xf8,0xf8,0x7d,0x0e,0x9c,0xb5,0xcc,0x93,0x54,0xc9, + 0xa9,0x70,0x6a,0x1e,0xa4,0xd3,0x41,0x9e,0x34,0x0f,0xb8,0x0a,0xba,0xba,0x3b,0x5e,0x40,0x14,0xb2,0xf4, + 0x68,0xef,0xe2,0xd3,0x0c,0x76,0x0b,0x61,0x23,0x03,0x2c,0x6b,0x4c,0xa0,0x87,0xa9,0xa3,0x73,0x60,0x05, + 0xac,0x0b,0xf2,0x03,0x58,0xa0,0x46,0x59,0x2d,0x5a,0x32,0x03,0x6f,0x30,0xc2,0xbb,0x09,0x63,0xa2,0xed, + 0x0c,0x50,0xa1,0x15,0xd7,0x17,0xbb,0xd9,0x45,0x0e,0x0b,0x4e,0x41,0x99,0xb9,0x7e,0x9a,0x7d,0x15,0xa7, + 0x4c,0x0b,0xe1,0x72,0x0d,0x92,0xeb,0x6f,0xc2,0x3d,0x03,0x16,0x7e,0x1d,0x78,0x8b,0x73,0x6d,0x8f,0x3c, + 0xe4,0xcf,0x86,0xce,0x89,0x39,0xd8,0x23,0xdd,0xd8,0x42,0xb4,0xc1,0x4a,0xad,0x26,0xf4,0xc1,0x7b,0x85, + 0xe8,0xc1,0x46,0x38,0x69,0xd3,0xe7,0x81,0x38,0xff,0xb8,0x57,0xdc,0x70,0x0f,0x10,0xb3,0x34,0xb3,0x5c, + 0xd7,0xdf,0x89,0x78,0xa7,0x8c,0xa8,0xec,0x29,0xfb,0x9f,0x3e,0x29,0xff,0x50,0x2a,0xe5,0x32,0xc3,0xf0, + 0x77,0xda,0x1c,0x52,0x05,0x19,0xd6,0xe5,0xde,0x6f,0x35,0xa2,0x8e,0x41,0x1d,0xb6,0x91,0x73,0x56,0x28, + 0xd3,0x2b,0x78,0x39,0x2b,0x50,0x95,0x85,0x55,0xe9,0x38,0xa6,0x25,0x27,0xb0,0x55,0x28,0x05,0x67,0x2a, + 0x30,0xae,0xcd,0xbf,0x19,0x5e,0xbe,0x4b,0x1e,0xc7,0x7c,0x97,0x47,0x78,0x87,0x91,0x3f,0x2a,0x74,0x09, + 0x81,0x2f,0xef,0xe9,0x45,0xc1,0xdb,0x46,0x81,0x31,0x96,0xe6,0x7f,0x6d,0x08,0x12,0x0c,0x29,0xff,0xb3, + 0xd7,0xa2,0xd5,0xea,0x95,0xe6,0xcd,0x53,0x1a,0x0b,0x5b,0xf9,0x15,0x07,0xaa,0x8d,0x48,0xc9,0xf3,0xe1, + 0x9c,0x6f,0x26,0x68,0x23,0x6f,0x2d,0x27,0x21,0x1b,0xe3,0x42,0xd0,0xd2,0xe9,0x36,0x46,0xae,0xf7,0x64, + 0xae,0x45,0x36,0x9c,0xac,0x57,0x7d,0xdc,0xd2,0x00,0xdf,0xe1,0xeb,0x60,0xf8,0x24,0xd6,0x97,0xdd,0xb8, + 0x6d,0xf8,0xed,0x37,0x25,0x83,0x2a,0xb2,0x9e,0xcd,0x71,0x07,0x19,0x13,0x3d,0x35,0xde,0xa1,0x5b,0x20, + 0xdf,0x81,0x24,0xdd,0x3d,0x08,0x83,0x2b,0xac,0xa5,0xf8,0xce,0x82,0x8e,0x41,0xcc,0x38,0xd0,0xdc,0x89, + 0xc4,0x61,0x21,0x2e,0x12,0x25,0x14,0x91,0x73,0x25,0x5b,0x67,0xac,0x8c,0xe6,0x00,0xb4,0x56,0x4b,0x8e, + 0x0f,0xed,0x26,0xdb,0x1d,0x29,0x07,0x34,0x13,0x6a,0x4f,0xaa,0xfb,0x42,0xe7,0x12,0x36,0x55,0x14,0x99, + 0x4e,0xd6,0x34,0x72,0x73,0xac,0x87,0xfc,0x6f,0x18,0x9f,0x62,0x92,0x07,0xaa,0xeb,0x5a,0x10,0x38,0xb1, + 0x77,0x51,0x08,0x37,0x4f,0x2d,0x27,0xdc,0xa1,0x4d,0x06,0x32,0xe3,0xdb,0x74,0xe4,0xe6,0x2c,0x9c,0x69, + 0xe4,0x32,0x01,0x7c,0x65,0xa3,0x71,0xfb,0xb7,0x72,0x0a,0xc2,0xed,0xe4,0x2f,0xd1,0x32,0x94,0x64,0x15, + 0x05,0x0e,0x09,0xec,0xd0,0x55,0x27,0x8c,0xf4,0x8e,0x88,0x68,0xb6,0xd5,0x06,0xe7,0x0e,0x8d,0x82,0x73, + 0xe5,0x3f,0x19,0xc5,0xa5,0xd1,0x20,0xf8,0xf9,0x33,0x80,0x08,0x3a,0xdb,0xa3,0xb2,0xba,0xa6,0xfa,0x34, + 0xb2,0x56,0x49,0x51,0x00,0xc3,0xeb,0x84,0x3e,0x92,0x42,0xd2,0x5f,0xf2,0xb8,0x9d,0x9f,0xba,0x1e,0x73, + 0x50,0x09,0xa7,0xfa,0x72,0x36,0xe0,0x16,0x7a,0x81,0xfa,0x84,0xc5,0x56,0x60,0x16,0x42,0x69,0xe1,0x4a, + 0xb6,0xf0,0x38,0x70,0x7c,0x84,0x37,0x8b,0xee,0xe7,0x8a,0xe2,0x38,0xf9,0x23,0xc9,0x3d,0xe1,0xee,0xab, + 0x6e,0xcf,0x22,0xd0,0x69,0xa7,0x57,0xab,0x47,0x0e,0x0f,0x9b,0x43,0xca,0x52,0x50,0x44,0x99,0x30,0x24, + 0xac,0x34,0x62,0x85,0xf2,0x9a,0xce,0xf4,0x9f,0x8b,0x6e,0xba,0x81,0xb0,0x67,0x81,0x25,0xe3,0xd8,0x61, + 0xe3,0x1f,0x15,0xbe,0x72,0x7e,0x1f,0x7a,0x1f,0x5a,0x80,0xcf,0x6c,0xd9,0x0e,0x40,0xaa,0x38,0x0f,0xa7, + 0x2c,0xba,0x35,0x54,0xd6,0x9c,0xe4,0x20,0xe5,0xb9,0x27,0x17,0x45,0x54,0xd6,0xca,0x02,0xc2,0x27,0x1d, + 0x2c,0x73,0xab,0x3e,0xb7,0xa6,0x6d,0xd7,0x61,0x72,0x62,0x5a,0x48,0x8a,0x55,0x0c,0x17,0xe3,0x52,0x17, + 0x55,0xbd,0x4e,0xcf,0x9c,0x03,0x32,0x33,0xa8,0x27,0x24,0x56,0x3b,0x09,0x51,0x6c,0xff,0x5f,0x8f,0x48, + 0x00,0x71,0x96,0x4b,0xe1,0x78,0xbe,0x4f,0x31,0xc3,0xf6,0x4e,0x4d,0x42,0x91,0x1f,0xef,0xd5,0x02,0xea, + 0x4e,0xb6,0x5f,0x31,0x25,0xdf,0x33,0x89,0x65,0x7b,0xdf,0x6e,0x63,0xa1,0x3f,0xe1,0x99,0x99,0x81,0x9f, + 0xfd,0xd0,0x42,0xc2,0x86,0xa7,0x16,0x73,0xbc,0xe1,0xb1,0x45,0x32,0x3f,0xde,0xb3,0x99,0x8f,0xb2,0xfc, + 0x12,0xc3,0xf9,0x5e,0x45,0xf4,0xed,0x7d,0x6a,0x09,0x89,0x1f,0xef,0x11,0xa6,0x9d,0x92,0x9f,0xe5,0x53, + 0x44,0xc8,0xf7,0x2a,0xe1,0xd8,0xde,0xaf,0x71,0x24,0xf3,0x27,0x78,0x16,0x64,0xce,0x85,0x62,0x78,0x83, + 0x57,0xc1,0x5b,0xe7,0xc2,0x71,0x90,0x3b,0x17,0x66,0xef,0x30,0xb6,0xd8,0x31,0x44,0x4e,0xa8,0xf4,0x6a, + 0x12,0x5a,0xb9,0xf8,0xaf,0xdb,0x39,0xac,0x63,0xd9,0xb0,0x83,0x90,0x7b,0x69,0xb6,0x98,0x46,0xca,0x1d, + 0x97,0x1d,0xb7,0x65,0x07,0xb0,0xef,0x36,0x28,0x2d,0xe7,0x24,0x4f,0x1c,0x2f,0xe4,0x9d,0x56,0xed,0x7a, + 0x3e,0xb2,0x81,0xbf,0x54,0x56,0x8f,0x3a,0xd8,0xe9,0x5e,0x78,0x40,0x48,0xfd,0x02,0x73,0xbe,0x9b,0x48, + 0x37,0x97,0x40,0xe7,0x5d,0x47,0xd8,0x59,0x66,0x43,0xab,0xea,0x7a,0xfa,0xd4,0x45,0x84,0x34,0x13,0x45, + 0x21,0x8c,0xb4,0xd8,0x1c,0x65,0x82,0x88,0xba,0x06,0x71,0x1f,0x1e,0x00,0xf3,0xcd,0x53,0x8d,0xab,0x1a, + 0xf3,0x71,0x6a,0xf3,0x24,0x4d,0x29,0xbe,0x4f,0xc2,0x9e,0xec,0xae,0x36,0xee,0xb3,0x6c,0x97,0xb5,0x1c, + 0xe9,0x9d,0x96,0x24,0xbd,0xc7,0x36,0x73,0xaf,0x6d,0xfe,0x56,0x4e,0xa7,0x36,0x6d,0xff,0xea,0xf2,0xa1, + 0x6b,0x16,0x30,0xf9,0x4c,0x2b,0x05,0x2a,0xbb,0xb8,0xf9,0x41,0x48,0x72,0xea,0x2b,0x1d,0x96,0x48,0xaa, + 0x64,0x86,0x2d,0xce,0x49,0x64,0xee,0x75,0x5c,0x12,0x39,0x7f,0xf7,0x62,0xbe,0x2e,0xdc,0x4e,0x14,0xf0, + 0x32,0x55,0x36,0x78,0x18,0x6e,0x5b,0xb3,0xbd,0x8b,0x88,0xaf,0x7b,0x16,0x73,0xae,0x03,0x93,0x4e,0xab, + 0xdf,0xee,0x95,0x24,0x9c,0xf6,0x2a,0xc4,0x24,0xcc,0x63,0xa4,0x67,0x8a,0xd3,0xf1,0x55,0xa3,0x72,0x24, + 0x08,0x7c,0x21,0x61,0x14,0x98,0x7c,0x76,0x08,0x38,0x45,0x2a,0xa6,0x77,0x1b,0xe2,0xc3,0xb1,0x78,0xd4, + 0xa1,0x85,0xeb,0x67,0xe2,0x89,0x68,0xf9,0x98,0x62,0x69,0x8e,0x2b,0xb9,0xcb,0xc2,0x96,0x50,0x5f,0xc3, + 0xb7,0x29,0x03,0x74,0x53,0xf3,0xb2,0xf5,0x0b,0xca,0x96,0xbe,0xe7,0xe7,0x06,0x57,0x93,0x11,0x0c,0x36, + 0xfe,0xf6,0x8c,0x60,0x52,0x6b,0xa9,0x20,0xaf,0x43,0x81,0x2a,0x76,0x3b,0x78,0xf5,0xb1,0xa0,0x4c,0x0c, + 0xc8,0xa3,0x33,0xb1,0x4f,0x0b,0x67,0x9b,0x2c,0x41,0x39,0x71,0x42,0xaf,0x46,0x89,0x9d,0x15,0xa5,0x03, + 0xbb,0x9a,0xc0,0x81,0xea,0x40,0x62,0x03,0xfc,0x94,0x99,0xc6,0x31,0x75,0xab,0x64,0x4e,0x74,0x65,0xa7, + 0xb4,0x44,0xff,0x83,0xb0,0x0d,0x40,0xe0,0x82,0x35,0x48,0xeb,0x98,0x43,0xd2,0x36,0x80,0x23,0x2d,0x99, + 0x68,0x63,0xe2,0xf7,0x40,0x15,0x8b,0x8b,0x04,0xd8,0x74,0x31,0x61,0x67,0xe2,0x59,0x88,0x23,0xda,0x6b, + 0x90,0x4f,0xe8,0x36,0x5b,0x83,0xa6,0x6b,0xe9,0xac,0x43,0xc9,0x51,0x32,0x48,0x78,0xe8,0xe2,0xc9,0xdd, + 0x8c,0x6d,0x67,0xfa,0x99,0x50,0x5f,0x2d,0xb8,0xcc,0x0e,0xe5,0xe7,0x6a,0x0d,0xb6,0x5a,0xdc,0xe3,0x77, + 0x3c,0x39,0x0b,0x7b,0xe0,0xb1,0x17,0x88,0x2d,0xe4,0xdb,0x0b,0xe0,0xc3,0x30,0xb9,0xb9,0x4c,0xce,0x1a, + 0x1f,0xbe,0x24,0x9a,0x85,0x12,0xe9,0xe6,0x43,0x7e,0x94,0x33,0x64,0x85,0x1a,0x23,0xee,0x16,0x1b,0xf9, + 0x79,0x83,0x9b,0x04,0x51,0x84,0x65,0xe0,0xbb,0x06,0x9b,0xb8,0xf8,0x0b,0xfd,0x59,0xfc,0xe2,0x25,0x45, + 0xe4,0xbd,0x7a,0xce,0xc3,0xd9,0xd0,0x4d,0x8d,0x45,0x94,0xb7,0x8e,0xb8,0x43,0xbc,0x9f,0xee,0x4c,0x5d, + 0xaa,0x7a,0x0b,0x24,0x4b,0x49,0x82,0xb8,0x0b,0xc8,0x36,0xb3,0x13,0x13,0x4e,0x2a,0x36,0x14,0xe7,0x1a, + 0x57,0x4c,0x48,0xef,0xca,0x25,0x13,0xe1,0x1b,0xf3,0xd7,0x4c,0x88,0xe0,0xa4,0x4c,0xa4,0x5f,0x9c,0xe7, + 0xad,0x6c,0x96,0xab,0x85,0x3d,0xdc,0xa6,0x6d,0xa3,0x04,0x2a,0xe4,0xdf,0x0a,0x59,0xac,0x3b,0x86,0x17, + 0x0f,0xe5,0xbc,0x05,0x5e,0xdb,0x0e,0xa5,0xf7,0x3e,0x18,0x02,0x5f,0x33,0xbb,0xb1,0x66,0xb9,0x62,0x38, + 0x89,0xe6,0x4a,0x4c,0xcd,0x87,0x3f,0xe6,0xbc,0x99,0x2f,0x82,0xd7,0xf2,0xd3,0x43,0x0e,0x4e,0x27,0xa8, + 0xdc,0xb2,0x21,0xa7,0xdb,0x6c,0x54,0x07,0x69,0x6b,0xd1,0x78,0x7e,0xa4,0xc4,0x3e,0x35,0x6c,0xd6,0x22, + 0x2d,0xeb,0xef,0xbf,0x12,0x14,0x25,0xea,0x27,0x33,0xb4,0x6e,0x7e,0x3c,0xa9,0x66,0xdb,0xa7,0x84,0xb7, + 0x00,0x60,0x7a,0x5e,0x43,0xc0,0x6d,0xa5,0x20,0x54,0x07,0x62,0xce,0xc9,0x00,0x11,0x91,0xb6,0x86,0x11, + 0xeb,0xda,0x08,0x04,0x78,0x91,0xc5,0x14,0x94,0xc1,0x6d,0xaf,0xe1,0xd3,0x85,0xc2,0x1f,0x37,0xb2,0x62, + 0x22,0x93,0xb7,0x86,0xb4,0xa2,0x73,0x23,0x2c,0x6f,0x61,0x73,0xbb,0xb9,0xa0,0xea,0xdd,0x8d,0xa0,0xea, + 0xdd,0xef,0x00,0x45,0x75,0xbe,0x0a,0x8a,0xd9,0x5d,0x01,0xb5,0xb0,0xab,0xa2,0x7b,0x5d,0xc3,0x13,0x53, + 0xb6,0x84,0x92,0x68,0xca,0x45,0x21,0x19,0x4b,0x81,0x68,0xf9,0xf0,0x39,0x80,0x8e,0xb6,0xcc,0x80,0x11, + 0xd3,0xb6,0x06,0x92,0x68,0xdb,0x00,0x45,0x32,0xb9,0x5e,0xed,0x36,0xf0,0x36,0x55,0x3b,0x23,0x57,0x07, + 0x9d,0x2b,0xb8,0x86,0x37,0xa1,0x6c,0x87,0x56,0xd2,0x94,0x87,0x55,0x36,0xa6,0xe4,0x6f,0x70,0xd6,0xb8, + 0xcd,0x0d,0x5b,0x9c,0x9f,0xaa,0x2f,0xc9,0x6b,0xfa,0xd6,0x3f,0x8b,0x63,0x6f,0x3f,0x67,0xe8,0x25,0xff, + 0x05,0x68,0xf8,0xdd,0xa1,0xd4,0x9b,0x7b,0x4b,0x7e,0xee,0x27,0x02,0xa1,0xfa,0xf2,0x07,0x8d,0xe1,0x35, + 0xfd,0x3d,0x63,0xd4,0xcd,0x4d,0x05,0x99,0x7f,0xd6,0x98,0x16,0x89,0x3f,0x67,0x5c,0x3b,0x3b,0x0c,0x3f, + 0x24,0xb6,0x80,0x63,0x04,0xc0,0xa0,0xa1,0x79,0x04,0x73,0x20,0x06,0x0b,0xe7,0xb4,0x17,0xc7,0xae,0x05, + 0x4b,0x96,0x6b,0xec,0x14,0x3a,0xe2,0x6b,0x65,0xf4,0x95,0x46,0xa8,0x54,0x2a,0x15,0xde,0x7f,0xa4,0x4d, + 0x8a,0x4f,0xaa,0x9e,0xb7,0xf3,0x5e,0xfa,0xee,0x58,0x7c,0x71,0xbc,0xc7,0x3f,0xb4,0xfe,0x1f,0x4c,0xd5, + 0xbd,0xf4,0x7e,0x2d,0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index 54ffb30..2efa269 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2198 +4,2244 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb2,0x36,0xfc,0x57, - 0x24,0xbc,0xbe,0x32,0x30,0x6a,0xd1,0x92,0x93,0xcc,0x9d,0x80,0x46,0xf8,0x7a,0x4d,0x3c,0xf1,0x36,0xb6, - 0xb3,0xcc,0x28,0xba,0x3a,0x10,0xd9,0x92,0x10,0x93,0x00,0x03,0x80,0x5a,0x22,0xf1,0xfd,0xed,0x5f,0x3d, - 0x55,0xbd,0x01,0x84,0x9c,0xcc,0x9c,0x7b,0xbe,0xe3,0x63,0x11,0xe8,0x6e,0xf4,0x5a,0x5d,0x5d,0x7b,0x6f, - 0x9f,0xae,0xca,0x69,0x5b,0x54,0x65,0xdc,0x2a,0x9d,0xdc,0x44,0xd5,0xc9,0xaf,0x7a,0xda,0x46,0x59,0xd6, - 0x5e,0x2f,0x75,0x75,0xba,0xa5,0xaf,0x96,0x55,0xdd,0x36,0x3b,0x3b,0x1b,0x39,0x8b,0x6a,0xb6,0x9a,0xeb, - 0x89,0xfc,0x8c,0x4c,0xb9,0x4c,0xc7,0x49,0x1a,0xd9,0x3a,0x7d,0xe1,0x99,0x3e,0x2d,0x4a,0xbd,0xb3,0x23, - 0xbf,0xa3,0x7c,0x31,0x9b,0xc8,0x63,0x7c,0x78,0x44,0xed,0xa6,0x77,0xb5,0x3b,0x31,0xbf,0xa3,0xfc,0xaa, - 0xa8,0xa4,0xf6,0xd6,0x3f,0xaf,0xe3,0xf6,0xbc,0x68,0x94,0x1b,0x42,0x72,0x53,0xeb,0x76,0x55,0x97,0x5b, - 0x7e,0x50,0xc9,0x8d,0x7d,0xde,0xd2,0x71,0x9d,0xdc,0x14,0xa7,0x71,0x79,0x58,0x1f,0x25,0xa6,0x20,0x9e, - 0x6d,0xdf,0xc7,0x17,0x79,0xbd,0x55,0x64,0x48,0xca,0x6e,0x4c,0x5a,0x7a,0xb3,0x56,0xc5,0x2c,0xad,0xd5, - 0xbc,0xca,0x67,0x7a,0x96,0x6e,0x1f,0xac,0xc7,0xe6,0xd3,0x16,0x9f,0x4e,0xf3,0xf9,0x3c,0x2e,0x6c,0x0d, - 0xaa,0x50,0xfe,0x59,0x27,0xf4,0x22,0x9f,0x65,0xdb,0xfb,0x3e,0x63,0x8d,0x66,0xca,0xec,0xc6,0x55,0xa4, - 0x47,0x8b,0x8c,0x26,0x7f,0x34,0xcd,0x4a,0xfa,0xbb,0xcc,0xa2,0x48,0xe9,0x78,0x9f,0x06,0x77,0x18,0xae, - 0x8d,0x2a,0x93,0x9b,0xd6,0x4d,0x73,0x19,0x1f,0x24,0x6b,0xd5,0xcf,0x8f,0x56,0x8d,0xde,0x6a,0xda,0xba, - 0xa0,0x99,0x1c,0xbb,0x71,0xd7,0x98,0x05,0x34,0xaa,0xb3,0x52,0x5f,0x6e,0xe5,0xf4,0xaa,0xca,0xac,0x8a, - 0xf3,0xd1,0xb2,0xae,0xda,0x0a,0x13,0x3e,0xaa,0xf5,0x6f,0x2b,0xdd,0x00,0x04,0x6c,0xaf,0xd0,0xdf,0x56, - 0x97,0xb3,0xb8,0x54,0x41,0x41,0x19,0x95,0xcb,0xa1,0xb7,0x72,0x6d,0xa6,0x2d,0x7e,0x98,0xa8,0x8a,0x7e, - 0xbe,0x48,0x54,0x4e,0x3f,0x5f,0x25,0x0a,0xdd,0xfc,0x6b,0xa2,0xa6,0x59,0x1d,0x37,0xc9,0x78,0x3a,0x7a, - 0xcc,0xeb,0x96,0xab,0xe9,0x68,0x5a,0xeb,0xbc,0xd5,0x59,0xb8,0x4c,0xa6,0xd9,0x9a,0x66,0x73,0xa1,0xeb, - 0x33,0x1d,0x37,0xaa,0x4d,0x68,0x8c,0xd3,0xd1,0xd3,0xbc,0x9c,0xea,0x39,0x1a,0xa0,0xaa,0xed,0xeb,0xc7, - 0xea,0x93,0x2e,0x91,0xf6,0x25,0xd2,0x8a,0xc6,0x17,0xda,0x47,0x02,0x2d,0xcb,0x50,0xed,0xef,0xea,0x6a, - 0x51,0x34,0x1a,0xd9,0x94,0x8a,0xca,0x9b,0x25,0x75,0x65,0x86,0xef,0xa8,0xc3,0x7e,0x7e,0xa7,0xfe,0x79, - 0x44,0x80,0x9a,0xaf,0xe6,0x6d,0x36,0xfd,0xb7,0x26,0x5c,0x5a,0x8c,0x0e,0x05,0xb0,0xb7,0x1e,0xd7,0x75, - 0x7e,0x7d,0x44,0xf0,0x9d,0xad,0x04,0x68,0xa8,0x79,0xf7,0x41,0x11,0x74,0xb1,0x5c,0xcd,0xe7,0xdb,0xb4, - 0x0d,0x06,0x76,0x5c,0xeb,0xbf,0xa8,0x06,0x9a,0x78,0x61,0x32,0xef,0x6a,0x25,0x97,0x2d,0x8e,0x1d,0xe0, - 0xda,0xb8,0xa8,0x8a,0xd9,0xd6,0x3e,0x9e,0x13,0x4a,0xb7,0x2d,0x6e,0xbb,0x16,0x77,0x76,0xe2,0x36,0x3b, - 0x6c,0x8f,0x12,0x85,0x41,0x25,0xa7,0x55,0x1d,0x0b,0xf8,0x12,0x40,0x67,0xed,0x68,0xae,0xcb,0xb3,0xf6, - 0x7c,0x5c,0x3e,0x2a,0xc6,0xe5,0xee,0x6e,0xa2,0xa5,0x51,0x54,0xaf,0xda,0xc3,0xf2,0x48,0x95,0xb4,0x86, - 0x63,0x3d,0xa7,0x49,0xb2,0x5f,0x56,0x5b,0x05,0x6d,0x9d,0xe4,0x2d,0x37,0x14,0x00,0xe0,0x79,0xde,0xbc, - 0xbd,0x2c,0x69,0x7d,0x96,0xba,0x6e,0xaf,0x4d,0xe7,0x55,0x95,0xec,0xec,0x74,0x2b,0xad,0x8e,0x54,0x45, - 0x95,0x32,0xd0,0x35,0x02,0x6d,0xb4,0x6f,0x62,0x82,0x82,0x55,0xb6,0x51,0x69,0x5b,0x7d,0xa0,0xb5,0x29, - 0xcf,0xc6,0x7e,0x61,0x6f,0x8a,0x86,0x97,0x82,0xb6,0xb4,0x79,0x7a,0xb2,0x3a,0x3d,0xd5,0x75,0xba,0x09, - 0x2d,0xdd,0xb5,0x93,0x62,0xbd,0xb9,0xa5,0x3a,0xcc,0xe7,0x53,0x7a,0x7c,0x51,0xd5,0x8b,0x67,0x79,0x9b, - 0x0f,0xd5,0xb5,0x2a,0x05,0xdf,0xcd,0xfc,0xe4,0xda,0xe2,0x3b,0x3b,0x2d,0x4d,0x4a,0xd3,0x02,0x82,0x83, - 0xe4,0x75,0xb7,0x83,0x3f,0x16,0xfa,0xf2,0x4f,0x56,0x1c,0x7c,0xb5,0xb3,0x13,0xbc,0xd0,0x36,0x41,0x2d, - 0x93,0xcd,0x24,0xaa,0x2f,0xa5,0xb5,0x6e,0x47,0x27,0xe6,0x2b,0xfb,0x14,0x76,0x2c,0xf8,0x0c,0x7d,0x93, - 0xa9,0x1d,0xea,0x52,0xc3,0x39,0x21,0xdc,0x52,0xf1,0x37,0xab,0xc5,0xc9,0xf0,0x34,0x97,0x9c,0xd3,0x2b, - 0x2e,0x6b,0x99,0x12,0x42,0x6d,0x7e,0xb0,0x23,0x1c,0xf8,0x78,0x4b,0x00,0x98,0x16,0x85,0xbf,0xa2,0x79, - 0xd3,0x9f,0x5b,0x49,0xe4,0x6f,0x2e,0xe1,0x8b,0x62,0xfe,0xd9,0xaf,0x90,0x3f,0xb0,0xf0,0xf3,0xea,0xe4, - 0x73,0x5f,0x21,0x7f,0xa0,0x2d,0xf3,0x41,0x5a,0xc9,0x14,0xea,0x7c,0x31,0x34,0x2c,0x60,0x84,0x9d,0x1d, - 0xda,0xe5,0xa3,0x65,0xb1,0xd4,0xfc,0xe5,0x0f,0xef,0x5f,0x7d,0xd0,0x79,0x3d,0x3d,0x7f,0x97,0xd7,0xf9, - 0xa2,0xf9,0x93,0xb0,0xd0,0xfb,0xaa,0x07,0x6b,0xbd,0x5c,0x59,0xd6,0xbc,0x9c,0xe5,0xf5,0xec,0x49,0x5d, - 0x5d,0x36,0xba,0x7e,0x5e,0x5e,0xa4,0x1b,0xe7,0x6b,0x1c,0xb4,0xe4,0x96,0xad,0xcc,0x2f,0x8a,0xb3,0xbc, - 0xad,0xea,0xdb,0xdb,0xe8,0xbd,0xce,0xa7,0xed,0x9b,0xbc,0x2d,0x2e,0x34,0x75,0x25,0x73,0x59,0xd8,0x9b, - 0xb3,0xd5,0x14,0x63,0x1b,0xea,0xec,0x65,0x51,0xce,0xaa,0xcb,0xe1,0xbc,0x59,0x35,0x5d,0x2d,0x74,0x49, - 0xcb,0x4c,0xa8,0xe4,0x79,0x3e,0x3d,0x4f,0x73,0xc5,0x07,0x85,0xeb,0xde,0x56,0x1b,0x77,0x4e,0x7b,0xad, - 0xea,0x01,0x82,0x06,0xc7,0xfb,0x00,0x6e,0xd5,0x13,0x3e,0xf7,0x5b,0xa6,0x0e,0x40,0x91,0xf0,0xab,0x5e, - 0x7b,0x8c,0x47,0x94,0x40,0xcd,0x68,0x2f,0xaf,0xcf,0xb8,0x27,0x8d,0x45,0x7f,0x35,0xa1,0xbf,0x9a,0xd0, - 0x5f,0x1e,0xbb,0x2c,0xa9,0xc4,0x9e,0xa5,0xe5,0x5a,0xc9,0x91,0x99,0xf6,0x0f,0x10,0x53,0x20,0xa7,0xce, - 0xba,0x2c,0xee,0x37,0xa8,0x8b,0xac,0xa4,0x8e,0x6e,0xd2,0x52,0x7a,0xd2,0xc4,0xf8,0x38,0xd5,0x6b,0x3a, - 0xb2,0xd6,0x8a,0x76,0xdb,0x20,0x0c,0xb5,0x74,0xaa,0x2f,0xe7,0xf9,0x54,0xc7,0x0f,0xfe,0xe7,0x97,0xe6, - 0x2f,0x0f,0x54,0x14,0x25,0x3e,0x89,0x52,0xee,0x71,0xd2,0x7a,0xdd,0x3d,0xd7,0x7a,0xa7,0x9a,0x47,0x9d, - 0xdd,0x42,0x7d,0x4a,0x8b,0xa6,0xde,0x4d,0x15,0xc8,0x0c,0xc6,0x16,0x71,0x7f,0xae,0x12,0xcc,0x21,0x4d, - 0x58,0xe9,0xe6,0x8e,0xe6,0x8d,0xa7,0x3a,0x9c,0x3a,0x47,0x62,0x8d,0xf2,0xe5,0x72,0x7e,0xcd,0xa3,0xdd, - 0xec,0xa6,0x5b,0xea,0x60,0xd0,0xdb,0xdb,0xed,0x68,0x5a,0x11,0x80,0xd7,0x04,0x65,0x55,0x3d,0x38,0x7f, - 0x9d,0x12,0x23,0x8b,0xc1,0x81,0xf3,0x86,0xd2,0xb1,0x6f,0x87,0xe6,0xa0,0x77,0x60,0xe3,0xa4,0x44,0xea, - 0xed,0x6d,0xac,0x89,0x9a,0x1b,0x5a,0xb6,0x11,0x28,0x8d,0x17,0x44,0x11,0xb6,0xaf,0x9e,0x0f,0x2f,0xec, - 0xa8,0x99,0x17,0x53,0xa2,0x92,0x09,0x06,0xe4,0x31,0xde,0x57,0xfb,0x49,0x42,0x95,0x62,0x5c,0xc7,0xb6, - 0x4b,0x09,0x53,0xaa,0x7a,0xfd,0x6f,0xd1,0x23,0xa0,0x94,0x2d,0x29,0xd3,0x50,0x0f,0xf9,0xbd,0x28,0x5b, - 0x5d,0x4f,0xf5,0x92,0x06,0x4c,0x47,0xa3,0x21,0x02,0x53,0xa6,0x12,0x55,0xad,0x9b,0x25,0xcd,0x87,0x96, - 0xd7,0xb5,0x23,0xf3,0xfe,0x2a,0x64,0xde,0x43,0x21,0xf3,0x0e,0xfe,0x5b,0xe8,0xbc,0x83,0xbf,0x11,0xb4, - 0x6f,0x12,0x94,0x9d,0x09,0xdb,0x3c,0x18,0x98,0xbc,0xa8,0x0c,0xc1,0x77,0xb3,0xaa,0xe7,0xa9,0x07,0x83, - 0xfd,0xa3,0xb5,0xf2,0x6f,0x07,0x47,0x49,0xa2,0x82,0xc2,0x85,0xea,0x0c,0x48,0xdd,0x2c,0x74,0x7b,0x5e, - 0xcd,0xd2,0xe8,0x4c,0xb7,0xd1,0x1a,0xa4,0xe3,0x48,0x52,0x88,0x4a,0x91,0x07,0xa2,0x06,0x5e,0x55,0x97, - 0xba,0x7e,0x9a,0x37,0xc4,0x3a,0xc8,0x14,0x66,0x87,0x8d,0x92,0x13,0x84,0x68,0x95,0xcc,0x52,0x87,0x34, - 0xf2,0x6a,0x7e,0xa1,0xa9,0xcb,0x63,0xc0,0xf4,0xc6,0x4c,0xd9,0xc1,0x8d,0x0c,0x26,0x8a,0xc3,0x41,0xea, - 0xd1,0xaa,0x6c,0xce,0x8b,0xd3,0x96,0x70,0xf7,0xe9,0x6a,0x7e,0x5a,0xcc,0xe7,0x7a,0xa6,0xb0,0x17,0x81, - 0x70,0xf4,0x2c,0xc1,0xa6,0x1d,0xa8,0x51,0x26,0xfb,0x8e,0x2a,0x97,0xab,0xe6,0xfc,0xee,0xfa,0xc6,0xda, - 0xee,0xa6,0x84,0xf6,0xde,0xa8,0x3d,0xd7,0x0c,0x40,0xdc,0x89,0x44,0xb9,0xa7,0x10,0x1d,0x55,0xae,0xa1, - 0xc3,0x68,0xa6,0xe7,0xba,0xd5,0x91,0xe2,0xa9,0x53,0xd1,0x39,0x41,0x29,0xfd,0x54,0x4b,0x34,0xdf,0x44, - 0x47,0xaa,0x03,0xf3,0x7e,0x89,0x89,0x2a,0xcc,0x02,0x9c,0xe5,0x91,0x19,0x8f,0xce,0x4c,0x51,0x6c,0xd7, - 0xab,0xbc,0xbd,0x25,0x04,0x6a,0x57,0xa9,0x55,0x58,0x6b,0xc2,0x5f,0xb4,0xad,0x93,0x4e,0x67,0x96,0x55, - 0x83,0x4e,0x2c,0x57,0xfc,0x37,0x6f,0xa7,0xe7,0x7f,0xbe,0x07,0xc0,0x9b,0x9f,0xeb,0x43,0x3d,0xd4,0x07, - 0x35,0x03,0xc5,0x56,0x9a,0xae,0xf8,0x9d,0x5e,0xff,0x1b,0xbb,0x0b,0xd8,0x68,0xbb,0x18,0x05,0xa4,0x0a, - 0x1f,0xdf,0xbd,0x94,0xc3,0xe8,0x69,0x45,0x6b,0x5e,0xb6,0x7b,0x1f,0xa9,0xf3,0xd1,0x51,0x02,0xe8,0xef, - 0x27,0x66,0x3a,0xe9,0x33,0x54,0xff,0x8d,0x9d,0x76,0xd3,0x2d,0x97,0x46,0xc0,0x8c,0xc5,0x34,0x47,0x17, - 0x1e,0x5c,0xed,0x5d,0x5e,0x5e,0xee,0xd1,0x24,0x2e,0xf6,0x68,0x4c,0xba,0x9c,0x56,0xc4,0x74,0xd2,0x2e, - 0xa0,0x3d,0x9d,0xcf,0xf2,0x65,0x1b,0xd2,0x5d,0xc2,0x0a,0xb6,0xe3,0xbb,0x49,0x86,0x9f,0x5f,0xbf,0xfa, - 0xae,0x6d,0x97,0xef,0x65,0xf6,0x26,0x2d,0x75,0xe1,0x6f,0xc4,0xa1,0x0f,0x94,0xa4,0x95,0x98,0xea,0xa6, - 0xe1,0x5d,0x8c,0x42,0x38,0x8e,0x08,0xe2,0xda,0x3a,0x2f,0x1b,0xf4,0xc6,0x54,0x91,0x1e,0x0e,0x1e,0x1d, - 0x15,0xad,0x59,0x77,0x54,0xe0,0x2d,0x3d,0x19,0xcd,0xd8,0x14,0x09,0x01,0xe1,0xe9,0xd2,0x7a,0xaf,0x42, - 0x49,0xb9,0x57,0x50,0x6c,0xbe,0x28,0x11,0x62,0xf4,0x32,0x21,0x6a,0x72,0xb4,0x41,0x52,0x73,0x86,0x21, - 0x76,0x39,0xbf,0x47,0x12,0x21,0x3f,0xae,0xd1,0xd3,0x3f,0x9c,0xf0,0xf1,0xf4,0x3c,0xaf,0x1b,0xdd,0x66, - 0xab,0xf6,0x74,0xef,0x6f,0x11,0x80,0xc9,0x32,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0x87,0xeb,0xfc,0xb5, - 0xa9,0xca,0x8d,0x2a,0xfe,0xfe,0xe1,0xed,0x9b,0x91,0xa0,0xcd,0xe2,0xf4,0x1a,0x2c,0x58,0xda,0xae,0x8f, - 0xc2,0x19,0x36,0x48,0xfa,0x30,0xdc,0x23,0x60,0xe5,0x36,0x70,0x6d,0xd2,0xd6,0xd7,0x37,0x6d,0xc6,0x35, - 0x2e,0xd1,0x0a,0x4e,0xb6,0x29,0x76,0x18,0x3e,0x59,0xdb,0x8d,0x83,0xda,0x8b,0x85,0xae,0x56,0x6d,0xba, - 0xaf,0xae,0x9a,0xfa,0xf4,0x69,0x55,0x7d,0x2a,0xf4,0x9b,0x7c,0xa1,0xd3,0xe8,0xe7,0x0f,0xef,0x5f,0xec, - 0x7d,0x7c,0xfb,0xfd,0xf3,0x37,0x11,0xe7,0x7d,0x47,0xb8,0x42,0xd7,0x26,0x6f,0x2f,0xcc,0x5d,0xe4,0x57, - 0x66,0x69,0x5f,0x31,0x6a,0x4a,0xf7,0x0e,0xd4,0x45,0x3e,0x2f,0x68,0xb7,0x69,0x22,0x31,0xdb,0xd5,0x10, - 0x01,0xbb,0xd5,0x7e,0x93,0x3d,0xdc,0xdf,0xa7,0xa3,0xf8,0xd1,0x17,0xfb,0xfb,0xeb,0xf5,0xb8,0x19,0x9d, - 0x73,0x0b,0x04,0xc8,0xd3,0x6a,0xb1,0x20,0xb2,0xf9,0xe6,0xf1,0x14,0x38,0x33,0xdd,0x98,0x3a,0xb5,0xd5, - 0x12,0x8d,0xf5,0x80,0xa8,0x9b,0x82,0x9e,0xff,0xf2,0xe0,0x2f,0x11,0x9d,0x8f,0xc5,0x1f,0xa0,0xb9,0x2e, - 0x6a,0x71,0xad,0x01,0xb1,0xdc,0x00,0x1d,0x14,0xff,0x0e,0x66,0xea,0x7c,0x6e,0xa5,0x18,0x79,0xd2,0xc1, - 0x2a,0xcd,0x1f,0x60,0x15,0xec,0xcd,0x9a,0xb7,0xfe,0xdd,0x84,0x97,0xeb,0x53,0xeb,0xeb,0x12,0xdc,0x47, - 0xa4,0x36,0x51,0x0f,0x35,0x81,0xdd,0x0f,0xcb,0xa5,0x3d,0xe9,0x88,0x03,0xd1,0xdd,0x14,0xc6,0x3b,0x9a, - 0xc8,0x4b,0x25,0x73,0xc2,0xa2,0x2c,0xea,0xe7,0x1f,0x11,0x14,0xbe,0x73,0x0a,0xe8,0xe9,0x6b,0x41,0x4f, - 0x07,0x96,0x12,0xf8,0xc2,0x50,0x02,0x5f,0x0a,0x4b,0x7e,0xb0,0x0f,0x9e,0xfc,0x73,0x64,0xbe,0xfc,0x8e, - 0x4e,0xda,0x2a,0xef,0xbc,0x8c,0x4e,0xe8,0x39,0x96,0x04,0xda,0xc3,0x54,0xd5,0x57,0xc3,0xd3,0xe1,0x69, - 0x30,0x22,0x51,0xcc,0xe9,0x1d,0x07,0x27,0xc2,0x5c,0x90,0xdd,0x29,0xd1,0x00,0xc0,0xf2,0x6a,0x49,0x0f, - 0x66,0x8d,0xc6,0x75,0x88,0x69,0x4e,0x13,0x88,0x26,0x79,0x2e,0x96,0x7d,0x8c,0xcc,0xc3,0x9e,0x31,0x4d, - 0xdb,0xc5,0x8c,0xea,0x3c,0x8b,0xaa,0x12,0x44,0xdd,0x35,0x31,0x54,0xad,0xa6,0xbd,0x5b,0x9e,0x11,0x80, - 0x5d,0x64,0xdb,0x07,0x63,0x6c,0xc1,0x01,0x26,0x49,0x06,0x45,0xf4,0x9c,0x19,0xee,0xcf,0xcf,0xaa,0x05, - 0x01,0xac,0xa9,0x91,0x38,0xa7,0xcb,0xa2,0x3d,0x7f,0x5a,0xeb,0x19,0xb5,0x5f,0xe4,0xf3,0x26,0x2a,0xca, - 0xad,0xd9,0xed,0x2d,0xa1,0xa1,0x11,0x21,0x1a,0x50,0x97,0xd2,0x93,0xc1,0xcf,0xa5,0x43,0x10,0x39,0x72, - 0x27,0xf6,0xd5,0x6c,0x54,0x95,0x84,0xa3,0xcf,0x88,0xba,0x08,0xa6,0x8d,0x36,0x3b,0xe7,0x98,0x6d,0xde, - 0xc9,0x00,0xac,0xe6,0x2b,0xa2,0xd3,0x79,0xe2,0x16,0x99,0xbc,0x8d,0x08,0x0a,0xea,0x92,0x76,0x39,0x75, - 0x30,0x52,0x67,0x36,0x75,0x99,0x37,0xcd,0x65,0x55,0xcf,0x90,0x3a,0x5e,0x8e,0x1e,0x53,0x5a,0x55,0x17, - 0xbf,0xf3,0x9e,0xcc,0xa2,0x27,0x79,0x53,0x4c,0xb7,0xa2,0xdd,0x55,0xbc,0xd8,0xa5,0xf3,0x6a,0xf7,0x2c, - 0x59,0xd3,0xa4,0x50,0xc3,0x4b,0x22,0x4f,0x02,0xa2,0x2c,0x00,0x4c,0x55,0xc9,0x38,0xa9,0x13,0x4b,0xc6, - 0xbe,0xee,0xe1,0x83,0xae,0x69,0x3a,0x8a,0xdf,0x89,0xf8,0x55,0xdb,0x04,0x58,0xf4,0xa1,0xe9,0x7d,0x6b, - 0x9f,0xd4,0xec,0xf0,0xfc,0x28,0x1c,0x0c,0x5a,0x23,0x50,0xff,0x92,0x36,0xc0,0x8c,0x69,0xef,0x6b,0x20, - 0x1e,0x1a,0xc3,0x05,0x76,0x00,0x84,0x5e,0xb3,0x51,0xc3,0xa8,0xe8,0xf6,0x76,0xe6,0x28,0x30,0xc2,0xff, - 0x3b,0x3b,0xfb,0xe6,0x1b,0x97,0x44,0xd4,0xda,0x4c,0x5f,0xbd,0xa5,0x45,0x3d,0x85,0xb0,0x20,0x22,0xa2, - 0xfc,0x46,0x78,0x1d,0xa0,0x93,0xc7,0xf3,0xb9,0x45,0xc4,0x82,0x11,0x65,0xdd,0x26,0x39,0x0d,0x77,0x30, - 0x1b,0xe7,0x01,0x0b,0xb4,0xea,0xec,0x86,0xe9,0x8f,0xd6,0x35,0x06,0xa0,0x23,0xee,0x00,0xc8,0x0c,0xac, - 0x73,0x37,0x63,0xe2,0x3b,0x95,0xfa,0xc7,0x8f,0x54,0x56,0xc9,0x48,0xd2,0x83,0x87,0x0f,0xbf,0xc8,0xfc, - 0xc8,0x26,0x0f,0xf7,0xbf,0x4c,0xed,0x8b,0x29,0x83,0xe2,0x1b,0xe5,0xa2,0x37,0xd5,0x96,0x81,0xfb,0xc8, - 0x7d,0xc0,0x15,0x9b,0x0d,0x93,0x96,0x8a,0xd8,0xa3,0xd3,0xe2,0x8c,0x08,0x27,0xcb,0x28,0xcc,0xd6,0xe3, - 0x02,0xdb,0x8c,0x90,0x8f,0x22,0xb8,0xa4,0x01,0xad,0x05,0xb4,0x74,0x5d,0x57,0x75,0xb8,0x16,0xf3,0x78, - 0x1a,0x47,0x6f,0x74,0x4b,0xe0,0xf2,0x69,0xeb,0x39,0x72,0x23,0xd5,0x2a,0x9e,0x82,0x59,0xe2,0x3e,0xbe, - 0x0b,0x2c,0xf9,0x6b,0x93,0xbe,0x45,0xbb,0x28,0xda,0x75,0xab,0xbe,0x1b,0x2d,0x9a,0x2d,0x7d,0x35,0xd5, - 0x1a,0x24,0x0f,0xd5,0x19,0x3d,0x7f,0xfa,0xf6,0xcd,0x9b,0xc7,0x4f,0xde,0xbe,0xff,0xf8,0xfc,0x59,0xd4, - 0xa9,0xbd,0x1e,0x0d,0x89,0x37,0x62,0xb3,0x94,0xd7,0xc0,0x59,0xc4,0xdc,0x1c,0x67,0x04,0x84,0xbd,0x6d, - 0xe8,0x77,0x60,0x02,0x3e,0xb1,0x7b,0x2c,0x4e,0xae,0x19,0xba,0xe2,0x7e,0x7a,0x92,0x0a,0x6b,0x31,0x3e, - 0x26,0x70,0x5b,0x1e,0x4a,0xb6,0x3f,0x31,0x8f,0xb2,0x63,0xde,0x11,0x11,0x9d,0xf7,0x66,0x03,0x4b,0x26, - 0xc3,0x0e,0xd0,0xb8,0xc5,0xf3,0xcb,0x1e,0xe3,0xeb,0x64,0x5e,0xa7,0x04,0x28,0x53,0x83,0xac,0x80,0x60, - 0x22,0x83,0xeb,0x03,0x3e,0x67,0xe2,0xd0,0x9a,0x3e,0xc2,0xba,0xf6,0xda,0xa2,0xd5,0x6b,0xe5,0x84,0xea, - 0x8d,0x98,0xba,0x3c,0xeb,0xa7,0x65,0xd8,0x79,0x5d,0x80,0x64,0xa2,0x62,0xd6,0x49,0xea,0x81,0xac,0x21, - 0x31,0x44,0xf0,0x1c,0xe1,0xa4,0xde,0x04,0xeb,0xa4,0x3d,0xa7,0xe5,0x20,0x8e,0x76,0x90,0x5b,0xaf,0xca, - 0x67,0xd5,0x25,0xa3,0xb5,0x77,0x06,0x97,0x11,0xb2,0x1e,0xe5,0xb3,0xd9,0xf3,0x0b,0x90,0x17,0x45,0x43, - 0xe3,0xa7,0x91,0x44,0x16,0xd3,0x11,0x14,0x0c,0x7c,0x93,0x0c,0xf1,0xe4,0x28,0xf8,0xc3,0xb2,0x5f,0xf5, - 0x8a,0x53,0xfc,0xd3,0x1f,0xb6,0xd5,0xad,0x02,0x73,0x34,0xf5,0x4a,0x0a,0x16,0x2c,0xf8,0x57,0xb0,0x2f, - 0xcc,0x65,0x32,0x9b,0x16,0x9e,0x65,0x33,0x9e,0xf3,0xfc,0x84,0x0e,0x39,0x42,0x85,0x10,0x18,0x1a,0xc8, - 0xc5,0x02,0x85,0x6b,0x1e,0x9f,0x4a,0xb2,0xc2,0x7a,0xd2,0x49,0x79,0xfa,0x6f,0x9c,0xdd,0x74,0x2a,0xdf, - 0x41,0x59,0xe0,0x13,0xc3,0x79,0x8c,0x64,0xa7,0x8f,0xba,0x04,0xdb,0xb8,0x34,0x68,0x81,0x38,0x9b,0x9d, - 0x9d,0xed,0x22,0xb6,0xef,0xc9,0x84,0x78,0xab,0x38,0x32,0x80,0xb5,0x75,0x9a,0x13,0x8a,0x9c,0x6d,0x01, - 0x78,0xb6,0xa4,0xc0,0x16,0xe8,0x63,0xda,0xb5,0xf6,0x03,0x65,0x5b,0x10,0x0c,0x50,0x3a,0xf5,0x53,0x09, - 0xfa,0x36,0x2e,0xff,0xfc,0x68,0x0e,0xee,0x1e,0x8d,0x2a,0x54,0x25,0x23,0xca,0xf9,0xc8,0x64,0xac,0x03, - 0x9e,0xde,0x69,0x9a,0x72,0x57,0xec,0x3f,0x11,0x81,0x81,0xdf,0x54,0x45,0x20,0x6d,0x93,0x21,0x65,0x94, - 0x01,0x02,0x6b,0x84,0x31,0x67,0xa5,0x6c,0x18,0x91,0x85,0xd4,0xc1,0xe6,0xc9,0x0a,0xe2,0x95,0xfe,0x03, - 0x85,0xd2,0x96,0x30,0x1b,0x3f,0xbc,0x7f,0xf9,0xb4,0x5a,0x50,0x4d,0x04,0x95,0x94,0xe9,0xc5,0x7a,0xff, - 0xf5,0xe5,0xfe,0x83,0xb3,0x42,0x45,0xff,0x37,0x94,0xf5,0xfd,0xd7,0x17,0x8f,0x39,0x31,0xed,0x24,0x3e, - 0xfc,0xf2,0xc1,0x99,0x8a,0xee,0x75,0xd3,0x9e,0x72,0x41,0xd5,0x4d,0xdc,0x47,0xc1,0xdd,0x4e,0xda,0x57, - 0x4f,0xb8,0xe0,0x61,0x37,0xf1,0x19,0x27,0x1e,0x45,0x21,0x0f,0xfb,0x19,0x70,0x23,0x8c,0xb0,0xad,0xad, - 0x2a,0xb6,0xe5,0x55,0xad,0x40,0x39,0x95,0x09,0x08,0x4b,0x6d,0x54,0x47,0x94,0x30,0xc4,0x98,0xe9,0x84, - 0x4a,0xe9,0x80,0xc5,0xe2,0xd2,0x66,0xc1,0x0f,0x8f,0xc6,0x9e,0x76,0xd7,0xbd,0xc5,0x1d,0x52,0x7f,0xd1, - 0x92,0x39,0xee,0x90,0x99,0xf7,0x58,0xef,0x66,0xd1,0xe1,0x91,0xe1,0x49,0x6d,0x3a,0x11,0x60,0x46,0x1f, - 0x56,0x0c,0x91,0xe1,0xe0,0xbd,0x46,0xa2,0x86,0x60,0xc6,0x12,0xd4,0x49,0xf5,0xf2,0xc3,0x5b,0xdb,0xc5, - 0x2e,0x13,0xc8,0x7c,0xf3,0x26,0x87,0x07,0x7d,0x2b,0xe4,0x3d,0x84,0x9c,0x93,0xdd,0x28,0x8b,0x76,0x59, - 0xf5,0x06,0x01,0x05,0x08,0xee,0x7c,0xf4,0x6b,0x55,0x94,0x71,0xb4,0x43,0x93,0x6c,0x19,0x69,0x54,0xb4, - 0x9b,0xc5,0x7b,0x07,0xd0,0x83,0x78,0x52,0x65,0x12,0x25,0x13,0xfa,0x93,0xa2,0xec,0x6e,0x95,0xfc,0x31, - 0xc0,0x75,0x08,0xfc,0xc3,0x28,0x07,0x35,0x1b,0xe5,0x21,0x59,0x47,0xef,0xf6,0xc0,0x11,0x91,0x53,0x90, - 0xc0,0x27,0x90,0x8a,0x74,0x9b,0x9f,0xe1,0xe7,0x6a,0x59,0x10,0xb0,0xd3,0xd3,0x29,0x21,0x3c,0x30,0x5c, - 0xc2,0x3f,0x15,0xa7,0x7b,0x8b,0x6a,0x56,0x9c,0x16,0x7a,0xb6,0xd7,0x14,0x84,0x16,0x25,0x6d,0x55,0x6e, - 0xa4,0xce,0xf3,0xa6,0x75,0x65,0xf1,0x5e,0x4d,0x6d,0x1f,0x88,0xbb,0x04,0xf7,0x7d,0x49,0x07,0x39,0x5a, - 0x20,0x94,0x7a,0x75,0xbd,0xd7,0xef,0x68,0xad,0x89,0xa7,0xa7,0xe3,0x14,0x4f,0x74,0x4c,0xed,0xe5,0xa7, - 0x2d,0xbf,0x81,0x98,0xdd,0xa3,0xb1,0x11,0xa5,0x73,0x74,0x07,0x5b,0xc1,0xc2,0x41,0xda,0xe0,0x15,0x24, - 0x2f,0x5e,0xe3,0x4f,0x5c,0xbb,0x5f,0xf5,0x51,0x43,0x0c,0x68,0x1b,0x47,0xbf,0x94,0x04,0x23,0x3d,0xee, - 0xbb,0x0a,0x97,0x81,0x76,0x9d,0xd2,0x19,0x71,0x65,0x75,0xb1,0xc0,0x67,0xab,0x13,0x9a,0xef,0x78,0x9f, - 0xd0,0x4e,0xd2,0x3d,0xab,0x55,0xb9,0x51,0xaa,0xda,0x3d,0x20,0x80,0x90,0xc3,0x33,0xa7,0x23,0x9c,0x85, - 0x4a,0xa6,0x62,0x9d,0x7c,0x93,0xed,0x9b,0xdd,0x33,0x46,0x66,0x06,0x52,0x62,0x6f,0xca,0x04,0x08,0x93, - 0x02,0x13,0xfe,0x66,0x82,0x3f,0xe9,0xe1,0x51,0x02,0x0c,0x45,0x53,0x18,0x1f,0x96,0x47,0x49,0xea,0x72, - 0x76,0x23,0x05,0xd4,0x9c,0x96,0x60,0x78,0x73,0xca,0xf8,0xf3,0x50,0x12,0xcc,0xde,0x5d,0xb4,0xd5,0x24, - 0x54,0x10,0x78,0x45,0x8d,0xb3,0x48,0x68,0x9d,0x50,0x92,0x77,0x20,0x0d,0xe0,0x71,0x4b,0xed,0x9c,0xac, - 0x68,0x07,0x45,0xe7,0xb4,0x84,0x11,0x8c,0x0c,0x08,0x5d,0x8e,0xf0,0x82,0x6d,0x77,0x47,0x91,0x1b,0x3c, - 0xa5,0x52,0x4c,0xb1,0x88,0x70,0x5a,0xcd,0xe9,0xdd,0x3e,0x4e,0xfc,0xa3,0xc7,0x58,0xa9,0xa8,0x40,0x52, - 0xe2,0x6a,0x00,0x9e,0xf8,0x9c,0x7e,0x54,0xc3,0x78,0x26,0x45,0x5b,0x78,0x98,0xd8,0x87,0x50,0xa1,0x32, - 0xf1,0x5f,0xe6,0x0d,0xca,0xe2,0x67,0x22,0x3f,0x41,0xb9,0xff,0xd3,0x69,0x00,0x3c,0x94,0x69,0x04,0x8f, - 0x0a,0x73,0x87,0x3e,0xd2,0x8f,0x5a,0xe6,0xed,0x39,0xe7,0x47,0x0f,0xb0,0x78,0x94,0x6a,0x12,0x46,0x10, - 0x0a,0x3d,0x6e,0xe3,0xfd,0x64,0xe2,0x13,0x51,0x6a,0xd7,0xbf,0x8a,0x78,0x9e,0xd6,0x2a,0x7b,0x10,0x2f, - 0x9a,0x42,0xdf,0xd2,0x04,0x81,0x6c,0x4b,0x1e,0x14,0xa3,0x16,0x32,0x50,0xaf,0x82,0x03,0xf8,0x3f,0x06, - 0xf4,0x63,0x93,0x5b,0xad,0x9a,0xb1,0xc8,0x78,0x3e,0xd7,0x78,0x8b,0xa3,0x3c,0x72,0xe7,0x24,0xad,0x91, - 0xe1,0xc5,0x47,0x76,0x07,0x9a,0xb5,0xf0,0xd2,0x07,0x4b,0x39,0x08,0x14,0x30,0xae,0x2b,0x09,0xfd,0xd1, - 0x9f,0xb4,0xf4,0x06,0x25,0x76,0xfe,0x99,0x4a,0xb5,0x2f,0x80,0x68,0xcc,0x07,0x27,0xe2,0x61,0xbd,0x26, - 0x3c,0xb9,0xa1,0x72,0xdc,0xde,0xff,0xfc,0x19,0x1d,0x28,0x83,0x8c,0xae,0x63,0x41,0xa4,0x18,0xed,0xf2, - 0x2c,0x92,0x0e,0x6d,0x01,0x4d,0x11,0xaf,0xdc,0x6c,0xe5,0xd4,0x97,0x92,0x49,0x9b,0x2d,0xcc,0x6c,0x3e, - 0x05,0x5a,0x58,0x0b,0x54,0x47,0x8f,0x9f,0x3c,0x7d,0xf6,0xfc,0xc5,0xb7,0xdf,0xbd,0xfc,0xfb,0xf7,0xaf, - 0x5e,0xbf,0x79,0xfb,0xee,0x1f,0xef,0x3f,0x7c,0xfc,0xe1,0xc7,0x9f,0x7e,0xfe,0xe7,0xbf,0xf2,0x93,0x29, - 0xb1,0xf3,0x67,0xe7,0xc5,0xaf,0x9f,0xe6,0x8b,0xb2,0x5a,0xfe,0x56,0x37,0xed,0xea,0xe2,0xf2,0xea,0xfa, - 0xf7,0xfd,0x83,0x87,0x5f,0x7c,0xf9,0xd5,0x5f,0xff,0xfb,0x6f,0x5f,0xef,0x3e,0xc8,0xa2,0x71,0xe9,0x25, - 0xd4,0x9e,0xf0,0x50,0x41,0xaa,0x90,0x06,0x5f,0x75,0x92,0xb0,0x88,0x59,0xf4,0x52,0xfa,0xf5,0xd4,0x76, - 0xcb,0x72,0x4a,0x83,0x48,0xca,0xea,0xdb,0x34,0x48,0x98,0xcc,0x4c,0x7b,0x0b,0x61,0x0c,0x41,0x5b,0x93, - 0xed,0xc3,0xf0,0x66,0x5c,0x39,0xe8,0xb9,0x6d,0x70,0x7a,0x4d,0x33,0x3a,0x51,0x54,0xf3,0x5f,0x44,0x38, - 0xe5,0xbb,0xd9,0xd4,0xe6,0xfe,0xf5,0x8b,0x1d,0xfd,0xcd,0x37,0x7f,0xdb,0xa3,0x8c,0xbf,0xfc,0x2d,0x61, - 0x74,0x13,0x17,0x99,0x7c,0xfc,0x94,0x7a,0x4b,0x45,0x9a,0xdd,0x6c,0xf4,0xdf,0x5f,0x25,0xc9,0x37,0x0f, - 0xbf,0xfa,0xca,0x10,0xec,0x18,0x5d,0x39,0xd6,0x99,0x7e,0xf4,0xe8,0x6f,0xb7,0x85,0x3d,0x8e,0xfe,0x97, - 0x11,0xc8,0xcd,0x65,0x5d,0x74,0xb4,0xfa,0x96,0x6a,0x23,0x64,0x75,0x23,0x66,0x20,0x74,0xda,0x37,0x46, - 0x47,0xc2,0x07,0xe6,0x00,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0xb9,0xb3,0x63,0x3e,0xb1, - 0x27,0x15,0x7d,0x87,0xf1,0xf0,0xd9,0x5d,0x02,0x33,0x7f,0xfb,0xfa,0xa3,0x93,0xde,0xaa,0x00,0xb2,0x8b, - 0xe0,0x5b,0xec,0x3f,0xfa,0xb0,0xe8,0x14,0xa8,0x82,0x02,0x33,0x16,0xd0,0x50,0x91,0x0a,0x82,0x0b,0x02, - 0xf2,0xdc,0xe7,0x35,0x7a,0xba,0xaa,0x21,0xf5,0xf6,0xbb,0x90,0x71,0x77,0xd6,0x98,0x33,0x7e,0xbc,0x45, - 0x87,0xbc,0x02,0x73,0x99,0x6e,0x9c,0x4e,0x59,0xef,0xa3,0xd1,0x82,0xf9,0x2c,0x0c,0xe1,0xbd,0x3e,0x7b, - 0x7e,0xb5,0x8c,0xa3,0xf8,0x7f,0x6e,0xc7,0xbf,0xfc,0xd2,0xfc,0x25,0x89,0x89,0x61,0x26,0xf2,0x2d,0x8b, - 0x0f,0xff,0x67,0x7c,0xf4,0x97,0x24,0xf2,0xaa,0x20,0x4d,0xfc,0xe1,0xe6,0x5c,0x1d,0x7e,0x71,0x24,0xf2, - 0x09,0x34,0xbe,0xa8,0x2e,0xba,0xd6,0x11,0xbc,0xbb,0x78,0x51,0x68,0x2d,0x08,0xd4,0x30,0x63,0xa3,0xb2, - 0xba,0x8c,0x93,0xbd,0xbf,0xfd,0xf5,0x4b,0xfd,0x15,0x51,0xd3,0x69,0x7f,0xd1,0x20,0x73,0xea,0x8e,0xa3, - 0xa3,0x3f,0xdd,0x6c,0x87,0x3e,0xf8,0x37,0xc8,0x63,0xd3,0xa9,0x73,0x02,0x9f,0x39,0xa4,0xc5,0x87,0x47, - 0x21,0x01,0x1a,0xea,0x25,0xa9,0x82,0x61,0x45,0x76,0xa7,0x02,0x59,0xa0,0x1b,0xa7,0x6f,0x63,0x99,0x87, - 0xe8,0xdb,0x44,0xeb,0xde,0x29,0x2c,0x94,0xd0,0xde,0x01,0x24,0x0c,0xbe,0x25,0x2e,0x9f,0x6d,0x4c,0x9c, - 0xfd,0x8a,0x88,0x48,0x90,0x6d,0xbd,0x24,0xc3,0xef,0x75,0x2a,0x32,0x14,0x47,0xd6,0xa5,0x32,0x1d,0x1d, - 0x12,0xd6,0x10,0x18,0x11,0x38,0x32,0x57,0x13,0x03,0x4a,0xaf,0xc4,0x22,0xfe,0x87,0xda,0x2d,0xd8,0x1d, - 0x7e,0x86,0x9f,0x65,0x54,0xf0,0xf2,0xd4,0x70,0x7f,0x7a,0x16,0x6f,0x28,0xb0,0x0e,0xbe,0x16,0x09,0x31, - 0x4c,0xf3,0x9c,0x4d,0x20,0xbd,0x1e,0x40,0x40,0x4c,0xbf,0x77,0xf0,0x08,0xb4,0x34,0x40,0x67,0xed,0xe8, - 0x24,0x37,0x62,0xb9,0xed,0xa9,0x91,0xc2,0x30,0x83,0x45,0x0f,0xd9,0x2a,0x76,0xd9,0xca,0x08,0x68,0x94, - 0x93,0xf1,0x7a,0x69,0x2f,0x2b,0xfe,0x44,0x08,0x9c,0x41,0xc6,0xc8,0xd2,0x60,0x97,0x0b,0x45,0x4d,0x4f, - 0x65,0x15,0xd6,0x62,0x45,0xf9,0x2e,0x65,0x24,0xba,0x08,0x53,0xa9,0x13,0xfa,0x1b,0x91,0xe6,0x51,0x37, - 0x1d,0x6f,0xc9,0x1f,0x2a,0x22,0xd4,0x90,0x7a,0x01,0xa4,0x35,0x1a,0x0a,0xf5,0x0c,0xb4,0xae,0x56,0x68, - 0xef,0x5a,0xd6,0x47,0x6b,0xbb,0xa1,0xa9,0x93,0x46,0xe3,0x77,0x7b,0xdb,0xd8,0xc7,0x04,0x1c,0x62,0x57, - 0xdc,0xe0,0xe1,0x9e,0xe7,0x58,0xdb,0xa9,0x91,0x07,0x7a,0x1f,0x9c,0x1a,0x61,0x5d,0xa9,0xf8,0x5a,0x0d, - 0xd4,0x94,0xd3,0x33,0x9d,0x30,0x52,0x21,0xec,0xf6,0x2c,0xaf,0x0b,0x66,0xca,0x6b,0xb8,0x5d,0x4b,0x9d, - 0x14,0x15,0xbc,0x7f,0xae,0x6d,0x5a,0x5f,0xaf,0xa6,0x67,0x3e,0x4a,0xff,0x5b,0x9a,0x8b,0xcf,0x70,0xa3, - 0x76,0x42,0xdc,0x52,0x95,0x1d,0x0a,0x07,0x2a,0x4e,0x20,0x8c,0xf5,0x26,0x23,0xf5,0x27,0xe4,0x05,0x8e, - 0x8e,0x89,0xb7,0xdb,0xdb,0x5b,0x58,0x73,0x1c,0x3f,0x7d,0xfc,0xe6,0xe9,0xf3,0x57,0xc7,0xc7,0xff,0x81, - 0xf4,0xc1,0xd6,0xf6,0xe0,0x7f,0xe2,0xc3,0x7c,0xef,0xf7,0x23,0xfc,0xf9,0x65,0xf6,0xcb,0xee,0x2f,0x7b, - 0xbf,0x8c,0x8e,0xfe,0x92,0x26,0x93,0x5f,0x1e,0xfc,0xf2,0xc0,0x92,0x7e,0xed,0x7f,0x24,0xde,0xf0,0x02, - 0x87,0x49,0x60,0x48,0xf4,0xcb,0x83,0x5d,0x21,0x99,0x77,0x41,0x7f,0xea,0x90,0x20,0x7e,0xb0,0x2b,0xa4, - 0xee,0x1f,0x4c,0x4e,0xd7,0x6a,0xa7,0x43,0xa9,0xb5,0xeb,0x72,0xc0,0x78,0x33,0xdb,0x38,0x32,0x22,0x31, - 0xf6,0x8d,0x76,0xe3,0xf0,0x73,0x62,0x74,0x21,0x18,0x0e,0x52,0x52,0x58,0x37,0x75,0xa8,0x2c,0x3f,0xe9, - 0x50,0x8f,0x04,0xe6,0xd4,0xff,0x16,0x3a,0x84,0x20,0xd3,0xc9,0x12,0xb7,0x03,0x05,0xab,0x23,0x8a,0x20, - 0xd4,0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb5,0x58,0x35,0xed,0xd6,0x89,0xde,0xca,0x9d, - 0xcd,0xd4,0x28,0x32,0x66,0x28,0x63,0xee,0xb5,0x11,0x0c,0x66,0x83,0xca,0x2c,0x98,0x81,0xd0,0x04,0xc9, - 0x07,0x65,0x86,0x0f,0xc6,0x6d,0x27,0x1b,0x52,0xb4,0xbc,0x01,0x5a,0x8a,0xed,0x23,0x57,0x55,0xf0,0x7e, - 0x74,0x69,0x10,0x23,0x78,0x04,0xfd,0x45,0xf7,0x74,0xec,0xe3,0xf2,0x9e,0x3a,0xc5,0x58,0x55,0x70,0x35, - 0x32,0xd8,0x20,0x05,0x87,0x56,0x53,0xad,0xea,0xa9,0x0e,0xbf,0x0a,0x8d,0x0d,0x6e,0x5a,0x1c,0x18,0x6c, - 0x4f,0x54,0x77,0x50,0x51,0x9b,0xe1,0x50,0x95,0x43,0x85,0xe1,0xe7,0xce,0x83,0xea,0xdf,0xd8,0x1b,0x5b, - 0x03,0x28,0xca,0x1a,0x94,0xb1,0xd8,0x51,0xc3,0xa6,0x0c,0x7a,0xcf,0x7e,0x0b,0x77,0xfb,0x40,0x0c,0x28, - 0x33,0xff,0x97,0xdc,0x20,0x34,0x1c,0x1b,0x7e,0x5c,0xe9,0x61,0xb7,0x86,0x61,0x60,0x6c,0x07,0xed,0x60, - 0x6f,0x6f,0x31,0x3a,0xb6,0x88,0x0d,0x8c,0x21,0xfb,0x25,0x45,0xe6,0x65,0x25,0x61,0xeb,0xee,0xae,0xb4, - 0x2c,0x57,0xb7,0x92,0xd0,0xac,0x7d,0xc3,0xba,0xe0,0xf6,0x76,0xd3,0x8e,0x97,0xd2,0x9a,0xeb,0xc5,0x49, - 0x35,0xef,0xa6,0x9d,0x54,0xd5,0x5c,0xe7,0xe5,0xa0,0x5d,0xfb,0xff,0x8e,0x25,0xbc,0x48,0xd8,0xd8,0xf8, - 0x76,0x51,0x0e,0x1a,0xc2,0x5b,0x22,0x9a,0x0d,0x21,0xd8,0x26,0x2f,0x76,0x0c,0x94,0x27,0x8e,0xbf,0xc9, - 0xf6,0x77,0x76,0x5e,0x13,0x89,0x3f,0x3a,0x9d,0x57,0x15,0xe4,0x71,0x19,0xd3,0x53,0x30,0x30,0x29,0x99, - 0xfe,0x0d,0x6a,0x6d,0x7a,0x5d,0xa7,0xce,0x4e,0xa2,0x68,0xd3,0xb3,0xa5,0x9d,0xf4,0x45,0x7e,0x22,0x05, - 0x7f,0x98,0xa4,0xae,0x0b,0xbe,0xd6,0xe9,0x60,0x5f,0xbd,0x14,0x9b,0x38,0x9a,0xfc,0x0d,0x75,0x6c,0xd2, - 0x12,0x61,0xea,0xbe,0x5a,0x19,0x0b,0x49,0x67,0x91,0x69,0x4c,0xe3,0x85,0xcb,0x8f,0x45,0x7b,0x50,0x67, - 0x4e,0x86,0xa5,0x20,0xe6,0xcc,0xf6,0xc7,0xc5,0xa3,0xda,0x9a,0x92,0x15,0x62,0x98,0x79,0x58,0x1c,0x1d, - 0x11,0xae,0xf4,0xfc,0xc2,0x90,0xf6,0xfd,0xb0,0xed,0x0a,0xb2,0x8e,0xd6,0x43,0xc6,0x1d,0x54,0xec,0x68, - 0xed,0xfb,0x38,0x77,0xee,0x08,0xd6,0x8f,0xc0,0xaa,0x54,0xdb,0x40,0xc4,0xc5,0xe2,0xe0,0x6f,0xf6,0x0e, - 0x9c,0x94,0x98,0xbb,0x4c,0x27,0x4e,0xa9,0x0e,0x92,0xa0,0xb6,0xd3,0xce,0x99,0x75,0x6c,0x57,0x1d,0x9b, - 0xdc,0x95,0x59,0xfa,0xb9,0x1c,0x98,0x8f,0x71,0x1f,0x6d,0x78,0x92,0x40,0x1f,0x96,0x47,0x30,0xec,0xa4, - 0x1f,0x58,0x08,0x27,0x61,0xc3,0xb3,0x0d,0x63,0x54,0x23,0x0d,0xa9,0x07,0x0c,0x85,0x0d,0x85,0x31,0xa9, - 0xbf,0x39,0x98,0x78,0xe3,0x56,0x57,0x0e,0x38,0x80,0xfb,0xcd,0xe6,0xbd,0xf6,0xd9,0xc9,0x79,0xcb,0xd1, - 0xb1,0x54,0xe4,0x3c,0x2f,0x54,0xe9,0x3b,0x72,0x2e,0x1d,0x21,0x0c,0x72,0x7b,0xbb,0x3f,0xf6,0x4b,0x6f, - 0xcb,0xee,0x69,0x5a,0x71,0x6f,0x99,0x5b,0x26,0xe3,0x72,0x6f,0x6f,0x9c,0xd4,0x3c,0xa8,0xc3,0x72,0x57, - 0x3b,0xb3,0xdb,0xda,0x57,0x7a,0xd1,0x03,0x24,0x78,0x6f,0xe8,0x04,0xbe,0x1d,0x19,0x66,0xc3,0x49,0x46, - 0xfd,0x17,0x8b,0x8e,0x68,0x02,0x56,0xd3,0x25,0x01,0x56,0xf9,0xc8,0x3b,0x8b,0x10,0x60,0xa1,0x82,0x9d, - 0x9d,0x0b,0x68,0x1f,0x21,0x8c,0x74,0xd0,0xe5,0xab,0x39,0xb3,0xe7,0xb0,0x4f,0xba,0xf6,0x00,0x83,0x6d, - 0x98,0x58,0x2c,0x65,0x8e,0x44,0x3e,0xe7,0x6a,0xfa,0x11,0xa0,0xd9,0xa6,0x83,0x70,0xbb,0xb6,0x85,0x88, - 0x6b,0xd9,0xae,0x77,0x76,0xdc,0x06,0xa3,0x0a,0xcc,0x33,0x95,0x86,0x0e,0x93,0x75,0x0f,0x19,0x4f,0x4d, - 0x20,0xee,0x27,0xb6,0xa5,0x9b,0x24,0x75,0x57,0x3b,0x3b,0xb9,0x07,0x48,0xb3,0x26,0x90,0x5f,0xc9,0x23, - 0x38,0x24,0x7d,0xa1,0xeb,0xeb,0xe0,0x7c,0x0e,0x08,0x4c,0x1e,0x07,0x86,0xbd,0x96,0xca,0x6e,0x6f,0x6d, - 0x65,0xdb,0x07,0x63,0x11,0x68,0x18,0xf0,0xfc,0xa4,0xaf,0x81,0x55,0x88,0x5b,0x0a,0x13,0xbc,0x5d,0x79, - 0xe3,0xdb,0x9e,0xba,0xb6,0x9b,0x7e,0xdb,0x9d,0x96,0xe1,0x95,0x63,0x1a,0xf7,0xc6,0x5f,0xb6,0xf5,0x00, - 0xac,0x8f,0xfb,0x18,0x64,0x63,0x0d,0xa9,0xeb,0xb6,0xbe,0xc4,0xb9,0xd3,0x99,0x9e,0x11,0x2f,0xec,0x6a, - 0x3a,0xf1,0xbb,0x8e,0xc6,0xb7,0x69,0x36,0xae,0xd9,0x64,0x9a,0xc9,0x31,0xd9,0x10,0x7c,0xf8,0xf9,0x3d, - 0x11,0x6e,0xb6,0x4b,0x5f,0x17,0x44,0x3d,0x51,0x12,0x0a,0xa8,0xf6,0xdd,0xbc,0x7c,0xf1,0x57,0xac,0xc6, - 0xed,0xed,0xd7,0x5f,0xe1,0xd7,0x7f,0x7e,0x65,0xf5,0x76,0xc9,0x8d,0x99,0x50,0x39,0x7d,0xad,0xdb,0x11, - 0x67,0x53,0xfd,0xf3,0x95,0x4e,0x4b,0xa5,0xe9,0x40,0xd3,0x75,0x7e,0x32,0xd7,0xe9,0xf6,0x76,0xad,0x20, - 0xd1,0x90,0x97,0x7d,0x63,0x09,0xb1,0x32,0x99,0xfb,0xeb,0x00,0xc9,0xdc,0x0b,0xce,0xa3,0x01,0x85,0xf3, - 0xce,0xce,0x83,0x92,0xfd,0x22,0x58,0x27,0xfa,0xc0,0x50,0xe8,0xa1,0xa1,0xa0,0xaf,0xea,0x53,0xcf,0xc2, - 0xa9,0xa5,0xb5,0xe0,0xc3,0x5b,0x75,0x7f,0xfc,0xc9,0xe5,0xbf,0x7d,0x6a,0x4c,0x05,0x0c,0x0a,0x98,0x5a, - 0xe1,0xce,0x5b,0x31,0xeb,0x35,0xa8,0x80,0x6a,0xa4,0xb6,0xf3,0x33,0xe5,0x58,0xe2,0xe9,0x79,0x31,0x9f, - 0xd5,0xba,0x04,0xf3,0x05,0xeb,0x0f,0x82,0xe4,0xf9,0x42,0xb1,0x72,0x93,0xdf,0x91,0x91,0x37,0xd7,0xe5, - 0xf4,0x45,0x0e,0x33,0xf9,0x6b,0xaf,0x4e,0x1d,0x95,0x60,0xb8,0x51,0xb5,0x48,0xf2,0xda,0x62,0x0a,0x4c, - 0x6e,0x1e,0x29,0x95,0x80,0x37,0x63,0x10,0xe6,0x12,0x4f,0x89,0xb5,0xa5,0xfe,0x70,0x11,0xf3,0x4c,0xe9, - 0xa7,0xe5,0x53,0x69,0x88,0xd2,0xdd,0x33,0xa7,0x9b,0x8e,0x73,0xba,0x1b,0x04,0x3d,0x7f,0x98,0xd2,0xda, - 0xbd,0x9c,0x71,0xba,0x79,0x96,0xfa,0xe7,0x34,0x5e,0xf6,0xbc,0xd4,0xa2,0x8e,0x35,0x03,0xa3,0x97,0xda, - 0xbd,0x64,0x8f,0x83,0x1c,0x18,0x16,0x25,0x50,0xde,0x96,0x61,0xe1,0x32,0x2c,0x5c,0x76,0x0b,0x13,0xbe, - 0xf1,0x33,0xfe,0xb8,0xbf,0x63,0x1c,0x92,0xee,0xa2,0x5d,0x73,0xd0,0x96,0x7c,0xc2,0xe2,0x7c,0xcd,0x68, - 0xad,0xe8,0x27,0xf0,0x17,0x09,0x6a,0xfd,0xe0,0x90,0x9e,0xb8,0x04,0x6d,0xc7,0x1d,0x07,0x9e,0xb6,0xb6, - 0x86,0x48,0x6e,0x67,0x41,0x28,0x77,0x7c,0x5c,0x9d,0x1c,0x1f,0x47,0x6c,0xac,0x22,0xcf,0xe1,0x47,0x4d, - 0x3d,0x41,0xef,0x24,0x23,0xcd,0x89,0x6c,0x3f,0xaf,0x56,0xf3,0x19,0xcd,0x36,0x21,0x0e,0x82,0xd0,0xed, - 0xef,0x4b,0x36,0x12,0xec,0x63,0xc3,0xdb,0x5b,0x10,0x5b,0x94,0x63,0x36,0x4f,0xd1,0x3c,0x87,0x57,0x4b, - 0x53,0x9c,0xb0,0xb5,0x2d,0x7d,0xc8,0x4e,0x0a,0x44,0xc5,0x62,0xde,0x78,0xd0,0x0d,0xeb,0x2e,0xb1,0x04, - 0x3c,0xaf,0x17,0x8b,0xa7,0xd5,0xaa,0x6c,0x77,0x77,0xe9,0xe0,0xf2,0x63,0xfc,0x18,0xaa,0xd3,0x05,0x11, - 0xe3,0xdb,0x7f,0x96,0x84,0x7e,0x4d,0x53,0x67,0xba,0x0d,0xdc,0x03,0x9f,0xe9,0x66,0x5a,0x17,0xb0,0x9c, - 0xe7,0xd9,0x61,0x74,0x9f,0x13,0xba,0x3f,0x20,0x72,0x31,0x1f,0x85,0x9b,0xd3,0x4a,0x88,0x73,0xc2,0xd8, - 0xa8,0x84,0x50,0x29,0x3f,0x36,0xf4,0xb8,0xca,0xb6,0x0b,0x3a,0x12,0x70,0x12,0x7e,0x06,0x1b,0x84,0x58, - 0x60,0x63,0xe3,0x2b,0xaa,0xb2,0x6f,0x5a,0xad,0xb3,0x66,0xd2,0x58,0xa2,0xd3,0xab,0x3f,0xfe,0x59,0xd2, - 0x46,0xab,0xa9,0x3c,0xcd,0x4d,0x45,0x2d,0x2d,0x61,0xb9,0x91,0xa8,0x15,0xbd,0xae,0xf0,0xea,0x93,0xfa, - 0x27,0xce,0xce,0x4e,0x40,0xf1,0x77,0x20,0xcc,0xec,0x7f,0x71,0x4b,0xd2,0x7d,0x77,0x24,0x5a,0x02,0x0d, - 0xc3,0x4e,0x4c,0xbc,0xac,0xb5,0x7f,0xfa,0x5c,0x8b,0x90,0x8d,0xb3,0x11,0x46,0xcc,0xe2,0x16,0xbd,0x56, - 0x4d,0x38,0x4a,0x6d,0xc9,0x9b,0xee,0x30,0x35,0xa1,0xda,0xfa,0xf6,0x56,0x6f,0xb3,0x09,0xea,0x36,0x9e, - 0xe3,0xe9,0x64,0xea,0xe9,0xb0,0x94,0xba,0xe3,0xe6,0x5c,0xc3,0xea,0xbf,0xac,0x5a,0xd0,0xbf,0x6c,0x79, - 0x1f,0x80,0xc3,0xdb,0xc0,0x3c,0xa0,0x0f,0x82,0xb4,0x76,0xb1,0x3f,0x6e,0xdc,0xd9,0xcb,0x34,0xfa,0x22, - 0xbf,0x72,0xa4,0x24,0x34,0x82,0x8e,0x54,0xd4,0xea,0x80,0xaa,0x53,0x25,0xe0,0x44,0xb3,0xff,0x29,0xf6, - 0x11,0x3f,0xf5,0x5d,0x46,0x7d,0xd5,0x62,0x20,0x5b,0x1a,0xd1,0x91,0xdd,0x2d,0xde,0x33,0x49,0x00,0xfd, - 0xf6,0xb6,0x86,0xa5,0x96,0x81,0xeb,0x49,0x99,0xd6,0x93,0xf8,0x23,0x21,0x18,0x3e,0x43,0x78,0x14,0x84, - 0x8c,0x30,0xd7,0x76,0xac,0x20,0xec,0xac,0xf5,0x6d,0x19,0xe0,0xeb,0x5f,0xdd,0x3e,0xbf,0x63,0xc8,0xe1, - 0x68,0x02,0x53,0x07,0xbf,0x91,0xc7,0xbe,0x4f,0xe1,0x5e,0xbb,0xbd,0x15,0xd2,0x18,0xc6,0x45,0xd6,0xda, - 0x57,0x1f,0x09,0x9a,0x0b,0x3b,0x16,0xae,0xc0,0x2b,0xd7,0x99,0xd0,0x3c,0xc3,0xc1,0x1d,0x36,0xaa,0xdf, - 0x9a,0x86,0x26,0x81,0xc6,0x69,0xdc,0x3c,0xca,0x2d,0x14,0x36,0xc0,0x6e,0x20,0x2c,0xb3,0xfc,0xb0,0x39, - 0x3a,0x02,0x80,0x82,0x56,0x38,0x65,0x52,0x68,0x52,0xc5,0x35,0xfb,0x37,0x42,0x97,0xf2,0x2a,0xc6,0xc6, - 0x4f,0xb1,0xec,0x25,0x3d,0x0c,0xd0,0x94,0xcf,0x7b,0x22,0xba,0x72,0xd2,0xdb,0x73,0x75,0x36,0xe8,0x27, - 0x67,0x5d,0x87,0xd9,0x59,0x8e,0x7a,0x30,0x74,0x20,0x4f,0xda,0xa0,0x50,0xeb,0x49,0x74,0xd3,0xab,0x62, - 0x9d,0xea,0x49,0x1b,0xb6,0x67,0x4a,0xbc,0x8a,0x3f,0xd7,0x24,0xd3,0x30,0xf8,0x83,0x86,0x3f,0xd7,0x6c, - 0x50,0x90,0xd8,0xbe,0x54,0xa7,0xc1,0xb0,0xdf,0xf5,0xe5,0x70,0x93,0xd6,0xaa,0xf0,0x69,0x3b,0xf5,0xd1, - 0xc4,0x44,0xa7,0xd0,0xf3,0x07,0xdf,0xbf,0xf4,0xe4,0x8e,0x08,0x7c,0xba,0x5c,0x8f,0x91,0x14,0x04,0xba, - 0xa0,0x8b,0xb8,0xc0,0x46,0x2d,0x7c,0x15,0xcf,0xec,0xcc,0x07,0x52,0x00,0x57,0xdd,0xb4,0x26,0xf4,0x42, - 0xf0,0x55,0x8f,0x57,0xf0,0xe0,0xa3,0x03,0x8a,0xdd,0x1e,0xf1,0x07,0x8d,0x0e,0x59,0xf3,0xb1,0x2c,0x98, - 0x50,0x95,0xf1,0x2e,0xea,0x8b,0x5e,0x2c,0x44,0xd3,0x7e,0x5c,0x36,0x62,0x09,0x24,0xeb,0xcb,0x00,0x77, - 0xb3,0x1e,0x6f,0xec,0x8f,0x52,0x9c,0xd2,0xe9,0x88,0x75,0xe8,0x0f,0x5c,0x4d,0x5f,0x40,0x11,0x4b,0x5c, - 0x07,0xec,0x82,0xfc,0xf0,0xb2,0x24,0xb8,0x3b,0xca,0x6e,0x90,0x25,0x6a,0x2e,0x6f,0x69,0x54,0xd9,0x1a, - 0xf9,0xdc,0x00,0x8a,0x28,0x13,0x7c,0xdb,0x1c,0x29,0xfe,0xb0,0xa1,0x0f,0x01,0xb6,0x93,0x22,0x95,0xef, - 0x8b,0xf5,0xd8,0xf4,0x37,0xcb,0xd7,0x40,0x99,0x77,0x0c,0xa9,0x28,0x31,0xf7,0xe1,0x98,0x5c,0xe2,0xe7, - 0x06,0x26,0x33,0xcd,0x04,0x43,0xc8,0x99,0x13,0xd7,0xc6,0x9c,0xf9,0x0d,0x8c,0x6b,0x52,0x3c,0xaf,0x87, - 0x87,0x90,0xcb,0x10,0xcc,0x31,0x58,0x1e,0xe6,0xc4,0xb3,0xd1,0x1f,0x1a,0x43,0x93,0xd0,0x7a,0xcb,0xf7, - 0x39,0xa1,0xf8,0x24,0x95,0xe7,0x66,0xbd,0xee,0x0f,0xc3,0x0e,0x42,0x8f,0x66,0x45,0x4d,0xfd,0x25,0xea, - 0xd5,0x2c,0x8e,0x6d,0xa5,0x0e,0x5a,0x91,0x99,0x1e,0x0f,0x2c,0x7e,0x01,0xb2,0x80,0xa3,0x6b,0xc0,0xc0, - 0x3f,0x2d,0xd4,0x6a,0x09,0xeb,0x42,0x9a,0xc2,0x04,0x4a,0x7f,0x13,0x7f,0x43,0x9b,0xf0,0x12,0xdc,0x44, - 0xc1,0x36,0x52,0x80,0xc2,0x02,0xc6,0x81,0x4a,0x8f,0x16,0xc5,0x15,0x91,0x32,0x7e,0x7c,0x74,0xf6,0x35, - 0x99,0x4d,0xb6,0x53,0x94,0x3f,0x6a,0xc6,0x39,0xf8,0x4c,0xfe,0xd4,0xe6,0xd2,0xb8,0xa9,0x12,0x6e,0x66, - 0x4a,0x27,0x11,0xcd,0x3a,0x6a,0x99,0x4a,0x44,0x02,0x7a,0x48,0xfc,0xbb,0x4e,0x80,0xa8,0xa6,0x44,0xf2, - 0x70,0xba,0xd9,0x21,0x2b,0xbf,0x31,0x5e,0xf8,0xbd,0x35,0xe4,0x6d,0xe3,0xe6,0x02,0xc8,0x16,0x03,0xa1, - 0xa1,0x60,0x00,0x56,0x6a,0x03,0xde,0x59,0x28,0x9d,0x4b,0x30,0x68,0xb6,0x44,0x15,0x94,0xa8,0xa4,0x44, - 0x9e,0x5d,0x95,0x71,0xe5,0xa5,0x13,0x54,0x2a,0x27,0xe8,0xa3,0xb1,0xa4,0x05,0x8b,0x25,0x50,0x12,0x7f, - 0xf3,0x50,0xb8,0xf2,0xa6,0xbf,0xf5,0xe1,0x2c,0xa7,0xaa,0x6c,0x9b,0x56,0x4d,0x31,0x5f,0x0b,0x69,0x0c, - 0x9a,0x7d,0x1f,0x3f,0x11,0x79,0x9c,0x2a,0x46,0x7c,0x02,0x82,0x3e,0xa1,0xf3,0x11,0x0d,0x45,0xc6,0xbd, - 0x32,0x4a,0x26,0x39,0x31,0x6f,0xe9,0x7b,0x23,0x24,0xb3,0x45,0x61,0xf8,0xbf,0xcd,0x2a,0xed,0x9c,0x7e, - 0x3e,0x19,0xff,0xd7,0x3c,0x63,0x42,0xda,0x49,0x24,0xf3,0xe4,0x26,0x1f,0x32,0xfd,0x3b,0x85,0x07,0x94, - 0x6b,0xc1,0x6e,0x0a,0x6d,0x7d,0x3a,0xdd,0x39,0x00,0x22,0xf6,0x9e,0x41,0x18,0xb2,0xd3,0x24,0x6a,0x82, - 0x17,0x79,0x0e,0x64,0x8b,0x80,0xc1,0x89,0x3a,0x47,0xc7,0x9c,0x43,0xa9,0x93,0xe0,0x79,0x48,0x44,0x0b, - 0x9f,0xe1,0x17,0x5e,0xb8,0x9f,0xbd,0x8e,0xb5,0x0c,0x76,0x52,0x3b,0x6a,0xa7,0x26,0x70,0x05,0x4a,0x6a, - 0x13,0xc3,0xaf,0xf7,0x69,0xe8,0x71,0x3f,0x01,0x7c,0xc8,0x87,0x38,0xa7,0x89,0xef,0x67,0x34,0xde,0x6c, - 0xc2,0xad,0xde,0xeb,0xc0,0x3e,0x0a,0xa3,0xf7,0xdc,0xa1,0xd1,0xf2,0xb3,0x43,0xb7,0x2b,0x1e,0xff,0x72, - 0xb9,0x9b,0x3c,0x08,0xf0,0xb8,0x3e,0x3c,0xa0,0xb1,0x45,0xbe,0xc2,0xf7,0xfe,0x40,0xef,0x1f,0x1b,0x16, - 0xe0,0x5e,0x8b,0x74,0xf3,0xb5,0xf5,0x7a,0xb5,0x61,0x3e,0x6a,0x4f,0x58,0x96,0x8f,0x6a,0xcb,0xf9,0xbf, - 0x66,0x61,0x98,0xfd,0xc0,0x8b,0x62,0x9c,0x24,0xc1,0x35,0xfd,0x24,0x58,0x71,0xed,0x11,0x46,0xa6,0xc7, - 0x75,0x56,0x8f,0xee,0x2d,0x73,0x62,0xa6,0xda,0xb1,0x37,0x20,0x72,0x4b,0xc9,0x3e,0x04,0x4f,0xf3,0x25, - 0x55,0xa8,0x67,0x8c,0x0b,0xdc,0xd7,0x15,0x21,0xc4,0xea,0x51,0x61,0xfb,0x55,0x61,0xa7,0xd7,0xd7,0x3c, - 0x3c,0x98,0x40,0x62,0x47,0xc8,0x5a,0xd5,0x4a,0x1a,0x37,0x1d,0xf4,0x12,0x8f,0x1f,0xa8,0x57,0xb5,0x8a, - 0x3a,0x6d,0x6c,0x9d,0x57,0xd5,0x27,0xf8,0xc3,0xff,0x60,0xba,0xec,0x07,0xf1,0x43,0x30,0x88,0x5f,0x4b, - 0xe9,0xda,0x77,0xa2,0x73,0xe7,0x96,0xcd,0x1c,0xf6,0xb2,0xc2,0xc0,0x25,0x52,0xa1,0x6b,0xff,0x27,0x2b, - 0xf5,0x8d,0x8c,0xa9,0x75,0xf8,0x1d,0xf5,0xe1,0xa7,0x8d,0x2e,0xfc,0x14,0x74,0x61,0xfb,0x1d,0xe4,0x59, - 0x2f,0x4b,0xda,0x7f,0x03,0x3e,0x46,0xf0,0x62,0xa7,0x1d,0x6d,0x35,0x34,0x63,0xf3,0x2e,0x4d,0x74,0x84, - 0xcb,0x3f,0x12,0x39,0x33,0xab,0x33,0x23,0x76,0x6a,0xb3,0x65,0x6d,0xdd,0xce,0x93,0xf1,0xd2,0x4a,0x82, - 0x33,0x2f,0x4c,0xd4,0xf4,0xac,0xbd,0x14,0x48,0xb3,0x24,0x4f,0x1f,0xc5,0x41,0x95,0xdf,0x05,0xa7,0x1e, - 0x16,0x8d,0xaa,0x61,0x5b,0x8a,0x9e,0x22,0x49,0x9c,0x11,0x9d,0x80,0xd3,0xcd,0x8b,0x40,0x4b,0x54,0xd2, - 0x11,0xf0,0xb1,0x98,0x62,0x35,0xf8,0x54,0x2b,0xd9,0x27,0x1e,0xaa,0x9a,0x19,0xf8,0x0a,0xf4,0x79,0x5f, - 0x9d,0xd7,0x93,0x79,0x1d,0x27,0xe9,0xaa,0x86,0x81,0xce,0x76,0x3b,0xac,0x9f,0x31,0x9a,0xb4,0x24,0x90, - 0xa3,0x0c,0x29,0xd7,0x4a,0x28,0xd7,0xfc,0x30,0x7e,0x47,0x9a,0x2b,0x00,0xbe,0x4b,0x39,0x52,0xa4,0xba, - 0x43,0x2a,0x18,0x13,0x0b,0x0a,0xe9,0x23,0x18,0x61,0xc7,0x21,0xbf,0xa8,0xab,0xdf,0xe1,0x8e,0x2d,0x36, - 0x55,0xda,0xd0,0xea,0xf6,0x3c,0xd6,0x21,0x3b,0x56,0x30,0x94,0x97,0xb0,0x20,0xa4,0xc3,0xd9,0x1a,0x76, - 0x96,0xf0,0x3e,0xa0,0x77,0xb8,0x8a,0xe4,0x86,0xd6,0xd1,0x1d,0x5a,0x07,0x06,0x3b,0x35,0x9f,0x6c,0x2e, - 0xd2,0x4e,0x9d,0xc5,0x55,0x8f,0x3e,0x4f,0x36,0xbe,0xa9,0xe8,0xab,0x23,0x8e,0xac,0x90,0xd0,0xac,0x1f, - 0xd7,0x09,0xfd,0x1f,0x4d,0xe9,0x28,0xa8,0xc3,0x05,0xfd,0x2d,0xee,0xc6,0xd0,0x32,0x2a,0x3d,0x2f,0xdc, - 0x56,0x20,0x0c,0x4e,0x4b,0x3e,0xae,0xb7,0x37,0x68,0x18,0x27,0xba,0x0e,0x14,0x6f,0x5e,0xb6,0x37,0xf6, - 0xf8,0xa0,0x34,0xa0,0x37,0xa8,0x88,0x80,0x98,0x24,0xac,0xa1,0x75,0x32,0x71,0x6e,0x1a,0xe1,0xb3,0x7c, - 0x8f,0xbf,0x8f,0x8d,0x30,0xc1,0xd9,0xff,0xab,0x46,0xd1,0x81,0xcf,0x8d,0xe5,0x72,0xba,0xd3,0xd4,0x83, - 0x1a,0x98,0x32,0x45,0x44,0xb4,0xc0,0x49,0x0d,0xe4,0xdc,0xc6,0x6c,0x23,0xd7,0xd2,0x91,0x3f,0xa1,0xbf, - 0x0d,0xea,0xc6,0x79,0x28,0xa5,0xb3,0xdf,0xb0,0x2c,0xaa,0x26,0x7e,0x9d,0x8d,0x37,0x1b,0xb5,0x1a,0x11, - 0x35,0x4e,0x4c,0x2d,0xc1,0x31,0xa3,0x10,0x7a,0x82,0x4f,0x1c,0xd1,0x47,0xfc,0x04,0x33,0xf5,0x24,0x49, - 0x1b,0x3a,0x45,0xa6,0x54,0xcb,0x94,0xbb,0xda,0x28,0xae,0x6b,0x9a,0x24,0xbe,0x3f,0x25,0xaf,0x47,0x0e, - 0xf2,0xb4,0x88,0x63,0xd3,0x9b,0x44,0x5a,0x91,0x0e,0xda,0x16,0x82,0x85,0xf9,0x7b,0x6c,0x86,0x18,0xe8, - 0xb5,0x92,0x9b,0x6a,0x58,0x88,0xaa,0xe6,0x32,0x1a,0xa2,0x1d,0xd6,0x75,0x57,0x80,0x04,0x81,0x18,0xe1, - 0x5d,0xc8,0xff,0x46,0xc0,0x80,0x30,0xe1,0xf0,0x6f,0x44,0x25,0x25,0xe6,0x94,0x83,0x3d,0x21,0xad,0xc3, - 0x98,0xa7,0xa7,0xa1,0xd9,0x40,0x8f,0x53,0x2d,0xe3,0x82,0x94,0x81,0x9e,0xd8,0x52,0x66,0x46,0xb3,0xd7, - 0xd0,0x08,0x91,0x2e,0xbb,0x3f,0xa7,0x59,0xc0,0x07,0x53,0x45,0x9f,0xa8,0xc6,0x14,0xc3,0x26,0x66,0x01, - 0x58,0xe3,0x47,0xf5,0x2d,0x73,0x81,0x66,0x64,0xd8,0x31,0x00,0x22,0xa1,0x16,0x40,0xcd,0x78,0xf6,0x1c, - 0xe1,0x51,0x00,0xf6,0xd5,0xed,0xad,0xe1,0x6b,0xf9,0x95,0xce,0x20,0x53,0xb8,0xe8,0x17,0x2e,0xba,0x85, - 0x0b,0x14,0x5e,0x6f,0x1e,0x58,0x3f,0x87,0xce,0x16,0xcc,0x7f,0xc3,0xf4,0x07,0x72,0x48,0x6c,0x6c,0x63, - 0x62,0x6f,0x45,0x96,0xfe,0xb3,0x7f,0x85,0xcc,0x5a,0x0c,0xa6,0x5c,0x37,0xaf,0x59,0x29,0x7c,0x7b,0xfb, - 0x2d,0x02,0xb9,0xc8,0x0b,0x74,0x92,0xed,0xe1,0x07,0x56,0x8b,0xba,0x73,0xfd,0x63,0x7e,0x26,0xd1,0x00, - 0xb2,0xd6,0x52,0x3f,0xb4,0x0d,0xe0,0x41,0x60,0x89,0x61,0x50,0x1d,0x41,0x63,0xff,0xec,0x84,0x79,0x71, - 0xbd,0x01,0xad,0x10,0x0a,0x67,0xfd,0x07,0xff,0x30,0x76,0x0b,0x7d,0xe1,0x42,0xf2,0x19,0x01,0xbf,0xe5, - 0x52,0x40,0xab,0xf2,0x4a,0xd4,0xec,0x16,0x01,0xf1,0x69,0x4f,0x9a,0x4c,0x9b,0xe6,0x9f,0x94,0xeb,0x26, - 0xbc,0x0e,0x28,0xd1,0xb6,0xb5,0x07,0x57,0x39,0xb9,0xc6,0xf1,0x4e,0x70,0x27,0xf2,0x20,0x79,0xeb,0xe9, - 0xe8,0x74,0x2b,0xf3,0xc8,0x99,0xa7,0xa7,0xbd,0xdc,0xd2,0x55,0x76,0x4d,0x1d,0x53,0xbc,0xd3,0xc5,0xdc, - 0x8a,0x92,0x69,0xce,0x28,0x55,0x68,0xbe,0x40,0x6b,0xdd,0x86,0x7c,0x98,0x70,0x5a,0xdb,0xad,0x57,0x58, - 0x78,0x0c,0xd4,0x09,0x69,0x66,0x85,0x68,0x46,0x1e,0xc9,0x9c,0x6d,0x9e,0x55,0xbc,0x31,0x50,0x05,0x4b, - 0x11,0xf3,0xb6,0xad,0x1b,0xf7,0x40,0x08,0xac,0x6a,0x9d,0x1f,0x71,0x98,0xa8,0x2a,0x2b,0x3f,0x17,0x7b, - 0xbc,0xca,0xcb,0xb6,0xb7,0x59,0x51,0x01,0xe9,0xa5,0xe8,0x8c,0x73,0xfe,0x20,0x89,0x4b,0x0b,0x08,0x6c, - 0xce,0x61,0x43,0xd0,0x1d,0x1e,0x11,0x5a,0xe0,0x1d,0x55,0x05,0x32,0xa0,0xc6,0x7c,0xc5,0xe8,0xac,0x81, - 0xa6,0x12,0x3f,0x28,0x3c,0x8e,0x5a,0xbd,0x58,0xce,0x89,0xc9,0x02,0xdc,0x55,0x10,0xf5,0x4f,0xa6,0x5c, - 0x81,0x41,0x13,0x53,0x74,0xcd,0x88,0xb4,0x6f,0x6f,0xe9,0x8b,0x74,0x6a,0xeb,0x5f,0xbb,0xd8,0x47,0x2b, - 0xc1,0x51,0xe5,0xe1,0xea,0xc8,0xe8,0x96,0x8a,0xd6,0x3b,0x4c,0x23,0xd9,0x47,0x16,0xf1,0x9a,0xfc,0xf6, - 0x2e,0x18,0xdd,0xee,0x02,0x29,0x11,0x31,0x5b,0xbc,0x2b,0x78,0x8f,0x05,0x8a,0xfd,0x36,0x50,0x68,0x1a, - 0x5e,0xed,0x0e,0x48,0xed,0x41,0x35,0x28,0xd3,0x09,0x3e,0x17,0xe5,0x54,0x4a,0xbc,0x0f,0x3d,0xe1,0x20, - 0x64,0x4d,0xe7,0x11,0xcd,0xfe,0x80,0xc6,0x91,0xd5,0xea,0x2c,0x5c,0x1d,0xb7,0x66,0x2f,0x1a,0xea,0x34, - 0x19,0x27,0xac,0xa5,0x3e,0x2e,0xca,0x9c,0xb9,0xdf,0xcf,0xd1,0xbb,0x4d,0xeb,0x68,0x6d,0xab,0xdd,0x3e, - 0x16,0xb6,0xf9,0xa5,0xf9,0x9a,0xe8,0x2d,0xc5,0x8d,0x59,0xaa,0xd4,0x32,0xee,0x1b,0x25,0x2d,0x0d,0xd0, - 0x6d,0xdd,0x1b,0x78,0x04,0x3d,0xba,0x09,0x5e,0x40,0xd0,0xf5,0x67,0xeb,0x9e,0x5d,0xe5,0x70,0xde,0x58, - 0xf5,0xe4,0x72,0x58,0x13,0x0b,0xc7,0x24,0x15,0x71,0x3d,0x04,0x35,0xb3,0x28,0x14,0x0b,0x4e,0xdb,0xae, - 0x48,0xc3,0x92,0xea,0x86,0xc5,0x0d,0xc4,0x01,0xbc,0x97,0xca,0xfe,0x5e,0x02,0xcd,0x57,0xba,0xa8,0x99, - 0x2e,0xfa,0x44,0x09,0xb2,0xaf,0x04,0x89,0xbc,0x1b,0x59,0x1a,0x9c,0x46,0x43,0x64,0xd0,0x77,0xf4,0xc2, - 0x8e,0x97,0xcc,0x02,0xea,0x05,0x4c,0x15,0x50,0x20,0x8d,0x76,0x43,0xac,0xb0,0x42,0xe0,0xaf,0xc7,0xa0, - 0x09,0x85,0x8e,0x55,0x9a,0x87,0x7f,0x05,0x7b,0xa4,0x3a,0x34,0x92,0x0a,0xcd,0x7d,0x89,0xdc,0xda,0xd3, - 0xf4,0x87,0x68,0xca,0x0f,0x88,0x49,0xf5,0xa1,0x7e,0x74,0xe5,0x68,0x8e,0x0f,0xe8,0x2e,0x74,0x8c,0xd9, - 0x55,0x7d,0xf8,0xa1,0x3e,0x4a,0xa8,0xa0,0xfa,0x54,0xb3,0xd8,0x96,0xe9,0x8f,0x51,0xbd,0x2a,0x63,0x6b, - 0x8c,0x75,0xaf,0x76,0xb4,0x4b,0x9d,0x5d,0xb9,0x17,0xaa,0x25,0x73,0x55,0xa2,0x90,0xa5,0xa7,0xa9,0x26, - 0xe8,0xc5,0x9f,0xd6,0x19,0x3a,0x7d,0xd0,0x91,0xb4,0xfc,0x01,0xa9,0x1d,0x2e,0xf2,0xbe,0xc2,0xfa,0x41, - 0x98,0xbb,0x8d,0x68,0xa1,0x65,0x72,0x47,0x45,0xbe,0x12,0x50,0x7e,0x76,0xf5,0xf0,0x1d,0xa8,0xae,0x8b, - 0xc5,0xb8,0x1e,0x1d,0x5f,0x62,0x25,0x74,0x4d,0x40,0x55,0x42,0x9e,0x7d,0x5c,0xd0,0xd9,0xb5,0x22,0x04, - 0x35,0xdb,0xd9,0xa1,0x55,0x27,0x4e,0x49,0x44,0x35,0x0c,0x0f,0x84,0xe9,0xd5,0xdf,0xa9,0xd8,0xaf,0xc0, - 0x4b,0x17,0x6d,0x55,0xc1,0x5b,0xf8,0xef,0xc4,0xfa,0xf0,0xfa,0x9c,0xce,0x09,0x7d,0x44,0xc1,0xea,0xcc, - 0x1d,0xce,0xfe,0xb5,0x86,0x0a,0x66,0xd3,0x9e,0x8f,0xad,0xc8,0xa8,0x3f,0x04,0x80,0x6b,0x45,0x85,0x1a, - 0xbd,0x69,0x37,0x2d,0xd9,0x88,0xf2,0x77,0x97,0xae,0xa6,0xa4,0x4f,0x83,0x66,0x4f,0x5d,0xb3,0x02,0x91, - 0xac,0xd4,0x1a,0x92,0x4a,0x95,0x93,0xd8,0x74,0xac,0x9e,0x2c,0x59,0xb2,0x5a,0xda,0x4e,0x9c,0x25,0xa9, - 0xcd,0x2b,0xf1,0x77,0x52,0x83,0x02,0x40,0x40,0x3b,0x02,0x61,0x9a,0x2f,0x5b,0x1e,0x79,0xe9,0x99,0xfd, - 0xaa,0xc4,0xdf,0x09,0xff,0x4d,0xcf,0x92,0x3b,0xfb,0xab,0xbb,0xfd,0x5d,0x86,0xf8,0x72,0x43,0xa5,0xc4, - 0x76,0x76,0xc7,0x38,0x77,0x57,0xb4,0x0a,0x3f,0xc9,0x6a,0x21,0x9a,0xdf,0x60,0xba,0x11,0xed,0x38,0xa6, - 0x87,0x05,0x77,0xed,0x35,0x6c,0x72,0x35,0x34,0x13,0x90,0xfe,0x26,0x2a,0xd0,0x48,0x69,0xaf,0x0b,0xd2, - 0xa2,0xbb,0x08,0x2d,0x5c,0x5a,0x2f,0x4c,0x72,0xa1,0x7b,0xa0,0x24,0x82,0xd4,0x55,0x21,0xe2,0x94,0x31, - 0x3f,0x4f,0xd4,0xa6,0x1c,0x8c,0x35,0x81,0x8c,0x91,0x69,0xd3,0xdc,0xbb,0x14,0x5f,0x70,0x11,0x0f,0x7b, - 0xcb,0x15,0x8f,0x32,0xdb,0x3f,0x36,0x5a,0xfa,0xb6,0x9c,0xbc,0xd7,0xa7,0x73,0xe4,0x54,0x97,0xe5,0xf7, - 0x62,0x22,0x31,0x3a,0x2d,0xe6,0xad,0xae,0x87,0x0c,0x9c,0xff,0x8c,0x06,0x71,0xe4,0xb5,0x7c,0xeb,0x24, - 0xed,0x59,0x5f,0x0c,0xf0,0x23,0x37,0x5e,0x12,0x01,0x02,0x96,0x28,0x03,0x44,0x26,0x1d,0x41,0x80,0x0a, - 0x69,0xe4,0xb8,0x19,0xf3,0x68,0x1a,0x16,0x35,0x5d,0x14,0x33,0xec,0x23,0xa6,0xf4,0x83,0x14,0x22,0x88, - 0xe8,0x9b,0x2c,0x48,0x81,0x70,0xf6,0x84,0x06,0xfb,0x69,0x4d,0x6c,0x82,0x3d,0x7c,0xc0,0xf7,0x6d,0xc3, - 0xf6,0xd0,0x4a,0xca,0x20,0xad,0xa4,0x0f,0x05,0x32,0xa6,0xd2,0xb0,0x15,0x99,0x71,0x8d,0x03,0x30,0xee, - 0x14,0x71,0x04,0xad,0xd3,0xb5,0xb3,0x27,0x0a,0x16,0xf9,0xa2,0x15,0x1b,0x15,0xc7,0xe2,0x82,0x67,0xda, - 0x94,0x4a,0x43,0xc0,0x37,0x10,0x5a,0xc8,0x88,0xe0,0x9d,0x96,0xdb,0x59,0x74,0xa9,0x8a,0xd0,0x5d,0xee, - 0x51,0x50,0xf5,0x28,0x67,0x71,0x4d,0x8d,0x8e,0xd2,0xe6,0xe6,0x78,0xae,0x5e,0xfa,0xbe,0x69,0x43,0xb8, - 0x59,0x35,0xd7,0x49,0x15,0xb5,0x61,0x45,0xd5,0xee,0x41,0x58,0x4f,0x61,0x49,0xdb,0x0d,0x53,0x9a,0xb0, - 0xaa,0xa6,0xd7,0xcb,0xa6,0xdf,0xcb,0x69,0xd6,0xa0,0x83,0xae,0xb3,0x53,0xe2,0x18,0x95,0x97,0xc5,0x1a, - 0x8a,0x98,0xd1,0xe5,0x8f,0x88,0x0d,0xc0,0x01,0x12,0x02,0xe5,0xfd,0x22,0xd8,0x39,0x2c,0xdf,0xa2,0x86, - 0x78,0xc7,0xde,0x6b,0x60,0xa9,0x30,0xfb,0x40,0x44,0x9b,0xdd,0xac,0x15,0x62,0xb7,0x31,0x2d,0x5b,0xf3, - 0x9e,0xb9,0x88,0x2f,0x62,0xbc,0x24,0x2c,0xf7,0x2e,0x32,0x6c,0xb9,0xdb,0x5b,0x1d,0x3a,0x39,0x9b,0xaa, - 0x6c,0x25,0x39,0x94,0x1b,0xa3,0x63,0x02,0x9a,0x99,0xae,0x99,0xbb,0xc2,0x77,0x44,0x59,0x6a,0x1b,0x2d, - 0x17,0x3a,0x3f,0x14,0x77,0xf6,0x43,0x13,0xa9,0xa2,0xe7,0xfc,0xe7,0x68,0x46,0x75,0x83,0xd2,0x29,0xe2, - 0x82,0x76,0xb4,0x42,0x67,0x21,0xae,0x7a,0x21,0x66,0xc1,0x96,0x18,0x50,0x91,0x6c,0x45,0x84,0x46,0xa0, - 0x0e,0x3f,0x0e,0x48,0xc2,0xeb,0xfe,0x74,0x64,0x74,0x84,0xd0,0xc2,0xc0,0x7e,0x07,0x08,0x9e,0x08,0x1b, - 0x67,0xd6,0x38,0xe9,0xc2,0x5d,0x91,0x4c,0xd8,0xbb,0xd9,0x7b,0xbf,0x12,0x43,0x54,0x40,0xb2,0x9b,0xd6, - 0x93,0x4f,0x25,0x2d,0x04,0x08,0xe9,0xb4,0x4f,0xfc,0x1f,0xbb,0x16,0x0d,0x3b,0x59,0x82,0xc3,0x06,0x47, - 0xb9,0xa9,0xf2,0xa6,0x39,0x5f,0x20,0x6b,0x6c,0x44,0x06,0xfe,0x08,0x2a,0x44,0xc6,0x3f,0x9d,0x13,0x6f, - 0xcf,0xae,0x99,0xbc,0x07,0xae,0x85,0x99,0xa3,0x97,0x6b,0x14,0x49,0x68,0x3d,0x42,0x92,0xbc,0xb5,0xdc, - 0x81,0x79,0x60,0x21,0xf2,0x38,0x87,0x5e,0x9c,0x46,0x0d,0x63,0xf0,0x1f,0x1a,0x3e,0x0e,0x62,0x48,0x12, - 0x0a,0x44,0x21,0x9b,0x55,0x0b,0x24,0x34,0x10,0x41,0xb8,0x17,0x30,0xe0,0xa9,0xa9,0x83,0x33,0xf8,0x09, - 0xa9,0xeb,0x02,0x18,0x25,0x87,0xc4,0x1d,0x4c,0xb4,0x70,0xb4,0x15,0x04,0x18,0x31,0x82,0x52,0x70,0xe1, - 0xaa,0x64,0x06,0xfe,0xd0,0x9c,0xdf,0x44,0x38,0x15,0x47,0x9d,0xb3,0x15,0x5f,0xb1,0xe8,0xcb,0x51,0x8c, - 0x53,0xa1,0xf6,0x1b,0xe2,0xf2,0x7d,0x50,0x30,0x6f,0xcd,0xd5,0xa5,0x01,0xf9,0xf8,0x69,0xd8,0xc2,0xe7, - 0x63,0xad,0x35,0xf7,0xb0,0x9f,0x06,0x46,0x04,0xfb,0x0e,0x30,0x6a,0x19,0x44,0x3a,0x47,0x75,0x6f,0x89, - 0xeb,0x64,0xf2,0x98,0xfe,0xa4,0x4f,0xf1,0x27,0xbe,0x6a,0x63,0xf9,0x24,0xeb,0x40,0xd7,0x48,0xea,0x7d, - 0xcf,0x30,0xfe,0xa2,0x04,0xdc,0x7b,0x3d,0xaa,0x85,0xfd,0x77,0x70,0x07,0x17,0xf1,0x2a,0x6b,0x56,0x61, - 0x0f,0x23,0xdf,0x1d,0x1f,0x47,0xbb,0xad,0xda,0x3e,0x48,0x3a,0xe7,0xcf,0xa5,0x23,0x15,0x4c,0xf7,0xae, - 0x5a,0x63,0x44,0x43,0xbc,0x2a,0x3e,0xd1,0xbb,0x71,0x39,0x89,0x8e,0xe1,0x25,0x1d,0x45,0x12,0x80,0x28, - 0x98,0x92,0xab,0x36,0x10,0xcd,0xde,0xc9,0x60,0x4b,0xdc,0x53,0xcf,0x5f,0x32,0x41,0xc7,0xa1,0x68,0x0d, - 0x3a,0xf5,0x8e,0x04,0x9c,0x7c,0xaf,0x35,0xea,0xd4,0x5d,0x34,0x5c,0x3b,0xf1,0xde,0x3d,0xdb,0x5a,0x60, - 0x72,0xe6,0x3a,0xe0,0xed,0xad,0xc4,0xa0,0x0e,0x26,0x57,0x5a,0x21,0xf5,0x2d,0x0d,0x25,0x0b,0xf6,0xe2, - 0xa7,0x80,0x4d,0x81,0x22,0x5e,0x27,0x9e,0xae,0xaf,0xe4,0xcf,0x84,0x11,0x10,0x9e,0x92,0x34,0xe0,0xbf, - 0x6a,0x91,0xa0,0x05,0xba,0x3e,0x42,0x9d,0x90,0x40,0x8e,0x59,0xb7,0x57,0x4c,0x0e,0x8f,0xac,0x96,0xba, - 0x30,0xfe,0xe4,0x9b,0x60,0xf4,0xb4,0x15,0xbf,0xb2,0xe3,0x2a,0xbb,0x84,0x91,0xd9,0x71,0xc9,0x21,0xd7, - 0x8f,0x21,0x1f,0xa3,0x9f,0x79,0x76,0xc1,0xa9,0x6d,0xb6,0xe0,0xdf,0xdf,0xb2,0x6b,0xfc,0x14,0xd9,0x31, - 0x7e,0x16,0xd9,0x09,0xa7,0x9e,0x66,0x67,0xfc,0xfb,0x29,0xbb,0xe6,0xdf,0x93,0xec,0x98,0x7f,0x2f,0xb2, - 0x4f,0xf8,0xa1,0xf1,0x22,0xe2,0xc6,0xf1,0x2a,0xab,0x38,0xf9,0x2c,0xfb,0x14,0xf4,0xe0,0xb1,0x4c,0x5a, - 0x28,0x26,0x24,0x06,0xd9,0x80,0x99,0x38,0x64,0xb0,0xa7,0x92,0x89,0x94,0x2a,0x1a,0x5e,0x2d,0x2f,0xce, - 0x22,0xac,0x36,0x99,0x7c,0x52,0x67,0x26,0x26,0xe9,0xdc,0x44,0x89,0x69,0x32,0xd9,0x86,0x17,0xa5,0x0d, - 0xf8,0x89,0x93,0x88,0x8d,0xd8,0x88,0xe2,0xc9,0xcd,0x3b,0x6d,0x7d,0xc9,0x66,0x3c,0x3e,0x40,0x1c,0xd7, - 0x2d,0x5b,0x22,0xac,0xbb,0xa6,0xa1,0x86,0x28,0x2a,0xc4,0x95,0x2e,0x17,0x1a,0x10,0x71,0x57,0xe0,0x53, - 0xb7,0x3d,0x1d,0x4f,0xad,0x73,0xa1,0xdd,0x39,0x59,0xae,0x82,0xf3,0x22,0xf3,0x4d,0xc6,0x89,0xda,0x38, - 0x93,0x60,0x19,0xee,0xdf,0x30,0x04,0x44,0xa5,0x38,0x6e,0xc4,0xbe,0x6e,0x62,0xa8,0xce,0x8d,0x70,0x28, - 0x56,0x5a,0xf2,0xb6,0x45,0xf4,0x7e,0x83,0x78,0x57,0xee,0xbc,0xac,0xd8,0xf4,0xc9,0x9b,0xec,0xf9,0x1a, - 0x55,0x20,0x11,0xc9,0x68,0x4c,0xd5,0x3a,0xbd,0xbb,0x0d,0x4b,0xd7,0x75,0x1b,0x09,0x68,0x99,0x0f,0xed, - 0x1d,0x56,0xcb,0xac,0x6b,0x15,0xcb,0xe5,0xc0,0xfa,0x0c,0xf3,0x6b,0x08,0x1e,0xd1,0xae,0xb4,0xb1,0xb5, - 0xaa,0x5b,0x51,0x1f,0x1d,0xea,0x39,0x86,0xa3,0x21,0x2b,0xa2,0xcc,0xb9,0x9f,0xad,0xac,0x74,0x8e,0xca, - 0x0f,0x59,0x79,0x98,0x09,0x99,0x33,0x03,0x0f,0xb9,0x59,0x31,0xc3,0x87,0x73,0x82,0x1b,0xa7,0xbc,0x8c, - 0x83,0x38,0x59,0xb5,0x38,0x35,0xe3,0x9c,0xa2,0xd2,0xac,0xaf,0x61,0xf1,0xa3,0x79,0x86,0x87,0xae,0x97, - 0xb1,0xf9,0x34,0x23,0x9d,0xb3,0x71,0x6b,0x67,0x41,0x19,0x9b,0x34,0x36,0x75,0x22,0x4e,0x11,0x21,0x1b, - 0x53,0xab,0x79,0xeb,0xd5,0x1b,0xa4,0xb2,0xb0,0x4c,0x24,0x7e,0xbc,0x36,0x4d,0x62,0x35,0x17,0x3e,0x29, - 0x13,0x41,0x3a,0xe1,0x9b,0x55,0x08,0xbd,0x76,0xf2,0x5b,0x22,0xad,0xb4,0x27,0xad,0xda,0x47,0x7a,0xdc, - 0x42,0xf4,0x00,0xcc,0x7d,0x8f,0x0a,0x4d,0xf5,0x0f,0x7c,0x34,0xc5,0xc9,0x5a,0xcd,0xb3,0x93,0x8e,0x52, - 0xc6,0xf7,0x3f,0x83,0x78,0xb5,0x22,0x60,0xbf,0xbd,0x5d,0xc5,0xec,0xb2,0xd3,0x2b,0xda,0x9d,0x24,0xa6, - 0xca,0x24,0x08,0x19,0xfa,0x15,0x73,0xec,0x94,0x65,0x56,0xc7,0x73,0x75,0xea,0x5d,0x27,0x62,0x2e,0x38, - 0xb0,0x6e,0x4b,0xf6,0x96,0x9c,0xb4,0xe1,0x9c,0xee,0xec,0x48,0x2a,0x57,0x91,0xea,0x78,0xe9,0xa5,0xa0, - 0xc9,0x60,0x34,0xe7,0xa0,0x00,0x7f,0x88,0x20,0x60,0xbd,0x24,0xae,0x4b,0xa1,0x2e,0xbb,0xd6,0xe1,0x28, - 0x68,0xcc,0x26,0x03,0x76,0x01,0x5c,0xcc,0x2f,0x5f,0x77,0xf5,0xb8,0xa8,0x79,0xc7,0x34,0x01,0xb0,0x60, - 0xdf,0x37,0xcf,0xaf,0x27,0xae,0x20,0x4d,0x45,0x4a,0x3c,0xe9,0x47,0x09,0x9c,0x16,0x6a,0xe4,0x7a,0x03, - 0x6d,0x03,0xe0,0x8b,0xc3,0xcf,0x65,0x26,0x95,0xa9,0xf9,0xf6,0xf6,0xe1,0xfe,0xbe,0xe9,0x98,0x89,0xc6, - 0x06,0xc7,0xf7,0x3f,0xd3,0x82,0x5c,0x41,0xc1,0x55,0xd9,0x2f,0x13,0x60,0xb2,0xed,0x03,0xe5,0xda,0x9b, - 0x74,0x46,0x98,0xfa,0xef,0xd7,0x1e,0xf6,0xac,0x76,0x61,0x4d,0x33,0xb9,0xa2,0xad,0xe3,0x45,0xd0,0x7d, - 0xb4,0x11,0x98,0x96,0xd6,0xb1,0xc7,0x48,0x1d,0x49,0x64,0x06,0x41,0x2d,0x27,0xbc,0xd6,0x84,0xf9,0x25, - 0x32,0x9f,0x56,0xa6,0x31,0x04,0xc0,0x33,0x78,0x3f,0x25,0xbc,0x9f,0x9f,0x11,0x45,0x4c,0x88,0x8a,0x5a, - 0xb6,0xc8,0x63,0x5c,0x65,0x15,0x53,0xf0,0xbf,0x02,0x83,0xd0,0xbc,0x54,0xa3,0x05,0x91,0xb6,0xf3,0xc0, - 0x82,0x33,0x60,0xb2,0x10,0x98,0x1a,0xb9,0xa0,0x10,0xf9,0x81,0xcf,0x18,0x22,0x2d,0x99,0xff,0x8e,0x58, - 0x18,0xdd,0x2b,0xa0,0x21,0x0b,0xa3,0x12,0x45,0x09,0x37,0xe1,0x71,0x5c,0xca,0xb1,0xc4,0x22,0xe2,0xa5, - 0x25,0x16,0x13,0xd6,0x76,0x98,0x2f,0xb8,0x2e,0x63,0x69,0x52,0x8e,0x8c,0x73,0xa0,0x10,0x85,0x63,0xea, - 0x1f,0x11,0x7f,0xc9,0x04,0x7f,0xb3,0x43,0xfb,0x05,0xa8,0xa9,0x93,0x7c,0xfa,0xc9,0x1d,0xe2,0x5c,0x28, - 0xe5,0x42,0xfd,0x32,0x6b,0x5a,0x55,0x4b,0xf6,0x57,0x42,0x38,0x9f,0x7a,0x1c,0xd0,0x89,0xc0,0xe5,0x0a, - 0x7a,0xdb,0x2e,0xc2,0xb3,0xb9,0xc3,0x27,0x34,0x6b,0x74,0x90,0x09,0x71,0x0b,0xaf,0x70,0x5f,0x4c,0xc7, - 0x30,0xc3,0xd1,0xf1,0xca,0xd3,0x52,0x73,0x26,0x7c,0x6d,0x70,0x4f,0x22,0xff,0xe7,0xc9,0xf8,0x5b,0x3a, - 0x0d,0x56,0x8a,0x36,0x14,0xc8,0xb3,0xdb,0x5b,0xbc,0x4e,0xe5,0xf5,0xc0,0xd1,0xb1,0xcd,0x7a,0x0d,0xc1, - 0xb9,0xc1,0x85,0xb6,0x43,0xb6,0xc3,0xf9,0x7c,0x08,0x7a,0xba,0x9a,0x44,0x1c,0xe9,0x66,0xc0,0xa6,0xcf, - 0x79,0xb7,0xa7,0x49,0x47,0x68,0x3e,0x25,0x3c,0xb7,0x3a,0xca,0xde,0xc4,0x2b,0xea,0x0c,0x93,0x02,0x86, - 0x8a,0x03,0xba,0xe2,0xb1,0x26,0x70,0x4a,0x89,0x61,0xca,0x2e,0xaf,0x0a,0x39,0x5c,0xa3,0xcf,0x91,0x57, - 0x9e,0xde,0xb9,0xb0,0xaf,0x38,0xb2,0x68,0xca,0xd9,0x04,0x85,0x50,0x61,0x3e,0x12,0xc2,0x37,0x30,0x38, - 0x98,0xd3,0xd9,0xa9,0x02,0xa7,0xa6,0x0d,0x9d,0xdf,0x69,0x78,0xe2,0xaa,0xd3,0xc0,0xc2,0x3e,0x87,0x23, - 0x27,0xab,0x32,0x62,0x2a,0x85,0x4d,0x40,0x50,0x23,0x0f,0x0c,0x5f,0x9c,0x99,0x49,0x19,0xda,0xb5,0xa7, - 0xb0,0x85,0x39,0x95,0x4d,0x20,0x9d,0x5c,0x82,0x90,0x62,0xa9,0x35,0x7e,0xe9,0x45,0x3c,0x1e,0xde,0x96, - 0x2a,0x9c,0xf6,0x1c,0x01,0x8e,0x68,0xe3,0x19,0x10,0x98,0x51,0x39,0xe6,0x4d,0x2b,0xcc,0xeb,0x8c,0x49, - 0x05,0x6e,0x68,0x96,0xac,0xb7,0x3b,0xd2,0x40,0xab,0xa5,0x6c,0x9d,0x82,0xb2,0x67,0xa0,0xf0,0xae,0x0e, - 0xc5,0xa6,0x86,0xac,0x7d,0x57,0x8b,0xc4,0x53,0xbe,0x82,0x66,0xa0,0xc8,0x9e,0xc3,0xf9,0x69,0xec,0x52, - 0xb2,0x7a,0x12,0xa2,0x8d,0x4d,0x69,0x9c,0x83,0x85,0xd6,0x3d,0xc2,0xb3,0xd6,0x3c,0x12,0x70,0x15,0x44, - 0x9f,0x10,0x5a,0x60,0x28,0x43,0xb3,0xe7,0x01,0xdc,0x4b,0xfc,0xd4,0xa9,0x53,0x95,0x88,0xfb,0x45,0x74, - 0xb1,0xd2,0x7b,0xee,0x54,0xd8,0x23,0x4a,0x1f,0x54,0xc2,0x6e,0x7c,0x3e,0x89,0xe8,0xe5,0x9c,0xf9,0x8d, - 0x4a,0x0d,0xba,0x7d,0xe4,0xea,0xe6,0x29,0xa1,0x2d,0x42,0x46,0xce,0xea,0x29,0x3d,0x55,0x8e,0xfa,0x4c, - 0x97,0x8c,0xa4,0xa6,0x1e,0x6b,0x11,0x1f,0x3f,0x87,0xcf,0xab,0xb7,0xb4,0x06,0x89,0x6e,0xb0,0x17,0x91, - 0x50,0x56,0x79,0xd9,0xe5,0x61,0x72,0x36,0x82,0xcb,0x61,0xd6,0x10,0x4f,0x33,0xc0,0x7d,0x4e,0x04,0xbf, - 0xf4,0x21,0xa1,0x15,0x5d,0x49,0xc6,0xb3,0x3a,0x90,0x3f,0x17,0x1d,0x82,0x0a,0x51,0x90,0x41,0x70,0xe4, - 0xd6,0xfa,0xc1,0x69,0xdf,0x80,0x8a,0x3b,0x05,0x0a,0xd6,0xb7,0x23,0xca,0x19,0xf8,0x36,0xe2,0x66,0xc3, - 0x92,0xdd,0x7e,0x35,0xc3,0xc7,0x2e,0x2e,0x0e,0x00,0xe4,0xe6,0x90,0x7c,0x10,0x6c,0x84,0x84,0x2c,0xa1, - 0x74,0x11,0x94,0xa5,0x72,0xbd,0x80,0xf3,0x9f,0xc2,0x9d,0x51,0x74,0x64,0x3e,0xab,0x27,0x44,0xd9,0xc4, - 0xab,0xac,0x49,0x26,0x87,0x9f,0x68,0x64,0x47,0x3d,0x2b,0xdb,0x95,0x8f,0x67,0x45,0xe4,0x83,0x8f,0x40, - 0x83,0xe9,0x03,0xb2,0x41,0x24,0x1a,0x11,0x3b,0xc1,0x16,0xba,0x0a,0x6d,0xa1,0x5b,0x9a,0xa3,0xea,0xb0, - 0x39,0x4a,0x86,0x3c,0x60,0x89,0xac,0x21,0xaa,0xf0,0xf4,0x90,0x28,0x28,0x17,0x4d,0xe4,0xa8,0x67,0x96, - 0x3f,0x4d,0x26,0xd6,0xc9,0xeb,0x9b,0x7d,0x1a,0xe1,0xcf,0x31,0xd5,0x58,0xc4,0x53,0x05,0xbb,0x13,0xf6, - 0xc8,0x27,0x3e,0x91,0x08,0x34,0x1a,0x19,0xcd,0xcc,0xcf,0x31,0x47,0xc9,0x38,0x05,0xfa,0xf9,0x14,0xcf, - 0x59,0xb7,0xb6,0x3b,0xa5,0x3c,0xd1,0x64,0xe3,0xe6,0x2b,0x73,0x2b,0x00,0xed,0xfd,0x40,0x21,0x78,0x4a, - 0x6b,0x96,0xa4,0x30,0x7a,0x9c,0xa0,0x8a,0x49,0xaf,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0xfe,0x04, - 0x9c,0x97,0xfe,0x4c,0x7f,0xa5,0xcd,0xfe,0x07,0xd2,0x5c,0x4a,0x08,0xb7,0x72,0x62,0x32,0x5e,0xeb,0x29, - 0x94,0x91,0x4c,0x6c,0x4c,0xc1,0xa6,0xca,0xfa,0x33,0x28,0x31,0xd7,0x4a,0xdc,0xf7,0x05,0x40,0x39,0xda, - 0xcd,0x65,0x60,0xf4,0xf7,0x38,0xb2,0x9d,0x45,0xa3,0x1e,0xb7,0xad,0x69,0x5d,0x8c,0xe8,0x27,0xc5,0x32, - 0xbe,0xac,0xd9,0x66,0xe3,0x4f,0xaa,0x55,0x36,0x99,0x76,0x42,0x14,0x0e,0x44,0x25,0x2b,0x0c,0xdd,0x84, - 0x43,0xd1,0x4c,0xd6,0xe1,0x91,0x6a,0x03,0x7b,0x75,0x98,0x87,0xf0,0xb6,0x67,0x58,0x18,0x0f,0xd9,0x85, - 0x9a,0x73,0x64,0x39,0x3e,0xcd,0x8a,0xd1,0xbd,0x8b,0x92,0x8e,0x53,0x04,0xc0,0x92,0xa7,0x51,0xd9,0xb0, - 0x70,0xe8,0x8c,0x48,0xa8,0xfc,0x0c,0x31,0x62,0x9b,0x25,0x82,0x2b,0x10,0x96,0x99,0x43,0x54,0x56,0x34, - 0xef,0x75,0xa3,0x6b,0x22,0x81,0x28,0x9b,0x52,0x27,0x06,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9b,0xe7,0x2d, - 0x82,0x65,0x98,0x8f,0xf1,0x1d,0x36,0x61,0x17,0x6b,0x14,0x4c,0xbc,0x66,0x2f,0xe2,0x22,0x10,0xd9,0x39, - 0x04,0xd4,0x44,0xa0,0x35,0x27,0xc4,0x13,0x2d,0xe9,0xdb,0x02,0x87,0x4c,0x92,0x9a,0x66,0xaa,0xc1,0xda, - 0x44,0x7b,0x39,0xcf,0xe8,0x93,0x4a,0x3e,0x09,0xe4,0xa3,0x04,0x0f,0xf1,0x69,0xe0,0xbf,0x52,0xc7,0x85, - 0x63,0x71,0x0a,0x38,0x8c,0x55,0xc4,0x36,0x55,0xb5,0x2e,0xce,0xca,0xb7,0xd6,0x4d,0x9a,0x26,0x86,0x20, - 0x83,0xb1,0x80,0x45,0x74,0x2c,0xca,0x24,0x66,0xd7,0x31,0xde,0x81,0x89,0x36,0xc7,0xb9,0xf2,0x39,0x6e, - 0xcb,0x3d,0x9a,0xf2,0xb6,0x33,0x6c,0x9c,0x2f,0x40,0x5b,0x90,0x28,0x9f,0x95,0x81,0x3e,0x62,0xcb,0x56, - 0x23,0x36,0x60,0x28,0x05,0xc5,0xd1,0xee,0xe7,0x1e,0xae,0xd7,0x42,0x9c,0xcf,0x69,0xf8,0xb0,0x87,0x0a, - 0x50,0x5a,0xe0,0xb4,0x11,0x06,0xb2,0x73,0xb2,0x03,0xd6,0xd6,0x36,0xab,0xa5,0xae,0xed,0xd9,0x83,0x72, - 0x26,0x85,0x89,0x0f,0xb6,0x48,0xe5,0x77,0x6b,0x40,0x71,0xd3,0x7d,0xcf,0xac,0xdf,0x49,0xdf,0x08,0x1b, - 0x11,0xde,0x3c,0x09,0x82,0xd3,0x4c,0x38,0x50,0xeb,0x11,0x07,0xa2,0xb1,0xd1,0xf9,0x5c,0xdb,0x14,0x77, - 0x34,0x56,0x56,0x89,0x5f,0x1d,0x6d,0x8b,0x89,0x24,0x8c,0x39,0xd8,0xf7,0x12,0x01,0x6a,0x34,0x64,0xdc, - 0x03,0x46,0xba,0x1b,0xf2,0x2c,0x43,0xbc,0x12,0xa2,0x2b,0xb3,0xbe,0x10,0x75,0x52,0xa6,0xac,0x72,0xdf, - 0x30,0x8f,0x13,0xdf,0x04,0xd7,0x17,0xd1,0xa8,0xb4,0xa1,0x46,0x25,0xd6,0x5e,0xb2,0x0b,0x82,0xf3,0x9b, - 0x6c,0x9f,0xd6,0xa4,0x9b,0xf6,0x68,0x1f,0x0b,0x64,0x02,0x7d,0x21,0xc1,0xfb,0xcb,0xf9,0x3d,0x58,0x5a, - 0x89,0xbd,0xc2,0x18,0x03,0x67,0xfe,0x35,0x7b,0xcd,0xc3,0xeb,0xb8,0x3f,0x69,0x74,0x72,0xc5,0xc1,0x02, - 0x66,0xcf,0xa0,0x8d,0xee,0x96,0x31,0xd6,0x58,0x1c,0xc9,0xc6,0x6f,0x96,0x43,0x89,0xdb,0x76,0x94,0x21, - 0xc4,0xca,0xa6,0x45,0xc1,0xab,0xd6,0x85,0x38,0x39,0x46,0xbc,0x80,0x8e,0xed,0xe5,0xf3,0x8e,0x7d,0x04, - 0xbb,0x28,0xe2,0x34,0xef,0x91,0x0b,0xec,0x9d,0x19,0x7c,0xf5,0xae,0xed,0x50,0x26,0xfd,0xd5,0x99,0x84, - 0xae,0xf3,0xdf,0xec,0x1d,0xa4,0x9b,0xba,0x9a,0x49,0xe8,0xf4,0xdf,0x2b,0x0d,0x55,0x9d,0xda,0x8e,0x5d, - 0x1c,0x05,0x09,0x24,0x76,0x04,0x8c,0x6f,0xe3,0x28,0x94,0x12,0x01,0x9b,0xdd,0x56,0xb5,0x41,0x77,0x81, - 0x58,0xf1,0x65,0xcf,0x44,0x80,0xd5,0xa4,0x0c,0xa7,0x50,0xc0,0x30,0x78,0x1e,0x33,0xae,0xeb,0xc3,0xa5, - 0x0d,0xd4,0x0b,0xb3,0x77,0xb6,0x74,0x34,0x7c,0xc1,0x73,0x48,0xca,0x36,0xec,0x8d,0xc6,0x0d,0x04,0xc8, - 0x4c,0x02,0x3c,0x03,0x2d,0x56,0x31,0x83,0x17,0x92,0x36,0xcf,0x36,0x74,0x0d,0x6c,0x89,0xbf,0x5d,0xb0, - 0xc7,0x16,0xa3,0x18,0x38,0xac,0xe1,0x17,0xb7,0x84,0xb8,0x16,0x5e,0x1a,0x32,0x79,0x74,0x6f,0x46,0x43, - 0xac,0x2b,0xb8,0x6c,0xb5,0x4e,0xef,0x3f,0xe7,0x3b,0x2f,0x03,0x2f,0x80,0x36,0xf4,0xec,0xbe,0x11,0x21, - 0xf3,0x53,0xe8,0x09,0xd2,0x37,0xbc,0xe7,0x7d,0x82,0x2a,0xc3,0x37,0x3a,0x80,0xb9,0x14,0x4c,0xcb,0xf8, - 0x89,0x08,0x0e,0xf3,0x84,0xe0,0xc8,0xf8,0x3d,0x4a,0xcd,0x43,0x68,0xd6,0xdf,0x5d,0xfe,0x76,0xa2,0x27, - 0xed,0x6e,0xb4,0x15,0xed,0xea,0xb4,0x4d,0x39,0x3a,0x7f,0x60,0x44,0x1e,0x02,0xd8,0x06,0xa0,0x0c,0x1d, - 0x8e,0x34,0x59,0x08,0x1d,0x48,0xbb,0x13,0x7a,0x2a,0xb7,0x3b,0x1f,0x55,0xbc,0x43,0x89,0xd0,0xcd,0x50, - 0x27,0x36,0x1e,0x48,0x2f,0xbe,0xd8,0x0d,0x02,0x02,0xfc,0xdf,0xcd,0xa8,0x17,0x89,0xa2,0xdf,0x32,0xd8, - 0x95,0xac,0xa4,0xe9,0xb7,0x26,0xe8,0x32,0x8a,0xc6,0x1d,0xf1,0x5c,0x6b,0x62,0x02,0xc4,0xda,0x84,0xde, - 0x45,0x75,0x3a,0xac,0x8e,0x37,0xf0,0x20,0x40,0x77,0x4d,0xdd,0xc3,0x61,0xe7,0xdc,0x7a,0xd4,0x5c,0x9c, - 0x45,0x69,0xb4,0xc8,0xdb,0x73,0x36,0x34,0x9a,0xc8,0xe3,0x86,0xb6,0xe8,0x49,0x6b,0xa3,0xfb,0x6c,0x6a, - 0x38,0x6d,0x8d,0x2e,0xea,0xde,0x6f,0x2b,0x5d,0x5f,0x7f,0xd0,0xd0,0x43,0x57,0x72,0x0f,0xcd,0x5d,0xb1, - 0x34,0x67,0xc5,0x45,0x34,0xa4,0x4a,0xf9,0xa1,0xb7,0x57,0xd8,0xe6,0xb2,0xd6,0xa7,0x3d,0x1f,0x21,0xeb, - 0x79,0x5d,0x84,0x6e,0xdc,0x16,0x4c,0x81,0x21,0xe0,0xa0,0x5d,0xc1,0x72,0x9e,0xbe,0x6d,0xc6,0x7d,0xb5, - 0x4a,0xc5,0xd6,0x50,0x73,0xfe,0xc5,0xe1,0x8f,0x5f,0x1c,0xb2,0x38,0x60,0xf1,0x68,0x08,0xf9,0xd4,0xb7, - 0xff,0xb2,0x7c,0x51,0xd5,0x83,0xb5,0xe0,0xaf,0x43,0x19,0x05,0xe1,0xe3,0x9d,0x1d,0x4e,0x62,0x8c,0x6c, - 0xeb,0x26,0xf8,0x90,0x87,0x22,0x00,0xdc,0x9f,0x44,0x88,0xed,0x63,0x6c,0x81,0xc6,0xc3,0x51,0x4f,0xbf, - 0x2c,0x64,0x92,0xfd,0x68,0x8e,0xfe,0xd0,0x3f,0x9c,0x75,0x7e,0xde,0x78,0x4c,0x1b,0xe3,0x54,0x8e,0xc4, - 0x42,0x14,0x01,0x3f,0xf7,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x09,0x16,0x51,0xc3, - 0x1b,0x31,0xae,0xcd,0x9c,0x8b,0x30,0x34,0xf3,0x0c,0x79,0xcd,0xba,0x3a,0x9a,0x53,0xcd,0x7e,0x65,0x9f, - 0x29,0xe3,0x44,0x89,0xb0,0xae,0xbb,0xbd,0x5d,0x15,0xec,0xd0,0x48,0x3f,0xc4,0x0d,0xf2,0x80,0x41,0x57, - 0x60,0x34,0x8f,0x21,0x55,0x7a,0x87,0x50,0x59,0xe7,0xd5,0x9c,0x38,0x75,0xae,0xa1,0x23,0x7b,0xc2,0x38, - 0xc3,0x04,0x50,0xc6,0xdd,0x14,0x23,0x93,0x0b,0xed,0xf7,0x5b,0x11,0x50,0x38,0xed,0xb2,0x38,0xc9,0x61, - 0x63,0x15,0x44,0x42,0x14,0x8f,0xb2,0x7a,0xbc,0xbb,0x5b,0xd0,0xd6,0x85,0x05,0x63,0x71,0x64,0x08,0xed, - 0x38,0xc7,0x61,0xef,0x3d,0x2d,0x03,0xcf,0x93,0xef,0x0c,0x4c,0x9a,0x18,0x79,0x81,0xc3,0xd7,0xed,0xad, - 0xee,0x27,0x75,0xe7,0xdd,0x42,0xb2,0x70,0xc3,0x19,0x56,0x6e,0x09,0xaf,0x3d,0x2d,0x0f,0x4d,0xf6,0x7b, - 0xbb,0x59,0xab,0x8f,0x2c,0x00,0x0e,0x8c,0x4a,0x6c,0x34,0xa2,0xb4,0x2f,0xb1,0x22,0xb2,0x83,0x48,0x61, - 0xc3,0x64,0x95,0x22,0x61,0xa9,0xb3,0x46,0xb8,0xf9,0x29,0x7e,0xea,0x09,0xcd,0x1a,0x4d,0xf1,0x8f,0x10, - 0x7c,0x65,0xd6,0x11,0xf7,0x37,0x30,0xba,0x46,0x07,0x1a,0x29,0xdc,0x79,0xa0,0x0a,0x18,0x4d,0xe0,0x24, - 0xa0,0x1f,0xbf,0xaf,0x44,0x16,0x3d,0xdb,0xd9,0x99,0x5b,0xa0,0x26,0xde,0x45,0xbe,0x86,0xcf,0xda,0xd0, - 0xb7,0x45,0x49,0x34,0x39,0x7f,0xb3,0x72,0xdf,0x60,0x0b,0xaf,0x3a,0x51,0x6d,0x4e,0x87,0x64,0xe3,0x62, - 0x9c,0xb7,0x0a,0x4d,0xf2,0xa8,0xad,0x15,0xc6,0x11,0xd9,0x6a,0xa5,0xc9,0xf5,0xb8,0x9a,0xfc,0x1d,0xfe, - 0x52,0x92,0x1c,0x41,0x06,0x7d,0x1a,0xb3,0x53,0xc0,0xdc,0x45,0xfe,0xe0,0x02,0x88,0x23,0x68,0xc2,0x07, - 0xde,0xd9,0xe2,0xbc,0xd7,0xe2,0x9c,0x5b,0xec,0x4f,0x82,0x69,0x99,0xd9,0x70,0x37,0xdf,0x4d,0x32,0x65, - 0xaf,0x33,0xfa,0x8a,0xa7,0x3d,0x5a,0x95,0x32,0x31,0x2d,0xfd,0x83,0x20,0xb6,0x6b,0xb0,0xfb,0x7b,0x07, - 0xc7,0x0d,0x45,0xdd,0xe9,0x99,0xe3,0x9a,0xed,0x39,0x16,0xb3,0x8f,0x0d,0x95,0x69,0x5c,0xb0,0x29,0x6e, - 0x32,0x32,0x71,0xc1,0x59,0x27,0x5e,0xf8,0xb7,0xec,0xa2,0x48,0x54,0x79,0x48,0xf0,0x4e,0x30,0x38,0xaa, - 0xf3,0xcb,0x37,0x4c,0x46,0x55,0x4c,0x4e,0xed,0x46,0xa3,0x68,0x37,0xb4,0x07,0xa9,0xc2,0x6a,0x20,0x2b, - 0x90,0xb0,0xab,0xa3,0x28,0x49,0x68,0x7f,0xc8,0x32,0x13,0xa7,0xa4,0x03,0x4e,0xc9,0x03,0x26,0x1d,0x94, - 0x5c,0x6b,0x62,0xe2,0xd6,0x6f,0x9a,0xc0,0xfe,0xd6,0x6e,0x4a,0x9f,0x5b,0x01,0x1d,0xfe,0x31,0x76,0x93, - 0x15,0x1b,0x46,0x56,0x71,0x29,0xa1,0x36,0x4c,0x79,0x63,0x1c,0x59,0xc3,0x38,0xb2,0x96,0x0b,0x13,0xf8, - 0x18,0xf0,0x3d,0xe0,0x6b,0x50,0x64,0x5c,0xa0,0x00,0xbc,0xf1,0x64,0xe0,0x0a,0xd1,0xc6,0x01,0x05,0xb4, - 0x69,0xb8,0xcd,0xb3,0x1f,0x6b,0xc6,0x5a,0xe2,0x3a,0xd5,0x25,0x42,0x8b,0xf2,0x5c,0xd7,0x05,0xc7,0xdb, - 0xa6,0x19,0x6a,0x63,0x41,0x86,0x0e,0x09,0xb6,0xd6,0x53,0x40,0x12,0x0c,0x73,0xc0,0x7c,0x12,0x35,0x86, - 0xd1,0x4c,0xb3,0xf0,0x13,0x16,0x8e,0xaf,0xb2,0xba,0x97,0xc4,0xfc,0x98,0x11,0x0d,0x21,0x1c,0x42,0xa7, - 0x40,0xc6,0x5a,0xe8,0x95,0x71,0x97,0x60,0x6a,0x71,0x95,0xe4,0xd9,0x0a,0x14,0xfe,0x54,0x98,0x99,0x9c, - 0x40,0x1f,0x92,0x52,0xf0,0x6d,0xe3,0xf8,0x4d,0x79,0x7b,0xfb,0x1e,0x06,0x1d,0x2b,0xd9,0xfc,0x10,0x57, - 0xc8,0x93,0x29,0x66,0x05,0xec,0x26,0x3f,0xa8,0x78,0x9a,0x60,0xf7,0x55,0x6c,0x8b,0xaf,0x81,0xc4,0x27, - 0x08,0x6e,0x87,0xc0,0xb4,0x2e,0xe2,0xf8,0x9b,0x0f,0x71,0x5b,0xa8,0x12,0x99,0x49,0xfa,0x4f,0xfa,0x2e, - 0x41,0xa0,0xcd,0x5e,0x21,0x64,0x06,0xab,0xf0,0xf7,0xd0,0x40,0xe0,0x1f,0x35,0x3b,0xdd,0x15,0x1c,0x20, - 0x7b,0xe3,0x43,0x0d,0x51,0x49,0x16,0x11,0xa5,0x5d,0x5d,0x9e,0xd2,0xfe,0x68,0x68,0xaf,0xe8,0x32,0x92, - 0xb0,0x63,0xd1,0xf3,0xd7,0x4f,0x9e,0x3f,0x33,0xb6,0xd2,0xc2,0xe3,0x4f,0xa2,0xb6,0xa6,0xb1,0xa4,0x50, - 0xf2,0x77,0x02,0xa3,0xb3,0xd7,0x9b,0xb3,0x87,0xfa,0x67,0x6d,0x42,0x08,0x74,0x8b,0x70,0x2f,0x88,0x6a, - 0x3c,0xcd,0xa9,0x1c,0xea,0x2d,0x27,0xe6,0x39,0x95,0x7a,0x7d,0x0d,0xba,0xf8,0x4c,0xb7,0xdd,0xa4,0x68, - 0xdc,0xdf,0xd1,0x69,0x45,0xb2,0xb4,0x33,0x5f,0xa0,0xaa,0xb8,0x92,0x64,0x68,0xec,0x62,0x3f,0x43,0x45, - 0xde,0xc0,0xbf,0xed,0x35,0xbc,0x26,0x3e,0x3e,0xff,0xf9,0xe3,0xe3,0xf7,0xcf,0x1f,0x77,0x46,0x4d,0xe9, - 0x4b,0x7f,0x96,0x9a,0xd9,0xe1,0x98,0x9a,0x85,0x5e,0x9e,0x5b,0xd2,0x29,0xb4,0x05,0xd4,0x44,0x7c,0x57, - 0xcb,0x97,0x44,0x44,0xcc,0x0a,0xc2,0x3d,0xb0,0xac,0xc9,0xcf,0x72,0x41,0x8e,0xca,0x76,0xa5,0x77,0xc7, - 0x8b,0x50,0x10,0xb0,0x14,0x19,0xb7,0x03,0x57,0xc0,0xb8,0x6c,0x65,0x1b,0xce,0xb6,0xf7,0xd7,0x03,0xcb, - 0x10,0x40,0xc2,0xb7,0xbd,0xfd,0x68,0x49,0x37,0x0e,0xbe,0x93,0x9b,0xbd,0x22,0x9b,0x12,0xd7,0x56,0x86, - 0x0c,0x03,0x76,0x5b,0x65,0x78,0x05,0x96,0x5b,0x40,0x2e,0x0b,0xe6,0xa8,0x5f,0x28,0x37,0x85,0x12,0xa7, - 0x5b,0x19,0xa4,0xf5,0xed,0x9d,0x68,0xf0,0xa3,0x28,0x60,0xba,0x14,0x0f,0x70,0x41,0xc9,0x18,0x18,0x77, - 0x88,0x3d,0x12,0x2e,0x8e,0x2f,0xb9,0x9c,0xb1,0x37,0x2e,0x81,0xed,0x8b,0xd6,0x10,0x64,0x0c,0x7b,0x6c, - 0x49,0x2f,0x44,0x93,0x33,0xa3,0xe7,0x60,0x19,0x61,0xf9,0x52,0x19,0x72,0xce,0xab,0xe4,0xb2,0x0e,0xa3, - 0xc4,0xb3,0x22,0x7c,0x91,0xe6,0xcd,0x06,0x29,0xe1,0xe4,0x0d,0x84,0x4d,0xaf,0x59,0x7f,0x44,0xc4,0xff, - 0xd8,0x60,0x1d,0xb6,0x4c,0x86,0x30,0xe8,0x98,0xe3,0xc6,0x16,0x18,0x33,0x57,0xa2,0x89,0x2c,0x66,0x09, - 0x65,0xdc,0x64,0x6f,0x80,0x02,0x5e,0xb7,0x2c,0x41,0x54,0x70,0xcd,0x2a,0x60,0x80,0xa9,0x2f,0xb8,0xe0, - 0xc0,0x1d,0x04,0x62,0xf5,0xa5,0x1a,0x9c,0xfa,0xbe,0x60,0xd6,0x84,0xcb,0xfa,0x73,0xbb,0xe1,0x24,0x17, - 0xb3,0x5d,0x56,0xe0,0xb0,0xd1,0x1a,0xb3,0xf0,0x73,0xc2,0xed,0x72,0xc9,0x03,0xb5,0x7f,0x9e,0x15,0xbb, - 0x07,0xeb,0x80,0x6c,0x62,0xd4,0xb9,0x7d,0x20,0xaa,0xd0,0x15,0xfe,0xcc,0xd9,0x42,0x9c,0x58,0xb2,0x25, - 0xfd,0x9f,0xd1,0x7f,0xeb,0x90,0x39,0x20,0x44,0xc1,0xe6,0x62,0x93,0xdc,0x36,0x8c,0x8b,0x45,0x27,0x62, - 0x93,0x7c,0xf1,0xb5,0xd8,0x76,0x7f,0xfd,0x90,0x86,0x2c,0xf2,0xd1,0xed,0x03,0xbf,0x27,0xa7,0xc9,0x17, - 0x5f,0xf6,0x0a,0x4c,0x3b,0x05,0x56,0xc9,0xd7,0x7f,0xed,0x15,0x58,0x75,0x0a,0xcc,0x93,0x2f,0xff,0xbb, - 0x57,0x60,0xde,0x29,0x70,0xf0,0xf0,0x4b,0x70,0x8c,0xb7,0xb7,0xf4,0xc0,0x9b,0x39,0xec,0xe2,0xee,0x41, - 0x32,0x9c,0xb1,0x87,0x8c,0xd3,0xdb,0xdb,0x25,0xf1,0x57,0xc9,0x4d,0x73,0x59,0x18,0x8f,0x81,0x69,0x4e, - 0xb5,0x7e,0xf1,0x65,0x0a,0xc3,0x03,0x31,0x9a,0x1d,0x4b,0xd2,0xd7,0x69,0xd3,0x4b,0xfa,0xfa,0xaf,0xe9, - 0xaa,0x97,0xf4,0xe5,0x7e,0x3a,0xdb,0xdd,0xed,0xa4,0x1c,0xa4,0xb3,0xbd,0xbd,0xce,0x67,0x07,0xe9,0xb2, - 0x5b,0xe6,0xeb,0x2f,0xd2,0x65,0xb7,0xcc,0xc1,0xc3,0x2f,0xd2,0xd3,0x6e,0xa1,0x83,0x87,0x5f,0xa5,0xa7, - 0x7b,0x7b,0xa0,0xcc,0x64,0x42,0xfc,0x9e,0xbb,0xc8,0x68,0x38,0x6a,0x61,0x58,0xae,0xf1,0x05,0x87,0x97, - 0x14,0xe7,0x97,0x78,0x61,0xc6,0x4d,0x63,0xbe,0x80,0x58,0x65,0x6f,0x2f,0x19,0x2f,0x76,0x76,0x8e,0x4d, - 0x0c,0xdf,0x45,0xc2,0x1a,0x02,0x18,0xfa,0x8b,0xc0,0xd5,0xd9,0x8f,0x54,0x93,0x98,0xa1,0x88,0x59,0x76, - 0x7b,0x69,0xb4,0x07,0xb1,0x54,0x8b,0x8a,0x25,0x28,0x3f,0x58,0x30,0x85,0x9b,0xfc,0x39,0xb8,0x1c,0x5c, - 0x02,0xe2,0xe1,0x2b,0x0f,0xe1,0xab,0xca,0x06,0xe8,0xfd,0xcc,0x4b,0xee,0xa2,0x38,0x12,0x01,0xe7,0x23, - 0x7b,0x2f,0xc9,0xfd,0x63,0x4a,0xbd,0x4f,0xc4,0xc9,0xfd,0x28,0x89,0xef,0x73,0x14,0xfa,0x68,0xdc,0xcd, - 0x72,0x7d,0x29,0x13,0x5f,0x4a,0x45,0x2e,0xa3,0x24,0xd8,0x58,0x43,0xb6,0x1c,0x4a,0xfc,0xaa,0xc0,0xf1, - 0x8e,0x37,0x5f,0xd7,0xc9,0x39,0x3a,0xfc,0x71,0x85,0x08,0x6b,0x6c,0x12,0x55,0x1f,0x71,0x60,0xe0,0x80, - 0x2a,0xfd,0x67,0x5f,0x8c,0xd2,0x8e,0x16,0xf9,0xb2,0x6b,0x7a,0xe2,0xc3,0x00,0xad,0x37,0xad,0xcb,0x83, - 0x02,0xeb,0x24,0x3d,0x0c,0xac,0x89,0xfe,0xe1,0xce,0xfa,0xb8,0x75,0xda,0x79,0x1b,0x20,0xc4,0x63,0x83, - 0x1b,0xbe,0xc3,0x43,0x2b,0x13,0x6b,0x8e,0x6f,0x60,0xe3,0xab,0x4b,0xb3,0xd0,0x97,0x88,0x23,0xec,0xdb, - 0xca,0xfa,0x16,0xa0,0xff,0x6e,0x65,0x5a,0x7b,0x2b,0x41,0xae,0xe1,0x75,0xbe,0x94,0x38,0x44,0xe6,0x1d, - 0x47,0xdb,0x1d,0x15,0x06,0x1e,0x78,0xda,0xd3,0xb4,0xd0,0x84,0x02,0xbf,0xb3,0x5e,0xdb,0x7a,0xa8,0xfa, - 0x38,0x43,0xb5,0x73,0x8b,0xd5,0x59,0xb4,0x0d,0x97,0x1d,0x42,0xf6,0x30,0xa9,0x0c,0x8b,0xb0,0x03,0x2d, - 0xe5,0xff,0x3f,0x93,0x6f,0xfc,0x67,0xc3,0x22,0xd6,0xa5,0x96,0x4a,0xed,0x70,0x29,0xc2,0xc9,0xf0,0x0d, - 0x97,0x63,0x1f,0x86,0x25,0xc5,0xd9,0x79,0x3b,0x89,0x29,0xdf,0x10,0xc9,0x0b,0x5d,0xae,0x22,0xe5,0x2a, - 0xe0,0xfc,0x24,0xad,0x47,0x8b,0x62,0x36,0x9b,0x4b,0x08,0x9a,0x68,0x51,0xad,0x1a,0xbd,0x5a,0x46,0xd6, - 0xe0,0x77,0x5c,0x1b,0x35,0xf5,0xc4,0xb7,0x2c,0x09,0x6c,0xbf,0x2e,0x8f,0x4c,0x02,0xc8,0x22,0x84,0x09, - 0xac,0x16,0x4f,0x51,0x4c,0xfb,0x02,0xda,0x65,0x19,0xcb,0x3d,0x1b,0x58,0x70,0x3d,0xc6,0x45,0xad,0x17, - 0x90,0x9d,0x35,0x01,0xe7,0x62,0xae,0x75,0x9f,0x66,0xb8,0x94,0x67,0xbc,0xa1,0xfb,0x2b,0x26,0x53,0x77, - 0xb3,0x78,0xe3,0xdc,0xf4,0x1a,0xb9,0xc8,0x27,0x9b,0x52,0xfe,0x61,0xa3,0xa6,0x47,0xe9,0xe1,0x54,0x35, - 0x47,0x69,0x33,0x08,0x02,0xb5,0x03,0x01,0xa1,0x90,0x0a,0xbe,0xc1,0x81,0xbd,0xa9,0x6e,0x6f,0xe5,0xe5, - 0x62,0x8f,0x63,0xb3,0x20,0x89,0x77,0x32,0xc7,0xe0,0xb5,0x61,0x34,0x71,0xd0,0x89,0x0a,0x43,0xbc,0x60, - 0x2c,0x21,0x53,0x68,0x17,0x87,0x4d,0x3e,0x28,0xec,0x07,0xbd,0x50,0xb7,0x45,0x78,0x6a,0x16,0xdd,0xde, - 0xf8,0xaf,0x59,0x32,0x13,0x80,0x68,0x18,0x09,0x27,0x80,0x55,0x63,0xb5,0x5f,0xf4,0xad,0xf6,0xa1,0x5b, - 0x82,0x53,0x04,0x5f,0xa9,0x82,0x40,0xa1,0x37,0x85,0x8d,0x9d,0x55,0x21,0x76,0x96,0xb8,0x58,0x58,0x76, - 0xcd,0xf9,0x31,0x76,0x9a,0x0c,0xad,0xf8,0xab,0xde,0xac,0x89,0x95,0x7e,0x91,0x45,0xf7,0xee,0x5d,0x10, - 0x32,0x63,0x04,0x0a,0xc2,0x21,0x8b,0x62,0x23,0x2e,0xa4,0x8c,0x2d,0x6a,0x79,0xeb,0xbe,0x8c,0xfc,0xfe, - 0x04,0x29,0x16,0xd1,0xe2,0x39,0x81,0xac,0x74,0x24,0xce,0x0e,0xf2,0xe9,0x31,0xf1,0x9d,0xbb,0x05,0xd0, - 0xa3,0xe1,0x27,0xb3,0x1c,0xd4,0x63,0x81,0x80,0xf5,0x6c,0x74,0x63,0xc1,0x87,0x70,0x2c,0x78,0xbd,0x84, - 0xb8,0xf3,0xab,0x25,0xae,0x1b,0xa4,0x2e,0xa6,0xf7,0x0d,0x8e,0xbd,0xaf,0xac,0x69,0x8e,0x0f,0x6d,0xb2, - 0x15,0xa3,0xc1,0xad,0x9b,0x68,0xb7,0xda,0x8d,0xd6,0x51,0xb0,0x00,0xb9,0x0e,0xd1,0x78,0x88,0xdc,0x68, - 0x0a,0x7f,0xa8,0x7d,0x00,0xc3,0xe0,0x32,0xab,0xc3,0x28,0x79,0xb4,0x0f,0xa9,0x23,0x6e,0xe7,0x7a,0x69, - 0x53,0x8f,0x28,0xf5,0x87,0xda,0x45,0xe9,0x8d,0xbf,0xe3,0x8f,0xc3,0x12,0xe0,0xa9,0xbf,0xd9,0x3b,0x98, - 0xdc,0x50,0xaf,0x53,0x7f,0xfe,0x7c,0x47,0x14,0x1b,0xb1,0xe2,0x3c,0x00,0x9b,0xfa,0x5d,0x4d,0x18,0x1f, - 0x83,0x59,0xa7,0x52,0x9a,0x4b,0x70,0x9c,0x26,0x26,0x7c,0x7e,0x02,0xc9,0x4a,0x2d,0xfc,0x5e,0x67,0xbf, - 0x41,0x44,0xb0,0xcd,0xce,0x76,0xc9,0x4a,0xc7,0x3f,0xd6,0x19,0xc2,0x0f,0x27,0x93,0x39,0x9e,0x93,0xf4, - 0x6b,0xb0,0xb4,0x3f,0xd6,0xa1,0x98,0xca,0xca,0x9f,0xc5,0x43,0x92,0xaa,0xf8,0xae,0xb6,0x15,0x70,0x60, - 0x59,0xbe,0x87,0x6b,0x05,0xbf,0xef,0x84,0x83,0x1a,0x3a,0xf2,0x85,0xeb,0x82,0x00,0x72,0x77,0x57,0x7d, - 0xfd,0x85,0x79,0xde,0xdb,0x63,0x53,0x3b,0x9a,0xc3,0xdf,0xb8,0x26,0x01,0xad,0x35,0x1a,0xb7,0x31,0xcf, - 0xbb,0xe3,0xfd,0xdd,0x8c,0xd7,0xa6,0xfc,0x4e,0x63,0x55,0xbf,0xd5,0x50,0x37,0x7a,0x4d,0xb2,0x71,0xef, - 0x64,0xdf,0x88,0x89,0xb9,0xd1,0x26,0x8d,0xee,0x11,0x5d,0x1a,0xe3,0x0e,0x45,0xaa,0xd1,0xdc,0xd9,0x85, - 0x02,0xf2,0xc8,0x10,0x11,0x38,0xa1,0x6a,0x6f,0x3f,0xfc,0x53,0x1d,0x12,0x54,0xbb,0xbb,0xdf,0x85,0xa6, - 0xef,0xd3,0xa0,0xe0,0x77,0xf5,0x37,0xd9,0x0f,0x01,0xdc,0xaf,0xc2,0xa8,0xe1,0x4c,0x1e,0xb6,0xb7,0xb7, - 0x4c,0x47,0x06,0x42,0x6c,0x9e,0xa4,0xd0,0xd9,0x50,0x66,0x93,0x1d,0x68,0x79,0x2d,0xe0,0x97,0x31,0x4e, - 0xc6,0x81,0x63,0x9e,0x0e,0xa5,0x22,0x1a,0x91,0x2a,0x74,0x32,0x3a,0xc6,0x75,0x91,0x1f,0xf3,0x06,0x86, - 0x3d,0x95,0x7f,0x0b,0xa5,0x66,0xe7,0xde,0xc3,0x33,0xab,0xee,0x88,0x27,0x61,0x7a,0x7b,0xce,0x7e,0x95, - 0x74,0x36,0xf3,0x5d,0x8c,0xdd,0x1b,0x5f,0xfc,0x46,0xfe,0xbe,0xee,0x87,0xa3,0xdd,0x2a,0x62,0x7f,0x3d, - 0xe0,0x70,0x13,0x3b,0x3b,0x4b,0xde,0x98,0xe2,0xc3,0xb6,0x46,0x08,0x63,0xc4,0x25,0x50,0xdf,0xd7,0x9b, - 0x3c,0x22,0x5a,0xfb,0xb1,0x9c,0xdc,0x98,0x73,0x10,0x96,0x3a,0x72,0x96,0x21,0xac,0x9c,0xc1,0xf7,0x01, - 0x25,0xb3,0xd4,0x5e,0x67,0x15,0xd3,0xa9,0xfa,0x7d,0x9d,0x0c,0x72,0xa6,0x88,0x68,0x15,0xcc,0x57,0xd7, - 0x19,0x60,0xa6,0x63,0x1b,0x95,0x6a,0xdb,0x09,0x6c,0x2a,0xb0,0xf9,0xdb,0x4e,0x5c,0x83,0x5b,0x00,0x1c, - 0x0f,0x6a,0x52,0x18,0xa9,0x55,0x59,0x19,0xbe,0x8f,0xbf,0xaf,0x0d,0x93,0xda,0x43,0x0e,0xd4,0xd1,0xc3, - 0x13,0xe8,0x81,0x0c,0xee,0x78,0x53,0x4e,0x22,0x73,0xfd,0x75,0x6a,0xad,0x13,0x39,0x48,0xb4,0xf7,0x05, - 0xe0,0x0f,0x38,0xdc,0x33,0xfb,0x99,0xfb,0xab,0xc7,0x29,0x79,0x8d,0xfa,0x2e,0x0b,0x89,0x81,0x30,0x92, - 0x8a,0x3a,0x9f,0x5e,0xe2,0x53,0x93,0xd1,0xfb,0x1c,0x9f,0xad,0xc1,0xe3,0x7c,0xcf,0x2a,0xfa,0x53,0xad, - 0x96,0x5a,0xd5,0x5e,0x66,0xfc,0xbd,0x0b,0x09,0x10,0x38,0x1c,0x0e,0xcd,0x91,0x75,0xb8,0xe9,0xcc,0x94, - 0x4b,0x0c,0x45,0xec,0x32,0x25,0x4d,0xd6,0xfb,0xb0,0x2b,0xdd,0x0a,0x53,0xef,0x12,0x70,0x39,0x1f,0x9f, - 0x8e,0x8c,0xab,0x10,0x39,0x2b,0x44,0x51,0x85,0x89,0x58,0x57,0x1c,0x65,0x51,0x14,0xe4,0xae,0xcc,0x2d, - 0x83,0x28,0xa1,0xf8,0xae,0x68,0x7b,0x77,0xb3,0x71,0x4f,0x2a,0x4a,0x02,0x94,0xef,0x3e,0xbe,0x7e,0xc5, - 0x09,0x5c,0xba,0x1e,0x0e,0x81,0x1b,0x98,0x40,0x55,0x54,0xb6,0x41,0x9b,0x98,0xbc,0xa2,0x5c,0xe9,0x31, - 0x70,0x5e,0x2e,0x45,0xdf,0xc0,0x49,0xcb,0x89,0x9a,0x73,0x03,0x98,0x4f,0x91,0x15,0x87,0x45,0x60,0x7e, - 0xc4,0xd7,0x1a,0x8b,0x94,0x4d,0x9a,0xcf,0x47,0xc7,0xfc,0x9a,0x55,0xc6,0x8a,0xb1,0x85,0x70,0x2d,0x8a, - 0x6c,0xc4,0xfb,0x2a,0x19,0x2f,0xb3,0xb9,0xda,0x8e,0x4f,0xb3,0x3c,0x11,0x69,0x43,0x43,0xe9,0xb0,0xce, - 0x7e,0xfb,0xee,0xe3,0xcb,0xb7,0x6f,0x50,0xcf,0xa9,0x15,0xff,0x10,0x43,0x38,0xc0,0x86,0x10,0x6e,0x60, - 0x07,0x73,0x7f,0x31,0x96,0x38,0x4a,0x1b,0x3d,0x1c,0x5f,0x73,0xe0,0xe2,0x0c,0x05,0xc7,0x7f,0xeb,0xc4, - 0x84,0x7a,0x1d,0x9f,0xaa,0x65,0xd2,0xa9,0x3e,0x50,0xc4,0x89,0x2a,0x41,0x54,0xd8,0xaf,0x2d,0xd9,0x26, - 0xe6,0x6b,0x45,0x62,0x4c,0x5a,0xe6,0xf9,0xef,0xd7,0x3e,0x98,0xb7,0x58,0xb9,0xf0,0x29,0x6f,0x09,0xa2, - 0xa9,0xb8,0xaa,0x4d,0x4d,0xd0,0xb7,0x82,0xa9,0x02,0x6f,0x7b,0x2f,0x34,0x02,0x7b,0x18,0xcb,0xa3,0xed, - 0x28,0x48,0xc6,0x52,0xfa,0xc7,0x20,0x21,0xbd,0xc9,0xe6,0xc6,0xfe,0x86,0x41,0xa4,0x92,0x5b,0x00,0xa9, - 0x4c,0xe0,0xd7,0xa9,0xfd,0x99,0xb7,0xd0,0xac,0x92,0xbe,0x9e,0xfb,0x48,0xc3,0x56,0x45,0xfd,0x01,0xa9, - 0x93,0x8b,0xb8,0xf3,0xce,0xb1,0x13,0x02,0x6f,0x46,0xfd,0x39,0x85,0xf2,0xe2,0x0e,0xed,0xec,0xa7,0xa2, - 0x17,0xbb,0xe4,0x4c,0x77,0x65,0x60,0x2c,0x30,0xaa,0x7a,0xb2,0xaf,0x22,0xec,0x47,0x22,0xba,0xb0,0xc6, - 0x3d,0x57,0x1b,0xb9,0x95,0xc9,0x4d,0x82,0x88,0x3f,0x66,0x9f,0xae,0xb2,0x4e,0x71,0x35,0x87,0x41,0x6a, - 0x55,0x2f,0xf8,0x3a,0xf9,0x19,0xa7,0x41,0x41,0xd0,0xc8,0x03,0xed,0xc3,0xd3,0x6c,0x75,0x7b,0x3b,0x57, - 0x4b,0xcc,0x97,0xd9,0xa8,0x52,0x39,0x6f,0x65,0x93,0xd2,0xab,0x21,0x83,0x11,0xbc,0xd9,0xe1,0xe2,0x37, - 0xb5,0x4c,0xd2,0xe5,0x58,0x0c,0x5b,0xbb,0xd0,0x1a,0x6a,0xdb,0x99,0x8e,0x6c,0xc7,0x03,0x02,0xb6,0x7f, - 0x4b,0xf0,0x76,0xe1,0x34,0xa1,0x09,0xec,0x5b,0xd8,0x59,0x4c,0x92,0xdb,0x7e,0xb2,0x77,0x5c,0x86,0xa5, - 0x6d,0x35,0xb2,0xf1,0xd7,0xaa,0x4e,0x6d,0x55,0xff,0x33,0xaf,0xd2,0xaf,0xa5,0x0e,0x0e,0x8d,0x79,0x4a, - 0x48,0x6a,0x06,0x9b,0xc6,0x9d,0x9d,0x0f,0xb0,0x44,0x6c,0x94,0xc5,0x52,0x9c,0x3d,0x4b,0xe2,0x3c,0xe3, - 0x7c,0x02,0xde,0x53,0xfa,0x75,0xc5,0x4c,0xac,0x13,0x60,0x80,0x3c,0x64,0x09,0xae,0x75,0xe8,0x95,0xc6, - 0x91,0x42,0x8d,0x1c,0x43,0x22,0x70,0xb0,0x30,0x8e,0x4d,0x08,0x03,0xa1,0xc3,0x56,0xc4,0x94,0xa5,0x36, - 0x76,0x2d,0x0f,0x7e,0x69,0x76,0x1f,0x24,0xee,0x12,0xa7,0x01,0x8f,0xf0,0xa0,0x1e,0x0e,0xae,0x85,0xc0, - 0x62,0xe9,0x66,0x62,0x18,0x64,0x17,0x1a,0x96,0x98,0x9d,0xc8,0x37,0x44,0x83,0x89,0xb1,0xbe,0xdc,0xc2, - 0xcd,0x8f,0x41,0xa7,0x58,0x23,0x13,0xb1,0x92,0xbc,0x1d,0x96,0x29,0xc6,0x25,0x71,0x59,0x76,0x80,0x61, - 0xec,0xfd,0xff,0xdf,0x67,0x41,0x90,0xf9,0xe6,0x44,0xb8,0x74,0x15,0xa6,0xca,0x21,0x00,0x26,0xa0,0x2f, - 0xc2,0xb7,0x53,0x22,0x53,0xe7,0x65,0xcd,0x7f,0x6a,0xfa,0x60,0x7d,0x62,0xa7,0x2d,0x98,0xca,0x1a,0xb6, - 0x60,0x63,0x78,0x47,0xbb,0xdb,0xa6,0x6a,0x85,0xe1,0x02,0xc4,0x2d,0x9a,0x84,0x52,0x62,0x70,0x8e,0xf9, - 0x1e,0x8d,0xbb,0xba,0x19,0xcc,0xf9,0x89,0x36,0xa4,0x8d,0xb1,0x00,0xd9,0xb8,0xb5,0xc5,0x22,0x51,0x77, - 0x1d,0x30,0xb3,0xc0,0x34,0x2d,0x90,0x1a,0xe3,0x26,0x8b,0x57,0x45,0xdc,0x1a,0xab,0xad,0xe8,0x22,0x42, - 0x00,0xcc,0x98,0x95,0xc5,0xda,0xa0,0xf0,0x01,0xdc,0xf8,0x8a,0x71,0xe3,0x06,0x79,0x72,0xc9,0x7d,0x79, - 0x5f,0x84,0x0e,0x34,0xef,0x51,0x34,0x14,0xc4,0x5c,0xe9,0xae,0xf5,0xc8,0xa6,0xcc,0x9b,0xa5,0x10,0x9b, - 0xc9,0x1c,0x17,0xa8,0x0c,0x2c,0xbf,0x00,0xa1,0x70,0x20,0x81,0x3c,0x81,0x56,0xda,0xec,0xc1,0xd0,0xbf, - 0xd4,0x34,0x35,0x54,0xdb,0xce,0xce,0x7c,0xb0,0x15,0x04,0xe0,0x36,0x70,0x1c,0x38,0x9d,0xf6,0x38,0xe9, - 0xa7,0x52,0x40,0xe1,0x18,0x30,0x26,0x17,0xb5,0x75,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7, - 0x82,0x93,0x2a,0xd8,0xd0,0x2b,0x4d,0x06,0xc3,0x8b,0x77,0xc5,0xe4,0x45,0x91,0xbe,0x2e,0x08,0xe3,0xf7, - 0x7c,0xd0,0x86,0x15,0x3b,0x8d,0x9a,0xc3,0x6e,0x9d,0xfd,0xcd,0xba,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd, - 0xee,0xee,0xf4,0x1b,0x68,0x16,0xe1,0x6e,0x36,0x1e,0x76,0x6a,0x9a,0x3e,0x32,0xf9,0x0a,0xd7,0x34,0xab, - 0x01,0x25,0x11,0x9a,0x0a,0x9c,0x5e,0xc3,0x25,0x23,0x68,0x37,0xb7,0xea,0x52,0x93,0x4f,0x4d,0x00,0x0f, - 0x3e,0x4b,0x24,0xe6,0x44,0x7d,0xf8,0xac,0xd8,0x8d,0x9e,0xc1,0xd1,0x2a,0x3a,0x72,0x26,0x7b,0xb0,0x8a, - 0xaa,0x6c,0xde,0xaa,0x96,0xab,0xae,0xbb,0xd9,0x79,0xf6,0x58,0x73,0x28,0x59,0x28,0x61,0x0f,0xdf,0xdc, - 0x51,0xc9,0xd4,0xe6,0x0d,0x57,0xb2,0x42,0x25,0x30,0x76,0xa5,0x39,0xda,0x87,0xfa,0xc1,0xdf,0x06,0xcc, - 0x13,0x9e,0xb3,0x09,0x7a,0x49,0x8f,0x54,0x20,0xa7,0x02,0xd6,0xd6,0x9d,0x28,0x06,0x58,0x60,0x17,0x93, - 0x95,0x29,0xf1,0x12,0x25,0x56,0x54,0x62,0xea,0x4a,0x9c,0x66,0x94,0x1e,0xcf,0x7d,0xd4,0xf6,0x1c,0xb4, - 0xef,0x37,0xfb,0x54,0xeb,0x6a,0xf2,0xae,0x48,0x5f,0x16,0xcc,0xed,0x27,0x93,0x52,0x1a,0xb3,0x75,0xa7, - 0xb6,0x8a,0x74,0x5f,0x99,0xe0,0xcd,0xca,0x40,0x4b,0x3a,0x57,0x0e,0x56,0xd2,0x53,0x5c,0xc9,0xfc,0xd1, - 0x5e,0x1d,0x98,0x4a,0x2d,0x3b,0x3b,0x4f,0x8c,0x2c,0x5d,0x66,0xcf,0x46,0x02,0x89,0x8e,0x42,0x34,0xf0, - 0x58,0xfb,0x43,0x7a,0x6c,0x31,0xdd,0x23,0x17,0x6f,0x31,0x69,0x33,0x17,0x82,0xdb,0xf3,0xeb,0x76,0x1c, - 0x9d,0xcb,0xc5,0xba,0x12,0xe5,0xd0,0xbb,0xfc,0x03,0x10,0xea,0xee,0x07,0x2d,0x81,0xaa,0xd6,0xe1,0x4e, - 0xfb,0x10,0x92,0x58,0x07,0xfa,0x8b,0xbf,0x98,0xeb,0x6a,0xbd,0x00,0x61,0xef,0x20,0x2c,0xff,0x31,0xa0, - 0xa5,0x40,0x42,0x11,0xbd,0x03,0xb7,0x2e,0xdc,0x13,0x94,0x13,0x71,0x7e,0xc2,0xce,0x14,0xee,0xcd,0x5c, - 0xdb,0x39,0x97,0xc8,0x7b,0x3e,0x3d,0xb6,0x32,0xd0,0xec,0x44,0x5b,0x6e,0xc8,0x6f,0xe8,0xc4,0xf9,0x6a, - 0xb1,0xcd,0x25,0x7d,0x46,0x10,0xae,0x6b,0xae,0xfc,0x80,0xa3,0x8a,0x81,0x20,0xc1,0x8d,0x77,0x9e,0xb6, - 0x41,0x44,0x32,0x42,0x8c,0x0a,0xfe,0xb3,0xbc,0xb1,0x09,0x48,0x46,0xf2,0x19,0xab,0xf2,0x4e,0xed,0xeb, - 0xc7,0x4a,0x12,0x96,0x36,0xe1,0x31,0xd3,0xec,0x92,0x08,0x0f,0x61,0x9a,0x52,0x9d,0x9b,0xaf,0xce,0xdd, - 0xbb,0xfd,0xec,0xc2,0xa5,0x84,0xdf,0x2d,0x28,0xf5,0x44,0xc3,0xae,0xfc,0x39,0xaa,0x54,0x67,0xb6,0x72, - 0x75,0x8d,0xf2,0xb8,0x06,0x5e,0x32,0x8e,0x5d,0xaf,0xec,0xc4,0xa8,0x4b,0xf7,0xed,0x63,0xae,0x57,0x5d, - 0xb9,0x26,0xd4,0x3d,0xfb,0xb5,0xc9,0xfa,0xe4,0xfb,0xe7,0xbe,0x7f,0x4a,0x69,0x33,0xb3,0xa7,0xd4,0xe3, - 0xec,0xb2,0x56,0x1f,0xe8,0x8f,0x31,0xf0,0x1f,0x7f,0x20,0x0a,0xc8,0x91,0x5c,0x8f,0xb3,0xf8,0x43,0x66, - 0x5f,0x13,0xcb,0xb1,0xf2,0x4a,0x7c,0xcc,0xb6,0x1f,0x07,0x41,0x98,0x88,0x23,0x65,0xeb,0xff,0xaa,0x02, - 0x1d,0x88,0xf8,0xc2,0x58,0x92,0x8f,0xb7,0xb7,0x57,0x38,0x3c,0x69,0x0d,0xae,0x04,0x04,0xde,0x66,0x1f, - 0x77,0x76,0x66,0x93,0x19,0xed,0x86,0x5f,0xf1,0x78,0x31,0xb9,0x48,0x97,0xea,0x15,0x1e,0xcf,0x27,0xe7, - 0xb4,0x2f,0x9e,0x67,0x1f,0x27,0x97,0xb7,0xb7,0x8b,0x74,0xa1,0xde,0x21,0x75,0xc0,0x7f,0xe6,0x6a,0x72, - 0x95,0x9e,0xa9,0x97,0x54,0xf0,0xde,0xed,0xed,0x75,0x7a,0xad,0x9e,0xd1,0xe3,0xa7,0xdb,0xdb,0xe3,0xf4, - 0x58,0xbd,0x20,0xbe,0xa5,0x88,0x9f,0x26,0x93,0xa7,0x32,0x6d,0xe9,0xd3,0x44,0xbd,0xc9,0xf8,0x20,0x6c, - 0x58,0x61,0xaf,0x5e,0x67,0xaf,0x74,0xfc,0x2e,0x51,0xef,0x33,0x0f,0x27,0xa1,0xa7,0x6e,0x72,0xf3,0x86, - 0x40,0xf2,0x1e,0x24,0xb1,0xaf,0x12,0xc5,0xbf,0xbf,0xd2,0x51,0xf9,0xde,0x83,0xe6,0x24,0xa6,0x12,0x9c, - 0xf1,0x36,0x51,0xcf,0x76,0x76,0x9e,0xb1,0xa5,0xc5,0xcb,0x9d,0x9d,0x97,0xf0,0x67,0x08,0x6a,0x35,0x81, - 0xdb,0x0d,0xbc,0x36,0xe7,0x15,0x0d,0xec,0xef,0xb4,0x1d,0xbc,0x89,0x94,0x6f,0xd4,0x0a,0x8d,0x64,0xae, - 0xc1,0xa7,0x2a,0x13,0x5a,0xf9,0x18,0x61,0x8f,0x98,0xd5,0xf4,0xcf,0x87,0x2c,0x58,0x3b,0x1a,0xf3,0x25, - 0xa6,0x62,0x98,0x58,0x8a,0x61,0xa2,0xc6,0x0e,0x73,0xfb,0xa6,0xff,0x1e,0x27,0xea,0xdd,0xce,0xce,0x3b, - 0xea,0xfa,0x7b,0x98,0x4d,0x3d,0xdf,0xd9,0x79,0x8e,0x3e,0x63,0xc4,0x57,0x66,0x40,0x57,0x32,0x62,0x75, - 0xa9,0xc3,0x39,0xb9,0x0a,0xe7,0xe3,0x6d,0x67,0x3a,0x6e,0x6f,0x5f,0xd3,0x39,0xfe,0xab,0x8e,0x5f,0x24, - 0x93,0xe0,0x14,0x7a,0xaf,0x5e,0x24,0xe9,0x27,0x14,0x5f,0x51,0x63,0x40,0x22,0x2a,0x98,0x08,0xb1,0xca, - 0xad,0xc3,0xfe,0x50,0x37,0xb8,0xaa,0xf7,0x71,0xd7,0x03,0xcc,0x20,0x10,0x2f,0xec,0xa6,0xee,0x7c,0x0a, - 0x9b,0x8f,0x3b,0x13,0x1c,0x13,0xe7,0xe9,0x27,0xd1,0xcd,0x18,0x74,0xdd,0x43,0xe9,0xe2,0x8f,0x2a,0xd3, - 0x99,0x95,0x89,0x3a,0x27,0x40,0x44,0xa0,0xd5,0x4b,0x99,0x92,0x1c,0x1e,0x16,0xfc,0x3b,0x1b,0x98,0x92, - 0x9c,0x78,0x28,0x4c,0x09,0x97,0xea,0xf4,0xe9,0x4a,0xa6,0xe4,0x5e,0x67,0x4a,0x3e,0xa9,0x7b,0x3c,0x25, - 0xb9,0x9a,0xab,0x4f,0x32,0x25,0x17,0xa0,0xcc,0x72,0x7a,0x53,0x97,0xfc,0xd1,0x27,0xd0,0xd9,0xc6,0xd0, - 0xdc,0xe0,0xca,0x3c,0x44,0x67,0xc1,0x5b,0x17,0x57,0xfa,0x74,0x8b,0x2b,0x9b,0xbb,0x71,0xa5,0x44,0x91, - 0x95,0xbb,0x68,0x1c,0x6a,0xb4,0x0c,0x94,0x68,0x63,0xb7,0xb9,0x61,0x8b,0xa4,0xad,0x93,0x4a,0xc3,0x38, - 0x73,0x9e,0x49,0xac,0x18,0x42,0x92,0x90,0xb7,0xe4,0x16,0xab,0x2d,0xed,0xab,0x45,0x7e,0x33,0x9b,0x10, - 0xe2,0xbe,0x73,0x4a,0x14,0xfc,0xf5,0x0a,0x59,0x84,0x21,0x4d,0x21,0xc2,0x8a,0x8d,0x60,0x2f,0xc9,0x38, - 0x73,0xb5,0x3b,0xdc,0x75,0x4d,0x49,0xec,0xd9,0x2d,0x25,0x8e,0xf1,0x6a,0x51,0xd9,0xa5,0x6c,0xf3,0x95, - 0x6c,0xf3,0x2b,0x6c,0xf3,0x0b,0x5a,0x1d,0x46,0x08,0xc4,0xf2,0x1e,0x4b,0x5d,0xe9,0x71,0xc2,0x58,0xd1, - 0x0e,0xad,0xbb,0xf5,0x43,0x10,0x81,0x08,0x69,0x00,0x60,0x78,0x0d,0x06,0xd2,0x1d,0x0c,0x71,0x10,0xb0, - 0x4b,0xc1,0x21,0x1e,0x40,0x66,0x49,0x07,0x42,0x26,0xf1,0x25,0xe3,0x10,0x86,0x1c,0xaa,0xf3,0x8c,0x0d, - 0x45,0x62,0x6c,0x88,0xc5,0xce,0xce,0x02,0x6f,0x2a,0xe8,0xa4,0xc1,0x24,0xd7,0x93,0x6b,0xda,0xae,0x69, - 0x15,0x87,0x04,0xc1,0xaf,0xc1,0x89,0xbc,0x19,0x9d,0x8a,0x66,0x43,0x2e,0x60,0x0c,0xb5,0xcb,0xaf,0x10, - 0xb3,0x96,0x59,0x09,0x1f,0x00,0xd9,0x84,0xd8,0x86,0x39,0x31,0x42,0x25,0x07,0x01,0xa4,0x26,0x54,0x7c, - 0x23,0x10,0x4e,0x7d,0xb8,0x7f,0x94,0x22,0x0c,0x8e,0xbb,0xf2,0x0f,0xce,0x30,0x86,0x7e,0xfa,0x26,0xd0, - 0xe8,0x3d,0x37,0xf4,0xca,0x36,0xd4,0xf7,0x3a,0xc4,0x00,0x1f,0x99,0x9d,0xf3,0x8e,0x23,0x8e,0xf4,0x7e, - 0x69,0x9f,0x94,0x37,0x95,0x1b,0xa6,0x6f,0x5d,0xc9,0xb5,0xda,0x0f,0xaa,0x7a,0xd9,0xa3,0xe2,0x75,0x20, - 0x19,0x5b,0xac,0xe6,0x6d,0xb1,0x9c,0x6b,0xa1,0xd7,0x6f,0x6f,0xfb,0x23,0x0b,0x22,0xa7,0xb1,0xa9,0x0b, - 0x9c,0xb7,0x9c,0xe3,0x4d,0xdf,0x77,0x0b,0x7e,0x20,0x3e,0x17,0x57,0x70,0x14,0x49,0x95,0x1d,0x13,0xfb, - 0xf7,0x02,0x56,0x40,0xe0,0x77,0x15,0xae,0x72,0x9a,0xf3,0xc5,0xec,0x34,0x01,0x15,0x83,0x8f,0x4d,0xc8, - 0x82,0x80,0x60,0xd7,0x31,0x7f,0x12,0x44,0x10,0x06,0xd7,0x05,0xba,0xca,0x14,0x66,0x45,0x95,0x9c,0x63, - 0xfd,0xd4,0x0c,0x6e,0x7d,0x05,0x73,0x53,0xdd,0xf4,0xbd,0xce,0x0d,0x94,0xcf,0x74,0xf7,0xba,0x96,0xfe, - 0x35,0x7c,0x2e,0x6b,0xfb,0x3a,0x16,0xc3,0xda,0xc0,0x8f,0x24,0x84,0x32,0x11,0x95,0x72,0x9c,0x37,0x5c, - 0x56,0x20,0x6a,0x3f,0x23,0x7e,0x0c,0x5c,0x41,0xb4,0x38,0x43,0x0b,0xcf,0xe2,0x65,0xa6,0x30,0x42,0xf3, - 0x3e,0x20,0x77,0x14,0xe2,0x41,0x6e,0x7e,0x79,0xa0,0xde,0x6b,0x97,0xa1,0x8c,0x20,0x3f,0xa4,0x37,0xdf, - 0x77,0x98,0xce,0xbe,0xc3,0xc3,0x05,0xbb,0x3b,0x40,0xea,0x2c,0x6a,0xf1,0x48,0xf8,0xcc,0xa2,0x95,0x1c, - 0xad,0x08,0x93,0x72,0xec,0xa4,0xd1,0xac,0x68,0xd8,0x46,0x59,0x32,0x42,0xf5,0xc5,0x93,0x60,0x26,0xb6, - 0xef,0x70,0x78,0x10,0x49,0x55,0xdb,0x47,0xbe,0x93,0x36,0x7d,0xc2,0xfe,0x34,0x77,0xc9,0xcc,0x02,0xd7, - 0x8b,0x40,0x2a,0xca,0x64,0xc0,0x86,0x61,0xac,0x5d,0x45,0x9c,0xf1,0x1d,0x93,0x58,0xeb,0xb6,0x3e,0xa1, - 0x3a,0xfe,0x01,0x6f,0x30,0xe7,0x92,0x18,0x0a,0x39,0x7f,0x0a,0x1a,0xe0,0x2b,0x30,0x7d,0xb4,0xd4,0x6e, - 0x20,0xa5,0xd2,0x5f,0x59,0x91,0x20,0x88,0x12,0x9b,0x37,0x8f,0x4d,0x6c,0x25,0x42,0x7f,0x8c,0x0a,0x2d, - 0x3f,0xd9,0xf3,0xe6,0x2b,0xe8,0x8b,0x4b,0x5c,0x0e,0x72,0xc4,0xfe,0x7c,0x03,0x31,0x6d,0x7f,0xf4,0x92, - 0xa4,0x07,0xbf,0xcc,0xf6,0x3e,0x69,0xbd,0xdc,0xcb,0xe7,0x74,0x58,0xdc,0x33,0x37,0x0f,0x32,0x7d,0xe3, - 0x03,0x65,0xc7,0x91,0x2f,0x12,0xa9,0x1b,0xee,0x5a,0xaa,0x37,0x66,0xc7,0xf7,0x39,0x04,0xe2,0xef,0x0c, - 0xb0,0x31,0x49,0xc4,0xca,0x81,0x13,0xbe,0x09,0xd3,0xbf,0xb2,0xad,0x25,0xbf,0x9b,0xd3,0xd4,0xe5,0xbb, - 0xd3,0x35,0x30,0x1d,0x37,0xd5,0x89,0xb8,0x55,0x5f,0xbe,0xab,0x10,0x96,0x08,0xa5,0x09,0x38,0x9f,0x10, - 0x61,0xcc,0xa1,0x41,0xe6,0x05,0x7d,0xfa,0x1e,0xf7,0xc0,0x87,0x31,0xeb,0xc3,0xe5,0x95,0x0a,0x08,0xc4, - 0x95,0x73,0xb2,0x91,0xda,0xcc,0xd5,0x16,0xa7,0xed,0x5e,0xc9,0x3f,0x7c,0x87,0x5a,0x5b,0x2d,0xe9,0x95, - 0xfe,0x02,0x83,0xd5,0xb7,0xb7,0x85,0xeb,0x02,0x86,0x30,0xb3,0x1a,0xc8,0xca,0x74,0x85,0x05,0xc3,0xe3, - 0xca,0x5f,0x54,0x4f,0x44,0xe6,0x4f,0xfa,0xe4,0x53,0xd1,0x3a,0xfe,0x33,0x8b,0x38,0x13,0x01,0xf5,0xe2, - 0x68,0xb7,0xde,0x8d,0x96,0x57,0x8a,0x55,0xfd,0xcb,0xab,0x24,0x52,0x55,0x00,0xc0,0x96,0x17,0xcf,0xa2, - 0xfd,0x26,0xd4,0xd3,0x7f,0xdf,0xd9,0x75,0x7a,0xf2,0x6b,0x95,0xbe,0xad,0xbc,0x04,0xdf,0x4a,0xc5,0xca, - 0x8e,0x96,0xce,0x64,0x7f,0xac,0x70,0xeb,0x6e,0x18,0x36,0xde,0x61,0x6f,0xa3,0xa0,0x66,0x46,0xfa,0x80, - 0x63,0x05,0xb4,0xca,0x19,0x57,0xa4,0x5a,0x59,0x73,0x88,0xce,0x5d,0xbe,0xfd,0x9b,0x5d,0x95,0x37,0x13, - 0x70,0xf7,0x83,0x98,0x78,0xcb,0xc6,0x35,0x12,0x8f,0x12,0x86,0xc4,0x3b,0x72,0xe9,0x44,0x09,0x64,0x87, - 0x41,0x55,0x0e,0xc3,0x0b,0x6c,0xbe,0xb5,0x07,0xdb,0xa6,0xea,0x9e,0xad,0x58,0x08,0x50,0xaf,0x21,0x67, - 0x64,0x4c,0xc6,0x61,0xce,0xe0,0x7b,0x10,0x58,0x3e,0xb5,0xe2,0x5a,0xb4,0x1d,0x1a,0x37,0x19,0x73,0x86, - 0xbb,0xaa,0xac,0xf5,0xa9,0xab,0x92,0x9e,0x39,0x72,0x9a,0xf5,0x87,0xea,0x48,0x8a,0x02,0x23,0xda,0x71, - 0x29,0xa1,0x3e,0xdd,0x55,0x33,0x25,0x64,0xae,0xde,0xdd,0x08,0x22,0x4a,0x13,0xc8,0xd3,0xc5,0x8a,0x06, - 0x15,0x8a,0xbe,0xf6,0x94,0xaa,0x11,0xc2,0x5d,0x38,0x3b,0x67,0x58,0x6b,0xd3,0x3b,0xf4,0x5d,0xa6,0x7b, - 0x98,0xcf,0x28,0x90,0x4a,0xeb,0x6e,0x74,0x6f,0xfe,0x0a,0x56,0x50,0x62,0xc8,0xc3,0x61,0x0f,0x22,0xbe, - 0x05,0x8f,0xaa,0xe1,0x90,0x5b,0x08,0xa4,0x6d,0x32,0x29,0x69,0xcf,0x94,0x20,0x2a,0xc3,0x7d,0x13,0x26, - 0xcb,0x41,0xe8,0xbf,0xb5,0xd1,0x8e,0x6b,0x57,0x14,0xf8,0xdd,0x95,0xfa,0x28,0xb2,0xb3,0xfb,0x51,0x74, - 0x9f,0x0d,0xc9,0xef,0xbb,0x80,0xa5,0xf7,0x69,0x91,0x37,0x7b,0x0a,0x44,0xee,0x6a,0xa7,0x17,0x5f,0xab, - 0xe2,0x0b,0x96,0xfb,0x13,0x24,0x23,0x8e,0xed,0x64,0x14,0x8d,0xed,0xa2,0x43,0x4e,0xd4,0x45,0x65,0xcc, - 0x8f,0xa4,0x48,0x39,0x2f,0x4a,0xbd,0xe7,0x5a,0x96,0xe2,0x92,0xfa,0xd1,0x24,0xb2,0x45,0x65,0xef,0xca, - 0x1b,0x82,0xe3,0x45,0x15,0x7a,0xc8,0xb4,0xd9,0x02,0x0e,0x6d,0x0c,0x90,0xd4,0xd3,0xf1,0x26,0x4c,0xaa, - 0xc0,0x7c,0x97,0x29,0x1a,0x07,0x73,0x5c,0xb1,0xa6,0x7d,0x52,0x3a,0x01,0xd8,0x58,0x3f,0x2a,0x6d,0xe4, - 0x81,0x3a,0x83,0xdf,0x92,0x96,0xcd,0xa2,0x2a,0x79,0x16,0x72,0xea,0x65,0x65,0xc4,0x55,0x46,0xea,0x7f, - 0x9e,0x37,0x4f,0x0a,0x46,0x7a,0x30,0x70,0x55,0x71,0x78,0xa7,0x92,0x83,0x63,0x73,0x3f,0xd0,0x13,0x89, - 0x72,0x13,0x86,0xbd,0xf7,0xf7,0x65,0xf4,0x55,0x02,0x1c,0x05,0xd2,0x4a,0x98,0x0e,0x12,0x5c,0xf7,0x0d, - 0xc3,0x09,0x5c,0xc9,0x95,0x98,0xcb,0x21,0x2c,0x8a,0x79,0x52,0x41,0xc3,0x43,0x0c,0xaa,0xef,0x5b,0x98, - 0xfd,0x9e,0xb3,0x69,0x18,0x3f,0x43,0xbf,0x2b,0x96,0xcc,0x12,0x95,0x14,0x07,0x86,0x18,0x1d,0xef,0x2b, - 0xa3,0x9c,0x6e,0x17,0xf3,0x48,0xe2,0x9f,0x5d,0x22,0x7e,0xa7,0x34,0x15,0x28,0xae,0x99,0x46,0x9f,0xd2, - 0xb4,0xcc,0x39,0x47,0x0a,0x81,0xde,0xbb,0x2e,0xa7,0x3b,0x3b,0x6c,0x87,0xe8,0xa3,0x5a,0x72,0xae,0xca, - 0xc1,0x10,0x47,0xf7,0xd8,0xf2,0x2e,0x62,0xfb,0x6e,0xe8,0xf2,0x3d,0x84,0xec,0xec,0x9c,0x54,0xee,0xc2, - 0x5b,0x8b,0xde,0x84,0xd9,0x22,0xa2,0x9b,0x4d,0x37,0x11,0x6b,0x2b,0x65,0x60,0xac,0xc3,0x80,0xb2,0xef, - 0x86,0x07,0xfc,0x4e,0x06,0x5c,0x9a,0xf2,0xb4,0xfc,0xdb,0xe1,0xe5,0x8c,0xab,0xac,0x33,0x7b,0x2f,0x65, - 0xf6,0xcc,0x1a,0xbd,0xe6,0xb0,0x0e,0xc4,0x50,0xad,0x0e,0x0f,0x8e,0xc6,0x73,0x33,0xd3,0x4e,0xce,0xe7, - 0xfc,0xba,0x76,0x0f,0x30,0x92,0x65,0x56,0x13,0xc3,0x57,0x10,0x7f,0x57,0x11,0x4f,0x37,0x87,0x8c,0x4b, - 0xc5,0xf1,0x69,0xd6,0x26,0x1d,0x1f,0x3d,0xc4,0xe9,0x71,0xaf,0x1b,0x26,0xa2,0x4b,0x65,0x3c,0xa2,0xd2, - 0x99,0xb1,0xed,0x3c,0x87,0x65,0x4b,0x7a,0xa1,0x9c,0x19,0x62,0xba,0x58,0x73,0x90,0x0d,0x6b,0x3b,0xc8, - 0x13,0x60,0xe6,0xa3,0x67,0xcc,0x57,0xf1,0xad,0x3b,0xe1,0xec,0x46,0x0b,0x08,0xb1,0xb1,0xaa,0xf5,0x67, - 0xa7,0x7a,0x67,0xc7,0xcc,0xb5,0xf5,0x32,0x31,0x6a,0x6b,0x35,0x53,0xe7,0x8a,0x3a,0xb3,0xee,0xf0,0x53, - 0x3f,0xfb,0xd3,0x9c,0x81,0x3a,0xb3,0x96,0x8a,0x04,0xc9,0x51,0x32,0x64,0xbe,0x66,0xed,0x92,0x65,0xa2, - 0x9f,0x99,0x90,0x4f,0x96,0x5f,0x61,0x25,0x2e,0x7d,0x9b,0x95,0x87,0x0f,0x8f,0x8c,0xfe,0xc8,0x52,0x5c, - 0xb4,0x14,0x26,0xc5,0xad,0xda,0x1b,0x0b,0xd4,0x85,0xa9,0xef,0x85,0x8f,0x00,0x5c,0x4d,0x10,0xc7,0x69, - 0x5e,0xe4,0x0d,0xe5,0xda,0x0f,0x5e,0xc8,0x07,0xf5,0xa8,0x20,0x9a,0x26,0x27,0xda,0xf1,0x20,0xab,0x7c, - 0xbd,0xaa,0xa2,0x56,0xd9,0x02,0xc3,0x66,0x3f,0xcc,0x2a,0xdf,0x11,0x04,0x5f,0xb1,0x35,0xaa,0x9a,0xaf, - 0xc5,0x2b,0x39,0x66,0x41,0xd7,0x91,0xe4,0x5f,0x4e,0x25,0x53,0x9c,0x3e,0xad,0x08,0x2b,0x30,0x5d,0xc6, - 0x3c,0x4a,0x98,0xc0,0xa1,0x57,0xbb,0x49,0x56,0xcf,0x13,0x58,0x43,0x87,0x42,0xe7,0xbf,0xeb,0xee,0xaa, - 0xf1,0xb9,0x69,0xa3,0xdb,0xb7,0x56,0x58,0x19,0xd8,0x3b,0xf7,0x99,0xc1,0x49,0x64,0xa3,0x3d,0xa5,0x37, - 0x51,0x1a,0x55,0xf8,0xf1,0x81,0x1f,0xcc,0x5d,0x7b,0xbb,0x19,0x0c,0xfe,0x8a,0xdd,0xfb,0x51,0x7a,0x7f, - 0xb7,0x45,0xbc,0x20,0x76,0x2b,0x87,0xdd,0xb7,0xbf,0x4f,0x3a,0x10,0x79,0xb3,0xe1,0xa2,0x37,0x8b,0x2e, - 0x1d,0x55,0xeb,0xee,0x27,0x75,0x92,0x4c,0xe2,0x5b,0xd7,0xd1,0x66,0xe0,0x6a,0x77,0xd1,0x59,0x74,0x08, - 0xd3,0xf2,0xae,0x70,0xde,0xeb,0x44,0xcd,0x75,0x24,0xd6,0x13,0x50,0x41,0x33,0x79,0x14,0x99,0x93,0xef, - 0xef,0x95,0x25,0x9a,0xc5,0x71,0x8c,0x68,0x9f,0xef,0x7b,0x49,0x0c,0xa0,0xde,0xa8,0xd7,0x5a,0x39,0x44, - 0x44,0xe8,0xe1,0x4f,0x6e,0x7d,0x57,0x59,0x84,0xc4,0x61,0x29,0x83,0xc2,0xf4,0xed,0xbf,0x38,0x44,0x50, - 0xb5,0x9b,0xf1,0x83,0xfa,0xb6,0x62,0xad,0x79,0x6e,0x8d,0x7d,0x7d,0xa0,0x6c,0x7d,0x95,0x4b,0xb4,0x94, - 0xc6,0x06,0x02,0x0f,0x6a,0x1a,0x53,0x05,0x3f,0x57,0xf1,0x61,0x34,0x6d,0xeb,0x39,0x0d,0x82,0xad,0x86, - 0xe9,0x37,0x9f,0xe3,0xef,0x42,0xb7,0x79,0x74,0x74,0xb7,0x4d,0xfb,0xf6,0x94,0x49,0xc6,0x3b,0x4c,0xe2, - 0x0d,0x7a,0x1d,0x45,0x30,0xd3,0xff,0x9e,0x88,0x30,0x37,0x59,0xb7,0xb7,0xe0,0x15,0xc5,0x1c,0xc5,0x75, - 0xd8,0xba,0x18,0x3b,0xcb,0xa1,0xb8,0xd8,0x25,0x2c,0x0f,0x2b,0x8f,0xfb,0x27,0xab,0xb6,0xad,0xca,0xfb, - 0x98,0x06,0xa9,0x14,0x61,0x05,0x76,0x73,0x6e,0x98,0x18,0x2a,0x53,0x2d,0xa5,0xd1,0x22,0x38,0xd5,0x1f, - 0x1d,0xf0,0x63,0x6c,0x47,0xa9,0xa9,0x0a,0xe2,0x6e,0xc6,0xa6,0x92,0x1b,0x50,0xd7,0x71,0x39,0x31,0x6b, - 0xb2,0x1b,0xd9,0x8c,0x28,0xad,0x27,0x6c,0x3e,0x6b,0x33,0x12,0x9f,0x63,0x17,0x90,0x21,0xcd,0xb6,0x75, - 0x7b,0x5b,0xdb,0x5a,0xd2,0xa1,0x66,0x5c,0x45,0x21,0x74,0xea,0xe0,0x3c,0xe6,0xb0,0x3c,0x2f,0xf9,0xd6, - 0x9a,0x83,0xfd,0x24,0x8c,0xc9,0x6f,0xa7,0xd1,0x84,0xbf,0x26,0xc2,0x91,0xaa,0x33,0x70,0xf6,0x6d,0xe5, - 0x43,0x25,0x47,0xc7,0x9f,0xe2,0x6e,0x51,0x62,0x1e,0x7a,0x88,0xb8,0xe5,0x8d,0xd3,0x4f,0x2d,0x91,0xea, - 0x3f,0x0d,0xcd,0x43,0xcb,0x8e,0xe1,0x14,0xc2,0xfb,0xfc,0x03,0x11,0x80,0xad,0xc9,0xaa,0x04,0x93,0x4b, - 0x23,0x98,0x18,0x72,0x10,0x59,0xb7,0x3f,0xa0,0xc5,0x9f,0xd4,0x62,0x17,0x95,0xde,0x3f,0x9e,0x9a,0xe0, - 0x06,0xf7,0x79,0xda,0x54,0x2f,0x36,0x73,0x5a,0xf6,0xa3,0x35,0x07,0x08,0xac,0xf6,0x7b,0xd8,0xda,0x1c, - 0x41,0xbd,0xc1,0x04,0xbb,0xbc,0xbe,0xab,0xab,0xa9,0x6e,0x1a,0x3d,0xb3,0x4b,0x6f,0x0c,0x68,0x24,0xbe, - 0x8e,0xf8,0x11,0x6c,0xcb,0xc3,0x46,0xd1,0x3c,0x2c,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x46,0xc1,0xae,0x61, - 0x68,0x10,0x2c,0x04,0xa5,0xd9,0xa5,0x86,0x71,0x31,0xbb,0x00,0x38,0x74,0x3e,0xc1,0x6c,0x07,0xef,0x29, - 0xed,0xec,0x26,0x28,0xf0,0xb0,0x57,0xe0,0x21,0x7c,0xd4,0x1c,0xbb,0x16,0x76,0x83,0xc9,0xa1,0xe3,0x79, - 0x6c,0x6c,0xbf,0x3d,0xc1,0x0b,0x63,0xed,0x1c,0x41,0xaf,0x82,0xa9,0x37,0x53,0x46,0x53,0x4d,0x6b,0x19, - 0x8c,0xaf,0x38,0xe5,0xe1,0x15,0xa7,0x1b,0xa3,0x6b,0xfc,0x34,0x78,0x02,0x7c,0xbb,0x47,0x80,0x0b,0xe1, - 0x3e,0xc4,0x81,0x0c,0xcc,0x91,0xb7,0x37,0xb0,0xcc,0xc9,0xed,0x6d,0x40,0xe9,0x13,0x46,0x5c,0x95,0x56, - 0xa7,0x1f,0x1d,0xb3,0xbd,0xf2,0x6e,0x5c,0xf3,0x7c,0xd4,0x12,0xcb,0xce,0x07,0x46,0x8f,0x6e,0x30,0x49, - 0x12,0x1c,0xfd,0x0e,0xf7,0x9b,0xcb,0xd2,0xd8,0x54,0xd0,0xa8,0x53,0x94,0x16,0x21,0x58,0x07,0x3d,0xaf, - 0x23,0x5e,0x1d,0x67,0xbc,0x6f,0x5c,0x18,0x22,0xbb,0x83,0xb6,0x71,0x9b,0x69,0x4e,0x5b,0x19,0x9e,0xe2, - 0x84,0x7b,0x98,0x47,0xf0,0x18,0x04,0x5d,0x43,0xa0,0x2c,0x79,0x8b,0x2b,0xd8,0x24,0xd9,0x32,0xbc,0xad, - 0x72,0x1a,0x0b,0x5b,0x57,0xcb,0x5c,0xf2,0xf8,0x65,0xe2,0x7d,0x00,0xd8,0x90,0xfc,0xe8,0x8a,0x46,0xbb, - 0xec,0xc6,0x04,0xf5,0xa6,0x2b,0xd6,0x07,0x43,0x14,0xe6,0x36,0x39,0xed,0x24,0xe3,0xf6,0x34,0x15,0x65, - 0x71,0x67,0xd6,0x4c,0xf3,0xbe,0x41,0xc5,0x5d,0x71,0x74,0x26,0x78,0x70,0xa6,0xd8,0x26,0x36,0x0a,0x9a, - 0x5b,0x84,0x3e,0xc3,0xe3,0x7a,0x80,0x7e,0xa2,0x07,0x65,0x86,0xd6,0xef,0x63,0x72,0x69,0xcd,0x77,0x23, - 0x7a,0xea,0x34,0x1d,0x17,0xfc,0x52,0xb8,0x7e,0x74,0x2f,0xe1,0xd4,0x5e,0xf4,0xe1,0xaf,0x4f,0x20,0xde, - 0xa6,0xcc,0xc2,0x9c,0xc3,0xea,0x88,0x71,0x86,0x77,0x92,0x37,0x0f,0x06,0x5a,0x60,0x32,0xc3,0x3d,0x0f, - 0x90,0xd4,0xc6,0x85,0x3d,0x3d,0xb4,0x80,0xbd,0xa3,0xfb,0x18,0x46,0xce,0x9d,0x41,0xcc,0xe5,0xb7,0x4f, - 0x84,0x88,0xf0,0x0b,0x9a,0xf1,0x78,0xf3,0x7b,0x1b,0x7d,0x2f,0xd9,0x75,0x78,0x49,0xe2,0xa1,0x44,0x4a, - 0x3c,0xad,0xdd,0x34,0x38,0x2f,0x8a,0x10,0x93,0x75,0xb0,0x91,0xc4,0x60,0xff,0x53,0xdb,0xb3,0xd3,0x56, - 0x28,0x60,0x88,0x22,0x96,0xb0,0x18,0x9d,0x71,0x3d,0x36,0xa6,0xbc,0x90,0x31,0xdc,0x10,0x2f,0x0e,0xcc, - 0x6e,0x1d,0x5a,0x9c,0xa3,0xad,0x3b,0xbf,0x26,0xd1,0x71,0x15,0x07,0x23,0x67,0xaf,0x3a,0x74,0xf1,0xe5, - 0x6c,0x77,0x97,0x5f,0x4b,0x8c,0x25,0x35,0x05,0xd6,0x5d,0x44,0x1b,0xb8,0x13,0x6c,0x46,0xdf,0xee,0x0c, - 0x08,0x03,0xf5,0xd4,0x59,0xec,0x8c,0xfb,0x03,0xad,0xa2,0xdf,0xd3,0xf5,0xa4,0x96,0xf3,0x43,0x66,0x6b, - 0x92,0x9b,0xe3,0xc4,0x1c,0x2b,0x7c,0xdf,0x89,0x35,0xb8,0x70,0xb7,0x21,0x13,0x80,0x1c,0x13,0x05,0x1a, - 0x19,0x3b,0x05,0x6d,0xa3,0x17,0x7a,0xfa,0x42,0x5f,0x2d,0xf9,0x70,0xcf,0xc5,0x3f,0x22,0x99,0xd0,0xb6, - 0x26,0xc6,0xf3,0x64,0x5e,0x4d,0x3f,0x19,0xec,0xe1,0x3a,0x46,0x8b,0x18,0x64,0xae,0x7b,0x44,0xb3,0x23, - 0x77,0xfb,0xf7,0xd4,0x4c,0x3b,0x28,0x90,0xd0,0x97,0xaa,0xb3,0x61,0xe4,0xd8,0xbf,0x27,0xfb,0xc6,0x84, - 0xb5,0x30,0x0e,0xbe,0x41,0x14,0x89,0xf4,0x30,0x62,0x67,0x5f,0x1b,0xf0,0x62,0xe8,0xde,0xac,0x9b,0xca, - 0x86,0xd9,0x37,0xd2,0xc7,0x55,0xe7,0x2a,0xee,0x43,0x89,0x6e,0x71,0x34,0x5e,0x81,0xd5,0xce,0xb6,0xb7, - 0x57,0x88,0x95,0x4d,0x7b,0xe3,0x32,0xaf,0x71,0x77,0x48,0x2e,0xce,0xbc,0xfb,0xaa,0x21,0xb2,0x5b,0x18, - 0x41,0x22,0xbe,0x4d,0x48,0x8c,0xfb,0x91,0xe3,0x09,0x39,0xd1,0xbc,0xc0,0xfd,0x66,0x37,0xae,0x04,0xdf, - 0x12,0xec,0x0b,0x0d,0x84,0x63,0xc9,0xd1,0x4e,0xa1,0xff,0xd1,0x06,0xf1,0x61,0x8a,0x25,0x82,0x42,0xaa, - 0x11,0x9d,0x31,0x93,0xfb,0xcc,0x6b,0x72,0x2b,0xf4,0x80,0x16,0x6c,0xae,0x23,0x5c,0xa9,0x25,0xcf,0x89, - 0x0e,0x54,0xea,0x69,0x65,0xd9,0x87,0x6b,0xe5,0x23,0x2b,0x4d,0x27,0x4d,0x97,0x65,0x38,0x72,0x11,0x9e, - 0x0c,0xea,0xe6,0x8b,0x55,0x76,0xb3,0x1a,0x90,0x9f,0x28,0x23,0x20,0x44,0x0a,0x84,0x89,0x7c,0xbc,0x88, - 0x3f,0x4d,0x24,0x21,0x01,0x4e,0x4d,0x26,0x3d,0x71,0x26,0xfd,0x06,0x99,0xbc,0x53,0x7d,0x09,0x7e,0x4d, - 0x81,0x22,0xa4,0xc4,0x92,0x3d,0x21,0x91,0x49,0x4f,0x41,0x7a,0xc0,0x2d,0x23,0xf7,0x3e,0xc4,0xae,0xec, - 0xfb,0x04,0xe4,0x4b,0x8b,0x71,0xdf,0x8b,0xa2,0xc4,0x01,0x57,0x94,0x7a,0xdf,0xea,0xd2,0x63,0x27,0xf6, - 0xc5,0xa5,0x8f,0xc3,0x2c,0x62,0x9f,0x20,0xc6,0x62,0x54,0x62,0xce,0x57,0x6e,0x9d,0x9f,0x89,0x05,0xdb, - 0x3d,0x2d,0x6d,0x8e,0x99,0x37,0x65,0xbc,0x52,0x4d,0x41,0xeb,0x8b,0xe0,0xca,0x4a,0xd4,0x61,0x57,0x56, - 0xdc,0x19,0xa5,0x30,0x98,0x3e,0x93,0xa0,0xb6,0x0f,0x2c,0xa4,0xd9,0xc9,0x09,0x3d,0x23,0x83,0xf2,0x61, - 0xb2,0x62,0xdc,0xdd,0xf9,0xca,0x93,0x22,0x42,0x03,0x5a,0xd1,0xa0,0xe9,0x1e,0x5f,0x44,0x13,0xed,0x86, - 0xe5,0xdc,0x97,0x3e,0xc0,0xab,0x14,0x66,0xad,0x61,0x90,0x8a,0x2b,0x99,0x8c,0x40,0x54,0x12,0xd2,0xe3, - 0x15,0x31,0x47,0x9d,0x50,0x30,0xf9,0x5d,0xfc,0xce,0x56,0x1f,0xb1,0xb9,0x8c,0xd2,0x50,0x96,0x65,0x87, - 0xa4,0xf3,0xb1,0xce,0x3a,0x04,0x65,0x69,0x08,0xca,0xd2,0x11,0x94,0x65,0x8f,0xa0,0x2c,0xfb,0x04,0x65, - 0xd9,0x23,0x28,0xcb,0x41,0x82,0xb2,0xfc,0xcf,0x09,0x4a,0x3b,0x20,0x43,0x51,0xca,0x4b,0x1a,0xdd,0xc8, - 0x6e,0xa0,0x3d,0xae,0x4e,0xcb,0x34,0xa8,0xc1,0x38,0x6b,0x94,0x7e,0x71,0x92,0x4e,0x7d,0x71,0x47,0xca, - 0xcb,0x26,0x33,0x13,0xea,0xf4,0x29,0xff,0xd9,0x8d,0x08,0x23,0xc7,0x2b,0x0e,0xa2,0x9c,0x74,0x2e,0xae, - 0x06,0x76,0xf6,0x6f,0xe9,0x50,0x11,0x1c,0x0e,0x7c,0xfd,0x2b,0x75,0x75,0xcd,0x94,0x58,0x8e,0xfb,0xec, - 0x9b,0x3e,0xa7,0x4e,0x07,0x7b,0x02,0x90,0x30,0x71,0xd3,0x19,0x72,0xf8,0x39,0xb5,0xde,0x93,0xbb,0x6d, - 0x18,0x19,0x9d,0x86,0xe8,0x1d,0x26,0x5d,0x96,0x4d,0xda,0x8d,0xba,0x38,0xce,0x85,0x61,0x77,0x89,0x6e, - 0x77,0x74,0x89,0x2c,0x6b,0x90,0xd7,0x35,0xff,0x73,0x01,0xdd,0x6c,0x24,0xd2,0x7d,0x0e,0xff,0x73,0x20, - 0x71,0x08,0xd9,0x7e,0xce,0xc0,0x4a,0xc9,0x11,0x7f,0x2a,0x1b,0xec,0xd0,0x10,0x89,0xdd,0x36,0x52,0xcb, - 0xa6,0x05,0x82,0x0f,0x5a,0x74,0x13,0x09,0x1c,0x1d,0xeb,0xb3,0x63,0x87,0xc8,0xee,0xd3,0x3b,0x77,0x30, - 0xf9,0x9d,0x4a,0x5b,0x66,0x70,0xbb,0x33,0x0d,0x47,0x52,0x42,0xb4,0x84,0x55,0x2b,0x99,0xe7,0x8a,0xb7, - 0xe3,0xda,0x78,0x5f,0x38,0xe8,0x0c,0xac,0xb6,0x1f,0xa8,0x7b,0x0f,0x54,0x64,0x48,0xf6,0x76,0x74,0x59, - 0xe7,0xcb,0x67,0xd6,0xe7,0xc0,0xbf,0xc2,0x66,0xc2,0xe4,0x3a,0xb5,0x67,0x50,0xc4,0xa5,0x71,0xb9,0x20, - 0xd8,0xd2,0x6a,0x20,0xd4,0xbf,0x9f,0x6b,0x09,0x46,0x1e,0x06,0xe4,0xca,0xb3,0x2a,0x58,0x80,0x2a,0xf0, - 0x6c,0xe2,0x5d,0xdd,0xe1,0x97,0x72,0xb1,0xfe,0x12,0xf6,0xc8,0xbe,0x5b,0x5f,0x57,0xe2,0x2b,0x08,0x8d, - 0xc5,0xb9,0x65,0x0e,0x68,0xe3,0xf6,0xc2,0x88,0x07,0xba,0x05,0x35,0x10,0xd3,0xca,0xc5,0xa7,0xac,0x5d, - 0x77,0x0a,0x03,0x0f,0x88,0xab,0x81,0xcb,0xa5,0x10,0xa2,0x32,0x24,0x51,0xe0,0xfd,0xd1,0x25,0x59,0xaa, - 0x85,0x1e,0x42,0x5e,0x73,0x60,0x72,0x43,0xe6,0x24,0xa0,0x18,0x1f,0x1a,0x6a,0x91,0x9d,0x96,0xfe,0xe3, - 0x6a,0x75,0x58,0x2b,0xaf,0xce,0x41,0x12,0x5c,0x2b,0x17,0x57,0x6c,0xff,0x7a,0x7d,0xa2,0x9f,0x3a,0x16, - 0x29,0xe5,0x38,0xbd,0x7d,0xd7,0x2d,0x6b,0xea,0x2a,0x3c,0x27,0x8d,0x79,0x62,0x68,0xd1,0xf4,0x0b,0x97, - 0x04,0x25,0xb1,0x8b,0x00,0x38,0x81,0x73,0xb8,0x02,0x31,0xb8,0x41,0x1e,0xd4,0x12,0x6b,0x9a,0x7d,0xa8, - 0xd3,0xe8,0xf8,0x02,0x04,0xfe,0x43,0x68,0x18,0x4a,0x48,0xc9,0xb9,0xf2,0x32,0xd8,0xbb,0xe9,0xb2,0x8c, - 0xfb,0x22,0x13,0xa9,0x21,0xe1,0x3a,0xc6,0xc6,0x4c,0xdb,0xaa,0x4e,0x20,0x38,0xac,0xee,0x3a,0x24,0xa6, - 0x83,0x72,0xc3,0xdd,0xb8,0x61,0xcc,0xdd,0x80,0x5a,0x09,0x84,0x1f,0xf3,0xf0,0x53,0xa7,0x39,0x64,0xd1, - 0x00,0xa1,0xbd,0x01,0x55,0x59,0x97,0x31,0x0f,0x7c,0x69,0x7b,0x3a,0x59,0x3a,0x37,0xfe,0xe0,0x22,0x67, - 0x2d,0xa2,0xd7,0xda,0x52,0x7f,0xe9,0xfd,0xdd,0x25,0x42,0x14,0x5a,0xe9,0x97,0x8a,0xfc,0xcd,0xea,0x01, - 0x35,0x15,0x38,0xa9,0x76,0xa2,0x5f,0xf8,0xcd,0xfd,0xcb,0xea,0xe1,0xfe,0xc3,0xbf,0x3d,0x38,0x53,0xd1, - 0x2f,0xf2,0x18,0x25,0xbd,0xcc,0xaf,0x7d,0xe6,0xd7,0xe1,0x05,0xa1,0x33,0x03,0x0b,0xf0,0xde,0xb3,0x20, - 0xa4,0x2f,0xb7,0x5e,0xf8,0x59,0xf6,0x17,0xc5,0xba,0xbe,0x89,0x56,0x43,0xd7,0x35,0x34,0xc8,0x84,0x95, - 0x53,0x38,0xfb,0x9e,0x85,0x3e,0x9e,0x41,0x3f,0xe3,0x4f,0x55,0xf6,0xa9,0xfa,0x83,0x08,0x9d,0x08,0x86, - 0x6b,0x74,0x4f,0x59,0x3b,0xb9,0xff,0x28,0xdf,0x3a,0x87,0x12,0x38,0xfa,0xa5,0x8c,0x1e,0x7c,0x73,0x3f, - 0xbd,0xff,0x88,0x4a,0x11,0xd6,0x30,0xef,0xea,0x53,0xe5,0xcb,0x7b,0x2f,0x9c,0x9d,0xff,0x73,0xb0,0x3f, - 0x8e,0x92,0x6f,0xf6,0x19,0x11,0x5e,0xb8,0x90,0x77,0xa7,0xb5,0xd6,0xbf,0xeb,0x18,0x91,0x96,0x17,0x2e, - 0xd1,0x47,0x15,0xb7,0x17,0x81,0xab,0xb3,0x32,0x5b,0x89,0x18,0x46,0x39,0x4a,0x31,0x62,0xa3,0x99,0x6b, - 0xce,0xa1,0xa3,0x59,0x51,0xaf,0x14,0x97,0xf0,0xea,0x5a,0x05,0x75,0xa8,0x3a,0x1e,0xa8,0xf9,0x3c,0x6f, - 0x82,0x6b,0x2f,0xd5,0x49,0x99,0x3d,0xd8,0x8b,0x7f,0xb9,0x4c,0x68,0x2d,0x2e,0xcb,0x6c,0x38,0xe6,0x89, - 0x5b,0xb7,0x93,0xd0,0xa4,0x20,0xb4,0x6d,0x9a,0xa0,0xcb,0x3f,0x2c,0x97,0xb0,0x9c,0x86,0x97,0x37,0x22, - 0xb0,0xc2,0xe4,0xf5,0xea,0xce,0x2a,0x4d,0x6c,0x9b,0xfd,0xa4,0xfb,0xe1,0xae,0xd7,0x3b,0xd2,0xe7,0xf7, - 0xa8,0x77,0xbf,0x3c,0x89,0x0f,0x1f,0xef,0xfd,0xeb,0x08,0x3d,0xfc,0xf4,0x87,0x3d,0xbc,0x57,0xaa,0x68, - 0xef,0xde,0x41,0x84,0x6a,0x5f,0x55,0x97,0xb6,0x5a,0xaa,0xeb,0xe9,0xa6,0x4c,0xc6,0x29,0xe0,0xd5,0xe3, - 0xae,0xbe,0xc8,0xc5,0x72,0x51,0x1f,0x88,0xaf,0x03,0x51,0xbd,0xc7,0x71,0xd6,0xeb,0x3d,0x7b,0x99,0x62, - 0xa4,0x3e,0x96,0xd9,0x61,0x14,0xac,0x89,0xe7,0xe1,0x22,0x7b,0xe5,0x61,0x74,0xa4,0xde,0xa2,0x94,0xd8, - 0x5f,0x3e,0x65,0x18,0xa3,0x4c,0x01,0x36,0xaa,0xc2,0x64,0xb0,0x51,0x37,0xe4,0xf0,0x62,0xdc,0xed,0xd2, - 0x7f,0x30,0xe1,0x29,0xdd,0x5d,0xbb,0x36,0xe3,0x99,0x44,0x22,0x46,0x9b,0xf2,0xc4,0x79,0xfe,0x8e,0x66, - 0xa4,0x87,0x6f,0x72,0x83,0x90,0xf8,0x9c,0xcf,0xa8,0x53,0xbf,0x96,0xd9,0x8d,0x10,0x13,0xaf,0x35,0x11, - 0xce,0x04,0x6a,0x54,0xf0,0xac,0x20,0xe6,0x73,0xe8,0x86,0xd5,0xa6,0x98,0xc3,0x30,0x83,0xe8,0x7a,0x82, - 0xa2,0xd9,0x8a,0x27,0xe9,0x63,0xb1,0x44,0x82,0xbd,0xee,0x97,0x33,0x75,0x0d,0xd1,0x0e,0xec,0xab,0xf0, - 0xca,0x6d,0x7e,0x27,0xf7,0xc0,0xb2,0xf7,0x86,0x02,0x75,0xdf,0x49,0x28,0xce,0x4a,0x1a,0xcc,0xcc,0xec, - 0x3a,0xa2,0x47,0x8e,0x94,0xbd,0xfc,0x71,0xb0,0x23,0x9d,0x70,0xf7,0xe9,0xd3,0x32,0x48,0x80,0x2b,0x97, - 0xa4,0xfc,0x50,0x7e,0x2a,0xab,0xcb,0xd2,0x54,0x8a,0xb4,0x5e,0xf4,0xfc,0xf4,0x4c,0x0d,0x05,0xc7,0x4f, - 0x1f,0x97,0x2a,0xb8,0x84,0x11,0x1f,0x1e,0xcf,0x8b,0x53,0x3d,0xbd,0x9e,0xce,0x35,0xee,0x9d,0xa6,0x3e, - 0x95,0x6b,0xf5,0x8a,0x20,0xf2,0xf0,0x7f,0x7e,0xb9,0x1c,0xdd,0x3b,0x7a,0xa0,0x9e,0x43,0x56,0x76,0xcc, - 0x7b,0xeb,0xf8,0x98,0xc8,0xb1,0x9b,0xb5,0x7a,0x47,0x49,0x9e,0x4c,0x75,0x57,0xf8,0x89,0x67,0x8f,0x7a, - 0x39,0x9c,0xfb,0xd3,0xcf,0xcf,0xcb,0x8b,0xa2,0xae,0x4a,0x73,0x1f,0xfa,0x76,0x27,0x01,0x92,0x3c,0xee, - 0xa9,0x7a,0x56,0x66,0x2f,0xcb,0x9d,0x9d,0xe1,0xdc,0x2e,0xc0,0xab,0x17,0x65,0xf6,0x8e,0xca,0x1a,0x97, - 0xa2,0x32,0xbf,0x28,0xce,0xc0,0x29,0x8c,0x56,0x34,0x61,0x8f,0xcf,0xf8,0xc2,0xa9,0x4e,0xf9,0x37,0x65, - 0xf6,0x82,0xca,0x3f,0x58,0x34,0x85,0xbe,0x25,0xdc,0x33,0xa3,0x22,0xc6,0x26,0xec,0x45,0x99,0xa8,0xd7, - 0x92,0xfd,0x22,0xf0,0x68,0x44,0xc9,0xad,0xaf,0x47,0xfb,0xc0,0x6e,0xea,0xfd,0x66,0xbe,0x9e,0x9d,0xe9, - 0x07,0x9c,0xf9,0x64,0x33,0x93,0xe0,0xa0,0xa6,0x73,0x0e,0xd9,0x74,0x9a,0xd9,0x37,0x5c,0xb9,0x51,0xaa, - 0x1f,0x4c,0x57,0x8a,0xe5,0x39,0xed,0xad,0xdb,0x62,0x99,0xcf,0xe8,0x4f,0x45,0x7f,0xaa,0xc6,0x77,0x09, - 0x4e,0xed,0x55,0x63,0x3e,0xf9,0xa9,0xcc,0x62,0xfe,0x66,0x7a,0x5e,0x13,0x89,0xf2,0xcb,0x83,0x5f,0x66, - 0xbb,0x41,0xef,0x6f,0xd6,0x23,0xbe,0x69,0x38,0x51,0x3f,0x42,0x89,0x0d,0xaa,0xea,0x5d,0xc9,0x51,0x36, - 0x81,0x95,0xbf,0x63,0x7b,0x88,0xe1,0x6b,0x99,0xbf,0x23,0x7c,0x62,0x62,0x34,0x44,0xea,0x06,0xd7,0x3a, - 0x07,0x94,0x30,0x2a,0xdb,0x5f,0x13,0x6e,0x31,0xb3,0xbc,0x19,0x13,0x10,0x3d,0xd8,0x73,0xdf,0x33,0xd4, - 0x7f,0x57,0x26,0x81,0xdb,0x39,0xda,0xff,0xbd,0x54,0xbf,0x95,0xea,0xfb,0x00,0x05,0xf5,0x68,0x01,0x1a, - 0xe3,0xef,0x30,0xac,0xf9,0x9d,0xda,0xc3,0xa2,0x0e,0xc1,0xd0,0xd9,0xbc,0x3a,0xc9,0xe7,0xa0,0x49,0x19, - 0x51,0x61,0x5e,0x24,0x09,0xb8,0x1f,0xbc,0xe0,0x48,0x97,0x17,0xa3,0x1f,0x7f,0x78,0x7e,0xfc,0xfc,0xcd, - 0x8f,0x89,0xfa,0x9d,0x60,0xf9,0xef,0x1d,0x10,0x39,0x3e,0x46,0xe6,0xb3,0xe7,0x3f,0x7e,0x7c,0xfb,0xf6, - 0xd5,0x87,0xe3,0x6f,0x5f,0xbd,0x7d,0xf2,0xf8,0xd5,0xf1,0x77,0x6f,0xdf,0x7e,0x7f,0x7c,0xac,0xbe,0x1d, - 0x06,0xdc,0x0f,0xd7,0x8b,0x93,0x8a,0x1a,0xbd,0x17,0xcb,0x53,0x32,0xdc,0x37,0x73,0x3d,0x33,0xca,0xf5, - 0x6e,0x6a,0x4e,0xc6,0xbf,0xdd,0x51,0xb3,0xe6,0xe2,0xf4,0x93,0x4c,0x3e,0x74,0x67,0x3d,0xe0,0xbf,0x4d, - 0x30,0x7d,0x5c,0xb2,0x3d,0x80,0x30,0x5c,0x88,0xed,0xee,0xf1,0x37,0x80,0xe9,0xb7,0x31,0xc5,0xb6,0x2a, - 0x28,0x3b,0x55,0xf8,0x0d,0x2d,0x6b,0xe7,0x9b,0xa0,0x20,0xd6,0xbf,0x53,0x96,0x90,0x45,0x5e,0x87,0x0b, - 0xf9,0xd9,0x0e,0xaa,0x76,0x6d,0x4c,0x0d,0x7e,0x2e,0xb3,0x33,0xf5,0x2f,0x30,0x04,0xff,0x2c,0x37,0x3e, - 0x2f,0x66,0xd9,0xbf,0x88,0x6e,0x33,0xd7,0x42,0xae,0x4e,0xa0,0xc6,0x5f,0x8f,0xff,0x59,0x76,0xfb,0xf8, - 0x61,0x75,0x32,0xd0,0x4d,0x2a,0x6d,0xe2,0x0d,0x52,0x73,0x9d,0x4f,0xc4,0x15,0xb2,0xff,0x95,0xb9,0x39, - 0x15,0xdf,0xa9,0x8d,0x4f,0xe4,0x52,0xf0,0xb0,0x7f,0xc1,0x9d,0xe1,0xee,0x11,0x9d,0x79,0xa6,0x97,0x22, - 0x6f,0xef,0xd5,0x50,0x56,0x2d,0x11,0xd6,0xc3,0xf7,0x02,0xfa,0x0e,0x3b,0x81,0x2b,0xdb,0x49,0xb5,0x7d, - 0x3b,0x29,0xbe,0xf8,0x7e,0xe5,0x6e,0x09,0x74,0x0d,0xb3,0xe1,0x3e,0x4f,0xe7,0x3f,0x4a,0x44,0x86,0x6e, - 0xeb,0xde,0x91,0xef,0x8d,0xb2,0xcc,0xf4,0xc0,0x99,0xc7,0x5c,0xe8,0xc9,0xd7,0x59,0xf5,0xef,0xf3,0x34, - 0x37,0x75,0xf2,0xa5,0x58,0xe6,0x6e,0x4f,0x3d,0x5f,0xd8,0x8b,0x3d,0xcb,0xc6,0xde,0x48,0x22,0x5f,0x99, - 0xdb,0xb3,0x2a,0x79,0xf5,0xd7,0x69,0x85,0x85,0xfc,0xb5,0x5a,0xdd,0x54,0x7b,0x07,0x66,0x98,0xca,0x66, - 0x8c,0x30,0x38,0x06,0x95,0x67,0x9a,0xe8,0x1a,0xde,0xda,0x4b,0x3c,0x37,0x4c,0x9c,0x3b,0xf5,0x98,0xeb, - 0x48,0xc3,0xa4,0x3a,0xbf,0xe4,0x88,0x38,0x0c,0x5e,0xee,0x8a,0x58,0x97,0xe0,0x3d,0xcb,0x58,0x67,0x21, - 0x89,0x36,0x02,0xbb,0x2f,0xf6,0x74,0x4e,0x8d,0xce,0x82,0x04,0xbe,0x55,0xd6,0xbe,0x76,0xc2,0x99,0x37, - 0x41,0x1a,0xdf,0xa6,0x17,0xf6,0x66,0x33,0x1e,0x3a,0x4c,0x8d,0x88,0x86,0xc8,0x6e,0x78,0x29,0x52,0x84, - 0xf3,0x3b,0x2d,0xce,0x56,0x7c,0x23,0x7b,0x0a,0xa4,0x3b,0xd6,0x26,0x64,0x09,0xac,0x7f,0x07,0x30,0xe7, - 0xf0,0xb4,0xac,0xd5,0x10,0x9a,0x27,0xca,0x27,0x6e,0x6b,0x0f,0xa5,0x4a,0x9b,0x58,0x3c,0x65,0xef,0xc2, - 0x15,0x8b,0x8d,0xf9,0x7a,0x0e,0x8e,0xc0,0x22,0x6c,0x96,0x5c,0x88,0xe3,0x4d,0xea,0x78,0xd5,0x11,0x95, - 0x27,0x98,0xb4,0x7d,0x45,0xad,0xd7,0x75,0xd6,0xbb,0x40,0x48,0x15,0x75,0x0f,0x35,0xd4,0xd4,0xf8,0x61, - 0x84,0x3d,0x1b,0x21,0x7a,0xf7,0x32,0xb0,0xd7,0x30,0xf1,0xde,0x90,0xc2,0xf1,0xcb,0xf0,0x50,0xc1,0xb5, - 0x2d,0xaa,0xe1,0x5c,0xd0,0x68,0x98,0x71,0x0c,0x98,0xf3,0x19,0x63,0xc0,0x1a,0x66,0x04,0x57,0x71,0x41, - 0x90,0x3c,0x1c,0x0b,0xfc,0x10,0x17,0xa2,0xb9,0xd0,0x46,0x4e,0x26,0xb1,0xb7,0x37,0x4e,0xf8,0x2e,0x5f, - 0x97,0xe5,0x6c,0xd2,0x11,0x14,0xdf,0xb8,0xb9,0x62,0xc6,0xe1,0x45,0x62,0xee,0x21,0x97,0xe0,0x17,0x63, - 0x13,0xa1,0xb3,0x95,0x08,0x9d,0x32,0xac,0x94,0x1f,0xed,0x60,0x52,0x84,0xa6,0xf7,0x01,0x33,0xed,0xd0, - 0x90,0x6c,0x10,0xc1,0x43,0x87,0xca,0x0b,0xc8,0x63,0xaa,0x13,0x3e,0xe3,0xec,0x45,0xe0,0x2a,0x07,0x5e, - 0x32,0x98,0x05,0xf6,0x54,0xe0,0x3c,0xc4,0x28,0xdb,0x4d,0x2d,0xc1,0x48,0xc0,0xf5,0x30,0x2d,0x48,0xd3, - 0x40,0x9f,0x12,0x84,0x35,0xe7,0xd5,0x6a,0x3e,0xa3,0xbd,0x4a,0x33,0xd8,0x02,0xb6,0x54,0x53,0x6f,0x22, - 0x52,0x09,0xaf,0x62,0x71,0x85,0x5e,0xf2,0x9a,0xff,0xd3,0xe0,0x87,0x8b,0x05,0x3b,0x1a,0x13,0xb6,0xba, - 0x8a,0xe5,0xa2,0x68,0x1a,0x7a,0x64,0x2e,0x9b,0xde,0x88,0x8c,0x12,0xc7,0xcf,0xbb,0x12,0x21,0x89,0xc1, - 0xe8,0x28,0xc9,0x4c,0xaf,0xd3,0x7e,0x76,0x70,0x6b,0xf4,0xa0,0x46,0xc8,0x38,0xfc,0x62,0x5d,0xae,0x44, - 0xdb,0x83,0xb0,0xd5,0x44,0x9b,0xd0,0x0b,0xad,0x77,0x55,0x9b,0x4b,0x7d,0x3b,0x73,0xd7,0xc2,0x47,0x01, - 0xa9,0x97,0xf9,0xfc,0x13,0x0e,0x88,0x71,0x13,0xec,0x02,0x4e,0xbd,0xe3,0xd2,0xac,0x50,0x52,0xde,0x26, - 0x46,0xc6,0xa0,0x43,0x19,0xc3,0x47,0xf4,0x1c,0x01,0xe1,0x09,0x59,0xd3,0x0f,0xf5,0x45,0x75,0x2a,0x0f, - 0x3b,0x72,0xd7,0xcd,0x5c,0x43,0xb8,0xff,0x83,0x5c,0xc7,0x25,0xb7,0x1f,0x4f,0x6b,0x5c,0x83,0x35,0xc8, - 0xca,0x8c,0xa7,0x12,0x98,0xe5,0x0e,0xa6,0x6f,0xab,0x9c,0x3c,0x37,0x29,0xa9,0x0e,0xfd,0x5e,0x1d,0x05, - 0xa2,0x27,0x6d,0xfa,0x5c,0xa4,0x38,0xc4,0xc5,0x0d,0x6e,0xab,0x29,0x36,0x54,0xf6,0x8e,0x08,0xc0,0x8f, - 0x77,0x17,0xd8,0x8d,0x9a,0xe8,0x28,0x7b,0x49,0x85,0xa8,0x47,0x4c,0x85,0x6e,0x1c,0x4a,0xa2,0x2b,0x26, - 0xbc,0xf2,0x13,0x9b,0x4f,0xbb,0xbb,0xf4,0xb4,0x4d,0xd2,0x2e,0xc9,0xd9,0xb7,0x6d,0x75,0x91,0x46,0x7b, - 0x7b,0x3b,0x10,0x3e,0x5f,0x1b,0x33,0x46,0x22,0x6f,0x2f,0x60,0x53,0x97,0x74,0xfd,0x45,0xb4,0x95,0x7c, - 0xc2,0x5b,0x04,0x4a,0x11,0x38,0x8d,0xe4,0xc4,0x80,0xf4,0x2f,0xfc,0x63,0x3d,0xe2,0x61,0x7e,0x94,0xf0, - 0x1d,0x4a,0x59,0x3e,0xc9,0xad,0xd3,0x7b,0x93,0xf4,0x6e,0xc4,0x6b,0x92,0x09,0x71,0x72,0xcd,0x91,0xdb, - 0xb1,0x6b,0x8c,0x5b,0xc2,0x9d,0xd2,0xc3,0x42,0xb7,0xe7,0xd5,0x8c,0x1f,0xe5,0xba,0x6b,0x3c,0x4d,0x4d, - 0xb4,0x83,0xe1,0x89,0xd9,0x1c,0xce,0xd0,0xb5,0x01,0x96,0x60,0xe6,0x61,0x2a,0x0d,0x13,0xc9,0x82,0x2d, - 0x1e,0x6c,0xfb,0x17,0xc4,0xd2,0x64,0xcf,0x45,0x5d,0x5a,0xab,0x79,0xad,0x4e,0xfb,0xca,0xda,0x3e,0xcd, - 0x0d,0x08,0x20,0x9c,0xbd,0xc4,0xe5,0x56,0x6a,0xc6,0x11,0xe4,0x38,0x8e,0x1c,0x9b,0xcf,0x0c,0xd0,0xac, - 0x44,0xe5,0xb9,0x80,0xe2,0x20,0x5e,0xc3,0xf7,0x24,0x99,0x77,0xc8,0xc2,0x30,0x2f,0xfe,0x91,0xc0,0xd9, - 0x19,0xf2,0xf9,0x8a,0x9d,0x5b,0xe1,0x6b,0x22,0xdf,0xf3,0x33,0xfd,0xf4,0x3c,0x2f,0x4b,0x3d,0xbf,0xbd, - 0xdd,0xbe,0x17,0x77,0x93,0x40,0x77,0xdb,0x3b,0x9a,0xba,0x39,0x84,0xd6,0x9a,0xb6,0x5e,0xe1,0x0c,0xe6, - 0x6b,0x9b,0xba,0xb9,0x4e,0xce,0x14,0x0f,0xf4,0xcf,0x3a,0x00,0xfe,0x08,0x67,0x3f,0x6f,0x5b,0x72,0x51, - 0x33,0xea,0xeb,0x56,0xa4,0x16,0x75,0x76,0x41,0xd3,0x4c,0x87,0xd1,0xc3,0xb1,0x79,0x38,0x18,0x81,0x43, - 0xe5,0x52,0xd9,0x8f,0xaa,0x5b,0xfd,0x02,0x45,0x9a,0xd6,0x54,0x02,0x61,0xcf,0xfa,0x8e,0x49,0x25,0x9c, - 0xbd,0x28,0x1a,0x9e,0x4f,0xf3,0x68,0x2c,0x7c,0xcf,0xea,0xcc,0x24,0xd8,0x8b,0x80,0x89,0x94,0x5e,0x75, - 0x5a,0x39,0xab,0xe5,0x56,0x65,0xe2,0x77,0x7e,0x28,0x3b,0x4e,0x8d,0x67,0x36,0x6c,0x32,0x7d,0x30,0xaf, - 0x19,0x28,0xae,0x6b,0x75,0x2c,0x43,0x23,0x66,0xec,0xa4,0xee,0x09,0x9a,0x8c,0x38,0x75,0x27,0x72,0x01, - 0xa9,0x59,0x78,0x45,0x18,0x2a,0xfa,0x7f,0x6c,0xb5,0xde,0x02,0x5c,0x9c,0xec,0x2a,0x85,0xff,0xbe,0x2b, - 0x54,0x23,0xdc,0xad,0x14,0x2a,0xef,0x2a,0x64,0x6d,0xed,0x58,0x1d,0x4f,0xc4,0x66,0xa7,0x9c,0x82,0x61, - 0x04,0x04,0x9b,0x1b,0x71,0x03,0x35,0xb3,0x9f,0xb5,0xdc,0x46,0x75,0xc5,0x90,0x7a,0x8f,0xff,0x7e,0xe2, - 0x60,0x52,0x4f,0x19,0x6a,0x1f,0xf3,0xdf,0x0f,0x38,0x3b,0x3e,0xe2,0xcf,0xdb,0x21,0xba,0xd8,0x9e,0x73, - 0x0b,0xc4,0x7f,0x67,0xcf,0x88,0x63,0xc6,0x56,0x44,0x84,0xc9,0x39,0xe6,0x13,0x2c,0x47,0xc1,0xc9,0xf5, - 0x24,0x36,0x67,0x22,0x1d,0x8a,0xdb,0xdb,0x35,0x3f,0xc8,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0x92,0x10, - 0x0f,0x8d,0x93,0xf0,0x60,0x18,0x1a,0xa2,0xfc,0x38,0x09,0x0f,0xe6,0x40,0xe2,0xca,0x7c,0x1d,0xfe,0xd3, - 0xe0,0x0b,0x43,0x65,0x4e,0x4f,0x2c,0x95,0x4e,0x6c,0xd2,0xee,0xee,0x47,0xd3,0x90,0xc4,0x7a,0x73,0xd4, - 0xeb,0xac,0xa0,0x73,0xdf,0xd7,0xe3,0x8e,0xf1,0x86,0xf9,0x04,0x26,0xe6,0xf5,0xe5,0xb3,0xf0,0x9d,0x32, - 0x5f,0x12,0xa2,0x32,0x00,0x11,0x14,0xe9,0xa7,0x7a,0x0d,0x02,0xc4,0xed,0x03,0x11,0x14,0x08,0x30,0x50, - 0x8e,0x68,0x90,0x96,0xc6,0xa2,0xd3,0x38,0x7c,0xed,0xf9,0xfc,0x6c,0xbf,0x2a,0x45,0x6c,0x61,0x6f,0xd6, - 0x83,0xc3,0x9a,0x09,0xc4,0x32,0x8a,0xfc,0x15,0x97,0x03,0x07,0xe6,0xc0,0x21,0xdc,0x41,0x9f,0xe3,0x36, - 0x33,0x67,0xb1,0xbf,0x7b,0x6a,0xcd,0xae,0x57,0x41,0x7f,0x60,0x31,0x3e,0xd4,0xbb,0x04,0x8e,0xfb,0x2a, - 0xa4,0x84,0xec,0x54,0x5a,0x13,0x33,0xfb,0x19,0xc2,0xe3,0xbc,0x0d,0x4f,0xfa,0x1e,0x7d,0x2e,0x7c,0x9e, - 0x0a,0x18,0xc7,0x7f,0x98,0x58,0x43,0x2e,0x29,0x09,0x58,0x3a,0x89,0x7f,0xc1,0x50,0x9a,0x19,0x00,0xe5, - 0xb0,0x7e,0xa6,0x07,0xd2,0x4f,0x73,0x15,0x9d,0x72,0xa2,0x15,0x63,0x0c,0xee,0x20,0x28,0x69,0xcf,0xeb, - 0xea,0x92,0x0e,0x90,0x27,0xac,0xd5,0xbe,0x2f,0x9f,0x6d,0xd1,0xd4,0x6d,0x19,0x98,0xde,0x82,0xd1,0x45, - 0x77,0x39,0x61,0x91,0x92,0xac,0x09,0x1f,0x51,0xe5,0xd7,0x37,0x0e,0x2e,0x77,0x76,0x7e,0xc7,0xa4,0xf9, - 0x2e,0xa2,0xff,0xd5,0x32,0x36,0xd3,0x03,0x09,0x40,0xb9,0x5a,0x02,0x96,0x7c,0xb4,0x3e,0x30,0x1e,0x75, - 0x97,0x5d,0xa7,0x02,0x03,0x0e,0x3b,0x2d,0x41,0xf1,0xb8,0x0b,0x6c,0x90,0x59,0xc4,0x30,0x89,0x8b,0x7b, - 0xe9,0x12,0x95,0xac,0x03,0xbd,0x96,0xd5,0x0f,0x41,0xd8,0x7d,0xdf,0x1a,0x29,0x81,0x6c,0xdc,0xa4,0xd7, - 0xa5,0xa0,0xdf,0x9f,0x61,0xcf,0xb1,0x65,0x2c,0x84,0xb5,0xe0,0x0b,0x6c,0xbf,0x6d,0x26,0x58,0x8c,0xa1, - 0xfe,0xd3,0xb8,0x70,0x59,0x83,0x97,0x3a,0x18,0xf1,0x80,0xb1,0x90,0xf2,0xdd,0x1d,0x87,0xbb,0xaf,0x5b, - 0xd3,0xc6,0x2e,0xec,0x25,0x88,0xf4,0x25,0x4e,0x94,0xaf,0xb0,0x09,0x76,0x7a,0x38,0x51,0xdd,0x3d,0x5f, - 0x76,0x27,0xd1,0x46,0xc0,0xec,0xcd,0x90,0x48,0x1c,0x36,0xa4,0x33,0xbc,0x09,0x02,0x24,0xb3,0x6d,0xf6, - 0x02,0xb0,0x94,0xa4,0xd7,0x2b,0x2a,0x9c,0xde,0xb1,0xd8,0x26,0xca,0x75,0x96,0x7d,0xc2,0x85,0xd4,0x0c, - 0xb7,0xfc,0x04,0xd4,0xf5,0xb8,0x63,0xfa,0x77,0x55,0x3b,0x6b,0xc4,0x71,0xf9,0xcd,0x87,0x7a,0x67,0xe7, - 0xaa,0xe6,0x0b,0xd8,0x66,0xdf,0x70,0x4d,0x49,0x49,0x0b,0x42,0x85,0x4c,0x6c,0xeb,0x72,0xf7,0x40,0xed, - 0x43,0x86,0xc3,0x07,0xdd,0x95,0xbd,0x27,0x33,0x19,0x3f,0xc5,0x2e,0xc7,0xc9,0xb0,0xaf,0xbe,0x8b,0x57, - 0xad,0x38,0xd7,0x89,0xac,0xa6,0x33,0x5e,0xea,0x76,0x38,0x58,0xd0,0xa8,0x1e,0xb3,0xda,0x18,0x2a,0x7e, - 0xdb,0xb3,0xad,0xd1,0xb6,0x91,0xa3,0x31,0x92,0xb8,0xbd,0x2d,0xf8,0x22,0x3c,0xb7,0x75,0x3a,0xd0,0x22, - 0x3e,0xa0,0xb6,0xd6,0x0e,0x7f,0x25,0x5b,0xb6,0x36,0x9b,0x6e,0x7a,0x22,0xfb,0xdb,0x6c,0x7f,0xb6,0x75, - 0xf5,0x22,0xd4,0x27,0x71,0x6b,0x99,0x30,0x75,0xdf,0x5a,0x6a,0xfc,0xa9,0x9d,0x2d,0xae,0x4c,0x77,0xb6, - 0xb0,0xee,0x4d,0x87,0x46,0x17,0x87,0x00,0x20,0x40,0x88,0x3c,0x11,0xe1,0x89,0x03,0x31,0x46,0xa7,0x96, - 0x4d,0x11,0xda,0x1f,0xed,0xb0,0x70,0x6b,0x99,0xcf,0xe3,0xfe,0x52,0xb5,0x04,0xf7,0xb3,0xea,0xf2,0xb3, - 0xeb,0x65,0x06,0x87,0x30,0x42,0x4f,0x34,0xd1,0x7c,0xcf,0xac,0xee,0xe8,0xf6,0xd6,0x8d,0xdc,0x1f,0xf1, - 0xc2,0xbc,0x8e,0xff,0xad,0xce,0xf5,0xf6,0xf6,0xb8,0x73,0x10,0x1f,0xac,0x85,0x67,0xfb,0x95,0x08,0x13, - 0x5d,0xae,0x16,0xda,0xca,0x72,0x54,0x4f,0xb6,0x03,0x85,0x4d,0x7a,0xa6,0x1a,0xfc,0x5d,0xab,0x57,0x54, - 0x1c,0x3b,0x0c,0x8c,0xf9,0xf8,0x69,0x1b,0x3f,0x0e,0xa4,0xad,0xc2,0xe5,0x3f,0xa7,0x12,0x08,0x2a,0x10, - 0xf2,0xcc,0x86,0xa2,0xe1,0x33,0x60,0x38,0x66,0xc0,0x40,0x50,0x80,0xa2,0x71,0x53,0x92,0x0c,0x85,0x0d, - 0xc8,0x3a,0x0d,0xf8,0xcb,0xbe,0xb3,0x9b,0x63,0x96,0xf3,0x48,0x69,0x8c,0xc0,0xf8,0x32,0x5f,0x12,0x49, - 0x29,0x8f,0x3f,0x96,0xac,0x92,0xb6,0xaf,0xcf,0xe7,0x8b,0xb4,0x16,0x8e,0x8d,0x88,0x4e,0x7d,0x8a,0xf7, - 0x42,0xde,0xd7,0xec,0x2e,0xca,0x0e,0xe6,0x5d,0xfb,0x1e,0x1f,0x23,0x44,0x2e,0xae,0x31,0x86,0x3d,0xd9, - 0xd4,0x3c,0xa8,0xa6,0x6f,0xcb,0x43,0x59,0xbd,0x14,0x78,0x26,0x5e,0x6e,0x6d,0x46,0x37,0xe0,0x88,0x06, - 0xc4,0xba,0xc1,0xcf,0x2e,0x19,0xdd,0x63,0x45,0x64,0x0c,0x52,0x55,0x53,0xc7,0x8c,0xa0,0x2e,0xb8,0xb0, - 0xc9,0xf4,0x0f,0xa1,0x01,0x1e,0xcf,0x1d,0x2e,0x40,0x04,0xd1,0xe7,0x00,0x4a,0xcd,0xa1,0x1c,0xe2,0x4a, - 0x55,0xb4,0x89,0x94,0x7d,0x4f,0xbb,0xcc,0x96,0x75,0xc9,0xdb,0x08,0xb4,0xb0,0x3d,0x44,0x9a,0x4a,0xfd, - 0xdb,0xdb,0x71,0x81,0xb5,0xb3,0x91,0x13,0x46,0xc7,0x32,0xf4,0xa7,0x46,0x5c,0x7b,0x7b,0x6b,0xc3,0xb3, - 0x7a,0xd3,0x3e,0x2e,0x1f,0xbc,0xf3,0x4d,0x0b,0xc6,0x2e,0xd2,0xd7,0x13,0xac,0x12,0xe4,0xbc,0x26,0x3c, - 0x17,0x3f,0x1e,0x9b,0x4b,0xb9,0x63,0xfb,0x68,0xc5,0xa9,0x7c,0xd1,0xd3,0x5d,0x5d,0x81,0x88,0x78,0x74, - 0x4f,0x2e,0xe6,0xb0,0x37,0x1c,0x75,0xaf,0x39,0xbb,0xc0,0x3d,0x1b,0xf7,0xe6,0xd6,0x7c,0x09,0xb7,0x08, - 0x50,0x12,0x1b,0xb7,0xb8,0x4a,0xc5,0xe4,0xf2,0x26,0xaf,0x47,0x1d,0x21,0x95,0x35,0x0f,0x16,0xe6,0x1d, - 0x71,0xaa,0x50,0x8e,0x5d,0x4e,0x82,0x21,0x51,0x1a,0x54,0x2c,0x08,0x8f,0x8d,0x48,0x88,0xe3,0xe9,0x23, - 0xb7,0x75,0xa7,0xfe,0x22,0xec,0xe6,0x70,0x4a,0x3c,0x3f,0xee,0x68,0x7f,0x13,0xaf,0x54,0xbf,0x6d,0xb9, - 0xf1,0x6f,0xb3,0xfd,0xfd,0x8d,0x92,0xcf,0x58,0x7c,0xbe,0xf6,0xd6,0xcd,0xf3,0x6c,0x73,0x82,0x7d,0xdc, - 0x8a,0xcf,0xe4,0xe1,0xc2,0x22,0xb9,0xc7,0x72,0x9e,0xac,0x2b,0x9e,0xf8,0x7b,0xb0,0x6c,0xa0,0x89,0xc4, - 0xbd,0x8b,0x41,0x28,0x6f,0xca,0xa0,0x69,0x98,0x1a,0x45,0x39,0x7b,0xd1,0xeb,0x81,0x6d,0x3b,0xb0,0x95, - 0x55,0x10,0x66,0x83,0x9e,0xdd,0x2a,0x00,0xe2,0x7c,0x04,0x8f,0xb5,0x92,0xd0,0x61,0x83,0x47,0xb7,0xbd, - 0x7f,0xaf,0x1c,0xaa,0x7f,0x5c,0x76,0xa2,0xb5,0xc5,0xe1,0x2b,0x66,0x6f,0x8a,0x9b,0xae,0x9c,0xc2,0x9f, - 0x0d,0xdc,0xba,0x5b,0x8a,0x2f,0x96,0xf6,0xdf,0x4c,0xf8,0x1e,0xa7,0x1a,0xd7,0x46,0x3b,0x7c,0x4a,0x8c, - 0x9e,0x1c,0xe9,0x75,0x92,0xa4,0x0d,0x2a,0xdc,0xde,0x37,0xc1,0xa8,0xea,0xb5,0x32,0x96,0x01,0x77,0x74, - 0xbd,0xdf,0xdd,0x2e,0xf6,0x63,0xb7,0xd1,0x6e,0x7f,0x9c,0xbc,0x52,0xac,0x5e,0x05,0xb5,0xc6,0xa5,0x74, - 0x53,0x2c,0x1f,0x5e,0x96,0x9e,0xe7,0xca,0xf9,0x32,0x68,0xd0,0x7b,0xae,0xc7,0x09,0x02,0x6a,0x06,0xfd, - 0xdf,0x1f,0x07,0x32,0xcd,0x71,0x4d,0x8c,0xcb,0xbd,0xfe,0x9d,0xed,0x90,0x6c,0xc2,0x95,0xd2,0x65,0xe0, - 0xa6,0xc7,0xf1,0x14,0x3d,0xe8,0x58,0x38,0x48,0xd8,0x7d,0x1a,0x7d,0x1a,0x5e,0xd3,0x0c,0xe4,0xf3,0xae, - 0xee,0x88,0x2a,0x9f,0xd3,0x9e,0x7d,0x59,0x67,0x07,0xea,0x59,0x9d,0x3d,0x54,0x2f,0xd0,0xf0,0xab,0x50, - 0x7b,0xc7,0xb7,0x72,0x6f,0xca,0x7e,0x8f,0x57,0xc4,0x5a,0xbe,0xa8,0xad,0x06,0x8e,0xa6,0xea,0xc7,0x95, - 0xb0,0x96,0x1c,0x25,0x2e,0x40,0xfe,0x93,0x21,0x24,0xe7,0x61,0xbd,0x27,0xb9,0x62,0x20,0xb2,0xe2,0x19, - 0x67,0xde,0xc9,0x61,0x48,0x42,0x8c,0x34,0xb6,0x11,0x23,0x32,0x8b,0x7b,0x54,0xd9,0x47,0x59,0x2e,0x81, - 0x8e,0x12,0xff,0x39,0xbd,0x20,0x47,0x4e,0x18,0x24,0xcb,0x93,0x11,0xa3,0x0d,0x5c,0xff,0x18,0x6c,0x8b, - 0xac,0xe8,0x6c,0x91,0x8d,0x5d,0x5a,0x04,0xbb,0xa6,0xdc,0x44,0x7f,0x6e,0x17,0x21,0xd3,0xb5,0xf3,0x31, - 0x3f,0x93,0x3b,0x7d,0x95,0x36,0xc7,0x16,0x87,0x9a,0x35,0x47,0x99,0x4d,0x53,0x1b,0x8e,0x82,0xd9,0x86, - 0x63,0x4e,0x22,0x34,0xab,0x6a,0x8d,0xc4,0xe0,0x9e,0xbf,0xac,0xfd,0xd7,0x36,0xb6,0xfa,0x38,0x3b,0xb9, - 0xb4,0xc1,0x38,0x94,0xb7,0x91,0x64,0xf0,0x2a,0x4a,0x5b,0xef,0xea,0xea,0x4a,0x04,0x03,0x26,0xb9,0xd1, - 0xf3,0x53,0x79,0x1f,0xda,0x3a,0xee,0xe2,0xcf,0xd2,0x2d,0x06,0x53,0xf0,0x08,0x85,0xe9,0x42,0x01,0x99, - 0x70,0xa1,0xa5,0xc7,0x71,0x36,0x67,0x67,0x87,0x12,0x6d,0xbc,0x47,0xd8,0xc2,0xda,0x97,0x32,0x80,0x7e, - 0xab,0xae,0x6d,0x6d,0x2e,0x5f,0xc9,0x74,0xaf,0xae,0x2a,0xc8,0x8f,0x4a,0x79,0x22,0x62,0xa2,0xf5,0xdf, - 0xb0,0xd4,0x42,0x2e,0x7c,0x86,0xd8,0x27,0x90,0xdd,0x30,0x8d,0xd1,0x06,0x1b,0xcf,0x26,0xf4,0x37,0xed, - 0x01,0x97,0xf2,0x48,0xca,0xbc,0x3b,0xa4,0xe0,0x52,0xba,0xc4,0x23,0x08,0x3b,0x23,0x09,0xea,0xec,0x9b, - 0xd1,0xb1,0xb9,0xef,0x68,0xc8,0x92,0x87,0x72,0x89,0x29,0x84,0x55,0x0d,0xdb,0x4b,0x64,0x26,0x1a,0x9a, - 0xfe,0xec,0x91,0x41,0x38,0xb1,0x94,0x7b,0xba,0xee,0x68,0x50,0xce,0x6c,0x3b,0x3e,0x81,0x97,0x8f,0xb5, - 0xd6,0x8d,0xd7,0x0b,0xf7,0x96,0xd0,0x1d,0xf4,0xdd,0x0d,0x47,0x3b,0xb0,0xc4,0x4a,0xd9,0x08,0x9c,0xe1, - 0x01,0xa4,0xfb,0xa0,0x2e,0x17,0x3e,0x86,0x24,0x46,0xc6,0x47,0xfb,0xf1,0xb4,0x63,0xee,0xad,0xc2,0xeb, - 0xae,0xdf,0x06,0x17,0xc1,0x22,0x42,0xc4,0x9a,0xd7,0x32,0xb4,0x41,0xfc,0xb3,0xdf,0xee,0x1b,0x4d,0x48, - 0x21,0x3d,0xe6,0x90,0xf9,0x50,0xbd,0x44,0x42,0x7b,0x44,0x10,0xe5,0x15,0x01,0xc9,0x21,0x01,0xb7,0xa4, - 0x84,0xdb,0xbf,0x91,0xd2,0x1b,0xd3,0xed,0x4b,0xdb,0xd9,0x9e,0xca,0xb6,0x52,0x5d,0x73,0xb6,0x81,0xa0, - 0x2c,0xd9,0x79,0x1b,0x12,0x57,0x22,0xe7,0x87,0xf2,0x01,0xa7,0xda,0x00,0x2d,0xa3,0x42,0x14,0xad,0x07, - 0x62,0x94,0xd3,0x71,0xf3,0x91,0x09,0x02,0x2d,0x01,0x72,0xd5,0x00,0x41,0x72,0x17,0x50,0x58,0x7e,0x06, - 0x8e,0xf6,0x7d,0x08,0xa0,0x63,0xcf,0x78,0xbc,0x7c,0x1e,0x6d,0x7b,0x44,0xc8,0x48,0xa4,0x76,0x24,0x97, - 0x89,0xd7,0x3f,0x40,0x75,0x61,0x43,0x56,0x08,0x3a,0x64,0x37,0xf8,0x46,0x97,0x2b,0xe3,0xba,0xe6,0x9a, - 0xae,0x70,0x2f,0x15,0xef,0xfd,0xca,0x86,0xdf,0x7d,0x03,0xc3,0x69,0x1a,0x37,0xcd,0xdd,0xc7,0x98,0xe3, - 0x89,0x24,0x8a,0x35,0x37,0x84,0xcd,0xe6,0x2d,0xab,0x1a,0xb9,0x1f,0x11,0x48,0xed,0x5e,0x1c,0x81,0x24, - 0x87,0xbb,0xfd,0xc0,0x4c,0xb1,0xf3,0x93,0x21,0x2d,0x61,0x96,0x2d,0x1a,0x99,0xfe,0x1c,0xf4,0x47,0xef, - 0x03,0xe2,0x48,0xed,0x7c,0x9b,0x8b,0x08,0x2e,0xb0,0x2a,0x93,0xb3,0x74,0x16,0x8b,0xbe,0x4f,0xee,0x7c, - 0xb6,0xf5,0xa2,0x09,0x40,0xe5,0xe4,0x73,0xd8,0x54,0xe0,0xb6,0x8a,0x91,0x76,0xcc,0x5a,0xbb,0x41,0x31, - 0x6a,0xaf,0x87,0xde,0x3c,0xb8,0x15,0xf6,0x5d,0x77,0x04,0x03,0x26,0xef,0x09,0x6f,0x17,0x36,0xe2,0x8c, - 0x71,0xcd,0xd6,0xcd,0x5a,0x2e,0xe9,0x21,0x62,0x81,0xef,0x78,0x26,0x62,0x47,0xf3,0xa5,0x6c,0x5e,0xd0, - 0xd2,0x85,0x47,0x5e,0xef,0x1e,0x59,0x5c,0x64,0x21,0x84,0x9b,0xa1,0x2a,0x17,0x91,0x71,0x5c,0x38,0xd1, - 0x58,0x9e,0x95,0x87,0xc5,0x11,0x5c,0xcd,0x4e,0x69,0x05,0x71,0x47,0xeb,0x25,0xdf,0xd4,0x6a,0x96,0x0f, - 0xdd,0x8a,0x70,0x4f,0xf6,0x07,0xa1,0x60,0xc0,0x81,0xa5,0x1f,0x62,0x3b,0x0d,0x04,0x5f,0xd8,0xaf,0xda, - 0xa9,0xc8,0xee,0x02,0xd5,0x63,0x5b,0xe0,0x27,0x0b,0xef,0x43,0x78,0xb7,0xce,0xbe,0x47,0xa8,0xf4,0x4e, - 0xf4,0x0d,0xc7,0xbd,0x69,0xdc,0x1d,0x33,0x38,0xf3,0xd5,0xa4,0x4a,0x2b,0xc8,0x36,0xc6,0x90,0x1c,0x61, - 0x3c,0x2c,0x00,0x7f,0x0b,0xbf,0x4d,0xda,0x12,0x67,0xea,0x8c,0xd8,0x74,0x22,0x62,0x0b,0x03,0x9a,0xa7, - 0x18,0x5b,0xc1,0xec,0x1f,0x83,0x82,0xed,0x5b,0xc2,0x3e,0x5e,0xd4,0x3f,0xd8,0xb4,0xf0,0xc3,0xb6,0x28, - 0x38,0xef,0x70,0x8f,0x08,0xba,0x57,0x33,0x94,0x6d,0x86,0xf1,0xa8,0xc3,0xbb,0xe0,0xe0,0x1e,0x57,0x87, - 0x3e,0x71,0x33,0xe1,0x23,0x6a,0xbe,0x29,0x92,0xb9,0x57,0x9b,0x62,0xbb,0x26,0x66,0x81,0x43,0xb8,0x63, - 0x03,0x46,0x8d,0x0e,0xd1,0xc4,0x03,0x3b,0x36,0xaf,0xb3,0x61,0x50,0xd5,0x46,0xa0,0x44,0x50,0xb6,0x89, - 0x40,0xad,0x01,0xb0,0xa1,0x44,0x5c,0x0b,0x70,0x51,0x92,0x14,0xe1,0xc0,0xfb,0xb9,0x74,0x4e,0x6c,0xf6, - 0x10,0xb7,0x09,0x7d,0xce,0x06,0x86,0x01,0x69,0x3d,0x76,0x71,0x9f,0xca,0xcf,0x16,0x66,0xf0,0x1e,0xb6, - 0x92,0xb9,0x8e,0x03,0x52,0x99,0x8e,0x0f,0x01,0x5d,0xda,0x1f,0x7f,0xa6,0xb0,0x41,0x53,0x65,0xd2,0xb1, - 0x96,0xbb,0xc7,0x86,0x71,0xdd,0x24,0xb9,0xc8,0x29,0xfb,0xb5,0x9b,0x3a,0xa4,0x38,0x97,0x3b,0x8f,0x7c, - 0x24,0x17,0x5e,0x5c,0x26,0xe4,0xe4,0x7e,0x69,0x5c,0x07,0x21,0xd7,0xb8,0x8b,0x22,0x6a,0xdf,0x86,0x5c, - 0x35,0xb0,0x1b,0x14,0x75,0xbe,0x73,0x85,0x57,0xe0,0x6a,0x2f,0x13,0x54,0xd6,0x1f,0x22,0x34,0x9b,0xa9, - 0x9d,0xd4,0x8d,0x43,0x28,0xc7,0xaf,0x86,0x02,0x94,0x65,0x0f,0xfe,0x07,0x97,0xb0,0xa7,0x0f,0xc6,0x9d, - 0xe1,0x54,0x1d,0x63,0x74,0x19,0x49,0xdf,0x4e,0x24,0xe9,0xda,0x7c,0xb4,0x7d,0x9b,0x0f,0x03,0x1d,0x54, - 0x01,0x7c,0x81,0x8d,0x78,0x46,0x60,0xc6,0xd0,0x5e,0x87,0xed,0x91,0xd5,0x1a,0xf8,0x94,0x20,0x08,0x54, - 0x89,0x0d,0x69,0xb4,0x4d,0x00,0x6a,0x2e,0xd8,0x25,0xcc,0xf6,0xfd,0xcd,0x40,0x94,0xdb,0xb5,0x75,0xbc, - 0x57,0xf5,0x84,0x62,0x3a,0x30,0xce,0x94,0x19,0xba,0x57,0x9d,0x9e,0xf2,0x00,0x95,0xb5,0x12,0xaa,0x83, - 0xab,0xd3,0xd6,0xc6,0x0f,0x85,0x6a,0x0e,0xbc,0x17,0x89,0xb2,0x56,0xb5,0x0c,0x0c,0x1f,0xd6,0xfd,0x46, - 0x4f,0x4f,0x7b,0x6d,0x82,0x15,0xed,0x1b,0x2d,0x25,0x1d,0xa8,0xfe,0x1c,0x29,0x8a,0xc6,0x87,0x66,0xbf, - 0xe7,0xa5,0xb5,0x11,0xd4,0xd0,0x4c,0x3f,0xc6,0x87,0x63,0x4f,0x77,0x27,0xca,0xb8,0x70,0x75,0xa7,0xbe, - 0x7b,0x69,0x85,0x6d,0xd9,0x9b,0x74,0xf4,0x57,0x4a,0x48,0x59,0x53,0x4c,0x3b,0x78,0xa8,0xc2,0x4b,0x2e, - 0x73,0x9c,0x34,0x94,0x1d,0x57,0x59,0x01,0x0b,0x0d,0xd8,0x2d,0xe0,0xfa,0xa2,0xd3,0xb2,0x77,0xd5,0x65, - 0xbe,0x71,0xd5,0xe5,0xc0,0x8a,0xea,0x45,0x8f,0xff,0xf5,0xf2,0x7a,0xe6,0x78,0xba,0x63,0x29,0xe1,0x40, - 0x66,0x0f,0xbd,0x6f,0x0e,0x26,0x80,0xa8,0xb4,0x0c,0xf8,0xfa,0xf3,0xd8,0xad,0x0b,0xb5,0x4e,0x40,0xbc, - 0xcf,0x1e,0xaf,0x16,0x43,0x3f,0xaa,0x18,0x4b,0xf3,0x2d,0x5d,0x84,0xa2,0x0d,0x84,0x20,0x20,0x98,0x77, - 0xf0,0x79,0x12,0x13,0xd9,0xa7,0xee,0x73,0xbb,0x5b,0xe7,0xe2,0x3e,0xc0,0xd2,0x7d,0x48,0xf5,0x45,0x8e, - 0xef,0x95,0x6c,0xb2,0x09,0xe3,0xd7,0x75,0x46,0xbf,0x21,0x5f,0xdf,0x57,0xdd,0x08,0x01,0x61,0x98,0x79, - 0xc3,0xf2,0xec,0xec,0xf4,0x28,0x5c,0xe3,0x7f,0x61,0xe3,0x1c,0xca,0x82,0xeb,0xb9,0x32,0xfa,0x68,0xe1, - 0x37,0x68,0x50,0x97,0xf5,0xf8,0xb2,0x0e,0x59,0x48,0xe1,0x29,0x5a,0x55,0x4f,0xec,0x37,0xd6,0x24,0x8e, - 0x25,0xa1,0xc7,0x88,0x58,0x4c,0x27,0x43,0x7c,0x57,0xae,0x6b,0x89,0x63,0x72,0x1c,0xf4,0x4e,0x89,0x80, - 0xb7,0xef,0x65,0x08,0x77,0xdf,0x3f,0x55,0x02,0xc1,0xc0,0x60,0x79,0x1b,0x43,0xbb,0xce,0x0a,0xbe,0x1d, - 0x91,0xf8,0xf5,0xe3,0x8b,0x95,0x3e,0x3e,0xce,0xfc,0x0e,0x41,0x6f,0x2c,0x86,0xa0,0x47,0x57,0x22,0xe0, - 0xa7,0xef,0x19,0x39,0xa9,0xbc,0x48,0x9b,0xf6,0x4d,0x26,0xc4,0xa8,0x86,0x4c,0x5e,0x20,0x58,0x0d,0x53, - 0xdd,0x74,0xdc,0xe3,0xf3,0xee,0x75,0xa8,0xe5,0x08,0xa5,0x7d,0x1b,0x5a,0x18,0x4b,0xe9,0x9b,0x36,0xed, - 0x6b,0x60,0x27,0xdc,0xad,0xcb,0xc8,0x89,0x7a,0x1a,0x93,0x6d,0x0b,0x14,0x5d,0x2e,0x37,0xb9,0xe9,0xc1, - 0x86,0x75,0xc1,0x49,0xd4,0xf0,0x07,0xfe,0x66,0xca,0x70,0x74,0xe3,0xed,0x16,0xf2,0xe8,0x01,0x0d,0x4c, - 0x77,0x65,0xac,0xb8,0x80,0x35,0x33,0x9e,0xcb,0xef,0x88,0x2f,0xee,0x18,0xae,0x3f,0x93,0xc6,0xde,0x92, - 0xae,0x53,0xc4,0x49,0x81,0xb5,0x53,0xe0,0xb8,0x2c,0x18,0x56,0x07,0x35,0x78,0x02,0xc2,0x98,0x73,0xda, - 0xd6,0x82,0x24,0x6b,0xfc,0xb8,0xb7,0xe7,0xa6,0x22,0x9c,0x05,0x35,0x04,0xdb,0x66,0xeb,0x08,0x7c,0xb9, - 0x99,0xf5,0xce,0x4c,0x0e,0x84,0x09,0xbb,0x7e,0x1e,0x00,0x43,0x10,0xed,0xc2,0x53,0x47,0x56,0x2f,0xe6, - 0xf6,0x6b,0xf5,0xb4,0x8d,0xe3,0x37,0x3d,0xec,0x90,0xa8,0x37,0x1d,0xc0,0x28,0x89,0xe5,0xff,0x58,0x4c, - 0xbb,0xa6,0x8f,0x06,0xc5,0x7c,0x67,0x94,0x8d,0x04,0x4d,0x9d,0x8f,0x8c,0x4c,0x20,0x04,0x26,0xbf,0xfa, - 0x6a,0x43,0x70,0x64,0xc4,0x5c,0x1b,0x82,0x3e,0xd6,0x4a,0x78,0x8c,0x94,0x74,0x08,0x75,0x2b,0x85,0xf0, - 0xce,0xcc,0xf2,0x0e,0xf6,0x02,0xb7,0xb0,0x58,0xd7,0x34,0xc2,0xfe,0x87,0xfb,0x47,0x3b,0x3b,0xf8,0x0b, - 0x05,0x4e,0x12,0x88,0xd0,0x41,0xba,0x3f,0x26,0xa6,0x12,0x92,0xe2,0x75,0x4f,0x6a,0x51,0x3b,0x0d,0x45, - 0x47,0x7d,0x22,0x7a,0x0a,0xa3,0x0f,0x11,0xbe,0x94,0x0d,0x30,0x10,0xb0,0x40,0x08,0xa4,0x8e,0x28,0x6d, - 0x43,0x92,0x11,0x98,0x64,0x3c,0xe1,0xcb,0x51,0x23,0x29,0xcd,0x37,0x13,0x59,0x2c,0x60,0x51,0x78,0x4e, - 0x03,0x15,0x91,0x34,0xa2,0xe9,0x83,0xdb,0xa0,0x66,0xea,0x98,0xe3,0x7c,0x5a,0xb5,0x8b,0x32,0xd4,0xec, - 0x9b,0x9a,0x76,0xb4,0x7a,0x5f,0x67,0x87,0xc6,0x57,0xf2,0xbd,0x3e,0x7b,0x7e,0xb5,0x14,0x7b,0xdb,0x23, - 0xf5,0xa4,0xce,0x6e,0xbe,0xb7,0xe2,0xeb,0xd4,0x84,0x39,0x09,0xa3,0x59,0xdb,0x4d,0xc6,0x0a,0x3b,0x89, - 0x74,0x51,0x94,0xd3,0xf9,0x6a,0xa6,0xd3,0xf7,0xb5,0xd2,0x57,0xee,0x71,0x91,0x5f,0xa5,0xb6,0x0d,0xb9, - 0x7f,0xe7,0x08,0x46,0x85,0x4c,0xc3,0xa7,0x7d,0x34,0x34,0xcd,0x69,0x23,0xdd,0x49,0x69,0x30,0x4f,0x09, - 0xef,0x0d,0xe5,0x80,0xbd,0xe3,0xda,0x62,0xb5,0xad,0xbc,0xde,0xae,0xba,0xe4,0x99,0x95,0x68,0xe2,0x4d, - 0xb5,0xbe,0x2a,0x82,0x43,0xde,0xba,0xbe,0xeb,0x21,0xd0,0xbe,0x34,0x3b,0xcb,0xcb,0x92,0x1c,0x20,0xbf, - 0x33,0x92,0x34,0xaa,0xc0,0x8e,0xf4,0xcf,0x7d,0xb9,0xed,0xbf,0x5c,0xab,0xcd,0x88,0x03,0x21,0xce,0x63, - 0x88,0x1b,0x99,0x58,0x60,0xb4,0x09,0xfe,0x21,0xa6,0xc2,0x42,0x5a,0xf7,0x25,0xcf,0x61,0x40,0xce,0xe7, - 0x08,0x01,0xaf,0x0c,0xf9,0x64,0x06,0x86,0x40,0x61,0xa2,0xc4,0xe7,0x57,0xbe,0x2b,0x93,0x00,0x7b,0x9b, - 0x60,0x04,0x5d,0x2a,0x10,0x0c,0x82,0x20,0x9f,0x60,0x78,0x67,0x87,0xde,0xab,0x20,0xb2,0xbf,0x36,0xd2, - 0x94,0x60,0x0a,0x8d,0x31,0x08,0xa6,0x50,0x4d,0xad,0x18,0x83,0xaf,0x57,0x2e,0x25,0xba,0xfb,0xb4,0x98, - 0xed,0xc6,0x12,0xb1,0x22,0x4a,0x53,0xc4,0xda,0xe0,0xc0,0x2c,0x11,0x54,0x0c,0x08,0xb1,0x94,0x1f,0x4e, - 0x8f,0x26,0x83,0xda,0x26,0xe4,0x0c,0x28,0x9c,0xe6,0x72,0x7b,0x96,0xb1,0xd0,0x99,0x22,0xca,0x32,0x4a, - 0x12,0xad,0xeb,0x92,0x64,0x59,0x09,0xda,0x76,0x76,0x2c,0x8e,0xfe,0xc6,0x07,0x0c,0x34,0x79,0xb4,0x9b, - 0x09,0x1a,0x72,0x85,0x7b,0x55,0x55,0x87,0xe0,0x48,0xac,0xa8,0xc5,0x6b,0x6d,0x20,0xed,0xb1,0x93,0x40, - 0x67,0x0c,0x61,0x6f,0xfa,0x8a,0x78,0x95,0x81,0x88,0xc5,0x9f,0xe3,0x23,0x7f,0x2d,0xef,0xe4,0x08,0x89, - 0x99,0x65,0xed,0x3d,0x33,0x82,0xed,0x68,0xd5,0x16,0xf3,0xec,0x06,0x9e,0x9e,0xe9,0xcf,0x44,0xb7,0x5d, - 0xb5,0x04,0x20,0x88,0x26,0x0b,0xdb,0x6c,0xb3,0xd2,0xe9,0x33,0x25,0x95,0xbc,0x17,0x0d,0x8e,0x4e,0x3f, - 0x82,0x08,0xb5,0x9c,0x60,0xc0,0xfe,0x39,0x44,0xfc,0x9d,0x72,0x97,0x3e,0x0c,0xee,0xac,0x21,0xeb,0x6b, - 0x16,0x61,0xd9,0x9b,0x22,0xb4,0x18,0x61,0x0f,0xb9,0x60,0x25,0xbe,0xee,0xd1,0xf1,0x49,0xde,0x80,0x6e, - 0xc3,0xb5,0xa7,0x36,0xcd,0xad,0x64,0x43,0x18,0x85,0x87,0xd8,0xe8,0x3b,0x28,0x64,0x08,0xd9,0x69,0xb5, - 0x71,0xe1,0xc8,0xbb,0xf9,0xea,0xac,0x90,0xf8,0xab,0x83,0x19,0x7c,0xe7,0x1e,0x87,0x06,0xb5,0x1e,0x91, - 0x2d,0x6e,0xaf,0xe8,0xb0,0x06,0x42,0x75,0x76,0x49,0x68,0xcf,0x26,0x19,0xef,0x09,0x23,0x5a,0x18,0x90, - 0x41,0x20,0x06,0x09,0x37,0x3a,0x71,0x4f,0xd6,0x51,0x03,0x46,0xef,0x43,0x5f,0x40,0x9b,0x15,0x5c,0x59, - 0xc6,0x5c,0x5b,0x68,0x50,0x86,0x75,0x5a,0x14,0x57,0xc5,0xb0,0xb3,0x34,0x06,0xea,0x95,0x30,0xe1,0xab, - 0x72,0xdf,0x77,0x85,0xb3,0xb4,0xc9,0xb2,0x7d,0x23,0x95,0x3d,0x20,0x06,0x59,0xe0,0xa5,0xab,0x7f,0xcb, - 0x58,0x71,0x13,0x90,0xe0,0x10,0xce,0xe3,0x4b,0xb9,0x78,0x17,0x9b,0x55,0xee,0x35,0xc4,0x13,0xcb,0xf1, - 0x80,0x19,0xa0,0x28,0xb4,0x06,0xe8,0xd6,0x57,0x05,0x27,0xa6,0x5c,0xc7,0xe8,0x42,0xa9,0x48,0x94,0xed, - 0x7c,0x40,0xe3,0x07,0x45,0x20,0x7b,0x44,0x98,0x80,0x01,0xb9,0x3f,0xec,0xfb,0x60,0x14,0x50,0x12,0x49, - 0xa8,0x73,0xca,0x72,0xc4,0xab,0xa6,0x21,0xe2,0x86,0xf8,0x3c,0x98,0x9a,0x32,0x9c,0x17,0x3a,0x6d,0x57, - 0x4b,0xe8,0x69,0x7c,0x91,0x4d,0xa1,0xb4,0x97,0x46,0x7d,0x56,0x26,0x0b,0x99,0x62,0x28,0x75,0x39,0x76, - 0x52,0x97,0x35,0xee,0x3a,0xc9,0x3b,0x40,0xdd,0x97,0x26,0x6e,0xb6,0x61,0x4b,0xf5,0x9b,0x39,0xed,0x36, - 0x63,0xc5,0xf2,0xd2,0x84,0x59,0xc3,0xd2,0x3c,0x50,0x8a,0x40,0x4c,0x29,0xbf,0xf4,0x8e,0x0d,0x54,0xe2, - 0xef,0x5d,0x5e,0x13,0x39,0xf3,0xbe,0x1c,0x73,0x56,0xc9,0x0d,0x2e,0x9b,0x9b,0x91,0xdd,0x10,0xdc,0xec, - 0x59,0x6f,0x38,0x3f,0xb3,0xb6,0x23,0x36,0xa7,0xe5,0x8b,0x61,0x72,0xda,0x81,0xce,0xfd,0x0e,0x97,0xf2, - 0xe6,0x5e,0xeb,0x5a,0xb0,0x83,0x13,0x11,0x17,0x6b,0x39,0xa6,0xda,0xbb,0xba,0x87,0x9e,0xf5,0x22,0xf9, - 0x38,0x9f,0x92,0x38,0x88,0x08,0x20,0x7e,0x62,0x55,0x5c,0x72,0x40,0x14,0x06,0xb5,0xac,0x34,0x10,0xe8, - 0xac,0x59,0x3b,0xa8,0xc7,0xf4,0x99,0x23,0xd9,0x04,0xe1,0x04,0xa4,0xa2,0x81,0x0d,0xcb,0xdc,0x5a,0x76, - 0x83,0xe8,0x96,0x69,0xa9,0x4c,0xec,0xf3,0x72,0x6d,0x5d,0x7d,0x0c,0xf2,0x13,0x0f,0x14,0x58,0x14,0x96, - 0x1c,0x65,0x6f,0x30,0x6f,0x6d,0x5c,0xa6,0x4a,0x61,0xa1,0x87,0xb1,0xfd,0xab,0xae,0x4c,0xaf,0x68,0x3e, - 0x88,0xaf,0xb1,0x38,0x46,0x7f,0x8f,0x96,0xff,0xd4,0x87,0x4d,0x53,0x1b,0xd7,0xc8,0x4d,0x9f,0xea,0x10, - 0x9b,0x74,0x59,0x4a,0x21,0xe8,0xfd,0xb7,0xb0,0x7c,0xa7,0x8a,0xe1,0xf7,0x56,0xc0,0xf6,0xfa,0xe1,0xe8, - 0xab,0xd1,0xc1,0x17,0x12,0xa6,0xe5,0x87,0x5a,0xfd,0x54,0xab,0x1f,0x6b,0xf5,0x5d,0xad,0x7e,0xaf,0xd5, - 0x6f,0xb5,0xfa,0xbe,0x56,0x7f,0xaf,0xd5,0xb7,0x35,0x87,0xd3,0xe0,0x7b,0x9f,0xcd,0x9d,0xaf,0xea,0x67, - 0x4e,0xe3,0xbb,0x6d,0x14,0xea,0x25,0x32,0x33,0x57,0x32,0x41,0x4a,0xee,0xf7,0x01,0x79,0x78,0x06,0xd3, - 0x41,0x2a,0xfd,0xaf,0xbe,0xed,0xbc,0x0b,0x91,0xe4,0xee,0x37,0xa7,0x65,0xf9,0xb9,0x66,0x91,0x5a,0x24, - 0x11,0x8d,0xe1,0x78,0x81,0x5b,0x60,0xed,0x6d,0x41,0xa6,0x50,0x24,0x8d,0xf0,0xfa,0x52,0x2e,0xd1,0x25, - 0xd3,0x4f,0x3e,0x53,0x2e,0xdb,0x31,0x79,0x2e,0x8e,0x3a,0x72,0x20,0x76,0xae,0x38,0x67,0xad,0xfe,0xc9, - 0x9d,0x9f,0xca,0x65,0xef,0x7a,0x56,0xb4,0x30,0xa2,0x53,0xb3,0x3a,0x3f,0x3b,0xe3,0xa7,0x66,0xa9,0xe7, - 0x73,0xae,0x99,0xfa,0xfe,0x0f,0x2e,0x4c,0x07,0x41,0x75,0x79,0x4a,0x08,0xbe,0x21,0x0c,0x46,0x4c,0x25, - 0xbb,0x64,0xaa,0x7c,0xd5,0x56,0xa7,0xd5,0x74,0xd5,0xf0,0xd3,0x72,0x9e,0x5f,0x2b,0xd3,0x21,0x0e,0x3c, - 0x42,0x47,0x35,0xec,0xf4,0x88,0x64,0x9d,0x37,0x74,0x7e,0xd3,0xdc,0xd5,0x5a,0x59,0xd2,0xce,0xfc,0xda, - 0xf2,0xe6,0x95,0xfb,0x6c,0x5f,0xec,0xd0,0xf1,0x4e,0x9c,0xcf,0xac,0x68,0xd0,0xbd,0x99,0xd2,0xa5,0xfc, - 0x22,0x82,0x41,0x59,0xd1,0x14,0x16,0x00,0x62,0x75,0x5e,0xcc,0x66,0xd4,0x35,0x1c,0x8e,0xad,0xae,0x17, - 0x45,0x89,0x44,0x82,0xa8,0xba,0x55,0x45,0xb3,0xc8,0x97,0xaa,0x68,0xf5,0x42,0x22,0x9d,0xcc,0xab,0x6a, - 0xa9,0xec,0x35,0x53,0x4a,0x1a,0x2d,0x2b,0x84,0x6a,0x51,0x08,0x2f,0xd1,0x14,0xbf,0xd3,0x22,0x55,0xcd, - 0x79,0x0e,0x86,0xd3,0xb7,0x50,0x56,0x88,0x1e,0x45,0xeb,0x4c,0xcd,0x2c,0x73,0xc2,0x46,0xb4,0x69,0xaf, - 0x8a,0x96,0x48,0xda,0x7c,0x56,0x95,0x73,0x44,0x55,0xf9,0x6d,0x45,0x5b,0x70,0xa6,0x8c,0x6b,0xe5,0x4c, - 0x09,0x5b,0x44,0x30,0x91,0x2f,0xe6,0x04,0x0c,0xca,0x8d,0x09,0x3e,0x98,0x3c,0xdb,0xee,0x62,0x17,0x8e, - 0x0d,0x4a,0x73,0x4f,0x99,0x80,0x79,0x04,0x96,0xe0,0x58,0xf1,0xea,0xa2,0x68,0x0a,0x2a,0x09,0x0e,0xb7, - 0xc8,0xa2,0xf3,0xb6,0x5d,0xa6,0x0f,0x1e,0x5c,0x5e,0x5e,0x8e,0x2e,0xbf,0x18,0x55,0xf5,0xd9,0x83,0x83, - 0xaf,0xbf,0xfe,0xfa,0xc1,0xd5,0xbc,0x28,0x3f,0x11,0x45,0x55,0x0c,0x9c,0xb3,0x51,0xda,0x71,0x41,0xf9, - 0x0a,0x50,0x26,0xe5,0x39,0xd9,0x86,0xe8,0xf9,0x8a,0x08,0xfb,0x72,0xe8,0xfb,0x2d,0x0d,0x9b,0x5c,0xe7, - 0x5d,0xf2,0x57,0x65,0x05,0x9b,0x1c,0xb3,0x45,0xd5,0x83,0xdf,0x08,0x81,0x4c,0x80,0xb8,0x7d,0x20,0x60, - 0x57,0x14,0xd9,0x4d,0x73,0x41,0x04,0xf1,0xe6,0x08,0x1e,0xee,0xef,0xef,0x3f,0xa0,0xbc,0x88,0xf8,0xa6, - 0xf6,0x7c,0xa8,0x04,0x8d,0xf1,0x6f,0x0f,0x70,0x47,0x2a,0xff,0x79,0xfd,0x8a,0x9a,0xad,0x0a,0x40,0xe6, - 0x79,0xbb,0x98,0xab,0x93,0x6a,0x76,0xad,0x80,0x0d,0xd5,0x39,0x2d,0x85,0xc2,0xd0,0x14,0x22,0x94,0x2b, - 0xd9,0xb5,0x6d,0xd1,0xd2,0xdf,0x7c,0x36,0xc3,0x7e,0x54,0x79,0xdd,0x16,0x53,0xbc,0x37,0xb4,0x27,0x08, - 0x88,0x2a,0xdc,0xe2,0x89,0xef,0xf0,0x73,0xa0,0xce,0x1f,0xaa,0xf3,0x2f,0xd4,0xf9,0x97,0xea,0xfc,0x2b, - 0x75,0xfe,0x57,0x75,0x7e,0x56,0x57,0xab,0xa5,0x2a,0xf3,0x0b,0x5a,0x3b,0x1e,0x23,0x01,0xe2,0x85,0x9a, - 0x11,0x54,0xce,0xd5,0xac,0x55,0x44,0xc7,0xc2,0xc3,0x06,0xe9,0x6c,0x90,0xaa,0xd5,0xb2,0x98,0xc2,0xe1, - 0x46,0x9d,0xd7,0xaa,0x58,0x9c,0x51,0x67,0x68,0x50,0x74,0x88,0x55,0x73,0xb5,0x84,0x61,0xa3,0x5a,0xcd, - 0x55,0xae,0x4e,0x88,0x95,0x3c,0xa9,0xd5,0xc9,0xac,0xa0,0xff,0x95,0xa2,0xc7,0x29,0x81,0x27,0x47,0x21, - 0x52,0x7c,0x99,0xfd,0xec,0x94,0xce,0xc8,0x85,0x2a,0xd4,0xa7,0x93,0x19,0x55,0x50,0x7f,0x52,0xbf,0xa9, - 0x7a,0xa9,0x08,0x98,0xeb,0x76,0xaa,0xea,0xd5,0xc9,0x35,0x51,0xf2,0x4d,0xbe,0x58,0x2a,0x82,0x6d,0x22, - 0xbc,0x9a,0x65,0x4e,0xa8,0x87,0xf6,0x1a,0x31,0x9c,0xcd,0xea,0x84,0xfe,0x2f,0xf9,0x5e,0x5b,0xb5,0x52, - 0x84,0xdc,0xd4,0xe5,0x09,0x84,0xe8,0x84,0xa4,0xf2,0xd5,0xac,0xa8,0x14,0xb6,0x03,0x18,0xd9,0x4f,0x8a, - 0x11,0x03,0xb5,0x74,0x42,0x60,0x27,0xde,0x60,0xb0,0x44,0xcd,0x17,0x04,0xa0,0xab,0x9a,0x78,0x90,0x69, - 0x5e,0x5e,0xe4,0xd4,0xd2,0xb4,0x2e,0x96,0x2d,0x36,0x85,0x3c,0x10,0xc9,0x0d,0x43,0x37,0x65,0xc7,0x3e, - 0xa5,0xe1,0xd1,0x7f,0x99,0x2c,0x03,0xd8,0xbc,0x16,0x2d,0xaf,0x4d,0x4b,0x0f,0xe7,0xd4,0xa2,0x12,0xe4, - 0xc6,0x43,0x84,0x29,0x01,0xcd,0x99,0x9e,0xcf,0x88,0x8e,0xe7,0xcd,0xac,0x04,0xa1,0xce,0xf3,0x13,0xaa, - 0x7d,0xae,0xcf,0x40,0x0b,0x2c,0xb0,0x99,0x81,0x5a,0xa5,0x6a,0x83,0x63,0xab,0x55,0x8b,0x92,0x16,0xc7, - 0x5a,0x9c,0xeb,0x50,0x31,0xa1,0x80,0xbc,0x00,0xd6,0x29,0xf2,0x79,0x75,0x46,0x95,0x94,0x2b,0xfe,0x03, - 0x14,0x40,0x53,0xb3,0xa0,0x09,0xbd,0x56,0x06,0x03,0x2a,0x2d,0x42,0x07,0x85,0xfd,0x5e,0x5d,0x2a,0x1b, - 0x3a,0x4b,0x71,0x70,0xb2,0xdf,0x56,0x15,0xd0,0xc8,0x69,0x0d,0xaa,0xaf,0x05,0xb4,0x40,0x08,0xc1,0xa0, - 0x47,0x00,0xab,0xf2,0xb2,0x58,0xa0,0xec,0xb4,0xa8,0xa7,0x7c,0x3e,0x14,0xcb,0x25,0x01,0xa8,0x9a,0xae, - 0x6a,0xda,0xe1,0xc0,0x5c,0x40,0x7d,0xcd,0x94,0x1a,0xa1,0x2c,0x02,0x50,0x89,0xf2,0x43,0xc3,0x2d,0xdb, - 0xbd,0xd3,0x7c,0x0a,0x00,0xac,0x75,0x71,0x56,0xca,0x21,0xa8,0xce,0xd4,0xd9,0xfc,0x7a,0x79,0x4e,0x90, - 0x93,0x9f,0x69,0x00,0xb2,0xe6,0xc5,0xd7,0x90,0x28,0x34,0x04,0xd4,0x45,0x83,0x5b,0xd6,0xf6,0xa4,0x10, - 0xb7,0x44,0x7f,0xa8,0x42,0x42,0x48,0xd5,0xfc,0xfa,0xac,0x92,0x5f,0xfe,0x0e,0xa4,0x80,0x12,0x57,0x6a, - 0xd5,0x70,0xa8,0x0d,0x9e,0x1f,0xfe,0xc3,0x5f,0xb6,0x0c,0x33,0x20,0xaa,0x2e,0x0a,0x7d,0x29,0x11,0xa2, - 0x9a,0xc1,0xbd,0x5c,0x89,0x4d,0x7e,0xce,0xf7,0x87,0xd3,0x58,0x07,0x39,0xaa,0x15,0x4f,0x8a,0xd8,0x37, - 0xb2,0xc4,0x83,0x1d,0xce,0x2e,0xab,0x9a,0xd1,0x5f,0x4d,0xbd,0xd0,0xb4,0x11,0xd0,0x89,0xb9,0x5a,0xd5, - 0x88,0x9e,0x3d,0x2f,0xfa,0xa1,0xad,0x3a,0x52,0xa0,0x41,0xeb,0xdf,0x3b,0xc2,0x6f,0xb9,0x8b,0x94,0xcd, - 0x81,0xc9,0x11,0xca,0x27,0x65,0x1a,0x6b,0x63,0x48,0xab,0x03,0x43,0xda,0x9d,0x1d,0x17,0x2f,0x2d,0x4c, - 0x76,0x17,0x0f,0xc2,0x2a,0xa6,0x7b,0x11,0xbc,0xcd,0x41,0xc4,0x25,0xfb,0x98,0xf0,0xa5,0x86,0x9d,0x6e, - 0xbc,0xf9,0xd0,0xeb,0xb3,0x55,0x32,0x0e,0x76,0xfa,0xcd,0x87,0xb8,0x28,0x10,0x82,0x52,0xbb,0x7a,0x3e, - 0xd2,0xec,0xe1,0xce,0xca,0x74,0x60,0x11,0x7a,0x95,0xd8,0xa2,0xb2,0x24,0x9c,0x64,0xe2,0x06,0xfc,0x89, - 0x8f,0x4d,0x49,0xfe,0x56,0xec,0x55,0x9f,0xb0,0x88,0x7a,0xc3,0x87,0x9c,0xf9,0x40,0x97,0x1d,0xcb,0x45, - 0x8e,0x62,0xb3,0xcf,0xc6,0x4c,0xbd,0xf1,0xda,0xcb,0xd2,0x39,0x0f,0x17,0x84,0x28,0xdc,0x6d,0x5c,0xce, - 0x86,0xcb,0x06,0x79,0x5c,0xd6,0xdf,0xd9,0x39,0x34,0x84,0x36,0xb8,0xd3,0x93,0x0e,0x2a,0x1a,0xfe,0x07, - 0x3a,0x16,0x69,0x37,0x0c,0x17,0x0e,0x0a,0xac,0x71,0x31,0x19,0x07,0x6c,0x1a,0x2c,0x69,0x32,0xd7,0x70, - 0x1f,0xc0,0xac,0x3e,0x15,0xbc,0xf0,0xff,0xb5,0xf7,0xb6,0xfb,0x6d,0x1b,0x4b,0x9e,0xf0,0xad,0x50,0x38, - 0x7a,0x6c,0x20,0x6c,0x51,0x92,0x9d,0xe4,0x9c,0x80,0x86,0x39,0x8e,0x1d,0x27,0x4e,0x6c,0xc7,0x13,0x3b, - 0xc9,0x49,0x28,0x46,0x03,0x91,0x20,0x05,0x9b,0x02,0x78,0x00,0x50,0xb2,0x23,0xf2,0x82,0xf6,0xeb,0x5e, - 0xc2,0x5e,0xd9,0xd6,0xbf,0xaa,0xbb,0xd1,0x00,0x21,0xbf,0x64,0x66,0xe7,0xd9,0x0f,0x1b,0xff,0x22,0x02, - 0x8d,0x7e,0xad,0xae,0xae,0xae,0xae,0xae,0x97,0x9d,0xee,0x56,0xf5,0xb7,0x48,0x72,0x5b,0x0c,0xe9,0x80, - 0x5b,0x03,0x81,0x18,0x6e,0x08,0x8a,0x43,0x7b,0xa0,0xcc,0x40,0xab,0xf6,0x9f,0x2b,0x86,0x80,0xe6,0xc7, - 0xdb,0x2d,0x33,0x8e,0x12,0x77,0x52,0x23,0xac,0x78,0x16,0xfe,0x19,0x72,0x35,0x2c,0x5b,0x2e,0x1e,0x74, - 0x6b,0xf0,0x9a,0x4c,0xd0,0xab,0x4f,0xb5,0xdb,0x09,0xdf,0x23,0x2e,0x7a,0xab,0x10,0xd9,0x65,0x96,0xc2, - 0x27,0x99,0xf1,0x33,0x66,0x14,0x64,0xad,0x07,0x31,0xf6,0x13,0x81,0x29,0xad,0x3d,0x87,0x79,0x13,0xe2, - 0xb5,0xec,0x38,0xbe,0xab,0x4c,0xaf,0xbf,0xab,0x3a,0xdb,0xff,0x0e,0xed,0xaf,0x52,0xb4,0x7f,0xd9,0x4d, - 0x39,0x2e,0xa8,0x0b,0xf3,0x94,0x2a,0x9d,0xa8,0x45,0x5d,0xf1,0x0f,0xb6,0xe2,0x1f,0x88,0x7b,0x78,0x57, - 0x7f,0xf8,0xd6,0x7e,0xf8,0x96,0x3e,0x9c,0xa6,0xd1,0xe1,0xf8,0xe4,0x2a,0x18,0xf4,0x4f,0x0e,0x4e,0xf7, - 0x4f,0x26,0x93,0x43,0x75,0x86,0xb8,0x01,0xa7,0x74,0xc6,0xb8,0xe2,0x87,0xa9,0xa7,0xde,0xd6,0xa5,0x69, - 0x83,0xd5,0xa5,0x81,0x46,0xfb,0xf5,0x87,0x73,0xfb,0xe1,0x9c,0x3e,0xbc,0x49,0x3b,0xad,0x79,0x39,0x60, - 0xdd,0x61,0xe8,0x0f,0xfa,0xc1,0x61,0x1d,0x8e,0x41,0x8c,0x2d,0x0f,0x87,0xfe,0x68,0x6f,0xfc,0x87,0x3f, - 0xf9,0xec,0x24,0x08,0x0e,0x17,0x1d,0x4a,0x69,0x62,0xaf,0x59,0xd5,0x6e,0x5c,0xa5,0x20,0x94,0x09,0xec, - 0x8d,0x28,0xd4,0xa3,0xc7,0x88,0xdd,0xaa,0x83,0xf9,0x4c,0xa2,0xa2,0x0e,0xfc,0xc3,0x48,0x94,0xc0,0x33, - 0x1d,0x8d,0xfa,0x8f,0x83,0x83,0x43,0xf5,0x80,0x1e,0x4e,0xca,0xcf,0xf6,0xd2,0x0b,0xd8,0x4f,0xc7,0x59, - 0xb5,0x7f,0xa8,0x5e,0xa6,0x5d,0x5a,0x0f,0x0f,0x75,0xe8,0x7a,0x42,0x94,0x4a,0x62,0x0e,0x02,0x47,0xed, - 0x79,0x2b,0x71,0xad,0x35,0x1e,0xe8,0xbc,0xd9,0x8d,0x79,0xad,0xf7,0xbc,0x07,0x29,0x47,0x2a,0xf2,0x6c, - 0x07,0xbc,0x46,0x50,0x81,0x1f,0x53,0x5f,0xbc,0xd3,0x37,0x2f,0xcb,0xb3,0x86,0x0e,0x4e,0xe7,0x0d,0xaf, - 0xb4,0x8b,0x13,0x36,0x6b,0x43,0x89,0xe5,0x95,0x93,0x48,0xf8,0xf4,0x0a,0xb8,0x2b,0xa1,0x12,0x09,0x3d, - 0x9f,0xe5,0x7f,0x82,0x3e,0x97,0x70,0xa1,0xd7,0x9e,0x3d,0xea,0xc0,0xf7,0x45,0xf4,0x7d,0xf1,0x01,0xff, - 0x8d,0x52,0xbd,0xf5,0xc5,0xb7,0xc7,0xf6,0xd7,0x08,0x20,0x01,0x0f,0xa5,0x2c,0x61,0xff,0xbe,0xb0,0x02, - 0x37,0xf7,0xb2,0xec,0x23,0x7c,0x13,0x6a,0x8f,0x17,0xaf,0xd2,0x0e,0xb7,0x9a,0xaf,0xd2,0x71,0x36,0xe9, - 0xb3,0x84,0xba,0x68,0xb6,0x52,0x60,0xc6,0x5f,0xd7,0x58,0xba,0xb0,0x58,0xba,0x20,0x2c,0x7d,0xda,0x1e, - 0xa7,0xb6,0x08,0x4f,0x38,0x14,0x26,0x0e,0xab,0x21,0x1d,0xd7,0x0f,0xf8,0x95,0x0e,0x07,0xf8,0xd1,0x91, - 0x9f,0xeb,0xf4,0x83,0x2a,0xd7,0x9f,0x9c,0x18,0xd0,0xce,0x67,0x91,0xb8,0x7a,0xaa,0x0e,0x23,0xcd,0x1f, - 0xf9,0x55,0xa7,0xba,0x75,0x72,0x02,0xd7,0xd9,0x8e,0x2b,0xed,0x7c,0xd6,0x75,0x62,0x6c,0xdf,0xa4,0xec, - 0x51,0x0c,0x11,0xa1,0x5f,0xa4,0x3a,0xce,0x25,0x7b,0x8e,0xf5,0xd4,0x13,0x7a,0x17,0x06,0x8b,0x5f,0x1f, - 0xb5,0x3e,0x3f,0x6e,0xbc,0xd3,0x4e,0xe2,0xa9,0xe7,0xcd,0x12,0xcf,0xdc,0x57,0x64,0x18,0x7e,0x83,0x0b, - 0x00,0xeb,0xad,0x41,0xbb,0x31,0xc3,0x19,0xd5,0xa9,0xc6,0x61,0x0f,0x6c,0x86,0x2b,0x46,0xb2,0x56,0x36, - 0x1f,0x3d,0x72,0x22,0x75,0x3a,0xfd,0xba,0x6a,0xa5,0x7e,0x93,0xe1,0x86,0x72,0xb7,0x61,0xb7,0x77,0x37, - 0xb7,0xdb,0xcc,0xe5,0x3f,0xb7,0xcd,0x3e,0x68,0x8e,0xf5,0xaa,0x99,0xc8,0x8d,0x8a,0x8c,0xe6,0x27,0x40, - 0x79,0xa4,0xab,0xc5,0x31,0x95,0x56,0xb7,0xcd,0xf7,0x18,0xcc,0xed,0x7b,0x3f,0x0e,0x20,0x2f,0xf2,0x25, - 0x47,0x10,0xd6,0x4e,0x11,0x3a,0x37,0x54,0xdc,0x9b,0x7f,0x0d,0xb2,0x74,0xe6,0xdb,0xe8,0x1d,0x1b,0x3a, - 0xa3,0x04,0xbe,0xda,0xec,0x07,0x87,0xea,0x67,0x87,0x3c,0xed,0x04,0x78,0x10,0x2e,0xef,0xa1,0xb3,0xd7, - 0x83,0xb7,0x4b,0x58,0x22,0xf6,0xb0,0xc1,0x5d,0x40,0xc5,0xd5,0x89,0xa0,0xc1,0xb1,0xe0,0x52,0x31,0xb1, - 0x93,0x90,0x36,0x0d,0x8f,0x54,0xb1,0x72,0x8d,0xc4,0x38,0xa7,0x51,0xb6,0x94,0xfd,0x95,0x45,0xeb,0x88, - 0x08,0xad,0x8d,0x9c,0x3a,0xa3,0x00,0x07,0xf0,0x25,0x64,0xaf,0x4a,0x74,0x91,0x28,0x1e,0x40,0x5f,0x8b, - 0xbe,0xc9,0x0b,0xe4,0xc0,0xc8,0x88,0x6d,0xf7,0x98,0x1b,0x52,0xdd,0x95,0xd9,0x18,0x1e,0xe8,0x11,0xd1, - 0x07,0x7f,0x1d,0x34,0xf4,0x1a,0x4d,0x04,0x0c,0x47,0x87,0xa7,0x1a,0xc6,0x1d,0xa6,0x38,0x12,0xe5,0xba, - 0xe3,0x8b,0xb9,0x35,0x4f,0xfc,0x9c,0x3e,0x63,0x98,0xdc,0xcb,0x3c,0x72,0x43,0xc6,0x6a,0xbd,0x25,0x89, - 0xc5,0xb2,0x3f,0x30,0x2c,0x80,0x21,0x53,0xfd,0x7e,0x1e,0xd4,0xa9,0x88,0xc2,0xb2,0x4a,0x09,0xc8,0x43, - 0x6d,0x74,0x10,0x1b,0x0d,0xa1,0x29,0x34,0x54,0x70,0x79,0x4c,0x7d,0xde,0x5a,0x18,0xab,0x3d,0x09,0x9d, - 0x20,0x6f,0x06,0xb8,0x02,0x72,0x35,0x77,0xbc,0x6b,0xab,0x73,0x71,0x4c,0x4c,0x73,0x7d,0x1e,0x8c,0x7c, - 0xae,0x09,0xd2,0xf7,0x72,0xf4,0x70,0x87,0x6d,0x46,0xb2,0x3a,0x0f,0xc2,0xd6,0x17,0xff,0x1c,0xd2,0xf1, - 0x19,0x64,0xb1,0x4b,0x6a,0x72,0x0e,0xa0,0x26,0x0c,0xd4,0x95,0x40,0x78,0x0a,0x4f,0x2f,0xdc,0x45,0xea, - 0x4a,0x98,0xf9,0x8e,0x4f,0x68,0xdb,0xe4,0xc3,0x36,0x8b,0x2c,0xfe,0x9c,0x5b,0x65,0x5b,0x99,0x6b,0x66, - 0xbc,0x2b,0xb7,0xe3,0x51,0xb8,0x14,0xd5,0xbd,0xc4,0x18,0x4b,0xe9,0xd0,0xf4,0x82,0xa5,0x22,0xf4,0x05, - 0x54,0xcd,0x95,0x8a,0xea,0xcc,0xd6,0x99,0x6a,0xd4,0x1a,0x34,0xdc,0x76,0x51,0x01,0xca,0x41,0x73,0xf6, - 0x25,0xb5,0x12,0x2d,0xb9,0x19,0x3b,0x73,0x62,0x26,0x32,0x50,0xd6,0x84,0xc4,0x8d,0x55,0xa2,0xf5,0x5e, - 0xd1,0x5d,0xf4,0x8d,0x43,0xcd,0x17,0xce,0xd2,0x14,0x29,0xf3,0xc3,0xe6,0x19,0x41,0xca,0xd0,0xdc,0xb8, - 0xec,0x7d,0xc5,0x01,0x59,0x6d,0xcd,0x4b,0x87,0x2f,0xd9,0x89,0xb1,0xd7,0x8e,0x5d,0x61,0xf1,0x30,0x0d, - 0x62,0x9f,0x35,0x8e,0x33,0x0d,0x5b,0xbe,0x72,0x82,0xbe,0x21,0x33,0x07,0x85,0x81,0x3e,0xba,0xd4,0x68, - 0x9c,0x33,0xef,0xcc,0x95,0x76,0x63,0x53,0x19,0x87,0xdd,0x8e,0x4b,0x6c,0xe3,0x23,0x63,0xd8,0x65,0xf8, - 0x16,0x54,0x9d,0xf0,0x95,0xa5,0x56,0x9b,0xdc,0x4a,0xfc,0x2b,0xc7,0xe9,0xb5,0x4c,0x7d,0xd3,0x82,0x6d, - 0x5f,0x77,0xaa,0x1e,0x64,0x11,0x98,0x34,0xe2,0x72,0xb0,0xd4,0x98,0xfc,0x5d,0x19,0x03,0x5f,0x4d,0x69, - 0x68,0x2e,0xae,0x74,0x36,0x7a,0x33,0x8f,0x92,0x5d,0xe1,0x5b,0x6a,0x30,0xaa,0x6b,0x62,0x67,0x96,0xd2, - 0x0a,0x09,0x83,0x36,0xb8,0x75,0x27,0x18,0x04,0x0f,0x9b,0x87,0x17,0x0d,0x6b,0xb0,0x79,0x02,0xe8,0x7a, - 0x08,0x1c,0x4d,0x08,0xe5,0x6b,0x0b,0x4b,0xd0,0x17,0xb6,0x52,0xb2,0xd7,0x14,0xa5,0xae,0x17,0xd3,0x72, - 0x53,0xc5,0xaa,0x8e,0x3c,0x04,0x62,0x1f,0x5d,0x21,0xc0,0x67,0xc6,0x0e,0xcd,0x75,0xc5,0xe6,0xd5,0xba, - 0x48,0xfc,0x6b,0x0d,0x39,0xce,0xbd,0x5d,0xff,0x8e,0x7a,0xba,0x8b,0x7b,0x51,0xca,0x73,0x10,0xfb,0x1c, - 0x2d,0x27,0x57,0xcd,0x20,0x46,0x97,0x16,0x70,0x28,0xd6,0xd8,0x39,0x52,0x41,0x5c,0xf4,0x29,0xad,0xf7, - 0x03,0x74,0x50,0x1f,0x8a,0x30,0xa0,0xda,0xf1,0xd9,0xbe,0x49,0xae,0x67,0x3e,0x0b,0x6c,0x22,0x47,0x0a, - 0x0e,0xea,0xc9,0xa9,0x03,0xc4,0xeb,0x10,0x3f,0xec,0xff,0xbf,0x6d,0xfb,0x88,0x8e,0xe3,0x1e,0xda,0x35, - 0x7d,0xac,0xfb,0x7e,0xd1,0xdc,0x51,0xea,0xb1,0x5a,0x9b,0x83,0x82,0xb8,0x6c,0xf1,0xdc,0x45,0x3f,0x8c, - 0xbd,0x23,0x7f,0x81,0x2b,0xba,0x4b,0xec,0x8b,0x21,0xa2,0x1d,0x41,0x37,0xc8,0xa5,0x67,0x0b,0xab,0x8a, - 0x8c,0x2d,0x7a,0xb3,0x31,0x84,0x2d,0xb0,0xe1,0x8a,0xa2,0x7d,0xbd,0x6b,0xdb,0x50,0xb4,0x43,0x0d,0xa7, - 0x60,0xe4,0x58,0xd1,0xf6,0xa3,0x34,0xcc,0xde,0xa7,0x18,0x4c,0x6c,0xd3,0xc1,0x81,0x53,0x00,0xd7,0x64, - 0x95,0x75,0x96,0xe2,0x7c,0x88,0x68,0x52,0xb7,0xbe,0xd9,0x89,0x68,0x31,0x14,0x5d,0xcb,0x95,0x67,0x07, - 0x48,0xa7,0x15,0x21,0xf8,0xd5,0xec,0x90,0x0b,0xc4,0xce,0x08,0x94,0x59,0xa2,0x8d,0xfe,0xeb,0x25,0x2a, - 0x69,0x58,0xa2,0x1c,0x93,0x4c,0x5a,0x71,0x57,0x68,0xa2,0xc3,0xf6,0x22,0x5b,0x60,0xc2,0x55,0x41,0xed, - 0x9b,0x97,0x50,0x2e,0x1d,0x74,0xa6,0x07,0x6a,0xce,0x60,0x5f,0x4a,0x89,0xce,0x45,0xb8,0x9e,0x9a,0xa8, - 0x9c,0x29,0xd3,0xf4,0x02,0x7f,0x59,0xe7,0x05,0x71,0x5f,0x77,0xbc,0x5f,0x06,0xb4,0x0e,0xd3,0x86,0xff, - 0x4c,0xe3,0xe3,0x6a,0x16,0x8c,0xce,0xfc,0x42,0xe0,0x81,0xc8,0xc4,0x69,0xa7,0xef,0xcc,0x23,0x7b,0xf8, - 0x23,0xae,0xcc,0xfa,0xf7,0x64,0xa4,0x2d,0xdc,0xd7,0x94,0x5d,0x8c,0x46,0x12,0x36,0x0c,0x1b,0x16,0xe7, - 0x16,0xaf,0x9e,0x84,0x00,0xf2,0xfa,0x23,0xb3,0x37,0x41,0xda,0xa1,0xeb,0x52,0x74,0x99,0x12,0xdb,0x60, - 0xc7,0x6a,0x49,0xa3,0xe5,0x45,0x95,0xf8,0x4b,0x86,0xe2,0x3a,0x5a,0xd6,0x20,0x5d,0x47,0x6b,0xeb,0x2c, - 0x80,0x12,0xd6,0x80,0x99,0x30,0xb8,0xab,0xa8,0xa8,0x59,0x89,0x99,0x63,0x4b,0x2a,0x8b,0x08,0x75,0xcd, - 0xb1,0x46,0x19,0xf7,0xd7,0x34,0xb1,0x6b,0x9a,0x58,0x39,0x49,0xd5,0x13,0xbb,0x0e,0x4c,0xda,0x78,0x3d, - 0x91,0xba,0x3b,0x3a,0x20,0x39,0x6c,0xf3,0xdb,0xca,0x4f,0x65,0x0b,0x19,0x11,0x01,0xe6,0x5c,0x04,0xf1, - 0x15,0x4d,0xa0,0x7b,0x57,0x6e,0xfc,0xc8,0x96,0xf5,0x0e,0x30,0x55,0x34,0x5c,0xe2,0x81,0x8e,0xd4,0x8a, - 0xfe,0x9f,0x45,0xb5,0xab,0x16,0x75,0x19,0x41,0x02,0xa0,0x16,0xf4,0x33,0x9b,0xa8,0x53,0xab,0xba,0x4d, - 0x9f,0xce,0xa2,0x14,0x9f,0xae,0xe8,0xe7,0x74,0xa2,0xde,0x46,0x7b,0xe5,0x70,0x7e,0x0f,0x4d,0xad,0xee, - 0x45,0xa7,0xb4,0x37,0xf9,0x97,0xc1,0x08,0xc5,0xfb,0xfd,0xf9,0x24,0x84,0xd7,0xb2,0x11,0x6a,0x39,0x38, - 0x98,0x4d,0xc2,0x5f,0xe9,0xa3,0x3a,0xa3,0x45,0xfd,0x0e,0xbf,0x60,0xce,0x4c,0x46,0xae,0xb5,0xdf,0x5f, - 0x4d,0x02,0x64,0x5a,0xa8,0x2b,0xce,0x44,0xbf,0xc8,0x64,0xca,0x73,0x9b,0x07,0x07,0xa7,0x92,0xe9,0x52, - 0x67,0xba,0x94,0x4c,0x6f,0x77,0xf8,0x80,0x4c,0x5d,0xea,0x7d,0xd7,0x11,0xc5,0xf9,0x0b,0x21,0x21,0x75, - 0xcb,0x8d,0x4a,0x17,0xba,0x7b,0x0b,0xe9,0x5e,0x57,0xa5,0x5c,0x81,0x54,0xed,0x74,0xad,0xee,0xbf,0x5f, - 0x89,0xb3,0x8b,0x69,0xf4,0x4b,0x45,0xf3,0x33,0x57,0x33,0x98,0xca,0xfb,0x60,0xe8,0xcf,0x38,0x86,0xe9, - 0x68,0x3a,0xe6,0x87,0x49,0x87,0xf3,0x8f,0x3a,0x2e,0xe1,0x9c,0x78,0xe1,0x94,0xa3,0x10,0x5a,0xf2,0x98, - 0x4f,0xcc,0x19,0xe1,0xd6,0xad,0x5f,0x21,0xd4,0x8a,0x2d,0x07,0x9f,0x13,0x8f,0x7b,0x46,0x55,0x1c,0xa1, - 0xb5,0x51,0x4c,0xcf,0xb9,0xd2,0xe3,0xe7,0x71,0x2d,0xa9,0x9f,0xeb,0x89,0x1e,0xdc,0x52,0x06,0x87,0x14, - 0xe3,0xd1,0xb6,0x6b,0xa0,0x4b,0x67,0xa0,0x41,0xd8,0xac,0xb3,0x1e,0xef,0x70,0x7e,0x7f,0x06,0x25,0x7a, - 0x1a,0x22,0x21,0x44,0xff,0x78,0x12,0x48,0x74,0x46,0x79,0xd1,0x8b,0x7e,0xa5,0x4e,0xb1,0xf0,0x57,0xf7, - 0x4f,0x6f,0xdd,0xba,0xf0,0x8f,0x94,0x80,0x65,0xeb,0x4f,0x39,0x5c,0x36,0x90,0x32,0x64,0xa4,0x05,0x87, - 0x57,0xb3,0x50,0x4d,0x71,0x28,0x65,0xc6,0x3e,0x7d,0x4e,0xbf,0xcc,0x76,0xcd,0x30,0xd8,0x1a,0x2d,0xc1, - 0x14,0x03,0xfd,0x47,0xa8,0x7f,0x45,0xdf,0x56,0x75,0x18,0xc4,0xf0,0x83,0xd5,0x86,0xf2,0x7d,0x8f,0xa3, - 0xd6,0xf0,0xde,0xde,0x91,0x4f,0xaf,0x32,0x75,0x33,0x65,0xc8,0xcb,0xaa,0x49,0x1a,0xb6,0xce,0x56,0x75, - 0x2a,0xa7,0x10,0x26,0xaf,0x38,0x78,0xa2,0x94,0x0d,0x46,0x1d,0x98,0xa7,0x2e,0xce,0xba,0x68,0xb2,0x3d, - 0x72,0x50,0x2a,0xdc,0xf3,0x51,0x41,0xc8,0x51,0x53,0x7f,0x3d,0x93,0x7e,0xc1,0xfe,0x54,0x6d,0x07,0xce, - 0x5a,0x07,0x4f,0x35,0x45,0xcc,0xa6,0x78,0xa1,0xd6,0xda,0xdd,0x07,0xd1,0x82,0xa2,0x19,0x6d,0x28,0xca, - 0x37,0x1b,0x44,0x77,0x07,0xd1,0x53,0x85,0xb0,0xf6,0x4a,0x08,0xb2,0x39,0xb7,0xc8,0xc6,0xe5,0xd2,0x7d, - 0x8b,0x95,0x5d,0xdb,0x04,0xd4,0xab,0x89,0xd6,0x33,0x22,0xaf,0xf5,0x56,0x4f,0xa0,0xeb,0x3e,0xc0,0x16, - 0x62,0x49,0x48,0x89,0x1d,0x54,0x3b,0x70,0xce,0xaf,0x80,0xab,0xad,0x76,0x1a,0x68,0x86,0x60,0x1e,0x04, - 0x7c,0x12,0x3f,0x8f,0x4b,0x66,0xc4,0xc1,0x75,0x97,0x3e,0x27,0x72,0xab,0xb6,0x41,0x13,0x37,0xce,0xe9, - 0x81,0x8e,0x8a,0x22,0x55,0xc5,0xcc,0xf9,0xd5,0x89,0x36,0x08,0x07,0x6f,0x1c,0x66,0x5e,0x58,0x75,0x1c, - 0xa7,0xc8,0x79,0x5a,0x94,0x15,0xb7,0x48,0x64,0xe6,0x68,0x78,0x79,0x6f,0x6e,0xe6,0xea,0xd2,0x38,0xb8, - 0x3b,0xdf,0x6c,0xf6,0xce,0xe8,0xbc,0x38,0x1f,0x5f,0x4e,0xf4,0xc9,0x14,0x66,0xe9,0xfa,0x28,0x7b,0x1e, - 0x9d,0x37,0xee,0x0f,0x50,0x62,0xb6,0xd9,0x9c,0x37,0x1b,0xa6,0x53,0x0c,0x16,0x52,0x1a,0x18,0x68,0xca, - 0xbc,0x5e,0xb8,0xae,0x56,0x16,0x90,0xe6,0xad,0x31,0xe2,0xbd,0x07,0x44,0x8b,0x83,0xeb,0x0b,0x74,0x72, - 0x25,0x7b,0x8b,0x34,0xb6,0x77,0x81,0x09,0x66,0xcd,0x12,0xb8,0x89,0xd3,0x8f,0xc6,0xd9,0xa4,0x20,0xe4, - 0x1e,0x87,0xf7,0xe2,0x85,0xa1,0x19,0x2c,0xfd,0x6e,0xae,0xbd,0xf6,0x24,0x58,0xcc,0x95,0x7a,0xab,0xf6, - 0x21,0xa4,0x7e,0x83,0x48,0xf3,0xf9,0x6c,0xbd,0x4c,0x4a,0xf5,0x90,0x9e,0xc1,0xe3,0xfc,0xa8,0xb5,0xbf, - 0xae,0x08,0x26,0x57,0xf7,0x66,0x69,0x8d,0xc0,0x57,0xcc,0x56,0xee,0x8f,0x67,0xe9,0xf8,0x6a,0x02,0x6b, - 0x2f,0xda,0x57,0x8e,0x86,0x6f,0xef,0xbd,0xa9,0xb3,0xbc,0x25,0xf6,0xe2,0xcd,0xf8,0xed,0x44,0xe7,0xa1, - 0x99,0x32,0xd9,0xe5,0x7c,0xe1,0x7e,0xe3,0x0d,0xf9,0x01,0xeb,0x8d,0xe0,0x5e,0x4d,0xb4,0x66,0x74,0x28, - 0xb1,0x87,0xce,0xf3,0x4b,0x16,0xb6,0x12,0x29,0xee,0x70,0x52,0xa8,0x77,0x4b,0x45,0x9b,0xa4,0x36,0xb2, - 0xe0,0xdd,0x5b,0xbc,0xc4,0x20,0x74,0x08,0x8c,0xb3,0x81,0x5d,0x30,0xe7,0x5c,0xb2,0xff,0x10,0x1f,0x84, - 0x0e,0xf9,0x6b,0x7e,0x62,0x16,0x61,0x71,0x60,0xf0,0xaf,0xd8,0xf7,0x13,0x4f,0x24,0x53,0x6f,0x4c,0x40, - 0x20,0x3c,0xd7,0x4a,0xe9,0xa0,0xe8,0x68,0x67,0xc6,0xad,0x49,0x3c,0x35,0x53,0x0e,0x4a,0xee,0x84,0xc3, - 0xf5,0x79,0xe2,0x25,0xeb,0x67,0x19,0xee,0xae,0x91,0x0e,0x0b,0x6e,0xf8,0xf8,0xf4,0x73,0xca,0x72,0x26, - 0xf5,0xdb,0x85,0x72,0xca,0x5d,0xc4,0xf7,0x62,0xf8,0x63,0x04,0x65,0x7e,0x7d,0x1d,0xf3,0xd0,0x5c,0x42, - 0xf9,0x3f,0xb6,0xa2,0xd0,0xc8,0x35,0x8d,0x96,0x1c,0xaa,0x1f,0xc5,0xfe,0xed,0x5c,0x98,0x41,0xda,0xfe, - 0x1a,0x82,0xb2,0x73,0x1e,0xa0,0xc0,0xe1,0x7c,0x70,0x2a,0x02,0xdb,0x33,0xd9,0x0f,0x16,0xad,0x7d,0xf8, - 0x1c,0xaa,0xbf,0xc4,0xb8,0x18,0xfa,0x67,0x10,0xf6,0x2a,0x32,0x69,0x84,0x03,0xe0,0x98,0x86,0x57,0xc3, - 0x7a,0x5f,0x7c,0x43,0x68,0xf1,0xa6,0xeb,0xec,0xf2,0xc6,0x39,0xbb,0xbc,0x99,0xf8,0x57,0xdc,0x93,0x2b, - 0x71,0x7c,0xcf,0x5d,0x7d,0x5b,0x57,0xf2,0x80,0x2a,0x79,0xd0,0x71,0xf2,0x7d,0x50,0x9f,0x7c,0x1f,0xf0, - 0xc9,0xf7,0x4a,0x30,0xe9,0x65,0x74,0xb5,0x43,0x5b,0x51,0xfd,0xcb,0x01,0xeb,0x08,0xd7,0x26,0x0f,0xaf, - 0xa2,0xe3,0xe1,0xab,0x7b,0x2f,0xe9,0x88,0x68,0xed,0x55,0x5e,0xc1,0xfd,0x33,0x12,0xc6,0xaf,0x26,0x86, - 0xf7,0xfe,0xb9,0x42,0xff,0xae,0xa8,0x56,0x1d,0xea,0x36,0x01,0x97,0x84,0x7d,0x0b,0x47,0xbe,0x23,0x75, - 0xa4,0x37,0x2c,0x3a,0xff,0xc0,0x25,0x70,0x51,0x5b,0x8b,0xc9,0xfc,0x21,0xac,0x0c,0xc6,0xc4,0x53,0xf1, - 0x23,0x58,0x7f,0x9b,0xcf,0xbf,0xd6,0x0b,0x2d,0x84,0xda,0x87,0xac,0xbf,0x70,0xbc,0x48,0xd5,0xbb,0x54, - 0xbd,0x4d,0xd5,0x7e,0xaa,0x5e,0xa7,0xea,0x45,0x36,0x32,0xd2,0xfc,0x6f,0x12,0x65,0x04,0x6b,0x78,0x16, - 0x7c,0x6a,0x5d,0xff,0xed,0x49,0x5c,0x2f,0xb1,0xb2,0x38,0xcf,0xaf,0x46,0x3f,0x26,0x12,0xdd,0x0c,0x06, - 0x4a,0xdb,0xf0,0x7a,0x3b,0x31,0x8e,0x95,0x2f,0x52,0x78,0x31,0x7f,0x96,0xdd,0xba,0x65,0x2f,0x39,0x76, - 0xc3,0x8b,0xc8,0xfd,0x38,0xd5,0x3e,0x3d,0x8f,0xb3,0x45,0xe2,0xb9,0xe6,0xa9,0xa2,0x89,0x5f,0x17,0x66, - 0x29,0xbd,0x16,0xae,0x0d,0x59,0xd5,0xf7,0x52,0x47,0x45,0xfc,0x09,0x7d,0xd0,0xfa,0x66,0xc6,0x75,0xfa, - 0xaf,0x29,0x9c,0xaa,0x61,0x76,0x92,0x59,0xeb,0x42,0x14,0x42,0x24,0x73,0x33,0x6f,0xc3,0x3a,0xca,0x99, - 0xe4,0xd6,0xad,0x3d,0xfe,0xa5,0x83,0x98,0x56,0xb3,0x1c,0x7d,0x0f,0x47,0x47,0x76,0x33,0x6f,0xf4,0xf0, - 0x57,0xe7,0x48,0x21,0x46,0x5d,0x33,0x2d,0x4a,0xda,0x06,0xe1,0x8b,0x44,0x9e,0x5d,0x6f,0x4f,0xb6,0x56, - 0xa2,0x17,0x08,0xbc,0x66,0xec,0x4f,0x8c,0xd2,0xe7,0xe3,0x04,0x32,0x30,0xcf,0x68,0x8e,0xd8,0xde,0xd1, - 0xbe,0x9b,0xfa,0x12,0x3b,0x2e,0x08,0xb4,0x27,0xaf,0x67,0x26,0x72,0x6c,0x94,0xd4,0x51,0x64,0x95,0xf3, - 0xcc,0x7e,0x1d,0x59,0xb5,0x78,0x17,0xee,0x06,0xdc,0xcf,0x92,0x40,0x7d,0x9d,0xdd,0x94,0x09,0x63,0x13, - 0xa9,0x2c,0x91,0x48,0x78,0xe9,0x7f,0xce,0x3a,0xf2,0xef,0xcd,0xc9,0x37,0x1f,0xcf,0xa0,0xcb,0xff,0x8c, - 0x7d,0x81,0xeb,0x49,0x02,0x1d,0xc2,0x9d,0x70,0x1b,0x5e,0x3b,0x77,0xd5,0x1c,0xb4,0xbd,0x39,0x37,0xc1, - 0xf5,0x0e,0x2c,0x87,0xe6,0xce,0xd2,0x42,0x54,0xb4,0xa9,0x3f,0x0c,0xdf,0x61,0xda,0x8e,0x01,0x58,0xab, - 0x46,0xec,0x41,0xb5,0x9c,0x9d,0x58,0x6e,0x05,0xca,0x46,0xbd,0x62,0x94,0x88,0xf9,0xf4,0x8d,0xe1,0x03, - 0x1f,0xa1,0x83,0x40,0xf8,0x50,0xe7,0xe4,0xcb,0x71,0xe2,0x71,0x7e,0xc1,0xcb,0xad,0x5b,0xf4,0x5d,0x7f, - 0x00,0xa5,0x37,0x18,0xab,0x67,0x81,0x3d,0x35,0xfe,0x42,0xf8,0x2a,0x81,0x3d,0x7f,0x4d,0x15,0x56,0x56, - 0x28,0x6a,0xb1,0x6d,0xf8,0x68,0x5f,0x02,0xa6,0x32,0xc4,0x02,0xfc,0x1a,0xe2,0x8b,0x40,0xab,0x96,0x88, - 0x0b,0x15,0x47,0xa0,0xce,0x01,0xea,0x4f,0x09,0x32,0x45,0xba,0x80,0x27,0xd8,0x47,0x69,0x09,0xe5,0xc8, - 0xc8,0xcb,0x68,0x1e,0xb4,0xce,0x1d,0xdf,0xa9,0xce,0xe4,0x03,0xc2,0xc5,0xb7,0x92,0xe0,0xfc,0x21,0x1d, - 0xf9,0x59,0xbd,0xec,0xb1,0xc5,0xbd,0xc2,0xb9,0xc0,0xb5,0x1e,0x6a,0x16,0x8a,0xf2,0x2d,0xbc,0xf3,0xb7, - 0x12,0x8b,0x51,0x1e,0x4a,0xcb,0x9d,0xfa,0x05,0x3b,0x23,0x1c,0x16,0x2d,0x48,0xfa,0x1f,0x1c,0xf0,0x4e, - 0x47,0x8b,0xd1,0x87,0xba,0xda,0x05,0x20,0x9a,0xcb,0x1f,0x3f,0x50,0x4c,0x0f,0xa4,0x73,0x98,0x5d,0x55, - 0xea,0x91,0x43,0xb5,0x22,0xeb,0x98,0x5c,0x7d,0x20,0xe0,0xd5,0xf8,0xe1,0xfe,0x31,0xd6,0x7c,0x47,0x58, - 0xc3,0x86,0x61,0xda,0xba,0x0b,0x82,0xe6,0xb8,0x08,0xbf,0xce,0x73,0x38,0xc3,0x55,0xd3,0xb2,0xb4,0xcf, - 0x40,0x2e,0x93,0x0d,0x84,0xc4,0x3c,0x3b,0xb7,0xb3,0x3a,0xc5,0xb9,0x5b,0x75,0xf3,0x98,0x7b,0x55,0x37, - 0x57,0x2b,0x6d,0xe7,0xe2,0xd6,0xcd,0xdb,0x91,0x2e,0xdd,0xed,0x48,0xba,0x31,0x6f,0xab,0xc1,0xd9,0xba, - 0xe0,0x7b,0xc1,0x70,0x2c,0x76,0x6d,0x4a,0xa7,0x8b,0x62,0xc7,0x64,0xab,0xfe,0x34,0x00,0x6a,0x5c,0xd6, - 0x8a,0xb5,0xdc,0x77,0x69,0xc3,0x84,0xae,0x6d,0x0b,0xd6,0x36,0x1e,0xef,0xb0,0x09,0xd3,0x9e,0xb3,0x58, - 0xb0,0x2a,0xb7,0xf4,0xdd,0xc1,0xfd,0x98,0x84,0xff,0x06,0x09,0x21,0xa1,0xad,0x1b,0xb3,0x55,0x9b,0x88, - 0x61,0x6e,0xa0,0x76,0xa0,0xe3,0xb7,0xba,0x75,0x88,0xe0,0x3f,0x32,0x27,0xc2,0x61,0x50,0xbb,0xaf,0x74, - 0x2e,0xcd,0x2c,0xdf,0xed,0xda,0x8e,0xd6,0x02,0x01,0x6d,0x3f,0xf6,0x73,0x02,0xcf,0x3c,0xec,0x6d,0xa0, - 0xfe,0x64,0xbc,0xac,0x32,0x87,0x46,0xb0,0x33,0x5f,0x7e,0x01,0x89,0xca,0x4d,0x04,0x58,0xef,0xf4,0xb4, - 0x6e,0xee,0xc0,0xeb,0x5b,0xb7,0x72,0x7d,0xef,0xc0,0x1b,0xc6,0x2c,0x86,0x13,0x25,0x5b,0x7e,0x1e,0xc5, - 0x4e,0x80,0xd3,0xb2,0x8f,0x0d,0x02,0x8f,0x5e,0x58,0xf6,0x59,0x96,0x1b,0x16,0x7e,0x2c,0xf2,0x0f,0x5c, - 0x40,0xeb,0xbb,0x0f,0x49,0xb1,0x06,0x45,0x65,0x30,0xe2,0x14,0x2e,0x83,0x5f,0xfe,0x2b,0x61,0x33,0x22, - 0x5f,0x2e,0x10,0x61,0x5f,0x39,0xd0,0x8e,0x66,0x08,0xb4,0x75,0x17,0xa3,0x5f,0x13,0x6d,0x59,0xb4,0x6e, - 0x18,0xbb,0x2f,0x01,0x84,0xb5,0xb0,0xa6,0x02,0xc5,0x3a,0xec,0x3c,0xae,0x53,0x5b,0x49,0x37,0x11,0x7c, - 0x0f,0xb4,0x45,0x88,0x27,0xb0,0x8b,0xb7,0x8b,0xb8,0x41,0x75,0x02,0x45,0x8c,0xc9,0x52,0xd3,0x28,0xff, - 0x3c,0x8a,0xd5,0x45,0xb4,0x54,0x17,0x18,0x02,0x51,0xb4,0x73,0xfc,0x6e,0x36,0x17,0x80,0x05,0xbf,0x0a, - 0x7f,0xb7,0xf7,0x1b,0x4b,0x13,0xfc,0xbd,0x65,0x97,0xcf,0xd7,0xae,0x54,0xe3,0xd2,0xb3,0x3e,0x82,0x0b, - 0x62,0xcd,0xa3,0x65,0x1b,0x49,0xc4,0x60,0x64,0xca,0x63,0xf7,0xf2,0x75,0x75,0x90,0xb2,0xe6,0x7e,0xda, - 0x74,0xde,0xa0,0xb1,0x00,0x74,0xf3,0x7b,0x7f,0xae,0xbc,0x78,0x4e,0x58,0xfd,0x54,0xd4,0x2b,0x1c,0x52, - 0x98,0x38,0x39,0x11,0x2f,0xbd,0xe9,0xc7,0x72,0x1b,0x28,0x83,0x3e,0x68,0x2c,0xcd,0x0e,0x72,0x31,0x05, - 0x10,0x81,0xc7,0x6f,0x7e,0x2d,0xac,0x5a,0x8b,0xc0,0x54,0x35,0x3c,0x0a,0xaf,0xe0,0x83,0xfd,0x7b,0x48, - 0x63,0xb8,0xf9,0x6f,0x44,0x63,0x64,0x16,0x28,0x4e,0x13,0x8a,0x85,0xd1,0xc3,0x20,0x4d,0xa7,0xcf,0xa1, - 0x11,0x46,0x64,0xb1,0xdd,0x55,0x9a,0xb2,0x55,0x54,0x6d,0x6b,0xb6,0x39,0x97,0x43,0x8b,0xba,0x20,0xf2, - 0xf9,0xaf,0x14,0x40,0x01,0x3e,0x6a,0xba,0xc1,0x17,0xfa,0x0e,0x81,0x01,0x85,0x0d,0x86,0x62,0xd2,0xd7, - 0xfb,0x17,0x9f,0x62,0xc5,0x18,0xf3,0x07,0xa2,0x2b,0xb5,0x42,0x45,0xf8,0x67,0xaa,0xea,0xb7,0x6f,0xa1, - 0x1c,0x1c,0x5e,0x0b,0x91,0xf9,0x57,0xda,0x45,0x58,0x5a,0x96,0xed,0x4c,0x1f,0x5c,0x23,0x11,0x99,0x3a, - 0x09,0x94,0xbb,0x8a,0x33,0x04,0xc1,0xed,0x76,0x87,0xc4,0x85,0x56,0x45,0x72,0x69,0x1d,0x17,0x8a,0x91, - 0xa8,0x11,0x3e,0xa7,0x5d,0x64,0x8b,0x3d,0xaa,0xe6,0xcd,0x9c,0x38,0x67,0xc7,0xf5,0xaa,0x29,0xe9,0x58, - 0x54,0xde,0xb3,0xa7,0xf2,0xd2,0x88,0x1e,0xa7,0x51,0x3a,0x2e,0x27,0xc3,0xa9,0xc4,0x8f,0x46,0x2f,0xf6, - 0xa2,0xa9,0x08,0xdf,0x71,0x32,0xd0,0x2b,0x79,0xda,0x5c,0xc9,0x44,0x3c,0x2e,0x71,0x23,0xe2,0x01,0xb7, - 0x73,0x6b,0x2d,0x9a,0x8d,0x39,0xdf,0x24,0x9a,0x2a,0x2a,0xa1,0x97,0xf3,0xb4,0x7b,0x39,0xc7,0x01,0xe4, - 0x1e,0x8e,0x37,0xf1,0x35,0x3a,0xbc,0xc4,0x9f,0x39,0x75,0x75,0x5e,0x4b,0xc0,0xe6,0xa6,0xab,0xab,0xa8, - 0x18,0xcf,0x27,0xc3,0xd5,0xce,0x3a,0x88,0x95,0x4e,0x23,0x9e,0x35,0x5a,0x31,0xbb,0xbf,0x48,0xaa,0xaf, - 0xf3,0x35,0x8b,0xd9,0x1e,0x2e,0x53,0x42,0xb0,0x9f,0x08,0xd6,0xf0,0xc3,0x3e,0x5e,0x71,0x17,0x47,0x6b, - 0xe9,0xf5,0x2a,0x08,0x97,0xe6,0x69,0xab,0x2d,0x70,0x57,0x44,0x9d,0x7d,0xf1,0x05,0x40,0xc7,0x7d,0x1d, - 0x9d,0x8c,0xcf,0x4e,0xb3,0x68,0x69,0x5d,0x95,0x98,0x1c,0x39,0xed,0xfe,0xae,0x77,0x8e,0x1d,0xfb,0xeb, - 0x6e,0x4f,0x03,0xb6,0x2d,0x68,0x71,0x80,0xba,0x34,0x1c,0x75,0x98,0x8f,0x86,0xa7,0x9a,0xdd,0x60,0xd1, - 0xec,0x22,0x8a,0x4a,0xcc,0xde,0xa3,0x51,0xde,0xfa,0xe7,0x67,0x03,0x2f,0xef,0x12,0x11,0x9f,0x0f,0x58, - 0xd9,0x72,0x68,0x4c,0x2c,0xb4,0x25,0xd3,0x79,0x5c,0x3e,0xa3,0x74,0xbf,0xd2,0x06,0xfa,0x2a,0x11,0x76, - 0xd9,0xa8,0x18,0x7e,0xc7,0xc7,0x04,0xf3,0xf6,0x67,0xe3,0xed,0x5f,0xc6,0xe1,0x3f,0x9c,0x77,0x2c,0x89, - 0x54,0xda,0x03,0x1e,0x74,0xf3,0x07,0xf9,0x7c,0x5e,0x26,0xd5,0x77,0x49,0xba,0x38,0xaf,0x9c,0x52,0x6d, - 0xa5,0x45,0x99,0x3f,0x86,0x71,0xed,0x42,0x0c,0x3d,0x81,0x6d,0x25,0xf3,0x4e,0xc3,0xb7,0x60,0xde,0xe0, - 0xfc,0x6c,0x60,0xf5,0x7e,0xa2,0x62,0xe0,0x28,0x48,0xe9,0x94,0x1a,0x31,0x1e,0x69,0x66,0x82,0x83,0x4e, - 0xef,0x9e,0x72,0x1e,0xa7,0xf0,0x04,0xca,0xe0,0xaa,0x23,0x0e,0xf6,0x20,0xf2,0xb9,0x26,0xfe,0x78,0xef, - 0xd0,0x36,0xb3,0xaf,0x03,0x77,0x4a,0xd4,0x20,0x13,0xaf,0x2b,0x60,0x2f,0xba,0x82,0x18,0x3b,0x15,0xb3, - 0xce,0x83,0xa9,0x9b,0xf1,0x64,0x5f,0xba,0xcf,0x66,0xea,0x38,0x38,0x69,0x17,0x6d,0xe1,0xb5,0x06,0x7e, - 0xeb,0x5c,0x8e,0x4d,0xfd,0x9b,0xd4,0x8a,0x04,0xeb,0x5d,0x5d,0x67,0x6f,0x12,0x79,0x9d,0x68,0x8c,0x52, - 0x07,0x53,0x5c,0x98,0xb1,0xd4,0x26,0xa0,0xb9,0x76,0x76,0x7a,0x46,0x0c,0xec,0x8c,0x5d,0xa9,0x9d,0xb3, - 0x73,0x9a,0x88,0x2e,0x54,0xa0,0xde,0xe9,0x09,0xc8,0x3a,0xb9,0x66,0xeb,0x14,0xa3,0xa1,0x1c,0x91,0x99, - 0x93,0xdd,0xc3,0xc4,0xcf,0x1a,0x0e,0x89,0x38,0x6b,0x43,0xe3,0xca,0xe0,0x91,0x1e,0x4c,0xc4,0x62,0x31, - 0x3b,0xb3,0x5b,0x58,0x89,0x3f,0xe5,0x0b,0xfb,0x79,0xba,0x18,0x38,0x91,0x71,0xa3,0xdf,0x0b,0x55,0x7f, - 0x68,0xc4,0xe4,0x8d,0xca,0xb4,0xf3,0x13,0x84,0x6a,0xd1,0xb7,0x6e,0xb1,0x56,0x4c,0xde,0xe8,0xa7,0xaa, - 0x51,0xb0,0x19,0xc4,0x77,0x27,0x46,0xca,0x8b,0x9a,0x63,0xc3,0x4c,0x95,0x30,0x65,0x68,0xce,0x5d,0xd4, - 0x0e,0x6f,0xab,0x49,0x2d,0x54,0xf4,0xcd,0x5c,0xf2,0x8b,0xb6,0x3e,0xfe,0x90,0x25,0x02,0x5b,0x53,0x6b, - 0x6a,0x7c,0xe0,0xc1,0x54,0x7b,0xc4,0xc5,0xd9,0x81,0x79,0x6d,0xf1,0x6b,0x95,0xfd,0x20,0xd9,0x6e,0x0e, - 0x02,0xbe,0x90,0x6f,0xcc,0x6a,0x8c,0x24,0xa4,0xce,0xc3,0xdd,0xd2,0x7a,0x49,0x24,0x6e,0xc0,0xa6,0xad, - 0xba,0x84,0x61,0xa5,0x75,0xa1,0x68,0xb9,0x2e,0x3a,0x0c,0x07,0xcd,0x6f,0x8e,0x11,0xfb,0x0f,0x29,0x5b, - 0x4d,0x3a,0xae,0x4b,0x0c,0xc1,0x84,0x52,0xe1,0xcf,0x69,0xb8,0x68,0x7e,0x16,0x57,0x74,0xdd,0x91,0xb2, - 0x76,0x15,0xe5,0xe1,0xbd,0x27,0x71,0x7d,0x83,0xcb,0xe6,0xcd,0x67,0xb2,0x56,0x5a,0x94,0x15,0xe2,0xfb, - 0xa5,0x19,0x06,0xbb,0x36,0x71,0x37,0x1e,0x06,0x1b,0x27,0x48,0xed,0xc9,0xa9,0x76,0x3a,0xe2,0x8b,0xe9, - 0xc6,0xc2,0xea,0x0f,0x29,0x44,0xf8,0x55,0xda,0x62,0xcd,0x71,0x0a,0xb3,0xeb,0x81,0xbb,0x6a,0x7a,0xe0, - 0x36,0x0e,0x85,0xa1,0x06,0x45,0xa0,0xf8,0x1a,0xd3,0x6f,0x9c,0xdf,0x43,0x9f,0xff,0x69,0xed,0x91,0xc0, - 0x77,0xfa,0xf4,0x1a,0x4a,0x21,0x12,0x06,0xfb,0xd6,0xad,0xef,0x33,0xfc,0x3f,0x80,0x1b,0x2d,0xf0,0x6d, - 0x50,0x65,0x7e,0x0a,0xbb,0x8c,0x23,0x59,0x98,0xdf,0xa7,0xea,0x5b,0x28,0x53,0x5e,0x9f,0x5c,0xfb,0xfe, - 0x28,0x1c,0x6c,0x4e,0xb2,0xa0,0x3f,0x0a,0x4e,0xb6,0x27,0xdb,0xc3,0x85,0xfa,0x27,0xb4,0xdf,0x0f,0x06, - 0x9f,0xf5,0x47,0x7f,0xec,0x5f,0x6f,0xfd,0x60,0x33,0x3e,0x99,0x9c,0x1c,0x9e,0x9c,0x4c,0xe8,0xdb,0xef, - 0xdd,0x2a,0xec,0xbc,0x85,0x18,0xed,0xed,0x7f,0xa6,0xca,0x3b,0x39,0xd9,0xbf,0xe5,0xb1,0xf9,0x32,0x14, - 0xcd,0x77,0xbf,0xb8,0xd0,0x15,0x7f,0x29,0x7e,0xd2,0xf7,0x74,0x67,0xa4,0x37,0x5e,0x3f,0x53,0xde,0x02, - 0x92,0x40,0xf5,0x1b,0xcc,0xfc,0x58,0xbc,0x0f,0x9f,0xa6,0xe1,0xd8,0x73,0xe4,0xfe,0xde,0x44,0x59,0x92, - 0xdd,0x32,0xf3,0x00,0x8a,0xc0,0xb5,0x62,0x91,0x69,0x12,0x99,0x8a,0xbc,0x46,0x0c,0x6e,0x87,0x22,0xd8, - 0x72,0xaa,0x8a,0xbe,0x7f,0xf9,0xe3,0x73,0x4a,0x00,0x62,0x23,0x86,0x63,0x66,0xdc,0x98,0x47,0x85,0x53, - 0x10,0x8e,0x72,0x21,0x4a,0x81,0x52,0x0c,0x12,0xbe,0x4e,0x99,0xe1,0x88,0x0a,0x4c,0x7f,0x92,0xc1,0x3d, - 0x6b,0xc7,0xe9,0xd3,0xf3,0x1c,0xd5,0xfe,0xba,0x49,0x5c,0x96,0xf5,0x23,0x77,0x3c,0xa1,0xd7,0x6f,0xe4, - 0xe8,0x7b,0x0a,0x56,0x9a,0x8d,0xb6,0x74,0xa9,0xa9,0xcd,0xef,0x7e,0x94,0x02,0x09,0xf1,0xc5,0xff,0xde, - 0x0d,0x36,0xbe,0x22,0xf9,0x74,0xb0,0x31,0xf9,0x6f,0x81,0x8d,0xab,0x6a,0x83,0xed,0x4d,0x0a,0xc8,0x35, - 0x41,0x27,0x85,0x1d,0xd0,0x71,0xc2,0x5f,0x05,0x1d,0x37,0xdb,0x00,0x1d,0xa7,0x38,0xa0,0xe3,0x77,0x03, - 0x3a,0xb7,0x2d,0x5b,0x0a,0xf9,0x7d,0x29,0x50,0x7f,0xed,0xc3,0xea,0x40,0x80,0x57,0xe5,0x7c,0xd9,0x04, - 0xcb,0x3f,0xb6,0x02,0x85,0x39,0x65,0xbe,0xd4,0x56,0x8d,0x62,0xba,0xa7,0xad,0x31,0xc5,0xc2,0x30,0x2d, - 0x99,0x32,0xe3,0xea,0x89,0x86,0xe2,0xd8,0x8b,0x36,0x4c,0x1f,0xc5,0x40,0xf2,0xea,0x0c,0x6e,0x87,0x92, - 0x5c,0x6c,0xa6,0xb5,0x85,0x23,0xcc,0x3f,0x2b,0x98,0x76,0x1a,0x31,0xe7,0x8a,0x4d,0x1c,0x61,0x1e,0xc8, - 0x86,0x8e,0x62,0xfa,0x58,0xe8,0x9a,0xb0,0xb8,0xa4,0x87,0x9d,0x26,0xa8,0xd2,0xe5,0xda,0xd8,0x90,0x2d, - 0x26,0x3b,0x0d,0x2b,0xd1,0x6c,0xd3,0xb2,0x91,0x6d,0x51,0xb5,0x21,0xaa,0xb1,0xa4,0xdc,0xb1,0x48,0xd5, - 0x36,0xae,0x6c,0x62,0xd9,0x61,0xe1,0x8a,0xbe,0x1a,0xfb,0x57,0x69,0x87,0x80,0xc5,0x76,0xb5,0xda,0x06, - 0x13,0x77,0x19,0xc6,0x78,0x92,0xc1,0xd4,0x36,0xc7,0x14,0xb0,0x89,0x79,0xaa,0x06,0x9e,0x18,0x52,0x18, - 0x53,0xcb,0xda,0x0a,0xb4,0x05,0x22,0xb6,0xcc,0x25,0x40,0x31,0xac,0xa1,0x06,0x98,0x47,0x87,0x7f,0x9c, - 0x94,0x9f,0xf9,0x63,0xfa,0xeb,0xdd,0xbe,0x77,0xff,0xe4,0x30,0x9a,0xf4,0x03,0xa2,0x35,0x48,0x8c,0x02, - 0xfc,0x1d,0x85,0x1e,0x7d,0xf6,0x26,0x9f,0x11,0xd9,0xd9,0xdc,0xa6,0xc7,0xdb,0xf4,0x78,0xbb,0xbf,0xd1, - 0x65,0xa2,0x7b,0xf7,0xff,0x83,0x8a,0x04,0xc1,0xe8,0x50,0xa5,0x79,0xe4,0x8d,0xe3,0x83,0x3f,0x1f,0x1c, - 0xfc,0x7e,0x3a,0x19,0x9f,0x9c,0x5c,0x9d,0x9c,0x1c,0x9c,0x9c,0x0c,0x26,0x9f,0x79,0x2a,0xa7,0x4f,0xa0, - 0x61,0x5e,0x3f,0xcd,0xfb,0x44,0xe9,0xc2,0x60,0x24,0x8f,0x81,0xa7,0xe2,0x3c,0x72,0x88,0x9d,0xf7,0xc7, - 0x3d,0xaf,0x9f,0xe7,0x74,0x42,0x33,0x9d,0x3b,0x39,0x1c,0x05,0xf7,0x0f,0x69,0x5e,0x5a,0xd9,0x4e,0x4e, - 0x0e,0x91,0xb3,0xef,0x8d,0xff,0xb8,0x3f,0xf9,0xec,0x3e,0x8d,0x67,0x8d,0x22,0xf7,0xf6,0x1e,0xfd,0xf8, - 0xf0,0xd5,0x6f,0x2f,0xbe,0xe9,0x21,0xbd,0x7f,0xff,0x30,0x55,0x4b,0x49,0x87,0x05,0xcf,0x5c,0x1e,0x4f, - 0xc6,0x87,0x6a,0x95,0xe3,0xee,0xd8,0x7b,0xeb,0x59,0x2a,0x7c,0xf8,0xd6,0x1f,0xd0,0x40,0x16,0xaa,0xb9, - 0xe4,0x29,0xa3,0x87,0xc3,0x7d,0xa2,0xaf,0x5e,0xce,0x73,0x75,0x99,0xd3,0x51,0x5a,0x2d,0x72,0xf5,0x2e, - 0x57,0xa7,0x39,0x21,0x91,0xba,0xca,0xd5,0xdb,0x5c,0xed,0xe7,0xea,0x4d,0xae,0x1e,0xe6,0xea,0x01,0xa3, - 0xa0,0xb6,0xdf,0xd5,0x86,0xd1,0xe6,0xd6,0x83,0x37,0xc1,0x97,0x39,0x6e,0x8e,0x5f,0xd1,0x5f,0xef,0xd6, - 0xb2,0x1a,0x7a,0xa1,0x77,0x8f,0x16,0xe5,0xad,0x05,0x3f,0xde,0xc7,0x23,0xf0,0x93,0x5e,0x6e,0x7b,0xb7, - 0xe9,0x25,0xbe,0x58,0xe1,0xc3,0x2d,0x7c,0xf8,0xdb,0xf1,0x11,0x9e,0x4f,0x32,0x7e,0xf9,0x8a,0x9f,0x2b, - 0x6f,0xab,0x7e,0xa4,0xb1,0xdd,0x22,0x20,0xd3,0x01,0x78,0x51,0x6d,0x50,0x7c,0x43,0xc5,0x82,0x21,0x0d, - 0xe8,0x75,0xe7,0xa7,0x0d,0xd5,0xb4,0xf9,0xdb,0x57,0x9c,0xe3,0x29,0x77,0x18,0x9a,0x0f,0xcd,0x7e,0x7e, - 0x93,0x77,0xb3,0x16,0xb4,0x07,0x3f,0xcd,0xc5,0x87,0xc2,0x09,0xcb,0x59,0x12,0x78,0x2e,0x52,0x2f,0x00, - 0xdf,0x7f,0xdb,0xfc,0x71,0x79,0x90,0x67,0xe1,0xa1,0x7a,0x82,0xd7,0xcb,0x83,0x0d,0x92,0xe8,0xf5,0x11, - 0xbd,0xfa,0x83,0xcf,0x68,0x43,0x2d,0xfb,0xd4,0x9b,0x34,0xdb,0xe4,0x73,0x7e,0x1e,0x7c,0x16,0x1c,0xaa, - 0xc7,0xf4,0x55,0x11,0x5e,0x29,0xda,0x6e,0x27,0x84,0x65,0x94,0xc3,0x7d,0x0d,0x46,0xfb,0x87,0xea,0x39, - 0x63,0x85,0xbf,0x39,0x09,0xf6,0xa9,0xd3,0xcf,0x72,0x36,0x0f,0xfb,0x8c,0x5e,0xd4,0x4f,0xf8,0x12,0xa2, - 0x65,0x16,0x3d,0x1f,0xaa,0xaf,0x29,0xe1,0x64,0x30,0xfe,0x63,0x30,0xe9,0x53,0xd6,0x9f,0xf3,0x4e,0xe3, - 0x1d,0xff,0xfb,0x34,0xfa,0x3e,0xfd,0x80,0xa1,0x52,0x50,0x6b,0x43,0x44,0x95,0xfa,0x3e,0x75,0x8d,0x13, - 0x69,0x13,0xfe,0x15,0x2d,0xbf,0xbd,0x58,0x66,0x65,0xf8,0xfc,0xe5,0xc9,0xac,0x7f,0xa8,0x7e,0x41,0x0a, - 0x3f,0x53,0x3f,0xbe,0xcb,0xa3,0xf1,0x6f,0x29,0xed,0x39,0xea,0x9a,0xc0,0xfb,0xea,0x3d,0x7b,0x8b,0xc8, - 0x92,0x8c,0x57,0x09,0xb9,0x1a,0x32,0x47,0x18,0xbe,0xdc,0x7f,0x16,0xaf,0x58,0x24,0x3b,0xf6,0x2e,0x0f, - 0xf8,0x32,0xc5,0x9b,0x40,0x3a,0x8b,0x57,0x1e,0x34,0x18,0x42,0x6f,0xb2,0xd9,0x50,0x8a,0x7e,0x36,0xaa, - 0xa1,0x7a,0xb7,0xe1,0x44,0x78,0xee,0x92,0x9d,0xeb,0xf2,0x20,0x9d,0xcb,0x34,0xe7,0x51,0x3a,0xf2,0xa8, - 0x2e,0x5a,0x95,0x58,0x94,0x21,0x1d,0x11,0xe3,0x48,0x78,0x72,0x93,0x15,0xd7,0xb9,0xda,0x6e,0xb9,0x91, - 0x66,0xeb,0x98,0x46,0xbf,0xb1,0xfd,0xc8,0x3f,0xa1,0x95,0xa2,0x92,0x04,0xb2,0x2c,0x6e,0x50,0x89,0xeb, - 0x8c,0xb3,0xfc,0x2d,0xb5,0xfd,0x2d,0xd2,0xe9,0xd8,0x34,0x05,0x0f,0x3b,0x25,0x02,0xad,0xd9,0xbd,0x41, - 0x3a,0x27,0x1a,0xe1,0xf5,0x0b,0x6a,0x9f,0x86,0x7f,0xdb,0x14,0xb9,0x4d,0x8b,0x5c,0xfd,0x8e,0x42,0xd7, - 0xc9,0xdb,0x55,0x88,0x7c,0x42,0xbf,0xc3,0xa9,0x5e,0x8f,0x6b,0xdd,0x2e,0x75,0x6a,0x8d,0x4e,0x11,0x74, - 0xa5,0x43,0x09,0x27,0xe8,0x2e,0x14,0xf1,0x2c,0xcd,0xa5,0xfd,0x35,0xda,0xaf,0xab,0x74,0x5b,0xe5,0x5c, - 0xdc,0xa4,0xb4,0xb1,0xd6,0x6d,0x2c,0x75,0x1b,0xc6,0x67,0x51,0xe2,0x2f,0xdb,0x4d,0x51,0x82,0x00,0x1d, - 0xc6,0x0f,0xdf,0xe2,0xbd,0xd1,0x4a,0xaa,0x6b,0x5c,0xc2,0x3d,0xfe,0x68,0x3a,0x00,0xe8,0x10,0x8a,0x0e, - 0x9c,0x8e,0xbc,0x11,0x00,0xe0,0x84,0x1a,0x27,0xbb,0x89,0xfa,0x93,0x28,0x03,0x15,0xa3,0x13,0x03,0xd0, - 0x0e,0xf2,0x7b,0x73,0xc3,0xfd,0x5d,0xae,0xea,0xa3,0x44,0xa8,0x2f,0xd5,0x3e,0x74,0x8d,0xe6,0xde,0xa1, - 0xe6,0x82,0x5b,0xec,0xdd,0xcf,0xa0,0x15,0xdf,0xbd,0x8a,0x7b,0x43,0x7b,0x16,0xb1,0x32,0xf4,0x44,0x2b, - 0x73,0x29,0x1d,0x5a,0xb7,0xbe,0xbf,0xcc,0x83,0xbd,0xee,0x96,0x6f,0xe3,0x67,0x7f,0xdf,0x78,0xe0,0xf8, - 0x25,0x5e,0xf6,0xa2,0x5e,0x2b,0xb2,0xba,0xbe,0x52,0x90,0x4b,0xcc,0x7d,0x76,0x20,0xab,0x23,0x36,0xda, - 0x0b,0x4d,0x5b,0x79,0x5e,0x9b,0xc7,0x0f,0x4c,0xa5,0xdb,0x00,0x77,0xa0,0xbe,0x9b,0x07,0xad,0x5e,0x72, - 0x5b,0xde,0xa9,0xb8,0x7b,0x81,0x4a,0x50,0xde,0x1b,0x51,0x31,0x49,0xe8,0x85,0xf4,0xa8,0xaf,0xde,0xa4, - 0xc2,0xdb,0x7d,0x9f,0x63,0x30,0x88,0x1d,0xfd,0xc8,0x3b,0xcd,0x7c,0xfa,0x8e,0x35,0x40,0x3f,0x10,0x12, - 0x11,0x0a,0x78,0xc3,0xcc,0xbd,0xd1,0x84,0x02,0x7d,0xdf,0xeb,0x79,0xfd,0x18,0xd6,0xc6,0x5e,0xb3,0xef, - 0xe6,0x52,0x95,0x1a,0x6d,0x02,0x20,0x6c,0xbe,0x13,0xbd,0xf4,0x02,0x7b,0x2a,0x62,0xb3,0x9d,0xda,0x26, - 0xb4,0xa6,0x03,0x39,0x51,0x58,0xbb,0x7c,0xe8,0x3d,0xbe,0x09,0xe4,0xce,0x20,0x68,0x8a,0x65,0xbd,0x0b, - 0x0c,0x82,0xcd,0xc6,0x43,0x3b,0x58,0xd3,0x9a,0x0e,0x14,0xeb,0xe4,0xa0,0xfe,0x88,0x57,0x8f,0x96,0xb5, - 0x7c,0x9c,0xc7,0x58,0xd5,0xf5,0x57,0x7e,0xf7,0x86,0xff,0x5e,0x09,0x04,0xc4,0x09,0x8e,0xf2,0x9a,0xa6, - 0x24,0x5e,0x9f,0xb8,0xca,0x60,0x74,0x9a,0xca,0x93,0xa2,0x25,0xd4,0xe7,0x73,0xb8,0xd7,0xf7,0xa5,0x7e, - 0xf4,0x7d,0xe4,0x85,0x3a,0x27,0x81,0x37,0x3c,0xfd,0x97,0xcd,0x1c,0x23,0x29,0x40,0xf8,0x33,0x17,0xcc, - 0x9e,0x60,0x51,0x1c,0x49,0xb6,0x7d,0x9c,0x5e,0x1b,0xc0,0xa6,0xa4,0x69,0x84,0xe4,0x81,0xee,0xd7,0xc8, - 0x97,0xba,0xd0,0x0c,0x9d,0x10,0x3a,0x8c,0x61,0xa9,0x3a,0x4d,0x14,0xf7,0xf7,0x2f,0xa9,0x62,0x5f,0xa6, - 0x5c,0xfa,0xeb,0x85,0x79,0xc0,0x0d,0xa5,0x11,0x8d,0x84,0xb2,0xd2,0xe3,0x25,0x57,0xe2,0x36,0x12,0x5c, - 0x53,0x86,0x7b,0x47,0x4c,0x2e,0xa9,0x5f,0xd4,0x01,0x1b,0x6e,0x7b,0x4c,0xf9,0x89,0xe8,0x8a,0xae,0x1c, - 0xe5,0x22,0x00,0x34,0xb2,0x19,0xf7,0x2f,0xf4,0x29,0x30,0x65,0xea,0x74,0x4a,0xed,0x1f,0x43,0x8f,0x40, - 0xca,0x5b,0xfc,0xda,0x9f,0x32,0x1e,0x7a,0x1f,0x87,0x2d,0x42,0xe9,0xfe,0x93,0xa8,0xb2,0x33,0xdd,0xce, - 0x64,0xf9,0x54,0x66,0x07,0x68,0x08,0xdd,0xd0,0x9c,0x3d,0xee,0x7c,0xfe,0x31,0x28,0x0e,0x14,0x74,0x74, - 0x42,0x6e,0xa4,0x2a,0x2d,0x7a,0x45,0x74,0x8d,0xfd,0xc7,0x63,0xf7,0x92,0xa8,0xc1,0xf0,0xbb,0xad,0xc7, - 0x85,0x00,0x48,0xb0,0xe3,0xa6,0x6d,0x69,0x4f,0xa0,0x82,0x4e,0x41,0xb7,0x4f,0xad,0xa3,0x7c,0x64,0x7a, - 0x19,0xea,0x0f,0xd0,0x41,0x1b,0x9d,0xa5,0xa1,0xee,0x95,0x5a,0x46,0xad,0x65,0x2d,0xf0,0x19,0x82,0x5c, - 0x77,0x7f,0xd3,0x56,0xe3,0xf0,0x58,0x22,0x79,0x18,0x40,0x4b,0x86,0xcc,0x50,0xee,0xac,0x18,0x22,0xcb, - 0x60,0x38,0xa5,0x0c,0xb4,0xdb,0x01,0xad,0x1a,0xf5,0x68,0x3d,0x13,0x7b,0x49,0x39,0xf4,0xfa,0xf3,0x40, - 0xc9,0x4c,0x48,0xfb,0xca,0x33,0xeb,0x47,0x43,0x7b,0xad,0xe6,0xb5,0x64,0xc5,0x2f,0x37,0x1b,0x28,0x4c, - 0xcb,0x3c,0x9c,0x2d,0xd7,0xb4,0x3b,0x79,0xcd,0xab,0x2b,0xcf,0x98,0x0b,0xd6,0x13,0xb1,0xf7,0x3a,0x6b, - 0x8a,0x09,0x89,0x92,0x76,0xd2,0x7e,0x7b,0x0b,0xcb,0x3c,0xe2,0xce,0xc1,0xf8,0x52,0x34,0x18,0xa4,0xbb, - 0x0e,0x8b,0x04,0xe4,0x29,0xd1,0x6d,0xc9,0xc1,0x9d,0xdf,0xf2,0x99,0xe7,0xfd,0x55,0x58,0xa6,0xab,0xb3, - 0x82,0x2d,0x1d,0x2c,0x5f,0x10,0x3f,0x15,0x77,0xb9,0xa4,0x00,0x23,0xab,0x1d,0x70,0x41,0x58,0x49,0xa7, - 0x22,0xe4,0xab,0x88,0x6b,0xaf,0xe5,0xa4,0xe1,0xef,0x05,0x1c,0xee,0x7c,0x9d,0x3c,0x4d,0xe6,0xd5,0x8f, - 0xab,0x24,0x43,0x96,0x24,0x57,0x0d,0x50,0x84,0x65,0xaa,0x5a,0xb2,0xd0,0xf0,0xa7,0x4a,0x39,0xc2,0x83, - 0xef,0x72,0x3a,0x3f,0xcc,0xd6,0xd3,0x6e,0x95,0x1b,0x8e,0xe5,0xc8,0xab,0xdc,0x04,0xc8,0x32,0x21,0xff, - 0x02,0xf6,0x08,0x31,0x78,0x9d,0xa7,0x84,0x26,0x0a,0x10,0xf9,0x57,0x37,0x8b,0xda,0x83,0xa3,0x17,0x60, - 0x3b,0xef,0xd9,0xc0,0x7f,0x48,0xd6,0x95,0x59,0x09,0x8a,0xce,0x2e,0x69,0xa6,0xdd,0x79,0x28,0x7b,0x31, - 0x26,0xd1,0x85,0xfa,0x7e,0x35,0xc2,0x8a,0xad,0xe0,0x19,0x15,0x02,0xa3,0x1f,0xec,0x91,0xef,0xe4,0x6a, - 0xff,0x74,0xd2,0xdf,0x9c,0x10,0x87,0x1d,0x4c,0x3e,0x1b,0x9d,0x04,0x38,0xee,0x45,0xf7,0x37,0x7f,0x98, - 0x1e,0xd0,0xeb,0x89,0x7f,0xa8,0xbe,0xd7,0x25,0xc6,0x74,0xac,0xa3,0xc3,0xdd,0xe9,0xfe,0x04,0x45,0x27, - 0x38,0x19,0x12,0x77,0xdd,0x4a,0xdc,0x9c,0x8c,0x6f,0x13,0x7f,0x7f,0x7b,0x42,0x0f,0x1e,0x3d,0x78,0x78, - 0x20,0x36,0x18,0x3f,0xed,0xbc,0x93,0xe0,0x33,0xaa,0x96,0x38,0xf7,0x6f,0xc1,0xea,0x94,0xd3,0xf0,0xce, - 0xdf,0xe1,0xcc,0x28,0xfc,0x4a,0xd4,0x2c,0xc2,0xe3,0xbb,0x4a,0xe0,0x7d,0xf7,0x8e,0x5a,0xaf,0xc2,0xbb, - 0xff,0xa0,0x13,0xf2,0xbc,0x0a,0xef,0xfe,0x5d,0x15,0xb8,0x3d,0x09,0xef,0x7e,0xa5,0xe0,0x05,0x3b,0xfc, - 0xfc,0x48,0xc9,0x05,0x66,0x38,0xfe,0x87,0xfa,0xfc,0x4b,0x3a,0x84,0xfc,0x33,0xef,0xf2,0xcb,0x05,0x92, - 0xd3,0xaf,0x08,0x79,0x1c,0x9f,0x59,0x43,0x3a,0x36,0xfd,0x9e,0x43,0x18,0x44,0xf8,0x60,0x16,0x35,0x5e, - 0x80,0x20,0xf1,0x22,0x16,0x11,0xe2,0x10,0x1a,0x15,0xfc,0xcd,0xe6,0xd1,0xef,0x8f,0xe4,0xc2,0x91,0xb3, - 0x20,0x2e,0x59,0xf8,0xcf,0xdc,0x6f,0xd2,0x86,0x1e,0x51,0x9c,0x9e,0x4e,0x99,0xae,0x0b,0x4c,0xd2,0x2b, - 0xfe,0xe0,0x41,0xb8,0x5a,0x2c,0xb9,0xc4,0x9e,0xc9,0x40,0x09,0x3f,0x40,0x43,0x57,0xb1,0xef,0xd0,0xc6, - 0x37,0x4e,0x91,0x8f,0xf1,0xb2,0xf9,0x89,0xde,0xe5,0x03,0xe4,0x05,0x8d,0x2f,0x48,0x90,0x4f,0x0c,0x3b, - 0x7c,0xba,0x2d,0x5e,0xa1,0x6e,0x83,0x31,0x92,0x5c,0xbd,0x5b,0xb7,0x4c,0x0f,0xe5,0x1b,0xf7,0xf9,0x08, - 0xf5,0xa5,0xb3,0xd9,0x32,0xf9,0xa4,0x62,0xc7,0x90,0x2b,0xf0,0xfc,0x7c,0x4a,0xa9,0x3b,0xc0,0xff,0xdf, - 0x68,0x22,0xe8,0xd4,0xd8,0xf6,0xc7,0x02,0x37,0x70,0x75,0x54,0xbb,0x8e,0x89,0x3d,0x5d,0xc8,0xc4,0xaa, - 0x06,0x85,0x20,0x02,0xb1,0xa3,0x83,0x64,0xaa,0xe3,0xf0,0x79,0xb5,0xb5,0x50,0x5d,0xd3,0x19,0xd5,0x94, - 0x51,0x4d,0xb7,0x21,0xff,0xa2,0xf5,0xd6,0xc7,0xe1,0xbb,0xae,0x15,0x7b,0x9f,0xc3,0x49,0xc3,0xd1,0x51, - 0xad,0x8e,0x88,0xcb,0xb0,0x91,0xb0,0x3a,0xa1,0xe6,0x99,0x82,0xf7,0x64,0xe7,0xe8,0xd3,0x9e,0xd2,0xf9, - 0xbd,0x40,0xf7,0x79,0xba,0xcc,0xe3,0x37,0x88,0xab,0xfb,0xef,0xf9,0xae,0xd7,0xd3,0xdc,0x3a,0xcb,0xe4, - 0x57,0x48,0x22,0x69,0x4f,0xc4,0xcf,0x66,0xf3,0xbb,0x4e,0xb4,0xc2,0xcb,0x32,0xfa,0x0d,0x06,0xd5,0x46, - 0x31,0xdd,0xb3,0x1f,0x1e,0xd2,0x89,0xc1,0x78,0x70,0xc7,0x3d,0xe3,0xb7,0x49,0x86,0x08,0x7e,0xcd,0xdc, - 0x5a,0xea,0x68,0xf3,0xd9,0x13,0x47,0x74,0xe9,0xb3,0xa2,0xc5,0x6f,0x39,0x9b,0x46,0xdb,0xf4,0xc0,0x46, - 0xef,0x6a,0x10,0xd0,0xcd,0xe6,0x61,0x36,0xd4,0xbe,0x91,0xdf,0x9d,0x25,0x36,0x10,0x63,0xc7,0x44,0xee, - 0x59,0x33,0x5e,0xed,0x1f,0x33,0x9b,0x26,0x4f,0x66,0x91,0xf6,0x50,0xdf,0x0e,0x38,0x08,0x1f,0xdd,0x34, - 0x8b,0xbe,0x2b,0x14,0x3a,0x39,0x39,0xf3,0xfa,0xde,0x8c,0x68,0xf8,0x1c,0x02,0x38,0x42,0xfa,0x0a,0x01, - 0x75,0x09,0xc8,0xef,0xd8,0x31,0xdb,0x14,0xc2,0x3f,0x6c,0x7b,0xea,0x2a,0xad,0xce,0x55,0x7c,0x15,0xa7, - 0x95,0x62,0xc3,0x00,0xc5,0x3e,0xd0,0xb5,0xf2,0x3c,0x5f,0x03,0x29,0x76,0x5c,0xaa,0x38,0x2e,0xbd,0xba, - 0x22,0xb2,0x9a,0xa8,0x77,0x90,0xfa,0x69,0x62,0xa3,0xe8,0x70,0x96,0xc3,0xdb,0x21,0x7b,0x62,0x51,0x32, - 0x02,0xe3,0x01,0xcc,0xba,0xd4,0x66,0x77,0xa1,0x74,0x8c,0x91,0x10,0xf5,0xec,0x04,0x2d,0xcd,0xd6,0x70, - 0xcc,0x78,0xb6,0x5e,0x2c,0x20,0x26,0xd4,0x50,0xa8,0x83,0xae,0x78,0xda,0x4f,0x0d,0xf6,0x04,0xbd,0x3b, - 0xd0,0xb0,0x36,0x18,0x5a,0xd0,0xe7,0x11,0x4a,0x90,0xe0,0xd6,0x98,0xa5,0x53,0xe2,0x77,0x94,0x15,0xd8, - 0x3b,0xeb,0x21,0x92,0x0e,0x82,0x7f,0x72,0x42,0x24,0x9f,0xfe,0xd4,0xb5,0xb6,0x3e,0x50,0x1b,0xfe,0xc3, - 0xb6,0xe4,0x47,0x44,0x11,0x37,0x5a,0x8d,0xb2,0xc7,0x60,0xa2,0x8b,0x88,0x7d,0x1c,0xed,0x1d,0x07,0xea, - 0x34,0xd7,0xf3,0xc9,0x06,0x62,0x90,0x70,0x3b,0x11,0x5b,0x86,0xd9,0xbd,0x77,0xb9,0xeb,0x9c,0xe5,0x5d, - 0xce,0x76,0xb8,0xb8,0xc9,0x39,0xcf,0xa3,0xa4,0xc6,0xea,0x53,0xbc,0x99,0xbd,0x1e,0xe8,0xa4,0xce,0x90, - 0xe2,0xec,0xe4,0x9c,0x78,0x85,0xc4,0xd6,0x56,0xcd,0x1f,0x2e,0x72,0xa0,0x76,0xd2,0xb1,0x10,0x9e,0xcb, - 0x42,0x58,0xb4,0x33,0xb4,0xc5,0x34,0x94,0xe7,0xdd,0x4e,0x9e,0xbc,0xac,0xda,0x99,0x2e,0xd1,0x05,0x9a, - 0x89,0xf4,0x22,0xad,0x10,0x10,0x51,0x1b,0xe5,0x12,0x7b,0xca,0xca,0x27,0x7b,0xc7,0xac,0xeb,0x89,0x18, - 0xe7,0x58,0x1d,0xbf,0x9e,0x53,0x2e,0xee,0xa6,0x02,0xbc,0xc0,0xa7,0x1e,0xef,0x58,0x66,0xb4,0x81,0x4c, - 0x6f,0xcb,0x3e,0x6e,0xf0,0xa0,0xd6,0xba,0x3e,0x93,0xbb,0x05,0xdf,0xb5,0x9a,0x2e,0x8c,0x1f,0x01,0xd6, - 0xbf,0x53,0x65,0x1d,0xbf,0x5e,0x34,0xf9,0x96,0x81,0xbe,0x7b,0xc3,0x75,0x43,0x81,0xd7,0x8a,0x67,0xac, - 0x75,0x21,0x4b,0xc9,0xac,0xea,0x9f,0x46,0x71,0x1d,0xd4,0x3e,0xbd,0x1f,0xd1,0xa9,0x27,0x46,0x28,0x98, - 0xa5,0xc9,0x8a,0x45,0x4e,0xe3,0x2a,0x11,0x52,0xcd,0xf0,0x94,0x11,0x5f,0xfb,0x22,0xb7,0x63,0x80,0xe9, - 0x56,0x34,0xbd,0x1f,0xa5,0xc3,0x29,0x15,0x48,0x06,0xec,0x65,0x85,0x7f,0xd8,0xdf,0x3a,0x4b,0x26,0xd0, - 0xff,0xa1,0xc9,0x1e,0x01,0x80,0x29,0x37,0x7b,0x70,0xcc,0xdf,0xf9,0x74,0xe4,0x9d,0x15,0xe0,0xf0,0xca, - 0x11,0x33,0x56,0x05,0x2c,0xd4,0xe5,0x81,0xc6,0x4f,0xe0,0xde,0x3b,0x12,0xcf,0x08,0xde,0x8a,0x73,0x71, - 0x1c,0xdc,0xce,0x7c,0xc7,0x9c,0x4f,0x35,0x3a,0x22,0x10,0x24,0xa0,0x1a,0xe7,0x08,0xf0,0x74,0x82,0x49, - 0x84,0x32,0x7a,0x2d,0x95,0xa1,0x29,0x4b,0x06,0x35,0x7f,0xc9,0xd8,0xb6,0xc6,0x8d,0x73,0x8b,0xab,0xe4, - 0x0f,0x4b,0x02,0x4a,0x35,0x64,0x21,0x5f,0x4a,0x04,0x9c,0x8e,0x24,0x0f,0x72,0x3f,0xb7,0xea,0x6c,0xb0, - 0x4b,0xcd,0x5b,0x77,0xe2,0xb3,0xe8,0x65,0x3e,0x5e,0x21,0x44,0x14,0xff,0x36,0xe4,0xdf,0xc4,0xc0,0x9d, - 0x94,0x27,0x27,0x2f,0x89,0x75,0x0b,0xfc,0x7b,0x87,0x5e,0x7f,0x65,0x04,0xe1,0x01,0xad,0xf8,0x14,0x67, - 0x69,0x58,0x67,0x19,0xd1,0xf6,0xcc,0x95,0x69,0x33,0x7a,0x18,0x4c,0xb3,0x96,0xb0,0x8a,0xfa,0xb3,0xe2, - 0xf3,0x9f,0xf6,0x3b,0x09,0xc0,0xad,0xa0,0xd5,0x11,0xd5,0x0e,0xa8,0x0e,0x21,0x46,0xa7,0xb6,0x4b,0x69, - 0xf9,0xe0,0xe0,0xfe,0xe1,0x82,0x8e,0x18,0xb4,0xeb,0xbb,0x59,0x4e,0xc6,0x0f,0x1f,0x3d,0x78,0xf5,0xe0, - 0x64,0x5c,0xe7,0x9c,0x4c,0x6c,0x4e,0x08,0x95,0xfd,0x95,0x12,0xb7,0xcb,0xd0,0x67,0xd1,0x3e,0x9b,0x38, - 0x8c,0xde,0x79,0x2c,0x1b,0x25,0x3f,0x40,0x09,0xc2,0x83,0xfc,0x85,0x70,0xde,0xe8,0xe8,0x1c,0x9c,0x9b, - 0xfe,0x56,0xd1,0xb9,0x2a,0xa8,0xa2,0xe5,0xc1,0x1c,0x91,0xa8,0xad,0x1d,0xd2,0x65,0xe4,0x28,0x03,0xdc, - 0x13,0x19,0x00,0xd4,0x30,0x2f,0x19,0xf8,0xcb,0xdc,0x44,0xd4,0x32,0x16,0x64,0xae,0xea,0xc0,0xc1,0xc9, - 0xdb,0xbb,0x89,0x14,0xb9,0x60,0xf4,0x4d,0x74,0x78,0x46,0x44,0xaa,0xd0,0x2a,0x88,0x3a,0x3c,0x82,0x76, - 0x58,0x52,0xaf,0xc2,0xcf,0x15,0x6c,0x6d,0x33,0xff,0xa2,0x7f,0x97,0x8e,0x78,0x9a,0xd4,0x6f,0xa1,0xd7, - 0x35,0x6f,0xb5,0xb9,0x70,0xdb,0x9c,0xdc,0x97,0xf6,0x16,0xdc,0x5e,0xe6,0x2f,0xfa,0x77,0xdc,0xe2,0xc8, - 0x0f,0x0d,0x69,0x76,0x4f,0xeb,0xaf,0x45,0xe5,0xf0,0x1d,0x32,0xbe,0xc3,0xdd,0xb2,0x09,0x68,0x68,0x0b, - 0x20,0xff,0xa9,0xcd,0x3f,0x95,0xfc,0xa7,0xd2,0xee,0x59,0xb4,0x1c,0x66,0xfe,0xa9,0x53,0x8e,0x00,0x78, - 0x3a,0x3e,0x9e,0xa8,0x33,0x3e,0x96,0xba,0x75,0x5c,0xb5,0x63,0xa5,0x24,0xb6,0xd2,0x58,0x2a,0xb5,0x91, - 0xff,0xae,0x8d,0xc7,0xbf,0x04,0x55,0xf1,0xc9,0x23,0xc4,0x62,0xc1,0x2a,0x0b,0x97,0x5b,0x6a,0x32,0x71, - 0xbb,0xea,0xac,0xaa,0xe1,0x1e,0x16,0x83,0xae,0xb6,0xcc,0xd9,0xf8,0x23,0xb7,0x09,0x05,0x25,0x0c,0x83, - 0xcc,0xcf,0x1b,0x1d,0xd6,0xfe,0x23,0x4d,0x20,0x4e,0xac,0xa7,0xda,0x06,0x73,0x8d,0xb5,0xf8,0x92,0x76, - 0x71,0x22,0x1b,0xe8,0x4c,0xe6,0xa7,0xcd,0xc2,0xf0,0x7d,0xbe,0x54,0xc5,0x76,0xeb,0x8b,0xd5,0x54,0x70, - 0xbd,0x13,0x6a,0x21,0x8b,0xac,0x9b,0x42,0xb6,0xba,0xa8,0xeb,0xe4,0xd3,0xbf,0x50,0x14,0x5a,0xbf,0x99, - 0xb8,0x0e,0x2f,0xa8,0x17,0x6a,0xcd,0x8f,0xb9,0x38,0x80,0x2e,0xf8,0x82,0xdc,0x0c,0x73,0x19,0x4d,0xd9, - 0x5b,0xc3,0xde,0x5e,0xca,0x3e,0x78,0xa4,0xfb,0x1a,0x87,0x57,0xbc,0xa8,0x45,0x32,0x35,0xc7,0x8a,0x3f, - 0x1a,0xce,0xee,0xcd,0x87,0x33,0xa3,0xe4,0x77,0x6e,0x0a,0x8c,0x67,0x93,0xe1,0x8a,0x1a,0x3d,0x80,0xb5, - 0xdc,0x39,0xc6,0x64,0x10,0xe8,0xb6,0xe7,0xdd,0x06,0xdc,0xf8,0x8e,0xea,0x7c,0x7c,0x77,0x72,0xeb,0x96, - 0x56,0xe8,0xc4,0x8b,0xd2,0xc9,0x9f,0xbb,0xc9,0x9f,0xdb,0xe4,0x2f,0xdc,0xe4,0x2f,0xb4,0x35,0xe1,0x25, - 0x57,0xb3,0xd9,0x20,0x23,0xfe,0x7e,0x41,0x7f,0x3d,0x4f,0x5d,0x44,0x5e,0x6c,0x5c,0x5c,0xc3,0x7d,0xb3, - 0xd4,0x70,0x3c,0x19,0x99,0x35,0xf2,0x28,0x81,0x4b,0xdd,0xe7,0xc9,0x15,0x5c,0xa2,0x96,0x8f,0xf3,0xe2, - 0x3b,0xca,0x15,0x76,0x7f,0x1d,0xae,0x68,0x44,0x5a,0x77,0x1d,0x95,0x28,0x66,0xb1,0xc3,0x1f,0x12,0xff, - 0x92,0x96,0xd1,0x76,0xbb,0x64,0xd5,0x67,0x9e,0x64,0x56,0x60,0x25,0x02,0xea,0xee,0x38,0x61,0xd6,0xa2, - 0x95,0x82,0x75,0x2b,0x78,0xa4,0x8f,0x38,0x2e,0x42,0x8b,0xd8,0x67,0xb0,0x25,0xe3,0x2b,0x6f,0x7a,0x83, - 0x47,0x9b,0x0c,0x36,0xd9,0x57,0x4c,0x8b,0x72,0xc5,0xbe,0x5b,0x88,0x04,0xb5,0xd6,0xdd,0x5b,0x63,0x32, - 0xbe,0x6f,0x1e,0xde,0xe8,0x07,0xe0,0xce,0xa5,0xdd,0xdf,0xf6,0xad,0x63,0xe7,0xcb,0x80,0x50,0x7a,0xaa, - 0x97,0xfb,0x3e,0xdc,0xb8,0x3a,0xcf,0x4b,0xe7,0x79,0xee,0x3c,0xfb,0x6f,0xa2,0x7d,0x97,0x62,0x29,0xa2, - 0x85,0xf7,0x8e,0x08,0xf5,0x2f,0xfb,0xd1,0x1b,0xd5,0xa8,0xfc,0x6d,0x63,0xdf,0x3f,0x52,0x97,0x20,0x38, - 0x97,0xc1,0xf6,0x92,0xc5,0x91,0x6f,0x71,0x32,0x88,0x60,0x39,0x6e,0x29,0xe9,0xdb,0x9a,0x98,0xbe,0x65, - 0x1d,0xd3,0x4a,0xd4,0x94,0x77,0x48,0x6d,0x65,0x4c,0x64,0xb7,0x85,0xcf,0x32,0x22,0x89,0x12,0x72,0x9e, - 0x2b,0xe7,0x1a,0xa2,0xb1,0xfb,0x39,0x92,0x15,0x77,0x1b,0xec,0x10,0xaa,0xec,0xec,0x88,0xaa,0x0b,0x25, - 0x6e,0xc0,0x94,0xce,0xbc,0xef,0x47,0x2e,0xfd,0x55,0xed,0x90,0xee,0xd0,0x52,0xee,0x52,0x93,0x27,0x67, - 0x5b,0x8c,0x61,0xfd,0x2a,0x2b,0x56,0x04,0xa4,0xe5,0x66,0x73,0x85,0x3b,0xce,0xe1,0x73,0xa0,0x3c,0x5c, - 0x66,0x13,0xec,0x10,0xe5,0xaa,0x19,0x90,0xa2,0x56,0x76,0x26,0xa2,0x27,0xac,0x6d,0xe5,0x72,0xb6,0x46, - 0x78,0x89,0xf8,0xa8,0xbf,0xe6,0x46,0x77,0x32,0xd3,0x3a,0x93,0xf2,0x14,0xc9,0x8f,0xdd,0x44,0x7f,0xc9, - 0x95,0x4c,0x23,0xaf,0x00,0xf0,0x22,0x36,0x86,0x1e,0x94,0xcb,0xb5,0x3c,0xf1,0xfb,0x84,0xbb,0x9d,0xd2, - 0x06,0x09,0x89,0x22,0xf5,0x18,0xfc,0xdc,0x9e,0x76,0xa0,0xcf,0x1e,0x15,0x57,0xd1,0x3c,0x10,0x65,0x66, - 0x73,0x1d,0x8d,0xe4,0x95,0x28,0x5f,0xaf,0x9a,0xf2,0x54,0x1a,0x24,0xc4,0x76,0x87,0xaf,0xe3,0xcb,0xd8, - 0xcd,0xdb,0xc8,0x44,0x7d,0x46,0x8c,0xda,0x80,0x1b,0xa4,0xa1,0x9f,0xb1,0x27,0x78,0x0e,0x44,0x69,0x00, - 0xb1,0xd2,0x74,0x6c,0x61,0x19,0x7c,0xd0,0xb3,0x79,0xb4,0xc8,0x69,0xcd,0xfb,0x73,0x85,0x3a,0xe6,0xac, - 0x18,0x48,0xe3,0xbf,0x88,0xe6,0xca,0x5e,0x34,0x5e,0xe0,0x52,0x0d,0xb2,0x3b,0x54,0x7f,0x01,0x56,0x99, - 0x4d,0x0d,0xe6,0xf5,0xb9,0xe2,0x28,0xe0,0x83,0xc5,0xdc,0x39,0x58,0xe0,0x46,0xb2,0x33,0x7a,0xb1,0x15, - 0x96,0x59,0x77,0x97,0x6e,0x94,0x46,0x7b,0xab,0xea,0x90,0xe0,0xc4,0xf8,0xa1,0x49,0x38,0x82,0x27,0xbc, - 0xf4,0x68,0x1a,0xe5,0xd4,0x46,0x89,0x12,0x97,0x44,0x48,0x56,0x4b,0xc9,0xa7,0x95,0x51,0xc2,0x92,0x6e, - 0x8d,0x47,0x4d,0x1a,0x07,0xeb,0xda,0xb1,0xd0,0x4e,0xa2,0x62,0xcf,0x83,0x70,0x5e,0xdf,0x85,0xd2,0xd7, - 0x7f,0xc2,0x98,0xbf,0x23,0x52,0xa9,0x73,0x67,0xab,0xf7,0xdf,0x0a,0x97,0xa6,0x09,0x2e,0x19,0x2b,0xb9, - 0x64,0xd4,0xaa,0x2d,0x61,0xb5,0xd5,0x46,0xd6,0x1d,0x57,0xb8,0xa2,0xcb,0xac,0xaf,0x1f,0x4d,0xec,0xc4, - 0xf6,0x85,0xae,0xd1,0x66,0xd2,0xf7,0x92,0x70,0xa8,0x8b,0x4e,0x5d,0xba,0x93,0x75,0x89,0x02,0x38,0xa4, - 0x73,0x95,0x97,0x7c,0x5e,0xe7,0xd9,0xf8,0x36,0xe1,0x49,0x26,0x58,0x8e,0x0c,0x06,0x6c,0x36,0x05,0xf5, - 0x95,0x71,0x46,0xaa,0x24,0x0c,0xe0,0x27,0x2a,0x4a,0xdd,0x2f,0xa4,0xfb,0xe6,0xa3,0x1e,0xc5,0x7c,0x1b, - 0x84,0x05,0xb5,0x48,0xab,0x71,0xcf,0xc1,0x35,0x98,0x08,0xed,0x54,0xb3,0xf7,0xfe,0xb3,0x6a,0xc3,0x24, - 0xa1,0x11,0x5f,0xcf,0x58,0xa0,0x57,0x1c,0x5a,0x0f,0x08,0x6e,0x24,0xb7,0x94,0x80,0xa0,0xb0,0x39,0xac, - 0x35,0xb6,0x7e,0xed,0xe4,0x86,0x61,0x93,0xf1,0x70,0x7e,0x87,0x0e,0x30,0x77,0xbd,0x6a,0x76,0x1d,0x16, - 0x19,0x04,0x30,0x2b,0x63,0x9f,0x0f,0x60,0xa1,0xc0,0x4e,0xbf,0x38,0x8a,0xb8,0x4c,0xff,0xb1,0xe8,0x93, - 0x44,0xf2,0x55,0xe4,0x82,0x9b,0xcd,0x6d,0x4f,0xcb,0x0f,0xbc,0xdb,0x43,0x6a,0xb6,0x11,0xec,0xad,0xf9, - 0xce,0x66,0x04,0xe3,0xf3,0x49,0x34,0x17,0x63,0xeb,0xba,0x8f,0x42,0x37,0xe6,0xbc,0x74,0x24,0x2c,0x5b, - 0x2a,0x5b,0xbb,0xba,0x18,0xae,0x47,0x19,0x90,0x8e,0x38,0xaf,0xb9,0xca,0x4d,0x46,0xc4,0x19,0xcb,0x3a, - 0xf4,0xea,0xf3,0x71,0x6e,0x8f,0x6d,0x13,0x95,0x38,0xee,0xb1,0xc6,0x3b,0x3e,0xb1,0x28,0x07,0x82,0x2f, - 0xdf,0x85,0x36,0x88,0x21,0x28,0x3d,0x4f,0xde,0xd8,0x9d,0xc2,0xde,0x14,0x9a,0xd6,0x75,0x1f,0x01,0x5a, - 0x65,0xeb,0x8f,0x8e,0x89,0xdd,0x6a,0xb6,0x97,0x89,0xc3,0x6d,0x6c,0x50,0x0d,0x29,0xbf,0x09,0x2e,0xf6, - 0x3c,0x73,0xaf,0x8e,0xc4,0xa3,0x09,0x08,0x5b,0x5a,0xd3,0xac,0x55,0xed,0x8e,0x03,0xa6,0xdd,0x81,0x5d, - 0x4d,0x0d,0xe7,0x1f,0x55,0x34,0x45,0xe0,0x47,0xb9,0xc2,0x19,0xf9,0x08,0xb5,0xe9,0xd5,0xa7,0xa0,0xc2, - 0xd8,0xaa,0x30,0x59,0x35,0x09,0xa3,0x2a,0xfc,0x39,0x67,0xb7,0x7e,0xec,0xf2,0x5c,0x7a,0x3d,0xa2,0x11, - 0x43,0x9c,0xa7,0x3d,0xbe,0xed,0x95,0x0c,0x83,0x3d,0xf6,0xdd,0xe7,0xb7,0xa5,0x27,0x82,0xa5,0x97,0xf9, - 0xe8,0xf7,0xd4,0xbf,0xcc,0x83,0xf0,0xdb,0x94,0x4f,0xeb,0xf5,0x61,0xc1,0x3a,0x7f,0x53,0xce,0x11,0x94, - 0xfe,0x4c,0xe1,0xc2,0x37,0x2e,0xab,0x27,0x60,0x1a,0x40,0xb0,0x38,0x9e,0x4f,0x32,0xc5,0x66,0x15,0x5c, - 0xd3,0xcc,0x16,0xc2,0x4f,0x04,0xf7,0x71,0xd5,0x64,0x98,0x65,0xcb,0x48,0x4c,0x61,0xa5,0xab,0x34,0x7b, - 0xd5,0xa2,0x5f,0xb9,0xd1,0x50,0x5c,0x47,0xff,0x84,0x57,0x95,0xda,0x1d,0xf2,0x50,0x17,0x90,0xcb,0x98, - 0xb5,0x5c,0x42,0xe9,0xba,0xaf,0xbd,0x7f,0x3b,0x13,0x4d,0x41,0x0f,0x3a,0x13,0xd4,0xc1,0xb4,0x5f,0xd4, - 0x9c,0xb7,0xd9,0xbd,0xa6,0xf7,0x6a,0x53,0x8b,0x8e,0x6e,0xbd,0xb7,0x53,0xbc,0xce,0xa0,0xd1,0x07,0x83, - 0xa4,0x58,0x8b,0xb4,0xa0,0x97,0x58,0xe5,0x6f,0x92,0xac,0x0c,0xcb,0x2d,0x47,0x06,0x0a,0x46,0x89,0x61, - 0x1b,0x61,0x05,0x7a,0x47,0x39,0xa5,0x00,0x24,0xf3,0x62,0x8a,0x81,0x91,0xc4,0x83,0xdc,0x69,0xd1,0xba, - 0x0d,0x05,0x67,0xab,0x7a,0x4e,0x2d,0x1a,0x8f,0x93,0x1a,0x37,0x19,0xa5,0xa1,0x34,0xee,0x34,0x76,0xd7, - 0x56,0x22,0xfc,0x63,0xc1,0x06,0xe1,0x3b,0x6e,0xe2,0xdb,0xcb,0xb4,0x59,0x58,0x59,0x5b,0xb7,0x70,0xef, - 0x88,0xcd,0x23,0xe8,0xb8,0xe2,0x1b,0xdc,0x44,0x1c,0x63,0x2d,0x48,0x82,0x34,0xf8,0x22,0xfd,0x33,0x61, - 0x39,0x0e,0x4c,0xa1,0x12,0x05,0x99,0xce,0xdb,0x3c,0xfa,0x57,0x0e,0x3a,0xe1,0x5c,0x37,0x81,0x97,0xd8, - 0xc7,0x2d,0xe9,0x8e,0x6c,0xd6,0xee,0x33,0x30,0xe1,0x11,0x57,0x32,0xba,0x64,0x44,0x7b,0x6b,0xa2,0xee, - 0x50,0x53,0x53,0xbd,0x98,0x7d,0xac,0x6c,0x79,0xa1,0xe3,0x8c,0xbf,0x37,0xd5,0xdb,0xf2,0x14,0x96,0x09, - 0x5a,0x51,0x94,0x1a,0x83,0x8a,0x0e,0xfe,0xce,0x11,0xf9,0x6b,0x91,0xf9,0x6c,0x4c,0x85,0x03,0xd0,0x7e, - 0x6e,0x9f,0x77,0x4d,0x40,0xad,0x01,0x28,0xab,0x41,0x99,0xb8,0x10,0xda,0x2b,0xb4,0x75,0x1d,0xc4,0xc5, - 0x1b,0x96,0x04,0x68,0xa6,0xb6,0x0f,0xb5,0x3e,0x63,0x08,0x99,0xa8,0x45,0x6d,0x54,0x86,0x30,0x82,0x94, - 0x30,0x40,0xa0,0x98,0x77,0x04,0xa0,0x00,0xff,0xa9,0x63,0x4b,0xa7,0xc4,0x6a,0x81,0xba,0x97,0x68,0xb6, - 0xc2,0x03,0x3d,0xe6,0xa8,0x40,0xb5,0x21,0x18,0x5e,0x0c,0x55,0x19,0x7b,0x69,0x06,0x4e,0xf3,0xc0,0xf6, - 0xd3,0x58,0x2d,0xb8,0x32,0x4e,0x8e,0x1f,0xda,0xf6,0x1b,0x68,0xc2,0x53,0x6b,0xfb,0xd8,0x3a,0x03,0xd8, - 0x43,0xf8,0x5d,0x51,0x66,0xea,0x88,0xda,0xdb,0xb9,0xd8,0x3b,0x66,0xe6,0x9d,0xf8,0xec,0xf9,0xc3,0x9c, - 0x00,0xcd,0xf7,0x00,0x75,0xc0,0x69,0x22,0x9d,0x71,0xd4,0xfc,0x68,0xda,0xcb,0xef,0xc5,0xb5,0x67,0xad, - 0xb2,0x95,0x09,0x9e,0x94,0x78,0xc3,0xa2,0x96,0x61,0x15,0x77,0x43,0xcb,0x8c,0xcc,0xd3,0x2d,0xf1,0xa1, - 0x0d,0x74,0xd1,0xfe,0x0c,0x5a,0x70,0xb4,0x45,0xb1,0x38,0x72,0xf1,0xfe,0x67,0xd3,0x9e,0x64,0xc4,0x9b, - 0xdb,0x03,0x1a,0x25,0xc8,0x01,0xa4,0x01,0x22,0xca,0x2e,0x08,0xde,0x4a,0xdf,0x6c,0xee,0x36,0x92,0xd9, - 0x6d,0x3b,0xbb,0x8c,0xd0,0xd4,0x05,0x47,0x33,0xdb,0x12,0xfc,0x11,0x33,0x83,0xe3,0xa0,0xb4,0xa4,0x1d, - 0xab,0xba,0x8e,0x56,0x0c,0xf7,0xdd,0xe9,0xb2,0xc1,0xdc,0xfd,0xc4,0x75,0xf5,0xa8,0x32,0x1c,0xe8,0x13, - 0x46,0xbe,0xe1,0x7f,0x6e,0x62,0x2a,0xff,0x86,0x39,0xe1,0x30,0x06,0x70,0x0b,0x75,0x6c,0x95,0xc6,0x59, - 0x98,0x9c,0x65,0x6c,0x78,0xa4,0x65,0xc5,0xd7,0xb4,0x0d,0xd0,0xe9,0x58,0x1b,0x61,0xe6,0x26,0x74,0x6d, - 0xeb,0xba,0x84,0x3e,0xb4,0x52,0xb6,0xcd,0x60,0x7f,0x76,0x5e,0x25,0x7e,0x82,0x71,0x28,0xdf,0x30,0xca, - 0xac,0xa0,0x39,0xc8,0xa6,0x95,0xe2,0x0e,0xa8,0x90,0x1b,0xa8,0xe6,0x9e,0xe6,0x27,0xa3,0x3c,0x4c,0x03, - 0xe3,0x08,0x75,0x8b,0xca,0x32,0x23,0x37,0x67,0x47,0x3e,0xfa,0x39,0xaa,0xaf,0x9b,0xf8,0x3e,0xdc,0x5c, - 0x94,0xdb,0xcc,0x10,0xa6,0x35,0xcc,0x97,0xe1,0x33,0xd2,0xbd,0x87,0x6a,0xf5,0xce,0xf9,0xb8,0xd9,0x88, - 0x01,0xa9,0x5b,0xde,0x11,0xc9,0x20,0x8a,0x6d,0x2f,0x0b,0x3c,0xdd,0x10,0x16,0x3a,0x6d,0xe1,0x75,0x44, - 0x37,0x93,0x42,0xdb,0x5f,0x0c,0x8f,0xf8,0xf1,0x44,0x5c,0x01,0x95,0xd1,0xc3,0x9c,0xc3,0x9f,0x1b,0x39, - 0x7d,0x39,0x48,0x8a,0x22,0xa7,0x23,0x44,0x4a,0x6b,0xa7,0x4a,0x57,0x65,0x94,0xab,0x52,0x13,0xa1,0x6b, - 0x68,0x73,0xa4,0xcb,0x24,0x4c,0x94,0x7e,0x7a,0x95,0x3f,0xd6,0xa0,0x2a,0x3b,0xb4,0xf9,0x3b,0x0c,0x60, - 0x77,0xae,0x03,0xb4,0x0f,0x05,0xa2,0xf7,0x7c,0x07,0x47,0xe7,0x42,0x9e,0x02,0x7d,0x27,0xd5,0x2b,0x6a, - 0xe3,0x84,0x1c,0x6e,0xce,0xec,0x55,0xc4,0x48,0x1b,0x25,0xb9,0x69,0x41,0x9f,0x36,0x44,0xc6,0x5d,0x78, - 0x4e,0x33,0xc7,0x4b,0x38,0xde,0x13,0x6b,0x7a,0xc8,0x4c,0x0a,0x28,0x7b,0xc2,0xaa,0x1a,0x33,0x6e,0xc7, - 0xac,0xed,0x83,0x66,0x88,0xba,0xa8,0xd1,0x6d,0x5a,0x13,0x8f,0xfa,0x8a,0x2e,0x6e,0xa7,0x34,0xf5,0xf5, - 0x9c,0x80,0x29,0xc0,0x9d,0x29,0xf4,0x13,0xd0,0x7e,0x44,0xb8,0x89,0x2b,0x8d,0x6d,0xe0,0xff,0x99,0x07, - 0x83,0x5d,0xe0,0x51,0xb6,0x38,0xda,0xdb,0x83,0x27,0xfb,0xf3,0xcc,0xc7,0x55,0x53,0xe6,0xbe,0xc3,0xe3, - 0x53,0xdc,0x69,0x8d,0xf3,0xb5,0x6b,0x31,0xc6,0x61,0x6e,0xad,0x8e,0x09,0xb5,0x9d,0xc6,0x51,0x87,0x65, - 0x95,0xc9,0xfe,0x61,0xa3,0x2b,0xd0,0x3e,0x36,0x4e,0xe2,0x66,0xa0,0x4e,0xda,0xb0,0xfd,0x24,0xfe,0xd2, - 0x4d,0x32,0x0f,0x26,0x0a,0xf3,0x6e,0x64,0xd1,0x46,0xc8,0x71,0x76,0x6b,0x90,0x69,0x70,0x9b,0xe5,0x09, - 0x4e,0x51,0xf6,0x1f,0x5e,0x8e,0x01,0x2b,0x67,0xf2,0x4c,0xd7,0x31,0x08,0x8b,0xc0,0xfb,0x9b,0xb0,0xac, - 0x36,0x6a,0x02,0x33,0x0c,0x45,0x0c,0xb1,0x82,0x75,0xc5,0xb5,0xe7,0x78,0xee,0x72,0xbb,0x52,0x30,0x2b, - 0x69,0x80,0x24,0xa7,0x58,0x2e,0xbf,0x63,0xb2,0x9a,0xaf,0xab,0x86,0xc7,0xb8,0x9e,0x93,0xf4,0x7e,0x2b, - 0x3e,0xd1,0xb2,0xb6,0xf3,0xd2,0x72,0x27,0x5d,0x1b,0x6f,0xf2,0xe1,0xdf,0x9d,0x33,0x80,0x59,0x46,0x6e, - 0xbc,0x4d,0xc0,0x8d,0xde,0x75,0xb7,0x70,0x29,0x7e,0xaf,0x20,0x29,0x43,0x1c,0x2b,0xb3,0x34,0xc2,0xcc, - 0x59,0x27,0x86,0x85,0x43,0xaa,0x79,0xdc,0xea,0x48,0xef,0x60,0xa9,0xf4,0x0a,0x80,0xea,0x59,0x0b,0xdd, - 0x87,0x66,0xbe,0x88,0x2a,0x64,0xbb,0xab,0xc3,0x9a,0xec,0xa7,0xb1,0x76,0xe4,0xc3,0xe6,0x6d,0xc6,0x96, - 0x4d,0xe3,0x3d,0x8d,0x89,0xde,0xb6,0x41,0xcb,0x28,0xc1,0x93,0xf8,0x61,0xf5,0x3c,0xcb,0x7d,0x34,0x8e, - 0x1b,0xeb,0x4c,0xa2,0x3b,0xce,0x88,0x8a,0xe9,0x8f,0x42,0xe8,0x46,0xf2,0x33,0xd0,0x59,0xa3,0xc4,0xef, - 0x0c,0x33,0x2b,0xa5,0x21,0x17,0xc6,0xef,0x20,0xbe,0x98,0x8d,0xe4,0x91,0x16,0x25,0x9d,0x73,0x7f,0x59, - 0x27,0x4f,0x8e,0xff,0x91,0xa1,0xf4,0xb6,0x15,0x84,0x9a,0xba,0xb5,0x26,0x04,0x01,0x0a,0x52,0xd7,0x86, - 0x0e,0xaf,0x20,0x7d,0xee,0xe8,0x19,0xee,0xda,0x73,0xb6,0x59,0xd2,0x4f,0x4c,0xc2,0x7c,0x6f,0x7c,0xb9, - 0x4e,0x0e,0x52,0x6a,0x67,0xd2,0xf3,0xfa,0xf0,0x43,0x79,0xeb,0x56,0x23,0x03,0x6f,0xe9,0xd3,0x37,0xae, - 0xa3,0xed,0xa4,0x15,0x10,0x4f,0x0e,0x5d,0x3b,0x80,0xaa,0xea,0x12,0x2e,0x0d,0xba,0xd4,0x73,0x80,0x75, - 0x7b,0xd1,0xb8,0x4e,0x6d,0x45,0xd9,0x43,0x98,0x3d,0x1b,0x5b,0xc2,0xa9,0x2c,0x75,0xe3,0x83,0x8b,0x28, - 0xd0,0x5e,0xea,0x5b,0xe6,0x0f,0x12,0x07,0x08,0x02,0xeb,0x4f,0x60,0xfb,0xf4,0x6a,0x86,0x1a,0x5f,0xca, - 0x3f,0x66,0x2d,0xb0,0x60,0xc2,0x9c,0x2c,0xc5,0x20,0x9d,0xd8,0xda,0xa6,0x42,0x2b,0x27,0x8e,0x52,0x36, - 0x35,0x0c,0x77,0x96,0x7f,0xc5,0xa1,0xe6,0xe1,0x30,0x19,0xd9,0xc2,0x3b,0x4e,0x85,0x2c,0x12,0x7c,0x6f, - 0x76,0xe5,0xa3,0xcd,0xe3,0xae,0x36,0x29,0x11,0x74,0x24,0x8d,0xe4,0x51,0x5d,0x13,0xc7,0x12,0xd3,0x66, - 0x57,0x88,0x7d,0x52,0x19,0xa6,0x8e,0x37,0xd0,0xbc,0x36,0xe2,0xc6,0x8c,0xe8,0x46,0x2d,0x0e,0x54,0x0d, - 0x95,0x2c,0x23,0x9b,0xd3,0xea,0x0b,0x1b,0xc7,0x26,0x72,0x9c,0xdc,0x60,0x8c,0x12,0x21,0x50,0xe1,0x20, - 0x3e,0x83,0x18,0x5b,0x61,0x8c,0xc9,0x08,0xae,0xbc,0x83,0x51,0x76,0xff,0x78,0x74,0x1c,0x1e,0x85,0xc7, - 0x61,0x35,0xe2,0x3c,0x17,0x29,0x8a,0xde,0x09,0xc2,0x23,0x13,0x4e,0x15,0x7e,0xb7,0xf4,0xfd,0xd0,0x64, - 0x94,0xb1,0x14,0x88,0x4f,0x5a,0xa1,0x33,0xb7,0xb1,0x83,0x05,0x7c,0x34,0xe5,0xb0,0xdf,0xed,0x53,0x6a, - 0xc3,0xed,0x7b,0xe9,0x0a,0x9d,0x1c,0x54,0x50,0x86,0xab,0x12,0x76,0x8a,0x0e,0x31,0xf7,0x76,0xd0,0x24, - 0x35,0xfc,0x7a,0x2e,0xe1,0x78,0x70,0xd9,0x60,0xa2,0x95,0xe4,0xc6,0x2d,0x45,0x64,0x63,0x6a,0xe8,0x2b, - 0x09,0x34,0xc6,0x9c,0x4d,0x1e,0x4c,0x89,0xe2,0xac,0xa3,0x58,0x2d,0x04,0xa9,0xe1,0xa7,0x91,0xbd,0x8f, - 0xe6,0x60,0x65,0x46,0xcc,0xd5,0x94,0xcc,0xdc,0x28,0x4e,0x09,0x39,0x85,0x1f,0x35,0xaf,0xaf,0xd6,0x06, - 0xe8,0x45,0x33,0x44,0x01,0x33,0x87,0x4b,0x76,0xb0,0x0d,0x27,0xcf,0xda,0x1d,0x9c,0xcd,0xb2,0xae,0xdd, - 0xfb,0x2e,0x59,0xdd,0x17,0x22,0xbf,0x0e,0x99,0x47,0x62,0x5c,0x9d,0xd5,0x16,0x8c,0xa7,0x82,0x41,0xec, - 0x15,0x6d,0x1f,0x2b,0x7f,0x20,0x09,0x5b,0x5d,0x8f,0x43,0x4d,0xf8,0x02,0x1b,0x92,0x12,0xec,0x6b,0xb5, - 0xa9,0xb9,0x3e,0x51,0xf9,0xec,0x18,0x12,0x9e,0x02,0x79,0xd3,0x4c,0x89,0x53,0xcf,0x4d,0x26,0x88,0x12, - 0x09,0x82,0x9a,0x1d,0xca,0x82,0xda,0x3b,0x0f,0xe5,0xae,0x8a,0x77,0x1a,0xa2,0xed,0xf8,0x49,0xc4,0x05, - 0x35,0x93,0xa4,0x6e,0x62,0x11,0x4b,0x8b,0xbb,0x46,0x5d,0x21,0xb2,0x37,0xea,0x90,0x12,0xca,0x91,0xd3, - 0x82,0xc0,0x8d,0x46,0x8c,0x13,0x54,0xc1,0x91,0x99,0xa5,0xb2,0xcd,0xa6,0xac,0x8f,0xb6,0xa2,0x32,0xe1, - 0x9e,0x5f,0x33,0xf8,0xfa,0x71,0x13,0x6a,0x36,0x74,0x5a,0xb7,0xbd,0xb6,0x6d,0x4f,0x77,0xda,0x76,0x5a, - 0x06,0x9e,0x1b,0x57,0x70,0x5b,0xd6,0x7d,0xaa,0xd5,0xe0,0xe8,0xf4,0xbc,0x25,0x2e,0x5c,0x4c,0x47,0x32, - 0xeb,0x9b,0x0c,0xa7,0xf6,0x5a,0x33,0xc2,0x4c,0xc6,0xd2,0x3d,0x2e,0x64,0xed,0x59,0x2d,0x46,0x7b,0xc4, - 0x58,0xf0,0x6c,0x42,0xec,0xed,0x7b,0x59,0x5e,0xd1,0x4e,0x95,0x96,0x55,0x4f,0x6f,0x23,0xbd,0x54,0x7b, - 0xfa,0x01,0xe2,0x52,0x9a,0x7d,0xf7,0xa0,0x72,0xcc,0x1e,0xa6,0x9b,0x85,0x9a,0x05,0xc0,0x17,0xf4,0x74, - 0xa3,0x52,0xc2,0x0d,0x2c,0x91,0x08,0x26,0xca,0x4a,0xda,0x61,0x07,0xf1,0xd1,0x06,0x32,0x6c,0xd3,0xc1, - 0x11,0x6d,0xbc,0x08,0x5a,0xc2,0xeb,0x86,0xe5,0x0f,0xd5,0x39,0xfc,0xd1,0x68,0xa4,0xe4,0x8b,0x61,0x5a, - 0xb7,0xc4,0x03,0x5c,0xe3,0x53,0x88,0x38,0xb7,0x9a,0x00,0x22,0x19,0xe4,0x8f,0xb8,0x6d,0x91,0xfe,0x13, - 0x6f,0x90,0x4b,0x05,0x74,0x3e,0x30,0x15,0xd0,0x12,0xe5,0x0a,0xcc,0xd4,0x6f,0x36,0x53,0x8e,0x2c,0x63, - 0xa2,0xb6,0xa4,0x16,0x96,0x70,0x82,0x54,0x69,0x19,0xaa,0x09,0x89,0xe7,0x2f,0x69,0xa6,0x19,0xae,0xc1, - 0xc0,0xc4,0x84,0x5f,0x2a,0x5a,0xc0,0xe6,0x14,0xb5,0xbb,0xe8,0x0a,0x87,0x87,0xaf,0xe0,0x65,0xd5,0x44, - 0x8e,0xc7,0xe6,0xdb,0x8e,0x0b,0x02,0xdf,0xf2,0xec,0x8b,0x51,0x67,0x4b,0x58,0x08,0x45,0xbc,0x50,0xc0, - 0x2c,0x98,0x59,0xab,0xeb,0xc6,0x4a,0x15,0x4b,0x29,0xcd,0x24,0xfa,0x9e,0x09,0xd0,0xdb,0xfb,0x0f,0x8c, - 0xfd,0x3f,0x30,0x5f,0x97,0x07,0x55,0xaf,0x8e,0x9b,0xad,0xc5,0xe3,0x7a,0x86,0xcb,0xf5,0x0a,0x6c,0x49, - 0x4f,0xcc,0x74,0xc4,0x52,0xad,0x11,0xd0,0x83,0x97,0x7c,0xbd,0xf3,0xca,0x19,0x0f,0x4f,0x7a,0xd5,0x78, - 0x34,0x71,0x9e,0xd5,0x42,0x04,0xb7,0x0b,0x4d,0x47,0xe6,0x78,0x87,0xa2,0x98,0x87,0x25,0x00,0x1d,0xc0, - 0xde,0x57,0xc7,0xa1,0xfc,0xde,0x95,0xdf,0xcf,0xbf,0x94,0xdf,0xbb,0x9f,0xeb,0xdf,0xaf,0x74,0xfa,0x3f, - 0x42,0x1b,0x80,0x4c,0x0a,0x7c,0xa1,0x33,0xe8,0x02,0x9f,0x7f,0x11,0x1a,0xf5,0xe2,0x19,0x54,0xdd,0x25, - 0xd7,0xdd,0x3b,0xba,0x7a,0xf9,0x39,0x3e,0xd2,0xbf,0xba,0xb5,0xe3,0x2f,0x75,0xc2,0x97,0x5f,0xdc,0xf9, - 0xbb,0xce,0xf3,0x8f,0x3b,0xa6,0x10,0x3d,0xdd,0x35,0x95,0x5e,0x95,0x9e,0xbd,0xf8,0xbb,0x1f,0x7d,0xf5, - 0x77,0x3a,0xb2,0xdc,0x8b,0x8e,0xef,0xdc,0xd9,0x6c,0xe8,0xf5,0xcb,0x2f,0xf8,0xf5,0xab,0xa3,0x91,0x6e, - 0x3c,0xa4,0xc4,0xcf,0xbf,0xe2,0xc4,0x2f,0xfe,0x3e,0xf2,0xc4,0x10,0xc2,0x0b,0x3d,0xbe,0xf6,0xe9,0x08, - 0x48,0x02,0x30,0xc9,0x5e,0xa7,0xf1,0xc2,0xf7,0x8e,0xbc,0x3d,0x27,0x78,0xf1,0x11,0x64,0x68,0x69,0xf9, - 0x3c,0x7e,0x2e,0x41,0xd9,0x88,0xe0,0x26,0xea,0xb1,0x89,0x56,0xd7,0x79,0xe7,0xd6,0x04,0xbb,0xe9,0xbb, - 0xad,0x54,0x7f,0xb2,0xca,0x3c,0xc7,0xd4,0xc2,0xdd,0xcf,0x21,0xd6,0xb9,0x75,0xeb,0xee,0x57,0xf8,0x1d, - 0x55,0xa1,0x0d,0xe3,0xa6,0xe8,0x3b,0x8e,0x82,0xa1,0xf7,0x99,0xd7,0x4f,0x4c,0x00,0x74,0xf1,0x6f,0x75, - 0x69,0x68,0x61,0x7d,0x2a,0x33,0xbe,0x37,0xa0,0xa9,0x30,0x16,0xb6,0xaf,0xa7,0x3d,0xe5,0x79,0x6a,0xb1, - 0x9b,0xff,0x3c,0x2e,0x7f,0xbc,0xca,0x4c,0xa0,0x3d,0xf5,0x2e,0xea,0x62,0x50,0x9f,0x64,0xd5,0xd2,0x09, - 0x16,0x86,0xd7,0xc1,0x23,0x44,0xb6,0x49,0x2f,0x12,0x3a,0x3c,0x5c,0xc4,0x95,0x3a,0xfd,0xe8,0x82,0xe2, - 0xc5,0x4f,0x17,0x3b,0x8b,0xae,0xc5,0xb1,0xc6,0xc3,0x56,0x90,0xca,0x86,0x4f,0x23,0xf7,0x00,0x58,0x0d, - 0xb0,0xda,0x22,0xf9,0xe1,0x7b,0xc4,0xd3,0x53,0x3c,0x8e,0xae,0xb7,0xa1,0x89,0x48,0xc4,0x34,0xe1,0xda, - 0x66,0xb6,0xe4,0x92,0x7a,0xf4,0x4c,0xa7,0x4b,0xa1,0xc0,0x6c,0x77,0x08,0xb4,0x38,0x34,0xa9,0x9d,0x4e, - 0x6f,0x12,0xe2,0x16,0x12,0xe5,0x30,0x3e,0x15,0x1b,0x13,0xb8,0x9b,0x51,0xd2,0x11,0x81,0x51,0x42,0x9a, - 0xa2,0x52,0xf6,0x1d,0xfc,0x94,0x89,0xc4,0xb3,0xa4,0x2c,0xe3,0x05,0xfb,0xce,0x91,0xbd,0x4f,0x6f,0x3f, - 0xd4,0x8c,0x78,0x9c,0x3a,0x75,0xc6,0xa8,0xea,0x94,0x5f,0x91,0x2b,0xd1,0x1e,0xc1,0xa4,0xab,0x57,0x48, - 0xc2,0x26,0x02,0x4d,0x65,0x3f,0x70,0x32,0xb3,0x8e,0xc4,0xb4,0x48,0xcf,0x12,0x7c,0x7a,0x08,0x53,0x1f, - 0x8e,0x3e,0xc4,0x87,0x36,0xc9,0x66,0x72,0x88,0x33,0xb8,0x6d,0x1d,0x8f,0x43,0x83,0x50,0x60,0xc5,0x33, - 0x50,0xe4,0x79,0x65,0x82,0xdc,0xe3,0x59,0x88,0xde,0x6e,0x4a,0x03,0xd6,0x7c,0x7d,0xca,0x7d,0x41,0x86, - 0xa8,0x9d,0x57,0xcf,0xd4,0x60,0x4e,0xfc,0xd9,0x19,0x1d,0x64,0x04,0x38,0x3b,0xd9,0x5a,0xdf,0x4d,0xa9, - 0x92,0x0e,0x86,0x99,0xe8,0x9f,0x2e,0xd9,0x48,0xe1,0x57,0x56,0x05,0x6f,0x17,0xee,0xcc,0xc6,0x8e,0x7a, - 0x9b,0x18,0x50,0x7c,0x10,0x03,0x0a,0xf0,0x8b,0xbb,0x18,0x60,0xa7,0x97,0xe7,0xb4,0x8c,0x8a,0xee,0xc9, - 0xc4,0x05,0xfb,0x33,0x03,0xd8,0xff,0xb6,0x39,0x55,0xce,0x66,0xa1,0xc1,0xf6,0x2e,0xe3,0x6b,0x3e,0xfb, - 0xc2,0x77,0xe1,0xe2,0x17,0x90,0xe1,0xdb,0xe8,0xd0,0x7e,0xdd,0x21,0x81,0xbe,0x1f,0x58,0x47,0xf1,0x7f, - 0x1d,0x2f,0x46,0xbe,0x8b,0xe5,0x3b,0x58,0xf1,0xd7,0x87,0x8b,0xb3,0xb9,0xdc,0x92,0xe0,0x92,0x55,0x07, - 0x58,0x30,0x3d,0x6a,0xbc,0xef,0xe0,0xa9,0xbb,0xec,0xdc,0x8c,0xff,0xa9,0xee,0x18,0x3f,0x70,0x8f,0xda, - 0x61,0x6a,0x8d,0x23,0x38,0xe9,0x9a,0xbf,0x53,0xb8,0xd1,0xa3,0xc1,0x3a,0x7b,0x5f,0xcb,0x5a,0xf0,0xb9, - 0x53,0x47,0x07,0x96,0x35,0xaa,0xd5,0x69,0x7e,0xab,0x06,0xe7,0x93,0xa9,0xa1,0x81,0x18,0xdd,0xe8,0xd2, - 0xae,0xa5,0xf1,0xd1,0xed,0x89,0x84,0x8d,0xdb,0x6e,0xd5,0x95,0xf1,0xda,0x8a,0xd4,0xda,0x9b,0x63,0xbc, - 0x84,0xa1,0xb7,0x38,0x56,0x64,0xad,0xb7,0x6b,0xd7,0x93,0xad,0xd6,0x0a,0x08,0xc5,0x65,0xe2,0x96,0x23, - 0x92,0x37,0x73,0x18,0x8e,0x0b,0x17,0x87,0x86,0x1f,0x75,0x33,0x6c,0x15,0xdf,0x86,0x97,0x3a,0x71,0xcc, - 0xdc,0x9e,0x75,0x26,0xbb,0xdd,0xf1,0xe4,0xd8,0x60,0xed,0xb9,0x5b,0x90,0x4f,0x48,0xf8,0x0c,0x44,0x91, - 0xad,0xad,0xcd,0xf0,0xdd,0x41,0x1c,0x89,0xa7,0xe1,0xe7,0x22,0xd8,0xff,0xa0,0xeb,0x58,0x1d,0x16,0x2e, - 0x92,0x1f,0x1b,0x7e,0x97,0xf8,0x79,0xc7,0x91,0xab,0x08,0xe0,0x0b,0x61,0xa4,0x11,0xcd,0x43,0x33,0xd2, - 0x6b,0x08,0xa8,0x97,0xf8,0xc0,0x63,0x63,0x83,0xd0,0x79,0xeb,0xb8,0xb6,0x0c,0x46,0x4b,0x13,0xf4,0xf7, - 0x28,0x74,0xf7,0xad,0x65,0x60,0xd3,0x59,0x03,0xbb,0x75,0x66,0x72,0xfd,0xf1,0x61,0x19,0xd5,0x01,0xcc, - 0x6b,0x96,0xc7,0x09,0x6a,0xce,0x5d,0x30,0x5c,0x4f,0x1d,0xf7,0xfc,0xd6,0x2d,0x8f,0x2f,0x13,0xb7,0xdb, - 0x5a,0xa4,0x7f,0xeb,0x56,0x6e,0x5b,0xa6,0x43,0xe9,0x8a,0x6a,0xf7,0xbd,0x27,0xf3,0x9e,0x8c,0xa2,0x07, - 0x68,0xf7,0xd2,0xb2,0x07,0x27,0x33,0x3d,0xda,0x03,0x7a,0x0c,0xeb,0x5e,0x22,0x22,0xd3,0xb2,0x07,0xf3, - 0x87,0xde,0x79,0x7c,0x99,0x48,0x01,0xc9,0x4f,0x99,0x07,0x74,0x0a,0xea,0x18,0xfb,0x2e,0x4d,0xc7,0xb1, - 0x60,0x4d,0x07,0x40,0x38,0x0f,0x6d,0x43,0xa4,0x6b,0x07,0x58,0xc3,0xf3,0xd9,0x92,0xfe,0x40,0xc5,0xf2, - 0x86,0xfa,0xe4,0x6c,0xbf,0x1a,0x79,0x30,0x9f,0x6a,0x83,0x25,0xa4,0xd4,0x64,0xb8,0x86,0xf0,0x0b,0xe2, - 0x4c,0xed,0xf5,0x5f,0xa5,0x2a,0x1e,0xa4,0xbe,0xc4,0x9e,0xc0,0xd2,0x78,0x1b,0xed,0x10,0x8a,0x29,0xb5, - 0x44,0x9b,0x4b,0xc7,0x05,0xc9,0x76,0xf8,0xd6,0xe1,0xe7,0x52,0xd8,0x0d,0xae,0x72,0xc8,0xc3,0x5d,0x39, - 0x51,0x6d,0x3e,0xec,0xd4,0x06,0xd7,0x72,0xe6,0x90,0x0a,0x2d,0xbc,0xf7,0x6a,0xf4,0xd1,0xc1,0xcf,0xf3, - 0x5c,0xb5,0x3e,0x2b,0x6f,0x1e,0x67,0xfd,0x3e,0xcb,0x67,0xbc,0x6b,0xed,0xff,0xb5,0xc0,0xb5,0x82,0x73, - 0xad,0xcf,0xea,0x29,0x9e,0xd6,0x15,0x2b,0x70,0x99,0x8f,0xba,0xe4,0x48,0x4a,0x0f,0x62,0x63,0xa1,0xeb, - 0xf1,0xb6,0xac,0xc3,0x32,0x0c,0xf2,0x7e,0x94,0x2a,0x9b,0x2c,0x32,0x89,0x7d,0xe1,0xbb,0xf3,0x60,0xe4, - 0xb1,0xb3,0xd1,0xf0,0x4d,0x9d,0x00,0x62,0x32,0x23,0x4e,0x7f,0x2d,0x4e,0xe9,0xbc,0xa1,0xe9,0x82,0x34, - 0x9b,0x8b,0x47,0xec,0x78,0x2b,0x5a,0xf2,0xde,0xff,0xc7,0x7d,0x1d,0x51,0x9f,0xc1,0x98,0xd3,0x8c,0x40, - 0xe4,0x47,0x4d,0x06,0x21,0xfe,0x9a,0x13,0xc7,0x07,0x47,0x02,0xd1,0x8c,0x21,0x6f,0x16,0xaa,0x51,0xd1, - 0x10,0x55,0x67,0xf5,0xe1,0x53,0x49,0xf0,0xe9,0xb6,0x6c,0xc5,0x0c,0x87,0x83,0xd4,0xed,0x8e,0x04,0xb0, - 0x35,0x2f,0x6c,0x1b,0x6e,0x7a,0xc7,0xa0,0x1b,0xa6,0xed,0x49,0x89,0x69,0x40,0xe9,0xc4,0x1c,0xf8,0x62, - 0x7d,0x2f,0x8d,0x93,0x95,0xf4,0x3f,0xd4,0x27,0xda,0x58,0x1f,0xce,0x45,0xeb,0x95,0xcf,0x6d,0xba,0x23, - 0x3a,0x43,0x36,0x66,0x4e,0x87,0xf8,0x76,0x93,0x57,0x1d,0x1f,0x05,0x93,0x46,0x01,0xd3,0x5b,0xf9,0x15, - 0xb5,0x70,0x5b,0x5c,0x97,0x22,0x1e,0x37,0xed,0xf7,0x2d,0x50,0xb7,0x1c,0xee,0x6e,0xcb,0x93,0xba,0x1f, - 0x1d,0xfe,0xe1,0x9f,0xcc,0x82,0xfe,0xa1,0x7a,0xc3,0x8f,0x57,0x78,0x7c,0x48,0x60,0x7a,0x10,0x1d,0xab, - 0x97,0xd1,0x1d,0xf5,0x2a,0xba,0xab,0x7e,0xa4,0xf7,0xd7,0xd1,0xe7,0xea,0x69,0xf4,0x85,0xfa,0x26,0xfa, - 0x52,0xbd,0x88,0xfe,0xae,0x9e,0x44,0xff,0x50,0x8f,0x70,0xa0,0x7f,0x34,0xfe,0x71,0x12,0x5d,0x5f,0x95, - 0x21,0xfd,0x2a,0x3e,0x06,0x86,0xe3,0xbb,0xea,0xe1,0x44,0x79,0x63,0x2f,0x1c,0xbf,0x9e,0x28,0xda,0xe4, - 0xc3,0xf1,0x8b,0xc9,0x56,0x3d,0x1a,0x1f,0xeb,0x9c,0xc7,0xf4,0x75,0x40,0x5f,0xef,0x74,0xe6,0xba,0xa3, - 0x73,0xdd,0x69,0xd6,0x77,0xa4,0x7f,0xe5,0x54,0x29,0x2f,0xc8,0x7e,0x97,0xb2,0x7f,0x28,0x9f,0xe2,0x56, - 0xd5,0x03,0xd3,0x2e,0x3f,0x71,0xcb,0x78,0x92,0xb6,0xe9,0x09,0xd5,0xbd,0xa6,0xea,0xbc,0xdb,0xf4,0xe9, - 0x29,0xca,0xdd,0xf6,0x6e,0x87,0xe3,0x6f,0xea,0xe1,0xa8,0x97,0xf4,0x34,0xf1,0x50,0xd9,0x2b,0x29,0xf8, - 0x84,0xed,0xf9,0xf0,0x49,0xba,0xf3,0xd4,0x94,0x47,0x42,0x23,0xc7,0x53,0x9d,0xe3,0x1b,0xca,0xc1,0xf5, - 0xee,0xe4,0x40,0x43,0x32,0x31,0x8f,0xd9,0xe6,0x99,0x58,0xb5,0x62,0x9d,0x6c,0xd8,0x96,0x73,0x73,0x30, - 0x1a,0x9f,0xcc,0x06,0x93,0xfe,0xe6,0x36,0xfb,0xc0,0xba,0xbd,0xf1,0xd8,0x2d,0x96,0x17,0x50,0x3e,0x38, - 0x26,0xba,0x81,0x6c,0x75,0x53,0xad,0xe7,0x0e,0xd5,0x62,0x2c,0x7b,0x41,0x9b,0xda,0xae,0x84,0xca,0xa5, - 0x58,0x0e,0xc1,0x82,0x0a,0x69,0xd2,0x21,0xcf,0x32,0x61,0xef,0x62,0x84,0xf2,0xc1,0x82,0x5b,0x47,0x07, - 0xc7,0xb4,0x35,0xfe,0xc8,0x71,0xef,0xce,0x81,0x2e,0x58,0x33,0xe7,0xe3,0x07,0x93,0x86,0x71,0x87,0xd9, - 0xa7,0x32,0xd6,0xe5,0x11,0xec,0x85,0x8b,0x42,0xf9,0x00,0x5b,0xfd,0xf1,0xc3,0x8e,0x12,0x90,0xd4,0x8e, - 0xb2,0xa8,0x08,0xb3,0x3e,0x31,0xfe,0x94,0xe9,0x65,0x23,0x13,0x0a,0x11,0x67,0x34,0x27,0xdc,0xa7,0x6f, - 0xaf,0x1a,0xdf,0xa0,0x11,0x79,0xff,0x28,0x98,0x1f,0x1c,0x50,0xf7,0x5e,0x2b,0xc9,0x6a,0xef,0x22,0xd1, - 0xdb,0x3d,0x5c,0x7d,0xf8,0x59,0x34,0x63,0x97,0x79,0x56,0x2c,0x8a,0xbe,0x43,0x1d,0x73,0xa8,0x65,0xe0, - 0x4b,0x76,0x18,0xbf,0xee,0xf7,0xe1,0x3f,0x91,0x95,0x85,0xe0,0x73,0x71,0x8d,0x1b,0x8b,0xbd,0xd6,0x79, - 0x9a,0x3f,0xf4,0x8f,0x99,0x5a,0x43,0x6c,0xf4,0x94,0x76,0xe5,0xdb,0xac,0xd6,0xb5,0xd9,0xe0,0xfd,0x9b, - 0x5b,0xb7,0x08,0x2d,0xf0,0x6e,0x7d,0x77,0x53,0xb5,0x44,0xad,0xa9,0xe2,0x7e,0xa2,0xfb,0x88,0x08,0xcb, - 0x7e,0xa0,0xad,0xb8,0x56,0x10,0x8b,0x81,0xcf,0x29,0xa3,0x47,0xe3,0xe5,0x24,0x20,0xba,0xb3,0xd9,0x94, - 0xac,0x08,0xba,0xd9,0x3c,0x81,0x6c,0xf9,0x89,0xd1,0x0a,0xe2,0x36,0x61,0xc7,0xa2,0xfc,0x38,0x3a,0x1f, - 0xe7,0xb4,0x06,0x27,0x72,0x0f,0x9b,0x63,0xa1,0x15,0x91,0x05,0x69,0x31,0x82,0x0c,0x91,0x87,0x4f,0xe7, - 0x9f,0xa0,0x51,0x41,0x14,0xbd,0xb0,0xce,0x51,0x45,0xd9,0xcd,0x32,0xa4,0x06,0x47,0xa8,0xf7,0x2a,0x01, - 0xdb,0xb5,0x55,0x2e,0x92,0x2d,0x92,0x0a,0x28,0xc6,0x82,0xdc,0xd6,0xde,0x08,0x19,0x79,0x52,0x3b,0x68, - 0xad,0x2f,0x61,0x8c,0xf7,0x6d,0x83,0x9f,0xf0,0x58,0xcb,0xe3,0x2e,0x5a,0x1c,0x06,0xc2,0xbb,0xa1,0xeb, - 0xc6,0x9d,0x76,0xa3,0x26,0xc7,0xda,0xa7,0x36,0x35,0x23,0x22,0xad,0x5d,0x70,0xe7,0x43,0xe3,0x78,0x3b, - 0x1e,0x17,0xe3,0x72,0xe2,0x5c,0x76,0x40,0xd9,0x2c,0xb8,0x16,0x37,0x54,0xda,0x36,0x21,0x8e,0xa6,0xaa, - 0xac,0x89,0x69,0x2c,0xab,0xf5,0xd9,0x0d,0x2b,0x67,0x58,0x9f,0xff,0x00,0x27,0x68,0xcb,0xda,0xdb,0x25, - 0x61,0x1e,0x37,0x1b,0x2f,0xc9,0x0e,0x7e,0x7e,0xe9,0xb1,0x3c,0xb7,0x79,0xd6,0xae,0xbf,0xb1,0x45,0x92, - 0x3e,0xe2,0x32,0x7b,0xa9,0xc3,0x98,0x3b,0x32,0x20,0x49,0x87,0x15,0x65,0xe6,0x88,0x78,0x38,0x75,0xa8, - 0x5d,0x59,0x5f,0xc8,0x05,0x9f,0xbc,0xcd,0xf9,0x7b,0x85,0xa3,0xe6,0xc0,0x3e,0x6f,0x36,0x38,0x28,0xbf, - 0xd5,0x59,0x2e,0xd2,0x12,0xae,0x40,0xd0,0xb6,0x3c,0x89,0xc0,0xd3,0x78,0x97,0x66,0xa1,0x02,0xcb,0x16, - 0x1a,0xe9,0x38,0xd5,0x46,0xce,0xb9,0x57,0x8e,0xbc,0x7b,0x7b,0xf2,0x64,0x5a,0xd7,0x03,0x65,0x7d,0x28, - 0x27,0xb3,0x9b,0x2e,0x85,0xdc,0x14,0xd3,0x42,0xa7,0xec,0xc1,0x12,0x91,0xaa,0x5b,0xea,0x40,0x2c,0xee, - 0xde,0x0d,0x9f,0x74,0xbd,0x4d,0x80,0xe2,0xe6,0x1d,0x8c,0xbd,0x7c,0x73,0x81,0xda,0xfc,0x82,0xd3,0x00, - 0xcb,0x17,0x9e,0xd7,0xd5,0xc4,0xb5,0xbb,0x00,0x22,0x82,0x92,0xcc,0xf7,0x07,0x2d,0xcc,0xd7,0x54,0xc5, - 0xdf,0xc3,0x60,0xb3,0xcd,0xa6,0xf0,0x13,0xa9,0xb0,0xb1,0x5c,0x24,0x9c,0xb6,0x31,0x4a,0x3f,0x85,0xd3, - 0xd8,0x5f,0x9e,0xf9,0xe6,0xbe,0x33,0x53,0x4d,0xac,0x09,0xe1,0xbe,0x51,0x50,0x85,0xd8,0xae,0x16,0x92, - 0x84,0xb1,0x6a,0xa0,0x47,0x58,0x12,0x47,0xa6,0x7e,0x8a,0xae,0x2f,0x2f,0xc2,0xeb,0x6d,0x5d,0x90,0x9e, - 0xdb,0x25,0x29,0xa9,0x59,0xf4,0xba,0x3e,0xe1,0x6d,0xdb,0x7d,0x40,0x5d,0x82,0x33,0xfc,0xd1,0x80,0x0d, - 0x2f,0x9d,0x33,0x40,0x1f,0xb6,0x66,0x73,0x79,0xe6,0xba,0x1e,0x96,0xc1,0x76,0x2c,0xaf,0x73,0xe3,0x0b, - 0x5a,0xea,0x1b,0xb6,0xde,0x21,0x7d,0xa9,0xd1,0x9e,0x66,0x87,0x78,0x48,0x4c,0x0c,0x54,0x63,0x55,0x3b, - 0x6f,0xb2,0x55,0x6e,0xa3,0x9d,0xc7,0xfd,0x5d,0x5f,0x08,0xcd,0x89,0xae,0xd5,0xcd,0xdc,0xaa,0x6e,0x90, - 0x1d,0x34,0x2a,0x6b,0x19,0x0e,0xf0,0x69,0xcf,0x0d,0x61,0x92,0x39,0xb6,0x9a,0x12,0xd4,0x2e,0xbb,0x7f, - 0x70,0x1c,0xc8,0xfd,0xf4,0x14,0x72,0x4c,0x28,0x48,0xfa,0x1d,0x7d,0x52,0xed,0xee,0x34,0x64,0x5b,0x6d, - 0xf3,0x4a,0x11,0x11,0x36,0x5c,0x82,0x13,0xf0,0x06,0xfb,0x5c,0xc8,0xf7,0xf6,0x51,0x75,0x23,0x44,0x85, - 0x6b,0xd0,0xd0,0x02,0x86,0x6b,0xdf,0x70,0xde,0xe9,0x14,0xb9,0x5d,0x84,0x0e,0x82,0xec,0x04,0xbd,0x9d, - 0xb8,0x13,0xf8,0x62,0xab,0xae,0x67,0x49,0xb2,0x12,0xd5,0xe4,0xdd,0xd1,0x69,0x31,0x66,0x73,0xab,0xdf, - 0xab,0x49,0x13,0x2d,0xb4,0x9a,0x7e,0xed,0xec,0x38,0x95,0x89,0x65,0x72,0xd1,0x84,0x03,0x0b,0xc8,0x1c, - 0x60,0x08,0xe2,0x3b,0xd0,0x60,0xcf,0x1e,0xfb,0x74,0xfc,0x85,0x15,0x8b,0xf9,0xca,0x7e,0xf9,0x5b,0xfd, - 0x57,0xd7,0xe9,0x05,0xb1,0xea,0x29,0xe4,0xed,0x32,0x84,0x9f,0x50,0x31,0xad,0x77,0xb7,0xcf,0xad,0x49, - 0x40,0x26,0xb3,0x36,0x6f,0xc8,0x1a,0x6b,0x04,0xa0,0xaf,0x5a,0xc0,0x5d,0xb2,0x07,0xf0,0x9f,0xda,0xfb, - 0xc4,0x87,0xcb,0x37,0x2f,0x17,0x4c,0x35,0x8d,0xc5,0xff,0xe1,0x4a,0xdc,0x8b,0x06,0x53,0x85,0xc0,0xe5, - 0x03,0x63,0x35,0x97,0xee,0x75,0xfe,0x32,0xa9,0x3a,0x56,0x1f,0x66,0x83,0xe1,0xad,0xdf,0x6a,0xb0,0x57, - 0xdc,0x58,0x93,0x22,0x7d,0xa8,0xd1,0x66,0xee,0x8e,0xf2,0x1f,0xdb,0x89,0x66,0x31,0xd3,0x19,0x4d,0x0c, - 0xdf,0xdb,0x0b,0x9d,0xc7,0xcd,0xde,0xdd,0xa8,0xdd,0x97,0xb9,0x9b,0x86,0xb6,0xbe,0xb7,0x6e,0x9b,0xab, - 0x59,0xa4,0xbb,0x7e,0x87,0x35,0x40,0xf6,0x4e,0x82,0xfd,0xde,0xd6,0x3a,0x4b,0xdc,0x5c,0x55,0x77,0x2f, - 0x6e,0xb8,0x61,0x68,0x2e,0x79,0x17,0xdd,0xdf,0x37,0xbd,0x66,0xf1,0xec,0x96,0x6e,0x21,0xfb,0xfb,0x2a, - 0x69,0x2d,0xa4,0xdd,0xba,0x1a,0x38,0xff,0xbe,0x9a,0x1a,0x6b,0xa9,0x55,0x0f,0x94,0xcb,0xb4,0x57,0xa7, - 0x86,0xae,0x11,0x1d,0xae,0x52,0x5b,0x13,0x0c,0xbc,0xb5,0x1c,0x5f,0x63,0x83,0x16,0xfa,0x1b,0xcc,0x91, - 0x0b,0x79,0x66,0xcb,0xc6,0x28,0x9c,0x4e,0x60,0xb8,0x11,0x66,0xad,0xc6,0xd2,0xf2,0xb1,0xcb,0x89,0x75, - 0xb8,0xc4,0x81,0xd1,0x54,0xe1,0x3b,0x24,0x53,0x37,0xd4,0x60,0xe1,0xda,0xb5,0x76,0x8b,0xc1,0x12,0x73, - 0x36,0xd4,0x2c,0xff,0x0e,0xf5,0x9d,0x46,0x35,0x4b,0xd5,0xe4,0x80,0x12,0x1d,0x77,0xb7,0xc9,0xf6,0x4f, - 0xed,0x91,0x61,0x2a,0x06,0x43,0xac,0x8a,0x69,0x22,0x12,0xef,0xb1,0x02,0x81,0xdb,0x86,0xa3,0x9d,0x6a, - 0x2e,0x49,0x11,0x29,0x9c,0x4e,0x4d,0x8d,0x7c,0x5b,0x73,0x0c,0xdc,0xd1,0x13,0x9b,0x36,0xaa,0x5b,0x47, - 0x53,0x73,0x0e,0x58,0xd7,0xd6,0xd3,0xff,0x16,0x7a,0x01,0x7b,0x29,0xf1,0x4d,0x60,0x2c,0x38,0x1c,0xe7, - 0xe1,0xaf,0xf5,0xf0,0x61,0x2e,0x6a,0x42,0xb4,0x70,0x84,0x82,0x35,0x27,0x87,0xeb,0x16,0x1c,0x51,0xb0, - 0x8d,0x03,0x6e,0x48,0xe9,0x28,0x53,0xd0,0x71,0x16,0x5f,0x05,0x87,0xfe,0xbf,0x85,0xe3,0x93,0xab,0x93, - 0x83,0xd3,0xcd,0x60,0xd2,0x0f,0x0e,0x17,0xb5,0xb6,0xf9,0x14,0x9a,0x0f,0x25,0xce,0xa9,0x65,0xeb,0xca, - 0x99,0x61,0x25,0xea,0x1e,0xe5,0x78,0x8a,0x78,0x3f,0x6b,0x6d,0xdd,0xed,0xdf,0x09,0xe0,0x2c,0x40,0x73, - 0x9c,0x76,0x3e,0xb9,0x17,0x4b,0xea,0x85,0x57,0xc4,0x57,0x5a,0x88,0xa7,0xa1,0x44,0x8c,0x67,0x9d,0x28, - 0xdc,0x78,0x28,0xee,0x11,0x74,0x2d,0x0d,0x5c,0x83,0xc5,0x9f,0xb3,0x35,0x33,0x6a,0xb1,0xab,0xa3,0xde, - 0x37,0x50,0x68,0x87,0xc8,0x4d,0x2c,0xbd,0x93,0x59,0x8f,0x55,0xdc,0xb5,0x0f,0xc3,0x55,0x54,0x17,0x18, - 0xce,0xa3,0x95,0x0e,0x9b,0xc2,0x7d,0x5b,0xb5,0xb6,0x3f,0x44,0x25,0x17,0x11,0xfd,0xaa,0x7d,0x8d,0xb9, - 0xd4,0x80,0xa4,0x03,0x9d,0x6f,0x86,0xe9,0xac,0x3c,0x1a,0xe6,0x52,0xcd,0xa1,0x68,0x34,0x8a,0xad,0x49, - 0xf4,0x5a,0xcd,0x83,0x30,0xae,0x8f,0x7e,0xcd,0xc9,0xd2,0x8a,0xb6,0xcd,0xe9,0x6a,0x0a,0x7e,0x6b,0xc2, - 0xdb,0x84,0xa8,0x0d,0xc4,0x52,0x6b,0x01,0x45,0xc9,0xa8,0xd0,0x16,0x66,0x88,0x97,0xde,0x6a,0xcb,0x0e, - 0x79,0x87,0x42,0x98,0x05,0xe6,0x2e,0x27,0xb7,0xb1,0x44,0xc1,0xaa,0xd4,0xe6,0xb3,0x12,0x68,0x42,0x84, - 0x11,0xfd,0xe9,0x28,0x41,0xa7,0xa3,0x71,0x56,0x97,0xd0,0x01,0xe7,0xa7,0xe1,0xb4,0xdd,0xa7,0x1d,0x4c, - 0xad,0x39,0x44,0xed,0x7f,0xa8,0xad,0x66,0x78,0xf0,0xf9,0x30,0x3e,0x38,0xe8,0xdd,0x3f,0x1a,0x06,0x50, - 0xfd,0x73,0x54,0x52,0xe3,0xfe,0xe7,0x7c,0x0e,0xdf,0xb3,0xaa,0x35,0x9e,0xbe,0x7e,0x49,0x35,0x69,0xd3, - 0xee,0x10,0x72,0x58,0xfa,0x95,0xf6,0x30,0x9d,0xd8,0x68,0x74,0x35,0x56,0x64,0x4a,0x9f,0x3a,0xdb,0x37, - 0xd9,0xc0,0x62,0x0d,0x70,0xc5,0x52,0x86,0xf8,0xa2,0xbc,0x19,0x5f,0xd7,0x9f,0x8e,0xaf,0x5a,0xa7,0x65, - 0xe9,0xa0,0x6c,0x43,0x59,0xaa,0xb2,0xca,0x52,0x79,0x6d,0x5f,0xbf,0x8b,0x8b,0xd4,0x7d,0x22,0x1d,0x85, - 0xf6,0x03,0xdd,0x04,0x7b,0x93,0x66,0xb7,0xae,0x0d,0x76,0xe0,0x7d,0x0c,0xfd,0x5f,0x86,0x77,0xd2,0x52, - 0x01,0x86,0x58,0x4a,0x77,0x57,0xb0,0x35,0x20,0x10,0xea,0x9e,0x16,0xd8,0x42,0xb8,0x5b,0x7a,0x35,0x75, - 0x70,0x9a,0x6c,0x94,0x6d,0x87,0x93,0x18,0x73,0xa1,0xf6,0xc6,0xd0,0x41,0xcd,0x8c,0x76,0xdc,0xee,0xb4, - 0x25,0x37,0x4f,0x1b,0xe8,0x8c,0xde,0x12,0x3a,0x27,0x2b,0xff,0xab,0x93,0xe5,0xf2,0xfb,0xa9,0xec,0x59, - 0xef,0x99,0x19,0xf4,0x26,0x57,0x45,0xeb,0x1c,0xd2,0x1e,0x65,0xbd,0xff,0x8f,0x76,0xb7,0x94,0x44,0xd4, - 0xfb,0x6a,0xe8,0xda,0xeb,0x5a,0x2e,0x7c,0x13,0xa8,0x21,0x11,0x08,0x3d,0xaf,0xbd,0x06,0xa7,0x9d,0x00, - 0xb6,0x56,0x47,0x62,0xbe,0xbb,0x83,0x16,0x5f,0x0c,0x4b,0x8d,0x16,0xf1,0xb8,0x74,0xd1,0xa2,0xec,0x7f, - 0x51,0x6b,0xec,0x8d,0x6a,0xa9,0x58,0xca,0x8a,0xd7,0xc7,0x81,0xca,0x7d,0x4d,0x33,0x1c,0x74,0x99,0x0a, - 0xc7,0x41,0x6d,0x5b,0x7c,0x88,0x69,0xcb,0x4b,0xb9,0xc3,0xb2,0xcf,0xb7,0x70,0xb8,0xd9,0x6b,0x57,0x69, - 0x79,0x0c,0xc9,0xe4,0x4e,0x7f,0xef,0x0c,0x0b,0xdd,0x5f,0xf6,0x8f,0x50,0xf7,0xb7,0xe8,0xdf,0xb1,0x68, - 0x9c,0xda,0x7e,0x4d,0x75,0xc7,0xd2,0x8f,0xc5,0x63,0x95,0xd8,0x9e,0x9b,0x40,0x33,0x69,0x1b,0xd2,0x6d, - 0xd2,0xeb,0x98,0x4a,0x8b,0x85,0xda,0x4e,0xaf,0xef,0x0e,0x73,0xdd,0xeb,0x02,0x36,0x46,0x75,0xaf,0xf3, - 0xfe,0x5d,0x73,0xc5,0xd6,0xa2,0x6e,0x45,0x50,0x53,0xb6,0x26,0x82,0xb2,0x34,0x09,0x57,0x3c,0x93,0x9d, - 0x43,0x7e,0x75,0x93,0x8e,0xba,0x2c,0x30,0x6c,0x38,0x1f,0x02,0x42,0xd2,0xaa,0x92,0xbe,0x36,0x74,0xa7, - 0x3a,0x18,0x45,0x7b,0xf6,0x73,0xb8,0x6d,0x22,0x70,0x90,0x3f,0xb6,0x2a,0x2b,0x6f,0xae,0x8c,0x1d,0x64, - 0x76,0xd4,0xd2,0x96,0xd0,0xec,0x6a,0x73,0x7d,0x4c,0x25,0xe7,0x83,0x75,0x95,0x2e,0x07,0xe2,0x13,0xf1, - 0xc6,0xde,0x76,0x0d,0xbe,0x79,0x48,0xf8,0xc0,0xe8,0x5b,0xc7,0x84,0x1b,0x81,0x70,0x63,0xa5,0x8d,0x01, - 0xec,0xd6,0xd6,0x09,0x8c,0xbf,0x5c,0xd9,0x0d,0x40,0xe9,0x1e,0xc4,0x0e,0x6c,0x44,0xd3,0x24,0xfd,0xd3, - 0xb6,0xdf,0xc1,0x90,0x18,0x66,0x15,0x5e,0x06,0x53,0x42,0x58,0x10,0x6d,0xe2,0xd2,0xcb,0x00,0xf2,0x4e, - 0x18,0x9b,0xf2,0x25,0x82,0x30,0xb3,0xf8,0x0e,0x97,0x60,0xee,0xc7,0xdd,0x53,0x02,0xd2,0x61,0x5d,0xd0, - 0xf7,0x4e,0x4f,0x11,0x29,0xc1,0x6c,0xb0,0xbb,0x02,0xdc,0xf1,0xda,0xd2,0x2f,0xf8,0x73,0x7a,0x6f,0x46, - 0x16,0x13,0x76,0x68,0x57,0xfa,0x31,0x94,0x8e,0xd5,0x52,0x9f,0x9b,0x77,0x64,0x7c,0xa7,0xb3,0x1d,0x52, - 0xc0,0xa7,0x0f,0xdb,0xf1,0x1b,0xaa,0x15,0x85,0x45,0xa9,0xd1,0xbd,0xee,0xd8,0x81,0x69,0xbd,0x11,0xb4, - 0xb7,0xc2,0x1b,0x25,0x36,0x2a,0xbb,0x79,0x6f,0x2c,0xfe,0x2b,0xf6,0x46,0x71,0x51,0x98,0xd8,0xbd,0xb1, - 0x80,0x89,0x7f,0x13,0x2e,0xb3,0x4e,0xd6,0xe4,0x26,0x9a,0x7e,0x7c,0x33,0x4d,0x3f,0x9e,0x68,0xc3,0x0a, - 0x97,0x6c,0xe5,0x3b,0x66,0x4a,0xc6,0xfe,0x61,0xb4,0xa3,0x4b,0x0f,0x43,0xed,0x91,0x44,0x7f,0xc6,0x25, - 0x3f,0x0c,0x8b,0x38,0x6a,0x09,0xbc,0x43,0x70,0x6d,0xbc,0x9d,0x39,0xef,0x88,0x4b,0x4a,0x2f,0x1c,0x75, - 0xd5,0x97,0x82,0x1c,0x70,0x55,0xcc,0x97,0xb2,0xf7,0x98,0x2f,0x65,0x62,0xbe,0x24,0x65,0x02,0xd5,0xf1, - 0xfd,0x78,0xa2,0x5b,0x63,0xab,0x25,0x8d,0x8f,0x08,0x6e,0xcf,0x91,0x4b,0x5b,0x84,0xc7,0x95,0x28,0x7c, - 0x80,0xec,0x34,0x64,0x0a,0x37,0x12,0x9d,0x1b,0x2a,0x6c,0x50,0x89,0x76,0x4d,0x9d,0x04,0xe7,0x2f,0x55, - 0x74,0x03,0xb1,0xe9,0xea,0xfa,0xcd,0xa4,0x46,0x5a,0xfe,0xff,0x95,0xd0,0xb4,0x6f,0x83,0x6e,0x20,0x33, - 0x1d,0xd9,0x6a,0x22,0xe3,0x02,0xf0,0x83,0x24,0x26,0xfb,0x48,0x12,0xd3,0xa8,0xf4,0x83,0x04,0x46,0x72, - 0x7f,0x98,0xbc,0xb4,0x64,0xb9,0xff,0xc7,0x89,0x4b,0xf6,0x61,0xe2,0xd2,0xed,0x5a,0xe9,0xff,0x11,0x97, - 0x0e,0xe2,0x92,0x59,0xe2,0xa2,0x35,0x41,0xc4,0x50,0x40,0x8b,0x80,0x52,0x62,0xf8,0x1c,0xc0,0xaa,0x9f, - 0x02,0x82,0x73,0x7c,0x19,0xa7,0xcb,0xf8,0x2c,0x5d,0xa6,0xf8,0x1e,0x5d,0x37,0xf7,0xcb,0xf0,0x5d,0xe3, - 0x26,0x30,0x3c,0xc5,0xd4,0xb0,0x46,0xef,0x72,0xe9,0xc6,0xed,0x85,0x2f,0x86,0xf3,0x88,0xb0,0xf0,0x92, - 0x70,0x9f,0x92,0x6e,0xdd,0xd2,0x08,0x77,0x6e,0x52,0x8c,0x89,0xe5,0xc0,0x0b,0x78,0x44,0x95,0xa9,0x46, - 0x42,0x32,0x75,0xf5,0xf7,0x1d,0x95,0xae,0x7b,0xeb,0xed,0x8b,0xfe,0xea,0x35,0x61,0x69,0x78,0x93,0xc0, - 0x15,0x59,0xe0,0xc4,0x26,0x8b,0xce,0x6f,0xa8,0x32,0x6b,0x54,0x59,0xed,0xd6,0xb7,0x7b,0x3f,0xe6,0xde, - 0xfc,0xfc,0x97,0xa0,0x9f,0xd6,0x5b,0x35,0x16,0xd9,0xf5,0x79,0x8a,0x8e,0x2d,0x74,0x0a,0xb5,0x66,0x5f, - 0x6d,0x5e,0xbd,0x72,0xcf,0x2a,0xdb,0x6d,0x6d,0x15,0xf1,0xfe,0x31,0x4e,0x3f,0x6d,0x90,0x3b,0x07,0x9c, - 0xb4,0xeb,0x58,0x96,0xda,0x03,0x4e,0xea,0x0e,0x33,0xc5,0xb1,0x4c,0x9f,0xf2,0x9b,0xc3,0xcc,0x9d,0xe3, - 0x59,0x8e,0x71,0x5a,0xeb,0xb4,0x7c,0x67,0x9c,0x2a,0xb3,0x23,0x2d,0x3e,0x65,0xa4,0xc9,0xa7,0x8f,0x54, - 0x13,0xcb,0x66,0x5f,0x0b,0x3e,0x3c,0x25,0xca,0xea,0xfd,0x16,0x3b,0x67,0xc7,0x8f,0xef,0xd5,0xec,0xbf, - 0x17,0xc7,0xea,0x33,0xb1,0xb1,0xd9,0x9b,0x39,0xd8,0xd5,0x71,0xda,0xfd,0xd8,0x71,0x74,0xac,0xbd,0xff, - 0xde,0x71,0x64,0x1f,0x1e,0x07,0x6c,0xae,0xdf,0xa6,0x99,0x7f,0x86,0x47,0x6b,0xfc,0xe7,0x7b,0x58,0xe7, - 0x1c,0xa1,0x61,0xaa,0xa3,0xba,0xb3,0xe3,0xb0,0xf3,0x3a,0xfe,0x98,0x7f,0x25,0x6e,0x16,0xaf,0xb4,0xd6, - 0x0e,0xf5,0xd7,0xaa,0x0e,0x88,0x51,0xd4,0x33,0xb0,0x42,0x2f,0xab,0x82,0x0a,0x2f,0x88,0x52,0x0e,0x0b, - 0xb1,0x8f,0x2a,0x06,0x3a,0x9a,0x38,0x28,0xa3,0xa6,0x75,0x91,0xf7,0xf7,0xc1,0xdd,0xc1,0x5d,0x4f,0x75, - 0x99,0x6a,0x49,0xa4,0xe7,0x5b,0xb7,0x74,0xc4,0xe7,0x5f,0x10,0x83,0xa6,0x7e,0x1e,0xac,0xcb,0xc4,0x7f, - 0x46,0x84,0x59,0xab,0x0f,0x59,0x6b,0x97,0xeb,0x24,0x0b,0xaf,0x39,0xaa,0x66,0xe8,0xbd,0xac,0xe2,0xb4, - 0x28,0x3d,0x55,0xbe,0x2b,0xab,0xe4,0xe2,0xc9,0x23,0x4a,0xe1,0xa7,0xde,0x93,0x47,0x9e,0x9a,0xa7,0xc5, - 0xc5,0x55,0x5c,0x24,0xbf,0x48,0x5f,0x42,0xef,0xb1,0x4e,0xe8,0xe9,0xde,0x85,0x3d,0x4f,0x4d,0xf3,0xd5, - 0x3b,0x89,0x9c,0xe1,0x3d,0x34,0x8f,0xbd,0xff,0xf5,0x3f,0x7a,0x77,0x8e,0x8e,0xff,0xde,0x7b,0x16,0x17, - 0x6f,0x7a,0x97,0x71,0xd6,0xfb,0x29,0xc9,0xca,0xab,0x7c,0x3d,0xa3,0x65,0xb5,0xcc,0x63,0x78,0xdc,0x0a, - 0xbd,0x17,0xcb,0x04,0x86,0x83,0x1c,0xcd,0xa0,0xa7,0x53,0x7b,0x02,0x28,0x1d,0xf2,0x7d,0x30,0x18,0x78, - 0x8a,0x67,0xea,0x6b,0x0e,0xba,0x11,0x7a,0x0f,0xf0,0xd2,0x48,0x7b,0x19,0x5f,0x72,0x6d,0xf2,0xcb,0x25, - 0xae,0xd2,0x79,0x4a,0x03,0xab,0xd6,0x65,0x78,0x1d,0x4f,0xe1,0xa0,0x72,0x95,0xa7,0x59,0x65,0x07,0xfd, - 0xe0,0x05,0x3a,0x3e,0x4b,0xcb,0xf8,0x8c,0xf6,0x8c,0xd0,0x7b,0xa4,0x9f,0x88,0x5b,0x60,0x6f,0x17,0x79, - 0x86,0xe8,0x74,0x36,0xfb,0xaf,0xe9,0xe3,0xf4,0x86,0x02,0x2a,0x45,0xa0,0x11,0xef,0xc9,0x0c,0x97,0xb6, - 0x59,0xfe,0xf2,0x25,0x43,0x90,0xfe,0xf6,0x60,0x1a,0x3a,0xcf,0x69,0xd2,0x08,0xb6,0xd3,0x38,0x43,0x00, - 0x09,0x98,0x5a,0x50,0xe1,0x97,0xf4,0xda,0x9b,0x9a,0x77,0x00,0x30,0xcb,0x08,0xb9,0x1e,0xd3,0xe6,0x89, - 0xcf,0xf2,0xdb,0xab,0xf2,0x9e,0xfe,0x60,0x73,0x50,0xbf,0x9e,0xe6,0x25,0xc3,0xd9,0xbc,0x13,0xd8,0xca, - 0x8a,0x7b,0xa6,0xf3,0xe8,0xde,0xd9,0x37,0xc4,0xe6,0x28,0x35,0x28,0xaa,0xf8,0xec,0x95,0x9d,0x75,0x4a, - 0xf1,0x94,0x1e,0xe0,0x43,0x09,0xf0,0xd2,0x2b,0x75,0x32,0x6d,0xa5,0x2f,0xab,0x64,0x55,0xbe,0x2a,0xd6, - 0xc8,0x9c,0x54,0x3d,0x88,0xf6,0x11,0x65,0xfe,0x1d,0x8d,0xa9,0x60,0xbd,0xfe,0x12,0x19,0xea,0xac,0x8f, - 0xa1,0x6c,0xda,0xce,0x0b,0xd7,0x6a,0x97,0xe9,0x6c,0x8d,0x20,0x12,0x04,0x5b,0xe2,0x3b,0x10,0x3c,0xa2, - 0xd1,0x93,0x57,0x3a,0x0d,0x7d,0xb9,0x48,0x4c,0x22,0x3d,0x4a,0xc2,0x13,0x5c,0x29,0x64,0x44,0x29,0x0c, - 0xb2,0x10,0x58,0x61,0xae,0x12,0x57,0x3d,0x7c,0xee,0x99,0x2a,0x7b,0xda,0x84,0xa4,0x17,0x67,0xdc,0x3e, - 0xca,0xf4,0x6a,0xb0,0x0d,0xa4,0xb6,0xe7,0x39,0x47,0x24,0xf6,0x9e,0xe7,0xad,0xd2,0x7a,0x65,0xf5,0xde, - 0x25,0x95,0xe4,0x7c,0x9c,0xbe,0x4d,0x66,0xe8,0x06,0x70,0xfe,0x2d,0xa6,0xc3,0x76,0xe9,0xe5,0x3a,0x2b, - 0x52,0x1e,0xab,0x3c,0xd8,0xd4,0x12,0xdd,0x94,0x5f,0x33,0x9a,0x0b,0x3d,0x18,0xdc,0xa4,0x5d,0xa4,0xd9, - 0xba,0x4a,0x68,0xa0,0x17,0x39,0xba,0xa4,0x87,0xfa,0x8c,0x5f,0xbc,0xad,0x33,0xc7,0x2e,0x78,0xea,0x99, - 0xae,0x27,0xab,0x9e,0x7c,0xbe,0x7c,0x48,0x2a,0x06,0x9f,0x8b,0xe7,0xde,0x37,0x19,0xd0,0xb3,0x27,0x69, - 0x3d,0x4e,0x6c,0xe4,0xf8,0x8e,0x73,0x3d,0x58,0x2e,0xf3,0xab,0x52,0x66,0x54,0x9b,0x37,0x3b,0x30,0xeb, - 0xcd,0x8b,0xfc,0xa2,0xf7,0x2e,0x5f,0x17,0x04,0x9e,0xcb,0x74,0x9a,0x00,0x25,0x41,0x9f,0x7b,0x42,0x33, - 0xb4,0x73,0x16,0x2e,0xde,0x58,0xb4,0xbd,0xd5,0xba,0x58,0xe5,0x65,0x52,0x0e,0x7a,0xaf,0xce,0x13,0x93, - 0xbb,0x99,0x85,0x6a,0xd1,0xdc,0x22,0xd5,0x40,0xef,0xe7,0x55,0xb5,0x0a,0x0f,0x0f,0x8f,0xbf,0xba,0x33, - 0x38,0xfe,0xf2,0x1f,0x83,0xe3,0xc1,0xe7,0x87,0xbd,0xab,0xf3,0x24,0x43,0xfb,0x3d,0x10,0x1c,0x8b,0xd0, - 0xe8,0x45,0x5a,0x51,0xd5,0xcc,0xef,0x54,0xbd,0x7c,0x3e,0xef,0xc5,0x65,0xaf,0xcc,0xe1,0xee,0xa2,0xec, - 0xe9,0xf5,0x8b,0xce,0x25,0x68,0xc5,0x34,0x9b,0xcc,0x14,0x3e,0x53,0x01,0x4a,0x64,0xb3,0xed,0x64,0x8a, - 0x54,0xcc,0x4c,0x9c,0xbd,0x23,0x22,0xf4,0x6e,0xd0,0xfb,0x8d,0x1a,0xc3,0xe2,0x8c,0x97,0xf4,0x5a,0xf6, - 0x2c,0x33,0xd8,0x13,0xb2,0xdd,0xc3,0x79,0x05,0xbd,0x3d,0x7b,0xd7,0x83,0xde,0x16,0xc8,0x55,0x75,0xde, - 0x04,0x73,0x4f,0x47,0x07,0x5a,0x67,0x74,0x64,0xe5,0xaf,0x4f,0xbf,0x79,0xd4,0x5b,0x82,0x28,0x96,0xbd, - 0xf5,0x8a,0x10,0xd1,0xa5,0x30,0x66,0xa2,0xdc,0x5e,0x37,0x72,0xc8,0x44,0xe9,0x29,0xef,0x82,0x3e,0x41, - 0x83,0xa7,0x28,0xbf,0xca,0x7a,0xa0,0x53,0xbd,0x82,0x9d,0x17,0x0d,0x7a,0x7a,0xbd,0x70,0x4c,0x2a,0xee, - 0x07,0xa8,0x92,0x22,0x94,0x29,0x89,0x0e,0x17,0x33,0x1a,0xf4,0x8c,0x76,0xd8,0x82,0xbe,0xb4,0xa7,0xef, - 0x2c,0x21,0xb4,0x40,0x47,0xcb,0x74,0x26,0xc4,0xcc,0x53,0xa6,0x18,0xad,0x43,0xfd,0x44,0x44,0xe7,0x7c, - 0xba,0x0a,0xbd,0x9f,0xa9,0x91,0x47,0xdf,0x3d,0x7c,0x21,0xef,0x1a,0xb1,0xd6,0x55,0x7e,0x01,0xaf,0x41, - 0x58,0xf8,0x04,0xf6,0x32,0x5d,0x64,0x25,0x96,0xe6,0x93,0x17,0x3d,0x1d,0xde,0xba,0x1b,0x99,0x64,0x0a, - 0x88,0x53,0x38,0x23,0xb0,0x60,0x52,0x08,0xa0,0x94,0xf1,0x4d,0x92,0xac,0xf4,0x44,0x00,0xb2,0x4b,0x94, - 0x07,0x62,0xc0,0xba,0x82,0xd0,0x84,0x88,0x01,0xbd,0xdd,0x26,0x2c,0x99,0xe5,0xd8,0x02,0x88,0x2a,0xaf, - 0x74,0x33,0x44,0x9a,0x6d,0x93,0x34,0xa2,0xf5,0x19,0xd1,0x85,0x8b,0xb8,0x7c,0x83,0x85,0x8a,0xe7,0x1e, - 0x5e,0x3c,0xb5,0xa0,0x9d,0x98,0xa6,0x3c,0xf4,0xbe,0x95,0x07,0x4f,0x9d,0x13,0x5d,0x15,0x53,0xb7,0xef, - 0xf4,0x53,0x9d,0xf6,0xa2,0x76,0xcd,0x4a,0xc4,0x56,0x5b,0xb7,0x51,0x4d,0x53,0xdb,0xd2,0x56,0xef,0xa7, - 0x0d,0x9a,0xcb,0x29,0xb4,0x4b,0x54,0x2b,0x87,0xcc,0xf5,0xa0,0x5d,0x46,0x47,0xdd,0x8c,0x76,0x14,0x86, - 0xbe,0xff,0xfc,0xd5,0x8b,0x80,0x00,0x4e,0x47,0x1a,0x9d,0xed,0xbb,0xb8,0x98,0xf1,0xa6,0x4b,0x69,0x39, - 0x62,0xfc,0x5d,0xc4,0x2b,0xf3,0xed,0xdb,0x3c,0x5f,0x10,0x16,0x3c,0xa3,0x94,0xde,0x83,0x17,0x4f,0xea, - 0x2d,0x5b,0x7f,0xb7,0x1b,0xb6,0xb0,0x2a,0xdc,0xfa,0x53,0x3a,0x7c,0x79,0xf4,0x27,0xad,0x78,0x3b,0x46, - 0x0a,0xf6,0xcf,0xa7,0x79,0xb6,0x70,0x92,0x88,0x59,0x65,0x62,0xe4,0x7d,0x4b,0x50,0x5a,0xea,0xdc,0xbd, - 0x43,0xda,0x70,0x74,0x36,0xa1,0x0f,0x4b,0x9d,0xaf,0x51,0xe8,0x65,0x12,0x17,0xd3,0x73,0xec,0x06,0xf8, - 0xe5,0xc1,0xd0,0x2a,0xa0,0x5d,0xd7,0x7b,0x20,0x4b,0xe5,0x05,0x2f,0x15,0xd9,0x6e,0x78,0x81,0x50,0x8e, - 0x9e,0xdf,0x27,0x46,0xe7,0x32,0x30,0xd9,0x5f,0xbe,0x7a,0x20,0x1b,0x15,0xa0,0xf2,0x0c,0xcb,0xf9,0x3d, - 0xf9,0x1f,0xbc,0x30,0x0c,0x82,0x5e,0x51,0x8d,0x86,0xf4,0x9a,0xe4,0x42,0x2b,0x3a,0xa2,0x53,0xaf,0xaf, - 0xa4,0xdc,0x8b,0x5f,0x9f,0x3d,0x2a,0x88,0xad,0x2b,0x5e,0x3e,0xa2,0xd6,0x5e,0x3c,0x7c,0xf0,0xd5,0x97, - 0xff,0xf8,0xa2,0x47,0xa9,0xbd,0x19,0x27,0xf7,0x28,0x5d,0xca,0x41,0xc3,0xb0,0x5d,0xe6,0xe1,0xd3,0xee, - 0x32,0x0f,0x9f,0x4a,0x99,0x29,0xdc,0x21,0xa2,0xd0,0xd5,0xc5,0x03,0x83,0x8f,0x1d,0xf9,0x9f,0xfc,0xaf, - 0xff,0xf9,0xb0,0x46,0x52,0xca,0xfc,0x18,0xbb,0x59,0x92,0x4d,0xdf,0x75,0x66,0x9f,0x9b,0xaf,0x82,0x09, - 0x34,0xed,0x3f,0x24,0xef,0x76,0x50,0x81,0x16,0x4d,0x23,0xc3,0x39,0xaf,0xcc,0x9f,0x12,0x71,0x05,0x36, - 0x03,0xe5,0x9b,0xf7,0xd6,0x25,0xd3,0x30,0x77,0x2f,0x1c,0xf4,0x68,0x45,0xcf,0x98,0xaa,0x2f,0xf3,0xfc, - 0x0d,0xbe,0xaf,0x57,0x4c,0x40,0x74,0x18,0x38,0xce,0xfe,0x27,0x71,0xba,0x03,0x22,0x38,0x04,0x4b,0x22, - 0x06,0x6f,0x7a,0x88,0x4b,0x45,0xb8,0x89,0x35,0xae,0xdb,0x56,0x80,0x7a,0x4f,0x77,0xea,0x82,0x99,0x42, - 0x88,0x74,0x2a,0x42,0x4b,0xa1,0x58,0x3c,0x8a,0x92,0x28,0xf9,0x4f,0xc4,0x04,0x97,0xa0,0x52,0xb2,0x11, - 0xd1,0xf0,0x12,0x53,0x49,0x8f,0x96,0xb6,0xde,0x1a,0x8c,0x17,0x2d,0xda,0x8b,0x88,0x3e,0xad,0xd0,0xd3, - 0x05,0x57,0x0e,0xc6,0xfb,0x90,0xc9,0x59,0x0c,0x0e,0x9d,0xb0,0x9c,0xa8,0xfc,0x6d,0x22,0xb6,0xa5,0xec, - 0x4d,0xe8,0xba,0x01,0xca,0x00,0xec,0x50,0xb6,0xb4,0x9c,0xdd,0xab,0x22,0x5e,0xed,0xf0,0xbe,0x1f,0xc7, - 0xfc,0x26,0xff,0x39,0xde,0xf7,0x1b,0xda,0xdb,0xf2,0x45,0x92,0x9d,0x2d,0xd3,0x37,0xbd,0x45,0x42,0xc4, - 0x8f,0x36,0xa8,0xb3,0xe4,0xcf,0x74,0x41,0x7c,0x3a,0x16,0xdc,0x8c,0x32,0x5c,0x32,0xa3,0x68,0x69,0x73, - 0xb2,0xcb,0x0e,0xbf,0xca,0x13,0x90,0xe6,0x24,0xeb,0x64,0x89,0xbf,0xb6,0xf5,0xe5,0xab,0x72,0x19,0xc7, - 0xd9,0x5f,0xe2,0x8e,0x7f,0x4e,0x2b,0x3a,0x35,0x4c,0xcf,0xe3,0x37,0xc9,0xf2,0xe3,0x59,0xe4,0x66,0x29, - 0xcd,0x27,0xbf,0xa4,0x4e,0xac,0x60,0xc3,0x3d,0x6b,0x73,0xcb,0x29,0x75,0x72,0x91,0x5c,0xe6,0x84,0x99, - 0x59,0x37,0xc7,0x1c,0xcf,0x09,0x3d,0xf3,0x6c,0x97,0x61,0xfe,0x81,0x3e,0x2e,0x12,0x80,0x2b,0x29,0xb4, - 0x33,0x67,0x22,0xc6,0x6f,0x50,0x4f,0x9b,0x71,0xfe,0xa5,0xce,0x41,0x99,0x97,0x79,0x81,0x4c,0x4d,0xe6, - 0xf9,0x39,0x7a,0x82,0x9a,0xa4,0x2b,0x1f,0xc3,0x3e,0x7f,0xb7,0x4e,0x67,0xe9,0x22,0xb9,0x81,0x7d,0x26, - 0x2e,0x0b,0xab,0x2b,0xc1,0x84,0xce,0x92,0x3f,0x93,0xe5,0x1c,0x9c,0x89,0xe6,0x91,0x93,0xb4,0xda,0xe1, - 0xa1,0x5f,0x49,0x5e,0xc3,0x3c,0x27,0xc9,0x92,0x0d,0xdf,0x13,0xaa,0x27,0xfb,0x34,0x2e,0xfa,0xf5,0xac, - 0xcd,0x45,0x3f,0x65,0x5c,0xe8,0x11,0x31,0xeb,0x5d,0xe6,0x58,0x1c,0x94,0xa7,0x66,0x83,0x93,0xa4,0xe6, - 0x9e,0x2f,0x1b,0xa0,0x4a,0xe0,0xc5,0x28,0x2d,0x77,0xf8,0xe8,0x85,0x40,0xbe,0x59,0xcd,0x22,0xb1,0x5c, - 0x57,0x52,0xcc,0x76,0x18,0xea,0x5f,0xe2,0x12,0x3c,0xbc,0xed,0x9d,0x65,0xa8,0x7f,0xc7,0x12,0x5f,0xbd, - 0xc9,0x2f,0xca,0xaa,0xc9,0x54,0xf3,0x07,0xe8,0x49,0x2d,0x62,0x68,0xdd,0xb8,0xbc,0xf5,0xeb,0x59,0xcd, - 0x5b,0x67,0x2d,0xde,0xfa,0xeb,0xe4,0x2a,0x81,0xde,0xfc,0x8d,0xdc,0x75,0x8d,0x0e,0x76,0x2e,0x1d,0x0c, - 0x71,0x57,0x5e,0x8b,0xbf,0x7e,0xe0,0x72,0x7c,0x34,0x39,0x82,0xe6,0xbc,0x0a,0xeb,0x6c,0x42,0x71,0x9f, - 0xc5,0xf1,0x1b,0x22,0x62,0x60,0x35,0x68,0xbd,0x2f,0xd3,0xd7,0xc4,0x41,0x5e,0x30,0xa4,0x85,0xe3,0xb6, - 0xac,0x6d,0x9a,0x60,0xbd,0xc7,0x73,0xfe,0x46,0x8b,0x99,0x78,0x7b,0x9a,0xa5,0x2c,0x8e,0x0b,0x46,0x9b, - 0x1e,0x68,0x95,0xe5,0xfa,0x12,0xc1,0x70,0x54,0x45,0xd8,0x54,0xa7,0x5a,0xc0,0xc3,0x15,0x70,0xef,0x51, - 0xb3,0x14,0xf1,0x4f,0x94,0xe5,0x2c,0xc9,0x88,0xb8,0x14,0x58,0x2f,0x69,0xdc,0xc9,0x78,0xd3,0x77,0x6a, - 0xf9,0xb5,0xdb,0xb3,0xf3,0xe4,0x0c,0xeb,0xf3,0x02,0x83,0x19,0xf4,0x5e,0xca,0x78,0xa5,0x5f,0xe0,0x8d, - 0x89,0xbf,0x48,0xd1,0x57,0x1e,0xa7,0xdb,0x07,0x62,0xba,0x11,0xa6,0xf8,0xcf,0x54,0x23,0xbf,0x2c,0xf4, - 0x33,0xa2,0xe1,0x29,0xf1,0xc4,0x33,0xa0,0x54,0xef,0xfb,0xa4,0xf7,0x86,0xd8,0x65,0xb7,0x36,0xda,0x78, - 0x5c,0xb0,0x12,0x5f,0x47,0xb8,0x0a,0xbc,0xb5,0x1b,0xbb,0x80,0x9e,0x18,0xc0,0x15,0xc6,0x34,0x2b,0xd6, - 0x6f,0x00,0x8e,0x2a,0xaf,0xd0,0xf5,0x99,0x70,0xdd,0x31,0x08,0x03,0x01,0xb1,0xcd,0x74,0x3b,0x73,0x0c, - 0xda,0xc8,0x6c,0xb3,0x26,0x18,0x4e,0x3e,0x99,0x3e,0x9d,0x77,0x77,0x0a,0x50,0x39,0x81,0x28,0xa1,0x85, - 0xdf,0xe2,0xbc,0x7f,0x59,0x2f,0x7b,0xe7,0x29,0xd3,0x2a,0xda,0xd4,0x00,0x11,0x26,0x71,0x94,0xed,0x2a, - 0x9e,0x9e,0x57,0x57,0x39,0xd8,0xef,0x94,0x40,0x93,0xd4,0xd4,0x9d,0x16,0x4a,0x8f,0xa3,0x8b,0xae,0x19, - 0xac,0xbd,0x9c,0xd6,0x1c,0x48,0x0a,0x83,0xa3,0xbc,0x91,0x19,0xff,0xd5,0x56,0x68,0xd8,0xf1,0x6f,0x93, - 0xb3,0x62,0x4d,0x5b,0x4a,0xcd,0x92,0x9f,0x37,0x58,0x72,0x82,0x29,0x23,0x18,0xb3,0xc5,0xc4,0x70,0x10, - 0xc8,0x92,0xab,0xf4,0xf5,0x9f,0xc0,0xb9,0x38,0xdb,0x19,0x26,0xed,0xf1,0x84,0x80,0x54,0x28,0x7d,0x9d, - 0x31,0xee,0x5e,0xd1,0xa9,0x86,0x86,0xed,0xcc,0x15,0x8a,0x41,0xf5,0x8a,0x06,0x44,0x7f,0xfe,0x4c,0x5f, - 0xe3,0xfb,0x55,0x42,0xc3,0xbe,0x02,0xee,0xd2,0xcb,0x45,0x92,0xe8,0xad,0xed,0x0c,0x9e,0x16,0x76,0xd9, - 0xf3,0x22,0xb9,0x99,0x39,0x4f,0x8a,0x8f,0x61,0xcf,0xe3,0x8b,0x1b,0xd8,0xf3,0x97,0xd8,0x6c,0xa8,0x1f, - 0x33,0xc3,0xa0,0xa3,0xad,0x1b,0xd9,0xf3,0x36,0x7f,0x4e,0xd4,0xa5,0xc1,0x9f,0x27,0xef,0x63,0xcf,0x63, - 0xe8,0xa0,0xd1,0x3a,0x20,0xbc,0x62,0x52,0xf4,0x17,0xb8,0xf4,0xb3,0xf4,0xf5,0x55,0x52,0x30,0x26,0x1a, - 0x46,0xfd,0x6b,0xc2,0x8d,0x59,0x95,0x2c,0x88,0x1a,0xcc,0x1c,0x66,0x1d,0x62,0x4f,0x37,0xd1,0xb2,0xeb, - 0x6e,0x7e,0xb0,0xeb,0x75,0x46,0x9a,0xaf,0xf3,0x18,0xab,0x89,0xd6,0xcc,0x59,0x5c,0x12,0x35,0x00,0x7f, - 0x21,0x0c,0x7c,0xd2,0xc9,0xbf,0xff,0x9e,0x27,0xdc,0x97,0xbf,0xce,0xbf,0xf3,0xc2,0xf8,0x28,0xbe,0xbd, - 0x51,0xb3,0xbb,0xf6,0x79,0x8d,0x73,0x39,0xf0,0x77,0xc9,0x9c,0x90,0x2d,0x5e,0xfc,0x77,0x70,0xef,0x6f, - 0x96,0xf9,0xff,0x5d,0xcc,0xfb,0x03,0x90,0xd2,0x82,0x39,0x43,0x42,0x14,0x22,0xc7,0xb2,0xd4,0x2f,0x79, - 0xdd,0x36,0xf7,0x60,0x5a,0xb7,0x44,0x14,0x2a,0x93,0xa7,0xd2,0x1b,0xc5,0xb9,0xe6,0x54,0x90,0x17,0x2c, - 0xbc,0xec,0x07,0x2b,0x60,0x05,0x95,0x20,0xcc,0xab,0x98,0xf4,0xfe,0x29,0xa4,0xcb,0x72,0xf2,0x17,0x58, - 0xc8,0xba,0x8b,0x94,0x9d,0xf3,0xcd,0xa8,0x55,0x70,0xed,0x6f,0x50,0xaf,0xe6,0xe5,0x4b,0xc3,0xcc,0x0b, - 0x3d,0xa3,0x7e,0x2e,0xb0,0x7b,0xda,0x21,0x01,0xf3,0x3e,0x8e,0x9d,0x07,0x39,0x62,0x79,0xbb,0xa6,0xa0, - 0xcc,0xac,0x98,0x01,0x83,0x68,0xcf,0x9a,0x4c,0xfd,0xb6,0x76,0xda,0xcb,0xf1,0xb1,0x1e,0xac,0x56,0xf6, - 0x4e,0x01,0xd7,0xdc,0xda,0x6b,0x63,0x6d,0xfe,0x48,0x1c,0x32,0x51,0x95,0xbc,0x18,0x2c,0x09,0xa8,0xeb, - 0x78,0x91,0xb4,0x6d,0x11,0x3d,0x5e,0xc3,0xc6,0xb2,0xd1,0x5a,0x82,0x04,0x43,0x5d,0x9d,0x7f,0x9d,0x2c, - 0x43,0xef,0x6f,0xb4,0x51,0x13,0x3d,0xa3,0xaa,0xc3,0x4a,0xb1,0xa5,0xe0,0xb5,0x61,0xf1,0xf7,0x8e,0x54, - 0x29,0x7c,0xf8,0xde,0xb1,0x7e,0x62,0x2e,0x0f,0xaf,0x3a,0xcf,0x13,0xda,0x84,0xa6,0xe8,0x45,0xe8,0x6d, - 0x3c,0xb5,0x5e,0x21,0xf9,0x45,0x91,0x2f,0x18,0xd9,0x28,0x9b,0x80,0xe0,0x55,0x7c,0x06,0xff,0xb8,0xc2, - 0x5b,0x1a,0xc1,0xfb,0x75,0x7d,0x68,0xd1,0x95,0x31,0x6f,0x6f,0x3e,0xbb,0x89,0xdb,0x26,0xc7,0xbf,0x0a, - 0xaf,0x93,0x4c,0x98,0x74,0x6a,0x22,0xa5,0x3d,0xe3,0x68,0xc0,0xff,0x6a,0xd6,0xbe,0x91,0x43,0xb3,0xbf, - 0x47,0xcd,0xac,0x94,0x97,0x89,0x04,0xb5,0x61,0x69,0x0f,0x65,0x76,0x98,0x53,0x30,0x68,0x6e,0x3d,0xac, - 0xa3,0x9b,0x0a,0x7b,0x46,0x9f,0x8e,0xea,0xbc,0x63,0xf8,0xf0,0x71,0x39,0x34,0x4b,0xdd,0x59,0xad,0xd2, - 0xe5,0xbc,0x00,0xd4,0xca,0xb6,0xc6,0x9b,0x22,0xe7,0xb1,0x5b,0x22,0xbf,0xf1,0x56,0xb8,0xc7,0x3d,0xe6, - 0x77,0x67,0x6b,0xe1,0x77,0xb3,0x9f,0xb0,0xd9,0x86,0xdd,0x0b,0x68,0x13,0x93,0xcf,0x4b,0x9a,0x33,0xa9, - 0x95,0xe8,0x10,0xa5,0x27,0x33,0x22,0x7d,0xf2,0x25,0x99,0x81,0xac,0x49,0xb7,0x56,0x9a,0x74,0x49,0xd6, - 0xab,0x0b,0x10,0x21,0xfb,0x4c,0xc4,0x45,0x6a,0x77,0xc8,0x87,0xf9,0x58,0x53,0x08,0x4e,0x71,0xe9,0x00, - 0xcd,0x81,0x39,0x0d,0x60,0x00,0xe6,0x99,0xcd,0x59,0x42,0x8c,0x1d,0x1f,0xc6,0x13,0xb5,0xb4,0xf4,0x1e, - 0xcc,0x2d,0xfb,0x68,0xd8,0x09,0x82,0xa4,0x8d,0xc9,0xad,0xf3,0x72,0xe6,0x70,0xe1,0xab,0xc8,0xf7,0xf8, - 0xd1,0x33,0x56,0xe5,0xfa,0xca,0xc8,0xd4,0x09,0x63,0x8f,0x73,0x63,0xcf,0x71,0x2c,0x11,0xb5,0x92,0x81, - 0xc5,0x45,0x27,0x4c,0xe1,0xd3,0x16,0x1a,0x43,0x07,0x74,0x20,0x92,0x26,0x10,0x7e,0x41,0x39,0x4e,0xd4, - 0xe7,0x42,0x1e,0x0c,0x9b,0xb3,0xe2,0xaa,0x1e,0x01,0x2d,0x9c,0x85,0x01,0xb4,0x28,0x24,0x15,0xd8,0xab, - 0xcf,0xdd,0x7e,0x30,0xa0,0x13,0x7c,0xe6,0x1a,0x81,0xca,0xf7,0x5a,0x0e,0x7e,0x63,0x16,0x11,0xb9,0xdd, - 0xf8,0x19,0x0d,0x9a,0x93,0xd3,0xcd,0x75,0xa0,0x6b,0x9d,0x5f,0xcb,0x2a,0x5f,0x75,0x42,0x40,0xaf,0x3d, - 0x1a,0xca,0x36,0xb0,0xff,0x94,0xbe,0xdb,0x13,0x02,0x61,0x84,0x0a,0xef,0xbd,0x00,0x8d,0xdf,0xa6,0x39, - 0xdb,0x4c,0xfa,0xde,0x61,0xbc,0x4a,0x0f,0xf5,0xe2,0xf6,0xda,0x9d,0xe9,0x74,0xab,0xae,0x5d,0x3f,0xf9, - 0x95,0xbd,0x49,0x94,0x24,0xea,0xcb,0x40,0x9c,0xdd,0xb9,0xaa,0x30,0x86,0x1c,0x2f,0xf3,0x05,0xd4,0x88, - 0x82,0xad,0x6a,0x82,0xf8,0xd3,0x3a,0x5a,0xaf,0xe5,0x4f,0xed,0x6b,0x5d,0xf2,0x2f,0x74,0x57,0xa6,0xfb, - 0xd3,0xba,0x2a,0x8b,0xff,0x53,0xbb,0x29,0xa5,0xfe,0x42,0x17,0x5d,0x94,0xfb,0xb4,0x8e,0x1a,0x6a,0x79, - 0xc8,0x37,0x51,0x9f,0xd8,0x5f,0xcb,0x16,0xa0,0xf0,0x5f,0x81,0x2c,0xd3,0x9d,0x4f,0x03,0x2c,0xdf,0x0f, - 0x76,0xf4,0x73,0xc7,0x1e,0x4f,0x77,0xc7,0xbd,0xe4,0xdf,0x83,0xeb,0x2a,0xec,0x4e,0xec,0x79,0x89,0xad, - 0x80,0x8e,0x86,0xf1,0x3d,0xc9,0x69,0xcc,0xc4,0x63,0x37,0x3a,0x10,0x3e,0x40,0x79,0x8f,0x1d,0x90,0x14, - 0xa3,0x22,0x2a,0xc3,0x72,0x4f,0x82,0x85,0x67,0x1c,0xd5,0x3d,0x6f,0x78,0x96,0x2a,0x11,0x37,0xa3,0x1f, - 0x95,0x5b,0x44,0x56,0x4d,0x38,0xfe,0x49,0x35,0x68,0x50,0x5b,0x71,0xcd,0x3e,0x5f,0xe6,0x70,0x74,0x75, - 0x68,0x7c,0x9e,0x05,0x4e,0xb6,0x08,0xea,0x41,0x5b,0x91,0xbb,0x7d,0x70,0xa5,0x54,0x9a,0xd2,0xb1,0xd3, - 0x38,0x79,0xc4,0x28,0x05,0x6a,0x08,0xca,0xbe,0xbb,0x74,0x54,0xbd,0x0f,0xba,0x0b,0x63,0x60,0x52,0x1b, - 0x1b,0x63,0x23,0x87,0xf3,0xc1,0x6e,0x97,0x8d,0x0c,0x3a,0x51,0x36,0xd0,0xe6,0x17,0x4a,0xa9,0x77,0xd3, - 0xc6,0x27,0x93,0x2a,0xdb,0x6b,0xe3,0x13,0x52,0xb0,0xdb,0x36,0x12,0xd3,0x95,0xbb,0xf1,0x36,0x5b,0xb1, - 0xe9,0x76,0x2f,0x6e,0x7c,0xd7,0x89,0xdb,0x36,0xfa,0xc0,0x3f,0xe7,0xc7,0x60,0xed,0x0e,0xb5,0xae,0x61, - 0x4e,0x34,0xd9,0x4c,0xda,0x7b,0xe9,0xc5,0xc7,0x4e,0x98,0x26,0x20,0xca,0x10,0x85,0xff,0x63,0x5d,0xee, - 0xdc,0x71,0x6f,0xec,0xbc,0xde,0x83,0x68,0x0b,0x5e,0x24,0xb4,0x88,0x6c,0x82,0x6c,0xb2,0x65,0x52,0xb1, - 0x4c,0x90,0x16,0x83,0xdb,0xa4,0x76,0x3e,0xd6,0x2c,0xdd,0xef,0xab,0x66,0x82,0xf6,0x45,0x7d,0x1c,0xda, - 0x64,0xdb,0x9d,0xc8,0x3b,0xf4,0x1c,0x3f,0x63,0xbd,0x3b,0x9d,0x79,0x0e,0x1a,0x79,0xee,0x76,0xe6,0x39, - 0x39,0x69,0x64,0xfa,0xbc,0x33,0xd3,0xc6,0x53,0xed,0x91,0x12,0x27,0x79,0xe7,0x8b,0x23,0x06,0xd7,0xee, - 0xee,0xec,0x42,0x6b,0xba,0x24,0xfe,0xd5,0x02,0x41,0xab,0x71,0xd6,0x20,0xa2,0x1a,0x88,0x96,0x19,0x2e, - 0x06,0x67,0x62,0x61,0x83,0xbb,0x3c,0x44,0xd4,0xec,0xb5,0x59,0x58,0x03,0xcd,0xf7,0x1a,0x33,0x44,0x57, - 0xc4,0xec,0x19,0x1f,0x6f,0x37,0x95,0x15,0x86,0x5b,0x43,0x59,0x7b,0xdc,0xbe,0x63,0x3c,0x6b,0x9b,0x45, - 0x92,0x2d,0xb4,0xcf,0x6e,0xed,0x11,0x5c,0x3b,0x00,0xb7,0x6e,0xbd,0x45,0x4d,0xd6,0x40,0xb8,0x59,0x18, - 0x7d,0x10,0x3f,0xde,0xa1,0xf1,0xcd,0xd9,0xd5,0xcf,0x6d,0x37,0x08,0x5e,0x21,0xda,0xdf,0x5f,0x02,0x43, - 0x8f,0x79,0xcf,0xdd,0x6c,0x90,0xb6,0x19,0x0e,0x71,0xe6,0x05,0x9f,0x08,0x9f,0x8f,0xa8,0x1b,0x97,0x0f, - 0x54,0xaf,0x86,0xd7,0x47,0x14,0x90,0xbb,0x09,0x53,0xe4,0xce,0xc7,0x14,0x69,0x5c,0x59,0x98,0x92,0x77, - 0x43,0x57,0xa5,0xb4,0x63,0x2c,0xe9,0xca,0xe0,0xf7,0x47,0x34,0xd1,0xb8,0xf7,0x30,0x4d,0x7c,0xf1,0x09, - 0x25,0xf5,0x3d,0x88,0x29,0xda,0x9e,0xfe,0x0f,0xcd,0x4f,0x8d,0x1a,0x70,0x78,0xd9,0xe6,0xf3,0x3f,0x40, - 0x47,0x47,0x44,0x73,0xb0,0xb2,0xf2,0x35,0xdc,0xa8,0xb7,0x0b,0xab,0x2f,0x92,0xbb,0x41,0x78,0x33,0x1f, - 0x79,0xa8,0xcf,0xbf,0x9f,0xc8,0xf7,0xd4,0x63,0xf9,0x24,0xa6,0x67,0x87,0x16,0x7f,0xb8,0xef,0xe0,0x04, - 0xe4,0x00,0x6f,0x84,0x79,0x37,0xc0,0x83,0x97,0x8b,0x86,0x89,0x4b,0xe4,0x41,0xa3,0x9b,0x12,0x80,0xe8, - 0x48,0x07,0x05,0x80,0xc4,0x01,0x4a,0xd3,0xb8,0x74,0x19,0x9a,0x30,0x53,0xbe,0x37,0x4f,0xa1,0x74,0x66, - 0x8f,0x77,0x04,0x36,0x1d,0x98,0xea,0xeb,0x77,0x4f,0xf8,0xb3,0xf4,0xe3,0x31,0xb2,0xb1,0x33,0xdb,0xa4, - 0x84,0xba,0xb4,0x3e,0xf4,0xf1,0x01,0x9d,0x06,0x14,0xde,0xfd,0x32,0xf9,0x5c,0xe5,0xd9,0xcf,0x4d,0xe9, - 0x43,0xd3,0x45,0x4d,0xab,0x63,0xcc,0x1a,0x15,0x50,0x6e,0xf3,0x8f,0x8f,0x8e,0x3e,0x93,0x13,0x4f,0x32, - 0x3b,0x84,0x2b,0xfb,0x2a,0x86,0xa7,0xe0,0xe1,0xce,0x3e,0x69,0xba,0xe3,0xb1,0x21,0xc2,0xee,0x26,0xe9, - 0xce,0x81,0x27,0x7e,0x6f,0x7a,0x25,0xa2,0x03,0xfc,0xc5,0x29,0xdb,0xe9,0x34,0x44,0x10,0xf5,0x96,0xfa, - 0x61,0xb8,0x11,0xcc,0xa8,0x1c,0xe1,0x22,0xe6,0x76,0x2b,0x47,0x6f,0x7d,0x74,0xfd,0xd0,0xae,0x0b,0x5f, - 0xdd,0x1d,0x27,0xde,0xcd,0x66,0x4f,0x02,0x23,0xb5,0x0f,0xbd,0x72,0xa6,0x68,0x9f,0x84,0x1d,0xa4,0x6b, - 0x8d,0x0b,0xc0,0xd1,0xe7,0x52,0xda,0xee,0x8e,0x8e,0x82,0xc0,0x2c,0xc7,0xf7,0x31,0xea,0xec,0x22,0xca, - 0x69,0x45,0x70,0xae,0xeb,0x00,0xde,0xd9,0x7b,0xc9,0x6e,0x98,0xdf,0x1b,0xc2,0xc7,0x33,0x94,0xdc,0x20, - 0xf2,0x4d,0x87,0xae,0x2d,0x1e,0x7b,0x1b,0x0c,0x0d,0xff,0x9d,0x88,0xfb,0x0c,0x51,0xa1,0x96,0x98,0x40, - 0x37,0xd6,0x59,0xf4,0x23,0x9d,0x3a,0xce,0x74,0xa4,0xf2,0xe1,0x7b,0xb8,0xf7,0xe2,0xb0,0x59,0x87,0xc4, - 0x44,0x4c,0x8d,0x5b,0xc9,0x1b,0x9b,0x49,0xb5,0x73,0xae,0x56,0x53,0xe8,0xf3,0x0d,0xe2,0x8c,0x5d,0xe6, - 0x50,0x94,0x24,0xaf,0x5b,0xb2,0xaf,0xe3,0xe4,0xae,0xb8,0xa3,0x45,0xbc,0x95,0xff,0x72,0x86,0x51,0x4f, - 0x2e,0x84,0x0f,0x5a,0x48,0x67,0x25,0x74,0x37,0xe3,0xad,0x64,0x10,0x44,0x6c,0x0b,0xf6,0x6a,0xbe,0x97, - 0x49,0x33,0x24,0xb8,0x65,0x78,0x78,0x08,0xb9,0x95,0x16,0xda,0xd2,0x58,0x4b,0x16,0xdc,0x22,0x8d,0x47, - 0xbe,0x48,0x72,0x84,0xab,0x3b,0x7c,0x5d,0xf2,0x49,0x46,0x07,0xd7,0xba,0x36,0xf7,0x3e,0x75,0x93,0xea, - 0x4d,0x02,0xe6,0x5f,0x98,0xe7,0x41,0x2d,0x0b,0xdb,0xee,0x8c,0xf0,0xe6,0xb3,0x23,0x16,0x2a,0x6d,0x63, - 0x65,0x00,0xcf,0xbf,0x6e,0x82,0xf5,0x54,0x5d,0xc7,0x6f,0x72,0x3f,0xc3,0x86,0x86,0x3a,0x7a,0x91,0x54, - 0xc5,0x3b,0xdb,0xa1,0xa1,0xed,0xcc,0x32,0xae,0x38,0x5e,0x75,0xa5,0xea,0x24,0x22,0x1e,0x19,0xfe,0x6e, - 0xff,0xf2,0x1c,0xed,0x42,0x97,0xf9,0xfb,0xad,0x62,0x27,0x61,0x04,0x22,0x23,0xff,0xbb,0x26,0xc4,0x22, - 0xc6,0xa5,0xd8,0xf1,0x40,0xef,0x92,0x22,0x50,0x00,0x5c,0x51,0xb1,0xeb,0xf4,0xa6,0xb8,0xf0,0xd3,0xcb, - 0x97,0x9f,0xd6,0xae,0x76,0xa8,0xe6,0xb4,0x6f,0xe5,0xd5,0x2e,0x50,0xba,0xc4,0x8b,0x91,0xf7,0x37,0xaf, - 0x5f,0x41,0xcf,0x7e,0xfb,0xbf,0x01,0xea,0xfd,0x9e,0x2c,0x19,0xf0,0x01,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0xc6,0xb2,0x2e,0xfa,0x57, + 0x24,0x5c,0x1f,0x19,0xd8,0x6a,0xd1,0x92,0x93,0xec,0xb3,0x03,0x1a,0xe1,0xf5,0x98,0x38,0xf1,0x14,0x4f, + 0x49,0xb6,0xa2,0xcd,0x05,0x91,0xa0,0x84,0x98,0x04,0x18,0x00,0xd4,0x10,0x91,0xf7,0xb7,0xbf,0xfa,0xaa, + 0x7a,0x02,0x08,0x39,0xc9,0x59,0x67,0xbd,0xe5,0x65,0x11,0xe8,0x6e,0xf4,0x58,0x5d,0x5d,0x73,0xef,0xce, + 0x56,0xc5,0xa4,0xc9,0xcb,0x22,0xcc,0x54,0x13,0xdd,0x04,0xe5,0xe9,0x6f,0xd9,0xa4,0x09,0x92,0xa4,0xb9, + 0x5e,0x66,0xe5,0x6c,0x27,0xbb,0x5a,0x96,0x55,0x53,0xef,0xed,0x6d,0xe5,0x2c,0xca,0xe9,0x6a,0x9e,0x8d, + 0xe4,0x67,0xa0,0xcb,0x25,0x4d,0x18,0xc5,0x81,0xa9,0xd3,0x15,0x9e,0x66,0xb3,0xbc,0xc8,0xf6,0xf6,0xe4, + 0x77,0x90,0x2e,0xa6,0x23,0x79,0x0c,0x8f,0x4f,0xa8,0xdd,0xf8,0xb6,0x76,0x47,0xfa,0x77,0x90,0x5e,0xe5, + 0xa5,0xd4,0x9e,0xb9,0xe7,0x4d,0xd8,0x9c,0xe7,0xb5,0xb2,0x43,0x88,0x6e,0xaa,0xac,0x59,0x55,0xc5,0x8e, + 0x1b,0x54,0x74,0x63,0x9e,0x77,0x9a,0xb0,0x8a,0x6e,0xf2,0x59,0x58,0x1c,0x57,0x27,0x91,0x2e,0x88,0x67, + 0xd3,0xf7,0xe1,0x45,0x5a,0xed,0xe4,0x09,0x92,0x92,0x1b,0x9d,0x16,0xdf,0x6c,0x54,0x3e,0x8d,0x2b,0x35, + 0x2f,0xd3,0x69,0x36,0x8d,0x77,0x8f,0x36,0x43,0xfd,0x69,0x86,0x4f,0x27,0xe9,0x7c,0x1e,0xe6,0xa6,0x06, + 0x95,0x2b,0xf7,0xdc,0x44,0xf4,0x22,0x9f,0x25,0xbb,0x87,0x2e,0x63,0x83,0x66,0x8a,0xe4,0xc6,0x56,0xd4, + 0x0c,0x16,0x09,0x4d,0xfe,0x60,0x92,0x14,0xf4,0x77,0x99,0x04,0x81,0x6a,0xc2,0x43,0x1a,0xdc,0xb1,0xbf, + 0x36,0xaa,0x88,0x6e,0xdc,0x34,0x17,0xe1,0x51,0xb4,0x51,0xdd,0xfc,0x60,0x55,0x67,0x3b,0x75,0x53,0xe5, + 0x34,0x93,0x43,0x3b,0xee,0x0a,0xb3,0x80,0x46,0x9b,0xa4,0xc8,0x2e,0x77,0x52,0x7a,0x55,0x45,0x52,0x86, + 0xe9,0x60,0x59,0x95,0x4d,0x89,0x09,0x1f,0x54,0xd9,0xef,0xab,0xac,0x6e,0xa8,0xd3,0xa6,0x57,0xe8,0x6f, + 0x93,0x15,0xd3,0xb0,0x50,0x5e,0x41,0x19,0x95,0xcd,0xa1,0xb7,0x62,0xa3,0xa7,0x2d,0xbc,0x1f,0xa9,0x92, + 0x7e,0xbe,0x88,0x54,0x4a,0x3f,0x5f,0x45,0x0a,0xdd,0xfc,0x67,0xa4,0x26,0x49,0x15,0xd6,0xd1,0x70,0x32, + 0x78,0xc8,0xeb,0x96,0xaa,0xc9,0x60,0x52,0x65,0x69,0x93,0x25,0xfe,0x32,0xe9,0x66,0x2b,0x9a,0xcd,0x45, + 0x56,0x9d,0x65,0x61,0xad,0xb2,0x88,0xc6,0x38,0x19,0x3c,0x4e,0x8b,0x49,0x36,0x47,0x03,0x54,0xb5,0x79, + 0x7d,0x5f,0x7e,0xca,0x0a,0xa4,0x7d,0x89,0xb4,0xbc,0x76,0x85,0x0e,0x91,0x40,0xcb,0xd2,0x57,0xfb,0x9b, + 0xaa,0x5c,0xe4,0x75,0x86,0x6c,0x4a,0x45,0xe5,0xf5,0x92,0xba,0x32,0xc5,0x77,0xd4,0x61,0x37,0xbf,0x13, + 0xf7,0x3c,0x20,0x40,0x4d,0x57,0xf3,0x26,0x99,0xfc,0xad,0x09,0x97,0x16,0x83,0x63,0x01,0xec,0x9d,0x87, + 0x55,0x95,0x5e,0x9f,0x10,0x7c,0x27,0x2b,0x01,0x1a,0x6a,0xde,0x7e,0x90,0x7b,0x5d,0x2c,0x56,0xf3,0xf9, + 0x6e,0x92,0x64,0x3d,0x3b,0x2e,0x73,0x5f,0x94,0x3d,0x4d,0x3c,0xd3,0x99,0xb7,0xb5,0x92,0xca,0x16,0xc7, + 0x0e,0xb0,0x6d,0x5c,0x94,0xf9,0x74,0xe7,0x10,0xcf,0x11,0xa5,0x9b,0x16,0x77,0x6d,0x8b,0x7b,0x7b,0x61, + 0x96,0x1c,0x67,0x27,0x91,0xc2,0xa0,0xa2,0x59,0x59,0x85,0x02,0xbe,0x04,0xd0,0x49,0x36,0x98,0x67,0xc5, + 0x59,0x73,0x3e,0x2c,0x1e,0xe4,0xc3,0x62,0x7f,0x3f,0x6a,0xa4,0x51,0x54,0xaf,0xb2,0xe3,0xe2,0x44,0x15, + 0xb4,0x86,0xc3,0x6c,0x4e,0x93,0x64,0xbe,0x2c,0x77,0x72,0xda,0x3a,0xd1,0x6b,0x6e,0xc8,0x03,0xc0,0xf3, + 0xb4,0x7e,0x7d,0x59,0xd0,0xfa,0x2c,0xb3,0xaa,0xb9,0xd6,0x9d,0x57,0x65,0xb4,0xb7,0xd7,0xae,0xb4,0x3c, + 0x51,0x25,0x55,0xca,0x40,0x57,0x0b,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0x56,0xc9,0x56,0xa5,0x4d,0xf9,0x8e, + 0xd6,0xa6,0x38,0x1b,0xba,0x85,0xbd,0xc9,0x6b,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xd1,0x6a,0x36,0xcb,0xaa, + 0x78,0x1b,0x5a,0xda,0x6b,0x27,0xc5,0x3a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xac,0xac,0x16,0x4f, + 0xd2,0x26,0xed,0xab,0x6b,0x55,0x08,0xbe,0x9b,0xba,0xc9,0x35,0xc5,0xf7,0xf6,0x32,0x9a,0x94,0xba,0x01, + 0x04,0x7b,0xc9,0x9b,0x76,0x07,0x3f,0xe6,0xd9,0xe5,0x5f,0xac,0xd8,0xfb,0x6a,0x6f,0xcf,0x7b,0xa1,0x6d, + 0x82,0x5a,0x46,0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x9d,0x0d,0x4e,0xf5,0x57,0xe6,0xc9,0xef,0x98,0xf7,0x19, + 0xfa,0x26,0x53,0xdb,0xd7,0xa5,0x9a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x56,0x8b,0xd3,0xfe,0x69,0x2e,0x38, + 0xa7,0x53,0x5c,0xd6,0x32,0x26,0x84,0x5a,0x7f,0x30,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85,0xbf, + 0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0x67,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1,0xe7, + 0xe5,0xe9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80,0x11, + 0xf6,0xf6,0x68,0x97,0x0f,0x96,0xf9,0x52,0xbe,0xfc,0xf0,0xf6,0xc5,0xbb,0x2c,0xad,0x26,0xe7,0x6f,0xd2, + 0x2a,0x5d,0xd4,0x7f,0x11,0x16,0x3a,0x5f,0x75,0x60,0xad,0x93,0x2b,0xcb,0x9a,0x16,0xd3,0xb4,0x9a,0x3e, + 0xaa,0xca,0xcb,0x3a,0xab,0x9e,0x16,0x17,0xf1,0xd6,0xf9,0x1a,0x7a,0x2d,0xd9,0x65,0x2b,0xd2,0x8b,0xfc, + 0x2c,0x6d,0xca,0x6a,0xbd,0x0e,0xde,0x66,0xe9,0xa4,0x79,0x95,0x36,0xf9,0x45,0x46,0x5d,0x49,0x6c,0x16, + 0xf6,0xe6,0x74,0x35,0x69,0x68,0x6c,0x7d,0x9d,0xbd,0xcc,0x8b,0x69,0x79,0xd9,0x9f,0x37,0x2d,0x27,0xab, + 0x45,0x56,0x34,0x84,0x84,0xcb,0xea,0x69,0x3a,0x39,0x8f,0x53,0xc5,0x07,0x85,0xed,0xde,0x4e,0x16,0xb6, + 0x4e,0xfb,0x46,0x55,0x3d,0x04,0x0d,0x8e,0xf7,0x1e,0xdc,0xda,0x8c,0xf8,0xdc,0xcf,0x98,0x3a,0x00,0x45, + 0xc2,0xaf,0xcd,0xc6,0x61,0x3c,0xa2,0x04,0x2a,0x46,0x7b,0x69,0x75,0xc6,0x3d,0xa9,0x0d,0xfa,0xab,0x08, + 0xfd,0x55,0x84,0xfe,0xd2,0xd0,0x66,0x49,0x25,0xe6,0x2c,0x2d,0x36,0x4a,0x8e,0xcc,0xb8,0x7b,0x80,0xe8, + 0x02,0x29,0x75,0xd6,0x66,0x71,0xbf,0x41,0x5d,0x24,0x05,0x75,0x74,0x9b,0x96,0x6a,0x46,0x75,0x88,0x8f, + 0xe3,0x66,0x43,0x47,0xd6,0x46,0xd1,0x6e,0xeb,0x85,0x21,0x9c,0xea,0xcb,0x79,0x3a,0xc9,0xc2,0x7b,0xff, + 0xf9,0xb5,0xfe,0xc7,0x3d,0x15,0x04,0x91,0x4b,0xa2,0x94,0x3b,0x9c,0xb4,0xd9,0xb4,0xcf,0xb5,0xce,0xa9, + 0xe6,0x50,0x67,0xbb,0x50,0x97,0xd2,0xa2,0xa9,0xb7,0x53,0x05,0x32,0x83,0xb1,0x45,0xd8,0x9d,0xab,0x08, + 0x73,0x48,0x13,0x56,0xd8,0xb9,0xa3,0x79,0xe3,0xa9,0xf6,0xa7,0xce,0x92,0x58,0x83,0x74,0xb9,0x9c,0x5f, + 0xf3,0x68,0xb7,0xbb,0x69,0x97,0xda,0x1b,0xf4,0xee,0x6e,0x36,0x98,0x94,0x04,0xe0,0x15,0x41,0x59,0x59, + 0xf5,0xce,0x5f,0xab,0xc4,0xc0,0x60,0x70,0xe0,0xbc,0xbe,0x74,0xec,0xdb,0xbe,0x39,0xe8,0x1c,0xd8,0x38, + 0x29,0x91,0x4a,0xc0,0xbf,0xd5,0x62,0xd8,0xd0,0xf1,0x3a,0x00,0x9d,0xf1,0x8c,0xe8,0xc1,0xe6,0xc5,0xd3, + 0xfe,0x65,0x1d,0xd4,0xf3,0x7c,0x42,0xf5,0x10,0x04,0xc8,0x63,0x78,0xa8,0x0e,0x23,0xaa,0x11,0x83,0x1a, + 0x9b,0xfe,0x44,0x4c,0xa6,0x36,0x9b,0xbf,0x45,0x8c,0x80,0x4c,0x36,0x74,0x4c,0x0d,0x62,0x13,0xef,0x79, + 0xd1,0x64,0xd5,0x24,0x5b,0xd2,0x68,0xe9,0x5c,0xd4,0x14,0x60,0xcc,0x24,0xa2,0xaa,0xb2,0x7a,0x49,0x93, + 0x91,0xc9,0xeb,0xc6,0xd2,0x78,0xff,0x14,0x1a,0xef,0xbe,0xd0,0x78,0x47,0xff,0x2d,0x44,0xde,0xd1,0xbf, + 0x08,0xd4,0xb7,0xa9,0xc9,0xd6,0x6c,0x6d,0x9f,0x0a,0x4c,0x5b,0x94,0x9a,0xda,0xbb,0x59,0x55,0xf3,0xd8, + 0xc1,0xc0,0xe1,0xc9,0x46,0xb9,0xb7,0xa3,0x93,0x28,0x52,0x5e,0xe1,0x5c,0xb5,0x06,0xa4,0x6e,0x16,0x59, + 0x73,0x5e,0x4e,0xe3,0xe0,0x2c,0x6b,0x82,0x0d,0xe8,0xc6,0x81,0xa4,0x10,0x89,0x22,0x0f,0x44,0x0a,0xbc, + 0x28,0x2f,0xb3,0xea,0x71,0x5a,0x13,0x96,0x90,0x29,0x4c,0x8e,0x6b,0x25,0xc7,0x07,0x11,0x2a,0x89,0x21, + 0x0d,0x69,0xe4,0xe5,0xfc,0x22,0xa3,0x2e,0x0f,0x01,0xd0,0x5b,0x33,0x65,0x06,0x37,0xd0,0x68,0x28,0xf4, + 0x07,0xd9,0x0c,0x56,0x45,0x7d,0x9e,0xcf,0x1a,0x42,0xdc,0xb3,0xd5,0x7c,0x96,0xcf,0xe7,0xd9,0x54,0xa1, + 0x52,0x60,0x9b,0x6c,0x1a,0xd1,0x8e,0xed,0xab,0x51,0x26,0xfb,0x96,0x2a,0x97,0xab,0xfa,0xfc,0xf6,0xfa, + 0x86,0x8d,0xd9,0x4a,0x11,0x6d,0xbc,0x41,0x73,0x9e,0x31,0xfc,0x70,0x27,0xa8,0x31,0xf3,0xe4,0xe3,0xa2, + 0xd2,0x36,0x74,0x1c,0x4c,0xb3,0x79,0xd6,0x64,0x81,0xe2,0xa9,0x53,0xc1,0x39,0x01,0x29,0xfd,0x94,0x4b, + 0x34,0x5f,0x07,0x27,0xaa,0x05,0xf0,0x6e,0x89,0x89,0x24,0x4c,0x3c,0x84,0xe5,0x30,0x19,0x8f,0x4e,0x4f, + 0x51,0x68,0xd6,0xab,0x58,0xaf,0x09,0x7b,0x9a,0x55,0xca,0x14,0xd6,0x9a,0x90,0x17,0xed,0xe9,0xa8,0xd5, + 0x99,0x65,0x59,0xa3,0x13,0xcb,0x15,0xff,0x4d,0x9b,0xc9,0xf9,0x5f,0xef,0x01,0x90,0xe6,0xe7,0xfa,0x50, + 0xf5,0xf5,0x41,0x4d,0x41,0xae,0x15,0xba,0x2b,0x6e,0x9b,0x57,0x7f,0x63,0x77,0x01,0x15,0xed,0x96,0x03, + 0x8f,0x4e,0x91,0xb3,0xbb,0x9d,0x72,0x1c,0x3c,0x2e,0x69,0xcd,0x8b,0xe6,0xe0,0x3d,0x75,0x3e,0x38,0x89, + 0x00,0xfd,0xdd,0xc4,0xa4,0x11,0xc2,0x36,0xf7,0x37,0x19,0xef,0xb1,0x9b,0x76,0xc9,0x38,0x00,0x62,0xcc, + 0x27,0x29,0x3a,0x71,0xef,0xea,0xe0,0xf2,0xf2,0xf2,0x80,0xa6,0x71,0x71,0x40,0xa3,0xca,0x8a,0x49,0x49, + 0x3c,0x27,0xed,0x83,0x49,0x72,0x93,0x4e,0xd3,0x25,0x41,0x5a,0x1c,0xf6,0x1d,0xa9,0x3f,0xbf,0x7c,0xf1, + 0x5d,0xd3,0x2c,0xdf,0xca,0x4c,0x8d,0xb0,0xbf,0xff,0x45,0xac,0x78,0x4f,0x49,0x9a,0xf5,0x49,0x56,0x13, + 0xf5,0x10,0x4a,0x21,0x62,0x02,0x09,0xb6,0xaa,0xb4,0xa8,0xd1,0xaa,0xae,0x20,0x3e,0xee,0x3d,0x21,0x70, + 0xb6,0xb5,0x7b,0x8f,0x45,0x77,0xd4,0x32,0x23,0x4d,0x24,0x78,0xf4,0xa5,0x4d,0xeb,0xbc,0x0a,0xc1,0x64, + 0x5f,0x41,0x98,0xb9,0xa2,0x44,0x6f,0xd1,0xcb,0x28,0x8b,0x3b,0x95,0x69,0x02,0x77,0x64,0x68,0x5a,0xce, + 0xef,0x50,0x3e,0xc8,0x0f,0x2b,0xf4,0xf4,0x4f,0x27,0x76,0x38,0x39,0x4f,0xab,0x3a,0x6b,0x92,0x55,0x33, + 0x3b,0xf8,0x57,0x00,0xb0,0x31,0x7c,0x06,0x6d,0x33,0xae,0x5c,0x88,0xd7,0xfe,0x3a,0x7f,0xab,0xcb,0x62, + 0xab,0x8a,0xef,0xdf,0xbd,0x7e,0x35,0x10,0x04,0x99,0xcf,0xae,0xc1,0x69,0xc5,0xd9,0xe6,0xc4,0x9f,0x61, + 0x8d,0x8e,0x8f,0xfd,0xdd,0x00,0x8e,0x6d,0x0b,0xab,0x46,0x4d,0x75,0x7d,0x93,0x25,0x5c,0xe3,0x12,0xad, + 0xe0,0x00,0x9b,0x60,0x2f,0xe1,0x93,0x8d,0x39,0x59,0x51,0x7b,0xbe,0xc8,0xca,0x55,0x13,0x1f,0xaa,0xab, + 0xba,0x9a,0x3d,0x2e,0xcb,0x4f,0x79,0xf6,0x2a,0x5d,0x64,0x71,0xf0,0xf3,0xbb,0xb7,0xcf,0x0e,0xde,0xbf, + 0xfe,0xe1,0xe9,0xab,0x80,0xf3,0xbe,0x23,0xac,0x90,0x55,0x3a,0xef,0xc0,0xcf,0x5d,0xa4,0x57,0x7a,0x69, + 0x5f,0x30,0x12,0x8a,0x0f,0x8e,0xd4,0x45,0x3a,0xcf,0x69,0x5f,0x65,0x44,0x49,0x36,0xab,0x3e,0x3a,0x75, + 0x27,0xfb,0x26,0xb9,0x7f,0x78,0x48,0x27,0xee,0x83,0x2f,0x0e,0x0f,0x37,0x9b,0xe1,0x64,0x70,0xce,0x2d, + 0x10,0x9c,0x4f,0xca,0xc5,0x82,0xa8,0xe3,0x9b,0x87,0x13,0x60,0xc7,0x78,0x6b,0xea,0xd4,0x4e,0x43,0xa4, + 0xd4,0x3d,0x22,0x62,0x72,0x7a,0xfe,0xc7,0xbd,0x7f,0x04,0x9b,0x3f,0x47,0x68,0x6d,0x24,0x62,0x5b,0x03, + 0x0a,0xb9,0xf9,0xdb,0x38,0xa8,0xf5,0xb9,0xc1,0x2e,0x75,0xd4,0xc2,0x1f,0x7f,0x26,0x2a,0xc0,0x26,0xaf, + 0x78,0x8b,0xdf,0x4e,0x5f,0xd9,0x3e,0x65,0xae,0x2e,0xc1,0x72,0x44,0x51,0x37,0x7b,0x7b,0x15,0x81,0xdd, + 0x87,0xe5,0xd2,0x9c,0x69,0xc4,0x68,0x34,0xed,0x14,0xc6,0x30,0x0d,0x51,0x91,0x4a,0xe6,0x84,0x25,0x56, + 0xd4,0xcf,0x3f,0x23,0x1d,0x5c,0xe7,0x14,0x76,0xfb,0xd7,0x72,0xe4,0x1f,0x99,0x33,0xff,0x0b,0x7d,0xe6, + 0x7f,0x29,0x9c,0xf7,0xd1,0x21,0x58,0xef,0xcf,0x51,0xf3,0xf2,0x3b,0x38,0x6d,0xca,0xb4,0xf5,0x32,0x38, + 0xa5,0xe7,0x50,0x12,0x68,0x0f,0x53,0x55,0x5f,0xf5,0x4f,0x87,0x23,0xb5,0x88,0x18,0xd1,0xe7,0x74,0xe8, + 0xe1,0xfe,0xb9,0x88,0xb7,0x66,0x74,0xda,0x03,0x9f,0x2b,0x1c,0xfb,0x7a,0x8d,0x86,0x95,0x8f,0x69,0x66, + 0x11,0x24,0x90,0x3c,0x17,0xd3,0x2e,0xee,0xe5,0x61,0x2f,0x99,0x74,0x6d,0xe3,0x45,0x75,0x9e,0x04,0x65, + 0x01,0xea,0xed,0x9a,0xf8,0xa6,0x26,0xa3,0xbd,0x5b,0x9c,0x11,0x80,0x5d,0x24,0xbb,0x47,0x43,0x6c,0xc1, + 0x1e,0x5e,0x48,0x06,0x45,0x94,0x9b,0x1e,0xee,0xcf,0x4f,0xca,0x05,0x01,0xac,0xae,0x91,0x68,0xc4,0xcb, + 0xbc,0x39,0x7f,0x5c,0x65,0x53,0x6a,0x3f,0x4f,0xe7,0x75,0x90,0x17,0x3b,0xcb,0xf5,0x9a,0xd0,0xd0,0x80, + 0x10,0x0d,0x4d,0x46,0x28,0x3d,0xe9,0xfd,0x5c,0x3a,0x04,0xc9,0x22,0x77,0xe2,0x50,0x2d,0x07,0x65,0x41, + 0x18,0xfa,0x8c,0xe8,0x08,0x6f,0xda,0x68,0xb3,0x73,0x8e,0xde,0xe6,0xad,0x0c,0xc0,0x6a,0xba,0x22,0x72, + 0x9c,0x27,0x6e,0x91,0xc8,0xdb,0x80,0xa0,0xa0,0x2a,0x68,0x97,0x53,0x07,0x03,0x75,0x66,0x52,0x97,0x69, + 0x5d,0x5f,0x96,0xd5,0x14,0xa9,0xc3,0xe9,0xe0,0x21,0xa5,0x95,0x55,0xfe,0x07,0xef,0xc9,0x24,0x78,0x94, + 0xd6,0xf9,0x64,0x27,0xd8,0x5f,0x85,0x8b,0x7d,0x3a,0x97,0xf6,0xcf,0xa2,0x0d,0x4d,0x0a,0x35,0xbc,0x24, + 0x42,0xc4,0x23,0xbf,0x3c,0xc0,0x54,0xa5,0x8c,0x93,0x3a,0xb1,0x64,0xec,0x6b,0x1f,0xde,0x65,0x15,0x4d, + 0x47,0xfe,0x07,0x91,0xb9,0x6a,0x97,0x00,0x6b,0x39,0x30,0xbd,0xcf,0xcc,0x93,0x5a,0x1e,0x9f,0x9f,0xf8, + 0x83,0x41,0x6b,0x04,0xea,0x5f,0xd2,0x06,0x58,0x32,0x91,0x7d,0x0d,0xc4,0x43,0x63,0xb8,0xc0,0x0e,0x80, + 0x6c,0x6b,0x39,0xa8,0x19,0x15,0xad,0xd7,0x4b,0x4b,0x6b,0x11,0xfe,0xdf,0xdb,0x3b,0xd4,0xdf,0xd8,0x24, + 0xa2,0xcb,0xa6,0xd9,0xd5,0x6b,0x5a,0xd4,0x19,0x64,0x02,0x41,0x14,0xc9,0x0c,0xd1,0x38,0x09,0x9d,0x3c, + 0x9c,0xcf,0x0d,0x22,0x16,0x8c,0x28,0xeb,0x36,0x4a,0x69,0xb8,0xbd,0xd9,0x38,0x0f,0x58,0x6e,0x55,0x25, + 0x37,0x4c,0x69,0x64,0xb6,0x31,0x00,0x1d,0xb1,0x01,0x40,0x66,0xe0,0x90,0xdb,0x19,0x23,0xd7,0xa9,0xd8, + 0x3d,0xbe,0xa7,0xb2,0x4a,0x46,0x12,0x1f,0xdd,0xbf,0xff,0x45,0xe2,0x46,0x36,0xba,0x7f,0xf8,0x65,0x6c, + 0x5e,0x74,0x19,0x14,0xdf,0x2a,0x17,0xbc,0x2a,0x77,0x34,0xdc,0x07,0xf6,0x03,0xae,0x58,0x6f,0x98,0xb8, + 0x50,0xc4,0x05,0xcd,0xf2,0x33,0x22,0x91,0x0c,0x4b,0xb0,0xdc,0x0c,0x73,0x6c,0x33,0x42,0x3e,0x8a,0xe0, + 0x92,0x06,0xb4,0x11,0xd0,0xca,0xaa,0xaa,0xac,0xfc,0xb5,0x98,0x87,0x93,0x30,0x78,0x95,0x35,0x04,0x2e, + 0x9f,0x76,0x9e,0x22,0x37,0x50,0x99,0xe2,0x29,0x58,0x46,0xf6,0xe3,0xdb,0xc0,0x92,0xbf,0xd6,0xe9,0x3b, + 0xb4,0x8b,0x82,0x7d,0xbb,0xea,0xfb,0xc1,0xa2,0xde,0xc9,0xae,0x26,0x59,0x06,0xd2,0x86,0xea,0x0c,0x9e, + 0x3e,0x7e,0xfd,0xea,0xd5,0xc3,0x47,0xaf,0xdf,0xbe,0x7f,0xfa,0x24,0x68,0xd5,0x5e,0x0d,0xfa,0xa4,0x18, + 0xa1,0x5e,0xca,0x6b,0xe0,0x2c,0x62,0x63,0xc6,0x09,0x01,0x61,0x67,0x1b,0xba,0x1d,0x18,0x81,0x1d,0x6c, + 0x1f,0x8b,0xa3,0x6b,0x86,0xae,0xb0,0x9b,0x1e,0xc5,0xc2,0x44,0x0c,0xc7,0x04,0x6e,0xd3,0x63,0xc9,0x76, + 0x27,0xe6,0x49,0x32,0xe6,0x1d,0x11,0xd0,0x79,0xaf,0x37,0xb0,0x64,0x32,0xec,0x00,0x8d,0x1b,0x3c,0x3f, + 0xed,0xf0,0xb7,0x56,0xb4,0x35,0x23,0x40,0x99,0x68,0x64,0x05,0x04,0x13,0x68,0x5c,0xef,0x71,0x34,0x23, + 0x8b,0xd6,0x9a,0x13,0xac,0x6b,0xa7,0x2d,0x5a,0xbd,0x4c,0x4e,0xa8,0xce,0x88,0xa9,0xcb,0xcb,0x6e,0x5a, + 0x82,0x9d,0xd7,0x06,0x48,0x26,0x2a,0x96,0xad,0xa4,0x0e,0xc8,0x6a,0x12,0x43,0xe4,0xcb,0x01,0x4e,0xea, + 0x6d,0xb0,0x8e,0x9a,0x73,0x5a,0x0e,0xe2,0x5d,0x7b,0x99,0xf2,0xb2,0x78,0x52,0x5e,0x32,0x5a,0x7b,0xa3, + 0x71,0xd9,0xde,0xde,0x72,0x90,0x4e,0xa7,0x4f,0x2f,0x40,0x5e,0xe4,0x35,0x8d,0x9f,0x46,0x12,0x18,0x4c, + 0x47,0x50,0xd0,0xf3,0x4d,0xa4,0x6e,0xa9,0xfc,0xc3,0xb2,0x5b,0xf5,0x8a,0x53,0xdc,0xd3,0x9f,0xb6,0xd5, + 0xae,0x02,0x73,0x34,0x71,0xba,0x08,0x96,0x1f,0xb8,0x57,0x30,0x2a,0xcc,0x4f,0x32,0x43,0xe6,0x9f,0x65, + 0x4b,0x9e,0xf3,0xf4,0x94,0x0e,0x39,0x42,0x85,0x90,0x0b,0x6a,0xc8,0xc5,0x02,0xf9,0x6b,0x1e,0xce,0x24, + 0x59,0x61,0x3d,0xe9,0xa4,0x9c,0xfd,0x8d,0xb3,0x9b,0x4e,0xe5,0x5b,0x28,0x0b,0x7c,0xa2,0xb9,0xf9,0x81, + 0xec,0xf4,0x41,0x9b,0x60,0x1b,0x16,0x1a,0x2d,0xec,0xed,0xe5,0x7b,0x7b,0xbb,0x79,0x68,0xde,0xa3,0x51, + 0x43,0xe4,0x6c,0xa0,0x01,0x6b,0x67,0x96,0x12,0x8a,0x9c,0xee,0x00,0x78,0x76,0xa4,0xc0,0x0e,0xe8,0x63, + 0xda,0xb5,0xe6,0x03,0x65,0x5a,0x10,0x0c,0x50,0x58,0x2d,0x53,0x01,0xfa,0x36,0x2c,0xfe,0xfa,0x68,0x8e, + 0x6e,0x1f,0x8d,0x22,0x66,0x49,0x46,0x94,0xf2,0x91,0xc9,0x58,0x07,0xdc,0xbb,0x55,0x28,0xa5,0xb6,0xd8, + 0xff,0x44,0xd2,0x05,0xce,0x92,0xb8,0x1d,0x27,0x54,0x93,0x21,0x25,0x94,0x01,0x02,0x6b,0x80,0x31,0x27, + 0x85,0x6c,0x18,0x91,0x7a,0x54,0xde,0xe6,0x49,0x72,0x95,0xfd,0x3d,0x51,0x8d,0x69,0x87,0x99,0x8d,0x0f, + 0x6f,0x9f,0x3f,0x2e,0x17,0x54,0x13,0x41,0x65,0x98,0x79,0xd2,0xbb,0xff,0xfa,0xf2,0xf0,0xde,0x59,0xae, + 0x82,0xff,0xeb,0x8b,0xf4,0xfe,0xeb,0x8b,0x87,0x9c,0x18,0xb7,0x12,0xef,0x7f,0x79,0xef,0x4c,0x05,0x77, + 0xda,0x69,0x8f,0xb9,0xa0,0x6a,0x27,0x1e,0xa2,0xe0,0x7e,0x2b,0xed,0xab,0x47,0x5c,0xf0,0xb8,0x9d,0xf8, + 0x84,0x13,0x4f,0x82,0xc8,0xd3,0xfd,0x7d,0x06,0xdc,0x08,0x23,0xec,0x36,0x46,0xe3,0x9a,0xf1,0xaa,0x96, + 0xa0,0x9c,0x8a,0x08,0x84,0x65,0xa3,0x35,0x44,0x94,0x90,0xf7,0x30,0x66,0x4d,0x44,0xa5,0x1a,0x8f,0xc5, + 0xe2,0xd2,0x7a,0xc1,0x8f,0x4f,0x86,0xb9,0xc5,0x9f,0x4d,0x67,0x71,0xfb,0xb4,0x5c,0xe0,0x60,0x0d,0x77, + 0xc8,0x6c,0x7a,0xd8,0xec,0x27,0xc1,0x31,0x0d,0x45,0xf9,0xe9,0x44,0x80,0x69,0xb5,0x57,0xde,0x47,0x86, + 0x83,0xf7,0x1a,0x88,0xb6,0x81,0x19,0x4b,0x50,0x27,0xe5,0xf3,0x77,0xaf,0x4d,0x17,0xe3,0xdc,0x67,0x02, + 0x59,0xce,0xb5,0xcd,0xe1,0x41,0xad,0x0a,0xc9,0x0e,0x21,0xe7,0x68,0x3f,0x48,0x82,0x7d,0xd6,0xb0,0x41, + 0x14,0x01,0x82,0x3b,0x1d,0xfc,0x56,0xe6,0x45,0x18,0xec,0xd1,0x24,0xeb,0x99,0x2b,0x51,0xd1,0x7e,0x12, + 0x1e,0x1c,0x41,0xdd,0xe1,0x48,0x95,0x51,0x10,0x8d,0xe8,0x4f,0x8c,0xb2,0xfb,0x65,0xf4,0xe7,0x00,0xd7, + 0x22,0xf0,0x8f,0x83,0x14,0xd4,0x6c,0x90,0xfa,0x64,0x1d,0xbd,0x9b,0x03,0x47,0x84,0x4b,0x5e,0x02,0x9f, + 0x40,0x2a,0xc8,0x9a,0xf4,0x0c,0x3f,0x57,0xcb,0x9c,0x80,0x9d,0x9e,0x66,0x84,0xf0,0xc0,0x70,0x09,0xff, + 0x94,0xcf,0x0e,0x16,0xe5,0x34,0x9f,0xe5,0xd9,0xf4,0xa0,0xce,0x09,0x2d,0x4a,0xda,0xaa,0xd8,0x4a,0x9d, + 0xa7,0x75,0x63,0xcb,0xe2,0xbd,0x9c,0x98,0x3e,0x10,0x77,0x09,0xee,0xfb,0x92,0x0e,0x72,0xb4,0x40,0x28, + 0xf5,0xea,0xfa,0xa0,0xdb,0xd1,0x2a,0x23,0x9e,0x9e,0x8e,0x53,0x3c,0xd1,0x31,0x75,0x90,0xce,0x1a,0x7e, + 0x03,0x31,0x7b,0x40,0x63,0x23,0x4a,0xe7,0xe4,0x16,0xb6,0x82,0xc5,0x80,0xb4,0xc1,0x4b,0xe2,0x6c,0x9c, + 0x3e,0x3e,0x23,0xae,0xdd,0xad,0xfa,0xa0,0x26,0x06,0xb4,0x09,0x83,0x5f,0x0b,0x82,0x91,0x0e,0xf7,0x5d, + 0xfa,0xcb,0x40,0xbb,0x4e,0xd1,0xe6,0x1f,0x40,0x1c,0x8f,0xcf,0x56,0xa7,0x34,0xdf,0xe1,0x21,0xa1,0x9d, + 0xa8,0x7d,0x56,0xab,0x62,0xab,0x54,0xb9,0x7f,0x44,0x00,0x21,0x87,0x67,0x4a,0x47,0x38,0xa1,0x5e,0x5b, + 0x71,0x13,0x7d,0x93,0x1c,0xea,0xdd,0x33,0x44,0x66,0x02,0x52,0xe2,0x60,0xc2,0x04,0x08,0x93,0x02,0x23, + 0xfe,0x66,0x84,0x3f,0xf1,0xf1,0x49,0x04,0x0c,0x45,0x53,0x18,0x1e,0x17,0x27,0x51,0x6c,0x73,0xf6,0x03, + 0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xeb,0x50,0xe2,0xcd,0xde,0x6d,0xb4,0xd5,0xc8,0xd7,0x03, + 0x38,0x7d,0x8c,0x35,0x3c,0xc8,0xac,0xf8,0x91,0x77,0x20,0x0d,0xe0,0x61,0x43,0xed,0x9c,0xae,0x68,0x07, + 0x05,0xe7,0xb4,0x84,0x01,0x6c,0x09,0x9a,0x24,0x1f,0xe0,0x05,0xdb,0xee,0x96,0x22,0x37,0x78,0x8a,0xa5, + 0x98,0x62,0x61,0xe0,0xa4,0x9c,0xd3,0xbb,0x79,0x1c,0xb9,0x47,0x87,0xb1,0x62,0xd1,0x74,0xc4,0xc4,0xd5, + 0x00,0x3c,0xf1,0x39,0xfd,0xa8,0x9a,0xf1,0x4c,0x8c,0xb6,0xf0,0x30,0x32,0x0f,0xbe,0xde,0x64,0xe4,0xbe, + 0x4c,0x6b,0x94,0xc5,0xcf,0x48,0x7e,0xbc,0x72,0xff,0xa7,0xd5,0x00,0x78,0x28,0xdd,0x08,0x1e,0x15,0xe6, + 0x0e,0x7d,0xa4,0x1f,0xb5,0x4c,0x9b,0x73,0xce,0x0f,0xee,0x61,0xf1,0x28,0x55,0x27,0x0c,0x20,0x14,0x7a, + 0x08,0xcb,0x8f,0x91,0x4b,0x44,0xa9,0x7d,0xf7,0x2a,0x82,0x78,0x5a,0xab,0xe4,0x5e,0xb8,0xa8,0xf3,0x6c, + 0x4d,0x13,0x04,0xb2,0x2d,0xba,0x97,0x0f,0x1a,0x48,0x3b,0x9d,0xa6,0x0d,0xe0,0xff,0x10,0xd0,0x8f,0x4d, + 0x6e,0x94,0x67,0xda,0xf0,0xe2,0xe9,0x3c,0xc3,0x5b,0x18,0xa4,0x81,0x3d,0x27,0x69,0x8d,0x34,0x2f,0x3e, + 0x30,0x3b,0x50,0xaf,0x85,0x93,0x3e,0x18,0xca,0x41,0xa0,0x80,0x71,0x5d,0x41,0xe8,0x8f,0xfe,0xc4,0x85, + 0xb3,0x1b,0x31,0xf3,0xcf,0x54,0xaa,0x79,0x01,0x44,0x63,0x3e,0x38,0x11,0x0f,0x9b,0x0d,0xe1,0xc9,0x2d, + 0xcd,0xe2,0xee,0xe1,0xe7,0xcf,0x68,0x4f,0xe7,0xa3,0xb5,0x1a,0x0b,0x22,0xc5,0x68,0x97,0x27,0x81,0x74, + 0x68,0x07,0x68,0x8a,0x78,0xe5,0x7a,0x27,0xa5,0xbe,0x14,0x4c,0xda,0xec,0x60,0x66,0xd3,0x09,0xd0,0xc2, + 0x46,0xa0,0x3a,0x78,0xf8,0xe8,0xf1,0x93,0xa7,0xcf,0xbe,0xfd,0xee,0xf9,0xf7,0x3f,0xbc,0x78,0xf9,0xea, + 0xf5,0x9b,0x1f,0xdf,0xbe,0x7b,0xff,0xe1,0xe3,0x4f,0x3f,0xff,0xf2,0xef,0xf4,0x74,0x42,0xec,0xfc,0xd9, + 0x79,0xfe,0xdb,0xa7,0xf9,0xa2,0x28,0x97,0xbf,0x57,0x75,0xb3,0xba,0xb8,0xbc,0xba,0xfe,0xe3,0xf0,0xe8, + 0xfe,0x17,0x5f,0x7e,0xf5,0xcf,0xff,0xfe,0xd7,0xd7,0xfb,0xf7,0x92,0x60,0x58,0x38,0x59,0xb4,0x23,0x3c, + 0x94,0x97,0x2a,0xa4,0xc1,0x57,0xad,0x24,0x2c,0x62,0x12,0x3c,0x97,0x7e,0x3d,0x36,0xdd,0x32,0x9c,0x52, + 0x2f,0x92,0x32,0x6a,0xb5,0x06,0x24,0x4c,0xa2,0xa7,0x3d,0x83,0x30,0x86,0xa0,0xad,0x4e,0x0e,0x61,0x5f, + 0x33,0x2c,0x2d,0xf4,0xac,0x6b,0x9c,0x5e,0x93,0x84,0x4e,0x14,0x55,0xff,0x17,0x11,0x4e,0xe9,0x7e,0x32, + 0x31,0xb9,0xff,0xfc,0x62,0xaf,0xf9,0xe6,0x9b,0x7f,0x1d,0x50,0xc6,0x3f,0xfe,0x15,0x31,0xba,0x09,0xf3, + 0x44,0x3e,0x7e,0x4c,0xbd,0xa5,0x22,0xf5,0x7e,0x32,0xf8,0xef,0xaf,0xa2,0xe8,0x9b,0xfb,0x5f,0x7d,0xa5, + 0x09,0x76,0x8c,0xae,0x18,0x36,0x49,0xf3,0xe0,0xc1,0xbf,0xd6,0xb9,0x39,0x8e,0xfe,0x97,0x11,0xc8,0xcd, + 0x65,0x95,0xb7,0x94,0xf7,0x86,0x6a,0x23,0x64,0x75,0x23,0xd6,0x1e,0x74,0xda,0xd7,0x5a,0x1b,0xc2,0x07, + 0x66,0x0f,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x6d,0x40,0x80,0xb9,0xb7,0xa7,0x3f,0x31,0x27,0x15,0x7d, + 0x87,0xf1,0xf0,0xd9,0x5d,0x00,0x33,0x7f,0xfb,0xf2,0xbd,0x95,0xde,0x2a,0x0f,0xb2,0x73,0xef,0x5b,0xec, + 0x3f,0xfa,0x30,0x6f,0x15,0x28,0xbd,0x02,0x53,0x16,0xd0,0x50,0x91,0x12,0x82,0x0b,0x02,0xf2,0xd4,0xe5, + 0xd5,0xd9,0x64,0x55,0x41,0xea,0xed,0x76,0x21,0xe3,0xee,0xa4,0xd6,0x67,0xfc,0x70,0x87,0x0e,0x79,0x05, + 0xe6,0x32,0xde,0x3a,0x9d,0x92,0xce,0x47,0x83,0x05,0xf3,0x59,0x18,0xc2,0xdb,0xec,0xec,0xe9,0xd5,0x32, + 0x0c,0xc2,0xff,0xac,0x87,0xbf,0xfe,0x5a,0xff,0x23,0x0a,0x69,0x4a,0x88,0x7c,0x4b,0xc2,0xe3,0xff,0x0c, + 0x4f,0xfe,0x11,0x05,0x4e,0xe9,0xd3,0x10,0x7f,0xb8,0x3d,0x57,0xc7,0x5f,0x9c,0x88,0x7c,0x02,0x8d,0x2f, + 0xca,0x8b,0xb6,0x11,0x04,0xef,0x2e,0x5e,0x14,0x5a,0x0b,0x02,0x35,0xcc,0xd8,0xa0,0x28,0x2f,0xc3,0xe8, + 0xe0,0x5f,0xff,0xfc,0x32,0xfb,0x8a,0xa8,0xe9,0xb8,0xbb,0x68,0x90,0x39,0xb5,0xc7,0xd1,0x52,0x93,0x6e, + 0xb7,0x43,0x1f,0xfc,0x0d,0xf2,0x58,0x77,0xea,0x9c,0xc0,0x67,0x0e,0x69,0xf1,0xf1,0x89,0x4f,0x80,0xfa, + 0x1a,0x48,0xaa,0xa0,0x5f,0x5f,0xdd,0xaa,0x40,0x16,0xe8,0xc6,0x6a,0xd6,0x58,0xe6,0x21,0x9a,0x35,0x56, + 0xae,0xb7,0x0b,0x0b,0x25,0x74,0x70,0x04,0x09,0x83,0x6b,0x89,0xcb,0x27,0x5b,0x13,0x67,0xbe,0x22,0x22, + 0x12,0x44,0x66,0x27,0x49,0xf3,0x7b,0xad,0x8a,0x34,0xc5,0x91,0xb4,0xa9,0x4c,0x4b,0xdc,0xfa,0x35,0x78, + 0xb6,0x02,0x96,0xcc,0x6d,0x88,0x01,0xa5,0x57,0x62,0x11,0xff,0x87,0x7a,0x2c,0x98,0x17,0x7e,0x86,0x9f, + 0x65,0x54,0xf0,0x7c,0xa6,0xb9,0xbf,0x6c,0x1a,0x46,0x5d,0xc3,0xbf,0xa3,0xaf,0x45,0x42,0x0c,0x0b,0x3c, + 0x6b,0xfa,0x47,0xaf,0x47,0x10,0x10,0xd3,0xef,0x2d,0x3c,0x82,0x67,0xfa,0x97,0x81,0x8d,0x3a,0x4d,0xb5, + 0x74,0x6e,0x77,0xa2,0x85,0x31,0xcc,0x67,0xd1,0x43,0xb2,0x0a,0x6d,0xb6,0xd2,0x72,0x1a,0x65,0x45,0xbd, + 0x4e,0xe8,0xcb,0x9a,0x3e,0x91,0x05,0x27,0x10,0x35,0xb2,0x50,0xd8,0xe6,0x42,0x5f,0xd3,0xd1,0x5c,0xf9, + 0xb5,0x18,0xf3,0x43,0x9b,0x32,0x10,0x95,0x84,0xae,0xd4,0xca,0xfe,0xb5,0x64,0xf3,0xa4,0x9d,0x8e,0x37, + 0x9f,0x69,0xb8,0x4d,0xc1,0xda,0xa3,0x65,0x00,0x85,0x8d,0x86,0x7c,0x75,0x03,0x2d,0xaf,0x91,0xdd,0xdb, + 0x96,0x9b,0x93,0x0d,0x94,0xe1,0x03,0xad,0xda,0x5b,0xaf,0x6b,0xf3,0x18,0x81,0x45,0x6c,0xcb,0x1b,0x9a, + 0xf6,0xec,0x36,0x66,0x52,0xe4,0x81,0xde,0x7b,0x27,0x45,0x78,0x57,0x2a,0xbe,0x51,0x3d,0x35,0xa5,0xf4, + 0x4c,0x47,0x8c,0x54,0x08,0xfb,0x3c,0xc3,0xec,0x02,0xd0,0x9d,0x32,0xdb,0xb6,0xd4,0x4a,0x51,0xde,0xfb, + 0xe7,0xda,0xa6,0x95,0x75,0x1a,0x79,0x66,0xa4,0x9a,0xbf,0xa5,0xba,0xf8,0x0c,0x3b,0x6a,0x26,0xc4,0x2e, + 0x52,0xd1,0x22,0x71,0xe8,0x34,0x67,0x8c,0xb1,0xd9,0xe6,0xa4,0xfe,0x82,0xc0,0xc0,0x12,0x32,0xe1,0x6e, + 0xb6,0x5e,0xc3,0x70,0x63,0xfc,0xf8,0xe1,0xab,0xc7,0x4f,0x5f,0x8c,0xc7,0xff,0x03,0xf1,0x83,0xa9,0xed, + 0xde,0x7f,0xc2,0xe3,0xf4,0xe0,0x8f,0x13,0xfc,0xf9,0x75,0xfa,0xeb,0xfe,0xaf,0x07,0xbf,0x0e,0x4e,0xfe, + 0x11,0x47,0xa3,0x5f,0xef,0xfd,0x7a,0xcf,0xd0,0x7e,0xd9,0xff,0x48,0xbe,0xe1,0x30,0xe3,0xc8,0x33,0x18, + 0xfa,0xf5,0xde,0xbe,0xd0,0xcc,0xfb,0x20,0x40,0x1b,0x9f,0x22,0xbe,0xb7,0x2f,0xb4,0xee,0x9f,0x4c,0x4e, + 0xdb,0x3a,0xa7,0x45,0xaa,0x65,0x9b,0xa2,0xc7,0x48,0x33,0xd9,0x3a,0x33,0x02,0x31,0xea,0x0d,0xf6,0x43, + 0xff,0x73,0xe2,0x74,0x89,0x91,0xf1,0x53,0x62,0x58,0x31,0xb5,0xc8,0x2c,0x37,0xe9,0xd0,0x8f,0x78,0x66, + 0xd3,0x7f,0x0b,0x1f,0x42,0x92,0x69,0x85,0x89,0xbb,0x9e,0x86,0xd5,0x52,0x45,0x90,0x6a,0x8a,0xc0,0x89, + 0xc8,0x0b,0x3a,0xe6,0x89,0xf0,0xde,0x59,0xac,0xea,0x66,0xe7,0x34,0xdb,0x49,0xad,0x6d,0xd4,0x20,0xd0, + 0x16,0x27,0x43,0xee,0xb5,0x96,0x0c,0x26,0xbd,0xda,0x2c,0xcc,0x15,0x4d,0x90,0x7c,0x50,0x24,0xf8,0x60, + 0xd8,0xce,0x86,0x18,0x2d,0xad,0x81,0x90,0x42,0xf3,0xc8,0x55,0xe5,0xbc,0x1f,0x6d,0x1a,0xe4,0x08,0x0e, + 0x43,0x7f,0xd1,0x3e,0x1e,0xbb,0xc8,0xbc,0xa3,0x4f,0xd1,0x06,0x14,0x5c,0x8d,0x96,0xd9,0xba,0x14,0x9c, + 0x5a,0x75,0xb9,0xaa,0x26,0x99,0xff,0x15,0x5a,0x32,0x4c,0xde,0x4d,0x83,0x13,0x83,0x4d,0x87,0xaa,0x16, + 0x2a,0xca,0x12,0x9c,0xaa,0x72,0xaa,0x30,0xfc,0xdc,0x7a,0x52,0xfd,0x8d,0xbd,0xb1,0xd3,0x83,0xa2,0x8c, + 0xe1,0x18,0xcb,0x1d,0x1b,0xd8,0x8e,0x41,0xf1,0xd9,0x6d,0xe1,0x76,0x5f,0x87,0x1e,0x6d,0xe6,0xff,0x92, + 0xbb,0x43,0x03,0x07,0x86,0x8f,0xab,0xac,0xdf,0x7d,0xa1,0x1f,0x18,0xb3,0x5e,0x7b,0xd7,0xf5,0x1a,0xa3, + 0x63,0xcb,0x57,0xcf,0xe8,0xb1,0x5b,0x52,0x84,0x5e,0x46,0x14,0xb6,0x69,0xef,0x4a,0xc3,0x73,0xb5,0x2b, + 0xf1,0xcd,0xd7,0xb7,0xcc,0x0b,0xd6,0xeb,0x6d,0x7b,0x5d,0x4a,0xab,0xaf,0x17,0xa7,0xe5,0xbc,0x9d,0x76, + 0x5a,0x96,0xf3,0x2c,0x2d,0x7a,0xed,0xd7,0xff,0x77,0x2c,0xde,0x45,0xc4,0xc6,0x46,0xb6,0xe7,0x45,0xaf, + 0xc1,0xbb,0xa1,0xa2,0xd9,0x12,0x82,0xad,0xef,0x42,0xcb,0x41,0x39,0xea,0xf8,0x9b,0xe4,0x70,0x6f,0xef, + 0x25,0xd1,0xf8,0x83,0xd9,0xbc,0x84,0xd1,0x17,0x6b,0xd3,0x89,0x65,0xad,0x9f,0xe5,0x05,0x13,0xc0,0x5e, + 0xad,0x75,0xa7,0xeb,0xd4,0xf3,0x51,0x10,0xf4,0x78,0xb0,0x8c,0xba,0x32,0x3f,0x11,0x83,0xdf,0x8f,0x62, + 0xdb,0x05,0x57,0xeb,0xa4,0xb7,0xaf,0x4e,0x8c,0x4d,0x2c,0x4d,0xfa,0x8a,0x3a,0x36,0xca,0x88,0x32,0xb5, + 0x5f,0xad,0xb4,0x25,0xa4,0xb5,0xbc,0xd4,0x26,0xf0,0xc2,0xe6,0x87,0xa2,0x3e,0xa8,0x12,0x2b,0xc4,0x52, + 0x90,0x73,0x26,0x87,0xc3,0xfc,0x41,0x65,0xac,0xc6,0x72,0x31,0xc0,0x3c,0xce,0x4f,0x4e,0x08,0x57,0x3a, + 0x86,0xa1,0x4f,0xfd,0x7e,0x9c,0xb5,0x25,0x59,0x27,0x9b,0x3e,0xeb,0x0e,0x2a,0x76,0xb2,0x71,0x7d,0x9c, + 0x5b,0xb7,0x03,0xe3,0x2f,0x60,0x74,0xaa,0x99,0x27,0xe3,0x62,0x79,0xf0,0x37,0x07,0x47,0x56,0x4c,0xcc, + 0x5d,0xa6,0x13,0xa7,0x50,0x47,0x91,0x57,0xdb,0xac,0x75,0x66,0x9d,0x99,0x55,0xc7,0x26,0xb7,0x65,0xa6, + 0x6e,0x2e,0x7b,0xe6,0x63,0xd8,0x45,0x1b,0x9e,0xf1,0xda,0x71,0x41,0xf4,0x5c,0x88,0x1f,0x58,0x02,0x47, + 0x7e,0xc3,0xcb,0x2d,0xa3,0x53,0x2d,0x0e,0xa9,0x7a,0x0c,0x82,0x35,0x85,0x31,0xaa,0xbe,0x39,0x1a,0x39, + 0x23,0x56,0x5b,0x0e,0x38,0x80,0xfb,0xcd,0x66,0xbc,0xe6,0xd9,0x0a,0x7a,0x8b,0xc1,0x58,0x2a,0xb2,0x1e, + 0x16,0xaa,0x70,0x1d,0x39,0x97,0x8e,0x10,0x3b,0xbe,0x5e,0x1f,0x0e,0xdd,0xd2,0x9b,0xb2,0x07,0x0d,0xad, + 0xb8,0xb3,0xc0,0x2d,0xa2,0x61,0x71,0x70,0x30,0x8c,0x2a,0x1e,0xd4,0x71,0xb1,0xdf,0x58,0xf3,0xda,0xca, + 0x55,0x7a,0xd1,0x01,0x24,0x78,0x69,0x34,0x11,0x7c,0x38,0x12,0xcc,0x86,0x15,0x8d,0xba,0x2f,0x16,0x2d, + 0xd9,0x04,0xac,0xa3,0x0b,0x02,0xac,0xe2,0x81,0x73,0x0a,0x21,0xc0,0x42,0x05,0x7b,0x7b,0x17,0x50,0x3f, + 0x42,0x1a,0x69,0xa1,0xcb,0x55,0x73,0x66,0xce,0x61,0x97,0x74,0xed,0x00,0x06,0xdb,0x30,0x32,0x58,0x4a, + 0x1f,0x89,0x7c,0xce,0x55,0xf4,0x23,0x40,0xb3,0x4b,0x07,0xe1,0x6e,0x65,0x0a,0x11,0xdb,0xb2,0x5b,0xed, + 0xed,0xd9,0x0d,0x46,0x15,0xe8,0x67,0x2a,0x0d,0x25,0x26,0x2b,0x1f,0x12,0x9e,0x1a,0x4f,0xde,0x4f,0x7c, + 0x4b,0x3b,0x49,0xea,0x2e,0xf7,0xf6,0x52,0x07,0x90,0x7a,0x4d,0x20,0xc0,0x92,0x47,0xb0,0x48,0xd9,0x45, + 0x56,0x5d,0x7b,0xe7,0xb3,0x47,0x60,0xf2,0x38,0x30,0xec,0x8d,0x54,0xb6,0x5e,0x9b,0xca,0x76,0x8f,0x86, + 0x22,0xd1,0xd0,0xe0,0xf9,0x29,0xbb,0x06,0x56,0x21,0x76,0xc9,0x4f,0x70,0xf6,0xe3,0xb5,0x6b,0x7b,0x62, + 0xdb,0xae,0xbb,0x6d,0xb7,0x5a,0x86,0xf7,0x8d,0x6e,0xdc,0x59,0x7f,0x99,0xd6,0x3d,0xb0,0x1e,0x77,0x31, + 0xc8,0xd6,0x1a,0x52,0xd7,0x4d,0x7d,0x91,0x75,0x9b,0xd3,0x3d,0x23,0x66,0xd8,0xd6,0x74,0xea,0x76,0x1d, + 0x8d,0x6f,0xdb,0x3c,0xbc,0xc1,0xce,0x12,0x72,0x4c,0x6f,0x08,0x1c,0x7e,0x6e,0x4f,0xf8,0x9b,0xed,0xd2, + 0x68,0xde,0xa2,0x1b,0x3d,0x23,0x72,0x7c,0x1a,0xff,0x20,0xce,0xa6,0xc6,0xe6,0xab,0x2c,0x2e,0x54,0x46, + 0x27,0x52,0x56,0xa5,0xa7,0xf3,0x2c,0xde,0xdd,0xad,0x14,0x64,0x12,0xf2,0x72,0xa8,0x6d,0x19,0x56,0x3a, + 0xf3,0x70,0xe3,0x61,0x89,0x2b,0xef,0x40,0xe9,0x51,0x19,0xef,0xed,0xdd,0x2b,0xd8,0x81,0x81,0xb5,0x9a, + 0xf7,0x34,0x89,0xed,0x9b,0xfa,0xb9,0xaa,0x3e,0x75,0x6c,0x94,0x7e,0x29,0x42,0x39,0x7d,0x55,0xfb,0xc7, + 0x1d,0x3d,0xee,0xdb,0x3b,0x5a,0xd9,0xaf,0xf7,0xf0,0xc4,0x88,0x67,0x5e,0x8b,0x09,0xae,0xde,0xcb,0xbf, + 0xc0,0x96,0xa6,0x49,0xcf,0x94,0xe5,0x66,0x27,0xe7,0xf9,0x7c,0x5a,0x65,0x05,0xb8,0x27,0xd8,0x6f,0x10, + 0x28,0xce,0x17,0x8a,0xd5,0x93,0xfc,0x8e,0x8c,0xb4,0xbe,0x2e,0x26,0xcf,0x52,0xd8,0xb3,0x5f,0x3b,0x85, + 0xe8,0xa0,0x00,0xaf,0x8c,0xaa,0x45,0x16,0xd7,0xe4,0x13,0xa0,0x62,0xfd,0x48,0xa9,0x04,0x7d,0x94,0x40, + 0x7f,0xb9,0xc4,0x63,0xe2,0x4a,0xa9,0x3f,0x5c,0x44,0x3f,0x53,0xfa,0xac,0x78,0x2c,0x0d,0x51,0xba,0x7d, + 0xe6,0x74,0xdd,0x71,0x4e,0xb7,0x83,0xa0,0xe7,0x77,0x13,0x5a,0xbb,0xe7,0x53,0x4e,0xd7,0xcf,0x52,0xff, + 0x9c,0xc6,0xcb,0x2e,0x92,0x8d,0x28,0x54,0xf5,0xc0,0xe8,0xa5,0xb2,0x2f,0xc9,0x63,0x2f,0x07,0xa6,0x41, + 0x11,0xd4,0xaf,0x85,0x5f,0xb8,0xf0,0x0b,0x17,0xed,0xc2,0x84,0x30,0xdc,0x8c,0x3f,0xee,0x82,0xbc,0xc5, + 0xb2,0x6d,0xbc,0xa9,0x4f,0xca,0x82,0x8f,0x48,0x1c,0x90,0x09,0xad,0x15,0xfd,0x78,0x8e,0x1d,0x5e,0xad, + 0x0f,0xbd,0x75,0xc4,0x76,0x17,0x0f,0x9e,0xdd,0xb0,0xe5,0x6f,0xf3,0x4b,0x61,0xb7,0x10,0x0e,0xb2,0x60, + 0x3c,0x2e,0x4f,0xc7,0xe3,0x80,0xad,0x4d,0xe4,0xd9,0x2f,0x5d,0x56,0x23,0x74,0x4e,0x32,0xe2,0x9c,0xc8, + 0xee,0xf3,0x72,0x35,0x9f,0xd2,0x64,0xd3,0xc6,0xa7,0xc9,0xda,0xfd,0xa3,0x60,0x2b,0xbf,0x2e,0x36,0x5b, + 0xaf,0x41,0x2c,0x51,0x8e,0xde,0x3b,0x79,0xfd,0x14,0xde,0x27,0x75,0x7e,0xca,0xe6,0xb2,0xf4,0x21,0xfb, + 0x13,0x10,0x15,0x8a,0x69,0xe3,0x31,0xb3,0xca,0x9c,0xd9,0x79,0x9e,0xd6,0x8b,0xc5,0xe3,0x72,0x55,0x34, + 0xfb,0xfb,0xfe,0xc1,0xf3,0xce,0x57,0x87,0x0b,0x1e,0x65,0x6b,0xb9,0x82,0xb0,0xa7,0x6e,0xe9,0x2c,0x6b, + 0x3c,0x2f,0xbe,0x27,0x59,0x3d,0xa9,0x72,0xd8,0xb8,0xf3,0xdc,0x30,0xb6,0x4e,0x09,0x5b,0x1f,0x11,0xb5, + 0x97,0x0e,0xfc,0xad,0x69,0x24,0xbc,0x29,0x21,0x5c,0x54,0x42,0x98,0x90,0x1f,0x6b,0x7a,0x5c,0x25,0xbb, + 0xf9,0xde,0xde,0x43,0x1c,0x64,0x9f,0xc1,0x05,0x3e,0x0e,0xd8,0xda,0xf6,0x8a,0xaa,0xf4,0x65,0x8e,0x82, + 0xa5,0xea,0x51,0x6d,0x68,0x46,0xa7,0xbe,0xf8,0xb9,0xa0,0x6d,0x56,0x51,0x79,0x9a,0x9a,0x92,0x5a,0x5a, + 0xc2,0xf2,0x22,0x52,0x2b,0x7a,0x5d,0xe1,0xd5,0x25,0x75,0x0f,0x8c,0xbd,0x3d,0x8f,0x60,0x6f,0xc1,0x97, + 0xde,0xfd,0xe2,0x3d,0xd4,0x74,0xbd,0x86,0x68,0x05,0x1a,0x18,0x66,0x62,0xde,0x65,0xa9,0xdd,0xd3,0xe7, + 0x5a,0x84,0x6c,0x9b,0x8d,0x28,0x20,0xf4,0x66,0x59,0x4d,0xed,0x8f,0xb2,0x31,0xd4,0x49,0x7b,0x98,0x50, + 0xc0,0x54,0xeb,0x75,0xb3,0xcb,0x26,0xa4,0xbb,0x78,0x0e,0x27,0xa3,0x89,0x23,0xa3,0x62,0xea,0x8e,0x9d, + 0xf3,0x06,0xb6,0xb1,0x45,0xd9,0x80,0x7c,0x65,0x1b,0x79,0x0f,0x47,0xbf,0xf7,0xd4,0xfb,0x5d,0x08,0xa4, + 0xb5,0x0b,0xdd,0x69,0x61,0x8f,0x4e,0x26,0xb1,0x17,0xe9,0x95,0xa5,0x04,0x15,0x8b,0xde,0x34,0xa5,0xd7, + 0xa8,0x23,0xaa,0x4e,0xf1,0xee,0x69,0xd8,0x4d,0x14,0xfb,0x87,0x9f,0xba,0x9e,0x9d,0xae,0x6a,0x31,0x70, + 0x2d,0xb4,0xe4,0xc7,0x6c,0x16,0xe7,0x40,0x24,0x70,0xbe,0x5e,0x57,0xb0,0xb4,0xd2,0x60,0x3d,0x2a,0xe2, + 0x6a,0x14,0xbe,0x23,0xf4,0xc2,0x27,0x08,0x8f,0x82,0x50,0x11,0xe6,0xda,0x8c,0x15,0x74,0x99,0xb1,0x9e, + 0x2d,0x3c,0x6c,0xfd,0xda,0xd2,0x26,0xb7,0x0c,0xd9,0x1f,0x8d,0x67,0xaa,0xe0,0xf6,0xf1,0xd0,0xf5,0xc9, + 0xdf,0x6a,0xeb,0xb5,0x50,0xb6,0xb0,0x21,0x33,0xd6,0xba,0xcd,0x89,0x20,0x39,0xbf,0x63,0xfe,0x0a,0xfc, + 0x66,0x3b,0xe3,0x9b,0x57,0x58,0xb8,0xc3,0x46,0x75,0x5b,0x53,0x93,0x14,0xd0,0x18,0x0d,0xeb,0x07,0xa9, + 0x81,0xc2,0x1a,0xb8,0x0d,0x74,0x61,0x92,0x1e,0xd7,0x27,0x27,0x00,0x50,0x1c,0xf5,0x33,0xa6,0x64,0x46, + 0x65,0x58,0xb1,0x1b,0x22,0x74,0x21,0xbf,0x85,0xd8,0xf8,0x31,0x96,0xbd,0xa0,0x87,0x1e,0x92,0xf0,0x45, + 0x47,0xc2,0x56,0x8c,0x3a,0x7b,0xae,0x4a,0x7a,0xdd,0xd9,0x8c,0x87,0x2f,0xfb,0xb4,0x51,0x0f,0xfa,0x8e, + 0xe3,0x51,0xe6,0x15,0xca,0x1c,0x85,0xad,0x7b,0x95,0x6f,0xe2,0x66,0x94,0xf9,0xed,0xe9,0x12,0xbf,0x85, + 0x9f,0x6b,0x92,0x49,0x10,0xfc,0x41,0xc3,0x9f,0x6b,0xd6,0x2b,0x48,0x5c,0x5b,0xdc,0xc4,0xde,0xb0,0x9f, + 0x76,0xc5,0x68,0xa3,0xcc,0xa8,0xe0,0x69,0x3b,0x75,0xd1,0xc4,0xa8,0x89,0xa1,0xa7,0xf7,0xbe,0x7f,0xe3, + 0x88,0x1d,0x91,0xd7,0xb4,0x99,0x16,0xcd,0xe8,0x7b,0xba,0x9c,0x0b,0x38,0x40,0x61,0xcc,0xb6,0x8a,0xe7, + 0x66,0xe6,0x3d,0x26,0xde,0x56,0x97,0x56,0x84,0x5e,0xd6,0xeb,0x55,0x35,0x5c,0xc1,0xd1,0x8e,0x0e,0x26, + 0xf6,0x4e,0xc4,0x1f,0x34,0xda,0x67,0x8d,0x07,0xec,0x47,0x0c,0xc6,0x40,0xfb,0x01,0x75,0x25,0x27,0x06, + 0xa2,0x69,0x3f,0x2e,0x6b,0xb1,0xe4,0x91,0xf5,0x65,0x80,0xbb,0xd9,0x0c,0xb7,0xf6,0x47,0x21,0xbe,0xe3, + 0x74,0xc0,0x5a,0xf4,0x07,0xa6,0xa4,0x2b,0x5f,0x08,0x25,0xfc,0x02,0x76,0x41,0x7a,0x3c,0x2e,0x08,0xee, + 0x4e,0x92,0x1b,0x64,0x89,0x9a,0xca,0x59,0x0a,0x95,0xa6,0x46,0x3e,0x37,0x80,0x22,0x8a,0x08,0xdf,0xd6, + 0x27,0x8a,0x3f,0xac,0xe9,0x43,0x80,0xed,0x28,0x8f,0xe5,0xfb,0x7c,0x33,0xd4,0xfd,0x4d,0xd2,0x0d,0x50, + 0xe6,0x2d,0x43,0xca,0x0b,0xcc,0xbd,0x3f,0x26,0x9b,0xf8,0xb9,0x81,0xc9,0x4c,0x33,0xb9,0xe0,0x33,0xd6, + 0xc4,0x74,0x31,0x63,0x7d,0x03,0xe3,0x98,0x18,0xcf,0x9b,0xfe,0x21,0xa4,0x32,0x04,0x7d,0x0c,0x16,0xc7, + 0x29,0xb1,0x5c,0xf4,0x87,0xc6,0x50,0x47,0xb4,0xde,0xf2,0x7d,0x4a,0x28,0x3e,0x8a,0xe5,0xb9,0xde,0x6c, + 0xba,0xc3,0x30,0x83,0xa0,0x03,0x32,0xaf,0xa8,0xbf,0x44,0xbb,0xea,0xc5,0x31,0xad,0x54,0x5e,0x2b,0x32, + 0xd3,0xc3,0x9e,0xc5,0xcf,0x41,0x15,0x70,0x10,0x0c,0x18,0xe8,0xc7,0xb9,0x5a,0x2d,0x61,0x1d,0x48,0x53, + 0x18,0x41,0x69,0xaf,0xc3,0x64,0x34,0x3a,0x0a,0x04,0x37,0x91,0xb3,0x8d,0x13,0xa0,0x30,0x87,0x71,0x9f, + 0x6a,0x06,0x8b,0xfc,0x8a,0x28,0x19,0x37,0x3e,0x3a,0xfb,0xea,0xc4,0x24,0x9b,0x29,0x4a,0x1f,0xd4,0xc3, + 0x14,0x6c,0x22,0x7f,0x6a,0x72,0x69,0xdc,0x54,0x09,0x37,0x33,0xa1,0x93,0x88,0x66,0x1d,0xb5,0x4c,0x24, + 0x70,0x00,0x3d,0x44,0xee,0xbd,0x89,0x80,0xa8,0x26,0x44,0xf1,0x70,0xba,0xde,0x21,0x2b,0xb7,0x31,0x9e, + 0xb8,0xbd,0xd5,0xe7,0x2d,0x63,0xe7,0x02,0xc8,0x16,0x03,0xa1,0xa1,0x28,0x47,0xa3,0xe5,0x60,0x7d,0x85, + 0xd2,0x19,0x83,0xbf,0x32,0x25,0x4a,0xaf,0x44,0x29,0x25,0xd2,0xe4,0xb4,0x08,0x4b,0x27,0x5c,0xa0,0x52, + 0x29,0x41,0x1f,0x8d,0x25,0xce,0x59,0xaa,0x80,0x92,0xf8,0x9b,0xfa,0xb2,0x91,0x67,0xdd,0xad,0xdf,0x1c, + 0x67,0x27,0xaa,0x4c,0x76,0x69,0xd5,0x14,0xb3,0xa5,0x10,0xa6,0xa0,0xd9,0x97,0xe1,0x23,0x11,0xa7,0xa9, + 0x7c,0xc0,0x27,0x20,0xe8,0x13,0x3a,0x1f,0xd1,0x50,0xa0,0x1d,0x21,0x83,0x68,0x94,0x12,0xef,0x15,0xbf, + 0xd4,0x32,0x2e,0x53,0x14,0x86,0xfb,0xbb,0xac,0x92,0x4e,0xe9,0xe7,0x4a,0xdc,0x54,0xc3,0x34,0x61,0x32, + 0xda,0x0a,0x14,0xd3,0xe8,0x26,0xed,0x33,0xdd,0x9b,0xc1,0x83,0xc9,0xb6,0x60,0x36,0x45,0x63,0xbc,0x2f, + 0xed,0x39,0x00,0x1a,0xf6,0x8e,0x46,0x18,0xb2,0xd3,0x24,0xb8,0x81,0x93,0x58,0xf6,0x64,0x8b,0x7c,0xc0, + 0x4a,0x2a,0x07,0x63,0xce,0xa1,0xd4,0x91,0xf7,0xdc,0x27,0x61,0x85,0x6b,0xef,0x33,0x27,0x9b,0x4f,0x5e, + 0x85,0x8d,0x0c,0x76,0x54,0x59,0x6a,0xa7,0x22,0x70,0x05,0x4a,0xca,0x22,0xcd,0x6e,0x77,0x49,0xe8,0x61, + 0x37,0x01,0x5c,0xc8,0xc3,0x30,0x25,0xd2,0xbf,0x9b,0x51,0x3b,0xb3,0x07,0xbb,0x7a,0xaf,0x3c,0xfb,0x26, + 0x8c,0xde,0xf1,0x86,0x5a,0x4b,0xcf,0x7e,0xd7,0xb6,0x78,0xf8,0xeb,0xe5,0x7e,0x74,0xcf,0xc3,0xe3,0xcd, + 0xf1,0x11,0x8d,0x2d,0x70,0x15,0xbe,0x74,0x07,0x7a,0xf7,0xd8,0x30,0x00,0xf7,0x4a,0x84,0x93,0xaf,0x8c, + 0x7f,0xaa,0x89,0xc6,0x51,0x39,0xc2,0xb2,0x78,0x50,0x19,0xc6,0xfd,0x15,0xcb,0xb2,0xcc,0x07,0x4e,0x92, + 0x62,0x05,0x01,0xb6,0xe9,0xb7,0xde,0x8a,0x37,0x0e,0x61,0x24,0xb4,0xbe,0x49,0x35,0xb8,0xb3,0x4c,0x89, + 0x95,0x6a,0x86,0xce,0x00,0xc8,0x2e,0x25,0xfb,0x00,0x3c,0x4e,0x97,0x54,0x61,0x36,0x65,0x5c,0x60,0xbf, + 0x2e,0x09,0x21,0x96,0x0f,0x72,0xd3,0xaf,0x12,0x11,0x42,0xaa,0x6b,0x1e,0x1e,0x4c,0x18,0xb1,0x23,0x64, + 0xad,0x2a,0x25,0x8d,0xeb,0x0e,0x3a,0x81,0xc5,0x4f,0xd4,0xab,0x4a,0x05,0xad,0x36,0x76,0xce,0xcb,0xf2, + 0x13,0xdc,0xd6,0x7f,0xd2,0x5d,0x76,0x83,0xf8,0xc9,0x1b,0xc4,0xfb,0x42,0xba,0xf6,0x9d,0xe8,0xcc,0xb9, + 0x65,0x3d,0x87,0x9d,0x2c,0x3f,0xbe,0x88,0x54,0x68,0xdb,0x7f,0x64,0x84,0xb6,0x81,0x36,0x95,0xf6,0xbf, + 0xa3,0x3e,0x3c,0xda,0xea,0xc2,0x23,0xaf,0x0b,0xbb,0x2f,0x20,0x8e,0x7a,0x5a,0xd0,0xfe,0xeb,0xf1,0x11, + 0x82,0xb3,0x39,0xed,0x68,0xad,0x60,0xc9,0x86,0xfa,0x5d,0x9a,0x68,0xc9,0x86,0x3f,0xc2,0xa8,0xae,0x4a, + 0xb4,0xd4,0x28,0x4b,0xe6,0x95,0xf1,0x0f,0x8f,0x86,0x73,0x23,0xc8,0x4d,0x9c,0x2c,0xb0,0xa1,0xe7,0xc6, + 0x09,0x71,0x1a,0x16,0xc4,0x35,0x27,0xa1,0x57,0xe5,0x87,0x0e,0xb7,0x4a,0xd5,0xb0,0x2d,0x44,0x5b,0x0f, + 0xa4,0x9d,0x09,0xad,0x7c,0xd2,0xce,0x8b,0x40,0x4b,0x50,0xd0,0x11,0xf0,0x3e,0x9f,0x60,0x35,0xf8,0x54, + 0x2b,0xd8,0x79,0x9d,0x35,0x2d,0xe0,0x2b,0xd0,0xe7,0x43,0x35,0xad,0x46,0x93,0x2a,0x8c,0xe2,0xba,0x82, + 0x81,0xcd,0x6e,0xd6,0xaf,0x5e,0xd1,0x8a,0xb0,0xc8,0x93,0xa2,0xf4,0xe9,0xc6,0x0a,0xe8,0xc6,0xdc,0x30, + 0xbe,0x43,0x9a,0x2d,0x00,0xbe,0x4b,0x59,0x52,0xa4,0xbc,0x45,0xa8,0x17,0x12,0x0b,0x0a,0xe1,0x21,0xf8, + 0x60,0xcb,0x20,0x3f,0xab,0xca,0x3f,0xe0,0x38,0x2d,0x36,0x51,0x8d,0xa6,0xd5,0xcd,0x79,0xdc,0xf8,0xec, + 0x58,0xce,0x50,0x5e,0xc0,0x02,0x90,0x0e,0x67,0x63,0x98,0x59,0xc0,0x7b,0x00,0x6e,0x80,0xb0,0xe0,0xd4, + 0xb4,0x4e,0xd3,0xa2,0x75,0xa8,0x73,0x4c,0x72,0x79,0x01,0x71,0xaa,0x24,0x2c,0x3b,0xf4,0x79,0xb4,0xf5, + 0x4d,0x49,0x5f,0x9d,0x70,0x00,0x84,0x88,0x66,0xfd,0xac,0x8a,0xe8,0xff,0x60,0x42,0x47,0x41,0xe5,0x2f, + 0xe8,0x1f,0x61,0x3b,0xd4,0x95,0xd6,0xc8,0x39,0xd9,0xb4,0x02,0x61,0x30,0x2b,0xf8,0xb8,0xde,0xdd,0xa2, + 0x61,0xac,0xe4,0xd9,0xd3,0x9b,0x39,0xd1,0xdc,0xd0,0xe1,0x83,0x42,0x83,0x5e,0xaf,0x1e,0x01,0x42,0x12, + 0xbf,0x86,0xcc,0x8a,0xb4,0xb9,0x69,0x04,0x1e,0x70,0x3d,0xfe,0x3d,0xd4,0xc2,0x04,0x6b,0xbf,0xaf,0x6a, + 0x45,0x07,0x3e,0x37,0x96,0xca,0xe9,0x4e,0x53,0x0f,0x6a,0x60,0xc2,0x14,0x11,0xd1,0x02,0xd7,0x15,0x90, + 0x33,0xdc,0x2d,0x61,0xa1,0x4d,0x47,0xfe,0x88,0xfe,0xd6,0xa8,0x1b,0xe7,0xa1,0x94,0x4e,0xfe,0xc0,0xb2, + 0xa8,0x8a,0xf8,0x75,0x36,0xbe,0xac,0xd5,0x6a,0x40,0xd4,0x78,0xa6,0x10,0x87,0x85,0x51,0x08,0x3d,0xc1, + 0xa7,0x8d,0xe8,0x23,0x7e,0x82,0x99,0x79,0x44,0xf0,0x49,0xa7,0xc8,0x84,0x6a,0x99,0x70,0x57,0x89,0xda, + 0x47,0x5d,0x93,0x28,0x72,0xfd,0x29,0x78,0x3d,0x52,0x90,0xa7,0x79,0x18,0xea,0xde,0x44,0xd2,0x8a,0x74, + 0xd0,0xb4,0xe0,0x2d,0xcc,0x0f,0xa1,0x1e,0xa2,0xa7,0x96,0x8a,0x6e,0xca,0x7e,0x19,0xa8,0x9a,0xcb,0x68, + 0x88,0x76,0xd8,0x54,0x6d,0xc1,0x11,0xc4,0x61,0x84,0x77,0x21,0xfd,0x1b,0x00,0x03,0xc2,0x02,0xc3,0xbd, + 0x11,0x95,0x14,0xe9,0x53,0x0e,0xf6,0x80,0xb4,0x0e,0x43,0x9e,0x9e,0x9a,0x66,0x03,0x3d,0x8e,0x1b,0x19, + 0x17,0xa4,0x0c,0xf4,0xc4,0x26,0x2e,0x53,0x9a,0xbd,0x9a,0x46,0x88,0x74,0xd9,0xfd,0x29,0xcd,0x02,0x3e, + 0x98,0x28,0xfa,0x44,0xd5,0xba,0x18,0x36,0x31,0x8b,0xbf,0x6a,0x37,0xaa,0xef,0x99,0x0b,0xd4,0x23,0xc3, + 0x8e,0x01,0x10,0x09,0xb5,0x00,0x6a,0xc6,0xb1,0xe7,0x88,0x62,0x02,0xb0,0x2f,0xd7,0x6b,0xcd,0xd7,0xf2, + 0x2b,0x9d,0x41,0xba,0x70,0xde,0x2d,0x9c,0xb7,0x0b,0xe7,0x28,0xbc,0xd9,0x3e,0xb0,0xbe,0xf5,0x64,0xae, + 0x62,0x65,0xcf,0xe2,0x59,0xc2,0x48,0xd8,0xd8,0xda,0x44,0xde,0x08,0x2c,0xdd,0x67,0x3f,0xfb,0xcc,0x5a, + 0x08,0xa6,0x3c,0xab,0x5f,0xb2,0x4e,0x77,0xbd,0xfe,0x01,0xf1,0x56,0xe4,0x05,0x2a,0xc5,0xec,0xf8,0x1d, + 0x6b,0x35,0xed,0xb9,0xfe,0x3e,0x3d,0x13,0xbf,0x7d,0x38,0x9a,0x0a,0xf5,0x43,0xdb,0x00,0x1e,0x00,0x86, + 0x18,0x06,0xd5,0xe1,0x71,0x76,0xff,0x6e,0x45,0x63,0xb1,0xbd,0x01,0xad,0xe0,0x8b,0x66,0xdd,0x07,0xbf, + 0x68,0xb3,0x83,0xae,0x70,0x21,0xfa,0x8c,0x7c,0xde,0x70,0x29,0xa0,0x55,0x79,0x25,0x2a,0x76,0x6b,0x80, + 0xf0,0xb4,0x23,0x4b,0xa6,0x4d,0xf3,0x6f,0xca,0xb5,0x13,0x5e,0x79,0x94,0xe8,0x8f,0xe6,0xdc,0x2a,0x46, + 0x0b,0x9c,0xee,0x04,0x76,0x22,0x0e,0x92,0xb7,0x8e,0x86,0x2d,0x93,0xcc,0x1b,0xce,0x9c,0xcd,0x3a,0xb9, + 0x6c,0x31,0xc8,0x95,0x2d,0xa8,0x5f,0x8a,0x37,0x3a,0x9b,0x49,0xfd,0xa8,0x32,0x22,0x6a,0x29,0x51,0x28, + 0x3e,0x4f,0x1b,0x9d,0xf9,0x5c,0x98,0xf0,0x59,0xbb,0xee,0x30,0xf0,0xf0,0x4f,0x2b,0xee,0x98,0x11,0xa1, + 0x69,0x69,0x24,0xf3,0xb5,0x69,0x52,0xf2,0xb6,0x40,0x15,0x2c,0x43,0x4c,0x9b,0xa6,0xaa,0xed,0x03,0xa1, + 0xaf,0xb2,0xb1,0x5e,0xc0,0x7e,0xa2,0x2a,0x8d,0xec,0x5c,0xac,0xe9,0x4a,0x27,0xd7,0x46,0xc2,0x7a,0x0d, + 0xd9,0xa5,0x28,0x7c,0x53,0xfe,0x20,0x0a,0x0b,0x03,0x06,0x6c,0x8b,0x61,0xe2,0xc4,0x1d,0x9f,0x10,0x52, + 0xe0,0xfd,0x54,0x7a,0x12,0xa0,0x5a,0x7f,0xc5,0xc8,0xac,0x86,0x9a,0x11,0x3f,0x28,0x3c,0x0c,0x9a,0x6c, + 0xb1,0x9c,0x13,0x8b,0x05,0xa8,0x2b,0x21,0xe6,0x1f,0x4d,0xb8,0x02,0x8d,0x24,0x26,0xe8,0x9a,0x16,0x67, + 0xaf,0xd7,0xf4,0x45,0x3c,0x31,0xf5,0x6f,0x6c,0x80,0xa2,0x95,0x60,0xa8,0xe2,0x78,0x75,0xa2,0x15,0x43, + 0x55,0xe6,0xdc,0x9d,0x91,0xec,0x22,0x80,0x38,0x29,0x41,0x76,0x1b,0x84,0xee,0xb6,0x41,0x94,0x48,0x98, + 0x1d,0xde,0x13,0xbc,0xc3,0x3c,0x3d,0x7e,0xe6,0x69,0x23,0x35,0xa7,0x76,0x0b,0x9c,0x76,0x60,0x1a,0x74, + 0xe9,0x08,0x9f,0x8b,0x66,0x29,0x26,0xce,0x87,0x9e,0x70,0x0c,0xb2,0x9a,0xf2,0x84,0x66,0xbf,0x47,0x5d, + 0x58,0x66,0x46,0xed,0x38,0xcc,0xf4,0x4e,0xd4,0xb4,0x69,0x34,0x8c,0x58,0xc5,0x3c,0xce,0x8b,0x94,0x79, + 0xdf,0xcf,0x51,0xbb,0x69,0x66,0x29,0x6d,0xa3,0x9a,0x1e,0x0b,0xd3,0xfc,0x5c,0x7f,0x4d,0xd4,0x96,0xe2, + 0xc6,0x0c,0x4d,0x6a,0xd8,0xf6,0xad,0x92,0x86,0x02,0x68,0xb7,0xee,0xac,0x33,0xbc,0x1e,0xdd,0x78,0x2f, + 0x20,0xe7,0xba,0xb3,0x75,0xc7,0xac,0xb2,0x3f,0x6f,0xe8,0xab,0xcb,0x61,0x35,0x6a,0xcd,0x26,0xb9,0x5c, + 0x0f,0x41,0xcd,0x34,0xf0,0x85,0x82,0x75,0xd6,0x16,0x68,0x18,0x42,0x5d,0x33,0xb8,0x9e,0x30,0x80,0xf7, + 0x52,0xd1,0xdd,0x4b,0xa0,0xf8,0x0a,0x1b,0xda,0xd2,0xc6,0x8e,0x28,0x40,0xf4,0x15,0x20,0x90,0xf7,0x03, + 0x43,0x81,0xd3,0x68,0x88,0x08,0xfa,0x8e,0x5e,0xd8,0x6d,0x92,0x19,0xc0,0x6c,0x01,0x3b,0x03,0x14,0x88, + 0x83,0x7d,0x1f,0x29,0x80,0x66,0x10,0x9a,0x44,0x35,0x3c,0xf0,0x3b,0x4c,0x1d,0x9e,0xc2,0x98,0xa8,0x6a, + 0x7c,0x0d,0xaa,0x6f,0xc6,0x93,0x4f,0x0f,0x88,0x3c,0x9b,0x12,0x45,0xf9,0x18,0x81,0xa3,0x1e,0x57,0x0f, + 0x4e,0x2d,0xc5,0xf1,0x98,0xbb,0x9b,0x10,0x10,0x9c,0x56,0xc7,0x8f,0xab,0x93,0x88,0x0a,0xaa,0xab,0x8a, + 0x85,0xb6,0x4c,0x7d,0x0c,0xaa,0x55,0x11,0x1a,0x4b,0xaa,0xcb,0xca,0x52,0x2e,0x55,0x72,0x6a,0x5f,0xa8, + 0x96,0xc4,0x56,0x89,0x42,0x86,0x9a,0xa6,0x9a,0xa0,0xd4,0xfe,0x54,0x25,0xe8,0xe8,0x51,0x4b,0xce,0xf2, + 0x27,0x84,0xb6,0xbf,0xc8,0x87,0x0a,0xeb,0x07,0x51,0xee,0x2e,0x42,0x7a,0x16,0xd1,0x2d,0x15,0xb9,0x4a, + 0x40,0xf7,0x99,0xd5,0xc3,0x77,0xa0,0xb9,0x2e,0x16,0xc3,0x6a,0x30,0xbe,0xc4,0x4a,0x64,0x15,0x01,0x55, + 0x01,0x69,0xf6,0x38,0xa7,0x93,0x6b,0x45,0x08,0x6a,0xba,0xb7,0x47,0xab,0x4e,0x7c,0x92,0x08,0x6a,0x18, + 0x1e,0x08,0xcf,0xab,0xdf,0xa9,0xd8,0x7b,0xe0,0xa5,0x8b,0xa6,0x2c,0xe1,0xeb,0xfb,0x3b,0x31,0x3e,0xbc, + 0x3e,0xb3,0x39,0xa1,0x8f,0xc0,0x5b,0x9d,0x95,0x45,0xd9,0xef,0x2b,0x28,0x60,0xb6,0x8d,0xf1,0xd8,0x04, + 0x8c,0xfa,0x43,0x00,0xb8,0x51,0x54,0xa8,0xce,0xb6,0xad,0x9e,0x25,0x1b,0xa1,0xf8,0x6e,0xd3,0xd4,0x14, + 0xf4,0xa9,0xd7,0xec,0xdc,0x36,0x2b,0x10,0xc9,0x1a,0xad,0x3e,0x99,0x54,0x31,0x0a,0x75,0xc7,0xaa,0xd1, + 0x8c,0xad,0xa8,0x0a,0xd3,0x89,0xb3,0x28,0x36,0x79,0x05,0xfe,0x8e,0x2a,0x9c,0xff,0x88,0x3a,0x47,0x20, + 0x4c,0xf3,0x65,0xca,0x23,0x2f,0x3e,0x33,0x5f,0x15,0xf8,0x3b,0xe2,0xbf,0xf1,0x59,0x74,0x6b,0x7f,0x9b, + 0x76,0x7f,0x67,0x3e,0xbe,0xdc,0x52,0x28,0xb1,0x91,0xdc,0x18,0xa7,0xee,0x8a,0x56,0xe1,0x27,0x59,0x2d, + 0x9a,0xf6,0xfe,0x74,0x2d,0xd8,0xb1,0x92,0x7b,0x16,0xdb,0x35,0xd7,0x30,0xa8,0xcd,0xa0,0x97,0x80,0xec, + 0x37,0x52,0x9e,0x3e,0xaa,0x71,0x9a,0xa0,0x46,0x34,0x17,0xde,0xb6,0x9f,0x66,0x4e,0x94,0x64,0xfc,0x05, + 0x59,0x45,0x04,0x99,0xab,0x42,0x64,0x28,0x6d,0x3c,0x1e,0xa9,0x6d,0x29,0x18,0xab,0x01,0x19,0x23,0xd3, + 0xa6,0xb9,0x73,0x29,0x9e,0xdc,0x22,0x1c,0x76,0xf6,0x2f,0x0e,0x65,0x66,0x7f,0x6e,0x71,0xf4,0x43,0x31, + 0x7a,0x9b,0xcd,0xe6,0xc8,0x29,0x2f,0x8b,0x1f,0xc4,0xbe,0x61,0x30,0xcb,0xe7,0x4d,0x56,0xf5,0x59,0x27, + 0xff,0x15,0xfd,0xe1,0xc0,0xe9,0xf8,0x36,0x51,0xdc,0x31,0x9d,0xe8,0xe1,0x46,0x6e,0x9c,0x1c,0x02,0xe4, + 0x2b,0x51,0x06,0x08,0x1f,0x3a,0x80,0xf8,0x14,0xb2,0xc8,0x61,0x3d,0xe4,0xd1,0xd4,0x2c,0x68,0xba,0xc8, + 0xa7,0xd8,0x47,0x4c,0xe7,0x7b,0x29,0x44,0x0f,0xd1,0x37,0x89,0x97,0x02,0xd1,0xec,0x29,0x0d,0xf6,0xd3, + 0x86,0x98,0x04,0x73,0xf8,0x80,0xeb,0xdb,0x85,0xe1,0xa0,0x91,0x93,0x41,0x56,0x49,0x1f,0x0a,0x64,0x4c, + 0xa4,0x61,0x23,0x30,0xe3,0x1a,0x7b,0x60,0xdc,0xaa,0xe1,0x08,0x5a,0x27,0x1b,0x6b,0x0c,0xe4,0x2d,0xf2, + 0x79,0x26,0x06,0x26,0x96,0xc1,0x05,0xc7,0xb4,0x2d,0x93,0x66,0x89,0xdf,0x76,0x60,0x20,0x2d,0x80,0xb7, + 0x1a,0x6e,0x6b,0x8e,0xa5,0x4a,0x42,0x77,0xa9,0x43,0x41,0xe5,0x83,0x94,0x85,0x35,0x15,0x3a,0x4a,0x9b, + 0x9b,0x83,0xae,0x3a,0xd9,0xfb,0xb6,0x01,0xe0,0x76,0xd5,0x5c,0x27,0x55,0x94,0xf9,0x15,0x95,0xfb,0x47, + 0x7e,0x3d,0xb9,0x21,0x6c,0xb7,0xec,0x60,0xfc,0xaa,0xea,0x4e,0x2f,0xeb,0x6e,0x2f,0x27,0x49,0x8d,0x0e, + 0xda,0xce,0x4e,0x88,0x5f,0x54,0x4e,0x12,0xab,0xe9,0x61,0x46,0x97,0x1f,0xe1,0xd9,0xcf,0xe1,0x0d,0x7c, + 0xd3,0x27,0x6f,0xe7,0x98,0xe0,0x5b,0xbc,0x63,0xef,0xd4,0xb0,0x52,0x98,0xbe,0x23,0xa2,0xcd,0x6c,0xd6, + 0x12,0x31,0xd6,0x98,0x94,0xad,0x78,0xcf,0x5c,0x84,0x17,0x21,0x5e,0x22,0x96,0x7a,0xe7,0x09,0xb6,0xdc, + 0x7a,0xdd,0xf8,0x2e,0xca,0xba,0x2a,0x53,0x49,0x0a,0xd5,0xc6,0x60,0x4c,0x40,0x33,0xcd,0x2a,0xe6,0xad, + 0xf0,0x1d,0x51,0x96,0x8d,0x09,0x69,0x0b,0x8d,0x1f,0x8a,0x5b,0xe3,0x9f,0x91,0x54,0xd1,0x71,0xdd,0xb3, + 0x34,0xa3,0xba,0x41,0xe9,0x18,0xc1,0x3b,0x5b,0x3a,0xa1,0x85,0x8f,0xab,0x9e,0x88,0x4d,0xaf,0x21,0x06, + 0x54,0x20,0x5b,0x11,0x81,0x0d,0xa8,0xc3,0x77,0x3c,0x92,0xf0,0xac,0x3b,0x1d,0x09,0x1d,0x21,0xb4,0x30, + 0x70,0x0f,0x03,0x82,0x27,0xc2,0xc6,0xda,0x24,0x8e,0xda,0x70,0x97,0x47,0x23,0xf6,0x4d,0x76,0xbe,0xab, + 0xc4,0x0e,0xe5,0x90,0xeb,0xc6,0xd5,0xe8,0xaa,0xa0,0x85,0x00,0x21,0x1d,0x77,0x89,0xff,0x6b,0xdb,0xa2, + 0x66,0x26,0x0b,0xf0,0xd7,0xe0,0x27,0xb7,0x15,0xde,0x34,0xe7,0x0b,0x64,0x0d,0xb5,0xc0,0xc0,0x1d,0x41, + 0xb9,0x48,0xf8,0x27,0x73,0xe2,0xec,0xd9,0xb1,0x92,0xf7,0xc0,0xb5,0xb0,0x72,0xf4,0xb2,0x40,0x91,0x88, + 0xa0,0xdc,0x27,0xc9,0x33,0xc3,0x1d,0xe8,0x07,0x16,0x21,0x0f,0x53,0x68,0xc5,0x69,0xd4,0xb0,0xe4,0xfe, + 0x50,0xf3,0x71,0x40,0xe8,0xb0,0xa6,0xf9,0x1d,0x11,0xe3,0x57,0x2e,0x90,0x50,0x43,0x00,0x61,0x5f,0xc0, + 0x7e,0xc7,0xba,0x0e,0xce,0xe0,0x27,0xa4,0x6e,0x72,0x60,0x94,0x14,0xf2,0x76,0xb0,0xd0,0xc2,0xcf,0x96, + 0x10,0x5f,0x84,0x08,0x29,0xc1,0x85,0xcb,0x82,0xd9,0xf7,0x63,0x7d,0x7e,0x13,0xe1,0x94,0x9f,0xb4,0xce, + 0x56,0x7c,0xc5,0x82,0x2f,0x4b,0x31,0x4e,0x84,0xda,0xaf,0x89,0xc7,0x77,0x21,0xbd,0x9c,0x51,0x57,0x8b, + 0x06,0x94,0xe3,0xa7,0x66,0xeb,0x9e,0xf7,0x55,0x96,0xa1,0x87,0x5b,0x69,0x60,0x44,0xb0,0xef,0x00,0xa3, + 0x86,0x3d,0xa4,0x73,0xb4,0xe9,0x2c,0x71,0x15,0x8d,0x1e,0xd3,0x9f,0xf8,0x0e,0xfe,0x84,0x97,0x59,0x28, + 0x9f,0x24,0x2d,0xe8,0x1a,0x48,0xbd,0x6f,0x19,0xc6,0x9f,0x15,0x80,0x7b,0xa7,0x45,0x35,0xb0,0xff,0x06, + 0xce,0xdc,0x22,0x5c,0x65,0xbd,0x2a,0x8c,0x61,0xe4,0xbb,0xf1,0x38,0xd8,0xcf,0xd4,0xee,0x51,0xd4,0x3a, + 0x7f,0x4e,0x2d,0xa9,0xa0,0xbb,0x77,0x99,0x69,0x0b,0x1a,0x62,0x55,0xf1,0x49,0xb3,0x1f,0x16,0xa3,0x60, + 0x0c,0x1f,0xe7,0x20,0x90,0xf0,0x41,0xde,0x94,0x5c,0x66,0x9e,0x60,0xf6,0x56,0xf6,0x5a,0x82,0x93,0x3a, + 0xfe,0x92,0x09,0x3a,0x8e,0x17,0xab,0xd1,0xa9,0xf3,0x02,0xe0,0xe4,0xab,0x4c,0x2b,0x53,0xf7,0xd1,0x70, + 0x65,0x85,0x7b,0x57,0xa6,0x35,0xcf,0xdc,0xcc,0x76,0xc0,0xd9,0x5a,0x89,0x35,0x1c,0xcc,0xad,0x60,0xbf, + 0x95,0xd7,0xaf,0x69,0x28,0x89,0xb7,0x17,0x3f,0x79,0x6c,0x0a,0xd4,0xf0,0x4d,0xe4,0xe8,0xfa,0x52,0xfe, + 0x8c,0x18,0x01,0xe1,0x29,0x8a,0x3d,0xfe,0xab,0x12,0xf9,0x99,0xa7,0xe9,0x23,0xd4,0x09,0xf9,0xe3,0x90, + 0x35,0x7b,0xf9,0xe8,0xf8,0xc4,0xe8,0xa8,0x73,0xed,0x0d,0xbe,0x0d,0x46,0x77,0x32,0xf1,0x0a,0x1b,0x97, + 0xc9,0x69,0x46,0x6d,0x8c,0x0b,0x8e,0x8b,0x3e,0x86,0x74,0x8c,0x7e,0xe6,0xc9,0x39,0xa7,0x36,0xc9,0x05, + 0xff,0xfe,0x9e,0x5c,0xe3,0x27,0x4f,0xc6,0xf8,0x59,0x24,0x63,0x4e,0x9d,0x25,0x0b,0xfe,0xfd,0x94,0x9c, + 0xf1,0xef,0x69,0x72,0xcd,0xbf,0x17,0xc9,0x27,0xfc,0x10,0x07,0x87,0x78,0x19,0xe3,0x55,0x92,0x73,0xf2, + 0x59,0xf2,0xc9,0xeb,0xc1,0x63,0x99,0x34,0x5f,0x48,0x48,0x0c,0xb2,0x06,0x33,0xf1,0xa6,0x60,0x37,0x23, + 0x1d,0xd1,0x54,0xf4,0xbb,0x8d,0xbc,0x58,0x6b,0xb0,0x4a,0x67,0xf2,0x49,0x9d,0xe8,0xd8,0xa1,0x73,0x1d, + 0xe3,0xa5,0x4e,0x64,0x1b,0x2e,0x0b,0x13,0x98,0x13,0x27,0x11,0x1b,0xb0,0x11,0xc5,0x93,0xea,0x77,0x0e, + 0x77,0x88,0x6c,0xc6,0xe3,0x3d,0xc4,0x71,0x91,0xb1,0x1d,0xc2,0xa6,0x6d,0xd7,0xa9,0x89,0xa2,0x5c,0x1c, + 0xe1,0x52,0xa1,0x01,0x11,0x35,0x05,0x1e,0x71,0xbb,0x93,0xe1,0xc4,0xb8,0x06,0x9a,0x9d,0x93,0xa4,0xca, + 0x3b,0x2f,0x12,0xd7,0x64,0x18,0xa9,0xad,0x33,0x09,0x66,0xdd,0xee,0x0d,0x43,0x40,0x4c,0x89,0x71,0x2d, + 0xb6,0x75,0x23,0x4d,0x75,0x6e,0x05,0x33,0x31,0xd2,0x92,0xf7,0x1c,0x62,0x5f,0x23,0xde,0x95,0x3d,0x2f, + 0x4b,0x36,0x7c,0x72,0xe6,0x7a,0xae,0x46,0xe5,0x49,0x44,0x12,0x1a,0x53,0xb9,0x89,0x6f,0x6f,0xc3,0xa8, + 0x5a,0xda,0x8d,0x78,0xb4,0xcc,0xc3,0xec,0x16,0x93,0x63,0xd6,0xb4,0x8a,0xd9,0xb1,0x67,0x7b,0x86,0xf9, + 0xd5,0x04,0x8f,0xe8,0x56,0x32,0x48,0xb2,0x78,0x28,0x2b,0xea,0xa3,0x45,0x3d,0x63,0xf8,0x07,0x8a,0xfd, + 0x9d,0x9c,0xfb,0xc9,0xca,0xc8,0xe6,0xa8,0x7c,0x9f,0x8d,0x87,0x9e,0x90,0x39,0x33,0xf0,0x90,0x9a,0xe5, + 0xd3,0xc8,0xd3,0x5a,0x86,0x5e,0x80,0xab,0x4a,0xbc,0x91,0x71,0x44,0x51,0x41,0x56,0xd4,0xb0,0xdc,0x51, + 0x3f,0xc3,0xb5,0xd6,0x09,0xd7,0x5c,0x9a,0x16,0xcb,0x99,0xd0,0xb2,0x53,0xaf,0x8c,0x49,0x1a,0xea,0x3a, + 0x11,0x60,0x88,0xf0,0x8c,0xae,0x55,0xbf,0x75,0xea,0xf5,0x52,0x59,0x4e,0x26,0xa2,0x3e,0x5e,0x96,0x3a, + 0x32,0x2a,0x0b,0x97,0x94,0x88,0x04,0x9d,0x50,0xcd,0xca,0x07,0x5c,0x33,0xef,0x19,0x51,0x55,0x8d,0xa3, + 0xaa,0xb2,0x07,0x44,0xbd,0x10,0xda,0x63,0xa4,0x7d,0x87,0x0a,0x4d,0xb2,0x0f,0x7c,0x2a,0x85,0xd1,0x46, + 0xcd,0x93,0xd3,0x96,0x36,0xc6,0xf5,0x3f,0x81,0x5c,0xb5,0x24,0x38,0x5f,0xaf,0x57,0x21,0x2b,0x80,0x3a, + 0x45,0xdb,0x93,0xc4,0x04,0x99,0x44,0x0f,0x43,0xbf,0x42,0x0e,0x7a,0x32,0x4d,0xaa,0x70,0xae,0x66,0xce, + 0xe5,0x21,0xc4,0x42,0xf4,0xd9,0xef,0x4c,0xd9,0xcb,0x71,0x94,0xf9,0x73,0xba,0xb7,0x27,0xa9,0x5c,0x45, + 0xdc,0x84,0x53,0x27,0xfe,0x8c,0x7a,0xe3,0x2d,0x7b,0x05,0xf8,0x43,0x58,0x5e,0x75,0x92,0xb8,0x2e,0x85, + 0xba,0xcc,0x5a,0xfb,0xa3,0xa0,0x31,0xeb,0x0c,0x18,0x04,0x70,0x31,0xb7,0x7c,0xed,0xd5,0xe3,0xa2,0xfa, + 0x1d,0xd3,0x04,0xc0,0x9a,0x12,0x43,0x30,0x4f,0xaf,0x47,0xb6,0x20,0x4d,0x45,0x4c,0xec,0xe8,0x7b,0x89, + 0x78,0xe6,0xab,0xe2,0x3a,0x03,0xcd,0x3c,0xe0,0x0b,0xfd,0xcf,0x65,0x26,0x95,0xae,0x79,0xbd,0xbe,0x7f, + 0x78,0xa8,0x3b,0xa6,0xc3,0xa8,0xc1,0x63,0xfd,0xaf,0xb4,0x20,0x57,0x44,0x70,0x55,0xe6,0xcb,0x08,0x48, + 0x6c,0xf7,0x48,0xd9,0xf6,0x46,0xad,0x11,0xc6,0xee,0xfb,0x8d,0x83,0x3d,0xa3,0x56,0xd8,0x84,0x73,0x42, + 0xc3,0x2b,0xda,0x3c,0x16,0x8e,0x2f,0x92,0xb9,0x5a,0x24,0xa5,0x3a,0x23,0x9c,0x77,0x4d,0x07,0xca,0x98, + 0xce,0x96,0x4b,0x3a,0x0c,0x08,0xd3,0x5d,0xb6,0x44,0x8f,0xc9,0x85,0x49,0x78,0x99,0x11,0xaa,0x97,0x40, + 0x7a,0x0b,0xa5,0x9b,0x20,0x8e,0xde,0x20,0xfa,0xf8,0x5a,0x35,0xe9,0x59,0x3c,0xde,0xa8,0xcb,0x61,0x99, + 0x94,0x4c,0xa6,0xbf,0x06,0x9a,0x50,0x1c,0x05,0x98,0xe8,0xd7,0xb9,0x67,0xa4,0xe9,0x71,0x52,0x88,0x12, + 0x8d,0x5c,0x90,0x81,0xfc,0xc0,0x07,0x09,0xd1,0x8f,0xcc,0x64,0x07,0x2c,0x71,0xee,0x14,0xc8,0x20,0xf0, + 0xa2,0x12,0x79,0x01,0x17,0xde,0x61,0x58,0xc8,0xd9,0xc3,0x72,0xe0,0xa5,0xa1,0x08,0x23,0x56,0x68,0xe8, + 0x2f,0xb8,0x2e,0x6d,0x4c,0x52,0x0c,0xb4,0xfb,0x9e,0x50,0x7e,0x43,0xea,0x1f,0x51,0x78,0xd1,0x08,0x7f, + 0x93,0x63,0xf3,0x05,0x48,0xa6,0xd3,0x74,0xf2,0xc9,0x9e,0xd4,0x5c,0x28,0xe6,0x42,0xdd,0x32,0x1b,0x5a, + 0x3f,0x43,0xdb,0x97,0x42,0x1d,0xcf,0xdc,0x6e,0x6f,0x05,0xc9,0xb2,0x05,0x9d,0xf9,0x16,0x21,0xd3,0xd4, + 0x62,0x8e,0x1b,0x04,0x0e,0x2e,0x84,0x82,0x85,0xe3,0xb6,0x2b,0xd6,0x84,0xb0,0xb4,0x69,0xc2,0x95,0x23, + 0x98,0xe6,0x4c,0xdd,0x9a,0xf8,0x9b,0x44,0xe3,0xcf,0xa3,0xe1,0xf7,0x84,0xf2,0x57,0x8a,0xb6,0x0e,0x68, + 0xb0,0xf5,0x1a,0xaf,0x13,0x79,0x3d,0xb2,0xc4,0x6a,0xbd,0xd9,0x40,0x3a,0xae,0xb1,0x9e,0xe9,0x90,0xe9, + 0x70,0x3a,0x77,0x66,0xd2,0xde,0x72,0xb5,0xe9,0x80,0xcc,0x0e,0x58,0xf7,0x39,0x6d,0xf7,0x34,0x6a,0x49, + 0xc6,0x27,0x84,0xd1,0x56,0x27,0xc9,0xb3,0x70,0x45,0x9d,0xe1,0xf3,0x5e,0x93,0x6a,0x40,0x4c,0x3c,0x56, + 0x82,0x8d,0x87,0x38,0xad,0xcc,0xab,0x42,0x0e,0xd7,0xe8,0x72,0xe4,0x95,0xa7,0x77,0xce,0x3c,0xea,0x63, + 0x9c,0x4b,0x34,0xe5,0x6c,0x65,0x42,0x48,0x2f,0x1d,0x08,0x75,0xeb,0xd9,0x14,0xcc,0xe9,0x80,0x54,0x9e, + 0xdb,0xd1,0x96,0x5a,0x6f,0xe6,0x1f,0xab,0x6a,0xe6,0x99,0xd0,0xa7,0x70,0xb5,0x64,0x7d,0x45,0x48,0xa5, + 0x00,0xf8,0xd0,0xaa,0x0b,0xc9,0x03,0xf8,0xe2,0xcc,0x44,0xca,0xd0,0xfe,0x9c,0xc1,0xdc,0x65,0x26,0xc7, + 0xa4,0x74,0x72,0x0a,0x6a,0x89,0x45,0xd3,0xf8,0xa5,0x17,0x71,0x69,0x78,0x5d,0x28,0x7f,0xda,0x53,0xc4, + 0x20,0xa2,0xcd,0xa6,0x41,0x60,0x49,0xe5,0x98,0x01,0x2d,0x31,0xaf,0x4b,0xa6,0x07,0xb8,0xa1,0x65,0xb4, + 0xd9,0xf5,0x71,0x7a,0x66,0x14,0x91,0x99,0xd5,0x41,0x76,0x6c,0x10,0x9e,0x54,0xbe,0x6c,0x54,0xd3,0xae, + 0x4f,0x2a,0x11,0x6b,0xca,0x57,0x10,0xff,0xe7,0xc9,0x73,0xb8,0x27,0x0d,0x6d,0x0a,0xa4,0x7c,0x7d,0x02, + 0x61,0x0f,0xa2,0x35,0x2c,0x64,0xf6,0x11,0xbe,0xaf,0xfa,0x91,0x80,0x2b,0x27,0x22,0x84,0xb8,0x61,0x86, + 0x32,0x34,0x7b,0xee,0xc1,0xbd,0x84,0x38,0x9d,0x58,0x7d,0x88,0xf8,0x57,0x04,0x17,0xab,0xec,0xc0,0xe2, + 0xff,0x03,0x22,0xe7,0x41,0x0a,0xec,0x87,0xe7,0xa3,0x80,0x5e,0xce,0x99,0xa9,0x28,0x55,0xaf,0x5f,0x47, + 0xaa,0x6e,0x1e,0x13,0xaa,0x8a,0x2b,0x65,0x0d,0x9b,0xe2,0x99,0xb2,0x24,0x66,0x3c,0x65,0xc4,0x34,0x71, + 0x98,0x8a,0x98,0x75,0xc2,0xae,0xcc,0xf1,0x5f,0xa8,0x85,0x3a,0x53,0xd7,0x6a,0xac,0x2e,0x3d,0xdb,0x6a, + 0xc4,0xb8,0xd7,0xe4,0x0e,0x91,0x4d,0x46,0x5d,0xd9,0xe6,0x5b,0x52,0x36,0x7b,0x4b,0x61,0xc8,0x10,0x4e, + 0x12,0x6c,0x83,0x94,0x88,0x7c,0xe9,0x52,0x44,0x0b,0xbc,0x92,0x8c,0x57,0x95,0x27,0x73,0xce,0x5b,0x44, + 0x54,0x43,0x5f,0x83,0xd2,0x48,0x8d,0xbd,0x83,0x55,0xc5,0x12,0x1a,0x1e,0xb6,0x0a,0xe4,0xac,0x61,0x47, + 0x5c,0x32,0xf0,0x6a,0xc4,0xc1,0xfa,0x25,0x79,0x97,0xf1,0x16,0x9f,0x0e,0x3b,0x9d,0xac,0xfb,0x0f,0x5f, + 0x44,0xf8,0x07,0x54,0xa7,0x10,0x7d,0x10,0xdc,0xf8,0x94,0x2c,0xa1,0x78,0x91,0x94,0xc5,0x72,0x0f,0x80, + 0xf5,0x7e,0xc2,0xcd,0x4e,0x30,0x65,0xaa,0x46,0x44,0xdf,0x84,0xab,0xa4,0x8e,0x46,0xc7,0x9f,0x68,0x98, + 0x27,0x1d,0x23,0xdb,0x95,0x0b,0x47,0x45,0x44,0x84,0x0b,0x20,0x83,0xb9,0x44,0x2f,0x11,0x48,0x46,0xe4, + 0x4e,0x30,0x85,0x2e,0x7d,0x53,0xe8,0x8c,0x26,0xac,0x3c,0xae,0x4f,0xa2,0x3e,0xff,0x55,0x22,0x6e,0xe8, + 0x1c,0x9b,0x1d,0x13,0x1d,0x65,0x83,0x81,0x9c,0x74,0xac,0xf2,0x27,0xd1,0xc8,0xb8,0x68,0x7d,0x73,0x48, + 0x23,0xfc,0x36,0xa4,0x1a,0xf3,0x70,0xa2,0x60,0x76,0xc2,0xfe,0xf4,0xc4,0x28,0x12,0x99,0x46,0x23,0xa3, + 0x99,0xf9,0x36,0xe4,0xe8,0x16,0x33,0xa0,0xa6,0x4f,0xe1,0x9c,0x95,0x6b,0xfb,0x13,0xca,0x13,0x45,0x36, + 0xee,0xa7,0xd2,0xe1,0xfb,0x09,0x2f,0x78,0x1a,0xc1,0x19,0x2d,0x60,0x14,0xc3,0xe6,0x71,0x84,0x2a,0x46, + 0x9d,0x0a,0x10,0x88,0x4a,0xac,0x19,0xe4,0xab,0xf0,0x13,0xf0,0x61,0xfc,0x2d,0xfd,0x95,0x36,0xbb,0x1f, + 0x48,0x73,0x31,0x21,0xe3,0xd2,0xca,0xc9,0x78,0xe1,0x27,0xd0,0x46,0x32,0xc9,0x31,0x01,0x9f,0x2a,0xc0, + 0xc0,0x70,0xc5,0x6c,0x2b,0xb1,0xdf,0x17,0x00,0xf3,0x60,0x3f,0x95,0x81,0xd1,0xdf,0x71,0x60,0x3a,0x8b, + 0x46,0x1d,0xde,0xdb,0xd0,0xba,0x68,0xd9,0x4f,0x8c,0x65,0x7c,0x56,0xb1,0xc9,0xc6,0x5f,0xd4,0xab,0x6c, + 0x73,0xed,0x84,0x44,0x2c,0xbc,0x4a,0x96,0x1f,0x79,0x09,0x07,0xa6,0x9e,0xac,0xe3,0x13,0x95,0x79,0xe6, + 0xea,0x6c,0x1d,0xb2,0x25,0x1e,0x2d,0xa3,0x51,0x38,0x4b,0xf2,0xc1,0x9d,0x8b,0x82,0x0e,0x56,0x44,0xab, + 0x92,0xa7,0x41,0x51,0xb3,0x2c,0xe8,0x8c,0xc8,0xa6,0xf4,0x0c,0x01,0x5d,0xeb,0x25,0x02,0x21,0x10,0xbe, + 0x99,0x43,0x32,0x96,0xd7,0x6f,0xb3,0x3a,0xab,0x88,0xec,0xa1,0x6c,0x4a,0x1d,0x69,0x6c,0x42,0x59,0xec, + 0xc7,0xfb,0x66,0x9e,0x36,0x08,0x6c,0xa1,0x3f,0xc6,0x77,0xd8,0x7f,0x6d,0xfc,0x91,0x33,0xc1,0x9a,0x3c, + 0x09,0x73,0x4f,0x42,0x67,0x51,0x51,0x1d,0x80,0xbe,0x1c,0x11,0x0b,0x34,0xa5,0x6f,0x73,0x1c,0x37,0x51, + 0xac,0x9b,0x29,0x7b,0x6b,0x8b,0xe2,0x79,0x42,0xc5,0x4b,0x29,0xee,0x89,0x42,0xe7,0x18,0xa5,0xe7,0xa8, + 0x52,0x85,0xb9,0x65,0x69,0x72,0xf8,0x85,0x95,0xc4,0x21,0x95,0x55,0x96,0x9f,0x15,0xaf,0x8d,0x3b,0x33, + 0x4d,0x0a,0xc1,0x00,0x6f,0x7e,0x83,0xee,0x58,0x6a,0xd9,0xd0,0x17,0x06,0xa1,0x79,0xb6,0xd8,0x1c,0x90, + 0xca,0xe5,0xd8,0xcd,0xf5,0x60,0xc2,0x1b,0x4c,0x73,0x6c,0xae,0x00,0x6d,0x36,0xa2,0x7f,0x56,0x1a,0xce, + 0x88,0x03,0x5b,0x0d,0xd8,0x52,0xa1,0x10,0xcc,0x46,0xfb,0x9c,0x7b,0x48,0x98,0x9c,0x89,0xf1,0x79,0x14, + 0x03,0xe5,0x6c,0x3c,0x4c,0xe6,0x79,0x67,0xf8,0x11,0xe7,0xac,0x98,0x80,0x15,0xb3,0xf5,0x6a,0x99,0x55, + 0xe6,0x04,0x42,0x39,0x9d,0xc2,0x24,0x08,0x9b,0x9e,0xf2,0xbb,0xb1,0x94,0xb8,0x69,0xbf,0x27,0xc6,0xc1, + 0xa4,0x6b,0x6d,0x8d,0x50,0x6c,0x8e,0x10,0xc1,0x99,0x26,0xcc,0xa6,0x71,0x7c,0x03,0xe9,0x58,0x67,0x29, + 0xb1,0xfc,0x3a,0xc5,0x1e,0x90,0xa5,0xd1,0xd7,0x97,0x27,0xbb,0x62,0x0b,0x09,0x61,0x00,0xfb,0x48,0x22, + 0x84,0x4c,0x03,0x71,0x76,0x8f,0x35,0xee,0x96,0xe8,0x4a,0x93,0xb0,0x84,0xd2,0x8a,0xa4,0x2b,0x2f,0x1d, + 0x15,0x31,0x6b,0xd7,0xb7,0xec,0xe0,0xc4,0x09,0xc1,0xf6,0x45,0x94,0x27,0x99,0xaf,0x3c,0x09,0x1b,0x27, + 0xc4,0x05,0xd9,0xf9,0x4d,0x72,0x48,0x6b,0xd2,0x4e,0x7b,0x70,0x88,0x05,0xd2,0x11,0xb9,0x90,0xe0,0xdc, + 0xe2,0xdc,0x6e,0x2b,0x8c,0x70,0x5e,0x61,0x8c,0x9e,0xd3,0xfd,0x86,0xbd,0xdb,0xe1,0x1d,0xdc,0x9d,0x34, + 0x3a,0xb0,0x42,0x6f,0x01,0x93,0xe7,0x50,0x3c,0xb7,0xcb,0x68,0xb3,0x2b,0x8e,0x38,0xe3,0x36,0xca,0x71, + 0xc3,0xa9,0x27,0x09,0x42,0xa1,0x6c,0x1b,0x0f,0xfc,0x96,0xd9,0x50,0x24,0x63,0xf8,0xf5,0xb7,0x8c,0x2c, + 0x5f,0xb4,0x4c,0x21,0xd8,0x13,0x11,0x67,0x7a,0x87,0x68,0x60,0x27,0x4c,0xef,0xab,0xa7,0x59,0x8b,0x3e, + 0xe9,0xae,0xce,0xc8,0x77,0x71,0xff,0xe6,0xe0,0x28,0xde,0x56,0xcb,0x8c,0x7c,0xe7,0xfc,0x4e,0x69,0x68, + 0xe5,0xd4,0x6e,0x68,0xe3,0x1d,0x48,0xc4,0xaf,0x13,0xe0,0x76,0x13,0xef,0xa0,0x90,0x50,0xd5,0xec,0x9d, + 0xda,0x68,0xb9,0xb8,0x27,0x41,0x7c,0xd3,0xb1,0x06,0x60,0x8d,0x28,0xc3,0x29,0x74,0x2d,0x0c,0x9e,0x63, + 0xc6,0x73,0x5d,0xb8,0x34,0x11,0x75,0x61,0xdf,0xce,0x26,0x8d,0x9a,0x3b,0x78,0x01,0xa1,0xd8,0x96,0x61, + 0xd1,0xb0,0x86,0xac,0x98,0x0f,0xfb,0xe7,0xa0,0xc8,0x4a,0x76,0x12,0xdc,0x78,0xe2,0x9e,0xe7,0x5b,0x6a, + 0x05,0x36,0xb9,0xdf,0xcd,0xd9,0x35,0x8b,0x51,0x0c,0x3c,0xd3,0xf0,0xbb,0x5e,0xe7,0xae,0x85,0xe7,0x9a, + 0x58,0x1e,0xdc,0x99,0xd2,0x10,0xab,0x12,0xbe,0x59,0x99,0x55,0xf1,0xcf,0xf9,0x0e,0x4a,0xcf,0xdc,0x3f, + 0xf3,0x3d,0xb0,0x6f,0x44,0x9e,0xfc,0x18,0x2a,0x81,0xf8,0x19,0xef,0x79,0x97,0xa0,0x0a,0xff,0x8d,0x8e, + 0x5a,0x2e,0x05,0x1b,0x32,0x7e,0x22,0xd2,0x42,0x3f,0x21,0x8a,0x31,0x7e,0x4f,0x62,0xfd,0xe0,0xdb,0xef, + 0xb7,0x97,0x3f,0x1b,0x35,0xa3,0x6c,0x3f,0x40,0x78,0x9a,0x38,0x8b,0xc1,0x1f,0x7a,0xc6,0xdd,0xaf,0x7c, + 0x00,0xdb,0x02,0x94,0xbe,0x63,0x90,0x26,0x0b,0x31,0xfe,0x68,0x77,0xaa,0xd2,0x69,0xe7,0xf2,0x07,0x25, + 0xef,0x50,0x22,0x77,0x13,0xd4,0x89,0x8d,0x07,0x22,0x8b,0x2f,0x5a,0x83,0x40,0x00,0xff,0xf7,0x13,0xea, + 0x45,0xa4,0xe8,0xb7,0xf0,0x76,0x25,0xeb,0x63,0xba,0xad,0x09,0xba,0x0c,0x82,0x61,0x4b,0x12,0x97,0x69, + 0xdf,0xfd,0xb0,0xd1,0x31,0x72,0x51,0x5d,0xe3,0x57,0xc7,0x1b,0xb8,0x17,0xa0,0xdb,0x36,0xed,0xfe,0xb0, + 0x57,0xdc,0x7a,0x50,0x5f,0x9c,0x05,0x71,0xb0,0x48,0x9b,0x73,0xb6,0x29,0x1a,0xc9,0xe3,0x96,0x62,0xe8, + 0xad,0xf7,0x69,0x4f,0x3b,0x36,0x32,0xde,0xef,0xab,0xac,0xba,0x7e,0x97,0x41,0xdb,0x5c,0xca,0x5d,0x31, + 0xb7,0xc5,0xbb,0x9c,0xe6,0x17,0x41,0xcb,0x42,0xef,0xa7,0xce,0xfe,0x60,0x83,0xca,0x2a,0x9b,0x75,0x1c, + 0x80,0x8c,0x53,0x75,0xee,0x7b,0x68,0x1b,0xd0,0x04,0x56,0x80,0xef,0x75,0x09,0xb3,0x78,0xfa,0xb6,0x1e, + 0x76,0xb5,0x26,0x25,0x1b,0x3b,0xcd,0xf9,0x17,0x87,0x3d,0x7e,0x71,0xb0,0xe2,0x50,0xc5,0xa3,0xa6,0xd9, + 0x63,0xd7,0xfe,0xf3,0xe2,0x59,0x59,0xf5,0xd6,0x82,0xbf,0x16,0x4d,0xe4,0x84,0x83,0xf7,0xf6,0x38,0x89, + 0xb1,0xb0,0xa9,0x9b,0x60,0x42,0x1e,0x72,0x0f,0x58,0x1f,0x89,0x8c,0xda,0xc5,0xbf,0x02,0x05,0x87,0xe3, + 0x9d,0x7e,0x59,0x90,0x24,0x7b,0x50,0x1f,0xf7,0xbe,0xeb,0x37,0xab,0xf4,0x9c,0x6d,0x58,0xa3,0x2d,0x4f, + 0x39,0x4a,0x0a,0x51,0x01,0xfc,0xdc,0x95,0xac,0x40,0x19,0x27,0xd2,0x11,0x3e,0x5d,0x81,0x36,0x5b,0x81, + 0x1c,0x2a,0xb8,0x1a,0x86,0x95,0x9e,0x73,0x11,0x78,0x26,0x8e,0x15,0xaf,0x58,0x15,0x07,0x55,0x2c,0x3b, + 0x8d,0x7d,0xa6,0x8c,0x15,0x17,0xc2,0x78,0x8e,0x96,0x3e,0x67,0x6f,0x45,0xfa,0x21,0x3e,0x90,0x07,0x0c, + 0x5a,0x02,0xa3,0x79,0x08,0x19,0xd2,0x1b,0x84,0xb1,0x3a,0x2f,0xe7,0xc4,0xa3,0x73,0x0d,0x2d,0x49,0x13, + 0xc6,0xe9,0x27,0x80,0xee,0x6d,0xa7,0x68,0xb9,0x9b,0x6f,0x9c,0x9f,0x89,0x68,0xc2,0x2a,0x8f,0xc5,0x03, + 0x0e,0x9b,0x29,0x27,0xb2,0x21,0x7f,0x90,0x54,0xc3,0xfd,0xfd,0x9c,0xb6,0x2b,0x0c,0x14,0xf3,0x13,0x4d, + 0x46,0x87,0x29,0x0e,0x78,0xe7,0x46,0xe9,0xb9,0x95,0x7c,0xd0,0x30,0xa9,0x23,0xd7,0x79,0xde,0x5c,0xeb, + 0x75,0xd3,0x4d,0x6a,0xcf,0xbb,0x81,0x64,0xe1,0x83,0x13,0xc4,0xcf,0xb8,0x80,0x4b,0x5e,0x23,0x0f,0x75, + 0xf2,0x5d,0xb6,0x5d,0xab,0x0b,0x1a,0x00,0xfe,0x8a,0x4a,0x6c,0x35,0x82,0xcb,0x89,0x4d,0x89,0x15,0x91, + 0x1a,0x44,0xfa,0x6a,0x16,0xaa,0x10,0xd9,0x4a,0x95,0xd4,0xc2,0xc7,0x4f,0xf0,0x53,0x8d,0x68,0xd6,0x68, + 0x8a,0x3f,0x42,0xe4,0x95,0x18,0x2f,0xdb,0x3f,0xc0,0xd3,0x6a,0x15,0x67,0xa0,0x70,0x21,0x81,0xca,0x61, + 0x13,0x01,0xec,0x4f,0x3f,0x6e,0x5f,0x89,0xbc,0x79,0xba,0xb7,0x37,0x37,0x40,0x4d,0x9c,0x89,0x7c,0x0d, + 0x87,0xb4,0xbe,0x6f,0xf3,0x82,0x68,0x70,0xfe,0x66,0x65,0xbf,0xc1,0x16,0x5e,0xb5,0x22,0xce,0xcc,0xfa, + 0xe4,0xdf,0x62,0x7b,0xb7,0xf2,0x2d,0xee,0xa8,0xad,0x15,0xc6,0x11,0x98,0x6a,0xa5,0xc9,0xcd,0xb0,0x1c, + 0xfd,0x00,0x67,0x28,0x49,0x0e,0x20,0x67,0x9e,0x85,0x6c,0xf1,0x3f,0xb7,0x51,0x39,0xb8,0x00,0xa2,0xfb, + 0xe9,0xa0,0x7e,0xb7,0xb6,0x38,0xef,0xb4,0x38,0xe7,0x16,0xbb,0x93,0xa0,0x5b,0x66,0x8e,0xdb,0xce,0x77, + 0x1d,0x4d,0xd8,0xa5,0x8c,0xbe,0xe2,0x69,0x0f,0x56,0x85,0x4c,0x4c,0x46,0xff,0x20,0x6c,0x6d,0x9b,0xe3, + 0x7e,0x97,0x6d,0x43,0x46,0x5f,0x5c,0x9c,0x96,0xcd,0x6d,0x29,0xcb,0xbb,0x6d,0xc6,0x19,0x8a,0xa9,0x71, + 0x34,0xd0,0x21,0xbb,0x59,0xe1,0x5d,0xb9,0xb7,0xe4,0x1a,0xaa,0xa1,0x63,0x02,0x7e,0x6a,0x69,0x50,0xa5, + 0x97,0xaf,0x98,0x70,0xca,0x99,0x80,0xda,0x0f,0x06,0xc1,0xbe,0x6f,0xec,0x91,0xfb,0xd5,0x40,0x0e,0x20, + 0x11,0x51,0x07,0x41,0x14,0x9d,0x50,0x05,0x70,0xca,0x9e,0x11,0x5f,0xd4,0x78,0x7c,0x91,0x03,0xcb,0x80, + 0xf2,0x51,0xab,0xd3,0x5d,0x79,0xfe,0x10,0xce,0xa8,0xc0,0x46,0x2b,0xc8,0x04,0x64,0xf8,0x47,0x9b,0x43, + 0x96,0x6c,0xef,0x58,0x86,0x85,0x44,0xcf,0xd0,0xe5,0xb5,0xcd,0x63,0x05,0x9b,0xc7,0x4a,0x6e,0x31,0x60, + 0xf4,0xef,0xda,0xe6,0xbb,0x49,0x64,0x44,0x38,0xed,0x9d,0x4d,0xa4,0xe7,0xdf,0x90,0x85,0x1e,0xb5,0xb3, + 0x6d,0x8d,0xcd,0xf3,0x1d,0x36,0x8c,0xad,0xc4,0x1f,0xaa,0x4d,0x70,0xe6,0xc5,0x79,0x56,0xe5,0x1c,0x04, + 0x9b,0xe6,0x26,0x0b,0x05,0x09,0x5a,0xe4,0x97,0x19,0xf3,0x7f,0x49,0xd0,0x8c,0x00,0xf3,0x44,0xd4,0x18, + 0x46,0x33,0x49,0xfc,0x4f,0x58,0x1c,0xbe,0x4a,0xaa,0x4e,0x12,0xf3,0x5e,0x5a,0xfa,0x83,0x18,0x07,0xad, + 0x02,0x09,0x2b,0x97,0x57,0xda,0x07,0x82,0x29,0xc3,0x55,0x94,0x26,0x2b,0x50,0xf3,0x13,0x61,0x5c,0x52, + 0x02,0x79,0xc8,0x46,0xc1,0xa3,0x0d,0xc3,0x27,0xc5,0x7a,0xfd,0x0a,0x76,0x1a,0x2b,0xd9,0xf4,0x10,0x42, + 0xc8,0x93,0x2e,0x66,0x44,0xea,0x3a,0xdf,0xab,0x78,0x12,0x61,0xd7,0x95,0x6c,0x60,0x9f,0x03,0x79,0x8f, + 0x10,0x70,0x0e,0xd1,0x62,0x6d,0x18,0xf0,0x57,0xef,0xc2,0x8a,0x80,0x17,0x99,0xc4,0x30,0xe3,0x07,0xc1, + 0x2f,0x3b,0x85,0x90,0xe9,0xad,0xc2,0x0f,0xbe,0xde,0xbf,0x60,0xbf,0x9f,0x34,0xe7,0xa8,0xd5,0x5b,0x1f, + 0xb2,0x00,0x24,0x09,0x88,0xaa,0x2e,0x2f,0x67,0xb4,0x23,0x6a,0xda,0x1d,0x59,0x11,0x48,0x28,0xb0,0xe0, + 0xe9,0xcb,0x47,0x4f,0x9f,0x68,0x13,0x68,0xe1,0xe5,0x47,0x41,0x53,0xd1,0x58,0x62,0xe8,0xee,0x5b,0xd1, + 0xca,0xd9,0x95,0xcd,0x9a,0x39,0x35,0xb9,0x8e,0x0b,0xd0,0x2e,0xc2,0xbd,0xc0,0x6d,0xa1,0x29,0x95,0x43, + 0xbd,0xc5,0x48,0x3f,0xc7,0x52,0xaf,0x67,0x28,0xf5,0xb9,0x6e,0xdb,0x49,0x69,0x70,0xa9,0x46,0xab,0x15, + 0xc9,0x6a,0xac,0x55,0x02,0xe8,0x78,0x36,0xac,0xe9,0x1b,0xbb,0x98,0xc5,0x50,0x91,0x27,0x70,0x5a,0x7b, + 0x06,0x57,0x88,0xf7,0x4f,0x7f,0x7e,0xff,0xf0,0xed,0xd3,0x87,0xad,0x51,0x53,0xfa,0xd2,0x9d,0xa1,0x7a, + 0x76,0x38,0xce,0x65,0x9e,0x2d,0xcf,0x0d,0xc9,0xe4,0x9b,0xf8,0x35,0x44,0x68,0x97,0xcb,0xe7,0x44,0x3c, + 0x4c,0x73,0xc2,0x36,0x30,0x98,0x49,0xcf,0x52,0x41,0x8a,0xca,0x74,0xa5,0x73,0xf1,0x8a,0x50,0x0e,0x30, + 0x00,0x19,0x66,0x3d,0xf7,0xb2,0xd8,0x6c,0x65,0x1a,0x4e,0x76,0x0f,0x37,0x3d,0xcb,0xe0,0x41,0xc2,0xf7, + 0x9d,0xfd,0x68,0x48,0x36,0x8e,0xa7,0x93,0xea,0xbd,0x22,0x9b,0x32,0x83,0xc4,0xdb,0x63,0x0e,0xb0,0xdb, + 0x4a,0xcd,0x17,0xb0,0x8c,0x02,0xa2,0x57,0x30,0x42,0xdd,0x42,0xa9,0x2e,0x14,0x59,0x6d,0x4a,0x2f,0x5d, + 0x6f,0x2e,0x2a,0x83,0x77,0x04,0x91,0x94,0x43,0x16,0xa5,0x74,0xc9,0xca,0x68,0x18,0x11,0x12,0xed,0x63, + 0x85,0x84,0x63,0x8b,0xf8,0xf0,0x63,0x17,0x5b,0x02,0xdb,0x27,0x99,0x26,0xc4,0x18,0xf6,0xd8,0x40,0x5e, + 0x88,0x25,0x6b,0x1d,0xcf,0x11,0x30,0xfc,0xf2,0x85,0xd2,0x64,0x9c,0xc3,0x9f,0x49,0x8b,0x29,0xe2,0x59, + 0x11,0x1e,0xa8,0xe1,0xcd,0x06,0xd9,0xdf,0xe8,0x19,0x04,0x4b,0xaf,0x58,0x63,0x44,0x84,0xfe,0x50,0x63, + 0x1d,0x36,0x38,0x86,0xe0,0x67,0xcc,0xb1,0x5c,0x73,0x8c,0x99,0x2b,0xc9,0x88,0x1c,0x66,0xb9,0x63,0x58, + 0x27,0xcf,0x80,0x02,0x5e,0x65,0x2c,0x17,0x54,0xf0,0xb7,0xca,0x61,0x57,0x99,0x5d,0x70,0xc1,0x9e,0x8b, + 0x01,0xc4,0x98,0x4b,0xd5,0x38,0xed,0x5d,0xc1,0xa4,0xf6,0x97,0xf5,0xdb,0x6c,0xcb,0xf3,0x2d,0x64,0x73, + 0x2b,0xcf,0x0f,0x23,0xd3,0xd6,0xde,0x67,0x84,0xdb,0xe5,0xe6,0x05,0x6a,0xff,0x2c,0xc9,0xf7,0x8f,0x36, + 0xde,0xa1,0x68,0xc4,0xed,0x44,0xdd,0xc0,0xde,0x1b,0x7f,0xa6,0xf8,0xb3,0xc4,0x1f,0x58,0x84,0x5f,0xd0, + 0xff,0x05,0xfd,0x3f,0xd3,0xbe,0x96,0x3d,0x62,0x13,0x02,0x1f,0xb1,0xb7,0xcd,0xfc,0x98,0xea,0x39,0xe4, + 0x56,0x5f,0x7c,0x2d,0x86,0xdb,0x5f,0xdf,0xa7,0x81,0x83,0x49,0x43,0x33,0x6e,0x67,0xce,0xa2,0x2f,0xbe, + 0xec,0x14,0x98,0xb5,0x0a,0x4c,0xa3,0xaf,0xff,0xd9,0x29,0x30,0x6d,0x15,0x58,0x46,0x5f,0xfe,0x77,0xa7, + 0xc0,0xb2,0x55,0xe0,0xe8,0xfe,0x97,0xe0,0x11,0xd7,0x6b,0x7a,0xe0,0x2d,0xed,0x77,0x71,0xff,0x28,0xea, + 0xcf,0x38,0x40,0xc6,0xf9,0x7a,0x7d,0xb1,0x5e,0x2f,0xa2,0x9b,0xfa,0x32,0xd7,0xee,0x00,0x93,0x94,0x6a, + 0xfd,0xe2,0xcb,0x78,0x86,0xb0,0x81,0x6c,0x11,0x3b,0x94,0xa4,0xaf,0xe3,0x79,0x27,0xe9,0xeb,0x7f,0xc6, + 0xd3,0x4e,0xd2,0x97,0x87,0xf1,0x62,0x7f,0xbf,0x95,0x72,0x14,0x2f,0x0e,0x0e,0x5a,0x9f,0x1d,0xc5,0x17, + 0xed,0x32,0x5f,0x7f,0x11,0x5f,0xb4,0xcb,0x1c,0xdd,0xff,0x22,0x3e,0x6f,0x17,0x3a,0xba,0xff,0x55,0x7c, + 0x7e,0x70,0x00,0xba,0x4c,0x26,0xc4,0xed,0xbc,0xeb,0x84,0x86,0xa3,0xc6,0x9a,0xe1,0x1a,0x5e,0x73,0xe0, + 0x47,0xf1,0x6c,0x09,0xc7,0x89,0xbd,0x82,0xe1,0x9a,0xb6,0xc4,0xf5,0xc1,0x41,0x84,0x2b,0xbd,0xae,0x74, + 0x74,0xdd,0xb1,0xdc,0xca,0x07,0x2b,0x7e,0xf1,0x05,0xb1,0x16,0x22,0xe5,0x28,0x64,0x58,0x62,0x26,0xdd, + 0x5c,0xdc,0xec,0x00,0x2d,0x6e,0x44,0x97,0xe2,0x95,0xef,0x2d,0x18,0xc3,0x03,0xfe,0x0c,0x3c,0x0e,0xee, + 0xe7,0x70,0xf0,0x95,0xfa,0xf0,0x05,0x09,0xed,0x24,0x81,0x29,0xa1,0x91,0xf6,0xae,0xe8,0x84,0xb5,0x77, + 0x90,0x84,0xd0,0x51,0x25,0xab,0x07,0x87,0xa3,0xbb,0x63,0x7a,0xbd,0xbb,0x3f,0xd9,0xbf,0x1b,0x44,0xe1, + 0x5d,0x08,0xe6,0xa3,0x20,0x36,0x89,0xb6,0xf1,0x55,0xe4,0xf2,0x55,0x60,0x33,0x56,0x04,0x0c,0x3d,0x34, + 0xd5,0xcf,0xbc,0xd5,0xda,0x7e,0xca,0xc1,0xf1,0xc7,0x15,0x42,0xa4,0xb1,0x5d,0x53,0x75,0x82,0xd0,0xbc, + 0xbe,0x54,0xed,0xdf,0x5d,0x01,0x09,0x02,0xd8,0x2f,0xdb,0x46,0x24,0x2e,0x92,0xcf,0x66,0xdb,0x44,0xdc, + 0x2b,0xb0,0x89,0xe2,0x63,0xcf,0x24,0xe8,0x17,0x7b,0xb2,0x87,0x99,0xd5,0xbe,0x9b,0x18,0x1f,0x6e,0xef, + 0xdf,0xf0,0x35,0x1a,0x8d,0xd2,0xc1,0xe2,0xf8,0x12,0x34,0xbe,0x3d,0x34,0xf1,0x1d,0x82,0x7e,0xf4,0x2b, + 0xeb,0x9a,0x71,0xfe,0xdd,0xca,0xb2,0xc6,0x99,0xfa,0x71,0x0d,0x2f,0xd3,0xa5,0x84,0x12,0xd2,0xef,0x38, + 0xc8,0x6e,0xa9,0xd0,0xf3,0xa2,0x6b,0x1c,0x05,0x6b,0xb5,0xde,0x43,0xe0,0x74,0xd6,0x5e,0x1b,0x57,0x53, + 0x17,0x30,0xa8,0xb2,0xfe,0xad,0x4d,0x12,0xec,0xc2,0xfb,0x86,0x10,0x3c,0xac,0x23,0xfd,0x22,0xec,0x09, + 0x4b,0xf9,0xff,0x4f,0xe7,0x6b,0x47,0x58,0xbf,0x88,0xf1,0x8d,0xa5,0x52,0x7b,0x5c,0x8a,0xf0,0x30,0x9c, + 0xbc,0xe5,0xa8,0x87,0xa1,0x48,0x7e,0x76,0xde,0x8c,0x42,0xca,0xd7,0x84,0xf1,0x22,0x2b,0x56,0x81,0xb2, + 0x15,0x70,0x7e,0x14,0x13,0x53,0x90,0x4f,0xa7,0x73,0x16,0xd2,0x26,0xc1,0xa2,0x5c,0xd5,0xd9,0x6a,0x19, + 0xf0,0x25,0x0b,0xa2,0x86,0x1e,0xb9,0x36,0x25,0x81,0x8d,0xd0,0xe5,0x91,0x0f,0x7c,0x59,0x04,0x3f,0x81, + 0xd5,0xde,0x31,0x8a,0x65,0xae,0x40,0x66,0xb3,0xb4,0xf9,0x9d,0x89,0x0c,0xb8,0x19,0xe2,0xae,0xd4,0x25, + 0xa4,0x62,0xb5,0xc7,0xa1,0xe8,0x3b,0xd4,0xb1,0x8f,0x88,0x0b,0xd8,0xd2,0xdf,0xe5,0xa3,0x89,0xbd,0xc6, + 0xbb,0xb6,0xbe,0x76,0xb5,0xdc,0xa5,0x93,0x4c,0x28,0xff,0x98,0xce,0x89,0x93,0xf8,0x78,0xa2,0xea,0x93, + 0xb8,0xee,0x05,0x81,0xc2,0x82,0x80,0xd0,0x43,0x15,0xde,0x03,0x76,0x89,0x5a,0xaf,0xe5,0xe5,0xe2,0x80, + 0xc3,0xab,0x20,0x89,0xa5,0x4d,0x1c,0x05,0xd7,0x04,0xb2,0xc4,0xb1,0x26,0xca,0x09,0x71,0x65,0xb1,0x64, + 0x4b,0x63,0x43,0xa9,0xc9,0x07,0xb9,0xf9,0xa0,0x13,0x6c,0x36,0xf7,0xcf,0xc8,0xaa,0xdd,0x1b,0xf7,0x35, + 0xcb,0x5f,0x3c,0x10,0xf5,0x83,0xd9,0x78,0xb0,0xaa,0x4d,0xef,0xf3,0xae,0xe9,0x3d,0x68,0x53,0x78,0x36, + 0xf0,0xad,0x26,0x08,0xd5,0x79,0x93,0x9b,0xf0,0x57,0x25,0xc2,0x5f,0x89,0x9f,0x84,0x51,0xb3,0x5b,0x67, + 0xc4,0x56,0x93,0xbe,0x29,0x7e,0xde,0x99,0x35,0x31,0xb5,0xcf,0x93,0xe0,0xce,0x9d,0x8b,0x60,0x28,0x97, + 0x26,0xf1,0x1d,0xd4,0x41,0xa8,0xa5,0x80,0x94,0xb1,0x43,0x2d,0xef,0xdc,0x95,0x91,0xdf,0x1d,0x21,0xc5, + 0x20,0x54,0x3c,0x47,0x01,0xc3,0x1b,0x7b,0x2c,0xc8,0xa7,0x63,0xe2,0x2f,0xf7,0x73,0xe0,0xc3,0x48,0x9b, + 0xe3,0x94,0x4d,0x08,0x0b,0xcf,0xa1,0x36,0xee,0x31,0xe0,0x43,0xd8,0x14,0x9c,0x5d,0x44,0x7c,0xf5,0xd5, + 0x12,0x37,0xfe,0x51,0x17,0xe3,0xbb,0x84,0x3f,0x1b,0x42,0x9a,0x77,0x95,0x31,0xbd,0x71,0xd1,0x49,0x76, + 0x42,0x34,0xb8,0x73,0x13,0xec,0x97,0xfb,0xc1,0x26,0xf0,0x16,0xa0,0x6c,0x7c,0x31,0xa3,0x8f,0xdc,0x68, + 0x0a,0xbf,0xab,0x5c,0x04,0x42,0xef,0x3e,0xa9,0xe3,0x20,0x7a,0x70,0x08,0xd9,0x22,0x2e,0xc8,0x7a,0x6e, + 0x52,0x4f,0x28,0xf5,0xbb,0xca,0xc6,0xc9,0x0d,0x7f,0xe0,0x8f,0xfd,0x12,0xe0,0x9d,0xbf,0x39,0x38,0x1a, + 0xdd,0x50,0xaf,0x63,0x77,0xce,0xfc,0x40,0xf4,0x19,0xb1,0xdc,0x3c,0x00,0x93,0xfa,0x43,0x45,0x88,0x1e, + 0x83,0xd9,0xc4,0x52,0x9a,0x4b,0x70,0xa8,0x25,0x26,0x70,0xfe,0x00,0x81,0x4a,0x2d,0x7c,0x5f,0x25,0xdf, + 0xc2,0x34,0x7a,0xb7,0xc6,0x59,0x16,0x4d,0x9a,0xf0,0xf7,0x2a,0x49,0xa1,0x96,0x1e,0xad,0xf0,0x1c,0xc5, + 0x5f,0x83,0x81,0xfd,0xbd,0xf2,0x85,0x51,0x46,0xb2,0x2c,0x6e,0x8e,0x54,0xc5,0x0f,0x95,0xa9,0x80,0x43, + 0xbb,0xe2,0x7b,0xc5,0x17,0xa4,0x45,0x2b,0x8e,0x74,0x6c,0xc8,0x14,0xae,0x8b,0xb0,0x06,0xc2,0x0f,0x7e, + 0xfd,0x85,0x7e,0x3e,0x38,0x60,0xa3,0x39,0x9a,0xc3,0x6f,0xb9,0x26,0x01,0xad,0x0d,0x1a,0x37,0x51,0xc7, + 0xdb,0xe3,0xfd,0x5e,0x8f,0xd7,0xa4,0x7c,0x4f,0x63,0x55,0xdf,0x56,0x50,0x24,0x3a,0x81,0x81,0xf6,0xd1, + 0x64,0x07,0x87,0x91,0x5c,0x2a,0xd3,0xc4,0xc1,0x1d,0xa2,0x42,0x43,0x5c,0x63,0x48,0x35,0xea,0x6b,0xb3, + 0x50,0x40,0x1e,0x19,0x22,0x3c,0x4f,0xd2,0xc6,0x19,0x01,0xff,0x51,0xf9,0x84,0xd3,0xfe,0xfe,0x0f,0xbe, + 0xfd,0x7a,0xed,0x15,0xfc,0xa1,0xfa,0x26,0xf9,0xce,0x83,0xfb,0x89,0x1f,0xb7,0x9b,0xc9,0xc0,0x6c,0xbd, + 0x66,0x7a,0xd1,0x13,0x55,0xf3,0x24,0xf9,0x1e,0x83,0x32,0x9b,0xec,0x05,0xcb,0x6b,0x01,0xe7,0x8a,0x61, + 0x34,0xf4,0xbc,0xeb,0x9a,0x2d,0x19,0x88,0xa1,0x71,0x87,0x4d,0x42,0xbc,0x7e,0x13,0x0d,0xc6,0xb8,0xbf, + 0xf1,0x7d,0x5a,0xc3,0x8c,0x67,0xe5,0xde,0x7c,0x49,0xd9,0x14,0x46,0x9a,0x3a,0xf4,0xc8,0xea,0x96,0x00, + 0x11,0xba,0xef,0x53,0x76,0x95,0xa4,0x93,0x9a,0x2f,0x47,0x2c,0x93,0x06,0x18,0x1d,0x02,0x09,0x22,0x5a, + 0x7e,0xae,0x94,0xf3,0x18,0xdc,0x81,0x37,0xa8,0x0e,0xfc,0x5d,0xf6,0xd7,0x49,0xb0,0x44,0xfc,0x86,0xca, + 0x44,0xc7,0x1b,0xa9,0x9f,0xab,0x6d,0x46,0x10,0xc3,0x7b,0x54,0x8c,0x6e,0xf4,0xc1,0x07,0x03,0x1c,0x39, + 0xbc,0x10,0x10,0xae,0xe5,0xb8,0xd7,0x38,0xf5,0x53,0x48,0x07,0xe8,0xcf,0x55,0xd4,0xcb,0x78,0x22,0x0a, + 0x95,0x37,0x25,0x6d,0x13,0xfe,0x69,0x13,0x9a,0x48,0x52,0xbb,0x56,0x1e,0x53,0x82,0x8b,0xdf,0xb5,0xd2, + 0x18,0x04,0xde,0xb7,0x2c,0xa6,0x4e,0x61,0x2c,0x56,0x26,0x85,0xff,0x3e,0xfc,0xb9,0xd2,0x3c,0x68,0x07, + 0x1b,0x50,0x47,0x8f,0x3f,0x41,0xa5,0x63,0xac,0xa5,0x8a,0x51,0xa0,0xaf,0x9c,0x8e,0x8d,0xb9,0x21,0xc7, + 0x65,0x76,0x16,0xfc,0xfc,0x01,0x47,0x58,0x66,0xef,0x70,0x77,0xdd,0x37,0x25,0x6f,0x90,0x7d,0x27,0x97, + 0xb8,0x05,0x03,0xa9,0xa8,0xf5,0xe9,0x1d,0x7c,0xaa,0x33,0x3a,0x9f,0xe3,0xb3,0x0d,0x98,0x97,0xdf,0x59, + 0xdb,0x3e,0x6f,0xd4,0x0c,0x21,0x5e,0xad,0x28,0xf8,0x67,0xeb,0xc8,0xef,0xb9,0x09,0xf6,0xcd,0x91,0x71, + 0x93,0x69,0xcd,0x94,0x4d,0xf4,0x25,0xe7,0x32,0x25,0x75,0xd2,0xf9,0xb0,0x2d,0xbc,0xf2,0x53,0x6f,0x93, + 0x5f,0x59,0xcf,0x9c,0x96,0x08,0x2b,0x17,0xf1,0x29,0x24,0x4d,0xb9,0x8e,0x32,0x97,0x9f,0x24,0x41,0xe0, + 0xe5,0xae,0xf4,0xcd,0x7e,0x28,0xa1,0xf8,0x7e,0x66,0x73,0x5f,0xb2,0x76,0x2a,0xca,0x0b,0x02,0x94,0xef, + 0xde,0xbf,0x7c,0xc1,0x09,0x5c,0xba,0xea,0x0f,0x5a,0xeb,0xd9,0x2d,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc, + 0xbc,0x58,0x65,0x43,0x20,0xb9,0x54,0x8a,0xbe,0x82,0x6b,0x95,0x95,0x20,0xa7,0x1a,0x30,0x1f,0x23,0x2b, + 0xf4,0x8b,0xc0,0x66,0x88,0xaf,0x12,0x16,0x21,0x9a,0x34,0x9f,0x0e,0xc6,0xfc,0x9a,0x94,0xda,0x2c,0x11, + 0x12,0x30,0x04,0xa4,0xb7,0xb7,0x54,0x0d,0xa7,0xc9,0x5c,0xed,0x12,0x37,0x99,0x46,0x22,0x4c,0xa8,0x29, + 0x1d,0x86,0xd5,0xaf,0xdf,0xbc,0x7f,0xfe,0xfa,0x15,0xea,0x99,0x19,0xe9,0xce,0x7a,0xdd,0xa3,0x4d,0xc0, + 0xf6,0x67,0xb7,0x70,0x77,0x19,0x95,0xb8,0x37,0x6b,0xbd,0x1a,0xdf,0x2c,0x60,0x63,0x03,0x79,0xe7,0x7d, + 0x66,0xa5,0x80,0xcd,0x26,0x9c,0xa9,0x69,0xd4,0xaa,0xde,0xd3,0xaf,0x89,0x86,0x40,0xb4,0xd1,0x2f,0x0d, + 0x9d,0x26,0x06,0x68,0x79,0xa4,0xad,0x53,0xe6,0xe9,0x1f,0xd7,0x2e,0x7e,0xb6,0x18,0xac,0xf0,0xb1,0x6e, + 0x28,0xa0,0x89,0x38,0x98,0x4d,0x74,0xa0,0xb6,0x9c,0xc9,0x00,0x67,0x36,0x2f,0x44,0x01,0xfb,0x05,0xcb, + 0xa3,0xe9,0x28,0x68,0xc4,0x42,0xfa,0xc7,0x20,0x21,0xbd,0x49,0xe6,0x3a,0xa8,0x11,0x83,0x48,0x29,0xc6, + 0x7a,0x54,0xc6,0xf3,0xc6,0x6c,0xdc,0x21,0x77,0xd1,0xb0,0x76,0xf9,0x7a,0xee,0x59,0x1a,0x69,0x51,0xca, + 0x3b,0xa4,0x8e,0x2e,0xc2,0xd6,0x3b,0x47,0x3c,0xf0,0x7c,0x10,0x9b,0xcf,0xe9,0x86,0x17,0xb7,0x28,0x5a, + 0xdf,0xe5,0x9d,0x78,0x23,0x8b,0xa6,0x2d,0xe2,0x62,0x79,0x50,0xd9,0x11,0x6d,0xe5,0x7e,0x3f,0x22,0x51, + 0x71,0xd5,0xf6,0xb9,0xdc,0xca,0x2d,0x75,0x6e,0xe4,0x45,0xe9,0xd1,0xfb,0x74,0x95,0xb4,0x8a,0xab,0x39, + 0x2c,0x4c,0xcb,0x6a,0xc1,0x57,0xb8,0x4f,0x39,0x6d,0xbd,0xd6,0xdf,0xf3,0x16,0x9e,0x25,0xab,0xf5,0x7a, + 0xae,0xa6,0x98,0x2f,0xbd,0x51,0xa5,0x72,0xde,0xca,0x3a,0xa5,0x53,0x43,0x02,0xfb,0x75,0xbd,0xc3,0xc5, + 0xdb,0x69,0x1a,0xc5,0xd3,0xa1,0x58,0xaa,0xb6,0xa1,0xd5,0x57,0x9c,0x33,0xe1,0x98,0x0d,0x7b,0xe4,0x67, + 0x7f,0x4b,0xae,0x76,0x6e,0x15,0x9c,0x70,0x0a,0x09,0xd9,0xc5,0x4b,0x92,0xb3,0x6e,0xb2,0x73,0x37,0xce, + 0x60,0x7f,0x3e,0x30,0x31,0xd3,0xca,0x56,0x6d,0x65,0xf7,0x33,0xa7,0x9d,0xaf,0xa4,0x0e,0x0e,0x67,0x39, + 0x23,0x24,0xb5,0x84,0x21,0xe2,0xde,0xde,0x6f,0x30,0x1f,0xac,0x95,0xc1,0x52,0x9c,0xbd,0x8c,0xc2,0x34, + 0xe1,0x7c,0x02,0xde,0x19,0xfd,0xda,0x62,0x3a,0x42,0x09,0x30,0x40,0xea,0xf3,0x00,0x67,0x8d,0xef,0x4b, + 0xc6,0xd1,0x3d,0xb5,0x80,0x42,0xe2,0x66,0xb0,0xac,0x8d,0xed,0xfe,0x9c,0xe5,0x0f,0x94,0xfe,0x20,0x25, + 0x1b,0x6d,0xa2,0x72,0xef,0xd7,0x7a,0xff,0x5e,0x64,0xef,0x4d,0xea,0xf1,0xe3,0xf6,0xea,0xe1,0x80,0x58, + 0x08,0x06,0x16,0x6f,0x27,0xfa,0x81,0x71,0xa1,0x40,0xa1,0xf6,0xcf,0x7a,0x24,0x7f,0x91,0x36,0x99,0xdc, + 0xc1,0x6d,0x8b,0x5e,0xa7,0x58,0xe1,0x12,0xb0,0xee,0x3b,0xeb,0x17,0x19,0x86,0x05,0xb1,0x55,0x66,0x80, + 0xde,0x2c,0x5c,0xff,0xff,0x3e,0x0b,0x82,0xcc,0xb7,0x27,0xc2,0xa6,0x2b,0x3f,0x55,0x0e,0x01,0x50,0xfd, + 0x5d,0x09,0xbd,0x99,0x12,0x99,0x3a,0x27,0x4a,0xfe,0x4b,0xd3,0x07,0x43,0x12,0x33,0x6d,0xde,0x54,0x56, + 0x30,0xeb,0x1a,0xc2,0xa7,0xd9,0x5e,0xf0,0x54,0x29,0x0c,0x17,0x20,0x6e,0xd0,0x24,0x74,0x0e,0xbd,0x73, + 0xcc,0x57,0x57,0xdc,0xd6,0x4d,0xff,0x8a,0x81,0x46,0x93,0x36,0xfa,0x4a,0xa5,0xad,0x8b,0x52,0x0c,0x12, + 0xb5,0x57,0xf0,0x32,0xcf,0x4b,0xd3,0x02,0xa1,0x30,0x2e,0x8f,0x78,0x9e,0x87,0x99,0x36,0xc0,0x0a,0x2e, + 0x20,0x41,0xe0,0x1b,0x25,0x10,0xf3,0xfa,0x56,0xe3,0x90,0xe7,0x8c,0x1b,0xb7,0xc8,0x93,0x53,0xee,0xcb, + 0xc7,0xdc,0xf7,0x7d,0xf9,0x88,0xa2,0xbe,0xe4,0xe5,0xb2,0x69,0x1b,0x85,0x6c,0x8b,0xb4,0x59,0xec,0xb0, + 0x9d,0xcc,0xd1,0x7c,0x0a,0xcf,0x88,0x0b,0x10,0x0a,0x8f,0x10,0x08,0x10,0x68,0xa5,0xf5,0x1e,0xf4,0xbd, + 0x42,0x75,0x53,0x7d,0xb5,0xed,0xed,0xcd,0x7b,0x5b,0x41,0xd0,0x6c,0x0d,0xc7,0x9e,0xab,0x68,0x87,0x75, + 0xbe,0x23,0x05,0x14,0x8e,0x01,0x6d,0x49,0x51,0x19,0x5f,0x1e,0xa6,0xb3,0x20,0x27,0xe3,0xc8,0xd3,0x7c, + 0x2e,0x58,0x31,0x82,0x09,0x98,0x52,0x27,0xb0,0xa7,0x78,0x96,0x8f,0xde,0xe6,0xf1,0xa3,0x9c,0x30,0x7e, + 0xc7,0x7d,0xac,0x5f,0x6f,0x53,0xab,0x39,0x2c,0xcf,0xd9,0x55,0xac,0xad,0x02,0x92,0x20,0x16,0xc2,0xcc, + 0xed,0xef,0x4f,0xbe,0x81,0xe2,0x10,0x9e,0x62,0xc3,0x7e,0x7f,0xa4,0xc9,0x03,0x9d,0xaf,0x70,0x35,0xb2, + 0xea,0xd1,0x01,0xa1,0x29,0xcf,0x55,0xb5,0x69,0xe9,0xb8,0x13,0x7d,0x93,0x2d,0x35,0xf9,0x58,0x87,0xdd, + 0xe0,0xb3,0x44,0x22,0x45,0x54,0xc7,0x2f,0x89,0xff,0x7f,0x02,0x1f,0xa9,0xe0,0xc4,0x5a,0xdf,0xed,0xb0, + 0xec,0x54,0xe7,0xad,0x2a,0xb9,0x5e,0xba,0x9d,0x9d,0x26,0x8f,0x1b,0x0e,0xff,0x0a,0x96,0xe6,0xf8,0xa7, + 0x5b,0x2a,0x99,0x98,0xbc,0xfe,0x4a,0x56,0xa8,0x04,0x3c,0x0d,0xcd,0xd1,0x21,0x9d,0x88,0xee,0xce,0x1d, + 0x99,0xf0,0x94,0xed,0xc6,0x0b,0x7a,0xa4,0x02,0x29,0x15,0x30,0x06,0xea,0x44,0x31,0xc0,0xfa,0x3d,0x1f, + 0xad,0x74,0x89,0x57,0x28,0xb1,0xa2,0x12,0x13,0x5b,0x62,0x96,0x50,0x7a,0x38,0x77,0x91,0xd6,0x53,0xd0, + 0xbe,0xdf,0x1c,0x52,0xad,0xab,0xd1,0xb3,0x3c,0x7e,0x95,0x33,0x7b,0x1f,0x8d,0x0a,0x69,0xcc,0xd4,0x1d, + 0x9b,0x2a,0xe2,0x43,0xa5,0x03,0x2e,0x2b,0x0d,0x2d,0xf1,0x5c,0x59,0x58,0x89,0x67,0xb8,0x06,0xf9,0xbd, + 0xb9,0xad,0x2f,0x96,0x5a,0xf6,0xf6,0x3e,0x68,0x21,0xb9,0xcc,0x9e,0x89,0xdf,0x11,0x9c,0xf8,0x68,0xe0, + 0x71,0xe3,0x0e,0xe9,0xa1,0x11,0x78,0x3c,0xb0,0x31,0x12,0xa3,0x2c,0xb1,0x61,0xb3,0x1d,0x11,0x65,0xc6, + 0xd1,0xba,0xcf,0xab,0x2d,0x42,0xf6,0x7d,0xc2,0x1f,0xc2,0x08,0x72,0xff,0x61,0x23,0xe1,0xa5,0x36,0xfe, + 0x4e,0x7b,0xe8,0x93,0x58,0x47,0xd9,0x17,0xff,0xd0,0x57,0xc4,0x3a,0x89,0xc1,0xc1,0x91,0x5f,0xfe,0x9d, + 0x47,0x4b,0x81,0x84,0x22,0x7a,0x07,0x7e,0x5a,0xb8,0x9a,0x27,0x25,0xe2,0xfc,0x94,0xdd,0x21,0xec,0x9b, + 0xbe,0x2a,0x73,0x2e,0xd1,0xf2,0x5c,0x7a,0x68,0x42,0x15,0x24,0xe3,0xc6,0x70,0x43,0x6e,0x43,0x47,0xd6, + 0xf9,0x8a,0xcd,0x27,0xe9,0x33,0x82,0xf0,0xac,0xe2,0xca,0x8f,0x38,0x16,0x18,0x08,0x12,0x5c,0x32,0xe7, + 0x68,0x1b,0xc4,0x11,0x23,0xc4,0xa8,0xe0,0xf5,0xca,0x1b,0x9b,0x80,0x64,0x20,0x9f,0xb1,0xa6,0x6e,0x66, + 0x5e,0xdf,0x97,0x92,0x30,0x35,0x09,0x0f,0x99,0x66,0x97,0xc4,0x25,0x25,0xd2,0x94,0x66,0xa9,0xfe,0xea, + 0xdc,0xbe,0x9b,0xcf,0x2e,0x6c,0x8a,0xff,0xdd,0x82,0x52,0x4f,0x33,0x98,0x88,0x3f,0x45,0x95,0xf0,0xde, + 0x93,0xca,0xd5,0x35,0xca,0xe3,0xea,0x75,0xc9,0x18,0xdb,0x5e,0x99,0x89,0x51,0x97,0xf6,0xdb,0x87,0x5c, + 0xaf,0xba,0xb2,0x4d,0xa8,0x4f,0xe6,0x6b,0x9d,0x75,0xc7,0xf5,0xcf,0x7e,0xff,0x98,0xd2,0xa6,0x7a,0x4f, + 0xa9,0x87,0xc9,0xb8,0x52,0xef,0xe8,0x8f,0xb6,0xd3,0x1f,0xbe,0xdb,0xdb,0x7b,0x67,0x49,0xae,0x87,0x49, + 0xf8,0x2e,0x31,0xaf,0x91,0xe1,0x58,0x79,0x25,0xde,0x27,0xbb,0x0f,0xbd,0xd0,0x49,0xc4,0x91,0xb2,0x11, + 0x7f,0x59,0x82,0x0e,0xe4,0x98,0xc0,0xb4,0x24,0xef,0xd7,0xeb,0x2b,0x1c,0x9e,0xb4,0x06,0x57,0x02,0x02, + 0xaf,0x93,0xf7,0x7b,0x7b,0xcb,0xd1,0x92,0x76,0xc3,0x6f,0x78,0xbc,0x18,0x5d,0xc4,0x53,0xf5,0x02,0x8f, + 0xe7,0xa3,0x73,0xda,0x17,0x4f,0x93,0xf7,0xa3,0xcb,0xf5,0x7a,0x11,0x2f,0xd4,0x1b,0xa4,0xf6,0x38,0xbd, + 0x5c,0x8d,0xae,0xe2,0x33,0xf5,0x9c,0x0a,0x7e,0x5a,0xaf,0xaf,0xe3,0x6b,0xf5,0x84,0x1e,0xef,0xac,0xd7, + 0xe3,0x78,0xac,0x9e,0x11,0xdf,0x92,0x87,0x8f,0xa3,0xd1,0x63,0x99,0xb6,0xf8,0x71,0xa4,0x5e,0x25,0x7c, + 0x10,0xd6,0xac,0x8f,0x57,0x2f,0x93,0xdf,0x9a,0xf0,0x4d,0xa4,0xde,0x26,0x0e,0x4e,0x7c,0x27,0xdb,0xe8, + 0xe6,0x15,0x81,0x24,0x1d,0x28,0xa5,0x7a,0x11,0x29,0xfe,0xfd,0x8d,0x8e,0xca,0xb7,0x0e,0x34,0x47,0x21, + 0x95,0xe0,0x8c,0xd7,0x91,0x7a,0xb2,0xb7,0xf7,0x84,0x0d,0x29,0x9e,0xef,0xed,0x3d,0x87,0x5b,0x82,0x57, + 0xab,0x0e,0xb6,0xae,0xe1,0xb5,0x3e,0x2f,0x69,0x60,0x3f,0xd0,0x76,0x70,0x96,0x4f,0xae,0x51,0x91,0x0b, + 0x19,0x6a,0x17,0x7c,0xaa,0xd2,0xe1,0x90,0xc7,0x08,0x56,0xc4,0xac,0xa6,0x7b,0x3e,0x66,0x49,0xda,0xc9, + 0x90,0xc3,0x19,0x89,0xbd,0x61,0x21,0xf6,0x86,0x0d,0x76,0x98,0xdd,0x37,0xdd,0xf7,0x30,0x52,0x6f,0xf6, + 0xf6,0xde,0x50,0xd7,0xdf,0x42,0x16,0xf4,0x74,0x6f,0xef,0x29,0xfa,0x8c,0x11,0x5f,0xea,0x01,0x5d,0xca, + 0x88,0xd5,0x69,0xeb,0x20,0xb9,0xf4,0xe7,0xe3,0x75,0x6b,0x3a,0xd6,0xeb,0x97,0x74,0x8e,0xbf,0x6e,0xc2, + 0x67,0xd1,0xc8,0x3b,0x85,0xde,0xaa,0x67,0x51,0xfc,0x09,0xc5,0x57,0xd4,0x18,0x90,0x88,0xf2,0x26,0x42, + 0x0c,0x6c,0x2b,0xbf,0x3f,0xd4,0x0d,0xae,0xea,0x6d,0xd8,0xb2,0x78,0x7e,0xaf,0x11,0x88,0x13,0x02,0x53, + 0x77,0xee,0xf8,0xcd,0x87,0xad,0x09,0x0e,0x89,0xf3,0x74,0x93,0x68,0x67,0x0c,0xaa,0xec,0xbe,0x74,0x71, + 0x30,0x95,0xe9,0x4c,0x8a,0x48,0x9d,0x13,0x20,0x22,0x38,0xea,0xa5,0x4c,0x49,0x0a,0x67,0x09,0xfe,0x5d, + 0xf6,0x4c,0x49,0x4a,0x3c,0x14,0xa6,0x84,0x4b,0xb5,0xfa,0x74,0x25,0x53,0xf2,0xa9,0x35,0x25,0x77,0xd4, + 0x27,0x9e,0x92,0x54,0xcd,0xd5,0x1d,0x99,0x92,0x0b,0x50,0x66,0x29,0xbd,0xa9,0x4b,0xfe,0xe8,0x0e,0xe8, + 0x6c,0x6d,0x33,0xae,0x71,0x65,0xea,0xa3,0x33,0xef,0xad,0x8d,0x2b,0x5d,0xba,0xc1,0x95,0xf5,0xed,0xb8, + 0x52,0x22,0xbf,0xca,0xfd,0x31,0x16,0x35,0x1a,0x06,0x4a,0xd4,0xac,0xbb,0xdc,0xb0,0x41,0xd2,0xc6,0xdf, + 0xa4,0x66,0x9c,0x39,0x4f,0x24,0xc2,0x0b,0x21,0x49,0xc8,0x5b,0x52,0x83,0xd5,0xa6,0xe6,0xd5,0x20,0xbf, + 0xa5,0x49,0xf0,0x71,0xdf,0x39,0x25,0x0a,0xfe,0x7a,0x81,0x2c,0xc2,0x90,0xba,0x10,0x61,0xc5,0x5a,0xb0, + 0x97,0x64,0x9c,0xd9,0xda,0x2d,0xee,0xba,0xa6,0x24,0x76,0xca,0x96,0x12,0x63,0xbc,0x1a,0x54,0x76,0x29, + 0xdb,0x7c,0x25,0xdb,0xfc,0x0a,0xdb,0xfc,0x22,0x22,0x8c,0x08,0x84,0x40,0x2c,0xef,0x58,0xea,0x8a,0xc7, + 0x11,0x63,0x45,0x33,0xb4,0xf6,0xd6,0xf7,0x41,0x04,0x22,0xa4,0x1e,0x80,0xe1,0x35,0xe8,0x49,0xb7,0x30, + 0xc4,0xa1,0xbb,0x2e,0x05,0x87,0x38,0x00,0x59,0x46,0x2d,0x08,0x19,0x85,0x97,0x8c,0x43,0x18,0x72,0xa8, + 0xce,0x33,0xb6,0x03,0x09,0xb1,0x21,0x16,0x7b,0x7b,0x0b,0xbc,0x29,0xaf,0x93,0x1a,0x93,0x5c,0x8f,0xae, + 0x69,0xbb,0xc6,0x65,0xe8,0x13,0x04,0xaf,0xbd,0x13,0x79,0x3b,0xa6,0x14,0xcd,0x86,0xdc,0x79,0xe8,0xab, + 0x93,0x7f,0x43,0x9c,0x59,0x66,0x25,0x5c,0xd0,0x62,0x1d,0x16,0x1b,0x56,0xc2,0x08,0x6f,0xec,0x85,0x7d, + 0x1a,0x51,0xf1,0xad,0xf0,0x35,0xd5,0xf1,0xe1,0x49,0x8c,0xe0,0x35,0xf6,0x96,0x3d,0xf8,0xb5,0x68,0xfa, + 0xe9,0x1b,0x4f,0x85,0xf7,0x42,0xd3,0x2b,0xbb,0xd0,0xcb,0x37,0x3e,0x06,0x78,0xc7,0x97,0x11,0x3b,0x1f, + 0x10,0x4b,0x7a,0xbf,0x31,0x4f,0xca,0x59,0xc2,0xf5,0xd3,0xb7,0xb6,0xe4,0x46,0x1d,0x7a,0x55,0xbd,0xe9, + 0x50,0xf1,0x8d,0x27,0x19,0x5b,0xac,0xe6,0x4d,0xbe,0x9c,0x67,0x42,0xaf,0xaf,0xd7,0xdd,0x91,0x79,0xf1, + 0xce,0xd8,0x08,0x10,0x7e,0x58,0xd6,0x87,0xa6,0xeb,0x86,0x05,0x53,0x30,0x97,0x8b,0x6b,0x33,0xf2,0xa8, + 0x4c,0xc6,0xc4,0xfe,0x3d,0x81,0x91,0x0f,0xf8,0x5d,0x85,0xeb,0x97,0xe6,0x7c,0x19,0x3a,0x84,0xf4,0x0c, + 0x3e,0x26,0x21,0xf1,0xc2,0x78,0x5d,0x87,0xfc,0x89,0x17,0xf5,0x17,0x5c,0x17,0xe8,0x2a,0x5d,0x98,0x35, + 0x53,0x72,0x8e,0x75,0x53,0x93,0x1a,0x76,0xba,0xcc,0x4d,0xb5,0xd3,0x0f,0x5a,0x97,0x3e,0x3e,0x6f,0xda, + 0x57,0xac,0x74,0x6f,0xbe,0xb3,0x59,0xbb,0xd7,0xa1,0xd8,0xcb,0x7a,0x2e,0x21,0x3e,0x94,0x89,0xa8,0x94, + 0xa3,0xb3,0xe1,0x82,0x01,0xd1,0xf3,0x69,0xf1,0xa3,0xe7,0xd5,0xd1,0x88,0x77,0xb3,0xf0,0x2c,0x4e,0x66, + 0x0a,0x1b,0x33,0xe7,0xce,0x71,0x4b,0x21,0x1e,0xe4,0xf6,0x97,0x47,0xea,0x65,0x63,0x33,0x94,0x16,0xe4, + 0xfb,0xf4,0xe6,0xcb,0x16,0xd3,0xd9,0x75,0x60,0xb8,0x60,0xf7,0x05,0x48,0x9d,0x45,0x0f,0x1e,0x08,0x9f, + 0x99,0x37,0x92,0xd3,0x28,0xc2,0xa4,0x1c,0xf1,0x68,0x30,0xcd,0x6b,0x36,0x3d,0x96,0x0c,0x5f,0x7d,0xf1, + 0xd6,0x9b,0x89,0xdd,0x5b,0xfc,0x18,0x44,0x52,0x95,0x75,0x91,0xef,0x28,0x8b,0xdf,0xb2,0x6b,0xcc,0x6d, + 0x32,0x33,0xcf,0xa3,0xc2,0x93,0x8a,0x32,0x19,0xb0,0x65,0xf7,0x6a,0x56,0x11,0x67,0x7c,0xcb,0xe2,0xd5, + 0xf8,0xa1,0x8f,0xa8,0x8e,0x5f,0xe0,0xd8,0x65,0xbd,0x0b,0x7d,0x21,0xe7,0x23,0xaf,0x01,0xbe,0x75,0xd2, + 0xc5,0x38,0x6d,0x87,0x3f,0x2a,0xdc,0x35,0x13,0x11,0x42,0x1f,0x71,0x7c,0x60,0x7d,0x7b,0x09,0x6d,0x7e, + 0x41,0x85,0x86,0x9f,0xec,0x38,0xe6,0xe5,0xf4,0xc5,0x18,0x17,0x7a,0x9c,0xb0,0x6b,0x5e,0x4f,0x24,0xda, + 0x8f,0x4e,0x92,0x74,0xef,0xd7,0xe9,0xc1,0xa7,0x2c,0x5b,0x1e,0xa4,0x73,0x3a,0x2c,0xee,0xe8,0xbb,0x02, + 0x99,0xbe,0x71,0x1e,0xd5,0x61,0xe0,0x8a,0x04,0xea,0x86,0xbb,0x16,0x37,0x5b,0xb3,0xe3,0xfa,0xec,0x03, + 0xf1,0x07,0x0d,0x6c,0x4c,0x12,0xb1,0x72,0xe0,0x94,0x2f,0x9f,0x74,0xaf,0x6c,0x4a,0xc9,0xef,0xfa,0x34, + 0xb5,0xf9,0xf6,0x74,0xf5,0x2c,0xc2,0x75,0x75,0x22,0x6e,0xcd,0x2e,0xdf,0x94,0x08,0x26,0x84,0xd2,0x04, + 0x9c,0x8f,0x88,0x30,0xe6,0xa8,0x1e,0xf3,0x9c,0x3e,0x7d,0x8b,0xab,0xd7,0xfd,0x38,0xf3,0xfe,0xf2,0x4a, + 0x05,0x04,0xe2,0xca,0xfa,0xce,0x48,0x6d,0xfa,0x3a,0x8a,0x59,0x73,0x50,0xf0,0x0f,0xdf,0x7b,0xd6,0x94, + 0x4b,0x7a,0xa5,0xbf,0xc0,0x60,0xd5,0x7a,0x9d,0xdb,0x2e,0x60,0x08,0x53,0xa3,0x64,0x2c,0x75,0x57,0x58, + 0x30,0x3c,0x2c,0xdd,0xdd,0xf0,0x44,0x64,0xfe,0x94,0x9d,0x7e,0xca,0x1b,0xcb,0x7f,0x26,0x01,0x67,0x22, + 0x0c,0x5e,0x18,0xec,0x57,0xfb,0xc1,0xf2,0x4a,0xb1,0x6e,0x7f,0x79,0x15,0x05,0xaa,0xf4,0x00,0xd8,0xf0, + 0xe2,0x49,0x70,0x58,0xfb,0x8a,0xf9,0xdf,0x2d,0xc2,0xd5,0x4a,0x64,0xe6,0x7d,0x8f,0xd8,0x5f,0x3f,0x53, + 0xd6,0x00,0x22,0x6e,0x94,0x31,0x59,0x68,0xdd,0x78,0xdb,0xbd,0xff,0x54,0x39,0x55,0xbe,0xbd,0x86,0x43, + 0x07,0x36,0xd6,0x8e,0x89,0x78,0x94,0x50,0x20,0xce,0x8d,0xaa,0x89,0x94,0x00,0x23,0x31,0xdd,0x36,0x44, + 0xc0,0xb1,0x7f,0x4f,0xcc,0x0f,0x6d,0xf1,0x86,0xb1,0x56,0x1c,0x86,0x75,0x42,0x9b,0x1c,0x3a,0x56,0x82, + 0xae,0xeb,0x40,0xeb,0x2f,0xe0,0xd7,0x53,0x7b,0xa6,0x49,0x99,0x78,0xf8,0xec,0xfa,0xd6,0x47,0xda,0xde, + 0x20,0x2c,0x51,0x41,0x8e,0x0a,0xaa,0x6c,0x26,0x15,0xe4,0x70,0x40,0x4a,0x4a,0x95,0x5b,0x47,0xa4,0x5b, + 0x9c,0xb4,0xf3,0x61,0x23,0x21,0x34,0xed,0x05,0x2e,0x0d,0xa4,0xa2,0xce,0xcf,0x07,0xe2,0x55,0x1d,0x20, + 0xd3,0xc6,0x60,0x66,0x5f,0xf6,0xb6,0xca,0x33,0x40,0x74,0x09,0x6b,0x64,0x0c,0x53,0x69,0x7a,0x87,0x36, + 0x2a,0x61,0x33,0x9a,0x00,0x53,0x17,0x78,0x32,0xe3,0xa6,0x1d,0x31,0x9b,0xbf,0x82,0x39,0x92,0xd8,0xd5, + 0x70,0x24,0x81,0x80,0xef,0x95,0xa3,0x6a,0x38,0x8c,0x15,0x82,0x53,0xeb,0x4c,0x4a,0x3a,0xd0,0x25,0x88, + 0x06,0xb0,0xdf,0xf8,0xc9,0x72,0x4c,0xb9,0x6f,0x4d,0x04,0xe1,0xc2,0x16,0x05,0xf6,0xb5,0xa5,0xde,0x8b, + 0x64,0xeb,0x6e,0x10,0xdc,0x65,0x2b,0xee,0xbb,0x36,0x08,0xe8,0x5d,0x5a,0xcf,0xed,0x9e,0x02,0xcd,0xda, + 0xda,0xd7,0x6b,0xb6,0x3c,0x93,0x5a,0x15,0xdf,0x38,0x0c,0x19,0x15,0x8c,0x48,0x1b,0xf6,0xfe,0x0c,0xf2, + 0x5a,0xba,0x54,0x38,0x54,0x91,0x20,0xde,0xa4,0x98,0x0b,0x35,0xc2,0x95,0xcd,0xf3,0x22,0x3b,0xb0,0x2d, + 0x49,0x71,0x49,0x7d,0xaf,0x13,0x61,0xb8,0xe8,0xa2,0x07,0x26,0x87,0xc3,0xc9,0x83,0xb1,0x8d,0x7c,0x30, + 0xe1,0x3b,0x98,0xc6,0xe5,0xf1,0xe4,0x84,0xe1,0x8c,0xba,0x38,0x6c,0x45,0xfa,0xd0,0xae,0xce,0x5d,0x3b, + 0x59,0x04,0x7c,0x50,0x4b,0x75,0xee,0xdb,0x0a,0x71,0x23,0x0d,0x6d,0x85,0x22,0x39,0xb7,0x0e,0xfc,0x0f, + 0x0a,0xe3,0xc4,0x5f,0x25,0x79,0x72,0x8e,0x18,0xc9,0x7c,0x6b,0x42,0x29,0xcf,0x42,0xe4,0xbc,0x2a,0xb5, + 0x10,0x49,0xcb,0xe2,0xcf,0xd3,0xfa,0x51,0xce,0xa8,0xa8,0x06,0xa3,0x10,0xa6,0xc9,0x56,0x97,0x92,0x4a, + 0xdf,0xb4,0xf3,0x41,0x82,0xc9,0xf8,0x21,0xe4,0xdd,0xcd,0x13,0x5d,0x41,0x3d,0x47,0x54,0x34,0x72,0x9f, + 0xa3,0x08,0xf7,0x5e,0xc3,0x62,0x01,0x97,0x5b,0x45,0xfa,0x9a,0x05,0x23,0x0e,0xff,0x50,0x42,0xef,0x12, + 0xa9,0x8f,0xae,0x6f,0x7e,0xf6,0x47,0xce,0xa6,0x61,0x7c,0xcb,0x9e,0xfd,0x35,0xce,0x79,0x89,0xf0,0x09, + 0x34,0xce,0x36,0xcf,0xd4,0x73,0xad,0x32,0x6e,0x16,0xf3,0x40,0x02,0x8a,0x8d,0x11,0x0b,0x53,0x9a,0xf2, + 0xd4,0xc9,0x4c,0x39,0x4f,0x68,0x5a,0xe6,0x9c,0x23,0x85,0x40,0x85,0x5d,0x17,0x13,0x3a,0x2b,0x19,0xfa, + 0x6c,0x84,0x48,0xce,0x55,0x25,0xd8,0xd4,0xe0,0x0e,0x1b,0xc0,0x05,0x6c,0x54,0x0d,0x0d,0xbb,0x83,0x94, + 0xbd,0xbd,0x4f,0xa5,0xbd,0x38,0xd6,0x60,0x30,0x61,0x81,0x88,0x14,0x66,0x0b,0x4a,0x04,0xaf,0x8a,0x7f, + 0x34,0x4f,0x96,0xaa,0x7b,0xd6,0x3f,0xe0,0x67,0x32,0x60,0xee,0x8c,0x04,0x64,0xdb,0xf5,0xaf,0x39,0xbc, + 0x48,0x5a,0xb3,0xf7,0x4a,0x66,0x4f,0xaf,0xd1,0x23,0x9a,0xa1,0x45,0x02,0xc6,0xf1,0xf8,0xe8,0x64,0xb8, + 0xd0,0x33,0x6d,0xa5,0x6f,0xe1,0x42,0x83,0xcb,0xfe,0x11,0x46,0xb2,0x4a,0x2a,0xe2,0xd7,0x72,0xc8,0x3f, + 0x89,0x3f,0x5b,0x40,0x62,0xa5,0x10,0x4b,0x23,0x8b,0x5a,0x0e,0x71,0xe1,0xc4,0x7b,0xdd,0xb2,0xd4,0x5c, + 0x29,0xed,0x80,0x14,0xcf,0xb5,0x89,0xe5,0x0c,0x16,0x26,0xf1,0x54,0x59,0x6b,0xc0,0x78,0xb9,0x41,0x9c, + 0x0d,0x6b,0xc2,0xc7,0x13,0xa0,0xe7,0xa3,0x63,0x53,0x57,0xf2,0xfd,0x35,0xfe,0xec,0x06,0x0b,0x88,0x96, + 0xb1,0xaa,0xd5,0x67,0xa7,0x7a,0x6f,0x4f,0xcf,0xb5,0x76,0xed,0xd8,0xb4,0xb8,0x9a,0xef,0xdd,0x99,0xca, + 0x40,0x9c,0x18,0x03,0x41,0x82,0xdc,0x20,0xea,0xb3,0x1a,0x93,0x94,0x46,0x4f,0xec,0x4b,0x1d,0x49,0xc9, + 0x70,0x0d,0xac,0x4a,0xa5,0x6f,0x93,0xe2,0xf8,0xfe,0x89,0xd6,0xe2,0x18,0xba,0x87,0xa6,0x5e,0xa7,0xd8, + 0x55,0xfa,0xc9,0x00,0x71,0xae,0xeb,0x7b,0xeb,0xa2,0xe7,0x96,0x23,0x84,0x47,0x9a,0xe7,0x69,0x9d,0xe4, + 0xf6,0x83,0xb7,0xf2,0x41,0x35,0xc8,0x89,0xb2,0x48,0x89,0x82,0x3b,0x4a,0x4a,0x57,0xaf,0x2a,0xa9,0x55, + 0xb6,0x83,0x30,0xd9,0xf7,0x93,0xd2,0x75,0x04,0x71,0x4b,0x4c,0x8d,0xaa,0xe2,0x0b,0xe5,0x0a,0x0e,0x02, + 0xd0,0xf6,0xd6,0xf8,0xd6,0x2a,0x46,0xf2,0xd9,0xe3,0x92,0xb0,0x00,0x53,0x47,0xcc,0x29,0xf8,0x09,0x1c, + 0xb6,0xb4,0x9d,0x64,0xb4,0x2d,0x9e,0xdd,0xb2,0x2f,0xfa,0xfd,0xbd,0x69,0xaf,0x12,0x9f,0x86,0x26,0x32, + 0x7c,0x66,0x44,0x86,0x9e,0x05,0x73,0x97,0x25,0x1b,0x05,0x26,0x88,0x52,0x7c,0x13,0xc4,0x41,0x89,0x1f, + 0x17,0x49,0x41,0xdf,0x52,0xb7,0x9f,0xc0,0xce,0x2e,0xdf,0xbf,0x1b,0xc4,0x77,0xf7,0x7f,0x81,0xd2,0x80, + 0xfd,0xb4,0x61,0x65,0xed,0xee,0x61,0xf6,0x04,0xcf,0x6c,0x2f,0xe8,0x4c,0x9b,0x1d,0x6d,0x69,0x6f,0xf6, + 0x0c,0x3c,0xee,0x71,0x13,0x6c,0x07,0x7d,0xb6,0x57,0x84,0x05,0xc7,0xc1,0x7e,0x57,0x44,0x6e,0x47,0xaf, + 0x6b,0xb6,0x8e,0x76,0x0a,0xfa,0xc1,0x93,0x40,0x9f,0x70,0xff,0x2e,0x0d,0xe9,0x2a,0xde,0x59,0x44,0xce, + 0xfc,0xdc,0x49,0x62,0x00,0x75,0xb6,0xb4,0xc6,0xd6,0x20,0x20,0x72,0x0b,0x7f,0x52,0xe3,0x18,0xca,0x82, + 0x1c,0x0e,0xe9,0xe8,0x15,0x06,0x5a,0xc7,0x35,0xa3,0x51,0xb9,0x9f,0xf0,0x83,0xfa,0xa5,0x64,0xdd,0x75, + 0x6a,0x6c,0x6c,0x5d,0x90,0xe9,0xec,0x2a,0x95,0xf0,0x23,0xb5,0x09,0xa2,0xed,0xd5,0x34,0xa4,0x0a,0x7e, + 0x2c,0xc3,0xe3,0x60,0xd2,0x54,0x73,0x1a,0x04,0x1b,0xeb,0xd2,0x6f,0x3a,0xc7,0xdf,0x45,0xd6,0xa4,0xc1, + 0xc9,0xed,0xa6,0xe4,0xbb,0x93,0xe3,0x0c,0xb6,0xe6,0xfd,0x96,0xe8,0x1a,0x9d,0x0e,0x82,0xfd,0x6c,0x3f, + 0xf8,0x81,0xa8,0x2a,0x3b,0x59,0xeb,0x35,0x38,0x36,0x31,0x0a,0xb1,0x1d,0x36,0xfe,0xbb,0xd6,0x7e,0x27, + 0xcc,0xf7,0x09,0xab,0xc3,0xd6,0xe2,0xee,0xe9,0xaa,0x69,0xca,0xe2,0x2e,0xa6,0x41,0x2a,0x85,0x9f,0xfe, + 0x7e,0xca,0x0d,0xff,0xd8,0x98,0x6a,0x29,0x8d,0x16,0xc1,0x2a,0xe0,0xe8,0x60,0x1f,0x62,0x3b,0x4a,0x4d, + 0xa5,0x17,0xb3,0x32,0xd4,0x95,0xdc,0x80,0xc6,0x0d,0x8b,0x91,0x5e,0x93,0xfd,0xc0,0x64,0x04,0x71,0x35, + 0x62,0xab,0x55,0x93,0x11,0xb9,0x1c,0xb3,0x80,0x0c,0x69,0xa6,0x2d,0x22,0x8b,0x4c,0x2d,0x71,0x5f,0x33, + 0xb6,0x22,0x1f,0x3a,0x7f,0xf4,0x58,0x00,0x8e,0x71,0xf3,0x9c,0x29,0xa3,0xa3,0xc3,0xc8,0x8f,0x67,0x6f, + 0xa6,0x51,0x87,0x8e,0x26,0xe2,0x90,0xaa,0xd3,0x70,0x46,0xab,0x6e,0xc3,0x0c,0x07,0xe3,0x4f,0x61,0xbb, + 0x28,0x91,0xf0,0x1d,0xc4,0x9b,0xf1,0xc6,0xe9,0xa6,0x16,0x48,0x75,0x9f,0xfa,0x56,0x99,0x59,0xcb,0x7c, + 0x09,0xb1,0x72,0x0a,0xdc,0xce,0x6b,0x2c,0x45,0x25,0x46,0x5b,0x1c,0xc0,0xd0,0x8f,0x03,0xb0,0xda,0xfd, + 0x01,0x5d,0xfa,0xa8,0x11,0xeb,0xa4,0xf8,0xee,0x78,0xa2,0x43,0x06,0xdc,0xe5,0x69,0x53,0x9d,0xb8,0xc6, + 0x71,0xd1,0x8d,0x74,0xec,0x21,0xb0,0xa6,0x70,0xf1,0xf2,0x4d,0xb1,0xb2,0x14,0x5f,0x39,0x79,0x7d,0x53, + 0x95,0x93,0xac,0xae,0xb3,0xa9,0x5d,0xfa,0xc2,0x1a,0x77,0x67,0xda,0x70,0x7f,0x57,0x1e,0xb6,0x8a,0x56, + 0x7e,0x51,0xda,0x6f,0x5c,0x92,0x7e,0xb7,0xeb,0x4c,0x10,0xee,0xa3,0xe1,0x9b,0x3e,0x66,0x88,0x54,0x89, + 0xd0,0x7e,0xc0,0xbe,0xec,0xdc,0x65,0x11,0xf8,0x08,0xf3,0xeb,0xbd,0xc7,0xb4,0x97,0x6b,0xaf,0xc0,0xfd, + 0x4e,0x81,0xfb,0x28,0x50,0xb4,0x5a,0x64,0x4a,0x67,0x3c,0x0f,0xb5,0x75,0xb5,0x23,0xf2,0x61,0x0e,0x9d, + 0xb2,0x07,0x8a,0x9b,0xe5,0x86,0x43,0xb8,0x61,0x56,0x23,0x8d,0x7c,0x6e,0xa3,0x2d,0x95,0x0e,0x90,0x26, + 0x43,0xcd,0x67,0x3c,0xd2,0x7c,0xb6,0x35,0xd0,0xd2,0xcd,0x88,0xa3,0xb9,0x77,0x3b,0x34,0xb7,0xd0,0xea, + 0x7d,0x4c,0x87,0x31,0x60,0xa5,0xe9,0x5a,0xd2,0x74,0x9d,0x27,0x53,0xcb,0x85,0xac,0xd7,0x1e,0x49,0x0f, + 0xa9,0x6f,0x11,0x4e,0x21,0x55,0x27,0xf6,0x73,0x0c,0x3b,0xe1,0xf3,0xfd,0xf0,0x82,0xa7,0xe7,0x82,0x63, + 0xc4,0x9d,0xd1,0xa7,0x3a,0xaa,0x78,0x40,0x5b,0x48,0xbf,0xdc,0xe6,0xf6,0x32,0x2e,0xb4,0x69,0x03,0xcd, + 0x45,0x0c,0xa7,0x62,0x91,0x45,0xb5,0xf0,0x33,0x41,0xde,0xb5,0xa9,0x14,0x46,0xf3,0xda,0x75,0x20,0x38, + 0x51,0xbb,0x67,0x34,0x1d,0xd7,0xec,0x9b,0x15,0x2e,0x08,0xed,0x30,0x5b,0x10,0xb0,0x60,0x56,0xde,0x83, + 0xfd,0xb3,0x48,0x5d,0xcb,0x5b,0x78,0x06,0xa3,0x20,0x53,0x86,0x77,0xd4,0x35,0x8d,0x02,0xf6,0xcc,0xbc, + 0x04,0x63,0x99,0x62,0x17,0x36,0x75,0xe2,0x47,0xbb,0x20,0x82,0x0c,0xba,0xc6,0x06,0x36,0x5c,0x1d,0xde, + 0x62,0x84,0x1a,0x63,0x9a,0x16,0x2c,0x1b,0xa4,0x50,0x63,0x9a,0x19,0xda,0x3a,0xfb,0x13,0x6e,0x24,0xe5, + 0x8c,0x68,0x3f,0x9c,0xf1,0x2c,0xcd,0x62,0x36,0x4a,0xa1,0x46,0x2d,0xd9,0x78,0x9a,0x68,0x5e,0x75,0xa4, + 0xe3,0x83,0xa5,0xb2,0x98,0x08,0x08,0x7a,0x5b,0x5b,0x38,0x94,0xc1,0xd3,0x48,0x5b,0x77,0x31,0x75,0xb4, + 0x8e,0xfb,0x01,0x3d,0x85,0xa7,0xdc,0xd0,0x29,0x37,0x14,0x5e,0xf2,0xcb,0xa5,0x69,0xd5,0x5e,0x98,0x74, + 0x45,0x4c,0xd0,0xd5,0x83,0xc6,0xc9,0x17,0xac,0x90,0xf4,0x8a,0x58,0x95,0x71,0xe2,0xe7,0x1c,0x5f,0x81, + 0x31,0x1a,0x5b,0x6c,0x3f,0xb6,0x71,0x2c,0x0b,0xcd,0x30,0x05,0xd2,0x73,0x0f,0x07,0x15,0xdd,0xbb,0x6c, + 0x3a,0xbb,0x1e,0xfb,0xa5,0xe9,0x22,0x10,0x39,0x56,0x7a,0x11,0x93,0x46,0x28,0x00,0x07,0x04,0x4b,0x5f, + 0xd0,0xfc,0x86,0xdb,0xdf,0x9b,0xb8,0x74,0xd1,0xbe,0x45,0x3b,0x12,0x4b,0x24,0x50,0xe2,0xad,0x6c,0xa7, + 0xc1,0x3a,0x87,0xf8,0x88,0xaa,0x85,0x6c,0x24,0x3c,0xf9,0x5f,0xda,0x72,0xad,0xb6,0x7c,0x4f,0xd7,0x20, + 0x60,0x99,0x88,0x56,0xcc,0x56,0x43,0x6d,0x2f,0x0b,0x31,0xc1,0x4d,0x91,0x70,0x0c,0x12,0xe3,0x26,0x62, + 0x9d,0x55,0xed,0xf1,0x34,0x0a,0xc6,0x65,0xe8,0x8d,0x5c,0xe1,0x44,0x42,0x17,0x9f,0x4f,0xf7,0xf7,0xf9, + 0xb5,0x60,0xbf,0x36,0x5d,0x60,0xd3,0xc6,0xa3,0x9e,0xfb,0xc5,0x76,0x60,0xea,0xd6,0x80,0x30,0x50,0xcf, + 0x32,0xdd,0x9a,0xcc,0x7b,0xaa,0x3b,0xb7,0x63,0xab,0x51,0x25,0xc7,0x83,0xcc,0xd6,0xa8,0xd2,0xa7,0x85, + 0x3e,0x35,0xf8,0x2a,0x10,0x23,0x5f,0xb1,0xd7,0x04,0x13,0x80,0x8c,0x89,0xc0,0x0c,0xb4,0x31,0x40,0x63, + 0xe2,0xfa,0x39,0xf2,0x21,0xbb,0x5a,0xf2,0xd9,0x9d,0x8a,0xd7,0x41,0x34,0x22,0xb4,0x49,0x7c,0xe4,0xe9, + 0xbc,0x9c,0x7c,0xd2,0xb8,0xc1,0x76,0x8c,0x16,0xd1,0xcb,0xdc,0x74,0x68,0x62,0x4b,0xcd,0x76,0xaf,0x70, + 0x49,0xbb,0x21,0x42,0x12,0x42,0x50,0x74,0x22,0xf4,0x99,0xfc,0x66,0x5b,0x97,0x48,0xeb,0x5b,0x47,0x34, + 0x92,0x4e,0xbc,0x38,0x0c,0xf1,0x71,0xc0,0xb1,0x81,0x87,0x72,0x0d,0x48,0xef,0xb5,0x52,0x37,0xa5,0x89, + 0x42,0xaf,0xc5,0x7c,0xab,0xd6,0x3d,0xd5,0xc7,0xa5,0x08,0xc8,0x86,0x2b,0x70,0xcf,0xc9,0xee,0xee,0x0a, + 0xf1,0xa4,0x69,0x7f,0x5c,0xa6,0x15,0xae,0xd6,0x48,0x39,0x94,0x25,0x2d,0x53,0x4d,0x94,0xb5,0xf0,0x76, + 0x44,0x5f,0xcb,0x47,0x44,0x64,0x5b,0x36,0x8f,0x13,0xf5,0x0b,0x1c,0x5b,0xf6,0xc3,0x52,0x30,0x2a,0xc1, + 0xbf,0x90,0x39,0x38,0x8e,0x2c,0x79,0xe4,0x7b,0xf6,0x6c,0xd1,0x17,0xba,0x58,0x24,0x68,0xa4,0x1c,0xd0, + 0xd9,0x31,0xba,0xcb,0xec,0x23,0xb7,0x42,0x0f,0x68,0xc1,0xe4,0x5a,0xda,0x94,0x5a,0x72,0xcc,0x65,0x4f, + 0xa5,0x8e,0x1c,0x96,0xbd,0xb8,0x21,0x1c,0x6f,0x20,0x77,0x32,0xaa,0xdb,0x5c,0xc1,0x89,0x8d,0x8a,0x24, + 0x51,0x3d,0x86,0x86,0x2c,0x04,0xf4,0x47,0x4a,0x4b,0xf6,0x98,0xe4,0x84,0xb3,0x0b,0xb0,0xa0,0x78,0xaa, + 0x04,0xe2,0x5a,0x3f,0xd3,0x99,0xf4,0xc4,0x99,0xf4,0xeb,0x65,0xf2,0x6e,0x75,0x25,0xf8,0x35,0x06,0x9a, + 0x90,0x12,0x4b,0xf6,0x2e,0x44,0x26,0x3d,0x79,0xe9,0x1e,0x03,0x8c,0xdc,0xbb,0x10,0x96,0xb2,0x57,0x11, + 0x10,0x30,0x2d,0xc6,0x5d,0x27,0x69,0x4a,0x09,0xc9,0xa6,0x0f,0x44,0x7b,0xf6,0x6d,0x56,0x3c,0xf3,0xee, + 0xfe,0x86,0x3c,0x68,0x3f,0xf1,0xb3,0x8e,0xd3,0x93,0x30,0xd3,0xe8,0x44,0x9f,0xa0,0xdc,0x3a,0x3f,0x13, + 0x97,0xb5,0xbf,0x2a,0x4c,0x8e,0x9e,0x37,0xa5,0xfd,0x3d,0x75,0x41,0x63,0xf4,0x6f,0xcb,0x4a,0xbc,0x5e, + 0x5b,0x56,0x1c,0x05,0xa5,0x30,0xf8,0x3a,0x9d,0xa0,0x76,0x8f,0x0c,0xa4,0x99,0xc9,0xf1,0x7d,0x0e,0xbd, + 0xf2,0x7e,0xb2,0x62,0xfc,0xdd,0xfa,0xca,0x91,0x18,0x42,0xe6,0x19,0x29,0x9f,0xee,0x1e,0xdf,0xd3,0x12, + 0xec,0xfb,0xe5,0xec,0x97,0x2e,0xfc,0xa9,0x14,0x86,0xf0,0xcf,0x4f,0x65,0x22,0x2e,0xf0,0x12,0xe2,0xf1, + 0x8a,0xf8,0x9f,0x56,0x30,0x95,0xe2,0x36,0x96,0x66,0xa7,0x8b,0xdc,0xdc,0xbd,0x05,0x9a,0x78,0x6c,0x93, + 0x72,0xa3,0x30,0x67,0xd7,0x9d,0x8a,0xf6,0x39,0x24,0xc4,0x6c,0xec,0x4a,0x5b,0xbc,0xd4,0xa4,0x23,0xec, + 0xbe,0xdb,0xa4,0x63,0xd9,0x26,0x1d,0xe7,0x5e,0x81,0xfb,0x9d,0x02,0x4c,0x3a,0x96,0xb7,0x91,0x8e,0x75, + 0x87,0x74,0x9c,0xec,0xaf,0xf6,0xe7,0x2d,0xd2,0x51,0x87,0xc6,0x15,0xda,0x91,0xf6,0xd0,0x8d,0x00,0x3e, + 0xa6,0x72,0x56,0xc4,0xde,0xa7,0xda,0x01,0xa2,0x70,0xeb,0x10,0xb5,0x2a,0x0a,0x5b,0xb2,0x59,0x36,0x43, + 0x19,0x11,0x85,0x3b,0xe3,0x3f,0xfb,0x01,0x21,0xe0,0xb0,0x16,0x32,0xb5,0x75,0x81,0x33,0x90,0xb1,0x7b, + 0x8b,0xfb,0x8a,0xc4,0x9a,0xbc,0x45,0x1f,0x37,0x82,0xf3,0x5b,0xb4,0x2d,0xf6,0x32,0xae,0x4d,0x01,0x76, + 0x6e,0x73,0xe2,0x74,0xb2,0x47,0x80,0x07,0x1d,0x6e,0x9c,0xc1,0x86,0x9f,0x63,0xe3,0x94,0xb8,0x9f,0xf9, + 0x01,0xc5,0x69,0xd0,0xce,0x0f,0xd1,0x66,0x99,0xa4,0xfd,0xa0,0x8d,0xe0,0x6c,0xf4,0x72,0x9b,0x68,0xb7, + 0x46,0x9b,0xca,0xda,0x8a,0x5e,0xd1,0xf8,0xde,0x1a,0x36,0x74,0xe7,0x21,0xc7,0xd0,0x39,0x92,0xc0,0x7d, + 0x6c,0xa5,0xa6,0x5d,0x47,0x0b,0x0e,0x9b,0x53,0x9a,0xe8,0x80,0x9a,0xd3,0x6b,0xb7,0x11,0x1b,0x36,0xcc, + 0x13,0x6c,0x10,0xeb,0xa0,0x03,0x68,0xa3,0x63,0x5d,0x76,0xeb,0x18,0xd9,0x5d,0x82,0xe7,0x16,0x26,0xbe, + 0x55,0xa9,0x30,0xb0,0xed,0x99,0x86,0x7f,0x26,0x61,0xd9,0x86,0x63,0x17,0x62,0x9e,0xd9,0x05,0xde,0x62, + 0xe2,0xdc,0x93,0x77,0xdd,0x53,0x77,0xee,0xa9,0x40,0x53,0xe2,0xd9,0xe0,0xb2,0x4a,0x97,0x72,0xb5,0x3d, + 0x14,0x27,0xf6,0x15,0x9e,0x2a,0x3a,0xd7,0x2a,0x15,0xbd,0x22,0x36,0x8d,0xcb,0x79,0xf7,0x34,0xd5,0x96, + 0x38,0xf1,0x23,0x15,0x99,0x39,0x96,0xd8,0xdd,0x7e,0x14,0xab,0x34,0x29,0xbd,0x89,0x2f,0x3d,0xbf,0x21, + 0xde,0xca,0x2d,0xe6,0x27,0x15,0xdb,0x2a,0xe1,0x75,0xcc,0xbb,0x71,0x1d,0xad,0xd6,0xeb,0xa6,0x88,0xc2, + 0x54,0x35,0xc6,0xee,0xa6,0xe8,0x44,0xdd,0x6e,0x5f,0x30,0xbf,0x75,0x35,0x8e,0x0d,0xe4,0x58,0xd9,0xee, + 0xe4,0x1a,0x0e,0xe8,0x75,0x82,0x0b,0x97,0x10,0xf8,0xc9,0xa7,0x4d,0xe0,0x5b,0xd1,0xa6,0x55,0xca,0x45, + 0xd6,0x87,0xb1,0x26,0x40,0xdf,0x9a,0xbe,0x89,0x40,0x2a,0xde,0xd7,0x64,0x22,0xbb,0x04,0xfd,0x8f,0xab, + 0x6d,0xfc,0x5a,0xd9,0x88,0xf6,0x28,0xf2,0xae,0x5a,0x0b,0x4b,0xb6,0x2e,0xbd,0x3e,0xcd,0x1e,0x5b,0x2e, + 0x28,0xe6,0x80,0xb6,0x5d,0xc7,0x28,0x63,0x48,0x2a,0x0c,0x24,0x8d,0x79,0xa4,0x89,0xd0,0xf8,0x0b,0x9b, + 0x04,0x15,0xac,0x0d,0x9b,0x37,0x82,0xaf,0xb5,0x02,0x15,0xb8,0x45,0x13,0x54,0x12,0x7e,0x99,0x5d,0x92, + 0xe3,0x60,0x7c,0x01,0xca,0xfe,0x3e,0x34,0x05,0x05,0xa4,0xdd,0x5c,0x79,0xe1,0xed,0xd9,0x78,0x5e,0x84, + 0x5d,0x51,0x88,0xd4,0x10,0x45,0x96,0x99,0x23,0x70,0x32,0x2a,0x10,0x08,0x04,0xcb,0xdb,0x4e,0x86,0x49, + 0xaf,0x3c,0x90,0x30,0x1f,0x63,0xed,0x1a,0x24,0x8a,0x27,0xd4,0x98,0xf8,0x9f,0x5a,0xad,0x1f,0x4b,0x1e, + 0x08,0x01,0xf6,0xa8,0xba,0xda,0x5c,0xb6,0xe7,0xcc,0xda,0x51,0x25,0x42,0x9a,0xf0,0xf9,0xab,0x8d,0x1b, + 0x11,0xa9,0x56,0x86,0xe4,0x8b,0xef,0xee,0xcf,0x11,0xd7,0xcf,0x48,0xb5,0x54,0xe0,0xee,0x1a,0xf7,0x48, + 0x28,0xcf,0x1b,0xb6,0x15,0x4c,0xc2,0x6d,0xee,0x5f,0x57,0xf7,0x0f,0xef,0xff,0xeb,0xde,0x99,0x0a,0x7e, + 0x95,0xc7,0x20,0xea,0x64,0x7e,0xed,0x32,0xbf,0xf6,0x2f,0xcd,0x9c,0x69,0x58,0x80,0x6f,0x9c,0x17,0x4b, + 0xfe,0x99,0x9b,0x65,0x77,0x79,0xaa,0xed,0x9b,0x68,0x27,0xb2,0xaa,0x82,0xb2,0x97,0xb0,0x71,0x0c,0x6f, + 0xd9,0x33,0xff,0x26,0x47,0xaf,0x9f,0xe1,0xbb,0x32,0x79,0x57,0xfe,0x49,0x3c,0x4b,0x44,0x8d,0xd5,0x3a, + 0xa4,0x24,0x1b,0xdd,0x7d,0x90,0xee,0x9c,0x43,0x81,0x1b,0xfc,0x5a,0x04,0xf7,0xbe,0xb9,0x1b,0xdf,0x7d, + 0x40,0xa5,0x08,0x6b,0xe8,0x77,0xf5,0xae,0x74,0xe5,0x9d,0x8f,0xcb,0xde,0xff,0x39,0x3a,0x1c,0x06,0xd1, + 0x37,0x87,0x6c,0xc4,0xb7,0xb4,0xf7,0x3a,0xce,0xaa,0x2c,0xfb,0x23,0x0b,0x11,0x92,0xf8,0xdc,0x26,0xba, + 0x40,0xdb,0xe6,0x6a,0x6c,0x75,0x51,0x24,0x2b,0x91,0xa9,0x28,0x4b,0x1e,0x06,0x2c,0x0c,0x58,0x70,0x0e, + 0x1d,0xd2,0x8a,0x7a,0xa5,0xb8,0x84,0x53,0xb7,0x2a,0xa8,0x37,0xd5,0x59,0x4f,0xcd,0xe7,0x69,0xed,0x5d, + 0x05,0xa9,0xae,0x8b,0xe4,0xde,0x41,0xf8,0xeb,0x65,0x44,0x6b,0x31,0x2e,0x92,0x69,0x6f,0x84,0x10,0xbb, + 0x6e,0xd7,0x85,0xea,0xdd,0xae,0xcd,0x08,0x66,0x08,0x1f,0x96,0x4b,0xd8,0x25,0xd7,0xc4,0x23,0x21,0x54, + 0x29,0x0c,0x4a,0x4f,0x6f,0xad,0x52,0x87,0x84,0x39,0x8c,0xda,0x1f,0xee,0x3b,0xfd,0x21,0x7d,0x7e,0x49, + 0xbd,0xfb,0xf5,0x51,0x78,0xfc,0xf0,0xe0,0xdf,0x27,0xe8,0xe1,0xd5,0x9f,0xf6,0xf0,0xb2,0x50,0xc1,0xc1, + 0x9d,0xa3,0x00,0xd5,0xbe,0x28,0x2f,0x4d,0xb5,0x54,0xd7,0xa7,0xa2,0xc5,0x90,0x39,0xdb,0x84,0xdd,0xa3, + 0x8d,0xba,0xd3,0xd6,0x03,0xd9,0xd0,0x28,0xea,0x31,0xb1,0xda,0xa0,0xa4,0x0f,0x38,0x18,0x79,0x75,0x60, + 0x2e,0x18,0x0c,0xd4,0xc3,0x22,0x39,0x0e,0xbc,0x35,0x71,0x8c,0x5b,0x60,0xae,0x01,0x0c,0x4e,0xd4,0x3b, + 0x94,0x12,0xeb,0xc6,0xc7,0x0c,0x63,0x94,0x29,0xc0,0x46,0x55,0xe8,0x0c,0x36,0x99,0x86,0x7c,0x5d,0x4c, + 0xa7,0x6d,0xfa,0x07,0x1d,0xd3,0xd1,0xde,0x3f,0x6b,0x32,0x9e,0x48,0xc8,0x5e,0xb4,0x29,0x4f,0x9c,0xe7, + 0xee,0x2d,0x46,0xba,0xff,0x26,0x57,0xeb,0x88,0x2f,0x37,0xc4,0x5b,0xef,0x8b,0xe4,0x46,0x88,0x88,0x97, + 0xb8,0x89,0x9e,0x40,0x8d,0x0a,0x9e,0xe5,0xc4,0x71,0xf6,0xdd,0x3a,0x5a,0xe7,0x73,0xd8,0x50,0x20,0x62, + 0x53,0x55,0x4e,0x57,0x3c,0x49,0xef,0xf3,0x25,0x12,0xcc,0x15,0xb8,0x9c,0x99,0x55,0x90,0xe9,0xc0,0x7a, + 0x09,0xaf,0xdc,0xe6,0x77,0x72,0x37,0x2a,0xfb,0x46,0x28,0x90,0xf4,0xad,0x84,0xfc,0xac,0xa0,0xc1,0x4c, + 0xf5,0xae,0x23,0x3a,0xe4,0x44,0x99,0x0b,0x11,0x7b,0x3b,0xd2,0x8a,0x09,0x1f,0x7f,0x2a,0xbc,0x04,0x38, + 0x4a,0x49,0xca,0x87,0xe2,0x53,0x51,0x5e,0x16,0xba,0x52,0xa4,0x75,0x42,0xcc,0xc7,0x67,0xaa,0x2f,0x82, + 0x7c,0x7c,0xa7,0x50,0xde,0xc5,0x84,0xf8,0x70,0x3c,0xcf,0x67,0xd9,0xe4,0x7a,0x32,0xcf,0x70,0x17,0x73, + 0x1d,0xbf,0x2b,0x36,0xea,0x35,0x41,0xe4,0xf1,0x7f,0x7e,0xbd,0x1c,0xdc,0x39,0xb9,0xa7,0x7e,0x2b,0x10, + 0xa9,0x9f,0xf7,0xd6,0x78,0x4c,0x64,0xd8,0xcd,0x46,0xbd,0xa0,0x24,0x47,0xb0,0xda,0x6b,0xed,0xc4,0x6f, + 0x46,0x3d,0xed,0xcf,0xfd,0xe9,0xe7,0xa7,0xc5,0x45,0x5e,0x95,0x85,0xbe,0x23,0x7c,0xb7,0x95,0x00,0x11, + 0x1e,0xf7,0x54,0xbd,0x29,0x92,0xa7,0xc5,0xde,0x5e,0x7f,0x6e,0x1b,0xe0,0xd5,0xf3,0x22,0x79,0x41,0x65, + 0xb5,0xc3,0x4e,0x91,0x5e,0xe4,0x67,0xe0,0x12,0x06,0x2b,0x9a,0xb0,0x87,0x67,0x7c,0x13,0x53,0xab,0xfc, + 0x93,0x22,0x79,0x4e,0xe5,0xef,0x2d,0xea,0x3c,0x5b,0x13,0xee,0x99,0x52,0x11,0x6d,0x71,0xf5,0xbc,0x88, + 0xd4,0x33,0xc9,0x7e,0xee,0xf9,0x0b,0xa2,0xe4,0xce,0xd7,0x83,0x43,0x60,0x37,0xf5,0x6a,0x3b,0x3f,0x9b, + 0x9e,0x65,0xf7,0x38,0xf3,0xe5,0x76,0x26,0xc1,0x41,0x45,0xe7,0x1c,0xb2,0xe9,0x34,0x33,0x6f,0x74,0xa0, + 0xbd,0x29,0xd4,0x5b,0xdd,0x95,0x7c,0x79,0x4e,0x7b,0x6b,0x9d,0x2f,0xd3,0x29,0xfd,0x29,0xe9,0x4f,0x59, + 0xbb,0x2e,0xc1,0x65,0xbc,0xac,0xf5,0x27,0x3f,0x15,0x49,0xc8,0xdf,0x4c,0xce,0x2b,0x22,0x51,0x7e,0xbd, + 0xf7,0xeb,0x74,0xdf,0xeb,0xfd,0xcd,0x66,0xc0,0xb7,0xef,0x46,0xea,0x11,0x94,0xd1,0xa0,0xaa,0x5e,0x14, + 0x1c,0xa2,0x12,0x58,0xf9,0x23,0xdb,0x35,0xf4,0x5f,0x55,0xfc,0x91,0xf0,0x89,0x8e,0x7d,0x10,0xa8,0x1b, + 0x5c,0x75,0xec,0x51,0xc0,0xa8,0xec,0x70,0x03,0x3c,0x25,0xb3,0xbc,0x1d,0x50,0x0f,0x3d,0x38,0xb0,0xdf, + 0x33,0xd4,0x7f,0x2c,0x22,0xcf,0xa9,0x1b,0xed,0x7f,0x28,0xd4,0x77,0x85,0xfa,0xc3,0x43,0x41,0x1d,0x5a, + 0x80,0xc6,0xf8,0x01,0x86,0x31,0x1f,0xa8,0x3d,0x2c,0x6a,0x1f,0x0c,0x9d,0xcd,0xcb,0xd3,0x74,0x0e,0x9a, + 0x94,0x11,0x15,0xe6,0x45,0x92,0x80,0xfb,0xc1,0x0e,0x0e,0xb2,0xe2,0x62,0xf0,0xf1,0xc3,0xd3,0xf1,0xd3, + 0x57,0x1f,0x23,0xf5,0x81,0x60,0xf9,0xf7,0x16,0x88,0x8c,0xc7,0xc8,0x7c,0xf2,0xf4,0xe3,0xfb,0xd7,0xaf, + 0x5f,0xbc,0x1b,0x7f,0xfb,0xe2,0xf5,0xa3,0x87,0x2f,0xc6,0xdf,0xbd,0x7e,0xfd,0xc3,0x78,0xac,0x7e,0xe8, + 0x07,0xdc,0x77,0xd7,0x8b,0xd3,0x92,0x1a,0xbd,0x0a,0xe5,0x29,0xea,0xef,0x9b,0xbe,0xb2,0x18,0xe5,0x3a, + 0xb7,0x17,0x47,0xc3,0xef,0x6e,0xa9,0x39,0xe3,0xe2,0xf4,0x83,0x1b,0x1a,0x5a,0xb3,0xde,0x8a,0x75,0x21, + 0x57,0xf9,0x65,0x4d,0x5f,0xe4,0x55,0x1b,0x2d,0xbf,0x7d,0xfc,0xf5,0x60,0xfa,0x5d,0x8e,0x81,0xa2,0xab, + 0x82,0x12,0x53,0xf9,0xdf,0xd0,0xb2,0xb6,0xbe,0xf1,0x0a,0x62,0xfd,0x5b,0x65,0x09,0x59,0xa4,0x95,0xbf, + 0x90,0x9f,0xed,0xa0,0xca,0x36,0xda,0x84,0xe0,0xfb,0x22,0x39,0x53,0xdf,0x82,0x21,0xf8,0xb9,0xd8,0xfa, + 0x3c,0x9f,0x26,0xdf,0x12,0xdd,0xa6,0xaf,0x4a,0x5c,0x9d,0x42,0x3d,0xbf,0x19,0xfe,0x5c,0xb4,0xfb,0xf8, + 0x6e,0x75,0xda,0xd3,0x4d,0x2a,0xad,0x83,0xf5,0x51,0x73,0xad,0x4f,0xc4,0xd1,0xb0,0xfb,0x95,0xbe,0x4d, + 0x14,0xdf,0xa9,0xad,0x4f,0xe4,0xa2,0x6c,0xbf,0x7f,0xde,0x3d,0xda,0xf6,0x11,0x9d,0x79,0x92,0x2d,0x45, + 0xd0,0xde,0xa9,0xa1,0x28,0x1b,0x22,0xac,0xfb,0x2f,0xcc,0x73,0x1d,0xb6,0x92,0x56,0xb6,0x77,0xca,0xba, + 0xf6,0x4e,0x7c,0x19,0xfc,0xca,0x5e,0x9f,0x67,0x1b,0x66,0xb3,0x78,0x9e,0xce,0x7f,0x17,0x08,0xa7,0xfc, + 0x4b,0xf7,0xc8,0x77,0xca,0x30,0x3d,0x3d,0x70,0x95,0xd1,0x97,0x5c,0xf2,0xed,0x4f,0xdd,0x3b,0x2e,0xf5, + 0xed,0x95,0x7c,0x87,0x94,0xbe,0xef,0x32,0x9b,0x2f,0xcc,0x65,0x97,0x45,0x6d,0xae,0xee,0x90,0xaf,0xf4, + 0x65,0x53,0xa5,0xbc,0xba,0xdb,0xa7,0xfc,0x42,0xee,0x16,0xaa,0x76,0xaa,0xb9,0x17,0xd2,0x4f,0xe5,0x1b, + 0x4c,0x61,0xce,0x0b,0x2a,0x4f,0x37,0xd1,0x36,0x6b,0x35,0x17,0x5b,0x6e,0x19,0x10,0xb7,0xea,0xd1,0x57, + 0x74,0xfa,0x49,0x55,0x0a,0xf7,0x08,0x7d,0x37,0xa7,0xbd,0x36,0xd5,0x26,0x38,0xbf,0x2d,0x56,0xa7,0x48, + 0xa2,0x09,0x5b,0xee,0x8a,0x3d,0x9e,0x53,0xa3,0x53,0x2f,0x81,0x6f,0x5a,0x35,0xaf,0xad,0x18,0xe0,0xb5, + 0x97,0xc6,0x17,0xce,0xf9,0xbd,0xd9,0x0e,0x22,0x0e,0x93,0x21,0xf5,0x23,0x21,0x66,0x5e,0x8a,0x18,0xd1, + 0xf1,0x66,0xf9,0xd9,0x8a,0x6f,0x29,0x8f,0x81,0x74,0x87,0x3f,0x16,0xb2,0x4c,0x7c,0x43,0xfd,0x36,0xe6, + 0xec,0x9f,0x96,0x4d,0xef,0x8d,0xf4,0x44,0xf9,0x84,0xbf,0x78,0x50,0x4a,0x0d,0xcb,0xae,0xcc,0x3a,0x37, + 0x93,0x18,0x6c,0xcc,0xf7,0x58,0x70,0x7c,0x13,0x61,0xb3,0xe4,0xd6,0x18,0x67,0x1a,0xc7,0xab,0x8e,0x98, + 0x37,0xde,0xa4,0xd1,0x50,0x37,0xaa,0xa9,0x92,0xce,0x9d,0x3a,0xaa,0xa8,0x3a,0xa8,0xa1,0xa9,0xa2,0xe1, + 0x71,0x80,0x3d,0x1b,0x20,0xe4,0xf5,0xd2,0xb3,0xc3,0xd0,0xe1,0xd3,0x90,0xc2,0xe1,0xc0,0xf0,0x50,0xc2, + 0x71,0x2c,0xa8,0x60,0xba,0x5f,0x67,0x30,0xcf,0xe8,0x31,0xcb,0x93,0x5e,0x36,0x15,0xcc,0x03,0x2e,0xc3, + 0xa2,0x52,0x59,0x7f,0x00,0xed,0x63,0xdc,0x1f,0x66,0x43,0x05,0x59,0x99,0xc4,0xc1,0xc1,0x30,0xe2,0xfb, + 0x6d,0x6d,0x96,0xb5,0xf8,0x46,0x24,0x79,0xed,0x44,0x8a,0x19,0x87,0x8f,0x86,0xbe,0x9b,0x5b,0x42,0x4b, + 0x0c,0x75,0x60,0xcb,0x4c,0x02,0x5b,0xca,0xb0,0x62,0x7e,0x34,0x83,0x89,0x11,0xcf,0xdd,0xc5,0x99,0x34, + 0x43,0x43,0xb2,0x46,0x04,0xf7,0x9d,0xf8,0x08,0xf2,0x98,0xf2,0x94,0xcf,0x38,0x73,0x39,0xb6,0x4a,0x81, + 0x97,0x34,0x66,0x81,0x9d,0x14,0x38,0x0f,0xf1,0x5d,0xb1,0x53,0x4b,0x30,0xe2,0x71,0x3d,0x4c,0x0b,0xd2, + 0x34,0x10,0x49,0x59,0x25,0x37,0xf5,0x79,0xb9,0x9a,0x4f,0x69,0xaf,0xd2,0x0c,0x36,0x80,0x2d,0xd5,0xb1, + 0xcc,0xe5,0xe1,0x48,0xf0,0x12,0x83,0x2b,0xb2,0x25,0xaf,0xf9,0xcf,0x1a,0x3f,0x5c,0x2c,0xd8,0x8d,0x97, + 0xb0,0xd5,0xa5,0xbe,0x3c,0x99,0x86,0x1e,0xe8,0x0b,0x98,0xb7,0xe2,0x8e,0x84,0xe1,0x6f,0x6d,0x89,0x90, + 0x84,0x34,0xb4,0x94,0x64,0xd2,0x6c,0xe2,0x6e,0xb6,0x77,0x93,0x72,0xaf,0x1a,0x48,0xbb,0xd3,0x62,0x5d, + 0x2e,0x45,0xc5,0x83,0x98,0xcf,0x44,0x9b,0x40,0x24,0x5a,0xa9,0xaa,0xd2,0x17,0xdd,0xb6,0xe6,0x2e,0x43, + 0x14,0x4d,0xa4,0x5e,0xa6,0xf3,0x4f,0x21,0x47,0x62,0xaf,0x3c,0x5c,0x8d,0xd4,0x5b,0x4c,0x94,0x3b,0x17, + 0xcb,0x8b,0x8c,0xa1,0xf1,0x65,0x0c,0xef,0xd0,0x73,0x44,0x51,0x27,0x64,0x4d,0x3f,0x27,0x70,0x39,0xf7, + 0x2b,0xf7,0x3b,0x72,0xdb,0x65,0x55,0x7d,0xb8,0xff,0xa1,0xdc,0x50,0x25,0x37,0x02,0xd3,0x51,0xfb,0xde, + 0xc8,0x43,0x3b,0xac,0xcc,0x30,0x95,0xb0,0x27,0xb7,0x30,0x7d,0x3b,0xc5,0xe8,0x85,0x4e,0x89,0x1b,0xdf, + 0xab,0xd4,0x52,0x20,0xcd,0x28,0x8b,0x5f,0x88,0x14,0x87,0xb8,0xb8,0xde,0x6d,0x95,0x62,0x43,0x25,0x4f, + 0x89,0x00,0x7c,0x78,0x7b,0x81,0xfd,0xa0,0x0e,0x4e,0x92,0x37,0x54,0x88,0x7a,0xc4,0x54,0xe8,0xd6,0xa1, + 0x24,0x4a,0x62,0xc2,0x2b,0x3f,0xb1,0xf9,0xb3,0xbd,0x6b,0xae,0x31,0x49,0x8d,0x4d,0xb2,0x76,0x6b,0x3b, + 0x6d,0xa4,0x91,0xad,0xd7,0x3d,0xd1,0xe6,0x1b,0x6d,0x9e,0x48,0xe4,0xed,0x05,0x6c,0xe5,0xa2,0xb6,0x37, + 0x46,0x63,0x24,0x9f,0xf0,0xc5,0x50,0x75,0x02,0x98,0x19,0xa6,0xc4,0x80,0x74,0x2f,0xc4,0x63,0xe5,0xe1, + 0x71,0x7a,0x12,0xf1,0x65,0x43,0x49,0x3a,0x4a,0x8d,0x4b,0x79,0x1d,0x75,0x2e,0x89,0xab,0xa3,0x11,0x71, + 0x72,0xf5,0x89,0xdd,0xb1,0x1b,0x8c,0x5b,0xa2,0x87,0xd2,0xc3,0x22,0x6b,0xce,0xcb,0x29,0x3f,0xca,0x15, + 0xd0,0x78,0x9a,0xe8,0x58,0x02,0xfd,0x13,0xb3,0x3d,0x9c,0xbe,0x28,0xfb,0x86,0x60,0xe6,0x61,0xaa,0x06, + 0xa6,0x8f,0x39,0x07,0x6a,0x30,0xed,0x5f,0x10,0x4b,0x93,0xbc,0x10,0x89,0x6c,0xa5,0x26,0x95,0x5a,0x55, + 0x1d,0x0d,0x6d,0x97,0xe6,0x06,0x04,0x10,0xce,0x9e,0xe3,0x16,0x28,0x35,0xe3,0x10,0x6c,0x1c,0x88,0x8d, + 0x6d,0x61,0x7a,0x68,0x56,0xa2,0xf2,0x6c,0x34,0x6e,0x10,0xaf,0xfe,0x7b,0x14,0x4d,0x5a,0x64,0xa1,0x9f, + 0x17,0x7e,0x44,0x38,0x6e,0x63,0xa0,0xe7,0x2a,0xb6,0x4e,0x7b,0x2f,0x89,0x7c,0x4f,0xcf,0xb2,0xc7,0xe7, + 0x69,0x51,0x64,0xf3,0xf5,0x7a,0xf7,0x2a,0x6c,0x27,0x81,0xee,0x36,0x97,0x19,0xb5,0x73,0x08,0xad,0xd5, + 0x4d,0xb5,0xc2,0x19,0xcc,0xf7,0x1b,0xb5,0x73,0xad,0x9c,0x29,0xec,0xe9,0x9f,0x71,0xaf,0xfb,0x08,0x57, + 0x3a,0x67,0x54,0xb2,0xac,0x18,0xf5,0xb5,0x2b,0x52,0xe7,0x55,0xb2,0xa4,0x69,0xa6,0xc3,0xe8,0xfe,0x50, + 0x3f,0x1c,0x0d,0xc0,0xa1,0x72,0xa9,0xe4,0xa3,0x6a,0x57,0x7f,0x8e,0x22,0x75,0xa3,0x2b,0x81,0xb0,0x67, + 0x73,0xcb,0xa4,0x12,0xce,0x5e,0xe4,0x35,0xcf,0xa7,0x7e,0xd4,0x96,0xbb,0x17,0x55,0xa2,0x13,0xcc,0x0d, + 0xb9,0x44,0x4a,0xd7,0xad,0x56,0x2e,0x2a,0xb9,0x6e,0x98,0xf8,0x9d,0xb7,0x45,0xcb,0x65,0xf0,0xcc,0x44, + 0x1b,0xa6,0x0f,0x26,0x15,0x03,0xc5,0xa2,0x52,0x67,0x32,0x34,0x62,0xc6,0xae,0xab,0x8e,0xa0,0x49,0x8b, + 0x53,0xf7,0x02,0x1b,0xc7,0x99,0x85,0x57,0x84,0xa1,0x82,0xff,0xc7,0xd6,0xe7,0x19,0xc0,0xc5,0xca,0xae, + 0xe2,0x2c,0xf2,0x0a,0x55,0x88,0x1b,0x2b,0x85,0x8a,0xdb,0x0a,0x19,0x1b,0x3a,0xd6,0xc1,0x67,0x49,0xd5, + 0x2a,0xa7,0x60,0x11,0x01,0xc1,0xe6,0x56,0x3c,0xbe,0x06,0xec,0xe7,0xb8,0x92,0x6b,0x9b,0x4e,0x19,0x52, + 0x2f,0xf9,0xef,0x15,0x87,0x6a,0xfa,0xc4,0x50,0x7b,0x87,0xff,0x3e,0xc6,0xd9,0xf1,0x10,0x7f,0xde,0x55, + 0x3d,0x74,0xb1,0x39,0xe7,0x16,0x08,0x9e,0xce,0x5e,0x18,0x63,0xc6,0x56,0x44,0x03,0xc9,0x39,0xe6,0x12, + 0x8c,0x2d,0x30,0x27,0x57,0xa3,0x50,0x9f,0x89,0x74,0x28,0xee,0xee,0x56,0xfc,0x20,0x87,0x0d,0x64,0x0d, + 0x9c,0x84,0x07,0x7d,0x3f,0x7c,0xfa,0xc7,0x35,0x27,0xe1,0x41,0x33,0x34,0x44,0xf9,0x71,0x12,0x1e,0xf4, + 0x81,0xc4,0x95,0xb9,0x3a,0xdc,0xa7,0xde,0x17,0x9a,0xca,0x9c,0x9c,0x1a,0x2a,0x9d,0xd8,0xa4,0xfd,0xfd, + 0x87,0xba,0x21,0x89,0xa4,0x66,0xa9,0xd7,0x69,0x4e,0xe7,0xbe,0xab,0xc7,0x1e,0xe3,0x60,0xa5,0x34,0x31, + 0x9f,0x5d,0x3e,0xf1,0xdf,0x29,0xf3,0x39,0x21,0x2a,0x0d,0x10,0x5e,0x91,0x6e,0xaa,0xd3,0x20,0x40,0xdc, + 0xde,0x13,0x9f,0xa0,0x91,0x3b,0xe3,0x89,0x06,0x69,0x30,0x96,0x38,0xf4,0x5f,0x3b,0x3e,0x3b,0xbb,0xaf, + 0x0b,0x11,0x5b,0x18,0x30,0x87,0x3b,0x98,0x0e,0x73,0x32,0x08,0xdc,0xad,0x8f,0x3d,0x07,0x66,0xcf,0x21, + 0xdc,0x42,0x9f,0xc3,0x2c,0xd1,0x67,0xb1,0xbb,0x46,0x6e,0xc3,0x5e,0x52,0x5e,0x7f,0x70,0x51,0x5e,0x5f, + 0xef,0x22,0xb8,0xc5,0x2b,0x8f,0x12,0xb2,0x53,0x69,0x6c,0xcb,0xcc,0x67,0x08,0x3e,0xf3,0xce,0x3f,0xe9, + 0x3b,0xf4,0x39,0xd3,0xd5,0x43,0xa9,0x40,0x79,0xec,0xe3,0xbf,0x75,0x3c,0x1f,0x9b,0x14,0x79,0x8c,0x9d, + 0xdc,0xf0,0x8c,0x5b,0x01,0x35,0x90,0x72,0xe0,0xbc,0x26,0xf1,0xfa,0xaa,0xef,0x6d,0x53,0x56,0xbc,0x62, + 0x0c,0xbd,0x0d,0x14,0x45,0xcd,0x79,0x55,0x5e,0xd2,0x21,0xf2,0x96,0x95,0xf5,0x77,0xe5,0xb3,0x1d,0x9a, + 0xbe,0x1d,0x0d,0xd7,0x3b,0x08,0x42,0xdb,0x5e,0x52,0x98,0xa2,0x44,0x1b,0xc2,0x49,0x54,0xf9,0xf5,0x8d, + 0x85,0xcd,0xbd,0xbd,0xef,0xc2,0x56,0x07,0xd1,0xfb,0x72,0x19,0xea,0x29,0x82,0x14,0xa0,0x58,0x2d,0x01, + 0x4f,0x2e,0x1e,0x1e,0x1d,0x25,0xad,0x79,0x11,0x2e,0xb9,0xc7,0xf9,0x26,0x23,0x48,0x1e,0xb6,0x01,0x0e, + 0x72,0x8b,0x10,0xf6,0x70,0x61,0x27,0x5d,0xe2,0x7e,0xb5,0x20,0xd8,0xb0,0xfb,0x3e,0x18,0xdb,0xef,0x8d, + 0xa4,0x40,0x36,0x6f,0xd4,0xe9,0x92,0xd7,0xef,0xcf,0xb0,0xe8,0xd8,0x36,0xf6,0x5e,0x7b,0xf0,0x06,0x86, + 0xbf,0x30,0x99,0x60,0x33,0xfa,0xfa,0x4f,0xe3,0xc2,0x6d,0x07,0x4e,0xf2,0xa0,0x45,0x04,0xda,0xed,0xc2, + 0x75,0x77,0xe8,0xef,0xc0,0x76,0x4d,0x5b,0x3b,0xb1,0x93,0x20,0x12,0x98,0x30,0x52,0xae,0xc2,0xda,0xdb, + 0xed,0xfe,0x44,0xb5,0xf7,0x7d,0xd1,0x9e,0x44,0x13,0x63,0xb2,0x33,0x43,0x22,0x75,0xd8,0x92,0xd0,0xf0, + 0x46,0xf0,0x10,0xcd,0xae,0xde,0x0f,0xc0,0x54,0x92,0x5e,0xad,0xa8,0x70,0x7c,0xcb,0x62,0xeb,0xc0,0xd1, + 0x49,0x72,0x85,0x3b,0x9c,0x19,0x6e,0xf9,0x09,0xe8,0xeb,0x4e,0xcb,0xee,0xef,0xb4,0xb2,0xa6,0x88,0xc3, + 0xe2,0x9b,0xc7,0xd5,0xde,0xde,0x69,0xc5,0x37,0x97,0x4d,0xbf,0xe1,0x9a,0xa2,0x82,0xe3,0xf8,0x9b,0x70, + 0xd1,0xc5,0xfe,0x91,0x3a,0x84,0x1c,0x87,0x0f,0xbb,0x53,0x73,0xa9,0x64,0x34,0xfc,0x84,0x9d,0x8e,0xd3, + 0xe1,0x50,0x7d,0x08,0x27,0x19,0x3b,0xc8,0x69,0x79,0x4d,0x6b,0xbc,0xd4,0x6d,0x7f,0xb0,0x30,0x44,0x77, + 0xd8,0xd5,0x44,0x29,0x71,0x5b,0x9f,0x8d,0x8c,0x76,0xb5,0x2c,0x8d,0x11,0xc5,0x7a,0x9d,0xf3,0xd5,0x71, + 0x76,0xeb,0xb4,0xa0,0x45,0x5c,0x36,0x4d,0xad,0x2d,0x1e,0x4b,0xb6,0x6c,0xa5,0x37,0xdd,0xe4,0x54,0xf6, + 0xb7,0xde,0xfe,0x8a,0xe9,0x72,0x2b,0x46,0x7d,0x1b,0x66,0x86,0x11,0x53,0x77,0x8d,0x95,0xc6,0x5f,0xda, + 0xd9,0x72,0x57,0xf9,0xad,0x2d,0x6c,0x3a,0xd3,0x91,0xa1,0x8b,0x7d,0x00,0xe0,0x21,0x45,0x9e,0x08,0xff, + 0xd4,0x81,0x28,0xa3,0x55,0xcb,0xb6,0x18,0xed,0xcf,0x76,0x98,0xbf,0xb5,0xf4,0xe7,0x61,0x77,0xa9,0x1a, + 0x82,0xfb,0x69,0x79,0xf9,0xd9,0xf5,0xd2,0x83,0x43,0xa0,0x9e,0x47,0x19,0xd1,0x7d,0x4f,0x8c,0xfe,0x68, + 0xbd,0xb6,0x23,0x77,0xc7,0xbc,0x30,0xb0,0xc3,0xbf,0xd5,0xb9,0xce,0xde,0x1e,0xb6,0x0e,0xe3,0xa3,0x8d, + 0xf0,0x6d,0xef,0x89,0x38,0xc9,0x8a,0xd5,0x22,0x33,0xf2,0x1c,0xd5,0x91,0xef,0x40,0x69,0x13,0x9f,0xa9, + 0x1a,0x7f,0x37,0xea,0x35,0x15,0xc7,0x0e,0x03,0x73,0x3e,0xbc,0x93,0x85,0x8f,0x3d,0x89,0xab,0x70,0xfa, + 0xbf,0x55,0xea,0x45,0xa5,0x9e,0x56,0xea,0x4d,0xa5,0x9e,0x53,0x69,0xb8,0xf0,0xfb,0x3c,0xb4,0xa6,0x70, + 0xf8,0x38,0xec,0xf7,0xd0,0xef,0x71,0xc1,0xcf,0x6b,0x3b,0x3d,0x51,0x9f,0x93,0x7e,0x12,0x4a,0x14,0xe6, + 0x9b,0x31,0x8b,0x79,0x24,0x13,0x9d,0xd7,0x5e,0xc7,0xe3,0x4a,0x69,0x6f,0xf8,0x8f,0x70,0xe6,0x8f,0x53, + 0xf3,0xfa,0x74,0xbe,0x88,0x2b,0x61,0xd8,0x88,0x76,0xcb,0x66,0x78,0xcf,0xe5,0x7d,0x83,0x6b,0x28,0xc4, + 0x7b,0xbb,0x6d,0xd6,0xa3,0xcc,0x6d,0x2f,0xda,0x90,0x27,0x99,0xe8,0x07,0x55,0x77,0x6d,0x77,0x28,0xab, + 0x93,0x42,0xd8,0x90,0x08,0x96,0xed,0x0b,0x46,0x39,0x4e,0x00,0x2e,0x6e,0x8e,0x06,0x77,0x58,0xfb,0x18, + 0x82,0x3e,0xcd,0xa8,0x3b,0x5a,0x3a,0xe7,0x5d,0x71,0xa4,0x7d,0xca,0xe1,0x6d,0xff,0x70,0x6e,0x37,0x3f, + 0x82,0x72,0x3e,0x07,0x14,0x66,0x1c,0x1d,0x21,0x2c,0x71,0x4d,0xbc,0x8d,0x67,0xba,0x51,0x26,0x23,0x6e, + 0xb3,0x5a,0xc6,0xd1,0x6e,0x2b,0x88,0xc1,0x6e,0x1f,0x61,0x2a,0x0d,0xed,0xee,0x86,0x39,0x56,0xca,0x44, + 0x25,0x18,0x8c,0x65,0x02,0x1e,0x6b,0x61,0xed,0x7a,0x6d,0x42,0x9f,0x3a,0x6b,0x3e,0x2e,0xef,0xbd,0xf3, + 0xb5,0x05,0xda,0x14,0xd2,0xd5,0xe3,0x2d,0x52,0x52,0x11,0x9d,0x2b,0xa1,0xaf,0xf8,0x71,0xac,0xef,0xad, + 0x0e,0xcd,0xa3,0x11,0xa6,0xf2,0x1d,0x49,0xb7,0x75,0x25,0xc9,0x91,0x29,0xb7,0x5c,0x98,0xcb,0x81,0xda, + 0x37,0x84,0x2d,0x71,0x69,0xc5,0x1d,0x7b,0x95,0x3d,0x42,0xf2,0x53,0x52,0x03,0xd3,0x16,0x5b,0xa9,0x58, + 0x59,0xde,0xe4,0xd5,0xa0,0x25,0xa2,0x32,0x16,0xc1,0xc2,0xba,0x23,0xe0,0x0c,0xca,0xa9,0x3a,0x69,0x0d, + 0x89,0xd2,0xa0,0x60,0x41,0xe8,0x69,0x25,0x7e,0xc9,0xb5,0xef,0x96,0x6c,0xe2,0xf7,0x1c,0x4f,0x88,0xe3, + 0xc7,0xa5,0xe5,0xcf,0xc2,0x95,0xea,0xb6,0x2d,0x97,0xe4,0x6d,0xb7,0x7f,0xb8,0x55,0xf2,0x09,0x0b,0xcf, + 0x37,0xce,0xa0,0x79,0x9e,0x6c,0x4f,0xb0,0x8b,0x09,0xf1,0x99,0x3c,0x9c,0xc3,0x72,0xf5,0xe3,0x3c,0xda, + 0x94,0x3c,0xf1,0x77,0x6a,0xbe,0xbe,0xbe,0x80,0x85,0xa2,0x17,0x26,0x9b,0x32,0x68,0x1a,0x26,0x5a,0x4d, + 0x8e,0x38,0x49,0xfe,0xa5,0xc5,0x76,0x93,0xf6,0x6c,0x5c,0xe5,0x85,0xb0,0xa0,0x67,0xbb,0x0a,0x80,0x38, + 0x17,0x1d,0x63,0xa3,0x24,0x2c,0xd7,0xf6,0xa1,0x2d,0xf7,0x10,0xe9,0xcb,0xeb,0xaa,0xbe,0x16,0x86,0x55, + 0x2b,0x16,0x5a,0xe8,0xbf,0xb2,0xb9,0x35,0x47,0x04,0x35,0x0a,0x7f,0x36,0x70,0x6b,0xef,0x2e,0x76,0x35, + 0x77,0xdf,0x8c,0x42,0xb8,0xaf,0x46,0xb8,0x5f,0xd9,0xe2,0x52,0x62,0xf4,0x8c,0x4f,0x66,0x14,0xa7,0xa8, + 0x70,0xf7,0x10,0x14,0x9d,0xb6,0x09,0xe8,0xa5,0x35,0xb6,0x3b,0xda,0xb4,0xf0,0x1c,0x3b,0x82,0xb6,0x7b, + 0x62,0x25,0x95,0x62,0xe4,0x2a,0x48,0x34,0x64,0xa9,0xd4,0x60,0x2c,0x36,0x0f,0xcf,0x0b,0xc7,0x6d,0x95, + 0x88,0xbd,0xca,0x54,0x9e,0xed,0x6b,0x84,0x40,0x95,0x5e,0xcf,0x0f,0x87,0x9e,0x34,0x73,0x58,0x11,0xcb, + 0x72,0xa7,0x7b,0xad,0x39,0x64,0x9a,0xb8,0x30,0xd3,0x66,0x1c,0x57,0x27,0xc4,0xdd,0xa3,0x07,0x2d,0xdb, + 0x06,0x26,0x5b,0x30,0xee,0xb8,0xf1,0x6e,0x32,0xa6,0x54,0xf5,0xa4,0x6a,0x09,0x29,0x9f,0xd3,0x7e,0x7d, + 0x56,0x25,0x47,0xea,0x55,0x95,0xdc,0x57,0x2f,0xd1,0xf0,0x6f,0xbe,0xde,0x8e,0x2f,0xae,0xde,0xa6,0xc5, + 0x05,0x03,0xc9,0x21,0x36,0x5e,0x11,0x83,0xf9,0xb2,0x32,0x7a,0x38,0x9a,0xb6,0x8f,0x2b,0x1e,0xb2,0x44, + 0x65,0xf3,0xce,0x80,0x51,0x1f,0xb2,0x73,0x30,0xdf,0x91,0x5f,0x31,0x28,0x19,0x21,0x8d,0x35,0xee,0xe4, + 0x50,0x1f,0x3e,0x66,0x1a,0x16,0x06,0xf5,0x98,0xe0,0x0f,0xaa,0xe8,0xa2,0x2e,0x9b,0x40,0x27,0x8a,0xfb, + 0x9c,0x5e,0x90,0x23,0x07,0x0d,0x92,0xe5,0x49,0x0b,0xd3,0x7a,0x6e,0x50,0xf4,0xb6,0x47,0x92,0xb7,0xb6, + 0xca,0xd6,0x6e,0xcd,0xbd,0xdd,0x53,0x6c,0xa3,0x41,0xbb,0x9b,0x90,0x69,0xdb,0x79,0x9f,0x9e,0xc9,0x75, + 0xb8,0xaa,0xd1,0x87,0x18,0x83,0xbb,0x3e,0xd8,0x4c,0x9a,0xda,0x72,0x03,0x4c,0xb6,0xfc,0x72,0x22,0xa1, + 0x5a,0x09,0x4d,0x09,0xbd,0x7d,0xc7,0xdd,0x6d,0xfe,0x3a,0x0b,0x8d,0x56,0xce,0x4c,0x2e,0x6d,0x33,0x0e, + 0x97,0x2d,0x82,0x0b,0x59,0x45,0x69,0xeb,0x4d,0x55,0x5e,0x89,0x78,0x40,0x27,0xd7,0xd9,0x7c,0x26,0xef, + 0x7d,0xdb,0xc8,0xde,0x9a,0x59,0xd8,0xc5,0x60,0x1a,0x1e,0xe1,0x26,0x6d,0xb8,0x1d,0x1d,0x92,0xb3,0x70, + 0xb8,0xce,0xe4,0xec,0xed,0x51,0xa2,0x89,0xa9,0x88,0x88,0xc0,0xe6,0xa5,0xf0,0x76,0x82,0x51,0xda,0x66, + 0x26,0x97,0xef,0x39,0xba,0x53,0x95,0x25,0x3d,0x8d,0x0a,0x79,0x8a,0x33,0xa4,0x59,0x75,0xe5,0xf1,0x09, + 0x17,0xc9,0x66,0xb8,0xb5,0xc7,0x13,0xd8,0x88,0x78,0x28,0xf3,0x36,0xa1,0x49,0xe8,0x6e,0xe0,0x23,0x2e, + 0xe5,0x50,0x95,0x7e,0xb7,0x08,0xc2,0xa6,0xb4,0xc9,0x47,0x90,0x76,0x5a,0x1e,0xe4,0xcf,0x17,0x95,0xd4, + 0x97,0x08,0xf5,0xd9,0xf3,0x50,0x2e,0xb1,0x85,0xb0,0xad,0x61,0xab,0x89,0x44,0x47,0x1c,0x6b,0x3e,0x7b, + 0x74,0x40,0x1f,0x2a,0x97,0x5f,0xdd,0xd2,0xa0,0x9c,0xdd,0x66,0x7c,0x02,0x2f,0xef,0xab,0x2c,0xab,0x9d, + 0x76,0xb8,0xb3,0x84,0xf6,0xc0,0x6f,0x6f,0x38,0xda,0x81,0x05,0x56,0xca,0x44,0xb9,0xf4,0x0f,0xa2,0xa6, + 0x0b,0xea,0x72,0x67,0xa2,0x4f,0x6a,0x24,0x7c,0xc4,0x8f,0x27,0x2d,0x63,0x6f,0xe5,0xdf,0x14,0xfd,0xde, + 0xbb,0x4b,0x15,0xf1,0x1e,0x36,0xbc,0x96,0xbe,0x25,0xe2,0x5f,0xfd,0xf6,0x50,0xeb,0x43,0x72,0xe9,0x31, + 0x87,0xa5,0x87,0x02,0x26,0x10,0x1a,0x24,0x80,0x40,0x2f,0xf7,0x48,0x0f,0x09,0x6a,0x25,0x25,0xec,0xfe, + 0x0d,0x54,0xb3,0x35,0xdd,0xae,0xb4,0x99,0xed,0x5a,0xb6,0x95,0x6a,0x1b,0xb5,0x45,0x2a,0xcc,0x93,0x65, + 0x16,0x86,0x5a,0x58,0xe8,0x16,0x50,0xa4,0xfc,0x4a,0xe2,0x72,0xf4,0x90,0x32,0xaa,0x75,0x6d,0x6d,0x4f, + 0xf8,0x6f,0x5a,0xd5,0x77,0x21,0x34,0x96,0x39,0xb1,0x17,0x30,0xe4,0xeb,0xa1,0x47,0xb6,0x80,0xc0,0x70, + 0x30,0x70,0x9b,0xef,0xae,0xf8,0xb0,0x31,0xce,0x2d,0x9f,0x47,0xd3,0x0e,0xf1,0x31,0xd2,0xa8,0x2c,0xa9, + 0xa5,0x63,0xe0,0xf7,0x50,0x5b,0xd8,0x80,0x25,0x02,0x03,0x99,0x0d,0xbd,0xd5,0xd7,0x52,0x7b,0xaa,0xd9, + 0xa6,0x4b,0x5c,0xee,0xc4,0x7b,0xbd,0x34,0x21,0x6d,0x9f,0xc1,0x5c,0x9a,0x96,0x96,0x78,0x1b,0x8c,0x1c, + 0x4e,0x19,0x8a,0xf5,0x35,0x84,0xbd,0x56,0x1c,0xd6,0x46,0xfa,0x11,0x80,0xd6,0xee,0x44,0x05,0x88,0x52, + 0x38,0xcf,0xf7,0x4c,0x11,0xfb,0x39,0x69,0x92,0x12,0xc6,0xd8,0xa2,0x87,0xe9,0xce,0x41,0x77,0xf4,0xed, + 0xcb,0xeb,0x1b,0xbe,0xbc,0x3e,0x11,0x51,0x05,0x24,0x89,0xa3,0xb3,0x78,0x19,0x8a,0x96,0x4f,0xae,0x47, + 0x36,0xf5,0xa2,0x09,0x40,0xe1,0xe8,0x73,0xd8,0x53,0xe0,0xb4,0x0c,0x91,0x36,0x66,0x5d,0x5d,0xaf,0xf0, + 0xb4,0xdd,0x43,0xcf,0x28,0x38,0xd3,0x0c,0x7b,0x4b,0x14,0xa0,0xf3,0x58,0x22,0xa0,0xd8,0x74,0x33,0xc4, + 0x5d,0x55,0x37,0x2c,0xea,0xe4,0x73,0x82,0x2f,0x44,0x86,0x24,0x8d,0x6f,0x36,0xf3,0xef,0x36,0xf0,0x41, + 0x91,0x63,0x7c,0x6f,0x11,0xc4,0x69,0xe2,0x33,0x0e,0x7a,0xb0,0xca,0xc8,0x64,0xa2,0x61,0x6a,0xc5,0x61, + 0x88,0x64,0x9d,0x9e,0x0c,0x69,0xe3,0xcd,0x88,0x6c,0x45,0x78,0xcd,0x2f,0xfe,0x29,0xb6,0xe7,0x61,0xbd, + 0x1f,0x04,0x91,0x7f,0xa5,0xd1,0x21,0x08,0xa6,0xaf,0xbf,0x4a,0xf8,0x12,0x49,0xbd,0xc2,0xe8,0x39,0xae, + 0xe8,0xdc,0x3c,0x14,0x02,0x07,0xa1,0x4d,0xe2,0x87,0xa1,0x99,0x29,0x02,0x41,0x80,0x7d,0x63,0x75,0x67, + 0xb7,0x41,0xf3,0xd8,0x14,0xf8,0xc9,0x6c,0x89,0x3e,0x54,0x5c,0x25,0x7f,0x20,0x42,0x79,0x2b,0xdc,0x46, + 0x63,0x18,0xaf,0x06,0x57,0xb6,0xf4,0x2e,0x4e,0x39,0x2a,0xe3,0x12,0x02,0x8f,0x21,0xc4,0x49,0x05,0x6e, + 0xf4,0x00,0xa3,0xf9,0x0e,0x9e,0x9c,0xb4,0x6b,0xce,0xd4,0x19,0xf1,0xee,0x70,0xcb,0xd0,0xd0,0x8b,0x48, + 0xe1,0x7c,0xeb,0x9e,0xb8,0xdd,0xd9,0xce,0x47,0xec,0xf1,0x45,0xfd,0x83,0xb1,0x0b,0x3f,0xec,0x8a,0xe6, + 0xf3,0x16,0xbf,0x09,0xaf,0x7b,0x15,0x03,0xe2,0x76,0xdc,0x8e,0xca,0xbf,0x73,0x0d,0xf7,0x3d,0x9a,0x45, + 0xe2,0xfb,0x1e,0xa7,0xfa,0x76,0x79,0x04,0x0f,0x11,0x0e,0xd7,0xa4,0x98,0xae,0x89,0xbd,0xa0,0xc1,0x7a, + 0x58,0xb6,0xa6,0x8b,0xda,0xb4,0x52,0x31,0x12,0x52,0x58,0xbf,0x4d,0xfb,0xe6,0x09,0xe7,0xb5,0xc0,0x6a, + 0x14,0x17,0x1e,0x0e,0x35,0x96,0xc0,0x9a,0x18,0xb1,0x35,0xc3,0x47,0x49,0x52,0x84,0x2b,0xef,0xe6,0xd2, + 0x51,0xb1,0xbd,0xb1,0x70,0x69,0xcf,0xe7,0x8c,0x61,0x18,0x70,0x36,0x43,0x1b,0xc8,0xa9,0xf8,0x6c,0x61, + 0x86,0xf7,0x7e,0x73,0x99,0xeb,0xd0,0xa3,0x9c,0xe9,0x04,0x11,0x50,0xa5,0x0d,0xf3,0x57,0x0a,0x6b,0xcc, + 0x55,0x44,0x2d,0xb3,0x39,0x5c,0x0d,0x96,0xbc,0x6f,0x27,0xc9,0x7d,0x49,0xc9,0xeb,0x76,0x6a,0x9f,0x06, + 0x5d,0xae,0x16,0x72,0xa1,0x5a,0xb0,0x98,0x42,0x16,0xca,0x2d,0xcd,0xb8,0x75,0x41,0xae,0x41,0x17,0x8d, + 0xd4,0xa1,0x89,0x6c,0x2a,0xb0,0xea,0x17,0xb5,0xfe,0x7b,0xb9,0xd3,0xe4,0x36,0x4e,0x30,0xa8,0x8c,0x63, + 0x84,0x6f,0x3f,0x53,0x59,0xd1,0x1b,0x47,0x2a,0x0e,0x7f,0xa3,0xec,0x37,0x55,0x72,0xef,0x3f,0xb8,0xbb, + 0x3c,0xbe,0xa7,0xc2,0xa7,0x55,0x42,0x69,0xfe,0x28,0xca,0xa2,0xa3,0x7b,0xde,0x82,0xdf,0xcc,0xc1,0xef, + 0x6d,0x01,0xf0,0x04,0x28,0x0a,0x0e,0xca,0xae,0xf4,0xe5,0x1f,0x02,0x2a,0x9a,0xea,0xa2,0x03,0xd3,0x68, + 0x0c,0x5c,0x8a,0x17,0xcc,0xa9,0x41,0x3f,0x8d,0xba,0x09,0x50,0xcc,0x25,0xdb,0x34,0x99,0xd5,0x4c,0x32, + 0x5c,0x6c,0xd4,0xd3,0xaa,0x3d,0x8e,0x49,0xd6,0x19,0x89,0x73,0xd4,0xe7,0xa9,0xb9,0x53,0xce,0x66,0xec, + 0xc0,0xad,0x8c,0x9d,0x50,0xe5,0x5d,0x46,0xb6,0xd1,0x5b,0x98,0xaa,0x76,0x53,0x3f,0x23,0xaa,0x5a,0x55, + 0x32,0x34,0x7c,0x58,0x6d,0xb5,0x3a,0x9b,0x6d,0x4f,0xdf,0x6e,0xd7,0x6e,0x29,0x6a,0xc1,0xf3,0x67,0xe8, + 0x50,0x6e,0xbd,0x6f,0x01,0x6e,0xfe,0xda,0x0a,0x60,0x80,0x7a,0x09,0xfc,0xa9,0x12,0xd4,0xd3,0x99,0xfd, + 0xf6,0xad,0x10,0xa6,0x65,0x67,0xd5,0xd1,0x5d,0x2c,0x89,0xcc,0xaf,0x8b,0x35,0x16,0x24,0x4a,0xff,0xda, + 0x48,0x3e,0x74,0x28,0x3b,0x2c,0x93,0x1c,0x46,0x1a,0x30,0x5d,0xc0,0xfd,0x40,0xb3,0xa2,0x73,0x79,0x64, + 0xba,0x75,0x79,0x64,0xdf,0x9a,0x66,0x8b,0x3e,0x4e,0x58,0x98,0x21,0xf0,0x3b,0xed,0xc1,0x14,0x70,0x22, + 0x33,0x7c,0xfb,0x37,0x47,0x23,0x78,0xe5,0xc4,0x85,0xc7,0xe1,0x9f,0x87,0x76,0x61,0xa8,0x79,0x3a,0x54, + 0x0f,0x39,0x58,0x8a,0x41,0xc6,0x0f,0x4a,0x46,0xc8,0x7c,0x0f,0x16,0x61,0x63,0x63,0x4b,0x06,0x44,0x6c, + 0x9d,0x7c,0xde,0x86,0x05,0xed,0xce,0xbb,0xdc,0xee,0xce,0xb9,0xb8,0x10,0xb0,0x74,0x1f,0xde,0xd1,0x22, + 0xc7,0xf7,0x94,0x6c,0xe1,0x8b,0xee,0x76,0x1b,0x77,0xb5,0x36,0x42,0x49,0x68,0x2e,0x5e,0xf3,0x3a,0xb0, + 0x0f,0x68,0x91,0xb6,0xda,0xfd,0xc2,0x84,0x29,0x94,0xc5,0xce,0xe6,0x4a,0xab,0xa3,0x85,0xd1,0xa0,0xf1, + 0x8c,0xab,0xe1,0xb8,0xf2,0x79,0x47,0x61,0x26,0x88,0x7f,0x18,0x99,0x6f,0x8c,0x45,0x1c,0x8b,0x42,0xc7, + 0x08,0x07,0x9c,0x45,0x5a,0x0d,0xdc,0x93,0x6b,0x5b,0xe2,0x58,0x1c,0x47,0x9d,0xb3,0xc1,0x63,0xea,0x3b, + 0x19,0xc2,0xd6,0x77,0xcf,0x12,0x5f,0x22,0xd0,0x57,0x5e,0x07,0xa8,0xa6,0x21,0xe4,0x7c,0xbb,0x20,0x31, + 0xea,0xe3,0x8b,0x55,0x36,0x1e,0x27,0x6e,0x77,0xa0,0x37,0x06,0x3f,0xd0,0xa3,0x2d,0xe1,0x31,0xd2,0x77, + 0xb4,0xa0,0x54,0x5e,0xa4,0x4d,0xf3,0x26,0x13,0xa2,0xb5,0x42,0x3a,0xcf,0x49,0x56,0x5b,0xa9,0x76,0x3a, + 0xee,0xf0,0x29,0xf7,0xa2,0x05,0x99,0x9e,0xb8,0x6f,0x4b,0x01,0x63,0x48,0x7e,0xdd,0xa6,0x79,0xf5,0xcc, + 0x84,0xdb,0x75,0x69,0x61,0x51,0x47,0x59,0xb2,0x6b,0x80,0xa2,0xcd,0xde,0xc2,0x1e,0xa6,0x05,0x1b,0xc6, + 0x03,0x27,0x52,0xfd,0x1f,0xb8,0x9b,0x1d,0xfd,0xd1,0x0d,0x77,0x59,0xd5,0xd0,0xa3,0x7c,0x69,0xaf,0x8c, + 0x91,0x13,0x40,0x29,0xe3,0xb1,0xf7,0x2d,0xb9,0xc5,0x2d,0xc3,0x75,0x27,0xd1,0xd0,0x19,0xd2,0xb5,0x8a, + 0x58,0x31,0x70,0x63,0x75,0x37,0x36,0x0b,0x76,0xd5,0x5e,0x0d,0x8e,0x6c,0xd0,0xd6,0x9c,0xa6,0x35,0x2f, + 0xc9,0xd8,0x3e,0x1e,0x1c,0xd8,0xa9,0xf0,0x67,0x41,0xf5,0xc1,0xb6,0xde,0x3a,0xda,0xbd,0xc8,0xcc,0xac, + 0xf3,0x65,0xb2,0x20,0x4c,0x98,0xf5,0xf3,0x00,0xe8,0x83,0x68,0x1b,0x9e,0x5a,0xc2,0x7a,0xb1,0xb6,0xdf, + 0xa8,0x3b,0xc4,0xa1,0xfe,0xd6,0xc1,0x0e,0x91,0xfa,0xad,0x05,0x18,0x05,0xf1,0xfa,0xef,0xf3,0x49,0xdb, + 0xf2,0x51,0x63,0x97,0x0f,0x5a,0xcf,0x48,0xd0,0xd4,0xfa,0x48,0x0b,0x03,0xb6,0xcc,0x1c,0x94,0x87,0x36, + 0xad,0xc0,0xa1,0x4a,0x8c,0xa8,0x4b,0x79,0x01,0x93,0x45,0xc6,0xc7,0x51,0xe0,0x1c,0x4e,0x8a,0xda,0xe6, + 0x7a,0x5a,0x00,0x61,0xac,0xf6,0xcc,0x3b,0xac,0xf6,0x10,0x9c,0xdf,0xf8,0xa6,0xad,0xd7,0xe9,0xf1,0x21, + 0xa2,0xbf,0xd1,0x5f,0x28,0x73,0x84,0x40,0xb5,0x65,0x93,0xc7,0x74,0x10,0xb0,0xa8,0xb8,0x69,0x0b,0x2c, + 0x72,0x73,0x43,0x5b,0x5b,0x83,0x02,0xbd,0x84,0xd9,0xc3,0x39,0xdb,0x5d,0x64,0x89,0xb6,0xb6,0x68,0x5a, + 0xf2,0x33,0x14,0x6b,0x89,0x2f,0xb6,0x50,0x78,0x20,0xa5,0xe1,0x19,0x9f,0x18,0x0c,0x60,0x8d,0x51,0x68, + 0x88,0x22,0x93,0x26,0x82,0xf9,0x97,0x02,0x92,0xe8,0x24,0xab,0xc2,0xc8,0x45,0x0f,0x84,0x56,0x45,0xe8, + 0xd7,0xb7,0x95,0xfa,0xa9,0x52,0x8f,0x2a,0xf5,0xb1,0x4a,0x8e,0xb5,0xa7,0xe4,0xdb,0xec,0xec,0xe9,0xd5, + 0x52,0xac,0x6d,0x4f,0xd4,0x87,0x2a,0xb9,0xf9,0xc1,0x88,0xb0,0x63,0x1d,0xd9,0xc4,0x8f,0x14,0x6d,0xf6, + 0x18,0xeb,0xeb,0x24,0xb8,0x45,0x5e,0x4c,0xe6,0xab,0x69,0x16,0x7f,0x24,0xf4,0x7c,0x65,0x1f,0x17,0xe9, + 0x55,0x6c,0xda,0x90,0xbb,0x6d,0x4e,0x36,0x4a,0x13,0xee,0x71,0x17,0x0b,0x4d,0x52,0xda,0x47,0xb7,0x12, + 0x19,0xcc,0x59,0xc2,0x77,0x43,0x59,0x58,0x6f,0x39,0xb6,0x18,0x3d,0x2b,0x2f,0xb6,0xad,0x2e,0x7a,0x6e, + 0x24,0x99,0x78,0x53,0x99,0xab,0x8a,0xc0,0x90,0x77,0xae,0xeb,0xba,0x0f,0xb3,0x6f,0xf4,0xc6,0x72,0x32, + 0x24,0x0b,0xc7,0x4f,0xb5,0x04,0x0d,0x22,0xa7,0xab,0xbf,0xf3,0xe5,0xae,0xfb,0x72,0xa3,0xb6,0xe3,0x0c, + 0xf8,0x28,0x8f,0xc1,0x6d,0xa0,0x03,0x7c,0xd1,0x46,0xf8,0x45,0x0c,0x85,0xd9,0x9f,0x61,0x4b,0xe2,0xec, + 0x87,0xd9,0x7c,0x81,0x4b,0x08,0x94,0xa6,0x9c,0xf4,0xc0,0x60,0x66,0x2e,0xea,0x7b,0x7e,0xe5,0x7b,0x28, + 0x09,0xaa,0x77,0x89,0xed,0x44,0x97,0x72,0xc8,0x97,0x88,0xe4,0xd9,0xdb,0x23,0x84,0xf8,0x14,0xb7,0x64, + 0xbb,0xa8,0xf9,0x8d,0x89,0x0d,0xe4,0xa6,0x50,0x9b,0x81,0x60,0x0a,0xd5,0xc4,0x88,0x33,0xf8,0xae,0xe2, + 0x42,0x22,0xa7,0x4f,0xf2,0xe9,0x7e,0x28,0x91,0x2b,0x82,0x38,0x46,0x80,0x36,0x8e,0xc5,0x12,0x40,0xcd, + 0x80,0xc8,0x4a,0xe9,0xf1,0xe4,0x64,0xd4,0xab,0x6d,0x42,0x4e,0x8f,0xc2,0x69,0x2e,0x37,0x53,0x69,0xdb, + 0x9c,0x09,0x62,0x24,0xa3,0x24,0xd1,0xb9,0x36,0x49,0x96,0x95,0xa0,0x8d,0x08,0x11,0x43,0x4e,0xd9,0x30, + 0x80,0x26,0x8f,0xb6,0xf2,0x73,0xd0,0x71,0xb8,0xb3,0x54,0xb5,0xe8,0x8d,0xc8,0x88,0x5c,0x9c,0xe6,0x06, + 0x52,0x1f,0x33,0x09,0x74,0xee,0xec,0xed,0x65,0xf4,0x15,0x31,0x28,0xc3,0xb7,0x40,0x81,0x2a,0x7c,0x04, + 0x13,0xc1,0xe8,0x16,0x2e,0xf0,0x7d,0x71,0x1b,0xf3,0x47,0x9b,0x2f,0x10,0x75,0x7d,0x40,0x5b,0x30,0x52, + 0x6f,0xe9,0x90,0x6d,0xf2,0x79,0x72,0x03,0x07,0xcf,0xf8,0xfb,0x82,0x40,0xaa,0x21,0xc8,0x88,0x2f,0xd4, + 0x02,0x26,0xd9,0x7a,0x89,0xe3,0xe7,0x4a,0xea,0x79,0x2b,0xea,0x9b,0x2c,0x7e,0xb7,0xc1,0xa7,0xc2,0xf8, + 0xbd,0x85,0xd9,0xa0,0x66,0xf7,0xe8,0xd9,0xe2,0xe0,0x0f,0x78,0xeb,0x57,0x9b,0xc8,0xb6,0xba,0xc5,0xf0, + 0xda,0x7d,0x65,0x0c,0xb0,0xfb,0xdc,0xaf,0x22,0xaf,0xf6,0xc1,0xf8,0x34,0xad,0xb3,0x84,0x06,0x77,0x11, + 0x7a,0xa9,0x76,0x29,0x6b,0x42,0x29,0x32,0xd6,0x3a,0xbb,0x85,0x3a,0x86,0x78,0x9d,0xd6,0x1b,0xd7,0x79, + 0xbc,0x99,0xaf,0xce,0x72,0x8e,0xab,0xda,0x9f,0xc1,0x37,0xda,0x31,0xb2,0x37,0x1e,0x91,0x19,0xee,0x86, + 0x68,0xf1,0x05,0x42,0x76,0xb6,0xc9,0x67,0xc7,0x24,0x69,0xef,0x09,0x2d,0x9f,0xe8,0x91,0x39,0x20,0xf6, + 0x08,0x37,0x3a,0xb2,0x4f,0x9a,0xb8,0xe6,0xb0,0x5a,0x7d,0x5f,0x40,0x8f,0xe5,0x5d,0x08,0xc6,0x3c,0x9b, + 0x6f,0x4c,0xc6,0x0b,0xb6,0xc8,0xaf,0xf2,0x5e,0x6f,0x69,0x1e,0xa9,0xd3,0xbf,0xf8,0xaf,0xca,0x56,0xd0, + 0x96,0xd3,0xd2,0x3e,0x4b,0x0e,0xb5,0x80,0xf6,0x68,0x98,0x0d,0x04,0x72,0x5a,0x95,0x67,0x09,0xeb,0x6c, + 0x3c,0x22,0x9c,0x0f,0x50,0xfa,0x52,0xee,0xb5,0xc5,0x7e,0x95,0x6b,0x03,0xf1,0xc4,0x22,0x3d,0x20,0x07, + 0xe8,0x0b,0x8d,0x05,0xba,0x71,0x56,0x41,0xfc,0x0f,0xb9,0xed,0xd0,0xc6,0x50,0x91,0x70,0xd9,0xed,0x08, + 0xd8,0x66,0xc5,0xf2,0x86,0x5d,0x22,0x74,0xc4,0x80,0xd4,0x1d,0xf7,0x5d,0x58,0xf2,0x68,0x89,0xc8,0x57, + 0x37,0x25,0x29,0x02,0x4f,0xd3,0x10,0x71,0xe3,0x7a,0xea,0x4d,0x4d,0xe1,0xcf,0x0b,0x9d,0xb6,0xab,0x25, + 0x54,0x34,0xae,0xc8,0xb6,0x7c,0xda,0x09,0x4f,0x3f,0x2b,0x9e,0x85,0xec,0xd0,0x97,0xb6,0x8c,0xad,0xb4, + 0x65,0x83,0xab,0x44,0xd2,0x16,0x58,0x77,0xa5,0x86,0xdb,0x6d,0x98,0x52,0xdd,0x66,0xe6,0xed,0x66,0x0a, + 0x76,0xf4,0x30,0x4d,0xe8,0x35,0x2c,0xf4,0x03,0xa5,0x08,0xc4,0x14,0xf2,0x4b,0xef,0xd8,0x41,0x05,0xfe, + 0xde,0xea,0x36,0xc1,0x9c,0x2f,0x07,0x93,0x55,0x72,0x41,0xca,0xf6,0x76,0x64,0x3f,0x04,0x3b,0x7b,0xc6, + 0x1d,0xce,0xcd,0xac,0xe9,0x88,0xc9,0xc9,0xf8,0xde,0x95,0x94,0xb6,0xa0,0xf5,0xbf,0xc3,0x9d,0xb7,0xa9, + 0x53,0xb8,0xe6,0xec,0xe1,0xa4,0xd2,0xcd,0x86,0x10,0x40,0x44,0x04,0x06,0x90,0xc1,0x2d,0x3d,0xfc,0x89, + 0x3d,0x3f,0x7c,0xed,0x8c,0xe7,0x58,0x12,0x7a,0x61,0x01,0xc4,0x59,0xac,0x0c,0x0b,0x09,0x1e,0x5f,0x70, + 0xf4,0x7d,0x0d,0x85,0xd6,0x9c,0xb5,0x85,0x82,0x74,0xbf,0x71,0x11,0x8f,0x1f,0x53,0x40,0x2a,0xea,0x93, + 0x2d,0x72,0xb8,0x95,0x1b,0x44,0xae,0x8c,0x0b,0xa5,0x03,0x99,0x17,0x1b,0xe3,0xef,0xd3,0xc2,0x82,0x30, + 0x29,0x2c,0xd8,0xe5,0xa5,0x37,0x0f,0xb6,0xe4,0xfd,0x38,0xff,0xb7,0xb6,0x10,0x2f,0xaf,0xdf,0x89,0x97, + 0xb1,0xb8,0x44,0xff,0x51,0xfc,0xd5,0x0f,0xeb,0xba,0xd2,0x4e,0x91,0xdb,0xde,0xd4,0x3e,0x1a,0x69,0x73, + 0x93,0x42,0xcb,0xbb,0x6f,0xd1,0x4f,0xaa,0x18,0x1e,0x6f,0x39,0xac,0xae,0xef,0x0f,0xbe,0x1a,0x1c,0x7d, + 0x21,0x01,0x5a,0xbe,0xab,0xd4,0x1f,0x95,0xfa,0xbd,0x52,0x3f,0x54,0xea,0xfb,0x4a,0x7d,0x5b,0xa9,0x9f, + 0x2b,0xf5,0xef,0x4a,0xfd,0x52,0x71,0x20,0x0d,0xbe,0x4f,0x59,0xdf,0xa5,0xaa,0x7e,0xe4,0x34,0xbe,0x33, + 0x46,0xa1,0x5e,0xa2,0x32,0x53,0x25,0xb3,0xa2,0xe4,0xde,0x1c,0x90,0x86,0x67,0x30,0x18,0x04,0xc9,0x9a, + 0xdf,0xe2,0x4b,0xe4,0xee,0x0d,0xa7,0xb5,0xf8,0xb1,0x62,0x59,0x5a,0x20,0x31,0x8a,0xe1,0x72,0xd1,0x20, + 0x5c,0x8b,0xbe,0x85,0x47,0x17,0x0a,0xa4,0x11,0x5e,0x54,0xca,0x25,0x9a,0x64,0xf2,0xc9,0x65,0xca,0x25, + 0x36,0x3a,0xcf,0x46,0x42,0x47,0x0e,0x04,0xcc,0x25,0xe7,0x6c,0x54,0x93,0xa3,0xf3,0x13,0xb9,0x44,0x3d, + 0x9b,0xe6,0x0d,0x4c,0xe7,0xd4,0xb4,0x4a,0xcf,0xce,0xf8,0xa9,0x5e,0x66,0xf3,0x39,0xd7,0x4c,0x7d,0x2f, + 0xb8,0x30,0x1d,0x01,0xe5,0xe5,0x8c,0x50,0x7b,0x4d,0xa8,0x8b,0xf8,0x49,0x76,0xc6,0x54,0xe9,0xaa,0x29, + 0x67,0xe5,0x64,0x55,0xf3,0xd3,0x72,0x9e,0x5e,0x2b,0xdd,0x21,0x0e,0x39,0x42,0xa7,0x35,0xac,0xf3,0x88, + 0x5c,0x9d,0xd7,0x74,0x84,0xd3,0xdc,0x55,0x99,0x32,0x64,0x9d,0xfe,0x35,0xe5,0xf5,0x2b,0xf7,0xd9,0xbc, + 0x98,0xa1,0xe3,0x9d,0x58,0x9e,0x69,0x5e,0xa3,0x7b,0x53,0x95,0x15,0xf2,0x8b,0xd8,0x05,0x45,0x49,0x53, + 0x98,0x03,0x72,0xd5,0x79,0x3e,0x9d,0x52,0xd7,0x70,0x2c,0x36,0x59,0xb5,0xc8,0x0b,0x24,0x12,0x44,0x55, + 0x8d,0xca,0xeb,0x45,0xba,0x54,0x79,0x93,0x2d,0x24,0xc6,0xc9,0xbc,0x2c,0x97,0xca,0x5c,0xdf,0xa4,0xa4, + 0xd1,0xa2,0x44,0x90,0x16,0x85,0xc0,0x12,0x75,0xfe,0x07,0xe1,0xa6,0xb2,0x3e,0x4f,0xc1,0x6b,0xba,0x16, + 0x8a,0x12,0x71,0xa3,0x68,0x9d,0xa9,0x99,0x65,0x4a,0x68,0x88,0x76,0xea,0x55,0xde,0x10,0x39,0x9b,0x4e, + 0xcb,0x62,0x8e,0x78,0x2a,0xbf,0xaf,0x68,0xdf,0x4d,0x95,0x76,0xaa,0x9c,0x2a,0xe1,0x87,0x08,0x26,0xd2, + 0xc5,0x9c,0x80,0x41,0xd9,0x31,0xc1,0xfb,0x92,0x67,0xdb,0x5e,0x98,0xc2,0xe1,0x40,0x69,0xee,0x29,0x13, + 0x30,0x8f,0x90,0x12,0x1c,0xfd,0x5d,0x5d,0xe4,0x75,0x4e,0x25,0x11,0xe0,0x3d,0x4f,0x82,0xf3,0xa6,0x59, + 0xc6,0xf7,0xee,0x5d,0x5e,0x5e,0x0e,0x2e,0xbf,0x18,0x94,0xd5,0xd9,0xbd,0xa3,0xaf,0xbf,0xfe,0xfa,0xde, + 0xd5,0x3c,0x2f,0x3e,0x05,0x2a,0xcf,0x7b,0x0e,0xd8,0x20,0x6e,0x39,0x9f,0x7c,0x05,0x28,0x93,0xf2,0x9c, + 0x6c,0x82,0xf3,0x7c,0x05,0x4f,0xbb,0xbe,0xef,0x77,0x72,0x58,0xe2,0x5a,0xbf,0x92,0x7f,0x2a,0x23,0xcf, + 0xe4,0x68,0x2d,0x2a,0xed,0xfd,0x46,0x88,0x63,0x02,0xc4,0xdd,0x23,0x01,0xbb,0x3a,0x4f,0x6e,0xea,0x0b, + 0x22,0x86,0xb7,0x47,0x70,0xff,0xf0,0xf0,0xf0,0x1e,0xe5,0x05,0xc4,0x33,0x35,0xe7,0x7d,0x25,0x68,0x8c, + 0xff,0xba,0x87,0xbb,0x47,0xf9,0xcf,0xcb,0x17,0xd4,0xec,0x84,0x21,0xf3,0xbc,0x59,0xcc,0xd5,0x69,0x39, + 0xbd,0x56,0x40,0x81,0xea,0x9c,0x96,0x42,0x61,0x68,0x0a,0x31,0xc7,0x95,0xec,0xda,0x26,0x6f,0xe8,0x6f, + 0x3a,0x9d,0x62,0x3f,0xaa,0xb4,0x6a,0xf2,0x09,0xde,0x6b,0xda,0x13,0x04,0x44,0x25,0x6e,0xc7,0xc4,0x77, + 0xf8,0x39,0x52,0xe7,0xf7,0xd5,0xf9,0x17,0xea,0xfc,0x4b,0x75,0xfe,0x95,0x3a,0xff,0xa7,0x3a,0x3f,0xab, + 0xca,0xd5,0x52,0x15,0xe9,0x05,0xad,0x1d,0x8f,0x91,0x00,0xf1,0x42,0x4d,0x09,0x2a,0xe7,0x6a,0xda,0x28, + 0x22,0x66,0xe1,0x5b,0x83,0x74,0x36,0x43,0xcd,0xd4,0x32,0x9f,0xc0,0xd5,0x46,0x9d,0x13,0x97,0xbe,0x38, + 0xa3,0xce,0xd0,0xa0,0xe8,0xf4,0x2a,0xe7,0x6a,0x09,0xa3,0x46,0xb5,0x9a,0xab,0x54,0x9d,0x12,0x1b,0x79, + 0x5a,0xa9,0xd3,0x69,0x4e,0xff,0x4b,0x45,0x8f,0x13,0x02,0x4f,0x8e,0x3f,0xa4,0xf8,0x92,0xf8,0xe9,0x8c, + 0xc8,0xe1,0x85,0xca,0xd5,0xa7,0xd3,0x29,0x55,0x50,0x7d,0x52,0xbf,0xab,0x6a,0xa9,0x08,0x98,0xab,0x66, + 0xa2,0xaa,0xd5,0xe9,0x35,0x51,0xf1,0x75,0xba,0x58,0x2a,0x82,0x6d,0x22,0xb9,0xea,0x65,0x4a,0xa8,0x87, + 0xf6,0x1a,0x31,0x9b,0xf5,0xea,0x94,0xfe,0x2f,0xf9,0xbe,0x58,0xb5,0x52,0x84,0xdc,0xd4,0xe5,0x29,0x84, + 0xe7,0x84,0xa4,0xd2,0xd5,0x34,0x2f,0x15,0xb6,0x03,0x98,0xd8,0x4f,0x8a,0x11,0x03,0xb5,0x74,0x4a,0x60, + 0x27,0x7e,0x60,0x30,0x42,0x4d,0x17,0x04,0xa0,0xab,0x8a,0xf8,0x8f,0x49,0x5a,0x5c,0xa4,0xd4,0xd2,0xa4, + 0xca,0x97,0x0d,0x36,0x85,0x3c,0x10,0xcd,0x0d,0x23,0x37,0x65,0xc6,0x3e,0xa1,0xe1,0xd1,0x7f,0x99,0x2c, + 0x0d,0xd8,0xbc,0x16,0x0d,0xaf,0x4d,0x43,0x0f,0xe7,0xd4,0xa2,0x12,0xe4,0xc6,0x43,0x84,0xf9,0x00,0xcd, + 0x59,0x36,0x9f,0x12,0x25,0xcf,0x9b,0x59,0x09,0x42,0x9d,0xa7,0xa7,0x54,0xfb,0x3c,0x3b,0x03,0x11,0xb0, + 0xc0,0x66,0x06,0x6a,0x95,0xaa,0x35,0x8e,0x2d,0x57,0x0d,0x4a,0x1a,0x1c,0x6b,0x70,0xae,0x45,0xc5,0x84, + 0x02,0xd2,0x1c,0x58,0x27,0x4f,0xe7,0xe5,0x19,0x55,0x52,0xac,0xf8,0x0f,0x50,0x00,0x4d,0xcd,0x82,0x26, + 0xf4,0x5a,0x69,0x0c,0xa8,0x32,0x91,0x39,0x28,0xec,0xf7,0xf2,0x52,0x99,0xa0,0x59,0x8a,0xc3,0x92,0xfd, + 0xbe,0x2a,0x81,0x46,0x66,0x15,0xc8,0xbd,0x06,0xd0,0x82,0x1b,0x83,0x19,0xf4,0x08,0x60,0x55,0x5a,0xe4, + 0x0b,0x94,0x9d,0xe4,0xd5,0x84,0xcf,0x87,0x7c,0xb9,0x24,0x00,0x55,0x93,0x55,0x45,0x3b,0x1c,0x98,0x0b, + 0xa8,0xaf,0x9e,0x50,0x23,0x94,0x45,0x00,0x2a,0xf1,0x7d,0x68,0xb8,0x45,0x73,0x30,0x4b,0x27,0x00,0xc0, + 0x2a,0xcb,0xcf,0x0a,0x39,0x04,0xd5,0x99,0x3a,0x9b,0x5f,0x2f,0xcf,0x09,0x72,0xd2,0xb3,0x0c,0x80,0x9c, + 0xf1,0xe2,0x67,0x90,0x26,0xd4,0x04,0xd4,0x79,0x8d,0xdb,0xcb,0x0e,0xa4,0x10,0xb7,0x44,0x7f,0xa8,0x42, + 0x42,0x48,0xe5,0xfc,0xfa,0xac,0x94,0x5f,0xfe,0x0e,0xe7,0xff,0xff,0xd7,0xde,0x9b,0xaf,0xb7,0x6d,0x2c, + 0xfb,0xa2,0xaf,0x42,0x61,0xe9,0xc8,0x40,0xd8,0xa2,0x24,0xdb,0xc9,0x4a,0x40,0xc3,0xdc,0x8e,0x9d,0xc1, + 0x89,0x1d,0x7b,0xc7,0x4e,0xb2,0x56,0x24,0x46,0x1b,0x22,0x21,0x0a,0x36,0x05,0x70,0x01,0x20,0x65,0x45, + 0xe4,0x03,0xdd,0x7f,0xef,0x23,0x9c,0x27,0xbb,0xf5,0xab,0xea,0x6e,0x34,0x40,0xc8,0x43,0xf6,0x70,0xcf, + 0x1f,0xe7,0xcb,0x17,0x0b,0xec,0x79,0xa8,0xae,0xae,0xaa,0xae,0x41,0x89,0x11,0xb5,0x2a,0xd9,0xc9,0x06, + 0xaf,0x0f,0xff,0xc3,0x35,0x2b,0x86,0x19,0x50,0x53,0xab,0x34,0xb9,0x12,0xdf,0x50,0xf3,0xce,0xb3,0x3c, + 0x11,0x4d,0xfc,0x25,0xc7,0xe5,0xa6,0x29,0x74,0x32,0x54,0x53,0x5e,0x14,0xee,0x42,0x62,0x07,0xb2,0xa9, + 0xd9,0x55,0x5e,0x30,0xfa,0x2b,0x68,0x14,0x09,0x1d,0x04,0x0c,0x62,0xae,0x96,0x05,0x9c,0x62,0x2f,0xd2, + 0xb6,0x53,0xab,0x86,0x10,0xa8,0x53,0xf3,0xf7,0x16,0xc7,0x5b,0x36,0x40,0xb1,0xbe,0x30,0xd9,0xd1,0xf8, + 0x28,0x0b,0xfd,0x4a,0x2b,0xd1,0x56,0x8e,0x12,0xed,0xde,0x9e,0x13,0x1f,0xa9,0x4e,0xb6,0x01,0xfd,0xa0, + 0x09,0xd3,0x0c,0xb0,0x6e,0x72,0xe0,0x6b,0xc9,0x7c,0x06,0x1c,0x2c,0xb0,0x31,0x8c,0x9f,0x5e,0xb5,0xc6, + 0x6c,0x5e,0x15,0x3b,0x07,0xfd,0xd3,0x2b,0xbf,0x84,0x6a,0x0a,0x1b,0x0a,0x4b,0xce,0x6b,0x5a,0x3d,0xc4, + 0x82,0x0c,0x3b,0x36,0xa1,0xd5,0x88,0x29,0xca,0x5b,0x22,0x49,0xda,0x63,0xc0,0x47,0x54,0xd6,0x25,0xb9, + 0xae,0xe8,0xaa,0x7e,0xcd,0xd2,0xe9,0x2d,0xeb,0x71,0xe6,0x00,0x6d,0xb6,0x2f,0x01,0x12,0x45,0x53,0x9f, + 0x15,0x98,0x5a,0xf3,0x35,0xbe,0x41,0x38,0x0f,0x21,0x3f,0x14,0x62,0x06,0x67,0xd3,0xee,0xb2,0x4e,0x1e, + 0x97,0xad,0x63,0x61,0x76,0x4d,0x21,0x71,0x62,0x65,0x6e,0x14,0x18,0xfd,0x57,0x74,0x2d,0xd2,0x69,0xe8, + 0x2e,0xec,0x14,0xd8,0x20,0x7a,0x18,0xbb,0x6a,0xea,0x2c,0xa9,0x33,0x37,0x30,0x1a,0xc0,0xaa,0x3e,0x16, + 0xbc,0xb0,0x35,0xdc,0xaa,0xce,0x8b,0x2a,0x2e,0x6d,0x21,0xa4,0x63,0xdd,0x1a,0x00,0xc4,0xeb,0x06,0x8f, + 0x6d,0x74,0x07,0xca,0x0e,0xb4,0x5a,0xff,0x2d,0xe1,0x15,0xd0,0x44,0x78,0xbb,0x67,0x86,0x51,0xa2,0x4e, + 0x6a,0x80,0x15,0x47,0xc2,0xbf,0x41,0xa6,0x86,0x63,0xcb,0xd5,0x6f,0xd1,0xe0,0x35,0x85,0x36,0x1b,0x3a, + 0xe7,0xda,0xe1,0x84,0xef,0x11,0x15,0xbd,0x51,0x88,0xd5,0x72,0x99,0xc2,0x1b,0x99,0xf1,0x30,0x66,0x14, + 0x64,0xad,0xef,0x30,0xf6,0x10,0x81,0x2d,0xad,0x7d,0x86,0x79,0x63,0x35,0xab,0xe7,0xf1,0x4b,0x62,0x46, + 0xfd,0x4b,0xd2,0xd9,0xff,0x2f,0xe8,0x7f,0x95,0xa2,0xff,0xeb,0x6e,0xcc,0x71,0x4a,0x43,0xb8,0x48,0xa9, + 0xd1,0xb1,0x3a,0xab,0x1b,0xfe,0x97,0x6d,0xf8,0x5f,0xb4,0x37,0x57,0x75,0xc6,0x0f,0x36,0xe3,0x07,0xca, + 0x78,0x97,0x46,0x07,0xc7,0x27,0x57,0xc1,0xa0,0x7f,0xb2,0x7f,0xba,0x7b,0x32,0x1e,0x1f,0xa8,0xb7,0x29, + 0xbc,0x6b,0x11,0x8f,0xb1,0xcb,0x1f,0x13,0x4f,0x3d,0xae,0x6b,0xd3,0x9d,0xad,0x6b,0x4f,0x69,0x13,0x1f, + 0xd5,0x19,0x0b,0x9b,0xb1,0x80,0xc1,0x5d,0xda,0x69,0xc7,0xcb,0x51,0xe5,0x0e,0x42,0x7f,0xd0,0x0f,0x0e, + 0x86,0x16,0x82,0xc4,0xcc,0xf2,0x60,0xe8,0x8f,0x76,0x8e,0xff,0xf0,0xc7,0x9f,0x9d,0x04,0xc1,0xc1,0xac, + 0x5b,0x23,0x0d,0x06,0x04,0xb5,0xe3,0x56,0xa9,0x08,0xed,0x01,0xfb,0x0e,0x0a,0x91,0xfb,0x31,0x62,0xa2, + 0xea,0xf0,0x3c,0xe3,0xa8,0xa8,0x43,0xf9,0x30,0x10,0x55,0xf4,0xff,0x6b,0x9a,0xf5,0x1f,0xfb,0xfb,0x07, + 0xea,0x05,0x7d,0x9c,0x94,0x9f,0xed,0xa4,0x97,0xb0,0x9c,0x8e,0xb3,0x6a,0xf7,0x40,0xbd,0xd9,0xe6,0x37, + 0xa8,0xdb,0xd7,0x3a,0x24,0x3c,0x01,0x4a,0x22,0xb1,0xfc,0x00,0xa3,0x96,0xdf,0xaa,0x5c,0x93,0x8d,0x17, + 0xba,0x6c,0x76,0x6b,0x59,0xeb,0x37,0xef,0x45,0xca,0xb1,0x87,0x3c,0x3b,0x00,0x37,0x30,0x5c,0x11,0x7d, + 0x93,0xfa,0xe2,0x90,0xbe,0xf9,0x46,0x9e,0x35,0x94,0x6c,0xba,0xde,0x75,0x75,0xbf,0x60,0xad,0xf1,0xbc, + 0x2b,0x43,0x73,0x13,0x09,0x9e,0x9e,0x01,0x76,0x25,0x04,0x21,0x81,0xe7,0xf3,0xfc,0x4f,0xe0,0x67,0xe2, + 0x48,0xd5,0x37,0xed,0xdd,0xa3,0x01,0xfc,0x5e,0x44,0xbf,0x17,0x1f,0xf0,0xdc,0x28,0xcd,0x5b,0x2f,0x7c, + 0x3b,0x6c,0x79,0x8d,0x88,0x10,0x50,0x42,0x64,0xe9,0xfa,0xef,0x26,0x9a,0x5e,0x2f,0x71,0xde,0xc9,0x3e, + 0xc6,0x2b,0xa1,0xf6,0x75,0xf1,0x2c,0xed,0x70,0xa8,0xf9,0x2c,0x3d,0xce,0xc6,0x7d,0x56,0x05,0x2e,0x9a, + 0xbd,0x14,0xd8,0xf1,0x97,0x35,0x94,0x5e,0x5a,0x28,0xbd,0x24,0x28,0x7d,0xda,0x9e,0xa7,0xb6,0x05,0x4f, + 0x6c,0xf8,0xf9,0x90,0x78,0xf4,0x7d,0xfe,0xe9,0xa9,0xc4,0x89,0x42,0x5f,0xa7,0xef,0x57,0xb9,0xce,0x72, + 0x62,0x2b,0x3b,0xd9,0x22,0x74,0xf5,0x54,0x1d,0x9e,0x99,0x33,0xf9,0xa7,0x4e,0x75,0xdb,0xe4,0x04,0x6e, + 0xb3,0x1d,0xaf,0xd9,0xc9,0xd6,0x6d,0x62,0x6e,0x4f,0x52,0xf6,0x25,0x86,0x48,0xcb,0xdf,0xa6,0x3a,0x7e, + 0x24,0xfb,0x8c,0xf5,0xd4,0x4f,0xf4,0x5b,0x08,0x2c,0xfe,0xf9,0xbc,0x95,0xfd,0x73,0xe3,0x37,0xdd,0x24, + 0x9e,0xfa,0xad,0x59,0xe3,0x6b,0xf7,0x27,0x0a,0x0c,0x9f,0x40,0xf8,0x6f,0xfd,0x34,0x68,0x07,0x66,0xe0, + 0x51,0x9d,0x66,0x1c,0xf2,0xc0,0x16,0xb8,0x62,0x20,0x6b,0x15,0xf3,0x31,0x22,0x27,0x02,0xa6,0x33,0xae, + 0xab,0x56,0xea,0x37,0x19,0x1e,0x27,0xb7,0x3b,0x76,0x47,0x77,0x7b,0xbf,0xcd,0x52,0xfe,0x6f,0xb6,0xdb, + 0x47,0xcd,0xb9,0x5e,0x35,0x13,0xb9,0x53,0xd1,0x42,0xf8,0x15,0xab,0x3c,0xd2,0xcd,0x82,0x4d,0xa5,0xd3, + 0x6d,0xcb,0x7d,0x0b,0xe2,0xf6,0xbd,0x99,0x03,0x08,0x89,0x7c,0x29,0x11,0x84,0xb5,0x3b,0x84,0xce,0x0b, + 0x15,0x4f,0xe6,0xbf,0x00,0x2d,0x9d,0xf9,0x36,0x60,0xc7,0x9a,0x78,0x94,0xc0,0x57,0xeb,0xdd,0xe0,0x40, + 0x7d,0xef,0xa0,0xa7,0xad,0x98,0x0e,0x42,0xe5,0x3d,0x76,0xee,0x7a,0xd0,0x76,0x15,0x8b,0xc1,0x1e,0x37, + 0xa8,0x0b,0xa8,0xb9,0x3a,0xa1,0x14,0x38,0x9a,0x9b,0x38,0x22,0x97,0xc8,0x19,0x4d,0x5f,0x54,0xb1,0x72, + 0x0d,0xc4,0xb8,0xa4,0x79,0x0d,0x95,0xfb,0x95,0x85,0xea,0x88,0xb4,0xac,0x0d,0x9c,0x3a,0xa3,0xeb,0x06, + 0xf0,0x22,0x64,0x9f,0x49,0x74,0x95,0x28,0x1e,0x40,0x5f,0x8b,0xf2,0xe4,0x07,0x04,0xc0,0x28,0x88,0x6b, + 0xf7,0x88,0x3b,0x52,0xdd,0x8d,0x99,0x33,0x5e,0x62,0x44,0x84,0x1f,0xfc,0x65,0xd0,0x50,0x5c,0x34,0x41, + 0x2f,0x1c,0xd5,0x9d,0x64,0x18,0x77,0x98,0xe2,0x48,0xf4,0xe8,0x8e,0x1c,0xf3,0x60,0x5e,0xf9,0xb9,0x36, + 0x0e,0xe4,0x51,0xe6,0x91,0x1b,0x8a,0x55,0xab,0x2b,0xe5,0x84,0x9e,0xf2,0x07,0x6f,0x07,0x86,0x04,0x30, + 0x68,0xaa,0xdf,0xcf,0x83,0x3a,0xf5,0x38,0x1f,0xfb,0xab,0x94,0x16,0x79,0xa8,0x0d,0x0d,0x62,0xa3,0x18, + 0x34,0x81,0x72,0x0a,0x5e,0x8d,0x69,0xcc,0x1b,0xbb,0xc6,0x6a,0x47,0x22,0x25,0xc8,0x2f,0xb3,0xb8,0xb2, + 0xe4,0xea,0xdc,0xf1,0xab,0xcd,0x41,0x2b,0x89,0x14,0xa3,0xbd,0xbe,0x08,0x46,0x3e,0xb7,0x04,0xb1,0x7b, + 0x39,0x7a,0xbc,0x45,0x36,0x23,0x59,0x5d,0x04,0x61,0x2b,0xc7,0xbf,0x80,0x58,0x7c,0x81,0x47,0x87,0x39, + 0x75,0x79,0x8e,0x45,0xad,0x78,0x51,0xa7,0xb2,0xc2,0x13,0xf8,0x78,0xe1,0x21,0xd2,0x50,0xc2,0xcc,0x77, + 0xbc,0x41,0xdb,0x2e,0x1f,0xb7,0x49,0x64,0xf1,0xe4,0xdc,0xaa,0xdb,0x2a,0x5c,0x13,0xe3,0x5d,0xa5,0x1d, + 0x5f,0xc2,0x25,0xbf,0xa1,0xdc,0x54,0xc6,0x58,0x4a,0x87,0x7c,0x17,0x28,0x15,0x49,0x2f,0x56,0xd5,0x3c, + 0xa6,0xa8,0xce,0x62,0x9d,0xa9,0x91,0x31,0x8d,0x90,0x75,0xdb,0x06,0x05,0xe8,0x05,0x9d,0xb3,0x17,0xa9, + 0xa9,0x68,0xc7,0x2d,0xd8,0x8d,0x13,0x13,0x91,0x81,0xb2,0x66,0x23,0xce,0x99,0x9a,0x68,0xc5,0xd6,0x1b, + 0xa3,0xe5,0xc7,0xe1,0xda,0x9d,0xa3,0x29,0xa2,0xe5,0xc7,0x4d,0x1e,0x41,0xea,0xd0,0xde,0xb8,0xe4,0x7d, + 0xc2,0xa1,0x54,0x6d,0xcb,0x73,0x87,0x2e,0xd9,0x8a,0x9a,0xd7,0xd4,0xbe,0xad,0x6a,0x38,0x4c,0x83,0xd8, + 0x67,0x95,0xe2,0x4c,0xaf,0x2d,0x3f,0x36,0x41,0xd1,0x90,0x89,0x83,0xc2,0xac,0x3e,0x86,0xd4,0xe8,0x9c, + 0x0b,0x6f,0xed,0x95,0x76,0x60,0x93,0x18,0x57,0xdd,0x8e,0x1f,0x69,0xe3,0x1d,0x63,0xd8,0x65,0xf8,0x16, + 0x74,0x9a,0x06,0xea,0xa3,0x56,0x87,0xbb,0x97,0x30,0x56,0x8e,0x1b,0x69,0xd9,0xfa,0xa6,0x05,0xdb,0x5b, + 0x3d,0xa8,0x7a,0x92,0x45,0x60,0xd2,0x88,0xca,0xc1,0x51,0x63,0xf4,0x77,0x65,0xc2,0x39,0x6b,0x4c,0x43, + 0x7b,0x71,0xa5,0x8b,0xd1,0x2f,0xf3,0x29,0xc5,0x15,0xf2,0x52,0x03,0x51,0x5d,0x1b,0xbb,0xb0,0x98,0x56, + 0x50,0x18,0xd4,0xbd,0xad,0x23,0xc1,0x20,0x78,0xdc,0x64,0x5e,0xf4,0x5a,0x83,0xcc,0x93,0x85,0xae,0xa7, + 0x90,0x20,0x80,0x10,0xea,0xd7,0xd6,0x95,0xc0,0x2f,0x6c,0x99,0x64,0xdf,0x26,0x4a,0xdd,0x2e,0xb6,0xe5, + 0xb6,0x86,0x55,0x1d,0x6c,0x08,0xc8,0x3e,0x3a,0x45,0x88,0xce,0x8c,0x5d,0x99,0xeb,0x86,0xcd,0x4f,0xeb, + 0x1c,0xf1,0xaf,0x75,0x54,0x2f,0xc2,0x85,0xeb,0xd9,0x51,0x6f,0x77,0xf1,0x20,0x4a,0x79,0x0f,0x62,0x9f, + 0x83,0xe3,0xe4,0xaa,0x19,0xb7,0x68,0x65,0x17,0x8e,0xa3,0xf5,0xb8,0x37,0x47,0x2a,0x80,0x8b,0x31,0xa5, + 0xf5,0x7d,0x80,0x01,0x6a,0xa6,0x08,0x13,0xaa,0x5d,0x9e,0xbd,0x35,0xc9,0xf5,0xce,0x67,0x81,0x4d,0x24, + 0x6a,0x50,0x07,0x5e,0x91,0xcd,0xa9,0x03,0xaf,0xeb,0x88,0x3e,0xec,0xf9,0xbf,0x6d,0xfb,0x88,0x81,0xaf, + 0x7c,0x27,0x1c,0x44,0x31,0x76,0xc6,0x7e,0xd9,0xbc,0x51,0xea,0xb9,0xea,0x6b,0x90,0x5d,0xc0,0x55,0xe2, + 0xb3,0x8b,0xfe,0x30,0xf4,0x8e,0xfc,0x19,0xde,0xe6,0x56,0xb8,0x17,0x43,0x04,0x38,0x82,0x52,0x90,0x8b, + 0xcf,0x66,0x02,0xd4,0x32,0x50,0x18,0x6f,0x6a,0xc4,0x16,0xd8,0xe8,0x44,0xd1,0x5b,0x7d,0x6b,0xdb,0x60, + 0xb2,0x43,0xbd,0x4e,0xc1,0xc8,0xb1,0xa0,0xed,0x47,0x69,0xd8,0x56,0x6d,0x6e,0x28,0x04,0x13,0xd9,0xb4, + 0xbf,0xef,0x54,0xc0,0xdb,0x58,0x52,0x47,0x98,0xaa,0x33,0x22,0xda,0xd4,0x8d,0x6f,0x6e,0x22,0x3a,0x0c, + 0x9d,0x76,0xb6,0xbc,0x3b,0x00,0x3a,0xad,0x04,0xc1,0x3f,0xcd,0x0d,0x39,0x43,0xb4,0x8c,0x40,0x99,0x23, + 0xda,0x18,0xbf,0x3e,0xa2,0x92,0x86,0x23,0x8a,0x05,0x18,0x4a,0x2f,0xee,0x09,0xad,0x74,0xe0,0x5d,0x14, + 0x0b,0x4c,0x84,0x2a,0xe8,0x79,0xf3,0x11,0xca,0x65,0x80,0xce,0xf6,0x40,0xbd,0x19,0xe4,0x4b,0x29,0x01, + 0xb9,0x08,0xd6,0x53,0x13,0x67,0x33,0x65,0x9c,0x5e,0xe0,0x5f,0xd6,0x77,0x41,0x24,0xd7,0x2d,0xbf,0x97, + 0x01,0x9d,0xc3,0xb4,0xe1,0x39,0xd3,0x78,0xb7,0x9a,0x06,0xa3,0x33,0xbf,0x90,0xf5,0x40,0x6c,0xe1,0xb4, + 0xd3,0x6b,0xe6,0xa1,0x65,0xfe,0x88,0x2a,0xb3,0x9e,0x3d,0x19,0x68,0x0b,0xf7,0x67,0xca,0xce,0x45,0x23, + 0x89,0x14,0x86,0x0b,0x8b,0x4b,0x8b,0x3f,0x4f,0x02,0x00,0xf9,0xf9,0x82,0xc9,0x9b,0x20,0xed,0xd0,0x73, + 0x29,0x3a,0x30,0xaa,0xe5,0x17,0x97,0x88,0x30,0x2c,0x87,0xaa,0xf2,0xe7,0xbc,0x8a,0xcb,0x68,0x5e,0x2f, + 0xe9,0x32,0x5a,0x5a,0x8f,0x01,0x94,0xb0,0xc4,0x9a,0x09,0x81,0x3b,0x45,0xc3,0x86,0x94,0x58,0x38,0xf6, + 0xa3,0x72,0x88,0xd0,0xd6,0x39,0xce,0x28,0xc3,0xfe,0x92,0x36,0x76,0x49,0x1b,0x2b,0x9c,0x54,0xbd,0xb1, + 0xcb,0xc0,0xa4,0x1d,0x2f,0xc7,0xd2,0x76,0xc7,0x00,0xa4,0x84,0xed,0x7e,0x93,0xf8,0xa9,0x5c,0x21,0xa3, + 0xca,0x9f,0x72,0xa9,0x45,0x30,0x9a,0xc2,0x61,0x80,0x43,0xcd,0x19,0x0f,0xb2,0x65,0x7d,0x03,0xe8,0xa8, + 0x8a,0xc4,0xfe,0x4e,0xe9,0xff,0x45,0x54,0x3b,0x68,0x51,0xab,0x08,0x12,0x00,0x35,0xa3,0x3f,0x8b,0xb1, + 0x3a,0xb5,0x1a,0xdb,0x94,0x75,0x16,0xa5,0xc8,0xba,0xa2,0x3f,0xa7,0x63,0xf5,0x2e,0xda,0x29,0x87,0xe7, + 0x0f,0xd0,0xd5,0xf4,0x41,0x74,0x4a,0x77,0x93,0xbf,0x0a,0x46,0xa8,0xde,0xef,0x9f,0x8f,0xc3,0xc4,0xa7, + 0x33,0x8c,0x56,0xf6,0xf7,0x17,0xe3,0xf0,0x6b,0xca,0x54,0x67,0x74,0xa8,0xaf,0xf1,0x17,0xc4,0x99,0x29, + 0xc8,0xad,0xf6,0xfb,0xd3,0x71,0x80,0x42,0x33,0x75,0xc5,0x85,0xe8,0x2f,0x0a,0x99,0xfa,0xdc,0xe7,0xfe, + 0xfe,0xa9,0x14,0x5a,0xe9,0x42,0x2b,0x29,0xf4,0x6e,0x8b,0x0e,0xc8,0xd4,0x4a,0xdf,0xbb,0x8e,0x28,0xce, + 0x9f,0x09,0x0a,0xa9,0x7b,0x6e,0x34,0x3a,0xd3,0xc3,0x9b,0xc9,0xf0,0xba,0x1a,0xe5,0x06,0xa4,0x69,0x67, + 0x68,0xf5,0xf8,0xfd,0x44,0xdc,0x5d,0x4c,0xa2,0x5f,0x61,0xd9,0x7e,0xae,0x16,0x50,0x04,0xf4,0x41,0xd0, + 0x9f,0x71,0x54,0xd2,0xd1,0xe4,0x98,0x3f,0xc6,0x1d,0x6e,0x3e,0x2c,0xa9,0x1d,0x9d,0x13,0x2d,0x9c,0x0e, + 0x73,0xc3,0xa2,0x03,0x3d,0xe6,0x63,0xc3,0x23,0xec,0xed,0x7d,0x0d,0x3a,0x27,0xb6,0x14,0x7c,0x4e,0x34, + 0xee,0x19,0x35,0x71,0x88,0xde,0x46,0x31,0x7d,0xe7,0x4a,0xcf,0x9f,0xe7,0x35,0xa7,0x71,0x2e,0xc7,0x7a, + 0x72,0x73,0x99,0x1c,0x52,0x8c,0x2f,0xdb,0xae,0x89,0xce,0x9d,0x89,0x06,0x61,0xb3,0xcd,0x7a,0xbe,0xc3, + 0xf3,0x87,0x0b,0xa8,0xce,0xd3,0x14,0x09,0x20,0xfa,0x47,0xe3,0x40,0x02,0x32,0xca,0x0f,0x7d,0xe8,0xa7, + 0xea,0x14,0x07,0x7f,0xfa,0xf0,0x74,0x6f,0xef,0xd2,0x3f,0x54,0xb2,0x2c,0x1b,0x7f,0xc2,0x11,0x3d,0x01, + 0x94,0x21,0x03,0x2d,0x28,0xbc,0x9a,0x84,0x6a,0x8a,0x43,0xa9,0x30,0xee,0xe9,0x0b,0xfa,0xcb,0x64,0xd7, + 0x02,0x93,0xad,0xc1,0x12,0x44,0x31,0xc0,0x7f,0x84,0xf6,0xa7,0x94,0x37,0xad,0x23,0x1f,0x86,0x1f,0x6c, + 0x36,0x94,0xfc,0x1d,0x8e,0x57,0xc3,0x77,0x7b,0x47,0x39,0x7d,0xca,0xd4,0xed,0x98,0x21,0x2f,0xab,0x26, + 0x6a,0xd8,0x38,0x57,0xd5,0xa9,0x70,0x21,0x8c,0x5e,0xc1,0x78,0xa2,0x96,0x0d,0x2f,0x1d,0x98,0xaf,0x2e, + 0xca,0xba,0x68,0x92,0x3d,0xc2,0x28,0x15,0x2e,0x7f,0x54,0x10,0x70,0xd4,0xd8,0x5f,0xef,0xa4,0x5f,0xb0, + 0x27,0x55,0x3b,0x80,0xb3,0x16,0xe3,0xa9,0x26,0x88,0xd2,0x14,0xcf,0x10,0x59,0xdd,0xf0,0x43,0x45,0x33, + 0xce,0x50,0x94,0xaf,0xd7,0x4b,0x9a,0x0c,0x90,0x9e,0x2a,0x84,0xb4,0x57,0x82,0x90,0x0d,0xdf,0x22,0x17, + 0x97,0x8b,0xf7,0x2d,0x54,0x76,0x5d,0x13,0xd0,0xac,0x26,0x5c,0xcf,0x80,0xbc,0xd4,0x57,0x3d,0x2d,0x5d, + 0x37,0x03,0x5b,0x88,0xa9,0x20,0x25,0x76,0x60,0xed,0xc0,0xe1,0x5f,0xb1,0xae,0xb6,0xd9,0x49,0xa0,0x09, + 0x82,0xf3,0x80,0x03,0x4c,0xc3,0x85,0x17,0x13,0xe2,0xa0,0xba,0x4b,0x9f,0x13,0xb9,0x57,0xdb,0xa1,0x09, + 0x13,0xe7,0x8c,0x40,0xc7,0x43,0x91,0xa6,0x62,0xa6,0xfc,0xea,0x44,0x1b,0x7e,0x83,0x2f,0x0e,0xb3,0x2f, + 0x0b,0xcc,0x0d,0x5c,0xe4,0x79,0x5a,0x94,0x15,0xf7,0x48,0x68,0xe6,0x70,0xb8,0x7a,0x70,0x6e,0xf6,0x6a, + 0x65,0x5c,0xdb,0x5d,0xac,0xd7,0x3b,0x67,0xc4,0x2f,0x9e,0x1f,0xaf,0xc6,0x9a,0x33,0x5d,0xc0,0x8c,0x5c, + 0x58,0xd9,0x8b,0xe8,0xa2,0xf1,0x7e,0x80,0x1a,0x8b,0xf5,0xfa,0xa2,0xd9,0x31,0x71,0x31,0x38,0x48,0x69, + 0x60,0x56,0x53,0xf6,0xf5,0xd2,0x75,0xb3,0x32,0x83,0x34,0x6f,0x89,0x19,0xef,0x3c,0x22,0x5c,0x1c,0xdc, + 0x5c,0x62,0x90,0x53,0xb9,0x5b,0xa4,0xb3,0x9d,0x4b,0x6c,0x30,0x6b,0x96,0xc0,0x39,0x9c,0xfe,0x34,0x6e, + 0x26,0x85,0xa8,0xd8,0xe1,0x80,0x5e,0x7c,0x30,0x34,0x81,0xa5,0x7f,0x9b,0x67,0xaf,0x1d,0x09,0x13,0x73, + 0xa5,0xde,0xa9,0xb7,0x10,0x52,0xef,0x22,0x76,0x7c,0x3e,0x5d,0xce,0x93,0x52,0x3d,0xa6,0x6f,0xd0,0x38, + 0x2f,0xb4,0xda,0xd7,0x15,0xad,0xc9,0xd5,0x83,0xcb,0xb4,0x06,0xe0,0x2b,0x26,0x2b,0xdf,0x1e,0x5f,0xa6, + 0xc7,0x57,0xe3,0x31,0x3b,0x81,0xe4,0x58,0xac,0xbb,0x75,0x91,0x77,0x44,0x5e,0xec,0x1e,0xbf,0x1b,0xeb, + 0x32,0xb4,0x53,0xa6,0xb8,0xf0,0x17,0x6e,0x1e,0x5f,0xc8,0x8f,0x58,0x6f,0x04,0xef,0x6a,0xa2,0x35,0xa3, + 0x83,0x87,0x3d,0x76,0xbe,0x5f,0xb1,0xb0,0x95,0x50,0x71,0x87,0x7b,0x42,0x7d,0x5b,0x22,0x3c,0x9b,0xf6, + 0xbe,0xc4,0xb7,0xb7,0x78,0x88,0x81,0x3f,0x55,0x18,0x68,0x03,0xba,0x60,0xaf,0x39,0xc7,0xa2,0xc6,0x3e, + 0x10,0x1d,0xca,0x3b,0x2e,0x47,0x23,0x1c,0x0e,0x4c,0xfe,0x35,0x7b,0x7c,0xe2,0x8d,0x64,0xec,0x8d,0x0d, + 0x08,0x84,0xe6,0x9a,0x2a,0x1d,0xe6,0x1c,0xfd,0x2c,0xb8,0x37,0x89,0xa0,0x66,0xea,0xc1,0x05,0x0f,0xc1, + 0x70,0xcd,0x4f,0x3c,0x66,0xa5,0x2c,0x43,0xdd,0x35,0xd2,0x61,0xc5,0x0d,0xef,0x9e,0x7e,0x4e,0x45,0xce, + 0xa4,0x7d,0x7b,0x50,0x4e,0x79,0x88,0xc8,0x2f,0x86,0x2f,0xa2,0x42,0x15,0xe6,0x39,0xe6,0xb1,0x79,0x84, + 0xf2,0x5f,0xb4,0xe2,0xcf,0xc8,0x33,0x8d,0x96,0x1c,0xaa,0x17,0x62,0xf7,0x76,0x21,0xc4,0x20,0x5d,0x7f, + 0x0d,0x41,0xd9,0x05,0x4f,0x50,0xd6,0xe1,0x62,0x70,0x2a,0x02,0xdb,0x33,0xb9,0x0f,0x66,0xad,0x7b,0xf8, + 0x02,0x6a,0xbf,0x44,0xb8,0x18,0xfc,0x67,0x00,0xf6,0x2a,0x32,0x69,0x04,0x03,0xa0,0x98,0x86,0x57,0xc3, + 0xfa,0x5e,0xdc,0x25,0xb0,0xd8,0xed,0xe2,0x5d,0x76,0x1d,0xde,0x65,0x77,0xec,0x5f,0xf1,0x48,0xae,0xc4, + 0xe5,0x3d,0x0f,0xf5,0x5d,0xdd,0xc8,0x23,0x6a,0xe4,0x51,0x07,0xe7,0xfb,0xa8,0xe6,0x7c,0x1f,0x31,0xe7, + 0x7b,0x25,0x90,0xf4,0x2a,0xba,0xda,0xc2,0xad,0x68,0xfe,0xd5,0x80,0xd5,0x84,0x6b,0x5b,0x87,0xd7,0xd1, + 0xd1,0xf0,0xf5,0x83,0x57,0xc4,0x22,0x5a,0x53,0x95,0xd7,0x70,0x28,0x8d,0x84,0xe3,0xd7,0x63,0x43,0x7b, + 0xff,0x96,0x60,0x7c,0x57,0xd4,0xaa,0x8e,0x6e,0x0b,0xaf,0xae,0x7c,0x6f,0x81,0xe5,0x3b,0x54,0x87,0xfa, + 0xc2,0x22,0xfe,0x07,0xce,0x80,0x8b,0xda,0x46,0x4c,0xf6,0x0f,0x01,0x65,0x30,0x27,0xde,0x8a,0x17,0x20, + 0xfd,0x6d,0x39,0xff,0x46,0x1f,0xb4,0x70,0x91,0x2a,0x7d,0xfe,0xc2,0xe3,0x33,0x9a,0x4a,0xaa,0x1e,0xa7, + 0xea,0x51,0xaa,0x5e,0xa6,0xea,0x59,0x36,0x32,0xd2,0xfc,0x67,0x95,0x32,0x82,0x35,0x7c,0x0b,0x3c,0xb5, + 0x9e,0xff,0x76,0x24,0xa2,0x97,0x98,0x57,0x5c,0xe4,0x57,0xa3,0xd7,0x95,0xc4,0x35,0x83,0xc3,0xcc,0x4d, + 0x78,0xb3,0x19,0x1b,0x97,0xca,0xa7,0x29,0xfc,0x97,0x7f,0x9b,0x11,0x2d,0x68,0x1e,0x39,0xb6,0x03,0x8b, + 0xc8,0xfb,0x38,0xb5,0x3e,0xb9,0x88,0xb3,0x59,0xe2,0xb9,0xf6,0xa8,0xa2,0x85,0x5f,0x57,0x66,0x29,0xbd, + 0x16,0xae,0x0d,0x59,0xc9,0x77,0xa5,0xe3,0x20,0x3e,0xc7,0x18,0xb4,0xbe,0x99,0x71,0x9a,0xfe,0x67,0x0a, + 0xf7,0x69,0xd8,0x9d,0x64,0xda,0x7a,0x10,0x85,0x10,0xc9,0xbc,0xcc,0xdb,0xd0,0x8e,0xc2,0x93,0xec,0xed, + 0xed,0xf0,0x5f,0x62,0xc4,0xb4,0x7e,0xe5,0xe8,0x47,0x1f,0xb1,0x53,0xcc,0x65,0xde,0x18,0xe1,0x9f,0x0e, + 0x4b,0x21,0xf6,0x5c,0x53,0x2d,0x4a,0xda,0x04,0xe1,0x37,0x95,0x7c,0xbb,0x9e,0x9e,0x6c,0xab,0x84,0x2f, + 0x10,0x72,0x4d,0xcc,0x4f,0xac,0xa6,0xaa,0x7a,0x02,0x1f,0x48,0xa2,0xb6,0x00,0xcd,0x11,0x3b,0xba,0xf5, + 0x7a,0x9a,0xfa,0x12,0x35,0x8e,0x1d,0x50,0xa0,0xa5,0xe7,0x26,0x50,0x6c,0x54,0xd5,0x41,0x63,0x95,0xf3, + 0xcd,0xde,0x1c,0x59,0xa7,0x78,0x7b,0xdd,0xcd,0x72,0xff,0x44,0xc3,0x7a,0x9e,0xdd,0x56,0x08,0x73,0x13, + 0xa9,0x2c,0xa1,0x48,0xf8,0xe7,0xff,0x96,0x67,0xf1,0xde,0x92,0xfc,0xf2,0x41,0xcd,0x22,0xd6,0x0e,0x8f, + 0x54,0x36,0x09,0x78,0x08,0x6f,0xc2,0xed,0xf5,0xda,0x7a,0xab,0xe6,0xd8,0xeb,0xcd,0xbd,0x09,0x6e,0xb6, + 0xd6,0x72,0x68,0xde,0x2c,0xed,0x8a,0x8a,0x1a,0xf5,0x87,0xd7,0x77,0x98,0xb6,0xa3,0xff,0xd5,0xaa,0x11, + 0x3b,0x50,0x2a,0x67,0xd7,0x95,0x1b,0x59,0x65,0xa3,0x5e,0x31,0xaa,0xc4,0x5e,0xfa,0xd6,0xc0,0x81,0x4f, + 0x31,0x40,0x00,0x7c,0xa8,0x4b,0xf2,0xe3,0x38,0xd1,0x38,0xbf,0xe2,0xc7,0xde,0x1e,0xe5,0xeb,0x0c,0x60, + 0x7a,0x03,0xb1,0x7a,0x17,0xd8,0x3f,0xe3,0xbf,0x08,0x5e,0x25,0x94,0xe7,0x9f,0xa9,0xc2,0xc9,0x0a,0x45, + 0x17,0xb6,0xbd,0x3e,0xda,0xd2,0xd8,0x34,0x06,0x4f,0x0c,0x3f,0xf3,0xd3,0xa8,0x56,0x2d,0x11,0xb7,0x29, + 0x8e,0x40,0x5d,0x41,0x5f,0xfc,0x94,0x56,0xa6,0x48,0x67,0xf0,0xff,0xfa,0x24,0x2d,0xa1,0x1c,0x19,0x79, + 0x19,0xed,0x83,0xd6,0xb9,0xe3,0x37,0xd5,0xa9,0x64,0x20,0x0a,0x7c,0x2b,0x69,0x58,0x10,0xa7,0x3d,0xf2, + 0xb3,0xfa,0xd8,0xe3,0x8a,0x7b,0x45,0xdd,0xba,0xa7,0xa1,0x55,0x29,0xca,0x37,0x41,0xd0,0x6e,0x29,0x2a, + 0x46,0x79,0x28,0x3d,0x77,0xea,0x17,0x6c,0xcd,0x70,0x58,0xb4,0x56,0xd2,0xff,0xe0,0x84,0xb7,0x06,0x5a, + 0x8c,0x3e,0x34,0xd4,0xae,0x05,0xa2,0xbd,0x7c,0xfd,0x81,0x6a,0x7a,0x22,0x9d,0xd3,0xec,0x6a,0x52,0xcf, + 0x1c,0xaa,0x15,0x59,0xc7,0xe6,0x6a,0x86,0x80,0x4f,0xe3,0x87,0xc7,0xc7,0x50,0xf3,0x23,0x41,0x0d,0x1b, + 0x85,0x69,0xcb,0x2e,0x08,0x9a,0xe3,0x22,0xfc,0x3a,0xcf,0xe1,0x02,0x57,0x4d,0xca,0xd2,0x7e,0x03,0xb8, + 0x4c,0x31,0x20,0x12,0xf3,0xed,0xbc,0xce,0xea,0x14,0xe7,0x6d,0xd5,0x2d,0x63,0xde,0x55,0xdd,0x52,0xad, + 0xb4,0xad,0x87,0x5b,0xb7,0x6c,0x47,0xba,0x0c,0xb7,0x23,0xe9,0xd6,0xb2,0xad,0x0e,0xa7,0xcb,0x82,0xdf, + 0x05,0xc3,0x63,0xb1,0x69,0x53,0x3a,0x5d,0x14,0x3b,0xc6,0x1b,0xf5,0x83,0x59,0xa0,0xc6,0x63,0xad,0x58, + 0xca,0xfd,0x98,0x36,0xcc,0xe7,0xda,0x76,0x60,0x8e,0xf3,0x34,0xb1,0xe2,0x32,0xd6,0x5b,0x4d,0x9b,0x30, + 0x66,0x8d,0x08,0x2e,0xf1,0x8c,0x25,0x2f,0xf5,0xdd,0xa1,0xfd,0x18,0x8d,0xff,0x0e,0x29,0x21,0x81,0x6e, + 0x33,0x62,0xab,0x98,0x45,0xe1,0x69,0xac,0xb4,0xd1,0x5b,0xdd,0x36,0x44,0xf8,0x1f,0x19,0xae,0x70,0x18, + 0xd4,0x7e,0x2c,0x9d,0x87,0x33,0x4b,0x7b,0xbb,0xa6,0xa3,0x35,0x5b,0x34,0x14,0xf1,0xdd,0x6f,0x15,0x7b, + 0xd6,0x21,0xd2,0x73,0x52,0x67,0x19,0xff,0xaa,0x4c,0xa5,0xd1,0xfa,0x99,0x9c,0x5f,0x81,0xa6,0xca,0x40, + 0x47,0x64,0xf7,0x4e,0x4f,0xeb,0xee,0xf6,0xbd,0xbe,0x75,0x27,0xd7,0xf7,0xf6,0xbd,0xe1,0x84,0x45,0x71, + 0xa2,0x68,0xcb,0xdf,0xa3,0x89,0x13,0xde,0x74,0xd9,0xc7,0x25,0x81,0x4f,0x2f,0x5c,0xf6,0x27,0x6c,0x88, + 0x56,0xf8,0x13,0x91,0x81,0xe0,0x11,0x5a,0xbf,0x7f,0x48,0x8a,0x35,0x27,0x5a,0x06,0x23,0x4e,0xe1,0x3a, + 0xf8,0xcb,0xff,0x0e,0x85,0xf0,0xa6,0xc2,0x53,0x76,0x6b,0xa4,0x3f,0x60,0x35,0x13,0x38,0x2b,0x12,0x7d, + 0x6d,0xec,0x8a,0xce,0x1b,0xb6,0xee,0x53,0x2c,0xc2,0x39,0x2f,0x82,0x54,0x74,0x22,0xcd,0xef,0xed,0x6d, + 0x25,0xdd,0x86,0xf4,0x3d,0xe0,0x17,0x41,0xa0,0x80,0x30,0xbe,0x32,0x26,0x0d,0xcc,0x13,0xa8,0x29,0x51, + 0x3f,0x1a,0x4f,0xf9,0x55,0x34,0x81,0x03,0x96,0x69,0x80,0x29,0xec,0x68,0x53,0x3d,0x18,0xf1,0xd0,0x5a, + 0xf0,0x4f,0xa1,0xf1,0x76,0x7e,0x67,0xb9,0x9d,0xbf,0x33,0xed,0xf2,0xf0,0xda,0x95,0x6a,0x5c,0x7a,0xd6, + 0x6c,0x78,0xa0,0xf9,0x8d,0x69,0x1b,0x48,0xc4,0x5a,0x44,0xe2,0x6b,0x78,0xf9,0xb2,0xda,0x4f,0x59,0x7b, + 0x3f,0x6e,0xfa,0x6d,0xd0,0x50,0x00,0xdc,0xf9,0xa3,0xbf,0x50,0x5e,0x7c,0x4e,0x50,0xfd,0x4c,0x54,0x2c, + 0x5c,0x43,0x73,0xa7,0xe4,0x11,0x51,0xa1,0x4d,0x3f,0x96,0x9b,0x40,0x19,0xf0,0x41,0x67,0x69,0xb6,0x9f, + 0x8b,0x39,0x80,0x3c,0x89,0xff,0x0e,0xce,0xdc,0xf0,0x59,0xbc,0xa1,0x17,0xea,0xb2,0x11,0x5b,0x01,0x1e, + 0xd8,0x7f,0xf4,0xe7,0xba,0xfb,0x6f,0x44,0x6b,0xe4,0x32,0x50,0x9c,0x26,0x58,0x0b,0xb3,0x87,0x39,0x9a, + 0x4e,0x5f,0x40,0x2b,0x8c,0x50,0x63,0x7b,0xa8,0xb4,0x65,0xc4,0x89,0x6f,0x6a,0xd2,0xb9,0x04,0xee,0xfc, + 0x2e,0xc5,0x6a,0x00,0x10,0x35,0xd2,0xe0,0xd7,0x7c,0x07,0xbb,0x00,0xbd,0x06,0x43,0x31,0xe8,0xeb,0x7d, + 0xc7,0x2c,0xac,0x38,0x70,0xff,0x07,0x21,0x95,0x5a,0x9b,0x22,0xfc,0x21,0x55,0xf5,0xaf,0xef,0xa0,0x19, + 0x1c,0xde,0x08,0x86,0xf9,0x2e,0xed,0xc2,0x2a,0x2d,0x8b,0x76,0x46,0x0c,0xae,0x85,0x88,0xec,0x99,0xc4, + 0xc7,0x5d,0xc4,0x19,0x62,0xdf,0x76,0x3b,0x3b,0xe2,0x4a,0x8b,0x22,0x59,0x59,0x4f,0x85,0x62,0x1d,0x6a, + 0x24,0xcf,0x69,0x17,0xbe,0x62,0x57,0xaa,0x79,0xb3,0x24,0x98,0xec,0xb8,0x3e,0x2e,0x25,0xf1,0x44,0xe5, + 0x03,0xcb,0x92,0x97,0x46,0xee,0x38,0x89,0xd2,0xe3,0x72,0x3c,0x9c,0x48,0xd8,0x68,0x8c,0x62,0x47,0x8e, + 0xfa,0xde,0x1e,0xd8,0x82,0xee,0x23,0x4c,0x58,0x63,0x85,0xe7,0x10,0x0f,0x40,0x9d,0x5b,0x33,0xd1,0xec, + 0x98,0xcb,0x8d,0x71,0x28,0x3e,0x74,0x8e,0xe3,0x00,0x42,0x0f,0xc7,0x81,0xf8,0x12,0x03,0x9e,0x73,0x3c, + 0x13,0x1a,0xea,0x79,0x2d,0xfe,0x3a,0x37,0x43,0x9d,0x46,0xc5,0xf1,0xf9,0x78,0xb8,0x7d,0x00,0x62,0xa5, + 0xd3,0x88,0x60,0xa5,0xf3,0x01,0x5a,0x7f,0x96,0x54,0x5f,0xe7,0x4b,0x96,0xb1,0x3d,0x9e,0xa7,0x04,0x59, + 0x3f,0xd3,0x5a,0xc3,0xf5,0xfa,0xf1,0x94,0x87,0x38,0x5a,0xca,0xa8,0xa7,0x41,0x38,0x37,0x5f,0x1b,0x6d, + 0x7a,0xbb,0xa8,0x22,0x56,0xa8,0x84,0x10,0x72,0xa9,0x8d,0x95,0x84,0x71,0x9a,0x46,0x73,0x6b,0x13,0x6e, + 0x4a,0xe4,0x74,0xf5,0xbb,0x5e,0x39,0xb6,0x0c,0xaf,0xbb,0x3d,0x0c,0xd8,0xbe,0xa0,0xc2,0xc1,0x42,0x30, + 0xc7,0x41,0x87,0xcd,0x34,0x04,0xd5,0xf4,0x16,0x53,0x66,0x17,0x50,0xb4,0x45,0xff,0xc0,0x82,0xbc,0x75, + 0xc9,0xcf,0x26,0x5d,0xde,0x0a,0x81,0x9e,0xf7,0x59,0xd3,0x72,0x68,0x98,0x62,0x6d,0xc6,0x74,0x11,0x97, + 0xcf,0x29,0xdd,0x4f,0xb4,0x59,0xbe,0xaa,0x84,0x56,0x36,0xfa,0x85,0xbf,0x30,0x8f,0x60,0x7e,0x7d,0xdf, + 0xf8,0xf5,0xa7,0xf1,0xf1,0x0f,0xa7,0x1d,0x73,0xc2,0x91,0x96,0xbb,0x83,0x62,0xfe,0x20,0x3f,0x3f,0x2f, + 0x93,0xea,0xfb,0x24,0x9d,0x5d,0x54,0x4e,0xad,0xb6,0xc6,0xa2,0xec,0x1f,0xaf,0x71,0xed,0x20,0x0c,0x23, + 0x81,0x45,0x25,0x13,0x4e,0xc3,0x2b,0x50,0x6e,0xd4,0x59,0x31,0xb0,0x4a,0x3f,0x51,0x31,0x70,0xb4,0xa3, + 0x74,0x4a,0x0d,0x18,0x4f,0x34,0x25,0xc1,0xb1,0xa6,0xb7,0x59,0x9c,0x9f,0x53,0xb8,0xfe,0xe4,0xe5,0xaa, + 0x03,0x0d,0xf6,0x20,0xef,0xb9,0x21,0xe2,0x78,0xe7,0xc0,0x76,0xb3,0xab,0xe3,0x75,0x4a,0xb0,0x20,0x13, + 0xa6,0x0b,0x8e,0xda,0x32,0x0d,0x18,0x5b,0x0d,0xb3,0xc2,0x83,0x69,0x9b,0xe1,0xe4,0x9d,0x0c,0x9f,0xed, + 0xd3,0xc1,0x35,0x69,0x0f,0x6d,0xe1,0x8d,0x5e,0xfc,0x16,0x53,0x8e,0xdb,0xfc,0x49,0x6a,0xe5,0x81,0xf5, + 0x75,0xae,0x8b,0x37,0xb1,0xbb,0x4e,0x1c,0x9a,0x95,0x9b,0xe0,0xb5,0x8c,0x45,0x36,0x01,0xed,0xb5,0x73, + 0xc5,0x33,0x60,0xe0,0x4a,0xec,0x4a,0xed,0xdc,0x9d,0xeb,0x4a,0x14,0xa1,0x02,0x35,0xd3,0x1b,0x90,0x75, + 0x92,0xcc,0xd6,0x19,0x46,0x43,0x33,0x22,0x33,0x6c,0xdd,0xae,0x68,0xa1,0xba,0x86,0x74,0x54,0xb4,0xa1, + 0x6e,0x65,0xe0,0x48,0x4f,0x26,0x62,0x99,0x98,0xdd,0xd9,0x0d,0xcc,0xc3,0xdf,0xf0,0x6b,0xfd,0x79,0x3a, + 0x1b,0x38,0x01,0x71,0xa3,0x24,0x55,0x75,0x46,0x23,0x14,0x6f,0x34,0xef,0xce,0x82,0x44,0x2d,0xfa,0x67, + 0xe1,0xe4,0xb5,0x42,0xf1,0x46,0xcf,0x93,0x46,0xc5,0x66,0xec,0xde,0xad,0xd0,0x28,0xcf,0x6a,0x52,0x0d, + 0x3b,0x35,0x87,0x1d,0x43,0x63,0xef,0x40,0xe9,0x35,0xc5,0x6e,0x82,0x6a,0xcf,0xd9,0x75,0xa4,0xb9,0x33, + 0xf1,0x43,0xdb,0x1c,0x7f,0xc8,0x0c,0x81,0x8d,0xa8,0x35,0x36,0xde,0xf7,0x60,0xa1,0x3d,0xe2,0xea,0xec, + 0xb9,0xbc,0xb6,0xf3,0xb5,0x9a,0x7e,0x10,0x6b,0x37,0x27,0x01,0x47,0xc8,0xb7,0x16,0xb5,0x16,0x12,0xdc, + 0xe6,0xc1,0x76,0x6d,0x7d,0x24,0x2a,0x37,0x4e,0xd3,0x46,0xad,0x60,0x55,0x69,0x7d,0x28,0x5a,0x72,0x8b, + 0x38,0xe1,0xa0,0x99,0xe7,0x18,0xaf,0xff,0x23,0x65,0x93,0x49,0xc7,0x65,0x89,0x41,0x98,0xd0,0x28,0xfc, + 0x3e,0x0d,0x67,0xcd,0x6c,0x71,0x3c,0xd7,0x1d,0x20,0x2b,0x81,0xba,0x10,0xd5,0xfa,0x19,0x2a,0x47,0xc6, + 0x53,0x7c,0x81,0xb0,0x41,0x51,0x05,0x42,0x8d,0xef,0x42,0xf6,0xe4,0x03,0x1f,0xbe,0x56,0xb1,0x43,0x2e, + 0x74,0x3e,0xcf,0xad,0xb4,0x28,0x29,0xd8,0x0f,0x4c,0xd6,0x8c,0x88,0x2d,0x5e,0xeb,0x5f,0x15,0x4d,0x5e, + 0x32,0x33,0xee,0x9c,0x7c,0xeb,0x6f,0x98,0x36,0x3a,0xa5,0x75,0x99,0x59,0x4d,0x22,0x1a,0x09,0x21,0x7c, + 0x21,0xa9,0xb3,0xda,0x33,0x4c,0xb6,0xed,0x85,0x3b,0x6b,0x78,0xe1,0xce,0x86,0x56,0x2b,0x64,0x83,0xf5, + 0x30,0x7e,0x08,0x7c,0xa7,0xff,0xd7,0x50,0x05,0x91,0xb0,0xd7,0x7b,0x7b,0xff,0xca,0xf0,0xff,0x00,0x2e, + 0xb3,0x40,0xa9,0x41,0x81,0xf9,0x0d,0xac,0x31,0x0e,0xe5,0x44,0xfe,0x9e,0xaa,0x7f,0x42,0x85,0xf2,0xe6, + 0xe4,0xc6,0xf7,0x47,0xe1,0x60,0x7d,0x92,0x05,0xfd,0x51,0x70,0xb2,0x39,0xd9,0x1c,0xcc,0xd4,0xbf,0x43, + 0xe7,0x7d,0x7f,0xf0,0x59,0x7f,0xf4,0xc7,0xee,0xcd,0xc6,0x0f,0xd6,0xc7,0x27,0xe3,0x93,0x83,0x93,0x93, + 0x31,0xe5,0x25,0x79,0xa7,0xe2,0x3a,0xdf,0x1d,0x46,0x67,0xfb,0xdf,0x53,0xe5,0x9d,0x9c,0xec,0xee,0x61, + 0xa1,0x28,0xe7,0xa8,0x2b,0xc7,0x3a,0x0c,0xa0,0x95,0x14,0x0f,0x29,0x7e,0xd5,0xf7,0xf4,0x60,0x64,0x34, + 0x5e,0x9f,0x16,0x61,0x06,0xf9,0x9f,0xaa,0xf2,0xe8,0x46,0x84,0xfa,0xf0,0x66,0x1a,0x1e,0x7b,0x8e,0xb4, + 0xdf,0x1b,0x2b,0x8b,0xab,0x5b,0xc6,0x1d,0xec,0x4d,0x6b,0x00,0xf7,0x0f,0x1a,0x37,0x16,0x22,0xa5,0x11, + 0x33,0xdb,0xa1,0x88,0xb3,0x9c,0xa6,0xa2,0x1f,0x5e,0xbd,0xf8,0x89,0x12,0x00,0xd1,0x88,0xd9,0x98,0x05, + 0x06,0x81,0x65,0x4e,0x45,0xb8,0xc4,0x85,0x00,0x05,0xaa,0x30,0x48,0xf8,0x3a,0x65,0x4a,0x23,0x2a,0xb0, + 0xd5,0x49,0x06,0xc7,0xac,0x1d,0x3e,0xce,0x3d,0xcf,0x51,0xe8,0xaf,0xbb,0x04,0x1b,0xd1,0x8f,0xdc,0xf9, + 0x84,0x5e,0xbf,0x51,0xa2,0xef,0x29,0x18,0xf9,0x36,0xfa,0xd2,0xb5,0x26,0xb6,0xbc,0x9b,0x29,0x15,0x2a, + 0x22,0x88,0xb3,0xee,0x65,0xe3,0x87,0x91,0x4f,0x5f,0x36,0xc6,0xfb,0xad,0x65,0xe3,0xa6,0xda,0xcb,0xf6, + 0x2a,0xc5,0xca,0x35,0x97,0x4e,0x2a,0x3b,0x4b,0xc7,0x09,0x7f,0x75,0xe9,0xb8,0xdb,0xc6,0xd2,0x71,0x8a, + 0xb3,0x74,0xfc,0xdb,0x2c,0x9d,0xdb,0x97,0xad,0x85,0xf2,0xbe,0x54,0xa8,0x73,0xfb,0xb0,0x35,0x90,0xc5, + 0x2b,0x72,0x7e,0x62,0x82,0xbd,0x1f,0xdb,0x7e,0xc2,0x88,0x32,0x9f,0x6b,0x5b,0x46,0x31,0xd8,0xd3,0x36, + 0x98,0x62,0x57,0x98,0x96,0x8c,0x92,0xf1,0xe0,0x44,0x53,0x71,0xac,0x44,0x1b,0x06,0x8f,0x62,0x16,0x79, + 0x75,0x06,0x5f,0x43,0x69,0x2e,0x96,0xd2,0xda,0xae,0x11,0x46,0x9f,0x15,0x0c,0x3a,0x8d,0x70,0x73,0xc1, + 0x86,0x8d,0x30,0x0a,0x64,0xf3,0x46,0x31,0x78,0x2c,0x74,0x4b,0x54,0x3f,0x97,0x11,0x76,0x1a,0x9e,0xca, + 0x90,0x6b,0x13,0x43,0xb6,0x93,0xec,0x34,0xa7,0x44,0xb7,0x4d,0x7b,0x46,0xb6,0x40,0xd5,0xe6,0xa7,0xc6, + 0x7e,0x72,0xcb,0x0e,0x55,0x5b,0xb6,0xb2,0x61,0x65,0x87,0x5d,0x2b,0xc6,0x6a,0xac,0x5e,0xa5,0x1f,0x5a, + 0x2c,0xb6,0xa6,0xd5,0x96,0x97,0x30,0x5c,0x35,0x26,0x93,0xbc,0x4c,0x6d,0x23,0x4c,0x59,0x36,0x31,0x4a, + 0xd5,0x8b,0x27,0xe6,0x13,0xc6,0xc0,0xb2,0xb6,0xfd,0x6c,0x2d,0x11,0xdb,0xe3,0xd2,0x42,0xf1,0x5a,0xd3, + 0x3a,0xc5,0x79,0x74,0xf0,0xc7,0x49,0xf9,0x99,0x7f,0x4c,0xff,0x7a,0x77,0x1e,0x3c,0x3c,0x39,0x88,0xc6, + 0xfd,0x80,0x70,0x0d,0x12,0xa3,0x00,0xff,0x8e,0x42,0x8f,0xb2,0xbd,0xf1,0x67,0x84,0x76,0xd6,0x77,0xe8, + 0xf3,0x0e,0x7d,0xde,0xe9,0xaf,0x75,0x9d,0xe8,0xc1,0xc3,0xff,0xa0,0x2a,0x41,0x30,0x3a,0xa0,0xc1,0x44, + 0xde,0x71,0xbc,0xff,0xe7,0xa3,0xfd,0xdf,0x4f,0xc7,0xc7,0x27,0x27,0x57,0x27,0x27,0xfb,0x27,0x27,0x83, + 0xf1,0x67,0x1e,0x2d,0x6a,0xc4,0x38,0xcc,0xeb,0x97,0x79,0x9f,0x30,0x5d,0x18,0x8c,0xe4,0x33,0xf0,0xd4, + 0x32,0x8f,0x1c,0x64,0xe7,0xfd,0xf1,0xc0,0xeb,0x4f,0xf2,0x40,0xcd,0xcd,0xe0,0x4e,0x0e,0x46,0xc1,0xc3, + 0x03,0x5a,0xd0,0x56,0xb1,0x93,0x93,0x03,0x94,0xec,0x7b,0xc7,0x7f,0x3c,0x1c,0x7f,0xf6,0x10,0x86,0x8d, + 0xa8,0xf2,0x60,0xe7,0xc9,0x8b,0xc7,0xaf,0xff,0xf9,0xf2,0x9b,0x1e,0xd2,0xfb,0x0f,0x0f,0x52,0x75,0x21, + 0xe9,0xb0,0xdb,0x59,0xc9,0xe7,0xc9,0xf1,0x01,0x31,0xc1,0x78,0x31,0xf6,0xde,0x79,0x16,0x0b,0x1f,0xbc, + 0xf3,0x07,0x34,0x91,0x99,0x6a,0x1e,0x79,0x2a,0xe8,0x81,0x9d,0xaf,0xf4,0x83,0xcb,0x2c,0x57,0xd7,0xb9, + 0x3a,0xcd,0x09,0x76,0xd4,0x55,0xae,0xde,0xe5,0xea,0x6d,0xae,0x76,0x73,0xf5,0x38,0x57,0x8f,0x72,0xf5, + 0x2a,0x57,0xaf,0x73,0xf5,0x82,0x41,0x50,0x5b,0xed,0x6a,0x73,0x68,0xf3,0xd6,0xc1,0x17,0xde,0x9b,0x1c, + 0xef,0xc5,0xcf,0xe8,0x5f,0x6f,0x6f,0x5e,0x0d,0xbd,0xd0,0x7b,0x40,0x87,0x72,0x6f,0xc6,0x9f,0x0f,0xf1, + 0x09,0xf8,0xa4,0x1f,0x77,0xbc,0x3b,0xf4,0x23,0xbe,0x5c,0x20,0x63,0x0f,0x19,0x7f,0x3b,0x3a,0xc4,0xf7, + 0x49,0xc6,0x3f,0xbe,0xe2,0xef,0xca,0xdb,0xa8,0x6f,0x68,0x6e,0x7b,0xb4,0xc8,0xc4,0xf9,0xce,0xaa,0x35, + 0xaa,0xaf,0xa9,0x5a,0x30,0xa4,0x09,0xbd,0xec,0xcc,0x5a,0x53,0x4b,0xeb,0xbf,0x7d,0xc5,0x25,0x9e,0xf2, + 0x80,0xa1,0xef,0xd0,0x1c,0xe7,0x93,0xfc,0x16,0x9a,0x62,0x6f,0xef,0x69,0x2e,0x9e,0x13,0x4e,0x58,0xb2, + 0x52,0xc1,0x57,0x91,0xfa,0x16,0xeb,0xfb,0x6f,0xeb,0x3f,0x56,0xfb,0x79,0x16,0x1e,0xa8,0x9f,0xf0,0x73, + 0xb5,0xbf,0x46,0x12,0xfd,0x7c,0x4e,0x3f,0xfd,0xc1,0x67,0x74,0xa1,0x96,0x7d,0x1a,0x4d,0x9a,0xad,0xf3, + 0x73,0xfe,0x1e,0x7c,0x16,0x1c,0xa8,0x9f,0x29,0x57,0x11,0x5c,0x29,0xba,0x6e,0xc7,0x04,0x65,0x54,0xc2, + 0xfd,0x19,0x8c,0x76,0x0f,0xd4,0x6f,0x0c,0x15,0xfe,0xfa,0x24,0xd8,0xa5,0x41,0x7f,0x9d,0xb3,0x51,0xd8, + 0x67,0xf4,0x43,0xfd,0x8a,0x9c,0x10,0x3d,0xb3,0xc0,0xf9,0x40,0xfd,0x42,0x09,0x27,0x83,0xe3,0x3f,0x06, + 0xe3,0x3e,0x15,0xfd,0xbe,0x7d,0x3f,0x6b,0x37,0x31,0xbf,0xa7,0xd1,0xef,0xe9,0x07,0xcc,0x93,0x82,0x5a, + 0x07,0x82,0x88,0xa6,0xdf,0x53,0xd7,0x24,0x91,0x2e,0xe1,0x3f,0xd1,0xf3,0xbb,0xcb,0x79,0x56,0x86,0x3f, + 0xbd,0x3a,0x99,0xf6,0x0f,0xd4,0xbf,0x90,0xc2,0xdf,0x34,0x8e,0x1f,0xf3,0xe8,0xb8,0xca,0xe9,0xce,0x51, + 0x37,0xb4,0xbc,0xaf,0xdf,0x73,0xb7,0x88,0xf4,0xc8,0xf8,0x92,0x90,0x07,0x21,0xc3,0xbb,0xf0,0x93,0xfe, + 0xf3,0x78,0xc1,0x9a,0x88,0xc7,0xde,0x6a,0x9f,0x9f,0x50,0xbc,0x31,0xa8,0x24,0xfc,0xe4,0x49,0x83,0x12, + 0xf4,0xc6,0xeb,0x35,0xa5,0xe8,0x6f,0xa3,0x10,0xaa,0x6f,0x1b,0x4e,0x04,0xb5,0x25,0x37,0xd7,0x6a,0x3f, + 0x3d,0x97,0x6d,0xce,0xa3,0x74,0xe4,0x51,0x5b,0x5e,0x3f,0xc5,0xa1,0x0c,0x89,0x37,0x8c,0x23,0x21,0xc6, + 0x4d,0x51,0x3c,0xe2,0x4a,0xe1,0xb2,0x91,0x66,0xdb,0x98,0x44,0xff,0x60,0x52,0xfc,0x07,0xe8,0xa2,0xa8, + 0x84,0x75,0x8c,0xb8,0x43,0x25,0x0e,0x33,0xce,0xf2,0x77,0xd4,0xf7,0x8f,0x48,0x87,0xaa,0x3e,0x88,0xd7, + 0x09,0x21,0x68,0x21,0xed,0x26,0x83,0xf4,0x9c,0x70,0x84,0xd7,0x2f,0xa8,0x7f,0x9a,0xfe,0x1d,0x53,0xe5, + 0x8e,0xd7,0xcf,0xd5,0x77,0xa8,0x74,0x93,0xbc,0x5b,0x84,0x28,0x27,0xf8,0x3b,0x9c,0x6c,0x8c,0xbc,0x56, + 0xfa,0xa5,0x41,0x2d,0x31,0x28,0x5a,0x5d,0x19,0x50,0xc2,0x09,0x7a,0x08,0x45,0x3c,0x4d,0x73,0xe9,0x7f, + 0x89,0xfe,0xeb,0x26,0xdd,0x5e,0xb9,0x14,0x77,0x29,0x7d,0x2c,0x75,0x1f,0x73,0xd3,0x87,0x56,0xf1,0xa9, + 0x20,0x9a,0x6b,0x76,0x45,0x09,0xb2,0xe8,0x30,0x79,0xf8,0x11,0xbf,0x1b,0xbd,0xa4,0xba,0xc5,0x39,0x02, + 0x0b,0x8f,0x26,0x03,0x2c,0x1d,0xc2,0xce,0x95,0x2c,0x4c,0xc5,0x2f,0x5a,0x80,0x92,0xd6,0x05,0x2c,0xdd, + 0x58,0xfd,0x40,0x98,0x81,0xaa,0x11,0xab,0x00,0xb0,0x83,0xd4,0xde,0xbc,0x6b,0xff,0x98,0xab,0x9a,0x87, + 0x08,0xf5,0x53,0x5a,0xe7,0xd3,0x92,0xd8,0xe5,0x88,0x36,0x07,0x54,0x1e,0x59,0xed,0xec,0x42,0xad,0xd4, + 0xa5,0x7d,0x56,0x9b,0x35,0xde,0x54,0xaf,0x05,0xea,0xd4,0xa9,0x03,0x70,0xfc,0x16,0x2b,0x01,0x98,0x2c, + 0x7b,0x62,0x3d,0x35,0x01,0x0c,0x2e,0xd5,0x2c,0x50,0x3a,0xc8,0x6e,0xfd,0x9e,0x79,0x1d,0x10,0x07,0xaa, + 0x2e,0xa2,0x4b,0xb5,0x8a,0xee,0xb0,0x0e,0xc3,0xae,0x71,0xc2,0xf1,0x6b,0x3c,0xef,0x45,0xbd,0x56,0x58, + 0x75,0xfd,0xa2,0x20,0xef,0x98,0xbb,0xec,0x39,0x56,0x87,0x6a,0xb4,0x6f,0x9a,0x76,0x8e,0xb9,0xc5,0x42, + 0xf9,0xc0,0x34,0xba,0x09,0xf0,0x0c,0xea,0xbb,0x65,0xd0,0xeb,0x8a,0xfb,0xf2,0x4e,0xc5,0xe3,0x0b,0xb4, + 0x82,0xf2,0xde,0x88,0xaa,0x49,0x42,0x2f,0xa4,0x4f,0xfd,0xfa,0x26,0x0d,0xde,0xe9,0xfb,0x44,0x09,0xcd, + 0x06,0x62,0x4a,0x3f,0xf2,0x4e,0x33,0x9f,0xf2,0x71,0x20,0xe8,0x0f,0x44,0x45,0x04,0x0f,0xc4,0xd4,0x57, + 0x90,0xc0,0x9a,0xa7,0xe5,0x55,0xb4,0xea,0x7b,0x3d,0x82,0x19,0x58,0xc2,0x78,0xcd,0xb1,0x9b,0x77,0x55, + 0xea,0xb4,0xb9,0x00,0x61,0xf3,0x37,0x21,0x4f,0x2f,0x68,0x19,0x56,0x34,0xd0,0xc1,0x35,0x21,0x5a,0x7b, + 0x8a,0xe8,0xf7,0x69,0x00,0x17,0x49,0x13,0x5a,0xdf,0x65,0xe4,0x8c,0x58,0xcd,0x71,0xd2,0x4b,0xa5,0x5d, + 0xdc,0x04,0xeb,0xb5,0x87,0x46,0x3d,0x75,0xae,0xd3,0xe1,0xed,0x64,0xbf,0xce,0xc4,0x4f,0x4f,0x4d,0x75, + 0xe6,0x79,0x8c,0xf3,0x5c,0xe7,0xf2,0x6f,0x4f,0xfd,0x33,0x41,0xa6,0x71,0x7a,0xa3,0xbc,0xa6,0xe9,0x08, + 0x5d,0xc2,0x74,0x78,0x46,0xa7,0xa9,0x7c,0x29,0xaf,0x3f,0xef,0x33,0xeb,0xed,0xf5,0x7d,0x69,0x9f,0x86, + 0x7b,0x3e,0xf2,0x42,0x5d,0x92,0xd6,0x32,0x3c,0xfd,0x97,0x2d,0x7c,0x8e,0x24,0x68,0xc5,0x54,0xd2,0x89, + 0xac,0xa9,0x27,0x20,0x13,0x47,0x52,0x6c,0x17,0xcc,0x69,0x63,0x65,0x29,0x69,0x12,0x21,0x79,0xa0,0xc7, + 0x35,0xf2,0xa5,0x2d,0x74,0x33,0xa5,0xbf,0xdb,0xc6,0xaf,0xd4,0x9c,0x46,0x87,0xbb,0xbb,0x2b,0x6a,0xd8, + 0x5f,0xf2,0xfe,0xca,0x78,0xbd,0x70,0x1e,0x70,0x47,0x69,0x44,0x33,0xa1,0xa2,0xf4,0xb9,0xe2,0x46,0xdc, + 0x4e,0x82,0x1b,0x2a,0xf0,0xe0,0x90,0x11,0x25,0x8d,0x8b,0x06,0x60,0x03,0x6b,0x1f,0x53,0x79,0x42,0xb7, + 0xa2,0x1b,0x47,0xa5,0x68,0x01,0x1a,0xc5,0x8c,0xbb,0x17,0xca,0x0a,0x4c,0x9d,0x3a,0x9d,0x52,0xfb,0x47, + 0xd0,0x1b,0x90,0xfa,0x0c,0x4c,0x84,0x3e,0x69,0x92,0x0c,0x74,0xde,0x87,0x40,0x43,0xb0,0x1b,0xc3,0x85, + 0x30,0xf6,0x97,0x84,0xd2,0x5d,0xb8,0x88,0xb1,0xc5,0xc5,0x36,0x5c,0xfc,0x93,0x03,0x5b,0xd5,0x7b,0xcb, + 0x3b,0x93,0xf2,0xce,0xf8,0x71,0x94,0xeb,0x15,0x8a,0x79,0x85,0xe2,0x80,0xf7,0x0a,0x5b,0x55,0xd4,0x5b, + 0x45,0x23,0x85,0x61,0xda,0x7b,0x47,0x08,0x48,0x73,0x54,0x3d,0xae,0x83,0x9d,0x4e,0x84,0xd5,0x46,0x3b, + 0xf0,0xb7,0xca,0xb1,0x3c,0x72,0xa8,0x62,0x23,0x0c,0x30,0xbc,0x68,0xeb,0x19,0x21,0x96,0x11,0xcc,0xb3, + 0xe9,0x10,0xec,0xe4,0xbc,0x04,0x18,0x0e,0x54,0xf6,0xe8,0x48,0xd0,0xc0,0xf5,0xf8,0x42,0x9d,0x01,0xd5, + 0xb2,0xd1,0xdb,0x34,0xd4,0xa3,0xa2,0x83,0xd2,0x3a,0xaa,0xb2,0x32,0x43,0xe0,0xe3,0xee,0x3c,0x6d,0x0c, + 0x0e,0xc2,0x59,0xca,0xd4,0xc0,0x23,0x97,0xc4,0x79,0x44,0x6b,0x51,0xe1,0xd1,0x69,0x42,0x05,0xe8,0x3a, + 0x03,0xf4,0x34,0xda,0xd1,0xea,0x23,0xf6,0xdd,0x71,0x48,0x30,0x1b,0x60,0x0f,0x12,0xb3,0x33,0x0a,0xb7, + 0x51,0x65,0xd7,0x19,0x8e,0x64,0xce,0x6b,0x31,0x89,0x5f,0xae,0xd7,0x6c,0x4b,0xc8,0xf7,0xef,0xd9,0x7c, + 0x49,0xd7,0x8f,0xd7,0x7c,0x8d,0xf2,0xd8,0x0a,0x10,0x48,0xd9,0x6e,0xc4,0xce,0xeb,0xac,0x29,0x00,0xf4, + 0x6b,0x65,0xd5,0x06,0x0a,0xb7,0x0f,0xab,0x4c,0x04,0x6e,0x71,0xbe,0x2b,0x51,0x4c,0x90,0xe1,0x3a,0x34, + 0x10,0xc0,0xa6,0xc4,0xb0,0xa5,0x04,0x0f,0x7e,0xc3,0x4c,0xcd,0xfb,0x9b,0xb0,0x54,0x55,0x67,0x03,0x1b, + 0xe2,0x1c,0x5f,0x12,0xc1,0x14,0x77,0x79,0x9a,0x00,0xa5,0xaa,0xfd,0x6a,0x41,0x0c,0x49,0x6c,0x0f,0xca, + 0x15,0xb9,0x72,0x24,0xa0,0x61,0x92,0xc2,0x8f,0xce,0xd7,0xc9,0xb3,0xe4,0xbc,0x7a,0xb1,0x48,0x32,0x14, + 0x49,0x73,0xd5,0x58,0x8a,0x90,0xf8,0xad,0x96,0x94,0x33,0x7c,0x9e,0x28,0x47,0x3a,0xf0,0x63,0x4e,0x0c, + 0xc2,0x74,0x39,0xe9,0xd6,0xa4,0xe9,0x25,0xe6,0x30,0x9b,0x58,0x57,0x26,0x8a,0x5f,0xc0,0x8e,0x1e,0x06, + 0x6f,0xf2,0x94,0xc0,0x44,0x61,0x45,0xbe,0xeb,0xa6,0x41,0x7b,0xf0,0xdf,0x02,0x68,0xc7,0xd5,0xcb,0xf0, + 0x0f,0x99,0xb9,0x32,0x27,0x41,0x11,0x73,0x92,0x66,0xda,0x4b,0x87,0xb2,0x4f,0x5e,0x12,0x28,0xa8,0xef, + 0x27,0x23,0x9c,0xd5,0x04,0xce,0x4e,0x21,0x11,0xfa,0x87,0xe5,0xe9,0x4e,0xae,0x76,0x4f,0xc7,0xfd,0xf5, + 0x09,0x91,0xd0,0xc1,0xf8,0xb3,0xd1,0x49,0x00,0x7e,0x2e,0x7a,0xb8,0xfe,0xc3,0x8c,0x80,0x7e,0x9e,0xf8, + 0x07,0xea,0x77,0x5d,0xe3,0x98,0xf8,0x36,0xe2,0xde,0x4e,0x77,0xc7,0xa8,0x3a,0x06,0xeb,0x47,0xe4,0x73, + 0x2b,0x71,0x7d,0x72,0x7c,0x87,0x08,0xf8,0x3b,0x63,0xfa,0xf0,0xe8,0xc3,0xc3,0x07,0xd1,0xb9,0xf8,0xd3, + 0x2e,0x3b,0x0e,0x3e,0xa3,0x66,0x89,0x34,0xff,0x27,0x68,0x99,0x72,0x12,0xde,0xfd,0x3b,0x7c,0x14,0x85, + 0x5f,0x89,0xf6,0x44,0x78,0x74,0x4f,0xc9,0x7a,0xdf,0xbb,0xab,0x96,0x8b,0xf0,0xde,0x97,0xc4,0x02,0x9f, + 0x57,0xe1,0xbd,0xbf,0xab,0x02,0xef,0x22,0xe1,0xbd,0xaf,0x14,0xfc,0x5a,0x87,0xf7,0x0f,0x95,0x3c,0x4d, + 0x86,0xc7,0x5f,0xaa,0xfb,0x5f,0x10,0x97,0xf1,0xef,0x79,0x97,0xbb,0x2d,0xa0,0x9c,0x3e,0x80,0xc7,0x71, + 0x85,0x35,0x24,0xbe,0x28,0x89,0x21,0xed,0x21,0x78,0x30,0x87,0x1a,0x3f,0x00,0x20,0xf1,0x2c,0x16,0x19, + 0xe1,0x10,0x8a,0x12,0x9c,0x67,0xcb,0xe8,0xdf,0x4f,0xe4,0x29,0x91,0x8b,0x20,0xc4,0x58,0xf8,0xef,0xb9, + 0xdf,0xc4,0x0d,0x3d,0xc2,0x38,0x3d,0x9d,0x32,0x59,0x16,0xd8,0xa4,0xd7,0x9c,0x41,0x07,0x78,0x52,0x15, + 0x73,0xae,0xb1,0x63,0x0a,0x50,0xc2,0x8f,0x50,0xbc,0x55,0xec,0x0c,0xb4,0x91,0xc7,0x29,0x92,0x19,0xcf, + 0x9b,0x59,0xf4,0x5b,0x32,0x20,0x10,0x68,0xe4,0x20,0x41,0xb2,0x78,0xed,0x90,0x75,0x47,0x9c,0x3d,0xdd, + 0x01,0xb1,0x23,0xa5,0x7a,0x7b,0x7b,0x66,0x84,0x92,0xc7,0x63,0x3e,0x44,0x7b,0xe9,0x74,0x3a,0x4f,0x3e, + 0xa9,0xda,0x11,0x3b,0x44,0xc3,0xfe,0x7c,0x4a,0xad,0xbb,0x80,0x7f,0x3c,0x78,0x12,0x5b,0xd8,0x76,0xb3, + 0x02,0xef,0x6e,0x75,0x80,0xba,0x8e,0x8d,0x3d,0x9d,0xc9,0xc6,0xaa,0x06,0x86,0x20,0x04,0xb1,0xa5,0x5a, + 0x64,0x9a,0xe3,0x48,0x78,0xb5,0x11,0x50,0xdd,0xd2,0x19,0xb5,0x94,0x51,0x4b,0x77,0x20,0xe0,0xa2,0xf3, + 0xd6,0x07,0x77,0x5d,0xb7,0x8a,0x5b,0xcf,0x21,0x88,0xe1,0xbf,0xa8,0xd6,0x32,0xc4,0x33,0xd7,0x48,0x28, + 0x9a,0x50,0x93,0x46,0xc1,0x7b,0x8a,0x73,0x28,0x69,0x4f,0xe9,0xf2,0x5e,0xa0,0xc7,0x3c,0x99,0xe7,0xf1, + 0x5b,0x04,0xc9,0xcd,0x3a,0xbc,0x98,0xe6,0xd6,0xf9,0x25,0xff,0x84,0xa8,0x91,0xee,0x44,0xfc,0x59,0xaf, + 0xff,0xa1,0x13,0xad,0x74,0xb2,0x8c,0x7e,0x87,0x8d,0xa5,0xd1,0x37,0xf7,0x6c,0x06,0xa2,0x14,0x19,0x9f, + 0xec,0x78,0x41,0xfc,0x2e,0xc9,0x10,0x8c,0xaf,0x59,0x5a,0x8b,0x15,0x6d,0x39,0xcb,0x52,0x44,0x2b,0x9f, + 0x75,0x27,0xaa,0x98,0x2d,0x9e,0x6d,0x7a,0x60,0x03,0x73,0x35,0x10,0xe8,0x7a,0xfd,0x36,0x1b,0x6a,0x77, + 0xc7,0xd7,0x67,0x89,0x8d,0xa9,0xd8,0xb1,0x91,0x3b,0xd6,0x3a,0x57,0xfb,0xba,0xcc,0x26,0xc9,0x53,0x18, + 0x61,0xf1,0xaf,0x76,0xec,0x40,0xb8,0xdd,0x2e,0xe2,0xc8,0x77,0xa5,0x3e,0x27,0x27,0x67,0x5e,0xdf,0x9b, + 0x12,0x0e,0x3f,0x87,0x84,0x8d,0x80,0xbe,0xc2,0x9b,0x03,0x2d,0xf2,0x35,0xfb,0x5b,0x9b,0x40,0xba,0x87, + 0x6b,0x4f,0x5d,0xa5,0xd5,0x85,0x8a,0xaf,0xe2,0xb4,0x52,0xac,0xef,0xaf,0xd8,0xb3,0xb9,0xd6,0x89,0xe7, + 0x07,0x1e,0xc5,0x8e,0x48,0x15,0x07,0x99,0x57,0x57,0x84,0x56,0x13,0x75,0x0d,0xb1,0x9e,0x46,0x36,0x8a, + 0xb8,0xaf,0x1c,0x4e,0x0c,0xd9,0xc1,0x8a,0x92,0x19,0x18,0xc7,0x5e,0xc6,0x9d,0xa2,0xb8,0xfe,0x24,0xd6, + 0x44,0xe2,0xcd,0xb3,0x6f,0xb3,0x34,0x5b,0xc2,0x23,0xcf,0xd9,0x72,0x36,0x83,0x1c,0x50,0xaf,0x42,0x1d, + 0x43,0xc5,0xd3,0xee,0x67,0x70,0x27,0xe8,0xdb,0x81,0xa6,0xb5,0xc6,0xd4,0x82,0x3e,0xcf,0x50,0xde,0x51, + 0x5a,0x73,0x96,0x41,0x89,0x0f,0x51,0xd6,0x4b,0xef,0x6c,0x87,0x50,0x3a,0x10,0xfe,0xc9,0x09,0xa1,0x7c, + 0xfa,0xa7,0x6e,0xb5,0x95,0x81,0x00,0x70,0xaf,0xdb,0xa2,0x9d,0xda,0xc2,0xf6,0x56,0x83,0x50,0xf6,0x02, + 0x4c,0xb8,0x11,0x81,0x8d,0xa3,0x9d,0xa3,0x40,0xbd,0xcb,0xf5,0x9e,0xb2,0xed,0x17,0xc4,0xd8,0x4e,0x0c, + 0x96,0x61,0xf6,0xe0,0x2a,0x77,0xfd,0xae,0x5c,0xe5,0x6c,0x62,0x0b,0xe3,0xde,0x59,0x1e,0x55,0x35,0x64, + 0xbf,0xc3,0x2f,0x73,0xdf,0x03,0xa4,0xd4,0x5b,0xa4,0x38,0xb7,0x39,0x27,0xee,0x22,0xb1,0x75,0x5d,0x73, + 0xc6,0x69,0x0e,0xf0,0xae,0x3a,0x0e,0xc3,0x4f,0x72,0x18,0xce,0xda,0x05,0xda,0xb2,0x18,0x2a,0x73,0xb5, + 0x55,0x26,0x2f,0xab,0x76,0xa1,0x6b,0x0c,0x81,0x76,0x23,0xbd,0x4c,0x2b,0xc4,0x37,0xb4,0x9c,0xb6,0xa8, + 0x96,0xec,0x1c,0xb1,0x86,0x13,0x82,0x96,0xe3,0x84,0xfc,0x76,0x41,0xa5,0x78,0x98,0x0a,0xeb,0x05,0x5a, + 0xf5,0x68,0xcb,0xe8,0xa2,0xbd,0xc8,0xf4,0x6b,0xde,0x8f,0x08,0xba,0xa0,0xb1,0xba,0x3c,0x93,0x07,0x04, + 0xdf,0x35,0x88,0x2e,0x8c,0x8b,0x00,0x36,0xd8,0x57,0x65,0x1d,0x90,0x5e,0xbc,0xcb,0xce,0x03,0xfd,0x98, + 0x86,0x37,0x85,0x02,0x3f,0x65,0xc7,0x5a,0xcf,0xad,0x94,0xcc,0x5a,0xfc,0x69,0x14,0xd7,0x51,0xea,0xd3, + 0x87,0xd1,0x21,0x62,0x11,0xa4,0xe3,0xc1,0xdc,0x14,0xc5,0x41,0xa7,0x79,0x51,0x3f,0xfb,0xfb,0x86,0xae, + 0x8c,0xf8,0x51,0x17,0xa5,0x1d,0xdb,0x4a,0xb7,0xa1,0xc9,0xc3,0x28,0x1d,0x4e,0xa8,0x42,0x35,0x60,0x07, + 0x2a,0xfc,0x87,0xdd,0xa8,0xb3,0x90,0x01,0xe3,0x1f,0x9a,0xe2,0x11,0x16,0x30,0xe5,0x6e,0xf7,0x8f,0x38, + 0x9f,0x19,0x21,0xef,0xac,0x00,0x95,0x57,0x8e,0x98,0xb8,0x2a,0xd8,0x17,0x3d,0x7f,0xd0,0xfc,0x69,0xb9, + 0x77,0x0e,0xc5,0xe9,0x81,0xb7,0xe0,0x52,0x1c,0x36,0xa1,0xb3,0xdc,0x11,0x97,0x53,0x8d,0x81,0xc8,0x0a, + 0xd2,0xa2,0x1a,0xbf,0x07,0x10,0x96,0x60,0x13,0xa1,0x67,0x5e,0x8b,0x5e,0x68,0xcb,0xaa,0x41,0x4d,0x63, + 0x32,0xb4,0x2d,0xf1,0x9e,0xdc,0xa2,0x2c,0x39,0x63,0x4e,0x8b,0x92,0x0c,0x59,0x92,0x97,0x12,0x12,0x27, + 0xb6,0xe4,0x45,0xee,0x1b,0xff,0x1b,0x62,0x72,0x9a,0xb7,0x5e,0xbc,0x17,0xd1,0x9b,0xfc,0x78,0x8a,0xb8, + 0x4f,0xfc,0xb7,0x21,0xe4,0x26,0x22,0xee,0xa4,0x3c,0x39,0x79,0x45,0xe4,0x5b,0xe0,0x3f,0x38,0x60,0xc6, + 0x56,0xa4,0xdd,0x01,0x9d,0xfa,0x14,0x6c,0x33,0x0c,0xaf,0x8c,0xfc,0x7a,0xe1,0x0a,0xae,0x19,0x3c,0x0c, + 0xa4,0x59,0x23,0x57,0x45,0xe3,0x99,0x32,0xf7,0xa7,0x5d,0x4a,0x62,0xe1,0x10,0x45,0x38,0x8b,0x6a,0xdf, + 0x52,0x07,0x90,0x95,0x53,0xdf,0xa5,0xf4,0xbc,0xbf,0xff,0xf0,0x60,0x46,0x6c,0x06,0xdd,0xfc,0x6e,0x91, + 0x93,0xe3,0xc7,0x4f,0x1e,0xbd,0x7e,0x74,0x72,0x5c,0x97,0x1c,0x8f,0x6d,0x49,0x48,0x8e,0xfd,0xa9,0x12, + 0x37,0xca,0xd0,0x56,0xd1,0xee,0x98,0x38,0x04,0xde,0x45,0x2c,0x97,0x25,0x7f,0x40,0xc5,0xc1,0x83,0x5c, + 0x85,0x60,0xde,0x68,0xe0,0xec,0x5f,0x98,0xf1,0x26,0xd1,0x85,0x2a,0xa8,0xa1,0xf9,0xfe,0x39,0x02,0x4c, + 0x5b,0x13,0xa3,0x55,0xe4,0x3c,0xf5,0x3f,0x10,0x76,0x1f,0xda,0x95,0x2b,0x5e,0xfc,0x8b,0xdc,0x44,0xc9, + 0x32,0xc6,0x61,0xae,0x62,0xc0,0xfe,0xc9,0xbb,0x7b,0x89,0x54,0xb9,0x64,0xf0,0xad,0x74,0xf4,0x45,0x04, + 0xa0,0xd0,0x9a,0x85,0x3a,0xea,0x81,0xf6,0x45,0x52,0x9f,0xc2,0xfb,0x0a,0x66,0xb4,0x99,0x7f,0xd9,0xbf, + 0x47,0x6c,0x9e,0x46,0xf7,0x1b,0x68,0x6d,0xad,0x5a,0x7d,0xce,0xdc,0x3e,0xc7,0x0f,0xa5,0xbf,0x19,0xf7, + 0x97,0xf9,0xb3,0xfe,0x5d,0xb7,0x3a,0xca,0x43,0xf8,0xc6,0x9e,0x67,0xfd,0x45,0xce,0x65,0xaf,0x51,0xf0, + 0x1a,0x0f,0xc8,0x26,0x5a,0xa1,0xad,0x80,0xf2,0xa7,0xb6,0xfc,0xb9,0x94,0x3f,0x95,0x7e,0xcf,0xa2,0xf9, + 0x30,0xf3,0x4f,0x9d,0x7a,0xb4,0x80,0xa7,0xc7,0x47,0x63,0x75,0xc6,0xac,0xa9,0xdb,0xc6,0x55,0x3b,0x02, + 0x4a,0x65,0x1b,0x5d,0x4a,0xa3,0x95,0x23,0x4b,0x8c,0x6e,0x8c,0x43,0xbf,0x0a,0xcd,0x31,0x07,0x12,0xe2, + 0xc0,0xe0,0xa4,0x85,0x73,0x09,0x6d,0x49,0xe8,0xcb,0x1d,0xf2,0x0e,0x5b,0xe8,0x4b,0x93,0xf3,0x5c,0x82, + 0x8a,0xda,0x84,0x98,0x12,0x86,0x41,0xe6,0xa7,0xee,0x60,0x73,0xed,0x16,0x92,0xf5,0xcf,0xc4,0xca,0xcf, + 0xba,0xe5,0xca,0x07,0x4b,0x9c,0xc3,0x57,0x74,0x8b,0x5f,0xb0,0x83,0x36,0x58,0x65,0x36,0x2b,0xc3,0x97, + 0xf9,0x5c,0xc1,0x32,0x58,0x8c,0xa1,0x82,0x9b,0x9d,0xf6,0xcb,0x69,0x46,0x93,0x99,0xb3,0x17,0x1c,0x3d, + 0x1f,0x3a,0x96,0x89,0xd3,0x32,0xcb,0x00,0x04,0xa7,0xd0,0x09,0xce,0x73,0xff,0x9c,0x86,0x5d,0xd0,0x39, + 0x56,0x4b,0xfe,0xcc,0x21,0xd0,0x42,0xca,0x79,0x50,0x5f,0x77,0x8b,0x68,0x42,0xbf,0xd7,0xeb,0x9d,0x9d, + 0x29,0x1f,0x4a,0x99,0x84,0x86,0xe2,0x15,0x1f,0x6b,0x11,0x43,0xd1,0x28,0x2f,0x09,0x4d,0x5c,0x3e,0xb8, + 0x18,0x5e,0x1a,0x25,0xbe,0x99,0xa9,0x70,0x7c,0x39,0x1e,0x5e,0x52,0xa7,0xfb,0x30,0x85,0x9b,0x61,0x66, + 0x06,0x84,0xee,0x78,0xde,0x1d,0xac,0x1e,0x3f,0x45,0xcd,0x8e,0xef,0x8d,0xf7,0xf6,0xb4,0xc2,0x26,0x7e, + 0x28,0x9d,0x7c,0xdf,0x4d,0xbe,0x6f,0x93,0x3f,0x77,0x93,0x3f,0xd7,0xa6,0x82,0xd7,0xdc,0xcc,0x7a,0x8d, + 0x82,0xf8,0xf7,0x73,0xfa,0xd7,0xf3,0xd4,0x69,0xe4,0xb1,0x90,0x86,0x66,0xe8,0xc1,0x37,0xb3,0xb4,0x70, + 0x34,0x1e,0x99,0x53,0xf2,0x24,0x81,0xbf,0xdc,0x9f,0x92,0x2b,0xf8,0x3b,0x2d,0xbf,0xcd,0x8b,0xef,0xa9, + 0x54,0xd8,0x9d,0x3b,0x5c,0xd1,0x8c,0xb4,0x62,0x3a,0x1a,0x51,0x4c,0x68,0x87,0x84,0x12,0xae,0x11,0x89, + 0x0b,0x7e,0x07,0x46,0x2f,0xf3,0xf0,0x9b,0xdc,0x71,0x6d,0x37,0x57,0x1d,0x3c,0xf2,0xb3,0x9c,0xdd,0xcb, + 0x07,0x9b,0x0d,0x51,0x02,0x70,0xee,0x0f,0xe8,0x60,0x9d,0x56,0xc2,0x0b,0xee,0x35,0x15,0x9e,0xb7,0x10, + 0xac,0x80,0xe9,0x0a,0xae,0xe9,0xa3,0x73,0xa0,0x9f,0xd6,0x0d,0x41,0xd4,0x94,0x5a,0xf0,0x63,0x38,0xfd, + 0x82,0x87,0x9b,0x6c,0x1a,0x6c,0x08,0x6e,0x80,0xc0,0x72,0x95,0xb0,0x2b,0x86,0xa3,0xf6,0x61,0x7d,0x67, + 0x4c,0xc8,0xdf,0x9a,0x8f,0x5d,0xfd,0x01,0xa0,0x5b,0xd9,0x4b,0xf1,0xad,0x75,0xf4,0xbc,0xc2,0x59,0x38, + 0xd7,0x38,0xe2,0x2d,0xdc,0xba,0x3a,0xdf,0x17,0xce,0xf7,0xca,0xf9,0xf6,0x77,0xa3,0xb7,0x2e,0x9a,0x53, + 0x84,0x40,0x1f,0x1c,0xd2,0x99,0x59,0xf5,0xa3,0x5d,0xd5,0x68,0xfc,0x5d,0x83,0x58,0x38,0x54,0x2b,0x60, + 0xa9,0x55,0xb0,0x59,0xb1,0xb8,0x92,0x72,0x09,0x95,0xc2,0x92,0xdc,0xa2,0xdf,0x77,0x35,0x06,0x7e,0xc7, + 0x6a,0xa7,0xf0,0x2b,0x94,0x02,0x19,0xb6,0xf0,0x73,0x62,0x4c,0x66,0x37,0x85,0xcf,0xc2,0x25,0x09,0x1c, + 0x32,0xcb,0x95,0xf3,0x40,0xd1,0xb8,0x32,0x1d,0x91,0x8c,0x7b,0x77,0x6e,0x4b,0x63,0xb6,0xaf,0x51,0xd5, + 0x05,0x45,0xb7,0x00,0x57,0x67,0xd9,0xf7,0xc3,0xa3,0xce,0x55,0x5b,0xf8,0x3e,0xb4,0xe8,0xbe,0xd4,0xf8, + 0xcc,0xb9,0x4b,0x63,0x58,0xc3,0xca,0x33,0x10,0xc7,0x5c,0x42,0xa0,0x90,0x5d,0xbc,0x7e,0x0e,0x9f,0xc0, + 0xcb,0x3b,0x5c,0x68,0xd3,0xda,0x21,0xe0,0x55,0x93,0xa7,0xab,0xf5,0x9f,0x09,0x4b,0x0a,0x3d,0x9c,0xb8, + 0xe4,0xb0,0x91,0x7a,0x22,0x20,0xea,0x9f,0xb9,0x51,0xa7,0xcc,0xb4,0x1a,0xa5,0x7c,0x45,0xf2,0xc7,0x9e, + 0x8e,0x7f,0xe5,0x4a,0xb6,0x91,0x4f,0x00,0x08,0x18,0x1b,0x49,0x0f,0xee,0x62,0x44,0x10,0xe9,0xbc,0xf4, + 0xfc,0xab,0xe2,0x09,0x10,0x22,0xc5,0xf8,0x2e,0x69,0xec,0x20,0x07,0x77,0xb4,0x6b,0x7d,0xf6,0xb5,0x78, + 0x1e,0x5d,0x06,0xa2,0xe9,0x6c,0x9e,0xac,0x91,0x7c,0x2e,0x9a,0xd9,0xe7,0x4d,0x91,0x2c,0x4d,0x17,0x92, + 0xbf,0x83,0x37,0xf1,0x2a,0x76,0xcb,0x36,0x0a,0xd1,0xe8,0x11,0x9e,0x36,0xe0,0x0e,0x69,0x11,0xce,0xd8, + 0x47,0x3c,0xc7,0xa6,0xb4,0x16,0xda,0xb4,0x1a,0xb3,0x07,0x67,0x96,0x3b,0x98,0xd1,0x72,0x5c,0x46,0x67, + 0xf9,0xf1,0x6c,0xec,0x43,0xd3,0x76,0xbd,0x66,0xa7,0x2b,0x50,0xd7,0xb5,0xcf,0x90,0xab,0xe8,0x12,0x8f, + 0x6e,0x10,0xfd,0xa1,0xe9,0x15,0xa8,0x6c,0x36,0x3e,0xb8,0xac,0x59,0x92,0xc3,0x80,0x79,0x92,0x4b,0x87, + 0x27,0xc1,0x8b,0x65,0x67,0x5c,0x63,0x2b,0x6b,0xb3,0x4e,0x30,0xdd,0x90,0x8d,0xf6,0xd5,0xd5,0xc1,0xdd, + 0x95,0xf1,0x4e,0x53,0x0d,0x0b,0x1a,0x30,0x7c,0xf7,0x68,0xe4,0xe6,0xb4,0x46,0x89,0x12,0xa6,0x44,0x70, + 0x5d,0x4b,0x09,0xa8,0x55,0x50,0xa2,0x93,0x6e,0x8c,0x9f,0x4d,0x9a,0x07,0x5b,0x45,0xb1,0xcc,0x2f,0xe2, + 0x30,0xc2,0x97,0x41,0x78,0x59,0xbf,0x95,0x52,0xee,0x0f,0x15,0xa5,0x75,0xc4,0x93,0x75,0xde,0x74,0xf5, + 0xd5,0x9d,0xe0,0x51,0xb5,0xc2,0x23,0x64,0x22,0x8f,0x90,0x95,0x7e,0x84,0x4c,0x36,0xda,0xf4,0xba,0xe3, + 0x89,0x57,0x94,0x9c,0xf5,0xf3,0x64,0xd0,0xd0,0x74,0xaa,0x1f,0x7c,0x8d,0xb6,0x93,0x7e,0xb7,0x84,0x9b, + 0x5d,0x0c,0xca,0x36,0x77,0x21,0x5b,0x05,0x0e,0x9f,0x1b,0xbc,0x60,0x66,0x9f,0xf7,0xe2,0xc7,0x8a,0x37, + 0x98,0x56,0x72,0x64,0x76,0x7f,0xbd,0x2e,0x68,0xa4,0x0c,0x2d,0xd2,0x20,0xed,0x3e,0x7f,0x51,0xd5,0xef, + 0xf0,0xd8,0xc0,0x83,0x37,0x99,0x7a,0x0e,0x97,0x9b,0x20,0x2c,0xa8,0x1b,0x3a,0x91,0x3b,0x0e,0x94,0xc1, + 0x64,0x68,0xab,0x99,0x29,0x95,0x5b,0xdc,0x72,0x34,0xed,0x89,0xe4,0xf8,0x7a,0xc6,0x0c,0x3d,0xe1,0xd0, + 0x7a,0x80,0x65,0x23,0xe7,0xa5,0x84,0x21,0x6d,0x4c,0xbe,0x80,0xfd,0xaf,0x5f,0x7b,0xba,0x21,0x12,0x7e, + 0x6f,0x6f,0xc1,0xe3,0xff,0x0e,0xef,0x82,0x3c,0xd6,0x69,0x73,0xac,0xd3,0x4d,0x2d,0x8d,0xbf,0x1c,0xc0, + 0x4a,0x81,0xbd,0x7e,0x71,0x28,0x71,0xd9,0xe9,0x23,0x7d,0x25,0x4b,0xae,0x48,0x10,0xd7,0xeb,0x3b,0x9e, + 0x96,0x34,0x78,0x77,0x86,0xd4,0x65,0x23,0xcc,0x5b,0xf3,0x37,0x9b,0x12,0x1c,0x5f,0x8f,0xa3,0x4b,0xb1, + 0xb6,0xae,0xc7,0x27,0x88,0xe2,0x92,0x4f,0x89,0x0e,0xcb,0x36,0x5c,0x8e,0x32,0xc0,0x95,0xcf,0xef,0x44, + 0xa6,0x00,0x82,0x8b,0x65,0x1d,0x3a,0xf5,0xf9,0x71,0x6e,0x99,0xba,0xb1,0xaa,0x1c,0xbf,0x58,0xc7,0x5b, + 0xce,0xb0,0xa8,0xc4,0x90,0xee,0xd6,0x7b,0x11,0x9b,0xf9,0x08,0xbe,0xe8,0x79,0xf2,0x8b,0xfd,0x28,0xec, + 0x4c,0xa0,0x65,0x5d,0x8f,0x0d,0xcb,0xa9,0x6c,0xfb,0xd1,0x11,0x51,0x05,0xcd,0xfe,0x32,0xf1,0xb4,0x8d, + 0x9b,0xa8,0xf1,0x0e,0x60,0x22,0x8a,0x3d,0xc9,0xdc,0xc7,0x25,0x71,0x65,0x02,0xbc,0x95,0xd6,0x28,0x69, + 0x51,0xfb,0xe1,0x80,0x4d,0x77,0x60,0xcd,0xdd,0x5c,0x7f,0x45,0x74,0xfd,0x4d,0x10,0xec,0x51,0x1e,0x79, + 0x46,0x5e,0xcd,0x1e,0x11,0x05,0x9b,0x06,0xc6,0x4c,0x85,0x91,0x26,0xbb,0x29,0x80,0x2d,0x75,0x12,0x7e, + 0x8f,0x6b,0x20,0x64,0xeb,0x4c,0x19,0xf3,0x88,0xe6,0x0b,0x71,0x1f,0xc6,0x56,0xf2,0xec,0x77,0xd8,0x5d, + 0x9f,0xdf,0x56,0xce,0x95,0x83,0x75,0x9d,0x8f,0x92,0xdc,0xbf,0xce,0x83,0xf0,0x9f,0x29,0x73,0xf1,0x35, + 0x13,0x61,0xfd,0xbd,0x29,0x87,0x35,0xa5,0x7f,0x26,0xf0,0xda,0x1b,0x97,0xd5,0x53,0xd0,0x05,0xc0,0x46, + 0x1c,0xbb,0x27,0x99,0xe0,0x3e,0x0a,0x6e,0x68,0x4f,0x0b,0x21,0x19,0x82,0x87,0x78,0x86,0xd2,0x84,0x74, + 0x6e,0x69,0x85,0x09,0x0c,0x73,0x95,0xa6,0xa0,0x5a,0xc8,0x29,0x37,0xea,0x89,0xcb,0xe8,0xbb,0xc4,0x77, + 0x3d,0x20,0x0f,0x75,0x05,0x79,0xa8,0x59,0xca,0x03,0x95,0x6e,0xfb,0xc6,0xfb,0xb7,0x33,0x51,0x13,0xf4, + 0xa0,0x30,0x41,0x03,0x4c,0xfb,0x0e,0x55,0x6e,0x2e,0xa8,0xc9,0x83,0xda,0xc0,0xa2,0x63,0x58,0xef,0x1d, + 0x14,0x9f,0x2a,0xa8,0xf3,0xc1,0x0c,0x29,0xd6,0xe2,0x2e,0x28,0x25,0x56,0xf9,0xdb,0x24,0x2b,0x43,0xd8, + 0x39,0x61,0xd1,0x46,0x99,0xa1,0x0c,0x61,0xf8,0x79,0x57,0x39,0xb5,0x98,0x42,0xd1,0x3f,0x4c,0x35,0x28, + 0x6a,0xe3,0x43,0xde,0xbb,0x08,0x2b,0x86,0x02,0xad,0x49,0xbd,0x9f,0x06,0x80,0xb3,0x63,0x07,0xc6,0x19, + 0x98,0x61,0xd1,0xe6,0x74,0x76,0xcf,0x36,0xa2,0xa3,0x24,0xb3,0x0d,0xf8,0x96,0x67,0xf8,0xf6,0xc1,0x6c, + 0x56,0x56,0xd6,0xb4,0x2d,0xdc,0x39,0x64,0xa3,0x08,0x55,0xc0,0xab,0x9a,0xec,0x02,0x22,0x16,0x6b,0x01, + 0x13,0x24,0xc5,0x97,0xe9,0x9f,0x09,0xcb,0x77,0x58,0x8b,0x1b,0xae,0x75,0xfc,0xc7,0x79,0xf4,0x5d,0x4e, + 0x94,0x83,0xfb,0x14,0x05,0x72,0xe1,0x51,0x0e,0xa8,0x68,0xcb,0x6d,0xed,0x25,0x02,0xc3,0x1d,0xf1,0x1e, + 0xa3,0x6b,0x46,0x77,0x41,0x18,0x4c,0xa2,0x2a,0xd0,0xa7,0xd8,0xc7,0x91,0x9e,0xf0,0x0f,0xe2,0x71,0xfc, + 0x9d,0x89,0xbe,0x72,0x27,0x30,0x47,0xd0,0x4a,0xa2,0xd4,0x17,0xd4,0x73,0xf0,0xef,0x39,0x82,0x7c,0xad, + 0x32,0x9f,0x2d,0xa8,0xc0,0x15,0x3d,0xca,0xed,0xf7,0xb6,0xc1,0xa7,0x35,0xf7,0x64,0x15,0x28,0x13,0x09, + 0x42,0xfb,0x81,0xb6,0xce,0x82,0xb8,0x7a,0xc3,0x7c,0x00,0xdd,0xd4,0xd6,0xa0,0xd6,0x4b,0x0c,0xc1,0x12, + 0xf5,0xa8,0x2d,0xc9,0x10,0x34,0x90,0x12,0x06,0x08,0x0d,0x73,0x4d,0xeb,0x13,0x00,0x9a,0x8e,0x2c,0x7e, + 0x12,0x4b,0x05,0x1a,0x9d,0xb1,0x4a,0xf4,0x80,0x7f,0x3d,0x63,0xa6,0x28,0xc6,0x5f,0xf8,0x61,0xb0,0xc9, + 0xb1,0x97,0x66,0x20,0x25,0xf7,0xed,0x30,0x8d,0xa5,0x82,0x2b,0xf9,0x84,0xcd,0xda,0x96,0xa3,0x40,0x13, + 0x86,0x5a,0xa4,0x76,0x4e,0x01,0xd0,0x7f,0x70,0xb4,0xa2,0x52,0xbd,0xfc,0x30,0x52,0x32,0x3b,0xb1,0x73, + 0xc4,0xd4,0x39,0x11,0xd2,0xe7,0x8f,0x73,0x5a,0x67,0x7e,0x21,0xa8,0x03,0x8d,0x12,0xca,0x44,0x64,0x51, + 0x37,0xd3,0xf4,0x97,0x3f,0x88,0x6b,0x57,0x5a,0x65,0xab,0x10,0x5c,0x27,0xf1,0xe5,0x44,0x3d,0xc3,0x12, + 0xee,0x96,0x9e,0x19,0x94,0x27,0x1b,0x08,0x69,0x5c,0x60,0xd1,0x0e,0x0c,0x5a,0xeb,0x68,0xab,0xc2,0x8a, + 0x22,0x17,0x77,0x7f,0x36,0xed,0x69,0x46,0xc4,0x77,0x94,0x69,0x0e,0x8c,0x12,0x84,0xc3,0x68,0x2c,0x11, + 0x15,0x17,0xf0,0x6e,0xa5,0xaf,0xd7,0xf7,0x1a,0xc9,0xec,0xa7,0x9d,0x7d,0x44,0x68,0xdc,0x02,0xde,0xcb, + 0xf6,0x04,0x07,0xc4,0x4c,0xbb,0x38,0x00,0x2d,0x69,0x47,0xaa,0x6e,0xc3,0x2e,0x21,0x51,0x74,0x2a,0xed, + 0xd8,0xae,0xe2,0x41,0xca,0x54,0x1e,0x44,0xc2,0x8e,0x6f,0x47,0x95,0x81,0xc9,0xaf,0x18,0xf6,0x86,0xff, + 0xb9,0x8d,0x49,0xfc,0x5b,0xf6,0x84,0xe3,0x16,0xf8,0x19,0xd4,0xc2,0x35,0x42,0x26,0x44,0x99,0xf9,0x69, + 0x1d,0xb2,0xfc,0x86,0x2e,0x80,0xd0,0x1a,0x5d,0xe6,0x26,0x40,0x6d,0xeb,0x11,0x85,0x32,0x5a,0x29,0x9b, + 0x66,0x48,0x3f,0xbb,0xa7,0x95,0xef,0xa8,0x61,0x34,0x8d,0x30,0x13,0x28,0x0c,0xb2,0x29,0xa5,0xf8,0xfe, + 0x29,0xe4,0x5d,0xaa,0x79,0x9b,0xf9,0xd5,0x28,0x0f,0xd3,0xc0,0x78,0x3d,0xdd,0xa0,0xb1,0xcc,0x48,0xd2, + 0xd9,0x6b,0x8f,0xfe,0x8e,0xea,0x47,0x28,0x7e,0x25,0x37,0xcf,0xe7,0xb6,0x30,0xc4,0x6b,0x0d,0x3b,0x65, + 0x38,0x88,0x74,0x5f,0xa7,0x5a,0xa3,0x73,0x32,0x09,0x23,0xb3,0xc1,0xa8,0x5b,0xdf,0x11,0xd1,0xc4,0x78, + 0xa5,0xcc,0x02,0x4f,0x77,0x84,0x43,0x4e,0x17,0x77,0x1d,0xb3,0xcd,0xa4,0xd0,0xc5,0x17,0xc3,0xfd,0x7d, + 0x3c,0x16,0x4c,0x5e,0x46,0xaf,0x73,0x8e,0x70,0x6e,0x24,0xf7,0xe5,0x20,0x29,0x8a,0x9c,0x38,0x83,0x94, + 0xce,0x4d,0x95,0x2e,0xca,0x28,0x57,0xa5,0xc6,0x3f,0x37,0xd0,0xf1,0x48,0xe7,0x49,0x58,0x29,0xfd,0xf5, + 0x3a,0xff,0x56,0x2f,0x55,0x09,0xc1,0x07,0x35,0xd4,0x69,0xe5,0xda,0xd0,0x88,0x49,0xb1,0xa2,0x62,0xc3, + 0x4c,0xa4,0x32,0x2f,0xb8,0x7e,0x97,0xea,0x39,0x16,0x08,0xcd,0xa7,0x88,0x91,0x36,0x39,0x72,0xd3,0x82, + 0x3e,0xb1,0x26,0xbc,0x69,0x70,0x8a,0x66,0xb4,0x17,0xe1,0x53,0x4f,0xbb,0xd7,0xe3,0xdd,0x53,0x20,0x1f, + 0xe9,0xda,0xa6,0xfd,0xb5,0x33,0x34,0x11,0x92,0x11,0x49,0x51,0x03,0xd7,0xa4,0x46,0x13,0xf5,0x33,0x5d, + 0xdc,0x4e,0x69,0xea,0xe1,0xd5,0x12,0x9c,0x73,0xf4,0x35,0x81,0x8e,0x02,0xfa,0x8f,0x4a,0xba,0xdd,0x8c, + 0xf5,0xce,0x26,0xf0,0x7f,0xc8,0x83,0xc1,0xf6,0x7a,0x11,0xe4,0xc5,0xd1,0xce,0x0e,0x3c,0xd5,0x4f,0x33, + 0x1f,0xef,0x4d,0xb9,0xfb,0x9b,0xb8,0x89,0x38,0xee,0xb4,0xbb,0x61,0x53,0x27,0x6b,0x58,0x07,0x4c,0x63, + 0x95,0x4d,0x68,0x00,0x65,0x1c,0x75,0x18,0x4f,0x99,0xe2,0x1f,0xb6,0xab,0x02,0xaa,0x63,0xa3,0x2a,0xee, + 0x06,0x8a,0xa3,0x0d,0xf3,0x4e,0x22,0x23,0xdd,0x24,0xf3,0x61,0x82,0x2c,0x6f,0xc7,0x0c,0x6d,0x44,0x13, + 0x67,0x97,0x05,0x26,0xe2,0xb4,0x55,0xdf,0x1d,0x98,0xeb,0x46,0xe4,0xa1,0xac,0x6c,0xc9,0xdb,0x5d,0x07, + 0x16,0x2c,0x02,0xef,0x6f,0x42,0x9a,0xda,0xa8,0x08,0x4c,0x1d,0xc4,0x31,0xc4,0x04,0xd6,0xd5,0xd6,0x8e, + 0xe3,0x99,0xcb,0x1d,0x4a,0xc1,0x74,0xa3,0x59,0x24,0xe1,0x47,0xb9,0xfe,0x96,0x55,0x6a,0xbe,0xac,0x1a, + 0x1e,0xe1,0x7a,0x4e,0xd2,0xfb,0x0d,0xf5,0x44,0x9f,0xda,0xee,0x4b,0xcb,0x5d,0x74,0x6d,0x9f,0xc9,0x6c, + 0xbc,0xbb,0x67,0x58,0x66,0x99,0xb9,0xbe,0x3c,0x0b,0xb8,0xc9,0xbb,0xe9,0x14,0x16,0xa5,0xf1,0x7b,0x05, + 0x43,0x39,0xe2,0x54,0x99,0xf3,0x11,0x66,0xce,0x61,0x31,0xf4,0x1a,0x52,0xcd,0xe7,0x46,0x07,0x71,0x87, + 0x06,0x9a,0x3e,0x06,0xd0,0x41,0x6b,0xc1,0xfc,0xd0,0xec,0x57,0x94,0xb3,0x21,0x68,0xeb,0x88,0xd4,0xe6, + 0xf8,0xb1,0x8e,0xc3,0x0d,0x27,0x1b,0xfc,0x0c,0x2a,0xf6,0x94,0x0c,0xf7,0x34,0x27,0xfa,0xb5,0x09,0x5a, + 0xe6,0x07,0x9e,0xc4,0x07,0x73,0xc2,0xbe,0xf2,0xc3,0x34,0x78,0x8b,0x65,0x26,0xd1,0x1b,0xa7,0x84,0xb8, + 0x74,0xa6,0xe0,0xb6,0x91,0xfc,0x19,0xe8,0xa2,0x51,0xe5,0x77,0x06,0x90,0x95,0xda,0x10,0x0d,0xe3,0xef, + 0x20,0xbe,0x9c,0x8e,0xe4,0x93,0xa8,0xc1,0x30,0x19,0xfc,0xba,0x4c,0x9e,0x1e,0x7d,0x99,0xa1,0xf6,0xa6, + 0x15,0x60,0x9a,0x86,0xb5,0x24,0x00,0x01,0x08,0xd2,0xd0,0x86,0x0e,0x69,0x20,0x63,0xee,0x18,0x19,0x1e, + 0xdd,0x73,0xb6,0x4e,0xd2,0x5f,0x8c,0xc7,0x7c,0xef,0x78,0xb5,0x4c,0xf6,0x53,0xea,0x67,0xdc,0xf3,0xfa, + 0x70,0xa3,0xbd,0xb7,0xd7,0x28,0xc0,0x37,0xf8,0xe4,0xad,0xeb,0x48,0xbb,0x6a,0x05,0xbc,0x13,0x0e,0x6b, + 0x7b,0xa1,0xea,0x1a,0x2e,0x22,0x5a,0x69,0x67,0x49,0x38,0xb7,0x97,0x8d,0x37,0xd5,0x56,0x14,0x3d,0x84, + 0xd1,0xb3,0xb1,0x23,0x9c,0xc6,0x52,0x37,0xf6,0xb7,0x88,0xf6,0xec,0xeb,0xbe,0xa5,0xf5,0x20,0x4c,0x80, + 0x60,0xaf,0xce,0x02,0x95,0xa7,0x4f,0x33,0xf4,0xf9,0x52,0xfe,0x63,0xce,0x02,0xcb,0x1c,0x0c,0x0b,0x59, + 0xb1,0xcd,0x39,0x11,0xb1,0x4d,0x05,0x56,0x4e,0x1c,0xa5,0x6c,0x54,0x18,0x6e,0x1d,0xff,0x84,0x63,0xc8, + 0xe3,0xb9,0x05,0xc5,0xc2,0xbb,0x4e,0x83,0x2c,0xd8,0x7b,0x6f,0x71,0xe5,0xa3,0xcf,0xa3,0xae,0x3e,0x29, + 0x51,0xbf,0xda,0xf0,0xa7,0xba,0x21,0x02,0x25,0xa6,0xfb,0xad,0x10,0x4b,0x24,0x3a,0x6f,0x8e,0xb7,0xcf, + 0xbc,0xb6,0xd3,0xc6,0x8e,0xe8,0x4e,0x2d,0x0c,0x24,0x0d,0xdd,0x2c,0xab,0x6f,0xc0,0x9e,0x9b,0xb4,0x36, + 0xc3,0xda,0xb1,0x81,0xe4,0xbb,0xd2,0x08,0x03,0x68,0x95,0x11,0x84,0x70,0x10,0x9f,0xf1,0x93,0x61,0x7e, + 0x5c,0x45,0x77,0x59,0xa9,0x93,0x86,0x96,0xd1,0xb2,0x3c,0x3c,0x1a,0x1d,0x85,0x87,0xe1,0x51,0x98,0x8d, + 0xb8,0xdc,0x65,0x0a,0xf7,0xbf,0x77,0x83,0xf0,0x70,0x3c,0xca,0x59,0x9a,0xc3,0x3c,0x54,0xe8,0x6c,0x64, + 0xec,0x6c,0x39,0x33,0x9d,0x1c,0xbf,0xbb,0xcd,0x7f,0x36,0x7c,0xb8,0x97,0xae,0xf0,0xc8,0xd9,0x77,0x7b, + 0xa9,0x0b,0xb9,0x44,0xfc,0xc9,0x83,0x2d,0x98,0x48,0x0d,0x2d,0x9e,0x4b,0x6c,0x1d,0x7e,0x34,0xd4,0xa1, + 0x47,0x72,0xe3,0x66,0x22,0xb2,0x01,0x32,0xf4,0x7b,0x02,0x3a,0x63,0xca,0x25,0x0f,0x26,0x84,0x5e,0x96, + 0x51,0xac,0x66,0x02,0xc1,0x70,0xba,0xc8,0xae,0x44,0x73,0x90,0x2a,0x23,0xa6,0x5a,0x4a,0x26,0x5e,0x14, + 0xa7,0x84,0x9c,0xc2,0x9f,0x9a,0x8e,0x57,0x4b,0x6b,0xc1,0xd0,0x8c,0x37,0xc0,0xc4,0xdf,0x9c,0xbd,0x65, + 0xc3,0x63,0xb3,0xf6,0xed,0x66,0x8b,0x2c,0x6b,0x5f,0xbd,0x3c,0x7e,0x15,0x0f,0xe7,0x1c,0xdb,0x81,0xdd, + 0x01,0x21,0x20,0xb3,0xf5,0x44,0xaf,0xf2,0xc1,0xa9,0x40,0x08,0x3c,0xa0,0x0c,0x76,0x71,0xb2,0x07,0x92, + 0x50,0xfb,0x65,0xee,0xc1,0x90,0xb7,0x10,0x9f,0xb0,0xd8,0xc3,0xda,0x4e,0x5c,0xb3,0x46,0xbc,0xc3,0xf0, + 0x22,0x29,0x1e,0x7c,0x52,0x22,0xb9,0x73,0x53,0x08,0x02,0x3f,0x5a,0x2e,0x4d,0xed,0x64,0x41,0xed,0x53, + 0x87,0x4a,0x57,0xc5,0xb5,0x5e,0xbe,0x76,0xe4,0x23,0x22,0x72,0x9a,0x49,0xd2,0x36,0xd1,0x7b,0xa5,0x85, + 0x4a,0xa3,0x8d,0x10,0xd9,0x07,0x73,0x08,0x02,0x84,0x75,0xb4,0xb8,0xcf,0x0d,0x1e,0x0c,0x56,0xa8,0xe0, + 0x60,0xca,0xd2,0xd8,0x7a,0x5d,0xd6,0x2c,0xaa,0x68,0x44,0xb8,0x7c,0x28,0x8d,0x62,0xd9,0x48,0xa8,0x69, + 0xca,0x49,0xdd,0xf7,0xd2,0xf6,0x3d,0xd9,0xea,0xdb,0xe9,0x39,0x23,0xa0,0x36,0x4e,0xdc,0x36,0xac,0xde, + 0x54,0x6b,0xba,0x11,0x17,0x4c,0xfc,0x83,0x36,0xf2,0xc8,0xac,0x57,0x31,0x70,0xdf,0xb5,0xe2,0x43,0x1d, + 0x16,0xc2,0xa1,0xfd,0xad,0xeb,0x39,0x0b,0x29,0xa3,0x1d,0x22,0x19,0x78,0x1f,0x21,0x9a,0xf6,0xbd,0x2c, + 0xaf,0xe8,0x0e,0x4a,0xcb,0xaa,0xa7,0x2f,0x88,0x5e,0xaa,0xfd,0xf3,0x00,0x4a,0x29,0xcd,0xfe,0xf6,0xa0, + 0x55,0xcc,0xbe,0xa1,0x9b,0x95,0x9a,0x15,0x70,0xe3,0xf7,0x74,0xa7,0x52,0xc3,0x0d,0x09,0x51,0x35,0xc0, + 0x4e,0x8c,0x59,0x68,0x77,0x64,0x66,0xf3,0x68,0x0b,0xb1,0x11,0x3c,0x2e,0x83,0x51,0x1c,0xe5,0xa1,0x38, + 0x03,0x85,0x16,0xfb,0x80,0x03,0x2f,0x96,0x40,0x25,0x0c,0x88,0x44,0xea,0xe6,0x03,0x3a,0x9e,0x74,0xaf, + 0xdf,0x20,0x2b,0x8c,0x95,0x46,0x6a,0x30,0x17,0x9d,0x95,0x30,0x2d,0x52,0xe7,0xd1,0x5c,0xea,0x4d,0xe9, + 0x43,0xd7,0x5b,0xd0,0x27,0x0a,0xb0,0xdf,0xaa,0xf5,0x7a,0xba,0x5e,0x2f,0x40,0x8a,0x9d,0xcb,0xf8,0xf8, + 0xc1,0x45,0xcd,0xd4,0x35,0xe4,0x8a,0x7a,0x11,0xab,0xc1,0xe9,0xaa,0xd2,0xd2,0x4f,0x13,0xc5,0xce,0x9f, + 0x45,0xd7,0xb2,0xa0,0xc1,0xa0,0xd2,0x31,0x47,0x66,0xea,0xf8,0xdc,0x7a,0x94,0xf4,0x57,0xd1,0x42,0x5d, + 0xe2,0x66,0xf1,0x2f,0x22,0xf8,0x48,0xba,0x14,0xbe,0xea,0x22,0x50,0x2b,0x9a,0x51,0x13,0x8c,0x57,0xec, + 0xfe,0x7d,0x15,0xd4,0xc5,0x56,0x01,0x94,0x14,0x40,0x40,0x99,0x93,0x78,0xdd,0x38,0x87,0x9a,0xb8,0xf3, + 0x3d,0x13,0x38,0xb7,0xf7,0x1f,0x98,0xe8,0x7f,0x60,0x37,0x56,0xfb,0x55,0xaf,0x0e,0x62,0xad,0xa5,0xd6, + 0x7a,0xff,0xca,0xe5,0x02,0xe4,0x44,0x4f,0x6c,0x67,0xc4,0x96,0xac,0x11,0x68,0x83,0x0f,0x74,0x7d,0x63, + 0x0a,0x3b,0x86,0x2f,0x7d,0x26,0x3c,0xda,0x1f,0xcf,0xaa,0x11,0x82,0x4a,0x85,0xaa,0x22,0x53,0xaa,0x43, + 0xd1,0xac,0x03,0x80,0x43,0x89,0xaf,0xf7,0xd5,0x51,0x28,0x7f,0xef,0xc9,0xdf,0xfb,0x5f,0xc8,0xdf,0x7b, + 0xf7,0xf5,0xdf,0xaf,0x74,0xfa,0x97,0xa1,0x0d,0x0c,0x26,0x15,0x3e,0xd7,0x05,0x74,0x85,0xfb,0x9f,0x87, + 0x46,0x3f,0x78,0x0a,0x5d,0x75,0x29,0x75,0xef,0xae,0x6e,0x5e,0xfe,0x1c,0x1d,0xea,0xbf,0xba,0xb7,0xa3, + 0x2f,0x74,0xc2,0x17,0x9f,0xdf,0xfd,0xbb,0x2e,0xf3,0xe5,0x5d,0x53,0x89,0xbe,0xee,0x99,0x46,0xaf,0x4a, + 0xcf,0x3e,0xc0,0x3d,0x8c,0xbe,0xfa,0x3b,0xb1,0x1a,0x0f,0xa2,0xa3,0xbb,0x77,0xd7,0x6b,0xfa,0xf9,0xc5, + 0xe7,0xfc,0xf3,0xab,0xc3,0x91,0xee,0x3c,0xa4,0xc4,0xfb,0x5f,0x71,0xe2,0xe7,0x7f,0x1f,0x79,0x62,0xc9, + 0xe0,0x85,0x1e,0x3f,0xbc,0x74,0x04,0x0a,0xd1,0xbe,0xf2,0x22,0x23,0x00,0x34,0xc1,0xed,0xbd,0x43,0x6f, + 0xc7,0x09,0x2d,0x7c,0x08,0x79,0x57,0x5a,0xfe,0x14,0xff,0x24,0x21,0xd3,0x20,0xb1,0x56,0xdf,0xea,0xf7, + 0xc4,0x60,0x44,0x38,0x96,0x98,0x49,0x98,0x9d,0xb8,0x2b,0x1e,0x68,0x89,0x8a,0x4d,0xaa,0xac,0x7c,0x93, + 0x9a,0xbb,0x77,0x7f,0x87,0x95,0xc9,0xee,0x7d,0x85,0xbf,0x23,0xbc,0x8f,0x6a,0x15,0x1e,0x05,0xd7,0xe2, + 0xde,0x67,0x5e,0x3f,0xd5,0x5e,0x71,0xd5,0xca,0xa0,0xb4,0x9a,0x6d,0x32,0xfe,0x2f,0x08,0x8a,0xbd,0x63, + 0xa1,0xcb,0x7a,0xda,0x55,0x9d,0xa7,0x66,0xdb,0xe5,0x2f,0xe2,0xf2,0xc5,0x55,0x66,0x22,0xdd,0xd1,0x09, + 0xea,0xa2,0x20,0x9f,0x66,0xd5,0xdc,0x89,0xd6,0x85,0x9f,0x83,0x27,0x08,0x2d,0x93,0x5e,0x26,0x44,0xdd, + 0x5f,0xc6,0x15,0x94,0x17,0x3e,0xb2,0xa2,0xb8,0xd1,0xd3,0xd5,0xce,0xa2,0x1b,0x71,0x64,0xf1,0xb8,0x15, + 0x25,0xb2,0xe1,0x57,0xc8,0xe5,0xd0,0x92,0x01,0x0e,0x54,0x24,0x7f,0xf8,0xc9,0xee,0xf4,0x14,0x9f,0xa3, + 0x9b,0x4d,0x68,0x42,0x02,0xf1,0x09,0xbf,0xb1,0x85,0x2d,0xd6,0xa3,0x11,0x3d,0xd7,0xe9,0x52,0x29,0x30, + 0xb7,0x16,0x22,0x1d,0x0e,0x4d,0x6a,0xa7,0xe3,0x99,0x8a,0x6e,0xf8,0x4a,0x39,0xc4,0x4a,0xc2,0x6a,0xff, + 0xee,0x9d,0x52,0x75,0x84,0x40,0x94,0x98,0xa2,0x68,0x94,0x9d,0xf7,0x3e,0x63,0x3c,0xf0,0x3c,0x29,0xcb, + 0x78,0x86,0xab,0xb8,0x92,0x2b,0x4c,0xdf,0x22,0xd4,0x8d,0x78,0x7d,0x3a,0x75,0xe6,0xa8,0xea,0x94,0xdf, + 0x50,0x2a,0xd1,0x5e,0xb9,0x64,0xa8,0x57,0x48,0xc2,0x5d,0x00,0x9d,0x62,0x3f,0x70,0x0a,0xb3,0x52,0xc2, + 0xa4,0x48,0xcf,0x12,0x64,0x3d,0x86,0x51,0x0e,0x0b,0x29,0x98,0xab,0x92,0x62,0xa6,0x84,0x78,0x62,0xdb, + 0xd4,0x01,0x31,0xf4,0x12,0x8a,0x64,0x9a,0x77,0xa0,0xc8,0xf3,0xca,0x44,0x99,0xc7,0xb7,0xe0,0xb5,0xed, + 0x94,0xc6,0x5a,0xf3,0x4b,0x25,0x8f,0x05,0x05,0xa2,0x76,0x59,0xbd,0x53,0x58,0xb4,0x4b,0x8e,0xea,0xbb, + 0x55,0xa2,0xce,0xb2,0x65,0x89,0xfe,0x3a,0x23,0xae,0x44,0x16,0xb2,0xa3,0x42,0x23,0xdf,0xd4,0x2a,0x89, + 0xcb,0xcb,0x44,0xa3,0x74,0xce,0xa6,0x07,0xbf,0x41,0x90,0xb6,0x55,0xb9,0xb3,0x18,0x7b,0xd5,0x6d,0x42, + 0x4b,0xf1,0x41,0x68,0x29,0x40,0x0f,0x6e,0x43,0x8b,0x05,0x05,0xde,0xff,0x32,0x2a,0xba,0x37,0x1e,0xef, + 0xde,0xcf,0xcd,0x26,0xfc,0x8f,0xed,0xbf,0x72,0x6e,0x10,0xbd,0x6c,0xd7,0x19,0x3f,0xcd,0xd9,0x1f,0x4c, + 0xf5,0x8a,0x03,0x3f,0x5e,0xdf,0xc6,0x80,0x76,0xeb,0x01,0xc9,0xea,0xfb,0xc6,0xac,0xae,0xf7,0x9f,0x80, + 0xa1,0x91,0xef,0x2c,0xcc,0x16,0x04,0xfd,0x27,0xa6,0x0b,0x46,0x5b,0x1e,0x38,0xf0,0x30,0xaa,0xa3,0x21, + 0xe8,0x11,0x35,0x7f,0xb7,0x61,0xba,0x71,0x44,0xdd,0x82,0xff,0xa9,0xe1,0x18,0xbf,0x6d,0x4f,0xda,0x31, + 0x65,0x8d,0xe3,0x36,0x19,0x9a,0xbf,0x55,0xb9,0x31,0xa2,0xc1,0x32,0x7b,0x5f,0xcf,0x46,0x94,0xd9,0x6e, + 0xa3,0x03,0xca,0x1a,0xcd,0xea,0x34,0xbf,0xd5,0x82,0x93,0x65,0x5a,0x68,0x00,0x46,0x37,0xb8,0xb4,0x5b, + 0x69,0x64,0xba,0x23,0x91,0x18,0x6f,0x9b,0x8d,0xba,0x32,0x2e,0x56,0x91,0x5a,0xbb,0x5d,0x8c,0xe7,0xb0, + 0xcf,0x16,0x47,0x88,0xac,0x92,0x76,0xe3,0xba,0x9d,0xd5,0x2f,0xf8,0xa1,0xb8,0x38,0xdc,0x70,0xf8,0xf0, + 0x66,0x09,0x43,0x86,0xe1,0xc9,0xcf,0x10,0xa2,0x6e,0x81,0x8d,0xe2,0x17,0xec,0x52,0x27,0x1e,0x33,0xdd, + 0x67,0x3d,0xbf,0x6e,0xb6,0x3c,0x2f,0x36,0xa8,0x79,0x1e,0x16,0x84,0x0d,0x12,0xeb,0x02,0x21,0x5f,0x6b, + 0x1b,0x32,0xe4,0x3b,0x80,0x23,0xc1,0x2f,0xfc,0x5c,0x04,0xf3,0x1f,0xf4,0xf1,0xaa,0x63,0xb8,0x45,0xf2, + 0xc7,0xc6,0xca,0x25,0x12,0xde,0xba,0xd9,0xcc,0x87,0x22,0x40,0x2f,0x84,0x94,0x46,0xe8,0x0d,0x4d,0x4a, + 0x2f,0x21,0x72,0x9e,0x23,0x83,0xe7,0xc6,0x66,0x9e,0xe7,0x2d,0x0e,0x6d,0x1e,0x8c,0xe6,0x26,0x42,0xef, + 0x61,0xe8,0xde,0x71,0xf3,0xc0,0xa6,0xb3,0x4e,0x75,0x8b,0x4d,0x72,0xfd,0xe7,0xe1,0x18,0xd5,0xd1,0xc6, + 0x6b,0xed,0x1f,0x27,0x02,0x39,0x0f,0xc1,0xf0,0x3b,0x75,0x90,0xf2,0xbd,0x3d,0x8f,0x1f,0x02,0x37,0x9b, + 0x3a,0x50,0xc2,0xde,0x5e,0x6e,0x7b,0x26,0x3e,0x74,0x4a,0xad,0xfb,0xde,0xd3,0xf3,0x9e,0xcc,0xa2,0x87, + 0xd5,0xee,0xa5,0x65,0x0f,0xbe,0x61,0x7a,0x74,0x07,0xf4,0x78,0xad,0x7b,0x3a,0xd6,0x7d,0xd9,0x83,0x41, + 0x43,0xef,0x22,0x5e,0x25,0x52,0x41,0xca,0x53,0xe1,0x01,0xde,0x68,0xb7,0xe7,0xbe,0x8d,0xd3,0x21,0x5d, + 0x59,0x12,0xcf,0x07,0x2f,0x9f,0xed,0x15,0xe9,0xba,0x01,0x96,0xf0,0x54,0x36,0x67,0xdd,0x49,0xe2,0xcc, + 0xbb,0xdb,0x13,0x51,0xc6,0x74,0xe4,0xc1,0x28,0xaa,0xbd,0x2c,0x21,0xa5,0x56,0xc3,0x25,0x24,0x59,0x90, + 0x4d,0x6a,0x17,0xfd,0x2a,0x55,0xf1,0x20,0xf5,0x25,0x50,0x04,0x8e,0xc6,0xbb,0x68,0x0b,0x51,0x4c,0xa8, + 0x27,0xba,0x5c,0x3a,0xde,0x3a,0x36,0xc3,0x77,0x0e,0xed,0x97,0xc2,0x1a,0x70,0x91,0x43,0xb8,0xed,0xca, + 0xd9,0x6b,0x07,0xd9,0x4e,0x6b,0x70,0x05,0x67,0xf8,0x52,0xa8,0xc8,0xbd,0x57,0xdd,0x4e,0x15,0x70,0x91, + 0xe4,0xe8,0xdc,0x19,0xe1,0x71,0x72,0x9c,0xf5,0xfb,0x2c,0x7f,0xf1,0x6e,0x3c,0xd1,0x7a,0x2c,0xf0,0x46, + 0xe0,0x3c,0xc8,0xb3,0x4a,0x89,0xa7,0x55,0xb8,0x0a,0x3c,0x5a,0xa0,0x2d,0x11,0xde,0xd0,0x87,0x58,0x4d, + 0xe8,0x76,0xbc,0x0d,0xeb,0x9d,0x0c,0x83,0xbc,0x4f,0x74,0xb7,0x4d,0x16,0x31,0xc4,0x5b,0x21,0xc3,0xf3, + 0x60,0xe4,0xb1,0x73,0xd0,0x70,0xb7,0x4e,0x00,0x32,0x99,0x12,0xf9,0xbf,0x14,0x27,0x72,0xde,0xd0,0x0c, + 0x41,0xba,0xcd,0xc5,0x7d,0x75,0xbc,0x11,0xbd,0x77,0xef,0x7f,0xf1,0x58,0x47,0x34,0x66,0x10,0xff,0xb4, + 0x23,0xa0,0xf4,0xa9,0xcb,0x20,0xc4,0xbf,0x86,0x0d,0xf9,0xe0,0x4c,0x2a,0x48,0xd3,0x55,0x6b,0x55,0xa3, + 0xa2,0x21,0x77,0xb6,0x8b,0x4f,0x2b,0x29,0x91,0xa2,0xdb,0xe2,0x14,0x33,0x1d,0x8e,0x28,0xb7,0x3d,0x13, + 0xac,0xad,0xf9,0x01,0x3d,0x6a,0xfb,0xf6,0xc4,0x4b,0x37,0x4c,0xdb,0x9b,0x12,0xd3,0x84,0xd2,0xb1,0xe1, + 0x02,0x63,0xfd,0xa6,0x0c,0x76,0x4b,0xc6,0x1f,0x16,0x3a,0xee,0xa9,0xd6,0x98,0x13,0x95,0x54,0x66,0xe6, + 0xf4,0x40,0x74,0x81,0xec,0x98,0x29,0x1d,0xa2,0xf1,0x4d,0x59,0x75,0x74,0x18,0x8c,0x1b,0x15,0xcc,0x68, + 0xe5,0xaf,0xa8,0x79,0xdb,0xea,0xba,0x16,0xd1,0xc3,0x69,0xbf,0x6f,0x17,0x75,0xc3,0xb1,0xe9,0xe4,0xc5, + 0xea,0x6d,0x74,0xf0,0x87,0x7f,0x32,0x0d,0xfa,0x07,0x6a,0x97,0x3f,0xaf,0xf0,0xf9,0x98,0x96,0xe9,0x51, + 0x74,0xa4,0x5e,0x45,0x77,0xd5,0xeb,0xe8,0x9e,0x7a,0x41,0xbf,0xdf,0x44,0xf7,0xd5,0xb3,0xe8,0x73,0xf5, + 0x4d,0xf4,0x85,0x7a,0x19,0xfd,0x5d,0x3d,0x8d,0xbe,0x54,0x4f,0xf0,0xcc,0xf6,0xe4,0xf8,0xc5,0x38,0xba, + 0xb9,0x2a,0x43,0xfa,0xab,0x98,0x37,0x0c,0x8f,0xef,0xa9,0xc7,0x63,0xe5,0x1d,0x7b,0xe1,0xf1,0x9b,0xb1, + 0xa2,0x4b,0x3e,0x3c,0x7e,0x39,0xde,0xa8,0x27,0xc7,0x47,0xba,0xe4,0x11,0xe5,0x0e,0x28,0xf7,0x6e,0x67, + 0xa9,0xbb,0xba,0xd4,0xdd,0x66,0x7b,0x87,0xfa,0xaf,0xb0,0x9a,0xf2,0x03,0xc5,0xef,0x51,0xf1,0x0f,0x95, + 0x53,0xdc,0xab,0x7a,0x64,0xfa,0xe5,0x2f,0xee,0x19,0x5f,0xd2,0x37,0x7d,0xa1,0xb9,0x37,0xd4,0x9c,0x77, + 0x87,0xb2,0x9e,0xa1,0xde,0x1d,0xef,0x4e,0x78,0xfc,0x4d,0x3d,0x1d,0xf5,0x8a,0xbe,0xc6,0x1e,0x1a,0x7b, + 0x2d,0x15,0x9f,0xb2,0x95,0x1e,0xb2,0x64,0x38,0xcf,0x4c,0x7d,0x24,0x34,0x4a,0x3c,0xd3,0x25,0xbe,0xa1, + 0x12,0xdc,0xee,0x56,0x09,0x74,0x24,0x1b,0xf3,0x2d,0x5b,0x32,0x13,0xa9,0x56,0x2c,0x93,0x35,0x5b,0x68, + 0xae,0xf7,0x47,0xc7,0x27,0xd3,0xc1,0xb8,0xbf,0xbe,0xc3,0xae,0xab,0xee,0xac,0x3d,0xf6,0x66,0xe5,0x05, + 0x54,0x6e,0xf7,0x40,0xfd,0x74,0x0b,0xda,0xea,0xc6,0x5a,0x3f,0x39,0x58,0x8b,0xa1,0xec,0x25,0x5d,0x6a, + 0x0d,0x14,0xe4,0x78,0x3b,0x96,0x86,0x1c,0x84,0x55,0x41,0xb7,0x62,0xbb,0xb4,0x89,0x85,0x29,0xc2,0x2d, + 0x1c,0xb8,0x65,0xb4,0x7f,0x44,0x57,0xe3,0x0b,0x0e,0x52,0x77,0x01,0x70,0xc1,0x99,0xb9,0x38,0x7e,0x34, + 0x6e,0x98,0x6b,0x98,0x7b,0x2a,0x63,0x35,0x1c,0x81,0x5e,0x78,0x16,0x94,0x0c,0x58,0xe0,0x1f,0x3f,0xee, + 0xa8,0x01,0x5d,0xa6,0x51,0x16,0x15,0x61,0xd6,0x27,0xc2,0x9f,0x0a,0xbd,0x6a,0x14,0x42,0x25,0xa2,0x8c, + 0xce,0x09,0xf6,0x29,0xef,0x75,0x23,0x0f,0xa2,0xae,0x87,0x87,0xc1,0xf9,0xfe,0x3e,0x0d,0xef,0x8d,0x92, + 0xa2,0xf6,0x61,0x11,0xa3,0xdd,0xc1,0x3b,0x86,0x9f,0x45,0x0b,0xf6,0x74,0x67,0x25,0xa1,0x18,0x3b,0xd4, + 0x26,0x87,0x5a,0xc6,0x3d,0x67,0xcf,0xee,0xcb,0x7e,0x1f,0x6e,0x0f,0x59,0xcf,0x07,0xae,0x12,0x97,0x78, + 0x7e,0xd8,0x69,0xf1,0xde,0x9c,0xd1,0x3f,0x62,0x6c,0x0d,0x59,0xd2,0x33,0xba,0x95,0xef,0xb0,0x46,0xe1, + 0x7a,0x8d,0xdf,0xdf,0xec,0xed,0x11,0x58,0xe0,0xb7,0x41,0x31,0x68,0x96,0xb0,0x35,0x35,0xdc,0xaf,0xf4, + 0x18,0x11,0x0e,0xd9,0x0f,0xb4,0x5d,0xd6,0x14,0x6a,0xbc,0xa0,0x73,0xca,0xe8,0xc9,0xf1,0x7c,0x1c,0x10, + 0xde,0x59,0xaf,0x4b,0x56,0xd8,0x5c,0xaf,0x9f,0x42,0x9c,0xfc,0xd4,0x68,0xf4,0x70,0x9f,0x70,0x54,0xaf, + 0xfc,0x38,0xba,0x38,0xce,0xe9,0x0c,0x8e,0x45,0xbe,0x62,0xd7,0x92,0xbe,0x73,0x3a,0x74,0xc1,0xa8,0x0a, + 0x0b,0x99,0x3e,0xf1,0x3f,0x41,0xa3,0x81,0x28,0x7a,0x69,0xc6,0x36,0x11,0x35,0x35,0x4b,0x90,0x1a,0x18, + 0x89,0xe0,0x2f,0x18,0x64,0xd7,0x46,0xb9,0x40,0x36,0x4b,0x2a,0x80,0x18,0xcb,0x6e,0x5b,0x77,0x23,0xc4, + 0xe2,0x55,0xed,0x50,0xb5,0x7e,0x51,0x29,0x8c,0x37,0x6c,0x0b,0xa1,0xf0,0x31,0x8b,0xb7,0x53,0xba,0x9c, + 0xda,0x12,0xf0,0xbd,0xbd,0x43,0x47,0xd8,0xdd,0x68,0xab,0x56,0x64,0x31,0xfe,0xb1,0x11,0x08,0x5b,0xbb, + 0xcc,0xce,0x87,0xc6,0x51,0x76,0x7c,0x0c,0x57,0xd9,0xce,0x63,0x06,0xf4,0xc4,0x82,0x1b,0xf1,0x1e,0xa5, + 0x0d,0x07,0xe2,0x68,0xa2,0xca,0x1a,0x99,0xc6,0x72,0x5a,0x9f,0xdf,0x72,0x72,0x86,0x35,0xff,0x07,0xce, + 0x1d,0x9a,0xad,0xd6,0x85,0xaf,0x10,0x8f,0xeb,0xb5,0x97,0x64,0xfb,0xbf,0xbc,0xf2,0x58,0x34,0xd6,0xe4, + 0xb5,0xeb,0x3c,0x3c,0x2a,0x19,0x16,0x97,0xc9,0x4b,0x1d,0x73,0xdc,0x91,0x17,0x49,0x3a,0xec,0x22,0x33, + 0x47,0x1c,0xc4,0xa9,0x43,0xed,0x7a,0xfa,0x52,0x5e,0xeb,0xe4,0x57,0x2d,0x22,0x48,0x6a,0x99,0xc0,0x7a, + 0x0d,0x46,0xf9,0x9d,0x2e,0x72,0x99,0x96,0x70,0xf0,0x81,0xbe,0xe5,0x4b,0xa4,0xa0,0xc6,0x1b,0x34,0x04, + 0x10,0x09,0xcb,0x21,0x1a,0xe9,0xe0,0x6a,0x23,0x87,0xef,0x15,0x96,0x77,0x67,0x47,0xbe,0x4c,0xef,0x7a, + 0xa2,0xac,0xcb,0xe4,0x14,0x76,0xd3,0xa5,0x92,0x9b,0x62,0x7a,0xe8,0x94,0x3d,0x58,0x24,0x92,0x74,0x4b, + 0x1d,0x88,0xc4,0xdd,0xb9,0x25,0x4b,0xb7,0xdb,0x5c,0x50,0x3c,0xa3,0x83,0xb0,0x97,0x3c,0x77,0x51,0x9b, + 0x39,0xe0,0x06,0x58,0xbe,0xf0,0x53,0xdd,0x4c,0x5c,0x3b,0x01,0x20,0x24,0x28,0xc9,0xfc,0x64,0xd0,0x82, + 0x7c,0x8d,0x55,0xfc,0x1d,0x68,0x22,0x66,0xeb,0x75,0xe1,0x57,0xd2,0x60,0xe3,0xb8,0x48,0xec,0x6b,0x63, + 0x6a,0x7e,0x0a,0x5f,0xaf,0xbf,0x3e,0xf7,0xcd,0xe3,0x65,0xa6,0x9a,0x50,0x13,0xc2,0xeb,0xa2,0x80,0x0a, + 0x91,0x5d,0x2d,0x20,0x09,0x63,0xd5,0x00,0x8f,0x10,0xba,0x2b,0xea,0xe7,0xe8,0x66,0x75,0x19,0xde,0x6c, + 0xea,0x8a,0xf4,0xdd,0xae,0x49,0x49,0xcd,0xaa,0x37,0x35,0x87,0xb7,0x69,0x8f,0x01,0x6d,0x09,0xcc,0x70, + 0xa6,0x59,0x36,0xfc,0xe8,0xdc,0x01,0xca,0xd8,0x98,0xcb,0xe5,0xb9,0xeb,0x2a,0x58,0x26,0xdb,0x71,0xbc, + 0x2e,0x8c,0xef,0x66,0x69,0x6f,0xd8,0xfa,0x0d,0xe9,0x4b,0x0d,0xf6,0xb4,0x3b,0x44,0x43,0x62,0x63,0xa0, + 0xd4,0xaa,0xda,0x65,0xab,0x8d,0x72,0x3b,0xed,0x64,0xf7,0xb7,0x3d,0x1c,0x34,0x37,0xba,0x56,0x17,0x73, + 0x9b,0xba,0x45,0x76,0xd0,0x68,0x6c,0xa7,0xc9,0xc2,0x30,0xb7,0xe7,0xc6,0x1a,0xc9,0x1c,0xeb,0xcb,0x8a, + 0xd1,0x5f,0xf6,0x70,0xff,0x28,0x90,0x67,0xe6,0x09,0x64,0x9e,0x50,0x6e,0xf4,0x3b,0xc6,0xa4,0xda,0xc3, + 0x69,0xc8,0xb6,0xda,0x06,0x93,0x22,0xfb,0x6b,0xb8,0xf0,0xa6,0xc5,0x1b,0xec,0x72,0x25,0xdf,0xdb,0x45, + 0xd3,0x8d,0x58,0x12,0xae,0xe1,0x41,0x6b,0x31,0x5c,0x3b,0x84,0x8b,0x4e,0x5f,0xc6,0xed,0x2a,0xc4,0x08, + 0xb2,0xd3,0xf2,0x76,0xe2,0x56,0x84,0x8a,0x8d,0xba,0x99,0x26,0xc9,0x42,0x94,0x8a,0xb7,0x67,0xa7,0xc5, + 0x98,0xcd,0xab,0x7e,0xa7,0x46,0x4d,0x74,0xd0,0x6a,0xfc,0xb5,0x75,0xe3,0x24,0x26,0xe8,0xc8,0x65,0x73, + 0x1d,0x58,0x40,0xe6,0x2c,0x86,0x00,0xbe,0xb3,0x1a,0xec,0xaf,0x63,0x97,0xd8,0x5f,0x18,0x97,0x98,0x5c, + 0xf6,0xa3,0xdf,0x1a,0xbf,0xba,0x49,0x2f,0x89,0x54,0x4f,0x21,0x9b,0x97,0x29,0xfc,0x8c,0x86,0xe9,0xbc, + 0xbb,0x63,0x6e,0x6d,0x02,0x0a,0x99,0xb3,0x79,0x4b,0xd1,0x58,0x03,0x00,0xe5,0x6a,0x61,0x78,0xc9,0x1e, + 0xbb,0x7f,0x6e,0xdf,0x13,0x1f,0xae,0xdf,0x7c,0x88,0x30,0xcd,0x34,0x0e,0xff,0x87,0x1b,0x71,0x1f,0x25, + 0x4c,0x13,0xb2,0x2e,0x1f,0x98,0xab,0x79,0xd9,0xab,0xcb,0x97,0x49,0xd5,0x71,0xfa,0xb0,0x1b,0x58,0x6f, + 0xf3,0xab,0x5e,0xf6,0x84,0x3b,0x6b,0x62,0xa4,0x0f,0x75,0xda,0x2c,0xdd,0x51,0xff,0x63,0x07,0xd1,0xac, + 0x66,0x06,0xa3,0x91,0xe1,0x7b,0x47,0xa1,0xcb,0xb8,0xc5,0xbb,0x3b,0xb5,0xf7,0x32,0x0f,0xd3,0xe0,0xd6, + 0xf7,0xb6,0x6d,0x4b,0x35,0xab,0x74,0xb7,0xef,0x90,0x06,0x28,0xde,0x89,0xb0,0xdf,0xdb,0x5b,0x67,0x8d, + 0xdb,0x9b,0xea,0x1e,0x45,0xf7,0x2d,0x9f,0x34,0x8f,0xbc,0x0b,0xee,0xef,0xdb,0x5e,0x73,0x78,0xb6,0x6b, + 0xb7,0x80,0xfd,0x7d,0x8d,0xb4,0x0e,0xd2,0x76,0x5b,0x0d,0x98,0x7f,0x5f,0x4b,0x8d,0xb3,0xd4,0x6a,0x07, + 0x9a,0x62,0xda,0x57,0x53,0x43,0x57,0x13,0x21,0xad,0x6c,0x4b,0x05,0x44,0x15,0x02,0x75,0x1a,0x1a,0xb4, + 0xd0,0xdf,0x40,0x8e,0x3c,0xc5,0x33,0x59,0x76,0xcc,0x5a,0xb8,0x63,0x98,0x5c,0x84,0x59,0xab,0xb3,0xb4, + 0xfc,0xd6,0xa5,0xc4,0x3a,0x1c,0xdd,0x24,0x08,0xaf,0xe8,0x3b,0x28,0x53,0x77,0xd4,0x20,0xe1,0xda,0xad, + 0x76,0x8b,0xc1,0x2a,0xc3,0x1b,0x6a,0x9c,0xbc,0x85,0x7d,0xa1,0x0f,0x51,0x13,0x55,0x4d,0x1a,0xa8,0xd2, + 0x61,0x72,0x9b,0x64,0xff,0xd2,0x32,0x0d,0x4b,0xe6,0x0b,0x38,0x86,0x2e,0x6b,0x9d,0x12,0x46,0x6e,0xb4, + 0xef,0xa8,0x99,0x9a,0xc7,0x54,0x18,0x85,0x10,0xc7,0xd4,0x28,0xb7,0x31,0x2c,0xe0,0x96,0xc2,0xd7,0xb2, + 0xd1,0xdc,0x24,0x5a,0x5a,0x63,0xa0,0xda,0xac,0xf9,0xdf,0x42,0x2f,0x60,0x9f,0x23,0x68,0x5a,0x24,0xf1, + 0x69,0xf6,0x96,0xa7,0x3e,0xd1,0x53,0x87,0x05,0xa7,0x09,0xa7,0xc2,0x01,0x04,0x26,0x9c,0x1c,0x4e,0x5a, + 0x6b,0x88,0x8a,0xed,0xfd,0x77,0x63,0x3f,0x47,0x99,0x82,0xc6,0xb2,0x78,0x1f,0x38,0xf0,0xff,0x2d,0x3c, + 0x3e,0xb9,0x3a,0xd9,0x3f,0x5d,0x0f,0xc6,0xfd,0xe0,0x60,0x56,0x6b,0x8a,0x4f,0xa0,0x0a,0x51,0x82,0x47, + 0x2d,0x5b,0x4f,0xd3,0x1c,0x66,0x59,0x2c,0xa4,0xca,0xe3,0x09,0x62,0xf3,0x2c,0xb5,0xd9,0xb5,0x7f,0xb7, + 0x0e,0xbf,0xe5,0xec,0x25,0x8f,0x62,0x4e,0xa3,0xf0,0x8a,0xf8,0x4a,0x0b,0xf0,0xf4,0x2a,0x11,0xd1,0x59, + 0x27,0x0a,0x25,0x1e,0x6a,0xaf,0x0b,0xd2,0x4a,0x03,0xce,0xe0,0x6d,0xc0,0xb9,0x96,0x19,0xac,0xd8,0x79, + 0x51,0xef,0x1b,0x28,0xa3,0x43,0xdc,0x26,0x26,0xd8,0xc9,0xb4,0xc7,0xea,0xe9,0xda,0x2b,0xe1,0x34,0xaa, + 0x2b,0x0c,0xcf,0xa3,0xa9,0x0e,0x71,0xc2,0x63,0x9b,0xb6,0xae,0x3e,0x84,0x0f,0x17,0xf1,0xfc,0xb4,0xfd, + 0x84,0x39,0xd7,0x0b,0x49,0xcc,0x9c,0x6f,0xa6,0xe9,0x9c,0x3a,0x3f,0x61,0x0f,0xb3,0x05,0xe2,0xb0,0x5b, + 0x5b,0xe5,0xa5,0x3a,0x0f,0xc2,0xb8,0x66,0xfb,0x9a,0x9b,0x65,0x34,0xcc,0x3b,0x3d,0x41,0xb6,0x90,0xea, + 0xa0,0xb9,0xa2,0x36,0x68,0x4a,0xad,0xfd,0x13,0x55,0xa3,0x42,0xdb,0x85,0x21,0xb0,0x79,0xab,0x2f,0x3b, + 0xe5,0x2d,0xec,0x60,0x0e,0x97,0x70,0xb3,0xdb,0xdb,0x57,0x29,0x58,0x7e,0xda,0x72,0x56,0xfa,0x4c,0x80, + 0x30,0x2a,0xfc,0xae,0x1a,0x99,0x82,0x6c,0xd6,0xd6,0xd0,0x91,0xe1,0x27,0x5b,0xc0,0xba,0x85,0xa9,0x9c, + 0xb8,0x4f,0xda,0x9b,0x50,0x5b,0x85,0x70,0xff,0xfe,0x30,0xde,0xdf,0xef,0x3d,0x3c,0x1c,0x06,0x50,0xeb, + 0x73,0x74,0x4b,0xe3,0xfe,0x7d,0xe6,0xc1,0x77,0xac,0xae,0x8d,0x48,0xab,0x21,0x52,0x4a,0x35,0x62,0xd3, + 0x9e,0x0a,0xe0,0xc7,0x22,0x9a,0x58,0x56,0x9a,0xa0,0x53,0x4f,0xa2,0x86,0x8b,0x4c,0x2d,0x85,0x11,0x68, + 0xbf,0x63,0x03,0x8e,0xf5,0x92,0xc3,0x83,0x33,0x2b,0x80,0xde,0x0e,0xb1,0xf3,0x4f,0x87,0x58,0xad,0xe0, + 0x52,0x3a,0x40,0x5b,0x2b,0x49,0x95,0x84,0x96,0xad,0x92,0x54,0xee,0x98,0xbe,0x6f,0x41,0xe3,0x52,0x31, + 0xc4,0xb6,0x68,0xdd,0x26,0xae,0x6e,0x3d,0x17,0x6c,0xad,0xf5,0x11,0x94,0x78,0x79,0xad,0xab,0x96,0x1e, + 0x2f,0xc4,0x51,0x7a,0xa0,0x85,0x8e,0x9e,0x72,0x6a,0xc6,0x58,0xf0,0xd5,0x81,0x01,0xe9,0x93,0xd4,0x41, + 0x61,0xb2,0x9d,0xb4,0x9d,0x48,0x65,0x42,0x42,0xb4,0x2f,0x84,0x0e,0x4c,0x66,0xf4,0x47,0xb7,0x37,0xac, + 0xba,0x7d,0xc3,0x80,0x63,0x4c,0xbc,0xf4,0xae,0x6d,0xca,0xff,0xea,0x36,0xb9,0x74,0x7e,0xaa,0xed,0x56, + 0x6e,0xdf,0x13,0x3a,0x49,0x74,0x24,0xda,0x7b,0xd2,0x9e,0x65,0xfd,0xc8,0x38,0xda,0xbe,0x4e,0x2a,0xb6, + 0xa3,0x75,0x56,0xd7,0x3e,0xd3,0x72,0xe5,0xdb,0x96,0x1a,0x92,0x80,0xd0,0xf3,0xda,0xe7,0x6f,0xd2,0xb9, + 0xc0,0xd6,0x5a,0x48,0x0c,0x6e,0xb7,0xc0,0xe2,0xf3,0x61,0xa9,0xc1,0x22,0x3e,0x2e,0x5d,0xb0,0x28,0xfb, + 0x9f,0x5b,0x59,0x2f,0x0d,0xde,0x0a,0x68,0x52,0xd6,0x9e,0x86,0xed,0x8a,0xaf,0xf1,0x85,0x03,0x2e,0x13, + 0xa1,0x34,0xa8,0x6f,0x0b,0x0f,0x71,0x80,0xf0,0x38,0x18,0xb0,0xdc,0xef,0x2d,0x18,0x6e,0x8e,0xda,0x55, + 0x46,0xa6,0xf1,0x16,0xdb,0xe3,0xbd,0x3b,0x2c,0xf4,0x78,0xd9,0x5d,0x41,0x3d,0xde,0xa2,0x7f,0xd7,0x82, + 0x71,0x6a,0xc7,0x35,0xd1,0x03,0x4b,0x3f,0x16,0x8e,0x55,0x65,0x47,0x6e,0xe2,0xc2,0xa4,0xed,0x95,0x6e, + 0xa3,0x5d,0xc7,0xb8,0x59,0x2c,0xcb,0xb6,0x46,0x7d,0x6f,0x98,0xeb,0x51,0xb3,0xb5,0x50,0x3d,0xea,0xbc, + 0x7f,0xcf,0x3c,0xad,0xb5,0xf0,0x5a,0x11,0xd4,0x38,0xad,0x09,0xa0,0x2c,0x45,0xc2,0xd3,0xce,0x78,0x8b, + 0xb9,0x6f,0x0d,0xad,0x45,0x75,0xca,0xf5,0xfd,0x81,0x45,0xa8,0x5a,0x4d,0x52,0x6e,0x43,0xbf,0xaa,0x83, + 0x40,0xb4,0x3c,0x9f,0x43,0x65,0x13,0x6a,0x83,0xdc,0xb1,0xd5,0x58,0x79,0x7b,0x63,0xec,0x51,0xb7,0xa3, + 0x95,0xb6,0x64,0x66,0x5b,0xe3,0xeb,0x63,0x1a,0xb9,0x18,0x2c,0xab,0x74,0x3e,0x10,0x0f,0x87,0xb7,0x8e, + 0xb6,0x6b,0xf2,0x4d,0xe6,0xe0,0x03,0xb3,0x6f,0xb1,0x07,0xb7,0x2e,0xc2,0xad,0x8d,0x36,0x26,0xb0,0xdd, + 0x5a,0xe7,0x62,0xfc,0xe5,0xc6,0x6e,0x59,0x94,0xee,0x49,0x6c,0xad,0x8d,0x68,0x98,0xa4,0x7f,0xda,0xfe, + 0x3b,0x88,0x11,0x1b,0x29,0x17,0xfe,0xad,0x09,0x60,0x81,0xb4,0x89,0x42,0x2f,0x03,0xc8,0x39,0x61,0x20, + 0xca,0x8f,0x07,0x9c,0x17,0x65,0x63,0xb8,0xf6,0x72,0xb3,0xb6,0x78,0x83,0x08,0xe9,0xb0,0x19,0xe8,0x7b, + 0xa7,0xa7,0x08,0x6b,0x60,0xee,0xfa,0x6d,0xb1,0xed,0xf1,0xd2,0x62,0xaf,0xf9,0x7a,0xed,0xbf,0xb7,0x20, + 0x0b,0x07,0x3b,0xf4,0x2f,0xfd,0x58,0xc1,0x8e,0x7f,0xae,0xb9,0xe5,0x2d,0xc9,0xde,0xe9,0x74,0x0b,0x11, + 0x30,0xdf,0x61,0x07,0x7e,0x4b,0xb3,0xa2,0xd2,0x28,0x2d,0x0e,0x5d,0x02,0xb1,0xbd,0xa2,0xf5,0x35,0xd0, + 0xba,0x08,0x6f,0x97,0xd3,0xa8,0xec,0xf6,0x9b,0xb1,0xf8,0xaf,0xb8,0x19,0xc5,0xd5,0x60,0x65,0x6f,0xc6, + 0x02,0x26,0xf9,0xcd,0x75,0x99,0x76,0x12,0x26,0xb7,0x61,0xf4,0xa3,0xdb,0x31,0xfa,0xd1,0xd8,0x58,0x50, + 0x38,0x48,0x2b,0xdf,0xb2,0x34,0xaa,0x9d,0x55,0xb4,0xcd,0x82,0x60,0x5a,0x3d,0x82,0x7d,0xca,0xe1,0x18, + 0x4f,0xfb,0xb0,0x0d,0xe2,0x10,0x23,0xf0,0xe6,0xa0,0x8d,0x38,0x60,0x6f,0x53,0xff,0x46,0xf4,0x50,0xfa, + 0xc1,0xb1,0x51,0x7d,0xa9,0xc8,0x61,0x51,0xc5,0x02,0x29,0x7b,0x8f,0x05,0x52,0x26,0x16,0x48,0x52,0x27, + 0x50,0x1d,0xf9,0x47,0x63,0xdd,0x1b,0x1b,0x1e,0x69,0x78,0x44,0xfc,0x79,0x8e,0x2f,0xda,0x42,0x3b,0xae, + 0x1c,0xe1,0x03,0x48,0xa7,0x21,0x49,0xb8,0x15,0xe5,0xdc,0xd2,0x60,0x03,0x47,0xb4,0x5b,0xea,0x44,0x37, + 0x7f,0xa9,0xa1,0x5b,0x50,0x4d,0xd7,0xd0,0x6f,0x47,0x34,0xd2,0xf3,0xff,0x8f,0x68,0xa6,0xfd,0x02,0x74, + 0x0b,0x92,0xe9,0x28,0x56,0xa3,0x18,0x77,0xf9,0x3e,0x88,0x60,0xb2,0x8f,0x44,0x30,0x8d,0x46,0x3f,0x88, + 0x5e,0xa4,0xf4,0x87,0x91,0x4b,0x4b,0x7e,0xfb,0xdf,0x8e,0x5a,0xb2,0x0f,0xa3,0x96,0xec,0xff,0xa2,0x96, + 0x8f,0x45,0x2d,0x99,0x45,0x2d,0x5a,0xfb,0x43,0x0c,0x09,0xb4,0xe8,0x27,0x25,0x62,0xcf,0x59,0x58,0xf5, + 0x73,0x40,0xeb,0x1c,0xaf,0xe2,0x74,0x1e,0x9f,0xa5,0xf3,0x14,0xf9,0xd1,0x4d,0xf3,0xb6,0x0c,0xaf,0x1b, + 0xaf,0x7f,0xe1,0x29,0xb6,0x86,0xb5,0x78,0xe7,0x73,0x37,0xb6,0xae,0xd1,0xc1,0x1b,0xfa,0x17,0xf0,0xb8, + 0xb2,0xa2,0x13,0x40,0x19,0x7b,0x7b,0x1a,0xec,0x2e,0x4c,0x8a,0xb1,0x91,0x1c,0x78,0x01,0xcf,0x2b,0x31, + 0x8d,0x49,0x0c,0xa5,0xae,0x51,0x5f,0x53,0xed,0x7a,0xcc,0xde,0xae,0x68,0xae,0xde,0x10,0xac,0x86,0xb7, + 0x89,0x5a,0x51,0x04,0x8e,0x67,0xb2,0xe8,0xe2,0x96,0x26,0xb3,0x46,0x93,0xd5,0x76,0x7b,0xdb,0x2f,0x63, + 0xee,0x9b,0xcf,0x7f,0x05,0x10,0x26,0x5a,0x63,0x55,0x37,0x9f,0xd6,0x1c,0x15,0x31,0x2e,0xc4,0x87,0x1a, + 0x00,0x4d,0xdb,0xd4,0x7a,0xe2,0x72,0x2b,0x9b,0x4d,0x6d,0x3b,0xf1,0xfe,0x39,0x4e,0x3e,0x6d,0x92,0x5b, + 0x2c,0x4e,0xda,0xc5,0x98,0xa5,0x96,0xc5,0x49,0xdd,0x69,0xa6,0x60,0xcc,0xb4,0xd3,0x8f,0xe6,0x34,0x73, + 0x87,0x41,0xcb,0x31,0x4f,0x6b,0xd1,0x96,0x6f,0xcd,0x53,0x65,0x76,0xa6,0xc5,0xa7,0xcc,0x34,0xf9,0xf4, + 0x99,0x6a,0x37,0x86,0xcd,0xb1,0x16,0xcc,0x3e,0x55,0xca,0x6a,0xfc,0x16,0x5b,0xdc,0xe3,0xc7,0x8f,0x6a, + 0xfa,0x3f,0x0b,0x63,0x96,0x2b,0x4e,0x8c,0x9d,0xde,0xd4,0x81,0xae,0x0e,0x7e,0xf7,0x63,0xe7,0xd1,0x71, + 0xf6,0xfe,0x67,0xe7,0x91,0x7d,0x78,0x1e,0x30,0x9d,0x7e,0x97,0x66,0xfe,0x19,0x3e,0xad,0x2d,0xa0,0xef, + 0xe1,0x9c,0x73,0xc4,0x85,0x89,0x8e,0xbf,0xce,0xce,0xbe,0x2e,0xea,0xb0,0x60,0xfe,0x95,0xf8,0x3d,0xbc, + 0x32,0x97,0xa8,0x55,0x19,0x10,0xc3,0xa9,0xe7,0x20,0x86,0x5e,0x55,0x05,0x55,0x9d,0x11,0xb6,0x1c,0x16, + 0x62,0x43,0x55,0x0c,0x74,0xd4,0x6f,0x60,0x47,0x8d,0xe9,0x22,0xef,0xef,0x83,0x7b,0x83,0xfb,0x9e,0xea, + 0x32,0xe7,0x92,0x88,0xcc,0x7b,0x7b,0x3a,0x32,0xf3,0xaf,0x88,0x28,0x53,0x7f,0x0f,0x96,0x65,0xe2,0x3f, + 0x27,0xe4,0xac,0xd5,0x86,0xac,0x95,0xcb,0x4d,0x92,0x85,0x37,0x1c,0x04,0x33,0xf4,0x5e,0x55,0x71,0x5a, + 0x94,0x9e,0x2a,0xaf,0xcb,0x2a,0xb9,0x7c,0xfa,0x84,0x52,0xf8,0xab,0xf7,0xf4,0x89,0xa7,0xce,0xd3,0xe2, + 0xf2,0x2a,0x2e,0x92,0x5f,0x65,0x2c,0xa1,0xf7,0xad,0x4e,0xe8,0xe9,0xd1,0x85,0x3d,0x84,0xb4,0x5c,0x5c, + 0x4b,0x1c,0x0c,0xef,0xb1,0xf9,0xec,0xfd,0xef,0xff,0xa7,0x77,0xf7,0xf0,0xe8,0xef,0xbd,0xe7,0x71,0xf1, + 0xb6,0xb7,0x8a,0xb3,0xde,0xcf,0x49,0x56,0x5e,0xe5,0xcb,0x29,0x1d,0xaa,0x79,0x1e,0xc3,0x49,0x56,0xe8, + 0xbd,0x9c,0x27,0xb0,0x22,0xe4,0xd8,0x04,0x3d,0x9d,0xda,0x93,0x85,0xd2,0xa1,0xd9,0x07,0x83,0x81,0xa7, + 0x78,0x9f,0xbe,0xe6,0x10,0x1a,0xa1,0xf7,0x08,0x3f,0x1a,0x69,0xaf,0xe2,0x15,0xb7,0x26,0x7f,0xb9,0xc6, + 0x55,0x7a,0x9e,0xd2,0xc4,0xaa,0x65,0x19,0xde,0xc4,0x13,0xf8,0x8b,0x5c,0xe4,0x69,0x56,0xd9,0x49,0x3f, + 0x7a,0x89,0x81,0x4f,0xd3,0x32,0x3e,0xa3,0x1b,0x23,0xf4,0x9e,0xe8,0x2f,0xa2,0x18,0xd8,0x65,0x45,0x9e, + 0x21,0x98,0x9c,0x2d,0xfe,0x5b,0xfa,0x6d,0x7a,0x4b,0x05,0x95,0x22,0x6c,0x88,0xf7,0x74,0x8a,0xc7,0xda, + 0x2c,0x7f,0xf5,0x8a,0x57,0x90,0xfe,0xed,0xc1,0x4e,0xf4,0x3c,0xa7,0x4d,0xa3,0xb5,0x9d,0xc4,0x19,0xc2, + 0x41,0xc0,0xc4,0x82,0x2a,0xbf,0xa2,0x9f,0xbd,0x89,0xf9,0x8d,0x05,0xcc,0x32,0x02,0xad,0x6f,0xe9,0x02, + 0x45,0xb6,0xfc,0xed,0x55,0x79,0x4f,0x67,0xd8,0x12,0x34,0xae,0x67,0x79,0xc9,0xeb,0x6c,0x7e,0xd3,0xb2, + 0x95,0x15,0x8f,0x4c,0x97,0xd1,0xa3,0xb3,0xbf,0x10,0x69,0xa3,0xd4,0x4b,0x51,0xc5,0x67,0xaf,0xed,0xae, + 0x53,0x8a,0xa7,0xf4,0x04,0x1f,0x4b,0xb8,0x96,0x5e,0xa9,0x93,0xe9,0x22,0x7d,0x55,0x25,0x8b,0xf2,0x75, + 0xb1,0x44,0xe1,0xa4,0xea,0x41,0xac,0x8f,0x68,0xf0,0xd7,0x34,0xa7,0x82,0xf5,0xf9,0x4b,0x14,0xa8,0x8b, + 0x7e,0x0b,0x25,0xd3,0x76,0x59,0x78,0x43,0x5b,0xa5,0xd3,0x25,0x42,0x42,0xd0,0xda,0x12,0xed,0x81,0x50, + 0x10,0x8d,0x91,0xbc,0xd6,0x69,0x18,0xcb,0x65,0x62,0x12,0xe9,0x53,0x12,0x9e,0xe2,0x39,0x21,0x23,0x3c, + 0x61,0x80,0x85,0x96,0x15,0x66,0x2a,0x71,0xd5,0x43,0x76,0xcf,0x34,0xd9,0xd3,0xa6,0x23,0xbd,0x38,0xe3, + 0xfe,0x51,0xa7,0x57,0x2f,0xdb,0x40,0x5a,0xfb,0x29,0xe7,0x00,0xc2,0xde,0x4f,0x79,0xab,0xb6,0x3e,0x59, + 0xbd,0xeb,0xa4,0x92,0x92,0x8f,0xa6,0xb4,0x8e,0xf4,0x8f,0xfc,0x7a,0x22,0x51,0x77,0x3c,0xf9,0x2b,0x69, + 0xdf,0x64,0x1a,0x16,0xf4,0x87,0xa4,0x7e,0x9b,0xbe,0x4b,0xa6,0x18,0x3e,0xce,0xca,0x3b,0x6c,0xa3,0x9d, + 0xca,0xab,0x65,0x56,0xa4,0xbc,0x46,0xf2,0x61,0x53,0x4b,0x4c,0x4f,0xfe,0x9a,0x55,0xb8,0xd4,0x8b,0x80, + 0xd7,0xb7,0xcb,0x34,0x5b,0x56,0x89,0x5e,0xa0,0xe7,0x79,0x36,0x8d,0xaf,0x43,0x4f,0xfe,0xea,0xe2,0xcb, + 0xa4,0xe4,0x44,0xfd,0x21,0xa9,0xbf,0x25,0xd3,0x4c,0xa7,0xdb,0x4f,0x5d,0xfe,0x62,0x59,0xe8,0x0a,0xfa, + 0x4b,0x8f,0xbd,0x48,0x39,0x55,0xfe,0xea,0xe1,0x11,0x40,0x14,0x9c,0x6a,0xbe,0xec,0xb0,0x25,0x75,0x29, + 0xe3,0xb8,0xcc,0xb1,0xcc,0x7a,0xfb,0x9e,0xf3,0x0f,0x6f,0xe3,0xc0,0xad,0xbb,0xe5,0x35,0xf4,0xd6,0x00, + 0x58,0x03,0x34,0x3f,0xa5,0x24,0x15,0x83,0x84,0x7b,0x76,0xf5,0x3a,0xf7,0x24,0xad,0xc7,0x89,0x8d,0x12, + 0xdf,0x73,0xa9,0x47,0xf3,0x79,0x7e,0x55,0x0a,0x94,0x6a,0xfb,0x6d,0x07,0x0e,0x7a,0xe7,0x45,0x7e,0xd9, + 0xbb,0xce,0x97,0x05,0x6d,0xf9,0x2a,0x9d,0x24,0x38,0x66,0xb8,0x71,0x7a,0x82,0x07,0xb5,0xd7,0x18,0xae, + 0xde,0x40,0x44,0xbd,0xc5,0xb2,0x58,0xe4,0x65,0x52,0x0e,0x7a,0xaf,0x2f,0x12,0x53,0xba,0x59,0x84,0x5a, + 0xd1,0x54,0x30,0xb5,0x40,0xbf,0x2f,0xaa,0x6a,0x11,0x1e,0x1c,0x1c,0x7d,0x75,0x77,0x70,0xf4,0xc5,0x97, + 0x83,0xa3,0xc1,0xfd,0x83,0xde,0xd5,0x45,0x92,0xa1,0xff,0x1e,0x90,0xa8,0x3d,0xa4,0x18,0x45,0x5a,0x51, + 0xd3,0x4c,0xc1,0x55,0xbd,0xfc,0xfc,0xbc,0x17,0x97,0xbd,0x32,0x87,0x6b,0x8e,0xb2,0xa7,0x71,0x12,0x06, + 0x97,0xa0,0x17,0xd3,0x6d,0x32,0x55,0xc8,0xa6,0x0a,0x94,0xc8,0x76,0xe9,0xc9,0x04,0xa9,0x80,0x9a,0x38, + 0xbb,0x26,0xc4,0x7a,0x3d,0xe8,0xfd,0x93,0x3a,0x03,0xc2,0x89,0xe7,0xf4,0xb3,0xec,0x59,0xf2,0xb6,0x27, + 0x57,0x51,0x0f,0x7c,0x18,0x46,0x7b,0x76,0xdd,0x83,0x0e,0x1a,0x50,0x70,0x75,0xd1,0x5c,0xe6,0x9e,0x8e, + 0x5f,0xb4,0xcc,0x88,0x11,0xe7,0xdc,0x67,0xdf,0x3c,0xe9,0xcd,0x81,0xe8,0xcb,0xde,0x72,0x41,0x87,0xcb, + 0xc5,0x9a,0x66,0xa3,0xdc,0x51,0x37,0x4a,0xc8,0x46,0xe9,0x2d,0xef,0x5a,0x7d,0x5a,0x0d,0xde,0xa2,0xfc, + 0x2a,0xeb,0x01,0xf7,0xf6,0x0a,0xf6,0xaa,0x34,0xe8,0x69,0x1c,0xc0,0x51,0xb3,0x78,0x1c,0xc0,0xb4,0x8a, + 0x40,0xa6,0xa4,0xbb,0xa5,0x98,0xd2,0xa4,0xa7,0x44,0x33,0x14,0x94,0xd3,0xde,0xbe,0xb3,0x84,0xc0,0x02, + 0x03,0x2d,0xd3,0xa9,0x20,0x68,0x4f,0x99,0x6a,0x84,0x5b,0xf4,0x17,0x21,0xd2,0x8b,0xc9,0x22,0xf4,0x7e, + 0xa1,0x4e,0x9e,0x7c,0xff,0xf8,0xa5,0xfc,0xd6,0x80,0xb5,0xac,0xf2,0x4b,0xb8,0x33,0x02,0x32,0xa3,0x65, + 0x2f,0xd3,0x59,0x56,0x02,0xdd,0x3c,0x7d,0xd9,0xd3,0x11,0xb6,0xbb,0x81,0x49,0xb6,0x80,0x68,0x9f,0x33, + 0x5a,0x16,0x6c,0x0a,0x2d,0x28,0x15,0x7c,0x9b,0x24,0x0b,0xbd,0x11,0x58,0xd9,0x39,0xea,0x03,0x30,0x60, + 0x29,0x42,0x60,0x42,0x08,0x8e,0x7e,0xdd,0x21,0x28,0x99,0xe6,0xb8,0xd6,0xe8,0xa6,0x59,0xe8,0x6e,0xe8, + 0xba,0xb1,0x5d,0xd2,0x8c,0x96,0x67,0x84,0xeb,0x2e,0xe3,0xf2,0x2d,0x4e,0x23,0xbe,0x7b,0xf8,0xe1,0xa9, + 0x19,0x51,0x17,0x57,0x38,0xa3,0xdf,0xc9,0x87,0xa7,0x2e,0xe8,0xae,0x10,0xb3,0xbd,0xef,0xf5,0x57,0x9d, + 0xf6,0xb2,0x76,0x0d,0x0b,0x3c,0x27,0x96,0x7a,0xd4,0xd2,0xc4,0xf6,0xb4,0xd1,0x34,0x42,0xe3,0x1e,0xe1, + 0x14,0xba,0xf9,0xaa,0x85,0x83,0xba,0x7b,0xd0,0x94,0x23,0x16,0x3e,0xa3,0x5b,0x92,0x57,0xdf,0xff,0xe9, + 0xf5,0xcb,0x80,0x16,0x9c,0x98,0x34,0x5d,0xec,0xfb,0xb8,0x98,0x32,0x21,0x41,0x69,0x39,0xa2,0x10,0x5e, + 0xc6,0x0b,0x93,0xf7,0x5d,0x9e,0xcf,0x08,0x0a,0x9e,0x53,0x4a,0xef,0xd1,0xcb,0xa7,0x35,0x19,0xa2,0xf3, + 0x2d,0x11,0x22,0xc4,0x17,0xf7,0xfe,0x8c,0x98,0x4a,0x8f,0xfe,0x49,0x2b,0x26,0x31,0x90,0x02,0x9a,0xe0, + 0x59,0x9e,0xcd,0x9c,0x24,0x22,0xbf,0x19,0x19,0x79,0xdf,0xd1,0x2a,0xcd,0x75,0xe9,0xde,0x01,0x5d,0xa2, + 0xba,0x98,0xe0,0x87,0xb9,0x2e,0xd7,0xa8,0xf4,0x2a,0x89,0x8b,0xc9,0x05,0x6e,0x38,0xfc,0xe5,0xc9,0xd0, + 0x29,0x20,0x4a,0xc2,0x7b,0x24,0x47,0xe5,0x25,0x1f,0x15,0xb9,0x42,0xf9,0x80,0x50,0x89,0x9e,0xdf,0xbf, + 0x37,0xb8,0xb7,0x0a,0x4c,0xf1,0x57,0xaf,0x1f,0xc9,0xe5,0x8b,0x55,0x79,0x8e,0xe3,0xfc,0x9e,0xf2,0x8f, + 0x5e,0x1a,0xa2,0x47,0x9f,0xa8,0x46,0x47,0xfa,0x4c,0x72,0xa5,0xc5,0x92,0x2e,0x64,0x02,0x70,0xa9,0xf7, + 0xf2,0xb7,0xe7,0x4f,0x0a,0x22,0x54,0x8b,0x57,0x4f,0xa8,0xb7,0x97,0x8f,0x1f,0x7d,0xf5,0xc5,0x97,0x9f, + 0xf7,0x28,0xb5,0x37,0xe5,0xe4,0x1e,0xa5,0x4b,0x3d,0x68,0x4b,0xb6,0xeb,0x3c,0x7e,0xd6,0x5d,0xe7,0xf1, + 0x33,0xa9,0x33,0x81,0x5b,0x46,0x54,0xba,0xba,0x7c,0x64,0xe0,0xb1,0xa3,0xfc,0xd3,0xff,0xfd,0xff,0x3e, + 0xae,0x81,0x94,0x0a,0x7f,0x8b,0x1b,0x3a,0xc9,0x26,0xd7,0x9d,0xc5,0xcf,0x4d,0xae,0x40,0x02,0x6d,0xfb, + 0x8f,0xc9,0xf5,0x16,0x28,0xd0,0xa1,0x69,0x14,0xb8,0xe0,0x93,0xf9,0x73,0x22,0x3e,0xca,0xa6,0xc0,0x7c, + 0xe7,0xbd,0x65,0xc9,0x38,0xcc,0xbd,0xdf,0x07,0x3d,0x3a,0xd1,0x53,0xc6,0xea,0xf3,0x3c,0x7f,0x8b,0xfc, + 0xe5,0x82,0x11,0x88,0x0e,0x54,0xc7,0xc5,0xff,0x24,0xda,0x7d,0x40,0x08,0x87,0xd6,0x92,0x90,0xc1,0xdb, + 0x1e,0x22,0x67,0x11,0x6c,0xe2,0x8c,0xeb,0xbe,0x15,0x56,0xbd,0xa7,0x07,0x75,0xc9,0x84,0x2e,0x44,0x55, + 0x15,0x81,0xa5,0x60,0x2c,0x9e,0x45,0x49,0x98,0xfc,0x67,0x22,0xec,0x4b,0x60,0x29,0xb9,0x88,0x68,0x7a, + 0x89,0x69,0xa4,0x47,0x47,0x5b,0x5f,0x0d,0xc6,0xbd,0x17,0xdd,0x45,0x84,0x9f,0x16,0x18,0xe9,0x8c,0x1b, + 0x07,0x2b,0x71,0xc0,0xe8,0x2c,0x06,0xcf,0x41,0x50,0x4e,0x58,0xfe,0x0e,0x21,0xdb,0x52,0xee,0x26,0x0c, + 0xdd,0x2c,0xca,0x00,0x24,0x5e,0x36,0xb7,0xd4,0xea,0xeb,0x22,0x5e,0x6c,0xd1,0xf3,0x1f,0x47,0xd0,0x27, + 0xff,0x39,0x7a,0xfe,0x1b,0xba,0xdb,0xf2,0x59,0x92,0x9d,0xcd,0xd3,0xb7,0xbd,0x59,0x42,0xc8,0x8f,0x2e, + 0xa8,0xb3,0xe4,0xcf,0x74,0x46,0xbc,0x07,0x0e,0xdc,0x94,0x0a,0xac,0x98,0xf8,0xb5,0xb8,0x39,0xd9,0x26, + 0xf1,0x5f,0xe7,0x09,0x50,0x73,0x92,0x75,0x92,0xf9,0x5f,0xdb,0xf6,0xf2,0x45,0x39,0x8f,0xe3,0xec,0x2f, + 0x51,0xfc,0xbf,0xa4,0x15,0x71,0x42,0x93,0x8b,0xf8,0x6d,0x32,0xff,0x78,0xb2,0xbf,0x59,0x4b,0xd3,0xfe, + 0xaf,0x68,0x10,0x0b,0xd8,0xa3,0x4f,0xdb,0x1c,0x40,0x4a,0x83,0x9c,0x25,0x2b,0x22,0xd5,0x30,0x97,0x2e, + 0x2e,0x20,0x3e,0x27,0xf0,0xcc,0xb3,0x6d,0x26,0xe0,0x47,0xca,0x9c,0x25,0x58,0xae,0xa4,0xd0,0x2e,0xa5, + 0x09,0x19,0xbf,0x45,0x3b,0x6d,0x66,0xe0,0xd7,0xba,0x04,0x15,0x9e,0xe7,0x05,0x0a,0x35,0x19,0x82,0x9f, + 0x30,0x12,0xb4,0x24,0x43,0xf9,0x18,0x96,0xe0,0xfb,0x65,0x3a,0x4d,0x67,0xc9,0x2d,0x2c,0x01,0x51,0x59, + 0x38,0x5d,0x09,0x36,0x74,0x9a,0xfc,0x99,0xcc,0xcf,0x41,0x99,0x68,0xba,0x3f,0x49,0xab,0x2d,0xbe,0xe0, + 0xb5,0x94,0x35,0x0c,0x41,0x92,0xcc,0xd9,0x88,0x3f,0xa1,0x76,0xb2,0x4f,0xe3,0x0c,0xde,0x4c,0xdb,0x9c, + 0xc1,0x33,0x86,0x85,0x1e,0x21,0xb3,0xde,0x2a,0xc7,0xe1,0xa0,0x32,0x35,0x69,0x9f,0x24,0x35,0x47,0xb0, + 0x6a,0x2c,0x55,0x02,0x27,0x4c,0x69,0xb9,0xc5,0x1b,0xcc,0x64,0xe5,0x9b,0xcd,0xcc,0x12,0x4b,0x75,0x25, + 0xc5,0xd4,0x61,0x12,0x08,0x5a,0x57,0x79,0x32,0x4b,0xb2,0x26,0xab,0x40,0xbb,0x72,0x45,0x0d,0x24,0x85, + 0xc9,0xb0,0xfc,0xc2,0x23,0xda,0xbb,0xe4,0x7c,0x8b,0x5d,0xf8,0x35,0x2e,0xc1,0xd9,0xd8,0xf9,0x59,0x76, + 0xe1,0x77,0x20,0x89,0xc5,0xdb,0xfc,0xb2,0xac,0x9a,0x2c,0x03,0x67,0x40,0x73,0x6c,0x16,0x43,0x0b,0xc9, + 0xe5,0x1c,0xde,0x4c,0x6b,0xce,0x21,0x6b,0x71,0x0e,0x74,0x64,0xa6,0xf1,0xac,0xc5,0x3a,0x3c,0xa1,0xdd, + 0xb0,0xa9,0x2e,0xeb,0x90,0x27,0x4e,0x46,0xcd,0x39,0x3c,0xe1,0x8e,0x6d,0x86,0x61,0x1d,0x7e,0x2d,0xa8, + 0x6b,0x93,0x58,0xf3,0x0e,0xbf,0x13,0x02,0xab,0x0b,0x1b,0xde,0xe1,0xf7,0x5c,0x06,0xd2,0xe0,0x1d,0xbe, + 0x4e,0xae,0x12,0xd8,0x38,0xdc,0xca,0x3d,0xd4,0xe0,0x6e,0x61,0xd5,0x39,0x01,0x2e,0x66,0x69,0xf1,0x0f, + 0x8f,0x5c,0x8a,0x96,0xa6,0x2b,0xc7,0x98,0xb1,0x4c,0x5d,0x4c,0x6e,0x14,0x5a,0xa3,0xb7,0x84,0xa4,0x41, + 0x4a,0x11,0x3e,0x9b,0xa7,0x6f,0x88,0x42,0xbe,0x64,0x48,0x12,0x8e,0xc2,0x92,0xee,0x69,0x02,0x7c,0x16, + 0x9f,0x73,0x1e,0x21,0x2b,0xe2,0x5d,0x08,0x0a,0xb3,0x18,0xda,0x86,0x74,0x2c,0x7a,0xc0,0xc5,0x96,0xaa, + 0x4d,0xe4,0x04,0xa3,0x29,0x3a,0x2d,0x75,0xaa,0x05,0x2c,0xb8,0x5c,0xee,0x3d,0x69,0xd6,0x22,0xfa,0x90, + 0x8a,0x9c,0x25,0x59,0xcc,0xb0,0xd4,0x5b,0xa5,0x71,0x27,0x63,0x41,0xf9,0xd4,0xf3,0x1b,0x77,0x64,0x17, + 0xc9,0x19,0xf0,0xcf,0x25,0x26,0x33,0xe8,0xbd,0x92,0xf9,0xca,0xb8,0x40,0xfb,0x13,0xfd,0x94,0x62,0xac, + 0x3c,0x4f,0x77,0x0c,0xc4,0x54,0x20,0x50,0xf4,0x9f,0xa9,0x3e,0xdc,0x82,0xc8,0xce,0xe8,0x8e,0x4a,0x89, + 0xe6,0x9f,0xe2,0xc8,0xf4,0x7e,0x48,0x7a,0x6f,0x89,0x1d,0x70,0x5b,0xa3,0x8b,0xd5,0x5d,0x56,0xa2,0x5b, + 0xe9,0x2c,0xe2,0x5c,0x5a,0xc2,0x45,0x96,0x9e,0x08,0xdc,0x05,0xe6,0x34,0x2d,0x96,0x6f,0xb1,0x1c,0x55, + 0x5e,0x61,0xe8,0x53,0xe1,0x2a,0x62,0x20,0x3e,0x5a,0xc4,0x36,0x53,0xe1,0xec,0x31,0x70,0x3f,0xb3,0x05, + 0x1a,0x21,0x3a,0xe5,0x64,0xfb,0x74,0xd9,0xed,0x2d,0x40,0xe3,0xb4,0x44,0x09,0x21,0xb6,0x16,0x67,0xf1, + 0xeb,0x72,0xde,0xbb,0x48,0x19,0x17,0xd3,0xa5,0x8d,0x15,0x61,0x14,0x4e,0xc5,0xae,0xe2,0xc9,0x45,0x75, + 0x95,0x83,0xbd,0x48,0x69,0x69,0x92,0xfa,0xf6,0x22,0x44,0xd0,0xe3,0xf8,0xae,0x4b,0x5e,0xd6,0x5e,0x4e, + 0x38,0x05,0x28,0x93,0x97,0xa3,0xbc,0x95,0xd9,0xf8,0xcd,0x36,0x68,0xd8,0x8d,0xef,0x92,0xb3,0x62,0x49, + 0x57,0x66,0xcd,0x72,0x5c,0x34,0x58,0x0e,0x5a,0x53,0x06,0x30,0x26,0xfb,0x89,0xa0,0xa2,0x25,0x4b,0x08, + 0xb9,0xfc,0x09,0x98,0x8b,0xb3,0xad,0x69,0x12,0x0d,0x43,0x00,0x48,0x95,0xd2,0x37,0x19,0xc3,0xee,0x15, + 0x71,0x6d,0x34,0x6d,0x67,0xaf,0x50,0x0d,0xea,0x72,0x34,0x21,0xfa,0xe7,0xcf,0xf4,0x0d,0xf2,0xaf,0x12, + 0x9a,0xf6,0x15,0x60,0x97,0x7e,0x5c,0x26,0x89,0xbe,0xba,0xcf,0xe0,0x15,0x63,0x9b,0xfd,0x28,0x92,0xdb, + 0x99,0x8f,0xa4,0xf8,0x18,0xf6,0x23,0xbe,0xbc,0x85,0xfd,0x78,0x85,0xcb,0x94,0xc6,0x31,0x35,0x0c,0x08, + 0xfa,0xba,0x95,0xfd,0x68,0xf3,0x1f,0x84,0xfb,0x1a,0xfc,0x47,0xf2,0x3e,0xf6,0x23,0x86,0xde,0x20,0x9d, + 0x03,0x82,0x2b,0x80,0xd2,0x5f,0xe1,0x42,0xce,0xd2,0x37,0x57,0x49,0xc1,0x90,0x68,0x18,0x91,0xaf,0x09, + 0x36,0xa6,0x55,0x32,0x23,0x6c,0x30,0x75,0x98,0x11,0x08,0xaa,0xdd,0x44,0xcb,0x8e,0xb8,0xe5,0xc1,0x8e, + 0xd4,0x05,0x69,0xbf,0x2e,0x62,0x9c,0x26,0x3a,0x33,0x67,0x71,0x49,0xd8,0x00,0xf4,0x93,0x30,0x28,0x49, + 0x27,0x7f,0xf2,0x7b,0x9e,0xf0,0x58,0xfe,0x3a,0x7f,0xc2,0x07,0xe3,0xa3,0xf8,0x92,0x46,0xcb,0xee,0xd9, + 0xe7,0x33,0xce,0xf5,0x62,0xbe,0xed,0x08,0xd8,0xe2,0xd9,0xff,0x04,0x77,0xf2,0x76,0x9e,0xff,0x9f,0xc5, + 0x9c,0x3c,0x02,0x2a,0x2d,0x98,0xf2,0x25,0x40,0x21,0x74,0x2c,0x47,0x7d,0xc5,0xe7,0xb6,0x49,0x63,0xd0, + 0xb9,0x25,0xa4,0x50,0x99,0x32,0x95,0xbe,0x28,0x2e,0x34,0x25,0x86,0xb2,0x60,0x51,0xe4,0x3e,0x58,0x00, + 0x2a,0xa8,0x06,0x41,0x5e,0xc5,0xa8,0xf7,0x4f,0x41,0x5d,0x96,0x53,0xb9,0xc4,0x41,0xd6,0x43,0xa4,0xe2, + 0x5c,0x6e,0x4a,0xbd,0x82,0x2b,0x79,0x8b,0x76,0x35,0xaf,0x52,0x1a,0x66,0x45,0xf0,0x19,0x8d,0x73,0x86, + 0xdb,0xd3,0x4e,0x09,0x90,0xf7,0x71,0xec,0x0a,0xd0,0x11,0xbf,0x90,0x68,0x0c,0xca,0xc4,0x98,0x99,0x30, + 0x90,0xf6,0xb4,0xc9,0xb4,0x6c,0x6a,0x6f,0xc9,0x1c,0x68,0xec,0xd1,0x62,0x61,0x5f,0x81,0xa0,0x9e,0xa0, + 0x9d,0x6a,0xd6,0xa6,0xaa,0xc4,0x01,0x10,0x56,0xc9,0x8b,0xc1,0x9c,0x16,0x75,0x19,0xcf,0x92,0xb6,0xdd, + 0xa8,0xc7,0x67,0xd8,0x58,0xa1,0x5a,0xab,0x9d,0x60,0xa8,0x9b,0xf3,0x6f,0x92,0x79,0xe8,0xfd,0x8d,0x2e, + 0x6a,0xc2,0x67,0xd4,0x74,0x98,0x28,0xb6,0xea,0xbc,0x31,0x2c,0xcc,0xce,0xa1,0x2a,0x85,0xcf,0xd8,0x39, + 0xd2,0x5f,0x4c,0xc5,0xe2,0xa7,0x2e,0xf3,0x94,0x2e,0xa1,0x09,0x46,0x11,0x7a,0x6b,0x4f,0x2d,0x17,0x48, + 0x7e,0x59,0xe4,0x33,0x06,0x36,0x2a,0x26,0x4b,0xf0,0x3a,0x3e,0x83,0x63,0x62,0xa1,0x9d,0xcd,0x63,0xc9, + 0x4d,0xcd,0x94,0xe9,0xc6,0x98,0x77,0x31,0xd9,0x6e,0xe2,0xa6,0xc9,0xd1,0x2c,0xc2,0x9b,0x44,0xd3,0x8f, + 0xd4,0x45,0x4a,0x77,0xc6,0xe1,0x80,0xff,0xab,0x59,0x97,0x46,0x09,0x4d,0xde,0x1f,0x36,0x8b,0x52,0x59, + 0x46,0x12,0xd4,0x87,0xc5,0x3d,0x88,0x04,0x51,0x13,0xdf,0x20,0x1f,0xdd,0x76,0x58,0xaf,0x3a,0x15,0xf2, + 0x8c,0xb2,0x0e,0xeb,0xb2,0xc7,0xf0,0xb7,0xe4,0x52,0x68,0x16,0xbb,0xb3,0x2a,0xac,0x4b,0x79,0x61,0x51, + 0x2b,0xdb,0x1b,0x5f,0x8a,0x5c,0xc6,0x5e,0x89,0xfc,0x8b,0xaf,0xc2,0x1d,0x1e,0x31,0xff,0x76,0xae,0x16, + 0xfe,0x6d,0xee,0x13,0x36,0xb3,0xb1,0x77,0x01,0x5d,0x62,0x92,0x3d,0xa7,0x3d,0x93,0x56,0x09,0x0f,0x51, + 0x7a,0x32,0x25,0xd4,0x27,0x39,0xc9,0x14,0x68,0x4d,0x86,0xb5,0xd0,0xa8,0x4b,0x8a,0x5e,0x5d,0x02,0x09, + 0xd9,0x6f,0x42,0x2e,0xd2,0xba,0x83,0x3e,0x4c,0x66,0x8d,0x21,0x38,0xc5,0xc5,0x03,0xb4,0x07,0x86,0xdb, + 0xc1,0x04,0xcc,0x37,0x1b,0x1e,0x85,0x98,0x3b,0x32,0x8e,0xc7,0x6a,0x6e,0xf1,0x3d,0x2e,0x13,0x4d,0xf8, + 0x73,0x4e,0x91,0x40,0x18,0xb5,0x4a,0x4c,0x02,0xad,0x2c,0xbb,0xdb,0xd8,0x8a,0x41,0xa5,0xfd,0x02,0x58, + 0xa7,0xf2,0x4c,0x00,0xc3,0xed,0x94,0xef,0xf1,0xa7,0x67,0x1c,0x04,0xe8,0x57,0x40,0xd3,0x25,0x6c,0x77, + 0x2e,0x8c,0x79,0xce,0x91,0xc4,0x2c,0xab,0x06,0x16,0x54,0x6d,0x30,0x92,0xa2,0x7a,0xd6,0x82,0x72,0xa8, + 0xf5,0x0e,0x44,0xd0,0x86,0x7b,0x41,0x20,0x92,0x13,0x35,0x5b,0xcc,0x73,0x65,0xcb,0x64,0xe8,0x5e,0x20, + 0xae,0x88,0x73,0x6e,0x30,0xa1,0x02,0x31,0xbd,0x5a,0x2a,0x00,0xac,0xea,0x7c,0x38,0xcc,0x1f,0x1c,0xdd, + 0xbf,0x4f,0x7f,0xfa,0xd1,0xd1,0xe7,0x81,0xf6,0x3b,0x93,0x8b,0xf1,0x51,0x1e,0xed,0xdf,0x45,0xd6,0x83, + 0xe8,0xae,0x2d,0x91,0xda,0x12,0xd5,0xa0,0x5e,0xc0,0xa8,0xa0,0x3e,0x1b,0x2b,0x18,0xa5,0x94,0x82,0xc3, + 0xa4,0xc5,0x1c,0x7e,0x30,0xa8,0x2e,0x92,0xcc,0xb5,0x1f,0x96,0xfc,0xfa,0xd9,0xe1,0xd6,0x22,0x22,0xe1, + 0xbc,0x35,0x1b,0xfd,0x19,0x46,0xf5,0xf6,0x36,0xb0,0x14,0x9d,0xb9,0x65,0x95,0x2f,0x3a,0x57,0x5c,0xa3, + 0x02,0x5a,0xba,0x4d,0x60,0xff,0x53,0xfa,0x79,0x58,0xf0,0x95,0x91,0xe1,0xbc,0xf7,0x05,0x3d,0x7e,0x97, + 0xe6,0x6c,0x6e,0xeb,0x7b,0x07,0xf1,0x22,0x3d,0xd0,0xb8,0xc6,0x6b,0x0f,0xa6,0xcb,0xbd,0x7e,0xa5,0xbd, + 0x86,0xf9,0x89,0x7d,0x8c,0x96,0x24,0x1a,0xcb,0x40,0xfc,0x24,0xba,0x1a,0x55,0xe6,0x76,0x98,0xe7,0x33, + 0x68,0xa3,0x05,0x1b,0xd5,0x5c,0xe2,0x4f,0x1b,0x68,0x8d,0x5a,0x3e,0x75,0xac,0x75,0xcd,0xbf,0x30,0x5c, + 0xd9,0xee,0x4f,0x1b,0xaa,0xe0,0xa2,0x4f,0x1d,0xa6,0xd4,0xfa,0x0b,0x43,0x74,0x41,0xee,0xd3,0x06,0x6a, + 0x90,0xf7,0x01,0x3f,0x4a,0x76,0x8c,0x17,0x86,0x8b,0xdd,0x43,0x36,0xbe,0x04,0xec,0xe5,0x20,0xc9,0x03, + 0xfd,0x73,0xbd,0xde,0xbe,0x2c,0x74,0x89,0x66,0xea,0x7a,0xdd,0xbc,0x43,0xb6,0x6d,0x32,0x6d,0x35,0x29, + 0x14,0xb8,0xd1,0x89,0x10,0x6f,0xb2,0x99,0x6d,0x43,0x14,0xb9,0xd1,0xa4,0x1a,0x25,0x8e,0x8b,0xf1,0x30, + 0xab,0xcb,0x8b,0x3f,0xb0,0x33,0x96,0x6a,0x66,0x40,0xf0,0xe9,0xa0,0xfe,0xe1,0x8c,0x0e,0x51,0x41,0x28, + 0xcf,0xf9,0x85,0x4c,0x33,0xfb,0xb4,0x31,0x71,0x8b,0x8b,0x9a,0x15,0x1e,0x1e,0x8e,0x0e,0x91,0xa2,0xa7, + 0xed,0xa2,0xa8,0xad,0x82,0xb6,0x18,0x5d,0x18,0x97,0x22,0xa9,0xf1,0x8f,0xf6,0x52,0x9a,0xca,0x75,0xf9, + 0xe2,0xfc,0xb7,0x24,0x79,0x1b,0x3c,0xa4,0xb1,0x69,0x71,0x8d,0x7f,0x77,0x2b,0xeb,0xca,0xca,0x6c,0xfc, + 0xfb,0xdb,0xf5,0x8c,0xdc,0xc6,0xff,0x72,0x2b,0xef,0x5c,0x44,0x37,0xfe,0xd1,0x17,0x5b,0x59,0xa5,0x11, + 0xe0,0xf8,0xf7,0xb6,0x3b,0x2c,0x45,0x8a,0xe3,0x7f,0xb1,0xd5,0x1d,0xbc,0xb4,0xd5,0x0b,0x8e,0x79,0x45, + 0x50,0xa3,0xfb,0xf8,0x33,0xc8,0x17,0xe6,0xa7,0x1d,0x41,0x56,0x46,0xe8,0x86,0xe8,0x2e,0xf0,0x0a,0x5c, + 0x7d,0xa2,0x1d,0xf8,0xc7,0x03,0x59,0xc5,0xee,0xdd,0xd8,0xdc,0xf0,0x70,0x18,0x1b,0x48,0xd3,0x00,0x16, + 0xbb,0xe1,0xc3,0x90,0x01,0x5d,0x61,0xf6,0x72,0x54,0x8c,0x8a,0xa8,0x0c,0xcb,0x1d,0xfa,0xe2,0x10,0xef, + 0x1c,0x9c,0xa7,0xe1,0xbe,0x8e,0x28,0x50,0x95,0xf6,0xa3,0x72,0x83,0xd8,0xca,0x09,0x07,0x49,0x4a,0x06, + 0x0d,0x32,0x41,0x02,0x3a,0x9c,0xcf,0x73,0x78,0xd3,0x3b,0x30,0x8e,0x15,0x03,0xa7,0x18,0x2f,0xe1,0x46, + 0x04,0xe2,0x1f,0xc4,0xa9,0x89,0xbe,0x83,0xd9,0x33,0xa5,0x7c,0x62,0x96,0xb2,0x6a,0x0b,0x22,0xd4,0xb6, + 0x91,0xac,0xaa,0x09,0x38,0x17,0x85,0x0e,0x4c,0x6a,0x83,0xa2,0x6b,0x94,0x70,0x32,0x2c,0x9d,0xd7,0x28, + 0xa0,0x13,0x85,0xf2,0x6b,0xe6,0x50,0x4a,0x4d,0x06,0x36,0xb2,0x4c,0xaa,0xd0,0x85,0x8d,0x2c,0xa4,0x80, + 0x4c,0x6c,0x24,0xa6,0x0b,0x97,0x62,0x6c,0xf6,0x62,0xd3,0x2d,0x11,0xd9,0xc8,0xd7,0x89,0x9b,0x36,0xf8, + 0xc0,0x09,0xf0,0xc7,0x40,0xed,0xd6,0xbd,0x5e,0xaf,0xf9,0x11,0x62,0x20,0xca,0xa6,0xbd,0xf7,0x66,0xf9, + 0xd8,0x0d,0xd3,0x57,0x8d,0x32,0xd7,0xc7,0x7f,0xdb,0x90,0x3b,0x69,0xc1,0x5b,0x07,0xaf,0xa9,0x15,0x22, + 0x0e,0x67,0x09,0x1d,0x22,0x9b,0x20,0xe4,0x5f,0x99,0x54,0x2c,0xac,0xa7,0xc3,0xe0,0x76,0xa9,0x3d,0x1c, + 0x36,0x6b,0xf7,0xfb,0xaa,0x99,0xa0,0xbd,0xe0,0x1f,0x85,0x36,0xd9,0x0e,0x27,0xf2,0x0e,0x3c,0xc7,0x99, + 0x61,0xef,0x6e,0x67,0x99,0xfd,0x46,0x99,0x7b,0x9d,0x65,0x4e,0x4e,0x1a,0x85,0xee,0x77,0x16,0x5a,0x7b, + 0xaa,0x3d,0x53,0x62,0x81,0xee,0x7e,0x7e,0xc8,0xcb,0xb5,0x4d,0xc7,0xb9,0xab,0x35,0x99,0x13,0xe3,0x65, + 0x17,0x41,0xeb,0x8d,0xd7,0x4b,0x44,0x2d,0x10,0x2e,0x33,0xf4,0x35,0x84,0x39,0xc2,0xbf,0x75,0xb9,0xa1, + 0xa9,0xf9,0x42,0x73,0xb0,0xcc,0x5d,0x64,0xec,0x9d,0xdd,0xb7,0x1f,0xcf,0x86,0x13,0xb8,0xa5,0xae,0x70, + 0x8a,0x7a,0x95,0xb5,0xaf,0xff,0xbb,0xc6,0xa7,0xbf,0x39,0x24,0xd9,0x4c,0x47,0x0b,0xd0,0xb1,0x08,0x74, + 0xe8,0x01,0x1b,0x50,0x40,0xf4,0xf2,0xcd,0x0a,0x37,0x2b,0x63,0x0c,0x12,0x41,0x20,0x34,0x0e,0x80,0xbb, + 0xc6,0xb9,0xe9,0x5e,0x82,0xd7,0x08,0x06,0xfa,0x97,0x96,0xa1,0xc7,0x5c,0xd1,0x76,0x31,0x88,0x89,0x0d, + 0xef,0x32,0xf5,0x82,0x4f,0x5c,0x9f,0x8f,0x68,0x1b,0xaf,0x82,0xd4,0xae,0x5e,0xaf,0x8f,0xa8,0x20,0x8f, + 0x86,0xa6,0xca,0xdd,0x8f,0xa9,0xd2,0x78,0x4b,0x34,0x35,0xcd,0xca,0xf7,0x6e,0x9b,0x4b,0xba,0x30,0xf0, + 0xfd,0x11,0x5d,0x34,0x1e,0x24,0x4d,0x17,0x9f,0x7f,0x42,0x4d,0xfd,0x40,0x69,0xaa,0xb6,0xb7,0xff,0x43, + 0xfb,0x53,0x83,0x06,0xbc,0xea,0xb6,0x39,0xd0,0x0f,0xe0,0xd1,0x11,0xe1,0x1c,0x9c,0xac,0x7c,0x59,0x11, + 0x82,0x69,0x57,0x56,0x9f,0x27,0xf7,0x82,0xf0,0x76,0x8e,0xe3,0x40,0x0b,0x6e,0x3e,0x91,0xa2,0xaf,0xe7, + 0xf2,0x49,0x54,0xfd,0x16,0x2e,0xfe,0xf0,0xd8,0x41,0x09,0x88,0xe4,0xc9,0x48,0xa1,0x6f,0x59,0x0f,0xf6, + 0x83,0xa0,0xd7,0xc4,0x45,0xf2,0xc0,0xd1,0x4d,0xd1,0x55,0x74,0xa8,0xc3,0x91,0x40,0x54,0x06,0x2b,0x0d, + 0xbc,0x86,0x0e,0x4d,0x60,0x3a,0xdf,0x3b,0x4f,0xa1,0xe1,0x6a,0x05,0x0f,0xb4,0x6c,0x3a,0x94,0xdd,0xd7, + 0xd7,0x4f,0x39,0x5b,0xc6,0xf1,0x2d,0x8a,0xb1,0xc7,0xec,0xa4,0x84,0x65,0x86,0x16,0x47,0xb0,0x64,0x89, + 0x26,0x14,0xde,0xfb,0x22,0xb9,0xaf,0xf2,0xec,0x97,0xa6,0xd8,0xac,0xe9,0x07,0xab,0x35,0x30,0x26,0x8d, + 0x0a,0x68,0xd2,0xfa,0x47,0x87,0x87,0x9f,0x09,0x6f,0x9c,0x4c,0x0f,0x10,0xb2,0xb8,0x8a,0xe1,0x8e,0x7c, + 0xb8,0x75,0x4f,0x9a,0xe1,0x78,0x6c,0xf9,0xb4,0x7d,0x49,0xba,0x7b,0xe0,0x89,0x73,0xad,0x5e,0x89,0xb8, + 0x24,0x7f,0x71,0xcb,0xb6,0x06,0x4d,0xe4,0xa4,0x73,0xa5,0x7e,0x78,0xdd,0x68,0xcd,0xa8,0x5e,0x52,0xb1, + 0x8b,0xb2,0x8d,0xc8,0x8c,0xb4,0x50,0xe5,0x43,0xb7,0x2e,0x02,0x02,0x74,0xc8,0x62,0xc0,0x99,0x88,0x07, + 0xc5,0x96,0x38,0x46,0xb8,0xcf,0xb6,0x8c,0xc6,0x01,0xba,0xd6,0xbc,0xb0,0x38,0x5a,0x82,0x41,0xd7,0xdd, + 0xe1,0x61,0x10,0x98,0xe3,0xf8,0x3e,0x42,0x9d,0xfd,0xd0,0x39,0xbd,0x08,0xcc,0x75,0x88,0x86,0x54,0xe7, + 0xe8,0xa5,0xb8,0x21,0x7e,0xb7,0x3d,0x5a,0xb3,0x33,0x6b,0x5e,0x25,0x1b,0x67,0x8e,0x08,0xf4,0xa6,0xd7, + 0xe8,0x16,0x8d,0x8d,0xc8,0xf3,0x9a,0xfe,0xae,0xc4,0x4f,0x8f,0xe1,0x2a,0xd1,0xf8,0xad,0x6d,0x16,0xfd, + 0x48,0xa7,0x1e,0x67,0x63,0xf1,0x88,0x3c,0x7c,0x0f,0xf5,0x5e,0x1c,0x34,0xdb,0x90,0xd0,0x30,0xa9,0xf1, + 0x5d,0x7b,0x6b,0x37,0x5a,0xb6,0xd5,0xee,0x0a,0x63,0xbe,0x45,0xd0,0xb6,0x4d,0x1c,0x8a,0x46,0xf6,0x4d, + 0x8b,0x0f,0x3f,0x4a,0xee,0x89,0xcf,0x6b,0x04,0xa8,0xfb,0x2f,0x27,0x18,0xf5,0xe6,0x42,0x4c,0xa5,0xa5, + 0xcb,0x56,0xb4,0x7c,0x3b,0xdc,0x4a,0x01,0x01,0xc4,0xb6,0x44,0xba,0xa6,0x7b,0x19,0x35,0xe3,0xe9,0xa1, + 0x0c,0x0f,0x0e,0x20,0x70,0xd5,0xaf,0x0d,0x34,0xd7,0x92,0x5f,0x1c,0x90,0xc6,0x33,0x9f,0x25,0x39,0x02, + 0x5c,0x1e,0xbc,0x29,0x99,0x93,0xd1,0xe1,0xf8,0x6e,0xcc,0x83,0x65,0xdd,0xa5,0x7a,0x9b,0x80,0xf8,0x17, + 0xe2,0x79,0x50,0x0b,0x71,0x37,0x5b,0x33,0xbc,0x9d,0x77,0xc4,0x41,0xa5,0x6b,0xac,0x84,0x2b,0xab,0x46, + 0x82,0x75,0x87,0x6f,0x84,0x25,0xcd,0x6c,0x18,0xed,0xd1,0x40,0x2f,0x93,0xaa,0xb8,0xb6,0x03,0x1a,0xda, + 0xc1,0xcc,0xe3,0x8a,0xc3,0xd9,0x57,0xaa,0x4e,0x22,0xe4,0x91,0xe1,0xdf,0x8f,0xe3,0x9e,0xbb,0xf6,0x68, + 0x7b,0x75,0x1d,0x96,0xe4,0x03,0x52,0xa4,0x5b,0x2f,0x8f,0x61,0x7d,0x1a,0xad,0x3c,0xa8,0xc5,0xf1,0x1b, + 0x62,0xac,0x2d,0x14,0x6a,0x17,0x6b,0x66,0x37,0x44,0x43,0xf6,0x98,0xb7,0x6b,0x34,0x25,0x3f,0x36,0x8e, + 0x78,0x11,0xdd,0x56,0x14,0xf1,0x26,0xab,0xf7,0x88,0x80,0x0a,0x47,0x04,0xd4,0x90,0xff,0x14,0xae,0x94, + 0xc6,0x0a,0x7f,0x8a,0x7a,0x72,0x98,0x52,0xd1,0x12,0xe5,0x14,0x0d,0x61,0x34,0x65,0x5b,0xf1,0x90,0xaa, + 0xc5,0x24,0x21,0xc7,0x81,0x86,0x04,0x05,0xb1,0x1a,0x83,0x35,0x82,0x09,0x88,0x70,0x67,0x74,0x57,0xff, + 0xb6,0x12,0x9d,0xd1,0x7d,0x53,0x42,0x8b,0x71,0x46,0x5f,0xea,0x04,0x91,0xdd,0x8c,0x8e,0xbe,0xd0,0xbf, + 0x8d,0xc0,0x66,0x74,0xcf,0x34,0x22,0x52,0x9a,0xd1,0x17,0x68,0x82,0x8e,0xe8,0x16,0xce,0x68,0x8a,0x04, + 0x55,0xf5,0xdf,0xc3,0x50,0xd2,0x8d,0x46,0x67,0xd1,0x11,0x5c,0x6e,0x05,0x53,0xb9,0x65,0x8f,0xb7,0xb6, + 0xaa,0x29,0x9f,0xab,0x05,0x72,0x84,0x34,0x6a,0x29,0xdc,0xe7,0xf7,0x5b,0xd2,0x36,0x2b,0x53,0xdb,0xa9, + 0x65,0x68,0x3b,0xae,0xcc,0x6c,0xc7,0x91,0x91,0xed,0x58,0x99,0xd8,0x8e,0x23,0x02,0xdb,0xb1,0x12,0x2f, + 0x71,0xbb,0x29,0x01,0x53,0x3a,0xa7,0x94,0xbc,0x7f,0x4e,0xda,0xef,0x6a,0x02,0xbf,0xab,0xe0,0x79,0x9e, + 0xa4,0x94,0x12,0x5f,0xf3,0x40,0x9b,0x36,0xf1,0x82,0x45,0x3c,0x6f,0x88,0x88,0x38,0xe2,0x18,0x2e,0xeb, + 0x47,0x5e,0xdf,0x33,0x66,0x65,0xce,0xbd,0x93,0x1c,0x7c,0x71,0x88,0x78,0x9b,0x36,0x32,0x68,0x12,0xfc, + 0xaf,0x2f,0x0e,0x6d,0x00,0xd1,0x7e,0x54,0xf4,0xbd,0xd0,0x53,0xe9,0x83,0x23,0xd3,0xcc,0xa1,0x17,0xa8, + 0x0c,0xe1,0x12,0x36,0x8a,0xdd,0x92,0x12,0xbe,0x34,0xaf,0x58,0x37,0x74,0xcb,0x10,0x17,0xb3,0xbd,0x4d, + 0x2e,0x5d,0x02,0x72,0x00,0x8a,0x16,0x1c,0xac,0xa5,0xf9,0xe8,0xf5,0xe9,0xf5,0xcb,0x4f,0xeb,0x57,0xbb, + 0x70,0x75,0xfa,0xb7,0xaf,0xae,0xee,0x36,0x74,0xbd,0x82,0x45,0xde,0xdf,0xbc,0x7e,0x02,0xfb,0xbe,0xcd, + 0xff,0x07,0x51,0x5f,0x9e,0xc1,0xeb,0xf6,0x01,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 359a266..208d413 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 19; +const uint8_t VersionMetadata = 21; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+19"; -const char VersionCommitDate[] = "2018-01-16"; +const char VersionFullSemVer[] = "2.0.0-beta.1+21"; +const char VersionCommitDate[] = "2018-01-17"; #endif diff --git a/src/settings/triggers/time.cpp b/src/settings/triggers/time.cpp index 9e90ef6..4c8aa3c 100644 --- a/src/settings/triggers/time.cpp +++ b/src/settings/triggers/time.cpp @@ -128,7 +128,6 @@ TimeTrigger* TimeTriggerSettings::getActiveTrigger(tmElements_t &time) TimeTrigger* activeTrigger = nullptr; int16_t activeTriggerTime = 0; - // TODO calculate sunrise and sunset double sunrise = 0; double sunset = 0; diff --git a/web/app.js b/web/app.js index 7fbb8e6..d7a5aa4 100644 --- a/web/app.js +++ b/web/app.js @@ -1,3 +1,5 @@ +// TODO show "rebooting" messages when system settings change / firmware is being applied + function startApp() { var i18n = new VueI18n({ @@ -78,7 +80,10 @@ function startApp() allStepsValue: 0, steps: [], - location: '' + location: '', + + fixedTimes: [], + relativeTimes: [] }, created: function() @@ -96,6 +101,18 @@ function startApp() self.disableStepsChanged = false; self.savingStepsTimer = false; + var fixedTimes = []; + var relativeTimes = []; + + for (var minutes = 0; minutes < 60 * 24; minutes += 15) + fixedTimes.push(minutes); + + for (var minutes = -(4 * 60); minutes <= 4 * 60; minutes += 15) + relativeTimes.push(minutes); + + self.fixedTimes = fixedTimes; + self.relativeTimes = relativeTimes; + // Sequential loading of all the settings makes sure // we don't overload the ESP8266 with requests, as that @@ -172,7 +189,40 @@ function startApp() .then(function(response) { if (typeof response.data == 'object') - self.triggers.time = response.data; + { + var timeSettings = { + enabled: response.data.enabled || false, + transitionTime: response.data.transitionTime || 0, + triggers: [] + }; + + if (Array.isArray(response.data.triggers)) + { + for (var i = 0; i < response.data.triggers.length; i++) + { + var trigger = response.data.triggers[i]; + + timeSettings.triggers.push({ + brightness: trigger.brightness || 0, + triggerType: trigger.triggerType || 0, + enabled: trigger.enabled || false, + + fixedTime: trigger.triggerType > 0 ? 0 : trigger.time || 0, + relativeTime: trigger.triggerType > 0 ? trigger.time || 0 : 0, + + monday: (trigger.daysOfWeek & 1) > 0, + tuesday: (trigger.daysOfWeek & 2) > 0, + wednesday: (trigger.daysOfWeek & 4) > 0, + thursday: (trigger.daysOfWeek & 8) > 0, + friday: (trigger.daysOfWeek & 16) > 0, + saturday: (trigger.daysOfWeek & 32) > 0, + sunday: (trigger.daysOfWeek & 64) > 0 + }); + } + } + + self.triggers.time = timeSettings; + } }) .catch(function(error) { @@ -245,7 +295,7 @@ function startApp() .then(function() { self.saving = false; - }) + }); }, applySystem: function() @@ -499,6 +549,97 @@ function startApp() { self.searchingLocation = false; }); + }, + + applyTriggers: function() + { + var self = this; + if (self.saving) return; + + self.saving = true; + + var timeSettings = { + enabled: self.triggers.time.enabled, + transitionTime: self.triggers.time.transitionTime, + triggers: [] + }; + + for (var i = 0; i < self.triggers.time.triggers.length; i++) + { + var trigger = self.triggers.time.triggers[i]; + + timeSettings.triggers.push({ + brightness: trigger.brightness, + triggerType: trigger.triggerType, + enabled: trigger.enabled, + time: trigger.triggerType > 0 ? trigger.relativeTime : trigger.fixedTime, + daysOfWeek: (trigger.monday ? 1 : 0) | + (trigger.tuesday ? 2 : 0) | + (trigger.wednesday ? 4 : 0) | + (trigger.thursday ? 8 : 0) | + (trigger.friday ? 16 : 0) | + (trigger.saturday ? 32 : 0) | + (trigger.sunday ? 64 : 0) + }); + } + + axios.post('/api/triggers/time', timeSettings) + .then(function(response) + { + }) + .catch(function(error) + { + console.log(error); + }) + .then(function() + { + self.saving = false; + }); + }, + + addTimeTrigger: function() + { + var self = this; + self.triggers.time.triggers.push({ + brightness: 0, + triggerType: 0, + enabled: true, + + fixedTime: 9 * 60, + relativeTime: 0, + + monday: true, + tuesday: true, + wednesday: true, + thursday: true, + friday: true, + saturday: true, + sunday: true + }); + }, + + deleteTimeTrigger: function(index) + { + var self = this; + self.triggers.time.triggers.splice(index, 1); + }, + + getDisplayTime: function(time, isRelative) + { + var result = ''; + + if (isRelative && time >= 0) + result += '+'; + + var hours = Math.floor(time / 60); + var minutes = Math.abs(time) % 60; + + result += hours + ':'; + if (minutes < 10) + result += '0'; + + result += minutes; + return result; } }, diff --git a/web/dist/bundle.css b/web/dist/bundle.css index 17fa35b..8ca5f70 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem}.nodata{color:grey;text-align:center}.timeTriggers .trigger{border:solid 1px #404040;margin-bottom:2rem;padding:2rem} \ No newline at end of file +*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{border:solid 1px #404040;margin-bottom:2rem;padding:0}.panel .panel-header{background-color:#302f28;color:grey}.panel .panel-header input[type=checkbox]{margin-left:.5em;margin-top:.5em;margin-bottom:.5em}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header a,.panel .panel-header label{color:#fff}.panel .panel-body{padding:2rem}select{background:#202020;color:#fff}select:focus{background-image:none}.inline{display:inline-block;width:auto}.checkbox{white-space:nowrap}.weekday label{width:5em} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 65da002..8a53582 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.axios=e():t.axios=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t){var e=new a(t),n=o(a.prototype.request,e);return i.extend(n,a.prototype,e),i.extend(n,e),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(t){return r(i.merge(s,t))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(t){return Promise.all(t)},c.spread=n(25),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function r(t){return"[object Array]"===u.call(t)}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Function]"===u.call(t)}function a(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,i=t.length;n=200&&t<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(t){s.headers[t]={}}),i.forEach(["post","put","patch"],function(t){s.headers[t]=i.merge(a)}),t.exports=s},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+u(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(c("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(c("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(16),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(10);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var r=n(11);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";function r(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(i.isURLSearchParams(e))o=e.toString();else{var a=[];i.forEach(e,function(t,e){null!==t&&void 0!==t&&(i.isArray(t)&&(e+="[]"),i.isArray(t)||(t=[t]),i.forEach(t,function(t){i.isDate(t)?t=t.toISOString():i.isObject(t)&&(t=JSON.stringify(t)),a.push(r(e)+"="+r(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(i.setAttribute("href",e),e=i.href),i.setAttribute("href",e),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return e=t(window.location.href),function(n){var i=r.isString(n)?t(n):n;return i.protocol===e.protocol&&i.host===e.host}}():function(){return!0}},function(t,e){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,i,o=String(t),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&e>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;e=e<<8|i}return a}},function(t,e,n){"use strict";var r=n(2);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},r.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},r.prototype.forEach=function(t){i.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=r},function(t,e,n){"use strict";function r(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);t.exports=function(t){r(t),t.baseURL&&!c(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=i.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]});return(t.adapter||s.adapter)(t).then(function(e){return r(t),e.data=o(e.data,e.headers,t.transformResponse),e},function(e){return a(e)||(r(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,n){"use strict";function r(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new i(t),e(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},t.exports=r},function(t,e){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}}])}),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(t){return void 0===t||null===t}function e(t){return void 0!==t&&null!==t}function n(t){return!0===t}function r(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function i(t){return null!==t&&"object"==typeof t}function o(t){return"[object Object]"===mn.call(t)}function a(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function s(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function c(t){var e=parseFloat(t);return isNaN(e)?t:e}function u(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}function f(t,e){return _n.call(t,e)}function p(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function d(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function h(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function v(t,e){for(var n in e)t[n]=e[n];return t}function m(t){for(var e={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):X(c)&&X(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&e(c.tag)&&t(c.key)&&e(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Ir&&(s=function(t){for(var e=0;e=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}(n[o],r[o],i[o]));return e}(t);r&&v(t.extendOptions,r),(e=t.options=D(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Lt(t){this._init(t)}function Et(t){return t&&(t.Ctor.options.name||t.tag)}function Pt(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,!("[object RegExp]"!==mn.call(n))&&t.test(e));var n}function It(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=Et(a.componentOptions);s&&!e(s)&&Dt(n,o,r,i)}}}function Dt(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,l(n,e)}function Ft(t,n){return{staticClass:Nt(t.staticClass,n.staticClass),class:e(t.class)?[t.class,n.class]:n.class}}function Nt(t,e){return t?e?t+" "+e:t:e||""}function Mt(t){return Array.isArray(t)?function(t){for(var n,r="",i=0,o=t.length;i=0&&" "===(m=t.charAt(v));v--);m&&_i.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=t.slice(0,i).trim()):e();if(void 0===o?o=t.slice(0,i).trim():0!==h&&e(),a)for(i=0;i-1?{exp:t.slice(0,Hr),key:'"'+t.slice(Hr+1)+'"'}:{exp:t,key:null};for(Wr=t,Hr=zr=qr=0;!ce();)ue(Vr=se())?le(Vr):91===Vr&&function(t){var e=1;for(zr=Hr;!ce();)if(t=se(),ue(t))le(t);else if(91===t&&e++,93===t&&e--,0===e){qr=Hr;break}}(Vr);return{exp:t.slice(0,zr),key:t.slice(zr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function se(){return Wr.charCodeAt(++Hr)}function ce(){return Hr>=Ur}function ue(t){return 34===t||39===t}function le(t){for(var e=t;!ce()&&(t=se())!==e;);}function fe(t,e,n,r,i){e=(o=e)._withTask||(o._withTask=function(){hr=!0;var t=o.apply(null,arguments);return hr=!1,t}),n&&(e=function(t,e,n){var r=Kr;return function i(){null!==t.apply(null,arguments)&&pe(e,i,n,r)}}(e,t,r)),Kr.addEventListener(t,e,Vn?{capture:r,passive:i}:r);var o}function pe(t,e,n,r){(r||Kr).removeEventListener(t,e._withTask||e,n)}function de(n,r){if(!t(n.data.on)||!t(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(t){if(e(t[bi])){var n=Nn?"change":"input";t[n]=[].concat(t[bi],t[n]||[]),delete t[bi]}e(t[wi])&&(t.change=[].concat(t[wi],t.change||[]),delete t[wi])}(i),K(i,o,fe,pe,r.context),Kr=void 0}}function he(n,r){if(!t(n.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};e(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)t(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=t(o)?"":String(o);p=l,!(f=a).composing&&("OPTION"===f.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(f,p)||function(t,n){var r=t.value,i=t._vModifiers;if(e(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,p))&&(a.value=l)}else a[i]=o}}var f,p}function ve(t){var e=me(t.style);return t.staticStyle?v(t.staticStyle,e):e}function me(t){return Array.isArray(t)?m(t):"string"==typeof t?ki(t):t}function ge(n,r){var i=r.data,o=n.data;if(!(t(i.staticStyle)&&t(i.style)&&t(o.staticStyle)&&t(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,p=me(r.data.style)||{};r.data.normalizedStyle=e(p.__ob__)?v({},p):p;var d=function(t,e){for(var n,r={},i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ve(i.data))&&v(r,n);(n=ve(t.data))&&v(r,n);for(var o=t;o=o.parent;)o.data&&(n=ve(o.data))&&v(r,n);return r}(r);for(s in f)t(d[s])&&Si(c,s,"");for(s in d)(a=d[s])!==f[s]&&Si(c,s,null==a?"":a)}}function ye(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function _e(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function be(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&v(e,Li(t.name||"v")),v(e,t),e}return"string"==typeof t?Li(t):void 0}}function we(t){Ri(function(){Ri(t)})}function xe(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ye(t,e))}function $e(t,e){t._transitionClasses&&l(t._transitionClasses,e),_e(t,e)}function ke(t,e,n){var r=Ce(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Pi?Fi:Mi,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout(function(){c0&&(n=Pi,l=a,f=o.length):e===Ii?u>0&&(n=Ii,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Pi:Ii:null)?n===Pi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Pi&&Bi.test(r[Di+"Property"])}}function Ae(t,e){for(;t.length1}function Ee(t,e){!0!==e.data.show&&Te(e)}function Pe(t,e,n){Ie(t,e,n),(Nn||Rn)&&setTimeout(function(){Ie(t,e,n)},0)}function Ie(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Fe(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function De(t,e){return e.every(function(e){return!y(e,t)})}function Fe(t){return"_value"in t?t._value:t.value}function Ne(t){t.target.composing=!0}function Me(t){t.target.composing&&(t.target.composing=!1,Re(t.target,"input"))}function Re(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Be(t){return!t.componentInstance||t.data&&t.data.transition?t:Be(t.componentInstance._vnode)}function Ue(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ue(Q(e.children)):t}function We(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[wn(o)]=i[o];return e}function Ve(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function He(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function ze(t){t.data.newPos=t.elm.getBoundingClientRect()}function qe(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Ke(t,e){var n=e?jo:Oo;return t.replace(n,function(t){return To[t]})}function Je(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:function(t){for(var e={},n=0,r=t.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=p(function(t){return t.replace(bn,function(t,e){return e?e.toUpperCase():""})}),xn=p(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),$n=/\B([A-Z])/g,kn=p(function(t){return t.replace($n,"-$1").toLowerCase()}),Cn=function(t,e,n){return!1},An=function(t){return t},Sn="data-server-rendered",Tn=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],jn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},Ln=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=In&&WXEnvironment.platform.toLowerCase(),Fn=Pn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Dn,Un=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Dn,Wn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Vn=!1;if(Pn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Vn=!0}}),window.addEventListener("test-passive",null,Hn)}catch(t){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&$(Symbol)&&"undefined"!=typeof Reflect&&$(Reflect.ownKeys);qn="undefined"!=typeof Set&&$(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(t){this.subs.push(t)},Yn.prototype.removeSub=function(t){l(this.subs,t)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;eSr&&xr[n].id>t.id;)n--;xr.splice(n+1,0,t)}else xr.push(t);Cr||(Cr=!0,H(ut))}}(this)},Or.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||i(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){B(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var jr={enumerable:!0,configurable:!0,get:g,set:g},Lr={lazy:!0};Ct(At.prototype);var Er={init:function(t,n,r,i){if(!t.componentInstance||t.componentInstance._isDestroyed)(t.componentInstance=function(t,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:t,_parentElm:r||null,_refElm:i||null},c=t.data.inlineTemplate;return e(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new t.componentOptions.Ctor(s)}(t)).$mount(n?t.elm:void 0,n);else if(t.data.keepAlive){var o=t;Er.prepatch(o,o)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,i){var o=!!(i||t.$options._renderChildren||r.data.scopedSlots||t.$scopedSlots!==vn);if(t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=i,t.$attrs=r.data&&r.data.attrs||vn,t.$listeners=n||vn,e&&t.$options.props){ar.shouldConvert=!1;for(var a=t._props,s=t.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Dt(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={};e.get=function(){return jn},Object.defineProperty(t,"config",e),t.util={warn:Xn,extend:v,mergeOptions:D,defineReactive:T},t.set=O,t.delete=j,t.nextTick=H,t.options=Object.create(null),Tn.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,v(t.options.components,Br),t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this},t.mixin=function(t){return this.options=D(this.options,t),this},function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=D(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)lt(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)ft(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Tn.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=v({},a.options),i[r]=a,a}}(t),n=t,Tn.forEach(function(t){n[t]=function(e,n){return n?("component"===t&&o(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}});var n}(Lt),Object.defineProperty(Lt.prototype,"$isServer",{get:Kn}),Object.defineProperty(Lt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Lt.version="2.5.13";var Ur,Wr,Vr,Hr,zr,qr,Kr,Jr,Gr=u("style,class"),Xr=u("input,textarea,option,select,progress"),Zr=function(t,e,n){return"value"===n&&Xr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ti="http://www.w3.org/1999/xlink",ei=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ni=function(t){return ei(t)?t.slice(6,t.length):""},ri=function(t){return null==t||!1===t},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(t){return oi(t)||ai(t)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(ii[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setAttribute:function(t,e,n){t.setAttribute(e,n)}}),fi={create:function(t,e){Ut(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ut(t,!0),Ut(e))},destroy:function(t){Ut(t,!0)}},pi=new tr("",{},[]),di=["create","activate","update","remove","destroy"],hi={create:Ht,update:Ht,destroy:function(t){Ht(t,pi)}},vi=Object.create(null),mi=[fi,hi],gi={create:Kt,update:Kt},yi={create:Gt,update:Gt},_i=/[\w).+\-_$\]]/,bi="__r",wi="__c",xi={create:de,update:de},$i={create:he,update:he},ki=p(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}),Ci=/^--/,Ai=/\s*!important$/,Si=function(t,e,n){if(Ci.test(e))t.style.setProperty(e,n);else if(Ai.test(n))t.style.setProperty(e,n.replace(Ai,""),"important");else{var r=Oi(e);if(Array.isArray(n))for(var i=0,o=n.length;id?h(n,t(i[_+1])?null:i[_+1].elm,i,p,_,o):p>_&&m(0,r,f,d)}(c,p,d,o,s):e(d)?(e(r.text)&&C.setTextContent(c,""),h(c,null,d,0,d.length-1,o)):e(p)?m(0,p,0,p.length-1):e(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),e(l)&&e(u=l.hook)&&e(u=u.postpatch)&&u(r,i)}}}function _(t,r,i){if(n(i)&&e(t.parent))t.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())},v(Lt.options.directives,Vi),v(Lt.options.components,Ki),Lt.prototype.__patch__=Pn?Ui:g,Lt.prototype.$mount=function(t,e){return function(t,e,n){t.$el=e,t.$options.render||(t.$options.render=nr),ct(t,"beforeMount");return new Or(t,function(){t._update(t._render(),n)},g,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,ct(t,"mounted")),t}(this,t=t&&Pn?Bt(t):void 0,e)},Lt.nextTick(function(){jn.devtools&&Jn&&Jn.emit("init",Lt)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=p(function(t){var e=t[0].replace(Xi,"\\$&"),n=t[1].replace(Xi,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=ie(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=re(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},Qi={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=ie(t,"style");n&&(t.staticStyle=JSON.stringify(ki(n)));var r=re(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},to=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),Eo(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""});l+=t.length-h.length,t=h,r(p,l-f,l)}else{var v=t.indexOf("<");if(0===v){if(lo.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m)),n(m+3);continue}}if(fo.test(t)){var g=t.indexOf("]>");if(g>=0){n(g+2);continue}}var y=t.match(uo);if(y){n(y[0].length);continue}var _=t.match(co);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var e=t.match(ao);if(e){var r={tagName:e[1],attrs:[],start:l};n(e[0].length);for(var i,o;!(i=t.match(so))&&(o=t.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(t){var n=t.tagName,i=t.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=t.attrs.length,p=new Array(f),d=0;d=0){for($=t.slice(v);!(co.test($)||ao.test($)||lo.test($)||fo.test($)||(k=$.indexOf("<",1))<0);)v+=k,$=t.slice(v);x=t.substring(0,v),n(v)}v<0&&(x=t,t=""),e.chars&&x&&e.chars(x)}if(t===i){e.chars&&e.chars(t);break}}r()}(t,{warn:ho,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,start:function(t,a,u){var l=i&&i.ns||wo(t);Nn&&"svg"===l&&(a=function(t){for(var e=[],n=0;nc&&(s.push(o=t.slice(c,i)),a.push(JSON.stringify(o)));var u=Xt(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:t?Math.min(t,2):0;var n}(e,n.length)]?n[e].trim():t}function a(t){return JSON.parse(JSON.stringify(t))}function s(t){for(var n=arguments,r=Object(t),i=1;i=97&&e<=122||e>=65&&e<=90?"ident":e>=49&&e<=57?"number":"else"}function d(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n=e,F.test(n)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(e):"*"+e);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof M){if(t.__i18n)try{var e={};t.__i18n.forEach(function(t){e=s(e,JSON.parse(t))}),Object.keys(e).forEach(function(n){t.i18n.mergeLocaleMessage(n,e[n])})}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(t.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(t.i18n.root=this.$root.$i18n,t.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,t.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),t.__i18n)try{var r={};t.__i18n.forEach(function(t){r=s(r,JSON.parse(t))}),t.i18n.messages=r}catch(t){}this._i18n=new M(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof M&&(this._i18n=t.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(e,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(t){return t.tag||(t.text=t.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,p=o.every(function(t){if(t.data&&t.data.attrs){var e=t.data.attrs.place;return void 0!==e&&""!==e}});return f&&o.length>0&&!p&&t("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(t,e){u[e]=t}):Object.keys(l).forEach(function(t){u[t]=l[t]}),o.forEach(function(t,e){var n=p?""+t.data.attrs.place:""+e;u[n]=t}),e(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(t,n){var r=this._caches[t];return r||(r=function(t){for(var e=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=d(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(e=t[u])||!function(){var e=t[u+1];if(l===L&&"'"===e||l===E&&'"'===e)return u++,r="\\"+e,h[C](),!0}()){if(i=p(e),(o=(s=D[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===P)return c}}(t))&&(this._cache[t]=e),e||[]},N.prototype.getPathValue=function(t,n){if(!e(t))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=t,s=0;s-1)t.splice(n,1)}}(this._dataListeners,t)},M.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",function(){for(var e=t._dataListeners.length;e--;)h.nextTick(function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.vm.$watch("locale",function(e){t.$set(t,"locale",e),t.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(t){this._vm.$set(this._vm,"fallbackLocale",t)},R.missing.get=function(){return this._missing},R.missing.set=function(t){this._missing=t},R.formatter.get=function(){return this._formatter},R.formatter.set=function(t){this._formatter=t},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(t,e,n,i){return r(n)?(this.missing&&this.missing.apply(null,[t,e,i]),e):n},M.prototype._isFallbackRoot=function(t){return!t&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(t,e,i,o,a,s){if(!e)return null;var c=this._path.getPathValue(e,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(e))return null;if("string"!=typeof(u=e[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(t,e,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(t,e,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(t,e,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var p=this._root;f=p._translate(p._getMessages(),p.locale,p.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(t,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(t,e,n){var r=this._formatter.interpolate(t,n);return"string"===e?r.join(""):r},M.prototype._translate=function(t,e,n,i,o,a,s){var c=this._interpolate(e,t[e],i,o,a,s);return r(c)?r(c=this._interpolate(n,t[n],i,o,a,s))?null:c:c},M.prototype._t=function(t,e,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!t)return"";var s=i.apply(void 0,o),c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[t].concat(o))}return this._warnDefault(c,t,u,r);var l},M.prototype.t=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return(r=this)._t.apply(r,[t,this.locale,this._getMessages(),null].concat(e));var r},M.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(t,e,i)}return this._warnDefault(e,t,o,r)},M.prototype.i=function(t,e,n){return t?("string"!=typeof e&&(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},M.prototype._tc=function(t,e,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return t?(void 0===i&&(i=1),o((c=this)._t.apply(c,[t,e,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(t,e){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[t,this.locale,this._getMessages(),null,e].concat(n));var i},M.prototype._te=function(t,e,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||e;return this._exist(n[a],t)},M.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},M.prototype.getLocaleMessage=function(t){return a(this._vm.messages[t]||{})},M.prototype.setLocaleMessage=function(t,e){this._vm.messages[t]=e},M.prototype.mergeLocaleMessage=function(t,e){this._vm.messages[t]=h.util.extend(this._vm.messages[t]||{},e)},M.prototype.getDateTimeFormat=function(t){return a(this._vm.dateTimeFormats[t]||{})},M.prototype.setDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=e},M.prototype.mergeDateTimeFormat=function(t,e){this._vm.dateTimeFormats[t]=h.util.extend(this._vm.dateTimeFormats[t]||{},e)},M.prototype._localizeDateTime=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(t)},M.prototype._d=function(t,e,n){if(!n)return new Intl.DateTimeFormat(e).format(t);var r=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(t,n,e)}return r||""},M.prototype.d=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(t,i,o)},M.prototype.getNumberFormat=function(t){return a(this._vm.numberFormats[t]||{})},M.prototype.setNumberFormat=function(t,e){this._vm.numberFormats[t]=e},M.prototype.mergeNumberFormat=function(t,e){this._vm.numberFormats[t]=h.util.extend(this._vm.numberFormats[t]||{},e)},M.prototype._localizeNumber=function(t,e,n,i,o){var a=e,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(t)},M.prototype._n=function(t,e,n){if(!n)return new Intl.NumberFormat(e).format(t);var r=this._localizeNumber(t,e,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(t,n,e)}return r||""},M.prototype.n=function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:e(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(t,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function t(e){(h=e).version&&Number(h.version.split(".")[0]),t.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=t.$i18n;return i._t.apply(i,[e,i.locale,i._getMessages(),t].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var t=this;return function(e,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=t.$i18n;return o._tc.apply(o,[e,o.locale,o._getMessages(),t,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var t=this;return function(e,n){var r=t.$i18n;return r._te(e,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).d.apply(i,[e].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var t=this;return function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=t.$i18n).n.apply(i,[e].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (pull low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."}}};function startApp(){var t=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:t,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:0,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:""},created:function(){var e=this;document.title=t.t("title");var n=window.location.hash.substr(1);n&&(e.activeTab=n),e.startLoadingIndicator(),e.updateWiFiStatus(),e.disableStepsChanged=!1,e.savingStepsTimer=!1,e.loadVersion().then(function(){e.loadConnection().then(function(){e.loadSystem().then(function(){e.loadTimeTriggers().then(function(){e.loadSteps().then(function(){e.stopLoadingIndicator(),e.loading=!1})})})})})},methods:{loadVersion:function(){var t=this;return axios.get("/api/version").then(function(e){"object"==typeof e.data&&(t.version=e.data)}).catch(function(t){console.log(t)})},loadConnection:function(){var t=this;return axios.get("/api/connection").then(function(e){"object"==typeof e.data&&(t.connection=e.data)}).catch(function(t){console.log(t)})},loadSystem:function(){var t=this;return axios.get("/api/system").then(function(e){"object"==typeof e.data&&(t.system=e.data)}).catch(function(t){console.log(t)})},loadTimeTriggers:function(){var t=this;return axios.get("/api/triggers/time").then(function(e){"object"==typeof e.data&&(t.triggers.time=e.data)}).catch(function(t){console.log(t)})},loadSteps:function(){var t=this;return axios.get("/api/steps").then(function(e){if(Array.isArray(e.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=e.data.results[0].geometry.location;t.system.lat=n.lat,t.system.lng=n.lng}}).catch(function(t){console.log(t)}).then(function(){t.searchingLocation=!1}))}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(t){window.location.hash="#"+t}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===u.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===u.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(e){c.headers[e]={}}),o.forEach(["post","put","patch"],function(e){c.headers[e]=o.merge(s)}),e.exports=c},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,l){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+u(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,l,r),p=null}},p.onerror=function(){l(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){l(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),_=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;_&&(d[e.xsrfHeaderName]=_)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),l(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);e.exports=function(e){return r(e),e.baseURL&&!c(e.url)&&(e.url=u(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]}),(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===hn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function u(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return gn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function je(e){this._init(e)}function Le(e){return e&&(e.Ctor.options.name||e.tag)}function Ee(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==hn.call(n))&&e.test(t));var n}function Pe(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Le(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,l(n,t)}function De(e,n){return{staticClass:Fe(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Fe(e,t){return e?t?e+" "+t:e:t||""}function Ne(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(_=e.charAt(y));y--);_&&xi.test(_)||(p=!0)}}else void 0===o?(g=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==g&&t(),a)for(i=0;i-1?{exp:e.slice(0,Kr),key:'"'+e.slice(Kr+1)+'"'}:{exp:e,key:null};for(zr=e,Kr=Jr=Gr=0;!st();)ct(qr=at())?ut(qr):91===qr&&function(e){var t=1;for(Jr=Kr;!st();)if(e=at(),ct(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Gr=Kr;break}}(qr);return{exp:e.slice(0,Jr),key:e.slice(Jr+1,Gr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function at(){return zr.charCodeAt(++Kr)}function st(){return Kr>=Hr}function ct(e){return 34===e||39===e}function ut(e){for(var t=e;!st()&&(e=at())!==t;);}function lt(e,t,n,r,i){var o,a,s,c,u;t=(u=t)._withTask||(u._withTask=function(){dr=!0;var e=u.apply(null,arguments);return dr=!1,e}),n&&(o=t,a=e,s=r,c=Xr,t=function e(){null!==o.apply(null,arguments)&&ft(a,e,s,c)}),Xr.addEventListener(e,t,Bn?{capture:r,passive:i}:r)}function ft(e,t,n,r){(r||Xr).removeEventListener(e,t._withTask||t,n)}function dt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(e){if(t(e[ki])){var n=Dn?"change":"input";e[n]=[].concat(e[ki],e[n]||[]),delete e[ki]}t(e[$i])&&(e.change=[].concat(e[$i],e.change||[]),delete e[$i])}(i),q(i,o,lt,ft,r.context),Xr=void 0}}function pt(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};t(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)e(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=e(o)?"":String(o);d=l,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=l)}else a[i]=o}}var f,d}function ht(e){var t=vt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function vt(e){return Array.isArray(e)?m(e):"string"==typeof e?Si(e):e}function mt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,d=vt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ht(i.data))&&v(r,n);(n=ht(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=ht(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&ji(c,s,"");for(s in p)(a=p[s])!==f[s]&&ji(c,s,null==a?"":a)}}function gt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Ii(e.name||"v")),v(t,e),t}return"string"==typeof e?Ii(e):void 0}}function bt(e){Vi(function(){Vi(e)})}function wt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),gt(e,t))}function xt(e,t){e._transitionClasses&&l(e._transitionClasses,t),yt(e,t)}function kt(e,t,n){var r=$t(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Bi,c=0,u=function(){e.removeEventListener(s,l),n()},l=function(t){t.target===e&&++c>=a&&u()};setTimeout(function(){c0&&(n=Fi,l=a,f=o.length):t===Ni?u>0&&(n=Ni,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Fi&&Ui.test(r[Mi+"Property"])}}function Ct(e,t){for(;e.length1}function Lt(e,t){!0!==t.data.show&&St(t)}function Et(e,t,n){Pt(e,t,n),(Dn||Nn)&&setTimeout(function(){Pt(e,t,n)},0)}function Pt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Dt(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Dt(e){return"_value"in e?e._value:e.value}function Ft(e){e.target.composing=!0}function Nt(e){e.target.composing&&(e.target.composing=!1,Mt(e.target,"input"))}function Mt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Rt(e){return!e.componentInstance||e.data&&e.data.transition?e:Rt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Y(t.children)):e}function Bt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[_n(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ht(e){e.data.newPos=e.elm.getBoundingClientRect()}function zt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',So.innerHTML.indexOf(" ")>0}var pn=Object.freeze({}),hn=Object.prototype.toString,vn=u("slot,component",!0),mn=u("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,_n=d(function(e){return e.replace(yn,function(e,t){return t?t.toUpperCase():""})}),bn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),wn=/\B([A-Z])/g,xn=d(function(e){return e.replace(wn,"-$1").toLowerCase()}),kn=function(e,t,n){return!1},$n=function(e){return e},Cn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],Tn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:kn,isReservedAttr:kn,isUnknownElement:kn,getTagNamespace:g,parsePlatformTagName:$n,mustUseProp:kn,_lifecycleHooks:Sn},On=/[^\w.$]/,jn="__proto__"in{},Ln="undefined"!=typeof window,En="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Pn=En&&WXEnvironment.platform.toLowerCase(),In=Ln&&window.navigator.userAgent.toLowerCase(),Dn=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===Pn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===Pn,Wn=(In&&/chrome\/\d+/.test(In),{}.watch),Bn=!1;if(Ln)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Bn=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Un,Hn,zn=function(){return void 0===Un&&(Un=!Ln&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Un},qn=Ln&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);Hn="undefined"!=typeof Set&&x(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(e){this.subs.push(e)},Xn.prototype.removeSub=function(e){l(this.subs,e)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tCr&&br[n].id>e.id;)n--;br.splice(n+1,0,e)}else br.push(e);kr||(kr=!0,U(ce))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){R(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Tr={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};$e(Ce.prototype);var jr,Lr,Er,Pr,Ir={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=(a=e,s={_isComponent:!0,parent:_r,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Ir.prepatch(o,o)}var a,s,c},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==pn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||pn,e.$listeners=n||pn,t&&e.$options.props){ir.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};Rr=je,(Br={}).get=function(){return Tn},Object.defineProperty(Rr,"config",Br),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=T,Rr.delete=O,Rr.nextTick=U,Rr.options=Object.create(null),An.forEach(function(e){Rr.options[e+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Ur),Rr.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},Rr.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)le(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Wr=Rr,An.forEach(function(e){Wr[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}),Object.defineProperty(je.prototype,"$isServer",{get:zn}),Object.defineProperty(je.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),je.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=u("style,class"),Qr=u("input,textarea,option,select,progress"),ei=function(e,t,n){return"value"===n&&Qr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ti=u("contenteditable,draggable,spellcheck"),ni=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},oi=function(e){return ii(e)?e.slice(6,e.length):""},ai=function(e){return null==e||!1===e},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ui=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),li=function(e){return ci(e)||ui(e)},fi=Object.create(null),di=u("text,number,password,search,email,tel,url"),pi=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(si[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),hi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ue,update:Ue,destroy:function(e){Ue(e,vi)}},yi=Object.create(null),_i=[hi,gi],bi={create:qe,update:qe},wi={create:Je,update:Je},xi=/[\w).+\-_$\]]/,ki="__r",$i="__c",Ci={create:dt,update:dt},Ai={create:pt,update:pt},Si=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Ti=/^--/,Oi=/\s*!important$/,ji=function(e,t,n){if(Ti.test(t))e.style.setProperty(t,n);else if(Oi.test(n))e.style.setProperty(t,n.replace(Oi,""),"important");else{var r=Ei(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[_+1])?null:i[_+1].elm,i,d,_,o):d>_&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&C.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),t(l)&&t(u=l.hook)&&t(u=u.postpatch)&&u(r,i)}}}function _(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:fi[e]=/HTMLUnknownElement/.test(t.toString())},v(je.options.directives,qi),v(je.options.components,Xi),je.prototype.__patch__=Ln?Hi:g,je.prototype.$mount=function(e,t){return e=e&&Ln?Re(e):void 0,r=e,i=t,(n=this).$el=r,n.$options.render||(n.$options.render=er),se(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,se(n,"mounted")),n;var n,r,i},je.nextTick(function(){Tn.devtools&&qn&&qn.emit("init",je)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,eo=d(function(e){var t=e[0].replace(Qi,"\\$&"),n=e[1].replace(Qi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),to={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=rt(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=nt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},no={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=rt(e,"style");n&&(e.staticStyle=JSON.stringify(Si(n)));var r=nt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ro=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",uo=new RegExp("^<"+co),lo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Do(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});l+=e.length-h.length,e=h,r(d,l-f,l)}else{var v=e.indexOf("<");if(0===v){if(ho.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(vo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(po);if(y){n(y[0].length);continue}var _=e.match(fo);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var t=e.match(uo);if(t){var r,i,o={tagName:t[1],attrs:[],start:l};for(n(t[0].length);!(r=e.match(lo))&&(i=e.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=l,o}}();if(w){!function(e){var n,i,l,f=e.tagName,d=e.unarySlash;s&&("p"===o&&oo(f)&&r(o),u(f)&&o===f&&r(f));for(var p=c(f)||!!d,h=e.attrs.length,v=new Array(h),m=0;m=0){for(k=e.slice(v);!(fo.test(k)||uo.test(k)||ho.test(k)||vo.test(k)||($=k.indexOf("<",1))<0);)v+=$,k=e.slice(v);x=e.substring(0,v),n(v)}v<0&&(x=e,e=""),t.chars&&x&&t.chars(x)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:go,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,u){var l=i&&i.ns||$o(e);Dn&&"svg"===l&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=Ge(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t,n,r,i=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(r=i,F.test(r)?(n=(t=i).charCodeAt(0))!==t.charCodeAt(t.length-1)||34!==n&&39!==n?t:t.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.formatter=this.$root.$i18n.formatter,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(e,t){u[t]=e}):Object.keys(l).forEach(function(e){u[e]=l[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;u[n]=e}),t(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(t=e[u])||!function(){var t=e[u+1];if(l===L&&"'"===t||l===E&&'"'===t)return u++,r="\\"+t,h[C](),!0}()){if(i=d(t),(o=(s=D[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?t:r,!1===a()))return;if(l===P)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c,u=this._path.getPathValue(t,i);if(Array.isArray(u))return u;if(r(u)){if(!n(t))return null;if("string"!=typeof(c=t[i]))return null}else{if("string"!=typeof u)return null;c=u}return c.indexOf("@:")>=0&&(c=this._link(e,t,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(e,t,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(e,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s,c=i.apply(void 0,o),u=c.locale||t,l=this._translate(n,u,this.fallbackLocale,e,r,"string",c.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[e].concat(o))}return this._warnDefault(u,e,l,r)},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function e(t){var n;(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeAdd:"Add",timeDelete:"Delete",timeEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (pull low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:0,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})},methods:{loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(e){console.log(e)})},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(e){console.log(e)})},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(function(e){console.log(e)})},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(function(e){console.log(e)})},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(function(e){console.log(e)}).then(function(){e.searchingLocation=!1}))},applyTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(function(e){console.log(e)}).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 00cc450..86ecb61 100644 --- a/web/index.html +++ b/web/index.html @@ -89,22 +89,71 @@
-
- +
+
+ + + [ {{ $t('triggers.timeDelete') }} ] + +
+
- - - +
+ - - + + - +
+ + + + -
- {{ Math.floor(trigger.brightness / 255 * 100) }}% -
- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ {{ Math.floor(trigger.brightness / 255 * 100) }}% +
+ +
@@ -113,6 +162,11 @@
{{ $t('triggers.timeNoData') }}
+ +
+ + +
diff --git a/web/lang.js b/web/lang.js index b6fdec0..0987fcd 100644 --- a/web/lang.js +++ b/web/lang.js @@ -40,12 +40,23 @@ var messages = { timeTitle: 'Time', timeInternet: 'Please note that time triggers require an internet connection.', timeNoData: 'No time triggers defined yet', + timeAdd: 'Add', + timeDelete: 'Delete', + timeEnabled: 'Enabled', timeFixedTime: 'Fixed time', timeSunrise: 'Sunrise', timeSunset: 'Sunset', timeTime: 'Time in minutes', + timeMonday: 'Monday', + timeTuesday: 'Tuesday', + timeWednesday: 'Wednesday', + timeThursday: 'Thursday', + timeFriday: 'Friday', + timeSaturday: 'Saturday', + timeSunday: 'Sunday', + motionTitle: 'Motion' }, @@ -138,12 +149,23 @@ var messages = { timeTitle: 'Tijd', timeInternet: 'Let op dat voor tijd triggers een internetverbinding vereist is.', timeNoData: 'Nog geen tijd triggers geconfigureerd', + timeAdd: 'Toevoegen', + timeDelete: 'Verwijderen', + timeEnabled: 'Actief', timeFixedTime: 'Vaste tijd', timeSunrise: 'Zonsopkomst', timeSunset: 'Zonsondergang', timeTime: 'Tijd in minuten', + timeMonday: 'Maandag', + timeTuesday: 'Dinsdag', + timeWednesday: 'Woensdag', + timeThursday: 'Donderdag', + timeFriday: 'Vrijdag', + timeSaturday: 'Zaterdag', + timeSunday: 'Zondag', + motionTitle: 'Beweging' }, diff --git a/web/site.scss b/web/site.scss index 82404ef..5af8e0d 100644 --- a/web/site.scss +++ b/web/site.scss @@ -11,6 +11,11 @@ $textColor: white; $containerBackgroundColor: #202020; $containerShadow: 0 0 50px #fcf6cf; +$panelBorderColor: #404040; +$panelHeaderBackgroundColor: #302f28; +$panelHeaderColor: #808080; +$panelHeaderLinkColor: white; + $buttonBorderColor: #404040; $sliderBarColor: #404040; @@ -283,12 +288,79 @@ input[disabled] } -.timeTriggers +.clear { - & .trigger + clear: both; +} + + +.panel +{ + border: solid 1px $panelBorderColor; + margin-bottom: 2rem; + padding: 0; + + & .panel-header + { + & input[type=checkbox] { + margin-left: 0.5em; + margin-top: 0.5em; + margin-bottom: 0.5em; + } + + & label { + font-size: 1em; + } + + background-color: $panelHeaderBackgroundColor; + color: $panelHeaderColor; + + & .actions + { + @media #{$mediumScreen} + { + float: right; + } + } + + & a, & label + { + color: $panelHeaderLinkColor; + } + } + + & .panel-body { - border: solid 1px #404040; - margin-bottom: 2rem; padding: 2rem; } +} + + +select +{ + background: $containerBackgroundColor; + color: white; + + &:focus + { + background-image: none; + } +} + +.inline +{ + display: inline-block; + width: auto; +} + + +.checkbox +{ + white-space: nowrap; +} + + +.weekday label +{ + width: 5em; } \ No newline at end of file From 9c22414feaa6f9596037e45d704265d5117fdd9d Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Wed, 17 Jan 2018 23:28:39 +0100 Subject: [PATCH 21/43] Implemented frontend for motion trigger settings Still read-only --- devserver.js | 33 ++++++++ web/app.js | 52 +++++++++++- web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 202 ++++++++++++++++++++++++++++---------------- web/lang.js | 48 +++++++++-- web/site.scss | 2 + 7 files changed, 259 insertions(+), 82 deletions(-) diff --git a/devserver.js b/devserver.js index 99c8641..ba136b1 100644 --- a/devserver.js +++ b/devserver.js @@ -162,6 +162,39 @@ app.post('/api/triggers/time', function(req, res) }); + +var motionTriggers = { + enabled: true, + enabledDuringTimeTrigger: false, + transitionTime: 1000, + delay: 30000, + triggers: [ + { + pin: 14, + brightness: 64, + direction: 2, + enabled: true + }, + { + pin: 15, + brightness: 64, + direction: 3, + enabled: true + } + ] +}; + +app.get('/api/triggers/motion', function(req, res) +{ + res.send(motionTriggers); +}); + +app.post('/api/triggers/motion', function(req, res) +{ + res.sendStatus(200); +}); + + app.listen(3000, function() { console.log('Development server listening on port 3000') diff --git a/web/app.js b/web/app.js index d7a5aa4..3a6e8ee 100644 --- a/web/app.js +++ b/web/app.js @@ -44,7 +44,15 @@ function startApp() triggers: { time: { enabled: false, - transitionTime: 0, + transitionTime: null, + triggers: [] + }, + + motion: { + enabled: false, + enabledDuringTimeTrigger: false, + transitionTime: null, + delay: null, triggers: [] } }, @@ -125,10 +133,13 @@ function startApp() { self.loadTimeTriggers().then(function() { - self.loadSteps().then(function() + self.loadMotionTriggers().then(function() { - self.stopLoadingIndicator(); - self.loading = false; + self.loadSteps().then(function() + { + self.stopLoadingIndicator(); + self.loading = false; + }); }); }); }); @@ -230,6 +241,20 @@ function startApp() }); }, + loadMotionTriggers: function() + { + var self = this; + return axios.get('/api/triggers/motion') + .then(function(response) + { + if (typeof response.data == 'object') + self.triggers.motion = response.data; + }) + .catch(function(error) + { + console.log(error); + }); + }, loadSteps: function() { @@ -558,6 +583,8 @@ function startApp() self.saving = true; + // TODO motion triggers (or separate the forms?) + var timeSettings = { enabled: self.triggers.time.enabled, transitionTime: self.triggers.time.transitionTime, @@ -624,6 +651,23 @@ function startApp() self.triggers.time.triggers.splice(index, 1); }, + addMotionTrigger: function() + { + var self = this; + self.triggers.motion.triggers.push({ + brightness: 0, + enabled: true, + pin: 2, + direction: 0 + }); + }, + + deleteMotionTrigger: function(index) + { + var self = this; + self.triggers.motion.triggers.splice(index, 1); + }, + getDisplayTime: function(time, isRelative) { var result = ''; diff --git a/web/dist/bundle.css b/web/dist/bundle.css index 8ca5f70..fdbc322 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{border:solid 1px #404040;margin-bottom:2rem;padding:0}.panel .panel-header{background-color:#302f28;color:grey}.panel .panel-header input[type=checkbox]{margin-left:.5em;margin-top:.5em;margin-bottom:.5em}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header a,.panel .panel-header label{color:#fff}.panel .panel-body{padding:2rem}select{background:#202020;color:#fff}select:focus{background-image:none}.inline{display:inline-block;width:auto}.checkbox{white-space:nowrap}.weekday label{width:5em} \ No newline at end of file +*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{border:solid 1px #404040;margin-bottom:2rem;padding:0}.panel .panel-header{background-color:#302f28;color:grey}.panel .panel-header input[type=checkbox]{margin-left:.5em;margin-top:.5em;margin-bottom:.5em}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header a,.panel .panel-header label{color:#fff}.panel .panel-body{background-color:#242422;padding:2rem}select{background:#202020;color:#fff}select:focus{background-image:none}.inline{display:inline-block;width:auto}.checkbox{white-space:nowrap}.weekday label{width:5em} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 8a53582..a02b708 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===u.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===u.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(e){c.headers[e]={}}),o.forEach(["post","put","patch"],function(e){c.headers[e]=o.merge(s)}),e.exports=c},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,l){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+u(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,l,r),p=null}},p.onerror=function(){l(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){l(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),_=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;_&&(d[e.xsrfHeaderName]=_)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),l(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);e.exports=function(e){return r(e),e.baseURL&&!c(e.url)&&(e.url=u(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]}),(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===hn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function u(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return gn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(l)&&(f[u]=k(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(l)?f[u]=k(l.text+c):""!==c&&f.push(k(c)):G(c)&&G(l)?f[u]=k(l.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Fr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function je(e){this._init(e)}function Le(e){return e&&(e.Ctor.options.name||e.tag)}function Ee(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==hn.call(n))&&e.test(t));var n}function Pe(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Le(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,l(n,t)}function De(e,n){return{staticClass:Fe(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Fe(e,t){return e?t?e+" "+t:e:t||""}function Ne(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(_=e.charAt(y));y--);_&&xi.test(_)||(p=!0)}}else void 0===o?(g=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==g&&t(),a)for(i=0;i-1?{exp:e.slice(0,Kr),key:'"'+e.slice(Kr+1)+'"'}:{exp:e,key:null};for(zr=e,Kr=Jr=Gr=0;!st();)ct(qr=at())?ut(qr):91===qr&&function(e){var t=1;for(Jr=Kr;!st();)if(e=at(),ct(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Gr=Kr;break}}(qr);return{exp:e.slice(0,Jr),key:e.slice(Jr+1,Gr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function at(){return zr.charCodeAt(++Kr)}function st(){return Kr>=Hr}function ct(e){return 34===e||39===e}function ut(e){for(var t=e;!st()&&(e=at())!==t;);}function lt(e,t,n,r,i){var o,a,s,c,u;t=(u=t)._withTask||(u._withTask=function(){dr=!0;var e=u.apply(null,arguments);return dr=!1,e}),n&&(o=t,a=e,s=r,c=Xr,t=function e(){null!==o.apply(null,arguments)&&ft(a,e,s,c)}),Xr.addEventListener(e,t,Bn?{capture:r,passive:i}:r)}function ft(e,t,n,r){(r||Xr).removeEventListener(e,t._withTask||t,n)}function dt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(e){if(t(e[ki])){var n=Dn?"change":"input";e[n]=[].concat(e[ki],e[n]||[]),delete e[ki]}t(e[$i])&&(e.change=[].concat(e[$i],e.change||[]),delete e[$i])}(i),q(i,o,lt,ft,r.context),Xr=void 0}}function pt(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};t(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)e(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=e(o)?"":String(o);d=l,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=l)}else a[i]=o}}var f,d}function ht(e){var t=vt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function vt(e){return Array.isArray(e)?m(e):"string"==typeof e?Si(e):e}function mt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,d=vt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ht(i.data))&&v(r,n);(n=ht(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=ht(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&ji(c,s,"");for(s in p)(a=p[s])!==f[s]&&ji(c,s,null==a?"":a)}}function gt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Ii(e.name||"v")),v(t,e),t}return"string"==typeof e?Ii(e):void 0}}function bt(e){Vi(function(){Vi(e)})}function wt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),gt(e,t))}function xt(e,t){e._transitionClasses&&l(e._transitionClasses,t),yt(e,t)}function kt(e,t,n){var r=$t(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Bi,c=0,u=function(){e.removeEventListener(s,l),n()},l=function(t){t.target===e&&++c>=a&&u()};setTimeout(function(){c0&&(n=Fi,l=a,f=o.length):t===Ni?u>0&&(n=Ni,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Fi&&Ui.test(r[Mi+"Property"])}}function Ct(e,t){for(;e.length1}function Lt(e,t){!0!==t.data.show&&St(t)}function Et(e,t,n){Pt(e,t,n),(Dn||Nn)&&setTimeout(function(){Pt(e,t,n)},0)}function Pt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Dt(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Dt(e){return"_value"in e?e._value:e.value}function Ft(e){e.target.composing=!0}function Nt(e){e.target.composing&&(e.target.composing=!1,Mt(e.target,"input"))}function Mt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Rt(e){return!e.componentInstance||e.data&&e.data.transition?e:Rt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Y(t.children)):e}function Bt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[_n(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ht(e){e.data.newPos=e.elm.getBoundingClientRect()}function zt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',So.innerHTML.indexOf(" ")>0}var pn=Object.freeze({}),hn=Object.prototype.toString,vn=u("slot,component",!0),mn=u("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,_n=d(function(e){return e.replace(yn,function(e,t){return t?t.toUpperCase():""})}),bn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),wn=/\B([A-Z])/g,xn=d(function(e){return e.replace(wn,"-$1").toLowerCase()}),kn=function(e,t,n){return!1},$n=function(e){return e},Cn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],Tn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:kn,isReservedAttr:kn,isUnknownElement:kn,getTagNamespace:g,parsePlatformTagName:$n,mustUseProp:kn,_lifecycleHooks:Sn},On=/[^\w.$]/,jn="__proto__"in{},Ln="undefined"!=typeof window,En="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Pn=En&&WXEnvironment.platform.toLowerCase(),In=Ln&&window.navigator.userAgent.toLowerCase(),Dn=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===Pn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===Pn,Wn=(In&&/chrome\/\d+/.test(In),{}.watch),Bn=!1;if(Ln)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Bn=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Un,Hn,zn=function(){return void 0===Un&&(Un=!Ln&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Un},qn=Ln&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&x(Symbol)&&"undefined"!=typeof Reflect&&x(Reflect.ownKeys);Hn="undefined"!=typeof Set&&x(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(e){this.subs.push(e)},Xn.prototype.removeSub=function(e){l(this.subs,e)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tCr&&br[n].id>e.id;)n--;br.splice(n+1,0,e)}else br.push(e);kr||(kr=!0,U(ce))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){R(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Tr={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};$e(Ce.prototype);var jr,Lr,Er,Pr,Ir={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=(a=e,s={_isComponent:!0,parent:_r,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Ir.prepatch(o,o)}var a,s,c},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==pn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||pn,e.$listeners=n||pn,t&&e.$options.props){ir.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};Rr=je,(Br={}).get=function(){return Tn},Object.defineProperty(Rr,"config",Br),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=T,Rr.delete=O,Rr.nextTick=U,Rr.options=Object.create(null),An.forEach(function(e){Rr.options[e+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Ur),Rr.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},Rr.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)le(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Wr=Rr,An.forEach(function(e){Wr[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}),Object.defineProperty(je.prototype,"$isServer",{get:zn}),Object.defineProperty(je.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),je.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=u("style,class"),Qr=u("input,textarea,option,select,progress"),ei=function(e,t,n){return"value"===n&&Qr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ti=u("contenteditable,draggable,spellcheck"),ni=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},oi=function(e){return ii(e)?e.slice(6,e.length):""},ai=function(e){return null==e||!1===e},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ui=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),li=function(e){return ci(e)||ui(e)},fi=Object.create(null),di=u("text,number,password,search,email,tel,url"),pi=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(si[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),hi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ue,update:Ue,destroy:function(e){Ue(e,vi)}},yi=Object.create(null),_i=[hi,gi],bi={create:qe,update:qe},wi={create:Je,update:Je},xi=/[\w).+\-_$\]]/,ki="__r",$i="__c",Ci={create:dt,update:dt},Ai={create:pt,update:pt},Si=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Ti=/^--/,Oi=/\s*!important$/,ji=function(e,t,n){if(Ti.test(t))e.style.setProperty(t,n);else if(Oi.test(n))e.style.setProperty(t,n.replace(Oi,""),"important");else{var r=Ei(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[_+1])?null:i[_+1].elm,i,d,_,o):d>_&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&C.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),t(l)&&t(u=l.hook)&&t(u=u.postpatch)&&u(r,i)}}}function _(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:fi[e]=/HTMLUnknownElement/.test(t.toString())},v(je.options.directives,qi),v(je.options.components,Xi),je.prototype.__patch__=Ln?Hi:g,je.prototype.$mount=function(e,t){return e=e&&Ln?Re(e):void 0,r=e,i=t,(n=this).$el=r,n.$options.render||(n.$options.render=er),se(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,se(n,"mounted")),n;var n,r,i},je.nextTick(function(){Tn.devtools&&qn&&qn.emit("init",je)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,eo=d(function(e){var t=e[0].replace(Qi,"\\$&"),n=e[1].replace(Qi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),to={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=rt(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=nt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},no={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=rt(e,"style");n&&(e.staticStyle=JSON.stringify(Si(n)));var r=nt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ro=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",uo=new RegExp("^<"+co),lo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Do(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});l+=e.length-h.length,e=h,r(d,l-f,l)}else{var v=e.indexOf("<");if(0===v){if(ho.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(vo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(po);if(y){n(y[0].length);continue}var _=e.match(fo);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var t=e.match(uo);if(t){var r,i,o={tagName:t[1],attrs:[],start:l};for(n(t[0].length);!(r=e.match(lo))&&(i=e.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=l,o}}();if(w){!function(e){var n,i,l,f=e.tagName,d=e.unarySlash;s&&("p"===o&&oo(f)&&r(o),u(f)&&o===f&&r(f));for(var p=c(f)||!!d,h=e.attrs.length,v=new Array(h),m=0;m=0){for(k=e.slice(v);!(fo.test(k)||uo.test(k)||ho.test(k)||vo.test(k)||($=k.indexOf("<",1))<0);)v+=$,k=e.slice(v);x=e.substring(0,v),n(v)}v<0&&(x=e,e=""),t.chars&&x&&t.chars(x)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:go,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,u){var l=i&&i.ns||$o(e);Dn&&"svg"===l&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=Ge(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t,n,r,i=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(r=i,F.test(r)?(n=(t=i).charCodeAt(0))!==t.charCodeAt(t.length-1)||34!==n&&39!==n?t:t.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.formatter=this.$root.$i18n.formatter,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(e,t){u[t]=e}):Object.keys(l).forEach(function(e){u[e]=l[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;u[n]=e}),t(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,l=j,h[C]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(t=e[u])||!function(){var t=e[u+1];if(l===L&&"'"===t||l===E&&'"'===t)return u++,r="\\"+t,h[C](),!0}()){if(i=d(t),(o=(s=D[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?t:r,!1===a()))return;if(l===P)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c,u=this._path.getPathValue(t,i);if(Array.isArray(u))return u;if(r(u)){if(!n(t))return null;if("string"!=typeof(c=t[i]))return null}else{if("string"!=typeof u)return null;c=u}return c.indexOf("@:")>=0&&(c=this._link(e,t,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(e,t,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(e,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s,c=i.apply(void 0,o),u=c.locale||t,l=this._translate(n,u,this.fallbackLocale,e,r,"string",c.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[e].concat(o))}return this._warnDefault(u,e,l,r)},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function e(t){var n;(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeAdd:"Add",timeDelete:"Delete",timeEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (pull low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:0,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})},methods:{loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(e){console.log(e)})},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(e){console.log(e)})},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(function(e){console.log(e)})},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(function(e){console.log(e)})},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(function(e){console.log(e)}).then(function(){e.searchingLocation=!1}))},applyTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(function(e){console.log(e)}).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===u.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===u.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,l){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+u(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,l,r),p=null}},p.onerror=function(){l(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){l(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),_=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;_&&(d[e.xsrfHeaderName]=_)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),l(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=u(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function u(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return _n.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=$(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=$(l.text+c):""!==c&&f.push($(c)):X(c)&&X(l)?f[u]=$(l.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Lr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function De(e){this._init(e)}function Ee(e){return e&&(e.Ctor.options.name||e.tag)}function Le(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Pe(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Ee(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,l(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&yi.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Vr),key:'"'+e.slice(Vr+1)+'"'}:{exp:e,key:null};for(Wr=e,Vr=Hr=zr=0;!ct();)ut(Ur=st())?lt(Ur):91===Ur&&function(e){var t=1;for(Hr=Vr;!ct();)if(e=st(),ut(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){zr=Vr;break}}(Ur);return{exp:e.slice(0,Hr),key:e.slice(Hr+1,zr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Wr.charCodeAt(++Vr)}function ct(){return Vr>=Br}function ut(e){return 34===e||39===e}function lt(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){pr=!0;var e=o.apply(null,arguments);return pr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Fn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[bi])&&(e.change=[].concat(e[bi],e.change||[]),delete e[bi])}(i),K(i,o,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};t(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)e(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=e(o)?"":String(o);d=l,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=l)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?ki(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function _t(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function bt(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,ji(e.name||"v")),v(t,e),t}return"string"==typeof e?ji(e):void 0}}function wt(e){Mi(function(){Mi(e)})}function xt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&l(e._transitionClasses,t),_t(e,t)}function $t(e,t,n){var r=Tt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ei?Ii:Ni,c=0,u=function(){e.removeEventListener(s,l),n()},l=function(t){t.target===e&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ei,l=a,f=o.length):t===Li?u>0&&(n=Li,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ei:Li:null)?n===Ei?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ei&&Ri.test(r[Pi+"Property"])}}function At(e,t){for(;e.length1}function Et(e,t){!0!==t.data.show&&St(t)}function Lt(e,t,n){Pt(e,t,n),(Fn||Mn)&&setTimeout(function(){Pt(e,t,n)},0)}function Pt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Q(t.children)):e}function Ut(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function qt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Kt(e,t){var n=t?So:Co;return e.replace(n,function(e){return Ao[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',xo.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=d(function(e){return e.replace(bn,function(e,t){return t?t.toUpperCase():""})}),xn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,$n=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Tn=function(e,t,n){return!1},An=function(e){return e},Cn=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],On={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Tn,isReservedAttr:Tn,isUnknownElement:Tn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Tn,_lifecycleHooks:Sn},jn=/[^\w.$]/,Dn="__proto__"in{},En="undefined"!=typeof window,Ln="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Pn=Ln&&WXEnvironment.platform.toLowerCase(),In=En&&window.navigator.userAgent.toLowerCase(),Fn=In&&/msie|trident/.test(In),Nn=In&&In.indexOf("msie 9.0")>0,Mn=In&&In.indexOf("edge/")>0,Rn=In&&In.indexOf("android")>0||"android"===Pn,Bn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===Pn,Wn=(In&&/chrome\/\d+/.test(In),{}.watch),Un=!1;if(En)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Hn,zn,qn=function(){return void 0===Hn&&(Hn=!En&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Hn},Kn=En&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Jn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);zn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Gn=g,Xn=0,Zn=function(){this.id=Xn++,this.subs=[]};Zn.prototype.addSub=function(e){this.subs.push(e)},Zn.prototype.removeSub=function(e){l(this.subs,e)},Zn.prototype.depend=function(){Zn.target&&Zn.target.addDep(this)},Zn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&wr[n].id>e.id;)n--;wr.splice(n+1,0,e)}else wr.push(e);$r||($r=!0,H(ue))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Or={enumerable:!0,configurable:!0,get:g,set:g},jr={lazy:!0};Te(Ae.prototype);var Dr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:br,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Dr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){or.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return On},Object.defineProperty(e,"config",t),e.util={warn:Gn,extend:v,mergeOptions:I,defineReactive:S},e.set=O,e.delete=j,e.nextTick=H,e.options=Object.create(null),Cn.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Rr),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Cn.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,Cn.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(De),Object.defineProperty(De.prototype,"$isServer",{get:qn}),Object.defineProperty(De.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),De.version="2.5.13";var Br,Wr,Ur,Vr,Hr,zr,qr,Kr,Jr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Xr=function(e,t,n){return"value"===n&&Gr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Zr=u("contenteditable,draggable,spellcheck"),Yr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Qr="http://www.w3.org/1999/xlink",ei=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ti=function(e){return ei(e)?e.slice(6,e.length):""},ni=function(e){return null==e||!1===e},ri={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ii=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),oi=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),ai=function(e){return ii(e)||oi(e)},si=Object.create(null),ci=u("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ri[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),li={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},fi=new Qn("",{},[]),di=["create","activate","update","remove","destroy"],pi={create:He,update:He,destroy:function(e){He(e,fi)}},hi=Object.create(null),vi=[li,pi],mi={create:Ke,update:Ke},gi={create:Ge,update:Ge},yi=/[\w).+\-_$\]]/,_i="__r",bi="__c",wi={create:pt,update:pt},xi={create:ht,update:ht},ki=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),$i=/^--/,Ti=/\s*!important$/,Ai=function(e,t,n){if($i.test(t))e.style.setProperty(t,n);else if(Ti.test(n))e.style.setProperty(t,n.replace(Ti,""),"important");else{var r=Si(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[_+1])?null:i[_+1].elm,i,d,_,o):d>_&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&T.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&T.setTextContent(c,""):r.text!==i.text&&T.setTextContent(c,i.text),t(l)&&t(u=l.hook)&&t(u=u.postpatch)&&u(r,i)}}}function _(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?si[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:si[e]=/HTMLUnknownElement/.test(t.toString())},v(De.options.directives,Ui),v(De.options.components,qi),De.prototype.__patch__=En?Bi:g,De.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=tr),ce(e,"beforeMount");return new Sr(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&En?Be(e):void 0,t)},De.nextTick(function(){On.devtools&&Kn&&Kn.emit("init",De)},0);var Ki,Ji=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Xi=d(function(e){var t=e[0].replace(Gi,"\\$&"),n=e[1].replace(Gi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Zi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Yi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(ki(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},Qi=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),to=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),no=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ro="((?:[a-zA-Z_][\\w\\-\\.]*\\:)?[a-zA-Z_][\\w\\-\\.]*)",io=new RegExp("^<"+ro),oo=/^\s*(\/?)>/,ao=new RegExp("^<\\/"+ro+"[^>]*>"),so=/^]+>/i,co=/^/g,"$1").replace(//g,"$1")),jo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});l+=e.length-h.length,e=h,r(d,l-f,l)}else{var v=e.indexOf("<");if(0===v){if(co.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(uo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(so);if(y){n(y[0].length);continue}var _=e.match(ao);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var t=e.match(io);if(t){var r={tagName:t[1],attrs:[],start:l};n(t[0].length);for(var i,o;!(i=e.match(oo))&&(o=e.match(no));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&to(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(ao.test(k)||io.test(k)||co.test(k)||uo.test(k)||($=k.indexOf("<",1))<0);)v+=$,k=e.slice(v);x=e.substring(0,v),n(v)}v<0&&(x=e,e=""),t.chars&&x&&t.chars(x)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:fo,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,u){var l=i&&i.ns||_o(e);Fn&&"svg"===l&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=Xe(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(e,t){u[t]=e}):Object.keys(l).forEach(function(e){u[e]=l[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;u[n]=e}),t(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,l=j,h[T]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(t=e[u])||!function(){var t=e[u+1];if(l===D&&"'"===t||l===E&&'"'===t)return u++,r="\\"+t,h[T](),!0}()){if(i=d(t),(o=(s=I[l])[i]||s.else||P)===P)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(l===L)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(t))return null;if("string"!=typeof(u=t[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(e,t,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(e,t,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(e,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,u=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[e].concat(o))}return this._warnDefault(c,e,u,r);var l},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(e){console.log(e)})},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(e){console.log(e)})},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(function(e){console.log(e)})},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(function(e){console.log(e)})},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(function(e){console.log(e)})},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(function(e){console.log(e)}).then(function(){e.searchingLocation=!1}))},applyTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(function(e){console.log(e)}).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 86ecb61..dd72339 100644 --- a/web/index.html +++ b/web/index.html @@ -84,94 +84,154 @@

{{ $t('triggers.timeTitle') }}

-
- {{ $t('triggers.timeInternet') }} -
+ -
-
-
- - - [ {{ $t('triggers.timeDelete') }} ] - -
-
+
+
+ {{ $t('triggers.timeInternet') }} +
-
- + + - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +
+
+
+ + + [ {{ $t('triggers.timeDelete') }} ] +
-
- {{ Math.floor(trigger.brightness / 255 * 100) }}% -
- +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ {{ Math.floor(trigger.brightness / 255 * 100) }}% +
+ +
-
-
- {{ $t('triggers.timeNoData') }} -
+
+ {{ $t('triggers.timeNoData') }} +
-
- - +
+ +

{{ $t('triggers.motionTitle') }}

+ + + +
+ + + + + + +
+
+
+ + + [ {{ $t('triggers.motionDelete') }} ] + +
+
+ +
+ + + + + + +
+ {{ Math.floor(trigger.brightness / 255 * 100) }}% +
+ +
+
+
+
+
+ +
+ {{ $t('triggers.motionNoData') }} +
+ +
+ +
+
+ +
+ +
@@ -294,7 +354,7 @@

{{ $t('system.mapsTitle') }}

- + {{ $t('system.mapsAPIKeyhint') }}
diff --git a/web/lang.js b/web/lang.js index 0987fcd..8fb3cf3 100644 --- a/web/lang.js +++ b/web/lang.js @@ -40,10 +40,14 @@ var messages = { timeTitle: 'Time', timeInternet: 'Please note that time triggers require an internet connection.', timeNoData: 'No time triggers defined yet', + + timeEnabled: 'Enable time triggers', + timeTransitionTime: 'Transition time in milliseconds', + timeAdd: 'Add', timeDelete: 'Delete', - timeEnabled: 'Enabled', + timeTriggerEnabled: 'Enabled', timeFixedTime: 'Fixed time', timeSunrise: 'Sunrise', timeSunset: 'Sunset', @@ -57,7 +61,22 @@ var messages = { timeSaturday: 'Saturday', timeSunday: 'Sunday', - motionTitle: 'Motion' + motionTitle: 'Motion', + motionNoData: 'No motion triggers defined yet', + + motionEnabled: 'Enable motion triggers', + motionEnabledDuringTimeTrigger: 'Activate even if a time trigger is already active', + motionTransitionTime: 'Transition time in milliseconds', + + motionTriggerEnabled: 'Enabled', + motionAdd: 'Add', + motionDelete: 'Delete', + + motionPin: 'GPIO pin (active high)', + motionDirection: 'Sweep animation', + motionDirectionNonDirectional: 'None (all steps at the same time)', + motionDirectionTopDown: 'Top down', + motionDirectionBottomUp: 'Bottom up' }, connection: { @@ -97,7 +116,7 @@ var messages = { pinLEDAP: 'Access Point status LED pin (+3.3v)', pinLEDSTA: 'Station Mode status LED pin (+3.3v)', - pinAPButton: 'Enable Access Point button pin (pull low)', + pinAPButton: 'Enable Access Point button pin (active low)', pinPWMDriverSDA: 'PCA9685 PWM driver SDA pin (data)', pinPWMDriverSCL: 'PCA9685 PWM driver SCL pin (clock)', pwmAddress: 'PCA9685 PWM driver I²C address', @@ -149,10 +168,14 @@ var messages = { timeTitle: 'Tijd', timeInternet: 'Let op dat voor tijd triggers een internetverbinding vereist is.', timeNoData: 'Nog geen tijd triggers geconfigureerd', + + timeEnabled: 'Tijd triggers inschakelen', + timeTransitionTime: 'Transitie tijd in milliseconden', + timeAdd: 'Toevoegen', timeDelete: 'Verwijderen', - timeEnabled: 'Actief', + timeTriggerEnabled: 'Actief', timeFixedTime: 'Vaste tijd', timeSunrise: 'Zonsopkomst', timeSunset: 'Zonsondergang', @@ -166,7 +189,22 @@ var messages = { timeSaturday: 'Zaterdag', timeSunday: 'Zondag', - motionTitle: 'Beweging' + motionTitle: 'Beweging', + motionNoData: 'Nog geen beweging triggers geconfigureerd', + + motionEnabled: 'Beweging triggers inschakelen', + motionEnabledDuringTimeTrigger: 'Ook inschakelen als er al een tijd trigger actief is', + motionTransitionTime: 'Transitie tijd in milliseconden', + + motionTriggerEnabled: 'Actief', + motionAdd: 'Toevoegen', + motionDelete: 'Verwijderen', + + motionPin: 'GPIO pin (actief hoog)', + motionDirection: 'Animatie', + motionDirectionNonDirectional: 'Geen (alle treden gelijktijdig)', + motionDirectionTopDown: 'Boven naar beneden', + motionDirectionBottomUp: 'Beneden naar boven' }, connection: { diff --git a/web/site.scss b/web/site.scss index 5af8e0d..8c85f88 100644 --- a/web/site.scss +++ b/web/site.scss @@ -12,6 +12,7 @@ $containerBackgroundColor: #202020; $containerShadow: 0 0 50px #fcf6cf; $panelBorderColor: #404040; +$panelBodyBackgroundColor: #242422; $panelHeaderBackgroundColor: #302f28; $panelHeaderColor: #808080; $panelHeaderLinkColor: white; @@ -331,6 +332,7 @@ input[disabled] & .panel-body { + background-color: $panelBodyBackgroundColor; padding: 2rem; } } From d1126e70d32fe8a417042baa6c6290d66a202fd1 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Thu, 18 Jan 2018 17:10:18 +0100 Subject: [PATCH 22/43] Added notifications and error messages in frontend Implemented saving of motion triggers Implemented NTP server settings --- API.md | 2 + devserver.js | 24 +- src/assets/css.h | 289 +-- src/assets/html.h | 304 +-- src/assets/js.h | 4511 ++++++++++++++++++++------------------- src/assets/version.h | 6 +- src/main.triggers.h | 6 +- src/settings/system.cpp | 16 +- src/settings/system.h | 12 +- web/app.js | 154 +- web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 33 +- web/lang.js | 38 + web/site.scss | 55 + 15 files changed, 2850 insertions(+), 2604 deletions(-) diff --git a/API.md b/API.md index f25e41c..05a4320 100644 --- a/API.md +++ b/API.md @@ -92,6 +92,8 @@ Updates the settings of the WiFi connections. The module will apply the new sett *Example response:* ```json { + "ntpServer": "eu.pool.ntp.org", + "ntpInterval": 5, "lat": 52.370216, "lng": 4.895168, "pins": { diff --git a/devserver.js b/devserver.js index ba136b1..97cff89 100644 --- a/devserver.js +++ b/devserver.js @@ -63,18 +63,20 @@ app.post('/api/firmware', function(req, res) var system = { - "lat": 52.370216, - "lng": 4.895168, - "pins": { - "ledAP": 4, - "ledSTA": 5, - "apButton": 2, - "pwmSDA": 13, - "pwmSCL": 12 + ntpServer: "eu.pool.ntp.org", + ntpInterval: 300, + lat: 52.370216, + lng: 4.895168, + pins: { + ledAP: 4, + ledSTA: 5, + apButton: 2, + pwmSDA: 13, + pwmSCL: 12 }, - "pwmAddress": 64, - "pwmFrequency": 1600, - "mapsAPIKey": "" + pwmAddress: 64, + pwmFrequency: 1600, + mapsAPIKey: "" }; app.get('/api/system', function(req, res) diff --git a/src/assets/css.h b/src/assets/css.h index 1076523..0d0537c 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -4,147 +4,152 @@ #include const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0xd9, - 0xda,0xda,0xb7,0x79,0xc0,0x62,0x6c,0x33,0x33,0x78,0x67,0x2b,0xc9,0x29,0x87,0x24,0x87,0x1c,0x72,0xd9, - 0xda,0x83,0x0c,0xc2,0xa8,0x16,0x23,0x02,0x62,0x3c,0xf3,0x28,0xfe,0x7b,0x5a,0x1f,0x18,0x09,0x04,0x9e, - 0xc9,0x4b,0x55,0xd6,0xb5,0x63,0xd3,0xea,0x6e,0xb5,0xba,0x5b,0xad,0xee,0x16,0x7f,0x74,0x63,0x94,0x31, - 0x5c,0xbb,0xf1,0x11,0x67,0xb4,0xc6,0xdd,0x91,0xbe,0x78,0x0d,0xf9,0x8d,0x94,0xa7,0x98,0x94,0x39,0xae, - 0x09,0xeb,0x73,0x76,0x2e,0x74,0xf8,0x91,0xd6,0x29,0xae,0x3d,0x80,0x1c,0x32,0x5a,0x32,0x0e,0xc6,0x71, - 0x14,0xfa,0xfb,0x8f,0xfd,0x91,0xa6,0xaf,0x5d,0x42,0x0b,0x5a,0xc7,0x1f,0xa2,0x20,0x4a,0xee,0x23,0x89, - 0x92,0xa1,0x33,0x29,0x5e,0xe3,0x7f,0xd2,0x23,0x65,0xd4,0xfd,0xf4,0x57,0x5c,0x3c,0x63,0x46,0x12,0xe4, - 0xfc,0x03,0xb7,0xf8,0x93,0x7b,0x7d,0x76,0xff,0x5c,0x13,0x54,0xb8,0x0d,0x2a,0x1b,0xaf,0x81,0xc9,0x33, - 0x6d,0x86,0x8d,0x1f,0xe1,0xb3,0x7c,0xbe,0x60,0x72,0xca,0x59,0xbc,0x0d,0x82,0x43,0x81,0x19,0x88,0xef, - 0x35,0x15,0x4a,0xb8,0x6c,0x7e,0xb0,0x01,0xa4,0x82,0x94,0xd8,0xcb,0x25,0x12,0x90,0xf5,0xc7,0x82,0x26, - 0x3f,0xff,0xdd,0x52,0xc6,0xd7,0x27,0x84,0x2f,0x70,0xc6,0x62,0x7f,0x5b,0xe3,0xb3,0xd3,0xd0,0x82,0xa4, - 0xce,0x87,0x5d,0xc0,0x3f,0x87,0x33,0xaa,0x4f,0xa4,0x94,0xe3,0xd7,0xa7,0x5a,0x70,0x0a,0x0e,0x15,0x4a, - 0x53,0x3e,0xcb,0x86,0xd3,0x6d,0xfc,0x3d,0x7c,0x69,0xbc,0x9d,0xb8,0x40,0x0d,0xf3,0x92,0x9c,0x14,0x69, - 0xa7,0x28,0x61,0xbd,0x8c,0x9e,0xe3,0xa0,0xf7,0x8f,0x2d,0xfc,0x2a,0x5d,0xf5,0x45,0xca,0xaa,0x65,0xdf, - 0xd9,0x6b,0x85,0x9f,0x24,0xe4,0x87,0x0e,0xaa,0x71,0x83,0x99,0x01,0x69,0xda,0xe3,0x99,0xb0,0x1f,0xdd, - 0x11,0x25,0x3f,0x4f,0x35,0x6d,0xcb,0xd4,0x53,0x6a,0x0e,0xa2,0xec,0x20,0x17,0x15,0xfb,0x1b,0x6d,0x3d, - 0x23,0xdc,0xab,0x51,0x4a,0xda,0x26,0xf6,0x77,0x30,0x7c,0x50,0x64,0x59,0x96,0x1d,0x92,0xb6,0x6e,0xe0, - 0x77,0x45,0x49,0x09,0x3a,0x3c,0xa4,0xa4,0xa9,0x0a,0xf4,0x0a,0x76,0x17,0xfa,0x13,0x0b,0x33,0xf4,0xcf, - 0xd9,0x1b,0x06,0xb8,0x07,0x03,0x28,0x35,0x6f,0xfd,0x07,0x3e,0x3a,0x35,0x87,0x20,0xd1,0xcd,0xa1,0xf0, - 0x06,0x4d,0x06,0x0e,0xb7,0xc1,0x81,0xe1,0x17,0xe6,0xa1,0x82,0x9c,0xca,0x38,0xc1,0x42,0x18,0x01,0x49, - 0x71,0x42,0x6b,0xc4,0x08,0x2d,0xe3,0x92,0x96,0x58,0x02,0x59,0x0d,0xde,0x01,0xbe,0x7a,0x8e,0xdb,0xaa, - 0xc2,0x75,0x82,0x1a,0x7c,0xb8,0xe4,0x84,0x61,0x31,0x2b,0x06,0xcc,0x4b,0x8d,0xaa,0x41,0xe1,0x71,0x46, - 0x93,0xb6,0x71,0x87,0xa7,0x9c,0x3e,0x83,0xb3,0x1b,0x43,0xc6,0xc8,0xdc,0x2e,0x0a,0xcb,0x32,0x30,0xa3, - 0x90,0x66,0x9b,0x13,0x28,0xf8,0x0c,0x5f,0x19,0x75,0x4e,0x30,0x0c,0x08,0x0a,0x8b,0xcd,0xd5,0xd6,0x52, - 0xe6,0x35,0x81,0x9a,0x7d,0x69,0xcb,0xb8,0xea,0x47,0xef,0xfb,0x0e,0x26,0x46,0xc7,0x02,0xa7,0x3f,0xdc, - 0x19,0x60,0xbe,0x40,0xfb,0xa0,0x5c,0x8c,0x7d,0x4c,0xc9,0x3d,0x0e,0x76,0xca,0xc5,0x52,0x9c,0xa1,0xb6, - 0x60,0x07,0xca,0xfd,0x82,0xbd,0xc6,0xfe,0x7e,0x2e,0x92,0x69,0x29,0x0d,0xae,0xdb,0x6c,0x86,0xbe,0x80, - 0xbd,0xb6,0x9a,0x45,0x8b,0xae,0x71,0x99,0x2e,0x7b,0xc9,0xca,0x6b,0x3c,0x66,0xea,0x59,0xb4,0xfc,0x94, - 0xcb,0xea,0xbe,0xd7,0x20,0x83,0x56,0xd5,0x97,0xa7,0x3c,0xc0,0xb5,0x43,0xe7,0x1a,0x58,0xc1,0x90,0xcb, - 0x5b,0x41,0x50,0xa2,0x4f,0x30,0xe6,0x92,0x8b,0xfd,0x5b,0xa1,0x1a,0xf6,0xf9,0xe1,0xa6,0xe4,0xa6,0x53, - 0x4c,0x07,0x75,0xcf,0xb0,0x13,0xae,0xd1,0xdd,0x5c,0xfe,0xa2,0xa3,0xdc,0xe4,0x67,0x55,0xd6,0x92,0xcb, - 0xdc,0xe4,0x66,0xd7,0xec,0xa2,0xf3,0x58,0xf9,0xad,0xdb,0x61,0x2d,0x92,0xc8,0xa7,0x05,0xfb,0x2c,0x6d, - 0xdf,0x65,0xb4,0x15,0x9b,0x2d,0x6c,0xee,0x5b,0xbc,0x6e,0xda,0xe7,0x0d,0x5b,0xff,0x1d,0x73,0x58,0x8d, - 0x76,0x3b,0x30,0xbc,0x63,0x06,0xbb,0x1d,0xdf,0x10,0x36,0x6e,0xcc,0xd1,0x19,0x66,0x56,0xe9,0xdd,0xca, - 0x1e,0x4c,0x0a,0x8c,0xa6,0xa6,0x92,0xb0,0x65,0x05,0xce,0xc6,0xcd,0xd5,0xcf,0x86,0x27,0x92,0x8b,0xf1, - 0x77,0xf8,0xea,0xdb,0x82,0x89,0xe0,0x6a,0x77,0x50,0x39,0x64,0x73,0x4a,0x9d,0x68,0x99,0xe6,0x86,0x26, - 0x6e,0x3a,0xdc,0x02,0x2f,0x8b,0xd6,0x6e,0x39,0xd6,0x02,0x27,0x9b,0x82,0x6f,0x3a,0x90,0xc6,0xeb,0xf7, - 0x19,0xc3,0x1e,0x3c,0x04,0xfb,0x5b,0xa1,0x63,0x8a,0xb4,0x68,0xa3,0x1b,0x61,0xc3,0xce,0xe7,0x86,0x45, - 0xde,0x11,0x32,0x6e,0xf2,0xb7,0x98,0xe9,0xed,0xe1,0xe2,0x26,0x77,0x9b,0xe5,0xde,0x11,0x2a,0xac,0xfc, - 0x3b,0x6d,0x2b,0x25,0x34,0xd5,0x0f,0x71,0xc8,0x2c,0x77,0xd9,0x3e,0x8b,0xac,0xb5,0xc5,0x58,0x2c,0x3c, - 0x44,0x1f,0x55,0xf1,0x04,0x29,0xbe,0x1f,0xea,0x29,0xbf,0x78,0x72,0x44,0xf1,0x64,0xcb,0xdb,0xab,0x7a, - 0x6d,0xba,0x79,0xdd,0xc6,0xf3,0x20,0x2e,0x73,0x56,0xd0,0x8b,0xf7,0x1a,0xe7,0x24,0x4d,0x71,0xc9,0xb9, - 0x7c,0x93,0x92,0x1b,0x62,0x06,0xd7,0x22,0x47,0x56,0x37,0x96,0x82,0xce,0x90,0x09,0xd8,0xf4,0xf9,0x10, - 0x37,0x81,0x5a,0x71,0x63,0xb4,0x32,0x8b,0x2d,0x25,0xa4,0x5a,0xb1,0x10,0x2f,0xe8,0x35,0xa5,0xe3,0x33, - 0x22,0x85,0x91,0x2a,0x97,0xed,0xf9,0x88,0x6b,0x03,0x54,0xa1,0xa6,0xb9,0xc0,0x04,0x66,0x4a,0x0d,0xe6, - 0x49,0x72,0x03,0xc4,0x70,0x31,0x79,0x7e,0x31,0x8b,0xc5,0xb6,0x06,0x84,0x06,0x17,0x38,0x61,0x2e,0x1f, - 0x84,0x1d,0x89,0x3a,0x04,0xc5,0x12,0x82,0x0d,0x2a,0x34,0x0d,0xb5,0xd4,0x1b,0xb6,0xb5,0xb9,0x46,0x55, - 0x20,0xdb,0xec,0x2e,0x9a,0x03,0x39,0x4a,0xe9,0x45,0xf1,0x9e,0x35,0x11,0x0e,0xf6,0xf2,0xcf,0x8f,0x84, - 0xe2,0x85,0xda,0x49,0xca,0xf2,0x78,0x13,0x04,0x1f,0xe7,0x8a,0x9b,0x7b,0xb1,0x52,0xdf,0x7c,0xe0,0xaa, - 0x44,0x8b,0xe7,0x4b,0x55,0xce,0x07,0xb8,0x42,0x6d,0xd0,0x17,0x5b,0x6d,0xc6,0x95,0xab,0xa0,0x52,0xc5, - 0xea,0x61,0x50,0xb4,0x7c,0xec,0x66,0xa9,0xb9,0x56,0x8d,0x49,0x3a,0xdd,0xcb,0x81,0xe9,0x2f,0x9f,0x52, - 0xc4,0x50,0x4c,0xce,0xe8,0x84,0xbf,0x34,0xcf,0xa7,0x5f,0x5f,0xce,0xc5,0xa1,0x65,0xd9,0x83,0xfb,0x15, - 0x9e,0x1c,0x78,0x2a,0x9b,0xa7,0xbb,0x9c,0xb1,0x2a,0xfe,0xf2,0xe5,0x72,0xb9,0xf8,0x97,0xad,0x4f,0xeb, - 0xd3,0x97,0x30,0x08,0x02,0x8e,0x7f,0xe7,0x48,0x15,0x3f,0xdd,0x6d,0x76,0x77,0xce,0x33,0xc1,0x97,0xbf, - 0xd0,0x97,0xa7,0xbb,0xc0,0x09,0x9c,0xf0,0xd1,0xe1,0x30,0xa1,0xe1,0xa7,0xbb,0xf0,0xf1,0xee,0xdb,0xd7, - 0x0a,0xb1,0xdc,0xc9,0x48,0x51,0x3c,0xdd,0x7d,0x48,0x37,0xfc,0x73,0xe7,0xa4,0x4f,0x77,0x7f,0x7f,0xf4, - 0xb7,0xf7,0xf7,0xe1,0xbd,0xb3,0xf5,0xa3,0x70,0x5f,0xec,0xfd,0xe0,0x61,0xb3,0xdf,0x39,0x91,0xff,0xb8, - 0xdd,0x87,0xdb,0xbf,0x6d,0x1e,0xfd,0xfd,0x2e,0xd8,0x46,0x72,0xf8,0xee,0xcb,0xb7,0xaf,0x7c,0xe6,0x6f, - 0x9f,0x3e,0x3b,0xb2,0x6a,0x77,0x44,0xa3,0xc4,0x29,0xa9,0x57,0x63,0xf0,0x36,0x36,0xd8,0x59,0x35,0x50, - 0xf8,0xbe,0xe8,0x75,0xa5,0xe9,0x67,0x8b,0x58,0xf8,0xff,0x57,0x11,0x8f,0xc7,0x5d,0x9a,0xa0,0xdf,0xa5, - 0x88,0xfe,0xba,0xdf,0xce,0xa4,0x1c,0x7a,0x1e,0x91,0xec,0x14,0x15,0xe8,0x88,0x0b,0xb7,0xc0,0x27,0x5c, - 0xa6,0x9d,0x19,0x87,0x8c,0x2e,0x97,0xad,0xcb,0x62,0xb6,0x93,0x24,0xbf,0x8c,0xe0,0x22,0x85,0xb3,0x62, - 0xf0,0x35,0xb9,0x83,0xc6,0x2e,0x95,0x11,0x81,0x92,0x1c,0x27,0x3f,0x61,0x5f,0x9a,0xb5,0x3c,0x6c,0x62, - 0xfa,0xe3,0x2a,0x8b,0x6c,0xfc,0xf4,0xbe,0x10,0xd4,0x93,0x4f,0x93,0x41,0xbd,0x2b,0xa4,0xc4,0xdb,0x05, - 0x66,0xd7,0x4c,0x0a,0xe7,0x27,0x80,0x82,0x80,0xa2,0xee,0xae,0xe7,0x00,0x6a,0x19,0x05,0xd4,0x17,0x25, - 0xe9,0x66,0x13,0x9a,0xad,0x20,0xf9,0x48,0x1b,0x22,0x3a,0x3e,0x35,0x2e,0x10,0x23,0xcf,0x58,0x8f,0x0c, - 0x7e,0x4d,0x2f,0x57,0x89,0xb2,0x02,0xbf,0x1c,0xf8,0x1f,0x2f,0x25,0x35,0xf8,0x14,0x27,0x82,0xfd,0xd6, - 0x9e,0xcb,0x91,0xe7,0x94,0x98,0xff,0xf7,0xc0,0x3f,0x15,0x42,0x37,0xea,0xca,0x32,0xfa,0xcd,0x97,0xec, - 0x6c,0x58,0xfc,0xac,0xea,0xc4,0xe4,0xfc,0x57,0x2c,0x5b,0x4e,0xc3,0x20,0x9c,0x0f,0x9d,0xe8,0x66,0x79, - 0x70,0x94,0x9c,0x1b,0x21,0xa9,0xd7,0x80,0x5f,0xb0,0x11,0x47,0x9a,0x72,0x8e,0x06,0xce,0x31,0x22,0xc9, - 0x6d,0x65,0x20,0x49,0xd0,0x88,0xd2,0xb0,0x1a,0xb3,0x24,0x37,0x70,0x14,0x4c,0x9b,0x0c,0xc1,0xb6,0xe3, - 0xd6,0xd4,0xb1,0x06,0xa0,0x40,0x73,0x86,0xb5,0x4e,0x1c,0x13,0x44,0x8a,0x37,0xce,0x66,0xb0,0x9d,0xd9, - 0x1c,0xbd,0x5a,0x12,0xd4,0x3b,0xd5,0xf4,0xc0,0x50,0x7d,0x79,0x34,0xcb,0xc0,0x57,0xbd,0x4d,0xd0,0xe9, - 0x5c,0x36,0xeb,0xd8,0xa1,0x89,0x1d,0xde,0xc0,0xde,0x9b,0xd8,0xfb,0x55,0xec,0xed,0xd6,0x5d,0x1b,0xdd, - 0x19,0xbc,0xb6,0x5b,0x7f,0x0b,0xff,0x56,0x19,0xee,0x4d,0x61,0xf7,0xeb,0xc2,0x46,0xd1,0xda,0xf4,0xd1, - 0xbd,0xc1,0x2b,0x8a,0xfc,0x08,0xfe,0xad,0x32,0xbc,0x37,0x57,0x7f,0xbf,0xbe,0xfa,0x07,0x53,0xd8,0x87, - 0x75,0x61,0x1f,0x4d,0xec,0xc7,0x05,0x6c,0x30,0xae,0x70,0x18,0x1e,0x6b,0xc1,0xb2,0x86,0x87,0xd8,0x29, - 0x42,0x8d,0x22,0x34,0x28,0x96,0x6c,0x0d,0x46,0x1e,0x29,0xf6,0x06,0xc5,0xc2,0x8a,0x17,0x0c,0x0d,0x16, - 0xbe,0x32,0x1a,0xcc,0xab,0x71,0x5b,0xb5,0xf8,0x4e,0x13,0x7b,0x67,0x88,0xbd,0x5b,0x10,0x7b,0xaf,0x51, - 0xec,0x0d,0x8a,0x25,0x3f,0x89,0x34,0x8a,0xc8,0xa0,0x88,0x96,0x28,0xec,0x2e,0x05,0xbe,0x34,0x32,0x52, - 0x8e,0xa4,0x73,0x5b,0xf3,0xad,0x7b,0x4d,0xdb,0xf7,0x86,0xb6,0x97,0xfc,0xeb,0x41,0x13,0xfb,0xc1,0x10, - 0x7b,0xc9,0xc7,0x1e,0x35,0x8a,0x47,0x83,0x62,0xea,0x67,0xc3,0xb7,0x16,0x60,0x21,0x84,0x65,0xd3,0xf8, - 0x3a,0x43,0x37,0x62,0xed,0x48,0x31,0x84,0xda,0x19,0xbe,0x11,0x76,0x05,0xbe,0x8a,0xba,0x7f,0x3a,0xe3, - 0x94,0x20,0xe7,0x17,0x7e,0xb8,0x0f,0xf6,0x86,0x43,0xeb,0x73,0x27,0x0e,0xa6,0xc9,0x59,0x04,0x20,0x23, - 0x62,0x7a,0x5a,0x9e,0x9b,0xa0,0x22,0xf9,0x85,0xc7,0x4a,0xe7,0x57,0x71,0xec,0x7d,0x36,0x83,0xb0,0x79, - 0xdc,0x0f,0x39,0xf4,0x78,0x52,0x72,0x4e,0x7d,0x8f,0xb4,0x3a,0xcd,0x7a,0x61,0xd2,0xab,0x6c,0xd4,0x45, - 0x66,0x5d,0xa7,0xaa,0xf2,0xb4,0x70,0x69,0xe1,0xb6,0x45,0x57,0x90,0x06,0xd2,0x0f,0xf6,0x5a,0xa8,0xda, - 0x40,0x4d,0xcf,0xcb,0x9c,0x6b,0x3a,0xa1,0xa2,0x3e,0x10,0x39,0x40,0x07,0x7f,0xa9,0xf8,0xdb,0x72,0x1e, - 0x8e,0xe0,0xc4,0x21,0x54,0x40,0x5a,0x01,0x69,0x05,0xa4,0xe5,0x90,0x6e,0x4c,0x70,0xa4,0x85,0x45,0x46, - 0x20,0x0b,0x2e,0x1e,0x2b,0xe4,0x0f,0x91,0x1f,0x52,0x43,0x1c,0x58,0x10,0x24,0x82,0x85,0x43,0xca,0x86, - 0xa4,0xb8,0x37,0x65,0x4d,0x48,0x0d,0xe5,0xeb,0x30,0x36,0xb9,0x61,0x4b,0x53,0x37,0x65,0x6e,0x41,0x26, - 0xba,0xdc,0xe8,0x99,0x93,0xcc,0x85,0x66,0xa5,0xd2,0x84,0x62,0x7a,0xcf,0x07,0xcb,0x76,0x33,0x72,0x6a, - 0x6b,0xec,0xf2,0x6b,0x28,0xae,0xc3,0xca,0x85,0x4a,0xd1,0x65,0xbc,0x86,0xe6,0xfa,0x34,0x19,0x84,0x92, - 0x81,0x18,0x1d,0x72,0xb5,0xe1,0x82,0xcc,0x48,0x50,0x58,0xea,0xb2,0xbc,0xbb,0x5e,0xaf,0xca,0x54,0x4f, - 0x2f,0xc1,0xf0,0x86,0x7f,0xc6,0xaa,0x55,0x96,0xd2,0xaa,0x6e,0xd5,0xee,0xd0,0xb8,0xa9,0x80,0x5b,0x9c, - 0x91,0x7a,0xb8,0x90,0x04,0xce,0xfa,0x63,0x37,0xb1,0x2a,0x20,0x8f,0x97,0x97,0x1c,0x57,0xbb,0xca,0x34, - 0x93,0xf8,0xa0,0x3f,0xba,0x90,0x5f,0x50,0x48,0x9e,0x26,0x49,0x6a,0x5f,0x75,0xba,0xe3,0xf4,0xf9,0xc6, - 0xcd,0x43,0x37,0xdf,0xba,0xf9,0xce,0xcd,0xf7,0x6e,0x1e,0x75,0x37,0x2e,0x6f,0x3d,0x79,0x5d,0x38,0xd1, - 0x9e,0x06,0x1a,0xf8,0x6a,0xee,0xb4,0x93,0xf9,0xb2,0x79,0xe3,0x1b,0xf6,0x79,0xa8,0xe1,0x6c,0xad,0x38, - 0xfb,0x3e,0xdf,0x6a,0x48,0xa1,0xba,0xc0,0x34,0x90,0xb6,0x7d,0xbe,0x33,0x70,0x42,0xcb,0x25,0xa7,0x07, - 0xc5,0x81,0x85,0x14,0xf8,0xef,0x3b,0x3d,0xb1,0xb7,0x5d,0x90,0x02,0xed,0x7e,0x4e,0x0b,0xa4,0x51,0x37, - 0xab,0x09,0x26,0xa4,0xc1,0x84,0x68,0xd7,0x93,0xf3,0xa9,0x33,0x93,0x32,0x48,0xc3,0x79,0x7f,0x27,0x23, - 0x2f,0xf2,0x9a,0xbf,0x93,0x8d,0x3d,0x50,0x6d,0x7e,0xe0,0x09,0x3a,0x44,0xb5,0xf8,0x93,0xf3,0xe9,0xda, - 0x15,0x11,0x3e,0xda,0xfb,0x59,0x41,0x11,0x13,0xae,0xd1,0x89,0x9f,0xd2,0xa1,0x14,0x58,0xb8,0x81,0x82, - 0x8b,0xdf,0xfd,0xf7,0x67,0x2f,0x81,0xc7,0x9f,0x63,0x25,0x21,0x82,0x8f,0x78,0x19,0xc0,0x72,0x71,0x05, - 0x86,0xd7,0x2e,0x29,0xf5,0xf7,0x03,0xfe,0x85,0xeb,0x14,0x95,0xeb,0x6f,0x01,0x04,0xd5,0x58,0x56,0x2a, - 0x17,0x11,0x71,0x43,0x85,0xe6,0x26,0xa9,0x31,0x2e,0x1d,0x54,0xa6,0x7a,0x94,0xbe,0x8f,0x1e,0xaa,0x97, - 0xcf,0x9d,0x90,0x68,0x20,0xe6,0xce,0x24,0x28,0x65,0x99,0x34,0x6e,0xff,0x51,0xb8,0xfe,0xc3,0x58,0xc5, - 0xcc,0x17,0x12,0x06,0xfc,0xa3,0xfb,0xa6,0x51,0xcf,0x6c,0x26,0x9d,0x11,0x79,0xf2,0x57,0x2f,0xce,0x87, - 0x2c,0xc9,0xa2,0xe4,0x7a,0x6b,0x2f,0xf7,0xf6,0x86,0x0f,0x80,0x6a,0xde,0xb4,0x0e,0x4d,0x2c,0x0d,0x6e, - 0x1c,0x36,0x7a,0xbe,0x2e,0x37,0x2e,0x87,0xf4,0xbd,0x9f,0x63,0x04,0xb3,0x76,0xb3,0x32,0x6b,0x18,0x71, - 0xb8,0x17,0x8d,0x56,0x37,0x79,0x6c,0x96,0x34,0x3d,0xa6,0x05,0xd1,0x3d,0x97,0x70,0x60,0xe6,0x5f,0x48, - 0x06,0x01,0x1b,0x31,0x28,0xf6,0x35,0xdf,0xd3,0x74,0x26,0x4d,0xf0,0x96,0x55,0xdb,0x78,0x5e,0x97,0x81, - 0x8e,0xa0,0xc7,0x96,0xe1,0xc3,0xf0,0xae,0x86,0x8c,0x15,0xbd,0x85,0xc8,0xf1,0x49,0x99,0x92,0x04,0x31, - 0x5a,0xdb,0xab,0x5b,0xb5,0x7f,0xb8,0xfd,0x86,0xdd,0x25,0x6d,0xa9,0x77,0xbe,0xf6,0xd7,0x73,0x4c,0xe9, - 0x46,0xd5,0xbd,0xab,0xf3,0x7d,0xe7,0xad,0x0d,0x4f,0x82,0x9f,0xc0,0x88,0x25,0x9c,0x3b,0xfc,0x9a,0x7c, - 0xee,0x5c,0xdb,0xc7,0xe8,0x3d,0xbc,0x60,0x1d,0x3a,0xbb,0xa9,0x67,0x9d,0x6a,0xfc,0xfa,0x5f,0x88,0x06, - 0x6e,0x6c,0x93,0x2d,0x7b,0xdc,0xbe,0x87,0x19,0xae,0x6b,0x5a,0xdb,0xf8,0x24,0xc1,0x24,0x98,0x6f,0xa2, - 0x6a,0x70,0x38,0x1e,0xe7,0x43,0xb5,0x15,0x1b,0x52,0x40,0xf2,0x32,0x0d,0x02,0x23,0xde,0x56,0xe1,0xf1, - 0x55,0xce,0xfb,0x9a,0x1f,0xc2,0x07,0xfe,0xd1,0xc9,0x77,0xd5,0xf5,0xe6,0x42,0x85,0x90,0xa9,0xaa,0x60, - 0xbe,0x06,0xdc,0x4a,0x67,0xac,0x35,0xb7,0x81,0x7c,0xfe,0xc6,0xca,0x24,0x0e,0xf4,0x3e,0x04,0xd3,0x55, - 0xa7,0x17,0x08,0x8e,0x4a,0x5b,0x2c,0xea,0x51,0x0d,0xd7,0x31,0x1c,0xfd,0x81,0x9c,0x2b,0x5a,0x33,0x34, - 0xbd,0x77,0x91,0x22,0xeb,0xdc,0xde,0x73,0x09,0xff,0xb6,0xfd,0x6c,0xc8,0xaa,0x1d,0x30,0xaa,0xc7,0x34, - 0x7b,0xe3,0xa3,0xa4,0x5c,0x3d,0x05,0xbd,0xe0,0xf4,0xb0,0x6e,0x9d,0x88,0x7f,0x26,0x4d,0x27,0x63,0x63, - 0x49,0x6d,0xe6,0xa4,0x64,0x8b,0x5d,0x33,0x6e,0x11,0x6d,0x16,0x6b,0x02,0xe7,0x43,0x4c,0x13,0x3d,0x9f, - 0x89,0x1d,0xe6,0xa6,0xec,0xfd,0xa6,0x3d,0xd2,0x8a,0xc7,0x95,0xc6,0x2c,0xe9,0x05,0x1f,0xa9,0x84,0xa6, - 0xb3,0xd1,0x81,0x17,0x81,0xe7,0x74,0x33,0x5f,0x68,0x18,0xae,0x0c,0x56,0x5b,0x2d,0xad,0x19,0xbb,0xa3, - 0xf3,0xee,0x97,0x24,0x75,0x14,0xe7,0x69,0x53,0x4d,0x91,0xee,0x86,0x29,0x1c,0xff,0x19,0x15,0x2d,0xbe, - 0x11,0x16,0x65,0x9a,0xa5,0xfb,0x8e,0xe4,0xde,0x41,0x6e,0x76,0xfc,0x49,0x60,0x51,0x93,0xbb,0x02,0xad, - 0xcb,0xa3,0x02,0xa2,0x4c,0x39,0x27,0x77,0x01,0xa1,0x04,0x6a,0x97,0x37,0xca,0x85,0xb5,0x17,0x91,0xe4, - 0x4c,0x71,0x3c,0x4c,0x25,0x9f,0x3d,0x96,0xb7,0xe7,0xe3,0xe2,0xfc,0x76,0x79,0x42,0x2d,0x40,0x87,0xf6, - 0x00,0x6d,0x5c,0x24,0xc9,0x53,0xd7,0x7c,0xe9,0x4d,0x13,0xe8,0x4c,0x7f,0x03,0xd2,0xf2,0x84,0x95,0x30, - 0xff,0xcb,0x49,0x2e,0xa8,0x2e,0xb9,0xeb,0xe9,0xa8,0xdb,0x20,0xcc,0x20,0x2c,0x59,0xb3,0x80,0xf1,0x82, - 0x64,0x6f,0x4d,0x88,0x7b,0xbf,0xa4,0x3c,0xc4,0xea,0xf1,0xc9,0xe2,0x8e,0xf2,0x36,0x7d,0x0c,0x41,0xbd, - 0x5f,0xa1,0x12,0x17,0xf3,0xf3,0x61,0xf2,0xf6,0xa3,0x9e,0x7a,0x6b,0xbd,0x4f,0x41,0xec,0xc8,0x2f,0x4f, - 0xe5,0x11,0x96,0x93,0x4b,0xae,0x4b,0x77,0x2f,0x0b,0xa1,0x63,0xeb,0x4d,0x1b,0x3b,0x44,0x5f,0xba,0xf0, - 0xda,0xb9,0x2a,0x38,0xc8,0xce,0x5d,0x44,0x13,0xfd,0x64,0x79,0x63,0x86,0x68,0x65,0xe6,0xa3,0x44,0xc6, - 0x02,0x3d,0xe9,0xb5,0xcf,0x8b,0xdc,0x15,0x71,0xb4,0xc4,0xd2,0xc4,0xd2,0xf3,0x52,0x69,0xdf,0xf9,0x15, - 0xd1,0x90,0x6e,0x6a,0x4c,0xd6,0xaf,0x52,0x44,0x0e,0xee,0xaf,0x75,0xf1,0xe5,0xca,0x45,0x5e,0xe8,0x0f, - 0x36,0xe8,0x6c,0xaf,0x52,0x5e,0x30,0xfe,0x99,0xa2,0x57,0xb5,0x0c,0xd5,0xb6,0x02,0x29,0xff,0x03,0x66, - 0x1f,0x62,0x0d,0x3e,0x2c,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0x99, + 0xda,0x9a,0xb7,0x79,0xc0,0xf2,0x61,0xe3,0x31,0xde,0xd9,0x4a,0x5e,0x2e,0x39,0x24,0x39,0xe4,0x90,0xcb, + 0xd6,0x1e,0x64,0x10,0x86,0x1a,0x0c,0x04,0xc4,0x78,0x66,0x29,0xfe,0x7b,0x5a,0x1f,0x18,0x09,0x04,0x9e, + 0xc9,0x4b,0x55,0xd6,0xb5,0x63,0xd3,0xea,0x6e,0xb5,0xba,0x5b,0xad,0xee,0x16,0x7f,0x34,0x43,0x94,0x10, + 0x5c,0x9b,0xe1,0x11,0x27,0x65,0x8d,0xbb,0x63,0xf9,0x6a,0x35,0xd9,0xcf,0xac,0x38,0x85,0x59,0x91,0xe2, + 0x3a,0x23,0x7d,0x4a,0xce,0xb9,0x0c,0x3f,0x96,0x75,0x8c,0x6b,0x0b,0x20,0x87,0xa4,0x2c,0x08,0x05,0xe3, + 0x30,0xf0,0xec,0xed,0xa7,0xfe,0x58,0xc6,0x6f,0x5d,0x54,0xe6,0x65,0x1d,0xde,0x07,0x4e,0x10,0xed,0x02, + 0x8e,0x92,0xa0,0x73,0x96,0xbf,0x85,0xff,0x2c,0x8f,0x25,0x29,0xcd,0x87,0xbf,0xe2,0xfc,0x05,0x93,0x2c, + 0x42,0xc6,0x3f,0x70,0x8b,0x1f,0xcc,0xeb,0xb3,0xf9,0xe7,0x3a,0x43,0xb9,0xd9,0xa0,0xa2,0xb1,0x1a,0x98, + 0x3c,0x91,0x66,0x70,0xed,0x00,0x9f,0xf9,0xf3,0x05,0x67,0xa7,0x94,0x84,0xbe,0xe3,0x1c,0x72,0x4c,0x40, + 0x7c,0xab,0xa9,0x50,0x44,0x65,0xb3,0x1d,0x17,0x90,0xf2,0xac,0xc0,0x56,0xca,0x91,0x80,0xac,0x3f,0xe6, + 0x65,0xf4,0xfc,0xef,0xb6,0x24,0x74,0x7d,0x4c,0xf8,0x1c,0x27,0x24,0xb4,0xfd,0x1a,0x9f,0x8d,0xa6,0xcc, + 0xb3,0xd8,0xb8,0xdf,0x38,0xf4,0x73,0x38,0xa3,0xfa,0x94,0x15,0x7c,0xfc,0xfa,0x54,0x33,0x4e,0xce,0xa1, + 0x42,0x71,0x4c,0x67,0x71,0x29,0x9d,0x6b,0x6f,0xe1,0x4b,0xe2,0x6d,0x84,0x39,0x6a,0x88,0x15,0xa5,0x59, + 0x1e,0x77,0x82,0x12,0xd6,0x4b,0xca,0x73,0xe8,0xf4,0xf6,0xb1,0x85,0x5f,0x85,0x29,0xbe,0xb2,0xa2,0x6a, + 0xc9,0x77,0xf2,0x56,0xe1,0x27,0x0e,0xf9,0x21,0x83,0x6a,0xdc,0x60,0xa2,0x40,0x9a,0xf6,0x78,0xce,0xc8, + 0x8f,0xee,0x88,0xa2,0xe7,0x53,0x5d,0xb6,0x45,0x6c,0x09,0x35,0x3b,0x41,0x72,0xe0,0x8b,0x0a,0x6d,0x57, + 0x5a,0xcf,0x08,0xb7,0x6a,0x14,0x67,0x6d,0x13,0xda,0x1b,0x18,0x3e,0x08,0xb2,0x24,0x49,0x0e,0x51,0x5b, + 0x37,0xf0,0xbb,0x2a,0xb3,0x02,0x74,0x78,0x88,0xb3,0xa6,0xca,0xd1,0x1b,0xd8,0x9d,0xe9,0x8f,0x2d,0x4c, + 0xd1,0x3f,0x65,0xaf,0x18,0x60,0x07,0x06,0x10,0x6a,0xf6,0xed,0x47,0x3a,0x3a,0x35,0x07,0x23,0x91,0xcd, + 0x21,0xf0,0x06,0x4d,0x3a,0x06,0xb5,0xc1,0x81,0xe0,0x57,0x62,0xa1,0x3c,0x3b,0x15,0x61,0x84,0x99,0x30, + 0x0c,0x12,0xe3,0xa8,0xac,0x11,0xc9,0xca,0x22,0x2c,0xca,0x02,0x73,0x20,0xa9,0xc1,0x3b,0xc0,0x57,0xcf, + 0x61,0x5b,0x55,0xb8,0x8e,0x50,0x83,0x0f,0x97,0x34,0x23,0x98,0xcd,0x8a,0x01,0xf3,0x52,0xa3,0x6a,0x50, + 0x78,0x98,0x94,0x51,0xdb,0x98,0xc3,0x53,0x5a,0xbe,0x80,0xb3,0x2b,0x43,0xca,0xc8,0xdc,0x2e,0x02,0x4b, + 0x33,0x30,0xa3,0xe0,0x66,0x9b,0x13,0x08,0xf8,0x0c,0x5f,0x18,0x75,0x4e,0x30,0x0c,0x30,0x0a,0x8d,0xcd, + 0xc5,0xd6,0x12,0xe6,0x55,0x81,0x92,0x7d,0xcb,0x96,0x50,0xd5,0x8f,0xde,0xf7,0x1d,0x4c,0x8c,0x8e,0x39, + 0x8e,0x7f,0x98,0x33,0xc0,0x7c,0x81,0xfa,0x41,0xbe,0x18,0xfd,0x98,0x90,0x7b,0x1c,0xec,0x84,0x8b,0xc5, + 0x38,0x41,0x6d,0x4e,0x0e,0x25,0xf5,0x0b,0xf2,0x16,0xda,0xdb,0xb9,0x48,0xaa,0xa5,0x24,0xb8,0x6c,0xb3, + 0x19,0xfa,0x02,0xf6,0xda,0x6a,0x16,0x2d,0xba,0xc6,0x65,0xba,0xec,0x25,0x2b,0xaf,0xf1,0x98,0xa9,0x67, + 0xd1,0xf2,0x53,0x2e,0xab,0xfb,0x5e,0x82,0x0c,0x5a,0x15,0x5f,0x96,0xf0,0x00,0x53,0x0f,0x9d,0x6b,0x60, + 0x05,0x83,0x2f,0x6f,0x05,0x41,0x88,0x3e,0xc1,0x98,0x4b,0xce,0xf6,0x6f,0x85,0x6a,0xd8,0xe7,0x87,0x9b, + 0x92,0xab,0x4e,0x31,0x1d,0x94,0x3d,0x43,0x4f,0xb8,0x46,0x77,0x73,0xf9,0x8b,0x8e,0x72,0x93,0x9f,0x56, + 0x59,0x4b,0x2e,0x73,0x93,0x9b,0x5e,0xb3,0x8b,0xce,0xa3,0xe5,0xb7,0x6e,0x87,0xb5,0x48,0xc2,0x9f,0x16, + 0xec,0xb3,0xb4,0x7d,0x97,0xd1,0x56,0x6c,0xb6,0xb0,0xb9,0x6f,0xf1,0xba,0x69,0x9f,0x77,0x6c,0xfd,0x0f, + 0xcc,0xa1,0x35,0xda,0xed,0xc0,0xf0,0x81,0x19,0xf4,0x76,0x7c,0x47,0xd8,0xb8,0x31,0x47,0xa7,0x98,0x59, + 0xa4,0x77,0x2b,0x7b,0x30,0xca,0x31,0x9a,0x9a,0x8a,0xc3,0x96,0x15,0x38,0x1b,0x57,0x57,0x3f,0x1b,0x9e, + 0x48,0xce,0xc6,0x3f,0xe0,0xab,0xef,0x0b,0x26,0x8c,0xab,0xde,0x41,0xf9,0x90,0xce,0x29,0x65,0xa2,0x65, + 0x9a,0x1b,0x9a,0xb8,0xe9,0x70,0x0b,0xbc,0x34,0x5a,0xbb,0xe5,0x58,0x0b,0x9c,0x74,0x0a,0xbe,0xe9,0x40, + 0x12,0xaf,0xdf,0x67,0x0c,0x7d,0xf0,0x60,0xec,0x6f,0x85,0x8e,0x29,0xd2,0xa2,0x8d,0x6e,0x84,0x0d,0x3d, + 0x9f,0x1b,0x16,0xf9,0x40,0xc8,0xb8,0xc9,0x5f,0x63,0xa6,0xf7,0x87,0x8b,0x9b,0xdc,0x75,0x96,0xfb,0x40, + 0xa8,0xd0,0xf2,0xef,0xa4,0xad,0x14,0x95,0xb1,0x7c,0x88,0x43,0x66,0xb9,0x49,0xb6,0x49,0xa0,0xad,0x2d, + 0xc6,0x62,0xe1,0x31,0xf8,0x24,0x8a,0x27,0x48,0xf1,0x6d,0x4f,0x4e,0xf9,0xd9,0x93,0xc1,0x8a,0x27,0x5d, + 0xde,0x5e,0xd5,0x6b,0xd3,0xcd,0xeb,0x36,0x9a,0x07,0x51,0x99,0x93,0xbc,0xbc,0x58,0x6f,0x61,0x9a,0xc5, + 0x31,0x2e,0x28,0x97,0x6f,0x5c,0x72,0x45,0x4c,0xe7,0x5a,0xe4,0xf0,0xea,0x46,0x53,0xd0,0x29,0x32,0x01, + 0x9b,0x3e,0x1d,0xe2,0x26,0x50,0x0b,0x6e,0xa4,0xac,0xd4,0x62,0x4b,0x08,0x29,0x56,0xcc,0xc4,0x73,0x7a, + 0x49,0xe9,0xf8,0x8c,0xb2,0x5c,0x49,0x95,0x8b,0xf6,0x7c,0xc4,0xb5,0x02,0xaa,0x50,0xd3,0x5c,0x60,0x02, + 0x35,0xa5,0x06,0xf3,0x44,0xa9,0x02,0x22,0x38,0x9f,0x3c,0xbf,0xaa,0xc5,0x62,0x5b,0x03,0x42,0x83,0x73, + 0x1c,0x11,0x93,0x0e,0xc2,0x8e,0x44,0x1d,0x82,0x62,0x09,0xc1,0x06,0x65,0x9a,0x86,0x5a,0xea,0x1d,0xdb, + 0x5a,0x5d,0xa3,0x28,0x90,0x75,0x76,0x67,0xcd,0x81,0x14,0xc5,0xe5,0x45,0xf0,0x9e,0x35,0x11,0x0e,0xfa, + 0xf2,0xcf,0x0e,0x98,0xe2,0x99,0xda,0xb3,0x98,0xa4,0xa1,0xeb,0x38,0x9f,0xe6,0x8a,0x9b,0x7b,0xb1,0x50, + 0xdf,0x7c,0xe0,0xaa,0x44,0x8d,0xe7,0x73,0x55,0xce,0x07,0xa8,0x42,0x75,0xd0,0x57,0x5d,0x6d,0x46,0x95, + 0x2b,0xa0,0x5c,0xc5,0xe2,0x61,0x50,0x34,0x7f,0xec,0x66,0xa9,0xb9,0x54,0x8d,0x71,0x3a,0xd9,0xcb,0x81, + 0xe9,0x2f,0x0f,0x31,0x22,0x28,0xcc,0xce,0xe8,0x84,0xbf,0x34,0x2f,0xa7,0x5f,0x5f,0xcf,0xf9,0xa1,0x25, + 0xc9,0xa3,0xf9,0x15,0x9e,0x0c,0x78,0x2a,0x9a,0xa7,0xbb,0x94,0x90,0x2a,0xfc,0xf2,0xe5,0x72,0xb9,0xd8, + 0x17,0xdf,0x2e,0xeb,0xd3,0x17,0xcf,0x71,0x1c,0x8a,0x7f,0x67,0x70,0x15,0x3f,0xdd,0xb9,0x9b,0x3b,0xe3, + 0x25,0xc3,0x97,0xdf,0xca,0xd7,0xa7,0x3b,0xc7,0x70,0x0c,0x6f,0x6f,0x50,0x18,0xd3,0xf0,0xd3,0x9d,0xb7, + 0xbf,0xfb,0xf6,0xb5,0x42,0x24,0x35,0x92,0x2c,0xcf,0x9f,0xee,0xee,0x63,0x97,0x7e,0xee,0x8c,0xf8,0xe9, + 0xee,0xef,0x7b,0xdb,0xdf,0xed,0xbc,0x9d,0xe1,0xdb,0x81,0xb7,0xcd,0xb7,0xb6,0xf3,0xe8,0x6e,0x37,0x46, + 0x60,0xef,0xfd,0xad,0xe7,0xff,0xcd,0xdd,0xdb,0xdb,0x8d,0xe3,0x07,0x7c,0xf8,0xee,0xcb,0xb7,0xaf,0x74, + 0xe6,0x6f,0x0f,0x9f,0x0d,0x5e,0xb5,0x1b,0xac,0x51,0x62,0x14,0xa5,0x55,0x63,0xf0,0x36,0x32,0xd8,0x59, + 0x34,0x50,0xe8,0xbe,0xe8,0x65,0xa5,0xc9,0x67,0x0b,0x5b,0xf8,0xff,0x57,0x11,0xfb,0xe3,0x26,0x8e,0xd0, + 0xef,0x52,0x44,0x7f,0xdd,0x6f,0xe7,0xac,0x18,0x7a,0x1e,0x01,0xef,0x14,0xe5,0xe8,0x88,0x73,0x33,0xc7, + 0x27,0x5c,0xc4,0x9d,0x1a,0x87,0x94,0x2e,0x97,0xae,0xcb,0xa2,0xb6,0x93,0x38,0xbf,0x24,0xc3,0x79,0x0c, + 0x67,0xc5,0xe0,0x6b,0x7c,0x07,0x8d,0x5d,0x2a,0x25,0x02,0x45,0x29,0x8e,0x9e,0x61,0x5f,0xaa,0xb5,0x3c, + 0x6c,0xe2,0xf2,0xc7,0x55,0x16,0xde,0xf8,0xe9,0x6d,0x26,0xa8,0xc5,0x9f,0x26,0x83,0x72,0x57,0x48,0x88, + 0xb7,0x71,0xd4,0xae,0x19,0x17,0xce,0x8e,0x00,0x05,0x01,0x45,0xdd,0x5d,0xcf,0x01,0xd4,0x92,0x12,0x50, + 0x5f,0x85,0xa4,0xae,0xeb,0xa9,0xad,0x20,0xfe,0x58,0x36,0x19,0xeb,0xf8,0xd4,0x38,0x47,0x24,0x7b,0xc1, + 0x72,0x64,0xb0,0xeb,0xf2,0x72,0x95,0x28,0xc9,0xf1,0xeb,0x81,0xfe,0xb1,0xe2,0xac,0x06,0x9f,0xa2,0x44, + 0xb0,0xdf,0xda,0x73,0x31,0xf2,0x9c,0x12,0xd3,0xff,0x16,0xf8,0xa7,0x40,0xe8,0x46,0x5d,0x69,0x46,0xbf, + 0xd9,0x9c,0x9d,0x0e,0x8b,0x9e,0x55,0x1d,0x9b,0x9c,0xfe,0x0a,0x79,0xcb,0x69,0x18,0x84,0xf3,0xa1,0x63, + 0xdd,0x2c,0x0b,0x8e,0x92,0x73,0xc3,0x24,0xb5,0x1a,0xf0,0x0b,0x32,0xe2,0x70,0x53,0xce,0xd1,0xc0,0x39, + 0x46,0x24,0xbe,0xad,0x14,0x24,0x0e,0x1a,0x51,0x1a,0x52,0x63,0x12,0xa5,0x0a,0x8e,0x80,0x49,0x93,0x21, + 0xd8,0x76,0xd4,0x9a,0x32,0xd6,0x00,0x64,0x68,0xc6,0xb0,0xd6,0x89,0x63,0x82,0x48,0xa1,0x6b,0xb8,0x83, + 0xed,0xd4,0xe6,0xe8,0xd5,0x92,0xa0,0xde,0xa9,0xa6,0x07,0x86,0xe2,0xcb,0x2a,0x93,0x04,0x7c,0xd5,0x72, + 0x9d,0x4e,0xe6,0xe2,0xae,0x63,0x7b,0x2a,0xb6,0x77,0x03,0x7b,0xab,0x62,0x6f,0x57,0xb1,0x7d,0xdf,0x5c, + 0x1b,0xdd,0x28,0xbc,0x7c,0xdf,0xf6,0xe1,0xdf,0x2a,0xc3,0xad,0x2a,0xec,0x76,0x5d,0xd8,0x20,0x58,0x9b, + 0x3e,0xd8,0x29,0xbc,0x82,0xc0,0x0e,0xe0,0xdf,0x2a,0xc3,0x9d,0xba,0xfa,0xdd,0xfa,0xea,0x1f,0x55,0x61, + 0x1f,0xd7,0x85,0xdd,0xab,0xd8,0xfb,0x05,0x6c,0x30,0x2e,0x73,0x18,0x1a,0x6b,0xc1,0xb2,0x8a,0x87,0xe8, + 0x29,0x3c,0x89,0xc2,0x53,0x28,0x96,0x6c,0x0d,0x46,0x1e,0x29,0xb6,0x0a,0xc5,0xc2,0x8a,0x17,0x0c,0x0d, + 0x16,0xbe,0x32,0x1a,0xcc,0x2b,0x71,0x5b,0xb5,0xf8,0x46,0x12,0x7b,0xa3,0x88,0xbd,0x59,0x10,0x7b,0x2b, + 0x51,0x6c,0x15,0x8a,0x25,0x3f,0x09,0x24,0x8a,0x40,0xa1,0x08,0x96,0x28,0xf4,0x2e,0x05,0xbe,0x34,0x32, + 0x12,0x8e,0x24,0x73,0x5b,0xf3,0xad,0x9d,0xa4,0xed,0x9d,0xa2,0xed,0x25,0xff,0x7a,0x94,0xc4,0x7e,0x54, + 0xc4,0x5e,0xf2,0xb1,0xbd,0x44,0xb1,0x57,0x28,0xa6,0x7e,0x36,0x7c,0x4b,0x01,0x16,0x42,0x58,0x32,0x8d, + 0xaf,0x33,0x74,0x25,0xd6,0x8e,0x14,0x43,0xa8,0x9d,0xe1,0x2b,0x61,0x97,0xe1,0x8b,0xa8,0xfb,0xa7,0x33, + 0x8e,0x33,0x64,0xfc,0x42,0x0f,0xf7,0xc1,0xde,0x70,0x68,0x7d,0xee,0xd8,0xc1,0x34,0x39,0x8b,0x00,0xa4, + 0x44,0x4c,0x4b,0xca,0x73,0x23,0x94,0x47,0xbf,0xd0,0x58,0x69,0xfc,0xca,0x8e,0xbd,0xcf,0x6a,0x10,0x56, + 0x8f,0xfb,0x21,0x87,0x1e,0x4f,0x4a,0xca,0xa9,0xef,0x91,0x54,0xa7,0x69,0x2f,0x4c,0x7a,0x91,0x8d,0x9a, + 0x48,0xad,0xeb,0x44,0x55,0x1e,0xe7,0x66,0x99,0x9b,0x6d,0xde,0xe5,0x59,0x03,0xe9,0x07,0x79,0xcb,0x45, + 0x6d,0x20,0xa6,0xa7,0x65,0xce,0x35,0x9d,0x10,0x51,0x1f,0x88,0x0c,0xa0,0x83,0xbf,0x25,0xfb,0xdb,0x52, + 0x1e,0x06,0xe3,0x44,0x21,0x25,0x83,0xb4,0x0c,0xd2,0x32,0x48,0x4b,0x21,0xdd,0x98,0xe0,0x70,0x0b,0xb3, + 0x8c,0x80,0x17,0x5c,0x34,0x56,0xf0,0x1f,0x2c,0x3f,0x2c,0x15,0x71,0x60,0x41,0x90,0x08,0xe6,0x46,0x56, + 0x34,0x59,0x8c,0x7b,0x55,0xd6,0x28,0xab,0xa1,0x7c,0x1d,0xc6,0x26,0x37,0x6c,0x71,0x6c,0xc6,0xc4,0xcc, + 0xb3,0x89,0x2e,0x5d,0x39,0x73,0xe2,0xb9,0xd0,0xac,0x54,0x9a,0x50,0x4c,0xef,0xf9,0x60,0xd9,0x66,0x92, + 0x9d,0xda,0x1a,0x9b,0xf4,0x1a,0x8a,0xea,0xb0,0x32,0xa1,0x52,0x34,0x09,0xad,0xa1,0xa9,0x3e,0x55,0x06, + 0x1e,0x67,0xc0,0x46,0x87,0x5c,0x6d,0xb8,0x20,0x53,0x12,0x14,0x12,0x9b,0x24,0xed,0xae,0xd7,0xab,0x3c, + 0xd5,0x93,0x4b,0x30,0xec,0xd2,0xcf,0x58,0xb5,0xf2,0x52,0x5a,0xd4,0xad,0xd2,0x1d,0x1a,0x35,0x15,0x70, + 0x0b,0x93,0xac,0x1e,0x2e,0x24,0x81,0xb3,0xfc,0xd8,0x4d,0xac,0x0a,0xc8,0xe3,0xe5,0x25,0xc5,0x95,0xae, + 0x32,0xd5,0x24,0xde,0xe9,0x8f,0x26,0xe4,0x17,0x25,0x24,0x4f,0x93,0x24,0xb5,0xaf,0x3a,0xd9,0x71,0xfa, + 0xd4,0x35,0x53,0xcf,0x4c,0x7d,0x33,0xdd,0x98,0xe9,0xd6,0x4c,0x83,0xee,0xc6,0xe5,0xad,0xc5,0xaf,0x0b, + 0x27,0xda,0x93,0x40,0x03,0x5f,0xc9,0x9d,0x36,0x3c,0x5f,0x56,0x6f,0x7c,0xbd,0x3e,0xf5,0x24,0x1c,0x5f, + 0x8b,0xb3,0xed,0x53,0x5f,0x42,0xf2,0xc4,0x05,0xa6,0x82,0xe4,0xf7,0xe9,0x46,0xc1,0xf1,0x34,0x97,0x9c, + 0x16,0x14,0x07,0x1a,0x52,0xe0,0xbf,0xed,0xe4,0xc4,0x5e,0x77,0x41,0x0a,0xb4,0xdb,0x39,0x2d,0x90,0x06, + 0xdd,0xac,0x26,0x98,0x90,0x3a,0x13,0xa2,0x4d,0x9f,0x9d,0x4f,0x9d,0x9a,0x94,0x41,0x1a,0x4e,0xfb,0x3b, + 0x49,0xf6,0xca,0xaf,0xf9,0x3b,0xde,0xd8,0x03,0xd5,0xa6,0x07,0x9a,0xa0,0x43,0x54,0x0b,0x1f,0x8c,0x87, + 0x6b,0x57,0x84,0xf9,0x68,0x6f,0x27,0x79,0x89,0x08,0x73,0x8d,0x8e,0xfd,0xe4,0x0e,0x25,0xc0,0xcc,0x0d, + 0x04,0x9c,0xfd,0xee,0xbf,0xbf,0x58,0x11,0x3c,0x3e,0x8f,0x95,0x04,0x0b,0x3e,0xec,0x65,0x00,0xcd,0xc5, + 0x15,0x18,0x5e,0xba,0xa4,0x94,0xdf,0x0f,0xf8,0x17,0xae,0x63,0x54,0xac,0xbf,0x05,0xe0,0x54,0x63,0x59, + 0x29,0x5c,0x84,0xc5,0x0d,0x11,0x9a,0x9b,0xa8,0xc6,0xb8,0x30,0x50,0x11,0xcb,0x51,0x7a,0x17,0x3c,0x56, + 0xaf,0x9f,0x3b,0x26,0xd1,0x40,0x4c,0x9d,0x89,0x51,0xf2,0x32,0x69,0xdc,0xfe,0xa3,0x70,0xfd,0xfd,0x58, + 0xc5,0xcc,0x17,0xe2,0x39,0xf4,0x23,0xfb,0xa6,0x52,0xcf,0xb8,0x93,0xce,0x08,0x3f,0xf9,0xab,0x57,0xe3, + 0x3e,0x89,0x92,0x20,0xba,0xde,0xda,0xf3,0xbd,0xed,0xd2,0x01,0x50,0xcd,0xbb,0xd6,0x21,0x89,0x25,0xc1, + 0x95,0xc3,0x46,0xce,0xd7,0xf9,0xc6,0xa5,0x90,0xbe,0xb7,0x53,0x8c,0x60,0xd6,0x6e,0x56,0x66,0x0d,0x23, + 0x06,0xf5,0xa2,0xd1,0xea,0x2a,0x0f,0x77,0x49,0xd3,0x63,0x5a,0x10,0xec,0xa8,0x84,0x03,0x33,0xfb,0x92, + 0x25,0x10,0xb0,0x11,0x81,0x62,0x5f,0xf2,0x3d,0x49,0x67,0xdc,0x04,0xef,0x59,0xb5,0x8e,0xe7,0x75,0x19, + 0xe8,0x08,0x7a,0x6c,0x09,0x3e,0x0c,0xef,0x6a,0xf0,0x58,0xd1,0x6b,0x88,0x0c,0x3b,0x2b,0xe2,0x2c,0x42, + 0xa4,0xac,0xf5,0xd5,0xad,0xd8,0x3f,0xd4,0x7e,0xc3,0xee,0xe2,0xb6,0x94,0x3b,0x5f,0xdb,0xeb,0x39,0x26, + 0x74,0x23,0xea,0xde,0xd5,0xf9,0xbe,0xd3,0xd6,0x86,0xc5,0xc1,0x4f,0x60,0xc4,0x02,0xce,0x1d,0x7a,0x4d, + 0x3e,0x77,0x2e,0x7f,0x1f,0x7c,0x84,0x17,0xac,0x43,0x66,0x37,0xf5,0xac,0x53,0x8d,0xdf,0xfe,0x0b,0xd1, + 0xc0,0x8d,0x75,0xb2,0x25,0x7b,0xff,0x23,0xcc,0x70,0x5d,0x97,0xb5,0x8e,0x4f,0xe4,0x4c,0x82,0xb9,0x1b, + 0x54,0x83,0xc3,0xd1,0x38,0xef,0x89,0xad,0xd8,0x64,0x39,0x24,0x2f,0xd3,0x20,0x30,0xe2,0xf9,0x02,0x8f, + 0xae,0x72,0xde,0xd7,0xbc,0xf7,0x1e,0xe9,0x47,0x26,0xdf,0x54,0xd7,0x9b,0x0b,0x11,0x42,0xa6,0xaa,0x82, + 0xf9,0x1a,0x70,0x2b,0x99,0xb1,0xd4,0xdc,0x06,0xf2,0xf9,0x1b,0x2b,0x93,0x38,0xd0,0xdb,0x10,0x4c,0x57, + 0x9d,0x9e,0x21,0x18,0x22,0x6d,0xd1,0xa8,0x47,0x34,0x5c,0xc7,0x70,0xf4,0x87,0xec,0x5c,0x95,0x35,0x41, + 0xd3,0x7b,0x17,0x2e,0xb2,0xcc,0xed,0x23,0x97,0xf0,0xef,0xdb,0xcf,0x8a,0xac,0xd2,0x01,0x23,0x7a,0x4c, + 0xb3,0x37,0x3e,0x8a,0x92,0xaa,0x27,0x2f,0x2f,0x38,0x3e,0xac,0x5b,0x27,0xa0,0x9f,0x49,0xd3,0x49,0xd9, + 0x58,0x5c,0x9b,0x69,0x56,0x90,0xc5,0xae,0x19,0xb5,0x88,0x34,0x8b,0x36,0x81,0xb3,0x21,0xa6,0xb1,0x9e, + 0xcf,0xc4,0x0e,0x73,0x53,0xf6,0x76,0xd3,0x1e,0xcb,0x8a,0xc6,0x95,0x46,0x2d,0xe9,0x19,0x1f,0xae,0x84, + 0xa6,0xd3,0xd1,0x81,0x17,0x81,0xe7,0x74,0x33,0x5f,0x68,0x08,0xae,0x14,0x56,0xbe,0x94,0xd6,0x8c,0xdd, + 0xd1,0x79,0xf7,0x8b,0x93,0x1a,0x82,0xf3,0xb4,0xa9,0x26,0x48,0x37,0xc3,0x14,0x86,0xfd,0x82,0xf2,0x16, + 0xdf,0x08,0x8b,0x3c,0xcd,0x92,0x7d,0x87,0x73,0xef,0x20,0x37,0x3b,0x3e,0x67,0xb0,0xa8,0xc9,0x5d,0x81, + 0xd4,0xe5,0x11,0x01,0x91,0xa7,0x9c,0x93,0xbb,0x00,0x8f,0x03,0xa5,0xcb,0x1b,0xe1,0xc2,0xd2,0x8b,0x48, + 0x7c,0xa6,0x30,0x1c,0xa6,0xe2,0xcf,0x16,0x49,0xdb,0xf3,0x71,0x71,0x7e,0xbd,0x3c,0x9e,0x14,0xa0,0x3d, + 0x7d,0x80,0x56,0x2e,0x92,0xf8,0xa9,0xab,0xbe,0xf4,0x26,0x09,0x74,0x2e,0x7f,0x02,0x69,0x71,0xc2,0x42, + 0x98,0xff,0xe5,0x24,0x17,0x54,0x17,0xd4,0xf5,0x64,0x54,0xdf,0xf1,0x12,0x08,0x4b,0xda,0x2c,0x60,0xbc, + 0x20,0xd9,0x6a,0x13,0xe2,0xde,0x86,0xfd,0x05,0x81,0x37,0x62,0xb5,0xde,0x5f,0xae,0x5e,0x31,0xb7,0xfb, + 0x35,0x2d,0xf9,0x09,0x7b,0x2b,0x86,0x2a,0x1b,0x4a,0xfd,0xf7,0x9d,0xb6,0xfa,0x19,0x44,0xcf,0xc2,0xf5, + 0x20,0xdf,0xb8,0xb6,0xb9,0x54,0x71,0x74,0x27,0x46,0x12,0x2d,0x2c,0x74,0x92,0x20,0xb9,0xce,0x30,0x20, + 0x67,0x8b,0xea,0x7b,0x8a,0x37,0x74,0xa3,0xd9,0x43,0x1f,0x5e,0x6f,0xc7,0x0b,0xf6,0xf9,0xda,0x0c,0xfb, + 0x8c,0x9b,0x06,0x9d,0x70,0x37,0xbd,0x26,0x54,0xd0,0x6c,0x76,0xe6,0xe9,0x15,0x11,0x1c,0xfd,0x05,0x5d, + 0x8c,0x4b,0xa6,0xdc,0xe8,0x11,0x2a,0x9f,0x3f,0x9a,0x70,0xc3,0xdf,0x96,0x18,0x8f,0x98,0xde,0xae,0x50, + 0x81,0xf3,0xf9,0xf9,0x3f,0x79,0xbb,0x55,0xd1,0xd6,0xd8,0xdb,0x66,0xc4,0x06,0xff,0xb2,0x44,0x9e,0xa8, + 0xc9,0x4c,0xb8,0xdf,0xca,0xe1,0x43,0x43,0x68,0xe8,0xee,0x1e,0x94,0x08,0x28,0x9b,0x8f,0x45,0xa5,0xb9, + 0x39,0x29,0x48,0xcf,0x9d,0x9d,0x16,0x72,0xe6,0xf0,0xce,0x0a,0x40,0xcb,0xcc,0x46,0x11,0x8f,0xf5,0x72, + 0x51,0xa3,0x9f,0x17,0x99,0x2b,0xe2,0x48,0x85,0x83,0x8a,0xb5,0x50,0x09,0x79,0x1b,0xf8,0x78,0x57,0x0b, + 0x78,0xe3,0xf5,0x98,0x12,0x28,0x44,0x9d,0x21,0x71,0x5f,0xbf,0x43,0x63,0xc5,0x97,0xbd,0x76,0x7d,0xc3, + 0x55,0xc2,0x0a,0x02,0x7b,0x30,0x4e,0xa7,0x7b,0x87,0xf6,0x82,0xf1,0x73,0x8c,0xde,0xc4,0xfa,0xc4,0xde, + 0x07,0x29,0xff,0x03,0xbb,0xba,0x32,0x32,0x37,0x2e,0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index 9f1fe01..1f43601 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,148 +4,166 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xcd,0x5a,0x79,0x57,0xdb,0x48,0x12,0xff,0x2a,0x8a, - 0x67,0xf7,0x99,0x6c,0x82,0xb1,0x81,0x90,0xc0,0x02,0x3b,0x3e,0xb1,0xc1,0x36,0xbe,0x30,0xc7,0xbe,0x7d, - 0xfb,0x5a,0x52,0x5b,0x6a,0xd0,0x85,0xba,0x65,0xe3,0x64,0xe6,0xbb,0x6f,0x1f,0x3a,0xda,0xb2,0x64,0x4c, - 0x66,0x33,0x13,0xfe,0x40,0x56,0xd7,0xf5,0xab,0x52,0x55,0x77,0x75,0x4b,0xa7,0xef,0x1a,0xd7,0xf5,0xc9, - 0xfd,0xa0,0xa9,0x98,0xc4,0xb6,0xce,0x4f,0xc3,0xff,0x10,0xe8,0xe7,0xa7,0x36,0x24,0x40,0xd1,0x4c,0xe0, - 0x63,0x48,0xce,0x0a,0x37,0x93,0xd6,0xee,0x97,0xc2,0xf9,0x29,0x41,0xc4,0x82,0xe7,0xa7,0x7b,0xe1,0x95, - 0x33,0x39,0xc0,0x86,0x67,0x05,0x62,0x42,0x1b,0xee,0x6a,0xae,0xe5,0xfa,0x05,0x45,0x73,0x1d,0x02,0x1d, - 0x2a,0xf7,0x4b,0x99,0xff,0x15,0x56,0x58,0xe7,0x08,0x2e,0x3c,0xd7,0x27,0x12,0xdf,0x02,0xe9,0xc4,0x3c, - 0xd3,0xe1,0x1c,0x69,0x70,0x97,0xdf,0x7c,0x44,0x0e,0x22,0x08,0x58,0xbb,0x58,0x03,0x16,0x3c,0xab,0x50, - 0x15,0x16,0x72,0x9e,0x14,0x1f,0x5a,0x67,0x05,0x4c,0x96,0x16,0xc4,0x26,0x84,0x54,0x87,0xe9,0xc3,0xd9, - 0x59,0x41,0x0d,0x1c,0xdd,0x82,0x25,0x0d,0x63,0xca,0x88,0x35,0x1f,0x79,0x44,0xc1,0xbe,0x16,0x13,0x1e, - 0xd9,0xf8,0x9e,0x20,0xd0,0x1f,0xc2,0x47,0xd5,0xd5,0x97,0xe7,0xa7,0x3a,0x9a,0x2b,0x48,0x3f,0x2b,0x00, - 0xcf,0x2b,0x88,0xbb,0xf9,0xae,0x66,0xb9,0xe0,0x29,0x21,0x31,0x9c,0x00,0x39,0xd0,0x0f,0x19,0x34,0x0b, - 0x60,0x7c,0x56,0x60,0x5a,0xf8,0x18,0xb2,0x0d,0x61,0x4d,0x07,0x04,0x9c,0x20,0x1b,0x18,0x70,0xcf,0x73, - 0x8c,0x7f,0xaa,0x00,0xc3,0xa3,0xc3,0x8f,0x68,0x5a,0xbb,0x1e,0x2d,0xca,0x57,0x17,0x86,0x5b,0xa5,0x7f, - 0xfd,0xf1,0x8d,0xd9,0xbc,0x31,0xe8,0xaf,0x06,0xbb,0xad,0x2e,0xea,0xd5,0x7b,0x7a,0xa9,0xdd,0x55,0xe7, - 0x76,0x9b,0x0d,0x5c,0xdc,0x8d,0x5a,0xb7,0xed,0xd1,0x44,0xdd,0x7f,0x28,0xeb,0xfb,0xad,0xe5,0xc3,0xb0, - 0x56,0x7b,0xb8,0x38,0x46,0x0f,0xe3,0xda,0xa5,0x7a,0xdb,0x72,0x1e,0xa6,0x97,0xd6,0xfd,0xed,0xe8,0x93, - 0xa6,0x59,0xd6,0x80,0x09,0xdc,0xd5,0x2e,0x47,0xcd,0xd6,0x0d,0xec,0xfb,0xf8,0x56,0x6f,0xf6,0x8d,0xc7, - 0xea,0xb0,0xab,0xdd,0xd7,0xb4,0xea,0x40,0xab,0xd6,0xf5,0x61,0xff,0xb0,0xda,0xdf,0xef,0xd5,0x0f,0x8d, - 0x11,0xbe,0xbf,0x3c,0x6e,0xf6,0xf5,0xea,0xe0,0xbe,0xda,0x00,0xd5,0x06,0xf4,0xf4,0x1b,0xb3,0x57,0x79, - 0x6e,0x3d,0x06,0xbe,0xe1,0x1d,0x8f,0xb5,0x5e,0xdb,0xd0,0x3f,0x57,0x0e,0xa6,0x07,0x33,0x72,0xe3,0x7d, - 0x82,0x6d,0xa3,0xd7,0xaa,0xf8,0xfe,0x45,0x13,0x04,0x47,0xd3,0x76,0x63,0xbf,0xdd,0x53,0xdb,0x9f,0x9e, - 0x2f,0xaf,0xbb,0x6d,0x1f,0x7c,0x98,0x3d,0x7d,0x55,0xf1,0xfd,0x08,0x9b,0xbd,0x2f,0x5e,0x77,0x62,0xdc, - 0x74,0x8c,0xb1,0x31,0x0f,0x7a,0x3d,0xf7,0x7e,0xf1,0x01,0xf5,0xee,0x27,0xfe,0xd1,0xd0,0xec,0xdf,0xf7, - 0xfc,0x3e,0xea,0x2f,0x17,0x9d,0xae,0xb5,0x9c,0x5e,0xe9,0xda,0x72,0x39,0xc0,0xb6,0x36,0xc2,0xcb,0x9b, - 0x4f,0xe5,0x27,0xa3,0x4d,0x86,0xc3,0x60,0xbf,0xaa,0xf7,0x2f,0x5b,0x5e,0xe3,0xa9,0x7a,0x75,0xd8,0xd9, - 0xeb,0x76,0x6e,0x7b,0xea,0x7e,0x15,0x77,0x6a,0xda,0x73,0x19,0x8d,0x2e,0xe0,0xf0,0x62,0x30,0x79,0x98, - 0x4d,0x8f,0x86,0xcd,0xf2,0x07,0xa3,0x71,0xd1,0xda,0xf7,0x5d,0x7c,0xd1,0x34,0x7a,0xc3,0x97,0x4e,0xd5, - 0x74,0x1e,0xaa,0x68,0xd0,0xff,0x72,0x18,0x78,0xa3,0x59,0x79,0xef,0xda,0xf2,0x70,0xb7,0x5e,0xf3,0x0e, - 0x96,0xcf,0x65,0xcd,0x34,0x48,0xfd,0xe6,0xe6,0xc1,0x1f,0x2d,0x8e,0x86,0x8d,0xeb,0x83,0xe6,0x6d,0x7b, - 0xfc,0xdc,0x3a,0x26,0xc0,0x7f,0x00,0xe3,0xab,0xcb,0x3b,0x78,0xd9,0xd0,0xd5,0xa1,0x85,0x9b,0xe5,0xab, - 0xc6,0xd1,0x65,0x7f,0xef,0xca,0x1d,0xe1,0x0b,0xf3,0xe5,0xee,0xaa,0x6e,0xd5,0xaf,0xda,0x97,0x9d,0xd9, - 0xd3,0xc4,0x5c,0xf4,0x6e,0xcd,0xea,0x91,0x5e,0x1b,0xbb,0xd6,0x08,0x3d,0x3e,0x5d,0x5e,0xeb,0x95,0x87, - 0x9b,0xf9,0xf1,0x72,0x78,0x7c,0xed,0x3d,0xab,0x6d,0x0f,0x81,0x9b,0x29,0x68,0xaa,0x0f,0xcd,0xcf,0xa4, - 0xd3,0x79,0x74,0x6b,0x57,0x77,0x4b,0xec,0xe2,0x8a,0x76,0x38,0xfd,0x02,0xd5,0x6e,0x53,0x57,0xe7,0xfb, - 0xaa,0xd6,0xc3,0xcd,0xcf,0xc6,0x63,0x50,0xd3,0xe7,0x77,0xa3,0xf1,0xe5,0x61,0xeb,0xc3,0xde,0xe2,0xb9, - 0x73,0x77,0xe7,0x77,0x2e,0x16,0xf6,0xdd,0xc1,0xd7,0x05,0xd0,0xba,0x0d,0x13,0xf6,0xaf,0x8f,0x2b,0xd7, - 0x8f,0xdd,0xe1,0x95,0x5e,0x39,0x9c,0xf6,0x1a,0x75,0xe7,0xde,0xa8,0xbf,0x4c,0x1f,0x3b,0x07,0xfd,0x09, - 0xac,0xd8,0x63,0x77,0xd0,0x38,0x3c,0x7e,0x39,0x1c,0xfb,0x34,0x39,0x8e,0x9f,0x07,0xce,0x21,0x74,0xe7, - 0xf5,0x1e,0xcf,0x9e,0xa6,0xd5,0x9a,0x3c,0x8d,0x83,0xa1,0x5d,0xaf,0xd3,0x4c,0x34,0x2b,0xe7,0xdf,0xbe, - 0x29,0x7f,0x23,0x3b,0x45,0x5e,0xa2,0xc5,0xf7,0xca,0xef,0xbf,0xd3,0x74,0xaf,0x50,0xca,0x3e,0xa3,0xcc, - 0xa1,0x8f,0x91,0xeb,0x94,0xf0,0x12,0x13,0x68,0x77,0x1a,0xca,0xbb,0xb3,0x33,0xc5,0x09,0x2c,0x4b,0xf9, - 0x17,0x97,0x8a,0xc6,0xa9,0xe0,0x07,0xa5,0x78,0xa2,0x14,0xe9,0x65,0x4d,0x86,0x0e,0x17,0x85,0xde,0xfd, - 0x95,0x7a,0x58,0xa0,0x19,0xc2,0x04,0x90,0x00,0xaf,0xd6,0x09,0x2d,0x1f,0x07,0x6a,0x84,0xea,0x58,0x1d, - 0x47,0x8e,0x8e,0x34,0x40,0xd8,0x8c,0x71,0xc2,0x2a,0x67,0x57,0x08,0x0b,0x45,0x63,0xfe,0xbb,0x04,0xbc, - 0x12,0x74,0x80,0x6a,0x41,0x9d,0x22,0x2c,0x86,0x9a,0xa0,0x5e,0x64,0x20,0x74,0x84,0x93,0x01,0x56,0xdf, - 0x54,0x77,0xe4,0xbe,0xac,0x42,0xd3,0x20,0xc6,0x9e,0x8b,0x1c,0x52,0x4a,0xa2,0xa2,0x50,0xc6,0x3c,0x3b, - 0xab,0xe3,0xc8,0xa3,0xc6,0x36,0xe8,0xa4,0x30,0xb8,0x60,0x18,0x6c,0x06,0xe2,0x0f,0x79,0x6f,0x40,0x72, - 0x8b,0x5a,0xdc,0x12,0x15,0x12,0x06,0x77,0xde,0xe7,0xfb,0x87,0x05,0xa3,0xed,0xea,0x30,0xe5,0x5f,0x96, - 0xa6,0x09,0x7c,0x21,0x3b,0x12,0x52,0xf9,0xbf,0x98,0xfc,0x10,0x9d,0x4f,0xe9,0xfc,0xa7,0x23,0xc7,0x28, - 0x44,0x60,0xa3,0xfb,0xc8,0x7c,0x78,0x1f,0x5b,0x0a,0xef,0x3b,0x91,0x4f,0xab,0x91,0x10,0x3a,0xdf,0xc5, - 0x4a,0xe4,0x30,0x10,0xa0,0xb2,0x74,0x51,0x03,0x42,0x5c,0x27,0x1a,0x14,0x77,0x34,0x30,0xe1,0xfd,0x37, - 0xa5,0x28,0x86,0x76,0xdd,0x80,0xd0,0x75,0x00,0xd2,0xd4,0x04,0x34,0xa6,0x73,0x38,0x01,0x2a,0xcd,0x61, - 0xa5,0x28,0x82,0x47,0xd3,0xb2,0xa0,0xfc,0xaa,0x59,0x48,0x7b,0xa2,0x13,0x7a,0xcc,0x90,0xd0,0x63,0x07, - 0xc4,0x7d,0x89,0x5a,0x9f,0x48,0x85,0x22,0x8c,0x9c,0x2b,0x7f,0x18,0x0e,0xf1,0x91,0x61,0xd0,0xba,0xc9, - 0x07,0x14,0x73,0xc4,0x90,0xa2,0x91,0x1f,0x06,0x2a,0xc9,0xc4,0x7c,0x58,0x12,0x4f,0x0c,0x2c,0x19,0xfb, - 0x61,0xd0,0xc4,0xdc,0xb2,0xe1,0xf1,0x09,0x7a,0xf2,0xf8,0xf8,0x7d,0x0e,0x9c,0xb5,0xcc,0x93,0x54,0xc9, - 0xa9,0x70,0x6a,0x1e,0xa4,0xd3,0x41,0x9e,0x34,0x0f,0xb8,0x0a,0xba,0xba,0x3b,0x5e,0x40,0x14,0xb2,0xf4, - 0x68,0xef,0xe2,0xd3,0x0c,0x76,0x0b,0x61,0x23,0x03,0x2c,0x6b,0x4c,0xa0,0x87,0xa9,0xa3,0x73,0x60,0x05, - 0xac,0x0b,0xf2,0x03,0x58,0xa0,0x46,0x59,0x2d,0x5a,0x32,0x03,0x6f,0x30,0xc2,0xbb,0x09,0x63,0xa2,0xed, - 0x0c,0x50,0xa1,0x15,0xd7,0x17,0xbb,0xd9,0x45,0x0e,0x0b,0x4e,0x41,0x99,0xb9,0x7e,0x9a,0x7d,0x15,0xa7, - 0x4c,0x0b,0xe1,0x72,0x0d,0x92,0xeb,0x6f,0xc2,0x3d,0x03,0x16,0x7e,0x1d,0x78,0x8b,0x73,0x6d,0x8f,0x3c, - 0xe4,0xcf,0x86,0xce,0x89,0x39,0xd8,0x23,0xdd,0xd8,0x42,0xb4,0xc1,0x4a,0xad,0x26,0xf4,0xc1,0x7b,0x85, - 0xe8,0xc1,0x46,0x38,0x69,0xd3,0xe7,0x81,0x38,0xff,0xb8,0x57,0xdc,0x70,0x0f,0x10,0xb3,0x34,0xb3,0x5c, - 0xd7,0xdf,0x89,0x78,0xa7,0x8c,0xa8,0xec,0x29,0xfb,0x9f,0x3e,0x29,0xff,0x50,0x2a,0xe5,0x32,0xc3,0xf0, - 0x77,0xda,0x1c,0x52,0x05,0x19,0xd6,0xe5,0xde,0x6f,0x35,0xa2,0x8e,0x41,0x1d,0xb6,0x91,0x73,0x56,0x28, - 0xd3,0x2b,0x78,0x39,0x2b,0x50,0x95,0x85,0x55,0xe9,0x38,0xa6,0x25,0x27,0xb0,0x55,0x28,0x05,0x67,0x2a, - 0x30,0xae,0xcd,0xbf,0x19,0x5e,0xbe,0x4b,0x1e,0xc7,0x7c,0x97,0x47,0x78,0x87,0x91,0x3f,0x2a,0x74,0x09, - 0x81,0x2f,0xef,0xe9,0x45,0xc1,0xdb,0x46,0x81,0x31,0x96,0xe6,0x7f,0x6d,0x08,0x12,0x0c,0x29,0xff,0xb3, - 0xd7,0xa2,0xd5,0xea,0x95,0xe6,0xcd,0x53,0x1a,0x0b,0x5b,0xf9,0x15,0x07,0xaa,0x8d,0x48,0xc9,0xf3,0xe1, - 0x9c,0x6f,0x26,0x68,0x23,0x6f,0x2d,0x27,0x21,0x1b,0xe3,0x42,0xd0,0xd2,0xe9,0x36,0x46,0xae,0xf7,0x64, - 0xae,0x45,0x36,0x9c,0xac,0x57,0x7d,0xdc,0xd2,0x00,0xdf,0xe1,0xeb,0x60,0xf8,0x24,0xd6,0x97,0xdd,0xb8, - 0x6d,0xf8,0xed,0x37,0x25,0x83,0x2a,0xb2,0x9e,0xcd,0x71,0x07,0x19,0x13,0x3d,0x35,0xde,0xa1,0x5b,0x20, - 0xdf,0x81,0x24,0xdd,0x3d,0x08,0x83,0x2b,0xac,0xa5,0xf8,0xce,0x82,0x8e,0x41,0xcc,0x38,0xd0,0xdc,0x89, - 0xc4,0x61,0x21,0x2e,0x12,0x25,0x14,0x91,0x73,0x25,0x5b,0x67,0xac,0x8c,0xe6,0x00,0xb4,0x56,0x4b,0x8e, - 0x0f,0xed,0x26,0xdb,0x1d,0x29,0x07,0x34,0x13,0x6a,0x4f,0xaa,0xfb,0x42,0xe7,0x12,0x36,0x55,0x14,0x99, - 0x4e,0xd6,0x34,0x72,0x73,0xac,0x87,0xfc,0x6f,0x18,0x9f,0x62,0x92,0x07,0xaa,0xeb,0x5a,0x10,0x38,0xb1, - 0x77,0x51,0x08,0x37,0x4f,0x2d,0x27,0xdc,0xa1,0x4d,0x06,0x32,0xe3,0xdb,0x74,0xe4,0xe6,0x2c,0x9c,0x69, - 0xe4,0x32,0x01,0x7c,0x65,0xa3,0x71,0xfb,0xb7,0x72,0x0a,0xc2,0xed,0xe4,0x2f,0xd1,0x32,0x94,0x64,0x15, - 0x05,0x0e,0x09,0xec,0xd0,0x55,0x27,0x8c,0xf4,0x8e,0x88,0x68,0xb6,0xd5,0x06,0xe7,0x0e,0x8d,0x82,0x73, - 0xe5,0x3f,0x19,0xc5,0xa5,0xd1,0x20,0xf8,0xf9,0x33,0x80,0x08,0x3a,0xdb,0xa3,0xb2,0xba,0xa6,0xfa,0x34, - 0xb2,0x56,0x49,0x51,0x00,0xc3,0xeb,0x84,0x3e,0x92,0x42,0xd2,0x5f,0xf2,0xb8,0x9d,0x9f,0xba,0x1e,0x73, - 0x50,0x09,0xa7,0xfa,0x72,0x36,0xe0,0x16,0x7a,0x81,0xfa,0x84,0xc5,0x56,0x60,0x16,0x42,0x69,0xe1,0x4a, - 0xb6,0xf0,0x38,0x70,0x7c,0x84,0x37,0x8b,0xee,0xe7,0x8a,0xe2,0x38,0xf9,0x23,0xc9,0x3d,0xe1,0xee,0xab, - 0x6e,0xcf,0x22,0xd0,0x69,0xa7,0x57,0xab,0x47,0x0e,0x0f,0x9b,0x43,0xca,0x52,0x50,0x44,0x99,0x30,0x24, - 0xac,0x34,0x62,0x85,0xf2,0x9a,0xce,0xf4,0x9f,0x8b,0x6e,0xba,0x81,0xb0,0x67,0x81,0x25,0xe3,0xd8,0x61, - 0xe3,0x1f,0x15,0xbe,0x72,0x7e,0x1f,0x7a,0x1f,0x5a,0x80,0xcf,0x6c,0xd9,0x0e,0x40,0xaa,0x38,0x0f,0xa7, - 0x2c,0xba,0x35,0x54,0xd6,0x9c,0xe4,0x20,0xe5,0xb9,0x27,0x17,0x45,0x54,0xd6,0xca,0x02,0xc2,0x27,0x1d, - 0x2c,0x73,0xab,0x3e,0xb7,0xa6,0x6d,0xd7,0x61,0x72,0x62,0x5a,0x48,0x8a,0x55,0x0c,0x17,0xe3,0x52,0x17, - 0x55,0xbd,0x4e,0xcf,0x9c,0x03,0x32,0x33,0xa8,0x27,0x24,0x56,0x3b,0x09,0x51,0x6c,0xff,0x5f,0x8f,0x48, - 0x00,0x71,0x96,0x4b,0xe1,0x78,0xbe,0x4f,0x31,0xc3,0xf6,0x4e,0x4d,0x42,0x91,0x1f,0xef,0xd5,0x02,0xea, - 0x4e,0xb6,0x5f,0x31,0x25,0xdf,0x33,0x89,0x65,0x7b,0xdf,0x6e,0x63,0xa1,0x3f,0xe1,0x99,0x99,0x81,0x9f, - 0xfd,0xd0,0x42,0xc2,0x86,0xa7,0x16,0x73,0xbc,0xe1,0xb1,0x45,0x32,0x3f,0xde,0xb3,0x99,0x8f,0xb2,0xfc, - 0x12,0xc3,0xf9,0x5e,0x45,0xf4,0xed,0x7d,0x6a,0x09,0x89,0x1f,0xef,0x11,0xa6,0x9d,0x92,0x9f,0xe5,0x53, - 0x44,0xc8,0xf7,0x2a,0xe1,0xd8,0xde,0xaf,0x71,0x24,0xf3,0x27,0x78,0x16,0x64,0xce,0x85,0x62,0x78,0x83, - 0x57,0xc1,0x5b,0xe7,0xc2,0x71,0x90,0x3b,0x17,0x66,0xef,0x30,0xb6,0xd8,0x31,0x44,0x4e,0xa8,0xf4,0x6a, - 0x12,0x5a,0xb9,0xf8,0xaf,0xdb,0x39,0xac,0x63,0xd9,0xb0,0x83,0x90,0x7b,0x69,0xb6,0x98,0x46,0xca,0x1d, - 0x97,0x1d,0xb7,0x65,0x07,0xb0,0xef,0x36,0x28,0x2d,0xe7,0x24,0x4f,0x1c,0x2f,0xe4,0x9d,0x56,0xed,0x7a, - 0x3e,0xb2,0x81,0xbf,0x54,0x56,0x8f,0x3a,0xd8,0xe9,0x5e,0x78,0x40,0x48,0xfd,0x02,0x73,0xbe,0x9b,0x48, - 0x37,0x97,0x40,0xe7,0x5d,0x47,0xd8,0x59,0x66,0x43,0xab,0xea,0x7a,0xfa,0xd4,0x45,0x84,0x34,0x13,0x45, - 0x21,0x8c,0xb4,0xd8,0x1c,0x65,0x82,0x88,0xba,0x06,0x71,0x1f,0x1e,0x00,0xf3,0xcd,0x53,0x8d,0xab,0x1a, - 0xf3,0x71,0x6a,0xf3,0x24,0x4d,0x29,0xbe,0x4f,0xc2,0x9e,0xec,0xae,0x36,0xee,0xb3,0x6c,0x97,0xb5,0x1c, - 0xe9,0x9d,0x96,0x24,0xbd,0xc7,0x36,0x73,0xaf,0x6d,0xfe,0x56,0x4e,0xa7,0x36,0x6d,0xff,0xea,0xf2,0xa1, - 0x6b,0x16,0x30,0xf9,0x4c,0x2b,0x05,0x2a,0xbb,0xb8,0xf9,0x41,0x48,0x72,0xea,0x2b,0x1d,0x96,0x48,0xaa, - 0x64,0x86,0x2d,0xce,0x49,0x64,0xee,0x75,0x5c,0x12,0x39,0x7f,0xf7,0x62,0xbe,0x2e,0xdc,0x4e,0x14,0xf0, - 0x32,0x55,0x36,0x78,0x18,0x6e,0x5b,0xb3,0xbd,0x8b,0x88,0xaf,0x7b,0x16,0x73,0xae,0x03,0x93,0x4e,0xab, - 0xdf,0xee,0x95,0x24,0x9c,0xf6,0x2a,0xc4,0x24,0xcc,0x63,0xa4,0x67,0x8a,0xd3,0xf1,0x55,0xa3,0x72,0x24, - 0x08,0x7c,0x21,0x61,0x14,0x98,0x7c,0x76,0x08,0x38,0x45,0x2a,0xa6,0x77,0x1b,0xe2,0xc3,0xb1,0x78,0xd4, - 0xa1,0x85,0xeb,0x67,0xe2,0x89,0x68,0xf9,0x98,0x62,0x69,0x8e,0x2b,0xb9,0xcb,0xc2,0x96,0x50,0x5f,0xc3, - 0xb7,0x29,0x03,0x74,0x53,0xf3,0xb2,0xf5,0x0b,0xca,0x96,0xbe,0xe7,0xe7,0x06,0x57,0x93,0x11,0x0c,0x36, - 0xfe,0xf6,0x8c,0x60,0x52,0x6b,0xa9,0x20,0xaf,0x43,0x81,0x2a,0x76,0x3b,0x78,0xf5,0xb1,0xa0,0x4c,0x0c, - 0xc8,0xa3,0x33,0xb1,0x4f,0x0b,0x67,0x9b,0x2c,0x41,0x39,0x71,0x42,0xaf,0x46,0x89,0x9d,0x15,0xa5,0x03, - 0xbb,0x9a,0xc0,0x81,0xea,0x40,0x62,0x03,0xfc,0x94,0x99,0xc6,0x31,0x75,0xab,0x64,0x4e,0x74,0x65,0xa7, - 0xb4,0x44,0xff,0x83,0xb0,0x0d,0x40,0xe0,0x82,0x35,0x48,0xeb,0x98,0x43,0xd2,0x36,0x80,0x23,0x2d,0x99, - 0x68,0x63,0xe2,0xf7,0x40,0x15,0x8b,0x8b,0x04,0xd8,0x74,0x31,0x61,0x67,0xe2,0x59,0x88,0x23,0xda,0x6b, - 0x90,0x4f,0xe8,0x36,0x5b,0x83,0xa6,0x6b,0xe9,0xac,0x43,0xc9,0x51,0x32,0x48,0x78,0xe8,0xe2,0xc9,0xdd, - 0x8c,0x6d,0x67,0xfa,0x99,0x50,0x5f,0x2d,0xb8,0xcc,0x0e,0xe5,0xe7,0x6a,0x0d,0xb6,0x5a,0xdc,0xe3,0x77, - 0x3c,0x39,0x0b,0x7b,0xe0,0xb1,0x17,0x88,0x2d,0xe4,0xdb,0x0b,0xe0,0xc3,0x30,0xb9,0xb9,0x4c,0xce,0x1a, - 0x1f,0xbe,0x24,0x9a,0x85,0x12,0xe9,0xe6,0x43,0x7e,0x94,0x33,0x64,0x85,0x1a,0x23,0xee,0x16,0x1b,0xf9, - 0x79,0x83,0x9b,0x04,0x51,0x84,0x65,0xe0,0xbb,0x06,0x9b,0xb8,0xf8,0x0b,0xfd,0x59,0xfc,0xe2,0x25,0x45, - 0xe4,0xbd,0x7a,0xce,0xc3,0xd9,0xd0,0x4d,0x8d,0x45,0x94,0xb7,0x8e,0xb8,0x43,0xbc,0x9f,0xee,0x4c,0x5d, - 0xaa,0x7a,0x0b,0x24,0x4b,0x49,0x82,0xb8,0x0b,0xc8,0x36,0xb3,0x13,0x13,0x4e,0x2a,0x36,0x14,0xe7,0x1a, - 0x57,0x4c,0x48,0xef,0xca,0x25,0x13,0xe1,0x1b,0xf3,0xd7,0x4c,0x88,0xe0,0xa4,0x4c,0xa4,0x5f,0x9c,0xe7, - 0xad,0x6c,0x96,0xab,0x85,0x3d,0xdc,0xa6,0x6d,0xa3,0x04,0x2a,0xe4,0xdf,0x0a,0x59,0xac,0x3b,0x86,0x17, - 0x0f,0xe5,0xbc,0x05,0x5e,0xdb,0x0e,0xa5,0xf7,0x3e,0x18,0x02,0x5f,0x33,0xbb,0xb1,0x66,0xb9,0x62,0x38, - 0x89,0xe6,0x4a,0x4c,0xcd,0x87,0x3f,0xe6,0xbc,0x99,0x2f,0x82,0xd7,0xf2,0xd3,0x43,0x0e,0x4e,0x27,0xa8, - 0xdc,0xb2,0x21,0xa7,0xdb,0x6c,0x54,0x07,0x69,0x6b,0xd1,0x78,0x7e,0xa4,0xc4,0x3e,0x35,0x6c,0xd6,0x22, - 0x2d,0xeb,0xef,0xbf,0x12,0x14,0x25,0xea,0x27,0x33,0xb4,0x6e,0x7e,0x3c,0xa9,0x66,0xdb,0xa7,0x84,0xb7, - 0x00,0x60,0x7a,0x5e,0x43,0xc0,0x6d,0xa5,0x20,0x54,0x07,0x62,0xce,0xc9,0x00,0x11,0x91,0xb6,0x86,0x11, - 0xeb,0xda,0x08,0x04,0x78,0x91,0xc5,0x14,0x94,0xc1,0x6d,0xaf,0xe1,0xd3,0x85,0xc2,0x1f,0x37,0xb2,0x62, - 0x22,0x93,0xb7,0x86,0xb4,0xa2,0x73,0x23,0x2c,0x6f,0x61,0x73,0xbb,0xb9,0xa0,0xea,0xdd,0x8d,0xa0,0xea, - 0xdd,0xef,0x00,0x45,0x75,0xbe,0x0a,0x8a,0xd9,0x5d,0x01,0xb5,0xb0,0xab,0xa2,0x7b,0x5d,0xc3,0x13,0x53, - 0xb6,0x84,0x92,0x68,0xca,0x45,0x21,0x19,0x4b,0x81,0x68,0xf9,0xf0,0x39,0x80,0x8e,0xb6,0xcc,0x80,0x11, - 0xd3,0xb6,0x06,0x92,0x68,0xdb,0x00,0x45,0x32,0xb9,0x5e,0xed,0x36,0xf0,0x36,0x55,0x3b,0x23,0x57,0x07, - 0x9d,0x2b,0xb8,0x86,0x37,0xa1,0x6c,0x87,0x56,0xd2,0x94,0x87,0x55,0x36,0xa6,0xe4,0x6f,0x70,0xd6,0xb8, - 0xcd,0x0d,0x5b,0x9c,0x9f,0xaa,0x2f,0xc9,0x6b,0xfa,0xd6,0x3f,0x8b,0x63,0x6f,0x3f,0x67,0xe8,0x25,0xff, - 0x05,0x68,0xf8,0xdd,0xa1,0xd4,0x9b,0x7b,0x4b,0x7e,0xee,0x27,0x02,0xa1,0xfa,0xf2,0x07,0x8d,0xe1,0x35, - 0xfd,0x3d,0x63,0xd4,0xcd,0x4d,0x05,0x99,0x7f,0xd6,0x98,0x16,0x89,0x3f,0x67,0x5c,0x3b,0x3b,0x0c,0x3f, - 0x24,0xb6,0x80,0x63,0x04,0xc0,0xa0,0xa1,0x79,0x04,0x73,0x20,0x06,0x0b,0xe7,0xb4,0x17,0xc7,0xae,0x05, - 0x4b,0x96,0x6b,0xec,0x14,0x3a,0xe2,0x6b,0x65,0xf4,0x95,0x46,0xa8,0x54,0x2a,0x15,0xde,0x7f,0xa4,0x4d, - 0x8a,0x4f,0xaa,0x9e,0xb7,0xf3,0x5e,0xfa,0xee,0x58,0x7c,0x71,0xbc,0xc7,0x3f,0xb4,0xfe,0x1f,0x4c,0xd5, - 0xbd,0xf4,0x7e,0x2d,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0x79,0x77,0xdb,0x36,0x12,0xff,0x2a,0x0c, + 0xbb,0x5b,0x39,0x9b,0x58,0x96,0x8f,0xb8,0xb1,0xd7,0xf6,0x56,0xa7,0x2d,0x5b,0x92,0x75,0xf9,0xdc,0xb7, + 0x6f,0x1f,0x44,0x42,0x24,0x6c,0x5e,0xe6,0x21,0x59,0x69,0xfb,0xdd,0x17,0x07,0x0f,0x90,0x04,0x25,0x3a, + 0x6d,0xda,0xbe,0xbe,0xcd,0x1f,0x91,0x81,0x19,0xcc,0xfc,0x66,0x80,0x01,0x66,0x40,0xf2,0xe4,0x5d,0xeb, + 0xba,0x39,0x7d,0x18,0xb6,0x25,0xdd,0x37,0x8d,0xb3,0x93,0xf0,0x7f,0x08,0xd4,0xb3,0x13,0x13,0xfa,0x40, + 0x52,0x74,0xe0,0x7a,0xd0,0x3f,0x95,0x6f,0xa6,0x9d,0xed,0xcf,0xf2,0xd9,0x89,0x8f,0x7c,0x03,0x9e,0x9d, + 0xec,0x84,0xbf,0x94,0xc9,0x02,0x26,0x3c,0x95,0x7d,0x1d,0x9a,0x70,0x5b,0xb1,0x0d,0xdb,0x95,0x25,0xc5, + 0xb6,0x7c,0x68,0xe1,0x71,0xdf,0xd5,0xe8,0x3f,0x39,0xc5,0xba,0x40,0x70,0xe9,0xd8,0xae,0xcf,0xf1,0x2d, + 0x91,0xea,0xeb,0xa7,0x2a,0x5c,0x20,0x05,0x6e,0xd3,0xc6,0x47,0x64,0x21,0x1f,0x01,0x63,0xdb,0x53,0x80, + 0x01,0x4f,0x77,0xb1,0x08,0x03,0x59,0xcf,0x92,0x0b,0x8d,0x53,0xd9,0xf3,0x57,0x06,0xf4,0x74,0x08,0xb1, + 0x0c,0xdd,0x85,0xf3,0x53,0x79,0x16,0x58,0xaa,0x01,0xab,0x8a,0xe7,0x61,0x46,0x4f,0x71,0x91,0xe3,0x4b, + 0x9e,0xab,0xc4,0x84,0x27,0xd2,0xbf,0xc3,0x08,0xf8,0x0f,0x66,0xe3,0xcc,0x56,0x57,0x67,0x27,0x2a,0x5a, + 0x48,0x48,0x3d,0x95,0x81,0xe3,0xc8,0xac,0xb5,0xd8,0x56,0x0c,0x1b,0x3c,0xb3,0x86,0x62,0x00,0xcf,0x3b, + 0x95,0x2d,0xdb,0x47,0x73,0xa4,0x00,0x1f,0xd9,0x56,0x13,0xc3,0x06,0xc8,0x82,0xae,0x5c,0xc8,0x22,0x4b, + 0xc7,0x61,0xef,0x4f,0x12,0x74,0x5d,0xdb,0x3d,0x96,0x78,0xb2,0xf4,0xee,0x54,0xb2,0x02,0xc3,0x90,0xbe, + 0xff,0x3e,0xd5,0x5f,0xa5,0xbc,0xd2,0x2f,0x32,0xc6,0x80,0xe6,0x69,0x91,0xd1,0x18,0x59,0xfa,0x51,0x31, + 0x90,0xf2,0x5c,0x75,0x5c,0xb8,0xa0,0xde,0xd3,0x91,0x0a,0x07,0xbc,0x72,0xec,0x02,0x07,0x58,0x11,0x2e, + 0x13,0x7a,0x1e,0xd0,0xa0,0x7c,0xf6,0xd3,0x4f,0x69,0x65,0x21,0x41,0xfa,0xe5,0x17,0xec,0x1a,0x3c,0x00, + 0x3b,0x06,0x9b,0x13,0xfd,0x1f,0xf9,0x45,0x11,0x5b,0x4b,0x5c,0x48,0xfb,0x90,0xa9,0x31,0x57,0xab,0xc0, + 0x07,0xc7,0xc8,0xc4,0x12,0x77,0x1c,0x4b,0xfb,0xe7,0x0c,0x78,0xf0,0xf0,0xe0,0x23,0xba,0x6d,0x5c,0x8f, + 0x97,0xb5,0xab,0x73,0xcd,0xae,0xe3,0x7f,0x83,0xc9,0x8d,0xde,0xbe,0xd1,0xf0,0x5f,0x2d,0xd2,0xac,0x2f, + 0x9b,0xf5,0x07,0xfc,0xd3,0xb8,0xaf,0x2f,0xcc,0x0b,0xd2,0x71,0x7e,0x3f,0xee,0xdc,0x5d,0x8c,0xa7,0xb3, + 0xbd,0xc7,0x9a,0xba,0xd7,0x59,0x3d,0x8e,0x1a,0x8d,0xc7,0xf3,0x23,0xf4,0x38,0x69,0x5c,0xce,0xee,0x3a, + 0xd6,0xe3,0xed,0xa5,0xf1,0x70,0x37,0xfe,0xa4,0x28,0x86,0x31,0x24,0x03,0xee,0x1b,0x97,0xe3,0x76,0xe7, + 0x06,0x0e,0x5c,0xef,0x4e,0x6d,0x0f,0xb4,0xa7,0xfa,0xa8,0xa7,0x3c,0x34,0x94,0xfa,0x50,0xa9,0x37,0xd5, + 0xd1,0xe0,0xa0,0x3e,0xd8,0xeb,0x37,0x0f,0xb4,0xb1,0xf7,0x70,0x79,0xd4,0x1e,0xa8,0xf5,0xe1,0x43,0xbd, + 0x05,0xea,0x2d,0xe8,0xa8,0x37,0x7a,0x7f,0xf7,0xa5,0xf3,0x14,0xb8,0x9a,0x73,0x34,0x51,0xfa,0x17,0x9a, + 0xfa,0xc3,0xee,0xfe,0xed,0xfe,0xdc,0xbf,0x71,0x3e,0xc1,0x0b,0xad,0xdf,0xd9,0x75,0xdd,0xf3,0x36,0x08, + 0x0e,0x6f,0x2f,0x5a,0x7b,0x17,0xfd,0xd9,0xc5,0xa7,0x97,0xcb,0xeb,0xde,0x85,0x0b,0x3e,0xcc,0x9f,0xbf, + 0xcc,0xbc,0x87,0xb1,0xa7,0xf7,0x3f,0x3b,0xbd,0xa9,0x76,0xd3,0xd5,0x26,0xda,0x22,0xe8,0xf7,0xed,0x87, + 0xe5,0x07,0xd4,0x7f,0x98,0xba,0x87,0x23,0x7d,0xf0,0xd0,0x77,0x07,0x68,0xb0,0x5a,0x76,0x7b,0xc6,0xea, + 0xf6,0x4a,0x55,0x56,0xab,0xa1,0x67,0x2a,0x63,0x6f,0x75,0xf3,0xa9,0xf6,0xac,0x5d,0xf8,0xa3,0x51,0xb0, + 0x57,0x57,0x07,0x97,0x1d,0xa7,0xf5,0x5c,0xbf,0x3a,0xe8,0xee,0xf4,0xba,0x77,0xfd,0xd9,0x5e,0xdd,0xeb, + 0x36,0x94,0x97,0x1a,0x1a,0x9f,0xc3,0xd1,0xf9,0x70,0xfa,0x38,0xbf,0x3d,0x1c,0xb5,0x6b,0x1f,0xb4,0xd6, + 0x79,0x67,0xcf,0xb5,0xbd,0xf3,0xb6,0xd6,0x1f,0xbd,0x76,0xeb,0xba,0xf5,0x58,0x47,0xc3,0xc1,0xe7,0x83, + 0xc0,0x19,0xcf,0x6b,0x3b,0xd7,0x86,0xe3,0xf5,0x9a,0x0d,0x67,0x7f,0xf5,0x52,0x53,0x74,0xcd,0x6f,0xde, + 0xdc,0x3c,0xba,0xe3,0xe5,0xe1,0xa8,0x75,0xbd,0xdf,0xbe,0xbb,0x98,0xbc,0x74,0x8e,0x7c,0xe0,0x3e,0x82, + 0xc9,0xd5,0xe5,0x3d,0xbc,0x6c,0xa9,0xb3,0x91,0xe1,0xb5,0x6b,0x57,0xad,0xc3,0xcb,0xc1,0xce,0x95,0x3d, + 0xf6,0xce,0xf5,0xd7,0xfb,0xab,0xa6,0xd1,0xbc,0xba,0xb8,0xec,0xce,0x9f,0xa7,0xfa,0xb2,0x7f,0xa7,0xd7, + 0x0f,0xd5,0xc6,0xc4,0x36,0xc6,0xe8,0xe9,0xf9,0xf2,0x5a,0xdd,0x7d,0xbc,0x59,0x1c,0xad,0x46,0x47,0xd7, + 0xce,0xcb,0xec,0xc2,0x41,0xe0,0xe6,0x16,0xb4,0x67,0x8f,0xed,0x1f,0xfc,0x6e,0xf7,0xc9,0x6e,0x5c,0xdd, + 0xaf,0x3c,0xdb,0xdb,0x55,0x0e,0x6e,0x3f,0xc3,0x59,0xaf,0xad,0xce,0x16,0x7b,0x33,0xa5,0xef,0xb5,0x7f, + 0xd0,0x9e,0x82,0x86,0xba,0xb8,0x1f,0x4f,0x2e,0x0f,0x3a,0x1f,0x76,0x96,0x2f,0xdd,0xfb,0x7b,0xb7,0x7b, + 0xbe,0x34,0xef,0xf7,0xbf,0x2c,0x81,0xd2,0x6b,0xe9,0x70,0x70,0x7d,0xb4,0x7b,0xfd,0xd4,0x1b,0x5d,0xa9, + 0xbb,0x07,0xb7,0xfd,0x56,0xd3,0x7a,0xd0,0x9a,0xaf,0xb7,0x4f,0xdd,0xfd,0xc1,0x14,0xee,0x9a,0x13,0x7b, + 0xd8,0x3a,0x38,0x7a,0x3d,0x98,0xb8,0x78,0x71,0x1c,0xbd,0x0c,0xad,0x03,0x68,0x2f,0x9a,0x7d,0xba,0x7a, + 0xda,0x46,0x67,0xfa,0x3c,0x09,0x46,0x66,0xb3,0x89,0x57,0xa2,0xbe,0x4b,0x96,0xf8,0xdf,0xfc,0xad,0x0a, + 0xdd,0x9f,0x2a,0xef,0xe9,0xca,0xc6,0xbd,0x27,0xfa,0x1e,0xa1,0x2c,0xa0,0xeb,0x91,0x75,0xef,0xad,0x3c, + 0x1f,0x9a,0xdd,0x16,0x8e,0xa8,0x30,0x0c,0xff,0x45,0x47,0x45,0xfd,0x78,0xe0,0x07,0xa9,0x72,0x2c,0x55, + 0xf0,0x4f,0x6e,0x0c,0xee,0xae,0x30,0xb9,0x7b,0xa9,0x78,0x58,0xe2,0xb8,0xf2,0x7c,0xe0,0x07,0x5e,0x3a, + 0x4e,0x70,0xf8,0x58,0x50,0x09,0xc3,0x92,0xeb,0x47,0x96,0x4a,0xe2,0x90,0x6c,0x97,0xc7,0x24,0x72,0xb6, + 0xd9,0x60,0x26,0x68,0x42,0xff,0xae,0x02,0xa7,0x0a,0x2d,0x30,0x33,0xa0,0x8a,0x11,0x56,0x42,0x49,0x50, + 0xad,0x10,0x10,0x2a,0xf2,0x92,0x0e,0x39,0x0c,0xda,0xd0,0x7c,0x5e,0x84,0xa2,0xe0,0x28,0x77,0x6c,0x64, + 0xf9,0xd5,0xc4,0x2b,0x12,0x66,0x2c,0xd2,0x93,0xee,0x47,0x0e,0x56,0xb6,0x46,0x26,0x86,0x41,0x07,0x86, + 0xce,0x8e,0x77,0x8e,0xaf,0xb5,0x5e,0x83,0xfe,0x1d,0xea,0x50,0x4d,0x78,0x10,0x53,0xb8,0xf5,0xbe,0xd8, + 0x3e,0x8f,0x31,0x9a,0xb6,0x0a,0x33,0xf6,0x89,0x24,0x4d,0xe1,0xab,0xbf,0xc5,0x21,0xcd,0xee,0x77,0x6c, + 0xd7,0xc5,0x9b,0xbf,0x8a,0x2c,0x4d,0x8e,0xc0,0x46,0xed,0x48,0x7d,0xd8,0x8e,0x35,0x85,0xed,0x6e,0x64, + 0x53,0xda,0x13,0x4c,0xe6,0xbb,0x58,0x08,0xef,0x06,0x1f,0xcc,0xc8,0x72,0x99,0x05,0xbe,0x6f,0xc7,0xfb, + 0x35,0x6b,0xf1,0x27,0x48,0x85,0x75,0x6d,0xdb,0x81,0x8f,0x0f,0x41,0x88,0x97,0x26,0xc0,0x3e,0x5d,0xc0, + 0x29,0x98,0x91,0x53,0xa1,0xc2,0x9c,0x57,0x21,0xe7,0x06,0x3b,0x1b,0xf0,0x69,0x16,0x33,0x24,0xf4,0xd8, + 0x00,0xd6,0xae,0x62,0xed,0x53,0x2e,0x50,0x98,0x92,0x33,0xe9,0x57,0xc3,0xf1,0x5d,0xa4,0x69,0x38,0x6e, + 0x8a,0x01,0xc5,0x1c,0x31,0xa4,0xa8,0xe7,0x9b,0x81,0x4a,0x56,0x62,0x31,0x2c,0x8e,0x27,0x06,0x96,0xf4, + 0x7d,0x33,0x68,0x6c,0x6f,0x59,0x33,0x7d,0x8c,0x9e,0x4c,0x1f,0x6d,0x17,0xc0,0xc9,0xad,0x3c,0x4e,0x14, + 0xbf,0x14,0x4e,0xf4,0xfd,0xec,0x72,0xe0,0x37,0xcd,0x7d,0x2a,0x02,0x9f,0xee,0x96,0x13,0xf8,0x92,0xbf, + 0x72,0x70,0xe2,0xe6,0xe2,0x15,0x6c,0xcb,0x61,0x16,0x07,0x0c,0x63,0xe2,0x43,0xc7,0xc3,0x86,0x2e,0x80, + 0x11,0x90,0x14,0xd0,0x0d,0x20,0x49,0x5c,0x48,0x2c,0x1a,0x3c,0x03,0xcd,0xae,0xc2,0xd6,0x94,0x30,0xe1, + 0x5c,0x0e,0xcc,0xa0,0x11,0xc7,0x17,0x69,0x6c,0x23,0x8b,0x38,0x47,0x96,0xe6,0xb6,0x9b,0x65,0x4f,0xe3, + 0xe4,0x69,0x21,0x5c,0x2a,0x81,0x33,0xfd,0x4d,0xb8,0xe7,0xc0,0xf0,0x36,0x03,0xef,0x50,0xae,0xf2,0xc8, + 0x43,0x7e,0x31,0x74,0x4a,0x2c,0xc0,0x1e,0xc9,0xf6,0x0c,0x9c,0xd6,0xb9,0x99,0xd3,0x04,0x4f,0xbc,0x13, + 0x25,0x87,0x31,0xce,0x74,0xba,0x47,0xad,0xa2,0x8a,0xfb,0xc0,0xd7,0xab,0x73,0xc3,0xb6,0xdd,0xad,0x88, + 0xf7,0x96,0x10,0xa5,0x1d,0x69,0xef,0xd3,0x27,0xe9,0x1f,0xd2,0x6e,0xad,0x46,0x30,0xfc,0x3d,0x4a,0xff, + 0x72,0xda,0xf9,0xdc,0x2f,0xed,0x51,0x0b,0x27,0x94,0x92,0x89,0xac,0x53,0xb9,0x86,0x7f,0xc1,0xeb,0xa9, + 0x8c,0x45,0xca,0xe9,0xd1,0xb1,0x4f,0xab,0x56,0x60,0xce,0x20,0xe7,0x9c,0x5b,0x86,0x31,0xb7,0xff,0x0a, + 0xac,0x7c,0x97,0x4c,0xc7,0x62,0x9b,0x7a,0x78,0x8b,0x90,0x3f,0x4a,0xf8,0x08,0x81,0xaf,0xef,0xf1,0x8f, + 0xe4,0x95,0xf5,0x02,0x61,0xac,0x2e,0xfe,0x58,0x17,0x24,0x18,0x32,0xf6,0x8b,0xcf,0xa2,0x74,0xf4,0x72, + 0xfb,0xe6,0x09,0xf6,0x85,0x29,0xfd,0xe8,0x05,0x33,0x13,0xf9,0x49,0x2d,0x80,0xab,0x18,0x63,0x35,0x45, + 0x26,0x9c,0x86,0xac,0x84,0x13,0x41,0x43,0xc5,0x75,0x1c,0x1f,0xf3,0xc9,0x7e,0x4b,0x78,0x33,0x91,0xcf, + 0xdb,0xa9,0xe8,0x50,0x79,0x9e,0xd9,0xaf,0x2c,0x1a,0x08,0x77,0x9b,0xa5,0x0a,0x89,0x69,0x33,0xdb,0x36, + 0x20,0xb0,0xc8,0x0e,0xc0,0x09,0x8d,0x52,0x8a,0x38,0x66,0xe8,0xe4,0xa5,0x04,0x88,0xa2,0x48,0x08,0x30, + 0x1c,0x91,0x8e,0x98,0xc4,0x49,0x45,0x7a,0xf9,0xf4,0x0c,0xb8,0x16,0x3d,0xd3,0xc3,0x55,0x95,0x4f,0x21, + 0xe2,0x14,0xe8,0xe7,0x9f,0x25,0x01,0x95,0x45,0x30,0xd9,0xaf,0xf7,0xc5,0x18,0xbb,0xb8,0x96,0x75,0x2d, + 0xe8,0xf3,0x99,0x50,0xc6,0xf0,0x29,0x5e,0x34,0x1e,0x22,0xe2,0xc8,0x0c,0x89,0xc5,0xa4,0x79,0xd2,0x16, + 0xf3,0xf3,0xc2,0xd6,0x53,0x32,0x2b,0x19,0xd9,0xb9,0x75,0x97,0xf6,0x91,0x9f,0x41,0xc2,0x90,0x9e,0x8d, + 0xa1,0x06,0x0d,0x6f,0xa3,0x87,0xe3,0x96,0x01,0x2d,0xcd,0xd7,0xe3,0xb2,0x99,0x85,0x67,0x48,0xe5,0x23, + 0x54,0x3c,0x3c,0x5e,0x00,0x38,0xf2,0xa0,0x91,0x9e,0x2f,0xda,0xb5,0x9d,0x14,0x99,0xc2,0x15,0x79,0x4c, + 0x8c,0xaf,0x10,0x99,0x24,0x55,0xa7,0xea,0x48,0xe6,0xfe,0xdf,0x70,0x26,0x2b,0xc5,0x4b,0x34,0xb7,0x38, + 0x85,0x1b,0xfa,0x31,0x35,0x68,0x9d,0x82,0x82,0x29,0xa4,0x0d,0xe1,0xa2,0xe5,0xf7,0x28,0x40,0xd3,0x0a, + 0x1c,0xa1,0xff,0x96,0x4e,0x40,0x78,0x91,0xf1,0x5d,0xbe,0xbc,0xc7,0xf8,0xa1,0x0f,0xb9,0x98,0xde,0x62, + 0x8e,0x15,0x2b,0x6f,0x51,0xee,0x50,0x29,0x38,0x93,0xfe,0x23,0xd8,0xd9,0x14,0xec,0x0b,0xb7,0x78,0xfb, + 0x65,0xbe,0x27,0xb7,0x23,0x64,0x53,0xc5,0xf2,0x14,0xbf,0x68,0x39,0x45,0x73,0x39,0xc5,0x33,0x23,0x27, + 0xc9,0x3d,0x8b,0xe4,0x13,0xdb,0xa1,0x17,0x17,0xe1,0x39,0x5b,0x13,0x03,0xee,0xa0,0x57,0xa8,0x72,0x6b, + 0x9d,0x0d,0xca,0x0e,0xde,0x15,0x0f,0x9e,0x04,0x96,0x8b,0xbc,0xf5,0x43,0xf7,0x0a,0x87,0x7a,0x71,0xb4, + 0x46,0x23,0x77,0x98,0xb9,0x1b,0xcd,0x9e,0x47,0xa0,0xb3,0x46,0xa7,0xe3,0x85,0x77,0x0f,0xd9,0xc0,0x6b, + 0x9c,0x53,0xb6,0xe3,0x6d,0x81,0x44,0x48,0x2c,0x90,0x4f,0xa8,0xa2,0x4d,0x02,0x97,0x32,0x2d,0xe4,0x39, + 0x06,0xa0,0x3b,0xfb,0x16,0xe9,0xff,0x28,0xd1,0xb4,0xe5,0xeb,0xd0,0xbb,0xd0,0x00,0xf4,0x58,0x11,0x1b, + 0x80,0xb7,0x00,0x58,0x84,0x93,0x1f,0x5a,0x1a,0x2a,0xc9,0x0c,0x0b,0x90,0xd2,0xb5,0xc7,0x07,0x45,0x14, + 0xdd,0xd2,0x12,0xc2,0x67,0x15,0xac,0x0a,0x83,0xbf,0x30,0xb4,0x4d,0xdb,0x22,0xe3,0xd8,0xee,0x90,0xc4, + 0x2c,0xeb,0xae,0xc4,0x11,0xcf,0x82,0x3b,0x4f,0x2f,0x7f,0x2a,0xf5,0xd9,0x88,0x74,0x1a,0xc7,0x82,0xed, + 0xb7,0xb5,0xc8,0x0f,0xa0,0x27,0x32,0x29,0xec,0x2f,0xb6,0x29,0x66,0x28,0x6f,0xd4,0x34,0x1c,0xf2,0xed, + 0xad,0x5a,0x42,0xd5,0x12,0xdb,0x15,0x53,0x8a,0x2d,0xe3,0x58,0xca,0xdb,0x76,0x17,0x0f,0xfa,0x1d,0xe6, + 0x4c,0x0f,0x5c,0xf1,0xa4,0x85,0x84,0x35,0xb3,0x16,0x73,0xbc,0x61,0xda,0xa2,0x31,0xdf,0xde,0xb2,0xb9, + 0x8b,0x44,0x76,0xb1,0xee,0x62,0xab,0x22,0x7a,0x79,0x9b,0x3a,0x6c,0xc4,0xb7,0xb7,0xc8,0xc3,0xa9,0x9d, + 0x2b,0xb2,0x29,0x22,0x14,0x5b,0x95,0x70,0x94,0xb7,0x6b,0x12,0x8d,0xf9,0x1d,0x2c,0x0b,0x84,0x7b,0x21, + 0xeb,0x5e,0x63,0x55,0xf0,0xd6,0xbd,0x70,0x12,0x14,0xee,0x85,0xe2,0xf2,0xae,0x44,0xb9,0x16,0x19,0x31, + 0xc3,0xbf,0xba,0x8f,0x23,0xd7,0xfb,0xe3,0xca,0xb6,0x3c,0x96,0x35,0xe5,0x1b,0x5f,0xc4,0x91,0xc3,0x34, + 0x79,0x42,0x44,0xee,0x3a,0xc5,0x0e,0x1c,0xd8,0x2d,0x4c,0x2b,0xb8,0x46,0x65,0x77,0x3b,0x45,0x57,0x85, + 0xdb,0x8e,0x8b,0x4c,0xe0,0xae,0xa4,0xf4,0x3d,0x13,0xb9,0x5a,0x0d,0x6f,0x67,0xb1,0x5d,0x60,0x41,0xcb, + 0x9f,0x6c,0x72,0x09,0x54,0x95,0xcb,0x2c,0xc5,0xd0,0xea,0xaa,0x2a,0xbc,0x63,0x5a,0x03,0x93,0xb9,0x5c, + 0x88,0x52,0x0e,0x67,0x82,0x55,0xae,0x42,0x90,0x51,0x56,0xc1,0xda,0xe1,0xed,0x3c,0xad,0x6c,0x1b,0x54, + 0xd4,0x84,0xf6,0x63,0x4c,0xc7,0x59,0x4a,0xe5,0x7d,0x32,0x2d,0x49,0xd9,0xbb,0x43,0x6a,0xe5,0xb5,0x15, + 0x73,0xdf,0xa6,0xb5,0x50,0xc9,0x9a,0xd9,0x64,0xdc,0xa5,0xab,0x66,0xc6,0x5f,0xa2,0x6e,0x66,0x8c,0xe2, + 0xca,0x39,0x23,0xa4,0x54,0x64,0xa6,0xc6,0x6c,0xac,0x9e,0x73,0xda,0x4b,0x5a,0xd4,0x0a,0x5c,0x3c,0x1d, + 0xfc,0x32,0x2a,0x6d,0x62,0x7e,0x68,0xb1,0xcd,0x02,0x35,0x6f,0x77,0x42,0x4e,0x48,0xda,0x2b,0x39,0xdd, + 0x9b,0x4a,0x76,0x11,0x57,0xb9,0xa2,0x5d,0x28,0xbf,0xb8,0x6c,0x0f,0xfd,0xf6,0xd5,0x85,0x7b,0x3c,0xfe, + 0x6b,0x4b,0xf7,0x8c,0x80,0xdf,0xa8,0x78,0x67,0x52,0xbf,0x69,0xf9,0xbe,0x56,0x45,0xe1,0x84,0x7e,0x83, + 0x12,0x3e,0xb5,0xc9,0x14,0x16,0xf1,0x0c,0xc0,0x6f,0x5d,0xc6,0xf3,0xe7,0xbc,0xd0,0x23,0x0e,0xb2,0x0a, + 0xbd,0x31,0xc4,0xb4,0x8d,0x6b,0xba,0x78,0x3e,0xa9,0xe8,0xc2,0x13,0x15,0x53,0xcb,0xe0,0x53,0x91,0x9b, + 0x7d,0x34,0x93,0x75,0x59,0xcc,0x91,0x9e,0x2e,0x56,0x0b,0x17,0xc3,0xe3,0x24,0x17,0x82,0x8c,0x79,0x72, + 0xb7,0x1a,0x82,0x8b,0x89,0x0c,0x9c,0x01,0xf7,0x37,0x30,0xde,0x7a,0x55,0x91,0x11,0x36,0xb5,0x9d,0x96, + 0xbd,0xb4,0xd6,0x4a,0x11,0x5c,0x50,0x66,0xa4,0x34,0x6c,0x7c,0x58,0x9a,0x37,0x4e,0xd1,0xed,0xc7,0xff, + 0x93,0xb5,0xe2,0x64,0x8d,0xb9,0xf2,0x8f,0x4b,0xd7,0x52,0xbb,0x48,0x11,0xbc,0xbf,0x4a,0xca,0xb6,0xfe, + 0x71,0x48,0xea,0x79,0xed,0xba,0xf4,0xae,0xc9,0xbf,0x86,0x20,0x4a,0xed,0xf8,0xa7,0xbc,0xa5,0xd3,0x3a, + 0xee,0x3d,0x08,0xee,0xf1,0x21,0x27,0x8a,0x67,0x28,0xf1,0xe4,0x90,0xe7,0xce,0xe3,0xe2,0xc8,0xc5,0xe7, + 0x91,0xbe,0x79,0xf0,0x45,0x22,0x80,0x86,0xa3,0xb4,0xc6,0xc2,0xf0,0xe1,0x87,0xd8,0xba,0x88,0xb8,0xd9, + 0xb2,0x98,0x33,0x0f,0x8c,0x7b,0x7f,0xe3,0xed,0x56,0x71,0x83,0xb3,0x56,0xf1,0x99,0x9c,0xe7,0x21,0x55, + 0x38,0x1c,0xf7,0x17,0x9f,0x6b,0x3e,0x7c,0xf5,0x43,0x2f,0x90,0xf1,0x62,0x17,0x50,0x0a,0x17,0x0e,0xef, + 0xd6,0xf8,0x87,0x62,0x71,0xb0,0x41,0x4b,0xdb,0x15,0xe2,0x89,0x68,0xc5,0x98,0xe2,0xd1,0x14,0x57,0xd2, + 0x12,0x61,0x4b,0xa8,0x9b,0xf0,0xad,0x5b,0x01,0xaa,0xae,0x38,0x62,0xf9,0x8c,0x52,0xd2,0xf6,0xe2,0xb5, + 0x41,0xc5,0x08,0x9c,0x41,0xfa,0xdf,0xbe,0x22,0xc8,0xa8,0xdc,0x52,0xe0,0xcf,0x9b,0x60,0xc6,0x0e,0x3b, + 0x2f,0x3d,0x2d,0x48,0x88,0x01,0x39,0x78,0xbf,0x75,0x71,0xe0,0x94,0x59,0x25,0xa8,0xc0,0x4f,0x68,0xa3, + 0x97,0xc8,0x13,0xc7,0xac,0x63,0xd3,0x0b,0x38,0x98,0x59,0xd0,0x37,0x81,0xf7,0x2c,0x5c,0xc6,0x31,0xb5, + 0xd4,0x62,0x4e,0x64,0x89,0x97,0x34,0x47,0xff,0x95,0xb0,0x35,0xe0,0xc3,0x25,0xb9,0xb5,0xca,0x63,0x0e, + 0x49,0x65,0x00,0x47,0x52,0x84,0x68,0x63,0xe2,0xd7,0x40,0xcd,0x3d,0xa3,0xd5,0x6d,0xcf,0x27,0x6f,0x89, + 0x88,0x10,0x47,0xb4,0x4d,0x90,0x8f,0x1d,0x03,0x28,0x50,0xb7,0x0d,0x95,0x64,0x22,0x05,0x42,0x86,0x09, + 0x0f,0x3e,0xfe,0xa8,0x99,0xb1,0x6e,0xa1,0x9d,0x09,0x75,0x63,0xc0,0xfd,0x55,0x0e,0xf7,0xf8,0xad,0xa7, + 0x82,0x83,0x3d,0x70,0xc8,0x2b,0x75,0x1d,0xe4,0x9a,0x4b,0xe0,0xc2,0x70,0x71,0xd3,0x31,0x05,0x67,0x7c, + 0xf8,0xda,0xd4,0x3c,0x1c,0xb1,0xee,0xfa,0x66,0x8e,0x8c,0x50,0x62,0xc4,0xdd,0x21,0x3d,0x7f,0x5e,0xe7, + 0x26,0x4e,0x64,0x6e,0x19,0xba,0xb6,0x46,0x36,0x2e,0xfa,0x8a,0xeb,0x3c,0x7e,0x15,0x29,0x43,0xa4,0x39, + 0xf9,0xdb,0x2f,0xcb,0x26,0xcc,0xcb,0xa5,0x3d,0x6e,0xf9,0x4e,0xd6,0xd9,0x7f,0xa6,0x37,0x33,0x30,0xbc, + 0x09,0x74,0x17,0x5c,0x32,0x9d,0xe0,0x66,0x84,0x32,0xdb,0x54,0x22,0x25,0x09,0xe0,0xac,0x1c,0x39,0xab, + 0x97,0x22,0xc3,0xf3,0x2f,0xd0,0x1c,0x91,0xca,0x5d,0x26,0xf1,0xb2,0x44,0xfa,0x13,0x45,0x3c,0x02,0x03, + 0xf8,0x02,0xcd,0x3d,0xe0,0x97,0x31,0x98,0x0c,0xce,0xa9,0xa2,0x12,0x7f,0x6f,0x15,0xdc,0xab,0xb9,0x9c, + 0x8a,0xf0,0x05,0xdd,0x4d,0x2a,0xd8,0xca,0xcb,0xa8,0xc8,0xbe,0xa7,0x5b,0x94,0x36,0x18,0x76,0xf4,0xb9, + 0xc7,0xba,0x9b,0x48,0x0e,0x54,0xc8,0x5f,0x0a,0x59,0x2c,0x3b,0x86,0x17,0x77,0x15,0xbc,0x74,0x9a,0xab, + 0x28,0xb3,0xe5,0xa3,0x07,0x81,0xab,0xe8,0xbd,0x58,0x32,0xbf,0x1d,0x51,0x12,0x0e,0xc4,0x98,0x5a,0x0c, + 0x7f,0x42,0x79,0x85,0x05,0x66,0x2e,0xf8,0x1d,0x64,0x79,0xd9,0xe8,0xe7,0xf3,0x61,0x64,0xf5,0xda,0xad, + 0xfa,0x30,0xab,0x2d,0xea,0x2f,0xb7,0xfc,0x63,0x29,0xf9,0xd7,0xed,0x12,0x14,0x55,0x6c,0x27,0x51,0x94, + 0x57,0x3f,0x99,0xd6,0xc5,0xfa,0x31,0xe1,0x2d,0x00,0x88,0x9c,0x4d,0x08,0xa8,0xae,0x0c,0x84,0xfa,0x90, + 0x6d,0xe8,0x02,0x10,0x11,0xa9,0x34,0x8c,0x58,0xd6,0x5a,0x20,0xc0,0x89,0x34,0x66,0xa0,0x0c,0xef,0xfa, + 0x2d,0x17,0x9f,0xc2,0xee,0xa4,0x25,0xf2,0x09,0x4f,0x2e,0x0d,0x29,0x25,0x73,0x2d,0x2c,0x67,0x69,0x52, + 0xbd,0x85,0xa0,0x9a,0xbd,0xb5,0xa0,0x9a,0xbd,0xaf,0x00,0x85,0x65,0x6e,0x04,0x45,0xf4,0xa6,0x40,0x2d, + 0xcd,0x3a,0x2b,0x0d,0x72,0x78,0x62,0x4a,0x49,0x28,0x89,0xa4,0x42,0x14,0x9c,0xb2,0x0c,0x88,0x8e,0x0b, + 0x5f,0x02,0x68,0x29,0x2b,0x01,0x8c,0x98,0x56,0x1a,0x48,0x22,0x6d,0x0d,0x14,0x4e,0x65,0x3e,0xda,0x4d, + 0xe0,0xac,0x8b,0x76,0x42,0xae,0x0f,0xbb,0x57,0x30,0x87,0x37,0xa1,0x94,0xd9,0x1b,0x39,0x39,0x45,0x48, + 0x79,0x55,0x52,0x71,0xed,0x98,0xe3,0xd6,0xd7,0x54,0x8f,0x7f,0xaa,0x94,0xaf,0x28,0x9f,0xce,0x7f,0x83, + 0x43,0x1e,0x13,0xcc,0xd1,0x6b,0xf1,0x93,0x82,0xf0,0x23,0x27,0xae,0xec,0x71,0x56,0xf4,0xea,0x94,0x39, + 0x62,0xe6,0xf2,0x5f,0x4f,0x85,0xbf,0xd9,0x8f,0xa7,0xa2,0x44,0xf9,0x96,0x91,0xe9,0x37,0x54,0xd9,0x21, + 0xf1,0xb7,0x53,0xb9,0xeb,0xd7,0xf0,0x93,0x4d,0x03,0x58,0x5a,0x00,0x34,0xec,0x9a,0x27,0xb0,0x00,0xac, + 0x53,0x3e,0xc3,0x65,0x8e,0x67,0x1b,0xb0,0x6a,0xd8,0xda,0x96,0xdc,0x65,0xdf,0x85,0xa2,0x2f,0xd8,0x43, + 0xd5,0x6a,0x55,0x7e,0xff,0x11,0xe7,0x7f,0xae,0x5f,0x77,0x9c,0xad,0xf7,0xdc,0x17,0x9e,0xec,0xdb,0xce, + 0x1d,0xfa,0x49,0xeb,0xff,0x00,0xe0,0x9d,0xad,0xd8,0xe8,0x3a,0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index 2efa269..9b76e20 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2244 +4,2299 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0xc6,0xb2,0x2e,0xfa,0x57, - 0x24,0x5c,0x1f,0x19,0xd8,0x6a,0xd1,0x92,0x93,0xec,0xb3,0x03,0x1a,0xe1,0xf5,0x98,0x38,0xf1,0x14,0x4f, - 0x49,0xb6,0xa2,0xcd,0x05,0x91,0xa0,0x84,0x98,0x04,0x18,0x00,0xd4,0x10,0x91,0xf7,0xb7,0xbf,0xfa,0xaa, - 0x7a,0x02,0x08,0x39,0xc9,0x59,0x67,0xbd,0xe5,0x65,0x11,0xe8,0x6e,0xf4,0x58,0x5d,0x5d,0x73,0xef,0xce, - 0x56,0xc5,0xa4,0xc9,0xcb,0x22,0xcc,0x54,0x13,0xdd,0x04,0xe5,0xe9,0x6f,0xd9,0xa4,0x09,0x92,0xa4,0xb9, - 0x5e,0x66,0xe5,0x6c,0x27,0xbb,0x5a,0x96,0x55,0x53,0xef,0xed,0x6d,0xe5,0x2c,0xca,0xe9,0x6a,0x9e,0x8d, - 0xe4,0x67,0xa0,0xcb,0x25,0x4d,0x18,0xc5,0x81,0xa9,0xd3,0x15,0x9e,0x66,0xb3,0xbc,0xc8,0xf6,0xf6,0xe4, - 0x77,0x90,0x2e,0xa6,0x23,0x79,0x0c,0x8f,0x4f,0xa8,0xdd,0xf8,0xb6,0x76,0x47,0xfa,0x77,0x90,0x5e,0xe5, - 0xa5,0xd4,0x9e,0xb9,0xe7,0x4d,0xd8,0x9c,0xe7,0xb5,0xb2,0x43,0x88,0x6e,0xaa,0xac,0x59,0x55,0xc5,0x8e, - 0x1b,0x54,0x74,0x63,0x9e,0x77,0x9a,0xb0,0x8a,0x6e,0xf2,0x59,0x58,0x1c,0x57,0x27,0x91,0x2e,0x88,0x67, - 0xd3,0xf7,0xe1,0x45,0x5a,0xed,0xe4,0x09,0x92,0x92,0x1b,0x9d,0x16,0xdf,0x6c,0x54,0x3e,0x8d,0x2b,0x35, - 0x2f,0xd3,0x69,0x36,0x8d,0x77,0x8f,0x36,0x43,0xfd,0x69,0x86,0x4f,0x27,0xe9,0x7c,0x1e,0xe6,0xa6,0x06, - 0x95,0x2b,0xf7,0xdc,0x44,0xf4,0x22,0x9f,0x25,0xbb,0x87,0x2e,0x63,0x83,0x66,0x8a,0xe4,0xc6,0x56,0xd4, - 0x0c,0x16,0x09,0x4d,0xfe,0x60,0x92,0x14,0xf4,0x77,0x99,0x04,0x81,0x6a,0xc2,0x43,0x1a,0xdc,0xb1,0xbf, - 0x36,0xaa,0x88,0x6e,0xdc,0x34,0x17,0xe1,0x51,0xb4,0x51,0xdd,0xfc,0x60,0x55,0x67,0x3b,0x75,0x53,0xe5, - 0x34,0x93,0x43,0x3b,0xee,0x0a,0xb3,0x80,0x46,0x9b,0xa4,0xc8,0x2e,0x77,0x52,0x7a,0x55,0x45,0x52,0x86, - 0xe9,0x60,0x59,0x95,0x4d,0x89,0x09,0x1f,0x54,0xd9,0xef,0xab,0xac,0x6e,0xa8,0xd3,0xa6,0x57,0xe8,0x6f, - 0x93,0x15,0xd3,0xb0,0x50,0x5e,0x41,0x19,0x95,0xcd,0xa1,0xb7,0x62,0xa3,0xa7,0x2d,0xbc,0x1f,0xa9,0x92, - 0x7e,0xbe,0x88,0x54,0x4a,0x3f,0x5f,0x45,0x0a,0xdd,0xfc,0x67,0xa4,0x26,0x49,0x15,0xd6,0xd1,0x70,0x32, - 0x78,0xc8,0xeb,0x96,0xaa,0xc9,0x60,0x52,0x65,0x69,0x93,0x25,0xfe,0x32,0xe9,0x66,0x2b,0x9a,0xcd,0x45, - 0x56,0x9d,0x65,0x61,0xad,0xb2,0x88,0xc6,0x38,0x19,0x3c,0x4e,0x8b,0x49,0x36,0x47,0x03,0x54,0xb5,0x79, - 0x7d,0x5f,0x7e,0xca,0x0a,0xa4,0x7d,0x89,0xb4,0xbc,0x76,0x85,0x0e,0x91,0x40,0xcb,0xd2,0x57,0xfb,0x9b, - 0xaa,0x5c,0xe4,0x75,0x86,0x6c,0x4a,0x45,0xe5,0xf5,0x92,0xba,0x32,0xc5,0x77,0xd4,0x61,0x37,0xbf,0x13, - 0xf7,0x3c,0x20,0x40,0x4d,0x57,0xf3,0x26,0x99,0xfc,0xad,0x09,0x97,0x16,0x83,0x63,0x01,0xec,0x9d,0x87, - 0x55,0x95,0x5e,0x9f,0x10,0x7c,0x27,0x2b,0x01,0x1a,0x6a,0xde,0x7e,0x90,0x7b,0x5d,0x2c,0x56,0xf3,0xf9, - 0x6e,0x92,0x64,0x3d,0x3b,0x2e,0x73,0x5f,0x94,0x3d,0x4d,0x3c,0xd3,0x99,0xb7,0xb5,0x92,0xca,0x16,0xc7, - 0x0e,0xb0,0x6d,0x5c,0x94,0xf9,0x74,0xe7,0x10,0xcf,0x11,0xa5,0x9b,0x16,0x77,0x6d,0x8b,0x7b,0x7b,0x61, - 0x96,0x1c,0x67,0x27,0x91,0xc2,0xa0,0xa2,0x59,0x59,0x85,0x02,0xbe,0x04,0xd0,0x49,0x36,0x98,0x67,0xc5, - 0x59,0x73,0x3e,0x2c,0x1e,0xe4,0xc3,0x62,0x7f,0x3f,0x6a,0xa4,0x51,0x54,0xaf,0xb2,0xe3,0xe2,0x44,0x15, - 0xb4,0x86,0xc3,0x6c,0x4e,0x93,0x64,0xbe,0x2c,0x77,0x72,0xda,0x3a,0xd1,0x6b,0x6e,0xc8,0x03,0xc0,0xf3, - 0xb4,0x7e,0x7d,0x59,0xd0,0xfa,0x2c,0xb3,0xaa,0xb9,0xd6,0x9d,0x57,0x65,0xb4,0xb7,0xd7,0xae,0xb4,0x3c, - 0x51,0x25,0x55,0xca,0x40,0x57,0x0b,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0x56,0xc9,0x56,0xa5,0x4d,0xf9,0x8e, - 0xd6,0xa6,0x38,0x1b,0xba,0x85,0xbd,0xc9,0x6b,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xd1,0x6a,0x36,0xcb,0xaa, - 0x78,0x1b,0x5a,0xda,0x6b,0x27,0xc5,0x3a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xac,0xac,0x16,0x4f, - 0xd2,0x26,0xed,0xab,0x6b,0x55,0x08,0xbe,0x9b,0xba,0xc9,0x35,0xc5,0xf7,0xf6,0x32,0x9a,0x94,0xba,0x01, - 0x04,0x7b,0xc9,0x9b,0x76,0x07,0x3f,0xe6,0xd9,0xe5,0x5f,0xac,0xd8,0xfb,0x6a,0x6f,0xcf,0x7b,0xa1,0x6d, - 0x82,0x5a,0x46,0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x9d,0x0d,0x4e,0xf5,0x57,0xe6,0xc9,0xef,0x98,0xf7,0x19, - 0xfa,0x26,0x53,0xdb,0xd7,0xa5,0x9a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x56,0x8b,0xd3,0xfe,0x69,0x2e,0x38, - 0xa7,0x53,0x5c,0xd6,0x32,0x26,0x84,0x5a,0x7f,0x30,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85,0xbf, - 0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0x67,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1,0xe7, - 0xe5,0xe9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80,0x11, - 0xf6,0xf6,0x68,0x97,0x0f,0x96,0xf9,0x52,0xbe,0xfc,0xf0,0xf6,0xc5,0xbb,0x2c,0xad,0x26,0xe7,0x6f,0xd2, - 0x2a,0x5d,0xd4,0x7f,0x11,0x16,0x3a,0x5f,0x75,0x60,0xad,0x93,0x2b,0xcb,0x9a,0x16,0xd3,0xb4,0x9a,0x3e, - 0xaa,0xca,0xcb,0x3a,0xab,0x9e,0x16,0x17,0xf1,0xd6,0xf9,0x1a,0x7a,0x2d,0xd9,0x65,0x2b,0xd2,0x8b,0xfc, - 0x2c,0x6d,0xca,0x6a,0xbd,0x0e,0xde,0x66,0xe9,0xa4,0x79,0x95,0x36,0xf9,0x45,0x46,0x5d,0x49,0x6c,0x16, - 0xf6,0xe6,0x74,0x35,0x69,0x68,0x6c,0x7d,0x9d,0xbd,0xcc,0x8b,0x69,0x79,0xd9,0x9f,0x37,0x2d,0x27,0xab, - 0x45,0x56,0x34,0x84,0x84,0xcb,0xea,0x69,0x3a,0x39,0x8f,0x53,0xc5,0x07,0x85,0xed,0xde,0x4e,0x16,0xb6, - 0x4e,0xfb,0x46,0x55,0x3d,0x04,0x0d,0x8e,0xf7,0x1e,0xdc,0xda,0x8c,0xf8,0xdc,0xcf,0x98,0x3a,0x00,0x45, - 0xc2,0xaf,0xcd,0xc6,0x61,0x3c,0xa2,0x04,0x2a,0x46,0x7b,0x69,0x75,0xc6,0x3d,0xa9,0x0d,0xfa,0xab,0x08, - 0xfd,0x55,0x84,0xfe,0xd2,0xd0,0x66,0x49,0x25,0xe6,0x2c,0x2d,0x36,0x4a,0x8e,0xcc,0xb8,0x7b,0x80,0xe8, - 0x02,0x29,0x75,0xd6,0x66,0x71,0xbf,0x41,0x5d,0x24,0x05,0x75,0x74,0x9b,0x96,0x6a,0x46,0x75,0x88,0x8f, - 0xe3,0x66,0x43,0x47,0xd6,0x46,0xd1,0x6e,0xeb,0x85,0x21,0x9c,0xea,0xcb,0x79,0x3a,0xc9,0xc2,0x7b,0xff, - 0xf9,0xb5,0xfe,0xc7,0x3d,0x15,0x04,0x91,0x4b,0xa2,0x94,0x3b,0x9c,0xb4,0xd9,0xb4,0xcf,0xb5,0xce,0xa9, - 0xe6,0x50,0x67,0xbb,0x50,0x97,0xd2,0xa2,0xa9,0xb7,0x53,0x05,0x32,0x83,0xb1,0x45,0xd8,0x9d,0xab,0x08, - 0x73,0x48,0x13,0x56,0xd8,0xb9,0xa3,0x79,0xe3,0xa9,0xf6,0xa7,0xce,0x92,0x58,0x83,0x74,0xb9,0x9c,0x5f, - 0xf3,0x68,0xb7,0xbb,0x69,0x97,0xda,0x1b,0xf4,0xee,0x6e,0x36,0x98,0x94,0x04,0xe0,0x15,0x41,0x59,0x59, - 0xf5,0xce,0x5f,0xab,0xc4,0xc0,0x60,0x70,0xe0,0xbc,0xbe,0x74,0xec,0xdb,0xbe,0x39,0xe8,0x1c,0xd8,0x38, - 0x29,0x91,0x4a,0xc0,0xbf,0xd5,0x62,0xd8,0xd0,0xf1,0x3a,0x00,0x9d,0xf1,0x8c,0xe8,0xc1,0xe6,0xc5,0xd3, - 0xfe,0x65,0x1d,0xd4,0xf3,0x7c,0x42,0xf5,0x10,0x04,0xc8,0x63,0x78,0xa8,0x0e,0x23,0xaa,0x11,0x83,0x1a, - 0x9b,0xfe,0x44,0x4c,0xa6,0x36,0x9b,0xbf,0x45,0x8c,0x80,0x4c,0x36,0x74,0x4c,0x0d,0x62,0x13,0xef,0x79, - 0xd1,0x64,0xd5,0x24,0x5b,0xd2,0x68,0xe9,0x5c,0xd4,0x14,0x60,0xcc,0x24,0xa2,0xaa,0xb2,0x7a,0x49,0x93, - 0x91,0xc9,0xeb,0xc6,0xd2,0x78,0xff,0x14,0x1a,0xef,0xbe,0xd0,0x78,0x47,0xff,0x2d,0x44,0xde,0xd1,0xbf, - 0x08,0xd4,0xb7,0xa9,0xc9,0xd6,0x6c,0x6d,0x9f,0x0a,0x4c,0x5b,0x94,0x9a,0xda,0xbb,0x59,0x55,0xf3,0xd8, - 0xc1,0xc0,0xe1,0xc9,0x46,0xb9,0xb7,0xa3,0x93,0x28,0x52,0x5e,0xe1,0x5c,0xb5,0x06,0xa4,0x6e,0x16,0x59, - 0x73,0x5e,0x4e,0xe3,0xe0,0x2c,0x6b,0x82,0x0d,0xe8,0xc6,0x81,0xa4,0x10,0x89,0x22,0x0f,0x44,0x0a,0xbc, - 0x28,0x2f,0xb3,0xea,0x71,0x5a,0x13,0x96,0x90,0x29,0x4c,0x8e,0x6b,0x25,0xc7,0x07,0x11,0x2a,0x89,0x21, - 0x0d,0x69,0xe4,0xe5,0xfc,0x22,0xa3,0x2e,0x0f,0x01,0xd0,0x5b,0x33,0x65,0x06,0x37,0xd0,0x68,0x28,0xf4, - 0x07,0xd9,0x0c,0x56,0x45,0x7d,0x9e,0xcf,0x1a,0x42,0xdc,0xb3,0xd5,0x7c,0x96,0xcf,0xe7,0xd9,0x54,0xa1, - 0x52,0x60,0x9b,0x6c,0x1a,0xd1,0x8e,0xed,0xab,0x51,0x26,0xfb,0x96,0x2a,0x97,0xab,0xfa,0xfc,0xf6,0xfa, - 0x86,0x8d,0xd9,0x4a,0x11,0x6d,0xbc,0x41,0x73,0x9e,0x31,0xfc,0x70,0x27,0xa8,0x31,0xf3,0xe4,0xe3,0xa2, - 0xd2,0x36,0x74,0x1c,0x4c,0xb3,0x79,0xd6,0x64,0x81,0xe2,0xa9,0x53,0xc1,0x39,0x01,0x29,0xfd,0x94,0x4b, - 0x34,0x5f,0x07,0x27,0xaa,0x05,0xf0,0x6e,0x89,0x89,0x24,0x4c,0x3c,0x84,0xe5,0x30,0x19,0x8f,0x4e,0x4f, - 0x51,0x68,0xd6,0xab,0x58,0xaf,0x09,0x7b,0x9a,0x55,0xca,0x14,0xd6,0x9a,0x90,0x17,0xed,0xe9,0xa8,0xd5, - 0x99,0x65,0x59,0xa3,0x13,0xcb,0x15,0xff,0x4d,0x9b,0xc9,0xf9,0x5f,0xef,0x01,0x90,0xe6,0xe7,0xfa,0x50, - 0xf5,0xf5,0x41,0x4d,0x41,0xae,0x15,0xba,0x2b,0x6e,0x9b,0x57,0x7f,0x63,0x77,0x01,0x15,0xed,0x96,0x03, - 0x8f,0x4e,0x91,0xb3,0xbb,0x9d,0x72,0x1c,0x3c,0x2e,0x69,0xcd,0x8b,0xe6,0xe0,0x3d,0x75,0x3e,0x38,0x89, - 0x00,0xfd,0xdd,0xc4,0xa4,0x11,0xc2,0x36,0xf7,0x37,0x19,0xef,0xb1,0x9b,0x76,0xc9,0x38,0x00,0x62,0xcc, - 0x27,0x29,0x3a,0x71,0xef,0xea,0xe0,0xf2,0xf2,0xf2,0x80,0xa6,0x71,0x71,0x40,0xa3,0xca,0x8a,0x49,0x49, - 0x3c,0x27,0xed,0x83,0x49,0x72,0x93,0x4e,0xd3,0x25,0x41,0x5a,0x1c,0xf6,0x1d,0xa9,0x3f,0xbf,0x7c,0xf1, - 0x5d,0xd3,0x2c,0xdf,0xca,0x4c,0x8d,0xb0,0xbf,0xff,0x45,0xac,0x78,0x4f,0x49,0x9a,0xf5,0x49,0x56,0x13, - 0xf5,0x10,0x4a,0x21,0x62,0x02,0x09,0xb6,0xaa,0xb4,0xa8,0xd1,0xaa,0xae,0x20,0x3e,0xee,0x3d,0x21,0x70, - 0xb6,0xb5,0x7b,0x8f,0x45,0x77,0xd4,0x32,0x23,0x4d,0x24,0x78,0xf4,0xa5,0x4d,0xeb,0xbc,0x0a,0xc1,0x64, - 0x5f,0x41,0x98,0xb9,0xa2,0x44,0x6f,0xd1,0xcb,0x28,0x8b,0x3b,0x95,0x69,0x02,0x77,0x64,0x68,0x5a,0xce, - 0xef,0x50,0x3e,0xc8,0x0f,0x2b,0xf4,0xf4,0x4f,0x27,0x76,0x38,0x39,0x4f,0xab,0x3a,0x6b,0x92,0x55,0x33, - 0x3b,0xf8,0x57,0x00,0xb0,0x31,0x7c,0x06,0x6d,0x33,0xae,0x5c,0x88,0xd7,0xfe,0x3a,0x7f,0xab,0xcb,0x62, - 0xab,0x8a,0xef,0xdf,0xbd,0x7e,0x35,0x10,0x04,0x99,0xcf,0xae,0xc1,0x69,0xc5,0xd9,0xe6,0xc4,0x9f,0x61, - 0x8d,0x8e,0x8f,0xfd,0xdd,0x00,0x8e,0x6d,0x0b,0xab,0x46,0x4d,0x75,0x7d,0x93,0x25,0x5c,0xe3,0x12,0xad, - 0xe0,0x00,0x9b,0x60,0x2f,0xe1,0x93,0x8d,0x39,0x59,0x51,0x7b,0xbe,0xc8,0xca,0x55,0x13,0x1f,0xaa,0xab, - 0xba,0x9a,0x3d,0x2e,0xcb,0x4f,0x79,0xf6,0x2a,0x5d,0x64,0x71,0xf0,0xf3,0xbb,0xb7,0xcf,0x0e,0xde,0xbf, - 0xfe,0xe1,0xe9,0xab,0x80,0xf3,0xbe,0x23,0xac,0x90,0x55,0x3a,0xef,0xc0,0xcf,0x5d,0xa4,0x57,0x7a,0x69, - 0x5f,0x30,0x12,0x8a,0x0f,0x8e,0xd4,0x45,0x3a,0xcf,0x69,0x5f,0x65,0x44,0x49,0x36,0xab,0x3e,0x3a,0x75, - 0x27,0xfb,0x26,0xb9,0x7f,0x78,0x48,0x27,0xee,0x83,0x2f,0x0e,0x0f,0x37,0x9b,0xe1,0x64,0x70,0xce,0x2d, - 0x10,0x9c,0x4f,0xca,0xc5,0x82,0xa8,0xe3,0x9b,0x87,0x13,0x60,0xc7,0x78,0x6b,0xea,0xd4,0x4e,0x43,0xa4, - 0xd4,0x3d,0x22,0x62,0x72,0x7a,0xfe,0xc7,0xbd,0x7f,0x04,0x9b,0x3f,0x47,0x68,0x6d,0x24,0x62,0x5b,0x03, - 0x0a,0xb9,0xf9,0xdb,0x38,0xa8,0xf5,0xb9,0xc1,0x2e,0x75,0xd4,0xc2,0x1f,0x7f,0x26,0x2a,0xc0,0x26,0xaf, - 0x78,0x8b,0xdf,0x4e,0x5f,0xd9,0x3e,0x65,0xae,0x2e,0xc1,0x72,0x44,0x51,0x37,0x7b,0x7b,0x15,0x81,0xdd, - 0x87,0xe5,0xd2,0x9c,0x69,0xc4,0x68,0x34,0xed,0x14,0xc6,0x30,0x0d,0x51,0x91,0x4a,0xe6,0x84,0x25,0x56, - 0xd4,0xcf,0x3f,0x23,0x1d,0x5c,0xe7,0x14,0x76,0xfb,0xd7,0x72,0xe4,0x1f,0x99,0x33,0xff,0x0b,0x7d,0xe6, - 0x7f,0x29,0x9c,0xf7,0xd1,0x21,0x58,0xef,0xcf,0x51,0xf3,0xf2,0x3b,0x38,0x6d,0xca,0xb4,0xf5,0x32,0x38, - 0xa5,0xe7,0x50,0x12,0x68,0x0f,0x53,0x55,0x5f,0xf5,0x4f,0x87,0x23,0xb5,0x88,0x18,0xd1,0xe7,0x74,0xe8, - 0xe1,0xfe,0xb9,0x88,0xb7,0x66,0x74,0xda,0x03,0x9f,0x2b,0x1c,0xfb,0x7a,0x8d,0x86,0x95,0x8f,0x69,0x66, - 0x11,0x24,0x90,0x3c,0x17,0xd3,0x2e,0xee,0xe5,0x61,0x2f,0x99,0x74,0x6d,0xe3,0x45,0x75,0x9e,0x04,0x65, - 0x01,0xea,0xed,0x9a,0xf8,0xa6,0x26,0xa3,0xbd,0x5b,0x9c,0x11,0x80,0x5d,0x24,0xbb,0x47,0x43,0x6c,0xc1, - 0x1e,0x5e,0x48,0x06,0x45,0x94,0x9b,0x1e,0xee,0xcf,0x4f,0xca,0x05,0x01,0xac,0xae,0x91,0x68,0xc4,0xcb, - 0xbc,0x39,0x7f,0x5c,0x65,0x53,0x6a,0x3f,0x4f,0xe7,0x75,0x90,0x17,0x3b,0xcb,0xf5,0x9a,0xd0,0xd0,0x80, - 0x10,0x0d,0x4d,0x46,0x28,0x3d,0xe9,0xfd,0x5c,0x3a,0x04,0xc9,0x22,0x77,0xe2,0x50,0x2d,0x07,0x65,0x41, - 0x18,0xfa,0x8c,0xe8,0x08,0x6f,0xda,0x68,0xb3,0x73,0x8e,0xde,0xe6,0xad,0x0c,0xc0,0x6a,0xba,0x22,0x72, - 0x9c,0x27,0x6e,0x91,0xc8,0xdb,0x80,0xa0,0xa0,0x2a,0x68,0x97,0x53,0x07,0x03,0x75,0x66,0x52,0x97,0x69, - 0x5d,0x5f,0x96,0xd5,0x14,0xa9,0xc3,0xe9,0xe0,0x21,0xa5,0x95,0x55,0xfe,0x07,0xef,0xc9,0x24,0x78,0x94, - 0xd6,0xf9,0x64,0x27,0xd8,0x5f,0x85,0x8b,0x7d,0x3a,0x97,0xf6,0xcf,0xa2,0x0d,0x4d,0x0a,0x35,0xbc,0x24, - 0x42,0xc4,0x23,0xbf,0x3c,0xc0,0x54,0xa5,0x8c,0x93,0x3a,0xb1,0x64,0xec,0x6b,0x1f,0xde,0x65,0x15,0x4d, - 0x47,0xfe,0x07,0x91,0xb9,0x6a,0x97,0x00,0x6b,0x39,0x30,0xbd,0xcf,0xcc,0x93,0x5a,0x1e,0x9f,0x9f,0xf8, - 0x83,0x41,0x6b,0x04,0xea,0x5f,0xd2,0x06,0x58,0x32,0x91,0x7d,0x0d,0xc4,0x43,0x63,0xb8,0xc0,0x0e,0x80, - 0x6c,0x6b,0x39,0xa8,0x19,0x15,0xad,0xd7,0x4b,0x4b,0x6b,0x11,0xfe,0xdf,0xdb,0x3b,0xd4,0xdf,0xd8,0x24, - 0xa2,0xcb,0xa6,0xd9,0xd5,0x6b,0x5a,0xd4,0x19,0x64,0x02,0x41,0x14,0xc9,0x0c,0xd1,0x38,0x09,0x9d,0x3c, - 0x9c,0xcf,0x0d,0x22,0x16,0x8c,0x28,0xeb,0x36,0x4a,0x69,0xb8,0xbd,0xd9,0x38,0x0f,0x58,0x6e,0x55,0x25, - 0x37,0x4c,0x69,0x64,0xb6,0x31,0x00,0x1d,0xb1,0x01,0x40,0x66,0xe0,0x90,0xdb,0x19,0x23,0xd7,0xa9,0xd8, - 0x3d,0xbe,0xa7,0xb2,0x4a,0x46,0x12,0x1f,0xdd,0xbf,0xff,0x45,0xe2,0x46,0x36,0xba,0x7f,0xf8,0x65,0x6c, - 0x5e,0x74,0x19,0x14,0xdf,0x2a,0x17,0xbc,0x2a,0x77,0x34,0xdc,0x07,0xf6,0x03,0xae,0x58,0x6f,0x98,0xb8, - 0x50,0xc4,0x05,0xcd,0xf2,0x33,0x22,0x91,0x0c,0x4b,0xb0,0xdc,0x0c,0x73,0x6c,0x33,0x42,0x3e,0x8a,0xe0, - 0x92,0x06,0xb4,0x11,0xd0,0xca,0xaa,0xaa,0xac,0xfc,0xb5,0x98,0x87,0x93,0x30,0x78,0x95,0x35,0x04,0x2e, - 0x9f,0x76,0x9e,0x22,0x37,0x50,0x99,0xe2,0x29,0x58,0x46,0xf6,0xe3,0xdb,0xc0,0x92,0xbf,0xd6,0xe9,0x3b, - 0xb4,0x8b,0x82,0x7d,0xbb,0xea,0xfb,0xc1,0xa2,0xde,0xc9,0xae,0x26,0x59,0x06,0xd2,0x86,0xea,0x0c,0x9e, - 0x3e,0x7e,0xfd,0xea,0xd5,0xc3,0x47,0xaf,0xdf,0xbe,0x7f,0xfa,0x24,0x68,0xd5,0x5e,0x0d,0xfa,0xa4,0x18, - 0xa1,0x5e,0xca,0x6b,0xe0,0x2c,0x62,0x63,0xc6,0x09,0x01,0x61,0x67,0x1b,0xba,0x1d,0x18,0x81,0x1d,0x6c, - 0x1f,0x8b,0xa3,0x6b,0x86,0xae,0xb0,0x9b,0x1e,0xc5,0xc2,0x44,0x0c,0xc7,0x04,0x6e,0xd3,0x63,0xc9,0x76, - 0x27,0xe6,0x49,0x32,0xe6,0x1d,0x11,0xd0,0x79,0xaf,0x37,0xb0,0x64,0x32,0xec,0x00,0x8d,0x1b,0x3c,0x3f, - 0xed,0xf0,0xb7,0x56,0xb4,0x35,0x23,0x40,0x99,0x68,0x64,0x05,0x04,0x13,0x68,0x5c,0xef,0x71,0x34,0x23, - 0x8b,0xd6,0x9a,0x13,0xac,0x6b,0xa7,0x2d,0x5a,0xbd,0x4c,0x4e,0xa8,0xce,0x88,0xa9,0xcb,0xcb,0x6e,0x5a, - 0x82,0x9d,0xd7,0x06,0x48,0x26,0x2a,0x96,0xad,0xa4,0x0e,0xc8,0x6a,0x12,0x43,0xe4,0xcb,0x01,0x4e,0xea, - 0x6d,0xb0,0x8e,0x9a,0x73,0x5a,0x0e,0xe2,0x5d,0x7b,0x99,0xf2,0xb2,0x78,0x52,0x5e,0x32,0x5a,0x7b,0xa3, - 0x71,0xd9,0xde,0xde,0x72,0x90,0x4e,0xa7,0x4f,0x2f,0x40,0x5e,0xe4,0x35,0x8d,0x9f,0x46,0x12,0x18,0x4c, - 0x47,0x50,0xd0,0xf3,0x4d,0xa4,0x6e,0xa9,0xfc,0xc3,0xb2,0x5b,0xf5,0x8a,0x53,0xdc,0xd3,0x9f,0xb6,0xd5, - 0xae,0x02,0x73,0x34,0x71,0xba,0x08,0x96,0x1f,0xb8,0x57,0x30,0x2a,0xcc,0x4f,0x32,0x43,0xe6,0x9f,0x65, - 0x4b,0x9e,0xf3,0xf4,0x94,0x0e,0x39,0x42,0x85,0x90,0x0b,0x6a,0xc8,0xc5,0x02,0xf9,0x6b,0x1e,0xce,0x24, - 0x59,0x61,0x3d,0xe9,0xa4,0x9c,0xfd,0x8d,0xb3,0x9b,0x4e,0xe5,0x5b,0x28,0x0b,0x7c,0xa2,0xb9,0xf9,0x81, - 0xec,0xf4,0x41,0x9b,0x60,0x1b,0x16,0x1a,0x2d,0xec,0xed,0xe5,0x7b,0x7b,0xbb,0x79,0x68,0xde,0xa3,0x51, - 0x43,0xe4,0x6c,0xa0,0x01,0x6b,0x67,0x96,0x12,0x8a,0x9c,0xee,0x00,0x78,0x76,0xa4,0xc0,0x0e,0xe8,0x63, - 0xda,0xb5,0xe6,0x03,0x65,0x5a,0x10,0x0c,0x50,0x58,0x2d,0x53,0x01,0xfa,0x36,0x2c,0xfe,0xfa,0x68,0x8e, - 0x6e,0x1f,0x8d,0x22,0x66,0x49,0x46,0x94,0xf2,0x91,0xc9,0x58,0x07,0xdc,0xbb,0x55,0x28,0xa5,0xb6,0xd8, - 0xff,0x44,0xd2,0x05,0xce,0x92,0xb8,0x1d,0x27,0x54,0x93,0x21,0x25,0x94,0x01,0x02,0x6b,0x80,0x31,0x27, - 0x85,0x6c,0x18,0x91,0x7a,0x54,0xde,0xe6,0x49,0x72,0x95,0xfd,0x3d,0x51,0x8d,0x69,0x87,0x99,0x8d,0x0f, - 0x6f,0x9f,0x3f,0x2e,0x17,0x54,0x13,0x41,0x65,0x98,0x79,0xd2,0xbb,0xff,0xfa,0xf2,0xf0,0xde,0x59,0xae, - 0x82,0xff,0xeb,0x8b,0xf4,0xfe,0xeb,0x8b,0x87,0x9c,0x18,0xb7,0x12,0xef,0x7f,0x79,0xef,0x4c,0x05,0x77, - 0xda,0x69,0x8f,0xb9,0xa0,0x6a,0x27,0x1e,0xa2,0xe0,0x7e,0x2b,0xed,0xab,0x47,0x5c,0xf0,0xb8,0x9d,0xf8, - 0x84,0x13,0x4f,0x82,0xc8,0xd3,0xfd,0x7d,0x06,0xdc,0x08,0x23,0xec,0x36,0x46,0xe3,0x9a,0xf1,0xaa,0x96, - 0xa0,0x9c,0x8a,0x08,0x84,0x65,0xa3,0x35,0x44,0x94,0x90,0xf7,0x30,0x66,0x4d,0x44,0xa5,0x1a,0x8f,0xc5, - 0xe2,0xd2,0x7a,0xc1,0x8f,0x4f,0x86,0xb9,0xc5,0x9f,0x4d,0x67,0x71,0xfb,0xb4,0x5c,0xe0,0x60,0x0d,0x77, - 0xc8,0x6c,0x7a,0xd8,0xec,0x27,0xc1,0x31,0x0d,0x45,0xf9,0xe9,0x44,0x80,0x69,0xb5,0x57,0xde,0x47,0x86, - 0x83,0xf7,0x1a,0x88,0xb6,0x81,0x19,0x4b,0x50,0x27,0xe5,0xf3,0x77,0xaf,0x4d,0x17,0xe3,0xdc,0x67,0x02, - 0x59,0xce,0xb5,0xcd,0xe1,0x41,0xad,0x0a,0xc9,0x0e,0x21,0xe7,0x68,0x3f,0x48,0x82,0x7d,0xd6,0xb0,0x41, - 0x14,0x01,0x82,0x3b,0x1d,0xfc,0x56,0xe6,0x45,0x18,0xec,0xd1,0x24,0xeb,0x99,0x2b,0x51,0xd1,0x7e,0x12, - 0x1e,0x1c,0x41,0xdd,0xe1,0x48,0x95,0x51,0x10,0x8d,0xe8,0x4f,0x8c,0xb2,0xfb,0x65,0xf4,0xe7,0x00,0xd7, - 0x22,0xf0,0x8f,0x83,0x14,0xd4,0x6c,0x90,0xfa,0x64,0x1d,0xbd,0x9b,0x03,0x47,0x84,0x4b,0x5e,0x02,0x9f, - 0x40,0x2a,0xc8,0x9a,0xf4,0x0c,0x3f,0x57,0xcb,0x9c,0x80,0x9d,0x9e,0x66,0x84,0xf0,0xc0,0x70,0x09,0xff, - 0x94,0xcf,0x0e,0x16,0xe5,0x34,0x9f,0xe5,0xd9,0xf4,0xa0,0xce,0x09,0x2d,0x4a,0xda,0xaa,0xd8,0x4a,0x9d, - 0xa7,0x75,0x63,0xcb,0xe2,0xbd,0x9c,0x98,0x3e,0x10,0x77,0x09,0xee,0xfb,0x92,0x0e,0x72,0xb4,0x40,0x28, - 0xf5,0xea,0xfa,0xa0,0xdb,0xd1,0x2a,0x23,0x9e,0x9e,0x8e,0x53,0x3c,0xd1,0x31,0x75,0x90,0xce,0x1a,0x7e, - 0x03,0x31,0x7b,0x40,0x63,0x23,0x4a,0xe7,0xe4,0x16,0xb6,0x82,0xc5,0x80,0xb4,0xc1,0x4b,0xe2,0x6c,0x9c, - 0x3e,0x3e,0x23,0xae,0xdd,0xad,0xfa,0xa0,0x26,0x06,0xb4,0x09,0x83,0x5f,0x0b,0x82,0x91,0x0e,0xf7,0x5d, - 0xfa,0xcb,0x40,0xbb,0x4e,0xd1,0xe6,0x1f,0x40,0x1c,0x8f,0xcf,0x56,0xa7,0x34,0xdf,0xe1,0x21,0xa1,0x9d, - 0xa8,0x7d,0x56,0xab,0x62,0xab,0x54,0xb9,0x7f,0x44,0x00,0x21,0x87,0x67,0x4a,0x47,0x38,0xa1,0x5e,0x5b, - 0x71,0x13,0x7d,0x93,0x1c,0xea,0xdd,0x33,0x44,0x66,0x02,0x52,0xe2,0x60,0xc2,0x04,0x08,0x93,0x02,0x23, - 0xfe,0x66,0x84,0x3f,0xf1,0xf1,0x49,0x04,0x0c,0x45,0x53,0x18,0x1e,0x17,0x27,0x51,0x6c,0x73,0xf6,0x03, - 0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xeb,0x50,0xe2,0xcd,0xde,0x6d,0xb4,0xd5,0xc8,0xd7,0x03, - 0x38,0x7d,0x8c,0x35,0x3c,0xc8,0xac,0xf8,0x91,0x77,0x20,0x0d,0xe0,0x61,0x43,0xed,0x9c,0xae,0x68,0x07, - 0x05,0xe7,0xb4,0x84,0x01,0x6c,0x09,0x9a,0x24,0x1f,0xe0,0x05,0xdb,0xee,0x96,0x22,0x37,0x78,0x8a,0xa5, - 0x98,0x62,0x61,0xe0,0xa4,0x9c,0xd3,0xbb,0x79,0x1c,0xb9,0x47,0x87,0xb1,0x62,0xd1,0x74,0xc4,0xc4,0xd5, - 0x00,0x3c,0xf1,0x39,0xfd,0xa8,0x9a,0xf1,0x4c,0x8c,0xb6,0xf0,0x30,0x32,0x0f,0xbe,0xde,0x64,0xe4,0xbe, - 0x4c,0x6b,0x94,0xc5,0xcf,0x48,0x7e,0xbc,0x72,0xff,0xa7,0xd5,0x00,0x78,0x28,0xdd,0x08,0x1e,0x15,0xe6, - 0x0e,0x7d,0xa4,0x1f,0xb5,0x4c,0x9b,0x73,0xce,0x0f,0xee,0x61,0xf1,0x28,0x55,0x27,0x0c,0x20,0x14,0x7a, - 0x08,0xcb,0x8f,0x91,0x4b,0x44,0xa9,0x7d,0xf7,0x2a,0x82,0x78,0x5a,0xab,0xe4,0x5e,0xb8,0xa8,0xf3,0x6c, - 0x4d,0x13,0x04,0xb2,0x2d,0xba,0x97,0x0f,0x1a,0x48,0x3b,0x9d,0xa6,0x0d,0xe0,0xff,0x10,0xd0,0x8f,0x4d, - 0x6e,0x94,0x67,0xda,0xf0,0xe2,0xe9,0x3c,0xc3,0x5b,0x18,0xa4,0x81,0x3d,0x27,0x69,0x8d,0x34,0x2f,0x3e, - 0x30,0x3b,0x50,0xaf,0x85,0x93,0x3e,0x18,0xca,0x41,0xa0,0x80,0x71,0x5d,0x41,0xe8,0x8f,0xfe,0xc4,0x85, - 0xb3,0x1b,0x31,0xf3,0xcf,0x54,0xaa,0x79,0x01,0x44,0x63,0x3e,0x38,0x11,0x0f,0x9b,0x0d,0xe1,0xc9,0x2d, - 0xcd,0xe2,0xee,0xe1,0xe7,0xcf,0x68,0x4f,0xe7,0xa3,0xb5,0x1a,0x0b,0x22,0xc5,0x68,0x97,0x27,0x81,0x74, - 0x68,0x07,0x68,0x8a,0x78,0xe5,0x7a,0x27,0xa5,0xbe,0x14,0x4c,0xda,0xec,0x60,0x66,0xd3,0x09,0xd0,0xc2, - 0x46,0xa0,0x3a,0x78,0xf8,0xe8,0xf1,0x93,0xa7,0xcf,0xbe,0xfd,0xee,0xf9,0xf7,0x3f,0xbc,0x78,0xf9,0xea, - 0xf5,0x9b,0x1f,0xdf,0xbe,0x7b,0xff,0xe1,0xe3,0x4f,0x3f,0xff,0xf2,0xef,0xf4,0x74,0x42,0xec,0xfc,0xd9, - 0x79,0xfe,0xdb,0xa7,0xf9,0xa2,0x28,0x97,0xbf,0x57,0x75,0xb3,0xba,0xb8,0xbc,0xba,0xfe,0xe3,0xf0,0xe8, - 0xfe,0x17,0x5f,0x7e,0xf5,0xcf,0xff,0xfe,0xd7,0xd7,0xfb,0xf7,0x92,0x60,0x58,0x38,0x59,0xb4,0x23,0x3c, - 0x94,0x97,0x2a,0xa4,0xc1,0x57,0xad,0x24,0x2c,0x62,0x12,0x3c,0x97,0x7e,0x3d,0x36,0xdd,0x32,0x9c,0x52, - 0x2f,0x92,0x32,0x6a,0xb5,0x06,0x24,0x4c,0xa2,0xa7,0x3d,0x83,0x30,0x86,0xa0,0xad,0x4e,0x0e,0x61,0x5f, - 0x33,0x2c,0x2d,0xf4,0xac,0x6b,0x9c,0x5e,0x93,0x84,0x4e,0x14,0x55,0xff,0x17,0x11,0x4e,0xe9,0x7e,0x32, - 0x31,0xb9,0xff,0xfc,0x62,0xaf,0xf9,0xe6,0x9b,0x7f,0x1d,0x50,0xc6,0x3f,0xfe,0x15,0x31,0xba,0x09,0xf3, - 0x44,0x3e,0x7e,0x4c,0xbd,0xa5,0x22,0xf5,0x7e,0x32,0xf8,0xef,0xaf,0xa2,0xe8,0x9b,0xfb,0x5f,0x7d,0xa5, - 0x09,0x76,0x8c,0xae,0x18,0x36,0x49,0xf3,0xe0,0xc1,0xbf,0xd6,0xb9,0x39,0x8e,0xfe,0x97,0x11,0xc8,0xcd, - 0x65,0x95,0xb7,0x94,0xf7,0x86,0x6a,0x23,0x64,0x75,0x23,0xd6,0x1e,0x74,0xda,0xd7,0x5a,0x1b,0xc2,0x07, - 0x66,0x0f,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x6d,0x40,0x80,0xb9,0xb7,0xa7,0x3f,0x31,0x27,0x15,0x7d, - 0x87,0xf1,0xf0,0xd9,0x5d,0x00,0x33,0x7f,0xfb,0xf2,0xbd,0x95,0xde,0x2a,0x0f,0xb2,0x73,0xef,0x5b,0xec, - 0x3f,0xfa,0x30,0x6f,0x15,0x28,0xbd,0x02,0x53,0x16,0xd0,0x50,0x91,0x12,0x82,0x0b,0x02,0xf2,0xd4,0xe5, - 0xd5,0xd9,0x64,0x55,0x41,0xea,0xed,0x76,0x21,0xe3,0xee,0xa4,0xd6,0x67,0xfc,0x70,0x87,0x0e,0x79,0x05, - 0xe6,0x32,0xde,0x3a,0x9d,0x92,0xce,0x47,0x83,0x05,0xf3,0x59,0x18,0xc2,0xdb,0xec,0xec,0xe9,0xd5,0x32, - 0x0c,0xc2,0xff,0xac,0x87,0xbf,0xfe,0x5a,0xff,0x23,0x0a,0x69,0x4a,0x88,0x7c,0x4b,0xc2,0xe3,0xff,0x0c, - 0x4f,0xfe,0x11,0x05,0x4e,0xe9,0xd3,0x10,0x7f,0xb8,0x3d,0x57,0xc7,0x5f,0x9c,0x88,0x7c,0x02,0x8d,0x2f, - 0xca,0x8b,0xb6,0x11,0x04,0xef,0x2e,0x5e,0x14,0x5a,0x0b,0x02,0x35,0xcc,0xd8,0xa0,0x28,0x2f,0xc3,0xe8, - 0xe0,0x5f,0xff,0xfc,0x32,0xfb,0x8a,0xa8,0xe9,0xb8,0xbb,0x68,0x90,0x39,0xb5,0xc7,0xd1,0x52,0x93,0x6e, - 0xb7,0x43,0x1f,0xfc,0x0d,0xf2,0x58,0x77,0xea,0x9c,0xc0,0x67,0x0e,0x69,0xf1,0xf1,0x89,0x4f,0x80,0xfa, - 0x1a,0x48,0xaa,0xa0,0x5f,0x5f,0xdd,0xaa,0x40,0x16,0xe8,0xc6,0x6a,0xd6,0x58,0xe6,0x21,0x9a,0x35,0x56, - 0xae,0xb7,0x0b,0x0b,0x25,0x74,0x70,0x04,0x09,0x83,0x6b,0x89,0xcb,0x27,0x5b,0x13,0x67,0xbe,0x22,0x22, - 0x12,0x44,0x66,0x27,0x49,0xf3,0x7b,0xad,0x8a,0x34,0xc5,0x91,0xb4,0xa9,0x4c,0x4b,0xdc,0xfa,0x35,0x78, - 0xb6,0x02,0x96,0xcc,0x6d,0x88,0x01,0xa5,0x57,0x62,0x11,0xff,0x87,0x7a,0x2c,0x98,0x17,0x7e,0x86,0x9f, - 0x65,0x54,0xf0,0x7c,0xa6,0xb9,0xbf,0x6c,0x1a,0x46,0x5d,0xc3,0xbf,0xa3,0xaf,0x45,0x42,0x0c,0x0b,0x3c, - 0x6b,0xfa,0x47,0xaf,0x47,0x10,0x10,0xd3,0xef,0x2d,0x3c,0x82,0x67,0xfa,0x97,0x81,0x8d,0x3a,0x4d,0xb5, - 0x74,0x6e,0x77,0xa2,0x85,0x31,0xcc,0x67,0xd1,0x43,0xb2,0x0a,0x6d,0xb6,0xd2,0x72,0x1a,0x65,0x45,0xbd, - 0x4e,0xe8,0xcb,0x9a,0x3e,0x91,0x05,0x27,0x10,0x35,0xb2,0x50,0xd8,0xe6,0x42,0x5f,0xd3,0xd1,0x5c,0xf9, - 0xb5,0x18,0xf3,0x43,0x9b,0x32,0x10,0x95,0x84,0xae,0xd4,0xca,0xfe,0xb5,0x64,0xf3,0xa4,0x9d,0x8e,0x37, - 0x9f,0x69,0xb8,0x4d,0xc1,0xda,0xa3,0x65,0x00,0x85,0x8d,0x86,0x7c,0x75,0x03,0x2d,0xaf,0x91,0xdd,0xdb, - 0x96,0x9b,0x93,0x0d,0x94,0xe1,0x03,0xad,0xda,0x5b,0xaf,0x6b,0xf3,0x18,0x81,0x45,0x6c,0xcb,0x1b,0x9a, - 0xf6,0xec,0x36,0x66,0x52,0xe4,0x81,0xde,0x7b,0x27,0x45,0x78,0x57,0x2a,0xbe,0x51,0x3d,0x35,0xa5,0xf4, - 0x4c,0x47,0x8c,0x54,0x08,0xfb,0x3c,0xc3,0xec,0x02,0xd0,0x9d,0x32,0xdb,0xb6,0xd4,0x4a,0x51,0xde,0xfb, - 0xe7,0xda,0xa6,0x95,0x75,0x1a,0x79,0x66,0xa4,0x9a,0xbf,0xa5,0xba,0xf8,0x0c,0x3b,0x6a,0x26,0xc4,0x2e, - 0x52,0xd1,0x22,0x71,0xe8,0x34,0x67,0x8c,0xb1,0xd9,0xe6,0xa4,0xfe,0x82,0xc0,0xc0,0x12,0x32,0xe1,0x6e, - 0xb6,0x5e,0xc3,0x70,0x63,0xfc,0xf8,0xe1,0xab,0xc7,0x4f,0x5f,0x8c,0xc7,0xff,0x03,0xf1,0x83,0xa9,0xed, - 0xde,0x7f,0xc2,0xe3,0xf4,0xe0,0x8f,0x13,0xfc,0xf9,0x75,0xfa,0xeb,0xfe,0xaf,0x07,0xbf,0x0e,0x4e,0xfe, - 0x11,0x47,0xa3,0x5f,0xef,0xfd,0x7a,0xcf,0xd0,0x7e,0xd9,0xff,0x48,0xbe,0xe1,0x30,0xe3,0xc8,0x33,0x18, - 0xfa,0xf5,0xde,0xbe,0xd0,0xcc,0xfb,0x20,0x40,0x1b,0x9f,0x22,0xbe,0xb7,0x2f,0xb4,0xee,0x9f,0x4c,0x4e, - 0xdb,0x3a,0xa7,0x45,0xaa,0x65,0x9b,0xa2,0xc7,0x48,0x33,0xd9,0x3a,0x33,0x02,0x31,0xea,0x0d,0xf6,0x43, - 0xff,0x73,0xe2,0x74,0x89,0x91,0xf1,0x53,0x62,0x58,0x31,0xb5,0xc8,0x2c,0x37,0xe9,0xd0,0x8f,0x78,0x66, - 0xd3,0x7f,0x0b,0x1f,0x42,0x92,0x69,0x85,0x89,0xbb,0x9e,0x86,0xd5,0x52,0x45,0x90,0x6a,0x8a,0xc0,0x89, - 0xc8,0x0b,0x3a,0xe6,0x89,0xf0,0xde,0x59,0xac,0xea,0x66,0xe7,0x34,0xdb,0x49,0xad,0x6d,0xd4,0x20,0xd0, - 0x16,0x27,0x43,0xee,0xb5,0x96,0x0c,0x26,0xbd,0xda,0x2c,0xcc,0x15,0x4d,0x90,0x7c,0x50,0x24,0xf8,0x60, - 0xd8,0xce,0x86,0x18,0x2d,0xad,0x81,0x90,0x42,0xf3,0xc8,0x55,0xe5,0xbc,0x1f,0x6d,0x1a,0xe4,0x08,0x0e, - 0x43,0x7f,0xd1,0x3e,0x1e,0xbb,0xc8,0xbc,0xa3,0x4f,0xd1,0x06,0x14,0x5c,0x8d,0x96,0xd9,0xba,0x14,0x9c, - 0x5a,0x75,0xb9,0xaa,0x26,0x99,0xff,0x15,0x5a,0x32,0x4c,0xde,0x4d,0x83,0x13,0x83,0x4d,0x87,0xaa,0x16, - 0x2a,0xca,0x12,0x9c,0xaa,0x72,0xaa,0x30,0xfc,0xdc,0x7a,0x52,0xfd,0x8d,0xbd,0xb1,0xd3,0x83,0xa2,0x8c, - 0xe1,0x18,0xcb,0x1d,0x1b,0xd8,0x8e,0x41,0xf1,0xd9,0x6d,0xe1,0x76,0x5f,0x87,0x1e,0x6d,0xe6,0xff,0x92, - 0xbb,0x43,0x03,0x07,0x86,0x8f,0xab,0xac,0xdf,0x7d,0xa1,0x1f,0x18,0xb3,0x5e,0x7b,0xd7,0xf5,0x1a,0xa3, - 0x63,0xcb,0x57,0xcf,0xe8,0xb1,0x5b,0x52,0x84,0x5e,0x46,0x14,0xb6,0x69,0xef,0x4a,0xc3,0x73,0xb5,0x2b, - 0xf1,0xcd,0xd7,0xb7,0xcc,0x0b,0xd6,0xeb,0x6d,0x7b,0x5d,0x4a,0xab,0xaf,0x17,0xa7,0xe5,0xbc,0x9d,0x76, - 0x5a,0x96,0xf3,0x2c,0x2d,0x7a,0xed,0xd7,0xff,0x77,0x2c,0xde,0x45,0xc4,0xc6,0x46,0xb6,0xe7,0x45,0xaf, - 0xc1,0xbb,0xa1,0xa2,0xd9,0x12,0x82,0xad,0xef,0x42,0xcb,0x41,0x39,0xea,0xf8,0x9b,0xe4,0x70,0x6f,0xef, - 0x25,0xd1,0xf8,0x83,0xd9,0xbc,0x84,0xd1,0x17,0x6b,0xd3,0x89,0x65,0xad,0x9f,0xe5,0x05,0x13,0xc0,0x5e, - 0xad,0x75,0xa7,0xeb,0xd4,0xf3,0x51,0x10,0xf4,0x78,0xb0,0x8c,0xba,0x32,0x3f,0x11,0x83,0xdf,0x8f,0x62, - 0xdb,0x05,0x57,0xeb,0xa4,0xb7,0xaf,0x4e,0x8c,0x4d,0x2c,0x4d,0xfa,0x8a,0x3a,0x36,0xca,0x88,0x32,0xb5, - 0x5f,0xad,0xb4,0x25,0xa4,0xb5,0xbc,0xd4,0x26,0xf0,0xc2,0xe6,0x87,0xa2,0x3e,0xa8,0x12,0x2b,0xc4,0x52, - 0x90,0x73,0x26,0x87,0xc3,0xfc,0x41,0x65,0xac,0xc6,0x72,0x31,0xc0,0x3c,0xce,0x4f,0x4e,0x08,0x57,0x3a, - 0x86,0xa1,0x4f,0xfd,0x7e,0x9c,0xb5,0x25,0x59,0x27,0x9b,0x3e,0xeb,0x0e,0x2a,0x76,0xb2,0x71,0x7d,0x9c, - 0x5b,0xb7,0x03,0xe3,0x2f,0x60,0x74,0xaa,0x99,0x27,0xe3,0x62,0x79,0xf0,0x37,0x07,0x47,0x56,0x4c,0xcc, - 0x5d,0xa6,0x13,0xa7,0x50,0x47,0x91,0x57,0xdb,0xac,0x75,0x66,0x9d,0x99,0x55,0xc7,0x26,0xb7,0x65,0xa6, - 0x6e,0x2e,0x7b,0xe6,0x63,0xd8,0x45,0x1b,0x9e,0xf1,0xda,0x71,0x41,0xf4,0x5c,0x88,0x1f,0x58,0x02,0x47, - 0x7e,0xc3,0xcb,0x2d,0xa3,0x53,0x2d,0x0e,0xa9,0x7a,0x0c,0x82,0x35,0x85,0x31,0xaa,0xbe,0x39,0x1a,0x39, - 0x23,0x56,0x5b,0x0e,0x38,0x80,0xfb,0xcd,0x66,0xbc,0xe6,0xd9,0x0a,0x7a,0x8b,0xc1,0x58,0x2a,0xb2,0x1e, - 0x16,0xaa,0x70,0x1d,0x39,0x97,0x8e,0x10,0x3b,0xbe,0x5e,0x1f,0x0e,0xdd,0xd2,0x9b,0xb2,0x07,0x0d,0xad, - 0xb8,0xb3,0xc0,0x2d,0xa2,0x61,0x71,0x70,0x30,0x8c,0x2a,0x1e,0xd4,0x71,0xb1,0xdf,0x58,0xf3,0xda,0xca, - 0x55,0x7a,0xd1,0x01,0x24,0x78,0x69,0x34,0x11,0x7c,0x38,0x12,0xcc,0x86,0x15,0x8d,0xba,0x2f,0x16,0x2d, - 0xd9,0x04,0xac,0xa3,0x0b,0x02,0xac,0xe2,0x81,0x73,0x0a,0x21,0xc0,0x42,0x05,0x7b,0x7b,0x17,0x50,0x3f, - 0x42,0x1a,0x69,0xa1,0xcb,0x55,0x73,0x66,0xce,0x61,0x97,0x74,0xed,0x00,0x06,0xdb,0x30,0x32,0x58,0x4a, - 0x1f,0x89,0x7c,0xce,0x55,0xf4,0x23,0x40,0xb3,0x4b,0x07,0xe1,0x6e,0x65,0x0a,0x11,0xdb,0xb2,0x5b,0xed, - 0xed,0xd9,0x0d,0x46,0x15,0xe8,0x67,0x2a,0x0d,0x25,0x26,0x2b,0x1f,0x12,0x9e,0x1a,0x4f,0xde,0x4f,0x7c, - 0x4b,0x3b,0x49,0xea,0x2e,0xf7,0xf6,0x52,0x07,0x90,0x7a,0x4d,0x20,0xc0,0x92,0x47,0xb0,0x48,0xd9,0x45, - 0x56,0x5d,0x7b,0xe7,0xb3,0x47,0x60,0xf2,0x38,0x30,0xec,0x8d,0x54,0xb6,0x5e,0x9b,0xca,0x76,0x8f,0x86, - 0x22,0xd1,0xd0,0xe0,0xf9,0x29,0xbb,0x06,0x56,0x21,0x76,0xc9,0x4f,0x70,0xf6,0xe3,0xb5,0x6b,0x7b,0x62, - 0xdb,0xae,0xbb,0x6d,0xb7,0x5a,0x86,0xf7,0x8d,0x6e,0xdc,0x59,0x7f,0x99,0xd6,0x3d,0xb0,0x1e,0x77,0x31, - 0xc8,0xd6,0x1a,0x52,0xd7,0x4d,0x7d,0x91,0x75,0x9b,0xd3,0x3d,0x23,0x66,0xd8,0xd6,0x74,0xea,0x76,0x1d, - 0x8d,0x6f,0xdb,0x3c,0xbc,0xc1,0xce,0x12,0x72,0x4c,0x6f,0x08,0x1c,0x7e,0x6e,0x4f,0xf8,0x9b,0xed,0xd2, - 0x68,0xde,0xa2,0x1b,0x3d,0x23,0x72,0x7c,0x1a,0xff,0x20,0xce,0xa6,0xc6,0xe6,0xab,0x2c,0x2e,0x54,0x46, - 0x27,0x52,0x56,0xa5,0xa7,0xf3,0x2c,0xde,0xdd,0xad,0x14,0x64,0x12,0xf2,0x72,0xa8,0x6d,0x19,0x56,0x3a, - 0xf3,0x70,0xe3,0x61,0x89,0x2b,0xef,0x40,0xe9,0x51,0x19,0xef,0xed,0xdd,0x2b,0xd8,0x81,0x81,0xb5,0x9a, - 0xf7,0x34,0x89,0xed,0x9b,0xfa,0xb9,0xaa,0x3e,0x75,0x6c,0x94,0x7e,0x29,0x42,0x39,0x7d,0x55,0xfb,0xc7, - 0x1d,0x3d,0xee,0xdb,0x3b,0x5a,0xd9,0xaf,0xf7,0xf0,0xc4,0x88,0x67,0x5e,0x8b,0x09,0xae,0xde,0xcb,0xbf, - 0xc0,0x96,0xa6,0x49,0xcf,0x94,0xe5,0x66,0x27,0xe7,0xf9,0x7c,0x5a,0x65,0x05,0xb8,0x27,0xd8,0x6f,0x10, - 0x28,0xce,0x17,0x8a,0xd5,0x93,0xfc,0x8e,0x8c,0xb4,0xbe,0x2e,0x26,0xcf,0x52,0xd8,0xb3,0x5f,0x3b,0x85, - 0xe8,0xa0,0x00,0xaf,0x8c,0xaa,0x45,0x16,0xd7,0xe4,0x13,0xa0,0x62,0xfd,0x48,0xa9,0x04,0x7d,0x94,0x40, - 0x7f,0xb9,0xc4,0x63,0xe2,0x4a,0xa9,0x3f,0x5c,0x44,0x3f,0x53,0xfa,0xac,0x78,0x2c,0x0d,0x51,0xba,0x7d, - 0xe6,0x74,0xdd,0x71,0x4e,0xb7,0x83,0xa0,0xe7,0x77,0x13,0x5a,0xbb,0xe7,0x53,0x4e,0xd7,0xcf,0x52,0xff, - 0x9c,0xc6,0xcb,0x2e,0x92,0x8d,0x28,0x54,0xf5,0xc0,0xe8,0xa5,0xb2,0x2f,0xc9,0x63,0x2f,0x07,0xa6,0x41, - 0x11,0xd4,0xaf,0x85,0x5f,0xb8,0xf0,0x0b,0x17,0xed,0xc2,0x84,0x30,0xdc,0x8c,0x3f,0xee,0x82,0xbc,0xc5, - 0xb2,0x6d,0xbc,0xa9,0x4f,0xca,0x82,0x8f,0x48,0x1c,0x90,0x09,0xad,0x15,0xfd,0x78,0x8e,0x1d,0x5e,0xad, - 0x0f,0xbd,0x75,0xc4,0x76,0x17,0x0f,0x9e,0xdd,0xb0,0xe5,0x6f,0xf3,0x4b,0x61,0xb7,0x10,0x0e,0xb2,0x60, - 0x3c,0x2e,0x4f,0xc7,0xe3,0x80,0xad,0x4d,0xe4,0xd9,0x2f,0x5d,0x56,0x23,0x74,0x4e,0x32,0xe2,0x9c,0xc8, - 0xee,0xf3,0x72,0x35,0x9f,0xd2,0x64,0xd3,0xc6,0xa7,0xc9,0xda,0xfd,0xa3,0x60,0x2b,0xbf,0x2e,0x36,0x5b, - 0xaf,0x41,0x2c,0x51,0x8e,0xde,0x3b,0x79,0xfd,0x14,0xde,0x27,0x75,0x7e,0xca,0xe6,0xb2,0xf4,0x21,0xfb, - 0x13,0x10,0x15,0x8a,0x69,0xe3,0x31,0xb3,0xca,0x9c,0xd9,0x79,0x9e,0xd6,0x8b,0xc5,0xe3,0x72,0x55,0x34, - 0xfb,0xfb,0xfe,0xc1,0xf3,0xce,0x57,0x87,0x0b,0x1e,0x65,0x6b,0xb9,0x82,0xb0,0xa7,0x6e,0xe9,0x2c,0x6b, - 0x3c,0x2f,0xbe,0x27,0x59,0x3d,0xa9,0x72,0xd8,0xb8,0xf3,0xdc,0x30,0xb6,0x4e,0x09,0x5b,0x1f,0x11,0xb5, - 0x97,0x0e,0xfc,0xad,0x69,0x24,0xbc,0x29,0x21,0x5c,0x54,0x42,0x98,0x90,0x1f,0x6b,0x7a,0x5c,0x25,0xbb, - 0xf9,0xde,0xde,0x43,0x1c,0x64,0x9f,0xc1,0x05,0x3e,0x0e,0xd8,0xda,0xf6,0x8a,0xaa,0xf4,0x65,0x8e,0x82, - 0xa5,0xea,0x51,0x6d,0x68,0x46,0xa7,0xbe,0xf8,0xb9,0xa0,0x6d,0x56,0x51,0x79,0x9a,0x9a,0x92,0x5a,0x5a, - 0xc2,0xf2,0x22,0x52,0x2b,0x7a,0x5d,0xe1,0xd5,0x25,0x75,0x0f,0x8c,0xbd,0x3d,0x8f,0x60,0x6f,0xc1,0x97, - 0xde,0xfd,0xe2,0x3d,0xd4,0x74,0xbd,0x86,0x68,0x05,0x1a,0x18,0x66,0x62,0xde,0x65,0xa9,0xdd,0xd3,0xe7, - 0x5a,0x84,0x6c,0x9b,0x8d,0x28,0x20,0xf4,0x66,0x59,0x4d,0xed,0x8f,0xb2,0x31,0xd4,0x49,0x7b,0x98,0x50, - 0xc0,0x54,0xeb,0x75,0xb3,0xcb,0x26,0xa4,0xbb,0x78,0x0e,0x27,0xa3,0x89,0x23,0xa3,0x62,0xea,0x8e,0x9d, - 0xf3,0x06,0xb6,0xb1,0x45,0xd9,0x80,0x7c,0x65,0x1b,0x79,0x0f,0x47,0xbf,0xf7,0xd4,0xfb,0x5d,0x08,0xa4, - 0xb5,0x0b,0xdd,0x69,0x61,0x8f,0x4e,0x26,0xb1,0x17,0xe9,0x95,0xa5,0x04,0x15,0x8b,0xde,0x34,0xa5,0xd7, - 0xa8,0x23,0xaa,0x4e,0xf1,0xee,0x69,0xd8,0x4d,0x14,0xfb,0x87,0x9f,0xba,0x9e,0x9d,0xae,0x6a,0x31,0x70, - 0x2d,0xb4,0xe4,0xc7,0x6c,0x16,0xe7,0x40,0x24,0x70,0xbe,0x5e,0x57,0xb0,0xb4,0xd2,0x60,0x3d,0x2a,0xe2, - 0x6a,0x14,0xbe,0x23,0xf4,0xc2,0x27,0x08,0x8f,0x82,0x50,0x11,0xe6,0xda,0x8c,0x15,0x74,0x99,0xb1,0x9e, - 0x2d,0x3c,0x6c,0xfd,0xda,0xd2,0x26,0xb7,0x0c,0xd9,0x1f,0x8d,0x67,0xaa,0xe0,0xf6,0xf1,0xd0,0xf5,0xc9, - 0xdf,0x6a,0xeb,0xb5,0x50,0xb6,0xb0,0x21,0x33,0xd6,0xba,0xcd,0x89,0x20,0x39,0xbf,0x63,0xfe,0x0a,0xfc, - 0x66,0x3b,0xe3,0x9b,0x57,0x58,0xb8,0xc3,0x46,0x75,0x5b,0x53,0x93,0x14,0xd0,0x18,0x0d,0xeb,0x07,0xa9, - 0x81,0xc2,0x1a,0xb8,0x0d,0x74,0x61,0x92,0x1e,0xd7,0x27,0x27,0x00,0x50,0x1c,0xf5,0x33,0xa6,0x64,0x46, - 0x65,0x58,0xb1,0x1b,0x22,0x74,0x21,0xbf,0x85,0xd8,0xf8,0x31,0x96,0xbd,0xa0,0x87,0x1e,0x92,0xf0,0x45, - 0x47,0xc2,0x56,0x8c,0x3a,0x7b,0xae,0x4a,0x7a,0xdd,0xd9,0x8c,0x87,0x2f,0xfb,0xb4,0x51,0x0f,0xfa,0x8e, - 0xe3,0x51,0xe6,0x15,0xca,0x1c,0x85,0xad,0x7b,0x95,0x6f,0xe2,0x66,0x94,0xf9,0xed,0xe9,0x12,0xbf,0x85, - 0x9f,0x6b,0x92,0x49,0x10,0xfc,0x41,0xc3,0x9f,0x6b,0xd6,0x2b,0x48,0x5c,0x5b,0xdc,0xc4,0xde,0xb0,0x9f, - 0x76,0xc5,0x68,0xa3,0xcc,0xa8,0xe0,0x69,0x3b,0x75,0xd1,0xc4,0xa8,0x89,0xa1,0xa7,0xf7,0xbe,0x7f,0xe3, - 0x88,0x1d,0x91,0xd7,0xb4,0x99,0x16,0xcd,0xe8,0x7b,0xba,0x9c,0x0b,0x38,0x40,0x61,0xcc,0xb6,0x8a,0xe7, - 0x66,0xe6,0x3d,0x26,0xde,0x56,0x97,0x56,0x84,0x5e,0xd6,0xeb,0x55,0x35,0x5c,0xc1,0xd1,0x8e,0x0e,0x26, - 0xf6,0x4e,0xc4,0x1f,0x34,0xda,0x67,0x8d,0x07,0xec,0x47,0x0c,0xc6,0x40,0xfb,0x01,0x75,0x25,0x27,0x06, - 0xa2,0x69,0x3f,0x2e,0x6b,0xb1,0xe4,0x91,0xf5,0x65,0x80,0xbb,0xd9,0x0c,0xb7,0xf6,0x47,0x21,0xbe,0xe3, - 0x74,0xc0,0x5a,0xf4,0x07,0xa6,0xa4,0x2b,0x5f,0x08,0x25,0xfc,0x02,0x76,0x41,0x7a,0x3c,0x2e,0x08,0xee, - 0x4e,0x92,0x1b,0x64,0x89,0x9a,0xca,0x59,0x0a,0x95,0xa6,0x46,0x3e,0x37,0x80,0x22,0x8a,0x08,0xdf,0xd6, - 0x27,0x8a,0x3f,0xac,0xe9,0x43,0x80,0xed,0x28,0x8f,0xe5,0xfb,0x7c,0x33,0xd4,0xfd,0x4d,0xd2,0x0d,0x50, - 0xe6,0x2d,0x43,0xca,0x0b,0xcc,0xbd,0x3f,0x26,0x9b,0xf8,0xb9,0x81,0xc9,0x4c,0x33,0xb9,0xe0,0x33,0xd6, - 0xc4,0x74,0x31,0x63,0x7d,0x03,0xe3,0x98,0x18,0xcf,0x9b,0xfe,0x21,0xa4,0x32,0x04,0x7d,0x0c,0x16,0xc7, - 0x29,0xb1,0x5c,0xf4,0x87,0xc6,0x50,0x47,0xb4,0xde,0xf2,0x7d,0x4a,0x28,0x3e,0x8a,0xe5,0xb9,0xde,0x6c, - 0xba,0xc3,0x30,0x83,0xa0,0x03,0x32,0xaf,0xa8,0xbf,0x44,0xbb,0xea,0xc5,0x31,0xad,0x54,0x5e,0x2b,0x32, - 0xd3,0xc3,0x9e,0xc5,0xcf,0x41,0x15,0x70,0x10,0x0c,0x18,0xe8,0xc7,0xb9,0x5a,0x2d,0x61,0x1d,0x48,0x53, - 0x18,0x41,0x69,0xaf,0xc3,0x64,0x34,0x3a,0x0a,0x04,0x37,0x91,0xb3,0x8d,0x13,0xa0,0x30,0x87,0x71,0x9f, - 0x6a,0x06,0x8b,0xfc,0x8a,0x28,0x19,0x37,0x3e,0x3a,0xfb,0xea,0xc4,0x24,0x9b,0x29,0x4a,0x1f,0xd4,0xc3, - 0x14,0x6c,0x22,0x7f,0x6a,0x72,0x69,0xdc,0x54,0x09,0x37,0x33,0xa1,0x93,0x88,0x66,0x1d,0xb5,0x4c,0x24, - 0x70,0x00,0x3d,0x44,0xee,0xbd,0x89,0x80,0xa8,0x26,0x44,0xf1,0x70,0xba,0xde,0x21,0x2b,0xb7,0x31,0x9e, - 0xb8,0xbd,0xd5,0xe7,0x2d,0x63,0xe7,0x02,0xc8,0x16,0x03,0xa1,0xa1,0x28,0x47,0xa3,0xe5,0x60,0x7d,0x85, - 0xd2,0x19,0x83,0xbf,0x32,0x25,0x4a,0xaf,0x44,0x29,0x25,0xd2,0xe4,0xb4,0x08,0x4b,0x27,0x5c,0xa0,0x52, - 0x29,0x41,0x1f,0x8d,0x25,0xce,0x59,0xaa,0x80,0x92,0xf8,0x9b,0xfa,0xb2,0x91,0x67,0xdd,0xad,0xdf,0x1c, - 0x67,0x27,0xaa,0x4c,0x76,0x69,0xd5,0x14,0xb3,0xa5,0x10,0xa6,0xa0,0xd9,0x97,0xe1,0x23,0x11,0xa7,0xa9, - 0x7c,0xc0,0x27,0x20,0xe8,0x13,0x3a,0x1f,0xd1,0x50,0xa0,0x1d,0x21,0x83,0x68,0x94,0x12,0xef,0x15,0xbf, - 0xd4,0x32,0x2e,0x53,0x14,0x86,0xfb,0xbb,0xac,0x92,0x4e,0xe9,0xe7,0x4a,0xdc,0x54,0xc3,0x34,0x61,0x32, - 0xda,0x0a,0x14,0xd3,0xe8,0x26,0xed,0x33,0xdd,0x9b,0xc1,0x83,0xc9,0xb6,0x60,0x36,0x45,0x63,0xbc,0x2f, - 0xed,0x39,0x00,0x1a,0xf6,0x8e,0x46,0x18,0xb2,0xd3,0x24,0xb8,0x81,0x93,0x58,0xf6,0x64,0x8b,0x7c,0xc0, - 0x4a,0x2a,0x07,0x63,0xce,0xa1,0xd4,0x91,0xf7,0xdc,0x27,0x61,0x85,0x6b,0xef,0x33,0x27,0x9b,0x4f,0x5e, - 0x85,0x8d,0x0c,0x76,0x54,0x59,0x6a,0xa7,0x22,0x70,0x05,0x4a,0xca,0x22,0xcd,0x6e,0x77,0x49,0xe8,0x61, - 0x37,0x01,0x5c,0xc8,0xc3,0x30,0x25,0xd2,0xbf,0x9b,0x51,0x3b,0xb3,0x07,0xbb,0x7a,0xaf,0x3c,0xfb,0x26, - 0x8c,0xde,0xf1,0x86,0x5a,0x4b,0xcf,0x7e,0xd7,0xb6,0x78,0xf8,0xeb,0xe5,0x7e,0x74,0xcf,0xc3,0xe3,0xcd, - 0xf1,0x11,0x8d,0x2d,0x70,0x15,0xbe,0x74,0x07,0x7a,0xf7,0xd8,0x30,0x00,0xf7,0x4a,0x84,0x93,0xaf,0x8c, - 0x7f,0xaa,0x89,0xc6,0x51,0x39,0xc2,0xb2,0x78,0x50,0x19,0xc6,0xfd,0x15,0xcb,0xb2,0xcc,0x07,0x4e,0x92, - 0x62,0x05,0x01,0xb6,0xe9,0xb7,0xde,0x8a,0x37,0x0e,0x61,0x24,0xb4,0xbe,0x49,0x35,0xb8,0xb3,0x4c,0x89, - 0x95,0x6a,0x86,0xce,0x00,0xc8,0x2e,0x25,0xfb,0x00,0x3c,0x4e,0x97,0x54,0x61,0x36,0x65,0x5c,0x60,0xbf, - 0x2e,0x09,0x21,0x96,0x0f,0x72,0xd3,0xaf,0x12,0x11,0x42,0xaa,0x6b,0x1e,0x1e,0x4c,0x18,0xb1,0x23,0x64, - 0xad,0x2a,0x25,0x8d,0xeb,0x0e,0x3a,0x81,0xc5,0x4f,0xd4,0xab,0x4a,0x05,0xad,0x36,0x76,0xce,0xcb,0xf2, - 0x13,0xdc,0xd6,0x7f,0xd2,0x5d,0x76,0x83,0xf8,0xc9,0x1b,0xc4,0xfb,0x42,0xba,0xf6,0x9d,0xe8,0xcc,0xb9, - 0x65,0x3d,0x87,0x9d,0x2c,0x3f,0xbe,0x88,0x54,0x68,0xdb,0x7f,0x64,0x84,0xb6,0x81,0x36,0x95,0xf6,0xbf, - 0xa3,0x3e,0x3c,0xda,0xea,0xc2,0x23,0xaf,0x0b,0xbb,0x2f,0x20,0x8e,0x7a,0x5a,0xd0,0xfe,0xeb,0xf1,0x11, - 0x82,0xb3,0x39,0xed,0x68,0xad,0x60,0xc9,0x86,0xfa,0x5d,0x9a,0x68,0xc9,0x86,0x3f,0xc2,0xa8,0xae,0x4a, - 0xb4,0xd4,0x28,0x4b,0xe6,0x95,0xf1,0x0f,0x8f,0x86,0x73,0x23,0xc8,0x4d,0x9c,0x2c,0xb0,0xa1,0xe7,0xc6, - 0x09,0x71,0x1a,0x16,0xc4,0x35,0x27,0xa1,0x57,0xe5,0x87,0x0e,0xb7,0x4a,0xd5,0xb0,0x2d,0x44,0x5b,0x0f, - 0xa4,0x9d,0x09,0xad,0x7c,0xd2,0xce,0x8b,0x40,0x4b,0x50,0xd0,0x11,0xf0,0x3e,0x9f,0x60,0x35,0xf8,0x54, - 0x2b,0xd8,0x79,0x9d,0x35,0x2d,0xe0,0x2b,0xd0,0xe7,0x43,0x35,0xad,0x46,0x93,0x2a,0x8c,0xe2,0xba,0x82, - 0x81,0xcd,0x6e,0xd6,0xaf,0x5e,0xd1,0x8a,0xb0,0xc8,0x93,0xa2,0xf4,0xe9,0xc6,0x0a,0xe8,0xc6,0xdc,0x30, - 0xbe,0x43,0x9a,0x2d,0x00,0xbe,0x4b,0x59,0x52,0xa4,0xbc,0x45,0xa8,0x17,0x12,0x0b,0x0a,0xe1,0x21,0xf8, - 0x60,0xcb,0x20,0x3f,0xab,0xca,0x3f,0xe0,0x38,0x2d,0x36,0x51,0x8d,0xa6,0xd5,0xcd,0x79,0xdc,0xf8,0xec, - 0x58,0xce,0x50,0x5e,0xc0,0x02,0x90,0x0e,0x67,0x63,0x98,0x59,0xc0,0x7b,0x00,0x6e,0x80,0xb0,0xe0,0xd4, - 0xb4,0x4e,0xd3,0xa2,0x75,0xa8,0x73,0x4c,0x72,0x79,0x01,0x71,0xaa,0x24,0x2c,0x3b,0xf4,0x79,0xb4,0xf5, - 0x4d,0x49,0x5f,0x9d,0x70,0x00,0x84,0x88,0x66,0xfd,0xac,0x8a,0xe8,0xff,0x60,0x42,0x47,0x41,0xe5,0x2f, - 0xe8,0x1f,0x61,0x3b,0xd4,0x95,0xd6,0xc8,0x39,0xd9,0xb4,0x02,0x61,0x30,0x2b,0xf8,0xb8,0xde,0xdd,0xa2, - 0x61,0xac,0xe4,0xd9,0xd3,0x9b,0x39,0xd1,0xdc,0xd0,0xe1,0x83,0x42,0x83,0x5e,0xaf,0x1e,0x01,0x42,0x12, - 0xbf,0x86,0xcc,0x8a,0xb4,0xb9,0x69,0x04,0x1e,0x70,0x3d,0xfe,0x3d,0xd4,0xc2,0x04,0x6b,0xbf,0xaf,0x6a, - 0x45,0x07,0x3e,0x37,0x96,0xca,0xe9,0x4e,0x53,0x0f,0x6a,0x60,0xc2,0x14,0x11,0xd1,0x02,0xd7,0x15,0x90, - 0x33,0xdc,0x2d,0x61,0xa1,0x4d,0x47,0xfe,0x88,0xfe,0xd6,0xa8,0x1b,0xe7,0xa1,0x94,0x4e,0xfe,0xc0,0xb2, - 0xa8,0x8a,0xf8,0x75,0x36,0xbe,0xac,0xd5,0x6a,0x40,0xd4,0x78,0xa6,0x10,0x87,0x85,0x51,0x08,0x3d,0xc1, - 0xa7,0x8d,0xe8,0x23,0x7e,0x82,0x99,0x79,0x44,0xf0,0x49,0xa7,0xc8,0x84,0x6a,0x99,0x70,0x57,0x89,0xda, - 0x47,0x5d,0x93,0x28,0x72,0xfd,0x29,0x78,0x3d,0x52,0x90,0xa7,0x79,0x18,0xea,0xde,0x44,0xd2,0x8a,0x74, - 0xd0,0xb4,0xe0,0x2d,0xcc,0x0f,0xa1,0x1e,0xa2,0xa7,0x96,0x8a,0x6e,0xca,0x7e,0x19,0xa8,0x9a,0xcb,0x68, - 0x88,0x76,0xd8,0x54,0x6d,0xc1,0x11,0xc4,0x61,0x84,0x77,0x21,0xfd,0x1b,0x00,0x03,0xc2,0x02,0xc3,0xbd, - 0x11,0x95,0x14,0xe9,0x53,0x0e,0xf6,0x80,0xb4,0x0e,0x43,0x9e,0x9e,0x9a,0x66,0x03,0x3d,0x8e,0x1b,0x19, - 0x17,0xa4,0x0c,0xf4,0xc4,0x26,0x2e,0x53,0x9a,0xbd,0x9a,0x46,0x88,0x74,0xd9,0xfd,0x29,0xcd,0x02,0x3e, - 0x98,0x28,0xfa,0x44,0xd5,0xba,0x18,0x36,0x31,0x8b,0xbf,0x6a,0x37,0xaa,0xef,0x99,0x0b,0xd4,0x23,0xc3, - 0x8e,0x01,0x10,0x09,0xb5,0x00,0x6a,0xc6,0xb1,0xe7,0x88,0x62,0x02,0xb0,0x2f,0xd7,0x6b,0xcd,0xd7,0xf2, - 0x2b,0x9d,0x41,0xba,0x70,0xde,0x2d,0x9c,0xb7,0x0b,0xe7,0x28,0xbc,0xd9,0x3e,0xb0,0xbe,0xf5,0x64,0xae, - 0x62,0x65,0xcf,0xe2,0x59,0xc2,0x48,0xd8,0xd8,0xda,0x44,0xde,0x08,0x2c,0xdd,0x67,0x3f,0xfb,0xcc,0x5a, - 0x08,0xa6,0x3c,0xab,0x5f,0xb2,0x4e,0x77,0xbd,0xfe,0x01,0xf1,0x56,0xe4,0x05,0x2a,0xc5,0xec,0xf8,0x1d, - 0x6b,0x35,0xed,0xb9,0xfe,0x3e,0x3d,0x13,0xbf,0x7d,0x38,0x9a,0x0a,0xf5,0x43,0xdb,0x00,0x1e,0x00,0x86, - 0x18,0x06,0xd5,0xe1,0x71,0x76,0xff,0x6e,0x45,0x63,0xb1,0xbd,0x01,0xad,0xe0,0x8b,0x66,0xdd,0x07,0xbf, - 0x68,0xb3,0x83,0xae,0x70,0x21,0xfa,0x8c,0x7c,0xde,0x70,0x29,0xa0,0x55,0x79,0x25,0x2a,0x76,0x6b,0x80, - 0xf0,0xb4,0x23,0x4b,0xa6,0x4d,0xf3,0x6f,0xca,0xb5,0x13,0x5e,0x79,0x94,0xe8,0x8f,0xe6,0xdc,0x2a,0x46, - 0x0b,0x9c,0xee,0x04,0x76,0x22,0x0e,0x92,0xb7,0x8e,0x86,0x2d,0x93,0xcc,0x1b,0xce,0x9c,0xcd,0x3a,0xb9, - 0x6c,0x31,0xc8,0x95,0x2d,0xa8,0x5f,0x8a,0x37,0x3a,0x9b,0x49,0xfd,0xa8,0x32,0x22,0x6a,0x29,0x51,0x28, - 0x3e,0x4f,0x1b,0x9d,0xf9,0x5c,0x98,0xf0,0x59,0xbb,0xee,0x30,0xf0,0xf0,0x4f,0x2b,0xee,0x98,0x11,0xa1, - 0x69,0x69,0x24,0xf3,0xb5,0x69,0x52,0xf2,0xb6,0x40,0x15,0x2c,0x43,0x4c,0x9b,0xa6,0xaa,0xed,0x03,0xa1, - 0xaf,0xb2,0xb1,0x5e,0xc0,0x7e,0xa2,0x2a,0x8d,0xec,0x5c,0xac,0xe9,0x4a,0x27,0xd7,0x46,0xc2,0x7a,0x0d, - 0xd9,0xa5,0x28,0x7c,0x53,0xfe,0x20,0x0a,0x0b,0x03,0x06,0x6c,0x8b,0x61,0xe2,0xc4,0x1d,0x9f,0x10,0x52, - 0xe0,0xfd,0x54,0x7a,0x12,0xa0,0x5a,0x7f,0xc5,0xc8,0xac,0x86,0x9a,0x11,0x3f,0x28,0x3c,0x0c,0x9a,0x6c, - 0xb1,0x9c,0x13,0x8b,0x05,0xa8,0x2b,0x21,0xe6,0x1f,0x4d,0xb8,0x02,0x8d,0x24,0x26,0xe8,0x9a,0x16,0x67, - 0xaf,0xd7,0xf4,0x45,0x3c,0x31,0xf5,0x6f,0x6c,0x80,0xa2,0x95,0x60,0xa8,0xe2,0x78,0x75,0xa2,0x15,0x43, - 0x55,0xe6,0xdc,0x9d,0x91,0xec,0x22,0x80,0x38,0x29,0x41,0x76,0x1b,0x84,0xee,0xb6,0x41,0x94,0x48,0x98, - 0x1d,0xde,0x13,0xbc,0xc3,0x3c,0x3d,0x7e,0xe6,0x69,0x23,0x35,0xa7,0x76,0x0b,0x9c,0x76,0x60,0x1a,0x74, - 0xe9,0x08,0x9f,0x8b,0x66,0x29,0x26,0xce,0x87,0x9e,0x70,0x0c,0xb2,0x9a,0xf2,0x84,0x66,0xbf,0x47,0x5d, - 0x58,0x66,0x46,0xed,0x38,0xcc,0xf4,0x4e,0xd4,0xb4,0x69,0x34,0x8c,0x58,0xc5,0x3c,0xce,0x8b,0x94,0x79, - 0xdf,0xcf,0x51,0xbb,0x69,0x66,0x29,0x6d,0xa3,0x9a,0x1e,0x0b,0xd3,0xfc,0x5c,0x7f,0x4d,0xd4,0x96,0xe2, - 0xc6,0x0c,0x4d,0x6a,0xd8,0xf6,0xad,0x92,0x86,0x02,0x68,0xb7,0xee,0xac,0x33,0xbc,0x1e,0xdd,0x78,0x2f, - 0x20,0xe7,0xba,0xb3,0x75,0xc7,0xac,0xb2,0x3f,0x6f,0xe8,0xab,0xcb,0x61,0x35,0x6a,0xcd,0x26,0xb9,0x5c, - 0x0f,0x41,0xcd,0x34,0xf0,0x85,0x82,0x75,0xd6,0x16,0x68,0x18,0x42,0x5d,0x33,0xb8,0x9e,0x30,0x80,0xf7, - 0x52,0xd1,0xdd,0x4b,0xa0,0xf8,0x0a,0x1b,0xda,0xd2,0xc6,0x8e,0x28,0x40,0xf4,0x15,0x20,0x90,0xf7,0x03, - 0x43,0x81,0xd3,0x68,0x88,0x08,0xfa,0x8e,0x5e,0xd8,0x6d,0x92,0x19,0xc0,0x6c,0x01,0x3b,0x03,0x14,0x88, - 0x83,0x7d,0x1f,0x29,0x80,0x66,0x10,0x9a,0x44,0x35,0x3c,0xf0,0x3b,0x4c,0x1d,0x9e,0xc2,0x98,0xa8,0x6a, - 0x7c,0x0d,0xaa,0x6f,0xc6,0x93,0x4f,0x0f,0x88,0x3c,0x9b,0x12,0x45,0xf9,0x18,0x81,0xa3,0x1e,0x57,0x0f, - 0x4e,0x2d,0xc5,0xf1,0x98,0xbb,0x9b,0x10,0x10,0x9c,0x56,0xc7,0x8f,0xab,0x93,0x88,0x0a,0xaa,0xab,0x8a, - 0x85,0xb6,0x4c,0x7d,0x0c,0xaa,0x55,0x11,0x1a,0x4b,0xaa,0xcb,0xca,0x52,0x2e,0x55,0x72,0x6a,0x5f,0xa8, - 0x96,0xc4,0x56,0x89,0x42,0x86,0x9a,0xa6,0x9a,0xa0,0xd4,0xfe,0x54,0x25,0xe8,0xe8,0x51,0x4b,0xce,0xf2, - 0x27,0x84,0xb6,0xbf,0xc8,0x87,0x0a,0xeb,0x07,0x51,0xee,0x2e,0x42,0x7a,0x16,0xd1,0x2d,0x15,0xb9,0x4a, - 0x40,0xf7,0x99,0xd5,0xc3,0x77,0xa0,0xb9,0x2e,0x16,0xc3,0x6a,0x30,0xbe,0xc4,0x4a,0x64,0x15,0x01,0x55, - 0x01,0x69,0xf6,0x38,0xa7,0x93,0x6b,0x45,0x08,0x6a,0xba,0xb7,0x47,0xab,0x4e,0x7c,0x92,0x08,0x6a,0x18, - 0x1e,0x08,0xcf,0xab,0xdf,0xa9,0xd8,0x7b,0xe0,0xa5,0x8b,0xa6,0x2c,0xe1,0xeb,0xfb,0x3b,0x31,0x3e,0xbc, - 0x3e,0xb3,0x39,0xa1,0x8f,0xc0,0x5b,0x9d,0x95,0x45,0xd9,0xef,0x2b,0x28,0x60,0xb6,0x8d,0xf1,0xd8,0x04, - 0x8c,0xfa,0x43,0x00,0xb8,0x51,0x54,0xa8,0xce,0xb6,0xad,0x9e,0x25,0x1b,0xa1,0xf8,0x6e,0xd3,0xd4,0x14, - 0xf4,0xa9,0xd7,0xec,0xdc,0x36,0x2b,0x10,0xc9,0x1a,0xad,0x3e,0x99,0x54,0x31,0x0a,0x75,0xc7,0xaa,0xd1, - 0x8c,0xad,0xa8,0x0a,0xd3,0x89,0xb3,0x28,0x36,0x79,0x05,0xfe,0x8e,0x2a,0x9c,0xff,0x88,0x3a,0x47,0x20, - 0x4c,0xf3,0x65,0xca,0x23,0x2f,0x3e,0x33,0x5f,0x15,0xf8,0x3b,0xe2,0xbf,0xf1,0x59,0x74,0x6b,0x7f,0x9b, - 0x76,0x7f,0x67,0x3e,0xbe,0xdc,0x52,0x28,0xb1,0x91,0xdc,0x18,0xa7,0xee,0x8a,0x56,0xe1,0x27,0x59,0x2d, - 0x9a,0xf6,0xfe,0x74,0x2d,0xd8,0xb1,0x92,0x7b,0x16,0xdb,0x35,0xd7,0x30,0xa8,0xcd,0xa0,0x97,0x80,0xec, - 0x37,0x52,0x9e,0x3e,0xaa,0x71,0x9a,0xa0,0x46,0x34,0x17,0xde,0xb6,0x9f,0x66,0x4e,0x94,0x64,0xfc,0x05, - 0x59,0x45,0x04,0x99,0xab,0x42,0x64,0x28,0x6d,0x3c,0x1e,0xa9,0x6d,0x29,0x18,0xab,0x01,0x19,0x23,0xd3, - 0xa6,0xb9,0x73,0x29,0x9e,0xdc,0x22,0x1c,0x76,0xf6,0x2f,0x0e,0x65,0x66,0x7f,0x6e,0x71,0xf4,0x43,0x31, - 0x7a,0x9b,0xcd,0xe6,0xc8,0x29,0x2f,0x8b,0x1f,0xc4,0xbe,0x61,0x30,0xcb,0xe7,0x4d,0x56,0xf5,0x59,0x27, - 0xff,0x15,0xfd,0xe1,0xc0,0xe9,0xf8,0x36,0x51,0xdc,0x31,0x9d,0xe8,0xe1,0x46,0x6e,0x9c,0x1c,0x02,0xe4, - 0x2b,0x51,0x06,0x08,0x1f,0x3a,0x80,0xf8,0x14,0xb2,0xc8,0x61,0x3d,0xe4,0xd1,0xd4,0x2c,0x68,0xba,0xc8, - 0xa7,0xd8,0x47,0x4c,0xe7,0x7b,0x29,0x44,0x0f,0xd1,0x37,0x89,0x97,0x02,0xd1,0xec,0x29,0x0d,0xf6,0xd3, - 0x86,0x98,0x04,0x73,0xf8,0x80,0xeb,0xdb,0x85,0xe1,0xa0,0x91,0x93,0x41,0x56,0x49,0x1f,0x0a,0x64,0x4c, - 0xa4,0x61,0x23,0x30,0xe3,0x1a,0x7b,0x60,0xdc,0xaa,0xe1,0x08,0x5a,0x27,0x1b,0x6b,0x0c,0xe4,0x2d,0xf2, - 0x79,0x26,0x06,0x26,0x96,0xc1,0x05,0xc7,0xb4,0x2d,0x93,0x66,0x89,0xdf,0x76,0x60,0x20,0x2d,0x80,0xb7, - 0x1a,0x6e,0x6b,0x8e,0xa5,0x4a,0x42,0x77,0xa9,0x43,0x41,0xe5,0x83,0x94,0x85,0x35,0x15,0x3a,0x4a,0x9b, - 0x9b,0x83,0xae,0x3a,0xd9,0xfb,0xb6,0x01,0xe0,0x76,0xd5,0x5c,0x27,0x55,0x94,0xf9,0x15,0x95,0xfb,0x47, - 0x7e,0x3d,0xb9,0x21,0x6c,0xb7,0xec,0x60,0xfc,0xaa,0xea,0x4e,0x2f,0xeb,0x6e,0x2f,0x27,0x49,0x8d,0x0e, - 0xda,0xce,0x4e,0x88,0x5f,0x54,0x4e,0x12,0xab,0xe9,0x61,0x46,0x97,0x1f,0xe1,0xd9,0xcf,0xe1,0x0d,0x7c, - 0xd3,0x27,0x6f,0xe7,0x98,0xe0,0x5b,0xbc,0x63,0xef,0xd4,0xb0,0x52,0x98,0xbe,0x23,0xa2,0xcd,0x6c,0xd6, - 0x12,0x31,0xd6,0x98,0x94,0xad,0x78,0xcf,0x5c,0x84,0x17,0x21,0x5e,0x22,0x96,0x7a,0xe7,0x09,0xb6,0xdc, - 0x7a,0xdd,0xf8,0x2e,0xca,0xba,0x2a,0x53,0x49,0x0a,0xd5,0xc6,0x60,0x4c,0x40,0x33,0xcd,0x2a,0xe6,0xad, - 0xf0,0x1d,0x51,0x96,0x8d,0x09,0x69,0x0b,0x8d,0x1f,0x8a,0x5b,0xe3,0x9f,0x91,0x54,0xd1,0x71,0xdd,0xb3, - 0x34,0xa3,0xba,0x41,0xe9,0x18,0xc1,0x3b,0x5b,0x3a,0xa1,0x85,0x8f,0xab,0x9e,0x88,0x4d,0xaf,0x21,0x06, - 0x54,0x20,0x5b,0x11,0x81,0x0d,0xa8,0xc3,0x77,0x3c,0x92,0xf0,0xac,0x3b,0x1d,0x09,0x1d,0x21,0xb4,0x30, - 0x70,0x0f,0x03,0x82,0x27,0xc2,0xc6,0xda,0x24,0x8e,0xda,0x70,0x97,0x47,0x23,0xf6,0x4d,0x76,0xbe,0xab, - 0xc4,0x0e,0xe5,0x90,0xeb,0xc6,0xd5,0xe8,0xaa,0xa0,0x85,0x00,0x21,0x1d,0x77,0x89,0xff,0x6b,0xdb,0xa2, - 0x66,0x26,0x0b,0xf0,0xd7,0xe0,0x27,0xb7,0x15,0xde,0x34,0xe7,0x0b,0x64,0x0d,0xb5,0xc0,0xc0,0x1d,0x41, - 0xb9,0x48,0xf8,0x27,0x73,0xe2,0xec,0xd9,0xb1,0x92,0xf7,0xc0,0xb5,0xb0,0x72,0xf4,0xb2,0x40,0x91,0x88, - 0xa0,0xdc,0x27,0xc9,0x33,0xc3,0x1d,0xe8,0x07,0x16,0x21,0x0f,0x53,0x68,0xc5,0x69,0xd4,0xb0,0xe4,0xfe, - 0x50,0xf3,0x71,0x40,0xe8,0xb0,0xa6,0xf9,0x1d,0x11,0xe3,0x57,0x2e,0x90,0x50,0x43,0x00,0x61,0x5f,0xc0, - 0x7e,0xc7,0xba,0x0e,0xce,0xe0,0x27,0xa4,0x6e,0x72,0x60,0x94,0x14,0xf2,0x76,0xb0,0xd0,0xc2,0xcf,0x96, - 0x10,0x5f,0x84,0x08,0x29,0xc1,0x85,0xcb,0x82,0xd9,0xf7,0x63,0x7d,0x7e,0x13,0xe1,0x94,0x9f,0xb4,0xce, - 0x56,0x7c,0xc5,0x82,0x2f,0x4b,0x31,0x4e,0x84,0xda,0xaf,0x89,0xc7,0x77,0x21,0xbd,0x9c,0x51,0x57,0x8b, - 0x06,0x94,0xe3,0xa7,0x66,0xeb,0x9e,0xf7,0x55,0x96,0xa1,0x87,0x5b,0x69,0x60,0x44,0xb0,0xef,0x00,0xa3, - 0x86,0x3d,0xa4,0x73,0xb4,0xe9,0x2c,0x71,0x15,0x8d,0x1e,0xd3,0x9f,0xf8,0x0e,0xfe,0x84,0x97,0x59,0x28, - 0x9f,0x24,0x2d,0xe8,0x1a,0x48,0xbd,0x6f,0x19,0xc6,0x9f,0x15,0x80,0x7b,0xa7,0x45,0x35,0xb0,0xff,0x06, - 0xce,0xdc,0x22,0x5c,0x65,0xbd,0x2a,0x8c,0x61,0xe4,0xbb,0xf1,0x38,0xd8,0xcf,0xd4,0xee,0x51,0xd4,0x3a, - 0x7f,0x4e,0x2d,0xa9,0xa0,0xbb,0x77,0x99,0x69,0x0b,0x1a,0x62,0x55,0xf1,0x49,0xb3,0x1f,0x16,0xa3,0x60, - 0x0c,0x1f,0xe7,0x20,0x90,0xf0,0x41,0xde,0x94,0x5c,0x66,0x9e,0x60,0xf6,0x56,0xf6,0x5a,0x82,0x93,0x3a, - 0xfe,0x92,0x09,0x3a,0x8e,0x17,0xab,0xd1,0xa9,0xf3,0x02,0xe0,0xe4,0xab,0x4c,0x2b,0x53,0xf7,0xd1,0x70, - 0x65,0x85,0x7b,0x57,0xa6,0x35,0xcf,0xdc,0xcc,0x76,0xc0,0xd9,0x5a,0x89,0x35,0x1c,0xcc,0xad,0x60,0xbf, - 0x95,0xd7,0xaf,0x69,0x28,0x89,0xb7,0x17,0x3f,0x79,0x6c,0x0a,0xd4,0xf0,0x4d,0xe4,0xe8,0xfa,0x52,0xfe, - 0x8c,0x18,0x01,0xe1,0x29,0x8a,0x3d,0xfe,0xab,0x12,0xf9,0x99,0xa7,0xe9,0x23,0xd4,0x09,0xf9,0xe3,0x90, - 0x35,0x7b,0xf9,0xe8,0xf8,0xc4,0xe8,0xa8,0x73,0xed,0x0d,0xbe,0x0d,0x46,0x77,0x32,0xf1,0x0a,0x1b,0x97, - 0xc9,0x69,0x46,0x6d,0x8c,0x0b,0x8e,0x8b,0x3e,0x86,0x74,0x8c,0x7e,0xe6,0xc9,0x39,0xa7,0x36,0xc9,0x05, - 0xff,0xfe,0x9e,0x5c,0xe3,0x27,0x4f,0xc6,0xf8,0x59,0x24,0x63,0x4e,0x9d,0x25,0x0b,0xfe,0xfd,0x94,0x9c, - 0xf1,0xef,0x69,0x72,0xcd,0xbf,0x17,0xc9,0x27,0xfc,0x10,0x07,0x87,0x78,0x19,0xe3,0x55,0x92,0x73,0xf2, - 0x59,0xf2,0xc9,0xeb,0xc1,0x63,0x99,0x34,0x5f,0x48,0x48,0x0c,0xb2,0x06,0x33,0xf1,0xa6,0x60,0x37,0x23, - 0x1d,0xd1,0x54,0xf4,0xbb,0x8d,0xbc,0x58,0x6b,0xb0,0x4a,0x67,0xf2,0x49,0x9d,0xe8,0xd8,0xa1,0x73,0x1d, - 0xe3,0xa5,0x4e,0x64,0x1b,0x2e,0x0b,0x13,0x98,0x13,0x27,0x11,0x1b,0xb0,0x11,0xc5,0x93,0xea,0x77,0x0e, - 0x77,0x88,0x6c,0xc6,0xe3,0x3d,0xc4,0x71,0x91,0xb1,0x1d,0xc2,0xa6,0x6d,0xd7,0xa9,0x89,0xa2,0x5c,0x1c, - 0xe1,0x52,0xa1,0x01,0x11,0x35,0x05,0x1e,0x71,0xbb,0x93,0xe1,0xc4,0xb8,0x06,0x9a,0x9d,0x93,0xa4,0xca, - 0x3b,0x2f,0x12,0xd7,0x64,0x18,0xa9,0xad,0x33,0x09,0x66,0xdd,0xee,0x0d,0x43,0x40,0x4c,0x89,0x71,0x2d, - 0xb6,0x75,0x23,0x4d,0x75,0x6e,0x05,0x33,0x31,0xd2,0x92,0xf7,0x1c,0x62,0x5f,0x23,0xde,0x95,0x3d,0x2f, - 0x4b,0x36,0x7c,0x72,0xe6,0x7a,0xae,0x46,0xe5,0x49,0x44,0x12,0x1a,0x53,0xb9,0x89,0x6f,0x6f,0xc3,0xa8, - 0x5a,0xda,0x8d,0x78,0xb4,0xcc,0xc3,0xec,0x16,0x93,0x63,0xd6,0xb4,0x8a,0xd9,0xb1,0x67,0x7b,0x86,0xf9, - 0xd5,0x04,0x8f,0xe8,0x56,0x32,0x48,0xb2,0x78,0x28,0x2b,0xea,0xa3,0x45,0x3d,0x63,0xf8,0x07,0x8a,0xfd, - 0x9d,0x9c,0xfb,0xc9,0xca,0xc8,0xe6,0xa8,0x7c,0x9f,0x8d,0x87,0x9e,0x90,0x39,0x33,0xf0,0x90,0x9a,0xe5, - 0xd3,0xc8,0xd3,0x5a,0x86,0x5e,0x80,0xab,0x4a,0xbc,0x91,0x71,0x44,0x51,0x41,0x56,0xd4,0xb0,0xdc,0x51, - 0x3f,0xc3,0xb5,0xd6,0x09,0xd7,0x5c,0x9a,0x16,0xcb,0x99,0xd0,0xb2,0x53,0xaf,0x8c,0x49,0x1a,0xea,0x3a, - 0x11,0x60,0x88,0xf0,0x8c,0xae,0x55,0xbf,0x75,0xea,0xf5,0x52,0x59,0x4e,0x26,0xa2,0x3e,0x5e,0x96,0x3a, - 0x32,0x2a,0x0b,0x97,0x94,0x88,0x04,0x9d,0x50,0xcd,0xca,0x07,0x5c,0x33,0xef,0x19,0x51,0x55,0x8d,0xa3, - 0xaa,0xb2,0x07,0x44,0xbd,0x10,0xda,0x63,0xa4,0x7d,0x87,0x0a,0x4d,0xb2,0x0f,0x7c,0x2a,0x85,0xd1,0x46, - 0xcd,0x93,0xd3,0x96,0x36,0xc6,0xf5,0x3f,0x81,0x5c,0xb5,0x24,0x38,0x5f,0xaf,0x57,0x21,0x2b,0x80,0x3a, - 0x45,0xdb,0x93,0xc4,0x04,0x99,0x44,0x0f,0x43,0xbf,0x42,0x0e,0x7a,0x32,0x4d,0xaa,0x70,0xae,0x66,0xce, - 0xe5,0x21,0xc4,0x42,0xf4,0xd9,0xef,0x4c,0xd9,0xcb,0x71,0x94,0xf9,0x73,0xba,0xb7,0x27,0xa9,0x5c,0x45, - 0xdc,0x84,0x53,0x27,0xfe,0x8c,0x7a,0xe3,0x2d,0x7b,0x05,0xf8,0x43,0x58,0x5e,0x75,0x92,0xb8,0x2e,0x85, - 0xba,0xcc,0x5a,0xfb,0xa3,0xa0,0x31,0xeb,0x0c,0x18,0x04,0x70,0x31,0xb7,0x7c,0xed,0xd5,0xe3,0xa2,0xfa, - 0x1d,0xd3,0x04,0xc0,0x9a,0x12,0x43,0x30,0x4f,0xaf,0x47,0xb6,0x20,0x4d,0x45,0x4c,0xec,0xe8,0x7b,0x89, - 0x78,0xe6,0xab,0xe2,0x3a,0x03,0xcd,0x3c,0xe0,0x0b,0xfd,0xcf,0x65,0x26,0x95,0xae,0x79,0xbd,0xbe,0x7f, - 0x78,0xa8,0x3b,0xa6,0xc3,0xa8,0xc1,0x63,0xfd,0xaf,0xb4,0x20,0x57,0x44,0x70,0x55,0xe6,0xcb,0x08,0x48, - 0x6c,0xf7,0x48,0xd9,0xf6,0x46,0xad,0x11,0xc6,0xee,0xfb,0x8d,0x83,0x3d,0xa3,0x56,0xd8,0x84,0x73,0x42, - 0xc3,0x2b,0xda,0x3c,0x16,0x8e,0x2f,0x92,0xb9,0x5a,0x24,0xa5,0x3a,0x23,0x9c,0x77,0x4d,0x07,0xca,0x98, - 0xce,0x96,0x4b,0x3a,0x0c,0x08,0xd3,0x5d,0xb6,0x44,0x8f,0xc9,0x85,0x49,0x78,0x99,0x11,0xaa,0x97,0x40, - 0x7a,0x0b,0xa5,0x9b,0x20,0x8e,0xde,0x20,0xfa,0xf8,0x5a,0x35,0xe9,0x59,0x3c,0xde,0xa8,0xcb,0x61,0x99, - 0x94,0x4c,0xa6,0xbf,0x06,0x9a,0x50,0x1c,0x05,0x98,0xe8,0xd7,0xb9,0x67,0xa4,0xe9,0x71,0x52,0x88,0x12, - 0x8d,0x5c,0x90,0x81,0xfc,0xc0,0x07,0x09,0xd1,0x8f,0xcc,0x64,0x07,0x2c,0x71,0xee,0x14,0xc8,0x20,0xf0, - 0xa2,0x12,0x79,0x01,0x17,0xde,0x61,0x58,0xc8,0xd9,0xc3,0x72,0xe0,0xa5,0xa1,0x08,0x23,0x56,0x68,0xe8, - 0x2f,0xb8,0x2e,0x6d,0x4c,0x52,0x0c,0xb4,0xfb,0x9e,0x50,0x7e,0x43,0xea,0x1f,0x51,0x78,0xd1,0x08,0x7f, - 0x93,0x63,0xf3,0x05,0x48,0xa6,0xd3,0x74,0xf2,0xc9,0x9e,0xd4,0x5c,0x28,0xe6,0x42,0xdd,0x32,0x1b,0x5a, - 0x3f,0x43,0xdb,0x97,0x42,0x1d,0xcf,0xdc,0x6e,0x6f,0x05,0xc9,0xb2,0x05,0x9d,0xf9,0x16,0x21,0xd3,0xd4, - 0x62,0x8e,0x1b,0x04,0x0e,0x2e,0x84,0x82,0x85,0xe3,0xb6,0x2b,0xd6,0x84,0xb0,0xb4,0x69,0xc2,0x95,0x23, - 0x98,0xe6,0x4c,0xdd,0x9a,0xf8,0x9b,0x44,0xe3,0xcf,0xa3,0xe1,0xf7,0x84,0xf2,0x57,0x8a,0xb6,0x0e,0x68, - 0xb0,0xf5,0x1a,0xaf,0x13,0x79,0x3d,0xb2,0xc4,0x6a,0xbd,0xd9,0x40,0x3a,0xae,0xb1,0x9e,0xe9,0x90,0xe9, - 0x70,0x3a,0x77,0x66,0xd2,0xde,0x72,0xb5,0xe9,0x80,0xcc,0x0e,0x58,0xf7,0x39,0x6d,0xf7,0x34,0x6a,0x49, - 0xc6,0x27,0x84,0xd1,0x56,0x27,0xc9,0xb3,0x70,0x45,0x9d,0xe1,0xf3,0x5e,0x93,0x6a,0x40,0x4c,0x3c,0x56, - 0x82,0x8d,0x87,0x38,0xad,0xcc,0xab,0x42,0x0e,0xd7,0xe8,0x72,0xe4,0x95,0xa7,0x77,0xce,0x3c,0xea,0x63, - 0x9c,0x4b,0x34,0xe5,0x6c,0x65,0x42,0x48,0x2f,0x1d,0x08,0x75,0xeb,0xd9,0x14,0xcc,0xe9,0x80,0x54,0x9e, - 0xdb,0xd1,0x96,0x5a,0x6f,0xe6,0x1f,0xab,0x6a,0xe6,0x99,0xd0,0xa7,0x70,0xb5,0x64,0x7d,0x45,0x48,0xa5, - 0x00,0xf8,0xd0,0xaa,0x0b,0xc9,0x03,0xf8,0xe2,0xcc,0x44,0xca,0xd0,0xfe,0x9c,0xc1,0xdc,0x65,0x26,0xc7, - 0xa4,0x74,0x72,0x0a,0x6a,0x89,0x45,0xd3,0xf8,0xa5,0x17,0x71,0x69,0x78,0x5d,0x28,0x7f,0xda,0x53,0xc4, - 0x20,0xa2,0xcd,0xa6,0x41,0x60,0x49,0xe5,0x98,0x01,0x2d,0x31,0xaf,0x4b,0xa6,0x07,0xb8,0xa1,0x65,0xb4, - 0xd9,0xf5,0x71,0x7a,0x66,0x14,0x91,0x99,0xd5,0x41,0x76,0x6c,0x10,0x9e,0x54,0xbe,0x6c,0x54,0xd3,0xae, - 0x4f,0x2a,0x11,0x6b,0xca,0x57,0x10,0xff,0xe7,0xc9,0x73,0xb8,0x27,0x0d,0x6d,0x0a,0xa4,0x7c,0x7d,0x02, - 0x61,0x0f,0xa2,0x35,0x2c,0x64,0xf6,0x11,0xbe,0xaf,0xfa,0x91,0x80,0x2b,0x27,0x22,0x84,0xb8,0x61,0x86, - 0x32,0x34,0x7b,0xee,0xc1,0xbd,0x84,0x38,0x9d,0x58,0x7d,0x88,0xf8,0x57,0x04,0x17,0xab,0xec,0xc0,0xe2, - 0xff,0x03,0x22,0xe7,0x41,0x0a,0xec,0x87,0xe7,0xa3,0x80,0x5e,0xce,0x99,0xa9,0x28,0x55,0xaf,0x5f,0x47, - 0xaa,0x6e,0x1e,0x13,0xaa,0x8a,0x2b,0x65,0x0d,0x9b,0xe2,0x99,0xb2,0x24,0x66,0x3c,0x65,0xc4,0x34,0x71, - 0x98,0x8a,0x98,0x75,0xc2,0xae,0xcc,0xf1,0x5f,0xa8,0x85,0x3a,0x53,0xd7,0x6a,0xac,0x2e,0x3d,0xdb,0x6a, - 0xc4,0xb8,0xd7,0xe4,0x0e,0x91,0x4d,0x46,0x5d,0xd9,0xe6,0x5b,0x52,0x36,0x7b,0x4b,0x61,0xc8,0x10,0x4e, - 0x12,0x6c,0x83,0x94,0x88,0x7c,0xe9,0x52,0x44,0x0b,0xbc,0x92,0x8c,0x57,0x95,0x27,0x73,0xce,0x5b,0x44, - 0x54,0x43,0x5f,0x83,0xd2,0x48,0x8d,0xbd,0x83,0x55,0xc5,0x12,0x1a,0x1e,0xb6,0x0a,0xe4,0xac,0x61,0x47, - 0x5c,0x32,0xf0,0x6a,0xc4,0xc1,0xfa,0x25,0x79,0x97,0xf1,0x16,0x9f,0x0e,0x3b,0x9d,0xac,0xfb,0x0f,0x5f, - 0x44,0xf8,0x07,0x54,0xa7,0x10,0x7d,0x10,0xdc,0xf8,0x94,0x2c,0xa1,0x78,0x91,0x94,0xc5,0x72,0x0f,0x80, - 0xf5,0x7e,0xc2,0xcd,0x4e,0x30,0x65,0xaa,0x46,0x44,0xdf,0x84,0xab,0xa4,0x8e,0x46,0xc7,0x9f,0x68,0x98, - 0x27,0x1d,0x23,0xdb,0x95,0x0b,0x47,0x45,0x44,0x84,0x0b,0x20,0x83,0xb9,0x44,0x2f,0x11,0x48,0x46,0xe4, - 0x4e,0x30,0x85,0x2e,0x7d,0x53,0xe8,0x8c,0x26,0xac,0x3c,0xae,0x4f,0xa2,0x3e,0xff,0x55,0x22,0x6e,0xe8, - 0x1c,0x9b,0x1d,0x13,0x1d,0x65,0x83,0x81,0x9c,0x74,0xac,0xf2,0x27,0xd1,0xc8,0xb8,0x68,0x7d,0x73,0x48, - 0x23,0xfc,0x36,0xa4,0x1a,0xf3,0x70,0xa2,0x60,0x76,0xc2,0xfe,0xf4,0xc4,0x28,0x12,0x99,0x46,0x23,0xa3, - 0x99,0xf9,0x36,0xe4,0xe8,0x16,0x33,0xa0,0xa6,0x4f,0xe1,0x9c,0x95,0x6b,0xfb,0x13,0xca,0x13,0x45,0x36, - 0xee,0xa7,0xd2,0xe1,0xfb,0x09,0x2f,0x78,0x1a,0xc1,0x19,0x2d,0x60,0x14,0xc3,0xe6,0x71,0x84,0x2a,0x46, - 0x9d,0x0a,0x10,0x88,0x4a,0xac,0x19,0xe4,0xab,0xf0,0x13,0xf0,0x61,0xfc,0x2d,0xfd,0x95,0x36,0xbb,0x1f, - 0x48,0x73,0x31,0x21,0xe3,0xd2,0xca,0xc9,0x78,0xe1,0x27,0xd0,0x46,0x32,0xc9,0x31,0x01,0x9f,0x2a,0xc0, - 0xc0,0x70,0xc5,0x6c,0x2b,0xb1,0xdf,0x17,0x00,0xf3,0x60,0x3f,0x95,0x81,0xd1,0xdf,0x71,0x60,0x3a,0x8b, - 0x46,0x1d,0xde,0xdb,0xd0,0xba,0x68,0xd9,0x4f,0x8c,0x65,0x7c,0x56,0xb1,0xc9,0xc6,0x5f,0xd4,0xab,0x6c, - 0x73,0xed,0x84,0x44,0x2c,0xbc,0x4a,0x96,0x1f,0x79,0x09,0x07,0xa6,0x9e,0xac,0xe3,0x13,0x95,0x79,0xe6, - 0xea,0x6c,0x1d,0xb2,0x25,0x1e,0x2d,0xa3,0x51,0x38,0x4b,0xf2,0xc1,0x9d,0x8b,0x82,0x0e,0x56,0x44,0xab, - 0x92,0xa7,0x41,0x51,0xb3,0x2c,0xe8,0x8c,0xc8,0xa6,0xf4,0x0c,0x01,0x5d,0xeb,0x25,0x02,0x21,0x10,0xbe, - 0x99,0x43,0x32,0x96,0xd7,0x6f,0xb3,0x3a,0xab,0x88,0xec,0xa1,0x6c,0x4a,0x1d,0x69,0x6c,0x42,0x59,0xec, - 0xc7,0xfb,0x66,0x9e,0x36,0x08,0x6c,0xa1,0x3f,0xc6,0x77,0xd8,0x7f,0x6d,0xfc,0x91,0x33,0xc1,0x9a,0x3c, - 0x09,0x73,0x4f,0x42,0x67,0x51,0x51,0x1d,0x80,0xbe,0x1c,0x11,0x0b,0x34,0xa5,0x6f,0x73,0x1c,0x37,0x51, - 0xac,0x9b,0x29,0x7b,0x6b,0x8b,0xe2,0x79,0x42,0xc5,0x4b,0x29,0xee,0x89,0x42,0xe7,0x18,0xa5,0xe7,0xa8, - 0x52,0x85,0xb9,0x65,0x69,0x72,0xf8,0x85,0x95,0xc4,0x21,0x95,0x55,0x96,0x9f,0x15,0xaf,0x8d,0x3b,0x33, - 0x4d,0x0a,0xc1,0x00,0x6f,0x7e,0x83,0xee,0x58,0x6a,0xd9,0xd0,0x17,0x06,0xa1,0x79,0xb6,0xd8,0x1c,0x90, - 0xca,0xe5,0xd8,0xcd,0xf5,0x60,0xc2,0x1b,0x4c,0x73,0x6c,0xae,0x00,0x6d,0x36,0xa2,0x7f,0x56,0x1a,0xce, - 0x88,0x03,0x5b,0x0d,0xd8,0x52,0xa1,0x10,0xcc,0x46,0xfb,0x9c,0x7b,0x48,0x98,0x9c,0x89,0xf1,0x79,0x14, - 0x03,0xe5,0x6c,0x3c,0x4c,0xe6,0x79,0x67,0xf8,0x11,0xe7,0xac,0x98,0x80,0x15,0xb3,0xf5,0x6a,0x99,0x55, - 0xe6,0x04,0x42,0x39,0x9d,0xc2,0x24,0x08,0x9b,0x9e,0xf2,0xbb,0xb1,0x94,0xb8,0x69,0xbf,0x27,0xc6,0xc1, - 0xa4,0x6b,0x6d,0x8d,0x50,0x6c,0x8e,0x10,0xc1,0x99,0x26,0xcc,0xa6,0x71,0x7c,0x03,0xe9,0x58,0x67,0x29, - 0xb1,0xfc,0x3a,0xc5,0x1e,0x90,0xa5,0xd1,0xd7,0x97,0x27,0xbb,0x62,0x0b,0x09,0x61,0x00,0xfb,0x48,0x22, - 0x84,0x4c,0x03,0x71,0x76,0x8f,0x35,0xee,0x96,0xe8,0x4a,0x93,0xb0,0x84,0xd2,0x8a,0xa4,0x2b,0x2f,0x1d, - 0x15,0x31,0x6b,0xd7,0xb7,0xec,0xe0,0xc4,0x09,0xc1,0xf6,0x45,0x94,0x27,0x99,0xaf,0x3c,0x09,0x1b,0x27, - 0xc4,0x05,0xd9,0xf9,0x4d,0x72,0x48,0x6b,0xd2,0x4e,0x7b,0x70,0x88,0x05,0xd2,0x11,0xb9,0x90,0xe0,0xdc, - 0xe2,0xdc,0x6e,0x2b,0x8c,0x70,0x5e,0x61,0x8c,0x9e,0xd3,0xfd,0x86,0xbd,0xdb,0xe1,0x1d,0xdc,0x9d,0x34, - 0x3a,0xb0,0x42,0x6f,0x01,0x93,0xe7,0x50,0x3c,0xb7,0xcb,0x68,0xb3,0x2b,0x8e,0x38,0xe3,0x36,0xca,0x71, - 0xc3,0xa9,0x27,0x09,0x42,0xa1,0x6c,0x1b,0x0f,0xfc,0x96,0xd9,0x50,0x24,0x63,0xf8,0xf5,0xb7,0x8c,0x2c, - 0x5f,0xb4,0x4c,0x21,0xd8,0x13,0x11,0x67,0x7a,0x87,0x68,0x60,0x27,0x4c,0xef,0xab,0xa7,0x59,0x8b,0x3e, - 0xe9,0xae,0xce,0xc8,0x77,0x71,0xff,0xe6,0xe0,0x28,0xde,0x56,0xcb,0x8c,0x7c,0xe7,0xfc,0x4e,0x69,0x68, - 0xe5,0xd4,0x6e,0x68,0xe3,0x1d,0x48,0xc4,0xaf,0x13,0xe0,0x76,0x13,0xef,0xa0,0x90,0x50,0xd5,0xec,0x9d, - 0xda,0x68,0xb9,0xb8,0x27,0x41,0x7c,0xd3,0xb1,0x06,0x60,0x8d,0x28,0xc3,0x29,0x74,0x2d,0x0c,0x9e,0x63, - 0xc6,0x73,0x5d,0xb8,0x34,0x11,0x75,0x61,0xdf,0xce,0x26,0x8d,0x9a,0x3b,0x78,0x01,0xa1,0xd8,0x96,0x61, - 0xd1,0xb0,0x86,0xac,0x98,0x0f,0xfb,0xe7,0xa0,0xc8,0x4a,0x76,0x12,0xdc,0x78,0xe2,0x9e,0xe7,0x5b,0x6a, - 0x05,0x36,0xb9,0xdf,0xcd,0xd9,0x35,0x8b,0x51,0x0c,0x3c,0xd3,0xf0,0xbb,0x5e,0xe7,0xae,0x85,0xe7,0x9a, - 0x58,0x1e,0xdc,0x99,0xd2,0x10,0xab,0x12,0xbe,0x59,0x99,0x55,0xf1,0xcf,0xf9,0x0e,0x4a,0xcf,0xdc,0x3f, - 0xf3,0x3d,0xb0,0x6f,0x44,0x9e,0xfc,0x18,0x2a,0x81,0xf8,0x19,0xef,0x79,0x97,0xa0,0x0a,0xff,0x8d,0x8e, - 0x5a,0x2e,0x05,0x1b,0x32,0x7e,0x22,0xd2,0x42,0x3f,0x21,0x8a,0x31,0x7e,0x4f,0x62,0xfd,0xe0,0xdb,0xef, - 0xb7,0x97,0x3f,0x1b,0x35,0xa3,0x6c,0x3f,0x40,0x78,0x9a,0x38,0x8b,0xc1,0x1f,0x7a,0xc6,0xdd,0xaf,0x7c, - 0x00,0xdb,0x02,0x94,0xbe,0x63,0x90,0x26,0x0b,0x31,0xfe,0x68,0x77,0xaa,0xd2,0x69,0xe7,0xf2,0x07,0x25, - 0xef,0x50,0x22,0x77,0x13,0xd4,0x89,0x8d,0x07,0x22,0x8b,0x2f,0x5a,0x83,0x40,0x00,0xff,0xf7,0x13,0xea, - 0x45,0xa4,0xe8,0xb7,0xf0,0x76,0x25,0xeb,0x63,0xba,0xad,0x09,0xba,0x0c,0x82,0x61,0x4b,0x12,0x97,0x69, - 0xdf,0xfd,0xb0,0xd1,0x31,0x72,0x51,0x5d,0xe3,0x57,0xc7,0x1b,0xb8,0x17,0xa0,0xdb,0x36,0xed,0xfe,0xb0, - 0x57,0xdc,0x7a,0x50,0x5f,0x9c,0x05,0x71,0xb0,0x48,0x9b,0x73,0xb6,0x29,0x1a,0xc9,0xe3,0x96,0x62,0xe8, - 0xad,0xf7,0x69,0x4f,0x3b,0x36,0x32,0xde,0xef,0xab,0xac,0xba,0x7e,0x97,0x41,0xdb,0x5c,0xca,0x5d,0x31, - 0xb7,0xc5,0xbb,0x9c,0xe6,0x17,0x41,0xcb,0x42,0xef,0xa7,0xce,0xfe,0x60,0x83,0xca,0x2a,0x9b,0x75,0x1c, - 0x80,0x8c,0x53,0x75,0xee,0x7b,0x68,0x1b,0xd0,0x04,0x56,0x80,0xef,0x75,0x09,0xb3,0x78,0xfa,0xb6,0x1e, - 0x76,0xb5,0x26,0x25,0x1b,0x3b,0xcd,0xf9,0x17,0x87,0x3d,0x7e,0x71,0xb0,0xe2,0x50,0xc5,0xa3,0xa6,0xd9, - 0x63,0xd7,0xfe,0xf3,0xe2,0x59,0x59,0xf5,0xd6,0x82,0xbf,0x16,0x4d,0xe4,0x84,0x83,0xf7,0xf6,0x38,0x89, - 0xb1,0xb0,0xa9,0x9b,0x60,0x42,0x1e,0x72,0x0f,0x58,0x1f,0x89,0x8c,0xda,0xc5,0xbf,0x02,0x05,0x87,0xe3, - 0x9d,0x7e,0x59,0x90,0x24,0x7b,0x50,0x1f,0xf7,0xbe,0xeb,0x37,0xab,0xf4,0x9c,0x6d,0x58,0xa3,0x2d,0x4f, - 0x39,0x4a,0x0a,0x51,0x01,0xfc,0xdc,0x95,0xac,0x40,0x19,0x27,0xd2,0x11,0x3e,0x5d,0x81,0x36,0x5b,0x81, - 0x1c,0x2a,0xb8,0x1a,0x86,0x95,0x9e,0x73,0x11,0x78,0x26,0x8e,0x15,0xaf,0x58,0x15,0x07,0x55,0x2c,0x3b, - 0x8d,0x7d,0xa6,0x8c,0x15,0x17,0xc2,0x78,0x8e,0x96,0x3e,0x67,0x6f,0x45,0xfa,0x21,0x3e,0x90,0x07,0x0c, - 0x5a,0x02,0xa3,0x79,0x08,0x19,0xd2,0x1b,0x84,0xb1,0x3a,0x2f,0xe7,0xc4,0xa3,0x73,0x0d,0x2d,0x49,0x13, - 0xc6,0xe9,0x27,0x80,0xee,0x6d,0xa7,0x68,0xb9,0x9b,0x6f,0x9c,0x9f,0x89,0x68,0xc2,0x2a,0x8f,0xc5,0x03, - 0x0e,0x9b,0x29,0x27,0xb2,0x21,0x7f,0x90,0x54,0xc3,0xfd,0xfd,0x9c,0xb6,0x2b,0x0c,0x14,0xf3,0x13,0x4d, - 0x46,0x87,0x29,0x0e,0x78,0xe7,0x46,0xe9,0xb9,0x95,0x7c,0xd0,0x30,0xa9,0x23,0xd7,0x79,0xde,0x5c,0xeb, - 0x75,0xd3,0x4d,0x6a,0xcf,0xbb,0x81,0x64,0xe1,0x83,0x13,0xc4,0xcf,0xb8,0x80,0x4b,0x5e,0x23,0x0f,0x75, - 0xf2,0x5d,0xb6,0x5d,0xab,0x0b,0x1a,0x00,0xfe,0x8a,0x4a,0x6c,0x35,0x82,0xcb,0x89,0x4d,0x89,0x15,0x91, - 0x1a,0x44,0xfa,0x6a,0x16,0xaa,0x10,0xd9,0x4a,0x95,0xd4,0xc2,0xc7,0x4f,0xf0,0x53,0x8d,0x68,0xd6,0x68, - 0x8a,0x3f,0x42,0xe4,0x95,0x18,0x2f,0xdb,0x3f,0xc0,0xd3,0x6a,0x15,0x67,0xa0,0x70,0x21,0x81,0xca,0x61, - 0x13,0x01,0xec,0x4f,0x3f,0x6e,0x5f,0x89,0xbc,0x79,0xba,0xb7,0x37,0x37,0x40,0x4d,0x9c,0x89,0x7c,0x0d, - 0x87,0xb4,0xbe,0x6f,0xf3,0x82,0x68,0x70,0xfe,0x66,0x65,0xbf,0xc1,0x16,0x5e,0xb5,0x22,0xce,0xcc,0xfa, - 0xe4,0xdf,0x62,0x7b,0xb7,0xf2,0x2d,0xee,0xa8,0xad,0x15,0xc6,0x11,0x98,0x6a,0xa5,0xc9,0xcd,0xb0,0x1c, - 0xfd,0x00,0x67,0x28,0x49,0x0e,0x20,0x67,0x9e,0x85,0x6c,0xf1,0x3f,0xb7,0x51,0x39,0xb8,0x00,0xa2,0xfb, - 0xe9,0xa0,0x7e,0xb7,0xb6,0x38,0xef,0xb4,0x38,0xe7,0x16,0xbb,0x93,0xa0,0x5b,0x66,0x8e,0xdb,0xce,0x77, - 0x1d,0x4d,0xd8,0xa5,0x8c,0xbe,0xe2,0x69,0x0f,0x56,0x85,0x4c,0x4c,0x46,0xff,0x20,0x6c,0x6d,0x9b,0xe3, - 0x7e,0x97,0x6d,0x43,0x46,0x5f,0x5c,0x9c,0x96,0xcd,0x6d,0x29,0xcb,0xbb,0x6d,0xc6,0x19,0x8a,0xa9,0x71, - 0x34,0xd0,0x21,0xbb,0x59,0xe1,0x5d,0xb9,0xb7,0xe4,0x1a,0xaa,0xa1,0x63,0x02,0x7e,0x6a,0x69,0x50,0xa5, - 0x97,0xaf,0x98,0x70,0xca,0x99,0x80,0xda,0x0f,0x06,0xc1,0xbe,0x6f,0xec,0x91,0xfb,0xd5,0x40,0x0e,0x20, - 0x11,0x51,0x07,0x41,0x14,0x9d,0x50,0x05,0x70,0xca,0x9e,0x11,0x5f,0xd4,0x78,0x7c,0x91,0x03,0xcb,0x80, - 0xf2,0x51,0xab,0xd3,0x5d,0x79,0xfe,0x10,0xce,0xa8,0xc0,0x46,0x2b,0xc8,0x04,0x64,0xf8,0x47,0x9b,0x43, - 0x96,0x6c,0xef,0x58,0x86,0x85,0x44,0xcf,0xd0,0xe5,0xb5,0xcd,0x63,0x05,0x9b,0xc7,0x4a,0x6e,0x31,0x60, - 0xf4,0xef,0xda,0xe6,0xbb,0x49,0x64,0x44,0x38,0xed,0x9d,0x4d,0xa4,0xe7,0xdf,0x90,0x85,0x1e,0xb5,0xb3, - 0x6d,0x8d,0xcd,0xf3,0x1d,0x36,0x8c,0xad,0xc4,0x1f,0xaa,0x4d,0x70,0xe6,0xc5,0x79,0x56,0xe5,0x1c,0x04, - 0x9b,0xe6,0x26,0x0b,0x05,0x09,0x5a,0xe4,0x97,0x19,0xf3,0x7f,0x49,0xd0,0x8c,0x00,0xf3,0x44,0xd4,0x18, - 0x46,0x33,0x49,0xfc,0x4f,0x58,0x1c,0xbe,0x4a,0xaa,0x4e,0x12,0xf3,0x5e,0x5a,0xfa,0x83,0x18,0x07,0xad, - 0x02,0x09,0x2b,0x97,0x57,0xda,0x07,0x82,0x29,0xc3,0x55,0x94,0x26,0x2b,0x50,0xf3,0x13,0x61,0x5c,0x52, - 0x02,0x79,0xc8,0x46,0xc1,0xa3,0x0d,0xc3,0x27,0xc5,0x7a,0xfd,0x0a,0x76,0x1a,0x2b,0xd9,0xf4,0x10,0x42, - 0xc8,0x93,0x2e,0x66,0x44,0xea,0x3a,0xdf,0xab,0x78,0x12,0x61,0xd7,0x95,0x6c,0x60,0x9f,0x03,0x79,0x8f, - 0x10,0x70,0x0e,0xd1,0x62,0x6d,0x18,0xf0,0x57,0xef,0xc2,0x8a,0x80,0x17,0x99,0xc4,0x30,0xe3,0x07,0xc1, - 0x2f,0x3b,0x85,0x90,0xe9,0xad,0xc2,0x0f,0xbe,0xde,0xbf,0x60,0xbf,0x9f,0x34,0xe7,0xa8,0xd5,0x5b,0x1f, - 0xb2,0x00,0x24,0x09,0x88,0xaa,0x2e,0x2f,0x67,0xb4,0x23,0x6a,0xda,0x1d,0x59,0x11,0x48,0x28,0xb0,0xe0, - 0xe9,0xcb,0x47,0x4f,0x9f,0x68,0x13,0x68,0xe1,0xe5,0x47,0x41,0x53,0xd1,0x58,0x62,0xe8,0xee,0x5b,0xd1, - 0xca,0xd9,0x95,0xcd,0x9a,0x39,0x35,0xb9,0x8e,0x0b,0xd0,0x2e,0xc2,0xbd,0xc0,0x6d,0xa1,0x29,0x95,0x43, - 0xbd,0xc5,0x48,0x3f,0xc7,0x52,0xaf,0x67,0x28,0xf5,0xb9,0x6e,0xdb,0x49,0x69,0x70,0xa9,0x46,0xab,0x15, - 0xc9,0x6a,0xac,0x55,0x02,0xe8,0x78,0x36,0xac,0xe9,0x1b,0xbb,0x98,0xc5,0x50,0x91,0x27,0x70,0x5a,0x7b, - 0x06,0x57,0x88,0xf7,0x4f,0x7f,0x7e,0xff,0xf0,0xed,0xd3,0x87,0xad,0x51,0x53,0xfa,0xd2,0x9d,0xa1,0x7a, - 0x76,0x38,0xce,0x65,0x9e,0x2d,0xcf,0x0d,0xc9,0xe4,0x9b,0xf8,0x35,0x44,0x68,0x97,0xcb,0xe7,0x44,0x3c, - 0x4c,0x73,0xc2,0x36,0x30,0x98,0x49,0xcf,0x52,0x41,0x8a,0xca,0x74,0xa5,0x73,0xf1,0x8a,0x50,0x0e,0x30, - 0x00,0x19,0x66,0x3d,0xf7,0xb2,0xd8,0x6c,0x65,0x1a,0x4e,0x76,0x0f,0x37,0x3d,0xcb,0xe0,0x41,0xc2,0xf7, - 0x9d,0xfd,0x68,0x48,0x36,0x8e,0xa7,0x93,0xea,0xbd,0x22,0x9b,0x32,0x83,0xc4,0xdb,0x63,0x0e,0xb0,0xdb, - 0x4a,0xcd,0x17,0xb0,0x8c,0x02,0xa2,0x57,0x30,0x42,0xdd,0x42,0xa9,0x2e,0x14,0x59,0x6d,0x4a,0x2f,0x5d, - 0x6f,0x2e,0x2a,0x83,0x77,0x04,0x91,0x94,0x43,0x16,0xa5,0x74,0xc9,0xca,0x68,0x18,0x11,0x12,0xed,0x63, - 0x85,0x84,0x63,0x8b,0xf8,0xf0,0x63,0x17,0x5b,0x02,0xdb,0x27,0x99,0x26,0xc4,0x18,0xf6,0xd8,0x40,0x5e, - 0x88,0x25,0x6b,0x1d,0xcf,0x11,0x30,0xfc,0xf2,0x85,0xd2,0x64,0x9c,0xc3,0x9f,0x49,0x8b,0x29,0xe2,0x59, - 0x11,0x1e,0xa8,0xe1,0xcd,0x06,0xd9,0xdf,0xe8,0x19,0x04,0x4b,0xaf,0x58,0x63,0x44,0x84,0xfe,0x50,0x63, - 0x1d,0x36,0x38,0x86,0xe0,0x67,0xcc,0xb1,0x5c,0x73,0x8c,0x99,0x2b,0xc9,0x88,0x1c,0x66,0xb9,0x63,0x58, - 0x27,0xcf,0x80,0x02,0x5e,0x65,0x2c,0x17,0x54,0xf0,0xb7,0xca,0x61,0x57,0x99,0x5d,0x70,0xc1,0x9e,0x8b, - 0x01,0xc4,0x98,0x4b,0xd5,0x38,0xed,0x5d,0xc1,0xa4,0xf6,0x97,0xf5,0xdb,0x6c,0xcb,0xf3,0x2d,0x64,0x73, - 0x2b,0xcf,0x0f,0x23,0xd3,0xd6,0xde,0x67,0x84,0xdb,0xe5,0xe6,0x05,0x6a,0xff,0x2c,0xc9,0xf7,0x8f,0x36, - 0xde,0xa1,0x68,0xc4,0xed,0x44,0xdd,0xc0,0xde,0x1b,0x7f,0xa6,0xf8,0xb3,0xc4,0x1f,0x58,0x84,0x5f,0xd0, - 0xff,0x05,0xfd,0x3f,0xd3,0xbe,0x96,0x3d,0x62,0x13,0x02,0x1f,0xb1,0xb7,0xcd,0xfc,0x98,0xea,0x39,0xe4, - 0x56,0x5f,0x7c,0x2d,0x86,0xdb,0x5f,0xdf,0xa7,0x81,0x83,0x49,0x43,0x33,0x6e,0x67,0xce,0xa2,0x2f,0xbe, - 0xec,0x14,0x98,0xb5,0x0a,0x4c,0xa3,0xaf,0xff,0xd9,0x29,0x30,0x6d,0x15,0x58,0x46,0x5f,0xfe,0x77,0xa7, - 0xc0,0xb2,0x55,0xe0,0xe8,0xfe,0x97,0xe0,0x11,0xd7,0x6b,0x7a,0xe0,0x2d,0xed,0x77,0x71,0xff,0x28,0xea, - 0xcf,0x38,0x40,0xc6,0xf9,0x7a,0x7d,0xb1,0x5e,0x2f,0xa2,0x9b,0xfa,0x32,0xd7,0xee,0x00,0x93,0x94,0x6a, - 0xfd,0xe2,0xcb,0x78,0x86,0xb0,0x81,0x6c,0x11,0x3b,0x94,0xa4,0xaf,0xe3,0x79,0x27,0xe9,0xeb,0x7f,0xc6, - 0xd3,0x4e,0xd2,0x97,0x87,0xf1,0x62,0x7f,0xbf,0x95,0x72,0x14,0x2f,0x0e,0x0e,0x5a,0x9f,0x1d,0xc5,0x17, - 0xed,0x32,0x5f,0x7f,0x11,0x5f,0xb4,0xcb,0x1c,0xdd,0xff,0x22,0x3e,0x6f,0x17,0x3a,0xba,0xff,0x55,0x7c, - 0x7e,0x70,0x00,0xba,0x4c,0x26,0xc4,0xed,0xbc,0xeb,0x84,0x86,0xa3,0xc6,0x9a,0xe1,0x1a,0x5e,0x73,0xe0, - 0x47,0xf1,0x6c,0x09,0xc7,0x89,0xbd,0x82,0xe1,0x9a,0xb6,0xc4,0xf5,0xc1,0x41,0x84,0x2b,0xbd,0xae,0x74, - 0x74,0xdd,0xb1,0xdc,0xca,0x07,0x2b,0x7e,0xf1,0x05,0xb1,0x16,0x22,0xe5,0x28,0x64,0x58,0x62,0x26,0xdd, - 0x5c,0xdc,0xec,0x00,0x2d,0x6e,0x44,0x97,0xe2,0x95,0xef,0x2d,0x18,0xc3,0x03,0xfe,0x0c,0x3c,0x0e,0xee, - 0xe7,0x70,0xf0,0x95,0xfa,0xf0,0x05,0x09,0xed,0x24,0x81,0x29,0xa1,0x91,0xf6,0xae,0xe8,0x84,0xb5,0x77, - 0x90,0x84,0xd0,0x51,0x25,0xab,0x07,0x87,0xa3,0xbb,0x63,0x7a,0xbd,0xbb,0x3f,0xd9,0xbf,0x1b,0x44,0xe1, - 0x5d,0x08,0xe6,0xa3,0x20,0x36,0x89,0xb6,0xf1,0x55,0xe4,0xf2,0x55,0x60,0x33,0x56,0x04,0x0c,0x3d,0x34, - 0xd5,0xcf,0xbc,0xd5,0xda,0x7e,0xca,0xc1,0xf1,0xc7,0x15,0x42,0xa4,0xb1,0x5d,0x53,0x75,0x82,0xd0,0xbc, - 0xbe,0x54,0xed,0xdf,0x5d,0x01,0x09,0x02,0xd8,0x2f,0xdb,0x46,0x24,0x2e,0x92,0xcf,0x66,0xdb,0x44,0xdc, - 0x2b,0xb0,0x89,0xe2,0x63,0xcf,0x24,0xe8,0x17,0x7b,0xb2,0x87,0x99,0xd5,0xbe,0x9b,0x18,0x1f,0x6e,0xef, - 0xdf,0xf0,0x35,0x1a,0x8d,0xd2,0xc1,0xe2,0xf8,0x12,0x34,0xbe,0x3d,0x34,0xf1,0x1d,0x82,0x7e,0xf4,0x2b, - 0xeb,0x9a,0x71,0xfe,0xdd,0xca,0xb2,0xc6,0x99,0xfa,0x71,0x0d,0x2f,0xd3,0xa5,0x84,0x12,0xd2,0xef,0x38, - 0xc8,0x6e,0xa9,0xd0,0xf3,0xa2,0x6b,0x1c,0x05,0x6b,0xb5,0xde,0x43,0xe0,0x74,0xd6,0x5e,0x1b,0x57,0x53, - 0x17,0x30,0xa8,0xb2,0xfe,0xad,0x4d,0x12,0xec,0xc2,0xfb,0x86,0x10,0x3c,0xac,0x23,0xfd,0x22,0xec,0x09, - 0x4b,0xf9,0xff,0x4f,0xe7,0x6b,0x47,0x58,0xbf,0x88,0xf1,0x8d,0xa5,0x52,0x7b,0x5c,0x8a,0xf0,0x30,0x9c, - 0xbc,0xe5,0xa8,0x87,0xa1,0x48,0x7e,0x76,0xde,0x8c,0x42,0xca,0xd7,0x84,0xf1,0x22,0x2b,0x56,0x81,0xb2, - 0x15,0x70,0x7e,0x14,0x13,0x53,0x90,0x4f,0xa7,0x73,0x16,0xd2,0x26,0xc1,0xa2,0x5c,0xd5,0xd9,0x6a,0x19, - 0xf0,0x25,0x0b,0xa2,0x86,0x1e,0xb9,0x36,0x25,0x81,0x8d,0xd0,0xe5,0x91,0x0f,0x7c,0x59,0x04,0x3f,0x81, - 0xd5,0xde,0x31,0x8a,0x65,0xae,0x40,0x66,0xb3,0xb4,0xf9,0x9d,0x89,0x0c,0xb8,0x19,0xe2,0xae,0xd4,0x25, - 0xa4,0x62,0xb5,0xc7,0xa1,0xe8,0x3b,0xd4,0xb1,0x8f,0x88,0x0b,0xd8,0xd2,0xdf,0xe5,0xa3,0x89,0xbd,0xc6, - 0xbb,0xb6,0xbe,0x76,0xb5,0xdc,0xa5,0x93,0x4c,0x28,0xff,0x98,0xce,0x89,0x93,0xf8,0x78,0xa2,0xea,0x93, - 0xb8,0xee,0x05,0x81,0xc2,0x82,0x80,0xd0,0x43,0x15,0xde,0x03,0x76,0x89,0x5a,0xaf,0xe5,0xe5,0xe2,0x80, - 0xc3,0xab,0x20,0x89,0xa5,0x4d,0x1c,0x05,0xd7,0x04,0xb2,0xc4,0xb1,0x26,0xca,0x09,0x71,0x65,0xb1,0x64, - 0x4b,0x63,0x43,0xa9,0xc9,0x07,0xb9,0xf9,0xa0,0x13,0x6c,0x36,0xf7,0xcf,0xc8,0xaa,0xdd,0x1b,0xf7,0x35, - 0xcb,0x5f,0x3c,0x10,0xf5,0x83,0xd9,0x78,0xb0,0xaa,0x4d,0xef,0xf3,0xae,0xe9,0x3d,0x68,0x53,0x78,0x36, - 0xf0,0xad,0x26,0x08,0xd5,0x79,0x93,0x9b,0xf0,0x57,0x25,0xc2,0x5f,0x89,0x9f,0x84,0x51,0xb3,0x5b,0x67, - 0xc4,0x56,0x93,0xbe,0x29,0x7e,0xde,0x99,0x35,0x31,0xb5,0xcf,0x93,0xe0,0xce,0x9d,0x8b,0x60,0x28,0x97, - 0x26,0xf1,0x1d,0xd4,0x41,0xa8,0xa5,0x80,0x94,0xb1,0x43,0x2d,0xef,0xdc,0x95,0x91,0xdf,0x1d,0x21,0xc5, - 0x20,0x54,0x3c,0x47,0x01,0xc3,0x1b,0x7b,0x2c,0xc8,0xa7,0x63,0xe2,0x2f,0xf7,0x73,0xe0,0xc3,0x48,0x9b, - 0xe3,0x94,0x4d,0x08,0x0b,0xcf,0xa1,0x36,0xee,0x31,0xe0,0x43,0xd8,0x14,0x9c,0x5d,0x44,0x7c,0xf5,0xd5, - 0x12,0x37,0xfe,0x51,0x17,0xe3,0xbb,0x84,0x3f,0x1b,0x42,0x9a,0x77,0x95,0x31,0xbd,0x71,0xd1,0x49,0x76, - 0x42,0x34,0xb8,0x73,0x13,0xec,0x97,0xfb,0xc1,0x26,0xf0,0x16,0xa0,0x6c,0x7c,0x31,0xa3,0x8f,0xdc,0x68, - 0x0a,0xbf,0xab,0x5c,0x04,0x42,0xef,0x3e,0xa9,0xe3,0x20,0x7a,0x70,0x08,0xd9,0x22,0x2e,0xc8,0x7a,0x6e, - 0x52,0x4f,0x28,0xf5,0xbb,0xca,0xc6,0xc9,0x0d,0x7f,0xe0,0x8f,0xfd,0x12,0xe0,0x9d,0xbf,0x39,0x38,0x1a, - 0xdd,0x50,0xaf,0x63,0x77,0xce,0xfc,0x40,0xf4,0x19,0xb1,0xdc,0x3c,0x00,0x93,0xfa,0x43,0x45,0x88,0x1e, - 0x83,0xd9,0xc4,0x52,0x9a,0x4b,0x70,0xa8,0x25,0x26,0x70,0xfe,0x00,0x81,0x4a,0x2d,0x7c,0x5f,0x25,0xdf, - 0xc2,0x34,0x7a,0xb7,0xc6,0x59,0x16,0x4d,0x9a,0xf0,0xf7,0x2a,0x49,0xa1,0x96,0x1e,0xad,0xf0,0x1c,0xc5, - 0x5f,0x83,0x81,0xfd,0xbd,0xf2,0x85,0x51,0x46,0xb2,0x2c,0x6e,0x8e,0x54,0xc5,0x0f,0x95,0xa9,0x80,0x43, - 0xbb,0xe2,0x7b,0xc5,0x17,0xa4,0x45,0x2b,0x8e,0x74,0x6c,0xc8,0x14,0xae,0x8b,0xb0,0x06,0xc2,0x0f,0x7e, - 0xfd,0x85,0x7e,0x3e,0x38,0x60,0xa3,0x39,0x9a,0xc3,0x6f,0xb9,0x26,0x01,0xad,0x0d,0x1a,0x37,0x51,0xc7, - 0xdb,0xe3,0xfd,0x5e,0x8f,0xd7,0xa4,0x7c,0x4f,0x63,0x55,0xdf,0x56,0x50,0x24,0x3a,0x81,0x81,0xf6,0xd1, - 0x64,0x07,0x87,0x91,0x5c,0x2a,0xd3,0xc4,0xc1,0x1d,0xa2,0x42,0x43,0x5c,0x63,0x48,0x35,0xea,0x6b,0xb3, - 0x50,0x40,0x1e,0x19,0x22,0x3c,0x4f,0xd2,0xc6,0x19,0x01,0xff,0x51,0xf9,0x84,0xd3,0xfe,0xfe,0x0f,0xbe, - 0xfd,0x7a,0xed,0x15,0xfc,0xa1,0xfa,0x26,0xf9,0xce,0x83,0xfb,0x89,0x1f,0xb7,0x9b,0xc9,0xc0,0x6c,0xbd, - 0x66,0x7a,0xd1,0x13,0x55,0xf3,0x24,0xf9,0x1e,0x83,0x32,0x9b,0xec,0x05,0xcb,0x6b,0x01,0xe7,0x8a,0x61, - 0x34,0xf4,0xbc,0xeb,0x9a,0x2d,0x19,0x88,0xa1,0x71,0x87,0x4d,0x42,0xbc,0x7e,0x13,0x0d,0xc6,0xb8,0xbf, - 0xf1,0x7d,0x5a,0xc3,0x8c,0x67,0xe5,0xde,0x7c,0x49,0xd9,0x14,0x46,0x9a,0x3a,0xf4,0xc8,0xea,0x96,0x00, - 0x11,0xba,0xef,0x53,0x76,0x95,0xa4,0x93,0x9a,0x2f,0x47,0x2c,0x93,0x06,0x18,0x1d,0x02,0x09,0x22,0x5a, - 0x7e,0xae,0x94,0xf3,0x18,0xdc,0x81,0x37,0xa8,0x0e,0xfc,0x5d,0xf6,0xd7,0x49,0xb0,0x44,0xfc,0x86,0xca, - 0x44,0xc7,0x1b,0xa9,0x9f,0xab,0x6d,0x46,0x10,0xc3,0x7b,0x54,0x8c,0x6e,0xf4,0xc1,0x07,0x03,0x1c,0x39, - 0xbc,0x10,0x10,0xae,0xe5,0xb8,0xd7,0x38,0xf5,0x53,0x48,0x07,0xe8,0xcf,0x55,0xd4,0xcb,0x78,0x22,0x0a, - 0x95,0x37,0x25,0x6d,0x13,0xfe,0x69,0x13,0x9a,0x48,0x52,0xbb,0x56,0x1e,0x53,0x82,0x8b,0xdf,0xb5,0xd2, - 0x18,0x04,0xde,0xb7,0x2c,0xa6,0x4e,0x61,0x2c,0x56,0x26,0x85,0xff,0x3e,0xfc,0xb9,0xd2,0x3c,0x68,0x07, - 0x1b,0x50,0x47,0x8f,0x3f,0x41,0xa5,0x63,0xac,0xa5,0x8a,0x51,0xa0,0xaf,0x9c,0x8e,0x8d,0xb9,0x21,0xc7, - 0x65,0x76,0x16,0xfc,0xfc,0x01,0x47,0x58,0x66,0xef,0x70,0x77,0xdd,0x37,0x25,0x6f,0x90,0x7d,0x27,0x97, - 0xb8,0x05,0x03,0xa9,0xa8,0xf5,0xe9,0x1d,0x7c,0xaa,0x33,0x3a,0x9f,0xe3,0xb3,0x0d,0x98,0x97,0xdf,0x59, - 0xdb,0x3e,0x6f,0xd4,0x0c,0x21,0x5e,0xad,0x28,0xf8,0x67,0xeb,0xc8,0xef,0xb9,0x09,0xf6,0xcd,0x91,0x71, - 0x93,0x69,0xcd,0x94,0x4d,0xf4,0x25,0xe7,0x32,0x25,0x75,0xd2,0xf9,0xb0,0x2d,0xbc,0xf2,0x53,0x6f,0x93, - 0x5f,0x59,0xcf,0x9c,0x96,0x08,0x2b,0x17,0xf1,0x29,0x24,0x4d,0xb9,0x8e,0x32,0x97,0x9f,0x24,0x41,0xe0, - 0xe5,0xae,0xf4,0xcd,0x7e,0x28,0xa1,0xf8,0x7e,0x66,0x73,0x5f,0xb2,0x76,0x2a,0xca,0x0b,0x02,0x94,0xef, - 0xde,0xbf,0x7c,0xc1,0x09,0x5c,0xba,0xea,0x0f,0x5a,0xeb,0xd9,0x2d,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc, - 0xbc,0x58,0x65,0x43,0x20,0xb9,0x54,0x8a,0xbe,0x82,0x6b,0x95,0x95,0x20,0xa7,0x1a,0x30,0x1f,0x23,0x2b, - 0xf4,0x8b,0xc0,0x66,0x88,0xaf,0x12,0x16,0x21,0x9a,0x34,0x9f,0x0e,0xc6,0xfc,0x9a,0x94,0xda,0x2c,0x11, - 0x12,0x30,0x04,0xa4,0xb7,0xb7,0x54,0x0d,0xa7,0xc9,0x5c,0xed,0x12,0x37,0x99,0x46,0x22,0x4c,0xa8,0x29, - 0x1d,0x86,0xd5,0xaf,0xdf,0xbc,0x7f,0xfe,0xfa,0x15,0xea,0x99,0x19,0xe9,0xce,0x7a,0xdd,0xa3,0x4d,0xc0, + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x77,0xdb,0x46,0xb2,0x2e,0xfa,0x57, + 0x24,0x1c,0x6f,0x19,0x18,0xb6,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0x7e,0x26,0x4e,0xfc,0x8a,0x2d, + 0x3b,0xc9,0x28,0x1a,0x2d,0x88,0x04,0x25,0xc4,0x24,0xc0,0x00,0xa0,0x64,0x45,0xe4,0xf9,0xed,0xb7,0xbe, + 0xaa,0x7e,0x01,0x84,0x9c,0x64,0xaf,0xbd,0xee,0xf2,0xb2,0x08,0x74,0x37,0xfa,0x59,0x5d,0x5d,0xef,0xde, + 0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x09,0xca,0xb3,0xdf,0xb2,0x49,0x13,0x24,0x49, + 0x73,0xbd,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0xbd,0xb7,0xb7,0x95,0xb3,0x28,0xa7,0xab,0x79, + 0x36,0x96,0x9f,0xa1,0x2e,0x97,0x34,0x61,0x14,0x07,0xa6,0x4e,0x57,0x78,0x9a,0xcd,0xf2,0x22,0xdb,0xdb, + 0x93,0xdf,0x61,0xba,0x98,0x8e,0xe5,0x31,0x3c,0x3e,0xa1,0x76,0xe3,0xdb,0xda,0x1d,0xeb,0xdf,0x61,0xfa, + 0x29,0x2f,0xa5,0xf6,0xcc,0x3d,0x6f,0xc2,0xe6,0x22,0xaf,0x95,0x1d,0x42,0x74,0x53,0x65,0xcd,0xaa,0x2a, + 0x76,0xdc,0xa0,0xa2,0x1b,0xf3,0xbc,0xd3,0x84,0x55,0x74,0x93,0xcf,0xc2,0xe2,0xb8,0x3a,0x89,0x74,0x41, + 0x3c,0x9b,0xbe,0x8f,0x2e,0xd3,0x6a,0x27,0x4f,0x90,0x94,0xdc,0xe8,0xb4,0xf8,0x66,0xa3,0xf2,0x69,0x5c, + 0xa9,0x79,0x99,0x4e,0xb3,0x69,0xbc,0x7b,0xb8,0x19,0xe9,0x4f,0x33,0x7c,0x3a,0x49,0xe7,0xf3,0x30,0x37, + 0x35,0xa8,0x5c,0xb9,0xe7,0x26,0xa2,0x17,0xf9,0x2c,0xd9,0x3d,0x70,0x19,0x1b,0x34,0x53,0x24,0x37,0xb6, + 0xa2,0x66,0xb8,0x48,0x68,0xf2,0x87,0x93,0xa4,0xa0,0xbf,0xcb,0x24,0x08,0x54,0x13,0x1e,0xd0,0xe0,0x8e, + 0xfd,0xb5,0x51,0x45,0x74,0xe3,0xa6,0xb9,0x08,0x0f,0xa3,0x8d,0xea,0xe6,0x07,0xab,0x3a,0xdb,0xa9,0x9b, + 0x2a,0xa7,0x99,0x1c,0xd9,0x71,0x57,0x98,0x05,0x34,0xda,0x24,0x45,0x76,0xb5,0x93,0xd2,0xab,0x2a,0x92, + 0x32,0x4c,0x87,0xcb,0xaa,0x6c,0x4a,0x4c,0xf8,0xb0,0xca,0x7e,0x5f,0x65,0x75,0x43,0x9d,0x36,0xbd,0x42, + 0x7f,0x9b,0xac,0x98,0x86,0x85,0xf2,0x0a,0xca,0xa8,0x6c,0x0e,0xbd,0x15,0x1b,0x3d,0x6d,0xe1,0xfd,0x48, + 0x95,0xf4,0xf3,0x45,0xa4,0x52,0xfa,0xf9,0x2a,0x52,0xe8,0xe6,0x3f,0x23,0x35,0x49,0xaa,0xb0,0x8e,0x46, + 0x93,0xe1,0x43,0x5e,0xb7,0x54,0x4d,0x86,0x93,0x2a,0x4b,0x9b,0x2c,0xf1,0x97,0x49,0x37,0x5b,0xd1,0x6c, + 0x2e,0xb2,0xea,0x3c,0x0b,0x6b,0x95,0x45,0x34,0xc6,0xc9,0xf0,0x71,0x5a,0x4c,0xb2,0x39,0x1a,0xa0,0xaa, + 0xcd,0xeb,0x51,0xf9,0x31,0x2b,0x90,0xf6,0x25,0xd2,0xf2,0xda,0x15,0x3a,0x40,0x02,0x2d,0x4b,0x5f,0xed, + 0x6f,0xaa,0x72,0x91,0xd7,0x19,0xb2,0x29,0x15,0x95,0xd7,0x4b,0xea,0xca,0x14,0xdf,0x51,0x87,0xdd,0xfc, + 0x4e,0xdc,0xf3,0x90,0x00,0x35,0x5d,0xcd,0x9b,0x64,0xf2,0xb7,0x26,0x5c,0x5a,0x0c,0x8e,0x05,0xb0,0x77, + 0x1e,0x56,0x55,0x7a,0x7d,0x42,0xf0,0x9d,0xcc,0x05,0x68,0xa8,0x79,0xfb,0x41,0xee,0x75,0xb1,0x58,0xcd, + 0xe7,0xbb,0x49,0x92,0xf5,0xec,0xb8,0xcc,0x7d,0x51,0xf6,0x34,0xf1,0x4c,0x67,0xde,0xd6,0x4a,0x2a,0x5b, + 0x1c,0x3b,0xc0,0xb6,0x71,0x59,0xe6,0xd3,0x9d,0x03,0x3c,0x47,0x94,0x6e,0x5a,0xdc,0xb5,0x2d,0xee,0xed, + 0x85,0x59,0x72,0x9c,0x9d,0x44,0x0a,0x83,0x8a,0x66,0x65,0x15,0x0a,0xf8,0x12,0x40,0x27,0xd9,0x70,0x9e, + 0x15,0xe7,0xcd,0xc5,0xa8,0x78,0x90,0x8f,0x8a,0xc1,0x20,0x6a,0xa4,0x51,0x54,0xaf,0xb2,0xe3,0xe2,0x44, + 0x15,0xb4,0x86,0xa3,0x6c,0x4e,0x93,0x64,0xbe,0x2c,0x77,0x72,0xda,0x3a,0xd1,0x6b,0x6e,0xc8,0x03,0xc0, + 0x8b,0xb4,0x7e,0x7d,0x55,0xd0,0xfa,0x2c,0xb3,0xaa,0xb9,0xd6,0x9d,0x57,0x65,0xb4,0xb7,0xd7,0xae,0xb4, + 0x3c,0x51,0x25,0x55,0xca,0x40,0x57,0x0b,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0xe6,0xc9,0x56,0xa5,0x4d,0xf9, + 0x8e,0xd6,0xa6,0x38,0x1f,0xb9,0x85,0xbd,0xc9,0x6b,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xd1,0x6a,0x36,0xcb, + 0xaa,0x78,0x1b,0x5a,0xda,0x6b,0x27,0xc5,0x3a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xac,0xac,0x16, + 0x4f,0xd2,0x26,0xed,0xab,0x6b,0x55,0x08,0xbe,0x9b,0xba,0xc9,0x35,0xc5,0xf7,0xf6,0x32,0x9a,0x94,0xba, + 0x01,0x04,0x7b,0xc9,0x9b,0x76,0x07,0x3f,0xe4,0xd9,0xd5,0x5f,0xac,0xd8,0xfb,0x6a,0x6f,0xcf,0x7b,0xa1, + 0x6d,0x82,0x5a,0xc6,0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x9d,0x0d,0xcf,0xf4,0x57,0xe6,0xc9,0xef,0x98,0xf7, + 0x19,0xfa,0x26,0x53,0xdb,0xd7,0xa5,0x9a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x56,0x8b,0xb3,0xfe,0x69,0x2e, + 0x38,0xa7,0x53,0x5c,0xd6,0x32,0x26,0x84,0x5a,0xbf,0x37,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85, + 0xbf,0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0x67,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1, + 0xe7,0xe5,0xd9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80, + 0x11,0xf6,0xf6,0x68,0x97,0x0f,0x97,0xf9,0x52,0xbe,0x7c,0xff,0xf6,0xc5,0xbb,0x2c,0xad,0x26,0x17,0x6f, + 0xd2,0x2a,0x5d,0xd4,0x7f,0x11,0x16,0x3a,0x5f,0x75,0x60,0xad,0x93,0x2b,0xcb,0x9a,0x16,0xd3,0xb4,0x9a, + 0x3e,0xaa,0xca,0xab,0x3a,0xab,0x9e,0x16,0x97,0xf1,0xd6,0xf9,0x1a,0x7a,0x2d,0xd9,0x65,0x2b,0xd2,0xcb, + 0xfc,0x3c,0x6d,0xca,0x6a,0xbd,0x0e,0xde,0x66,0xe9,0xa4,0x79,0x95,0x36,0xf9,0x65,0x46,0x5d,0x49,0x6c, + 0x16,0xf6,0xe6,0x74,0x35,0x69,0x68,0x6c,0x7d,0x9d,0xbd,0xca,0x8b,0x69,0x79,0xd5,0x9f,0x37,0x2d,0x27, + 0xab,0x45,0x56,0x34,0x84,0x84,0xcb,0xea,0x69,0x3a,0xb9,0x88,0x53,0xc5,0x07,0x85,0xed,0xde,0x4e,0x16, + 0xb6,0x4e,0xfb,0x46,0x55,0x3d,0x04,0x0d,0x8e,0xf7,0x1e,0xdc,0xda,0x8c,0xf9,0xdc,0xcf,0x98,0x3a,0x00, + 0x45,0xc2,0xaf,0xcd,0xc6,0x61,0x3c,0xa2,0x04,0x2a,0x46,0x7b,0x69,0x75,0xce,0x3d,0xa9,0x0d,0xfa,0xab, + 0x08,0xfd,0x55,0x84,0xfe,0xd2,0xd0,0x66,0x49,0x25,0xe6,0x2c,0x2d,0x36,0x4a,0x8e,0xcc,0xb8,0x7b,0x80, + 0xe8,0x02,0x29,0x75,0xd6,0x66,0x71,0xbf,0x41,0x5d,0x24,0x05,0x75,0x74,0x9b,0x96,0x6a,0xc6,0x75,0x88, + 0x8f,0xe3,0x66,0x43,0x47,0xd6,0x46,0xd1,0x6e,0xeb,0x85,0x21,0x9c,0xea,0xcb,0x79,0x3a,0xc9,0xc2,0x7b, + 0xff,0xf9,0xb5,0xfe,0xc7,0x3d,0x15,0x04,0x91,0x4b,0xa2,0x94,0x3b,0x9c,0xb4,0xd9,0xb4,0xcf,0xb5,0xce, + 0xa9,0xe6,0x50,0x67,0xbb,0x50,0x97,0xd2,0xa2,0xa9,0xb7,0x53,0x05,0x32,0x83,0xb1,0x45,0xd8,0x9d,0xab, + 0x08,0x73,0x48,0x13,0x56,0xd8,0xb9,0xa3,0x79,0xe3,0xa9,0xf6,0xa7,0xce,0x92,0x58,0xc3,0x74,0xb9,0x9c, + 0x5f,0xf3,0x68,0xb7,0xbb,0x69,0x97,0xda,0x1b,0xf4,0xee,0x6e,0x36,0x9c,0x94,0x04,0xe0,0x15,0x41,0x59, + 0x59,0xf5,0xce,0x5f,0xab,0xc4,0xd0,0x60,0x70,0xe0,0xbc,0xbe,0x74,0xec,0xdb,0xbe,0x39,0xe8,0x1c,0xd8, + 0x38,0x29,0x91,0x4a,0xc0,0xbf,0xd5,0x62,0xd8,0xd0,0xf1,0x3a,0x04,0x9d,0xf1,0x8c,0xe8,0xc1,0xe6,0xc5, + 0xd3,0xfe,0x65,0x1d,0xd6,0xf3,0x7c,0x42,0xf5,0x10,0x04,0xc8,0x63,0x78,0xa0,0x0e,0x22,0xaa,0x11,0x83, + 0x3a,0x35,0xfd,0x89,0x98,0x4c,0x6d,0x36,0x7f,0x8b,0x18,0x01,0x99,0x6c,0xe8,0x98,0x1a,0xc4,0x26,0xde, + 0xf3,0xa2,0xc9,0xaa,0x49,0xb6,0xa4,0xd1,0xd2,0xb9,0xa8,0x29,0xc0,0x98,0x49,0x44,0x55,0x65,0xf5,0x92, + 0x26,0x23,0x93,0xd7,0x8d,0xa5,0xf1,0xfe,0x29,0x34,0xde,0x7d,0xa1,0xf1,0x0e,0xff,0x5b,0x88,0xbc,0xc3, + 0x7f,0x11,0xa8,0x6f,0x53,0x93,0xad,0xd9,0xda,0x3e,0x15,0x98,0xb6,0x28,0x35,0xb5,0x77,0xb3,0xaa,0xe6, + 0xb1,0x83,0x81,0x83,0x93,0x8d,0x72,0x6f,0x87,0x27,0x51,0xa4,0xbc,0xc2,0xb9,0x6a,0x0d,0x48,0xdd,0x2c, + 0xb2,0xe6,0xa2,0x9c,0xc6,0xc1,0x79,0xd6,0x04,0x1b,0xd0,0x8d,0x43,0x49,0x21,0x12,0x45,0x1e,0x88,0x14, + 0x78,0x51,0x5e,0x65,0xd5,0xe3,0xb4,0x26,0x2c,0x21,0x53,0x98,0x1c,0xd7,0x4a,0x8e,0x0f,0x22,0x54,0x12, + 0x43,0x1a,0xd2,0xc8,0xcb,0xf9,0x65,0x46,0x5d,0x1e,0x01,0xa0,0xb7,0x66,0xca,0x0c,0x6e,0xa8,0xd1,0x50, + 0xe8,0x0f,0xb2,0x19,0xae,0x8a,0xfa,0x22,0x9f,0x35,0x84,0xb8,0x67,0xab,0xf9,0x2c,0x9f,0xcf,0xb3,0xa9, + 0x42,0xa5,0xc0,0x36,0xd9,0x34,0xa2,0x1d,0xdb,0x57,0xa3,0x4c,0xf6,0x2d,0x55,0x2e,0x57,0xf5,0xc5,0xed, + 0xf5,0x8d,0x1a,0xb3,0x95,0x22,0xda,0x78,0xc3,0xe6,0x22,0x63,0xf8,0xe1,0x4e,0x50,0x63,0xe6,0xc9,0xc7, + 0x45,0xa5,0x6d,0xe8,0x38,0x98,0x66,0xf3,0xac,0xc9,0x02,0xc5,0x53,0xa7,0x82,0x0b,0x02,0x52,0xfa,0x29, + 0x97,0x68,0xbe,0x0e,0x4e,0x54,0x0b,0xe0,0xdd,0x12,0x13,0x49,0x98,0x78,0x08,0xcb,0x61,0x32,0x1e,0x9d, + 0x9e,0xa2,0xd0,0xac,0x57,0xb1,0x5e,0x13,0xf6,0x34,0xab,0x94,0x29,0xac,0x35,0x21,0x2f,0xda,0xd3,0x51, + 0xab,0x33,0xcb,0xb2,0x46,0x27,0x96,0x2b,0xfe,0x9b,0x36,0x93,0x8b,0xbf,0xde,0x03,0x20,0xcd,0xcf,0xf5, + 0xa1,0xea,0xeb,0x83,0x9a,0x82,0x5c,0x2b,0x74,0x57,0xdc,0x36,0xaf,0xfe,0xc6,0xee,0x02,0x2a,0xda,0x2d, + 0x87,0x1e,0x9d,0x22,0x67,0x77,0x3b,0xe5,0x38,0x78,0x5c,0xd2,0x9a,0x17,0xcd,0xfe,0x11,0x75,0x3e,0x38, + 0x89,0x00,0xfd,0xdd,0xc4,0xa4,0x11,0xc2,0x36,0xf7,0x37,0x19,0xef,0xb1,0x9b,0x76,0xc9,0x38,0x00,0x62, + 0xcc,0x27,0x29,0x3a,0x71,0xef,0xd3,0xfe,0xd5,0xd5,0xd5,0x3e,0x4d,0xe3,0x62,0x9f,0x46,0x95,0x15,0x93, + 0x92,0x78,0x4e,0xda,0x07,0x93,0xe4,0x26,0x9d,0xa6,0x4b,0x82,0xb4,0x38,0xec,0x3b,0x52,0x7f,0x7e,0xf9, + 0xe2,0xbb,0xa6,0x59,0xbe,0x95,0x99,0x1a,0x63,0x7f,0xff,0x8b,0x58,0xf1,0x9e,0x92,0x34,0xeb,0x93,0xac, + 0x26,0xea,0x21,0x94,0x42,0xc4,0x04,0x12,0x6c,0x55,0x69,0x51,0xa3,0x55,0x5d,0x41,0x7c,0xdc,0x7b,0x42, + 0xe0,0x6c,0x6b,0xf7,0x1e,0x8b,0xee,0xa8,0x65,0x46,0x9a,0x48,0xf0,0xe8,0x4b,0x9b,0xd6,0x79,0x15,0x82, + 0xc9,0xbe,0x82,0x30,0x73,0x45,0x89,0xde,0xa2,0x97,0x71,0x16,0x77,0x2a,0xd3,0x04,0xee,0xd8,0xd0,0xb4, + 0x9c,0xdf,0xa1,0x7c,0x90,0x1f,0x56,0xe8,0xe9,0x9f,0x4e,0xec,0x68,0x72,0x91,0x56,0x75,0xd6,0x24,0xab, + 0x66,0xb6,0xff,0xaf,0x00,0x60,0x63,0xf8,0x0c,0xda,0x66,0x5c,0xb9,0x10,0xaf,0xfd,0x75,0xfe,0x56,0x97, + 0xc5,0x56,0x15,0xdf,0xbf,0x7b,0xfd,0x6a,0x28,0x08,0x32,0x9f,0x5d,0x83,0xd3,0x8a,0xb3,0xcd,0x89,0x3f, + 0xc3,0x1a,0x1d,0x1f,0xfb,0xbb,0x01,0x1c,0xdb,0x16,0x56,0x8d,0x9a,0xea,0xfa,0x26,0x4b,0xb8,0xc6,0x25, + 0x5a,0xc1,0x01,0x36,0xc1,0x5e,0xc2,0x27,0x1b,0x73,0xb2,0xa2,0xf6,0x7c,0x91,0x95,0xab,0x26,0x3e,0x50, + 0x9f,0xea,0x6a,0xf6,0xb8,0x2c,0x3f,0xe6,0xd9,0xab,0x74,0x91,0xc5,0xc1,0xcf,0xef,0xde,0x3e,0xdb,0x3f, + 0x7a,0xfd,0xc3,0xd3,0x57,0x01,0xe7,0x7d,0x47,0x58,0x21,0xab,0x74,0xde,0xbe,0x9f,0xbb,0x48,0x3f,0xe9, + 0xa5,0x7d,0xc1,0x48,0x28,0xde,0x3f,0x54,0x97,0xe9,0x3c,0xa7,0x7d,0x95,0x11,0x25,0xd9,0xac,0xfa,0xe8, + 0xd4,0x9d,0xec,0x9b,0xe4,0xfe,0xc1,0x01,0x9d,0xb8,0x0f,0xbe,0x38,0x38,0xd8,0x6c,0x46,0x93,0xe1,0x05, + 0xb7,0x40,0x70,0x3e,0x29,0x17,0x0b,0xa2,0x8e,0x6f,0x1e,0x4e,0x80,0x1d,0xe3,0xad,0xa9,0x53,0x3b,0x0d, + 0x91,0x52,0xf7,0x88,0x88,0xc9,0xe9,0xf9,0x1f,0xf7,0xfe,0x11,0x6c,0xfe,0x1c,0xa1,0xb5,0x91,0x88,0x6d, + 0x0d,0x28,0xe4,0xe6,0x6f,0xe3,0xa0,0xd6,0xe7,0x06,0xbb,0xd4,0x51,0x0b,0x7f,0xfc,0x99,0xa8,0x00,0x9b, + 0xbc,0xe2,0x2d,0x7e,0x3b,0x7d,0x65,0xfb,0x94,0xb9,0xba,0x04,0xcb,0x11,0x45,0xdd,0xec,0xed,0x55,0x04, + 0x76,0xef,0x97,0x4b,0x73,0xa6,0x11,0xa3,0xd1,0xb4,0x53,0x18,0xc3,0x34,0x44,0x45,0x2a,0x99,0x13,0x96, + 0x58,0x51,0x3f,0xff,0x8c,0x74,0x70,0x9d,0x53,0xd8,0xed,0x5f,0xcb,0x91,0x7f,0x68,0xce,0xfc,0x2f,0xf4, + 0x99,0xff,0xa5,0x70,0xde,0x87,0x07,0x60,0xbd,0x3f,0x47,0xcd,0xcb,0xef,0xf0,0xac,0x29,0xd3,0xd6,0xcb, + 0xf0,0x8c,0x9e,0x43,0x49,0xa0,0x3d,0x4c,0x55,0x7d,0xd5,0x3f,0x1d,0x8e,0xd4,0x22,0x62,0x44,0x9f,0xd3, + 0xa1,0x87,0xfb,0x57,0x22,0xde,0x9a,0xd1,0x69,0x0f,0x7c,0xae,0x70,0xec,0xeb,0x35,0x1a,0x55,0x3e,0xa6, + 0x99,0x45,0x90,0x40,0xf2,0x5c,0x4c,0xbb,0xb8,0x97,0x87,0xbd,0x64,0xd2,0xb5,0x8d,0x17,0xd5,0x45,0x12, + 0x94,0x05,0xa8,0xb7,0x6b,0xe2,0x9b,0x9a,0x8c,0xf6,0x6e,0x71,0x4e,0x00,0x76,0x99,0xec,0x1e,0x8e,0xb0, + 0x05,0x7b,0x78,0x21,0x19,0x14,0x51,0x6e,0x7a,0xb8,0x3f,0x3f,0x29,0x17,0x04,0xb0,0xba,0x46,0xa2,0x11, + 0xaf,0xf2,0xe6,0xe2,0x71,0x95,0x4d,0xa9,0xfd,0x3c,0x9d,0xd7,0x41,0x5e,0xec,0x2c,0xd7,0x6b,0x42,0x43, + 0x43,0x42,0x34,0x34,0x19,0xa1,0xf4,0xa4,0xf7,0x73,0xe9,0x10,0x24,0x8b,0xdc,0x89,0x03,0xb5,0x1c,0x96, + 0x05,0x61,0xe8,0x73,0xa2,0x23,0xbc,0x69,0xa3,0xcd,0xce,0x39,0x7a,0x9b,0xb7,0x32,0x00,0xab,0xe9,0x8a, + 0xc8,0x71,0x9e,0xb8,0x45,0x22,0x6f,0x43,0x82,0x82,0xaa,0xa0,0x5d,0x4e,0x1d,0x0c,0xd4,0xb9,0x49,0x5d, + 0xa6,0x75,0x7d,0x55,0x56,0x53,0xa4,0x8e,0xa6,0xc3,0x87,0x94,0x56,0x56,0xf9,0x1f,0xbc,0x27,0x93,0xe0, + 0x51,0x5a,0xe7,0x93,0x9d,0x60,0x30,0x0f,0x17,0x03,0x3a,0x97,0x06,0xe7,0xd1,0x86,0x26,0x85,0x1a,0x5e, + 0x12,0x21,0xe2,0x91,0x5f,0x1e,0x60,0xaa,0x52,0xc6,0x49,0x9d,0x58,0x32,0xf6,0xb5,0x0f,0xef,0xb2,0x8a, + 0xa6,0x23,0xff,0x83,0xc8,0x5c,0xb5,0x4b,0x80,0xb5,0x1c,0x9a,0xde,0x67,0xe6,0x49,0x2d,0x8f,0x2f,0x4e, + 0xfc,0xc1,0xa0,0x35,0x02,0xf5,0x2f,0x69,0x03,0x2c,0x99,0xc8,0xbe,0x06,0xe2,0xa1,0x31,0x5c,0x62,0x07, + 0x40,0xb6,0xb5,0x1c,0xd6,0x8c,0x8a,0xd6,0xeb,0xa5,0xa5,0xb5,0x08,0xff,0xef,0xed,0x1d,0xe8,0x6f,0x6c, + 0x12,0xd1,0x65,0xd3,0xec,0xd3,0x6b,0x5a,0xd4,0x19,0x64,0x02,0x41,0x14,0xc9,0x0c,0xd1,0x38,0x09,0x9d, + 0x3c,0x9c,0xcf,0x0d,0x22,0x16,0x8c,0x28,0xeb,0x36,0x4e,0x69,0xb8,0xbd,0xd9,0x38,0x0f,0x58,0x6e,0x55, + 0x25,0x37,0x4c,0x69,0x64,0xb6,0x31,0x00,0x1d,0xb1,0x01,0x40,0x66,0xe0,0x90,0xdb,0x19,0x63,0xd7,0xa9, + 0xd8,0x3d,0x1e,0x51,0x59,0x25,0x23,0x89,0x0f,0xef,0xdf,0xff,0x22,0x71,0x23,0x1b,0xdf,0x3f,0xf8,0x32, + 0x36,0x2f,0xba,0x0c,0x8a,0x6f,0x95,0x0b,0x5e,0x95,0x3b,0x1a,0xee,0x03,0xfb,0x01,0x57,0xac,0x37,0x4c, + 0x5c,0x28,0xe2,0x82,0x66,0xf9,0x39,0x91,0x48,0x86,0x25,0x58,0x6e,0x46,0x39,0xb6,0x19,0x21,0x1f,0x45, + 0x70,0x49,0x03,0xda,0x08,0x68,0x65,0x55,0x55,0x56,0xfe,0x5a,0xac,0xc2,0x49,0x18,0xbc,0xca,0x1a,0x02, + 0x97,0x8f,0x3b,0x4f,0x91,0x1b,0xa8,0x4c,0xf1,0x14,0x2c,0x23,0xfb,0xf1,0x6d,0x60,0xc9,0x5f,0xeb,0xf4, + 0x1d,0xda,0x45,0xc1,0xc0,0xae,0xfa,0x20,0x58,0xd4,0x3b,0xd9,0xa7,0x49,0x96,0x81,0xb4,0xa1,0x3a,0x83, + 0xa7,0x8f,0x5f,0xbf,0x7a,0xf5,0xf0,0xd1,0xeb,0xb7,0x47,0x4f,0x9f,0x04,0xad,0xda,0xab,0x61,0x9f,0x14, + 0x23,0xd4,0x4b,0x79,0x0d,0x9c,0x45,0x6c,0xcc,0x59,0x42,0x40,0xd8,0xd9,0x86,0x6e,0x07,0x46,0x60,0x07, + 0xdb,0xc7,0xe2,0xf8,0x9a,0xa1,0x2b,0xec,0xa6,0x47,0xb1,0x30,0x11,0xa3,0x33,0x02,0xb7,0xe9,0xb1,0x64, + 0xbb,0x13,0xf3,0x24,0x39,0xe3,0x1d,0x11,0xd0,0x79,0xaf,0x37,0xb0,0x64,0x32,0xec,0x00,0x8d,0x1b,0x3c, + 0x3f,0xed,0xf0,0xb7,0x56,0xb4,0x35,0x23,0x40,0x99,0x68,0x64,0x05,0x04,0x13,0x68,0x5c,0xef,0x71,0x34, + 0x63,0x8b,0xd6,0x9a,0x13,0xac,0x6b,0xa7,0x2d,0x5a,0xbd,0x4c,0x4e,0xa8,0xce,0x88,0xa9,0xcb,0xcb,0x6e, + 0x5a,0x82,0x9d,0xd7,0x06,0x48,0x26,0x2a,0x96,0xad,0xa4,0x0e,0xc8,0x6a,0x12,0x43,0xe4,0xcb,0x01,0x4e, + 0xea,0x6d,0xb0,0x8e,0x9a,0x0b,0x5a,0x0e,0xe2,0x5d,0x7b,0x99,0xf2,0xb2,0x78,0x52,0x5e,0x31,0x5a,0x7b, + 0xa3,0x71,0xd9,0xde,0xde,0x72,0x98,0x4e,0xa7,0x4f,0x2f,0x41,0x5e,0xe4,0x35,0x8d,0x9f,0x46,0x12,0x18, + 0x4c,0x47,0x50,0xd0,0xf3,0x4d,0xa4,0x6e,0xa9,0xfc,0xfd,0xb2,0x5b,0xf5,0x8a,0x53,0xdc,0xd3,0x9f,0xb6, + 0xd5,0xae,0x02,0x73,0x34,0x71,0xba,0x08,0x96,0x1f,0xb8,0x57,0x30,0x2a,0xcc,0x4f,0x32,0x43,0xe6,0x9f, + 0x65,0x4b,0x9e,0xf3,0xf4,0x8c,0x0e,0x39,0x42,0x85,0x2b,0x68,0x63,0x04,0x72,0xb1,0x40,0xfe,0x9a,0x87, + 0x33,0x49,0x56,0x58,0x4f,0x3a,0x29,0x67,0x7f,0xe3,0xec,0xa6,0x53,0xf9,0x16,0xca,0x02,0x9f,0x68,0x6e, + 0x7e,0x28,0x3b,0x7d,0xd8,0x26,0xd8,0x46,0x85,0x46,0x0b,0x7b,0x7b,0xf9,0xde,0xde,0x6e,0x1e,0x9a,0xf7, + 0x68,0xdc,0x10,0x39,0x1b,0x68,0xc0,0xda,0x99,0xa5,0x84,0x22,0xa7,0x3b,0x00,0x9e,0x1d,0x29,0xb0,0x03, + 0xfa,0x98,0x76,0xad,0xf9,0x40,0x99,0x16,0x04,0x03,0x14,0x56,0xcb,0x54,0x80,0xbe,0x0d,0x8b,0xbf,0x3e, + 0x9a,0xc3,0xdb,0x47,0xa3,0x88,0x59,0x92,0x11,0xa5,0x7c,0x64,0x32,0xd6,0x01,0xf7,0x6e,0x15,0x4a,0xa9, + 0x2d,0xf6,0x3f,0x91,0x74,0x81,0xb3,0x24,0x6e,0xc7,0x09,0xd5,0x64,0x48,0x09,0x65,0x80,0xc0,0x1a,0x62, + 0xcc,0x49,0x21,0x1b,0x46,0xa4,0x1e,0x95,0xb7,0x79,0x92,0x5c,0x65,0x7f,0x4f,0x54,0x63,0xda,0x61,0x66, + 0xe3,0xfd,0xdb,0xe7,0x8f,0xcb,0x05,0xd5,0x44,0x50,0x19,0x66,0x9e,0xf4,0xee,0xbf,0xbe,0x3c,0xb8,0x77, + 0x9e,0xab,0xe0,0xff,0xfa,0x22,0xbd,0xff,0xfa,0xe2,0x21,0x27,0xc6,0xad,0xc4,0xfb,0x5f,0xde,0x3b,0x57, + 0xc1,0x9d,0x76,0xda,0x63,0x2e,0xa8,0xda,0x89,0x07,0x28,0x38,0x68,0xa5,0x7d,0xf5,0x88,0x0b,0x1e,0xb7, + 0x13,0x9f,0x70,0xe2,0x49,0x10,0x79,0xba,0xbf,0xcf,0x80,0x1b,0x61,0x84,0xdd,0xc6,0x68,0x5c,0x33,0x5e, + 0xd5,0x12,0x94,0x53,0x11,0x81,0xb0,0x6c,0xb4,0x86,0x88,0x12,0xf2,0x1e,0xc6,0xac,0x89,0xa8,0x54,0xe3, + 0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xf1,0xc9,0x28,0xb7,0xf8,0xb3,0xe9,0x2c,0x6e,0x9f,0x96,0x0b,0x1c,0xac, + 0xe1,0x0e,0x99,0x4d,0x0f,0x9b,0x41,0x12,0x1c,0xd3,0x50,0x94,0x9f,0x4e,0x04,0x98,0x56,0x7b,0xe5,0x7d, + 0x64,0x38,0x78,0xaf,0xa1,0x68,0x1b,0x98,0xb1,0x04,0x75,0x52,0x3e,0x7f,0xf7,0xda,0x74,0x31,0xce,0x7d, + 0x26,0x90,0xe5,0x5c,0xdb,0x1c,0x1e,0xd4,0xaa,0x90,0xec,0x10,0x72,0x8e,0x06,0x41,0x12,0x0c,0x58,0xc3, + 0x06,0x51,0x04,0x08,0xee,0x74,0xf8,0x5b,0x99,0x17,0x61,0xb0,0x47,0x93,0xac,0x67,0xae,0x44,0x45,0x83, + 0x24,0xdc,0x3f,0x84,0xba,0xc3,0x91,0x2a,0xe3,0x20,0x1a,0xd3,0x9f,0x18,0x65,0x07,0x65,0xf4,0xe7,0x00, + 0xd7,0x22,0xf0,0x8f,0x83,0x14,0xd4,0x6c,0x90,0xfa,0x64,0x1d,0xbd,0x9b,0x03,0x47,0x84,0x4b,0x5e,0x02, + 0x9f,0x40,0x2a,0xc8,0x9a,0xf4,0x1c,0x3f,0x9f,0x96,0x39,0x01,0x3b,0x3d,0xcd,0x08,0xe1,0x81,0xe1,0x12, + 0xfe,0x29,0x9f,0xed,0x2f,0xca,0x69,0x3e,0xcb,0xb3,0xe9,0x7e,0x9d,0x13,0x5a,0x94,0xb4,0x55,0xb1,0x95, + 0x3a,0x4f,0xeb,0xc6,0x96,0xc5,0x7b,0x39,0x31,0x7d,0x20,0xee,0x12,0xdc,0xf7,0x15,0x1d,0xe4,0x68,0x81, + 0x50,0xea,0xa7,0xeb,0xfd,0x6e,0x47,0xab,0x8c,0x78,0x7a,0x3a,0x4e,0xf1,0x44,0xc7,0xd4,0x7e,0x3a,0x6b, + 0xf8,0x0d,0xc4,0xec,0x3e,0x8d,0x8d,0x28,0x9d,0x93,0x5b,0xd8,0x0a,0x16,0x03,0xd2,0x06,0x2f,0x89,0xb3, + 0x71,0xfa,0xf8,0x8c,0xb8,0x76,0xb7,0xea,0xc3,0x9a,0x18,0xd0,0x26,0x0c,0x7e,0x2d,0x08,0x46,0x3a,0xdc, + 0x77,0xe9,0x2f,0x03,0xed,0x3a,0x45,0x9b,0x7f,0x08,0x71,0x3c,0x3e,0x5b,0x9d,0xd1,0x7c,0x87,0x07,0x84, + 0x76,0xa2,0xf6,0x59,0xad,0x8a,0xad,0x52,0xe5,0xe0,0x90,0x00,0x42,0x0e,0xcf,0x94,0x8e,0x70,0x42,0xbd, + 0xb6,0xe2,0x26,0xfa,0x26,0x39,0xd0,0xbb,0x67,0x84,0xcc,0x04,0xa4,0xc4,0xfe,0x84,0x09,0x10,0x26,0x05, + 0xc6,0xfc,0xcd,0x18,0x7f,0xe2,0xe3,0x93,0x08,0x18,0x8a,0xa6,0x30,0x3c,0x2e,0x4e,0xa2,0xd8,0xe6,0x0c, + 0x02,0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xeb,0x50,0xe2,0xcd,0xde,0x6d,0xb4,0xd5,0xd8,0xd7, + 0x03,0x38,0x7d,0x8c,0x35,0x3c,0xc8,0xac,0xf8,0x91,0x77,0x20,0x0d,0xe0,0x61,0x43,0xed,0x9c,0xad,0x68, + 0x07,0x05,0x17,0xb4,0x84,0x01,0x6c,0x09,0x9a,0x24,0x1f,0xe2,0x05,0xdb,0xee,0x96,0x22,0x37,0x78,0x8a, + 0xa5,0x98,0x62,0x61,0xe0,0xa4,0x9c,0xd3,0xbb,0x79,0x1c,0xbb,0x47,0x87,0xb1,0x62,0xd1,0x74,0xc4,0xc4, + 0xd5,0x00,0x3c,0xf1,0x39,0xfd,0xa8,0x9a,0xf1,0x4c,0x8c,0xb6,0xf0,0x30,0x36,0x0f,0xbe,0xde,0x64,0xec, + 0xbe,0x4c,0x6b,0x94,0xc5,0xcf,0x58,0x7e,0xbc,0x72,0xff,0xa7,0xd5,0x00,0x78,0x28,0xdd,0x08,0x1e,0x15, + 0xe6,0x0e,0x7d,0xa4,0x1f,0xb5,0x4c,0x9b,0x0b,0xce,0x0f,0xee,0x61,0xf1,0x28,0x55,0x27,0x0c,0x21,0x14, + 0x7a,0x08,0xcb,0x8f,0xb1,0x4b,0x44,0xa9,0x81,0x7b,0x15,0x41,0x3c,0xad,0x55,0x72,0x2f,0x5c,0xd4,0x79, + 0xb6,0xa6,0x09,0x02,0xd9,0x16,0xdd,0xcb,0x87,0x0d,0xa4,0x9d,0x4e,0xd3,0x06,0xf0,0x7f,0x08,0xe8,0xc7, + 0x26,0x37,0xca,0x33,0x6d,0x78,0xf1,0x74,0x9e,0xe1,0x2d,0x0c,0xd2,0xc0,0x9e,0x93,0xb4,0x46,0x9a,0x17, + 0x1f,0x9a,0x1d,0xa8,0xd7,0xc2,0x49,0x1f,0x0c,0xe5,0x20,0x50,0xc0,0xb8,0xae,0x20,0xf4,0x47,0x7f,0xe2, + 0xc2,0xd9,0x8d,0x98,0xf9,0x67,0x2a,0xd5,0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86,0xf0,0xe4, + 0x96,0x66,0x71,0xf7,0xe0,0xf3,0x67,0xb4,0xa7,0xf3,0xd1,0x5a,0x8d,0x05,0x91,0x62,0xb4,0xcb,0x93,0x40, + 0x3a,0xb4,0x03,0x34,0x45,0xbc,0x72,0xbd,0x93,0x52,0x5f,0x0a,0x26,0x6d,0x76,0x30,0xb3,0xe9,0x04,0x68, + 0x61,0x23,0x50,0x1d,0x3c,0x7c,0xf4,0xf8,0xc9,0xd3,0x67,0xdf,0x7e,0xf7,0xfc,0xfb,0x1f,0x5e,0xbc,0x7c, + 0xf5,0xfa,0xcd,0x8f,0x6f,0xdf,0x1d,0xbd,0xff,0xf0,0xd3,0xcf,0xbf,0xfc,0x3b,0x3d,0x9b,0x10,0x3b,0x7f, + 0x7e,0x91,0xff,0xf6,0x71,0xbe,0x28,0xca,0xe5,0xef,0x55,0xdd,0xac,0x2e,0xaf,0x3e,0x5d,0xff,0x71,0x70, + 0x78,0xff,0x8b,0x2f,0xbf,0xfa,0xe7,0x7f,0xff,0xeb,0xeb,0xc1,0xbd,0x24,0x18,0x15,0x4e,0x16,0xed,0x08, + 0x0f,0xe5,0xa5,0x0a,0x69,0xf0,0x55,0x2b,0x09,0x8b,0x98,0x04,0xcf,0xa5,0x5f,0x8f,0x4d,0xb7,0x0c,0xa7, + 0xd4,0x8b,0xa4,0x8c,0x5a,0xad,0x01,0x09,0x93,0xe8,0x69,0xcf,0x20,0x8c,0x21,0x68,0xab,0x93,0x03,0xd8, + 0xd7,0x8c,0x4a,0x0b,0x3d,0xeb,0x1a,0xa7,0xd7,0x24,0xa1,0x13,0x45,0xd5,0xff,0x45,0x84,0x53,0x3a,0x48, + 0x26,0x26,0xf7,0x9f,0x5f,0xec,0x35,0xdf,0x7c,0xf3,0xaf,0x7d,0xca,0xf8,0xc7,0xbf,0x22,0x46,0x37,0x61, + 0x9e,0xc8,0xc7,0x8f,0xa9,0xb7,0x54,0xa4,0x1e,0x24,0xc3,0xff,0xfe,0x2a,0x8a,0xbe,0xb9,0xff,0xd5,0x57, + 0x9a,0x60,0xc7,0xe8,0x8a,0x51,0x93,0x34,0x0f,0x1e,0xfc,0x6b,0x9d,0x9b,0xe3,0xe8,0x7f,0x19,0x81,0xdc, + 0x5c,0x55,0x79,0x4b,0x79,0x6f,0xa8,0x36,0x42,0x56,0x37,0x62,0xed,0x41,0xa7,0x7d,0xad,0xb5,0x21,0x7c, + 0x60,0xf6,0xd0,0x48,0x44,0x2d,0x30,0xff,0x27,0xd6,0x06,0x04,0x98,0x7b,0x7b,0xfa,0x13,0x73,0x52,0xd1, + 0x77,0x18,0x0f,0x9f,0xdd,0x05,0x30,0xf3,0xb7,0x2f,0x8f,0xac,0xf4,0x56,0x79,0x90,0x9d,0x7b,0xdf,0x62, + 0xff,0xd1,0x87,0x79,0xab,0x40,0xe9,0x15,0x98,0xb2,0x80,0x86,0x8a,0x94,0x10,0x5c,0x10,0x90,0xa7,0x2e, + 0xaf,0xce,0x26,0xab,0x0a,0x52,0x6f,0xb7,0x0b,0x19,0x77,0x27,0xb5,0x3e,0xe3,0x47,0x3b,0x74,0xc8,0x2b, + 0x30,0x97,0xf1,0xd6,0xe9,0x94,0x74,0x3e,0x1a,0x2e,0x98,0xcf,0xc2,0x10,0xde,0x66,0xe7,0x4f,0x3f,0x2d, + 0xc3,0x20,0xfc,0xcf,0x7a,0xf4,0xeb,0xaf,0xf5,0x3f,0xa2,0x90,0xa6,0x84,0xc8,0xb7,0x24,0x3c,0xfe,0xcf, + 0xe8,0xe4,0x1f,0x51,0xe0,0x94,0x3e,0x0d,0xf1,0x87,0xdb,0x73,0x75,0xfc,0xc5,0x89,0xc8,0x27,0xd0,0xf8, + 0xa2,0xbc,0x6c,0x1b,0x41,0xf0,0xee,0xe2,0x45,0xa1,0xb5,0x20,0x50,0xc3,0x8c,0x0d,0x8b,0xf2,0x2a,0x8c, + 0xf6,0xff,0xf5,0xcf,0x2f,0xb3,0xaf,0x88,0x9a,0x8e,0xbb,0x8b,0x06,0x99,0x53,0x7b,0x1c,0x2d,0x35,0xe9, + 0x76,0x3b,0xf4,0xc1,0xdf,0x20,0x8f,0x75,0xa7,0x2e,0x08,0x7c,0xe6,0x90,0x16,0x1f,0x9f,0xf8,0x04,0xa8, + 0xaf,0x81,0xa4,0x0a,0xfa,0xf5,0xd5,0xad,0x0a,0x64,0x81,0x6e,0xac,0x66,0x8d,0x65,0x1e,0xa2,0x59,0x63, + 0xe5,0x7a,0xbb,0xb0,0x50,0x42,0xfb,0x87,0x90,0x30,0xb8,0x96,0xb8,0x7c,0xb2,0x35,0x71,0xe6,0x2b,0x22, + 0x22,0x41,0x64,0x76,0x92,0x34,0xbf,0xd7,0xaa,0x48,0x53,0x1c,0x49,0x9b,0xca,0xb4,0xc4,0xad,0x5f,0x83, + 0x67,0x2b,0x60,0xc9,0xdc,0x86,0x18,0x50,0x7a,0x25,0x16,0xf1,0x7f,0xa8,0xc7,0x82,0x79,0xe1,0x67,0xf8, + 0x59,0x46,0x05,0xcf,0x67,0x9a,0xfb,0xcb,0xa6,0x61,0xd4,0x35,0xfc,0x3b,0xfc,0x5a,0x24,0xc4,0xb0,0xc0, + 0xb3,0xa6,0x7f,0xf4,0x7a,0x08,0x01,0x31,0xfd,0xde,0xc2,0x23,0x78,0xa6,0x7f,0x19,0xd8,0xa8,0xb3,0x54, + 0x4b,0xe7,0x76,0x27,0x5a,0x18,0xc3,0x7c,0x16,0x3d,0x24,0xf3,0xd0,0x66,0x2b,0x2d,0xa7,0x51,0x56,0xd4, + 0xeb,0x84,0xbe,0xac,0xe9,0x13,0x59,0x70,0x02,0x51,0x23,0x0b,0x85,0x6d,0x2e,0xf4,0x35,0x1d,0xcd,0x95, + 0x5f,0x8b,0x31,0x3f,0xb4,0x29,0x43,0x51,0x49,0xe8,0x4a,0xad,0xec,0x5f,0x4b,0x36,0x4f,0xda,0xe9,0x78, + 0xf3,0x99,0x86,0xdb,0x14,0xac,0x3d,0x5a,0x06,0x50,0xd8,0x68,0xc8,0x57,0x37,0xd0,0xf2,0x1a,0xd9,0xbd, + 0x6d,0xb9,0x39,0xd9,0x40,0x19,0x3e,0xd4,0xaa,0xbd,0xf5,0xba,0x36,0x8f,0x11,0x58,0xc4,0xb6,0xbc,0xa1, + 0x69,0xcf,0x6e,0x63,0x26,0x45,0x1e,0xe8,0xbd,0x77,0x52,0x84,0x77,0xa5,0xe2,0x1b,0xd5,0x53,0x53,0x4a, + 0xcf,0x74,0xc4,0x48,0x85,0xb0,0xcf,0x33,0xcc,0x2e,0x00,0xdd,0x29,0xb3,0x6d,0x4b,0xad,0x14,0xe5,0xbd, + 0x7f,0xae,0x6d,0x5a,0x59,0xa7,0x91,0x67,0x46,0xaa,0xf9,0x5b,0xaa,0x8b,0xcf,0xb0,0xa3,0x66,0x42,0xec, + 0x22,0x15,0x2d,0x12,0x87,0x4e,0x73,0xc6,0x18,0x9b,0x6d,0x4e,0xea,0x2f,0x08,0x0c,0x2c,0x21,0x13,0xee, + 0x66,0xeb,0x35,0x0c,0x37,0x4e,0x1f,0x3f,0x7c,0xf5,0xf8,0xe9,0x8b,0xd3,0xd3,0xff,0x81,0xf8,0xc1,0xd4, + 0x76,0xef,0x3f,0xe1,0x71,0xba,0xff,0xc7,0x09,0xfe,0xfc,0x3a,0xfd,0x75,0xf0,0xeb,0xfe,0xaf,0xc3,0x93, + 0x7f,0xc4,0xd1,0xf8,0xd7,0x7b,0xbf,0xde,0x33,0xb4,0x5f,0xf6,0x3f,0x92,0x6f,0x38,0xcc,0x38,0xf6,0x0c, + 0x86,0x7e,0xbd,0x37,0x10,0x9a,0x79,0x00,0x02,0xb4,0xf1,0x29,0xe2,0x7b,0x03,0xa1,0x75,0xff,0x64,0x72, + 0xda,0xd6,0x39,0x2d,0x52,0x2d,0xdb,0x14,0x3d,0x46,0x9a,0xc9,0xd6,0x99,0x11,0x88,0x51,0x6f,0x30,0x08, + 0xfd,0xcf,0x89,0xd3,0x25,0x46,0xc6,0x4f,0x89,0x61,0xc5,0xd4,0x22,0xb3,0xdc,0xa4,0x43,0x3f,0xe2,0x99, + 0x4d,0xff,0x2d,0x7c,0x08,0x49,0xa6,0x15,0x26,0xee,0x7a,0x1a,0x56,0x4b,0x15,0x41,0xaa,0x29,0x02,0x27, + 0x22,0x2f,0xe8,0x98,0x27,0xc2,0x7b,0x67,0xb1,0xaa,0x9b,0x9d,0xb3,0x6c,0x27,0xb5,0xb6,0x51,0xc3,0x40, + 0x5b,0x9c,0x8c,0xb8,0xd7,0x5a,0x32,0x98,0xf4,0x6a,0xb3,0x30,0x57,0x34,0x41,0xf2,0x41,0x91,0xe0,0x83, + 0x51,0x3b,0x1b,0x62,0xb4,0xb4,0x06,0x42,0x0a,0xcd,0x23,0x57,0x95,0xf3,0x7e,0xb4,0x69,0x90,0x23,0x38, + 0x0c,0xfd,0x45,0xfb,0x78,0xec,0x22,0xf3,0x8e,0x3e,0x45,0x1b,0x50,0x70,0x35,0x5a,0x66,0xeb,0x52,0x70, + 0x6a,0xd5,0xe5,0xaa,0x9a,0x64,0xfe,0x57,0x68,0xc9,0x30,0x79,0x37,0x0d,0x4e,0x0c,0x36,0x1d,0xaa,0x5a, + 0xa8,0x28,0x4b,0x70,0xaa,0xca,0xa9,0xc2,0xf0,0x73,0xeb,0x49,0xf5,0x37,0xf6,0xc6,0x4e,0x0f,0x8a,0x32, + 0x86,0x63,0x2c,0x77,0x6c,0x60,0x3b,0x06,0xc5,0x67,0xb7,0x85,0xdb,0x7d,0x1d,0x7a,0xb4,0x99,0xff,0x4b, + 0xee,0x0e,0x0d,0x1c,0x18,0x3e,0xac,0xb2,0x7e,0xf7,0x85,0x7e,0x60,0xcc,0x7a,0xed,0x5d,0xd7,0x6b,0x8c, + 0x8e,0x2d,0x5f,0x3d,0xa3,0xc7,0x6e,0x49,0x11,0x7a,0x19,0x51,0xd8,0xa6,0xbd,0x2b,0x0d,0xcf,0xd5,0xae, + 0xc4,0x37,0x5f,0xdf,0x32,0x2f,0x58,0xaf,0xb7,0xed,0x75,0x29,0xad,0xbe,0x5e,0x9c,0x95,0xf3,0x76,0xda, + 0x59,0x59,0xce,0xb3,0xb4,0xe8,0xb5,0x5f,0xff,0xdf,0xb1,0x78,0x17,0x11,0x1b,0x1b,0xd9,0x5e,0x14,0xbd, + 0x06,0xef,0x86,0x8a,0x66,0x4b,0x08,0xb6,0xbe,0x0b,0x2d,0x07,0xe5,0xa8,0xe3,0x6f,0x92,0x83,0xbd,0xbd, + 0x97,0x44,0xe3,0x0f,0x67,0xf3,0x12,0x46,0x5f,0xac,0x4d,0x27,0x96,0xb5,0x7e,0x96,0x17,0x4c,0x00,0x7b, + 0xb5,0xd6,0x9d,0xae,0x53,0xcf,0xc7,0x41,0xd0,0xe3,0xc1,0x32,0xee,0xca,0xfc,0x44,0x0c,0x7e,0x3f,0x8a, + 0x6d,0x17,0x5c,0xad,0x93,0xde,0xbe,0x3a,0x31,0x36,0xb1,0x34,0xe9,0x2b,0xea,0xd8,0x38,0x23,0xca,0xd4, + 0x7e,0x35,0xd7,0x96,0x90,0xd6,0xf2,0x52,0x9b,0xc0,0x0b,0x9b,0x1f,0x8a,0xfa,0xa0,0x4a,0xac,0x10,0x4b, + 0x41,0xce,0x99,0x1c,0x8c,0xf2,0x07,0x95,0xb1,0x1a,0xcb,0xc5,0x00,0xf3,0x38,0x3f,0x39,0x21,0x5c,0xe9, + 0x18,0x86,0x3e,0xf5,0xfb,0x71,0xd6,0x96,0x64,0x9d,0x6c,0xfa,0xac,0x3b,0xa8,0xd8,0xc9,0xc6,0xf5,0x71, + 0x65,0xdd,0x0e,0x8c,0xbf,0x80,0xd1,0xa9,0x66,0x9e,0x8c,0x8b,0xe5,0xc1,0xdf,0xec,0x1f,0x5a,0x31,0x31, + 0x77,0x99,0x4e,0x9c,0x42,0x1d,0x46,0x5e,0x6d,0xb3,0xd6,0x99,0x75,0x6e,0x56,0x1d,0x9b,0xdc,0x96,0x99, + 0xba,0xb9,0xec,0x99,0x8f,0x51,0x17,0x6d,0x78,0xc6,0x6b,0xc7,0x05,0xd1,0x73,0x21,0x7e,0x60,0x09,0x1c, + 0xf9,0x0d,0x2f,0xb7,0x8c,0x4e,0xb5,0x38,0xa4,0xea,0x31,0x08,0xd6,0x14,0xc6,0xb8,0xfa,0xe6,0x70,0xec, + 0x8c,0x58,0x6d,0x39,0xe0,0x00,0xee,0x37,0x9b,0xf1,0x9a,0x67,0x2b,0xe8,0x2d,0x86,0xa7,0x52,0x91,0xf5, + 0xb0,0x50,0x85,0xeb,0xc8,0x85,0x74,0x84,0xd8,0xf1,0xf5,0xfa,0x60,0xe4,0x96,0xde,0x94,0xdd,0x6f,0x68, + 0xc5,0x9d,0x05,0x6e,0x11,0x8d,0x8a,0xfd,0xfd,0x51,0x54,0xf1,0xa0,0x8e,0x8b,0x41,0x63,0xcd,0x6b,0x2b, + 0x57,0xe9,0x65,0x07,0x90,0xe0,0xa5,0xd1,0x44,0xf0,0xe1,0x48,0x30,0x1b,0x56,0x34,0xea,0xbe,0x58,0xb4, + 0x64,0x13,0xb0,0x8e,0x2e,0x08,0xb0,0x8a,0x07,0xce,0x29,0x84,0x00,0x0b,0x15,0xec,0xed,0x5d,0x42,0xfd, + 0x08,0x69,0xa4,0x85,0x2e,0x57,0xcd,0xb9,0x39,0x87,0x5d,0xd2,0xb5,0x03,0x18,0x6c,0xc3,0xc8,0x60,0x29, + 0x7d,0x24,0xf2,0x39,0x57,0xd1,0x8f,0x00,0xcd,0x2e,0x1d,0x84,0xbb,0x95,0x29,0x44,0x6c,0xcb,0x6e,0xb5, + 0xb7,0x67,0x37,0x18,0x55,0xa0,0x9f,0xa9,0x34,0x94,0x98,0xac,0x7c,0x48,0x78,0x6a,0x3c,0x79,0x3f,0xf1, + 0x2d,0xed,0x24,0xa9,0xbb,0xdc,0xdb,0x4b,0x1d,0x40,0xea,0x35,0x81,0x00,0x4b,0x1e,0xc1,0x22,0x65,0x97, + 0x59,0x75,0xed,0x9d,0xcf,0x1e,0x81,0xc9,0xe3,0xc0,0xb0,0x37,0x52,0xd9,0x7a,0x6d,0x2a,0xdb,0x3d,0x1c, + 0x89,0x44,0x43,0x83,0xe7,0xc7,0xec,0x1a,0x58,0x85,0xd8,0x25,0x3f,0xc1,0xd9,0x8f,0xd7,0xae,0xed,0x89, + 0x6d,0xbb,0xee,0xb6,0xdd,0x6a,0x19,0xde,0x37,0xba,0x71,0x67,0xfd,0x65,0x5a,0xf7,0xc0,0xfa,0xac,0x8b, + 0x41,0xb6,0xd6,0x90,0xba,0x6e,0xea,0x8b,0xac,0xdb,0x9c,0xee,0x19,0x31,0xc3,0xb6,0xa6,0x53,0xb7,0xeb, + 0x68,0x7c,0xdb,0xe6,0xe1,0x0d,0x76,0x96,0x90,0x63,0x7a,0x43,0xe0,0xf0,0x73,0x7b,0xc2,0xdf,0x6c,0x57, + 0x46,0xf3,0x16,0xdd,0xe8,0x19,0x91,0xe3,0xd3,0xf8,0x07,0x71,0x36,0x35,0x36,0x5f,0x65,0x71,0xa1,0x32, + 0x3a,0x91,0xb2,0x2a,0x3d,0x9b,0x67,0xf1,0xee,0x6e,0xa5,0x20,0x93,0x90,0x97,0x03,0x6d,0xcb,0xb0,0xd2, + 0x99,0x07,0x1b,0x0f,0x4b,0x1c,0x79,0x07,0x4a,0x8f,0xca,0x78,0x6f,0xef,0x5e,0xc1,0x0e,0x0c,0xac,0xd5, + 0xbc,0xa7,0x49,0x6c,0xdf,0xd4,0xcf,0x55,0xf5,0xb1,0x63,0xa3,0xf4,0x4b,0x11,0xca,0xe9,0xab,0xda,0x3f, + 0xee,0xe8,0x71,0xdf,0x7e,0xd2,0xca,0x7e,0xbd,0x87,0x27,0x46,0x3c,0xf3,0x5a,0x4c,0x70,0xf5,0x5e,0xfe, + 0x05,0xb6,0x34,0x4d,0x7a,0xae,0x2c,0x37,0x3b,0xb9,0xc8,0xe7,0xd3,0x2a,0x2b,0xc0,0x3d,0xc1,0x7e,0x83, + 0x40,0x71,0xbe,0x50,0xac,0x9e,0xe4,0x77,0x64,0xa4,0xf5,0x75,0x31,0x79,0x96,0xc2,0x9e,0xfd,0xda,0x29, + 0x44,0x87,0x05,0x78,0x65,0x54,0x2d,0xb2,0xb8,0x26,0x9f,0x00,0x15,0xeb,0x47,0x4a,0x25,0xe8,0xa3,0x04, + 0xfa,0xcb,0x25,0x1e,0x13,0x57,0x4a,0xfd,0xe1,0x22,0xfa,0x99,0xd2,0x67,0xc5,0x63,0x69,0x88,0xd2,0xed, + 0x33,0xa7,0xeb,0x8e,0x73,0xba,0x1d,0x04,0x3d,0xbf,0x9b,0xd0,0xda,0x3d,0x9f,0x72,0xba,0x7e,0x96,0xfa, + 0xe7,0x34,0x5e,0x76,0x91,0x6c,0x44,0xa1,0xaa,0x07,0x46,0x2f,0x95,0x7d,0x49,0x1e,0x7b,0x39,0x30,0x0d, + 0x8a,0xa0,0x7e,0x2d,0xfc,0xc2,0x85,0x5f,0xb8,0x68,0x17,0x26,0x84,0xe1,0x66,0xfc,0x71,0x17,0xe4,0x2d, + 0x96,0x6d,0xe3,0x4d,0x7d,0x52,0x16,0x7c,0x44,0xe2,0x80,0x4c,0x68,0xad,0xe8,0xc7,0x73,0xec,0xf0,0x6a, + 0x7d,0xe8,0xad,0x23,0xb6,0xbb,0x78,0xf0,0xec,0x86,0x2d,0x7f,0x9b,0x5f,0x0a,0xbb,0x85,0x70,0x90,0x05, + 0xa7,0xa7,0xe5,0xd9,0xe9,0x69,0xc0,0xd6,0x26,0xf2,0xec,0x97,0x2e,0xab,0x31,0x3a,0x27,0x19,0x71,0x4e, + 0x64,0xf7,0x45,0xb9,0x9a,0x4f,0x69,0xb2,0x69,0xe3,0xd3,0x64,0xed,0xfe,0x51,0xb0,0x95,0x5f,0x17,0x9b, + 0xad,0xd7,0x20,0x96,0x28,0x47,0xef,0x9d,0xbc,0x7e,0x0a,0xef,0x93,0x3a,0x3f,0x63,0x73,0x59,0xfa,0x90, + 0xfd,0x09,0x88,0x0a,0xc5,0xb4,0xf1,0x98,0x59,0x65,0xce,0xec,0x3c,0x4f,0xeb,0xe5,0xe2,0x71,0xb9,0x2a, + 0x9a,0xc1,0xc0,0x3f,0x78,0xde,0xf9,0xea,0x70,0xc1,0xa3,0x6c,0x2d,0x57,0x10,0xf6,0xd4,0x2d,0x9d,0x67, + 0x8d,0xe7,0xc5,0xf7,0x24,0xab,0x27,0x55,0x0e,0x1b,0x77,0x9e,0x1b,0xc6,0xd6,0x29,0x61,0xeb,0x43,0xa2, + 0xf6,0xd2,0xa1,0xbf,0x35,0x8d,0x84,0x37,0x25,0x84,0x8b,0x4a,0x08,0x13,0xf2,0x63,0x4d,0x8f,0xf3,0x64, + 0x37,0xdf,0xdb,0x7b,0x88,0x83,0xec,0x33,0xb8,0xc0,0xc7,0x01,0x5b,0xdb,0x5e,0x51,0x95,0xbe,0xcc,0x51, + 0xb0,0x54,0x3d,0xae,0x0d,0xcd,0xe8,0xd4,0x17,0x3f,0x17,0xb4,0xcd,0x2a,0x2a,0x4f,0x53,0x53,0x52,0x4b, + 0x4b,0x58,0x5e,0x44,0x6a,0x4e,0xaf,0x73,0xbc,0xba,0xa4,0xee,0x81,0xb1,0xb7,0xe7,0x11,0xec,0x2d,0xf8, + 0xd2,0xbb,0x5f,0xbc,0x87,0x9a,0xae,0xd7,0x10,0xad,0x40,0x03,0xc3,0x4c,0xcc,0xbb,0x2c,0xb5,0x7b,0xfa, + 0x5c,0x8b,0x90,0x6d,0xb3,0x11,0x05,0x84,0xde,0x2c,0xab,0xa9,0xfd,0x51,0x36,0x86,0x3a,0x69,0x0f,0x13, + 0x0a,0x98,0x6a,0xbd,0x6e,0x76,0xd9,0x84,0x74,0x17,0xcf,0xe1,0x64,0x3c,0x71,0x64,0x54,0x4c,0xdd,0xb1, + 0x73,0xde,0xc0,0x36,0xb6,0x28,0x1b,0x90,0xaf,0x6c,0x23,0xef,0xe1,0xe8,0x3b,0x9e,0x7a,0xbf,0x0b,0x81, + 0xb4,0x76,0xa1,0x3b,0x2d,0xec,0xd1,0xc9,0x24,0xf6,0x22,0xfd,0x64,0x29,0x41,0xc5,0xa2,0x37,0x4d,0xe9, + 0x35,0xea,0x90,0xaa,0x53,0xbc,0x7b,0x1a,0x76,0x13,0xc5,0xfe,0xe1,0xa7,0xae,0x67,0xa7,0xab,0x5a,0x0c, + 0x5c,0x0b,0x2d,0xf9,0x31,0x9b,0xc5,0x39,0x10,0x09,0x9c,0xaf,0xd7,0x15,0x2c,0xad,0x34,0x58,0x8f,0x8b, + 0xb8,0x1a,0x87,0xef,0x08,0xbd,0xf0,0x09,0xc2,0xa3,0x20,0x54,0x84,0xb9,0x36,0x63,0x05,0x5d,0x66,0xac, + 0x67,0x0b,0x0f,0x5b,0xbf,0xb6,0xb4,0xc9,0x2d,0x43,0xf6,0x47,0xe3,0x99,0x2a,0xb8,0x7d,0x3c,0x72,0x7d, + 0xf2,0xb7,0xda,0x7a,0x2d,0x94,0x2d,0x6c,0xc8,0x8c,0xb5,0x6e,0x73,0x22,0x48,0xce,0xef,0x98,0xbf,0x02, + 0x4f,0x6d,0x67,0x7c,0xf3,0x0a,0x0b,0x77,0xd8,0xa8,0x6e,0x6b,0x6a,0x92,0x02,0x1a,0xa3,0x51,0xfd,0x20, + 0x35,0x50,0x58,0x03,0xb7,0x81,0x2e,0x4c,0xd2,0xe3,0xfa,0xe4,0x04,0x00,0x8a,0xa3,0x7e,0xc6,0x94,0xcc, + 0xb8,0x0c,0x2b,0x76,0x43,0x84,0x2e,0xe4,0x69,0x88,0x8d,0x1f,0x63,0xd9,0x0b,0x7a,0xe8,0x21,0x09,0xdf, + 0x74,0x24,0x6c,0xc5,0xb8,0xb3,0xe7,0xaa,0xa4,0xd7,0x9d,0xcd,0x78,0xf8,0xb2,0x4f,0x1b,0xf5,0xa0,0xef, + 0x38,0x1e,0x67,0x5e,0xa1,0xcc,0x51,0xd8,0xba,0x57,0xf9,0x26,0x6e,0xc6,0x99,0xdf,0x9e,0x2e,0xf1,0x34, + 0xfc,0x5c,0x93,0x4c,0x82,0xe0,0x0f,0x1a,0xfe,0x5c,0xb3,0x5e,0x41,0xe2,0xda,0xe2,0x26,0xf6,0x86,0xfd, + 0x5b,0x57,0x8c,0x36,0xce,0x8c,0x0a,0x9e,0xb6,0x53,0x17,0x4d,0x8c,0x9b,0x18,0x7a,0x7a,0xef,0xfb,0x27, + 0x8e,0xd8,0x11,0x79,0x4d,0x9b,0x69,0xd1,0x8c,0xbe,0xa7,0xcb,0xb9,0x84,0x03,0x14,0xc6,0x6c,0xab,0x78, + 0x6e,0x66,0xde,0x63,0xe2,0x6d,0x75,0x69,0x45,0xe8,0x65,0xbd,0x9e,0x57,0xa3,0x39,0x1c,0xed,0xe8,0x60, + 0x62,0xef,0x44,0xfc,0x41,0xa3,0x7d,0xd6,0x78,0xc0,0x7e,0xc4,0x60,0x0c,0xb5,0x1f,0x50,0x57,0x72,0x62, + 0x20,0x9a,0xf6,0xe3,0xb2,0x16,0x4b,0x1e,0x59,0x5f,0x06,0xb8,0x9b,0xcd,0x68,0x6b,0x7f,0x14,0xe2,0x3b, + 0x4e,0x07,0xac,0x45,0x7f,0x60,0x4a,0xba,0xf2,0x85,0x50,0xc2,0x2f,0x60,0x17,0xa4,0xc7,0x67,0x05,0xc1, + 0xdd,0x49,0x72,0x83,0x2c,0x51,0x53,0x39,0x4b,0xa1,0xd2,0xd4,0xc8,0xe7,0x06,0x50,0x44,0x11,0xe1,0xdb, + 0xfa,0x44,0xf1,0x87,0x35,0x7d,0x08,0xb0,0x1d,0xe7,0xb1,0x7c,0x9f,0x6f,0x46,0xba,0xbf,0x49,0xba,0x01, + 0xca,0xbc,0x65,0x48,0x79,0x81,0xb9,0xf7,0xc7,0x64,0x13,0x3f,0x37,0x30,0x99,0x69,0x26,0x17,0x7c,0xc6, + 0x9a,0x98,0x2e,0x66,0xac,0x6f,0x60,0x1c,0x13,0xe3,0x79,0xd3,0x3f,0x84,0x54,0x86,0xa0,0x8f,0xc1,0xe2, + 0x38,0x25,0x96,0x8b,0xfe,0xd0,0x18,0xea,0x88,0xd6,0x5b,0xbe,0x4f,0x09,0xc5,0x47,0xb1,0x3c,0xd7,0x9b, + 0x4d,0x77,0x18,0x66,0x10,0x74,0x40,0xe6,0x15,0xf5,0x97,0x68,0x57,0xbd,0x38,0xa6,0x95,0xca,0x6b,0x45, + 0x66,0x7a,0xd4,0xb3,0xf8,0x39,0xa8,0x02,0x0e,0x82,0x01,0x03,0xfd,0x38,0x57,0xab,0x25,0xac,0x03,0x69, + 0x0a,0x23,0x28,0xed,0x75,0x98,0x8c,0x46,0x47,0x81,0xe0,0x26,0x72,0xb6,0x71,0x02,0x14,0xe6,0x30,0xee, + 0x53,0xcd,0x70,0x91,0x7f,0x22,0x4a,0xc6,0x8d,0x8f,0xce,0xbe,0x3a,0x31,0xc9,0x66,0x8a,0xd2,0x07,0xf5, + 0x28,0x05,0x9b,0xc8,0x9f,0x9a,0x5c,0x1a,0x37,0x55,0xc2,0xcd,0x4c,0xe8,0x24,0xa2,0x59,0x47,0x2d,0x13, + 0x09,0x1c,0x40,0x0f,0x91,0x7b,0x6f,0x22,0x20,0xaa,0x09,0x51,0x3c,0x9c,0xae,0x77,0xc8,0xdc,0x6d,0x8c, + 0x17,0x6e,0x6f,0xf5,0x79,0xcb,0xd8,0xb9,0x00,0xb2,0xc5,0x40,0x68,0x28,0xca,0xd1,0x68,0x39,0x58,0x5f, + 0xa1,0x74,0xce,0xc0,0x5f,0x99,0x12,0xa5,0x57,0xa2,0x94,0x12,0x69,0x72,0x5a,0x84,0xa5,0x13,0x2e,0x50, + 0xa9,0x94,0xa0,0x8f,0xc6,0x12,0xe7,0x2c,0x55,0x40,0x49,0xfc,0x4d,0x7d,0xd9,0xc8,0xb3,0xee,0xd6,0x6f, + 0x8e,0xb3,0x13,0x55,0x26,0xbb,0xb4,0x6a,0x8a,0xd9,0x52,0x08,0x53,0xd0,0xec,0xcb,0xf0,0x91,0x88,0xd3, + 0x54,0x3e,0xe4,0x13,0x10,0xf4,0x09,0x9d,0x8f,0x68,0x28,0xd0,0x8e,0x90,0x41,0x34,0x4e,0x89,0xf7,0x8a, + 0x5f,0x6a,0x19,0x97,0x29,0x0a,0xc3,0xfd,0x5d,0x56,0x49,0xa7,0xf4,0x73,0x24,0x6e,0xaa,0x61,0x9a,0x30, + 0x19,0x6d,0x05,0x8a,0x69,0x74,0x93,0xf6,0x99,0xee,0xcd,0xe0,0xc1,0x64,0x5b,0x30,0x9b,0xa2,0x31,0xde, + 0x97,0xf6,0x1c,0x00,0x0d,0x7b,0x47,0x23,0x0c,0xd9,0x69,0x12,0xdc,0xc0,0x49,0x2c,0x7b,0xb2,0x45,0x3e, + 0x60,0x25,0x95,0xc3,0x53,0xce,0xa1,0xd4,0xb1,0xf7,0xdc,0x27,0x61,0x85,0x6b,0xef,0x33,0x27,0x9b,0x4f, + 0x5e,0x85,0x8d,0x0c,0x76,0x5c,0x59,0x6a,0xa7,0x22,0x70,0x05,0x4a,0xca,0x22,0xcd,0x6e,0x77,0x49,0xe8, + 0x51,0x37,0x01,0x5c,0xc8,0xc3,0x30,0x25,0xd2,0xbf,0x9b,0x51,0x3b,0xb3,0x07,0xbb,0x7a,0xaf,0x3c,0xfb, + 0x26,0x8c,0xde,0xf1,0x86,0x5a,0x4b,0xcf,0x7e,0xd7,0xb6,0x78,0xf8,0xeb,0xd5,0x20,0xba,0xe7,0xe1,0xf1, + 0xe6,0xf8,0x90,0xc6,0x16,0xb8,0x0a,0x5f,0xba,0x03,0xbd,0x7b,0x6c,0x18,0x80,0x7b,0x25,0xc2,0xc9,0x57, + 0xc6,0x3f,0xd5,0x44,0xe3,0xa8,0x1c,0x61,0x59,0x3c,0xa8,0x0c,0xe3,0xfe,0x8a,0x65,0x59,0xe6,0x03,0x27, + 0x49,0xb1,0x82,0x00,0xdb,0xf4,0x5b,0x6f,0xc5,0x1b,0x87,0x30,0x12,0x5a,0xdf,0xa4,0x1a,0xde,0x59,0xa6, + 0xc4,0x4a,0x35,0x23,0x67,0x00,0x64,0x97,0x92,0x7d,0x00,0x1e,0xa7,0x4b,0xaa,0x30,0x9b,0x32,0x2e,0xb0, + 0x5f,0x97,0x84,0x10,0xcb,0x07,0xb9,0xe9,0x57,0x89,0x08,0x21,0xd5,0x35,0x0f,0x0f,0x26,0x8c,0xd8,0x11, + 0xb2,0x56,0x95,0x92,0xc6,0x75,0x07,0x9d,0xc0,0xe2,0x27,0xea,0x55,0xa5,0x82,0x56,0x1b,0x3b,0x17,0x65, + 0xf9,0x11,0x6e,0xeb,0x3f,0xe9,0x2e,0xbb,0x41,0xfc,0xe4,0x0d,0xe2,0x4e,0x21,0x5d,0xfb,0x4e,0x74,0xe6, + 0xdc,0xb2,0x9e,0xc3,0x4e,0x96,0x1f,0x5f,0x44,0x2a,0xb4,0xed,0x3f,0x32,0x42,0xdb,0x40,0x9b,0x4a,0xfb, + 0xdf,0x51,0x1f,0x1e,0x6d,0x75,0xe1,0x91,0xd7,0x85,0xdd,0x37,0x10,0x47,0xfd,0x56,0xd0,0xfe,0xeb,0xf1, + 0x11,0x82,0xb3,0x39,0xed,0x68,0xad,0x60,0xc9,0x46,0xfa,0x5d,0x9a,0x68,0xc9,0x86,0x3f,0xc0,0xa8,0xae, + 0x4a,0xb4,0xd4,0x28,0x4b,0x56,0x95,0xf1,0x0f,0x8f,0x46,0x2b,0x23,0xc8,0x4d,0x9c,0x2c,0xb0,0xa1,0xe7, + 0xc6,0x09,0x71,0x1a,0x16,0xc4,0x35,0x27,0xa1,0x57,0xe5,0xfb,0x0e,0xb7,0x4a,0xd5,0xb0,0x2d,0x44,0x5b, + 0x0f,0xa4,0x9d,0x09,0xad,0x7c,0xd2,0xce,0x8b,0x40,0x4b,0x50,0xd0,0x11,0x70,0x94,0x4f,0xb0,0x1a,0x7c, + 0xaa,0x15,0xec,0xbc,0xce,0x9a,0x16,0xf0,0x15,0xe8,0xf3,0x81,0x9a,0x56,0xe3,0x49,0x15,0x46,0x71,0x5d, + 0xc1,0xc0,0x66,0x37,0xeb,0x57,0xaf,0x68,0x45,0x58,0xe4,0x49,0x51,0xfa,0x74,0x63,0x05,0x74,0x63,0x6e, + 0x18,0xdf,0x21,0xcd,0x16,0x00,0xdf,0xa5,0x2c,0x29,0x52,0xde,0x22,0xd4,0x0b,0x89,0x05,0x85,0xf0,0x10, + 0x7c,0xb0,0x65,0x90,0x9f,0x55,0xe5,0x1f,0x70,0x9c,0x16,0x9b,0xa8,0x46,0xd3,0xea,0xe6,0x3c,0x6e,0x7c, + 0x76,0x2c,0x67,0x28,0x2f,0x60,0x01,0x48,0x87,0xb3,0x31,0xcc,0x2c,0xe0,0x3d,0x00,0x37,0x40,0x58,0x70, + 0x6a,0x5a,0xa7,0x69,0xd1,0x3a,0xd4,0x39,0x26,0xb9,0xbc,0x80,0x38,0x55,0x12,0x96,0x1d,0xfa,0x3c,0xda, + 0xfa,0xa6,0xa4,0xaf,0x4e,0x38,0x00,0x42,0x44,0xb3,0x7e,0x5e,0x45,0xf4,0x7f,0x38,0xa1,0xa3,0xa0,0xf2, + 0x17,0xf4,0x8f,0xb0,0x1d,0xea,0x4a,0x6b,0xe4,0x9c,0x6c,0x5a,0x81,0x30,0x98,0x15,0x7c,0x5c,0xef,0x6e, + 0xd1,0x30,0x56,0xf2,0xec,0xe9,0xcd,0x9c,0x68,0x6e,0xe4,0xf0,0x41,0xa1,0x41,0xaf,0x57,0x8f,0x00,0x21, + 0x89,0x5f,0x43,0x66,0x45,0xda,0xdc,0x34,0x02,0x0f,0xb8,0x1e,0xff,0x1e,0x6a,0x61,0x82,0xb5,0xdf,0x57, + 0xb5,0xa2,0x03,0x9f,0x1b,0x4b,0xe5,0x74,0xa7,0xa9,0x07,0x35,0x30,0x61,0x8a,0x88,0x68,0x81,0xeb,0x0a, + 0xc8,0x19,0xee,0x96,0xb0,0xd0,0xa6,0x23,0x7f,0x4c,0x7f,0x6b,0xd4,0x8d,0xf3,0x50,0x4a,0x27,0x7f,0x60, + 0x59,0x54,0x45,0xfc,0x3a,0x1b,0x5f,0xd6,0x6a,0x3e,0x24,0x6a,0x3c,0x53,0x88,0xc3,0xc2,0x28,0x84,0x9e, + 0xe0,0xd3,0x46,0xf4,0x11,0x3f,0xc1,0xcc,0x3c,0x22,0xf8,0xa4,0x53,0x64,0x42,0xb5,0x4c,0xb8,0xab,0x44, + 0xed,0xa3,0xae,0x49,0x14,0xb9,0xfe,0x14,0xbc,0x1e,0x29,0xc8,0xd3,0x3c,0x0c,0x75,0x6f,0x22,0x69,0x45, + 0x3a,0x68,0x5a,0xf0,0x16,0xe6,0x87,0x50,0x0f,0xd1,0x53,0x4b,0x45,0x37,0x65,0xbf,0x0c,0x54,0xad,0x64, + 0x34,0x44,0x3b,0x6c,0xaa,0xb6,0xe0,0x08,0xe2,0x30,0xc2,0xbb,0x90,0xfe,0x0d,0x81,0x01,0x61,0x81,0xe1, + 0xde,0x88,0x4a,0x8a,0xf4,0x29,0x07,0x7b,0x40,0x5a,0x87,0x11,0x4f,0x4f,0x4d,0xb3,0x81,0x1e,0xc7,0x8d, + 0x8c,0x0b,0x52,0x06,0x7a,0x62,0x13,0x97,0x29,0xcd,0x5e,0x4d,0x23,0x44,0xba,0xec,0xfe,0x94,0x66,0x01, + 0x1f,0x4c,0x14,0x7d,0xa2,0x6a,0x5d,0x0c,0x9b,0x98,0xc5,0x5f,0xb5,0x1b,0xd5,0xf7,0xcc,0x05,0xea,0x91, + 0x61,0xc7,0x00,0x88,0x84,0x5a,0x00,0x35,0xe3,0xd8,0x73,0x44,0x31,0x01,0xd8,0x97,0xeb,0xb5,0xe6,0x6b, + 0xf9,0x95,0xce,0x20,0x5d,0x38,0xef,0x16,0xce,0xdb,0x85,0x73,0x14,0xde,0x6c,0x1f,0x58,0xdf,0x7a,0x32, + 0x57,0xb1,0xb2,0x67,0xf1,0x2c,0x61,0x24,0x6c,0x6c,0x6d,0x22,0x6f,0x04,0x96,0xee,0xb3,0x9f,0x7d,0x66, + 0x2d,0x04,0x53,0x9e,0xd5,0x2f,0x59,0xa7,0xbb,0x5e,0xff,0x80,0x78,0x2b,0xf2,0x02,0x95,0x62,0x76,0xfc, + 0x8e,0xb5,0x9a,0xf6,0x5c,0x3f,0x4a,0xcf,0xc5,0x6f,0x1f,0x8e,0xa6,0x42,0xfd,0xd0,0x36,0x80,0x07,0x80, + 0x21,0x86,0x41,0x75,0x78,0x9c,0xdd,0xbf,0x5b,0xd1,0x58,0x6c,0x6f,0x40,0x2b,0xf8,0xa2,0x59,0xf7,0xc1, + 0x2f,0xda,0xec,0xa0,0x2b,0x5c,0x88,0x3e,0x23,0x9f,0x37,0x5c,0x0a,0x68,0x55,0x5e,0x89,0x8a,0xdd,0x1a, + 0x20,0x3c,0xed,0xc8,0x92,0x69,0xd3,0xfc,0x9b,0x72,0xed,0x84,0x57,0x1e,0x25,0xfa,0xa3,0x39,0xb7,0x8a, + 0xf1,0x02,0xa7,0x3b,0x81,0x9d,0x88,0x83,0xe4,0xad,0xa3,0x61,0xcb,0x24,0xf3,0x86,0x33,0x67,0xb3,0x4e, + 0x2e,0x5b,0x0c,0x72,0x65,0x0b,0xea,0x97,0xe2,0x8d,0xce,0x66,0x52,0x3f,0xaa,0x8c,0x88,0x5a,0x4a,0x14, + 0x8a,0xcf,0xd3,0x46,0x67,0x3e,0x17,0x26,0x7c,0xd6,0xae,0x3b,0x0c,0x3c,0xfc,0xd3,0x8a,0x3b,0x66,0x44, + 0x68,0x5a,0x1a,0xc9,0x7c,0x6d,0x9a,0x94,0xbc,0x2d,0x50,0x05,0xcb,0x10,0xd3,0xa6,0xa9,0x6a,0xfb,0x40, + 0xe8,0xab,0x6c,0xac,0x17,0xb0,0x9f,0xa8,0x4a,0x23,0x3b,0x17,0x6b,0xba,0xd2,0xc9,0xb5,0x91,0xb0,0x5e, + 0x43,0x76,0x29,0x0a,0xdf,0x94,0x3f,0x88,0xc2,0xc2,0x80,0x01,0xdb,0x62,0x98,0x38,0x71,0xc7,0x27,0x84, + 0x14,0x78,0x3f,0x95,0x9e,0x04,0xa8,0xd6,0x5f,0x31,0x32,0xab,0xa1,0x66,0xc4,0x0f,0x0a,0x8f,0x82,0x26, + 0x5b,0x2c,0xe7,0xc4,0x62,0x01,0xea,0x4a,0x88,0xf9,0xc7,0x13,0xae,0x40,0x23,0x89,0x09,0xba,0xa6,0xc5, + 0xd9,0xeb,0x35,0x7d,0x11,0x4f,0x4c,0xfd,0x1b,0x1b,0xa0,0x68,0x2e,0x18,0xaa,0x38,0x9e,0x9f,0x68,0xc5, + 0x50,0x95,0x39,0x77,0x67,0x24,0xbb,0x08,0x20,0x4e,0x4a,0x90,0xdd,0x06,0xa1,0xbb,0x6d,0x10,0x25,0x12, + 0x66,0x87,0xf7,0x04,0xef,0x30,0x4f,0x8f,0x9f,0x79,0xda,0x48,0xcd,0xa9,0xdd,0x02,0xa7,0x1d,0x98,0x06, + 0x5d,0x3a,0xc6,0xe7,0xa2,0x59,0x8a,0x89,0xf3,0xa1,0x27,0x1c,0x83,0xac,0xa6,0x3c,0xa1,0xd9,0xef,0x51, + 0x17,0x96,0x99,0x51,0x3b,0x8e,0x32,0xbd,0x13,0x35,0x6d,0x1a,0x8d,0x22,0x56,0x31,0x9f,0xe6,0x45,0xca, + 0xbc,0xef,0xe7,0xa8,0xdd,0x34,0xb3,0x94,0xb6,0x51,0x4d,0x9f,0x0a,0xd3,0xfc,0x5c,0x7f,0x4d,0xd4,0x96, + 0xe2,0xc6,0x0c,0x4d,0x6a,0xd8,0xf6,0xad,0x92,0x86,0x02,0x68,0xb7,0xee,0xac,0x33,0xbc,0x1e,0xdd,0x78, + 0x2f,0x20,0xe7,0xba,0xb3,0x75,0xc7,0xac,0xb2,0x3f,0x6f,0xe8,0xab,0xcb,0x61,0x35,0x6a,0xcd,0x26,0xb9, + 0x5c,0x0f,0x41,0xcd,0x34,0xf0,0x85,0x82,0x75,0xd6,0x16,0x68,0x18,0x42,0x5d,0x33,0xb8,0x9e,0x30,0x80, + 0xf7,0x52,0xd1,0xdd,0x4b,0xa0,0xf8,0x0a,0x1b,0xda,0xd2,0xc6,0x8e,0x28,0x40,0xf4,0x15,0x20,0x90,0x07, + 0x81,0xa1,0xc0,0x69,0x34,0x44,0x04,0x7d,0x47,0x2f,0xec,0x36,0xc9,0x0c,0x60,0xb6,0x80,0x9d,0x01,0x0a, + 0xc4,0xc1,0xc0,0x47,0x0a,0xa0,0x19,0x84,0x26,0x51,0x0d,0x0f,0xfc,0x13,0x53,0x87,0xa7,0x30,0x26,0xaa, + 0x1a,0x5f,0x83,0xea,0x9b,0xf1,0xe4,0xd3,0x7d,0x22,0xcf,0xa6,0x44,0x51,0x3e,0x46,0xe0,0xa8,0xc7,0xd5, + 0x83,0x53,0x4b,0x71,0x3c,0xe6,0xee,0x26,0x04,0x04,0xa7,0xd5,0xf1,0xe3,0xea,0x24,0xa2,0x82,0xea,0xa8, + 0x62,0xa1,0x2d,0x53,0x1f,0xc3,0x6a,0x55,0x84,0xc6,0x92,0xea,0xaa,0xb2,0x94,0x4b,0x95,0x9c,0xda,0x17, + 0xaa,0x25,0xb1,0x55,0xa2,0x90,0xa1,0xa6,0xa9,0x26,0x28,0xb5,0x3f,0x56,0x09,0x3a,0x7a,0xd8,0x92,0xb3, + 0xfc,0x09,0xa1,0xed,0x2f,0xf2,0x81,0xc2,0xfa,0x41,0x94,0xbb,0x8b,0x90,0x9e,0x45,0x74,0x4b,0x45,0xae, + 0x12,0xd0,0x7d,0x66,0xf5,0xf0,0x1d,0x68,0xae,0xcb,0xc5,0xa8,0x1a,0x9e,0x5e,0x61,0x25,0xb2,0x8a,0x80, + 0xaa,0x80,0x34,0xfb,0x34,0xa7,0x93,0x6b,0x45,0x08,0x6a,0xba,0xb7,0x47,0xab,0x4e,0x7c,0x92,0x08,0x6a, + 0x18,0x1e,0x08,0xcf,0xab,0xdf,0xa9,0xd8,0x1d,0xe0,0xa5,0xcb,0xa6,0x2c,0xe1,0xeb,0xfb,0x3b,0x31,0x3e, + 0xbc,0x3e,0xb3,0x39,0xa1,0x8f,0xc0,0x5b,0x9d,0xb9,0x45,0xd9,0x77,0x2a,0x28,0x60,0xb6,0x8d,0xf1,0xd8, + 0x04,0x8c,0xfa,0x43,0x00,0xb8,0x51,0x54,0xa8,0xce,0xb6,0xad,0x9e,0x25,0x1b,0xa1,0xf8,0x6e,0xd3,0xd4, + 0x14,0xf4,0xa9,0xd7,0xec,0xca,0x36,0x2b,0x10,0xc9,0x1a,0xad,0x3e,0x99,0x54,0x31,0x0e,0x75,0xc7,0xaa, + 0xf1,0x8c,0xad,0xa8,0x0a,0xd3,0x89,0xf3,0x28,0x36,0x79,0x05,0xfe,0x8e,0x2b,0x9c,0xff,0x88,0x3a,0x47, + 0x20,0x4c,0xf3,0x65,0xca,0x23,0x2f,0x3e,0x37,0x5f,0x15,0xf8,0x3b,0xe6,0xbf,0xf1,0x79,0x74,0x6b,0x7f, + 0x9b,0x76,0x7f,0x67,0x3e,0xbe,0xdc,0x52,0x28,0xb1,0x91,0xdc,0x29,0x4e,0xdd,0x15,0xad,0xc2,0x4f,0xb2, + 0x5a,0x34,0xed,0xfd,0xe9,0x5a,0xb0,0x63,0x25,0xf7,0x2c,0xb6,0x6b,0xae,0x61,0x50,0x9b,0x41,0x2f,0x01, + 0xd9,0x6f,0xa4,0x3c,0x7d,0x54,0xe3,0x34,0x41,0x8d,0x68,0x2e,0xbc,0x6d,0x3f,0xcd,0x9c,0x28,0xc9,0xf8, + 0x0b,0xb2,0x8a,0x08,0x32,0x57,0x85,0xc8,0x50,0xda,0x78,0x3c,0x52,0xdb,0x52,0x30,0x56,0x03,0x32,0x46, + 0xa6,0x4d,0x73,0xe7,0x4a,0x3c,0xb9,0x45,0x38,0xec,0xec,0x5f,0x1c,0xca,0xcc,0xfe,0xdc,0xe2,0xe8,0x87, + 0x62,0xfc,0x36,0x9b,0xcd,0x91,0x53,0x5e,0x15,0x3f,0x88,0x7d,0xc3,0x70,0x96,0xcf,0x9b,0xac,0xea,0xb3, + 0x4e,0xfe,0x2b,0xfa,0xc3,0xa1,0xd3,0xf1,0x6d,0xa2,0xb8,0x63,0x3a,0xd1,0xc3,0x8d,0xdc,0x38,0x39,0x04, + 0xc8,0x57,0xa2,0x0c,0x10,0x3e,0x74,0x08,0xf1,0x29,0x64,0x91,0xa3,0x7a,0xc4,0xa3,0xa9,0x59,0xd0,0x74, + 0x99,0x4f,0xb1,0x8f,0x98,0xce,0xf7,0x52,0x88,0x1e,0xa2,0x6f,0x12,0x2f,0x05,0xa2,0xd9,0x33,0x1a,0xec, + 0xc7,0x0d,0x31,0x09,0xe6,0xf0,0x01,0xd7,0xb7,0x0b,0xc3,0x41,0x23,0x27,0x83,0xac,0x92,0x3e,0x14,0xc8, + 0x98,0x48,0xc3,0x46,0x60,0xc6,0x35,0xf6,0xc0,0xb8,0x55,0xc3,0x11,0xb4,0x4e,0x36,0xd6,0x18,0xc8,0x5b, + 0xe4,0x8b,0x4c,0x0c,0x4c,0x2c,0x83,0x0b,0x8e,0x69,0x5b,0x26,0xcd,0x12,0xbf,0xed,0xc0,0x40,0x5a,0x00, + 0x6f,0x35,0xdc,0xd6,0x1c,0x4b,0x95,0x84,0xee,0x52,0x87,0x82,0xca,0x07,0x29,0x0b,0x6b,0x2a,0x74,0x94, + 0x36,0x37,0x07,0x5d,0x75,0xb2,0xf7,0x6d,0x03,0xc0,0xed,0xaa,0xb9,0x4e,0xaa,0x28,0xf3,0x2b,0x2a,0x07, + 0x87,0x7e,0x3d,0xb9,0x21,0x6c,0xb7,0xec,0x60,0xfc,0xaa,0xea,0x4e,0x2f,0xeb,0x6e,0x2f,0x27,0x49,0x8d, + 0x0e,0xda,0xce,0x4e,0x88,0x5f,0x54,0x4e,0x12,0xab,0xe9,0x61,0x46,0x97,0x1f,0xe0,0xd9,0xcf,0xe1,0x0d, + 0x7c,0xd3,0x27,0x6f,0xe7,0x98,0xe0,0x5b,0xbc,0x63,0xef,0xd4,0xb0,0x52,0x98,0xbe,0x23,0xa2,0xcd,0x6c, + 0xd6,0x12,0x31,0xd6,0x98,0x94,0xad,0x78,0xcf,0x5c,0x86,0x97,0x21,0x5e,0x22,0x96,0x7a,0xe7,0x09,0xb6, + 0xdc,0x7a,0xdd,0xf8,0x2e,0xca,0xba,0x2a,0x53,0x49,0x0a,0xd5,0xc6,0xf0,0x94,0x80,0x66,0x9a,0x55,0xcc, + 0x5b,0xe1,0x3b,0xa2,0x2c,0x1b,0x13,0xd2,0x16,0x1a,0x3f,0x14,0xb7,0xc6,0x3f,0x63,0xa9,0xa2,0xe3,0xba, + 0x67,0x69,0x46,0x75,0x83,0xd2,0x31,0x82,0x77,0xb6,0x74,0x42,0x0b,0x1f,0x57,0xbd,0x10,0x9b,0x5e,0x43, + 0x0c,0xa8,0x40,0xb6,0x22,0x02,0x1b,0x50,0x87,0x3f,0x79,0x24,0xe1,0x79,0x77,0x3a,0x12,0x3a,0x42,0x68, + 0x61,0xe0,0x1e,0x06,0x04,0x4f,0x84,0x8d,0xb5,0x49,0x1c,0xb7,0xe1,0x2e,0x8f,0xc6,0xec,0x9b,0xec,0x7c, + 0x57,0x89,0x1d,0xca,0x21,0xd7,0x8d,0xab,0xf1,0x51,0x41,0x0b,0x01,0x42,0x3a,0xee,0x12,0xff,0xd7,0xb6, + 0x45,0xcd,0x4c,0x16,0xe0,0xaf,0xc1,0x4f,0x6e,0x2b,0xbc,0x69,0xce,0x17,0xc8,0x1a,0x69,0x81,0x81,0x3b, + 0x82,0x72,0x91,0xf0,0x4f,0xe6,0xc4,0xd9,0xb3,0x63,0x25,0xef,0x81,0x6b,0x61,0xe5,0xe8,0x65,0x81,0x22, + 0x11,0x41,0xb9,0x4f,0x92,0x67,0x86,0x3b,0xd0,0x0f,0x2c,0x42,0x1e,0xa5,0xd0,0x8a,0xd3,0xa8,0x61,0xc9, + 0xfd,0xbe,0xe6,0xe3,0x80,0xd0,0x61,0x4d,0xf3,0x3b,0x26,0xc6,0xaf,0x5c,0x20,0xa1,0x86,0x00,0xc2,0xbe, + 0x80,0xfd,0x8e,0x75,0x1d,0x9c,0xc1,0x4f,0x48,0xdd,0xe4,0xc0,0x28,0x29,0xe4,0xed,0x60,0xa1,0x85,0x9f, + 0x2d,0x21,0xbe,0x08,0x11,0x52,0x82,0x0b,0x97,0x05,0xb3,0xef,0xc7,0xfa,0xfc,0x26,0xc2,0x29,0x3f,0x69, + 0x9d,0xad,0xf8,0x8a,0x05,0x5f,0x96,0x62,0x9c,0x08,0xb5,0x5f,0x13,0x8f,0xef,0x42,0x7a,0x39,0xa3,0xae, + 0x16,0x0d,0x28,0xc7,0x4f,0xcd,0xd6,0x3d,0x47,0x55,0x96,0xa1,0x87,0x5b,0x69,0x60,0x44,0xb0,0xef,0x00, + 0xa3,0x86,0x3d,0xa4,0x73,0xb4,0xe9,0x2c,0x71,0x15,0x8d,0x1f,0xd3,0x9f,0xf8,0x13,0xfe,0x84,0x57,0x59, + 0x28,0x9f,0x24,0x2d,0xe8,0x1a,0x4a,0xbd,0x6f,0x19,0xc6,0x9f,0x15,0x80,0x7b,0xa7,0x45,0x35,0xb0,0xff, + 0x06,0xce,0xdc,0x22,0x5c,0x65,0xbd,0x2a,0x8c,0x61,0xe4,0xbb,0xd3,0xd3,0x60,0x90,0xa9,0xdd,0xc3,0xa8, + 0x75,0xfe,0x9c,0x5a,0x52,0x41,0x77,0xef,0x2a,0xd3,0x16,0x34,0xc4,0xaa,0xe2,0x93,0x66,0x10,0x16,0xe3, + 0xe0,0x14,0x3e,0xce,0x41,0x20,0xe1,0x83,0xbc,0x29,0xb9,0xca,0x3c,0xc1,0xec,0xad,0xec,0xb5,0x04,0x27, + 0x75,0xfc,0x25,0x13,0x74,0x1c,0x2f,0x56,0xa3,0x53,0xe7,0x05,0xc0,0xc9,0x47,0x99,0x56,0xa6,0x0e,0xd0, + 0x70,0x65,0x85,0x7b,0x47,0xa6,0x35,0xcf,0xdc,0xcc,0x76,0xc0,0xd9,0x5a,0x89,0x35,0x1c,0xcc,0xad,0x60, + 0xbf,0x95,0xd7,0xaf,0x69,0x28,0x89,0xb7,0x17,0x3f,0x7a,0x6c,0x0a,0xd4,0xf0,0x4d,0xe4,0xe8,0xfa,0x52, + 0xfe,0x8c,0x19,0x01,0xe1,0x29,0x8a,0x3d,0xfe,0xab,0x12,0xf9,0x99,0xa7,0xe9,0x23,0xd4,0x09,0xf9,0xe3, + 0x88,0x35,0x7b,0xf9,0xf8,0xf8,0xc4,0xe8,0xa8,0x73,0xed,0x0d,0xbe,0x0d,0x46,0x9f,0x32,0xf1,0x0a,0x3b, + 0x2d,0x93,0xd3,0x8c,0xda,0x38,0x2d,0x38,0x2e,0xfa,0x29,0xa4,0x63,0xf4,0x33,0x4f,0x2e,0x38,0xb5,0x49, + 0x2e,0xf9,0xf7,0xf7,0xe4,0x1a,0x3f,0x79,0x72,0x86,0x9f,0x45,0x72,0xc6,0xa9,0xb3,0x64,0xc1,0xbf,0x1f, + 0x93,0x73,0xfe,0x3d,0x4b,0xae,0xf9,0xf7,0x32,0xf9,0x88,0x1f,0xe2,0xe0,0x10,0x2f,0xe3,0x74,0x95,0xe4, + 0x9c,0x7c,0x9e,0x7c,0xf4,0x7a,0xf0,0x58,0x26,0xcd,0x17,0x12,0x12,0x83,0xac,0xc1,0x4c,0xbc,0x29,0xd8, + 0xcd,0x48,0x47,0x34,0x15,0xfd,0x6e,0x23,0x2f,0xd6,0x1a,0xac,0xd2,0x99,0x7c,0x52,0x27,0x3a,0x76,0xe8, + 0x5c,0xc7,0x78,0xa9,0x13,0xd9,0x86,0xcb,0xc2,0x04,0xe6,0xc4,0x49,0xc4,0x06,0x6c,0x44,0xf1,0xa4,0xfa, + 0x9d,0xc3,0x1d,0x22,0x9b,0xf1,0x78,0x0f,0x71,0x5c,0x64,0x6c,0x87,0xb0,0x69,0xdb,0x75,0x6a,0xa2,0x28, + 0x17,0x47,0xb8,0x54,0x68,0x40,0x44,0x4d,0x81,0x47,0xdc,0xee,0x64,0x34,0x31,0xae,0x81,0x66,0xe7,0x24, + 0xa9,0xf2,0xce,0x8b,0xc4,0x35,0x19,0x46,0x6a,0xeb,0x4c,0x82,0x59,0xb7,0x7b,0xc3,0x10,0x10,0x53,0xe2, + 0xb4,0x16,0xdb,0xba,0xb1,0xa6,0x3a,0xb7,0x82,0x99,0x18,0x69,0xc9,0x1d,0x0e,0xb1,0xaf,0x11,0xaf,0x33, + 0x2f,0x28,0xd9,0xf0,0xc9,0x99,0xeb,0xb9,0x1a,0x95,0x27,0x11,0x49,0x68,0x4c,0xe5,0x26,0xbe,0xbd,0x0d, + 0xa3,0x6a,0x69,0x37,0xe2,0xd1,0x32,0x0f,0xb3,0x5b,0x4c,0x8e,0x59,0xd3,0x2a,0x66,0xc7,0x9e,0xed,0x19, + 0xe6,0x57,0x13,0x3c,0xa2,0x5b,0xc9,0x20,0xc9,0xe2,0xa1,0xcc,0xa9,0x8f,0x16,0xf5,0x9c,0xc2,0x3f,0x50, + 0xec,0xef,0xe4,0xdc,0x4f,0xe6,0x46,0x36,0x47,0xe5,0xfb,0x6c,0x3c,0xf4,0x84,0xac,0x98,0x81,0x87,0xd4, + 0x2c,0x9f,0x46,0x9e,0xd6,0x32,0xf4,0x02,0x5c,0x55,0xe2,0x8d,0x8c,0x23,0x8a,0x0a,0xb2,0xa2,0x86,0xe5, + 0x8e,0xfa,0x19,0xae,0xb5,0x4e,0xb8,0xe6,0xd2,0xb4,0x58,0xce,0x84,0x96,0x9d,0x7a,0x65,0x4c,0xd2,0x48, + 0xd7,0x89,0x00,0x43,0x84,0x67,0x74,0xad,0xfa,0xad,0x53,0xaf,0x97,0xca,0x72,0x32,0x11,0xf5,0xf1,0xb2, + 0xd4,0x91,0x51,0x59,0xb8,0xa4,0x44,0x24,0xe8,0x84,0x6a,0xe6,0x3e,0xe0,0x9a,0x79,0xcf,0x88,0xaa,0x6a, + 0x1c,0x55,0x95,0x3d,0x20,0xea,0x85,0xd0,0x1e,0x23,0xed,0x3b,0x54,0x68,0x92,0xbd,0xe7,0x53,0x29,0x8c, + 0x36,0x6a,0x95,0x9c,0xb6,0xb4,0x31,0xae,0xff,0x09,0xe4,0xaa,0x25,0xc1,0xf9,0x7a,0x3d,0x0f,0x59,0x01, + 0xd4,0x29,0xda,0x9e,0x24,0x26,0xc8,0x24,0x7a,0x18,0xfa,0x15,0x72,0xd0,0x93,0x69,0x52,0x85,0x2b,0x35, + 0x73,0x2e,0x0f,0x21,0x16,0xa2,0xcf,0x7e,0x67,0xca,0x5e,0x8e,0xe3,0xcc,0x9f,0xd3,0xbd,0x3d,0x49,0xe5, + 0x2a,0xe2,0x26,0x9c,0x3a,0xf1,0x67,0xd4,0x1b,0x6f,0xd9,0x2b,0xc0,0x1f,0xc2,0xf2,0xaa,0x93,0xc4,0x75, + 0x29,0xd4,0x65,0xd6,0xda,0x1f,0x05,0x8d,0x59,0x67,0xc0,0x20,0x80,0x8b,0xb9,0xe5,0x6b,0xaf,0x1e,0x17, + 0xd5,0xef,0x98,0x26,0x00,0xd6,0x94,0x18,0x82,0x79,0x7a,0x3d,0xb6,0x05,0x69,0x2a,0x62,0x62,0x47,0x8f, + 0x24,0xe2,0x99,0xaf,0x8a,0xeb,0x0c,0x34,0xf3,0x80,0x2f,0xf4,0x3f,0x97,0x99,0x54,0xba,0xe6,0xf5,0xfa, + 0xfe,0xc1,0x81,0xee,0x98,0x0e,0xa3,0x06,0x8f,0xf5,0xbf,0xd2,0x82,0x5c,0x11,0xc1,0x55,0x99,0x2f,0x23, + 0x20,0xb1,0xdd,0x43,0x65,0xdb,0x1b,0xb7,0x46,0x18,0xbb,0xef,0x37,0x0e,0xf6,0x8c,0x5a,0x61,0x13,0xae, + 0x08,0x0d,0xcf,0x69,0xf3,0x58,0x38,0xbe,0x4c,0x56,0x6a,0x91,0x94,0xea,0x9c,0x70,0xde,0x35,0x1d,0x28, + 0x67,0x74,0xb6,0x5c,0xd1,0x61,0x40,0x98,0xee,0xaa,0x25,0x7a,0x4c,0x2e,0x4d,0xc2,0xcb,0x8c,0x50,0xbd, + 0x04,0xd2,0x5b,0x28,0xdd,0x04,0x71,0xf4,0x06,0xd1,0xc7,0xd7,0xaa,0x49,0xcf,0xe3,0xb3,0x8d,0xba,0x1a, + 0x95,0x49,0xc9,0x64,0xfa,0x6b,0xa0,0x09,0xc5,0x51,0x80,0x89,0x7e,0x9d,0x7b,0x46,0x9a,0x1e,0x27,0x85, + 0x28,0xd1,0xc8,0x05,0x19,0xc8,0x0f,0x7c,0x90,0x10,0xfd,0xc8,0x4c,0x76,0xc0,0x12,0xe7,0x4e,0x81,0x0c, + 0x02,0x2f,0x2a,0x91,0x17,0x70,0xe1,0x1d,0x85,0x85,0x9c,0x3d,0x2c,0x07,0x5e,0x1a,0x8a,0x30,0x62,0x85, + 0x86,0xfe,0x82,0xeb,0xd2,0xc6,0x24,0xc5,0x50,0xbb,0xef,0x09,0xe5,0x37,0xa2,0xfe,0x11,0x85,0x17,0x8d, + 0xf1,0x37,0x39,0x36,0x5f,0x80,0x64,0x3a,0x4b,0x27,0x1f,0xed,0x49,0xcd,0x85,0x62,0x2e,0xd4,0x2d,0xb3, + 0xa1,0xf5,0x33,0xb4,0x7d,0x29,0xd4,0xf1,0xcc,0xed,0xf6,0x56,0x90,0x2c,0x5b,0xd0,0x99,0x6f,0x11,0x32, + 0x4d,0x2d,0xe6,0xb8,0x41,0xe0,0xe0,0x42,0x28,0x58,0x38,0x6e,0xbb,0x62,0x4d,0x08,0x4b,0x9b,0x26,0x9c, + 0x3b,0x82,0x69,0xc5,0xd4,0xad,0x89,0xbf,0x49,0x34,0xfe,0x2a,0x1a,0x7d,0x4f,0x28,0x7f,0xae,0x68,0xeb, + 0x80,0x06,0x5b,0xaf,0xf1,0x3a,0x91,0xd7,0x43,0x4b,0xac,0xd6,0x9b,0x0d,0xa4,0xe3,0x1a,0xeb,0x99,0x0e, + 0x99,0x0e,0xa7,0x73,0x67,0x26,0xed,0x2d,0x57,0x9b,0x0e,0xc8,0xec,0x80,0x75,0x9f,0xd3,0x76,0x4f,0xa3, + 0x96,0x64,0x7c,0x42,0x18,0x6d,0x7e,0x92,0x3c,0x0b,0xe7,0xd4,0x19,0x3e,0xef,0x35,0xa9,0x06,0xc4,0xc4, + 0x63,0x25,0xd8,0x78,0x88,0xd3,0xca,0xbc,0x2a,0xe4,0x70,0x8d,0x2e,0x47,0x5e,0x79,0x7a,0x57,0xcc,0xa3, + 0x3e,0xc6,0xb9,0x44,0x53,0xce,0x56,0x26,0x84,0xf4,0xd2,0xa1,0x50,0xb7,0x9e,0x4d,0xc1,0x8a,0x0e,0x48, + 0xb5,0x72,0x96,0x41,0x5b,0x6a,0xbd,0x99,0x7f,0xac,0xaa,0x99,0x67,0x42,0x9f,0xc2,0xd5,0x92,0xf5,0x15, + 0x21,0x95,0x02,0xe0,0x43,0xab,0x2e,0x24,0x0f,0xe0,0x8b,0x33,0x13,0x29,0x43,0xfb,0x73,0x06,0x73,0x97, + 0x99,0x1c,0x93,0xd2,0xc9,0x29,0xa8,0x25,0x16,0x4d,0xe3,0x97,0x5e,0xc4,0xa5,0xe1,0x75,0xa1,0xfc,0x69, + 0x4f,0x11,0x83,0x88,0x36,0x9b,0x06,0x81,0x25,0x95,0x63,0x06,0xb4,0xc4,0xbc,0x2e,0x99,0x1e,0xe0,0x86, + 0x96,0xd1,0x66,0xd7,0xc7,0xe9,0x99,0x51,0x44,0x66,0x56,0x07,0xd9,0xb1,0x41,0x78,0x51,0xf9,0xb2,0x51, + 0x4d,0xbb,0xbe,0xa8,0x44,0xac,0x29,0x5f,0x41,0xfc,0x9f,0x27,0xcf,0xe1,0x9e,0x34,0xb2,0x29,0x90,0xf2, + 0xf5,0x09,0x84,0x3d,0x88,0xd6,0xb0,0x90,0xd9,0x47,0xf8,0xbe,0xea,0x47,0x02,0xae,0x9c,0x88,0x10,0xe2, + 0x86,0x19,0xca,0xd0,0xec,0x85,0x07,0xf7,0x12,0xe2,0x74,0x62,0xf5,0x21,0xe2,0x5f,0x11,0x5c,0xae,0xb2, + 0x7d,0x8b,0xff,0xf7,0x89,0x9c,0x07,0x29,0x30,0x08,0x2f,0xc6,0x01,0xbd,0x5c,0x30,0x53,0x51,0xaa,0x5e, + 0xbf,0x8e,0x54,0xdd,0x3c,0x26,0x54,0x15,0x57,0xca,0x1a,0x36,0xc5,0x33,0x65,0x49,0xcc,0x78,0xca,0x88, + 0x69,0xe2,0x30,0x15,0x31,0xeb,0xab,0x48,0x82,0xf9,0x5c,0xaa,0x85,0x3a,0x57,0xd7,0xea,0x4c,0x5d,0x79, + 0xb6,0xd5,0x88,0x71,0xaf,0xc9,0x1d,0x22,0x9b,0x8c,0xba,0xb2,0xcd,0xb7,0xa4,0x6c,0xf6,0x96,0xc2,0x90, + 0x21,0x9c,0x24,0xd8,0x06,0x29,0x11,0xf9,0xd2,0xa5,0x88,0x16,0x78,0x2e,0x19,0xaf,0x2a,0x4f,0xe6,0x9c, + 0xb7,0x88,0xa8,0x86,0xbe,0x06,0xa5,0x91,0x1a,0x7b,0x07,0xab,0x8a,0x25,0x34,0x3c,0x6a,0x15,0xc8,0x59, + 0xc3,0x8e,0xb8,0x64,0xe0,0xd5,0x88,0x83,0xf5,0x4b,0xf2,0x2e,0xe3,0x2d,0x3e,0x1d,0x75,0x3a,0x59,0xf7, + 0x1f,0xbe,0x88,0xf0,0x0f,0xa8,0x4e,0x21,0xfa,0x20,0xb8,0xf1,0x29,0x59,0x42,0xf1,0x22,0x29,0x8b,0xe5, + 0x1e,0x00,0xeb,0xfd,0x84,0x9b,0x9d,0x60,0xca,0x54,0x8d,0x89,0xbe,0x09,0xe7,0x49,0x1d,0x8d,0x8f,0x3f, + 0xd2,0x30,0x4f,0x3a,0x46,0xb6,0x73,0x17,0x8e,0x8a,0x88,0x08,0x17,0x40,0x06,0x73,0x89,0x5e,0x22,0x90, + 0x8c,0xc8,0x9d,0x60,0x0a,0x5d,0xfa,0xa6,0xd0,0x19,0x4d,0x58,0x79,0x5c,0x9f,0x44,0x7d,0xfe,0xab,0x44, + 0xdc,0xd0,0x39,0x36,0x3b,0x26,0x3a,0xca,0x06,0x03,0x39,0xe9,0x58,0xe5,0x4f,0xa2,0xb1,0x71,0xd1,0xfa, + 0xe6,0x80,0x46,0xf8,0x6d,0x48,0x35,0xe6,0xe1,0x44,0xc1,0xec,0x84,0xfd,0xe9,0x89,0x51,0x24,0x32,0x8d, + 0x46,0x46,0x33,0xf3,0x2d,0xe1,0x4b,0x60,0x00,0xa0,0xa6,0x8f,0xe1,0x8a,0x95,0x6b,0x83,0x09,0xe5,0x89, + 0x22,0x1b,0xf7,0x53,0xe9,0xf0,0xfd,0x84,0x17,0x3c,0x8d,0xe0,0x8c,0x16,0x30,0x8a,0x61,0xf3,0x38,0x46, + 0x15,0xe3,0x4e,0x05,0x08,0x44,0x25,0xd6,0x0c,0xf2,0x55,0xf8,0x11,0xf8,0x30,0xfe,0x96,0xfe,0x4a,0x9b, + 0xdd,0x0f,0xa4,0xb9,0x98,0x90,0x71,0x69,0xe5,0x64,0xbc,0xf0,0x13,0x68,0x23,0x99,0xe4,0x98,0x80,0x4f, + 0x15,0x60,0x60,0xb8,0x62,0xb6,0x95,0xd8,0xef,0x4b,0x80,0x79,0x30,0x48,0x65,0x60,0xf4,0xf7,0x34,0x30, + 0x9d,0x45,0xa3,0x0e,0xef,0x6d,0x68,0x5d,0xb4,0xec,0x27,0xc6,0x32,0x3e,0xab,0xd8,0x64,0xe3,0x2f,0xea, + 0x55,0xb6,0xb9,0x76,0x42,0x22,0x16,0x5e,0x25,0xcb,0x8f,0xbc,0x84,0x03,0x53,0x4f,0xd6,0xf1,0x89,0xca, + 0x3c,0x73,0x75,0xb6,0x0e,0xd9,0x12,0x8f,0x96,0xd1,0x38,0x9c,0x25,0xf9,0xf0,0xce,0x65,0x41,0x07,0x2b, + 0xa2,0x55,0xc9,0xd3,0xb0,0xa8,0x59,0x16,0x74,0x4e,0x64,0x53,0x7a,0x8e,0x80,0xae,0xf5,0x12,0x81,0x10, + 0x08,0xdf,0xac,0x20,0x19,0xcb,0xeb,0xb7,0x59,0x9d,0x55,0x44,0xf6,0x50,0x36,0xa5,0x8e,0x35,0x36,0xa1, + 0x2c,0xf6,0xe3,0x7d,0x33,0x4f,0x1b,0x04,0xb6,0xd0,0x1f,0xe3,0x3b,0xec,0xbf,0x36,0xfe,0xc8,0x99,0x60, + 0x4d,0x5e,0x84,0xb9,0x27,0xa1,0xb3,0xa8,0xa8,0x0e,0x40,0x5f,0x8e,0x89,0x05,0x9a,0xd2,0xb7,0x39,0x8e, + 0x9b,0x28,0xd6,0xcd,0x94,0xbd,0xb5,0x45,0xf1,0x2a,0xa1,0xe2,0xa5,0x14,0xf7,0x44,0xa1,0x2b,0x8c,0xd2, + 0x73,0x54,0xa9,0xc2,0xdc,0xb2,0x34,0x39,0xfc,0xc2,0x4a,0xe2,0x90,0xca,0x2a,0xcb,0xcf,0x8b,0xd7,0xc6, + 0x9d,0x99,0x26,0x85,0x60,0x80,0x37,0xbf,0x41,0x77,0x2c,0xb5,0x6c,0xe8,0x0b,0x83,0xd0,0x3c,0x5b,0x6c, + 0x0e,0x48,0xe5,0x72,0xec,0xe6,0x7a,0x30,0xe1,0x0d,0xa6,0x39,0x36,0x57,0x80,0x36,0x1b,0xd1,0x3f,0x73, + 0x0d,0x67,0xc4,0x81,0xcd,0x87,0x6c,0xa9,0x50,0x08,0x66,0xa3,0x7d,0xce,0x3d,0x24,0x4c,0xce,0xc4,0xf8, + 0x2a,0x8a,0x81,0x72,0x36,0x1e,0x26,0xf3,0xbc,0x33,0xfc,0x88,0x73,0x56,0x4c,0xc0,0x8a,0xd9,0x7a,0xb5, + 0xcc,0x2a,0x73,0x02,0xa1,0x9c,0x4e,0x61,0x12,0x84,0x4d,0x4f,0xf9,0xdd,0x58,0x4a,0xdc,0xb4,0xdf,0x13, + 0xe3,0x60,0xd2,0xb5,0xb6,0x46,0x28,0x36,0x47,0x88,0xe0,0x4c,0x13,0x66,0xd3,0x38,0xbe,0x81,0x74,0xac, + 0xb3,0x94,0x58,0x7e,0x9d,0x62,0x0f,0xc8,0xd2,0xe8,0xeb,0xcb,0x93,0x5d,0xb1,0x85,0x84,0x30,0x80,0x7d, + 0x24,0x11,0x42,0xa6,0x81,0x38,0xbb,0xc7,0x1a,0x77,0x4b,0x74,0xa5,0x49,0x58,0x42,0x69,0x45,0xd2,0x95, + 0x97,0x8e,0x8b,0x98,0xb5,0xeb,0x5b,0x76,0x70,0xe2,0x84,0x60,0xfb,0x22,0xca,0x93,0xcc,0x57,0x9e,0x84, + 0x8d,0x13,0xe2,0x82,0xec,0xfc,0x26,0x39,0xa0,0x35,0x69,0xa7,0x3d,0x38,0xc0,0x02,0xe9,0x88,0x5c,0x48, + 0x70,0x6e,0x71,0x6e,0xb7,0x15,0x46,0x38,0xaf,0x30,0x46,0xcf,0xe9,0x7e,0xc3,0xde,0xed,0xf0,0x0e,0xee, + 0x4e,0x1a,0x1d,0x58,0xa1,0xb7,0x80,0xc9,0x73,0x28,0x9e,0xdb,0x65,0xb4,0xd9,0x15,0x47,0x9c,0x71,0x1b, + 0xe5,0xb8,0xe1,0xd4,0x93,0x04,0xa1,0x50,0xb6,0x8d,0x07,0x9e,0x66,0x36,0x14,0xc9,0x29,0xfc,0xfa,0x5b, + 0x46,0x96,0x6f,0x5a,0xa6,0x10,0xec,0x89,0x88,0x33,0xbd,0x43,0x34,0xb0,0x13,0xa6,0xf7,0xd5,0x6f,0x59, + 0x8b,0x3e,0xe9,0xae,0xce,0xd8,0x77,0x71,0xff,0x66,0xff,0x30,0xde,0x56,0xcb,0x8c,0x7d,0xe7,0xfc,0x4e, + 0x69,0x68,0xe5,0xd4,0x6e,0x68,0xe3,0x1d,0x48,0xc4,0xaf,0x13,0xe0,0x76,0x13,0xef,0xa0,0x90,0x50,0xd5, + 0xec,0x9d,0xda,0x68,0xb9,0xb8,0x27,0x41,0x7c,0xd2,0xb1,0x06,0x60,0x8d,0x28,0xc3,0x29,0x74,0x2d,0x0c, + 0x9e,0xa7,0x8c,0xe7,0xba,0x70,0x69,0x22,0xea,0xc2,0xbe,0x9d,0x4d,0x1a,0x35,0x77,0xf0,0x06,0x42,0xb1, + 0x2d,0xc3,0xa2,0x51,0x0d,0x59,0x31,0x1f,0xf6,0xcf,0x41,0x91,0x95,0xec,0x24,0xb8,0xf1,0xc4,0x3d,0xcf, + 0xb7,0xd4,0x0a,0x6c,0x72,0xbf,0x9b,0xb3,0x6b,0x16,0xa3,0x18,0x78,0xa6,0xe1,0x77,0xbd,0xce,0x5d,0x0b, + 0xcf,0x35,0xb1,0x3c,0xbc,0x33,0xa5,0x21,0x56,0x25,0x7c,0xb3,0x32,0xab,0xe2,0x5f,0xf1,0x1d,0x94,0x9e, + 0xb9,0x7f,0xe6,0x7b,0x60,0xdf,0x88,0x3c,0xf9,0x31,0x54,0x02,0xf1,0x33,0xde,0xf3,0x2e,0x41,0x15,0xfe, + 0x1b,0x1d,0xb5,0x5c,0x0a,0x36,0x64,0xfc,0x44,0xa4,0x85,0x7e,0x42,0x14,0x63,0xfc,0x9e,0xc4,0xfa,0xc1, + 0xb7,0xdf,0x6f,0x2f,0x7f,0x36,0x6e,0xc6,0xd9,0x20,0x40,0x78,0x9a,0x38,0x8b,0xc1,0x1f,0x7a,0xc6,0xdd, + 0xaf,0x7c,0x00,0xdb,0x02,0x94,0xbe,0x63,0x90,0x26,0x0b,0x31,0xfe,0x68,0x77,0xaa,0xd2,0x69,0xe7,0xf2, + 0x07,0x25,0xef,0x50,0x22,0x77,0x13,0xd4,0x89,0x8d,0x07,0x22,0x8b,0x2f,0x5a,0x83,0x40,0x00,0xff,0x07, + 0x09,0xf5,0x22,0x52,0xf4,0x5b,0x78,0xbb,0x92,0xf5,0x31,0xdd,0xd6,0x04,0x5d,0x06,0xc1,0xa8,0x25,0x89, + 0xcb,0xb4,0xef,0x7e,0xd8,0xe8,0x18,0xb9,0xa8,0xae,0xf1,0xab,0xe3,0x0d,0xdc,0x0b,0xd0,0x6d,0x9b,0x76, + 0x7f,0xd8,0x73,0x6e,0x3d,0xa8,0x2f,0xcf,0x83,0x38,0x58,0xa4,0xcd,0x05,0xdb,0x14,0x8d,0xe5,0x71,0x4b, + 0x31,0xf4,0xd6,0xfb,0xb4,0xa7,0x1d,0x1b,0x19,0xef,0xf7,0x55,0x56,0x5d,0xbf,0xcb,0xa0,0x6d,0x2e,0xe5, + 0xae,0x98,0xdb,0xe2,0x5d,0x4e,0xf3,0xcb,0xa0,0x65,0xa1,0xf7,0x53,0x67,0x7f,0xb0,0x41,0x65,0x95,0xcd, + 0x3a,0x0e,0x40,0xc6,0xa9,0x3a,0xf7,0x3d,0xb4,0x0d,0x68,0x02,0x2b,0xc0,0xf7,0xba,0x84,0x59,0x3c,0x7d, + 0x5b,0x8f,0xba,0x5a,0x93,0x92,0x8d,0x9d,0x56,0xfc,0x8b,0xc3,0x1e,0xbf,0x38,0x58,0x71,0xa8,0xe2,0x51, + 0xd3,0xec,0xb1,0x6b,0xff,0x79,0xf1,0xac,0xac,0x7a,0x6b,0xc1,0x5f,0x8b,0x26,0x72,0xc2,0xc1,0x7b,0x7b, + 0x9c,0xc4,0x58,0xd8,0xd4,0x4d,0x30,0x21,0x0f,0xb9,0x07,0xac,0x8f,0x44,0x46,0xed,0xe2,0x5f,0x81,0x82, + 0xc3,0xf1,0x4e,0xbf,0x2c,0x48,0x92,0x3d,0xa8,0x8f,0x7b,0xdf,0xf5,0x9b,0x55,0x7a,0xce,0x36,0xac,0xd1, + 0x96,0xa7,0x1c,0x25,0x85,0xa8,0x00,0x7e,0xee,0x4a,0x56,0xa0,0x8c,0x13,0xe9,0x08,0x9f,0xae,0x40,0x9b, + 0xad,0x40,0x0e,0x15,0x5c,0x0d,0xc3,0x4a,0xcf,0xb9,0x08,0x3c,0x13,0xc7,0x8a,0x57,0xac,0x8a,0x83,0x2a, + 0x96,0x9d,0xc6,0x3e,0x53,0xc6,0x8a,0x0b,0x61,0x3c,0x47,0x4b,0x9f,0xb3,0xb7,0x22,0xfd,0x10,0x1f,0xc8, + 0x03,0x06,0x2d,0x81,0xd1,0x3c,0x84,0x0c,0xe9,0x0d,0xc2,0x58,0x5d,0x94,0x73,0xe2,0xd1,0xb9,0x86,0x96, + 0xa4,0x09,0xe3,0xf4,0x13,0x40,0xf7,0xb6,0x53,0xb4,0xdc,0xcd,0x37,0xce,0xcf,0x44,0x34,0x61,0x95,0xc7, + 0xe2,0x01,0x87,0xcd,0x94,0x13,0xd9,0x90,0x3f,0x48,0xaa,0xd1,0x60,0x90,0xd3,0x76,0x85,0x81,0x62,0x7e, + 0xa2,0xc9,0xe8,0x30,0xc5,0x01,0xef,0xdc,0x28,0x3d,0xb7,0x92,0xf7,0x1a,0x26,0x75,0xe4,0x3a,0xcf,0x9b, + 0x6b,0xbd,0x6e,0xba,0x49,0xed,0x79,0x37,0x90,0x2c,0x7c,0x70,0x82,0xf8,0x19,0x97,0x70,0xc9,0x6b,0xe4, + 0xa1,0x4e,0xbe,0xcb,0xb6,0x6b,0x75,0x41,0x03,0xc0,0x5f,0x51,0x89,0xad,0x46,0x70,0x39,0xb1,0x29,0x31, + 0x27,0x52,0x83,0x48,0x5f,0xcd,0x42,0x15,0x22,0x5b,0xa9,0x92,0x5a,0xf8,0xf8,0x09,0x7e,0xaa,0x31,0xcd, + 0x1a,0x4d,0xf1,0x07,0x88,0xbc,0x12,0xe3,0x65,0xfb,0x07,0x78,0x5a,0xad,0xe2,0x0c,0x14,0x2e,0x24,0x50, + 0x39,0x6c,0x22,0x80,0xfd,0xe9,0xc7,0xed,0x2b,0x91,0x37,0x4f,0xf7,0xf6,0x56,0x06,0xa8,0x89,0x33,0x91, + 0xaf,0xe1,0x90,0xd6,0xf7,0x6d,0x5e,0x10,0x0d,0xce,0xdf,0xcc,0xed,0x37,0xd8,0xc2,0xf3,0x56,0xc4,0x99, + 0x59,0x9f,0xfc,0x5b,0x6c,0xef,0xe6,0xbe,0xc5,0x1d,0xb5,0x35,0xc7,0x38,0x02,0x53,0xad,0x34,0xb9,0x19, + 0x95,0xe3,0x1f,0xe0,0x0c,0x25,0xc9,0x01,0xe4,0xcc,0xb3,0x90,0x2d,0xfe,0x57,0x36,0x2a,0x07,0x17,0x40, + 0x74,0x3f,0x1d,0xd4,0xef,0xd6,0x16,0x57,0x9d,0x16,0x57,0xdc,0x62,0x77,0x12,0x74,0xcb,0xcc,0x71,0xdb, + 0xf9,0xae,0xa3,0x09,0xbb,0x94,0xd1,0x57,0x3c,0xed,0xc1,0xaa,0x90,0x89,0xc9,0xe8,0x1f,0x84,0xad,0x6d, + 0x73,0xdc,0xef,0xb2,0x6d,0xc8,0xe8,0x8b,0x8b,0xd3,0xb2,0xb9,0x2d,0x65,0x79,0xb7,0xcd,0x38,0x43,0x31, + 0x35,0x8e,0x86,0x3a,0x64,0x37,0x2b,0xbc,0x2b,0xf7,0x96,0x5c,0x43,0x35,0x74,0x4c,0xc0,0x4f,0x2d,0x0d, + 0xab,0xf4,0xea,0x15,0x13,0x4e,0x39,0x13,0x50,0x83,0x60,0x18,0x0c,0x7c,0x63,0x8f,0xdc,0xaf,0x06,0x72, + 0x00,0x89,0x88,0x3a,0x0c,0xa2,0xe8,0x84,0x2a,0x80,0x53,0xf6,0x8c,0xf8,0xa2,0xc6,0xe3,0x8b,0x1c,0x58, + 0x06,0x94,0x8f,0x5a,0x9d,0xee,0xca,0xf3,0x87,0x70,0x46,0x05,0x36,0x5a,0x41,0x26,0x20,0xc3,0x3f,0xda, + 0x1c,0xb2,0x64,0x7b,0xc7,0x32,0x2c,0x24,0x7a,0x86,0x2e,0xaf,0x6d,0x1e,0x2b,0xd8,0x3c,0x56,0x72,0x8b, + 0x01,0xa3,0x7f,0xd7,0x36,0xdf,0x4d,0x22,0x23,0xc2,0x69,0xef,0x6c,0x22,0x3d,0xff,0x86,0x2c,0xf4,0xa8, + 0x9d,0x6d,0x6b,0x6c,0x9e,0xef,0xb0,0x61,0x6c,0x25,0xfe,0x50,0x6d,0x82,0x33,0x2f,0x2e,0xb2,0x2a,0xe7, + 0x20,0xd8,0x34,0x37,0x59,0x28,0x48,0xd0,0x22,0xbf,0xcc,0x98,0xff,0x4b,0x82,0x66,0x04,0x98,0x27,0xa2, + 0xc6,0x30,0x9a,0x49,0xe2,0x7f,0xc2,0xe2,0xf0,0x79,0x52,0x75,0x92,0x98,0xf7,0xd2,0xd2,0x1f,0xc4,0x38, + 0x68,0x15,0x48,0x58,0xb9,0x3c,0xd7,0x3e,0x10,0x4c,0x19,0xce,0xa3,0x34,0x99,0x83,0x9a,0x9f,0x08,0xe3, + 0x92,0x12,0xc8,0x43,0x36,0x0a,0x1e,0x6d,0x14,0xbe,0x28,0xd6,0xeb,0x57,0xb0,0xd3,0xd0,0xf2,0x6e,0x08, + 0x21,0xe4,0x49,0x17,0x33,0x22,0x75,0x9d,0xef,0x55,0x3c,0x89,0xb0,0xeb,0x4a,0x36,0xb0,0xcf,0x81,0xbc, + 0xc7,0x08,0x38,0x87,0x68,0xb1,0x36,0x0c,0xf8,0xab,0x77,0x61,0x45,0xc0,0x8b,0x4c,0x62,0x98,0xf1,0x83, + 0xe0,0x97,0x9d,0x42,0xc8,0xf4,0x56,0xe1,0x07,0x5f,0xef,0x5f,0xb0,0xdf,0x4f,0x9a,0x73,0xd4,0xea,0xad, + 0x0f,0x59,0x00,0x92,0x04,0x44,0x55,0x97,0x57,0x33,0xda,0x11,0x35,0xed,0x8e,0xac,0x08,0x24,0x14,0x58, + 0xf0,0xf4,0xe5,0xa3,0xa7,0x4f,0xb4,0x09,0xb4,0xf0,0xf2,0xe3,0xa0,0xa9,0x68,0x2c,0x31,0x74,0xf7,0xad, + 0x68,0xe5,0xec,0xca,0x66,0xcd,0x9c,0x9a,0x5c,0xc7,0x05,0x68,0x17,0xe1,0x5e,0xe0,0xb6,0xd0,0x94,0xca, + 0xa1,0xde,0x62,0xac,0x9f,0x63,0xa9,0xd7,0x33,0x94,0xfa,0x5c,0xb7,0xed,0xa4,0x34,0xb8,0x54,0xa3,0xd5, + 0x8a,0x64,0x35,0xd6,0x2a,0x01,0x74,0x3c,0x1b,0xd6,0xf4,0x8d,0x5d,0xcc,0x62,0xa8,0xc8,0x0b,0x38,0xad, + 0x3d,0x83,0x2b,0xc4,0xd1,0xd3,0x9f,0x8f,0x1e,0xbe,0x7d,0xfa,0xb0,0x35,0x6a,0x4a,0x5f,0xba,0x33,0x54, + 0xcf,0x0e,0xc7,0xb9,0xcc,0xb3,0xe5,0x85,0x21,0x99,0x7c,0x13,0xbf,0x86,0x08,0xed,0x72,0xf9,0x9c,0x88, + 0x87,0x69,0x4e,0xd8,0x06,0x06,0x33,0xe9,0x79,0x2a,0x48,0x51,0x99,0xae,0x74,0x2e,0x5e,0x11,0xca,0x01, + 0x06,0x20,0xa3,0xac,0xe7,0x5e,0x16,0x9b,0xad,0x4c,0xc3,0xc9,0xee,0xc1,0xa6,0x67,0x19,0x3c,0x48,0xf8, + 0xbe,0xb3,0x1f,0x0d,0xc9,0xc6,0xf1,0x74,0x52,0xbd,0x57,0x64,0x53,0x66,0x90,0x78,0x7b,0xcc,0x01,0x76, + 0x5b,0xa9,0xf9,0x02,0x96,0x51,0x40,0xf4,0x0a,0x46,0xa8,0x5b,0x28,0xd5,0x85,0x22,0xab,0x4d,0xe9,0xa5, + 0xeb,0xcd,0x45,0x65,0xf0,0x8e,0x20,0x92,0x72,0xc4,0xa2,0x94,0x2e,0x59,0x19,0x8d,0x22,0x42,0xa2,0x7d, + 0xac,0x90,0x70,0x6c,0x11,0x1f,0x7e,0xec,0x62,0x4b,0x60,0xfb,0x22,0xd3,0x84,0x18,0xc3,0x1e,0x1b,0xc8, + 0x0b,0xb1,0x64,0xad,0xe3,0x39,0x02,0x86,0x5f,0xbe,0x50,0x9a,0x8c,0x73,0xf8,0x33,0x69,0x31,0x45,0x3c, + 0x2b,0xc2,0x03,0x35,0xbc,0xd9,0x20,0xfb,0x1b,0x3f,0x83,0x60,0xe9,0x15,0x6b,0x8c,0x88,0xd0,0x1f,0x69, + 0xac,0xc3,0x06,0xc7,0x10,0xfc,0x9c,0x72,0x2c,0xd7,0x1c,0x63,0xe6,0x4a,0x32,0x22,0x87,0x59,0xee,0x18, + 0xd6,0xc9,0x33,0xa0,0x80,0x57,0x19,0xcb,0x05,0x15,0xfc,0xad,0x72,0xd8,0x55,0x66,0x97,0x5c,0xb0,0xe7, + 0x62,0x00,0x31,0xe6,0x52,0x35,0x4e,0x7b,0x57,0x30,0xa9,0xfd,0x65,0xfd,0x36,0xdb,0xf2,0x7c,0x0b,0xd9, + 0xdc,0xca,0xf3,0xc3,0xc8,0xb4,0xb5,0xf7,0x39,0xe1,0x76,0xb9,0x79,0x81,0xda,0x3f,0x4f,0xf2,0xc1,0xe1, + 0xc6,0x3b,0x14,0x8d,0xb8,0x9d,0xa8,0x1b,0xd8,0x7b,0xe3,0xcf,0x14,0x7f,0x96,0xf8,0x03,0x8b,0xf0,0x4b, + 0xfa,0xbf,0xa0,0xff,0xe7,0xda,0xd7,0xb2,0x47,0x6c,0x42,0xe0,0x23,0xf6,0xb6,0x99,0x1f,0x53,0x3d,0x87, + 0xdc,0xea,0x8b,0xaf,0xc5,0x70,0xfb,0xeb,0xfb,0x34,0x70,0x30,0x69,0x68,0xc6,0xed,0xcc,0x59,0xf4,0xc5, + 0x97,0x9d,0x02,0xb3,0x56,0x81,0x69,0xf4,0xf5,0x3f,0x3b,0x05,0xa6,0xad,0x02,0xcb,0xe8,0xcb,0xff,0xee, + 0x14,0x58,0xb6,0x0a,0x1c,0xde,0xff,0x12,0x3c,0xe2,0x7a,0x4d,0x0f,0xbc,0xa5,0xfd,0x2e,0x0e,0x0e,0xa3, + 0xfe,0x8c,0x7d,0x64,0x5c,0xac,0xd7,0x97,0xeb,0xf5,0x22,0xba,0xa9,0xaf,0x72,0xed,0x0e,0x30,0x49,0xa9, + 0xd6,0x2f,0xbe,0x8c,0x67,0x08,0x1b,0xc8,0x16,0xb1,0x23,0x49,0xfa,0x3a,0x5e,0x75,0x92,0xbe,0xfe,0x67, + 0x3c,0xed,0x24,0x7d,0x79,0x10,0x2f,0x06,0x83,0x56,0xca,0x61,0xbc,0xd8,0xdf,0x6f,0x7d,0x76,0x18,0x5f, + 0xb6,0xcb,0x7c,0xfd,0x45,0x7c,0xd9,0x2e,0x73,0x78,0xff,0x8b,0xf8,0xa2,0x5d,0xe8,0xf0,0xfe,0x57,0xf1, + 0xc5,0xfe,0x3e,0xe8,0x32,0x99,0x10,0xb7,0xf3,0xae,0x13,0x1a,0x8e,0x3a,0xd3,0x0c,0xd7,0xe8,0x9a,0x03, + 0x3f,0x8a,0x67,0x4b,0x78,0x96,0xd8,0x2b,0x18,0xae,0x69,0x4b,0x5c,0xef,0xef,0x47,0xb8,0xd2,0xeb,0x48, + 0x47,0xd7,0x3d,0x93,0x5b,0xf9,0x60,0xc5,0x2f,0xbe,0x20,0xd6,0x42,0xa4,0x1c,0x87,0x0c,0x4b,0xcc,0xa4, + 0x9b,0x8b,0x9b,0x1d,0xa0,0xc5,0x8d,0xe8,0x52,0xbc,0xf2,0xbd,0x05,0x63,0x78,0xc0,0x9f,0x83,0xc7,0xc1, + 0xfd,0x1c,0x0e,0xbe,0x52,0x1f,0xbe,0x20,0xa1,0x9d,0x24,0x30,0x25,0x34,0xd2,0xde,0x39,0x9d,0xb0,0xf6, + 0x0e,0x92,0x10,0x3a,0xaa,0x64,0xfe,0xe0,0x60,0x7c,0xf7,0x94,0x5e,0xef,0x0e,0x26,0x83,0xbb,0x41,0x14, + 0xde,0x85,0x60,0x3e,0x0a,0x62,0x93,0x68,0x1b,0x9f,0x47,0x2e,0x5f,0x05,0x36,0x63,0x4e,0xc0,0xd0,0x43, + 0x53,0xfd,0xcc,0x5b,0xad,0xed,0xa7,0x1c,0x1c,0x7f,0x58,0x21,0x44,0x1a,0xdb,0x35,0x55,0x27,0x08,0xcd, + 0xeb,0x4b,0xd5,0xfe,0xdd,0x15,0x90,0x20,0x80,0xfd,0xb2,0x6d,0x44,0xe2,0x22,0xf9,0x6c,0xb6,0x4d,0xc4, + 0xbd,0x02,0x9b,0x28,0x3e,0xf6,0x4c,0x82,0x7e,0xb1,0x27,0x7b,0x98,0x59,0xed,0xbb,0x89,0xf1,0xe1,0xf6, + 0xfe,0x0d,0x5f,0xa3,0xd1,0x28,0x1d,0x2c,0x8e,0x2f,0x41,0xe3,0xdb,0x43,0x13,0xdf,0x21,0xe8,0x47,0xbf, + 0xb2,0xae,0x19,0xe7,0xdf,0xad,0x2c,0x6b,0x9c,0xa9,0x1f,0xd7,0xf0,0x32,0x5d,0x4a,0x28,0x21,0xfd,0x8e, + 0x83,0xec,0x96,0x0a,0x3d,0x2f,0xba,0xc6,0x51,0xb0,0x56,0xeb,0x3d,0x02,0x4e,0x67,0xed,0xb5,0x71,0x35, + 0x75,0x01,0x83,0x2a,0xeb,0xdf,0xda,0x24,0xc1,0x2e,0xbc,0x6f,0x08,0xc1,0xc3,0x3a,0xd2,0x2f,0xc2,0x9e, + 0xb0,0x94,0xff,0xff,0x74,0xbe,0x76,0x84,0xf5,0x8b,0x18,0xdf,0x58,0x2a,0xb5,0xc7,0xa5,0x08,0x0f,0xc3, + 0xc9,0x5b,0x8e,0x7a,0x18,0x8a,0xe4,0xe7,0x17,0xcd,0x38,0xa4,0x7c,0x4d,0x18,0x2f,0xb2,0x62,0x15,0x28, + 0x5b,0x01,0xe7,0x47,0x31,0x31,0x05,0xf9,0x74,0x3a,0x67,0x21,0x6d,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96, + 0x01,0x5f,0xb2,0x20,0x6a,0xe8,0xb1,0x6b,0x53,0x12,0xd8,0x08,0x5d,0x1e,0xf9,0xc0,0x97,0x45,0xf0,0x13, + 0x58,0xed,0x1d,0xa3,0x58,0xe6,0x0a,0x64,0x36,0x4b,0x9b,0xdf,0x99,0xc8,0x80,0x9b,0x11,0xee,0x4a,0x5d, + 0x42,0x2a,0x56,0x7b,0x1c,0x8a,0xbe,0x43,0x1d,0xfb,0x88,0xb8,0x80,0x2d,0xfd,0x5d,0x3e,0x9e,0xd8,0x6b, + 0xbc,0x6b,0xeb,0x6b,0x57,0xcb,0x5d,0x3a,0xc9,0x84,0xf2,0x8f,0xe9,0x9c,0x38,0x89,0x8f,0x27,0xaa,0x3e, + 0x89,0xeb,0x5e,0x10,0x28,0x2c,0x08,0x08,0x3d,0x54,0xe1,0x3d,0x60,0x97,0xa8,0xf5,0x5a,0x5e,0x2e,0xf7, + 0x39,0xbc,0x0a,0x92,0x58,0xda,0xc4,0x51,0x70,0x4d,0x20,0x4b,0x1c,0x6b,0xa2,0x9c,0x10,0x57,0x16,0x4b, + 0xb6,0x34,0x36,0x94,0x9a,0x7c,0x90,0x9b,0x0f,0x3a,0xc1,0x66,0x73,0xff,0x8c,0xac,0xda,0xbd,0x71,0x5f, + 0xb3,0xfc,0xc5,0x03,0x51,0x3f,0x98,0x8d,0x07,0xab,0xda,0xf4,0x3e,0xef,0x9a,0xde,0x83,0x36,0x85,0x67, + 0x03,0xdf,0x6a,0x82,0x50,0x9d,0x37,0xb9,0x09,0x7f,0x55,0x22,0xfc,0x95,0xf8,0x49,0x18,0x35,0xbb,0x75, + 0x46,0x6c,0x35,0xe9,0x9b,0xe2,0xe7,0x9d,0x59,0x13,0x53,0xfb,0x3c,0x09,0xee,0xdc,0xb9,0x0c,0x46,0x72, + 0x69,0x12,0xdf,0x41,0x1d,0x84,0x5a,0x0a,0x48,0x19,0x3b,0xd4,0xf2,0xce,0x5d,0x19,0xf9,0xdd,0x31,0x52, + 0x0c,0x42,0xc5,0x73,0x14,0x30,0xbc,0xb1,0xc7,0x82,0x7c,0x7a,0x4a,0xfc,0xe5,0x20,0x07,0x3e,0x8c,0xb4, + 0x39,0x4e,0xd9,0x84,0xb0,0xf0,0x1c,0x69,0xe3,0x1e,0x03,0x3e,0x84,0x4d,0xc1,0xd9,0x45,0xc4,0x57,0x7f, + 0x5a,0xe2,0xc6,0x3f,0xea,0x62,0x7c,0x97,0xf0,0x67,0x43,0x48,0xf3,0xae,0x32,0xa6,0x37,0x2e,0x3a,0xc9, + 0x4e,0x88,0x06,0x77,0x6e,0x82,0x41,0x39,0x08,0x36,0x81,0xb7,0x00,0x65,0xe3,0x8b,0x19,0x7d,0xe4,0x46, + 0x53,0xf8,0x5d,0xe5,0x22,0x10,0x7a,0xf7,0x49,0x1d,0x07,0xd1,0x83,0x03,0xc8,0x16,0x71,0x41,0xd6,0x73, + 0x93,0x7a,0x42,0xa9,0xdf,0x55,0x36,0x4e,0x6e,0xf8,0x03,0x7f,0xec,0x97,0x00,0xef,0xfc,0xcd,0xfe,0xe1, + 0xf8,0x86,0x7a,0x1d,0xbb,0x73,0xe6,0x07,0xa2,0xcf,0x88,0xe5,0xe6,0x01,0x98,0xd4,0x1f,0x2a,0x42,0xf4, + 0x18,0xcc,0x26,0x96,0xd2,0x5c,0x82,0x43,0x2d,0x31,0x81,0xf3,0x07,0x08,0x54,0x6a,0xe1,0xfb,0x2a,0xf9, + 0x16,0xa6,0xd1,0xbb,0x35,0xce,0xb2,0x68,0xd2,0x84,0xbf,0x57,0x49,0x0a,0xb5,0xf4,0x78,0x8e,0xe7,0x28, + 0xfe,0x1a,0x0c,0xec,0xef,0x95,0x2f,0x8c,0x32,0x92,0x65,0x71,0x73,0xa4,0x2a,0x7e,0xa8,0x4c,0x05,0x1c, + 0xda,0x15,0xdf,0x2b,0xbe,0x20,0x2d,0x9a,0x73,0xa4,0x63,0x43,0xa6,0x70,0x5d,0x84,0x35,0x10,0x7e,0xf0, + 0xeb,0x2f,0xf4,0xf3,0xfe,0x3e,0x1b,0xcd,0xd1,0x1c,0x7e,0xcb,0x35,0x09,0x68,0x6d,0xd0,0xb8,0x89,0x3a, + 0xde,0x1e,0xef,0xf7,0x7a,0xbc,0x26,0xe5,0x7b,0x1a,0xab,0xfa,0xb6,0x82,0x22,0xd1,0x09,0x0c,0xb4,0x8f, + 0x26,0x3b,0x38,0x8c,0xe5,0x52,0x99,0x26,0x0e,0xee,0x10,0x15,0x1a,0xe2,0x1a,0x43,0xaa,0x51,0x5f,0x9b, + 0x85,0x02,0xf2,0xc8,0x10,0xe1,0x79,0x92,0x36,0xce,0x08,0xf8,0x8f,0xca,0x27,0x9c,0x06,0x83,0x1f,0x7c, + 0xfb,0xf5,0xda,0x2b,0xf8,0x43,0xf5,0x4d,0xf2,0x9d,0x07,0xf7,0x13,0x3f,0x6e,0x37,0x93,0x81,0xd9,0x7a, + 0xcd,0xf4,0xa2,0x27,0xaa,0xe6,0x49,0xf2,0x3d,0x06,0x65,0x36,0xd9,0x0b,0x96,0xd7,0x02,0xce,0x15,0xa3, + 0x68,0xe4,0x79,0xd7,0x35,0x5b,0x32,0x10,0x43,0xe3,0x8e,0x9a,0x84,0x78,0xfd,0x26,0x1a,0x9e,0xe2,0xfe, + 0xc6,0xa3,0xb4,0x86,0x19,0xcf,0xdc,0xbd,0xf9,0x92,0xb2,0x29,0x8c,0x34,0x75,0xe8,0x91,0xf9,0x2d,0x01, + 0x22,0x74,0xdf,0xa7,0xec,0x2a,0x49,0x27,0x35,0x5f,0x8e,0x58,0x26,0x0d,0x30,0x3a,0x04,0x12,0x44,0xb4, + 0xfc,0x5c,0x29,0xe7,0x31,0xb8,0x03,0x6f,0x50,0x1d,0xf8,0xbb,0xec,0xaf,0x93,0x60,0x89,0xf8,0x0d,0x95, + 0x89,0x8e,0x37,0x52,0x3f,0x57,0xdb,0x8c,0x20,0x86,0xf7,0xa8,0x18,0xdf,0xe8,0x83,0x0f,0x06,0x38,0x72, + 0x78,0x21,0x20,0x5c,0xcb,0x71,0xaf,0x71,0xea,0xa7,0x90,0x0e,0xd0,0x9f,0xab,0xa8,0x97,0xf1,0x44,0x14, + 0x2a,0x6f,0x4a,0xda,0x26,0xfc,0xd3,0x26,0x34,0x91,0xa4,0x76,0xad,0x3c,0xa6,0x04,0x17,0xbf,0x6b,0xa5, + 0x31,0x08,0xbc,0x6f,0x59,0x4c,0x9d,0xc2,0x58,0xac,0x4c,0x0a,0xff,0x7d,0xf4,0x73,0xa5,0x79,0xd0,0x0e, + 0x36,0xa0,0x8e,0x1e,0x7f,0x84,0x4a,0xc7,0x58,0x4b,0x15,0xe3,0x40,0x5f,0x39,0x1d,0x1b,0x73,0x43,0x8e, + 0xcb,0xec,0x2c,0xf8,0xf9,0x03,0x8e,0xb0,0xcc,0xde,0xe1,0xee,0xba,0x6f,0x4a,0xde,0x20,0xfb,0x53,0x2e, + 0x71,0x0b,0x86,0x52,0x51,0xeb,0xd3,0x4f,0xf8,0x54,0x67,0x74,0x3e,0xc7,0x67,0x1b,0x30,0x2f,0xbf,0xb3, + 0xb6,0x7d,0xd5,0xa8,0x19,0x42,0xbc,0x5a,0x51,0xf0,0xcf,0xd6,0x91,0xdf,0x73,0x13,0xec,0x9b,0x23,0xe3, + 0x26,0xd3,0x9a,0x29,0x9b,0xe8,0x4b,0xce,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0x78,0xe5,0xa7,0xde,0x26, + 0xbf,0xb2,0x9e,0x39,0x2d,0x11,0x56,0x2e,0xe2,0x53,0x48,0x9a,0x72,0x1d,0x65,0x2e,0x3f,0x49,0x82,0xc0, + 0xcb,0x9d,0xeb,0x9b,0xfd,0x50,0x42,0xf1,0xfd,0xcc,0xe6,0xbe,0x64,0xed,0x54,0x94,0x17,0x04,0x28,0xdf, + 0x1d,0xbd,0x7c,0xc1,0x09,0x5c,0xba,0xea,0x0f,0x5a,0xeb,0xd9,0x2d,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc, + 0xbc,0x58,0x65,0x23,0x20,0xb9,0x54,0x8a,0xbe,0x82,0x6b,0x95,0x95,0x20,0xa7,0x1a,0x30,0x1f,0x23,0x2b, + 0xf4,0x8b,0xc0,0x66,0x88,0xaf,0x12,0x16,0x21,0x9a,0x34,0x9f,0x0e,0x4f,0xf9,0x35,0x29,0xb5,0x59,0x22, + 0x24,0x60,0x08,0x48,0x6f,0x6f,0xa9,0x1a,0x4d,0x93,0x95,0xda,0x25,0x6e,0x32,0x8d,0x44,0x98,0x50,0x53, + 0x3a,0x0c,0xab,0x5f,0xbf,0x39,0x7a,0xfe,0xfa,0x15,0xea,0x99,0x19,0xe9,0xce,0x7a,0xdd,0xa3,0x4d,0xc0, 0xf6,0x67,0xb7,0x70,0x77,0x19,0x95,0xb8,0x37,0x6b,0xbd,0x1a,0xdf,0x2c,0x60,0x63,0x03,0x79,0xe7,0x7d, 0x66,0xa5,0x80,0xcd,0x26,0x9c,0xa9,0x69,0xd4,0xaa,0xde,0xd3,0xaf,0x89,0x86,0x40,0xb4,0xd1,0x2f,0x0d, 0x9d,0x26,0x06,0x68,0x79,0xa4,0xad,0x53,0xe6,0xe9,0x1f,0xd7,0x2e,0x7e,0xb6,0x18,0xac,0xf0,0xb1,0x6e, 0x28,0xa0,0x89,0x38,0x98,0x4d,0x74,0xa0,0xb6,0x9c,0xc9,0x00,0x67,0x36,0x2f,0x44,0x01,0xfb,0x05,0xcb, - 0xa3,0xe9,0x28,0x68,0xc4,0x42,0xfa,0xc7,0x20,0x21,0xbd,0x49,0xe6,0x3a,0xa8,0x11,0x83,0x48,0x29,0xc6, - 0x7a,0x54,0xc6,0xf3,0xc6,0x6c,0xdc,0x21,0x77,0xd1,0xb0,0x76,0xf9,0x7a,0xee,0x59,0x1a,0x69,0x51,0xca, - 0x3b,0xa4,0x8e,0x2e,0xc2,0xd6,0x3b,0x47,0x3c,0xf0,0x7c,0x10,0x9b,0xcf,0xe9,0x86,0x17,0xb7,0x28,0x5a, + 0xa3,0xe9,0x28,0x68,0xc4,0x42,0xfa,0xc7,0x20,0x21,0xbd,0x49,0x56,0x3a,0xa8,0x11,0x83,0x48,0x29,0xc6, + 0x7a,0x54,0xc6,0xf3,0xc6,0x6c,0xdc,0x21,0x77,0xd9,0xb0,0x76,0xf9,0x7a,0xee,0x59,0x1a,0x69,0x51,0xca, + 0x3b,0xa4,0x8e,0x2f,0xc3,0xd6,0x3b,0x47,0x3c,0xf0,0x7c,0x10,0x9b,0xcf,0xe9,0x86,0x17,0xb7,0x28,0x5a, 0xdf,0xe5,0x9d,0x78,0x23,0x8b,0xa6,0x2d,0xe2,0x62,0x79,0x50,0xd9,0x11,0x6d,0xe5,0x7e,0x3f,0x22,0x51, - 0x71,0xd5,0xf6,0xb9,0xdc,0xca,0x2d,0x75,0x6e,0xe4,0x45,0xe9,0xd1,0xfb,0x74,0x95,0xb4,0x8a,0xab,0x39, - 0x2c,0x4c,0xcb,0x6a,0xc1,0x57,0xb8,0x4f,0x39,0x6d,0xbd,0xd6,0xdf,0xf3,0x16,0x9e,0x25,0xab,0xf5,0x7a, - 0xae,0xa6,0x98,0x2f,0xbd,0x51,0xa5,0x72,0xde,0xca,0x3a,0xa5,0x53,0x43,0x02,0xfb,0x75,0xbd,0xc3,0xc5, - 0xdb,0x69,0x1a,0xc5,0xd3,0xa1,0x58,0xaa,0xb6,0xa1,0xd5,0x57,0x9c,0x33,0xe1,0x98,0x0d,0x7b,0xe4,0x67, - 0x7f,0x4b,0xae,0x76,0x6e,0x15,0x9c,0x70,0x0a,0x09,0xd9,0xc5,0x4b,0x92,0xb3,0x6e,0xb2,0x73,0x37,0xce, - 0x60,0x7f,0x3e,0x30,0x31,0xd3,0xca,0x56,0x6d,0x65,0xf7,0x33,0xa7,0x9d,0xaf,0xa4,0x0e,0x0e,0x67,0x39, - 0x23,0x24,0xb5,0x84,0x21,0xe2,0xde,0xde,0x6f,0x30,0x1f,0xac,0x95,0xc1,0x52,0x9c,0xbd,0x8c,0xc2,0x34, - 0xe1,0x7c,0x02,0xde,0x19,0xfd,0xda,0x62,0x3a,0x42,0x09,0x30,0x40,0xea,0xf3,0x00,0x67,0x8d,0xef,0x4b, - 0xc6,0xd1,0x3d,0xb5,0x80,0x42,0xe2,0x66,0xb0,0xac,0x8d,0xed,0xfe,0x9c,0xe5,0x0f,0x94,0xfe,0x20,0x25, - 0x1b,0x6d,0xa2,0x72,0xef,0xd7,0x7a,0xff,0x5e,0x64,0xef,0x4d,0xea,0xf1,0xe3,0xf6,0xea,0xe1,0x80,0x58, - 0x08,0x06,0x16,0x6f,0x27,0xfa,0x81,0x71,0xa1,0x40,0xa1,0xf6,0xcf,0x7a,0x24,0x7f,0x91,0x36,0x99,0xdc, - 0xc1,0x6d,0x8b,0x5e,0xa7,0x58,0xe1,0x12,0xb0,0xee,0x3b,0xeb,0x17,0x19,0x86,0x05,0xb1,0x55,0x66,0x80, - 0xde,0x2c,0x5c,0xff,0xff,0x3e,0x0b,0x82,0xcc,0xb7,0x27,0xc2,0xa6,0x2b,0x3f,0x55,0x0e,0x01,0x50,0xfd, - 0x5d,0x09,0xbd,0x99,0x12,0x99,0x3a,0x27,0x4a,0xfe,0x4b,0xd3,0x07,0x43,0x12,0x33,0x6d,0xde,0x54,0x56, - 0x30,0xeb,0x1a,0xc2,0xa7,0xd9,0x5e,0xf0,0x54,0x29,0x0c,0x17,0x20,0x6e,0xd0,0x24,0x74,0x0e,0xbd,0x73, - 0xcc,0x57,0x57,0xdc,0xd6,0x4d,0xff,0x8a,0x81,0x46,0x93,0x36,0xfa,0x4a,0xa5,0xad,0x8b,0x52,0x0c,0x12, - 0xb5,0x57,0xf0,0x32,0xcf,0x4b,0xd3,0x02,0xa1,0x30,0x2e,0x8f,0x78,0x9e,0x87,0x99,0x36,0xc0,0x0a,0x2e, - 0x20,0x41,0xe0,0x1b,0x25,0x10,0xf3,0xfa,0x56,0xe3,0x90,0xe7,0x8c,0x1b,0xb7,0xc8,0x93,0x53,0xee,0xcb, - 0xc7,0xdc,0xf7,0x7d,0xf9,0x88,0xa2,0xbe,0xe4,0xe5,0xb2,0x69,0x1b,0x85,0x6c,0x8b,0xb4,0x59,0xec,0xb0, - 0x9d,0xcc,0xd1,0x7c,0x0a,0xcf,0x88,0x0b,0x10,0x0a,0x8f,0x10,0x08,0x10,0x68,0xa5,0xf5,0x1e,0xf4,0xbd, - 0x42,0x75,0x53,0x7d,0xb5,0xed,0xed,0xcd,0x7b,0x5b,0x41,0xd0,0x6c,0x0d,0xc7,0x9e,0xab,0x68,0x87,0x75, - 0xbe,0x23,0x05,0x14,0x8e,0x01,0x6d,0x49,0x51,0x19,0x5f,0x1e,0xa6,0xb3,0x20,0x27,0xe3,0xc8,0xd3,0x7c, - 0x2e,0x58,0x31,0x82,0x09,0x98,0x52,0x27,0xb0,0xa7,0x78,0x96,0x8f,0xde,0xe6,0xf1,0xa3,0x9c,0x30,0x7e, - 0xc7,0x7d,0xac,0x5f,0x6f,0x53,0xab,0x39,0x2c,0xcf,0xd9,0x55,0xac,0xad,0x02,0x92,0x20,0x16,0xc2,0xcc, - 0xed,0xef,0x4f,0xbe,0x81,0xe2,0x10,0x9e,0x62,0xc3,0x7e,0x7f,0xa4,0xc9,0x03,0x9d,0xaf,0x70,0x35,0xb2, - 0xea,0xd1,0x01,0xa1,0x29,0xcf,0x55,0xb5,0x69,0xe9,0xb8,0x13,0x7d,0x93,0x2d,0x35,0xf9,0x58,0x87,0xdd, - 0xe0,0xb3,0x44,0x22,0x45,0x54,0xc7,0x2f,0x89,0xff,0x7f,0x02,0x1f,0xa9,0xe0,0xc4,0x5a,0xdf,0xed,0xb0, - 0xec,0x54,0xe7,0xad,0x2a,0xb9,0x5e,0xba,0x9d,0x9d,0x26,0x8f,0x1b,0x0e,0xff,0x0a,0x96,0xe6,0xf8,0xa7, - 0x5b,0x2a,0x99,0x98,0xbc,0xfe,0x4a,0x56,0xa8,0x04,0x3c,0x0d,0xcd,0xd1,0x21,0x9d,0x88,0xee,0xce,0x1d, - 0x99,0xf0,0x94,0xed,0xc6,0x0b,0x7a,0xa4,0x02,0x29,0x15,0x30,0x06,0xea,0x44,0x31,0xc0,0xfa,0x3d,0x1f, - 0xad,0x74,0x89,0x57,0x28,0xb1,0xa2,0x12,0x13,0x5b,0x62,0x96,0x50,0x7a,0x38,0x77,0x91,0xd6,0x53,0xd0, - 0xbe,0xdf,0x1c,0x52,0xad,0xab,0xd1,0xb3,0x3c,0x7e,0x95,0x33,0x7b,0x1f,0x8d,0x0a,0x69,0xcc,0xd4,0x1d, - 0x9b,0x2a,0xe2,0x43,0xa5,0x03,0x2e,0x2b,0x0d,0x2d,0xf1,0x5c,0x59,0x58,0x89,0x67,0xb8,0x06,0xf9,0xbd, - 0xb9,0xad,0x2f,0x96,0x5a,0xf6,0xf6,0x3e,0x68,0x21,0xb9,0xcc,0x9e,0x89,0xdf,0x11,0x9c,0xf8,0x68,0xe0, - 0x71,0xe3,0x0e,0xe9,0xa1,0x11,0x78,0x3c,0xb0,0x31,0x12,0xa3,0x2c,0xb1,0x61,0xb3,0x1d,0x11,0x65,0xc6, - 0xd1,0xba,0xcf,0xab,0x2d,0x42,0xf6,0x7d,0xc2,0x1f,0xc2,0x08,0x72,0xff,0x61,0x23,0xe1,0xa5,0x36,0xfe, - 0x4e,0x7b,0xe8,0x93,0x58,0x47,0xd9,0x17,0xff,0xd0,0x57,0xc4,0x3a,0x89,0xc1,0xc1,0x91,0x5f,0xfe,0x9d, - 0x47,0x4b,0x81,0x84,0x22,0x7a,0x07,0x7e,0x5a,0xb8,0x9a,0x27,0x25,0xe2,0xfc,0x94,0xdd,0x21,0xec,0x9b, - 0xbe,0x2a,0x73,0x2e,0xd1,0xf2,0x5c,0x7a,0x68,0x42,0x15,0x24,0xe3,0xc6,0x70,0x43,0x6e,0x43,0x47,0xd6, - 0xf9,0x8a,0xcd,0x27,0xe9,0x33,0x82,0xf0,0xac,0xe2,0xca,0x8f,0x38,0x16,0x18,0x08,0x12,0x5c,0x32,0xe7, - 0x68,0x1b,0xc4,0x11,0x23,0xc4,0xa8,0xe0,0xf5,0xca,0x1b,0x9b,0x80,0x64,0x20,0x9f,0xb1,0xa6,0x6e,0x66, - 0x5e,0xdf,0x97,0x92,0x30,0x35,0x09,0x0f,0x99,0x66,0x97,0xc4,0x25,0x25,0xd2,0x94,0x66,0xa9,0xfe,0xea, - 0xdc,0xbe,0x9b,0xcf,0x2e,0x6c,0x8a,0xff,0xdd,0x82,0x52,0x4f,0x33,0x98,0x88,0x3f,0x45,0x95,0xf0,0xde, - 0x93,0xca,0xd5,0x35,0xca,0xe3,0xea,0x75,0xc9,0x18,0xdb,0x5e,0x99,0x89,0x51,0x97,0xf6,0xdb,0x87,0x5c, - 0xaf,0xba,0xb2,0x4d,0xa8,0x4f,0xe6,0x6b,0x9d,0x75,0xc7,0xf5,0xcf,0x7e,0xff,0x98,0xd2,0xa6,0x7a,0x4f, - 0xa9,0x87,0xc9,0xb8,0x52,0xef,0xe8,0x8f,0xb6,0xd3,0x1f,0xbe,0xdb,0xdb,0x7b,0x67,0x49,0xae,0x87,0x49, - 0xf8,0x2e,0x31,0xaf,0x91,0xe1,0x58,0x79,0x25,0xde,0x27,0xbb,0x0f,0xbd,0xd0,0x49,0xc4,0x91,0xb2,0x11, - 0x7f,0x59,0x82,0x0e,0xe4,0x98,0xc0,0xb4,0x24,0xef,0xd7,0xeb,0x2b,0x1c,0x9e,0xb4,0x06,0x57,0x02,0x02, - 0xaf,0x93,0xf7,0x7b,0x7b,0xcb,0xd1,0x92,0x76,0xc3,0x6f,0x78,0xbc,0x18,0x5d,0xc4,0x53,0xf5,0x02,0x8f, - 0xe7,0xa3,0x73,0xda,0x17,0x4f,0x93,0xf7,0xa3,0xcb,0xf5,0x7a,0x11,0x2f,0xd4,0x1b,0xa4,0xf6,0x38,0xbd, - 0x5c,0x8d,0xae,0xe2,0x33,0xf5,0x9c,0x0a,0x7e,0x5a,0xaf,0xaf,0xe3,0x6b,0xf5,0x84,0x1e,0xef,0xac,0xd7, - 0xe3,0x78,0xac,0x9e,0x11,0xdf,0x92,0x87,0x8f,0xa3,0xd1,0x63,0x99,0xb6,0xf8,0x71,0xa4,0x5e,0x25,0x7c, - 0x10,0xd6,0xac,0x8f,0x57,0x2f,0x93,0xdf,0x9a,0xf0,0x4d,0xa4,0xde,0x26,0x0e,0x4e,0x7c,0x27,0xdb,0xe8, - 0xe6,0x15,0x81,0x24,0x1d,0x28,0xa5,0x7a,0x11,0x29,0xfe,0xfd,0x8d,0x8e,0xca,0xb7,0x0e,0x34,0x47,0x21, - 0x95,0xe0,0x8c,0xd7,0x91,0x7a,0xb2,0xb7,0xf7,0x84,0x0d,0x29,0x9e,0xef,0xed,0x3d,0x87,0x5b,0x82,0x57, - 0xab,0x0e,0xb6,0xae,0xe1,0xb5,0x3e,0x2f,0x69,0x60,0x3f,0xd0,0x76,0x70,0x96,0x4f,0xae,0x51,0x91,0x0b, - 0x19,0x6a,0x17,0x7c,0xaa,0xd2,0xe1,0x90,0xc7,0x08,0x56,0xc4,0xac,0xa6,0x7b,0x3e,0x66,0x49,0xda,0xc9, - 0x90,0xc3,0x19,0x89,0xbd,0x61,0x21,0xf6,0x86,0x0d,0x76,0x98,0xdd,0x37,0xdd,0xf7,0x30,0x52,0x6f,0xf6, - 0xf6,0xde,0x50,0xd7,0xdf,0x42,0x16,0xf4,0x74,0x6f,0xef,0x29,0xfa,0x8c,0x11,0x5f,0xea,0x01,0x5d,0xca, - 0x88,0xd5,0x69,0xeb,0x20,0xb9,0xf4,0xe7,0xe3,0x75,0x6b,0x3a,0xd6,0xeb,0x97,0x74,0x8e,0xbf,0x6e,0xc2, - 0x67,0xd1,0xc8,0x3b,0x85,0xde,0xaa,0x67,0x51,0xfc,0x09,0xc5,0x57,0xd4,0x18,0x90,0x88,0xf2,0x26,0x42, - 0x0c,0x6c,0x2b,0xbf,0x3f,0xd4,0x0d,0xae,0xea,0x6d,0xd8,0xb2,0x78,0x7e,0xaf,0x11,0x88,0x13,0x02,0x53, - 0x77,0xee,0xf8,0xcd,0x87,0xad,0x09,0x0e,0x89,0xf3,0x74,0x93,0x68,0x67,0x0c,0xaa,0xec,0xbe,0x74,0x71, - 0x30,0x95,0xe9,0x4c,0x8a,0x48,0x9d,0x13,0x20,0x22,0x38,0xea,0xa5,0x4c,0x49,0x0a,0x67,0x09,0xfe,0x5d, - 0xf6,0x4c,0x49,0x4a,0x3c,0x14,0xa6,0x84,0x4b,0xb5,0xfa,0x74,0x25,0x53,0xf2,0xa9,0x35,0x25,0x77,0xd4, - 0x27,0x9e,0x92,0x54,0xcd,0xd5,0x1d,0x99,0x92,0x0b,0x50,0x66,0x29,0xbd,0xa9,0x4b,0xfe,0xe8,0x0e,0xe8, - 0x6c,0x6d,0x33,0xae,0x71,0x65,0xea,0xa3,0x33,0xef,0xad,0x8d,0x2b,0x5d,0xba,0xc1,0x95,0xf5,0xed,0xb8, - 0x52,0x22,0xbf,0xca,0xfd,0x31,0x16,0x35,0x1a,0x06,0x4a,0xd4,0xac,0xbb,0xdc,0xb0,0x41,0xd2,0xc6,0xdf, - 0xa4,0x66,0x9c,0x39,0x4f,0x24,0xc2,0x0b,0x21,0x49,0xc8,0x5b,0x52,0x83,0xd5,0xa6,0xe6,0xd5,0x20,0xbf, - 0xa5,0x49,0xf0,0x71,0xdf,0x39,0x25,0x0a,0xfe,0x7a,0x81,0x2c,0xc2,0x90,0xba,0x10,0x61,0xc5,0x5a,0xb0, - 0x97,0x64,0x9c,0xd9,0xda,0x2d,0xee,0xba,0xa6,0x24,0x76,0xca,0x96,0x12,0x63,0xbc,0x1a,0x54,0x76,0x29, - 0xdb,0x7c,0x25,0xdb,0xfc,0x0a,0xdb,0xfc,0x22,0x22,0x8c,0x08,0x84,0x40,0x2c,0xef,0x58,0xea,0x8a,0xc7, - 0x11,0x63,0x45,0x33,0xb4,0xf6,0xd6,0xf7,0x41,0x04,0x22,0xa4,0x1e,0x80,0xe1,0x35,0xe8,0x49,0xb7,0x30, - 0xc4,0xa1,0xbb,0x2e,0x05,0x87,0x38,0x00,0x59,0x46,0x2d,0x08,0x19,0x85,0x97,0x8c,0x43,0x18,0x72,0xa8, - 0xce,0x33,0xb6,0x03,0x09,0xb1,0x21,0x16,0x7b,0x7b,0x0b,0xbc,0x29,0xaf,0x93,0x1a,0x93,0x5c,0x8f,0xae, - 0x69,0xbb,0xc6,0x65,0xe8,0x13,0x04,0xaf,0xbd,0x13,0x79,0x3b,0xa6,0x14,0xcd,0x86,0xdc,0x79,0xe8,0xab, - 0x93,0x7f,0x43,0x9c,0x59,0x66,0x25,0x5c,0xd0,0x62,0x1d,0x16,0x1b,0x56,0xc2,0x08,0x6f,0xec,0x85,0x7d, - 0x1a,0x51,0xf1,0xad,0xf0,0x35,0xd5,0xf1,0xe1,0x49,0x8c,0xe0,0x35,0xf6,0x96,0x3d,0xf8,0xb5,0x68,0xfa, - 0xe9,0x1b,0x4f,0x85,0xf7,0x42,0xd3,0x2b,0xbb,0xd0,0xcb,0x37,0x3e,0x06,0x78,0xc7,0x97,0x11,0x3b,0x1f, - 0x10,0x4b,0x7a,0xbf,0x31,0x4f,0xca,0x59,0xc2,0xf5,0xd3,0xb7,0xb6,0xe4,0x46,0x1d,0x7a,0x55,0xbd,0xe9, - 0x50,0xf1,0x8d,0x27,0x19,0x5b,0xac,0xe6,0x4d,0xbe,0x9c,0x67,0x42,0xaf,0xaf,0xd7,0xdd,0x91,0x79,0xf1, - 0xce,0xd8,0x08,0x10,0x7e,0x58,0xd6,0x87,0xa6,0xeb,0x86,0x05,0x53,0x30,0x97,0x8b,0x6b,0x33,0xf2,0xa8, - 0x4c,0xc6,0xc4,0xfe,0x3d,0x81,0x91,0x0f,0xf8,0x5d,0x85,0xeb,0x97,0xe6,0x7c,0x19,0x3a,0x84,0xf4,0x0c, - 0x3e,0x26,0x21,0xf1,0xc2,0x78,0x5d,0x87,0xfc,0x89,0x17,0xf5,0x17,0x5c,0x17,0xe8,0x2a,0x5d,0x98,0x35, - 0x53,0x72,0x8e,0x75,0x53,0x93,0x1a,0x76,0xba,0xcc,0x4d,0xb5,0xd3,0x0f,0x5a,0x97,0x3e,0x3e,0x6f,0xda, - 0x57,0xac,0x74,0x6f,0xbe,0xb3,0x59,0xbb,0xd7,0xa1,0xd8,0xcb,0x7a,0x2e,0x21,0x3e,0x94,0x89,0xa8,0x94, - 0xa3,0xb3,0xe1,0x82,0x01,0xd1,0xf3,0x69,0xf1,0xa3,0xe7,0xd5,0xd1,0x88,0x77,0xb3,0xf0,0x2c,0x4e,0x66, - 0x0a,0x1b,0x33,0xe7,0xce,0x71,0x4b,0x21,0x1e,0xe4,0xf6,0x97,0x47,0xea,0x65,0x63,0x33,0x94,0x16,0xe4, - 0xfb,0xf4,0xe6,0xcb,0x16,0xd3,0xd9,0x75,0x60,0xb8,0x60,0xf7,0x05,0x48,0x9d,0x45,0x0f,0x1e,0x08,0x9f, - 0x99,0x37,0x92,0xd3,0x28,0xc2,0xa4,0x1c,0xf1,0x68,0x30,0xcd,0x6b,0x36,0x3d,0x96,0x0c,0x5f,0x7d,0xf1, - 0xd6,0x9b,0x89,0xdd,0x5b,0xfc,0x18,0x44,0x52,0x95,0x75,0x91,0xef,0x28,0x8b,0xdf,0xb2,0x6b,0xcc,0x6d, - 0x32,0x33,0xcf,0xa3,0xc2,0x93,0x8a,0x32,0x19,0xb0,0x65,0xf7,0x6a,0x56,0x11,0x67,0x7c,0xcb,0xe2,0xd5, - 0xf8,0xa1,0x8f,0xa8,0x8e,0x5f,0xe0,0xd8,0x65,0xbd,0x0b,0x7d,0x21,0xe7,0x23,0xaf,0x01,0xbe,0x75,0xd2, - 0xc5,0x38,0x6d,0x87,0x3f,0x2a,0xdc,0x35,0x13,0x11,0x42,0x1f,0x71,0x7c,0x60,0x7d,0x7b,0x09,0x6d,0x7e, - 0x41,0x85,0x86,0x9f,0xec,0x38,0xe6,0xe5,0xf4,0xc5,0x18,0x17,0x7a,0x9c,0xb0,0x6b,0x5e,0x4f,0x24,0xda, - 0x8f,0x4e,0x92,0x74,0xef,0xd7,0xe9,0xc1,0xa7,0x2c,0x5b,0x1e,0xa4,0x73,0x3a,0x2c,0xee,0xe8,0xbb,0x02, - 0x99,0xbe,0x71,0x1e,0xd5,0x61,0xe0,0x8a,0x04,0xea,0x86,0xbb,0x16,0x37,0x5b,0xb3,0xe3,0xfa,0xec,0x03, - 0xf1,0x07,0x0d,0x6c,0x4c,0x12,0xb1,0x72,0xe0,0x94,0x2f,0x9f,0x74,0xaf,0x6c,0x4a,0xc9,0xef,0xfa,0x34, - 0xb5,0xf9,0xf6,0x74,0xf5,0x2c,0xc2,0x75,0x75,0x22,0x6e,0xcd,0x2e,0xdf,0x94,0x08,0x26,0x84,0xd2,0x04, - 0x9c,0x8f,0x88,0x30,0xe6,0xa8,0x1e,0xf3,0x9c,0x3e,0x7d,0x8b,0xab,0xd7,0xfd,0x38,0xf3,0xfe,0xf2,0x4a, - 0x05,0x04,0xe2,0xca,0xfa,0xce,0x48,0x6d,0xfa,0x3a,0x8a,0x59,0x73,0x50,0xf0,0x0f,0xdf,0x7b,0xd6,0x94, - 0x4b,0x7a,0xa5,0xbf,0xc0,0x60,0xd5,0x7a,0x9d,0xdb,0x2e,0x60,0x08,0x53,0xa3,0x64,0x2c,0x75,0x57,0x58, - 0x30,0x3c,0x2c,0xdd,0xdd,0xf0,0x44,0x64,0xfe,0x94,0x9d,0x7e,0xca,0x1b,0xcb,0x7f,0x26,0x01,0x67,0x22, - 0x0c,0x5e,0x18,0xec,0x57,0xfb,0xc1,0xf2,0x4a,0xb1,0x6e,0x7f,0x79,0x15,0x05,0xaa,0xf4,0x00,0xd8,0xf0, - 0xe2,0x49,0x70,0x58,0xfb,0x8a,0xf9,0xdf,0x2d,0xc2,0xd5,0x4a,0x64,0xe6,0x7d,0x8f,0xd8,0x5f,0x3f,0x53, - 0xd6,0x00,0x22,0x6e,0x94,0x31,0x59,0x68,0xdd,0x78,0xdb,0xbd,0xff,0x54,0x39,0x55,0xbe,0xbd,0x86,0x43, - 0x07,0x36,0xd6,0x8e,0x89,0x78,0x94,0x50,0x20,0xce,0x8d,0xaa,0x89,0x94,0x00,0x23,0x31,0xdd,0x36,0x44, - 0xc0,0xb1,0x7f,0x4f,0xcc,0x0f,0x6d,0xf1,0x86,0xb1,0x56,0x1c,0x86,0x75,0x42,0x9b,0x1c,0x3a,0x56,0x82, - 0xae,0xeb,0x40,0xeb,0x2f,0xe0,0xd7,0x53,0x7b,0xa6,0x49,0x99,0x78,0xf8,0xec,0xfa,0xd6,0x47,0xda,0xde, - 0x20,0x2c,0x51,0x41,0x8e,0x0a,0xaa,0x6c,0x26,0x15,0xe4,0x70,0x40,0x4a,0x4a,0x95,0x5b,0x47,0xa4,0x5b, - 0x9c,0xb4,0xf3,0x61,0x23,0x21,0x34,0xed,0x05,0x2e,0x0d,0xa4,0xa2,0xce,0xcf,0x07,0xe2,0x55,0x1d,0x20, - 0xd3,0xc6,0x60,0x66,0x5f,0xf6,0xb6,0xca,0x33,0x40,0x74,0x09,0x6b,0x64,0x0c,0x53,0x69,0x7a,0x87,0x36, - 0x2a,0x61,0x33,0x9a,0x00,0x53,0x17,0x78,0x32,0xe3,0xa6,0x1d,0x31,0x9b,0xbf,0x82,0x39,0x92,0xd8,0xd5, - 0x70,0x24,0x81,0x80,0xef,0x95,0xa3,0x6a,0x38,0x8c,0x15,0x82,0x53,0xeb,0x4c,0x4a,0x3a,0xd0,0x25,0x88, - 0x06,0xb0,0xdf,0xf8,0xc9,0x72,0x4c,0xb9,0x6f,0x4d,0x04,0xe1,0xc2,0x16,0x05,0xf6,0xb5,0xa5,0xde,0x8b, - 0x64,0xeb,0x6e,0x10,0xdc,0x65,0x2b,0xee,0xbb,0x36,0x08,0xe8,0x5d,0x5a,0xcf,0xed,0x9e,0x02,0xcd,0xda, - 0xda,0xd7,0x6b,0xb6,0x3c,0x93,0x5a,0x15,0xdf,0x38,0x0c,0x19,0x15,0x8c,0x48,0x1b,0xf6,0xfe,0x0c,0xf2, - 0x5a,0xba,0x54,0x38,0x54,0x91,0x20,0xde,0xa4,0x98,0x0b,0x35,0xc2,0x95,0xcd,0xf3,0x22,0x3b,0xb0,0x2d, - 0x49,0x71,0x49,0x7d,0xaf,0x13,0x61,0xb8,0xe8,0xa2,0x07,0x26,0x87,0xc3,0xc9,0x83,0xb1,0x8d,0x7c,0x30, - 0xe1,0x3b,0x98,0xc6,0xe5,0xf1,0xe4,0x84,0xe1,0x8c,0xba,0x38,0x6c,0x45,0xfa,0xd0,0xae,0xce,0x5d,0x3b, - 0x59,0x04,0x7c,0x50,0x4b,0x75,0xee,0xdb,0x0a,0x71,0x23,0x0d,0x6d,0x85,0x22,0x39,0xb7,0x0e,0xfc,0x0f, - 0x0a,0xe3,0xc4,0x5f,0x25,0x79,0x72,0x8e,0x18,0xc9,0x7c,0x6b,0x42,0x29,0xcf,0x42,0xe4,0xbc,0x2a,0xb5, - 0x10,0x49,0xcb,0xe2,0xcf,0xd3,0xfa,0x51,0xce,0xa8,0xa8,0x06,0xa3,0x10,0xa6,0xc9,0x56,0x97,0x92,0x4a, - 0xdf,0xb4,0xf3,0x41,0x82,0xc9,0xf8,0x21,0xe4,0xdd,0xcd,0x13,0x5d,0x41,0x3d,0x47,0x54,0x34,0x72,0x9f, - 0xa3,0x08,0xf7,0x5e,0xc3,0x62,0x01,0x97,0x5b,0x45,0xfa,0x9a,0x05,0x23,0x0e,0xff,0x50,0x42,0xef,0x12, - 0xa9,0x8f,0xae,0x6f,0x7e,0xf6,0x47,0xce,0xa6,0x61,0x7c,0xcb,0x9e,0xfd,0x35,0xce,0x79,0x89,0xf0,0x09, - 0x34,0xce,0x36,0xcf,0xd4,0x73,0xad,0x32,0x6e,0x16,0xf3,0x40,0x02,0x8a,0x8d,0x11,0x0b,0x53,0x9a,0xf2, - 0xd4,0xc9,0x4c,0x39,0x4f,0x68,0x5a,0xe6,0x9c,0x23,0x85,0x40,0x85,0x5d,0x17,0x13,0x3a,0x2b,0x19,0xfa, - 0x6c,0x84,0x48,0xce,0x55,0x25,0xd8,0xd4,0xe0,0x0e,0x1b,0xc0,0x05,0x6c,0x54,0x0d,0x0d,0xbb,0x83,0x94, - 0xbd,0xbd,0x4f,0xa5,0xbd,0x38,0xd6,0x60,0x30,0x61,0x81,0x88,0x14,0x66,0x0b,0x4a,0x04,0xaf,0x8a,0x7f, - 0x34,0x4f,0x96,0xaa,0x7b,0xd6,0x3f,0xe0,0x67,0x32,0x60,0xee,0x8c,0x04,0x64,0xdb,0xf5,0xaf,0x39,0xbc, - 0x48,0x5a,0xb3,0xf7,0x4a,0x66,0x4f,0xaf,0xd1,0x23,0x9a,0xa1,0x45,0x02,0xc6,0xf1,0xf8,0xe8,0x64,0xb8, - 0xd0,0x33,0x6d,0xa5,0x6f,0xe1,0x42,0x83,0xcb,0xfe,0x11,0x46,0xb2,0x4a,0x2a,0xe2,0xd7,0x72,0xc8,0x3f, - 0x89,0x3f,0x5b,0x40,0x62,0xa5,0x10,0x4b,0x23,0x8b,0x5a,0x0e,0x71,0xe1,0xc4,0x7b,0xdd,0xb2,0xd4,0x5c, - 0x29,0xed,0x80,0x14,0xcf,0xb5,0x89,0xe5,0x0c,0x16,0x26,0xf1,0x54,0x59,0x6b,0xc0,0x78,0xb9,0x41,0x9c, - 0x0d,0x6b,0xc2,0xc7,0x13,0xa0,0xe7,0xa3,0x63,0x53,0x57,0xf2,0xfd,0x35,0xfe,0xec,0x06,0x0b,0x88,0x96, - 0xb1,0xaa,0xd5,0x67,0xa7,0x7a,0x6f,0x4f,0xcf,0xb5,0x76,0xed,0xd8,0xb4,0xb8,0x9a,0xef,0xdd,0x99,0xca, - 0x40,0x9c,0x18,0x03,0x41,0x82,0xdc,0x20,0xea,0xb3,0x1a,0x93,0x94,0x46,0x4f,0xec,0x4b,0x1d,0x49,0xc9, - 0x70,0x0d,0xac,0x4a,0xa5,0x6f,0x93,0xe2,0xf8,0xfe,0x89,0xd6,0xe2,0x18,0xba,0x87,0xa6,0x5e,0xa7,0xd8, - 0x55,0xfa,0xc9,0x00,0x71,0xae,0xeb,0x7b,0xeb,0xa2,0xe7,0x96,0x23,0x84,0x47,0x9a,0xe7,0x69,0x9d,0xe4, - 0xf6,0x83,0xb7,0xf2,0x41,0x35,0xc8,0x89,0xb2,0x48,0x89,0x82,0x3b,0x4a,0x4a,0x57,0xaf,0x2a,0xa9,0x55, - 0xb6,0x83,0x30,0xd9,0xf7,0x93,0xd2,0x75,0x04,0x71,0x4b,0x4c,0x8d,0xaa,0xe2,0x0b,0xe5,0x0a,0x0e,0x02, - 0xd0,0xf6,0xd6,0xf8,0xd6,0x2a,0x46,0xf2,0xd9,0xe3,0x92,0xb0,0x00,0x53,0x47,0xcc,0x29,0xf8,0x09,0x1c, - 0xb6,0xb4,0x9d,0x64,0xb4,0x2d,0x9e,0xdd,0xb2,0x2f,0xfa,0xfd,0xbd,0x69,0xaf,0x12,0x9f,0x86,0x26,0x32, - 0x7c,0x66,0x44,0x86,0x9e,0x05,0x73,0x97,0x25,0x1b,0x05,0x26,0x88,0x52,0x7c,0x13,0xc4,0x41,0x89,0x1f, - 0x17,0x49,0x41,0xdf,0x52,0xb7,0x9f,0xc0,0xce,0x2e,0xdf,0xbf,0x1b,0xc4,0x77,0xf7,0x7f,0x81,0xd2,0x80, - 0xfd,0xb4,0x61,0x65,0xed,0xee,0x61,0xf6,0x04,0xcf,0x6c,0x2f,0xe8,0x4c,0x9b,0x1d,0x6d,0x69,0x6f,0xf6, - 0x0c,0x3c,0xee,0x71,0x13,0x6c,0x07,0x7d,0xb6,0x57,0x84,0x05,0xc7,0xc1,0x7e,0x57,0x44,0x6e,0x47,0xaf, - 0x6b,0xb6,0x8e,0x76,0x0a,0xfa,0xc1,0x93,0x40,0x9f,0x70,0xff,0x2e,0x0d,0xe9,0x2a,0xde,0x59,0x44,0xce, - 0xfc,0xdc,0x49,0x62,0x00,0x75,0xb6,0xb4,0xc6,0xd6,0x20,0x20,0x72,0x0b,0x7f,0x52,0xe3,0x18,0xca,0x82, - 0x1c,0x0e,0xe9,0xe8,0x15,0x06,0x5a,0xc7,0x35,0xa3,0x51,0xb9,0x9f,0xf0,0x83,0xfa,0xa5,0x64,0xdd,0x75, - 0x6a,0x6c,0x6c,0x5d,0x90,0xe9,0xec,0x2a,0x95,0xf0,0x23,0xb5,0x09,0xa2,0xed,0xd5,0x34,0xa4,0x0a,0x7e, - 0x2c,0xc3,0xe3,0x60,0xd2,0x54,0x73,0x1a,0x04,0x1b,0xeb,0xd2,0x6f,0x3a,0xc7,0xdf,0x45,0xd6,0xa4,0xc1, - 0xc9,0xed,0xa6,0xe4,0xbb,0x93,0xe3,0x0c,0xb6,0xe6,0xfd,0x96,0xe8,0x1a,0x9d,0x0e,0x82,0xfd,0x6c,0x3f, + 0x71,0xd5,0xf6,0xb9,0xdc,0xca,0x2d,0x75,0x6e,0xe4,0x45,0xe9,0xd1,0xfb,0x74,0x9e,0xb4,0x8a,0xab,0x15, + 0x2c,0x4c,0xcb,0x6a,0xc1,0x57,0xb8,0x4f,0x39,0x6d,0xbd,0xd6,0xdf,0xf3,0x16,0x9e,0x25,0xf3,0xf5,0x7a, + 0xa5,0xa6,0x98,0x2f,0xbd,0x51,0xa5,0x72,0xde,0xca,0x3a,0xa5,0x53,0x43,0x02,0xfb,0x75,0xbd,0xc3,0xc5, + 0xdb,0x69,0x1a,0xc5,0xd3,0x91,0x58,0xaa,0xb6,0xa1,0xd5,0x57,0x9c,0x33,0xe1,0x98,0x8d,0x7a,0xe4,0x67, + 0x7f,0x4b,0xae,0x76,0x61,0x15,0x9c,0x70,0x0a,0x09,0xd9,0xc5,0x4b,0x92,0xb3,0x6e,0xb2,0x73,0x37,0xce, + 0x60,0x7f,0x3e,0x34,0x31,0xd3,0xca,0x56,0x6d,0x65,0xf7,0x33,0xa7,0x9d,0xaf,0xa4,0x0e,0x0e,0x67,0x39, + 0x23,0x24,0xb5,0x84,0x21,0xe2,0xde,0xde,0x53,0x98,0x0f,0xd6,0xca,0x60,0x29,0xce,0x5e,0x46,0x61,0x9a, + 0x70,0x3e,0x01,0xef,0x8c,0x7e,0x6d,0x31,0x1d,0xa1,0x04,0x18,0x20,0xf5,0x79,0x80,0xf3,0xc6,0xf7,0x25, + 0xe3,0xe8,0x9e,0x5a,0x40,0x21,0x71,0x33,0x58,0xd6,0xc6,0x76,0x7f,0xce,0xf2,0x07,0x4a,0x7f,0x90,0x92, + 0x8d,0x36,0x51,0xb9,0xf7,0x6b,0x3d,0xb8,0x17,0xd9,0x7b,0x93,0x7a,0xfc,0xb8,0xbd,0x7a,0x38,0x20,0x16, + 0x82,0x81,0xc5,0xdb,0x89,0x7e,0x60,0x5c,0x28,0x50,0xa8,0xfd,0xf3,0x1e,0xc9,0x5f,0xa4,0x4d,0x26,0x77, + 0x70,0xdb,0xa2,0xd7,0x29,0x56,0xb8,0x04,0xac,0xfb,0xce,0xfa,0x45,0x86,0x61,0x41,0x6c,0x95,0x19,0xa0, + 0x37,0x0b,0xd7,0xff,0xbf,0xcf,0x82,0x20,0xf3,0xed,0x89,0xb0,0xe9,0xca,0x4f,0x95,0x43,0x00,0x54,0x7f, + 0x57,0x42,0x6f,0xa6,0x44,0xa6,0xce,0x89,0x92,0xff,0xd2,0xf4,0xc1,0x90,0xc4,0x4c,0x9b,0x37,0x95,0x15, + 0xcc,0xba,0x46,0xf0,0x69,0xb6,0x17,0x3c,0x55,0x0a,0xc3,0x05,0x88,0x1b,0x34,0x09,0x9d,0x43,0xef,0x1c, + 0xf3,0xd5,0x15,0xb7,0x75,0xd3,0xbf,0x62,0xa0,0xd1,0xa4,0x8d,0xbe,0x52,0x69,0xeb,0xa2,0x14,0x83,0x44, + 0xed,0x15,0xbc,0xcc,0xf3,0xd2,0xb4,0x40,0x28,0x8c,0xcb,0x23,0x9e,0xe7,0x61,0xa6,0x0d,0xb0,0x82,0x4b, + 0x48,0x10,0xf8,0x46,0x09,0xc4,0xbc,0xbe,0xd5,0x38,0xe4,0x39,0xe3,0xc6,0x2d,0xf2,0xe4,0x94,0xfb,0xf2, + 0x21,0xf7,0x7d,0x5f,0x3e,0xa0,0xa8,0x2f,0x79,0xb9,0x6a,0xda,0x46,0x21,0xdb,0x22,0x6d,0x16,0x3b,0x6c, + 0x27,0x73,0x34,0x9f,0xc2,0x33,0xe2,0x02,0x84,0xc2,0x23,0x04,0x02,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xaf, + 0x50,0xdd,0x54,0x5f,0x6d,0x7b,0x7b,0xab,0xde,0x56,0x10,0x34,0x5b,0xc3,0xb1,0xe7,0x2a,0xda,0x61,0x9d, + 0x3f,0x49,0x01,0x85,0x63,0x40,0x5b,0x52,0x54,0xc6,0x97,0x87,0xe9,0x2c,0xc8,0xc9,0x38,0xf2,0x34,0x9f, + 0x0b,0x56,0x8c,0x60,0x02,0xa6,0xd4,0x09,0xec,0x29,0x9e,0xe5,0xe3,0xb7,0x79,0xfc,0x28,0x27,0x8c,0xdf, + 0x71,0x1f,0xeb,0xd7,0xdb,0xd4,0x6a,0x05,0xcb,0x73,0x76,0x15,0x6b,0xab,0x80,0x24,0x88,0x85,0x30,0x73, + 0x83,0xc1,0xe4,0x1b,0x28,0x0e,0xe1,0x29,0x36,0xea,0xf7,0x47,0x9a,0x3c,0xd0,0xf9,0x0a,0x57,0x23,0xab, + 0x1e,0x1d,0x10,0x9a,0xf2,0x5c,0x55,0x9b,0x96,0x8e,0x3b,0xd1,0x37,0xd9,0x52,0x93,0x8f,0x75,0xd8,0x0d, + 0x3e,0x4b,0x24,0x52,0x44,0x75,0xfc,0x92,0xf8,0xff,0x27,0xf0,0x91,0x0a,0x4e,0xac,0xf5,0xdd,0x0e,0xcb, + 0x4e,0x75,0xde,0xaa,0x92,0xeb,0xa5,0xdb,0xd9,0x69,0xf2,0xb8,0xe1,0xf0,0xaf,0x60,0x69,0x8e,0x7f,0xba, + 0xa5,0x92,0x89,0xc9,0xeb,0xaf,0x64,0x8e,0x4a,0xc0,0xd3,0xd0,0x1c,0x1d,0xd0,0x89,0xe8,0xee,0xdc,0x91, + 0x09,0x4f,0xd9,0x6e,0xbc,0xa0,0x47,0x2a,0x90,0x52,0x01,0x63,0xa0,0x4e,0x14,0x03,0xac,0xdf,0xf3,0xf1, + 0x5c,0x97,0x78,0x85,0x12,0x73,0x2a,0x31,0xb1,0x25,0x66,0x09,0xa5,0x87,0x2b,0x17,0x69,0x3d,0x05,0xed, + 0xfb,0xcd,0x01,0xd5,0x3a,0x1f,0x3f,0xcb,0xe3,0x57,0x39,0xb3,0xf7,0xd1,0xb8,0x90,0xc6,0x4c,0xdd,0xb1, + 0xa9,0x22,0x3e,0x50,0x3a,0xe0,0xb2,0xd2,0xd0,0x12,0xaf,0x94,0x85,0x95,0x78,0x86,0x6b,0x90,0x8f,0xcc, + 0x6d,0x7d,0xb1,0xd4,0xb2,0xb7,0xf7,0x5e,0x0b,0xc9,0x65,0xf6,0x4c,0xfc,0x8e,0xe0,0xc4,0x47,0x03,0x8f, + 0x1b,0x77,0x48,0x8f,0x8c,0xc0,0xe3,0x81,0x8d,0x91,0x18,0x65,0x89,0x0d,0x9b,0xed,0x88,0x28,0x33,0x8e, + 0xd6,0x7d,0x5e,0x6d,0x11,0xb2,0xef,0x13,0xfe,0x10,0x46,0x90,0x83,0x87,0x8d,0x84,0x97,0xda,0xf8,0x3b, + 0xed,0xa1,0x4f,0x62,0x1d,0x66,0x5f,0xfc,0x43,0x5f,0x11,0xeb,0x24,0x06,0xfb,0x87,0x7e,0xf9,0x77,0x1e, + 0x2d,0x05,0x12,0x8a,0xe8,0x1d,0xf8,0x69,0xe1,0x6a,0x9e,0x94,0x88,0xf3,0x33,0x76,0x87,0xb0,0x6f,0xfa, + 0xaa,0xcc,0xb9,0x44,0xcb,0x73,0xe9,0xa1,0x09,0x55,0x90,0x9c,0x35,0x86,0x1b,0x72,0x1b,0x3a,0xb2,0xce, + 0x57,0x6c,0x3e,0x49,0x9f,0x11,0x84,0x67,0x15,0x57,0x7e,0xc8,0xb1,0xc0,0x40,0x90,0xe0,0x92,0x39,0x47, + 0xdb,0x20,0x8e,0x18,0x21,0x46,0x05,0xaf,0x57,0xde,0xd8,0x04,0x24,0x43,0xf9,0x8c,0x35,0x75,0x33,0xf3, + 0x7a,0x54,0x4a,0xc2,0xd4,0x24,0x3c,0x64,0x9a,0x5d,0x12,0x97,0x94,0x48,0x53,0x9a,0xa5,0xfa,0xab,0x0b, + 0xfb,0x6e,0x3e,0xbb,0xb4,0x29,0xfe,0x77,0x0b,0x4a,0x3d,0xcb,0x60,0x22,0xfe,0x14,0x55,0xc2,0x7b,0x4f, + 0x2a,0x57,0xd7,0x28,0x8f,0xab,0xd7,0x25,0xe3,0xcc,0xf6,0xca,0x4c,0x8c,0xba,0xb2,0xdf,0x3e,0xe4,0x7a, + 0xd5,0x91,0x6d,0x42,0x7d,0x34,0x5f,0xeb,0xac,0x4f,0xae,0x7f,0xf6,0xfb,0xc7,0x94,0x36,0xd5,0x7b,0x4a, + 0x3d,0x4c,0xce,0x2a,0xf5,0x8e,0xfe,0x68,0x3b,0xfd,0xd1,0xbb,0xbd,0xbd,0x77,0x96,0xe4,0x7a,0x98,0x84, + 0xef,0x12,0xf3,0x1a,0x19,0x8e,0x95,0x57,0xe2,0x4e,0xb2,0xfb,0xd0,0x0b,0x9d,0x44,0x1c,0x29,0x1b,0xf1, + 0x97,0x25,0xe8,0x40,0x8e,0x09,0x4c,0x4b,0x72,0x67,0xbd,0x3e,0xc2,0xe1,0x49,0x6b,0x70,0x24,0x20,0xf0, + 0x3a,0xb9,0xb3,0xb7,0xb7,0x1c,0x2f,0x69,0x37,0x3c,0xc5,0xe3,0xe5,0xf8,0x32,0x9e,0xaa,0x37,0x78,0xbc, + 0x18,0x5f,0xd0,0xbe,0xf8,0x2d,0xb9,0x33,0xbe,0x5a,0xaf,0x17,0xf1,0x42,0x3d,0x41,0x6a,0x8f,0xd3,0xcb, + 0xd1,0xf8,0x28,0x3e,0x57,0xcf,0xa9,0xe0,0xc7,0xf5,0xfa,0x3a,0xbe,0x56,0x2f,0xe8,0xf1,0xd3,0x7a,0x7d, + 0x16,0x9f,0xa9,0x67,0xc4,0xb7,0xe4,0xe1,0xe3,0x68,0xfc,0x58,0xa6,0x2d,0x7e,0x1c,0xa9,0x57,0x09,0x1f, + 0x84,0x35,0xeb,0xe3,0xd5,0xcb,0xe4,0x69,0x13,0x3e,0x89,0xd4,0xdb,0xc4,0xc1,0x89,0xef,0x64,0x1b,0xdd, + 0xbc,0x22,0x90,0xa4,0x03,0xa5,0x54,0x6f,0x22,0xc5,0xbf,0x4f,0xe9,0xa8,0x7c,0xeb,0x40,0x73,0x1c,0x52, + 0x09,0xce,0x78,0x1d,0xa9,0x17,0x7b,0x7b,0x2f,0xd8,0x90,0xe2,0xf9,0xde,0xde,0x73,0xb8,0x25,0x78,0xb5, + 0xea,0x60,0xeb,0x1a,0x5e,0xeb,0x8b,0x92,0x06,0xf6,0x03,0x6d,0x07,0x67,0xf9,0xe4,0x1a,0x15,0xb9,0x90, + 0xa1,0x76,0xc1,0xa7,0x2a,0x1d,0x0e,0xf9,0x14,0xc1,0x8a,0x98,0xd5,0x74,0xcf,0xc7,0x2c,0x49,0x3b,0x19, + 0x71,0x38,0x23,0xb1,0x37,0x2c,0xc4,0xde,0xb0,0xc1,0x0e,0xb3,0xfb,0xa6,0xfb,0x1e,0x46,0xea,0xc9,0xde, + 0xde,0x13,0xea,0xfa,0x5b,0xc8,0x82,0x7e,0xdb,0xdb,0xfb,0x0d,0x7d,0xc6,0x88,0xaf,0xf4,0x80,0xae,0x64, + 0xc4,0xea,0xb4,0x75,0x90,0x5c,0xf9,0xf3,0xf1,0xba,0x35,0x1d,0xeb,0xf5,0x4b,0x3a,0xc7,0x5f,0x37,0xe1, + 0xb3,0x68,0xec,0x9d,0x42,0x6f,0xd5,0xb3,0x28,0xfe,0x88,0xe2,0x73,0x6a,0x0c,0x48,0x44,0x79,0x13,0x21, + 0x06,0xb6,0x95,0xdf,0x1f,0xea,0x06,0x57,0xf5,0x36,0x6c,0x59,0x3c,0xdf,0xd1,0x08,0xc4,0x09,0x81,0xa9, + 0x3b,0x9f,0xfc,0xe6,0xc3,0xd6,0x04,0x87,0xc4,0x79,0xba,0x49,0xb4,0x33,0x06,0x55,0x76,0x5f,0xba,0x38, + 0x98,0xca,0x74,0x26,0x45,0xa4,0x2e,0x08,0x10,0x11,0x1c,0xf5,0x4a,0xa6,0x24,0x85,0xb3,0x04,0xff,0x2e, + 0x7b,0xa6,0x24,0x25,0x1e,0x0a,0x53,0xc2,0xa5,0x5a,0x7d,0x3a,0x92,0x29,0xf9,0xd8,0x9a,0x92,0x4f,0xea, + 0x23,0x4f,0x49,0xaa,0x56,0xea,0x93,0x4c,0xc9,0x25,0x28,0xb3,0x94,0xde,0xd4,0x15,0x7f,0xf4,0x09,0x74, + 0xb6,0xb6,0x19,0xd7,0xb8,0x32,0xf5,0xd1,0x99,0xf7,0xd6,0xc6,0x95,0x2e,0xdd,0xe0,0xca,0xfa,0x76,0x5c, + 0x29,0x91,0x5f,0xe5,0xfe,0x18,0x8b,0x1a,0x0d,0x03,0x25,0x6a,0xd6,0x5d,0x6e,0xd8,0x20,0x69,0xe3,0x6f, + 0x52,0x33,0xce,0x5c,0x25,0x12,0xe1,0x85,0x90,0x24,0xe4,0x2d,0xa9,0xc1,0x6a,0x53,0xf3,0x6a,0x90,0xdf, + 0xd2,0x24,0xf8,0xb8,0xef,0x82,0x12,0x05,0x7f,0xbd,0x40,0x16,0x61,0x48,0x5d,0x88,0xb0,0x62,0x2d,0xd8, + 0x4b,0x32,0xce,0x6d,0xed,0x16,0x77,0x5d,0x53,0x12,0x3b,0x65,0x4b,0x89,0x33,0xbc,0x1a,0x54,0x76,0x25, + 0xdb,0x7c,0x2e,0xdb,0xfc,0x08,0xdb,0xfc,0x32,0x22,0x8c,0x08,0x84,0x70,0x16,0x8d,0xcf,0xa4,0xae,0xf8, + 0x2c,0x62,0xac,0x68,0x86,0xd6,0xde,0xfa,0x3e,0x88,0x40,0x84,0xd4,0x03,0x30,0xbc,0x06,0x3d,0xe9,0x16, + 0x86,0x38,0x74,0xd7,0x95,0xe0,0x10,0x07,0x20,0xcb,0xa8,0x05,0x21,0xe3,0xf0,0x8a,0x71,0x08,0x43,0x0e, + 0xd5,0x79,0xce,0x76,0x20,0x21,0x36,0xc4,0x62,0x6f,0x6f,0x81,0x37,0xe5,0x75,0x52,0x63,0x92,0xeb,0xf1, + 0x35,0x6d,0xd7,0xb8,0x0c,0x7d,0x82,0xe0,0xb5,0x77,0x22,0x6f,0xc7,0x94,0xa2,0xd9,0x90,0x3b,0x0f,0x7d, + 0x75,0xf2,0x53,0xc4,0x99,0x65,0x56,0xc2,0x05,0x2d,0xd6,0x61,0xb1,0x61,0x25,0x8c,0xf0,0xc6,0x5e,0xd8, + 0xa7,0x31,0x15,0xdf,0x0a,0x5f,0x53,0x1d,0x1f,0x9c,0xc4,0x08,0x5e,0x63,0x6f,0xd9,0x83,0x5f,0x8b,0xa6, + 0x9f,0xbe,0xf1,0x54,0x78,0x6f,0x34,0xbd,0xb2,0x0b,0xbd,0x7c,0xe3,0x63,0x80,0x77,0x7c,0x19,0xb1,0xf3, + 0x01,0xb1,0xa4,0xf7,0x13,0xf3,0xa4,0x9c,0x25,0x5c,0x3f,0x7d,0x6b,0x4b,0x6e,0xd4,0x81,0x57,0xd5,0x93, + 0x0e,0x15,0xdf,0x78,0x92,0xb1,0xc5,0x6a,0xde,0xe4,0xcb,0x79,0x26,0xf4,0xfa,0x7a,0xdd,0x1d,0x99,0x17, + 0xef,0x8c,0x8d,0x00,0xe1,0x87,0x65,0x7d,0x68,0xba,0x6e,0x58,0x30,0x05,0x73,0xb9,0xb8,0x36,0x23,0x8f, + 0xca,0xe4,0x8c,0xd8,0xbf,0x17,0x30,0xf2,0x01,0xbf,0xab,0x70,0xfd,0xd2,0x9c,0x2f,0x43,0x87,0x90,0x9e, + 0xc1,0xc7,0x24,0x24,0x5e,0x18,0xaf,0xeb,0x90,0x3f,0xf1,0xa2,0xfe,0x82,0xeb,0x02,0x5d,0xa5,0x0b,0xb3, + 0x66,0x4a,0xce,0xb1,0x6e,0x6a,0x52,0xc3,0x4e,0x97,0xb9,0xa9,0x76,0xfa,0x7e,0xeb,0xd2,0xc7,0xe7,0x4d, + 0xfb,0x8a,0x95,0xee,0xcd,0x77,0x36,0x6b,0xf7,0x3a,0x14,0x7b,0x59,0xcf,0x25,0xc4,0x87,0x32,0x11,0x95, + 0x72,0x74,0x36,0x5c,0x30,0x20,0x7a,0x3e,0x2d,0x7e,0xf4,0xbc,0x3a,0x1a,0xf1,0x6e,0x16,0x9e,0xc5,0xc9, + 0x4c,0x61,0x63,0xe6,0xdc,0x39,0x6e,0x29,0xc4,0x83,0xdc,0xfe,0xf2,0x50,0xbd,0x6c,0x6c,0x86,0xd2,0x82, + 0x7c,0x9f,0xde,0x7c,0xd9,0x62,0x3a,0xbb,0x0e,0x0c,0x97,0xec,0xbe,0x00,0xa9,0xb3,0xe8,0xc1,0x03,0xe1, + 0x33,0xf3,0x46,0x72,0x1a,0x45,0x98,0x94,0x23,0x1e,0x0d,0xa7,0x79,0xcd,0xa6,0xc7,0x92,0xe1,0xab,0x2f, + 0xde,0x7a,0x33,0xb1,0x7b,0x8b,0x1f,0x83,0x48,0xaa,0xb2,0x2e,0xf2,0x1d,0x67,0xf1,0x5b,0x76,0x8d,0xb9, + 0x4d,0x66,0xe6,0x79,0x54,0x78,0x52,0x51,0x26,0x03,0xb6,0xec,0x5e,0xcd,0x2a,0xe2,0x8c,0x6f,0x59,0xbc, + 0x1a,0x3f,0xf4,0x31,0xd5,0xf1,0x0b,0x1c,0xbb,0xac,0x77,0xa1,0x2f,0xe4,0x7c,0xe4,0x35,0xc0,0xb7,0x4e, + 0xba,0x18,0xa7,0xed,0xf0,0x47,0x85,0xbb,0x66,0x22,0x42,0xe8,0x23,0x8e,0x0f,0xac,0x6f,0x2f,0xa1,0xcd, + 0x2f,0xa8,0xd0,0xf0,0x93,0x1d,0xc7,0xbc,0x9c,0xbe,0x38,0xc3,0x85,0x1e,0x27,0xec,0x9a,0xd7,0x13,0x89, + 0xf6,0x83,0x93,0x24,0xdd,0xfb,0x75,0xba,0xff,0x31,0xcb,0x96,0xfb,0xe9,0x9c,0x0e,0x8b,0x3b,0xfa,0xae, + 0x40,0xa6,0x6f,0x9c,0x47,0x75,0x18,0xb8,0x22,0x81,0xba,0xe1,0xae,0xc5,0xcd,0xd6,0xec,0xb8,0x3e,0xfb, + 0x40,0xfc,0x5e,0x03,0x1b,0x93,0x44,0xac,0x1c,0x38,0xe3,0xcb,0x27,0xdd,0x2b,0x9b,0x52,0xf2,0xbb,0x3e, + 0x4d,0x6d,0xbe,0x3d,0x5d,0x3d,0x8b,0x70,0x5d,0x9d,0x88,0x5b,0xb3,0xab,0x37,0x25,0x82,0x09,0xa1,0x34, + 0x01,0xe7,0x23,0x22,0x8c,0x39,0xaa,0xc7,0x3c,0xa7,0x4f,0xdf,0xe2,0xea,0x75,0x3f,0xce,0xbc,0xbf,0xbc, + 0x52,0x01,0x81,0xb8,0xb2,0xbe,0x33,0x52,0x9b,0xbe,0x8e,0x62,0xd6,0xec,0x17,0xfc,0xc3,0xf7,0x9e,0x35, + 0xe5,0x92,0x5e,0xe9,0x2f,0x30,0x58,0xb5,0x5e,0xe7,0xb6,0x0b,0x18,0xc2,0xd4,0x28,0x19,0x4b,0xdd,0x15, + 0x16,0x0c,0x8f,0x4a,0x77,0x37,0x3c,0x11,0x99,0x3f,0x65,0x67,0x1f,0xf3,0xc6,0xf2,0x9f,0x49,0xc0,0x99, + 0x08,0x83,0x17,0x06,0x83,0x6a,0x10,0x2c,0x3f,0x29,0xd6,0xed,0x2f,0x3f,0x45,0x81,0x2a,0x3d,0x00,0x36, + 0xbc,0x78,0x12,0x1c,0xd4,0xbe,0x62,0xfe,0x77,0x8b,0x70,0xb5,0x12,0x99,0x79,0xdf,0x43,0xf6,0xd7,0xcf, + 0x94,0x35,0x80,0x88,0x1b,0x65,0x4c,0x16,0x5a,0x37,0xde,0x76,0xef,0x3f,0x55,0x4e,0x95,0x6f,0xaf,0xe1, + 0xd0,0x81,0x8d,0xb5,0x63,0x22,0x1e,0x25,0x14,0x88,0x73,0xa3,0x6a,0x22,0x25,0xc0,0x48,0x4c,0xb7,0x0d, + 0x11,0x70,0xec,0xdf,0x13,0xf3,0x43,0x5b,0xbc,0x61,0xac,0x15,0x47,0x61,0x9d,0xd0,0x26,0x87,0x8e,0x95, + 0xa0,0xeb,0x3a,0xd0,0xfa,0x0b,0xf8,0xf5,0xd4,0x9e,0x69,0x52,0x26,0x1e,0x3e,0xbb,0xbe,0xf5,0x91,0xb6, + 0x37,0x08,0x4b,0x54,0x90,0xa3,0x82,0x2a,0x9b,0x49,0x05,0x39,0x1c,0x90,0x92,0x52,0xe5,0xd6,0x11,0xe9, + 0x16,0x27,0xed,0x7c,0xd4,0x48,0x08,0x4d,0x7b,0x81,0x4b,0x03,0xa9,0xa8,0xf3,0xf3,0x81,0x78,0x55,0x07, + 0xc8,0xb4,0x31,0x98,0xd9,0x97,0xbd,0xad,0xf2,0x0c,0x10,0x5d,0xc2,0x1a,0x19,0xc3,0x54,0x9a,0xde,0xa1, + 0x8d,0x4a,0xd8,0x8c,0x26,0xc0,0xd4,0x05,0x9e,0xcc,0xb8,0x69,0x47,0xcc,0xe6,0xaf,0x60,0x8e,0x24,0x76, + 0x35,0x1c,0x49,0x20,0xe0,0x7b,0xe5,0xa8,0x1a,0x0e,0x63,0x85,0xe0,0xd4,0x3a,0x93,0x92,0xf6,0x75,0x09, + 0xa2,0x01,0xec,0x37,0x7e,0xb2,0x1c,0x53,0xee,0x5b,0x13,0x41,0xb8,0xb0,0x45,0x81,0x7d,0x6d,0xa9,0x23, + 0x91,0x6c,0xdd,0x0d,0x82,0xbb,0x6c,0xc5,0x7d,0xd7,0x06,0x01,0xbd,0x4b,0xeb,0xb9,0xdd,0x53,0xa0,0x59, + 0x5b,0xfb,0x7a,0xcd,0x96,0x67,0x52,0xab,0xe2,0x1b,0x87,0x21,0xa3,0x82,0x11,0x69,0xc3,0xde,0x9f,0x41, + 0x5e,0x4b,0x97,0x0a,0x87,0x2a,0x12,0xc4,0x9b,0x14,0x73,0xa1,0x46,0xb8,0xb2,0x79,0x5e,0x64,0xfb,0xb6, + 0x25,0x29,0x2e,0xa9,0x47,0x3a,0x11,0x86,0x8b,0x2e,0x7a,0x60,0x72,0x30,0x9a,0x3c,0x38,0xb3,0x91,0x0f, + 0x26,0x7c,0x07,0xd3,0x59,0x79,0x3c,0x39,0x61,0x38,0xa3,0x2e,0x8e,0x5a,0x91,0x3e,0xb4,0xab,0x73,0xd7, + 0x4e,0x16,0x01,0x1f,0xd4,0x52,0x5d,0xf8,0xb6,0x42,0xdc,0x48,0x43,0x5b,0xa1,0x48,0x2e,0xac,0x03,0xff, + 0x83,0xc2,0x38,0xf1,0x57,0x49,0x9e,0x5c,0x20,0x46,0x32,0xdf,0x9a,0x50,0xca,0xb3,0x10,0x39,0xaf,0x4a, + 0x2d,0x44,0xd2,0xb2,0xf8,0x8b,0xb4,0x7e,0x94,0x33,0x2a,0xaa,0xc1,0x28,0x84,0x69,0xb2,0xd5,0xa5,0xa4, + 0xd2,0x37,0xed,0xbc,0x97,0x60,0x32,0x7e,0x08,0x79,0x77,0xf3,0x44,0x57,0x50,0xcf,0x11,0x15,0x8d,0xdc, + 0xe7,0x30,0xc2,0xbd,0xd7,0xb0,0x58,0xc0,0xe5,0x56,0x91,0xbe,0x66,0xc1,0x88,0xc3,0xdf,0x97,0xd0,0xbb, + 0x44,0xea,0x83,0xeb,0x9b,0x9f,0xfd,0x81,0xb3,0x69,0x18,0xdf,0xb2,0x67,0x7f,0x8d,0x73,0x5e,0x22,0x7c, + 0x02,0x8d,0xb3,0xcd,0x33,0xf5,0x5c,0xab,0x8c,0x9b,0xc5,0x3c,0x90,0x80,0x62,0x67,0x88,0x85,0x29,0x4d, + 0x79,0xea,0x64,0xa6,0x9c,0x27,0x34,0x2d,0x73,0xce,0x91,0x42,0xa0,0xc2,0xae,0x8b,0x09,0x9d,0x95,0x0c, + 0x7d,0x36,0x42,0x24,0xe7,0xaa,0x12,0x6c,0x6a,0x70,0x87,0x0d,0xe0,0x02,0x36,0xaa,0x86,0x86,0xdd,0x41, + 0xca,0xde,0xde,0xc7,0xd2,0x5e,0x1c,0x6b,0x30,0x98,0xb0,0x40,0x44,0x0a,0xb3,0x05,0x25,0x82,0x57,0xc5, + 0x3f,0x9a,0x27,0x4b,0xd5,0x3d,0xeb,0x1f,0xf0,0x33,0x19,0x30,0x77,0x46,0x02,0xb2,0xed,0xfa,0xd7,0x1c, + 0x5e,0x26,0xad,0xd9,0x7b,0x25,0xb3,0xa7,0xd7,0xe8,0x11,0xcd,0xd0,0x22,0x01,0xe3,0x78,0x7c,0x78,0x32, + 0x5a,0xe8,0x99,0xb6,0xd2,0xb7,0x70,0xa1,0xc1,0x65,0x70,0x88,0x91,0xcc,0x93,0x8a,0xf8,0xb5,0x1c,0xf2, + 0x4f,0xe2,0xcf,0x16,0x90,0x58,0x29,0xc4,0xd2,0xc8,0xa2,0x96,0x43,0x5c,0x38,0xf1,0x5e,0xb7,0x2c,0x35, + 0xe7,0x4a,0x3b,0x20,0xc5,0x2b,0x6d,0x62,0x39,0x83,0x85,0x49,0x3c,0x55,0xd6,0x1a,0x30,0x5e,0x6e,0x10, + 0x67,0xc3,0x9a,0xf0,0xf1,0x04,0xe8,0xf9,0xe8,0xd8,0xd4,0x95,0x7c,0x7f,0x8d,0x3f,0xbb,0xc1,0x02,0xa2, + 0x65,0xac,0x6a,0xf5,0xd9,0xa9,0xde,0xdb,0xd3,0x73,0xad,0x5d,0x3b,0x36,0x2d,0xae,0xe6,0x7b,0x77,0xa6, + 0x32,0x10,0x27,0xc6,0x40,0x90,0x20,0x37,0x88,0xfa,0xac,0xc6,0x24,0xa5,0xd1,0x13,0xfb,0x52,0x47,0x52, + 0x32,0x5c,0x03,0xab,0x52,0xe9,0xdb,0xa4,0x38,0xbe,0x7f,0xa2,0xb5,0x38,0x86,0xee,0xa1,0xa9,0xd7,0x29, + 0x76,0x95,0x7e,0x32,0x40,0x9c,0xeb,0xfa,0xde,0xba,0xe8,0xb9,0xe5,0x18,0xe1,0x91,0xe6,0x79,0x5a,0x27, + 0xb9,0xfd,0xe0,0xad,0x7c,0x50,0x0d,0x73,0xa2,0x2c,0x52,0xa2,0xe0,0x0e,0x93,0xd2,0xd5,0xab,0x4a,0x6a, + 0x95,0xed,0x20,0x4c,0xf6,0xfd,0xa4,0x74,0x1d,0x41,0xdc,0x12,0x53,0xa3,0xaa,0xf8,0x42,0xb9,0x82,0x83, + 0x00,0xb4,0xbd,0x35,0xbe,0xb5,0x8a,0x91,0x7c,0xf6,0xb8,0x24,0x2c,0xc0,0xd4,0x11,0x73,0x0a,0x7e,0x02, + 0x87,0x2d,0x6d,0x27,0x19,0x6d,0x8b,0x67,0xb7,0xec,0x8b,0x7e,0x7f,0x6f,0xda,0xab,0xc4,0xa7,0xa1,0x89, + 0x0c,0x9f,0x19,0x91,0xa1,0x67,0xc1,0xdc,0x65,0xc9,0xc6,0x81,0x09,0xa2,0x14,0xdf,0x04,0x71,0x50,0xe2, + 0xc7,0x45,0x52,0xd0,0xb7,0xd4,0x0d,0x12,0xd8,0xd9,0xe5,0x83,0xbb,0x41,0x7c,0x77,0xf0,0x0b,0x94,0x06, + 0xec,0xa7,0x0d,0x2b,0x6b,0x77,0x0f,0xb3,0x27,0x78,0x66,0x7b,0x41,0x67,0xda,0xec,0x68,0x4b,0x7b,0xb3, + 0x67,0xe0,0x71,0x8f,0x9b,0x60,0x3b,0xe8,0xb3,0xbd,0x22,0x2c,0x38,0x0e,0x06,0x5d,0x11,0xb9,0x1d,0xbd, + 0xae,0xd9,0x3a,0xda,0x29,0xe8,0x07,0x4f,0x02,0x7d,0xc2,0xfd,0xbb,0x34,0xa4,0xab,0x78,0x67,0x11,0x39, + 0xf3,0x73,0x27,0x89,0x01,0xd4,0xd9,0xd2,0x1a,0x5b,0x83,0x80,0xc8,0x2d,0xfc,0x49,0x8d,0x63,0x28,0x0b, + 0x72,0x38,0xa4,0xa3,0x57,0x18,0x68,0x1d,0xd7,0x8c,0x46,0xe5,0x20,0xe1,0x07,0xf5,0x4b,0xc9,0xba,0xeb, + 0xd4,0xd8,0xd8,0xba,0x20,0xd3,0xd9,0xa7,0x54,0xc2,0x8f,0xd4,0x26,0x88,0xb6,0x57,0xd3,0x88,0x2a,0xf8, + 0xb1,0x0c,0x8f,0x83,0x49,0x53,0xcd,0x69,0x10,0x6c,0xac,0x4b,0xbf,0xe9,0x1c,0x7f,0x17,0x59,0x93,0x06, + 0x27,0xb7,0x9b,0x92,0xef,0x4e,0x8e,0x33,0xd8,0x9a,0xf7,0x5b,0xa2,0x6b,0x74,0x3a,0x0c,0x06,0xd9,0x20, 0xf8,0x81,0xa8,0x2a,0x3b,0x59,0xeb,0x35,0x38,0x36,0x31,0x0a,0xb1,0x1d,0x36,0xfe,0xbb,0xd6,0x7e,0x27, - 0xcc,0xf7,0x09,0xab,0xc3,0xd6,0xe2,0xee,0xe9,0xaa,0x69,0xca,0xe2,0x2e,0xa6,0x41,0x2a,0x85,0x9f,0xfe, - 0x7e,0xca,0x0d,0xff,0xd8,0x98,0x6a,0x29,0x8d,0x16,0xc1,0x2a,0xe0,0xe8,0x60,0x1f,0x62,0x3b,0x4a,0x4d, - 0xa5,0x17,0xb3,0x32,0xd4,0x95,0xdc,0x80,0xc6,0x0d,0x8b,0x91,0x5e,0x93,0xfd,0xc0,0x64,0x04,0x71,0x35, - 0x62,0xab,0x55,0x93,0x11,0xb9,0x1c,0xb3,0x80,0x0c,0x69,0xa6,0x2d,0x22,0x8b,0x4c,0x2d,0x71,0x5f,0x33, - 0xb6,0x22,0x1f,0x3a,0x7f,0xf4,0x58,0x00,0x8e,0x71,0xf3,0x9c,0x29,0xa3,0xa3,0xc3,0xc8,0x8f,0x67,0x6f, - 0xa6,0x51,0x87,0x8e,0x26,0xe2,0x90,0xaa,0xd3,0x70,0x46,0xab,0x6e,0xc3,0x0c,0x07,0xe3,0x4f,0x61,0xbb, - 0x28,0x91,0xf0,0x1d,0xc4,0x9b,0xf1,0xc6,0xe9,0xa6,0x16,0x48,0x75,0x9f,0xfa,0x56,0x99,0x59,0xcb,0x7c, - 0x09,0xb1,0x72,0x0a,0xdc,0xce,0x6b,0x2c,0x45,0x25,0x46,0x5b,0x1c,0xc0,0xd0,0x8f,0x03,0xb0,0xda,0xfd, - 0x01,0x5d,0xfa,0xa8,0x11,0xeb,0xa4,0xf8,0xee,0x78,0xa2,0x43,0x06,0xdc,0xe5,0x69,0x53,0x9d,0xb8,0xc6, - 0x71,0xd1,0x8d,0x74,0xec,0x21,0xb0,0xa6,0x70,0xf1,0xf2,0x4d,0xb1,0xb2,0x14,0x5f,0x39,0x79,0x7d,0x53, - 0x95,0x93,0xac,0xae,0xb3,0xa9,0x5d,0xfa,0xc2,0x1a,0x77,0x67,0xda,0x70,0x7f,0x57,0x1e,0xb6,0x8a,0x56, - 0x7e,0x51,0xda,0x6f,0x5c,0x92,0x7e,0xb7,0xeb,0x4c,0x10,0xee,0xa3,0xe1,0x9b,0x3e,0x66,0x88,0x54,0x89, - 0xd0,0x7e,0xc0,0xbe,0xec,0xdc,0x65,0x11,0xf8,0x08,0xf3,0xeb,0xbd,0xc7,0xb4,0x97,0x6b,0xaf,0xc0,0xfd, - 0x4e,0x81,0xfb,0x28,0x50,0xb4,0x5a,0x64,0x4a,0x67,0x3c,0x0f,0xb5,0x75,0xb5,0x23,0xf2,0x61,0x0e,0x9d, + 0xcc,0x07,0x84,0xd5,0x61,0x6b,0x71,0xf7,0x6c,0xd5,0x34,0x65,0x71,0x17,0xd3,0x20,0x95,0xc2,0x4f,0x7f, + 0x90,0x72,0xc3,0x3f,0x36,0xa6,0x5a,0x4a,0xa3,0x45,0xb0,0x0a,0x38,0x3a,0xd8,0x47,0xd8,0x8e,0x52,0x53, + 0xe9,0xc5,0xac,0x0c,0x75,0x25,0x37,0xa0,0x71,0xc3,0x62,0xac,0xd7,0x64,0x10,0x98,0x8c,0x20,0xae,0xc6, + 0x6c,0xb5,0x6a,0x32,0x22,0x97,0x63,0x16,0x90,0x21,0xcd,0xb4,0x45,0x64,0x91,0xa9,0x25,0xee,0x6b,0xc6, + 0x56,0xe4,0x43,0xe7,0x8f,0x1e,0x0b,0xc0,0x31,0x6e,0x9e,0x33,0x65,0x74,0x78,0x10,0xf9,0xf1,0xec,0xcd, + 0x34,0xea,0xd0,0xd1,0x44,0x1c,0x52,0x75,0x1a,0xce,0x68,0xd5,0x6d,0x98,0xe1,0xe0,0xf4,0x63,0xd8,0x2e, + 0x4a,0x24,0x7c,0x07,0xf1,0x66,0xbc,0x71,0xba,0xa9,0x05,0x52,0xdd,0xa7,0xbe,0x55,0x66,0xd6,0x32,0x5f, + 0x42,0xac,0x9c,0x02,0xb7,0xf3,0x1a,0x4b,0x51,0x89,0xd1,0x16,0x07,0x30,0xf4,0xe3,0x00,0xac,0x76,0x7f, + 0x40,0x97,0x3e,0x6e,0xc4,0x3a,0x29,0xbe,0x7b,0x3a,0xd1,0x21,0x03,0xee,0xf2,0xb4,0xa9,0x4e,0x5c,0xe3, + 0xb8,0xe8,0x46,0x3a,0xf6,0x10,0x58,0x53,0xb8,0x78,0xf9,0xa6,0x58,0x59,0x8a,0xaf,0x9c,0xbc,0xbe,0xa9, + 0xca,0x49,0x56,0xd7,0xd9,0xd4,0x2e,0x7d,0x61,0x8d,0xbb,0x33,0x6d,0xb8,0xbf,0x2b,0x0f,0x5b,0x45,0x2b, + 0xbf,0x28,0xed,0x37,0x2e,0x49,0xbf,0xdb,0x75,0x26,0x08,0xf7,0xd1,0xf0,0x4d,0x1f,0x33,0x44,0xaa,0x44, + 0x68,0x3f,0x60,0x5f,0x76,0xee,0xb2,0x08,0x7c,0x8c,0xf9,0xf5,0xde,0x63,0xda,0xcb,0xb5,0x57,0xe0,0x7e, + 0xa7,0xc0,0x7d,0x14,0x28,0x5a,0x2d,0x32,0xa5,0x73,0x3a,0x0f,0xb5,0x75,0xb5,0x23,0xf2,0x61,0x0e,0x9d, 0xb2,0x07,0x8a,0x9b,0xe5,0x86,0x43,0xb8,0x61,0x56,0x23,0x8d,0x7c,0x6e,0xa3,0x2d,0x95,0x0e,0x90,0x26, 0x43,0xcd,0x67,0x3c,0xd2,0x7c,0xb6,0x35,0xd0,0xd2,0xcd,0x88,0xa3,0xb9,0x77,0x3b,0x34,0xb7,0xd0,0xea, - 0x7d,0x4c,0x87,0x31,0x60,0xa5,0xe9,0x5a,0xd2,0x74,0x9d,0x27,0x53,0xcb,0x85,0xac,0xd7,0x1e,0x49,0x0f, - 0xa9,0x6f,0x11,0x4e,0x21,0x55,0x27,0xf6,0x73,0x0c,0x3b,0xe1,0xf3,0xfd,0xf0,0x82,0xa7,0xe7,0x82,0x63, - 0xc4,0x9d,0xd1,0xa7,0x3a,0xaa,0x78,0x40,0x5b,0x48,0xbf,0xdc,0xe6,0xf6,0x32,0x2e,0xb4,0x69,0x03,0xcd, - 0x45,0x0c,0xa7,0x62,0x91,0x45,0xb5,0xf0,0x33,0x41,0xde,0xb5,0xa9,0x14,0x46,0xf3,0xda,0x75,0x20,0x38, - 0x51,0xbb,0x67,0x34,0x1d,0xd7,0xec,0x9b,0x15,0x2e,0x08,0xed,0x30,0x5b,0x10,0xb0,0x60,0x56,0xde,0x83, - 0xfd,0xb3,0x48,0x5d,0xcb,0x5b,0x78,0x06,0xa3,0x20,0x53,0x86,0x77,0xd4,0x35,0x8d,0x02,0xf6,0xcc,0xbc, - 0x04,0x63,0x99,0x62,0x17,0x36,0x75,0xe2,0x47,0xbb,0x20,0x82,0x0c,0xba,0xc6,0x06,0x36,0x5c,0x1d,0xde, - 0x62,0x84,0x1a,0x63,0x9a,0x16,0x2c,0x1b,0xa4,0x50,0x63,0x9a,0x19,0xda,0x3a,0xfb,0x13,0x6e,0x24,0xe5, - 0x8c,0x68,0x3f,0x9c,0xf1,0x2c,0xcd,0x62,0x36,0x4a,0xa1,0x46,0x2d,0xd9,0x78,0x9a,0x68,0x5e,0x75,0xa4, + 0x7d,0x4c,0x87,0x31,0x60,0xa5,0xe9,0x5a,0xd2,0x74,0x5d,0x24,0x53,0xcb,0x85,0xac,0xd7,0x1e,0x49,0x0f, + 0xa9,0x6f,0x11,0x4e,0x21,0x55,0x27,0xf6,0xf3,0x14,0x76,0xc2,0x17,0x83,0xf0,0x92,0xa7,0xe7,0x92,0x63, + 0xc4,0x9d,0xd3,0xa7,0x3a,0xaa,0x78,0x40,0x5b,0x48,0xbf,0xdc,0xe6,0xf6,0x72,0x56,0x68,0xd3,0x06,0x9a, + 0x8b,0x18,0x4e,0xc5,0x22,0x8b,0x6a,0xe1,0x67,0x82,0xbc,0x6b,0x53,0x29,0x8c,0xe6,0xb5,0xeb,0x40,0x70, + 0xa2,0x76,0xcf,0x69,0x3a,0xae,0xd9,0x37,0x2b,0x5c,0x10,0xda,0x61,0xb6,0x20,0x60,0xc1,0xac,0xbc,0x07, + 0x83,0xf3,0x48,0x5d,0xcb,0x5b,0x78,0x0e,0xa3,0x20,0x53,0x86,0x77,0xd4,0x35,0x8d,0x02,0xf6,0xcc,0xbc, + 0x04,0x67,0x32,0xc5,0x2e,0x6c,0xea,0xc4,0x8f,0x76,0x41,0x04,0x19,0x74,0x8d,0x0d,0x6c,0xb8,0x3a,0xbc, + 0xc5,0x18,0x35,0xc6,0x34,0x2d,0x58,0x36,0x48,0xa1,0xce,0x68,0x66,0x68,0xeb,0x0c,0x26,0xdc,0x48,0xca, + 0x19,0xd1,0x20,0x9c,0xf1,0x2c,0xcd,0x62,0x36,0x4a,0xa1,0x46,0x2d,0xd9,0x78,0x9a,0x68,0x5e,0x75,0xac, 0xe3,0x83,0xa5,0xb2,0x98,0x08,0x08,0x7a,0x5b,0x5b,0x38,0x94,0xc1,0xd3,0x48,0x5b,0x77,0x31,0x75,0xb4, - 0x8e,0xfb,0x01,0x3d,0x85,0xa7,0xdc,0xd0,0x29,0x37,0x14,0x5e,0xf2,0xcb,0xa5,0x69,0xd5,0x5e,0x98,0x74, - 0x45,0x4c,0xd0,0xd5,0x83,0xc6,0xc9,0x17,0xac,0x90,0xf4,0x8a,0x58,0x95,0x71,0xe2,0xe7,0x1c,0x5f,0x81, - 0x31,0x1a,0x5b,0x6c,0x3f,0xb6,0x71,0x2c,0x0b,0xcd,0x30,0x05,0xd2,0x73,0x0f,0x07,0x15,0xdd,0xbb,0x6c, - 0x3a,0xbb,0x1e,0xfb,0xa5,0xe9,0x22,0x10,0x39,0x56,0x7a,0x11,0x93,0x46,0x28,0x00,0x07,0x04,0x4b,0x5f, - 0xd0,0xfc,0x86,0xdb,0xdf,0x9b,0xb8,0x74,0xd1,0xbe,0x45,0x3b,0x12,0x4b,0x24,0x50,0xe2,0xad,0x6c,0xa7, - 0xc1,0x3a,0x87,0xf8,0x88,0xaa,0x85,0x6c,0x24,0x3c,0xf9,0x5f,0xda,0x72,0xad,0xb6,0x7c,0x4f,0xd7,0x20, - 0x60,0x99,0x88,0x56,0xcc,0x56,0x43,0x6d,0x2f,0x0b,0x31,0xc1,0x4d,0x91,0x70,0x0c,0x12,0xe3,0x26,0x62, - 0x9d,0x55,0xed,0xf1,0x34,0x0a,0xc6,0x65,0xe8,0x8d,0x5c,0xe1,0x44,0x42,0x17,0x9f,0x4f,0xf7,0xf7,0xf9, + 0x8e,0x83,0x80,0x9e,0xc2,0x53,0x6e,0xe8,0x94,0x1b,0x0a,0xaf,0xf8,0xe5,0xca,0xb4,0x6a,0x2f,0x4c,0x3a, + 0x22,0x26,0xe8,0xe8,0x41,0xe3,0xe4,0x0b,0x56,0x48,0x7a,0x44,0xac,0xca,0x59,0xe2,0xe7,0x1c,0x1f,0x81, + 0x31,0x3a,0xb3,0xd8,0xfe,0xcc,0xc6,0xb1,0x2c,0x34,0xc3,0x14,0x48,0xcf,0x3d,0x1c,0x54,0x74,0xef,0xb2, + 0xe9,0xec,0x7a,0xec,0x97,0xa6,0x8b,0x40,0xe4,0x58,0xe9,0x45,0x4c,0x1a,0xa1,0x00,0x1c,0x10,0x2c,0x7d, + 0x41,0xf3,0x1b,0x6e,0x7f,0x6f,0xe2,0xd2,0x45,0x03,0x8b,0x76,0x24,0x96,0x48,0xa0,0xc4,0x5b,0xd9,0x4e, + 0x83,0x75,0x0e,0xf1,0x11,0x55,0x0b,0xd9,0x48,0x78,0xf2,0xbf,0xb4,0xe5,0x5a,0x6d,0xf9,0x9e,0xae,0x41, + 0xc0,0x32,0x11,0xad,0x98,0xad,0x46,0xda,0x5e,0x16,0x62,0x82,0x9b,0x22,0xe1,0x18,0x24,0xc6,0x4d,0xc4, + 0x3a,0xab,0xda,0xe3,0x69,0x1c,0x9c,0x96,0xa1,0x37,0x72,0x85,0x13,0x09,0x5d,0x7c,0x3e,0x1d,0x0c,0xf8, 0xb5,0x60,0xbf,0x36,0x5d,0x60,0xd3,0xc6,0xa3,0x9e,0xfb,0xc5,0x76,0x60,0xea,0xd6,0x80,0x30,0x50,0xcf, - 0x32,0xdd,0x9a,0xcc,0x7b,0xaa,0x3b,0xb7,0x63,0xab,0x51,0x25,0xc7,0x83,0xcc,0xd6,0xa8,0xd2,0xa7,0x85, - 0x3e,0x35,0xf8,0x2a,0x10,0x23,0x5f,0xb1,0xd7,0x04,0x13,0x80,0x8c,0x89,0xc0,0x0c,0xb4,0x31,0x40,0x63, - 0xe2,0xfa,0x39,0xf2,0x21,0xbb,0x5a,0xf2,0xd9,0x9d,0x8a,0xd7,0x41,0x34,0x22,0xb4,0x49,0x7c,0xe4,0xe9, - 0xbc,0x9c,0x7c,0xd2,0xb8,0xc1,0x76,0x8c,0x16,0xd1,0xcb,0xdc,0x74,0x68,0x62,0x4b,0xcd,0x76,0xaf,0x70, - 0x49,0xbb,0x21,0x42,0x12,0x42,0x50,0x74,0x22,0xf4,0x99,0xfc,0x66,0x5b,0x97,0x48,0xeb,0x5b,0x47,0x34, - 0x92,0x4e,0xbc,0x38,0x0c,0xf1,0x71,0xc0,0xb1,0x81,0x87,0x72,0x0d,0x48,0xef,0xb5,0x52,0x37,0xa5,0x89, - 0x42,0xaf,0xc5,0x7c,0xab,0xd6,0x3d,0xd5,0xc7,0xa5,0x08,0xc8,0x86,0x2b,0x70,0xcf,0xc9,0xee,0xee,0x0a, - 0xf1,0xa4,0x69,0x7f,0x5c,0xa6,0x15,0xae,0xd6,0x48,0x39,0x94,0x25,0x2d,0x53,0x4d,0x94,0xb5,0xf0,0x76, - 0x44,0x5f,0xcb,0x47,0x44,0x64,0x5b,0x36,0x8f,0x13,0xf5,0x0b,0x1c,0x5b,0xf6,0xc3,0x52,0x30,0x2a,0xc1, - 0xbf,0x90,0x39,0x38,0x8e,0x2c,0x79,0xe4,0x7b,0xf6,0x6c,0xd1,0x17,0xba,0x58,0x24,0x68,0xa4,0x1c,0xd0, - 0xd9,0x31,0xba,0xcb,0xec,0x23,0xb7,0x42,0x0f,0x68,0xc1,0xe4,0x5a,0xda,0x94,0x5a,0x72,0xcc,0x65,0x4f, - 0xa5,0x8e,0x1c,0x96,0xbd,0xb8,0x21,0x1c,0x6f,0x20,0x77,0x32,0xaa,0xdb,0x5c,0xc1,0x89,0x8d,0x8a,0x24, - 0x51,0x3d,0x86,0x86,0x2c,0x04,0xf4,0x47,0x4a,0x4b,0xf6,0x98,0xe4,0x84,0xb3,0x0b,0xb0,0xa0,0x78,0xaa, - 0x04,0xe2,0x5a,0x3f,0xd3,0x99,0xf4,0xc4,0x99,0xf4,0xeb,0x65,0xf2,0x6e,0x75,0x25,0xf8,0x35,0x06,0x9a, - 0x90,0x12,0x4b,0xf6,0x2e,0x44,0x26,0x3d,0x79,0xe9,0x1e,0x03,0x8c,0xdc,0xbb,0x10,0x96,0xb2,0x57,0x11, - 0x10,0x30,0x2d,0xc6,0x5d,0x27,0x69,0x4a,0x09,0xc9,0xa6,0x0f,0x44,0x7b,0xf6,0x6d,0x56,0x3c,0xf3,0xee, - 0xfe,0x86,0x3c,0x68,0x3f,0xf1,0xb3,0x8e,0xd3,0x93,0x30,0xd3,0xe8,0x44,0x9f,0xa0,0xdc,0x3a,0x3f,0x13, - 0x97,0xb5,0xbf,0x2a,0x4c,0x8e,0x9e,0x37,0xa5,0xfd,0x3d,0x75,0x41,0x63,0xf4,0x6f,0xcb,0x4a,0xbc,0x5e, - 0x5b,0x56,0x1c,0x05,0xa5,0x30,0xf8,0x3a,0x9d,0xa0,0x76,0x8f,0x0c,0xa4,0x99,0xc9,0xf1,0x7d,0x0e,0xbd, - 0xf2,0x7e,0xb2,0x62,0xfc,0xdd,0xfa,0xca,0x91,0x18,0x42,0xe6,0x19,0x29,0x9f,0xee,0x1e,0xdf,0xd3,0x12, - 0xec,0xfb,0xe5,0xec,0x97,0x2e,0xfc,0xa9,0x14,0x86,0xf0,0xcf,0x4f,0x65,0x22,0x2e,0xf0,0x12,0xe2,0xf1, - 0x8a,0xf8,0x9f,0x56,0x30,0x95,0xe2,0x36,0x96,0x66,0xa7,0x8b,0xdc,0xdc,0xbd,0x05,0x9a,0x78,0x6c,0x93, - 0x72,0xa3,0x30,0x67,0xd7,0x9d,0x8a,0xf6,0x39,0x24,0xc4,0x6c,0xec,0x4a,0x5b,0xbc,0xd4,0xa4,0x23,0xec, - 0xbe,0xdb,0xa4,0x63,0xd9,0x26,0x1d,0xe7,0x5e,0x81,0xfb,0x9d,0x02,0x4c,0x3a,0x96,0xb7,0x91,0x8e,0x75, - 0x87,0x74,0x9c,0xec,0xaf,0xf6,0xe7,0x2d,0xd2,0x51,0x87,0xc6,0x15,0xda,0x91,0xf6,0xd0,0x8d,0x00,0x3e, - 0xa6,0x72,0x56,0xc4,0xde,0xa7,0xda,0x01,0xa2,0x70,0xeb,0x10,0xb5,0x2a,0x0a,0x5b,0xb2,0x59,0x36,0x43, - 0x19,0x11,0x85,0x3b,0xe3,0x3f,0xfb,0x01,0x21,0xe0,0xb0,0x16,0x32,0xb5,0x75,0x81,0x33,0x90,0xb1,0x7b, - 0x8b,0xfb,0x8a,0xc4,0x9a,0xbc,0x45,0x1f,0x37,0x82,0xf3,0x5b,0xb4,0x2d,0xf6,0x32,0xae,0x4d,0x01,0x76, - 0x6e,0x73,0xe2,0x74,0xb2,0x47,0x80,0x07,0x1d,0x6e,0x9c,0xc1,0x86,0x9f,0x63,0xe3,0x94,0xb8,0x9f,0xf9, - 0x01,0xc5,0x69,0xd0,0xce,0x0f,0xd1,0x66,0x99,0xa4,0xfd,0xa0,0x8d,0xe0,0x6c,0xf4,0x72,0x9b,0x68,0xb7, - 0x46,0x9b,0xca,0xda,0x8a,0x5e,0xd1,0xf8,0xde,0x1a,0x36,0x74,0xe7,0x21,0xc7,0xd0,0x39,0x92,0xc0,0x7d, - 0x6c,0xa5,0xa6,0x5d,0x47,0x0b,0x0e,0x9b,0x53,0x9a,0xe8,0x80,0x9a,0xd3,0x6b,0xb7,0x11,0x1b,0x36,0xcc, - 0x13,0x6c,0x10,0xeb,0xa0,0x03,0x68,0xa3,0x63,0x5d,0x76,0xeb,0x18,0xd9,0x5d,0x82,0xe7,0x16,0x26,0xbe, - 0x55,0xa9,0x30,0xb0,0xed,0x99,0x86,0x7f,0x26,0x61,0xd9,0x86,0x63,0x17,0x62,0x9e,0xd9,0x05,0xde,0x62, - 0xe2,0xdc,0x93,0x77,0xdd,0x53,0x77,0xee,0xa9,0x40,0x53,0xe2,0xd9,0xe0,0xb2,0x4a,0x97,0x72,0xb5,0x3d, - 0x14,0x27,0xf6,0x15,0x9e,0x2a,0x3a,0xd7,0x2a,0x15,0xbd,0x22,0x36,0x8d,0xcb,0x79,0xf7,0x34,0xd5,0x96, - 0x38,0xf1,0x23,0x15,0x99,0x39,0x96,0xd8,0xdd,0x7e,0x14,0xab,0x34,0x29,0xbd,0x89,0x2f,0x3d,0xbf,0x21, - 0xde,0xca,0x2d,0xe6,0x27,0x15,0xdb,0x2a,0xe1,0x75,0xcc,0xbb,0x71,0x1d,0xad,0xd6,0xeb,0xa6,0x88,0xc2, - 0x54,0x35,0xc6,0xee,0xa6,0xe8,0x44,0xdd,0x6e,0x5f,0x30,0xbf,0x75,0x35,0x8e,0x0d,0xe4,0x58,0xd9,0xee, - 0xe4,0x1a,0x0e,0xe8,0x75,0x82,0x0b,0x97,0x10,0xf8,0xc9,0xa7,0x4d,0xe0,0x5b,0xd1,0xa6,0x55,0xca,0x45, - 0xd6,0x87,0xb1,0x26,0x40,0xdf,0x9a,0xbe,0x89,0x40,0x2a,0xde,0xd7,0x64,0x22,0xbb,0x04,0xfd,0x8f,0xab, - 0x6d,0xfc,0x5a,0xd9,0x88,0xf6,0x28,0xf2,0xae,0x5a,0x0b,0x4b,0xb6,0x2e,0xbd,0x3e,0xcd,0x1e,0x5b,0x2e, - 0x28,0xe6,0x80,0xb6,0x5d,0xc7,0x28,0x63,0x48,0x2a,0x0c,0x24,0x8d,0x79,0xa4,0x89,0xd0,0xf8,0x0b,0x9b, - 0x04,0x15,0xac,0x0d,0x9b,0x37,0x82,0xaf,0xb5,0x02,0x15,0xb8,0x45,0x13,0x54,0x12,0x7e,0x99,0x5d,0x92, - 0xe3,0x60,0x7c,0x01,0xca,0xfe,0x3e,0x34,0x05,0x05,0xa4,0xdd,0x5c,0x79,0xe1,0xed,0xd9,0x78,0x5e,0x84, - 0x5d,0x51,0x88,0xd4,0x10,0x45,0x96,0x99,0x23,0x70,0x32,0x2a,0x10,0x08,0x04,0xcb,0xdb,0x4e,0x86,0x49, - 0xaf,0x3c,0x90,0x30,0x1f,0x63,0xed,0x1a,0x24,0x8a,0x27,0xd4,0x98,0xf8,0x9f,0x5a,0xad,0x1f,0x4b,0x1e, - 0x08,0x01,0xf6,0xa8,0xba,0xda,0x5c,0xb6,0xe7,0xcc,0xda,0x51,0x25,0x42,0x9a,0xf0,0xf9,0xab,0x8d,0x1b, - 0x11,0xa9,0x56,0x86,0xe4,0x8b,0xef,0xee,0xcf,0x11,0xd7,0xcf,0x48,0xb5,0x54,0xe0,0xee,0x1a,0xf7,0x48, - 0x28,0xcf,0x1b,0xb6,0x15,0x4c,0xc2,0x6d,0xee,0x5f,0x57,0xf7,0x0f,0xef,0xff,0xeb,0xde,0x99,0x0a,0x7e, - 0x95,0xc7,0x20,0xea,0x64,0x7e,0xed,0x32,0xbf,0xf6,0x2f,0xcd,0x9c,0x69,0x58,0x80,0x6f,0x9c,0x17,0x4b, - 0xfe,0x99,0x9b,0x65,0x77,0x79,0xaa,0xed,0x9b,0x68,0x27,0xb2,0xaa,0x82,0xb2,0x97,0xb0,0x71,0x0c,0x6f, - 0xd9,0x33,0xff,0x26,0x47,0xaf,0x9f,0xe1,0xbb,0x32,0x79,0x57,0xfe,0x49,0x3c,0x4b,0x44,0x8d,0xd5,0x3a, - 0xa4,0x24,0x1b,0xdd,0x7d,0x90,0xee,0x9c,0x43,0x81,0x1b,0xfc,0x5a,0x04,0xf7,0xbe,0xb9,0x1b,0xdf,0x7d, - 0x40,0xa5,0x08,0x6b,0xe8,0x77,0xf5,0xae,0x74,0xe5,0x9d,0x8f,0xcb,0xde,0xff,0x39,0x3a,0x1c,0x06,0xd1, - 0x37,0x87,0x6c,0xc4,0xb7,0xb4,0xf7,0x3a,0xce,0xaa,0x2c,0xfb,0x23,0x0b,0x11,0x92,0xf8,0xdc,0x26,0xba, - 0x40,0xdb,0xe6,0x6a,0x6c,0x75,0x51,0x24,0x2b,0x91,0xa9,0x28,0x4b,0x1e,0x06,0x2c,0x0c,0x58,0x70,0x0e, - 0x1d,0xd2,0x8a,0x7a,0xa5,0xb8,0x84,0x53,0xb7,0x2a,0xa8,0x37,0xd5,0x59,0x4f,0xcd,0xe7,0x69,0xed,0x5d, - 0x05,0xa9,0xae,0x8b,0xe4,0xde,0x41,0xf8,0xeb,0x65,0x44,0x6b,0x31,0x2e,0x92,0x69,0x6f,0x84,0x10,0xbb, - 0x6e,0xd7,0x85,0xea,0xdd,0xae,0xcd,0x08,0x66,0x08,0x1f,0x96,0x4b,0xd8,0x25,0xd7,0xc4,0x23,0x21,0x54, - 0x29,0x0c,0x4a,0x4f,0x6f,0xad,0x52,0x87,0x84,0x39,0x8c,0xda,0x1f,0xee,0x3b,0xfd,0x21,0x7d,0x7e,0x49, - 0xbd,0xfb,0xf5,0x51,0x78,0xfc,0xf0,0xe0,0xdf,0x27,0xe8,0xe1,0xd5,0x9f,0xf6,0xf0,0xb2,0x50,0xc1,0xc1, - 0x9d,0xa3,0x00,0xd5,0xbe,0x28,0x2f,0x4d,0xb5,0x54,0xd7,0xa7,0xa2,0xc5,0x90,0x39,0xdb,0x84,0xdd,0xa3, - 0x8d,0xba,0xd3,0xd6,0x03,0xd9,0xd0,0x28,0xea,0x31,0xb1,0xda,0xa0,0xa4,0x0f,0x38,0x18,0x79,0x75,0x60, - 0x2e,0x18,0x0c,0xd4,0xc3,0x22,0x39,0x0e,0xbc,0x35,0x71,0x8c,0x5b,0x60,0xae,0x01,0x0c,0x4e,0xd4,0x3b, - 0x94,0x12,0xeb,0xc6,0xc7,0x0c,0x63,0x94,0x29,0xc0,0x46,0x55,0xe8,0x0c,0x36,0x99,0x86,0x7c,0x5d,0x4c, - 0xa7,0x6d,0xfa,0x07,0x1d,0xd3,0xd1,0xde,0x3f,0x6b,0x32,0x9e,0x48,0xc8,0x5e,0xb4,0x29,0x4f,0x9c,0xe7, - 0xee,0x2d,0x46,0xba,0xff,0x26,0x57,0xeb,0x88,0x2f,0x37,0xc4,0x5b,0xef,0x8b,0xe4,0x46,0x88,0x88,0x97, - 0xb8,0x89,0x9e,0x40,0x8d,0x0a,0x9e,0xe5,0xc4,0x71,0xf6,0xdd,0x3a,0x5a,0xe7,0x73,0xd8,0x50,0x20,0x62, - 0x53,0x55,0x4e,0x57,0x3c,0x49,0xef,0xf3,0x25,0x12,0xcc,0x15,0xb8,0x9c,0x99,0x55,0x90,0xe9,0xc0,0x7a, - 0x09,0xaf,0xdc,0xe6,0x77,0x72,0x37,0x2a,0xfb,0x46,0x28,0x90,0xf4,0xad,0x84,0xfc,0xac,0xa0,0xc1,0x4c, - 0xf5,0xae,0x23,0x3a,0xe4,0x44,0x99,0x0b,0x11,0x7b,0x3b,0xd2,0x8a,0x09,0x1f,0x7f,0x2a,0xbc,0x04,0x38, - 0x4a,0x49,0xca,0x87,0xe2,0x53,0x51,0x5e,0x16,0xba,0x52,0xa4,0x75,0x42,0xcc,0xc7,0x67,0xaa,0x2f,0x82, - 0x7c,0x7c,0xa7,0x50,0xde,0xc5,0x84,0xf8,0x70,0x3c,0xcf,0x67,0xd9,0xe4,0x7a,0x32,0xcf,0x70,0x17,0x73, - 0x1d,0xbf,0x2b,0x36,0xea,0x35,0x41,0xe4,0xf1,0x7f,0x7e,0xbd,0x1c,0xdc,0x39,0xb9,0xa7,0x7e,0x2b,0x10, - 0xa9,0x9f,0xf7,0xd6,0x78,0x4c,0x64,0xd8,0xcd,0x46,0xbd,0xa0,0x24,0x47,0xb0,0xda,0x6b,0xed,0xc4,0x6f, - 0x46,0x3d,0xed,0xcf,0xfd,0xe9,0xe7,0xa7,0xc5,0x45,0x5e,0x95,0x85,0xbe,0x23,0x7c,0xb7,0x95,0x00,0x11, - 0x1e,0xf7,0x54,0xbd,0x29,0x92,0xa7,0xc5,0xde,0x5e,0x7f,0x6e,0x1b,0xe0,0xd5,0xf3,0x22,0x79,0x41,0x65, - 0xb5,0xc3,0x4e,0x91,0x5e,0xe4,0x67,0xe0,0x12,0x06,0x2b,0x9a,0xb0,0x87,0x67,0x7c,0x13,0x53,0xab,0xfc, - 0x93,0x22,0x79,0x4e,0xe5,0xef,0x2d,0xea,0x3c,0x5b,0x13,0xee,0x99,0x52,0x11,0x6d,0x71,0xf5,0xbc,0x88, - 0xd4,0x33,0xc9,0x7e,0xee,0xf9,0x0b,0xa2,0xe4,0xce,0xd7,0x83,0x43,0x60,0x37,0xf5,0x6a,0x3b,0x3f,0x9b, - 0x9e,0x65,0xf7,0x38,0xf3,0xe5,0x76,0x26,0xc1,0x41,0x45,0xe7,0x1c,0xb2,0xe9,0x34,0x33,0x6f,0x74,0xa0, - 0xbd,0x29,0xd4,0x5b,0xdd,0x95,0x7c,0x79,0x4e,0x7b,0x6b,0x9d,0x2f,0xd3,0x29,0xfd,0x29,0xe9,0x4f,0x59, - 0xbb,0x2e,0xc1,0x65,0xbc,0xac,0xf5,0x27,0x3f,0x15,0x49,0xc8,0xdf,0x4c,0xce,0x2b,0x22,0x51,0x7e,0xbd, - 0xf7,0xeb,0x74,0xdf,0xeb,0xfd,0xcd,0x66,0xc0,0xb7,0xef,0x46,0xea,0x11,0x94,0xd1,0xa0,0xaa,0x5e,0x14, - 0x1c,0xa2,0x12,0x58,0xf9,0x23,0xdb,0x35,0xf4,0x5f,0x55,0xfc,0x91,0xf0,0x89,0x8e,0x7d,0x10,0xa8,0x1b, - 0x5c,0x75,0xec,0x51,0xc0,0xa8,0xec,0x70,0x03,0x3c,0x25,0xb3,0xbc,0x1d,0x50,0x0f,0x3d,0x38,0xb0,0xdf, - 0x33,0xd4,0x7f,0x2c,0x22,0xcf,0xa9,0x1b,0xed,0x7f,0x28,0xd4,0x77,0x85,0xfa,0xc3,0x43,0x41,0x1d,0x5a, - 0x80,0xc6,0xf8,0x01,0x86,0x31,0x1f,0xa8,0x3d,0x2c,0x6a,0x1f,0x0c,0x9d,0xcd,0xcb,0xd3,0x74,0x0e,0x9a, - 0x94,0x11,0x15,0xe6,0x45,0x92,0x80,0xfb,0xc1,0x0e,0x0e,0xb2,0xe2,0x62,0xf0,0xf1,0xc3,0xd3,0xf1,0xd3, - 0x57,0x1f,0x23,0xf5,0x81,0x60,0xf9,0xf7,0x16,0x88,0x8c,0xc7,0xc8,0x7c,0xf2,0xf4,0xe3,0xfb,0xd7,0xaf, - 0x5f,0xbc,0x1b,0x7f,0xfb,0xe2,0xf5,0xa3,0x87,0x2f,0xc6,0xdf,0xbd,0x7e,0xfd,0xc3,0x78,0xac,0x7e,0xe8, - 0x07,0xdc,0x77,0xd7,0x8b,0xd3,0x92,0x1a,0xbd,0x0a,0xe5,0x29,0xea,0xef,0x9b,0xbe,0xb2,0x18,0xe5,0x3a, - 0xb7,0x17,0x47,0xc3,0xef,0x6e,0xa9,0x39,0xe3,0xe2,0xf4,0x83,0x1b,0x1a,0x5a,0xb3,0xde,0x8a,0x75,0x21, - 0x57,0xf9,0x65,0x4d,0x5f,0xe4,0x55,0x1b,0x2d,0xbf,0x7d,0xfc,0xf5,0x60,0xfa,0x5d,0x8e,0x81,0xa2,0xab, - 0x82,0x12,0x53,0xf9,0xdf,0xd0,0xb2,0xb6,0xbe,0xf1,0x0a,0x62,0xfd,0x5b,0x65,0x09,0x59,0xa4,0x95,0xbf, - 0x90,0x9f,0xed,0xa0,0xca,0x36,0xda,0x84,0xe0,0xfb,0x22,0x39,0x53,0xdf,0x82,0x21,0xf8,0xb9,0xd8,0xfa, - 0x3c,0x9f,0x26,0xdf,0x12,0xdd,0xa6,0xaf,0x4a,0x5c,0x9d,0x42,0x3d,0xbf,0x19,0xfe,0x5c,0xb4,0xfb,0xf8, - 0x6e,0x75,0xda,0xd3,0x4d,0x2a,0xad,0x83,0xf5,0x51,0x73,0xad,0x4f,0xc4,0xd1,0xb0,0xfb,0x95,0xbe,0x4d, - 0x14,0xdf,0xa9,0xad,0x4f,0xe4,0xa2,0x6c,0xbf,0x7f,0xde,0x3d,0xda,0xf6,0x11,0x9d,0x79,0x92,0x2d,0x45, - 0xd0,0xde,0xa9,0xa1,0x28,0x1b,0x22,0xac,0xfb,0x2f,0xcc,0x73,0x1d,0xb6,0x92,0x56,0xb6,0x77,0xca,0xba, - 0xf6,0x4e,0x7c,0x19,0xfc,0xca,0x5e,0x9f,0x67,0x1b,0x66,0xb3,0x78,0x9e,0xce,0x7f,0x17,0x08,0xa7,0xfc, - 0x4b,0xf7,0xc8,0x77,0xca,0x30,0x3d,0x3d,0x70,0x95,0xd1,0x97,0x5c,0xf2,0xed,0x4f,0xdd,0x3b,0x2e,0xf5, - 0xed,0x95,0x7c,0x87,0x94,0xbe,0xef,0x32,0x9b,0x2f,0xcc,0x65,0x97,0x45,0x6d,0xae,0xee,0x90,0xaf,0xf4, - 0x65,0x53,0xa5,0xbc,0xba,0xdb,0xa7,0xfc,0x42,0xee,0x16,0xaa,0x76,0xaa,0xb9,0x17,0xd2,0x4f,0xe5,0x1b, - 0x4c,0x61,0xce,0x0b,0x2a,0x4f,0x37,0xd1,0x36,0x6b,0x35,0x17,0x5b,0x6e,0x19,0x10,0xb7,0xea,0xd1,0x57, - 0x74,0xfa,0x49,0x55,0x0a,0xf7,0x08,0x7d,0x37,0xa7,0xbd,0x36,0xd5,0x26,0x38,0xbf,0x2d,0x56,0xa7,0x48, - 0xa2,0x09,0x5b,0xee,0x8a,0x3d,0x9e,0x53,0xa3,0x53,0x2f,0x81,0x6f,0x5a,0x35,0xaf,0xad,0x18,0xe0,0xb5, - 0x97,0xc6,0x17,0xce,0xf9,0xbd,0xd9,0x0e,0x22,0x0e,0x93,0x21,0xf5,0x23,0x21,0x66,0x5e,0x8a,0x18,0xd1, - 0xf1,0x66,0xf9,0xd9,0x8a,0x6f,0x29,0x8f,0x81,0x74,0x87,0x3f,0x16,0xb2,0x4c,0x7c,0x43,0xfd,0x36,0xe6, - 0xec,0x9f,0x96,0x4d,0xef,0x8d,0xf4,0x44,0xf9,0x84,0xbf,0x78,0x50,0x4a,0x0d,0xcb,0xae,0xcc,0x3a,0x37, - 0x93,0x18,0x6c,0xcc,0xf7,0x58,0x70,0x7c,0x13,0x61,0xb3,0xe4,0xd6,0x18,0x67,0x1a,0xc7,0xab,0x8e,0x98, - 0x37,0xde,0xa4,0xd1,0x50,0x37,0xaa,0xa9,0x92,0xce,0x9d,0x3a,0xaa,0xa8,0x3a,0xa8,0xa1,0xa9,0xa2,0xe1, - 0x71,0x80,0x3d,0x1b,0x20,0xe4,0xf5,0xd2,0xb3,0xc3,0xd0,0xe1,0xd3,0x90,0xc2,0xe1,0xc0,0xf0,0x50,0xc2, - 0x71,0x2c,0xa8,0x60,0xba,0x5f,0x67,0x30,0xcf,0xe8,0x31,0xcb,0x93,0x5e,0x36,0x15,0xcc,0x03,0x2e,0xc3, - 0xa2,0x52,0x59,0x7f,0x00,0xed,0x63,0xdc,0x1f,0x66,0x43,0x05,0x59,0x99,0xc4,0xc1,0xc1,0x30,0xe2,0xfb, - 0x6d,0x6d,0x96,0xb5,0xf8,0x46,0x24,0x79,0xed,0x44,0x8a,0x19,0x87,0x8f,0x86,0xbe,0x9b,0x5b,0x42,0x4b, - 0x0c,0x75,0x60,0xcb,0x4c,0x02,0x5b,0xca,0xb0,0x62,0x7e,0x34,0x83,0x89,0x11,0xcf,0xdd,0xc5,0x99,0x34, - 0x43,0x43,0xb2,0x46,0x04,0xf7,0x9d,0xf8,0x08,0xf2,0x98,0xf2,0x94,0xcf,0x38,0x73,0x39,0xb6,0x4a,0x81, - 0x97,0x34,0x66,0x81,0x9d,0x14,0x38,0x0f,0xf1,0x5d,0xb1,0x53,0x4b,0x30,0xe2,0x71,0x3d,0x4c,0x0b,0xd2, - 0x34,0x10,0x49,0x59,0x25,0x37,0xf5,0x79,0xb9,0x9a,0x4f,0x69,0xaf,0xd2,0x0c,0x36,0x80,0x2d,0xd5,0xb1, - 0xcc,0xe5,0xe1,0x48,0xf0,0x12,0x83,0x2b,0xb2,0x25,0xaf,0xf9,0xcf,0x1a,0x3f,0x5c,0x2c,0xd8,0x8d,0x97, - 0xb0,0xd5,0xa5,0xbe,0x3c,0x99,0x86,0x1e,0xe8,0x0b,0x98,0xb7,0xe2,0x8e,0x84,0xe1,0x6f,0x6d,0x89,0x90, - 0x84,0x34,0xb4,0x94,0x64,0xd2,0x6c,0xe2,0x6e,0xb6,0x77,0x93,0x72,0xaf,0x1a,0x48,0xbb,0xd3,0x62,0x5d, - 0x2e,0x45,0xc5,0x83,0x98,0xcf,0x44,0x9b,0x40,0x24,0x5a,0xa9,0xaa,0xd2,0x17,0xdd,0xb6,0xe6,0x2e,0x43, - 0x14,0x4d,0xa4,0x5e,0xa6,0xf3,0x4f,0x21,0x47,0x62,0xaf,0x3c,0x5c,0x8d,0xd4,0x5b,0x4c,0x94,0x3b,0x17, - 0xcb,0x8b,0x8c,0xa1,0xf1,0x65,0x0c,0xef,0xd0,0x73,0x44,0x51,0x27,0x64,0x4d,0x3f,0x27,0x70,0x39,0xf7, - 0x2b,0xf7,0x3b,0x72,0xdb,0x65,0x55,0x7d,0xb8,0xff,0xa1,0xdc,0x50,0x25,0x37,0x02,0xd3,0x51,0xfb,0xde, - 0xc8,0x43,0x3b,0xac,0xcc,0x30,0x95,0xb0,0x27,0xb7,0x30,0x7d,0x3b,0xc5,0xe8,0x85,0x4e,0x89,0x1b,0xdf, - 0xab,0xd4,0x52,0x20,0xcd,0x28,0x8b,0x5f,0x88,0x14,0x87,0xb8,0xb8,0xde,0x6d,0x95,0x62,0x43,0x25,0x4f, - 0x89,0x00,0x7c,0x78,0x7b,0x81,0xfd,0xa0,0x0e,0x4e,0x92,0x37,0x54,0x88,0x7a,0xc4,0x54,0xe8,0xd6,0xa1, - 0x24,0x4a,0x62,0xc2,0x2b,0x3f,0xb1,0xf9,0xb3,0xbd,0x6b,0xae,0x31,0x49,0x8d,0x4d,0xb2,0x76,0x6b,0x3b, - 0x6d,0xa4,0x91,0xad,0xd7,0x3d,0xd1,0xe6,0x1b,0x6d,0x9e,0x48,0xe4,0xed,0x05,0x6c,0xe5,0xa2,0xb6,0x37, - 0x46,0x63,0x24,0x9f,0xf0,0xc5,0x50,0x75,0x02,0x98,0x19,0xa6,0xc4,0x80,0x74,0x2f,0xc4,0x63,0xe5,0xe1, - 0x71,0x7a,0x12,0xf1,0x65,0x43,0x49,0x3a,0x4a,0x8d,0x4b,0x79,0x1d,0x75,0x2e,0x89,0xab,0xa3,0x11,0x71, - 0x72,0xf5,0x89,0xdd,0xb1,0x1b,0x8c,0x5b,0xa2,0x87,0xd2,0xc3,0x22,0x6b,0xce,0xcb,0x29,0x3f,0xca,0x15, - 0xd0,0x78,0x9a,0xe8,0x58,0x02,0xfd,0x13,0xb3,0x3d,0x9c,0xbe,0x28,0xfb,0x86,0x60,0xe6,0x61,0xaa,0x06, - 0xa6,0x8f,0x39,0x07,0x6a,0x30,0xed,0x5f,0x10,0x4b,0x93,0xbc,0x10,0x89,0x6c,0xa5,0x26,0x95,0x5a,0x55, - 0x1d,0x0d,0x6d,0x97,0xe6,0x06,0x04,0x10,0xce,0x9e,0xe3,0x16,0x28,0x35,0xe3,0x10,0x6c,0x1c,0x88,0x8d, - 0x6d,0x61,0x7a,0x68,0x56,0xa2,0xf2,0x6c,0x34,0x6e,0x10,0xaf,0xfe,0x7b,0x14,0x4d,0x5a,0x64,0xa1,0x9f, - 0x17,0x7e,0x44,0x38,0x6e,0x63,0xa0,0xe7,0x2a,0xb6,0x4e,0x7b,0x2f,0x89,0x7c,0x4f,0xcf,0xb2,0xc7,0xe7, - 0x69,0x51,0x64,0xf3,0xf5,0x7a,0xf7,0x2a,0x6c,0x27,0x81,0xee,0x36,0x97,0x19,0xb5,0x73,0x08,0xad,0xd5, - 0x4d,0xb5,0xc2,0x19,0xcc,0xf7,0x1b,0xb5,0x73,0xad,0x9c,0x29,0xec,0xe9,0x9f,0x71,0xaf,0xfb,0x08,0x57, - 0x3a,0x67,0x54,0xb2,0xac,0x18,0xf5,0xb5,0x2b,0x52,0xe7,0x55,0xb2,0xa4,0x69,0xa6,0xc3,0xe8,0xfe,0x50, - 0x3f,0x1c,0x0d,0xc0,0xa1,0x72,0xa9,0xe4,0xa3,0x6a,0x57,0x7f,0x8e,0x22,0x75,0xa3,0x2b,0x81,0xb0,0x67, - 0x73,0xcb,0xa4,0x12,0xce,0x5e,0xe4,0x35,0xcf,0xa7,0x7e,0xd4,0x96,0xbb,0x17,0x55,0xa2,0x13,0xcc,0x0d, - 0xb9,0x44,0x4a,0xd7,0xad,0x56,0x2e,0x2a,0xb9,0x6e,0x98,0xf8,0x9d,0xb7,0x45,0xcb,0x65,0xf0,0xcc,0x44, - 0x1b,0xa6,0x0f,0x26,0x15,0x03,0xc5,0xa2,0x52,0x67,0x32,0x34,0x62,0xc6,0xae,0xab,0x8e,0xa0,0x49,0x8b, - 0x53,0xf7,0x02,0x1b,0xc7,0x99,0x85,0x57,0x84,0xa1,0x82,0xff,0xc7,0xd6,0xe7,0x19,0xc0,0xc5,0xca,0xae, - 0xe2,0x2c,0xf2,0x0a,0x55,0x88,0x1b,0x2b,0x85,0x8a,0xdb,0x0a,0x19,0x1b,0x3a,0xd6,0xc1,0x67,0x49,0xd5, - 0x2a,0xa7,0x60,0x11,0x01,0xc1,0xe6,0x56,0x3c,0xbe,0x06,0xec,0xe7,0xb8,0x92,0x6b,0x9b,0x4e,0x19,0x52, - 0x2f,0xf9,0xef,0x15,0x87,0x6a,0xfa,0xc4,0x50,0x7b,0x87,0xff,0x3e,0xc6,0xd9,0xf1,0x10,0x7f,0xde,0x55, - 0x3d,0x74,0xb1,0x39,0xe7,0x16,0x08,0x9e,0xce,0x5e,0x18,0x63,0xc6,0x56,0x44,0x03,0xc9,0x39,0xe6,0x12, - 0x8c,0x2d,0x30,0x27,0x57,0xa3,0x50,0x9f,0x89,0x74,0x28,0xee,0xee,0x56,0xfc,0x20,0x87,0x0d,0x64,0x0d, - 0x9c,0x84,0x07,0x7d,0x3f,0x7c,0xfa,0xc7,0x35,0x27,0xe1,0x41,0x33,0x34,0x44,0xf9,0x71,0x12,0x1e,0xf4, - 0x81,0xc4,0x95,0xb9,0x3a,0xdc,0xa7,0xde,0x17,0x9a,0xca,0x9c,0x9c,0x1a,0x2a,0x9d,0xd8,0xa4,0xfd,0xfd, - 0x87,0xba,0x21,0x89,0xa4,0x66,0xa9,0xd7,0x69,0x4e,0xe7,0xbe,0xab,0xc7,0x1e,0xe3,0x60,0xa5,0x34,0x31, - 0x9f,0x5d,0x3e,0xf1,0xdf,0x29,0xf3,0x39,0x21,0x2a,0x0d,0x10,0x5e,0x91,0x6e,0xaa,0xd3,0x20,0x40,0xdc, - 0xde,0x13,0x9f,0xa0,0x91,0x3b,0xe3,0x89,0x06,0x69,0x30,0x96,0x38,0xf4,0x5f,0x3b,0x3e,0x3b,0xbb,0xaf, - 0x0b,0x11,0x5b,0x18,0x30,0x87,0x3b,0x98,0x0e,0x73,0x32,0x08,0xdc,0xad,0x8f,0x3d,0x07,0x66,0xcf,0x21, - 0xdc,0x42,0x9f,0xc3,0x2c,0xd1,0x67,0xb1,0xbb,0x46,0x6e,0xc3,0x5e,0x52,0x5e,0x7f,0x70,0x51,0x5e,0x5f, - 0xef,0x22,0xb8,0xc5,0x2b,0x8f,0x12,0xb2,0x53,0x69,0x6c,0xcb,0xcc,0x67,0x08,0x3e,0xf3,0xce,0x3f,0xe9, - 0x3b,0xf4,0x39,0xd3,0xd5,0x43,0xa9,0x40,0x79,0xec,0xe3,0xbf,0x75,0x3c,0x1f,0x9b,0x14,0x79,0x8c,0x9d, - 0xdc,0xf0,0x8c,0x5b,0x01,0x35,0x90,0x72,0xe0,0xbc,0x26,0xf1,0xfa,0xaa,0xef,0x6d,0x53,0x56,0xbc,0x62, - 0x0c,0xbd,0x0d,0x14,0x45,0xcd,0x79,0x55,0x5e,0xd2,0x21,0xf2,0x96,0x95,0xf5,0x77,0xe5,0xb3,0x1d,0x9a, - 0xbe,0x1d,0x0d,0xd7,0x3b,0x08,0x42,0xdb,0x5e,0x52,0x98,0xa2,0x44,0x1b,0xc2,0x49,0x54,0xf9,0xf5,0x8d, - 0x85,0xcd,0xbd,0xbd,0xef,0xc2,0x56,0x07,0xd1,0xfb,0x72,0x19,0xea,0x29,0x82,0x14,0xa0,0x58,0x2d,0x01, - 0x4f,0x2e,0x1e,0x1e,0x1d,0x25,0xad,0x79,0x11,0x2e,0xb9,0xc7,0xf9,0x26,0x23,0x48,0x1e,0xb6,0x01,0x0e, - 0x72,0x8b,0x10,0xf6,0x70,0x61,0x27,0x5d,0xe2,0x7e,0xb5,0x20,0xd8,0xb0,0xfb,0x3e,0x18,0xdb,0xef,0x8d, - 0xa4,0x40,0x36,0x6f,0xd4,0xe9,0x92,0xd7,0xef,0xcf,0xb0,0xe8,0xd8,0x36,0xf6,0x5e,0x7b,0xf0,0x06,0x86, - 0xbf,0x30,0x99,0x60,0x33,0xfa,0xfa,0x4f,0xe3,0xc2,0x6d,0x07,0x4e,0xf2,0xa0,0x45,0x04,0xda,0xed,0xc2, - 0x75,0x77,0xe8,0xef,0xc0,0x76,0x4d,0x5b,0x3b,0xb1,0x93,0x20,0x12,0x98,0x30,0x52,0xae,0xc2,0xda,0xdb, - 0xed,0xfe,0x44,0xb5,0xf7,0x7d,0xd1,0x9e,0x44,0x13,0x63,0xb2,0x33,0x43,0x22,0x75,0xd8,0x92,0xd0,0xf0, - 0x46,0xf0,0x10,0xcd,0xae,0xde,0x0f,0xc0,0x54,0x92,0x5e,0xad,0xa8,0x70,0x7c,0xcb,0x62,0xeb,0xc0,0xd1, - 0x49,0x72,0x85,0x3b,0x9c,0x19,0x6e,0xf9,0x09,0xe8,0xeb,0x4e,0xcb,0xee,0xef,0xb4,0xb2,0xa6,0x88,0xc3, - 0xe2,0x9b,0xc7,0xd5,0xde,0xde,0x69,0xc5,0x37,0x97,0x4d,0xbf,0xe1,0x9a,0xa2,0x82,0xe3,0xf8,0x9b,0x70, - 0xd1,0xc5,0xfe,0x91,0x3a,0x84,0x1c,0x87,0x0f,0xbb,0x53,0x73,0xa9,0x64,0x34,0xfc,0x84,0x9d,0x8e,0xd3, - 0xe1,0x50,0x7d,0x08,0x27,0x19,0x3b,0xc8,0x69,0x79,0x4d,0x6b,0xbc,0xd4,0x6d,0x7f,0xb0,0x30,0x44,0x77, - 0xd8,0xd5,0x44,0x29,0x71,0x5b,0x9f,0x8d,0x8c,0x76,0xb5,0x2c,0x8d,0x11,0xc5,0x7a,0x9d,0xf3,0xd5,0x71, - 0x76,0xeb,0xb4,0xa0,0x45,0x5c,0x36,0x4d,0xad,0x2d,0x1e,0x4b,0xb6,0x6c,0xa5,0x37,0xdd,0xe4,0x54,0xf6, - 0xb7,0xde,0xfe,0x8a,0xe9,0x72,0x2b,0x46,0x7d,0x1b,0x66,0x86,0x11,0x53,0x77,0x8d,0x95,0xc6,0x5f,0xda, - 0xd9,0x72,0x57,0xf9,0xad,0x2d,0x6c,0x3a,0xd3,0x91,0xa1,0x8b,0x7d,0x00,0xe0,0x21,0x45,0x9e,0x08,0xff, - 0xd4,0x81,0x28,0xa3,0x55,0xcb,0xb6,0x18,0xed,0xcf,0x76,0x98,0xbf,0xb5,0xf4,0xe7,0x61,0x77,0xa9,0x1a, - 0x82,0xfb,0x69,0x79,0xf9,0xd9,0xf5,0xd2,0x83,0x43,0xa0,0x9e,0x47,0x19,0xd1,0x7d,0x4f,0x8c,0xfe,0x68, - 0xbd,0xb6,0x23,0x77,0xc7,0xbc,0x30,0xb0,0xc3,0xbf,0xd5,0xb9,0xce,0xde,0x1e,0xb6,0x0e,0xe3,0xa3,0x8d, - 0xf0,0x6d,0xef,0x89,0x38,0xc9,0x8a,0xd5,0x22,0x33,0xf2,0x1c,0xd5,0x91,0xef,0x40,0x69,0x13,0x9f,0xa9, - 0x1a,0x7f,0x37,0xea,0x35,0x15,0xc7,0x0e,0x03,0x73,0x3e,0xbc,0x93,0x85,0x8f,0x3d,0x89,0xab,0x70,0xfa, - 0xbf,0x55,0xea,0x45,0xa5,0x9e,0x56,0xea,0x4d,0xa5,0x9e,0x53,0x69,0xb8,0xf0,0xfb,0x3c,0xb4,0xa6,0x70, + 0x32,0xdd,0x9a,0xcc,0x7b,0xaa,0x3b,0xb7,0x63,0xab,0x71,0x25,0xc7,0x83,0xcc,0xd6,0xb8,0xd2,0xa7,0x85, + 0x3e,0x35,0xf8,0x2a,0x10,0x23,0x5f,0xb1,0xd7,0x04,0x13,0x80,0x9c,0x12,0x81,0x19,0x68,0x63,0x80,0xc6, + 0xc4,0xf5,0x73,0xe4,0x43,0xf6,0x69,0xc9,0x67,0x77,0x2a,0x5e,0x07,0xd1,0x98,0xd0,0x26,0xf1,0x91,0x67, + 0xf3,0x72,0xf2,0x51,0xe3,0x06,0xdb,0x31,0x5a,0x44,0x2f,0x73,0xd3,0xa1,0x89,0x2d,0x35,0xdb,0xbd,0xc2, + 0x25,0xed,0x86,0x08,0x49,0x08,0x41,0xd1,0x89,0xd0,0x67,0xf2,0x9b,0x6d,0x5d,0x22,0xad,0x6f,0x1d,0xd1, + 0x48,0x3a,0xf1,0xe2,0x30,0xc4,0xc7,0x01,0xc7,0x06,0x1e,0xc9,0x35,0x20,0xbd,0xd7,0x4a,0xdd,0x94,0x26, + 0x0a,0xbd,0x16,0xf3,0xcd,0x5b,0xf7,0x54,0x1f,0x97,0x22,0x20,0x1b,0x81,0xf7,0xa5,0x32,0xbb,0x73,0xc4, + 0x93,0xa6,0xfd,0x71,0x95,0x56,0xb8,0x5a,0x23,0xe5,0x50,0x96,0xb4,0x4c,0x35,0x51,0xd6,0xc2,0xdb,0x11, + 0x7d,0x2d,0x1f,0x11,0x91,0x6d,0xd9,0x3c,0x4e,0xd4,0x2f,0x70,0x6c,0x19,0x84,0xa5,0x60,0x54,0x82,0x7f, + 0x21,0x73,0x70,0x1c,0x59,0xf2,0xc8,0xf7,0xec,0xd9,0xa2,0x2f,0x74,0xb1,0x48,0xd0,0x48,0x39,0xa4,0xb3, + 0x63,0x7c,0x97,0xd9,0x47,0x6e,0x85,0x1e,0xd0,0x82,0xc9,0xb5,0xb4,0x29,0xb5,0xe4,0x98,0xcb,0x9e,0x4a, + 0x1d,0x39,0x2c,0x7b,0x71,0x43,0x38,0xde,0x40,0xee,0x64,0x5c,0xb7,0xb9,0x82,0x13,0x1b,0x15,0x49,0xa2, + 0x7a,0x8c,0x0c,0x59,0x08,0xe8,0x8f,0x94,0x96,0xec,0x31,0xc9,0x09,0x67,0x17,0x60,0x41,0xf1,0x54,0x09, + 0xc4,0xb5,0x7e,0xa6,0x33,0xe9,0x89,0x33,0xe9,0xd7,0xcb,0xe4,0xdd,0xea,0x4a,0xf0,0x6b,0x0c,0x34,0x21, + 0x25,0x96,0xec,0x5d,0x88,0x4c,0x7a,0xf2,0xd2,0x3d,0x06,0x18,0xb9,0x77,0x21,0x2c,0x65,0xaf,0x22,0x20, + 0x60,0x5a,0x8c,0xbb,0x4e,0xd2,0x94,0x12,0x92,0x4d,0x1f,0x88,0xf6,0xec,0xdb,0xac,0x78,0xe6,0xdd,0xfd, + 0x0d,0x79,0xd0,0x20,0xf1,0xb3,0x8e,0xd3,0x93,0x30,0xd3,0xe8,0x44,0x9f,0xa0,0xdc,0x3a,0x3f,0x13,0x97, + 0x35,0x98,0x17,0x26,0x47,0xcf,0x9b,0xd2,0xfe,0x9e,0xba,0xa0,0x31,0xfa,0xb7,0x65,0x25,0x5e,0xaf,0x2d, + 0x2b,0x8e,0x82,0x52,0x18,0x7c,0x9d,0x4e,0x50,0xbb,0x87,0x06,0xd2,0xcc,0xe4,0xf8,0x3e,0x87,0x5e,0x79, + 0x3f,0x59,0x31,0xfe,0x6e,0x7d,0xe5,0x48,0x0c,0x21,0xf3,0x8c,0x94,0x4f,0x77,0x8f,0xef,0x69,0x09,0x06, + 0x7e,0x39,0xfb,0xa5,0x0b,0x7f,0x2a,0x85,0x21,0xfc,0xf3,0x53,0x99,0x88,0x0b,0xbc,0x84,0xf8,0x74,0x45, + 0xfc,0x4f,0x2b,0x98,0x4a,0x71,0x1b,0x4b,0xb3,0xd3,0x45,0x6e,0xee,0xde,0x02,0x4d,0x3c,0xb6,0x49,0xb9, + 0x71,0x98,0xb3,0xeb,0x4e,0x45,0xfb,0x1c,0x12,0x62,0x36,0x76,0xa5,0x2d,0x5e,0x6a,0xd2,0x11,0x76,0xdf, + 0x6d,0xd2,0xb1,0x6c,0x93,0x8e,0x2b,0xaf,0xc0,0xfd,0x4e,0x01,0x26,0x1d,0xcb,0xdb,0x48,0xc7,0xba,0x43, + 0x3a,0x4e,0x06,0xf3,0xc1,0xaa,0x45,0x3a,0xea,0xd0,0xb8,0x42,0x3b,0xd2,0x1e,0xba,0x11,0xc0,0xc7,0x54, + 0xce,0x8a,0xd8,0xfb,0x54,0x3b,0x40,0x14,0x6e,0x1d,0xa2,0x56,0x45,0x61,0x4b,0x36,0xcb,0x66,0x28,0x63, + 0xa2,0x70,0x67,0xfc,0x67,0x10,0x10,0x02,0x0e,0x6b,0x21,0x53,0x5b,0x17,0x38,0x03,0x19,0xbb,0xb7,0xb8, + 0xaf,0x48,0xac,0xc9,0x5b,0xf4,0x71,0x23,0x38,0xbf,0x45,0xdb,0x62,0x2f,0xe3,0xda,0x14,0x60,0xe7,0x36, + 0x27,0x4e,0x27,0x7b,0x04,0x78,0xd0,0xe1,0xc6,0x19,0x6c,0xf8,0x39,0x36,0x4e,0x89,0x83,0xcc,0x0f,0x28, + 0x4e,0x83,0x76,0x7e,0x88,0x36,0xcb,0x24,0x0d,0x82,0x36,0x82,0xb3,0xd1,0xcb,0x6d,0xa2,0xdd,0x1a,0x6d, + 0x2a,0x6b,0x2b,0x7a,0x45,0xe3,0x7b,0x6b,0xd8,0xd0,0x9d,0x07,0x1c,0x43,0xe7,0x50,0x02,0xf7,0xb1,0x95, + 0x9a,0x76,0x1d,0x2d,0x38,0x6c,0x4e,0x69,0xa2,0x03,0x6a,0x4e,0xaf,0xdd,0x46,0x6c,0xd8,0x30,0x4f,0xb0, + 0x41,0xac,0x83,0x0e,0xa0,0x8d,0x8e,0x75,0xd9,0xad,0x63,0x64,0x77,0x09,0x9e,0x5b,0x98,0xf8,0x56,0xa5, + 0xc2,0xc0,0xb6,0x67,0x1a,0xfe,0x99,0x84,0x65,0x1b,0x8e,0x5d,0x88,0x79,0x66,0x17,0x78,0x8b,0x89,0x73, + 0x4f,0xde,0x75,0x4f,0xdd,0xb9,0xa7,0x02,0x4d,0x89,0x67,0xc3,0xab,0x2a,0x5d,0xca,0xd5,0xf6,0x50,0x9c, + 0xd8,0x57,0x78,0xaa,0xe8,0x5c,0xab,0x54,0xf4,0x8a,0xd8,0x34,0x2e,0xe7,0xdd,0xd3,0x54,0x5b,0xe2,0xc4, + 0x8f,0x54,0x64,0xe6,0x58,0x62,0x77,0xfb,0x51,0xac,0xd2,0xa4,0xf4,0x26,0xbe,0xf4,0xfc,0x86,0x78,0x2b, + 0xb7,0x98,0x9f,0x54,0x6c,0xab,0x84,0xd7,0x31,0xef,0xc6,0x75,0xb4,0x5a,0xaf,0x9b,0x22,0x0a,0x53,0xd5, + 0x18,0xbb,0x9b,0xa2,0x13,0x75,0xbb,0x7d,0xc1,0xfc,0xd6,0xd5,0x38,0x36,0x90,0x63,0x65,0xbb,0x93,0x6b, + 0x38,0xa0,0xd7,0x09,0x2e,0x5c,0x42,0xe0,0x27,0x9f,0x36,0x81,0x6f,0x45,0x9b,0x56,0x29,0x17,0x59,0x1f, + 0xc6,0x9a,0x00,0x7d,0x6b,0xfa,0x26,0x02,0xa9,0x78,0x5f,0x93,0x89,0xec,0x12,0xf4,0x3f,0xae,0xb6,0xf1, + 0x6b,0x65,0x23,0xda,0xc3,0xc8,0xbb,0x6a,0x2d,0x2c,0xd9,0xba,0xf4,0xfa,0x2c,0x7b,0x6c,0xb9,0xa0,0x98, + 0x03,0xda,0x76,0x1d,0xa3,0x8c,0x21,0xa9,0x30,0x90,0x34,0xe6,0xb1,0x26,0x42,0xe3,0x2f,0x6c,0x12,0x54, + 0xb0,0x36,0x6c,0xde,0x18,0xbe,0xd6,0x0a,0x54,0xe0,0x16,0x4d,0x50,0x49,0xf8,0x65,0x76,0x49,0x8e,0x83, + 0xd3,0x4b,0x50,0xf6,0xf7,0xa1,0x29,0x28,0x20,0xed,0xe6,0xca,0x0b,0x6f,0xcf,0x12,0xf6,0x09,0xbb,0xa2, + 0x10,0xa9,0x21,0x8a,0x2c,0x33,0x47,0xe0,0x64,0x54,0x20,0x10,0x08,0x96,0xb7,0x9d,0x0c,0x93,0x5e,0x79, + 0x20,0x61,0x3e,0xc6,0xda,0x35,0x48,0x14,0x4f,0xa8,0x31,0xf1,0x3f,0xb5,0x5a,0x3f,0x96,0x3c,0x10,0x02, + 0xec,0x51,0x75,0xb5,0xb9,0x6c,0xcf,0x99,0xb5,0xa3,0x4a,0x84,0x34,0xe1,0xf3,0x57,0x1b,0x37,0x22,0x52, + 0xad,0x0c,0xc9,0x17,0xdf,0x1d,0xac,0x10,0xd7,0xcf,0x48,0xb5,0x54,0xe0,0xee,0x1a,0xf7,0x48,0x28,0xcf, + 0x1b,0xb6,0x15,0x4c,0xc2,0x6d,0xee,0x5f,0x57,0xf7,0x0f,0xee,0xff,0xeb,0xde,0xb9,0x0a,0x7e,0x95,0xc7, + 0x20,0xea,0x64,0x7e,0xed,0x32,0xbf,0xf6,0x2f,0xcd,0x9c,0x69,0x58,0x80,0x6f,0x9c,0x17,0x4b,0xfe,0x99, + 0x9b,0x65,0x77,0x79,0xaa,0xed,0x9b,0x68,0x27,0xb2,0xaa,0x82,0xb2,0x97,0xb0,0x71,0x0c,0x6f,0xd9,0x73, + 0xff,0x26,0x47,0xaf,0x9f,0xe1,0xbb,0x32,0x79,0x57,0xfe,0x49,0x3c,0x4b,0x44,0x8d,0xd5,0x3a,0xa4,0x24, + 0x1b,0xdf,0x7d,0x90,0xee,0x5c,0x40,0x81,0x1b,0xfc,0x5a,0x04,0xf7,0xbe,0xb9,0x1b,0xdf,0x7d,0x40,0xa5, + 0x08,0x6b,0xe8,0x77,0xf5,0xae,0x74,0xe5,0x9d,0x8f,0xcb,0xde,0xff,0x39,0x3c,0x18,0x05,0xd1,0x37,0x07, + 0x6c,0xc4,0xb7,0xb4,0xf7,0x3a,0xce,0xaa,0x2c,0xfb,0x23,0x0b,0x11,0x92,0xf8,0xc2,0x26,0xba,0x40,0xdb, + 0xe6,0x6a,0x6c,0x75,0x59,0x24,0x73,0x91,0xa9,0x28,0x4b,0x1e,0x06,0x2c,0x0c,0x58,0x70,0x0e,0x1d,0xd2, + 0x8a,0x7a,0xa5,0xb8,0x84,0x53,0xb7,0x2a,0xa8,0x37,0xd5,0x79,0x4f,0xcd,0x17,0x69,0xed,0x5d,0x05,0xa9, + 0xae,0x8b,0xe4,0xde,0x7e,0xf8,0xeb,0x55,0x44,0x6b,0x71,0x56,0x24,0xd3,0xde,0x08,0x21,0x76,0xdd,0xae, + 0x0b,0xd5,0xbb,0x5d,0x9b,0x31,0xcc,0x10,0xde,0x2f,0x97,0xb0,0x4b,0xae,0x89,0x47,0x42,0xa8,0x52,0x18, + 0x94,0x9e,0xde,0x5a,0xa5,0x0e,0x09,0x73,0x10,0xb5,0x3f,0x1c,0x38,0xfd,0x21,0x7d,0x7e,0x45,0xbd,0xfb, + 0xf5,0x51,0x78,0xfc,0x70,0xff,0xdf,0x27,0xe8,0xe1,0xd1,0x9f,0xf6,0xf0,0xaa,0x50,0xc1,0xfe,0x9d,0xc3, + 0x00,0xd5,0xbe,0x28,0xaf,0x4c,0xb5,0x54,0xd7,0xc7,0xa2,0xc5,0x90,0x39,0xdb,0x84,0xdd,0xc3,0x8d,0xfa, + 0xd4,0xd6,0x03,0xd9,0xd0,0x28,0xea,0x31,0xb1,0xda,0xa0,0xa4,0xf7,0x39,0x18,0x79,0xb5,0x6f,0x2e,0x18, + 0x0c,0xd4,0xc3,0x22,0x39,0x0e,0xbc,0x35,0x71,0x8c,0x5b,0x60,0xae,0x01,0x0c,0x4e,0xd4,0x3b,0x94,0x12, + 0xeb,0xc6,0xc7,0x0c,0x63,0x94,0x29,0xc0,0x46,0x55,0xe8,0x0c,0x36,0x99,0x86,0x7c,0x5d,0x4c,0xa7,0x6d, + 0xfa,0x7b,0x1d,0xd3,0xd1,0xde,0x3f,0x6b,0x32,0x9e,0x48,0xc8,0x5e,0xb4,0x29,0x4f,0x9c,0xe7,0xee,0x2d, + 0x46,0xba,0xff,0x26,0x57,0xeb,0x88,0x2f,0x37,0xc4,0x5b,0x77,0x8a,0xe4,0x46,0x88,0x88,0x97,0xb8,0x89, + 0x9e,0x40,0x8d,0x0a,0x9e,0xe7,0xc4,0x71,0xf6,0xdd,0x3a,0x5a,0xe7,0x73,0xd8,0x50,0x20,0x62,0x53,0x55, + 0x4e,0x57,0x3c,0x49,0x47,0xf9,0x12,0x09,0xe6,0x0a,0x5c,0xce,0xcc,0x2a,0xc8,0x74,0x60,0xbd,0x84,0x57, + 0x6e,0xf3,0x3b,0xb9,0x1b,0x95,0x7d,0x23,0x14,0x48,0xfa,0x56,0x42,0x7e,0x5e,0xd0,0x60,0xa6,0x7a,0xd7, + 0x11,0x1d,0x72,0xa2,0xcc,0x85,0x88,0xbd,0x1d,0x69,0xc5,0x84,0x8f,0x3f,0x16,0x5e,0x02,0x1c,0xa5,0x24, + 0xe5,0x7d,0xf1,0xb1,0x28,0xaf,0x0a,0x5d,0x29,0xd2,0x3a,0x21,0xe6,0xe3,0x73,0xd5,0x17,0x41,0x3e,0xfe, + 0x54,0x28,0xef,0x62,0x42,0x7c,0x78,0x3a,0xcf,0x67,0xd9,0xe4,0x7a,0x32,0xcf,0x70,0x17,0x73,0x1d,0xbf, + 0x2b,0x36,0xea,0x35,0x41,0xe4,0xf1,0x7f,0x7e,0xbd,0x1a,0xde,0x39,0xb9,0xa7,0x9e,0x16,0x88,0xd4,0xcf, + 0x7b,0xeb,0xf4,0x94,0xc8,0xb0,0x9b,0x8d,0x7a,0x43,0x49,0x8e,0x60,0xb5,0xd7,0xda,0x89,0xdf,0x8c,0xfa, + 0xad,0x3f,0xf7,0xa7,0x9f,0x9f,0x16,0x97,0x79,0x55,0x16,0xfa,0x8e,0xf0,0xdd,0x56,0x02,0x44,0x78,0xdc, + 0x53,0xf5,0xa4,0x48,0x7e,0x2b,0xf6,0xf6,0xfa,0x73,0xdb,0x00,0xaf,0x9e,0x17,0xc9,0x1b,0x2a,0xab,0x1d, + 0x76,0x8a,0xf4,0x32,0x3f,0x07,0x97,0x30,0x5c,0xd1,0x84,0x3d,0x3c,0xe7,0x9b,0x98,0x5a,0xe5,0x5f,0x14, + 0xc9,0x73,0x2a,0x7f,0x6f,0x51,0xe7,0xd9,0x9a,0x70,0xcf,0x94,0x8a,0x68,0x8b,0xab,0xe7,0x45,0xa4,0x9e, + 0x49,0xf6,0x73,0xcf,0x5f,0x10,0x25,0x77,0xbe,0x1e,0x1e,0x00,0xbb,0xa9,0x57,0xdb,0xf9,0xd9,0xf4,0x3c, + 0xbb,0xc7,0x99,0x2f,0xb7,0x33,0x09,0x0e,0x2a,0x3a,0xe7,0x90,0x4d,0xa7,0x99,0x79,0xa3,0x03,0xed,0x49, + 0xa1,0xde,0xea,0xae,0xe4,0xcb,0x0b,0xda,0x5b,0xeb,0x7c,0x99,0x4e,0xe9,0x4f,0x49,0x7f,0xca,0xda,0x75, + 0x09,0x2e,0xe3,0x65,0xad,0x3f,0xf9,0xa9,0x48,0x42,0xfe,0x66,0x72,0x51,0x11,0x89,0xf2,0xeb,0xbd,0x5f, + 0xa7,0x03,0xaf,0xf7,0x37,0x9b,0x21,0xdf,0xbe,0x1b,0xa9,0x47,0x50,0x46,0x83,0xaa,0x7a,0x53,0x70,0x88, + 0x4a,0x60,0xe5,0x0f,0x6c,0xd7,0xd0,0x7f,0x55,0xf1,0x07,0xc2,0x27,0x3a,0xf6,0x41,0xa0,0x6e,0x70,0xd5, + 0xb1,0x47,0x01,0xa3,0xb2,0x83,0x0d,0xf0,0x94,0xcc,0xf2,0x76,0x40,0x3d,0xf4,0x60,0xdf,0x7e,0xcf,0x50, + 0xff,0xa1,0x88,0x3c,0xa7,0x6e,0xb4,0xff,0xbe,0x50,0xdf,0x15,0xea,0x0f,0x0f,0x05,0x75,0x68,0x01,0x1a, + 0xe3,0x7b,0x18,0xc6,0xbc,0xa7,0xf6,0xb0,0xa8,0x7d,0x30,0x74,0x3e,0x2f,0xcf,0xd2,0x39,0x68,0x52,0x46, + 0x54,0x98,0x17,0x49,0x02,0xee,0x07,0x3b,0x38,0xcc,0x8a,0xcb,0xe1,0x87,0xf7,0x4f,0x4f,0x9f,0xbe,0xfa, + 0x10,0xa9,0xf7,0x04,0xcb,0xbf,0xb7,0x40,0xe4,0xf4,0x14,0x99,0x4f,0x9e,0x7e,0x38,0x7a,0xfd,0xfa,0xc5, + 0xbb,0xd3,0x6f,0x5f,0xbc,0x7e,0xf4,0xf0,0xc5,0xe9,0x77,0xaf,0x5f,0xff,0x70,0x7a,0xaa,0x7e,0xe8,0x07, + 0xdc,0x77,0xd7,0x8b,0xb3,0x92,0x1a,0x3d,0x0a,0xe5,0x29,0xea,0xef,0x9b,0xbe,0xb2,0x18,0xe5,0x3a,0xb7, + 0x17,0x47,0xa3,0xef,0x6e,0xa9,0x39,0xe3,0xe2,0xf4,0x83,0x1b,0x1a,0x5a,0xb3,0xde,0x8a,0x75,0x21,0x57, + 0xf9,0x65,0x4d,0x5f,0xe4,0x55,0x1b,0x2d,0xbf,0x7d,0xfc,0xf5,0x60,0xfa,0x5d,0x8e,0x81,0xa2,0xab,0x82, + 0x12,0x53,0xf9,0xdf,0xd0,0xb2,0xb6,0xbe,0xf1,0x0a,0x62,0xfd,0x5b,0x65,0x09,0x59,0xa4,0x95,0xbf,0x90, + 0x9f,0xed,0xa0,0xca,0x36,0xda,0x84,0xe0,0xfb,0x22,0x39,0x57,0xdf,0x82,0x21,0xf8,0xb9,0xd8,0xfa,0x3c, + 0x9f,0x26,0xdf,0x12,0xdd,0xa6,0xaf,0x4a,0x5c,0x9d,0x41,0x3d,0xbf,0x19,0xfd,0x5c,0xb4,0xfb,0xf8,0x6e, + 0x75,0xd6,0xd3,0x4d,0x2a,0xad,0x83,0xf5,0x51,0x73,0xad,0x4f,0xc4,0xd1,0xb0,0xfb,0xd5,0x2a,0xb4,0xdf, + 0xa9,0xad,0x4f,0xe4,0xa2,0x6c,0xbf,0x7f,0xde,0x3d,0xda,0xf6,0x11,0x9d,0x79,0x92,0x2d,0x45,0xd0,0xde, + 0xa9,0xa1,0x28,0x1b,0x22,0xac,0xfb,0x2f,0xcc,0x73,0x1d,0xb6,0x92,0x56,0xb6,0x77,0xca,0xba,0xf6,0x4e, + 0x7c,0x19,0xfc,0xca,0x5e,0x9f,0x67,0x1b,0x66,0xb3,0x78,0x9e,0xce,0x7f,0x17,0x08,0xa7,0xfc,0x4b,0xf7, + 0xc8,0x77,0xca,0x30,0x3d,0x3d,0x70,0x95,0xd1,0x97,0x5c,0xf2,0xed,0x4f,0xdd,0x3b,0x2e,0xf5,0xed,0x95, + 0x7c,0x87,0x94,0xbe,0xef,0x32,0x9b,0x2f,0xcc,0x65,0x97,0x45,0x6d,0xae,0xee,0x90,0xaf,0xf4,0x65,0x53, + 0xa5,0xbc,0xba,0xdb,0xa7,0xfc,0x42,0xee,0x16,0xaa,0x76,0xaa,0xb9,0x17,0xd2,0x4f,0xe5,0x1b,0x4c,0x61, + 0xce,0x0b,0x2a,0x4f,0x37,0xd1,0x36,0x6b,0x35,0x17,0x5b,0x6e,0x19,0x10,0xb7,0xea,0xd1,0x57,0x74,0xfa, + 0x49,0x55,0x0a,0xf7,0x08,0x7d,0x37,0xa7,0xbd,0x36,0xd5,0x26,0x38,0xbf,0x2d,0x56,0xa7,0x48,0xa2,0x09, + 0x5b,0xee,0x8a,0x3d,0x9e,0x53,0xa3,0x53,0x2f,0x81,0x6f,0x5a,0x35,0xaf,0xad,0x18,0xe0,0xb5,0x97,0xc6, + 0x17,0xce,0xf9,0xbd,0xd9,0x0e,0x22,0x0e,0x93,0x21,0xf5,0x23,0x21,0x66,0x5e,0x8a,0x18,0xd1,0xf1,0x66, + 0xf9,0xf9,0x8a,0x6f,0x29,0x8f,0x81,0x74,0x47,0x3f,0x16,0xb2,0x4c,0x7c,0x43,0xfd,0x36,0xe6,0xec,0x9f, + 0x96,0x4d,0xef,0x8d,0xf4,0x44,0xf9,0x84,0xbf,0x78,0x50,0x4a,0x0d,0xcb,0xae,0xcc,0x3a,0x37,0x93,0x18, + 0x6c,0xcc,0xf7,0x58,0x70,0x7c,0x13,0x61,0xb3,0xe4,0xd6,0x18,0x67,0x1a,0xc7,0xab,0x8e,0x98,0x37,0xde, + 0xa4,0xd1,0x50,0x37,0xaa,0xa9,0x92,0xce,0x9d,0x3a,0xaa,0xa8,0x3a,0xa8,0xa1,0xa9,0xa2,0xd1,0x71,0x80, + 0x3d,0x1b,0x20,0xe4,0xf5,0xd2,0xb3,0xc3,0xd0,0xe1,0xd3,0x90,0xc2,0xe1,0xc0,0xf0,0x50,0xc2,0x71,0x2c, + 0xa8,0x60,0xba,0x5f,0x67,0x30,0xcf,0xe8,0x31,0xcb,0x93,0x5e,0x36,0x15,0xcc,0x03,0xae,0xc2,0xa2,0x52, + 0x59,0x7f,0x00,0xed,0x63,0xdc,0x1f,0x66,0x43,0x05,0x59,0x99,0xc4,0xfe,0xfe,0x28,0xe2,0xfb,0x6d,0x6d, + 0x96,0xb5,0xf8,0x46,0x24,0x79,0xed,0x44,0x8a,0x19,0x87,0x8f,0x86,0xbe,0x9b,0x5b,0x42,0x4b,0x8c,0x74, + 0x60,0xcb,0x4c,0x02,0x5b,0xca,0xb0,0x62,0x7e,0x34,0x83,0x89,0x11,0xcf,0xdd,0xc5,0x99,0x34,0x43,0x43, + 0xb2,0x46,0x04,0xf7,0x9d,0xf8,0x08,0xf2,0x98,0xf2,0x8c,0xcf,0x38,0x73,0x39,0xb6,0x4a,0x81,0x97,0x34, + 0x66,0x81,0x9d,0x14,0x38,0x0f,0xf1,0x5d,0xb1,0x53,0x4b,0x30,0xe2,0x71,0x3d,0x4c,0x0b,0xd2,0x34,0x10, + 0x49,0x59,0x25,0x37,0xf5,0x45,0xb9,0x9a,0x4f,0x69,0xaf,0xd2,0x0c,0x36,0x80,0x2d,0xd5,0xb1,0xcc,0xe5, + 0xe1,0x48,0xf0,0x12,0x83,0x2b,0xb2,0x25,0xaf,0xf9,0xcf,0x1a,0x3f,0x5c,0x2e,0xd8,0x8d,0x97,0xb0,0xd5, + 0x95,0xbe,0x3c,0x99,0x86,0x1e,0xe8,0x0b,0x98,0xb7,0xe2,0x8e,0x84,0xe1,0xd3,0xb6,0x44,0x48,0x42,0x1a, + 0x5a,0x4a,0x32,0x69,0x36,0x71,0x37,0xdb,0xbb,0x49,0xb9,0x57,0x0d,0xa4,0xdd,0x69,0xb1,0x2e,0x57,0xa2, + 0xe2,0x41,0xcc,0x67,0xa2,0x4d,0x20,0x12,0xad,0x54,0x55,0xe9,0x8b,0x6e,0x5b,0x73,0x97,0x21,0x8a,0x26, + 0x52,0xaf,0xd2,0xf9,0xc7,0x90,0x23,0xb1,0x57,0x1e,0xae,0x46,0xea,0x2d,0x26,0xca,0x9d,0x8b,0xe5,0x45, + 0xc6,0xd0,0xf8,0x32,0x86,0x77,0xe8,0x39,0xa2,0xa8,0x13,0xb2,0xa6,0x9f,0x13,0xb8,0x9c,0xfb,0x95,0xfb, + 0x1d,0xb9,0xed,0xb2,0xaa,0x3e,0xdc,0xff,0x50,0x6e,0xa8,0x92,0x1b,0x81,0xe9,0xa8,0xbd,0x63,0xe4,0xa1, + 0x1d,0x56,0x66,0x94,0x4a,0xd8,0x93,0x5b,0x98,0xbe,0x9d,0x62,0xfc,0x46,0xa7,0xc4,0x8d,0xef,0x55,0x6a, + 0x29,0x90,0x66,0x9c,0xc5,0x6f,0x44,0x8a,0x43,0x5c,0x5c,0xef,0xb6,0x4a,0xb1,0xa1,0x92,0xdf,0x88,0x00, + 0x7c,0x78,0x7b,0x81,0x41,0x50,0x07,0x27,0xc9,0x13,0x2a,0x44,0x3d,0x62,0x2a,0x74,0xeb,0x50,0x12,0x25, + 0x31,0xe1,0x95,0x9f,0xd8,0xfc,0xd9,0xde,0x35,0xd7,0x98,0xa4,0xc6,0x26,0x59,0xbb,0xb5,0x9d,0x36,0xd2, + 0xc8,0xd6,0xeb,0x9e,0x68,0xf3,0x8d,0x36,0x4f,0x24,0xf2,0xf6,0x12,0xb6,0x72,0x51,0xdb,0x1b,0xa3,0x31, + 0x92,0x4f,0xf8,0x62,0xa8,0x3a,0x01,0xcc,0x8c,0x52,0x62,0x40,0xba,0x17,0xe2,0xb1,0xf2,0xf0,0x38,0x3d, + 0x89,0xf8,0xb2,0xa1,0x24,0x1d,0xa7,0xc6,0xa5,0xbc,0x8e,0x3a,0x97,0xc4,0xd5,0xd1,0x98,0x38,0xb9,0xfa, + 0xc4,0xee,0xd8,0x0d,0xc6,0x2d,0xd1,0x43,0xe9,0x61,0x91,0x35,0x17,0xe5,0x94,0x1f,0xe5,0x0a,0x68,0x3c, + 0x4d,0x74,0x2c,0x81,0xfe,0x89,0xd9,0x1e,0x4e,0x5f,0x94,0x7d,0x43,0x30,0xf3,0x30,0x55,0x03,0xd3,0xc7, + 0x9c,0x03,0x35,0x98,0xf6,0x2f,0x89,0xa5,0x49,0xde,0x88,0x44,0xb6,0x52,0x93,0x4a,0xcd,0xab,0x8e,0x86, + 0xb6,0x4b,0x73,0x03,0x02,0x08,0x67,0xaf,0x70,0x0b,0x94,0x9a,0x71,0x08,0x36,0x0e,0xc4,0xc6,0xb6,0x30, + 0x3d,0x34,0x2b,0x51,0x79,0x36,0x1a,0x37,0x88,0x57,0xff,0x3d,0x8a,0x26,0x2d,0xb2,0xd0,0xcf,0x0b,0x3f, + 0x20,0x1c,0xb7,0x31,0xd0,0x73,0x15,0x5b,0xa7,0xbd,0x97,0x44,0xbe,0xa7,0xe7,0xd9,0xe3,0x8b,0xb4,0x28, + 0xb2,0xf9,0x7a,0xbd,0x7b,0x14,0xb6,0x93,0x40,0x77,0x9b,0xcb,0x8c,0xda,0x39,0x84,0xd6,0xea,0xa6,0x5a, + 0xe1,0x0c,0xe6,0xfb,0x8d,0xda,0xb9,0x56,0xce,0x14,0xf6,0xf4,0xcf,0xb8,0xd7,0x7d,0x80,0x2b,0x9d,0x33, + 0x2a,0x59,0x56,0x8c,0xfa,0xda,0x15,0xa9,0x8b,0x2a,0x59,0xd2,0x34,0xd3,0x61,0x74,0x7f,0xa4,0x1f,0x0e, + 0x87,0xe0,0x50,0xb9,0x54,0xf2,0x41,0xb5,0xab,0xbf,0x40,0x91,0xba,0xd1,0x95,0x40,0xd8,0xb3,0xb9,0x65, + 0x52,0x09,0x67,0x2f,0xf2,0x9a,0xe7,0x53,0x3f,0x6a,0xcb,0xdd,0xcb,0x2a,0xd1,0x09,0xe6,0x86,0x5c,0x22, + 0xa5,0xeb,0x56,0x2b,0x97,0x95,0x5c,0x37,0x4c,0xfc,0xce,0xdb,0xa2,0xe5,0x32,0x78,0x6e,0xa2,0x0d,0xd3, + 0x07,0x93,0x8a,0x81,0x62,0x51,0xa9,0x73,0x19,0x1a,0x31,0x63,0xd7,0x55,0x47,0xd0,0xa4,0xc5,0xa9,0x7b, + 0x81,0x8d,0xe3,0xcc,0xc2,0x2b,0xc2,0x50,0xc1,0xff,0x63,0xeb,0xf3,0x0c,0xe0,0x62,0x65,0x57,0x71,0x16, + 0x79,0x85,0x2a,0xc4,0x8d,0x95,0x42,0xc5,0x6d,0x85,0x8c,0x0d,0x1d,0xeb,0xe0,0xb3,0xa4,0x6a,0x95,0x53, + 0xb0,0x88,0x80,0x60,0x73,0x2b,0x1e,0x5f,0x03,0xf6,0xf3,0xac,0x92,0x6b,0x9b,0x4e,0x19,0x52,0xaf,0xf8, + 0xef,0x11,0x87,0x6a,0xfa,0xc8,0x50,0xfb,0x89,0xff,0x3e,0xc6,0xd9,0xf1,0x10,0x7f,0xde,0x55,0x3d,0x74, + 0xb1,0x39,0xe7,0x16,0x08,0x9e,0xce,0x5e,0x18,0xa7,0x8c,0xad,0x88,0x06,0x92,0x73,0xcc,0x25,0x18,0x5b, + 0x60,0x4e,0xae,0xc6,0xa1,0x3e,0x13,0xe9,0x50,0xdc,0xdd,0xad,0xf8,0x41,0x0e,0x1b,0xc8,0x1a,0x38,0x09, + 0x0f,0xfa,0x7e,0xf8,0xf4,0x8f,0x6b,0x4e,0xc2,0x83,0x66,0x68,0x88,0xf2,0xe3,0x24,0x3c,0xe8,0x03,0x89, + 0x2b,0x73,0x75,0xb8,0x4f,0xbd,0x2f,0x34,0x95,0x39,0x39,0x33,0x54,0x3a,0xb1,0x49,0x83,0xc1,0x43,0xdd, + 0x90,0x44,0x52,0xb3,0xd4,0xeb,0x34,0xa7,0x73,0xdf,0xd5,0x63,0x8f,0x71,0xb0,0x52,0x9a,0x98,0xcf,0xae, + 0x9e,0xf8,0xef,0x94,0xf9,0x9c,0x10,0x95,0x06,0x08,0xaf,0x48,0x37,0xd5,0x69,0x10,0x20,0x6e,0xef,0x89, + 0x4f,0xd0,0xc8,0x9d,0xf1,0x44,0x83,0x34,0x18,0x4b,0x1c,0xfa,0xaf,0x1d,0x9f,0x9d,0xdd,0xd7,0x85,0x88, + 0x2d,0x0c,0x98,0xc3,0x1d,0x4c,0x87,0x39,0x19,0x06,0xee,0xd6,0xc7,0x9e,0x03,0xb3,0xe7,0x10,0x6e,0xa1, + 0xcf,0x51,0x96,0xe8,0xb3,0xd8,0x5d,0x23,0xb7,0x61,0x2f,0x29,0xaf,0x3f,0xb8,0x28,0xaf,0xaf,0x77,0x11, + 0xdc,0xe2,0x95,0x47,0x09,0xd9,0xa9,0x34,0xb6,0x65,0xe6,0x33,0x04,0x9f,0x79,0xe7,0x9f,0xf4,0x1d,0xfa, + 0x9c,0xe9,0xea,0x91,0x54,0xa0,0x3c,0xf6,0xf1,0xdf,0x3a,0x9e,0x8f,0x4d,0x8a,0x3c,0xc6,0x4e,0x6e,0x78, + 0xc6,0xad,0x80,0x1a,0x48,0x39,0x70,0x5e,0x93,0x78,0x7d,0xd5,0xf7,0xb6,0x29,0x2b,0x5e,0x31,0x86,0xde, + 0x06,0x8a,0xa2,0xe6,0xa2,0x2a,0xaf,0xe8,0x10,0x79,0xcb,0xca,0xfa,0xbb,0xf2,0xd9,0x0e,0x4d,0xdf,0x8e, + 0x86,0xeb,0x1d,0x04,0xa1,0x6d,0x2f,0x29,0x4c,0x51,0xa2,0x0d,0xe1,0x24,0xaa,0xfc,0xfa,0xc6,0xc2,0xe6, + 0xde,0xde,0x77,0x61,0xab,0x83,0xe8,0x7d,0xb9,0x0c,0xf5,0x14,0x41,0x0a,0x50,0xac,0x96,0x80,0x27,0x17, + 0x0f,0x8f,0x8e,0x92,0xd6,0xbc,0x08,0x97,0xdc,0xe3,0x7c,0x93,0x11,0x24,0x8f,0xda,0x00,0x07,0xb9,0x45, + 0x08,0x7b,0xb8,0xb0,0x93,0x2e,0x71,0xbf,0x5a,0x10,0x6c,0xd8,0x7d,0x1f,0x8c,0xed,0xf7,0x46,0x52,0x20, + 0x9b,0x37,0xea,0x74,0xc9,0xeb,0xf7,0x67,0x58,0x74,0x6c,0x1b,0x7b,0xaf,0x3d,0x78,0x03,0xc3,0x5f,0x98, + 0x4c,0xb0,0x19,0x7d,0xfd,0xa7,0x71,0xe1,0xb6,0x03,0x27,0x79,0xd0,0x22,0x02,0xed,0x76,0xe1,0xba,0x3b, + 0xf2,0x77,0x60,0xbb,0xa6,0xad,0x9d,0xd8,0x49,0x10,0x09,0x4c,0x18,0x29,0x57,0x61,0xed,0xed,0x76,0x7f, + 0xa2,0xda,0xfb,0xbe,0x68,0x4f,0xa2,0x89,0x31,0xd9,0x99,0x21,0x91,0x3a,0x6c,0x49,0x68,0x78,0x23,0x78, + 0x88,0x66,0x57,0xef,0x07,0x60,0x2a,0x49,0xaf,0x56,0x54,0x38,0xbe,0x65,0xb1,0x75,0xe0,0xe8,0x24,0x39, + 0xc2,0x1d,0xce,0x0c,0xb7,0xfc,0x04,0xf4,0xf5,0xa9,0x65,0xf7,0x77,0x5a,0x59,0x53,0xc4,0x51,0xf1,0xcd, + 0xe3,0x6a,0x6f,0xef,0xb4,0xe2,0x9b,0xcb,0xa6,0xdf,0x70,0x4d,0x51,0x41,0x0b,0x42,0x85,0x74,0xb8,0xe8, + 0x62,0x70,0xa8,0x0e,0x20,0xc7,0xe1,0xc3,0xee,0xd4,0x5c,0x2a,0x19,0x8d,0x3e,0x62,0xa7,0xe3,0x74,0x38, + 0x50,0xef,0xc3,0x49,0xc6,0x0e,0x72,0x5a,0x5e,0xd3,0x1a,0x2f,0x75,0xdb,0x1f,0x2c,0x0c,0xd1,0x1d,0x76, + 0x35,0x51,0x4a,0xdc,0xd6,0x67,0x23,0xa3,0x5d,0x2d,0x4b,0x63,0x44,0xb1,0x5e,0xe7,0x7c,0x75,0x9c,0xdd, + 0x3a,0x2d,0x68,0x11,0x97,0x4d,0x53,0x6b,0x8b,0xc7,0x92,0x2d,0x5b,0xe9,0x4d,0x37,0x39,0x93,0xfd,0xad, + 0xb7,0xbf,0x62,0xba,0xdc,0x8a,0x51,0xdf,0x86,0x99,0x61,0xc4,0xd4,0x5d,0x63,0xa5,0xf1,0x97,0x76,0xb6, + 0xdc,0x55,0x7e,0x6b,0x0b,0x9b,0xce,0x74,0x64,0xe8,0x62,0x1f,0x00,0x78,0x48,0x91,0x27,0xc2,0x3f,0x75, + 0x20,0xca,0x68,0xd5,0xb2,0x2d,0x46,0xfb,0xb3,0x1d,0xe6,0x6f,0x2d,0xfd,0x79,0xd8,0x5d,0xaa,0x86,0xe0, + 0x7e,0x5a,0x5e,0x7d,0x76,0xbd,0xf4,0xe0,0x10,0xa8,0xe7,0x51,0x46,0x74,0xdf,0x13,0xa3,0x3f,0x5a,0xaf, + 0x57,0xa1,0xcd,0x34,0xc7,0xbc,0x30,0xb0,0xa3,0xbf,0xd5,0xb9,0xce,0xde,0x1e,0xb5,0x0e,0xe3,0xc3,0x8d, + 0xf0,0x6d,0x77,0x88,0x38,0xc9,0x8a,0xd5,0x22,0x33,0xf2,0x1c,0xd5,0x91,0xef,0x40,0x69,0x13,0x9f,0xab, + 0x1a,0x7f,0x37,0xea,0x35,0x15,0xc7,0x0e,0x03,0x73,0x3e,0xfa,0x94,0x85,0x8f,0x3d,0x89,0xab,0x70,0xfa, + 0x4f,0x2b,0xf5,0xa6,0x52,0xbf,0x55,0xea,0x49,0xa5,0x9e,0x53,0x69,0xb8,0xf0,0xfb,0x3c,0xb4,0xa6,0x70, 0xf8,0x38,0xec,0xf7,0xd0,0xef,0x71,0xc1,0xcf,0x6b,0x3b,0x3d,0x51,0x9f,0x93,0x7e,0x12,0x4a,0x14,0xe6, - 0x9b,0x31,0x8b,0x79,0x24,0x13,0x9d,0xd7,0x5e,0xc7,0xe3,0x4a,0x69,0x6f,0xf8,0x8f,0x70,0xe6,0x8f,0x53, - 0xf3,0xfa,0x74,0xbe,0x88,0x2b,0x61,0xd8,0x88,0x76,0xcb,0x66,0x78,0xcf,0xe5,0x7d,0x83,0x6b,0x28,0xc4, - 0x7b,0xbb,0x6d,0xd6,0xa3,0xcc,0x6d,0x2f,0xda,0x90,0x27,0x99,0xe8,0x07,0x55,0x77,0x6d,0x77,0x28,0xab, - 0x93,0x42,0xd8,0x90,0x08,0x96,0xed,0x0b,0x46,0x39,0x4e,0x00,0x2e,0x6e,0x8e,0x06,0x77,0x58,0xfb,0x18, - 0x82,0x3e,0xcd,0xa8,0x3b,0x5a,0x3a,0xe7,0x5d,0x71,0xa4,0x7d,0xca,0xe1,0x6d,0xff,0x70,0x6e,0x37,0x3f, - 0x82,0x72,0x3e,0x07,0x14,0x66,0x1c,0x1d,0x21,0x2c,0x71,0x4d,0xbc,0x8d,0x67,0xba,0x51,0x26,0x23,0x6e, - 0xb3,0x5a,0xc6,0xd1,0x6e,0x2b,0x88,0xc1,0x6e,0x1f,0x61,0x2a,0x0d,0xed,0xee,0x86,0x39,0x56,0xca,0x44, - 0x25,0x18,0x8c,0x65,0x02,0x1e,0x6b,0x61,0xed,0x7a,0x6d,0x42,0x9f,0x3a,0x6b,0x3e,0x2e,0xef,0xbd,0xf3, - 0xb5,0x05,0xda,0x14,0xd2,0xd5,0xe3,0x2d,0x52,0x52,0x11,0x9d,0x2b,0xa1,0xaf,0xf8,0x71,0xac,0xef,0xad, - 0x0e,0xcd,0xa3,0x11,0xa6,0xf2,0x1d,0x49,0xb7,0x75,0x25,0xc9,0x91,0x29,0xb7,0x5c,0x98,0xcb,0x81,0xda, - 0x37,0x84,0x2d,0x71,0x69,0xc5,0x1d,0x7b,0x95,0x3d,0x42,0xf2,0x53,0x52,0x03,0xd3,0x16,0x5b,0xa9,0x58, - 0x59,0xde,0xe4,0xd5,0xa0,0x25,0xa2,0x32,0x16,0xc1,0xc2,0xba,0x23,0xe0,0x0c,0xca,0xa9,0x3a,0x69,0x0d, - 0x89,0xd2,0xa0,0x60,0x41,0xe8,0x69,0x25,0x7e,0xc9,0xb5,0xef,0x96,0x6c,0xe2,0xf7,0x1c,0x4f,0x88,0xe3, - 0xc7,0xa5,0xe5,0xcf,0xc2,0x95,0xea,0xb6,0x2d,0x97,0xe4,0x6d,0xb7,0x7f,0xb8,0x55,0xf2,0x09,0x0b,0xcf, - 0x37,0xce,0xa0,0x79,0x9e,0x6c,0x4f,0xb0,0x8b,0x09,0xf1,0x99,0x3c,0x9c,0xc3,0x72,0xf5,0xe3,0x3c,0xda, - 0x94,0x3c,0xf1,0x77,0x6a,0xbe,0xbe,0xbe,0x80,0x85,0xa2,0x17,0x26,0x9b,0x32,0x68,0x1a,0x26,0x5a,0x4d, - 0x8e,0x38,0x49,0xfe,0xa5,0xc5,0x76,0x93,0xf6,0x6c,0x5c,0xe5,0x85,0xb0,0xa0,0x67,0xbb,0x0a,0x80,0x38, - 0x17,0x1d,0x63,0xa3,0x24,0x2c,0xd7,0xf6,0xa1,0x2d,0xf7,0x10,0xe9,0xcb,0xeb,0xaa,0xbe,0x16,0x86,0x55, - 0x2b,0x16,0x5a,0xe8,0xbf,0xb2,0xb9,0x35,0x47,0x04,0x35,0x0a,0x7f,0x36,0x70,0x6b,0xef,0x2e,0x76,0x35, - 0x77,0xdf,0x8c,0x42,0xb8,0xaf,0x46,0xb8,0x5f,0xd9,0xe2,0x52,0x62,0xf4,0x8c,0x4f,0x66,0x14,0xa7,0xa8, - 0x70,0xf7,0x10,0x14,0x9d,0xb6,0x09,0xe8,0xa5,0x35,0xb6,0x3b,0xda,0xb4,0xf0,0x1c,0x3b,0x82,0xb6,0x7b, - 0x62,0x25,0x95,0x62,0xe4,0x2a,0x48,0x34,0x64,0xa9,0xd4,0x60,0x2c,0x36,0x0f,0xcf,0x0b,0xc7,0x6d,0x95, - 0x88,0xbd,0xca,0x54,0x9e,0xed,0x6b,0x84,0x40,0x95,0x5e,0xcf,0x0f,0x87,0x9e,0x34,0x73,0x58,0x11,0xcb, - 0x72,0xa7,0x7b,0xad,0x39,0x64,0x9a,0xb8,0x30,0xd3,0x66,0x1c,0x57,0x27,0xc4,0xdd,0xa3,0x07,0x2d,0xdb, - 0x06,0x26,0x5b,0x30,0xee,0xb8,0xf1,0x6e,0x32,0xa6,0x54,0xf5,0xa4,0x6a,0x09,0x29,0x9f,0xd3,0x7e,0x7d, - 0x56,0x25,0x47,0xea,0x55,0x95,0xdc,0x57,0x2f,0xd1,0xf0,0x6f,0xbe,0xde,0x8e,0x2f,0xae,0xde,0xa6,0xc5, - 0x05,0x03,0xc9,0x21,0x36,0x5e,0x11,0x83,0xf9,0xb2,0x32,0x7a,0x38,0x9a,0xb6,0x8f,0x2b,0x1e,0xb2,0x44, - 0x65,0xf3,0xce,0x80,0x51,0x1f,0xb2,0x73,0x30,0xdf,0x91,0x5f,0x31,0x28,0x19,0x21,0x8d,0x35,0xee,0xe4, - 0x50,0x1f,0x3e,0x66,0x1a,0x16,0x06,0xf5,0x98,0xe0,0x0f,0xaa,0xe8,0xa2,0x2e,0x9b,0x40,0x27,0x8a,0xfb, - 0x9c,0x5e,0x90,0x23,0x07,0x0d,0x92,0xe5,0x49,0x0b,0xd3,0x7a,0x6e,0x50,0xf4,0xb6,0x47,0x92,0xb7,0xb6, - 0xca,0xd6,0x6e,0xcd,0xbd,0xdd,0x53,0x6c,0xa3,0x41,0xbb,0x9b,0x90,0x69,0xdb,0x79,0x9f,0x9e,0xc9,0x75, - 0xb8,0xaa,0xd1,0x87,0x18,0x83,0xbb,0x3e,0xd8,0x4c,0x9a,0xda,0x72,0x03,0x4c,0xb6,0xfc,0x72,0x22,0xa1, - 0x5a,0x09,0x4d,0x09,0xbd,0x7d,0xc7,0xdd,0x6d,0xfe,0x3a,0x0b,0x8d,0x56,0xce,0x4c,0x2e,0x6d,0x33,0x0e, - 0x97,0x2d,0x82,0x0b,0x59,0x45,0x69,0xeb,0x4d,0x55,0x5e,0x89,0x78,0x40,0x27,0xd7,0xd9,0x7c,0x26,0xef, - 0x7d,0xdb,0xc8,0xde,0x9a,0x59,0xd8,0xc5,0x60,0x1a,0x1e,0xe1,0x26,0x6d,0xb8,0x1d,0x1d,0x92,0xb3,0x70, - 0xb8,0xce,0xe4,0xec,0xed,0x51,0xa2,0x89,0xa9,0x88,0x88,0xc0,0xe6,0xa5,0xf0,0x76,0x82,0x51,0xda,0x66, - 0x26,0x97,0xef,0x39,0xba,0x53,0x95,0x25,0x3d,0x8d,0x0a,0x79,0x8a,0x33,0xa4,0x59,0x75,0xe5,0xf1,0x09, - 0x17,0xc9,0x66,0xb8,0xb5,0xc7,0x13,0xd8,0x88,0x78,0x28,0xf3,0x36,0xa1,0x49,0xe8,0x6e,0xe0,0x23,0x2e, - 0xe5,0x50,0x95,0x7e,0xb7,0x08,0xc2,0xa6,0xb4,0xc9,0x47,0x90,0x76,0x5a,0x1e,0xe4,0xcf,0x17,0x95,0xd4, - 0x97,0x08,0xf5,0xd9,0xf3,0x50,0x2e,0xb1,0x85,0xb0,0xad,0x61,0xab,0x89,0x44,0x47,0x1c,0x6b,0x3e,0x7b, - 0x74,0x40,0x1f,0x2a,0x97,0x5f,0xdd,0xd2,0xa0,0x9c,0xdd,0x66,0x7c,0x02,0x2f,0xef,0xab,0x2c,0xab,0x9d, - 0x76,0xb8,0xb3,0x84,0xf6,0xc0,0x6f,0x6f,0x38,0xda,0x81,0x05,0x56,0xca,0x44,0xb9,0xf4,0x0f,0xa2,0xa6, - 0x0b,0xea,0x72,0x67,0xa2,0x4f,0x6a,0x24,0x7c,0xc4,0x8f,0x27,0x2d,0x63,0x6f,0xe5,0xdf,0x14,0xfd,0xde, - 0xbb,0x4b,0x15,0xf1,0x1e,0x36,0xbc,0x96,0xbe,0x25,0xe2,0x5f,0xfd,0xf6,0x50,0xeb,0x43,0x72,0xe9,0x31, - 0x87,0xa5,0x87,0x02,0x26,0x10,0x1a,0x24,0x80,0x40,0x2f,0xf7,0x48,0x0f,0x09,0x6a,0x25,0x25,0xec,0xfe, - 0x0d,0x54,0xb3,0x35,0xdd,0xae,0xb4,0x99,0xed,0x5a,0xb6,0x95,0x6a,0x1b,0xb5,0x45,0x2a,0xcc,0x93,0x65, - 0x16,0x86,0x5a,0x58,0xe8,0x16,0x50,0xa4,0xfc,0x4a,0xe2,0x72,0xf4,0x90,0x32,0xaa,0x75,0x6d,0x6d,0x4f, - 0xf8,0x6f,0x5a,0xd5,0x77,0x21,0x34,0x96,0x39,0xb1,0x17,0x30,0xe4,0xeb,0xa1,0x47,0xb6,0x80,0xc0,0x70, - 0x30,0x70,0x9b,0xef,0xae,0xf8,0xb0,0x31,0xce,0x2d,0x9f,0x47,0xd3,0x0e,0xf1,0x31,0xd2,0xa8,0x2c,0xa9, - 0xa5,0x63,0xe0,0xf7,0x50,0x5b,0xd8,0x80,0x25,0x02,0x03,0x99,0x0d,0xbd,0xd5,0xd7,0x52,0x7b,0xaa,0xd9, - 0xa6,0x4b,0x5c,0xee,0xc4,0x7b,0xbd,0x34,0x21,0x6d,0x9f,0xc1,0x5c,0x9a,0x96,0x96,0x78,0x1b,0x8c,0x1c, - 0x4e,0x19,0x8a,0xf5,0x35,0x84,0xbd,0x56,0x1c,0xd6,0x46,0xfa,0x11,0x80,0xd6,0xee,0x44,0x05,0x88,0x52, - 0x38,0xcf,0xf7,0x4c,0x11,0xfb,0x39,0x69,0x92,0x12,0xc6,0xd8,0xa2,0x87,0xe9,0xce,0x41,0x77,0xf4,0xed, - 0xcb,0xeb,0x1b,0xbe,0xbc,0x3e,0x11,0x51,0x05,0x24,0x89,0xa3,0xb3,0x78,0x19,0x8a,0x96,0x4f,0xae,0x47, - 0x36,0xf5,0xa2,0x09,0x40,0xe1,0xe8,0x73,0xd8,0x53,0xe0,0xb4,0x0c,0x91,0x36,0x66,0x5d,0x5d,0xaf,0xf0, - 0xb4,0xdd,0x43,0xcf,0x28,0x38,0xd3,0x0c,0x7b,0x4b,0x14,0xa0,0xf3,0x58,0x22,0xa0,0xd8,0x74,0x33,0xc4, - 0x5d,0x55,0x37,0x2c,0xea,0xe4,0x73,0x82,0x2f,0x44,0x86,0x24,0x8d,0x6f,0x36,0xf3,0xef,0x36,0xf0,0x41, - 0x91,0x63,0x7c,0x6f,0x11,0xc4,0x69,0xe2,0x33,0x0e,0x7a,0xb0,0xca,0xc8,0x64,0xa2,0x61,0x6a,0xc5,0x61, - 0x88,0x64,0x9d,0x9e,0x0c,0x69,0xe3,0xcd,0x88,0x6c,0x45,0x78,0xcd,0x2f,0xfe,0x29,0xb6,0xe7,0x61,0xbd, - 0x1f,0x04,0x91,0x7f,0xa5,0xd1,0x21,0x08,0xa6,0xaf,0xbf,0x4a,0xf8,0x12,0x49,0xbd,0xc2,0xe8,0x39,0xae, - 0xe8,0xdc,0x3c,0x14,0x02,0x07,0xa1,0x4d,0xe2,0x87,0xa1,0x99,0x29,0x02,0x41,0x80,0x7d,0x63,0x75,0x67, - 0xb7,0x41,0xf3,0xd8,0x14,0xf8,0xc9,0x6c,0x89,0x3e,0x54,0x5c,0x25,0x7f,0x20,0x42,0x79,0x2b,0xdc,0x46, - 0x63,0x18,0xaf,0x06,0x57,0xb6,0xf4,0x2e,0x4e,0x39,0x2a,0xe3,0x12,0x02,0x8f,0x21,0xc4,0x49,0x05,0x6e, - 0xf4,0x00,0xa3,0xf9,0x0e,0x9e,0x9c,0xb4,0x6b,0xce,0xd4,0x19,0xf1,0xee,0x70,0xcb,0xd0,0xd0,0x8b,0x48, - 0xe1,0x7c,0xeb,0x9e,0xb8,0xdd,0xd9,0xce,0x47,0xec,0xf1,0x45,0xfd,0x83,0xb1,0x0b,0x3f,0xec,0x8a,0xe6, - 0xf3,0x16,0xbf,0x09,0xaf,0x7b,0x15,0x03,0xe2,0x76,0xdc,0x8e,0xca,0xbf,0x73,0x0d,0xf7,0x3d,0x9a,0x45, - 0xe2,0xfb,0x1e,0xa7,0xfa,0x76,0x79,0x04,0x0f,0x11,0x0e,0xd7,0xa4,0x98,0xae,0x89,0xbd,0xa0,0xc1,0x7a, - 0x58,0xb6,0xa6,0x8b,0xda,0xb4,0x52,0x31,0x12,0x52,0x58,0xbf,0x4d,0xfb,0xe6,0x09,0xe7,0xb5,0xc0,0x6a, - 0x14,0x17,0x1e,0x0e,0x35,0x96,0xc0,0x9a,0x18,0xb1,0x35,0xc3,0x47,0x49,0x52,0x84,0x2b,0xef,0xe6,0xd2, - 0x51,0xb1,0xbd,0xb1,0x70,0x69,0xcf,0xe7,0x8c,0x61,0x18,0x70,0x36,0x43,0x1b,0xc8,0xa9,0xf8,0x6c,0x61, - 0x86,0xf7,0x7e,0x73,0x99,0xeb,0xd0,0xa3,0x9c,0xe9,0x04,0x11,0x50,0xa5,0x0d,0xf3,0x57,0x0a,0x6b,0xcc, - 0x55,0x44,0x2d,0xb3,0x39,0x5c,0x0d,0x96,0xbc,0x6f,0x27,0xc9,0x7d,0x49,0xc9,0xeb,0x76,0x6a,0x9f,0x06, - 0x5d,0xae,0x16,0x72,0xa1,0x5a,0xb0,0x98,0x42,0x16,0xca,0x2d,0xcd,0xb8,0x75,0x41,0xae,0x41,0x17,0x8d, - 0xd4,0xa1,0x89,0x6c,0x2a,0xb0,0xea,0x17,0xb5,0xfe,0x7b,0xb9,0xd3,0xe4,0x36,0x4e,0x30,0xa8,0x8c,0x63, - 0x84,0x6f,0x3f,0x53,0x59,0xd1,0x1b,0x47,0x2a,0x0e,0x7f,0xa3,0xec,0x37,0x55,0x72,0xef,0x3f,0xb8,0xbb, - 0x3c,0xbe,0xa7,0xc2,0xa7,0x55,0x42,0x69,0xfe,0x28,0xca,0xa2,0xa3,0x7b,0xde,0x82,0xdf,0xcc,0xc1,0xef, - 0x6d,0x01,0xf0,0x04,0x28,0x0a,0x0e,0xca,0xae,0xf4,0xe5,0x1f,0x02,0x2a,0x9a,0xea,0xa2,0x03,0xd3,0x68, - 0x0c,0x5c,0x8a,0x17,0xcc,0xa9,0x41,0x3f,0x8d,0xba,0x09,0x50,0xcc,0x25,0xdb,0x34,0x99,0xd5,0x4c,0x32, - 0x5c,0x6c,0xd4,0xd3,0xaa,0x3d,0x8e,0x49,0xd6,0x19,0x89,0x73,0xd4,0xe7,0xa9,0xb9,0x53,0xce,0x66,0xec, - 0xc0,0xad,0x8c,0x9d,0x50,0xe5,0x5d,0x46,0xb6,0xd1,0x5b,0x98,0xaa,0x76,0x53,0x3f,0x23,0xaa,0x5a,0x55, - 0x32,0x34,0x7c,0x58,0x6d,0xb5,0x3a,0x9b,0x6d,0x4f,0xdf,0x6e,0xd7,0x6e,0x29,0x6a,0xc1,0xf3,0x67,0xe8, - 0x50,0x6e,0xbd,0x6f,0x01,0x6e,0xfe,0xda,0x0a,0x60,0x80,0x7a,0x09,0xfc,0xa9,0x12,0xd4,0xd3,0x99,0xfd, - 0xf6,0xad,0x10,0xa6,0x65,0x67,0xd5,0xd1,0x5d,0x2c,0x89,0xcc,0xaf,0x8b,0x35,0x16,0x24,0x4a,0xff,0xda, - 0x48,0x3e,0x74,0x28,0x3b,0x2c,0x93,0x1c,0x46,0x1a,0x30,0x5d,0xc0,0xfd,0x40,0xb3,0xa2,0x73,0x79,0x64, - 0xba,0x75,0x79,0x64,0xdf,0x9a,0x66,0x8b,0x3e,0x4e,0x58,0x98,0x21,0xf0,0x3b,0xed,0xc1,0x14,0x70,0x22, - 0x33,0x7c,0xfb,0x37,0x47,0x23,0x78,0xe5,0xc4,0x85,0xc7,0xe1,0x9f,0x87,0x76,0x61,0xa8,0x79,0x3a,0x54, - 0x0f,0x39,0x58,0x8a,0x41,0xc6,0x0f,0x4a,0x46,0xc8,0x7c,0x0f,0x16,0x61,0x63,0x63,0x4b,0x06,0x44,0x6c, - 0x9d,0x7c,0xde,0x86,0x05,0xed,0xce,0xbb,0xdc,0xee,0xce,0xb9,0xb8,0x10,0xb0,0x74,0x1f,0xde,0xd1,0x22, - 0xc7,0xf7,0x94,0x6c,0xe1,0x8b,0xee,0x76,0x1b,0x77,0xb5,0x36,0x42,0x49,0x68,0x2e,0x5e,0xf3,0x3a,0xb0, - 0x0f,0x68,0x91,0xb6,0xda,0xfd,0xc2,0x84,0x29,0x94,0xc5,0xce,0xe6,0x4a,0xab,0xa3,0x85,0xd1,0xa0,0xf1, - 0x8c,0xab,0xe1,0xb8,0xf2,0x79,0x47,0x61,0x26,0x88,0x7f,0x18,0x99,0x6f,0x8c,0x45,0x1c,0x8b,0x42,0xc7, - 0x08,0x07,0x9c,0x45,0x5a,0x0d,0xdc,0x93,0x6b,0x5b,0xe2,0x58,0x1c,0x47,0x9d,0xb3,0xc1,0x63,0xea,0x3b, - 0x19,0xc2,0xd6,0x77,0xcf,0x12,0x5f,0x22,0xd0,0x57,0x5e,0x07,0xa8,0xa6,0x21,0xe4,0x7c,0xbb,0x20,0x31, - 0xea,0xe3,0x8b,0x55,0x36,0x1e,0x27,0x6e,0x77,0xa0,0x37,0x06,0x3f,0xd0,0xa3,0x2d,0xe1,0x31,0xd2,0x77, - 0xb4,0xa0,0x54,0x5e,0xa4,0x4d,0xf3,0x26,0x13,0xa2,0xb5,0x42,0x3a,0xcf,0x49,0x56,0x5b,0xa9,0x76,0x3a, - 0xee,0xf0,0x29,0xf7,0xa2,0x05,0x99,0x9e,0xb8,0x6f,0x4b,0x01,0x63,0x48,0x7e,0xdd,0xa6,0x79,0xf5,0xcc, - 0x84,0xdb,0x75,0x69,0x61,0x51,0x47,0x59,0xb2,0x6b,0x80,0xa2,0xcd,0xde,0xc2,0x1e,0xa6,0x05,0x1b,0xc6, - 0x03,0x27,0x52,0xfd,0x1f,0xb8,0x9b,0x1d,0xfd,0xd1,0x0d,0x77,0x59,0xd5,0xd0,0xa3,0x7c,0x69,0xaf,0x8c, - 0x91,0x13,0x40,0x29,0xe3,0xb1,0xf7,0x2d,0xb9,0xc5,0x2d,0xc3,0x75,0x27,0xd1,0xd0,0x19,0xd2,0xb5,0x8a, - 0x58,0x31,0x70,0x63,0x75,0x37,0x36,0x0b,0x76,0xd5,0x5e,0x0d,0x8e,0x6c,0xd0,0xd6,0x9c,0xa6,0x35,0x2f, - 0xc9,0xd8,0x3e,0x1e,0x1c,0xd8,0xa9,0xf0,0x67,0x41,0xf5,0xc1,0xb6,0xde,0x3a,0xda,0xbd,0xc8,0xcc,0xac, - 0xf3,0x65,0xb2,0x20,0x4c,0x98,0xf5,0xf3,0x00,0xe8,0x83,0x68,0x1b,0x9e,0x5a,0xc2,0x7a,0xb1,0xb6,0xdf, - 0xa8,0x3b,0xc4,0xa1,0xfe,0xd6,0xc1,0x0e,0x91,0xfa,0xad,0x05,0x18,0x05,0xf1,0xfa,0xef,0xf3,0x49,0xdb, - 0xf2,0x51,0x63,0x97,0x0f,0x5a,0xcf,0x48,0xd0,0xd4,0xfa,0x48,0x0b,0x03,0xb6,0xcc,0x1c,0x94,0x87,0x36, - 0xad,0xc0,0xa1,0x4a,0x8c,0xa8,0x4b,0x79,0x01,0x93,0x45,0xc6,0xc7,0x51,0xe0,0x1c,0x4e,0x8a,0xda,0xe6, - 0x7a,0x5a,0x00,0x61,0xac,0xf6,0xcc,0x3b,0xac,0xf6,0x10,0x9c,0xdf,0xf8,0xa6,0xad,0xd7,0xe9,0xf1,0x21, - 0xa2,0xbf,0xd1,0x5f,0x28,0x73,0x84,0x40,0xb5,0x65,0x93,0xc7,0x74,0x10,0xb0,0xa8,0xb8,0x69,0x0b,0x2c, - 0x72,0x73,0x43,0x5b,0x5b,0x83,0x02,0xbd,0x84,0xd9,0xc3,0x39,0xdb,0x5d,0x64,0x89,0xb6,0xb6,0x68,0x5a, - 0xf2,0x33,0x14,0x6b,0x89,0x2f,0xb6,0x50,0x78,0x20,0xa5,0xe1,0x19,0x9f,0x18,0x0c,0x60,0x8d,0x51,0x68, - 0x88,0x22,0x93,0x26,0x82,0xf9,0x97,0x02,0x92,0xe8,0x24,0xab,0xc2,0xc8,0x45,0x0f,0x84,0x56,0x45,0xe8, - 0xd7,0xb7,0x95,0xfa,0xa9,0x52,0x8f,0x2a,0xf5,0xb1,0x4a,0x8e,0xb5,0xa7,0xe4,0xdb,0xec,0xec,0xe9,0xd5, - 0x52,0xac,0x6d,0x4f,0xd4,0x87,0x2a,0xb9,0xf9,0xc1,0x88,0xb0,0x63,0x1d,0xd9,0xc4,0x8f,0x14,0x6d,0xf6, - 0x18,0xeb,0xeb,0x24,0xb8,0x45,0x5e,0x4c,0xe6,0xab,0x69,0x16,0x7f,0x24,0xf4,0x7c,0x65,0x1f,0x17,0xe9, - 0x55,0x6c,0xda,0x90,0xbb,0x6d,0x4e,0x36,0x4a,0x13,0xee,0x71,0x17,0x0b,0x4d,0x52,0xda,0x47,0xb7,0x12, - 0x19,0xcc,0x59,0xc2,0x77,0x43,0x59,0x58,0x6f,0x39,0xb6,0x18,0x3d,0x2b,0x2f,0xb6,0xad,0x2e,0x7a,0x6e, - 0x24,0x99,0x78,0x53,0x99,0xab,0x8a,0xc0,0x90,0x77,0xae,0xeb,0xba,0x0f,0xb3,0x6f,0xf4,0xc6,0x72,0x32, - 0x24,0x0b,0xc7,0x4f,0xb5,0x04,0x0d,0x22,0xa7,0xab,0xbf,0xf3,0xe5,0xae,0xfb,0x72,0xa3,0xb6,0xe3,0x0c, - 0xf8,0x28,0x8f,0xc1,0x6d,0xa0,0x03,0x7c,0xd1,0x46,0xf8,0x45,0x0c,0x85,0xd9,0x9f,0x61,0x4b,0xe2,0xec, - 0x87,0xd9,0x7c,0x81,0x4b,0x08,0x94,0xa6,0x9c,0xf4,0xc0,0x60,0x66,0x2e,0xea,0x7b,0x7e,0xe5,0x7b,0x28, - 0x09,0xaa,0x77,0x89,0xed,0x44,0x97,0x72,0xc8,0x97,0x88,0xe4,0xd9,0xdb,0x23,0x84,0xf8,0x14,0xb7,0x64, - 0xbb,0xa8,0xf9,0x8d,0x89,0x0d,0xe4,0xa6,0x50,0x9b,0x81,0x60,0x0a,0xd5,0xc4,0x88,0x33,0xf8,0xae,0xe2, - 0x42,0x22,0xa7,0x4f,0xf2,0xe9,0x7e,0x28,0x91,0x2b,0x82,0x38,0x46,0x80,0x36,0x8e,0xc5,0x12,0x40,0xcd, - 0x80,0xc8,0x4a,0xe9,0xf1,0xe4,0x64,0xd4,0xab,0x6d,0x42,0x4e,0x8f,0xc2,0x69,0x2e,0x37,0x53,0x69,0xdb, - 0x9c,0x09,0x62,0x24,0xa3,0x24,0xd1,0xb9,0x36,0x49,0x96,0x95,0xa0,0x8d,0x08,0x11,0x43,0x4e,0xd9,0x30, - 0x80,0x26,0x8f,0xb6,0xf2,0x73,0xd0,0x71,0xb8,0xb3,0x54,0xb5,0xe8,0x8d,0xc8,0x88,0x5c,0x9c,0xe6,0x06, - 0x52,0x1f,0x33,0x09,0x74,0xee,0xec,0xed,0x65,0xf4,0x15,0x31,0x28,0xc3,0xb7,0x40,0x81,0x2a,0x7c,0x04, - 0x13,0xc1,0xe8,0x16,0x2e,0xf0,0x7d,0x71,0x1b,0xf3,0x47,0x9b,0x2f,0x10,0x75,0x7d,0x40,0x5b,0x30,0x52, - 0x6f,0xe9,0x90,0x6d,0xf2,0x79,0x72,0x03,0x07,0xcf,0xf8,0xfb,0x82,0x40,0xaa,0x21,0xc8,0x88,0x2f,0xd4, - 0x02,0x26,0xd9,0x7a,0x89,0xe3,0xe7,0x4a,0xea,0x79,0x2b,0xea,0x9b,0x2c,0x7e,0xb7,0xc1,0xa7,0xc2,0xf8, - 0xbd,0x85,0xd9,0xa0,0x66,0xf7,0xe8,0xd9,0xe2,0xe0,0x0f,0x78,0xeb,0x57,0x9b,0xc8,0xb6,0xba,0xc5,0xf0, - 0xda,0x7d,0x65,0x0c,0xb0,0xfb,0xdc,0xaf,0x22,0xaf,0xf6,0xc1,0xf8,0x34,0xad,0xb3,0x84,0x06,0x77,0x11, - 0x7a,0xa9,0x76,0x29,0x6b,0x42,0x29,0x32,0xd6,0x3a,0xbb,0x85,0x3a,0x86,0x78,0x9d,0xd6,0x1b,0xd7,0x79, - 0xbc,0x99,0xaf,0xce,0x72,0x8e,0xab,0xda,0x9f,0xc1,0x37,0xda,0x31,0xb2,0x37,0x1e,0x91,0x19,0xee,0x86, - 0x68,0xf1,0x05,0x42,0x76,0xb6,0xc9,0x67,0xc7,0x24,0x69,0xef,0x09,0x2d,0x9f,0xe8,0x91,0x39,0x20,0xf6, - 0x08,0x37,0x3a,0xb2,0x4f,0x9a,0xb8,0xe6,0xb0,0x5a,0x7d,0x5f,0x40,0x8f,0xe5,0x5d,0x08,0xc6,0x3c,0x9b, - 0x6f,0x4c,0xc6,0x0b,0xb6,0xc8,0xaf,0xf2,0x5e,0x6f,0x69,0x1e,0xa9,0xd3,0xbf,0xf8,0xaf,0xca,0x56,0xd0, - 0x96,0xd3,0xd2,0x3e,0x4b,0x0e,0xb5,0x80,0xf6,0x68,0x98,0x0d,0x04,0x72,0x5a,0x95,0x67,0x09,0xeb,0x6c, - 0x3c,0x22,0x9c,0x0f,0x50,0xfa,0x52,0xee,0xb5,0xc5,0x7e,0x95,0x6b,0x03,0xf1,0xc4,0x22,0x3d,0x20,0x07, - 0xe8,0x0b,0x8d,0x05,0xba,0x71,0x56,0x41,0xfc,0x0f,0xb9,0xed,0xd0,0xc6,0x50,0x91,0x70,0xd9,0xed,0x08, - 0xd8,0x66,0xc5,0xf2,0x86,0x5d,0x22,0x74,0xc4,0x80,0xd4,0x1d,0xf7,0x5d,0x58,0xf2,0x68,0x89,0xc8,0x57, - 0x37,0x25,0x29,0x02,0x4f,0xd3,0x10,0x71,0xe3,0x7a,0xea,0x4d,0x4d,0xe1,0xcf,0x0b,0x9d,0xb6,0xab,0x25, - 0x54,0x34,0xae,0xc8,0xb6,0x7c,0xda,0x09,0x4f,0x3f,0x2b,0x9e,0x85,0xec,0xd0,0x97,0xb6,0x8c,0xad,0xb4, - 0x65,0x83,0xab,0x44,0xd2,0x16,0x58,0x77,0xa5,0x86,0xdb,0x6d,0x98,0x52,0xdd,0x66,0xe6,0xed,0x66,0x0a, - 0x76,0xf4,0x30,0x4d,0xe8,0x35,0x2c,0xf4,0x03,0xa5,0x08,0xc4,0x14,0xf2,0x4b,0xef,0xd8,0x41,0x05,0xfe, - 0xde,0xea,0x36,0xc1,0x9c,0x2f,0x07,0x93,0x55,0x72,0x41,0xca,0xf6,0x76,0x64,0x3f,0x04,0x3b,0x7b,0xc6, - 0x1d,0xce,0xcd,0xac,0xe9,0x88,0xc9,0xc9,0xf8,0xde,0x95,0x94,0xb6,0xa0,0xf5,0xbf,0xc3,0x9d,0xb7,0xa9, - 0x53,0xb8,0xe6,0xec,0xe1,0xa4,0xd2,0xcd,0x86,0x10,0x40,0x44,0x04,0x06,0x90,0xc1,0x2d,0x3d,0xfc,0x89, - 0x3d,0x3f,0x7c,0xed,0x8c,0xe7,0x58,0x12,0x7a,0x61,0x01,0xc4,0x59,0xac,0x0c,0x0b,0x09,0x1e,0x5f,0x70, - 0xf4,0x7d,0x0d,0x85,0xd6,0x9c,0xb5,0x85,0x82,0x74,0xbf,0x71,0x11,0x8f,0x1f,0x53,0x40,0x2a,0xea,0x93, - 0x2d,0x72,0xb8,0x95,0x1b,0x44,0xae,0x8c,0x0b,0xa5,0x03,0x99,0x17,0x1b,0xe3,0xef,0xd3,0xc2,0x82,0x30, - 0x29,0x2c,0xd8,0xe5,0xa5,0x37,0x0f,0xb6,0xe4,0xfd,0x38,0xff,0xb7,0xb6,0x10,0x2f,0xaf,0xdf,0x89,0x97, - 0xb1,0xb8,0x44,0xff,0x51,0xfc,0xd5,0x0f,0xeb,0xba,0xd2,0x4e,0x91,0xdb,0xde,0xd4,0x3e,0x1a,0x69,0x73, - 0x93,0x42,0xcb,0xbb,0x6f,0xd1,0x4f,0xaa,0x18,0x1e,0x6f,0x39,0xac,0xae,0xef,0x0f,0xbe,0x1a,0x1c,0x7d, - 0x21,0x01,0x5a,0xbe,0xab,0xd4,0x1f,0x95,0xfa,0xbd,0x52,0x3f,0x54,0xea,0xfb,0x4a,0x7d,0x5b,0xa9,0x9f, - 0x2b,0xf5,0xef,0x4a,0xfd,0x52,0x71,0x20,0x0d,0xbe,0x4f,0x59,0xdf,0xa5,0xaa,0x7e,0xe4,0x34,0xbe,0x33, - 0x46,0xa1,0x5e,0xa2,0x32,0x53,0x25,0xb3,0xa2,0xe4,0xde,0x1c,0x90,0x86,0x67,0x30,0x18,0x04,0xc9,0x9a, - 0xdf,0xe2,0x4b,0xe4,0xee,0x0d,0xa7,0xb5,0xf8,0xb1,0x62,0x59,0x5a,0x20,0x31,0x8a,0xe1,0x72,0xd1,0x20, - 0x5c,0x8b,0xbe,0x85,0x47,0x17,0x0a,0xa4,0x11,0x5e,0x54,0xca,0x25,0x9a,0x64,0xf2,0xc9,0x65,0xca,0x25, - 0x36,0x3a,0xcf,0x46,0x42,0x47,0x0e,0x04,0xcc,0x25,0xe7,0x6c,0x54,0x93,0xa3,0xf3,0x13,0xb9,0x44,0x3d, - 0x9b,0xe6,0x0d,0x4c,0xe7,0xd4,0xb4,0x4a,0xcf,0xce,0xf8,0xa9,0x5e,0x66,0xf3,0x39,0xd7,0x4c,0x7d,0x2f, - 0xb8,0x30,0x1d,0x01,0xe5,0xe5,0x8c,0x50,0x7b,0x4d,0xa8,0x8b,0xf8,0x49,0x76,0xc6,0x54,0xe9,0xaa,0x29, - 0x67,0xe5,0x64,0x55,0xf3,0xd3,0x72,0x9e,0x5e,0x2b,0xdd,0x21,0x0e,0x39,0x42,0xa7,0x35,0xac,0xf3,0x88, - 0x5c,0x9d,0xd7,0x74,0x84,0xd3,0xdc,0x55,0x99,0x32,0x64,0x9d,0xfe,0x35,0xe5,0xf5,0x2b,0xf7,0xd9,0xbc, - 0x98,0xa1,0xe3,0x9d,0x58,0x9e,0x69,0x5e,0xa3,0x7b,0x53,0x95,0x15,0xf2,0x8b,0xd8,0x05,0x45,0x49,0x53, - 0x98,0x03,0x72,0xd5,0x79,0x3e,0x9d,0x52,0xd7,0x70,0x2c,0x36,0x59,0xb5,0xc8,0x0b,0x24,0x12,0x44,0x55, - 0x8d,0xca,0xeb,0x45,0xba,0x54,0x79,0x93,0x2d,0x24,0xc6,0xc9,0xbc,0x2c,0x97,0xca,0x5c,0xdf,0xa4,0xa4, - 0xd1,0xa2,0x44,0x90,0x16,0x85,0xc0,0x12,0x75,0xfe,0x07,0xe1,0xa6,0xb2,0x3e,0x4f,0xc1,0x6b,0xba,0x16, - 0x8a,0x12,0x71,0xa3,0x68,0x9d,0xa9,0x99,0x65,0x4a,0x68,0x88,0x76,0xea,0x55,0xde,0x10,0x39,0x9b,0x4e, - 0xcb,0x62,0x8e,0x78,0x2a,0xbf,0xaf,0x68,0xdf,0x4d,0x95,0x76,0xaa,0x9c,0x2a,0xe1,0x87,0x08,0x26,0xd2, - 0xc5,0x9c,0x80,0x41,0xd9,0x31,0xc1,0xfb,0x92,0x67,0xdb,0x5e,0x98,0xc2,0xe1,0x40,0x69,0xee,0x29,0x13, - 0x30,0x8f,0x90,0x12,0x1c,0xfd,0x5d,0x5d,0xe4,0x75,0x4e,0x25,0x11,0xe0,0x3d,0x4f,0x82,0xf3,0xa6,0x59, - 0xc6,0xf7,0xee,0x5d,0x5e,0x5e,0x0e,0x2e,0xbf,0x18,0x94,0xd5,0xd9,0xbd,0xa3,0xaf,0xbf,0xfe,0xfa,0xde, - 0xd5,0x3c,0x2f,0x3e,0x05,0x2a,0xcf,0x7b,0x0e,0xd8,0x20,0x6e,0x39,0x9f,0x7c,0x05,0x28,0x93,0xf2,0x9c, - 0x6c,0x82,0xf3,0x7c,0x05,0x4f,0xbb,0xbe,0xef,0x77,0x72,0x58,0xe2,0x5a,0xbf,0x92,0x7f,0x2a,0x23,0xcf, - 0xe4,0x68,0x2d,0x2a,0xed,0xfd,0x46,0x88,0x63,0x02,0xc4,0xdd,0x23,0x01,0xbb,0x3a,0x4f,0x6e,0xea,0x0b, - 0x22,0x86,0xb7,0x47,0x70,0xff,0xf0,0xf0,0xf0,0x1e,0xe5,0x05,0xc4,0x33,0x35,0xe7,0x7d,0x25,0x68,0x8c, - 0xff,0xba,0x87,0xbb,0x47,0xf9,0xcf,0xcb,0x17,0xd4,0xec,0x84,0x21,0xf3,0xbc,0x59,0xcc,0xd5,0x69,0x39, - 0xbd,0x56,0x40,0x81,0xea,0x9c,0x96,0x42,0x61,0x68,0x0a,0x31,0xc7,0x95,0xec,0xda,0x26,0x6f,0xe8,0x6f, - 0x3a,0x9d,0x62,0x3f,0xaa,0xb4,0x6a,0xf2,0x09,0xde,0x6b,0xda,0x13,0x04,0x44,0x25,0x6e,0xc7,0xc4,0x77, - 0xf8,0x39,0x52,0xe7,0xf7,0xd5,0xf9,0x17,0xea,0xfc,0x4b,0x75,0xfe,0x95,0x3a,0xff,0xa7,0x3a,0x3f,0xab, - 0xca,0xd5,0x52,0x15,0xe9,0x05,0xad,0x1d,0x8f,0x91,0x00,0xf1,0x42,0x4d,0x09,0x2a,0xe7,0x6a,0xda,0x28, - 0x22,0x66,0xe1,0x5b,0x83,0x74,0x36,0x43,0xcd,0xd4,0x32,0x9f,0xc0,0xd5,0x46,0x9d,0x13,0x97,0xbe,0x38, - 0xa3,0xce,0xd0,0xa0,0xe8,0xf4,0x2a,0xe7,0x6a,0x09,0xa3,0x46,0xb5,0x9a,0xab,0x54,0x9d,0x12,0x1b,0x79, - 0x5a,0xa9,0xd3,0x69,0x4e,0xff,0x4b,0x45,0x8f,0x13,0x02,0x4f,0x8e,0x3f,0xa4,0xf8,0x92,0xf8,0xe9,0x8c, - 0xc8,0xe1,0x85,0xca,0xd5,0xa7,0xd3,0x29,0x55,0x50,0x7d,0x52,0xbf,0xab,0x6a,0xa9,0x08,0x98,0xab,0x66, - 0xa2,0xaa,0xd5,0xe9,0x35,0x51,0xf1,0x75,0xba,0x58,0x2a,0x82,0x6d,0x22,0xb9,0xea,0x65,0x4a,0xa8,0x87, - 0xf6,0x1a,0x31,0x9b,0xf5,0xea,0x94,0xfe,0x2f,0xf9,0xbe,0x58,0xb5,0x52,0x84,0xdc,0xd4,0xe5,0x29,0x84, - 0xe7,0x84,0xa4,0xd2,0xd5,0x34,0x2f,0x15,0xb6,0x03,0x98,0xd8,0x4f,0x8a,0x11,0x03,0xb5,0x74,0x4a,0x60, - 0x27,0x7e,0x60,0x30,0x42,0x4d,0x17,0x04,0xa0,0xab,0x8a,0xf8,0x8f,0x49,0x5a,0x5c,0xa4,0xd4,0xd2,0xa4, - 0xca,0x97,0x0d,0x36,0x85,0x3c,0x10,0xcd,0x0d,0x23,0x37,0x65,0xc6,0x3e,0xa1,0xe1,0xd1,0x7f,0x99,0x2c, - 0x0d,0xd8,0xbc,0x16,0x0d,0xaf,0x4d,0x43,0x0f,0xe7,0xd4,0xa2,0x12,0xe4,0xc6,0x43,0x84,0xf9,0x00,0xcd, - 0x59,0x36,0x9f,0x12,0x25,0xcf,0x9b,0x59,0x09,0x42,0x9d,0xa7,0xa7,0x54,0xfb,0x3c,0x3b,0x03,0x11,0xb0, - 0xc0,0x66,0x06,0x6a,0x95,0xaa,0x35,0x8e,0x2d,0x57,0x0d,0x4a,0x1a,0x1c,0x6b,0x70,0xae,0x45,0xc5,0x84, - 0x02,0xd2,0x1c,0x58,0x27,0x4f,0xe7,0xe5,0x19,0x55,0x52,0xac,0xf8,0x0f,0x50,0x00,0x4d,0xcd,0x82,0x26, - 0xf4,0x5a,0x69,0x0c,0xa8,0x32,0x91,0x39,0x28,0xec,0xf7,0xf2,0x52,0x99,0xa0,0x59,0x8a,0xc3,0x92,0xfd, - 0xbe,0x2a,0x81,0x46,0x66,0x15,0xc8,0xbd,0x06,0xd0,0x82,0x1b,0x83,0x19,0xf4,0x08,0x60,0x55,0x5a,0xe4, - 0x0b,0x94,0x9d,0xe4,0xd5,0x84,0xcf,0x87,0x7c,0xb9,0x24,0x00,0x55,0x93,0x55,0x45,0x3b,0x1c,0x98,0x0b, - 0xa8,0xaf,0x9e,0x50,0x23,0x94,0x45,0x00,0x2a,0xf1,0x7d,0x68,0xb8,0x45,0x73,0x30,0x4b,0x27,0x00,0xc0, - 0x2a,0xcb,0xcf,0x0a,0x39,0x04,0xd5,0x99,0x3a,0x9b,0x5f,0x2f,0xcf,0x09,0x72,0xd2,0xb3,0x0c,0x80,0x9c, - 0xf1,0xe2,0x67,0x90,0x26,0xd4,0x04,0xd4,0x79,0x8d,0xdb,0xcb,0x0e,0xa4,0x10,0xb7,0x44,0x7f,0xa8,0x42, - 0x42,0x48,0xe5,0xfc,0xfa,0xac,0x94,0x5f,0xfe,0x0e,0xe7,0xff,0xff,0xd7,0xde,0x9b,0xaf,0xb7,0x6d,0x2c, - 0xfb,0xa2,0xaf,0x42,0x61,0xe9,0xc8,0x40,0xd8,0xa2,0x24,0xdb,0xc9,0x4a,0x40,0xc3,0xdc,0x8e,0x9d,0xc1, - 0x89,0x1d,0x7b,0xc7,0x4e,0xb2,0x56,0x24,0x46,0x1b,0x22,0x21,0x0a,0x36,0x05,0x70,0x01,0x20,0x65,0x45, - 0xe4,0x03,0xdd,0x7f,0xef,0x23,0x9c,0x27,0xbb,0xf5,0xab,0xea,0x6e,0x34,0x40,0xc8,0x43,0xf6,0x70,0xcf, - 0x1f,0xe7,0xcb,0x17,0x0b,0xec,0x79,0xa8,0xae,0xae,0xaa,0xae,0x41,0x89,0x11,0xb5,0x2a,0xd9,0xc9,0x06, - 0xaf,0x0f,0xff,0xc3,0x35,0x2b,0x86,0x19,0x50,0x53,0xab,0x34,0xb9,0x12,0xdf,0x50,0xf3,0xce,0xb3,0x3c, - 0x11,0x4d,0xfc,0x25,0xc7,0xe5,0xa6,0x29,0x74,0x32,0x54,0x53,0x5e,0x14,0xee,0x42,0x62,0x07,0xb2,0xa9, - 0xd9,0x55,0x5e,0x30,0xfa,0x2b,0x68,0x14,0x09,0x1d,0x04,0x0c,0x62,0xae,0x96,0x05,0x9c,0x62,0x2f,0xd2, - 0xb6,0x53,0xab,0x86,0x10,0xa8,0x53,0xf3,0xf7,0x16,0xc7,0x5b,0x36,0x40,0xb1,0xbe,0x30,0xd9,0xd1,0xf8, - 0x28,0x0b,0xfd,0x4a,0x2b,0xd1,0x56,0x8e,0x12,0xed,0xde,0x9e,0x13,0x1f,0xa9,0x4e,0xb6,0x01,0xfd,0xa0, - 0x09,0xd3,0x0c,0xb0,0x6e,0x72,0xe0,0x6b,0xc9,0x7c,0x06,0x1c,0x2c,0xb0,0x31,0x8c,0x9f,0x5e,0xb5,0xc6, - 0x6c,0x5e,0x15,0x3b,0x07,0xfd,0xd3,0x2b,0xbf,0x84,0x6a,0x0a,0x1b,0x0a,0x4b,0xce,0x6b,0x5a,0x3d,0xc4, - 0x82,0x0c,0x3b,0x36,0xa1,0xd5,0x88,0x29,0xca,0x5b,0x22,0x49,0xda,0x63,0xc0,0x47,0x54,0xd6,0x25,0xb9, - 0xae,0xe8,0xaa,0x7e,0xcd,0xd2,0xe9,0x2d,0xeb,0x71,0xe6,0x00,0x6d,0xb6,0x2f,0x01,0x12,0x45,0x53,0x9f, - 0x15,0x98,0x5a,0xf3,0x35,0xbe,0x41,0x38,0x0f,0x21,0x3f,0x14,0x62,0x06,0x67,0xd3,0xee,0xb2,0x4e,0x1e, - 0x97,0xad,0x63,0x61,0x76,0x4d,0x21,0x71,0x62,0x65,0x6e,0x14,0x18,0xfd,0x57,0x74,0x2d,0xd2,0x69,0xe8, - 0x2e,0xec,0x14,0xd8,0x20,0x7a,0x18,0xbb,0x6a,0xea,0x2c,0xa9,0x33,0x37,0x30,0x1a,0xc0,0xaa,0x3e,0x16, - 0xbc,0xb0,0x35,0xdc,0xaa,0xce,0x8b,0x2a,0x2e,0x6d,0x21,0xa4,0x63,0xdd,0x1a,0x00,0xc4,0xeb,0x06,0x8f, - 0x6d,0x74,0x07,0xca,0x0e,0xb4,0x5a,0xff,0x2d,0xe1,0x15,0xd0,0x44,0x78,0xbb,0x67,0x86,0x51,0xa2,0x4e, - 0x6a,0x80,0x15,0x47,0xc2,0xbf,0x41,0xa6,0x86,0x63,0xcb,0xd5,0x6f,0xd1,0xe0,0x35,0x85,0x36,0x1b,0x3a, - 0xe7,0xda,0xe1,0x84,0xef,0x11,0x15,0xbd,0x51,0x88,0xd5,0x72,0x99,0xc2,0x1b,0x99,0xf1,0x30,0x66,0x14, - 0x64,0xad,0xef,0x30,0xf6,0x10,0x81,0x2d,0xad,0x7d,0x86,0x79,0x63,0x35,0xab,0xe7,0xf1,0x4b,0x62,0x46, - 0xfd,0x4b,0xd2,0xd9,0xff,0x2f,0xe8,0x7f,0x95,0xa2,0xff,0xeb,0x6e,0xcc,0x71,0x4a,0x43,0xb8,0x48,0xa9, - 0xd1,0xb1,0x3a,0xab,0x1b,0xfe,0x97,0x6d,0xf8,0x5f,0xb4,0x37,0x57,0x75,0xc6,0x0f,0x36,0xe3,0x07,0xca, - 0x78,0x97,0x46,0x07,0xc7,0x27,0x57,0xc1,0xa0,0x7f,0xb2,0x7f,0xba,0x7b,0x32,0x1e,0x1f,0xa8,0xb7,0x29, - 0xbc,0x6b,0x11,0x8f,0xb1,0xcb,0x1f,0x13,0x4f,0x3d,0xae,0x6b,0xd3,0x9d,0xad,0x6b,0x4f,0x69,0x13,0x1f, - 0xd5,0x19,0x0b,0x9b,0xb1,0x80,0xc1,0x5d,0xda,0x69,0xc7,0xcb,0x51,0xe5,0x0e,0x42,0x7f,0xd0,0x0f,0x0e, - 0x86,0x16,0x82,0xc4,0xcc,0xf2,0x60,0xe8,0x8f,0x76,0x8e,0xff,0xf0,0xc7,0x9f,0x9d,0x04,0xc1,0xc1,0xac, - 0x5b,0x23,0x0d,0x06,0x04,0xb5,0xe3,0x56,0xa9,0x08,0xed,0x01,0xfb,0x0e,0x0a,0x91,0xfb,0x31,0x62,0xa2, - 0xea,0xf0,0x3c,0xe3,0xa8,0xa8,0x43,0xf9,0x30,0x10,0x55,0xf4,0xff,0x6b,0x9a,0xf5,0x1f,0xfb,0xfb,0x07, - 0xea,0x05,0x7d,0x9c,0x94,0x9f,0xed,0xa4,0x97,0xb0,0x9c,0x8e,0xb3,0x6a,0xf7,0x40,0xbd,0xd9,0xe6,0x37, - 0xa8,0xdb,0xd7,0x3a,0x24,0x3c,0x01,0x4a,0x22,0xb1,0xfc,0x00,0xa3,0x96,0xdf,0xaa,0x5c,0x93,0x8d,0x17, - 0xba,0x6c,0x76,0x6b,0x59,0xeb,0x37,0xef,0x45,0xca,0xb1,0x87,0x3c,0x3b,0x00,0x37,0x30,0x5c,0x11,0x7d, - 0x93,0xfa,0xe2,0x90,0xbe,0xf9,0x46,0x9e,0x35,0x94,0x6c,0xba,0xde,0x75,0x75,0xbf,0x60,0xad,0xf1,0xbc, - 0x2b,0x43,0x73,0x13,0x09,0x9e,0x9e,0x01,0x76,0x25,0x04,0x21,0x81,0xe7,0xf3,0xfc,0x4f,0xe0,0x67,0xe2, - 0x48,0xd5,0x37,0xed,0xdd,0xa3,0x01,0xfc,0x5e,0x44,0xbf,0x17,0x1f,0xf0,0xdc,0x28,0xcd,0x5b,0x2f,0x7c, - 0x3b,0x6c,0x79,0x8d,0x88,0x10,0x50,0x42,0x64,0xe9,0xfa,0xef,0x26,0x9a,0x5e,0x2f,0x71,0xde,0xc9,0x3e, - 0xc6,0x2b,0xa1,0xf6,0x75,0xf1,0x2c,0xed,0x70,0xa8,0xf9,0x2c,0x3d,0xce,0xc6,0x7d,0x56,0x05,0x2e,0x9a, - 0xbd,0x14,0xd8,0xf1,0x97,0x35,0x94,0x5e,0x5a,0x28,0xbd,0x24,0x28,0x7d,0xda,0x9e,0xa7,0xb6,0x05,0x4f, - 0x6c,0xf8,0xf9,0x90,0x78,0xf4,0x7d,0xfe,0xe9,0xa9,0xc4,0x89,0x42,0x5f,0xa7,0xef,0x57,0xb9,0xce,0x72, - 0x62,0x2b,0x3b,0xd9,0x22,0x74,0xf5,0x54,0x1d,0x9e,0x99,0x33,0xf9,0xa7,0x4e,0x75,0xdb,0xe4,0x04,0x6e, - 0xb3,0x1d,0xaf,0xd9,0xc9,0xd6,0x6d,0x62,0x6e,0x4f,0x52,0xf6,0x25,0x86,0x48,0xcb,0xdf,0xa6,0x3a,0x7e, - 0x24,0xfb,0x8c,0xf5,0xd4,0x4f,0xf4,0x5b,0x08,0x2c,0xfe,0xf9,0xbc,0x95,0xfd,0x73,0xe3,0x37,0xdd,0x24, - 0x9e,0xfa,0xad,0x59,0xe3,0x6b,0xf7,0x27,0x0a,0x0c,0x9f,0x40,0xf8,0x6f,0xfd,0x34,0x68,0x07,0x66,0xe0, - 0x51,0x9d,0x66,0x1c,0xf2,0xc0,0x16,0xb8,0x62,0x20,0x6b,0x15,0xf3,0x31,0x22,0x27,0x02,0xa6,0x33,0xae, - 0xab,0x56,0xea,0x37,0x19,0x1e,0x27,0xb7,0x3b,0x76,0x47,0x77,0x7b,0xbf,0xcd,0x52,0xfe,0x6f,0xb6,0xdb, - 0x47,0xcd,0xb9,0x5e,0x35,0x13,0xb9,0x53,0xd1,0x42,0xf8,0x15,0xab,0x3c,0xd2,0xcd,0x82,0x4d,0xa5,0xd3, - 0x6d,0xcb,0x7d,0x0b,0xe2,0xf6,0xbd,0x99,0x03,0x08,0x89,0x7c,0x29,0x11,0x84,0xb5,0x3b,0x84,0xce,0x0b, - 0x15,0x4f,0xe6,0xbf,0x00,0x2d,0x9d,0xf9,0x36,0x60,0xc7,0x9a,0x78,0x94,0xc0,0x57,0xeb,0xdd,0xe0,0x40, - 0x7d,0xef,0xa0,0xa7,0xad,0x98,0x0e,0x42,0xe5,0x3d,0x76,0xee,0x7a,0xd0,0x76,0x15,0x8b,0xc1,0x1e,0x37, - 0xa8,0x0b,0xa8,0xb9,0x3a,0xa1,0x14,0x38,0x9a,0x9b,0x38,0x22,0x97,0xc8,0x19,0x4d,0x5f,0x54,0xb1,0x72, - 0x0d,0xc4,0xb8,0xa4,0x79,0x0d,0x95,0xfb,0x95,0x85,0xea,0x88,0xb4,0xac,0x0d,0x9c,0x3a,0xa3,0xeb,0x06, - 0xf0,0x22,0x64,0x9f,0x49,0x74,0x95,0x28,0x1e,0x40,0x5f,0x8b,0xf2,0xe4,0x07,0x04,0xc0,0x28,0x88,0x6b, - 0xf7,0x88,0x3b,0x52,0xdd,0x8d,0x99,0x33,0x5e,0x62,0x44,0x84,0x1f,0xfc,0x65,0xd0,0x50,0x5c,0x34,0x41, - 0x2f,0x1c,0xd5,0x9d,0x64,0x18,0x77,0x98,0xe2,0x48,0xf4,0xe8,0x8e,0x1c,0xf3,0x60,0x5e,0xf9,0xb9,0x36, - 0x0e,0xe4,0x51,0xe6,0x91,0x1b,0x8a,0x55,0xab,0x2b,0xe5,0x84,0x9e,0xf2,0x07,0x6f,0x07,0x86,0x04,0x30, - 0x68,0xaa,0xdf,0xcf,0x83,0x3a,0xf5,0x38,0x1f,0xfb,0xab,0x94,0x16,0x79,0xa8,0x0d,0x0d,0x62,0xa3,0x18, - 0x34,0x81,0x72,0x0a,0x5e,0x8d,0x69,0xcc,0x1b,0xbb,0xc6,0x6a,0x47,0x22,0x25,0xc8,0x2f,0xb3,0xb8,0xb2, - 0xe4,0xea,0xdc,0xf1,0xab,0xcd,0x41,0x2b,0x89,0x14,0xa3,0xbd,0xbe,0x08,0x46,0x3e,0xb7,0x04,0xb1,0x7b, - 0x39,0x7a,0xbc,0x45,0x36,0x23,0x59,0x5d,0x04,0x61,0x2b,0xc7,0xbf,0x80,0x58,0x7c,0x81,0x47,0x87,0x39, - 0x75,0x79,0x8e,0x45,0xad,0x78,0x51,0xa7,0xb2,0xc2,0x13,0xf8,0x78,0xe1,0x21,0xd2,0x50,0xc2,0xcc,0x77, - 0xbc,0x41,0xdb,0x2e,0x1f,0xb7,0x49,0x64,0xf1,0xe4,0xdc,0xaa,0xdb,0x2a,0x5c,0x13,0xe3,0x5d,0xa5,0x1d, - 0x5f,0xc2,0x25,0xbf,0xa1,0xdc,0x54,0xc6,0x58,0x4a,0x87,0x7c,0x17,0x28,0x15,0x49,0x2f,0x56,0xd5,0x3c, - 0xa6,0xa8,0xce,0x62,0x9d,0xa9,0x91,0x31,0x8d,0x90,0x75,0xdb,0x06,0x05,0xe8,0x05,0x9d,0xb3,0x17,0xa9, - 0xa9,0x68,0xc7,0x2d,0xd8,0x8d,0x13,0x13,0x91,0x81,0xb2,0x66,0x23,0xce,0x99,0x9a,0x68,0xc5,0xd6,0x1b, - 0xa3,0xe5,0xc7,0xe1,0xda,0x9d,0xa3,0x29,0xa2,0xe5,0xc7,0x4d,0x1e,0x41,0xea,0xd0,0xde,0xb8,0xe4,0x7d, - 0xc2,0xa1,0x54,0x6d,0xcb,0x73,0x87,0x2e,0xd9,0x8a,0x9a,0xd7,0xd4,0xbe,0xad,0x6a,0x38,0x4c,0x83,0xd8, - 0x67,0x95,0xe2,0x4c,0xaf,0x2d,0x3f,0x36,0x41,0xd1,0x90,0x89,0x83,0xc2,0xac,0x3e,0x86,0xd4,0xe8,0x9c, - 0x0b,0x6f,0xed,0x95,0x76,0x60,0x93,0x18,0x57,0xdd,0x8e,0x1f,0x69,0xe3,0x1d,0x63,0xd8,0x65,0xf8,0x16, - 0x74,0x9a,0x06,0xea,0xa3,0x56,0x87,0xbb,0x97,0x30,0x56,0x8e,0x1b,0x69,0xd9,0xfa,0xa6,0x05,0xdb,0x5b, - 0x3d,0xa8,0x7a,0x92,0x45,0x60,0xd2,0x88,0xca,0xc1,0x51,0x63,0xf4,0x77,0x65,0xc2,0x39,0x6b,0x4c,0x43, - 0x7b,0x71,0xa5,0x8b,0xd1,0x2f,0xf3,0x29,0xc5,0x15,0xf2,0x52,0x03,0x51,0x5d,0x1b,0xbb,0xb0,0x98,0x56, - 0x50,0x18,0xd4,0xbd,0xad,0x23,0xc1,0x20,0x78,0xdc,0x64,0x5e,0xf4,0x5a,0x83,0xcc,0x93,0x85,0xae,0xa7, - 0x90,0x20,0x80,0x10,0xea,0xd7,0xd6,0x95,0xc0,0x2f,0x6c,0x99,0x64,0xdf,0x26,0x4a,0xdd,0x2e,0xb6,0xe5, - 0xb6,0x86,0x55,0x1d,0x6c,0x08,0xc8,0x3e,0x3a,0x45,0x88,0xce,0x8c,0x5d,0x99,0xeb,0x86,0xcd,0x4f,0xeb, - 0x1c,0xf1,0xaf,0x75,0x54,0x2f,0xc2,0x85,0xeb,0xd9,0x51,0x6f,0x77,0xf1,0x20,0x4a,0x79,0x0f,0x62,0x9f, - 0x83,0xe3,0xe4,0xaa,0x19,0xb7,0x68,0x65,0x17,0x8e,0xa3,0xf5,0xb8,0x37,0x47,0x2a,0x80,0x8b,0x31,0xa5, - 0xf5,0x7d,0x80,0x01,0x6a,0xa6,0x08,0x13,0xaa,0x5d,0x9e,0xbd,0x35,0xc9,0xf5,0xce,0x67,0x81,0x4d,0x24, - 0x6a,0x50,0x07,0x5e,0x91,0xcd,0xa9,0x03,0xaf,0xeb,0x88,0x3e,0xec,0xf9,0xbf,0x6d,0xfb,0x88,0x81,0xaf, - 0x7c,0x27,0x1c,0x44,0x31,0x76,0xc6,0x7e,0xd9,0xbc,0x51,0xea,0xb9,0xea,0x6b,0x90,0x5d,0xc0,0x55,0xe2, - 0xb3,0x8b,0xfe,0x30,0xf4,0x8e,0xfc,0x19,0xde,0xe6,0x56,0xb8,0x17,0x43,0x04,0x38,0x82,0x52,0x90,0x8b, - 0xcf,0x66,0x02,0xd4,0x32,0x50,0x18,0x6f,0x6a,0xc4,0x16,0xd8,0xe8,0x44,0xd1,0x5b,0x7d,0x6b,0xdb,0x60, - 0xb2,0x43,0xbd,0x4e,0xc1,0xc8,0xb1,0xa0,0xed,0x47,0x69,0xd8,0x56,0x6d,0x6e,0x28,0x04,0x13,0xd9,0xb4, - 0xbf,0xef,0x54,0xc0,0xdb,0x58,0x52,0x47,0x98,0xaa,0x33,0x22,0xda,0xd4,0x8d,0x6f,0x6e,0x22,0x3a,0x0c, - 0x9d,0x76,0xb6,0xbc,0x3b,0x00,0x3a,0xad,0x04,0xc1,0x3f,0xcd,0x0d,0x39,0x43,0xb4,0x8c,0x40,0x99,0x23, - 0xda,0x18,0xbf,0x3e,0xa2,0x92,0x86,0x23,0x8a,0x05,0x18,0x4a,0x2f,0xee,0x09,0xad,0x74,0xe0,0x5d,0x14, - 0x0b,0x4c,0x84,0x2a,0xe8,0x79,0xf3,0x11,0xca,0x65,0x80,0xce,0xf6,0x40,0xbd,0x19,0xe4,0x4b,0x29,0x01, - 0xb9,0x08,0xd6,0x53,0x13,0x67,0x33,0x65,0x9c,0x5e,0xe0,0x5f,0xd6,0x77,0x41,0x24,0xd7,0x2d,0xbf,0x97, - 0x01,0x9d,0xc3,0xb4,0xe1,0x39,0xd3,0x78,0xb7,0x9a,0x06,0xa3,0x33,0xbf,0x90,0xf5,0x40,0x6c,0xe1,0xb4, - 0xd3,0x6b,0xe6,0xa1,0x65,0xfe,0x88,0x2a,0xb3,0x9e,0x3d,0x19,0x68,0x0b,0xf7,0x67,0xca,0xce,0x45,0x23, - 0x89,0x14,0x86,0x0b,0x8b,0x4b,0x8b,0x3f,0x4f,0x02,0x00,0xf9,0xf9,0x82,0xc9,0x9b,0x20,0xed,0xd0,0x73, - 0x29,0x3a,0x30,0xaa,0xe5,0x17,0x97,0x88,0x30,0x2c,0x87,0xaa,0xf2,0xe7,0xbc,0x8a,0xcb,0x68,0x5e,0x2f, - 0xe9,0x32,0x5a,0x5a,0x8f,0x01,0x94,0xb0,0xc4,0x9a,0x09,0x81,0x3b,0x45,0xc3,0x86,0x94,0x58,0x38,0xf6, - 0xa3,0x72,0x88,0xd0,0xd6,0x39,0xce,0x28,0xc3,0xfe,0x92,0x36,0x76,0x49,0x1b,0x2b,0x9c,0x54,0xbd,0xb1, - 0xcb,0xc0,0xa4,0x1d,0x2f,0xc7,0xd2,0x76,0xc7,0x00,0xa4,0x84,0xed,0x7e,0x93,0xf8,0xa9,0x5c,0x21,0xa3, - 0xca,0x9f,0x72,0xa9,0x45,0x30,0x9a,0xc2,0x61,0x80,0x43,0xcd,0x19,0x0f,0xb2,0x65,0x7d,0x03,0xe8,0xa8, - 0x8a,0xc4,0xfe,0x4e,0xe9,0xff,0x45,0x54,0x3b,0x68,0x51,0xab,0x08,0x12,0x00,0x35,0xa3,0x3f,0x8b,0xb1, - 0x3a,0xb5,0x1a,0xdb,0x94,0x75,0x16,0xa5,0xc8,0xba,0xa2,0x3f,0xa7,0x63,0xf5,0x2e,0xda,0x29,0x87,0xe7, - 0x0f,0xd0,0xd5,0xf4,0x41,0x74,0x4a,0x77,0x93,0xbf,0x0a,0x46,0xa8,0xde,0xef,0x9f,0x8f,0xc3,0xc4,0xa7, - 0x33,0x8c,0x56,0xf6,0xf7,0x17,0xe3,0xf0,0x6b,0xca,0x54,0x67,0x74,0xa8,0xaf,0xf1,0x17,0xc4,0x99,0x29, - 0xc8,0xad,0xf6,0xfb,0xd3,0x71,0x80,0x42,0x33,0x75,0xc5,0x85,0xe8,0x2f,0x0a,0x99,0xfa,0xdc,0xe7,0xfe, - 0xfe,0xa9,0x14,0x5a,0xe9,0x42,0x2b,0x29,0xf4,0x6e,0x8b,0x0e,0xc8,0xd4,0x4a,0xdf,0xbb,0x8e,0x28,0xce, - 0x9f,0x09,0x0a,0xa9,0x7b,0x6e,0x34,0x3a,0xd3,0xc3,0x9b,0xc9,0xf0,0xba,0x1a,0xe5,0x06,0xa4,0x69,0x67, - 0x68,0xf5,0xf8,0xfd,0x44,0xdc,0x5d,0x4c,0xa2,0x5f,0x61,0xd9,0x7e,0xae,0x16,0x50,0x04,0xf4,0x41,0xd0, - 0x9f,0x71,0x54,0xd2,0xd1,0xe4,0x98,0x3f,0xc6,0x1d,0x6e,0x3e,0x2c,0xa9,0x1d,0x9d,0x13,0x2d,0x9c,0x0e, - 0x73,0xc3,0xa2,0x03,0x3d,0xe6,0x63,0xc3,0x23,0xec,0xed,0x7d,0x0d,0x3a,0x27,0xb6,0x14,0x7c,0x4e,0x34, - 0xee,0x19,0x35,0x71,0x88,0xde,0x46,0x31,0x7d,0xe7,0x4a,0xcf,0x9f,0xe7,0x35,0xa7,0x71,0x2e,0xc7,0x7a, - 0x72,0x73,0x99,0x1c,0x52,0x8c,0x2f,0xdb,0xae,0x89,0xce,0x9d,0x89,0x06,0x61,0xb3,0xcd,0x7a,0xbe,0xc3, - 0xf3,0x87,0x0b,0xa8,0xce,0xd3,0x14,0x09,0x20,0xfa,0x47,0xe3,0x40,0x02,0x32,0xca,0x0f,0x7d,0xe8,0xa7, - 0xea,0x14,0x07,0x7f,0xfa,0xf0,0x74,0x6f,0xef,0xd2,0x3f,0x54,0xb2,0x2c,0x1b,0x7f,0xc2,0x11,0x3d,0x01, - 0x94,0x21,0x03,0x2d,0x28,0xbc,0x9a,0x84,0x6a,0x8a,0x43,0xa9,0x30,0xee,0xe9,0x0b,0xfa,0xcb,0x64,0xd7, - 0x02,0x93,0xad,0xc1,0x12,0x44,0x31,0xc0,0x7f,0x84,0xf6,0xa7,0x94,0x37,0xad,0x23,0x1f,0x86,0x1f,0x6c, - 0x36,0x94,0xfc,0x1d,0x8e,0x57,0xc3,0x77,0x7b,0x47,0x39,0x7d,0xca,0xd4,0xed,0x98,0x21,0x2f,0xab,0x26, - 0x6a,0xd8,0x38,0x57,0xd5,0xa9,0x70,0x21,0x8c,0x5e,0xc1,0x78,0xa2,0x96,0x0d,0x2f,0x1d,0x98,0xaf,0x2e, - 0xca,0xba,0x68,0x92,0x3d,0xc2,0x28,0x15,0x2e,0x7f,0x54,0x10,0x70,0xd4,0xd8,0x5f,0xef,0xa4,0x5f,0xb0, - 0x27,0x55,0x3b,0x80,0xb3,0x16,0xe3,0xa9,0x26,0x88,0xd2,0x14,0xcf,0x10,0x59,0xdd,0xf0,0x43,0x45,0x33, - 0xce,0x50,0x94,0xaf,0xd7,0x4b,0x9a,0x0c,0x90,0x9e,0x2a,0x84,0xb4,0x57,0x82,0x90,0x0d,0xdf,0x22,0x17, - 0x97,0x8b,0xf7,0x2d,0x54,0x76,0x5d,0x13,0xd0,0xac,0x26,0x5c,0xcf,0x80,0xbc,0xd4,0x57,0x3d,0x2d,0x5d, - 0x37,0x03,0x5b,0x88,0xa9,0x20,0x25,0x76,0x60,0xed,0xc0,0xe1,0x5f,0xb1,0xae,0xb6,0xd9,0x49,0xa0,0x09, - 0x82,0xf3,0x80,0x03,0x4c,0xc3,0x85,0x17,0x13,0xe2,0xa0,0xba,0x4b,0x9f,0x13,0xb9,0x57,0xdb,0xa1,0x09, - 0x13,0xe7,0x8c,0x40,0xc7,0x43,0x91,0xa6,0x62,0xa6,0xfc,0xea,0x44,0x1b,0x7e,0x83,0x2f,0x0e,0xb3,0x2f, - 0x0b,0xcc,0x0d,0x5c,0xe4,0x79,0x5a,0x94,0x15,0xf7,0x48,0x68,0xe6,0x70,0xb8,0x7a,0x70,0x6e,0xf6,0x6a, - 0x65,0x5c,0xdb,0x5d,0xac,0xd7,0x3b,0x67,0xc4,0x2f,0x9e,0x1f,0xaf,0xc6,0x9a,0x33,0x5d,0xc0,0x8c,0x5c, - 0x58,0xd9,0x8b,0xe8,0xa2,0xf1,0x7e,0x80,0x1a,0x8b,0xf5,0xfa,0xa2,0xd9,0x31,0x71,0x31,0x38,0x48,0x69, - 0x60,0x56,0x53,0xf6,0xf5,0xd2,0x75,0xb3,0x32,0x83,0x34,0x6f,0x89,0x19,0xef,0x3c,0x22,0x5c,0x1c,0xdc, - 0x5c,0x62,0x90,0x53,0xb9,0x5b,0xa4,0xb3,0x9d,0x4b,0x6c,0x30,0x6b,0x96,0xc0,0x39,0x9c,0xfe,0x34,0x6e, - 0x26,0x85,0xa8,0xd8,0xe1,0x80,0x5e,0x7c,0x30,0x34,0x81,0xa5,0x7f,0x9b,0x67,0xaf,0x1d,0x09,0x13,0x73, - 0xa5,0xde,0xa9,0xb7,0x10,0x52,0xef,0x22,0x76,0x7c,0x3e,0x5d,0xce,0x93,0x52,0x3d,0xa6,0x6f,0xd0,0x38, - 0x2f,0xb4,0xda,0xd7,0x15,0xad,0xc9,0xd5,0x83,0xcb,0xb4,0x06,0xe0,0x2b,0x26,0x2b,0xdf,0x1e,0x5f,0xa6, - 0xc7,0x57,0xe3,0x31,0x3b,0x81,0xe4,0x58,0xac,0xbb,0x75,0x91,0x77,0x44,0x5e,0xec,0x1e,0xbf,0x1b,0xeb, - 0x32,0xb4,0x53,0xa6,0xb8,0xf0,0x17,0x6e,0x1e,0x5f,0xc8,0x8f,0x58,0x6f,0x04,0xef,0x6a,0xa2,0x35,0xa3, - 0x83,0x87,0x3d,0x76,0xbe,0x5f,0xb1,0xb0,0x95,0x50,0x71,0x87,0x7b,0x42,0x7d,0x5b,0x22,0x3c,0x9b,0xf6, - 0xbe,0xc4,0xb7,0xb7,0x78,0x88,0x81,0x3f,0x55,0x18,0x68,0x03,0xba,0x60,0xaf,0x39,0xc7,0xa2,0xc6,0x3e, - 0x10,0x1d,0xca,0x3b,0x2e,0x47,0x23,0x1c,0x0e,0x4c,0xfe,0x35,0x7b,0x7c,0xe2,0x8d,0x64,0xec,0x8d,0x0d, - 0x08,0x84,0xe6,0x9a,0x2a,0x1d,0xe6,0x1c,0xfd,0x2c,0xb8,0x37,0x89,0xa0,0x66,0xea,0xc1,0x05,0x0f,0xc1, - 0x70,0xcd,0x4f,0x3c,0x66,0xa5,0x2c,0x43,0xdd,0x35,0xd2,0x61,0xc5,0x0d,0xef,0x9e,0x7e,0x4e,0x45,0xce, - 0xa4,0x7d,0x7b,0x50,0x4e,0x79,0x88,0xc8,0x2f,0x86,0x2f,0xa2,0x42,0x15,0xe6,0x39,0xe6,0xb1,0x79,0x84, - 0xf2,0x5f,0xb4,0xe2,0xcf,0xc8,0x33,0x8d,0x96,0x1c,0xaa,0x17,0x62,0xf7,0x76,0x21,0xc4,0x20,0x5d,0x7f, - 0x0d,0x41,0xd9,0x05,0x4f,0x50,0xd6,0xe1,0x62,0x70,0x2a,0x02,0xdb,0x33,0xb9,0x0f,0x66,0xad,0x7b,0xf8, - 0x02,0x6a,0xbf,0x44,0xb8,0x18,0xfc,0x67,0x00,0xf6,0x2a,0x32,0x69,0x04,0x03,0xa0,0x98,0x86,0x57,0xc3, - 0xfa,0x5e,0xdc,0x25,0xb0,0xd8,0xed,0xe2,0x5d,0x76,0x1d,0xde,0x65,0x77,0xec,0x5f,0xf1,0x48,0xae,0xc4, - 0xe5,0x3d,0x0f,0xf5,0x5d,0xdd,0xc8,0x23,0x6a,0xe4,0x51,0x07,0xe7,0xfb,0xa8,0xe6,0x7c,0x1f,0x31,0xe7, - 0x7b,0x25,0x90,0xf4,0x2a,0xba,0xda,0xc2,0xad,0x68,0xfe,0xd5,0x80,0xd5,0x84,0x6b,0x5b,0x87,0xd7,0xd1, - 0xd1,0xf0,0xf5,0x83,0x57,0xc4,0x22,0x5a,0x53,0x95,0xd7,0x70,0x28,0x8d,0x84,0xe3,0xd7,0x63,0x43,0x7b, - 0xff,0x96,0x60,0x7c,0x57,0xd4,0xaa,0x8e,0x6e,0x0b,0xaf,0xae,0x7c,0x6f,0x81,0xe5,0x3b,0x54,0x87,0xfa, - 0xc2,0x22,0xfe,0x07,0xce,0x80,0x8b,0xda,0x46,0x4c,0xf6,0x0f,0x01,0x65,0x30,0x27,0xde,0x8a,0x17,0x20, - 0xfd,0x6d,0x39,0xff,0x46,0x1f,0xb4,0x70,0x91,0x2a,0x7d,0xfe,0xc2,0xe3,0x33,0x9a,0x4a,0xaa,0x1e,0xa7, - 0xea,0x51,0xaa,0x5e,0xa6,0xea,0x59,0x36,0x32,0xd2,0xfc,0x67,0x95,0x32,0x82,0x35,0x7c,0x0b,0x3c,0xb5, - 0x9e,0xff,0x76,0x24,0xa2,0x97,0x98,0x57,0x5c,0xe4,0x57,0xa3,0xd7,0x95,0xc4,0x35,0x83,0xc3,0xcc,0x4d, - 0x78,0xb3,0x19,0x1b,0x97,0xca,0xa7,0x29,0xfc,0x97,0x7f,0x9b,0x11,0x2d,0x68,0x1e,0x39,0xb6,0x03,0x8b, - 0xc8,0xfb,0x38,0xb5,0x3e,0xb9,0x88,0xb3,0x59,0xe2,0xb9,0xf6,0xa8,0xa2,0x85,0x5f,0x57,0x66,0x29,0xbd, - 0x16,0xae,0x0d,0x59,0xc9,0x77,0xa5,0xe3,0x20,0x3e,0xc7,0x18,0xb4,0xbe,0x99,0x71,0x9a,0xfe,0x67,0x0a, - 0xf7,0x69,0xd8,0x9d,0x64,0xda,0x7a,0x10,0x85,0x10,0xc9,0xbc,0xcc,0xdb,0xd0,0x8e,0xc2,0x93,0xec,0xed, - 0xed,0xf0,0x5f,0x62,0xc4,0xb4,0x7e,0xe5,0xe8,0x47,0x1f,0xb1,0x53,0xcc,0x65,0xde,0x18,0xe1,0x9f,0x0e, - 0x4b,0x21,0xf6,0x5c,0x53,0x2d,0x4a,0xda,0x04,0xe1,0x37,0x95,0x7c,0xbb,0x9e,0x9e,0x6c,0xab,0x84,0x2f, - 0x10,0x72,0x4d,0xcc,0x4f,0xac,0xa6,0xaa,0x7a,0x02,0x1f,0x48,0xa2,0xb6,0x00,0xcd,0x11,0x3b,0xba,0xf5, - 0x7a,0x9a,0xfa,0x12,0x35,0x8e,0x1d,0x50,0xa0,0xa5,0xe7,0x26,0x50,0x6c,0x54,0xd5,0x41,0x63,0x95,0xf3, - 0xcd,0xde,0x1c,0x59,0xa7,0x78,0x7b,0xdd,0xcd,0x72,0xff,0x44,0xc3,0x7a,0x9e,0xdd,0x56,0x08,0x73,0x13, - 0xa9,0x2c,0xa1,0x48,0xf8,0xe7,0xff,0x96,0x67,0xf1,0xde,0x92,0xfc,0xf2,0x41,0xcd,0x22,0xd6,0x0e,0x8f, - 0x54,0x36,0x09,0x78,0x08,0x6f,0xc2,0xed,0xf5,0xda,0x7a,0xab,0xe6,0xd8,0xeb,0xcd,0xbd,0x09,0x6e,0xb6, - 0xd6,0x72,0x68,0xde,0x2c,0xed,0x8a,0x8a,0x1a,0xf5,0x87,0xd7,0x77,0x98,0xb6,0xa3,0xff,0xd5,0xaa,0x11, - 0x3b,0x50,0x2a,0x67,0xd7,0x95,0x1b,0x59,0x65,0xa3,0x5e,0x31,0xaa,0xc4,0x5e,0xfa,0xd6,0xc0,0x81,0x4f, - 0x31,0x40,0x00,0x7c,0xa8,0x4b,0xf2,0xe3,0x38,0xd1,0x38,0xbf,0xe2,0xc7,0xde,0x1e,0xe5,0xeb,0x0c,0x60, - 0x7a,0x03,0xb1,0x7a,0x17,0xd8,0x3f,0xe3,0xbf,0x08,0x5e,0x25,0x94,0xe7,0x9f,0xa9,0xc2,0xc9,0x0a,0x45, - 0x17,0xb6,0xbd,0x3e,0xda,0xd2,0xd8,0x34,0x06,0x4f,0x0c,0x3f,0xf3,0xd3,0xa8,0x56,0x2d,0x11,0xb7,0x29, - 0x8e,0x40,0x5d,0x41,0x5f,0xfc,0x94,0x56,0xa6,0x48,0x67,0xf0,0xff,0xfa,0x24,0x2d,0xa1,0x1c,0x19,0x79, - 0x19,0xed,0x83,0xd6,0xb9,0xe3,0x37,0xd5,0xa9,0x64,0x20,0x0a,0x7c,0x2b,0x69,0x58,0x10,0xa7,0x3d,0xf2, - 0xb3,0xfa,0xd8,0xe3,0x8a,0x7b,0x45,0xdd,0xba,0xa7,0xa1,0x55,0x29,0xca,0x37,0x41,0xd0,0x6e,0x29,0x2a, - 0x46,0x79,0x28,0x3d,0x77,0xea,0x17,0x6c,0xcd,0x70,0x58,0xb4,0x56,0xd2,0xff,0xe0,0x84,0xb7,0x06,0x5a, - 0x8c,0x3e,0x34,0xd4,0xae,0x05,0xa2,0xbd,0x7c,0xfd,0x81,0x6a,0x7a,0x22,0x9d,0xd3,0xec,0x6a,0x52,0xcf, - 0x1c,0xaa,0x15,0x59,0xc7,0xe6,0x6a,0x86,0x80,0x4f,0xe3,0x87,0xc7,0xc7,0x50,0xf3,0x23,0x41,0x0d,0x1b, - 0x85,0x69,0xcb,0x2e,0x08,0x9a,0xe3,0x22,0xfc,0x3a,0xcf,0xe1,0x02,0x57,0x4d,0xca,0xd2,0x7e,0x03,0xb8, - 0x4c,0x31,0x20,0x12,0xf3,0xed,0xbc,0xce,0xea,0x14,0xe7,0x6d,0xd5,0x2d,0x63,0xde,0x55,0xdd,0x52,0xad, - 0xb4,0xad,0x87,0x5b,0xb7,0x6c,0x47,0xba,0x0c,0xb7,0x23,0xe9,0xd6,0xb2,0xad,0x0e,0xa7,0xcb,0x82,0xdf, - 0x05,0xc3,0x63,0xb1,0x69,0x53,0x3a,0x5d,0x14,0x3b,0xc6,0x1b,0xf5,0x83,0x59,0xa0,0xc6,0x63,0xad,0x58, - 0xca,0xfd,0x98,0x36,0xcc,0xe7,0xda,0x76,0x60,0x8e,0xf3,0x34,0xb1,0xe2,0x32,0xd6,0x5b,0x4d,0x9b,0x30, - 0x66,0x8d,0x08,0x2e,0xf1,0x8c,0x25,0x2f,0xf5,0xdd,0xa1,0xfd,0x18,0x8d,0xff,0x0e,0x29,0x21,0x81,0x6e, - 0x33,0x62,0xab,0x98,0x45,0xe1,0x69,0xac,0xb4,0xd1,0x5b,0xdd,0x36,0x44,0xf8,0x1f,0x19,0xae,0x70,0x18, - 0xd4,0x7e,0x2c,0x9d,0x87,0x33,0x4b,0x7b,0xbb,0xa6,0xa3,0x35,0x5b,0x34,0x14,0xf1,0xdd,0x6f,0x15,0x7b, - 0xd6,0x21,0xd2,0x73,0x52,0x67,0x19,0xff,0xaa,0x4c,0xa5,0xd1,0xfa,0x99,0x9c,0x5f,0x81,0xa6,0xca,0x40, - 0x47,0x64,0xf7,0x4e,0x4f,0xeb,0xee,0xf6,0xbd,0xbe,0x75,0x27,0xd7,0xf7,0xf6,0xbd,0xe1,0x84,0x45,0x71, - 0xa2,0x68,0xcb,0xdf,0xa3,0x89,0x13,0xde,0x74,0xd9,0xc7,0x25,0x81,0x4f,0x2f,0x5c,0xf6,0x27,0x6c,0x88, - 0x56,0xf8,0x13,0x91,0x81,0xe0,0x11,0x5a,0xbf,0x7f,0x48,0x8a,0x35,0x27,0x5a,0x06,0x23,0x4e,0xe1,0x3a, - 0xf8,0xcb,0xff,0x0e,0x85,0xf0,0xa6,0xc2,0x53,0x76,0x6b,0xa4,0x3f,0x60,0x35,0x13,0x38,0x2b,0x12,0x7d, - 0x6d,0xec,0x8a,0xce,0x1b,0xb6,0xee,0x53,0x2c,0xc2,0x39,0x2f,0x82,0x54,0x74,0x22,0xcd,0xef,0xed,0x6d, - 0x25,0xdd,0x86,0xf4,0x3d,0xe0,0x17,0x41,0xa0,0x80,0x30,0xbe,0x32,0x26,0x0d,0xcc,0x13,0xa8,0x29,0x51, - 0x3f,0x1a,0x4f,0xf9,0x55,0x34,0x81,0x03,0x96,0x69,0x80,0x29,0xec,0x68,0x53,0x3d,0x18,0xf1,0xd0,0x5a, - 0xf0,0x4f,0xa1,0xf1,0x76,0x7e,0x67,0xb9,0x9d,0xbf,0x33,0xed,0xf2,0xf0,0xda,0x95,0x6a,0x5c,0x7a,0xd6, - 0x6c,0x78,0xa0,0xf9,0x8d,0x69,0x1b,0x48,0xc4,0x5a,0x44,0xe2,0x6b,0x78,0xf9,0xb2,0xda,0x4f,0x59,0x7b, - 0x3f,0x6e,0xfa,0x6d,0xd0,0x50,0x00,0xdc,0xf9,0xa3,0xbf,0x50,0x5e,0x7c,0x4e,0x50,0xfd,0x4c,0x54,0x2c, - 0x5c,0x43,0x73,0xa7,0xe4,0x11,0x51,0xa1,0x4d,0x3f,0x96,0x9b,0x40,0x19,0xf0,0x41,0x67,0x69,0xb6,0x9f, - 0x8b,0x39,0x80,0x3c,0x89,0xff,0x0e,0xce,0xdc,0xf0,0x59,0xbc,0xa1,0x17,0xea,0xb2,0x11,0x5b,0x01,0x1e, - 0xd8,0x7f,0xf4,0xe7,0xba,0xfb,0x6f,0x44,0x6b,0xe4,0x32,0x50,0x9c,0x26,0x58,0x0b,0xb3,0x87,0x39,0x9a, - 0x4e,0x5f,0x40,0x2b,0x8c,0x50,0x63,0x7b,0xa8,0xb4,0x65,0xc4,0x89,0x6f,0x6a,0xd2,0xb9,0x04,0xee,0xfc, - 0x2e,0xc5,0x6a,0x00,0x10,0x35,0xd2,0xe0,0xd7,0x7c,0x07,0xbb,0x00,0xbd,0x06,0x43,0x31,0xe8,0xeb,0x7d, - 0xc7,0x2c,0xac,0x38,0x70,0xff,0x07,0x21,0x95,0x5a,0x9b,0x22,0xfc,0x21,0x55,0xf5,0xaf,0xef,0xa0,0x19, - 0x1c,0xde,0x08,0x86,0xf9,0x2e,0xed,0xc2,0x2a,0x2d,0x8b,0x76,0x46,0x0c,0xae,0x85,0x88,0xec,0x99,0xc4, - 0xc7,0x5d,0xc4,0x19,0x62,0xdf,0x76,0x3b,0x3b,0xe2,0x4a,0x8b,0x22,0x59,0x59,0x4f,0x85,0x62,0x1d,0x6a, - 0x24,0xcf,0x69,0x17,0xbe,0x62,0x57,0xaa,0x79,0xb3,0x24,0x98,0xec,0xb8,0x3e,0x2e,0x25,0xf1,0x44,0xe5, - 0x03,0xcb,0x92,0x97,0x46,0xee,0x38,0x89,0xd2,0xe3,0x72,0x3c,0x9c,0x48,0xd8,0x68,0x8c,0x62,0x47,0x8e, - 0xfa,0xde,0x1e,0xd8,0x82,0xee,0x23,0x4c,0x58,0x63,0x85,0xe7,0x10,0x0f,0x40,0x9d,0x5b,0x33,0xd1,0xec, - 0x98,0xcb,0x8d,0x71,0x28,0x3e,0x74,0x8e,0xe3,0x00,0x42,0x0f,0xc7,0x81,0xf8,0x12,0x03,0x9e,0x73,0x3c, - 0x13,0x1a,0xea,0x79,0x2d,0xfe,0x3a,0x37,0x43,0x9d,0x46,0xc5,0xf1,0xf9,0x78,0xb8,0x7d,0x00,0x62,0xa5, - 0xd3,0x88,0x60,0xa5,0xf3,0x01,0x5a,0x7f,0x96,0x54,0x5f,0xe7,0x4b,0x96,0xb1,0x3d,0x9e,0xa7,0x04,0x59, - 0x3f,0xd3,0x5a,0xc3,0xf5,0xfa,0xf1,0x94,0x87,0x38,0x5a,0xca,0xa8,0xa7,0x41,0x38,0x37,0x5f,0x1b,0x6d, - 0x7a,0xbb,0xa8,0x22,0x56,0xa8,0x84,0x10,0x72,0xa9,0x8d,0x95,0x84,0x71,0x9a,0x46,0x73,0x6b,0x13,0x6e, - 0x4a,0xe4,0x74,0xf5,0xbb,0x5e,0x39,0xb6,0x0c,0xaf,0xbb,0x3d,0x0c,0xd8,0xbe,0xa0,0xc2,0xc1,0x42,0x30, - 0xc7,0x41,0x87,0xcd,0x34,0x04,0xd5,0xf4,0x16,0x53,0x66,0x17,0x50,0xb4,0x45,0xff,0xc0,0x82,0xbc,0x75, - 0xc9,0xcf,0x26,0x5d,0xde,0x0a,0x81,0x9e,0xf7,0x59,0xd3,0x72,0x68,0x98,0x62,0x6d,0xc6,0x74,0x11,0x97, - 0xcf,0x29,0xdd,0x4f,0xb4,0x59,0xbe,0xaa,0x84,0x56,0x36,0xfa,0x85,0xbf,0x30,0x8f,0x60,0x7e,0x7d,0xdf, - 0xf8,0xf5,0xa7,0xf1,0xf1,0x0f,0xa7,0x1d,0x73,0xc2,0x91,0x96,0xbb,0x83,0x62,0xfe,0x20,0x3f,0x3f,0x2f, - 0x93,0xea,0xfb,0x24,0x9d,0x5d,0x54,0x4e,0xad,0xb6,0xc6,0xa2,0xec,0x1f,0xaf,0x71,0xed,0x20,0x0c,0x23, - 0x81,0x45,0x25,0x13,0x4e,0xc3,0x2b,0x50,0x6e,0xd4,0x59,0x31,0xb0,0x4a,0x3f,0x51,0x31,0x70,0xb4,0xa3, - 0x74,0x4a,0x0d,0x18,0x4f,0x34,0x25,0xc1,0xb1,0xa6,0xb7,0x59,0x9c,0x9f,0x53,0xb8,0xfe,0xe4,0xe5,0xaa, - 0x03,0x0d,0xf6,0x20,0xef,0xb9,0x21,0xe2,0x78,0xe7,0xc0,0x76,0xb3,0xab,0xe3,0x75,0x4a,0xb0,0x20,0x13, - 0xa6,0x0b,0x8e,0xda,0x32,0x0d,0x18,0x5b,0x0d,0xb3,0xc2,0x83,0x69,0x9b,0xe1,0xe4,0x9d,0x0c,0x9f,0xed, - 0xd3,0xc1,0x35,0x69,0x0f,0x6d,0xe1,0x8d,0x5e,0xfc,0x16,0x53,0x8e,0xdb,0xfc,0x49,0x6a,0xe5,0x81,0xf5, - 0x75,0xae,0x8b,0x37,0xb1,0xbb,0x4e,0x1c,0x9a,0x95,0x9b,0xe0,0xb5,0x8c,0x45,0x36,0x01,0xed,0xb5,0x73, - 0xc5,0x33,0x60,0xe0,0x4a,0xec,0x4a,0xed,0xdc,0x9d,0xeb,0x4a,0x14,0xa1,0x02,0x35,0xd3,0x1b,0x90,0x75, - 0x92,0xcc,0xd6,0x19,0x46,0x43,0x33,0x22,0x33,0x6c,0xdd,0xae,0x68,0xa1,0xba,0x86,0x74,0x54,0xb4,0xa1, - 0x6e,0x65,0xe0,0x48,0x4f,0x26,0x62,0x99,0x98,0xdd,0xd9,0x0d,0xcc,0xc3,0xdf,0xf0,0x6b,0xfd,0x79,0x3a, - 0x1b,0x38,0x01,0x71,0xa3,0x24,0x55,0x75,0x46,0x23,0x14,0x6f,0x34,0xef,0xce,0x82,0x44,0x2d,0xfa,0x67, - 0xe1,0xe4,0xb5,0x42,0xf1,0x46,0xcf,0x93,0x46,0xc5,0x66,0xec,0xde,0xad,0xd0,0x28,0xcf,0x6a,0x52,0x0d, - 0x3b,0x35,0x87,0x1d,0x43,0x63,0xef,0x40,0xe9,0x35,0xc5,0x6e,0x82,0x6a,0xcf,0xd9,0x75,0xa4,0xb9,0x33, - 0xf1,0x43,0xdb,0x1c,0x7f,0xc8,0x0c,0x81,0x8d,0xa8,0x35,0x36,0xde,0xf7,0x60,0xa1,0x3d,0xe2,0xea,0xec, - 0xb9,0xbc,0xb6,0xf3,0xb5,0x9a,0x7e,0x10,0x6b,0x37,0x27,0x01,0x47,0xc8,0xb7,0x16,0xb5,0x16,0x12,0xdc, - 0xe6,0xc1,0x76,0x6d,0x7d,0x24,0x2a,0x37,0x4e,0xd3,0x46,0xad,0x60,0x55,0x69,0x7d,0x28,0x5a,0x72,0x8b, - 0x38,0xe1,0xa0,0x99,0xe7,0x18,0xaf,0xff,0x23,0x65,0x93,0x49,0xc7,0x65,0x89,0x41,0x98,0xd0,0x28,0xfc, - 0x3e,0x0d,0x67,0xcd,0x6c,0x71,0x3c,0xd7,0x1d,0x20,0x2b,0x81,0xba,0x10,0xd5,0xfa,0x19,0x2a,0x47,0xc6, - 0x53,0x7c,0x81,0xb0,0x41,0x51,0x05,0x42,0x8d,0xef,0x42,0xf6,0xe4,0x03,0x1f,0xbe,0x56,0xb1,0x43,0x2e, - 0x74,0x3e,0xcf,0xad,0xb4,0x28,0x29,0xd8,0x0f,0x4c,0xd6,0x8c,0x88,0x2d,0x5e,0xeb,0x5f,0x15,0x4d,0x5e, - 0x32,0x33,0xee,0x9c,0x7c,0xeb,0x6f,0x98,0x36,0x3a,0xa5,0x75,0x99,0x59,0x4d,0x22,0x1a,0x09,0x21,0x7c, - 0x21,0xa9,0xb3,0xda,0x33,0x4c,0xb6,0xed,0x85,0x3b,0x6b,0x78,0xe1,0xce,0x86,0x56,0x2b,0x64,0x83,0xf5, - 0x30,0x7e,0x08,0x7c,0xa7,0xff,0xd7,0x50,0x05,0x91,0xb0,0xd7,0x7b,0x7b,0xff,0xca,0xf0,0xff,0x00,0x2e, - 0xb3,0x40,0xa9,0x41,0x81,0xf9,0x0d,0xac,0x31,0x0e,0xe5,0x44,0xfe,0x9e,0xaa,0x7f,0x42,0x85,0xf2,0xe6, - 0xe4,0xc6,0xf7,0x47,0xe1,0x60,0x7d,0x92,0x05,0xfd,0x51,0x70,0xb2,0x39,0xd9,0x1c,0xcc,0xd4,0xbf,0x43, - 0xe7,0x7d,0x7f,0xf0,0x59,0x7f,0xf4,0xc7,0xee,0xcd,0xc6,0x0f,0xd6,0xc7,0x27,0xe3,0x93,0x83,0x93,0x93, - 0x31,0xe5,0x25,0x79,0xa7,0xe2,0x3a,0xdf,0x1d,0x46,0x67,0xfb,0xdf,0x53,0xe5,0x9d,0x9c,0xec,0xee,0x61, - 0xa1,0x28,0xe7,0xa8,0x2b,0xc7,0x3a,0x0c,0xa0,0x95,0x14,0x0f,0x29,0x7e,0xd5,0xf7,0xf4,0x60,0x64,0x34, - 0x5e,0x9f,0x16,0x61,0x06,0xf9,0x9f,0xaa,0xf2,0xe8,0x46,0x84,0xfa,0xf0,0x66,0x1a,0x1e,0x7b,0x8e,0xb4, - 0xdf,0x1b,0x2b,0x8b,0xab,0x5b,0xc6,0x1d,0xec,0x4d,0x6b,0x00,0xf7,0x0f,0x1a,0x37,0x16,0x22,0xa5,0x11, - 0x33,0xdb,0xa1,0x88,0xb3,0x9c,0xa6,0xa2,0x1f,0x5e,0xbd,0xf8,0x89,0x12,0x00,0xd1,0x88,0xd9,0x98,0x05, - 0x06,0x81,0x65,0x4e,0x45,0xb8,0xc4,0x85,0x00,0x05,0xaa,0x30,0x48,0xf8,0x3a,0x65,0x4a,0x23,0x2a,0xb0, - 0xd5,0x49,0x06,0xc7,0xac,0x1d,0x3e,0xce,0x3d,0xcf,0x51,0xe8,0xaf,0xbb,0x04,0x1b,0xd1,0x8f,0xdc,0xf9, - 0x84,0x5e,0xbf,0x51,0xa2,0xef,0x29,0x18,0xf9,0x36,0xfa,0xd2,0xb5,0x26,0xb6,0xbc,0x9b,0x29,0x15,0x2a, - 0x22,0x88,0xb3,0xee,0x65,0xe3,0x87,0x91,0x4f,0x5f,0x36,0xc6,0xfb,0xad,0x65,0xe3,0xa6,0xda,0xcb,0xf6, - 0x2a,0xc5,0xca,0x35,0x97,0x4e,0x2a,0x3b,0x4b,0xc7,0x09,0x7f,0x75,0xe9,0xb8,0xdb,0xc6,0xd2,0x71,0x8a, - 0xb3,0x74,0xfc,0xdb,0x2c,0x9d,0xdb,0x97,0xad,0x85,0xf2,0xbe,0x54,0xa8,0x73,0xfb,0xb0,0x35,0x90,0xc5, - 0x2b,0x72,0x7e,0x62,0x82,0xbd,0x1f,0xdb,0x7e,0xc2,0x88,0x32,0x9f,0x6b,0x5b,0x46,0x31,0xd8,0xd3,0x36, - 0x98,0x62,0x57,0x98,0x96,0x8c,0x92,0xf1,0xe0,0x44,0x53,0x71,0xac,0x44,0x1b,0x06,0x8f,0x62,0x16,0x79, - 0x75,0x06,0x5f,0x43,0x69,0x2e,0x96,0xd2,0xda,0xae,0x11,0x46,0x9f,0x15,0x0c,0x3a,0x8d,0x70,0x73,0xc1, - 0x86,0x8d,0x30,0x0a,0x64,0xf3,0x46,0x31,0x78,0x2c,0x74,0x4b,0x54,0x3f,0x97,0x11,0x76,0x1a,0x9e,0xca, - 0x90,0x6b,0x13,0x43,0xb6,0x93,0xec,0x34,0xa7,0x44,0xb7,0x4d,0x7b,0x46,0xb6,0x40,0xd5,0xe6,0xa7,0xc6, - 0x7e,0x72,0xcb,0x0e,0x55,0x5b,0xb6,0xb2,0x61,0x65,0x87,0x5d,0x2b,0xc6,0x6a,0xac,0x5e,0xa5,0x1f,0x5a, - 0x2c,0xb6,0xa6,0xd5,0x96,0x97,0x30,0x5c,0x35,0x26,0x93,0xbc,0x4c,0x6d,0x23,0x4c,0x59,0x36,0x31,0x4a, - 0xd5,0x8b,0x27,0xe6,0x13,0xc6,0xc0,0xb2,0xb6,0xfd,0x6c,0x2d,0x11,0xdb,0xe3,0xd2,0x42,0xf1,0x5a,0xd3, - 0x3a,0xc5,0x79,0x74,0xf0,0xc7,0x49,0xf9,0x99,0x7f,0x4c,0xff,0x7a,0x77,0x1e,0x3c,0x3c,0x39,0x88,0xc6, - 0xfd,0x80,0x70,0x0d,0x12,0xa3,0x00,0xff,0x8e,0x42,0x8f,0xb2,0xbd,0xf1,0x67,0x84,0x76,0xd6,0x77,0xe8, - 0xf3,0x0e,0x7d,0xde,0xe9,0xaf,0x75,0x9d,0xe8,0xc1,0xc3,0xff,0xa0,0x2a,0x41,0x30,0x3a,0xa0,0xc1,0x44, - 0xde,0x71,0xbc,0xff,0xe7,0xa3,0xfd,0xdf,0x4f,0xc7,0xc7,0x27,0x27,0x57,0x27,0x27,0xfb,0x27,0x27,0x83, - 0xf1,0x67,0x1e,0x2d,0x6a,0xc4,0x38,0xcc,0xeb,0x97,0x79,0x9f,0x30,0x5d,0x18,0x8c,0xe4,0x33,0xf0,0xd4, - 0x32,0x8f,0x1c,0x64,0xe7,0xfd,0xf1,0xc0,0xeb,0x4f,0xf2,0x40,0xcd,0xcd,0xe0,0x4e,0x0e,0x46,0xc1,0xc3, - 0x03,0x5a,0xd0,0x56,0xb1,0x93,0x93,0x03,0x94,0xec,0x7b,0xc7,0x7f,0x3c,0x1c,0x7f,0xf6,0x10,0x86,0x8d, - 0xa8,0xf2,0x60,0xe7,0xc9,0x8b,0xc7,0xaf,0xff,0xf9,0xf2,0x9b,0x1e,0xd2,0xfb,0x0f,0x0f,0x52,0x75,0x21, - 0xe9,0xb0,0xdb,0x59,0xc9,0xe7,0xc9,0xf1,0x01,0x31,0xc1,0x78,0x31,0xf6,0xde,0x79,0x16,0x0b,0x1f,0xbc, - 0xf3,0x07,0x34,0x91,0x99,0x6a,0x1e,0x79,0x2a,0xe8,0x81,0x9d,0xaf,0xf4,0x83,0xcb,0x2c,0x57,0xd7,0xb9, - 0x3a,0xcd,0x09,0x76,0xd4,0x55,0xae,0xde,0xe5,0xea,0x6d,0xae,0x76,0x73,0xf5,0x38,0x57,0x8f,0x72,0xf5, - 0x2a,0x57,0xaf,0x73,0xf5,0x82,0x41,0x50,0x5b,0xed,0x6a,0x73,0x68,0xf3,0xd6,0xc1,0x17,0xde,0x9b,0x1c, - 0xef,0xc5,0xcf,0xe8,0x5f,0x6f,0x6f,0x5e,0x0d,0xbd,0xd0,0x7b,0x40,0x87,0x72,0x6f,0xc6,0x9f,0x0f,0xf1, - 0x09,0xf8,0xa4,0x1f,0x77,0xbc,0x3b,0xf4,0x23,0xbe,0x5c,0x20,0x63,0x0f,0x19,0x7f,0x3b,0x3a,0xc4,0xf7, - 0x49,0xc6,0x3f,0xbe,0xe2,0xef,0xca,0xdb,0xa8,0x6f,0x68,0x6e,0x7b,0xb4,0xc8,0xc4,0xf9,0xce,0xaa,0x35, - 0xaa,0xaf,0xa9,0x5a,0x30,0xa4,0x09,0xbd,0xec,0xcc,0x5a,0x53,0x4b,0xeb,0xbf,0x7d,0xc5,0x25,0x9e,0xf2, - 0x80,0xa1,0xef,0xd0,0x1c,0xe7,0x93,0xfc,0x16,0x9a,0x62,0x6f,0xef,0x69,0x2e,0x9e,0x13,0x4e,0x58,0xb2, - 0x52,0xc1,0x57,0x91,0xfa,0x16,0xeb,0xfb,0x6f,0xeb,0x3f,0x56,0xfb,0x79,0x16,0x1e,0xa8,0x9f,0xf0,0x73, - 0xb5,0xbf,0x46,0x12,0xfd,0x7c,0x4e,0x3f,0xfd,0xc1,0x67,0x74,0xa1,0x96,0x7d,0x1a,0x4d,0x9a,0xad,0xf3, - 0x73,0xfe,0x1e,0x7c,0x16,0x1c,0xa8,0x9f,0x29,0x57,0x11,0x5c,0x29,0xba,0x6e,0xc7,0x04,0x65,0x54,0xc2, - 0xfd,0x19,0x8c,0x76,0x0f,0xd4,0x6f,0x0c,0x15,0xfe,0xfa,0x24,0xd8,0xa5,0x41,0x7f,0x9d,0xb3,0x51,0xd8, - 0x67,0xf4,0x43,0xfd,0x8a,0x9c,0x10,0x3d,0xb3,0xc0,0xf9,0x40,0xfd,0x42,0x09,0x27,0x83,0xe3,0x3f,0x06, - 0xe3,0x3e,0x15,0xfd,0xbe,0x7d,0x3f,0x6b,0x37,0x31,0xbf,0xa7,0xd1,0xef,0xe9,0x07,0xcc,0x93,0x82,0x5a, - 0x07,0x82,0x88,0xa6,0xdf,0x53,0xd7,0x24,0x91,0x2e,0xe1,0x3f,0xd1,0xf3,0xbb,0xcb,0x79,0x56,0x86,0x3f, - 0xbd,0x3a,0x99,0xf6,0x0f,0xd4,0xbf,0x90,0xc2,0xdf,0x34,0x8e,0x1f,0xf3,0xe8,0xb8,0xca,0xe9,0xce,0x51, - 0x37,0xb4,0xbc,0xaf,0xdf,0x73,0xb7,0x88,0xf4,0xc8,0xf8,0x92,0x90,0x07,0x21,0xc3,0xbb,0xf0,0x93,0xfe, - 0xf3,0x78,0xc1,0x9a,0x88,0xc7,0xde,0x6a,0x9f,0x9f,0x50,0xbc,0x31,0xa8,0x24,0xfc,0xe4,0x49,0x83,0x12, - 0xf4,0xc6,0xeb,0x35,0xa5,0xe8,0x6f,0xa3,0x10,0xaa,0x6f,0x1b,0x4e,0x04,0xb5,0x25,0x37,0xd7,0x6a,0x3f, - 0x3d,0x97,0x6d,0xce,0xa3,0x74,0xe4,0x51,0x5b,0x5e,0x3f,0xc5,0xa1,0x0c,0x89,0x37,0x8c,0x23,0x21,0xc6, - 0x4d,0x51,0x3c,0xe2,0x4a,0xe1,0xb2,0x91,0x66,0xdb,0x98,0x44,0xff,0x60,0x52,0xfc,0x07,0xe8,0xa2,0xa8, - 0x84,0x75,0x8c,0xb8,0x43,0x25,0x0e,0x33,0xce,0xf2,0x77,0xd4,0xf7,0x8f,0x48,0x87,0xaa,0x3e,0x88,0xd7, - 0x09,0x21,0x68,0x21,0xed,0x26,0x83,0xf4,0x9c,0x70,0x84,0xd7,0x2f,0xa8,0x7f,0x9a,0xfe,0x1d,0x53,0xe5, - 0x8e,0xd7,0xcf,0xd5,0x77,0xa8,0x74,0x93,0xbc,0x5b,0x84,0x28,0x27,0xf8,0x3b,0x9c,0x6c,0x8c,0xbc,0x56, - 0xfa,0xa5,0x41,0x2d,0x31,0x28,0x5a,0x5d,0x19,0x50,0xc2,0x09,0x7a,0x08,0x45,0x3c,0x4d,0x73,0xe9,0x7f, - 0x89,0xfe,0xeb,0x26,0xdd,0x5e,0xb9,0x14,0x77,0x29,0x7d,0x2c,0x75,0x1f,0x73,0xd3,0x87,0x56,0xf1,0xa9, - 0x20,0x9a,0x6b,0x76,0x45,0x09,0xb2,0xe8,0x30,0x79,0xf8,0x11,0xbf,0x1b,0xbd,0xa4,0xba,0xc5,0x39,0x02, - 0x0b,0x8f,0x26,0x03,0x2c,0x1d,0xc2,0xce,0x95,0x2c,0x4c,0xc5,0x2f,0x5a,0x80,0x92,0xd6,0x05,0x2c,0xdd, - 0x58,0xfd,0x40,0x98,0x81,0xaa,0x11,0xab,0x00,0xb0,0x83,0xd4,0xde,0xbc,0x6b,0xff,0x98,0xab,0x9a,0x87, - 0x08,0xf5,0x53,0x5a,0xe7,0xd3,0x92,0xd8,0xe5,0x88,0x36,0x07,0x54,0x1e,0x59,0xed,0xec,0x42,0xad,0xd4, - 0xa5,0x7d,0x56,0x9b,0x35,0xde,0x54,0xaf,0x05,0xea,0xd4,0xa9,0x03,0x70,0xfc,0x16,0x2b,0x01,0x98,0x2c, - 0x7b,0x62,0x3d,0x35,0x01,0x0c,0x2e,0xd5,0x2c,0x50,0x3a,0xc8,0x6e,0xfd,0x9e,0x79,0x1d,0x10,0x07,0xaa, - 0x2e,0xa2,0x4b,0xb5,0x8a,0xee,0xb0,0x0e,0xc3,0xae,0x71,0xc2,0xf1,0x6b,0x3c,0xef,0x45,0xbd,0x56,0x58, - 0x75,0xfd,0xa2,0x20,0xef,0x98,0xbb,0xec,0x39,0x56,0x87,0x6a,0xb4,0x6f,0x9a,0x76,0x8e,0xb9,0xc5,0x42, - 0xf9,0xc0,0x34,0xba,0x09,0xf0,0x0c,0xea,0xbb,0x65,0xd0,0xeb,0x8a,0xfb,0xf2,0x4e,0xc5,0xe3,0x0b,0xb4, - 0x82,0xf2,0xde,0x88,0xaa,0x49,0x42,0x2f,0xa4,0x4f,0xfd,0xfa,0x26,0x0d,0xde,0xe9,0xfb,0x44,0x09,0xcd, - 0x06,0x62,0x4a,0x3f,0xf2,0x4e,0x33,0x9f,0xf2,0x71,0x20,0xe8,0x0f,0x44,0x45,0x04,0x0f,0xc4,0xd4,0x57, - 0x90,0xc0,0x9a,0xa7,0xe5,0x55,0xb4,0xea,0x7b,0x3d,0x82,0x19,0x58,0xc2,0x78,0xcd,0xb1,0x9b,0x77,0x55, - 0xea,0xb4,0xb9,0x00,0x61,0xf3,0x37,0x21,0x4f,0x2f,0x68,0x19,0x56,0x34,0xd0,0xc1,0x35,0x21,0x5a,0x7b, - 0x8a,0xe8,0xf7,0x69,0x00,0x17,0x49,0x13,0x5a,0xdf,0x65,0xe4,0x8c,0x58,0xcd,0x71,0xd2,0x4b,0xa5,0x5d, - 0xdc,0x04,0xeb,0xb5,0x87,0x46,0x3d,0x75,0xae,0xd3,0xe1,0xed,0x64,0xbf,0xce,0xc4,0x4f,0x4f,0x4d,0x75, - 0xe6,0x79,0x8c,0xf3,0x5c,0xe7,0xf2,0x6f,0x4f,0xfd,0x33,0x41,0xa6,0x71,0x7a,0xa3,0xbc,0xa6,0xe9,0x08, - 0x5d,0xc2,0x74,0x78,0x46,0xa7,0xa9,0x7c,0x29,0xaf,0x3f,0xef,0x33,0xeb,0xed,0xf5,0x7d,0x69,0x9f,0x86, - 0x7b,0x3e,0xf2,0x42,0x5d,0x92,0xd6,0x32,0x3c,0xfd,0x97,0x2d,0x7c,0x8e,0x24,0x68,0xc5,0x54,0xd2,0x89, - 0xac,0xa9,0x27,0x20,0x13,0x47,0x52,0x6c,0x17,0xcc,0x69,0x63,0x65,0x29,0x69,0x12,0x21,0x79,0xa0,0xc7, - 0x35,0xf2,0xa5,0x2d,0x74,0x33,0xa5,0xbf,0xdb,0xc6,0xaf,0xd4,0x9c,0x46,0x87,0xbb,0xbb,0x2b,0x6a,0xd8, - 0x5f,0xf2,0xfe,0xca,0x78,0xbd,0x70,0x1e,0x70,0x47,0x69,0x44,0x33,0xa1,0xa2,0xf4,0xb9,0xe2,0x46,0xdc, - 0x4e,0x82,0x1b,0x2a,0xf0,0xe0,0x90,0x11,0x25,0x8d,0x8b,0x06,0x60,0x03,0x6b,0x1f,0x53,0x79,0x42,0xb7, - 0xa2,0x1b,0x47,0xa5,0x68,0x01,0x1a,0xc5,0x8c,0xbb,0x17,0xca,0x0a,0x4c,0x9d,0x3a,0x9d,0x52,0xfb,0x47, - 0xd0,0x1b,0x90,0xfa,0x0c,0x4c,0x84,0x3e,0x69,0x92,0x0c,0x74,0xde,0x87,0x40,0x43,0xb0,0x1b,0xc3,0x85, - 0x30,0xf6,0x97,0x84,0xd2,0x5d,0xb8,0x88,0xb1,0xc5,0xc5,0x36,0x5c,0xfc,0x93,0x03,0x5b,0xd5,0x7b,0xcb, - 0x3b,0x93,0xf2,0xce,0xf8,0x71,0x94,0xeb,0x15,0x8a,0x79,0x85,0xe2,0x80,0xf7,0x0a,0x5b,0x55,0xd4,0x5b, - 0x45,0x23,0x85,0x61,0xda,0x7b,0x47,0x08,0x48,0x73,0x54,0x3d,0xae,0x83,0x9d,0x4e,0x84,0xd5,0x46,0x3b, - 0xf0,0xb7,0xca,0xb1,0x3c,0x72,0xa8,0x62,0x23,0x0c,0x30,0xbc,0x68,0xeb,0x19,0x21,0x96,0x11,0xcc,0xb3, - 0xe9,0x10,0xec,0xe4,0xbc,0x04,0x18,0x0e,0x54,0xf6,0xe8,0x48,0xd0,0xc0,0xf5,0xf8,0x42,0x9d,0x01,0xd5, - 0xb2,0xd1,0xdb,0x34,0xd4,0xa3,0xa2,0x83,0xd2,0x3a,0xaa,0xb2,0x32,0x43,0xe0,0xe3,0xee,0x3c,0x6d,0x0c, - 0x0e,0xc2,0x59,0xca,0xd4,0xc0,0x23,0x97,0xc4,0x79,0x44,0x6b,0x51,0xe1,0xd1,0x69,0x42,0x05,0xe8,0x3a, - 0x03,0xf4,0x34,0xda,0xd1,0xea,0x23,0xf6,0xdd,0x71,0x48,0x30,0x1b,0x60,0x0f,0x12,0xb3,0x33,0x0a,0xb7, - 0x51,0x65,0xd7,0x19,0x8e,0x64,0xce,0x6b,0x31,0x89,0x5f,0xae,0xd7,0x6c,0x4b,0xc8,0xf7,0xef,0xd9,0x7c, - 0x49,0xd7,0x8f,0xd7,0x7c,0x8d,0xf2,0xd8,0x0a,0x10,0x48,0xd9,0x6e,0xc4,0xce,0xeb,0xac,0x29,0x00,0xf4, - 0x6b,0x65,0xd5,0x06,0x0a,0xb7,0x0f,0xab,0x4c,0x04,0x6e,0x71,0xbe,0x2b,0x51,0x4c,0x90,0xe1,0x3a,0x34, - 0x10,0xc0,0xa6,0xc4,0xb0,0xa5,0x04,0x0f,0x7e,0xc3,0x4c,0xcd,0xfb,0x9b,0xb0,0x54,0x55,0x67,0x03,0x1b, - 0xe2,0x1c,0x5f,0x12,0xc1,0x14,0x77,0x79,0x9a,0x00,0xa5,0xaa,0xfd,0x6a,0x41,0x0c,0x49,0x6c,0x0f,0xca, - 0x15,0xb9,0x72,0x24,0xa0,0x61,0x92,0xc2,0x8f,0xce,0xd7,0xc9,0xb3,0xe4,0xbc,0x7a,0xb1,0x48,0x32,0x14, - 0x49,0x73,0xd5,0x58,0x8a,0x90,0xf8,0xad,0x96,0x94,0x33,0x7c,0x9e,0x28,0x47,0x3a,0xf0,0x63,0x4e,0x0c, - 0xc2,0x74,0x39,0xe9,0xd6,0xa4,0xe9,0x25,0xe6,0x30,0x9b,0x58,0x57,0x26,0x8a,0x5f,0xc0,0x8e,0x1e,0x06, - 0x6f,0xf2,0x94,0xc0,0x44,0x61,0x45,0xbe,0xeb,0xa6,0x41,0x7b,0xf0,0xdf,0x02,0x68,0xc7,0xd5,0xcb,0xf0, - 0x0f,0x99,0xb9,0x32,0x27,0x41,0x11,0x73,0x92,0x66,0xda,0x4b,0x87,0xb2,0x4f,0x5e,0x12,0x28,0xa8,0xef, - 0x27,0x23,0x9c,0xd5,0x04,0xce,0x4e,0x21,0x11,0xfa,0x87,0xe5,0xe9,0x4e,0xae,0x76,0x4f,0xc7,0xfd,0xf5, - 0x09,0x91,0xd0,0xc1,0xf8,0xb3,0xd1,0x49,0x00,0x7e,0x2e,0x7a,0xb8,0xfe,0xc3,0x8c,0x80,0x7e,0x9e,0xf8, - 0x07,0xea,0x77,0x5d,0xe3,0x98,0xf8,0x36,0xe2,0xde,0x4e,0x77,0xc7,0xa8,0x3a,0x06,0xeb,0x47,0xe4,0x73, - 0x2b,0x71,0x7d,0x72,0x7c,0x87,0x08,0xf8,0x3b,0x63,0xfa,0xf0,0xe8,0xc3,0xc3,0x07,0xd1,0xb9,0xf8,0xd3, - 0x2e,0x3b,0x0e,0x3e,0xa3,0x66,0x89,0x34,0xff,0x27,0x68,0x99,0x72,0x12,0xde,0xfd,0x3b,0x7c,0x14,0x85, - 0x5f,0x89,0xf6,0x44,0x78,0x74,0x4f,0xc9,0x7a,0xdf,0xbb,0xab,0x96,0x8b,0xf0,0xde,0x97,0xc4,0x02,0x9f, - 0x57,0xe1,0xbd,0xbf,0xab,0x02,0xef,0x22,0xe1,0xbd,0xaf,0x14,0xfc,0x5a,0x87,0xf7,0x0f,0x95,0x3c,0x4d, - 0x86,0xc7,0x5f,0xaa,0xfb,0x5f,0x10,0x97,0xf1,0xef,0x79,0x97,0xbb,0x2d,0xa0,0x9c,0x3e,0x80,0xc7,0x71, - 0x85,0x35,0x24,0xbe,0x28,0x89,0x21,0xed,0x21,0x78,0x30,0x87,0x1a,0x3f,0x00,0x20,0xf1,0x2c,0x16,0x19, - 0xe1,0x10,0x8a,0x12,0x9c,0x67,0xcb,0xe8,0xdf,0x4f,0xe4,0x29,0x91,0x8b,0x20,0xc4,0x58,0xf8,0xef,0xb9, - 0xdf,0xc4,0x0d,0x3d,0xc2,0x38,0x3d,0x9d,0x32,0x59,0x16,0xd8,0xa4,0xd7,0x9c,0x41,0x07,0x78,0x52,0x15, - 0x73,0xae,0xb1,0x63,0x0a,0x50,0xc2,0x8f,0x50,0xbc,0x55,0xec,0x0c,0xb4,0x91,0xc7,0x29,0x92,0x19,0xcf, - 0x9b,0x59,0xf4,0x5b,0x32,0x20,0x10,0x68,0xe4,0x20,0x41,0xb2,0x78,0xed,0x90,0x75,0x47,0x9c,0x3d,0xdd, - 0x01,0xb1,0x23,0xa5,0x7a,0x7b,0x7b,0x66,0x84,0x92,0xc7,0x63,0x3e,0x44,0x7b,0xe9,0x74,0x3a,0x4f,0x3e, - 0xa9,0xda,0x11,0x3b,0x44,0xc3,0xfe,0x7c,0x4a,0xad,0xbb,0x80,0x7f,0x3c,0x78,0x12,0x5b,0xd8,0x76,0xb3, - 0x02,0xef,0x6e,0x75,0x80,0xba,0x8e,0x8d,0x3d,0x9d,0xc9,0xc6,0xaa,0x06,0x86,0x20,0x04,0xb1,0xa5,0x5a, - 0x64,0x9a,0xe3,0x48,0x78,0xb5,0x11,0x50,0xdd,0xd2,0x19,0xb5,0x94,0x51,0x4b,0x77,0x20,0xe0,0xa2,0xf3, - 0xd6,0x07,0x77,0x5d,0xb7,0x8a,0x5b,0xcf,0x21,0x88,0xe1,0xbf,0xa8,0xd6,0x32,0xc4,0x33,0xd7,0x48,0x28, - 0x9a,0x50,0x93,0x46,0xc1,0x7b,0x8a,0x73,0x28,0x69,0x4f,0xe9,0xf2,0x5e,0xa0,0xc7,0x3c,0x99,0xe7,0xf1, - 0x5b,0x04,0xc9,0xcd,0x3a,0xbc,0x98,0xe6,0xd6,0xf9,0x25,0xff,0x84,0xa8,0x91,0xee,0x44,0xfc,0x59,0xaf, - 0xff,0xa1,0x13,0xad,0x74,0xb2,0x8c,0x7e,0x87,0x8d,0xa5,0xd1,0x37,0xf7,0x6c,0x06,0xa2,0x14,0x19,0x9f, - 0xec,0x78,0x41,0xfc,0x2e,0xc9,0x10,0x8c,0xaf,0x59,0x5a,0x8b,0x15,0x6d,0x39,0xcb,0x52,0x44,0x2b,0x9f, - 0x75,0x27,0xaa,0x98,0x2d,0x9e,0x6d,0x7a,0x60,0x03,0x73,0x35,0x10,0xe8,0x7a,0xfd,0x36,0x1b,0x6a,0x77, - 0xc7,0xd7,0x67,0x89,0x8d,0xa9,0xd8,0xb1,0x91,0x3b,0xd6,0x3a,0x57,0xfb,0xba,0xcc,0x26,0xc9,0x53,0x18, - 0x61,0xf1,0xaf,0x76,0xec,0x40,0xb8,0xdd,0x2e,0xe2,0xc8,0x77,0xa5,0x3e,0x27,0x27,0x67,0x5e,0xdf,0x9b, - 0x12,0x0e,0x3f,0x87,0x84,0x8d,0x80,0xbe,0xc2,0x9b,0x03,0x2d,0xf2,0x35,0xfb,0x5b,0x9b,0x40,0xba,0x87, - 0x6b,0x4f,0x5d,0xa5,0xd5,0x85,0x8a,0xaf,0xe2,0xb4,0x52,0xac,0xef,0xaf,0xd8,0xb3,0xb9,0xd6,0x89,0xe7, - 0x07,0x1e,0xc5,0x8e,0x48,0x15,0x07,0x99,0x57,0x57,0x84,0x56,0x13,0x75,0x0d,0xb1,0x9e,0x46,0x36,0x8a, - 0xb8,0xaf,0x1c,0x4e,0x0c,0xd9,0xc1,0x8a,0x92,0x19,0x18,0xc7,0x5e,0xc6,0x9d,0xa2,0xb8,0xfe,0x24,0xd6, - 0x44,0xe2,0xcd,0xb3,0x6f,0xb3,0x34,0x5b,0xc2,0x23,0xcf,0xd9,0x72,0x36,0x83,0x1c,0x50,0xaf,0x42,0x1d, - 0x43,0xc5,0xd3,0xee,0x67,0x70,0x27,0xe8,0xdb,0x81,0xa6,0xb5,0xc6,0xd4,0x82,0x3e,0xcf,0x50,0xde,0x51, - 0x5a,0x73,0x96,0x41,0x89,0x0f,0x51,0xd6,0x4b,0xef,0x6c,0x87,0x50,0x3a,0x10,0xfe,0xc9,0x09,0xa1,0x7c, - 0xfa,0xa7,0x6e,0xb5,0x95,0x81,0x00,0x70,0xaf,0xdb,0xa2,0x9d,0xda,0xc2,0xf6,0x56,0x83,0x50,0xf6,0x02, - 0x4c,0xb8,0x11,0x81,0x8d,0xa3,0x9d,0xa3,0x40,0xbd,0xcb,0xf5,0x9e,0xb2,0xed,0x17,0xc4,0xd8,0x4e,0x0c, - 0x96,0x61,0xf6,0xe0,0x2a,0x77,0xfd,0xae,0x5c,0xe5,0x6c,0x62,0x0b,0xe3,0xde,0x59,0x1e,0x55,0x35,0x64, - 0xbf,0xc3,0x2f,0x73,0xdf,0x03,0xa4,0xd4,0x5b,0xa4,0x38,0xb7,0x39,0x27,0xee,0x22,0xb1,0x75,0x5d,0x73, - 0xc6,0x69,0x0e,0xf0,0xae,0x3a,0x0e,0xc3,0x4f,0x72,0x18,0xce,0xda,0x05,0xda,0xb2,0x18,0x2a,0x73,0xb5, - 0x55,0x26,0x2f,0xab,0x76,0xa1,0x6b,0x0c,0x81,0x76,0x23,0xbd,0x4c,0x2b,0xc4,0x37,0xb4,0x9c,0xb6,0xa8, - 0x96,0xec,0x1c,0xb1,0x86,0x13,0x82,0x96,0xe3,0x84,0xfc,0x76,0x41,0xa5,0x78,0x98,0x0a,0xeb,0x05,0x5a, - 0xf5,0x68,0xcb,0xe8,0xa2,0xbd,0xc8,0xf4,0x6b,0xde,0x8f,0x08,0xba,0xa0,0xb1,0xba,0x3c,0x93,0x07,0x04, - 0xdf,0x35,0x88,0x2e,0x8c,0x8b,0x00,0x36,0xd8,0x57,0x65,0x1d,0x90,0x5e,0xbc,0xcb,0xce,0x03,0xfd,0x98, - 0x86,0x37,0x85,0x02,0x3f,0x65,0xc7,0x5a,0xcf,0xad,0x94,0xcc,0x5a,0xfc,0x69,0x14,0xd7,0x51,0xea,0xd3, - 0x87,0xd1,0x21,0x62,0x11,0xa4,0xe3,0xc1,0xdc,0x14,0xc5,0x41,0xa7,0x79,0x51,0x3f,0xfb,0xfb,0x86,0xae, - 0x8c,0xf8,0x51,0x17,0xa5,0x1d,0xdb,0x4a,0xb7,0xa1,0xc9,0xc3,0x28,0x1d,0x4e,0xa8,0x42,0x35,0x60,0x07, - 0x2a,0xfc,0x87,0xdd,0xa8,0xb3,0x90,0x01,0xe3,0x1f,0x9a,0xe2,0x11,0x16,0x30,0xe5,0x6e,0xf7,0x8f,0x38, - 0x9f,0x19,0x21,0xef,0xac,0x00,0x95,0x57,0x8e,0x98,0xb8,0x2a,0xd8,0x17,0x3d,0x7f,0xd0,0xfc,0x69,0xb9, - 0x77,0x0e,0xc5,0xe9,0x81,0xb7,0xe0,0x52,0x1c,0x36,0xa1,0xb3,0xdc,0x11,0x97,0x53,0x8d,0x81,0xc8,0x0a, - 0xd2,0xa2,0x1a,0xbf,0x07,0x10,0x96,0x60,0x13,0xa1,0x67,0x5e,0x8b,0x5e,0x68,0xcb,0xaa,0x41,0x4d,0x63, - 0x32,0xb4,0x2d,0xf1,0x9e,0xdc,0xa2,0x2c,0x39,0x63,0x4e,0x8b,0x92,0x0c,0x59,0x92,0x97,0x12,0x12,0x27, - 0xb6,0xe4,0x45,0xee,0x1b,0xff,0x1b,0x62,0x72,0x9a,0xb7,0x5e,0xbc,0x17,0xd1,0x9b,0xfc,0x78,0x8a,0xb8, - 0x4f,0xfc,0xb7,0x21,0xe4,0x26,0x22,0xee,0xa4,0x3c,0x39,0x79,0x45,0xe4,0x5b,0xe0,0x3f,0x38,0x60,0xc6, - 0x56,0xa4,0xdd,0x01,0x9d,0xfa,0x14,0x6c,0x33,0x0c,0xaf,0x8c,0xfc,0x7a,0xe1,0x0a,0xae,0x19,0x3c,0x0c, - 0xa4,0x59,0x23,0x57,0x45,0xe3,0x99,0x32,0xf7,0xa7,0x5d,0x4a,0x62,0xe1,0x10,0x45,0x38,0x8b,0x6a,0xdf, - 0x52,0x07,0x90,0x95,0x53,0xdf,0xa5,0xf4,0xbc,0xbf,0xff,0xf0,0x60,0x46,0x6c,0x06,0xdd,0xfc,0x6e,0x91, - 0x93,0xe3,0xc7,0x4f,0x1e,0xbd,0x7e,0x74,0x72,0x5c,0x97,0x1c,0x8f,0x6d,0x49,0x48,0x8e,0xfd,0xa9,0x12, - 0x37,0xca,0xd0,0x56,0xd1,0xee,0x98,0x38,0x04,0xde,0x45,0x2c,0x97,0x25,0x7f,0x40,0xc5,0xc1,0x83,0x5c, - 0x85,0x60,0xde,0x68,0xe0,0xec,0x5f,0x98,0xf1,0x26,0xd1,0x85,0x2a,0xa8,0xa1,0xf9,0xfe,0x39,0x02,0x4c, - 0x5b,0x13,0xa3,0x55,0xe4,0x3c,0xf5,0x3f,0x10,0x76,0x1f,0xda,0x95,0x2b,0x5e,0xfc,0x8b,0xdc,0x44,0xc9, - 0x32,0xc6,0x61,0xae,0x62,0xc0,0xfe,0xc9,0xbb,0x7b,0x89,0x54,0xb9,0x64,0xf0,0xad,0x74,0xf4,0x45,0x04, - 0xa0,0xd0,0x9a,0x85,0x3a,0xea,0x81,0xf6,0x45,0x52,0x9f,0xc2,0xfb,0x0a,0x66,0xb4,0x99,0x7f,0xd9,0xbf, - 0x47,0x6c,0x9e,0x46,0xf7,0x1b,0x68,0x6d,0xad,0x5a,0x7d,0xce,0xdc,0x3e,0xc7,0x0f,0xa5,0xbf,0x19,0xf7, - 0x97,0xf9,0xb3,0xfe,0x5d,0xb7,0x3a,0xca,0x43,0xf8,0xc6,0x9e,0x67,0xfd,0x45,0xce,0x65,0xaf,0x51,0xf0, - 0x1a,0x0f,0xc8,0x26,0x5a,0xa1,0xad,0x80,0xf2,0xa7,0xb6,0xfc,0xb9,0x94,0x3f,0x95,0x7e,0xcf,0xa2,0xf9, - 0x30,0xf3,0x4f,0x9d,0x7a,0xb4,0x80,0xa7,0xc7,0x47,0x63,0x75,0xc6,0xac,0xa9,0xdb,0xc6,0x55,0x3b,0x02, - 0x4a,0x65,0x1b,0x5d,0x4a,0xa3,0x95,0x23,0x4b,0x8c,0x6e,0x8c,0x43,0xbf,0x0a,0xcd,0x31,0x07,0x12,0xe2, - 0xc0,0xe0,0xa4,0x85,0x73,0x09,0x6d,0x49,0xe8,0xcb,0x1d,0xf2,0x0e,0x5b,0xe8,0x4b,0x93,0xf3,0x5c,0x82, - 0x8a,0xda,0x84,0x98,0x12,0x86,0x41,0xe6,0xa7,0xee,0x60,0x73,0xed,0x16,0x92,0xf5,0xcf,0xc4,0xca,0xcf, - 0xba,0xe5,0xca,0x07,0x4b,0x9c,0xc3,0x57,0x74,0x8b,0x5f,0xb0,0x83,0x36,0x58,0x65,0x36,0x2b,0xc3,0x97, - 0xf9,0x5c,0xc1,0x32,0x58,0x8c,0xa1,0x82,0x9b,0x9d,0xf6,0xcb,0x69,0x46,0x93,0x99,0xb3,0x17,0x1c,0x3d, - 0x1f,0x3a,0x96,0x89,0xd3,0x32,0xcb,0x00,0x04,0xa7,0xd0,0x09,0xce,0x73,0xff,0x9c,0x86,0x5d,0xd0,0x39, - 0x56,0x4b,0xfe,0xcc,0x21,0xd0,0x42,0xca,0x79,0x50,0x5f,0x77,0x8b,0x68,0x42,0xbf,0xd7,0xeb,0x9d,0x9d, - 0x29,0x1f,0x4a,0x99,0x84,0x86,0xe2,0x15,0x1f,0x6b,0x11,0x43,0xd1,0x28,0x2f,0x09,0x4d,0x5c,0x3e,0xb8, - 0x18,0x5e,0x1a,0x25,0xbe,0x99,0xa9,0x70,0x7c,0x39,0x1e,0x5e,0x52,0xa7,0xfb,0x30,0x85,0x9b,0x61,0x66, - 0x06,0x84,0xee,0x78,0xde,0x1d,0xac,0x1e,0x3f,0x45,0xcd,0x8e,0xef,0x8d,0xf7,0xf6,0xb4,0xc2,0x26,0x7e, - 0x28,0x9d,0x7c,0xdf,0x4d,0xbe,0x6f,0x93,0x3f,0x77,0x93,0x3f,0xd7,0xa6,0x82,0xd7,0xdc,0xcc,0x7a,0x8d, - 0x82,0xf8,0xf7,0x73,0xfa,0xd7,0xf3,0xd4,0x69,0xe4,0xb1,0x90,0x86,0x66,0xe8,0xc1,0x37,0xb3,0xb4,0x70, - 0x34,0x1e,0x99,0x53,0xf2,0x24,0x81,0xbf,0xdc,0x9f,0x92,0x2b,0xf8,0x3b,0x2d,0xbf,0xcd,0x8b,0xef,0xa9, - 0x54,0xd8,0x9d,0x3b,0x5c,0xd1,0x8c,0xb4,0x62,0x3a,0x1a,0x51,0x4c,0x68,0x87,0x84,0x12,0xae,0x11,0x89, - 0x0b,0x7e,0x07,0x46,0x2f,0xf3,0xf0,0x9b,0xdc,0x71,0x6d,0x37,0x57,0x1d,0x3c,0xf2,0xb3,0x9c,0xdd,0xcb, - 0x07,0x9b,0x0d,0x51,0x02,0x70,0xee,0x0f,0xe8,0x60,0x9d,0x56,0xc2,0x0b,0xee,0x35,0x15,0x9e,0xb7,0x10, - 0xac,0x80,0xe9,0x0a,0xae,0xe9,0xa3,0x73,0xa0,0x9f,0xd6,0x0d,0x41,0xd4,0x94,0x5a,0xf0,0x63,0x38,0xfd, - 0x82,0x87,0x9b,0x6c,0x1a,0x6c,0x08,0x6e,0x80,0xc0,0x72,0x95,0xb0,0x2b,0x86,0xa3,0xf6,0x61,0x7d,0x67, - 0x4c,0xc8,0xdf,0x9a,0x8f,0x5d,0xfd,0x01,0xa0,0x5b,0xd9,0x4b,0xf1,0xad,0x75,0xf4,0xbc,0xc2,0x59,0x38, - 0xd7,0x38,0xe2,0x2d,0xdc,0xba,0x3a,0xdf,0x17,0xce,0xf7,0xca,0xf9,0xf6,0x77,0xa3,0xb7,0x2e,0x9a,0x53, - 0x84,0x40,0x1f,0x1c,0xd2,0x99,0x59,0xf5,0xa3,0x5d,0xd5,0x68,0xfc,0x5d,0x83,0x58,0x38,0x54,0x2b,0x60, - 0xa9,0x55,0xb0,0x59,0xb1,0xb8,0x92,0x72,0x09,0x95,0xc2,0x92,0xdc,0xa2,0xdf,0x77,0x35,0x06,0x7e,0xc7, - 0x6a,0xa7,0xf0,0x2b,0x94,0x02,0x19,0xb6,0xf0,0x73,0x62,0x4c,0x66,0x37,0x85,0xcf,0xc2,0x25,0x09,0x1c, - 0x32,0xcb,0x95,0xf3,0x40,0xd1,0xb8,0x32,0x1d,0x91,0x8c,0x7b,0x77,0x6e,0x4b,0x63,0xb6,0xaf,0x51,0xd5, - 0x05,0x45,0xb7,0x00,0x57,0x67,0xd9,0xf7,0xc3,0xa3,0xce,0x55,0x5b,0xf8,0x3e,0xb4,0xe8,0xbe,0xd4,0xf8, - 0xcc,0xb9,0x4b,0x63,0x58,0xc3,0xca,0x33,0x10,0xc7,0x5c,0x42,0xa0,0x90,0x5d,0xbc,0x7e,0x0e,0x9f,0xc0, - 0xcb,0x3b,0x5c,0x68,0xd3,0xda,0x21,0xe0,0x55,0x93,0xa7,0xab,0xf5,0x9f,0x09,0x4b,0x0a,0x3d,0x9c,0xb8, - 0xe4,0xb0,0x91,0x7a,0x22,0x20,0xea,0x9f,0xb9,0x51,0xa7,0xcc,0xb4,0x1a,0xa5,0x7c,0x45,0xf2,0xc7,0x9e, - 0x8e,0x7f,0xe5,0x4a,0xb6,0x91,0x4f,0x00,0x08,0x18,0x1b,0x49,0x0f,0xee,0x62,0x44,0x10,0xe9,0xbc,0xf4, - 0xfc,0xab,0xe2,0x09,0x10,0x22,0xc5,0xf8,0x2e,0x69,0xec,0x20,0x07,0x77,0xb4,0x6b,0x7d,0xf6,0xb5,0x78, - 0x1e,0x5d,0x06,0xa2,0xe9,0x6c,0x9e,0xac,0x91,0x7c,0x2e,0x9a,0xd9,0xe7,0x4d,0x91,0x2c,0x4d,0x17,0x92, - 0xbf,0x83,0x37,0xf1,0x2a,0x76,0xcb,0x36,0x0a,0xd1,0xe8,0x11,0x9e,0x36,0xe0,0x0e,0x69,0x11,0xce,0xd8, - 0x47,0x3c,0xc7,0xa6,0xb4,0x16,0xda,0xb4,0x1a,0xb3,0x07,0x67,0x96,0x3b,0x98,0xd1,0x72,0x5c,0x46,0x67, - 0xf9,0xf1,0x6c,0xec,0x43,0xd3,0x76,0xbd,0x66,0xa7,0x2b,0x50,0xd7,0xb5,0xcf,0x90,0xab,0xe8,0x12,0x8f, - 0x6e,0x10,0xfd,0xa1,0xe9,0x15,0xa8,0x6c,0x36,0x3e,0xb8,0xac,0x59,0x92,0xc3,0x80,0x79,0x92,0x4b,0x87, - 0x27,0xc1,0x8b,0x65,0x67,0x5c,0x63,0x2b,0x6b,0xb3,0x4e,0x30,0xdd,0x90,0x8d,0xf6,0xd5,0xd5,0xc1,0xdd, - 0x95,0xf1,0x4e,0x53,0x0d,0x0b,0x1a,0x30,0x7c,0xf7,0x68,0xe4,0xe6,0xb4,0x46,0x89,0x12,0xa6,0x44,0x70, - 0x5d,0x4b,0x09,0xa8,0x55,0x50,0xa2,0x93,0x6e,0x8c,0x9f,0x4d,0x9a,0x07,0x5b,0x45,0xb1,0xcc,0x2f,0xe2, - 0x30,0xc2,0x97,0x41,0x78,0x59,0xbf,0x95,0x52,0xee,0x0f,0x15,0xa5,0x75,0xc4,0x93,0x75,0xde,0x74,0xf5, - 0xd5,0x9d,0xe0,0x51,0xb5,0xc2,0x23,0x64,0x22,0x8f,0x90,0x95,0x7e,0x84,0x4c,0x36,0xda,0xf4,0xba,0xe3, - 0x89,0x57,0x94,0x9c,0xf5,0xf3,0x64,0xd0,0xd0,0x74,0xaa,0x1f,0x7c,0x8d,0xb6,0x93,0x7e,0xb7,0x84,0x9b, - 0x5d,0x0c,0xca,0x36,0x77,0x21,0x5b,0x05,0x0e,0x9f,0x1b,0xbc,0x60,0x66,0x9f,0xf7,0xe2,0xc7,0x8a,0x37, - 0x98,0x56,0x72,0x64,0x76,0x7f,0xbd,0x2e,0x68,0xa4,0x0c,0x2d,0xd2,0x20,0xed,0x3e,0x7f,0x51,0xd5,0xef, - 0xf0,0xd8,0xc0,0x83,0x37,0x99,0x7a,0x0e,0x97,0x9b,0x20,0x2c,0xa8,0x1b,0x3a,0x91,0x3b,0x0e,0x94,0xc1, - 0x64,0x68,0xab,0x99,0x29,0x95,0x5b,0xdc,0x72,0x34,0xed,0x89,0xe4,0xf8,0x7a,0xc6,0x0c,0x3d,0xe1,0xd0, - 0x7a,0x80,0x65,0x23,0xe7,0xa5,0x84,0x21,0x6d,0x4c,0xbe,0x80,0xfd,0xaf,0x5f,0x7b,0xba,0x21,0x12,0x7e, - 0x6f,0x6f,0xc1,0xe3,0xff,0x0e,0xef,0x82,0x3c,0xd6,0x69,0x73,0xac,0xd3,0x4d,0x2d,0x8d,0xbf,0x1c,0xc0, - 0x4a,0x81,0xbd,0x7e,0x71,0x28,0x71,0xd9,0xe9,0x23,0x7d,0x25,0x4b,0xae,0x48,0x10,0xd7,0xeb,0x3b,0x9e, - 0x96,0x34,0x78,0x77,0x86,0xd4,0x65,0x23,0xcc,0x5b,0xf3,0x37,0x9b,0x12,0x1c,0x5f,0x8f,0xa3,0x4b,0xb1, - 0xb6,0xae,0xc7,0x27,0x88,0xe2,0x92,0x4f,0x89,0x0e,0xcb,0x36,0x5c,0x8e,0x32,0xc0,0x95,0xcf,0xef,0x44, - 0xa6,0x00,0x82,0x8b,0x65,0x1d,0x3a,0xf5,0xf9,0x71,0x6e,0x99,0xba,0xb1,0xaa,0x1c,0xbf,0x58,0xc7,0x5b, - 0xce,0xb0,0xa8,0xc4,0x90,0xee,0xd6,0x7b,0x11,0x9b,0xf9,0x08,0xbe,0xe8,0x79,0xf2,0x8b,0xfd,0x28,0xec, - 0x4c,0xa0,0x65,0x5d,0x8f,0x0d,0xcb,0xa9,0x6c,0xfb,0xd1,0x11,0x51,0x05,0xcd,0xfe,0x32,0xf1,0xb4,0x8d, - 0x9b,0xa8,0xf1,0x0e,0x60,0x22,0x8a,0x3d,0xc9,0xdc,0xc7,0x25,0x71,0x65,0x02,0xbc,0x95,0xd6,0x28,0x69, - 0x51,0xfb,0xe1,0x80,0x4d,0x77,0x60,0xcd,0xdd,0x5c,0x7f,0x45,0x74,0xfd,0x4d,0x10,0xec,0x51,0x1e,0x79, - 0x46,0x5e,0xcd,0x1e,0x11,0x05,0x9b,0x06,0xc6,0x4c,0x85,0x91,0x26,0xbb,0x29,0x80,0x2d,0x75,0x12,0x7e, - 0x8f,0x6b,0x20,0x64,0xeb,0x4c,0x19,0xf3,0x88,0xe6,0x0b,0x71,0x1f,0xc6,0x56,0xf2,0xec,0x77,0xd8,0x5d, - 0x9f,0xdf,0x56,0xce,0x95,0x83,0x75,0x9d,0x8f,0x92,0xdc,0xbf,0xce,0x83,0xf0,0x9f,0x29,0x73,0xf1,0x35, - 0x13,0x61,0xfd,0xbd,0x29,0x87,0x35,0xa5,0x7f,0x26,0xf0,0xda,0x1b,0x97,0xd5,0x53,0xd0,0x05,0xc0,0x46, - 0x1c,0xbb,0x27,0x99,0xe0,0x3e,0x0a,0x6e,0x68,0x4f,0x0b,0x21,0x19,0x82,0x87,0x78,0x86,0xd2,0x84,0x74, - 0x6e,0x69,0x85,0x09,0x0c,0x73,0x95,0xa6,0xa0,0x5a,0xc8,0x29,0x37,0xea,0x89,0xcb,0xe8,0xbb,0xc4,0x77, - 0x3d,0x20,0x0f,0x75,0x05,0x79,0xa8,0x59,0xca,0x03,0x95,0x6e,0xfb,0xc6,0xfb,0xb7,0x33,0x51,0x13,0xf4, - 0xa0,0x30,0x41,0x03,0x4c,0xfb,0x0e,0x55,0x6e,0x2e,0xa8,0xc9,0x83,0xda,0xc0,0xa2,0x63,0x58,0xef,0x1d, - 0x14,0x9f,0x2a,0xa8,0xf3,0xc1,0x0c,0x29,0xd6,0xe2,0x2e,0x28,0x25,0x56,0xf9,0xdb,0x24,0x2b,0x43,0xd8, - 0x39,0x61,0xd1,0x46,0x99,0xa1,0x0c,0x61,0xf8,0x79,0x57,0x39,0xb5,0x98,0x42,0xd1,0x3f,0x4c,0x35,0x28, - 0x6a,0xe3,0x43,0xde,0xbb,0x08,0x2b,0x86,0x02,0xad,0x49,0xbd,0x9f,0x06,0x80,0xb3,0x63,0x07,0xc6,0x19, - 0x98,0x61,0xd1,0xe6,0x74,0x76,0xcf,0x36,0xa2,0xa3,0x24,0xb3,0x0d,0xf8,0x96,0x67,0xf8,0xf6,0xc1,0x6c, - 0x56,0x56,0xd6,0xb4,0x2d,0xdc,0x39,0x64,0xa3,0x08,0x55,0xc0,0xab,0x9a,0xec,0x02,0x22,0x16,0x6b,0x01, - 0x13,0x24,0xc5,0x97,0xe9,0x9f,0x09,0xcb,0x77,0x58,0x8b,0x1b,0xae,0x75,0xfc,0xc7,0x79,0xf4,0x5d,0x4e, - 0x94,0x83,0xfb,0x14,0x05,0x72,0xe1,0x51,0x0e,0xa8,0x68,0xcb,0x6d,0xed,0x25,0x02,0xc3,0x1d,0xf1,0x1e, - 0xa3,0x6b,0x46,0x77,0x41,0x18,0x4c,0xa2,0x2a,0xd0,0xa7,0xd8,0xc7,0x91,0x9e,0xf0,0x0f,0xe2,0x71,0xfc, - 0x9d,0x89,0xbe,0x72,0x27,0x30,0x47,0xd0,0x4a,0xa2,0xd4,0x17,0xd4,0x73,0xf0,0xef,0x39,0x82,0x7c,0xad, - 0x32,0x9f,0x2d,0xa8,0xc0,0x15,0x3d,0xca,0xed,0xf7,0xb6,0xc1,0xa7,0x35,0xf7,0x64,0x15,0x28,0x13,0x09, - 0x42,0xfb,0x81,0xb6,0xce,0x82,0xb8,0x7a,0xc3,0x7c,0x00,0xdd,0xd4,0xd6,0xa0,0xd6,0x4b,0x0c,0xc1,0x12, - 0xf5,0xa8,0x2d,0xc9,0x10,0x34,0x90,0x12,0x06,0x08,0x0d,0x73,0x4d,0xeb,0x13,0x00,0x9a,0x8e,0x2c,0x7e, - 0x12,0x4b,0x05,0x1a,0x9d,0xb1,0x4a,0xf4,0x80,0x7f,0x3d,0x63,0xa6,0x28,0xc6,0x5f,0xf8,0x61,0xb0,0xc9, - 0xb1,0x97,0x66,0x20,0x25,0xf7,0xed,0x30,0x8d,0xa5,0x82,0x2b,0xf9,0x84,0xcd,0xda,0x96,0xa3,0x40,0x13, - 0x86,0x5a,0xa4,0x76,0x4e,0x01,0xd0,0x7f,0x70,0xb4,0xa2,0x52,0xbd,0xfc,0x30,0x52,0x32,0x3b,0xb1,0x73, - 0xc4,0xd4,0x39,0x11,0xd2,0xe7,0x8f,0x73,0x5a,0x67,0x7e,0x21,0xa8,0x03,0x8d,0x12,0xca,0x44,0x64,0x51, - 0x37,0xd3,0xf4,0x97,0x3f,0x88,0x6b,0x57,0x5a,0x65,0xab,0x10,0x5c,0x27,0xf1,0xe5,0x44,0x3d,0xc3,0x12, - 0xee,0x96,0x9e,0x19,0x94,0x27,0x1b,0x08,0x69,0x5c,0x60,0xd1,0x0e,0x0c,0x5a,0xeb,0x68,0xab,0xc2,0x8a, - 0x22,0x17,0x77,0x7f,0x36,0xed,0x69,0x46,0xc4,0x77,0x94,0x69,0x0e,0x8c,0x12,0x84,0xc3,0x68,0x2c,0x11, - 0x15,0x17,0xf0,0x6e,0xa5,0xaf,0xd7,0xf7,0x1a,0xc9,0xec,0xa7,0x9d,0x7d,0x44,0x68,0xdc,0x02,0xde,0xcb, - 0xf6,0x04,0x07,0xc4,0x4c,0xbb,0x38,0x00,0x2d,0x69,0x47,0xaa,0x6e,0xc3,0x2e,0x21,0x51,0x74,0x2a,0xed, - 0xd8,0xae,0xe2,0x41,0xca,0x54,0x1e,0x44,0xc2,0x8e,0x6f,0x47,0x95,0x81,0xc9,0xaf,0x18,0xf6,0x86,0xff, - 0xb9,0x8d,0x49,0xfc,0x5b,0xf6,0x84,0xe3,0x16,0xf8,0x19,0xd4,0xc2,0x35,0x42,0x26,0x44,0x99,0xf9,0x69, - 0x1d,0xb2,0xfc,0x86,0x2e,0x80,0xd0,0x1a,0x5d,0xe6,0x26,0x40,0x6d,0xeb,0x11,0x85,0x32,0x5a,0x29,0x9b, - 0x66,0x48,0x3f,0xbb,0xa7,0x95,0xef,0xa8,0x61,0x34,0x8d,0x30,0x13,0x28,0x0c,0xb2,0x29,0xa5,0xf8,0xfe, - 0x29,0xe4,0x5d,0xaa,0x79,0x9b,0xf9,0xd5,0x28,0x0f,0xd3,0xc0,0x78,0x3d,0xdd,0xa0,0xb1,0xcc,0x48,0xd2, - 0xd9,0x6b,0x8f,0xfe,0x8e,0xea,0x47,0x28,0x7e,0x25,0x37,0xcf,0xe7,0xb6,0x30,0xc4,0x6b,0x0d,0x3b,0x65, - 0x38,0x88,0x74,0x5f,0xa7,0x5a,0xa3,0x73,0x32,0x09,0x23,0xb3,0xc1,0xa8,0x5b,0xdf,0x11,0xd1,0xc4,0x78, - 0xa5,0xcc,0x02,0x4f,0x77,0x84,0x43,0x4e,0x17,0x77,0x1d,0xb3,0xcd,0xa4,0xd0,0xc5,0x17,0xc3,0xfd,0x7d, - 0x3c,0x16,0x4c,0x5e,0x46,0xaf,0x73,0x8e,0x70,0x6e,0x24,0xf7,0xe5,0x20,0x29,0x8a,0x9c,0x38,0x83,0x94, - 0xce,0x4d,0x95,0x2e,0xca,0x28,0x57,0xa5,0xc6,0x3f,0x37,0xd0,0xf1,0x48,0xe7,0x49,0x58,0x29,0xfd,0xf5, - 0x3a,0xff,0x56,0x2f,0x55,0x09,0xc1,0x07,0x35,0xd4,0x69,0xe5,0xda,0xd0,0x88,0x49,0xb1,0xa2,0x62,0xc3, - 0x4c,0xa4,0x32,0x2f,0xb8,0x7e,0x97,0xea,0x39,0x16,0x08,0xcd,0xa7,0x88,0x91,0x36,0x39,0x72,0xd3,0x82, - 0x3e,0xb1,0x26,0xbc,0x69,0x70,0x8a,0x66,0xb4,0x17,0xe1,0x53,0x4f,0xbb,0xd7,0xe3,0xdd,0x53,0x20,0x1f, - 0xe9,0xda,0xa6,0xfd,0xb5,0x33,0x34,0x11,0x92,0x11,0x49,0x51,0x03,0xd7,0xa4,0x46,0x13,0xf5,0x33,0x5d, - 0xdc,0x4e,0x69,0xea,0xe1,0xd5,0x12,0x9c,0x73,0xf4,0x35,0x81,0x8e,0x02,0xfa,0x8f,0x4a,0xba,0xdd,0x8c, - 0xf5,0xce,0x26,0xf0,0x7f,0xc8,0x83,0xc1,0xf6,0x7a,0x11,0xe4,0xc5,0xd1,0xce,0x0e,0x3c,0xd5,0x4f,0x33, - 0x1f,0xef,0x4d,0xb9,0xfb,0x9b,0xb8,0x89,0x38,0xee,0xb4,0xbb,0x61,0x53,0x27,0x6b,0x58,0x07,0x4c,0x63, - 0x95,0x4d,0x68,0x00,0x65,0x1c,0x75,0x18,0x4f,0x99,0xe2,0x1f,0xb6,0xab,0x02,0xaa,0x63,0xa3,0x2a,0xee, - 0x06,0x8a,0xa3,0x0d,0xf3,0x4e,0x22,0x23,0xdd,0x24,0xf3,0x61,0x82,0x2c,0x6f,0xc7,0x0c,0x6d,0x44,0x13, - 0x67,0x97,0x05,0x26,0xe2,0xb4,0x55,0xdf,0x1d,0x98,0xeb,0x46,0xe4,0xa1,0xac,0x6c,0xc9,0xdb,0x5d,0x07, - 0x16,0x2c,0x02,0xef,0x6f,0x42,0x9a,0xda,0xa8,0x08,0x4c,0x1d,0xc4,0x31,0xc4,0x04,0xd6,0xd5,0xd6,0x8e, - 0xe3,0x99,0xcb,0x1d,0x4a,0xc1,0x74,0xa3,0x59,0x24,0xe1,0x47,0xb9,0xfe,0x96,0x55,0x6a,0xbe,0xac,0x1a, - 0x1e,0xe1,0x7a,0x4e,0xd2,0xfb,0x0d,0xf5,0x44,0x9f,0xda,0xee,0x4b,0xcb,0x5d,0x74,0x6d,0x9f,0xc9,0x6c, - 0xbc,0xbb,0x67,0x58,0x66,0x99,0xb9,0xbe,0x3c,0x0b,0xb8,0xc9,0xbb,0xe9,0x14,0x16,0xa5,0xf1,0x7b,0x05, - 0x43,0x39,0xe2,0x54,0x99,0xf3,0x11,0x66,0xce,0x61,0x31,0xf4,0x1a,0x52,0xcd,0xe7,0x46,0x07,0x71,0x87, - 0x06,0x9a,0x3e,0x06,0xd0,0x41,0x6b,0xc1,0xfc,0xd0,0xec,0x57,0x94,0xb3,0x21,0x68,0xeb,0x88,0xd4,0xe6, - 0xf8,0xb1,0x8e,0xc3,0x0d,0x27,0x1b,0xfc,0x0c,0x2a,0xf6,0x94,0x0c,0xf7,0x34,0x27,0xfa,0xb5,0x09,0x5a, - 0xe6,0x07,0x9e,0xc4,0x07,0x73,0xc2,0xbe,0xf2,0xc3,0x34,0x78,0x8b,0x65,0x26,0xd1,0x1b,0xa7,0x84,0xb8, - 0x74,0xa6,0xe0,0xb6,0x91,0xfc,0x19,0xe8,0xa2,0x51,0xe5,0x77,0x06,0x90,0x95,0xda,0x10,0x0d,0xe3,0xef, - 0x20,0xbe,0x9c,0x8e,0xe4,0x93,0xa8,0xc1,0x30,0x19,0xfc,0xba,0x4c,0x9e,0x1e,0x7d,0x99,0xa1,0xf6,0xa6, - 0x15,0x60,0x9a,0x86,0xb5,0x24,0x00,0x01,0x08,0xd2,0xd0,0x86,0x0e,0x69,0x20,0x63,0xee,0x18,0x19,0x1e, - 0xdd,0x73,0xb6,0x4e,0xd2,0x5f,0x8c,0xc7,0x7c,0xef,0x78,0xb5,0x4c,0xf6,0x53,0xea,0x67,0xdc,0xf3,0xfa, - 0x70,0xa3,0xbd,0xb7,0xd7,0x28,0xc0,0x37,0xf8,0xe4,0xad,0xeb,0x48,0xbb,0x6a,0x05,0xbc,0x13,0x0e,0x6b, - 0x7b,0xa1,0xea,0x1a,0x2e,0x22,0x5a,0x69,0x67,0x49,0x38,0xb7,0x97,0x8d,0x37,0xd5,0x56,0x14,0x3d,0x84, - 0xd1,0xb3,0xb1,0x23,0x9c,0xc6,0x52,0x37,0xf6,0xb7,0x88,0xf6,0xec,0xeb,0xbe,0xa5,0xf5,0x20,0x4c,0x80, - 0x60,0xaf,0xce,0x02,0x95,0xa7,0x4f,0x33,0xf4,0xf9,0x52,0xfe,0x63,0xce,0x02,0xcb,0x1c,0x0c,0x0b,0x59, - 0xb1,0xcd,0x39,0x11,0xb1,0x4d,0x05,0x56,0x4e,0x1c,0xa5,0x6c,0x54,0x18,0x6e,0x1d,0xff,0x84,0x63,0xc8, - 0xe3,0xb9,0x05,0xc5,0xc2,0xbb,0x4e,0x83,0x2c,0xd8,0x7b,0x6f,0x71,0xe5,0xa3,0xcf,0xa3,0xae,0x3e,0x29, - 0x51,0xbf,0xda,0xf0,0xa7,0xba,0x21,0x02,0x25,0xa6,0xfb,0xad,0x10,0x4b,0x24,0x3a,0x6f,0x8e,0xb7,0xcf, - 0xbc,0xb6,0xd3,0xc6,0x8e,0xe8,0x4e,0x2d,0x0c,0x24,0x0d,0xdd,0x2c,0xab,0x6f,0xc0,0x9e,0x9b,0xb4,0x36, - 0xc3,0xda,0xb1,0x81,0xe4,0xbb,0xd2,0x08,0x03,0x68,0x95,0x11,0x84,0x70,0x10,0x9f,0xf1,0x93,0x61,0x7e, - 0x5c,0x45,0x77,0x59,0xa9,0x93,0x86,0x96,0xd1,0xb2,0x3c,0x3c,0x1a,0x1d,0x85,0x87,0xe1,0x51,0x98,0x8d, - 0xb8,0xdc,0x65,0x0a,0xf7,0xbf,0x77,0x83,0xf0,0x70,0x3c,0xca,0x59,0x9a,0xc3,0x3c,0x54,0xe8,0x6c,0x64, - 0xec,0x6c,0x39,0x33,0x9d,0x1c,0xbf,0xbb,0xcd,0x7f,0x36,0x7c,0xb8,0x97,0xae,0xf0,0xc8,0xd9,0x77,0x7b, - 0xa9,0x0b,0xb9,0x44,0xfc,0xc9,0x83,0x2d,0x98,0x48,0x0d,0x2d,0x9e,0x4b,0x6c,0x1d,0x7e,0x34,0xd4,0xa1, - 0x47,0x72,0xe3,0x66,0x22,0xb2,0x01,0x32,0xf4,0x7b,0x02,0x3a,0x63,0xca,0x25,0x0f,0x26,0x84,0x5e,0x96, - 0x51,0xac,0x66,0x02,0xc1,0x70,0xba,0xc8,0xae,0x44,0x73,0x90,0x2a,0x23,0xa6,0x5a,0x4a,0x26,0x5e,0x14, - 0xa7,0x84,0x9c,0xc2,0x9f,0x9a,0x8e,0x57,0x4b,0x6b,0xc1,0xd0,0x8c,0x37,0xc0,0xc4,0xdf,0x9c,0xbd,0x65, - 0xc3,0x63,0xb3,0xf6,0xed,0x66,0x8b,0x2c,0x6b,0x5f,0xbd,0x3c,0x7e,0x15,0x0f,0xe7,0x1c,0xdb,0x81,0xdd, - 0x01,0x21,0x20,0xb3,0xf5,0x44,0xaf,0xf2,0xc1,0xa9,0x40,0x08,0x3c,0xa0,0x0c,0x76,0x71,0xb2,0x07,0x92, - 0x50,0xfb,0x65,0xee,0xc1,0x90,0xb7,0x10,0x9f,0xb0,0xd8,0xc3,0xda,0x4e,0x5c,0xb3,0x46,0xbc,0xc3,0xf0, - 0x22,0x29,0x1e,0x7c,0x52,0x22,0xb9,0x73,0x53,0x08,0x02,0x3f,0x5a,0x2e,0x4d,0xed,0x64,0x41,0xed,0x53, - 0x87,0x4a,0x57,0xc5,0xb5,0x5e,0xbe,0x76,0xe4,0x23,0x22,0x72,0x9a,0x49,0xd2,0x36,0xd1,0x7b,0xa5,0x85, - 0x4a,0xa3,0x8d,0x10,0xd9,0x07,0x73,0x08,0x02,0x84,0x75,0xb4,0xb8,0xcf,0x0d,0x1e,0x0c,0x56,0xa8,0xe0, - 0x60,0xca,0xd2,0xd8,0x7a,0x5d,0xd6,0x2c,0xaa,0x68,0x44,0xb8,0x7c,0x28,0x8d,0x62,0xd9,0x48,0xa8,0x69, - 0xca,0x49,0xdd,0xf7,0xd2,0xf6,0x3d,0xd9,0xea,0xdb,0xe9,0x39,0x23,0xa0,0x36,0x4e,0xdc,0x36,0xac,0xde, - 0x54,0x6b,0xba,0x11,0x17,0x4c,0xfc,0x83,0x36,0xf2,0xc8,0xac,0x57,0x31,0x70,0xdf,0xb5,0xe2,0x43,0x1d, - 0x16,0xc2,0xa1,0xfd,0xad,0xeb,0x39,0x0b,0x29,0xa3,0x1d,0x22,0x19,0x78,0x1f,0x21,0x9a,0xf6,0xbd,0x2c, - 0xaf,0xe8,0x0e,0x4a,0xcb,0xaa,0xa7,0x2f,0x88,0x5e,0xaa,0xfd,0xf3,0x00,0x4a,0x29,0xcd,0xfe,0xf6,0xa0, - 0x55,0xcc,0xbe,0xa1,0x9b,0x95,0x9a,0x15,0x70,0xe3,0xf7,0x74,0xa7,0x52,0xc3,0x0d,0x09,0x51,0x35,0xc0, - 0x4e,0x8c,0x59,0x68,0x77,0x64,0x66,0xf3,0x68,0x0b,0xb1,0x11,0x3c,0x2e,0x83,0x51,0x1c,0xe5,0xa1,0x38, - 0x03,0x85,0x16,0xfb,0x80,0x03,0x2f,0x96,0x40,0x25,0x0c,0x88,0x44,0xea,0xe6,0x03,0x3a,0x9e,0x74,0xaf, - 0xdf,0x20,0x2b,0x8c,0x95,0x46,0x6a,0x30,0x17,0x9d,0x95,0x30,0x2d,0x52,0xe7,0xd1,0x5c,0xea,0x4d,0xe9, - 0x43,0xd7,0x5b,0xd0,0x27,0x0a,0xb0,0xdf,0xaa,0xf5,0x7a,0xba,0x5e,0x2f,0x40,0x8a,0x9d,0xcb,0xf8,0xf8, - 0xc1,0x45,0xcd,0xd4,0x35,0xe4,0x8a,0x7a,0x11,0xab,0xc1,0xe9,0xaa,0xd2,0xd2,0x4f,0x13,0xc5,0xce,0x9f, - 0x45,0xd7,0xb2,0xa0,0xc1,0xa0,0xd2,0x31,0x47,0x66,0xea,0xf8,0xdc,0x7a,0x94,0xf4,0x57,0xd1,0x42,0x5d, - 0xe2,0x66,0xf1,0x2f,0x22,0xf8,0x48,0xba,0x14,0xbe,0xea,0x22,0x50,0x2b,0x9a,0x51,0x13,0x8c,0x57,0xec, - 0xfe,0x7d,0x15,0xd4,0xc5,0x56,0x01,0x94,0x14,0x40,0x40,0x99,0x93,0x78,0xdd,0x38,0x87,0x9a,0xb8,0xf3, - 0x3d,0x13,0x38,0xb7,0xf7,0x1f,0x98,0xe8,0x7f,0x60,0x37,0x56,0xfb,0x55,0xaf,0x0e,0x62,0xad,0xa5,0xd6, - 0x7a,0xff,0xca,0xe5,0x02,0xe4,0x44,0x4f,0x6c,0x67,0xc4,0x96,0xac,0x11,0x68,0x83,0x0f,0x74,0x7d,0x63, - 0x0a,0x3b,0x86,0x2f,0x7d,0x26,0x3c,0xda,0x1f,0xcf,0xaa,0x11,0x82,0x4a,0x85,0xaa,0x22,0x53,0xaa,0x43, - 0xd1,0xac,0x03,0x80,0x43,0x89,0xaf,0xf7,0xd5,0x51,0x28,0x7f,0xef,0xc9,0xdf,0xfb,0x5f,0xc8,0xdf,0x7b, - 0xf7,0xf5,0xdf,0xaf,0x74,0xfa,0x97,0xa1,0x0d,0x0c,0x26,0x15,0x3e,0xd7,0x05,0x74,0x85,0xfb,0x9f,0x87, - 0x46,0x3f,0x78,0x0a,0x5d,0x75,0x29,0x75,0xef,0xae,0x6e,0x5e,0xfe,0x1c,0x1d,0xea,0xbf,0xba,0xb7,0xa3, - 0x2f,0x74,0xc2,0x17,0x9f,0xdf,0xfd,0xbb,0x2e,0xf3,0xe5,0x5d,0x53,0x89,0xbe,0xee,0x99,0x46,0xaf,0x4a, - 0xcf,0x3e,0xc0,0x3d,0x8c,0xbe,0xfa,0x3b,0xb1,0x1a,0x0f,0xa2,0xa3,0xbb,0x77,0xd7,0x6b,0xfa,0xf9,0xc5, - 0xe7,0xfc,0xf3,0xab,0xc3,0x91,0xee,0x3c,0xa4,0xc4,0xfb,0x5f,0x71,0xe2,0xe7,0x7f,0x1f,0x79,0x62,0xc9, - 0xe0,0x85,0x1e,0x3f,0xbc,0x74,0x04,0x0a,0xd1,0xbe,0xf2,0x22,0x23,0x00,0x34,0xc1,0xed,0xbd,0x43,0x6f, - 0xc7,0x09,0x2d,0x7c,0x08,0x79,0x57,0x5a,0xfe,0x14,0xff,0x24,0x21,0xd3,0x20,0xb1,0x56,0xdf,0xea,0xf7, - 0xc4,0x60,0x44,0x38,0x96,0x98,0x49,0x98,0x9d,0xb8,0x2b,0x1e,0x68,0x89,0x8a,0x4d,0xaa,0xac,0x7c,0x93, - 0x9a,0xbb,0x77,0x7f,0x87,0x95,0xc9,0xee,0x7d,0x85,0xbf,0x23,0xbc,0x8f,0x6a,0x15,0x1e,0x05,0xd7,0xe2, - 0xde,0x67,0x5e,0x3f,0xd5,0x5e,0x71,0xd5,0xca,0xa0,0xb4,0x9a,0x6d,0x32,0xfe,0x2f,0x08,0x8a,0xbd,0x63, - 0xa1,0xcb,0x7a,0xda,0x55,0x9d,0xa7,0x66,0xdb,0xe5,0x2f,0xe2,0xf2,0xc5,0x55,0x66,0x22,0xdd,0xd1,0x09, - 0xea,0xa2,0x20,0x9f,0x66,0xd5,0xdc,0x89,0xd6,0x85,0x9f,0x83,0x27,0x08,0x2d,0x93,0x5e,0x26,0x44,0xdd, - 0x5f,0xc6,0x15,0x94,0x17,0x3e,0xb2,0xa2,0xb8,0xd1,0xd3,0xd5,0xce,0xa2,0x1b,0x71,0x64,0xf1,0xb8,0x15, - 0x25,0xb2,0xe1,0x57,0xc8,0xe5,0xd0,0x92,0x01,0x0e,0x54,0x24,0x7f,0xf8,0xc9,0xee,0xf4,0x14,0x9f,0xa3, - 0x9b,0x4d,0x68,0x42,0x02,0xf1,0x09,0xbf,0xb1,0x85,0x2d,0xd6,0xa3,0x11,0x3d,0xd7,0xe9,0x52,0x29,0x30, - 0xb7,0x16,0x22,0x1d,0x0e,0x4d,0x6a,0xa7,0xe3,0x99,0x8a,0x6e,0xf8,0x4a,0x39,0xc4,0x4a,0xc2,0x6a,0xff, - 0xee,0x9d,0x52,0x75,0x84,0x40,0x94,0x98,0xa2,0x68,0x94,0x9d,0xf7,0x3e,0x63,0x3c,0xf0,0x3c,0x29,0xcb, - 0x78,0x86,0xab,0xb8,0x92,0x2b,0x4c,0xdf,0x22,0xd4,0x8d,0x78,0x7d,0x3a,0x75,0xe6,0xa8,0xea,0x94,0xdf, - 0x50,0x2a,0xd1,0x5e,0xb9,0x64,0xa8,0x57,0x48,0xc2,0x5d,0x00,0x9d,0x62,0x3f,0x70,0x0a,0xb3,0x52,0xc2, - 0xa4,0x48,0xcf,0x12,0x64,0x3d,0x86,0x51,0x0e,0x0b,0x29,0x98,0xab,0x92,0x62,0xa6,0x84,0x78,0x62,0xdb, - 0xd4,0x01,0x31,0xf4,0x12,0x8a,0x64,0x9a,0x77,0xa0,0xc8,0xf3,0xca,0x44,0x99,0xc7,0xb7,0xe0,0xb5,0xed, - 0x94,0xc6,0x5a,0xf3,0x4b,0x25,0x8f,0x05,0x05,0xa2,0x76,0x59,0xbd,0x53,0x58,0xb4,0x4b,0x8e,0xea,0xbb, - 0x55,0xa2,0xce,0xb2,0x65,0x89,0xfe,0x3a,0x23,0xae,0x44,0x16,0xb2,0xa3,0x42,0x23,0xdf,0xd4,0x2a,0x89, - 0xcb,0xcb,0x44,0xa3,0x74,0xce,0xa6,0x07,0xbf,0x41,0x90,0xb6,0x55,0xb9,0xb3,0x18,0x7b,0xd5,0x6d,0x42, - 0x4b,0xf1,0x41,0x68,0x29,0x40,0x0f,0x6e,0x43,0x8b,0x05,0x05,0xde,0xff,0x32,0x2a,0xba,0x37,0x1e,0xef, - 0xde,0xcf,0xcd,0x26,0xfc,0x8f,0xed,0xbf,0x72,0x6e,0x10,0xbd,0x6c,0xd7,0x19,0x3f,0xcd,0xd9,0x1f,0x4c, - 0xf5,0x8a,0x03,0x3f,0x5e,0xdf,0xc6,0x80,0x76,0xeb,0x01,0xc9,0xea,0xfb,0xc6,0xac,0xae,0xf7,0x9f,0x80, - 0xa1,0x91,0xef,0x2c,0xcc,0x16,0x04,0xfd,0x27,0xa6,0x0b,0x46,0x5b,0x1e,0x38,0xf0,0x30,0xaa,0xa3,0x21, - 0xe8,0x11,0x35,0x7f,0xb7,0x61,0xba,0x71,0x44,0xdd,0x82,0xff,0xa9,0xe1,0x18,0xbf,0x6d,0x4f,0xda,0x31, - 0x65,0x8d,0xe3,0x36,0x19,0x9a,0xbf,0x55,0xb9,0x31,0xa2,0xc1,0x32,0x7b,0x5f,0xcf,0x46,0x94,0xd9,0x6e, - 0xa3,0x03,0xca,0x1a,0xcd,0xea,0x34,0xbf,0xd5,0x82,0x93,0x65,0x5a,0x68,0x00,0x46,0x37,0xb8,0xb4,0x5b, - 0x69,0x64,0xba,0x23,0x91,0x18,0x6f,0x9b,0x8d,0xba,0x32,0x2e,0x56,0x91,0x5a,0xbb,0x5d,0x8c,0xe7,0xb0, - 0xcf,0x16,0x47,0x88,0xac,0x92,0x76,0xe3,0xba,0x9d,0xd5,0x2f,0xf8,0xa1,0xb8,0x38,0xdc,0x70,0xf8,0xf0, - 0x66,0x09,0x43,0x86,0xe1,0xc9,0xcf,0x10,0xa2,0x6e,0x81,0x8d,0xe2,0x17,0xec,0x52,0x27,0x1e,0x33,0xdd, - 0x67,0x3d,0xbf,0x6e,0xb6,0x3c,0x2f,0x36,0xa8,0x79,0x1e,0x16,0x84,0x0d,0x12,0xeb,0x02,0x21,0x5f,0x6b, - 0x1b,0x32,0xe4,0x3b,0x80,0x23,0xc1,0x2f,0xfc,0x5c,0x04,0xf3,0x1f,0xf4,0xf1,0xaa,0x63,0xb8,0x45,0xf2, - 0xc7,0xc6,0xca,0x25,0x12,0xde,0xba,0xd9,0xcc,0x87,0x22,0x40,0x2f,0x84,0x94,0x46,0xe8,0x0d,0x4d,0x4a, - 0x2f,0x21,0x72,0x9e,0x23,0x83,0xe7,0xc6,0x66,0x9e,0xe7,0x2d,0x0e,0x6d,0x1e,0x8c,0xe6,0x26,0x42,0xef, - 0x61,0xe8,0xde,0x71,0xf3,0xc0,0xa6,0xb3,0x4e,0x75,0x8b,0x4d,0x72,0xfd,0xe7,0xe1,0x18,0xd5,0xd1,0xc6, - 0x6b,0xed,0x1f,0x27,0x02,0x39,0x0f,0xc1,0xf0,0x3b,0x75,0x90,0xf2,0xbd,0x3d,0x8f,0x1f,0x02,0x37,0x9b, - 0x3a,0x50,0xc2,0xde,0x5e,0x6e,0x7b,0x26,0x3e,0x74,0x4a,0xad,0xfb,0xde,0xd3,0xf3,0x9e,0xcc,0xa2,0x87, - 0xd5,0xee,0xa5,0x65,0x0f,0xbe,0x61,0x7a,0x74,0x07,0xf4,0x78,0xad,0x7b,0x3a,0xd6,0x7d,0xd9,0x83,0x41, - 0x43,0xef,0x22,0x5e,0x25,0x52,0x41,0xca,0x53,0xe1,0x01,0xde,0x68,0xb7,0xe7,0xbe,0x8d,0xd3,0x21,0x5d, - 0x59,0x12,0xcf,0x07,0x2f,0x9f,0xed,0x15,0xe9,0xba,0x01,0x96,0xf0,0x54,0x36,0x67,0xdd,0x49,0xe2,0xcc, - 0xbb,0xdb,0x13,0x51,0xc6,0x74,0xe4,0xc1,0x28,0xaa,0xbd,0x2c,0x21,0xa5,0x56,0xc3,0x25,0x24,0x59,0x90, - 0x4d,0x6a,0x17,0xfd,0x2a,0x55,0xf1,0x20,0xf5,0x25,0x50,0x04,0x8e,0xc6,0xbb,0x68,0x0b,0x51,0x4c,0xa8, - 0x27,0xba,0x5c,0x3a,0xde,0x3a,0x36,0xc3,0x77,0x0e,0xed,0x97,0xc2,0x1a,0x70,0x91,0x43,0xb8,0xed,0xca, - 0xd9,0x6b,0x07,0xd9,0x4e,0x6b,0x70,0x05,0x67,0xf8,0x52,0xa8,0xc8,0xbd,0x57,0xdd,0x4e,0x15,0x70,0x91, - 0xe4,0xe8,0xdc,0x19,0xe1,0x71,0x72,0x9c,0xf5,0xfb,0x2c,0x7f,0xf1,0x6e,0x3c,0xd1,0x7a,0x2c,0xf0,0x46, - 0xe0,0x3c,0xc8,0xb3,0x4a,0x89,0xa7,0x55,0xb8,0x0a,0x3c,0x5a,0xa0,0x2d,0x11,0xde,0xd0,0x87,0x58,0x4d, - 0xe8,0x76,0xbc,0x0d,0xeb,0x9d,0x0c,0x83,0xbc,0x4f,0x74,0xb7,0x4d,0x16,0x31,0xc4,0x5b,0x21,0xc3,0xf3, - 0x60,0xe4,0xb1,0x73,0xd0,0x70,0xb7,0x4e,0x00,0x32,0x99,0x12,0xf9,0xbf,0x14,0x27,0x72,0xde,0xd0,0x0c, - 0x41,0xba,0xcd,0xc5,0x7d,0x75,0xbc,0x11,0xbd,0x77,0xef,0x7f,0xf1,0x58,0x47,0x34,0x66,0x10,0xff,0xb4, - 0x23,0xa0,0xf4,0xa9,0xcb,0x20,0xc4,0xbf,0x86,0x0d,0xf9,0xe0,0x4c,0x2a,0x48,0xd3,0x55,0x6b,0x55,0xa3, - 0xa2,0x21,0x77,0xb6,0x8b,0x4f,0x2b,0x29,0x91,0xa2,0xdb,0xe2,0x14,0x33,0x1d,0x8e,0x28,0xb7,0x3d,0x13, - 0xac,0xad,0xf9,0x01,0x3d,0x6a,0xfb,0xf6,0xc4,0x4b,0x37,0x4c,0xdb,0x9b,0x12,0xd3,0x84,0xd2,0xb1,0xe1, - 0x02,0x63,0xfd,0xa6,0x0c,0x76,0x4b,0xc6,0x1f,0x16,0x3a,0xee,0xa9,0xd6,0x98,0x13,0x95,0x54,0x66,0xe6, - 0xf4,0x40,0x74,0x81,0xec,0x98,0x29,0x1d,0xa2,0xf1,0x4d,0x59,0x75,0x74,0x18,0x8c,0x1b,0x15,0xcc,0x68, - 0xe5,0xaf,0xa8,0x79,0xdb,0xea,0xba,0x16,0xd1,0xc3,0x69,0xbf,0x6f,0x17,0x75,0xc3,0xb1,0xe9,0xe4,0xc5, - 0xea,0x6d,0x74,0xf0,0x87,0x7f,0x32,0x0d,0xfa,0x07,0x6a,0x97,0x3f,0xaf,0xf0,0xf9,0x98,0x96,0xe9,0x51, - 0x74,0xa4,0x5e,0x45,0x77,0xd5,0xeb,0xe8,0x9e,0x7a,0x41,0xbf,0xdf,0x44,0xf7,0xd5,0xb3,0xe8,0x73,0xf5, - 0x4d,0xf4,0x85,0x7a,0x19,0xfd,0x5d,0x3d,0x8d,0xbe,0x54,0x4f,0xf0,0xcc,0xf6,0xe4,0xf8,0xc5,0x38,0xba, - 0xb9,0x2a,0x43,0xfa,0xab,0x98,0x37,0x0c,0x8f,0xef,0xa9,0xc7,0x63,0xe5,0x1d,0x7b,0xe1,0xf1,0x9b,0xb1, - 0xa2,0x4b,0x3e,0x3c,0x7e,0x39,0xde,0xa8,0x27,0xc7,0x47,0xba,0xe4,0x11,0xe5,0x0e,0x28,0xf7,0x6e,0x67, - 0xa9,0xbb,0xba,0xd4,0xdd,0x66,0x7b,0x87,0xfa,0xaf,0xb0,0x9a,0xf2,0x03,0xc5,0xef,0x51,0xf1,0x0f,0x95, - 0x53,0xdc,0xab,0x7a,0x64,0xfa,0xe5,0x2f,0xee,0x19,0x5f,0xd2,0x37,0x7d,0xa1,0xb9,0x37,0xd4,0x9c,0x77, - 0x87,0xb2,0x9e,0xa1,0xde,0x1d,0xef,0x4e,0x78,0xfc,0x4d,0x3d,0x1d,0xf5,0x8a,0xbe,0xc6,0x1e,0x1a,0x7b, - 0x2d,0x15,0x9f,0xb2,0x95,0x1e,0xb2,0x64,0x38,0xcf,0x4c,0x7d,0x24,0x34,0x4a,0x3c,0xd3,0x25,0xbe,0xa1, - 0x12,0xdc,0xee,0x56,0x09,0x74,0x24,0x1b,0xf3,0x2d,0x5b,0x32,0x13,0xa9,0x56,0x2c,0x93,0x35,0x5b,0x68, - 0xae,0xf7,0x47,0xc7,0x27,0xd3,0xc1,0xb8,0xbf,0xbe,0xc3,0xae,0xab,0xee,0xac,0x3d,0xf6,0x66,0xe5,0x05, - 0x54,0x6e,0xf7,0x40,0xfd,0x74,0x0b,0xda,0xea,0xc6,0x5a,0x3f,0x39,0x58,0x8b,0xa1,0xec,0x25,0x5d,0x6a, - 0x0d,0x14,0xe4,0x78,0x3b,0x96,0x86,0x1c,0x84,0x55,0x41,0xb7,0x62,0xbb,0xb4,0x89,0x85,0x29,0xc2,0x2d, - 0x1c,0xb8,0x65,0xb4,0x7f,0x44,0x57,0xe3,0x0b,0x0e,0x52,0x77,0x01,0x70,0xc1,0x99,0xb9,0x38,0x7e,0x34, - 0x6e,0x98,0x6b,0x98,0x7b,0x2a,0x63,0x35,0x1c,0x81,0x5e,0x78,0x16,0x94,0x0c,0x58,0xe0,0x1f,0x3f,0xee, - 0xa8,0x01,0x5d,0xa6,0x51,0x16,0x15,0x61,0xd6,0x27,0xc2,0x9f,0x0a,0xbd,0x6a,0x14,0x42,0x25,0xa2,0x8c, - 0xce,0x09,0xf6,0x29,0xef,0x75,0x23,0x0f,0xa2,0xae,0x87,0x87,0xc1,0xf9,0xfe,0x3e,0x0d,0xef,0x8d,0x92, - 0xa2,0xf6,0x61,0x11,0xa3,0xdd,0xc1,0x3b,0x86,0x9f,0x45,0x0b,0xf6,0x74,0x67,0x25,0xa1,0x18,0x3b,0xd4, - 0x26,0x87,0x5a,0xc6,0x3d,0x67,0xcf,0xee,0xcb,0x7e,0x1f,0x6e,0x0f,0x59,0xcf,0x07,0xae,0x12,0x97,0x78, - 0x7e,0xd8,0x69,0xf1,0xde,0x9c,0xd1,0x3f,0x62,0x6c,0x0d,0x59,0xd2,0x33,0xba,0x95,0xef,0xb0,0x46,0xe1, - 0x7a,0x8d,0xdf,0xdf,0xec,0xed,0x11,0x58,0xe0,0xb7,0x41,0x31,0x68,0x96,0xb0,0x35,0x35,0xdc,0xaf,0xf4, - 0x18,0x11,0x0e,0xd9,0x0f,0xb4,0x5d,0xd6,0x14,0x6a,0xbc,0xa0,0x73,0xca,0xe8,0xc9,0xf1,0x7c,0x1c,0x10, - 0xde,0x59,0xaf,0x4b,0x56,0xd8,0x5c,0xaf,0x9f,0x42,0x9c,0xfc,0xd4,0x68,0xf4,0x70,0x9f,0x70,0x54,0xaf, - 0xfc,0x38,0xba,0x38,0xce,0xe9,0x0c,0x8e,0x45,0xbe,0x62,0xd7,0x92,0xbe,0x73,0x3a,0x74,0xc1,0xa8,0x0a, - 0x0b,0x99,0x3e,0xf1,0x3f,0x41,0xa3,0x81,0x28,0x7a,0x69,0xc6,0x36,0x11,0x35,0x35,0x4b,0x90,0x1a,0x18, - 0x89,0xe0,0x2f,0x18,0x64,0xd7,0x46,0xb9,0x40,0x36,0x4b,0x2a,0x80,0x18,0xcb,0x6e,0x5b,0x77,0x23,0xc4, - 0xe2,0x55,0xed,0x50,0xb5,0x7e,0x51,0x29,0x8c,0x37,0x6c,0x0b,0xa1,0xf0,0x31,0x8b,0xb7,0x53,0xba,0x9c, - 0xda,0x12,0xf0,0xbd,0xbd,0x43,0x47,0xd8,0xdd,0x68,0xab,0x56,0x64,0x31,0xfe,0xb1,0x11,0x08,0x5b,0xbb, - 0xcc,0xce,0x87,0xc6,0x51,0x76,0x7c,0x0c,0x57,0xd9,0xce,0x63,0x06,0xf4,0xc4,0x82,0x1b,0xf1,0x1e,0xa5, - 0x0d,0x07,0xe2,0x68,0xa2,0xca,0x1a,0x99,0xc6,0x72,0x5a,0x9f,0xdf,0x72,0x72,0x86,0x35,0xff,0x07,0xce, - 0x1d,0x9a,0xad,0xd6,0x85,0xaf,0x10,0x8f,0xeb,0xb5,0x97,0x64,0xfb,0xbf,0xbc,0xf2,0x58,0x34,0xd6,0xe4, - 0xb5,0xeb,0x3c,0x3c,0x2a,0x19,0x16,0x97,0xc9,0x4b,0x1d,0x73,0xdc,0x91,0x17,0x49,0x3a,0xec,0x22,0x33, - 0x47,0x1c,0xc4,0xa9,0x43,0xed,0x7a,0xfa,0x52,0x5e,0xeb,0xe4,0x57,0x2d,0x22,0x48,0x6a,0x99,0xc0,0x7a, - 0x0d,0x46,0xf9,0x9d,0x2e,0x72,0x99,0x96,0x70,0xf0,0x81,0xbe,0xe5,0x4b,0xa4,0xa0,0xc6,0x1b,0x34,0x04, - 0x10,0x09,0xcb,0x21,0x1a,0xe9,0xe0,0x6a,0x23,0x87,0xef,0x15,0x96,0x77,0x67,0x47,0xbe,0x4c,0xef,0x7a, - 0xa2,0xac,0xcb,0xe4,0x14,0x76,0xd3,0xa5,0x92,0x9b,0x62,0x7a,0xe8,0x94,0x3d,0x58,0x24,0x92,0x74,0x4b, - 0x1d,0x88,0xc4,0xdd,0xb9,0x25,0x4b,0xb7,0xdb,0x5c,0x50,0x3c,0xa3,0x83,0xb0,0x97,0x3c,0x77,0x51,0x9b, - 0x39,0xe0,0x06,0x58,0xbe,0xf0,0x53,0xdd,0x4c,0x5c,0x3b,0x01,0x20,0x24,0x28,0xc9,0xfc,0x64,0xd0,0x82, - 0x7c,0x8d,0x55,0xfc,0x1d,0x68,0x22,0x66,0xeb,0x75,0xe1,0x57,0xd2,0x60,0xe3,0xb8,0x48,0xec,0x6b,0x63, - 0x6a,0x7e,0x0a,0x5f,0xaf,0xbf,0x3e,0xf7,0xcd,0xe3,0x65,0xa6,0x9a,0x50,0x13,0xc2,0xeb,0xa2,0x80,0x0a, - 0x91,0x5d,0x2d,0x20,0x09,0x63,0xd5,0x00,0x8f,0x10,0xba,0x2b,0xea,0xe7,0xe8,0x66,0x75,0x19,0xde,0x6c, - 0xea,0x8a,0xf4,0xdd,0xae,0x49,0x49,0xcd,0xaa,0x37,0x35,0x87,0xb7,0x69,0x8f,0x01,0x6d,0x09,0xcc,0x70, - 0xa6,0x59,0x36,0xfc,0xe8,0xdc,0x01,0xca,0xd8,0x98,0xcb,0xe5,0xb9,0xeb,0x2a,0x58,0x26,0xdb,0x71,0xbc, - 0x2e,0x8c,0xef,0x66,0x69,0x6f,0xd8,0xfa,0x0d,0xe9,0x4b,0x0d,0xf6,0xb4,0x3b,0x44,0x43,0x62,0x63,0xa0, - 0xd4,0xaa,0xda,0x65,0xab,0x8d,0x72,0x3b,0xed,0x64,0xf7,0xb7,0x3d,0x1c,0x34,0x37,0xba,0x56,0x17,0x73, - 0x9b,0xba,0x45,0x76,0xd0,0x68,0x6c,0xa7,0xc9,0xc2,0x30,0xb7,0xe7,0xc6,0x1a,0xc9,0x1c,0xeb,0xcb,0x8a, - 0xd1,0x5f,0xf6,0x70,0xff,0x28,0x90,0x67,0xe6,0x09,0x64,0x9e,0x50,0x6e,0xf4,0x3b,0xc6,0xa4,0xda,0xc3, - 0x69,0xc8,0xb6,0xda,0x06,0x93,0x22,0xfb,0x6b,0xb8,0xf0,0xa6,0xc5,0x1b,0xec,0x72,0x25,0xdf,0xdb,0x45, - 0xd3,0x8d,0x58,0x12,0xae,0xe1,0x41,0x6b,0x31,0x5c,0x3b,0x84,0x8b,0x4e,0x5f,0xc6,0xed,0x2a,0xc4,0x08, - 0xb2,0xd3,0xf2,0x76,0xe2,0x56,0x84,0x8a,0x8d,0xba,0x99,0x26,0xc9,0x42,0x94,0x8a,0xb7,0x67,0xa7,0xc5, - 0x98,0xcd,0xab,0x7e,0xa7,0x46,0x4d,0x74,0xd0,0x6a,0xfc,0xb5,0x75,0xe3,0x24,0x26,0xe8,0xc8,0x65,0x73, - 0x1d,0x58,0x40,0xe6,0x2c,0x86,0x00,0xbe,0xb3,0x1a,0xec,0xaf,0x63,0x97,0xd8,0x5f,0x18,0x97,0x98,0x5c, - 0xf6,0xa3,0xdf,0x1a,0xbf,0xba,0x49,0x2f,0x89,0x54,0x4f,0x21,0x9b,0x97,0x29,0xfc,0x8c,0x86,0xe9,0xbc, - 0xbb,0x63,0x6e,0x6d,0x02,0x0a,0x99,0xb3,0x79,0x4b,0xd1,0x58,0x03,0x00,0xe5,0x6a,0x61,0x78,0xc9,0x1e, - 0xbb,0x7f,0x6e,0xdf,0x13,0x1f,0xae,0xdf,0x7c,0x88,0x30,0xcd,0x34,0x0e,0xff,0x87,0x1b,0x71,0x1f,0x25, - 0x4c,0x13,0xb2,0x2e,0x1f,0x98,0xab,0x79,0xd9,0xab,0xcb,0x97,0x49,0xd5,0x71,0xfa,0xb0,0x1b,0x58,0x6f, - 0xf3,0xab,0x5e,0xf6,0x84,0x3b,0x6b,0x62,0xa4,0x0f,0x75,0xda,0x2c,0xdd,0x51,0xff,0x63,0x07,0xd1,0xac, - 0x66,0x06,0xa3,0x91,0xe1,0x7b,0x47,0xa1,0xcb,0xb8,0xc5,0xbb,0x3b,0xb5,0xf7,0x32,0x0f,0xd3,0xe0,0xd6, - 0xf7,0xb6,0x6d,0x4b,0x35,0xab,0x74,0xb7,0xef,0x90,0x06,0x28,0xde,0x89,0xb0,0xdf,0xdb,0x5b,0x67,0x8d, - 0xdb,0x9b,0xea,0x1e,0x45,0xf7,0x2d,0x9f,0x34,0x8f,0xbc,0x0b,0xee,0xef,0xdb,0x5e,0x73,0x78,0xb6,0x6b, - 0xb7,0x80,0xfd,0x7d,0x8d,0xb4,0x0e,0xd2,0x76,0x5b,0x0d,0x98,0x7f,0x5f,0x4b,0x8d,0xb3,0xd4,0x6a,0x07, - 0x9a,0x62,0xda,0x57,0x53,0x43,0x57,0x13,0x21,0xad,0x6c,0x4b,0x05,0x44,0x15,0x02,0x75,0x1a,0x1a,0xb4, - 0xd0,0xdf,0x40,0x8e,0x3c,0xc5,0x33,0x59,0x76,0xcc,0x5a,0xb8,0x63,0x98,0x5c,0x84,0x59,0xab,0xb3,0xb4, - 0xfc,0xd6,0xa5,0xc4,0x3a,0x1c,0xdd,0x24,0x08,0xaf,0xe8,0x3b,0x28,0x53,0x77,0xd4,0x20,0xe1,0xda,0xad, - 0x76,0x8b,0xc1,0x2a,0xc3,0x1b,0x6a,0x9c,0xbc,0x85,0x7d,0xa1,0x0f,0x51,0x13,0x55,0x4d,0x1a,0xa8,0xd2, - 0x61,0x72,0x9b,0x64,0xff,0xd2,0x32,0x0d,0x4b,0xe6,0x0b,0x38,0x86,0x2e,0x6b,0x9d,0x12,0x46,0x6e,0xb4, - 0xef,0xa8,0x99,0x9a,0xc7,0x54,0x18,0x85,0x10,0xc7,0xd4,0x28,0xb7,0x31,0x2c,0xe0,0x96,0xc2,0xd7,0xb2, - 0xd1,0xdc,0x24,0x5a,0x5a,0x63,0xa0,0xda,0xac,0xf9,0xdf,0x42,0x2f,0x60,0x9f,0x23,0x68,0x5a,0x24,0xf1, - 0x69,0xf6,0x96,0xa7,0x3e,0xd1,0x53,0x87,0x05,0xa7,0x09,0xa7,0xc2,0x01,0x04,0x26,0x9c,0x1c,0x4e,0x5a, - 0x6b,0x88,0x8a,0xed,0xfd,0x77,0x63,0x3f,0x47,0x99,0x82,0xc6,0xb2,0x78,0x1f,0x38,0xf0,0xff,0x2d,0x3c, - 0x3e,0xb9,0x3a,0xd9,0x3f,0x5d,0x0f,0xc6,0xfd,0xe0,0x60,0x56,0x6b,0x8a,0x4f,0xa0,0x0a,0x51,0x82,0x47, - 0x2d,0x5b,0x4f,0xd3,0x1c,0x66,0x59,0x2c,0xa4,0xca,0xe3,0x09,0x62,0xf3,0x2c,0xb5,0xd9,0xb5,0x7f,0xb7, - 0x0e,0xbf,0xe5,0xec,0x25,0x8f,0x62,0x4e,0xa3,0xf0,0x8a,0xf8,0x4a,0x0b,0xf0,0xf4,0x2a,0x11,0xd1,0x59, - 0x27,0x0a,0x25,0x1e,0x6a,0xaf,0x0b,0xd2,0x4a,0x03,0xce,0xe0,0x6d,0xc0,0xb9,0x96,0x19,0xac,0xd8,0x79, - 0x51,0xef,0x1b,0x28,0xa3,0x43,0xdc,0x26,0x26,0xd8,0xc9,0xb4,0xc7,0xea,0xe9,0xda,0x2b,0xe1,0x34,0xaa, - 0x2b,0x0c,0xcf,0xa3,0xa9,0x0e,0x71,0xc2,0x63,0x9b,0xb6,0xae,0x3e,0x84,0x0f,0x17,0xf1,0xfc,0xb4,0xfd, - 0x84,0x39,0xd7,0x0b,0x49,0xcc,0x9c,0x6f,0xa6,0xe9,0x9c,0x3a,0x3f,0x61,0x0f,0xb3,0x05,0xe2,0xb0,0x5b, - 0x5b,0xe5,0xa5,0x3a,0x0f,0xc2,0xb8,0x66,0xfb,0x9a,0x9b,0x65,0x34,0xcc,0x3b,0x3d,0x41,0xb6,0x90,0xea, - 0xa0,0xb9,0xa2,0x36,0x68,0x4a,0xad,0xfd,0x13,0x55,0xa3,0x42,0xdb,0x85,0x21,0xb0,0x79,0xab,0x2f,0x3b, - 0xe5,0x2d,0xec,0x60,0x0e,0x97,0x70,0xb3,0xdb,0xdb,0x57,0x29,0x58,0x7e,0xda,0x72,0x56,0xfa,0x4c,0x80, - 0x30,0x2a,0xfc,0xae,0x1a,0x99,0x82,0x6c,0xd6,0xd6,0xd0,0x91,0xe1,0x27,0x5b,0xc0,0xba,0x85,0xa9,0x9c, - 0xb8,0x4f,0xda,0x9b,0x50,0x5b,0x85,0x70,0xff,0xfe,0x30,0xde,0xdf,0xef,0x3d,0x3c,0x1c,0x06,0x50,0xeb, - 0x73,0x74,0x4b,0xe3,0xfe,0x7d,0xe6,0xc1,0x77,0xac,0xae,0x8d,0x48,0xab,0x21,0x52,0x4a,0x35,0x62,0xd3, - 0x9e,0x0a,0xe0,0xc7,0x22,0x9a,0x58,0x56,0x9a,0xa0,0x53,0x4f,0xa2,0x86,0x8b,0x4c,0x2d,0x85,0x11,0x68, - 0xbf,0x63,0x03,0x8e,0xf5,0x92,0xc3,0x83,0x33,0x2b,0x80,0xde,0x0e,0xb1,0xf3,0x4f,0x87,0x58,0xad,0xe0, - 0x52,0x3a,0x40,0x5b,0x2b,0x49,0x95,0x84,0x96,0xad,0x92,0x54,0xee,0x98,0xbe,0x6f,0x41,0xe3,0x52,0x31, - 0xc4,0xb6,0x68,0xdd,0x26,0xae,0x6e,0x3d,0x17,0x6c,0xad,0xf5,0x11,0x94,0x78,0x79,0xad,0xab,0x96,0x1e, - 0x2f,0xc4,0x51,0x7a,0xa0,0x85,0x8e,0x9e,0x72,0x6a,0xc6,0x58,0xf0,0xd5,0x81,0x01,0xe9,0x93,0xd4,0x41, - 0x61,0xb2,0x9d,0xb4,0x9d,0x48,0x65,0x42,0x42,0xb4,0x2f,0x84,0x0e,0x4c,0x66,0xf4,0x47,0xb7,0x37,0xac, - 0xba,0x7d,0xc3,0x80,0x63,0x4c,0xbc,0xf4,0xae,0x6d,0xca,0xff,0xea,0x36,0xb9,0x74,0x7e,0xaa,0xed,0x56, - 0x6e,0xdf,0x13,0x3a,0x49,0x74,0x24,0xda,0x7b,0xd2,0x9e,0x65,0xfd,0xc8,0x38,0xda,0xbe,0x4e,0x2a,0xb6, - 0xa3,0x75,0x56,0xd7,0x3e,0xd3,0x72,0xe5,0xdb,0x96,0x1a,0x92,0x80,0xd0,0xf3,0xda,0xe7,0x6f,0xd2,0xb9, - 0xc0,0xd6,0x5a,0x48,0x0c,0x6e,0xb7,0xc0,0xe2,0xf3,0x61,0xa9,0xc1,0x22,0x3e,0x2e,0x5d,0xb0,0x28,0xfb, - 0x9f,0x5b,0x59,0x2f,0x0d,0xde,0x0a,0x68,0x52,0xd6,0x9e,0x86,0xed,0x8a,0xaf,0xf1,0x85,0x03,0x2e,0x13, - 0xa1,0x34,0xa8,0x6f,0x0b,0x0f,0x71,0x80,0xf0,0x38,0x18,0xb0,0xdc,0xef,0x2d,0x18,0x6e,0x8e,0xda,0x55, - 0x46,0xa6,0xf1,0x16,0xdb,0xe3,0xbd,0x3b,0x2c,0xf4,0x78,0xd9,0x5d,0x41,0x3d,0xde,0xa2,0x7f,0xd7,0x82, - 0x71,0x6a,0xc7,0x35,0xd1,0x03,0x4b,0x3f,0x16,0x8e,0x55,0x65,0x47,0x6e,0xe2,0xc2,0xa4,0xed,0x95,0x6e, - 0xa3,0x5d,0xc7,0xb8,0x59,0x2c,0xcb,0xb6,0x46,0x7d,0x6f,0x98,0xeb,0x51,0xb3,0xb5,0x50,0x3d,0xea,0xbc, - 0x7f,0xcf,0x3c,0xad,0xb5,0xf0,0x5a,0x11,0xd4,0x38,0xad,0x09,0xa0,0x2c,0x45,0xc2,0xd3,0xce,0x78,0x8b, - 0xb9,0x6f,0x0d,0xad,0x45,0x75,0xca,0xf5,0xfd,0x81,0x45,0xa8,0x5a,0x4d,0x52,0x6e,0x43,0xbf,0xaa,0x83, - 0x40,0xb4,0x3c,0x9f,0x43,0x65,0x13,0x6a,0x83,0xdc,0xb1,0xd5,0x58,0x79,0x7b,0x63,0xec,0x51,0xb7,0xa3, - 0x95,0xb6,0x64,0x66,0x5b,0xe3,0xeb,0x63,0x1a,0xb9,0x18,0x2c,0xab,0x74,0x3e,0x10,0x0f,0x87,0xb7,0x8e, - 0xb6,0x6b,0xf2,0x4d,0xe6,0xe0,0x03,0xb3,0x6f,0xb1,0x07,0xb7,0x2e,0xc2,0xad,0x8d,0x36,0x26,0xb0,0xdd, - 0x5a,0xe7,0x62,0xfc,0xe5,0xc6,0x6e,0x59,0x94,0xee,0x49,0x6c,0xad,0x8d,0x68,0x98,0xa4,0x7f,0xda,0xfe, - 0x3b,0x88,0x11,0x1b,0x29,0x17,0xfe,0xad,0x09,0x60,0x81,0xb4,0x89,0x42,0x2f,0x03,0xc8,0x39,0x61,0x20, - 0xca,0x8f,0x07,0x9c,0x17,0x65,0x63,0xb8,0xf6,0x72,0xb3,0xb6,0x78,0x83,0x08,0xe9,0xb0,0x19,0xe8,0x7b, - 0xa7,0xa7,0x08,0x6b,0x60,0xee,0xfa,0x6d,0xb1,0xed,0xf1,0xd2,0x62,0xaf,0xf9,0x7a,0xed,0xbf,0xb7,0x20, - 0x0b,0x07,0x3b,0xf4,0x2f,0xfd,0x58,0xc1,0x8e,0x7f,0xae,0xb9,0xe5,0x2d,0xc9,0xde,0xe9,0x74,0x0b,0x11, - 0x30,0xdf,0x61,0x07,0x7e,0x4b,0xb3,0xa2,0xd2,0x28,0x2d,0x0e,0x5d,0x02,0xb1,0xbd,0xa2,0xf5,0x35,0xd0, - 0xba,0x08,0x6f,0x97,0xd3,0xa8,0xec,0xf6,0x9b,0xb1,0xf8,0xaf,0xb8,0x19,0xc5,0xd5,0x60,0x65,0x6f,0xc6, - 0x02,0x26,0xf9,0xcd,0x75,0x99,0x76,0x12,0x26,0xb7,0x61,0xf4,0xa3,0xdb,0x31,0xfa,0xd1,0xd8,0x58,0x50, - 0x38,0x48,0x2b,0xdf,0xb2,0x34,0xaa,0x9d,0x55,0xb4,0xcd,0x82,0x60,0x5a,0x3d,0x82,0x7d,0xca,0xe1,0x18, - 0x4f,0xfb,0xb0,0x0d,0xe2,0x10,0x23,0xf0,0xe6,0xa0,0x8d,0x38,0x60,0x6f,0x53,0xff,0x46,0xf4,0x50,0xfa, - 0xc1,0xb1,0x51,0x7d,0xa9,0xc8,0x61,0x51,0xc5,0x02,0x29,0x7b,0x8f,0x05,0x52,0x26,0x16,0x48,0x52,0x27, - 0x50,0x1d,0xf9,0x47,0x63,0xdd,0x1b,0x1b,0x1e,0x69,0x78,0x44,0xfc,0x79,0x8e,0x2f,0xda,0x42,0x3b,0xae, - 0x1c,0xe1,0x03,0x48,0xa7,0x21,0x49,0xb8,0x15,0xe5,0xdc,0xd2,0x60,0x03,0x47,0xb4,0x5b,0xea,0x44,0x37, - 0x7f,0xa9,0xa1,0x5b,0x50,0x4d,0xd7,0xd0,0x6f,0x47,0x34,0xd2,0xf3,0xff,0x8f,0x68,0xa6,0xfd,0x02,0x74, - 0x0b,0x92,0xe9,0x28,0x56,0xa3,0x18,0x77,0xf9,0x3e,0x88,0x60,0xb2,0x8f,0x44,0x30,0x8d,0x46,0x3f,0x88, - 0x5e,0xa4,0xf4,0x87,0x91,0x4b,0x4b,0x7e,0xfb,0xdf,0x8e,0x5a,0xb2,0x0f,0xa3,0x96,0xec,0xff,0xa2,0x96, - 0x8f,0x45,0x2d,0x99,0x45,0x2d,0x5a,0xfb,0x43,0x0c,0x09,0xb4,0xe8,0x27,0x25,0x62,0xcf,0x59,0x58,0xf5, - 0x73,0x40,0xeb,0x1c,0xaf,0xe2,0x74,0x1e,0x9f,0xa5,0xf3,0x14,0xf9,0xd1,0x4d,0xf3,0xb6,0x0c,0xaf,0x1b, - 0xaf,0x7f,0xe1,0x29,0xb6,0x86,0xb5,0x78,0xe7,0x73,0x37,0xb6,0xae,0xd1,0xc1,0x1b,0xfa,0x17,0xf0,0xb8, - 0xb2,0xa2,0x13,0x40,0x19,0x7b,0x7b,0x1a,0xec,0x2e,0x4c,0x8a,0xb1,0x91,0x1c,0x78,0x01,0xcf,0x2b,0x31, - 0x8d,0x49,0x0c,0xa5,0xae,0x51,0x5f,0x53,0xed,0x7a,0xcc,0xde,0xae,0x68,0xae,0xde,0x10,0xac,0x86,0xb7, - 0x89,0x5a,0x51,0x04,0x8e,0x67,0xb2,0xe8,0xe2,0x96,0x26,0xb3,0x46,0x93,0xd5,0x76,0x7b,0xdb,0x2f,0x63, - 0xee,0x9b,0xcf,0x7f,0x05,0x10,0x26,0x5a,0x63,0x55,0x37,0x9f,0xd6,0x1c,0x15,0x31,0x2e,0xc4,0x87,0x1a, - 0x00,0x4d,0xdb,0xd4,0x7a,0xe2,0x72,0x2b,0x9b,0x4d,0x6d,0x3b,0xf1,0xfe,0x39,0x4e,0x3e,0x6d,0x92,0x5b, - 0x2c,0x4e,0xda,0xc5,0x98,0xa5,0x96,0xc5,0x49,0xdd,0x69,0xa6,0x60,0xcc,0xb4,0xd3,0x8f,0xe6,0x34,0x73, - 0x87,0x41,0xcb,0x31,0x4f,0x6b,0xd1,0x96,0x6f,0xcd,0x53,0x65,0x76,0xa6,0xc5,0xa7,0xcc,0x34,0xf9,0xf4, - 0x99,0x6a,0x37,0x86,0xcd,0xb1,0x16,0xcc,0x3e,0x55,0xca,0x6a,0xfc,0x16,0x5b,0xdc,0xe3,0xc7,0x8f,0x6a, - 0xfa,0x3f,0x0b,0x63,0x96,0x2b,0x4e,0x8c,0x9d,0xde,0xd4,0x81,0xae,0x0e,0x7e,0xf7,0x63,0xe7,0xd1,0x71, - 0xf6,0xfe,0x67,0xe7,0x91,0x7d,0x78,0x1e,0x30,0x9d,0x7e,0x97,0x66,0xfe,0x19,0x3e,0xad,0x2d,0xa0,0xef, - 0xe1,0x9c,0x73,0xc4,0x85,0x89,0x8e,0xbf,0xce,0xce,0xbe,0x2e,0xea,0xb0,0x60,0xfe,0x95,0xf8,0x3d,0xbc, - 0x32,0x97,0xa8,0x55,0x19,0x10,0xc3,0xa9,0xe7,0x20,0x86,0x5e,0x55,0x05,0x55,0x9d,0x11,0xb6,0x1c,0x16, - 0x62,0x43,0x55,0x0c,0x74,0xd4,0x6f,0x60,0x47,0x8d,0xe9,0x22,0xef,0xef,0x83,0x7b,0x83,0xfb,0x9e,0xea, - 0x32,0xe7,0x92,0x88,0xcc,0x7b,0x7b,0x3a,0x32,0xf3,0xaf,0x88,0x28,0x53,0x7f,0x0f,0x96,0x65,0xe2,0x3f, - 0x27,0xe4,0xac,0xd5,0x86,0xac,0x95,0xcb,0x4d,0x92,0x85,0x37,0x1c,0x04,0x33,0xf4,0x5e,0x55,0x71,0x5a, - 0x94,0x9e,0x2a,0xaf,0xcb,0x2a,0xb9,0x7c,0xfa,0x84,0x52,0xf8,0xab,0xf7,0xf4,0x89,0xa7,0xce,0xd3,0xe2, - 0xf2,0x2a,0x2e,0x92,0x5f,0x65,0x2c,0xa1,0xf7,0xad,0x4e,0xe8,0xe9,0xd1,0x85,0x3d,0x84,0xb4,0x5c,0x5c, - 0x4b,0x1c,0x0c,0xef,0xb1,0xf9,0xec,0xfd,0xef,0xff,0xa7,0x77,0xf7,0xf0,0xe8,0xef,0xbd,0xe7,0x71,0xf1, - 0xb6,0xb7,0x8a,0xb3,0xde,0xcf,0x49,0x56,0x5e,0xe5,0xcb,0x29,0x1d,0xaa,0x79,0x1e,0xc3,0x49,0x56,0xe8, - 0xbd,0x9c,0x27,0xb0,0x22,0xe4,0xd8,0x04,0x3d,0x9d,0xda,0x93,0x85,0xd2,0xa1,0xd9,0x07,0x83,0x81,0xa7, - 0x78,0x9f,0xbe,0xe6,0x10,0x1a,0xa1,0xf7,0x08,0x3f,0x1a,0x69,0xaf,0xe2,0x15,0xb7,0x26,0x7f,0xb9,0xc6, - 0x55,0x7a,0x9e,0xd2,0xc4,0xaa,0x65,0x19,0xde,0xc4,0x13,0xf8,0x8b,0x5c,0xe4,0x69,0x56,0xd9,0x49,0x3f, - 0x7a,0x89,0x81,0x4f,0xd3,0x32,0x3e,0xa3,0x1b,0x23,0xf4,0x9e,0xe8,0x2f,0xa2,0x18,0xd8,0x65,0x45,0x9e, - 0x21,0x98,0x9c,0x2d,0xfe,0x5b,0xfa,0x6d,0x7a,0x4b,0x05,0x95,0x22,0x6c,0x88,0xf7,0x74,0x8a,0xc7,0xda, - 0x2c,0x7f,0xf5,0x8a,0x57,0x90,0xfe,0xed,0xc1,0x4e,0xf4,0x3c,0xa7,0x4d,0xa3,0xb5,0x9d,0xc4,0x19,0xc2, - 0x41,0xc0,0xc4,0x82,0x2a,0xbf,0xa2,0x9f,0xbd,0x89,0xf9,0x8d,0x05,0xcc,0x32,0x02,0xad,0x6f,0xe9,0x02, - 0x45,0xb6,0xfc,0xed,0x55,0x79,0x4f,0x67,0xd8,0x12,0x34,0xae,0x67,0x79,0xc9,0xeb,0x6c,0x7e,0xd3,0xb2, - 0x95,0x15,0x8f,0x4c,0x97,0xd1,0xa3,0xb3,0xbf,0x10,0x69,0xa3,0xd4,0x4b,0x51,0xc5,0x67,0xaf,0xed,0xae, - 0x53,0x8a,0xa7,0xf4,0x04,0x1f,0x4b,0xb8,0x96,0x5e,0xa9,0x93,0xe9,0x22,0x7d,0x55,0x25,0x8b,0xf2,0x75, - 0xb1,0x44,0xe1,0xa4,0xea,0x41,0xac,0x8f,0x68,0xf0,0xd7,0x34,0xa7,0x82,0xf5,0xf9,0x4b,0x14,0xa8,0x8b, - 0x7e,0x0b,0x25,0xd3,0x76,0x59,0x78,0x43,0x5b,0xa5,0xd3,0x25,0x42,0x42,0xd0,0xda,0x12,0xed,0x81,0x50, - 0x10,0x8d,0x91,0xbc,0xd6,0x69,0x18,0xcb,0x65,0x62,0x12,0xe9,0x53,0x12,0x9e,0xe2,0x39,0x21,0x23,0x3c, - 0x61,0x80,0x85,0x96,0x15,0x66,0x2a,0x71,0xd5,0x43,0x76,0xcf,0x34,0xd9,0xd3,0xa6,0x23,0xbd,0x38,0xe3, - 0xfe,0x51,0xa7,0x57,0x2f,0xdb,0x40,0x5a,0xfb,0x29,0xe7,0x00,0xc2,0xde,0x4f,0x79,0xab,0xb6,0x3e,0x59, - 0xbd,0xeb,0xa4,0x92,0x92,0x8f,0xa6,0xb4,0x8e,0xf4,0x8f,0xfc,0x7a,0x22,0x51,0x77,0x3c,0xf9,0x2b,0x69, - 0xdf,0x64,0x1a,0x16,0xf4,0x87,0xa4,0x7e,0x9b,0xbe,0x4b,0xa6,0x18,0x3e,0xce,0xca,0x3b,0x6c,0xa3,0x9d, - 0xca,0xab,0x65,0x56,0xa4,0xbc,0x46,0xf2,0x61,0x53,0x4b,0x4c,0x4f,0xfe,0x9a,0x55,0xb8,0xd4,0x8b,0x80, - 0xd7,0xb7,0xcb,0x34,0x5b,0x56,0x89,0x5e,0xa0,0xe7,0x79,0x36,0x8d,0xaf,0x43,0x4f,0xfe,0xea,0xe2,0xcb, - 0xa4,0xe4,0x44,0xfd,0x21,0xa9,0xbf,0x25,0xd3,0x4c,0xa7,0xdb,0x4f,0x5d,0xfe,0x62,0x59,0xe8,0x0a,0xfa, - 0x4b,0x8f,0xbd,0x48,0x39,0x55,0xfe,0xea,0xe1,0x11,0x40,0x14,0x9c,0x6a,0xbe,0xec,0xb0,0x25,0x75,0x29, - 0xe3,0xb8,0xcc,0xb1,0xcc,0x7a,0xfb,0x9e,0xf3,0x0f,0x6f,0xe3,0xc0,0xad,0xbb,0xe5,0x35,0xf4,0xd6,0x00, - 0x58,0x03,0x34,0x3f,0xa5,0x24,0x15,0x83,0x84,0x7b,0x76,0xf5,0x3a,0xf7,0x24,0xad,0xc7,0x89,0x8d,0x12, - 0xdf,0x73,0xa9,0x47,0xf3,0x79,0x7e,0x55,0x0a,0x94,0x6a,0xfb,0x6d,0x07,0x0e,0x7a,0xe7,0x45,0x7e,0xd9, - 0xbb,0xce,0x97,0x05,0x6d,0xf9,0x2a,0x9d,0x24,0x38,0x66,0xb8,0x71,0x7a,0x82,0x07,0xb5,0xd7,0x18,0xae, - 0xde,0x40,0x44,0xbd,0xc5,0xb2,0x58,0xe4,0x65,0x52,0x0e,0x7a,0xaf,0x2f,0x12,0x53,0xba,0x59,0x84,0x5a, - 0xd1,0x54,0x30,0xb5,0x40,0xbf,0x2f,0xaa,0x6a,0x11,0x1e,0x1c,0x1c,0x7d,0x75,0x77,0x70,0xf4,0xc5,0x97, - 0x83,0xa3,0xc1,0xfd,0x83,0xde,0xd5,0x45,0x92,0xa1,0xff,0x1e,0x90,0xa8,0x3d,0xa4,0x18,0x45,0x5a,0x51, - 0xd3,0x4c,0xc1,0x55,0xbd,0xfc,0xfc,0xbc,0x17,0x97,0xbd,0x32,0x87,0x6b,0x8e,0xb2,0xa7,0x71,0x12,0x06, - 0x97,0xa0,0x17,0xd3,0x6d,0x32,0x55,0xc8,0xa6,0x0a,0x94,0xc8,0x76,0xe9,0xc9,0x04,0xa9,0x80,0x9a,0x38, - 0xbb,0x26,0xc4,0x7a,0x3d,0xe8,0xfd,0x93,0x3a,0x03,0xc2,0x89,0xe7,0xf4,0xb3,0xec,0x59,0xf2,0xb6,0x27, - 0x57,0x51,0x0f,0x7c,0x18,0x46,0x7b,0x76,0xdd,0x83,0x0e,0x1a,0x50,0x70,0x75,0xd1,0x5c,0xe6,0x9e,0x8e, - 0x5f,0xb4,0xcc,0x88,0x11,0xe7,0xdc,0x67,0xdf,0x3c,0xe9,0xcd,0x81,0xe8,0xcb,0xde,0x72,0x41,0x87,0xcb, - 0xc5,0x9a,0x66,0xa3,0xdc,0x51,0x37,0x4a,0xc8,0x46,0xe9,0x2d,0xef,0x5a,0x7d,0x5a,0x0d,0xde,0xa2,0xfc, - 0x2a,0xeb,0x01,0xf7,0xf6,0x0a,0xf6,0xaa,0x34,0xe8,0x69,0x1c,0xc0,0x51,0xb3,0x78,0x1c,0xc0,0xb4,0x8a, - 0x40,0xa6,0xa4,0xbb,0xa5,0x98,0xd2,0xa4,0xa7,0x44,0x33,0x14,0x94,0xd3,0xde,0xbe,0xb3,0x84,0xc0,0x02, - 0x03,0x2d,0xd3,0xa9,0x20,0x68,0x4f,0x99,0x6a,0x84,0x5b,0xf4,0x17,0x21,0xd2,0x8b,0xc9,0x22,0xf4,0x7e, - 0xa1,0x4e,0x9e,0x7c,0xff,0xf8,0xa5,0xfc,0xd6,0x80,0xb5,0xac,0xf2,0x4b,0xb8,0x33,0x02,0x32,0xa3,0x65, - 0x2f,0xd3,0x59,0x56,0x02,0xdd,0x3c,0x7d,0xd9,0xd3,0x11,0xb6,0xbb,0x81,0x49,0xb6,0x80,0x68,0x9f,0x33, - 0x5a,0x16,0x6c,0x0a,0x2d,0x28,0x15,0x7c,0x9b,0x24,0x0b,0xbd,0x11,0x58,0xd9,0x39,0xea,0x03,0x30,0x60, - 0x29,0x42,0x60,0x42,0x08,0x8e,0x7e,0xdd,0x21,0x28,0x99,0xe6,0xb8,0xd6,0xe8,0xa6,0x59,0xe8,0x6e,0xe8, - 0xba,0xb1,0x5d,0xd2,0x8c,0x96,0x67,0x84,0xeb,0x2e,0xe3,0xf2,0x2d,0x4e,0x23,0xbe,0x7b,0xf8,0xe1,0xa9, - 0x19,0x51,0x17,0x57,0x38,0xa3,0xdf,0xc9,0x87,0xa7,0x2e,0xe8,0xae,0x10,0xb3,0xbd,0xef,0xf5,0x57,0x9d, - 0xf6,0xb2,0x76,0x0d,0x0b,0x3c,0x27,0x96,0x7a,0xd4,0xd2,0xc4,0xf6,0xb4,0xd1,0x34,0x42,0xe3,0x1e,0xe1, - 0x14,0xba,0xf9,0xaa,0x85,0x83,0xba,0x7b,0xd0,0x94,0x23,0x16,0x3e,0xa3,0x5b,0x92,0x57,0xdf,0xff,0xe9, - 0xf5,0xcb,0x80,0x16,0x9c,0x98,0x34,0x5d,0xec,0xfb,0xb8,0x98,0x32,0x21,0x41,0x69,0x39,0xa2,0x10,0x5e, - 0xc6,0x0b,0x93,0xf7,0x5d,0x9e,0xcf,0x08,0x0a,0x9e,0x53,0x4a,0xef,0xd1,0xcb,0xa7,0x35,0x19,0xa2,0xf3, - 0x2d,0x11,0x22,0xc4,0x17,0xf7,0xfe,0x8c,0x98,0x4a,0x8f,0xfe,0x49,0x2b,0x26,0x31,0x90,0x02,0x9a,0xe0, - 0x59,0x9e,0xcd,0x9c,0x24,0x22,0xbf,0x19,0x19,0x79,0xdf,0xd1,0x2a,0xcd,0x75,0xe9,0xde,0x01,0x5d,0xa2, - 0xba,0x98,0xe0,0x87,0xb9,0x2e,0xd7,0xa8,0xf4,0x2a,0x89,0x8b,0xc9,0x05,0x6e,0x38,0xfc,0xe5,0xc9,0xd0, - 0x29,0x20,0x4a,0xc2,0x7b,0x24,0x47,0xe5,0x25,0x1f,0x15,0xb9,0x42,0xf9,0x80,0x50,0x89,0x9e,0xdf,0xbf, - 0x37,0xb8,0xb7,0x0a,0x4c,0xf1,0x57,0xaf,0x1f,0xc9,0xe5,0x8b,0x55,0x79,0x8e,0xe3,0xfc,0x9e,0xf2,0x8f, - 0x5e,0x1a,0xa2,0x47,0x9f,0xa8,0x46,0x47,0xfa,0x4c,0x72,0xa5,0xc5,0x92,0x2e,0x64,0x02,0x70,0xa9,0xf7, - 0xf2,0xb7,0xe7,0x4f,0x0a,0x22,0x54,0x8b,0x57,0x4f,0xa8,0xb7,0x97,0x8f,0x1f,0x7d,0xf5,0xc5,0x97,0x9f, - 0xf7,0x28,0xb5,0x37,0xe5,0xe4,0x1e,0xa5,0x4b,0x3d,0x68,0x4b,0xb6,0xeb,0x3c,0x7e,0xd6,0x5d,0xe7,0xf1, - 0x33,0xa9,0x33,0x81,0x5b,0x46,0x54,0xba,0xba,0x7c,0x64,0xe0,0xb1,0xa3,0xfc,0xd3,0xff,0xfd,0xff,0x3e, - 0xae,0x81,0x94,0x0a,0x7f,0x8b,0x1b,0x3a,0xc9,0x26,0xd7,0x9d,0xc5,0xcf,0x4d,0xae,0x40,0x02,0x6d,0xfb, - 0x8f,0xc9,0xf5,0x16,0x28,0xd0,0xa1,0x69,0x14,0xb8,0xe0,0x93,0xf9,0x73,0x22,0x3e,0xca,0xa6,0xc0,0x7c, - 0xe7,0xbd,0x65,0xc9,0x38,0xcc,0xbd,0xdf,0x07,0x3d,0x3a,0xd1,0x53,0xc6,0xea,0xf3,0x3c,0x7f,0x8b,0xfc, - 0xe5,0x82,0x11,0x88,0x0e,0x54,0xc7,0xc5,0xff,0x24,0xda,0x7d,0x40,0x08,0x87,0xd6,0x92,0x90,0xc1,0xdb, - 0x1e,0x22,0x67,0x11,0x6c,0xe2,0x8c,0xeb,0xbe,0x15,0x56,0xbd,0xa7,0x07,0x75,0xc9,0x84,0x2e,0x44,0x55, - 0x15,0x81,0xa5,0x60,0x2c,0x9e,0x45,0x49,0x98,0xfc,0x67,0x22,0xec,0x4b,0x60,0x29,0xb9,0x88,0x68,0x7a, - 0x89,0x69,0xa4,0x47,0x47,0x5b,0x5f,0x0d,0xc6,0xbd,0x17,0xdd,0x45,0x84,0x9f,0x16,0x18,0xe9,0x8c,0x1b, - 0x07,0x2b,0x71,0xc0,0xe8,0x2c,0x06,0xcf,0x41,0x50,0x4e,0x58,0xfe,0x0e,0x21,0xdb,0x52,0xee,0x26,0x0c, - 0xdd,0x2c,0xca,0x00,0x24,0x5e,0x36,0xb7,0xd4,0xea,0xeb,0x22,0x5e,0x6c,0xd1,0xf3,0x1f,0x47,0xd0,0x27, - 0xff,0x39,0x7a,0xfe,0x1b,0xba,0xdb,0xf2,0x59,0x92,0x9d,0xcd,0xd3,0xb7,0xbd,0x59,0x42,0xc8,0x8f,0x2e, - 0xa8,0xb3,0xe4,0xcf,0x74,0x46,0xbc,0x07,0x0e,0xdc,0x94,0x0a,0xac,0x98,0xf8,0xb5,0xb8,0x39,0xd9,0x26, - 0xf1,0x5f,0xe7,0x09,0x50,0x73,0x92,0x75,0x92,0xf9,0x5f,0xdb,0xf6,0xf2,0x45,0x39,0x8f,0xe3,0xec,0x2f, - 0x51,0xfc,0xbf,0xa4,0x15,0x71,0x42,0x93,0x8b,0xf8,0x6d,0x32,0xff,0x78,0xb2,0xbf,0x59,0x4b,0xd3,0xfe, - 0xaf,0x68,0x10,0x0b,0xd8,0xa3,0x4f,0xdb,0x1c,0x40,0x4a,0x83,0x9c,0x25,0x2b,0x22,0xd5,0x30,0x97,0x2e, - 0x2e,0x20,0x3e,0x27,0xf0,0xcc,0xb3,0x6d,0x26,0xe0,0x47,0xca,0x9c,0x25,0x58,0xae,0xa4,0xd0,0x2e,0xa5, - 0x09,0x19,0xbf,0x45,0x3b,0x6d,0x66,0xe0,0xd7,0xba,0x04,0x15,0x9e,0xe7,0x05,0x0a,0x35,0x19,0x82,0x9f, - 0x30,0x12,0xb4,0x24,0x43,0xf9,0x18,0x96,0xe0,0xfb,0x65,0x3a,0x4d,0x67,0xc9,0x2d,0x2c,0x01,0x51,0x59, - 0x38,0x5d,0x09,0x36,0x74,0x9a,0xfc,0x99,0xcc,0xcf,0x41,0x99,0x68,0xba,0x3f,0x49,0xab,0x2d,0xbe,0xe0, - 0xb5,0x94,0x35,0x0c,0x41,0x92,0xcc,0xd9,0x88,0x3f,0xa1,0x76,0xb2,0x4f,0xe3,0x0c,0xde,0x4c,0xdb,0x9c, - 0xc1,0x33,0x86,0x85,0x1e,0x21,0xb3,0xde,0x2a,0xc7,0xe1,0xa0,0x32,0x35,0x69,0x9f,0x24,0x35,0x47,0xb0, - 0x6a,0x2c,0x55,0x02,0x27,0x4c,0x69,0xb9,0xc5,0x1b,0xcc,0x64,0xe5,0x9b,0xcd,0xcc,0x12,0x4b,0x75,0x25, - 0xc5,0xd4,0x61,0x12,0x08,0x5a,0x57,0x79,0x32,0x4b,0xb2,0x26,0xab,0x40,0xbb,0x72,0x45,0x0d,0x24,0x85, - 0xc9,0xb0,0xfc,0xc2,0x23,0xda,0xbb,0xe4,0x7c,0x8b,0x5d,0xf8,0x35,0x2e,0xc1,0xd9,0xd8,0xf9,0x59,0x76, - 0xe1,0x77,0x20,0x89,0xc5,0xdb,0xfc,0xb2,0xac,0x9a,0x2c,0x03,0x67,0x40,0x73,0x6c,0x16,0x43,0x0b,0xc9, - 0xe5,0x1c,0xde,0x4c,0x6b,0xce,0x21,0x6b,0x71,0x0e,0x74,0x64,0xa6,0xf1,0xac,0xc5,0x3a,0x3c,0xa1,0xdd, - 0xb0,0xa9,0x2e,0xeb,0x90,0x27,0x4e,0x46,0xcd,0x39,0x3c,0xe1,0x8e,0x6d,0x86,0x61,0x1d,0x7e,0x2d,0xa8, - 0x6b,0x93,0x58,0xf3,0x0e,0xbf,0x13,0x02,0xab,0x0b,0x1b,0xde,0xe1,0xf7,0x5c,0x06,0xd2,0xe0,0x1d,0xbe, - 0x4e,0xae,0x12,0xd8,0x38,0xdc,0xca,0x3d,0xd4,0xe0,0x6e,0x61,0xd5,0x39,0x01,0x2e,0x66,0x69,0xf1,0x0f, - 0x8f,0x5c,0x8a,0x96,0xa6,0x2b,0xc7,0x98,0xb1,0x4c,0x5d,0x4c,0x6e,0x14,0x5a,0xa3,0xb7,0x84,0xa4,0x41, - 0x4a,0x11,0x3e,0x9b,0xa7,0x6f,0x88,0x42,0xbe,0x64,0x48,0x12,0x8e,0xc2,0x92,0xee,0x69,0x02,0x7c,0x16, - 0x9f,0x73,0x1e,0x21,0x2b,0xe2,0x5d,0x08,0x0a,0xb3,0x18,0xda,0x86,0x74,0x2c,0x7a,0xc0,0xc5,0x96,0xaa, - 0x4d,0xe4,0x04,0xa3,0x29,0x3a,0x2d,0x75,0xaa,0x05,0x2c,0xb8,0x5c,0xee,0x3d,0x69,0xd6,0x22,0xfa,0x90, - 0x8a,0x9c,0x25,0x59,0xcc,0xb0,0xd4,0x5b,0xa5,0x71,0x27,0x63,0x41,0xf9,0xd4,0xf3,0x1b,0x77,0x64,0x17, - 0xc9,0x19,0xf0,0xcf,0x25,0x26,0x33,0xe8,0xbd,0x92,0xf9,0xca,0xb8,0x40,0xfb,0x13,0xfd,0x94,0x62,0xac, - 0x3c,0x4f,0x77,0x0c,0xc4,0x54,0x20,0x50,0xf4,0x9f,0xa9,0x3e,0xdc,0x82,0xc8,0xce,0xe8,0x8e,0x4a,0x89, - 0xe6,0x9f,0xe2,0xc8,0xf4,0x7e,0x48,0x7a,0x6f,0x89,0x1d,0x70,0x5b,0xa3,0x8b,0xd5,0x5d,0x56,0xa2,0x5b, - 0xe9,0x2c,0xe2,0x5c,0x5a,0xc2,0x45,0x96,0x9e,0x08,0xdc,0x05,0xe6,0x34,0x2d,0x96,0x6f,0xb1,0x1c,0x55, - 0x5e,0x61,0xe8,0x53,0xe1,0x2a,0x62,0x20,0x3e,0x5a,0xc4,0x36,0x53,0xe1,0xec,0x31,0x70,0x3f,0xb3,0x05, - 0x1a,0x21,0x3a,0xe5,0x64,0xfb,0x74,0xd9,0xed,0x2d,0x40,0xe3,0xb4,0x44,0x09,0x21,0xb6,0x16,0x67,0xf1, - 0xeb,0x72,0xde,0xbb,0x48,0x19,0x17,0xd3,0xa5,0x8d,0x15,0x61,0x14,0x4e,0xc5,0xae,0xe2,0xc9,0x45,0x75, - 0x95,0x83,0xbd,0x48,0x69,0x69,0x92,0xfa,0xf6,0x22,0x44,0xd0,0xe3,0xf8,0xae,0x4b,0x5e,0xd6,0x5e,0x4e, - 0x38,0x05,0x28,0x93,0x97,0xa3,0xbc,0x95,0xd9,0xf8,0xcd,0x36,0x68,0xd8,0x8d,0xef,0x92,0xb3,0x62,0x49, - 0x57,0x66,0xcd,0x72,0x5c,0x34,0x58,0x0e,0x5a,0x53,0x06,0x30,0x26,0xfb,0x89,0xa0,0xa2,0x25,0x4b,0x08, - 0xb9,0xfc,0x09,0x98,0x8b,0xb3,0xad,0x69,0x12,0x0d,0x43,0x00,0x48,0x95,0xd2,0x37,0x19,0xc3,0xee,0x15, - 0x71,0x6d,0x34,0x6d,0x67,0xaf,0x50,0x0d,0xea,0x72,0x34,0x21,0xfa,0xe7,0xcf,0xf4,0x0d,0xf2,0xaf,0x12, - 0x9a,0xf6,0x15,0x60,0x97,0x7e,0x5c,0x26,0x89,0xbe,0xba,0xcf,0xe0,0x15,0x63,0x9b,0xfd,0x28,0x92,0xdb, - 0x99,0x8f,0xa4,0xf8,0x18,0xf6,0x23,0xbe,0xbc,0x85,0xfd,0x78,0x85,0xcb,0x94,0xc6,0x31,0x35,0x0c,0x08, - 0xfa,0xba,0x95,0xfd,0x68,0xf3,0x1f,0x84,0xfb,0x1a,0xfc,0x47,0xf2,0x3e,0xf6,0x23,0x86,0xde,0x20,0x9d, - 0x03,0x82,0x2b,0x80,0xd2,0x5f,0xe1,0x42,0xce,0xd2,0x37,0x57,0x49,0xc1,0x90,0x68,0x18,0x91,0xaf,0x09, - 0x36,0xa6,0x55,0x32,0x23,0x6c,0x30,0x75,0x98,0x11,0x08,0xaa,0xdd,0x44,0xcb,0x8e,0xb8,0xe5,0xc1,0x8e, - 0xd4,0x05,0x69,0xbf,0x2e,0x62,0x9c,0x26,0x3a,0x33,0x67,0x71,0x49,0xd8,0x00,0xf4,0x93,0x30,0x28,0x49, - 0x27,0x7f,0xf2,0x7b,0x9e,0xf0,0x58,0xfe,0x3a,0x7f,0xc2,0x07,0xe3,0xa3,0xf8,0x92,0x46,0xcb,0xee,0xd9, - 0xe7,0x33,0xce,0xf5,0x62,0xbe,0xed,0x08,0xd8,0xe2,0xd9,0xff,0x04,0x77,0xf2,0x76,0x9e,0xff,0x9f,0xc5, - 0x9c,0x3c,0x02,0x2a,0x2d,0x98,0xf2,0x25,0x40,0x21,0x74,0x2c,0x47,0x7d,0xc5,0xe7,0xb6,0x49,0x63,0xd0, - 0xb9,0x25,0xa4,0x50,0x99,0x32,0x95,0xbe,0x28,0x2e,0x34,0x25,0x86,0xb2,0x60,0x51,0xe4,0x3e,0x58,0x00, - 0x2a,0xa8,0x06,0x41,0x5e,0xc5,0xa8,0xf7,0x4f,0x41,0x5d,0x96,0x53,0xb9,0xc4,0x41,0xd6,0x43,0xa4,0xe2, - 0x5c,0x6e,0x4a,0xbd,0x82,0x2b,0x79,0x8b,0x76,0x35,0xaf,0x52,0x1a,0x66,0x45,0xf0,0x19,0x8d,0x73,0x86, - 0xdb,0xd3,0x4e,0x09,0x90,0xf7,0x71,0xec,0x0a,0xd0,0x11,0xbf,0x90,0x68,0x0c,0xca,0xc4,0x98,0x99,0x30, - 0x90,0xf6,0xb4,0xc9,0xb4,0x6c,0x6a,0x6f,0xc9,0x1c,0x68,0xec,0xd1,0x62,0x61,0x5f,0x81,0xa0,0x9e,0xa0, - 0x9d,0x6a,0xd6,0xa6,0xaa,0xc4,0x01,0x10,0x56,0xc9,0x8b,0xc1,0x9c,0x16,0x75,0x19,0xcf,0x92,0xb6,0xdd, - 0xa8,0xc7,0x67,0xd8,0x58,0xa1,0x5a,0xab,0x9d,0x60,0xa8,0x9b,0xf3,0x6f,0x92,0x79,0xe8,0xfd,0x8d,0x2e, - 0x6a,0xc2,0x67,0xd4,0x74,0x98,0x28,0xb6,0xea,0xbc,0x31,0x2c,0xcc,0xce,0xa1,0x2a,0x85,0xcf,0xd8,0x39, - 0xd2,0x5f,0x4c,0xc5,0xe2,0xa7,0x2e,0xf3,0x94,0x2e,0xa1,0x09,0x46,0x11,0x7a,0x6b,0x4f,0x2d,0x17,0x48, - 0x7e,0x59,0xe4,0x33,0x06,0x36,0x2a,0x26,0x4b,0xf0,0x3a,0x3e,0x83,0x63,0x62,0xa1,0x9d,0xcd,0x63,0xc9, - 0x4d,0xcd,0x94,0xe9,0xc6,0x98,0x77,0x31,0xd9,0x6e,0xe2,0xa6,0xc9,0xd1,0x2c,0xc2,0x9b,0x44,0xd3,0x8f, - 0xd4,0x45,0x4a,0x77,0xc6,0xe1,0x80,0xff,0xab,0x59,0x97,0x46,0x09,0x4d,0xde,0x1f,0x36,0x8b,0x52,0x59, - 0x46,0x12,0xd4,0x87,0xc5,0x3d,0x88,0x04,0x51,0x13,0xdf,0x20,0x1f,0xdd,0x76,0x58,0xaf,0x3a,0x15,0xf2, - 0x8c,0xb2,0x0e,0xeb,0xb2,0xc7,0xf0,0xb7,0xe4,0x52,0x68,0x16,0xbb,0xb3,0x2a,0xac,0x4b,0x79,0x61,0x51, - 0x2b,0xdb,0x1b,0x5f,0x8a,0x5c,0xc6,0x5e,0x89,0xfc,0x8b,0xaf,0xc2,0x1d,0x1e,0x31,0xff,0x76,0xae,0x16, - 0xfe,0x6d,0xee,0x13,0x36,0xb3,0xb1,0x77,0x01,0x5d,0x62,0x92,0x3d,0xa7,0x3d,0x93,0x56,0x09,0x0f,0x51, - 0x7a,0x32,0x25,0xd4,0x27,0x39,0xc9,0x14,0x68,0x4d,0x86,0xb5,0xd0,0xa8,0x4b,0x8a,0x5e,0x5d,0x02,0x09, - 0xd9,0x6f,0x42,0x2e,0xd2,0xba,0x83,0x3e,0x4c,0x66,0x8d,0x21,0x38,0xc5,0xc5,0x03,0xb4,0x07,0x86,0xdb, - 0xc1,0x04,0xcc,0x37,0x1b,0x1e,0x85,0x98,0x3b,0x32,0x8e,0xc7,0x6a,0x6e,0xf1,0x3d,0x2e,0x13,0x4d,0xf8, - 0x73,0x4e,0x91,0x40,0x18,0xb5,0x4a,0x4c,0x02,0xad,0x2c,0xbb,0xdb,0xd8,0x8a,0x41,0xa5,0xfd,0x02,0x58, - 0xa7,0xf2,0x4c,0x00,0xc3,0xed,0x94,0xef,0xf1,0xa7,0x67,0x1c,0x04,0xe8,0x57,0x40,0xd3,0x25,0x6c,0x77, - 0x2e,0x8c,0x79,0xce,0x91,0xc4,0x2c,0xab,0x06,0x16,0x54,0x6d,0x30,0x92,0xa2,0x7a,0xd6,0x82,0x72,0xa8, - 0xf5,0x0e,0x44,0xd0,0x86,0x7b,0x41,0x20,0x92,0x13,0x35,0x5b,0xcc,0x73,0x65,0xcb,0x64,0xe8,0x5e,0x20, - 0xae,0x88,0x73,0x6e,0x30,0xa1,0x02,0x31,0xbd,0x5a,0x2a,0x00,0xac,0xea,0x7c,0x38,0xcc,0x1f,0x1c,0xdd, - 0xbf,0x4f,0x7f,0xfa,0xd1,0xd1,0xe7,0x81,0xf6,0x3b,0x93,0x8b,0xf1,0x51,0x1e,0xed,0xdf,0x45,0xd6,0x83, - 0xe8,0xae,0x2d,0x91,0xda,0x12,0xd5,0xa0,0x5e,0xc0,0xa8,0xa0,0x3e,0x1b,0x2b,0x18,0xa5,0x94,0x82,0xc3, - 0xa4,0xc5,0x1c,0x7e,0x30,0xa8,0x2e,0x92,0xcc,0xb5,0x1f,0x96,0xfc,0xfa,0xd9,0xe1,0xd6,0x22,0x22,0xe1, - 0xbc,0x35,0x1b,0xfd,0x19,0x46,0xf5,0xf6,0x36,0xb0,0x14,0x9d,0xb9,0x65,0x95,0x2f,0x3a,0x57,0x5c,0xa3, - 0x02,0x5a,0xba,0x4d,0x60,0xff,0x53,0xfa,0x79,0x58,0xf0,0x95,0x91,0xe1,0xbc,0xf7,0x05,0x3d,0x7e,0x97, - 0xe6,0x6c,0x6e,0xeb,0x7b,0x07,0xf1,0x22,0x3d,0xd0,0xb8,0xc6,0x6b,0x0f,0xa6,0xcb,0xbd,0x7e,0xa5,0xbd, - 0x86,0xf9,0x89,0x7d,0x8c,0x96,0x24,0x1a,0xcb,0x40,0xfc,0x24,0xba,0x1a,0x55,0xe6,0x76,0x98,0xe7,0x33, - 0x68,0xa3,0x05,0x1b,0xd5,0x5c,0xe2,0x4f,0x1b,0x68,0x8d,0x5a,0x3e,0x75,0xac,0x75,0xcd,0xbf,0x30,0x5c, - 0xd9,0xee,0x4f,0x1b,0xaa,0xe0,0xa2,0x4f,0x1d,0xa6,0xd4,0xfa,0x0b,0x43,0x74,0x41,0xee,0xd3,0x06,0x6a, - 0x90,0xf7,0x01,0x3f,0x4a,0x76,0x8c,0x17,0x86,0x8b,0xdd,0x43,0x36,0xbe,0x04,0xec,0xe5,0x20,0xc9,0x03, - 0xfd,0x73,0xbd,0xde,0xbe,0x2c,0x74,0x89,0x66,0xea,0x7a,0xdd,0xbc,0x43,0xb6,0x6d,0x32,0x6d,0x35,0x29, - 0x14,0xb8,0xd1,0x89,0x10,0x6f,0xb2,0x99,0x6d,0x43,0x14,0xb9,0xd1,0xa4,0x1a,0x25,0x8e,0x8b,0xf1,0x30, - 0xab,0xcb,0x8b,0x3f,0xb0,0x33,0x96,0x6a,0x66,0x40,0xf0,0xe9,0xa0,0xfe,0xe1,0x8c,0x0e,0x51,0x41,0x28, - 0xcf,0xf9,0x85,0x4c,0x33,0xfb,0xb4,0x31,0x71,0x8b,0x8b,0x9a,0x15,0x1e,0x1e,0x8e,0x0e,0x91,0xa2,0xa7, - 0xed,0xa2,0xa8,0xad,0x82,0xb6,0x18,0x5d,0x18,0x97,0x22,0xa9,0xf1,0x8f,0xf6,0x52,0x9a,0xca,0x75,0xf9, - 0xe2,0xfc,0xb7,0x24,0x79,0x1b,0x3c,0xa4,0xb1,0x69,0x71,0x8d,0x7f,0x77,0x2b,0xeb,0xca,0xca,0x6c,0xfc, - 0xfb,0xdb,0xf5,0x8c,0xdc,0xc6,0xff,0x72,0x2b,0xef,0x5c,0x44,0x37,0xfe,0xd1,0x17,0x5b,0x59,0xa5,0x11, - 0xe0,0xf8,0xf7,0xb6,0x3b,0x2c,0x45,0x8a,0xe3,0x7f,0xb1,0xd5,0x1d,0xbc,0xb4,0xd5,0x0b,0x8e,0x79,0x45, - 0x50,0xa3,0xfb,0xf8,0x33,0xc8,0x17,0xe6,0xa7,0x1d,0x41,0x56,0x46,0xe8,0x86,0xe8,0x2e,0xf0,0x0a,0x5c, - 0x7d,0xa2,0x1d,0xf8,0xc7,0x03,0x59,0xc5,0xee,0xdd,0xd8,0xdc,0xf0,0x70,0x18,0x1b,0x48,0xd3,0x00,0x16, - 0xbb,0xe1,0xc3,0x90,0x01,0x5d,0x61,0xf6,0x72,0x54,0x8c,0x8a,0xa8,0x0c,0xcb,0x1d,0xfa,0xe2,0x10,0xef, - 0x1c,0x9c,0xa7,0xe1,0xbe,0x8e,0x28,0x50,0x95,0xf6,0xa3,0x72,0x83,0xd8,0xca,0x09,0x07,0x49,0x4a,0x06, - 0x0d,0x32,0x41,0x02,0x3a,0x9c,0xcf,0x73,0x78,0xd3,0x3b,0x30,0x8e,0x15,0x03,0xa7,0x18,0x2f,0xe1,0x46, - 0x04,0xe2,0x1f,0xc4,0xa9,0x89,0xbe,0x83,0xd9,0x33,0xa5,0x7c,0x62,0x96,0xb2,0x6a,0x0b,0x22,0xd4,0xb6, - 0x91,0xac,0xaa,0x09,0x38,0x17,0x85,0x0e,0x4c,0x6a,0x83,0xa2,0x6b,0x94,0x70,0x32,0x2c,0x9d,0xd7,0x28, - 0xa0,0x13,0x85,0xf2,0x6b,0xe6,0x50,0x4a,0x4d,0x06,0x36,0xb2,0x4c,0xaa,0xd0,0x85,0x8d,0x2c,0xa4,0x80, - 0x4c,0x6c,0x24,0xa6,0x0b,0x97,0x62,0x6c,0xf6,0x62,0xd3,0x2d,0x11,0xd9,0xc8,0xd7,0x89,0x9b,0x36,0xf8, - 0xc0,0x09,0xf0,0xc7,0x40,0xed,0xd6,0xbd,0x5e,0xaf,0xf9,0x11,0x62,0x20,0xca,0xa6,0xbd,0xf7,0x66,0xf9, - 0xd8,0x0d,0xd3,0x57,0x8d,0x32,0xd7,0xc7,0x7f,0xdb,0x90,0x3b,0x69,0xc1,0x5b,0x07,0xaf,0xa9,0x15,0x22, - 0x0e,0x67,0x09,0x1d,0x22,0x9b,0x20,0xe4,0x5f,0x99,0x54,0x2c,0xac,0xa7,0xc3,0xe0,0x76,0xa9,0x3d,0x1c, - 0x36,0x6b,0xf7,0xfb,0xaa,0x99,0xa0,0xbd,0xe0,0x1f,0x85,0x36,0xd9,0x0e,0x27,0xf2,0x0e,0x3c,0xc7,0x99, - 0x61,0xef,0x6e,0x67,0x99,0xfd,0x46,0x99,0x7b,0x9d,0x65,0x4e,0x4e,0x1a,0x85,0xee,0x77,0x16,0x5a,0x7b, - 0xaa,0x3d,0x53,0x62,0x81,0xee,0x7e,0x7e,0xc8,0xcb,0xb5,0x4d,0xc7,0xb9,0xab,0x35,0x99,0x13,0xe3,0x65, - 0x17,0x41,0xeb,0x8d,0xd7,0x4b,0x44,0x2d,0x10,0x2e,0x33,0xf4,0x35,0x84,0x39,0xc2,0xbf,0x75,0xb9,0xa1, - 0xa9,0xf9,0x42,0x73,0xb0,0xcc,0x5d,0x64,0xec,0x9d,0xdd,0xb7,0x1f,0xcf,0x86,0x13,0xb8,0xa5,0xae,0x70, - 0x8a,0x7a,0x95,0xb5,0xaf,0xff,0xbb,0xc6,0xa7,0xbf,0x39,0x24,0xd9,0x4c,0x47,0x0b,0xd0,0xb1,0x08,0x74, - 0xe8,0x01,0x1b,0x50,0x40,0xf4,0xf2,0xcd,0x0a,0x37,0x2b,0x63,0x0c,0x12,0x41,0x20,0x34,0x0e,0x80,0xbb, - 0xc6,0xb9,0xe9,0x5e,0x82,0xd7,0x08,0x06,0xfa,0x97,0x96,0xa1,0xc7,0x5c,0xd1,0x76,0x31,0x88,0x89,0x0d, - 0xef,0x32,0xf5,0x82,0x4f,0x5c,0x9f,0x8f,0x68,0x1b,0xaf,0x82,0xd4,0xae,0x5e,0xaf,0x8f,0xa8,0x20,0x8f, - 0x86,0xa6,0xca,0xdd,0x8f,0xa9,0xd2,0x78,0x4b,0x34,0x35,0xcd,0xca,0xf7,0x6e,0x9b,0x4b,0xba,0x30,0xf0, - 0xfd,0x11,0x5d,0x34,0x1e,0x24,0x4d,0x17,0x9f,0x7f,0x42,0x4d,0xfd,0x40,0x69,0xaa,0xb6,0xb7,0xff,0x43, - 0xfb,0x53,0x83,0x06,0xbc,0xea,0xb6,0x39,0xd0,0x0f,0xe0,0xd1,0x11,0xe1,0x1c,0x9c,0xac,0x7c,0x59,0x11, - 0x82,0x69,0x57,0x56,0x9f,0x27,0xf7,0x82,0xf0,0x76,0x8e,0xe3,0x40,0x0b,0x6e,0x3e,0x91,0xa2,0xaf,0xe7, - 0xf2,0x49,0x54,0xfd,0x16,0x2e,0xfe,0xf0,0xd8,0x41,0x09,0x88,0xe4,0xc9,0x48,0xa1,0x6f,0x59,0x0f,0xf6, - 0x83,0xa0,0xd7,0xc4,0x45,0xf2,0xc0,0xd1,0x4d,0xd1,0x55,0x74,0xa8,0xc3,0x91,0x40,0x54,0x06,0x2b,0x0d, - 0xbc,0x86,0x0e,0x4d,0x60,0x3a,0xdf,0x3b,0x4f,0xa1,0xe1,0x6a,0x05,0x0f,0xb4,0x6c,0x3a,0x94,0xdd,0xd7, - 0xd7,0x4f,0x39,0x5b,0xc6,0xf1,0x2d,0x8a,0xb1,0xc7,0xec,0xa4,0x84,0x65,0x86,0x16,0x47,0xb0,0x64,0x89, - 0x26,0x14,0xde,0xfb,0x22,0xb9,0xaf,0xf2,0xec,0x97,0xa6,0xd8,0xac,0xe9,0x07,0xab,0x35,0x30,0x26,0x8d, - 0x0a,0x68,0xd2,0xfa,0x47,0x87,0x87,0x9f,0x09,0x6f,0x9c,0x4c,0x0f,0x10,0xb2,0xb8,0x8a,0xe1,0x8e,0x7c, - 0xb8,0x75,0x4f,0x9a,0xe1,0x78,0x6c,0xf9,0xb4,0x7d,0x49,0xba,0x7b,0xe0,0x89,0x73,0xad,0x5e,0x89,0xb8, - 0x24,0x7f,0x71,0xcb,0xb6,0x06,0x4d,0xe4,0xa4,0x73,0xa5,0x7e,0x78,0xdd,0x68,0xcd,0xa8,0x5e,0x52,0xb1, - 0x8b,0xb2,0x8d,0xc8,0x8c,0xb4,0x50,0xe5,0x43,0xb7,0x2e,0x02,0x02,0x74,0xc8,0x62,0xc0,0x99,0x88,0x07, - 0xc5,0x96,0x38,0x46,0xb8,0xcf,0xb6,0x8c,0xc6,0x01,0xba,0xd6,0xbc,0xb0,0x38,0x5a,0x82,0x41,0xd7,0xdd, - 0xe1,0x61,0x10,0x98,0xe3,0xf8,0x3e,0x42,0x9d,0xfd,0xd0,0x39,0xbd,0x08,0xcc,0x75,0x88,0x86,0x54,0xe7, - 0xe8,0xa5,0xb8,0x21,0x7e,0xb7,0x3d,0x5a,0xb3,0x33,0x6b,0x5e,0x25,0x1b,0x67,0x8e,0x08,0xf4,0xa6,0xd7, - 0xe8,0x16,0x8d,0x8d,0xc8,0xf3,0x9a,0xfe,0xae,0xc4,0x4f,0x8f,0xe1,0x2a,0xd1,0xf8,0xad,0x6d,0x16,0xfd, - 0x48,0xa7,0x1e,0x67,0x63,0xf1,0x88,0x3c,0x7c,0x0f,0xf5,0x5e,0x1c,0x34,0xdb,0x90,0xd0,0x30,0xa9,0xf1, - 0x5d,0x7b,0x6b,0x37,0x5a,0xb6,0xd5,0xee,0x0a,0x63,0xbe,0x45,0xd0,0xb6,0x4d,0x1c,0x8a,0x46,0xf6,0x4d, - 0x8b,0x0f,0x3f,0x4a,0xee,0x89,0xcf,0x6b,0x04,0xa8,0xfb,0x2f,0x27,0x18,0xf5,0xe6,0x42,0x4c,0xa5,0xa5, - 0xcb,0x56,0xb4,0x7c,0x3b,0xdc,0x4a,0x01,0x01,0xc4,0xb6,0x44,0xba,0xa6,0x7b,0x19,0x35,0xe3,0xe9,0xa1, - 0x0c,0x0f,0x0e,0x20,0x70,0xd5,0xaf,0x0d,0x34,0xd7,0x92,0x5f,0x1c,0x90,0xc6,0x33,0x9f,0x25,0x39,0x02, - 0x5c,0x1e,0xbc,0x29,0x99,0x93,0xd1,0xe1,0xf8,0x6e,0xcc,0x83,0x65,0xdd,0xa5,0x7a,0x9b,0x80,0xf8,0x17, - 0xe2,0x79,0x50,0x0b,0x71,0x37,0x5b,0x33,0xbc,0x9d,0x77,0xc4,0x41,0xa5,0x6b,0xac,0x84,0x2b,0xab,0x46, - 0x82,0x75,0x87,0x6f,0x84,0x25,0xcd,0x6c,0x18,0xed,0xd1,0x40,0x2f,0x93,0xaa,0xb8,0xb6,0x03,0x1a,0xda, - 0xc1,0xcc,0xe3,0x8a,0xc3,0xd9,0x57,0xaa,0x4e,0x22,0xe4,0x91,0xe1,0xdf,0x8f,0xe3,0x9e,0xbb,0xf6,0x68, - 0x7b,0x75,0x1d,0x96,0xe4,0x03,0x52,0xa4,0x5b,0x2f,0x8f,0x61,0x7d,0x1a,0xad,0x3c,0xa8,0xc5,0xf1,0x1b, - 0x62,0xac,0x2d,0x14,0x6a,0x17,0x6b,0x66,0x37,0x44,0x43,0xf6,0x98,0xb7,0x6b,0x34,0x25,0x3f,0x36,0x8e, - 0x78,0x11,0xdd,0x56,0x14,0xf1,0x26,0xab,0xf7,0x88,0x80,0x0a,0x47,0x04,0xd4,0x90,0xff,0x14,0xae,0x94, - 0xc6,0x0a,0x7f,0x8a,0x7a,0x72,0x98,0x52,0xd1,0x12,0xe5,0x14,0x0d,0x61,0x34,0x65,0x5b,0xf1,0x90,0xaa, - 0xc5,0x24,0x21,0xc7,0x81,0x86,0x04,0x05,0xb1,0x1a,0x83,0x35,0x82,0x09,0x88,0x70,0x67,0x74,0x57,0xff, - 0xb6,0x12,0x9d,0xd1,0x7d,0x53,0x42,0x8b,0x71,0x46,0x5f,0xea,0x04,0x91,0xdd,0x8c,0x8e,0xbe,0xd0,0xbf, - 0x8d,0xc0,0x66,0x74,0xcf,0x34,0x22,0x52,0x9a,0xd1,0x17,0x68,0x82,0x8e,0xe8,0x16,0xce,0x68,0x8a,0x04, - 0x55,0xf5,0xdf,0xc3,0x50,0xd2,0x8d,0x46,0x67,0xd1,0x11,0x5c,0x6e,0x05,0x53,0xb9,0x65,0x8f,0xb7,0xb6, - 0xaa,0x29,0x9f,0xab,0x05,0x72,0x84,0x34,0x6a,0x29,0xdc,0xe7,0xf7,0x5b,0xd2,0x36,0x2b,0x53,0xdb,0xa9, - 0x65,0x68,0x3b,0xae,0xcc,0x6c,0xc7,0x91,0x91,0xed,0x58,0x99,0xd8,0x8e,0x23,0x02,0xdb,0xb1,0x12,0x2f, - 0x71,0xbb,0x29,0x01,0x53,0x3a,0xa7,0x94,0xbc,0x7f,0x4e,0xda,0xef,0x6a,0x02,0xbf,0xab,0xe0,0x79,0x9e, - 0xa4,0x94,0x12,0x5f,0xf3,0x40,0x9b,0x36,0xf1,0x82,0x45,0x3c,0x6f,0x88,0x88,0x38,0xe2,0x18,0x2e,0xeb, - 0x47,0x5e,0xdf,0x33,0x66,0x65,0xce,0xbd,0x93,0x1c,0x7c,0x71,0x88,0x78,0x9b,0x36,0x32,0x68,0x12,0xfc, - 0xaf,0x2f,0x0e,0x6d,0x00,0xd1,0x7e,0x54,0xf4,0xbd,0xd0,0x53,0xe9,0x83,0x23,0xd3,0xcc,0xa1,0x17,0xa8, - 0x0c,0xe1,0x12,0x36,0x8a,0xdd,0x92,0x12,0xbe,0x34,0xaf,0x58,0x37,0x74,0xcb,0x10,0x17,0xb3,0xbd,0x4d, - 0x2e,0x5d,0x02,0x72,0x00,0x8a,0x16,0x1c,0xac,0xa5,0xf9,0xe8,0xf5,0xe9,0xf5,0xcb,0x4f,0xeb,0x57,0xbb, - 0x70,0x75,0xfa,0xb7,0xaf,0xae,0xee,0x36,0x74,0xbd,0x82,0x45,0xde,0xdf,0xbc,0x7e,0x02,0xfb,0xbe,0xcd, - 0xff,0x07,0x51,0x5f,0x9e,0xc1,0xeb,0xf6,0x01,0x00}; + 0x9b,0x53,0x16,0xf3,0x48,0x26,0x3a,0xaf,0xbd,0x8e,0xcf,0x2a,0xa5,0xbd,0xe1,0x3f,0xc0,0x99,0x3f,0x4e, + 0xcd,0xeb,0xd3,0xf9,0x22,0xae,0x84,0x61,0x23,0x9a,0x2d,0x9b,0xe1,0x3d,0x97,0xf7,0x0d,0xae,0xa1,0x10, + 0xef,0xed,0xb6,0x59,0x8f,0x32,0xb7,0xbd,0x68,0x43,0x9e,0x64,0xa2,0x1f,0x54,0xdd,0xb5,0xdd,0xa1,0xac, + 0x4e,0x0a,0x61,0x43,0x22,0x58,0xb6,0x2f,0x18,0xe5,0x38,0x01,0xb8,0xb8,0x39,0x1a,0xde,0x61,0xed,0x63, + 0x08,0xfa,0x34,0xa3,0xee,0x68,0xe9,0x9c,0x77,0xc5,0x91,0xf6,0x29,0x87,0xb7,0xfd,0xc3,0xb9,0xdd,0xfc, + 0x08,0xca,0xf9,0x1c,0x50,0x98,0x71,0x74,0x84,0xb0,0xc4,0x35,0xf1,0x36,0x9e,0xe9,0x46,0x99,0x8c,0xb8, + 0xcd,0x6a,0x19,0x47,0xbb,0xad,0x20,0x06,0xbb,0x7d,0x84,0xa9,0x34,0xb4,0xbb,0x1b,0xe6,0x58,0x29,0x13, + 0x95,0x60,0x78,0x2a,0x13,0xf0,0x58,0x0b,0x6b,0xd7,0x6b,0x13,0xfa,0xd4,0x59,0xf3,0x71,0x79,0xef,0x9d, + 0xaf,0x2d,0xd0,0xa6,0x90,0xae,0x1e,0x6f,0x91,0x92,0x8a,0xe8,0x5c,0x09,0x7d,0xc5,0x8f,0xa7,0xfa,0xde, + 0xea,0xd0,0x3c,0x1a,0x61,0x2a,0xdf,0x91,0x74,0x5b,0x57,0x92,0x1c,0x99,0x72,0xcb,0x85,0xb9,0x1c,0xa8, + 0x7d,0x43,0xd8,0x12,0x97,0x56,0xdc,0xb1,0x57,0xd9,0x23,0x24,0x3f,0x25,0x35,0x30,0x6d,0xb1,0x95,0x8a, + 0x95,0xe5,0x4d,0x5e,0x0d,0x5b,0x22,0x2a,0x63,0x11,0x2c,0xac,0x3b,0x02,0xce,0xa0,0x9c,0xaa,0x93,0xd6, + 0x90,0x28,0x0d,0x0a,0x16,0x84,0x9e,0x56,0xe2,0x97,0x5c,0xfb,0x6e,0xc9,0x26,0x7e,0xcf,0xf1,0x84,0x38, + 0x7e,0x5c,0x5a,0xfe,0x2c,0x9c,0xab,0x6e,0xdb,0x72,0x49,0xde,0x76,0xfb,0x07,0x5b,0x25,0x9f,0xb0,0xf0, + 0x7c,0xe3,0x0c,0x9a,0x57,0xc9,0xf6,0x04,0xbb,0x98,0x10,0x9f,0xc9,0xc3,0x39,0x2c,0x57,0x3f,0xae,0xa2, + 0x4d,0xc9,0x13,0x7f,0xa7,0xe6,0xeb,0xeb,0x0b,0x58,0x28,0x7a,0x61,0xb2,0x29,0x83,0xa6,0x61,0xa2,0xd5, + 0xe4,0x88,0x93,0xe4,0x5f,0x5a,0x6c,0x37,0x69,0xcf,0xc6,0x55,0x5e,0x08,0x0b,0x7a,0xb6,0xab,0x00,0x88, + 0x73,0xd1,0x31,0x36,0x4a,0xc2,0x72,0x6d,0x1f,0xda,0x72,0x0f,0x91,0xbe,0xbc,0xae,0xea,0x6b,0x61,0x54, + 0xb5,0x62,0xa1,0x85,0xfe,0x2b,0x9b,0x5b,0x73,0x44,0x50,0xa3,0xf0,0x67,0x03,0xb7,0xf6,0xee,0x62,0x57, + 0x73,0xf7,0xcd,0x38,0x84,0xfb,0x6a,0x84,0xfb,0x95,0x2d,0x2e,0x25,0x46,0xcf,0xf8,0x64,0x46,0x71,0x8a, + 0x0a,0x77,0x0f,0x40,0xd1,0x69,0x9b,0x80,0x5e,0x5a,0x63,0xbb,0xa3,0x4d,0x0b,0xcf,0xb1,0x23,0x68,0xbb, + 0x27,0x56,0x52,0x29,0x46,0xae,0x82,0x44,0x43,0x96,0x4a,0x0d,0x4f,0xc5,0xe6,0xe1,0x79,0xe1,0xb8,0xad, + 0x12,0xb1,0x57,0x99,0xca,0xb3,0x7d,0x8d,0x10,0xa8,0xd2,0xeb,0xf9,0xc1,0xc8,0x93,0x66,0x8e,0x2a,0x62, + 0x59,0xee,0x74,0xaf,0x35,0x87,0x4c,0x13,0x17,0x66,0xda,0x8c,0xe3,0xea,0x84,0xb8,0x7b,0xf4,0xa0,0x65, + 0xdb,0xc0,0x64,0x0b,0xc6,0x1d,0x37,0xde,0x4d,0xc6,0x94,0xaa,0x5e,0x54,0x2d,0x21,0xe5,0x73,0xda,0xaf, + 0xcf,0xaa,0xe4,0x50,0xbd,0xaa,0x92,0xfb,0xea,0x25,0x1a,0x7e,0xea,0xeb,0xed,0xf8,0xe2,0xea,0x6d,0x5a, + 0x5c,0x30,0x90,0x1c,0x62,0xa7,0x2b,0x62,0x30,0x5f,0x56,0x46,0x0f,0x47,0xd3,0xf6,0x61,0xc5,0x43,0x96, + 0xa8,0x6c,0xde,0x19,0x30,0xee,0x43,0x76,0x0e,0xe6,0x3b,0xf2,0x2b,0x06,0x25,0x23,0xa4,0xb1,0xc6,0x9d, + 0x1c,0xea,0xc3,0xc7,0x4c,0xa3,0xc2,0xa0,0x1e,0x13,0xfc,0x41,0x15,0x5d,0xd4,0x65,0x13,0xe8,0x44,0x71, + 0x9f,0xd3,0x0b,0x72,0xe4,0xa0,0x41,0xb2,0x3c,0x69,0x61,0x5a,0xcf,0x0d,0x8a,0xde,0xf6,0x48,0xf2,0xd6, + 0x56,0xd9,0xda,0xad,0xb9,0xb7,0x7b,0x8a,0x6d,0x34,0x68,0x77,0x13,0x32,0x6d,0x3b,0x47,0xe9,0xb9,0x5c, + 0x87,0xab,0x1a,0x7d,0x88,0x31,0xb8,0xeb,0x83,0xcd,0xa4,0xa9,0x2d,0x37,0xc0,0x64,0xcb,0x2f,0x27,0x12, + 0xaa,0x95,0xd0,0x94,0xd0,0xdb,0x77,0xdc,0xdd,0xe6,0xaf,0xb3,0xd0,0x68,0xe5,0xcc,0xe4,0xd2,0x36,0xe3, + 0x70,0xd9,0x22,0xb8,0x90,0x55,0x94,0xb6,0xde,0x54,0xe5,0x27,0x11,0x0f,0xe8,0xe4,0x3a,0x9b,0xcf,0xe4, + 0xbd,0x6f,0x1b,0xd9,0x5b,0x33,0x0b,0xbb,0x18,0x4c,0xc3,0x23,0xdc,0xa4,0x0d,0xb7,0xa3,0x43,0x72,0x16, + 0x0e,0xd7,0x99,0x9c,0xbd,0x3d,0x4a,0x34,0x31,0x15,0x11,0x11,0xd8,0xbc,0x14,0xde,0x4e,0x30,0x4a,0xdb, + 0xcc,0xe4,0xf2,0x3d,0x47,0x77,0xaa,0xb2,0xa4,0xa7,0x71,0x21,0x4f,0x71,0x86,0x34,0xab,0xae,0x3c,0x3e, + 0xe1,0x22,0xd9,0x0c,0xb7,0xf6,0x78,0x02,0x1b,0x11,0x0f,0x65,0xde,0x26,0x34,0x09,0xdd,0x0d,0x7c,0xc8, + 0xa5,0x1c,0xaa,0xd2,0xef,0x16,0x41,0xd8,0x94,0x36,0xf9,0x08,0xd2,0x4e,0xcb,0x83,0xfc,0xf9,0xa2,0x92, + 0xfa,0x12,0xa1,0x3e,0x7b,0x1e,0xca,0x25,0xb6,0x10,0xb6,0x35,0x6c,0x35,0x91,0xe8,0x88,0x63,0xcd,0x67, + 0x8f,0x0e,0xe8,0x43,0xe5,0xf2,0xab,0x5b,0x1a,0x94,0xb3,0xdb,0x8c,0x4f,0xe0,0xe5,0xa8,0xca,0xb2,0xda, + 0x69,0x87,0x3b,0x4b,0x68,0x0f,0xfc,0xf6,0x86,0xa3,0x1d,0x58,0x60,0xa5,0x4c,0x94,0x4b,0xff,0x20,0x6a, + 0xba,0xa0,0x2e,0x77,0x26,0xfa,0xa4,0x46,0xc2,0x47,0xfc,0xe9,0xa4,0x65,0xec,0xad,0xfc,0x9b,0xa2,0xef, + 0x78,0x77,0xa9,0x22,0xde,0xc3,0x86,0xd7,0xd2,0xb7,0x44,0xfc,0xab,0xdf,0x1e,0x68,0x7d,0x48,0x2e,0x3d, + 0xe6,0xb0,0xf4,0x50,0xc0,0x04,0x42,0x83,0x04,0x10,0xe8,0xe5,0x1e,0xe9,0x21,0x41,0xad,0xa4,0x84,0xdd, + 0xbf,0x81,0x6a,0xb6,0xa6,0xdb,0x95,0x36,0xb3,0x5d,0xcb,0xb6,0x52,0x6d,0xa3,0xb6,0x48,0x85,0x79,0xb2, + 0xcc,0xc2,0x50,0x0b,0x0b,0xdd,0x02,0x8a,0x94,0x5f,0x49,0x5c,0x8e,0x1e,0x52,0x46,0xb5,0xae,0xad,0xed, + 0x09,0xff,0x4d,0xab,0xfa,0x2e,0x84,0xc6,0x32,0x27,0xf6,0x02,0x86,0x7c,0x3d,0xf4,0xc8,0x16,0x10,0x18, + 0x0e,0x06,0x6e,0xf3,0xdd,0x15,0x1f,0x35,0xc6,0xb9,0xe5,0xf3,0x68,0xda,0x21,0x3e,0x46,0x1a,0x95,0x25, + 0xb5,0x74,0x0c,0xfc,0x1e,0x6a,0x0b,0x1b,0xb0,0x44,0x60,0x20,0xb3,0xa1,0xb7,0xfa,0x5a,0x6a,0x4f,0x35, + 0xdb,0x74,0x89,0xcb,0x9d,0x78,0xaf,0x97,0x26,0xa4,0xed,0x33,0x98,0x4b,0xd3,0xd2,0x12,0x6f,0x83,0x91, + 0xc3,0x29,0x43,0xb1,0xbe,0x86,0xb0,0xd7,0x9c,0xc3,0xda,0x48,0x3f,0x02,0xd0,0xda,0x9d,0xa8,0x00,0x51, + 0x0a,0xe7,0xf9,0x9e,0x29,0x62,0x3f,0x27,0x4d,0x52,0xc2,0x18,0x5b,0xf4,0x30,0xdd,0x39,0xe8,0x8e,0xbe, + 0x7d,0x79,0x7d,0xc3,0x97,0xd7,0x27,0x22,0xaa,0x80,0x24,0x71,0x7c,0x1e,0x2f,0x43,0xd1,0xf2,0xc9,0xf5, + 0xc8,0xa6,0x5e,0x34,0x01,0x28,0x1c,0x7f,0x0e,0x7b,0x0a,0x9c,0x96,0x21,0xd2,0x4e,0x59,0x57,0xd7,0x2b, + 0x3c,0x6d,0xf7,0xd0,0x33,0x0a,0xce,0x34,0xc3,0xde,0x12,0x05,0xe8,0x3c,0x96,0x08,0x28,0x36,0xdd,0x0c, + 0x71,0x57,0xd5,0x0d,0x8b,0x3a,0xf9,0x9c,0xe0,0x0b,0x91,0x21,0x49,0xe3,0x9b,0xcd,0xfc,0xbb,0x0d,0x7c, + 0x50,0xe4,0x18,0xdf,0x5b,0x04,0x71,0x9a,0xf8,0x8c,0x83,0x1e,0xac,0x32,0x32,0x99,0x68,0x94,0x5a,0x71, + 0x18,0x22,0x59,0xa7,0x27,0x23,0xda,0x78,0x33,0x22,0x5b,0x11,0x5e,0xf3,0x8b,0x7f,0x8a,0xed,0x79,0x58, + 0x0f,0x82,0x20,0xf2,0xaf,0x34,0x3a,0x00,0xc1,0xf4,0xf5,0x57,0x09,0x5f,0x22,0xa9,0x57,0x18,0x3d,0xc7, + 0x15,0x9d,0x9b,0x87,0x42,0xe0,0x20,0xb4,0x49,0xfc,0x30,0x34,0x33,0x45,0x20,0x08,0xb0,0x6f,0xac,0xee, + 0xec,0x36,0x68,0x3e,0x35,0x05,0x7e,0x32,0x5b,0xa2,0x0f,0x15,0x57,0xc9,0x1f,0x88,0x50,0xde,0x0a,0xb7, + 0xd1,0x18,0xc6,0xab,0xc1,0x95,0x2d,0xbd,0x8b,0x53,0x8e,0xcb,0xb8,0x84,0xc0,0x63,0x04,0x71,0x52,0x81, + 0x1b,0x3d,0xc0,0x68,0xbe,0x83,0x27,0x27,0xed,0x9a,0x73,0x75,0x4e,0xbc,0x3b,0xdc,0x32,0x34,0xf4,0xae, + 0x30,0x36,0x04,0xfa,0x16,0xb7,0x3b,0xdb,0xf9,0x88,0x3d,0xbe,0xa8,0x7f,0x30,0x76,0xe1,0x87,0x5d,0xd1, + 0x7c,0xde,0xe2,0x37,0xe1,0x75,0xaf,0x62,0x40,0xdc,0x8e,0xdb,0x51,0xf9,0x77,0xae,0xe1,0xbe,0x47,0xb3, + 0x48,0x7c,0xdf,0xe3,0x54,0xdf,0x2e,0x8f,0xe0,0x21,0xc2,0xe1,0x9a,0x14,0xd3,0x35,0xb1,0x17,0x34,0x58, + 0x0f,0xcb,0xd6,0x74,0x51,0x9b,0x56,0x2a,0x46,0x42,0x0a,0xeb,0xb7,0x69,0xdf,0x3c,0xe1,0xbc,0x16,0x58, + 0x8d,0xe2,0xc2,0xc3,0xa1,0xc6,0x12,0x58,0x13,0x23,0xb6,0x66,0xf8,0x28,0x49,0x8a,0x70,0xe5,0xdd,0x5c, + 0x3a,0x2a,0xb6,0x37,0x16,0x2e,0xed,0xf9,0x9c,0x31,0x0c,0x03,0xce,0x66,0x64,0x03,0x39,0x15,0x9f,0x2d, + 0xcc,0xf0,0xde,0x6f,0x2e,0x73,0x1d,0x7a,0x94,0x33,0x9d,0x20,0x02,0xaa,0xb4,0x61,0xfe,0x4a,0x61,0x8d, + 0xb9,0x8a,0xa8,0x65,0x36,0x87,0xab,0xc1,0x92,0x3b,0xed,0x24,0xb9,0x2f,0x29,0x79,0xdd,0x4e,0xed,0xd3, + 0xa0,0xcb,0xd5,0x42,0x2e,0x54,0x0b,0x16,0x53,0xc8,0x42,0xb9,0xa5,0x19,0xb7,0x2e,0xc8,0x35,0xe8,0xa2, + 0x91,0x3a,0x30,0x91,0x4d,0x05,0x56,0xfd,0xa2,0xd6,0x7f,0x2f,0x77,0x9a,0xdc,0xc6,0x09,0x06,0x95,0x71, + 0x8c,0xf0,0xed,0x67,0x2a,0x2b,0x7a,0xe3,0x48,0xc5,0xe1,0x53,0xca,0x7e,0x52,0x25,0xf7,0xfe,0x83,0xbb, + 0xcb,0xe3,0x7b,0x2a,0xfc,0xad,0x4a,0x28,0xcd,0x1f,0x45,0x59,0x74,0x74,0xcf,0x5b,0xf0,0x9b,0x39,0xf8, + 0xbd,0x2d,0x00,0x9e,0x00,0x45,0xc1,0x41,0xd9,0x95,0xbe,0xfc,0x43,0x40,0x45,0x53,0x5d,0x74,0x60,0x1a, + 0x8d,0x81,0x4b,0xf1,0x82,0x39,0x35,0xe8,0xa7,0x51,0x37,0x01,0x8a,0xb9,0x64,0x9b,0x26,0xb3,0x9a,0x49, + 0x86,0x8b,0x8d,0xfa,0xad,0x6a,0x8f,0x63,0x92,0x75,0x46,0xe2,0x1c,0xf5,0x79,0x6a,0xee,0x94,0xb3,0x19, + 0x3b,0x70,0x2b,0x63,0x27,0x54,0x79,0x97,0x91,0x6d,0xf4,0x16,0xa6,0xaa,0xdd,0xd4,0xcf,0x88,0xaa,0x56, + 0x95,0x0c,0x0d,0x1f,0x56,0x5b,0xad,0xce,0x66,0xdb,0xd3,0xb7,0xdb,0xb5,0x5b,0x8a,0x5a,0xf0,0xfc,0x19, + 0x3a,0x94,0x5b,0xef,0x5b,0x80,0x9b,0xbf,0xb6,0x02,0x18,0xa0,0x5e,0x02,0x7f,0xaa,0x04,0xf5,0x74,0x66, + 0xbf,0x7d,0x2b,0x84,0x69,0xd9,0x59,0x75,0x74,0x17,0x4b,0x22,0xf3,0xeb,0x62,0x8d,0x05,0x89,0xd2,0xbf, + 0x36,0x92,0x0f,0x1d,0xca,0x0e,0xcb,0x24,0x87,0x91,0x06,0x4c,0x17,0x70,0x3f,0xd0,0xac,0xe8,0x5c,0x1e, + 0x99,0x6e,0x5d,0x1e,0xd9,0xb7,0xa6,0xd9,0xa2,0x8f,0x13,0x16,0x66,0x08,0xfc,0x4e,0x7b,0x30,0x05,0x9c, + 0xc8,0x0c,0xdf,0xfe,0xcd,0xe1,0x18,0x5e,0x39,0x71,0xe1,0x71,0xf8,0x17,0xa1,0x5d,0x18,0x6a,0x9e,0x0e, + 0xd5,0x03,0x0e,0x96,0x62,0x90,0xf1,0x83,0x92,0x11,0x32,0xdf,0x83,0x45,0xd8,0xd8,0xd8,0x92,0x01,0x11, + 0x5b,0x27,0x9f,0xb7,0x61,0x41,0xbb,0xf3,0x2e,0xb7,0xbb,0x73,0x21,0x2e,0x04,0x2c,0xdd,0x87,0x77,0xb4, + 0xc8,0xf1,0x3d,0x25,0x5b,0xf8,0xa6,0xbb,0xdd,0x4e,0xbb,0x5a,0x1b,0xa1,0x24,0x34,0x17,0xaf,0x79,0x1d, + 0xd8,0x07,0xb4,0x48,0x5b,0xed,0x7e,0x61,0xc2,0x14,0xca,0x62,0x67,0x73,0xa5,0xd5,0xd1,0xc2,0x68,0xd0, + 0x78,0xce,0x70,0x6b,0xa2,0xcf,0x3b,0x0a,0x33,0x41,0xfc,0xc3,0xd8,0x7c,0x63,0x2c,0xe2,0x58,0x14,0x7a, + 0x7a,0x0a,0x72,0x36,0xd2,0x6a,0xe0,0x9e,0x5c,0xdb,0x12,0xc7,0xe2,0x38,0xec,0x9c,0x0d,0x1e,0x53,0xdf, + 0xc9,0x10,0xb6,0xbe,0x7b,0x96,0xf8,0x12,0x81,0xbe,0xf2,0x3a,0x40,0x35,0x0d,0x21,0xe7,0xdb,0x05,0x89, + 0x51,0x3f,0xbd,0x5c,0x65,0xa7,0xa7,0x89,0xdb,0x1d,0xe8,0x8d,0xc1,0x0f,0xf4,0x68,0x4b,0x78,0x8c,0xf4, + 0x1d,0x2d,0x28,0x95,0x17,0x69,0xd3,0xbc,0xc9,0x84,0x68,0xad,0x90,0xce,0x73,0x92,0xd5,0x56,0xaa,0x9d, + 0x8e,0x3b,0x7c,0xca,0xbd,0x69,0x41,0xa6,0x27,0xee,0xdb,0x52,0xc0,0x18,0x92,0x5f,0xb7,0x69,0x5e,0x3d, + 0x33,0xe1,0x76,0x5d,0x5a,0x58,0xd4,0x51,0x96,0xec,0x1a,0xa0,0x68,0xb3,0xb7,0xb0,0x87,0x69,0xc1,0x86, + 0xf1,0xc0,0x89,0x54,0xff,0x07,0xee,0x66,0x47,0x7f,0x74,0xa3,0x5d,0x56,0x35,0xf4,0x28,0x5f,0xda,0x2b, + 0x63,0xe4,0x04,0x50,0xca,0x78,0xec,0x7d,0x4b,0x6e,0x71,0xcb,0x70,0xdd,0x49,0x34,0x72,0x86,0x74,0xad, + 0x22,0x56,0x0c,0xdc,0x58,0xdd,0x8d,0xcd,0x82,0x5d,0xb5,0x57,0x83,0x23,0x1b,0xb4,0x35,0xa7,0x69,0xcd, + 0x4b,0x32,0xb6,0x8f,0xfb,0xfb,0x76,0x2a,0xfc,0x59,0x50,0x7d,0xb0,0xad,0xb7,0x8e,0x76,0x2f,0x32,0x33, + 0xeb,0x7c,0x99,0x2c,0x08,0x13,0x66,0xfd,0x3c,0x00,0xfa,0x20,0xda,0x86,0xa7,0x96,0xb0,0x5e,0xac,0xed, + 0x37,0xea,0x13,0x71,0xa8,0x4f,0x3b,0xd8,0x21,0x52,0x4f,0x5b,0x80,0x51,0x10,0xaf,0x7f,0x94,0x4f,0xda, + 0x96,0x8f,0x1a,0xbb,0xbc,0xd7,0x7a,0x46,0x82,0xa6,0xd6,0x47,0x5a,0x18,0xb0,0x65,0xe6,0xa0,0x3c,0xb4, + 0x69,0x05,0x0e,0x55,0x62,0x44,0x5d,0xca,0x0b,0x98,0x2c,0x32,0x3e,0x8e,0x02,0xe7,0x70,0x52,0xd4,0x36, + 0xd7,0xd3,0x02,0x08,0x63,0xb5,0x67,0xde,0x61,0xb5,0x87,0xe0,0xfc,0xc6,0x37,0x6d,0xbd,0x4e,0x8f,0x0f, + 0x10,0xfd,0x8d,0xfe,0x42,0x99,0x23,0x04,0xaa,0x2d,0x9b,0x3c,0xa6,0x83,0x80,0x45,0xc5,0x4d,0x5b,0x60, + 0x91,0x9b,0x1b,0xda,0xda,0x1a,0x14,0xe8,0x25,0xcc,0x1e,0xce,0xd9,0xee,0x22,0x4b,0xb4,0xb5,0x45,0xd3, + 0x92,0x9f,0xa1,0x58,0x4b,0x7c,0xb1,0x85,0xc2,0x03,0x29,0x0d,0xcf,0xf8,0xc4,0x60,0x00,0x6b,0x8c,0x42, + 0x43,0x14,0x99,0x34,0x11,0xcc,0xbf,0x14,0x90,0x44,0x27,0x59,0x15,0x46,0x2e,0x7a,0x20,0xb4,0x2a,0x42, + 0xbf,0xbe,0xad,0xd4,0x4f,0x95,0x7a,0x54,0xa9,0x0f,0x55,0x72,0xac,0x3d,0x25,0xdf,0x66,0xe7,0x4f,0x3f, + 0x2d,0xc5,0xda,0xf6,0x44,0xbd,0xaf,0x92,0x9b,0x1f,0x8c,0x08,0x3b,0xd6,0x91,0x4d,0xfc,0x48,0xd1,0x66, + 0x8f,0xb1,0xbe,0x4e,0x82,0x5b,0xe4,0xc5,0x64,0xbe,0x9a,0x66,0xf1,0x07,0x42,0xcf,0x9f,0xec,0xe3,0x22, + 0xfd,0x14,0x9b,0x36,0xe4,0x6e,0x9b,0x93,0x8d,0xd2,0x84,0x7b,0xdc,0xc5,0x42,0x93,0x94,0xf6,0xd1,0xad, + 0x44,0x06,0x73,0x96,0xf0,0xdd,0x50,0x16,0xd6,0x5b,0x8e,0x2d,0x46,0xcf,0xca,0x8b,0x6d,0xab,0x8b,0x9e, + 0x1b,0x49,0x26,0xde,0x54,0xe6,0xaa,0x22,0x30,0xe4,0x9d,0xeb,0xba,0xee,0xc3,0xec,0x13,0xbd,0xb1,0x9c, + 0x0c,0xc9,0xc2,0xf1,0x6f,0x5a,0x82,0x06,0x91,0xd3,0xa7,0xbf,0xf3,0xe5,0xae,0xfb,0x72,0xa3,0xb6,0xe3, + 0x0c,0xf8,0x28,0x8f,0xc1,0x6d,0xa8,0x03,0x7c,0xd1,0x46,0xf8,0x45,0x0c,0x85,0xd9,0x9f,0x61,0x4b,0xe2, + 0xec,0x87,0xd9,0x7c,0x83,0x4b,0x08,0x94,0xa6,0x9c,0xf4,0xc0,0x60,0x66,0x2e,0xea,0x7b,0x7e,0xe5,0x7b, + 0x28,0x09,0xaa,0x77,0x89,0xed,0x44,0x97,0x72,0xc8,0x97,0x88,0xe4,0xd9,0xdb,0x23,0x84,0xf8,0x1b,0x6e, + 0xc9,0x76,0x51,0xf3,0x1b,0x13,0x1b,0xc8,0x4d,0xa1,0x36,0x03,0xc1,0x14,0xaa,0x89,0x11,0x67,0xf0,0x5d, + 0xc5,0x85,0x44,0x4e,0x9f,0xe4,0xd3,0x41,0x28,0x91,0x2b,0x82,0x38,0x46,0x80,0x36,0x8e,0xc5,0x12,0x40, + 0xcd,0x80,0xc8,0x4a,0xe9,0xf1,0xe4,0x64,0xdc,0xab,0x6d,0x42,0x4e,0x8f,0xc2,0x69,0x25,0x37,0x53,0x69, + 0xdb,0x9c,0x09,0x62,0x24,0xa3,0x24,0xd1,0xb9,0x36,0x49,0x96,0x95,0xa0,0x8d,0x08,0x11,0x43,0x4e,0xd9, + 0x30,0x80,0x26,0x8f,0xb6,0xf2,0x73,0xd0,0x71,0xb8,0xb3,0x54,0xb5,0xe8,0x8d,0xc8,0x88,0x5c,0x9c,0xe6, + 0x06,0x52,0x1f,0x33,0x09,0x74,0xee,0xec,0xed,0x65,0xf4,0x15,0x31,0x28,0xa3,0xb7,0x40,0x81,0x2a,0x7c, + 0x04,0x13,0xc1,0xe8,0x16,0x2e,0xf0,0x4e,0x71,0x1b,0xf3,0x47,0x9b,0x2f,0x10,0x75,0x7d,0x40,0x5b,0x30, + 0x52,0x6f,0xe9,0x90,0x6d,0xf2,0x79,0x72,0x03,0x07,0xcf,0xf8,0xfb,0x82,0x40,0xaa,0x21,0xc8,0x88,0x2f, + 0xd5,0x02,0x26,0xd9,0x7a,0x89,0xe3,0xe7,0x4a,0xea,0x79,0x2b,0xea,0x9b,0x2c,0x7e,0xb7,0xc1,0xa7,0xc2, + 0xf8,0xbd,0x85,0xd9,0xa0,0x66,0xf7,0xe8,0xd9,0xe2,0xe0,0xf7,0x78,0xeb,0x57,0x9b,0xc8,0xb6,0xba,0xc5, + 0xf0,0xda,0x7d,0x65,0x0c,0xb0,0xfb,0xdc,0xaf,0x22,0xaf,0xf6,0xe1,0xe9,0x59,0x5a,0x67,0x09,0x0d,0xee, + 0x32,0xf4,0x52,0xed,0x52,0xd6,0x84,0x52,0x64,0xac,0x75,0x76,0x0b,0x75,0x0c,0xf1,0x3a,0xad,0x37,0xae, + 0xf3,0x78,0x33,0x5f,0x9d,0xe7,0x1c,0x57,0xb5,0x3f,0x83,0x6f,0xb4,0x63,0x64,0x6f,0x3c,0x22,0x33,0xdc, + 0x0d,0xd1,0xe2,0x0b,0x84,0xec,0x6c,0x93,0xcf,0x8e,0x49,0xd2,0xde,0x13,0x5a,0x3e,0xd1,0x23,0x73,0x40, + 0xec,0x11,0x6e,0x74,0x6c,0x9f,0x34,0x71,0xcd,0x61,0xb5,0xfa,0xbe,0x80,0x1e,0xcb,0xbb,0x10,0x8c,0x79, + 0x36,0xdf,0x98,0x8c,0x17,0x6c,0x91,0x7f,0xca,0x7b,0xbd,0xa5,0x79,0xa4,0x4e,0xff,0xe2,0xbf,0x2a,0x5b, + 0x41,0x5b,0x4e,0x4b,0xfb,0x2c,0x39,0xd0,0x02,0xda,0xc3,0x51,0x36,0x14,0xc8,0x69,0x55,0x9e,0x25,0xac, + 0xb3,0xf1,0x88,0x70,0x3e,0x40,0xe9,0x4b,0xb9,0xd7,0x16,0xfb,0x55,0xae,0x0d,0xc4,0x13,0x8b,0xf4,0x80, + 0x1c,0xa0,0x2f,0x34,0x16,0xe8,0xc6,0x59,0x05,0xf1,0x3f,0xe4,0xb6,0x43,0x1b,0x43,0x45,0xc2,0x65,0xb7, + 0x23,0x60,0x9b,0x15,0xcb,0x1b,0x76,0x89,0xd0,0x11,0x03,0x52,0x77,0xdc,0x77,0x61,0xc9,0xa3,0x25,0x22, + 0x5f,0xdd,0x94,0xa4,0x08,0x3c,0x4d,0x43,0xc4,0x8d,0xeb,0xa9,0x37,0x35,0x85,0x3f,0x2f,0x74,0xda,0xae, + 0x96,0x50,0xd1,0xb8,0x22,0xdb,0xf2,0x69,0x27,0x3c,0xfd,0xac,0x78,0x16,0xb2,0x43,0x5f,0xda,0x72,0x6a, + 0xa5,0x2d,0x1b,0x5c,0x25,0x92,0xb6,0xc0,0xba,0x2b,0x35,0xdc,0x6e,0xc3,0x94,0xea,0x36,0xb3,0x6a,0x37, + 0x53,0xb0,0xa3,0x87,0x69,0x42,0xaf,0x61,0xa1,0x1f,0x28,0x45,0x20,0xa6,0x90,0x5f,0x7a,0xc7,0x0e,0x2a, + 0xf0,0xf7,0x56,0xb7,0x09,0xe6,0x7c,0x39,0x98,0xac,0x92,0x0b,0x52,0xb6,0xb7,0x23,0xfb,0x21,0xd8,0xd9, + 0x33,0xee,0x70,0x6e,0x66,0x4d,0x47,0x4c,0x4e,0xc6,0xf7,0xae,0xa4,0xb4,0x05,0xad,0xff,0x1d,0xee,0xbc, + 0x4d,0x9d,0xc2,0x35,0x67,0x0f,0x27,0x95,0x6e,0x36,0x84,0x00,0x22,0x22,0x30,0x80,0x0c,0x6e,0xe9,0xe1, + 0x4f,0xec,0xf9,0xe1,0x6b,0x67,0x3c,0xc7,0x92,0xd0,0x0b,0x0b,0x20,0xce,0x62,0x65,0x58,0x48,0xf0,0xf8, + 0x82,0xa3,0xef,0x6b,0x28,0xb4,0xe6,0xac,0x2d,0x14,0xa4,0xfb,0x8d,0x8b,0x78,0xfc,0x98,0x02,0x52,0x51, + 0x9f,0x6c,0x91,0xc3,0xad,0xdc,0x20,0x72,0x65,0x5c,0x28,0x1d,0xc8,0xbc,0xd8,0x18,0x7f,0x9f,0x16,0x16, + 0x84,0x49,0x61,0xc1,0x2e,0x2f,0xbd,0x79,0xb0,0x25,0xef,0xc7,0xf9,0x4f,0xdb,0x42,0xbc,0xbc,0x7e,0x27, + 0x5e,0xc6,0xe2,0x12,0xfd,0x47,0xf1,0x57,0x3f,0xac,0xeb,0x4a,0x3b,0x45,0x6e,0x7b,0x53,0xfb,0x68,0xa4, + 0xcd,0x4d,0x0a,0x2d,0xef,0xbe,0x45,0x3f,0xa9,0x62,0x78,0xbc,0xe5,0xb0,0xba,0xbe,0x3f,0xfc,0x6a,0x78, + 0xf8,0x85,0x04,0x68,0xf9,0xae,0x52,0x7f,0x54,0xea,0xf7,0x4a,0xfd,0x50,0xa9,0xef,0x2b,0xf5,0x6d,0xa5, + 0x7e,0xae,0xd4,0xbf,0x2b,0xf5,0x4b,0xc5,0x81,0x34,0xf8,0x3e,0x65,0x7d,0x97,0xaa,0xfa,0x91,0xd3,0xf8, + 0xce,0x18,0x85,0x7a,0x89,0xca,0x4c,0x95,0xcc,0x8a,0x92,0x7b,0x73,0x40,0x1a,0x9e,0xc3,0x60,0x10,0x24, + 0x6b,0x7e,0x8b,0x2f,0x91,0xbb,0x37,0x9c,0xd6,0xe2,0xc7,0x8a,0x65,0x69,0x81,0xc4,0x28,0x86,0xcb,0x45, + 0x83,0x70,0x2d,0xfa,0x16,0x1e,0x5d,0x28,0x90,0x46,0x78,0x51,0x29,0x97,0x68,0x92,0xc9,0x47,0x97,0x29, + 0x97,0xd8,0xe8,0x3c,0x1b,0x09,0x1d,0x39,0x10,0x30,0x97,0x9c,0xb3,0x51,0x4d,0x8e,0xce,0x4f,0xe4,0x12, + 0xf5,0x6c,0x9a,0x37,0x30,0x9d,0x53,0xd3,0x2a,0x3d,0x3f,0xe7,0xa7,0x7a,0x99,0xcd,0xe7,0x5c,0x33,0xf5, + 0xbd,0xe0,0xc2,0x74,0x04,0x94,0x57,0x33,0x42,0xed,0x35,0xa1,0x2e,0xe2,0x27,0xd9,0x19,0x53,0xa5,0xab, + 0xa6,0x9c,0x95,0x93,0x55,0xcd,0x4f,0xcb,0x79,0x7a,0xad,0x74,0x87,0x38,0xe4,0x08,0x9d,0xd6,0xb0,0xce, + 0x23,0x72,0x75,0x5e,0xd3,0x11,0x4e,0x73,0x57,0x65,0xca,0x90,0x75,0xfa,0xd7,0x94,0xd7,0xaf,0xdc,0x67, + 0xf3,0x62,0x86,0x8e,0x77,0x62,0x79,0xa6,0x79,0x8d,0xee,0x4d,0x55,0x56,0xc8,0x2f,0x62,0x17,0x14,0x25, + 0x4d,0x61,0x0e,0xc8,0x55,0x17,0xf9,0x74,0x4a,0x5d,0xc3,0xb1,0xd8,0x64,0xd5,0x22,0x2f,0x90,0x48,0x10, + 0x55,0x35,0x2a,0xaf,0x17,0xe9,0x52,0xe5,0x4d,0xb6,0x90,0x18,0x27,0xf3,0xb2,0x5c,0x2a,0x73,0x7d,0x93, + 0x92,0x46,0x8b,0x12,0x41,0x5a,0x14,0x02,0x4b,0xd4,0xf9,0x1f,0x84,0x9b,0xca,0xfa,0x22,0x05,0xaf,0xe9, + 0x5a,0x28,0x4a,0xc4,0x8d,0xa2,0x75,0xa6,0x66,0x96,0x29,0xa1,0x21,0xda,0xa9,0x9f,0xf2,0x86,0xc8,0xd9, + 0x74,0x5a,0x16,0x73,0xc4,0x53,0xf9,0x7d,0x45,0xfb,0x6e,0xaa,0xb4,0x53,0xe5,0x54,0x09,0x3f,0x44,0x30, + 0x91,0x2e,0xe6,0x04,0x0c,0xca,0x8e,0x09,0xde,0x97,0x3c,0xdb,0xf6,0xc2,0x14,0x0e,0x07,0x4a,0x73,0x4f, + 0x99,0x80,0x79,0x84,0x94,0xe0,0xe8,0xef,0xea,0x32,0xaf,0x73,0x2a,0x89,0x00,0xef,0x79,0x12,0x5c,0x34, + 0xcd,0x32,0xbe,0x77,0xef,0xea,0xea,0x6a,0x78,0xf5,0xc5,0xb0,0xac,0xce,0xef,0x1d,0x7e,0xfd,0xf5,0xd7, + 0xf7,0x3e,0xcd,0xf3,0xe2,0x63,0xa0,0xf2,0xbc,0xe7,0x80,0x0d,0xe2,0x96,0xf3,0xc9,0x57,0x80,0x32,0x29, + 0xcf,0xc9,0x26,0x38,0xcf,0x57,0xf0,0xb4,0xeb,0xfb,0x7e,0x27,0x87,0x25,0xae,0xf5,0x2b,0xf9,0xa7,0x32, + 0xf2,0x4c,0x8e,0xd6,0xa2,0xd2,0xde,0x6f,0x84,0x38,0x26,0x40,0xdc,0x3d,0x14,0xb0,0xab,0xf3,0xe4,0xa6, + 0xbe,0x24,0x62,0x78,0x7b,0x04,0xf7,0x0f,0x0e,0x0e,0xee,0x51,0x5e,0x40,0x3c,0x53,0x73,0xd1,0x57,0x82, + 0xc6,0xf8,0xaf,0x7b,0xb8,0x7b,0x94,0xff,0xbc,0x7c,0x41,0xcd,0x4e,0x18,0x32,0x2f,0x9a,0xc5,0x5c,0x9d, + 0x95,0xd3,0x6b,0x05,0x14,0xa8,0x2e,0x68,0x29,0x14,0x86,0xa6,0x10,0x73,0x5c,0xc9,0xae,0x6d,0xf2,0x86, + 0xfe,0xa6,0xd3,0x29,0xf6,0xa3,0x4a,0xab,0x26,0x9f,0xe0,0xbd,0xa6,0x3d,0x41,0x40,0x54,0xe2,0x76,0x4c, + 0x7c,0x87,0x9f,0x43,0x75,0x71,0x5f,0x5d,0x7c,0xa1,0x2e,0xbe,0x54,0x17,0x5f,0xa9,0x8b,0x7f,0xaa,0x8b, + 0xf3,0xaa,0x5c,0x2d,0x55,0x91,0x5e,0xd2,0xda,0xf1,0x18,0x09,0x10,0x2f,0xd5,0x94,0xa0,0x72,0xae,0xa6, + 0x8d,0x22,0x62,0x16,0xbe,0x35,0x48,0x67,0x33,0xd4,0x4c,0x2d,0xf3,0x09,0x5c,0x6d,0xd4,0x05,0x71,0xe9, + 0x8b,0x73,0xea,0x0c,0x0d,0x8a,0x4e,0xaf,0x72,0xae,0x96,0x30,0x6a,0x54,0xab,0xb9,0x4a,0xd5,0x19,0xb1, + 0x91,0x67,0x95,0x3a,0x9b,0xe6,0xf4,0xbf,0x54,0xf4,0x38,0x21,0xf0,0xe4,0xf8,0x43,0x8a,0x2f,0x89,0x9f, + 0xce,0x88,0x1c,0x5e,0xa8,0x5c,0x7d,0x3c,0x9b,0x52,0x05,0xd5,0x47,0xf5,0xbb,0xaa,0x96,0x8a,0x80,0xb9, + 0x6a,0x26,0xaa,0x5a,0x9d,0x5d,0x13,0x15,0x5f,0xa7,0x8b,0xa5,0x22,0xd8,0x26,0x92,0xab,0x5e,0xa6,0x84, + 0x7a,0x68,0xaf,0x11,0xb3,0x59,0xaf,0xce,0xe8,0xff,0x92,0xef,0x8b,0x55,0xb8,0x67,0xa1,0x52,0x57,0x67, + 0x10,0x9e,0x13,0x92,0x4a,0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x62,0x3f,0x2a,0x46,0x0c,0xd4,0xd2,0x19, + 0x81,0x9d,0xf8,0x81,0xc1,0x08,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x3f,0x26,0x69,0x71,0x99,0x52,0x4b, + 0x93,0x2a,0x5f,0x36,0xd8,0x14,0xf2,0x40,0x34,0x37,0x8c,0xdc,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65, + 0xb2,0x34,0x60,0xf3,0x5a,0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x50,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xe6,0x03, + 0x34,0x67,0xd9,0x7c,0x4a,0x94,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x51,0xed,0xf3,0xec,0x1c,0x44, + 0xc0,0x02,0x9b,0x19,0xa8,0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15, + 0x13,0x0a,0x48,0x73,0x60,0x9d,0x3c,0x9d,0x97,0xe7,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b, + 0x9a,0xd0,0x6b,0xa5,0x31,0xa0,0xca,0x44,0xe6,0xa0,0xb0,0xdf,0xcb,0x2b,0x65,0x82,0x66,0x29,0x0e,0x4b, + 0xf6,0xfb,0xaa,0x04,0x1a,0x99,0x55,0x20,0xf7,0x1a,0x40,0x0b,0x6e,0x0c,0x66,0xd0,0x23,0x80,0x55,0x69, + 0x91,0x2f,0x50,0x76,0x92,0x57,0x13,0x3e,0x1f,0xf2,0xe5,0x92,0x00,0x54,0x4d,0x56,0x15,0xed,0x70,0x60, + 0x2e,0xa0,0xbe,0x7a,0x42,0x8d,0x50,0x16,0x01,0xa8,0xc4,0xf7,0xa1,0xe1,0x16,0xcd,0xfe,0x2c,0x9d,0x00, + 0x00,0xab,0x2c,0x3f,0x2f,0xe4,0x10,0x54,0xe7,0xea,0x7c,0x7e,0xbd,0xbc,0x20,0xc8,0x49,0xcf,0x33,0x00, + 0x72,0xc6,0x8b,0x9f,0x41,0x9a,0x50,0x13,0x50,0xe7,0x35,0x6e,0x2f,0xdb,0x97,0x42,0xdc,0x12,0xfd,0xa1, + 0x0a,0x09,0x21,0x95,0xf3,0xeb,0xf3,0x52,0x7e,0xf9,0x3b,0x9c,0xff,0xea,0xff,0x6b,0xef,0xdd,0xd7,0xdb, + 0x36,0x92,0x7d,0xd1,0x57,0xa1,0x30,0xda,0x32,0x10,0x42,0x94,0x64,0x3b,0x99,0x04,0x34,0xcc,0xe5,0x4b, + 0x2e,0x4e,0x7c,0x5b,0xb1,0x92,0xcc,0x44,0x62,0xb4,0x20,0x12,0xa4,0x60,0x51,0x00,0x07,0x00,0x29,0x2b, + 0x22,0x1f,0xe8,0xfc,0x7b,0x1e,0x61,0x3f,0xd9,0xa9,0x5f,0x55,0x77,0xa3,0x01,0x82,0x96,0x9d,0xd9,0x7b, + 0x9d,0xfd,0xc7,0xfe,0xf2,0xc5,0x02,0xfb,0x7e,0xa9,0xae,0xae,0xaa,0xae,0x8b,0x18,0x51,0xfb,0x05,0x3b, + 0xd9,0xe0,0xf5,0xe1,0x7f,0xb8,0x66,0xc9,0x30,0x03,0x6a,0x6a,0x99,0xc4,0xd7,0xe2,0x1b,0x6a,0xd1,0x7a, + 0x96,0x47,0xa2,0x89,0x3f,0xe3,0xb8,0xdc,0x34,0x85,0x56,0x86,0x6a,0xcc,0x8b,0xc2,0x5d,0x48,0xec,0x40, + 0x36,0x35,0xbb,0xce,0x72,0x46,0x7f,0x39,0x8d,0x22,0xa6,0x83,0x80,0x41,0xcc,0xfc,0x45,0x0e,0xa7,0xd8, + 0xf3,0xa4,0xe9,0xd4,0xaa,0x26,0x04,0x6a,0xd5,0xfc,0xdd,0xe2,0x78,0xcb,0x04,0x28,0x56,0x17,0x26,0x3b, + 0x1a,0x1f,0xa4,0x81,0x5b,0x2a,0x25,0xda,0xd2,0x52,0xa2,0xdd,0xdb,0xb3,0xe2,0x23,0x55,0xc9,0x26,0xa0, + 0x1f,0x34,0x61,0xea,0x01,0xd6,0x75,0x0e,0x7c,0x2d,0xe9,0x4f,0x8f,0x83,0x05,0xd6,0x86,0xf1,0xfa,0x5d, + 0x63,0xcc,0xfa,0x55,0xb1,0x75,0xd0,0xaf,0xdf,0xb9,0x05,0x54,0x53,0xd8,0x50,0x58,0x72,0x8e,0x69,0xf5, + 0x10,0x0b,0x32,0x68,0xd9,0x84,0x46,0x23,0xba,0x28,0x6f,0x89,0x24,0x29,0x8f,0x01,0x9f,0x50,0x59,0x95, + 0xe4,0xba,0xa2,0xab,0xfa,0x94,0xa5,0xd3,0x1b,0xd6,0xe3,0xcc,0x01,0x9a,0x6c,0x57,0x02,0x24,0x8a,0xa6, + 0x3e,0x2b,0x30,0x35,0xe6,0xab,0x7d,0x83,0x70,0x1e,0x42,0x7e,0xf8,0x88,0x19,0x9c,0x8e,0xdb,0xcb,0x5a, + 0x79,0x5c,0xb6,0x8a,0x85,0xd9,0x36,0x85,0xd8,0x8a,0x95,0xb9,0xf6,0xc1,0xe8,0xbf,0xa3,0x6b,0x91,0x4e, + 0x43,0x7b,0x61,0xab,0xc0,0x1a,0xd1,0xc3,0xd8,0x55,0x53,0x6b,0x49,0x95,0xb9,0x86,0xd1,0x00,0x56,0xf5, + 0x99,0xe0,0x85,0x8d,0xe1,0x96,0x55,0x5e,0x58,0x72,0x69,0x03,0x21,0x2d,0xeb,0x56,0x03,0x20,0x5e,0x37, + 0x78,0x6c,0xa3,0x3b,0x50,0x76,0xa0,0xd1,0xfa,0x6f,0x31,0xaf,0x80,0x22,0xc2,0x9b,0x3d,0x33,0x8c,0x12, + 0x75,0x52,0x01,0xac,0x38,0x12,0xfe,0x0d,0x32,0x35,0x1c,0x5b,0xae,0xbe,0x45,0x83,0x57,0x17,0x5a,0xaf, + 0xe9,0x9c,0x2b,0x87,0x13,0xae,0x43,0x54,0xf4,0xda,0x47,0xac,0x96,0xab,0x04,0xde,0xc8,0xb4,0x87,0x31, + 0xad,0x20,0x6b,0x7c,0x87,0xb1,0x87,0x08,0x6c,0x69,0xe5,0x33,0xcc,0x19,0xfa,0xd3,0x6a,0x1e,0xbf,0xc4, + 0x7a,0xd4,0xbf,0xc4,0xad,0xfd,0xff,0x82,0xfe,0x97,0x09,0xfa,0xbf,0x69,0xc7,0x1c,0xe7,0x34,0x84,0x8b, + 0x84,0x1a,0x1d,0xfa,0x67,0x55,0xc3,0xff,0x32,0x0d,0xff,0x8b,0xf6,0xe6,0xba,0xca,0xf8,0xd1,0x64,0xfc, + 0x48,0x19,0xc7,0x49,0x78,0x70,0x72,0x7a,0xed,0xf5,0xba,0xa7,0xfb,0x67,0xbb,0xa7,0xc3,0xe1,0x81,0x7f, + 0x99,0xc0,0xbb,0x16,0xf1,0x18,0x1f,0xf8,0x63,0xe4,0xf8,0xcf,0xaa,0xda,0x74,0x67,0xab,0xda,0x63,0xda, + 0xc4,0x27,0x55,0xc6,0xdc,0x64,0xcc,0x61,0x70,0x97,0xb4,0xda,0xf1,0x72,0x54,0xb9,0x83,0xc0,0xed,0x75, + 0xbd,0x83,0xbe,0x81,0x20,0x31,0xb3,0x3c,0xe8,0xbb,0x83,0x9d,0x93,0x3f,0xdc,0xe1,0x17,0xa7,0x9e,0x77, + 0x30,0x6d,0xd7,0x48,0x83,0x01,0x41,0xe5,0xb8,0x55,0x2a,0x42,0x7b,0xc0,0xbc,0x83,0x42,0xe4,0x7e,0x82, + 0x98,0xa8,0x2a,0x3c,0xcf,0x30,0xcc,0xab,0x50,0x3e,0x0c,0x44,0x25,0xfd,0xbf,0x4b,0xb3,0xfe,0x63,0x7f, + 0xff,0xc0,0x7f,0x43,0x1f,0xa7,0xc5,0x17,0x3b,0xc9,0x15,0x2c,0xa7,0xa3,0xb4,0xdc,0x3d,0xf0,0xbf,0xdd, + 0xe4,0x37,0xa8,0xdb,0x5d,0x15,0x12,0x9e,0x00,0x25,0x96,0x58,0x7e,0x80,0x51,0xc3,0x6f,0x95,0xb6,0xc9, + 0xc6,0x1b,0x55,0x36,0xdd,0x5a,0xd6,0xf8,0xcd,0x7b,0x93,0x70,0xec,0x21,0xc7,0x0c,0xc0,0x0e,0x0c,0x97, + 0x87,0xef,0x13,0x57,0x1c,0xd2,0xd7,0xdf,0xc8,0xd3,0x9a,0x92,0x4d,0xdb,0xbb,0xae,0xea,0x17,0xac,0x35, + 0x9e,0x77,0x65,0x68,0x76,0x22,0xc1,0xd3,0x5b,0xc0,0xae,0x84,0x20,0x24,0xf0,0x7c,0x95,0xfd,0x09,0xfc, + 0x4c,0x1c,0xa9,0xff,0xbe,0xb9,0x7b,0x34,0x80,0xdf,0xf3,0xf0,0xf7,0xfc,0x0e,0xcf,0x8d,0xd2,0xbc,0xf1, + 0xc2,0xb7,0xc3,0x96,0xd7,0x88,0x08,0x01,0x25,0x44,0x96,0xae,0xff,0xae,0xa3,0xe9,0x75,0x62,0xeb,0x9d, + 0xec,0x53,0xbc,0x12,0x2a,0x5f,0x17,0x6f,0x93,0x16,0x87,0x9a,0x6f,0x93,0x93,0x74,0xd8,0x65,0x55,0xe0, + 0xbc,0xde,0x4b,0x8e,0x1d,0x7f,0x5e,0x41,0xe9,0x95,0x81,0xd2,0x2b,0x82,0xd2,0x17,0xcd,0x79,0x2a,0x5b, + 0xf0,0xd8,0x84,0x9f,0x0f,0x88,0x47,0xdf,0xe7,0x9f,0x8e,0x1f,0x5b,0x51,0xe8,0xab,0xf4,0xfd,0x32,0x53, + 0x59,0x56,0x6c,0x65,0x2b,0x5b,0x84,0xae,0x8e,0x5f,0x85,0x67,0xe6,0x4c,0xfe,0xa9,0x52,0xed,0x36,0x39, + 0x81,0xdb,0x6c,0xc6,0x6b,0xb6,0xb2,0x55,0x9b,0x98,0xdb,0xcb,0x84,0x7d,0x89,0x21,0xd2,0xf2,0x77,0x89, + 0x8a,0x1f,0xc9,0x3e,0x63,0x1d,0xff,0x35,0xfd,0x16,0x02,0x8b,0x7f,0xbe,0x6a,0x64,0xff,0x5c,0xfb,0x4d, + 0x37,0x89,0xe3,0xff,0x56,0xaf,0xf1,0xd4,0xfe,0x89,0x02,0xfd,0x97,0x10,0xfe,0x1b,0x3f,0x0d,0xca,0x81, + 0x19,0x78,0x54,0xab,0x19,0x8b,0x3c,0x30,0x05,0xae,0x19,0xc8,0x1a,0xc5,0x5c,0x8c,0xc8,0x8a,0x80,0x69, + 0x8d,0xeb,0xba,0x91,0xfa,0x6d,0x8a,0xc7,0xc9,0xcd,0x8e,0xed,0xd1,0x6d,0xef,0xb7,0x5e,0xca,0xfd,0xcd, + 0x74,0xfb,0xa4,0x3e,0xd7,0xeb,0x7a,0x22,0x77,0x2a,0x5a,0x08,0xbf,0x62,0x95,0x07,0xaa,0x59,0xb0,0xa9, + 0x74,0xba,0x4d,0xb9,0xef,0x40,0xdc,0x7e,0x34,0xb3,0x07,0x21,0x91,0x2b,0x25,0xbc,0xa0,0x72,0x87,0xd0, + 0x7a,0xa1,0xe2,0xc9,0xfc,0x17,0xa0,0xa5,0x73,0xd7,0x04,0xec,0x58,0x11,0x8f,0xe2,0xb9,0xfe,0x6a,0xd7, + 0x3b,0xf0,0x7f,0xb0,0xd0,0xd3,0x46,0x4c,0x07,0xa1,0xf2,0x9e,0x59,0x77,0x3d,0x68,0xbb,0x92,0xc5,0x60, + 0xcf,0x6a,0xd4,0x05,0xd4,0x5c,0xad,0x50,0x0a,0x1c,0xcd,0x4d,0x1c,0x91,0x4b,0xe4,0x8c,0xba,0x2f,0xaa, + 0xc8,0xb7,0x0d,0xc4,0xb8,0xa4,0x7e,0x0d,0x95,0xfb,0x95,0x85,0xea,0x88,0xb4,0xac,0x0c,0x9c,0x5a,0xa3, + 0xeb,0x7a,0xf0,0x22,0x64,0x9e,0x49,0x54,0x95,0x30,0xea,0x41,0x5f,0x8b,0xf2,0xe4,0x07,0x04,0xc0,0x28, + 0x88,0x6b,0xf7,0x88,0x3b,0xf2,0xdb,0x1b,0xd3,0x67,0xbc,0xc0,0x88,0x08,0x3f,0xb8,0x70,0xc7,0xb1,0x69, + 0x7b,0x68,0xab,0xee,0xc4,0xfd,0xa8,0xc5,0x14,0x47,0xa2,0x47,0xb7,0xe4,0xe8,0x07,0xf3,0xd2,0xcd,0x94, + 0x71,0x20,0x8f,0x32,0x0b,0xed,0x50,0xac,0x4a,0x5d,0x29,0x23,0xf4,0x94,0x3d,0xba,0xec,0x69,0x12,0x40, + 0xa3,0xa9,0x6e,0x37,0xf3,0xaa,0xd4,0x93,0x6c,0xe8,0x2e,0x13,0x5a,0xe4,0xbe,0x32,0x34,0x88,0xb4,0x62, + 0xd0,0x08,0xca,0x29,0x78,0x35,0xa6,0x31,0xaf,0xcd,0x1a,0xfb,0x3b,0x12,0x29,0x41,0x7e,0xe9,0xc5,0x95, + 0x25,0xf7,0x27,0x96,0x5f,0x6d,0x0e,0x5a,0x49,0xa4,0x18,0xed,0xf5,0x85,0x37,0x70,0xb9,0x25,0x88,0xdd, + 0x8b,0xc1,0xb3,0x0d,0xb2,0x19,0xc9,0xfe,0x85,0x17,0x34,0x72,0xdc,0x0b,0x88,0xc5,0xe7,0x78,0x74,0x58, + 0x50,0x97,0x13,0x2c,0x6a,0xc9,0x8b,0x3a,0x96,0x15,0x1e,0xc1,0xc7,0x0b,0x0f,0x91,0x86,0x12,0xa4,0xae, + 0xe5,0x0d,0xda,0x74,0xf9,0xac,0x49,0x22,0x8b,0x27,0xe7,0x46,0xdd,0x46,0xe1,0x8a,0x18,0x6f,0x2b,0x6d, + 0xf9,0x12,0x2e,0xf8,0x0d,0xe5,0xb6,0xd4,0xc6,0x52,0x2a,0xe4,0xbb,0x40,0xa9,0x48,0x7a,0xb1,0xaa,0xfa, + 0x31,0xc5,0x6f,0x2d,0xd6,0x9a,0x1a,0x6a,0xd3,0x08,0x59,0xb7,0x4d,0x50,0x80,0x5e,0xd0,0x84,0xbd,0x48, + 0x8d,0x45,0x3b,0x6e,0xce,0x6e,0x9c,0x98,0x88,0xf4,0x7c,0x63,0x36,0x62,0x9d,0xa9,0x91,0x52,0x6c,0xbd, + 0xd5,0x5a,0x7e,0x1c,0xae,0xdd,0x3a,0x9a,0x22,0x5a,0x7e,0x56,0xe7,0x11,0xa4,0x0e,0xed,0x8d,0x4d,0xde, + 0xc7,0x1c,0x4a,0xd5,0xb4,0xbc,0xb0,0xe8,0x92,0x8d,0xa8,0x79,0x75,0xed,0xdb,0xb2,0x82,0xc3,0xc4,0x8b, + 0x5c,0x56,0x29,0x4e,0xd5,0xda,0xf2,0x63,0x13,0x14,0x0d,0x99,0x38,0xc8,0xf5,0xea,0x63,0x48,0xb5,0xce, + 0xb9,0xf0,0xc6,0x5e,0x29,0x07,0x36,0xb1,0x76,0xd5,0x6d,0xf9,0x91,0xd6,0xde,0x31,0xfa,0x6d,0x86,0x6f, + 0x5e,0xab,0x69,0xa0,0x3a,0x6a,0x55,0xb8,0x7b,0x09,0x63,0x65,0xb9,0x91,0x96,0xad,0xaf,0x5b,0xb0,0x5d, + 0xaa,0x41,0x55,0x93,0xcc,0x3d,0x9d,0x46,0x54,0x0e,0x8e,0x1a,0xa3,0xbf,0x6b,0x1d,0xce,0x59,0x61,0x1a, + 0xda,0x8b,0x6b,0x55,0x8c,0x7e,0xe9,0x4f,0x29,0xee,0x23,0x2f,0xd1,0x10,0xd5,0xb6,0xb1,0x73,0x83,0x69, + 0x05,0x85,0x41,0xdd,0xdb,0x38,0x12,0xf4,0xbc,0x67,0x75,0xe6,0x45,0xad,0x35,0xc8,0x3c,0x59,0xe8,0x6a, + 0x0a,0x31,0x02,0x08,0xa1,0x7e,0x65,0x5d,0x09,0xfc,0xc2,0x96,0x49,0xe6,0x6d,0xa2,0x50,0xed,0x62,0x5b, + 0xb6,0x35,0xec,0x57,0xc1,0x86,0x80,0xec,0xc3,0x73,0x84,0xe8,0x4c,0xd9,0x95,0xb9,0x6a,0x58,0xff,0x34, + 0xce,0x11,0xff,0x5a,0x47,0xd5,0x22,0x5c,0xd8,0x9e,0x1d,0xd5,0x76,0xe7,0x8f,0xc2,0x84,0xf7,0x20,0x72, + 0x39,0x38,0x4e,0xe6,0xd7,0xe3,0x16,0x2d,0xcd,0xc2,0x71,0xb4,0x1e,0xfb,0xe6,0x48,0x04,0x70,0x31,0xa6, + 0xa4,0xba,0x0f,0x30,0x40,0xc5,0x14,0x61,0x42,0x95,0xcb,0xb3,0x4b,0x9d,0x5c,0xed,0x7c,0xea,0x99,0x44, + 0xa2,0x06,0x55,0xe0,0x15,0xd9,0x9c,0x2a,0xf0,0xba,0x8a,0xe8,0xc3,0x9e,0xff,0x9b,0xb6,0x8f,0x18,0xf8, + 0xd2,0xb5,0xc2,0x41,0xe4,0x43,0x6b,0xec,0x57,0xf5,0x1b,0xa5,0x9a,0xab,0xba,0x06,0xd9,0x05,0x5c,0x29, + 0x3e,0xbb,0xe8,0x0f,0x43,0xef,0xc0,0x9d,0xe2,0x6d,0x6e,0x89,0x7b,0x31,0x40,0x80,0x23,0x28,0x05,0xd9, + 0xf8,0x6c,0x2a,0x40,0x2d,0x03,0x85,0xf1,0xa6,0x42,0x6c,0x9e,0x89,0x4e,0x14,0x5e,0xaa,0x5b,0xdb,0x04, + 0x93,0xed,0xab,0x75,0xf2,0x06,0x96,0x05,0x6d,0x37,0x4c,0x82,0xa6,0x6a,0x73,0x4d,0x21,0x98,0xc8,0xa6, + 0xfd,0x7d,0xab,0x02,0xde,0xc6,0xe2,0x2a,0xc2,0x54,0x95,0x11,0xd2,0xa6,0xae,0x5d,0x7d,0x13,0xd1,0x61, + 0x68,0xb5,0xb3,0xe5,0xdd,0x01,0xd0,0x29,0x25,0x08,0xfe,0xa9,0x6f,0xc8,0x29,0xa2,0x65,0x78,0xbe,0x3e, + 0xa2,0xb5,0xf1,0xab,0x23,0x2a,0x69,0x38,0xa2,0x58,0x80,0xbe,0xf4,0x62,0x9f,0xd0,0x52,0x05,0xde,0x45, + 0x31,0x4f,0x47,0xa8,0x82,0x9e,0x37,0x1f,0xa1,0x4c,0x06,0x68,0x6d,0x0f,0xd4,0x9b,0x41,0xbe,0x14,0x12, + 0x90,0x8b,0x60,0x3d,0xd1,0x71,0x36,0x13,0xc6,0xe9,0x39,0xfe,0x65,0x7d,0x17,0x44,0x72,0xdd,0xf0,0x7b, + 0xe9,0xd1,0x39,0x4c,0x6a,0x9e,0x33,0xb5,0x77,0xab,0xb1,0x37,0x38,0x73,0x73,0x59,0x0f,0xc4,0x16,0x4e, + 0x5a,0xbd,0x66,0x1e,0x1a,0xe6,0x8f,0xa8,0x32,0xe3,0xd9,0x93,0x81,0x36,0xb7,0x7f,0x26,0xec,0x5c,0x34, + 0x94,0x48,0x61,0xb8,0xb0,0xb8,0xb4,0xf8,0xf3,0x24,0x00,0x90,0x9f,0x6f,0x98,0xbc,0xf1,0x92,0x16,0x3d, + 0x97,0xbc,0x05,0xa3,0x1a,0x7e,0x71,0x86,0x08,0xc3,0x72,0xa8,0x4a,0x77,0xc1,0xab,0x38,0x0b,0x17,0xd5, + 0x92,0xce,0xc2,0x99,0xf1,0x18,0x40,0x09,0x33,0xac,0x99,0x10,0xb8,0x63,0x34,0xac,0x49,0x89,0xb9,0x65, + 0x3f,0x2a,0x87,0x08,0x6d,0x4d,0x70,0x46,0x19,0xf6,0x67,0xb4,0xb1,0x33,0xda,0x58,0xe1,0xa4,0xaa,0x8d, + 0x9d,0x79,0x3a,0xed,0x64,0x36,0x94,0xb6,0x5b,0x06,0x20,0x25,0x4c,0xf7,0xeb,0xd8,0x4d,0xe4,0x0a,0x19, + 0x94,0xee,0x98,0x4b,0xcd,0xbd,0xc1,0x18,0x0e,0x03,0x2c,0x6a,0x4e,0x7b,0x90,0x2d,0xaa,0x1b,0x40,0x45, + 0x55,0x24,0xf6,0x77,0x4c,0xff,0xcf,0xc3,0xca,0x41,0x8b,0xbf,0x0c,0x21,0x01,0xf0,0xa7,0xf4,0x67,0x3e, + 0xf4,0xcf,0x8d,0xc6,0x36,0x65,0x9d,0x85,0x09,0xb2,0xae,0xe9,0xcf,0xf9,0xd0,0x3f,0x0e,0x77,0x8a,0xfe, + 0xe4,0x11,0xba,0x1a,0x3f,0x0a,0xcf,0xe9,0x6e,0x72,0x97,0xde,0x00,0xd5,0xbb,0xdd,0xc9,0x30,0x88,0x5d, + 0x3a,0xc3,0x68,0x65,0x7f,0x7f,0x3e,0x0c,0x9e,0x52,0xa6,0x7f,0x46,0x87,0xfa,0x06,0x7f,0x41,0x9c,0xe9, + 0x82,0xdc,0x6a,0xb7,0x3b,0x1e,0x7a,0x28,0x34,0xf5,0xaf,0xb9,0x10,0xfd,0x45,0x21,0x5d,0x9f,0xfb,0xdc, + 0xdf,0x3f,0x97,0x42,0x4b,0x55,0x68,0x29,0x85,0x8e,0x37,0xe8,0x80,0xd4,0x5f,0xaa,0x7b,0xd7,0x12,0xc5, + 0xb9,0x53,0x41,0x21,0x55,0xcf,0xb5,0x46,0xa7,0x6a,0x78,0x53,0x19,0x5e,0x5b,0xa3,0xdc,0x80,0x34,0x6d, + 0x0d,0xad,0x1a,0xbf,0x1b,0x8b,0xbb,0x8b,0x51,0xf8,0x2b,0x2c,0xdb,0x27,0xfe,0x1c,0x8a,0x80,0x2e,0x08, + 0xfa,0x33,0x8e,0x4a,0x3a,0x18,0x9d,0xf0,0xc7,0xb0,0xc5,0xcd,0x87,0x21,0xb5,0xc3,0x09,0xd1,0xc2,0x49, + 0x3f,0xd3,0x2c,0x3a,0xd0,0x63,0x36,0xd4,0x3c,0xc2,0xde,0xde,0x53,0xd0,0x39,0x91,0xa1,0xe0,0x33,0xa2, + 0x71,0xcf,0xa8,0x89,0x43,0xf4,0x36,0x88,0xe8,0x3b,0xf3,0xd5,0xfc,0x79,0x5e,0x0b,0x1a,0xe7,0x6c,0xa8, + 0x26,0xb7,0x90,0xc9,0x21,0x45,0xfb,0xb2,0x6d,0x9b,0xe8,0xc2,0x9a,0xa8,0x17,0xd4,0xdb,0xac,0xe6,0xdb, + 0x9f,0x3c,0x9e,0x43,0x75,0x9e,0xa6,0x48,0x00,0xd1,0x3d,0x1a,0x7a,0x12,0x90,0x51,0x7e,0xa8,0x43,0x3f, + 0xf6,0xcf,0x71,0xf0,0xc7,0x8f,0xcf,0xf7,0xf6,0xae,0xdc,0x43,0x5f,0x96,0x65,0xed,0x8e,0x38,0xa2,0x27, + 0x80,0x32,0x60,0xa0,0x05,0x85,0x57,0x91,0x50,0x75,0x71,0x28,0x15,0xc6,0x3d,0x7d,0x41,0x7f,0x99,0xec, + 0x9a,0x63,0xb2,0x15,0x58,0x82,0x28,0x06,0xf8,0x0f,0xd0,0xfe,0x98,0xf2,0xc6,0x55,0xe4,0xc3,0xe0,0xce, + 0x66,0x03,0xc9,0xdf,0xe1,0x78,0x35,0x7c,0xb7,0xb7,0x94,0x53,0xa7,0xcc,0xdf,0x8e,0x19,0xb2,0xa2,0xac, + 0xa3,0x86,0xb5,0x75,0x55,0x9d,0x0b,0x17,0xc2,0xe8,0x15,0x8c,0x27,0x6a,0x99,0xf0,0xd2,0x9e,0xfe,0x6a, + 0xa3,0xac,0xf3,0x3a,0xd9,0x23,0x8c,0x52,0x6e,0xf3,0x47,0x39,0x01,0x47,0x85,0xfd,0xd5,0x4e,0xba,0x39, + 0x7b,0x52,0x35,0x03,0x38,0x6b,0x30,0x9e,0xfe,0x08,0x51,0x9a,0xa2,0x29,0x22,0xab,0x6b,0x7e,0x28,0xaf, + 0xc7,0x19,0x0a,0xb3,0xd5,0x6a,0x46,0x93,0x01,0xd2,0xf3,0x73,0x21,0xed,0x7d,0x41,0xc8,0x9a,0x6f,0x91, + 0x8b,0xcb,0xc6,0xfb,0x06,0x2a,0xdb,0xae,0x09,0x68,0x56,0x13,0xae,0x67,0x40,0x9e,0xa9,0xab,0x9e,0x96, + 0xae,0x9d,0x81,0xcd,0xc5,0x54,0x90,0x12,0x5b,0xb0,0xb6,0x67,0xf1,0xaf,0x58,0x57,0xd3,0xec,0xc8,0x53, + 0x04,0xc1,0xc4,0xe3,0x00,0xd3,0x70,0xe1,0xc5,0x84,0x38,0xa8,0xee,0xc2,0xe5,0x44,0xee,0xd5,0x74,0xa8, + 0xc3,0xc4,0x59,0x23,0x50,0xf1,0x50,0xa4,0xa9,0x88,0x29,0xbf,0x2a,0xd1,0x84,0xdf,0xe0,0x8b,0x43,0xef, + 0xcb,0x1c,0x73,0x03,0x17,0x39,0x49,0xf2,0xa2,0xe4,0x1e,0x09,0xcd,0x1c,0xf6,0x97,0x8f,0x26,0x7a,0xaf, + 0x96,0xda,0xb5,0xdd,0xc5,0x6a,0xb5,0x73,0x46,0xfc,0xe2,0xe4,0x64,0x39,0x54,0x9c,0xe9,0x1c,0x66,0xe4, + 0xc2,0xca,0x5e,0x84,0x17,0xb5,0xf7,0x03,0xd4,0x98,0xaf,0x56,0x17,0xf5,0x8e,0x89,0x8b,0xc1,0x41,0x4a, + 0x3c,0xbd,0x9a,0xb2,0xaf,0x57,0xb6,0x9b,0x95,0x29,0xa4,0x79,0x33,0xcc,0x78,0xe7,0x09,0xe1,0x62,0xef, + 0xf6,0x0a,0x83,0x1c,0xcb,0xdd,0x22,0x9d,0xed,0x5c,0x61,0x83,0x59,0xb3,0x04,0xce,0xe1,0xd4,0xa7,0x76, + 0x33,0x29,0x44,0xc5,0x0e,0x07,0xf4,0xe2,0x83,0xa1,0x08,0x2c,0xf5,0x5b,0x3f,0x7b,0xed,0x48,0x98,0x98, + 0x6b,0xff,0xd8,0xbf,0x84,0x90,0xfa,0x03,0x62,0xc7,0x67,0xe3,0xc5,0x2c,0x2e,0xfc,0x67,0xf4,0x0d,0x1a, + 0xe7,0x8d,0x52,0xfb,0xba,0xa6,0x35,0xb9,0x7e,0x74,0x95,0x54,0x00,0x7c,0xcd,0x64,0xe5,0xe5,0xc9,0x55, + 0x72,0x72,0x3d,0x1c,0xb2,0x13,0x48,0x8e,0xc5,0xfa,0xa1,0x2a,0x72,0x4c,0xe4,0xc5,0x87,0x93,0xe3,0xa1, + 0x2a,0x43,0x3b,0xa5,0x8b,0x0b,0x7f,0x61,0xe7,0xf1,0x85,0xfc,0x84,0xf5,0x46,0xf0,0xae,0x26,0x5a,0x33, + 0x2a,0x78,0xd8,0x33,0xeb,0xfb,0x1d,0x0b,0x5b,0x09,0x15,0xb7,0xb8,0x27,0x54,0xb7,0x25,0xc2,0xb3,0x29, + 0xef,0x4b,0x7c,0x7b,0x8b,0x87,0x18,0xf8,0x53,0x85,0x81,0x36,0xa0,0x0b,0xf6,0x9a,0x0b,0x2c,0x6a,0xe4, + 0x02,0xd1,0xa1,0xbc,0xe5,0x72,0x34,0xc4,0xe1,0xc0,0xe4,0x8f,0xd9,0xe3,0x13,0x6f,0x24,0x63,0x6f,0x6c, + 0x80,0x27,0x34,0xd7,0xd8,0x57,0x61,0xce,0xd1,0xcf,0x9c,0x7b,0x93,0x08,0x6a,0xba,0x1e,0x5c,0xf0,0x10, + 0x0c,0x57,0xfc,0xc4,0x33,0x56,0xca,0xd2,0xd4,0x5d,0x2d,0x1d,0x56,0xdc,0xf0,0xee,0xe9,0x66,0x54,0xe4, + 0x4c,0xda,0x37,0x07,0xe5,0x9c,0x87,0x88,0xfc,0xbc,0xff,0x26,0xcc,0xfd,0x5c,0x3f,0xc7,0x3c,0xd3,0x8f, + 0x50,0xee,0x9b,0x46,0xfc,0x19,0x79,0xa6,0x51,0x92,0x43,0xff,0x8d,0xd8,0xbd,0x5d,0x08,0x31,0x48,0xd7, + 0x5f,0x4d,0x50,0x76,0xc1,0x13,0x94,0x75,0xb8,0xe8,0x9d,0x89,0xc0,0xf6,0x5c,0xee,0x83,0x69,0xe3,0x1e, + 0xbe,0x80,0xda,0x2f,0x11,0x2e,0x1a,0xff,0x69,0x80,0xbd,0x0e,0x75,0x1a,0xc1,0x00,0x28,0xa6,0xfe,0x75, + 0xbf,0xba,0x17,0x3f,0x10,0x58,0x7c,0x68,0xe3,0x5d,0x3e,0x58,0xbc,0xcb,0x87,0xa1,0x7b,0xcd,0x23,0xb9, + 0x16,0x97,0xf7,0x3c,0xd4,0xe3,0xaa,0x91,0x27,0xd4,0xc8,0x93,0x16,0xce,0xf7,0x49,0xc5,0xf9,0x3e,0x61, + 0xce,0xf7,0x5a,0x20,0xe9,0x5d,0x78,0xbd,0x81,0x5b,0xd1,0xfc,0xbb,0x1e,0xab,0x09,0x57,0xb6,0x0e,0xbb, + 0xe1,0x51,0x7f,0xf7,0xd1,0x3b,0x62,0x11,0x8d,0xa9,0xca,0x2e,0x1c,0x4a,0x23,0xe1,0x64,0x77,0xa8,0x69, + 0xef,0xdf,0x62,0x8c,0xef,0x9a,0x5a,0x55,0xd1,0x6d,0xe1,0xd5,0x95,0xef,0x2d,0xb0,0x7c,0x87,0xfe,0xa1, + 0xba,0xb0,0x88,0xff,0x81,0x33,0xe0,0xbc,0xb2,0x11,0x93,0xfd,0x5b,0x78,0x3e,0xcf,0x89,0xb7,0xe2,0x0d, + 0x48,0x7f,0x53,0xce,0xbd,0x55,0x07,0x2d,0x98,0x27,0xbe,0x3a,0x7f,0xc1,0xc9,0x19,0x4d,0x25,0xf1,0x9f, + 0x25,0xfe,0x93,0xc4,0x7f,0x9e,0xf8,0x6f,0xd3,0x81,0x96,0xe6,0xbf,0x2d,0x7d,0x2d,0x58,0xc3,0xb7,0xc0, + 0x53,0xe3,0xf9,0x6f,0x47,0x22,0x7a,0x89,0x79,0xc5,0x45,0x76,0x3d,0xd8,0x2d,0x25,0xae,0x19,0x1c,0x66, + 0xae,0x83,0xdb,0xf5,0x50,0xbb,0x54,0x3e,0x4f,0xe0,0xbf,0xfc,0xbb,0x94,0x68,0x41,0xfd,0xc8,0xb1,0x19, + 0x58,0x44,0xde,0xc7,0xa9,0xf5,0xd1,0x45,0x94,0x4e,0x63,0xc7,0xb6,0x47,0x15,0x2d,0xfc,0xaa,0x32,0x4b, + 0xe9,0x95,0x70,0xad,0xcf,0x4a,0xbe,0x4b,0x15,0x07,0xf1,0x15,0xc6,0xa0,0xf4,0xcd,0xb4,0xd3,0xf4,0x3f, + 0x13,0xb8,0x4f,0xc3,0xee,0xc4,0xe3,0xc6,0x83,0x28,0x84,0x48,0xfa,0x65,0xde,0x84,0x76,0x14,0x9e,0x64, + 0x6f,0x6f,0x87,0xff,0x12,0x23,0xa6,0xf4,0x2b,0x07,0x3f,0xb9,0x88,0x9d,0xa2,0x2f,0xf3,0xda,0x08,0xff, + 0xb4,0x58,0x0a,0xb1,0xe7,0x1a,0x2b,0x51,0xd2,0xda,0x0b,0xde,0x97,0xf2,0x6d,0x7b,0x7a,0x32,0xad,0x12, + 0xbe,0x40,0xc8,0x35,0x31,0x3f,0x31,0x9a,0xaa,0xfe,0x4b,0xf8,0x40,0x12,0xb5,0x05,0x68,0x8e,0x98,0xd1, + 0xad,0x56,0xe3,0xc4,0x95,0xa8,0x71,0xec,0x80,0x02,0x2d,0xbd,0xd2,0x81,0x62,0xc3,0xb2,0x0a,0x1a,0xeb, + 0x5b,0xdf,0xec,0xcd,0x91,0x75,0x8a,0x37,0xd7,0x5d,0x2f,0xf7,0x6b,0x1a,0xd6,0xab,0x74,0x5b,0x21,0xcc, + 0x4d,0xa4,0xb2,0x84,0x22,0xe1,0x9f,0xff,0x3b,0x9e,0xc5,0x47,0x4b,0xf2,0xcb,0x07,0x35,0x8b,0x58,0x3b, + 0x3c,0x52,0xd9,0x24,0xe0,0x21,0xbc,0x09,0x37,0xd7,0x6b,0xe3,0xad,0x9a,0x63,0xaf,0xd7,0xf7,0xc6,0xbb, + 0xdd,0x58,0xcb,0xbe,0x7e,0xb3,0x34,0x2b,0x2a,0x6a,0xd4,0x77,0xaf,0x6f,0x3f,0x69,0x46,0xff,0xab,0x54, + 0x23,0x76,0xa0,0x54,0xce,0xae,0x2b,0xd7,0xb2,0xca,0x5a,0xbd,0x62,0x50,0x8a,0xbd,0xf4,0xd6,0xc0,0x81, + 0x2f,0x30,0x40,0x00,0x7c,0xa0,0x4a,0xf2,0xe3,0x38,0xd1,0x38,0xbf,0xe2,0xc7,0xde,0x1e,0xe5,0xab,0x0c, + 0x60,0x7a,0x0d,0xb1,0x6a,0x17,0xd8,0x3f,0xe3,0xbf,0x08,0x5e,0x25,0x94,0xe7,0x9f,0x89,0x8f,0x93,0x15, + 0x88,0x2e,0x6c,0x73,0x7d,0x94,0xa5,0xb1,0x6e,0x0c,0x9e,0x18,0x7e,0xe6,0xa7,0x51,0xa5,0x5a,0x22,0x6e, + 0x53,0x2c,0x81,0xba,0x0f,0x7d,0xf1,0x33,0x5a,0x99,0x3c,0x99,0xc2,0xff,0xeb,0xf3,0xa4,0x80,0x72,0x64, + 0xe8,0xa4,0xb4,0x0f,0x4a,0xe7,0x8e,0xdf,0x54,0xc7,0x92,0x81,0x28,0xf0,0x8d,0xa4,0x7e,0x4e,0x9c,0xf6, + 0xc0,0x4d,0xab,0x63,0x8f,0x2b,0xee,0x1d,0x75,0x6b,0x9f,0x86,0x46,0xa5,0x30,0x5b,0x7b,0x5e,0xb3,0xa5, + 0x30,0x1f,0x64,0x81,0xf4,0xdc,0xaa,0x5f,0xb0,0x31,0xc3,0x7e,0xde,0x58,0x49,0xf7,0xce,0x09,0x6f,0x0c, + 0x34,0x1f,0xdc,0x35,0xd4,0xb6,0x05,0xa2,0xbd,0xdc,0xbd,0xa3,0x9a,0x9a,0x48,0xeb,0x34,0xdb,0x9a,0x54, + 0x33,0x87,0x6a,0x45,0xda,0xb2,0xb9,0x8a,0x21,0xe0,0xd3,0x78,0xf7,0xf8,0x18,0x6a,0x7e,0x22,0xa8,0x61, + 0xa3,0x30,0x65,0xd9,0x05,0x41,0x73,0x94,0x07,0x4f,0xb3,0x0c,0x2e,0x70,0xfd,0x51,0x51,0x98,0x6f,0x00, + 0x97,0x2e,0x06,0x44,0xa2,0xbf,0xad,0xd7,0x59,0x95,0x62,0xbd,0xad,0xda,0x65,0xf4,0xbb,0xaa,0x5d,0xaa, + 0x91,0xb6,0xf1,0x70,0x6b,0x97,0x6d,0x49,0x97,0xe1,0xb6,0x24,0x6d,0x2d,0xdb,0xe8,0x70,0xbc,0xc8,0xf9, + 0x5d,0x30,0x38,0x11,0x9b,0x36,0x5f,0xa5,0x8b,0x62,0xc7,0x70,0xed,0xff,0xa8,0x17,0xa8,0xf6,0x58,0x2b, + 0x96,0x72,0x3f,0x25,0x35,0xf3,0xb9,0xa6,0x1d,0x98,0xe5,0x3c,0x4d,0xac,0xb8,0xb4,0xf5,0x56,0xdd,0x26, + 0x8c,0x59,0x23,0x82,0x4b,0x3c,0x63,0xc9,0x4b,0x7d,0x7b,0x68,0x3f,0x46,0xe3,0xbf,0x43,0x4a,0x48,0xa0, + 0x5b,0x8f,0xd8,0x2a,0x66,0x51,0x78,0x1a,0x2b,0x4c,0xf4,0x56,0xbb,0x0d,0x11,0xfe,0x87,0x9a,0x2b,0xec, + 0x7b,0x95,0x1f,0x4b,0xeb,0xe1,0xcc,0xd0,0xde,0xb6,0xe9,0x68,0xc5,0x16,0xf5,0x45,0x7c,0xf7,0x5b,0xc9, + 0x9e,0x75,0x88,0xf4,0x1c,0x55,0x59,0xda,0xbf,0x2a,0x53,0x69,0xb4,0x7e,0x3a,0xe7,0x57,0xa0,0xa9,0xc2, + 0x53,0x11,0xd9,0x9d,0xb3,0xb3,0xaa,0xbb,0x7d,0xa7,0x6b,0xdc,0xc9,0x75,0x9d,0x7d,0xa7,0x3f,0x62,0x51, + 0x9c,0x28,0xda,0xf2,0xf7,0x60,0x64,0x85,0x37,0x9d,0x75,0x71,0x49,0xe0,0xd3,0x09,0x66,0xdd,0x11,0x1b, + 0xa2,0xe5,0xee,0x48,0x64,0x20,0x78,0x84,0x56,0xef,0x1f,0x92,0x62,0xcc,0x89,0x66,0xde,0x80,0x53,0xb8, + 0x0e,0xfe,0xf2,0xbf,0x7d,0x21,0xbc,0xa9,0xf0,0x98,0xdd,0x1a,0xa9,0x0f,0x58,0xcd,0x78,0xd6,0x8a,0x84, + 0x4f,0xb5,0x5d,0xd1,0xa4,0x66,0xeb,0x3e,0xc6,0x22,0x4c,0x78,0x11,0xa4,0xa2,0x15,0x69,0x7e,0x6f,0x6f, + 0x23,0x69,0x1b,0xd2,0x77,0x80,0x5f,0x04,0x81,0x02,0xc2,0xf8,0xca,0x18,0xd5,0x30,0x8f,0xe7,0x8f,0x89, + 0xfa,0x51,0x78,0xca,0x2d,0xc3,0x11,0x1c,0xb0,0x8c,0x3d,0x4c,0x61,0x47,0x99,0xea,0xc1,0x88,0x87,0xd6, + 0x82,0x7f,0x0a,0x8d,0xb7,0xf3,0x3b,0xcb,0xed,0xdc,0x9d,0x71,0x9b,0x87,0xd7,0xb6,0x54,0xed,0xd2,0xb3, + 0x62,0xc3,0x3d,0xc5,0x6f,0x8c,0x9b,0x40,0x22,0xd6,0x22,0x0b,0x9e,0xbb,0x93,0x2d,0xca,0xfd,0x84,0xb5, + 0xf7,0xa3,0xba,0xdf,0x06,0x05,0x05,0xc0,0x9d,0x3f,0xb9,0x73,0xdf,0x89,0x26,0x04,0xd5,0x2f,0x45,0xc5, + 0xc2,0x36,0x34,0xb7,0x4a,0x1e,0x11,0x15,0x5a,0xf7,0x63,0xb9,0xf6,0x7c,0x0d,0x3e,0xe8,0x2c,0x49,0xf7, + 0x33,0x31,0x07,0x90,0x27,0xf1,0xdf,0xc1,0x99,0x6b,0x3e,0x8b,0x37,0xf4,0xc2,0xbf,0xaa,0xc5,0x56,0x80, + 0x07,0xf6,0x9f,0xdc,0x85,0xea,0xfe,0x5b,0xd1,0x1a,0xb9,0xf2,0x7c,0x4e,0x13,0xac,0x85,0xd9,0xc3,0x1c, + 0x4d,0xa5,0xcf,0xa1,0x15,0x46,0xa8,0xb1,0x39,0x54,0xda,0x32,0xe2,0xc4,0xd7,0x15,0xe9,0x5c,0x00,0x77, + 0x7e,0x9f,0x60,0x35,0x00,0x88,0x0a,0x69,0xf0,0x6b,0xbe,0x85,0x5d,0x80,0x5e,0xbd,0xbe,0x18,0xf4,0x75, + 0xbe,0x67,0x16,0x56,0x1c,0xb8,0xff,0x83,0x90,0x4a,0xa5,0x4d,0x11,0xfc,0x98,0xf8,0xd5,0xaf,0xef,0xa1, + 0x19,0x1c,0xdc,0x0a,0x86,0xf9,0x3e,0x69,0xc3,0x2a,0x0d,0x8b,0x76,0x46,0x0c,0xb6,0x85,0x88,0xec,0x99, + 0xc4,0xc7,0x9d,0x47,0x29,0x62,0xdf,0xb6,0x3b,0x3b,0xe2,0x4a,0xf3,0x3c,0x5e,0x1a,0x4f,0x85,0x62,0x1d, + 0xaa,0x25,0xcf,0x49,0x1b,0xbe,0x62,0x57,0xaa,0x59,0xbd,0x24,0x98,0xec,0xa8,0x3a,0x2e,0x05,0xf1,0x44, + 0xc5,0x23,0xc3,0x92,0x17,0x5a,0xee,0x38,0x0a,0x93,0x93,0x62,0xd8,0x1f,0x49,0xd8,0x68,0x8c,0x62,0x47, + 0x8e,0xfa,0xde,0x1e,0xd8,0x82,0xf6,0x23,0x4c,0x58,0x63,0x89,0xe7,0x10,0x07,0x40,0x9d,0x19,0x33,0xd1, + 0xf4,0x84,0xcb,0x0d,0x71,0x28,0xee,0x3a,0xc7,0x91,0x07,0xa1,0x87,0xe5,0x40,0x7c,0x86,0x01,0x2f,0x38, + 0x9e,0x09,0x0d,0x75,0x52,0x89,0xbf,0x26,0x7a,0xa8,0xe3,0x30,0x3f,0x99,0x0c,0xfb,0x9b,0x07,0x20,0xf2, + 0x55,0x1a,0x11,0xac,0x74,0x3e,0x40,0xeb,0x4f,0xe3,0xf2,0x69,0xb6,0x60,0x19,0xdb,0xb3,0x59,0x42,0x90, + 0xf5,0x33,0xad,0x35,0x5c,0xaf,0x9f,0x8c,0x79,0x88,0x83,0x99,0x8c,0x7a,0xec,0x05,0x0b,0xfd,0xb5,0x56, + 0xa6,0xb7,0xf3,0x32,0x64,0x85,0x4a,0x08,0x21,0xb5,0x79,0xb4,0x30,0x4e,0xe3,0x70,0x61,0x6c,0xc2,0x75, + 0x89,0x8c,0xae,0x7e,0xdb,0x2b,0xc7,0x86,0xe1,0x75,0xbb,0x87,0x01,0xd3,0x17,0x54,0x38,0x58,0x08,0x66, + 0x39,0xe8,0x30,0x99,0x9a,0xa0,0x1a,0x6f,0x31,0x65,0xb6,0x01,0x45,0x59,0xf4,0xf7,0x0c,0xc8,0x1b,0x97, + 0xfc,0x6c,0xd2,0xe5,0x2c,0x11,0xe8,0x79,0x9f,0x35,0x2d,0xfb,0x9a,0x29,0x56,0x66,0x4c,0x17,0x51,0xf1, + 0x8a,0xd2,0xdd,0x58,0x99,0xe5,0xfb,0xa5,0xd0,0xca,0x5a,0xbf,0xf0,0x17,0xe6,0x11,0xf4,0xaf,0x1f,0x6a, + 0xbf,0xfe,0xd4,0x3e,0xfe,0xe1,0xb4,0x63,0x46,0x38,0xd2,0x70,0x77,0x50,0xcc,0xef,0x65,0x93,0x49,0x11, + 0x97,0x3f,0xc4,0xc9,0xf4,0xa2,0xb4,0x6a,0x35,0x35,0x16,0x65,0xff,0x78,0x8d,0x2b,0x07,0x61,0x18,0x09, + 0x2c,0x2a,0x99,0x70,0xea,0x5f,0x83,0x72,0xa3,0xce,0xf2,0x9e,0x51,0xfa,0x09,0xf3,0x9e,0xa5,0x1d,0xa5, + 0x52,0x2a,0xc0,0x78,0xae,0x28,0x09,0x8e,0x35,0xbd,0xc9,0xe2,0xfc,0x9c,0xc0,0xf5,0x27,0x2f,0x57,0x15, + 0x68,0xb0,0x03,0x79,0xcf,0x2d,0x11,0xc7,0x3b,0x07,0xa6,0x9b,0x5d,0x15,0xaf,0x53,0x82,0x05,0xe9,0x30, + 0x5d,0x70,0xd4,0x96,0x2a,0xc0,0xd8,0x68,0x98,0x15,0x1e,0x74,0xdb,0x0c,0x27,0xc7,0x32,0x7c,0xb6,0x4f, + 0x07,0xd7,0xa4,0x3c,0xb4,0x05,0xb7,0x6a,0xf1,0x1b,0x4c,0x39,0x6e,0xf3,0x97,0x89,0x91,0x07,0x56,0xd7, + 0xb9,0x2a,0x5e,0xc7,0xee,0x2a,0xb1,0xaf,0x57,0x6e,0x84,0xd7,0x32,0x16,0xd9,0x78,0xb4,0xd7,0xd6,0x15, + 0xcf,0x80,0x81,0x2b,0xb1,0x2d,0xb5,0x75,0x77,0x6e,0x4a,0x51,0x84,0xf2,0xfc,0xa9,0xda,0x80,0xb4,0x95, + 0x64,0x36,0xce,0x30,0x6a,0x9a,0x11,0xa9,0x66,0xeb,0x3e,0x88,0x16,0xaa,0x6d,0x48,0x47,0x45,0x6b,0xea, + 0x56,0x1a,0x8e,0xd4,0x64,0x42,0x96,0x89,0x99,0x9d,0x5d,0xc3,0x3c,0xfc,0x5b,0x7e,0xad,0x9f,0x24,0xd3, + 0x9e,0x15,0x10,0x37,0x8c,0x13,0xbf,0xca,0xa8,0x85,0xe2,0x0d,0x17,0xed,0x59,0x90,0xa8,0x85,0xff,0xcc, + 0xad,0xbc,0x46,0x28,0xde,0xf0,0x55,0x5c,0xab,0x58,0x8f,0xdd,0xbb,0x11,0x1a,0xe5,0x6d,0x45,0xaa,0x61, + 0xa7,0x16,0xb0,0x63,0xa8,0xed,0x1d,0x28,0xbd,0xba,0xd8,0x4d,0x50,0xed,0x84,0x5d,0x47,0xea,0x3b,0x13, + 0x3f,0x94,0xcd,0xf1,0x5d,0x66,0x08,0x6c,0x44,0xad,0xb0,0xf1,0xbe,0x03,0x0b,0xed,0x01,0x57,0x67,0xcf, + 0xe5,0x95,0x9d,0xaf,0xd1,0xf4,0x83,0x58,0xbb,0x3e,0x09,0x38,0x42,0xde,0x5a,0xd4,0x58,0x48,0x70,0x9b, + 0x07,0x9b,0xb5,0xd5,0x91,0x28,0xed,0x38,0x4d,0x6b,0x7f,0x09,0xab,0x4a,0xe3,0x43,0xd1,0x90,0x5b,0xc4, + 0x09,0x7b,0xf5,0x3c,0xcb,0x78,0xfd,0x1f,0x09,0x9b,0x4c,0x5a,0x2e,0x4b,0x34,0xc2,0x84,0x46,0xe1,0x0f, + 0x49,0x30,0xad,0x67,0x8b,0xe3,0xb9,0xf6,0x00,0x59,0x31,0xd4,0x85,0xa8,0xd6,0xcf,0x50,0x39,0xd2,0x9e, + 0xe2,0x73,0x84,0x0d,0x0a,0x4b,0x10,0x6a,0x7c,0x17,0xb2,0x27,0x1f,0xf8,0xf0,0x35,0x8a,0x1d,0x72,0xa1, + 0xf3,0x79,0x6e,0xa4,0x85,0x71,0xce,0x7e,0x60,0xd2,0x7a,0x44,0x6c,0xf1,0x5a,0xff,0x2e,0xaf,0xf3,0x92, + 0xa9,0x76,0xe7,0xe4,0x1a,0x7f,0xc3,0xb4,0xd1,0x09,0xad,0xcb,0xd4,0x68,0x12,0xd1,0x48,0x08,0xe1,0x0b, + 0x49,0x9d,0x56,0x9e,0x61,0xd2,0x4d,0x2f,0xdc,0x69,0xcd,0x0b,0x77,0xda,0x37,0x5a,0x21,0x6b,0xac,0x87, + 0xf6,0x43,0xe0,0x5a,0xfd,0xef,0x42,0x15,0x44,0xc2,0x5e,0xef,0xed,0xfd,0x2b,0xc5,0xff,0x3d,0xb8,0xcc, + 0x02,0xa5,0x06,0x05,0xe6,0x6f,0x61,0x8d,0x71,0x28,0x27,0xf2,0xf7,0xc4,0xff,0x27,0x54,0x28,0x6f,0x4f, + 0x6f,0x5d,0x77,0x10,0xf4,0x56,0xa7,0xa9,0xd7,0x1d,0x78,0xa7,0xeb,0xd3,0xf5,0xc1,0xd4,0xff,0x4f,0xe8, + 0xbc,0xef,0xf7,0xbe,0xe8,0x0e,0xfe,0xd8,0xbd,0x5d,0xbb,0xde,0xea,0xe4,0x74,0x78,0x7a,0x70,0x7a,0x3a, + 0xa4,0xbc,0x38,0x6b,0x55,0x5c,0xe7,0xbb,0x43,0xeb,0x6c,0xff,0x67,0xe2,0x3b,0xa7,0xa7,0xbb,0x7b,0x58, + 0x28,0xca,0x39,0x6a,0xcb,0x31,0x0e,0x03,0x68,0x25,0xc5,0x43,0x8a,0x5b,0x76,0x1d,0x35,0x18,0x19,0x8d, + 0xd3,0xa5,0x45,0x98,0x42,0xfe,0xe7,0x97,0x59,0x78,0x2b,0x42,0x7d,0x78,0x33,0x0d,0x4e,0x1c,0x4b,0xda, + 0xef,0x0c,0x7d,0x83,0xab,0x1b,0xc6,0x1d,0xec,0x4d,0xab,0x07,0xf7,0x0f,0x0a,0x37,0xe6,0x22,0xa5,0x11, + 0x33,0xdb,0xbe,0x88,0xb3,0xac,0xa6,0xc2,0x1f,0xdf,0xbd,0x79,0x4d,0x09,0x80,0x68,0xc4,0x6c,0x4c,0x3d, + 0x8d,0xc0,0x52,0xab,0x22,0x5c,0xe2,0x42,0x80,0x02,0x55,0x18,0x24,0x3c,0x4d,0x98,0xd2,0x08,0x73,0x6c, + 0x75,0x9c,0xc2,0x31,0x6b,0x8b,0x8f,0x73,0xc7,0xb1,0x14,0xfa,0xab,0x2e,0xc1,0x46,0x74,0x43,0x7b,0x3e, + 0x81,0xd3,0xad,0x95,0xe8,0x3a,0x3e,0x8c,0x7c,0x6b,0x7d,0xa9,0x5a,0x23,0x53,0xde,0xce,0x94,0x0a,0x25, + 0x11,0xc4,0x69,0xfb,0xb2,0xf1,0xc3,0xc8,0xe7,0x2f,0x1b,0xe3,0xfd,0xc6,0xb2,0x71,0x53,0xcd,0x65,0x7b, + 0x97,0x60,0xe5,0xea,0x4b,0x27,0x95,0xad,0xa5,0xe3,0x84,0xbf,0xba,0x74,0xdc,0x6d,0x6d,0xe9,0x38,0xc5, + 0x5a,0x3a,0xfe,0xad,0x97,0xce,0xee,0xcb,0xd4,0x42,0x79,0x57,0x2a,0x54,0xb9,0x5d,0xd8,0x1a,0xc8,0xe2, + 0xe5,0x19,0x3f,0x31,0xc1,0xde,0x8f,0x6d,0x3f,0x61,0x44,0x99,0xcd,0x94,0x2d,0xa3,0x18,0xec,0x29,0x1b, + 0x4c,0xb1,0x2b,0x4c,0x0a,0x46,0xc9,0x78,0x70,0xa2,0xa9,0x58,0x56,0xa2,0x35,0x83,0x47,0x31,0x8b,0xbc, + 0x3e,0x87,0xaf,0xa1,0x24,0x13,0x4b,0x69,0x65,0xd7,0x08,0xa3,0xcf,0x12,0x06,0x9d,0x5a,0xb8,0x39,0x67, + 0xc3,0x46,0x18,0x05,0xb2,0x79,0xa3,0x18,0x3c,0xe6,0xaa,0x25,0xaa,0x9f,0xc9,0x08,0x5b,0x0d,0x4f,0x65, + 0xc8,0x95,0x89,0x21,0xdb,0x49,0xb6,0x9a,0x53,0xa2,0xdb,0xba,0x3d,0x23,0x5b,0xa0,0x2a,0xf3,0x53,0x6d, + 0x3f,0xb9,0x61,0x87,0xaa,0x2c,0x5b,0xd9,0xb0,0xb2,0xc5,0xae,0x15,0x63,0xd5,0x56,0xaf,0xd2,0x0f,0x2d, + 0x16,0x5b,0xd3,0x2a,0xcb,0x4b,0x18,0xae,0x6a,0x93,0x49,0x5e,0xa6,0xa6,0x11,0xa6,0x2c,0x9b,0x18,0xa5, + 0xaa,0xc5,0x13,0xf3,0x09,0x6d,0x60,0x59,0xd9,0x7e,0x36,0x96,0x88,0xed,0x71,0x69,0xa1,0x78,0xad,0x69, + 0x9d,0xa2,0x2c,0x3c,0xf8,0xe3,0xb4,0xf8,0xc2,0x3d,0xa1,0x7f,0x9d,0x7b,0x8f,0x1e,0x9f,0x1e,0x84,0xc3, + 0xae,0x47,0xb8,0x06,0x89,0xa1,0x87,0x7f,0x07,0x81,0x43,0xd9,0xce,0xf0,0x0b,0x42,0x3b,0xab,0x7b,0xf4, + 0x79,0x8f,0x3e,0xef,0x75,0x57,0xaa,0x4e,0xf8,0xe8,0xf1,0x7f,0x51,0x15,0xcf,0x1b,0x1c,0xd0,0x60,0x42, + 0xe7,0x24,0xda,0xff,0xf3,0xc9,0xfe,0xef,0x67,0xc3,0x93,0xd3,0xd3,0xeb,0xd3,0xd3,0xfd,0xd3,0xd3,0xde, + 0xf0,0x0b,0x87,0x16,0x35,0x64,0x1c,0xe6,0x74,0x8b,0xac,0x4b,0x98,0x2e,0xf0,0x06,0xf2,0xe9,0x39,0xfe, + 0x2c,0x0b,0x2d,0x64,0xe7,0xfc,0xf1,0xc8,0xe9,0x8e,0x32,0xcf,0x5f,0xe8,0xc1,0x9d,0x1e,0x0c,0xbc,0xc7, + 0x07,0xb4,0xa0,0x8d,0x62,0xa7,0xa7,0x07,0x28,0xd9,0x75,0x4e,0xfe,0x78,0x3c,0xfc,0xe2,0x31,0x0c,0x1b, + 0x51,0xe5,0xd1,0xce,0xf3,0x37,0xcf,0x8e,0xff,0xf9,0xf6,0xdb,0x0e,0xd2,0xbb,0x8f,0x0f,0x12,0xff,0x42, + 0xd2,0x61,0xb7,0xb3,0x94,0xcf,0xd3,0x93,0x03,0x62,0x82,0xf1,0x62,0xec,0x7c,0x70,0x0c,0x16,0x3e,0xf8, + 0xe0,0xf6,0x68,0x22,0x53,0xbf,0x7e,0xe4,0xa9,0xa0,0x03,0x76,0xbe,0x54,0x0f,0x2e,0xd3,0xcc,0xbf,0xc9, + 0x08,0x70,0xfc,0xb3,0xcc,0xbf,0xce,0xfc,0xe3,0xcc,0xbf,0xcc,0xfc,0x0f,0x99,0xff,0x2c,0xf3,0x9f,0x64, + 0xfe,0xbb,0xcc,0xdf,0xcd,0xfc,0x37,0x0c,0x82,0xca,0x6a,0x57,0x99,0x43,0xeb,0xb7,0x0e,0xbe,0xf0,0xbe, + 0xcd,0xf0,0x5e,0xfc,0x96,0xfe,0x75,0xf6,0x66,0x65,0xdf,0x09,0x9c,0x47,0x74,0x28,0xf7,0xa6,0xfc,0xf9, + 0x18,0x9f,0x80,0x4f,0xfa,0x71,0xcf,0xb9,0x47,0x3f,0xa2,0xab,0x39,0x32,0xf6,0x90,0xf1,0xb7,0xa3,0x43, + 0x7c,0x9f,0xa6,0xfc,0xe3,0x1b,0xfe,0x2e,0x9d,0xb5,0xff,0x9e,0xe6,0xb6,0x47,0x8b,0x4c,0x9c,0xef,0xb4, + 0x5c,0xa1,0xfa,0x8a,0xaa,0x79,0x7d,0x9a,0xd0,0xf3,0xd6,0xac,0x15,0xb5,0xb4,0xfa,0xdb,0x37,0x5c,0xe2, + 0x05,0x0f,0x18,0xfa,0x0e,0xf5,0x71,0xbe,0xcc,0xb6,0xd0,0x14,0x7b,0x7b,0x2f,0x32,0xf1,0x9c,0x70,0xca, + 0x92,0x95,0x12,0xbe,0x8a,0xfc,0xef,0xb0,0xbe,0xff,0xb1,0xfa,0x63,0xb9,0x9f,0xa5,0xc1,0x81,0xff,0x1a, + 0x3f,0x97,0xfb,0x2b,0x24,0xd1,0xcf,0x57,0xf4,0xd3,0xed,0x7d,0x41,0x17,0x6a,0xd1,0xa5,0xd1,0x24,0xe9, + 0x2a,0x9b,0xf0,0x77,0xef,0x0b,0xef,0xc0,0xff,0x99,0x72,0x7d,0x82,0x2b,0x9f,0xae,0xdb,0x21,0x41,0x19, + 0x95,0xb0,0x7f,0x7a,0x83,0xdd,0x03,0xff,0x37,0x86,0x0a,0x77,0x75,0xea,0xed,0xd2,0xa0,0x9f,0x66,0x6c, + 0x14,0xf6,0x05,0xfd,0xf0,0x7f,0x45,0x4e,0x80,0x9e,0x59,0xe0,0x7c,0xe0,0xff,0x42,0x09,0xa7,0xbd,0x93, + 0x3f,0x7a,0xc3,0x2e,0x15,0xfd,0xa1,0x79,0x3f,0x2b,0x37,0x31,0xbf,0x27,0xe1,0xef,0xc9,0x1d,0xe6,0x49, + 0x5e,0xa5,0x03,0x41,0x44,0xd3,0xef,0x89,0x6d,0x92,0x48,0x97,0xf0,0x9f,0xe8,0xf9,0xc3,0xd5,0x2c,0x2d, + 0x82,0xd7,0xef,0x4e,0xc7,0xdd,0x03,0xff,0x5f,0x48,0xe1,0x6f,0x1a,0xc7,0x4f,0x59,0x78,0x52,0x66,0x74, + 0xe7,0xf8,0xb7,0xb4,0xbc,0xc7,0x1f,0xb9,0x5b,0x44,0x7a,0xa4,0x7d,0x49,0xc8,0x83,0x90,0xe6,0x5d,0xf8, + 0x49,0xff,0x55,0x34,0x67,0x4d,0xc4,0x13,0x67,0xb9,0xcf,0x4f,0x28,0xce,0x10,0x54,0x12,0x7e,0xf2,0xa4, + 0x41,0x09,0x3a,0xc3,0xd5,0x8a,0x52,0xd4,0xb7,0x56,0x08,0x55,0xb7,0x0d,0x27,0x82,0xda,0x92,0x9b,0x6b, + 0xb9,0x9f,0x4c,0x64,0x9b,0xb3,0x30,0x19,0x38,0xd4,0x96,0xd3,0x4d,0x70,0x28,0x03,0xe2,0x0d,0xa3,0x50, + 0x88,0x71,0x5d,0x14,0x8f,0xb8,0x52,0xb8,0xa8,0xa5,0x99,0x36,0x46,0xe1,0x3f,0x98,0x14,0xff,0x11,0xba, + 0x28,0x7e,0xcc,0x3a,0x46,0xdc,0xa1,0x2f,0x0e,0x33,0xce,0xb3,0x0f,0xd4,0xf7,0x4f,0x48,0x87,0xaa,0x3e, + 0x88,0xd7,0x11,0x21,0x68,0x21,0xed,0x46,0xbd,0x64,0x42,0x38,0xc2,0xe9,0xe6,0xd4,0x3f,0x4d,0xff,0x9e, + 0xae,0x72,0xcf,0xe9,0x66,0xfe,0xf7,0xa8,0x74,0x1b,0x7f,0x98,0x07,0x28,0x27,0xf8,0x3b,0x18,0xad,0xb5, + 0xbc,0x56,0xfa,0xa5,0x41,0xcd,0x30,0x28,0x5a,0x5d,0x19,0x50,0xcc,0x09,0x6a,0x08,0x79,0x34,0x4e,0x32, + 0xe9,0x7f,0x86,0xfe,0xab,0x26,0xed,0x5e,0xb9,0x14,0x77,0x29,0x7d,0xcc,0x54,0x1f,0x0b,0xdd,0x87,0x52, + 0xf1,0x29,0x21,0x9a,0xab,0x77,0x45,0x09,0xb2,0xe8,0x30,0x79,0xf8,0x09,0xbf,0x6b,0xbd,0x24,0xaa,0xc5, + 0x05,0x02,0x0b,0x0f,0x46,0x3d,0x2c,0x1d,0xc2,0xce,0x15,0x2c,0x4c,0xc5,0x2f,0x5a,0x80,0x82,0xd6,0x05, + 0x2c,0xdd,0xd0,0xff,0x91,0x30,0x03,0x55,0x23,0x56,0x01,0x60,0x07,0xa9,0xbd,0x7e,0xd7,0xfe,0x29,0xf3, + 0x2b,0x1e,0x22,0x50,0x4f,0x69,0xad,0x4f,0x4b,0x62,0x97,0x23,0xda,0x1c,0x50,0x79,0x64,0xb5,0xb3,0x0b, + 0x7f,0xe9,0x5f,0x99,0x67,0xb5,0x69,0xed,0x4d,0xf5,0x46,0xa0,0xce,0x3f,0xb7,0x00,0x8e,0xdf,0x62,0x25, + 0x00,0x93,0x61,0x4f,0x8c,0xa7,0x26,0x80,0xc1,0x95,0x3f,0xf5,0x7c,0x15,0x64,0xb7,0x7a,0xcf,0xbc,0xf1, + 0x88,0x03,0xf5,0x2f,0xc2,0x2b,0x7f,0x19,0xde,0x63,0x2d,0x81,0x5d,0xed,0x84,0xe3,0xd7,0x68,0xd6,0x09, + 0x3b,0x8d,0xb0,0xea,0xea,0x45,0x41,0xde,0x31,0x77,0xd9,0x73,0xac,0x0a,0xd5,0x68,0xde,0x34,0xcd,0x1c, + 0x33,0x83,0x85,0xb2,0x9e,0x6e,0x74,0xed,0xe1,0x19,0xd4,0xb5,0xcb,0xa0,0xd7,0x25,0xf7,0xe5,0x9c,0x89, + 0xc7,0x17,0x68,0x05,0x65,0x9d,0x01,0x55,0x93,0x84,0x4e,0x40,0x9f,0xea,0xf5,0x4d,0x1a,0xbc,0xd7,0x75, + 0x89,0x12,0x9a,0xf6,0xc4,0x94,0x7e,0xe0,0x9c,0xa5,0x2e,0xe5,0xe3,0x40,0xd0,0x1f,0x88,0x8a,0x08,0x1e, + 0x88,0xa9,0x2f,0x21,0x81,0xd5,0x4f,0xcb,0xcb,0x70,0xd9,0x75,0x3a,0x04,0x33,0xb0,0x84,0x71,0xea,0x63, + 0xd7,0xef,0xaa,0xd4,0x69,0x7d,0x01,0x82,0xfa,0x6f,0x42,0x9e,0x8e,0xd7,0x30,0xac,0xa8,0xa1,0x83,0x1b, + 0x42,0xb4,0xe6,0x14,0xd1,0xef,0x73,0x0f,0x2e,0x92,0x46,0xb4,0xbe,0xb3,0xd0,0x1a,0xb1,0xbf,0xc0,0x49, + 0x2f,0x7c,0xe5,0xe2,0xc6,0x5b,0xad,0x1c,0x34,0xea,0xf8,0x13,0x95,0x0e,0x6f,0x27,0xfb,0x55,0x26,0x7e, + 0x3a,0xfe,0x58,0x65,0x4e,0x22,0x9c,0xe7,0x2a,0x97,0x7f,0x3b,0xfe,0x3f,0x63,0x64,0x6a,0xa7,0x37,0xbe, + 0x53,0x37,0x1d,0xa1,0x4b,0x98,0x0e,0xcf,0xe0,0x2c,0x91,0x2f,0xdf,0xe9,0x2e,0xba,0xcc,0x7a,0x3b,0x5d, + 0x57,0xda,0xa7,0xe1,0x4e,0x06,0x4e,0xa0,0x4a,0xd2,0x5a,0x06,0x67,0xff,0x32,0x85,0x27,0x48,0x82,0x56, + 0x4c,0x29,0x9d,0xc8,0x9a,0x3a,0x02,0x32,0x51,0x28,0xc5,0x76,0xc1,0x9c,0xd6,0x56,0x96,0x92,0x46,0x21, + 0x92,0x7b,0x6a,0x5c,0x03,0x57,0xda,0x42,0x37,0x63,0xfa,0xbb,0x69,0xfc,0x4a,0xcd,0x29,0x74,0xb8,0xbb, + 0xbb,0xa4,0x86,0xdd,0x19,0xef,0xaf,0x8c,0xd7,0x09,0x16,0x1e,0x77,0x94,0x84,0x34,0x13,0x2a,0x4a,0x9f, + 0x4b,0x6e,0xc4,0xee,0x84,0xb8,0xc9,0xdd,0xe4,0xd1,0x21,0x23,0x4a,0x1a,0x17,0x0d,0xc0,0x04,0xd6,0x3e, + 0xa1,0xf2,0x84,0x6e,0x45,0x37,0x8e,0x4a,0xd1,0x02,0xd4,0x8a,0x69,0x77,0x2f,0x94,0xe5,0xe9,0x3a,0x55, + 0x3a,0xa5,0x76,0x8f,0xa0,0x37,0x20,0xf5,0x19,0x98,0x08,0x7d,0xd2,0x24,0x19,0xe8,0x9c,0xbb,0x40,0x43, + 0xb0,0x1b,0xc3,0x85,0x30,0xf6,0x57,0x84,0xd2,0x6d,0xb8,0x88,0xb0,0xc5,0xf9,0x26,0x5c,0xfc,0x93,0x03, + 0x5b,0x55,0x7b,0xcb,0x3b,0x93,0xf0,0xce,0xb8,0x51,0x98,0xa9,0x15,0x8a,0x78,0x85,0x22,0x8f,0xf7,0x0a, + 0x5b,0x95,0x57,0x5b,0x45,0x23,0x85,0x61,0xda,0x47,0x47,0x08,0x48,0xb3,0x54,0x3d,0x6e,0xbc,0x9d,0x56, + 0x84,0xd5,0x44,0x3b,0xf0,0xb7,0xca,0xb1,0x3c,0x32,0xa8,0x62,0x23,0x0c,0x30,0xbc,0x68,0xab,0x19,0x21, + 0x96,0x11,0xcc,0xb3,0xe9,0x10,0xec,0x64,0xbc,0x04,0x18,0x0e,0x54,0xf6,0xe8,0x48,0xd0,0xc0,0xd5,0xf8, + 0x02,0x95,0x01,0xd5,0xb2,0xc1,0x65,0x12,0xa8,0x51,0xd1,0x41,0x69,0x1c,0x55,0x59,0x99,0x3e,0xf0,0x71, + 0x7b,0x9e,0x32,0x06,0x07,0xe1,0x2c,0x65,0x2a,0xe0,0x91,0x4b,0x62,0x12,0xd2,0x5a,0x94,0x78,0x74,0x1a, + 0x51,0x01,0xba,0xce,0x00,0x3d,0xb5,0x76,0x94,0xfa,0x88,0x79,0x77,0xec,0x13,0xcc,0x7a,0xd8,0x83,0x58, + 0xef,0x8c,0x8f,0xdb,0xa8,0x34,0xeb,0x1c,0x13,0xe6,0x9e,0x54,0x62,0x12,0xb7,0x58,0xad,0xd8,0x96,0x90, + 0xef,0xdf,0xf3,0xd9,0x82,0xae,0x1f,0xa7,0xfe,0x1a,0xe5,0xb0,0x15,0x20,0x90,0xb2,0xd9,0x88,0x9d,0xdd, + 0xb4,0x2e,0x00,0x74,0x2b,0x65,0xd5,0x1a,0x0a,0x37,0x0f,0xab,0x4c,0x04,0x6e,0x70,0xbe,0x4b,0x51,0x4c, + 0x90,0xe1,0x5a,0x34,0x10,0xc0,0xa6,0xc0,0xb0,0xa5,0x04,0x0f,0x7e,0xcd,0x4c,0xcd,0xc7,0x9b,0x30,0x54, + 0x55,0x6b,0x03,0x6b,0xe2,0x1c,0xdf,0x12,0xc1,0x14,0xb5,0x79,0x9a,0x00,0xa5,0xaa,0xfc,0x6a,0x41,0x0c, + 0x49,0x6c,0x0f,0xca,0xe5,0x99,0x6f,0x49,0x40,0x83,0x38,0x81,0x1f,0x9d,0xa7,0xf1,0xcb,0x78,0x52,0xbe, + 0x99,0xc7,0x29,0x8a,0x24,0x99,0x5f,0x5b,0x8a,0x60,0x91,0xf8,0x0d,0x29,0x67,0xf0,0x2a,0xf6,0x2d,0xe9, + 0xc0,0x4f,0x19,0x31,0x08,0xe3,0xc5,0xa8,0x5d,0x93,0xa6,0x13,0xeb,0xc3,0xac,0x63,0x5d,0xe9,0x28,0x7e, + 0x1e,0x3b,0x7a,0xe8,0xbd,0xcf,0x12,0x02,0x13,0x1f,0x2b,0xf2,0x7d,0x3b,0x0d,0xda,0x81,0xff,0x16,0x40, + 0x3b,0xae,0x5e,0x86,0x7f,0xc8,0xcc,0x7d,0x7d,0x12,0x7c,0x62,0x4e,0x92,0x54,0x79,0xe9,0xf0,0xcd,0x93, + 0x97,0x04,0x0a,0xea,0xba,0xf1,0x00,0x67,0x35,0x86,0xb3,0x53,0x48,0x84,0xfe,0x61,0x78,0xba,0xd3,0xeb, + 0xdd,0xb3,0x61,0x77,0x75,0x4a,0x24,0xb4,0x37,0xfc,0x62,0x70,0xea,0x81,0x9f,0x0b,0x1f,0xaf,0xfe,0xd0, + 0x23,0xa0,0x9f,0xa7,0xee,0x81,0xff,0xbb,0xaa,0x71,0x42,0x7c,0x1b,0x71,0x6f,0x67,0xbb,0x43,0x54,0x1d, + 0x82,0xf5,0x23,0xf2,0xb9,0x91,0xb8,0x3a,0x3d,0xb9,0x47,0x04,0xfc,0xbd,0x21,0x7d,0x38,0xf4,0xe1,0xe0, + 0x83,0xe8,0x5c,0xfc,0x69,0x96,0x1d,0x7a,0x5f,0x50,0xb3,0x44,0x9a,0xff,0x13,0xb4,0x4c,0x31,0x0a,0xee, + 0xff,0x1d,0x3e,0x8a,0x82,0x6f,0x44,0x7b,0x22,0x38,0x7a,0xe0,0xcb,0x7a,0x3f,0xb8,0xef,0x2f,0xe6,0xc1, + 0x83,0xaf,0x89,0x05,0x9e,0x94,0xc1,0x83,0xbf,0xfb,0x39,0xde,0x45,0x82,0x07,0xdf,0xf8,0xf0,0x6b,0x1d, + 0x3c,0x3c,0xf4,0xe5,0x69,0x32,0x38,0xf9,0xda,0x7f,0xf8,0x15,0x71,0x19,0xff,0x99,0xb5,0xb9,0xdb,0x02, + 0xca,0xe9,0x02,0x78,0x2c,0x57,0x58,0x7d,0xe2,0x8b,0xe2,0x08,0xd2,0x1e,0x82,0x07,0x7d,0xa8,0xf1,0x03, + 0x00,0x12,0x4d,0x23,0x91,0x11,0xf6,0xa1,0x28,0xc1,0x79,0xa6,0x8c,0xfa,0xfd,0x5c,0x9e,0x12,0xb9,0x08, + 0x42,0x8c,0x05,0xff,0x99,0xb9,0x75,0xdc,0xd0,0x21,0x8c,0xd3,0x51,0x29,0xa3,0x45,0x8e,0x4d,0x3a,0xe6, + 0x0c,0x3a,0xc0,0xa3,0x32,0x9f,0x71,0x8d,0x1d,0x5d,0x80,0x12,0x7e,0x82,0xe2,0xad,0xcf,0xce,0x40,0x6b, + 0x79,0x9c,0x22,0x99,0xd1,0xac,0x9e,0x45,0xbf,0x25,0x03,0x02,0x81,0x5a,0x0e,0x12,0x24,0x8b,0xd7,0x0e, + 0x59,0xf7,0xc4,0xd9,0xd3,0x3d,0x10,0x3b,0x52,0xaa,0xb3,0xb7,0xa7,0x47,0x28,0x79,0x3c,0xe6,0x43,0xb4, + 0x97,0x8c,0xc7,0xb3,0xf8,0xb3,0xaa,0x1d,0xb1,0x43,0x34,0xec,0xcf,0xe7,0xd4,0xba,0x0f,0xf8,0xc7,0x83, + 0x27,0xb1,0x85,0x4d,0x37,0x2b,0xf0,0xee,0x56,0x05,0xa8,0x6b,0xd9,0xd8,0xb3,0xa9,0x6c,0xac,0x5f,0xc3, + 0x10,0x84,0x20,0x36,0x54,0x8b,0x74,0x73,0x1c,0x09,0xaf,0x32,0x02,0xaa,0x5a,0x3a,0xa7,0x96,0x52,0x6a, + 0xe9,0x1e,0x04,0x5c,0x74,0xde,0xba,0xe0,0xae,0xab,0x56,0x71,0xeb,0x59,0x04,0x31,0xfc,0x17,0x55,0x5a, + 0x86,0x78,0xe6,0x1a,0x08,0x45,0x13,0x28,0xd2,0xc8,0xfb,0x48,0x71,0x0e,0x25,0xed,0xf8,0xaa,0xbc,0xe3, + 0xa9,0x31,0x8f,0x66,0x59,0x74,0x89,0x20,0xb9,0x69,0x8b,0x17,0xd3,0xcc,0x38,0xbf,0xe4,0x9f,0x10,0x35, + 0xd2,0x9d,0x88,0x3f,0xab,0xd5,0x3f,0x54,0xa2,0x91,0x4e,0x16,0xe1,0xef,0xb0,0xb1,0xd4,0xfa,0xe6,0x8e, + 0xc9,0x40,0x94,0x22,0xed,0x93,0x1d,0x2f,0x88,0xdf,0xc7,0x29,0x82,0xf1,0xd5,0x4b,0x2b,0xb1,0xa2,0x29, + 0x67,0x58,0x8a,0x70,0xe9,0xb2,0xee,0x44,0x19,0xb1,0xc5,0xb3,0x49,0xf7,0x4c,0x60,0xae,0x1a,0x02,0x5d, + 0xad,0x2e,0xd3,0xbe,0x72,0x77,0x7c,0x73,0x1e,0x9b,0x98,0x8a,0x2d,0x1b,0xb9,0x63,0xac,0x73,0x95,0xaf, + 0xcb,0x74,0x14,0xbf,0x80,0x11,0x16,0xff,0x6a,0xc6,0x0e,0x84,0xdb,0xed,0x3c,0x0a,0x5d,0x5b,0xea,0x73, + 0x7a,0x7a,0xee,0x74,0x9d,0x31,0xe1,0xf0,0x09,0x24,0x6c,0x04,0xf4,0x25,0xde,0x1c,0x68,0x91,0x6f,0xd8, + 0xdf,0xda,0x08,0xd2,0x3d,0x5c,0x7b,0xfe,0x75,0x52,0x5e,0xf8,0xd1,0x75,0x94,0x94,0x3e,0xeb,0xfb,0xfb, + 0xec,0xd9,0x5c,0xe9,0xc4,0xf3,0x03,0x8f,0xcf,0x8e,0x48,0x7d,0x0e,0x32,0xef,0x5f,0x13,0x5a,0x8d,0xfd, + 0x1b,0x88,0xf5,0x14,0xb2,0xf1,0x89,0xfb,0xca,0xe0,0xc4,0x90,0x1d,0xac,0xf8,0x32,0x03,0xed,0xd8,0x4b, + 0xbb,0x53,0x14,0xd7,0x9f,0xc4,0x9a,0x48,0xbc,0x79,0xf6,0x6d,0x96,0xa4,0x0b,0x78,0xe4,0x39,0x5f,0x4c, + 0xa7,0x90,0x03,0xaa,0x55,0xa8,0x62,0xa8,0x38,0xca,0xfd,0x0c,0xee,0x04,0x75,0x3b,0xd0,0xb4,0x56,0x98, + 0x9a,0xd7,0xe5,0x19,0xca,0x3b,0x4a,0x63,0xce,0x32,0x28,0xf1,0x21,0xca,0x7a,0xe9,0xad,0xed,0x10,0x4a, + 0x07,0xc2,0x3f,0x3d,0x25,0x94,0x4f,0xff,0x54,0xad,0x36,0x32,0x10,0x00,0x6e,0xb7,0x29,0xda,0xa9,0x2c, + 0x6c,0xb7,0x1a,0x84,0xb2,0x17,0x60,0xc2,0x8d,0x08,0x6c,0x1c,0xee,0x1c,0x79,0xfe,0x71,0xa6,0xf6,0x94, + 0x6d,0xbf,0x20,0xc6,0xb6,0x62,0xb0,0xf4,0xd3,0x47,0xd7,0x99,0xed,0x77,0xe5,0x3a,0x63,0x13,0x5b,0x18, + 0xf7,0x4e,0xb3,0xb0,0xac,0x20,0xfb,0x18,0xbf,0xf4,0x7d,0x0f,0x90,0xf2,0x2f,0x91,0x62,0xdd,0xe6,0x9c, + 0xf8,0x01,0x89,0x8d,0xeb,0x9a,0x33,0xce,0x33,0x80,0x77,0xd9,0x72,0x18,0x5e,0xcb,0x61,0x38,0x6b,0x16, + 0x68,0xca,0x62,0xa8,0xcc,0xf5,0x46,0x99,0xac,0x28,0x9b,0x85,0x6e,0x30,0x04,0xda,0x8d,0xe4,0x2a,0x29, + 0x11,0xdf,0xd0,0x70,0xda,0xa2,0x5a,0xb2,0x73,0xc4,0x1a,0x4e,0x08,0x5a,0x8e,0x13,0xf2,0xdb,0x05,0x95, + 0xe2,0x61,0xfa,0x58,0x2f,0xd0,0xaa,0x47,0x1b,0x46,0x17,0xcd,0x45,0xa6,0x5f,0x8b,0x6e,0x48,0xd0,0x05, + 0x8d,0xd5,0xc5,0xb9,0x3c,0x20,0xb8,0xb6,0x41,0x74,0xae,0x5d,0x04,0xb0,0xc1,0xbe,0x5f,0x54,0x01,0xe9, + 0xc5,0xbb,0xec,0xc2,0x53,0x8f,0x69,0x78,0x53,0xc8,0xf1,0x53,0x76,0xac,0xf1,0xdc,0x4a,0xc9,0xac,0xc5, + 0x9f,0x84,0x51,0x15,0xa5,0x3e,0x79,0x1c,0x1e,0x22,0x16,0x41,0x32,0xec,0xcd,0x74,0x51,0x1c,0x74,0x9a, + 0x17,0xf5,0xb3,0xbf,0xaf,0xe9,0xca,0x90,0x1f,0x75,0x51,0xda,0xb2,0xad,0xb4,0x1b,0x1a,0x3d,0x0e,0x93, + 0xfe,0x88,0x2a,0x94,0x3d,0x76,0xa0,0xc2,0x7f,0xd8,0x8d,0x3a,0x0b,0x19,0x30,0xfe,0xbe,0x2e,0x1e,0x62, + 0x01,0x13,0xee,0x76,0xff,0x88,0xf3,0x99,0x11,0x72,0xce,0x73,0x50,0x79,0xc5,0x80,0x89,0xab,0x9c,0x7d, + 0xd1,0xf3,0x07,0xcd,0x9f,0x96,0x7b,0xe7,0x50,0x9c,0x1e,0x38,0x73,0x2e,0xc5,0x61,0x13,0x5a,0xcb,0x1d, + 0x71,0x39,0xbf,0x36,0x10,0x59,0x41,0x5a,0x54,0xed,0xf7,0x00,0xc2,0x12,0x6c,0x22,0xf4,0xcc,0x2b,0xd1, + 0x0b,0x6d,0x59,0xd9,0xab,0x68,0x4c,0x86,0xb6,0x19,0xde,0x93,0x1b,0x94,0x25,0x67,0x2c,0x68,0x51,0xe2, + 0x3e,0x4b,0xf2,0x12,0x42,0xe2,0xc4,0x96,0xbc,0xc9,0x5c,0xed,0x7f,0x43,0x4c,0x4e,0xb3,0xc6,0x8b,0xf7, + 0x3c,0xfc,0x36,0x3b,0x19,0x23,0xee,0x13,0xff,0xad,0x09,0xb9,0x89,0x88,0x3b,0x2d,0x4e,0x4f,0xdf,0x11, + 0xf9,0xe6,0xb9,0x8f,0x0e,0x98,0xb1,0x15,0x69,0xb7,0x47,0xa7,0x3e,0x01,0xdb,0x0c,0xc3,0x2b,0x2d,0xbf, + 0x9e,0xdb,0x82,0x6b,0x06,0x0f,0x0d,0x69,0xc6,0xc8,0xd5,0xa7,0xf1,0x8c,0x99,0xfb,0x53,0x2e,0x25,0xb1, + 0x70,0x88,0x22,0x9c,0x86,0x95,0x6f,0xa9,0x03,0xc8,0xca,0xa9,0xef,0x42,0x7a,0xde,0xdf,0x7f,0x7c,0x30, + 0x25,0x36,0x83,0x6e,0x7e,0xbb,0xc8,0xe9,0xc9,0xb3,0xe7,0x4f,0x8e,0x9f,0x9c,0x9e,0x54,0x25,0x87,0x43, + 0x53,0x12,0x92,0x63,0x77,0xec,0x8b,0x1b,0x65,0x68,0xab,0x28,0x77,0x4c,0x1c,0x02,0xef,0x22,0x92,0xcb, + 0x92,0x3f,0xa0,0xe2,0xe0,0x40,0xae,0x42,0x30,0xaf,0x35,0x70,0xf6,0x2f,0xf4,0x78,0xe3,0xf0,0xc2,0xcf, + 0xa9,0xa1,0xc5,0xfe,0x04,0x01,0xa6,0x8d,0x89,0xd1,0x32,0xb4,0x9e,0xfa,0x1f,0x09,0xbb,0x0f,0xed,0xca, + 0x25,0x2f,0xfe,0x45,0xa6,0xa3,0x64,0x69,0xe3,0x30,0x5b,0x31,0x60,0xff,0xf4,0xc3,0x83,0x58,0xaa,0x5c, + 0x31,0xf8,0x96,0x2a,0xfa,0x22,0x02,0x50,0x28,0xcd,0x42,0x15,0xf5,0x40,0xf9,0x22,0xa9,0x4e,0xe1,0x43, + 0x1f,0x66,0xb4,0xa9,0x7b,0xd5,0x7d,0x40,0x6c,0x9e,0x42,0xf7,0x6b,0x68,0x6d,0x2d,0x1b,0x7d,0x4e,0xed, + 0x3e,0x87,0x8f,0xa5,0xbf,0x29,0xf7,0x97,0xba,0xd3,0xee,0x7d,0xbb,0x3a,0xca,0x43,0xf8,0xc6,0x9e,0x67, + 0xdd,0x79,0xc6,0x65,0x6f,0x50,0xf0,0x06,0x0f,0xc8,0x3a,0x5a,0xa1,0xa9,0x80,0xf2,0xe7,0xa6,0xfc,0x44, + 0xca,0x9f,0x4b,0xbf,0x67,0xe1,0xa2,0x9f,0xba,0xe7,0x56,0x3d,0x5a,0xc0,0xf3,0x93,0xa3,0xa1,0x7f,0xc6, + 0xac,0xa9,0xdd,0xc6,0x75,0x33,0x02,0x4a,0x69,0x1a,0x9d,0x49,0xa3,0xa5,0x25,0x4b,0x0c,0x6f,0xb5,0x43, + 0xbf,0x12,0xcd,0x31,0x07,0x12,0xe0,0xc0,0xe0,0xa4,0x05,0x0b,0x09,0x6d,0x49,0xe8,0xcb,0x1e,0xf2,0x0e, + 0x5b,0xe8,0x4b,0x93,0x8b,0x4c,0x82,0x8a,0x9a,0x84,0x88,0x12,0xfa,0x5e,0xea,0x26,0xf6,0x60,0x33,0xe5, + 0x16,0x92,0xf5,0xcf,0xc4,0xca,0xcf,0xb8,0xe5,0xca,0x7a,0x0b,0x9c,0xc3,0x77,0x74,0x8b,0x5f,0xb0,0x83, + 0x36,0x58,0x65,0xd6,0x2b,0xc3,0x97,0xf9,0xc2,0x87,0x65,0xb0,0x18,0x43,0x79,0xb7,0x3b,0xcd,0x97,0xd3, + 0x94,0x26,0xb3,0x60,0x2f,0x38,0x6a,0x3e,0x74,0x2c,0x63,0xab,0x65,0x96,0x01,0x08,0x4e,0xa1,0x13,0x9c, + 0x65,0xee,0x84,0x86,0x9d,0xd3,0x39,0xf6,0x67,0xfc,0x99,0x41,0xa0,0x85,0x94,0x89,0x57,0x5d,0x77,0xf3, + 0x70,0x44,0xbf,0x57,0xab,0x9d,0x9d,0x31,0x1f,0x4a,0x99,0x84,0x82,0xe2,0x25,0x1f,0x6b,0x11,0x43,0xd1, + 0x28,0xaf,0x08,0x4d,0x5c,0x3d,0xba,0xe8,0x5f,0x69,0x25,0xbe,0xa9,0xae,0x70,0x72,0x35,0xec,0x5f,0x51, + 0xa7,0xfb,0x30,0x85,0x9b,0x62,0x66,0x1a,0x84,0xee,0x39,0xce,0x3d,0xac,0x1e,0x3f,0x45,0x4d,0x4f,0x1e, + 0x0c,0xf7,0xf6,0x94,0xc2,0x26,0x7e,0xf8,0x2a,0xf9,0xa1,0x9d,0xfc,0xd0,0x24,0x7f,0x69,0x27,0x7f,0xa9, + 0x4c,0x05,0x6f,0xb8,0x99,0xd5,0x0a,0x05,0xf1,0xef,0x97,0xf4,0xaf,0xe3,0xf8,0xe7,0xa1,0xc3,0x42,0x1a, + 0x9a,0xa1,0x03,0xdf,0xcc,0xd2,0xc2,0xd1,0x70,0xa0,0x4f,0xc9,0xf3,0x18,0xfe,0x72,0x5f,0xc7,0xd7,0xf0, + 0x77,0x5a,0x7c,0x97,0xe5,0x3f,0x50,0xa9,0xa0,0x3d,0xb7,0xbf,0xa4,0x19,0x29,0xc5,0x74,0x34,0xe2,0x33, + 0xa1,0x1d,0x10,0x4a,0xb8,0x41,0x24,0x2e,0xf8,0x1d,0x18,0x3c,0xcf,0x82,0xf7,0x99,0xe5,0xda,0x6e,0xe1, + 0xb7,0xf0,0xc8,0x6f,0x33,0x76,0x2f,0xef,0xad,0xd7,0x44,0x09,0xc0,0xb9,0x3f,0xa0,0x83,0x75,0x5a,0x27, + 0x7e,0xed,0x9a,0x0a,0x26,0x0d,0x04,0x2b,0x60,0xba,0x84,0x6b,0xfa,0x70,0x02,0xf4,0xd3,0xb8,0x21,0x88, + 0x9a,0xf2,0xe7,0xfc,0x18,0x4e,0xbf,0xe0,0xe1,0x26,0x1d,0x7b,0x6b,0x82,0x1b,0x20,0xb0,0xcc,0x8f,0xd9, + 0x15,0xc3,0x51,0xf3,0xb0,0x1e,0x6b,0x13,0xf2,0x4b,0xfd,0xf1,0x41,0x7d,0x00,0xe8,0x96,0xe6,0x52,0xbc, + 0x34,0x8e,0x9e,0x97,0x38,0x0b,0x13,0x85,0x23,0x2e,0xe1,0xd6,0xd5,0xfa,0xbe,0xb0,0xbe,0x97,0xd6,0xb7, + 0xfb,0x21,0xbc,0xb4,0xd1,0x9c,0x4f,0x08,0xf4,0xd1,0x21,0x9d,0x99,0x65,0x37,0xfc,0xe0,0xd7,0x1a,0x3f, + 0xae,0x11,0x0b,0x87,0xfe,0x12,0x58,0x6a,0xe9,0xad,0x97,0x2c,0xae,0xa4,0x5c,0x42,0xa5,0xb0,0x24,0x37, + 0xe8,0xf7,0xb8,0xc2,0xc0,0xc7,0xac,0x76,0x0a,0xbf,0x42,0x09,0x90,0x61,0x03,0x3f,0xc7,0xda,0x64,0x76, + 0x9d,0xbb,0x2c,0x5c,0x92,0xc0,0x21,0xd3,0xcc,0xb7,0x1e,0x28,0x6a,0x57,0xa6,0x25,0x92,0xb1,0xef,0xce, + 0x4d,0x69,0xcc,0xe6,0x35,0xea,0xb7,0x41,0xd1,0x16,0xe0,0x6a,0x2d,0xfb,0x71,0x78,0x54,0xb9,0xfe,0x06, + 0xbe,0x0f,0x0c,0xba,0x2f,0x14,0x3e,0xb3,0xee,0xd2,0x08,0xd6,0xb0,0xf2,0x0c,0xc4,0x31,0x97,0x10,0x28, + 0xe4,0x03,0x5e,0x3f,0xfb,0x2f,0xe1,0xe5,0x1d,0x2e,0xb4,0x69,0xed,0x16,0x88,0x7c,0x50,0x63,0x7b,0x2a, + 0xfd,0x67,0xc2,0x92,0x42,0x0f,0xc7,0x36,0x39,0xac,0xa5,0x9e,0x08,0x88,0xfa,0x67,0xa6,0xd5,0x29,0x53, + 0xa5,0x46,0x29,0x5f,0xa1,0xfc,0x31,0xa7,0xe3,0x5f,0x99,0x2f,0xdb,0xc8,0x27,0x00,0x04,0x8c,0x89,0xa4, + 0x07,0x77,0x31,0x22,0x88,0xb4,0x5e,0x7a,0xfe,0x55,0xf2,0x04,0x08,0x91,0x62,0x7c,0x57,0x34,0x76,0x90, + 0x83,0x3b,0xca,0xb5,0x3e,0xfb,0x5a,0x9c,0x84,0x57,0x9e,0x68,0x3a,0xeb,0x27,0x6b,0x24,0x4f,0x44,0x33, + 0x7b,0x52,0x17,0xc9,0xd2,0x74,0x21,0xf9,0x3b,0x78,0x1f,0x2d,0x23,0xbb,0x6c,0xad,0x10,0x8d,0x1e,0xe1, + 0x69,0x3d,0xee,0x90,0x16,0xe1,0x9c,0x7d,0xc4,0x73,0x6c,0x4a,0x63,0xa1,0x4d,0xab,0x31,0x7d,0x74,0x66, + 0xb8,0x83,0x29,0x2d,0xc7,0x55,0x78,0x96,0x9d,0x4c,0x87,0x2e,0x34,0x6d,0x57,0x2b,0x76,0xba,0x02,0x75, + 0x5d,0xf3,0x0c,0xb9,0x0c,0xaf,0xf0,0xe8,0x06,0xd1,0x1f,0x9a,0x5e,0x82,0xca,0x66,0xe3,0x83,0xab,0x8a, + 0x25,0x39,0xf4,0x98,0x27,0xb9,0xb2,0x78,0x12,0xbc,0x58,0xb6,0xc6,0x35,0x36,0xb2,0x36,0xe3,0x04,0xd3, + 0x0e,0xd9,0x68,0x5e,0x5d,0x2d,0xdc,0x5d,0x6a,0xef,0x34,0x65,0x3f,0xa7,0x01,0xc3,0x77,0x8f,0x42,0x6e, + 0x56,0x6b,0x94,0x28,0x61,0x4a,0x04,0xd7,0x35,0x94,0x80,0x1a,0x05,0x25,0x3a,0xe9,0x5a,0xfb,0xd9,0xa4, + 0x79,0xb0,0x55,0x14,0xcb,0xfc,0x42,0x0e,0x23,0x7c,0xe5,0x05,0x57,0xd5,0x5b,0x29,0xe5,0xfe,0x58,0x52, + 0x5a,0x4b,0x3c,0x59,0xeb,0x4d,0x57,0x5d,0xdd,0x31,0x1e,0x55,0x4b,0x3c,0x42,0xc6,0xf2,0x08,0x59,0xaa, + 0x47,0xc8,0x78,0xad,0x4c,0xaf,0x5b,0x9e,0x78,0x45,0xc9,0x59,0x3d,0x4f,0x7a,0x35,0x4d,0xa7,0xea,0xc1, + 0x57,0x6b,0x3b,0xa9,0x77,0x4b,0xb8,0xd9,0xc5,0xa0,0x4c,0x73,0x17,0xb2,0x55,0xe0,0xf0,0xb9,0xc1,0x0b, + 0x66,0xf6,0x79,0x2f,0x7e,0x2a,0x79,0x83,0x69,0x25,0x07,0x7a,0xf7,0x57,0xab,0x9c,0x46,0xca,0xd0,0x22, + 0x0d,0xd2,0xee,0xf3,0x17,0x55,0xfd,0x1e,0x8f,0x0d,0x3c,0x78,0x9d,0xa9,0xe6,0x70,0xb5,0xf6,0x82,0x9c, + 0xba,0xa1,0x13,0xb9,0x63,0x41,0x19,0x4c,0x86,0x36,0x9a,0x19,0x53,0xb9,0xf9,0x96,0xa3,0x69,0x4e,0x24, + 0xc7,0xd7,0xd3,0x66,0xe8,0x31,0x87,0xd6,0x03,0x2c,0x6b,0x39,0x2f,0x25,0xf4,0x69,0x63,0xb2,0x39,0xec, + 0x7f,0xdd,0xca,0xd3,0x0d,0x91,0xf0,0x7b,0x7b,0x73,0x1e,0xff,0xf7,0x78,0x17,0xe4,0xb1,0x8e,0xeb,0x63, + 0x1d,0xaf,0x2b,0x69,0xfc,0x55,0x0f,0x56,0x0a,0xec,0xf5,0x8b,0x43,0x89,0xcb,0x4e,0x1f,0xa9,0x2b,0x59, + 0x72,0x45,0x82,0xb8,0x5a,0xdd,0x73,0x94,0xa4,0xc1,0xb9,0xd7,0xa7,0x2e,0x6b,0x61,0xde,0xea,0xbf,0xd9, + 0x94,0xe0,0xe4,0x66,0x18,0x5e,0x89,0xb5,0x75,0x35,0x3e,0x41,0x14,0x57,0x7c,0x4a,0x54,0x58,0xb6,0xfe, + 0x6c,0x90,0x02,0xae,0x5c,0x7e,0x27,0xd2,0x05,0x10,0x5c,0x2c,0x6d,0xd1,0xa9,0xcf,0x4e,0x32,0xc3,0xd4, + 0x0d,0xfd,0xd2,0xf2,0x8b,0x75,0xb2,0xe1,0x0c,0x8b,0x4a,0xf4,0xe9,0x6e,0x7d,0x10,0xb2,0x99,0x8f,0xe0, + 0x8b,0x8e,0x23,0xbf,0xd8,0x8f,0xc2,0xce,0x08,0x5a,0xd6,0xd5,0xd8,0xb0,0x9c,0xbe,0x69,0x3f,0x3c,0x22, + 0xaa,0xa0,0xde,0x5f,0x2a,0x9e,0xb6,0x71,0x13,0xd5,0xde,0x01,0x74,0x44,0xb1,0x97,0xa9,0xfd,0xb8,0x24, + 0xae,0x4c,0x80,0xb7,0x92,0x0a,0x25,0xcd,0x2b,0x3f,0x1c,0xb0,0xe9,0xf6,0x8c,0xb9,0x9b,0xed,0xaf,0x88, + 0xae,0xbf,0x11,0x82,0x3d,0xca,0x23,0xcf,0xc0,0xa9,0xd8,0x23,0xa2,0x60,0x13,0x4f,0x9b,0xa9,0x30,0xd2, + 0x64,0x37,0x05,0xb0,0xa5,0x8e,0x83,0x1f,0x70,0x0d,0x04,0x6c,0x9d,0x29,0x63,0x1e,0xd0,0x7c,0x21,0xee, + 0xc3,0xd8,0x0a,0x9e,0xfd,0x0e,0xbb,0xeb,0x73,0x9b,0xca,0xb9,0x72,0xb0,0x6e,0xb2,0x41,0x9c,0xb9,0x37, + 0x99,0x17,0xfc,0x33,0x61,0x2e,0xbe,0x62,0x22,0x8c,0xbf,0x37,0xdf,0x62,0x4d,0xe9,0x9f,0x11,0xbc,0xf6, + 0x46,0x45,0xf9,0x02,0x74,0x01,0xb0,0x11,0xc7,0xee,0x89,0x47,0xb8,0x8f,0xbc,0x5b,0xda,0xd3,0x5c,0x48, + 0x06,0xef,0x31,0x9e,0xa1,0x14,0x21,0x9d,0x19,0x5a,0x61,0x04,0xc3,0x5c,0x5f,0x51,0x50,0x0d,0xe4,0x94, + 0x69,0xf5,0xc4,0x59,0xf8,0x7d,0xec,0xda,0x1e,0x90,0xfb,0xaa,0x82,0x3c,0xd4,0xcc,0xe4,0x81,0x4a,0xb5, + 0x7d,0xeb,0xfc,0xc7,0xb9,0xa8,0x09,0x3a,0x50,0x98,0xa0,0x01,0x26,0x5d,0x8b,0x2a,0xd7,0x17,0xd4,0xe8, + 0x51,0x65,0x60,0xd1,0x32,0xac,0x8f,0x0e,0x8a,0x4f,0x15,0xd4,0xf9,0x60,0x86,0x14,0x29,0x71,0x17,0x94, + 0x12,0xcb,0xec,0x32,0x4e,0x8b,0x00,0x76,0x4e,0x58,0xb4,0x41,0xaa,0x29,0x43,0x18,0x7e,0xde,0xf7,0xad, + 0x5a,0x4c,0xa1,0xa8,0x1f,0xba,0x1a,0x14,0xb5,0xf1,0x21,0xef,0x5d,0x84,0x15,0x03,0x81,0xd6,0xb8,0xda, + 0x4f,0x0d,0xc0,0xe9,0x89,0x05,0xe3,0x0c,0xcc,0xb0,0x68,0xb3,0x3a,0x7b,0x60,0x1a,0x51,0x51,0x92,0xd9, + 0x06,0x7c,0xc3,0x33,0x7c,0xf3,0x60,0xd6,0x2b,0xfb,0xc6,0xb4,0x2d,0xd8,0x39,0x64,0xa3,0x08,0x3f,0x87, + 0x57,0x35,0xd9,0x05,0x44,0x2c,0x56,0x02,0x26,0x48,0x8a,0xaf,0x92,0x3f,0x63,0x96,0xef,0xb0,0x16,0x37, + 0x5c,0xeb,0xb8,0xcf,0xb2,0xf0,0xfb,0x8c,0x28,0x07,0xfb,0x29,0x0a,0xe4,0xc2,0x93,0x0c,0x50,0xd1,0x94, + 0xdb,0x9a,0x4b,0x04,0x86,0x3b,0xe2,0x3d,0x46,0xd5,0x0c,0xef,0x83,0x30,0x18,0x85,0xa5,0xa7,0x4e,0xb1, + 0x8b,0x23,0x3d,0xe2,0x1f,0xc4,0xe3,0xb8,0x3b,0x23,0x75,0xe5,0x8e,0x60,0x8e,0xa0,0x94,0x44,0xa9,0x2f, + 0xa8,0xe7,0xe0,0xdf,0x09,0x82,0x7c,0x2d,0x53,0x97,0x2d,0xa8,0xc0,0x15,0x3d,0xc9,0xcc,0xf7,0xa6,0xc1, + 0xa7,0x31,0xf7,0x64,0x15,0x28,0x1d,0x09,0x42,0xf9,0x81,0x36,0xce,0x82,0xb8,0x7a,0xcd,0x7c,0x00,0xdd, + 0x54,0xd6,0xa0,0xc6,0x4b,0x0c,0xc1,0x12,0xf5,0xa8,0x2c,0xc9,0x10,0x34,0x90,0x12,0x7a,0x08,0x0d,0x73, + 0x43,0xeb,0xe3,0x01,0x9a,0x8e,0x0c,0x7e,0x12,0x4b,0x05,0x1a,0x9d,0xb6,0x4a,0x74,0x80,0x7f,0x1d,0x6d, + 0xa6,0x28,0xc6,0x5f,0xf8,0xa1,0xb1,0xc9,0x89,0x93,0xa4,0x20,0x25,0xf7,0xcd,0x30,0xb5,0xa5,0x82,0x2d, + 0xf9,0x84,0xcd,0xda,0x86,0xa3,0x40,0x1d,0x86,0x5a,0xa4,0x76,0x56,0x01,0xd0,0x7f,0x70,0xb4,0xe2,0x27, + 0x6a,0xf9,0x61,0xa4,0xa4,0x77,0x62,0xe7,0x88,0xa9,0x73,0x22,0xa4,0x27,0xcf,0x32,0x5a,0x67,0x7e,0x21, + 0xa8,0x02,0x8d,0x12,0xca,0x44,0x64,0x51,0x3b,0x53,0xf7,0x97,0x3d,0x8a,0x2a,0x57,0x5a,0x45,0xa3,0x10, + 0x5c,0x27,0xf1,0xe5,0x44,0x3d,0xc3,0x12,0x6e,0x4b,0xcf,0x0c,0xca,0xa3,0x35,0x84,0x34,0x36,0xb0,0x28, + 0x07,0x06,0x8d,0x75,0x34,0x55,0x61,0x45,0x91,0x89,0xbb,0x3f,0x93,0xf6,0x22,0x25,0xe2,0x3b,0x4c,0x15, + 0x07,0x46,0x09,0xc2,0x61,0xd4,0x96,0x88,0x8a,0x0b,0x78,0x37,0xd2,0x57,0xab,0x07,0xb5,0x64,0xf6,0xd3, + 0xce,0x3e,0x22,0x14,0x6e,0x01,0xef,0x65,0x7a,0x82,0x03,0x62,0xa6,0x5d,0x2c,0x80,0x96,0xb4,0x23,0xbf, + 0x6a,0xc3,0x2c,0x21,0x51,0x74,0x7e,0xd2,0xb2,0x5d,0xf9,0xa3,0x84,0xa9,0x3c,0x88,0x84,0x2d,0xdf,0x8e, + 0x7e,0x0a,0x26,0xbf,0x64,0xd8,0xeb,0xff,0x7b,0x1b,0x13,0xbb,0x5b,0xf6,0x84,0xe3,0x16,0xb8,0x29,0xd4, + 0xc2,0x15,0x42,0x26,0x44,0x99,0xba,0x49,0x15,0xb2,0xfc,0x96,0x2e,0x80,0xc0,0x18,0x5d,0x66,0x3a,0x40, + 0x6d,0xe3,0x11,0x85,0x32,0x1a,0x29,0xeb,0x7a,0x48,0x3f,0xb3,0xa7,0xa5,0x6b,0xa9,0x61,0xd4,0x8d,0x30, + 0x63,0x28,0x0c,0xb2,0x29,0xa5,0xf8,0xfe,0xc9,0xe5,0x5d,0xaa,0x7e,0x9b,0xb9,0xe5,0x20,0x0b,0x12,0x4f, + 0x7b,0x3d,0x5d,0xa3,0xb1,0x54,0x4b,0xd2,0xd9,0x6b,0x8f,0xfa,0x0e,0xab,0x47,0x28,0x7e,0x25,0xd7,0xcf, + 0xe7,0xa6,0x30,0xc4,0x6b,0x35,0x3b,0x65,0x38,0x88,0xb4,0x5f,0xa7,0x1a,0xa3,0xb3,0x32,0x09,0x23,0xb3, + 0xc1,0xa8,0x5d,0xdf,0x12,0xd1,0x44,0x78,0xa5,0x4c,0x3d,0x47,0x75,0x84,0x43,0x4e,0x17,0x77,0x15,0xb3, + 0x4d,0xa7,0xd0,0xc5,0x17,0xc1,0xfd,0x7d,0x34,0x14,0x4c,0x5e,0x84,0xbb,0x19,0x47,0x38,0xd7,0x92,0xfb, + 0xa2,0x17,0xe7,0x79,0x46,0x9c,0x41,0x42,0xe7,0xa6,0x4c,0xe6,0x45,0x98,0xf9,0x85,0xc2,0x3f,0xb7,0xd0, + 0xf1,0x48,0x66,0x71,0x50,0xfa,0xea,0xeb,0x38,0xfb,0x4e,0x2d,0x55,0x01,0xc1,0x07,0x35,0xd4,0x6a,0xe5, + 0x5a,0xd3,0x88,0x49,0xb0,0xa2,0x62,0xc3,0x4c,0xa4,0x32,0x2f,0xb8,0x7a,0x97,0xea,0x58,0x16,0x08,0xf5, + 0xa7,0x88,0x81,0x32,0x39,0xb2,0xd3,0xbc,0x2e,0xb1,0x26,0xbc,0x69,0x70,0x8a,0xa6,0xb5,0x17,0xe1,0x53, + 0x4f,0xb9,0xd7,0xe3,0xdd,0xf3,0x41,0x3e,0xd2,0xb5,0x4d,0xfb,0x6b,0x66,0xa8,0x23,0x24,0x23,0x92,0xa2, + 0x02,0xae,0x51,0x85,0x26,0xaa,0x67,0xba,0xa8,0x99,0x52,0xd7,0xc3,0xab,0x24,0x38,0x13,0xf4,0x35,0x82, + 0x8e,0x02,0xfa,0x0f,0x0b,0xba,0xdd,0xb4,0xf5,0xce,0xda,0x73,0x7f,0xcc,0xbc,0xde,0xe6,0x7a,0x11,0xe4, + 0x45,0xe1,0xce,0x0e,0x3c,0xd5,0x8f,0x53,0x17,0xef,0x4d,0x99,0xfd,0x9b,0xb8,0x89,0x28,0x6a,0xb5,0xbb, + 0x61,0x53,0x27,0x63,0x58,0x07,0x4c,0x63,0x94,0x4d,0x68,0x00,0x45,0x14,0xb6,0x18,0x4f,0xe9,0xe2,0x77, + 0xdb,0x55,0x01,0xd5,0xb1,0x51,0x15,0x77,0x03,0xc5,0xd1,0x9a,0x79,0x27,0x91,0x91,0x76,0x92,0xfe,0xd0, + 0x41,0x96,0x37,0x63,0x86,0xd6,0xa2,0x89,0xb3,0xcb,0x02,0x1d,0x71,0xda,0xa8,0xef,0xf6,0xf4,0x75,0x23, + 0xf2,0x50,0x56,0xb6,0xe4,0xed,0xae,0x02,0x0b,0xe6,0x9e,0xf3,0x37,0x21,0x4d,0x4d,0x54,0x04,0xa6,0x0e, + 0xa2,0x08,0x62,0x02,0xe3,0x6a,0x6b,0xc7,0xf2,0xcc,0x65,0x0f,0x25,0x67,0xba,0x51,0x2f,0x92,0xf0,0xa3, + 0x5c,0x7f,0xc3,0x2a,0x35,0x5b,0x94,0x35,0x8f,0x70,0x1d,0x2b,0xe9,0xe3,0x86,0x7a,0xa2,0x4f,0x6d,0xf6, + 0xa5,0xe1,0x2e,0xba,0xb2,0xcf,0x64,0x36,0xde,0xde,0x33,0x2c,0xb3,0xcc,0x5c,0x5d,0x9e,0x39,0xdc,0xe4, + 0xdd,0xb6,0x0a,0x8b,0x92,0xe8,0xa3,0x82,0xa1,0x0c,0x71,0xaa,0xf4,0xf9,0x08,0x52,0xeb,0xb0,0x68,0x7a, + 0x0d,0xa9,0xfa,0x73,0xad,0x82,0xb8,0x43,0x03,0x4d,0x1d,0x03,0xe8,0xa0,0x35,0x60,0xbe,0xaf,0xf7,0x2b, + 0xcc,0xd8,0x10,0xb4,0x71,0x44,0x2a,0x73,0xfc,0x48,0xc5,0xe1,0x86,0x93,0x0d,0x7e,0x06,0x15,0x7b,0x4a, + 0x86,0x7b,0x9a,0x13,0xfd,0x5a,0x7b,0x0d,0xf3,0x03,0x47,0xe2,0x83,0x59,0x61,0x5f,0xf9,0x61,0x1a,0xbc, + 0xc5,0x22,0x95,0xe8,0x8d,0x63,0x42,0x5c,0x2a,0x53,0x70,0xdb,0x40,0xfe,0xf4,0x54,0xd1,0xb0,0x74,0x5b, + 0x03,0xc8,0x4a,0x6d,0x88,0x86,0xf1,0xb7,0x17,0x5d,0x8d,0x07,0xf2,0x49,0xd4,0x60,0x10,0xf7,0x7e,0x5d, + 0xc4,0x2f,0x8e,0xbe,0x4e,0x51,0x7b,0xdd,0x08,0x30,0x4d,0xc3,0x5a,0x10,0x80,0x00,0x04,0x69,0x68,0x7d, + 0x8b,0x34,0x90,0x31,0xb7,0x8c,0x0c,0x8f,0xee,0x19,0x5b,0x27,0xa9,0x2f,0xc6,0x63,0xae,0x73,0xb2,0x5c, + 0xc4,0xfb,0x09,0xf5,0x33,0xec,0x38,0x5d,0xb8,0xd1,0xde,0xdb,0xab,0x15,0xe0,0x1b,0x7c,0x74,0x69,0x3b, + 0xd2,0x2e,0x1b,0x01,0xef,0x84,0xc3,0xda,0x5c,0xa8,0xaa,0x86,0x8d,0x88,0x96,0xca,0x59,0x12,0xce,0xed, + 0x55,0xed,0x4d,0xb5,0x11,0x45,0x0f,0x61,0xf4,0x4c,0xec,0x08,0xab,0xb1,0xc4,0x8e,0xfd,0x2d,0xa2,0x3d, + 0xf3,0xba,0x6f,0x68,0x3d,0x08,0x13,0x20,0xd8,0xab,0xb2,0x40,0xe5,0xa9,0xd3,0x0c,0x7d,0xbe,0x84,0xff, + 0xe8,0xb3,0xc0,0x32,0x07,0xcd,0x42,0x96,0x6c,0x73,0x4e,0x44,0x6c,0x5d,0x81,0x95,0x13,0x07,0x09,0x1b, + 0x15,0x06,0x1b,0xc7,0x3f,0xe6,0x18,0xf2,0x78,0x6e,0x41,0xb1,0xe0,0xbe,0xd5,0x20,0x0b,0xf6,0x3e,0x5a, + 0xdc,0x77,0xd1,0xe7,0x51,0x5b,0x9f,0x94,0xa8,0x5e,0x6d,0xf8,0xd3,0xbf,0x25,0x02,0x25,0xa2,0xfb,0x2d, + 0x17,0x4b,0x24,0x3a,0x6f,0x96,0xb7,0xcf,0xac,0xb2,0xd3,0xc6,0x8e,0xa8,0x4e,0x0d,0x0c,0xc4,0x35,0xdd, + 0x2c,0xa3,0x6f,0xc0,0x9e,0x9b,0x94,0x36,0xc3,0xca,0xb2,0x81,0xe4,0xbb,0x52,0x0b,0x03,0x68,0x95,0x11, + 0x84,0xb0,0x17,0x9d,0xf3,0x93,0x61,0x76,0x52,0x86,0xf7,0x59,0xa9,0x93,0x86,0x96,0xd2,0xb2,0x3c,0x3e, + 0x1a,0x1c,0x05,0x87,0xc1,0x51,0x90,0x0e,0xb8,0xdc,0x55,0x02,0xf7,0xbf,0xf7,0xbd,0xe0,0x70,0x38,0xc8, + 0x58,0x9a,0xc3,0x3c,0x54,0x60,0x6d,0x64,0x64,0x6d,0x39,0x33,0x9d,0x1c,0xbf,0xbb,0xc9,0x7f,0xd6,0x7c, + 0xb8,0x17,0xb6,0xf0,0xc8,0xda,0x77,0x73,0xa9,0x0b,0xb9,0x44,0xfc,0xc9,0xa3,0x0d,0x98,0x48,0x34,0x2d, + 0x9e,0x49,0x6c,0x1d,0x7e,0x34,0x54,0xa1,0x47,0x32,0xed,0x66,0x22,0x34,0x01,0x32,0xd4,0x7b,0x02,0x3a, + 0x63,0xca,0x25,0xf3,0x46,0x84,0x5e,0x66,0x61,0xe4,0x4f,0x05,0x82,0xe1,0x74,0x91,0x5d,0x89,0x66,0x20, + 0x55,0x06,0x4c,0xb5,0x14,0x4c,0xbc,0xf8,0x9c,0x12,0x70,0x0a,0x7f,0x2a,0x3a,0xde,0x37,0xf0,0x96,0xd7, + 0xe3,0x0d,0x30,0xf1,0xb7,0x60,0x6f,0xd9,0xf0,0xd8,0xac,0x7c,0xbb,0x99,0x22,0xb3,0xca,0x57,0x2f,0x8f, + 0xdf,0x8f,0xfa,0x0b,0x8e,0xed,0xc0,0xee,0x80,0x10,0x90,0xd9,0x78,0xa2,0xf7,0xb3,0xde,0x99,0x40,0x08, + 0x3c,0xa0,0xf4,0x76,0x71,0xb2,0x7b,0x92,0x50,0xf9,0x65,0xee,0xc0,0x90,0x37,0x17,0x9f,0xb0,0xd8,0xc3, + 0xca,0x4e,0x5c,0xb1,0x46,0xbc,0xc3,0xf0,0x22,0x29,0x1e,0x7c,0x12,0x22,0xb9,0x33,0x5d,0x08,0x02,0x3f, + 0x5a,0x2e,0x45,0xed,0xa4,0x5e,0xe5,0x53,0x87,0x4a,0x97,0xf9,0x8d,0x5a,0xbe,0x66,0xe4,0x23,0x22,0x72, + 0xea,0x49,0xd2,0x36,0xd1,0x7b,0x85,0x81,0x4a,0xad,0x8d,0x10,0x9a,0x07,0x73,0x08,0x02,0x84,0x75,0x34, + 0xb8,0xcf,0x0e,0x1e,0x0c,0x56,0x28,0xe7,0x60,0xca,0xd2,0xd8,0x6a,0x55,0x54,0x2c,0xaa,0x68,0x44,0xd8, + 0x7c,0x28,0x8d,0x62,0x56,0x4b,0xa8,0x68,0xca,0x51,0xd5,0xf7,0xcc,0xf4,0x3d,0xda,0xe8,0xdb,0xea,0x39, + 0x25,0xa0,0xd6,0x4e,0xdc,0xd6,0xac,0xde,0x54,0x69,0xba,0x11,0x17,0x4c,0xfc,0x83,0x32,0xf2,0x48,0x8d, + 0x57,0x31,0x70,0xdf,0x95,0xe2,0x43,0x15,0x16,0xc2,0xa2,0xfd,0x8d,0xeb,0x39,0x03,0x29,0x83,0x1d,0x22, + 0x19,0x78,0x1f,0x21,0x9a,0x76,0x9d,0x34,0x2b,0xe9,0x0e,0x4a,0x8a,0xb2,0xa3,0x2e,0x88,0x4e,0xa2,0xfc, + 0xf3,0x00,0x4a,0x29,0xcd,0xfc,0x76,0xa0,0x55,0xcc,0xbe,0xa1,0xeb,0x95,0xea,0x15,0x70,0xe3,0x77,0x54, + 0xa7,0x52,0xc3,0x0e,0x09,0x51,0xd6,0xc0,0x4e,0x8c,0x59,0x68,0x77,0x64,0x66,0x8b,0x70,0x03,0xb1,0x11, + 0x3c,0xce,0xbc,0x41,0x14,0x66,0x81,0x38,0x03,0x85,0x16,0x7b,0x8f,0x03,0x2f,0x16,0x40,0x25,0x0c,0x88, + 0x44,0xea,0x66,0x3d,0x3a,0x9e,0x74,0xaf,0xdf,0x22,0x2b,0x88,0x7c,0x85,0xd4,0x60,0x2e,0x3a,0x2d,0x60, + 0x5a,0xe4,0x4f,0xc2,0x85,0xd4,0x1b,0xd3,0x87,0xaa,0x37,0xa7,0x4f,0x14,0x60,0xbf,0x55,0xab,0xd5,0x78, + 0xb5,0x9a,0x83,0x14,0x9b,0xc8,0xf8,0xf8,0xc1,0xc5,0x9f,0xfa,0x37,0x90,0x2b,0xaa,0x45,0x2c,0x7b,0x67, + 0xcb,0x52,0x49,0x3f,0x75,0x14,0x3b,0x77,0x1a,0xde,0xc8,0x82,0x7a,0xbd,0x52,0xc5,0x1c,0x99,0xfa,0x27, + 0x13,0xe3,0x51,0xd2,0x5d,0x86,0x73,0xff,0x0a,0x37,0x8b,0x7b,0x11,0xc2,0x47,0xd2,0x95,0xf0,0x55,0x17, + 0x9e,0xbf,0xa4,0x19,0xd5,0xc1,0x78,0xc9,0xee,0xdf,0x97,0x5e,0x55,0x6c,0xe9,0x41,0x49,0x01,0x04,0x94, + 0x3e,0x89,0x37,0xb5,0x73,0xa8,0x88,0x3b,0xd7,0xd1,0x81,0x73,0x3b,0xff,0x85,0x89,0xfe,0x17,0x76,0x63, + 0xb9,0x5f,0x76,0xaa,0x20,0xd6,0x4a,0x6a,0xad,0xf6,0xaf,0x58,0xcc,0x41,0x4e,0x74,0xc4,0x76,0x46,0x6c, + 0xc9,0x6a,0x81,0x36,0xf8,0x40,0x57,0x37,0xa6,0xb0,0x63,0xf8,0x52,0x67,0xc2,0xa1,0xfd,0x71,0x8c,0x1a, + 0x21,0xa8,0x54,0xa8,0x2a,0x32,0xa5,0xda,0x17,0xcd,0x3a,0x00,0x38,0x94,0xf8,0x3a,0xdf,0x1c,0x05,0xf2, + 0xf7,0x81,0xfc,0x7d,0xf8,0x95,0xfc,0x7d,0xf0,0x50,0xfd,0xfd,0x46,0xa5,0x7f,0x1d,0x98,0xc0,0x60,0x52, + 0xe1,0x4b,0x55,0x40,0x55,0x78,0xf8,0x65,0xa0,0xf5,0x83,0xc7,0xd0,0x55,0x97,0x52,0x0f,0xee,0xab,0xe6, + 0xe5,0xcf,0xd1,0xa1,0xfa,0xab,0x7a,0x3b,0xfa,0x4a,0x25,0x7c,0xf5,0xe5,0xfd,0xbf,0xab,0x32,0x5f,0xdf, + 0xd7,0x95,0xe8,0xeb,0x81,0x6e,0xf4,0xba,0x70,0xcc,0x03,0xdc,0xe3,0xf0,0x9b,0xbf,0x13,0xab,0xf1,0x28, + 0x3c,0xba,0x7f,0x7f,0xb5,0xa2,0x9f,0x5f,0x7d,0xc9,0x3f,0xbf,0x39,0x1c,0xa8,0xce,0x03,0x4a,0x7c,0xf8, + 0x0d,0x27,0x7e,0xf9,0xf7,0x81,0x23,0x96,0x0c,0x4e,0xe0,0xf0,0xc3,0x4b,0x4b,0xa0,0x10,0xe5,0x2b,0x2f, + 0xd4,0x02,0x40,0x1d,0xdc,0xde,0x39,0x74,0x76,0xac,0xd0,0xc2,0x87,0x90,0x77,0x25,0xc5,0xeb,0xe8,0xb5, + 0x84,0x4c,0x83,0xc4,0xda,0xff,0x4e,0xbd,0x27,0x7a,0x03,0xc2,0xb1,0xc4,0x4c,0xc2,0xec,0xc4,0x5e,0x71, + 0x4f,0x49,0x54,0x4c,0x52,0x69,0xe4,0x9b,0xd4,0xdc,0x83,0x87,0x3b,0xac,0x4c,0xf6,0xe0,0x1b,0xfc,0x1d, + 0xe0,0x7d,0x54,0xa9,0xf0,0xf8,0x70,0x2d,0xee,0x7c,0xe1,0x74,0x13,0xe5,0x15,0xd7,0x5f,0x6a,0x94,0x56, + 0xb1,0x4d,0xda,0xff,0x05,0x41,0xb1,0x73,0x22,0x74,0x59,0x47,0xb9,0xaa,0x73,0xfc,0xe9,0x66,0xf9,0x8b, + 0xa8,0x78,0x73,0x9d,0xea,0x48,0x77,0x74,0x82,0xda,0x28,0xc8,0x17,0x69,0x39,0xb3,0xa2,0x75,0xe1,0x67, + 0xef,0x39,0x42,0xcb,0x24,0x57,0x31,0x51,0xf7,0x57,0x51,0x09,0xe5,0x85,0x4f,0xac,0x28,0x6e,0xf4,0x54, + 0xb5,0xb3,0xf0,0x56,0x1c,0x59,0x3c,0x6b,0x44,0x89,0xac,0xf9,0x15,0xb2,0x39,0xb4,0xb8,0x87,0x03,0x15, + 0xca,0x1f,0x7e,0xb2,0x3b,0x3b,0xc3,0xe7,0xe0,0x76,0x1d,0xe8,0x90,0x40,0x7c,0xc2,0x6f,0x4d,0x61,0x83, + 0xf5,0x68,0x44,0xaf,0x54,0xba,0x54,0xf2,0xf4,0xad,0x85,0x48,0x87,0x7d,0x9d,0xda,0xea,0x78,0xa6,0xa4, + 0x1b,0xbe,0xf4,0x2d,0x62,0x25,0x66,0xb5,0x7f,0xfb,0x4e,0x29,0x5b,0x42,0x20,0x4a,0x4c,0x51,0x34,0xca, + 0xce,0x7b,0x5f,0x32,0x1e,0x78,0x15,0x17,0x45,0x34,0xc5,0x55,0x5c,0xca,0x15,0xa6,0x6e,0x11,0xea,0x46, + 0xbc,0x3e,0x9d,0x59,0x73,0xf4,0xab,0x94,0xdf,0x50,0x2a,0x56,0x5e,0xb9,0x64,0xa8,0xd7,0x48,0xc2,0x5d, + 0x00,0x9d,0x62,0xd7,0xb3,0x0a,0xb3,0x52,0xc2,0x28,0x4f,0xce,0x63,0x64,0x3d,0x83,0x51,0x0e,0x0b,0x29, + 0x98,0xab,0x92,0x62,0xba,0x84,0x78,0x62,0x5b,0x57,0x01,0x31,0xd4,0x12,0x8a,0x64,0x9a,0x77,0x20,0xcf, + 0xb2,0x52,0x47,0x99,0xc7,0xb7,0xe0,0xb5,0xcd,0x94,0xda,0x5a,0xf3,0x4b,0x25,0x8f,0x05,0x05,0xc2,0x66, + 0x59,0xb5,0x53,0x58,0xb4,0x2b,0x8e,0xea,0xbb,0x51,0xa2,0xca,0x32,0x65,0x89,0xfe,0x3a,0x27,0xae,0x44, + 0x16,0xb2,0xa5,0x42,0x2d,0x5f,0xd7,0x2a,0x88,0xcb,0x4b,0x45,0xa3,0x74,0xc6,0xa6,0x07,0xbf,0x41,0x90, + 0xb6,0x51,0xb9,0xb5,0x18,0x7b,0xd5,0xad,0x43,0x4b,0x7e,0x27,0xb4,0xe4,0xa0,0x07,0x37,0xa1,0xc5,0x80, + 0x02,0xef,0x7f,0x11,0xe6,0xed,0x1b,0x8f,0x77,0xef,0x57,0x7a,0x13,0xfe,0xdb,0xf6,0xdf,0xb7,0x6e,0x10, + 0xb5,0x6c,0x37,0x29,0x3f,0xcd,0x99,0x1f,0x4c,0xf5,0x8a,0x03,0x3f,0x5e,0xdf,0xda,0x80,0x76,0xab,0x01, + 0xc9,0xea,0xbb,0xda,0xac,0xae,0xf3,0x6f,0xc0,0xd0,0xc0,0xb5,0x16,0x66,0x03,0x82,0xfe,0x8d,0xe9,0x82, + 0xd1,0x96,0x07,0x0e,0x3c,0x8c,0xaa,0x68,0x08,0x6a,0x44,0xf5,0xdf,0x4d,0x98,0xae,0x1d,0x51,0xbb,0xe0, + 0xbf,0x35,0x1c,0xed,0xb7,0xed,0x79,0x33,0xa6,0xac,0x76,0xdc,0x26,0x43,0x73,0x37,0x2a,0xd7,0x46,0xd4, + 0x5b,0xa4,0x1f,0xeb,0x59,0x8b,0x32,0x9b,0x6d,0xb4,0x40,0x59,0xad,0x59,0x95,0xe6,0x36,0x5a,0xb0,0xb2, + 0x74,0x0b,0x35,0xc0,0x68,0x07,0x97,0x66,0x2b,0xb5,0x4c,0x7b,0x24,0x12,0xe3,0x6d,0xbd,0xf6,0xaf,0xb5, + 0x8b,0x55,0xa4,0x56,0x6e,0x17,0xa3,0x19,0xec,0xb3,0xc5,0x11,0x22,0xab,0xa4,0xdd,0xda,0x6e,0x67,0xd5, + 0x0b,0x7e,0x20,0x2e,0x0e,0xd7,0x1c,0x3e,0xbc,0x5e,0x42,0x93,0x61,0x78,0xf2,0xd3,0x84,0xa8,0x5d,0x60, + 0xed,0xf3,0x0b,0x76,0xa1,0x12,0x4f,0x98,0xee,0x33,0x9e,0x5f,0xd7,0x1b,0x9e,0x17,0x6b,0xd4,0x3c,0x0f, + 0x0b,0xc2,0x06,0x89,0x75,0x81,0x90,0xaf,0x95,0x0d,0x19,0xf2,0x2d,0xc0,0x91,0xe0,0x17,0x6e,0x26,0x82, + 0xf9,0x3b,0x7d,0xbc,0xaa,0x18,0x6e,0xa1,0xfc,0x31,0xb1,0x72,0x89,0x84,0x37,0x6e,0x36,0xb3,0xbe,0x08, + 0xd0,0x73,0x21,0xa5,0x11,0x7a,0x43,0x91,0xd2,0x33,0x88,0x9c,0x17,0xc8,0xe0,0xb9,0xb1,0x99,0xe7,0xa4, + 0xc1,0xa1,0x2d,0xbc,0xc1,0x42,0x47,0xe8,0x3d,0x0c,0xec,0x3b,0x6e,0xe1,0x99,0x74,0xd6,0xa9,0x6e,0xb0, + 0x49,0xb6,0xff,0x3c,0x1c,0xa3,0x2a,0xda,0x78,0xa5,0xfd,0x63,0x45,0x20,0xe7,0x21,0x68,0x7e,0xa7,0x0a, + 0x52,0xbe,0xb7,0xe7,0xf0,0x43,0xe0,0x7a,0x5d,0x05,0x4a,0xd8,0xdb,0xcb,0x4c,0xcf,0xc4,0x87,0x8e,0xa9, + 0x75,0xd7,0x79,0x31,0xe9,0xc8,0x2c,0x3a,0x58,0xed,0x4e,0x52,0x74,0xe0,0x1b,0xa6,0x43,0x77,0x40,0x87, + 0xd7,0xba,0xa3,0x62,0xdd,0x17,0x1d,0x18,0x34,0x74,0x2e,0xa2,0x65,0x2c,0x15,0xa4,0x3c,0x15,0xee,0xe1, + 0x8d,0x76,0x73,0xee,0x9b,0x38,0x1d,0xd2,0x95,0x19,0xf1,0x7c,0xf0,0xf2,0xd9,0x5c,0x91,0xb6,0x1b,0x60, + 0x06,0x4f,0x65,0x0b,0xd6,0x9d,0x24,0xce,0xbc,0xbd,0x3d,0x11,0x65,0x8c,0x07,0x0e,0x8c,0xa2,0x9a,0xcb, + 0x12,0x50,0x6a,0xd9,0x9f,0x41,0x92,0x05,0xd9,0xa4,0x72,0xd1,0xef,0x27,0x7e,0xd4,0x4b,0x5c,0x09,0x14, + 0x81,0xa3,0x71,0x1c,0x6e,0x20,0x8a,0x11,0xf5,0x44,0x97,0x4b,0xcb,0x5b,0xc7,0xba,0x7f,0x6c,0xd1,0x7e, + 0x09,0xac,0x01,0xe7,0x19,0x84,0xdb,0xb6,0x9c,0xbd,0x72,0x90,0x6d,0xb5,0x06,0x57,0x70,0x9a,0x2f,0x85, + 0x8a,0xdc,0x47,0xd5,0xed,0xfc,0x1c,0x2e,0x92,0x2c,0x9d,0x3b,0x2d,0x3c,0x8e,0x4f,0xd2,0x6e,0x97,0xe5, + 0x2f,0xce,0xad,0x23,0x5a,0x8f,0x39,0xde,0x08,0xac,0x07,0x79,0x56,0x29,0x71,0x94,0x0a,0x57,0x8e,0x47, + 0x0b,0xb4,0x25,0xc2,0x1b,0xfa,0x10,0xab,0x09,0xd5,0x8e,0xb3,0x66,0xbd,0x93,0xbe,0x97,0x75,0x89,0xee, + 0x36,0xc9,0x22,0x86,0xb8,0x14,0x32,0x3c,0xf3,0x06,0x0e,0x3b,0x07,0x0d,0x3e,0x54,0x09,0x40,0x26,0x63, + 0x22,0xff,0x17,0xe2,0x44,0xce,0xe9,0xeb,0x21,0x48,0xb7,0x99,0xb8,0xaf,0x8e,0xd6,0xa2,0xf7,0xee,0xfc, + 0x0f,0x1e,0xeb,0x80,0xc6,0x0c,0xe2,0x9f,0x76,0x04,0x94,0x3e,0x75,0xe9,0x05,0xf8,0x57,0xb3,0x21,0x77, + 0xce,0xa4,0x84,0x34,0xdd,0x6f,0xac,0x6a,0x98,0xd7,0xe4,0xce,0x66,0xf1,0x69,0x25,0x25,0x52,0x74,0x53, + 0x9c,0xa2,0xa7,0xc3,0x11,0xe5,0x36,0x67,0x82,0xb5,0xd5,0x3f,0xa0,0x47,0x6d,0xde,0x9e,0x78,0xe9,0xfa, + 0x49,0x73,0x53,0x22,0x9a,0x50,0x32,0xd4,0x5c,0x60,0xa4,0xde,0x94,0xc1,0x6e,0xc9,0xf8,0x83,0x5c,0xc5, + 0x3d,0x55,0x1a,0x73,0xa2,0x92,0xca,0xcc,0x9c,0x1a,0x88,0x2a,0x90,0x9e,0x30,0xa5,0x43,0x34,0xbe,0x2e, + 0xeb,0x1f,0x1d,0x7a,0xc3,0x5a,0x05,0x3d,0x5a,0xf9,0x2b,0x6a,0xde,0xa6,0xba,0xaa,0x45,0xf4,0x70,0xd2, + 0xed,0x9a,0x45,0x5d,0x73,0x6c,0x3a,0x79,0xb1,0xba,0x0c,0x0f,0xfe,0x70,0x4f,0xc7,0x5e,0xf7,0xc0,0xff, + 0xc0,0x9f,0xd7,0xf8,0x7c,0x46,0xcb,0xf4,0x24,0x3c,0xf2,0xdf,0x85,0xf7,0xfd,0xdd,0xf0,0x81,0xff,0x86, + 0x7e,0x7f,0x1b,0x3e,0xf4,0xdf,0x86,0x5f,0xfa,0xef,0xc3,0xaf,0xfc,0xe7,0xe1,0xdf,0xfd,0x17,0xe1,0xd7, + 0xfe,0x4b,0x3c,0xb3,0xbd,0x3c,0x79,0x33,0x0c,0x6f,0xaf,0x8b,0x80,0xfe,0xfa,0xcc,0x1b,0x06,0x27,0x0f, + 0xfc,0x67,0x43,0xdf,0x39,0x71,0x82,0x93,0x6f,0x87,0x3e,0x5d,0xf2,0xc1,0xc9,0xf3,0xe1,0xda,0x7f,0x79, + 0x72,0xa4,0x4a,0x1e,0x51,0x6e,0x8f,0x72,0xef,0xb7,0x96,0xba,0xaf,0x4a,0xdd,0xaf,0xb7,0x77,0xa8,0xfe, + 0x0a,0xab,0x29,0x3f,0x50,0xfc,0x01,0x15,0xbf,0xab,0x9c,0xcf,0xbd,0xfa,0x4f,0x74,0xbf,0xfc,0xc5,0x3d, + 0xe3,0x4b,0xfa,0xa6,0x2f,0x34,0xf7,0x2d,0x35,0xe7,0xdc,0xa3,0xac,0xb7,0xa8,0x77,0xcf,0xb9,0x17,0x9c, + 0xbc,0xaf,0xa6,0xe3,0xbf,0xa3,0xaf,0xa1,0x83,0xc6,0x76,0xa5,0xe2,0x0b,0xb6,0xd2,0x43,0x96,0x0c,0xe7, + 0xad,0xae,0x8f,0x84,0x5a,0x89,0xb7,0xaa,0xc4,0x7b,0x2a,0xc1,0xed,0x6e,0x94,0x40,0x47,0xb2,0x31,0xdf, + 0xb1,0x25,0x33,0x91,0x6a,0xf9,0x22,0x5e,0xb1,0x85,0xe6,0x6a,0x7f,0x70,0x72,0x3a,0xee,0x0d,0xbb,0xab, + 0x7b,0xec,0xba,0xea,0xde,0xca,0x61,0x6f,0x56,0x8e,0x47,0xe5,0x76,0x0f,0xfc,0xd7,0x5b,0xd0,0x56,0x3b, + 0xd6,0x7a,0x6d,0x61,0x2d,0x86,0xb2,0xb7,0x74,0xa9,0xd5,0x50,0x90,0xe5,0xed,0x58,0x1a,0xb2,0x10,0x56, + 0x09,0xdd,0x8a,0xcd,0xd2,0x3a,0x16,0xa6,0x08,0xb7,0x70,0xe0,0x66,0xe1,0xfe,0x11,0x5d,0x8d,0x6f,0x38, + 0x48,0xdd,0x05,0xc0,0x05,0x67,0xe6,0xe2,0xe4,0xc9,0xb0,0x66,0xae,0xa1,0xef,0xa9,0x94,0xd5,0x70,0x04, + 0x7a,0xe1,0x59,0x50,0x32,0x60,0x81,0x7f,0xf2,0xac,0xa5,0x06,0x74,0x99,0x06,0x69,0x98,0x07,0x69,0x97, + 0x08,0x7f,0x2a,0xf4,0xae,0x56,0x08,0x95,0x88,0x32,0x9a,0x10,0xec,0x53,0xde,0x6e,0x2d,0x0f,0xa2,0xae, + 0xc7,0x87,0xde,0x64,0x7f,0x9f,0x86,0xf7,0xad,0x2f,0x45,0xcd,0xc3,0x22,0x46,0xbb,0x83,0x77,0x0c,0x37, + 0x0d,0xe7,0xec,0xe9,0xce,0x48,0x42,0x31,0x76,0xa8,0x4d,0xf6,0x95,0x8c,0x7b,0xc1,0x9e,0xdd,0x67,0xdd, + 0x2e,0xdc,0x1e,0xb2,0x9e,0x0f,0x5c,0x25,0xce,0xf0,0xfc,0xb0,0xd3,0xe0,0xbd,0x39,0xa3,0x7b,0xc4,0xd8, + 0x7a,0x41,0x8d,0xbf,0xa5,0x5b,0xf9,0x1e,0x6b,0x14,0xae,0x56,0xf8,0xfd,0x7e,0x6f,0x8f,0xc0,0x02,0xbf, + 0x35,0x8a,0x41,0xb3,0x84,0xad,0xa9,0xe1,0x6e,0xa9,0xc6,0x88,0x70,0xc8,0xae,0xa7,0xec,0xb2,0xc6,0x50, + 0xe3,0x05,0x9d,0x53,0x84,0x2f,0x4f,0x16,0x43,0x8f,0xf0,0xce,0x6a,0x55,0xb0,0xc2,0xe6,0x6a,0xf5,0x02, + 0xe2,0xe4,0x17,0x5a,0xa3,0x87,0xfb,0x84,0xa3,0x7a,0xdf,0x8d,0xc2,0x8b,0x93,0x8c,0xce,0xe0,0x50,0xe4, + 0x2b,0x66,0x2d,0xe9,0x3b,0xa3,0x43,0xe7,0x0d,0xca,0x20,0x97,0xe9,0x13,0xff,0xe3,0xd5,0x1a,0x08,0xc3, + 0xe7,0x7a,0x6c,0x23,0x51,0x53,0x33,0x04,0xa9,0x86,0x91,0x10,0xfe,0x82,0x41,0x76,0xad,0x7d,0x1b,0xc8, + 0xa6,0x71,0x09,0x10,0x63,0xd9,0x6d,0xe3,0x6e,0x84,0x58,0xbc,0xac,0x1c,0xaa,0x56,0x2f,0x2a,0xb9,0xf6, + 0x86,0x6d,0x20,0x14,0x3e,0x66,0xf1,0x76,0x4a,0x97,0x53,0x53,0x02,0xbe,0xb7,0x77,0x68,0x09,0xbb,0x6b, + 0x6d,0x55,0x8a,0x2c,0xda,0x3f,0x36,0x02,0x61,0x2b,0x97,0xd9,0x59,0x5f,0x3b,0xca,0x8e,0x4e,0xe0,0x2a, + 0xdb,0x7a,0xcc,0x80,0x9e,0x98,0x77,0x2b,0xde,0xa3,0x94,0xe1,0x40,0x14,0x8e,0xfc,0xa2,0x42,0xa6,0x91, + 0x9c,0xd6,0x57,0x5b,0x4e,0x4e,0xbf,0xe2,0xff,0xc0,0xb9,0x43,0xb3,0xd5,0xb8,0xf0,0x15,0xe2,0x71,0xb5, + 0x72,0xe2,0x74,0xff,0x97,0x77,0x0e,0x8b,0xc6,0xea,0xbc,0x76,0x95,0x87,0x47,0x25,0xcd,0xe2,0x32,0x79, + 0xa9,0x62,0x8e,0x5b,0xf2,0x22,0x49,0x87,0x5d,0x64,0x6a,0x89,0x83,0x38,0xb5,0xaf,0x5c,0x4f,0x5f,0xc9, + 0x6b,0x9d,0xfc,0xaa,0x44,0x04,0x71,0x25,0x13,0x58,0xad,0xc0,0x28,0x1f,0xab,0x22,0x57,0x49,0x01,0x07, + 0x1f,0xe8,0x5b,0xbe,0x44,0x0a,0xaa,0xbd,0x41,0x43,0x00,0x11,0xb3,0x1c,0xa2,0x96,0x0e,0xae,0x36,0xb4, + 0xf8,0x5e,0x61,0x79,0x77,0x76,0xe4,0x4b,0xf7,0xae,0x26,0xca,0xba,0x4c,0x56,0x61,0x3b,0x5d,0x2a,0xd9, + 0x29,0xba,0x87,0x56,0xd9,0x83,0x41,0x22,0x71,0xbb,0xd4,0x81,0x48,0xdc,0x9d,0x2d,0x59,0xaa,0xdd,0xfa, + 0x82,0xe2,0x19,0x1d,0x84,0xbd,0xe4,0xd9,0x8b,0x5a,0xcf,0x01,0x37,0xc0,0xf2,0x85,0xd7,0x55,0x33,0x51, + 0xe5,0x04,0x80,0x90,0xa0,0x24,0xf3,0x93,0x41,0x03,0xf2,0x15,0x56,0x71,0x77,0xa0,0x89,0x98,0xae,0x56, + 0xb9,0x5b,0x4a,0x83,0xb5,0xe3,0x22,0xb1,0xaf,0xb5,0xa9,0xf9,0x19,0x7c,0xbd,0xfe,0xfa,0xca,0xd5,0x8f, + 0x97,0xa9,0x5f,0x87,0x9a,0x00,0x5e,0x17,0x05,0x54,0x88,0xec,0x6a,0x00,0x49,0x10,0xf9,0x35,0xf0,0x08, + 0xa0,0xbb,0xe2,0xff,0x1c,0xde,0x2e,0xaf,0x82,0xdb,0x75,0x55,0x91,0xbe,0x9b,0x35,0x29,0xa9,0x5e,0xf5, + 0xb6,0xe2,0xf0,0xd6,0xcd,0x31,0xa0,0x2d,0x81,0x19,0xce,0xd4,0xcb,0x86,0x1f,0xad,0x3b,0x40,0x19,0x6b, + 0x7d,0xb9,0xbc,0xb2,0x5d,0x05,0xcb,0x64,0x5b,0x8e,0xd7,0x85,0xf6,0xdd,0x2c,0xed,0xf5,0x1b,0xbf,0x21, + 0x7d,0xa9,0xc0,0x9e,0x76,0x87,0x68,0x48,0x6c,0x0c,0x94,0x5a,0xfd,0x66,0xd9,0x72,0xed,0xdb,0x9d,0xb6, + 0xb2,0xfb,0x9b,0x1e,0x0e,0xea,0x1b,0x5d,0xa9,0x8b,0xd9,0x4d,0x6d,0x91,0x1d,0xd4,0x1a,0xdb,0xa9,0xb3, + 0x30,0xcc,0xed,0xd9,0xb1,0x46,0x52,0xcb,0xfa,0xb2,0x64,0xf4,0x97,0x3e,0xde,0x3f,0xf2,0xe4,0x99,0x79, + 0x04,0x99,0x27,0x94,0x1b,0xdd,0x96,0x31,0xf9,0xcd,0xe1,0xd4,0x64,0x5b,0x4d,0x83,0x49,0x91,0xfd,0xd5, + 0x5c,0x78,0xd3,0xe2,0xf5,0x76,0xb9,0x92,0xeb,0xec,0xa2,0xe9,0x5a,0x2c,0x09,0xdb,0xf0,0xa0,0xb1,0x18, + 0xb6,0x1d,0xc2,0x45,0xab,0x2f,0xe3,0x66,0x15,0x62,0x04,0xd9,0x69,0x79,0x33,0x71,0x23,0x42,0xc5,0xda, + 0xbf,0x1d,0xc7,0xf1,0x5c,0x94,0x8a,0x37,0x67,0xa7,0xc4,0x98,0xf5,0xab,0x7e,0xa7,0x42,0x4d,0x74,0xd0, + 0x2a,0xfc,0xb5,0x71,0xe3,0xc4,0x3a,0xe8,0xc8,0x55,0x7d,0x1d,0x58,0x40,0x66,0x2d,0x86,0x00,0xbe,0xb5, + 0x1a,0xec,0xaf,0x63,0x97,0xd8,0x5f,0x18,0x97,0xe8,0x5c,0xf6,0xa3,0xdf,0x18,0xbf,0x7f,0x9b,0x5c,0x11, + 0xa9,0x9e,0x40,0x36,0x2f,0x53,0xf8,0x19,0x0d,0xd3,0x79,0xb7,0xc7,0xdc,0xd8,0x04,0x14,0xd2,0x67,0x73, + 0x4b,0xd1,0x48,0x01,0x00,0xe5,0x2a,0x61,0x78,0xc1,0x1e,0xbb,0x7f,0x6e,0xde,0x13,0x77,0xd7,0xaf,0x3f, + 0x44,0xe8,0x66,0x6a,0x87,0xff,0xee,0x46,0xec,0x47,0x09,0xdd,0x84,0xac,0xcb,0x1d,0x73,0xd5,0x2f,0x7b, + 0x55,0xf9,0x22,0x2e,0x5b,0x4e,0x1f,0x76,0x03,0xeb,0xad,0x7f,0x55,0xcb,0x1e,0x73,0x67,0x75,0x8c,0x74, + 0x57,0xa7,0xf5,0xd2,0x2d,0xf5,0x3f,0x75,0x10,0xf5,0x6a,0x7a,0x30,0x0a,0x19,0x7e,0x74,0x14,0xaa,0x8c, + 0x5d,0xbc,0xbd,0x53,0x73,0x2f,0xf3,0x30,0x35,0x6e,0xfd,0x68,0xdb,0xa6,0x54,0xbd,0x4a,0x7b,0xfb,0x16, + 0x69,0x80,0xe2,0xad,0x08,0xfb,0xa3,0xbd,0xb5,0xd6,0xd8,0xde,0x54,0xfb,0x28,0xda,0x6f,0xf9,0xb8,0x7e, + 0xe4,0x6d,0x70,0xff,0xd8,0xf6,0xea,0xc3,0xb3,0x59,0xbb,0x01,0xec,0x1f,0x6b,0xa4,0x71,0x90,0x36,0xdb, + 0xaa,0xc1,0xfc,0xc7,0x5a,0xaa,0x9d,0xa5,0x46,0x3b,0xd0,0x14,0x53,0xbe,0x9a,0x6a,0xba,0x9a,0x08,0x69, + 0x65,0x5a,0xca,0x21,0xaa,0x10,0xa8,0x53,0xd0,0xa0,0x84,0xfe,0x1a,0x72,0xe4,0x29,0x9e,0xc9,0xb2,0x13, + 0xd6,0xc2,0x1d,0xc2,0xe4,0x22,0x48,0x1b,0x9d,0x25,0xc5,0x77,0x36,0x25,0xd6,0xe2,0xe8,0x26,0x46,0x78, + 0x45,0xd7,0x42,0x99,0xaa,0xa3,0x1a,0x09,0xd7,0x6c,0xb5,0x5d,0x0c,0x56,0x6a,0xde,0x50,0xe1,0xe4,0x0d, + 0xec,0x0b,0x7d,0x88,0x8a,0xa8,0xaa,0xd3,0x40,0xa5,0x0a,0x93,0x5b,0x27,0xfb,0x67,0x86,0x69,0x98,0x31, + 0x5f,0xc0,0x31,0x74,0x59,0xeb,0x94,0x30,0x72,0xad,0x7d,0x4b,0xcd,0x54,0x3f,0xa6,0xc2,0x28,0x84,0x38, + 0xa6,0x5a,0xb9,0xb5,0x66,0x01,0x37,0x14,0xbe,0x66,0xb5,0xe6,0x46,0xe1,0xcc,0x18,0x03,0x55,0x66,0xcd, + 0xff,0x11,0x38,0x1e,0xfb,0x1c,0x41,0xd3,0x22,0x89,0x4f,0xd2,0x4b,0x9e,0xfa,0x48,0x4d,0x1d,0x16,0x9c, + 0x3a,0x9c,0x0a,0x07,0x10,0x18,0x71,0x72,0x30,0x6a,0xac,0x21,0x2a,0x36,0xf7,0xdf,0x8e,0xfd,0x1c,0xa6, + 0x3e,0x34,0x96,0xc5,0xfb,0xc0,0x81,0xfb,0x1f,0xc1,0xc9,0xe9,0xf5,0xe9,0xfe,0xd9,0xaa,0x37,0xec,0x7a, + 0x07,0xd3,0x4a,0x53,0x7c,0x04,0x55,0x88,0x02,0x3c,0x6a,0xd1,0x78,0x9a,0xe6,0x30,0xcb,0x62,0x21,0x55, + 0x9c,0x8c,0x10,0x9b,0x67,0xa6,0xcc,0xae,0xdd,0xfb,0x55,0xf8,0x2d,0x6b,0x2f,0x79,0x14,0x0b,0x1a,0x85, + 0x93,0x47,0xd7,0x4a,0x80,0xa7,0x56,0x89,0x88,0xce,0x2a,0x51,0x28,0xf1,0x40,0x79,0x5d,0x90,0x56,0x6a, + 0x70,0x06,0x6f,0x03,0xd6,0xb5,0xcc,0x60,0xc5,0xce,0x8b,0x3a,0xdf,0x42,0x19,0x1d,0xe2,0x36,0x31,0xc1, + 0x8e,0xc7,0x1d,0x56,0x4f,0x57,0x5e,0x09,0xc7,0x61,0x55,0xa1,0x3f,0x09,0xc7,0x2a,0xc4,0x09,0x8f,0x6d, + 0xdc,0xb8,0xfa,0x10,0x3e,0x5c,0xc4,0xf3,0xe3,0xe6,0x13,0xe6,0x42,0x2d,0x24,0x31,0x73,0xae,0x9e,0xa6, + 0x75,0xea,0xdc,0x98,0x3d,0xcc,0xe6,0x88,0xc3,0x6e,0x6c,0x95,0x67,0xfe,0xc4,0x0b,0xa2,0x8a,0xed,0xab, + 0x6f,0x96,0xd6,0x30,0x6f,0xf5,0x04,0xd9,0x40,0xaa,0xbd,0xfa,0x8a,0x9a,0xa0,0x29,0x95,0xf6,0x4f,0x58, + 0x0e,0x72,0x65,0x17,0x86,0xc0,0xe6,0x8d,0xbe,0xcc,0x94,0x37,0xb0,0x83,0x3e,0x5c,0xc2,0xcd,0x6e,0x6e, + 0x5f,0xe9,0xc3,0xf2,0xd3,0x94,0x33,0xd2,0x67,0x02,0x84,0x41,0xee,0xb6,0xd5,0x48,0x7d,0xc8,0x66,0x4d, + 0x0d,0x15,0x19,0x7e,0xb4,0x01,0xac,0x1b,0x98,0xca,0x8a,0xfb,0xa4,0xbc,0x09,0x35,0x55,0x08,0xf7,0x1f, + 0xf6,0xa3,0xfd,0xfd,0xce,0xe3,0xc3,0xbe,0x07,0xb5,0x3e,0x4b,0xb7,0x34,0xea,0x3e,0x64,0x1e,0x7c,0xc7, + 0xe8,0xda,0x88,0xb4,0x1a,0x22,0xa5,0x44,0x21,0x36,0xe5,0xa9,0x00,0x7e,0x2c,0xc2,0x91,0x61,0xa5,0x09, + 0x3a,0xd5,0x24,0x2a,0xb8,0x48,0x7d,0xc5,0x98,0x36,0xdf,0xb1,0x01,0xc7,0x6a,0xc9,0xe1,0xc1,0x99,0x15, + 0x40,0xb7,0x43,0xec,0xe2,0xf3,0x21,0x56,0x29,0xb8,0x14,0x16,0xd0,0x56,0x4a,0x52,0x05,0xa1,0x65,0xa3, + 0x24,0x95,0x59,0xa6,0xef,0x1b,0xd0,0x38,0xf3,0x19,0x62,0x1b,0xb4,0x6e,0x1d,0x57,0x37,0x9e,0x0b,0x36, + 0xd6,0xfa,0x08,0x4a,0xbc,0xbc,0xd6,0x65,0x43,0x8f,0x17,0xe2,0x28,0x35,0xd0,0x5c,0x45,0x4f,0x39,0xd3, + 0x63,0xcc,0xf9,0xea,0xc0,0x80,0xd4,0x49,0x6a,0xa1,0x30,0xd9,0x4e,0xda,0x4c,0xa4,0xd4,0x21,0x21,0x9a, + 0x17,0x42,0x0b,0x26,0xd3,0xfa,0xa3,0x9b,0x1b,0x56,0x6e,0xdf,0x30,0xe0,0x18,0x1d,0x2f,0xbd,0x6d,0x9b, + 0xb2,0xbf,0xba,0x4d,0x36,0x9d,0x9f,0x28,0xbb,0x95,0xed,0x7b,0x42,0x27,0x89,0x8e,0x44,0x73,0x4f,0x9a, + 0xb3,0xac,0x1e,0x19,0x07,0x9b,0xd7,0x49,0xc9,0x76,0xb4,0xd6,0xea,0x9a,0x67,0x5a,0xae,0xbc,0x6d,0xa9, + 0x21,0x09,0x08,0x1c,0xa7,0x79,0xfe,0x46,0xad,0x0b,0x6c,0xac,0x85,0xc4,0xe0,0x76,0x03,0x2c,0xbe,0xec, + 0x17,0x0a,0x2c,0xa2,0x93,0xc2,0x06,0x8b,0xa2,0xfb,0xa5,0x91,0xf5,0xd2,0xe0,0x8d,0x80,0x26,0x61,0xed, + 0x69,0xd8,0xae,0xb8,0x0a,0x5f,0x58,0xe0,0x32,0x12,0x4a,0x83,0xfa,0x36,0xf0,0x10,0x79,0x08,0x8f,0x83, + 0x01,0xcb,0xfd,0xde,0x80,0xe1,0xfa,0xa8,0x6d,0x65,0x64,0x1a,0x6f,0xbe,0x39,0xde,0xfb,0xfd,0x5c,0x8d, + 0x97,0xdd,0x15,0x54,0xe3,0xcd,0xbb,0xf7,0x0d,0x18,0x27,0x66,0x5c,0x23,0x35,0xb0,0xe4,0x53,0xe1,0xd8, + 0x2f,0xcd,0xc8,0x75,0x5c,0x98,0xa4,0xb9,0xd2,0x4d,0xb4,0x6b,0x19,0x37,0x8b,0x65,0xd9,0xc6,0xa8,0x1f, + 0xf4,0x33,0x35,0x6a,0xb6,0x16,0xaa,0x46,0x9d,0x75,0x1f,0xe8,0xa7,0xb5,0x06,0x5e,0xcb,0xbd,0x0a,0xa7, + 0xd5,0x01,0x94,0xa5,0x48,0x78,0xda,0x19,0x6e,0x30,0xf7,0x8d,0xa1,0x35,0xa8,0x4e,0xb9,0xbe,0xef,0x58, + 0x84,0xb2,0xd1,0x24,0xe5,0xd6,0xf4,0xab,0x5a,0x08,0x44,0xc3,0xf3,0x59,0x54,0x36,0xa1,0x36,0xc8,0x1d, + 0x1b,0x8d,0x15,0xdb,0x1b,0x63,0x8f,0xba,0x2d,0xad,0x34,0x25,0x33,0x9b,0x1a,0x5f,0x9f,0xd2,0xc8,0x45, + 0x6f,0x51,0x26,0xb3,0x9e,0x78,0x38,0xdc,0x3a,0xda,0xb6,0xc9,0xd7,0x99,0x83,0x3b,0x66,0xdf,0x60,0x0f, + 0xb6,0x2e,0xc2,0xd6,0x46,0x6b,0x13,0xd8,0x6c,0xad,0x75,0x31,0xfe,0x72,0x63,0x5b,0x16,0xa5,0x7d,0x12, + 0x1b,0x6b,0x23,0x1a,0x26,0xc9,0x9f,0xa6,0xff,0x16,0x62,0xc4,0x44,0xca,0x85,0x7f,0x6b,0x02,0x58,0x20, + 0x6d,0xa2,0xd0,0x0b,0x0f,0x72,0x4e,0x18,0x88,0xf2,0xe3,0x01,0xe7,0x85,0xe9,0x10,0xae,0xbd,0xec,0xac, + 0x0d,0xde,0x20,0x44,0x3a,0x6c,0x06,0xba,0xce,0xd9,0x19,0xc2,0x1a,0xe8,0xbb,0x7e,0x53,0x6c,0x7b,0x32, + 0x33,0xd8,0x6b,0xb1,0x5a,0xb9,0x1f,0x2d,0xc8,0xc2,0xc1,0x16,0xfd,0x4b,0x37,0xf2,0x61,0xc7,0xbf,0x50, + 0xdc,0xf2,0x86,0x64,0xef,0x6c,0xbc,0x81,0x08,0x98,0xef,0x30,0x03,0xdf,0xd2,0xac,0xa8,0x34,0x4a,0x8b, + 0x7d,0x9b,0x40,0x6c,0xae,0x68,0x75,0x0d,0x34,0x2e,0xc2,0xed,0x72,0x1a,0x3f,0xdd,0x7e,0x33,0xe6,0xff, + 0x2b,0x6e,0x46,0x71,0x35,0x58,0x9a,0x9b,0x31,0x87,0x49,0x7e,0x7d,0x5d,0xc6,0xad,0x84,0xc9,0x36,0x8c, + 0x7e,0xb4,0x1d,0xa3,0x1f,0x0d,0xb5,0x05,0x85,0x85,0xb4,0xb2,0x0d,0x4b,0xa3,0xca,0x59,0x45,0xd3,0x2c, + 0x08,0xa6,0xd5,0x03,0xd8,0xa7,0x1c,0x0e,0xf1,0xb4,0x0f,0xdb,0x20,0x0e,0x31,0x02,0x6f,0x0e,0xca,0x88, + 0x03,0xf6,0x36,0xd5,0x6f,0x44,0x0f,0xa5,0x1f,0x1c,0x1b,0xd5,0x95,0x8a,0x1c,0x16,0x55,0x2c,0x90,0xd2, + 0x8f,0x58,0x20,0xa5,0x62,0x81,0x24,0x75,0x3c,0xbf,0x25,0xff,0x68,0xa8,0x7a,0x63,0xc3,0x23,0x05,0x8f, + 0x88,0x3f,0xcf,0xf1,0x45,0x1b,0x68,0xc7,0x96,0x23,0xdc,0x81,0x74,0x6a,0x92,0x84,0xad,0x28,0x67,0x4b, + 0x83,0x35,0x1c,0xd1,0x6c,0xa9,0x15,0xdd,0xfc,0xa5,0x86,0xb6,0xa0,0x9a,0xb6,0xa1,0x6f,0x47,0x34,0xd2, + 0xf3,0xff,0x8f,0x68,0xa6,0xf9,0x02,0xb4,0x05,0xc9,0xb4,0x14,0xab,0x50,0x8c,0xbd,0x7c,0x77,0x22,0x98, + 0xf4,0x13,0x11,0x4c,0xad,0xd1,0x3b,0xd1,0x8b,0x94,0xbe,0x1b,0xb9,0x34,0xe4,0xb7,0xff,0xdb,0x51,0x4b, + 0x7a,0x37,0x6a,0x49,0xff,0x2f,0x6a,0xf9,0x54,0xd4,0x92,0x1a,0xd4,0xa2,0xb4,0x3f,0xc4,0x90,0x40,0x89, + 0x7e,0x12,0x22,0xf6,0xac,0x85,0xf5,0x7f,0xf6,0x68,0x9d,0xa3,0x65,0x94,0xcc,0xa2,0xf3,0x64,0x96,0x20, + 0x3f,0xbc,0xad,0xdf,0x96,0xc1,0x4d,0xed,0xf5,0x2f,0x38,0xc7,0xd6,0xb0,0x16,0xef,0x6c,0x66,0xc7,0xd6, + 0xd5,0x3a,0x78,0x7d,0xf7,0x02,0x1e,0x57,0x96,0x74,0x02,0x28,0x63,0x6f,0x4f,0x81,0xdd,0x85,0x4e,0xd1, + 0x36,0x92,0x3d,0xc7,0xe3,0x79,0xc5,0xba,0x31,0x89,0xa1,0xd4,0x36,0xea,0x1b,0xaa,0x5d,0x8d,0xd9,0xd9, + 0x15,0xcd,0xd5,0x5b,0x82,0xd5,0x60,0x9b,0xa8,0x15,0x45,0xe0,0x78,0x26,0x0d,0x2f,0xb6,0x34,0x99,0xd6, + 0x9a,0x2c,0x37,0xdb,0xdb,0x7c,0x19,0xb3,0xdf,0x7c,0xfe,0x57,0x00,0x61,0xac,0x34,0x56,0x55,0xf3,0x49, + 0xc5,0x51,0x11,0xe3,0x42,0x7c,0xa8,0x06,0xd0,0xa4,0x49,0xad,0xc7,0x36,0xb7,0xb2,0x5e,0x57,0xb6,0x13, + 0x1f,0x9f,0xe3,0xe8,0xf3,0x26,0xb9,0xc1,0xe2,0x24,0x6d,0x8c,0x59,0x62,0x58,0x9c,0xc4,0x9e,0x66,0x02, + 0xc6,0x4c,0x39,0xfd,0xa8,0x4f,0x33,0xb3,0x18,0xb4,0x0c,0xf3,0x34,0x16,0x6d,0xd9,0xc6,0x3c,0xfd,0xd4, + 0xcc,0x34,0xff,0x9c,0x99,0xc6,0x9f,0x3f,0x53,0xe5,0xc6,0xb0,0x3e,0xd6,0x9c,0xd9,0xa7,0xd2,0x37,0x1a, + 0xbf,0xf9,0x06,0xf7,0xf8,0xe9,0xa3,0x1a,0xff,0xf7,0xc2,0x98,0xe1,0x8a,0x63,0x6d,0xa7,0x37,0xb6,0xa0, + 0xab,0x85,0xdf,0xfd,0xd4,0x79,0xb4,0x9c,0xbd,0xff,0xde,0x79,0xa4,0x77,0xcf,0x03,0xa6,0xd3,0x1f,0x92, + 0xd4,0x3d,0xc3,0xa7,0xb1,0x05,0x74,0x1d,0x9c,0x73,0x8e,0xb8,0x30,0x52,0xf1,0xd7,0xd9,0xd9,0xd7,0x45, + 0x15,0x16,0xcc,0xbd,0x16,0xbf,0x87,0xd7,0xfa,0x12,0x35,0x2a,0x03,0x62,0x38,0xf5,0x0a,0xc4,0xd0,0xbb, + 0x32,0xa7,0xaa,0x53,0xc2,0x96,0xfd,0x5c,0x6c,0xa8,0xf2,0x9e,0x8a,0xfa,0x0d,0xec,0xa8,0x30,0x5d,0xe8, + 0xfc,0xbd,0xf7,0xa0,0xf7,0xd0,0xf1,0xdb,0xcc,0xb9,0x24,0x22,0xf3,0xde,0x9e,0x8a,0xcc,0xfc,0x2b,0x22, + 0xca,0x54,0xdf,0xbd,0x45,0x11,0xbb,0xaf,0x08,0x39,0x2b,0xb5,0x21,0x63,0xe5,0x72,0x1b,0xa7,0xc1,0x2d, + 0x07,0xc1,0x0c,0x9c,0x77,0x65,0x94,0xe4,0x85,0xe3,0x17,0x37,0x45,0x19,0x5f,0xbd,0x78,0x4e,0x29,0xfc, + 0xd5,0x79,0xf1,0xdc,0xf1,0x27,0x49,0x7e,0x75,0x1d,0xe5,0xf1,0xaf,0x32,0x96,0xc0,0xf9,0x4e,0x25,0x74, + 0xd4,0xe8,0x82,0x0e,0x42,0x5a,0xce,0x6f,0x24,0x0e,0x86,0xf3,0x4c,0x7f,0x76,0xfe,0xe7,0xff,0xd3,0xb9, + 0x7f,0x78,0xf4,0xf7,0xce,0xab,0x28,0xbf,0xec,0x2c,0xa3,0xb4,0xf3,0x73,0x9c,0x16,0xd7,0xd9,0x62,0x1c, + 0x23,0xce,0x65,0x04,0x27,0x59,0x81,0xf3,0x76,0x16,0xc3,0x8a,0x90,0x63,0x13,0x74,0x54,0x6a,0x47,0x16, + 0x4a,0x85,0x66,0xef,0xf5,0x7a,0x8e,0x9f,0xc7,0xe7,0x74,0xc5,0xbf,0x8d,0x53,0xa9,0x75,0x7c,0x11,0x77, + 0x64,0xb4,0x34,0xff,0xd9,0xac,0x73,0x1e,0x77,0xa4,0x44,0x3c,0xf6,0x3b,0x73,0x69,0x32,0x8f,0x27,0x79, + 0x5c,0x5c,0x30,0x1e,0xef,0xcc,0x69,0xd2,0x9d,0x68,0x42,0xe4,0x14,0x0d,0x7d,0x4c,0x73,0xe5,0x8d,0x7f, + 0xca,0x31,0x39,0x02,0xe7,0x09,0x7e,0xd4,0xd2,0xde,0x45,0x4b,0xee,0x48,0xfe,0xf2,0x10,0xae,0x93,0x49, + 0x42,0x2b,0x55,0x2e,0x8a,0xe0,0x36,0x1a,0xc1,0x01,0xe5,0x3c,0x4b,0xd2,0xd2,0xac,0xe2,0x93,0xb7,0x58, + 0x89,0x71,0x52,0x44,0xe7,0x74,0x05,0x05,0xce,0x73,0xf5,0x45,0x24,0x08,0xfb,0xc0,0xc8,0x52,0x44,0xa7, + 0x33,0xc5,0x7f,0x4b,0xbe,0x4b,0xb6,0x54,0xf0,0x13,0xc4,0x21,0x71,0x5e,0x8c,0xf1,0xfa,0x9b,0x66,0xef, + 0xde,0xf1,0x96,0xd0,0xbf,0x1d,0x18,0x9e,0x4e,0x32,0x82,0x02,0xda,0xac,0x51,0x94,0x22,0xbe,0x04,0x6c, + 0x36,0xa8,0xf2,0x3b,0xfa,0xd9,0x19,0xe9,0xdf,0xd8,0x91,0x34,0x25,0x58,0xfd,0x8e,0x6e,0x64,0x64,0xcb, + 0xdf,0x4e,0x99,0x75,0x54,0x86,0x29,0x41,0xe3,0x7a,0x99,0x15,0xbc,0x71,0xfa,0x37,0xed,0x43,0x51,0xf2, + 0xc8,0x54,0x19,0x35,0x3a,0xf3,0x0b,0xa1,0x3b,0x0a,0xb5,0x14,0x65,0x74,0x7e,0x6c,0xc0,0x88,0x52,0x1c, + 0x5f,0x4d,0xf0,0x99,0xc4,0x7f,0xe9,0x14,0x2a,0x99,0x6e,0xe6,0x77,0x65,0x3c,0x2f,0x8e,0xf3,0x05,0x0a, + 0xc7,0x65,0x07,0xef,0x04,0x08,0x2f,0x7f,0x43,0x73,0xca,0xd9,0x40,0xa0,0x40,0x81,0xaa,0xe8,0x77,0xd0, + 0x5a,0x6d,0x96,0x85,0x7b,0xb5,0x65,0x32,0x5e,0x20,0xc6,0x04,0xad,0x2d,0x11,0x33,0x88,0x2d,0x51,0x1b, + 0xc9,0xb1,0x4a,0xc3,0x58,0xae,0x62,0x9d,0x48,0x9f,0x92,0xf0,0x02,0xef,0x13,0x29,0x21,0x1e,0x0d,0x7d, + 0xb4,0xac,0xb0,0x7b,0x89,0xca,0x0e,0xb2,0x3b,0xba,0xc9,0x8e,0xb2,0x45,0xe9,0x44,0x29,0xf7,0x8f,0x3a, + 0x9d,0x6a,0xd9,0x7a,0xd2,0xda,0xeb,0x8c,0x23,0x12,0x3b,0xaf,0xb3,0x46,0x6d,0x75,0x54,0x3b,0x37,0x71, + 0x29,0x25,0xbf,0x4d,0xd5,0x4e,0xcb,0x47,0xbd,0xb8,0x1a,0x2b,0x84,0xd8,0xec,0xff,0x0a,0xc3,0xc5,0x4c, + 0xf4,0x6f,0x29,0x9d,0xa4,0x9d,0x2b,0x02,0xf8,0xa4,0x88,0x69,0x1c,0x63,0x55,0xe9,0xc9,0x98,0xda,0xa4, + 0x7f,0xe4,0xd7,0x73,0x09,0x0f,0xe4,0xc8,0x5f,0xdd,0x2c,0x77,0xd2,0x18,0x80,0xaa,0xf0,0x5d,0xf2,0x21, + 0x1e,0x4b,0x77,0xfc,0xc9,0x3d,0x49,0xd6,0xbb,0x45,0x9a,0x27,0xbc,0x05,0xf2,0x61,0x52,0x0b,0xac,0x9e, + 0xfc,0xd5,0x8b,0x7c,0xa5,0xd6,0x58,0xc6,0x98,0x2e,0xca,0x58,0x0d,0xef,0x15,0x8d,0x34,0xba,0x09,0x1c, + 0xf9,0xab,0x8a,0x2f,0xe2,0x82,0x13,0xd5,0x87,0xa4,0xfe,0x16,0x8f,0x53,0x95,0x6e,0x3e,0x55,0xf9,0x8b, + 0x45,0xae,0x2a,0xa8,0x2f,0x35,0xf6,0x3c,0xe1,0x54,0xf9,0xab,0x86,0x47,0xf0,0x96,0x73,0xaa,0xfe,0x32, + 0xc3,0x96,0xd4,0x85,0x8c,0xe3,0x2a,0x93,0x75,0x66,0xe8,0x78,0xc5,0x3f,0x74,0xa2,0xb5,0xa7,0x92,0xb0, + 0x65,0x57,0x25,0xb3,0xb9,0xaf,0x8d,0x2a,0x8d,0x62,0xcf,0x17,0x20,0xbf,0x8f,0xab,0x5d,0xa1,0xbd,0xc3, + 0xa5,0x42,0x17,0x41,0x07,0xa1,0x82,0x3a,0xc9,0xa4,0x13,0xd5,0x60,0x03,0x36,0x34,0xd1,0x2c,0x8f,0xa3, + 0xf1,0x4d,0x27,0x12,0x5b,0x74,0x3d,0xf8,0xcf,0x05,0x17,0x5d,0x6d,0x0b,0x38,0x48,0x76,0x05,0x4f,0xf2, + 0xbb,0x09,0x51,0x92,0xfa,0x36,0x21,0xcc,0xf9,0xfd,0xdb,0x17,0x6f,0x3a,0x73,0xea,0xc6,0x95,0x81,0x75, + 0x2e,0x08,0xf5,0x7b,0xa6,0xa2,0xdc,0x97,0x40,0xb1,0xef,0xae,0xe3,0x78,0x4e,0x07,0x29,0xb9,0x8a,0xec, + 0x85,0x36,0x25,0x5e,0x5b,0xdf,0xd1,0x0c,0x2b,0x9f,0xc6,0xd4,0xa8,0xc6,0x09,0x1d,0x9c,0x4d,0x20,0xfd, + 0xe8,0x4a,0xce,0xcd,0x66,0x1f,0xc7,0xd9,0xfc,0x39,0x22,0x64,0x39,0xf4,0xd1,0x41,0xac,0xac,0x8d,0x12, + 0x4f,0x33,0x42,0xed,0x57,0xbf,0xcc,0x03,0x47,0xbe,0x3a,0x8b,0xb9,0xb3,0xb6,0xf0,0xa0,0x8d,0x42,0x2a, + 0x6c,0x58,0x21,0xb4,0x0a,0x41,0xf2,0x5b,0x5f,0x5c,0xf2,0xe6,0xda,0x77,0x81,0x86,0x00,0x49,0xeb,0x70, + 0x62,0xad,0xc4,0x0f,0x5c,0xea,0xc9,0x6c,0x96,0x5d,0x17,0x82,0xf5,0x94,0x83,0x01,0x0b,0xaf,0x74,0x26, + 0x39,0x8d,0xed,0x26,0x5b,0xe4,0x04,0x6c,0xcb,0x64,0x14,0x03,0x6d,0xf3,0x2d,0x26,0x17,0xb5,0x72,0x6b, + 0xc4,0xd5,0x6b,0x37,0x65,0x67,0xbe,0xc8,0xe7,0x59,0x11,0x17,0xbd,0x0e,0x2e,0x48,0x55,0xba,0x5e,0x04, + 0xa0,0x24,0x6c,0x1a,0xb5,0x40,0xbf,0x2f,0xca,0x72,0x1e,0x1c,0x1c,0x1c,0x7d,0x73,0xbf,0x77,0xf4,0xd5, + 0xd7,0xbd,0xa3,0xde,0xc3,0x83,0xce,0xf5,0x05,0x41,0x21,0xf5,0xdf,0xc1,0x2d,0x6f,0x90,0x3e,0x46,0x91, + 0x94,0xd4,0x34,0xb3,0x18,0x65,0x27,0x9b,0x10,0x9c,0x16,0x9d,0x22,0x83,0xef,0x98,0xa2,0xa3,0xee,0x38, + 0x0c,0x2e,0x46,0x2f,0xba,0x5b,0xdc,0xc8,0x94,0x4d,0x15,0x28,0x91,0x1d,0x27,0xc4,0x23,0xa4,0x02,0x36, + 0xa3,0xf4,0x86,0x6e,0xfe,0x9b,0x5e,0xe7,0x9f,0xd4,0x19,0x2e,0xb0,0x68,0x46,0x3f,0x8b,0x8e,0xe1,0xbf, + 0x3a,0x42,0x2b,0x75,0x20,0x28,0xc0,0x68,0xcf,0x6f,0x3a,0x50,0x92,0x04,0x8d,0x00,0x68,0xb0,0x97,0xb9, + 0xa3,0x02,0x6c,0x2d,0xd2,0x32,0x99,0x71,0xee,0xcb,0x6f,0x9f,0x77,0x66,0xa0,0x44,0x0a,0xda,0x68,0x42, + 0xd6,0xf6,0x2d,0xac,0x37,0xca,0x1e,0x75,0xad,0x84,0x6c,0x94,0xda,0xf2,0xb6,0xd5,0xa7,0xd5,0xe0,0x2d, + 0x22,0x40,0xeb,0xe0,0x2e,0xef,0xe4,0xec,0xf6,0xab,0xd7,0x51,0x77,0x0a,0x87,0x75,0xe3,0x71,0xe0,0xe6, + 0x26,0xaa,0x24,0x2a,0x88,0xf8,0xc9,0xc7,0x34,0xe9,0x31,0x11,0xb5,0x39,0xe5,0x34,0xb7,0xef,0x3c,0x26, + 0xb0,0xc0,0x40,0x8b,0x64,0x2c,0x17,0xbe,0xe3,0xeb,0x6a,0x74,0x57,0xa9,0x2f,0xba,0x98,0x2f,0x46,0x04, + 0xc3,0xbf,0x50,0x27,0xcf,0x7f,0x78,0xf6,0x56,0x7e,0x2b,0xc0,0x5a,0x10,0x58,0xc3,0xdf,0x16,0x2e,0x47, + 0x5a,0xf6,0x22,0x99,0xa6,0x05,0xae,0xaf,0x17,0x6f,0x3b,0x2a,0x04,0x7c,0x3b,0x30,0xc9,0x16,0x10,0x71, + 0x7e,0x4e,0xcb,0x82,0x4d,0xa1,0x05,0xa5,0x82,0x97,0x38,0xb4,0xb2,0x11,0x58,0xd9,0x19,0xea,0x03,0x30, + 0x60,0xca,0x44,0x60,0x42,0x87,0x92,0x7e,0xdd,0x23,0x28,0x19,0x67,0x20,0x93,0x88,0x72,0x99,0xab,0x6e, + 0x88,0x7c,0x31,0x5d,0xd2,0x8c,0x16,0xe7,0x74,0x77,0x5e,0x45,0xc5,0x25,0xd0,0x2f,0xbe,0x3b,0xf8,0xe1, + 0xf8,0x53,0xc2,0x7a,0xd7,0x40,0xca,0xdf,0xcb,0x87,0xe3,0x5f,0x10,0xed,0x21,0x76,0xa5,0x3f,0xa8,0xaf, + 0x2a,0xed,0x6d,0xe5,0xbb,0x18,0xd8,0x48,0x4c,0x49,0xa9,0xa5,0x91,0xe9,0x69,0xad,0x88,0xd8,0x1a,0x5d, + 0xc2,0x29,0x44,0x49,0x95,0x73,0x8b,0x14,0xe8,0x40,0x95,0xf3,0x22,0xcf,0x52,0xa2,0xba,0x78,0xf5,0xdd, + 0xd7,0xc7,0x6f,0x09,0xab,0x10,0x32,0x2b,0x54,0xb1,0x1f,0x88,0x54,0x64,0x4a,0x97,0xd2,0x32,0x84,0xc9, + 0xbc,0x8a,0xe6,0x3a,0xef,0xfb,0x2c,0x9b,0x12,0x14,0xbc,0xa2,0x94,0xce,0x93,0xb7,0x2f,0x2a,0x3a,0x59, + 0xe5,0x1b,0x2a,0x59,0xb8,0x03,0xee,0xfd,0x1d,0xdc,0xcd,0xd2,0xc8,0xa9,0xa3,0x0e,0xbb,0x9e,0xcd,0x39, + 0x99,0xc9,0x91,0x25,0x90,0xde,0xcf,0x8a,0x64,0x4d,0x54,0x4a,0xc7,0xad,0xee,0x52,0x8f,0xcb,0xbe,0x8c, + 0x68,0x97,0xe9,0x9f,0xa4,0x64,0x32,0x1a,0x29,0x20,0x53,0x5f,0x66,0xe9,0xd4,0x4a,0x22,0x16,0x53,0xb0, + 0xee,0xf7,0xb4,0xd0,0x33,0x55,0xba,0x73,0x40,0x74,0x9d,0x2a,0x26,0x28,0x66,0xa6,0xca,0xd5,0x2a,0xbd, + 0x8b,0xa3,0x7c,0x74,0x01,0xa2,0x0b,0x7f,0x79,0x3d,0xe8,0x20,0x11,0x71,0x4b,0xb7,0x14,0x9f,0xb6,0xb7, + 0x7c,0xda,0x84,0xaa,0xe3,0x33,0xc6,0xe8,0xbf,0xfb,0xa0,0xf7,0x60,0xe9,0xe9,0xe2,0xef,0x8e,0x9f,0x08, + 0x3d,0x88,0x85,0x7d,0x05,0x8c,0xf0,0x91,0xf2,0x4f,0xde,0x6a,0x3a,0x5c,0x1d,0xca,0x5a,0x47,0xea,0x58, + 0xdb,0x77,0x0c,0x9d,0x12,0xa9,0xf9,0xf6,0xb7,0x57,0xcf,0x73,0x4a,0xc9,0xdf,0x3d,0xa7,0xfe,0xde,0x3e, + 0x7b,0xf2,0xcd,0x57,0x5f,0x7f,0xd9,0xa1,0xd4,0xce,0x98,0x93,0x3b,0x94,0x2e,0x35,0xa1,0x13,0xdc,0xac, + 0xf3,0xec,0x65,0x7b,0x9d,0x67,0x2f,0xa5,0xce,0x08,0xce,0x47,0x51,0xe9,0xfa,0xea,0x89,0x06,0xea,0x96, + 0xf2,0x2f,0xfe,0xe7,0xff,0xfb,0xac,0x82,0x74,0x2a,0xfc,0x1d,0xc8,0xc6,0x38,0x1d,0xdd,0xb4,0x16,0x9f, + 0xe8,0x5c,0x01,0x27,0x82,0x9d,0x9f,0xe2,0x9b,0x0d,0x78,0xa2,0x93,0x57,0x2b,0x70,0xc1,0xc7,0xfb,0xe7, + 0x58,0x3c,0xf1,0x8d,0x81,0x3e,0x27,0x9d,0x45,0xc1,0x88,0xd0,0xa6,0x22,0x7b,0x1d,0x42,0x0b,0x63,0xbe, + 0x1a,0x66,0x59,0x76,0x89,0xfc,0xc5,0x9c,0xb1,0x90,0x0a,0xc7,0xc8,0xc5,0xff,0xa4,0xcb,0xb5,0x47,0x58, + 0x8b,0x6e,0x57,0xc2,0x28,0x97,0x1d,0xc4,0x87,0x23,0x00,0x07,0xa2,0x50,0x7d,0xfb,0x58,0xf7,0x8e,0x1a, + 0xd4,0x15,0xb3,0x73,0x10,0xc8,0x96,0x04,0xdb,0x82,0xf6,0x78,0x16,0x05,0x5d,0x07,0x3f,0x13,0xfb,0x5a, + 0x00,0xd5,0xc9,0x6d,0x46,0xd3,0x8b,0x75,0x23,0xb8,0xb4,0xd5,0xfd,0xa2,0x9d,0xd8,0xd1,0x85,0x46,0x48, + 0x6e,0x8e,0x91,0x4e,0xb9,0x71,0x30,0xcc,0x07,0x8c,0x13,0x23,0x4d,0x04,0x25,0xe5,0x3d,0xc2,0xd8,0x85, + 0x5c,0x70,0x18,0xba,0x5e,0x94,0x1e,0xe2,0x57,0x42,0xfc,0x1b,0xdc,0x82,0x53,0x34,0x1c,0xe9,0x33,0xf8, + 0x37,0xe4,0xbb,0x05,0xc9,0x74,0x7a,0x44,0x7e,0x0d,0xd8,0x8b,0xce,0x31,0xaf,0xd2,0xb0,0x8b,0xc2,0x79, + 0x56,0x37,0xf9,0x46,0x65,0xeb,0x1a,0x26,0xda,0xb6,0x84,0x23,0x67,0xa9,0x23,0x58,0x64,0xa3,0xbc,0xe2, + 0x42,0xeb,0x65,0x2d,0xe2,0xae,0xd8,0xa8,0x51,0xa3,0xec,0xea,0xf5,0x5e,0xd9,0xd4,0xd9,0x66,0xcd,0x3a, + 0x5d,0x69,0xd5,0x65,0xc6,0xb5,0x7d,0x52,0x05,0xcc,0xab,0x5b,0x27,0xc5,0x95,0x36,0x67,0xc5,0x15,0x36, + 0x66,0x25,0x58,0x0c,0xf7,0x9c,0x62,0x81,0xad,0x1a,0x79,0x4c,0x23,0xa2,0x7d,0x95,0x6b,0x50,0xb3,0x7b, + 0x8b,0x39,0xc6,0xac,0xd1,0x20,0x9d,0x6d,0x6c,0x5c,0x87,0x43,0x0b,0x76,0x24,0x0f,0xc0,0xa9,0xb1,0xa6, + 0xee,0x81,0xd9,0x3e,0xbb,0x71,0x1e,0x25,0xbf,0x54,0x80,0x0e,0x14,0x6f,0x4b,0xb8,0x50,0x18,0x3b,0x55, + 0x88,0xce,0x5e,0xa9,0xec,0x12,0x30,0xaf,0x91,0x1b,0x4d,0x9e,0x2e,0xcd,0x24,0x8d,0x98,0x1f,0xe1,0xe6, + 0xb6,0x6d,0x0f,0x4f,0x7d,0xcb,0xf6,0x70,0xc5,0xed,0xfb,0xc3,0x55,0xb7,0xed,0x0f,0x71,0xcb,0xe9,0xcc, + 0x30,0xfe,0x44,0xa3,0xcf,0x37,0x64,0x2d,0x9f,0x26,0x6c,0x89,0xff,0x3d,0x59,0xcb,0xb7,0x44,0xd6,0x65, + 0xd3,0x38,0x3d,0x9f,0x25,0x97,0x9d,0x69,0x4c,0xf7,0x3e,0xd1,0x66,0xe7,0xf1,0x9f,0xc9,0xb4,0x73,0xc5, + 0x17,0xc5,0x98,0x0a,0x2c,0x59,0x8e,0x60,0xc8,0x92,0xb8,0x4d,0xfc,0xf2,0x03,0x95,0x2e,0xd4,0xb0,0x41, + 0x92,0x10,0x31,0x38,0x4f,0x93,0x78,0x71,0x4d,0x7f,0xa7,0xb1,0xc4,0x0e,0xc2,0x88,0x31,0x68,0xa2,0x0d, + 0xe2,0x3f,0x63,0x08,0x60,0x68,0x0f,0x3a,0x29,0x0d,0x25,0x4e,0x1b,0xe2,0x97,0xe3,0x2c,0x06,0x99,0xd3, + 0x48,0xd7,0x22,0x98,0xa7,0x66,0x80,0xd9,0xbc,0x98,0x45,0x51,0xfa,0x97,0xa4,0x31,0xbf,0x24,0x25,0x8d, + 0x6c,0x74,0x11,0x5d,0xc6,0xb3,0x4f,0x17,0xc9,0xd4,0x6b,0x29,0xb9,0xcc,0x3b,0x1a,0xc4,0x1c,0xce,0x47, + 0xc6,0x4d,0xe9,0x4c,0x42,0x83,0x9c,0xc6,0x4b,0x62,0xb5,0x30,0x97,0x36,0x09,0x4d,0x34,0x21,0xc8,0xc8, + 0xd2,0x4d,0x01,0xcd,0x4f,0x94,0x39,0x8d,0xb1,0xfe,0x71,0xae,0xe2,0x07,0x10,0x61,0x73,0x89,0x76,0x9a, + 0x82,0x9a,0x5f,0xab,0x12,0x54,0x78,0x96,0xe5,0x28,0x54,0x17,0xd6,0xbc,0xc6,0x48,0xd0,0x92,0x0c,0xe5, + 0x53,0xc4,0x35,0x3f,0x2c,0x92,0x71,0x32,0x8d,0xb7,0x88,0x6b,0x88,0x63,0xc1,0xa9,0x88,0x01,0x21,0xd8, + 0xcf,0xd9,0x04,0x54,0xbe,0x92,0xc9,0xc4,0x49,0xb9,0x21,0xb3,0x39,0x96,0xb2,0x5a,0x58,0x13,0xc7,0x33, + 0xf6,0xd8,0x12,0x53,0x3b,0xe9,0xe7,0x49,0x6d,0xde,0x8f,0x9b,0x52,0x9b,0x97,0x0c,0x0b,0x1d,0xc2,0x17, + 0x9d,0x65,0x86,0x3b,0x82,0xca,0x54,0x0c,0x7a,0x1c,0x57,0xd2,0x9a,0x65,0x6d,0xa9,0x62,0x78,0xdc,0x4b, + 0x8a,0x0d,0xb9,0xcd,0x54,0x56,0xbe,0xde,0xcc,0x34,0x36,0x1c,0x4c,0x9c,0x8f,0x1b,0x02,0x9c,0xe3,0x5a, + 0x51,0x9a,0x98,0x80,0x48,0x9c,0x7e,0x5c,0x8a,0x13,0x4b,0x1f,0x75,0xae,0x5c,0x57,0x62,0xae,0x9b,0x8e, + 0xc2,0x32,0x8b,0xa7,0x3a,0x4d,0x73,0xde,0xb4,0xe5,0xd7,0x54,0x33,0xce,0xab,0x1e,0xea,0x1c,0x3c,0x24, + 0x08,0xf1,0x64,0x43,0x9e,0xf3,0x6b,0x54,0x94,0xd2,0x69,0x43,0x9e,0xf3,0x3b,0xee,0xe3,0xf9,0x65,0x76, + 0x55,0x94,0x75,0x99,0x0e,0x67,0x40,0x15,0x79,0x1a,0x41,0xad,0xd5,0x16,0xed,0xe8,0x91,0x83,0x1c,0x4d, + 0x1b,0xa2,0x1d,0x3a,0x96,0xe3,0x68,0xda,0x90,0xed,0x3c,0xa7,0x85,0x31,0xa9,0xb6,0x6c,0x27,0x8b,0xad, + 0x8c,0x4a,0xb4,0xf3,0x9c,0x3b,0x36,0x19,0x5a,0xb6,0xf3,0x6b,0x4e,0x5d,0xeb,0xc4,0x4a,0xb8,0xf3,0x3b, + 0x61,0xf4,0xaa,0xb0,0x16,0xee,0xfc,0x9e,0xc9,0x40,0x6a,0xc2,0x9d,0xa7,0xf1,0x75,0x3c,0x65,0x35,0xdd, + 0xa6,0x78,0x47,0x6d,0xfd,0xb9,0x2a,0xb0,0x7d,0xfb,0x1b,0x92,0x9e,0xa7,0x1b,0x15,0x6a,0x40,0x70,0x97, + 0xc0,0xe7,0x0d,0xdd,0x51,0x56,0x05,0xe2,0x7b,0x09,0x6e,0x21,0x02,0xed,0x34,0x01,0x91,0xc9,0xa2,0x78, + 0x42,0x60,0x7b,0x97,0xcc,0x67,0x2b,0x70,0xb5,0xcb,0x7c,0x34,0xc4,0x58,0x22,0x1f,0x0b,0xf8,0xea,0x82, + 0x9f,0x1a,0xf8,0x6d,0x95,0xfe,0xd0,0x28,0x2f,0x88,0xa6,0x6b,0x93,0xfe,0x3c,0x11,0xb9,0x4f,0x7c,0xa7, + 0xd8,0xe7,0x7b,0xcc,0x1f,0x62,0x1f,0x83,0x6d,0xa6,0xf1,0x2c,0x79,0x7f,0x89,0xa9,0x25,0x2d,0x4d,0x1b, + 0xa1,0xcf,0xd3,0x0c,0xa2,0xb3,0x34,0x8a,0x72,0xda,0xcc,0x34,0xb6,0x26,0xde,0x26,0xfe,0x91,0x12,0xaa, + 0x38,0x6a,0x6e,0x95,0x03,0x55,0xc8,0xd6,0x60,0x4a,0x0b,0xff,0xda,0x17,0x65,0x43,0x12,0xf4,0xc4,0x96, + 0x4d,0xd4,0x80,0xc3,0x2a,0x26,0x64,0x3d,0x9d,0x9e,0x4b,0xa2,0x94,0xc1,0x14,0x67,0x32,0xdd,0x0e,0x71, + 0x67,0x58,0x09,0x91,0x0d,0x55,0x04,0x5c,0x8c,0xeb,0x39,0x9a,0x70,0x1e,0x5d,0x95,0x51,0x1e,0x11,0x0e, + 0xe4,0x59,0xf0,0x25,0x0b,0xd2,0xc2,0xc8,0x27,0x62,0xb9,0x3f,0xd0,0xd4,0x38,0xb6,0x52,0x0d,0x5c,0x23, + 0xba,0x43,0xe7,0x79,0xbd,0x16,0x71,0xfa,0x54,0x84,0x56,0x30,0xe2,0xdd,0xee,0x2c,0x93,0xa8,0x55,0x44, + 0x44,0xf9,0xd4,0xf3,0x7b,0x7b,0x64,0x17,0xf1,0x39,0x6e,0xbf,0x2b,0x4c,0xa6,0xd7,0x79,0x27,0xf3,0x95, + 0x71,0x41,0x8a,0x43,0x54,0x5f,0x82,0xb1,0xf2,0x3c,0xed,0x31,0xf8,0x1d,0x42,0x1e,0x53,0xba,0xe4,0xd5, + 0xd5,0x22,0xd7,0xe8,0x39,0x11,0x94,0xc9,0x2c,0x99,0x8e,0x81,0xb0,0x3b,0x3f,0xc6,0x9d,0xcb,0x05,0xad, + 0xa3,0xd5,0x5a,0xd6,0x38,0x42,0x63,0xdc,0x04,0xb8,0x15,0x0c,0xff,0x28,0x4b,0x7f,0x99,0x52,0x22,0xcd, + 0x69,0x9c,0x2f,0x2e,0xb1,0x1c,0x65,0x56,0x62,0xe8,0x63,0x91,0x0f,0x45,0xb8,0x76,0x69,0x11,0x9b,0xe2, + 0x21,0x6b,0x8f,0x41,0x79,0x30,0x65,0xab,0xae,0x63,0xab,0x9c,0x6c,0x9f,0x2a,0xbb,0xb9,0x05,0x68,0x9c, + 0x96,0x28,0xa6,0x6b,0xb5,0x21,0x23,0xfa,0x75,0x31,0xeb,0x5c,0x24,0x4c,0x09,0xd0,0x11,0xc7,0x8a,0x30, + 0x01,0x41,0xc5,0xae,0xa3,0xd1,0x45,0x79,0x0d,0x92,0x95,0x66,0xe7,0x23,0xc5,0xc2,0x43,0x2c,0x1f,0x2e, + 0x17,0xbc,0xac,0x1d,0x02,0xdb,0x1c,0x17,0x36,0x2f,0x47,0xb1,0x55,0x6c,0xf4,0x9b,0x69,0x50,0x0b,0x8e, + 0xbe,0x8f,0xcf,0xf3,0x05,0x51,0x80,0x95,0xf0,0xe8,0xa2,0x26,0x3c,0xa2,0x35,0x65,0x00,0x63,0x01,0x0e, + 0x71,0xb5,0xb4,0x64,0x31,0x1d,0xff,0x3f,0x01,0x73,0x51,0xba,0x31,0x4d,0x62,0x24,0x09,0x00,0xa9,0x52, + 0xf2,0x3e,0x65,0xd8,0xbd,0x4e,0x66,0x98,0xb6,0xb5,0x57,0xa8,0x06,0xcd,0x7c,0x9a,0x10,0xfd,0xf3,0x67, + 0xf2,0x1e,0xf9,0xd7,0x31,0x4d,0xfb,0x1a,0xb0,0x4b,0x3f,0xae,0xe2,0x58,0x51,0xa2,0xe7,0x70,0xc0,0xb5, + 0x29,0x48,0xca,0xe3,0xed,0x62,0x24,0xc8,0x51,0xee,0x16,0x24,0x45,0x57,0x5b,0x04,0x49,0xef,0x40,0xca, + 0xd1,0x38,0xc6,0x5a,0x94,0x84,0xbe,0xb6,0x0a,0x92,0x9a,0x92,0xa4,0xf7,0xe3,0xba,0x24,0x29,0xfe,0x98, + 0x20,0x29,0x82,0x89,0x02,0x9d,0x03,0x82,0x2b,0x46,0x50,0x7f,0x41,0x9e,0x74,0x9e,0xbc,0xbf,0x8e,0x73, + 0x86,0xc4,0x4f,0x11,0x29,0xfd,0x2a,0x54,0x78,0x9b,0x48,0x29,0xb5,0x44,0x4a,0x4f,0x09,0xbc,0xc6,0x65, + 0x3c,0x25,0x84,0x32,0xb6,0xc4,0x4a,0x78,0x56,0xb7,0x13,0x0d,0xbf,0x65,0x97,0x87,0x60,0xa9,0x2a,0x48, + 0x5b,0x7e,0x11,0xe1,0x40,0xd2,0xb1,0x3b,0x8f,0x0a,0x42,0x28,0xe0,0x28,0x84,0x1b,0x8b,0x5b,0x25,0x4d, + 0xbf,0x67,0x31,0x4f,0xe7,0xaf,0x4b,0x9a,0x2c,0xc6,0xf3,0x0e,0x09,0x53,0xad,0x65,0x1b,0x7d,0x30,0x9a, + 0xb0,0xaf,0x32,0x22,0xf2,0xa7,0xff,0x1d,0x52,0xa6,0xcb,0x59,0xf6,0x7f,0x96,0x90,0xe9,0x09,0xb0,0x71, + 0xce,0xbc,0x20,0xc1,0x1a,0x61,0x74,0xc1,0x16,0x4b,0x3e,0xfa,0x75,0x22,0x99,0x8e,0x3e,0x73,0x7f,0xaa, + 0x4c,0xa9,0xee,0x9a,0x0b,0xc5,0x4a,0xa0,0x2c,0x44,0x4d,0x72,0xa5,0xcc,0x01,0x15,0x54,0x83,0x80,0xb7, + 0x64,0xec,0xfd,0xa7,0x60,0x3f,0x23,0x71,0xba,0x02,0x2e,0x50,0x43,0xa4,0xe2,0x5c,0x6e,0x4c,0xbd,0x42, + 0xba,0x74,0x89,0x76,0x95,0xcc,0xa9,0xd0,0x42,0x27,0x41,0x89,0xa0,0x11,0x70,0x01,0x9b,0x29,0x01,0xf2, + 0x3e,0x4d,0xec,0x04,0x8c,0xc6,0x22,0x45,0x85,0x84,0x99,0x9b,0xd0,0x13,0x06,0xde,0x1f,0xdf,0x2d,0x7c, + 0x02,0xe3,0xa6,0x78,0x61,0x23,0x78,0x52,0x77,0x98,0x3a,0x09,0x9b,0x32,0x27,0xd4,0xb1,0x58,0x13,0xc5, + 0x18,0x31,0x52,0x68,0xa9,0xa9,0x65,0x34,0x56,0x4f,0x77,0x55,0xa9,0x4b,0x38,0x50,0xb1,0x46,0x53,0xde, + 0x51,0xbb,0x29,0xe6,0x40,0xfd,0x26,0x85,0xfc,0xb1,0x36,0x36,0xc4,0x51,0x9f,0x30,0x5f,0xe6,0xec,0x1b, + 0x42,0xa9,0xbb,0x26,0xac,0xea,0x6c,0xca,0xa6,0x50,0xd1,0xc6,0x09,0xf5,0xe1,0x35,0x25,0x53,0xdf,0xb1, + 0x88,0x10,0xf4,0x6d,0x5a,0x54,0xe8,0x95,0x01,0x7e,0x8b,0x78,0x8a,0x17,0x14,0x37,0xe0,0x47,0x46,0xd5, + 0x94,0x50,0xfd,0x54,0x61,0x41,0x4b,0x24,0x95,0x6a,0x6a,0x67,0x6e,0x2d,0xdd,0x5f,0xd8,0x3d,0x7b,0xf9, + 0xfe,0xf2,0xf6,0x49,0x23,0xeb,0xf5,0xba,0x0a,0x61,0xc2,0xb2,0x9c,0x27,0xf3,0xb9,0x51,0xcd,0x82,0x24, + 0x4e,0x79,0xba,0xaf,0xfc,0xc7,0x44,0xcb,0x84,0xee,0xdf,0x2c,0xef,0xcd,0x08,0x77,0x2c,0xa2,0x69,0xdc, + 0x74,0xe6,0xe2,0xf0,0x6d,0xa7,0x5d,0xc3,0x18,0x53,0x7a,0xaf,0xaf,0x9a,0x73,0x6f,0x63,0xba,0xab,0xfe, + 0x46,0xc3,0xa7,0x9b,0x9f,0x9a,0x0e,0x62,0x9f,0x5d,0xad,0xdc,0xa6,0x34,0x97,0x49,0xa2,0xd6,0x90,0x0d, + 0xac,0xb4,0x34,0x6b,0xe7,0xd0,0x2f,0x44,0x42,0xb4,0x73,0xa4,0xbe,0x64,0x77,0xe8,0xa7,0x2a,0xf3,0x82, + 0xc0,0x6d,0x84,0x71,0x05,0xce,0x4a,0x6f,0xfb,0xdb,0x3c,0x9b,0x32,0x96,0xa5,0x62,0x72,0xf6,0x8f,0xa3, + 0x73,0xc4,0x0f,0x11,0xa9,0x87,0xd6,0x69,0xba,0xad,0xe4,0x73,0xaa,0x31,0x96,0x3a,0xe9,0x6c,0x3b,0x71, + 0x5d,0x97,0x45,0xcd,0x83,0xdb,0x58,0xf1,0x58,0xd4,0x45,0x42,0xf4,0xd6,0x61,0x8f,0xff,0xab,0x84,0x4e, + 0xb5,0x12,0x4a,0x30,0x73,0x58,0x2f,0xba,0x56,0xf0,0x43,0x7d,0x18,0x10,0x42,0xc0,0xb6,0x4a,0x6c,0x02, + 0xde,0xcf,0x6e,0xa7,0xac,0xb3,0x85,0x62,0x8c,0xa6,0x8b,0xc3,0x95,0x96,0x70,0x43,0xb5,0x3a,0xf1,0x36, + 0x06,0x75,0x4b,0x7b,0xe3,0x78,0x46,0x24,0xd6,0x46,0xd3,0x75,0xde,0xc9,0xd0,0x5d,0x5c,0xce,0xe6,0x89, + 0xb0,0x65,0xa5,0x99,0x0b,0x93,0xab,0x5c,0xc6,0x10,0xab,0xd2,0x09,0x88,0xd4,0x1d,0x5e,0x0f,0xfe,0x6d, + 0x11,0x7d,0xfc,0x5b,0x53,0x7a,0x6c,0x6b,0x6f,0xa8,0xb4,0x8a,0x16,0x12,0x1b,0x47,0x8b,0x06,0xfa,0xd2, + 0x27,0xda,0x53,0x01,0x0f,0x81,0x8b,0x74,0x49,0xf0,0x4f,0x88,0x3c,0x1e,0x13,0xb9,0x21,0x39,0xf1,0x18, + 0xa4,0x84,0x8c,0x79,0xae,0xc8,0x05,0x29,0x7a,0x7d,0x85,0x8b,0xdf,0x7c,0xd3,0x85,0x2e,0x5d,0x5b,0x57, + 0xb6,0xce,0xac,0x6e,0x65,0x4e,0xb1,0xef,0x5e,0xda,0x7e,0x2d,0x22,0xc3,0xec,0xf4,0x37,0xbb,0x26,0x08, + 0xb0,0x30,0xc8,0x80,0xbf,0x3b,0x83,0x31,0x40,0x03,0x2a,0x49,0x0e,0xe7,0xe4,0x31,0x9e,0xf2,0x96,0xb1, + 0x4e,0xa0,0x65,0x67,0x87,0x7c,0x1b,0x51,0x6a,0x95,0xe7,0xb0,0xb2,0x67,0x9f,0x1e,0xd4,0x52,0xc1,0x76, + 0x4c,0x3c,0x2a,0x66,0x68,0xe1,0xb1,0xd6,0x75,0xf8,0xd3,0xd1,0xbe,0xc5,0x94,0x02,0xa1,0x1e,0x0b,0xcc, + 0xfe,0x2f,0xb4,0x65,0xff,0x91,0x84,0x3b,0x2e,0x7b,0xe6,0xf8,0x98,0x38,0x86,0x79,0xf9,0xb2,0x71,0xf2, + 0x60,0x11,0xd8,0x6b,0x22,0x68,0x4e,0x54,0x42,0x56,0x5e,0x04,0x76,0x6a,0x04,0xb5,0x6d,0x84,0x24,0xb4, + 0xce,0xb2,0x8c,0x79,0xe7,0xa8,0xdf,0xd0,0x1e,0x66,0x2b,0xc9,0xc3,0x7e,0xf6,0xe8,0xe8,0xe1,0x43,0xfa, + 0xd3,0x0d,0x8f,0xbe,0xf4,0x94,0xcb,0xca,0x4c,0xfc,0x16,0x64,0xe1,0xfe,0x7d,0x64,0x3d,0x0a,0xef,0x9b, + 0x12,0x89,0x29,0x51,0xf6,0xaa,0x95,0x0d,0x73,0xea,0xb3,0xb6,0xb4,0x61,0x42,0x29,0xd6,0x1d,0xef,0x7a, + 0xbd,0xf2,0x22,0x4e,0x6d,0xd7,0x43,0x92,0x5f,0x5d,0x71,0x5b,0x8b,0xc8,0x55,0xb6,0x35,0xdb,0xc6,0xf4, + 0x5b,0x0b,0xd5,0xf1,0xf9,0xf6,0xae,0xb0,0x62,0xad,0xb9,0x45,0x99,0xcd,0x5b,0x37,0x46,0x61,0x31,0x5a, + 0xe1,0xb5,0x67,0xfd,0xe7,0x2b,0x15,0xd4,0x00,0x21,0xc5,0xae,0x5f,0xdb,0x28,0xb8,0xcd,0x57,0x2e,0x03, + 0x5b,0x5a,0x03,0xb6,0xf0,0x56,0xe1,0x78,0x42,0xe4,0x42,0x34,0x95,0x6b,0x15,0x0f,0x3b,0xdd,0x84,0xca, + 0xbd,0xbd,0xd1,0x8c,0xb0,0x1d,0xbe,0xe9,0x2a,0x76,0x5b,0x4a,0x20,0x8a,0xe1,0x26,0x30,0x17,0x71,0xa9, + 0xeb,0x58,0xf3,0x6d,0x8c,0x44,0xd0,0xc1,0x96,0xa3,0xb0,0xf6,0xbf,0x8c,0x1f,0xc0,0x39,0x64,0x32,0x8e, + 0xdb,0xe7,0xa9,0xac,0x92,0x5a,0x9a,0xe4,0xd9,0x6c,0x64,0xaa,0x09,0xb9,0xb5,0x19,0xb5,0x97,0x52,0x96, + 0x16,0xed,0x23,0xc3,0xa0,0x88,0x2d,0x9d,0xc5,0x84,0x3f,0xf8,0xe9,0xac,0xe1,0xd1,0x5a,0x53,0xb6,0xb3, + 0x0c,0x51,0x7f,0x94,0x8a,0xb1,0xe3,0x70,0xfc,0x63,0x42,0x49,0x73,0xca,0x8e,0x07,0xce,0x0f,0xc7,0xc4, + 0x17,0xea,0x9f,0x1d,0x04,0x80,0xeb,0x38,0xdd,0xaa,0x40,0x4f,0x5d,0x3e,0x48,0x61,0xd2,0x7a,0x00,0x8d, + 0x37,0x9d,0xeb,0x04,0xc6,0x2b,0xbe,0x8c,0xb4,0x09,0x0d,0x70,0x79,0xed,0x96,0x5e,0xd7,0x39,0x4d,0x4f, + 0x53,0xa7,0x9b,0xfb,0xec,0x31,0xdd,0xa6,0x8e,0x3f,0xaa,0xd9,0x1d,0x7d,0x48,0x32,0x76,0x03,0xe5,0x3a, + 0x07,0xd1,0x3c,0x39,0x50,0x97,0xab,0xd3,0x04,0xe1,0xb6,0xb0,0x6f,0xa5,0xf2,0x66,0x4d,0x43,0xd0,0x4a, + 0xd2,0x92,0x44,0xf0,0xdb,0x53,0xfe,0xfb,0x7b,0xf5,0x05,0xec,0x81,0xfc,0x84,0x6f,0x2d,0x06,0x48,0xfb, + 0x80,0x3b,0x9e,0x1a,0xb6,0x45,0xb3,0x7e,0xd6,0xc8,0xab,0xeb,0xef,0x73,0x07,0x5f,0xd5,0xfc,0x2b,0xe3, + 0xb7,0x94,0xd4,0xf4,0x14,0x14,0xed,0xfc,0x59,0xc3,0x57,0x4f,0xe3,0x9f,0x39,0x74,0xa9,0xf5,0x57,0x86, + 0xad,0x14,0x72,0xf4,0x90,0x6b,0xe4,0xee,0x67,0x0d,0x5c,0x13,0x21,0x07,0xac,0xb1,0xda,0x32,0x7e,0x78, + 0xe1,0x69,0x9f,0x82,0x46,0x5e,0x86,0x1c,0x92,0xe4,0x9e,0xfa,0xb9,0x5a,0x6d,0x92,0x40,0xaa,0x44,0x3d, + 0x75,0xb5,0x3a,0xac,0xd1,0x42,0x9b,0x0e,0x86,0x4c,0x35,0x29,0xe4,0xd9,0xa1,0x76,0xfb,0xf9,0xa3,0x46, + 0xb6,0x89,0xb7,0x6b,0x87,0x46,0xae,0x95,0x38,0xc9,0x87,0x84,0x6d,0x4d,0x79,0x71,0x6e,0x7d,0xce,0xcf, + 0xc0,0x29,0x68,0x91,0xa4,0x57,0xfd,0xb0,0x46,0x87,0x10,0x97,0x94,0x67,0xfd,0x42,0xa6,0x9e,0x7d,0x52, + 0x9b,0xb8,0xb9,0x1d,0xeb,0x15,0x1e,0x1f,0x0e,0x0e,0x91,0xa2,0xa6,0x6d,0x5f,0x9a,0x1b,0x05,0x4d,0x31, + 0xa2,0x6d,0xae,0xe4,0x95,0xc8,0x3d,0xda,0x4b,0x68,0x2a,0x37,0xc5,0x9b,0xc9,0x6f,0x71,0x7c,0xe9,0x3d, + 0xa6,0xb1,0xa9,0xa7,0x22,0xf7,0xfe,0x46,0xd6,0xb5,0x79,0x2f,0x72,0x1f,0x6e,0xd6,0xd3,0x6f,0x46,0xee, + 0xd7,0x1b,0x79,0x13,0x79,0x36,0x72,0x8f,0xbe,0xda,0xc8,0x2a,0xf4,0xe3,0x91,0xfb,0x60,0xb3,0xc3,0x42, + 0x5e,0x90,0xdc,0xaf,0x36,0xba,0x83,0xcb,0xf1,0x6a,0xc1,0x31,0xaf,0x10,0x36,0x61,0x9f,0x0e,0xf0,0x36, + 0x84,0x1b,0xb0,0x6f,0xb0,0x69,0x7f,0x0d,0xf0,0x85,0xa8,0xff,0xdc,0xa3,0x6b,0xe6,0x22,0xd5,0xff,0xca, + 0x19,0xae,0x8f,0xbe,0x42,0x3f,0x4c,0xc6,0x7e,0x1e,0xf6,0x61,0x9d,0xff,0xf6,0xc3,0xdb,0x76,0x92,0x3c, + 0xdb,0x0e,0x68,0x07,0x7e,0xed,0xc1,0x67,0xb1,0x5b,0x76,0x76,0x13,0x74,0xd8,0x8f,0xf4,0xa1,0x52,0x67, + 0x29,0xb2,0xc3,0x7e,0x23,0x03,0x36,0xbe,0xec,0x9d,0x38,0x1f,0x10,0x15,0x11,0x14,0x3b,0xf4,0x05,0xeb, + 0xcb,0x90,0x83,0xea,0xd6,0xdc,0xce,0x13,0x93,0xea,0x27,0xdd,0xb0,0x58,0xe3,0xb2,0x8c,0x39,0xb8,0x71, + 0xdc,0xab,0x11,0xef,0x12,0x88,0x71,0x32,0xcb,0xe0,0x05,0xff,0x40,0x07,0x44,0xf0,0xac,0x62,0x0c,0x2d, + 0xeb,0x0d,0xb1,0x48,0xfb,0x2a,0xc5,0x8a,0x00,0xe6,0x88,0x12,0xf2,0x89,0x59,0xca,0xaa,0xcd,0x89,0xb7, + 0xda,0xbc,0x73,0xfc,0x8a,0xe7,0xb2,0x6f,0x94,0x9e,0x4e,0xad,0x31,0x61,0xb5,0x12,0x56,0x86,0x61,0xcd, + 0x6a,0x05,0x54,0xa2,0x30,0x6b,0xf5,0x1c,0x4a,0xa9,0x38,0xb7,0x5a,0x96,0x4e,0x15,0x56,0xae,0x96,0x85, + 0x14,0x70,0x76,0xb5,0xc4,0x64,0x6e,0x33,0x79,0xf5,0x5e,0x4c,0xba,0xe1,0xfb,0x6a,0xf9,0x2a,0x71,0xdd, + 0x04,0x1f,0x04,0xef,0xf9,0x44,0x68,0x6e,0x6c,0x0b,0x81,0xf2,0x06,0x09,0x5d,0x6d,0x04,0x11,0xca,0x7a, + 0x27,0xdb,0x6f,0x5a,0xc3,0x7b,0x99,0x5d,0x2c,0x3f,0xb6,0x8b,0x5a,0x2b,0xad,0x54,0xd7,0x69,0xb3,0xef, + 0x94,0xe9,0xf7,0x36,0xba,0xcb,0xa9,0xe9,0xe4,0xe0,0x00,0xea,0xf9,0x96,0xad,0xf3,0x2d,0x6b,0xf3,0x35, + 0x57,0x70,0x1b,0xbb,0x50,0x9b,0x6b,0x2b,0x5b,0xb7,0x15,0x76,0x15,0x47,0x41,0x7c,0xde,0x34,0xa6,0x23, + 0x69,0x12,0x0c,0xc1,0xae,0xb9,0x72,0xbb,0x4b,0x15,0xe7,0xa0,0x5e,0xbb,0xdb,0xf5,0xeb,0x09,0x2a,0x16, + 0xde,0x51,0x60,0x92,0xcd,0x70,0x42,0xe7,0xc0,0xb1,0x42,0x1a,0x74,0xee,0xb7,0x96,0xd9,0xaf,0x95,0x79, + 0xd0,0x5a,0xe6,0xf4,0xb4,0x56,0xe8,0x61,0x6b,0xa1,0x95,0xe3,0x37,0x67,0xba,0x5e,0xfb,0xf7,0xbf,0x3c, + 0xe4,0xe5,0xda,0xe4,0xb5,0xec,0xd5,0x62,0xbe,0xc0,0x2c,0x82,0xb2,0x1e,0xaf,0x96,0x88,0x5a,0x20,0xcc, + 0xa8,0x59,0x65,0x3c,0x92,0x08,0x85,0xde,0xe6,0x8c,0xb6,0x12,0x3b,0xe9,0x63,0xaa,0x2f,0x71,0xed,0xf5, + 0xcc,0x56,0x0a,0x72,0x4c,0x50,0xc1,0x2d,0x75,0x85,0x17,0x50,0xab,0xac,0x22,0xfe,0xdd,0xd7,0x91,0xfd, + 0xf4,0x91,0x23,0x48,0xeb,0xab,0x6d,0x50,0x0b,0xc4,0x7f,0x4c,0x58,0x41,0xb1,0xce,0xd7,0x2b,0x5c,0xaf, + 0x8c,0x31,0x48,0x1c,0xc1,0x40,0x87,0x01,0x6a,0x1b,0xe7,0xba,0x7d,0x09,0x8e,0xe3,0x0f,0xe5,0x5f,0x5b, + 0x86,0x0e,0x1f,0x97,0xcd,0x62,0x78,0xc1,0xd5,0x62,0x88,0xb1,0xe3,0x7d,0xe6,0xfa,0x7c,0x42,0xdb,0x50, + 0x17,0xa3,0x76,0xd5,0x7a,0x7d,0x42,0x05,0xd1,0x26,0xd3,0x55,0xee,0x7f,0x4a,0x95,0x9a,0x92,0x99,0xae, + 0xa9,0x57,0xbe,0xb3,0x6d,0x2e,0xc9,0x5c,0xc3,0xf7,0x27,0x74,0x51,0xd3,0x54,0xd3,0x5d,0x7c,0xf9,0x19, + 0x35,0x13,0xd1,0x5c,0xd3,0x55,0x9b,0xdb,0x7f,0xd7,0xfe,0x54,0xa0,0x81,0xd8,0x3a,0x1b,0xd2,0xfe,0x8f, + 0x5f,0xa3,0x03,0x4b,0x48,0x10,0x6f,0x48,0xa2,0x98,0xfd,0x0f,0xb6,0xb3,0x73,0x07,0x4a,0x2e,0xfc,0x99, + 0xf4,0x55,0x35,0x97,0xcf,0x25,0xad,0x9a,0x03,0x6c,0xc3,0xd0,0x77,0xcf,0x08,0xd4,0x46,0xe3,0x95,0xa3, + 0xfd,0x9a,0xe2,0x43,0xa4,0x56,0xca,0x46,0xfd,0x87,0x2c,0xb5,0xb3,0xe5,0xe5,0xe1,0xa1,0x12,0x0d,0x42, + 0x62,0x0f,0x0f,0x0e,0xd0,0xa0,0xea,0xa7,0x2a,0x68,0xbd,0xeb,0x4c,0x12,0x18,0xab,0x1a,0xc9,0x22,0x2d, + 0xa6,0x0a,0x73,0xff,0xf4,0xe6,0x05,0x67,0xcb,0x38,0xbe,0x43,0x31,0x8e,0xa6,0x15,0x17,0xf0,0xda,0xa0, + 0x04,0x17,0x2c,0xce,0xa6,0x09,0x05,0x0f,0xbe,0x8a,0x1f,0xfa,0x59,0xfa,0x4b,0x5d,0x56,0x5f,0x73,0xed, + 0xdb,0x1c,0x18,0x93,0x5f,0x39,0x8c,0x62,0xdd,0xa3,0xc3,0xc3,0x2f,0x04,0x33,0xc7,0xe3,0x03,0xc4,0xdd, + 0x2c,0x23,0x84,0x2a,0xeb,0x6f,0x5c,0xbb,0xd5,0xbb,0x0e,0x1c,0x4d,0xfe,0xef,0xbf,0x73,0xeb,0x9b,0xd1, + 0x7e,0xed,0x36,0xa6,0x65,0xc9,0x42,0xf1,0x7d,0xe7,0xca,0xd2,0xaa,0x52,0xbd,0xb8,0x64,0x07,0xe7,0x6b, + 0x91,0x27,0x2b,0xb9,0xea,0x5d,0xb7,0x35,0xc2,0x09,0xb6,0x88,0x63,0xc1,0x0a,0x4a,0xfc,0x85,0x86,0x44, + 0x56,0xd8,0xff,0xa6,0x98,0xb6,0x5d,0x1a,0xa7,0x21,0x54,0x49,0x27,0xe9,0x9a,0x3c,0x3c,0xf4,0xbc,0x75, + 0xed,0x3d,0xad,0x7d,0x78,0xec,0xc5,0xde,0xea,0x05,0x50,0xd9,0xd2,0x2d,0x9e,0x31,0xda,0x85,0xc9,0x87, + 0x16,0x09,0xbe,0x19,0x0f,0x8b,0x43,0x61,0xf1,0x2a,0x99,0x28,0xf5,0xc4,0x26,0xd4,0x63,0x4e,0x35,0x28, + 0xfd,0xb5,0xd7,0xd7,0x5c,0x40,0x29,0x5e,0x7e,0x35,0x1b,0x8f,0xc6,0xb7,0xb6,0x99,0x77,0x43,0x95,0x7a, + 0x92,0x0e,0x25,0x9e,0x52,0xff,0x23,0x3c,0x44,0x7e,0x50,0x6f,0x43,0x02,0xcb,0x26,0x3a,0xf2,0xcd,0xd6, + 0x6e,0x94,0x78,0xbb,0xd9,0x15,0xc6,0xbc,0x45,0xd6,0xbe,0x49,0x8d,0x8a,0xf9,0xf5,0x6d,0x43,0xf0,0x71, + 0x14,0x3f,0x90,0x88,0x59,0x08,0x6f,0xff,0x6f,0x50,0xda,0xd6,0x9e,0x7f,0x8c,0xca,0x56,0xbb,0x0d,0x99, + 0x74,0xf3,0x15,0x75,0x3b,0x20,0x4b,0x01,0x81,0xcc,0xe6,0xcb,0x59,0x45,0x79,0x33,0x8e,0x87,0x6e,0x40, + 0x11,0x1c,0x1c,0xe0,0x75,0x46,0xa9,0x03,0xd0,0xe4,0x0b,0x56,0x09,0x40,0x1a,0x2f,0xc5,0x34,0xce,0x20, + 0x2e,0x3d,0x78,0x5f,0x30,0x83,0x25,0xce,0x5d,0x83,0x5b,0xad,0x94,0x54,0x75,0xe9,0x5f,0xc6,0xe0,0x49, + 0x84,0x7c,0xef,0x55,0x2f,0x3e,0xeb,0x8d,0x95,0xda,0xce,0xd2,0xe2,0xe4,0xd2,0x7d,0x58,0xc0,0x33,0x76, + 0x2d,0xc1,0x44,0xd7,0x33,0xb2,0xf6,0x5a,0x36,0x7c,0x00,0xd1,0x40,0xaf,0xe2,0x32,0xbf,0x31,0x03,0xea, + 0x9b,0xc1,0xcc,0xa2,0x12,0x8e,0x81,0xa2,0xd2,0xaf,0x92,0x08,0x9b,0xa4,0xf8,0xf7,0x93,0xe5,0x17,0xf5, + 0x1d,0xd8,0xb2,0x6f,0x9b,0x2b,0x6e,0x31,0x4a,0x9f,0x20,0xdf,0x63,0x5f,0xbd,0xe6,0x1e,0xb2,0xf8,0xde, + 0x7e,0x75,0x6c,0x8d,0xa4,0xae,0x21,0x8b,0xd1,0xd4,0x5e,0x53,0x5c,0xd7,0x2c,0x56,0xcf,0xae,0xbf,0x8d, + 0xea,0x43,0xd5,0xac,0x51,0x97,0xc9,0xa5,0x5a,0x8e,0x90,0x87,0xdb,0x8a,0xd2,0xb1,0xeb,0x97,0x1f,0x11, + 0xce,0xe5,0x96,0x70,0xae,0x26,0x99,0xcb,0x6d,0xf9,0x99,0x11,0xcb,0xe5,0xd5,0xe4,0x30,0xa5,0xbc,0x21, + 0x64,0xcb,0x6b,0x0f,0x57,0x94,0x6d,0x04,0x77,0x7e,0x25,0xc0,0x0a,0xdc,0xbc,0x27,0x12,0xb8,0xc1,0x51, + 0x70,0xe8,0xad,0x10,0xb3,0x50,0xc4,0x6e,0x83,0xfb,0xea,0xb7,0x91,0xb5,0x0d,0x1e,0xea,0x12,0x4a,0xc0, + 0x36,0xf8,0x5a,0x25,0x88,0x54,0x6d,0x70,0xf4,0x95,0xfa,0xad,0x45,0x69,0x83,0x07,0xba,0x11,0x91,0x9f, + 0x0d,0xbe,0x42,0x13,0x74,0x74,0x37,0x90,0x4b,0x5d,0x58,0xeb,0x97,0xff,0x2e,0xcb,0xde,0x10,0xaa,0x7d, + 0x9c,0x69,0xa7,0x1b,0x91,0x8e,0xae,0xfd,0xc4,0xdd,0x7c,0xe1,0xd9,0xb2,0xf5,0x1b,0x3b,0x58,0x17,0xa8, + 0x56,0x12,0x54,0xc2,0x31,0x95,0xd8,0xf4,0xcb,0x87,0x0d,0xf1,0xa8,0x11,0x82,0xee,0x54,0x42,0xcf,0x1d, + 0x5b,0xc8,0xb9,0x63,0x09,0x35,0x77,0x8c,0x10,0x73,0xc7,0x92,0x59,0xee,0x18,0x11,0xa5,0x04,0xfd,0x90, + 0x70,0xad,0xad,0x53,0x8a,0x3f,0x3e,0x27,0x15,0xf5,0x25,0x46,0xd4,0x97,0x56,0x95,0x91,0x7f,0x4f,0x32, + 0xd5,0x14,0x4e,0xfa,0x1b,0x02,0xc7,0x7f,0x77,0xeb,0x37,0x84,0x8f,0x77,0x4b,0x6c,0xc6,0x75,0x89,0xe5, + 0xf6,0xed,0x97,0x11,0x7e,0x14,0x00,0xac,0x2d,0x9f,0x27,0x69,0x70,0xdf,0x1f,0x1b,0x4d,0x77,0x6b,0x67, + 0xb6,0xf4,0xb7,0xb1,0x37,0xcd,0x0e,0x6b,0xbb,0x03,0x1f,0x9d,0x09,0xa5,0x44,0x0c,0xee,0xad,0xcf,0xaf, + 0x8e,0xd3,0x47,0xb4,0x64,0x09,0x1a,0x90,0x76,0x43,0xa7,0xeb,0x68,0xb2,0xda,0xa2,0x2a,0xe2,0x83,0xaf, + 0x0e,0x3d,0x3f,0x91,0xa4,0xe8,0xbc,0xa0,0x71,0xfc,0x8f,0xaf,0x0e,0xb5,0x4c,0x16,0xd1,0xef,0xba,0x4e, + 0xe0,0xf8,0xc9,0xa3,0x23,0xdd,0xcc,0xa1,0xe3,0xf9,0x29,0x42,0x69,0xae,0x7d,0x0e,0x59,0x43,0x97,0x9f, + 0xd6,0x5f,0xb8,0x95,0x2d,0xda,0x5c,0x45,0x9b,0xea,0x04,0xb1,0x07,0xcd,0x58,0x0e,0xe4,0x5b,0x57,0x77, + 0xf8,0xfc,0xfa,0xc5,0xe7,0xf5,0xab,0xc2,0xfb,0x58,0xfd,0x1b,0x55,0x1f,0x7b,0x23,0xda,0xd4,0x1c,0x42, + 0xe7,0x6f,0x4e,0x37,0x86,0xef,0xa7,0xf5,0xff,0x07,0x0d,0xb3,0xd4,0xe3,0x07,0x09,0x02,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 208d413..5a0b2d6 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 21; +const uint8_t VersionMetadata = 23; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+21"; -const char VersionCommitDate[] = "2018-01-17"; +const char VersionFullSemVer[] = "2.0.0-beta.1+23"; +const char VersionCommitDate[] = "2018-01-18"; #endif diff --git a/src/main.triggers.h b/src/main.triggers.h index 44246c5..2a61ef5 100644 --- a/src/main.triggers.h +++ b/src/main.triggers.h @@ -21,12 +21,12 @@ void initMotionPins() void updateNTPClient() { - if (ntpClient == nullptr && WiFi.status() == WL_CONNECTED) + if (ntpClient == nullptr && WiFi.status() == WL_CONNECTED && + systemSettings->ntpServer() != nullptr && systemSettings->ntpInterval() > 0) { _dln("NTP :: initializing NTP client"); - // TODO make NTP address and refresh interval configurable - ntpClient = new NTPClient(ntpUDP, "nl.pool.ntp.org", 0, 5 * 60 * 1000); + ntpClient = new NTPClient(ntpUDP, systemSettings->ntpServer(), 0, systemSettings->ntpInterval() * 60 * 1000); ntpClient->begin(); } diff --git a/src/settings/system.cpp b/src/settings/system.cpp index 18a05f9..e8a45bf 100644 --- a/src/settings/system.cpp +++ b/src/settings/system.cpp @@ -15,10 +15,13 @@ void SystemSettings::toJson(Print &print) { - DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(6) + JSON_OBJECT_SIZE(5)); + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(8) + JSON_OBJECT_SIZE(5)); JsonObject& root = jsonBuffer.createObject(); + root["ntpServer"] = ntpServer(); + root["ntpInterval"] = ntpInterval(); + root["lat"] = latitude(); root["lng"] = longitude(); @@ -42,12 +45,15 @@ bool SystemSettings::fromJson(char* data, bool* changed) if (changed != nullptr) *changed = false; - DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(6) + JSON_OBJECT_SIZE(5) + 316); + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(8) + JSON_OBJECT_SIZE(5) + 500); JsonObject& root = jsonBuffer.parseObject(data); if (!root.success()) return false; + const char* jsonNTPServer = root["ntpServer"]; + uint32_t jsonNTPInterval = root["ntpInterval"]; + double jsonLat = root["lat"]; double jsonLng = root["lng"]; @@ -81,7 +87,9 @@ bool SystemSettings::fromJson(char* data, bool* changed) (jsonPWMDriverFrequency != pwmDriverFrequency()) || (jsonMapAPIKey != mapsAPIKey()) || (jsonLat != latitude()) || - (jsonLng != longitude())) + (jsonLng != longitude()) || + (jsonNTPServer != ntpServer()) || + (jsonNTPInterval != ntpInterval())) { latitude(jsonLat); longitude(jsonLng); @@ -93,6 +101,8 @@ bool SystemSettings::fromJson(char* data, bool* changed) pwmDriverAddress(jsonPWMDriverAddress); pwmDriverFrequency(jsonPWMDriverFrequency); mapsAPIKey(jsonMapAPIKey); + ntpServer(jsonNTPServer); + ntpInterval(jsonNTPInterval); if (changed != nullptr) *changed = true; diff --git a/src/settings/system.h b/src/settings/system.h index b7c9652..606bd66 100644 --- a/src/settings/system.h +++ b/src/settings/system.h @@ -17,6 +17,9 @@ class SystemSettings : public AbstractJsonSettings { private: + char* mNTPServer = nullptr; + uint32_t mNTPInterval = 5; + double mLatitude = 0; double mLongitude = 0; @@ -31,10 +34,6 @@ class SystemSettings : public AbstractJsonSettings char* mMapsAPIKey = nullptr; - // TODO loginRequired - // TODO loginUsername - // TODO loginPassword - protected: virtual const char* getFilename() { return SystemSettingsFile; }; virtual const char* getDebugPrefix() { return "SystemSettings"; }; @@ -43,6 +42,11 @@ class SystemSettings : public AbstractJsonSettings void toJson(Print &print); bool fromJson(char* data, bool* changed); + char* ntpServer() { return mNTPServer; } + void ntpServer(const char* value) { assignChar(&mNTPServer, value); } + + double ntpInterval() { return mNTPInterval; } + void ntpInterval(double value) { mNTPInterval = value; } double latitude() { return mLatitude; } void latitude(double value) { mLatitude = value; } diff --git a/web/app.js b/web/app.js index 3a6e8ee..4e9ec5f 100644 --- a/web/app.js +++ b/web/app.js @@ -1,5 +1,3 @@ -// TODO show "rebooting" messages when system settings change / firmware is being applied - function startApp() { var i18n = new VueI18n({ @@ -14,6 +12,8 @@ function startApp() i18n: i18n, data: { + notification: null, + loading: true, saving: false, savingSteps: false, @@ -70,6 +70,8 @@ function startApp() }, system: { + ntpServer: null, + ntpInterval: 5, lat: null, lng: null, pins: { @@ -98,6 +100,8 @@ function startApp() { var self = this; + self.notificationTimer = null; + document.title = i18n.t('title'); var hash = window.location.hash.substr(1); if (hash) @@ -125,6 +129,9 @@ function startApp() // Sequential loading of all the settings makes sure // we don't overload the ESP8266 with requests, as that // can cause it to run out of memory easily. + // This is a horrible way to implement it, but I don't feel like + // including a big library or working out a clean short solution + // at the moment, and it works :) self.loadVersion().then(function() { self.loadConnection().then(function() @@ -148,6 +155,59 @@ function startApp() }, methods: { + showNotification: function(message, error) + { + var self = this; + self.notification = { + message: message, + error: error + }; + + if (self.notificationTimer != null) + clearTimeout(self.notificationTimer); + + self.notificationTimer = setTimeout(function() + { + self.notification = null; + self.notificationTimer = null; + }, 5000); + }, + + hideNotification: function() + { + var self = this; + self.notification = null; + + if (self.notificationTimer != null) + { + clearTimeout(self.notificationTimer); + self.notificationTimer = null; + } + }, + + handleAPIError: function(messageId, error) + { + var self = this; + + console.log(error); + var errorMessage = ''; + + if (error.response) + { + errorMessage = 'HTTP response code ' + error.response.status; + } + else if (error.request) + { + errorMessage = 'No response'; + } + else + { + errorMessage = error.message; + } + + self.showNotification(i18n.t(messageId) + '\n\n' + errorMessage, true); + }, + loadVersion: function() { var self = this; @@ -157,10 +217,7 @@ function startApp() if (typeof response.data == 'object') self.version = response.data; }) - .catch(function(error) - { - console.log(error); - }); + .catch(self.handleAPIError.bind(self, 'error.loadVersion')); }, loadConnection: function() @@ -172,10 +229,7 @@ function startApp() if (typeof response.data == 'object') self.connection = response.data; }) - .catch(function(error) - { - console.log(error); - }); + .catch(self.handleAPIError.bind(self, 'error.loadConnection')); }, loadSystem: function() @@ -187,10 +241,7 @@ function startApp() if (typeof response.data == 'object') self.system = response.data; }) - .catch(function(error) - { - console.log(error); - }); + .catch(self.handleAPIError.bind(self, 'error.loadSystem')); }, loadTimeTriggers: function() @@ -235,10 +286,7 @@ function startApp() self.triggers.time = timeSettings; } }) - .catch(function(error) - { - console.log(error); - }); + .catch(self.handleAPIError.bind(self, 'error.loadTimeTriggers')); }, loadMotionTriggers: function() @@ -250,10 +298,7 @@ function startApp() if (typeof response.data == 'object') self.triggers.motion = response.data; }) - .catch(function(error) - { - console.log(error); - }); + .catch(self.handleAPIError.bind(self, 'error.loadMotionTriggers')); }, loadSteps: function() @@ -313,10 +358,7 @@ function startApp() .then(function(response) { }) - .catch(function(error) - { - console.log(error); - }) + .catch(self.handleAPIError.bind(self, 'error.applyConnection')) .then(function() { self.saving = false; @@ -333,11 +375,9 @@ function startApp() axios.post('/api/system', self.system) .then(function(response) { + self.showNotification(i18n.t('rebootPending')); }) - .catch(function(error) - { - console.log(error); - }) + .catch(self.handleAPIError.bind(self, 'error.applySystem')) .then(function() { self.saving = false; @@ -434,10 +474,7 @@ function startApp() if (typeof response.data == 'object') self.wifiStatus = response.data; }) - .catch(function(error) - { - console.log(error); - }) + .catch(self.handleAPIError.bind(self, 'error.updateWiFiStatus')) .then(function() { setTimeout(self.updateWiFiStatus, 5000); @@ -470,15 +507,9 @@ function startApp() axios.post('/api/firmware', data, config) .then(function(response) { - // TODO show "now updating, please wait" - console.log("Update sent"); - }) - .catch(function(error) - { - console.log(error); - //output.innerHTML = err.message; - // TODO show error + self.showNotification(i18n.t('rebootPending')); }) + .catch(self.handleAPIError.bind(self, 'error.uploadFirmware')) .then(function() { self.uploadProgress = false; @@ -531,18 +562,13 @@ function startApp() axios.post('/api/steps', { - // TODO configurable transitionTime: 1000, values: steps }) .then(function(response) { - - }) - .catch(function(error) - { - console.log(error); }) + .catch(self.handleAPIError.bind(self, 'error.updateSteps')) .then(function() { self.savingSteps = false; @@ -566,25 +592,20 @@ function startApp() self.system.lng = location.lng; } }) - .catch(function(error) - { - console.log(error); - }) + .catch(self.handleAPIError.bind(self, 'error.searchLocation')) .then(function() { self.searchingLocation = false; }); }, - applyTriggers: function() + applyTimeTriggers: function() { var self = this; if (self.saving) return; self.saving = true; - // TODO motion triggers (or separate the forms?) - var timeSettings = { enabled: self.triggers.time.enabled, transitionTime: self.triggers.time.transitionTime, @@ -614,10 +635,7 @@ function startApp() .then(function(response) { }) - .catch(function(error) - { - console.log(error); - }) + .catch(self.handleAPIError.bind(self, 'error.applyTimeTriggers')) .then(function() { self.saving = false; @@ -651,6 +669,24 @@ function startApp() self.triggers.time.triggers.splice(index, 1); }, + applyMotionTriggers: function() + { + var self = this; + if (self.saving) return; + + self.saving = true; + + axios.post('/api/triggers/motion', self.triggers.motion) + .then(function(response) + { + }) + .catch(self.handleAPIError.bind(self, 'error.applyMotionTriggers')) + .then(function() + { + self.saving = false; + }); + }, + addMotionTrigger: function() { var self = this; diff --git a/web/dist/bundle.css b/web/dist/bundle.css index fdbc322..4bf6224 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{border:solid 1px #404040;margin-bottom:2rem;padding:0}.panel .panel-header{background-color:#302f28;color:grey}.panel .panel-header input[type=checkbox]{margin-left:.5em;margin-top:.5em;margin-bottom:.5em}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header a,.panel .panel-header label{color:#fff}.panel .panel-body{background-color:#242422;padding:2rem}select{background:#202020;color:#fff}select:focus{background-image:none}.inline{display:inline-block;width:auto}.checkbox{white-space:nowrap}.weekday label{width:5em} \ No newline at end of file +*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem}.notificationContainer{position:absolute;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background-color:#ffc;border:solid 1px #000;box-shadow:0 0 10px #000;color:#000;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background-color:#ffc6b3;border:solid 1px #000;color:#000}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{border:solid 1px #404040;margin-bottom:2rem;padding:0}.panel .panel-header{background-color:#302f28;color:grey}.panel .panel-header input[type=checkbox]{margin-left:.5em;margin-top:.5em;margin-bottom:.5em}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header a,.panel .panel-header label{color:#fff}.panel .panel-body{background-color:#242422;padding:2rem}select{background:#202020;color:#fff}select:focus{background-image:none}.inline{display:inline-block;width:auto}.checkbox{white-space:nowrap}.weekday label{width:5em} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index a02b708..59cfe38 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===u.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===u.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,l){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+u(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,l,r),p=null}},p.onerror=function(){l(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){l(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),_=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;_&&(d[e.xsrfHeaderName]=_)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),l(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=u(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function u(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return _n.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=$(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=$(l.text+c):""!==c&&f.push($(c)):X(c)&&X(l)?f[u]=$(l.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Lr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function De(e){this._init(e)}function Ee(e){return e&&(e.Ctor.options.name||e.tag)}function Le(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Pe(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Ee(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,l(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&yi.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Vr),key:'"'+e.slice(Vr+1)+'"'}:{exp:e,key:null};for(Wr=e,Vr=Hr=zr=0;!ct();)ut(Ur=st())?lt(Ur):91===Ur&&function(e){var t=1;for(Hr=Vr;!ct();)if(e=st(),ut(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){zr=Vr;break}}(Ur);return{exp:e.slice(0,Hr),key:e.slice(Hr+1,zr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Wr.charCodeAt(++Vr)}function ct(){return Vr>=Br}function ut(e){return 34===e||39===e}function lt(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){pr=!0;var e=o.apply(null,arguments);return pr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Fn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[bi])&&(e.change=[].concat(e[bi],e.change||[]),delete e[bi])}(i),K(i,o,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};t(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)e(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=e(o)?"":String(o);d=l,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=l)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?ki(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function _t(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function bt(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,ji(e.name||"v")),v(t,e),t}return"string"==typeof e?ji(e):void 0}}function wt(e){Mi(function(){Mi(e)})}function xt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&l(e._transitionClasses,t),_t(e,t)}function $t(e,t,n){var r=Tt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ei?Ii:Ni,c=0,u=function(){e.removeEventListener(s,l),n()},l=function(t){t.target===e&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ei,l=a,f=o.length):t===Li?u>0&&(n=Li,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ei:Li:null)?n===Ei?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ei&&Ri.test(r[Pi+"Property"])}}function At(e,t){for(;e.length1}function Et(e,t){!0!==t.data.show&&St(t)}function Lt(e,t,n){Pt(e,t,n),(Fn||Mn)&&setTimeout(function(){Pt(e,t,n)},0)}function Pt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Q(t.children)):e}function Ut(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function qt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Kt(e,t){var n=t?So:Co;return e.replace(n,function(e){return Ao[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',xo.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),_n=Object.prototype.hasOwnProperty,bn=/-(\w)/g,wn=d(function(e){return e.replace(bn,function(e,t){return t?t.toUpperCase():""})}),xn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,$n=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Tn=function(e,t,n){return!1},An=function(e){return e},Cn=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],On={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Tn,isReservedAttr:Tn,isUnknownElement:Tn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Tn,_lifecycleHooks:Sn},jn=/[^\w.$]/,Dn="__proto__"in{},En="undefined"!=typeof window,Ln="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Pn=Ln&&WXEnvironment.platform.toLowerCase(),In=En&&window.navigator.userAgent.toLowerCase(),Fn=In&&/msie|trident/.test(In),Nn=In&&In.indexOf("msie 9.0")>0,Mn=In&&In.indexOf("edge/")>0,Rn=In&&In.indexOf("android")>0||"android"===Pn,Bn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===Pn,Wn=(In&&/chrome\/\d+/.test(In),{}.watch),Un=!1;if(En)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Hn,zn,qn=function(){return void 0===Hn&&(Hn=!En&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Hn},Kn=En&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Jn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);zn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Gn=g,Xn=0,Zn=function(){this.id=Xn++,this.subs=[]};Zn.prototype.addSub=function(e){this.subs.push(e)},Zn.prototype.removeSub=function(e){l(this.subs,e)},Zn.prototype.depend=function(){Zn.target&&Zn.target.addDep(this)},Zn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&wr[n].id>e.id;)n--;wr.splice(n+1,0,e)}else wr.push(e);$r||($r=!0,H(ue))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Or={enumerable:!0,configurable:!0,get:g,set:g},jr={lazy:!0};Te(Ae.prototype);var Dr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:br,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Dr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){or.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return On},Object.defineProperty(e,"config",t),e.util={warn:Gn,extend:v,mergeOptions:I,defineReactive:S},e.set=O,e.delete=j,e.nextTick=H,e.options=Object.create(null),Cn.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Rr),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Cn.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,Cn.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(De),Object.defineProperty(De.prototype,"$isServer",{get:qn}),Object.defineProperty(De.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),De.version="2.5.13";var Br,Wr,Ur,Vr,Hr,zr,qr,Kr,Jr=u("style,class"),Gr=u("input,textarea,option,select,progress"),Xr=function(e,t,n){return"value"===n&&Gr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Zr=u("contenteditable,draggable,spellcheck"),Yr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Qr="http://www.w3.org/1999/xlink",ei=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ti=function(e){return ei(e)?e.slice(6,e.length):""},ni=function(e){return null==e||!1===e},ri={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ii=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),oi=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),ai=function(e){return ii(e)||oi(e)},si=Object.create(null),ci=u("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ri[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),li={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},fi=new Qn("",{},[]),di=["create","activate","update","remove","destroy"],pi={create:He,update:He,destroy:function(e){He(e,fi)}},hi=Object.create(null),vi=[li,pi],mi={create:Ke,update:Ke},gi={create:Ge,update:Ge},yi=/[\w).+\-_$\]]/,_i="__r",bi="__c",wi={create:pt,update:pt},xi={create:ht,update:ht},ki=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),$i=/^--/,Ti=/\s*!important$/,Ai=function(e,t,n){if($i.test(t))e.style.setProperty(t,n);else if(Ti.test(n))e.style.setProperty(t,n.replace(Ti,""),"important");else{var r=Si(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[_+1])?null:i[_+1].elm,i,d,_,o):d>_&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&T.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&T.setTextContent(c,""):r.text!==i.text&&T.setTextContent(c,i.text),t(l)&&t(u=l.hook)&&t(u=u.postpatch)&&u(r,i)}}}function _(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?si[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:si[e]=/HTMLUnknownElement/.test(t.toString())},v(De.options.directives,Ui),v(De.options.components,qi),De.prototype.__patch__=En?Bi:g,De.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=tr),ce(e,"beforeMount");return new Sr(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&En?Be(e):void 0,t)},De.nextTick(function(){On.devtools&&Kn&&Kn.emit("init",De)},0);var Ki,Ji=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Xi=d(function(e){var t=e[0].replace(Gi,"\\$&"),n=e[1].replace(Gi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Zi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Yi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(ki(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},Qi=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),to=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),no=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ro="((?:[a-zA-Z_][\\w\\-\\.]*\\:)?[a-zA-Z_][\\w\\-\\.]*)",io=new RegExp("^<"+ro),oo=/^\s*(\/?)>/,ao=new RegExp("^<\\/"+ro+"[^>]*>"),so=/^]+>/i,co=/^/g,"$1").replace(//g,"$1")),jo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});l+=e.length-h.length,e=h,r(d,l-f,l)}else{var v=e.indexOf("<");if(0===v){if(co.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(uo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(so);if(y){n(y[0].length);continue}var _=e.match(ao);if(_){var b=l;n(_[0].length),r(_[1],b,l);continue}var w=function(){var t=e.match(io);if(t){var r={tagName:t[1],attrs:[],start:l};n(t[0].length);for(var i,o;!(i=e.match(oo))&&(o=e.match(no));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&to(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(ao.test(k)||io.test(k)||co.test(k)||uo.test(k)||($=k.indexOf("<",1))<0);)v+=$,k=e.slice(v);x=e.substring(0,v),n(v)}v<0&&(x=e,e=""),t.chars&&x&&t.chars(x)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:fo,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,u){var l=i&&i.ns||_o(e);Fn&&"svg"===l&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=Xe(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,_="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,b={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(e,t){u[t]=e}):Object.keys(l).forEach(function(e){u[e]=l[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;u[n]=e}),t(r.tag,i,a.i(s,c,u))}},x=function(){this._caches=Object.create(null)};x.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,l=j,h[T]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(t=e[u])||!function(){var t=e[u+1];if(l===D&&"'"===t||l===E&&'"'===t)return u++,r="\\"+t,h[T](),!0}()){if(i=d(t),(o=(s=I[l])[i]||s.else||P)===P)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(l===L)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(t))return null;if("string"!=typeof(u=t[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(e,t,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(e,t,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(e,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,u=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[e].concat(o))}return this._warnDefault(c,e,u,r);var l},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:_},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(b),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(function(e){console.log(e)})},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(function(e){console.log(e)})},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(function(e){console.log(e)})},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(function(e){console.log(e)})},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(function(e){console.log(e)})},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(function(e){console.log(e)}).then(function(){e.searchingLocation=!1}))},applyTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(function(e){console.log(e)}).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(e){c.headers[e]={}}),o.forEach(["post","put","patch"],function(e){c.headers[e]=o.merge(s)}),e.exports=c},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){return r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]}),(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===hn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return gn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):G(c)&&G(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Fr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Ee(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==hn.call(n))&&e.test(t));var n}function De(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Pe(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Le(e,n){return{staticClass:Fe(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Fe(e,t){return e?t?e+" "+t:e:t||""}function Ne(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(b=e.charAt(y));y--);b&&Ti.test(b)||(p=!0)}}else void 0===o?(g=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==g&&t(),a)for(i=0;i-1?{exp:e.slice(0,Kr),key:'"'+e.slice(Kr+1)+'"'}:{exp:e,key:null};for(zr=e,Kr=Jr=Gr=0;!st();)ct(qr=at())?lt(qr):91===qr&&function(e){var t=1;for(Jr=Kr;!st();)if(e=at(),ct(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){Gr=Kr;break}}(qr);return{exp:e.slice(0,Jr),key:e.slice(Jr+1,Gr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function at(){return zr.charCodeAt(++Kr)}function st(){return Kr>=Hr}function ct(e){return 34===e||39===e}function lt(e){for(var t=e;!st()&&(e=at())!==t;);}function ut(e,t,n,r,i){var o,a,s,c,l;t=(l=t)._withTask||(l._withTask=function(){dr=!0;var e=l.apply(null,arguments);return dr=!1,e}),n&&(o=t,a=e,s=r,c=Xr,t=function e(){null!==o.apply(null,arguments)&&ft(a,e,s,c)}),Xr.addEventListener(e,t,Bn?{capture:r,passive:i}:r)}function ft(e,t,n,r){(r||Xr).removeEventListener(e,t._withTask||t,n)}function dt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(e){if(t(e[ki])){var n=Ln?"change":"input";e[n]=[].concat(e[ki],e[n]||[]),delete e[ki]}t(e[xi])&&(e.change=[].concat(e[xi],e.change||[]),delete e[xi])}(i),q(i,o,ut,ft,r.context),Xr=void 0}}function pt(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function ht(e){var t=vt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function vt(e){return Array.isArray(e)?m(e):"string"==typeof e?Si(e):e}function mt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=vt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ht(i.data))&&v(r,n);(n=ht(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=ht(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ei(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ei(c,s,null==a?"":a)}}function gt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function bt(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Ii(e.name||"v")),v(t,e),t}return"string"==typeof e?Ii(e):void 0}}function _t(e){Vi(function(){Vi(e)})}function wt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),gt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),yt(e,t)}function kt(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Bi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=Fi,u=a,f=o.length):t===Ni?l>0&&(n=Ni,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Fi&&Ui.test(r[Mi+"Property"])}}function Ct(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&St(t)}function jt(e,t,n){Dt(e,t,n),(Ln||Nn)&&setTimeout(function(){Dt(e,t,n)},0)}function Dt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Lt(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Lt(e){return"_value"in e?e._value:e.value}function Ft(e){e.target.composing=!0}function Nt(e){e.target.composing&&(e.target.composing=!1,Mt(e.target,"input"))}function Mt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Rt(e){return!e.componentInstance||e.data&&e.data.transition?e:Rt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Y(t.children)):e}function Bt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[bn(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ht(e){e.data.newPos=e.elm.getBoundingClientRect()}function zt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',So.innerHTML.indexOf(" ")>0}var pn=Object.freeze({}),hn=Object.prototype.toString,vn=l("slot,component",!0),mn=l("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,bn=d(function(e){return e.replace(yn,function(e,t){return t?t.toUpperCase():""})}),_n=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),wn=/\B([A-Z])/g,Tn=d(function(e){return e.replace(wn,"-$1").toLowerCase()}),kn=function(e,t,n){return!1},xn=function(e){return e},Cn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],$n={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:kn,isReservedAttr:kn,isUnknownElement:kn,getTagNamespace:g,parsePlatformTagName:xn,mustUseProp:kn,_lifecycleHooks:Sn},On=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,jn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=jn&&WXEnvironment.platform.toLowerCase(),In=Pn&&window.navigator.userAgent.toLowerCase(),Ln=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===Dn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===Dn,Wn=(In&&/chrome\/\d+/.test(In),{}.watch),Bn=!1;if(Pn)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Bn=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Un,Hn,zn=function(){return void 0===Un&&(Un=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Un},qn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Hn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(e){this.subs.push(e)},Xn.prototype.removeSub=function(e){u(this.subs,e)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tCr&&_r[n].id>e.id;)n--;_r.splice(n+1,0,e)}else _r.push(e);kr||(kr=!0,U(ce))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){R(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var $r={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};xe(Ce.prototype);var Er,Pr,jr,Dr,Ir={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=(a=e,s={_isComponent:!0,parent:br,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Ir.prepatch(o,o)}var a,s,c},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==pn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||pn,e.$listeners=n||pn,t&&e.$options.props){ir.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};Rr=Ee,(Br={}).get=function(){return $n},Object.defineProperty(Rr,"config",Br),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=$,Rr.delete=O,Rr.nextTick=U,Rr.options=Object.create(null),An.forEach(function(e){Rr.options[e+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Ur),Rr.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},Rr.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)ue(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Wr=Rr,An.forEach(function(e){Wr[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}),Object.defineProperty(Ee.prototype,"$isServer",{get:zn}),Object.defineProperty(Ee.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Ee.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=l("style,class"),Qr=l("input,textarea,option,select,progress"),ei=function(e,t,n){return"value"===n&&Qr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ti=l("contenteditable,draggable,spellcheck"),ni=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},oi=function(e){return ii(e)?e.slice(6,e.length):""},ai=function(e){return null==e||!1===e},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),li=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),ui=function(e){return ci(e)||li(e)},fi=Object.create(null),di=l("text,number,password,search,email,tel,url"),pi=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(si[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),hi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ue,update:Ue,destroy:function(e){Ue(e,vi)}},yi=Object.create(null),bi=[hi,gi],_i={create:qe,update:qe},wi={create:Je,update:Je},Ti=/[\w).+\-_$\]]/,ki="__r",xi="__c",Ci={create:dt,update:dt},Ai={create:pt,update:pt},Si=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),$i=/^--/,Oi=/\s*!important$/,Ei=function(e,t,n){if($i.test(t))e.style.setProperty(t,n);else if(Oi.test(n))e.style.setProperty(t,n.replace(Oi,""),"important");else{var r=ji(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&C.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:fi[e]=/HTMLUnknownElement/.test(t.toString())},v(Ee.options.directives,qi),v(Ee.options.components,Xi),Ee.prototype.__patch__=Pn?Hi:g,Ee.prototype.$mount=function(e,t){return e=e&&Pn?Re(e):void 0,r=e,i=t,(n=this).$el=r,n.$options.render||(n.$options.render=er),se(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,se(n,"mounted")),n;var n,r,i},Ee.nextTick(function(){$n.devtools&&qn&&qn.emit("init",Ee)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,eo=d(function(e){var t=e[0].replace(Qi,"\\$&"),n=e[1].replace(Qi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),to={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=rt(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=nt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},no={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=rt(e,"style");n&&(e.staticStyle=JSON.stringify(Si(n)));var r=nt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ro=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",lo=new RegExp("^<"+co),uo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Lo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ho.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(vo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(po);if(y){n(y[0].length);continue}var b=e.match(fo);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(lo);if(t){var r,i,o={tagName:t[1],attrs:[],start:u};for(n(t[0].length);!(r=e.match(uo))&&(i=e.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=u,o}}();if(w){!function(e){var n,i,u,f=e.tagName,d=e.unarySlash;s&&("p"===o&&oo(f)&&r(o),l(f)&&o===f&&r(f));for(var p=c(f)||!!d,h=e.attrs.length,v=new Array(h),m=0;m=0){for(k=e.slice(v);!(fo.test(k)||lo.test(k)||ho.test(k)||vo.test(k)||(x=k.indexOf("<",1))<0);)v+=x,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:go,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||xo(e);Ln&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Ge(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t,n,r,i=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(r=i,F.test(r)?(n=(t=i).charCodeAt(0))!==t.charCodeAt(t.length-1)||34!==n&&39!==n?t:t.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.formatter=this.$root.$i18n.formatter,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[C]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===j&&'"'===t)return l++,r="\\"+t,h[C](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?t:r,!1===a()))return;if(u===D)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c,l=this._path.getPathValue(t,i);if(Array.isArray(l))return l;if(r(l)){if(!n(t))return null;if("string"!=typeof(c=t[i]))return null}else{if("string"!=typeof l)return null;c=l}return c.indexOf("@:")>=0&&(c=this._link(e,t,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s,c=i.apply(void 0,o),l=c.locale||t,u=this._translate(n,l,this.fallbackLocale,e,r,"string",c.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[e].concat(o))}return this._warnDefault(l,e,u,r)},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){var n;(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index dd72339..396049b 100644 --- a/web/index.html +++ b/web/index.html @@ -11,6 +11,12 @@
+
+
+ {{ notification.message }} +
+
+
@@ -80,7 +86,7 @@ Triggers tab --> -
+

{{ $t('triggers.timeTitle') }}

@@ -174,8 +180,14 @@
-
+
+ +
+ + + +

{{ $t('triggers.motionTitle') }}

@@ -227,11 +239,11 @@
- -
- -
+
+ +
+
@@ -316,6 +328,15 @@ {{ $t('triggers.timeInternet') }}
+ + + + + + + + + diff --git a/web/lang.js b/web/lang.js index 8fb3cf3..5dc8ad1 100644 --- a/web/lang.js +++ b/web/lang.js @@ -5,6 +5,7 @@ var messages = { firmwareVersion: 'Firmware version: ', copyright: 'Copyright © 2017 Mark van Renswoude', loading: 'Please wait, loading configuration...', + rebootPending: 'The system will be rebooted, please refresh this page afterwards', applyButton: 'Apply', applyButtonSaving: 'Saving...', @@ -109,6 +110,8 @@ var messages = { mapsTitle: 'Google Maps API', firmwareTitle: 'Firmware update', + ntpServer: 'NTP server', + ntpInterval: 'Refresh interval (in minutes)', ntpLat: 'Latitude', ntpLng: 'Longitude', ntpLocation: 'Get latitude / longitude from location', @@ -124,6 +127,22 @@ var messages = { mapsAPIKey: 'Google Maps API key', mapsAPIKeyhint: 'Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it\'s use for the Maps API.' + }, + + error: { + loadVersion: 'Could not load information about the system', + loadConnection: 'Could not load connection settings', + loadSystem: 'Could not load system settings', + loadTimeTriggers: 'Could not load time trigger settings', + loadMotionTriggers: 'Could not load motion trigger settings', + applyConnection: 'Could not save connection settings', + applySystem: 'Could not save system settings', + updateWiFiStatus: 'Could not retrieve WiFi status', + uploadFirmware: 'Error while uploading firmware', + updateSteps: 'Could not apply new step values', + searchLocation: 'Could not look up location coordinates', + applyTimeTriggers: 'Could not save time trigger settings', + applyMotionTriggers: 'Could not save motion trigger settings' } }, @@ -133,6 +152,7 @@ var messages = { firmwareVersion: 'Firmware versie: ', copyright: 'Copyright © 2017 Mark van Renswoude', loading: 'Een ogenblik geduld, bezig met laden van configuratie...', + rebootPending: 'Het systeem wordt opnieuw opgestart, ververse deze pagina nadien', applyButton: 'Toepassen', applyButtonSaving: 'Bezig met opslaan...', @@ -237,6 +257,8 @@ var messages = { mapsTitle: 'Google Maps API', firmwareTitle: 'Firmware bijwerken', + ntpServer: 'NTP server', + ntpInterval: 'Ververs interval (in minuten)', ntpLat: 'Breedtegraad', ntpLng: 'Lengtegraad', ntpLocation: 'Breedtegraad / lengtegraad ophalen op basis van locatie', @@ -252,6 +274,22 @@ var messages = { mapsAPIKey: 'Google Maps API key', mapsAPIKeyhint: 'Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API.' + }, + + error: { + loadVersion: 'Kan systeeminformatie niet ophalen', + loadConnection: 'Kan verbinding instellingen niet ophalen', + loadSystem: 'Kan systeem instellingen niet ophalen', + loadTimeTriggers: 'Kan tijd trigger instellingen niet ophalen', + loadMotionTriggers: 'Kan beweging trigger instellingen niet ophalen', + applyConnection: 'Kan verbinding instellingen niet opslaan', + applySystem: 'Kan systeem instellingen niet opslaan', + updateWiFiStatus: 'Kan WiFi status niet ophalen', + uploadFirmware: 'Fout tijdens bijwerken van firmware', + updateSteps: 'Kan trap instellingen niet opslaan', + searchLocation: 'Kan locatie coordinaten niet bepalen', + applyTimeTriggers: 'Kan tijd trigger instellingen niet opslaan', + applyMotionTriggers: 'Kan beweging trigger instellingen niet opslaan' } } } \ No newline at end of file diff --git a/web/site.scss b/web/site.scss index 8c85f88..d161488 100644 --- a/web/site.scss +++ b/web/site.scss @@ -28,6 +28,15 @@ $sliderValueColor: #808080; $warningColor: #302f28; $warningBorderColor: #000000; +$notificationColor: black; +$notificationBackgroundColor: #ffffcc; +$notificationBorderColor: #000000; +$notificationShadow: 0 0 10px black; + +$errorColor: black; +$errorBackgroundColor: #ffc6b3; +$errorBorderColor: #000000; + $smallScreen: "screen and (max-width: 767px)"; $mediumScreen: "screen and (min-width: 768px)"; @@ -282,6 +291,52 @@ input[disabled] } +.notificationContainer +{ + position: absolute; + top: 2rem; + z-index: 666; + + @media #{$mediumScreen} + { + width: 512px; + left: 50%; + } +} + + +.notification +{ + background-color: $notificationBackgroundColor; + border: solid 1px $notificationBorderColor; + box-shadow: $notificationShadow; + color: $notificationColor; + cursor: pointer; + padding: .5em; + margin-bottom: 2rem; + + position: relative; + + @media #{$mediumScreen} + { + left: -50%; + } + + .message + { + white-space: pre; + } + + + &.error + { + background-color: $errorBackgroundColor; + border: solid 1px $errorBorderColor; + color: $errorColor; + } +} + + .nodata { color: #808080; From d9d9b45956ebafd1eb320850b15424481eac70d5 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Thu, 18 Jan 2018 23:20:31 +0100 Subject: [PATCH 23/43] Implemented timezone lookup Very unstable at the moment, likely due to SSL's memory requirements combined with my lack of optimization --- src/assets/css.h | 26 +- src/assets/js.h | 4576 +++++++++++++++++------------------ src/charproperties.cpp | 12 + src/charproperties.h | 1 + src/config.h | 6 + src/global.cpp | 2 + src/global.h | 2 + src/main.cpp | 2 + src/main.debug.h | 3 + src/main.triggers.h | 161 +- src/settings/connection.cpp | 6 +- src/settings/system.cpp | 7 +- src/settings/system.h | 8 +- src/stairs.h | 2 + web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/site.scss | 2 +- 17 files changed, 2499 insertions(+), 2321 deletions(-) diff --git a/src/assets/css.h b/src/assets/css.h index 0d0537c..62da77c 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -138,18 +138,18 @@ const uint8_t EmbeddedBundleCSS[] PROGMEM = { 0x7c,0xa6,0x30,0x1c,0xa6,0xe2,0xcf,0x16,0x49,0xdb,0xf3,0x71,0x71,0x7e,0xbd,0x3c,0x9e,0x14,0xa0,0x3d, 0x7d,0x80,0x56,0x2e,0x92,0xf8,0xa9,0xab,0xbe,0xf4,0x26,0x09,0x74,0x2e,0x7f,0x02,0x69,0x71,0xc2,0x42, 0x98,0xff,0xe5,0x24,0x17,0x54,0x17,0xd4,0xf5,0x64,0x54,0xdf,0xf1,0x12,0x08,0x4b,0xda,0x2c,0x60,0xbc, - 0x20,0xd9,0x6a,0x13,0xe2,0xde,0x86,0xfd,0x05,0x81,0x37,0x62,0xb5,0xde,0x5f,0xae,0x5e,0x31,0xb7,0xfb, - 0x35,0x2d,0xf9,0x09,0x7b,0x2b,0x86,0x2a,0x1b,0x4a,0xfd,0xf7,0x9d,0xb6,0xfa,0x19,0x44,0xcf,0xc2,0xf5, - 0x20,0xdf,0xb8,0xb6,0xb9,0x54,0x71,0x74,0x27,0x46,0x12,0x2d,0x2c,0x74,0x92,0x20,0xb9,0xce,0x30,0x20, - 0x67,0x8b,0xea,0x7b,0x8a,0x37,0x74,0xa3,0xd9,0x43,0x1f,0x5e,0x6f,0xc7,0x0b,0xf6,0xf9,0xda,0x0c,0xfb, - 0x8c,0x9b,0x06,0x9d,0x70,0x37,0xbd,0x26,0x54,0xd0,0x6c,0x76,0xe6,0xe9,0x15,0x11,0x1c,0xfd,0x05,0x5d, - 0x8c,0x4b,0xa6,0xdc,0xe8,0x11,0x2a,0x9f,0x3f,0x9a,0x70,0xc3,0xdf,0x96,0x18,0x8f,0x98,0xde,0xae,0x50, - 0x81,0xf3,0xf9,0xf9,0x3f,0x79,0xbb,0x55,0xd1,0xd6,0xd8,0xdb,0x66,0xc4,0x06,0xff,0xb2,0x44,0x9e,0xa8, - 0xc9,0x4c,0xb8,0xdf,0xca,0xe1,0x43,0x43,0x68,0xe8,0xee,0x1e,0x94,0x08,0x28,0x9b,0x8f,0x45,0xa5,0xb9, - 0x39,0x29,0x48,0xcf,0x9d,0x9d,0x16,0x72,0xe6,0xf0,0xce,0x0a,0x40,0xcb,0xcc,0x46,0x11,0x8f,0xf5,0x72, - 0x51,0xa3,0x9f,0x17,0x99,0x2b,0xe2,0x48,0x85,0x83,0x8a,0xb5,0x50,0x09,0x79,0x1b,0xf8,0x78,0x57,0x0b, - 0x78,0xe3,0xf5,0x98,0x12,0x28,0x44,0x9d,0x21,0x71,0x5f,0xbf,0x43,0x63,0xc5,0x97,0xbd,0x76,0x7d,0xc3, - 0x55,0xc2,0x0a,0x02,0x7b,0x30,0x4e,0xa7,0x7b,0x87,0xf6,0x82,0xf1,0x73,0x8c,0xde,0xc4,0xfa,0xc4,0xde, - 0x07,0x29,0xff,0x03,0xbb,0xba,0x32,0x32,0x37,0x2e,0x00,0x00}; + 0x20,0xd9,0x6a,0x13,0xe2,0xde,0x86,0xfd,0x05,0x81,0x37,0x62,0xb5,0xde,0x5f,0xae,0x5e,0x71,0xb5,0x3b, + 0x64,0x7c,0xb0,0xf1,0xae,0x39,0xc9,0x4f,0xd8,0x58,0x31,0x94,0xd8,0x50,0xe7,0xbf,0xef,0xa8,0xd5,0xb3, + 0x17,0x0d,0x0b,0xd7,0x83,0x64,0xe3,0xda,0xe3,0x52,0x65,0xd1,0x1d,0x17,0x49,0xb4,0xb0,0xca,0x49,0x76, + 0xe4,0x3a,0xc3,0x80,0x9c,0x2a,0xaa,0x2f,0x29,0xde,0x50,0x8c,0x66,0x03,0x7d,0x78,0xbd,0x1d,0xaf,0xd6, + 0xe7,0x6b,0x33,0xec,0x33,0x6e,0x1a,0x74,0xc2,0xdd,0xf4,0x8e,0x50,0x41,0xb3,0xd9,0x81,0xa7,0x57,0x44, + 0x70,0xf4,0x17,0x74,0x31,0x2e,0x99,0x72,0xa3,0xe7,0xa7,0x7c,0xf8,0x68,0x62,0x0d,0x7f,0x55,0x62,0x3c, + 0x5f,0x7a,0xbb,0x42,0x05,0xce,0xe7,0x87,0xff,0xe4,0xd5,0x56,0x45,0x5b,0x63,0x63,0x9b,0x11,0x1b,0xfc, + 0xcb,0x12,0x49,0xa2,0x26,0x2d,0xe1,0x4e,0x2b,0xc7,0x0e,0x0d,0xa1,0xa1,0xbb,0x78,0x50,0xc2,0x9f,0x6c, + 0x3e,0x16,0x92,0xe6,0xe6,0xa4,0x20,0x3d,0x77,0x76,0x54,0xc8,0x69,0xc3,0x3b,0xd3,0x7f,0x2d,0x33,0x1b, + 0x45,0x3c,0xd0,0xcb,0x15,0x8d,0x7e,0x5e,0x64,0xae,0x88,0x23,0x55,0x0d,0x2a,0xd6,0x42,0x19,0xe4,0x6d, + 0xe0,0xe3,0x5d,0x2d,0xe0,0x8d,0x77,0x63,0x4a,0x94,0x10,0x45,0x86,0xc4,0x7d,0xfd,0x02,0x8d,0x55,0x5e, + 0xf6,0xda,0xdd,0x0d,0x57,0x09,0xab,0x06,0xec,0xc1,0x38,0x9d,0xee,0x05,0xda,0x0b,0xc6,0xcf,0x31,0x7a, + 0x13,0xeb,0x13,0x7b,0x1f,0xa4,0xfc,0x0f,0x98,0xb1,0x01,0x7f,0x34,0x2e,0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index 9b76e20..c3116d1 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2299 +4,2287 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x77,0xdb,0x46,0xb2,0x2e,0xfa,0x57, - 0x24,0x1c,0x6f,0x19,0x18,0xb6,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0x7e,0x26,0x4e,0xfc,0x8a,0x2d, - 0x3b,0xc9,0x28,0x1a,0x2d,0x88,0x04,0x25,0xc4,0x24,0xc0,0x00,0xa0,0x64,0x45,0xe4,0xf9,0xed,0xb7,0xbe, - 0xaa,0x7e,0x01,0x84,0x9c,0x64,0xaf,0xbd,0xee,0xf2,0xb2,0x08,0x74,0x37,0xfa,0x59,0x5d,0x5d,0xef,0xde, - 0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x09,0xca,0xb3,0xdf,0xb2,0x49,0x13,0x24,0x49, - 0x73,0xbd,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0xbd,0xb7,0xb7,0x95,0xb3,0x28,0xa7,0xab,0x79, - 0x36,0x96,0x9f,0xa1,0x2e,0x97,0x34,0x61,0x14,0x07,0xa6,0x4e,0x57,0x78,0x9a,0xcd,0xf2,0x22,0xdb,0xdb, - 0x93,0xdf,0x61,0xba,0x98,0x8e,0xe5,0x31,0x3c,0x3e,0xa1,0x76,0xe3,0xdb,0xda,0x1d,0xeb,0xdf,0x61,0xfa, - 0x29,0x2f,0xa5,0xf6,0xcc,0x3d,0x6f,0xc2,0xe6,0x22,0xaf,0x95,0x1d,0x42,0x74,0x53,0x65,0xcd,0xaa,0x2a, - 0x76,0xdc,0xa0,0xa2,0x1b,0xf3,0xbc,0xd3,0x84,0x55,0x74,0x93,0xcf,0xc2,0xe2,0xb8,0x3a,0x89,0x74,0x41, - 0x3c,0x9b,0xbe,0x8f,0x2e,0xd3,0x6a,0x27,0x4f,0x90,0x94,0xdc,0xe8,0xb4,0xf8,0x66,0xa3,0xf2,0x69,0x5c, - 0xa9,0x79,0x99,0x4e,0xb3,0x69,0xbc,0x7b,0xb8,0x19,0xe9,0x4f,0x33,0x7c,0x3a,0x49,0xe7,0xf3,0x30,0x37, - 0x35,0xa8,0x5c,0xb9,0xe7,0x26,0xa2,0x17,0xf9,0x2c,0xd9,0x3d,0x70,0x19,0x1b,0x34,0x53,0x24,0x37,0xb6, - 0xa2,0x66,0xb8,0x48,0x68,0xf2,0x87,0x93,0xa4,0xa0,0xbf,0xcb,0x24,0x08,0x54,0x13,0x1e,0xd0,0xe0,0x8e, - 0xfd,0xb5,0x51,0x45,0x74,0xe3,0xa6,0xb9,0x08,0x0f,0xa3,0x8d,0xea,0xe6,0x07,0xab,0x3a,0xdb,0xa9,0x9b, - 0x2a,0xa7,0x99,0x1c,0xd9,0x71,0x57,0x98,0x05,0x34,0xda,0x24,0x45,0x76,0xb5,0x93,0xd2,0xab,0x2a,0x92, - 0x32,0x4c,0x87,0xcb,0xaa,0x6c,0x4a,0x4c,0xf8,0xb0,0xca,0x7e,0x5f,0x65,0x75,0x43,0x9d,0x36,0xbd,0x42, - 0x7f,0x9b,0xac,0x98,0x86,0x85,0xf2,0x0a,0xca,0xa8,0x6c,0x0e,0xbd,0x15,0x1b,0x3d,0x6d,0xe1,0xfd,0x48, - 0x95,0xf4,0xf3,0x45,0xa4,0x52,0xfa,0xf9,0x2a,0x52,0xe8,0xe6,0x3f,0x23,0x35,0x49,0xaa,0xb0,0x8e,0x46, - 0x93,0xe1,0x43,0x5e,0xb7,0x54,0x4d,0x86,0x93,0x2a,0x4b,0x9b,0x2c,0xf1,0x97,0x49,0x37,0x5b,0xd1,0x6c, - 0x2e,0xb2,0xea,0x3c,0x0b,0x6b,0x95,0x45,0x34,0xc6,0xc9,0xf0,0x71,0x5a,0x4c,0xb2,0x39,0x1a,0xa0,0xaa, - 0xcd,0xeb,0x51,0xf9,0x31,0x2b,0x90,0xf6,0x25,0xd2,0xf2,0xda,0x15,0x3a,0x40,0x02,0x2d,0x4b,0x5f,0xed, - 0x6f,0xaa,0x72,0x91,0xd7,0x19,0xb2,0x29,0x15,0x95,0xd7,0x4b,0xea,0xca,0x14,0xdf,0x51,0x87,0xdd,0xfc, - 0x4e,0xdc,0xf3,0x90,0x00,0x35,0x5d,0xcd,0x9b,0x64,0xf2,0xb7,0x26,0x5c,0x5a,0x0c,0x8e,0x05,0xb0,0x77, - 0x1e,0x56,0x55,0x7a,0x7d,0x42,0xf0,0x9d,0xcc,0x05,0x68,0xa8,0x79,0xfb,0x41,0xee,0x75,0xb1,0x58,0xcd, - 0xe7,0xbb,0x49,0x92,0xf5,0xec,0xb8,0xcc,0x7d,0x51,0xf6,0x34,0xf1,0x4c,0x67,0xde,0xd6,0x4a,0x2a,0x5b, - 0x1c,0x3b,0xc0,0xb6,0x71,0x59,0xe6,0xd3,0x9d,0x03,0x3c,0x47,0x94,0x6e,0x5a,0xdc,0xb5,0x2d,0xee,0xed, - 0x85,0x59,0x72,0x9c,0x9d,0x44,0x0a,0x83,0x8a,0x66,0x65,0x15,0x0a,0xf8,0x12,0x40,0x27,0xd9,0x70,0x9e, - 0x15,0xe7,0xcd,0xc5,0xa8,0x78,0x90,0x8f,0x8a,0xc1,0x20,0x6a,0xa4,0x51,0x54,0xaf,0xb2,0xe3,0xe2,0x44, - 0x15,0xb4,0x86,0xa3,0x6c,0x4e,0x93,0x64,0xbe,0x2c,0x77,0x72,0xda,0x3a,0xd1,0x6b,0x6e,0xc8,0x03,0xc0, - 0x8b,0xb4,0x7e,0x7d,0x55,0xd0,0xfa,0x2c,0xb3,0xaa,0xb9,0xd6,0x9d,0x57,0x65,0xb4,0xb7,0xd7,0xae,0xb4, - 0x3c,0x51,0x25,0x55,0xca,0x40,0x57,0x0b,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0xe6,0xc9,0x56,0xa5,0x4d,0xf9, - 0x8e,0xd6,0xa6,0x38,0x1f,0xb9,0x85,0xbd,0xc9,0x6b,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xd1,0x6a,0x36,0xcb, - 0xaa,0x78,0x1b,0x5a,0xda,0x6b,0x27,0xc5,0x3a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xac,0xac,0x16, - 0x4f,0xd2,0x26,0xed,0xab,0x6b,0x55,0x08,0xbe,0x9b,0xba,0xc9,0x35,0xc5,0xf7,0xf6,0x32,0x9a,0x94,0xba, - 0x01,0x04,0x7b,0xc9,0x9b,0x76,0x07,0x3f,0xe4,0xd9,0xd5,0x5f,0xac,0xd8,0xfb,0x6a,0x6f,0xcf,0x7b,0xa1, - 0x6d,0x82,0x5a,0xc6,0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x9d,0x0d,0xcf,0xf4,0x57,0xe6,0xc9,0xef,0x98,0xf7, - 0x19,0xfa,0x26,0x53,0xdb,0xd7,0xa5,0x9a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x56,0x8b,0xb3,0xfe,0x69,0x2e, - 0x38,0xa7,0x53,0x5c,0xd6,0x32,0x26,0x84,0x5a,0xbf,0x37,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85, - 0xbf,0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0x67,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1, - 0xe7,0xe5,0xd9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80, - 0x11,0xf6,0xf6,0x68,0x97,0x0f,0x97,0xf9,0x52,0xbe,0x7c,0xff,0xf6,0xc5,0xbb,0x2c,0xad,0x26,0x17,0x6f, - 0xd2,0x2a,0x5d,0xd4,0x7f,0x11,0x16,0x3a,0x5f,0x75,0x60,0xad,0x93,0x2b,0xcb,0x9a,0x16,0xd3,0xb4,0x9a, - 0x3e,0xaa,0xca,0xab,0x3a,0xab,0x9e,0x16,0x97,0xf1,0xd6,0xf9,0x1a,0x7a,0x2d,0xd9,0x65,0x2b,0xd2,0xcb, - 0xfc,0x3c,0x6d,0xca,0x6a,0xbd,0x0e,0xde,0x66,0xe9,0xa4,0x79,0x95,0x36,0xf9,0x65,0x46,0x5d,0x49,0x6c, - 0x16,0xf6,0xe6,0x74,0x35,0x69,0x68,0x6c,0x7d,0x9d,0xbd,0xca,0x8b,0x69,0x79,0xd5,0x9f,0x37,0x2d,0x27, - 0xab,0x45,0x56,0x34,0x84,0x84,0xcb,0xea,0x69,0x3a,0xb9,0x88,0x53,0xc5,0x07,0x85,0xed,0xde,0x4e,0x16, - 0xb6,0x4e,0xfb,0x46,0x55,0x3d,0x04,0x0d,0x8e,0xf7,0x1e,0xdc,0xda,0x8c,0xf9,0xdc,0xcf,0x98,0x3a,0x00, - 0x45,0xc2,0xaf,0xcd,0xc6,0x61,0x3c,0xa2,0x04,0x2a,0x46,0x7b,0x69,0x75,0xce,0x3d,0xa9,0x0d,0xfa,0xab, - 0x08,0xfd,0x55,0x84,0xfe,0xd2,0xd0,0x66,0x49,0x25,0xe6,0x2c,0x2d,0x36,0x4a,0x8e,0xcc,0xb8,0x7b,0x80, - 0xe8,0x02,0x29,0x75,0xd6,0x66,0x71,0xbf,0x41,0x5d,0x24,0x05,0x75,0x74,0x9b,0x96,0x6a,0xc6,0x75,0x88, - 0x8f,0xe3,0x66,0x43,0x47,0xd6,0x46,0xd1,0x6e,0xeb,0x85,0x21,0x9c,0xea,0xcb,0x79,0x3a,0xc9,0xc2,0x7b, - 0xff,0xf9,0xb5,0xfe,0xc7,0x3d,0x15,0x04,0x91,0x4b,0xa2,0x94,0x3b,0x9c,0xb4,0xd9,0xb4,0xcf,0xb5,0xce, - 0xa9,0xe6,0x50,0x67,0xbb,0x50,0x97,0xd2,0xa2,0xa9,0xb7,0x53,0x05,0x32,0x83,0xb1,0x45,0xd8,0x9d,0xab, - 0x08,0x73,0x48,0x13,0x56,0xd8,0xb9,0xa3,0x79,0xe3,0xa9,0xf6,0xa7,0xce,0x92,0x58,0xc3,0x74,0xb9,0x9c, - 0x5f,0xf3,0x68,0xb7,0xbb,0x69,0x97,0xda,0x1b,0xf4,0xee,0x6e,0x36,0x9c,0x94,0x04,0xe0,0x15,0x41,0x59, - 0x59,0xf5,0xce,0x5f,0xab,0xc4,0xd0,0x60,0x70,0xe0,0xbc,0xbe,0x74,0xec,0xdb,0xbe,0x39,0xe8,0x1c,0xd8, - 0x38,0x29,0x91,0x4a,0xc0,0xbf,0xd5,0x62,0xd8,0xd0,0xf1,0x3a,0x04,0x9d,0xf1,0x8c,0xe8,0xc1,0xe6,0xc5, - 0xd3,0xfe,0x65,0x1d,0xd6,0xf3,0x7c,0x42,0xf5,0x10,0x04,0xc8,0x63,0x78,0xa0,0x0e,0x22,0xaa,0x11,0x83, - 0x3a,0x35,0xfd,0x89,0x98,0x4c,0x6d,0x36,0x7f,0x8b,0x18,0x01,0x99,0x6c,0xe8,0x98,0x1a,0xc4,0x26,0xde, - 0xf3,0xa2,0xc9,0xaa,0x49,0xb6,0xa4,0xd1,0xd2,0xb9,0xa8,0x29,0xc0,0x98,0x49,0x44,0x55,0x65,0xf5,0x92, - 0x26,0x23,0x93,0xd7,0x8d,0xa5,0xf1,0xfe,0x29,0x34,0xde,0x7d,0xa1,0xf1,0x0e,0xff,0x5b,0x88,0xbc,0xc3, - 0x7f,0x11,0xa8,0x6f,0x53,0x93,0xad,0xd9,0xda,0x3e,0x15,0x98,0xb6,0x28,0x35,0xb5,0x77,0xb3,0xaa,0xe6, - 0xb1,0x83,0x81,0x83,0x93,0x8d,0x72,0x6f,0x87,0x27,0x51,0xa4,0xbc,0xc2,0xb9,0x6a,0x0d,0x48,0xdd,0x2c, - 0xb2,0xe6,0xa2,0x9c,0xc6,0xc1,0x79,0xd6,0x04,0x1b,0xd0,0x8d,0x43,0x49,0x21,0x12,0x45,0x1e,0x88,0x14, - 0x78,0x51,0x5e,0x65,0xd5,0xe3,0xb4,0x26,0x2c,0x21,0x53,0x98,0x1c,0xd7,0x4a,0x8e,0x0f,0x22,0x54,0x12, - 0x43,0x1a,0xd2,0xc8,0xcb,0xf9,0x65,0x46,0x5d,0x1e,0x01,0xa0,0xb7,0x66,0xca,0x0c,0x6e,0xa8,0xd1,0x50, - 0xe8,0x0f,0xb2,0x19,0xae,0x8a,0xfa,0x22,0x9f,0x35,0x84,0xb8,0x67,0xab,0xf9,0x2c,0x9f,0xcf,0xb3,0xa9, - 0x42,0xa5,0xc0,0x36,0xd9,0x34,0xa2,0x1d,0xdb,0x57,0xa3,0x4c,0xf6,0x2d,0x55,0x2e,0x57,0xf5,0xc5,0xed, - 0xf5,0x8d,0x1a,0xb3,0x95,0x22,0xda,0x78,0xc3,0xe6,0x22,0x63,0xf8,0xe1,0x4e,0x50,0x63,0xe6,0xc9,0xc7, - 0x45,0xa5,0x6d,0xe8,0x38,0x98,0x66,0xf3,0xac,0xc9,0x02,0xc5,0x53,0xa7,0x82,0x0b,0x02,0x52,0xfa,0x29, - 0x97,0x68,0xbe,0x0e,0x4e,0x54,0x0b,0xe0,0xdd,0x12,0x13,0x49,0x98,0x78,0x08,0xcb,0x61,0x32,0x1e,0x9d, - 0x9e,0xa2,0xd0,0xac,0x57,0xb1,0x5e,0x13,0xf6,0x34,0xab,0x94,0x29,0xac,0x35,0x21,0x2f,0xda,0xd3,0x51, - 0xab,0x33,0xcb,0xb2,0x46,0x27,0x96,0x2b,0xfe,0x9b,0x36,0x93,0x8b,0xbf,0xde,0x03,0x20,0xcd,0xcf,0xf5, - 0xa1,0xea,0xeb,0x83,0x9a,0x82,0x5c,0x2b,0x74,0x57,0xdc,0x36,0xaf,0xfe,0xc6,0xee,0x02,0x2a,0xda,0x2d, - 0x87,0x1e,0x9d,0x22,0x67,0x77,0x3b,0xe5,0x38,0x78,0x5c,0xd2,0x9a,0x17,0xcd,0xfe,0x11,0x75,0x3e,0x38, - 0x89,0x00,0xfd,0xdd,0xc4,0xa4,0x11,0xc2,0x36,0xf7,0x37,0x19,0xef,0xb1,0x9b,0x76,0xc9,0x38,0x00,0x62, - 0xcc,0x27,0x29,0x3a,0x71,0xef,0xd3,0xfe,0xd5,0xd5,0xd5,0x3e,0x4d,0xe3,0x62,0x9f,0x46,0x95,0x15,0x93, - 0x92,0x78,0x4e,0xda,0x07,0x93,0xe4,0x26,0x9d,0xa6,0x4b,0x82,0xb4,0x38,0xec,0x3b,0x52,0x7f,0x7e,0xf9, - 0xe2,0xbb,0xa6,0x59,0xbe,0x95,0x99,0x1a,0x63,0x7f,0xff,0x8b,0x58,0xf1,0x9e,0x92,0x34,0xeb,0x93,0xac, - 0x26,0xea,0x21,0x94,0x42,0xc4,0x04,0x12,0x6c,0x55,0x69,0x51,0xa3,0x55,0x5d,0x41,0x7c,0xdc,0x7b,0x42, - 0xe0,0x6c,0x6b,0xf7,0x1e,0x8b,0xee,0xa8,0x65,0x46,0x9a,0x48,0xf0,0xe8,0x4b,0x9b,0xd6,0x79,0x15,0x82, - 0xc9,0xbe,0x82,0x30,0x73,0x45,0x89,0xde,0xa2,0x97,0x71,0x16,0x77,0x2a,0xd3,0x04,0xee,0xd8,0xd0,0xb4, - 0x9c,0xdf,0xa1,0x7c,0x90,0x1f,0x56,0xe8,0xe9,0x9f,0x4e,0xec,0x68,0x72,0x91,0x56,0x75,0xd6,0x24,0xab, - 0x66,0xb6,0xff,0xaf,0x00,0x60,0x63,0xf8,0x0c,0xda,0x66,0x5c,0xb9,0x10,0xaf,0xfd,0x75,0xfe,0x56,0x97, - 0xc5,0x56,0x15,0xdf,0xbf,0x7b,0xfd,0x6a,0x28,0x08,0x32,0x9f,0x5d,0x83,0xd3,0x8a,0xb3,0xcd,0x89,0x3f, - 0xc3,0x1a,0x1d,0x1f,0xfb,0xbb,0x01,0x1c,0xdb,0x16,0x56,0x8d,0x9a,0xea,0xfa,0x26,0x4b,0xb8,0xc6,0x25, - 0x5a,0xc1,0x01,0x36,0xc1,0x5e,0xc2,0x27,0x1b,0x73,0xb2,0xa2,0xf6,0x7c,0x91,0x95,0xab,0x26,0x3e,0x50, - 0x9f,0xea,0x6a,0xf6,0xb8,0x2c,0x3f,0xe6,0xd9,0xab,0x74,0x91,0xc5,0xc1,0xcf,0xef,0xde,0x3e,0xdb,0x3f, - 0x7a,0xfd,0xc3,0xd3,0x57,0x01,0xe7,0x7d,0x47,0x58,0x21,0xab,0x74,0xde,0xbe,0x9f,0xbb,0x48,0x3f,0xe9, - 0xa5,0x7d,0xc1,0x48,0x28,0xde,0x3f,0x54,0x97,0xe9,0x3c,0xa7,0x7d,0x95,0x11,0x25,0xd9,0xac,0xfa,0xe8, - 0xd4,0x9d,0xec,0x9b,0xe4,0xfe,0xc1,0x01,0x9d,0xb8,0x0f,0xbe,0x38,0x38,0xd8,0x6c,0x46,0x93,0xe1,0x05, - 0xb7,0x40,0x70,0x3e,0x29,0x17,0x0b,0xa2,0x8e,0x6f,0x1e,0x4e,0x80,0x1d,0xe3,0xad,0xa9,0x53,0x3b,0x0d, - 0x91,0x52,0xf7,0x88,0x88,0xc9,0xe9,0xf9,0x1f,0xf7,0xfe,0x11,0x6c,0xfe,0x1c,0xa1,0xb5,0x91,0x88,0x6d, - 0x0d,0x28,0xe4,0xe6,0x6f,0xe3,0xa0,0xd6,0xe7,0x06,0xbb,0xd4,0x51,0x0b,0x7f,0xfc,0x99,0xa8,0x00,0x9b, - 0xbc,0xe2,0x2d,0x7e,0x3b,0x7d,0x65,0xfb,0x94,0xb9,0xba,0x04,0xcb,0x11,0x45,0xdd,0xec,0xed,0x55,0x04, - 0x76,0xef,0x97,0x4b,0x73,0xa6,0x11,0xa3,0xd1,0xb4,0x53,0x18,0xc3,0x34,0x44,0x45,0x2a,0x99,0x13,0x96, - 0x58,0x51,0x3f,0xff,0x8c,0x74,0x70,0x9d,0x53,0xd8,0xed,0x5f,0xcb,0x91,0x7f,0x68,0xce,0xfc,0x2f,0xf4, - 0x99,0xff,0xa5,0x70,0xde,0x87,0x07,0x60,0xbd,0x3f,0x47,0xcd,0xcb,0xef,0xf0,0xac,0x29,0xd3,0xd6,0xcb, - 0xf0,0x8c,0x9e,0x43,0x49,0xa0,0x3d,0x4c,0x55,0x7d,0xd5,0x3f,0x1d,0x8e,0xd4,0x22,0x62,0x44,0x9f,0xd3, - 0xa1,0x87,0xfb,0x57,0x22,0xde,0x9a,0xd1,0x69,0x0f,0x7c,0xae,0x70,0xec,0xeb,0x35,0x1a,0x55,0x3e,0xa6, - 0x99,0x45,0x90,0x40,0xf2,0x5c,0x4c,0xbb,0xb8,0x97,0x87,0xbd,0x64,0xd2,0xb5,0x8d,0x17,0xd5,0x45,0x12, - 0x94,0x05,0xa8,0xb7,0x6b,0xe2,0x9b,0x9a,0x8c,0xf6,0x6e,0x71,0x4e,0x00,0x76,0x99,0xec,0x1e,0x8e,0xb0, - 0x05,0x7b,0x78,0x21,0x19,0x14,0x51,0x6e,0x7a,0xb8,0x3f,0x3f,0x29,0x17,0x04,0xb0,0xba,0x46,0xa2,0x11, - 0xaf,0xf2,0xe6,0xe2,0x71,0x95,0x4d,0xa9,0xfd,0x3c,0x9d,0xd7,0x41,0x5e,0xec,0x2c,0xd7,0x6b,0x42,0x43, - 0x43,0x42,0x34,0x34,0x19,0xa1,0xf4,0xa4,0xf7,0x73,0xe9,0x10,0x24,0x8b,0xdc,0x89,0x03,0xb5,0x1c,0x96, - 0x05,0x61,0xe8,0x73,0xa2,0x23,0xbc,0x69,0xa3,0xcd,0xce,0x39,0x7a,0x9b,0xb7,0x32,0x00,0xab,0xe9,0x8a, - 0xc8,0x71,0x9e,0xb8,0x45,0x22,0x6f,0x43,0x82,0x82,0xaa,0xa0,0x5d,0x4e,0x1d,0x0c,0xd4,0xb9,0x49,0x5d, - 0xa6,0x75,0x7d,0x55,0x56,0x53,0xa4,0x8e,0xa6,0xc3,0x87,0x94,0x56,0x56,0xf9,0x1f,0xbc,0x27,0x93,0xe0, - 0x51,0x5a,0xe7,0x93,0x9d,0x60,0x30,0x0f,0x17,0x03,0x3a,0x97,0x06,0xe7,0xd1,0x86,0x26,0x85,0x1a,0x5e, - 0x12,0x21,0xe2,0x91,0x5f,0x1e,0x60,0xaa,0x52,0xc6,0x49,0x9d,0x58,0x32,0xf6,0xb5,0x0f,0xef,0xb2,0x8a, - 0xa6,0x23,0xff,0x83,0xc8,0x5c,0xb5,0x4b,0x80,0xb5,0x1c,0x9a,0xde,0x67,0xe6,0x49,0x2d,0x8f,0x2f,0x4e, - 0xfc,0xc1,0xa0,0x35,0x02,0xf5,0x2f,0x69,0x03,0x2c,0x99,0xc8,0xbe,0x06,0xe2,0xa1,0x31,0x5c,0x62,0x07, - 0x40,0xb6,0xb5,0x1c,0xd6,0x8c,0x8a,0xd6,0xeb,0xa5,0xa5,0xb5,0x08,0xff,0xef,0xed,0x1d,0xe8,0x6f,0x6c, - 0x12,0xd1,0x65,0xd3,0xec,0xd3,0x6b,0x5a,0xd4,0x19,0x64,0x02,0x41,0x14,0xc9,0x0c,0xd1,0x38,0x09,0x9d, - 0x3c,0x9c,0xcf,0x0d,0x22,0x16,0x8c,0x28,0xeb,0x36,0x4e,0x69,0xb8,0xbd,0xd9,0x38,0x0f,0x58,0x6e,0x55, - 0x25,0x37,0x4c,0x69,0x64,0xb6,0x31,0x00,0x1d,0xb1,0x01,0x40,0x66,0xe0,0x90,0xdb,0x19,0x63,0xd7,0xa9, - 0xd8,0x3d,0x1e,0x51,0x59,0x25,0x23,0x89,0x0f,0xef,0xdf,0xff,0x22,0x71,0x23,0x1b,0xdf,0x3f,0xf8,0x32, - 0x36,0x2f,0xba,0x0c,0x8a,0x6f,0x95,0x0b,0x5e,0x95,0x3b,0x1a,0xee,0x03,0xfb,0x01,0x57,0xac,0x37,0x4c, - 0x5c,0x28,0xe2,0x82,0x66,0xf9,0x39,0x91,0x48,0x86,0x25,0x58,0x6e,0x46,0x39,0xb6,0x19,0x21,0x1f,0x45, - 0x70,0x49,0x03,0xda,0x08,0x68,0x65,0x55,0x55,0x56,0xfe,0x5a,0xac,0xc2,0x49,0x18,0xbc,0xca,0x1a,0x02, - 0x97,0x8f,0x3b,0x4f,0x91,0x1b,0xa8,0x4c,0xf1,0x14,0x2c,0x23,0xfb,0xf1,0x6d,0x60,0xc9,0x5f,0xeb,0xf4, - 0x1d,0xda,0x45,0xc1,0xc0,0xae,0xfa,0x20,0x58,0xd4,0x3b,0xd9,0xa7,0x49,0x96,0x81,0xb4,0xa1,0x3a,0x83, - 0xa7,0x8f,0x5f,0xbf,0x7a,0xf5,0xf0,0xd1,0xeb,0xb7,0x47,0x4f,0x9f,0x04,0xad,0xda,0xab,0x61,0x9f,0x14, - 0x23,0xd4,0x4b,0x79,0x0d,0x9c,0x45,0x6c,0xcc,0x59,0x42,0x40,0xd8,0xd9,0x86,0x6e,0x07,0x46,0x60,0x07, - 0xdb,0xc7,0xe2,0xf8,0x9a,0xa1,0x2b,0xec,0xa6,0x47,0xb1,0x30,0x11,0xa3,0x33,0x02,0xb7,0xe9,0xb1,0x64, - 0xbb,0x13,0xf3,0x24,0x39,0xe3,0x1d,0x11,0xd0,0x79,0xaf,0x37,0xb0,0x64,0x32,0xec,0x00,0x8d,0x1b,0x3c, - 0x3f,0xed,0xf0,0xb7,0x56,0xb4,0x35,0x23,0x40,0x99,0x68,0x64,0x05,0x04,0x13,0x68,0x5c,0xef,0x71,0x34, - 0x63,0x8b,0xd6,0x9a,0x13,0xac,0x6b,0xa7,0x2d,0x5a,0xbd,0x4c,0x4e,0xa8,0xce,0x88,0xa9,0xcb,0xcb,0x6e, - 0x5a,0x82,0x9d,0xd7,0x06,0x48,0x26,0x2a,0x96,0xad,0xa4,0x0e,0xc8,0x6a,0x12,0x43,0xe4,0xcb,0x01,0x4e, - 0xea,0x6d,0xb0,0x8e,0x9a,0x0b,0x5a,0x0e,0xe2,0x5d,0x7b,0x99,0xf2,0xb2,0x78,0x52,0x5e,0x31,0x5a,0x7b, - 0xa3,0x71,0xd9,0xde,0xde,0x72,0x98,0x4e,0xa7,0x4f,0x2f,0x41,0x5e,0xe4,0x35,0x8d,0x9f,0x46,0x12,0x18, - 0x4c,0x47,0x50,0xd0,0xf3,0x4d,0xa4,0x6e,0xa9,0xfc,0xfd,0xb2,0x5b,0xf5,0x8a,0x53,0xdc,0xd3,0x9f,0xb6, - 0xd5,0xae,0x02,0x73,0x34,0x71,0xba,0x08,0x96,0x1f,0xb8,0x57,0x30,0x2a,0xcc,0x4f,0x32,0x43,0xe6,0x9f, - 0x65,0x4b,0x9e,0xf3,0xf4,0x8c,0x0e,0x39,0x42,0x85,0x2b,0x68,0x63,0x04,0x72,0xb1,0x40,0xfe,0x9a,0x87, - 0x33,0x49,0x56,0x58,0x4f,0x3a,0x29,0x67,0x7f,0xe3,0xec,0xa6,0x53,0xf9,0x16,0xca,0x02,0x9f,0x68,0x6e, - 0x7e,0x28,0x3b,0x7d,0xd8,0x26,0xd8,0x46,0x85,0x46,0x0b,0x7b,0x7b,0xf9,0xde,0xde,0x6e,0x1e,0x9a,0xf7, - 0x68,0xdc,0x10,0x39,0x1b,0x68,0xc0,0xda,0x99,0xa5,0x84,0x22,0xa7,0x3b,0x00,0x9e,0x1d,0x29,0xb0,0x03, - 0xfa,0x98,0x76,0xad,0xf9,0x40,0x99,0x16,0x04,0x03,0x14,0x56,0xcb,0x54,0x80,0xbe,0x0d,0x8b,0xbf,0x3e, - 0x9a,0xc3,0xdb,0x47,0xa3,0x88,0x59,0x92,0x11,0xa5,0x7c,0x64,0x32,0xd6,0x01,0xf7,0x6e,0x15,0x4a,0xa9, - 0x2d,0xf6,0x3f,0x91,0x74,0x81,0xb3,0x24,0x6e,0xc7,0x09,0xd5,0x64,0x48,0x09,0x65,0x80,0xc0,0x1a,0x62, - 0xcc,0x49,0x21,0x1b,0x46,0xa4,0x1e,0x95,0xb7,0x79,0x92,0x5c,0x65,0x7f,0x4f,0x54,0x63,0xda,0x61,0x66, - 0xe3,0xfd,0xdb,0xe7,0x8f,0xcb,0x05,0xd5,0x44,0x50,0x19,0x66,0x9e,0xf4,0xee,0xbf,0xbe,0x3c,0xb8,0x77, - 0x9e,0xab,0xe0,0xff,0xfa,0x22,0xbd,0xff,0xfa,0xe2,0x21,0x27,0xc6,0xad,0xc4,0xfb,0x5f,0xde,0x3b,0x57, - 0xc1,0x9d,0x76,0xda,0x63,0x2e,0xa8,0xda,0x89,0x07,0x28,0x38,0x68,0xa5,0x7d,0xf5,0x88,0x0b,0x1e,0xb7, - 0x13,0x9f,0x70,0xe2,0x49,0x10,0x79,0xba,0xbf,0xcf,0x80,0x1b,0x61,0x84,0xdd,0xc6,0x68,0x5c,0x33,0x5e, - 0xd5,0x12,0x94,0x53,0x11,0x81,0xb0,0x6c,0xb4,0x86,0x88,0x12,0xf2,0x1e,0xc6,0xac,0x89,0xa8,0x54,0xe3, - 0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xf1,0xc9,0x28,0xb7,0xf8,0xb3,0xe9,0x2c,0x6e,0x9f,0x96,0x0b,0x1c,0xac, - 0xe1,0x0e,0x99,0x4d,0x0f,0x9b,0x41,0x12,0x1c,0xd3,0x50,0x94,0x9f,0x4e,0x04,0x98,0x56,0x7b,0xe5,0x7d, - 0x64,0x38,0x78,0xaf,0xa1,0x68,0x1b,0x98,0xb1,0x04,0x75,0x52,0x3e,0x7f,0xf7,0xda,0x74,0x31,0xce,0x7d, - 0x26,0x90,0xe5,0x5c,0xdb,0x1c,0x1e,0xd4,0xaa,0x90,0xec,0x10,0x72,0x8e,0x06,0x41,0x12,0x0c,0x58,0xc3, - 0x06,0x51,0x04,0x08,0xee,0x74,0xf8,0x5b,0x99,0x17,0x61,0xb0,0x47,0x93,0xac,0x67,0xae,0x44,0x45,0x83, - 0x24,0xdc,0x3f,0x84,0xba,0xc3,0x91,0x2a,0xe3,0x20,0x1a,0xd3,0x9f,0x18,0x65,0x07,0x65,0xf4,0xe7,0x00, - 0xd7,0x22,0xf0,0x8f,0x83,0x14,0xd4,0x6c,0x90,0xfa,0x64,0x1d,0xbd,0x9b,0x03,0x47,0x84,0x4b,0x5e,0x02, - 0x9f,0x40,0x2a,0xc8,0x9a,0xf4,0x1c,0x3f,0x9f,0x96,0x39,0x01,0x3b,0x3d,0xcd,0x08,0xe1,0x81,0xe1,0x12, - 0xfe,0x29,0x9f,0xed,0x2f,0xca,0x69,0x3e,0xcb,0xb3,0xe9,0x7e,0x9d,0x13,0x5a,0x94,0xb4,0x55,0xb1,0x95, - 0x3a,0x4f,0xeb,0xc6,0x96,0xc5,0x7b,0x39,0x31,0x7d,0x20,0xee,0x12,0xdc,0xf7,0x15,0x1d,0xe4,0x68,0x81, - 0x50,0xea,0xa7,0xeb,0xfd,0x6e,0x47,0xab,0x8c,0x78,0x7a,0x3a,0x4e,0xf1,0x44,0xc7,0xd4,0x7e,0x3a,0x6b, - 0xf8,0x0d,0xc4,0xec,0x3e,0x8d,0x8d,0x28,0x9d,0x93,0x5b,0xd8,0x0a,0x16,0x03,0xd2,0x06,0x2f,0x89,0xb3, - 0x71,0xfa,0xf8,0x8c,0xb8,0x76,0xb7,0xea,0xc3,0x9a,0x18,0xd0,0x26,0x0c,0x7e,0x2d,0x08,0x46,0x3a,0xdc, - 0x77,0xe9,0x2f,0x03,0xed,0x3a,0x45,0x9b,0x7f,0x08,0x71,0x3c,0x3e,0x5b,0x9d,0xd1,0x7c,0x87,0x07,0x84, - 0x76,0xa2,0xf6,0x59,0xad,0x8a,0xad,0x52,0xe5,0xe0,0x90,0x00,0x42,0x0e,0xcf,0x94,0x8e,0x70,0x42,0xbd, - 0xb6,0xe2,0x26,0xfa,0x26,0x39,0xd0,0xbb,0x67,0x84,0xcc,0x04,0xa4,0xc4,0xfe,0x84,0x09,0x10,0x26,0x05, - 0xc6,0xfc,0xcd,0x18,0x7f,0xe2,0xe3,0x93,0x08,0x18,0x8a,0xa6,0x30,0x3c,0x2e,0x4e,0xa2,0xd8,0xe6,0x0c, - 0x02,0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xeb,0x50,0xe2,0xcd,0xde,0x6d,0xb4,0xd5,0xd8,0xd7, - 0x03,0x38,0x7d,0x8c,0x35,0x3c,0xc8,0xac,0xf8,0x91,0x77,0x20,0x0d,0xe0,0x61,0x43,0xed,0x9c,0xad,0x68, - 0x07,0x05,0x17,0xb4,0x84,0x01,0x6c,0x09,0x9a,0x24,0x1f,0xe2,0x05,0xdb,0xee,0x96,0x22,0x37,0x78,0x8a, - 0xa5,0x98,0x62,0x61,0xe0,0xa4,0x9c,0xd3,0xbb,0x79,0x1c,0xbb,0x47,0x87,0xb1,0x62,0xd1,0x74,0xc4,0xc4, - 0xd5,0x00,0x3c,0xf1,0x39,0xfd,0xa8,0x9a,0xf1,0x4c,0x8c,0xb6,0xf0,0x30,0x36,0x0f,0xbe,0xde,0x64,0xec, - 0xbe,0x4c,0x6b,0x94,0xc5,0xcf,0x58,0x7e,0xbc,0x72,0xff,0xa7,0xd5,0x00,0x78,0x28,0xdd,0x08,0x1e,0x15, - 0xe6,0x0e,0x7d,0xa4,0x1f,0xb5,0x4c,0x9b,0x0b,0xce,0x0f,0xee,0x61,0xf1,0x28,0x55,0x27,0x0c,0x21,0x14, - 0x7a,0x08,0xcb,0x8f,0xb1,0x4b,0x44,0xa9,0x81,0x7b,0x15,0x41,0x3c,0xad,0x55,0x72,0x2f,0x5c,0xd4,0x79, - 0xb6,0xa6,0x09,0x02,0xd9,0x16,0xdd,0xcb,0x87,0x0d,0xa4,0x9d,0x4e,0xd3,0x06,0xf0,0x7f,0x08,0xe8,0xc7, - 0x26,0x37,0xca,0x33,0x6d,0x78,0xf1,0x74,0x9e,0xe1,0x2d,0x0c,0xd2,0xc0,0x9e,0x93,0xb4,0x46,0x9a,0x17, - 0x1f,0x9a,0x1d,0xa8,0xd7,0xc2,0x49,0x1f,0x0c,0xe5,0x20,0x50,0xc0,0xb8,0xae,0x20,0xf4,0x47,0x7f,0xe2, - 0xc2,0xd9,0x8d,0x98,0xf9,0x67,0x2a,0xd5,0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86,0xf0,0xe4, - 0x96,0x66,0x71,0xf7,0xe0,0xf3,0x67,0xb4,0xa7,0xf3,0xd1,0x5a,0x8d,0x05,0x91,0x62,0xb4,0xcb,0x93,0x40, - 0x3a,0xb4,0x03,0x34,0x45,0xbc,0x72,0xbd,0x93,0x52,0x5f,0x0a,0x26,0x6d,0x76,0x30,0xb3,0xe9,0x04,0x68, - 0x61,0x23,0x50,0x1d,0x3c,0x7c,0xf4,0xf8,0xc9,0xd3,0x67,0xdf,0x7e,0xf7,0xfc,0xfb,0x1f,0x5e,0xbc,0x7c, - 0xf5,0xfa,0xcd,0x8f,0x6f,0xdf,0x1d,0xbd,0xff,0xf0,0xd3,0xcf,0xbf,0xfc,0x3b,0x3d,0x9b,0x10,0x3b,0x7f, - 0x7e,0x91,0xff,0xf6,0x71,0xbe,0x28,0xca,0xe5,0xef,0x55,0xdd,0xac,0x2e,0xaf,0x3e,0x5d,0xff,0x71,0x70, - 0x78,0xff,0x8b,0x2f,0xbf,0xfa,0xe7,0x7f,0xff,0xeb,0xeb,0xc1,0xbd,0x24,0x18,0x15,0x4e,0x16,0xed,0x08, - 0x0f,0xe5,0xa5,0x0a,0x69,0xf0,0x55,0x2b,0x09,0x8b,0x98,0x04,0xcf,0xa5,0x5f,0x8f,0x4d,0xb7,0x0c,0xa7, - 0xd4,0x8b,0xa4,0x8c,0x5a,0xad,0x01,0x09,0x93,0xe8,0x69,0xcf,0x20,0x8c,0x21,0x68,0xab,0x93,0x03,0xd8, - 0xd7,0x8c,0x4a,0x0b,0x3d,0xeb,0x1a,0xa7,0xd7,0x24,0xa1,0x13,0x45,0xd5,0xff,0x45,0x84,0x53,0x3a,0x48, - 0x26,0x26,0xf7,0x9f,0x5f,0xec,0x35,0xdf,0x7c,0xf3,0xaf,0x7d,0xca,0xf8,0xc7,0xbf,0x22,0x46,0x37,0x61, - 0x9e,0xc8,0xc7,0x8f,0xa9,0xb7,0x54,0xa4,0x1e,0x24,0xc3,0xff,0xfe,0x2a,0x8a,0xbe,0xb9,0xff,0xd5,0x57, - 0x9a,0x60,0xc7,0xe8,0x8a,0x51,0x93,0x34,0x0f,0x1e,0xfc,0x6b,0x9d,0x9b,0xe3,0xe8,0x7f,0x19,0x81,0xdc, - 0x5c,0x55,0x79,0x4b,0x79,0x6f,0xa8,0x36,0x42,0x56,0x37,0x62,0xed,0x41,0xa7,0x7d,0xad,0xb5,0x21,0x7c, - 0x60,0xf6,0xd0,0x48,0x44,0x2d,0x30,0xff,0x27,0xd6,0x06,0x04,0x98,0x7b,0x7b,0xfa,0x13,0x73,0x52,0xd1, - 0x77,0x18,0x0f,0x9f,0xdd,0x05,0x30,0xf3,0xb7,0x2f,0x8f,0xac,0xf4,0x56,0x79,0x90,0x9d,0x7b,0xdf,0x62, - 0xff,0xd1,0x87,0x79,0xab,0x40,0xe9,0x15,0x98,0xb2,0x80,0x86,0x8a,0x94,0x10,0x5c,0x10,0x90,0xa7,0x2e, - 0xaf,0xce,0x26,0xab,0x0a,0x52,0x6f,0xb7,0x0b,0x19,0x77,0x27,0xb5,0x3e,0xe3,0x47,0x3b,0x74,0xc8,0x2b, - 0x30,0x97,0xf1,0xd6,0xe9,0x94,0x74,0x3e,0x1a,0x2e,0x98,0xcf,0xc2,0x10,0xde,0x66,0xe7,0x4f,0x3f,0x2d, - 0xc3,0x20,0xfc,0xcf,0x7a,0xf4,0xeb,0xaf,0xf5,0x3f,0xa2,0x90,0xa6,0x84,0xc8,0xb7,0x24,0x3c,0xfe,0xcf, - 0xe8,0xe4,0x1f,0x51,0xe0,0x94,0x3e,0x0d,0xf1,0x87,0xdb,0x73,0x75,0xfc,0xc5,0x89,0xc8,0x27,0xd0,0xf8, - 0xa2,0xbc,0x6c,0x1b,0x41,0xf0,0xee,0xe2,0x45,0xa1,0xb5,0x20,0x50,0xc3,0x8c,0x0d,0x8b,0xf2,0x2a,0x8c, - 0xf6,0xff,0xf5,0xcf,0x2f,0xb3,0xaf,0x88,0x9a,0x8e,0xbb,0x8b,0x06,0x99,0x53,0x7b,0x1c,0x2d,0x35,0xe9, - 0x76,0x3b,0xf4,0xc1,0xdf,0x20,0x8f,0x75,0xa7,0x2e,0x08,0x7c,0xe6,0x90,0x16,0x1f,0x9f,0xf8,0x04,0xa8, - 0xaf,0x81,0xa4,0x0a,0xfa,0xf5,0xd5,0xad,0x0a,0x64,0x81,0x6e,0xac,0x66,0x8d,0x65,0x1e,0xa2,0x59,0x63, - 0xe5,0x7a,0xbb,0xb0,0x50,0x42,0xfb,0x87,0x90,0x30,0xb8,0x96,0xb8,0x7c,0xb2,0x35,0x71,0xe6,0x2b,0x22, - 0x22,0x41,0x64,0x76,0x92,0x34,0xbf,0xd7,0xaa,0x48,0x53,0x1c,0x49,0x9b,0xca,0xb4,0xc4,0xad,0x5f,0x83, - 0x67,0x2b,0x60,0xc9,0xdc,0x86,0x18,0x50,0x7a,0x25,0x16,0xf1,0x7f,0xa8,0xc7,0x82,0x79,0xe1,0x67,0xf8, - 0x59,0x46,0x05,0xcf,0x67,0x9a,0xfb,0xcb,0xa6,0x61,0xd4,0x35,0xfc,0x3b,0xfc,0x5a,0x24,0xc4,0xb0,0xc0, - 0xb3,0xa6,0x7f,0xf4,0x7a,0x08,0x01,0x31,0xfd,0xde,0xc2,0x23,0x78,0xa6,0x7f,0x19,0xd8,0xa8,0xb3,0x54, - 0x4b,0xe7,0x76,0x27,0x5a,0x18,0xc3,0x7c,0x16,0x3d,0x24,0xf3,0xd0,0x66,0x2b,0x2d,0xa7,0x51,0x56,0xd4, - 0xeb,0x84,0xbe,0xac,0xe9,0x13,0x59,0x70,0x02,0x51,0x23,0x0b,0x85,0x6d,0x2e,0xf4,0x35,0x1d,0xcd,0x95, - 0x5f,0x8b,0x31,0x3f,0xb4,0x29,0x43,0x51,0x49,0xe8,0x4a,0xad,0xec,0x5f,0x4b,0x36,0x4f,0xda,0xe9,0x78, - 0xf3,0x99,0x86,0xdb,0x14,0xac,0x3d,0x5a,0x06,0x50,0xd8,0x68,0xc8,0x57,0x37,0xd0,0xf2,0x1a,0xd9,0xbd, - 0x6d,0xb9,0x39,0xd9,0x40,0x19,0x3e,0xd4,0xaa,0xbd,0xf5,0xba,0x36,0x8f,0x11,0x58,0xc4,0xb6,0xbc,0xa1, - 0x69,0xcf,0x6e,0x63,0x26,0x45,0x1e,0xe8,0xbd,0x77,0x52,0x84,0x77,0xa5,0xe2,0x1b,0xd5,0x53,0x53,0x4a, - 0xcf,0x74,0xc4,0x48,0x85,0xb0,0xcf,0x33,0xcc,0x2e,0x00,0xdd,0x29,0xb3,0x6d,0x4b,0xad,0x14,0xe5,0xbd, - 0x7f,0xae,0x6d,0x5a,0x59,0xa7,0x91,0x67,0x46,0xaa,0xf9,0x5b,0xaa,0x8b,0xcf,0xb0,0xa3,0x66,0x42,0xec, - 0x22,0x15,0x2d,0x12,0x87,0x4e,0x73,0xc6,0x18,0x9b,0x6d,0x4e,0xea,0x2f,0x08,0x0c,0x2c,0x21,0x13,0xee, - 0x66,0xeb,0x35,0x0c,0x37,0x4e,0x1f,0x3f,0x7c,0xf5,0xf8,0xe9,0x8b,0xd3,0xd3,0xff,0x81,0xf8,0xc1,0xd4, - 0x76,0xef,0x3f,0xe1,0x71,0xba,0xff,0xc7,0x09,0xfe,0xfc,0x3a,0xfd,0x75,0xf0,0xeb,0xfe,0xaf,0xc3,0x93, - 0x7f,0xc4,0xd1,0xf8,0xd7,0x7b,0xbf,0xde,0x33,0xb4,0x5f,0xf6,0x3f,0x92,0x6f,0x38,0xcc,0x38,0xf6,0x0c, - 0x86,0x7e,0xbd,0x37,0x10,0x9a,0x79,0x00,0x02,0xb4,0xf1,0x29,0xe2,0x7b,0x03,0xa1,0x75,0xff,0x64,0x72, - 0xda,0xd6,0x39,0x2d,0x52,0x2d,0xdb,0x14,0x3d,0x46,0x9a,0xc9,0xd6,0x99,0x11,0x88,0x51,0x6f,0x30,0x08, - 0xfd,0xcf,0x89,0xd3,0x25,0x46,0xc6,0x4f,0x89,0x61,0xc5,0xd4,0x22,0xb3,0xdc,0xa4,0x43,0x3f,0xe2,0x99, - 0x4d,0xff,0x2d,0x7c,0x08,0x49,0xa6,0x15,0x26,0xee,0x7a,0x1a,0x56,0x4b,0x15,0x41,0xaa,0x29,0x02,0x27, - 0x22,0x2f,0xe8,0x98,0x27,0xc2,0x7b,0x67,0xb1,0xaa,0x9b,0x9d,0xb3,0x6c,0x27,0xb5,0xb6,0x51,0xc3,0x40, - 0x5b,0x9c,0x8c,0xb8,0xd7,0x5a,0x32,0x98,0xf4,0x6a,0xb3,0x30,0x57,0x34,0x41,0xf2,0x41,0x91,0xe0,0x83, - 0x51,0x3b,0x1b,0x62,0xb4,0xb4,0x06,0x42,0x0a,0xcd,0x23,0x57,0x95,0xf3,0x7e,0xb4,0x69,0x90,0x23,0x38, - 0x0c,0xfd,0x45,0xfb,0x78,0xec,0x22,0xf3,0x8e,0x3e,0x45,0x1b,0x50,0x70,0x35,0x5a,0x66,0xeb,0x52,0x70, - 0x6a,0xd5,0xe5,0xaa,0x9a,0x64,0xfe,0x57,0x68,0xc9,0x30,0x79,0x37,0x0d,0x4e,0x0c,0x36,0x1d,0xaa,0x5a, - 0xa8,0x28,0x4b,0x70,0xaa,0xca,0xa9,0xc2,0xf0,0x73,0xeb,0x49,0xf5,0x37,0xf6,0xc6,0x4e,0x0f,0x8a,0x32, - 0x86,0x63,0x2c,0x77,0x6c,0x60,0x3b,0x06,0xc5,0x67,0xb7,0x85,0xdb,0x7d,0x1d,0x7a,0xb4,0x99,0xff,0x4b, - 0xee,0x0e,0x0d,0x1c,0x18,0x3e,0xac,0xb2,0x7e,0xf7,0x85,0x7e,0x60,0xcc,0x7a,0xed,0x5d,0xd7,0x6b,0x8c, - 0x8e,0x2d,0x5f,0x3d,0xa3,0xc7,0x6e,0x49,0x11,0x7a,0x19,0x51,0xd8,0xa6,0xbd,0x2b,0x0d,0xcf,0xd5,0xae, - 0xc4,0x37,0x5f,0xdf,0x32,0x2f,0x58,0xaf,0xb7,0xed,0x75,0x29,0xad,0xbe,0x5e,0x9c,0x95,0xf3,0x76,0xda, - 0x59,0x59,0xce,0xb3,0xb4,0xe8,0xb5,0x5f,0xff,0xdf,0xb1,0x78,0x17,0x11,0x1b,0x1b,0xd9,0x5e,0x14,0xbd, - 0x06,0xef,0x86,0x8a,0x66,0x4b,0x08,0xb6,0xbe,0x0b,0x2d,0x07,0xe5,0xa8,0xe3,0x6f,0x92,0x83,0xbd,0xbd, - 0x97,0x44,0xe3,0x0f,0x67,0xf3,0x12,0x46,0x5f,0xac,0x4d,0x27,0x96,0xb5,0x7e,0x96,0x17,0x4c,0x00,0x7b, - 0xb5,0xd6,0x9d,0xae,0x53,0xcf,0xc7,0x41,0xd0,0xe3,0xc1,0x32,0xee,0xca,0xfc,0x44,0x0c,0x7e,0x3f,0x8a, - 0x6d,0x17,0x5c,0xad,0x93,0xde,0xbe,0x3a,0x31,0x36,0xb1,0x34,0xe9,0x2b,0xea,0xd8,0x38,0x23,0xca,0xd4, - 0x7e,0x35,0xd7,0x96,0x90,0xd6,0xf2,0x52,0x9b,0xc0,0x0b,0x9b,0x1f,0x8a,0xfa,0xa0,0x4a,0xac,0x10,0x4b, - 0x41,0xce,0x99,0x1c,0x8c,0xf2,0x07,0x95,0xb1,0x1a,0xcb,0xc5,0x00,0xf3,0x38,0x3f,0x39,0x21,0x5c,0xe9, - 0x18,0x86,0x3e,0xf5,0xfb,0x71,0xd6,0x96,0x64,0x9d,0x6c,0xfa,0xac,0x3b,0xa8,0xd8,0xc9,0xc6,0xf5,0x71, - 0x65,0xdd,0x0e,0x8c,0xbf,0x80,0xd1,0xa9,0x66,0x9e,0x8c,0x8b,0xe5,0xc1,0xdf,0xec,0x1f,0x5a,0x31,0x31, - 0x77,0x99,0x4e,0x9c,0x42,0x1d,0x46,0x5e,0x6d,0xb3,0xd6,0x99,0x75,0x6e,0x56,0x1d,0x9b,0xdc,0x96,0x99, - 0xba,0xb9,0xec,0x99,0x8f,0x51,0x17,0x6d,0x78,0xc6,0x6b,0xc7,0x05,0xd1,0x73,0x21,0x7e,0x60,0x09,0x1c, - 0xf9,0x0d,0x2f,0xb7,0x8c,0x4e,0xb5,0x38,0xa4,0xea,0x31,0x08,0xd6,0x14,0xc6,0xb8,0xfa,0xe6,0x70,0xec, - 0x8c,0x58,0x6d,0x39,0xe0,0x00,0xee,0x37,0x9b,0xf1,0x9a,0x67,0x2b,0xe8,0x2d,0x86,0xa7,0x52,0x91,0xf5, - 0xb0,0x50,0x85,0xeb,0xc8,0x85,0x74,0x84,0xd8,0xf1,0xf5,0xfa,0x60,0xe4,0x96,0xde,0x94,0xdd,0x6f,0x68, - 0xc5,0x9d,0x05,0x6e,0x11,0x8d,0x8a,0xfd,0xfd,0x51,0x54,0xf1,0xa0,0x8e,0x8b,0x41,0x63,0xcd,0x6b,0x2b, - 0x57,0xe9,0x65,0x07,0x90,0xe0,0xa5,0xd1,0x44,0xf0,0xe1,0x48,0x30,0x1b,0x56,0x34,0xea,0xbe,0x58,0xb4, - 0x64,0x13,0xb0,0x8e,0x2e,0x08,0xb0,0x8a,0x07,0xce,0x29,0x84,0x00,0x0b,0x15,0xec,0xed,0x5d,0x42,0xfd, - 0x08,0x69,0xa4,0x85,0x2e,0x57,0xcd,0xb9,0x39,0x87,0x5d,0xd2,0xb5,0x03,0x18,0x6c,0xc3,0xc8,0x60,0x29, - 0x7d,0x24,0xf2,0x39,0x57,0xd1,0x8f,0x00,0xcd,0x2e,0x1d,0x84,0xbb,0x95,0x29,0x44,0x6c,0xcb,0x6e,0xb5, - 0xb7,0x67,0x37,0x18,0x55,0xa0,0x9f,0xa9,0x34,0x94,0x98,0xac,0x7c,0x48,0x78,0x6a,0x3c,0x79,0x3f,0xf1, - 0x2d,0xed,0x24,0xa9,0xbb,0xdc,0xdb,0x4b,0x1d,0x40,0xea,0x35,0x81,0x00,0x4b,0x1e,0xc1,0x22,0x65,0x97, - 0x59,0x75,0xed,0x9d,0xcf,0x1e,0x81,0xc9,0xe3,0xc0,0xb0,0x37,0x52,0xd9,0x7a,0x6d,0x2a,0xdb,0x3d,0x1c, - 0x89,0x44,0x43,0x83,0xe7,0xc7,0xec,0x1a,0x58,0x85,0xd8,0x25,0x3f,0xc1,0xd9,0x8f,0xd7,0xae,0xed,0x89, - 0x6d,0xbb,0xee,0xb6,0xdd,0x6a,0x19,0xde,0x37,0xba,0x71,0x67,0xfd,0x65,0x5a,0xf7,0xc0,0xfa,0xac,0x8b, - 0x41,0xb6,0xd6,0x90,0xba,0x6e,0xea,0x8b,0xac,0xdb,0x9c,0xee,0x19,0x31,0xc3,0xb6,0xa6,0x53,0xb7,0xeb, - 0x68,0x7c,0xdb,0xe6,0xe1,0x0d,0x76,0x96,0x90,0x63,0x7a,0x43,0xe0,0xf0,0x73,0x7b,0xc2,0xdf,0x6c,0x57, - 0x46,0xf3,0x16,0xdd,0xe8,0x19,0x91,0xe3,0xd3,0xf8,0x07,0x71,0x36,0x35,0x36,0x5f,0x65,0x71,0xa1,0x32, - 0x3a,0x91,0xb2,0x2a,0x3d,0x9b,0x67,0xf1,0xee,0x6e,0xa5,0x20,0x93,0x90,0x97,0x03,0x6d,0xcb,0xb0,0xd2, - 0x99,0x07,0x1b,0x0f,0x4b,0x1c,0x79,0x07,0x4a,0x8f,0xca,0x78,0x6f,0xef,0x5e,0xc1,0x0e,0x0c,0xac,0xd5, - 0xbc,0xa7,0x49,0x6c,0xdf,0xd4,0xcf,0x55,0xf5,0xb1,0x63,0xa3,0xf4,0x4b,0x11,0xca,0xe9,0xab,0xda,0x3f, - 0xee,0xe8,0x71,0xdf,0x7e,0xd2,0xca,0x7e,0xbd,0x87,0x27,0x46,0x3c,0xf3,0x5a,0x4c,0x70,0xf5,0x5e,0xfe, - 0x05,0xb6,0x34,0x4d,0x7a,0xae,0x2c,0x37,0x3b,0xb9,0xc8,0xe7,0xd3,0x2a,0x2b,0xc0,0x3d,0xc1,0x7e,0x83, - 0x40,0x71,0xbe,0x50,0xac,0x9e,0xe4,0x77,0x64,0xa4,0xf5,0x75,0x31,0x79,0x96,0xc2,0x9e,0xfd,0xda,0x29, - 0x44,0x87,0x05,0x78,0x65,0x54,0x2d,0xb2,0xb8,0x26,0x9f,0x00,0x15,0xeb,0x47,0x4a,0x25,0xe8,0xa3,0x04, - 0xfa,0xcb,0x25,0x1e,0x13,0x57,0x4a,0xfd,0xe1,0x22,0xfa,0x99,0xd2,0x67,0xc5,0x63,0x69,0x88,0xd2,0xed, - 0x33,0xa7,0xeb,0x8e,0x73,0xba,0x1d,0x04,0x3d,0xbf,0x9b,0xd0,0xda,0x3d,0x9f,0x72,0xba,0x7e,0x96,0xfa, - 0xe7,0x34,0x5e,0x76,0x91,0x6c,0x44,0xa1,0xaa,0x07,0x46,0x2f,0x95,0x7d,0x49,0x1e,0x7b,0x39,0x30,0x0d, - 0x8a,0xa0,0x7e,0x2d,0xfc,0xc2,0x85,0x5f,0xb8,0x68,0x17,0x26,0x84,0xe1,0x66,0xfc,0x71,0x17,0xe4,0x2d, - 0x96,0x6d,0xe3,0x4d,0x7d,0x52,0x16,0x7c,0x44,0xe2,0x80,0x4c,0x68,0xad,0xe8,0xc7,0x73,0xec,0xf0,0x6a, - 0x7d,0xe8,0xad,0x23,0xb6,0xbb,0x78,0xf0,0xec,0x86,0x2d,0x7f,0x9b,0x5f,0x0a,0xbb,0x85,0x70,0x90,0x05, - 0xa7,0xa7,0xe5,0xd9,0xe9,0x69,0xc0,0xd6,0x26,0xf2,0xec,0x97,0x2e,0xab,0x31,0x3a,0x27,0x19,0x71,0x4e, - 0x64,0xf7,0x45,0xb9,0x9a,0x4f,0x69,0xb2,0x69,0xe3,0xd3,0x64,0xed,0xfe,0x51,0xb0,0x95,0x5f,0x17,0x9b, - 0xad,0xd7,0x20,0x96,0x28,0x47,0xef,0x9d,0xbc,0x7e,0x0a,0xef,0x93,0x3a,0x3f,0x63,0x73,0x59,0xfa,0x90, - 0xfd,0x09,0x88,0x0a,0xc5,0xb4,0xf1,0x98,0x59,0x65,0xce,0xec,0x3c,0x4f,0xeb,0xe5,0xe2,0x71,0xb9,0x2a, - 0x9a,0xc1,0xc0,0x3f,0x78,0xde,0xf9,0xea,0x70,0xc1,0xa3,0x6c,0x2d,0x57,0x10,0xf6,0xd4,0x2d,0x9d,0x67, - 0x8d,0xe7,0xc5,0xf7,0x24,0xab,0x27,0x55,0x0e,0x1b,0x77,0x9e,0x1b,0xc6,0xd6,0x29,0x61,0xeb,0x43,0xa2, - 0xf6,0xd2,0xa1,0xbf,0x35,0x8d,0x84,0x37,0x25,0x84,0x8b,0x4a,0x08,0x13,0xf2,0x63,0x4d,0x8f,0xf3,0x64, - 0x37,0xdf,0xdb,0x7b,0x88,0x83,0xec,0x33,0xb8,0xc0,0xc7,0x01,0x5b,0xdb,0x5e,0x51,0x95,0xbe,0xcc,0x51, - 0xb0,0x54,0x3d,0xae,0x0d,0xcd,0xe8,0xd4,0x17,0x3f,0x17,0xb4,0xcd,0x2a,0x2a,0x4f,0x53,0x53,0x52,0x4b, - 0x4b,0x58,0x5e,0x44,0x6a,0x4e,0xaf,0x73,0xbc,0xba,0xa4,0xee,0x81,0xb1,0xb7,0xe7,0x11,0xec,0x2d,0xf8, - 0xd2,0xbb,0x5f,0xbc,0x87,0x9a,0xae,0xd7,0x10,0xad,0x40,0x03,0xc3,0x4c,0xcc,0xbb,0x2c,0xb5,0x7b,0xfa, - 0x5c,0x8b,0x90,0x6d,0xb3,0x11,0x05,0x84,0xde,0x2c,0xab,0xa9,0xfd,0x51,0x36,0x86,0x3a,0x69,0x0f,0x13, - 0x0a,0x98,0x6a,0xbd,0x6e,0x76,0xd9,0x84,0x74,0x17,0xcf,0xe1,0x64,0x3c,0x71,0x64,0x54,0x4c,0xdd,0xb1, - 0x73,0xde,0xc0,0x36,0xb6,0x28,0x1b,0x90,0xaf,0x6c,0x23,0xef,0xe1,0xe8,0x3b,0x9e,0x7a,0xbf,0x0b,0x81, - 0xb4,0x76,0xa1,0x3b,0x2d,0xec,0xd1,0xc9,0x24,0xf6,0x22,0xfd,0x64,0x29,0x41,0xc5,0xa2,0x37,0x4d,0xe9, - 0x35,0xea,0x90,0xaa,0x53,0xbc,0x7b,0x1a,0x76,0x13,0xc5,0xfe,0xe1,0xa7,0xae,0x67,0xa7,0xab,0x5a,0x0c, - 0x5c,0x0b,0x2d,0xf9,0x31,0x9b,0xc5,0x39,0x10,0x09,0x9c,0xaf,0xd7,0x15,0x2c,0xad,0x34,0x58,0x8f,0x8b, - 0xb8,0x1a,0x87,0xef,0x08,0xbd,0xf0,0x09,0xc2,0xa3,0x20,0x54,0x84,0xb9,0x36,0x63,0x05,0x5d,0x66,0xac, - 0x67,0x0b,0x0f,0x5b,0xbf,0xb6,0xb4,0xc9,0x2d,0x43,0xf6,0x47,0xe3,0x99,0x2a,0xb8,0x7d,0x3c,0x72,0x7d, - 0xf2,0xb7,0xda,0x7a,0x2d,0x94,0x2d,0x6c,0xc8,0x8c,0xb5,0x6e,0x73,0x22,0x48,0xce,0xef,0x98,0xbf,0x02, - 0x4f,0x6d,0x67,0x7c,0xf3,0x0a,0x0b,0x77,0xd8,0xa8,0x6e,0x6b,0x6a,0x92,0x02,0x1a,0xa3,0x51,0xfd,0x20, - 0x35,0x50,0x58,0x03,0xb7,0x81,0x2e,0x4c,0xd2,0xe3,0xfa,0xe4,0x04,0x00,0x8a,0xa3,0x7e,0xc6,0x94,0xcc, - 0xb8,0x0c,0x2b,0x76,0x43,0x84,0x2e,0xe4,0x69,0x88,0x8d,0x1f,0x63,0xd9,0x0b,0x7a,0xe8,0x21,0x09,0xdf, - 0x74,0x24,0x6c,0xc5,0xb8,0xb3,0xe7,0xaa,0xa4,0xd7,0x9d,0xcd,0x78,0xf8,0xb2,0x4f,0x1b,0xf5,0xa0,0xef, - 0x38,0x1e,0x67,0x5e,0xa1,0xcc,0x51,0xd8,0xba,0x57,0xf9,0x26,0x6e,0xc6,0x99,0xdf,0x9e,0x2e,0xf1,0x34, - 0xfc,0x5c,0x93,0x4c,0x82,0xe0,0x0f,0x1a,0xfe,0x5c,0xb3,0x5e,0x41,0xe2,0xda,0xe2,0x26,0xf6,0x86,0xfd, - 0x5b,0x57,0x8c,0x36,0xce,0x8c,0x0a,0x9e,0xb6,0x53,0x17,0x4d,0x8c,0x9b,0x18,0x7a,0x7a,0xef,0xfb,0x27, - 0x8e,0xd8,0x11,0x79,0x4d,0x9b,0x69,0xd1,0x8c,0xbe,0xa7,0xcb,0xb9,0x84,0x03,0x14,0xc6,0x6c,0xab,0x78, - 0x6e,0x66,0xde,0x63,0xe2,0x6d,0x75,0x69,0x45,0xe8,0x65,0xbd,0x9e,0x57,0xa3,0x39,0x1c,0xed,0xe8,0x60, - 0x62,0xef,0x44,0xfc,0x41,0xa3,0x7d,0xd6,0x78,0xc0,0x7e,0xc4,0x60,0x0c,0xb5,0x1f,0x50,0x57,0x72,0x62, - 0x20,0x9a,0xf6,0xe3,0xb2,0x16,0x4b,0x1e,0x59,0x5f,0x06,0xb8,0x9b,0xcd,0x68,0x6b,0x7f,0x14,0xe2,0x3b, - 0x4e,0x07,0xac,0x45,0x7f,0x60,0x4a,0xba,0xf2,0x85,0x50,0xc2,0x2f,0x60,0x17,0xa4,0xc7,0x67,0x05,0xc1, - 0xdd,0x49,0x72,0x83,0x2c,0x51,0x53,0x39,0x4b,0xa1,0xd2,0xd4,0xc8,0xe7,0x06,0x50,0x44,0x11,0xe1,0xdb, - 0xfa,0x44,0xf1,0x87,0x35,0x7d,0x08,0xb0,0x1d,0xe7,0xb1,0x7c,0x9f,0x6f,0x46,0xba,0xbf,0x49,0xba,0x01, - 0xca,0xbc,0x65,0x48,0x79,0x81,0xb9,0xf7,0xc7,0x64,0x13,0x3f,0x37,0x30,0x99,0x69,0x26,0x17,0x7c,0xc6, - 0x9a,0x98,0x2e,0x66,0xac,0x6f,0x60,0x1c,0x13,0xe3,0x79,0xd3,0x3f,0x84,0x54,0x86,0xa0,0x8f,0xc1,0xe2, - 0x38,0x25,0x96,0x8b,0xfe,0xd0,0x18,0xea,0x88,0xd6,0x5b,0xbe,0x4f,0x09,0xc5,0x47,0xb1,0x3c,0xd7,0x9b, - 0x4d,0x77,0x18,0x66,0x10,0x74,0x40,0xe6,0x15,0xf5,0x97,0x68,0x57,0xbd,0x38,0xa6,0x95,0xca,0x6b,0x45, - 0x66,0x7a,0xd4,0xb3,0xf8,0x39,0xa8,0x02,0x0e,0x82,0x01,0x03,0xfd,0x38,0x57,0xab,0x25,0xac,0x03,0x69, - 0x0a,0x23,0x28,0xed,0x75,0x98,0x8c,0x46,0x47,0x81,0xe0,0x26,0x72,0xb6,0x71,0x02,0x14,0xe6,0x30,0xee, - 0x53,0xcd,0x70,0x91,0x7f,0x22,0x4a,0xc6,0x8d,0x8f,0xce,0xbe,0x3a,0x31,0xc9,0x66,0x8a,0xd2,0x07,0xf5, - 0x28,0x05,0x9b,0xc8,0x9f,0x9a,0x5c,0x1a,0x37,0x55,0xc2,0xcd,0x4c,0xe8,0x24,0xa2,0x59,0x47,0x2d,0x13, - 0x09,0x1c,0x40,0x0f,0x91,0x7b,0x6f,0x22,0x20,0xaa,0x09,0x51,0x3c,0x9c,0xae,0x77,0xc8,0xdc,0x6d,0x8c, - 0x17,0x6e,0x6f,0xf5,0x79,0xcb,0xd8,0xb9,0x00,0xb2,0xc5,0x40,0x68,0x28,0xca,0xd1,0x68,0x39,0x58,0x5f, - 0xa1,0x74,0xce,0xc0,0x5f,0x99,0x12,0xa5,0x57,0xa2,0x94,0x12,0x69,0x72,0x5a,0x84,0xa5,0x13,0x2e,0x50, - 0xa9,0x94,0xa0,0x8f,0xc6,0x12,0xe7,0x2c,0x55,0x40,0x49,0xfc,0x4d,0x7d,0xd9,0xc8,0xb3,0xee,0xd6,0x6f, - 0x8e,0xb3,0x13,0x55,0x26,0xbb,0xb4,0x6a,0x8a,0xd9,0x52,0x08,0x53,0xd0,0xec,0xcb,0xf0,0x91,0x88,0xd3, - 0x54,0x3e,0xe4,0x13,0x10,0xf4,0x09,0x9d,0x8f,0x68,0x28,0xd0,0x8e,0x90,0x41,0x34,0x4e,0x89,0xf7,0x8a, - 0x5f,0x6a,0x19,0x97,0x29,0x0a,0xc3,0xfd,0x5d,0x56,0x49,0xa7,0xf4,0x73,0x24,0x6e,0xaa,0x61,0x9a,0x30, - 0x19,0x6d,0x05,0x8a,0x69,0x74,0x93,0xf6,0x99,0xee,0xcd,0xe0,0xc1,0x64,0x5b,0x30,0x9b,0xa2,0x31,0xde, - 0x97,0xf6,0x1c,0x00,0x0d,0x7b,0x47,0x23,0x0c,0xd9,0x69,0x12,0xdc,0xc0,0x49,0x2c,0x7b,0xb2,0x45,0x3e, - 0x60,0x25,0x95,0xc3,0x53,0xce,0xa1,0xd4,0xb1,0xf7,0xdc,0x27,0x61,0x85,0x6b,0xef,0x33,0x27,0x9b,0x4f, - 0x5e,0x85,0x8d,0x0c,0x76,0x5c,0x59,0x6a,0xa7,0x22,0x70,0x05,0x4a,0xca,0x22,0xcd,0x6e,0x77,0x49,0xe8, - 0x51,0x37,0x01,0x5c,0xc8,0xc3,0x30,0x25,0xd2,0xbf,0x9b,0x51,0x3b,0xb3,0x07,0xbb,0x7a,0xaf,0x3c,0xfb, - 0x26,0x8c,0xde,0xf1,0x86,0x5a,0x4b,0xcf,0x7e,0xd7,0xb6,0x78,0xf8,0xeb,0xd5,0x20,0xba,0xe7,0xe1,0xf1, - 0xe6,0xf8,0x90,0xc6,0x16,0xb8,0x0a,0x5f,0xba,0x03,0xbd,0x7b,0x6c,0x18,0x80,0x7b,0x25,0xc2,0xc9,0x57, - 0xc6,0x3f,0xd5,0x44,0xe3,0xa8,0x1c,0x61,0x59,0x3c,0xa8,0x0c,0xe3,0xfe,0x8a,0x65,0x59,0xe6,0x03,0x27, - 0x49,0xb1,0x82,0x00,0xdb,0xf4,0x5b,0x6f,0xc5,0x1b,0x87,0x30,0x12,0x5a,0xdf,0xa4,0x1a,0xde,0x59,0xa6, - 0xc4,0x4a,0x35,0x23,0x67,0x00,0x64,0x97,0x92,0x7d,0x00,0x1e,0xa7,0x4b,0xaa,0x30,0x9b,0x32,0x2e,0xb0, - 0x5f,0x97,0x84,0x10,0xcb,0x07,0xb9,0xe9,0x57,0x89,0x08,0x21,0xd5,0x35,0x0f,0x0f,0x26,0x8c,0xd8,0x11, - 0xb2,0x56,0x95,0x92,0xc6,0x75,0x07,0x9d,0xc0,0xe2,0x27,0xea,0x55,0xa5,0x82,0x56,0x1b,0x3b,0x17,0x65, - 0xf9,0x11,0x6e,0xeb,0x3f,0xe9,0x2e,0xbb,0x41,0xfc,0xe4,0x0d,0xe2,0x4e,0x21,0x5d,0xfb,0x4e,0x74,0xe6, - 0xdc,0xb2,0x9e,0xc3,0x4e,0x96,0x1f,0x5f,0x44,0x2a,0xb4,0xed,0x3f,0x32,0x42,0xdb,0x40,0x9b,0x4a,0xfb, - 0xdf,0x51,0x1f,0x1e,0x6d,0x75,0xe1,0x91,0xd7,0x85,0xdd,0x37,0x10,0x47,0xfd,0x56,0xd0,0xfe,0xeb,0xf1, - 0x11,0x82,0xb3,0x39,0xed,0x68,0xad,0x60,0xc9,0x46,0xfa,0x5d,0x9a,0x68,0xc9,0x86,0x3f,0xc0,0xa8,0xae, - 0x4a,0xb4,0xd4,0x28,0x4b,0x56,0x95,0xf1,0x0f,0x8f,0x46,0x2b,0x23,0xc8,0x4d,0x9c,0x2c,0xb0,0xa1,0xe7, - 0xc6,0x09,0x71,0x1a,0x16,0xc4,0x35,0x27,0xa1,0x57,0xe5,0xfb,0x0e,0xb7,0x4a,0xd5,0xb0,0x2d,0x44,0x5b, - 0x0f,0xa4,0x9d,0x09,0xad,0x7c,0xd2,0xce,0x8b,0x40,0x4b,0x50,0xd0,0x11,0x70,0x94,0x4f,0xb0,0x1a,0x7c, - 0xaa,0x15,0xec,0xbc,0xce,0x9a,0x16,0xf0,0x15,0xe8,0xf3,0x81,0x9a,0x56,0xe3,0x49,0x15,0x46,0x71,0x5d, - 0xc1,0xc0,0x66,0x37,0xeb,0x57,0xaf,0x68,0x45,0x58,0xe4,0x49,0x51,0xfa,0x74,0x63,0x05,0x74,0x63,0x6e, - 0x18,0xdf,0x21,0xcd,0x16,0x00,0xdf,0xa5,0x2c,0x29,0x52,0xde,0x22,0xd4,0x0b,0x89,0x05,0x85,0xf0,0x10, - 0x7c,0xb0,0x65,0x90,0x9f,0x55,0xe5,0x1f,0x70,0x9c,0x16,0x9b,0xa8,0x46,0xd3,0xea,0xe6,0x3c,0x6e,0x7c, - 0x76,0x2c,0x67,0x28,0x2f,0x60,0x01,0x48,0x87,0xb3,0x31,0xcc,0x2c,0xe0,0x3d,0x00,0x37,0x40,0x58,0x70, - 0x6a,0x5a,0xa7,0x69,0xd1,0x3a,0xd4,0x39,0x26,0xb9,0xbc,0x80,0x38,0x55,0x12,0x96,0x1d,0xfa,0x3c,0xda, - 0xfa,0xa6,0xa4,0xaf,0x4e,0x38,0x00,0x42,0x44,0xb3,0x7e,0x5e,0x45,0xf4,0x7f,0x38,0xa1,0xa3,0xa0,0xf2, - 0x17,0xf4,0x8f,0xb0,0x1d,0xea,0x4a,0x6b,0xe4,0x9c,0x6c,0x5a,0x81,0x30,0x98,0x15,0x7c,0x5c,0xef,0x6e, - 0xd1,0x30,0x56,0xf2,0xec,0xe9,0xcd,0x9c,0x68,0x6e,0xe4,0xf0,0x41,0xa1,0x41,0xaf,0x57,0x8f,0x00,0x21, - 0x89,0x5f,0x43,0x66,0x45,0xda,0xdc,0x34,0x02,0x0f,0xb8,0x1e,0xff,0x1e,0x6a,0x61,0x82,0xb5,0xdf,0x57, - 0xb5,0xa2,0x03,0x9f,0x1b,0x4b,0xe5,0x74,0xa7,0xa9,0x07,0x35,0x30,0x61,0x8a,0x88,0x68,0x81,0xeb,0x0a, - 0xc8,0x19,0xee,0x96,0xb0,0xd0,0xa6,0x23,0x7f,0x4c,0x7f,0x6b,0xd4,0x8d,0xf3,0x50,0x4a,0x27,0x7f,0x60, - 0x59,0x54,0x45,0xfc,0x3a,0x1b,0x5f,0xd6,0x6a,0x3e,0x24,0x6a,0x3c,0x53,0x88,0xc3,0xc2,0x28,0x84,0x9e, - 0xe0,0xd3,0x46,0xf4,0x11,0x3f,0xc1,0xcc,0x3c,0x22,0xf8,0xa4,0x53,0x64,0x42,0xb5,0x4c,0xb8,0xab,0x44, - 0xed,0xa3,0xae,0x49,0x14,0xb9,0xfe,0x14,0xbc,0x1e,0x29,0xc8,0xd3,0x3c,0x0c,0x75,0x6f,0x22,0x69,0x45, - 0x3a,0x68,0x5a,0xf0,0x16,0xe6,0x87,0x50,0x0f,0xd1,0x53,0x4b,0x45,0x37,0x65,0xbf,0x0c,0x54,0xad,0x64, - 0x34,0x44,0x3b,0x6c,0xaa,0xb6,0xe0,0x08,0xe2,0x30,0xc2,0xbb,0x90,0xfe,0x0d,0x81,0x01,0x61,0x81,0xe1, - 0xde,0x88,0x4a,0x8a,0xf4,0x29,0x07,0x7b,0x40,0x5a,0x87,0x11,0x4f,0x4f,0x4d,0xb3,0x81,0x1e,0xc7,0x8d, - 0x8c,0x0b,0x52,0x06,0x7a,0x62,0x13,0x97,0x29,0xcd,0x5e,0x4d,0x23,0x44,0xba,0xec,0xfe,0x94,0x66,0x01, - 0x1f,0x4c,0x14,0x7d,0xa2,0x6a,0x5d,0x0c,0x9b,0x98,0xc5,0x5f,0xb5,0x1b,0xd5,0xf7,0xcc,0x05,0xea,0x91, - 0x61,0xc7,0x00,0x88,0x84,0x5a,0x00,0x35,0xe3,0xd8,0x73,0x44,0x31,0x01,0xd8,0x97,0xeb,0xb5,0xe6,0x6b, - 0xf9,0x95,0xce,0x20,0x5d,0x38,0xef,0x16,0xce,0xdb,0x85,0x73,0x14,0xde,0x6c,0x1f,0x58,0xdf,0x7a,0x32, - 0x57,0xb1,0xb2,0x67,0xf1,0x2c,0x61,0x24,0x6c,0x6c,0x6d,0x22,0x6f,0x04,0x96,0xee,0xb3,0x9f,0x7d,0x66, - 0x2d,0x04,0x53,0x9e,0xd5,0x2f,0x59,0xa7,0xbb,0x5e,0xff,0x80,0x78,0x2b,0xf2,0x02,0x95,0x62,0x76,0xfc, - 0x8e,0xb5,0x9a,0xf6,0x5c,0x3f,0x4a,0xcf,0xc5,0x6f,0x1f,0x8e,0xa6,0x42,0xfd,0xd0,0x36,0x80,0x07,0x80, - 0x21,0x86,0x41,0x75,0x78,0x9c,0xdd,0xbf,0x5b,0xd1,0x58,0x6c,0x6f,0x40,0x2b,0xf8,0xa2,0x59,0xf7,0xc1, - 0x2f,0xda,0xec,0xa0,0x2b,0x5c,0x88,0x3e,0x23,0x9f,0x37,0x5c,0x0a,0x68,0x55,0x5e,0x89,0x8a,0xdd,0x1a, - 0x20,0x3c,0xed,0xc8,0x92,0x69,0xd3,0xfc,0x9b,0x72,0xed,0x84,0x57,0x1e,0x25,0xfa,0xa3,0x39,0xb7,0x8a, - 0xf1,0x02,0xa7,0x3b,0x81,0x9d,0x88,0x83,0xe4,0xad,0xa3,0x61,0xcb,0x24,0xf3,0x86,0x33,0x67,0xb3,0x4e, - 0x2e,0x5b,0x0c,0x72,0x65,0x0b,0xea,0x97,0xe2,0x8d,0xce,0x66,0x52,0x3f,0xaa,0x8c,0x88,0x5a,0x4a,0x14, - 0x8a,0xcf,0xd3,0x46,0x67,0x3e,0x17,0x26,0x7c,0xd6,0xae,0x3b,0x0c,0x3c,0xfc,0xd3,0x8a,0x3b,0x66,0x44, - 0x68,0x5a,0x1a,0xc9,0x7c,0x6d,0x9a,0x94,0xbc,0x2d,0x50,0x05,0xcb,0x10,0xd3,0xa6,0xa9,0x6a,0xfb,0x40, - 0xe8,0xab,0x6c,0xac,0x17,0xb0,0x9f,0xa8,0x4a,0x23,0x3b,0x17,0x6b,0xba,0xd2,0xc9,0xb5,0x91,0xb0,0x5e, - 0x43,0x76,0x29,0x0a,0xdf,0x94,0x3f,0x88,0xc2,0xc2,0x80,0x01,0xdb,0x62,0x98,0x38,0x71,0xc7,0x27,0x84, - 0x14,0x78,0x3f,0x95,0x9e,0x04,0xa8,0xd6,0x5f,0x31,0x32,0xab,0xa1,0x66,0xc4,0x0f,0x0a,0x8f,0x82,0x26, - 0x5b,0x2c,0xe7,0xc4,0x62,0x01,0xea,0x4a,0x88,0xf9,0xc7,0x13,0xae,0x40,0x23,0x89,0x09,0xba,0xa6,0xc5, - 0xd9,0xeb,0x35,0x7d,0x11,0x4f,0x4c,0xfd,0x1b,0x1b,0xa0,0x68,0x2e,0x18,0xaa,0x38,0x9e,0x9f,0x68,0xc5, - 0x50,0x95,0x39,0x77,0x67,0x24,0xbb,0x08,0x20,0x4e,0x4a,0x90,0xdd,0x06,0xa1,0xbb,0x6d,0x10,0x25,0x12, - 0x66,0x87,0xf7,0x04,0xef,0x30,0x4f,0x8f,0x9f,0x79,0xda,0x48,0xcd,0xa9,0xdd,0x02,0xa7,0x1d,0x98,0x06, - 0x5d,0x3a,0xc6,0xe7,0xa2,0x59,0x8a,0x89,0xf3,0xa1,0x27,0x1c,0x83,0xac,0xa6,0x3c,0xa1,0xd9,0xef,0x51, - 0x17,0x96,0x99,0x51,0x3b,0x8e,0x32,0xbd,0x13,0x35,0x6d,0x1a,0x8d,0x22,0x56,0x31,0x9f,0xe6,0x45,0xca, - 0xbc,0xef,0xe7,0xa8,0xdd,0x34,0xb3,0x94,0xb6,0x51,0x4d,0x9f,0x0a,0xd3,0xfc,0x5c,0x7f,0x4d,0xd4,0x96, - 0xe2,0xc6,0x0c,0x4d,0x6a,0xd8,0xf6,0xad,0x92,0x86,0x02,0x68,0xb7,0xee,0xac,0x33,0xbc,0x1e,0xdd,0x78, - 0x2f,0x20,0xe7,0xba,0xb3,0x75,0xc7,0xac,0xb2,0x3f,0x6f,0xe8,0xab,0xcb,0x61,0x35,0x6a,0xcd,0x26,0xb9, - 0x5c,0x0f,0x41,0xcd,0x34,0xf0,0x85,0x82,0x75,0xd6,0x16,0x68,0x18,0x42,0x5d,0x33,0xb8,0x9e,0x30,0x80, - 0xf7,0x52,0xd1,0xdd,0x4b,0xa0,0xf8,0x0a,0x1b,0xda,0xd2,0xc6,0x8e,0x28,0x40,0xf4,0x15,0x20,0x90,0x07, - 0x81,0xa1,0xc0,0x69,0x34,0x44,0x04,0x7d,0x47,0x2f,0xec,0x36,0xc9,0x0c,0x60,0xb6,0x80,0x9d,0x01,0x0a, - 0xc4,0xc1,0xc0,0x47,0x0a,0xa0,0x19,0x84,0x26,0x51,0x0d,0x0f,0xfc,0x13,0x53,0x87,0xa7,0x30,0x26,0xaa, - 0x1a,0x5f,0x83,0xea,0x9b,0xf1,0xe4,0xd3,0x7d,0x22,0xcf,0xa6,0x44,0x51,0x3e,0x46,0xe0,0xa8,0xc7,0xd5, - 0x83,0x53,0x4b,0x71,0x3c,0xe6,0xee,0x26,0x04,0x04,0xa7,0xd5,0xf1,0xe3,0xea,0x24,0xa2,0x82,0xea,0xa8, - 0x62,0xa1,0x2d,0x53,0x1f,0xc3,0x6a,0x55,0x84,0xc6,0x92,0xea,0xaa,0xb2,0x94,0x4b,0x95,0x9c,0xda,0x17, - 0xaa,0x25,0xb1,0x55,0xa2,0x90,0xa1,0xa6,0xa9,0x26,0x28,0xb5,0x3f,0x56,0x09,0x3a,0x7a,0xd8,0x92,0xb3, - 0xfc,0x09,0xa1,0xed,0x2f,0xf2,0x81,0xc2,0xfa,0x41,0x94,0xbb,0x8b,0x90,0x9e,0x45,0x74,0x4b,0x45,0xae, - 0x12,0xd0,0x7d,0x66,0xf5,0xf0,0x1d,0x68,0xae,0xcb,0xc5,0xa8,0x1a,0x9e,0x5e,0x61,0x25,0xb2,0x8a,0x80, - 0xaa,0x80,0x34,0xfb,0x34,0xa7,0x93,0x6b,0x45,0x08,0x6a,0xba,0xb7,0x47,0xab,0x4e,0x7c,0x92,0x08,0x6a, - 0x18,0x1e,0x08,0xcf,0xab,0xdf,0xa9,0xd8,0x1d,0xe0,0xa5,0xcb,0xa6,0x2c,0xe1,0xeb,0xfb,0x3b,0x31,0x3e, - 0xbc,0x3e,0xb3,0x39,0xa1,0x8f,0xc0,0x5b,0x9d,0xb9,0x45,0xd9,0x77,0x2a,0x28,0x60,0xb6,0x8d,0xf1,0xd8, - 0x04,0x8c,0xfa,0x43,0x00,0xb8,0x51,0x54,0xa8,0xce,0xb6,0xad,0x9e,0x25,0x1b,0xa1,0xf8,0x6e,0xd3,0xd4, - 0x14,0xf4,0xa9,0xd7,0xec,0xca,0x36,0x2b,0x10,0xc9,0x1a,0xad,0x3e,0x99,0x54,0x31,0x0e,0x75,0xc7,0xaa, - 0xf1,0x8c,0xad,0xa8,0x0a,0xd3,0x89,0xf3,0x28,0x36,0x79,0x05,0xfe,0x8e,0x2b,0x9c,0xff,0x88,0x3a,0x47, - 0x20,0x4c,0xf3,0x65,0xca,0x23,0x2f,0x3e,0x37,0x5f,0x15,0xf8,0x3b,0xe6,0xbf,0xf1,0x79,0x74,0x6b,0x7f, - 0x9b,0x76,0x7f,0x67,0x3e,0xbe,0xdc,0x52,0x28,0xb1,0x91,0xdc,0x29,0x4e,0xdd,0x15,0xad,0xc2,0x4f,0xb2, - 0x5a,0x34,0xed,0xfd,0xe9,0x5a,0xb0,0x63,0x25,0xf7,0x2c,0xb6,0x6b,0xae,0x61,0x50,0x9b,0x41,0x2f,0x01, - 0xd9,0x6f,0xa4,0x3c,0x7d,0x54,0xe3,0x34,0x41,0x8d,0x68,0x2e,0xbc,0x6d,0x3f,0xcd,0x9c,0x28,0xc9,0xf8, - 0x0b,0xb2,0x8a,0x08,0x32,0x57,0x85,0xc8,0x50,0xda,0x78,0x3c,0x52,0xdb,0x52,0x30,0x56,0x03,0x32,0x46, - 0xa6,0x4d,0x73,0xe7,0x4a,0x3c,0xb9,0x45,0x38,0xec,0xec,0x5f,0x1c,0xca,0xcc,0xfe,0xdc,0xe2,0xe8,0x87, - 0x62,0xfc,0x36,0x9b,0xcd,0x91,0x53,0x5e,0x15,0x3f,0x88,0x7d,0xc3,0x70,0x96,0xcf,0x9b,0xac,0xea,0xb3, - 0x4e,0xfe,0x2b,0xfa,0xc3,0xa1,0xd3,0xf1,0x6d,0xa2,0xb8,0x63,0x3a,0xd1,0xc3,0x8d,0xdc,0x38,0x39,0x04, - 0xc8,0x57,0xa2,0x0c,0x10,0x3e,0x74,0x08,0xf1,0x29,0x64,0x91,0xa3,0x7a,0xc4,0xa3,0xa9,0x59,0xd0,0x74, - 0x99,0x4f,0xb1,0x8f,0x98,0xce,0xf7,0x52,0x88,0x1e,0xa2,0x6f,0x12,0x2f,0x05,0xa2,0xd9,0x33,0x1a,0xec, - 0xc7,0x0d,0x31,0x09,0xe6,0xf0,0x01,0xd7,0xb7,0x0b,0xc3,0x41,0x23,0x27,0x83,0xac,0x92,0x3e,0x14,0xc8, - 0x98,0x48,0xc3,0x46,0x60,0xc6,0x35,0xf6,0xc0,0xb8,0x55,0xc3,0x11,0xb4,0x4e,0x36,0xd6,0x18,0xc8,0x5b, - 0xe4,0x8b,0x4c,0x0c,0x4c,0x2c,0x83,0x0b,0x8e,0x69,0x5b,0x26,0xcd,0x12,0xbf,0xed,0xc0,0x40,0x5a,0x00, - 0x6f,0x35,0xdc,0xd6,0x1c,0x4b,0x95,0x84,0xee,0x52,0x87,0x82,0xca,0x07,0x29,0x0b,0x6b,0x2a,0x74,0x94, - 0x36,0x37,0x07,0x5d,0x75,0xb2,0xf7,0x6d,0x03,0xc0,0xed,0xaa,0xb9,0x4e,0xaa,0x28,0xf3,0x2b,0x2a,0x07, - 0x87,0x7e,0x3d,0xb9,0x21,0x6c,0xb7,0xec,0x60,0xfc,0xaa,0xea,0x4e,0x2f,0xeb,0x6e,0x2f,0x27,0x49,0x8d, - 0x0e,0xda,0xce,0x4e,0x88,0x5f,0x54,0x4e,0x12,0xab,0xe9,0x61,0x46,0x97,0x1f,0xe0,0xd9,0xcf,0xe1,0x0d, - 0x7c,0xd3,0x27,0x6f,0xe7,0x98,0xe0,0x5b,0xbc,0x63,0xef,0xd4,0xb0,0x52,0x98,0xbe,0x23,0xa2,0xcd,0x6c, - 0xd6,0x12,0x31,0xd6,0x98,0x94,0xad,0x78,0xcf,0x5c,0x86,0x97,0x21,0x5e,0x22,0x96,0x7a,0xe7,0x09,0xb6, - 0xdc,0x7a,0xdd,0xf8,0x2e,0xca,0xba,0x2a,0x53,0x49,0x0a,0xd5,0xc6,0xf0,0x94,0x80,0x66,0x9a,0x55,0xcc, - 0x5b,0xe1,0x3b,0xa2,0x2c,0x1b,0x13,0xd2,0x16,0x1a,0x3f,0x14,0xb7,0xc6,0x3f,0x63,0xa9,0xa2,0xe3,0xba, - 0x67,0x69,0x46,0x75,0x83,0xd2,0x31,0x82,0x77,0xb6,0x74,0x42,0x0b,0x1f,0x57,0xbd,0x10,0x9b,0x5e,0x43, - 0x0c,0xa8,0x40,0xb6,0x22,0x02,0x1b,0x50,0x87,0x3f,0x79,0x24,0xe1,0x79,0x77,0x3a,0x12,0x3a,0x42,0x68, - 0x61,0xe0,0x1e,0x06,0x04,0x4f,0x84,0x8d,0xb5,0x49,0x1c,0xb7,0xe1,0x2e,0x8f,0xc6,0xec,0x9b,0xec,0x7c, - 0x57,0x89,0x1d,0xca,0x21,0xd7,0x8d,0xab,0xf1,0x51,0x41,0x0b,0x01,0x42,0x3a,0xee,0x12,0xff,0xd7,0xb6, - 0x45,0xcd,0x4c,0x16,0xe0,0xaf,0xc1,0x4f,0x6e,0x2b,0xbc,0x69,0xce,0x17,0xc8,0x1a,0x69,0x81,0x81,0x3b, - 0x82,0x72,0x91,0xf0,0x4f,0xe6,0xc4,0xd9,0xb3,0x63,0x25,0xef,0x81,0x6b,0x61,0xe5,0xe8,0x65,0x81,0x22, - 0x11,0x41,0xb9,0x4f,0x92,0x67,0x86,0x3b,0xd0,0x0f,0x2c,0x42,0x1e,0xa5,0xd0,0x8a,0xd3,0xa8,0x61,0xc9, - 0xfd,0xbe,0xe6,0xe3,0x80,0xd0,0x61,0x4d,0xf3,0x3b,0x26,0xc6,0xaf,0x5c,0x20,0xa1,0x86,0x00,0xc2,0xbe, - 0x80,0xfd,0x8e,0x75,0x1d,0x9c,0xc1,0x4f,0x48,0xdd,0xe4,0xc0,0x28,0x29,0xe4,0xed,0x60,0xa1,0x85,0x9f, - 0x2d,0x21,0xbe,0x08,0x11,0x52,0x82,0x0b,0x97,0x05,0xb3,0xef,0xc7,0xfa,0xfc,0x26,0xc2,0x29,0x3f,0x69, - 0x9d,0xad,0xf8,0x8a,0x05,0x5f,0x96,0x62,0x9c,0x08,0xb5,0x5f,0x13,0x8f,0xef,0x42,0x7a,0x39,0xa3,0xae, - 0x16,0x0d,0x28,0xc7,0x4f,0xcd,0xd6,0x3d,0x47,0x55,0x96,0xa1,0x87,0x5b,0x69,0x60,0x44,0xb0,0xef,0x00, - 0xa3,0x86,0x3d,0xa4,0x73,0xb4,0xe9,0x2c,0x71,0x15,0x8d,0x1f,0xd3,0x9f,0xf8,0x13,0xfe,0x84,0x57,0x59, - 0x28,0x9f,0x24,0x2d,0xe8,0x1a,0x4a,0xbd,0x6f,0x19,0xc6,0x9f,0x15,0x80,0x7b,0xa7,0x45,0x35,0xb0,0xff, - 0x06,0xce,0xdc,0x22,0x5c,0x65,0xbd,0x2a,0x8c,0x61,0xe4,0xbb,0xd3,0xd3,0x60,0x90,0xa9,0xdd,0xc3,0xa8, - 0x75,0xfe,0x9c,0x5a,0x52,0x41,0x77,0xef,0x2a,0xd3,0x16,0x34,0xc4,0xaa,0xe2,0x93,0x66,0x10,0x16,0xe3, - 0xe0,0x14,0x3e,0xce,0x41,0x20,0xe1,0x83,0xbc,0x29,0xb9,0xca,0x3c,0xc1,0xec,0xad,0xec,0xb5,0x04,0x27, - 0x75,0xfc,0x25,0x13,0x74,0x1c,0x2f,0x56,0xa3,0x53,0xe7,0x05,0xc0,0xc9,0x47,0x99,0x56,0xa6,0x0e,0xd0, - 0x70,0x65,0x85,0x7b,0x47,0xa6,0x35,0xcf,0xdc,0xcc,0x76,0xc0,0xd9,0x5a,0x89,0x35,0x1c,0xcc,0xad,0x60, - 0xbf,0x95,0xd7,0xaf,0x69,0x28,0x89,0xb7,0x17,0x3f,0x7a,0x6c,0x0a,0xd4,0xf0,0x4d,0xe4,0xe8,0xfa,0x52, - 0xfe,0x8c,0x19,0x01,0xe1,0x29,0x8a,0x3d,0xfe,0xab,0x12,0xf9,0x99,0xa7,0xe9,0x23,0xd4,0x09,0xf9,0xe3, - 0x88,0x35,0x7b,0xf9,0xf8,0xf8,0xc4,0xe8,0xa8,0x73,0xed,0x0d,0xbe,0x0d,0x46,0x9f,0x32,0xf1,0x0a,0x3b, - 0x2d,0x93,0xd3,0x8c,0xda,0x38,0x2d,0x38,0x2e,0xfa,0x29,0xa4,0x63,0xf4,0x33,0x4f,0x2e,0x38,0xb5,0x49, - 0x2e,0xf9,0xf7,0xf7,0xe4,0x1a,0x3f,0x79,0x72,0x86,0x9f,0x45,0x72,0xc6,0xa9,0xb3,0x64,0xc1,0xbf,0x1f, - 0x93,0x73,0xfe,0x3d,0x4b,0xae,0xf9,0xf7,0x32,0xf9,0x88,0x1f,0xe2,0xe0,0x10,0x2f,0xe3,0x74,0x95,0xe4, - 0x9c,0x7c,0x9e,0x7c,0xf4,0x7a,0xf0,0x58,0x26,0xcd,0x17,0x12,0x12,0x83,0xac,0xc1,0x4c,0xbc,0x29,0xd8, - 0xcd,0x48,0x47,0x34,0x15,0xfd,0x6e,0x23,0x2f,0xd6,0x1a,0xac,0xd2,0x99,0x7c,0x52,0x27,0x3a,0x76,0xe8, - 0x5c,0xc7,0x78,0xa9,0x13,0xd9,0x86,0xcb,0xc2,0x04,0xe6,0xc4,0x49,0xc4,0x06,0x6c,0x44,0xf1,0xa4,0xfa, - 0x9d,0xc3,0x1d,0x22,0x9b,0xf1,0x78,0x0f,0x71,0x5c,0x64,0x6c,0x87,0xb0,0x69,0xdb,0x75,0x6a,0xa2,0x28, - 0x17,0x47,0xb8,0x54,0x68,0x40,0x44,0x4d,0x81,0x47,0xdc,0xee,0x64,0x34,0x31,0xae,0x81,0x66,0xe7,0x24, - 0xa9,0xf2,0xce,0x8b,0xc4,0x35,0x19,0x46,0x6a,0xeb,0x4c,0x82,0x59,0xb7,0x7b,0xc3,0x10,0x10,0x53,0xe2, - 0xb4,0x16,0xdb,0xba,0xb1,0xa6,0x3a,0xb7,0x82,0x99,0x18,0x69,0xc9,0x1d,0x0e,0xb1,0xaf,0x11,0xaf,0x33, - 0x2f,0x28,0xd9,0xf0,0xc9,0x99,0xeb,0xb9,0x1a,0x95,0x27,0x11,0x49,0x68,0x4c,0xe5,0x26,0xbe,0xbd,0x0d, - 0xa3,0x6a,0x69,0x37,0xe2,0xd1,0x32,0x0f,0xb3,0x5b,0x4c,0x8e,0x59,0xd3,0x2a,0x66,0xc7,0x9e,0xed,0x19, - 0xe6,0x57,0x13,0x3c,0xa2,0x5b,0xc9,0x20,0xc9,0xe2,0xa1,0xcc,0xa9,0x8f,0x16,0xf5,0x9c,0xc2,0x3f,0x50, - 0xec,0xef,0xe4,0xdc,0x4f,0xe6,0x46,0x36,0x47,0xe5,0xfb,0x6c,0x3c,0xf4,0x84,0xac,0x98,0x81,0x87,0xd4, - 0x2c,0x9f,0x46,0x9e,0xd6,0x32,0xf4,0x02,0x5c,0x55,0xe2,0x8d,0x8c,0x23,0x8a,0x0a,0xb2,0xa2,0x86,0xe5, - 0x8e,0xfa,0x19,0xae,0xb5,0x4e,0xb8,0xe6,0xd2,0xb4,0x58,0xce,0x84,0x96,0x9d,0x7a,0x65,0x4c,0xd2,0x48, - 0xd7,0x89,0x00,0x43,0x84,0x67,0x74,0xad,0xfa,0xad,0x53,0xaf,0x97,0xca,0x72,0x32,0x11,0xf5,0xf1,0xb2, - 0xd4,0x91,0x51,0x59,0xb8,0xa4,0x44,0x24,0xe8,0x84,0x6a,0xe6,0x3e,0xe0,0x9a,0x79,0xcf,0x88,0xaa,0x6a, - 0x1c,0x55,0x95,0x3d,0x20,0xea,0x85,0xd0,0x1e,0x23,0xed,0x3b,0x54,0x68,0x92,0xbd,0xe7,0x53,0x29,0x8c, - 0x36,0x6a,0x95,0x9c,0xb6,0xb4,0x31,0xae,0xff,0x09,0xe4,0xaa,0x25,0xc1,0xf9,0x7a,0x3d,0x0f,0x59,0x01, - 0xd4,0x29,0xda,0x9e,0x24,0x26,0xc8,0x24,0x7a,0x18,0xfa,0x15,0x72,0xd0,0x93,0x69,0x52,0x85,0x2b,0x35, - 0x73,0x2e,0x0f,0x21,0x16,0xa2,0xcf,0x7e,0x67,0xca,0x5e,0x8e,0xe3,0xcc,0x9f,0xd3,0xbd,0x3d,0x49,0xe5, - 0x2a,0xe2,0x26,0x9c,0x3a,0xf1,0x67,0xd4,0x1b,0x6f,0xd9,0x2b,0xc0,0x1f,0xc2,0xf2,0xaa,0x93,0xc4,0x75, - 0x29,0xd4,0x65,0xd6,0xda,0x1f,0x05,0x8d,0x59,0x67,0xc0,0x20,0x80,0x8b,0xb9,0xe5,0x6b,0xaf,0x1e,0x17, - 0xd5,0xef,0x98,0x26,0x00,0xd6,0x94,0x18,0x82,0x79,0x7a,0x3d,0xb6,0x05,0x69,0x2a,0x62,0x62,0x47,0x8f, - 0x24,0xe2,0x99,0xaf,0x8a,0xeb,0x0c,0x34,0xf3,0x80,0x2f,0xf4,0x3f,0x97,0x99,0x54,0xba,0xe6,0xf5,0xfa, - 0xfe,0xc1,0x81,0xee,0x98,0x0e,0xa3,0x06,0x8f,0xf5,0xbf,0xd2,0x82,0x5c,0x11,0xc1,0x55,0x99,0x2f,0x23, - 0x20,0xb1,0xdd,0x43,0x65,0xdb,0x1b,0xb7,0x46,0x18,0xbb,0xef,0x37,0x0e,0xf6,0x8c,0x5a,0x61,0x13,0xae, - 0x08,0x0d,0xcf,0x69,0xf3,0x58,0x38,0xbe,0x4c,0x56,0x6a,0x91,0x94,0xea,0x9c,0x70,0xde,0x35,0x1d,0x28, - 0x67,0x74,0xb6,0x5c,0xd1,0x61,0x40,0x98,0xee,0xaa,0x25,0x7a,0x4c,0x2e,0x4d,0xc2,0xcb,0x8c,0x50,0xbd, - 0x04,0xd2,0x5b,0x28,0xdd,0x04,0x71,0xf4,0x06,0xd1,0xc7,0xd7,0xaa,0x49,0xcf,0xe3,0xb3,0x8d,0xba,0x1a, - 0x95,0x49,0xc9,0x64,0xfa,0x6b,0xa0,0x09,0xc5,0x51,0x80,0x89,0x7e,0x9d,0x7b,0x46,0x9a,0x1e,0x27,0x85, - 0x28,0xd1,0xc8,0x05,0x19,0xc8,0x0f,0x7c,0x90,0x10,0xfd,0xc8,0x4c,0x76,0xc0,0x12,0xe7,0x4e,0x81,0x0c, - 0x02,0x2f,0x2a,0x91,0x17,0x70,0xe1,0x1d,0x85,0x85,0x9c,0x3d,0x2c,0x07,0x5e,0x1a,0x8a,0x30,0x62,0x85, - 0x86,0xfe,0x82,0xeb,0xd2,0xc6,0x24,0xc5,0x50,0xbb,0xef,0x09,0xe5,0x37,0xa2,0xfe,0x11,0x85,0x17,0x8d, - 0xf1,0x37,0x39,0x36,0x5f,0x80,0x64,0x3a,0x4b,0x27,0x1f,0xed,0x49,0xcd,0x85,0x62,0x2e,0xd4,0x2d,0xb3, - 0xa1,0xf5,0x33,0xb4,0x7d,0x29,0xd4,0xf1,0xcc,0xed,0xf6,0x56,0x90,0x2c,0x5b,0xd0,0x99,0x6f,0x11,0x32, - 0x4d,0x2d,0xe6,0xb8,0x41,0xe0,0xe0,0x42,0x28,0x58,0x38,0x6e,0xbb,0x62,0x4d,0x08,0x4b,0x9b,0x26,0x9c, - 0x3b,0x82,0x69,0xc5,0xd4,0xad,0x89,0xbf,0x49,0x34,0xfe,0x2a,0x1a,0x7d,0x4f,0x28,0x7f,0xae,0x68,0xeb, - 0x80,0x06,0x5b,0xaf,0xf1,0x3a,0x91,0xd7,0x43,0x4b,0xac,0xd6,0x9b,0x0d,0xa4,0xe3,0x1a,0xeb,0x99,0x0e, - 0x99,0x0e,0xa7,0x73,0x67,0x26,0xed,0x2d,0x57,0x9b,0x0e,0xc8,0xec,0x80,0x75,0x9f,0xd3,0x76,0x4f,0xa3, - 0x96,0x64,0x7c,0x42,0x18,0x6d,0x7e,0x92,0x3c,0x0b,0xe7,0xd4,0x19,0x3e,0xef,0x35,0xa9,0x06,0xc4,0xc4, - 0x63,0x25,0xd8,0x78,0x88,0xd3,0xca,0xbc,0x2a,0xe4,0x70,0x8d,0x2e,0x47,0x5e,0x79,0x7a,0x57,0xcc,0xa3, - 0x3e,0xc6,0xb9,0x44,0x53,0xce,0x56,0x26,0x84,0xf4,0xd2,0xa1,0x50,0xb7,0x9e,0x4d,0xc1,0x8a,0x0e,0x48, - 0xb5,0x72,0x96,0x41,0x5b,0x6a,0xbd,0x99,0x7f,0xac,0xaa,0x99,0x67,0x42,0x9f,0xc2,0xd5,0x92,0xf5,0x15, - 0x21,0x95,0x02,0xe0,0x43,0xab,0x2e,0x24,0x0f,0xe0,0x8b,0x33,0x13,0x29,0x43,0xfb,0x73,0x06,0x73,0x97, - 0x99,0x1c,0x93,0xd2,0xc9,0x29,0xa8,0x25,0x16,0x4d,0xe3,0x97,0x5e,0xc4,0xa5,0xe1,0x75,0xa1,0xfc,0x69, - 0x4f,0x11,0x83,0x88,0x36,0x9b,0x06,0x81,0x25,0x95,0x63,0x06,0xb4,0xc4,0xbc,0x2e,0x99,0x1e,0xe0,0x86, - 0x96,0xd1,0x66,0xd7,0xc7,0xe9,0x99,0x51,0x44,0x66,0x56,0x07,0xd9,0xb1,0x41,0x78,0x51,0xf9,0xb2,0x51, - 0x4d,0xbb,0xbe,0xa8,0x44,0xac,0x29,0x5f,0x41,0xfc,0x9f,0x27,0xcf,0xe1,0x9e,0x34,0xb2,0x29,0x90,0xf2, - 0xf5,0x09,0x84,0x3d,0x88,0xd6,0xb0,0x90,0xd9,0x47,0xf8,0xbe,0xea,0x47,0x02,0xae,0x9c,0x88,0x10,0xe2, - 0x86,0x19,0xca,0xd0,0xec,0x85,0x07,0xf7,0x12,0xe2,0x74,0x62,0xf5,0x21,0xe2,0x5f,0x11,0x5c,0xae,0xb2, - 0x7d,0x8b,0xff,0xf7,0x89,0x9c,0x07,0x29,0x30,0x08,0x2f,0xc6,0x01,0xbd,0x5c,0x30,0x53,0x51,0xaa,0x5e, - 0xbf,0x8e,0x54,0xdd,0x3c,0x26,0x54,0x15,0x57,0xca,0x1a,0x36,0xc5,0x33,0x65,0x49,0xcc,0x78,0xca,0x88, - 0x69,0xe2,0x30,0x15,0x31,0xeb,0xab,0x48,0x82,0xf9,0x5c,0xaa,0x85,0x3a,0x57,0xd7,0xea,0x4c,0x5d,0x79, - 0xb6,0xd5,0x88,0x71,0xaf,0xc9,0x1d,0x22,0x9b,0x8c,0xba,0xb2,0xcd,0xb7,0xa4,0x6c,0xf6,0x96,0xc2,0x90, - 0x21,0x9c,0x24,0xd8,0x06,0x29,0x11,0xf9,0xd2,0xa5,0x88,0x16,0x78,0x2e,0x19,0xaf,0x2a,0x4f,0xe6,0x9c, - 0xb7,0x88,0xa8,0x86,0xbe,0x06,0xa5,0x91,0x1a,0x7b,0x07,0xab,0x8a,0x25,0x34,0x3c,0x6a,0x15,0xc8,0x59, - 0xc3,0x8e,0xb8,0x64,0xe0,0xd5,0x88,0x83,0xf5,0x4b,0xf2,0x2e,0xe3,0x2d,0x3e,0x1d,0x75,0x3a,0x59,0xf7, - 0x1f,0xbe,0x88,0xf0,0x0f,0xa8,0x4e,0x21,0xfa,0x20,0xb8,0xf1,0x29,0x59,0x42,0xf1,0x22,0x29,0x8b,0xe5, - 0x1e,0x00,0xeb,0xfd,0x84,0x9b,0x9d,0x60,0xca,0x54,0x8d,0x89,0xbe,0x09,0xe7,0x49,0x1d,0x8d,0x8f,0x3f, - 0xd2,0x30,0x4f,0x3a,0x46,0xb6,0x73,0x17,0x8e,0x8a,0x88,0x08,0x17,0x40,0x06,0x73,0x89,0x5e,0x22,0x90, - 0x8c,0xc8,0x9d,0x60,0x0a,0x5d,0xfa,0xa6,0xd0,0x19,0x4d,0x58,0x79,0x5c,0x9f,0x44,0x7d,0xfe,0xab,0x44, - 0xdc,0xd0,0x39,0x36,0x3b,0x26,0x3a,0xca,0x06,0x03,0x39,0xe9,0x58,0xe5,0x4f,0xa2,0xb1,0x71,0xd1,0xfa, - 0xe6,0x80,0x46,0xf8,0x6d,0x48,0x35,0xe6,0xe1,0x44,0xc1,0xec,0x84,0xfd,0xe9,0x89,0x51,0x24,0x32,0x8d, - 0x46,0x46,0x33,0xf3,0x2d,0xe1,0x4b,0x60,0x00,0xa0,0xa6,0x8f,0xe1,0x8a,0x95,0x6b,0x83,0x09,0xe5,0x89, - 0x22,0x1b,0xf7,0x53,0xe9,0xf0,0xfd,0x84,0x17,0x3c,0x8d,0xe0,0x8c,0x16,0x30,0x8a,0x61,0xf3,0x38,0x46, - 0x15,0xe3,0x4e,0x05,0x08,0x44,0x25,0xd6,0x0c,0xf2,0x55,0xf8,0x11,0xf8,0x30,0xfe,0x96,0xfe,0x4a,0x9b, - 0xdd,0x0f,0xa4,0xb9,0x98,0x90,0x71,0x69,0xe5,0x64,0xbc,0xf0,0x13,0x68,0x23,0x99,0xe4,0x98,0x80,0x4f, - 0x15,0x60,0x60,0xb8,0x62,0xb6,0x95,0xd8,0xef,0x4b,0x80,0x79,0x30,0x48,0x65,0x60,0xf4,0xf7,0x34,0x30, - 0x9d,0x45,0xa3,0x0e,0xef,0x6d,0x68,0x5d,0xb4,0xec,0x27,0xc6,0x32,0x3e,0xab,0xd8,0x64,0xe3,0x2f,0xea, - 0x55,0xb6,0xb9,0x76,0x42,0x22,0x16,0x5e,0x25,0xcb,0x8f,0xbc,0x84,0x03,0x53,0x4f,0xd6,0xf1,0x89,0xca, - 0x3c,0x73,0x75,0xb6,0x0e,0xd9,0x12,0x8f,0x96,0xd1,0x38,0x9c,0x25,0xf9,0xf0,0xce,0x65,0x41,0x07,0x2b, - 0xa2,0x55,0xc9,0xd3,0xb0,0xa8,0x59,0x16,0x74,0x4e,0x64,0x53,0x7a,0x8e,0x80,0xae,0xf5,0x12,0x81,0x10, - 0x08,0xdf,0xac,0x20,0x19,0xcb,0xeb,0xb7,0x59,0x9d,0x55,0x44,0xf6,0x50,0x36,0xa5,0x8e,0x35,0x36,0xa1, - 0x2c,0xf6,0xe3,0x7d,0x33,0x4f,0x1b,0x04,0xb6,0xd0,0x1f,0xe3,0x3b,0xec,0xbf,0x36,0xfe,0xc8,0x99,0x60, - 0x4d,0x5e,0x84,0xb9,0x27,0xa1,0xb3,0xa8,0xa8,0x0e,0x40,0x5f,0x8e,0x89,0x05,0x9a,0xd2,0xb7,0x39,0x8e, - 0x9b,0x28,0xd6,0xcd,0x94,0xbd,0xb5,0x45,0xf1,0x2a,0xa1,0xe2,0xa5,0x14,0xf7,0x44,0xa1,0x2b,0x8c,0xd2, - 0x73,0x54,0xa9,0xc2,0xdc,0xb2,0x34,0x39,0xfc,0xc2,0x4a,0xe2,0x90,0xca,0x2a,0xcb,0xcf,0x8b,0xd7,0xc6, - 0x9d,0x99,0x26,0x85,0x60,0x80,0x37,0xbf,0x41,0x77,0x2c,0xb5,0x6c,0xe8,0x0b,0x83,0xd0,0x3c,0x5b,0x6c, - 0x0e,0x48,0xe5,0x72,0xec,0xe6,0x7a,0x30,0xe1,0x0d,0xa6,0x39,0x36,0x57,0x80,0x36,0x1b,0xd1,0x3f,0x73, - 0x0d,0x67,0xc4,0x81,0xcd,0x87,0x6c,0xa9,0x50,0x08,0x66,0xa3,0x7d,0xce,0x3d,0x24,0x4c,0xce,0xc4,0xf8, - 0x2a,0x8a,0x81,0x72,0x36,0x1e,0x26,0xf3,0xbc,0x33,0xfc,0x88,0x73,0x56,0x4c,0xc0,0x8a,0xd9,0x7a,0xb5, - 0xcc,0x2a,0x73,0x02,0xa1,0x9c,0x4e,0x61,0x12,0x84,0x4d,0x4f,0xf9,0xdd,0x58,0x4a,0xdc,0xb4,0xdf,0x13, - 0xe3,0x60,0xd2,0xb5,0xb6,0x46,0x28,0x36,0x47,0x88,0xe0,0x4c,0x13,0x66,0xd3,0x38,0xbe,0x81,0x74,0xac, - 0xb3,0x94,0x58,0x7e,0x9d,0x62,0x0f,0xc8,0xd2,0xe8,0xeb,0xcb,0x93,0x5d,0xb1,0x85,0x84,0x30,0x80,0x7d, - 0x24,0x11,0x42,0xa6,0x81,0x38,0xbb,0xc7,0x1a,0x77,0x4b,0x74,0xa5,0x49,0x58,0x42,0x69,0x45,0xd2,0x95, - 0x97,0x8e,0x8b,0x98,0xb5,0xeb,0x5b,0x76,0x70,0xe2,0x84,0x60,0xfb,0x22,0xca,0x93,0xcc,0x57,0x9e,0x84, - 0x8d,0x13,0xe2,0x82,0xec,0xfc,0x26,0x39,0xa0,0x35,0x69,0xa7,0x3d,0x38,0xc0,0x02,0xe9,0x88,0x5c,0x48, - 0x70,0x6e,0x71,0x6e,0xb7,0x15,0x46,0x38,0xaf,0x30,0x46,0xcf,0xe9,0x7e,0xc3,0xde,0xed,0xf0,0x0e,0xee, - 0x4e,0x1a,0x1d,0x58,0xa1,0xb7,0x80,0xc9,0x73,0x28,0x9e,0xdb,0x65,0xb4,0xd9,0x15,0x47,0x9c,0x71,0x1b, - 0xe5,0xb8,0xe1,0xd4,0x93,0x04,0xa1,0x50,0xb6,0x8d,0x07,0x9e,0x66,0x36,0x14,0xc9,0x29,0xfc,0xfa,0x5b, - 0x46,0x96,0x6f,0x5a,0xa6,0x10,0xec,0x89,0x88,0x33,0xbd,0x43,0x34,0xb0,0x13,0xa6,0xf7,0xd5,0x6f,0x59, - 0x8b,0x3e,0xe9,0xae,0xce,0xd8,0x77,0x71,0xff,0x66,0xff,0x30,0xde,0x56,0xcb,0x8c,0x7d,0xe7,0xfc,0x4e, - 0x69,0x68,0xe5,0xd4,0x6e,0x68,0xe3,0x1d,0x48,0xc4,0xaf,0x13,0xe0,0x76,0x13,0xef,0xa0,0x90,0x50,0xd5, - 0xec,0x9d,0xda,0x68,0xb9,0xb8,0x27,0x41,0x7c,0xd2,0xb1,0x06,0x60,0x8d,0x28,0xc3,0x29,0x74,0x2d,0x0c, - 0x9e,0xa7,0x8c,0xe7,0xba,0x70,0x69,0x22,0xea,0xc2,0xbe,0x9d,0x4d,0x1a,0x35,0x77,0xf0,0x06,0x42,0xb1, - 0x2d,0xc3,0xa2,0x51,0x0d,0x59,0x31,0x1f,0xf6,0xcf,0x41,0x91,0x95,0xec,0x24,0xb8,0xf1,0xc4,0x3d,0xcf, - 0xb7,0xd4,0x0a,0x6c,0x72,0xbf,0x9b,0xb3,0x6b,0x16,0xa3,0x18,0x78,0xa6,0xe1,0x77,0xbd,0xce,0x5d,0x0b, - 0xcf,0x35,0xb1,0x3c,0xbc,0x33,0xa5,0x21,0x56,0x25,0x7c,0xb3,0x32,0xab,0xe2,0x5f,0xf1,0x1d,0x94,0x9e, - 0xb9,0x7f,0xe6,0x7b,0x60,0xdf,0x88,0x3c,0xf9,0x31,0x54,0x02,0xf1,0x33,0xde,0xf3,0x2e,0x41,0x15,0xfe, - 0x1b,0x1d,0xb5,0x5c,0x0a,0x36,0x64,0xfc,0x44,0xa4,0x85,0x7e,0x42,0x14,0x63,0xfc,0x9e,0xc4,0xfa,0xc1, - 0xb7,0xdf,0x6f,0x2f,0x7f,0x36,0x6e,0xc6,0xd9,0x20,0x40,0x78,0x9a,0x38,0x8b,0xc1,0x1f,0x7a,0xc6,0xdd, - 0xaf,0x7c,0x00,0xdb,0x02,0x94,0xbe,0x63,0x90,0x26,0x0b,0x31,0xfe,0x68,0x77,0xaa,0xd2,0x69,0xe7,0xf2, - 0x07,0x25,0xef,0x50,0x22,0x77,0x13,0xd4,0x89,0x8d,0x07,0x22,0x8b,0x2f,0x5a,0x83,0x40,0x00,0xff,0x07, - 0x09,0xf5,0x22,0x52,0xf4,0x5b,0x78,0xbb,0x92,0xf5,0x31,0xdd,0xd6,0x04,0x5d,0x06,0xc1,0xa8,0x25,0x89, - 0xcb,0xb4,0xef,0x7e,0xd8,0xe8,0x18,0xb9,0xa8,0xae,0xf1,0xab,0xe3,0x0d,0xdc,0x0b,0xd0,0x6d,0x9b,0x76, - 0x7f,0xd8,0x73,0x6e,0x3d,0xa8,0x2f,0xcf,0x83,0x38,0x58,0xa4,0xcd,0x05,0xdb,0x14,0x8d,0xe5,0x71,0x4b, - 0x31,0xf4,0xd6,0xfb,0xb4,0xa7,0x1d,0x1b,0x19,0xef,0xf7,0x55,0x56,0x5d,0xbf,0xcb,0xa0,0x6d,0x2e,0xe5, - 0xae,0x98,0xdb,0xe2,0x5d,0x4e,0xf3,0xcb,0xa0,0x65,0xa1,0xf7,0x53,0x67,0x7f,0xb0,0x41,0x65,0x95,0xcd, - 0x3a,0x0e,0x40,0xc6,0xa9,0x3a,0xf7,0x3d,0xb4,0x0d,0x68,0x02,0x2b,0xc0,0xf7,0xba,0x84,0x59,0x3c,0x7d, - 0x5b,0x8f,0xba,0x5a,0x93,0x92,0x8d,0x9d,0x56,0xfc,0x8b,0xc3,0x1e,0xbf,0x38,0x58,0x71,0xa8,0xe2,0x51, - 0xd3,0xec,0xb1,0x6b,0xff,0x79,0xf1,0xac,0xac,0x7a,0x6b,0xc1,0x5f,0x8b,0x26,0x72,0xc2,0xc1,0x7b,0x7b, - 0x9c,0xc4,0x58,0xd8,0xd4,0x4d,0x30,0x21,0x0f,0xb9,0x07,0xac,0x8f,0x44,0x46,0xed,0xe2,0x5f,0x81,0x82, - 0xc3,0xf1,0x4e,0xbf,0x2c,0x48,0x92,0x3d,0xa8,0x8f,0x7b,0xdf,0xf5,0x9b,0x55,0x7a,0xce,0x36,0xac,0xd1, - 0x96,0xa7,0x1c,0x25,0x85,0xa8,0x00,0x7e,0xee,0x4a,0x56,0xa0,0x8c,0x13,0xe9,0x08,0x9f,0xae,0x40,0x9b, - 0xad,0x40,0x0e,0x15,0x5c,0x0d,0xc3,0x4a,0xcf,0xb9,0x08,0x3c,0x13,0xc7,0x8a,0x57,0xac,0x8a,0x83,0x2a, - 0x96,0x9d,0xc6,0x3e,0x53,0xc6,0x8a,0x0b,0x61,0x3c,0x47,0x4b,0x9f,0xb3,0xb7,0x22,0xfd,0x10,0x1f,0xc8, - 0x03,0x06,0x2d,0x81,0xd1,0x3c,0x84,0x0c,0xe9,0x0d,0xc2,0x58,0x5d,0x94,0x73,0xe2,0xd1,0xb9,0x86,0x96, - 0xa4,0x09,0xe3,0xf4,0x13,0x40,0xf7,0xb6,0x53,0xb4,0xdc,0xcd,0x37,0xce,0xcf,0x44,0x34,0x61,0x95,0xc7, - 0xe2,0x01,0x87,0xcd,0x94,0x13,0xd9,0x90,0x3f,0x48,0xaa,0xd1,0x60,0x90,0xd3,0x76,0x85,0x81,0x62,0x7e, - 0xa2,0xc9,0xe8,0x30,0xc5,0x01,0xef,0xdc,0x28,0x3d,0xb7,0x92,0xf7,0x1a,0x26,0x75,0xe4,0x3a,0xcf,0x9b, - 0x6b,0xbd,0x6e,0xba,0x49,0xed,0x79,0x37,0x90,0x2c,0x7c,0x70,0x82,0xf8,0x19,0x97,0x70,0xc9,0x6b,0xe4, - 0xa1,0x4e,0xbe,0xcb,0xb6,0x6b,0x75,0x41,0x03,0xc0,0x5f,0x51,0x89,0xad,0x46,0x70,0x39,0xb1,0x29,0x31, - 0x27,0x52,0x83,0x48,0x5f,0xcd,0x42,0x15,0x22,0x5b,0xa9,0x92,0x5a,0xf8,0xf8,0x09,0x7e,0xaa,0x31,0xcd, - 0x1a,0x4d,0xf1,0x07,0x88,0xbc,0x12,0xe3,0x65,0xfb,0x07,0x78,0x5a,0xad,0xe2,0x0c,0x14,0x2e,0x24,0x50, - 0x39,0x6c,0x22,0x80,0xfd,0xe9,0xc7,0xed,0x2b,0x91,0x37,0x4f,0xf7,0xf6,0x56,0x06,0xa8,0x89,0x33,0x91, - 0xaf,0xe1,0x90,0xd6,0xf7,0x6d,0x5e,0x10,0x0d,0xce,0xdf,0xcc,0xed,0x37,0xd8,0xc2,0xf3,0x56,0xc4,0x99, - 0x59,0x9f,0xfc,0x5b,0x6c,0xef,0xe6,0xbe,0xc5,0x1d,0xb5,0x35,0xc7,0x38,0x02,0x53,0xad,0x34,0xb9,0x19, - 0x95,0xe3,0x1f,0xe0,0x0c,0x25,0xc9,0x01,0xe4,0xcc,0xb3,0x90,0x2d,0xfe,0x57,0x36,0x2a,0x07,0x17,0x40, - 0x74,0x3f,0x1d,0xd4,0xef,0xd6,0x16,0x57,0x9d,0x16,0x57,0xdc,0x62,0x77,0x12,0x74,0xcb,0xcc,0x71,0xdb, - 0xf9,0xae,0xa3,0x09,0xbb,0x94,0xd1,0x57,0x3c,0xed,0xc1,0xaa,0x90,0x89,0xc9,0xe8,0x1f,0x84,0xad,0x6d, - 0x73,0xdc,0xef,0xb2,0x6d,0xc8,0xe8,0x8b,0x8b,0xd3,0xb2,0xb9,0x2d,0x65,0x79,0xb7,0xcd,0x38,0x43,0x31, - 0x35,0x8e,0x86,0x3a,0x64,0x37,0x2b,0xbc,0x2b,0xf7,0x96,0x5c,0x43,0x35,0x74,0x4c,0xc0,0x4f,0x2d,0x0d, - 0xab,0xf4,0xea,0x15,0x13,0x4e,0x39,0x13,0x50,0x83,0x60,0x18,0x0c,0x7c,0x63,0x8f,0xdc,0xaf,0x06,0x72, - 0x00,0x89,0x88,0x3a,0x0c,0xa2,0xe8,0x84,0x2a,0x80,0x53,0xf6,0x8c,0xf8,0xa2,0xc6,0xe3,0x8b,0x1c,0x58, - 0x06,0x94,0x8f,0x5a,0x9d,0xee,0xca,0xf3,0x87,0x70,0x46,0x05,0x36,0x5a,0x41,0x26,0x20,0xc3,0x3f,0xda, - 0x1c,0xb2,0x64,0x7b,0xc7,0x32,0x2c,0x24,0x7a,0x86,0x2e,0xaf,0x6d,0x1e,0x2b,0xd8,0x3c,0x56,0x72,0x8b, - 0x01,0xa3,0x7f,0xd7,0x36,0xdf,0x4d,0x22,0x23,0xc2,0x69,0xef,0x6c,0x22,0x3d,0xff,0x86,0x2c,0xf4,0xa8, - 0x9d,0x6d,0x6b,0x6c,0x9e,0xef,0xb0,0x61,0x6c,0x25,0xfe,0x50,0x6d,0x82,0x33,0x2f,0x2e,0xb2,0x2a,0xe7, - 0x20,0xd8,0x34,0x37,0x59,0x28,0x48,0xd0,0x22,0xbf,0xcc,0x98,0xff,0x4b,0x82,0x66,0x04,0x98,0x27,0xa2, - 0xc6,0x30,0x9a,0x49,0xe2,0x7f,0xc2,0xe2,0xf0,0x79,0x52,0x75,0x92,0x98,0xf7,0xd2,0xd2,0x1f,0xc4,0x38, - 0x68,0x15,0x48,0x58,0xb9,0x3c,0xd7,0x3e,0x10,0x4c,0x19,0xce,0xa3,0x34,0x99,0x83,0x9a,0x9f,0x08,0xe3, - 0x92,0x12,0xc8,0x43,0x36,0x0a,0x1e,0x6d,0x14,0xbe,0x28,0xd6,0xeb,0x57,0xb0,0xd3,0xd0,0xf2,0x6e,0x08, - 0x21,0xe4,0x49,0x17,0x33,0x22,0x75,0x9d,0xef,0x55,0x3c,0x89,0xb0,0xeb,0x4a,0x36,0xb0,0xcf,0x81,0xbc, - 0xc7,0x08,0x38,0x87,0x68,0xb1,0x36,0x0c,0xf8,0xab,0x77,0x61,0x45,0xc0,0x8b,0x4c,0x62,0x98,0xf1,0x83, - 0xe0,0x97,0x9d,0x42,0xc8,0xf4,0x56,0xe1,0x07,0x5f,0xef,0x5f,0xb0,0xdf,0x4f,0x9a,0x73,0xd4,0xea,0xad, - 0x0f,0x59,0x00,0x92,0x04,0x44,0x55,0x97,0x57,0x33,0xda,0x11,0x35,0xed,0x8e,0xac,0x08,0x24,0x14,0x58, - 0xf0,0xf4,0xe5,0xa3,0xa7,0x4f,0xb4,0x09,0xb4,0xf0,0xf2,0xe3,0xa0,0xa9,0x68,0x2c,0x31,0x74,0xf7,0xad, - 0x68,0xe5,0xec,0xca,0x66,0xcd,0x9c,0x9a,0x5c,0xc7,0x05,0x68,0x17,0xe1,0x5e,0xe0,0xb6,0xd0,0x94,0xca, - 0xa1,0xde,0x62,0xac,0x9f,0x63,0xa9,0xd7,0x33,0x94,0xfa,0x5c,0xb7,0xed,0xa4,0x34,0xb8,0x54,0xa3,0xd5, - 0x8a,0x64,0x35,0xd6,0x2a,0x01,0x74,0x3c,0x1b,0xd6,0xf4,0x8d,0x5d,0xcc,0x62,0xa8,0xc8,0x0b,0x38,0xad, - 0x3d,0x83,0x2b,0xc4,0xd1,0xd3,0x9f,0x8f,0x1e,0xbe,0x7d,0xfa,0xb0,0x35,0x6a,0x4a,0x5f,0xba,0x33,0x54, - 0xcf,0x0e,0xc7,0xb9,0xcc,0xb3,0xe5,0x85,0x21,0x99,0x7c,0x13,0xbf,0x86,0x08,0xed,0x72,0xf9,0x9c,0x88, - 0x87,0x69,0x4e,0xd8,0x06,0x06,0x33,0xe9,0x79,0x2a,0x48,0x51,0x99,0xae,0x74,0x2e,0x5e,0x11,0xca,0x01, - 0x06,0x20,0xa3,0xac,0xe7,0x5e,0x16,0x9b,0xad,0x4c,0xc3,0xc9,0xee,0xc1,0xa6,0x67,0x19,0x3c,0x48,0xf8, - 0xbe,0xb3,0x1f,0x0d,0xc9,0xc6,0xf1,0x74,0x52,0xbd,0x57,0x64,0x53,0x66,0x90,0x78,0x7b,0xcc,0x01,0x76, - 0x5b,0xa9,0xf9,0x02,0x96,0x51,0x40,0xf4,0x0a,0x46,0xa8,0x5b,0x28,0xd5,0x85,0x22,0xab,0x4d,0xe9,0xa5, - 0xeb,0xcd,0x45,0x65,0xf0,0x8e,0x20,0x92,0x72,0xc4,0xa2,0x94,0x2e,0x59,0x19,0x8d,0x22,0x42,0xa2,0x7d, - 0xac,0x90,0x70,0x6c,0x11,0x1f,0x7e,0xec,0x62,0x4b,0x60,0xfb,0x22,0xd3,0x84,0x18,0xc3,0x1e,0x1b,0xc8, - 0x0b,0xb1,0x64,0xad,0xe3,0x39,0x02,0x86,0x5f,0xbe,0x50,0x9a,0x8c,0x73,0xf8,0x33,0x69,0x31,0x45,0x3c, - 0x2b,0xc2,0x03,0x35,0xbc,0xd9,0x20,0xfb,0x1b,0x3f,0x83,0x60,0xe9,0x15,0x6b,0x8c,0x88,0xd0,0x1f,0x69, - 0xac,0xc3,0x06,0xc7,0x10,0xfc,0x9c,0x72,0x2c,0xd7,0x1c,0x63,0xe6,0x4a,0x32,0x22,0x87,0x59,0xee,0x18, - 0xd6,0xc9,0x33,0xa0,0x80,0x57,0x19,0xcb,0x05,0x15,0xfc,0xad,0x72,0xd8,0x55,0x66,0x97,0x5c,0xb0,0xe7, - 0x62,0x00,0x31,0xe6,0x52,0x35,0x4e,0x7b,0x57,0x30,0xa9,0xfd,0x65,0xfd,0x36,0xdb,0xf2,0x7c,0x0b,0xd9, - 0xdc,0xca,0xf3,0xc3,0xc8,0xb4,0xb5,0xf7,0x39,0xe1,0x76,0xb9,0x79,0x81,0xda,0x3f,0x4f,0xf2,0xc1,0xe1, - 0xc6,0x3b,0x14,0x8d,0xb8,0x9d,0xa8,0x1b,0xd8,0x7b,0xe3,0xcf,0x14,0x7f,0x96,0xf8,0x03,0x8b,0xf0,0x4b, - 0xfa,0xbf,0xa0,0xff,0xe7,0xda,0xd7,0xb2,0x47,0x6c,0x42,0xe0,0x23,0xf6,0xb6,0x99,0x1f,0x53,0x3d,0x87, - 0xdc,0xea,0x8b,0xaf,0xc5,0x70,0xfb,0xeb,0xfb,0x34,0x70,0x30,0x69,0x68,0xc6,0xed,0xcc,0x59,0xf4,0xc5, - 0x97,0x9d,0x02,0xb3,0x56,0x81,0x69,0xf4,0xf5,0x3f,0x3b,0x05,0xa6,0xad,0x02,0xcb,0xe8,0xcb,0xff,0xee, - 0x14,0x58,0xb6,0x0a,0x1c,0xde,0xff,0x12,0x3c,0xe2,0x7a,0x4d,0x0f,0xbc,0xa5,0xfd,0x2e,0x0e,0x0e,0xa3, - 0xfe,0x8c,0x7d,0x64,0x5c,0xac,0xd7,0x97,0xeb,0xf5,0x22,0xba,0xa9,0xaf,0x72,0xed,0x0e,0x30,0x49,0xa9, - 0xd6,0x2f,0xbe,0x8c,0x67,0x08,0x1b,0xc8,0x16,0xb1,0x23,0x49,0xfa,0x3a,0x5e,0x75,0x92,0xbe,0xfe,0x67, - 0x3c,0xed,0x24,0x7d,0x79,0x10,0x2f,0x06,0x83,0x56,0xca,0x61,0xbc,0xd8,0xdf,0x6f,0x7d,0x76,0x18,0x5f, - 0xb6,0xcb,0x7c,0xfd,0x45,0x7c,0xd9,0x2e,0x73,0x78,0xff,0x8b,0xf8,0xa2,0x5d,0xe8,0xf0,0xfe,0x57,0xf1, - 0xc5,0xfe,0x3e,0xe8,0x32,0x99,0x10,0xb7,0xf3,0xae,0x13,0x1a,0x8e,0x3a,0xd3,0x0c,0xd7,0xe8,0x9a,0x03, - 0x3f,0x8a,0x67,0x4b,0x78,0x96,0xd8,0x2b,0x18,0xae,0x69,0x4b,0x5c,0xef,0xef,0x47,0xb8,0xd2,0xeb,0x48, - 0x47,0xd7,0x3d,0x93,0x5b,0xf9,0x60,0xc5,0x2f,0xbe,0x20,0xd6,0x42,0xa4,0x1c,0x87,0x0c,0x4b,0xcc,0xa4, - 0x9b,0x8b,0x9b,0x1d,0xa0,0xc5,0x8d,0xe8,0x52,0xbc,0xf2,0xbd,0x05,0x63,0x78,0xc0,0x9f,0x83,0xc7,0xc1, - 0xfd,0x1c,0x0e,0xbe,0x52,0x1f,0xbe,0x20,0xa1,0x9d,0x24,0x30,0x25,0x34,0xd2,0xde,0x39,0x9d,0xb0,0xf6, - 0x0e,0x92,0x10,0x3a,0xaa,0x64,0xfe,0xe0,0x60,0x7c,0xf7,0x94,0x5e,0xef,0x0e,0x26,0x83,0xbb,0x41,0x14, - 0xde,0x85,0x60,0x3e,0x0a,0x62,0x93,0x68,0x1b,0x9f,0x47,0x2e,0x5f,0x05,0x36,0x63,0x4e,0xc0,0xd0,0x43, - 0x53,0xfd,0xcc,0x5b,0xad,0xed,0xa7,0x1c,0x1c,0x7f,0x58,0x21,0x44,0x1a,0xdb,0x35,0x55,0x27,0x08,0xcd, - 0xeb,0x4b,0xd5,0xfe,0xdd,0x15,0x90,0x20,0x80,0xfd,0xb2,0x6d,0x44,0xe2,0x22,0xf9,0x6c,0xb6,0x4d,0xc4, - 0xbd,0x02,0x9b,0x28,0x3e,0xf6,0x4c,0x82,0x7e,0xb1,0x27,0x7b,0x98,0x59,0xed,0xbb,0x89,0xf1,0xe1,0xf6, - 0xfe,0x0d,0x5f,0xa3,0xd1,0x28,0x1d,0x2c,0x8e,0x2f,0x41,0xe3,0xdb,0x43,0x13,0xdf,0x21,0xe8,0x47,0xbf, - 0xb2,0xae,0x19,0xe7,0xdf,0xad,0x2c,0x6b,0x9c,0xa9,0x1f,0xd7,0xf0,0x32,0x5d,0x4a,0x28,0x21,0xfd,0x8e, - 0x83,0xec,0x96,0x0a,0x3d,0x2f,0xba,0xc6,0x51,0xb0,0x56,0xeb,0x3d,0x02,0x4e,0x67,0xed,0xb5,0x71,0x35, - 0x75,0x01,0x83,0x2a,0xeb,0xdf,0xda,0x24,0xc1,0x2e,0xbc,0x6f,0x08,0xc1,0xc3,0x3a,0xd2,0x2f,0xc2,0x9e, - 0xb0,0x94,0xff,0xff,0x74,0xbe,0x76,0x84,0xf5,0x8b,0x18,0xdf,0x58,0x2a,0xb5,0xc7,0xa5,0x08,0x0f,0xc3, - 0xc9,0x5b,0x8e,0x7a,0x18,0x8a,0xe4,0xe7,0x17,0xcd,0x38,0xa4,0x7c,0x4d,0x18,0x2f,0xb2,0x62,0x15,0x28, - 0x5b,0x01,0xe7,0x47,0x31,0x31,0x05,0xf9,0x74,0x3a,0x67,0x21,0x6d,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96, - 0x01,0x5f,0xb2,0x20,0x6a,0xe8,0xb1,0x6b,0x53,0x12,0xd8,0x08,0x5d,0x1e,0xf9,0xc0,0x97,0x45,0xf0,0x13, - 0x58,0xed,0x1d,0xa3,0x58,0xe6,0x0a,0x64,0x36,0x4b,0x9b,0xdf,0x99,0xc8,0x80,0x9b,0x11,0xee,0x4a,0x5d, - 0x42,0x2a,0x56,0x7b,0x1c,0x8a,0xbe,0x43,0x1d,0xfb,0x88,0xb8,0x80,0x2d,0xfd,0x5d,0x3e,0x9e,0xd8,0x6b, - 0xbc,0x6b,0xeb,0x6b,0x57,0xcb,0x5d,0x3a,0xc9,0x84,0xf2,0x8f,0xe9,0x9c,0x38,0x89,0x8f,0x27,0xaa,0x3e, - 0x89,0xeb,0x5e,0x10,0x28,0x2c,0x08,0x08,0x3d,0x54,0xe1,0x3d,0x60,0x97,0xa8,0xf5,0x5a,0x5e,0x2e,0xf7, - 0x39,0xbc,0x0a,0x92,0x58,0xda,0xc4,0x51,0x70,0x4d,0x20,0x4b,0x1c,0x6b,0xa2,0x9c,0x10,0x57,0x16,0x4b, - 0xb6,0x34,0x36,0x94,0x9a,0x7c,0x90,0x9b,0x0f,0x3a,0xc1,0x66,0x73,0xff,0x8c,0xac,0xda,0xbd,0x71,0x5f, - 0xb3,0xfc,0xc5,0x03,0x51,0x3f,0x98,0x8d,0x07,0xab,0xda,0xf4,0x3e,0xef,0x9a,0xde,0x83,0x36,0x85,0x67, - 0x03,0xdf,0x6a,0x82,0x50,0x9d,0x37,0xb9,0x09,0x7f,0x55,0x22,0xfc,0x95,0xf8,0x49,0x18,0x35,0xbb,0x75, - 0x46,0x6c,0x35,0xe9,0x9b,0xe2,0xe7,0x9d,0x59,0x13,0x53,0xfb,0x3c,0x09,0xee,0xdc,0xb9,0x0c,0x46,0x72, - 0x69,0x12,0xdf,0x41,0x1d,0x84,0x5a,0x0a,0x48,0x19,0x3b,0xd4,0xf2,0xce,0x5d,0x19,0xf9,0xdd,0x31,0x52, - 0x0c,0x42,0xc5,0x73,0x14,0x30,0xbc,0xb1,0xc7,0x82,0x7c,0x7a,0x4a,0xfc,0xe5,0x20,0x07,0x3e,0x8c,0xb4, - 0x39,0x4e,0xd9,0x84,0xb0,0xf0,0x1c,0x69,0xe3,0x1e,0x03,0x3e,0x84,0x4d,0xc1,0xd9,0x45,0xc4,0x57,0x7f, - 0x5a,0xe2,0xc6,0x3f,0xea,0x62,0x7c,0x97,0xf0,0x67,0x43,0x48,0xf3,0xae,0x32,0xa6,0x37,0x2e,0x3a,0xc9, - 0x4e,0x88,0x06,0x77,0x6e,0x82,0x41,0x39,0x08,0x36,0x81,0xb7,0x00,0x65,0xe3,0x8b,0x19,0x7d,0xe4,0x46, - 0x53,0xf8,0x5d,0xe5,0x22,0x10,0x7a,0xf7,0x49,0x1d,0x07,0xd1,0x83,0x03,0xc8,0x16,0x71,0x41,0xd6,0x73, - 0x93,0x7a,0x42,0xa9,0xdf,0x55,0x36,0x4e,0x6e,0xf8,0x03,0x7f,0xec,0x97,0x00,0xef,0xfc,0xcd,0xfe,0xe1, - 0xf8,0x86,0x7a,0x1d,0xbb,0x73,0xe6,0x07,0xa2,0xcf,0x88,0xe5,0xe6,0x01,0x98,0xd4,0x1f,0x2a,0x42,0xf4, - 0x18,0xcc,0x26,0x96,0xd2,0x5c,0x82,0x43,0x2d,0x31,0x81,0xf3,0x07,0x08,0x54,0x6a,0xe1,0xfb,0x2a,0xf9, - 0x16,0xa6,0xd1,0xbb,0x35,0xce,0xb2,0x68,0xd2,0x84,0xbf,0x57,0x49,0x0a,0xb5,0xf4,0x78,0x8e,0xe7,0x28, - 0xfe,0x1a,0x0c,0xec,0xef,0x95,0x2f,0x8c,0x32,0x92,0x65,0x71,0x73,0xa4,0x2a,0x7e,0xa8,0x4c,0x05,0x1c, - 0xda,0x15,0xdf,0x2b,0xbe,0x20,0x2d,0x9a,0x73,0xa4,0x63,0x43,0xa6,0x70,0x5d,0x84,0x35,0x10,0x7e,0xf0, - 0xeb,0x2f,0xf4,0xf3,0xfe,0x3e,0x1b,0xcd,0xd1,0x1c,0x7e,0xcb,0x35,0x09,0x68,0x6d,0xd0,0xb8,0x89,0x3a, - 0xde,0x1e,0xef,0xf7,0x7a,0xbc,0x26,0xe5,0x7b,0x1a,0xab,0xfa,0xb6,0x82,0x22,0xd1,0x09,0x0c,0xb4,0x8f, - 0x26,0x3b,0x38,0x8c,0xe5,0x52,0x99,0x26,0x0e,0xee,0x10,0x15,0x1a,0xe2,0x1a,0x43,0xaa,0x51,0x5f,0x9b, - 0x85,0x02,0xf2,0xc8,0x10,0xe1,0x79,0x92,0x36,0xce,0x08,0xf8,0x8f,0xca,0x27,0x9c,0x06,0x83,0x1f,0x7c, - 0xfb,0xf5,0xda,0x2b,0xf8,0x43,0xf5,0x4d,0xf2,0x9d,0x07,0xf7,0x13,0x3f,0x6e,0x37,0x93,0x81,0xd9,0x7a, - 0xcd,0xf4,0xa2,0x27,0xaa,0xe6,0x49,0xf2,0x3d,0x06,0x65,0x36,0xd9,0x0b,0x96,0xd7,0x02,0xce,0x15,0xa3, - 0x68,0xe4,0x79,0xd7,0x35,0x5b,0x32,0x10,0x43,0xe3,0x8e,0x9a,0x84,0x78,0xfd,0x26,0x1a,0x9e,0xe2,0xfe, - 0xc6,0xa3,0xb4,0x86,0x19,0xcf,0xdc,0xbd,0xf9,0x92,0xb2,0x29,0x8c,0x34,0x75,0xe8,0x91,0xf9,0x2d,0x01, - 0x22,0x74,0xdf,0xa7,0xec,0x2a,0x49,0x27,0x35,0x5f,0x8e,0x58,0x26,0x0d,0x30,0x3a,0x04,0x12,0x44,0xb4, - 0xfc,0x5c,0x29,0xe7,0x31,0xb8,0x03,0x6f,0x50,0x1d,0xf8,0xbb,0xec,0xaf,0x93,0x60,0x89,0xf8,0x0d,0x95, - 0x89,0x8e,0x37,0x52,0x3f,0x57,0xdb,0x8c,0x20,0x86,0xf7,0xa8,0x18,0xdf,0xe8,0x83,0x0f,0x06,0x38,0x72, - 0x78,0x21,0x20,0x5c,0xcb,0x71,0xaf,0x71,0xea,0xa7,0x90,0x0e,0xd0,0x9f,0xab,0xa8,0x97,0xf1,0x44,0x14, - 0x2a,0x6f,0x4a,0xda,0x26,0xfc,0xd3,0x26,0x34,0x91,0xa4,0x76,0xad,0x3c,0xa6,0x04,0x17,0xbf,0x6b,0xa5, - 0x31,0x08,0xbc,0x6f,0x59,0x4c,0x9d,0xc2,0x58,0xac,0x4c,0x0a,0xff,0x7d,0xf4,0x73,0xa5,0x79,0xd0,0x0e, - 0x36,0xa0,0x8e,0x1e,0x7f,0x84,0x4a,0xc7,0x58,0x4b,0x15,0xe3,0x40,0x5f,0x39,0x1d,0x1b,0x73,0x43,0x8e, - 0xcb,0xec,0x2c,0xf8,0xf9,0x03,0x8e,0xb0,0xcc,0xde,0xe1,0xee,0xba,0x6f,0x4a,0xde,0x20,0xfb,0x53,0x2e, - 0x71,0x0b,0x86,0x52,0x51,0xeb,0xd3,0x4f,0xf8,0x54,0x67,0x74,0x3e,0xc7,0x67,0x1b,0x30,0x2f,0xbf,0xb3, - 0xb6,0x7d,0xd5,0xa8,0x19,0x42,0xbc,0x5a,0x51,0xf0,0xcf,0xd6,0x91,0xdf,0x73,0x13,0xec,0x9b,0x23,0xe3, - 0x26,0xd3,0x9a,0x29,0x9b,0xe8,0x4b,0xce,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0x78,0xe5,0xa7,0xde,0x26, - 0xbf,0xb2,0x9e,0x39,0x2d,0x11,0x56,0x2e,0xe2,0x53,0x48,0x9a,0x72,0x1d,0x65,0x2e,0x3f,0x49,0x82,0xc0, - 0xcb,0x9d,0xeb,0x9b,0xfd,0x50,0x42,0xf1,0xfd,0xcc,0xe6,0xbe,0x64,0xed,0x54,0x94,0x17,0x04,0x28,0xdf, - 0x1d,0xbd,0x7c,0xc1,0x09,0x5c,0xba,0xea,0x0f,0x5a,0xeb,0xd9,0x2d,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc, - 0xbc,0x58,0x65,0x23,0x20,0xb9,0x54,0x8a,0xbe,0x82,0x6b,0x95,0x95,0x20,0xa7,0x1a,0x30,0x1f,0x23,0x2b, - 0xf4,0x8b,0xc0,0x66,0x88,0xaf,0x12,0x16,0x21,0x9a,0x34,0x9f,0x0e,0x4f,0xf9,0x35,0x29,0xb5,0x59,0x22, - 0x24,0x60,0x08,0x48,0x6f,0x6f,0xa9,0x1a,0x4d,0x93,0x95,0xda,0x25,0x6e,0x32,0x8d,0x44,0x98,0x50,0x53, - 0x3a,0x0c,0xab,0x5f,0xbf,0x39,0x7a,0xfe,0xfa,0x15,0xea,0x99,0x19,0xe9,0xce,0x7a,0xdd,0xa3,0x4d,0xc0, - 0xf6,0x67,0xb7,0x70,0x77,0x19,0x95,0xb8,0x37,0x6b,0xbd,0x1a,0xdf,0x2c,0x60,0x63,0x03,0x79,0xe7,0x7d, - 0x66,0xa5,0x80,0xcd,0x26,0x9c,0xa9,0x69,0xd4,0xaa,0xde,0xd3,0xaf,0x89,0x86,0x40,0xb4,0xd1,0x2f,0x0d, - 0x9d,0x26,0x06,0x68,0x79,0xa4,0xad,0x53,0xe6,0xe9,0x1f,0xd7,0x2e,0x7e,0xb6,0x18,0xac,0xf0,0xb1,0x6e, - 0x28,0xa0,0x89,0x38,0x98,0x4d,0x74,0xa0,0xb6,0x9c,0xc9,0x00,0x67,0x36,0x2f,0x44,0x01,0xfb,0x05,0xcb, - 0xa3,0xe9,0x28,0x68,0xc4,0x42,0xfa,0xc7,0x20,0x21,0xbd,0x49,0x56,0x3a,0xa8,0x11,0x83,0x48,0x29,0xc6, - 0x7a,0x54,0xc6,0xf3,0xc6,0x6c,0xdc,0x21,0x77,0xd9,0xb0,0x76,0xf9,0x7a,0xee,0x59,0x1a,0x69,0x51,0xca, - 0x3b,0xa4,0x8e,0x2f,0xc3,0xd6,0x3b,0x47,0x3c,0xf0,0x7c,0x10,0x9b,0xcf,0xe9,0x86,0x17,0xb7,0x28,0x5a, - 0xdf,0xe5,0x9d,0x78,0x23,0x8b,0xa6,0x2d,0xe2,0x62,0x79,0x50,0xd9,0x11,0x6d,0xe5,0x7e,0x3f,0x22,0x51, - 0x71,0xd5,0xf6,0xb9,0xdc,0xca,0x2d,0x75,0x6e,0xe4,0x45,0xe9,0xd1,0xfb,0x74,0x9e,0xb4,0x8a,0xab,0x15, - 0x2c,0x4c,0xcb,0x6a,0xc1,0x57,0xb8,0x4f,0x39,0x6d,0xbd,0xd6,0xdf,0xf3,0x16,0x9e,0x25,0xf3,0xf5,0x7a, - 0xa5,0xa6,0x98,0x2f,0xbd,0x51,0xa5,0x72,0xde,0xca,0x3a,0xa5,0x53,0x43,0x02,0xfb,0x75,0xbd,0xc3,0xc5, - 0xdb,0x69,0x1a,0xc5,0xd3,0x91,0x58,0xaa,0xb6,0xa1,0xd5,0x57,0x9c,0x33,0xe1,0x98,0x8d,0x7a,0xe4,0x67, - 0x7f,0x4b,0xae,0x76,0x61,0x15,0x9c,0x70,0x0a,0x09,0xd9,0xc5,0x4b,0x92,0xb3,0x6e,0xb2,0x73,0x37,0xce, - 0x60,0x7f,0x3e,0x34,0x31,0xd3,0xca,0x56,0x6d,0x65,0xf7,0x33,0xa7,0x9d,0xaf,0xa4,0x0e,0x0e,0x67,0x39, - 0x23,0x24,0xb5,0x84,0x21,0xe2,0xde,0xde,0x53,0x98,0x0f,0xd6,0xca,0x60,0x29,0xce,0x5e,0x46,0x61,0x9a, - 0x70,0x3e,0x01,0xef,0x8c,0x7e,0x6d,0x31,0x1d,0xa1,0x04,0x18,0x20,0xf5,0x79,0x80,0xf3,0xc6,0xf7,0x25, - 0xe3,0xe8,0x9e,0x5a,0x40,0x21,0x71,0x33,0x58,0xd6,0xc6,0x76,0x7f,0xce,0xf2,0x07,0x4a,0x7f,0x90,0x92, - 0x8d,0x36,0x51,0xb9,0xf7,0x6b,0x3d,0xb8,0x17,0xd9,0x7b,0x93,0x7a,0xfc,0xb8,0xbd,0x7a,0x38,0x20,0x16, - 0x82,0x81,0xc5,0xdb,0x89,0x7e,0x60,0x5c,0x28,0x50,0xa8,0xfd,0xf3,0x1e,0xc9,0x5f,0xa4,0x4d,0x26,0x77, - 0x70,0xdb,0xa2,0xd7,0x29,0x56,0xb8,0x04,0xac,0xfb,0xce,0xfa,0x45,0x86,0x61,0x41,0x6c,0x95,0x19,0xa0, - 0x37,0x0b,0xd7,0xff,0xbf,0xcf,0x82,0x20,0xf3,0xed,0x89,0xb0,0xe9,0xca,0x4f,0x95,0x43,0x00,0x54,0x7f, - 0x57,0x42,0x6f,0xa6,0x44,0xa6,0xce,0x89,0x92,0xff,0xd2,0xf4,0xc1,0x90,0xc4,0x4c,0x9b,0x37,0x95,0x15, - 0xcc,0xba,0x46,0xf0,0x69,0xb6,0x17,0x3c,0x55,0x0a,0xc3,0x05,0x88,0x1b,0x34,0x09,0x9d,0x43,0xef,0x1c, - 0xf3,0xd5,0x15,0xb7,0x75,0xd3,0xbf,0x62,0xa0,0xd1,0xa4,0x8d,0xbe,0x52,0x69,0xeb,0xa2,0x14,0x83,0x44, - 0xed,0x15,0xbc,0xcc,0xf3,0xd2,0xb4,0x40,0x28,0x8c,0xcb,0x23,0x9e,0xe7,0x61,0xa6,0x0d,0xb0,0x82,0x4b, - 0x48,0x10,0xf8,0x46,0x09,0xc4,0xbc,0xbe,0xd5,0x38,0xe4,0x39,0xe3,0xc6,0x2d,0xf2,0xe4,0x94,0xfb,0xf2, - 0x21,0xf7,0x7d,0x5f,0x3e,0xa0,0xa8,0x2f,0x79,0xb9,0x6a,0xda,0x46,0x21,0xdb,0x22,0x6d,0x16,0x3b,0x6c, - 0x27,0x73,0x34,0x9f,0xc2,0x33,0xe2,0x02,0x84,0xc2,0x23,0x04,0x02,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xaf, - 0x50,0xdd,0x54,0x5f,0x6d,0x7b,0x7b,0xab,0xde,0x56,0x10,0x34,0x5b,0xc3,0xb1,0xe7,0x2a,0xda,0x61,0x9d, - 0x3f,0x49,0x01,0x85,0x63,0x40,0x5b,0x52,0x54,0xc6,0x97,0x87,0xe9,0x2c,0xc8,0xc9,0x38,0xf2,0x34,0x9f, - 0x0b,0x56,0x8c,0x60,0x02,0xa6,0xd4,0x09,0xec,0x29,0x9e,0xe5,0xe3,0xb7,0x79,0xfc,0x28,0x27,0x8c,0xdf, - 0x71,0x1f,0xeb,0xd7,0xdb,0xd4,0x6a,0x05,0xcb,0x73,0x76,0x15,0x6b,0xab,0x80,0x24,0x88,0x85,0x30,0x73, - 0x83,0xc1,0xe4,0x1b,0x28,0x0e,0xe1,0x29,0x36,0xea,0xf7,0x47,0x9a,0x3c,0xd0,0xf9,0x0a,0x57,0x23,0xab, - 0x1e,0x1d,0x10,0x9a,0xf2,0x5c,0x55,0x9b,0x96,0x8e,0x3b,0xd1,0x37,0xd9,0x52,0x93,0x8f,0x75,0xd8,0x0d, - 0x3e,0x4b,0x24,0x52,0x44,0x75,0xfc,0x92,0xf8,0xff,0x27,0xf0,0x91,0x0a,0x4e,0xac,0xf5,0xdd,0x0e,0xcb, - 0x4e,0x75,0xde,0xaa,0x92,0xeb,0xa5,0xdb,0xd9,0x69,0xf2,0xb8,0xe1,0xf0,0xaf,0x60,0x69,0x8e,0x7f,0xba, - 0xa5,0x92,0x89,0xc9,0xeb,0xaf,0x64,0x8e,0x4a,0xc0,0xd3,0xd0,0x1c,0x1d,0xd0,0x89,0xe8,0xee,0xdc,0x91, - 0x09,0x4f,0xd9,0x6e,0xbc,0xa0,0x47,0x2a,0x90,0x52,0x01,0x63,0xa0,0x4e,0x14,0x03,0xac,0xdf,0xf3,0xf1, - 0x5c,0x97,0x78,0x85,0x12,0x73,0x2a,0x31,0xb1,0x25,0x66,0x09,0xa5,0x87,0x2b,0x17,0x69,0x3d,0x05,0xed, - 0xfb,0xcd,0x01,0xd5,0x3a,0x1f,0x3f,0xcb,0xe3,0x57,0x39,0xb3,0xf7,0xd1,0xb8,0x90,0xc6,0x4c,0xdd,0xb1, - 0xa9,0x22,0x3e,0x50,0x3a,0xe0,0xb2,0xd2,0xd0,0x12,0xaf,0x94,0x85,0x95,0x78,0x86,0x6b,0x90,0x8f,0xcc, - 0x6d,0x7d,0xb1,0xd4,0xb2,0xb7,0xf7,0x5e,0x0b,0xc9,0x65,0xf6,0x4c,0xfc,0x8e,0xe0,0xc4,0x47,0x03,0x8f, - 0x1b,0x77,0x48,0x8f,0x8c,0xc0,0xe3,0x81,0x8d,0x91,0x18,0x65,0x89,0x0d,0x9b,0xed,0x88,0x28,0x33,0x8e, - 0xd6,0x7d,0x5e,0x6d,0x11,0xb2,0xef,0x13,0xfe,0x10,0x46,0x90,0x83,0x87,0x8d,0x84,0x97,0xda,0xf8,0x3b, - 0xed,0xa1,0x4f,0x62,0x1d,0x66,0x5f,0xfc,0x43,0x5f,0x11,0xeb,0x24,0x06,0xfb,0x87,0x7e,0xf9,0x77,0x1e, - 0x2d,0x05,0x12,0x8a,0xe8,0x1d,0xf8,0x69,0xe1,0x6a,0x9e,0x94,0x88,0xf3,0x33,0x76,0x87,0xb0,0x6f,0xfa, - 0xaa,0xcc,0xb9,0x44,0xcb,0x73,0xe9,0xa1,0x09,0x55,0x90,0x9c,0x35,0x86,0x1b,0x72,0x1b,0x3a,0xb2,0xce, - 0x57,0x6c,0x3e,0x49,0x9f,0x11,0x84,0x67,0x15,0x57,0x7e,0xc8,0xb1,0xc0,0x40,0x90,0xe0,0x92,0x39,0x47, - 0xdb,0x20,0x8e,0x18,0x21,0x46,0x05,0xaf,0x57,0xde,0xd8,0x04,0x24,0x43,0xf9,0x8c,0x35,0x75,0x33,0xf3, - 0x7a,0x54,0x4a,0xc2,0xd4,0x24,0x3c,0x64,0x9a,0x5d,0x12,0x97,0x94,0x48,0x53,0x9a,0xa5,0xfa,0xab,0x0b, - 0xfb,0x6e,0x3e,0xbb,0xb4,0x29,0xfe,0x77,0x0b,0x4a,0x3d,0xcb,0x60,0x22,0xfe,0x14,0x55,0xc2,0x7b,0x4f, - 0x2a,0x57,0xd7,0x28,0x8f,0xab,0xd7,0x25,0xe3,0xcc,0xf6,0xca,0x4c,0x8c,0xba,0xb2,0xdf,0x3e,0xe4,0x7a, - 0xd5,0x91,0x6d,0x42,0x7d,0x34,0x5f,0xeb,0xac,0x4f,0xae,0x7f,0xf6,0xfb,0xc7,0x94,0x36,0xd5,0x7b,0x4a, - 0x3d,0x4c,0xce,0x2a,0xf5,0x8e,0xfe,0x68,0x3b,0xfd,0xd1,0xbb,0xbd,0xbd,0x77,0x96,0xe4,0x7a,0x98,0x84, - 0xef,0x12,0xf3,0x1a,0x19,0x8e,0x95,0x57,0xe2,0x4e,0xb2,0xfb,0xd0,0x0b,0x9d,0x44,0x1c,0x29,0x1b,0xf1, - 0x97,0x25,0xe8,0x40,0x8e,0x09,0x4c,0x4b,0x72,0x67,0xbd,0x3e,0xc2,0xe1,0x49,0x6b,0x70,0x24,0x20,0xf0, - 0x3a,0xb9,0xb3,0xb7,0xb7,0x1c,0x2f,0x69,0x37,0x3c,0xc5,0xe3,0xe5,0xf8,0x32,0x9e,0xaa,0x37,0x78,0xbc, - 0x18,0x5f,0xd0,0xbe,0xf8,0x2d,0xb9,0x33,0xbe,0x5a,0xaf,0x17,0xf1,0x42,0x3d,0x41,0x6a,0x8f,0xd3,0xcb, - 0xd1,0xf8,0x28,0x3e,0x57,0xcf,0xa9,0xe0,0xc7,0xf5,0xfa,0x3a,0xbe,0x56,0x2f,0xe8,0xf1,0xd3,0x7a,0x7d, - 0x16,0x9f,0xa9,0x67,0xc4,0xb7,0xe4,0xe1,0xe3,0x68,0xfc,0x58,0xa6,0x2d,0x7e,0x1c,0xa9,0x57,0x09,0x1f, - 0x84,0x35,0xeb,0xe3,0xd5,0xcb,0xe4,0x69,0x13,0x3e,0x89,0xd4,0xdb,0xc4,0xc1,0x89,0xef,0x64,0x1b,0xdd, - 0xbc,0x22,0x90,0xa4,0x03,0xa5,0x54,0x6f,0x22,0xc5,0xbf,0x4f,0xe9,0xa8,0x7c,0xeb,0x40,0x73,0x1c,0x52, - 0x09,0xce,0x78,0x1d,0xa9,0x17,0x7b,0x7b,0x2f,0xd8,0x90,0xe2,0xf9,0xde,0xde,0x73,0xb8,0x25,0x78,0xb5, - 0xea,0x60,0xeb,0x1a,0x5e,0xeb,0x8b,0x92,0x06,0xf6,0x03,0x6d,0x07,0x67,0xf9,0xe4,0x1a,0x15,0xb9,0x90, - 0xa1,0x76,0xc1,0xa7,0x2a,0x1d,0x0e,0xf9,0x14,0xc1,0x8a,0x98,0xd5,0x74,0xcf,0xc7,0x2c,0x49,0x3b,0x19, - 0x71,0x38,0x23,0xb1,0x37,0x2c,0xc4,0xde,0xb0,0xc1,0x0e,0xb3,0xfb,0xa6,0xfb,0x1e,0x46,0xea,0xc9,0xde, - 0xde,0x13,0xea,0xfa,0x5b,0xc8,0x82,0x7e,0xdb,0xdb,0xfb,0x0d,0x7d,0xc6,0x88,0xaf,0xf4,0x80,0xae,0x64, - 0xc4,0xea,0xb4,0x75,0x90,0x5c,0xf9,0xf3,0xf1,0xba,0x35,0x1d,0xeb,0xf5,0x4b,0x3a,0xc7,0x5f,0x37,0xe1, - 0xb3,0x68,0xec,0x9d,0x42,0x6f,0xd5,0xb3,0x28,0xfe,0x88,0xe2,0x73,0x6a,0x0c,0x48,0x44,0x79,0x13,0x21, - 0x06,0xb6,0x95,0xdf,0x1f,0xea,0x06,0x57,0xf5,0x36,0x6c,0x59,0x3c,0xdf,0xd1,0x08,0xc4,0x09,0x81,0xa9, - 0x3b,0x9f,0xfc,0xe6,0xc3,0xd6,0x04,0x87,0xc4,0x79,0xba,0x49,0xb4,0x33,0x06,0x55,0x76,0x5f,0xba,0x38, - 0x98,0xca,0x74,0x26,0x45,0xa4,0x2e,0x08,0x10,0x11,0x1c,0xf5,0x4a,0xa6,0x24,0x85,0xb3,0x04,0xff,0x2e, - 0x7b,0xa6,0x24,0x25,0x1e,0x0a,0x53,0xc2,0xa5,0x5a,0x7d,0x3a,0x92,0x29,0xf9,0xd8,0x9a,0x92,0x4f,0xea, - 0x23,0x4f,0x49,0xaa,0x56,0xea,0x93,0x4c,0xc9,0x25,0x28,0xb3,0x94,0xde,0xd4,0x15,0x7f,0xf4,0x09,0x74, - 0xb6,0xb6,0x19,0xd7,0xb8,0x32,0xf5,0xd1,0x99,0xf7,0xd6,0xc6,0x95,0x2e,0xdd,0xe0,0xca,0xfa,0x76,0x5c, - 0x29,0x91,0x5f,0xe5,0xfe,0x18,0x8b,0x1a,0x0d,0x03,0x25,0x6a,0xd6,0x5d,0x6e,0xd8,0x20,0x69,0xe3,0x6f, - 0x52,0x33,0xce,0x5c,0x25,0x12,0xe1,0x85,0x90,0x24,0xe4,0x2d,0xa9,0xc1,0x6a,0x53,0xf3,0x6a,0x90,0xdf, - 0xd2,0x24,0xf8,0xb8,0xef,0x82,0x12,0x05,0x7f,0xbd,0x40,0x16,0x61,0x48,0x5d,0x88,0xb0,0x62,0x2d,0xd8, - 0x4b,0x32,0xce,0x6d,0xed,0x16,0x77,0x5d,0x53,0x12,0x3b,0x65,0x4b,0x89,0x33,0xbc,0x1a,0x54,0x76,0x25, - 0xdb,0x7c,0x2e,0xdb,0xfc,0x08,0xdb,0xfc,0x32,0x22,0x8c,0x08,0x84,0x70,0x16,0x8d,0xcf,0xa4,0xae,0xf8, - 0x2c,0x62,0xac,0x68,0x86,0xd6,0xde,0xfa,0x3e,0x88,0x40,0x84,0xd4,0x03,0x30,0xbc,0x06,0x3d,0xe9,0x16, - 0x86,0x38,0x74,0xd7,0x95,0xe0,0x10,0x07,0x20,0xcb,0xa8,0x05,0x21,0xe3,0xf0,0x8a,0x71,0x08,0x43,0x0e, - 0xd5,0x79,0xce,0x76,0x20,0x21,0x36,0xc4,0x62,0x6f,0x6f,0x81,0x37,0xe5,0x75,0x52,0x63,0x92,0xeb,0xf1, - 0x35,0x6d,0xd7,0xb8,0x0c,0x7d,0x82,0xe0,0xb5,0x77,0x22,0x6f,0xc7,0x94,0xa2,0xd9,0x90,0x3b,0x0f,0x7d, - 0x75,0xf2,0x53,0xc4,0x99,0x65,0x56,0xc2,0x05,0x2d,0xd6,0x61,0xb1,0x61,0x25,0x8c,0xf0,0xc6,0x5e,0xd8, - 0xa7,0x31,0x15,0xdf,0x0a,0x5f,0x53,0x1d,0x1f,0x9c,0xc4,0x08,0x5e,0x63,0x6f,0xd9,0x83,0x5f,0x8b,0xa6, - 0x9f,0xbe,0xf1,0x54,0x78,0x6f,0x34,0xbd,0xb2,0x0b,0xbd,0x7c,0xe3,0x63,0x80,0x77,0x7c,0x19,0xb1,0xf3, - 0x01,0xb1,0xa4,0xf7,0x13,0xf3,0xa4,0x9c,0x25,0x5c,0x3f,0x7d,0x6b,0x4b,0x6e,0xd4,0x81,0x57,0xd5,0x93, - 0x0e,0x15,0xdf,0x78,0x92,0xb1,0xc5,0x6a,0xde,0xe4,0xcb,0x79,0x26,0xf4,0xfa,0x7a,0xdd,0x1d,0x99,0x17, - 0xef,0x8c,0x8d,0x00,0xe1,0x87,0x65,0x7d,0x68,0xba,0x6e,0x58,0x30,0x05,0x73,0xb9,0xb8,0x36,0x23,0x8f, - 0xca,0xe4,0x8c,0xd8,0xbf,0x17,0x30,0xf2,0x01,0xbf,0xab,0x70,0xfd,0xd2,0x9c,0x2f,0x43,0x87,0x90,0x9e, - 0xc1,0xc7,0x24,0x24,0x5e,0x18,0xaf,0xeb,0x90,0x3f,0xf1,0xa2,0xfe,0x82,0xeb,0x02,0x5d,0xa5,0x0b,0xb3, - 0x66,0x4a,0xce,0xb1,0x6e,0x6a,0x52,0xc3,0x4e,0x97,0xb9,0xa9,0x76,0xfa,0x7e,0xeb,0xd2,0xc7,0xe7,0x4d, - 0xfb,0x8a,0x95,0xee,0xcd,0x77,0x36,0x6b,0xf7,0x3a,0x14,0x7b,0x59,0xcf,0x25,0xc4,0x87,0x32,0x11,0x95, - 0x72,0x74,0x36,0x5c,0x30,0x20,0x7a,0x3e,0x2d,0x7e,0xf4,0xbc,0x3a,0x1a,0xf1,0x6e,0x16,0x9e,0xc5,0xc9, - 0x4c,0x61,0x63,0xe6,0xdc,0x39,0x6e,0x29,0xc4,0x83,0xdc,0xfe,0xf2,0x50,0xbd,0x6c,0x6c,0x86,0xd2,0x82, - 0x7c,0x9f,0xde,0x7c,0xd9,0x62,0x3a,0xbb,0x0e,0x0c,0x97,0xec,0xbe,0x00,0xa9,0xb3,0xe8,0xc1,0x03,0xe1, - 0x33,0xf3,0x46,0x72,0x1a,0x45,0x98,0x94,0x23,0x1e,0x0d,0xa7,0x79,0xcd,0xa6,0xc7,0x92,0xe1,0xab,0x2f, - 0xde,0x7a,0x33,0xb1,0x7b,0x8b,0x1f,0x83,0x48,0xaa,0xb2,0x2e,0xf2,0x1d,0x67,0xf1,0x5b,0x76,0x8d,0xb9, - 0x4d,0x66,0xe6,0x79,0x54,0x78,0x52,0x51,0x26,0x03,0xb6,0xec,0x5e,0xcd,0x2a,0xe2,0x8c,0x6f,0x59,0xbc, - 0x1a,0x3f,0xf4,0x31,0xd5,0xf1,0x0b,0x1c,0xbb,0xac,0x77,0xa1,0x2f,0xe4,0x7c,0xe4,0x35,0xc0,0xb7,0x4e, - 0xba,0x18,0xa7,0xed,0xf0,0x47,0x85,0xbb,0x66,0x22,0x42,0xe8,0x23,0x8e,0x0f,0xac,0x6f,0x2f,0xa1,0xcd, - 0x2f,0xa8,0xd0,0xf0,0x93,0x1d,0xc7,0xbc,0x9c,0xbe,0x38,0xc3,0x85,0x1e,0x27,0xec,0x9a,0xd7,0x13,0x89, - 0xf6,0x83,0x93,0x24,0xdd,0xfb,0x75,0xba,0xff,0x31,0xcb,0x96,0xfb,0xe9,0x9c,0x0e,0x8b,0x3b,0xfa,0xae, - 0x40,0xa6,0x6f,0x9c,0x47,0x75,0x18,0xb8,0x22,0x81,0xba,0xe1,0xae,0xc5,0xcd,0xd6,0xec,0xb8,0x3e,0xfb, - 0x40,0xfc,0x5e,0x03,0x1b,0x93,0x44,0xac,0x1c,0x38,0xe3,0xcb,0x27,0xdd,0x2b,0x9b,0x52,0xf2,0xbb,0x3e, - 0x4d,0x6d,0xbe,0x3d,0x5d,0x3d,0x8b,0x70,0x5d,0x9d,0x88,0x5b,0xb3,0xab,0x37,0x25,0x82,0x09,0xa1,0x34, - 0x01,0xe7,0x23,0x22,0x8c,0x39,0xaa,0xc7,0x3c,0xa7,0x4f,0xdf,0xe2,0xea,0x75,0x3f,0xce,0xbc,0xbf,0xbc, - 0x52,0x01,0x81,0xb8,0xb2,0xbe,0x33,0x52,0x9b,0xbe,0x8e,0x62,0xd6,0xec,0x17,0xfc,0xc3,0xf7,0x9e,0x35, - 0xe5,0x92,0x5e,0xe9,0x2f,0x30,0x58,0xb5,0x5e,0xe7,0xb6,0x0b,0x18,0xc2,0xd4,0x28,0x19,0x4b,0xdd,0x15, - 0x16,0x0c,0x8f,0x4a,0x77,0x37,0x3c,0x11,0x99,0x3f,0x65,0x67,0x1f,0xf3,0xc6,0xf2,0x9f,0x49,0xc0,0x99, - 0x08,0x83,0x17,0x06,0x83,0x6a,0x10,0x2c,0x3f,0x29,0xd6,0xed,0x2f,0x3f,0x45,0x81,0x2a,0x3d,0x00,0x36, - 0xbc,0x78,0x12,0x1c,0xd4,0xbe,0x62,0xfe,0x77,0x8b,0x70,0xb5,0x12,0x99,0x79,0xdf,0x43,0xf6,0xd7,0xcf, - 0x94,0x35,0x80,0x88,0x1b,0x65,0x4c,0x16,0x5a,0x37,0xde,0x76,0xef,0x3f,0x55,0x4e,0x95,0x6f,0xaf,0xe1, - 0xd0,0x81,0x8d,0xb5,0x63,0x22,0x1e,0x25,0x14,0x88,0x73,0xa3,0x6a,0x22,0x25,0xc0,0x48,0x4c,0xb7,0x0d, - 0x11,0x70,0xec,0xdf,0x13,0xf3,0x43,0x5b,0xbc,0x61,0xac,0x15,0x47,0x61,0x9d,0xd0,0x26,0x87,0x8e,0x95, - 0xa0,0xeb,0x3a,0xd0,0xfa,0x0b,0xf8,0xf5,0xd4,0x9e,0x69,0x52,0x26,0x1e,0x3e,0xbb,0xbe,0xf5,0x91,0xb6, - 0x37,0x08,0x4b,0x54,0x90,0xa3,0x82,0x2a,0x9b,0x49,0x05,0x39,0x1c,0x90,0x92,0x52,0xe5,0xd6,0x11,0xe9, - 0x16,0x27,0xed,0x7c,0xd4,0x48,0x08,0x4d,0x7b,0x81,0x4b,0x03,0xa9,0xa8,0xf3,0xf3,0x81,0x78,0x55,0x07, - 0xc8,0xb4,0x31,0x98,0xd9,0x97,0xbd,0xad,0xf2,0x0c,0x10,0x5d,0xc2,0x1a,0x19,0xc3,0x54,0x9a,0xde,0xa1, - 0x8d,0x4a,0xd8,0x8c,0x26,0xc0,0xd4,0x05,0x9e,0xcc,0xb8,0x69,0x47,0xcc,0xe6,0xaf,0x60,0x8e,0x24,0x76, - 0x35,0x1c,0x49,0x20,0xe0,0x7b,0xe5,0xa8,0x1a,0x0e,0x63,0x85,0xe0,0xd4,0x3a,0x93,0x92,0xf6,0x75,0x09, - 0xa2,0x01,0xec,0x37,0x7e,0xb2,0x1c,0x53,0xee,0x5b,0x13,0x41,0xb8,0xb0,0x45,0x81,0x7d,0x6d,0xa9,0x23, - 0x91,0x6c,0xdd,0x0d,0x82,0xbb,0x6c,0xc5,0x7d,0xd7,0x06,0x01,0xbd,0x4b,0xeb,0xb9,0xdd,0x53,0xa0,0x59, - 0x5b,0xfb,0x7a,0xcd,0x96,0x67,0x52,0xab,0xe2,0x1b,0x87,0x21,0xa3,0x82,0x11,0x69,0xc3,0xde,0x9f,0x41, - 0x5e,0x4b,0x97,0x0a,0x87,0x2a,0x12,0xc4,0x9b,0x14,0x73,0xa1,0x46,0xb8,0xb2,0x79,0x5e,0x64,0xfb,0xb6, - 0x25,0x29,0x2e,0xa9,0x47,0x3a,0x11,0x86,0x8b,0x2e,0x7a,0x60,0x72,0x30,0x9a,0x3c,0x38,0xb3,0x91,0x0f, - 0x26,0x7c,0x07,0xd3,0x59,0x79,0x3c,0x39,0x61,0x38,0xa3,0x2e,0x8e,0x5a,0x91,0x3e,0xb4,0xab,0x73,0xd7, - 0x4e,0x16,0x01,0x1f,0xd4,0x52,0x5d,0xf8,0xb6,0x42,0xdc,0x48,0x43,0x5b,0xa1,0x48,0x2e,0xac,0x03,0xff, - 0x83,0xc2,0x38,0xf1,0x57,0x49,0x9e,0x5c,0x20,0x46,0x32,0xdf,0x9a,0x50,0xca,0xb3,0x10,0x39,0xaf,0x4a, - 0x2d,0x44,0xd2,0xb2,0xf8,0x8b,0xb4,0x7e,0x94,0x33,0x2a,0xaa,0xc1,0x28,0x84,0x69,0xb2,0xd5,0xa5,0xa4, - 0xd2,0x37,0xed,0xbc,0x97,0x60,0x32,0x7e,0x08,0x79,0x77,0xf3,0x44,0x57,0x50,0xcf,0x11,0x15,0x8d,0xdc, - 0xe7,0x30,0xc2,0xbd,0xd7,0xb0,0x58,0xc0,0xe5,0x56,0x91,0xbe,0x66,0xc1,0x88,0xc3,0xdf,0x97,0xd0,0xbb, - 0x44,0xea,0x83,0xeb,0x9b,0x9f,0xfd,0x81,0xb3,0x69,0x18,0xdf,0xb2,0x67,0x7f,0x8d,0x73,0x5e,0x22,0x7c, - 0x02,0x8d,0xb3,0xcd,0x33,0xf5,0x5c,0xab,0x8c,0x9b,0xc5,0x3c,0x90,0x80,0x62,0x67,0x88,0x85,0x29,0x4d, - 0x79,0xea,0x64,0xa6,0x9c,0x27,0x34,0x2d,0x73,0xce,0x91,0x42,0xa0,0xc2,0xae,0x8b,0x09,0x9d,0x95,0x0c, - 0x7d,0x36,0x42,0x24,0xe7,0xaa,0x12,0x6c,0x6a,0x70,0x87,0x0d,0xe0,0x02,0x36,0xaa,0x86,0x86,0xdd,0x41, - 0xca,0xde,0xde,0xc7,0xd2,0x5e,0x1c,0x6b,0x30,0x98,0xb0,0x40,0x44,0x0a,0xb3,0x05,0x25,0x82,0x57,0xc5, - 0x3f,0x9a,0x27,0x4b,0xd5,0x3d,0xeb,0x1f,0xf0,0x33,0x19,0x30,0x77,0x46,0x02,0xb2,0xed,0xfa,0xd7,0x1c, - 0x5e,0x26,0xad,0xd9,0x7b,0x25,0xb3,0xa7,0xd7,0xe8,0x11,0xcd,0xd0,0x22,0x01,0xe3,0x78,0x7c,0x78,0x32, - 0x5a,0xe8,0x99,0xb6,0xd2,0xb7,0x70,0xa1,0xc1,0x65,0x70,0x88,0x91,0xcc,0x93,0x8a,0xf8,0xb5,0x1c,0xf2, - 0x4f,0xe2,0xcf,0x16,0x90,0x58,0x29,0xc4,0xd2,0xc8,0xa2,0x96,0x43,0x5c,0x38,0xf1,0x5e,0xb7,0x2c,0x35, - 0xe7,0x4a,0x3b,0x20,0xc5,0x2b,0x6d,0x62,0x39,0x83,0x85,0x49,0x3c,0x55,0xd6,0x1a,0x30,0x5e,0x6e,0x10, - 0x67,0xc3,0x9a,0xf0,0xf1,0x04,0xe8,0xf9,0xe8,0xd8,0xd4,0x95,0x7c,0x7f,0x8d,0x3f,0xbb,0xc1,0x02,0xa2, - 0x65,0xac,0x6a,0xf5,0xd9,0xa9,0xde,0xdb,0xd3,0x73,0xad,0x5d,0x3b,0x36,0x2d,0xae,0xe6,0x7b,0x77,0xa6, - 0x32,0x10,0x27,0xc6,0x40,0x90,0x20,0x37,0x88,0xfa,0xac,0xc6,0x24,0xa5,0xd1,0x13,0xfb,0x52,0x47,0x52, - 0x32,0x5c,0x03,0xab,0x52,0xe9,0xdb,0xa4,0x38,0xbe,0x7f,0xa2,0xb5,0x38,0x86,0xee,0xa1,0xa9,0xd7,0x29, - 0x76,0x95,0x7e,0x32,0x40,0x9c,0xeb,0xfa,0xde,0xba,0xe8,0xb9,0xe5,0x18,0xe1,0x91,0xe6,0x79,0x5a,0x27, - 0xb9,0xfd,0xe0,0xad,0x7c,0x50,0x0d,0x73,0xa2,0x2c,0x52,0xa2,0xe0,0x0e,0x93,0xd2,0xd5,0xab,0x4a,0x6a, - 0x95,0xed,0x20,0x4c,0xf6,0xfd,0xa4,0x74,0x1d,0x41,0xdc,0x12,0x53,0xa3,0xaa,0xf8,0x42,0xb9,0x82,0x83, - 0x00,0xb4,0xbd,0x35,0xbe,0xb5,0x8a,0x91,0x7c,0xf6,0xb8,0x24,0x2c,0xc0,0xd4,0x11,0x73,0x0a,0x7e,0x02, - 0x87,0x2d,0x6d,0x27,0x19,0x6d,0x8b,0x67,0xb7,0xec,0x8b,0x7e,0x7f,0x6f,0xda,0xab,0xc4,0xa7,0xa1,0x89, - 0x0c,0x9f,0x19,0x91,0xa1,0x67,0xc1,0xdc,0x65,0xc9,0xc6,0x81,0x09,0xa2,0x14,0xdf,0x04,0x71,0x50,0xe2, - 0xc7,0x45,0x52,0xd0,0xb7,0xd4,0x0d,0x12,0xd8,0xd9,0xe5,0x83,0xbb,0x41,0x7c,0x77,0xf0,0x0b,0x94,0x06, - 0xec,0xa7,0x0d,0x2b,0x6b,0x77,0x0f,0xb3,0x27,0x78,0x66,0x7b,0x41,0x67,0xda,0xec,0x68,0x4b,0x7b,0xb3, - 0x67,0xe0,0x71,0x8f,0x9b,0x60,0x3b,0xe8,0xb3,0xbd,0x22,0x2c,0x38,0x0e,0x06,0x5d,0x11,0xb9,0x1d,0xbd, - 0xae,0xd9,0x3a,0xda,0x29,0xe8,0x07,0x4f,0x02,0x7d,0xc2,0xfd,0xbb,0x34,0xa4,0xab,0x78,0x67,0x11,0x39, - 0xf3,0x73,0x27,0x89,0x01,0xd4,0xd9,0xd2,0x1a,0x5b,0x83,0x80,0xc8,0x2d,0xfc,0x49,0x8d,0x63,0x28,0x0b, - 0x72,0x38,0xa4,0xa3,0x57,0x18,0x68,0x1d,0xd7,0x8c,0x46,0xe5,0x20,0xe1,0x07,0xf5,0x4b,0xc9,0xba,0xeb, - 0xd4,0xd8,0xd8,0xba,0x20,0xd3,0xd9,0xa7,0x54,0xc2,0x8f,0xd4,0x26,0x88,0xb6,0x57,0xd3,0x88,0x2a,0xf8, - 0xb1,0x0c,0x8f,0x83,0x49,0x53,0xcd,0x69,0x10,0x6c,0xac,0x4b,0xbf,0xe9,0x1c,0x7f,0x17,0x59,0x93,0x06, - 0x27,0xb7,0x9b,0x92,0xef,0x4e,0x8e,0x33,0xd8,0x9a,0xf7,0x5b,0xa2,0x6b,0x74,0x3a,0x0c,0x06,0xd9,0x20, - 0xf8,0x81,0xa8,0x2a,0x3b,0x59,0xeb,0x35,0x38,0x36,0x31,0x0a,0xb1,0x1d,0x36,0xfe,0xbb,0xd6,0x7e,0x27, - 0xcc,0x07,0x84,0xd5,0x61,0x6b,0x71,0xf7,0x6c,0xd5,0x34,0x65,0x71,0x17,0xd3,0x20,0x95,0xc2,0x4f,0x7f, - 0x90,0x72,0xc3,0x3f,0x36,0xa6,0x5a,0x4a,0xa3,0x45,0xb0,0x0a,0x38,0x3a,0xd8,0x47,0xd8,0x8e,0x52,0x53, - 0xe9,0xc5,0xac,0x0c,0x75,0x25,0x37,0xa0,0x71,0xc3,0x62,0xac,0xd7,0x64,0x10,0x98,0x8c,0x20,0xae,0xc6, - 0x6c,0xb5,0x6a,0x32,0x22,0x97,0x63,0x16,0x90,0x21,0xcd,0xb4,0x45,0x64,0x91,0xa9,0x25,0xee,0x6b,0xc6, - 0x56,0xe4,0x43,0xe7,0x8f,0x1e,0x0b,0xc0,0x31,0x6e,0x9e,0x33,0x65,0x74,0x78,0x10,0xf9,0xf1,0xec,0xcd, - 0x34,0xea,0xd0,0xd1,0x44,0x1c,0x52,0x75,0x1a,0xce,0x68,0xd5,0x6d,0x98,0xe1,0xe0,0xf4,0x63,0xd8,0x2e, - 0x4a,0x24,0x7c,0x07,0xf1,0x66,0xbc,0x71,0xba,0xa9,0x05,0x52,0xdd,0xa7,0xbe,0x55,0x66,0xd6,0x32,0x5f, - 0x42,0xac,0x9c,0x02,0xb7,0xf3,0x1a,0x4b,0x51,0x89,0xd1,0x16,0x07,0x30,0xf4,0xe3,0x00,0xac,0x76,0x7f, - 0x40,0x97,0x3e,0x6e,0xc4,0x3a,0x29,0xbe,0x7b,0x3a,0xd1,0x21,0x03,0xee,0xf2,0xb4,0xa9,0x4e,0x5c,0xe3, - 0xb8,0xe8,0x46,0x3a,0xf6,0x10,0x58,0x53,0xb8,0x78,0xf9,0xa6,0x58,0x59,0x8a,0xaf,0x9c,0xbc,0xbe,0xa9, - 0xca,0x49,0x56,0xd7,0xd9,0xd4,0x2e,0x7d,0x61,0x8d,0xbb,0x33,0x6d,0xb8,0xbf,0x2b,0x0f,0x5b,0x45,0x2b, - 0xbf,0x28,0xed,0x37,0x2e,0x49,0xbf,0xdb,0x75,0x26,0x08,0xf7,0xd1,0xf0,0x4d,0x1f,0x33,0x44,0xaa,0x44, - 0x68,0x3f,0x60,0x5f,0x76,0xee,0xb2,0x08,0x7c,0x8c,0xf9,0xf5,0xde,0x63,0xda,0xcb,0xb5,0x57,0xe0,0x7e, - 0xa7,0xc0,0x7d,0x14,0x28,0x5a,0x2d,0x32,0xa5,0x73,0x3a,0x0f,0xb5,0x75,0xb5,0x23,0xf2,0x61,0x0e,0x9d, - 0xb2,0x07,0x8a,0x9b,0xe5,0x86,0x43,0xb8,0x61,0x56,0x23,0x8d,0x7c,0x6e,0xa3,0x2d,0x95,0x0e,0x90,0x26, - 0x43,0xcd,0x67,0x3c,0xd2,0x7c,0xb6,0x35,0xd0,0xd2,0xcd,0x88,0xa3,0xb9,0x77,0x3b,0x34,0xb7,0xd0,0xea, - 0x7d,0x4c,0x87,0x31,0x60,0xa5,0xe9,0x5a,0xd2,0x74,0x5d,0x24,0x53,0xcb,0x85,0xac,0xd7,0x1e,0x49,0x0f, - 0xa9,0x6f,0x11,0x4e,0x21,0x55,0x27,0xf6,0xf3,0x14,0x76,0xc2,0x17,0x83,0xf0,0x92,0xa7,0xe7,0x92,0x63, - 0xc4,0x9d,0xd3,0xa7,0x3a,0xaa,0x78,0x40,0x5b,0x48,0xbf,0xdc,0xe6,0xf6,0x72,0x56,0x68,0xd3,0x06,0x9a, - 0x8b,0x18,0x4e,0xc5,0x22,0x8b,0x6a,0xe1,0x67,0x82,0xbc,0x6b,0x53,0x29,0x8c,0xe6,0xb5,0xeb,0x40,0x70, - 0xa2,0x76,0xcf,0x69,0x3a,0xae,0xd9,0x37,0x2b,0x5c,0x10,0xda,0x61,0xb6,0x20,0x60,0xc1,0xac,0xbc,0x07, - 0x83,0xf3,0x48,0x5d,0xcb,0x5b,0x78,0x0e,0xa3,0x20,0x53,0x86,0x77,0xd4,0x35,0x8d,0x02,0xf6,0xcc,0xbc, - 0x04,0x67,0x32,0xc5,0x2e,0x6c,0xea,0xc4,0x8f,0x76,0x41,0x04,0x19,0x74,0x8d,0x0d,0x6c,0xb8,0x3a,0xbc, - 0xc5,0x18,0x35,0xc6,0x34,0x2d,0x58,0x36,0x48,0xa1,0xce,0x68,0x66,0x68,0xeb,0x0c,0x26,0xdc,0x48,0xca, - 0x19,0xd1,0x20,0x9c,0xf1,0x2c,0xcd,0x62,0x36,0x4a,0xa1,0x46,0x2d,0xd9,0x78,0x9a,0x68,0x5e,0x75,0xac, - 0xe3,0x83,0xa5,0xb2,0x98,0x08,0x08,0x7a,0x5b,0x5b,0x38,0x94,0xc1,0xd3,0x48,0x5b,0x77,0x31,0x75,0xb4, - 0x8e,0x83,0x80,0x9e,0xc2,0x53,0x6e,0xe8,0x94,0x1b,0x0a,0xaf,0xf8,0xe5,0xca,0xb4,0x6a,0x2f,0x4c,0x3a, - 0x22,0x26,0xe8,0xe8,0x41,0xe3,0xe4,0x0b,0x56,0x48,0x7a,0x44,0xac,0xca,0x59,0xe2,0xe7,0x1c,0x1f,0x81, - 0x31,0x3a,0xb3,0xd8,0xfe,0xcc,0xc6,0xb1,0x2c,0x34,0xc3,0x14,0x48,0xcf,0x3d,0x1c,0x54,0x74,0xef,0xb2, - 0xe9,0xec,0x7a,0xec,0x97,0xa6,0x8b,0x40,0xe4,0x58,0xe9,0x45,0x4c,0x1a,0xa1,0x00,0x1c,0x10,0x2c,0x7d, - 0x41,0xf3,0x1b,0x6e,0x7f,0x6f,0xe2,0xd2,0x45,0x03,0x8b,0x76,0x24,0x96,0x48,0xa0,0xc4,0x5b,0xd9,0x4e, - 0x83,0x75,0x0e,0xf1,0x11,0x55,0x0b,0xd9,0x48,0x78,0xf2,0xbf,0xb4,0xe5,0x5a,0x6d,0xf9,0x9e,0xae,0x41, - 0xc0,0x32,0x11,0xad,0x98,0xad,0x46,0xda,0x5e,0x16,0x62,0x82,0x9b,0x22,0xe1,0x18,0x24,0xc6,0x4d,0xc4, - 0x3a,0xab,0xda,0xe3,0x69,0x1c,0x9c,0x96,0xa1,0x37,0x72,0x85,0x13,0x09,0x5d,0x7c,0x3e,0x1d,0x0c,0xf8, - 0xb5,0x60,0xbf,0x36,0x5d,0x60,0xd3,0xc6,0xa3,0x9e,0xfb,0xc5,0x76,0x60,0xea,0xd6,0x80,0x30,0x50,0xcf, - 0x32,0xdd,0x9a,0xcc,0x7b,0xaa,0x3b,0xb7,0x63,0xab,0x71,0x25,0xc7,0x83,0xcc,0xd6,0xb8,0xd2,0xa7,0x85, - 0x3e,0x35,0xf8,0x2a,0x10,0x23,0x5f,0xb1,0xd7,0x04,0x13,0x80,0x9c,0x12,0x81,0x19,0x68,0x63,0x80,0xc6, - 0xc4,0xf5,0x73,0xe4,0x43,0xf6,0x69,0xc9,0x67,0x77,0x2a,0x5e,0x07,0xd1,0x98,0xd0,0x26,0xf1,0x91,0x67, - 0xf3,0x72,0xf2,0x51,0xe3,0x06,0xdb,0x31,0x5a,0x44,0x2f,0x73,0xd3,0xa1,0x89,0x2d,0x35,0xdb,0xbd,0xc2, - 0x25,0xed,0x86,0x08,0x49,0x08,0x41,0xd1,0x89,0xd0,0x67,0xf2,0x9b,0x6d,0x5d,0x22,0xad,0x6f,0x1d,0xd1, - 0x48,0x3a,0xf1,0xe2,0x30,0xc4,0xc7,0x01,0xc7,0x06,0x1e,0xc9,0x35,0x20,0xbd,0xd7,0x4a,0xdd,0x94,0x26, - 0x0a,0xbd,0x16,0xf3,0xcd,0x5b,0xf7,0x54,0x1f,0x97,0x22,0x20,0x1b,0x81,0xf7,0xa5,0x32,0xbb,0x73,0xc4, - 0x93,0xa6,0xfd,0x71,0x95,0x56,0xb8,0x5a,0x23,0xe5,0x50,0x96,0xb4,0x4c,0x35,0x51,0xd6,0xc2,0xdb,0x11, - 0x7d,0x2d,0x1f,0x11,0x91,0x6d,0xd9,0x3c,0x4e,0xd4,0x2f,0x70,0x6c,0x19,0x84,0xa5,0x60,0x54,0x82,0x7f, - 0x21,0x73,0x70,0x1c,0x59,0xf2,0xc8,0xf7,0xec,0xd9,0xa2,0x2f,0x74,0xb1,0x48,0xd0,0x48,0x39,0xa4,0xb3, - 0x63,0x7c,0x97,0xd9,0x47,0x6e,0x85,0x1e,0xd0,0x82,0xc9,0xb5,0xb4,0x29,0xb5,0xe4,0x98,0xcb,0x9e,0x4a, - 0x1d,0x39,0x2c,0x7b,0x71,0x43,0x38,0xde,0x40,0xee,0x64,0x5c,0xb7,0xb9,0x82,0x13,0x1b,0x15,0x49,0xa2, - 0x7a,0x8c,0x0c,0x59,0x08,0xe8,0x8f,0x94,0x96,0xec,0x31,0xc9,0x09,0x67,0x17,0x60,0x41,0xf1,0x54,0x09, - 0xc4,0xb5,0x7e,0xa6,0x33,0xe9,0x89,0x33,0xe9,0xd7,0xcb,0xe4,0xdd,0xea,0x4a,0xf0,0x6b,0x0c,0x34,0x21, - 0x25,0x96,0xec,0x5d,0x88,0x4c,0x7a,0xf2,0xd2,0x3d,0x06,0x18,0xb9,0x77,0x21,0x2c,0x65,0xaf,0x22,0x20, - 0x60,0x5a,0x8c,0xbb,0x4e,0xd2,0x94,0x12,0x92,0x4d,0x1f,0x88,0xf6,0xec,0xdb,0xac,0x78,0xe6,0xdd,0xfd, - 0x0d,0x79,0xd0,0x20,0xf1,0xb3,0x8e,0xd3,0x93,0x30,0xd3,0xe8,0x44,0x9f,0xa0,0xdc,0x3a,0x3f,0x13,0x97, - 0x35,0x98,0x17,0x26,0x47,0xcf,0x9b,0xd2,0xfe,0x9e,0xba,0xa0,0x31,0xfa,0xb7,0x65,0x25,0x5e,0xaf,0x2d, - 0x2b,0x8e,0x82,0x52,0x18,0x7c,0x9d,0x4e,0x50,0xbb,0x87,0x06,0xd2,0xcc,0xe4,0xf8,0x3e,0x87,0x5e,0x79, - 0x3f,0x59,0x31,0xfe,0x6e,0x7d,0xe5,0x48,0x0c,0x21,0xf3,0x8c,0x94,0x4f,0x77,0x8f,0xef,0x69,0x09,0x06, - 0x7e,0x39,0xfb,0xa5,0x0b,0x7f,0x2a,0x85,0x21,0xfc,0xf3,0x53,0x99,0x88,0x0b,0xbc,0x84,0xf8,0x74,0x45, - 0xfc,0x4f,0x2b,0x98,0x4a,0x71,0x1b,0x4b,0xb3,0xd3,0x45,0x6e,0xee,0xde,0x02,0x4d,0x3c,0xb6,0x49,0xb9, - 0x71,0x98,0xb3,0xeb,0x4e,0x45,0xfb,0x1c,0x12,0x62,0x36,0x76,0xa5,0x2d,0x5e,0x6a,0xd2,0x11,0x76,0xdf, - 0x6d,0xd2,0xb1,0x6c,0x93,0x8e,0x2b,0xaf,0xc0,0xfd,0x4e,0x01,0x26,0x1d,0xcb,0xdb,0x48,0xc7,0xba,0x43, - 0x3a,0x4e,0x06,0xf3,0xc1,0xaa,0x45,0x3a,0xea,0xd0,0xb8,0x42,0x3b,0xd2,0x1e,0xba,0x11,0xc0,0xc7,0x54, - 0xce,0x8a,0xd8,0xfb,0x54,0x3b,0x40,0x14,0x6e,0x1d,0xa2,0x56,0x45,0x61,0x4b,0x36,0xcb,0x66,0x28,0x63, - 0xa2,0x70,0x67,0xfc,0x67,0x10,0x10,0x02,0x0e,0x6b,0x21,0x53,0x5b,0x17,0x38,0x03,0x19,0xbb,0xb7,0xb8, - 0xaf,0x48,0xac,0xc9,0x5b,0xf4,0x71,0x23,0x38,0xbf,0x45,0xdb,0x62,0x2f,0xe3,0xda,0x14,0x60,0xe7,0x36, - 0x27,0x4e,0x27,0x7b,0x04,0x78,0xd0,0xe1,0xc6,0x19,0x6c,0xf8,0x39,0x36,0x4e,0x89,0x83,0xcc,0x0f,0x28, - 0x4e,0x83,0x76,0x7e,0x88,0x36,0xcb,0x24,0x0d,0x82,0x36,0x82,0xb3,0xd1,0xcb,0x6d,0xa2,0xdd,0x1a,0x6d, - 0x2a,0x6b,0x2b,0x7a,0x45,0xe3,0x7b,0x6b,0xd8,0xd0,0x9d,0x07,0x1c,0x43,0xe7,0x50,0x02,0xf7,0xb1,0x95, - 0x9a,0x76,0x1d,0x2d,0x38,0x6c,0x4e,0x69,0xa2,0x03,0x6a,0x4e,0xaf,0xdd,0x46,0x6c,0xd8,0x30,0x4f,0xb0, - 0x41,0xac,0x83,0x0e,0xa0,0x8d,0x8e,0x75,0xd9,0xad,0x63,0x64,0x77,0x09,0x9e,0x5b,0x98,0xf8,0x56,0xa5, - 0xc2,0xc0,0xb6,0x67,0x1a,0xfe,0x99,0x84,0x65,0x1b,0x8e,0x5d,0x88,0x79,0x66,0x17,0x78,0x8b,0x89,0x73, - 0x4f,0xde,0x75,0x4f,0xdd,0xb9,0xa7,0x02,0x4d,0x89,0x67,0xc3,0xab,0x2a,0x5d,0xca,0xd5,0xf6,0x50,0x9c, - 0xd8,0x57,0x78,0xaa,0xe8,0x5c,0xab,0x54,0xf4,0x8a,0xd8,0x34,0x2e,0xe7,0xdd,0xd3,0x54,0x5b,0xe2,0xc4, - 0x8f,0x54,0x64,0xe6,0x58,0x62,0x77,0xfb,0x51,0xac,0xd2,0xa4,0xf4,0x26,0xbe,0xf4,0xfc,0x86,0x78,0x2b, - 0xb7,0x98,0x9f,0x54,0x6c,0xab,0x84,0xd7,0x31,0xef,0xc6,0x75,0xb4,0x5a,0xaf,0x9b,0x22,0x0a,0x53,0xd5, - 0x18,0xbb,0x9b,0xa2,0x13,0x75,0xbb,0x7d,0xc1,0xfc,0xd6,0xd5,0x38,0x36,0x90,0x63,0x65,0xbb,0x93,0x6b, - 0x38,0xa0,0xd7,0x09,0x2e,0x5c,0x42,0xe0,0x27,0x9f,0x36,0x81,0x6f,0x45,0x9b,0x56,0x29,0x17,0x59,0x1f, - 0xc6,0x9a,0x00,0x7d,0x6b,0xfa,0x26,0x02,0xa9,0x78,0x5f,0x93,0x89,0xec,0x12,0xf4,0x3f,0xae,0xb6,0xf1, - 0x6b,0x65,0x23,0xda,0xc3,0xc8,0xbb,0x6a,0x2d,0x2c,0xd9,0xba,0xf4,0xfa,0x2c,0x7b,0x6c,0xb9,0xa0,0x98, - 0x03,0xda,0x76,0x1d,0xa3,0x8c,0x21,0xa9,0x30,0x90,0x34,0xe6,0xb1,0x26,0x42,0xe3,0x2f,0x6c,0x12,0x54, - 0xb0,0x36,0x6c,0xde,0x18,0xbe,0xd6,0x0a,0x54,0xe0,0x16,0x4d,0x50,0x49,0xf8,0x65,0x76,0x49,0x8e,0x83, - 0xd3,0x4b,0x50,0xf6,0xf7,0xa1,0x29,0x28,0x20,0xed,0xe6,0xca,0x0b,0x6f,0xcf,0x12,0xf6,0x09,0xbb,0xa2, - 0x10,0xa9,0x21,0x8a,0x2c,0x33,0x47,0xe0,0x64,0x54,0x20,0x10,0x08,0x96,0xb7,0x9d,0x0c,0x93,0x5e,0x79, - 0x20,0x61,0x3e,0xc6,0xda,0x35,0x48,0x14,0x4f,0xa8,0x31,0xf1,0x3f,0xb5,0x5a,0x3f,0x96,0x3c,0x10,0x02, - 0xec,0x51,0x75,0xb5,0xb9,0x6c,0xcf,0x99,0xb5,0xa3,0x4a,0x84,0x34,0xe1,0xf3,0x57,0x1b,0x37,0x22,0x52, - 0xad,0x0c,0xc9,0x17,0xdf,0x1d,0xac,0x10,0xd7,0xcf,0x48,0xb5,0x54,0xe0,0xee,0x1a,0xf7,0x48,0x28,0xcf, - 0x1b,0xb6,0x15,0x4c,0xc2,0x6d,0xee,0x5f,0x57,0xf7,0x0f,0xee,0xff,0xeb,0xde,0xb9,0x0a,0x7e,0x95,0xc7, - 0x20,0xea,0x64,0x7e,0xed,0x32,0xbf,0xf6,0x2f,0xcd,0x9c,0x69,0x58,0x80,0x6f,0x9c,0x17,0x4b,0xfe,0x99, - 0x9b,0x65,0x77,0x79,0xaa,0xed,0x9b,0x68,0x27,0xb2,0xaa,0x82,0xb2,0x97,0xb0,0x71,0x0c,0x6f,0xd9,0x73, - 0xff,0x26,0x47,0xaf,0x9f,0xe1,0xbb,0x32,0x79,0x57,0xfe,0x49,0x3c,0x4b,0x44,0x8d,0xd5,0x3a,0xa4,0x24, - 0x1b,0xdf,0x7d,0x90,0xee,0x5c,0x40,0x81,0x1b,0xfc,0x5a,0x04,0xf7,0xbe,0xb9,0x1b,0xdf,0x7d,0x40,0xa5, - 0x08,0x6b,0xe8,0x77,0xf5,0xae,0x74,0xe5,0x9d,0x8f,0xcb,0xde,0xff,0x39,0x3c,0x18,0x05,0xd1,0x37,0x07, - 0x6c,0xc4,0xb7,0xb4,0xf7,0x3a,0xce,0xaa,0x2c,0xfb,0x23,0x0b,0x11,0x92,0xf8,0xc2,0x26,0xba,0x40,0xdb, - 0xe6,0x6a,0x6c,0x75,0x59,0x24,0x73,0x91,0xa9,0x28,0x4b,0x1e,0x06,0x2c,0x0c,0x58,0x70,0x0e,0x1d,0xd2, - 0x8a,0x7a,0xa5,0xb8,0x84,0x53,0xb7,0x2a,0xa8,0x37,0xd5,0x79,0x4f,0xcd,0x17,0x69,0xed,0x5d,0x05,0xa9, - 0xae,0x8b,0xe4,0xde,0x7e,0xf8,0xeb,0x55,0x44,0x6b,0x71,0x56,0x24,0xd3,0xde,0x08,0x21,0x76,0xdd,0xae, - 0x0b,0xd5,0xbb,0x5d,0x9b,0x31,0xcc,0x10,0xde,0x2f,0x97,0xb0,0x4b,0xae,0x89,0x47,0x42,0xa8,0x52,0x18, - 0x94,0x9e,0xde,0x5a,0xa5,0x0e,0x09,0x73,0x10,0xb5,0x3f,0x1c,0x38,0xfd,0x21,0x7d,0x7e,0x45,0xbd,0xfb, - 0xf5,0x51,0x78,0xfc,0x70,0xff,0xdf,0x27,0xe8,0xe1,0xd1,0x9f,0xf6,0xf0,0xaa,0x50,0xc1,0xfe,0x9d,0xc3, - 0x00,0xd5,0xbe,0x28,0xaf,0x4c,0xb5,0x54,0xd7,0xc7,0xa2,0xc5,0x90,0x39,0xdb,0x84,0xdd,0xc3,0x8d,0xfa, - 0xd4,0xd6,0x03,0xd9,0xd0,0x28,0xea,0x31,0xb1,0xda,0xa0,0xa4,0xf7,0x39,0x18,0x79,0xb5,0x6f,0x2e,0x18, - 0x0c,0xd4,0xc3,0x22,0x39,0x0e,0xbc,0x35,0x71,0x8c,0x5b,0x60,0xae,0x01,0x0c,0x4e,0xd4,0x3b,0x94,0x12, - 0xeb,0xc6,0xc7,0x0c,0x63,0x94,0x29,0xc0,0x46,0x55,0xe8,0x0c,0x36,0x99,0x86,0x7c,0x5d,0x4c,0xa7,0x6d, - 0xfa,0x7b,0x1d,0xd3,0xd1,0xde,0x3f,0x6b,0x32,0x9e,0x48,0xc8,0x5e,0xb4,0x29,0x4f,0x9c,0xe7,0xee,0x2d, - 0x46,0xba,0xff,0x26,0x57,0xeb,0x88,0x2f,0x37,0xc4,0x5b,0x77,0x8a,0xe4,0x46,0x88,0x88,0x97,0xb8,0x89, - 0x9e,0x40,0x8d,0x0a,0x9e,0xe7,0xc4,0x71,0xf6,0xdd,0x3a,0x5a,0xe7,0x73,0xd8,0x50,0x20,0x62,0x53,0x55, - 0x4e,0x57,0x3c,0x49,0x47,0xf9,0x12,0x09,0xe6,0x0a,0x5c,0xce,0xcc,0x2a,0xc8,0x74,0x60,0xbd,0x84,0x57, - 0x6e,0xf3,0x3b,0xb9,0x1b,0x95,0x7d,0x23,0x14,0x48,0xfa,0x56,0x42,0x7e,0x5e,0xd0,0x60,0xa6,0x7a,0xd7, - 0x11,0x1d,0x72,0xa2,0xcc,0x85,0x88,0xbd,0x1d,0x69,0xc5,0x84,0x8f,0x3f,0x16,0x5e,0x02,0x1c,0xa5,0x24, - 0xe5,0x7d,0xf1,0xb1,0x28,0xaf,0x0a,0x5d,0x29,0xd2,0x3a,0x21,0xe6,0xe3,0x73,0xd5,0x17,0x41,0x3e,0xfe, - 0x54,0x28,0xef,0x62,0x42,0x7c,0x78,0x3a,0xcf,0x67,0xd9,0xe4,0x7a,0x32,0xcf,0x70,0x17,0x73,0x1d,0xbf, - 0x2b,0x36,0xea,0x35,0x41,0xe4,0xf1,0x7f,0x7e,0xbd,0x1a,0xde,0x39,0xb9,0xa7,0x9e,0x16,0x88,0xd4,0xcf, - 0x7b,0xeb,0xf4,0x94,0xc8,0xb0,0x9b,0x8d,0x7a,0x43,0x49,0x8e,0x60,0xb5,0xd7,0xda,0x89,0xdf,0x8c,0xfa, - 0xad,0x3f,0xf7,0xa7,0x9f,0x9f,0x16,0x97,0x79,0x55,0x16,0xfa,0x8e,0xf0,0xdd,0x56,0x02,0x44,0x78,0xdc, - 0x53,0xf5,0xa4,0x48,0x7e,0x2b,0xf6,0xf6,0xfa,0x73,0xdb,0x00,0xaf,0x9e,0x17,0xc9,0x1b,0x2a,0xab,0x1d, - 0x76,0x8a,0xf4,0x32,0x3f,0x07,0x97,0x30,0x5c,0xd1,0x84,0x3d,0x3c,0xe7,0x9b,0x98,0x5a,0xe5,0x5f,0x14, - 0xc9,0x73,0x2a,0x7f,0x6f,0x51,0xe7,0xd9,0x9a,0x70,0xcf,0x94,0x8a,0x68,0x8b,0xab,0xe7,0x45,0xa4,0x9e, - 0x49,0xf6,0x73,0xcf,0x5f,0x10,0x25,0x77,0xbe,0x1e,0x1e,0x00,0xbb,0xa9,0x57,0xdb,0xf9,0xd9,0xf4,0x3c, - 0xbb,0xc7,0x99,0x2f,0xb7,0x33,0x09,0x0e,0x2a,0x3a,0xe7,0x90,0x4d,0xa7,0x99,0x79,0xa3,0x03,0xed,0x49, - 0xa1,0xde,0xea,0xae,0xe4,0xcb,0x0b,0xda,0x5b,0xeb,0x7c,0x99,0x4e,0xe9,0x4f,0x49,0x7f,0xca,0xda,0x75, - 0x09,0x2e,0xe3,0x65,0xad,0x3f,0xf9,0xa9,0x48,0x42,0xfe,0x66,0x72,0x51,0x11,0x89,0xf2,0xeb,0xbd,0x5f, - 0xa7,0x03,0xaf,0xf7,0x37,0x9b,0x21,0xdf,0xbe,0x1b,0xa9,0x47,0x50,0x46,0x83,0xaa,0x7a,0x53,0x70,0x88, - 0x4a,0x60,0xe5,0x0f,0x6c,0xd7,0xd0,0x7f,0x55,0xf1,0x07,0xc2,0x27,0x3a,0xf6,0x41,0xa0,0x6e,0x70,0xd5, - 0xb1,0x47,0x01,0xa3,0xb2,0x83,0x0d,0xf0,0x94,0xcc,0xf2,0x76,0x40,0x3d,0xf4,0x60,0xdf,0x7e,0xcf,0x50, - 0xff,0xa1,0x88,0x3c,0xa7,0x6e,0xb4,0xff,0xbe,0x50,0xdf,0x15,0xea,0x0f,0x0f,0x05,0x75,0x68,0x01,0x1a, - 0xe3,0x7b,0x18,0xc6,0xbc,0xa7,0xf6,0xb0,0xa8,0x7d,0x30,0x74,0x3e,0x2f,0xcf,0xd2,0x39,0x68,0x52,0x46, - 0x54,0x98,0x17,0x49,0x02,0xee,0x07,0x3b,0x38,0xcc,0x8a,0xcb,0xe1,0x87,0xf7,0x4f,0x4f,0x9f,0xbe,0xfa, - 0x10,0xa9,0xf7,0x04,0xcb,0xbf,0xb7,0x40,0xe4,0xf4,0x14,0x99,0x4f,0x9e,0x7e,0x38,0x7a,0xfd,0xfa,0xc5, - 0xbb,0xd3,0x6f,0x5f,0xbc,0x7e,0xf4,0xf0,0xc5,0xe9,0x77,0xaf,0x5f,0xff,0x70,0x7a,0xaa,0x7e,0xe8,0x07, - 0xdc,0x77,0xd7,0x8b,0xb3,0x92,0x1a,0x3d,0x0a,0xe5,0x29,0xea,0xef,0x9b,0xbe,0xb2,0x18,0xe5,0x3a,0xb7, - 0x17,0x47,0xa3,0xef,0x6e,0xa9,0x39,0xe3,0xe2,0xf4,0x83,0x1b,0x1a,0x5a,0xb3,0xde,0x8a,0x75,0x21,0x57, - 0xf9,0x65,0x4d,0x5f,0xe4,0x55,0x1b,0x2d,0xbf,0x7d,0xfc,0xf5,0x60,0xfa,0x5d,0x8e,0x81,0xa2,0xab,0x82, - 0x12,0x53,0xf9,0xdf,0xd0,0xb2,0xb6,0xbe,0xf1,0x0a,0x62,0xfd,0x5b,0x65,0x09,0x59,0xa4,0x95,0xbf,0x90, - 0x9f,0xed,0xa0,0xca,0x36,0xda,0x84,0xe0,0xfb,0x22,0x39,0x57,0xdf,0x82,0x21,0xf8,0xb9,0xd8,0xfa,0x3c, - 0x9f,0x26,0xdf,0x12,0xdd,0xa6,0xaf,0x4a,0x5c,0x9d,0x41,0x3d,0xbf,0x19,0xfd,0x5c,0xb4,0xfb,0xf8,0x6e, - 0x75,0xd6,0xd3,0x4d,0x2a,0xad,0x83,0xf5,0x51,0x73,0xad,0x4f,0xc4,0xd1,0xb0,0xfb,0xd5,0x2a,0xb4,0xdf, - 0xa9,0xad,0x4f,0xe4,0xa2,0x6c,0xbf,0x7f,0xde,0x3d,0xda,0xf6,0x11,0x9d,0x79,0x92,0x2d,0x45,0xd0,0xde, - 0xa9,0xa1,0x28,0x1b,0x22,0xac,0xfb,0x2f,0xcc,0x73,0x1d,0xb6,0x92,0x56,0xb6,0x77,0xca,0xba,0xf6,0x4e, - 0x7c,0x19,0xfc,0xca,0x5e,0x9f,0x67,0x1b,0x66,0xb3,0x78,0x9e,0xce,0x7f,0x17,0x08,0xa7,0xfc,0x4b,0xf7, - 0xc8,0x77,0xca,0x30,0x3d,0x3d,0x70,0x95,0xd1,0x97,0x5c,0xf2,0xed,0x4f,0xdd,0x3b,0x2e,0xf5,0xed,0x95, - 0x7c,0x87,0x94,0xbe,0xef,0x32,0x9b,0x2f,0xcc,0x65,0x97,0x45,0x6d,0xae,0xee,0x90,0xaf,0xf4,0x65,0x53, - 0xa5,0xbc,0xba,0xdb,0xa7,0xfc,0x42,0xee,0x16,0xaa,0x76,0xaa,0xb9,0x17,0xd2,0x4f,0xe5,0x1b,0x4c,0x61, - 0xce,0x0b,0x2a,0x4f,0x37,0xd1,0x36,0x6b,0x35,0x17,0x5b,0x6e,0x19,0x10,0xb7,0xea,0xd1,0x57,0x74,0xfa, - 0x49,0x55,0x0a,0xf7,0x08,0x7d,0x37,0xa7,0xbd,0x36,0xd5,0x26,0x38,0xbf,0x2d,0x56,0xa7,0x48,0xa2,0x09, - 0x5b,0xee,0x8a,0x3d,0x9e,0x53,0xa3,0x53,0x2f,0x81,0x6f,0x5a,0x35,0xaf,0xad,0x18,0xe0,0xb5,0x97,0xc6, - 0x17,0xce,0xf9,0xbd,0xd9,0x0e,0x22,0x0e,0x93,0x21,0xf5,0x23,0x21,0x66,0x5e,0x8a,0x18,0xd1,0xf1,0x66, - 0xf9,0xf9,0x8a,0x6f,0x29,0x8f,0x81,0x74,0x47,0x3f,0x16,0xb2,0x4c,0x7c,0x43,0xfd,0x36,0xe6,0xec,0x9f, - 0x96,0x4d,0xef,0x8d,0xf4,0x44,0xf9,0x84,0xbf,0x78,0x50,0x4a,0x0d,0xcb,0xae,0xcc,0x3a,0x37,0x93,0x18, - 0x6c,0xcc,0xf7,0x58,0x70,0x7c,0x13,0x61,0xb3,0xe4,0xd6,0x18,0x67,0x1a,0xc7,0xab,0x8e,0x98,0x37,0xde, - 0xa4,0xd1,0x50,0x37,0xaa,0xa9,0x92,0xce,0x9d,0x3a,0xaa,0xa8,0x3a,0xa8,0xa1,0xa9,0xa2,0xd1,0x71,0x80, - 0x3d,0x1b,0x20,0xe4,0xf5,0xd2,0xb3,0xc3,0xd0,0xe1,0xd3,0x90,0xc2,0xe1,0xc0,0xf0,0x50,0xc2,0x71,0x2c, - 0xa8,0x60,0xba,0x5f,0x67,0x30,0xcf,0xe8,0x31,0xcb,0x93,0x5e,0x36,0x15,0xcc,0x03,0xae,0xc2,0xa2,0x52, - 0x59,0x7f,0x00,0xed,0x63,0xdc,0x1f,0x66,0x43,0x05,0x59,0x99,0xc4,0xfe,0xfe,0x28,0xe2,0xfb,0x6d,0x6d, - 0x96,0xb5,0xf8,0x46,0x24,0x79,0xed,0x44,0x8a,0x19,0x87,0x8f,0x86,0xbe,0x9b,0x5b,0x42,0x4b,0x8c,0x74, - 0x60,0xcb,0x4c,0x02,0x5b,0xca,0xb0,0x62,0x7e,0x34,0x83,0x89,0x11,0xcf,0xdd,0xc5,0x99,0x34,0x43,0x43, - 0xb2,0x46,0x04,0xf7,0x9d,0xf8,0x08,0xf2,0x98,0xf2,0x8c,0xcf,0x38,0x73,0x39,0xb6,0x4a,0x81,0x97,0x34, - 0x66,0x81,0x9d,0x14,0x38,0x0f,0xf1,0x5d,0xb1,0x53,0x4b,0x30,0xe2,0x71,0x3d,0x4c,0x0b,0xd2,0x34,0x10, - 0x49,0x59,0x25,0x37,0xf5,0x45,0xb9,0x9a,0x4f,0x69,0xaf,0xd2,0x0c,0x36,0x80,0x2d,0xd5,0xb1,0xcc,0xe5, - 0xe1,0x48,0xf0,0x12,0x83,0x2b,0xb2,0x25,0xaf,0xf9,0xcf,0x1a,0x3f,0x5c,0x2e,0xd8,0x8d,0x97,0xb0,0xd5, - 0x95,0xbe,0x3c,0x99,0x86,0x1e,0xe8,0x0b,0x98,0xb7,0xe2,0x8e,0x84,0xe1,0xd3,0xb6,0x44,0x48,0x42,0x1a, - 0x5a,0x4a,0x32,0x69,0x36,0x71,0x37,0xdb,0xbb,0x49,0xb9,0x57,0x0d,0xa4,0xdd,0x69,0xb1,0x2e,0x57,0xa2, - 0xe2,0x41,0xcc,0x67,0xa2,0x4d,0x20,0x12,0xad,0x54,0x55,0xe9,0x8b,0x6e,0x5b,0x73,0x97,0x21,0x8a,0x26, - 0x52,0xaf,0xd2,0xf9,0xc7,0x90,0x23,0xb1,0x57,0x1e,0xae,0x46,0xea,0x2d,0x26,0xca,0x9d,0x8b,0xe5,0x45, - 0xc6,0xd0,0xf8,0x32,0x86,0x77,0xe8,0x39,0xa2,0xa8,0x13,0xb2,0xa6,0x9f,0x13,0xb8,0x9c,0xfb,0x95,0xfb, - 0x1d,0xb9,0xed,0xb2,0xaa,0x3e,0xdc,0xff,0x50,0x6e,0xa8,0x92,0x1b,0x81,0xe9,0xa8,0xbd,0x63,0xe4,0xa1, - 0x1d,0x56,0x66,0x94,0x4a,0xd8,0x93,0x5b,0x98,0xbe,0x9d,0x62,0xfc,0x46,0xa7,0xc4,0x8d,0xef,0x55,0x6a, - 0x29,0x90,0x66,0x9c,0xc5,0x6f,0x44,0x8a,0x43,0x5c,0x5c,0xef,0xb6,0x4a,0xb1,0xa1,0x92,0xdf,0x88,0x00, - 0x7c,0x78,0x7b,0x81,0x41,0x50,0x07,0x27,0xc9,0x13,0x2a,0x44,0x3d,0x62,0x2a,0x74,0xeb,0x50,0x12,0x25, - 0x31,0xe1,0x95,0x9f,0xd8,0xfc,0xd9,0xde,0x35,0xd7,0x98,0xa4,0xc6,0x26,0x59,0xbb,0xb5,0x9d,0x36,0xd2, - 0xc8,0xd6,0xeb,0x9e,0x68,0xf3,0x8d,0x36,0x4f,0x24,0xf2,0xf6,0x12,0xb6,0x72,0x51,0xdb,0x1b,0xa3,0x31, - 0x92,0x4f,0xf8,0x62,0xa8,0x3a,0x01,0xcc,0x8c,0x52,0x62,0x40,0xba,0x17,0xe2,0xb1,0xf2,0xf0,0x38,0x3d, - 0x89,0xf8,0xb2,0xa1,0x24,0x1d,0xa7,0xc6,0xa5,0xbc,0x8e,0x3a,0x97,0xc4,0xd5,0xd1,0x98,0x38,0xb9,0xfa, - 0xc4,0xee,0xd8,0x0d,0xc6,0x2d,0xd1,0x43,0xe9,0x61,0x91,0x35,0x17,0xe5,0x94,0x1f,0xe5,0x0a,0x68,0x3c, - 0x4d,0x74,0x2c,0x81,0xfe,0x89,0xd9,0x1e,0x4e,0x5f,0x94,0x7d,0x43,0x30,0xf3,0x30,0x55,0x03,0xd3,0xc7, - 0x9c,0x03,0x35,0x98,0xf6,0x2f,0x89,0xa5,0x49,0xde,0x88,0x44,0xb6,0x52,0x93,0x4a,0xcd,0xab,0x8e,0x86, - 0xb6,0x4b,0x73,0x03,0x02,0x08,0x67,0xaf,0x70,0x0b,0x94,0x9a,0x71,0x08,0x36,0x0e,0xc4,0xc6,0xb6,0x30, - 0x3d,0x34,0x2b,0x51,0x79,0x36,0x1a,0x37,0x88,0x57,0xff,0x3d,0x8a,0x26,0x2d,0xb2,0xd0,0xcf,0x0b,0x3f, - 0x20,0x1c,0xb7,0x31,0xd0,0x73,0x15,0x5b,0xa7,0xbd,0x97,0x44,0xbe,0xa7,0xe7,0xd9,0xe3,0x8b,0xb4,0x28, - 0xb2,0xf9,0x7a,0xbd,0x7b,0x14,0xb6,0x93,0x40,0x77,0x9b,0xcb,0x8c,0xda,0x39,0x84,0xd6,0xea,0xa6,0x5a, - 0xe1,0x0c,0xe6,0xfb,0x8d,0xda,0xb9,0x56,0xce,0x14,0xf6,0xf4,0xcf,0xb8,0xd7,0x7d,0x80,0x2b,0x9d,0x33, - 0x2a,0x59,0x56,0x8c,0xfa,0xda,0x15,0xa9,0x8b,0x2a,0x59,0xd2,0x34,0xd3,0x61,0x74,0x7f,0xa4,0x1f,0x0e, - 0x87,0xe0,0x50,0xb9,0x54,0xf2,0x41,0xb5,0xab,0xbf,0x40,0x91,0xba,0xd1,0x95,0x40,0xd8,0xb3,0xb9,0x65, - 0x52,0x09,0x67,0x2f,0xf2,0x9a,0xe7,0x53,0x3f,0x6a,0xcb,0xdd,0xcb,0x2a,0xd1,0x09,0xe6,0x86,0x5c,0x22, - 0xa5,0xeb,0x56,0x2b,0x97,0x95,0x5c,0x37,0x4c,0xfc,0xce,0xdb,0xa2,0xe5,0x32,0x78,0x6e,0xa2,0x0d,0xd3, - 0x07,0x93,0x8a,0x81,0x62,0x51,0xa9,0x73,0x19,0x1a,0x31,0x63,0xd7,0x55,0x47,0xd0,0xa4,0xc5,0xa9,0x7b, - 0x81,0x8d,0xe3,0xcc,0xc2,0x2b,0xc2,0x50,0xc1,0xff,0x63,0xeb,0xf3,0x0c,0xe0,0x62,0x65,0x57,0x71,0x16, - 0x79,0x85,0x2a,0xc4,0x8d,0x95,0x42,0xc5,0x6d,0x85,0x8c,0x0d,0x1d,0xeb,0xe0,0xb3,0xa4,0x6a,0x95,0x53, - 0xb0,0x88,0x80,0x60,0x73,0x2b,0x1e,0x5f,0x03,0xf6,0xf3,0xac,0x92,0x6b,0x9b,0x4e,0x19,0x52,0xaf,0xf8, - 0xef,0x11,0x87,0x6a,0xfa,0xc8,0x50,0xfb,0x89,0xff,0x3e,0xc6,0xd9,0xf1,0x10,0x7f,0xde,0x55,0x3d,0x74, - 0xb1,0x39,0xe7,0x16,0x08,0x9e,0xce,0x5e,0x18,0xa7,0x8c,0xad,0x88,0x06,0x92,0x73,0xcc,0x25,0x18,0x5b, - 0x60,0x4e,0xae,0xc6,0xa1,0x3e,0x13,0xe9,0x50,0xdc,0xdd,0xad,0xf8,0x41,0x0e,0x1b,0xc8,0x1a,0x38,0x09, - 0x0f,0xfa,0x7e,0xf8,0xf4,0x8f,0x6b,0x4e,0xc2,0x83,0x66,0x68,0x88,0xf2,0xe3,0x24,0x3c,0xe8,0x03,0x89, - 0x2b,0x73,0x75,0xb8,0x4f,0xbd,0x2f,0x34,0x95,0x39,0x39,0x33,0x54,0x3a,0xb1,0x49,0x83,0xc1,0x43,0xdd, - 0x90,0x44,0x52,0xb3,0xd4,0xeb,0x34,0xa7,0x73,0xdf,0xd5,0x63,0x8f,0x71,0xb0,0x52,0x9a,0x98,0xcf,0xae, - 0x9e,0xf8,0xef,0x94,0xf9,0x9c,0x10,0x95,0x06,0x08,0xaf,0x48,0x37,0xd5,0x69,0x10,0x20,0x6e,0xef,0x89, - 0x4f,0xd0,0xc8,0x9d,0xf1,0x44,0x83,0x34,0x18,0x4b,0x1c,0xfa,0xaf,0x1d,0x9f,0x9d,0xdd,0xd7,0x85,0x88, - 0x2d,0x0c,0x98,0xc3,0x1d,0x4c,0x87,0x39,0x19,0x06,0xee,0xd6,0xc7,0x9e,0x03,0xb3,0xe7,0x10,0x6e,0xa1, - 0xcf,0x51,0x96,0xe8,0xb3,0xd8,0x5d,0x23,0xb7,0x61,0x2f,0x29,0xaf,0x3f,0xb8,0x28,0xaf,0xaf,0x77,0x11, - 0xdc,0xe2,0x95,0x47,0x09,0xd9,0xa9,0x34,0xb6,0x65,0xe6,0x33,0x04,0x9f,0x79,0xe7,0x9f,0xf4,0x1d,0xfa, - 0x9c,0xe9,0xea,0x91,0x54,0xa0,0x3c,0xf6,0xf1,0xdf,0x3a,0x9e,0x8f,0x4d,0x8a,0x3c,0xc6,0x4e,0x6e,0x78, - 0xc6,0xad,0x80,0x1a,0x48,0x39,0x70,0x5e,0x93,0x78,0x7d,0xd5,0xf7,0xb6,0x29,0x2b,0x5e,0x31,0x86,0xde, - 0x06,0x8a,0xa2,0xe6,0xa2,0x2a,0xaf,0xe8,0x10,0x79,0xcb,0xca,0xfa,0xbb,0xf2,0xd9,0x0e,0x4d,0xdf,0x8e, - 0x86,0xeb,0x1d,0x04,0xa1,0x6d,0x2f,0x29,0x4c,0x51,0xa2,0x0d,0xe1,0x24,0xaa,0xfc,0xfa,0xc6,0xc2,0xe6, - 0xde,0xde,0x77,0x61,0xab,0x83,0xe8,0x7d,0xb9,0x0c,0xf5,0x14,0x41,0x0a,0x50,0xac,0x96,0x80,0x27,0x17, - 0x0f,0x8f,0x8e,0x92,0xd6,0xbc,0x08,0x97,0xdc,0xe3,0x7c,0x93,0x11,0x24,0x8f,0xda,0x00,0x07,0xb9,0x45, - 0x08,0x7b,0xb8,0xb0,0x93,0x2e,0x71,0xbf,0x5a,0x10,0x6c,0xd8,0x7d,0x1f,0x8c,0xed,0xf7,0x46,0x52,0x20, - 0x9b,0x37,0xea,0x74,0xc9,0xeb,0xf7,0x67,0x58,0x74,0x6c,0x1b,0x7b,0xaf,0x3d,0x78,0x03,0xc3,0x5f,0x98, - 0x4c,0xb0,0x19,0x7d,0xfd,0xa7,0x71,0xe1,0xb6,0x03,0x27,0x79,0xd0,0x22,0x02,0xed,0x76,0xe1,0xba,0x3b, - 0xf2,0x77,0x60,0xbb,0xa6,0xad,0x9d,0xd8,0x49,0x10,0x09,0x4c,0x18,0x29,0x57,0x61,0xed,0xed,0x76,0x7f, - 0xa2,0xda,0xfb,0xbe,0x68,0x4f,0xa2,0x89,0x31,0xd9,0x99,0x21,0x91,0x3a,0x6c,0x49,0x68,0x78,0x23,0x78, - 0x88,0x66,0x57,0xef,0x07,0x60,0x2a,0x49,0xaf,0x56,0x54,0x38,0xbe,0x65,0xb1,0x75,0xe0,0xe8,0x24,0x39, - 0xc2,0x1d,0xce,0x0c,0xb7,0xfc,0x04,0xf4,0xf5,0xa9,0x65,0xf7,0x77,0x5a,0x59,0x53,0xc4,0x51,0xf1,0xcd, - 0xe3,0x6a,0x6f,0xef,0xb4,0xe2,0x9b,0xcb,0xa6,0xdf,0x70,0x4d,0x51,0x41,0x0b,0x42,0x85,0x74,0xb8,0xe8, - 0x62,0x70,0xa8,0x0e,0x20,0xc7,0xe1,0xc3,0xee,0xd4,0x5c,0x2a,0x19,0x8d,0x3e,0x62,0xa7,0xe3,0x74,0x38, - 0x50,0xef,0xc3,0x49,0xc6,0x0e,0x72,0x5a,0x5e,0xd3,0x1a,0x2f,0x75,0xdb,0x1f,0x2c,0x0c,0xd1,0x1d,0x76, - 0x35,0x51,0x4a,0xdc,0xd6,0x67,0x23,0xa3,0x5d,0x2d,0x4b,0x63,0x44,0xb1,0x5e,0xe7,0x7c,0x75,0x9c,0xdd, - 0x3a,0x2d,0x68,0x11,0x97,0x4d,0x53,0x6b,0x8b,0xc7,0x92,0x2d,0x5b,0xe9,0x4d,0x37,0x39,0x93,0xfd,0xad, - 0xb7,0xbf,0x62,0xba,0xdc,0x8a,0x51,0xdf,0x86,0x99,0x61,0xc4,0xd4,0x5d,0x63,0xa5,0xf1,0x97,0x76,0xb6, - 0xdc,0x55,0x7e,0x6b,0x0b,0x9b,0xce,0x74,0x64,0xe8,0x62,0x1f,0x00,0x78,0x48,0x91,0x27,0xc2,0x3f,0x75, - 0x20,0xca,0x68,0xd5,0xb2,0x2d,0x46,0xfb,0xb3,0x1d,0xe6,0x6f,0x2d,0xfd,0x79,0xd8,0x5d,0xaa,0x86,0xe0, - 0x7e,0x5a,0x5e,0x7d,0x76,0xbd,0xf4,0xe0,0x10,0xa8,0xe7,0x51,0x46,0x74,0xdf,0x13,0xa3,0x3f,0x5a,0xaf, - 0x57,0xa1,0xcd,0x34,0xc7,0xbc,0x30,0xb0,0xa3,0xbf,0xd5,0xb9,0xce,0xde,0x1e,0xb5,0x0e,0xe3,0xc3,0x8d, - 0xf0,0x6d,0x77,0x88,0x38,0xc9,0x8a,0xd5,0x22,0x33,0xf2,0x1c,0xd5,0x91,0xef,0x40,0x69,0x13,0x9f,0xab, - 0x1a,0x7f,0x37,0xea,0x35,0x15,0xc7,0x0e,0x03,0x73,0x3e,0xfa,0x94,0x85,0x8f,0x3d,0x89,0xab,0x70,0xfa, - 0x4f,0x2b,0xf5,0xa6,0x52,0xbf,0x55,0xea,0x49,0xa5,0x9e,0x53,0x69,0xb8,0xf0,0xfb,0x3c,0xb4,0xa6,0x70, - 0xf8,0x38,0xec,0xf7,0xd0,0xef,0x71,0xc1,0xcf,0x6b,0x3b,0x3d,0x51,0x9f,0x93,0x7e,0x12,0x4a,0x14,0xe6, - 0x9b,0x53,0x16,0xf3,0x48,0x26,0x3a,0xaf,0xbd,0x8e,0xcf,0x2a,0xa5,0xbd,0xe1,0x3f,0xc0,0x99,0x3f,0x4e, - 0xcd,0xeb,0xd3,0xf9,0x22,0xae,0x84,0x61,0x23,0x9a,0x2d,0x9b,0xe1,0x3d,0x97,0xf7,0x0d,0xae,0xa1,0x10, - 0xef,0xed,0xb6,0x59,0x8f,0x32,0xb7,0xbd,0x68,0x43,0x9e,0x64,0xa2,0x1f,0x54,0xdd,0xb5,0xdd,0xa1,0xac, - 0x4e,0x0a,0x61,0x43,0x22,0x58,0xb6,0x2f,0x18,0xe5,0x38,0x01,0xb8,0xb8,0x39,0x1a,0xde,0x61,0xed,0x63, - 0x08,0xfa,0x34,0xa3,0xee,0x68,0xe9,0x9c,0x77,0xc5,0x91,0xf6,0x29,0x87,0xb7,0xfd,0xc3,0xb9,0xdd,0xfc, - 0x08,0xca,0xf9,0x1c,0x50,0x98,0x71,0x74,0x84,0xb0,0xc4,0x35,0xf1,0x36,0x9e,0xe9,0x46,0x99,0x8c,0xb8, - 0xcd,0x6a,0x19,0x47,0xbb,0xad,0x20,0x06,0xbb,0x7d,0x84,0xa9,0x34,0xb4,0xbb,0x1b,0xe6,0x58,0x29,0x13, - 0x95,0x60,0x78,0x2a,0x13,0xf0,0x58,0x0b,0x6b,0xd7,0x6b,0x13,0xfa,0xd4,0x59,0xf3,0x71,0x79,0xef,0x9d, - 0xaf,0x2d,0xd0,0xa6,0x90,0xae,0x1e,0x6f,0x91,0x92,0x8a,0xe8,0x5c,0x09,0x7d,0xc5,0x8f,0xa7,0xfa,0xde, - 0xea,0xd0,0x3c,0x1a,0x61,0x2a,0xdf,0x91,0x74,0x5b,0x57,0x92,0x1c,0x99,0x72,0xcb,0x85,0xb9,0x1c,0xa8, - 0x7d,0x43,0xd8,0x12,0x97,0x56,0xdc,0xb1,0x57,0xd9,0x23,0x24,0x3f,0x25,0x35,0x30,0x6d,0xb1,0x95,0x8a, - 0x95,0xe5,0x4d,0x5e,0x0d,0x5b,0x22,0x2a,0x63,0x11,0x2c,0xac,0x3b,0x02,0xce,0xa0,0x9c,0xaa,0x93,0xd6, - 0x90,0x28,0x0d,0x0a,0x16,0x84,0x9e,0x56,0xe2,0x97,0x5c,0xfb,0x6e,0xc9,0x26,0x7e,0xcf,0xf1,0x84,0x38, - 0x7e,0x5c,0x5a,0xfe,0x2c,0x9c,0xab,0x6e,0xdb,0x72,0x49,0xde,0x76,0xfb,0x07,0x5b,0x25,0x9f,0xb0,0xf0, - 0x7c,0xe3,0x0c,0x9a,0x57,0xc9,0xf6,0x04,0xbb,0x98,0x10,0x9f,0xc9,0xc3,0x39,0x2c,0x57,0x3f,0xae,0xa2, - 0x4d,0xc9,0x13,0x7f,0xa7,0xe6,0xeb,0xeb,0x0b,0x58,0x28,0x7a,0x61,0xb2,0x29,0x83,0xa6,0x61,0xa2,0xd5, - 0xe4,0x88,0x93,0xe4,0x5f,0x5a,0x6c,0x37,0x69,0xcf,0xc6,0x55,0x5e,0x08,0x0b,0x7a,0xb6,0xab,0x00,0x88, - 0x73,0xd1,0x31,0x36,0x4a,0xc2,0x72,0x6d,0x1f,0xda,0x72,0x0f,0x91,0xbe,0xbc,0xae,0xea,0x6b,0x61,0x54, - 0xb5,0x62,0xa1,0x85,0xfe,0x2b,0x9b,0x5b,0x73,0x44,0x50,0xa3,0xf0,0x67,0x03,0xb7,0xf6,0xee,0x62,0x57, - 0x73,0xf7,0xcd,0x38,0x84,0xfb,0x6a,0x84,0xfb,0x95,0x2d,0x2e,0x25,0x46,0xcf,0xf8,0x64,0x46,0x71,0x8a, - 0x0a,0x77,0x0f,0x40,0xd1,0x69,0x9b,0x80,0x5e,0x5a,0x63,0xbb,0xa3,0x4d,0x0b,0xcf,0xb1,0x23,0x68,0xbb, - 0x27,0x56,0x52,0x29,0x46,0xae,0x82,0x44,0x43,0x96,0x4a,0x0d,0x4f,0xc5,0xe6,0xe1,0x79,0xe1,0xb8,0xad, - 0x12,0xb1,0x57,0x99,0xca,0xb3,0x7d,0x8d,0x10,0xa8,0xd2,0xeb,0xf9,0xc1,0xc8,0x93,0x66,0x8e,0x2a,0x62, - 0x59,0xee,0x74,0xaf,0x35,0x87,0x4c,0x13,0x17,0x66,0xda,0x8c,0xe3,0xea,0x84,0xb8,0x7b,0xf4,0xa0,0x65, - 0xdb,0xc0,0x64,0x0b,0xc6,0x1d,0x37,0xde,0x4d,0xc6,0x94,0xaa,0x5e,0x54,0x2d,0x21,0xe5,0x73,0xda,0xaf, - 0xcf,0xaa,0xe4,0x50,0xbd,0xaa,0x92,0xfb,0xea,0x25,0x1a,0x7e,0xea,0xeb,0xed,0xf8,0xe2,0xea,0x6d,0x5a, - 0x5c,0x30,0x90,0x1c,0x62,0xa7,0x2b,0x62,0x30,0x5f,0x56,0x46,0x0f,0x47,0xd3,0xf6,0x61,0xc5,0x43,0x96, - 0xa8,0x6c,0xde,0x19,0x30,0xee,0x43,0x76,0x0e,0xe6,0x3b,0xf2,0x2b,0x06,0x25,0x23,0xa4,0xb1,0xc6,0x9d, - 0x1c,0xea,0xc3,0xc7,0x4c,0xa3,0xc2,0xa0,0x1e,0x13,0xfc,0x41,0x15,0x5d,0xd4,0x65,0x13,0xe8,0x44,0x71, - 0x9f,0xd3,0x0b,0x72,0xe4,0xa0,0x41,0xb2,0x3c,0x69,0x61,0x5a,0xcf,0x0d,0x8a,0xde,0xf6,0x48,0xf2,0xd6, - 0x56,0xd9,0xda,0xad,0xb9,0xb7,0x7b,0x8a,0x6d,0x34,0x68,0x77,0x13,0x32,0x6d,0x3b,0x47,0xe9,0xb9,0x5c, - 0x87,0xab,0x1a,0x7d,0x88,0x31,0xb8,0xeb,0x83,0xcd,0xa4,0xa9,0x2d,0x37,0xc0,0x64,0xcb,0x2f,0x27,0x12, - 0xaa,0x95,0xd0,0x94,0xd0,0xdb,0x77,0xdc,0xdd,0xe6,0xaf,0xb3,0xd0,0x68,0xe5,0xcc,0xe4,0xd2,0x36,0xe3, - 0x70,0xd9,0x22,0xb8,0x90,0x55,0x94,0xb6,0xde,0x54,0xe5,0x27,0x11,0x0f,0xe8,0xe4,0x3a,0x9b,0xcf,0xe4, - 0xbd,0x6f,0x1b,0xd9,0x5b,0x33,0x0b,0xbb,0x18,0x4c,0xc3,0x23,0xdc,0xa4,0x0d,0xb7,0xa3,0x43,0x72,0x16, - 0x0e,0xd7,0x99,0x9c,0xbd,0x3d,0x4a,0x34,0x31,0x15,0x11,0x11,0xd8,0xbc,0x14,0xde,0x4e,0x30,0x4a,0xdb, - 0xcc,0xe4,0xf2,0x3d,0x47,0x77,0xaa,0xb2,0xa4,0xa7,0x71,0x21,0x4f,0x71,0x86,0x34,0xab,0xae,0x3c,0x3e, - 0xe1,0x22,0xd9,0x0c,0xb7,0xf6,0x78,0x02,0x1b,0x11,0x0f,0x65,0xde,0x26,0x34,0x09,0xdd,0x0d,0x7c,0xc8, - 0xa5,0x1c,0xaa,0xd2,0xef,0x16,0x41,0xd8,0x94,0x36,0xf9,0x08,0xd2,0x4e,0xcb,0x83,0xfc,0xf9,0xa2,0x92, - 0xfa,0x12,0xa1,0x3e,0x7b,0x1e,0xca,0x25,0xb6,0x10,0xb6,0x35,0x6c,0x35,0x91,0xe8,0x88,0x63,0xcd,0x67, - 0x8f,0x0e,0xe8,0x43,0xe5,0xf2,0xab,0x5b,0x1a,0x94,0xb3,0xdb,0x8c,0x4f,0xe0,0xe5,0xa8,0xca,0xb2,0xda, - 0x69,0x87,0x3b,0x4b,0x68,0x0f,0xfc,0xf6,0x86,0xa3,0x1d,0x58,0x60,0xa5,0x4c,0x94,0x4b,0xff,0x20,0x6a, - 0xba,0xa0,0x2e,0x77,0x26,0xfa,0xa4,0x46,0xc2,0x47,0xfc,0xe9,0xa4,0x65,0xec,0xad,0xfc,0x9b,0xa2,0xef, - 0x78,0x77,0xa9,0x22,0xde,0xc3,0x86,0xd7,0xd2,0xb7,0x44,0xfc,0xab,0xdf,0x1e,0x68,0x7d,0x48,0x2e,0x3d, - 0xe6,0xb0,0xf4,0x50,0xc0,0x04,0x42,0x83,0x04,0x10,0xe8,0xe5,0x1e,0xe9,0x21,0x41,0xad,0xa4,0x84,0xdd, - 0xbf,0x81,0x6a,0xb6,0xa6,0xdb,0x95,0x36,0xb3,0x5d,0xcb,0xb6,0x52,0x6d,0xa3,0xb6,0x48,0x85,0x79,0xb2, - 0xcc,0xc2,0x50,0x0b,0x0b,0xdd,0x02,0x8a,0x94,0x5f,0x49,0x5c,0x8e,0x1e,0x52,0x46,0xb5,0xae,0xad,0xed, - 0x09,0xff,0x4d,0xab,0xfa,0x2e,0x84,0xc6,0x32,0x27,0xf6,0x02,0x86,0x7c,0x3d,0xf4,0xc8,0x16,0x10,0x18, - 0x0e,0x06,0x6e,0xf3,0xdd,0x15,0x1f,0x35,0xc6,0xb9,0xe5,0xf3,0x68,0xda,0x21,0x3e,0x46,0x1a,0x95,0x25, - 0xb5,0x74,0x0c,0xfc,0x1e,0x6a,0x0b,0x1b,0xb0,0x44,0x60,0x20,0xb3,0xa1,0xb7,0xfa,0x5a,0x6a,0x4f,0x35, - 0xdb,0x74,0x89,0xcb,0x9d,0x78,0xaf,0x97,0x26,0xa4,0xed,0x33,0x98,0x4b,0xd3,0xd2,0x12,0x6f,0x83,0x91, - 0xc3,0x29,0x43,0xb1,0xbe,0x86,0xb0,0xd7,0x9c,0xc3,0xda,0x48,0x3f,0x02,0xd0,0xda,0x9d,0xa8,0x00,0x51, - 0x0a,0xe7,0xf9,0x9e,0x29,0x62,0x3f,0x27,0x4d,0x52,0xc2,0x18,0x5b,0xf4,0x30,0xdd,0x39,0xe8,0x8e,0xbe, - 0x7d,0x79,0x7d,0xc3,0x97,0xd7,0x27,0x22,0xaa,0x80,0x24,0x71,0x7c,0x1e,0x2f,0x43,0xd1,0xf2,0xc9,0xf5, - 0xc8,0xa6,0x5e,0x34,0x01,0x28,0x1c,0x7f,0x0e,0x7b,0x0a,0x9c,0x96,0x21,0xd2,0x4e,0x59,0x57,0xd7,0x2b, - 0x3c,0x6d,0xf7,0xd0,0x33,0x0a,0xce,0x34,0xc3,0xde,0x12,0x05,0xe8,0x3c,0x96,0x08,0x28,0x36,0xdd,0x0c, - 0x71,0x57,0xd5,0x0d,0x8b,0x3a,0xf9,0x9c,0xe0,0x0b,0x91,0x21,0x49,0xe3,0x9b,0xcd,0xfc,0xbb,0x0d,0x7c, - 0x50,0xe4,0x18,0xdf,0x5b,0x04,0x71,0x9a,0xf8,0x8c,0x83,0x1e,0xac,0x32,0x32,0x99,0x68,0x94,0x5a,0x71, - 0x18,0x22,0x59,0xa7,0x27,0x23,0xda,0x78,0x33,0x22,0x5b,0x11,0x5e,0xf3,0x8b,0x7f,0x8a,0xed,0x79,0x58, - 0x0f,0x82,0x20,0xf2,0xaf,0x34,0x3a,0x00,0xc1,0xf4,0xf5,0x57,0x09,0x5f,0x22,0xa9,0x57,0x18,0x3d,0xc7, - 0x15,0x9d,0x9b,0x87,0x42,0xe0,0x20,0xb4,0x49,0xfc,0x30,0x34,0x33,0x45,0x20,0x08,0xb0,0x6f,0xac,0xee, - 0xec,0x36,0x68,0x3e,0x35,0x05,0x7e,0x32,0x5b,0xa2,0x0f,0x15,0x57,0xc9,0x1f,0x88,0x50,0xde,0x0a,0xb7, - 0xd1,0x18,0xc6,0xab,0xc1,0x95,0x2d,0xbd,0x8b,0x53,0x8e,0xcb,0xb8,0x84,0xc0,0x63,0x04,0x71,0x52,0x81, - 0x1b,0x3d,0xc0,0x68,0xbe,0x83,0x27,0x27,0xed,0x9a,0x73,0x75,0x4e,0xbc,0x3b,0xdc,0x32,0x34,0xf4,0xae, - 0x30,0x36,0x04,0xfa,0x16,0xb7,0x3b,0xdb,0xf9,0x88,0x3d,0xbe,0xa8,0x7f,0x30,0x76,0xe1,0x87,0x5d,0xd1, - 0x7c,0xde,0xe2,0x37,0xe1,0x75,0xaf,0x62,0x40,0xdc,0x8e,0xdb,0x51,0xf9,0x77,0xae,0xe1,0xbe,0x47,0xb3, - 0x48,0x7c,0xdf,0xe3,0x54,0xdf,0x2e,0x8f,0xe0,0x21,0xc2,0xe1,0x9a,0x14,0xd3,0x35,0xb1,0x17,0x34,0x58, - 0x0f,0xcb,0xd6,0x74,0x51,0x9b,0x56,0x2a,0x46,0x42,0x0a,0xeb,0xb7,0x69,0xdf,0x3c,0xe1,0xbc,0x16,0x58, - 0x8d,0xe2,0xc2,0xc3,0xa1,0xc6,0x12,0x58,0x13,0x23,0xb6,0x66,0xf8,0x28,0x49,0x8a,0x70,0xe5,0xdd,0x5c, - 0x3a,0x2a,0xb6,0x37,0x16,0x2e,0xed,0xf9,0x9c,0x31,0x0c,0x03,0xce,0x66,0x64,0x03,0x39,0x15,0x9f,0x2d, - 0xcc,0xf0,0xde,0x6f,0x2e,0x73,0x1d,0x7a,0x94,0x33,0x9d,0x20,0x02,0xaa,0xb4,0x61,0xfe,0x4a,0x61,0x8d, - 0xb9,0x8a,0xa8,0x65,0x36,0x87,0xab,0xc1,0x92,0x3b,0xed,0x24,0xb9,0x2f,0x29,0x79,0xdd,0x4e,0xed,0xd3, - 0xa0,0xcb,0xd5,0x42,0x2e,0x54,0x0b,0x16,0x53,0xc8,0x42,0xb9,0xa5,0x19,0xb7,0x2e,0xc8,0x35,0xe8,0xa2, - 0x91,0x3a,0x30,0x91,0x4d,0x05,0x56,0xfd,0xa2,0xd6,0x7f,0x2f,0x77,0x9a,0xdc,0xc6,0x09,0x06,0x95,0x71, - 0x8c,0xf0,0xed,0x67,0x2a,0x2b,0x7a,0xe3,0x48,0xc5,0xe1,0x53,0xca,0x7e,0x52,0x25,0xf7,0xfe,0x83,0xbb, - 0xcb,0xe3,0x7b,0x2a,0xfc,0xad,0x4a,0x28,0xcd,0x1f,0x45,0x59,0x74,0x74,0xcf,0x5b,0xf0,0x9b,0x39,0xf8, - 0xbd,0x2d,0x00,0x9e,0x00,0x45,0xc1,0x41,0xd9,0x95,0xbe,0xfc,0x43,0x40,0x45,0x53,0x5d,0x74,0x60,0x1a, - 0x8d,0x81,0x4b,0xf1,0x82,0x39,0x35,0xe8,0xa7,0x51,0x37,0x01,0x8a,0xb9,0x64,0x9b,0x26,0xb3,0x9a,0x49, - 0x86,0x8b,0x8d,0xfa,0xad,0x6a,0x8f,0x63,0x92,0x75,0x46,0xe2,0x1c,0xf5,0x79,0x6a,0xee,0x94,0xb3,0x19, - 0x3b,0x70,0x2b,0x63,0x27,0x54,0x79,0x97,0x91,0x6d,0xf4,0x16,0xa6,0xaa,0xdd,0xd4,0xcf,0x88,0xaa,0x56, - 0x95,0x0c,0x0d,0x1f,0x56,0x5b,0xad,0xce,0x66,0xdb,0xd3,0xb7,0xdb,0xb5,0x5b,0x8a,0x5a,0xf0,0xfc,0x19, - 0x3a,0x94,0x5b,0xef,0x5b,0x80,0x9b,0xbf,0xb6,0x02,0x18,0xa0,0x5e,0x02,0x7f,0xaa,0x04,0xf5,0x74,0x66, - 0xbf,0x7d,0x2b,0x84,0x69,0xd9,0x59,0x75,0x74,0x17,0x4b,0x22,0xf3,0xeb,0x62,0x8d,0x05,0x89,0xd2,0xbf, - 0x36,0x92,0x0f,0x1d,0xca,0x0e,0xcb,0x24,0x87,0x91,0x06,0x4c,0x17,0x70,0x3f,0xd0,0xac,0xe8,0x5c,0x1e, - 0x99,0x6e,0x5d,0x1e,0xd9,0xb7,0xa6,0xd9,0xa2,0x8f,0x13,0x16,0x66,0x08,0xfc,0x4e,0x7b,0x30,0x05,0x9c, - 0xc8,0x0c,0xdf,0xfe,0xcd,0xe1,0x18,0x5e,0x39,0x71,0xe1,0x71,0xf8,0x17,0xa1,0x5d,0x18,0x6a,0x9e,0x0e, - 0xd5,0x03,0x0e,0x96,0x62,0x90,0xf1,0x83,0x92,0x11,0x32,0xdf,0x83,0x45,0xd8,0xd8,0xd8,0x92,0x01,0x11, - 0x5b,0x27,0x9f,0xb7,0x61,0x41,0xbb,0xf3,0x2e,0xb7,0xbb,0x73,0x21,0x2e,0x04,0x2c,0xdd,0x87,0x77,0xb4, - 0xc8,0xf1,0x3d,0x25,0x5b,0xf8,0xa6,0xbb,0xdd,0x4e,0xbb,0x5a,0x1b,0xa1,0x24,0x34,0x17,0xaf,0x79,0x1d, - 0xd8,0x07,0xb4,0x48,0x5b,0xed,0x7e,0x61,0xc2,0x14,0xca,0x62,0x67,0x73,0xa5,0xd5,0xd1,0xc2,0x68,0xd0, - 0x78,0xce,0x70,0x6b,0xa2,0xcf,0x3b,0x0a,0x33,0x41,0xfc,0xc3,0xd8,0x7c,0x63,0x2c,0xe2,0x58,0x14,0x7a, - 0x7a,0x0a,0x72,0x36,0xd2,0x6a,0xe0,0x9e,0x5c,0xdb,0x12,0xc7,0xe2,0x38,0xec,0x9c,0x0d,0x1e,0x53,0xdf, - 0xc9,0x10,0xb6,0xbe,0x7b,0x96,0xf8,0x12,0x81,0xbe,0xf2,0x3a,0x40,0x35,0x0d,0x21,0xe7,0xdb,0x05,0x89, - 0x51,0x3f,0xbd,0x5c,0x65,0xa7,0xa7,0x89,0xdb,0x1d,0xe8,0x8d,0xc1,0x0f,0xf4,0x68,0x4b,0x78,0x8c,0xf4, - 0x1d,0x2d,0x28,0x95,0x17,0x69,0xd3,0xbc,0xc9,0x84,0x68,0xad,0x90,0xce,0x73,0x92,0xd5,0x56,0xaa,0x9d, - 0x8e,0x3b,0x7c,0xca,0xbd,0x69,0x41,0xa6,0x27,0xee,0xdb,0x52,0xc0,0x18,0x92,0x5f,0xb7,0x69,0x5e,0x3d, - 0x33,0xe1,0x76,0x5d,0x5a,0x58,0xd4,0x51,0x96,0xec,0x1a,0xa0,0x68,0xb3,0xb7,0xb0,0x87,0x69,0xc1,0x86, - 0xf1,0xc0,0x89,0x54,0xff,0x07,0xee,0x66,0x47,0x7f,0x74,0xa3,0x5d,0x56,0x35,0xf4,0x28,0x5f,0xda,0x2b, - 0x63,0xe4,0x04,0x50,0xca,0x78,0xec,0x7d,0x4b,0x6e,0x71,0xcb,0x70,0xdd,0x49,0x34,0x72,0x86,0x74,0xad, - 0x22,0x56,0x0c,0xdc,0x58,0xdd,0x8d,0xcd,0x82,0x5d,0xb5,0x57,0x83,0x23,0x1b,0xb4,0x35,0xa7,0x69,0xcd, - 0x4b,0x32,0xb6,0x8f,0xfb,0xfb,0x76,0x2a,0xfc,0x59,0x50,0x7d,0xb0,0xad,0xb7,0x8e,0x76,0x2f,0x32,0x33, - 0xeb,0x7c,0x99,0x2c,0x08,0x13,0x66,0xfd,0x3c,0x00,0xfa,0x20,0xda,0x86,0xa7,0x96,0xb0,0x5e,0xac,0xed, - 0x37,0xea,0x13,0x71,0xa8,0x4f,0x3b,0xd8,0x21,0x52,0x4f,0x5b,0x80,0x51,0x10,0xaf,0x7f,0x94,0x4f,0xda, - 0x96,0x8f,0x1a,0xbb,0xbc,0xd7,0x7a,0x46,0x82,0xa6,0xd6,0x47,0x5a,0x18,0xb0,0x65,0xe6,0xa0,0x3c,0xb4, - 0x69,0x05,0x0e,0x55,0x62,0x44,0x5d,0xca,0x0b,0x98,0x2c,0x32,0x3e,0x8e,0x02,0xe7,0x70,0x52,0xd4,0x36, - 0xd7,0xd3,0x02,0x08,0x63,0xb5,0x67,0xde,0x61,0xb5,0x87,0xe0,0xfc,0xc6,0x37,0x6d,0xbd,0x4e,0x8f,0x0f, - 0x10,0xfd,0x8d,0xfe,0x42,0x99,0x23,0x04,0xaa,0x2d,0x9b,0x3c,0xa6,0x83,0x80,0x45,0xc5,0x4d,0x5b,0x60, - 0x91,0x9b,0x1b,0xda,0xda,0x1a,0x14,0xe8,0x25,0xcc,0x1e,0xce,0xd9,0xee,0x22,0x4b,0xb4,0xb5,0x45,0xd3, - 0x92,0x9f,0xa1,0x58,0x4b,0x7c,0xb1,0x85,0xc2,0x03,0x29,0x0d,0xcf,0xf8,0xc4,0x60,0x00,0x6b,0x8c,0x42, - 0x43,0x14,0x99,0x34,0x11,0xcc,0xbf,0x14,0x90,0x44,0x27,0x59,0x15,0x46,0x2e,0x7a,0x20,0xb4,0x2a,0x42, - 0xbf,0xbe,0xad,0xd4,0x4f,0x95,0x7a,0x54,0xa9,0x0f,0x55,0x72,0xac,0x3d,0x25,0xdf,0x66,0xe7,0x4f,0x3f, - 0x2d,0xc5,0xda,0xf6,0x44,0xbd,0xaf,0x92,0x9b,0x1f,0x8c,0x08,0x3b,0xd6,0x91,0x4d,0xfc,0x48,0xd1,0x66, - 0x8f,0xb1,0xbe,0x4e,0x82,0x5b,0xe4,0xc5,0x64,0xbe,0x9a,0x66,0xf1,0x07,0x42,0xcf,0x9f,0xec,0xe3,0x22, - 0xfd,0x14,0x9b,0x36,0xe4,0x6e,0x9b,0x93,0x8d,0xd2,0x84,0x7b,0xdc,0xc5,0x42,0x93,0x94,0xf6,0xd1,0xad, - 0x44,0x06,0x73,0x96,0xf0,0xdd,0x50,0x16,0xd6,0x5b,0x8e,0x2d,0x46,0xcf,0xca,0x8b,0x6d,0xab,0x8b,0x9e, - 0x1b,0x49,0x26,0xde,0x54,0xe6,0xaa,0x22,0x30,0xe4,0x9d,0xeb,0xba,0xee,0xc3,0xec,0x13,0xbd,0xb1,0x9c, - 0x0c,0xc9,0xc2,0xf1,0x6f,0x5a,0x82,0x06,0x91,0xd3,0xa7,0xbf,0xf3,0xe5,0xae,0xfb,0x72,0xa3,0xb6,0xe3, - 0x0c,0xf8,0x28,0x8f,0xc1,0x6d,0xa8,0x03,0x7c,0xd1,0x46,0xf8,0x45,0x0c,0x85,0xd9,0x9f,0x61,0x4b,0xe2, - 0xec,0x87,0xd9,0x7c,0x83,0x4b,0x08,0x94,0xa6,0x9c,0xf4,0xc0,0x60,0x66,0x2e,0xea,0x7b,0x7e,0xe5,0x7b, - 0x28,0x09,0xaa,0x77,0x89,0xed,0x44,0x97,0x72,0xc8,0x97,0x88,0xe4,0xd9,0xdb,0x23,0x84,0xf8,0x1b,0x6e, - 0xc9,0x76,0x51,0xf3,0x1b,0x13,0x1b,0xc8,0x4d,0xa1,0x36,0x03,0xc1,0x14,0xaa,0x89,0x11,0x67,0xf0,0x5d, - 0xc5,0x85,0x44,0x4e,0x9f,0xe4,0xd3,0x41,0x28,0x91,0x2b,0x82,0x38,0x46,0x80,0x36,0x8e,0xc5,0x12,0x40, - 0xcd,0x80,0xc8,0x4a,0xe9,0xf1,0xe4,0x64,0xdc,0xab,0x6d,0x42,0x4e,0x8f,0xc2,0x69,0x25,0x37,0x53,0x69, - 0xdb,0x9c,0x09,0x62,0x24,0xa3,0x24,0xd1,0xb9,0x36,0x49,0x96,0x95,0xa0,0x8d,0x08,0x11,0x43,0x4e,0xd9, - 0x30,0x80,0x26,0x8f,0xb6,0xf2,0x73,0xd0,0x71,0xb8,0xb3,0x54,0xb5,0xe8,0x8d,0xc8,0x88,0x5c,0x9c,0xe6, - 0x06,0x52,0x1f,0x33,0x09,0x74,0xee,0xec,0xed,0x65,0xf4,0x15,0x31,0x28,0xa3,0xb7,0x40,0x81,0x2a,0x7c, - 0x04,0x13,0xc1,0xe8,0x16,0x2e,0xf0,0x4e,0x71,0x1b,0xf3,0x47,0x9b,0x2f,0x10,0x75,0x7d,0x40,0x5b,0x30, - 0x52,0x6f,0xe9,0x90,0x6d,0xf2,0x79,0x72,0x03,0x07,0xcf,0xf8,0xfb,0x82,0x40,0xaa,0x21,0xc8,0x88,0x2f, - 0xd5,0x02,0x26,0xd9,0x7a,0x89,0xe3,0xe7,0x4a,0xea,0x79,0x2b,0xea,0x9b,0x2c,0x7e,0xb7,0xc1,0xa7,0xc2, - 0xf8,0xbd,0x85,0xd9,0xa0,0x66,0xf7,0xe8,0xd9,0xe2,0xe0,0xf7,0x78,0xeb,0x57,0x9b,0xc8,0xb6,0xba,0xc5, - 0xf0,0xda,0x7d,0x65,0x0c,0xb0,0xfb,0xdc,0xaf,0x22,0xaf,0xf6,0xe1,0xe9,0x59,0x5a,0x67,0x09,0x0d,0xee, - 0x32,0xf4,0x52,0xed,0x52,0xd6,0x84,0x52,0x64,0xac,0x75,0x76,0x0b,0x75,0x0c,0xf1,0x3a,0xad,0x37,0xae, - 0xf3,0x78,0x33,0x5f,0x9d,0xe7,0x1c,0x57,0xb5,0x3f,0x83,0x6f,0xb4,0x63,0x64,0x6f,0x3c,0x22,0x33,0xdc, - 0x0d,0xd1,0xe2,0x0b,0x84,0xec,0x6c,0x93,0xcf,0x8e,0x49,0xd2,0xde,0x13,0x5a,0x3e,0xd1,0x23,0x73,0x40, - 0xec,0x11,0x6e,0x74,0x6c,0x9f,0x34,0x71,0xcd,0x61,0xb5,0xfa,0xbe,0x80,0x1e,0xcb,0xbb,0x10,0x8c,0x79, - 0x36,0xdf,0x98,0x8c,0x17,0x6c,0x91,0x7f,0xca,0x7b,0xbd,0xa5,0x79,0xa4,0x4e,0xff,0xe2,0xbf,0x2a,0x5b, - 0x41,0x5b,0x4e,0x4b,0xfb,0x2c,0x39,0xd0,0x02,0xda,0xc3,0x51,0x36,0x14,0xc8,0x69,0x55,0x9e,0x25,0xac, - 0xb3,0xf1,0x88,0x70,0x3e,0x40,0xe9,0x4b,0xb9,0xd7,0x16,0xfb,0x55,0xae,0x0d,0xc4,0x13,0x8b,0xf4,0x80, - 0x1c,0xa0,0x2f,0x34,0x16,0xe8,0xc6,0x59,0x05,0xf1,0x3f,0xe4,0xb6,0x43,0x1b,0x43,0x45,0xc2,0x65,0xb7, - 0x23,0x60,0x9b,0x15,0xcb,0x1b,0x76,0x89,0xd0,0x11,0x03,0x52,0x77,0xdc,0x77,0x61,0xc9,0xa3,0x25,0x22, - 0x5f,0xdd,0x94,0xa4,0x08,0x3c,0x4d,0x43,0xc4,0x8d,0xeb,0xa9,0x37,0x35,0x85,0x3f,0x2f,0x74,0xda,0xae, - 0x96,0x50,0xd1,0xb8,0x22,0xdb,0xf2,0x69,0x27,0x3c,0xfd,0xac,0x78,0x16,0xb2,0x43,0x5f,0xda,0x72,0x6a, - 0xa5,0x2d,0x1b,0x5c,0x25,0x92,0xb6,0xc0,0xba,0x2b,0x35,0xdc,0x6e,0xc3,0x94,0xea,0x36,0xb3,0x6a,0x37, - 0x53,0xb0,0xa3,0x87,0x69,0x42,0xaf,0x61,0xa1,0x1f,0x28,0x45,0x20,0xa6,0x90,0x5f,0x7a,0xc7,0x0e,0x2a, - 0xf0,0xf7,0x56,0xb7,0x09,0xe6,0x7c,0x39,0x98,0xac,0x92,0x0b,0x52,0xb6,0xb7,0x23,0xfb,0x21,0xd8,0xd9, - 0x33,0xee,0x70,0x6e,0x66,0x4d,0x47,0x4c,0x4e,0xc6,0xf7,0xae,0xa4,0xb4,0x05,0xad,0xff,0x1d,0xee,0xbc, - 0x4d,0x9d,0xc2,0x35,0x67,0x0f,0x27,0x95,0x6e,0x36,0x84,0x00,0x22,0x22,0x30,0x80,0x0c,0x6e,0xe9,0xe1, - 0x4f,0xec,0xf9,0xe1,0x6b,0x67,0x3c,0xc7,0x92,0xd0,0x0b,0x0b,0x20,0xce,0x62,0x65,0x58,0x48,0xf0,0xf8, - 0x82,0xa3,0xef,0x6b,0x28,0xb4,0xe6,0xac,0x2d,0x14,0xa4,0xfb,0x8d,0x8b,0x78,0xfc,0x98,0x02,0x52,0x51, - 0x9f,0x6c,0x91,0xc3,0xad,0xdc,0x20,0x72,0x65,0x5c,0x28,0x1d,0xc8,0xbc,0xd8,0x18,0x7f,0x9f,0x16,0x16, - 0x84,0x49,0x61,0xc1,0x2e,0x2f,0xbd,0x79,0xb0,0x25,0xef,0xc7,0xf9,0x4f,0xdb,0x42,0xbc,0xbc,0x7e,0x27, - 0x5e,0xc6,0xe2,0x12,0xfd,0x47,0xf1,0x57,0x3f,0xac,0xeb,0x4a,0x3b,0x45,0x6e,0x7b,0x53,0xfb,0x68,0xa4, - 0xcd,0x4d,0x0a,0x2d,0xef,0xbe,0x45,0x3f,0xa9,0x62,0x78,0xbc,0xe5,0xb0,0xba,0xbe,0x3f,0xfc,0x6a,0x78, - 0xf8,0x85,0x04,0x68,0xf9,0xae,0x52,0x7f,0x54,0xea,0xf7,0x4a,0xfd,0x50,0xa9,0xef,0x2b,0xf5,0x6d,0xa5, - 0x7e,0xae,0xd4,0xbf,0x2b,0xf5,0x4b,0xc5,0x81,0x34,0xf8,0x3e,0x65,0x7d,0x97,0xaa,0xfa,0x91,0xd3,0xf8, - 0xce,0x18,0x85,0x7a,0x89,0xca,0x4c,0x95,0xcc,0x8a,0x92,0x7b,0x73,0x40,0x1a,0x9e,0xc3,0x60,0x10,0x24, - 0x6b,0x7e,0x8b,0x2f,0x91,0xbb,0x37,0x9c,0xd6,0xe2,0xc7,0x8a,0x65,0x69,0x81,0xc4,0x28,0x86,0xcb,0x45, - 0x83,0x70,0x2d,0xfa,0x16,0x1e,0x5d,0x28,0x90,0x46,0x78,0x51,0x29,0x97,0x68,0x92,0xc9,0x47,0x97,0x29, - 0x97,0xd8,0xe8,0x3c,0x1b,0x09,0x1d,0x39,0x10,0x30,0x97,0x9c,0xb3,0x51,0x4d,0x8e,0xce,0x4f,0xe4,0x12, - 0xf5,0x6c,0x9a,0x37,0x30,0x9d,0x53,0xd3,0x2a,0x3d,0x3f,0xe7,0xa7,0x7a,0x99,0xcd,0xe7,0x5c,0x33,0xf5, - 0xbd,0xe0,0xc2,0x74,0x04,0x94,0x57,0x33,0x42,0xed,0x35,0xa1,0x2e,0xe2,0x27,0xd9,0x19,0x53,0xa5,0xab, - 0xa6,0x9c,0x95,0x93,0x55,0xcd,0x4f,0xcb,0x79,0x7a,0xad,0x74,0x87,0x38,0xe4,0x08,0x9d,0xd6,0xb0,0xce, - 0x23,0x72,0x75,0x5e,0xd3,0x11,0x4e,0x73,0x57,0x65,0xca,0x90,0x75,0xfa,0xd7,0x94,0xd7,0xaf,0xdc,0x67, - 0xf3,0x62,0x86,0x8e,0x77,0x62,0x79,0xa6,0x79,0x8d,0xee,0x4d,0x55,0x56,0xc8,0x2f,0x62,0x17,0x14,0x25, - 0x4d,0x61,0x0e,0xc8,0x55,0x17,0xf9,0x74,0x4a,0x5d,0xc3,0xb1,0xd8,0x64,0xd5,0x22,0x2f,0x90,0x48,0x10, - 0x55,0x35,0x2a,0xaf,0x17,0xe9,0x52,0xe5,0x4d,0xb6,0x90,0x18,0x27,0xf3,0xb2,0x5c,0x2a,0x73,0x7d,0x93, - 0x92,0x46,0x8b,0x12,0x41,0x5a,0x14,0x02,0x4b,0xd4,0xf9,0x1f,0x84,0x9b,0xca,0xfa,0x22,0x05,0xaf,0xe9, - 0x5a,0x28,0x4a,0xc4,0x8d,0xa2,0x75,0xa6,0x66,0x96,0x29,0xa1,0x21,0xda,0xa9,0x9f,0xf2,0x86,0xc8,0xd9, - 0x74,0x5a,0x16,0x73,0xc4,0x53,0xf9,0x7d,0x45,0xfb,0x6e,0xaa,0xb4,0x53,0xe5,0x54,0x09,0x3f,0x44,0x30, - 0x91,0x2e,0xe6,0x04,0x0c,0xca,0x8e,0x09,0xde,0x97,0x3c,0xdb,0xf6,0xc2,0x14,0x0e,0x07,0x4a,0x73,0x4f, - 0x99,0x80,0x79,0x84,0x94,0xe0,0xe8,0xef,0xea,0x32,0xaf,0x73,0x2a,0x89,0x00,0xef,0x79,0x12,0x5c,0x34, - 0xcd,0x32,0xbe,0x77,0xef,0xea,0xea,0x6a,0x78,0xf5,0xc5,0xb0,0xac,0xce,0xef,0x1d,0x7e,0xfd,0xf5,0xd7, - 0xf7,0x3e,0xcd,0xf3,0xe2,0x63,0xa0,0xf2,0xbc,0xe7,0x80,0x0d,0xe2,0x96,0xf3,0xc9,0x57,0x80,0x32,0x29, - 0xcf,0xc9,0x26,0x38,0xcf,0x57,0xf0,0xb4,0xeb,0xfb,0x7e,0x27,0x87,0x25,0xae,0xf5,0x2b,0xf9,0xa7,0x32, - 0xf2,0x4c,0x8e,0xd6,0xa2,0xd2,0xde,0x6f,0x84,0x38,0x26,0x40,0xdc,0x3d,0x14,0xb0,0xab,0xf3,0xe4,0xa6, - 0xbe,0x24,0x62,0x78,0x7b,0x04,0xf7,0x0f,0x0e,0x0e,0xee,0x51,0x5e,0x40,0x3c,0x53,0x73,0xd1,0x57,0x82, - 0xc6,0xf8,0xaf,0x7b,0xb8,0x7b,0x94,0xff,0xbc,0x7c,0x41,0xcd,0x4e,0x18,0x32,0x2f,0x9a,0xc5,0x5c,0x9d, - 0x95,0xd3,0x6b,0x05,0x14,0xa8,0x2e,0x68,0x29,0x14,0x86,0xa6,0x10,0x73,0x5c,0xc9,0xae,0x6d,0xf2,0x86, - 0xfe,0xa6,0xd3,0x29,0xf6,0xa3,0x4a,0xab,0x26,0x9f,0xe0,0xbd,0xa6,0x3d,0x41,0x40,0x54,0xe2,0x76,0x4c, - 0x7c,0x87,0x9f,0x43,0x75,0x71,0x5f,0x5d,0x7c,0xa1,0x2e,0xbe,0x54,0x17,0x5f,0xa9,0x8b,0x7f,0xaa,0x8b, - 0xf3,0xaa,0x5c,0x2d,0x55,0x91,0x5e,0xd2,0xda,0xf1,0x18,0x09,0x10,0x2f,0xd5,0x94,0xa0,0x72,0xae,0xa6, - 0x8d,0x22,0x62,0x16,0xbe,0x35,0x48,0x67,0x33,0xd4,0x4c,0x2d,0xf3,0x09,0x5c,0x6d,0xd4,0x05,0x71,0xe9, - 0x8b,0x73,0xea,0x0c,0x0d,0x8a,0x4e,0xaf,0x72,0xae,0x96,0x30,0x6a,0x54,0xab,0xb9,0x4a,0xd5,0x19,0xb1, - 0x91,0x67,0x95,0x3a,0x9b,0xe6,0xf4,0xbf,0x54,0xf4,0x38,0x21,0xf0,0xe4,0xf8,0x43,0x8a,0x2f,0x89,0x9f, - 0xce,0x88,0x1c,0x5e,0xa8,0x5c,0x7d,0x3c,0x9b,0x52,0x05,0xd5,0x47,0xf5,0xbb,0xaa,0x96,0x8a,0x80,0xb9, - 0x6a,0x26,0xaa,0x5a,0x9d,0x5d,0x13,0x15,0x5f,0xa7,0x8b,0xa5,0x22,0xd8,0x26,0x92,0xab,0x5e,0xa6,0x84, - 0x7a,0x68,0xaf,0x11,0xb3,0x59,0xaf,0xce,0xe8,0xff,0x92,0xef,0x8b,0x55,0xb8,0x67,0xa1,0x52,0x57,0x67, - 0x10,0x9e,0x13,0x92,0x4a,0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x62,0x3f,0x2a,0x46,0x0c,0xd4,0xd2,0x19, - 0x81,0x9d,0xf8,0x81,0xc1,0x08,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x3f,0x26,0x69,0x71,0x99,0x52,0x4b, - 0x93,0x2a,0x5f,0x36,0xd8,0x14,0xf2,0x40,0x34,0x37,0x8c,0xdc,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65, - 0xb2,0x34,0x60,0xf3,0x5a,0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x50,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xe6,0x03, - 0x34,0x67,0xd9,0x7c,0x4a,0x94,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x51,0xed,0xf3,0xec,0x1c,0x44, - 0xc0,0x02,0x9b,0x19,0xa8,0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15, - 0x13,0x0a,0x48,0x73,0x60,0x9d,0x3c,0x9d,0x97,0xe7,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b, - 0x9a,0xd0,0x6b,0xa5,0x31,0xa0,0xca,0x44,0xe6,0xa0,0xb0,0xdf,0xcb,0x2b,0x65,0x82,0x66,0x29,0x0e,0x4b, - 0xf6,0xfb,0xaa,0x04,0x1a,0x99,0x55,0x20,0xf7,0x1a,0x40,0x0b,0x6e,0x0c,0x66,0xd0,0x23,0x80,0x55,0x69, - 0x91,0x2f,0x50,0x76,0x92,0x57,0x13,0x3e,0x1f,0xf2,0xe5,0x92,0x00,0x54,0x4d,0x56,0x15,0xed,0x70,0x60, - 0x2e,0xa0,0xbe,0x7a,0x42,0x8d,0x50,0x16,0x01,0xa8,0xc4,0xf7,0xa1,0xe1,0x16,0xcd,0xfe,0x2c,0x9d,0x00, - 0x00,0xab,0x2c,0x3f,0x2f,0xe4,0x10,0x54,0xe7,0xea,0x7c,0x7e,0xbd,0xbc,0x20,0xc8,0x49,0xcf,0x33,0x00, - 0x72,0xc6,0x8b,0x9f,0x41,0x9a,0x50,0x13,0x50,0xe7,0x35,0x6e,0x2f,0xdb,0x97,0x42,0xdc,0x12,0xfd,0xa1, - 0x0a,0x09,0x21,0x95,0xf3,0xeb,0xf3,0x52,0x7e,0xf9,0x3b,0x9c,0xff,0xea,0xff,0x6b,0xef,0xdd,0xd7,0xdb, - 0x36,0x92,0x7d,0xd1,0x57,0xa1,0x30,0xda,0x32,0x10,0x42,0x94,0x64,0x3b,0x99,0x04,0x34,0xcc,0xe5,0x4b, - 0x2e,0x4e,0x7c,0x5b,0xb1,0x92,0xcc,0x44,0x62,0xb4,0x20,0x12,0xa4,0x60,0x51,0x00,0x07,0x00,0x29,0x2b, - 0x22,0x1f,0xe8,0xfc,0x7b,0x1e,0x61,0x3f,0xd9,0xa9,0x5f,0x55,0x77,0xa3,0x01,0x82,0x96,0x9d,0xd9,0x7b, - 0x9d,0xfd,0xc7,0xfe,0xf2,0xc5,0x02,0xfb,0x7e,0xa9,0xae,0xae,0xaa,0xae,0x8b,0x18,0x51,0xfb,0x05,0x3b, - 0xd9,0xe0,0xf5,0xe1,0x7f,0xb8,0x66,0xc9,0x30,0x03,0x6a,0x6a,0x99,0xc4,0xd7,0xe2,0x1b,0x6a,0xd1,0x7a, - 0x96,0x47,0xa2,0x89,0x3f,0xe3,0xb8,0xdc,0x34,0x85,0x56,0x86,0x6a,0xcc,0x8b,0xc2,0x5d,0x48,0xec,0x40, - 0x36,0x35,0xbb,0xce,0x72,0x46,0x7f,0x39,0x8d,0x22,0xa6,0x83,0x80,0x41,0xcc,0xfc,0x45,0x0e,0xa7,0xd8, - 0xf3,0xa4,0xe9,0xd4,0xaa,0x26,0x04,0x6a,0xd5,0xfc,0xdd,0xe2,0x78,0xcb,0x04,0x28,0x56,0x17,0x26,0x3b, - 0x1a,0x1f,0xa4,0x81,0x5b,0x2a,0x25,0xda,0xd2,0x52,0xa2,0xdd,0xdb,0xb3,0xe2,0x23,0x55,0xc9,0x26,0xa0, - 0x1f,0x34,0x61,0xea,0x01,0xd6,0x75,0x0e,0x7c,0x2d,0xe9,0x4f,0x8f,0x83,0x05,0xd6,0x86,0xf1,0xfa,0x5d, - 0x63,0xcc,0xfa,0x55,0xb1,0x75,0xd0,0xaf,0xdf,0xb9,0x05,0x54,0x53,0xd8,0x50,0x58,0x72,0x8e,0x69,0xf5, - 0x10,0x0b,0x32,0x68,0xd9,0x84,0x46,0x23,0xba,0x28,0x6f,0x89,0x24,0x29,0x8f,0x01,0x9f,0x50,0x59,0x95, - 0xe4,0xba,0xa2,0xab,0xfa,0x94,0xa5,0xd3,0x1b,0xd6,0xe3,0xcc,0x01,0x9a,0x6c,0x57,0x02,0x24,0x8a,0xa6, - 0x3e,0x2b,0x30,0x35,0xe6,0xab,0x7d,0x83,0x70,0x1e,0x42,0x7e,0xf8,0x88,0x19,0x9c,0x8e,0xdb,0xcb,0x5a, - 0x79,0x5c,0xb6,0x8a,0x85,0xd9,0x36,0x85,0xd8,0x8a,0x95,0xb9,0xf6,0xc1,0xe8,0xbf,0xa3,0x6b,0x91,0x4e, - 0x43,0x7b,0x61,0xab,0xc0,0x1a,0xd1,0xc3,0xd8,0x55,0x53,0x6b,0x49,0x95,0xb9,0x86,0xd1,0x00,0x56,0xf5, - 0x99,0xe0,0x85,0x8d,0xe1,0x96,0x55,0x5e,0x58,0x72,0x69,0x03,0x21,0x2d,0xeb,0x56,0x03,0x20,0x5e,0x37, - 0x78,0x6c,0xa3,0x3b,0x50,0x76,0xa0,0xd1,0xfa,0x6f,0x31,0xaf,0x80,0x22,0xc2,0x9b,0x3d,0x33,0x8c,0x12, - 0x75,0x52,0x01,0xac,0x38,0x12,0xfe,0x0d,0x32,0x35,0x1c,0x5b,0xae,0xbe,0x45,0x83,0x57,0x17,0x5a,0xaf, - 0xe9,0x9c,0x2b,0x87,0x13,0xae,0x43,0x54,0xf4,0xda,0x47,0xac,0x96,0xab,0x04,0xde,0xc8,0xb4,0x87,0x31, - 0xad,0x20,0x6b,0x7c,0x87,0xb1,0x87,0x08,0x6c,0x69,0xe5,0x33,0xcc,0x19,0xfa,0xd3,0x6a,0x1e,0xbf,0xc4, - 0x7a,0xd4,0xbf,0xc4,0xad,0xfd,0xff,0x82,0xfe,0x97,0x09,0xfa,0xbf,0x69,0xc7,0x1c,0xe7,0x34,0x84,0x8b, - 0x84,0x1a,0x1d,0xfa,0x67,0x55,0xc3,0xff,0x32,0x0d,0xff,0x8b,0xf6,0xe6,0xba,0xca,0xf8,0xd1,0x64,0xfc, - 0x48,0x19,0xc7,0x49,0x78,0x70,0x72,0x7a,0xed,0xf5,0xba,0xa7,0xfb,0x67,0xbb,0xa7,0xc3,0xe1,0x81,0x7f, - 0x99,0xc0,0xbb,0x16,0xf1,0x18,0x1f,0xf8,0x63,0xe4,0xf8,0xcf,0xaa,0xda,0x74,0x67,0xab,0xda,0x63,0xda, - 0xc4,0x27,0x55,0xc6,0xdc,0x64,0xcc,0x61,0x70,0x97,0xb4,0xda,0xf1,0x72,0x54,0xb9,0x83,0xc0,0xed,0x75, - 0xbd,0x83,0xbe,0x81,0x20,0x31,0xb3,0x3c,0xe8,0xbb,0x83,0x9d,0x93,0x3f,0xdc,0xe1,0x17,0xa7,0x9e,0x77, - 0x30,0x6d,0xd7,0x48,0x83,0x01,0x41,0xe5,0xb8,0x55,0x2a,0x42,0x7b,0xc0,0xbc,0x83,0x42,0xe4,0x7e,0x82, - 0x98,0xa8,0x2a,0x3c,0xcf,0x30,0xcc,0xab,0x50,0x3e,0x0c,0x44,0x25,0xfd,0xbf,0x4b,0xb3,0xfe,0x63,0x7f, - 0xff,0xc0,0x7f,0x43,0x1f,0xa7,0xc5,0x17,0x3b,0xc9,0x15,0x2c,0xa7,0xa3,0xb4,0xdc,0x3d,0xf0,0xbf,0xdd, - 0xe4,0x37,0xa8,0xdb,0x5d,0x15,0x12,0x9e,0x00,0x25,0x96,0x58,0x7e,0x80,0x51,0xc3,0x6f,0x95,0xb6,0xc9, - 0xc6,0x1b,0x55,0x36,0xdd,0x5a,0xd6,0xf8,0xcd,0x7b,0x93,0x70,0xec,0x21,0xc7,0x0c,0xc0,0x0e,0x0c,0x97, - 0x87,0xef,0x13,0x57,0x1c,0xd2,0xd7,0xdf,0xc8,0xd3,0x9a,0x92,0x4d,0xdb,0xbb,0xae,0xea,0x17,0xac,0x35, - 0x9e,0x77,0x65,0x68,0x76,0x22,0xc1,0xd3,0x5b,0xc0,0xae,0x84,0x20,0x24,0xf0,0x7c,0x95,0xfd,0x09,0xfc, - 0x4c,0x1c,0xa9,0xff,0xbe,0xb9,0x7b,0x34,0x80,0xdf,0xf3,0xf0,0xf7,0xfc,0x0e,0xcf,0x8d,0xd2,0xbc,0xf1, - 0xc2,0xb7,0xc3,0x96,0xd7,0x88,0x08,0x01,0x25,0x44,0x96,0xae,0xff,0xae,0xa3,0xe9,0x75,0x62,0xeb,0x9d, - 0xec,0x53,0xbc,0x12,0x2a,0x5f,0x17,0x6f,0x93,0x16,0x87,0x9a,0x6f,0x93,0x93,0x74,0xd8,0x65,0x55,0xe0, - 0xbc,0xde,0x4b,0x8e,0x1d,0x7f,0x5e,0x41,0xe9,0x95,0x81,0xd2,0x2b,0x82,0xd2,0x17,0xcd,0x79,0x2a,0x5b, - 0xf0,0xd8,0x84,0x9f,0x0f,0x88,0x47,0xdf,0xe7,0x9f,0x8e,0x1f,0x5b,0x51,0xe8,0xab,0xf4,0xfd,0x32,0x53, - 0x59,0x56,0x6c,0x65,0x2b,0x5b,0x84,0xae,0x8e,0x5f,0x85,0x67,0xe6,0x4c,0xfe,0xa9,0x52,0xed,0x36,0x39, - 0x81,0xdb,0x6c,0xc6,0x6b,0xb6,0xb2,0x55,0x9b,0x98,0xdb,0xcb,0x84,0x7d,0x89,0x21,0xd2,0xf2,0x77,0x89, - 0x8a,0x1f,0xc9,0x3e,0x63,0x1d,0xff,0x35,0xfd,0x16,0x02,0x8b,0x7f,0xbe,0x6a,0x64,0xff,0x5c,0xfb,0x4d, - 0x37,0x89,0xe3,0xff,0x56,0xaf,0xf1,0xd4,0xfe,0x89,0x02,0xfd,0x97,0x10,0xfe,0x1b,0x3f,0x0d,0xca,0x81, - 0x19,0x78,0x54,0xab,0x19,0x8b,0x3c,0x30,0x05,0xae,0x19,0xc8,0x1a,0xc5,0x5c,0x8c,0xc8,0x8a,0x80,0x69, - 0x8d,0xeb,0xba,0x91,0xfa,0x6d,0x8a,0xc7,0xc9,0xcd,0x8e,0xed,0xd1,0x6d,0xef,0xb7,0x5e,0xca,0xfd,0xcd, - 0x74,0xfb,0xa4,0x3e,0xd7,0xeb,0x7a,0x22,0x77,0x2a,0x5a,0x08,0xbf,0x62,0x95,0x07,0xaa,0x59,0xb0,0xa9, - 0x74,0xba,0x4d,0xb9,0xef,0x40,0xdc,0x7e,0x34,0xb3,0x07,0x21,0x91,0x2b,0x25,0xbc,0xa0,0x72,0x87,0xd0, - 0x7a,0xa1,0xe2,0xc9,0xfc,0x17,0xa0,0xa5,0x73,0xd7,0x04,0xec,0x58,0x11,0x8f,0xe2,0xb9,0xfe,0x6a,0xd7, - 0x3b,0xf0,0x7f,0xb0,0xd0,0xd3,0x46,0x4c,0x07,0xa1,0xf2,0x9e,0x59,0x77,0x3d,0x68,0xbb,0x92,0xc5,0x60, - 0xcf,0x6a,0xd4,0x05,0xd4,0x5c,0xad,0x50,0x0a,0x1c,0xcd,0x4d,0x1c,0x91,0x4b,0xe4,0x8c,0xba,0x2f,0xaa, - 0xc8,0xb7,0x0d,0xc4,0xb8,0xa4,0x7e,0x0d,0x95,0xfb,0x95,0x85,0xea,0x88,0xb4,0xac,0x0c,0x9c,0x5a,0xa3, - 0xeb,0x7a,0xf0,0x22,0x64,0x9e,0x49,0x54,0x95,0x30,0xea,0x41,0x5f,0x8b,0xf2,0xe4,0x07,0x04,0xc0,0x28, - 0x88,0x6b,0xf7,0x88,0x3b,0xf2,0xdb,0x1b,0xd3,0x67,0xbc,0xc0,0x88,0x08,0x3f,0xb8,0x70,0xc7,0xb1,0x69, - 0x7b,0x68,0xab,0xee,0xc4,0xfd,0xa8,0xc5,0x14,0x47,0xa2,0x47,0xb7,0xe4,0xe8,0x07,0xf3,0xd2,0xcd,0x94, - 0x71,0x20,0x8f,0x32,0x0b,0xed,0x50,0xac,0x4a,0x5d,0x29,0x23,0xf4,0x94,0x3d,0xba,0xec,0x69,0x12,0x40, - 0xa3,0xa9,0x6e,0x37,0xf3,0xaa,0xd4,0x93,0x6c,0xe8,0x2e,0x13,0x5a,0xe4,0xbe,0x32,0x34,0x88,0xb4,0x62, - 0xd0,0x08,0xca,0x29,0x78,0x35,0xa6,0x31,0xaf,0xcd,0x1a,0xfb,0x3b,0x12,0x29,0x41,0x7e,0xe9,0xc5,0x95, - 0x25,0xf7,0x27,0x96,0x5f,0x6d,0x0e,0x5a,0x49,0xa4,0x18,0xed,0xf5,0x85,0x37,0x70,0xb9,0x25,0x88,0xdd, - 0x8b,0xc1,0xb3,0x0d,0xb2,0x19,0xc9,0xfe,0x85,0x17,0x34,0x72,0xdc,0x0b,0x88,0xc5,0xe7,0x78,0x74,0x58, - 0x50,0x97,0x13,0x2c,0x6a,0xc9,0x8b,0x3a,0x96,0x15,0x1e,0xc1,0xc7,0x0b,0x0f,0x91,0x86,0x12,0xa4,0xae, - 0xe5,0x0d,0xda,0x74,0xf9,0xac,0x49,0x22,0x8b,0x27,0xe7,0x46,0xdd,0x46,0xe1,0x8a,0x18,0x6f,0x2b,0x6d, - 0xf9,0x12,0x2e,0xf8,0x0d,0xe5,0xb6,0xd4,0xc6,0x52,0x2a,0xe4,0xbb,0x40,0xa9,0x48,0x7a,0xb1,0xaa,0xfa, - 0x31,0xc5,0x6f,0x2d,0xd6,0x9a,0x1a,0x6a,0xd3,0x08,0x59,0xb7,0x4d,0x50,0x80,0x5e,0xd0,0x84,0xbd,0x48, - 0x8d,0x45,0x3b,0x6e,0xce,0x6e,0x9c,0x98,0x88,0xf4,0x7c,0x63,0x36,0x62,0x9d,0xa9,0x91,0x52,0x6c,0xbd, - 0xd5,0x5a,0x7e,0x1c,0xae,0xdd,0x3a,0x9a,0x22,0x5a,0x7e,0x56,0xe7,0x11,0xa4,0x0e,0xed,0x8d,0x4d,0xde, - 0xc7,0x1c,0x4a,0xd5,0xb4,0xbc,0xb0,0xe8,0x92,0x8d,0xa8,0x79,0x75,0xed,0xdb,0xb2,0x82,0xc3,0xc4,0x8b, - 0x5c,0x56,0x29,0x4e,0xd5,0xda,0xf2,0x63,0x13,0x14,0x0d,0x99,0x38,0xc8,0xf5,0xea,0x63,0x48,0xb5,0xce, - 0xb9,0xf0,0xc6,0x5e,0x29,0x07,0x36,0xb1,0x76,0xd5,0x6d,0xf9,0x91,0xd6,0xde,0x31,0xfa,0x6d,0x86,0x6f, - 0x5e,0xab,0x69,0xa0,0x3a,0x6a,0x55,0xb8,0x7b,0x09,0x63,0x65,0xb9,0x91,0x96,0xad,0xaf,0x5b,0xb0,0x5d, - 0xaa,0x41,0x55,0x93,0xcc,0x3d,0x9d,0x46,0x54,0x0e,0x8e,0x1a,0xa3,0xbf,0x6b,0x1d,0xce,0x59,0x61,0x1a, - 0xda,0x8b,0x6b,0x55,0x8c,0x7e,0xe9,0x4f,0x29,0xee,0x23,0x2f,0xd1,0x10,0xd5,0xb6,0xb1,0x73,0x83,0x69, - 0x05,0x85,0x41,0xdd,0xdb,0x38,0x12,0xf4,0xbc,0x67,0x75,0xe6,0x45,0xad,0x35,0xc8,0x3c,0x59,0xe8,0x6a, - 0x0a,0x31,0x02,0x08,0xa1,0x7e,0x65,0x5d,0x09,0xfc,0xc2,0x96,0x49,0xe6,0x6d,0xa2,0x50,0xed,0x62,0x5b, - 0xb6,0x35,0xec,0x57,0xc1,0x86,0x80,0xec,0xc3,0x73,0x84,0xe8,0x4c,0xd9,0x95,0xb9,0x6a,0x58,0xff,0x34, - 0xce,0x11,0xff,0x5a,0x47,0xd5,0x22,0x5c,0xd8,0x9e,0x1d,0xd5,0x76,0xe7,0x8f,0xc2,0x84,0xf7,0x20,0x72, - 0x39,0x38,0x4e,0xe6,0xd7,0xe3,0x16,0x2d,0xcd,0xc2,0x71,0xb4,0x1e,0xfb,0xe6,0x48,0x04,0x70,0x31,0xa6, - 0xa4,0xba,0x0f,0x30,0x40,0xc5,0x14,0x61,0x42,0x95,0xcb,0xb3,0x4b,0x9d,0x5c,0xed,0x7c,0xea,0x99,0x44, - 0xa2,0x06,0x55,0xe0,0x15,0xd9,0x9c,0x2a,0xf0,0xba,0x8a,0xe8,0xc3,0x9e,0xff,0x9b,0xb6,0x8f,0x18,0xf8, - 0xd2,0xb5,0xc2,0x41,0xe4,0x43,0x6b,0xec,0x57,0xf5,0x1b,0xa5,0x9a,0xab,0xba,0x06,0xd9,0x05,0x5c,0x29, - 0x3e,0xbb,0xe8,0x0f,0x43,0xef,0xc0,0x9d,0xe2,0x6d,0x6e,0x89,0x7b,0x31,0x40,0x80,0x23,0x28,0x05,0xd9, - 0xf8,0x6c,0x2a,0x40,0x2d,0x03,0x85,0xf1,0xa6,0x42,0x6c,0x9e,0x89,0x4e,0x14,0x5e,0xaa,0x5b,0xdb,0x04, - 0x93,0xed,0xab,0x75,0xf2,0x06,0x96,0x05,0x6d,0x37,0x4c,0x82,0xa6,0x6a,0x73,0x4d,0x21,0x98,0xc8,0xa6, - 0xfd,0x7d,0xab,0x02,0xde,0xc6,0xe2,0x2a,0xc2,0x54,0x95,0x11,0xd2,0xa6,0xae,0x5d,0x7d,0x13,0xd1,0x61, - 0x68,0xb5,0xb3,0xe5,0xdd,0x01,0xd0,0x29,0x25,0x08,0xfe,0xa9,0x6f,0xc8,0x29,0xa2,0x65,0x78,0xbe,0x3e, - 0xa2,0xb5,0xf1,0xab,0x23,0x2a,0x69,0x38,0xa2,0x58,0x80,0xbe,0xf4,0x62,0x9f,0xd0,0x52,0x05,0xde,0x45, - 0x31,0x4f,0x47,0xa8,0x82,0x9e,0x37,0x1f,0xa1,0x4c,0x06,0x68,0x6d,0x0f,0xd4,0x9b,0x41,0xbe,0x14,0x12, - 0x90,0x8b,0x60,0x3d,0xd1,0x71,0x36,0x13,0xc6,0xe9,0x39,0xfe,0x65,0x7d,0x17,0x44,0x72,0xdd,0xf0,0x7b, - 0xe9,0xd1,0x39,0x4c,0x6a,0x9e,0x33,0xb5,0x77,0xab,0xb1,0x37,0x38,0x73,0x73,0x59,0x0f,0xc4,0x16,0x4e, - 0x5a,0xbd,0x66,0x1e,0x1a,0xe6,0x8f,0xa8,0x32,0xe3,0xd9,0x93,0x81,0x36,0xb7,0x7f,0x26,0xec,0x5c,0x34, - 0x94,0x48,0x61,0xb8,0xb0,0xb8,0xb4,0xf8,0xf3,0x24,0x00,0x90,0x9f,0x6f,0x98,0xbc,0xf1,0x92,0x16,0x3d, - 0x97,0xbc,0x05,0xa3,0x1a,0x7e,0x71,0x86,0x08,0xc3,0x72,0xa8,0x4a,0x77,0xc1,0xab,0x38,0x0b,0x17,0xd5, - 0x92,0xce,0xc2,0x99,0xf1,0x18,0x40,0x09,0x33,0xac,0x99,0x10,0xb8,0x63,0x34,0xac,0x49,0x89,0xb9,0x65, - 0x3f,0x2a,0x87,0x08,0x6d,0x4d,0x70,0x46,0x19,0xf6,0x67,0xb4,0xb1,0x33,0xda,0x58,0xe1,0xa4,0xaa,0x8d, - 0x9d,0x79,0x3a,0xed,0x64,0x36,0x94,0xb6,0x5b,0x06,0x20,0x25,0x4c,0xf7,0xeb,0xd8,0x4d,0xe4,0x0a,0x19, - 0x94,0xee,0x98,0x4b,0xcd,0xbd,0xc1,0x18,0x0e,0x03,0x2c,0x6a,0x4e,0x7b,0x90,0x2d,0xaa,0x1b,0x40,0x45, - 0x55,0x24,0xf6,0x77,0x4c,0xff,0xcf,0xc3,0xca,0x41,0x8b,0xbf,0x0c,0x21,0x01,0xf0,0xa7,0xf4,0x67,0x3e, - 0xf4,0xcf,0x8d,0xc6,0x36,0x65,0x9d,0x85,0x09,0xb2,0xae,0xe9,0xcf,0xf9,0xd0,0x3f,0x0e,0x77,0x8a,0xfe, - 0xe4,0x11,0xba,0x1a,0x3f,0x0a,0xcf,0xe9,0x6e,0x72,0x97,0xde,0x00,0xd5,0xbb,0xdd,0xc9,0x30,0x88,0x5d, - 0x3a,0xc3,0x68,0x65,0x7f,0x7f,0x3e,0x0c,0x9e,0x52,0xa6,0x7f,0x46,0x87,0xfa,0x06,0x7f,0x41,0x9c,0xe9, - 0x82,0xdc,0x6a,0xb7,0x3b,0x1e,0x7a,0x28,0x34,0xf5,0xaf,0xb9,0x10,0xfd,0x45,0x21,0x5d,0x9f,0xfb,0xdc, - 0xdf,0x3f,0x97,0x42,0x4b,0x55,0x68,0x29,0x85,0x8e,0x37,0xe8,0x80,0xd4,0x5f,0xaa,0x7b,0xd7,0x12,0xc5, - 0xb9,0x53,0x41,0x21,0x55,0xcf,0xb5,0x46,0xa7,0x6a,0x78,0x53,0x19,0x5e,0x5b,0xa3,0xdc,0x80,0x34,0x6d, - 0x0d,0xad,0x1a,0xbf,0x1b,0x8b,0xbb,0x8b,0x51,0xf8,0x2b,0x2c,0xdb,0x27,0xfe,0x1c,0x8a,0x80,0x2e,0x08, - 0xfa,0x33,0x8e,0x4a,0x3a,0x18,0x9d,0xf0,0xc7,0xb0,0xc5,0xcd,0x87,0x21,0xb5,0xc3,0x09,0xd1,0xc2,0x49, - 0x3f,0xd3,0x2c,0x3a,0xd0,0x63,0x36,0xd4,0x3c,0xc2,0xde,0xde,0x53,0xd0,0x39,0x91,0xa1,0xe0,0x33,0xa2, - 0x71,0xcf,0xa8,0x89,0x43,0xf4,0x36,0x88,0xe8,0x3b,0xf3,0xd5,0xfc,0x79,0x5e,0x0b,0x1a,0xe7,0x6c,0xa8, - 0x26,0xb7,0x90,0xc9,0x21,0x45,0xfb,0xb2,0x6d,0x9b,0xe8,0xc2,0x9a,0xa8,0x17,0xd4,0xdb,0xac,0xe6,0xdb, - 0x9f,0x3c,0x9e,0x43,0x75,0x9e,0xa6,0x48,0x00,0xd1,0x3d,0x1a,0x7a,0x12,0x90,0x51,0x7e,0xa8,0x43,0x3f, - 0xf6,0xcf,0x71,0xf0,0xc7,0x8f,0xcf,0xf7,0xf6,0xae,0xdc,0x43,0x5f,0x96,0x65,0xed,0x8e,0x38,0xa2,0x27, - 0x80,0x32,0x60,0xa0,0x05,0x85,0x57,0x91,0x50,0x75,0x71,0x28,0x15,0xc6,0x3d,0x7d,0x41,0x7f,0x99,0xec, - 0x9a,0x63,0xb2,0x15,0x58,0x82,0x28,0x06,0xf8,0x0f,0xd0,0xfe,0x98,0xf2,0xc6,0x55,0xe4,0xc3,0xe0,0xce, - 0x66,0x03,0xc9,0xdf,0xe1,0x78,0x35,0x7c,0xb7,0xb7,0x94,0x53,0xa7,0xcc,0xdf,0x8e,0x19,0xb2,0xa2,0xac, - 0xa3,0x86,0xb5,0x75,0x55,0x9d,0x0b,0x17,0xc2,0xe8,0x15,0x8c,0x27,0x6a,0x99,0xf0,0xd2,0x9e,0xfe,0x6a, - 0xa3,0xac,0xf3,0x3a,0xd9,0x23,0x8c,0x52,0x6e,0xf3,0x47,0x39,0x01,0x47,0x85,0xfd,0xd5,0x4e,0xba,0x39, - 0x7b,0x52,0x35,0x03,0x38,0x6b,0x30,0x9e,0xfe,0x08,0x51,0x9a,0xa2,0x29,0x22,0xab,0x6b,0x7e,0x28,0xaf, - 0xc7,0x19,0x0a,0xb3,0xd5,0x6a,0x46,0x93,0x01,0xd2,0xf3,0x73,0x21,0xed,0x7d,0x41,0xc8,0x9a,0x6f,0x91, - 0x8b,0xcb,0xc6,0xfb,0x06,0x2a,0xdb,0xae,0x09,0x68,0x56,0x13,0xae,0x67,0x40,0x9e,0xa9,0xab,0x9e,0x96, - 0xae,0x9d,0x81,0xcd,0xc5,0x54,0x90,0x12,0x5b,0xb0,0xb6,0x67,0xf1,0xaf,0x58,0x57,0xd3,0xec,0xc8,0x53, - 0x04,0xc1,0xc4,0xe3,0x00,0xd3,0x70,0xe1,0xc5,0x84,0x38,0xa8,0xee,0xc2,0xe5,0x44,0xee,0xd5,0x74,0xa8, - 0xc3,0xc4,0x59,0x23,0x50,0xf1,0x50,0xa4,0xa9,0x88,0x29,0xbf,0x2a,0xd1,0x84,0xdf,0xe0,0x8b,0x43,0xef, - 0xcb,0x1c,0x73,0x03,0x17,0x39,0x49,0xf2,0xa2,0xe4,0x1e,0x09,0xcd,0x1c,0xf6,0x97,0x8f,0x26,0x7a,0xaf, - 0x96,0xda,0xb5,0xdd,0xc5,0x6a,0xb5,0x73,0x46,0xfc,0xe2,0xe4,0x64,0x39,0x54,0x9c,0xe9,0x1c,0x66,0xe4, - 0xc2,0xca,0x5e,0x84,0x17,0xb5,0xf7,0x03,0xd4,0x98,0xaf,0x56,0x17,0xf5,0x8e,0x89,0x8b,0xc1,0x41,0x4a, - 0x3c,0xbd,0x9a,0xb2,0xaf,0x57,0xb6,0x9b,0x95,0x29,0xa4,0x79,0x33,0xcc,0x78,0xe7,0x09,0xe1,0x62,0xef, - 0xf6,0x0a,0x83,0x1c,0xcb,0xdd,0x22,0x9d,0xed,0x5c,0x61,0x83,0x59,0xb3,0x04,0xce,0xe1,0xd4,0xa7,0x76, - 0x33,0x29,0x44,0xc5,0x0e,0x07,0xf4,0xe2,0x83,0xa1,0x08,0x2c,0xf5,0x5b,0x3f,0x7b,0xed,0x48,0x98,0x98, - 0x6b,0xff,0xd8,0xbf,0x84,0x90,0xfa,0x03,0x62,0xc7,0x67,0xe3,0xc5,0x2c,0x2e,0xfc,0x67,0xf4,0x0d,0x1a, - 0xe7,0x8d,0x52,0xfb,0xba,0xa6,0x35,0xb9,0x7e,0x74,0x95,0x54,0x00,0x7c,0xcd,0x64,0xe5,0xe5,0xc9,0x55, - 0x72,0x72,0x3d,0x1c,0xb2,0x13,0x48,0x8e,0xc5,0xfa,0xa1,0x2a,0x72,0x4c,0xe4,0xc5,0x87,0x93,0xe3,0xa1, - 0x2a,0x43,0x3b,0xa5,0x8b,0x0b,0x7f,0x61,0xe7,0xf1,0x85,0xfc,0x84,0xf5,0x46,0xf0,0xae,0x26,0x5a,0x33, - 0x2a,0x78,0xd8,0x33,0xeb,0xfb,0x1d,0x0b,0x5b,0x09,0x15,0xb7,0xb8,0x27,0x54,0xb7,0x25,0xc2,0xb3,0x29, - 0xef,0x4b,0x7c,0x7b,0x8b,0x87,0x18,0xf8,0x53,0x85,0x81,0x36,0xa0,0x0b,0xf6,0x9a,0x0b,0x2c,0x6a,0xe4, - 0x02,0xd1,0xa1,0xbc,0xe5,0x72,0x34,0xc4,0xe1,0xc0,0xe4,0x8f,0xd9,0xe3,0x13,0x6f,0x24,0x63,0x6f,0x6c, - 0x80,0x27,0x34,0xd7,0xd8,0x57,0x61,0xce,0xd1,0xcf,0x9c,0x7b,0x93,0x08,0x6a,0xba,0x1e,0x5c,0xf0,0x10, - 0x0c,0x57,0xfc,0xc4,0x33,0x56,0xca,0xd2,0xd4,0x5d,0x2d,0x1d,0x56,0xdc,0xf0,0xee,0xe9,0x66,0x54,0xe4, - 0x4c,0xda,0x37,0x07,0xe5,0x9c,0x87,0x88,0xfc,0xbc,0xff,0x26,0xcc,0xfd,0x5c,0x3f,0xc7,0x3c,0xd3,0x8f, - 0x50,0xee,0x9b,0x46,0xfc,0x19,0x79,0xa6,0x51,0x92,0x43,0xff,0x8d,0xd8,0xbd,0x5d,0x08,0x31,0x48,0xd7, - 0x5f,0x4d,0x50,0x76,0xc1,0x13,0x94,0x75,0xb8,0xe8,0x9d,0x89,0xc0,0xf6,0x5c,0xee,0x83,0x69,0xe3,0x1e, - 0xbe,0x80,0xda,0x2f,0x11,0x2e,0x1a,0xff,0x69,0x80,0xbd,0x0e,0x75,0x1a,0xc1,0x00,0x28,0xa6,0xfe,0x75, - 0xbf,0xba,0x17,0x3f,0x10,0x58,0x7c,0x68,0xe3,0x5d,0x3e,0x58,0xbc,0xcb,0x87,0xa1,0x7b,0xcd,0x23,0xb9, - 0x16,0x97,0xf7,0x3c,0xd4,0xe3,0xaa,0x91,0x27,0xd4,0xc8,0x93,0x16,0xce,0xf7,0x49,0xc5,0xf9,0x3e,0x61, - 0xce,0xf7,0x5a,0x20,0xe9,0x5d,0x78,0xbd,0x81,0x5b,0xd1,0xfc,0xbb,0x1e,0xab,0x09,0x57,0xb6,0x0e,0xbb, - 0xe1,0x51,0x7f,0xf7,0xd1,0x3b,0x62,0x11,0x8d,0xa9,0xca,0x2e,0x1c,0x4a,0x23,0xe1,0x64,0x77,0xa8,0x69, - 0xef,0xdf,0x62,0x8c,0xef,0x9a,0x5a,0x55,0xd1,0x6d,0xe1,0xd5,0x95,0xef,0x2d,0xb0,0x7c,0x87,0xfe,0xa1, - 0xba,0xb0,0x88,0xff,0x81,0x33,0xe0,0xbc,0xb2,0x11,0x93,0xfd,0x5b,0x78,0x3e,0xcf,0x89,0xb7,0xe2,0x0d, - 0x48,0x7f,0x53,0xce,0xbd,0x55,0x07,0x2d,0x98,0x27,0xbe,0x3a,0x7f,0xc1,0xc9,0x19,0x4d,0x25,0xf1,0x9f, - 0x25,0xfe,0x93,0xc4,0x7f,0x9e,0xf8,0x6f,0xd3,0x81,0x96,0xe6,0xbf,0x2d,0x7d,0x2d,0x58,0xc3,0xb7,0xc0, - 0x53,0xe3,0xf9,0x6f,0x47,0x22,0x7a,0x89,0x79,0xc5,0x45,0x76,0x3d,0xd8,0x2d,0x25,0xae,0x19,0x1c,0x66, - 0xae,0x83,0xdb,0xf5,0x50,0xbb,0x54,0x3e,0x4f,0xe0,0xbf,0xfc,0xbb,0x94,0x68,0x41,0xfd,0xc8,0xb1,0x19, - 0x58,0x44,0xde,0xc7,0xa9,0xf5,0xd1,0x45,0x94,0x4e,0x63,0xc7,0xb6,0x47,0x15,0x2d,0xfc,0xaa,0x32,0x4b, - 0xe9,0x95,0x70,0xad,0xcf,0x4a,0xbe,0x4b,0x15,0x07,0xf1,0x15,0xc6,0xa0,0xf4,0xcd,0xb4,0xd3,0xf4,0x3f, - 0x13,0xb8,0x4f,0xc3,0xee,0xc4,0xe3,0xc6,0x83,0x28,0x84,0x48,0xfa,0x65,0xde,0x84,0x76,0x14,0x9e,0x64, - 0x6f,0x6f,0x87,0xff,0x12,0x23,0xa6,0xf4,0x2b,0x07,0x3f,0xb9,0x88,0x9d,0xa2,0x2f,0xf3,0xda,0x08,0xff, - 0xb4,0x58,0x0a,0xb1,0xe7,0x1a,0x2b,0x51,0xd2,0xda,0x0b,0xde,0x97,0xf2,0x6d,0x7b,0x7a,0x32,0xad,0x12, - 0xbe,0x40,0xc8,0x35,0x31,0x3f,0x31,0x9a,0xaa,0xfe,0x4b,0xf8,0x40,0x12,0xb5,0x05,0x68,0x8e,0x98,0xd1, - 0xad,0x56,0xe3,0xc4,0x95,0xa8,0x71,0xec,0x80,0x02,0x2d,0xbd,0xd2,0x81,0x62,0xc3,0xb2,0x0a,0x1a,0xeb, - 0x5b,0xdf,0xec,0xcd,0x91,0x75,0x8a,0x37,0xd7,0x5d,0x2f,0xf7,0x6b,0x1a,0xd6,0xab,0x74,0x5b,0x21,0xcc, - 0x4d,0xa4,0xb2,0x84,0x22,0xe1,0x9f,0xff,0x3b,0x9e,0xc5,0x47,0x4b,0xf2,0xcb,0x07,0x35,0x8b,0x58,0x3b, - 0x3c,0x52,0xd9,0x24,0xe0,0x21,0xbc,0x09,0x37,0xd7,0x6b,0xe3,0xad,0x9a,0x63,0xaf,0xd7,0xf7,0xc6,0xbb, - 0xdd,0x58,0xcb,0xbe,0x7e,0xb3,0x34,0x2b,0x2a,0x6a,0xd4,0x77,0xaf,0x6f,0x3f,0x69,0x46,0xff,0xab,0x54, - 0x23,0x76,0xa0,0x54,0xce,0xae,0x2b,0xd7,0xb2,0xca,0x5a,0xbd,0x62,0x50,0x8a,0xbd,0xf4,0xd6,0xc0,0x81, - 0x2f,0x30,0x40,0x00,0x7c,0xa0,0x4a,0xf2,0xe3,0x38,0xd1,0x38,0xbf,0xe2,0xc7,0xde,0x1e,0xe5,0xab,0x0c, - 0x60,0x7a,0x0d,0xb1,0x6a,0x17,0xd8,0x3f,0xe3,0xbf,0x08,0x5e,0x25,0x94,0xe7,0x9f,0x89,0x8f,0x93,0x15, - 0x88,0x2e,0x6c,0x73,0x7d,0x94,0xa5,0xb1,0x6e,0x0c,0x9e,0x18,0x7e,0xe6,0xa7,0x51,0xa5,0x5a,0x22,0x6e, - 0x53,0x2c,0x81,0xba,0x0f,0x7d,0xf1,0x33,0x5a,0x99,0x3c,0x99,0xc2,0xff,0xeb,0xf3,0xa4,0x80,0x72,0x64, - 0xe8,0xa4,0xb4,0x0f,0x4a,0xe7,0x8e,0xdf,0x54,0xc7,0x92,0x81,0x28,0xf0,0x8d,0xa4,0x7e,0x4e,0x9c,0xf6, - 0xc0,0x4d,0xab,0x63,0x8f,0x2b,0xee,0x1d,0x75,0x6b,0x9f,0x86,0x46,0xa5,0x30,0x5b,0x7b,0x5e,0xb3,0xa5, - 0x30,0x1f,0x64,0x81,0xf4,0xdc,0xaa,0x5f,0xb0,0x31,0xc3,0x7e,0xde,0x58,0x49,0xf7,0xce,0x09,0x6f,0x0c, - 0x34,0x1f,0xdc,0x35,0xd4,0xb6,0x05,0xa2,0xbd,0xdc,0xbd,0xa3,0x9a,0x9a,0x48,0xeb,0x34,0xdb,0x9a,0x54, - 0x33,0x87,0x6a,0x45,0xda,0xb2,0xb9,0x8a,0x21,0xe0,0xd3,0x78,0xf7,0xf8,0x18,0x6a,0x7e,0x22,0xa8,0x61, - 0xa3,0x30,0x65,0xd9,0x05,0x41,0x73,0x94,0x07,0x4f,0xb3,0x0c,0x2e,0x70,0xfd,0x51,0x51,0x98,0x6f,0x00, - 0x97,0x2e,0x06,0x44,0xa2,0xbf,0xad,0xd7,0x59,0x95,0x62,0xbd,0xad,0xda,0x65,0xf4,0xbb,0xaa,0x5d,0xaa, - 0x91,0xb6,0xf1,0x70,0x6b,0x97,0x6d,0x49,0x97,0xe1,0xb6,0x24,0x6d,0x2d,0xdb,0xe8,0x70,0xbc,0xc8,0xf9, - 0x5d,0x30,0x38,0x11,0x9b,0x36,0x5f,0xa5,0x8b,0x62,0xc7,0x70,0xed,0xff,0xa8,0x17,0xa8,0xf6,0x58,0x2b, - 0x96,0x72,0x3f,0x25,0x35,0xf3,0xb9,0xa6,0x1d,0x98,0xe5,0x3c,0x4d,0xac,0xb8,0xb4,0xf5,0x56,0xdd,0x26, - 0x8c,0x59,0x23,0x82,0x4b,0x3c,0x63,0xc9,0x4b,0x7d,0x7b,0x68,0x3f,0x46,0xe3,0xbf,0x43,0x4a,0x48,0xa0, - 0x5b,0x8f,0xd8,0x2a,0x66,0x51,0x78,0x1a,0x2b,0x4c,0xf4,0x56,0xbb,0x0d,0x11,0xfe,0x87,0x9a,0x2b,0xec, - 0x7b,0x95,0x1f,0x4b,0xeb,0xe1,0xcc,0xd0,0xde,0xb6,0xe9,0x68,0xc5,0x16,0xf5,0x45,0x7c,0xf7,0x5b,0xc9, - 0x9e,0x75,0x88,0xf4,0x1c,0x55,0x59,0xda,0xbf,0x2a,0x53,0x69,0xb4,0x7e,0x3a,0xe7,0x57,0xa0,0xa9,0xc2, - 0x53,0x11,0xd9,0x9d,0xb3,0xb3,0xaa,0xbb,0x7d,0xa7,0x6b,0xdc,0xc9,0x75,0x9d,0x7d,0xa7,0x3f,0x62,0x51, - 0x9c,0x28,0xda,0xf2,0xf7,0x60,0x64,0x85,0x37,0x9d,0x75,0x71,0x49,0xe0,0xd3,0x09,0x66,0xdd,0x11,0x1b, - 0xa2,0xe5,0xee,0x48,0x64,0x20,0x78,0x84,0x56,0xef,0x1f,0x92,0x62,0xcc,0x89,0x66,0xde,0x80,0x53,0xb8, - 0x0e,0xfe,0xf2,0xbf,0x7d,0x21,0xbc,0xa9,0xf0,0x98,0xdd,0x1a,0xa9,0x0f,0x58,0xcd,0x78,0xd6,0x8a,0x84, - 0x4f,0xb5,0x5d,0xd1,0xa4,0x66,0xeb,0x3e,0xc6,0x22,0x4c,0x78,0x11,0xa4,0xa2,0x15,0x69,0x7e,0x6f,0x6f, - 0x23,0x69,0x1b,0xd2,0x77,0x80,0x5f,0x04,0x81,0x02,0xc2,0xf8,0xca,0x18,0xd5,0x30,0x8f,0xe7,0x8f,0x89, - 0xfa,0x51,0x78,0xca,0x2d,0xc3,0x11,0x1c,0xb0,0x8c,0x3d,0x4c,0x61,0x47,0x99,0xea,0xc1,0x88,0x87,0xd6, - 0x82,0x7f,0x0a,0x8d,0xb7,0xf3,0x3b,0xcb,0xed,0xdc,0x9d,0x71,0x9b,0x87,0xd7,0xb6,0x54,0xed,0xd2,0xb3, - 0x62,0xc3,0x3d,0xc5,0x6f,0x8c,0x9b,0x40,0x22,0xd6,0x22,0x0b,0x9e,0xbb,0x93,0x2d,0xca,0xfd,0x84,0xb5, - 0xf7,0xa3,0xba,0xdf,0x06,0x05,0x05,0xc0,0x9d,0x3f,0xb9,0x73,0xdf,0x89,0x26,0x04,0xd5,0x2f,0x45,0xc5, - 0xc2,0x36,0x34,0xb7,0x4a,0x1e,0x11,0x15,0x5a,0xf7,0x63,0xb9,0xf6,0x7c,0x0d,0x3e,0xe8,0x2c,0x49,0xf7, - 0x33,0x31,0x07,0x90,0x27,0xf1,0xdf,0xc1,0x99,0x6b,0x3e,0x8b,0x37,0xf4,0xc2,0xbf,0xaa,0xc5,0x56,0x80, - 0x07,0xf6,0x9f,0xdc,0x85,0xea,0xfe,0x5b,0xd1,0x1a,0xb9,0xf2,0x7c,0x4e,0x13,0xac,0x85,0xd9,0xc3,0x1c, - 0x4d,0xa5,0xcf,0xa1,0x15,0x46,0xa8,0xb1,0x39,0x54,0xda,0x32,0xe2,0xc4,0xd7,0x15,0xe9,0x5c,0x00,0x77, - 0x7e,0x9f,0x60,0x35,0x00,0x88,0x0a,0x69,0xf0,0x6b,0xbe,0x85,0x5d,0x80,0x5e,0xbd,0xbe,0x18,0xf4,0x75, - 0xbe,0x67,0x16,0x56,0x1c,0xb8,0xff,0x83,0x90,0x4a,0xa5,0x4d,0x11,0xfc,0x98,0xf8,0xd5,0xaf,0xef,0xa1, - 0x19,0x1c,0xdc,0x0a,0x86,0xf9,0x3e,0x69,0xc3,0x2a,0x0d,0x8b,0x76,0x46,0x0c,0xb6,0x85,0x88,0xec,0x99, - 0xc4,0xc7,0x9d,0x47,0x29,0x62,0xdf,0xb6,0x3b,0x3b,0xe2,0x4a,0xf3,0x3c,0x5e,0x1a,0x4f,0x85,0x62,0x1d, - 0xaa,0x25,0xcf,0x49,0x1b,0xbe,0x62,0x57,0xaa,0x59,0xbd,0x24,0x98,0xec,0xa8,0x3a,0x2e,0x05,0xf1,0x44, - 0xc5,0x23,0xc3,0x92,0x17,0x5a,0xee,0x38,0x0a,0x93,0x93,0x62,0xd8,0x1f,0x49,0xd8,0x68,0x8c,0x62,0x47, - 0x8e,0xfa,0xde,0x1e,0xd8,0x82,0xf6,0x23,0x4c,0x58,0x63,0x89,0xe7,0x10,0x07,0x40,0x9d,0x19,0x33,0xd1, - 0xf4,0x84,0xcb,0x0d,0x71,0x28,0xee,0x3a,0xc7,0x91,0x07,0xa1,0x87,0xe5,0x40,0x7c,0x86,0x01,0x2f,0x38, - 0x9e,0x09,0x0d,0x75,0x52,0x89,0xbf,0x26,0x7a,0xa8,0xe3,0x30,0x3f,0x99,0x0c,0xfb,0x9b,0x07,0x20,0xf2, - 0x55,0x1a,0x11,0xac,0x74,0x3e,0x40,0xeb,0x4f,0xe3,0xf2,0x69,0xb6,0x60,0x19,0xdb,0xb3,0x59,0x42,0x90, - 0xf5,0x33,0xad,0x35,0x5c,0xaf,0x9f,0x8c,0x79,0x88,0x83,0x99,0x8c,0x7a,0xec,0x05,0x0b,0xfd,0xb5,0x56, - 0xa6,0xb7,0xf3,0x32,0x64,0x85,0x4a,0x08,0x21,0xb5,0x79,0xb4,0x30,0x4e,0xe3,0x70,0x61,0x6c,0xc2,0x75, - 0x89,0x8c,0xae,0x7e,0xdb,0x2b,0xc7,0x86,0xe1,0x75,0xbb,0x87,0x01,0xd3,0x17,0x54,0x38,0x58,0x08,0x66, - 0x39,0xe8,0x30,0x99,0x9a,0xa0,0x1a,0x6f,0x31,0x65,0xb6,0x01,0x45,0x59,0xf4,0xf7,0x0c,0xc8,0x1b,0x97, - 0xfc,0x6c,0xd2,0xe5,0x2c,0x11,0xe8,0x79,0x9f,0x35,0x2d,0xfb,0x9a,0x29,0x56,0x66,0x4c,0x17,0x51,0xf1, - 0x8a,0xd2,0xdd,0x58,0x99,0xe5,0xfb,0xa5,0xd0,0xca,0x5a,0xbf,0xf0,0x17,0xe6,0x11,0xf4,0xaf,0x1f,0x6a, - 0xbf,0xfe,0xd4,0x3e,0xfe,0xe1,0xb4,0x63,0x46,0x38,0xd2,0x70,0x77,0x50,0xcc,0xef,0x65,0x93,0x49,0x11, - 0x97,0x3f,0xc4,0xc9,0xf4,0xa2,0xb4,0x6a,0x35,0x35,0x16,0x65,0xff,0x78,0x8d,0x2b,0x07,0x61,0x18,0x09, - 0x2c,0x2a,0x99,0x70,0xea,0x5f,0x83,0x72,0xa3,0xce,0xf2,0x9e,0x51,0xfa,0x09,0xf3,0x9e,0xa5,0x1d,0xa5, - 0x52,0x2a,0xc0,0x78,0xae,0x28,0x09,0x8e,0x35,0xbd,0xc9,0xe2,0xfc,0x9c,0xc0,0xf5,0x27,0x2f,0x57,0x15, - 0x68,0xb0,0x03,0x79,0xcf,0x2d,0x11,0xc7,0x3b,0x07,0xa6,0x9b,0x5d,0x15,0xaf,0x53,0x82,0x05,0xe9,0x30, - 0x5d,0x70,0xd4,0x96,0x2a,0xc0,0xd8,0x68,0x98,0x15,0x1e,0x74,0xdb,0x0c,0x27,0xc7,0x32,0x7c,0xb6,0x4f, - 0x07,0xd7,0xa4,0x3c,0xb4,0x05,0xb7,0x6a,0xf1,0x1b,0x4c,0x39,0x6e,0xf3,0x97,0x89,0x91,0x07,0x56,0xd7, - 0xb9,0x2a,0x5e,0xc7,0xee,0x2a,0xb1,0xaf,0x57,0x6e,0x84,0xd7,0x32,0x16,0xd9,0x78,0xb4,0xd7,0xd6,0x15, - 0xcf,0x80,0x81,0x2b,0xb1,0x2d,0xb5,0x75,0x77,0x6e,0x4a,0x51,0x84,0xf2,0xfc,0xa9,0xda,0x80,0xb4,0x95, - 0x64,0x36,0xce,0x30,0x6a,0x9a,0x11,0xa9,0x66,0xeb,0x3e,0x88,0x16,0xaa,0x6d,0x48,0x47,0x45,0x6b,0xea, - 0x56,0x1a,0x8e,0xd4,0x64,0x42,0x96,0x89,0x99,0x9d,0x5d,0xc3,0x3c,0xfc,0x5b,0x7e,0xad,0x9f,0x24,0xd3, - 0x9e,0x15,0x10,0x37,0x8c,0x13,0xbf,0xca,0xa8,0x85,0xe2,0x0d,0x17,0xed,0x59,0x90,0xa8,0x85,0xff,0xcc, - 0xad,0xbc,0x46,0x28,0xde,0xf0,0x55,0x5c,0xab,0x58,0x8f,0xdd,0xbb,0x11,0x1a,0xe5,0x6d,0x45,0xaa,0x61, - 0xa7,0x16,0xb0,0x63,0xa8,0xed,0x1d,0x28,0xbd,0xba,0xd8,0x4d,0x50,0xed,0x84,0x5d,0x47,0xea,0x3b,0x13, - 0x3f,0x94,0xcd,0xf1,0x5d,0x66,0x08,0x6c,0x44,0xad,0xb0,0xf1,0xbe,0x03,0x0b,0xed,0x01,0x57,0x67,0xcf, - 0xe5,0x95,0x9d,0xaf,0xd1,0xf4,0x83,0x58,0xbb,0x3e,0x09,0x38,0x42,0xde,0x5a,0xd4,0x58,0x48,0x70,0x9b, - 0x07,0x9b,0xb5,0xd5,0x91,0x28,0xed,0x38,0x4d,0x6b,0x7f,0x09,0xab,0x4a,0xe3,0x43,0xd1,0x90,0x5b,0xc4, - 0x09,0x7b,0xf5,0x3c,0xcb,0x78,0xfd,0x1f,0x09,0x9b,0x4c,0x5a,0x2e,0x4b,0x34,0xc2,0x84,0x46,0xe1,0x0f, - 0x49,0x30,0xad,0x67,0x8b,0xe3,0xb9,0xf6,0x00,0x59,0x31,0xd4,0x85,0xa8,0xd6,0xcf,0x50,0x39,0xd2,0x9e, - 0xe2,0x73,0x84,0x0d,0x0a,0x4b,0x10,0x6a,0x7c,0x17,0xb2,0x27,0x1f,0xf8,0xf0,0x35,0x8a,0x1d,0x72,0xa1, - 0xf3,0x79,0x6e,0xa4,0x85,0x71,0xce,0x7e,0x60,0xd2,0x7a,0x44,0x6c,0xf1,0x5a,0xff,0x2e,0xaf,0xf3,0x92, - 0xa9,0x76,0xe7,0xe4,0x1a,0x7f,0xc3,0xb4,0xd1,0x09,0xad,0xcb,0xd4,0x68,0x12,0xd1,0x48,0x08,0xe1,0x0b, - 0x49,0x9d,0x56,0x9e,0x61,0xd2,0x4d,0x2f,0xdc,0x69,0xcd,0x0b,0x77,0xda,0x37,0x5a,0x21,0x6b,0xac,0x87, - 0xf6,0x43,0xe0,0x5a,0xfd,0xef,0x42,0x15,0x44,0xc2,0x5e,0xef,0xed,0xfd,0x2b,0xc5,0xff,0x3d,0xb8,0xcc, - 0x02,0xa5,0x06,0x05,0xe6,0x6f,0x61,0x8d,0x71,0x28,0x27,0xf2,0xf7,0xc4,0xff,0x27,0x54,0x28,0x6f,0x4f, - 0x6f,0x5d,0x77,0x10,0xf4,0x56,0xa7,0xa9,0xd7,0x1d,0x78,0xa7,0xeb,0xd3,0xf5,0xc1,0xd4,0xff,0x4f,0xe8, - 0xbc,0xef,0xf7,0xbe,0xe8,0x0e,0xfe,0xd8,0xbd,0x5d,0xbb,0xde,0xea,0xe4,0x74,0x78,0x7a,0x70,0x7a,0x3a, - 0xa4,0xbc,0x38,0x6b,0x55,0x5c,0xe7,0xbb,0x43,0xeb,0x6c,0xff,0x67,0xe2,0x3b,0xa7,0xa7,0xbb,0x7b,0x58, - 0x28,0xca,0x39,0x6a,0xcb,0x31,0x0e,0x03,0x68,0x25,0xc5,0x43,0x8a,0x5b,0x76,0x1d,0x35,0x18,0x19,0x8d, - 0xd3,0xa5,0x45,0x98,0x42,0xfe,0xe7,0x97,0x59,0x78,0x2b,0x42,0x7d,0x78,0x33,0x0d,0x4e,0x1c,0x4b,0xda, - 0xef,0x0c,0x7d,0x83,0xab,0x1b,0xc6,0x1d,0xec,0x4d,0xab,0x07,0xf7,0x0f,0x0a,0x37,0xe6,0x22,0xa5,0x11, - 0x33,0xdb,0xbe,0x88,0xb3,0xac,0xa6,0xc2,0x1f,0xdf,0xbd,0x79,0x4d,0x09,0x80,0x68,0xc4,0x6c,0x4c,0x3d, - 0x8d,0xc0,0x52,0xab,0x22,0x5c,0xe2,0x42,0x80,0x02,0x55,0x18,0x24,0x3c,0x4d,0x98,0xd2,0x08,0x73,0x6c, - 0x75,0x9c,0xc2,0x31,0x6b,0x8b,0x8f,0x73,0xc7,0xb1,0x14,0xfa,0xab,0x2e,0xc1,0x46,0x74,0x43,0x7b,0x3e, - 0x81,0xd3,0xad,0x95,0xe8,0x3a,0x3e,0x8c,0x7c,0x6b,0x7d,0xa9,0x5a,0x23,0x53,0xde,0xce,0x94,0x0a,0x25, - 0x11,0xc4,0x69,0xfb,0xb2,0xf1,0xc3,0xc8,0xe7,0x2f,0x1b,0xe3,0xfd,0xc6,0xb2,0x71,0x53,0xcd,0x65,0x7b, - 0x97,0x60,0xe5,0xea,0x4b,0x27,0x95,0xad,0xa5,0xe3,0x84,0xbf,0xba,0x74,0xdc,0x6d,0x6d,0xe9,0x38,0xc5, - 0x5a,0x3a,0xfe,0xad,0x97,0xce,0xee,0xcb,0xd4,0x42,0x79,0x57,0x2a,0x54,0xb9,0x5d,0xd8,0x1a,0xc8,0xe2, - 0xe5,0x19,0x3f,0x31,0xc1,0xde,0x8f,0x6d,0x3f,0x61,0x44,0x99,0xcd,0x94,0x2d,0xa3,0x18,0xec,0x29,0x1b, - 0x4c,0xb1,0x2b,0x4c,0x0a,0x46,0xc9,0x78,0x70,0xa2,0xa9,0x58,0x56,0xa2,0x35,0x83,0x47,0x31,0x8b,0xbc, - 0x3e,0x87,0xaf,0xa1,0x24,0x13,0x4b,0x69,0x65,0xd7,0x08,0xa3,0xcf,0x12,0x06,0x9d,0x5a,0xb8,0x39,0x67, - 0xc3,0x46,0x18,0x05,0xb2,0x79,0xa3,0x18,0x3c,0xe6,0xaa,0x25,0xaa,0x9f,0xc9,0x08,0x5b,0x0d,0x4f,0x65, - 0xc8,0x95,0x89,0x21,0xdb,0x49,0xb6,0x9a,0x53,0xa2,0xdb,0xba,0x3d,0x23,0x5b,0xa0,0x2a,0xf3,0x53,0x6d, - 0x3f,0xb9,0x61,0x87,0xaa,0x2c,0x5b,0xd9,0xb0,0xb2,0xc5,0xae,0x15,0x63,0xd5,0x56,0xaf,0xd2,0x0f,0x2d, - 0x16,0x5b,0xd3,0x2a,0xcb,0x4b,0x18,0xae,0x6a,0x93,0x49,0x5e,0xa6,0xa6,0x11,0xa6,0x2c,0x9b,0x18,0xa5, - 0xaa,0xc5,0x13,0xf3,0x09,0x6d,0x60,0x59,0xd9,0x7e,0x36,0x96,0x88,0xed,0x71,0x69,0xa1,0x78,0xad,0x69, - 0x9d,0xa2,0x2c,0x3c,0xf8,0xe3,0xb4,0xf8,0xc2,0x3d,0xa1,0x7f,0x9d,0x7b,0x8f,0x1e,0x9f,0x1e,0x84,0xc3, - 0xae,0x47,0xb8,0x06,0x89,0xa1,0x87,0x7f,0x07,0x81,0x43,0xd9,0xce,0xf0,0x0b,0x42,0x3b,0xab,0x7b,0xf4, - 0x79,0x8f,0x3e,0xef,0x75,0x57,0xaa,0x4e,0xf8,0xe8,0xf1,0x7f,0x51,0x15,0xcf,0x1b,0x1c,0xd0,0x60,0x42, - 0xe7,0x24,0xda,0xff,0xf3,0xc9,0xfe,0xef,0x67,0xc3,0x93,0xd3,0xd3,0xeb,0xd3,0xd3,0xfd,0xd3,0xd3,0xde, - 0xf0,0x0b,0x87,0x16,0x35,0x64,0x1c,0xe6,0x74,0x8b,0xac,0x4b,0x98,0x2e,0xf0,0x06,0xf2,0xe9,0x39,0xfe, - 0x2c,0x0b,0x2d,0x64,0xe7,0xfc,0xf1,0xc8,0xe9,0x8e,0x32,0xcf,0x5f,0xe8,0xc1,0x9d,0x1e,0x0c,0xbc,0xc7, - 0x07,0xb4,0xa0,0x8d,0x62,0xa7,0xa7,0x07,0x28,0xd9,0x75,0x4e,0xfe,0x78,0x3c,0xfc,0xe2,0x31,0x0c,0x1b, - 0x51,0xe5,0xd1,0xce,0xf3,0x37,0xcf,0x8e,0xff,0xf9,0xf6,0xdb,0x0e,0xd2,0xbb,0x8f,0x0f,0x12,0xff,0x42, - 0xd2,0x61,0xb7,0xb3,0x94,0xcf,0xd3,0x93,0x03,0x62,0x82,0xf1,0x62,0xec,0x7c,0x70,0x0c,0x16,0x3e,0xf8, - 0xe0,0xf6,0x68,0x22,0x53,0xbf,0x7e,0xe4,0xa9,0xa0,0x03,0x76,0xbe,0x54,0x0f,0x2e,0xd3,0xcc,0xbf,0xc9, - 0x08,0x70,0xfc,0xb3,0xcc,0xbf,0xce,0xfc,0xe3,0xcc,0xbf,0xcc,0xfc,0x0f,0x99,0xff,0x2c,0xf3,0x9f,0x64, - 0xfe,0xbb,0xcc,0xdf,0xcd,0xfc,0x37,0x0c,0x82,0xca,0x6a,0x57,0x99,0x43,0xeb,0xb7,0x0e,0xbe,0xf0,0xbe, - 0xcd,0xf0,0x5e,0xfc,0x96,0xfe,0x75,0xf6,0x66,0x65,0xdf,0x09,0x9c,0x47,0x74,0x28,0xf7,0xa6,0xfc,0xf9, - 0x18,0x9f,0x80,0x4f,0xfa,0x71,0xcf,0xb9,0x47,0x3f,0xa2,0xab,0x39,0x32,0xf6,0x90,0xf1,0xb7,0xa3,0x43, - 0x7c,0x9f,0xa6,0xfc,0xe3,0x1b,0xfe,0x2e,0x9d,0xb5,0xff,0x9e,0xe6,0xb6,0x47,0x8b,0x4c,0x9c,0xef,0xb4, - 0x5c,0xa1,0xfa,0x8a,0xaa,0x79,0x7d,0x9a,0xd0,0xf3,0xd6,0xac,0x15,0xb5,0xb4,0xfa,0xdb,0x37,0x5c,0xe2, - 0x05,0x0f,0x18,0xfa,0x0e,0xf5,0x71,0xbe,0xcc,0xb6,0xd0,0x14,0x7b,0x7b,0x2f,0x32,0xf1,0x9c,0x70,0xca, - 0x92,0x95,0x12,0xbe,0x8a,0xfc,0xef,0xb0,0xbe,0xff,0xb1,0xfa,0x63,0xb9,0x9f,0xa5,0xc1,0x81,0xff,0x1a, - 0x3f,0x97,0xfb,0x2b,0x24,0xd1,0xcf,0x57,0xf4,0xd3,0xed,0x7d,0x41,0x17,0x6a,0xd1,0xa5,0xd1,0x24,0xe9, - 0x2a,0x9b,0xf0,0x77,0xef,0x0b,0xef,0xc0,0xff,0x99,0x72,0x7d,0x82,0x2b,0x9f,0xae,0xdb,0x21,0x41,0x19, - 0x95,0xb0,0x7f,0x7a,0x83,0xdd,0x03,0xff,0x37,0x86,0x0a,0x77,0x75,0xea,0xed,0xd2,0xa0,0x9f,0x66,0x6c, - 0x14,0xf6,0x05,0xfd,0xf0,0x7f,0x45,0x4e,0x80,0x9e,0x59,0xe0,0x7c,0xe0,0xff,0x42,0x09,0xa7,0xbd,0x93, - 0x3f,0x7a,0xc3,0x2e,0x15,0xfd,0xa1,0x79,0x3f,0x2b,0x37,0x31,0xbf,0x27,0xe1,0xef,0xc9,0x1d,0xe6,0x49, - 0x5e,0xa5,0x03,0x41,0x44,0xd3,0xef,0x89,0x6d,0x92,0x48,0x97,0xf0,0x9f,0xe8,0xf9,0xc3,0xd5,0x2c,0x2d, - 0x82,0xd7,0xef,0x4e,0xc7,0xdd,0x03,0xff,0x5f,0x48,0xe1,0x6f,0x1a,0xc7,0x4f,0x59,0x78,0x52,0x66,0x74, - 0xe7,0xf8,0xb7,0xb4,0xbc,0xc7,0x1f,0xb9,0x5b,0x44,0x7a,0xa4,0x7d,0x49,0xc8,0x83,0x90,0xe6,0x5d,0xf8, - 0x49,0xff,0x55,0x34,0x67,0x4d,0xc4,0x13,0x67,0xb9,0xcf,0x4f,0x28,0xce,0x10,0x54,0x12,0x7e,0xf2,0xa4, - 0x41,0x09,0x3a,0xc3,0xd5,0x8a,0x52,0xd4,0xb7,0x56,0x08,0x55,0xb7,0x0d,0x27,0x82,0xda,0x92,0x9b,0x6b, - 0xb9,0x9f,0x4c,0x64,0x9b,0xb3,0x30,0x19,0x38,0xd4,0x96,0xd3,0x4d,0x70,0x28,0x03,0xe2,0x0d,0xa3,0x50, - 0x88,0x71,0x5d,0x14,0x8f,0xb8,0x52,0xb8,0xa8,0xa5,0x99,0x36,0x46,0xe1,0x3f,0x98,0x14,0xff,0x11,0xba, - 0x28,0x7e,0xcc,0x3a,0x46,0xdc,0xa1,0x2f,0x0e,0x33,0xce,0xb3,0x0f,0xd4,0xf7,0x4f,0x48,0x87,0xaa,0x3e, - 0x88,0xd7,0x11,0x21,0x68,0x21,0xed,0x46,0xbd,0x64,0x42,0x38,0xc2,0xe9,0xe6,0xd4,0x3f,0x4d,0xff,0x9e, - 0xae,0x72,0xcf,0xe9,0x66,0xfe,0xf7,0xa8,0x74,0x1b,0x7f,0x98,0x07,0x28,0x27,0xf8,0x3b,0x18,0xad,0xb5, - 0xbc,0x56,0xfa,0xa5,0x41,0xcd,0x30,0x28,0x5a,0x5d,0x19,0x50,0xcc,0x09,0x6a,0x08,0x79,0x34,0x4e,0x32, - 0xe9,0x7f,0x86,0xfe,0xab,0x26,0xed,0x5e,0xb9,0x14,0x77,0x29,0x7d,0xcc,0x54,0x1f,0x0b,0xdd,0x87,0x52, - 0xf1,0x29,0x21,0x9a,0xab,0x77,0x45,0x09,0xb2,0xe8,0x30,0x79,0xf8,0x09,0xbf,0x6b,0xbd,0x24,0xaa,0xc5, - 0x05,0x02,0x0b,0x0f,0x46,0x3d,0x2c,0x1d,0xc2,0xce,0x15,0x2c,0x4c,0xc5,0x2f,0x5a,0x80,0x82,0xd6,0x05, - 0x2c,0xdd,0xd0,0xff,0x91,0x30,0x03,0x55,0x23,0x56,0x01,0x60,0x07,0xa9,0xbd,0x7e,0xd7,0xfe,0x29,0xf3, - 0x2b,0x1e,0x22,0x50,0x4f,0x69,0xad,0x4f,0x4b,0x62,0x97,0x23,0xda,0x1c,0x50,0x79,0x64,0xb5,0xb3,0x0b, - 0x7f,0xe9,0x5f,0x99,0x67,0xb5,0x69,0xed,0x4d,0xf5,0x46,0xa0,0xce,0x3f,0xb7,0x00,0x8e,0xdf,0x62,0x25, - 0x00,0x93,0x61,0x4f,0x8c,0xa7,0x26,0x80,0xc1,0x95,0x3f,0xf5,0x7c,0x15,0x64,0xb7,0x7a,0xcf,0xbc,0xf1, - 0x88,0x03,0xf5,0x2f,0xc2,0x2b,0x7f,0x19,0xde,0x63,0x2d,0x81,0x5d,0xed,0x84,0xe3,0xd7,0x68,0xd6,0x09, - 0x3b,0x8d,0xb0,0xea,0xea,0x45,0x41,0xde,0x31,0x77,0xd9,0x73,0xac,0x0a,0xd5,0x68,0xde,0x34,0xcd,0x1c, - 0x33,0x83,0x85,0xb2,0x9e,0x6e,0x74,0xed,0xe1,0x19,0xd4,0xb5,0xcb,0xa0,0xd7,0x25,0xf7,0xe5,0x9c,0x89, - 0xc7,0x17,0x68,0x05,0x65,0x9d,0x01,0x55,0x93,0x84,0x4e,0x40,0x9f,0xea,0xf5,0x4d,0x1a,0xbc,0xd7,0x75, - 0x89,0x12,0x9a,0xf6,0xc4,0x94,0x7e,0xe0,0x9c,0xa5,0x2e,0xe5,0xe3,0x40,0xd0,0x1f,0x88,0x8a,0x08,0x1e, - 0x88,0xa9,0x2f,0x21,0x81,0xd5,0x4f,0xcb,0xcb,0x70,0xd9,0x75,0x3a,0x04,0x33,0xb0,0x84,0x71,0xea,0x63, - 0xd7,0xef,0xaa,0xd4,0x69,0x7d,0x01,0x82,0xfa,0x6f,0x42,0x9e,0x8e,0xd7,0x30,0xac,0xa8,0xa1,0x83,0x1b, - 0x42,0xb4,0xe6,0x14,0xd1,0xef,0x73,0x0f,0x2e,0x92,0x46,0xb4,0xbe,0xb3,0xd0,0x1a,0xb1,0xbf,0xc0,0x49, - 0x2f,0x7c,0xe5,0xe2,0xc6,0x5b,0xad,0x1c,0x34,0xea,0xf8,0x13,0x95,0x0e,0x6f,0x27,0xfb,0x55,0x26,0x7e, - 0x3a,0xfe,0x58,0x65,0x4e,0x22,0x9c,0xe7,0x2a,0x97,0x7f,0x3b,0xfe,0x3f,0x63,0x64,0x6a,0xa7,0x37,0xbe, - 0x53,0x37,0x1d,0xa1,0x4b,0x98,0x0e,0xcf,0xe0,0x2c,0x91,0x2f,0xdf,0xe9,0x2e,0xba,0xcc,0x7a,0x3b,0x5d, - 0x57,0xda,0xa7,0xe1,0x4e,0x06,0x4e,0xa0,0x4a,0xd2,0x5a,0x06,0x67,0xff,0x32,0x85,0x27,0x48,0x82,0x56, - 0x4c,0x29,0x9d,0xc8,0x9a,0x3a,0x02,0x32,0x51,0x28,0xc5,0x76,0xc1,0x9c,0xd6,0x56,0x96,0x92,0x46,0x21, - 0x92,0x7b,0x6a,0x5c,0x03,0x57,0xda,0x42,0x37,0x63,0xfa,0xbb,0x69,0xfc,0x4a,0xcd,0x29,0x74,0xb8,0xbb, - 0xbb,0xa4,0x86,0xdd,0x19,0xef,0xaf,0x8c,0xd7,0x09,0x16,0x1e,0x77,0x94,0x84,0x34,0x13,0x2a,0x4a,0x9f, - 0x4b,0x6e,0xc4,0xee,0x84,0xb8,0xc9,0xdd,0xe4,0xd1,0x21,0x23,0x4a,0x1a,0x17,0x0d,0xc0,0x04,0xd6,0x3e, - 0xa1,0xf2,0x84,0x6e,0x45,0x37,0x8e,0x4a,0xd1,0x02,0xd4,0x8a,0x69,0x77,0x2f,0x94,0xe5,0xe9,0x3a,0x55, - 0x3a,0xa5,0x76,0x8f,0xa0,0x37,0x20,0xf5,0x19,0x98,0x08,0x7d,0xd2,0x24,0x19,0xe8,0x9c,0xbb,0x40,0x43, - 0xb0,0x1b,0xc3,0x85,0x30,0xf6,0x57,0x84,0xd2,0x6d,0xb8,0x88,0xb0,0xc5,0xf9,0x26,0x5c,0xfc,0x93,0x03, - 0x5b,0x55,0x7b,0xcb,0x3b,0x93,0xf0,0xce,0xb8,0x51,0x98,0xa9,0x15,0x8a,0x78,0x85,0x22,0x8f,0xf7,0x0a, - 0x5b,0x95,0x57,0x5b,0x45,0x23,0x85,0x61,0xda,0x47,0x47,0x08,0x48,0xb3,0x54,0x3d,0x6e,0xbc,0x9d,0x56, - 0x84,0xd5,0x44,0x3b,0xf0,0xb7,0xca,0xb1,0x3c,0x32,0xa8,0x62,0x23,0x0c,0x30,0xbc,0x68,0xab,0x19,0x21, - 0x96,0x11,0xcc,0xb3,0xe9,0x10,0xec,0x64,0xbc,0x04,0x18,0x0e,0x54,0xf6,0xe8,0x48,0xd0,0xc0,0xd5,0xf8, - 0x02,0x95,0x01,0xd5,0xb2,0xc1,0x65,0x12,0xa8,0x51,0xd1,0x41,0x69,0x1c,0x55,0x59,0x99,0x3e,0xf0,0x71, - 0x7b,0x9e,0x32,0x06,0x07,0xe1,0x2c,0x65,0x2a,0xe0,0x91,0x4b,0x62,0x12,0xd2,0x5a,0x94,0x78,0x74,0x1a, - 0x51,0x01,0xba,0xce,0x00,0x3d,0xb5,0x76,0x94,0xfa,0x88,0x79,0x77,0xec,0x13,0xcc,0x7a,0xd8,0x83,0x58, - 0xef,0x8c,0x8f,0xdb,0xa8,0x34,0xeb,0x1c,0x13,0xe6,0x9e,0x54,0x62,0x12,0xb7,0x58,0xad,0xd8,0x96,0x90, - 0xef,0xdf,0xf3,0xd9,0x82,0xae,0x1f,0xa7,0xfe,0x1a,0xe5,0xb0,0x15,0x20,0x90,0xb2,0xd9,0x88,0x9d,0xdd, - 0xb4,0x2e,0x00,0x74,0x2b,0x65,0xd5,0x1a,0x0a,0x37,0x0f,0xab,0x4c,0x04,0x6e,0x70,0xbe,0x4b,0x51,0x4c, - 0x90,0xe1,0x5a,0x34,0x10,0xc0,0xa6,0xc0,0xb0,0xa5,0x04,0x0f,0x7e,0xcd,0x4c,0xcd,0xc7,0x9b,0x30,0x54, - 0x55,0x6b,0x03,0x6b,0xe2,0x1c,0xdf,0x12,0xc1,0x14,0xb5,0x79,0x9a,0x00,0xa5,0xaa,0xfc,0x6a,0x41,0x0c, - 0x49,0x6c,0x0f,0xca,0xe5,0x99,0x6f,0x49,0x40,0x83,0x38,0x81,0x1f,0x9d,0xa7,0xf1,0xcb,0x78,0x52,0xbe, - 0x99,0xc7,0x29,0x8a,0x24,0x99,0x5f,0x5b,0x8a,0x60,0x91,0xf8,0x0d,0x29,0x67,0xf0,0x2a,0xf6,0x2d,0xe9, - 0xc0,0x4f,0x19,0x31,0x08,0xe3,0xc5,0xa8,0x5d,0x93,0xa6,0x13,0xeb,0xc3,0xac,0x63,0x5d,0xe9,0x28,0x7e, - 0x1e,0x3b,0x7a,0xe8,0xbd,0xcf,0x12,0x02,0x13,0x1f,0x2b,0xf2,0x7d,0x3b,0x0d,0xda,0x81,0xff,0x16,0x40, - 0x3b,0xae,0x5e,0x86,0x7f,0xc8,0xcc,0x7d,0x7d,0x12,0x7c,0x62,0x4e,0x92,0x54,0x79,0xe9,0xf0,0xcd,0x93, - 0x97,0x04,0x0a,0xea,0xba,0xf1,0x00,0x67,0x35,0x86,0xb3,0x53,0x48,0x84,0xfe,0x61,0x78,0xba,0xd3,0xeb, - 0xdd,0xb3,0x61,0x77,0x75,0x4a,0x24,0xb4,0x37,0xfc,0x62,0x70,0xea,0x81,0x9f,0x0b,0x1f,0xaf,0xfe,0xd0, - 0x23,0xa0,0x9f,0xa7,0xee,0x81,0xff,0xbb,0xaa,0x71,0x42,0x7c,0x1b,0x71,0x6f,0x67,0xbb,0x43,0x54,0x1d, - 0x82,0xf5,0x23,0xf2,0xb9,0x91,0xb8,0x3a,0x3d,0xb9,0x47,0x04,0xfc,0xbd,0x21,0x7d,0x38,0xf4,0xe1,0xe0, - 0x83,0xe8,0x5c,0xfc,0x69,0x96,0x1d,0x7a,0x5f,0x50,0xb3,0x44,0x9a,0xff,0x13,0xb4,0x4c,0x31,0x0a,0xee, - 0xff,0x1d,0x3e,0x8a,0x82,0x6f,0x44,0x7b,0x22,0x38,0x7a,0xe0,0xcb,0x7a,0x3f,0xb8,0xef,0x2f,0xe6,0xc1, - 0x83,0xaf,0x89,0x05,0x9e,0x94,0xc1,0x83,0xbf,0xfb,0x39,0xde,0x45,0x82,0x07,0xdf,0xf8,0xf0,0x6b,0x1d, - 0x3c,0x3c,0xf4,0xe5,0x69,0x32,0x38,0xf9,0xda,0x7f,0xf8,0x15,0x71,0x19,0xff,0x99,0xb5,0xb9,0xdb,0x02, - 0xca,0xe9,0x02,0x78,0x2c,0x57,0x58,0x7d,0xe2,0x8b,0xe2,0x08,0xd2,0x1e,0x82,0x07,0x7d,0xa8,0xf1,0x03, - 0x00,0x12,0x4d,0x23,0x91,0x11,0xf6,0xa1,0x28,0xc1,0x79,0xa6,0x8c,0xfa,0xfd,0x5c,0x9e,0x12,0xb9,0x08, - 0x42,0x8c,0x05,0xff,0x99,0xb9,0x75,0xdc,0xd0,0x21,0x8c,0xd3,0x51,0x29,0xa3,0x45,0x8e,0x4d,0x3a,0xe6, - 0x0c,0x3a,0xc0,0xa3,0x32,0x9f,0x71,0x8d,0x1d,0x5d,0x80,0x12,0x7e,0x82,0xe2,0xad,0xcf,0xce,0x40,0x6b, - 0x79,0x9c,0x22,0x99,0xd1,0xac,0x9e,0x45,0xbf,0x25,0x03,0x02,0x81,0x5a,0x0e,0x12,0x24,0x8b,0xd7,0x0e, - 0x59,0xf7,0xc4,0xd9,0xd3,0x3d,0x10,0x3b,0x52,0xaa,0xb3,0xb7,0xa7,0x47,0x28,0x79,0x3c,0xe6,0x43,0xb4, - 0x97,0x8c,0xc7,0xb3,0xf8,0xb3,0xaa,0x1d,0xb1,0x43,0x34,0xec,0xcf,0xe7,0xd4,0xba,0x0f,0xf8,0xc7,0x83, - 0x27,0xb1,0x85,0x4d,0x37,0x2b,0xf0,0xee,0x56,0x05,0xa8,0x6b,0xd9,0xd8,0xb3,0xa9,0x6c,0xac,0x5f,0xc3, - 0x10,0x84,0x20,0x36,0x54,0x8b,0x74,0x73,0x1c,0x09,0xaf,0x32,0x02,0xaa,0x5a,0x3a,0xa7,0x96,0x52,0x6a, - 0xe9,0x1e,0x04,0x5c,0x74,0xde,0xba,0xe0,0xae,0xab,0x56,0x71,0xeb,0x59,0x04,0x31,0xfc,0x17,0x55,0x5a, - 0x86,0x78,0xe6,0x1a,0x08,0x45,0x13,0x28,0xd2,0xc8,0xfb,0x48,0x71,0x0e,0x25,0xed,0xf8,0xaa,0xbc,0xe3, - 0xa9,0x31,0x8f,0x66,0x59,0x74,0x89,0x20,0xb9,0x69,0x8b,0x17,0xd3,0xcc,0x38,0xbf,0xe4,0x9f,0x10,0x35, - 0xd2,0x9d,0x88,0x3f,0xab,0xd5,0x3f,0x54,0xa2,0x91,0x4e,0x16,0xe1,0xef,0xb0,0xb1,0xd4,0xfa,0xe6,0x8e, - 0xc9,0x40,0x94,0x22,0xed,0x93,0x1d,0x2f,0x88,0xdf,0xc7,0x29,0x82,0xf1,0xd5,0x4b,0x2b,0xb1,0xa2,0x29, - 0x67,0x58,0x8a,0x70,0xe9,0xb2,0xee,0x44,0x19,0xb1,0xc5,0xb3,0x49,0xf7,0x4c,0x60,0xae,0x1a,0x02,0x5d, - 0xad,0x2e,0xd3,0xbe,0x72,0x77,0x7c,0x73,0x1e,0x9b,0x98,0x8a,0x2d,0x1b,0xb9,0x63,0xac,0x73,0x95,0xaf, - 0xcb,0x74,0x14,0xbf,0x80,0x11,0x16,0xff,0x6a,0xc6,0x0e,0x84,0xdb,0xed,0x3c,0x0a,0x5d,0x5b,0xea,0x73, - 0x7a,0x7a,0xee,0x74,0x9d,0x31,0xe1,0xf0,0x09,0x24,0x6c,0x04,0xf4,0x25,0xde,0x1c,0x68,0x91,0x6f,0xd8, - 0xdf,0xda,0x08,0xd2,0x3d,0x5c,0x7b,0xfe,0x75,0x52,0x5e,0xf8,0xd1,0x75,0x94,0x94,0x3e,0xeb,0xfb,0xfb, - 0xec,0xd9,0x5c,0xe9,0xc4,0xf3,0x03,0x8f,0xcf,0x8e,0x48,0x7d,0x0e,0x32,0xef,0x5f,0x13,0x5a,0x8d,0xfd, - 0x1b,0x88,0xf5,0x14,0xb2,0xf1,0x89,0xfb,0xca,0xe0,0xc4,0x90,0x1d,0xac,0xf8,0x32,0x03,0xed,0xd8,0x4b, - 0xbb,0x53,0x14,0xd7,0x9f,0xc4,0x9a,0x48,0xbc,0x79,0xf6,0x6d,0x96,0xa4,0x0b,0x78,0xe4,0x39,0x5f,0x4c, - 0xa7,0x90,0x03,0xaa,0x55,0xa8,0x62,0xa8,0x38,0xca,0xfd,0x0c,0xee,0x04,0x75,0x3b,0xd0,0xb4,0x56,0x98, - 0x9a,0xd7,0xe5,0x19,0xca,0x3b,0x4a,0x63,0xce,0x32,0x28,0xf1,0x21,0xca,0x7a,0xe9,0xad,0xed,0x10,0x4a, - 0x07,0xc2,0x3f,0x3d,0x25,0x94,0x4f,0xff,0x54,0xad,0x36,0x32,0x10,0x00,0x6e,0xb7,0x29,0xda,0xa9,0x2c, - 0x6c,0xb7,0x1a,0x84,0xb2,0x17,0x60,0xc2,0x8d,0x08,0x6c,0x1c,0xee,0x1c,0x79,0xfe,0x71,0xa6,0xf6,0x94, - 0x6d,0xbf,0x20,0xc6,0xb6,0x62,0xb0,0xf4,0xd3,0x47,0xd7,0x99,0xed,0x77,0xe5,0x3a,0x63,0x13,0x5b,0x18, - 0xf7,0x4e,0xb3,0xb0,0xac,0x20,0xfb,0x18,0xbf,0xf4,0x7d,0x0f,0x90,0xf2,0x2f,0x91,0x62,0xdd,0xe6,0x9c, - 0xf8,0x01,0x89,0x8d,0xeb,0x9a,0x33,0xce,0x33,0x80,0x77,0xd9,0x72,0x18,0x5e,0xcb,0x61,0x38,0x6b,0x16, - 0x68,0xca,0x62,0xa8,0xcc,0xf5,0x46,0x99,0xac,0x28,0x9b,0x85,0x6e,0x30,0x04,0xda,0x8d,0xe4,0x2a,0x29, - 0x11,0xdf,0xd0,0x70,0xda,0xa2,0x5a,0xb2,0x73,0xc4,0x1a,0x4e,0x08,0x5a,0x8e,0x13,0xf2,0xdb,0x05,0x95, - 0xe2,0x61,0xfa,0x58,0x2f,0xd0,0xaa,0x47,0x1b,0x46,0x17,0xcd,0x45,0xa6,0x5f,0x8b,0x6e,0x48,0xd0,0x05, - 0x8d,0xd5,0xc5,0xb9,0x3c,0x20,0xb8,0xb6,0x41,0x74,0xae,0x5d,0x04,0xb0,0xc1,0xbe,0x5f,0x54,0x01,0xe9, - 0xc5,0xbb,0xec,0xc2,0x53,0x8f,0x69,0x78,0x53,0xc8,0xf1,0x53,0x76,0xac,0xf1,0xdc,0x4a,0xc9,0xac,0xc5, - 0x9f,0x84,0x51,0x15,0xa5,0x3e,0x79,0x1c,0x1e,0x22,0x16,0x41,0x32,0xec,0xcd,0x74,0x51,0x1c,0x74,0x9a, - 0x17,0xf5,0xb3,0xbf,0xaf,0xe9,0xca,0x90,0x1f,0x75,0x51,0xda,0xb2,0xad,0xb4,0x1b,0x1a,0x3d,0x0e,0x93, - 0xfe,0x88,0x2a,0x94,0x3d,0x76,0xa0,0xc2,0x7f,0xd8,0x8d,0x3a,0x0b,0x19,0x30,0xfe,0xbe,0x2e,0x1e,0x62, - 0x01,0x13,0xee,0x76,0xff,0x88,0xf3,0x99,0x11,0x72,0xce,0x73,0x50,0x79,0xc5,0x80,0x89,0xab,0x9c,0x7d, - 0xd1,0xf3,0x07,0xcd,0x9f,0x96,0x7b,0xe7,0x50,0x9c,0x1e,0x38,0x73,0x2e,0xc5,0x61,0x13,0x5a,0xcb,0x1d, - 0x71,0x39,0xbf,0x36,0x10,0x59,0x41,0x5a,0x54,0xed,0xf7,0x00,0xc2,0x12,0x6c,0x22,0xf4,0xcc,0x2b,0xd1, - 0x0b,0x6d,0x59,0xd9,0xab,0x68,0x4c,0x86,0xb6,0x19,0xde,0x93,0x1b,0x94,0x25,0x67,0x2c,0x68,0x51,0xe2, - 0x3e,0x4b,0xf2,0x12,0x42,0xe2,0xc4,0x96,0xbc,0xc9,0x5c,0xed,0x7f,0x43,0x4c,0x4e,0xb3,0xc6,0x8b,0xf7, - 0x3c,0xfc,0x36,0x3b,0x19,0x23,0xee,0x13,0xff,0xad,0x09,0xb9,0x89,0x88,0x3b,0x2d,0x4e,0x4f,0xdf,0x11, - 0xf9,0xe6,0xb9,0x8f,0x0e,0x98,0xb1,0x15,0x69,0xb7,0x47,0xa7,0x3e,0x01,0xdb,0x0c,0xc3,0x2b,0x2d,0xbf, - 0x9e,0xdb,0x82,0x6b,0x06,0x0f,0x0d,0x69,0xc6,0xc8,0xd5,0xa7,0xf1,0x8c,0x99,0xfb,0x53,0x2e,0x25,0xb1, - 0x70,0x88,0x22,0x9c,0x86,0x95,0x6f,0xa9,0x03,0xc8,0xca,0xa9,0xef,0x42,0x7a,0xde,0xdf,0x7f,0x7c,0x30, - 0x25,0x36,0x83,0x6e,0x7e,0xbb,0xc8,0xe9,0xc9,0xb3,0xe7,0x4f,0x8e,0x9f,0x9c,0x9e,0x54,0x25,0x87,0x43, - 0x53,0x12,0x92,0x63,0x77,0xec,0x8b,0x1b,0x65,0x68,0xab,0x28,0x77,0x4c,0x1c,0x02,0xef,0x22,0x92,0xcb, - 0x92,0x3f,0xa0,0xe2,0xe0,0x40,0xae,0x42,0x30,0xaf,0x35,0x70,0xf6,0x2f,0xf4,0x78,0xe3,0xf0,0xc2,0xcf, - 0xa9,0xa1,0xc5,0xfe,0x04,0x01,0xa6,0x8d,0x89,0xd1,0x32,0xb4,0x9e,0xfa,0x1f,0x09,0xbb,0x0f,0xed,0xca, - 0x25,0x2f,0xfe,0x45,0xa6,0xa3,0x64,0x69,0xe3,0x30,0x5b,0x31,0x60,0xff,0xf4,0xc3,0x83,0x58,0xaa,0x5c, - 0x31,0xf8,0x96,0x2a,0xfa,0x22,0x02,0x50,0x28,0xcd,0x42,0x15,0xf5,0x40,0xf9,0x22,0xa9,0x4e,0xe1,0x43, - 0x1f,0x66,0xb4,0xa9,0x7b,0xd5,0x7d,0x40,0x6c,0x9e,0x42,0xf7,0x6b,0x68,0x6d,0x2d,0x1b,0x7d,0x4e,0xed, - 0x3e,0x87,0x8f,0xa5,0xbf,0x29,0xf7,0x97,0xba,0xd3,0xee,0x7d,0xbb,0x3a,0xca,0x43,0xf8,0xc6,0x9e,0x67, - 0xdd,0x79,0xc6,0x65,0x6f,0x50,0xf0,0x06,0x0f,0xc8,0x3a,0x5a,0xa1,0xa9,0x80,0xf2,0xe7,0xa6,0xfc,0x44, - 0xca,0x9f,0x4b,0xbf,0x67,0xe1,0xa2,0x9f,0xba,0xe7,0x56,0x3d,0x5a,0xc0,0xf3,0x93,0xa3,0xa1,0x7f,0xc6, - 0xac,0xa9,0xdd,0xc6,0x75,0x33,0x02,0x4a,0x69,0x1a,0x9d,0x49,0xa3,0xa5,0x25,0x4b,0x0c,0x6f,0xb5,0x43, - 0xbf,0x12,0xcd,0x31,0x07,0x12,0xe0,0xc0,0xe0,0xa4,0x05,0x0b,0x09,0x6d,0x49,0xe8,0xcb,0x1e,0xf2,0x0e, - 0x5b,0xe8,0x4b,0x93,0x8b,0x4c,0x82,0x8a,0x9a,0x84,0x88,0x12,0xfa,0x5e,0xea,0x26,0xf6,0x60,0x33,0xe5, - 0x16,0x92,0xf5,0xcf,0xc4,0xca,0xcf,0xb8,0xe5,0xca,0x7a,0x0b,0x9c,0xc3,0x77,0x74,0x8b,0x5f,0xb0,0x83, - 0x36,0x58,0x65,0xd6,0x2b,0xc3,0x97,0xf9,0xc2,0x87,0x65,0xb0,0x18,0x43,0x79,0xb7,0x3b,0xcd,0x97,0xd3, - 0x94,0x26,0xb3,0x60,0x2f,0x38,0x6a,0x3e,0x74,0x2c,0x63,0xab,0x65,0x96,0x01,0x08,0x4e,0xa1,0x13,0x9c, - 0x65,0xee,0x84,0x86,0x9d,0xd3,0x39,0xf6,0x67,0xfc,0x99,0x41,0xa0,0x85,0x94,0x89,0x57,0x5d,0x77,0xf3, - 0x70,0x44,0xbf,0x57,0xab,0x9d,0x9d,0x31,0x1f,0x4a,0x99,0x84,0x82,0xe2,0x25,0x1f,0x6b,0x11,0x43,0xd1, - 0x28,0xaf,0x08,0x4d,0x5c,0x3d,0xba,0xe8,0x5f,0x69,0x25,0xbe,0xa9,0xae,0x70,0x72,0x35,0xec,0x5f,0x51, - 0xa7,0xfb,0x30,0x85,0x9b,0x62,0x66,0x1a,0x84,0xee,0x39,0xce,0x3d,0xac,0x1e,0x3f,0x45,0x4d,0x4f,0x1e, - 0x0c,0xf7,0xf6,0x94,0xc2,0x26,0x7e,0xf8,0x2a,0xf9,0xa1,0x9d,0xfc,0xd0,0x24,0x7f,0x69,0x27,0x7f,0xa9, - 0x4c,0x05,0x6f,0xb8,0x99,0xd5,0x0a,0x05,0xf1,0xef,0x97,0xf4,0xaf,0xe3,0xf8,0xe7,0xa1,0xc3,0x42,0x1a, - 0x9a,0xa1,0x03,0xdf,0xcc,0xd2,0xc2,0xd1,0x70,0xa0,0x4f,0xc9,0xf3,0x18,0xfe,0x72,0x5f,0xc7,0xd7,0xf0, - 0x77,0x5a,0x7c,0x97,0xe5,0x3f,0x50,0xa9,0xa0,0x3d,0xb7,0xbf,0xa4,0x19,0x29,0xc5,0x74,0x34,0xe2,0x33, - 0xa1,0x1d,0x10,0x4a,0xb8,0x41,0x24,0x2e,0xf8,0x1d,0x18,0x3c,0xcf,0x82,0xf7,0x99,0xe5,0xda,0x6e,0xe1, - 0xb7,0xf0,0xc8,0x6f,0x33,0x76,0x2f,0xef,0xad,0xd7,0x44,0x09,0xc0,0xb9,0x3f,0xa0,0x83,0x75,0x5a,0x27, - 0x7e,0xed,0x9a,0x0a,0x26,0x0d,0x04,0x2b,0x60,0xba,0x84,0x6b,0xfa,0x70,0x02,0xf4,0xd3,0xb8,0x21,0x88, - 0x9a,0xf2,0xe7,0xfc,0x18,0x4e,0xbf,0xe0,0xe1,0x26,0x1d,0x7b,0x6b,0x82,0x1b,0x20,0xb0,0xcc,0x8f,0xd9, - 0x15,0xc3,0x51,0xf3,0xb0,0x1e,0x6b,0x13,0xf2,0x4b,0xfd,0xf1,0x41,0x7d,0x00,0xe8,0x96,0xe6,0x52,0xbc, - 0x34,0x8e,0x9e,0x97,0x38,0x0b,0x13,0x85,0x23,0x2e,0xe1,0xd6,0xd5,0xfa,0xbe,0xb0,0xbe,0x97,0xd6,0xb7, - 0xfb,0x21,0xbc,0xb4,0xd1,0x9c,0x4f,0x08,0xf4,0xd1,0x21,0x9d,0x99,0x65,0x37,0xfc,0xe0,0xd7,0x1a,0x3f, - 0xae,0x11,0x0b,0x87,0xfe,0x12,0x58,0x6a,0xe9,0xad,0x97,0x2c,0xae,0xa4,0x5c,0x42,0xa5,0xb0,0x24,0x37, - 0xe8,0xf7,0xb8,0xc2,0xc0,0xc7,0xac,0x76,0x0a,0xbf,0x42,0x09,0x90,0x61,0x03,0x3f,0xc7,0xda,0x64,0x76, - 0x9d,0xbb,0x2c,0x5c,0x92,0xc0,0x21,0xd3,0xcc,0xb7,0x1e,0x28,0x6a,0x57,0xa6,0x25,0x92,0xb1,0xef,0xce, - 0x4d,0x69,0xcc,0xe6,0x35,0xea,0xb7,0x41,0xd1,0x16,0xe0,0x6a,0x2d,0xfb,0x71,0x78,0x54,0xb9,0xfe,0x06, - 0xbe,0x0f,0x0c,0xba,0x2f,0x14,0x3e,0xb3,0xee,0xd2,0x08,0xd6,0xb0,0xf2,0x0c,0xc4,0x31,0x97,0x10,0x28, - 0xe4,0x03,0x5e,0x3f,0xfb,0x2f,0xe1,0xe5,0x1d,0x2e,0xb4,0x69,0xed,0x16,0x88,0x7c,0x50,0x63,0x7b,0x2a, - 0xfd,0x67,0xc2,0x92,0x42,0x0f,0xc7,0x36,0x39,0xac,0xa5,0x9e,0x08,0x88,0xfa,0x67,0xa6,0xd5,0x29,0x53, - 0xa5,0x46,0x29,0x5f,0xa1,0xfc,0x31,0xa7,0xe3,0x5f,0x99,0x2f,0xdb,0xc8,0x27,0x00,0x04,0x8c,0x89,0xa4, - 0x07,0x77,0x31,0x22,0x88,0xb4,0x5e,0x7a,0xfe,0x55,0xf2,0x04,0x08,0x91,0x62,0x7c,0x57,0x34,0x76,0x90, - 0x83,0x3b,0xca,0xb5,0x3e,0xfb,0x5a,0x9c,0x84,0x57,0x9e,0x68,0x3a,0xeb,0x27,0x6b,0x24,0x4f,0x44,0x33, - 0x7b,0x52,0x17,0xc9,0xd2,0x74,0x21,0xf9,0x3b,0x78,0x1f,0x2d,0x23,0xbb,0x6c,0xad,0x10,0x8d,0x1e,0xe1, - 0x69,0x3d,0xee,0x90,0x16,0xe1,0x9c,0x7d,0xc4,0x73,0x6c,0x4a,0x63,0xa1,0x4d,0xab,0x31,0x7d,0x74,0x66, - 0xb8,0x83,0x29,0x2d,0xc7,0x55,0x78,0x96,0x9d,0x4c,0x87,0x2e,0x34,0x6d,0x57,0x2b,0x76,0xba,0x02,0x75, - 0x5d,0xf3,0x0c,0xb9,0x0c,0xaf,0xf0,0xe8,0x06,0xd1,0x1f,0x9a,0x5e,0x82,0xca,0x66,0xe3,0x83,0xab,0x8a, - 0x25,0x39,0xf4,0x98,0x27,0xb9,0xb2,0x78,0x12,0xbc,0x58,0xb6,0xc6,0x35,0x36,0xb2,0x36,0xe3,0x04,0xd3, - 0x0e,0xd9,0x68,0x5e,0x5d,0x2d,0xdc,0x5d,0x6a,0xef,0x34,0x65,0x3f,0xa7,0x01,0xc3,0x77,0x8f,0x42,0x6e, - 0x56,0x6b,0x94,0x28,0x61,0x4a,0x04,0xd7,0x35,0x94,0x80,0x1a,0x05,0x25,0x3a,0xe9,0x5a,0xfb,0xd9,0xa4, - 0x79,0xb0,0x55,0x14,0xcb,0xfc,0x42,0x0e,0x23,0x7c,0xe5,0x05,0x57,0xd5,0x5b,0x29,0xe5,0xfe,0x58,0x52, - 0x5a,0x4b,0x3c,0x59,0xeb,0x4d,0x57,0x5d,0xdd,0x31,0x1e,0x55,0x4b,0x3c,0x42,0xc6,0xf2,0x08,0x59,0xaa, - 0x47,0xc8,0x78,0xad,0x4c,0xaf,0x5b,0x9e,0x78,0x45,0xc9,0x59,0x3d,0x4f,0x7a,0x35,0x4d,0xa7,0xea,0xc1, - 0x57,0x6b,0x3b,0xa9,0x77,0x4b,0xb8,0xd9,0xc5,0xa0,0x4c,0x73,0x17,0xb2,0x55,0xe0,0xf0,0xb9,0xc1,0x0b, - 0x66,0xf6,0x79,0x2f,0x7e,0x2a,0x79,0x83,0x69,0x25,0x07,0x7a,0xf7,0x57,0xab,0x9c,0x46,0xca,0xd0,0x22, - 0x0d,0xd2,0xee,0xf3,0x17,0x55,0xfd,0x1e,0x8f,0x0d,0x3c,0x78,0x9d,0xa9,0xe6,0x70,0xb5,0xf6,0x82,0x9c, - 0xba,0xa1,0x13,0xb9,0x63,0x41,0x19,0x4c,0x86,0x36,0x9a,0x19,0x53,0xb9,0xf9,0x96,0xa3,0x69,0x4e,0x24, - 0xc7,0xd7,0xd3,0x66,0xe8,0x31,0x87,0xd6,0x03,0x2c,0x6b,0x39,0x2f,0x25,0xf4,0x69,0x63,0xb2,0x39,0xec, - 0x7f,0xdd,0xca,0xd3,0x0d,0x91,0xf0,0x7b,0x7b,0x73,0x1e,0xff,0xf7,0x78,0x17,0xe4,0xb1,0x8e,0xeb,0x63, - 0x1d,0xaf,0x2b,0x69,0xfc,0x55,0x0f,0x56,0x0a,0xec,0xf5,0x8b,0x43,0x89,0xcb,0x4e,0x1f,0xa9,0x2b,0x59, - 0x72,0x45,0x82,0xb8,0x5a,0xdd,0x73,0x94,0xa4,0xc1,0xb9,0xd7,0xa7,0x2e,0x6b,0x61,0xde,0xea,0xbf,0xd9, - 0x94,0xe0,0xe4,0x66,0x18,0x5e,0x89,0xb5,0x75,0x35,0x3e,0x41,0x14,0x57,0x7c,0x4a,0x54,0x58,0xb6,0xfe, - 0x6c,0x90,0x02,0xae,0x5c,0x7e,0x27,0xd2,0x05,0x10,0x5c,0x2c,0x6d,0xd1,0xa9,0xcf,0x4e,0x32,0xc3,0xd4, - 0x0d,0xfd,0xd2,0xf2,0x8b,0x75,0xb2,0xe1,0x0c,0x8b,0x4a,0xf4,0xe9,0x6e,0x7d,0x10,0xb2,0x99,0x8f,0xe0, - 0x8b,0x8e,0x23,0xbf,0xd8,0x8f,0xc2,0xce,0x08,0x5a,0xd6,0xd5,0xd8,0xb0,0x9c,0xbe,0x69,0x3f,0x3c,0x22, - 0xaa,0xa0,0xde,0x5f,0x2a,0x9e,0xb6,0x71,0x13,0xd5,0xde,0x01,0x74,0x44,0xb1,0x97,0xa9,0xfd,0xb8,0x24, - 0xae,0x4c,0x80,0xb7,0x92,0x0a,0x25,0xcd,0x2b,0x3f,0x1c,0xb0,0xe9,0xf6,0x8c,0xb9,0x9b,0xed,0xaf,0x88, - 0xae,0xbf,0x11,0x82,0x3d,0xca,0x23,0xcf,0xc0,0xa9,0xd8,0x23,0xa2,0x60,0x13,0x4f,0x9b,0xa9,0x30,0xd2, - 0x64,0x37,0x05,0xb0,0xa5,0x8e,0x83,0x1f,0x70,0x0d,0x04,0x6c,0x9d,0x29,0x63,0x1e,0xd0,0x7c,0x21,0xee, - 0xc3,0xd8,0x0a,0x9e,0xfd,0x0e,0xbb,0xeb,0x73,0x9b,0xca,0xb9,0x72,0xb0,0x6e,0xb2,0x41,0x9c,0xb9,0x37, - 0x99,0x17,0xfc,0x33,0x61,0x2e,0xbe,0x62,0x22,0x8c,0xbf,0x37,0xdf,0x62,0x4d,0xe9,0x9f,0x11,0xbc,0xf6, - 0x46,0x45,0xf9,0x02,0x74,0x01,0xb0,0x11,0xc7,0xee,0x89,0x47,0xb8,0x8f,0xbc,0x5b,0xda,0xd3,0x5c,0x48, - 0x06,0xef,0x31,0x9e,0xa1,0x14,0x21,0x9d,0x19,0x5a,0x61,0x04,0xc3,0x5c,0x5f,0x51,0x50,0x0d,0xe4,0x94, - 0x69,0xf5,0xc4,0x59,0xf8,0x7d,0xec,0xda,0x1e,0x90,0xfb,0xaa,0x82,0x3c,0xd4,0xcc,0xe4,0x81,0x4a,0xb5, - 0x7d,0xeb,0xfc,0xc7,0xb9,0xa8,0x09,0x3a,0x50,0x98,0xa0,0x01,0x26,0x5d,0x8b,0x2a,0xd7,0x17,0xd4,0xe8, - 0x51,0x65,0x60,0xd1,0x32,0xac,0x8f,0x0e,0x8a,0x4f,0x15,0xd4,0xf9,0x60,0x86,0x14,0x29,0x71,0x17,0x94, - 0x12,0xcb,0xec,0x32,0x4e,0x8b,0x00,0x76,0x4e,0x58,0xb4,0x41,0xaa,0x29,0x43,0x18,0x7e,0xde,0xf7,0xad, - 0x5a,0x4c,0xa1,0xa8,0x1f,0xba,0x1a,0x14,0xb5,0xf1,0x21,0xef,0x5d,0x84,0x15,0x03,0x81,0xd6,0xb8,0xda, - 0x4f,0x0d,0xc0,0xe9,0x89,0x05,0xe3,0x0c,0xcc,0xb0,0x68,0xb3,0x3a,0x7b,0x60,0x1a,0x51,0x51,0x92,0xd9, - 0x06,0x7c,0xc3,0x33,0x7c,0xf3,0x60,0xd6,0x2b,0xfb,0xc6,0xb4,0x2d,0xd8,0x39,0x64,0xa3,0x08,0x3f,0x87, - 0x57,0x35,0xd9,0x05,0x44,0x2c,0x56,0x02,0x26,0x48,0x8a,0xaf,0x92,0x3f,0x63,0x96,0xef,0xb0,0x16,0x37, - 0x5c,0xeb,0xb8,0xcf,0xb2,0xf0,0xfb,0x8c,0x28,0x07,0xfb,0x29,0x0a,0xe4,0xc2,0x93,0x0c,0x50,0xd1,0x94, - 0xdb,0x9a,0x4b,0x04,0x86,0x3b,0xe2,0x3d,0x46,0xd5,0x0c,0xef,0x83,0x30,0x18,0x85,0xa5,0xa7,0x4e,0xb1, - 0x8b,0x23,0x3d,0xe2,0x1f,0xc4,0xe3,0xb8,0x3b,0x23,0x75,0xe5,0x8e,0x60,0x8e,0xa0,0x94,0x44,0xa9,0x2f, - 0xa8,0xe7,0xe0,0xdf,0x09,0x82,0x7c,0x2d,0x53,0x97,0x2d,0xa8,0xc0,0x15,0x3d,0xc9,0xcc,0xf7,0xa6,0xc1, - 0xa7,0x31,0xf7,0x64,0x15,0x28,0x1d,0x09,0x42,0xf9,0x81,0x36,0xce,0x82,0xb8,0x7a,0xcd,0x7c,0x00,0xdd, - 0x54,0xd6,0xa0,0xc6,0x4b,0x0c,0xc1,0x12,0xf5,0xa8,0x2c,0xc9,0x10,0x34,0x90,0x12,0x7a,0x08,0x0d,0x73, - 0x43,0xeb,0xe3,0x01,0x9a,0x8e,0x0c,0x7e,0x12,0x4b,0x05,0x1a,0x9d,0xb6,0x4a,0x74,0x80,0x7f,0x1d,0x6d, - 0xa6,0x28,0xc6,0x5f,0xf8,0xa1,0xb1,0xc9,0x89,0x93,0xa4,0x20,0x25,0xf7,0xcd,0x30,0xb5,0xa5,0x82,0x2d, - 0xf9,0x84,0xcd,0xda,0x86,0xa3,0x40,0x1d,0x86,0x5a,0xa4,0x76,0x56,0x01,0xd0,0x7f,0x70,0xb4,0xe2,0x27, - 0x6a,0xf9,0x61,0xa4,0xa4,0x77,0x62,0xe7,0x88,0xa9,0x73,0x22,0xa4,0x27,0xcf,0x32,0x5a,0x67,0x7e,0x21, - 0xa8,0x02,0x8d,0x12,0xca,0x44,0x64,0x51,0x3b,0x53,0xf7,0x97,0x3d,0x8a,0x2a,0x57,0x5a,0x45,0xa3,0x10, - 0x5c,0x27,0xf1,0xe5,0x44,0x3d,0xc3,0x12,0x6e,0x4b,0xcf,0x0c,0xca,0xa3,0x35,0x84,0x34,0x36,0xb0,0x28, - 0x07,0x06,0x8d,0x75,0x34,0x55,0x61,0x45,0x91,0x89,0xbb,0x3f,0x93,0xf6,0x22,0x25,0xe2,0x3b,0x4c,0x15, - 0x07,0x46,0x09,0xc2,0x61,0xd4,0x96,0x88,0x8a,0x0b,0x78,0x37,0xd2,0x57,0xab,0x07,0xb5,0x64,0xf6,0xd3, - 0xce,0x3e,0x22,0x14,0x6e,0x01,0xef,0x65,0x7a,0x82,0x03,0x62,0xa6,0x5d,0x2c,0x80,0x96,0xb4,0x23,0xbf, - 0x6a,0xc3,0x2c,0x21,0x51,0x74,0x7e,0xd2,0xb2,0x5d,0xf9,0xa3,0x84,0xa9,0x3c,0x88,0x84,0x2d,0xdf,0x8e, - 0x7e,0x0a,0x26,0xbf,0x64,0xd8,0xeb,0xff,0x7b,0x1b,0x13,0xbb,0x5b,0xf6,0x84,0xe3,0x16,0xb8,0x29,0xd4, - 0xc2,0x15,0x42,0x26,0x44,0x99,0xba,0x49,0x15,0xb2,0xfc,0x96,0x2e,0x80,0xc0,0x18,0x5d,0x66,0x3a,0x40, - 0x6d,0xe3,0x11,0x85,0x32,0x1a,0x29,0xeb,0x7a,0x48,0x3f,0xb3,0xa7,0xa5,0x6b,0xa9,0x61,0xd4,0x8d,0x30, - 0x63,0x28,0x0c,0xb2,0x29,0xa5,0xf8,0xfe,0xc9,0xe5,0x5d,0xaa,0x7e,0x9b,0xb9,0xe5,0x20,0x0b,0x12,0x4f, - 0x7b,0x3d,0x5d,0xa3,0xb1,0x54,0x4b,0xd2,0xd9,0x6b,0x8f,0xfa,0x0e,0xab,0x47,0x28,0x7e,0x25,0xd7,0xcf, - 0xe7,0xa6,0x30,0xc4,0x6b,0x35,0x3b,0x65,0x38,0x88,0xb4,0x5f,0xa7,0x1a,0xa3,0xb3,0x32,0x09,0x23,0xb3, - 0xc1,0xa8,0x5d,0xdf,0x12,0xd1,0x44,0x78,0xa5,0x4c,0x3d,0x47,0x75,0x84,0x43,0x4e,0x17,0x77,0x15,0xb3, - 0x4d,0xa7,0xd0,0xc5,0x17,0xc1,0xfd,0x7d,0x34,0x14,0x4c,0x5e,0x84,0xbb,0x19,0x47,0x38,0xd7,0x92,0xfb, - 0xa2,0x17,0xe7,0x79,0x46,0x9c,0x41,0x42,0xe7,0xa6,0x4c,0xe6,0x45,0x98,0xf9,0x85,0xc2,0x3f,0xb7,0xd0, - 0xf1,0x48,0x66,0x71,0x50,0xfa,0xea,0xeb,0x38,0xfb,0x4e,0x2d,0x55,0x01,0xc1,0x07,0x35,0xd4,0x6a,0xe5, - 0x5a,0xd3,0x88,0x49,0xb0,0xa2,0x62,0xc3,0x4c,0xa4,0x32,0x2f,0xb8,0x7a,0x97,0xea,0x58,0x16,0x08,0xf5, - 0xa7,0x88,0x81,0x32,0x39,0xb2,0xd3,0xbc,0x2e,0xb1,0x26,0xbc,0x69,0x70,0x8a,0xa6,0xb5,0x17,0xe1,0x53, - 0x4f,0xb9,0xd7,0xe3,0xdd,0xf3,0x41,0x3e,0xd2,0xb5,0x4d,0xfb,0x6b,0x66,0xa8,0x23,0x24,0x23,0x92,0xa2, - 0x02,0xae,0x51,0x85,0x26,0xaa,0x67,0xba,0xa8,0x99,0x52,0xd7,0xc3,0xab,0x24,0x38,0x13,0xf4,0x35,0x82, - 0x8e,0x02,0xfa,0x0f,0x0b,0xba,0xdd,0xb4,0xf5,0xce,0xda,0x73,0x7f,0xcc,0xbc,0xde,0xe6,0x7a,0x11,0xe4, - 0x45,0xe1,0xce,0x0e,0x3c,0xd5,0x8f,0x53,0x17,0xef,0x4d,0x99,0xfd,0x9b,0xb8,0x89,0x28,0x6a,0xb5,0xbb, - 0x61,0x53,0x27,0x63,0x58,0x07,0x4c,0x63,0x94,0x4d,0x68,0x00,0x45,0x14,0xb6,0x18,0x4f,0xe9,0xe2,0x77, - 0xdb,0x55,0x01,0xd5,0xb1,0x51,0x15,0x77,0x03,0xc5,0xd1,0x9a,0x79,0x27,0x91,0x91,0x76,0x92,0xfe,0xd0, - 0x41,0x96,0x37,0x63,0x86,0xd6,0xa2,0x89,0xb3,0xcb,0x02,0x1d,0x71,0xda,0xa8,0xef,0xf6,0xf4,0x75,0x23, - 0xf2,0x50,0x56,0xb6,0xe4,0xed,0xae,0x02,0x0b,0xe6,0x9e,0xf3,0x37,0x21,0x4d,0x4d,0x54,0x04,0xa6,0x0e, - 0xa2,0x08,0x62,0x02,0xe3,0x6a,0x6b,0xc7,0xf2,0xcc,0x65,0x0f,0x25,0x67,0xba,0x51,0x2f,0x92,0xf0,0xa3, - 0x5c,0x7f,0xc3,0x2a,0x35,0x5b,0x94,0x35,0x8f,0x70,0x1d,0x2b,0xe9,0xe3,0x86,0x7a,0xa2,0x4f,0x6d,0xf6, - 0xa5,0xe1,0x2e,0xba,0xb2,0xcf,0x64,0x36,0xde,0xde,0x33,0x2c,0xb3,0xcc,0x5c,0x5d,0x9e,0x39,0xdc,0xe4, - 0xdd,0xb6,0x0a,0x8b,0x92,0xe8,0xa3,0x82,0xa1,0x0c,0x71,0xaa,0xf4,0xf9,0x08,0x52,0xeb,0xb0,0x68,0x7a, - 0x0d,0xa9,0xfa,0x73,0xad,0x82,0xb8,0x43,0x03,0x4d,0x1d,0x03,0xe8,0xa0,0x35,0x60,0xbe,0xaf,0xf7,0x2b, - 0xcc,0xd8,0x10,0xb4,0x71,0x44,0x2a,0x73,0xfc,0x48,0xc5,0xe1,0x86,0x93,0x0d,0x7e,0x06,0x15,0x7b,0x4a, - 0x86,0x7b,0x9a,0x13,0xfd,0x5a,0x7b,0x0d,0xf3,0x03,0x47,0xe2,0x83,0x59,0x61,0x5f,0xf9,0x61,0x1a,0xbc, - 0xc5,0x22,0x95,0xe8,0x8d,0x63,0x42,0x5c,0x2a,0x53,0x70,0xdb,0x40,0xfe,0xf4,0x54,0xd1,0xb0,0x74,0x5b, - 0x03,0xc8,0x4a,0x6d,0x88,0x86,0xf1,0xb7,0x17,0x5d,0x8d,0x07,0xf2,0x49,0xd4,0x60,0x10,0xf7,0x7e,0x5d, - 0xc4,0x2f,0x8e,0xbe,0x4e,0x51,0x7b,0xdd,0x08,0x30,0x4d,0xc3,0x5a,0x10,0x80,0x00,0x04,0x69,0x68,0x7d, - 0x8b,0x34,0x90,0x31,0xb7,0x8c,0x0c,0x8f,0xee,0x19,0x5b,0x27,0xa9,0x2f,0xc6,0x63,0xae,0x73,0xb2,0x5c, - 0xc4,0xfb,0x09,0xf5,0x33,0xec,0x38,0x5d,0xb8,0xd1,0xde,0xdb,0xab,0x15,0xe0,0x1b,0x7c,0x74,0x69,0x3b, - 0xd2,0x2e,0x1b,0x01,0xef,0x84,0xc3,0xda,0x5c,0xa8,0xaa,0x86,0x8d,0x88,0x96,0xca,0x59,0x12,0xce,0xed, - 0x55,0xed,0x4d,0xb5,0x11,0x45,0x0f,0x61,0xf4,0x4c,0xec,0x08,0xab,0xb1,0xc4,0x8e,0xfd,0x2d,0xa2,0x3d, - 0xf3,0xba,0x6f,0x68,0x3d,0x08,0x13,0x20,0xd8,0xab,0xb2,0x40,0xe5,0xa9,0xd3,0x0c,0x7d,0xbe,0x84,0xff, - 0xe8,0xb3,0xc0,0x32,0x07,0xcd,0x42,0x96,0x6c,0x73,0x4e,0x44,0x6c,0x5d,0x81,0x95,0x13,0x07,0x09,0x1b, - 0x15,0x06,0x1b,0xc7,0x3f,0xe6,0x18,0xf2,0x78,0x6e,0x41,0xb1,0xe0,0xbe,0xd5,0x20,0x0b,0xf6,0x3e,0x5a, - 0xdc,0x77,0xd1,0xe7,0x51,0x5b,0x9f,0x94,0xa8,0x5e,0x6d,0xf8,0xd3,0xbf,0x25,0x02,0x25,0xa2,0xfb,0x2d, - 0x17,0x4b,0x24,0x3a,0x6f,0x96,0xb7,0xcf,0xac,0xb2,0xd3,0xc6,0x8e,0xa8,0x4e,0x0d,0x0c,0xc4,0x35,0xdd, - 0x2c,0xa3,0x6f,0xc0,0x9e,0x9b,0x94,0x36,0xc3,0xca,0xb2,0x81,0xe4,0xbb,0x52,0x0b,0x03,0x68,0x95,0x11, - 0x84,0xb0,0x17,0x9d,0xf3,0x93,0x61,0x76,0x52,0x86,0xf7,0x59,0xa9,0x93,0x86,0x96,0xd2,0xb2,0x3c,0x3e, - 0x1a,0x1c,0x05,0x87,0xc1,0x51,0x90,0x0e,0xb8,0xdc,0x55,0x02,0xf7,0xbf,0xf7,0xbd,0xe0,0x70,0x38,0xc8, - 0x58,0x9a,0xc3,0x3c,0x54,0x60,0x6d,0x64,0x64,0x6d,0x39,0x33,0x9d,0x1c,0xbf,0xbb,0xc9,0x7f,0xd6,0x7c, - 0xb8,0x17,0xb6,0xf0,0xc8,0xda,0x77,0x73,0xa9,0x0b,0xb9,0x44,0xfc,0xc9,0xa3,0x0d,0x98,0x48,0x34,0x2d, - 0x9e,0x49,0x6c,0x1d,0x7e,0x34,0x54,0xa1,0x47,0x32,0xed,0x66,0x22,0x34,0x01,0x32,0xd4,0x7b,0x02,0x3a, - 0x63,0xca,0x25,0xf3,0x46,0x84,0x5e,0x66,0x61,0xe4,0x4f,0x05,0x82,0xe1,0x74,0x91,0x5d,0x89,0x66,0x20, - 0x55,0x06,0x4c,0xb5,0x14,0x4c,0xbc,0xf8,0x9c,0x12,0x70,0x0a,0x7f,0x2a,0x3a,0xde,0x37,0xf0,0x96,0xd7, - 0xe3,0x0d,0x30,0xf1,0xb7,0x60,0x6f,0xd9,0xf0,0xd8,0xac,0x7c,0xbb,0x99,0x22,0xb3,0xca,0x57,0x2f,0x8f, - 0xdf,0x8f,0xfa,0x0b,0x8e,0xed,0xc0,0xee,0x80,0x10,0x90,0xd9,0x78,0xa2,0xf7,0xb3,0xde,0x99,0x40,0x08, - 0x3c,0xa0,0xf4,0x76,0x71,0xb2,0x7b,0x92,0x50,0xf9,0x65,0xee,0xc0,0x90,0x37,0x17,0x9f,0xb0,0xd8,0xc3, - 0xca,0x4e,0x5c,0xb1,0x46,0xbc,0xc3,0xf0,0x22,0x29,0x1e,0x7c,0x12,0x22,0xb9,0x33,0x5d,0x08,0x02,0x3f, - 0x5a,0x2e,0x45,0xed,0xa4,0x5e,0xe5,0x53,0x87,0x4a,0x97,0xf9,0x8d,0x5a,0xbe,0x66,0xe4,0x23,0x22,0x72, - 0xea,0x49,0xd2,0x36,0xd1,0x7b,0x85,0x81,0x4a,0xad,0x8d,0x10,0x9a,0x07,0x73,0x08,0x02,0x84,0x75,0x34, - 0xb8,0xcf,0x0e,0x1e,0x0c,0x56,0x28,0xe7,0x60,0xca,0xd2,0xd8,0x6a,0x55,0x54,0x2c,0xaa,0x68,0x44,0xd8, - 0x7c,0x28,0x8d,0x62,0x56,0x4b,0xa8,0x68,0xca,0x51,0xd5,0xf7,0xcc,0xf4,0x3d,0xda,0xe8,0xdb,0xea,0x39, - 0x25,0xa0,0xd6,0x4e,0xdc,0xd6,0xac,0xde,0x54,0x69,0xba,0x11,0x17,0x4c,0xfc,0x83,0x32,0xf2,0x48,0x8d, - 0x57,0x31,0x70,0xdf,0x95,0xe2,0x43,0x15,0x16,0xc2,0xa2,0xfd,0x8d,0xeb,0x39,0x03,0x29,0x83,0x1d,0x22, - 0x19,0x78,0x1f,0x21,0x9a,0x76,0x9d,0x34,0x2b,0xe9,0x0e,0x4a,0x8a,0xb2,0xa3,0x2e,0x88,0x4e,0xa2,0xfc, - 0xf3,0x00,0x4a,0x29,0xcd,0xfc,0x76,0xa0,0x55,0xcc,0xbe,0xa1,0xeb,0x95,0xea,0x15,0x70,0xe3,0x77,0x54, - 0xa7,0x52,0xc3,0x0e,0x09,0x51,0xd6,0xc0,0x4e,0x8c,0x59,0x68,0x77,0x64,0x66,0x8b,0x70,0x03,0xb1,0x11, - 0x3c,0xce,0xbc,0x41,0x14,0x66,0x81,0x38,0x03,0x85,0x16,0x7b,0x8f,0x03,0x2f,0x16,0x40,0x25,0x0c,0x88, - 0x44,0xea,0x66,0x3d,0x3a,0x9e,0x74,0xaf,0xdf,0x22,0x2b,0x88,0x7c,0x85,0xd4,0x60,0x2e,0x3a,0x2d,0x60, - 0x5a,0xe4,0x4f,0xc2,0x85,0xd4,0x1b,0xd3,0x87,0xaa,0x37,0xa7,0x4f,0x14,0x60,0xbf,0x55,0xab,0xd5,0x78, - 0xb5,0x9a,0x83,0x14,0x9b,0xc8,0xf8,0xf8,0xc1,0xc5,0x9f,0xfa,0x37,0x90,0x2b,0xaa,0x45,0x2c,0x7b,0x67, - 0xcb,0x52,0x49,0x3f,0x75,0x14,0x3b,0x77,0x1a,0xde,0xc8,0x82,0x7a,0xbd,0x52,0xc5,0x1c,0x99,0xfa,0x27, - 0x13,0xe3,0x51,0xd2,0x5d,0x86,0x73,0xff,0x0a,0x37,0x8b,0x7b,0x11,0xc2,0x47,0xd2,0x95,0xf0,0x55,0x17, - 0x9e,0xbf,0xa4,0x19,0xd5,0xc1,0x78,0xc9,0xee,0xdf,0x97,0x5e,0x55,0x6c,0xe9,0x41,0x49,0x01,0x04,0x94, - 0x3e,0x89,0x37,0xb5,0x73,0xa8,0x88,0x3b,0xd7,0xd1,0x81,0x73,0x3b,0xff,0x85,0x89,0xfe,0x17,0x76,0x63, - 0xb9,0x5f,0x76,0xaa,0x20,0xd6,0x4a,0x6a,0xad,0xf6,0xaf,0x58,0xcc,0x41,0x4e,0x74,0xc4,0x76,0x46,0x6c, - 0xc9,0x6a,0x81,0x36,0xf8,0x40,0x57,0x37,0xa6,0xb0,0x63,0xf8,0x52,0x67,0xc2,0xa1,0xfd,0x71,0x8c,0x1a, - 0x21,0xa8,0x54,0xa8,0x2a,0x32,0xa5,0xda,0x17,0xcd,0x3a,0x00,0x38,0x94,0xf8,0x3a,0xdf,0x1c,0x05,0xf2, - 0xf7,0x81,0xfc,0x7d,0xf8,0x95,0xfc,0x7d,0xf0,0x50,0xfd,0xfd,0x46,0xa5,0x7f,0x1d,0x98,0xc0,0x60,0x52, - 0xe1,0x4b,0x55,0x40,0x55,0x78,0xf8,0x65,0xa0,0xf5,0x83,0xc7,0xd0,0x55,0x97,0x52,0x0f,0xee,0xab,0xe6, - 0xe5,0xcf,0xd1,0xa1,0xfa,0xab,0x7a,0x3b,0xfa,0x4a,0x25,0x7c,0xf5,0xe5,0xfd,0xbf,0xab,0x32,0x5f,0xdf, - 0xd7,0x95,0xe8,0xeb,0x81,0x6e,0xf4,0xba,0x70,0xcc,0x03,0xdc,0xe3,0xf0,0x9b,0xbf,0x13,0xab,0xf1,0x28, - 0x3c,0xba,0x7f,0x7f,0xb5,0xa2,0x9f,0x5f,0x7d,0xc9,0x3f,0xbf,0x39,0x1c,0xa8,0xce,0x03,0x4a,0x7c,0xf8, - 0x0d,0x27,0x7e,0xf9,0xf7,0x81,0x23,0x96,0x0c,0x4e,0xe0,0xf0,0xc3,0x4b,0x4b,0xa0,0x10,0xe5,0x2b,0x2f, - 0xd4,0x02,0x40,0x1d,0xdc,0xde,0x39,0x74,0x76,0xac,0xd0,0xc2,0x87,0x90,0x77,0x25,0xc5,0xeb,0xe8,0xb5, - 0x84,0x4c,0x83,0xc4,0xda,0xff,0x4e,0xbd,0x27,0x7a,0x03,0xc2,0xb1,0xc4,0x4c,0xc2,0xec,0xc4,0x5e,0x71, - 0x4f,0x49,0x54,0x4c,0x52,0x69,0xe4,0x9b,0xd4,0xdc,0x83,0x87,0x3b,0xac,0x4c,0xf6,0xe0,0x1b,0xfc,0x1d, - 0xe0,0x7d,0x54,0xa9,0xf0,0xf8,0x70,0x2d,0xee,0x7c,0xe1,0x74,0x13,0xe5,0x15,0xd7,0x5f,0x6a,0x94,0x56, - 0xb1,0x4d,0xda,0xff,0x05,0x41,0xb1,0x73,0x22,0x74,0x59,0x47,0xb9,0xaa,0x73,0xfc,0xe9,0x66,0xf9,0x8b, - 0xa8,0x78,0x73,0x9d,0xea,0x48,0x77,0x74,0x82,0xda,0x28,0xc8,0x17,0x69,0x39,0xb3,0xa2,0x75,0xe1,0x67, - 0xef,0x39,0x42,0xcb,0x24,0x57,0x31,0x51,0xf7,0x57,0x51,0x09,0xe5,0x85,0x4f,0xac,0x28,0x6e,0xf4,0x54, - 0xb5,0xb3,0xf0,0x56,0x1c,0x59,0x3c,0x6b,0x44,0x89,0xac,0xf9,0x15,0xb2,0x39,0xb4,0xb8,0x87,0x03,0x15, - 0xca,0x1f,0x7e,0xb2,0x3b,0x3b,0xc3,0xe7,0xe0,0x76,0x1d,0xe8,0x90,0x40,0x7c,0xc2,0x6f,0x4d,0x61,0x83, - 0xf5,0x68,0x44,0xaf,0x54,0xba,0x54,0xf2,0xf4,0xad,0x85,0x48,0x87,0x7d,0x9d,0xda,0xea,0x78,0xa6,0xa4, - 0x1b,0xbe,0xf4,0x2d,0x62,0x25,0x66,0xb5,0x7f,0xfb,0x4e,0x29,0x5b,0x42,0x20,0x4a,0x4c,0x51,0x34,0xca, - 0xce,0x7b,0x5f,0x32,0x1e,0x78,0x15,0x17,0x45,0x34,0xc5,0x55,0x5c,0xca,0x15,0xa6,0x6e,0x11,0xea,0x46, - 0xbc,0x3e,0x9d,0x59,0x73,0xf4,0xab,0x94,0xdf,0x50,0x2a,0x56,0x5e,0xb9,0x64,0xa8,0xd7,0x48,0xc2,0x5d, - 0x00,0x9d,0x62,0xd7,0xb3,0x0a,0xb3,0x52,0xc2,0x28,0x4f,0xce,0x63,0x64,0x3d,0x83,0x51,0x0e,0x0b,0x29, - 0x98,0xab,0x92,0x62,0xba,0x84,0x78,0x62,0x5b,0x57,0x01,0x31,0xd4,0x12,0x8a,0x64,0x9a,0x77,0x20,0xcf, - 0xb2,0x52,0x47,0x99,0xc7,0xb7,0xe0,0xb5,0xcd,0x94,0xda,0x5a,0xf3,0x4b,0x25,0x8f,0x05,0x05,0xc2,0x66, - 0x59,0xb5,0x53,0x58,0xb4,0x2b,0x8e,0xea,0xbb,0x51,0xa2,0xca,0x32,0x65,0x89,0xfe,0x3a,0x27,0xae,0x44, - 0x16,0xb2,0xa5,0x42,0x2d,0x5f,0xd7,0x2a,0x88,0xcb,0x4b,0x45,0xa3,0x74,0xc6,0xa6,0x07,0xbf,0x41,0x90, - 0xb6,0x51,0xb9,0xb5,0x18,0x7b,0xd5,0xad,0x43,0x4b,0x7e,0x27,0xb4,0xe4,0xa0,0x07,0x37,0xa1,0xc5,0x80, - 0x02,0xef,0x7f,0x11,0xe6,0xed,0x1b,0x8f,0x77,0xef,0x57,0x7a,0x13,0xfe,0xdb,0xf6,0xdf,0xb7,0x6e,0x10, - 0xb5,0x6c,0x37,0x29,0x3f,0xcd,0x99,0x1f,0x4c,0xf5,0x8a,0x03,0x3f,0x5e,0xdf,0xda,0x80,0x76,0xab,0x01, - 0xc9,0xea,0xbb,0xda,0xac,0xae,0xf3,0x6f,0xc0,0xd0,0xc0,0xb5,0x16,0x66,0x03,0x82,0xfe,0x8d,0xe9,0x82, - 0xd1,0x96,0x07,0x0e,0x3c,0x8c,0xaa,0x68,0x08,0x6a,0x44,0xf5,0xdf,0x4d,0x98,0xae,0x1d,0x51,0xbb,0xe0, - 0xbf,0x35,0x1c,0xed,0xb7,0xed,0x79,0x33,0xa6,0xac,0x76,0xdc,0x26,0x43,0x73,0x37,0x2a,0xd7,0x46,0xd4, - 0x5b,0xa4,0x1f,0xeb,0x59,0x8b,0x32,0x9b,0x6d,0xb4,0x40,0x59,0xad,0x59,0x95,0xe6,0x36,0x5a,0xb0,0xb2, - 0x74,0x0b,0x35,0xc0,0x68,0x07,0x97,0x66,0x2b,0xb5,0x4c,0x7b,0x24,0x12,0xe3,0x6d,0xbd,0xf6,0xaf,0xb5, - 0x8b,0x55,0xa4,0x56,0x6e,0x17,0xa3,0x19,0xec,0xb3,0xc5,0x11,0x22,0xab,0xa4,0xdd,0xda,0x6e,0x67,0xd5, - 0x0b,0x7e,0x20,0x2e,0x0e,0xd7,0x1c,0x3e,0xbc,0x5e,0x42,0x93,0x61,0x78,0xf2,0xd3,0x84,0xa8,0x5d,0x60, - 0xed,0xf3,0x0b,0x76,0xa1,0x12,0x4f,0x98,0xee,0x33,0x9e,0x5f,0xd7,0x1b,0x9e,0x17,0x6b,0xd4,0x3c,0x0f, - 0x0b,0xc2,0x06,0x89,0x75,0x81,0x90,0xaf,0x95,0x0d,0x19,0xf2,0x2d,0xc0,0x91,0xe0,0x17,0x6e,0x26,0x82, - 0xf9,0x3b,0x7d,0xbc,0xaa,0x18,0x6e,0xa1,0xfc,0x31,0xb1,0x72,0x89,0x84,0x37,0x6e,0x36,0xb3,0xbe,0x08, - 0xd0,0x73,0x21,0xa5,0x11,0x7a,0x43,0x91,0xd2,0x33,0x88,0x9c,0x17,0xc8,0xe0,0xb9,0xb1,0x99,0xe7,0xa4, - 0xc1,0xa1,0x2d,0xbc,0xc1,0x42,0x47,0xe8,0x3d,0x0c,0xec,0x3b,0x6e,0xe1,0x99,0x74,0xd6,0xa9,0x6e,0xb0, - 0x49,0xb6,0xff,0x3c,0x1c,0xa3,0x2a,0xda,0x78,0xa5,0xfd,0x63,0x45,0x20,0xe7,0x21,0x68,0x7e,0xa7,0x0a, - 0x52,0xbe,0xb7,0xe7,0xf0,0x43,0xe0,0x7a,0x5d,0x05,0x4a,0xd8,0xdb,0xcb,0x4c,0xcf,0xc4,0x87,0x8e,0xa9, - 0x75,0xd7,0x79,0x31,0xe9,0xc8,0x2c,0x3a,0x58,0xed,0x4e,0x52,0x74,0xe0,0x1b,0xa6,0x43,0x77,0x40,0x87, - 0xd7,0xba,0xa3,0x62,0xdd,0x17,0x1d,0x18,0x34,0x74,0x2e,0xa2,0x65,0x2c,0x15,0xa4,0x3c,0x15,0xee,0xe1, - 0x8d,0x76,0x73,0xee,0x9b,0x38,0x1d,0xd2,0x95,0x19,0xf1,0x7c,0xf0,0xf2,0xd9,0x5c,0x91,0xb6,0x1b,0x60, - 0x06,0x4f,0x65,0x0b,0xd6,0x9d,0x24,0xce,0xbc,0xbd,0x3d,0x11,0x65,0x8c,0x07,0x0e,0x8c,0xa2,0x9a,0xcb, - 0x12,0x50,0x6a,0xd9,0x9f,0x41,0x92,0x05,0xd9,0xa4,0x72,0xd1,0xef,0x27,0x7e,0xd4,0x4b,0x5c,0x09,0x14, - 0x81,0xa3,0x71,0x1c,0x6e,0x20,0x8a,0x11,0xf5,0x44,0x97,0x4b,0xcb,0x5b,0xc7,0xba,0x7f,0x6c,0xd1,0x7e, - 0x09,0xac,0x01,0xe7,0x19,0x84,0xdb,0xb6,0x9c,0xbd,0x72,0x90,0x6d,0xb5,0x06,0x57,0x70,0x9a,0x2f,0x85, - 0x8a,0xdc,0x47,0xd5,0xed,0xfc,0x1c,0x2e,0x92,0x2c,0x9d,0x3b,0x2d,0x3c,0x8e,0x4f,0xd2,0x6e,0x97,0xe5, - 0x2f,0xce,0xad,0x23,0x5a,0x8f,0x39,0xde,0x08,0xac,0x07,0x79,0x56,0x29,0x71,0x94,0x0a,0x57,0x8e,0x47, - 0x0b,0xb4,0x25,0xc2,0x1b,0xfa,0x10,0xab,0x09,0xd5,0x8e,0xb3,0x66,0xbd,0x93,0xbe,0x97,0x75,0x89,0xee, - 0x36,0xc9,0x22,0x86,0xb8,0x14,0x32,0x3c,0xf3,0x06,0x0e,0x3b,0x07,0x0d,0x3e,0x54,0x09,0x40,0x26,0x63, - 0x22,0xff,0x17,0xe2,0x44,0xce,0xe9,0xeb,0x21,0x48,0xb7,0x99,0xb8,0xaf,0x8e,0xd6,0xa2,0xf7,0xee,0xfc, - 0x0f,0x1e,0xeb,0x80,0xc6,0x0c,0xe2,0x9f,0x76,0x04,0x94,0x3e,0x75,0xe9,0x05,0xf8,0x57,0xb3,0x21,0x77, - 0xce,0xa4,0x84,0x34,0xdd,0x6f,0xac,0x6a,0x98,0xd7,0xe4,0xce,0x66,0xf1,0x69,0x25,0x25,0x52,0x74,0x53, - 0x9c,0xa2,0xa7,0xc3,0x11,0xe5,0x36,0x67,0x82,0xb5,0xd5,0x3f,0xa0,0x47,0x6d,0xde,0x9e,0x78,0xe9,0xfa, - 0x49,0x73,0x53,0x22,0x9a,0x50,0x32,0xd4,0x5c,0x60,0xa4,0xde,0x94,0xc1,0x6e,0xc9,0xf8,0x83,0x5c,0xc5, - 0x3d,0x55,0x1a,0x73,0xa2,0x92,0xca,0xcc,0x9c,0x1a,0x88,0x2a,0x90,0x9e,0x30,0xa5,0x43,0x34,0xbe,0x2e, - 0xeb,0x1f,0x1d,0x7a,0xc3,0x5a,0x05,0x3d,0x5a,0xf9,0x2b,0x6a,0xde,0xa6,0xba,0xaa,0x45,0xf4,0x70,0xd2, - 0xed,0x9a,0x45,0x5d,0x73,0x6c,0x3a,0x79,0xb1,0xba,0x0c,0x0f,0xfe,0x70,0x4f,0xc7,0x5e,0xf7,0xc0,0xff, - 0xc0,0x9f,0xd7,0xf8,0x7c,0x46,0xcb,0xf4,0x24,0x3c,0xf2,0xdf,0x85,0xf7,0xfd,0xdd,0xf0,0x81,0xff,0x86, - 0x7e,0x7f,0x1b,0x3e,0xf4,0xdf,0x86,0x5f,0xfa,0xef,0xc3,0xaf,0xfc,0xe7,0xe1,0xdf,0xfd,0x17,0xe1,0xd7, - 0xfe,0x4b,0x3c,0xb3,0xbd,0x3c,0x79,0x33,0x0c,0x6f,0xaf,0x8b,0x80,0xfe,0xfa,0xcc,0x1b,0x06,0x27,0x0f, - 0xfc,0x67,0x43,0xdf,0x39,0x71,0x82,0x93,0x6f,0x87,0x3e,0x5d,0xf2,0xc1,0xc9,0xf3,0xe1,0xda,0x7f,0x79, - 0x72,0xa4,0x4a,0x1e,0x51,0x6e,0x8f,0x72,0xef,0xb7,0x96,0xba,0xaf,0x4a,0xdd,0xaf,0xb7,0x77,0xa8,0xfe, - 0x0a,0xab,0x29,0x3f,0x50,0xfc,0x01,0x15,0xbf,0xab,0x9c,0xcf,0xbd,0xfa,0x4f,0x74,0xbf,0xfc,0xc5,0x3d, - 0xe3,0x4b,0xfa,0xa6,0x2f,0x34,0xf7,0x2d,0x35,0xe7,0xdc,0xa3,0xac,0xb7,0xa8,0x77,0xcf,0xb9,0x17,0x9c, - 0xbc,0xaf,0xa6,0xe3,0xbf,0xa3,0xaf,0xa1,0x83,0xc6,0x76,0xa5,0xe2,0x0b,0xb6,0xd2,0x43,0x96,0x0c,0xe7, - 0xad,0xae,0x8f,0x84,0x5a,0x89,0xb7,0xaa,0xc4,0x7b,0x2a,0xc1,0xed,0x6e,0x94,0x40,0x47,0xb2,0x31,0xdf, - 0xb1,0x25,0x33,0x91,0x6a,0xf9,0x22,0x5e,0xb1,0x85,0xe6,0x6a,0x7f,0x70,0x72,0x3a,0xee,0x0d,0xbb,0xab, - 0x7b,0xec,0xba,0xea,0xde,0xca,0x61,0x6f,0x56,0x8e,0x47,0xe5,0x76,0x0f,0xfc,0xd7,0x5b,0xd0,0x56,0x3b, - 0xd6,0x7a,0x6d,0x61,0x2d,0x86,0xb2,0xb7,0x74,0xa9,0xd5,0x50,0x90,0xe5,0xed,0x58,0x1a,0xb2,0x10,0x56, - 0x09,0xdd,0x8a,0xcd,0xd2,0x3a,0x16,0xa6,0x08,0xb7,0x70,0xe0,0x66,0xe1,0xfe,0x11,0x5d,0x8d,0x6f,0x38, - 0x48,0xdd,0x05,0xc0,0x05,0x67,0xe6,0xe2,0xe4,0xc9,0xb0,0x66,0xae,0xa1,0xef,0xa9,0x94,0xd5,0x70,0x04, - 0x7a,0xe1,0x59,0x50,0x32,0x60,0x81,0x7f,0xf2,0xac,0xa5,0x06,0x74,0x99,0x06,0x69,0x98,0x07,0x69,0x97, - 0x08,0x7f,0x2a,0xf4,0xae,0x56,0x08,0x95,0x88,0x32,0x9a,0x10,0xec,0x53,0xde,0x6e,0x2d,0x0f,0xa2,0xae, - 0xc7,0x87,0xde,0x64,0x7f,0x9f,0x86,0xf7,0xad,0x2f,0x45,0xcd,0xc3,0x22,0x46,0xbb,0x83,0x77,0x0c,0x37, - 0x0d,0xe7,0xec,0xe9,0xce,0x48,0x42,0x31,0x76,0xa8,0x4d,0xf6,0x95,0x8c,0x7b,0xc1,0x9e,0xdd,0x67,0xdd, - 0x2e,0xdc,0x1e,0xb2,0x9e,0x0f,0x5c,0x25,0xce,0xf0,0xfc,0xb0,0xd3,0xe0,0xbd,0x39,0xa3,0x7b,0xc4,0xd8, - 0x7a,0x41,0x8d,0xbf,0xa5,0x5b,0xf9,0x1e,0x6b,0x14,0xae,0x56,0xf8,0xfd,0x7e,0x6f,0x8f,0xc0,0x02,0xbf, - 0x35,0x8a,0x41,0xb3,0x84,0xad,0xa9,0xe1,0x6e,0xa9,0xc6,0x88,0x70,0xc8,0xae,0xa7,0xec,0xb2,0xc6,0x50, - 0xe3,0x05,0x9d,0x53,0x84,0x2f,0x4f,0x16,0x43,0x8f,0xf0,0xce,0x6a,0x55,0xb0,0xc2,0xe6,0x6a,0xf5,0x02, - 0xe2,0xe4,0x17,0x5a,0xa3,0x87,0xfb,0x84,0xa3,0x7a,0xdf,0x8d,0xc2,0x8b,0x93,0x8c,0xce,0xe0,0x50,0xe4, - 0x2b,0x66,0x2d,0xe9,0x3b,0xa3,0x43,0xe7,0x0d,0xca,0x20,0x97,0xe9,0x13,0xff,0xe3,0xd5,0x1a,0x08,0xc3, - 0xe7,0x7a,0x6c,0x23,0x51,0x53,0x33,0x04,0xa9,0x86,0x91,0x10,0xfe,0x82,0x41,0x76,0xad,0x7d,0x1b,0xc8, - 0xa6,0x71,0x09,0x10,0x63,0xd9,0x6d,0xe3,0x6e,0x84,0x58,0xbc,0xac,0x1c,0xaa,0x56,0x2f,0x2a,0xb9,0xf6, - 0x86,0x6d,0x20,0x14,0x3e,0x66,0xf1,0x76,0x4a,0x97,0x53,0x53,0x02,0xbe,0xb7,0x77,0x68,0x09,0xbb,0x6b, - 0x6d,0x55,0x8a,0x2c,0xda,0x3f,0x36,0x02,0x61,0x2b,0x97,0xd9,0x59,0x5f,0x3b,0xca,0x8e,0x4e,0xe0,0x2a, - 0xdb,0x7a,0xcc,0x80,0x9e,0x98,0x77,0x2b,0xde,0xa3,0x94,0xe1,0x40,0x14,0x8e,0xfc,0xa2,0x42,0xa6,0x91, - 0x9c,0xd6,0x57,0x5b,0x4e,0x4e,0xbf,0xe2,0xff,0xc0,0xb9,0x43,0xb3,0xd5,0xb8,0xf0,0x15,0xe2,0x71,0xb5, - 0x72,0xe2,0x74,0xff,0x97,0x77,0x0e,0x8b,0xc6,0xea,0xbc,0x76,0x95,0x87,0x47,0x25,0xcd,0xe2,0x32,0x79, - 0xa9,0x62,0x8e,0x5b,0xf2,0x22,0x49,0x87,0x5d,0x64,0x6a,0x89,0x83,0x38,0xb5,0xaf,0x5c,0x4f,0x5f,0xc9, - 0x6b,0x9d,0xfc,0xaa,0x44,0x04,0x71,0x25,0x13,0x58,0xad,0xc0,0x28,0x1f,0xab,0x22,0x57,0x49,0x01,0x07, - 0x1f,0xe8,0x5b,0xbe,0x44,0x0a,0xaa,0xbd,0x41,0x43,0x00,0x11,0xb3,0x1c,0xa2,0x96,0x0e,0xae,0x36,0xb4, - 0xf8,0x5e,0x61,0x79,0x77,0x76,0xe4,0x4b,0xf7,0xae,0x26,0xca,0xba,0x4c,0x56,0x61,0x3b,0x5d,0x2a,0xd9, - 0x29,0xba,0x87,0x56,0xd9,0x83,0x41,0x22,0x71,0xbb,0xd4,0x81,0x48,0xdc,0x9d,0x2d,0x59,0xaa,0xdd,0xfa, - 0x82,0xe2,0x19,0x1d,0x84,0xbd,0xe4,0xd9,0x8b,0x5a,0xcf,0x01,0x37,0xc0,0xf2,0x85,0xd7,0x55,0x33,0x51, - 0xe5,0x04,0x80,0x90,0xa0,0x24,0xf3,0x93,0x41,0x03,0xf2,0x15,0x56,0x71,0x77,0xa0,0x89,0x98,0xae,0x56, - 0xb9,0x5b,0x4a,0x83,0xb5,0xe3,0x22,0xb1,0xaf,0xb5,0xa9,0xf9,0x19,0x7c,0xbd,0xfe,0xfa,0xca,0xd5,0x8f, - 0x97,0xa9,0x5f,0x87,0x9a,0x00,0x5e,0x17,0x05,0x54,0x88,0xec,0x6a,0x00,0x49,0x10,0xf9,0x35,0xf0,0x08, - 0xa0,0xbb,0xe2,0xff,0x1c,0xde,0x2e,0xaf,0x82,0xdb,0x75,0x55,0x91,0xbe,0x9b,0x35,0x29,0xa9,0x5e,0xf5, - 0xb6,0xe2,0xf0,0xd6,0xcd,0x31,0xa0,0x2d,0x81,0x19,0xce,0xd4,0xcb,0x86,0x1f,0xad,0x3b,0x40,0x19,0x6b, - 0x7d,0xb9,0xbc,0xb2,0x5d,0x05,0xcb,0x64,0x5b,0x8e,0xd7,0x85,0xf6,0xdd,0x2c,0xed,0xf5,0x1b,0xbf,0x21, - 0x7d,0xa9,0xc0,0x9e,0x76,0x87,0x68,0x48,0x6c,0x0c,0x94,0x5a,0xfd,0x66,0xd9,0x72,0xed,0xdb,0x9d,0xb6, - 0xb2,0xfb,0x9b,0x1e,0x0e,0xea,0x1b,0x5d,0xa9,0x8b,0xd9,0x4d,0x6d,0x91,0x1d,0xd4,0x1a,0xdb,0xa9,0xb3, - 0x30,0xcc,0xed,0xd9,0xb1,0x46,0x52,0xcb,0xfa,0xb2,0x64,0xf4,0x97,0x3e,0xde,0x3f,0xf2,0xe4,0x99,0x79, - 0x04,0x99,0x27,0x94,0x1b,0xdd,0x96,0x31,0xf9,0xcd,0xe1,0xd4,0x64,0x5b,0x4d,0x83,0x49,0x91,0xfd,0xd5, - 0x5c,0x78,0xd3,0xe2,0xf5,0x76,0xb9,0x92,0xeb,0xec,0xa2,0xe9,0x5a,0x2c,0x09,0xdb,0xf0,0xa0,0xb1,0x18, - 0xb6,0x1d,0xc2,0x45,0xab,0x2f,0xe3,0x66,0x15,0x62,0x04,0xd9,0x69,0x79,0x33,0x71,0x23,0x42,0xc5,0xda, - 0xbf,0x1d,0xc7,0xf1,0x5c,0x94,0x8a,0x37,0x67,0xa7,0xc4,0x98,0xf5,0xab,0x7e,0xa7,0x42,0x4d,0x74,0xd0, - 0x2a,0xfc,0xb5,0x71,0xe3,0xc4,0x3a,0xe8,0xc8,0x55,0x7d,0x1d,0x58,0x40,0x66,0x2d,0x86,0x00,0xbe,0xb5, - 0x1a,0xec,0xaf,0x63,0x97,0xd8,0x5f,0x18,0x97,0xe8,0x5c,0xf6,0xa3,0xdf,0x18,0xbf,0x7f,0x9b,0x5c,0x11, - 0xa9,0x9e,0x40,0x36,0x2f,0x53,0xf8,0x19,0x0d,0xd3,0x79,0xb7,0xc7,0xdc,0xd8,0x04,0x14,0xd2,0x67,0x73, - 0x4b,0xd1,0x48,0x01,0x00,0xe5,0x2a,0x61,0x78,0xc1,0x1e,0xbb,0x7f,0x6e,0xde,0x13,0x77,0xd7,0xaf,0x3f, - 0x44,0xe8,0x66,0x6a,0x87,0xff,0xee,0x46,0xec,0x47,0x09,0xdd,0x84,0xac,0xcb,0x1d,0x73,0xd5,0x2f,0x7b, - 0x55,0xf9,0x22,0x2e,0x5b,0x4e,0x1f,0x76,0x03,0xeb,0xad,0x7f,0x55,0xcb,0x1e,0x73,0x67,0x75,0x8c,0x74, - 0x57,0xa7,0xf5,0xd2,0x2d,0xf5,0x3f,0x75,0x10,0xf5,0x6a,0x7a,0x30,0x0a,0x19,0x7e,0x74,0x14,0xaa,0x8c, - 0x5d,0xbc,0xbd,0x53,0x73,0x2f,0xf3,0x30,0x35,0x6e,0xfd,0x68,0xdb,0xa6,0x54,0xbd,0x4a,0x7b,0xfb,0x16, - 0x69,0x80,0xe2,0xad,0x08,0xfb,0xa3,0xbd,0xb5,0xd6,0xd8,0xde,0x54,0xfb,0x28,0xda,0x6f,0xf9,0xb8,0x7e, - 0xe4,0x6d,0x70,0xff,0xd8,0xf6,0xea,0xc3,0xb3,0x59,0xbb,0x01,0xec,0x1f,0x6b,0xa4,0x71,0x90,0x36,0xdb, - 0xaa,0xc1,0xfc,0xc7,0x5a,0xaa,0x9d,0xa5,0x46,0x3b,0xd0,0x14,0x53,0xbe,0x9a,0x6a,0xba,0x9a,0x08,0x69, - 0x65,0x5a,0xca,0x21,0xaa,0x10,0xa8,0x53,0xd0,0xa0,0x84,0xfe,0x1a,0x72,0xe4,0x29,0x9e,0xc9,0xb2,0x13, - 0xd6,0xc2,0x1d,0xc2,0xe4,0x22,0x48,0x1b,0x9d,0x25,0xc5,0x77,0x36,0x25,0xd6,0xe2,0xe8,0x26,0x46,0x78, - 0x45,0xd7,0x42,0x99,0xaa,0xa3,0x1a,0x09,0xd7,0x6c,0xb5,0x5d,0x0c,0x56,0x6a,0xde,0x50,0xe1,0xe4,0x0d, - 0xec,0x0b,0x7d,0x88,0x8a,0xa8,0xaa,0xd3,0x40,0xa5,0x0a,0x93,0x5b,0x27,0xfb,0x67,0x86,0x69,0x98,0x31, - 0x5f,0xc0,0x31,0x74,0x59,0xeb,0x94,0x30,0x72,0xad,0x7d,0x4b,0xcd,0x54,0x3f,0xa6,0xc2,0x28,0x84,0x38, - 0xa6,0x5a,0xb9,0xb5,0x66,0x01,0x37,0x14,0xbe,0x66,0xb5,0xe6,0x46,0xe1,0xcc,0x18,0x03,0x55,0x66,0xcd, - 0xff,0x11,0x38,0x1e,0xfb,0x1c,0x41,0xd3,0x22,0x89,0x4f,0xd2,0x4b,0x9e,0xfa,0x48,0x4d,0x1d,0x16,0x9c, - 0x3a,0x9c,0x0a,0x07,0x10,0x18,0x71,0x72,0x30,0x6a,0xac,0x21,0x2a,0x36,0xf7,0xdf,0x8e,0xfd,0x1c,0xa6, - 0x3e,0x34,0x96,0xc5,0xfb,0xc0,0x81,0xfb,0x1f,0xc1,0xc9,0xe9,0xf5,0xe9,0xfe,0xd9,0xaa,0x37,0xec,0x7a, - 0x07,0xd3,0x4a,0x53,0x7c,0x04,0x55,0x88,0x02,0x3c,0x6a,0xd1,0x78,0x9a,0xe6,0x30,0xcb,0x62,0x21,0x55, - 0x9c,0x8c,0x10,0x9b,0x67,0xa6,0xcc,0xae,0xdd,0xfb,0x55,0xf8,0x2d,0x6b,0x2f,0x79,0x14,0x0b,0x1a,0x85, - 0x93,0x47,0xd7,0x4a,0x80,0xa7,0x56,0x89,0x88,0xce,0x2a,0x51,0x28,0xf1,0x40,0x79,0x5d,0x90,0x56,0x6a, - 0x70,0x06,0x6f,0x03,0xd6,0xb5,0xcc,0x60,0xc5,0xce,0x8b,0x3a,0xdf,0x42,0x19,0x1d,0xe2,0x36,0x31,0xc1, - 0x8e,0xc7,0x1d,0x56,0x4f,0x57,0x5e,0x09,0xc7,0x61,0x55,0xa1,0x3f,0x09,0xc7,0x2a,0xc4,0x09,0x8f,0x6d, - 0xdc,0xb8,0xfa,0x10,0x3e,0x5c,0xc4,0xf3,0xe3,0xe6,0x13,0xe6,0x42,0x2d,0x24,0x31,0x73,0xae,0x9e,0xa6, - 0x75,0xea,0xdc,0x98,0x3d,0xcc,0xe6,0x88,0xc3,0x6e,0x6c,0x95,0x67,0xfe,0xc4,0x0b,0xa2,0x8a,0xed,0xab, - 0x6f,0x96,0xd6,0x30,0x6f,0xf5,0x04,0xd9,0x40,0xaa,0xbd,0xfa,0x8a,0x9a,0xa0,0x29,0x95,0xf6,0x4f,0x58, - 0x0e,0x72,0x65,0x17,0x86,0xc0,0xe6,0x8d,0xbe,0xcc,0x94,0x37,0xb0,0x83,0x3e,0x5c,0xc2,0xcd,0x6e,0x6e, - 0x5f,0xe9,0xc3,0xf2,0xd3,0x94,0x33,0xd2,0x67,0x02,0x84,0x41,0xee,0xb6,0xd5,0x48,0x7d,0xc8,0x66,0x4d, - 0x0d,0x15,0x19,0x7e,0xb4,0x01,0xac,0x1b,0x98,0xca,0x8a,0xfb,0xa4,0xbc,0x09,0x35,0x55,0x08,0xf7,0x1f, - 0xf6,0xa3,0xfd,0xfd,0xce,0xe3,0xc3,0xbe,0x07,0xb5,0x3e,0x4b,0xb7,0x34,0xea,0x3e,0x64,0x1e,0x7c,0xc7, - 0xe8,0xda,0x88,0xb4,0x1a,0x22,0xa5,0x44,0x21,0x36,0xe5,0xa9,0x00,0x7e,0x2c,0xc2,0x91,0x61,0xa5,0x09, - 0x3a,0xd5,0x24,0x2a,0xb8,0x48,0x7d,0xc5,0x98,0x36,0xdf,0xb1,0x01,0xc7,0x6a,0xc9,0xe1,0xc1,0x99,0x15, - 0x40,0xb7,0x43,0xec,0xe2,0xf3,0x21,0x56,0x29,0xb8,0x14,0x16,0xd0,0x56,0x4a,0x52,0x05,0xa1,0x65,0xa3, - 0x24,0x95,0x59,0xa6,0xef,0x1b,0xd0,0x38,0xf3,0x19,0x62,0x1b,0xb4,0x6e,0x1d,0x57,0x37,0x9e,0x0b,0x36, - 0xd6,0xfa,0x08,0x4a,0xbc,0xbc,0xd6,0x65,0x43,0x8f,0x17,0xe2,0x28,0x35,0xd0,0x5c,0x45,0x4f,0x39,0xd3, - 0x63,0xcc,0xf9,0xea,0xc0,0x80,0xd4,0x49,0x6a,0xa1,0x30,0xd9,0x4e,0xda,0x4c,0xa4,0xd4,0x21,0x21,0x9a, - 0x17,0x42,0x0b,0x26,0xd3,0xfa,0xa3,0x9b,0x1b,0x56,0x6e,0xdf,0x30,0xe0,0x18,0x1d,0x2f,0xbd,0x6d,0x9b, - 0xb2,0xbf,0xba,0x4d,0x36,0x9d,0x9f,0x28,0xbb,0x95,0xed,0x7b,0x42,0x27,0x89,0x8e,0x44,0x73,0x4f,0x9a, - 0xb3,0xac,0x1e,0x19,0x07,0x9b,0xd7,0x49,0xc9,0x76,0xb4,0xd6,0xea,0x9a,0x67,0x5a,0xae,0xbc,0x6d,0xa9, - 0x21,0x09,0x08,0x1c,0xa7,0x79,0xfe,0x46,0xad,0x0b,0x6c,0xac,0x85,0xc4,0xe0,0x76,0x03,0x2c,0xbe,0xec, - 0x17,0x0a,0x2c,0xa2,0x93,0xc2,0x06,0x8b,0xa2,0xfb,0xa5,0x91,0xf5,0xd2,0xe0,0x8d,0x80,0x26,0x61,0xed, - 0x69,0xd8,0xae,0xb8,0x0a,0x5f,0x58,0xe0,0x32,0x12,0x4a,0x83,0xfa,0x36,0xf0,0x10,0x79,0x08,0x8f,0x83, - 0x01,0xcb,0xfd,0xde,0x80,0xe1,0xfa,0xa8,0x6d,0x65,0x64,0x1a,0x6f,0xbe,0x39,0xde,0xfb,0xfd,0x5c,0x8d, - 0x97,0xdd,0x15,0x54,0xe3,0xcd,0xbb,0xf7,0x0d,0x18,0x27,0x66,0x5c,0x23,0x35,0xb0,0xe4,0x53,0xe1,0xd8, - 0x2f,0xcd,0xc8,0x75,0x5c,0x98,0xa4,0xb9,0xd2,0x4d,0xb4,0x6b,0x19,0x37,0x8b,0x65,0xd9,0xc6,0xa8,0x1f, - 0xf4,0x33,0x35,0x6a,0xb6,0x16,0xaa,0x46,0x9d,0x75,0x1f,0xe8,0xa7,0xb5,0x06,0x5e,0xcb,0xbd,0x0a,0xa7, - 0xd5,0x01,0x94,0xa5,0x48,0x78,0xda,0x19,0x6e,0x30,0xf7,0x8d,0xa1,0x35,0xa8,0x4e,0xb9,0xbe,0xef,0x58, - 0x84,0xb2,0xd1,0x24,0xe5,0xd6,0xf4,0xab,0x5a,0x08,0x44,0xc3,0xf3,0x59,0x54,0x36,0xa1,0x36,0xc8,0x1d, - 0x1b,0x8d,0x15,0xdb,0x1b,0x63,0x8f,0xba,0x2d,0xad,0x34,0x25,0x33,0x9b,0x1a,0x5f,0x9f,0xd2,0xc8,0x45, - 0x6f,0x51,0x26,0xb3,0x9e,0x78,0x38,0xdc,0x3a,0xda,0xb6,0xc9,0xd7,0x99,0x83,0x3b,0x66,0xdf,0x60,0x0f, - 0xb6,0x2e,0xc2,0xd6,0x46,0x6b,0x13,0xd8,0x6c,0xad,0x75,0x31,0xfe,0x72,0x63,0x5b,0x16,0xa5,0x7d,0x12, - 0x1b,0x6b,0x23,0x1a,0x26,0xc9,0x9f,0xa6,0xff,0x16,0x62,0xc4,0x44,0xca,0x85,0x7f,0x6b,0x02,0x58,0x20, - 0x6d,0xa2,0xd0,0x0b,0x0f,0x72,0x4e,0x18,0x88,0xf2,0xe3,0x01,0xe7,0x85,0xe9,0x10,0xae,0xbd,0xec,0xac, - 0x0d,0xde,0x20,0x44,0x3a,0x6c,0x06,0xba,0xce,0xd9,0x19,0xc2,0x1a,0xe8,0xbb,0x7e,0x53,0x6c,0x7b,0x32, - 0x33,0xd8,0x6b,0xb1,0x5a,0xb9,0x1f,0x2d,0xc8,0xc2,0xc1,0x16,0xfd,0x4b,0x37,0xf2,0x61,0xc7,0xbf,0x50, - 0xdc,0xf2,0x86,0x64,0xef,0x6c,0xbc,0x81,0x08,0x98,0xef,0x30,0x03,0xdf,0xd2,0xac,0xa8,0x34,0x4a,0x8b, - 0x7d,0x9b,0x40,0x6c,0xae,0x68,0x75,0x0d,0x34,0x2e,0xc2,0xed,0x72,0x1a,0x3f,0xdd,0x7e,0x33,0xe6,0xff, - 0x2b,0x6e,0x46,0x71,0x35,0x58,0x9a,0x9b,0x31,0x87,0x49,0x7e,0x7d,0x5d,0xc6,0xad,0x84,0xc9,0x36,0x8c, - 0x7e,0xb4,0x1d,0xa3,0x1f,0x0d,0xb5,0x05,0x85,0x85,0xb4,0xb2,0x0d,0x4b,0xa3,0xca,0x59,0x45,0xd3,0x2c, - 0x08,0xa6,0xd5,0x03,0xd8,0xa7,0x1c,0x0e,0xf1,0xb4,0x0f,0xdb,0x20,0x0e,0x31,0x02,0x6f,0x0e,0xca,0x88, - 0x03,0xf6,0x36,0xd5,0x6f,0x44,0x0f,0xa5,0x1f,0x1c,0x1b,0xd5,0x95,0x8a,0x1c,0x16,0x55,0x2c,0x90,0xd2, - 0x8f,0x58,0x20,0xa5,0x62,0x81,0x24,0x75,0x3c,0xbf,0x25,0xff,0x68,0xa8,0x7a,0x63,0xc3,0x23,0x05,0x8f, - 0x88,0x3f,0xcf,0xf1,0x45,0x1b,0x68,0xc7,0x96,0x23,0xdc,0x81,0x74,0x6a,0x92,0x84,0xad,0x28,0x67,0x4b, - 0x83,0x35,0x1c,0xd1,0x6c,0xa9,0x15,0xdd,0xfc,0xa5,0x86,0xb6,0xa0,0x9a,0xb6,0xa1,0x6f,0x47,0x34,0xd2, - 0xf3,0xff,0x8f,0x68,0xa6,0xf9,0x02,0xb4,0x05,0xc9,0xb4,0x14,0xab,0x50,0x8c,0xbd,0x7c,0x77,0x22,0x98, - 0xf4,0x13,0x11,0x4c,0xad,0xd1,0x3b,0xd1,0x8b,0x94,0xbe,0x1b,0xb9,0x34,0xe4,0xb7,0xff,0xdb,0x51,0x4b, - 0x7a,0x37,0x6a,0x49,0xff,0x2f,0x6a,0xf9,0x54,0xd4,0x92,0x1a,0xd4,0xa2,0xb4,0x3f,0xc4,0x90,0x40,0x89, - 0x7e,0x12,0x22,0xf6,0xac,0x85,0xf5,0x7f,0xf6,0x68,0x9d,0xa3,0x65,0x94,0xcc,0xa2,0xf3,0x64,0x96,0x20, - 0x3f,0xbc,0xad,0xdf,0x96,0xc1,0x4d,0xed,0xf5,0x2f,0x38,0xc7,0xd6,0xb0,0x16,0xef,0x6c,0x66,0xc7,0xd6, - 0xd5,0x3a,0x78,0x7d,0xf7,0x02,0x1e,0x57,0x96,0x74,0x02,0x28,0x63,0x6f,0x4f,0x81,0xdd,0x85,0x4e,0xd1, - 0x36,0x92,0x3d,0xc7,0xe3,0x79,0xc5,0xba,0x31,0x89,0xa1,0xd4,0x36,0xea,0x1b,0xaa,0x5d,0x8d,0xd9,0xd9, - 0x15,0xcd,0xd5,0x5b,0x82,0xd5,0x60,0x9b,0xa8,0x15,0x45,0xe0,0x78,0x26,0x0d,0x2f,0xb6,0x34,0x99,0xd6, - 0x9a,0x2c,0x37,0xdb,0xdb,0x7c,0x19,0xb3,0xdf,0x7c,0xfe,0x57,0x00,0x61,0xac,0x34,0x56,0x55,0xf3,0x49, - 0xc5,0x51,0x11,0xe3,0x42,0x7c,0xa8,0x06,0xd0,0xa4,0x49,0xad,0xc7,0x36,0xb7,0xb2,0x5e,0x57,0xb6,0x13, - 0x1f,0x9f,0xe3,0xe8,0xf3,0x26,0xb9,0xc1,0xe2,0x24,0x6d,0x8c,0x59,0x62,0x58,0x9c,0xc4,0x9e,0x66,0x02, - 0xc6,0x4c,0x39,0xfd,0xa8,0x4f,0x33,0xb3,0x18,0xb4,0x0c,0xf3,0x34,0x16,0x6d,0xd9,0xc6,0x3c,0xfd,0xd4, - 0xcc,0x34,0xff,0x9c,0x99,0xc6,0x9f,0x3f,0x53,0xe5,0xc6,0xb0,0x3e,0xd6,0x9c,0xd9,0xa7,0xd2,0x37,0x1a, - 0xbf,0xf9,0x06,0xf7,0xf8,0xe9,0xa3,0x1a,0xff,0xf7,0xc2,0x98,0xe1,0x8a,0x63,0x6d,0xa7,0x37,0xb6,0xa0, - 0xab,0x85,0xdf,0xfd,0xd4,0x79,0xb4,0x9c,0xbd,0xff,0xde,0x79,0xa4,0x77,0xcf,0x03,0xa6,0xd3,0x1f,0x92, - 0xd4,0x3d,0xc3,0xa7,0xb1,0x05,0x74,0x1d,0x9c,0x73,0x8e,0xb8,0x30,0x52,0xf1,0xd7,0xd9,0xd9,0xd7,0x45, - 0x15,0x16,0xcc,0xbd,0x16,0xbf,0x87,0xd7,0xfa,0x12,0x35,0x2a,0x03,0x62,0x38,0xf5,0x0a,0xc4,0xd0,0xbb, - 0x32,0xa7,0xaa,0x53,0xc2,0x96,0xfd,0x5c,0x6c,0xa8,0xf2,0x9e,0x8a,0xfa,0x0d,0xec,0xa8,0x30,0x5d,0xe8, - 0xfc,0xbd,0xf7,0xa0,0xf7,0xd0,0xf1,0xdb,0xcc,0xb9,0x24,0x22,0xf3,0xde,0x9e,0x8a,0xcc,0xfc,0x2b,0x22, - 0xca,0x54,0xdf,0xbd,0x45,0x11,0xbb,0xaf,0x08,0x39,0x2b,0xb5,0x21,0x63,0xe5,0x72,0x1b,0xa7,0xc1,0x2d, - 0x07,0xc1,0x0c,0x9c,0x77,0x65,0x94,0xe4,0x85,0xe3,0x17,0x37,0x45,0x19,0x5f,0xbd,0x78,0x4e,0x29,0xfc, - 0xd5,0x79,0xf1,0xdc,0xf1,0x27,0x49,0x7e,0x75,0x1d,0xe5,0xf1,0xaf,0x32,0x96,0xc0,0xf9,0x4e,0x25,0x74, - 0xd4,0xe8,0x82,0x0e,0x42,0x5a,0xce,0x6f,0x24,0x0e,0x86,0xf3,0x4c,0x7f,0x76,0xfe,0xe7,0xff,0xd3,0xb9, - 0x7f,0x78,0xf4,0xf7,0xce,0xab,0x28,0xbf,0xec,0x2c,0xa3,0xb4,0xf3,0x73,0x9c,0x16,0xd7,0xd9,0x62,0x1c, - 0x23,0xce,0x65,0x04,0x27,0x59,0x81,0xf3,0x76,0x16,0xc3,0x8a,0x90,0x63,0x13,0x74,0x54,0x6a,0x47,0x16, - 0x4a,0x85,0x66,0xef,0xf5,0x7a,0x8e,0x9f,0xc7,0xe7,0x74,0xc5,0xbf,0x8d,0x53,0xa9,0x75,0x7c,0x11,0x77, - 0x64,0xb4,0x34,0xff,0xd9,0xac,0x73,0x1e,0x77,0xa4,0x44,0x3c,0xf6,0x3b,0x73,0x69,0x32,0x8f,0x27,0x79, - 0x5c,0x5c,0x30,0x1e,0xef,0xcc,0x69,0xd2,0x9d,0x68,0x42,0xe4,0x14,0x0d,0x7d,0x4c,0x73,0xe5,0x8d,0x7f, - 0xca,0x31,0x39,0x02,0xe7,0x09,0x7e,0xd4,0xd2,0xde,0x45,0x4b,0xee,0x48,0xfe,0xf2,0x10,0xae,0x93,0x49, - 0x42,0x2b,0x55,0x2e,0x8a,0xe0,0x36,0x1a,0xc1,0x01,0xe5,0x3c,0x4b,0xd2,0xd2,0xac,0xe2,0x93,0xb7,0x58, - 0x89,0x71,0x52,0x44,0xe7,0x74,0x05,0x05,0xce,0x73,0xf5,0x45,0x24,0x08,0xfb,0xc0,0xc8,0x52,0x44,0xa7, - 0x33,0xc5,0x7f,0x4b,0xbe,0x4b,0xb6,0x54,0xf0,0x13,0xc4,0x21,0x71,0x5e,0x8c,0xf1,0xfa,0x9b,0x66,0xef, - 0xde,0xf1,0x96,0xd0,0xbf,0x1d,0x18,0x9e,0x4e,0x32,0x82,0x02,0xda,0xac,0x51,0x94,0x22,0xbe,0x04,0x6c, - 0x36,0xa8,0xf2,0x3b,0xfa,0xd9,0x19,0xe9,0xdf,0xd8,0x91,0x34,0x25,0x58,0xfd,0x8e,0x6e,0x64,0x64,0xcb, - 0xdf,0x4e,0x99,0x75,0x54,0x86,0x29,0x41,0xe3,0x7a,0x99,0x15,0xbc,0x71,0xfa,0x37,0xed,0x43,0x51,0xf2, - 0xc8,0x54,0x19,0x35,0x3a,0xf3,0x0b,0xa1,0x3b,0x0a,0xb5,0x14,0x65,0x74,0x7e,0x6c,0xc0,0x88,0x52,0x1c, - 0x5f,0x4d,0xf0,0x99,0xc4,0x7f,0xe9,0x14,0x2a,0x99,0x6e,0xe6,0x77,0x65,0x3c,0x2f,0x8e,0xf3,0x05,0x0a, - 0xc7,0x65,0x07,0xef,0x04,0x08,0x2f,0x7f,0x43,0x73,0xca,0xd9,0x40,0xa0,0x40,0x81,0xaa,0xe8,0x77,0xd0, - 0x5a,0x6d,0x96,0x85,0x7b,0xb5,0x65,0x32,0x5e,0x20,0xc6,0x04,0xad,0x2d,0x11,0x33,0x88,0x2d,0x51,0x1b, - 0xc9,0xb1,0x4a,0xc3,0x58,0xae,0x62,0x9d,0x48,0x9f,0x92,0xf0,0x02,0xef,0x13,0x29,0x21,0x1e,0x0d,0x7d, - 0xb4,0xac,0xb0,0x7b,0x89,0xca,0x0e,0xb2,0x3b,0xba,0xc9,0x8e,0xb2,0x45,0xe9,0x44,0x29,0xf7,0x8f,0x3a, - 0x9d,0x6a,0xd9,0x7a,0xd2,0xda,0xeb,0x8c,0x23,0x12,0x3b,0xaf,0xb3,0x46,0x6d,0x75,0x54,0x3b,0x37,0x71, - 0x29,0x25,0xbf,0x4d,0xd5,0x4e,0xcb,0x47,0xbd,0xb8,0x1a,0x2b,0x84,0xd8,0xec,0xff,0x0a,0xc3,0xc5,0x4c, - 0xf4,0x6f,0x29,0x9d,0xa4,0x9d,0x2b,0x02,0xf8,0xa4,0x88,0x69,0x1c,0x63,0x55,0xe9,0xc9,0x98,0xda,0xa4, - 0x7f,0xe4,0xd7,0x73,0x09,0x0f,0xe4,0xc8,0x5f,0xdd,0x2c,0x77,0xd2,0x18,0x80,0xaa,0xf0,0x5d,0xf2,0x21, - 0x1e,0x4b,0x77,0xfc,0xc9,0x3d,0x49,0xd6,0xbb,0x45,0x9a,0x27,0xbc,0x05,0xf2,0x61,0x52,0x0b,0xac,0x9e, - 0xfc,0xd5,0x8b,0x7c,0xa5,0xd6,0x58,0xc6,0x98,0x2e,0xca,0x58,0x0d,0xef,0x15,0x8d,0x34,0xba,0x09,0x1c, - 0xf9,0xab,0x8a,0x2f,0xe2,0x82,0x13,0xd5,0x87,0xa4,0xfe,0x16,0x8f,0x53,0x95,0x6e,0x3e,0x55,0xf9,0x8b, - 0x45,0xae,0x2a,0xa8,0x2f,0x35,0xf6,0x3c,0xe1,0x54,0xf9,0xab,0x86,0x47,0xf0,0x96,0x73,0xaa,0xfe,0x32, - 0xc3,0x96,0xd4,0x85,0x8c,0xe3,0x2a,0x93,0x75,0x66,0xe8,0x78,0xc5,0x3f,0x74,0xa2,0xb5,0xa7,0x92,0xb0, - 0x65,0x57,0x25,0xb3,0xb9,0xaf,0x8d,0x2a,0x8d,0x62,0xcf,0x17,0x20,0xbf,0x8f,0xab,0x5d,0xa1,0xbd,0xc3, - 0xa5,0x42,0x17,0x41,0x07,0xa1,0x82,0x3a,0xc9,0xa4,0x13,0xd5,0x60,0x03,0x36,0x34,0xd1,0x2c,0x8f,0xa3, - 0xf1,0x4d,0x27,0x12,0x5b,0x74,0x3d,0xf8,0xcf,0x05,0x17,0x5d,0x6d,0x0b,0x38,0x48,0x76,0x05,0x4f,0xf2, - 0xbb,0x09,0x51,0x92,0xfa,0x36,0x21,0xcc,0xf9,0xfd,0xdb,0x17,0x6f,0x3a,0x73,0xea,0xc6,0x95,0x81,0x75, - 0x2e,0x08,0xf5,0x7b,0xa6,0xa2,0xdc,0x97,0x40,0xb1,0xef,0xae,0xe3,0x78,0x4e,0x07,0x29,0xb9,0x8a,0xec, - 0x85,0x36,0x25,0x5e,0x5b,0xdf,0xd1,0x0c,0x2b,0x9f,0xc6,0xd4,0xa8,0xc6,0x09,0x1d,0x9c,0x4d,0x20,0xfd, - 0xe8,0x4a,0xce,0xcd,0x66,0x1f,0xc7,0xd9,0xfc,0x39,0x22,0x64,0x39,0xf4,0xd1,0x41,0xac,0xac,0x8d,0x12, - 0x4f,0x33,0x42,0xed,0x57,0xbf,0xcc,0x03,0x47,0xbe,0x3a,0x8b,0xb9,0xb3,0xb6,0xf0,0xa0,0x8d,0x42,0x2a, - 0x6c,0x58,0x21,0xb4,0x0a,0x41,0xf2,0x5b,0x5f,0x5c,0xf2,0xe6,0xda,0x77,0x81,0x86,0x00,0x49,0xeb,0x70, - 0x62,0xad,0xc4,0x0f,0x5c,0xea,0xc9,0x6c,0x96,0x5d,0x17,0x82,0xf5,0x94,0x83,0x01,0x0b,0xaf,0x74,0x26, - 0x39,0x8d,0xed,0x26,0x5b,0xe4,0x04,0x6c,0xcb,0x64,0x14,0x03,0x6d,0xf3,0x2d,0x26,0x17,0xb5,0x72,0x6b, - 0xc4,0xd5,0x6b,0x37,0x65,0x67,0xbe,0xc8,0xe7,0x59,0x11,0x17,0xbd,0x0e,0x2e,0x48,0x55,0xba,0x5e,0x04, - 0xa0,0x24,0x6c,0x1a,0xb5,0x40,0xbf,0x2f,0xca,0x72,0x1e,0x1c,0x1c,0x1c,0x7d,0x73,0xbf,0x77,0xf4,0xd5, - 0xd7,0xbd,0xa3,0xde,0xc3,0x83,0xce,0xf5,0x05,0x41,0x21,0xf5,0xdf,0xc1,0x2d,0x6f,0x90,0x3e,0x46,0x91, - 0x94,0xd4,0x34,0xb3,0x18,0x65,0x27,0x9b,0x10,0x9c,0x16,0x9d,0x22,0x83,0xef,0x98,0xa2,0xa3,0xee,0x38, - 0x0c,0x2e,0x46,0x2f,0xba,0x5b,0xdc,0xc8,0x94,0x4d,0x15,0x28,0x91,0x1d,0x27,0xc4,0x23,0xa4,0x02,0x36, - 0xa3,0xf4,0x86,0x6e,0xfe,0x9b,0x5e,0xe7,0x9f,0xd4,0x19,0x2e,0xb0,0x68,0x46,0x3f,0x8b,0x8e,0xe1,0xbf, - 0x3a,0x42,0x2b,0x75,0x20,0x28,0xc0,0x68,0xcf,0x6f,0x3a,0x50,0x92,0x04,0x8d,0x00,0x68,0xb0,0x97,0xb9, - 0xa3,0x02,0x6c,0x2d,0xd2,0x32,0x99,0x71,0xee,0xcb,0x6f,0x9f,0x77,0x66,0xa0,0x44,0x0a,0xda,0x68,0x42, - 0xd6,0xf6,0x2d,0xac,0x37,0xca,0x1e,0x75,0xad,0x84,0x6c,0x94,0xda,0xf2,0xb6,0xd5,0xa7,0xd5,0xe0,0x2d, - 0x22,0x40,0xeb,0xe0,0x2e,0xef,0xe4,0xec,0xf6,0xab,0xd7,0x51,0x77,0x0a,0x87,0x75,0xe3,0x71,0xe0,0xe6, - 0x26,0xaa,0x24,0x2a,0x88,0xf8,0xc9,0xc7,0x34,0xe9,0x31,0x11,0xb5,0x39,0xe5,0x34,0xb7,0xef,0x3c,0x26, - 0xb0,0xc0,0x40,0x8b,0x64,0x2c,0x17,0xbe,0xe3,0xeb,0x6a,0x74,0x57,0xa9,0x2f,0xba,0x98,0x2f,0x46,0x04, - 0xc3,0xbf,0x50,0x27,0xcf,0x7f,0x78,0xf6,0x56,0x7e,0x2b,0xc0,0x5a,0x10,0x58,0xc3,0xdf,0x16,0x2e,0x47, - 0x5a,0xf6,0x22,0x99,0xa6,0x05,0xae,0xaf,0x17,0x6f,0x3b,0x2a,0x04,0x7c,0x3b,0x30,0xc9,0x16,0x10,0x71, - 0x7e,0x4e,0xcb,0x82,0x4d,0xa1,0x05,0xa5,0x82,0x97,0x38,0xb4,0xb2,0x11,0x58,0xd9,0x19,0xea,0x03,0x30, - 0x60,0xca,0x44,0x60,0x42,0x87,0x92,0x7e,0xdd,0x23,0x28,0x19,0x67,0x20,0x93,0x88,0x72,0x99,0xab,0x6e, - 0x88,0x7c,0x31,0x5d,0xd2,0x8c,0x16,0xe7,0x74,0x77,0x5e,0x45,0xc5,0x25,0xd0,0x2f,0xbe,0x3b,0xf8,0xe1, - 0xf8,0x53,0xc2,0x7a,0xd7,0x40,0xca,0xdf,0xcb,0x87,0xe3,0x5f,0x10,0xed,0x21,0x76,0xa5,0x3f,0xa8,0xaf, - 0x2a,0xed,0x6d,0xe5,0xbb,0x18,0xd8,0x48,0x4c,0x49,0xa9,0xa5,0x91,0xe9,0x69,0xad,0x88,0xd8,0x1a,0x5d, - 0xc2,0x29,0x44,0x49,0x95,0x73,0x8b,0x14,0xe8,0x40,0x95,0xf3,0x22,0xcf,0x52,0xa2,0xba,0x78,0xf5,0xdd, - 0xd7,0xc7,0x6f,0x09,0xab,0x10,0x32,0x2b,0x54,0xb1,0x1f,0x88,0x54,0x64,0x4a,0x97,0xd2,0x32,0x84,0xc9, - 0xbc,0x8a,0xe6,0x3a,0xef,0xfb,0x2c,0x9b,0x12,0x14,0xbc,0xa2,0x94,0xce,0x93,0xb7,0x2f,0x2a,0x3a,0x59, - 0xe5,0x1b,0x2a,0x59,0xb8,0x03,0xee,0xfd,0x1d,0xdc,0xcd,0xd2,0xc8,0xa9,0xa3,0x0e,0xbb,0x9e,0xcd,0x39, - 0x99,0xc9,0x91,0x25,0x90,0xde,0xcf,0x8a,0x64,0x4d,0x54,0x4a,0xc7,0xad,0xee,0x52,0x8f,0xcb,0xbe,0x8c, - 0x68,0x97,0xe9,0x9f,0xa4,0x64,0x32,0x1a,0x29,0x20,0x53,0x5f,0x66,0xe9,0xd4,0x4a,0x22,0x16,0x53,0xb0, - 0xee,0xf7,0xb4,0xd0,0x33,0x55,0xba,0x73,0x40,0x74,0x9d,0x2a,0x26,0x28,0x66,0xa6,0xca,0xd5,0x2a,0xbd, - 0x8b,0xa3,0x7c,0x74,0x01,0xa2,0x0b,0x7f,0x79,0x3d,0xe8,0x20,0x11,0x71,0x4b,0xb7,0x14,0x9f,0xb6,0xb7, - 0x7c,0xda,0x84,0xaa,0xe3,0x33,0xc6,0xe8,0xbf,0xfb,0xa0,0xf7,0x60,0xe9,0xe9,0xe2,0xef,0x8e,0x9f,0x08, - 0x3d,0x88,0x85,0x7d,0x05,0x8c,0xf0,0x91,0xf2,0x4f,0xde,0x6a,0x3a,0x5c,0x1d,0xca,0x5a,0x47,0xea,0x58, - 0xdb,0x77,0x0c,0x9d,0x12,0xa9,0xf9,0xf6,0xb7,0x57,0xcf,0x73,0x4a,0xc9,0xdf,0x3d,0xa7,0xfe,0xde,0x3e, - 0x7b,0xf2,0xcd,0x57,0x5f,0x7f,0xd9,0xa1,0xd4,0xce,0x98,0x93,0x3b,0x94,0x2e,0x35,0xa1,0x13,0xdc,0xac, - 0xf3,0xec,0x65,0x7b,0x9d,0x67,0x2f,0xa5,0xce,0x08,0xce,0x47,0x51,0xe9,0xfa,0xea,0x89,0x06,0xea,0x96, - 0xf2,0x2f,0xfe,0xe7,0xff,0xfb,0xac,0x82,0x74,0x2a,0xfc,0x1d,0xc8,0xc6,0x38,0x1d,0xdd,0xb4,0x16,0x9f, - 0xe8,0x5c,0x01,0x27,0x82,0x9d,0x9f,0xe2,0x9b,0x0d,0x78,0xa2,0x93,0x57,0x2b,0x70,0xc1,0xc7,0xfb,0xe7, - 0x58,0x3c,0xf1,0x8d,0x81,0x3e,0x27,0x9d,0x45,0xc1,0x88,0xd0,0xa6,0x22,0x7b,0x1d,0x42,0x0b,0x63,0xbe, - 0x1a,0x66,0x59,0x76,0x89,0xfc,0xc5,0x9c,0xb1,0x90,0x0a,0xc7,0xc8,0xc5,0xff,0xa4,0xcb,0xb5,0x47,0x58, - 0x8b,0x6e,0x57,0xc2,0x28,0x97,0x1d,0xc4,0x87,0x23,0x00,0x07,0xa2,0x50,0x7d,0xfb,0x58,0xf7,0x8e,0x1a, - 0xd4,0x15,0xb3,0x73,0x10,0xc8,0x96,0x04,0xdb,0x82,0xf6,0x78,0x16,0x05,0x5d,0x07,0x3f,0x13,0xfb,0x5a, - 0x00,0xd5,0xc9,0x6d,0x46,0xd3,0x8b,0x75,0x23,0xb8,0xb4,0xd5,0xfd,0xa2,0x9d,0xd8,0xd1,0x85,0x46,0x48, - 0x6e,0x8e,0x91,0x4e,0xb9,0x71,0x30,0xcc,0x07,0x8c,0x13,0x23,0x4d,0x04,0x25,0xe5,0x3d,0xc2,0xd8,0x85, - 0x5c,0x70,0x18,0xba,0x5e,0x94,0x1e,0xe2,0x57,0x42,0xfc,0x1b,0xdc,0x82,0x53,0x34,0x1c,0xe9,0x33,0xf8, - 0x37,0xe4,0xbb,0x05,0xc9,0x74,0x7a,0x44,0x7e,0x0d,0xd8,0x8b,0xce,0x31,0xaf,0xd2,0xb0,0x8b,0xc2,0x79, - 0x56,0x37,0xf9,0x46,0x65,0xeb,0x1a,0x26,0xda,0xb6,0x84,0x23,0x67,0xa9,0x23,0x58,0x64,0xa3,0xbc,0xe2, - 0x42,0xeb,0x65,0x2d,0xe2,0xae,0xd8,0xa8,0x51,0xa3,0xec,0xea,0xf5,0x5e,0xd9,0xd4,0xd9,0x66,0xcd,0x3a, - 0x5d,0x69,0xd5,0x65,0xc6,0xb5,0x7d,0x52,0x05,0xcc,0xab,0x5b,0x27,0xc5,0x95,0x36,0x67,0xc5,0x15,0x36, - 0x66,0x25,0x58,0x0c,0xf7,0x9c,0x62,0x81,0xad,0x1a,0x79,0x4c,0x23,0xa2,0x7d,0x95,0x6b,0x50,0xb3,0x7b, - 0x8b,0x39,0xc6,0xac,0xd1,0x20,0x9d,0x6d,0x6c,0x5c,0x87,0x43,0x0b,0x76,0x24,0x0f,0xc0,0xa9,0xb1,0xa6, - 0xee,0x81,0xd9,0x3e,0xbb,0x71,0x1e,0x25,0xbf,0x54,0x80,0x0e,0x14,0x6f,0x4b,0xb8,0x50,0x18,0x3b,0x55, - 0x88,0xce,0x5e,0xa9,0xec,0x12,0x30,0xaf,0x91,0x1b,0x4d,0x9e,0x2e,0xcd,0x24,0x8d,0x98,0x1f,0xe1,0xe6, - 0xb6,0x6d,0x0f,0x4f,0x7d,0xcb,0xf6,0x70,0xc5,0xed,0xfb,0xc3,0x55,0xb7,0xed,0x0f,0x71,0xcb,0xe9,0xcc, - 0x30,0xfe,0x44,0xa3,0xcf,0x37,0x64,0x2d,0x9f,0x26,0x6c,0x89,0xff,0x3d,0x59,0xcb,0xb7,0x44,0xd6,0x65, - 0xd3,0x38,0x3d,0x9f,0x25,0x97,0x9d,0x69,0x4c,0xf7,0x3e,0xd1,0x66,0xe7,0xf1,0x9f,0xc9,0xb4,0x73,0xc5, - 0x17,0xc5,0x98,0x0a,0x2c,0x59,0x8e,0x60,0xc8,0x92,0xb8,0x4d,0xfc,0xf2,0x03,0x95,0x2e,0xd4,0xb0,0x41, - 0x92,0x10,0x31,0x38,0x4f,0x93,0x78,0x71,0x4d,0x7f,0xa7,0xb1,0xc4,0x0e,0xc2,0x88,0x31,0x68,0xa2,0x0d, - 0xe2,0x3f,0x63,0x08,0x60,0x68,0x0f,0x3a,0x29,0x0d,0x25,0x4e,0x1b,0xe2,0x97,0xe3,0x2c,0x06,0x99,0xd3, - 0x48,0xd7,0x22,0x98,0xa7,0x66,0x80,0xd9,0xbc,0x98,0x45,0x51,0xfa,0x97,0xa4,0x31,0xbf,0x24,0x25,0x8d, - 0x6c,0x74,0x11,0x5d,0xc6,0xb3,0x4f,0x17,0xc9,0xd4,0x6b,0x29,0xb9,0xcc,0x3b,0x1a,0xc4,0x1c,0xce,0x47, - 0xc6,0x4d,0xe9,0x4c,0x42,0x83,0x9c,0xc6,0x4b,0x62,0xb5,0x30,0x97,0x36,0x09,0x4d,0x34,0x21,0xc8,0xc8, - 0xd2,0x4d,0x01,0xcd,0x4f,0x94,0x39,0x8d,0xb1,0xfe,0x71,0xae,0xe2,0x07,0x10,0x61,0x73,0x89,0x76,0x9a, - 0x82,0x9a,0x5f,0xab,0x12,0x54,0x78,0x96,0xe5,0x28,0x54,0x17,0xd6,0xbc,0xc6,0x48,0xd0,0x92,0x0c,0xe5, - 0x53,0xc4,0x35,0x3f,0x2c,0x92,0x71,0x32,0x8d,0xb7,0x88,0x6b,0x88,0x63,0xc1,0xa9,0x88,0x01,0x21,0xd8, - 0xcf,0xd9,0x04,0x54,0xbe,0x92,0xc9,0xc4,0x49,0xb9,0x21,0xb3,0x39,0x96,0xb2,0x5a,0x58,0x13,0xc7,0x33, - 0xf6,0xd8,0x12,0x53,0x3b,0xe9,0xe7,0x49,0x6d,0xde,0x8f,0x9b,0x52,0x9b,0x97,0x0c,0x0b,0x1d,0xc2,0x17, - 0x9d,0x65,0x86,0x3b,0x82,0xca,0x54,0x0c,0x7a,0x1c,0x57,0xd2,0x9a,0x65,0x6d,0xa9,0x62,0x78,0xdc,0x4b, - 0x8a,0x0d,0xb9,0xcd,0x54,0x56,0xbe,0xde,0xcc,0x34,0x36,0x1c,0x4c,0x9c,0x8f,0x1b,0x02,0x9c,0xe3,0x5a, - 0x51,0x9a,0x98,0x80,0x48,0x9c,0x7e,0x5c,0x8a,0x13,0x4b,0x1f,0x75,0xae,0x5c,0x57,0x62,0xae,0x9b,0x8e, - 0xc2,0x32,0x8b,0xa7,0x3a,0x4d,0x73,0xde,0xb4,0xe5,0xd7,0x54,0x33,0xce,0xab,0x1e,0xea,0x1c,0x3c,0x24, - 0x08,0xf1,0x64,0x43,0x9e,0xf3,0x6b,0x54,0x94,0xd2,0x69,0x43,0x9e,0xf3,0x3b,0xee,0xe3,0xf9,0x65,0x76, - 0x55,0x94,0x75,0x99,0x0e,0x67,0x40,0x15,0x79,0x1a,0x41,0xad,0xd5,0x16,0xed,0xe8,0x91,0x83,0x1c,0x4d, - 0x1b,0xa2,0x1d,0x3a,0x96,0xe3,0x68,0xda,0x90,0xed,0x3c,0xa7,0x85,0x31,0xa9,0xb6,0x6c,0x27,0x8b,0xad, - 0x8c,0x4a,0xb4,0xf3,0x9c,0x3b,0x36,0x19,0x5a,0xb6,0xf3,0x6b,0x4e,0x5d,0xeb,0xc4,0x4a,0xb8,0xf3,0x3b, - 0x61,0xf4,0xaa,0xb0,0x16,0xee,0xfc,0x9e,0xc9,0x40,0x6a,0xc2,0x9d,0xa7,0xf1,0x75,0x3c,0x65,0x35,0xdd, - 0xa6,0x78,0x47,0x6d,0xfd,0xb9,0x2a,0xb0,0x7d,0xfb,0x1b,0x92,0x9e,0xa7,0x1b,0x15,0x6a,0x40,0x70,0x97, - 0xc0,0xe7,0x0d,0xdd,0x51,0x56,0x05,0xe2,0x7b,0x09,0x6e,0x21,0x02,0xed,0x34,0x01,0x91,0xc9,0xa2,0x78, - 0x42,0x60,0x7b,0x97,0xcc,0x67,0x2b,0x70,0xb5,0xcb,0x7c,0x34,0xc4,0x58,0x22,0x1f,0x0b,0xf8,0xea,0x82, - 0x9f,0x1a,0xf8,0x6d,0x95,0xfe,0xd0,0x28,0x2f,0x88,0xa6,0x6b,0x93,0xfe,0x3c,0x11,0xb9,0x4f,0x7c,0xa7, - 0xd8,0xe7,0x7b,0xcc,0x1f,0x62,0x1f,0x83,0x6d,0xa6,0xf1,0x2c,0x79,0x7f,0x89,0xa9,0x25,0x2d,0x4d,0x1b, - 0xa1,0xcf,0xd3,0x0c,0xa2,0xb3,0x34,0x8a,0x72,0xda,0xcc,0x34,0xb6,0x26,0xde,0x26,0xfe,0x91,0x12,0xaa, - 0x38,0x6a,0x6e,0x95,0x03,0x55,0xc8,0xd6,0x60,0x4a,0x0b,0xff,0xda,0x17,0x65,0x43,0x12,0xf4,0xc4,0x96, - 0x4d,0xd4,0x80,0xc3,0x2a,0x26,0x64,0x3d,0x9d,0x9e,0x4b,0xa2,0x94,0xc1,0x14,0x67,0x32,0xdd,0x0e,0x71, - 0x67,0x58,0x09,0x91,0x0d,0x55,0x04,0x5c,0x8c,0xeb,0x39,0x9a,0x70,0x1e,0x5d,0x95,0x51,0x1e,0x11,0x0e, - 0xe4,0x59,0xf0,0x25,0x0b,0xd2,0xc2,0xc8,0x27,0x62,0xb9,0x3f,0xd0,0xd4,0x38,0xb6,0x52,0x0d,0x5c,0x23, - 0xba,0x43,0xe7,0x79,0xbd,0x16,0x71,0xfa,0x54,0x84,0x56,0x30,0xe2,0xdd,0xee,0x2c,0x93,0xa8,0x55,0x44, - 0x44,0xf9,0xd4,0xf3,0x7b,0x7b,0x64,0x17,0xf1,0x39,0x6e,0xbf,0x2b,0x4c,0xa6,0xd7,0x79,0x27,0xf3,0x95, - 0x71,0x41,0x8a,0x43,0x54,0x5f,0x82,0xb1,0xf2,0x3c,0xed,0x31,0xf8,0x1d,0x42,0x1e,0x53,0xba,0xe4,0xd5, - 0xd5,0x22,0xd7,0xe8,0x39,0x11,0x94,0xc9,0x2c,0x99,0x8e,0x81,0xb0,0x3b,0x3f,0xc6,0x9d,0xcb,0x05,0xad, - 0xa3,0xd5,0x5a,0xd6,0x38,0x42,0x63,0xdc,0x04,0xb8,0x15,0x0c,0xff,0x28,0x4b,0x7f,0x99,0x52,0x22,0xcd, - 0x69,0x9c,0x2f,0x2e,0xb1,0x1c,0x65,0x56,0x62,0xe8,0x63,0x91,0x0f,0x45,0xb8,0x76,0x69,0x11,0x9b,0xe2, - 0x21,0x6b,0x8f,0x41,0x79,0x30,0x65,0xab,0xae,0x63,0xab,0x9c,0x6c,0x9f,0x2a,0xbb,0xb9,0x05,0x68,0x9c, - 0x96,0x28,0xa6,0x6b,0xb5,0x21,0x23,0xfa,0x75,0x31,0xeb,0x5c,0x24,0x4c,0x09,0xd0,0x11,0xc7,0x8a,0x30, - 0x01,0x41,0xc5,0xae,0xa3,0xd1,0x45,0x79,0x0d,0x92,0x95,0x66,0xe7,0x23,0xc5,0xc2,0x43,0x2c,0x1f,0x2e, - 0x17,0xbc,0xac,0x1d,0x02,0xdb,0x1c,0x17,0x36,0x2f,0x47,0xb1,0x55,0x6c,0xf4,0x9b,0x69,0x50,0x0b,0x8e, - 0xbe,0x8f,0xcf,0xf3,0x05,0x51,0x80,0x95,0xf0,0xe8,0xa2,0x26,0x3c,0xa2,0x35,0x65,0x00,0x63,0x01,0x0e, - 0x71,0xb5,0xb4,0x64,0x31,0x1d,0xff,0x3f,0x01,0x73,0x51,0xba,0x31,0x4d,0x62,0x24,0x09,0x00,0xa9,0x52, - 0xf2,0x3e,0x65,0xd8,0xbd,0x4e,0x66,0x98,0xb6,0xb5,0x57,0xa8,0x06,0xcd,0x7c,0x9a,0x10,0xfd,0xf3,0x67, - 0xf2,0x1e,0xf9,0xd7,0x31,0x4d,0xfb,0x1a,0xb0,0x4b,0x3f,0xae,0xe2,0x58,0x51,0xa2,0xe7,0x70,0xc0,0xb5, - 0x29,0x48,0xca,0xe3,0xed,0x62,0x24,0xc8,0x51,0xee,0x16,0x24,0x45,0x57,0x5b,0x04,0x49,0xef,0x40,0xca, - 0xd1,0x38,0xc6,0x5a,0x94,0x84,0xbe,0xb6,0x0a,0x92,0x9a,0x92,0xa4,0xf7,0xe3,0xba,0x24,0x29,0xfe,0x98, - 0x20,0x29,0x82,0x89,0x02,0x9d,0x03,0x82,0x2b,0x46,0x50,0x7f,0x41,0x9e,0x74,0x9e,0xbc,0xbf,0x8e,0x73, - 0x86,0xc4,0x4f,0x11,0x29,0xfd,0x2a,0x54,0x78,0x9b,0x48,0x29,0xb5,0x44,0x4a,0x4f,0x09,0xbc,0xc6,0x65, - 0x3c,0x25,0x84,0x32,0xb6,0xc4,0x4a,0x78,0x56,0xb7,0x13,0x0d,0xbf,0x65,0x97,0x87,0x60,0xa9,0x2a,0x48, - 0x5b,0x7e,0x11,0xe1,0x40,0xd2,0xb1,0x3b,0x8f,0x0a,0x42,0x28,0xe0,0x28,0x84,0x1b,0x8b,0x5b,0x25,0x4d, - 0xbf,0x67,0x31,0x4f,0xe7,0xaf,0x4b,0x9a,0x2c,0xc6,0xf3,0x0e,0x09,0x53,0xad,0x65,0x1b,0x7d,0x30,0x9a, - 0xb0,0xaf,0x32,0x22,0xf2,0xa7,0xff,0x1d,0x52,0xa6,0xcb,0x59,0xf6,0x7f,0x96,0x90,0xe9,0x09,0xb0,0x71, - 0xce,0xbc,0x20,0xc1,0x1a,0x61,0x74,0xc1,0x16,0x4b,0x3e,0xfa,0x75,0x22,0x99,0x8e,0x3e,0x73,0x7f,0xaa, - 0x4c,0xa9,0xee,0x9a,0x0b,0xc5,0x4a,0xa0,0x2c,0x44,0x4d,0x72,0xa5,0xcc,0x01,0x15,0x54,0x83,0x80,0xb7, - 0x64,0xec,0xfd,0xa7,0x60,0x3f,0x23,0x71,0xba,0x02,0x2e,0x50,0x43,0xa4,0xe2,0x5c,0x6e,0x4c,0xbd,0x42, - 0xba,0x74,0x89,0x76,0x95,0xcc,0xa9,0xd0,0x42,0x27,0x41,0x89,0xa0,0x11,0x70,0x01,0x9b,0x29,0x01,0xf2, - 0x3e,0x4d,0xec,0x04,0x8c,0xc6,0x22,0x45,0x85,0x84,0x99,0x9b,0xd0,0x13,0x06,0xde,0x1f,0xdf,0x2d,0x7c, - 0x02,0xe3,0xa6,0x78,0x61,0x23,0x78,0x52,0x77,0x98,0x3a,0x09,0x9b,0x32,0x27,0xd4,0xb1,0x58,0x13,0xc5, - 0x18,0x31,0x52,0x68,0xa9,0xa9,0x65,0x34,0x56,0x4f,0x77,0x55,0xa9,0x4b,0x38,0x50,0xb1,0x46,0x53,0xde, - 0x51,0xbb,0x29,0xe6,0x40,0xfd,0x26,0x85,0xfc,0xb1,0x36,0x36,0xc4,0x51,0x9f,0x30,0x5f,0xe6,0xec,0x1b, - 0x42,0xa9,0xbb,0x26,0xac,0xea,0x6c,0xca,0xa6,0x50,0xd1,0xc6,0x09,0xf5,0xe1,0x35,0x25,0x53,0xdf,0xb1, - 0x88,0x10,0xf4,0x6d,0x5a,0x54,0xe8,0x95,0x01,0x7e,0x8b,0x78,0x8a,0x17,0x14,0x37,0xe0,0x47,0x46,0xd5, - 0x94,0x50,0xfd,0x54,0x61,0x41,0x4b,0x24,0x95,0x6a,0x6a,0x67,0x6e,0x2d,0xdd,0x5f,0xd8,0x3d,0x7b,0xf9, - 0xfe,0xf2,0xf6,0x49,0x23,0xeb,0xf5,0xba,0x0a,0x61,0xc2,0xb2,0x9c,0x27,0xf3,0xb9,0x51,0xcd,0x82,0x24, - 0x4e,0x79,0xba,0xaf,0xfc,0xc7,0x44,0xcb,0x84,0xee,0xdf,0x2c,0xef,0xcd,0x08,0x77,0x2c,0xa2,0x69,0xdc, - 0x74,0xe6,0xe2,0xf0,0x6d,0xa7,0x5d,0xc3,0x18,0x53,0x7a,0xaf,0xaf,0x9a,0x73,0x6f,0x63,0xba,0xab,0xfe, - 0x46,0xc3,0xa7,0x9b,0x9f,0x9a,0x0e,0x62,0x9f,0x5d,0xad,0xdc,0xa6,0x34,0x97,0x49,0xa2,0xd6,0x90,0x0d, - 0xac,0xb4,0x34,0x6b,0xe7,0xd0,0x2f,0x44,0x42,0xb4,0x73,0xa4,0xbe,0x64,0x77,0xe8,0xa7,0x2a,0xf3,0x82, - 0xc0,0x6d,0x84,0x71,0x05,0xce,0x4a,0x6f,0xfb,0xdb,0x3c,0x9b,0x32,0x96,0xa5,0x62,0x72,0xf6,0x8f,0xa3, - 0x73,0xc4,0x0f,0x11,0xa9,0x87,0xd6,0x69,0xba,0xad,0xe4,0x73,0xaa,0x31,0x96,0x3a,0xe9,0x6c,0x3b,0x71, - 0x5d,0x97,0x45,0xcd,0x83,0xdb,0x58,0xf1,0x58,0xd4,0x45,0x42,0xf4,0xd6,0x61,0x8f,0xff,0xab,0x84,0x4e, - 0xb5,0x12,0x4a,0x30,0x73,0x58,0x2f,0xba,0x56,0xf0,0x43,0x7d,0x18,0x10,0x42,0xc0,0xb6,0x4a,0x6c,0x02, - 0xde,0xcf,0x6e,0xa7,0xac,0xb3,0x85,0x62,0x8c,0xa6,0x8b,0xc3,0x95,0x96,0x70,0x43,0xb5,0x3a,0xf1,0x36, - 0x06,0x75,0x4b,0x7b,0xe3,0x78,0x46,0x24,0xd6,0x46,0xd3,0x75,0xde,0xc9,0xd0,0x5d,0x5c,0xce,0xe6,0x89, - 0xb0,0x65,0xa5,0x99,0x0b,0x93,0xab,0x5c,0xc6,0x10,0xab,0xd2,0x09,0x88,0xd4,0x1d,0x5e,0x0f,0xfe,0x6d, - 0x11,0x7d,0xfc,0x5b,0x53,0x7a,0x6c,0x6b,0x6f,0xa8,0xb4,0x8a,0x16,0x12,0x1b,0x47,0x8b,0x06,0xfa,0xd2, - 0x27,0xda,0x53,0x01,0x0f,0x81,0x8b,0x74,0x49,0xf0,0x4f,0x88,0x3c,0x1e,0x13,0xb9,0x21,0x39,0xf1,0x18, - 0xa4,0x84,0x8c,0x79,0xae,0xc8,0x05,0x29,0x7a,0x7d,0x85,0x8b,0xdf,0x7c,0xd3,0x85,0x2e,0x5d,0x5b,0x57, - 0xb6,0xce,0xac,0x6e,0x65,0x4e,0xb1,0xef,0x5e,0xda,0x7e,0x2d,0x22,0xc3,0xec,0xf4,0x37,0xbb,0x26,0x08, - 0xb0,0x30,0xc8,0x80,0xbf,0x3b,0x83,0x31,0x40,0x03,0x2a,0x49,0x0e,0xe7,0xe4,0x31,0x9e,0xf2,0x96,0xb1, - 0x4e,0xa0,0x65,0x67,0x87,0x7c,0x1b,0x51,0x6a,0x95,0xe7,0xb0,0xb2,0x67,0x9f,0x1e,0xd4,0x52,0xc1,0x76, - 0x4c,0x3c,0x2a,0x66,0x68,0xe1,0xb1,0xd6,0x75,0xf8,0xd3,0xd1,0xbe,0xc5,0x94,0x02,0xa1,0x1e,0x0b,0xcc, - 0xfe,0x2f,0xb4,0x65,0xff,0x91,0x84,0x3b,0x2e,0x7b,0xe6,0xf8,0x98,0x38,0x86,0x79,0xf9,0xb2,0x71,0xf2, - 0x60,0x11,0xd8,0x6b,0x22,0x68,0x4e,0x54,0x42,0x56,0x5e,0x04,0x76,0x6a,0x04,0xb5,0x6d,0x84,0x24,0xb4, - 0xce,0xb2,0x8c,0x79,0xe7,0xa8,0xdf,0xd0,0x1e,0x66,0x2b,0xc9,0xc3,0x7e,0xf6,0xe8,0xe8,0xe1,0x43,0xfa, - 0xd3,0x0d,0x8f,0xbe,0xf4,0x94,0xcb,0xca,0x4c,0xfc,0x16,0x64,0xe1,0xfe,0x7d,0x64,0x3d,0x0a,0xef,0x9b, - 0x12,0x89,0x29,0x51,0xf6,0xaa,0x95,0x0d,0x73,0xea,0xb3,0xb6,0xb4,0x61,0x42,0x29,0xd6,0x1d,0xef,0x7a, - 0xbd,0xf2,0x22,0x4e,0x6d,0xd7,0x43,0x92,0x5f,0x5d,0x71,0x5b,0x8b,0xc8,0x55,0xb6,0x35,0xdb,0xc6,0xf4, - 0x5b,0x0b,0xd5,0xf1,0xf9,0xf6,0xae,0xb0,0x62,0xad,0xb9,0x45,0x99,0xcd,0x5b,0x37,0x46,0x61,0x31,0x5a, - 0xe1,0xb5,0x67,0xfd,0xe7,0x2b,0x15,0xd4,0x00,0x21,0xc5,0xae,0x5f,0xdb,0x28,0xb8,0xcd,0x57,0x2e,0x03, - 0x5b,0x5a,0x03,0xb6,0xf0,0x56,0xe1,0x78,0x42,0xe4,0x42,0x34,0x95,0x6b,0x15,0x0f,0x3b,0xdd,0x84,0xca, - 0xbd,0xbd,0xd1,0x8c,0xb0,0x1d,0xbe,0xe9,0x2a,0x76,0x5b,0x4a,0x20,0x8a,0xe1,0x26,0x30,0x17,0x71,0xa9, - 0xeb,0x58,0xf3,0x6d,0x8c,0x44,0xd0,0xc1,0x96,0xa3,0xb0,0xf6,0xbf,0x8c,0x1f,0xc0,0x39,0x64,0x32,0x8e, - 0xdb,0xe7,0xa9,0xac,0x92,0x5a,0x9a,0xe4,0xd9,0x6c,0x64,0xaa,0x09,0xb9,0xb5,0x19,0xb5,0x97,0x52,0x96, - 0x16,0xed,0x23,0xc3,0xa0,0x88,0x2d,0x9d,0xc5,0x84,0x3f,0xf8,0xe9,0xac,0xe1,0xd1,0x5a,0x53,0xb6,0xb3, - 0x0c,0x51,0x7f,0x94,0x8a,0xb1,0xe3,0x70,0xfc,0x63,0x42,0x49,0x73,0xca,0x8e,0x07,0xce,0x0f,0xc7,0xc4, - 0x17,0xea,0x9f,0x1d,0x04,0x80,0xeb,0x38,0xdd,0xaa,0x40,0x4f,0x5d,0x3e,0x48,0x61,0xd2,0x7a,0x00,0x8d, - 0x37,0x9d,0xeb,0x04,0xc6,0x2b,0xbe,0x8c,0xb4,0x09,0x0d,0x70,0x79,0xed,0x96,0x5e,0xd7,0x39,0x4d,0x4f, - 0x53,0xa7,0x9b,0xfb,0xec,0x31,0xdd,0xa6,0x8e,0x3f,0xaa,0xd9,0x1d,0x7d,0x48,0x32,0x76,0x03,0xe5,0x3a, - 0x07,0xd1,0x3c,0x39,0x50,0x97,0xab,0xd3,0x04,0xe1,0xb6,0xb0,0x6f,0xa5,0xf2,0x66,0x4d,0x43,0xd0,0x4a, - 0xd2,0x92,0x44,0xf0,0xdb,0x53,0xfe,0xfb,0x7b,0xf5,0x05,0xec,0x81,0xfc,0x84,0x6f,0x2d,0x06,0x48,0xfb, - 0x80,0x3b,0x9e,0x1a,0xb6,0x45,0xb3,0x7e,0xd6,0xc8,0xab,0xeb,0xef,0x73,0x07,0x5f,0xd5,0xfc,0x2b,0xe3, - 0xb7,0x94,0xd4,0xf4,0x14,0x14,0xed,0xfc,0x59,0xc3,0x57,0x4f,0xe3,0x9f,0x39,0x74,0xa9,0xf5,0x57,0x86, - 0xad,0x14,0x72,0xf4,0x90,0x6b,0xe4,0xee,0x67,0x0d,0x5c,0x13,0x21,0x07,0xac,0xb1,0xda,0x32,0x7e,0x78, - 0xe1,0x69,0x9f,0x82,0x46,0x5e,0x86,0x1c,0x92,0xe4,0x9e,0xfa,0xb9,0x5a,0x6d,0x92,0x40,0xaa,0x44,0x3d, - 0x75,0xb5,0x3a,0xac,0xd1,0x42,0x9b,0x0e,0x86,0x4c,0x35,0x29,0xe4,0xd9,0xa1,0x76,0xfb,0xf9,0xa3,0x46, - 0xb6,0x89,0xb7,0x6b,0x87,0x46,0xae,0x95,0x38,0xc9,0x87,0x84,0x6d,0x4d,0x79,0x71,0x6e,0x7d,0xce,0xcf, - 0xc0,0x29,0x68,0x91,0xa4,0x57,0xfd,0xb0,0x46,0x87,0x10,0x97,0x94,0x67,0xfd,0x42,0xa6,0x9e,0x7d,0x52, - 0x9b,0xb8,0xb9,0x1d,0xeb,0x15,0x1e,0x1f,0x0e,0x0e,0x91,0xa2,0xa6,0x6d,0x5f,0x9a,0x1b,0x05,0x4d,0x31, - 0xa2,0x6d,0xae,0xe4,0x95,0xc8,0x3d,0xda,0x4b,0x68,0x2a,0x37,0xc5,0x9b,0xc9,0x6f,0x71,0x7c,0xe9,0x3d, - 0xa6,0xb1,0xa9,0xa7,0x22,0xf7,0xfe,0x46,0xd6,0xb5,0x79,0x2f,0x72,0x1f,0x6e,0xd6,0xd3,0x6f,0x46,0xee, - 0xd7,0x1b,0x79,0x13,0x79,0x36,0x72,0x8f,0xbe,0xda,0xc8,0x2a,0xf4,0xe3,0x91,0xfb,0x60,0xb3,0xc3,0x42, - 0x5e,0x90,0xdc,0xaf,0x36,0xba,0x83,0xcb,0xf1,0x6a,0xc1,0x31,0xaf,0x10,0x36,0x61,0x9f,0x0e,0xf0,0x36, - 0x84,0x1b,0xb0,0x6f,0xb0,0x69,0x7f,0x0d,0xf0,0x85,0xa8,0xff,0xdc,0xa3,0x6b,0xe6,0x22,0xd5,0xff,0xca, - 0x19,0xae,0x8f,0xbe,0x42,0x3f,0x4c,0xc6,0x7e,0x1e,0xf6,0x61,0x9d,0xff,0xf6,0xc3,0xdb,0x76,0x92,0x3c, - 0xdb,0x0e,0x68,0x07,0x7e,0xed,0xc1,0x67,0xb1,0x5b,0x76,0x76,0x13,0x74,0xd8,0x8f,0xf4,0xa1,0x52,0x67, - 0x29,0xb2,0xc3,0x7e,0x23,0x03,0x36,0xbe,0xec,0x9d,0x38,0x1f,0x10,0x15,0x11,0x14,0x3b,0xf4,0x05,0xeb, - 0xcb,0x90,0x83,0xea,0xd6,0xdc,0xce,0x13,0x93,0xea,0x27,0xdd,0xb0,0x58,0xe3,0xb2,0x8c,0x39,0xb8,0x71, - 0xdc,0xab,0x11,0xef,0x12,0x88,0x71,0x32,0xcb,0xe0,0x05,0xff,0x40,0x07,0x44,0xf0,0xac,0x62,0x0c,0x2d, - 0xeb,0x0d,0xb1,0x48,0xfb,0x2a,0xc5,0x8a,0x00,0xe6,0x88,0x12,0xf2,0x89,0x59,0xca,0xaa,0xcd,0x89,0xb7, - 0xda,0xbc,0x73,0xfc,0x8a,0xe7,0xb2,0x6f,0x94,0x9e,0x4e,0xad,0x31,0x61,0xb5,0x12,0x56,0x86,0x61,0xcd, - 0x6a,0x05,0x54,0xa2,0x30,0x6b,0xf5,0x1c,0x4a,0xa9,0x38,0xb7,0x5a,0x96,0x4e,0x15,0x56,0xae,0x96,0x85, - 0x14,0x70,0x76,0xb5,0xc4,0x64,0x6e,0x33,0x79,0xf5,0x5e,0x4c,0xba,0xe1,0xfb,0x6a,0xf9,0x2a,0x71,0xdd, - 0x04,0x1f,0x04,0xef,0xf9,0x44,0x68,0x6e,0x6c,0x0b,0x81,0xf2,0x06,0x09,0x5d,0x6d,0x04,0x11,0xca,0x7a, - 0x27,0xdb,0x6f,0x5a,0xc3,0x7b,0x99,0x5d,0x2c,0x3f,0xb6,0x8b,0x5a,0x2b,0xad,0x54,0xd7,0x69,0xb3,0xef, - 0x94,0xe9,0xf7,0x36,0xba,0xcb,0xa9,0xe9,0xe4,0xe0,0x00,0xea,0xf9,0x96,0xad,0xf3,0x2d,0x6b,0xf3,0x35, - 0x57,0x70,0x1b,0xbb,0x50,0x9b,0x6b,0x2b,0x5b,0xb7,0x15,0x76,0x15,0x47,0x41,0x7c,0xde,0x34,0xa6,0x23, - 0x69,0x12,0x0c,0xc1,0xae,0xb9,0x72,0xbb,0x4b,0x15,0xe7,0xa0,0x5e,0xbb,0xdb,0xf5,0xeb,0x09,0x2a,0x16, - 0xde,0x51,0x60,0x92,0xcd,0x70,0x42,0xe7,0xc0,0xb1,0x42,0x1a,0x74,0xee,0xb7,0x96,0xd9,0xaf,0x95,0x79, - 0xd0,0x5a,0xe6,0xf4,0xb4,0x56,0xe8,0x61,0x6b,0xa1,0x95,0xe3,0x37,0x67,0xba,0x5e,0xfb,0xf7,0xbf,0x3c, - 0xe4,0xe5,0xda,0xe4,0xb5,0xec,0xd5,0x62,0xbe,0xc0,0x2c,0x82,0xb2,0x1e,0xaf,0x96,0x88,0x5a,0x20,0xcc, - 0xa8,0x59,0x65,0x3c,0x92,0x08,0x85,0xde,0xe6,0x8c,0xb6,0x12,0x3b,0xe9,0x63,0xaa,0x2f,0x71,0xed,0xf5, - 0xcc,0x56,0x0a,0x72,0x4c,0x50,0xc1,0x2d,0x75,0x85,0x17,0x50,0xab,0xac,0x22,0xfe,0xdd,0xd7,0x91,0xfd, - 0xf4,0x91,0x23,0x48,0xeb,0xab,0x6d,0x50,0x0b,0xc4,0x7f,0x4c,0x58,0x41,0xb1,0xce,0xd7,0x2b,0x5c,0xaf, - 0x8c,0x31,0x48,0x1c,0xc1,0x40,0x87,0x01,0x6a,0x1b,0xe7,0xba,0x7d,0x09,0x8e,0xe3,0x0f,0xe5,0x5f,0x5b, - 0x86,0x0e,0x1f,0x97,0xcd,0x62,0x78,0xc1,0xd5,0x62,0x88,0xb1,0xe3,0x7d,0xe6,0xfa,0x7c,0x42,0xdb,0x50, - 0x17,0xa3,0x76,0xd5,0x7a,0x7d,0x42,0x05,0xd1,0x26,0xd3,0x55,0xee,0x7f,0x4a,0x95,0x9a,0x92,0x99,0xae, - 0xa9,0x57,0xbe,0xb3,0x6d,0x2e,0xc9,0x5c,0xc3,0xf7,0x27,0x74,0x51,0xd3,0x54,0xd3,0x5d,0x7c,0xf9,0x19, - 0x35,0x13,0xd1,0x5c,0xd3,0x55,0x9b,0xdb,0x7f,0xd7,0xfe,0x54,0xa0,0x81,0xd8,0x3a,0x1b,0xd2,0xfe,0x8f, - 0x5f,0xa3,0x03,0x4b,0x48,0x10,0x6f,0x48,0xa2,0x98,0xfd,0x0f,0xb6,0xb3,0x73,0x07,0x4a,0x2e,0xfc,0x99, - 0xf4,0x55,0x35,0x97,0xcf,0x25,0xad,0x9a,0x03,0x6c,0xc3,0xd0,0x77,0xcf,0x08,0xd4,0x46,0xe3,0x95,0xa3, - 0xfd,0x9a,0xe2,0x43,0xa4,0x56,0xca,0x46,0xfd,0x87,0x2c,0xb5,0xb3,0xe5,0xe5,0xe1,0xa1,0x12,0x0d,0x42, - 0x62,0x0f,0x0f,0x0e,0xd0,0xa0,0xea,0xa7,0x2a,0x68,0xbd,0xeb,0x4c,0x12,0x18,0xab,0x1a,0xc9,0x22,0x2d, - 0xa6,0x0a,0x73,0xff,0xf4,0xe6,0x05,0x67,0xcb,0x38,0xbe,0x43,0x31,0x8e,0xa6,0x15,0x17,0xf0,0xda,0xa0, - 0x04,0x17,0x2c,0xce,0xa6,0x09,0x05,0x0f,0xbe,0x8a,0x1f,0xfa,0x59,0xfa,0x4b,0x5d,0x56,0x5f,0x73,0xed, - 0xdb,0x1c,0x18,0x93,0x5f,0x39,0x8c,0x62,0xdd,0xa3,0xc3,0xc3,0x2f,0x04,0x33,0xc7,0xe3,0x03,0xc4,0xdd, - 0x2c,0x23,0x84,0x2a,0xeb,0x6f,0x5c,0xbb,0xd5,0xbb,0x0e,0x1c,0x4d,0xfe,0xef,0xbf,0x73,0xeb,0x9b,0xd1, - 0x7e,0xed,0x36,0xa6,0x65,0xc9,0x42,0xf1,0x7d,0xe7,0xca,0xd2,0xaa,0x52,0xbd,0xb8,0x64,0x07,0xe7,0x6b, - 0x91,0x27,0x2b,0xb9,0xea,0x5d,0xb7,0x35,0xc2,0x09,0xb6,0x88,0x63,0xc1,0x0a,0x4a,0xfc,0x85,0x86,0x44, - 0x56,0xd8,0xff,0xa6,0x98,0xb6,0x5d,0x1a,0xa7,0x21,0x54,0x49,0x27,0xe9,0x9a,0x3c,0x3c,0xf4,0xbc,0x75, - 0xed,0x3d,0xad,0x7d,0x78,0xec,0xc5,0xde,0xea,0x05,0x50,0xd9,0xd2,0x2d,0x9e,0x31,0xda,0x85,0xc9,0x87, - 0x16,0x09,0xbe,0x19,0x0f,0x8b,0x43,0x61,0xf1,0x2a,0x99,0x28,0xf5,0xc4,0x26,0xd4,0x63,0x4e,0x35,0x28, - 0xfd,0xb5,0xd7,0xd7,0x5c,0x40,0x29,0x5e,0x7e,0x35,0x1b,0x8f,0xc6,0xb7,0xb6,0x99,0x77,0x43,0x95,0x7a, - 0x92,0x0e,0x25,0x9e,0x52,0xff,0x23,0x3c,0x44,0x7e,0x50,0x6f,0x43,0x02,0xcb,0x26,0x3a,0xf2,0xcd,0xd6, - 0x6e,0x94,0x78,0xbb,0xd9,0x15,0xc6,0xbc,0x45,0xd6,0xbe,0x49,0x8d,0x8a,0xf9,0xf5,0x6d,0x43,0xf0,0x71, - 0x14,0x3f,0x90,0x88,0x59,0x08,0x6f,0xff,0x6f,0x50,0xda,0xd6,0x9e,0x7f,0x8c,0xca,0x56,0xbb,0x0d,0x99, - 0x74,0xf3,0x15,0x75,0x3b,0x20,0x4b,0x01,0x81,0xcc,0xe6,0xcb,0x59,0x45,0x79,0x33,0x8e,0x87,0x6e,0x40, - 0x11,0x1c,0x1c,0xe0,0x75,0x46,0xa9,0x03,0xd0,0xe4,0x0b,0x56,0x09,0x40,0x1a,0x2f,0xc5,0x34,0xce,0x20, - 0x2e,0x3d,0x78,0x5f,0x30,0x83,0x25,0xce,0x5d,0x83,0x5b,0xad,0x94,0x54,0x75,0xe9,0x5f,0xc6,0xe0,0x49, - 0x84,0x7c,0xef,0x55,0x2f,0x3e,0xeb,0x8d,0x95,0xda,0xce,0xd2,0xe2,0xe4,0xd2,0x7d,0x58,0xc0,0x33,0x76, - 0x2d,0xc1,0x44,0xd7,0x33,0xb2,0xf6,0x5a,0x36,0x7c,0x00,0xd1,0x40,0xaf,0xe2,0x32,0xbf,0x31,0x03,0xea, - 0x9b,0xc1,0xcc,0xa2,0x12,0x8e,0x81,0xa2,0xd2,0xaf,0x92,0x08,0x9b,0xa4,0xf8,0xf7,0x93,0xe5,0x17,0xf5, - 0x1d,0xd8,0xb2,0x6f,0x9b,0x2b,0x6e,0x31,0x4a,0x9f,0x20,0xdf,0x63,0x5f,0xbd,0xe6,0x1e,0xb2,0xf8,0xde, - 0x7e,0x75,0x6c,0x8d,0xa4,0xae,0x21,0x8b,0xd1,0xd4,0x5e,0x53,0x5c,0xd7,0x2c,0x56,0xcf,0xae,0xbf,0x8d, - 0xea,0x43,0xd5,0xac,0x51,0x97,0xc9,0xa5,0x5a,0x8e,0x90,0x87,0xdb,0x8a,0xd2,0xb1,0xeb,0x97,0x1f,0x11, - 0xce,0xe5,0x96,0x70,0xae,0x26,0x99,0xcb,0x6d,0xf9,0x99,0x11,0xcb,0xe5,0xd5,0xe4,0x30,0xa5,0xbc,0x21, - 0x64,0xcb,0x6b,0x0f,0x57,0x94,0x6d,0x04,0x77,0x7e,0x25,0xc0,0x0a,0xdc,0xbc,0x27,0x12,0xb8,0xc1,0x51, - 0x70,0xe8,0xad,0x10,0xb3,0x50,0xc4,0x6e,0x83,0xfb,0xea,0xb7,0x91,0xb5,0x0d,0x1e,0xea,0x12,0x4a,0xc0, - 0x36,0xf8,0x5a,0x25,0x88,0x54,0x6d,0x70,0xf4,0x95,0xfa,0xad,0x45,0x69,0x83,0x07,0xba,0x11,0x91,0x9f, - 0x0d,0xbe,0x42,0x13,0x74,0x74,0x37,0x90,0x4b,0x5d,0x58,0xeb,0x97,0xff,0x2e,0xcb,0xde,0x10,0xaa,0x7d, - 0x9c,0x69,0xa7,0x1b,0x91,0x8e,0xae,0xfd,0xc4,0xdd,0x7c,0xe1,0xd9,0xb2,0xf5,0x1b,0x3b,0x58,0x17,0xa8, - 0x56,0x12,0x54,0xc2,0x31,0x95,0xd8,0xf4,0xcb,0x87,0x0d,0xf1,0xa8,0x11,0x82,0xee,0x54,0x42,0xcf,0x1d, - 0x5b,0xc8,0xb9,0x63,0x09,0x35,0x77,0x8c,0x10,0x73,0xc7,0x92,0x59,0xee,0x18,0x11,0xa5,0x04,0xfd,0x90, - 0x70,0xad,0xad,0x53,0x8a,0x3f,0x3e,0x27,0x15,0xf5,0x25,0x46,0xd4,0x97,0x56,0x95,0x91,0x7f,0x4f,0x32, - 0xd5,0x14,0x4e,0xfa,0x1b,0x02,0xc7,0x7f,0x77,0xeb,0x37,0x84,0x8f,0x77,0x4b,0x6c,0xc6,0x75,0x89,0xe5, - 0xf6,0xed,0x97,0x11,0x7e,0x14,0x00,0xac,0x2d,0x9f,0x27,0x69,0x70,0xdf,0x1f,0x1b,0x4d,0x77,0x6b,0x67, - 0xb6,0xf4,0xb7,0xb1,0x37,0xcd,0x0e,0x6b,0xbb,0x03,0x1f,0x9d,0x09,0xa5,0x44,0x0c,0xee,0xad,0xcf,0xaf, - 0x8e,0xd3,0x47,0xb4,0x64,0x09,0x1a,0x90,0x76,0x43,0xa7,0xeb,0x68,0xb2,0xda,0xa2,0x2a,0xe2,0x83,0xaf, - 0x0e,0x3d,0x3f,0x91,0xa4,0xe8,0xbc,0xa0,0x71,0xfc,0x8f,0xaf,0x0e,0xb5,0x4c,0x16,0xd1,0xef,0xba,0x4e, - 0xe0,0xf8,0xc9,0xa3,0x23,0xdd,0xcc,0xa1,0xe3,0xf9,0x29,0x42,0x69,0xae,0x7d,0x0e,0x59,0x43,0x97,0x9f, - 0xd6,0x5f,0xb8,0x95,0x2d,0xda,0x5c,0x45,0x9b,0xea,0x04,0xb1,0x07,0xcd,0x58,0x0e,0xe4,0x5b,0x57,0x77, - 0xf8,0xfc,0xfa,0xc5,0xe7,0xf5,0xab,0xc2,0xfb,0x58,0xfd,0x1b,0x55,0x1f,0x7b,0x23,0xda,0xd4,0x1c,0x42, - 0xe7,0x6f,0x4e,0x37,0x86,0xef,0xa7,0xf5,0xff,0x07,0x0d,0xb3,0xd4,0xe3,0x07,0x09,0x02,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb2,0x36,0xfc,0x57, + 0x24,0xbc,0xbe,0x34,0x30,0x6a,0xd1,0x92,0x93,0xcc,0x9d,0x80,0x46,0xf8,0x7a,0x8d,0x9d,0x78,0x1b,0x5b, + 0x59,0x66,0x14,0x5d,0x1d,0x88,0x04,0x25,0xc4,0x24,0xc0,0x00,0xa0,0x96,0x88,0x7c,0x7f,0xfb,0x57,0x4f, + 0x55,0x6f,0x00,0x21,0x27,0x99,0x73,0xcf,0x77,0x7c,0x2c,0x02,0xdd,0x8d,0x5e,0xab,0xab,0x6b,0xef,0xdd, + 0xd9,0xaa,0x98,0x34,0x79,0x59,0x84,0x99,0x6a,0xa2,0xdb,0xa0,0x3c,0xfb,0x35,0x9b,0x34,0x41,0x92,0x34, + 0x37,0xcb,0xac,0x9c,0xed,0x64,0xd7,0xcb,0xb2,0x6a,0xea,0xc1,0x60,0x2b,0x67,0x51,0x4e,0x57,0xf3,0x6c, + 0x2c,0x3f,0x43,0x5d,0x2e,0x69,0xc2,0x28,0x0e,0x4c,0x9d,0xae,0xf0,0x34,0x9b,0xe5,0x45,0x36,0x18,0xc8, + 0xef,0x30,0x5d,0x4c,0xc7,0xf2,0x18,0x1e,0x9f,0x50,0xbb,0xf1,0x5d,0xed,0x8e,0xf5,0xef,0x30,0xbd,0xce, + 0x4b,0xa9,0x3d,0x73,0xcf,0x9b,0xb0,0xb9,0xc8,0x6b,0x65,0x87,0x10,0xdd,0x56,0x59,0xb3,0xaa,0x8a,0x1d, + 0x37,0xa8,0xe8,0xd6,0x3c,0xef,0x34,0x61,0x15,0xdd,0xe6,0xb3,0xb0,0x38,0xae,0x4e,0x22,0x5d,0x10,0xcf, + 0xa6,0xef,0xa3,0xcb,0xb4,0xda,0xc9,0x13,0x24,0x25,0xb7,0x3a,0x2d,0xbe,0xdd,0xa8,0x7c,0x1a,0x57,0x6a, + 0x5e,0xa6,0xd3,0x6c,0x1a,0xef,0x1e,0x6e,0x46,0xfa,0xd3,0x0c,0x9f,0x4e,0xd2,0xf9,0x3c,0xcc,0x4d,0x0d, + 0x2a,0x57,0xee,0xb9,0x89,0xe8,0x45,0x3e,0x4b,0x76,0x0f,0x5c,0xc6,0x06,0xcd,0x14,0xc9,0xad,0xad,0xa8, + 0x19,0x2e,0x12,0x9a,0xfc,0xe1,0x24,0x29,0xe8,0xef,0x32,0x09,0x02,0xd5,0x84,0x07,0x34,0xb8,0x63,0x7f, + 0x6d,0x54,0x11,0xdd,0xba,0x69,0x2e,0xc2,0xc3,0x68,0xa3,0xba,0xf9,0xc1,0xaa,0xce,0x76,0xea,0xa6,0xca, + 0x69,0x26,0x47,0x76,0xdc,0x15,0x66,0x01,0x8d,0x36,0x49,0x91,0x5d,0xed,0xa4,0xf4,0xaa,0x8a,0xa4,0x0c, + 0xd3,0xe1,0xb2,0x2a,0x9b,0x12,0x13,0x3e,0xac,0xb2,0xdf,0x56,0x59,0xdd,0x50,0xa7,0x4d,0xaf,0xd0,0xdf, + 0x26,0x2b,0xa6,0x61,0xa1,0xbc,0x82,0x32,0x2a,0x9b,0x43,0x6f,0xc5,0x46,0x4f,0x5b,0xf8,0x30,0x52,0x25, + 0xfd,0x7c,0x11,0xa9,0x94,0x7e,0xbe,0x8a,0x14,0xba,0xf9,0xf7,0x48,0x4d,0x92,0x2a,0xac,0xa3,0xd1,0x64, + 0xf8,0x98,0xd7,0x2d,0x55,0x93,0xe1,0xa4,0xca,0xd2,0x26,0x4b,0xfc,0x65,0xd2,0xcd,0x56,0x34,0x9b,0x8b, + 0xac,0x3a,0xcf,0xc2,0x5a,0x65,0x11,0x8d,0x71,0x32,0x7c,0x9a,0x16,0x93,0x6c,0x8e,0x06,0xa8,0x6a,0xf3, + 0x7a,0x54,0x7e,0xca,0x0a,0xa4,0x7d,0x89,0xb4,0xbc,0x76,0x85,0x0e,0x90,0x40,0xcb,0xd2,0x57,0xfb,0xfb, + 0xaa,0x5c,0xe4,0x75,0x86,0x6c,0x4a,0x45,0xe5,0xf5,0x92,0xba,0x32,0xc5,0x77,0xd4,0x61,0x37,0xbf,0x13, + 0xf7,0x3c,0x24,0x40,0x4d,0x57,0xf3,0x26,0x99,0xfc,0xa5,0x09,0x97,0x16,0x83,0x63,0x01,0xec,0x9d,0xc7, + 0x55,0x95,0xde,0x9c,0x10,0x7c,0x27,0x2b,0x01,0x1a,0x6a,0xde,0x7e,0x90,0x7b,0x5d,0x2c,0x56,0xf3,0xf9, + 0x6e,0x92,0x64,0x3d,0x3b,0x2e,0x73,0x5f,0x94,0x3d,0x4d,0xbc,0xd0,0x99,0x77,0xb5,0x92,0xca,0x16,0xc7, + 0x0e,0xb0,0x6d,0x5c,0x96,0xf9,0x74,0xe7,0x00,0xcf,0x11,0xa5,0x9b,0x16,0x77,0x6d,0x8b,0x83,0x41,0x98, + 0x25,0xc7,0xd9,0x49,0xa4,0x30,0xa8,0x68,0x56,0x56,0xa1,0x80,0x2f,0x01,0x74,0x92,0x0d,0xe7,0x59,0x71, + 0xde,0x5c,0x8c,0x8a,0x47,0xf9,0xa8,0xd8,0xdb,0x8b,0x1a,0x69,0x14,0xd5,0xab,0xec,0xb8,0x38,0x51,0x05, + 0xad,0xe1,0x28,0x9b,0xd3,0x24,0x99,0x2f,0xcb,0x9d,0x9c,0xb6,0x4e,0xf4,0x8e,0x1b,0xf2,0x00,0xf0,0x22, + 0xad,0xdf,0x5d,0x15,0xb4,0x3e,0xcb,0xac,0x6a,0x6e,0x74,0xe7,0x55,0x19,0x0d,0x06,0xed,0x4a,0xcb,0x13, + 0x55,0x52,0xa5,0x0c,0x74,0xb5,0x40,0x1b,0xed,0x9b,0x90,0xa0,0x60,0x95,0x6c,0x55,0xda,0x94,0x1f,0x69, + 0x6d,0x8a,0xf3,0x91,0x5b,0xd8,0xdb,0xbc,0xe6,0xa5,0xa0,0x2d,0xad,0x9f,0x9e,0xac,0x66,0xb3,0xac,0x8a, + 0xb7,0xa1,0xa5,0xbd,0x76,0x52,0xac,0x33,0xb7,0x54,0x87,0xfe,0x7c,0x42,0x8f,0x2f,0xca,0x6a,0xf1,0x2c, + 0x6d,0xd2,0xbe,0xba,0x56,0x85,0xe0,0xbb,0xa9,0x9b,0x5c,0x53,0x7c,0x30,0xc8,0x68,0x52,0xea,0x06,0x10, + 0xec,0x25,0x6f,0xda,0x1d,0xfc,0x31,0xcf,0xae,0xfe,0x64,0xc5,0xde,0x57,0x83,0x81,0xf7,0x42,0xdb,0x04, + 0xb5,0x8c,0xb7,0x93,0xa8,0xbe,0x98,0xd6,0x3a,0x1b,0x9e,0xe9,0xaf,0xcc,0x93,0xdf,0x31,0xef,0x33,0xf4, + 0x4d,0xa6,0xb6,0xaf,0x4b,0x35,0xe7,0xf8,0x70,0x4b,0xc5,0xdf,0xae,0x16,0x67,0xfd,0xd3,0x5c,0x70,0x4e, + 0xa7,0xb8,0xac,0x65,0x4c,0x08,0xb5,0xfe,0xc1,0x8c,0xb0,0xe7,0xe3,0x1d,0x01,0x60,0x5a,0x14,0xfe,0x8a, + 0xe6,0x2d,0xfb,0xdc,0x4a,0x22,0x7f,0x7b,0x09,0x5f,0xe4,0xf3,0xcf,0x7e,0x85,0xfc,0x9e,0x85,0x9f,0x97, + 0x67,0x9f,0xfb,0x0a,0xf9,0x3d,0x6d,0xe9,0x0f,0xe2,0x52,0xa6,0x30,0x4b,0x17,0x7d,0xc3,0x02,0x46,0x18, + 0x0c,0x68,0x97,0x0f,0x97,0xf9,0x52,0xbe,0xfc,0xe1,0xc3,0xeb,0x8f,0x59,0x5a,0x4d,0x2e,0xde,0xa7,0x55, + 0xba,0xa8,0xff,0x24,0x2c,0x74,0xbe,0xea,0xc0,0x5a,0x27,0x57,0x96,0x35,0x2d,0xa6,0x69,0x35,0x7d,0x52, + 0x95,0x57,0x75,0x56,0x3d,0x2f,0x2e,0xe3,0xad,0xf3,0x35,0xf4,0x5a,0xb2,0xcb,0x56,0xa4,0x97,0xf9,0x79, + 0xda,0x94,0xd5,0x7a,0x1d,0x7c,0xc8,0xd2,0x49,0xf3,0x36,0x6d,0xf2,0xcb,0x8c,0xba,0x92,0xd8,0x2c,0xec, + 0xcd,0xe9,0x6a,0xd2,0xd0,0xd8,0xfa,0x3a,0x7b,0x95,0x17,0xd3,0xf2,0xaa,0x3f,0x6f,0x5a,0x4e,0x56,0x8b, + 0xac,0x68,0x08,0x09,0x97,0xd5,0xf3,0x74,0x72,0x11,0xa7,0x8a,0x0f,0x0a,0xdb,0xbd,0x9d,0x2c,0x6c,0x9d, + 0xf6,0x8d,0xaa,0x7a,0x08,0x1a,0x1c,0xef,0x3d,0xb8,0xb5,0x19,0xf3,0xb9,0x9f,0x31,0x75,0x00,0x8a,0x84, + 0x5f,0x9b,0x8d,0xc3,0x78,0x44,0x09,0x54,0x8c,0xf6,0xd2,0xea,0x9c,0x7b,0x52,0x1b,0xf4,0x57,0x11,0xfa, + 0xab,0x08,0xfd,0xa5,0xa1,0xcd,0x92,0x4a,0xcc,0x59,0x5a,0x6c,0x94,0x1c,0x99,0x71,0xf7,0x00,0xd1,0x05, + 0x52,0xea,0xac,0xcd,0xe2,0x7e,0x83,0xba,0x48,0x0a,0xea,0xe8,0x36,0x2d,0xd5,0x8c,0xeb,0x10,0x1f,0xc7, + 0xcd,0x86,0x8e,0xac,0x8d,0xa2,0xdd,0xd6,0x0b,0x43,0x38,0xd5,0x97,0xf3,0x74,0x92,0x85,0x0f,0xfe,0xe7, + 0x97,0xfa,0x6f,0x0f,0x54,0x10,0x44,0x2e,0x89,0x52,0xee,0x71,0xd2,0x66,0xd3,0x3e,0xd7,0x3a,0xa7,0x9a, + 0x43,0x9d,0xed,0x42,0x5d,0x4a,0x8b,0xa6,0xde,0x4e,0x15,0xc8,0x0c,0xc6,0x16,0x61,0x77,0xae,0x22,0xcc, + 0x21,0x4d,0x58,0x61,0xe7,0x8e,0xe6,0x8d,0xa7,0xda,0x9f,0x3a,0x4b,0x62,0x0d,0xd3,0xe5,0x72,0x7e,0xc3, + 0xa3,0xdd,0xee,0xa6,0x5d,0x6a,0x6f,0xd0,0xbb,0xbb,0xd9,0x70,0x52,0x12,0x80,0x57,0x04,0x65,0x65,0xd5, + 0x3b,0x7f,0xad,0x12,0x43,0x83,0xc1,0x81,0xf3,0xfa,0xd2,0xb1,0x6f,0xfb,0xe6,0xa0,0x73,0x60,0xe3,0xa4, + 0x44,0xea,0x7a,0x1d,0x36,0x44,0xcd,0xf5,0x2d,0xdb,0x10,0x94,0xc6,0x0b,0xa2,0x08,0x9b,0xd7,0xcf,0xfb, + 0x17,0x76,0x58,0xcf,0xf3,0x09,0xd5,0x44,0x30,0x20,0x8f,0xe1,0x81,0x3a,0x88,0x22,0xaa,0x14,0xe3,0x3a, + 0x35,0x5d,0x8a,0x98,0x52,0x6d,0x36,0x7f,0x89,0x1e,0x01,0xa5,0x6c,0x48,0x99,0x1a,0xf4,0x26,0xde,0xf3, + 0xa2,0xc9,0xaa,0x49,0xb6,0xa4,0x01,0xd3,0xd1,0xa8,0x89,0xc0,0x98,0xa9,0x44,0x55,0x65,0xf5,0x92,0xe6, + 0x23,0x93,0xd7,0x8d,0x25,0xf3,0xfe,0x2e,0x64,0xde,0x43,0x21,0xf3,0x0e,0xff,0x5b,0xe8,0xbc,0xc3,0x7f, + 0x10,0xb4,0x6f,0x13,0x94,0xad,0x09,0xdb,0x3e,0x18,0x98,0xbc,0x28,0x35,0xc1,0x77,0xbb,0xaa,0xe6,0xb1, + 0x03,0x83,0x83,0x93,0x8d,0x72,0x6f,0x87,0x27,0x51,0xa4,0xbc,0xc2,0xb9,0x6a,0x0d,0x48,0xdd,0x2e,0xb2, + 0xe6,0xa2,0x9c,0xc6,0xc1,0x79,0xd6,0x04,0x1b,0x90,0x8e,0x43,0x49,0x21,0x2a,0x45,0x1e,0x88,0x1a,0x78, + 0x5d,0x5e,0x65,0xd5,0xd3,0xb4,0x26,0x44,0x21,0x53,0x98,0x1c,0xd7,0x4a,0x4e,0x10,0xa2,0x55,0x12,0x43, + 0x1d,0xd2,0xc8,0xcb,0xf9,0x65,0x46,0x5d,0x1e,0x01,0xa6,0xb7,0x66,0xca,0x0c,0x6e,0xa8,0x31,0x51,0xe8, + 0x0f,0xb2,0x19,0xae,0x8a,0xfa,0x22,0x9f,0x35,0x84,0xbb,0x67,0xab,0xf9,0x2c,0x9f,0xcf,0xb3,0xa9,0x42, + 0xa5,0x40,0x38,0xd9,0x34,0xa2,0x4d,0xdb,0x57,0xa3,0x4c,0xf6,0x1d,0x55,0x2e,0x57,0xf5,0xc5,0xdd,0xf5, + 0x8d,0x1a,0xb3,0x9b,0x22,0xda,0x7b,0xc3,0xe6,0x22,0x63,0x00,0xe2,0x4e,0x50,0x63,0xe6,0xc9,0x47,0x47, + 0xa5,0x6d,0xe8,0x38,0x98,0x66,0xf3,0xac,0xc9,0x02,0xc5,0x53,0xa7,0x82,0x0b,0x82,0x52,0xfa,0x29,0x97, + 0x68,0xbe,0x0e,0x4e,0x54,0x0b,0xe6,0xdd,0x12,0x13,0x55,0x98,0x78,0x38,0xcb,0x21,0x33,0x1e,0x9d,0x9e, + 0xa2,0xd0,0xac,0x57,0xb1,0x5e,0x13,0x02,0x35,0xab,0x94,0x29,0xac,0x35,0xe1,0x2f,0xda,0xd6,0x51,0xab, + 0x33,0xcb,0xb2,0x46,0x27,0x96,0x2b,0xfe,0x9b,0x36,0x93,0x8b,0x3f,0xdf,0x03,0xe0,0xcd,0xcf,0xf5,0xa1, + 0xea,0xeb,0x83,0x9a,0x82,0x62,0x2b,0x74,0x57,0xdc,0x4e,0xaf,0xfe,0xc2,0xee,0x02,0x36,0xda,0xcd,0x87, + 0x1e,0xa9,0xc2,0xc7,0x77,0x27,0xe5,0x38,0x78,0x5a,0xd2,0x9a,0x17,0xcd,0xfe,0x11,0x75,0x3e,0x38,0x89, + 0x00,0xfd,0xdd,0xc4,0xa4,0x89,0xba,0x0c,0xd5,0x7f,0x63,0xa7,0xdd,0xb6,0xcb,0xc5,0x01,0x30,0x63,0x3e, + 0x49,0xd1,0x85,0x07,0xd7,0xfb,0x57,0x57,0x57,0xfb,0x34,0x89,0x8b,0x7d,0x1a,0x53,0x56,0x4c,0x4a,0x62, + 0x3a,0x69,0x17,0xd0,0x9e,0x4e,0xa7,0xe9,0xb2,0xf1,0xe9,0x2e,0x61,0x05,0xb3,0xd1,0xdd,0x24,0xc3,0xcf, + 0x6f,0x5e,0xbf,0x6c,0x9a,0xe5,0x07,0x99,0xbd,0x71,0x46,0x5d,0xf8,0x07,0x71,0xe8,0x3d,0x25,0x69,0x25, + 0x26,0x59,0x5d,0xf3,0x2e,0x46,0x21,0x1c,0x47,0x80,0xb8,0x2a,0x2d,0x6a,0xf4,0x46,0x57,0x11,0x1f,0xf7, + 0x1e,0x1d,0x25,0xad,0x59,0x7b,0x54,0xe0,0x2d,0x1d,0x19,0xcd,0xd8,0x14,0x09,0x1e,0xe1,0x69,0xd3,0x3a, + 0xaf,0x42,0x49,0xd9,0x57,0x50,0x6c,0xae,0x28,0x11,0x62,0xf4,0x32,0xce,0xe2,0x4e,0x65,0x9a,0xf2,0x1d, + 0x1b,0x62,0x97,0xf3,0x3b,0x24,0x11,0xf2,0xc3,0x0a,0x3d,0xfd,0xc3,0x09,0x1f,0x4d,0x2e,0xd2,0xaa,0xce, + 0x9a,0x64,0xd5,0xcc,0xf6,0xff,0x11,0x00,0x98,0x0c,0x03,0x42,0x9b,0x8f,0x2b,0x17,0xaa,0xb6,0xbf,0xce, + 0x5f,0xeb,0xb2,0xd8,0xaa,0xe2,0xbb,0x8f,0xef,0xde,0x0e,0x05,0x6d,0xe6,0xb3,0x1b,0xb0,0x60,0x71,0xb6, + 0x39,0xf1,0x67,0x58,0x23,0xe9,0x63,0x7f,0x8f,0x80,0x95,0xdb,0xc2,0xb5,0x51,0x53,0xdd,0xdc,0x66,0x09, + 0xd7,0xb8,0x44,0x2b,0x38,0xd9,0x26,0xd8,0x61,0xf8,0x64,0x63,0x8e,0x5c,0xd4,0x9e,0x2f,0xb2,0x72,0xd5, + 0xc4,0x07,0xea,0xba,0xae,0x66,0x4f,0xcb,0xf2,0x53,0x9e,0xbd,0x4d,0x17,0x59,0x1c,0xfc,0xfc,0xf1,0xc3, + 0x8b,0xfd,0xa3,0x77,0xdf,0x3f,0x7f,0x1b,0x70,0xde,0x4b,0xc2,0x15,0x59,0xa5,0xf3,0xf6,0xfd,0xdc,0x45, + 0x7a,0xad,0x97,0xf6,0x35,0xa3,0xa6,0x78,0xff,0x50,0x5d,0xa6,0xf3,0x9c,0x76,0x5b,0x46,0x24,0x66,0xb3, + 0xea,0x23,0x60,0x77,0xb2,0x6f,0x92,0x87,0x07,0x07,0x74,0x14,0x3f,0xfa,0xe2,0xe0,0x60,0xb3,0x19,0xd5, + 0xc3,0x0b,0x6e,0x81,0x00,0x79,0x52,0x2e,0x16,0x44,0x36,0xdf,0x3e,0x9e,0x00,0x67,0xc6,0x5b,0x53,0xa7, + 0x76,0x1a,0xa2,0xb1,0x1e,0x10,0x75,0x93,0xd3,0xf3,0xdf,0x1e,0xfc,0x2d,0xa0,0xf3,0x31,0xff,0x03,0x34, + 0xd7,0x46,0x2d,0xb6,0x35,0x20,0x96,0x5b,0xa0,0x83,0xfc,0xaf,0x60,0xa6,0xd6,0xe7,0x46,0x8a,0x91,0x46, + 0x2d,0xac,0x52,0xff,0x01,0x56,0xc1,0xde,0xac,0x78,0xeb,0xdf,0x4d,0x78,0xd9,0x3e,0x65,0xae,0x2e,0xc1, + 0x7d,0x44,0x6a,0x37,0x83,0x41,0x45,0x60,0xf7,0xc3,0x72,0x69,0x4e,0x3a,0xe2,0x40,0x9a,0x76,0x0a,0xe3, + 0x9d,0x86,0xc8,0x4b,0x25,0x73,0xc2,0xa2,0x2c,0xea,0xe7,0x1f,0x11,0x14,0xae,0x73,0x0a,0xe8,0xe9,0x6b, + 0x41,0x4f,0x87,0x86,0x12,0xf8,0x42,0x53,0x02,0x5f,0x0a,0x4b,0x7e,0x78,0x00,0x9e,0xfc,0x73,0x64,0xbe, + 0xfc,0x0e,0xcf,0x9a,0x32,0x6d,0xbd,0x0c,0xcf,0xe8,0x39,0x94,0x04,0xda,0xc3,0x54,0xd5,0x57,0xfd,0xd3, + 0xe1,0x68,0x30,0x22,0x51,0xf4,0xe9,0x1d,0x7a,0x27,0xc2,0x5c,0x90,0xdd,0x8c,0x68,0x00,0x60,0x79,0x05, + 0x62,0x40,0xaf,0xd1,0xa8,0xf2,0x31,0xcd,0x2c,0x82,0x68,0x92,0xe7,0x62,0xda,0xc5,0xc8,0x3c,0xec,0x25, + 0xd3,0xb4,0x6d,0xcc,0xa8,0x2e,0x92,0xa0,0x2c,0x40,0xd4,0xdd,0x10,0x43,0xd5,0x64,0xb4,0x77,0x8b,0x73, + 0x02,0xb0,0xcb,0x64,0xf7,0x70,0x84,0x2d,0xd8,0xc3,0x24,0xc9,0xa0,0x88,0x9e,0xd3,0xc3,0xfd,0xf9,0x59, + 0xb9,0x20,0x80,0xd5,0x35,0x12,0xe7,0x74,0x95,0x37,0x17,0x4f,0xab,0x6c,0x4a,0xed,0xe7,0xe9,0xbc,0x0e, + 0xf2,0x62,0x67,0xb9,0x5e,0x13,0x1a,0x1a,0x12,0xa2,0x01,0x75,0x29,0x3d,0xe9,0xfd,0x5c,0x3a,0x04,0x91, + 0x23,0x77,0xe2,0x40,0x2d,0x87,0x65,0x41,0x38,0xfa,0x9c,0xa8,0x0b,0x6f,0xda,0x68,0xb3,0x73,0x8e,0xde, + 0xe6,0xad,0x0c,0xc0,0x6a,0xba,0x22,0x3a,0x9d,0x27,0x6e,0x91,0xc8,0xdb,0x90,0xa0,0xa0,0x2a,0x68,0x97, + 0x53,0x07,0x03,0x75,0x6e,0x52,0x97,0x69,0x5d,0x5f,0x95,0xd5,0x14,0xa9,0xa3,0xe9,0xf0,0x31,0xa5,0x95, + 0x55,0xfe,0x3b,0xef,0xc9,0x24,0x78,0x92,0xd6,0xf9,0x64,0x27,0xd8,0x5b,0x85,0x8b,0x3d,0x3a,0xaf,0xf6, + 0xce,0xa3,0x0d,0x4d,0x0a,0x35,0xbc,0x24,0xf2,0xc4,0x23,0xca,0x3c,0xc0,0x54,0xa5,0x8c,0x93,0x3a,0xb1, + 0x64,0xec,0x6b,0x1f,0x3e,0x66,0x15,0x4d,0x47,0xfe,0x3b,0x11,0xbf,0x6a,0x97,0x00,0x6b,0x39,0x34,0xbd, + 0xcf,0xcc,0x93,0x5a,0x1e,0x5f,0x9c,0xf8,0x83,0x41,0x6b,0x04,0xea,0x5f,0xd2,0x06,0x58,0x32,0xed,0x7d, + 0x03,0xc4,0x43,0x63,0xb8,0xc4,0x0e,0x80,0xd0,0x6b,0x39,0xac,0x19,0x15,0xad,0xd7,0x4b,0x4b,0x81,0x11, + 0xfe,0x1f,0x0c,0x0e,0xf4,0x37,0x36,0x89,0xa8,0xb5,0x69,0x76,0xfd,0x8e,0x16,0x75,0x06,0x61,0x41,0x40, + 0x44,0xf9,0xad,0xf0,0x3a,0x40,0x27,0x8f,0xe7,0x73,0x83,0x88,0x05,0x23,0xca,0xba,0x8d,0x53,0x1a,0x6e, + 0x6f,0x36,0xce,0x03,0x16,0x68,0x55,0xc9,0x2d,0xd3,0x1f,0x99,0x6d,0x0c,0x40,0x47,0xdc,0x01,0x90,0x19, + 0x58,0xe7,0x76,0xc6,0xd8,0x75,0x2a,0x76,0x8f,0x47,0x54,0x56,0xc9,0x48,0xe2,0xc3,0x87,0x0f,0xbf,0x48, + 0xdc,0xc8,0xc6,0x0f,0x0f,0xbe,0x8c,0xcd,0x8b,0x2e,0x83,0xe2,0x5b,0xe5,0x82,0xb7,0xe5,0x8e,0x86,0xfb, + 0xc0,0x7e,0xc0,0x15,0xeb,0x0d,0x13,0x17,0x8a,0xd8,0xa3,0x59,0x7e,0x4e,0x84,0x93,0x61,0x14,0x96,0x9b, + 0x51,0x8e,0x6d,0x46,0xc8,0x47,0x11,0x5c,0xd2,0x80,0x36,0x02,0x5a,0x59,0x55,0x95,0x95,0xbf,0x16,0xf3, + 0x70,0x12,0x06,0x6f,0xb3,0x86,0xc0,0xe5,0xd3,0xce,0x73,0xe4,0x06,0x2a,0x53,0x3c,0x05,0xcb,0xc8,0x7e, + 0x7c,0x17,0x58,0xf2,0xd7,0x3a,0x7d,0x87,0x76,0x51,0xb0,0x67,0x57,0x7d,0x2f,0x58,0xd4,0x3b,0xd9,0xf5, + 0x24,0xcb,0x40,0xf2,0x50,0x9d,0xc1,0xf3,0xa7,0xef,0xde,0xbe,0x7d,0xfc,0xe4,0xdd,0x87,0xa3,0xe7,0xcf, + 0x82,0x56,0xed,0xd5,0xb0,0x4f,0xbc,0x11,0xea,0xa5,0xbc,0x01,0xce,0x22,0xe6,0xe6,0x2c,0x21,0x20,0xec, + 0x6c,0x43,0xb7,0x03,0x23,0xf0,0x89,0xed,0x63,0x71,0x7c,0xc3,0xd0,0x15,0x76,0xd3,0xa3,0x58,0x58,0x8b, + 0xd1,0x19,0x81,0xdb,0xf4,0x58,0xb2,0xdd,0x89,0x79,0x92,0x9c,0xf1,0x8e,0x08,0xe8,0xbc,0xd7,0x1b,0x58, + 0x32,0x19,0x76,0x80,0xc6,0x0d,0x9e,0x9f,0x76,0x18,0x5f,0x2b,0xf3,0x9a,0x11,0xa0,0x4c,0x34,0xb2,0x02, + 0x82,0x09,0x34,0xae,0xf7,0xf8,0x9c,0xb1,0x45,0x6b,0xcd,0x09,0xd6,0xb5,0xd3,0x16,0xad,0x5e,0x26,0x27, + 0x54,0x67,0xc4,0xd4,0xe5,0x65,0x37,0x2d,0xc1,0xce,0x6b,0x03,0x24,0x13,0x15,0xcb,0x56,0x52,0x07,0x64, + 0x35,0x89,0x21,0x82,0xe7,0x00,0x27,0xf5,0x36,0x58,0x47,0xcd,0x05,0x2d,0x07,0x71,0xb4,0xbd,0xdc,0x7a, + 0x59,0x3c,0x2b,0xaf,0x18,0xad,0xbd,0xd7,0xb8,0x6c,0x30,0x58,0x0e,0xd3,0xe9,0xf4,0xf9,0x25,0xc8,0x8b, + 0xbc,0xa6,0xf1,0xd3,0x48,0x02,0x83,0xe9,0x08,0x0a,0x7a,0xbe,0x89,0xfa,0x78,0x72,0x14,0xfc,0x61,0xd9, + 0xad,0x7a,0xc5,0x29,0xee,0xe9,0x0f,0xdb,0x6a,0x57,0x81,0x39,0x9a,0x38,0x25,0x05,0x0b,0x16,0xdc,0x2b, + 0xd8,0x17,0xe6,0x32,0x99,0x4d,0xf3,0xcf,0xb2,0x25,0xcf,0x79,0x7a,0x46,0x87,0x1c,0xa1,0x42,0x08,0x0c, + 0x35,0xe4,0x62,0x81,0xfc,0x35,0x0f,0x67,0x92,0xac,0xb0,0x9e,0x74,0x52,0xce,0xfe,0xc2,0xd9,0x4d,0xa7, + 0xf2,0x1d,0x94,0x05,0x3e,0xd1,0x9c,0xc7,0x50,0x76,0xfa,0xb0,0x4d,0xb0,0x8d,0x0a,0x8d,0x16,0x88,0xb3, + 0x19,0x0c,0x76,0xf3,0xd0,0xbc,0x47,0xe3,0x86,0xc8,0xd9,0x40,0x03,0xd6,0xce,0x2c,0x25,0x14,0x39,0xdd, + 0x01,0xf0,0xec,0x48,0x81,0x1d,0xd0,0xc7,0xb4,0x6b,0xcd,0x07,0xca,0xb4,0x20,0x18,0xa0,0xb0,0xea,0xa7, + 0x02,0xf4,0x6d,0x58,0xfc,0xf9,0xd1,0x1c,0xde,0x3d,0x1a,0x95,0xab,0x52,0x46,0x94,0xf2,0x91,0xc9,0x58, + 0x07,0x3c,0xbd,0xd5,0x34,0xa5,0xb6,0xd8,0x7f,0x22,0x02,0x03,0xbf,0xa9,0x72,0x4f,0xda,0x26,0x43,0x4a, + 0x28,0x03,0x04,0xd6,0x10,0x63,0x4e,0x0a,0xd9,0x30,0x22,0x0b,0xa9,0xbc,0xcd,0x93,0xe4,0xc4,0x2b,0xfd, + 0x07,0x0a,0xa5,0x1d,0x61,0x36,0x7e,0xf8,0xf0,0xea,0x69,0xb9,0xa0,0x9a,0x08,0x2a,0x29,0xd3,0x89,0xf5, + 0xfe,0xeb,0xcb,0x83,0x07,0xe7,0xb9,0x0a,0xfe,0xaf,0x2f,0xeb,0xfb,0xaf,0x2f,0x1e,0x73,0x62,0xdc,0x4a, + 0x7c,0xf8,0xe5,0x83,0x73,0x15,0xdc,0x6b,0xa7,0x3d,0xe5,0x82,0xaa,0x9d,0x78,0x80,0x82,0x7b,0xad,0xb4, + 0xaf,0x9e,0x70,0xc1,0xe3,0x76,0xe2,0x33,0x4e,0x3c,0x09,0x7c,0x1e,0xf6,0x33,0xe0,0x46,0x18,0x61,0xb7, + 0x31,0xaa,0xd8,0x8c,0x57,0xb5,0x04,0xe5,0x54,0x44,0x20,0x2c,0x1b,0xad,0x3a,0xa2,0x84,0x3e,0xc6,0xac, + 0x89,0xa8,0x54,0xe3,0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xf1,0xc9,0xc8,0xd1,0xee,0x4d,0x67,0x71,0xfb,0xd4, + 0x5f,0xb4,0x64,0x96,0x3b,0x64,0xe6,0x3d,0x6c,0xf6,0x92,0xe0,0xf8,0x44,0xf3,0xa4,0x26,0x9d,0x08,0x30, + 0xad,0x0f,0xcb,0xfb,0xc8,0x70,0xf0,0x5e,0x43,0x51,0x43,0x30,0x63,0x09,0xea,0xa4,0x7c,0xf5,0xf1,0x9d, + 0xe9,0x62,0x9b,0x09,0x64,0xbe,0x79,0x9b,0xc3,0x83,0xbe,0x15,0xf2,0x1e,0x42,0xce,0xd1,0x5e,0x90,0x04, + 0x7b,0xac,0x7a,0x83,0x80,0x02,0x04,0x77,0x3a,0xfc,0xb5,0xcc,0x8b,0x30,0x18,0xd0,0x24,0x1b,0x46,0x1a, + 0x15,0xed,0x25,0xe1,0xfe,0x21,0xf4,0x20,0x8e,0x54,0x19,0x07,0xd1,0x98,0xfe,0xc4,0x28,0xbb,0x57,0x46, + 0x7f,0x0c,0x70,0x2d,0x02,0xff,0x38,0x48,0x41,0xcd,0x06,0xa9,0x4f,0xd6,0xd1,0xbb,0x39,0x70,0x44,0xe4, + 0xe4,0x25,0xf0,0x09,0xa4,0x82,0xac,0x49,0xcf,0xf1,0x73,0xbd,0xcc,0x09,0xd8,0xe9,0x69,0x46,0x08,0x0f, + 0x0c,0x97,0xf0,0x4f,0xf9,0x6c,0x7f,0x51,0x4e,0xf3,0x59,0x9e,0x4d,0xf7,0xeb,0x9c,0xd0,0xa2,0xa4,0xad, + 0x8a,0xad,0xd4,0x79,0x5a,0x37,0xb6,0x2c,0xde,0xcb,0x89,0xe9,0x03,0x71,0x97,0xe0,0xbe,0xaf,0xe8,0x20, + 0x47,0x0b,0x84,0x52,0xaf,0x6f,0xf6,0xbb,0x1d,0xad,0x32,0xe2,0xe9,0xe9,0x38,0xc5,0x13,0x1d,0x53,0xfb, + 0xe9,0xac,0xe1,0x37,0x10,0xb3,0xfb,0x34,0x36,0xa2,0x74,0x4e,0xee,0x60,0x2b,0x58,0x38,0x48,0x1b,0xbc, + 0x84,0xe4,0xc5,0x69,0xfc,0x89,0x6b,0x77,0xab,0x3e,0xac,0x89,0x01,0x6d,0xc2,0xe0,0x97,0x82,0x60,0xa4, + 0xc3,0x7d,0x97,0xfe,0x32,0xd0,0xae,0x53,0xb4,0xf9,0x87,0x90,0xd3,0xe3,0xb3,0xd5,0x19,0xcd,0x77,0x78, + 0x40,0x68,0x27,0x6a,0x9f,0xd5,0xaa,0xd8,0x2a,0x55,0xee,0x1d,0x12,0x40,0xc8,0xe1,0x99,0xd2,0x11,0xce, + 0x42,0x25,0x5d,0x71,0x13,0x7d,0x93,0x1c,0xe8,0xdd,0x33,0x42,0x66,0x02,0x52,0x62,0x7f,0xc2,0x04,0x08, + 0x93,0x02,0x63,0xfe,0x66,0x8c,0x3f,0xf1,0xf1,0x49,0x04,0x0c,0x45,0x53,0x18,0x1e,0x17,0x27,0x51,0x6c, + 0x73,0xf6,0x02,0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xf3,0x50,0xe2,0xcd,0xde,0x5d,0xb4,0xd5, + 0xd8,0x57,0x10,0x38,0x45,0x8d,0xb5,0x48,0xc8,0xac,0x50,0x92,0x77,0x20,0x0d,0xe0,0x71,0x43,0xed,0x9c, + 0xad,0x68,0x07,0x05,0x17,0xb4,0x84,0x01,0x8c,0x0c,0x1a,0xe2,0xa7,0xf1,0x82,0x6d,0x77,0x47,0x91,0x5b, + 0x3c,0xc5,0x52,0x4c,0xb1,0x88,0x70,0x52,0xce,0xe9,0xdd,0x3c,0x8e,0xdd,0xa3,0xc3,0x58,0xb1,0xa8,0x40, + 0x62,0xe2,0x6a,0x00,0x9e,0xf8,0x9c,0x7e,0x54,0xcd,0x78,0x26,0x46,0x5b,0x78,0x18,0x9b,0x07,0x5f,0xa1, + 0x32,0x76,0x5f,0xa6,0x35,0xca,0xe2,0x67,0x2c,0x3f,0x5e,0xb9,0xff,0xd3,0x6a,0x00,0x3c,0x94,0x6e,0x04, + 0x8f,0x0a,0x73,0x87,0x3e,0xd2,0x8f,0x5a,0xa6,0xcd,0x05,0xe7,0x07,0x0f,0xb0,0x78,0x94,0xaa,0x13,0x86, + 0x10,0x0a,0x3d,0x86,0x49,0xc8,0xd8,0x25,0xa2,0xd4,0x9e,0x7b,0x15,0xf1,0x3c,0xad,0x55,0xf2,0x20,0x5c, + 0xd4,0x79,0xb6,0xa6,0x09,0x02,0xd9,0x16,0x3d,0xc8,0x87,0x0d,0x64,0xa0,0x4e,0x05,0x07,0xf0,0x7f,0x0c, + 0xe8,0xc7,0x26,0x37,0x5a,0x35,0x6d,0x91,0xf1,0x7c,0x9e,0xe1,0x2d,0x0c,0xd2,0xc0,0x9e,0x93,0xb4,0x46, + 0x9a,0x17,0x1f,0x9a,0x1d,0xa8,0xd7,0xc2,0x49,0x1f,0x0c,0xe5,0x20,0x50,0xc0,0xb8,0xae,0x20,0xf4,0x47, + 0x7f,0xe2,0xc2,0x19,0x94,0x98,0xf9,0x67,0x2a,0xd5,0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86, + 0xf0,0xe4,0x96,0xca,0x71,0xf7,0xe0,0xf3,0x67,0xb4,0xa7,0x0c,0xd2,0xba,0x8e,0x05,0x91,0x62,0xb4,0xcb, + 0x93,0x40,0x3a,0xb4,0x03,0x34,0x45,0xbc,0x72,0xbd,0x93,0x52,0x5f,0x0a,0x26,0x6d,0x76,0x30,0xb3,0xe9, + 0x04,0x68,0x61,0x23,0x50,0x1d,0x3c,0x7e,0xf2,0xf4,0xd9,0xf3,0x17,0xdf,0xbe,0x7c,0xf5,0xdd,0xf7,0xaf, + 0xdf,0xbc,0x7d,0xf7,0xfe,0x9f,0x1f,0x3e,0x1e,0xfd,0xf0,0xe3,0x4f,0x3f,0xff,0xeb,0xdf,0xe9,0xd9,0x84, + 0xd8,0xf9,0xf3,0x8b,0xfc,0xd7,0x4f,0xf3,0x45,0x51,0x2e,0x7f,0xab,0xea,0x66,0x75,0x79,0x75,0x7d,0xf3, + 0xfb,0xc1,0xe1,0xc3,0x2f,0xbe,0xfc,0xea,0xef,0xff,0xfd,0x8f,0xaf,0xf7,0x1e,0x24,0xc1,0xa8,0x70,0x12, + 0x6a,0x47,0x78,0x28,0x2f,0x55,0x48,0x83,0xaf,0x5a,0x49,0x58,0xc4,0x24,0x78,0x25,0xfd,0x7a,0x6a,0xba, + 0x65,0x38,0xa5,0x5e,0x24,0x65,0xf4,0x6d,0x0d,0x48,0x98,0x44,0x4f,0x7b,0x06,0x61,0x0c,0x41,0x5b,0x9d, + 0x1c,0xc0,0xf0,0x66,0x54,0x5a,0xe8,0x59,0xd7,0x38,0xbd,0x26,0x09,0x9d,0x28,0xaa,0xfe,0x2f,0x22,0x9c, + 0xd2,0xbd,0x64,0x62,0x72,0xff,0xfe,0xc5,0xa0,0xf9,0xe6,0x9b,0x7f,0xec,0x53,0xc6,0xdf,0xfe,0x11,0x31, + 0xba,0x09,0xf3,0x44,0x3e,0x7e,0x4a,0xbd,0xa5,0x22,0xf5,0x5e,0x32,0xfc,0xef,0xaf,0xa2,0xe8,0x9b,0x87, + 0x5f,0x7d,0xa5,0x09,0x76,0x8c,0xae,0x18,0x35,0x49,0xf3,0xe8,0xd1,0x3f,0xd6,0xb9,0x39,0x8e,0xfe,0x97, + 0x11,0xc8,0xed,0x55,0x95,0xb7,0xb4,0xfa,0x86,0x6a,0x23,0x64,0x75,0x2b,0x66,0x20,0x74,0xda,0xd7,0x5a, + 0x47,0xc2,0x07,0x66,0x0f,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0x39,0x18,0xe8,0x4f,0xcc, + 0x49,0x45,0xdf,0x61,0x3c,0x7c,0x76,0x17,0xc0,0xcc,0xdf,0xbe,0x39,0xb2,0xd2,0x5b,0xe5,0x41,0x76,0xee, + 0x7d,0x8b,0xfd,0x47,0x1f,0xe6,0xad,0x02,0xa5,0x57,0x60,0xca,0x02,0x1a,0x2a,0x52,0x42,0x70,0x41,0x40, + 0x9e,0xba,0xbc,0x3a,0x9b,0xac,0x2a,0x48,0xbd,0xdd,0x2e,0x64,0xdc,0x9d,0xd4,0xfa,0x8c,0x1f,0xed,0xd0, + 0x21,0xaf,0xc0,0x5c,0xc6,0x5b,0xa7,0x53,0xd2,0xf9,0x68,0xb8,0x60,0x3e,0x0b,0x43,0xf8,0x90,0x9d,0x3f, + 0xbf,0x5e,0x86,0x41,0xf8,0x3f,0xeb,0xd1,0x2f,0xbf,0xd4,0x7f,0x8b,0x42,0x9a,0x12,0x22,0xdf,0x92,0xf0, + 0xf8,0x7f,0x46,0x27,0x7f,0x8b,0x02,0xa7,0x0a,0x6a,0x88,0x3f,0xdc,0x9e,0xab,0xe3,0x2f,0x4e,0x44,0x3e, + 0x81,0xc6,0x17,0xe5,0x65,0xdb,0x3a,0x82,0x77,0x17,0x2f,0x0a,0xad,0x05,0x81,0x1a,0x66,0x6c,0x58,0x94, + 0x57,0x61,0xb4,0xff,0x8f,0xbf,0x7f,0x99,0x7d,0x45,0xd4,0x74,0xdc,0x5d,0x34,0xc8,0x9c,0xda,0xe3,0x68, + 0xe9,0x4f,0xb7,0xdb,0xa1,0x0f,0xfe,0x02,0x79,0xac,0x3b,0x75,0x41,0xe0,0x33,0x87,0xb4,0xf8,0xf8,0xc4, + 0x27,0x40,0x7d,0xbd,0x24,0x55,0xd0,0xaf,0xc8,0x6e,0x55,0x20,0x0b,0x74,0x6b,0xf5,0x6d,0x2c,0xf3,0x10, + 0x7d,0x1b,0x6b,0xdd,0xdb,0x85,0x85,0x12,0xda,0x3f,0x84,0x84,0xc1,0xb5,0xc4,0xe5,0x93,0xad,0x89,0x33, + 0x5f,0x11,0x11,0x09,0x22,0xb3,0x93,0xa4,0xf9,0xbd,0x56,0x45,0x9a,0xe2,0x48,0xda,0x54,0xa6,0x25,0x6e, + 0xfd,0x1a,0x3c,0x23,0x02,0x4b,0xe6,0x36,0xc4,0x80,0xd2,0x2b,0xb1,0x88,0xff,0xa1,0x76,0x0b,0x76,0x87, + 0x9f,0xe1,0x67,0x19,0x15,0xbc,0x9a,0x69,0xee,0x2f,0x9b,0x86,0x5b,0x0a,0xac,0xc3,0xaf,0x45,0x42,0x0c, + 0xd3,0x3c,0x6b,0x13,0x48,0xaf,0x87,0x10,0x10,0xd3,0xef,0x1d,0x3c,0x02,0x2d,0x0d,0xd0,0x59,0x36,0x3c, + 0x4b,0xb5,0x58,0x6e,0x77,0xa2,0xa5,0x30,0xcc,0x60,0xd1,0x43,0xb2,0x0a,0x6d,0xb6,0xd2,0x02,0x1a,0x65, + 0x65,0xbc,0x4e,0xda,0xcb,0x8a,0x3f,0x11,0x02,0x27,0x90,0x31,0xb2,0x34,0xd8,0xe6,0x42,0x51,0xd3,0x51, + 0x59,0xf9,0xb5,0x18,0x51,0xbe,0x4d,0x19,0x8a,0x2e,0x42,0x57,0x6a,0x85,0xfe,0x5a,0xa4,0x79,0xd2,0x4e, + 0xc7,0x5b,0xf4,0x87,0x8a,0x08,0xd5,0xa7,0x5e,0x00,0x69,0x8d,0x86,0x7c,0x3d,0x03,0xad,0xab,0x11,0xda, + 0xdb,0x96,0x9b,0x93,0x8d,0xd9,0xd0,0xd4,0x49,0xad,0xf1,0x5b,0xaf,0x6b,0xf3,0x18,0x81,0x43,0x6c,0x8b, + 0x1b,0x1c,0xdc,0xf3,0x1c,0x37,0x66,0x6a,0xe4,0x81,0xde,0x7b,0xa7,0x46,0x58,0x57,0x2a,0xbe,0x51,0x3d, + 0x35,0xa5,0xf4,0x4c,0x27,0x8c,0x54,0x08,0xbb,0x3d,0xc3,0xeb,0x02,0xce,0x9d,0x86,0xdb,0xb6,0xd4,0x4a, + 0x51,0xde,0xfb,0xe7,0xda,0xa6,0xf5,0x75,0x6a,0x7a,0xe6,0xa3,0x9a,0xbf,0xa4,0xb9,0xf8,0x0c,0x37,0x6a, + 0x26,0xc4,0x2e,0x55,0xd1,0xa2,0x70,0xa0,0xe2,0x04,0xc2,0xd8,0x6c,0x33,0x52,0x7f,0x42,0x5e,0x60,0xe9, + 0x98,0x70,0x37,0x5b,0xaf,0x61,0xcd,0x71,0xfa,0xf4,0xf1,0xdb,0xa7,0xcf,0x5f,0x9f,0x9e,0xfe,0x07,0xd2, + 0x07,0x53,0xdb,0x83,0xff,0x09,0x8f,0xd3,0xfd,0xdf,0x4f,0xf0,0xe7,0x97,0xe9,0x2f,0x7b,0xbf,0xec,0xff, + 0x32,0x3c,0xf9,0x5b,0x1c,0x8d,0x7f,0x79,0xf0,0xcb,0x03,0x43,0xfa,0x65,0xff,0x91,0x78,0xc3,0x21,0xc6, + 0xb1,0x67,0x48,0xf4,0xcb,0x83,0x3d,0x21,0x99,0xf7,0x40,0x7f,0x36,0x3e,0x41,0xfc,0x60,0x4f,0x48,0xdd, + 0x3f,0x98,0x9c,0xb6,0xd5,0x4e,0x8b,0x52,0xcb,0x36,0x45,0x8f,0xf1,0x66,0xb2,0x75,0x64,0x04,0x62,0xec, + 0x1b,0xec,0x85,0xfe,0xe7,0xc4,0xe8,0x12,0x1f,0xe3,0xa7,0xc4,0xb0,0x6e,0x6a,0x51,0x59,0x6e,0xd2,0xa1, + 0x1e,0xf1,0xcc,0xa9,0xff,0x12,0x3a,0x84,0x20,0xd3,0xca,0x12,0x77,0x3d,0x05,0xab,0x25,0x8a,0x20,0xd4, + 0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb3,0x58,0xd5,0xcd,0xce,0x59,0xb6,0x93,0x5a,0x9b, + 0xa9,0x61,0xa0,0xcd,0x50,0x46,0xdc,0x6b,0x2d,0x18,0x4c,0x7a,0x95,0x59,0x98,0x2b,0x9a,0x20,0xf9,0xa0, + 0x48,0xf0,0xc1,0xa8,0x9d,0x0d,0x29,0x5a,0x5a,0x03,0x2d,0x85,0xe6,0x91,0xab,0xca,0x79,0x3f,0xda,0x34, + 0x88,0x11,0x1c,0x82,0xfe,0xa2,0x7d,0x3a,0x76,0x71,0x79,0x47,0x9d,0xa2,0xad,0x2a,0xb8,0x1a,0x2d,0xb2, + 0x75,0x29,0x38,0xb4,0xea,0x72,0x55,0x4d,0x32,0xff,0x2b,0xdf,0xd8,0xe0,0xb6,0xc1,0x81,0xc1,0xf6,0x44, + 0x55,0x0b,0x15,0x65,0x09,0x0e,0x55,0x39,0x54,0x18,0x7e,0xee,0x3c,0xa8,0xfe,0xc2,0xde,0xd8,0xe9,0x41, + 0x51,0xc6,0xa0,0x8c,0xc5,0x8e,0x0d,0x6c,0xca,0xa0,0xf7,0xec,0xb6,0x70,0xb7,0x0f,0x44,0x8f,0x32,0xf3, + 0x7f,0xc9,0x0d,0xa2,0x81,0x63,0xc3,0x8f,0xab,0xac,0xdf,0xad,0xa1,0x1f,0x18,0xb3,0x5e,0x3b,0xd8,0xf5, + 0x1a,0xa3,0x63,0x8b,0x58,0xcf,0x18,0xb2,0x5b,0x52,0x64,0x5e,0x46,0x12,0xb6,0x69,0xef,0x4a,0xc3,0x72, + 0xb5,0x2b,0xf1,0xcd,0xda,0xb7,0xac,0x0b,0xd6,0xeb,0x6d,0x3b,0x5e,0x4a,0xab,0x6f,0x16,0x67,0xe5,0xbc, + 0x9d,0x76,0x56,0x96,0xf3,0x2c,0x2d,0x7a,0xed,0xda,0xff,0x77,0x2c,0xe1,0x45,0xc2,0xc6,0xc6,0xb7,0x8b, + 0xa2,0xd7,0x10,0xde,0x10,0xd1,0x6c,0x08,0xc1,0x36,0x79,0xa1,0x65,0xa0,0x1c,0x71,0xfc,0x4d,0x72,0x30, + 0x18,0xbc,0x21,0x12,0x7f,0x38,0x9b,0x97,0xb0,0x04,0x63,0x65,0x3a,0x71,0xac,0xf5,0x8b,0xbc,0x60,0xfa, + 0xd7,0xab,0xb5,0xee,0x74,0x9d,0x7a,0x3e,0x0e,0x82,0x1e,0xcf,0x96,0x71,0x57,0xe4,0x27,0x52,0xf0,0x87, + 0x51,0x6c,0xbb,0xe0,0x6a,0x9d,0xf4,0xf6,0xd5,0x49,0xb1,0x89,0xa3,0x49,0xdf,0x52,0xc7,0xc6,0x19,0x11, + 0xa6,0xf6,0xab,0x95,0xb6,0x90,0xb4,0x16,0x99,0xda,0x34,0x5e,0xb8,0xfc,0x50,0xb4,0x07,0x55,0x62,0x65, + 0x58,0x0a,0x62,0xce,0xe4,0x60,0x94,0x3f,0xaa,0x8c,0x29,0x59,0x2e,0x86,0x99,0xc7,0xf9,0xc9,0x09,0xe1, + 0x4a,0xc7,0x2f,0xf4,0x69,0xdf,0x8f,0xb3,0xb6,0x20,0xeb,0x64,0xd3,0x67,0xdc,0x41,0xc5,0x4e,0x36,0xae, + 0x8f,0x73,0xeb,0x8e,0x60,0xfc,0x08,0x8c,0x4a,0x35,0xf3,0x44,0x5c,0x2c,0x0e,0xfe,0x66,0xff,0xd0,0x4a, + 0x89,0xb9,0xcb,0x74,0xe2,0x14,0xea,0x30,0xf2,0x6a,0x9b,0xb5,0xce,0xac,0x33,0xb3,0xea,0xd8,0xe4,0xb6, + 0xcc,0xd4,0xcd,0x65,0xcf,0x7c,0x8c,0xba,0x68,0xc3,0xb3,0x68,0x3b,0x2e,0x4e,0x60,0xd8,0x49,0x3f,0xb0, + 0x10,0x8e,0xfc,0x86,0x97,0x5b,0xc6,0xa8,0x5a,0x1a,0x52,0xf5,0x18,0x0a,0x6b,0x0a,0x63,0x5c,0x7d,0x73, + 0x38,0x76,0xc6,0xad,0xb6,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xcd,0xb3,0x95,0xf3,0x16,0xc3,0x53,0xa9, + 0xc8,0x7a,0x5e,0xa8,0xc2,0x75,0xe4,0x42,0x3a,0x42,0xdc,0xf8,0x7a,0x7d,0x30,0x72,0x4b,0x6f,0xca,0xee, + 0x37,0xb4,0xe2,0xce,0x32,0xb7,0x88,0x46,0xc5,0xfe,0xfe,0x28,0xaa,0x78,0x50,0xc7,0xc5,0x5e,0x63,0xcd, + 0x6e,0x2b,0x57,0xe9,0x65,0x07,0x90,0xe0,0xbd,0xd1,0x44,0xf0,0xed,0x48,0x30,0x1b,0x56,0x32,0xea,0xbe, + 0x58,0xb4,0x44,0x13,0xb0,0x9a,0x2e,0x08,0xb0,0x8a,0x47,0xce,0x59,0x84,0x00,0x0b,0x15,0x0c,0x06,0x97, + 0xd0,0x3e,0x42,0x18,0x69,0xa1,0xcb,0x55,0x73,0x6e,0xce,0x61,0x97,0x74,0xe3,0x00,0x06,0xdb,0x30,0x32, + 0x58,0x4a,0x1f,0x89,0x7c,0xce,0x55,0xf4,0x23,0x40,0xb3,0x4b,0x07,0xe1,0x6e,0x65,0x0a,0x11,0xd7,0xb2, + 0x5b,0x0d,0x06,0x76,0x83,0x51,0x05,0xfa,0x99,0x4a,0x43,0x87,0xc9,0xba,0x87,0x84,0xa7,0xc6,0x13,0xf7, + 0x13,0xdb,0xd2,0x4e,0x92,0xba,0xcb,0xc1,0x20,0x75,0x00,0xa9,0xd7,0x04,0xf2,0x2b,0x79,0x04,0x87,0x94, + 0x5d,0x66,0xd5,0x8d,0x77,0x3e,0x7b,0x04,0x26,0x8f,0x03,0xc3,0xde,0x48,0x65,0xeb,0xb5,0xa9,0x6c,0xf7, + 0x70,0x24,0x02,0x0d,0x0d,0x9e,0x9f,0xb2,0x1b,0x60,0x15,0xe2,0x96,0xfc,0x04,0x67,0x57,0x5e,0xbb,0xb6, + 0x27,0xb6,0xed,0xba,0xdb,0x76,0xab,0x65,0x78,0xe5,0xe8,0xc6,0x9d,0xf1,0x97,0x69,0xdd,0x03,0xeb,0xb3, + 0x2e,0x06,0xd9,0x5a,0x43,0xea,0xba,0xa9,0x2f,0xb2,0xee,0x74,0xba,0x67,0xc4,0x0b,0xdb,0x9a,0x4e,0xdd, + 0xae,0xa3,0xf1,0x6d,0x9b,0x8d,0x37,0x6c,0x32,0xcd,0xe4,0x98,0xde,0x10,0x38,0xfc,0xdc,0x9e,0xf0,0x37, + 0xdb,0x95,0xab,0x0b,0xa2,0x9e,0x20,0xf2,0x05,0x54,0x07,0x76,0x5e,0xbe,0xf8,0x3b,0x56,0x63,0xbd,0xfe, + 0xfa,0x2b,0xfc,0xba,0xcf,0x8f,0x8c,0xde,0x2e,0xba,0xd5,0x13,0x2a,0xa7,0xaf,0x71,0x3b,0xe2,0x6c,0xaa, + 0x7f,0xbe,0xca,0xe2,0x42,0x65,0x74,0xa0,0x65,0x55,0x7a,0x36,0xcf,0xe2,0xdd,0xdd,0x4a,0x41,0xa2,0x21, + 0x2f,0x07,0xda,0x12,0x62,0xa5,0x33,0x0f,0x36,0x1e,0x92,0xf9,0xe4,0x9d,0x47,0x3d,0x0a,0xe7,0xc1,0xe0, + 0x41,0xc1,0x7e,0x11,0xac,0x13,0x7d,0xa0,0x29,0x74,0xdf,0x50,0xd0,0x55,0x75,0xdd,0xb1,0x70,0xca,0x68, + 0x2d,0xf8,0xf0,0x56,0xed,0x1f,0x77,0x72,0xb9,0x6f,0x9f,0x6a,0x53,0x01,0x8d,0x02,0x26,0x46,0xb8,0xf3, + 0x4e,0xcc,0x7a,0x35,0x2a,0x80,0x05,0xe5,0xb0,0x49,0xcf,0x95,0x65,0x89,0x27,0x17,0xf9,0x7c,0x5a,0x65, + 0x05,0x98,0x2f,0x58,0x7f,0x10,0x24,0xcf,0x17,0x8a,0x95,0x9b,0xfc,0x8e,0x8c,0xb4,0xbe,0x29,0x26,0x2f, + 0x52,0x98,0xc9,0xdf,0x38,0x75,0xea,0xb0,0x00,0xc3,0x8d,0xaa,0x45,0x92,0xd7,0xe4,0x13,0x60,0x72,0xfd, + 0x48,0xa9,0x04,0xbc,0x94,0x40,0x7f,0xb9,0xc4,0x53,0x62,0x6d,0xa9,0x3f,0x5c,0x44,0x3f,0x53,0xfa,0xac, + 0x78,0x2a,0x0d,0x51,0xba,0x7d,0xe6,0x74,0xdd,0x71,0x4e,0xb7,0x83,0xa0,0xe7,0x8f,0x13,0x5a,0xbb,0x57, + 0x53,0x4e,0xd7,0xcf,0x52,0xff,0x9c,0xc6,0xcb,0x9e,0x97,0x8d,0xa8,0x63,0xf5,0xc0,0xe8,0xa5,0xb2,0x2f, + 0xc9,0x63,0x2f,0x07,0x86,0x45,0x11,0x94,0xb7,0x85,0x5f,0xb8,0xf0,0x0b,0x17,0xed,0xc2,0x84,0x6f,0xdc, + 0x8c,0x3f,0xee,0xee,0x18,0x8b,0xa4,0xdb,0x68,0x57,0x1f,0xb4,0x05,0x9f,0xb0,0x38,0x5f,0x13,0x5a,0x2b, + 0xfa,0xf1,0xfc,0x45,0xbc,0x5a,0x3f,0x5a,0xa4,0x27,0x2e,0x41,0xbb,0x61,0xcb,0x81,0x87,0x98,0x7b,0xbd, + 0xc8,0x76,0x67,0x41,0x28,0x77,0x7a,0x5a,0x9e,0x9d,0x9e,0x06,0x6c,0xac,0x22,0xcf,0xfe,0x47,0x75,0x35, + 0x46,0xef,0x24,0x23,0x4e,0x89,0x6c,0xbf,0x28,0x57,0xf3,0x29,0xcd,0x36,0x21,0x0e,0x9a,0xad,0xdd,0xef, + 0x0b,0x36,0x12,0xec,0x62,0xc3,0xf5,0x1a,0xc4,0x16,0xe5,0xe8,0xcd,0x93,0xd7,0xcf,0xe1,0xd5,0x52,0xe7, + 0x67,0x6c,0x6d,0x4b,0x1f,0xb2,0x93,0x02,0x51,0xb1,0x98,0x37,0x1e,0x74,0xcd,0xba,0x4b,0x2c,0x01,0xcf, + 0xeb,0xe5,0xe2,0x69,0xb9,0x2a,0x9a,0xbd,0x3d,0x3a,0xb8,0xdc,0x18,0xef,0xf9,0xea,0x74,0x41,0xc4,0xf8, + 0xf6,0x5f,0x05,0xa1,0x5f,0xdd,0xd4,0x79,0xd6,0x78,0xee,0x81,0xcf,0xb2,0x7a,0x52,0xe5,0xb0,0x9c,0xe7, + 0xd9,0x61,0x74,0x9f,0x12,0xba,0x3f,0x24,0x72,0x31,0x1d,0xfa,0x9b,0xd3,0x48,0x88,0x53,0xc2,0xd8,0xa8, + 0x84,0x50,0x29,0x3f,0xd6,0xf4,0xb8,0x4a,0x76,0x73,0x3a,0x12,0x70,0x12,0x7e,0x06,0x1b,0xf8,0x58,0x60, + 0x6b,0xe3,0x2b,0xaa,0xb2,0x6b,0x5a,0xdd,0x24,0xf5,0xb8,0x36,0x44,0xa7,0x53,0x7f,0xfc,0xab,0xa0,0x8d, + 0x56,0x51,0x79,0x9a,0x9b,0x92,0x5a,0x5a,0xc2,0x72,0x23,0x52,0x2b,0x7a,0x5d,0xe1,0xd5,0x25,0x75,0x4f, + 0x9c,0xc1,0xc0,0xa3,0xf8,0x5b,0x10,0xa6,0xf7,0xbf,0xb8,0x25,0x35,0x5d,0x77,0x24,0x5a,0x82,0x06,0x86, + 0x9d,0x98,0x78,0x59,0x6b,0xf7,0xf4,0xb9,0x16,0x21,0x1b,0x67,0x23,0x0c,0x08,0xcd,0x59,0xd8,0x53,0xfb, + 0xa3,0x6c,0x0c,0x79,0xd3,0x1e,0x26,0x14,0x38,0xd5,0x7a,0xdd,0xec,0xb2,0x09,0xea,0x2e,0x9e,0xc3,0xc9, + 0x78,0xe2,0xe8,0xb0,0x98,0xba,0x63,0xe7,0xbc,0x81,0xd5,0x7f,0x51,0x36,0xa0,0x7f,0xd9,0xf2,0xde,0x03, + 0x87,0x77,0x9e,0x79,0x40,0x17,0x04,0x69,0xed,0x42,0x77,0xdc,0xd8,0xb3,0x97,0x69,0xf4,0x45,0x7a,0x6d, + 0x49,0x49,0xc5,0x12,0x3c,0x4d,0x2a,0x36,0xea,0x90,0xaa,0x53,0x05,0xe0,0xa4,0x61,0xff,0x53,0xec,0x23, + 0x7e,0xea,0xba,0x8c,0xba,0xaa,0xc5,0x40,0xb6,0xd0,0xa2,0x23,0xb3,0x5b,0x9c,0x67,0x92,0x00,0xfa,0x7a, + 0x5d,0xc1,0x52,0x4b,0xc3,0xf5,0xb8,0x88,0xab,0x71,0x78,0x8f,0x10,0x0c,0x9f,0x21,0x3c,0x0a,0x42,0x46, + 0x98,0x6b,0x33,0x56,0x10,0x76,0xc6,0xfa,0xb6,0xf0,0xf0,0xf5,0x73,0xbb,0xcf,0xef,0x18,0xb2,0x3f,0x1a, + 0xcf,0xd4,0xc1,0x6d,0xe4,0x91,0xeb,0x93,0xbf,0xd7,0xd6,0x6b,0x21,0x8d,0x61,0x83,0x66,0xac,0x7d,0x9b, + 0x13,0x41,0x73,0x7e,0xc7,0xfc,0x15,0x78,0x6f,0x3b,0xe3,0x9b,0x67,0x58,0xb8,0xc3,0x46,0x75,0x5b,0x53, + 0xd3,0x24,0xd0,0x38,0x8d,0xea,0x47,0xa9,0x81,0xc2,0x1a,0xd8,0x0d,0x84,0x65,0x92,0x1e,0xd7,0x27,0x27, + 0x00,0x50,0xd0,0x0a,0x33,0x26,0x85,0xc6,0x65,0x58,0xb1,0x7f,0x23,0x74,0x29,0xef,0x43,0x6c,0xfc,0x18, + 0xcb,0x5e,0xd0,0x43,0x0f,0x4d,0xf9,0x6b,0x47,0x44,0x57,0x8c,0x3b,0x7b,0xae,0x4a,0x7a,0xfd,0xe4,0x8c, + 0xeb,0x30,0x3b,0xcb,0x51,0x0f,0xfa,0x0e,0xe4,0x71,0xe6,0x15,0xca,0x1c,0x89,0xae,0x7b,0x95,0x6f,0xe2, + 0x66,0x9c,0xf9,0xed,0x19,0x57,0xf2,0xf0,0x73,0x4d,0x32,0x0d,0x83,0x3f,0x68,0xf8,0x73,0xcd,0x7a,0x05, + 0x89,0xed,0x8b,0x9b,0xd8,0x1b,0xf6,0xb3,0xae,0x1c,0x6e,0x9c,0x19,0x15,0x3e,0x6d,0xa7,0x2e,0x9a,0x18, + 0x37,0x31,0xf4,0xfc,0xde,0xf7,0xaf,0x1c,0xb9,0x23,0x02,0x9f,0x36,0xd7,0xa3,0x25,0x05,0x9e,0x2e,0xe8, + 0x12,0x6e,0x55,0x18,0xb3,0xad,0xe2,0xb5,0x99,0x79,0x4f,0x0a,0x60,0xab,0x9b,0x54,0x84,0x5e,0x08,0xbe, + 0xaa,0xd1,0x0a,0x1e,0x7c,0x74,0x40,0xb1,0xdb,0x23,0xfe,0xa0,0xd1,0x3e,0x6b,0x3e,0x60,0x3f,0xe2,0x50, + 0x86,0xda,0xbb,0xa8,0x2b,0x7a,0x31,0x10,0x4d,0xfb,0x71,0x59,0x8b,0x25,0x90,0xac,0x2f,0x03,0xdc,0xed, + 0x66,0xb4,0xb5,0x3f,0x0a,0x71,0x4a,0xa7,0x23,0xd6,0xa2,0x3f,0x70,0x35,0x5d,0x01,0x45,0x28,0x71,0x1d, + 0xb0,0x0b,0xd2,0xe3,0xab,0x82,0xe0,0xee,0x24,0xb9,0x45,0x96,0xa8,0xb9,0x9c,0xa5,0x51,0x69,0x6a,0xe4, + 0x73,0x03,0x28,0xa2,0x88,0xf0,0x6d,0x7d,0xa2,0xf8,0xc3,0x9a,0x3e,0x04,0xd8,0x8e,0xf3,0x58,0xbe,0xcf, + 0x37,0x23,0xdd,0xdf,0x24,0xdd,0x00,0x65,0xde,0x31,0xa4,0xbc,0xc0,0xdc,0xfb,0x63,0xb2,0x89,0x9f,0x1b, + 0x98,0xcc,0x34,0x13,0x0c,0x3e,0x67,0x4e,0x5c,0x1b,0x73,0xe6,0xb7,0x30,0xae,0x89,0xf1,0xbc,0xe9,0x1f, + 0x42,0x2a,0x43,0xd0,0xc7,0x60,0x71,0x9c,0x12,0xcf,0x46,0x7f,0x68,0x0c,0x75,0x44,0xeb,0x2d,0xdf,0xa7, + 0x84,0xe2,0xa3,0x58,0x9e,0xeb,0xcd,0xa6,0x3b,0x0c,0x33,0x08,0x3a,0x20,0xf3,0x8a,0xfa,0x4b,0xd4,0xab, + 0x5e,0x1c,0xd3,0x4a,0xe5,0xb5,0x22,0x33,0x3d,0xea,0x59,0xfc,0x1c,0x64,0x01,0x47,0xd7,0x80,0x81,0x7f, + 0x9c,0xab,0xd5,0x12,0xd6,0x85,0x34,0x85,0x11,0x94,0xfe,0x3a,0xfe,0x46,0xa3,0xc3,0x4b,0x70,0x13,0x39, + 0xdb,0x48,0x01,0x0a,0x73,0x18,0x07,0xaa,0x66,0xb8,0xc8,0xaf,0x89,0x94,0x71,0xe3,0xa3,0xb3,0xaf,0x4e, + 0x4c,0xb2,0x99,0xa2,0xf4,0x51,0x3d,0x4a,0xc1,0x67,0xf2,0xa7,0x26,0x97,0xc6,0x4d,0x95,0x70,0x33,0x13, + 0x3a,0x89,0x68,0xd6,0x51,0xcb,0x44,0x22,0x12,0xd0,0x43,0xe4,0xde,0x9b,0x08,0x88,0x6a,0x42,0x24,0x0f, + 0xa7,0xeb,0x1d,0xb2,0x72,0x1b,0xe3,0x85,0xdb,0x5b,0x7d,0xde,0x36,0x76,0x2e,0x80,0x6c,0x31,0x10,0x1a, + 0x0a,0x06,0x60,0xa4,0x36,0xe0,0x9d,0x85,0xd2,0xb9,0x02,0x83,0x66,0x4a,0x94,0x5e,0x89,0x52,0x4a,0xa4, + 0xc9,0x51,0x11,0x96,0x4e,0x3a,0x41,0xa5,0x52,0x82,0x3e,0x1a,0x4b,0x9c,0xb3,0x58,0x02,0x25,0xf1,0x37, + 0xf5,0x85,0x2b,0x6f,0xbb,0x5b,0xbf,0x39,0xce,0x4e,0x54,0x99,0xec,0xd2,0xaa,0x29,0xe6,0x6b,0x21,0x8d, + 0x41,0xb3,0x1f,0xc2,0x27,0x22,0x8f,0x53,0xf9,0x90,0x4f,0x40,0xd0,0x27,0x74,0x3e,0xa2,0xa1,0x40,0xbb, + 0x57,0x06,0xd1,0x38,0x25,0xe6,0x2d,0xfe,0xa0,0x85,0x64,0xa6,0x28,0x0c,0xff,0x77,0x59,0xa5,0x9d,0xd2, + 0xcf,0xb5,0xf6,0x7f,0x4d,0x13,0x26,0xa4,0xad,0x44,0x32,0x8d,0x6e,0xd3,0x3e,0xd3,0xbf,0x19,0x3c,0xa0, + 0x6c,0x0b,0x66,0x53,0x34,0xc6,0xa7,0xd3,0x9e,0x03,0x20,0x62,0xef,0x69,0x84,0x21,0x3b,0x4d,0xa2,0x26, + 0x38,0x91,0x67,0x4f,0xb6,0x08,0x18,0xac,0xa8,0x73,0x78,0xca,0x39,0x94,0x3a,0xf6,0x9e,0xfb,0x44,0xb4, + 0xf0,0x19,0x7e,0xe1,0x84,0xfb,0xc9,0x9b,0xb0,0x91,0xc1,0x8e,0x2b,0x4b,0xed,0x54,0x04,0xae,0x40,0x49, + 0x59,0xa4,0xf9,0xf5,0x2e,0x0d,0x3d,0xea,0x26,0x80,0x0f,0xf9,0x18,0xa6,0x34,0xf1,0xdd,0x8c,0xda,0x99, + 0x4d,0xd8,0xd5,0x7b,0xe3,0xd9,0x47,0x61,0xf4,0x8e,0x3b,0xd4,0x5a,0x7e,0x76,0xe8,0xb6,0xc5,0xc3,0x5f, + 0xae,0xf6,0xa2,0x07,0x1e,0x1e,0x6f,0x8e,0x0f,0x69,0x6c,0x81,0xab,0xf0,0x83,0x3b,0xd0,0xbb,0xc7,0x86, + 0x01,0xb8,0x37,0x22,0xdd,0x7c,0x63,0xbc,0x5e,0x4d,0x98,0x8f,0xca,0x11,0x96,0xc5,0xa3,0xca,0x70,0xfe, + 0x6f,0x58,0x18,0x66,0x3e,0x70,0xa2,0x18,0x2b,0x49,0xb0,0x4d,0xff,0xe4,0xad,0x78,0xe3,0x10,0x46,0x42, + 0xeb,0x9b,0x54,0xc3,0x7b,0xcb,0x94,0x98,0xa9,0x66,0xe4,0x0c,0x88,0xec,0x52,0xb2,0x0f,0xc1,0xd3,0x74, + 0x49,0x15,0x66,0x53,0xc6,0x05,0xf6,0xeb,0x92,0x10,0x62,0xf9,0x28,0x37,0xfd,0x2a,0x11,0x7a,0xa4,0xba, + 0xe1,0xe1,0xc1,0x04,0x12,0x3b,0x42,0xd6,0xaa,0x52,0xd2,0xb8,0xee,0xa0,0x93,0x78,0x3c,0xa1,0x5e,0x55, + 0x2a,0x68,0xb5,0xb1,0x73,0x51,0x96,0x9f,0xe0,0x0f,0xff,0x44,0x77,0xd9,0x0d,0xe2,0x89,0x37,0x88,0xe7, + 0x85,0x74,0xed,0xa5,0xe8,0xdc,0xb9,0x65,0x3d,0x87,0x9d,0x2c,0x3f,0x70,0x89,0x54,0x68,0xdb,0xff,0xd1, + 0x48,0x7d,0x03,0x6d,0x6a,0xed,0x7f,0x47,0x7d,0xf8,0x71,0xab,0x0b,0x3f,0x7a,0x5d,0xd8,0x7d,0x06,0x79, + 0xd6,0xab,0x82,0xf6,0x5f,0x8f,0x8f,0x11,0xbc,0xd8,0x69,0x47,0x6b,0x0d,0x4d,0x36,0xd2,0xef,0xd2,0x44, + 0x4b,0xb8,0xfc,0x03,0x91,0x33,0xcb,0x2a,0xd1,0x62,0xa7,0x2c,0x99,0x56,0xc6,0xed,0x3c,0x1a,0x4d,0x8d, + 0x24,0x38,0x71,0xc2,0xc4,0x86,0x9e,0x1b,0x27,0x05,0x6a,0x58,0x92,0xd7,0x9c,0x84,0x5e,0x95,0x2f,0xbd, + 0x53,0x0f,0x8b,0x46,0xd5,0xb0,0x2d,0x45,0x5b,0x91,0xa4,0x9d,0x11,0xad,0x80,0xd3,0xce,0x8b,0x40,0x4b, + 0x50,0xd0,0x11,0x70,0x94,0x4f,0xb0,0x1a,0x7c,0xaa,0x15,0xec,0x13,0x0f,0x55,0xcd,0x12,0x7c,0x05,0xfa, + 0x7c,0xa0,0x2e,0xaa,0xf1,0xbc,0x0a,0xa3,0x78,0x55,0xc1,0x40,0x67,0x37,0xeb,0xd7,0xcf,0x68,0x4d,0x5a, + 0xe4,0xc9,0x51,0xfa,0x94,0x6b,0x05,0x94,0x6b,0x6e,0x18,0xbf,0x23,0xcd,0x16,0x00,0xdf,0xa5,0x2c,0x29, + 0x52,0xde,0x21,0x15,0x0c,0x89,0x05,0x85,0xf4,0x11,0x8c,0xb0,0xe5,0x90,0x5f,0x54,0xe5,0xef,0x70,0xc7, + 0x16,0x9b,0xaa,0x46,0xd3,0xea,0xe6,0x3c,0x6e,0x7c,0x76,0x2c,0x67,0x28,0x2f,0x60,0x41,0x48,0x87,0xb3, + 0x31,0xec,0x2c,0xe0,0x7d,0x40,0xef,0x70,0x15,0x49,0x35,0xad,0xd3,0xb4,0x68,0x1d,0xea,0x1c,0x93,0x5c, + 0x5e,0xa4,0x9d,0x2a,0x09,0xcb,0x0e,0x7d,0x1e,0x6d,0x7d,0x53,0xd2,0x57,0x27,0x1c,0x59,0x21,0xa2,0x59, + 0x3f,0xab,0x22,0xfa,0x3f,0x9c,0xd0,0x51,0x50,0xf9,0x0b,0xfa,0x5b,0xd8,0x8e,0xa1,0xa5,0x55,0x7a,0x4e, + 0xb8,0xad,0x40,0x18,0xcc,0x0a,0x3e,0xae,0x77,0xb7,0x68,0x18,0x2b,0xba,0xf6,0x14,0x6f,0x4e,0xb6,0x37, + 0x72,0xf8,0xa0,0xd0,0xa0,0xd7,0xab,0x88,0x80,0x98,0xc4,0xaf,0x21,0xb3,0x32,0x71,0x6e,0x1a,0xe1,0x0c, + 0x5c,0x8f,0xbf,0x0f,0xb5,0x30,0xc1,0xda,0xff,0xab,0x5a,0xd1,0x81,0xcf,0x8d,0xa5,0x72,0xba,0xd3,0xd4, + 0x83,0x1a,0x98,0x30,0x45,0x44,0xb4,0xc0,0x69,0x05,0xe4,0x9c,0x85,0x6c,0x23,0x97,0xd1,0x91,0x3f,0xa6, + 0xbf,0x35,0xea,0xc6,0x79,0x28,0xa5,0x93,0xdf,0xb0,0x2c,0xaa,0x22,0x7e,0x9d,0x8d,0x37,0x6b,0xb5,0x1a, + 0x12,0x35,0x9e,0x29,0x04,0x78,0x61,0x14,0x42,0x4f,0xf0,0x89,0x23,0xfa,0x88,0x9f,0x60,0xa6,0x1e,0x45, + 0x71,0x4d,0xa7,0xc8,0x84,0x6a,0x99,0x70,0x57,0x89,0xda,0x47,0x5d,0x93,0x28,0x72,0xfd,0x29,0x78,0x3d, + 0x52,0x90,0xa7,0x79,0x18,0xea,0xde,0x44,0xd2,0x8a,0x74,0xd0,0xb4,0xe0,0x2d,0xcc,0x77,0xa1,0x1e,0xa2, + 0xa7,0xd7,0x8a,0x6e,0xcb,0x7e,0x21,0xaa,0x9a,0xcb,0x68,0x88,0x76,0xd8,0x54,0x6d,0x01,0x12,0x04,0x62, + 0x84,0x77,0x21,0xff,0x1b,0x02,0x03,0xc2,0x84,0xc3,0xbd,0x11,0x95,0x14,0xe9,0x53,0x0e,0xf6,0x84,0xb4, + 0x0e,0x23,0x9e,0x9e,0x9a,0x66,0x03,0x3d,0x8e,0x1b,0x19,0x17,0xa4,0x0c,0xf4,0xc4,0x96,0x32,0x53,0x9a, + 0xbd,0x9a,0x46,0x88,0x74,0xd9,0xfd,0x29,0xcd,0x02,0x3e,0x98,0x28,0xfa,0x44,0xd5,0xba,0x18,0x36,0x31, + 0x0b,0xc0,0x6a,0x37,0xaa,0x6f,0x99,0x0b,0xd4,0x23,0xc3,0x8e,0x01,0x10,0x09,0xb5,0x00,0x6a,0xc6,0xb1, + 0xe7,0x08,0x8f,0x02,0xb0,0x2f,0xd7,0x6b,0xcd,0xd7,0xf2,0x2b,0x9d,0x41,0xba,0x70,0xde,0x2d,0x9c,0xb7, + 0x0b,0xe7,0x28,0xbc,0xd9,0x3e,0xb0,0x7e,0xf6,0xa4,0xae,0x62,0xa5,0xcf,0x02,0x5a,0xc2,0x48,0xd8,0xd8, + 0xda,0xc4,0xde,0x88,0x2c,0xdd,0x67,0xff,0xf6,0x99,0xb5,0x10,0x4c,0x79,0x56,0xbf,0x61,0xa5,0xf0,0x7a, + 0xfd,0x2d,0x02,0xb9,0xc8,0x0b,0x74,0x92,0xd9,0xf1,0x47,0x56,0x8b,0xda,0x73,0xfd,0x28,0x3d,0x97,0x68, + 0x00,0x70,0x54,0x15,0xea,0x87,0xb6,0x01,0x3c,0x08,0x0c,0x31,0x0c,0xaa,0xc3,0xe3,0xec,0xfe,0xd5,0x0a, + 0xf3,0x62,0x7b,0x03,0x5a,0xc1,0x17,0xce,0xba,0x0f,0xfe,0xa9,0xed,0x16,0xba,0xc2,0x85,0xe8,0x33,0x02, + 0x7e,0xc3,0xa5,0x80,0x56,0xe5,0x95,0xa8,0xd8,0x2d,0x02,0xe2,0xd3,0x8e,0x34,0x99,0x36,0xcd,0xbf,0x28, + 0xd7,0x4e,0x78,0xe5,0x51,0xa2,0x59,0x66,0x0e,0xae,0x62,0x7c,0x83,0xe3,0x9d,0xe0,0x4e,0xe4,0x41,0xf2, + 0xd6,0xd1,0xd1,0x35,0x92,0x79,0xcb,0x99,0xb3,0x59,0x27,0xb7,0xb0,0x95,0xdd,0x50,0xc7,0x14,0xef,0x74, + 0x31,0xb7,0xa2,0x64,0x22,0x6b,0x29,0x55,0x68,0x3e,0x4f,0x6b,0x9d,0xf9,0x7c,0x98,0x70,0x5a,0xbb,0xee, + 0x38,0xf0,0x30,0x50,0x2b,0xa4,0x99,0x11,0xa2,0x69,0x79,0x24,0x73,0xb6,0x69,0x52,0xf2,0xc6,0x40,0x15, + 0x2c,0x45,0x4c,0x9b,0xa6,0xaa,0xed,0x03,0x21,0xb0,0xb2,0xb1,0x7e,0xc4,0x7e,0xa2,0x2a,0x8d,0xfc,0x5c, + 0xec,0xf1,0x4a,0x27,0xdb,0xde,0x65,0x45,0x05,0xa4,0x97,0xa2,0x33,0x4e,0xf9,0x83,0x28,0x2c,0x0c,0x20, + 0xb0,0x39,0x87,0x09,0x41,0x77,0x7c,0x42,0x68,0x81,0x77,0x54,0xe9,0xc9,0x80,0x6a,0xfd,0x15,0xa3,0xb3, + 0x1a,0x9a,0x4a,0xfc,0xa0,0xf0,0x28,0x68,0xb2,0xc5,0x72,0x4e,0x4c,0x16,0xe0,0xae,0x84,0xa8,0x7f,0x3c, + 0xe1,0x0a,0x34,0x9a,0x98,0xa0,0x6b,0x5a,0xa4,0xbd,0x5e,0xd3,0x17,0xf1,0xc4,0xd4,0xbf,0xb1,0xb1,0x8f, + 0x56,0x82,0xa3,0x8a,0xe3,0xd5,0x89,0xd6,0x2d,0xe5,0x99,0x73,0x98,0x46,0xb2,0x8b,0x2c,0xe2,0x34,0xf9, + 0xd9,0x5d,0x30,0xba,0xdb,0x06,0x52,0x22,0x62,0x76,0x78,0x57,0xf0,0x1e,0xf3,0x14,0xfb,0x99,0xa7,0xd0, + 0xd4,0xbc,0xda,0x1d,0x90,0xda,0x81,0x6a,0x50,0xa6,0x63,0x7c,0x2e,0xca,0xa9,0x98,0x78,0x1f,0x7a,0xc2, + 0x41,0xc8,0x9a,0xce,0x13,0x9a,0xfd,0x1e,0x8d,0x63,0x9a,0x19,0xcd,0xe5,0x28,0xd3,0x7b,0x51,0x53,0xa7, + 0xd1,0x28,0x62,0x2d,0xf5,0x69,0x5e,0xa4,0xcc,0xfd,0x7e,0x8e,0xde,0xad,0x33,0x4b,0x6b,0x1b,0xed,0xf6, + 0xa9,0xb0,0xcd,0xaf,0xf4,0xd7,0x44,0x6f,0x29,0x6e,0xcc,0x50,0xa5,0x86,0x71,0xdf,0x2a,0x69,0x68,0x80, + 0x76,0xeb,0xce,0xc0,0xc3,0xeb,0xd1,0xad,0xf7,0x02,0x82,0xae,0x3b,0x5b,0xf7,0xcc,0x2a,0xfb,0xf3,0x86, + 0xbe,0xba,0x1c,0xd6,0xc4,0xf2,0xe6,0x0c,0xb8,0x1e,0x82,0x9a,0x69,0xe0,0x8b,0x05,0x27,0x59,0x5b,0xa4, + 0x61,0x48,0x75,0xcd,0xe2,0x7a,0xe2,0x00,0xde,0x4b,0x45,0x77,0x2f,0x81,0xe6,0x2b,0x6c,0xd4,0x4c,0x1b, + 0x7d,0xa2,0x00,0xd9,0x57,0x80,0x44,0xde,0x0b,0x0c,0x0d,0x4e,0xa3,0x21,0x32,0xe8,0x25,0xbd,0xb0,0xe3, + 0x25,0xb3,0x80,0xd9,0x02,0xa6,0x0a,0x28,0x10,0x07,0x7b,0x3e,0x56,0x58,0x21,0xf0,0xd7,0x63,0xd0,0x84, + 0x42,0xc7,0xaa,0x86,0x87,0x7f,0x04,0x7b,0xa4,0xaa,0xf1,0x95,0xb0,0xbe,0x25,0x50,0x3e,0xdd,0x27,0x02, + 0x6d,0x4a,0x34,0xe5,0x47,0xc4,0xa4,0xfa,0x58,0x3d,0x3a,0xb2,0x34,0xc7,0x47,0xee,0x6e,0x42,0x40,0x70, + 0x54,0x1d,0x7f,0xac,0x4e,0x22,0x2a,0xa8,0xae,0x2b,0x16,0xdb,0x32,0xfd,0x31,0xac,0x56,0x45,0x68,0x8c, + 0xb1,0x3e,0x55,0x96,0x76,0xa9,0x92,0x23,0xfb,0x42,0xb5,0x24,0xb6,0x4a,0x14,0x32,0xf4,0x34,0xd5,0x04, + 0xbd,0xf8,0xd3,0x2a,0x41,0xa7,0x0f,0x5b,0x92,0x96,0x3f,0x20,0xb5,0xfd,0x45,0x3e,0x50,0x58,0x3f,0x08, + 0x73,0x77,0x11,0x2d,0xb4,0x88,0xee,0xa8,0xc8,0x55,0x02,0xca,0xcf,0xac,0x1e,0xbe,0x03,0xd5,0x75,0xb9, + 0x18,0x55,0xc3,0xd3,0x2b,0xac,0x44,0x56,0x11,0x50,0x15,0x90,0x67,0x9f,0xe6,0x74,0x76,0xad,0x08,0x41, + 0x4d,0x07,0x03,0x1a,0x0a,0x71,0x4a,0x22,0xaa,0x61,0x78,0x20,0x4c,0xaf,0xbe,0xa3,0x62,0xcf,0x81,0x97, + 0x2e,0x9b,0xb2,0x84,0xb7,0xf0,0x77,0xc4,0xfa,0xf0,0xfa,0xcc,0xe6,0x84,0x3e,0x02,0x6f,0x75,0xe6,0x16, + 0x67,0x3f,0xaf,0xa0,0x82,0xd9,0xb6,0xe7,0x63,0x2b,0x32,0xea,0x0f,0x01,0xe0,0x46,0x51,0xa1,0x3a,0xdb, + 0xb6,0x9b,0x96,0x6c,0x44,0xf9,0xbb,0x4b,0x57,0x53,0xd0,0xa7,0x5e,0xb3,0x33,0xdb,0xac,0x40,0x24,0x2b, + 0xb5,0xfa,0xa4,0x52,0xc5,0x38,0xd4,0x1d,0xab,0xc6,0x53,0x36,0xc4,0x2a,0x4c,0x27,0xce,0xa3,0xd8,0xe4, + 0x15,0xf8,0x3b,0xae,0x40,0x01,0x20,0xa0,0x1d,0x81,0x30,0xcd,0x97,0x29,0x8f,0xbc,0xf8,0xdc,0x7c,0x55, + 0xe0,0xef,0x98,0xff,0xc6,0xe7,0xd1,0x9d,0xfd,0x6d,0xda,0xfd,0x9d,0xfa,0xf8,0x72,0x4b,0xa5,0xc4,0x76, + 0x76,0xa7,0x38,0x77,0x57,0xb4,0x0a,0x3f,0xc9,0x6a,0xd1,0xb4,0xf7,0xa7,0x6b,0xd1,0x8e,0x95,0xdd,0xb3, + 0xe0,0xae,0xb9,0x81,0x4d,0x6e,0x06,0xcd,0x04,0xa4,0xbf,0x91,0xf2,0x34,0x52,0x8d,0xd3,0x05,0x35,0xa2, + 0xbb,0xf0,0x2d,0x5c,0x32,0x27,0x4c,0xb2,0xa1,0x7b,0xa0,0x24,0x82,0xd4,0x55,0x21,0xe2,0x94,0x36,0x3f, + 0x8f,0xd4,0xb6,0x1c,0x8c,0x35,0x81,0x8c,0x91,0x69,0xd3,0xdc,0xbb,0x12,0x5f,0x70,0x11,0x0f,0x3b,0xcb, + 0x15,0x87,0x32,0xb3,0x3f,0x36,0x5a,0xfa,0xb6,0x18,0x7f,0xc8,0x66,0x73,0xe4,0x94,0x57,0xc5,0xf7,0x62, + 0x22,0x31,0x9c,0xe5,0xf3,0x26,0xab,0xfa,0x0c,0x9c,0xff,0x8c,0x06,0x71,0xe8,0xb4,0x7c,0x9b,0x28,0xee, + 0x58,0x5f,0xf4,0xf0,0x23,0xb7,0x4e,0x12,0x01,0x02,0x96,0x28,0x03,0x44,0x26,0x1d,0x42,0x80,0x0a,0x69, + 0xe4,0xa8,0x1e,0xf1,0x68,0x6a,0x16,0x35,0x5d,0xe6,0x53,0xec,0x23,0xa6,0xf4,0xbd,0x14,0x22,0x88,0xe8, + 0x9b,0xc4,0x4b,0x81,0x70,0xf6,0x8c,0x06,0xfb,0x69,0x43,0x6c,0x82,0x39,0x7c,0xc0,0xf7,0xed,0xc2,0xf6, + 0xd0,0x48,0xca,0x20,0xad,0xa4,0x0f,0x05,0x32,0x26,0xd2,0xb0,0x11,0x99,0x71,0x8d,0x3d,0x30,0x6e,0x15, + 0x71,0x04,0xad,0x93,0x8d,0xb5,0x27,0xf2,0x16,0x19,0xe1,0xce,0x5a,0x2c,0x2e,0x78,0xa6,0x6d,0xa9,0x34, + 0xcb,0xfc,0xb6,0x43,0x0b,0x69,0x11,0xbc,0xd5,0x72,0x5b,0x8b,0x2e,0x55,0x12,0xba,0x4b,0x1d,0x0a,0x2a, + 0x1f,0xa5,0x2c,0xae,0xa9,0xd0,0x51,0xda,0xdc,0x1c,0xcf,0xd5,0x49,0xdf,0xb7,0x6d,0x08,0xb7,0xab,0xe6, + 0x3a,0xa9,0xa2,0xcc,0xaf,0xa8,0xdc,0x3b,0xf4,0xeb,0xc9,0x0d,0x69,0xbb,0x65,0x4a,0xe3,0x57,0x55,0x77, + 0x7a,0x59,0x77,0x7b,0x39,0x49,0x6a,0x74,0xd0,0x76,0x76,0x42,0x1c,0xa3,0x72,0xb2,0x58,0x4d,0x11,0x33, + 0xba,0xfc,0x11,0xb1,0x01,0x38,0x40,0x82,0xa7,0xbc,0x5f,0x78,0x3b,0x87,0xe5,0x5b,0xd4,0x10,0xef,0xd8, + 0x7b,0x35,0x2c,0x15,0xa6,0x1f,0x89,0x68,0x33,0x9b,0xb5,0x44,0xec,0x36,0xa6,0x65,0x2b,0xde,0x33,0x97, + 0xe1,0x65,0x88,0x97,0x88,0xe5,0xde,0x79,0x82,0x2d,0xb7,0x5e,0x37,0xbe,0x93,0xb3,0xae,0xca,0x54,0x92, + 0x42,0xb9,0x31,0x3c,0x25,0xa0,0x99,0x66,0x15,0x73,0x57,0xf8,0x8e,0x28,0xcb,0xc6,0x44,0xcb,0x85,0xce, + 0x0f,0xc5,0xad,0xfd,0xd0,0x58,0xaa,0xe8,0x38,0xff,0x59,0x9a,0x51,0xdd,0xa2,0x74,0x8c,0xb8,0xa0,0x2d, + 0xad,0xd0,0xb9,0x8f,0xab,0x5e,0x88,0x59,0xb0,0x21,0x06,0x54,0x20,0x5b,0x11,0xa1,0x11,0xa8,0xc3,0x8f, + 0x3d,0x92,0xf0,0xa6,0x3b,0x1d,0x09,0x1d,0x21,0xb4,0x30,0xb0,0xdf,0x01,0x82,0x27,0xc2,0xc6,0x9a,0x35, + 0x8e,0xdb,0x70,0x97,0x47,0x63,0xf6,0x6e,0x76,0xde,0xaf,0xc4,0x10,0xe5,0x90,0xec,0xc6,0xd5,0xf8,0xba, + 0xa0,0x85,0x00,0x21,0x1d,0x77,0x89,0xff,0x33,0xdb,0xa2,0x66,0x27,0x0b,0x70,0xd8,0xe0,0x28,0xb7,0x55, + 0xde,0x34,0xe7,0x0b,0x64,0x8d,0xb4,0xc8,0xc0,0x1d,0x41,0xb9,0xc8,0xf8,0x27,0x73,0xe2,0xed,0xd9,0x35, + 0x93,0xf7,0xc0,0x8d,0x30,0x73,0xf4,0x72,0x83,0x22,0x11,0x41,0xb9,0x4f,0x92,0x67,0x86,0x3b,0xd0,0x0f, + 0x2c,0x44,0x1e,0xa5,0xd0,0x8b,0xd3,0xa8,0x61,0x0c,0xfe,0x43,0xcd,0xc7,0x01,0xa1,0xc3,0x9a,0xe6,0x77, + 0x4c,0xac,0x5f,0xb9,0x40,0x42,0x0d,0x11,0x84,0x7d,0x01,0x03,0x1e,0xeb,0x3a,0x38,0x83,0x9f,0x90,0xba, + 0xc9,0x81,0x51,0x52,0x48,0xdc,0xc1,0x44,0x0b,0x47,0x5b,0x42,0x80,0x11,0x22,0x28,0x05,0x17,0x2e,0x0b, + 0x66,0xe0,0x8f,0xf5,0xf9,0x4d,0x84,0x53,0x7e,0xd2,0x3a,0x5b,0xf1,0x15,0x8b,0xbe,0x2c,0xc5,0x38,0x11, + 0x6a,0xbf,0x26,0x2e,0xdf,0x05,0x05,0x73,0xd6,0x5c,0x2d,0x1a,0x50,0x8e,0x9f,0x9a,0x2d,0x7c,0x8e,0xaa, + 0x2c,0x43,0x0f,0xb7,0xd2,0xc0,0x88,0x60,0xdf,0x01,0x46,0x0d,0x83,0x48,0xe7,0x68,0xd3,0x59,0xe2,0x2a, + 0x1a,0x3f,0xa6,0x3f,0xf1,0x53,0xfc,0x09,0x8f,0xb2,0x50,0x3e,0x49,0x5a,0xd0,0x35,0x94,0x7a,0x3f,0x30, + 0x8c,0xbf,0x28,0x00,0xf7,0x4e,0x8f,0x6a,0x60,0xff,0x3d,0xdc,0xc1,0x45,0xbc,0xca,0x9a,0x55,0xd8,0xc3, + 0xc8,0x77,0xa7,0xa7,0xc1,0x5e,0xa6,0x76,0x0f,0xa3,0xd6,0xf9,0x73,0x65,0x49,0x05,0xdd,0xbd,0xa3,0x4c, + 0x1b,0xd1,0x10,0xaf,0x8a,0x4f,0x9a,0xbd,0xb0,0x18,0x07,0xa7,0xf0,0x92,0x0e,0x02,0x09,0x40,0xe4,0x4d, + 0xc9,0x51,0xe6,0x89,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe3,0x2f,0x99,0xa0,0xe3,0x50,0xb4,0x1a,0x9d, + 0x3a,0x47,0x02,0x4e,0xfe,0x94,0x69,0x75,0xea,0x1e,0x1a,0xae,0xac,0x78,0xef,0x93,0x69,0xcd,0x33,0x39, + 0xb3,0x1d,0x70,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xd8,0x70,0xe5,0xf5,0x3b,0x1a,0x4a,0xe2,0xed,0xc5, + 0x6b,0x8f,0x4d,0x81,0x22,0xbe,0x89,0x1c,0x5d,0x5f,0xca,0x9f,0x31,0x23,0x20,0x3c,0x45,0xb1,0xc7,0x7f, + 0x55,0x22,0x41,0xf3,0x74,0x7d,0x84,0x3a,0x21,0x81,0x1c,0xb1,0x6e,0x2f,0x1f,0x1f,0x9f,0x18,0x2d,0x75, + 0xae,0xfd,0xc9,0xb7,0xc1,0xe8,0x69,0x26,0x7e,0x65,0xa7,0x65,0x72,0x95,0x51,0x1b,0xa7,0x05,0x87,0x5c, + 0x3f,0x85,0x7c,0x8c,0x7e,0xe6,0xc9,0x25,0xa7,0x36,0xc9,0x82,0x7f,0x7f,0x4b,0x6e,0xf0,0x93,0x27,0x67, + 0xf8,0x59,0x24,0xa7,0x9c,0x3a,0x4b,0xce,0xf9,0xf7,0x53,0x72,0xc3,0xbf,0x67,0xc9,0x19,0xff,0x5e,0x26, + 0xd7,0xf8,0xa1,0xf1,0x22,0xe2,0xc6,0xe9,0x2a,0x29,0x39,0xf9,0x3c,0xb9,0xf6,0x7a,0xf0,0x58,0x26,0xcd, + 0x17,0x13,0x12,0x83,0xac,0xc1,0x4c,0x1c,0x32,0xd8,0x53,0x49,0x47,0x4a,0x15,0x0d,0x6f,0x23,0x2f,0xd6, + 0x22,0xac,0xd2,0x99,0x7c,0x52,0x27,0x3a,0x26,0xe9,0x5c,0x47,0x89,0xa9,0x13,0xd9,0x86,0x97,0x85,0x09, + 0xf8,0x89,0x93,0x88,0x8d,0xd8,0x88,0xe2,0x49,0xf5,0x3b,0x6d,0x7d,0xc9,0x66,0x3c,0xde,0x43,0x1c,0x57, + 0x19,0x5b,0x22,0x6c,0xda,0xa6,0xa1,0x9a,0x28,0xca,0xc5,0x95,0x2e,0x15,0x1a,0x10,0x71,0x57,0xe0,0x53, + 0xb7,0x3b,0x19,0x4d,0x8c,0x73,0xa1,0xd9,0x39,0x49,0xaa,0xbc,0xf3,0x22,0x71,0x4d,0x86,0x91,0xda,0x3a, + 0x93,0x60,0x19,0xee,0xde,0x30,0x04,0x44,0xa5,0x38,0xad,0xc5,0xbe,0x6e,0xac,0xa9,0xce,0xad,0x70,0x28, + 0x46,0x5a,0xf2,0x8e,0xa3,0xf7,0x6b,0xc4,0xbb,0xb2,0xe7,0x65,0xc9,0xa6,0x4f,0xce,0x64,0xcf,0xd5,0xa8, + 0x3c,0x89,0x48,0x42,0x63,0x2a,0x37,0xf1,0xdd,0x6d,0x18,0xba,0xae,0xdd,0x88,0x47,0xcb,0x7c,0xcc,0xee, + 0xb0,0x5a,0x66,0x5d,0xab,0x58,0x2e,0x7b,0xd6,0x67,0x98,0x5f,0x4d,0xf0,0x88,0x76,0x25,0x0b,0x8d,0x55, + 0xdd,0x8a,0xfa,0x68,0x51,0xcf,0x29,0x1c,0x0d,0x59,0x11,0xa5,0xcf,0xfd,0x64,0x65,0xa4,0x73,0x54,0xbe, + 0xcf,0xca,0x43,0x4f,0xc8,0x9c,0x19,0x78,0xc8,0xcd,0xf2,0x29,0x3e,0x9c,0x13,0xdc,0x58,0xe5,0x65,0xe8, + 0xc5,0xc9,0xaa,0xc4,0xa9,0x19,0xe7,0x14,0x95,0x66,0x7d,0x0d,0x8b,0x1f,0xf5,0x33,0x3c,0x74,0x9d,0x8c, + 0xcd,0xa5,0x69,0xe9,0x9c,0x89,0x5b,0x3b,0xf5,0xca,0x98,0xa4,0x91,0xae,0x13,0x71,0x8a,0x08,0xd9,0xe8, + 0x5a,0xf5,0x5b,0xa7,0x5e,0x2f,0x95,0x85,0x65,0x22,0xf1,0xe3,0xb5,0xa9,0x23,0xa3,0xb9,0x70,0x49,0x89, + 0x08,0xd2,0x09,0xdf,0xac,0x7c,0xe8,0x35,0x93,0x9f,0x11,0x69,0xd5,0x38,0xd2,0x2a,0x7b,0x44,0x24,0x0c, + 0x44,0x0f,0xc0,0xdc,0xf7,0xa8,0xd0,0x24,0xfb,0x81,0x8f,0xa6,0x30,0xda,0xa8,0x79,0x72,0xda,0x52,0xca, + 0xb8,0xfe,0x27,0x10,0xaf,0x96,0x04,0xec,0xeb,0xf5,0x2a,0x64,0x97,0x9d,0x4e,0xd1,0xf6,0x24,0x31,0x55, + 0x26,0x41,0xc8,0xd0,0xaf,0x90,0x63,0xa7,0x4c,0x93,0x2a,0x9c,0xab,0x99,0x73,0x9d,0x08,0x79,0x35,0xfa, + 0xdc,0x74,0xd8,0x5b,0x72,0x9c,0xf9,0x73,0x3a,0x18,0x48,0x2a,0x57,0x11,0x37,0xe1,0xd4,0x49,0x41,0xa3, + 0xde,0x68,0xce,0x5e,0x01,0xfe,0x10,0x06,0x58,0x9d,0x24,0xae,0x4b,0xa1,0x2e,0xb3,0xd6,0xfe,0x28,0x68, + 0xcc,0x3a,0x03,0x76,0x01,0x5c,0xcc,0x2d,0x5f,0x7b,0xf5,0xb8,0xa8,0x7e,0xc7,0x34,0x01,0xb0,0xa6,0xc4, + 0x15,0xcc,0xd3,0x9b,0xb1,0x2d,0x48,0x53,0x11,0x13,0x4f,0x7a,0x24,0x81,0xd3,0x7c,0x8d,0x5c,0x67,0xa0, + 0x99,0x07,0x7c,0xa1,0xff,0xb9,0xcc,0xa4,0xd2,0x35,0xaf,0xd7,0x0f,0x0f,0x0e,0x74,0xc7,0x74,0x34,0x36, + 0x38,0xbe,0xff,0x99,0x16,0xe4,0x0a,0x0a,0xae,0xca,0x7c,0x19,0x01,0x93,0xed,0x1e,0x2a,0xdb,0xde,0xb8, + 0x35,0xc2,0xd8,0x7d,0xbf,0x71,0xb0,0x67,0xb4,0x0b,0x1b,0x9a,0xc9,0x15,0x6d,0x1d,0x27,0x82,0xee,0xa2, + 0x0d,0xcf,0xb4,0xb4,0x0a,0x1d,0x46,0x6a,0x49,0x22,0x09,0xd7,0xeb,0x84,0x37,0x19,0x61,0x7e,0x89,0xcc, + 0xd7,0x28,0xdd,0x18,0x02,0xe0,0x69,0xbc,0x1f,0x13,0xde,0x4f,0xcf,0x89,0x22,0x26,0x44,0x45,0x2d,0x1b, + 0xe4,0x31,0x2a,0x93,0x92,0x29,0xf8,0xe7,0xc0,0x20,0x8a,0x03,0x0f,0x13,0x69,0x3b,0xf7,0x2c,0x38,0x3d, + 0x26,0x0b,0x81,0xa9,0x91,0x0b,0x0a,0x91,0x1f,0xf8,0x8c,0x21,0xd2,0x92,0xf9,0xef,0x80,0x85,0xd1,0x9d, + 0x02,0x19,0x64,0x61,0x54,0x22,0x2f,0xe0,0x26,0x3c,0x0a,0x0b,0x39,0x96,0x58,0x44,0xbc,0x34,0xc4,0x62, + 0xc4,0xda,0x0e,0xfd,0x05,0xd7,0xa5,0x2d,0x4d,0x8a,0xa1,0x76,0x0e,0x14,0xa2,0x70,0x44,0xfd,0x23,0xe2, + 0x2f,0x1a,0xe3,0x6f,0x72,0x6c,0xbe,0x00,0x35,0x75,0x96,0x4e,0x3e,0xd9,0x43,0x9c,0x0b,0xc5,0x5c,0xa8, + 0x5b,0x66,0x43,0xab,0x6a,0xc8,0xfe,0x52,0x08,0xe7,0x99,0xc3,0x01,0xad,0x08,0x5c,0xb6,0xa0,0xb3,0xed, + 0xda,0x45,0x74,0x54,0x83,0x4f,0x68,0xd6,0xe8,0x20,0x13,0xe2,0x16,0x5e,0xe1,0xae,0x58,0x13,0xc2,0x0c, + 0xa7,0x09,0x57,0x8e,0x96,0x9a,0x33,0xe1,0x6b,0x82,0x7b,0x12,0xf9,0x3f,0x8f,0x46,0xdf,0xd2,0x69,0xb0, + 0x52,0xb4,0xa1,0x40,0x9e,0xad,0xd7,0x78,0x9d,0xc8,0xeb,0xa1,0xa5,0x63,0xeb,0xcd,0x06,0x82,0x73,0x8d, + 0x0b,0x4d,0x87,0x4c,0x87,0xd3,0x79,0x1f,0xf4,0xb4,0x35,0x89,0x38,0xd2,0xf5,0x80,0x75,0x9f,0xd3,0x76, + 0x4f,0xa3,0x96,0xd0,0x7c,0x42,0x78,0x6e,0x75,0x92,0xbc,0x0d,0x57,0xd4,0x19,0x26,0x05,0x34,0x15,0x07, + 0x74,0xc5,0x63,0x25,0xd8,0xf8,0x88,0x83,0xcc,0xbc,0x2a,0xe4,0x70,0x8d,0x2e,0x47,0x5e,0x79,0x7a,0xe7, + 0xc2,0xbe,0xe2,0xc8,0xa2,0x29,0x67,0x13,0x14,0x42,0x85,0xe9,0x50,0x08,0x5f,0xcf,0xe0,0x60,0x4e,0x67, + 0xa7,0xf2,0x9c,0x9a,0xb6,0x74,0x7e,0x33,0xff,0xc4,0x55,0x33,0xcf,0xc2,0x3e,0x85,0x23,0x27,0xab,0x32, + 0x42,0x2a,0x85,0x4d,0x40,0x50,0x23,0x0f,0x0c,0x5f,0x9c,0x99,0x48,0x19,0xda,0xb5,0x33,0xd8,0xc2,0xcc, + 0x64,0x13,0x48,0x27,0xa7,0x20,0xa4,0x58,0x6a,0x8d,0x5f,0x7a,0x11,0x8f,0x87,0x77,0x85,0xf2,0xa7,0x3d, + 0x45,0x80,0x23,0xda,0x78,0x1a,0x04,0x96,0x54,0x8e,0x79,0xd3,0x12,0xf3,0xba,0x64,0x52,0x81,0x1b,0x5a, + 0x46,0x9b,0x5d,0x1f,0xd3,0x67,0x46,0x4b,0x99,0x59,0x05,0x65,0xc7,0x40,0xe1,0x59,0xe5,0x8b,0x4d,0x35, + 0x59,0xfb,0xac,0x12,0x89,0xa7,0x7c,0x05,0xcd,0x40,0x9e,0xfc,0x0a,0xe7,0xa7,0x91,0x4d,0x49,0xaa,0xb1, + 0x8f,0x36,0xb6,0xa5,0x71,0x16,0x16,0x32,0xfb,0x08,0xcf,0x5a,0xfd,0x48,0xc0,0x95,0x13,0x7d,0x42,0x68, + 0x81,0xa1,0x0c,0xcd,0x5e,0x78,0x70,0x2f,0xf1,0x53,0x27,0x56,0x55,0x22,0xee,0x17,0xc1,0xe5,0x2a,0xdb, + 0xb7,0xa7,0xc2,0x3e,0x51,0xfa,0xa0,0x12,0xf6,0xc2,0x8b,0x71,0x40,0x2f,0x17,0xcc,0x6f,0x94,0xaa,0xd7, + 0xed,0x23,0x55,0xb7,0x4f,0x09,0x6d,0x11,0x32,0xb2,0x56,0x4f,0xf1,0x4c,0x59,0xea,0x33,0x9e,0x32,0x92, + 0x9a,0x38,0xac,0x45,0x7c,0xfc,0x1c,0x3e,0xaf,0xce,0xd2,0x1a,0x71,0xf4,0x35,0xf6,0x22,0x12,0xca,0x28, + 0x2f,0xdb,0x3c,0x4c,0xca,0x46,0x70,0x29,0xcc,0x1a,0xc2,0x49,0x02,0xb8,0x4f,0x89,0xe0,0x97,0x3e,0x44, + 0xb4,0xa2,0x2b,0xc9,0x78,0x5d,0x79,0xf2,0xe7,0xbc,0x45,0x50,0x35,0xf4,0x35,0x08,0x8e,0xd4,0x58,0x3f, + 0x58,0xed,0x1b,0x50,0x71,0xab,0x40,0xce,0xfa,0x76,0x44,0x39,0x03,0xdf,0x46,0xdc,0xac,0x5f,0xb2,0xdd, + 0xaf,0xba,0xff,0xd8,0xc5,0xc5,0x01,0x80,0xdc,0x14,0x92,0x0f,0x82,0x0d,0x9f,0x90,0x25,0x94,0x2e,0x82, + 0xb2,0x58,0xae,0x17,0xb0,0xfe,0x53,0xb8,0x33,0x8a,0x8e,0xcc,0xd7,0xd5,0x98,0x28,0x9b,0x70,0x95,0xd4, + 0xd1,0xf8,0xf8,0x9a,0x46,0x76,0xd2,0xb1,0xb2,0x5d,0xb9,0x78,0x56,0x44,0x3e,0xb8,0x08,0x34,0x98,0x3e, + 0x20,0x1b,0x44,0xa2,0x11,0xb1,0x13,0x6c,0xa1,0x4b,0xdf,0x16,0x3a,0xa3,0x39,0x2a,0x8f,0xeb,0x93,0xa8, + 0xcf,0x03,0x96,0xc8,0x1a,0xa2,0x0a,0x67,0xc7,0x44,0x41,0xd9,0x68,0x22,0x27,0x1d,0xb3,0xfc,0x49,0x34, + 0x36,0x4e,0x5e,0xdf,0x1c,0xd0,0x08,0x7f,0x0e,0xa9,0xc6,0x3c,0x9c,0x28,0xd8,0x9d,0xb0,0x47,0x3e,0xf1, + 0x89,0x44,0xa0,0xd1,0xc8,0x68,0x66,0x7e,0x0e,0x39,0x4a,0xc6,0x0c,0xe8,0xe7,0x3a,0x9c,0xb3,0x6e,0x6d, + 0x6f,0x42,0x79,0xa2,0xc9,0xc6,0xcd,0x57,0xfa,0x56,0x00,0xda,0xfb,0x9e,0x42,0x70,0x46,0x6b,0x16,0xc5, + 0x30,0x7a,0x1c,0xa3,0x8a,0x71,0xa7,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0xbc,0x06,0xce,0x8b,0x7f, + 0xa6,0xbf,0xd2,0x66,0xf7,0x03,0x69,0x2e,0x26,0x84,0x5b,0x5a,0x31,0x19,0xaf,0xf5,0x04,0xca,0x48,0x26, + 0x36,0x26,0x60,0x53,0x65,0xfd,0x19,0x94,0x98,0x6b,0x25,0xee,0xfb,0x12,0xa0,0x1c,0xec,0xa5,0x32,0x30, + 0xfa,0x7b,0x1a,0x98,0xce,0xa2,0x51,0x87,0xdb,0x36,0xb4,0x2e,0x5a,0xf4,0x13,0x63,0x19,0x5f,0x55,0x6c, + 0xb3,0xf1,0x27,0xd5,0x2a,0xdb,0x4c,0x3b,0x21,0x0a,0x0b,0xa2,0x92,0xe5,0x87,0x6e,0xc2,0xa1,0xa8,0x27, + 0xeb,0xf8,0x44,0x65,0x9e,0xbd,0x3a,0xcc,0x43,0x78,0xdb,0x33,0x2c,0x8c,0xfa,0xec,0x42,0xf5,0x39,0x32, + 0x1d,0xcd,0x92,0x7c,0x78,0xef,0xb2,0xa0,0xe3,0x14,0x01,0xb0,0xe4,0x69,0x58,0xd4,0x2c,0x1c,0x3a,0x27, + 0x12,0x2a,0x3d,0x47,0x8c,0xd8,0x7a,0x89,0xe0,0x0a,0x84,0x65,0xe6,0x10,0x95,0xe5,0xf5,0x87,0xac,0xce, + 0x2a,0x22,0x81,0x28,0x9b,0x52,0xc7,0x1a,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9f,0xa7,0x0d,0x82,0x65,0xe8, + 0x8f,0xf1,0x1d,0x36,0x61,0x1b,0x6b,0xe4,0x4c,0xbc,0x26,0x2f,0xc2,0xdc,0x13,0xd9,0x59,0x04,0x54,0x07, + 0xa0,0x35,0xc7,0xc4,0x13,0x4d,0xe9,0xdb,0x1c,0x87,0x4c,0x14,0xeb,0x66,0xca,0xde,0xda,0x44,0x7b,0x39, + 0x4f,0xe8,0x93,0x52,0x3e,0xf1,0xe4,0xa3,0x04,0x0f,0xe1,0xcc,0xf3,0x5f,0xa9,0xc2,0xdc,0xb2,0x38,0x39, + 0x1c,0xc6,0x4a,0x62,0x9b,0xca,0x2a,0xcb,0xcf,0x8b,0x77,0xc6,0x4d,0x9a,0x26,0x86,0x20,0x83,0xb1,0x80, + 0x41,0x74,0x2c,0xca,0x6c,0xe8,0x0b,0x83,0xca,0x3c,0x13,0x6d,0x8e,0x73,0xe5,0x72,0xec,0x96,0x7b,0x34, + 0xe1,0x6d,0xa7,0xd9,0x38,0x57,0x80,0xb6,0x20,0x51,0x3e,0x2b,0x0d,0x7d,0xc4,0x96,0xad,0x86,0x6c,0xc0, + 0x50,0x08,0x8a,0xa3,0xdd,0xcf,0x3d,0xdc,0x6c,0x84,0x38,0x9f,0xd3,0xf0,0x61,0x0f,0xe5,0xa1,0x34,0xcf, + 0x69,0xc3,0x0f,0x64,0x67,0x65,0x07,0xac,0xad,0xad,0x57,0xcb,0xac,0x32,0x67,0x0f,0xca,0xe9,0x14,0x26, + 0x3e,0xd8,0x22,0x95,0xdf,0x8d,0x01,0xc5,0x6d,0xfb,0x3d,0x31,0x7e,0x27,0x5d,0x23,0x6c,0x44,0x78,0x73, + 0x24,0x08,0x4e,0x33,0xe1,0x40,0x8d,0x47,0x1c,0x88,0xc6,0x3a,0x4b,0xe7,0x99,0x49,0xb1,0x47,0x63,0x69, + 0x94,0xf8,0xe5,0xc9,0xae,0x98,0x48,0x42,0x42,0xc0,0xbe,0x97,0x08,0x50,0xd3,0x40,0xc6,0xdd,0x63,0xa4, + 0xbb,0x25,0xcf,0xd2,0xc4,0x2b,0x21,0xba,0x22,0xe9,0x0a,0x51,0xc7,0x45,0xcc,0x2a,0xf7,0x2d,0xf3,0x38, + 0xf1,0x4d,0xb0,0x7d,0x11,0x8d,0x4a,0xe6,0x6b,0x54,0xc2,0xc6,0x49,0x76,0x41,0x70,0x7e,0x93,0x1c,0xd0, + 0x9a,0xb4,0xd3,0x1e,0x1d,0x60,0x81,0x74,0xa0,0x2f,0x24,0x38,0x7f,0x39,0xb7,0x07,0x0b,0x23,0xb1,0x57, + 0x18,0xa3,0xe7,0xcc,0xbf,0x61,0xaf,0x79,0x78,0x1d,0x77,0x27,0x8d,0x4e,0xae,0xd0,0x5b,0xc0,0xe4,0x35, + 0xb4,0xd1,0xed,0x32,0xda,0x1a,0x8b,0x23,0xd9,0xb8,0xcd,0x72,0xdc,0x70,0xea,0x49,0x82,0x10,0x2b,0xdb, + 0x16,0x05,0xef,0x33,0x1b,0xe2,0xe4,0x14,0xf1,0x02,0x5a,0xb6,0x97,0xbf,0xb6,0xec,0x23,0xd8,0x45,0x11, + 0xa7,0x79,0x87,0x5c,0x60,0xef,0x4c,0xef,0xab,0x67,0x59,0x8b,0x32,0xe9,0xae,0xce,0xd8,0x77,0x9d,0xff, + 0x66,0xff,0x30,0xde,0xd6,0xd5,0x8c,0x7d,0xa7,0xff,0x4e,0x69,0xa8,0xea,0xd4,0x6e,0x68,0xe3,0x28,0x48, + 0x20,0xb1,0x13,0x60,0x7c,0x13,0x47,0xa1,0x90,0x08,0xd8,0xec,0xb6,0xda,0x68,0x74,0xe7,0x89,0x15,0x5f, + 0x75,0x4c,0x04,0x58,0x4d,0xca,0x70,0x0a,0x05,0x0c,0x83,0xe7,0x29,0xe3,0xba,0x2e,0x5c,0x9a,0x40,0xbd, + 0x30,0x7b,0x67,0x4b,0x47,0xcd,0x17,0xfc,0x0a,0x49,0xd9,0x96,0xbd,0xd1,0xa8,0x86,0x00,0x99,0x49,0x80, + 0xd7,0xa0,0xc5,0x4a,0x66,0xf0,0x7c,0xd2,0xe6,0xf5,0x96,0xae,0x81,0x2d,0xf1,0x77,0x73,0xf6,0xd8,0x62, + 0x14,0x03,0x87,0x35,0xfc,0xe2,0x96,0x10,0xdb,0xc2,0x2b,0x4d,0x26,0x0f,0xef,0x4d,0x69,0x88,0x55,0x09, + 0x97,0xad,0xcc,0xea,0xfd,0xe7,0x7c,0xe7,0xa5,0xe7,0x05,0x90,0xf9,0x9e,0xdd,0xb7,0x22,0x64,0x7e,0x0a, + 0x3d,0x41,0xfc,0x96,0xf7,0xbc,0x4b,0x50,0x85,0xff,0x46,0x07,0x30,0x97,0x82,0x69,0x19,0x3f,0x11,0xc1, + 0xa1,0x9f,0x10,0x1c,0x19,0xbf,0x27,0xb1,0x7e,0xf0,0xcd,0xfa,0xdb,0xcb,0x9f,0x8d,0x9b,0x71,0xb6,0x17, + 0x20,0xec,0x4d,0x9c,0xc5,0xe0,0x0c,0x3d,0x9b,0xef,0x37,0x3e,0x80,0x6d,0x01,0x4a,0xdf,0xe1,0x48,0x93, + 0x85,0xd0,0x81,0xb4,0x3b,0x55,0xe9,0x54,0x76,0xf9,0xa3,0x92,0x77,0x28,0x11,0xba,0x09,0xea,0xc4,0xc6, + 0x03,0xe9,0xc5,0x17,0xbb,0x41,0x40,0x80,0xff,0x7b,0x09,0xf5,0x22,0x52,0xf4,0x5b,0x78,0xbb,0x92,0x95, + 0x34,0xdd,0xd6,0x04,0x5d,0x06,0xc1,0xa8,0x25,0x9e,0xcb,0x74,0x4c,0x80,0xb0,0xd1,0xa1,0x77,0x51,0x5d, + 0xe3,0x57,0xc7,0x1b,0xb8,0x17,0xa0,0xdb,0xa6,0xee,0xfe,0xb0,0x53,0x6e,0x3d,0xa8,0x2f,0xcf,0x83,0x38, + 0x58,0xa4,0xcd,0x05,0x1b,0x1a,0x8d,0xe5,0x71,0x4b,0x5b,0xf4,0x53,0x66,0xa2,0xfb,0x6c,0x6b,0x38,0x4d, + 0x8d,0x36,0xea,0xde,0x6f,0xab,0xac,0xba,0xf9,0x98,0x41,0x0f,0x5d,0xca,0x3d,0x34,0x77,0xc5,0xd2,0x9c, + 0xe6,0x97,0x41,0x9f,0x2a,0xe5,0x49,0x67,0xaf,0xb0,0xcd,0x65,0x95,0xcd,0x3a,0x3e,0x42,0xc6,0xf3,0x3a, + 0xf7,0xdd,0xb8,0x0d,0x98,0x02,0x43,0xc0,0x41,0xbb,0x84,0xe5,0x3c,0x7d,0x5b,0x8f,0xba,0x6a,0x95,0x92, + 0xad,0xa1,0xe6,0xfc,0x8b,0xc3,0x1f,0xbf,0x38,0x64,0x71,0xc0,0xe2,0x51,0x13,0xf2,0xb1,0x6b,0xff,0x55, + 0xf1,0xa2,0xac,0x7a,0x6b,0xc1,0x5f,0x8b,0x32,0x72,0xc2,0xc7,0x83,0x01,0x27,0x31,0x46,0x36,0x75,0x13, + 0x7c,0xc8,0x43,0xee,0x01,0xee,0x8f,0x22,0xc4,0x76,0x31,0xb6,0x40,0xe3,0xe1,0xa8,0xa7,0x5f,0x16,0x32, + 0xc9,0x7e,0xd4,0x47,0xbf,0xef,0x1f,0xce,0x3a,0x3f,0x67,0x3c,0xd6,0x68,0xe3,0x54,0x8e,0xc4,0x42,0x14, + 0x01,0x3f,0x77,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x0a,0x16,0x51,0xc1,0x1b,0x31, + 0xac,0xf4,0x9c,0x8b,0x30,0x34,0x71,0x0c,0x79,0xc5,0xba,0x3a,0xe8,0x6a,0xd9,0xaf,0xec,0x33,0x65,0xac, + 0x28,0x11,0xd6,0x75,0xeb,0xf5,0x2a,0x67,0x87,0x46,0xfa,0x21,0x6e,0x90,0x07,0x0c,0xba,0x02,0xa3,0x79, + 0x0c,0xa9,0xd2,0x7b,0x84,0xca,0xba,0x28,0xe7,0xc4,0xa9,0x73,0x0d,0x2d,0xd9,0x13,0xc6,0xe9,0x27,0x80, + 0x32,0x6e,0xa7,0x68,0x99,0x9c,0x6f,0xbf,0x9f,0x89,0x80,0xc2,0x6a,0x97,0xc5,0x49,0x0e,0x1b,0x2b,0x27, + 0x12,0x22,0x7f,0x94,0x54,0xa3,0xbd,0xbd,0x9c,0xb6,0x2e,0x2c,0x18,0xf3,0x13,0x4d,0x68,0x87,0x29,0x0e, + 0x7b,0xe7,0x69,0xe9,0x79,0x9e,0xbc,0xd4,0x30,0xa9,0x63,0xe4,0x79,0x0e,0x5f,0xeb,0x75,0xd3,0x4d,0x6a, + 0xcf,0xbb,0x81,0x64,0xe1,0x86,0x13,0xc4,0xe8,0x98,0xc2,0x6b,0xaf,0x91,0x87,0x3a,0xf9,0x3d,0xdb,0xae, + 0xd5,0x45,0x16,0x00,0x07,0x46,0x25,0xb6,0x1a,0xc1,0xc5,0xc8,0xa6,0xc4,0x8a,0xc8,0x0e,0x22,0x85,0x35, + 0x93,0x55,0x88,0x84,0xa5,0x4a,0x6a,0xe1,0xe6,0x27,0xf8,0xa9,0xc6,0x34,0x6b,0x34,0xc5,0x3f,0x42,0xf0, + 0x95,0x18,0x47,0xdc,0xdf,0xc0,0xe8,0x6a,0x1d,0x68,0xa0,0x70,0xe7,0x81,0xca,0x61,0x34,0x81,0x93,0x80, + 0x7e,0xdc,0xbe,0x12,0x59,0xf4,0x74,0x30,0x98,0x1b,0xa0,0x26,0xde,0x45,0xbe,0x86,0xcf,0x5a,0xdf,0xb7, + 0x79,0x41,0x34,0x39,0x7f,0xb3,0xb2,0xdf,0x60,0x0b,0xaf,0x5a,0x51,0x6d,0x66,0x7d,0xb2,0x71,0x31,0xce, + 0x5b,0xf9,0x26,0x79,0xd4,0xd6,0x0a,0xe3,0x08,0x4c,0xb5,0xd2,0xe4,0x66,0x54,0x8e,0xbf,0x83,0xbf,0x94, + 0x24,0x07,0x90,0x41,0xcf,0x42,0x76,0x0a,0x98,0xdb,0xc8,0x1f,0x5c,0x00,0x71,0x04,0x75,0xf8,0xc0,0x3b, + 0x5b,0x9c,0x77,0x5a,0x9c,0x73,0x8b,0xdd,0x49,0xd0,0x2d,0x33,0x1b,0x6e,0xe7,0xbb,0x8e,0x26,0xec,0x75, + 0x46,0x5f,0xf1,0xb4,0x07,0xab,0x42,0x26,0x26,0xa3,0x7f,0x10,0xc4,0xb6,0x0d,0x76,0x7f,0x6f,0xe1,0xb8, + 0xbe,0xa8,0x3b,0x1d,0x73,0x5c,0xbd,0x3d,0x47,0x62,0xf6,0xb1,0xa5,0x32,0x0d,0x73,0x36,0xc5,0x8d,0x86, + 0x3a,0x2e,0x38,0xeb,0xc4,0x73,0xf7,0x96,0x5c,0xe6,0x91,0x2a,0x8e,0x09,0xde,0x09,0x06,0x87,0x55,0x7a, + 0xf5,0x96,0xc9,0xa8,0x92,0xc9,0xa9,0xbd,0x60,0x18,0xec,0xf9,0xf6,0x20,0xa5,0x5f,0x0d,0x64,0x05,0x12, + 0x76,0x75,0x18,0x44,0x11,0xed,0x0f,0x59,0x66,0xe2,0x94,0x1a,0x8f,0x53,0x72,0x80,0x49,0x07,0x25,0xd7, + 0x1a,0xe9,0xb8,0xf5,0xdb,0x26,0xb0,0xbf,0x65,0xdb,0xd2,0xe7,0x4c,0x40,0x87,0x7f,0xb4,0xdd,0x64,0xc9, + 0x86,0x91,0x65,0x58,0x48,0xa8,0x0d,0x5d,0x5e,0x1b,0x47,0x56,0x30,0x8e,0xac,0xe4,0xc2,0x04,0x3e,0x06, + 0x5c,0x0f,0xf8,0x1a,0x14,0x19,0x17,0x28,0x00,0x67,0x3c,0xe9,0xb9,0x42,0x64,0xa1,0x47,0x01,0x6d,0x1b, + 0x6e,0xf3,0xec,0x87,0x0d,0x63,0x2d,0x71,0x9d,0x6a,0x13,0xa1,0x79,0x71,0x91,0x55,0x39,0xc7,0xdb,0xa6, + 0x19,0xca,0x42,0x41,0x86,0x16,0x09,0x66,0xc6,0x53,0x40,0x12,0x34,0x73,0xc0,0x7c,0x12,0x35,0x86,0xd1, + 0x4c,0x12,0xff,0x13,0x16,0x8e,0xaf,0x92,0xaa,0x93,0xc4,0xfc,0x98,0x16,0x0d,0x21,0x1c,0x42,0xab,0x40, + 0xc2,0x5a,0xe8,0x95,0x76,0x97,0x60,0x6a,0x71,0x15,0xa5,0xc9,0x0a,0x14,0xfe,0x44,0x98,0x99,0x94,0x40, + 0x1f,0x92,0x52,0xf0,0x6d,0xa3,0xf0,0x6d,0xb1,0x5e,0x7f,0x80,0x41,0xc7,0x4a,0x36,0x3f,0xc4,0x15,0xf2, + 0xa4,0x8b,0x19,0x01,0xbb,0xce,0xf7,0x2a,0x9e,0x44,0xd8,0x7d,0x25,0xdb,0xe2,0x37,0x40,0xe2,0x63,0x04, + 0xb7,0x43,0x60,0x5a,0x1b,0x71,0xfc,0xed,0xc7,0x30,0xcb,0x55,0x81,0xcc,0x28,0xfe,0x17,0x7d,0x17,0x21, + 0xd0,0x66,0xa7,0x10,0x32,0xbd,0x55,0xf8,0xce,0x37,0x10,0xf8,0x67,0xc5,0x4e,0x77,0x39,0x07,0xc8,0xde, + 0xfa,0x90,0x45,0x25,0x49,0x40,0x94,0x76,0x79,0x35,0xa3,0xfd,0x51,0xd3,0x5e,0xc9,0x8a,0x40,0xc2,0x8e, + 0x05,0xcf,0xdf,0x3c,0x79,0xfe,0x4c,0xdb,0x4a,0x0b,0x8f,0x3f,0x0e,0x9a,0x8a,0xc6,0x12,0x43,0xc9,0xdf, + 0x0a,0x8c,0xce,0x5e,0x6f,0xd6,0x1e,0xea,0x5f,0x95,0x0e,0x21,0xd0,0x2e,0xc2,0xbd,0x20,0xaa,0x71,0x96, + 0x52,0x39,0xd4,0x5b,0x8c,0xf5,0x73,0x2c,0xf5,0xba,0x1a,0x9a,0xfc,0x33,0xdd,0xb6,0x93,0xd2,0xe0,0xfe, + 0x8e,0x56,0x2b,0x92,0xd5,0x58,0xf3,0x05,0xaa,0x8a,0x2b,0x89,0xfa,0xc6,0x2e,0xf6,0x33,0x54,0xe4,0x2d, + 0xfc,0xdb,0xde,0xc0,0x6b,0xe2,0xe8,0xf9,0xcf,0x47,0x8f,0x3f,0x3c,0x7f,0xdc,0x1a,0x35,0xa5,0x2f,0xdd, + 0x59,0xaa,0x67,0x87,0x63,0x6a,0xe6,0xd9,0xf2,0xc2,0x90,0x4e,0xbe,0x2d,0x60,0x43,0xc4,0x77,0xb9,0x7c, + 0x45,0x44,0xc4,0x34,0x27,0xdc,0x03,0xcb,0x9a,0xf4,0x3c,0x15,0xe4,0xa8,0x4c,0x57,0x3a,0x77,0xbc,0x08, + 0x05,0x01,0x4b,0x91,0x51,0xd6,0x73,0x05,0x8c,0xcd,0x56,0xa6,0xe1,0x64,0xf7,0x60,0xd3,0xb3,0x0c,0x1e, + 0x24,0x7c,0xdb,0xd9,0x8f,0x86,0x74,0xe3,0xe0,0x3b,0xa9,0xde,0x2b,0xb2,0x29,0x33,0xc8,0xbf,0x3d,0x86, + 0x01,0xbb,0xad,0xd4,0xbc,0x02,0xcb,0x2d,0x20,0x97,0x05,0x73,0xd4,0x2d,0x94,0xea,0x42,0x91,0xd5,0xad, + 0xf4,0xd2,0xfa,0xe6,0x4e,0x34,0xf8,0x51,0x10,0x52,0x1d,0xb1,0x78,0xa5,0x4b,0x5e,0x46,0x23,0x60,0xdc, + 0x3e,0xf6,0x48,0xb8,0x38,0xbe,0xe4,0x72,0xca,0xde,0xb8,0x04,0xb6,0x2f,0x32,0x4d,0x90,0x31,0xec,0xb1, + 0x25,0xbd,0x10,0x4d,0xd6,0x8c,0x9e,0x83,0x65,0xf8,0xe5,0x0b,0xa5,0xc9,0x39,0xa7,0x92,0x4b,0x5a,0x8c, + 0x12,0xcf,0x8a,0xf0,0x45,0x0d,0x6f,0x36,0x48,0x09,0xc7,0x6f,0x21,0x6c,0x7a,0xc3,0xfa,0x23,0x22,0xfe, + 0x47,0x1a,0xeb,0xb0,0x65,0x32,0x84,0x41,0xa7,0x1c,0x37,0x36,0xc7,0x98,0xb9,0x92,0x8c,0xc8,0x62,0x96, + 0x50,0x86,0x75,0xf2,0x16,0x28,0xe0,0x4d,0xc6,0x12,0x44,0x05,0xd7,0xac,0x1c,0x06,0x98,0xd9,0x25,0x17, + 0xec,0xb9,0x83,0x40,0xac,0xbe,0x54,0x8d,0x53,0xdf,0x15,0x4c,0x6a,0x7f,0x59,0x7f,0xce,0xb6,0x9c,0xe4, + 0x42,0xb6,0xcb,0xf2,0x1c,0x36,0x32,0x6d,0x16,0x7e,0x41,0xb8,0x5d,0x2e,0x79,0xa0,0xf6,0x2f,0x92,0x7c, + 0xef,0x70,0xe3,0x91,0x4d,0x8c,0x3a,0x77,0x0f,0x45,0x15,0xba,0xc2,0x9f,0x39,0x5b,0x88,0x13,0x4b,0x36, + 0xa5,0xff,0x4b,0xfa,0x6f,0x1c,0x32,0x7b,0x84,0x28,0xd8,0x5c,0x6c,0x92,0x9b,0xf9,0x71,0xb1,0xe8,0x44, + 0xac,0xa3,0x2f,0xbe,0x16,0xdb,0xee,0xaf,0x1f,0xd2,0x90,0x45,0x3e,0xba,0x7b,0xe8,0xf6,0xe4,0x24,0xfa, + 0xe2,0xcb,0x4e,0x81,0x49,0xab,0xc0,0x2a,0xfa,0xfa,0xef,0x9d,0x02,0xab,0x56,0x81,0x79,0xf4,0xe5,0x7f, + 0x77,0x0a,0xcc,0x5b,0x05,0x0e,0x1f,0x7e,0x09,0x8e,0x71,0xbd,0xa6,0x07,0xde,0xcc,0x7e,0x17,0xf7,0x0e, + 0xa3,0xfe,0x8c,0x7d,0x64,0xcc,0x88,0xb9,0x5a,0xaf,0x97,0xd1,0x6d,0x7d,0x95,0x6b,0x8f,0x81,0x49,0x4a, + 0xb5,0x7e,0xf1,0x65,0x0c,0xc3,0x03,0x31,0x9a,0x1d,0x49,0xd2,0xd7,0x71,0xdd,0x49,0xfa,0xfa,0xef,0xf1, + 0xaa,0x93,0xf4,0xe5,0x41,0xbc,0xdc,0xdb,0x6b,0xa5,0x1c,0xc6,0xcb,0xfd,0xfd,0xd6,0x67,0x87,0xf1,0xb4, + 0x5d,0xe6,0xeb,0x2f,0xe2,0x69,0xbb,0xcc,0xe1,0xc3,0x2f,0xe2,0x59,0xbb,0xd0,0xe1,0xc3,0xaf,0xe2,0xd9, + 0xfe,0x3e,0x28,0x33,0x99,0x10,0xb7,0xe7,0x2e,0x13,0x1a,0x8e,0x5a,0x68,0x96,0x6b,0x74,0xc9,0xe1,0x25, + 0xc5,0xf9,0x25,0x5c,0x24,0xf6,0x9e,0x87,0x4b,0x88,0x55,0xf6,0xf7,0xa3,0xd1,0x62,0x30,0x38,0xd3,0x31, + 0x7c,0x17,0x11,0x6b,0x08,0x60,0xe8,0x2f,0x02,0x57,0x6b,0x3f,0x52,0x8e,0x43,0x86,0x22,0x66,0xd9,0xcd, + 0xa5,0xd1,0x0e,0xc4,0xe2,0x46,0x54,0x2c,0x5e,0xf9,0xde,0x82,0x31,0xdc,0xe4,0x2f,0xc0,0xe5,0xe0,0x12, + 0x10,0x07,0x5f,0xa9,0x0f,0x5f,0x65,0xd2,0x43,0xef,0x27,0x4e,0x72,0x17,0x84,0x81,0x08,0x38,0x1f,0x99, + 0x7b,0x49,0xee,0x9f,0x52,0xea,0x7d,0x22,0x4e,0xee,0x07,0x51,0x78,0x9f,0xa3,0xd0,0x07,0xa3,0x76,0x96, + 0xed,0x4b,0x11,0xb9,0x52,0x2a,0xb0,0x19,0x05,0xc1,0xc6,0x06,0xb2,0x65,0x5f,0xe2,0x57,0x7a,0x8e,0x77, + 0xbc,0xf9,0xda,0x4e,0xce,0xc1,0xf1,0x8f,0x2b,0x44,0x58,0x63,0x93,0xa8,0xea,0x04,0x81,0x81,0x7d,0xd9, + 0xdb,0xbf,0xba,0x62,0x14,0x44,0xcf,0x5f,0xb6,0x4d,0x4f,0x5c,0x18,0xa0,0xcd,0xb6,0x75,0xb9,0x57,0x60, + 0x13,0xc5,0xc7,0x9e,0x35,0xd1,0x3f,0xed,0x59,0x1f,0x66,0x56,0x3b,0x6f,0x02,0x84,0x38,0x6c,0x70,0xcb, + 0x77,0x78,0x34,0x4a,0xc7,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0xc4,0xf7,0x25,0xca,0x1a,0xaf,0xb2,0xae, + 0x05,0xe8,0x5f,0xad,0xac,0x69,0x9c,0x95,0x20,0xd7,0xf0,0x26,0x5d,0x4a,0x1c,0x22,0xfd,0x8e,0xa3,0xed, + 0x8e,0x0a,0x3d,0x0f,0xbc,0xc6,0xd1,0xb4,0xd0,0x84,0x02,0xbf,0xb3,0x5e,0xdb,0x78,0xa8,0xba,0x38,0x43, + 0x95,0x75,0x8b,0x6d,0x92,0x60,0x17,0x2e,0x3b,0x84,0xec,0x61,0x52,0xe9,0x17,0x61,0x07,0x5a,0xca,0xff, + 0x7f,0x3a,0x5f,0xfb,0xcf,0xfa,0x45,0x8c,0x4b,0x2d,0x95,0x1a,0x70,0x29,0xc2,0xc9,0xf0,0x0d,0x97,0x63, + 0x1f,0x86,0x25,0xf9,0xf9,0x45,0x33,0x0e,0x29,0x5f,0x13,0xc9,0x8b,0xac,0x58,0x05,0xca,0x56,0xc0,0xf9, + 0x51,0x5c,0x0d,0x17,0xf9,0x74,0x3a,0x67,0x21,0x6e,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96,0x81,0x31,0xf8, + 0x1d,0x55,0x5a,0x4d,0x3d,0x76,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x7e,0x02,0xab, + 0xc5,0x63,0x14,0xcb,0x5c,0x81,0xcc,0x66,0x69,0xcb,0x3d,0x13,0x58,0x70,0x33,0xc2,0x45,0xad,0x97,0x90, + 0x9d,0xd5,0x1e,0xe7,0xa2,0xaf,0x75,0x9f,0x24,0xb8,0x94,0x67,0xb4,0xa5,0xfb,0xcb,0xc7,0x13,0x7b,0xb3, + 0x78,0x6d,0xdd,0xf4,0x6a,0xb9,0xc8,0x27,0x99,0x50,0xfe,0x71,0xad,0x26,0x27,0xf1,0xf1,0x44,0xd5,0x27, + 0x71,0xdd,0x0b,0x02,0x95,0x05,0x01,0xa1,0x90,0x20,0x92,0xc6,0xad,0x60,0x7b,0x08,0xdc,0x2e,0x2f,0x97, + 0xfb,0x1c,0x9b,0x05,0x49,0xbc,0x93,0x39,0x06,0xaf,0x09,0xa3,0x89,0x83,0x4e,0x54,0x18,0xe2,0x05,0x63, + 0x08,0x19,0xfe,0xd4,0xff,0x20,0x37,0x1f,0x74,0x42,0xdd,0xe6,0xfe,0xa9,0x99,0xb7,0x7b,0xe3,0xbe,0x66, + 0xc9,0x8c,0x07,0xa2,0x7e,0x24,0x1c,0x0f,0x56,0xb5,0xd5,0x7e,0xde,0xb5,0xda,0x87,0x6e,0x09,0x4e,0x11, + 0x7c,0xa5,0x0a,0x02,0x85,0xde,0xe6,0x26,0x76,0x56,0x89,0xd8,0x59,0xe2,0x62,0x61,0xd8,0x35,0xeb,0xc7, + 0xd8,0x6a,0xd2,0xb7,0xe2,0x2f,0x3b,0xb3,0x26,0x56,0xfa,0x79,0x12,0xdc,0xbb,0x77,0x49,0xc8,0x8c,0x11, + 0x28,0x08,0x87,0x24,0x08,0xb5,0xb8,0x90,0x32,0x76,0xa8,0xe5,0x9d,0xfb,0x32,0xf2,0xfb,0x63,0xa4,0x18, + 0x44,0x8b,0xe7,0x08,0xb2,0xd2,0xa1,0x38,0x3b,0xc8,0xa7,0xa7,0xc4,0x77,0xee,0xe5,0x40,0x8f,0x9a,0x9f, + 0x4c,0x10,0xe5,0x09,0xe1,0xb0,0xb4,0xf1,0x8f,0x01,0x1f,0xc2,0xb1,0xe0,0xf5,0x22,0xe2,0xb8,0xaf,0x97, + 0xb8,0x6e,0x90,0xba,0x18,0xdf,0xd7,0x38,0xf6,0xbe,0x32,0xa6,0x39,0x2e,0xb4,0xc9,0x4e,0x88,0x06,0x77, + 0x6e,0x83,0xbd,0x72,0x2f,0xd8,0x04,0xde,0x02,0xa4,0x8d,0x8f,0xc6,0x7d,0xe4,0x46,0x53,0xf8,0xa4,0x72, + 0x01,0x0c,0xbd,0xcb,0xac,0x8e,0x83,0xe8,0xd1,0x01,0xa4,0x8e,0xb8,0x9d,0xeb,0x95,0x49,0x3d,0xa1,0xd4, + 0x27,0x95,0x8d,0xd2,0x1b,0xbe,0xe4,0x8f,0xfd,0x12,0xe0,0xa9,0xbf,0xd9,0x3f,0x1c,0xdf,0x52,0xaf,0x63, + 0x77,0xfe,0xbc,0x24,0x8a,0x8d,0x58,0x71,0x1e,0x80,0x49,0x7d,0x59,0x11,0xc6,0xc7,0x60,0x36,0xb1,0x94, + 0xe6,0x12,0x1c,0xa7,0x89,0x09,0x9f,0x1f,0x41,0xb2,0x52,0x0b,0xbf,0x57,0xc9,0x6f,0x10,0x11,0xec,0x4e, + 0x70,0xc6,0x45,0xab,0x26,0xfc,0xa1,0x4a,0x6a,0xa8,0xb4,0xc7,0x73,0x3c,0x47,0xf1,0xd7,0x60,0x69,0x7f, + 0xa8,0x7c,0x31,0x95,0x91,0x3f,0x8b,0x87,0x24,0x55,0xf1,0xb2,0x32,0x15,0x70,0x60,0x59,0x7c,0xaf,0x56, + 0x50,0xd5,0x44,0x73,0x8e,0xb3,0x6c,0xc8,0x17,0xae,0x8b,0x70,0x07,0x82,0x17,0x7e,0xfd,0x85,0x7e,0xde, + 0xdf,0x67,0x53,0x3b,0x9a,0xc3,0xdf,0xb8,0x26,0x01,0xad,0x0d,0x1a,0x37,0x31,0xcf,0xdb,0xe3,0xfd,0x5d, + 0x8f,0xd7,0xa4,0xfc,0x4e,0x63,0x55,0xbf,0x55,0x50,0x37,0x3a,0x4d,0xb2,0x76,0xef,0x64,0xdf,0x88,0xb1, + 0xdc,0x68,0xd3,0xc4,0xc1,0x3d,0xa2,0x4b,0x43,0xdc,0xa1,0x48,0x35,0xea,0x3b,0xbb,0x50,0x40,0x1e,0x19, + 0x22,0x3c,0x27,0xd4,0xc6,0xd9,0x0f,0xff,0x58,0xf9,0x04,0xd5,0xde,0xde,0x4b,0xdf,0xf4,0x7d,0xe2,0x15, + 0x7c,0x59,0x7d,0x93,0x3c,0xf1,0xe0,0x7e,0xe5,0x47,0x0d,0x67,0xf2,0x30,0x5b,0xaf,0x99,0x8e,0xf4,0x84, + 0xd8,0x3c,0x49,0xbe,0xb3,0xa1,0xcc,0x26,0x3b,0xd0,0xf2,0x5a,0xc0,0x2f,0x63,0x14,0x8d,0x3c,0xc7,0xbc, + 0xc6,0x97,0x8a,0x34,0x88,0x54,0xd1,0x44,0xc3,0x53,0x5c,0x17,0x79,0x94,0xd6,0x30,0xec,0x29,0xdd,0x9b, + 0x2f,0x35,0xbb,0x70,0x1e,0x9e,0x49,0x79,0x47,0x3c,0x09,0xdd,0xdb,0x0b,0xf6,0xab,0xa4,0xb3,0x99,0xef, + 0x62,0x6c,0x5a,0x64,0x8b,0xdb,0xc8,0xdf,0x57,0xdd,0x70,0xb4,0x3b,0x79,0xe8,0xae,0x07,0xec,0x6f,0x82, + 0xf0,0x05,0x6f,0x4c,0xf1,0x61,0xdb,0x20,0x84,0x31,0xe2,0x12,0xa8,0xef,0xab,0x6d,0x1e,0x11,0xad,0xfd, + 0x50,0x8c,0x6f,0xf5,0x39,0x08,0x4b,0x1d,0x39,0xcb,0x10,0x56,0x4e,0xe3,0x7b,0x8f,0x92,0x99,0x36,0x4e, + 0x67,0x15,0xd2,0xa9,0xfa,0x7d,0x15,0xf5,0x72,0xa6,0x88,0x68,0xe5,0xcd,0x57,0xdb,0x19,0x60,0xd9,0x84, + 0x26,0x2a,0xd5,0xae,0x15,0xd8,0x94,0x60,0xf3,0x77,0xad,0xb8,0x06,0xb7,0x00,0x58,0x1e,0x54,0xa7,0x30, + 0x52,0x2b,0x93,0xc2,0x7f,0x1f,0x7d,0x5f,0x69,0x26,0xb5,0x83,0x1c,0xa8,0xa3,0xc7,0xa7,0xd0,0x03,0x69, + 0xdc,0xf1,0xb6,0x18,0x07,0xfa,0xfa,0xeb,0xd8,0x58,0x27,0x72,0x90,0x68,0xe7,0x0b,0xc0,0x1f,0x70,0xb8, + 0x67,0xf6,0x33,0x77,0x57,0x8f,0x53,0xf2,0x06,0xd9,0x57,0xb9,0xc4,0x40,0x18,0x4a,0x45,0xad,0x4f,0xaf, + 0xf0,0xa9,0xce,0xe8,0x7c,0x8e,0xcf,0x36,0xe0,0x71,0xbe,0x67,0x15,0xfd,0xac,0x51,0x53,0x04,0x8c,0xb5, + 0x32,0xe3,0xef,0x6d,0x48,0x00,0xcf,0xe1,0xb0,0x6f,0x8e,0x8c,0xc3,0x4d,0x6b,0xa6,0x6c,0xa2,0x2f,0x62, + 0x97,0x29,0xa9,0x93,0xce,0x87,0x6d,0xe9,0x96,0x9f,0x7a,0x97,0x80,0xcb,0xfa,0xf8,0xb4,0x64,0x5c,0xb9, + 0xc8,0x59,0x21,0x8a,0xca,0x75,0xc4,0xba,0xfc,0x24,0x09,0x02,0x2f,0x77,0xa5,0x6f,0x19,0x44,0x09,0xc5, + 0x77,0x45,0x9b,0xbb,0x9b,0xb5,0x7b,0x52,0x5e,0x10,0xa0,0xbc,0x3c,0x7a,0xf3,0x9a,0x13,0xb8,0x74,0xd5, + 0x1f,0x02,0xd7,0x33,0x81,0x2a,0xa9,0x6c,0x8d,0x36,0x31,0x79,0x79,0xb1,0xca,0x46,0xc0,0x79,0xa9,0x14, + 0x7d,0x0b,0x27,0x2d,0x2b,0x6a,0x4e,0x35,0x60,0x3e,0x45,0x56,0xe8,0x17,0x81,0xf9,0x11,0x5f,0x6b,0x2c, + 0x52,0x36,0x69,0x3e,0x1d,0x9e,0xf2,0x6b,0x52,0x6a,0x2b,0x46,0x88,0xc8,0x10,0x1d,0xdf,0xde,0x98,0x35, + 0x9a,0x26,0x73,0xb5,0x1b,0xce,0x92,0x34,0x12,0x69,0x43,0x4d,0xe9,0xb0,0xce,0x7e,0xf7,0xfe,0xe8,0xd5, + 0xbb,0xb7,0xa8,0x67,0x66,0xc4,0x3f,0xc4,0x10,0xf6,0xb0,0x21,0x84,0x1b,0xd8,0xc1,0xdc,0x5d,0x8c,0x25, + 0x8e,0xd2,0x5a,0x0f,0xc7,0xd7,0x1c,0xd8,0x38,0x43,0xde,0xf1,0x9f,0x59,0x31,0x61,0xb3,0x09,0x67,0x6a, + 0x1a,0xb5,0xaa,0xf7,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x1b,0x43,0xb6,0x89,0xf9,0x5a,0x1e,0x69,0x93, + 0x96,0x79,0xfa,0xfb,0x8d,0x0b,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x1b,0x82,0x68,0x22,0xae,0x6a,0x13,0x1d, + 0xf4,0x2d,0x67,0xaa,0xc0,0xd9,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68,0x3a,0x0a,0x92,0xb1,0x90,0xfe, + 0x31,0x48,0x48,0x6f,0x92,0xb9,0xb6,0xbf,0x61,0x10,0x29,0xe5,0x16,0x40,0x2a,0xe3,0xf9,0x75,0x36,0xee, + 0xcc,0x5b,0x34,0xac,0x92,0xbe,0x99,0x7b,0x46,0x4b,0x5a,0xd6,0xf2,0x11,0xa9,0xe3,0xcb,0xb0,0xf5,0xce, + 0xb1,0x13,0x3c,0x6f,0xc6,0xe6,0x73,0x0a,0xe5,0xc5,0x1d,0xda,0xd9,0xeb,0xbc,0x13,0xbb,0xe4,0xbc,0x69, + 0xcb,0xc0,0x58,0x60,0x54,0x76,0x64,0x5f,0xb9,0xdf,0x8f,0x48,0x74,0x61,0xb5,0x7d,0x2e,0xb7,0x72,0x4b, + 0x9d,0x1b,0x79,0x11,0x7f,0xf4,0x3e,0x5d,0x25,0xad,0xe2,0x6a,0x0e,0x83,0xd4,0xb2,0x5a,0xf0,0x75,0xf2, + 0x53,0x4e,0x83,0x82,0xa0,0x96,0x07,0xda,0x87,0xb3,0x64,0xb5,0x5e,0xcf,0xd5,0x14,0xf3,0xa5,0x37,0xaa, + 0x54,0xce,0x5b,0x59,0xa7,0x74,0x6a,0x48,0x60,0x04,0xaf,0x77,0xb8,0xf8,0x4d,0x4d,0xa3,0x78,0x3a,0x12, + 0xc3,0xd6,0x36,0xb4,0xfa,0xda,0x76,0xa6,0x23,0xb3,0x51,0x8f,0x80,0xed,0x2f,0x09,0xde,0x2e,0xad,0x26, + 0x34,0x82,0x7d,0x0b,0x3b,0x8b,0x49,0x72,0xd6,0x4d,0x76,0x8e,0xcb,0x19,0xcc,0xd5,0x87,0x26,0xfe,0x5a, + 0xd9,0xaa,0xad,0xec,0x7e,0xe6,0x54,0xfa,0x95,0xd4,0xc1,0xa1,0x31,0x67,0x84,0xa4,0x96,0xb0,0x69,0x1c, + 0x0c,0x3e,0xc2,0x12,0xb1,0x56,0x06,0x4b,0x71,0xf6,0x32,0x0a,0xd3,0x84,0xf3,0x09,0x78,0x67,0xf4,0x6b, + 0x8b,0xe9,0x58,0x27,0xc0,0x00,0xa9,0xcf,0x12,0xdc,0x34,0xbe,0x57,0x1a,0x47,0x0a,0xd5,0x72,0x0c,0x89, + 0xc0,0xc1,0xc2,0x38,0x36,0x21,0xf4,0x84,0x0e,0x3b,0x01,0x53,0x96,0x8d,0xb6,0x6b,0x79,0xf0,0x4b,0xbd, + 0xf7,0x20,0xb2,0x97,0x38,0xf5,0x78,0x84,0x7b,0xf5,0x70,0x70,0x2d,0x04,0x16,0x8b,0xb7,0x13,0xfd,0x20, + 0xbb,0xd0,0xb0,0x50,0xfb,0xe7,0x3d,0xa2,0xc1,0x48,0x5b,0x5f,0xee,0xe0,0xe6,0x47,0xaf,0x53,0xac,0x91, + 0x09,0x58,0x49,0x9e,0xf5,0xcb,0x14,0xc3,0x82,0xb8,0x2c,0x33,0x40,0x3f,0xf6,0xfe,0xff,0xef,0xb3,0x20, + 0xc8,0x7c,0x7b,0x22,0x6c,0xba,0xf2,0x53,0xe5,0x10,0x00,0x13,0xd0,0x15,0xe1,0x9b,0x29,0x91,0xa9,0x73, + 0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0x31,0xd3,0xe6,0x4d,0x65,0x05,0x5b,0xb0,0x11,0xbc,0xa3,0xed,0x6d, + 0x53,0x95,0xc2,0x70,0x01,0xe2,0x06,0x4d,0x42,0x29,0xd1,0x3b,0xc7,0x7c,0x8f,0xc6,0x5d,0xdd,0xf4,0xe6, + 0xfc,0xb4,0xd1,0xa4,0x8d,0xb6,0x00,0xd9,0xba,0xb5,0xc5,0x20,0x51,0x7b,0x1d,0x30,0xb3,0xc0,0x34,0x2d, + 0x90,0x1a,0xe3,0x26,0x8b,0xf7,0x79,0x98,0x69,0xab,0xad,0xe0,0x32,0x40,0x00,0xcc,0x90,0x95,0xc5,0x8d, + 0x46,0xe1,0x3d,0xb8,0xf1,0x3d,0xe3,0xc6,0x2d,0xf2,0xe4,0x8a,0xfb,0xf2,0x21,0xf7,0x1d,0x68,0x3e,0xa0, + 0xa8,0x2f,0x88,0x39,0x6a,0xda,0xd6,0x23,0xdb,0x32,0x6f,0x96,0x42,0x6c,0x27,0x73,0x5c,0xa0,0xc2,0xb3, + 0xfc,0x02,0x84,0xc2,0x81,0x04,0xf2,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xff,0x52,0xdd,0x54,0x5f,0x6d,0x83, + 0xc1,0xbc,0xb7,0x15,0x04,0xe0,0xd6,0x70,0xec,0x39,0x9d,0x76,0x38,0xe9,0xa7,0x52,0x40,0xe1,0x18,0xd0, + 0x26,0x17,0x95,0x71,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7,0x82,0x95,0x2a,0x98,0xd0,0x2b, + 0x75,0x02,0xc3,0x8b,0x67,0xf9,0xf8,0x45,0x1e,0xbf,0xc9,0x09,0xe3,0x77,0x7c,0xd0,0xfa,0x15,0x3b,0xb5, + 0x9a,0xc3,0x6e,0x9d,0xfd,0xcd,0xda,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd,0xde,0xde,0xe4,0x1b,0x68,0x16, + 0xe1,0x6e,0x36,0xea,0x77,0x6a,0x9a,0x3c,0xd2,0xf9,0x0a,0xd7,0x34,0xab,0x1e,0x25,0x11,0x9a,0xf2,0x9c, + 0x5e,0xfd,0x25,0x23,0x68,0xd7,0xb7,0xea,0x52,0x93,0x4f,0x75,0x00,0x0f,0x3e,0x4b,0x24,0xe6,0x44,0x75, + 0xfc,0x3a,0xdf,0x0b,0x9e,0xc1,0xd1,0x2a,0x38,0xb1,0x26,0x7b,0xb0,0x8a,0x2a,0x4d,0xde,0xaa,0x92,0xab, + 0xae,0xdb,0xd9,0x69,0x02,0xb9,0x39,0x5c,0x13,0x6a,0x2a,0xf8,0xf6,0x8e,0x4a,0x26,0x26,0xaf,0xbf,0x92, + 0x15,0x2a,0x81,0xb1,0x2b,0xcd,0xd1,0x01,0xd4,0x0f,0xee,0x36,0x60,0x9e,0xf0,0x94,0x4d,0xd0,0x0b,0x7a, + 0xa4,0x02,0x29,0x15,0x30,0xb6,0xee,0x44,0x31,0xc0,0x02,0x3b,0x1f,0xaf,0x74,0x89,0x57,0x28,0xb1,0xa2, + 0x12,0x13,0x5b,0x62,0x96,0x50,0x7a,0x38,0x77,0x51,0xdb,0x53,0xd0,0xbe,0xdf,0x1c,0x50,0xad,0xab,0xf1, + 0xb3,0x3c,0x7e,0x95,0x33,0xb7,0x1f,0x8d,0x0b,0x69,0xcc,0xd4,0x1d,0x9b,0x2a,0xe2,0x03,0xa5,0x83,0x37, + 0x2b,0x0d,0x2d,0xf1,0x5c,0x59,0x58,0x89,0x67,0xb8,0x92,0xf9,0xc8,0x5c,0x1d,0x18,0x4b,0x2d,0x83,0xc1, + 0x4f,0x5a,0x96,0x2e,0xb3,0x67,0x22,0x81,0x04,0x27,0x3e,0x1a,0x78,0xdc,0xb8,0x43,0x7a,0x64,0xe4,0x1f, + 0x8f,0x6c,0xbc,0xc5,0x28,0x4b,0x6c,0x08,0x6e,0x47,0x44,0x99,0x71,0xb4,0x2e,0x17,0x6b,0x4b,0x94,0x7d, + 0xef,0xf2,0x8f,0xb0,0x9c,0xdc,0xfb,0xd8,0x48,0xa0,0xaa,0x8d,0xbf,0xd3,0x3e,0xfa,0x24,0xd6,0x61,0xf6, + 0xc5,0xdf,0xf4,0x75,0xb5,0x4e,0x80,0xb0,0x7f,0xe8,0x97,0xbf,0xe7,0xd1,0x52,0x20,0xa1,0x88,0xde,0x81, + 0x5b,0x17,0xee,0x09,0x4a,0x89,0x38,0x3f,0x63,0x67,0x0a,0xfb,0xa6,0xaf,0xed,0x9c,0x4b,0xe4,0x3d,0x97, + 0x1e,0x1a,0x19,0x68,0x72,0xda,0x18,0x6e,0xc8,0x6d,0xe8,0xc8,0xfa,0x6a,0xb1,0xcd,0x25,0x7d,0x46,0x10, + 0x9e,0x55,0x5c,0xf9,0x21,0x47,0x15,0x03,0x41,0x82,0x1b,0xef,0x1c,0x6d,0x83,0x88,0x64,0x84,0x18,0x15, + 0xfc,0x67,0x79,0x63,0x13,0x90,0x0c,0xe5,0x33,0x56,0xe5,0xcd,0xcc,0xeb,0x51,0x29,0x09,0x53,0x93,0xf0, + 0x98,0x69,0x76,0x49,0x5c,0x52,0x22,0x4d,0x69,0x96,0xea,0xaf,0x2e,0xec,0xbb,0xf9,0xec,0xd2,0xa6,0xf8, + 0xdf,0x2d,0x28,0xf5,0x2c,0x83,0x5d,0xf9,0x73,0x54,0xa9,0xce,0x4d,0xe5,0xea,0x06,0xe5,0x71,0x0d,0xbc, + 0x64,0x9c,0xd9,0x5e,0x99,0x89,0x51,0x57,0xf6,0xdb,0xc7,0x5c,0xaf,0x3a,0xb2,0x4d,0xa8,0x4f,0xe6,0x6b, + 0x9d,0x75,0xed,0xfa,0x67,0xbf,0x7f,0x4a,0x69,0x53,0xbd,0xa7,0xd4,0xe3,0xe4,0xaa,0x52,0x1f,0xe9,0x8f, + 0x36,0xf0,0x1f,0x7d,0x24,0x0a,0xc8,0x92,0x5c,0x8f,0x93,0xf0,0x63,0x62,0x5e,0x23,0xc3,0xb1,0xf2,0x4a, + 0xdc,0x4b,0x76,0x1f,0x7b,0x41,0x98,0x88,0x23,0x65,0xeb,0xff,0xb2,0x04,0x1d,0x88,0xf8,0xc2,0x58,0x92, + 0x7b,0xeb,0xf5,0x11,0x0e,0x4f,0x5a,0x83,0x23,0x01,0x81,0x77,0xc9,0xbd,0xc1,0x60,0x39,0x5e,0xd2,0x6e, + 0x78,0x8e,0xc7,0xcb,0xf1,0x65,0x3c,0x55,0xef,0xf1,0x78,0x31,0xbe,0xa0,0x7d,0xf1,0x6b,0x72,0x6f,0x7c, + 0xb5,0x5e,0x2f,0xe2,0x85,0x7a,0x86,0xd4,0x1e,0xff,0x99,0xa3,0xf1,0x51,0x7c,0xae,0x5e,0x51,0xc1,0x4f, + 0xeb,0xf5,0x4d,0x7c,0xa3,0x5e,0xd3,0xe3,0xf5,0x7a,0x7d,0x16,0x9f,0xa9,0x17,0xc4,0xb7,0xe4,0xe1,0xd3, + 0x68,0xfc,0x54,0xa6,0x2d,0x7e,0x1a,0xa9,0xb7,0x09,0x1f,0x84,0x35,0x2b,0xec,0xd5,0x9b,0xe4,0x7d,0x13, + 0x3e,0x8b,0xd4,0x87,0xc4,0xc1,0x89,0xef,0xa9,0x1b,0xdd,0xbe,0x25,0x90,0xa4,0x03,0xa5,0x54,0xef,0x23, + 0xc5,0xbf,0xcf,0xe9,0xa8,0xfc,0xe0,0x40,0x73,0x1c,0x52,0x09,0xce,0x78,0x17,0xa9,0xd7,0x83,0xc1,0x6b, + 0xb6,0xb4,0x78,0x35,0x18,0xbc,0x82,0x3f,0x83,0x57,0xab,0x0e,0xdc,0xae,0xe1,0xb5,0xbe,0x28,0x69,0x60, + 0xdf,0xd1,0x76,0x70,0x26,0x52,0xae,0x51,0x23,0x34,0x92,0xb9,0x06,0x9f,0xaa,0x74,0x68,0xe5,0x53,0x84, + 0x3d,0x62,0x56,0xd3,0x3d,0x1f,0xb3,0x60,0xed,0x64,0xc4,0x81,0x91,0xc4,0x30,0xb1,0x10,0xc3,0xc4,0x06, + 0x3b,0xcc,0xee,0x9b,0xee,0x7b,0x18,0xa9,0x67,0x83,0xc1,0x33,0xea,0xfa,0x07,0x98,0x4d,0xfd,0x3a,0x18, + 0xfc,0x8a,0x3e,0x63,0xc4,0x47,0x7a,0x40,0x47,0x32,0x62,0x75,0xd5,0x3a,0x48,0x8e,0xfc,0xf9,0x78,0xd7, + 0x9a,0x8e,0xf5,0xfa,0x0d,0x9d,0xe3,0xcf,0x9b,0xf0,0x45,0x34,0xf6,0x4e,0xa1,0x0f,0xea,0x45,0x14,0x5f, + 0xa3,0xf8,0x8a,0x1a,0x03,0x12,0x51,0xde,0x44,0x88,0x55,0x6e,0xe5,0xf7,0x87,0xba,0xc1,0x55,0x7d,0x08, + 0xdb,0x1e,0x60,0x1a,0x81,0x38,0x61,0x37,0x75,0xe7,0xda,0x6f,0x3e,0x6c,0x4d,0x70,0x48,0x9c,0xa7,0x9b, + 0x44,0x3b,0x63,0xd0,0x75,0xf7,0xa5,0x8b,0x3f,0xaa,0x4c,0x67,0x52,0x44,0xea,0x82,0x00,0x11,0x81,0x56, + 0xaf,0x64,0x4a,0x52,0x78,0x58,0xf0,0xef,0xb2,0x67,0x4a,0x52,0xe2,0xa1,0x30,0x25,0x5c,0xaa,0xd5,0xa7, + 0x23,0x99,0x92,0x4f,0xad,0x29,0xb9,0x56,0x9f,0x78,0x4a,0x52,0x35,0x57,0xd7,0x32,0x25,0x97,0xa0,0xcc, + 0x52,0x7a,0x53,0x57,0xfc,0xd1,0x35,0xe8,0x6c,0x6d,0x68,0xae,0x71,0x65,0xea,0xa3,0x33,0xef,0xad,0x8d, + 0x2b,0x5d,0xba,0xc1,0x95,0xf5,0xdd,0xb8,0x52,0xa2,0xc8,0xca,0x5d,0x34,0x16,0x35,0x1a,0x06,0x4a,0xb4, + 0xb1,0xbb,0xdc,0xb0,0x41,0xd2,0xc6,0x49,0xa5,0x66,0x9c,0x39,0x4f,0x24,0x56,0x0c,0x21,0x49,0xc8,0x5b, + 0x52,0x83,0xd5,0xa6,0xe6,0xd5,0x20,0xbf,0xa5,0x49,0xf0,0x71,0xdf,0x05,0x25,0x0a,0xfe,0x7a,0x8d,0x2c, + 0xc2,0x90,0xba,0x10,0x61,0xc5,0x5a,0xb0,0x97,0x64,0x9c,0xdb,0xda,0x2d,0xee,0xba,0xa1,0x24,0xf6,0xec, + 0x96,0x12,0x67,0x78,0x35,0xa8,0xec,0x4a,0xb6,0xf9,0x4a,0xb6,0xf9,0x11,0xb6,0xf9,0x25,0xad,0x0e,0x23, + 0x84,0xb3,0x68,0x7c,0x26,0x75,0xc5,0x67,0x11,0x63,0x45,0x33,0xb4,0xf6,0xd6,0xf7,0x41,0x04,0x22,0xa4, + 0x1e,0x80,0xe1,0x35,0xe8,0x49,0xb7,0x30,0xc4,0x41,0xc0,0xae,0x04,0x87,0x38,0x00,0x59,0x46,0x2d,0x08, + 0x19,0x87,0x57,0x8c,0x43,0x18,0x72,0xa8,0xce,0x73,0x36,0x14,0x09,0xb1,0x21,0x16,0x83,0xc1,0x02,0x6f, + 0xca,0xeb,0xa4,0xc6,0x24,0x37,0xe3,0x1b,0xda,0xae,0x71,0x19,0xfa,0x04,0xc1,0x73,0xef,0x44,0xde,0x8e, + 0x4e,0x45,0xb3,0x21,0x17,0x30,0xfa,0xda,0xe5,0xf7,0x88,0x59,0xcb,0xac,0x84,0x0b,0x80,0xac,0x43,0x6c, + 0xc3,0x9c,0x18,0xa1,0x92,0xbd,0x00,0x52,0x63,0x2a,0xbe,0x15,0x08,0xa7,0x3a,0x3e,0x38,0x89,0x11,0x06, + 0xc7,0x5e,0xf9,0x07,0x67,0x18,0x4d,0x3f,0x7d,0xe3,0x69,0xf4,0x7e,0xd5,0xf4,0xca,0x2e,0xd4,0xf7,0x8d, + 0x8f,0x01,0xee,0xf1,0xcd,0xc8,0xce,0x71,0xc4,0x92,0xde,0xaf,0xcc,0x93,0x72,0xa6,0x72,0xfd,0xf4,0xad, + 0x2d,0xb9,0x51,0x07,0x5e,0x55,0xaf,0x3a,0x54,0x7c,0xe3,0x49,0xc6,0x16,0xab,0x79,0x93,0x2f,0xe7,0x99, + 0xd0,0xeb,0xeb,0x75,0x77,0x64,0x5e,0xe4,0x34,0x36,0x75,0x81,0xf3,0x96,0x75,0xbc,0xe9,0xfa,0x6e,0xc1, + 0x0f,0xc4,0xe5,0xe2,0x0a,0x8e,0x3c,0x2a,0x93,0x33,0x62,0xff,0x5e,0xc0,0x0a,0x08,0xfc,0xae,0xc2,0x55, + 0x4e,0x73,0xbe,0x98,0x9d,0x26,0xa0,0x64,0xf0,0x31,0x09,0x89,0x17,0x10,0xec,0x26,0xe4,0x4f,0xbc,0x08, + 0xc2,0xe0,0xba,0x40,0x57,0xe9,0xc2,0xac,0xa8,0x92,0x73,0xac,0x9b,0x9a,0xc0,0xad,0x2f,0x67,0x6e,0xaa, + 0x9d,0xbe,0xdf,0xba,0x81,0xf2,0x75,0xd3,0xbe,0xae,0xa5,0x7b,0x0d,0x9f,0xcd,0xda,0xbd,0x09,0xc5,0xb0, + 0xd6,0xf3,0x23,0xf1,0xa1,0x4c,0x44,0xa5,0x1c,0xe7,0x0d,0x97,0x15,0x88,0xda,0x4f,0x8b,0x1f,0x3d,0x57, + 0x90,0x46,0x9c,0xa1,0x85,0x67,0x71,0x32,0x53,0x18,0xa1,0x39,0x1f,0x90,0x3b,0x0a,0xf1,0x20,0xb7,0xbf, + 0x3c,0x54,0x1f,0x1a,0x9b,0xa1,0xb4,0x20,0xdf,0xa7,0x37,0x3f,0xb4,0x98,0xce,0xae,0xc3,0xc3,0x25,0xbb, + 0x3b,0x40,0xea,0x2c,0x6a,0xf1,0x40,0xf8,0xcc,0xbc,0x91,0x9c,0x46,0x11,0x26,0xe5,0xd8,0x49,0xc3,0x69, + 0x5e,0xb3,0x8d,0xb2,0x64,0xf8,0xea,0x8b,0x9f,0xbc,0x99,0xd8,0xbd,0xc3,0xe1,0x41,0x24,0x55,0x59,0x17, + 0xf9,0x8e,0xb3,0xf8,0x27,0xf6,0xa7,0xb9,0x4b,0x66,0xe6,0xb9,0x5e,0x78,0x52,0x51,0x26,0x03,0xb6,0x0c, + 0x63,0xcd,0x2a,0xe2,0x8c,0x6f,0x99,0xc4,0x1a,0xb7,0xf5,0x31,0xd5,0xf1,0x4f,0x78,0x83,0x59,0x97,0x44, + 0x5f,0xc8,0xf9,0xa3,0xd7,0x00,0x5f,0x81,0xe9,0xa2,0xa5,0xb6,0x03,0x29,0x15,0xee,0xca,0x8a,0x08,0x41, + 0x94,0xd8,0xbc,0x79,0xa4,0x63,0x2b,0x11,0xfa,0x63,0x54,0x68,0xf8,0xc9,0x8e,0x37,0x5f,0x4e,0x5f,0x5c, + 0xe1,0x72,0x90,0x13,0xf6,0xe7,0xeb,0x89,0x69,0xfb,0x83,0x93,0x24,0x3d,0xf8,0x65,0xba,0xff,0x29,0xcb, + 0x96,0xfb,0xe9,0x9c,0x0e,0x8b,0x7b,0xfa,0xe6,0x41,0xa6,0x6f,0x5c,0xa0,0xec,0x30,0x70,0x45,0x02,0x75, + 0xcb,0x5d,0x8b,0x9b,0xad,0xd9,0x71,0x7d,0xf6,0x81,0xf8,0xa5,0x06,0x36,0x26,0x89,0x58,0x39,0x70,0xc6, + 0x37,0x61,0xba,0x57,0xb6,0xb5,0xe4,0x77,0x7d,0x9a,0xda,0x7c,0x7b,0xba,0x7a,0xa6,0xe3,0xba,0x3a,0x11, + 0xb7,0x66,0x57,0xef,0x4b,0x84,0x25,0x42,0x69,0x02,0xce,0x27,0x44,0x18,0x73,0x68,0x90,0x79,0x4e,0x9f, + 0x7e,0xc0,0x3d,0xf0,0x7e,0xcc,0x7a,0x7f,0x79,0xa5,0x02,0x02,0x71,0x65,0x9d,0x6c,0xa4,0x36,0x7d,0xb5, + 0xc5,0xac,0xd9,0x2f,0xf8,0x87,0xef,0x50,0x6b,0xca,0x25,0xbd,0xd2,0x5f,0x60,0xb0,0x6a,0xbd,0xce,0x6d, + 0x17,0x30,0x84,0xa9,0xd1,0x40,0x96,0xba,0x2b,0x2c,0x18,0x1e,0x95,0xee,0xa2,0x7a,0x22,0x32,0x7f,0xca, + 0xce,0x3e,0xe5,0x8d,0xe5,0x3f,0x93,0x80,0x33,0x11,0x50,0x2f,0x0c,0xf6,0xaa,0xbd,0x60,0x79,0xad,0x58, + 0xd5,0xbf,0xbc,0x8e,0x02,0x55,0x7a,0x00,0x6c,0x78,0xf1,0x24,0x38,0xa8,0x7d,0x3d,0xfd,0xf7,0xad,0x5d, + 0xd7,0x8c,0x9f,0x97,0xf1,0xbb,0xd2,0x49,0xf0,0x8d,0x54,0xac,0x68,0x69,0xe9,0x74,0xf6,0xbd,0x12,0xb7, + 0xee,0xfa,0x61,0xe3,0x2d,0xf6,0xd6,0x0a,0x6a,0x66,0xa4,0x0f,0x39,0x56,0x40,0xa6,0xac,0x71,0x45,0xdc, + 0x28,0x63,0x0e,0xd1,0xba,0xcb,0xb7,0x7b,0xb3,0xab,0x72,0x66,0x02,0xf6,0x7e,0x10,0x1d,0x6f,0x59,0xbb, + 0x46,0xe2,0x51,0xc2,0x90,0x38,0x47,0xae,0x26,0x52,0x02,0xd9,0x7e,0x50,0x95,0x63,0xff,0x02,0x9b,0x6f, + 0xcd,0xc1,0xb6,0xad,0xba,0x67,0x2b,0x16,0x02,0xd4,0x1b,0xc2,0x2f,0x72,0xb7,0x23,0x87,0x39,0x83,0xef, + 0x81,0x67,0xf9,0x94,0x89,0x6b,0xd1,0xae,0x6f,0xdc,0xa4,0xcd,0x19,0xee,0xaa,0xb2,0xca,0x66,0xb6,0x4a, + 0x7a,0xe6,0xc8,0x69,0xc6,0x1f,0xaa,0x25,0x29,0xf2,0x8c,0x68,0x47,0x85,0x84,0xfa,0xb4,0x57,0xcd,0x14, + 0x90,0xb9,0x3a,0x77,0x23,0x88,0x28,0x75,0x20,0x4f,0x1b,0x2b,0x1a,0x54,0x28,0xfa,0xda,0x51,0xaa,0x06, + 0x08,0x77,0x61,0xed,0x9c,0x61,0xad,0x4d,0xef,0xd0,0x77,0xe9,0xee,0x61,0x3e,0x03,0x4f,0x2a,0xdd,0xb4, + 0xa3,0x7b,0xf3,0x57,0xb0,0x82,0x12,0x43,0x1e,0x0e,0x7b,0x10,0xf0,0x2d,0x78,0x54,0x0d,0x87,0xdc,0x42, + 0x20,0x6d,0x9d,0x49,0x49,0xfb,0xba,0x04,0x51,0x19,0xf6,0x1b,0x3f,0x59,0x0e,0x42,0xf7,0xad,0x89,0x76, + 0x5c,0xd9,0xa2,0xc0,0xef,0xb6,0xd4,0x91,0xc8,0xce,0xee,0x07,0xc1,0x7d,0x36,0x24,0xbf,0x6f,0x03,0x96, + 0xde,0xa7,0x45,0xde,0xee,0x29,0x10,0xb9,0xad,0x9d,0x5e,0x5c,0xad,0x8a,0x2f,0x58,0xee,0x4e,0x90,0x8c, + 0x38,0x34,0x6b,0x95,0xd7,0xa6,0x8b,0x16,0x39,0x51,0x17,0x95,0x36,0x3f,0x92,0x22,0xc5,0x3c,0x2f,0xb2, + 0x7d,0xdb,0xb2,0x14,0x97,0xd4,0x23,0x9d,0xc8,0x16,0x95,0x9d,0x2b,0x6f,0x08,0x8e,0x17,0xa5,0xef,0x21, + 0x93,0x25,0x0b,0x38,0xb4,0x31,0x40,0x52,0x4f,0x47,0xdb,0x30,0xa9,0x3c,0xf3,0x5d,0xa6,0x68,0x2c,0xcc, + 0x71,0xc5,0x0d,0xed,0x93,0xc2,0x0a,0xc0,0x46,0xcd,0xa3,0xc2,0x44,0x1e,0xa8,0x12,0xf8,0x2d,0x35,0xb2, + 0x59,0x54,0x29,0xcf,0x42,0x4e,0xbd,0x2a,0xb5,0xb8,0x4a,0x4b,0xfd,0x2f,0xd2,0xfa,0x49,0xce,0x48,0x0f, + 0x06,0xae,0x2a,0xf4,0xef,0x54,0xb2,0x70,0xac,0xef,0x07,0xfa,0x49,0xa2,0xdc,0xf8,0x61,0xef,0xdd,0x7d, + 0x19,0x5d,0x95,0x00,0x47,0x81,0x34,0x12,0xa6,0xc3,0x08,0xd7,0x7d,0xc3,0x70,0x02,0x57,0x72,0x45,0xfa, + 0x72,0x08,0x83,0x62,0x7e,0x2a,0xa1,0xe1,0x21,0x06,0xd5,0xf5,0xcd,0xcf,0xfe,0xc0,0xd9,0x34,0x8c,0x9f, + 0x39,0xf8,0x00,0x5b,0x32,0x4b,0x54,0x52,0x1c,0x18,0x62,0x74,0x7c,0xa0,0xb4,0x72,0xba,0x59,0xcc,0x03, + 0x89,0x7f,0x76,0x85,0xf8,0x9d,0xd2,0x94,0xa7,0xb8,0x66,0x1a,0x7d,0x42,0xd3,0x32,0xe7,0x1c,0x29,0x04, + 0x7a,0xef,0xa6,0x98,0x0c,0x06,0x6c,0x87,0xe8,0xa2,0x5a,0x72,0xae,0x42,0xb4,0x22,0x15,0xdc,0x63,0xcb, + 0xbb,0x80,0xed,0xbb,0xa1,0xcb,0x77,0x10,0x32,0x18,0x9c,0x96,0xf6,0xc2,0x5b,0x83,0xde,0x84,0xd9,0x22, + 0xa2,0x9b,0x4d,0x37,0x11,0x6b,0x2b,0x66,0x60,0xac,0xfc,0x80,0xb2,0xcf,0xfa,0x07,0xfc,0x4c,0x06,0x5c, + 0xe8,0xf2,0xb4,0xfc,0xbb,0xfe,0xe5,0x8c,0xab,0xa4,0x35,0x7b,0xaf,0x64,0xf6,0xf4,0x1a,0xbd,0xe1,0xb0, + 0x0e,0xc4,0x50,0xad,0x8e,0x0f,0x4f,0x46,0x73,0x3d,0xd3,0x56,0xce,0x67,0xfd,0xba,0xf6,0x0e,0x31,0x92, + 0x69,0x52,0x11,0xc3,0x97,0x13,0x7f,0x57,0x12,0x4f,0x37,0x87,0x8c,0x4b,0x85,0xe1,0x2c,0xc9,0xa2,0x96, + 0x8f,0x1e,0xe2,0xf4,0xd8,0xd7,0x2d,0x13,0xd1,0xa9,0xd2,0x1e,0x51,0xf1,0x52,0xdb,0x76,0x5e,0xc0,0xb2, + 0x25,0xbe,0x54,0xd6,0x0c,0x31,0x5e,0x6c,0x38,0xc8,0x86,0xb1,0x1d,0xe4,0x09,0xd0,0xf3,0xd1,0x31,0xe6, + 0x2b,0xf9,0xd6,0x1d,0x7f,0x76,0x83,0x05,0x84,0xd8,0x58,0xd5,0xea,0xb3,0x53,0x3d,0x18,0xe8,0xb9,0x36, + 0x5e,0x26,0x5a,0x6d,0xad,0x96,0xea,0x42,0x51,0x67,0x36,0x2d,0x7e,0xea,0x67,0x77,0x9a,0x33,0x50,0x27, + 0xc6,0x52,0x91,0x20,0x39,0x88,0xfa,0xcc,0xd7,0x8c,0x5d,0xb2,0x4c,0xf4,0x6b,0x1d,0xf2,0xc9,0xf0,0x2b, + 0xac,0xc4,0xa5,0x6f,0x93,0xe2,0xf8,0xe1,0x89,0xd6,0x1f,0x19,0x8a,0x8b,0x96,0x42,0xa7,0xd8,0x55,0x7b, + 0x6b,0x80,0x3a,0xd7,0xf5,0xbd,0x70,0x11,0x80,0xcb,0x31,0xe2,0x38,0xcd,0xf3,0xb4,0xa6,0x5c,0xf3,0xc1, + 0x0b,0xf9,0xa0,0x1a,0xe6,0x44,0xd3,0xa4,0x44,0x3b,0x1e,0x26,0xa5,0xab,0x57,0x95,0xd4,0x2a,0x5b,0x60, + 0x98,0xec,0x87,0x49,0xe9,0x3a,0x82,0xe0,0x2b,0xa6,0x46,0x55,0xf1,0xb5,0x78,0x05,0xc7,0x2c,0x68,0x3b, + 0x92,0xfc,0xdb,0xaa,0x64,0xf2,0xd9,0xd3,0x92,0xb0,0x02,0xd3,0x65,0xcc,0xa3,0xf8,0x09,0x1c,0x7a,0xb5, + 0x9d,0x64,0xf4,0x3c,0x9e,0x35,0xb4,0x2f,0x74,0xfe,0xae,0x69,0xaf,0x1a,0x9f,0x9b,0x26,0xba,0x7d,0x66, + 0x84,0x95,0x9e,0xbd,0x73,0x97,0x19,0x1c,0x07,0x26,0xda,0x53,0x7c,0x1b,0xc4,0x41,0x89,0x1f,0x17,0xf8, + 0x41,0xdf,0xb5,0xb7,0x97,0xc0,0xe0,0x2f,0xdf,0xbb,0x1f,0xc4,0xf7,0xf7,0x32,0xc4,0x0b,0x62,0xb7,0x72, + 0xd8,0x7d,0xbb,0xfb,0xa4,0x3d,0x91,0x37,0x1b,0x2e,0x3a,0xb3,0xe8,0xc2,0x52,0xb5,0xf6,0x7e,0x52,0x2b, + 0xc9,0x24,0xbe,0x75,0x13,0x6c,0x07,0xae,0xb6,0x17,0x9d,0x05,0xc7,0x30,0x2d,0x6f,0x0b,0xe7,0x9d,0x4e, + 0x54,0x5f,0x47,0x62,0x3c,0x01,0x15,0x34,0x93,0x27,0x81,0x3e,0xf9,0xbe,0x2b,0x0d,0xd1,0x2c,0x8e,0x63, + 0x44,0xfb,0x7c,0xdf,0x49,0x62,0x00,0x75,0x46,0xbd,0xc6,0xca,0x21,0x20,0x42,0x0f,0x7f,0x52,0xe3,0xbb, + 0xca,0x22,0x24,0x0e,0x4b,0xe9,0x15,0xa6,0x6f,0xff,0xcd,0x21,0x82,0xca,0xbd,0x84,0x1f,0xd4,0xb7,0x25, + 0x6b,0xcd,0x53,0x63,0xec,0xeb,0x02,0x65,0x67,0xd7,0xa9,0x44,0x4b,0xa9,0x4d,0x20,0x70,0xaf,0xa6,0x11, + 0x55,0xf0,0x73,0x19,0x1e,0x07,0x93,0xa6,0x9a,0xd3,0x20,0xd8,0x6a,0x98,0x7e,0xd3,0x39,0xfe,0x2e,0xb2, + 0x26,0x0d,0x4e,0xee,0xb6,0x69,0xdf,0x9d,0x30,0xc9,0x78,0x87,0x49,0xbc,0x46,0xaf,0xc3,0x00,0x66,0xfa, + 0xdf,0x13,0x11,0x66,0x27,0x6b,0xbd,0x06,0xaf,0x28,0xe6,0x28,0xb6,0xc3,0xc6,0xc5,0xd8,0x5a,0x0e,0x85, + 0xf9,0x1e,0x61,0x79,0x58,0x79,0xdc,0x3f,0x5b,0x35,0x4d,0x59,0xdc,0xc7,0x34,0x48,0xa5,0x08,0x2b,0xb0, + 0x97,0x72,0xc3,0x4d,0x61,0xaa,0xa5,0x34,0x5a,0x04,0xab,0xfa,0xa3,0x03,0x7e,0x84,0xed,0x28,0x35,0x95, + 0x5e,0xdc,0xcd,0x50,0x57,0x72,0x0b,0xea,0x3a,0x2c,0xc6,0x7a,0x4d,0xf6,0x02,0x93,0x11,0xc4,0xd5,0x98, + 0xcd,0x67,0x4d,0x46,0xe4,0x72,0xcc,0x02,0x32,0xa4,0x99,0xb6,0xd6,0xeb,0xca,0xd4,0x12,0xf7,0x35,0x63, + 0x2b,0xf2,0xa1,0xb3,0xf1,0xce,0x63,0x0e,0xcb,0xf3,0x8a,0x8f,0x87,0xc3,0x83,0xc8,0x8f,0xc9,0x6f,0xa6, + 0x51,0x87,0xbf,0x26,0xc2,0x91,0xaa,0xd3,0x70,0xf6,0x6d,0xe9,0x42,0x25,0x07,0xa7,0x9f,0xc2,0x76,0x51, + 0x62,0x1e,0x3a,0x88,0x38,0xe3,0x8d,0xd3,0x4d,0x2d,0x90,0xea,0x3e,0xf5,0xcd,0x43,0x8b,0x96,0xe1,0x14, + 0xc2,0xfb,0xfc,0x13,0x11,0x80,0x8d,0xc9,0xaa,0x04,0x93,0x8b,0x03,0x98,0x18,0x72,0x10,0x59,0xbb,0x3f, + 0xa0,0xc5,0x1f,0x57,0x62,0x17,0x15,0xdf,0x3f,0x9d,0xe8,0xe0,0x06,0xf7,0x79,0xda,0x54,0x27,0x36,0x73, + 0x5c,0x74,0xa3,0x35,0x7b,0x08,0xac,0x72,0x7b,0xd8,0xd8,0x1c,0x41,0xbd,0xc1,0x04,0xbb,0xbc,0xbe,0xaf, + 0xca,0x49,0x56,0xd7,0xd9,0xd4,0x2c,0xbd,0x36,0xa0,0x91,0xf8,0x3a,0xe2,0x47,0xb0,0x2b,0x0f,0x5b,0x45, + 0x53,0xbf,0x28,0xed,0x37,0x2e,0x49,0xbf,0x5b,0x05,0xdb,0x86,0xa1,0x5e,0xb0,0x10,0x94,0x66,0x97,0x1a, + 0xc6,0xc5,0xec,0x02,0x60,0xd1,0xf9,0x18,0xb3,0xed,0xbd,0xc7,0xb4,0xb3,0x6b,0xaf,0xc0,0xc3,0x4e,0x81, + 0x87,0xf0,0x51,0xb3,0xec,0x9a,0xdf,0x0d,0x26,0x87,0x4e,0xe7,0xa1,0xb6,0xfd,0x76,0x04,0x2f,0x8c,0xb5, + 0x53,0x04,0xbd,0xf2,0xa6,0x5e,0x4f,0x19,0x4d,0x35,0xad,0xa5,0x37,0xbe,0x7c,0xc6,0xc3,0xcb,0x67,0x5b, + 0xa3,0xab,0xdd,0x34,0x38,0x02,0x7c,0xb7,0x43,0x80,0x0b,0xe1,0xde,0xc7,0x81,0xf4,0xcc,0x91,0xb3,0x37, + 0x30,0xcc,0xc9,0x7a,0xed,0x51,0xfa,0x84,0x11,0x57,0x85,0xd1,0xe9,0x07,0xa7,0x6c,0xaf,0xbc,0x17,0x56, + 0x3c,0x1f,0x95,0xc4,0xb2,0x73,0x81,0xd1,0x83,0x5b,0x4c,0x92,0x04,0x47,0xbf,0xc3,0xfd,0xe6,0xaa,0xd0, + 0x36,0x15,0x34,0xea,0x18,0xa5,0x45,0x08,0xd6,0x42,0xcf,0x9b,0x80,0x57,0xc7,0x1a,0xef,0x6b,0x17,0x86, + 0xc0,0xec,0xa0,0x5d,0xdc,0x66,0x9a,0xd2,0x56,0x86,0xa7,0x38,0xe1,0x1e,0xe6,0x11,0x1c,0x06,0x41,0xd7, + 0x10,0x28,0x4b,0xde,0xc2,0x12,0x36,0x49,0xa6,0x0c,0x6f,0xab,0x94,0xc6,0xc2,0xd6,0xd5,0x32,0x97,0x3c, + 0x7e,0x99,0x78,0x17,0x00,0xd6,0x27,0x3f,0xda,0xa2,0xd1,0x36,0xbb,0x31,0x46,0xbd,0xf1,0x8a,0xf5,0xc1, + 0x10,0x85,0xd9,0x4d,0x4e,0x3b,0x49,0xbb,0x3d,0x4d,0x44,0x59,0xdc,0x9a,0x35,0xdd,0xbc,0x6b,0x50,0x71, + 0x57,0x2c,0x9d,0x09,0x1e,0x9c,0x29,0xb6,0xb1,0x89,0x82,0x66,0x17,0xa1,0xcb,0xf0,0xd8,0x1e,0xa0,0x9f, + 0xe8,0x41,0x91,0xa0,0xf5,0xfb,0x98,0x5c,0x5a,0xf3,0xbd,0x80,0x9e,0x5a,0x4d,0x87,0x39,0xbf,0xe4,0xb6, + 0x1f,0xed,0x4b,0x38,0x1b,0x27,0xfa,0x70,0xd7,0x27,0x10,0x6f,0x53,0x24,0x7e,0xce,0x71,0x79,0xc2,0x38, + 0xc3,0x39,0xc9,0xeb,0x07,0x0d,0x2d,0x30,0x99,0xe1,0x9e,0x7b,0x48,0x6a,0xeb,0xc2,0x9e,0x0e,0x5a,0xc0, + 0xde,0x69,0xba,0x18,0x46,0xce,0x9d,0x5e,0xcc,0xe5,0xb6,0x4f,0x80,0x88,0xf0,0x0b,0x9a,0xf1,0x70,0xfb, + 0x7b,0x13,0x7d,0x2f,0xda,0xb3,0x78,0x49,0xe2,0xa1,0x04,0x4a,0x3c,0xad,0xed,0x34,0x58,0x2f,0x0a,0x1f, + 0x93,0xb5,0xb0,0x91,0xc4,0x60,0xff,0x53,0xdb,0xb3,0xd5,0x96,0x2f,0x60,0x08,0x02,0x96,0xb0,0x68,0x9d, + 0x71,0x35,0xd2,0xa6,0xbc,0x90,0x31,0xdc,0x12,0x2f,0x0e,0xcc,0x6e,0x1c,0x5a,0xac,0xa3,0xad,0x3d,0xbf, + 0xc6,0x01,0x11,0xe1,0xde,0xc8,0xd9,0xab,0x0e,0x5d,0x7c,0x35,0xdd,0xdb,0xe3,0xd7,0x02,0x63,0x89,0x75, + 0x81,0x4d,0x1b,0xd1,0x7a,0xee,0x04,0xdb,0xd1,0xb7,0x5b,0x03,0xc2,0x40,0x1d,0x75,0x16,0x5a,0xe3,0x7e, + 0x4f,0xab,0xe8,0xf6,0x74,0x35,0xae,0xe4,0xfc,0x90,0xd9,0x1a,0xa7,0xfa,0x38,0xd1,0xc7,0x0a,0xdf,0x77, + 0x62,0x44,0x35,0xf6,0x36,0x64,0x02,0x90,0x53,0xa2,0x40,0x03,0x6d,0xa7,0xd0,0x98,0xe8,0x85,0x8e,0xbe, + 0xc8,0xae,0x97,0x7c,0xb8,0xa7,0xe2,0x1f,0x11,0x8d,0x69,0x5b,0x13,0xe3,0x79,0x36,0x2f,0x27,0x9f,0x34, + 0xf6,0xb0,0x1d,0xa3,0x45,0xf4,0x32,0x37,0x1d,0xa2,0xd9,0x92,0xbb,0xdd,0x7b,0x6a,0x26,0x2d,0x14,0x48, + 0xe8,0x4b,0x55,0x49,0x3f,0x72,0xec,0xde,0x93,0x7d,0xab,0xc3,0x5a,0x68,0x07,0x5f,0x2f,0x8a,0x44,0x7c, + 0x1c,0xb0,0xb3,0xaf,0x09,0x78,0xd1,0x77,0x6f,0xd6,0x6d,0x69,0xc2,0xec,0x6b,0xe9,0xe3,0xaa,0x75,0x15, + 0xf7,0xb1,0x44,0xb7,0x38,0x19,0xad,0xc0,0x6a,0x27,0xbb,0xbb,0x2b,0xc4,0xca,0xa6,0xbd,0x71,0x95,0x56, + 0xb8,0x3b,0x24,0x15,0x67,0xde,0x03,0x55,0x13,0xd9,0x2d,0x8c,0x20,0x11,0xdf,0x3a,0x24,0xc6,0xfd,0xc0, + 0xf2,0x84,0x9c,0xa8,0x5f,0xe0,0x7e,0xb3,0x17,0x96,0x82,0x6f,0x09,0xf6,0x85,0x06,0xc2,0xb1,0x64,0x69, + 0x27,0xdf,0xff,0x68,0x8b,0xf8,0xd0,0xc5,0x22,0x41,0x21,0xe5,0x90,0xce,0x98,0xf1,0x7d,0xe6,0x35,0xb9, + 0x15,0x7a,0x40,0x0b,0x26,0xd7,0x12,0xae,0xd4,0x92,0xe3,0x44,0x7b,0x2a,0x75,0xb4,0xb2,0xec,0xc3,0x8d, + 0x72,0x91,0x95,0x26,0xe3,0xba,0xcd,0x32,0x9c,0xd8,0x08,0x4f,0x1a,0x75,0xf3,0xc5,0x2a,0x7b,0x49,0x05, + 0xc8,0x8f,0x94,0x16,0x10,0x22,0x05,0xc2,0x44,0x3e,0x5e,0xc4,0x9f,0x26,0x90,0x90,0x00,0x33,0x9d,0x49, + 0x4f,0x9c,0x49,0xbf,0x5e,0x26,0xef,0x54,0x57,0x82,0x5f,0x63,0xa0,0x08,0x29,0xb1,0x64,0x4f,0x48,0x64, + 0xd2,0x93,0x97,0xee,0x71,0xcb,0xc8,0xbd,0x0f,0xb1,0x2b,0xfb,0x3e,0x01,0xf9,0xd2,0x62,0xdc,0x77,0xa2, + 0x28,0x71,0xc0,0x15,0xa5,0xde,0xb7,0x59,0xe1,0xb0,0x13,0xfb,0xe2,0xd2,0xc7,0x7e,0x16,0xb1,0x4f,0x61, + 0xa6,0x51,0x89,0x3e,0x5f,0xb9,0x75,0x7e,0x26,0x16,0x6c,0x6f,0x56,0x98,0x1c,0x3d,0x6f,0x4a,0x7b,0xa5, + 0xea,0x82,0xc6,0x17,0xc1,0x96,0x95,0xa8,0xc3,0xb6,0xac,0xb8,0x33,0x4a,0x61,0x30,0x7d,0x3a,0x41,0xed, + 0x1e,0x1a,0x48,0x33,0x93,0xe3,0x7b,0x46,0x7a,0xe5,0xfd,0x64,0xc5,0xb8,0xbb,0xf5,0x95,0x23,0x45,0x84, + 0x06,0x34,0xa2,0x41,0xdd,0x3d,0xbe,0x88,0x26,0xd8,0xf3,0xcb,0xd9,0x2f,0x5d,0x80,0x57,0x29,0xcc,0x5a, + 0x43,0x2f,0x15,0x57,0x32,0x69,0x81,0xa8,0x24,0xc4,0xa7,0x2b,0x62,0x8e,0x5a,0xa1,0x60,0xd2,0xbb,0xf8, + 0x9d,0x9d,0x2e,0x62,0xb3,0x19,0x85,0xa6,0x2c,0x8b,0x16,0x49,0xe7,0x62,0x9d,0xb5,0x08,0xca,0x42,0x13, + 0x94,0x85,0x25,0x28,0x8b,0x0e,0x41,0x59,0x74,0x09,0xca,0xa2,0x43,0x50,0x16,0xbd,0x04,0x65,0xf1,0x9f, + 0x13,0x94,0x66,0x40,0x9a,0xa2,0x94,0x97,0x38,0xb8,0x95,0xdd,0x80,0xf9,0x9d,0x15,0xb1,0x57,0x83,0x76, + 0xd6,0x28,0xdc,0xe2,0x44,0xad,0xfa,0xc2,0x96,0x94,0x97,0x4d,0x66,0xc6,0xd4,0xe9,0x19,0xff,0xd9,0x0b, + 0x08,0x23,0x87,0x2b,0x0e,0xa2,0x1c,0xb5,0x2e,0xae,0x06,0x76,0x76,0x6f,0x71,0x5f,0x11,0x1c,0x0e,0x7c, + 0xfd,0x2b,0x75,0x75,0xc3,0x94,0x58,0x8a,0xfb,0xec,0xeb,0x2e,0xa7,0x4e,0x07,0x7b,0x04,0x90,0xd0,0x71, + 0xd3,0x19,0x72,0xf8,0x39,0x36,0xde,0x93,0x7b,0x99,0x1f,0x19,0x9d,0x86,0xe8,0x1c,0x26,0x6d,0x96,0x49, + 0xda,0x0b,0xda,0x38,0xce,0x86,0x61,0xb7,0x89,0x76,0x77,0xb4,0x89,0x2c,0x63,0x90,0xd7,0x36,0xff,0xb3, + 0x01,0xdd,0x4c,0x24,0xd2,0x03,0x0e,0xff,0x73,0x28,0x71,0x08,0xd9,0x7e,0x4e,0xc3,0x4a,0xc1,0x11,0x7f, + 0x4a,0x13,0xec,0x50,0x13,0x89,0xed,0x36,0x62,0xc3,0xa6,0x79,0x82,0x0f,0x5a,0x74,0x1d,0x09,0x1c,0x1d, + 0xeb,0xb2,0x63,0xc7,0xc8,0xee,0xd2,0x3b,0x77,0x30,0xf9,0xad,0x4a,0x85,0xc1,0x6d,0xcf,0x34,0x1c,0x49, + 0x09,0xd1,0x12,0x56,0x2d,0x65,0x9e,0x4b,0xde,0x8e,0x1b,0xed,0x7d,0x61,0xa1,0xd3,0xb3,0xda,0x7e,0xa0, + 0xee,0x3d,0x50,0x81,0x26,0xd9,0xb3,0xe1,0x55,0x95,0x2e,0x9f,0x19,0x9f,0x03,0xf7,0x0a,0x9b,0x09,0x9d, + 0x6b,0xd5,0x9e,0x5e,0x11,0x9b,0xc6,0xe5,0xbc,0x60,0x4b,0xab,0x9e,0x50,0xff,0x6e,0xae,0x25,0x18,0xb9, + 0x1f,0x90,0x2b,0x4d,0x4a,0x6f,0x01,0x4a,0xcf,0xb3,0x89,0x77,0x75,0x8b,0x5f,0x4a,0xc5,0xfa,0x4b,0xd8, + 0x23,0xf3,0x6e,0x7c,0x5d,0x89,0xaf,0x20,0x34,0x16,0xa6,0x86,0x39,0xa0,0x8d,0xdb,0x09,0x23,0xee,0xe9, + 0x16,0x54,0x4f,0x4c,0x2b,0x1b,0x9f,0xb2,0xb2,0xdd,0xc9,0x35,0x3c,0x20,0xae,0x06,0x2e,0x97,0x42,0x88, + 0x4a,0x9f,0x44,0x81,0xf7,0x47,0x9b,0x64,0x29,0x17,0x59,0x1f,0xf2,0x9a,0x03,0x93,0x6b,0x32,0x27,0x02, + 0xc5,0xf8,0x50,0x53,0x8b,0xec,0xb4,0xf4,0x1f,0x57,0xdb,0xf8,0xb5,0xf2,0xea,0x1c,0x46,0xde,0xb5,0x72, + 0x61,0xc9,0xf6,0xaf,0x37,0x67,0xd9,0x53,0xcb,0x22,0xc5,0x1c,0xa7,0xb7,0xeb,0xba,0x65,0x4c,0x5d,0x85, + 0xe7,0xa4,0x31,0x8f,0x35,0x2d,0x1a,0x7f,0x61,0x93,0xa0,0x24,0xb6,0x11,0x00,0xc7,0x70,0x0e,0x57,0x20, + 0x06,0xb7,0xc8,0x83,0x4a,0x62,0x4d,0xb3,0x0f,0x75,0x1c,0x9c,0x5e,0x82,0xc0,0x7f,0x08,0x0d,0x43,0x01, + 0x29,0x39,0x57,0x5e,0x78,0x7b,0x37,0x9e,0x16,0x61,0x57,0x64,0x22,0x35,0x44,0x5c,0xc7,0x48,0x9b,0x69, + 0x1b,0xd5,0x09,0x04,0x87,0xe5,0x5d,0x87,0xc4,0xa4,0x57,0x6e,0xb8,0x17,0xd6,0x8c,0xb9,0x6b,0x50,0x2b, + 0x9e,0xf0,0x63,0xee,0x7f,0x6a,0x35,0x87,0x2c,0x1a,0x20,0xb4,0xd7,0xa3,0x2a,0x6b,0x33,0xe6,0x9e,0x2f, + 0x6d,0x47,0x27,0x4b,0xe7,0xc6,0x1f,0x5c,0xe4,0xdc,0x88,0xe8,0xb5,0x32,0xd4,0x5f,0x7c,0x7f,0x6f,0x8a, + 0x10,0x85,0x46,0xfa,0xa5,0x02,0x77,0xb3,0xba,0x47,0x4d,0x79,0x4e,0xaa,0xad,0xe8,0x17,0x6e,0x73,0xff, + 0xb2,0x7a,0x78,0xf0,0xf0,0x1f,0x0f,0xce,0x55,0xf0,0x8b,0x3c,0x06,0x51,0x27,0xf3,0x6b,0x97,0xf9,0xb5, + 0x7f,0x41,0xe8,0x52,0xc3,0x02,0xbc,0xf7,0x0c,0x08,0x65,0x57,0x3b,0x2f,0xdc,0x2c,0xbb,0x8b,0x62,0x6d, + 0xdf,0x44,0xab,0x91,0x55,0x15,0x34,0xc8,0x84,0x95,0x63,0x38,0xfb,0x9e,0xfb,0x3e,0x9e,0x5e,0x3f,0xc3, + 0xeb,0x32,0xb9,0x2e,0xff,0x20,0x42,0x27,0x82,0xe1,0x6a,0xdd,0x53,0x92,0x8d,0xef,0x3f,0x4a,0x77,0x2e, + 0xa0,0x04,0x0e,0x7e,0x29,0x82,0x07,0xdf,0xdc,0x8f,0xef,0x3f,0xa2,0x52,0x84,0x35,0xf4,0xbb,0xba,0x2e, + 0x5d,0x79,0xe7,0x85,0x33,0xf8,0x3f,0x87,0x07,0xa3,0x20,0xfa,0xe6,0x80,0x11,0xe1,0xa5,0x0d,0x79,0x37, + 0xab,0xb2,0xec,0xf7,0x2c,0x44,0xa4,0xe5,0x85,0x4d,0x74,0x51,0xc5,0xcd,0x45,0xe0,0xea,0xbc,0x48,0x56, + 0x22,0x86,0x51,0x96,0x52,0x0c,0xd8,0x68,0xe6,0x86,0x73,0xe8,0x68,0x56,0xd4,0x2b,0xc5,0x25,0x9c,0xba, + 0x56,0x41,0x1d,0xaa,0xce,0x7a,0x6a,0xbe,0x48,0x6b,0xef,0xda,0x4b,0x75,0x5a,0x24,0x0f,0xf6,0xc3,0x5f, + 0xae,0x22,0x5a,0x8b,0xab,0x22,0x99,0xf6,0x86,0x34,0xb1,0xeb,0x76,0xea,0x9b,0x14,0xf8,0xb6,0x4d,0x63, + 0x18,0x4a,0xfc,0xb0,0x5c,0xc2,0x72,0xba,0x26,0x56,0x09,0x11,0x58,0x61,0xf2,0x7a,0x74,0x67,0x95,0x3a, + 0xb6,0xcd,0x41,0xd4,0xfe,0x70,0xcf,0xe9,0x1d,0xe9,0xf3,0x4f,0xd4,0xbb,0x5f,0x9e,0x84,0xc7,0x8f,0xf7, + 0xff,0x7d,0x82,0x1e,0x5e,0xff,0x61,0x0f,0x3f,0x15,0x2a,0xd8,0xbf,0x77,0x18,0xa0,0xda,0xd7,0xe5,0x95, + 0xa9,0x96,0xea,0x7a,0xba,0x2d,0x93,0xb1,0x0a,0x78,0xf5,0xb8,0xad,0x2f,0xb2,0xb1,0x5c,0xd4,0x47,0xe2, + 0xeb,0x40,0x54,0xef,0x73,0x9c,0xf5,0x6a,0xdf,0x5c,0xa6,0x18,0xa8,0x7b,0x45,0x72,0x1c,0x78,0x6b,0xe2, + 0x78,0xb8,0xc0,0x5c,0x79,0x18,0x9c,0xa8,0x77,0x28,0x25,0xf6,0x97,0x4f,0x19,0xc6,0x28,0x53,0x80,0x8d, + 0xaa,0xd0,0x19,0x6c,0xd4,0x0d,0x39,0xbc,0x18,0x77,0xdb,0xf4,0x1f,0x74,0x78,0x4a,0x7b,0xd7,0xae,0xc9, + 0x78,0x26,0x91,0x88,0xd1,0xa6,0x3c,0x71,0x9e,0xbb,0xa3,0x19,0xe9,0xfe,0x9b,0xdc,0x20,0x24,0x3e,0xe7, + 0x53,0xea,0xd4,0xf3,0x22,0xb9,0x15,0x62,0xe2,0x4d,0x46,0x84,0x33,0x81,0x1a,0x15,0x3c,0xcf,0x89,0xf9, + 0xec,0xbb,0x61,0xb5,0xce,0xe7,0x30,0xcc,0x20,0xba,0x9e,0xa0,0x68,0xba,0xe2,0x49,0x3a,0xca,0x97,0x48, + 0x30,0xd7,0xfd,0x72,0x66,0x56,0x41,0xb4,0x03,0xfb,0x2a,0xbc,0x72,0x9b,0x2f,0xe5,0x1e,0x58,0xf6,0xde, + 0x50,0xa0,0xee,0x5b,0x09,0xf9,0x79,0x41,0x83,0x99,0xea,0x5d,0x47,0xf4,0xc8,0x89,0x32,0x97,0x3f,0xf6, + 0x76,0xa4,0x15,0xee,0x3e,0x7e,0x5a,0x78,0x09,0x70,0xe5,0x92,0x94,0x1f,0x8a,0x4f,0x45,0x79,0x55,0xe8, + 0x4a,0x91,0xd6,0x89,0x9e,0x1f,0x9f,0xab,0xbe,0xe0,0xf8,0xf1,0xe3,0x42,0x79,0x97,0x30,0xe2,0xc3,0xd3, + 0x79,0x3e,0xcb,0x26,0x37,0x93,0x79,0x86,0x7b,0xa7,0xa9,0x4f,0xc5,0x46,0xbd,0x27,0x88,0x3c,0xfe,0x9f, + 0x5f,0xae,0x86,0xf7,0x4e,0x1e,0xa8,0x5f,0x21,0x2b,0x3b,0xe5,0xbd,0x75,0x7a,0x4a,0xe4,0xd8,0xed,0x46, + 0x3d,0xa3,0x24,0x47,0xa6,0xda,0x2b,0xfc,0xc4,0xb3,0x47,0xbd,0xea,0xcf,0xfd,0xe9,0xe7,0xe7,0xc5,0x65, + 0x5e,0x95,0x85,0xbe,0x0f,0x7d,0xb7,0x95,0x00,0x49,0x1e,0xf7,0x54,0xbd,0x2e,0x92,0x57,0xc5,0x60,0xd0, + 0x9f,0xdb,0x06,0x78,0xf5,0xa2,0x48,0x9e,0x51,0x59,0xed,0x52,0x54,0xa4,0x97,0xf9,0x39,0x38,0x85,0xe1, + 0x8a,0x26,0xec,0xf1,0x39,0x5f,0x38,0xd5,0x2a,0xff,0xb6,0x48,0x5e,0x50,0xf9,0x07,0x8b,0x3a,0xcf,0xd6, + 0x84,0x7b,0xa6,0x54,0x44,0xdb,0x84,0xbd,0x28,0x22,0xf5,0x46,0xb2,0x5f,0x78,0x1e,0x8d,0x28,0xb9,0xf3, + 0xf5,0xf0,0x00,0xd8,0x4d,0x7d,0xd8,0xce,0xcf,0xa6,0xe7,0xd9,0x03,0xce,0xfc,0x69,0x3b,0x93,0xe0,0xa0, + 0xa2,0x73,0x0e,0xd9,0x74,0x9a,0x99,0x37,0x5c,0xb9,0x51,0xa8,0x27,0xba,0x2b,0xf9,0xf2,0x82,0xf6,0xd6, + 0x3a,0x5f,0xa6,0x53,0xfa,0x53,0xd2,0x9f,0xb2,0x76,0x5d,0x82,0x53,0x7b,0x59,0xeb,0x4f,0x7e,0x2c,0x92, + 0x90,0xbf,0x99,0x5c,0x54,0x44,0xa2,0xfc,0xf2,0xe0,0x97,0xe9,0x9e,0xd7,0xfb,0xdb,0xcd,0x90,0x6f,0x1a, + 0x8e,0xd4,0x0f,0x50,0x62,0x83,0xaa,0x7a,0x56,0x70,0x94,0x4d,0x60,0xe5,0x97,0x6c,0x0f,0xd1,0x7f,0x2d, + 0xf3,0x4b,0xc2,0x27,0x3a,0x46,0x43,0xa0,0x6e,0x71,0xad,0xb3,0x47,0x09,0xa3,0xb2,0x83,0x0d,0xe1,0x16, + 0x3d,0xcb,0xdb,0x31,0x01,0xd1,0x83,0x7d,0xfb,0x3d,0x43,0xfd,0xcb,0x22,0xf2,0xdc,0xce,0xd1,0xfe,0xef, + 0x85,0xfa,0xad,0x50,0xdf,0x7b,0x28,0xa8,0x43,0x0b,0xd0,0x18,0x7f,0x87,0x61,0xcd,0xef,0xd4,0x1e,0x16, + 0xb5,0x0f,0x86,0xce,0xe7,0xe5,0x59,0x3a,0x07,0x4d,0xca,0x88,0x0a,0xf3,0x22,0x49,0xc0,0xfd,0xe0,0x05, + 0x87,0x59,0x71,0x39,0xfc,0xf1,0x87,0xe7,0xa7,0xcf,0xdf,0xfe,0x18,0xa9,0xdf,0x09,0x96,0xbf,0x6b,0x81, + 0xc8,0xe9,0x29,0x32,0x9f,0x3d,0xff,0xf1,0xe8,0xdd,0xbb,0xd7,0x1f,0x4f,0xbf,0x7d,0xfd,0xee,0xc9,0xe3, + 0xd7,0xa7,0x2f,0xdf,0xbd,0xfb,0xfe,0xf4,0x54,0x7d,0xdb,0x0f,0xb8,0x1f,0x6f,0x16,0x67,0x25,0x35,0xfa, + 0x29,0x94,0xa7,0xa8,0xbf,0x6f,0xfa,0x7a,0x66,0x94,0xeb,0xdc,0xd4,0x1c,0x8d,0x7e,0xbb,0xa3,0xe6,0x8c, + 0x8b,0xd3,0x4f,0x34,0xfe,0xd8,0x9e,0x75,0x8f,0xff,0xd6,0xc1,0xf4,0x71,0xc9,0x76,0x0f,0xc2,0xb0,0x21, + 0xb6,0xdb,0xc7,0x5f,0x0f,0xa6,0xdf,0xe5,0xa0,0x2d,0xba,0x2a,0x28,0x3b,0x95,0xff,0x0d,0x2d,0x6b,0xeb, + 0x1b,0xaf,0x20,0xd6,0xbf,0x55,0x96,0x90,0x45,0x5a,0xf9,0x0b,0xf9,0xd9,0x0e,0xaa,0x6c,0xa3,0x4d,0x0d, + 0x7e,0x2e,0x92,0x73,0xf5,0x6f,0x30,0x04,0xff,0x2a,0xb6,0x3e,0xcf,0xa7,0xc9,0xbf,0x89,0x6e,0xd3,0xd7, + 0x42,0xae,0xce,0xa0,0xc6,0xdf,0x8c,0xfe,0x55,0xb4,0xfb,0xf8,0x71,0x75,0xd6,0xd3,0x4d,0x2a,0xad,0xe3, + 0x0d,0x52,0x73,0xad,0x4f,0xc4,0x15,0xb2,0xfb,0x95,0xbe,0x39,0x15,0xdf,0xa9,0xad,0x4f,0xe4,0x52,0x70, + 0xbf,0x7f,0xde,0x9d,0xe1,0xf6,0x11,0x9d,0x79,0x96,0x2d,0x45,0xde,0xde,0xa9,0xa1,0x28,0x1b,0x22,0xac, + 0xfb,0xef,0x05,0x74,0x1d,0xb6,0x02,0x57,0xb6,0x93,0xca,0xba,0x76,0x52,0x7c,0xf1,0xfd,0xca,0xde,0x12, + 0x68,0x1b,0x66,0xc3,0x7d,0x9e,0xce,0x7f,0x16,0x88,0x0c,0x9d,0x55,0x9d,0x23,0xdf,0x19,0x65,0xe9,0xe9, + 0x81,0x33,0x8f,0xbe,0xd0,0x93,0xaf,0xb3,0xea,0xde,0xe7,0xa9,0x6f,0xea,0xe4,0x4b,0xb1,0xf4,0xdd,0x9e, + 0xd9,0x7c,0x61,0x2e,0xf6,0x2c,0x6a,0x73,0x23,0x89,0x7c,0xa5,0x6f,0xcf,0x2a,0xe5,0xd5,0x5d,0xa7,0xe5, + 0x17,0x72,0xd7,0x6a,0xb5,0x53,0xcd,0x1d,0x98,0x7e,0x2a,0x9b,0x31,0xc2,0xe0,0x18,0x54,0x9e,0x6e,0xa2, + 0x6d,0x78,0x6b,0x2e,0xf1,0xdc,0x32,0x71,0x6e,0xd5,0xa3,0xaf,0x23,0xf5,0x93,0xaa,0x14,0x0e,0x1c,0xfa, + 0x1e,0x52,0x7b,0x45,0xac,0x4d,0x70,0x9e,0x65,0xac,0x55,0x91,0x44,0x13,0x81,0xdd,0x15,0x7b,0x3a,0xa7, + 0x46,0xa7,0x5e,0x02,0xdf,0x2a,0x6b,0x5e,0x5b,0xe1,0xcc,0x6b,0x2f,0x8d,0x6f,0xd3,0xf3,0x7b,0xb3,0x1d, + 0x0f,0x1d,0xa6,0x46,0xaa,0xa9,0x92,0x5b,0x5e,0x8a,0x18,0xe1,0xfc,0x66,0xf9,0xf9,0x8a,0x6f,0x64,0x8f, + 0x81,0x74,0x47,0x8d,0x0e,0x59,0x02,0xeb,0xdf,0x1e,0xcc,0xd9,0x3f,0x2d,0x1b,0xd5,0x87,0xe6,0x89,0xf2, + 0x09,0xb3,0xca,0x41,0x29,0x35,0xac,0xf5,0x7a,0x9d,0x0b,0x57,0x0c,0x36,0xe6,0xeb,0x39,0x38,0x02,0x8b, + 0xb0,0x59,0x72,0x21,0x8e,0x33,0xa9,0xe3,0x55,0x47,0x54,0x1e,0x6f,0xd2,0x68,0xa8,0x1b,0x55,0x55,0x49, + 0xe7,0x02,0x21,0x95,0x57,0x1d,0xd4,0x50,0x51,0xe3,0xc7,0x01,0xf6,0x6c,0x80,0xe8,0xdd,0x4b,0xcf,0x5e, + 0x43,0xc7,0x7b,0x43,0x0a,0xc7,0x2f,0xc3,0x43,0x09,0xd7,0xb6,0xa0,0x82,0x73,0x41,0x9d,0xc1,0x8c,0xa3, + 0xc7,0x9c,0x4f,0x1b,0x03,0x56,0x30,0x23,0x38,0x0a,0xf3,0x4a,0x65,0xfd,0xb1,0xc0,0x8f,0x71,0x21,0x9a, + 0x0d,0x6d,0x64,0x65,0x12,0xfb,0xfb,0xa3,0x88,0xef,0xf2,0xb5,0x59,0xd6,0x26,0x1d,0x41,0xf1,0xb5,0x9b, + 0x2b,0x66,0x1c,0x5e,0x24,0xfa,0x1e,0x72,0x09,0x7e,0x31,0xd2,0x11,0x3a,0x33,0x89,0xd0,0x29,0xc3,0x8a, + 0xf9,0xd1,0x0c,0x26,0x46,0x68,0x7a,0x17,0x30,0xd3,0x0c,0x0d,0xc9,0x1a,0x11,0x3c,0xb4,0xa8,0x3c,0x87, + 0x3c,0xa6,0x3c,0xe3,0x33,0xce,0x5c,0x04,0xae,0x52,0xe0,0x25,0x8d,0x59,0x60,0x4f,0x05,0xce,0x43,0x8c, + 0xb2,0xed,0xd4,0x12,0x8c,0x78,0x5c,0x0f,0xd3,0x82,0x34,0x0d,0xf4,0x29,0x41,0x58,0x7d,0x51,0xae,0xe6, + 0x53,0xda,0xab,0x34,0x83,0x0d,0x60,0x4b,0xd5,0xd5,0x36,0x22,0x95,0xf0,0x2a,0x06,0x57,0x64,0x4b,0x5e, + 0xf3,0x7f,0x69,0xfc,0x70,0xb9,0x60,0x47,0x63,0xc2,0x56,0x47,0xa1,0x5c,0x14,0x4d,0x43,0x0f,0xf4,0x65, + 0xd3,0x5b,0x91,0x51,0xc2,0xf0,0xd7,0xb6,0x44,0x48,0x62,0x30,0x5a,0x4a,0x32,0x69,0x36,0x71,0x37,0xdb, + 0xbb,0x35,0xba,0x57,0x23,0xa4,0x1d,0x7e,0xb1,0x2e,0x47,0xa2,0xed,0x41,0xd8,0x6a,0xa2,0x4d,0x42,0x40, + 0x98,0x2a,0x2b,0x7d,0xa9,0x6f,0x6b,0xee,0x32,0x84,0x03,0x45,0xea,0x55,0x3a,0xff,0x84,0x03,0x62,0x54, + 0x7b,0xbb,0x80,0x53,0xef,0xb8,0x34,0xcb,0x97,0x94,0x67,0x91,0x96,0x31,0x34,0xbe,0x8c,0xe1,0x1e,0x7a, + 0x8e,0x80,0xf0,0x84,0xac,0xe9,0x87,0xfa,0xa2,0x5a,0x95,0xfb,0x1d,0xb9,0xeb,0x66,0xae,0x3e,0xdc,0xff, + 0x51,0xae,0xe3,0x92,0xdb,0x8f,0x27,0x15,0xae,0xc1,0xea,0x65,0x65,0x46,0x13,0x09,0xcc,0x72,0x07,0xd3, + 0xb7,0x53,0x8c,0x7f,0xd5,0x29,0x71,0xe3,0xfb,0xbd,0x5a,0x0a,0xa4,0x19,0x67,0xf1,0xaf,0x22,0xc5,0x21, + 0x2e,0xae,0x77,0x5b,0x4d,0xb0,0xa1,0x92,0x67,0x44,0x00,0xde,0xbb,0xbb,0xc0,0x5e,0x50,0x07,0x27,0xc9, + 0x2b,0x2a,0x44,0x3d,0x62,0x2a,0x74,0xeb,0x50,0x12,0x5d,0x31,0xe1,0x95,0x1f,0xd9,0x7c,0xda,0xde,0xa5, + 0xd7,0x98,0xa4,0xc6,0x26,0x59,0xfb,0xb6,0x9d,0x36,0xd2,0xc8,0xd6,0xeb,0x9e,0xf0,0xf9,0x8d,0x36,0x63, + 0x24,0xf2,0xf6,0x12,0x36,0x75,0x51,0xdb,0x5f,0xa4,0x31,0x92,0x4f,0x78,0x8b,0x40,0x29,0x02,0xa7,0x91, + 0x94,0x18,0x90,0xee,0x85,0x7f,0xac,0x47,0x3c,0x4e,0x4f,0x22,0xbe,0x43,0x29,0x49,0xc7,0xa9,0x71,0x7a, + 0xaf,0xa3,0xce,0x8d,0x78,0x75,0x34,0x26,0x4e,0xae,0x3e,0xb1,0x3b,0x76,0x83,0x71,0x4b,0xb8,0x53,0x7a, + 0x58,0x64,0xcd,0x45,0x39,0xe5,0x47,0xb9,0xee,0x1a,0x4f,0x13,0x1d,0xed,0xa0,0x7f,0x62,0xb6,0x87,0xd3, + 0x77,0x6d,0x80,0x21,0x98,0x79,0x98,0xaa,0x81,0x89,0x64,0xce,0x16,0x0f,0xa6,0xfd,0x4b,0x62,0x69,0x92, + 0x5f,0x45,0x5d,0x5a,0xa9,0x79,0xa5,0x66,0x5d,0x65,0x6d,0x97,0xe6,0x06,0x04,0x10,0xce,0x9e,0xe2,0x72, + 0x2b,0xe2,0x7d,0x71,0xae,0x71,0x1c,0x39,0x36,0x9f,0xe9,0xa1,0x59,0x89,0xca,0xb3,0x01,0xc5,0x41,0xbc, + 0xfa,0xef,0x51,0x34,0x6f,0x91,0x85,0x7e,0x5e,0xf8,0x03,0x22,0x8a,0x1b,0x43,0x3e,0x57,0xb1,0x75,0x2b, + 0x7c,0x43,0xe4,0x7b,0x7a,0x9e,0x3d,0xbd,0x48,0x8b,0x22,0x9b,0xaf,0xd7,0xbb,0x9f,0xc2,0x76,0x12,0xe8, + 0x6e,0x73,0x47,0x53,0x3b,0x87,0xd0,0x5a,0xdd,0x54,0x2b,0x9c,0xc1,0x7c,0x6d,0x53,0x3b,0xd7,0xca,0x99, + 0xc2,0x9e,0xfe,0x19,0x07,0xc0,0x1f,0xe0,0xec,0xe7,0x6c,0x4b,0x2e,0x2b,0x46,0x7d,0xed,0x8a,0xd4,0xa2, + 0x4a,0x2e,0x69,0x9a,0xe9,0x30,0x7a,0x38,0xd2,0x0f,0x87,0x43,0x70,0xa8,0x5c,0x2a,0xf9,0x41,0xb5,0xab, + 0x5f,0xa0,0x48,0xdd,0xe8,0x4a,0x20,0xec,0xd9,0xdc,0x31,0xa9,0x84,0xb3,0x17,0x79,0xcd,0xf3,0xa9,0x1f, + 0xb5,0x85,0xef,0x79,0x95,0xe8,0x04,0x73,0x11,0x30,0x91,0xd2,0xab,0x56,0x2b,0xe7,0x95,0xdc,0xaa,0xfc, + 0x43,0x44,0x3c,0x65,0xcb,0xa9,0xf1,0xdc,0x84,0x4d,0xa6,0x0f,0xe6,0x15,0x03,0xc5,0x4d,0xa5,0xce,0x64, + 0x68,0xc4,0x8c,0x9d,0x56,0x1d,0x41,0x93,0x16,0xa7,0x0e,0x02,0x1b,0x90,0x9a,0x85,0x57,0x84,0xa1,0x82, + 0xff,0xc7,0x56,0xeb,0x19,0xc0,0xc5,0xca,0xae,0xe2,0x2c,0xf2,0x0a,0x55,0x08,0x77,0x2b,0x85,0x8a,0xbb, + 0x0a,0x19,0x5b,0x3b,0x56,0xc7,0x67,0x49,0xd5,0x2a,0xa7,0x60,0x18,0x01,0xc1,0xe6,0x56,0xdc,0xc0,0x86, + 0xd9,0xcf,0x4a,0x6e,0xa3,0x3a,0x62,0x48,0xfd,0xc4,0x7f,0xaf,0x39,0x98,0xd4,0x53,0x86,0xda,0xc7,0xfc, + 0xf7,0x23,0xce,0x8e,0x7b,0xf8,0xf3,0xae,0x8f,0x2e,0x36,0xe7,0xdc,0x02,0xf1,0xdf,0xd9,0x33,0xe2,0x94, + 0xb1,0x15,0xd1,0x62,0x72,0x8e,0xb9,0x04,0x63,0x33,0xcc,0xc9,0xd5,0x38,0xd4,0x67,0x22,0x1d,0x8a,0xbb, + 0xbb,0x15,0x3f,0xc8,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0x92,0x10,0x0f,0x8d,0x93,0xf0,0xa0,0x19,0x1a, + 0xa2,0xfc,0x38,0x09,0x0f,0xfa,0x40,0xe2,0xca,0x5c,0x1d,0xee,0x53,0xef,0x0b,0x4d,0x65,0x4e,0xce,0x0c, + 0x95,0x4e,0x6c,0xd2,0xde,0xde,0x3d,0xdd,0x90,0xc4,0x7a,0xb3,0xd4,0xeb,0x34,0xa7,0x73,0xdf,0xd5,0x63, + 0x8f,0x71,0xb0,0x52,0x9a,0x98,0xcf,0xae,0x9e,0xf9,0xef,0x94,0xf9,0x8a,0x10,0x95,0x06,0x08,0xaf,0x48, + 0x37,0xd5,0x69,0x10,0x20,0x6e,0xef,0x89,0xa0,0xd0,0x8c,0xb9,0x1c,0xd1,0x20,0x0d,0xc6,0x12,0x87,0xfe, + 0x6b,0xc7,0xe7,0x67,0xf7,0x7d,0x21,0x62,0x0b,0x03,0xe6,0x70,0x58,0xd3,0x81,0x58,0x86,0x81,0xbb,0xe2, + 0xb2,0xe7,0xc0,0xec,0x39,0x84,0x5b,0xe8,0x73,0x94,0x25,0xfa,0x2c,0x76,0x77,0x4f,0x6d,0xd8,0xf5,0xca, + 0xeb,0x0f,0xee,0xff,0xeb,0xeb,0x5d,0x04,0xc7,0x7d,0xe5,0x51,0x42,0x76,0x2a,0x8d,0x89,0x99,0xf9,0x0c, + 0xe1,0x71,0xde,0xf9,0x27,0x7d,0x87,0x3e,0x97,0x4f,0x95,0xc7,0x38,0xfe,0x53,0xc7,0x1a,0xb2,0x49,0x91, + 0xc7,0xd2,0xc9,0x65,0xd5,0x0c,0xa5,0x89,0x06,0x50,0x0e,0xeb,0xd7,0x24,0x5e,0x3f,0xf5,0x55,0x74,0xca, + 0x8a,0x56,0x8c,0x31,0xb8,0x81,0xa0,0xa8,0xb9,0xa8,0xca,0x2b,0x3a,0x40,0x7e,0x62,0xad,0xf6,0x7d,0xf9, + 0x6c,0x87,0xa6,0x6e,0x47,0xc3,0xf4,0x0e,0x22,0xe6,0xb6,0x97,0x13,0x16,0x29,0xd1,0x86,0xf0,0x11,0x55, + 0x7e,0x73,0x6b,0xe1,0x72,0x30,0xf8,0x3d,0x6c,0x75,0x11,0xfd,0x2f,0x97,0xa1,0x9e,0x1e,0x48,0x00,0x8a, + 0xd5,0x12,0xb0,0xe4,0xa2,0xf5,0xd1,0x31,0xd2,0x9a,0x13,0xe1,0x90,0x7b,0x1c,0x76,0x32,0x82,0xe2,0x51, + 0x1b,0xd8,0x20,0xb3,0x08,0x61,0x12,0x17,0x76,0xd2,0x25,0x2a,0x59,0x0b,0x7a,0x0d,0xab,0xef,0x83,0xb0, + 0xfd,0xde,0x48,0x09,0x64,0xe3,0x46,0x9d,0x2e,0x79,0xfd,0xfe,0x0c,0x7b,0x8e,0x2d,0x63,0x20,0x2c,0x03, + 0x5f,0xa0,0xfb,0x6d,0x33,0xc1,0x62,0xf4,0xf5,0x9f,0xc6,0x85,0xcb,0x1a,0x9c,0xd4,0x41,0x8b,0x07,0xb4, + 0x6b,0x86,0xeb,0xee,0xc8,0xdf,0x7d,0xed,0x9a,0xb6,0x76,0x61,0x27,0x41,0xa4,0x2f,0x61,0xa4,0x5c,0x85, + 0xb5,0xb7,0xd3,0xfd,0x89,0x6a,0xef,0xf9,0xa2,0x3d,0x89,0x26,0x02,0x66,0x67,0x86,0x44,0xe2,0xb0,0x25, + 0x9d,0xe1,0x4d,0xe0,0x21,0x99,0x5d,0xbd,0x17,0x80,0xa5,0x24,0xbd,0x5a,0x51,0xe1,0xf8,0x8e,0xc5,0xd6, + 0x51,0xae,0x93,0xe4,0x1a,0x17,0x52,0x33,0xdc,0xf2,0x13,0x50,0xd7,0xe3,0x96,0xe9,0xdf,0x51,0x65,0xad, + 0x11,0x47,0xc5,0x37,0x1f,0xab,0xc1,0xe0,0xa8,0xe2,0x0b,0xd8,0xa6,0xdf,0x70,0x4d,0x51,0x41,0x0b,0x42, + 0x85,0x74,0x6c,0xeb,0x62,0xef,0x50,0x1d,0x40,0x86,0xc3,0x07,0xdd,0x91,0xb9,0x27,0x33,0x1a,0x3d,0xc5, + 0x2e,0xc7,0xc9,0x70,0xa0,0x5e,0x86,0xab,0x8c,0x9d,0xeb,0xb4,0xac,0xa6,0x35,0x5e,0xea,0xb6,0x3f,0x58, + 0x18,0xab,0x3b,0xcc,0x6a,0x62,0xa8,0xb8,0x6d,0xcf,0xb6,0x46,0xbb,0x5a,0x8e,0xc6,0x48,0x62,0xbd,0xce, + 0xf9,0x22,0x3c,0xbb,0x75,0x5a,0xd0,0x22,0x3e,0xa0,0xa6,0xd6,0x16,0x7f,0x25,0x5b,0xb6,0xd2,0x9b,0x6e, + 0x72,0x26,0xfb,0x5b,0x6f,0x7f,0xb6,0x75,0x75,0x22,0xd4,0x9f,0xc2,0xcc,0x30,0x61,0xea,0xbe,0xb1,0xd4, + 0xf8,0x53,0x3b,0x5b,0x2e,0x5e,0xbf,0xb3,0x85,0x4d,0x67,0x3a,0x32,0x74,0xb1,0x0f,0x00,0x3c,0x84,0xc8, + 0x13,0xe1,0x9f,0x38,0x10,0x63,0xb4,0x6a,0xd9,0x16,0xa1,0xfd,0xd1,0x0e,0xf3,0xb7,0x96,0xfe,0x3c,0xec, + 0x2e,0x55,0x43,0x70,0x3f,0x2d,0xaf,0x3e,0xbb,0x5e,0x7a,0x70,0x08,0x23,0xf4,0x24,0x23,0x9a,0xef,0x99, + 0xd1,0x1d,0xad,0xd7,0x76,0xe4,0xee,0x88,0x17,0xe6,0x75,0xf4,0x97,0x3a,0xd7,0xd9,0xdb,0xa3,0xd6,0x41, + 0x7c,0xb8,0x11,0x9e,0xed,0x39,0x11,0x26,0x59,0xb1,0x5a,0x64,0x46,0x96,0xa3,0x3a,0xb2,0x1d,0x28,0x6c, + 0xe2,0x73,0x55,0xe3,0xef,0x46,0xbd,0xa7,0xe2,0xd8,0x61,0x60,0xcc,0x47,0x4f,0xb3,0xf0,0xb1,0x27,0x6d, + 0x15,0x2e,0xff,0x57,0x2a,0x81,0xa0,0x02,0x3e,0xcf,0xac,0x29,0x1a,0x3e,0xfe,0xfa,0x63,0x06,0xf4,0x04, + 0x05,0xc8,0x6b,0x3b,0x25,0x51,0x5f,0xd8,0x80,0xa4,0xd5,0x80,0xbb,0xec,0x3b,0xb9,0x3d,0x65,0x39,0x8f, + 0x94,0xc6,0x08,0xb4,0x2f,0xf3,0x55,0xa5,0xb4,0xc3,0xfe,0x8f,0x05,0xab,0xa4,0xcd,0xeb,0xf3,0xf9,0x22, + 0xae,0x84,0x63,0x23,0x52,0x33,0x9b,0xe1,0x3d,0x97,0xf7,0x0d,0xbb,0x8b,0xb2,0x83,0x79,0xdb,0xbe,0xc7, + 0xc5,0x08,0x91,0x8b,0x6b,0xb4,0x61,0x4f,0x32,0xd1,0x0f,0xaa,0xee,0xda,0xf2,0x50,0x56,0x27,0x85,0x30, + 0x23,0x24,0x55,0xdb,0xfe,0xfb,0x88,0x68,0x40,0xac,0x1b,0xfc,0xec,0xa2,0xe1,0x3d,0x56,0x44,0x86,0x20, + 0x55,0x33,0xea,0x98,0x16,0xd4,0x79,0x17,0x36,0xe9,0xfe,0x21,0x34,0xc0,0xe3,0xb9,0xc5,0x05,0x88,0x20, + 0xfa,0x2b,0x80,0x32,0xe3,0x50,0x0e,0x61,0xa9,0x4a,0xda,0x44,0xca,0xbc,0xc7,0x6d,0x66,0xcb,0xb8,0xe4, + 0x6d,0x05,0x5a,0xd8,0xed,0x23,0x4d,0xa5,0xfe,0xdd,0xdd,0x30,0xc7,0xda,0x99,0xc8,0x09,0xc3,0x53,0x19, + 0xfa,0x53,0x2d,0xae,0x5d,0xaf,0x4d,0x78,0x56,0x67,0xda,0xc7,0xe5,0xbd,0x77,0xbe,0x69,0x41,0xdb,0x45, + 0xba,0x7a,0xbc,0x55,0x4a,0x2a,0xa2,0x74,0x25,0x3c,0x17,0x3f,0x9e,0xea,0x4b,0xb9,0x43,0xf3,0x68,0xc4, + 0xa9,0x7c,0xd1,0xd3,0x5d,0x5d,0x49,0x72,0x64,0xca,0xc5,0x1c,0xe6,0x86,0xa3,0xf6,0x35,0x67,0x97,0xb8, + 0x67,0xe3,0xde,0xdc,0x98,0x2f,0xe1,0x16,0x01,0x4a,0x6a,0x60,0xdc,0x62,0x2b,0x15,0x93,0xcb,0xdb,0xb4, + 0x1a,0xb6,0x84,0x54,0xc6,0x3c,0x58,0x98,0x77,0x04,0xc5,0x41,0x39,0x76,0x39,0xf1,0x86,0x44,0x69,0x50, + 0xb1,0x20,0x3c,0x36,0x22,0x21,0x8e,0x26,0x8f,0xec,0xd6,0x9d,0xb8,0x8b,0xb0,0xeb,0xe3,0x09,0xf1,0xfc, + 0xb8,0xa3,0xfd,0x6d,0xb8,0x52,0xdd,0xb6,0xe5,0xc6,0xbf,0xed,0xf6,0x0f,0xb6,0x4a,0x3e,0x63,0xf1,0xf9, + 0xc6,0x59,0x37,0xcf,0x93,0xed,0x09,0x76,0x71,0x2b,0x3e,0x93,0x87,0x0b,0x8b,0xe4,0x1e,0xcb,0x79,0xb4, + 0x29,0x79,0xe2,0xef,0xc1,0xb2,0x81,0x26,0x12,0xf7,0x2e,0x7a,0xa1,0xbc,0x29,0x83,0xa6,0x61,0xa2,0x15, + 0xe5,0xec,0x45,0xdf,0xf4,0x6c,0xdb,0x9e,0xad,0xac,0xbc,0x30,0x1b,0xf4,0x6c,0x57,0x01,0x10,0xe7,0x22, + 0x78,0x6c,0x94,0x84,0x0e,0xeb,0x3d,0xba,0xcd,0xfd,0x7b,0x45,0x5f,0xfd,0xa3,0xa2,0x15,0xad,0x2d,0xf4, + 0x5f,0x31,0x7b,0x1c,0x9d,0xc1,0x2a,0xfc,0xd9,0xc0,0xad,0xbd,0xa5,0xf8,0x62,0x69,0xf7,0xcd,0x98,0xef, + 0x71,0xaa,0x70,0x6d,0xb4,0xc5,0xa7,0xc4,0xe8,0xc9,0x91,0x5e,0x45,0x51,0x5c,0xa3,0xc2,0xdd,0x03,0x1d, + 0x8c,0xaa,0xda,0x28,0x6d,0x19,0x70,0x47,0xd7,0xbb,0xdd,0x6d,0x5a,0xd8,0x8f,0xdd,0x46,0xdb,0xfd,0xb1, + 0xf2,0x4a,0xb1,0x7a,0x15,0xd4,0x1a,0x16,0xd2,0x4d,0xb1,0x7c,0x78,0x55,0x38,0x9e,0x2b,0x45,0x8c,0x58, + 0xa6,0xf7,0x6c,0x8f,0x23,0x04,0xd4,0xf4,0xfa,0x7f,0x30,0xf2,0x64,0x9a,0xa3,0x8a,0x18,0x97,0x7b,0xdd, + 0x3b,0xdb,0x21,0xd9,0xc4,0x0d,0xa0,0x36,0x03,0x37,0x3d,0x8e,0x26,0xe8,0x41,0xcb,0xc2,0x41,0xc2,0xee, + 0xd3,0xe8,0xe3,0xc6,0xbb,0xa6,0x19,0xc8,0xe7,0x59,0xd5,0x12,0x55,0xfe,0x4a,0x7b,0xf6,0x55,0x95,0x1c, + 0xaa,0xd7,0x55,0xf2,0x50,0xbd,0x40,0xc3,0xef,0x7d,0xed,0x1d,0xdf,0xca,0xbd,0x2d,0xfb,0x3d,0x5d,0x11, + 0x6b,0xf9,0xa2,0x32,0x1a,0x38,0x9a,0xaa,0x1f,0x57,0x3c,0x4c,0x89,0x18,0xe7,0x21,0xff,0x71,0x1f,0x92, + 0x73,0xb0,0xde,0x91,0x5c,0x31,0x10,0x19,0xf1,0x8c,0x35,0xef,0xe4,0x30,0x24,0x3e,0x46,0x1a,0x99,0x88, + 0x11,0x94,0x2e,0x0f,0xaa,0xe8,0xa2,0x2c,0x9b,0x40,0x47,0x89,0xfb,0x9c,0x5e,0x90,0x23,0x27,0x0c,0x92, + 0xe5,0x49,0x8b,0xd1,0x7a,0xae,0x7f,0xf4,0xb6,0x45,0x92,0xb7,0xb6,0xc8,0xd6,0x2e,0xcd,0xbd,0x5d,0x53, + 0x6c,0xa3,0x3f,0xbb,0x8b,0x90,0x69,0xdb,0x39,0x4a,0xcf,0xe5,0x4e,0x5f,0xd5,0xe8,0x63,0x8b,0x43,0xcd, + 0xea,0xa3,0xcc,0xa4,0xa9,0x2d,0x47,0xc1,0x64,0xcb,0x31,0x27,0x12,0x9a,0x95,0xd0,0x93,0x50,0xdb,0xf7, + 0xdc,0x65,0xed,0xcf,0xb3,0xd0,0xe8,0xe3,0xcc,0xe4,0xd2,0x06,0xe3,0x50,0xde,0x22,0xb2,0x90,0x55,0x94, + 0xb6,0xde,0x57,0xe5,0xb5,0x08,0x06,0x74,0x72,0x9d,0xcd,0x67,0xf2,0xde,0xb7,0x75,0xec,0xc5,0x9f,0x85, + 0x5d,0x0c,0xa6,0xe0,0x11,0x0a,0xd3,0x86,0x02,0xd2,0xe1,0x42,0x0b,0x87,0xe3,0x4c,0xce,0x60,0x40,0x89, + 0x26,0xde,0x23,0x6c,0x61,0xcd,0x4b,0xe1,0x41,0xbf,0x51,0xd7,0x66,0x26,0x97,0xaf,0x64,0xba,0x57,0x95, + 0x25,0x3d,0x8d,0x0b,0x79,0x22,0x62,0x22,0x73,0xdf,0xb0,0xb6,0x53,0x2e,0x7c,0x86,0xd8,0xc7,0x93,0xdd, + 0x30,0x8d,0x91,0x79,0x1b,0xcf,0x24,0x74,0x37,0xed,0x21,0x97,0x72,0x48,0x4a,0xbf,0x5b,0xa4,0x60,0x53, + 0xda,0xc4,0x23,0x08,0x3b,0x2d,0x09,0xf2,0xe7,0x8b,0x4a,0xea,0xfb,0x8e,0xfa,0x2c,0x79,0x28,0x97,0x98, + 0x42,0x58,0xd5,0xb0,0xbd,0x44,0xa2,0xa3,0xa1,0x35,0x9f,0x3d,0x32,0x30,0x79,0x72,0x4f,0xd7,0x1d,0x0d, + 0xca,0x99,0x6d,0xc6,0x27,0xf0,0x72,0x54,0x65,0x59,0xed,0xf4,0xc2,0x9d,0x25,0xb4,0x07,0x7d,0x7b,0xc3, + 0xd1,0x0e,0x2c,0xb0,0x52,0x26,0x02,0xa7,0x7f,0x00,0x35,0x5d,0x50,0x97,0x0b,0x1f,0x7d,0x12,0x23,0xe1, + 0xa3,0xfd,0x74,0xd2,0x32,0xf7,0x56,0xfe,0x75,0xd7,0xef,0xbc,0x8b,0x60,0x11,0x21,0x62,0xc3,0x6b,0xe9, + 0xdb,0x20,0xfe,0xd9,0x6f,0x0f,0xb4,0x26,0x24,0x97,0x1e,0x73,0xc8,0x7c,0xa8,0x5e,0x02,0xa1,0x3d,0x02, + 0x88,0xf2,0x72,0x8f,0xe4,0x90,0x80,0x5b,0x52,0xc2,0xee,0xdf,0x40,0x35,0x5b,0xd3,0xed,0x4a,0x9b,0xd9, + 0x9e,0xc8,0xb6,0x52,0x6d,0x73,0xb6,0x9e,0xa0,0x2c,0xc9,0x45,0xe6,0x13,0x57,0x22,0xe7,0x87,0xf2,0x01, + 0x3e,0x2e,0x3d,0xb4,0x8c,0xf2,0x51,0x74,0xd3,0x13,0xa3,0x9c,0x8e,0x9b,0x7b,0x4c,0x10,0x34,0x12,0x20, + 0x57,0xf5,0x10,0x24,0x77,0x01,0x85,0xe1,0x67,0xe0,0x68,0xdf,0x85,0x80,0x51,0x63,0x3c,0x5e,0x3e,0x8f, + 0xb6,0x1d,0x22,0x64,0x24,0x52,0x59,0x92,0x4b,0xc7,0xeb,0xef,0xa1,0xba,0xb0,0x21,0x4b,0x04,0x1d,0x32, + 0x1b,0x7c,0xab,0xcb,0xa5,0x76,0x5d,0xb3,0x4d,0x97,0xb8,0x97,0x8a,0xf7,0x7e,0x69,0xc2,0xef,0xbe,0x85, + 0xe1,0x34,0x8d,0x9b,0xe6,0xee,0x5e,0xc8,0xf1,0x44,0x22,0xc5,0x9a,0x1b,0xc2,0x66,0x88,0x0b,0xad,0x02, + 0xe9,0x47,0x00,0x52,0xbb,0x13,0x47,0x20,0x4a,0xe1,0x6e,0xdf,0x33,0x53,0xec,0xfc,0xa4,0x49,0x4b,0x98, + 0x65,0x8b,0x46,0xa6,0x3b,0x07,0xdd,0xd1,0xbb,0x80,0x38,0x52,0x3b,0xdf,0xe6,0x22,0x82,0x0b,0xac,0xca, + 0xf8,0x3c,0x5e,0x86,0xa2,0xef,0x93,0x3b,0x9f,0x4d,0xbd,0x68,0x02,0x50,0x39,0xfe,0x1c,0x36,0x15,0xb8, + 0x2d,0x43,0xa4,0x9d,0xb2,0xd6,0xae,0x57,0x8c,0xda,0xee,0xa1,0x67,0x1e,0x9c,0x69,0xf6,0xbd,0x25,0x18, + 0xd0,0x79,0x2c,0x1f,0x50,0x6c,0xc4,0x19,0xe2,0x9a,0xad,0xdb,0x8d,0x5c,0xd2,0x43,0xe7,0x06,0xdf,0xf1, + 0x0c,0xb9,0x1a,0x5f,0xca,0xe6,0x04,0x2d,0x6d,0x78,0xe4,0xf5,0xee,0x90,0xc5,0x79,0xe2,0x43,0xb8,0x1e, + 0xaa,0xb2,0x11,0x19,0x47,0xb9,0x15,0x8d,0xa5,0x49,0x71,0x9c,0x9f,0xc0,0xd5,0x6c,0x46,0x2b,0x88,0x3b, + 0x5a,0xaf,0xf8,0xa6,0x56,0xbd,0x7c,0xe8,0x56,0x80,0x7b,0xb2,0x3f,0x0a,0x05,0x03,0x0e,0x2c,0xfe,0x18, + 0x9a,0x69,0x20,0xf8,0xc2,0x7e,0x6d,0xac,0x8a,0xec,0x2e,0x50,0x3d,0x35,0x05,0x7e,0x32,0xf0,0xde,0x87, + 0x77,0xab,0xe4,0x7b,0x84,0x4a,0x6f,0x45,0xdf,0x68,0x0c,0x77,0xd5,0xe0,0xee,0x98,0xde,0x99,0x2f,0xc7, + 0x65,0x5c,0x42,0xb6,0x31,0x82,0xe4,0x08,0xe3,0x61,0x01,0xf8,0x3b,0xf8,0x6d,0xd2,0x96,0x38,0x57,0xe7, + 0xc4,0xa6,0x13,0x11,0x9b,0x6b,0xd0,0x9c,0x61,0x6c,0x39,0xb3,0x7f,0x0c,0x0a,0xa6,0x6f,0x11,0xfb,0x78, + 0x51,0xff,0x60,0xd3,0xc2,0x0f,0xbb,0xa2,0xe0,0xbc,0xc3,0x3d,0xc2,0xeb,0x5e,0xc5,0x50,0xb6,0x1d,0xc6, + 0xa3,0xf2,0xef,0x82,0x83,0x7b,0x5c,0xe5,0xfb,0xc4,0x2d,0x85,0x8f,0xa8,0xf8,0xa6,0x48,0xe6,0x5e,0x4d, + 0x8a,0xe9,0x9a,0x98,0x05,0xf6,0xe1,0x8e,0x2d,0x18,0xd5,0x3a,0x44,0x1d,0x0f,0xec,0x54,0xbf,0x4e,0xfb, + 0x41,0xb5,0x11,0x88,0x04,0x94,0x6d,0x23,0x50,0x63,0x00,0xac,0x29,0x11,0xdb,0x02,0x5c,0x94,0x24,0x45, + 0x38,0xf0,0x6e,0x2e,0x9d,0x13,0xdb,0x3d,0xc4,0x6d,0x42,0x9f,0xb3,0x81,0x61,0x40,0xda,0x8c,0x6c,0xdc, + 0xa7,0xe2,0xb3,0x85,0x19,0xbc,0xfb,0xad,0x64,0x6e,0x42,0x8f,0x54,0xa6,0xe3,0x43,0x40,0x97,0xf6,0xc7, + 0x9f,0x29,0xac,0xd1,0x54,0x11,0xb5,0xac,0xe5,0xee,0xb1,0x61,0x5c,0x3b,0x49,0x2e,0x72,0x4a,0x9e,0xb7, + 0x53,0xfb,0x14,0xe7,0x72,0xe7,0x91,0x8b,0xe4,0x82,0xc5,0x15,0x9a,0x50,0xee,0x97,0xc6,0x75,0x10,0x72, + 0x8d,0xbb,0x28,0xa2,0x0e,0x4c,0xc8,0x55,0x81,0x5d,0xbf,0xa8,0xf5,0x9d,0xcb,0x9d,0x02,0xb7,0x71,0x32, + 0x41,0x65,0xfc,0x21,0x7c,0xb3,0x99,0xca,0x4a,0xdd,0x38,0x84,0x72,0xf8,0xbe,0x2f,0x40,0x59,0xf2,0xe0, + 0x7f,0x70,0x09,0x7b,0xfc,0x60,0xd4,0x1a,0x4e,0xd9,0x32,0x46,0x97,0x91,0x74,0xed,0x44,0xa2,0xb6,0xcd, + 0x47,0xd6,0xb5,0xf9,0xd0,0xd0,0x41,0x15,0xc0,0x17,0x58,0x8b,0x67,0x04,0x66,0x34,0xed,0x75,0x9c,0x9d, + 0x18,0xad,0x81,0x4b,0xf1,0x82,0x40,0x15,0xd8,0x90,0x5a,0xdb,0x04,0x4e,0x8e,0x0b,0xb6,0x09,0x33,0xab, + 0x98,0x64,0xf8,0x68,0xdb,0x3a,0xde,0x2b,0x3b,0x42,0xb1,0xc6,0x33,0xce,0x94,0x19,0xba,0x57,0xce,0x66, + 0x3c,0x40,0x65,0xac,0x84,0x2a,0xef,0xea,0xb4,0x8d,0xde,0xd9,0x54,0xb3,0xe7,0xbd,0x48,0x94,0xb5,0xaa, + 0x64,0x60,0xf8,0xb0,0xea,0x36,0x3a,0x9b,0x75,0xda,0x04,0x2b,0xda,0x35,0x5a,0x8a,0x5a,0x50,0xfd,0x19, + 0x52,0x94,0x1b,0xef,0x9b,0xfd,0x8e,0x97,0xd6,0x76,0x50,0x43,0x99,0x7e,0x8c,0x0f,0xc7,0x5e,0xd3,0x9e, + 0x28,0x41,0x48,0x9d,0xa9,0x6f,0x5f,0x5a,0x61,0x5a,0x76,0x26,0x1d,0xdd,0x95,0x92,0x8b,0x03,0x74,0xb1, + 0xc6,0xc2,0x43,0xe9,0x5f,0x72,0x99,0xe2,0xa4,0xa1,0xec,0xb0,0x4c,0x72,0x58,0x68,0xc0,0x6e,0x01,0xd7, + 0x17,0xcd,0x8a,0xce,0x55,0x97,0xe9,0xd6,0x55,0x97,0x3d,0x2b,0x9a,0x2d,0x3a,0xfc,0xaf,0x93,0xd7,0x33, + 0xc7,0xd3,0x1e,0x4b,0x01,0x07,0x32,0x73,0xe8,0x7d,0x73,0x38,0x06,0x44,0xc5,0x85,0xc7,0xd7,0x5f,0x84, + 0x76,0x5d,0xa8,0x75,0x02,0xe2,0x03,0xf6,0x78,0x35,0x18,0xfa,0x51,0xc9,0x58,0x9a,0x6f,0xe9,0x22,0x14, + 0x6d,0xec,0xc8,0x80,0x9d,0xad,0x83,0xcf,0x4f,0x21,0x91,0x7d,0xea,0x3e,0xb7,0xbb,0x73,0x21,0xee,0x03, + 0x2c,0xdd,0x87,0x93,0xb4,0xc8,0xf1,0x9d,0x92,0x4d,0x36,0x61,0xf8,0xa6,0x4a,0xe8,0xd7,0xe7,0xeb,0xbb, + 0xaa,0x1b,0x21,0x20,0x34,0x33,0xaf,0x59,0x9e,0xc1,0xa0,0x43,0xe1,0x6a,0xff,0x0b,0x13,0xe7,0x50,0x16, + 0x3c,0x9b,0x2b,0xad,0x8f,0x16,0x7e,0x83,0x06,0x75,0x55,0x8d,0xae,0x2a,0x9f,0x85,0x14,0x9e,0x82,0xd8, + 0x88,0xb1,0xf9,0xc6,0x98,0xc4,0xb1,0x24,0xf4,0xf4,0x94,0x76,0x41,0x16,0x69,0x3d,0x70,0x4f,0xae,0x6d, + 0x89,0x63,0x72,0x1c,0x76,0x4e,0x09,0x8f,0xb7,0xef,0x64,0x08,0x77,0xdf,0x3d,0x55,0x7c,0xc1,0x40,0x5f, + 0x79,0x13,0x43,0xbb,0x4a,0x72,0xbe,0x1d,0x91,0xf8,0xf5,0xd3,0xcb,0x55,0x76,0x7a,0x9a,0xb8,0x1d,0x82, + 0xde,0x18,0x0c,0x41,0x8f,0xb6,0x84,0xc7,0x4f,0xdf,0xd3,0x72,0x52,0x79,0x91,0x36,0xcd,0x9b,0x4c,0x88, + 0x56,0x0d,0xe9,0x3c,0x27,0x58,0x6d,0xa5,0xda,0xe9,0xb8,0xc7,0xe7,0xdd,0x1b,0x5f,0xcb,0xe1,0x4b,0xfb, + 0xb6,0xb4,0x30,0x86,0xd2,0xd7,0x6d,0x9a,0x57,0xcf,0x4e,0xb8,0x5d,0x97,0x96,0x13,0x75,0x34,0x26,0xbb, + 0x06,0x28,0xda,0x5c,0x6e,0x74,0xdb,0x81,0x0d,0xe3,0x82,0x13,0xa9,0xfe,0x0f,0xdc,0xcd,0x94,0xfe,0xe8, + 0x46,0xbb,0xac,0x7b,0xe8,0xd1,0xc0,0xb4,0x57,0xc6,0x88,0x0b,0xa0,0x99,0xf1,0xb8,0xfc,0x96,0xf8,0xe2, + 0x8e,0xe1,0xba,0x33,0x69,0xe4,0x2c,0xe9,0x5a,0x45,0xac,0x14,0xb8,0xb1,0x0a,0x1c,0x9b,0x05,0xc3,0x6a, + 0xaf,0x06,0x47,0x40,0x68,0x73,0x4e,0xd3,0x9a,0x97,0x64,0x8c,0x1f,0xf7,0xf7,0xed,0x54,0xf8,0xb3,0xa0, + 0xfa,0x60,0x5b,0x6f,0x1d,0x81,0x2f,0x3b,0xb3,0xce,0x99,0xc9,0x82,0x30,0x61,0xd7,0xcf,0x03,0xa0,0x0f, + 0xa2,0x6d,0x78,0x6a,0xc9,0xea,0xc5,0xdc,0x7e,0xa3,0x9e,0x66,0x61,0xf8,0xb6,0x83,0x1d,0x22,0xf5,0xb6, + 0x05,0x18,0x05,0xb1,0xfc,0x47,0xf9,0xa4,0x6d,0xfa,0xa8,0x51,0xcc,0x4b,0xad,0x6c,0x24,0x68,0x6a,0x7d, + 0xa4,0x65,0x02,0x3e,0x30,0xb9,0xd5,0x57,0x5b,0x82,0x23,0x2d,0xe6,0xda,0x12,0xf4,0xb1,0x56,0xc2,0x61, + 0xa4,0xa8,0x45,0xa8,0x1b,0x29,0x84,0x73,0x66,0x96,0x77,0xb0,0x17,0xb8,0x85,0xc5,0xb8,0xa6,0x11,0xf6, + 0x3f,0x3e,0x38,0x19,0x0c,0xf0,0x17,0x0a,0x9c,0xc8,0x13,0xa1,0x83,0x74,0x7f,0x4c,0x4c,0x25,0x24,0xc5, + 0x9b,0x8e,0xd4,0xa2,0xb2,0x1a,0x8a,0x96,0xfa,0x44,0xf4,0x14,0x5a,0x1f,0x22,0x7c,0x29,0x1b,0x60,0x20, + 0x60,0x81,0xd0,0xb8,0x2d,0x51,0xda,0x96,0x24,0xc3,0x33,0xc9,0xf8,0x89,0x2f,0x47,0x0d,0xa4,0x34,0xdf, + 0x4c,0x64,0xa4,0x36,0x06,0x85,0xa7,0x34,0x50,0x11,0x49,0x23,0x9a,0x3e,0xb8,0x0d,0x6a,0xa6,0x0a,0x39, + 0xce,0xa7,0x51,0xbb,0x28,0x4d,0xcd,0xbe,0xad,0x68,0x47,0xab,0x0f,0x55,0x72,0xac,0x7d,0x25,0x3f,0x64, + 0xe7,0xcf,0xaf,0x97,0x62,0x6f,0x7b,0xa2,0x7e,0xaa,0x92,0xdb,0xef,0x8d,0xf8,0x3a,0xd6,0x61,0x4e,0xfc, + 0x68,0xd6,0x66,0x93,0xb1,0xc2,0x4e,0x22,0x5d,0xe4,0xc5,0x64,0xbe,0x9a,0x66,0xf1,0x07,0xc2,0xcf,0xd7, + 0xf6,0x71,0x91,0x5e,0xc7,0xa6,0x0d,0xb9,0x7f,0xe7,0x04,0x46,0x85,0x4c,0xc3,0xc7,0x5d,0x34,0x34,0x49, + 0x69,0x23,0xdd,0x49,0x69,0x30,0x4f,0x09,0xef,0x0d,0x65,0x81,0xbd,0xe5,0xda,0x62,0xb4,0xad,0xcc,0xf9, + 0xd8,0xea,0xa2,0xd7,0x46,0xa2,0x89,0x37,0x95,0xb9,0xaa,0x08,0x0e,0x79,0xeb,0xba,0xae,0xfb,0x40,0xfb, + 0x4a,0xef,0x2c,0x27,0x4b,0xb2,0x80,0xfc,0x4c,0x4b,0xd2,0x20,0x7a,0xba,0xfe,0x2b,0x5f,0xee,0xba,0x2f, + 0x37,0x6a,0x3b,0xe2,0x80,0x8f,0xf3,0x18,0xe2,0x86,0x3a,0x16,0x18,0x6d,0x82,0x7f,0x8a,0xa9,0x30,0x7b, + 0x34,0x6c,0x49,0x9e,0xfd,0x80,0x9c,0xbf,0xe2,0xa2,0x04,0xa5,0xc9,0x27,0x3d,0x30,0x18,0x9a,0x8b,0x12, + 0x9f,0x5f,0xf9,0xae,0x4c,0x02,0xec,0x5d,0x82,0x11,0x74,0x29,0x47,0x30,0x08,0x82,0x7c,0x82,0xe1,0xc1, + 0xe0,0x19,0x2e,0xf6,0x76,0x91,0xfd,0x1b,0x13,0x24,0xc8,0x4d,0xa1,0x36,0x06,0xc1,0x14,0xaa,0x89,0x11, + 0x63,0xf0,0xf5,0xca,0x85,0x44,0x77,0x9f,0xe4,0xd3,0xbd,0x50,0x22,0x56,0x04,0x71,0x8c,0x58,0x1b,0x1c, + 0x98,0x25,0x80,0x8a,0x01,0x21,0x96,0xd2,0xe3,0xc9,0xc9,0xb8,0x57,0xdb,0x84,0x9c,0x1e,0x85,0xd3,0x5c, + 0x6e,0xcf,0xd2,0x16,0x3a,0x13,0x44,0x59,0x46,0x49,0xa2,0x75,0x6d,0x92,0x2c,0x2b,0x41,0xdb,0x60,0x60, + 0x70,0xf4,0x37,0x36,0x60,0xa0,0xc9,0xa3,0xdd,0xfc,0x1a,0xc4,0x1c,0xee,0x55,0x55,0x2d,0x82,0x23,0x32, + 0xa2,0x16,0xa7,0xb5,0x81,0xb4,0xc7,0x4c,0x02,0x1d,0x3c,0x83,0x41,0x46,0x5f,0x11,0xaf,0xd2,0x13,0xb1, + 0xf8,0x73,0x7c,0xe4,0xf3,0xe2,0x4e,0x8e,0x90,0x98,0x59,0xd6,0xde,0x33,0x23,0x98,0x0d,0x57,0x4d,0x3e, + 0x4f,0x6e,0xe1,0xe9,0x19,0xff,0x4c,0x78,0xe3,0xba,0x21,0x00,0x41,0x34,0x59,0xd8,0x66,0xeb,0x95,0x8e, + 0x5f,0x2b,0xa9,0xe4,0x83,0x68,0x70,0xb2,0xf8,0x1e,0x88,0x50,0xc3,0x09,0x7a,0xec,0x9f,0x45,0xc4,0x2f, + 0x95,0xbd,0xf4,0xa1,0x77,0x67,0xf5,0x59,0x5f,0xb3,0x08,0xcb,0xdc,0x14,0xd1,0x88,0x11,0x76,0x9f,0x0b, + 0x56,0xe4,0xea,0x1e,0x9e,0x9e,0xa5,0x35,0xe8,0x36,0x5c,0x7b,0x6a,0xd2,0xec,0x4a,0xd6,0x84,0x51,0x78, + 0x88,0x75,0x76,0x07,0x85,0x0c,0x21,0x3b,0xad,0x36,0x2e,0x1c,0x79,0x3f,0x5f,0x9d,0xe7,0x1c,0x7f,0xb5, + 0x3f,0x83,0xef,0xdc,0xe3,0xd0,0xa0,0xc6,0x23,0x32,0xc3,0xed,0x15,0x2d,0xd6,0x40,0xa8,0xce,0x36,0x09, + 0xed,0xd8,0x24,0xed,0x3d,0xa1,0x45,0x0b,0x3d,0x32,0x08,0xc4,0x20,0xe1,0x46,0xc7,0xf6,0x49,0x13,0xd8, + 0x1c,0x5d,0xab,0xef,0x0b,0x68,0xb3,0xbc,0x2b,0xcb,0x98,0x6b,0xf3,0x0d,0xca,0xb0,0x4e,0x8b,0xfc,0x3a, + 0xef,0x75,0x96,0xe6,0x81,0x3a,0x25,0x8c,0xff,0xaa,0xec,0xf7,0x6d,0xe1,0x2c,0x6d,0xb2,0xe4,0x40,0x4b, + 0x65,0x0f,0x89,0x41,0x16,0x78,0x69,0x55,0x9e,0x25,0xac,0xb8,0xf1,0x48,0x70,0x08,0xe7,0xf1,0xa5,0x5c, + 0xbc,0x8b,0xcd,0x2a,0xf7,0x1a,0xe2,0x89,0xe5,0x78,0xc0,0x0c,0x50,0x14,0x1a,0x03,0x74,0xe3,0xab,0x82, + 0x13,0x53,0xae,0x63,0xb4,0xa1,0x54,0x24,0xca,0x76,0xda,0xa3,0xf1,0x83,0x22,0x90,0x3d,0x22,0x74,0xc0, + 0x80,0xd4,0x1d,0xf6,0x5d,0x30,0xf2,0x28,0x89,0xc8,0xd7,0x39,0x25,0x29,0xe2,0x55,0xd3,0x10,0x71,0x43, + 0x7c,0xea,0x4d,0x4d,0xe1,0xcf,0x0b,0x9d,0xb6,0xab,0x25,0xf4,0x34,0xae,0xc8,0xb6,0x50,0xda,0x49,0xa3, + 0x3e,0x2b,0x93,0x85,0x4c,0xd1,0x97,0xba,0x9c,0x5a,0xa9,0xcb,0x06,0x77,0x9d,0xa4,0x2d,0xa0,0xee,0x4a, + 0x13,0xb7,0xdb,0x30,0xa5,0xba,0xcd,0xcc,0xda,0xcd,0x18,0xb1,0xbc,0x34,0xa1,0xd7,0xb0,0xd0,0x0f,0x94, + 0x22,0x10,0x53,0xc8,0x2f,0xbd,0x63,0x03,0x15,0xf8,0x7b,0x97,0xd7,0x44,0xca,0xbc,0x2f,0xc7,0x9c,0x55, + 0x72,0x83,0xcb,0xf6,0x66,0x64,0x37,0x04,0x3b,0x7b,0xc6,0x1b,0xce,0xcd,0xac,0xe9,0x88,0xc9,0xc9,0xf8, + 0x62,0x98,0x94,0x76,0xa0,0x75,0xbf,0xc3,0xa5,0xbc,0xa9,0xd3,0xba,0xe6,0xec,0xe0,0x44,0xc4,0xc5,0x46, + 0x8e,0xa9,0x3b,0xbb,0x87,0x9e,0x75,0x22,0xf9,0x58,0x9f,0x92,0xd0,0x8b,0x08,0x20,0x7e,0x62,0x65,0x58, + 0x70,0x40,0x14,0x06,0xb5,0xa4,0xd0,0x10,0x68,0xad,0x59,0x5b,0xa8,0x47,0xf7,0x99,0x23,0xd9,0x78,0xe1, + 0x04,0xa4,0xa2,0x9e,0x0d,0xcb,0xdc,0x5a,0x72,0x8b,0xe8,0x96,0x71,0xa1,0x74,0xec,0xf3,0x62,0x63,0x5c, + 0x7d,0x34,0xf2,0x13,0x0f,0x14,0x58,0x14,0x16,0xec,0xed,0xd2,0x9b,0xb7,0xd1,0x2e,0x53,0x85,0xb0,0xd0, + 0xfd,0xd8,0xfe,0x7d,0x5b,0xa6,0x97,0xd7,0x1f,0xc5,0xd7,0x58,0x1c,0xa3,0xbf,0x47,0xcb,0x7f,0xea,0xc3, + 0xba,0xae,0xb4,0x6b,0xe4,0xb6,0x4f,0xb5,0x8f,0x4d,0xda,0x2c,0xa5,0x10,0xf4,0xee,0x5b,0x58,0xbe,0x53, + 0xc5,0xf0,0x7b,0xcb,0x61,0x7b,0xfd,0x70,0xf8,0xd5,0xf0,0xf0,0x0b,0x09,0xd3,0xf2,0xa4,0x52,0x3f,0x56, + 0xea,0x87,0x4a,0xbd,0xac,0xd4,0xef,0x95,0xfa,0xad,0x52,0xdf,0x57,0xea,0xbb,0x4a,0x7d,0x5b,0x71,0x38, + 0x0d,0xbe,0xf7,0x59,0xdf,0xf9,0xaa,0x7e,0xe6,0x34,0xbe,0xdb,0x46,0xa1,0x5e,0x22,0x33,0x53,0x25,0x13, + 0xa4,0xe4,0x7e,0x1f,0x90,0x87,0xe7,0x30,0x1d,0xa4,0xd2,0xff,0xee,0xda,0xce,0xdb,0x10,0x49,0xf6,0x7e, + 0x73,0x5a,0x96,0x9f,0x2b,0x16,0xa9,0x05,0x12,0xd1,0x18,0x8e,0x17,0x0d,0x82,0xb6,0xe8,0xdb,0x82,0x74, + 0xa1,0x40,0x1a,0xe1,0xf5,0xa5,0x5c,0xa2,0x4b,0x26,0x9f,0x5c,0xa6,0x5c,0xb6,0xa3,0xf3,0x6c,0x1c,0x75, + 0xe4,0x40,0xec,0x5c,0x72,0xce,0x46,0xfd,0x8b,0x3b,0x3f,0x91,0xcb,0xde,0xb3,0x69,0xde,0xc0,0x88,0x4e, + 0x4d,0xab,0xf4,0xfc,0x9c,0x9f,0xea,0x65,0x36,0x9f,0x73,0xcd,0xd4,0xf7,0x7f,0x72,0x61,0x3a,0x08,0xca, + 0xab,0x19,0x21,0xf8,0x9a,0x30,0x18,0x31,0x95,0xec,0x92,0xa9,0xd2,0x55,0x53,0xce,0xca,0xc9,0xaa,0xe6, + 0xa7,0xe5,0x3c,0xbd,0x51,0xba,0x43,0x1c,0x78,0x84,0x8e,0x6a,0xd8,0xe9,0x11,0xc9,0x3a,0xaf,0xe9,0xfc, + 0xa6,0xb9,0xab,0x32,0x65,0x48,0x3b,0xfd,0x6b,0xca,0xeb,0x57,0xee,0xb3,0x79,0x31,0x43,0xc7,0x3b,0x71, + 0x3e,0xd3,0xbc,0x46,0xf7,0xa6,0x2a,0x2b,0xe4,0x17,0x11,0x0c,0x8a,0x92,0xa6,0x30,0x07,0x10,0xab,0x8b, + 0x7c,0x3a,0xa5,0xae,0xe1,0x70,0x6c,0xb2,0x6a,0x91,0x17,0x48,0x24,0x88,0xaa,0x1a,0x95,0xd7,0x8b,0x74, + 0xa9,0xf2,0x26,0x5b,0x48,0xa4,0x93,0x79,0x59,0x2e,0x95,0xb9,0x66,0x4a,0x49,0xa3,0x45,0x89,0x50,0x2d, + 0x0a,0xe1,0x25,0xea,0xfc,0x77,0x42,0x51,0x65,0x7d,0x91,0x82,0xe1,0x74,0x2d,0x14,0x25,0xa2,0x47,0xd1, + 0x3a,0x53,0x33,0xcb,0x94,0xb0,0x11,0x6d,0xda,0xeb,0xbc,0x21,0x92,0x36,0x9d,0x96,0xc5,0x1c,0x51,0x55, + 0x7e,0x5b,0xd1,0x16,0x9c,0x2a,0xed,0x5a,0x39,0x55,0xc2,0x16,0x11,0x4c,0xa4,0x8b,0x39,0x01,0x83,0xb2, + 0x63,0x82,0x0f,0x26,0xcf,0xb6,0xbd,0xd8,0x85,0x63,0x83,0xd2,0xdc,0x53,0x26,0x60,0x1e,0x81,0x25,0x38, + 0x56,0xbc,0xba,0xcc,0xeb,0x9c,0x4a,0x22,0x46,0x58,0x9e,0x04,0x17,0x4d,0xb3,0x8c,0x1f,0x3c,0xb8,0xba, + 0xba,0x1a,0x5e,0x7d,0x31,0x2c,0xab,0xf3,0x07,0x87,0x5f,0x7f,0xfd,0xf5,0x83,0xeb,0x79,0x5e,0x7c,0x22, + 0x8a,0x2a,0xef,0x39,0x67,0x83,0xb8,0xe5,0x82,0xf2,0x15,0xa0,0x4c,0xca,0x73,0xb2,0x09,0xd1,0xf3,0x15, + 0x11,0xf6,0x45,0xdf,0xf7,0x3b,0x0d,0x6c,0x72,0xad,0x77,0xc9,0xdf,0x95,0x11,0x6c,0x72,0xcc,0x16,0x55, + 0xf5,0x7e,0x23,0x04,0x32,0x01,0xe2,0xee,0xa1,0x80,0x5d,0x9e,0x27,0xb7,0xf5,0x25,0x11,0xc4,0xdb,0x23, + 0x78,0x78,0x70,0x70,0xf0,0x80,0xf2,0x02,0xe2,0x9b,0x9a,0x8b,0xbe,0x12,0x34,0xc6,0x7f,0x3c,0xc0,0x1d, + 0xa9,0xfc,0xe7,0xcd,0x6b,0x6a,0xb6,0xcc,0x01,0x99,0x17,0xcd,0x62,0xae,0xce,0xca,0xe9,0x8d,0x02,0x36, + 0x54,0x17,0xb4,0x14,0x0a,0x43,0x53,0x88,0x50,0xae,0x64,0xd7,0x36,0x79,0x43,0x7f,0xd3,0xe9,0x14,0xfb, + 0x51,0xa5,0x55,0x93,0x4f,0xf0,0x5e,0xd3,0x9e,0x20,0x20,0x2a,0x71,0x8b,0x27,0xbe,0xc3,0xcf,0xa1,0xba, + 0x78,0xa8,0x2e,0xbe,0x50,0x17,0x5f,0xaa,0x8b,0xaf,0xd4,0xc5,0xdf,0xd5,0xc5,0x79,0x55,0xae,0x96,0xaa, + 0x48,0x2f,0x69,0xed,0x78,0x8c,0x04,0x88,0x97,0x6a,0x4a,0x50,0x39,0x57,0xd3,0x46,0x11,0x1d,0x0b,0x0f, + 0x1b,0xa4,0xb3,0x41,0x6a,0xa6,0x96,0xf9,0x04,0x0e,0x37,0xea,0xa2,0x52,0xf9,0xe2,0x9c,0x3a,0x43,0x83, + 0xa2,0x43,0xac,0x9c,0xab,0x25,0x0c,0x1b,0xd5,0x6a,0xae,0x52,0x75,0x46,0xac,0xe4,0x59,0xa5,0xce,0xa6, + 0x39,0xfd,0x2f,0x15,0x3d,0x4e,0x08,0x3c,0x39,0x0a,0x91,0xe2,0xcb,0xec,0xa7,0x33,0xa2,0x85,0x17,0x2a, + 0x57,0x9f,0xce,0xa6,0x54,0x41,0xf5,0x49,0xfd,0xa6,0xaa,0xa5,0x22,0x60,0xae,0x9a,0x89,0xaa,0x56,0x67, + 0x37,0x44,0xc9,0xd7,0xe9,0x62,0xa9,0x08,0xb6,0x89,0xf0,0xaa,0x97,0x29,0xa1,0x1e,0xda,0x6b,0xc4,0x70, + 0xd6,0xab,0x33,0xfa,0xbf,0xe4,0x7b,0x6d,0xd5,0x4a,0x11,0x72,0x53,0x57,0x67,0x10,0xa2,0x13,0x92,0x4a, + 0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x64,0x3f,0x29,0x46,0x0c,0xd4,0xd2,0x19,0x81,0x9d,0x78,0x83,0xc1, + 0x12,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x41,0x26,0x69,0x71,0x99,0x52,0x4b,0x93,0x2a,0x5f,0x36,0xd8, + 0x14,0xf2,0x40,0x24,0x37,0x0c,0xdd,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65,0xb2,0x34,0x60,0xf3,0x5a, + 0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x50,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xa6,0x04,0x34,0x67,0xd9,0x7c,0x4a, + 0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x51,0xed,0xf3,0xec,0x1c,0xb4,0xc0,0x02,0x9b,0x19,0xa8, + 0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15,0x13,0x0a,0x48,0x73,0x60, + 0x9d,0x3c,0x9d,0x97,0xe7,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b,0x9a,0xd0,0x1b,0xa5,0x31, + 0xa0,0xca,0x44,0xe8,0xa0,0xb0,0xdf,0xcb,0x2b,0x65,0x42,0x67,0x29,0x0e,0x4e,0xf6,0xdb,0xaa,0x04,0x1a, + 0x99,0x55,0xa0,0xfa,0x1a,0x40,0x0b,0x84,0x10,0x0c,0x7a,0x04,0xb0,0x2a,0x2d,0xf2,0x05,0xca,0x4e,0xf2, + 0x6a,0xc2,0xe7,0x43,0xbe,0x5c,0x12,0x80,0xaa,0xc9,0xaa,0xa2,0x1d,0x0e,0xcc,0x05,0xd4,0x57,0x4f,0xa8, + 0x11,0xca,0x22,0x00,0x95,0x28,0x3f,0x34,0xdc,0xa2,0xd9,0x9f,0xa5,0x13,0x00,0x60,0x95,0xe5,0xe7,0x85, + 0x1c,0x82,0xea,0x5c,0x9d,0xcf,0x6f,0x96,0x17,0x04,0x39,0xe9,0x79,0x06,0x40,0xce,0x78,0xf1,0x33,0x48, + 0x14,0x6a,0x02,0xea,0xbc,0xc6,0x2d,0x6b,0xfb,0x52,0x88,0x5b,0xa2,0x3f,0x54,0x21,0x21,0xa4,0x72,0x7e, + 0x73,0x5e,0xca,0x2f,0x7f,0x07,0x52,0x40,0x89,0x2b,0xb5,0xaa,0x39,0xd4,0x06,0xcf,0x0f,0xff,0xe1,0x2f, + 0x1b,0x86,0x19,0x10,0x55,0x97,0x79,0x76,0x25,0x11,0xa2,0xea,0xde,0xbd,0x5c,0x8a,0x4d,0x7e,0xca,0xf7, + 0x87,0xd3,0x58,0x7b,0x39,0xaa,0x15,0x4f,0x8a,0xd8,0x37,0xb2,0xc4,0x83,0x1d,0xce,0xae,0xca,0x8a,0xd1, + 0x5f,0x45,0xbd,0xc8,0x68,0x23,0xa0,0x13,0x73,0xb5,0xaa,0x10,0x3d,0x7b,0x9e,0x77,0x43,0x5b,0xb5,0xa4, + 0x40,0xbd,0xd6,0xbf,0x77,0x84,0xdf,0xb2,0x17,0x29,0xeb,0x03,0x93,0x23,0x94,0x8f,0x8b,0x38,0x6c,0xb4, + 0x21,0x6d,0xe3,0x19,0xd2,0x0e,0x06,0x36,0x5e,0x9a,0x9f,0x6c,0x2f,0x1e,0x84,0x55,0x4c,0xfb,0x22,0x78, + 0x93,0x83,0x88,0x4b,0xe6,0x31,0xe2,0x4b,0x0d,0x5b,0xdd,0x78,0xfb,0xb1,0xd3,0x67,0x3d,0x7f,0xfd,0x9d, + 0x7e,0xfb,0x31,0xcc,0x73,0x84,0xa0,0x6c,0x6c,0x3d,0x47,0x34,0x7b,0xb8,0xb3,0x32,0xee,0x59,0x84,0x4e, + 0x25,0xa6,0xa8,0x2c,0x09,0x27,0xe9,0xb8,0x01,0x7f,0xe2,0x63,0x5d,0x92,0xbf,0x15,0x7b,0xd5,0x27,0x2c, + 0xa2,0xde,0xf2,0x21,0x67,0x3e,0xd0,0x66,0x87,0x72,0x91,0xa3,0xd8,0xec,0xb3,0x31,0x53,0x67,0xbc,0x26, + 0x42,0x08,0xe7,0xe1,0x82,0x10,0x85,0xbb,0x8d,0x8b,0x69,0x7f,0x59,0x2f,0x8f,0xcb,0xba,0x3b,0x3b,0xfb, + 0x86,0x90,0x79,0x77,0x7a,0xd2,0x41,0x45,0xc3,0xff,0x48,0xc7,0x22,0xed,0x86,0xfe,0xc2,0x5e,0x81,0x0d, + 0x2e,0x26,0xe3,0x80,0x4d,0xbd,0x25,0x75,0xe6,0x06,0xee,0x03,0x98,0xd5,0xa7,0x82,0x17,0xb6,0xba,0xdb, + 0xb8,0xbc,0xa4,0xe1,0xd2,0x16,0x42,0x7a,0xe6,0xad,0x05,0x40,0x3c,0x6f,0xb8,0x14,0x87,0xce,0x40,0x59, + 0x81,0x4e,0xed,0x4f,0x32,0x9e,0x01,0x4d,0x8f,0x77,0x5b,0x66,0x18,0x25,0xea,0xe4,0xff,0x6b,0xef,0x4d, + 0xf7,0xdb,0x36,0x96,0x7d,0xd1,0x57,0xa1,0xb0,0x7c,0x6c,0x20,0x84,0x28,0xc9,0x76,0xb2,0x12,0xd0,0x30, + 0xb7,0x87,0x0c,0x4e,0xe2,0x61,0xc7,0x4a,0xb2,0x12,0x89,0xd1,0x86,0x48,0x90,0x82,0x45,0x01,0x5c,0x00, + 0x28,0xd9,0x11,0xf9,0x40,0xf7,0xeb,0x7d,0x84,0xf3,0x64,0xb7,0xfe,0x55,0xdd,0x8d,0xc6,0x40,0xc9,0x4e, + 0xce,0xd9,0xf7,0x7c,0x38,0x2b,0xbf,0x65,0x81,0x3d,0x0f,0xd5,0xd5,0x55,0xd5,0x35,0x54,0x00,0x2b,0x9e, + 0x85,0x9f,0x42,0xae,0x86,0x63,0xcb,0xd5,0xbd,0x6e,0x0d,0x5e,0x5d,0x68,0x43,0xd9,0x89,0x72,0x3b,0xe1, + 0x3a,0x44,0x45,0x6f,0x7c,0x44,0x76,0x59,0x26,0xf0,0x49,0xa6,0xfd,0x8c,0x69,0x05,0x59,0xe3,0x41,0x8c, + 0xfd,0x44,0x60,0x4b,0x2b,0xcf,0x61,0xce,0x98,0x68,0x2d,0x33,0x8f,0xef,0x62,0x3d,0xea,0xef,0xe2,0xce, + 0xfe,0xbf,0x43,0xff,0xd3,0x04,0xfd,0x5f,0x76,0x63,0x8e,0x0b,0x1a,0xc2,0x2c,0xa1,0x46,0xc7,0xfe,0xbc, + 0x6a,0xf8,0x07,0xd3,0xf0,0x0f,0xb4,0x37,0x1f,0xaa,0x8c,0x6f,0x4d,0xc6,0xb7,0x94,0x71,0x9a,0x84,0x7b, + 0x47,0xc7,0x57,0xde,0xa0,0x7f,0xbc,0x7b,0x72,0xe7,0x78,0x3c,0xde,0xf3,0x4f,0x10,0x37,0xe0,0x84,0x78, + 0x8c,0x2b,0xfe,0x98,0x38,0xfe,0x61,0x55,0x9b,0x2e,0x2f,0x55,0x7b,0x49,0x9b,0x78,0x5e,0x65,0x9c,0x99, + 0x8c,0x33,0xca,0x78,0x9f,0x74,0x5a,0xf3,0x72,0xc0,0xba,0xbd,0xc0,0x1d,0xf4,0xbd,0xbd,0x2a,0x1c,0x83, + 0x18,0x5b,0xee,0x0d,0xdd,0xd1,0xce,0xd1,0x1f,0xee,0xf8,0xb3,0x63,0xcf,0xdb,0x9b,0x77,0x28,0xa5,0x89, + 0xbd,0x66,0x5c,0xb9,0x71,0x95,0x8a,0x50,0x26,0x30,0x2f,0xa2,0x78,0x8c,0x38,0x42,0xec,0x56,0x15,0xcc, + 0x67,0x1c,0xe6,0x55,0xe0,0x1f,0x06,0xa2,0x12,0x9e,0xe9,0x68,0xd6,0x7f,0xec,0xee,0xee,0xf9,0x4f,0xe8, + 0xe3,0xb8,0xf8,0x6c,0x27,0xb9,0x80,0xfd,0x74,0x94,0x96,0x77,0xf6,0xfc,0xb7,0x49,0x97,0xd6,0xc3,0x33, + 0x15,0xba,0x9e,0x00,0x25,0x96,0x98,0x83,0x80,0x51,0xc3,0x6f,0x95,0xb6,0xb5,0xc6,0x13,0x55,0x36,0xdd, + 0x5a,0xd6,0x78,0xcf,0x7b,0x92,0x70,0xa4,0x22,0xc7,0x0c,0xc0,0xa9,0x05,0x15,0x78,0x9d,0xb8,0xe2,0x9d, + 0xbe,0xfe,0x58,0x9e,0xd6,0x74,0x70,0xba,0x5e,0x78,0x55,0xbf,0xe0,0xb0,0x59,0x1b,0x4a,0x82,0x48,0x59, + 0x89,0x04,0x4f,0x77,0x00,0xbb,0x12,0x2a,0x91,0xc0,0xf3,0x65,0xf6,0x27,0xf0,0x73,0x01,0x17,0x7a,0xcd, + 0xdd,0xa3,0x01,0x7c,0x9f,0x87,0xdf,0xe7,0xb7,0xf8,0x6f,0x94,0xe6,0x8d,0x2f,0xbe,0x1d,0xb6,0xbf,0x46, + 0x00,0x09,0x78,0x28,0x65,0x09,0xfb,0xf7,0x3a,0x2e,0x5f,0x2f,0xb6,0x1e,0xcb,0x3e,0xc6,0x37,0xa1,0xf2, + 0x78,0x71,0x27,0xe9,0x70,0xab,0x79,0x27,0x39,0x4a,0xc7,0x7d,0x56,0x0b,0xce,0xeb,0xbd,0xe4,0xd8,0xf1, + 0xaf,0x2b,0x28,0x9d,0x1b,0x28,0x9d,0x13,0x94,0xbe,0x69,0xce,0x53,0x59,0x84,0xc7,0x1c,0x0a,0x13,0xcc, + 0x6a,0x40,0xec,0xfa,0x2e,0xff,0x74,0x7c,0xfe,0xa3,0x22,0x3f,0x57,0xe9,0xbb,0x65,0xa6,0xb2,0xac,0x18, + 0xd0,0x56,0xb6,0x48,0x5c,0x1d,0xbf,0x0a,0x23,0xcd,0x99,0xfc,0x53,0xa5,0xda,0x6d,0x72,0x02,0xb7,0xd9, + 0x8c,0x2b,0x6d,0x65,0xab,0x36,0x31,0xb7,0x77,0x09,0x7b,0x14,0x43,0x44,0xe8,0xe7,0x89,0x8a,0x73,0xc9, + 0x9e,0x63,0x1d,0xff,0x05,0xfd,0x16,0x02,0x8b,0x7f,0xfe,0xd8,0xc8,0xfe,0xa6,0xf6,0x9b,0x6e,0x12,0xc7, + 0x7f,0x55,0xaf,0xf1,0xd2,0xfe,0x89,0x02,0xc3,0x77,0x78,0x00,0x30,0xde,0x1a,0x94,0x1b,0x33,0xf0,0xa8, + 0x56,0x33,0x16,0x79,0x60,0x0a,0x5c,0x31,0x90,0x35,0x8a,0xb9,0x18,0x91,0x15,0xa9,0xd3,0x1a,0xd7,0x55, + 0x23,0xf5,0xeb,0x14,0x2f,0x94,0xed,0x8e,0xed,0xd1,0x6d,0xef,0xb7,0x5e,0xca,0x7d,0x65,0xba,0x7d,0x52, + 0x9f,0xeb,0x55,0x3d,0x91,0x3b,0x15,0x19,0xcd,0x4f,0x58,0xe5,0x91,0x6a,0x16,0x6c,0x2a,0x9d,0x6e,0x53, + 0xee,0x1b,0x10,0xb7,0x37,0x66,0x0e,0x20,0x2f,0x72,0xa5,0x04,0x0c,0x47,0xb4,0x53,0x84,0xce,0x0b,0x15, + 0xef,0xe6,0xbf,0x02,0x2d,0x9d,0xba,0x26,0x7a,0xc7,0x9a,0x78,0x14,0xcf,0xf5,0xd7,0x77,0xbc,0x3d,0xff, + 0xa9,0x85,0x9e,0x5a,0x01,0x1e,0x84,0xca,0x7b,0x66,0xdd,0xf5,0xa0,0xed,0x4a,0x96,0x88,0x3d,0xab,0x51, + 0x17,0x50,0x71,0xb5,0x22,0x68,0x70,0x2c,0xb8,0x44,0x4c,0xec,0x24,0xa4,0x4d,0xcd,0x23,0x55,0xe4,0xdb, + 0x46,0x62,0x5c,0x52,0x2b,0x5b,0xca,0xfd,0xca,0xa2,0x75,0x44,0x84,0x56,0x46,0x4e,0x9d,0x51,0x80,0x3d, + 0xf8,0x12,0x32,0x4f,0x25,0xaa,0x4a,0x18,0x0d,0xa0,0xaf,0x45,0x79,0xf2,0x03,0x72,0x60,0x14,0xc4,0xb5, + 0x7b,0xc0,0x1d,0xf9,0xdd,0x8d,0x99,0x18,0x1e,0x18,0x11,0xe1,0x07,0x77,0xe5,0xd5,0xf4,0x1a,0x75,0x04, + 0x0c,0x4b,0x87,0x27,0x1e,0x46,0x1d,0xa6,0x38,0x12,0xe5,0xba,0x23,0x47,0xbf,0x9a,0x97,0x6e,0x46,0xd9, + 0x98,0x26,0x8f,0x32,0x0b,0xed,0x90,0xb1,0x4a,0x6f,0x49,0x62,0xb1,0x9c,0x0f,0x34,0x09,0xa0,0xd1,0x54, + 0xbf,0x9f,0x79,0x55,0x2a,0xa2,0xb0,0x10,0xd3,0x1a,0x21,0x2c,0x33,0xcb,0xf9,0x23,0xad,0x21,0x34,0x81, + 0x86,0x0a,0x1e,0x8f,0x69,0xcc,0x1b,0xb3,0xc6,0xfe,0x8e,0x84,0x4e,0x90,0x5f,0x7a,0x71,0x65,0xc9,0xfd, + 0x99,0xe5,0x5d,0xdb,0x3f,0x13,0xc7,0xc4,0xb4,0xd7,0x67,0xde,0xc8,0xe5,0x96,0x20,0x7d,0x2f,0x46,0xcf, + 0x5a,0x64,0x33,0x92,0xfd,0x33,0x2f,0x68,0xe4,0xb8,0x67,0x90,0x8e,0x2f,0x21,0x8b,0x5d,0x50,0x97,0x33, + 0x2c,0x6a,0xc9,0x8b,0x3a,0x95,0x15,0x9e,0xc0,0xd3,0x0b,0x0f,0x91,0x86,0x12,0xa4,0xae,0xe5,0x13,0xda, + 0x74,0xf9,0xac,0x49,0x22,0x8b,0x3f,0xe7,0x46,0xdd,0x46,0xe1,0x8a,0x18,0xef,0x2a,0x6d,0x79,0x14,0x2e, + 0x44,0x75,0xaf,0xd4,0xc6,0x52,0x2a,0x34,0xbd,0x40,0xa9,0x08,0x7d,0xb1,0xaa,0xfa,0x49,0xc5,0xef,0x2c, + 0xd6,0x99,0x1a,0x6a,0x33,0x09,0x59,0xb7,0x36,0x28,0x40,0x39,0x68,0xc6,0xbe,0xa4,0xa6,0xa2,0x25,0xb7, + 0x64,0x67,0x4e,0x4c,0x44,0x7a,0xbe,0x31,0x21,0xb1,0x63,0x95,0x28,0xbd,0xd7,0x6b,0xad,0xec,0xc7,0x61, + 0xe5,0xad,0xa3,0x29,0x52,0xe6,0x67,0x75,0x1e,0x41,0xea,0xd0,0xde,0xd8,0xe4,0x7d,0xcc,0x01,0x59,0x4d, + 0xcb,0x0b,0x8b,0x2e,0x69,0xc5,0xd8,0x6b,0xc6,0xae,0x30,0x70,0x98,0x78,0x91,0xcb,0x1a,0xc7,0xa9,0x5a, + 0x5b,0x7e,0x72,0x82,0xbe,0x21,0x13,0x07,0xb9,0x5e,0x7d,0x0c,0xa9,0xd6,0x39,0x17,0x6e,0xed,0x95,0x72, + 0x63,0x13,0x6b,0x87,0xdd,0x96,0x4b,0x6c,0xed,0x23,0x63,0xd8,0x65,0xf8,0xe6,0x75,0x9a,0x07,0xaa,0xa3, + 0x56,0x99,0xdc,0x4a,0xfc,0x2b,0xcb,0xe9,0xb5,0x6c,0x7d,0xdd,0x82,0xed,0x5c,0x0d,0xaa,0x9a,0x64,0xee, + 0xe9,0x34,0xa2,0x72,0x70,0xd4,0x18,0xfd,0x5d,0x69,0x03,0x5f,0x85,0x69,0x68,0x2f,0xae,0x54,0x31,0xfa, + 0xa5,0x3f,0xa5,0xb8,0x8f,0xbc,0x44,0x43,0x54,0xd7,0xc6,0x2e,0x0d,0xa6,0x15,0x14,0x06,0x6d,0x70,0xe3, + 0x4e,0xd0,0xf3,0x9e,0xd5,0x99,0x17,0xb5,0xd6,0x20,0xf3,0x64,0xa1,0xab,0x29,0xc4,0x88,0x26,0x84,0xfa, + 0x95,0x85,0x25,0xf0,0x0b,0x5b,0x29,0x99,0x67,0x8a,0x42,0xb5,0x8b,0x6d,0xd9,0xd6,0xb0,0x5f,0x45,0x1e, + 0x02,0xb2,0x0f,0xaf,0x10,0xe0,0x33,0x65,0x87,0xe6,0xaa,0x61,0xfd,0xd3,0xb8,0x48,0xfc,0x6b,0x1d,0x59, + 0xce,0xbd,0x6d,0xff,0x8e,0x6a,0xbb,0xf3,0x47,0x61,0xc2,0x7b,0x10,0xb9,0x1c,0x2d,0x27,0xf3,0xeb,0x41, + 0x8c,0x2e,0xcd,0xc2,0xa1,0x5a,0xed,0xe6,0x48,0x04,0x70,0x31,0xa6,0xa4,0xba,0x0f,0x30,0x40,0xc5,0x14, + 0x61,0x42,0x95,0xe3,0xb3,0x73,0x9d,0x5c,0xed,0x7c,0xea,0x99,0x44,0x8e,0x14,0xec,0x55,0x9b,0x53,0x05, + 0x88,0x57,0x21,0x7e,0xd8,0xff,0x7f,0xd3,0xf6,0x11,0x03,0xc7,0x3b,0xb4,0x6d,0xfa,0x58,0x8d,0xfd,0xa2, + 0x7e,0xa3,0x54,0x73,0x35,0x36,0x07,0xf9,0x78,0x58,0x8a,0xe7,0x2e,0xfa,0xc3,0xd0,0x3b,0x72,0xe7,0x78, + 0xa2,0xbb,0xc4,0xbd,0x18,0x20,0xda,0x11,0x74,0x83,0x6c,0x7c,0x36,0x37,0xaa,0xc8,0xb8,0xa2,0xd7,0x6b, + 0x8d,0xd8,0x3c,0x13,0xae,0x28,0x3c,0x57,0xb7,0xb6,0x09,0x45,0x3b,0x54,0xeb,0xe4,0x8d,0x2c,0x2b,0xda, + 0x7e,0x98,0x04,0xe9,0x4d,0x8a,0xc1,0x44,0x36,0xed,0xee,0x5a,0x15,0xf0,0x4c,0x16,0x1b,0x67,0x29,0x56, + 0x46,0x48,0x9b,0xba,0x71,0xf5,0x4d,0x44,0x87,0x21,0xef,0x3a,0xae,0xbc,0x3b,0x00,0x3a,0xa5,0x08,0xc1, + 0x3f,0xf5,0x0d,0x39,0x47,0xec,0x0c,0xcf,0xd7,0x47,0xb4,0x36,0x7e,0x75,0x44,0x25,0x0d,0x47,0x94,0x63, + 0x92,0x49,0x2f,0xf6,0x09,0x2d,0x55,0xd8,0x5e,0x14,0xf3,0x74,0xb8,0x2a,0xa8,0x7d,0xf3,0x11,0xca,0x64, + 0x80,0xd6,0xf6,0x40,0xcd,0x19,0xe4,0x4b,0x21,0xd1,0xb9,0x08,0xd6,0x13,0x1d,0x95,0x33,0x61,0x9c,0x9e, + 0xe3,0x5f,0xd6,0x79,0x41,0xdc,0xd7,0x96,0xf7,0x4b,0x8f,0xce,0x61,0x52,0xf3,0x9f,0xa9,0x7d,0x5c,0x4d, + 0xbd,0xd1,0x89,0x9b,0xcb,0x7a,0x20,0x32,0x71,0xd2,0xe9,0x3b,0x73,0xdf,0x30,0x7f,0x44,0x95,0x19,0xff, + 0x9e,0x0c,0xb4,0xb9,0xfd,0x33,0x61,0x17,0xa3,0xa1,0x84,0x0d,0xc3,0x85,0xc5,0xa5,0xc5,0xab,0x27,0x01, + 0x80,0xfc,0x7c,0xcd,0xe4,0x8d,0x97,0x74,0xe8,0xba,0xe4,0x1d,0x18,0xb5,0x0a,0x76,0xec,0x2f,0x68,0xb6, + 0x7c,0xa8,0x4a,0x77,0xc1,0xab,0xb8,0x0a,0x17,0xd5,0x92,0xae,0xc2,0x95,0x71,0x16,0x40,0x09,0x2b,0xac, + 0x99,0x10,0xb8,0xd3,0x30,0xaf,0x48,0x89,0xa5,0x65,0x4b,0x2a,0x87,0x08,0x6d,0xcd,0x70,0x46,0x19,0xf6, + 0x57,0xb4,0xb1,0x2b,0xda,0x58,0xe1,0xa4,0xaa,0x8d,0x5d,0x79,0x3a,0xed,0x68,0x35,0x96,0xb6,0x3b,0x06, + 0x20,0x25,0x4c,0xf7,0x9b,0xd8,0x4d,0xe4,0x0a,0x19,0x95,0xee,0x94,0x4b,0x2d,0xbd,0xd1,0x94,0x36,0x70, + 0x69,0x51,0x73,0xda,0x8f,0x6c,0x51,0xdd,0x00,0x13,0x9f,0xa6,0x4b,0x34,0xd0,0xbe,0x3f,0xa5,0xff,0x2f, + 0xc3,0xca,0x55,0x8b,0x7f,0x19,0x42,0x02,0xe0,0xcf,0xe9,0xcf,0x72,0xec,0x9f,0x1a,0xd5,0x6d,0xca,0x3a, + 0x09,0x13,0x64,0x5d,0xd1,0x9f,0xd3,0xb1,0x7f,0x18,0xee,0x14,0xc3,0xd9,0x23,0x74,0x35,0x7d,0x14,0x9e, + 0xd2,0xdd,0xe4,0x5e,0x7a,0x23,0x54,0xef,0xf7,0x67,0xe3,0x20,0x76,0xe9,0x0c,0xa3,0x95,0xdd,0xdd,0xe5, + 0x38,0xf8,0x85,0x32,0xfd,0x13,0x3a,0xd4,0x1f,0xf0,0x17,0xc4,0x99,0x2e,0xc8,0xad,0xf6,0xfb,0xd3,0xb1, + 0x87,0x42,0x73,0xff,0x8a,0x0b,0xd1,0x5f,0x14,0xd2,0xf5,0xb9,0xcf,0xdd,0xdd,0x53,0x29,0x74,0xa9,0x0a, + 0x5d,0x4a,0xa1,0xc3,0x16,0x1d,0x90,0xfa,0x97,0xea,0xde,0xb5,0x44,0x71,0xee,0x5c,0x50,0x48,0xd5,0x73, + 0xad,0xd1,0xb9,0x1a,0xde,0x5c,0x86,0xd7,0xd5,0x28,0x37,0x20,0x4d,0x5b,0x43,0xab,0xc6,0xef,0xc6,0xe2, + 0xec,0x62,0x12,0xfe,0x1c,0xd3,0xfe,0xcc,0xfc,0x25,0x4c,0xe5,0x5d,0x10,0xf4,0x27,0x1c,0xc3,0x74,0x34, + 0x39,0xe2,0x8f,0x71,0x87,0xf3,0x8f,0x2a,0x2e,0xe1,0x8c,0x68,0xe1,0x84,0xa3,0x10,0x1a,0xf4,0x98,0x8d, + 0x35,0x8f,0x70,0xf7,0xee,0x2f,0xa0,0x73,0x22,0x43,0xc1,0x67,0x44,0xe3,0x9e,0x50,0x13,0xfb,0xe8,0x6d, + 0x14,0xd1,0x77,0xe6,0xab,0xf9,0xf3,0xbc,0x16,0x34,0xce,0xd5,0x58,0x4d,0x6e,0x21,0x93,0x43,0x8a,0xf6, + 0x68,0xdb,0x35,0xd1,0x85,0x35,0x51,0x2f,0xa8,0xb7,0x59,0xcd,0x77,0x38,0x7b,0xbc,0x84,0x12,0x3d,0x4d, + 0x91,0x00,0xa2,0x7f,0x30,0xf6,0x24,0x3a,0xa3,0xfc,0x50,0x87,0x7e,0xea,0x9f,0xe2,0xe0,0x4f,0x1f,0x9f, + 0xde,0xbd,0x7b,0xe1,0xee,0xfb,0xb2,0x2c,0x1b,0x77,0xc2,0xe1,0xb2,0x01,0x94,0x01,0x03,0x2d,0x28,0xbc, + 0x8a,0x84,0xaa,0x8b,0x43,0xa9,0x30,0xee,0xe9,0x33,0xfa,0xcb,0x64,0xd7,0x12,0x93,0xad,0xc0,0x12,0x44, + 0x31,0xc0,0x7f,0x84,0xf6,0xa7,0x94,0x37,0xad,0xc2,0x20,0x06,0xb7,0x36,0x1b,0x48,0xfe,0x0e,0x47,0xad, + 0xe1,0xbb,0xbd,0xa3,0x9c,0x3a,0x65,0xfe,0x76,0xcc,0x90,0x15,0x65,0x1d,0x35,0x6c,0xac,0xab,0xea,0x54, + 0xb8,0x10,0x46,0xaf,0x60,0x3c,0x51,0xcb,0x04,0xa3,0xf6,0xf4,0x57,0x17,0x65,0x9d,0xd7,0xc9,0x1e,0x61, + 0x94,0x72,0x9b,0x3f,0xca,0x09,0x38,0x2a,0xec,0xaf,0x76,0xd2,0xcd,0xd9,0x9f,0xaa,0x19,0xc0,0x49,0x83, + 0xf1,0xf4,0x27,0x88,0xd9,0x14,0xcd,0xfd,0x95,0x72,0xf7,0x41,0xb8,0x20,0xaf,0x47,0x1b,0x0a,0xb3,0xf5, + 0x1a,0xd1,0xdd,0x81,0xf4,0xfc,0x5c,0x48,0x7b,0x5f,0x10,0xb2,0xe6,0x5b,0xe4,0xe2,0xb2,0xf1,0xbe,0x81, + 0xca,0xae,0x6b,0x02,0xea,0xd5,0x84,0xeb,0x19,0x90,0x57,0xea,0xaa,0xa7,0xa5,0xeb,0x66,0x60,0x73,0xb1, + 0x24,0xa4,0xc4,0x0e,0xac,0xed,0x59,0xfc,0x2b,0xd6,0xd5,0x34,0x3b,0xf1,0x14,0x41,0x30,0xf3,0x3c,0xe6, + 0xc4,0xcf,0xa2,0x82,0x09,0x71,0x50,0xdd,0x85,0xcb,0x89,0xdc,0xab,0xe9,0x50,0xc7,0x8d,0xb3,0x46,0xa0, + 0xa2,0xa2,0x48,0x53,0x11,0x53,0x7e,0x55,0xa2,0x09,0xc2,0xc1,0x17,0x87,0xde,0x97,0x25,0xe6,0x06,0x2e, + 0x72,0x96,0xe4,0x45,0xc9,0x3d,0x12,0x9a,0xd9,0x1f,0x5e,0x3e,0x9a,0xe9,0xbd,0xba,0xd4,0x0e,0xee,0xce, + 0xd6,0xeb,0x9d,0x13,0xe2,0x17,0x67,0x47,0x97,0x63,0xc5,0x99,0x2e,0x61,0x52,0x2e,0xac,0xec,0x59,0x78, + 0x56,0x7b,0x3f,0x40,0x8d,0xe5,0x7a,0x7d,0x56,0xef,0x98,0xb8,0x18,0x1c,0xa4,0xc4,0xd3,0xab,0x29,0xfb, + 0x7a,0x61,0xbb,0x5a,0x99,0x43,0x9a,0xb7,0xc2,0x8c,0x77,0x9e,0x10,0x2e,0xf6,0xae,0x2f,0x30,0xc8,0xa9, + 0xdc,0x2d,0xd2,0xd9,0xce,0x05,0x36,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x7d,0x6a,0x67,0x93,0x42,0x54,0xec, + 0x70,0x78,0x2f,0x3e,0x18,0x8a,0xc0,0x52,0xbf,0xf5,0xb3,0xd7,0x8e,0x04,0x8b,0xb9,0xf2,0x0f,0xfd,0x73, + 0x08,0xa9,0xdf,0x23,0xd2,0x7c,0x36,0x5d,0x2d,0xe2,0xc2,0x7f,0x46,0xdf,0xa0,0x71,0x5e,0x2b,0xed,0xaf, + 0x2b,0x5a,0x93,0xab,0x47,0xcb,0xa4,0x02,0xe0,0x2b,0x26,0x2b,0xcf,0x8f,0x96,0xc9,0xd1,0xd5,0x18,0xd6, + 0x5e,0x74,0xaf,0xec,0x0f,0x0f,0x1f,0xbd,0xaf,0x8a,0x1c,0x12,0x79,0xf1,0xfe,0xe8,0x70,0xac,0xca,0xd0, + 0x4e,0xe9,0xe2,0xc2,0x5f,0xd8,0x79,0x7c,0x21,0x3f,0x61,0xbd,0x11,0xbc,0xab,0x89,0xd6,0x8c,0x0a,0x25, + 0xf6,0xcc,0xfa,0x7e,0xcb,0xc2,0x56,0x42,0xc5,0x1d,0x4e,0x0a,0xd5,0x6d,0xe9,0xd3,0x25,0xa9,0x7c,0x32, + 0xf1,0xed,0x2d,0x5e,0x62,0x10,0x46,0x04,0xc6,0xd9,0x80,0x2e,0x98,0x73,0x2e,0xd8,0x7f,0x88,0x0b,0x44, + 0x87,0xf2,0x15,0x3d,0xb1,0x0c,0x71,0x38,0x30,0xf9,0x43,0xf6,0xfd,0xc4,0x1b,0xc9,0xd8,0x1b,0x1b,0xe0, + 0x09,0xcd,0x35,0xf5,0x55,0x50,0x74,0xf4,0xb3,0xe4,0xde,0x24,0x9e,0x9a,0xae,0x07,0x25,0x77,0x82,0xe1, + 0x8a,0x9f,0x78,0xcb,0xfa,0x59,0x9a,0xba,0xab,0xa5,0xc3,0x82,0x1b,0x3e,0x3e,0xdd,0x8c,0x8a,0x9c,0x48, + 0xfb,0xe6,0xa0,0x9c,0xf2,0x10,0x91,0x9f,0x0f,0x5f,0x87,0x50,0xe6,0x57,0xcf,0x31,0xcf,0xf4,0x23,0x94, + 0xfb,0xba,0x11,0x85,0x46,0x9e,0x69,0x94,0xe4,0xd0,0x7f,0x2d,0xf6,0x6f,0x67,0x42,0x0c,0xd2,0xf5,0x57, + 0x13,0x94,0x9d,0xf1,0x04,0x65,0x1d,0xce,0x06,0x27,0x22,0xb0,0x3d,0x95,0xfb,0x60,0xde,0xb8,0x87,0xcf, + 0xa0,0xfa,0x4b,0x84,0x8b,0xc6,0x7f,0x1a,0x60,0xaf,0x42,0x9d,0x46,0x30,0x00,0x8a,0x69,0x78,0x35,0xac, + 0xee,0xc5,0xf7,0x04,0x16,0xef,0xbb,0x78,0x97,0xf7,0x16,0xef,0xf2,0x7e,0xec,0x5e,0xf1,0x48,0xae,0xc4, + 0xf1,0x3d,0x0f,0xf5,0xb0,0x6a,0xe4,0x09,0x35,0xf2,0xa4,0x83,0xf3,0x7d,0x52,0x71,0xbe,0x4f,0x98,0xf3, + 0xbd,0x12,0x48,0x7a,0x1b,0x5e,0xb5,0x70,0x2b,0x9a,0x7f,0x3b,0x60,0x1d,0xe1,0xca,0xe4,0xe1,0x4e,0x78, + 0x30,0xbc,0xf3,0xe8,0x2d,0xb1,0x88,0xc6,0x5e,0xe5,0x0e,0xdc,0x3f,0x23,0xe1,0xe8,0xce,0x58,0xd3,0xde, + 0x4f,0x63,0x8c,0xef,0x8a,0x5a,0x55,0xa1,0x6e,0xe1,0xdb,0x95,0xef,0x2d,0xb0,0x7c,0xfb,0xfe,0xbe,0xba, + 0xb0,0x88,0xff,0x81,0x4b,0xe0,0xbc,0xb2,0x16,0x93,0xfd,0x43,0x58,0x19,0xcc,0x89,0xb7,0xe2,0x35,0x48, + 0x7f,0x53,0xce,0xbd,0x56,0x07,0x2d,0x80,0xda,0x87,0x9c,0xbf,0xe0,0x68,0x9e,0xf8,0x1f,0x12,0xff,0x30, + 0xf1,0xcf,0x13,0xff,0xeb,0xc4,0x7f,0x9e,0x8e,0xb4,0x34,0xff,0x5d,0xe9,0x6b,0xc1,0x1a,0xbe,0x05,0x9e, + 0x1a,0xcf,0x7f,0x3b,0x12,0xd7,0x4b,0xac,0x2c,0xce,0xb2,0xab,0xd1,0xeb,0x52,0xa2,0x9b,0xc1,0x6d,0xe6, + 0x26,0xb8,0xde,0x8c,0xb5,0x63,0xe5,0x8b,0x04,0x5e,0xcc,0x5f,0xa6,0x44,0x0b,0xea,0x47,0x8e,0x76,0x78, + 0x11,0x79,0x1f,0xa7,0xd6,0x27,0x67,0x51,0x3a,0x8f,0x1d,0xdb,0x3c,0x55,0x34,0xf1,0xab,0xca,0x2c,0xa5, + 0x57,0xc2,0xb5,0x21,0xab,0xfa,0x5e,0xaa,0xa8,0x88,0x3f,0x61,0x0c,0x4a,0xdf,0x4c,0xbb,0x4e,0xff,0x25, + 0x81,0x53,0x35,0xec,0x4e,0x3c,0x6d,0x3c,0x88,0x42,0x88,0xa4,0x5f,0xe6,0x4d,0x58,0x47,0xe1,0x49,0xee, + 0xde,0xdd,0xe1,0xbf,0xc4,0x88,0x29,0x35,0xcb,0xd1,0xf7,0x70,0x74,0x64,0x2e,0xf3,0xda,0x08,0x7f,0xb1, + 0x58,0x0a,0x31,0xea,0x9a,0x2a,0x51,0xd2,0xc6,0x0b,0x9e,0x97,0xf2,0x6d,0x7b,0x7b,0x32,0xad,0x12,0xbe, + 0x40,0xe0,0x35,0x6d,0x7f,0xa2,0x95,0x3e,0xbf,0x29,0x21,0x03,0x73,0xb4,0xe6,0x88,0x19,0x1d,0xdd,0xbb, + 0x89,0x2b,0xb1,0xe3,0x3c,0x4f,0x79,0xf2,0x7a,0xa9,0x23,0xc7,0x86,0x65,0x15,0x45,0xd6,0xb7,0xbe,0xd9, + 0xaf,0x23,0xab,0x16,0xb7,0xd7,0x5d,0x2f,0xf7,0x4b,0x1a,0xd6,0xaf,0xe9,0xb6,0x42,0x98,0x9b,0x48,0x65, + 0x09,0x45,0xc2,0x4b,0xff,0x2b,0x9e,0xc5,0x8d,0x25,0xf9,0xe5,0x83,0x9a,0x45,0xc4,0x1d,0x1e,0xa9,0x6c, + 0x12,0xf0,0x10,0xde,0x84,0x9b,0xeb,0xd5,0x7a,0xab,0xe6,0xa0,0xed,0xf5,0xbd,0xf1,0xae,0x5b,0x6b,0x39, + 0xd4,0x6f,0x96,0x66,0x45,0x45,0x9b,0xfa,0xf6,0xf5,0x1d,0x26,0xcd,0x18,0x80,0x95,0x6a,0xc4,0x0e,0x54, + 0xcb,0xd9,0x89,0xe5,0x46,0x56,0x59,0xab,0x57,0x8c,0x4a,0x31,0x9f,0xde,0x1a,0x3e,0xf0,0x47,0x0c,0x10, + 0x00,0x1f,0xa8,0x92,0xfc,0x38,0x4e,0x34,0xce,0x2f,0xf8,0x71,0xf7,0x2e,0xe5,0xab,0x0c,0x60,0x7a,0x0d, + 0xb1,0x6a,0x17,0xd8,0x53,0xe3,0xcf,0x04,0xaf,0x12,0xd8,0xf3,0x97,0xc4,0xc7,0xc9,0x0a,0x44,0x2d,0xb6, + 0xb9,0x3e,0xca,0xe2,0x58,0x37,0x86,0x58,0x80,0xbf,0xf2,0xd3,0xa8,0x52,0x2d,0x11,0x17,0x2a,0x96,0x40, + 0x9d,0x03,0xd4,0x9f,0xd0,0xca,0xe4,0xc9,0x1c,0x9e,0x60,0x9f,0x27,0x05,0x94,0x23,0x43,0x27,0xa5,0x7d, + 0x50,0x3a,0x77,0xfc,0xa6,0x3a,0x95,0x0c,0x84,0x8b,0x6f,0x24,0xc1,0xf9,0x43,0x32,0x72,0xd3,0xea,0xd8, + 0xe3,0x8a,0xbb,0x43,0xdd,0xda,0xa7,0xa1,0x51,0x29,0xcc,0x36,0x9e,0xd7,0x6c,0x29,0xcc,0x47,0x59,0x20, + 0x3d,0x77,0xea,0x17,0xb4,0x66,0x38,0xcc,0x1b,0x2b,0xe9,0xde,0x3a,0xe1,0xd6,0x40,0xf3,0xd1,0x6d,0x43, + 0xed,0x5a,0x20,0xda,0xcb,0xd7,0xb7,0x54,0x53,0x13,0xe9,0x9c,0x66,0x57,0x93,0x6a,0xe6,0x50,0xad,0x48, + 0x3b,0x36,0x57,0x31,0x04,0x7c,0x1a,0x6f,0x1f,0x1f,0x43,0xcd,0x77,0x04,0x35,0x6c,0x18,0xa6,0xac,0xbb, + 0x20,0x68,0x8e,0xf2,0xe0,0x69,0x96,0xc1,0x19,0xae,0x3f,0x29,0x0a,0xf3,0x0d,0xe0,0xd2,0xc5,0x80,0x48, + 0xf4,0xb7,0xf5,0x3a,0xab,0x52,0xac,0xb7,0x55,0xbb,0x8c,0x7e,0x57,0xb5,0x4b,0x35,0xd2,0x5a,0x0f,0xb7, + 0x76,0xd9,0x8e,0x74,0x19,0x6e,0x47,0xd2,0xd6,0xb2,0x8d,0x0e,0xa7,0xab,0x9c,0xdf,0x05,0x83,0x23,0xb1, + 0x6b,0xf3,0x55,0xba,0x28,0x76,0x8c,0x37,0xfe,0x9f,0x7a,0x81,0x6a,0x8f,0xb5,0x62,0x2d,0xf7,0x5d,0x52, + 0x33,0xa1,0x6b,0xda,0x82,0xb5,0x8c,0xc7,0xdb,0x36,0x61,0xca,0x73,0x16,0x0b,0x56,0xe5,0x95,0xbe,0x3b, + 0xb8,0x1f,0xa3,0xf0,0xdf,0x20,0x21,0x24,0xb0,0xb5,0x63,0xb6,0x2a,0x13,0x31,0xec,0x0d,0xd4,0x0e,0x54, + 0xfc,0x56,0xbb,0x0d,0x11,0xfc,0x87,0x9a,0x23,0x1c,0x7a,0x95,0xfb,0x4a,0xeb,0xd1,0xcc,0xd0,0xdd,0xb6, + 0xed,0x68,0x25,0x10,0x50,0xf6,0x63,0x4f,0x4b,0x78,0xe6,0x61,0x6f,0x03,0x55,0x96,0xf6,0xb2,0xca,0x14, + 0x1a,0xad,0x9d,0xce,0xf9,0x19,0x28,0x2a,0xd3,0x11,0x60,0x9d,0x93,0x93,0xaa,0xbb,0x5d,0xa7,0x6f,0xdc, + 0xca,0xf5,0x9d,0x5d,0x67,0x18,0xb1,0x18,0x4e,0x94,0x6c,0xf9,0x7b,0x14,0x59,0x01,0x4e,0x8b,0x3e,0x2e, + 0x08,0x7c,0x3a,0x41,0xd1,0x67,0x59,0x6e,0x90,0xbb,0x91,0xc8,0x3f,0xf0,0x00,0xad,0xde,0x3e,0x24,0xc5, + 0x18,0x14,0x15,0xde,0x88,0x53,0xb8,0x0e,0xfe,0xf2,0xbf,0x12,0x36,0x23,0x74,0xe5,0x01,0x11,0xf6,0x95, + 0x03,0xe5,0x68,0x86,0x96,0xb6,0x1a,0x62,0xf8,0x8b,0xb6,0x2c,0x5a,0xd5,0x8c,0xdd,0x17,0x58,0x84,0x95, + 0x90,0xa6,0xb2,0x8a,0x55,0xd8,0x79,0x3c,0xa7,0x36,0x92,0xb6,0x21,0x7c,0x07,0xb8,0x45,0x90,0x27,0xa0, + 0x8b,0xaf,0x8b,0xa8,0x86,0x75,0x3c,0x9f,0x08,0x93,0x85,0xc2,0x51,0xee,0x59,0x18,0xf9,0x17,0xe1,0xc2, + 0xbf,0xc0,0x14,0x08,0xa3,0x9d,0xe1,0xef,0x7a,0x7d,0x81,0xb5,0xe0,0x9f,0x42,0xdf,0xed,0xfc,0xc6,0xd2, + 0x04,0x77,0x67,0xd1,0xe5,0xf3,0xb5,0x2b,0x55,0xbb,0xf4,0xac,0x58,0x70,0x01,0xac,0x59,0xb8,0x68,0x02, + 0x89,0x18,0x8c,0x4c,0x78,0xee,0x4e,0xb6,0x2a,0x77,0x13,0xd6,0xdc,0x4f,0xea,0xce,0x1b,0x14,0x14,0x00, + 0x6f,0x7e,0xef,0xce,0x7c,0x27,0x9a,0x11,0x54,0xff,0x28,0xea,0x15,0xb6,0xa9,0xa8,0x55,0x12,0xf1,0xd2, + 0xeb,0x7e,0x2c,0x37,0x9e,0xaf,0xc1,0x07,0x9d,0x25,0xe9,0x6e,0x26,0xa6,0x00,0x22,0xf0,0xf8,0xcd,0xad, + 0x84,0x55,0x2b,0x11,0x98,0xfa,0x4b,0xdb,0x6c,0x0f,0xfe,0x81,0x87,0xdf,0x43,0x1a,0xc3,0xdd,0x7f,0x2d, + 0x1a,0x23,0x4b,0xcf,0xe7,0x34,0xc1,0x58,0x98,0x3d,0x0c,0xd2,0x54,0xfa,0x0c,0x1a,0x61,0x84,0x16,0x9b, + 0x43,0xa5,0x2d,0x9b,0x86,0xf1,0xa6,0x22,0x9b,0x33,0x61,0x5a,0xfc,0x0b,0x42,0x9f,0xff,0x4e,0xb0,0x28, + 0x80,0x47,0x85,0x37,0xf8,0x41,0xdf,0x42,0x30,0xc0,0xb0,0xde,0x50,0x4c,0xfa,0x7a,0xff,0x66,0x2e,0x56, + 0xfc,0xb9,0xff,0x40,0x78,0xa5,0x52,0xa8,0x08,0xfe,0x24,0x8a,0xda,0xfc,0xfa,0x16,0xca,0xc1,0xc1,0xb5, + 0x20,0x99,0x7f,0x27,0x5d,0x88,0xa5,0x61,0xd9,0xce,0xf8,0xc1,0x36,0x12,0x91,0xad,0x93,0x40,0xb9,0xcb, + 0x28,0x45,0x10,0xdc,0x6e,0x77,0x48,0x5c,0x69,0x99,0xc7,0x97,0xc6,0x71,0xa1,0x18,0x89,0x6a,0xe1,0x73, + 0xd2,0x85,0xb6,0xd8,0xa3,0x6a,0x56,0x2f,0x09,0x3e,0x3b,0xaa,0x4e,0x4d,0x41,0x6c,0x51,0xf1,0xc8,0x70, + 0xe5,0x85,0x16,0x3d,0x4e,0xc2,0xe4,0xa8,0x18,0x0f,0x27,0x12,0x3f,0x1a,0xa3,0xd8,0x09,0x27,0x22,0x7c, + 0x07,0x67,0xa0,0x4e,0xf2,0xa4,0x7e,0x92,0x09,0x79,0x5c,0xe2,0x45,0xc4,0x01,0x6c,0x67,0xc6,0x5a,0x34, + 0x3d,0xe2,0x72,0xe3,0x70,0xe2,0x53,0x0d,0x75,0x9c,0x27,0xdd,0xc7,0x39,0xf2,0x20,0xf7,0xb0,0xbc,0x89, + 0xaf,0x30,0xe0,0x05,0xfe,0x99,0xd1,0x50,0x67,0x95,0x04,0x6c,0xa6,0x87,0x3a,0x0d,0xf3,0xa3,0xd9,0x78, + 0x38,0x6d,0x9d,0x83,0xc8,0x57,0x69,0x44,0xb3,0x86,0x53,0x26,0xf7,0xe7,0x71,0xf9,0x34,0x5b,0xb1,0x98, + 0xed,0xd9,0x22,0x21,0x00,0xfb,0x89,0xd6,0x1a,0x7e,0xd8,0x8f,0xa6,0x3c,0xc4,0xd1,0x4a,0x46,0x3d,0xf5, + 0x82,0x85,0xfe,0xda,0x28,0x0b,0xdc,0x65,0x19,0xb2,0x4e,0x25,0xe4,0x90,0x2b,0x65,0xba,0x24,0xbc,0xd3, + 0x34,0x5c,0x98,0x48,0x05,0xba,0x44,0x46,0xb7,0xbf,0xed,0x9d,0xa3,0x65,0x7f,0xdd,0xed,0x69,0xc0,0xf4, + 0x05,0x2d,0x0e,0x96,0x83,0x59,0x8e,0x3a,0x4c,0xa6,0xa6,0xa9,0xa6,0x5b,0x2c,0x9a,0x6d,0x40,0xf1,0x4b, + 0x7d,0xf7,0x28,0x90,0x37,0xfe,0xf9,0xd9,0xc0,0xcb,0xb9,0x44,0xc4,0xe7,0x5d,0x56,0xb6,0x1c,0x6a,0xbe, + 0x58,0x59,0x32,0x9d,0x45,0xc5,0x4b,0x4a,0x77,0x63,0x65,0xa0,0xef,0x97,0x42,0x2e,0x6b,0x15,0xc3,0xef, + 0x98,0x4d,0xd0,0xbf,0xfe,0xac,0xfd,0xfa,0xb7,0x76,0xf8,0x0f,0xe7,0x1d,0x0b,0x42,0x95,0x86,0xc1,0x83, + 0x6e,0xfe,0x20,0x9b,0xcd,0x8a,0xb8,0xfc,0x2e,0x4e,0xe6,0x67,0xa5,0x55,0xab,0xa9,0xb4,0x28,0xfb,0xc7, + 0x6b,0x5c,0xb9,0x10,0xc3,0x48,0x60,0x5b,0xc9,0xb4,0xd3,0xf0,0x10,0xc4,0x1b,0x9c,0x9f,0x0d,0x8c,0xde, + 0x4f,0x98,0x0f,0x2c,0x05,0x29,0x95,0x52,0x01,0xc6,0x73,0x45,0x4c,0x70,0xd0,0xe9,0x36,0x97,0xf3,0x4d, + 0x02,0x4f,0xa0,0xbc,0x5c,0x55,0xc4,0xc1,0x1e,0x44,0x3e,0xd7,0x44,0x1f,0xef,0xec,0x99,0x6e,0xee,0xa8, + 0xc0,0x9d,0x12,0x35,0x48,0xc7,0xeb,0xf2,0xd8,0x8b,0xae,0x00,0x46,0xab,0x61,0xd6,0x79,0xd0,0x6d,0x33, + 0x9c,0x9c,0xcb,0xf0,0xd9,0x4c,0x1d,0x8c,0x93,0x72,0xd1,0x16,0x5c,0xab,0xc5,0x6f,0xf0,0xe5,0xb8,0xd4, + 0xdf,0x25,0x46,0x24,0x58,0xdd,0xea,0xaa,0x78,0x1d,0xc9,0xab,0xc4,0xa1,0x5e,0xb9,0x09,0x1e,0xcc,0x58, + 0x6a,0xe3,0xd1,0x5e,0x5b,0x37,0x3d,0x03,0x06,0x6e,0xc6,0xae,0xd4,0xce,0xdd,0x39,0x2d,0x45,0x17,0xca, + 0xf3,0x3f,0xa8,0x0d,0x48,0x3b,0xa9,0x66,0xe3,0x14,0xa3,0xa6,0x1c,0x91,0x6a,0xce,0xee,0x99,0x28,0xa2, + 0xda,0xb6,0x74,0x54,0xb4,0xa6,0x71,0xa5,0xe1,0x48,0x4d,0x26,0x64,0xb1,0x98,0xd9,0xd9,0x0d,0xac,0xc4, + 0xdf,0xf0,0x83,0xfd,0x2c,0x99,0x0f,0xac,0xc8,0xb8,0xe1,0xef,0xb9,0x5f,0x65,0xd4,0x62,0xf2,0x86,0x45, + 0xd2,0x99,0x05,0xa1,0x5a,0xf8,0xad,0x5d,0xad,0x11,0x93,0x37,0xfc,0x29,0xae,0x55,0xac,0x07,0xf1,0x6d, + 0xc5,0x48,0x79,0x5e,0x51,0x6c,0xd8,0xa9,0x02,0xa6,0x0c,0xb5,0xbd,0x03,0xc1,0x57,0x97,0xbc,0x29,0x54, + 0x0b,0x15,0x7d,0xbd,0x97,0xfc,0x43,0x59,0x1f,0xdf,0x66,0x89,0xc0,0xd6,0xd4,0x0a,0x1b,0xef,0x3a,0x30, + 0xd5,0x1e,0x71,0x75,0x76,0x60,0x5e,0x59,0xfc,0x1a,0x65,0x3f,0x48,0xb6,0xeb,0x93,0x80,0x2f,0xe4,0xad, + 0x45,0xb5,0x91,0x84,0xb4,0xb9,0xd7,0xae,0xad,0x8e,0x44,0x69,0x07,0x6c,0xda,0xf8,0x97,0x30,0xac,0x34, + 0x2e,0x14,0x0d,0xd5,0x45,0xcc,0xb0,0x57,0xcf,0xb3,0x8c,0xd8,0x7f,0x48,0xd8,0x6a,0xd2,0x72,0x5d,0xa2, + 0x11,0x26,0x94,0x0a,0x9f,0x26,0xc1,0xbc,0x9e,0x2d,0xae,0xe8,0xba,0x23,0x65,0xb5,0x15,0xe5,0xd9,0x7b, + 0x8f,0xed,0x1b,0x5c,0x2e,0x6f,0xe6,0xc9,0x1a,0x69,0x61,0x9a,0xb3,0xef,0x97,0xb8,0x1e,0x06,0xbb,0x32, + 0x71,0xd7,0x1e,0x06,0x6b,0x1c,0xa4,0xf2,0xe4,0x54,0x39,0x1d,0x71,0xc5,0x74,0x63,0x6e,0xf4,0x87,0x7c, + 0x44,0xf8,0xf5,0x95,0xc5,0x5a,0xe5,0x14,0x26,0x6e,0x7b,0xe0,0x8e,0xeb,0x1e,0xb8,0xb5,0x43,0x61,0xa8, + 0x41,0xd1,0x52,0xfc,0x0a,0x55,0x2a,0xed,0xfc,0x1e,0xfa,0xfc,0x6f,0x2a,0x8f,0x04,0xae,0x35,0xa6,0xaf, + 0xa1,0x14,0x22,0x61,0xb0,0xef,0xde,0xfd,0x3e,0xc5,0xff,0x07,0x70,0xa3,0x05,0xba,0x0d,0xaa,0xcc,0x6f, + 0x60,0x97,0xb1,0x2f,0x07,0xf3,0xfb,0xc4,0xff,0x16,0xca,0x94,0xd7,0xc7,0xd7,0xae,0x3b,0x0a,0x06,0xeb, + 0xe3,0xd4,0xeb,0x8f,0xbc,0xe3,0xcd,0xf1,0x66,0x6f,0xee,0xff,0x0b,0xda,0xef,0xbb,0x83,0xcf,0xfa,0xa3, + 0x3f,0xee,0x5c,0x6f,0x5c,0x6f,0x7d,0x74,0x3c,0x3e,0xde,0x3b,0x3e,0x1e,0x53,0xde,0xef,0xdd,0x2a,0xec, + 0x7c,0x85,0x68,0xed,0xed,0x7f,0x25,0xbe,0x73,0x7c,0x7c,0xe7,0xae,0xc3,0xe6,0xcb,0x50,0x34,0x6f,0xe7, + 0xd8,0xab,0x2b,0xfe,0x52,0xdc,0xb2,0xef,0xa8,0xc1,0xc8,0x68,0x9c,0x7e,0xea,0x3b,0x73,0x48,0x02,0xfd, + 0xdf,0x60,0xe6,0xc7,0xe2,0x7d,0xf8,0x34,0x0d,0x8e,0x1c,0x4b,0xee,0xef,0x8c,0x7d,0x83,0xb2,0x1b,0x66, + 0x1e,0xec,0x5c,0x6b,0x00,0x2f,0x10,0x0a,0x45,0x26,0x22,0xaf,0x11,0x83,0xdb,0xa1,0x08,0xb6,0xac,0xa6, + 0xc2,0xef,0xdf,0xbe,0x7e,0x45,0x09,0x00,0x6c,0xc4,0x70,0x4c,0xb5,0x1b,0xf3,0x30,0xb7,0x2a,0xc2,0x51, + 0x2e,0x44,0x29,0x50,0x8a,0x41,0xc2,0xd3,0x84,0x09,0x8e,0x30,0xc7,0xf6,0xc7,0x29,0xdc,0xb3,0x76,0x70, + 0x9f,0x8e,0x63,0xa9,0xf6,0x57,0x5d,0xe2,0xb1,0xac,0x1f,0xda,0xf3,0x09,0x9c,0x7e,0xad,0x44,0xdf,0xf1, + 0x61,0xa5,0x59,0xeb,0x4b,0xd5,0x9a,0x98,0xf2,0x76,0xa6,0x54,0x28,0x89,0x2e,0xfe,0xcf,0xee,0x65,0xe3, + 0x27,0x92,0x4f,0x5f,0x36,0x46,0xff,0x8d,0x65,0xe3,0xa6,0x9a,0xcb,0xf6,0x3e,0xc1,0xca,0xd5,0x97,0x4e, + 0x2a,0x5b,0x4b,0xc7,0x09,0x7f,0x75,0xe9,0xb8,0xdb,0xda,0xd2,0x71,0x8a,0xb5,0x74,0xfc,0x5b,0x2f,0x9d, + 0xdd,0x97,0xa9,0x85,0xf2,0xae,0x54,0xa8,0x72,0xfb,0xb0,0x3a,0x90,0xc5,0x8b,0x33,0x7e,0x6c,0x82,0xe5, + 0x1f,0x5b,0x81,0xc2,0x9c,0x32,0x5b,0x28,0xab,0x46,0x31,0xdd,0x53,0xd6,0x98,0x62,0x61,0x98,0x14,0x8c, + 0x99,0xf1,0xf4,0x44,0x53,0xb1,0xec,0x45,0x6b,0xa6,0x8f,0x62,0x20,0x79,0x75,0x0a,0xb7,0x43,0x65,0x26, + 0x36,0xd3,0xca,0xc2,0x11,0xe6,0x9f,0x25,0x4c,0x3b,0xb5,0x98,0x73,0xc9,0x26,0x8e,0x30,0x0f,0x64,0x43, + 0x47,0x31,0x7d,0xcc,0x55,0x4b,0x38,0x5c,0x32,0xc2,0x4e,0x13,0x54,0x19,0x72,0x65,0x6c,0xc8,0x16,0x93, + 0x9d,0x86,0x95,0xe8,0xb6,0x6e,0xd9,0xc8,0xb6,0xa8,0xca,0x10,0x55,0x5b,0x52,0xb6,0x2c,0x52,0x95,0x8d, + 0x2b,0x9b,0x58,0x76,0x58,0xb8,0x62,0xac,0xda,0xfe,0x55,0xfa,0xa1,0xc5,0x62,0xbb,0x5a,0x65,0x83,0x89, + 0xb7,0x0c,0x6d,0x3c,0xc9,0xcb,0xd4,0x34,0xc7,0x94,0x65,0x13,0xf3,0x54,0xb5,0x78,0x62,0x48,0xa1,0x4d, + 0x2d,0x2b,0x2b,0xd0,0xc6,0x12,0xb1,0x65,0x2e,0x2d,0x14,0xaf,0x35,0xd4,0x00,0xb3,0x70,0xef,0x8f,0xe3, + 0xe2,0x33,0xf7,0x88,0xfe,0x75,0xee,0x3d,0x7a,0x7c,0xbc,0x17,0x8e,0xfb,0x1e,0xe1,0x1a,0x24,0x86,0x1e, + 0xfe,0x1d,0x05,0x0e,0x65,0x3b,0xe3,0xcf,0x08,0xed,0xac,0xef,0xd1,0xe7,0x3d,0xfa,0xbc,0xd7,0x5f,0xab, + 0x3a,0xe1,0xa3,0xc7,0xff,0x45,0x55,0x3c,0x6f,0xb4,0xe7,0x27,0x59,0xe8,0x1c,0x45,0xbb,0x7f,0x3e,0xd9, + 0xfd,0xfd,0x64,0x7c,0x74,0x7c,0x7c,0x75,0x7c,0xbc,0x7b,0x7c,0x3c,0x18,0x7f,0xe6,0xf8,0x19,0x65,0x01, + 0x87,0x39,0xfd,0x24,0xeb,0x13,0xa6,0x0b,0xbc,0x91,0x7c,0x7a,0x8e,0x1f,0x65,0xa1,0x85,0xec,0x9c,0x3f, + 0x1e,0x39,0xfd,0x2c,0x23,0x0e,0x4d,0x0f,0xee,0x78,0x6f,0xe4,0x3d,0xde,0xa3,0x7d,0x69,0x14,0x3b,0x3e, + 0xde,0x43,0xc9,0xbe,0x73,0xf4,0xc7,0xe3,0xf1,0x67,0x8f,0x69,0x3e,0x2b,0x54,0x79,0xb4,0xf3,0xfc,0xf5, + 0xb3,0xc3,0xdf,0xde,0x7c,0xdd,0x43,0x7a,0xff,0xf1,0x5e,0xe2,0x2f,0x24,0x1d,0x16,0x3c,0x33,0xf9,0x3c, + 0x3e,0xda,0xf3,0x97,0x19,0xde,0x8e,0x9d,0xf7,0x8e,0xc1,0xc2,0x7b,0xef,0xdd,0x01,0x4d,0x64,0xee,0xd7, + 0x8f,0x3c,0x15,0x74,0xc0,0xdc,0x97,0xea,0xe9,0xe5,0x2c,0xf3,0x2f,0x33,0x62,0xa5,0xfd,0x79,0xe6,0x7f, + 0xc8,0x08,0x82,0xfc,0x93,0xcc,0xbf,0xca,0xfc,0xc3,0xcc,0x3f,0xcf,0xfc,0xf7,0x99,0xff,0x2c,0xf3,0x9f, + 0x30,0x08,0x2a,0xfb,0x5d,0x65,0x18,0xad,0x5f,0x3d,0xf8,0x12,0x7c,0x9b,0xe1,0xe5,0xf8,0x0e,0xfd,0xeb, + 0xdc,0x5d,0x94,0x43,0x27,0x70,0x1e,0xd1,0xa1,0xbc,0x3b,0xe7,0xcf,0xc7,0xf8,0x04,0x7c,0xd2,0x8f,0x7b, + 0xce,0x3d,0xfa,0x11,0x5d,0x2c,0x91,0x71,0x17,0x19,0xff,0x38,0xd8,0xc7,0xf7,0x71,0xca,0x3f,0xbe,0xe2, + 0xef,0xd2,0xd9,0xf8,0xaf,0x69,0x6e,0x77,0x69,0x91,0x89,0x01,0x9e,0x97,0x6b,0x54,0x5f,0x53,0x35,0x6f, + 0x48,0x13,0xfa,0xba,0x33,0x6b,0x4d,0x2d,0xad,0xff,0xf1,0x15,0x97,0x78,0xc3,0x03,0x86,0xe6,0x43,0x7d, + 0x9c,0xef,0xb2,0x6e,0xd2,0x82,0xb0,0xcc,0x9b,0x4c,0x7c,0x28,0x1c,0xb3,0x9c,0xa5,0x84,0xe7,0x22,0xff, + 0x39,0xd6,0xf7,0x3f,0xd6,0x7f,0x5c,0xee,0x66,0x69,0xb0,0xe7,0xbf,0xc0,0xcf,0xcb,0xdd,0x35,0x92,0xe8, + 0xe7,0x8f,0xf4,0xd3,0x1d,0x7c,0x46,0x17,0x6a,0xd1,0xa7,0xd1,0x24,0xe9,0x3a,0x9b,0xf1,0xf7,0xe0,0x33, + 0x6f,0xcf,0xff,0x86,0x72,0x7d,0x82,0x2b,0x9f,0xae,0xdb,0x31,0x41,0x19,0x95,0xb0,0x7f,0x7a,0xa3,0x3b, + 0x7b,0xfe,0x2b,0x86,0x0a,0x77,0x7d,0xec,0xdd,0xa1,0x41,0xbf,0xcc,0xd8,0x3c,0xec,0x33,0xfa,0xe1,0xff, + 0x84,0x9c,0x00,0x3d,0xb3,0xe8,0x79,0xcf,0xff,0x95,0x12,0x8e,0x07,0x47,0x7f,0x0c,0xc6,0x7d,0x2a,0xfa, + 0x34,0xeb,0x34,0xde,0x71,0xbf,0x4f,0xc2,0xef,0x93,0x5b,0x0c,0x95,0xbc,0x4a,0x1b,0x22,0x8c,0xfd,0xef, + 0x13,0xdb,0x38,0x91,0x2e,0xe1,0x5f,0xd0,0xf3,0xfb,0x8b,0x45,0x5a,0x04,0xaf,0xde,0x1e,0x4f,0xfb,0x7b, + 0xfe,0xcf,0x48,0xe1,0x6f,0x1a,0xc7,0x77,0x59,0x78,0xf4,0x5b,0x42,0x77,0x8e,0x7f,0x4d,0xcb,0x7b,0x78, + 0xc3,0xdd,0x22,0xb2,0x24,0xed,0x55,0x42,0x9e,0x86,0x34,0x0b,0xc3,0x8f,0xfb,0x2f,0xa3,0x25,0x8b,0x64, + 0x8f,0x9c,0xcb,0x5d,0x7e,0x4c,0x71,0xc6,0x90,0xce,0xe2,0x27,0x4f,0x1a,0x04,0xa1,0x33,0x5e,0xaf,0x29, + 0x45,0x7d,0x6b,0xd5,0x50,0x75,0xdb,0x70,0x22,0x3c,0x77,0xc9,0xcd,0x75,0xb9,0x9b,0xcc,0x64,0x9b,0xb3, + 0x30,0x19,0x39,0xd4,0x16,0x9d,0x4a,0x1c,0xca,0x80,0x58,0xc4,0x28,0x14,0x9a,0x5c,0x17,0xc5,0x73,0xae, + 0xb2,0x5b,0xae,0xa5,0x99,0x36,0x26,0xe1,0x6f,0x4c,0x91,0xff,0xab,0x64,0x5f,0x59,0xac,0x6d,0xc4,0x1d, + 0xfa,0xe2,0x3a,0xe3,0x34,0x7b,0x4f,0x7d,0x7f,0x8b,0x74,0x28,0xed,0x83,0x86,0x9d,0x10,0x82,0x56,0xe4, + 0xde,0x20,0x99,0x11,0x8e,0x70,0xfa,0x39,0xf5,0x4f,0xd3,0xbf,0xa7,0xab,0xdc,0xa3,0x43,0xee,0xff,0x8e, + 0x4a,0xd7,0xf1,0xfb,0x65,0x80,0x72,0x82,0xbf,0x83,0x89,0x3a,0x8f,0x2b,0xd5,0x2f,0x0d,0x6a,0x85,0x41, + 0xd1,0xea,0xca,0x80,0x4a,0x4e,0x50,0x43,0xc8,0xa3,0x69,0x92,0x49,0xff,0x2b,0xf4,0x5f,0x35,0x69,0xf7, + 0xca,0xa5,0xb8,0x4b,0xe9,0x63,0xa5,0xfa,0x58,0xa8,0x3e,0xb4,0xcf,0xa2,0xd2,0x5d,0x34,0xbb,0xa2,0x04, + 0x59,0x74,0x18,0x3f,0x7c,0x8b,0xdf,0xb5,0x5e,0x12,0xd5,0xe2,0x02,0xee,0xf1,0x47,0x93,0x01,0x96,0x0e, + 0xa1,0xe8,0x40,0xe9,0xc8,0x2f,0x5a,0x00,0x38,0xa1,0x06,0x67,0x37,0xf6,0xff,0x24,0xcc,0x40,0xd5,0x88, + 0x63,0x00,0xd8,0x41,0x7e,0xaf,0x5f,0xb8,0xbf,0xcb,0xfc,0x8a,0x95,0x08,0xd4,0xa3,0xda,0x6d,0xcf,0x68, + 0xf6,0x1b,0x6a,0x26,0xb0,0xc5,0xde,0xfd,0x34,0x58,0xf1,0xdb,0xab,0xb8,0x37,0x34,0xbc,0x88,0x91,0xa1, + 0x97,0x4a,0x99,0xcb,0x57,0xa1,0x75,0xab,0xf7,0xcb,0xcc,0xdb,0xe9,0xee,0xf9,0x1e,0xab,0x08,0xdc,0xd1, + 0x1e,0x38,0x7e,0x89,0x16,0xbd,0xb0,0xd7,0x88,0xac,0xae,0x9e,0x14,0xe4,0x11,0xf3,0x0e,0x3b,0x90,0x55, + 0x11,0x1b,0xcd,0x83,0xa6,0x69,0x3c,0xab,0xcc,0xe3,0x07,0xba,0xd1,0x8d,0x87,0x37,0x50,0xd7,0x2e,0x83, + 0x5e,0x2f,0xb9,0x2f,0xe7,0x44,0xdc,0xbd,0x40,0x25,0x28,0xeb,0x8d,0xa8,0x9a,0x24,0xf4,0x02,0xfa,0x54, + 0x4f,0x6f,0xd2,0xe0,0xbd,0xbe,0xcb,0x31,0x18,0xc4,0x8e,0x7e,0xe4,0x9c,0xa4,0x2e,0xe5,0xe3,0x0c,0xd0, + 0x1f,0x08,0x89,0x08,0x04,0x9c,0x61,0x6a,0xbf,0x68,0x42,0x81,0xbe,0xef,0xf4,0x9c,0x7e,0x54,0x22,0xd4, + 0x4d,0x7d,0xec,0xfa,0x51,0x95,0x3a,0xad,0x2f,0x40,0x50,0xff,0x4d,0xf8,0xd2,0xf1,0x0c,0x57,0xc4,0x66, + 0x3b,0x95,0x4d,0x68,0x85,0x07,0x32,0xc2,0xb0,0xe6,0xf8,0xd0,0xef,0x68,0xdb,0x92,0x5b,0x93,0xa0,0x2d, + 0x96,0xf3,0x2e,0x6b,0xe0,0xad,0xd7,0x0e,0xfa,0xc1,0x99,0x56,0x78,0x20,0x5f,0xc5,0xbb,0x55,0x26,0x7e, + 0x3a,0x74,0xac,0x25,0x73,0x16,0xe1,0x54,0x57,0xb9,0xfc,0xdb,0x19,0xfe,0x67,0x2c,0x2b,0x20,0x4e,0x70, + 0x7c,0xa7,0x6e,0x4a,0xe2,0xf4,0x89,0x4d,0xf1,0x46,0x27,0x89,0x7c,0xf9,0x74,0x84,0xfa,0xcc,0x87,0x3b, + 0x7d,0x57,0xda,0xc7,0xd8,0x47,0x4e,0xa0,0x4a,0xd2,0xf2,0x06,0x27,0xff,0x36,0x85,0x23,0x24,0x11,0x93, + 0x57,0x5f,0x66,0x47,0xa0,0x28,0x0a,0xa5,0xd8,0x1d,0x70,0xaf,0xb5,0xc5,0xa6,0xa4,0x49,0x88,0xe4,0x81, + 0x1a,0xd7,0xc8,0x95,0xb6,0xd0,0x0d,0x71,0x08,0x1d,0xc6,0xb0,0xd4,0x9c,0x42,0x8a,0x77,0xee,0x5c,0x52, + 0xc3,0xae,0x6c,0xb9,0x8c,0xd7,0x09,0x32,0x8f,0x3b,0x4a,0x42,0x9a,0x09,0x15,0xa5,0xcf,0x4b,0x6e,0xc4, + 0xee,0xc4,0xbb,0xa6,0x02,0x8f,0xf6,0x19,0x5d,0xd2,0xb8,0x68,0x00,0x26,0xdc,0xf6,0x11,0x95,0x1f,0x7b, + 0xa2,0xfb,0x82,0x52,0xb4,0x00,0xb5,0x62,0xda,0xfd,0x0b,0x65,0x79,0xba,0x4e,0x95,0x4e,0xa9,0xfd,0x03, + 0xe8,0x11,0x48,0x7d,0x03,0x5f,0x77,0x26,0x0c,0x87,0xce,0xc7,0x41,0x8b,0x60,0xba,0xbf,0x09,0x2a,0xad, + 0xed,0xb6,0x36,0xcb,0xa5,0x3a,0xad,0x45,0x43,0xe8,0x86,0xfa,0xee,0xf1,0xe0,0xb3,0x8f,0x01,0x71,0x80, + 0xa0,0xa5,0x13,0xb2,0x15,0xab,0x34,0xf0,0x15,0xe1,0x35,0xf6,0x1f,0x8f,0xdb,0x4b,0xa2,0x06,0xc3,0xef, + 0xb6,0x9a,0x17,0x02,0x20,0xc1,0x8e,0x9b,0xae,0xa5,0x1d,0x59,0x15,0x0c,0x0a,0xba,0x7d,0xfe,0x2a,0xcc, + 0x46,0x7a,0x94,0x81,0xca,0x80,0x0e,0x1a,0x41,0x6f,0xa0,0x46,0xe5,0x2f,0xc2,0xc6,0xb1,0x96,0xf5,0x19, + 0x02,0x5d,0x77,0xe7,0x29,0xab,0x71,0x78,0x2c,0x91,0x32,0xbc,0x40,0x0b,0x5e,0x99,0xa1,0xbc,0x59,0xf1, + 0x8a,0x2c,0xbc,0xe1,0x84,0x0a,0xd0,0x6d,0x07,0xb0,0xaa,0xb5,0xa3,0xf4,0x4c,0xcc,0x23,0xe5,0xd0,0xe9, + 0xcf,0x3c,0x5f,0x76,0x42,0xfa,0xf7,0x1d,0x7d,0x7e,0xd4,0x6a,0xaf,0xfc,0x59,0x25,0x59,0x71,0x8b,0xf5, + 0x1a,0x0a,0xd3,0xb2,0x0f,0xa7,0x8b,0x15,0xdd,0x4e,0x4e,0xfd,0xe9,0xca,0xd1,0xe6,0x82,0xd5,0x46,0xec, + 0x7c,0x9d,0xd6,0xc5,0x84,0x84,0x49,0x3b,0x71,0xbf,0x79,0x85,0x65,0x1a,0xb1,0xc5,0x18,0x5f,0x8a,0x06, + 0x83,0x0c,0xd7,0x22,0x91,0x00,0x3c,0x05,0x86,0x2d,0x25,0x78,0xf0,0x1b,0xe6,0x79,0x6e,0x6e,0xc2,0x10, + 0x5d,0x9d,0x0d,0x6c,0x88,0xb1,0x7c,0x43,0xf4,0x54,0xd4,0xe5,0x92,0x02,0x84,0xac,0x72,0xc0,0x05,0x61, + 0x25,0x71,0x45,0x28,0x17,0x13,0xd5,0x5e,0xc9,0x49,0x83,0xdf,0x73,0x38,0xdc,0x79,0x1a,0xff,0x18,0xcf, + 0xca,0xd7,0xcb,0x38,0x45,0x91,0x32,0xf3,0x6b,0x4b,0x11,0x14,0x89,0xdf,0x90,0x85,0x06,0x3f,0xc5,0xbe, + 0x25,0x3c,0xf8,0x2e,0x23,0xfe,0x61,0xba,0x9a,0x74,0xab,0xdc,0x70,0x2c,0x47,0x3e,0xe5,0x3a,0x40,0x96, + 0x0e,0xf9,0xe7,0xb1,0x47,0x88,0xc1,0xbb,0x2c,0x21,0x30,0xf1,0xb1,0x22,0xff,0xee,0x26,0x51,0x7b,0x70, + 0xf4,0x02,0x68,0xe7,0x3b,0x1b,0xf0,0x0f,0xc9,0xba,0xaf,0x4f,0x82,0x4f,0xbc,0x4b,0x92,0x2a,0x77,0x1e, + 0xbe,0x79,0x18,0x93,0xe8,0x42,0x7d,0x37,0x1e,0xe1,0xc4,0xc6,0xf0,0x8c,0x0a,0x81,0xd1,0x0f,0x86,0xe5, + 0x3b,0xbe,0xba,0x73,0x32,0xee,0xaf,0x8f,0x89,0xc2,0xf6,0xc6,0x9f,0x8d,0x8e,0x3d,0xb0,0x7b,0xe1,0xe3, + 0xf5,0x1f,0x7a,0x04,0xf4,0xf3,0xd8,0xdd,0xf3,0xbf,0x57,0x35,0x8e,0x88,0xad,0x23,0xe6,0xee,0xe4,0xce, + 0x18,0x55,0xc7,0xe0,0x0c,0x89,0xba,0x6e,0x24,0xae,0x8f,0x8f,0xee,0x11,0x7d,0x7f,0x6f,0x4c,0x1f,0x0e, + 0x7d,0x38,0xf8,0x20,0x32,0x18,0x7f,0x9a,0x65,0xc7,0xde,0x67,0xd4,0x2c,0x51,0xee,0xdf,0x82,0xd4,0x29, + 0x26,0xc1,0xfd,0x7f,0xc2,0x99,0x51,0xf0,0x95,0xa8,0x59,0x04,0x07,0x0f,0x7c,0x59,0xef,0x07,0xf7,0xfd, + 0xd5,0x32,0x78,0xf0,0x25,0x71,0xc8,0xb3,0x32,0x78,0xf0,0x4f,0x3f,0xc7,0xeb,0x49,0xf0,0xe0,0x2b,0x1f, + 0x5e,0xb0,0x83,0x87,0xfb,0xbe,0x3c,0x60,0x06,0x47,0x5f,0xfa,0x0f,0xbf,0x20,0x26,0xe4,0x5f,0x59,0x97, + 0x5f,0x2e,0xa0,0x9c,0x3e,0x80,0xc7,0xf2,0x99,0x35,0x24,0xb6,0xe9,0xf7,0x0c,0xc2,0x20,0x82,0x07,0x7d, + 0xa8,0xf1,0x03,0x00,0x12,0xcd,0x23,0x11,0x21,0x0e,0xa1,0x51,0xc1,0x79,0xa6,0x8c,0xfa,0xfd,0x5c,0x1e, + 0x1c,0xb9,0x08,0xe2,0x92,0x05,0xff,0xca,0xdc,0x3a,0x6e,0xe8,0x11,0xc6,0xe9,0xa9,0x94,0xc9,0x2a,0xc7, + 0x26,0x1d,0x72,0x06,0x1d,0xe0,0x49,0x99,0x2f,0xb8,0xc6,0x8e,0x2e,0x40,0x09,0x3f,0x40,0x43,0xd7,0x67, + 0xdf,0xa1,0xb5,0x3c,0x4e,0x91,0xcc,0x68,0x51,0xcf,0xa2,0xdf,0x92,0x01,0x79,0x41,0x2d,0x07,0x09,0x92, + 0xc5,0x6b,0x87,0xac,0x7b,0xe2,0x15,0xea,0x1e,0x08,0x23,0x29,0xd5,0xbb,0x7b,0x57,0x8f,0x50,0xf2,0x78, + 0xcc,0xfb,0x68,0x2f,0x99,0x4e,0x17,0xf1,0x27,0x55,0x3b,0x80,0x5c,0x81,0xf7,0xe7,0x53,0x6a,0xdd,0x07, + 0xfc,0xff,0x46,0x1b,0x41,0x5c,0x63,0xd3,0x1f,0x0b,0xdc,0xc0,0x55,0x51,0xed,0x3a,0x36,0xf6,0x64,0x2e, + 0x1b,0xeb,0xd7,0x30,0xc4,0x06,0xde,0x4a,0xd2,0xb6,0x1f,0x1c,0x34,0xc7,0xe1,0xf3,0x2a,0x6b,0xa1,0xaa, + 0xa5,0x53,0x6a,0x29,0xa5,0x96,0xee,0x41,0xfe,0x45,0xe7,0xad,0x0f,0xe6,0xbb,0x6a,0x15,0x77,0x9f,0x45, + 0x49,0xc3,0xd1,0x51,0xa5,0x8e,0x88,0xc7,0xb0,0x91,0x90,0x3a,0x81,0xa2,0x99,0xbc,0x1b,0x8a,0x73,0xf4, + 0x69,0xc7,0x57,0xe5,0x1d,0x4f,0x8d,0x79,0xb2,0xc8,0xa2,0x73,0xc4,0xd5,0xfd,0xcf,0xac,0xed,0xf5,0x34, + 0x33,0xce,0x32,0xf9,0x27,0x24,0x91,0x74,0x27,0xe2,0xcf,0x7a,0xfd,0xbb,0x4a,0x34,0xc2,0xcb,0x22,0xfc, + 0x0d,0x62,0x78,0xad,0x98,0xee,0x98,0x8c,0x67,0xc4,0x31,0x68,0x0f,0xee,0x78,0x67,0xfc,0x36,0x4e,0x11, + 0xc1,0xaf,0x5e,0x5a,0x49,0x1d,0x4d,0x39,0xc3,0x71,0x84,0x97,0x2e,0x2b,0x5a,0xfc,0x96,0xb1,0x69,0xb4, + 0x49,0xf7,0x4c,0xf4,0xae,0x1a,0x02,0x5d,0xaf,0x9f,0xa5,0x43,0xe5,0x1b,0xf9,0xc3,0x69,0x6c,0x02,0x31, + 0x76,0x6c,0xe4,0x8e,0x31,0xe3,0x55,0xfe,0x31,0xd3,0x49,0xfc,0x02,0xd6,0x5a,0xfc,0xab,0x19,0x70,0x10, + 0x3e,0xba,0xe3,0x28,0x74,0x6d,0xa1,0xd0,0xf1,0xf1,0xa9,0xd3,0x77,0xa6,0x84,0xc3,0x67,0x10,0xc0,0x11, + 0xd0,0x97,0x08,0xa8,0x4b,0x8b,0xfc,0x81,0x1d,0xb3,0x4d,0x20,0xfc,0xc3,0xb5,0xe7,0x5f,0x25,0xe5,0x99, + 0x1f,0x5d,0x45,0x49,0xe9,0xb3,0x61,0x80,0xcf,0x3e,0xd0,0x95,0xf2,0x3c,0x3f,0x03,0xf9,0xec,0xb8,0xd4, + 0xe7,0xb8,0xf4,0xfe,0x15,0xa1,0xd5,0xd8,0xff,0x00,0xa9,0x9f,0x42,0x36,0x3e,0x31,0x67,0x19,0xbc,0x1d, + 0xb2,0x27,0x16,0x5f,0x66,0xa0,0x3d,0x80,0x69,0xbf,0x8b,0xe2,0x2e,0x94,0xd8,0x18,0x09,0x51,0xcf,0x4e, + 0xd0,0x92,0x74,0x05,0xd7,0x3d,0xa7,0xab,0xf9,0x1c,0x62,0x42,0xb5,0x0a,0x55,0xd0,0x15,0x47,0xf9,0xa9, + 0xc1,0x9d,0xa0,0x6e,0x07,0x9a,0xd6,0x1a,0x53,0xf3,0xfa,0x3c,0x43,0x09,0x12,0xdc,0x98,0xb3,0x0c,0x4a, + 0xfc,0x8e,0xb2,0x02,0x7b,0x67,0x3b,0x84,0xd2,0x81,0xf0,0x8f,0x8f,0x09,0xe5,0xd3,0x3f,0x55,0xab,0x8d, + 0x0c,0xea,0xc3,0x7d,0xd6,0x94,0xfc,0x88,0x28,0x62,0xab,0xd5,0x28,0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7, + 0xe1,0xce,0x81,0xe7,0x9f,0x66,0x6a,0x3f,0xd9,0x40,0x0c,0x12,0x6e,0x2b,0x62,0xcb,0x30,0x7d,0xf4,0x21, + 0xb3,0x9d,0xb3,0x7c,0xc8,0xd8,0x0e,0x17,0x2f,0x39,0x67,0x59,0x58,0x56,0x50,0x7d,0x8a,0x5f,0xfa,0xae, + 0x07,0x38,0xf9,0x27,0x48,0xb1,0x6e,0x72,0x4e,0xbc,0x42,0x62,0xe3,0xaa,0xe6,0x8c,0x8b,0x0c,0xa0,0x5d, + 0x76,0x1c,0x84,0x57,0x72,0x10,0xe6,0xcd,0x02,0x4d,0x31,0x0d,0x95,0xf9,0xd0,0x2a,0x93,0x15,0x65,0xb3, + 0xd0,0x25,0x86,0x40,0x3b,0x91,0x5c,0x24,0x25,0x02,0x22,0x2a,0xa3,0x5c,0x22,0x4f,0x59,0xf9,0x64,0xe7, + 0x80,0x75,0x3d,0x11,0xe3,0x1c,0xa7,0xe3,0xd7,0x33,0x2a,0xc5,0xc3,0xf4,0xb1,0x5e,0xa0,0x53,0x0f,0x5a, + 0x96,0x19,0xcd,0x45,0xa6,0x5f,0x8b,0x3e,0x5e,0xf0,0xa0,0xd6,0xba,0x3a,0x95,0xb7,0x05,0xd7,0xb6,0x9a, + 0xce,0xb5,0x1f,0x01,0xd6,0xbf,0xf3,0x8b,0x2a,0x7e,0xbd,0x68,0xf2,0x2d,0x3c,0xf5,0xf6,0x86,0xe7,0x86, + 0x1c,0x3f,0x65,0xc7,0x1a,0x0f,0xb2,0x94,0xcc,0xaa,0xfe,0x49,0x18,0x55,0x41,0xed,0x93,0xc7,0x21,0x71, + 0x3d,0x11,0x42,0xc1,0x2c,0x74,0x51,0x1c,0x72,0x9a,0x57,0x81,0x90,0x6a,0x9a,0xa6,0x0c,0xf9,0xd9,0x17, + 0xa5,0x2d,0x03,0x4c,0xbb,0xa1,0xc9,0xe3,0x30,0x19,0x4e,0xa8,0x42,0x39,0x60,0x2f,0x2b,0xfc,0x87,0xfd, + 0xad,0xb3,0x64,0x02,0xe3,0x1f,0xea,0xe2,0x21,0x16,0x30,0xe1,0x6e,0x77,0x0f,0x38,0x9f,0xb9,0x23,0xe7, + 0x34,0x07,0x85,0x57,0x8c,0x98,0xb0,0xca,0xd9,0x69,0x3d,0x7f,0xd0,0xfc,0x69,0xb9,0x77,0xf6,0xc5,0x33, + 0x82,0xb3,0xe4,0x52,0x1c,0x07,0xb7,0xb3,0xdc,0x01,0x97,0xf3,0x6b,0x03,0x91,0x15,0xa4,0x45,0xd5,0xce, + 0x11,0xe0,0xe9,0x04,0x9b,0x08,0x65,0xf4,0x4a,0x2a,0x43,0x5b,0x56,0x0e,0x2a,0xfa,0x92,0xa1,0x6d,0x85, + 0x17,0xe7,0x06,0x55,0xc9,0x19,0x0b,0x5a,0x94,0x78,0xc8,0x42,0xbe,0x84,0x10,0x38,0xb1,0x24,0x4f,0x32, + 0x37,0x33,0xea,0x6c,0xb0,0x4b,0xcd,0x1a,0x6f,0xe2,0xcb,0xf0,0x6d,0x76,0x34,0x45,0x88,0x28,0xfe,0x5b, + 0x93,0x7f,0x13,0x01,0x77,0x5c,0x1c,0x1f,0xbf,0x25,0xd2,0xcd,0x73,0x1f,0xed,0x39,0xfd,0xa9,0x16,0x84, + 0x7b,0x74,0xe2,0x13,0xf0,0xd2,0xb0,0xce,0xd2,0xa2,0xed,0xa5,0x2d,0xd3,0x66,0xf0,0xd0,0x90,0x66,0x2c, + 0x61,0x7d,0x1a,0xcf,0x94,0xf9,0x3f,0xe5,0x77,0x12,0x0b,0xc7,0xb1,0x91,0xc3,0xca,0x01,0xd5,0x1e,0xc4, + 0xe8,0xd4,0x77,0x21,0x3d,0xef,0xee,0x3e,0xde,0x9b,0x13,0x8b,0x41,0xb7,0xbe,0x5d,0xe4,0xf8,0xe8,0xd9, + 0xf3,0x27,0x87,0x4f,0x8e,0x8f,0xaa,0x92,0xe3,0xb1,0x29,0x09,0xa1,0xb2,0x3b,0xf5,0xc5,0xed,0x32,0xf4, + 0x59,0x94,0xcf,0x26,0x0e,0xa3,0x77,0x16,0xc9,0x45,0xc9,0x1f,0x50,0x82,0x70,0x20,0x7f,0x21,0x98,0xd7, + 0x3a,0x3a,0xbb,0x67,0x7a,0xbc,0x71,0x78,0xe6,0xe7,0xd4,0xd0,0x62,0x77,0x86,0x48,0xd4,0xc6,0x0e,0xe9, + 0x32,0xb4,0x94,0x01,0x1e,0x89,0x0c,0x00,0x6a,0x98,0x97,0xbc,0xf8,0x8b,0x4c,0x47,0xd4,0xd2,0x16,0x64, + 0xb6,0xea,0xc0,0xee,0xf1,0xfb,0x07,0xb1,0x54,0xb9,0x60,0xf0,0x2d,0x55,0x78,0x46,0x44,0xaa,0x50,0x2a, + 0x88,0x2a,0x3c,0x82,0x72,0x58,0x52,0x9d,0xc2,0x87,0x3e,0x6c,0x6d,0x53,0xf7,0xa2,0xff,0x80,0x58,0x3c, + 0x85,0xea,0x37,0xd0,0xeb,0x9a,0x35,0xfa,0x9c,0xdb,0x7d,0x8e,0x1f,0x4b,0x7f,0x73,0xee,0x2f,0x75,0xe7, + 0xfd,0xfb,0x76,0x75,0x94,0x87,0x86,0x34,0xbb,0xa7,0x75,0x57,0xa2,0x72,0xf8,0x01,0x05,0x3f,0xe0,0x6d, + 0x59,0x07,0x34,0x34,0x15,0x50,0xfe,0xd4,0x94,0x9f,0x48,0xf9,0x53,0xe9,0xf7,0x24,0x5c,0x0c,0x53,0xf7, + 0xd4,0xaa,0x47,0x0b,0x78,0x7a,0x74,0x30,0xf6,0x4f,0x98,0x2d,0xb5,0xdb,0xb8,0x6a,0xc6,0x4a,0x29,0x4d, + 0xa3,0x91,0x34,0x6a,0x22,0xff,0x5d,0x6b,0x8f,0x7f,0x25,0x9a,0x62,0xce,0x23,0xc0,0x61,0xc1,0x29,0x0b, + 0x16,0x1b,0xea,0xb2,0xb4,0x87,0x6a,0x9d,0xaa,0xe1,0x0e,0x0e,0x83,0x6a,0xb6,0xc8,0xd8,0xf8,0x23,0x33, + 0x09,0x39,0x25,0x0c,0xbd,0xd4,0xcd,0x6a,0x03,0x56,0xfe,0x23,0x75,0x20,0x4e,0x9c,0xa7,0xca,0x06,0x73, + 0x85,0xb3,0xf8,0x96,0x6e,0x71,0x42,0x1b,0x18,0x4c,0xea,0x26,0xf5,0xca,0xf0,0x7d,0xbe,0xf0,0xf3,0xcd, + 0xc6,0x15,0xab,0x29,0xef,0xba,0x15,0x6a,0x21,0x0d,0x8d,0x9b,0x42,0xb6,0xba,0xa8,0xda,0x64,0xee,0x5f, + 0x30,0x0a,0x9d,0xdf,0x54,0x5c,0x87,0xe7,0x34,0x0a,0x7f,0xc5,0x9f,0x99,0x38,0x80,0xce,0xf9,0x81,0x5c, + 0x4f,0x73,0x11,0x4e,0xd8,0x5b,0xc3,0xce,0x4e,0xc2,0x3e,0x78,0x64,0xf8,0x0a,0x86,0xa7,0x7c,0xa8,0x45, + 0x32,0x35,0xc3,0x89,0xdf,0x1f,0x2e,0x1f,0xcd,0x86,0x4b,0xad,0xe4,0x77,0xa6,0x2b,0x1c,0x2d,0xc7,0xc3, + 0x25,0x75,0xba,0x0b,0x6b,0xb9,0x33,0xcc,0x49,0x03,0xd0,0x3d,0xc7,0xb9,0x87,0x75,0xe3,0x37,0xaa,0xb3, + 0xa3,0x07,0xe3,0xbb,0x77,0x95,0x42,0x27,0x7e,0xf8,0x2a,0xf9,0xa1,0x9d,0xfc,0xd0,0x24,0x7f,0x6e,0x27, + 0x7f,0xae,0xac,0x09,0x2f,0xb9,0x99,0xf5,0x1a,0x05,0xf1,0xef,0xe7,0xf4,0xaf,0xe3,0xf8,0x17,0xa1,0x13, + 0x69,0x17,0xd7,0x70,0xdf,0x2c,0x2d,0x1c,0x8c,0x47,0xfa,0x8c,0x3c,0x8f,0xe1,0x52,0xf7,0x55,0x7c,0x05, + 0x97,0xa8,0xc5,0x37,0x59,0xfe,0x1d,0x95,0x0a,0xba,0x73,0x87,0x53,0x9a,0x91,0xd2,0x5d,0x47,0x23,0x3e, + 0x93,0xd8,0xc1,0x0f,0xa5,0x7b,0x49,0xc7,0x68,0xb3,0x59,0xb0,0xea,0x33,0x6f,0x32,0x2b,0xb0,0x12,0x02, + 0xb5,0x6f,0x9c,0x20,0x6d,0xe0,0x4a,0x81,0xba,0x29,0x3c,0xd2,0x87,0x1c,0x17,0xa1,0x81,0xec,0x53,0xd8, + 0x92,0xf1,0x93,0x37,0xfd,0x82,0x47,0x9b,0x74,0xea,0x6d,0x68,0xfb,0x81,0x8b,0x32,0x3f,0x66,0xd7,0x0b, + 0x07,0xcd,0x73,0x77,0xa8,0x4d,0xc6,0xcf,0xf5,0xc7,0x7b,0xf5,0x01,0xd8,0xb9,0x34,0xf7,0xdb,0xb9,0x71, + 0xec,0x7c,0xe9,0x11,0x48,0x4f,0xd4,0x71,0x3f,0x87,0x1b,0x57,0xeb,0x7b,0x61,0x7d,0xcf,0xac,0x6f,0xf7, + 0x7d,0x78,0x6e,0x63,0x2c,0x9f,0x70,0xe1,0xa3,0x7d,0x02,0xfd,0xcb,0x7e,0xf8,0xde,0xaf,0x35,0x7e,0x58, + 0xbb,0xf7,0xf7,0xfd,0x4b,0x20,0x9c,0x4b,0x6f,0x73,0xc9,0xe2,0x48,0xca,0x25,0xac,0x08,0xcb,0x71,0x83, + 0x49,0x0f,0x2b,0x64,0x7a,0xc8,0x3a,0xa6,0xb1,0xa8,0x29,0xb7,0x50,0x6d,0xac,0x4d,0x64,0x37,0xb9,0xcb, + 0x32,0x22,0x89,0x12,0x72,0x96,0xf9,0xd6,0x33,0x44,0xed,0xf6,0xb3,0x24,0x2b,0xf6,0x35,0xd8,0x21,0x54, + 0x69,0xdd,0x88,0x7e,0x17,0x48,0x6c,0x81,0x94,0xce,0xb2,0x37,0x03,0x97,0xca,0xf5,0x5b,0xa8,0x3b,0x30, + 0x98,0xbb,0x50,0xe8,0xc9,0xba,0x16,0x23,0x58,0xbf,0xca,0x89,0x15,0x01,0x69,0xb1,0x5e,0x5f,0xe1,0x8d, + 0x73,0xf8,0x0a,0x20,0x0f,0x97,0xd9,0xb4,0x76,0x88,0x72,0x55,0x0f,0x48,0x51,0x29,0x3b,0x13,0xd2,0x13, + 0xd2,0x36,0xb6,0x29,0x5b,0x2d,0xbc,0x44,0x7c,0xd4,0x5f,0x32,0xad,0x3b,0x99,0x2a,0x9d,0x49,0xf9,0x0a, + 0xe5,0x8f,0xb9,0x44,0x7f,0xce,0x7c,0xd9,0x46,0x3e,0x01,0xa0,0x45,0x4c,0x0c,0x3d,0x28,0x97,0x2b,0x79, + 0xe2,0xf7,0x25,0x0f,0x3b,0xa1,0x0b,0x12,0x12,0x45,0x1a,0x31,0xe8,0xb9,0x1d,0xe5,0x40,0x9f,0x3d,0x2a, + 0x4e,0xc3,0x99,0x27,0xca,0xcc,0xfa,0x39,0x1a,0xc9,0x53,0x51,0xbe,0x9e,0xd6,0xe5,0xa9,0x34,0x49,0x88, + 0xed,0xf6,0xde,0x45,0x97,0x91,0x5d,0xb6,0x56,0x88,0xc6,0x8c,0x18,0xb5,0x1e,0x77,0x48,0x53,0x3f,0x65, + 0x4f,0xf0,0x1c,0x88,0x52,0x2f,0xc4,0x54,0xe1,0xb1,0xb9,0x21,0xf0,0x81,0xcf,0x66,0xe1,0x3c,0xa3,0x33, + 0xef,0xce,0x88,0xa4,0x25,0xf8,0x67,0xc5,0x40,0x9a,0xff,0x45,0x38,0xf3,0xcd,0x43,0xe3,0x05,0x1e,0xd5, + 0x20,0xbb,0x43,0xf3,0x17,0x20,0x95,0xd9,0xd4,0x60,0x56,0xf1,0x15,0xfb,0x1e,0x33,0x16,0x33,0x8b,0xb1, + 0xc0,0x8b,0x64,0x67,0xf4,0x62,0x23,0x2c,0x33,0xee,0x2e,0xed,0x28,0x8d,0xe6,0x55,0xd5,0x42,0xc1,0xa5, + 0xf6,0x43,0x53,0x72,0x04,0x4f,0x78,0xe9,0x51,0x38,0xca,0x6a,0x8d,0x12,0x25,0x2e,0x89,0xa0,0xac,0x86, + 0x92,0x4f,0xa3,0xa0,0x84,0x25,0xdd,0x68,0x8f,0x9a,0x34,0x0f,0xd6,0xb5,0x63,0xa1,0x9d,0x44,0xc5,0x9e, + 0x79,0xc1,0xac,0x7a,0x0b,0xa5,0xdc,0x7f,0xc1,0x98,0xbf,0x23,0x52,0xa9,0xf5,0x66,0xab,0xee,0xdf,0x18, + 0x8f,0xa6,0x25,0x1e,0x19,0x63,0x79,0x64,0x2c,0xd5,0x23,0x63,0xbc,0x51,0x46,0xd6,0x1d,0x4f,0xb8,0xa2, + 0xcb,0xac,0x9e,0x1f,0x75,0xec,0xc4,0xe6,0x83,0xae,0xd6,0x66,0x52,0xef,0x92,0x70,0xa8,0x8b,0x41,0x5d, + 0xda,0x9b,0x75,0x89,0x0a,0x60,0xd2,0xb9,0xc9,0x4b,0xe6,0xd7,0x79,0x37,0xbe,0x2d,0x79,0x93,0x69,0x2d, + 0x47,0x1a,0x02,0xd6,0xeb,0x9c,0xc6,0xca,0x30,0x23,0x4d,0x12,0x04,0xf0,0x17,0x55,0xa5,0xe1,0xe7,0x32, + 0x7c,0x9d,0xa9,0x66,0x31,0xdb,0x78,0x41,0x4e,0x3d,0xd2,0x69,0xdc,0xb1,0x60,0x0d,0x26,0x42,0xad,0x66, + 0x76,0x6e,0xe6,0x55,0xed,0x53,0x6a,0x0e,0x27,0xc7,0xd7,0xd3,0x16,0xe8,0x31,0x87,0xd6,0x03,0x80,0x6b, + 0xc9,0x2d,0x25,0x20,0x28,0x6c,0xb6,0x84,0xe9,0xaf,0x5b,0x39,0xb9,0xe1,0xb5,0x49,0x79,0x3a,0xbf,0xe3, + 0x62,0xe1,0xa1,0xc7,0xf5,0xa1,0xc3,0x22,0x83,0x16,0xcc,0xc8,0xd8,0x67,0x03,0x58,0x28,0xb0,0xd3,0x2f, + 0x8e,0x22,0x2e,0xdb,0x7f,0x20,0xfa,0x24,0xa1,0xe4,0x8a,0x5c,0x70,0xbd,0xbe,0xe7,0x28,0xf9,0x81,0x73, + 0x6f,0x48,0xdd,0xd6,0x82,0xbd,0xd5,0x7f,0xb3,0x19,0xc1,0xd1,0xd9,0x38,0x9c,0x89,0xb1,0x75,0x35,0x46, + 0xc1,0x1b,0x33,0x3e,0x3a,0x12,0x96,0x2d,0x91,0xab,0xdd,0xbf,0x18,0xae,0x46,0x29,0x80,0x8e,0x28,0xaf, + 0x99,0x9f,0xe9,0x82,0x88,0x33,0x96,0x76,0xe8,0xd5,0x67,0x47,0x99,0x61,0xdb,0xc6,0x7e,0x69,0xb9,0xc7, + 0x3a,0x6a,0xf9,0xc4,0xa2,0x12,0x08,0xbe,0xfc,0x00,0xda,0x20,0x1a,0xa1,0xf4,0x1c,0xf9,0xc5,0xee,0x14, + 0x76,0x26,0xd0,0xb4,0xae,0xc6,0x88,0xa5,0xf5,0x4d,0xfb,0xe1,0x01,0x91,0x5b,0xf5,0xfe,0x52,0x71,0xb8, + 0x8d,0x0b,0xaa,0x26,0xe5,0xd7,0xc1,0xc5,0x5e,0xa5,0xf6,0xd3,0x91,0x78,0x34,0x01,0x62,0x4b,0x2a,0x9c, + 0xb5,0xac,0xdc,0x71,0xc0,0xb4,0xdb,0x33,0xa7,0xa9,0xe6,0xfc,0x23,0x0e,0x27,0x08,0xfc,0x28,0x4f,0x38, + 0x23,0x17,0xa1,0x36,0x9d,0x8a,0x0b,0xca,0xb5,0xad,0x0a,0xa3,0x55,0x9d,0x30,0x8a,0x83,0xa7,0x19,0xbb, + 0xf5,0x63,0x97,0xe7,0x32,0xea,0x11,0xcd,0x18,0xe2,0x3c,0xe5,0xf1,0x6d,0xa7,0xe0,0x35,0xd8,0x61,0xdf, + 0x7d,0x6e,0x53,0x7a,0x22,0x50,0x7a,0x99,0x8d,0x7e,0x4f,0xdc,0xcb,0xcc,0x0b,0xbe,0x4d,0x98,0x5b,0xaf, + 0x98,0x05,0xe3,0xfc,0xcd,0xb7,0x58,0x50,0xfa,0x67,0x02,0x17,0xbe,0x51,0x51,0xbe,0x00,0xd1,0x00,0x84, + 0xc5,0xf1,0x7c,0xe2,0x09,0x2e,0x2b,0xef,0x9a,0x76,0x36,0x17,0x7a,0xc2,0x7b,0x8c,0xa7,0x26,0x4d,0x2c, + 0x1b,0x42,0x62,0x02,0x2b,0x5d,0x5f,0x91,0x57,0x0d,0xfc,0x95,0x69,0x0d,0xc5,0x55,0xf8,0xaf,0xd8,0xb5, + 0xdd,0x21,0x0f,0x55,0x05,0x79,0x8c,0x59,0xc9,0x23,0x94,0x6a,0xfb,0xda,0xf9,0x8f,0x53,0xd1,0x14,0x74, + 0xa0,0x33,0x41,0x03,0x4c,0xfa,0x79,0x45,0x79,0xeb,0xdb,0x6b,0xf2,0xa8,0x32,0xb5,0xe8,0x18,0xd6,0x8d, + 0x83,0xe2,0x73,0x06,0x8d,0x3e,0x18,0x24,0x45,0x4a,0xa4,0xd5,0x67,0x75,0xc1,0xf3,0x38,0x2d,0x82,0x62, + 0xc3,0x91,0x81,0xbc,0x51,0xa9,0xc9,0x46,0x58,0x81,0xde,0xf7,0xad,0x5a,0x58,0x24,0xfd,0x43,0x57,0x03, + 0x21,0x89,0x0f,0x79,0xd3,0xa2,0x73,0x1b,0x08,0xcc,0xc6,0xd5,0x9e,0x1a,0x30,0x3e,0x2a,0x2b,0xd8,0x64, + 0x90,0x86,0xd2,0xb8,0xd5,0xd9,0x03,0xd3,0x88,0xd0,0x8f,0x39,0x1b,0x84,0xb7,0xdc,0xc4,0x37,0x8f,0x69, + 0xbd,0xb2,0x6f,0x6c,0xdd,0x82,0x9d,0x7d,0x36,0x8f,0x20,0x76,0xc5,0xd5,0xb0,0x89,0x38,0xc6,0x4a,0x90, + 0x04,0x69,0xf0,0x45,0xf2,0x67,0xcc,0x72,0x1c,0x36,0x85,0xf2,0x21,0xd3,0x39,0xcc,0xc2,0x7f,0x67,0xc0, + 0x13,0xd6,0x73,0x13,0x68,0x89,0x73,0xbc,0x92,0xb6,0x64,0xb3,0xe6,0x9e,0x81,0x09,0x8f,0xb8,0x92,0x51, + 0x35,0x43,0xba,0x5b,0x4b,0xff,0x3e,0x75,0x35,0x51,0x87,0xd9,0xc5,0xc9,0x96,0x1f,0xc4,0xce,0xb8,0x3b, + 0x13,0x75,0x2d,0x4f,0x60,0x99,0xa0,0x14,0x45,0xa9,0x33,0xa8,0xe8,0xe0,0xdf,0x19,0x22,0x7f,0xcd,0x53, + 0x97,0x8d,0xa9,0xc0,0x00,0x9d,0x67,0xe6,0xbb,0x6d,0x02,0x6a,0x0c,0x40,0x59,0x0d,0x4a,0xc7,0x85,0x50, + 0x5e,0xa1,0x8d,0xeb,0x20,0xae,0x5e,0xb3,0x24,0x40,0x37,0x95,0x7d,0xa8,0xf1,0x19,0x43,0xc0,0x44,0x3d, + 0x2a,0xa3,0x32,0x84,0x11,0xa4,0x84,0x01,0x02,0xc5,0x7c,0xa0,0x05,0xf2,0xf0,0x3f,0xff,0xc0,0xe0,0x29, + 0xb1,0x5a,0xa0,0xe1,0x95,0x8a,0xac,0x70,0x80,0x8f,0x39,0x2a,0x50,0x65,0x08,0x86,0x1f,0x1a,0xab,0x1c, + 0x39,0x49,0x0a,0x4a,0x73,0xd7,0x8c,0x53,0x5b,0x2d,0xd8,0x32,0x4e,0x8e,0x1f,0xda,0xf4,0x1b,0xa8,0xc3, + 0x53,0x6b,0xfb,0xd8,0x0a,0x9f,0x12,0x79,0x08,0xbf,0x2b,0xbe,0xde,0x3a,0x18,0x2c,0xe9,0xbd,0xd8,0x39, + 0x60,0xe2,0x9d,0xe8,0xec,0xd9,0xb3,0x8c,0x16,0x9a,0xdf,0x01,0xaa,0x80,0xd3,0x84,0x3a,0xa3,0xb0,0x9e, + 0xa9,0xfb,0xcb,0x1e,0x45,0x95,0x67,0xad,0xa2,0x51,0x08,0x9e,0x94,0xf8,0xc2,0xa2,0x9e,0x61,0x15,0xb7, + 0xa5,0x67,0x06,0xe6,0xc9,0x86,0xe8,0xd0,0x1a,0xb8,0x28,0x7f,0x06,0x8d,0x75,0x34,0x55,0x71,0x38,0x32, + 0xf1,0xfe,0x67,0xd2,0x5e,0xa4,0x44,0x9b,0x1b,0x06,0x8d,0x12,0x84,0x01,0xa9,0x2d,0x11,0x15,0x17,0x00, + 0x6f,0xa4,0xaf,0xd7,0x0f,0x6a,0xc9,0xec,0xb6,0x9d,0x5d,0x46,0x28,0xec,0x02,0xd6,0xcc,0xf4,0x04,0x7f, + 0xc4,0x4c,0xe0,0x58,0x20,0x2d,0x69,0x07,0x7e,0xd5,0x46,0x23,0x86,0x7b,0x7b,0xbb,0x74,0x30,0x77,0x08, + 0x7f,0x2d,0x57,0x8f,0x7e,0x0a,0x86,0xbe,0x64,0xe0,0x1b,0xfe,0xbd,0x8d,0x89,0xdd,0x2d,0x7b,0xc2,0x61, + 0x0c,0xe0,0x16,0xea,0xc0,0x28,0x8d,0xb3,0x30,0x39,0x4d,0xd9,0xf0,0x48,0xc9,0x8a,0xaf,0xe9,0x1a,0x20, + 0xee,0x58,0x19,0x61,0x66,0x3a,0x74,0x6d,0xe3,0xb9,0x84,0x32,0x1a,0x29,0x9b,0x7a,0xb0,0x3f,0xb3,0xaf, + 0xa5,0x6b,0x29,0x5c,0xd4,0x8d,0x32,0x63,0x68,0x0e,0xb2,0x69,0xa5,0xb8,0x03,0xca,0xe5,0x05,0xaa,0x7e, + 0xa7,0xb9,0xe5,0x28,0x0b,0x12,0x4f,0x3b,0x42,0xdd,0xa0,0xb1,0x54,0xcb,0xcd,0xd9,0x91,0x8f,0xfa,0x0e, + 0xab,0xe7,0x26,0x7e,0x0f,0xd7,0x0f,0xe5,0xa6,0x30,0x84,0x69,0x35,0xf3,0x65,0xf8,0x8c,0xb4,0xdf,0xa1, + 0x1a,0xa3,0xb3,0x32,0xd7,0x6b,0x31,0x20,0xb5,0xeb,0x5b,0x22,0x19,0x44,0xb1,0xed,0xa5,0x9e,0xa3,0x3a, + 0xc2,0x41,0xa7,0x2b,0xbc,0x8a,0xe8,0xa6,0x53,0xe8,0xfa,0x8b,0xe0,0x11,0x3f,0x1a,0x8b,0x2b,0xa0,0x22, + 0x7c,0x96,0x71,0xf8,0x73,0x2d,0xa7,0x2f,0x06,0x71,0x9e,0x67,0xc4,0x42,0x24,0x74,0x76,0xca,0x64,0x59, + 0x84,0x99,0x5f,0x28,0x24,0x74,0x0d,0x6d,0x8e,0x64,0x11,0x07,0xa5,0xaf,0xbe,0x0e,0xb3,0x6f,0xd4,0x52, + 0x15,0x1d,0xda,0xfc,0x1d,0x06,0xb0,0xad,0xe7,0x00,0xe5,0x43,0x81,0xf0,0x3d,0xbf,0xc1,0x11,0x5f,0xc8, + 0x5b,0xa0,0xde,0xa4,0x7a,0x79,0x65,0x9c,0x90,0xc1,0xcd,0x99,0x79,0x8a,0x18,0x29,0xa3,0x24,0x3b,0xcd, + 0xeb,0xd3,0x85,0xc8,0xb0,0x0b,0xcf,0x69,0x9a,0xbd,0x84,0xe3,0x3d,0xb1,0xa6,0x87,0x5b,0xbc,0x1c,0xca, + 0x9e,0xb0,0xaa,0xc6,0x8e,0x9b,0x39,0x2b,0xfb,0xa0,0x25,0xa2,0x2e,0x2a,0x70,0x9b,0x54,0xc8,0xa3,0x7a, + 0xa2,0x8b,0x9a,0x29,0x75,0x7d,0xbd,0x4a,0xc3,0x61,0x09,0xd8,0x99,0x40,0x3f,0x01,0xfd,0x87,0x04,0x9b, + 0x78,0xd2,0xd8,0x78,0xee,0x9f,0x99,0x37,0x68,0x2f,0x1e,0x15,0x8b,0xc2,0x9d,0x1d,0x78,0xb2,0x3f,0x4b, + 0x5d,0x3c,0x35,0xa5,0xf6,0x6f,0x78,0x7c,0x8a,0x3a,0xad,0x71,0xd8,0x64,0xc8,0x58,0xdd,0x01,0xf5,0x18, + 0x1d,0x13,0xea,0x3b,0x89,0xc2,0x0e,0xcb,0x2a,0x5d,0xfc,0x76,0xa3,0x2b,0xe0,0x3e,0x36,0x4e,0xe2,0x6e, + 0xa0,0x4e,0x5a,0xb3,0xfd,0x24,0xfa,0xd2,0x4e,0xd2,0x1f,0x3a,0x0a,0x73,0x3b,0xb2,0x68,0x2d,0xe4,0x38, + 0xbb,0x35,0x48,0xd5,0x72,0xeb,0xe3,0x09,0x4a,0x51,0xee,0x1f,0x3e,0x8e,0x1e,0x2b,0x67,0xf2,0x4e,0x57, + 0x31,0x08,0x73,0xcf,0xf9,0x87,0x90,0xac,0x26,0x6a,0x02,0x13,0x0c,0x79,0x04,0xb1,0x82,0x71,0xc5,0xb5, + 0x63,0x79,0xee,0xb2,0x87,0x92,0x33,0x29,0xa9,0x17,0x49,0xb8,0x58,0xae,0xdf,0x32,0x59,0xcd,0x56,0x65, + 0xcd,0x63,0x5c,0xcf,0x4a,0xba,0xd9,0x8a,0x4f,0xb4,0xac,0xcd,0xbe,0x34,0xdc,0x49,0x57,0xc6,0x9b,0xcc, + 0xfc,0xdb,0x7b,0x86,0x65,0x96,0x99,0xab,0xdb,0x34,0x86,0x1b,0xbd,0xeb,0x6e,0xe1,0x52,0x74,0xa3,0x20, + 0x29,0x45,0x1c,0x2b,0x7d,0x34,0x82,0xd4,0x3a,0x27,0x9a,0x84,0x43,0xaa,0xfe,0xdc,0xa8,0x48,0xef,0x20, + 0xa9,0xd4,0x09,0x80,0xea,0x59,0x03,0xdc,0x87,0x7a,0xbf,0x08,0x2b,0xa4,0xed,0xd3,0x61,0x4c,0xf6,0x93, + 0x48,0x74,0x60,0xc5,0xbc,0x4d,0xdb,0xb2,0x29,0xb8,0xa7,0x39,0xd1,0xaf,0x8d,0xd7,0x30,0x4a,0x70,0x24, + 0x7e,0x98,0x15,0x1c,0x96,0xdf,0xa3,0xc1,0x6e,0xac,0x52,0x89,0xee,0x38,0x25,0x2c,0xa6,0x32,0x05,0xd1, + 0x8d,0xe4,0xcf,0x40,0x15,0x0d,0x4b,0xb7,0x33,0xcc,0xac,0xd4,0x86,0x5c,0x18,0x7f,0x07,0xd1,0xc5,0x74, + 0x24,0x9f,0x74,0x28,0x89,0xcf,0xfd,0x65,0x15,0xbf,0x38,0xf8,0x32,0x45,0xed,0x4d,0x23,0x08,0x35,0x0d, + 0x6b,0x45,0x00,0x02,0x10,0xa4,0xa1,0x0d,0x2d,0x5a,0x41,0xc6,0xdc,0x31,0x32,0xbc,0xb5,0x67,0x6c,0xb3, + 0xa4,0xbe,0x18,0x85,0xb9,0xce,0xd1,0xe5,0x2a,0xde,0x4d,0xa8,0x9f,0x71,0xcf,0xe9,0xc3,0xcd,0xf6,0xdd, + 0xbb,0xb5,0x02,0x7c,0xa5,0x4f,0xce,0x6d,0x47,0xdb,0x65,0x23,0x20,0x9e,0x30,0x5d,0xed,0x85,0xaa,0x6a, + 0xd8,0x38,0xe8,0x52,0x39,0x53,0xc2,0xb9,0xbd,0xa8,0x3d,0xa7,0x36,0xa2,0xec,0x21,0xcc,0x9e,0x89,0x2d, + 0x61,0x35,0x96,0xd8,0xf1,0xc1,0x45,0x14,0x68,0x1e,0xf5,0x0d,0xf1,0x07,0x89,0x03,0x04,0x81,0x55,0x16, + 0xc8,0x3e,0x75,0x9a,0xa1,0xc6,0x97,0xf0,0x1f,0x7d,0x16,0x58,0x30,0xa1,0x39,0xcb,0x92,0x0d,0xd2,0x89, + 0xac,0xad,0x2b,0xb4,0x72,0xe2,0x28,0x61,0x53,0xc3,0xa0,0x75,0xfc,0x63,0x0e,0x35,0x0f,0x87,0xc9,0x28, + 0x16,0xdc,0xb7,0x1a,0x64,0x91,0xe0,0x8d,0xc5,0x7d,0x17,0x7d,0x1e,0x74,0xf5,0x49,0x89,0xc0,0x23,0x49, + 0x28,0x9f,0xfe,0x35,0x51,0x2c,0x11,0x5d,0x76,0xb9,0xd8,0x27,0x15,0x41,0x62,0x79,0x03,0xcd,0x2a,0x23, + 0x6e,0xec,0x88,0xea,0xd4,0xc0,0x40,0x5c,0x53,0xc9,0xd2,0xb2,0x39,0xa5,0xbe,0xb0,0xb6,0x6c,0x22,0x8f, + 0xb6,0xd8,0xb9,0xc6,0x21,0x02,0x15,0x0e,0xa2,0x53,0x88,0xb1,0x7d,0xcc,0xb1,0x1c,0xc1,0x95,0xb7,0x37, + 0x4a,0x1f,0x1f,0x8c,0x0e,0x82,0xfd,0xe0,0x20,0x88,0x47,0x5c,0xe6,0x22,0x41,0xd5,0xfb,0x5e,0xb0,0xaf, + 0xc3,0xa9,0xc2,0xef,0x96,0x7a,0x1f,0x1a,0x8f,0x52,0x96,0x02,0x31,0xa7,0x15,0x58,0x7b,0x1b,0x59,0x50, + 0xc0,0xac,0x29,0x87,0xfd,0x6e,0x72,0xa9,0x35,0xb7,0xef,0x85,0x2d,0x74,0xb2,0x40,0xc1,0xd7,0x54,0x95, + 0x90,0x53,0xc4,0xc4,0x3c,0x6a,0x81,0x49,0xa2,0xe9,0xf5,0x4c,0xc2,0xf1,0xe0,0xb1,0x41,0x47,0x2b,0xc9, + 0xb4,0x5b,0x8a,0xd0,0xc4,0xd4,0x50,0x4f,0x12,0xe8,0x8c,0x29,0x9b,0xcc,0x9b,0x10,0xc6,0x59,0x85,0x91, + 0x3f,0x17,0xa0,0x86,0x9f,0x46,0xf6,0x3e,0x9a,0x81,0x94,0x19,0x31,0x55,0x53,0x30,0x71,0xe3,0x73,0x4a, + 0xc0,0x29,0xfc,0xa9,0x68,0x7d,0x7f,0xa5,0x17,0x3d,0xaf,0x87,0x28,0x60,0xe2,0x70,0xc1,0x0e,0xb6,0xe1, + 0xe4,0x59,0xb9,0x83,0x33,0x45,0x56,0x95,0x7b,0xdf,0x05,0xab,0xfb,0x42,0xe4,0xd7,0x21,0xf3,0x28,0xb5, + 0xab,0xb3,0xca,0x82,0xf1,0x44,0x20,0x88,0xbd,0xa2,0xdd,0xc1,0xc9,0x1f,0x48,0xc2,0x46,0xb5,0x63,0x61, + 0x13,0x7e,0xc0,0x86,0xa4,0x04,0xf7,0x5a,0x65,0x6a,0xae,0x38,0x2a,0x97,0x1d,0x43,0xc2,0x53,0x20,0x5f, + 0x9a,0x09,0x51,0xea,0x99,0x2e,0x04,0x51,0x22,0xad,0xa0,0x22,0x87,0x52,0xaf,0xf2,0xce,0x43,0xa5,0xcb, + 0xfc,0x83,0x5a,0xd1,0x66,0xfc,0x24,0xa2,0x82,0xea,0x49,0xd2,0x36,0x91,0x88,0x85,0x81,0x5d,0xad,0xae, + 0x10,0x9a,0x17,0x75,0x48,0x09,0x85,0xe5,0x34,0x4b,0x60,0x47,0x23,0x06,0x07,0x95,0x73,0x64,0x66,0x69, + 0x6c,0xbd,0x2e,0x2a,0xd6,0x56,0x54,0x26,0x6c,0xfe,0x35,0x85,0xaf,0x1f,0x3b,0xa1,0x22,0x43,0x27,0x55, + 0xdf,0x2b,0xd3,0xf7,0xa4,0xd5,0xb7,0xd5,0x33,0xe0,0x5c,0xbb,0x82,0xdb,0xb0,0xee,0x53,0xa5,0x06,0x47, + 0xdc,0xf3,0x86,0xa8,0x70,0x31,0x1d,0x49,0x8d,0x6f,0x32,0x70,0xed,0x95,0x66,0x84,0xde,0x8c,0x85,0xcd, + 0x2e,0xa4,0xcd,0x5d,0xcd,0x47,0x3b,0x44,0x58,0xf0,0x6e,0x42,0xec,0xed,0x3a,0x69,0x56,0xd2,0x4d,0x95, + 0x14,0x65,0x4f,0x5d,0x23,0xbd,0x44,0x79,0xfa,0x01,0xe0,0x52,0x9a,0xf9,0xed,0x40,0xe5,0x98,0x3d,0x4c, + 0xd7,0x2b,0xd5,0x2b,0x80,0x2e,0xe8,0xa9,0x4e,0xa5,0x86,0x1d,0x58,0xa2,0x14,0x48,0x94,0x93,0xd4,0x22, + 0x07,0x91,0x69,0x02,0x19,0x36,0xf1,0xe0,0xa8,0x0c,0x63,0x04,0x2d,0xe1,0x73,0xc3,0xf2,0x87,0xf2,0xcc, + 0x87,0x06,0xba,0x00,0x25,0x3f,0x0c,0xd3,0xb9,0x25,0x1a,0xe0,0x1a,0x59,0x44,0xe4,0x1b,0x04,0x88,0x64, + 0xa0,0x3f,0xa2,0xb6,0x45,0xfa,0x4f,0xb4,0x41,0x26,0x0d,0x10,0x7f,0xa0,0x1b,0xa0,0x23,0xca,0x0d,0xe8, + 0xad,0x5f,0xaf,0x27,0x1c,0x59,0x46,0x47,0x6d,0x49,0xcc,0x5a,0x96,0x83,0x93,0xcb,0x52,0xc9,0x50,0x75, + 0x48,0x3c,0x77,0x41,0x3b,0xcd,0xeb,0xea,0x0d,0x4a,0x15,0xc0,0x64,0xe1,0xd3,0x01,0xd6,0x5c,0x54,0xfb, + 0xd0,0xe5,0x16,0x0d,0xcf,0x5e,0x56,0x4d,0xe4,0x78,0x9a,0x62,0x33,0x2e,0x08,0x7c,0xcb,0x97,0xc0,0xf0, + 0xaa,0x58,0xc9,0x42,0x28,0xa2,0x85,0x3c,0x26,0xc1,0xf4,0x59,0x5d,0xd5,0x4e,0xaa,0x58,0x4a,0x29,0x22, + 0xd1,0x75,0x74,0x80,0xde,0xde,0x7f,0x61,0xee,0xff,0x85,0xfd,0xba,0xdc,0x2d,0x7b,0x55,0xdc,0x6c,0x25, + 0x1e,0x57,0x3b,0x5c,0xac,0x96,0x20,0x4b,0x7a,0x62,0xa6,0x23,0x96,0x6a,0xb5,0x80,0x1e,0x7c,0xe4,0xab, + 0x9b,0x57,0x78,0x3c,0x7c,0xa9,0x53,0xe3,0xd0,0xc6,0x39,0x46,0x0b,0x11,0xd4,0x2e,0x34,0x1d,0x99,0xe2, + 0x1d,0x8a,0x62,0x1e,0x8e,0x00,0x74,0x00,0x7b,0x5f,0x1d,0x04,0xf2,0xf7,0x81,0xfc,0x7d,0xf8,0x85,0xfc, + 0x7d,0xf0,0x50,0xfd,0xfd,0x4a,0xa5,0x7f,0x19,0x98,0x00,0x64,0x52,0xe1,0x73,0x55,0x40,0x55,0x78,0xf8, + 0x79,0xa0,0xd5,0x8b,0xa7,0x50,0x75,0x97,0x52,0x0f,0xee,0xab,0xe6,0xe5,0xcf,0xc1,0xbe,0xfa,0xab,0x7a, + 0x3b,0xf8,0x42,0x25,0x7c,0xf1,0xf9,0xfd,0x7f,0xaa,0x32,0x5f,0xde,0xd7,0x95,0xe8,0xeb,0x81,0x6e,0xf4, + 0xaa,0x70,0xcc,0xc3,0xdf,0xe3,0xf0,0xab,0x7f,0x12,0xcb,0xf2,0x28,0x3c,0xb8,0x7f,0x7f,0xbd,0xa6,0x9f, + 0x5f,0x7c,0xce,0x3f,0xbf,0xda,0x1f,0xa9,0xce,0x03,0x4a,0x7c,0xf8,0x15,0x27,0x7e,0xfe,0xcf,0x91,0x23, + 0x86,0x10,0x4e,0xe0,0xf0,0xb3,0x4f,0x47,0x40,0x12,0x2c,0x93,0xdc,0x75,0x0a,0x2e,0x5c,0x67,0xdf,0xd9, + 0xb1,0x82,0x17,0xef,0x43,0x86,0x96,0x14,0xaf,0xa2,0x57,0x12,0x94,0x8d,0x10,0x6e,0xe9,0x7f,0xa3,0xa3, + 0xd5,0x75,0xbe,0xb9,0xd5,0x97,0x5d,0x8f,0xdd,0x34,0xaa,0xb2,0x8c,0x32,0xcf,0x01,0xf5,0xf0,0xe0,0x21, + 0xc4,0x3a,0x77,0xef,0x3e,0xf8,0x0a,0x7f,0x47,0x78,0x6b,0x53,0x2a,0x41,0x3e,0xe5,0x83,0x15,0x0c,0x9c, + 0xcf,0x9c,0x7e,0xa9,0x03,0xa0,0x8b,0x7f,0xab,0x4b,0x8d,0x0b,0x2b,0xae,0x4c,0xfb,0xde,0x80,0xa6,0xc2, + 0x91,0x90,0x7d,0x3d,0xe5,0x29,0xcf,0xf1,0xe7,0xed,0xf2,0x67,0x51,0xf1,0xfa,0x2a,0xd5,0x81,0xf6,0xfc, + 0x0f,0x61,0x17,0x81,0xfa,0x22,0x2d,0x17,0x56,0xb0,0x30,0xfc,0x1c,0x3c,0x47,0x64,0x9b,0xe4,0x22,0x26, + 0xe6,0xe1,0x22,0x2a,0xfd,0xd3,0x8f,0xae,0x28,0x5e,0xfc,0x54,0xb5,0x93,0xf0,0x5a,0x1c,0x6b,0x3c,0x6b, + 0x04,0xa9,0xac,0xf9,0x34,0xb2,0x19,0xc0,0x78,0x80,0xd3,0x16,0xca,0x1f,0x7e,0x47,0x3c,0x39,0xc1,0xe7, + 0xe8,0x7a,0x13,0xe8,0x88,0x44,0x8c,0x13,0xae,0x4d,0x61,0x83,0x2e,0x69,0x44,0x2f,0x55,0xba,0x54,0xf2, + 0xf4,0x75,0x87,0x40,0x8b,0x43,0x9d,0xda,0xe9,0xf4,0xa6,0x24,0x6a,0xa1,0xf4,0x2d,0xc2,0x27,0x66,0x63, + 0x02,0xfb,0x32,0x2a,0x3b,0x22,0x30,0x4a,0x48,0x53,0x34,0xca,0xbe,0x83,0x7f,0x64,0x24,0xf1,0x32,0x2e, + 0x8a,0x68,0x8e,0x3b,0xbc,0x94,0xbb,0x4f,0x5d,0x3f,0xd4,0x8d,0x78,0x9c,0x3a,0xb1,0xe6,0xe8,0x57,0x29, + 0xbf,0xa2,0x54,0xac,0x3c,0x82,0xc9,0x50,0xaf,0x90,0x84,0x4b,0x04,0x9a,0xca,0xae,0x67,0x15,0x66,0x1d, + 0x89,0x49,0x9e,0x9c,0xc6,0xc8,0x7a,0x06,0x53,0x1f,0xd6,0x93,0x64,0xa6,0x4d,0x8a,0xe9,0x12,0xe2,0x0c, + 0x6e,0x53,0xc5,0xe3,0x50,0x4b,0x28,0xb2,0x70,0xde,0x81,0x3c,0xcb,0x4a,0x1d,0xe4,0x1e,0xdf,0x82,0xf4, + 0xda,0x29,0xb5,0xb5,0xe6,0xe7,0x53,0x1e,0x0b,0x0a,0x84,0xcd,0xb2,0x6a,0xa7,0x06,0x33,0xa2,0xcf,0x4e, + 0x89,0x91,0x91,0xc5,0x69,0x15,0x6b,0xe4,0xeb,0x5a,0x05,0x31,0x86,0xa9,0xe8,0x9f,0x2e,0xd8,0x48,0xe1, + 0x57,0x08,0xe2,0x5a,0x95,0x3b,0x8b,0xb1,0xa3,0xde,0x3a,0x04,0xe4,0xb7,0x42,0x40,0x0e,0x7a,0xb1,0x0d, + 0x01,0x66,0x7b,0x79,0x4f,0x8b,0x30,0xef,0xde,0x4c,0x3c,0xb0,0xbf,0xd4,0x0b,0xfb,0xdf,0xb6,0xa7,0xbe, + 0x75,0x59,0xa8,0x65,0xfb,0x90,0xf2,0x33,0x9f,0xf9,0xc1,0xb7,0xbb,0xf8,0x05,0xe4,0xf5,0xad,0x0d,0xe8, + 0x4e,0x35,0x20,0x59,0x7d,0x57,0x5b,0xe6,0xf5,0xfe,0x06,0x5c,0x8c,0x5c,0x6b,0x61,0x5a,0x50,0xf1,0x37, + 0xa6,0x0b,0xde,0x5c,0x5e,0x49,0xf0,0xc8,0xaa,0x02,0x2c,0xa8,0x11,0xd5,0x7f,0x37,0xe1,0xb4,0x76,0xec, + 0xec,0x82,0x7f,0x6b,0x38,0xda,0x0f,0xdc,0xf3,0x66,0x98,0x5a,0xed,0x08,0x4e,0x86,0xe6,0xb6,0x2a,0xd7, + 0x46,0x34,0x58,0xa5,0x37,0xf5,0xac,0x04,0x9f,0xad,0x36,0x3a,0xa0,0xac,0xd6,0xac,0x4a,0x73,0x1b,0x2d, + 0x58,0x59,0xba,0x85,0x1a,0x60,0x74,0x83,0x4b,0xb3,0x95,0x5a,0xa6,0x3d,0x12,0x09,0x1b,0xb7,0xd9,0xf8, + 0x57,0xda,0x6b,0x2b,0x52,0x2b,0x6f,0x8e,0xd1,0x02,0x86,0xde,0xe2,0x58,0x91,0xb5,0xde,0xae,0x6d,0x4f, + 0xb6,0x4a,0x2b,0x20,0x10,0x97,0x89,0x1b,0x8e,0x48,0x5e,0x2f,0xa1,0x29,0x2e,0x3c,0x1c,0x6a,0x7a,0xd4, + 0x2e,0xb0,0xf1,0xf9,0x35,0xbc,0x50,0x89,0x47,0x4c,0xed,0x19,0x67,0xb2,0x9b,0x96,0x27,0xc7,0x1a,0x69, + 0xcf,0xc3,0x82,0x7c,0x42,0xc2,0x67,0x20,0x8a,0x6c,0x65,0x6d,0x86,0x7c,0x0b,0x70,0x24,0x9e,0x86,0x9b, + 0x89,0x60,0xff,0x56,0xd7,0xb1,0x2a,0x2c,0x5c,0x28,0x7f,0x4c,0xf8,0x5d,0xa2,0xe7,0x2d,0x47,0xae,0x22, + 0x80,0xcf,0x85,0x90,0x46,0x34,0x0f,0x45,0x48,0xaf,0x20,0xa0,0x5e,0x20,0x83,0xe7,0xc6,0x06,0xa1,0xb3, + 0x06,0xbb,0xb6,0xf0,0x46,0x0b,0x1d,0xf4,0x77,0x3f,0xb0,0xef,0xad,0x85,0x67,0xd2,0x59,0x03,0xbb,0xc1, + 0x33,0xd9,0xfe,0xf8,0x70,0x8c,0xaa,0x00,0xe6,0x15,0xc9,0x63,0x05,0x35,0xe7,0x21,0x68,0xaa,0xa7,0x8a, + 0x7b,0x7e,0xf7,0xae,0xc3,0x8f,0x89,0x9b,0x4d,0x25,0xd2,0xbf,0x7b,0x37,0x33,0x3d,0x13,0x53,0x3a,0xa5, + 0xd6,0x5d,0xe7,0xc5,0xac,0x27,0xb3,0xe8,0x61,0xb5,0x7b,0x49,0xd1,0x83,0x93,0x99,0x1e,0xdd,0x01,0x3d, + 0x5e,0xeb,0x5e,0x2c,0x22,0xd3,0xa2,0x07,0xf3,0x87,0xde,0x59,0x74,0x19,0x4b,0x05,0x29,0x4f,0x85,0x07, + 0xc4,0x05,0x75,0xcc,0xbd,0x8d,0xd3,0xc1,0x16,0xac,0x88,0x01,0x84,0xf3,0xd0,0xe6,0x8a,0x74,0xdd,0x00, + 0x2b,0x78,0x3e,0x5b,0xd0,0x3f,0x50,0xb1,0xdc,0xd2,0x9e,0xf0,0xf6,0xd3,0x91,0x03,0xf3,0xa9,0xe6,0xb2, + 0x04,0x94,0x5a,0x0e,0x57,0x10,0x7e,0x41,0x9c,0xa9,0xbc,0xfe,0xfb,0x89,0x1f,0x0d,0x12,0x57,0x62,0x4f, + 0xe0,0x68,0x1c,0x86,0x2d,0x44,0x31,0xa1,0x9e,0xe8,0x72,0xe9,0x78,0x20,0xd9,0x0c,0x0f,0x2d,0x7a,0x2e, + 0x81,0xdd,0xe0,0x32,0x83,0x3c,0xdc,0x96,0x13,0x55,0xee,0x10,0xac,0xd6,0xe0,0x5a,0x4e,0x33,0xa9,0xd0, + 0xc2,0xbb,0x51,0xa3,0x8f,0x18,0x3f,0xc7,0xb1,0xd5,0xfa,0x8c,0xbc,0xf9,0x28,0xed,0xf7,0x59,0x3e,0xe3, + 0x5c,0x2b,0xff,0xaf,0x39,0x9e,0x15,0xac,0x67,0x7d,0x56,0x4f,0x71,0x94,0xae,0x58,0x8e,0xc7,0x7c,0xb4, + 0x25,0x2c,0x29,0x7d,0x88,0x8d,0x85,0x6a,0xc7,0xd9,0xb0,0x0e,0xcb,0xd0,0xcb,0xfa,0x61,0xe2,0x9b,0x64, + 0x91,0x49,0x9c,0x0b,0xdd,0x9d,0x79,0x23,0x87,0x9d,0x8d,0x06,0xef,0xab,0x04,0x20,0x93,0x29,0x51,0xfa, + 0x2b,0x71,0x4a,0xe7,0x0c,0xf5,0x10,0xa4,0xdb,0x4c,0x3c,0x62,0x47,0x1b,0xd1,0x92,0x77,0xfe,0x07,0x8f, + 0x75,0x44,0x63,0x06,0x61,0x4e,0x3b,0x02,0x91,0x1f,0x75,0xe9,0x05,0xf8,0x57,0x73,0x1c,0xb7,0xce,0xa4, + 0xdc,0x30,0xfb,0x58,0x5f,0xd5,0x30,0xaf,0x89,0xaa,0xd3,0x8a,0xf9,0xf4,0x25,0xf8,0x74,0x53,0xb6,0xa2, + 0xa7,0xc3,0x2c,0x45,0x7b,0x26,0x58,0x5b,0xfd,0x83,0x6d,0xc3,0xf5,0xe8,0x78,0xe9,0x86,0x49,0x73,0x53, + 0x22,0x9a,0x50,0x32,0xd6,0x0c,0x5f,0xa4,0xde,0xa5,0xc1,0x59,0xc9,0xf8,0x03,0xc5,0xd1,0x46,0x8a,0x39, + 0x17,0xad,0x57,0xe6,0xdb,0xd4,0x40,0x54,0x81,0xf4,0x88,0x29,0x1d,0xa2,0xdb,0x75,0x59,0xff,0x60,0xdf, + 0x1b,0xd7,0x2a,0xe8,0xd1,0xca,0x5f,0x51,0x0b,0x37,0xd5,0x55,0x2d,0xa2,0x71,0x93,0x7e,0xdf,0x2c,0xea, + 0x86,0xc3,0xdd,0x6d,0x78,0x53,0xcf,0xc3,0xbd,0x3f,0xdc,0xe3,0xa9,0xd7,0xdf,0xf3,0xdf,0xf3,0xe7,0x15, + 0x3e,0x9f,0xd1,0x32,0x3d,0x09,0x0f,0xfc,0xb7,0xe1,0x7d,0xff,0x4e,0xf8,0xc0,0x7f,0x4d,0xbf,0xbf,0x0e, + 0x1f,0xfa,0x6f,0xc2,0xcf,0xfd,0x77,0xe1,0x17,0xfe,0xf3,0xf0,0x9f,0xfe,0x8b,0xf0,0x4b,0xff,0x47,0x30, + 0xf4,0x3f,0x1e,0xbd,0x1e,0x87,0xd7,0x57,0x45,0x40,0x7f,0x7d,0x66,0x03,0x83,0xa3,0x07,0xfe,0xb3,0xb1, + 0xef,0x1c,0x39,0xc1,0xd1,0xd7,0x63,0x9f,0x2e,0xf9,0xe0,0xe8,0xf9,0x78,0xe3,0xff,0x78,0x74,0xa0,0x4a, + 0x1e,0x50,0xee,0x80,0x72,0xef,0x77,0x96,0xba,0xaf,0x4a,0xdd,0xaf,0xb7,0xb7,0xaf,0xfe,0x0a,0x57,0x29, + 0x3f,0x50,0xfc,0x01,0x15,0xbf,0xad,0x9c,0xcf,0xbd,0xfa,0x4f,0x74,0xbf,0xfc,0xc5,0x3d,0xe3,0x4b,0xfa, + 0xa6,0x2f,0x34,0xf7,0x35,0x35,0xe7,0xdc,0xa3,0xac,0x37,0xa8,0x77,0xcf,0xb9,0x17,0x1c,0xbd,0xab,0xa6, + 0xe3,0xbf,0xa5,0xaf,0xb1,0x83,0xc6,0xee,0x48,0xc5,0x17,0x6c,0xcf,0x87,0x2c,0x19,0xce,0x1b,0x5d,0x1f, + 0x09,0xb5,0x12,0x6f,0x54,0x89,0x77,0x54,0x82,0xdb,0x6d,0x95,0x40,0x47,0xb2,0x31,0xdf,0xb0,0xcd,0x33, + 0x91,0x6a,0xf9,0x2a,0x5e,0xb3,0x2d,0xe7,0x7a,0x77,0x74,0x74,0x3c,0x1d,0x8c,0xfb,0xeb,0x7b,0xec,0x03, + 0xeb,0xde,0xda,0x61,0xb7,0x58,0x8e,0x47,0xe5,0xe0,0x98,0x68,0x0b,0xda,0xea,0xc6,0x5a,0xaf,0x2c,0xac, + 0xc5,0x50,0xf6,0x86,0x2e,0xb5,0xb6,0x84,0xca,0xc6,0x58,0x16,0xc2,0x2a,0xa1,0x9f,0xd1,0x21,0xcf,0xd2, + 0x61,0xef,0x22,0x84,0xf2,0xc1,0x81,0x5b,0x85,0xbb,0x07,0x74,0x35,0xbe,0xe6,0xb8,0x77,0x67,0x00,0x17, + 0x9c,0x99,0xb3,0xa3,0x27,0xe3,0x9a,0x71,0x87,0xbe,0xa7,0x52,0xd6,0xe5,0x11,0xe8,0x85,0x8b,0x42,0xc9, + 0x80,0xad,0xfe,0xd1,0xb3,0x8e,0x1a,0x90,0xd4,0x8e,0xd2,0x30,0x0f,0xd2,0x3e,0x11,0xfe,0x54,0xe8,0x6d, + 0xad,0x10,0x2a,0x11,0x65,0x34,0x23,0xd8,0xa7,0xbc,0x3b,0xb5,0x3c,0x68,0x44,0x3e,0xde,0xf7,0x66,0xbb, + 0xbb,0x34,0xbc,0xaf,0x7d,0x29,0x6a,0xde,0x22,0x31,0xda,0x1d,0x3c,0x7d,0xb8,0x69,0xb8,0x64,0x97,0x79, + 0x46,0x2c,0x8a,0xb1,0x43,0x1d,0x73,0xa8,0x64,0xe0,0x0b,0x76,0x18,0xbf,0xea,0xf7,0xe1,0x3f,0x91,0x95, + 0x85,0xe0,0x73,0x71,0x85,0x17,0x8b,0x9d,0x06,0x3f,0xcd,0x19,0xfd,0x03,0xc6,0xd6,0x10,0x1b,0xbd,0xa1, + 0x5b,0xf9,0x1e,0xab,0x75,0xad,0xd7,0xf8,0xfd,0xee,0xee,0x5d,0x02,0x0b,0xfc,0x36,0xbe,0xbb,0xa9,0x59, + 0xc2,0xd6,0xd4,0x70,0xbf,0x54,0x63,0x44,0x84,0x65,0xd7,0x53,0x56,0x5c,0x53,0x88,0xc5,0x40,0xe7,0x14, + 0xe1,0x8f,0x47,0x8b,0xb1,0x47,0x78,0x67,0xbd,0x2e,0x58,0x11,0x74,0xbd,0x7e,0x01,0xd9,0xf2,0x0b,0xad, + 0x15,0xc4,0x7d,0xc2,0x8e,0xc5,0x77,0xa3,0xf0,0xec,0x28,0xa3,0x33,0x38,0x96,0x77,0xd8,0x0c,0x07,0x2d, + 0x0f,0xcd,0x92,0xe6,0xa3,0x32,0xc8,0x65,0xfa,0xc4,0xff,0x78,0xb5,0x06,0xc2,0xf0,0xb9,0x71,0x8e,0x2a, + 0xca,0x6e,0x86,0x20,0xd5,0x30,0x12,0xc2,0xff,0x30,0xc8,0xae,0x8d,0x6f,0x03,0xd9,0x3c,0x2e,0x01,0x62, + 0x2c,0xc8,0x6d,0xdc,0x8d,0x90,0x91,0x97,0x95,0x83,0xd6,0xea,0x11,0x46,0x7b,0xdf,0xd6,0xf0,0x09,0x8f, + 0xb5,0x3c,0xef,0xbc,0x41,0x61,0x20,0xbc,0x1b,0x86,0xae,0xdd,0x69,0xd7,0x5a,0xb2,0xac,0x7d,0x2a,0x53, + 0x33,0x42,0xd2,0xca,0x05,0x77,0x36,0xd4,0x8e,0xb7,0xa3,0xa3,0xfc,0xa8,0x18,0x5b,0x8f,0x1d,0x50,0x36, + 0xf3,0xae,0xc5,0x0d,0x95,0xb2,0x4d,0x88,0xc2,0x89,0x5f,0x54,0xc8,0x34,0x92,0xd3,0xfa,0x72,0xcb,0xc9, + 0x19,0x56,0xfc,0x1f,0xb8,0x71,0x68,0xcb,0x9a,0xd7,0x25,0x21,0x1e,0xd7,0x6b,0x27,0x4e,0x77,0x7f,0x7e, + 0xeb,0xb0,0x3c,0xb7,0xce,0x6b,0x57,0x79,0x6c,0x91,0xa4,0x58,0x5c,0x26,0x2f,0x55,0x18,0x73,0x4b,0x06, + 0x24,0xe9,0xb0,0xa2,0x4c,0x2d,0x11,0x0f,0xa7,0x0e,0x95,0x2b,0xeb,0x0b,0x79,0xe0,0x93,0x5f,0x33,0xce, + 0x27,0x72,0x25,0x64,0x05,0x36,0xf9,0x5e,0xaf,0xc1,0x28,0x1f,0xaa,0x22,0x17,0x49,0x01,0x57,0x20,0xe8, + 0x5b,0xbe,0x44,0xe0,0xa9,0xbd,0x4b,0x43,0xa8,0x10,0xb3,0x6c,0xa1,0x96,0x0e,0xae,0x36,0xb4,0xf8,0x5e, + 0x61,0x79,0x77,0x76,0xe4,0x4b,0xf7,0xae,0x26,0xca,0xfa,0x50,0x56,0x61,0x3b,0x5d,0x2a,0xd9,0x29,0xba, + 0x87,0x4e,0xd9,0x83,0x41,0x22,0x71,0xb7,0xd4,0x81,0x48,0xdc,0x9d,0x2d,0x59,0xaa,0xdd,0xfa,0x82,0xe2, + 0xe5,0x1d,0x84,0xbd,0xe4,0xd9,0x8b,0x5a,0xcf,0x01,0x37,0xc0,0xf2,0x85,0x57,0x55,0x33,0x51,0xe5,0x2e, + 0x80,0x90,0xa0,0x24,0xf3,0xfb,0x41,0x03,0xf2,0x15,0x56,0x71,0x77,0xa0,0xce,0x98,0xae,0xd7,0xb9,0x5b, + 0x4a,0x83,0xb5,0xe3,0x22,0xe1,0xb4,0xb5,0x51,0xfa,0x09,0x9c,0xc6,0xfe,0xf2,0xd2,0xd5,0xef,0x9d,0xa9, + 0x5f,0x87,0x9a,0x00,0xee,0x1b,0x05,0x54,0x88,0xec,0x6a,0x00,0x49,0x10,0xf9,0x35,0xf0,0x08,0x0a,0xa2, + 0xc8,0xfc,0x9f,0xc2,0xeb,0xcb,0x8b,0xe0,0x7a,0x53,0x55,0xa4,0xef,0x66,0x4d,0x4a,0xaa,0x57,0xbd,0xae, + 0x38,0xbc,0x4d,0x73,0x0c,0x68,0x4b,0x60,0x86,0x33,0xf5,0xb2,0xe1,0x47,0xe7,0x0e,0x50,0xc6,0x46,0x5f, + 0x2e,0x2f,0x6d,0xd7,0xc3,0x32,0xd9,0x8e,0xe3,0x75,0xa6,0x7d,0x41,0x4b,0x7b,0xc3,0xc6,0x6f,0x48,0x5f, + 0x2a,0xb0,0xa7,0xdd,0x21,0x1a,0x12,0x1b,0x03,0xd5,0x58,0xbf,0x59,0xb6,0xdc,0xf8,0x76,0xa7,0x9d,0xec, + 0x7e,0xdb,0x17,0x42,0x7d,0xa3,0x2b,0x75,0x33,0xbb,0xa9,0x2d,0xb2,0x83,0x5a,0x63,0x0d,0xc3,0x01,0xe6, + 0xf6,0xec,0x10,0x26,0xa9,0x65,0xab,0x59,0x32,0x02,0x4c,0x1f,0xef,0x1e,0x78,0xf2,0x3e,0x3d,0x81,0x1c, + 0x13,0x0a,0x92,0x6e,0xc7,0x98,0xfc,0xe6,0x70,0x6a,0xb2,0xad,0xa6,0x79,0xa5,0xc8,0xfe,0x6a,0x2e,0xc1, + 0x69,0xf1,0x06,0x77,0xb8,0x92,0xeb,0xdc,0x41,0xd3,0xb5,0x10,0x15,0xb6,0x41,0x43,0x63,0x31,0x6c,0xfb, + 0x86,0xb3,0x4e,0xa7,0xc8,0xcd,0x2a,0xc4,0x08,0xb2,0x13,0xf4,0x66,0x62,0x2b,0xf0,0xc5,0xc6,0xbf,0x9e, + 0xc6,0xf1,0x52,0x54,0x93,0xdb,0xb3,0x53,0x62,0xcc,0xfa,0x55,0xbf,0x53,0xa1,0x26,0x3a,0x68,0x15,0xfe, + 0x6a,0xdd,0x38,0xb1,0x8e,0x65,0x72,0x51,0x5f,0x07,0x16,0x90,0x59,0x8b,0x21,0x80,0x6f,0xad,0x06,0x7b, + 0xf6,0xb8,0x43,0xec,0x2f,0xac,0x58,0x74,0x2e,0xfb,0xe5,0x6f,0x8c,0xdf,0xbf,0x4e,0x2e,0x88,0x54,0x4f, + 0x20,0x6f,0x97,0x29,0xfc,0x84,0x86,0xe9,0xbc,0xdb,0x63,0x6e,0x6c,0x02,0x0a,0xe9,0xb3,0xb9,0xa5,0x68, + 0xa4,0x00,0x80,0x72,0x95,0x80,0xbb,0x60,0x0f,0xe0,0x3f,0x35,0xef,0x89,0xdb,0xeb,0xd7,0x1f,0x17,0x74, + 0x33,0xb5,0xc3,0x7f,0x7b,0x23,0xf6,0x43,0x83,0x6e,0x42,0xd6,0xe5,0x96,0xb9,0xea,0x47,0xf7,0xaa,0x7c, + 0x11,0x97,0x1d,0xa7,0x0f,0xbb,0x81,0xf5,0xd6,0xbf,0xaa,0x65,0x8f,0xb9,0xb3,0x3a,0x46,0xba,0xad,0xd3, + 0x7a,0xe9,0x8e,0xfa,0x1f,0x3b,0x88,0x7a,0x35,0x3d,0x18,0x85,0x0c,0x6f,0x1c,0x85,0x2a,0x63,0x17,0xef, + 0xee,0xd4,0xdc,0xcb,0x3c,0x4c,0x8d,0x5b,0x6f,0x6c,0xdb,0x94,0xaa,0x57,0xe9,0x6e,0xdf,0x22,0x0d,0x50, + 0xbc,0x13,0x61,0xdf,0xd8,0x5b,0x67,0x8d,0xed,0x4d,0x75,0x8f,0xa2,0xfb,0x96,0x8f,0xeb,0x47,0xde,0x06, + 0xf7,0x9b,0xb6,0x57,0x1f,0x9e,0x76,0xed,0x06,0xb0,0xdf,0xd4,0x48,0xe3,0x20,0xb5,0xdb,0xaa,0xc1,0xfc, + 0x4d,0x2d,0xd5,0xce,0x52,0xa3,0x1d,0x28,0x97,0x29,0xaf,0x4e,0x35,0x5d,0x23,0x62,0xae,0x12,0xd3,0x12, + 0x0c,0xbc,0x95,0x1c,0x5f,0x41,0x83,0x12,0xfa,0x6b,0xc8,0x91,0x07,0x79,0x26,0xcb,0x8e,0x50,0x39,0x19, + 0xc3,0x70,0x23,0x48,0x1b,0x9d,0x25,0xc5,0x37,0x36,0x25,0xd6,0xe1,0x12,0x27,0x46,0xc4,0x46,0xd7,0x42, + 0x99,0xaa,0xa3,0x1a,0x09,0xd7,0x6c,0xb5,0x5b,0x0c,0x56,0x6a,0xde,0x50,0xe1,0xe4,0x16,0xf6,0x9d,0x84, + 0x15,0x49,0x55,0xa7,0x80,0x4a,0x15,0x77,0xb7,0x4e,0xf6,0x4f,0x0c,0xcb,0x30,0x11,0x83,0x21,0x56,0xc5, + 0xd4,0x11,0x89,0x77,0x58,0x81,0xc0,0xee,0xc3,0xd2,0x4e,0xd5,0x8f,0xa4,0x88,0x14,0x4e,0x5c,0x53,0xad, + 0xdc,0x46,0xb3,0x81,0x2d,0x3d,0xb1,0x49,0xad,0xb9,0x55,0x38,0xd1,0x7c,0xc0,0xaa,0xb2,0x9e,0xfe,0x8f, + 0xc0,0xf1,0xd8,0x4b,0x89,0xab,0x03,0x63,0xc1,0xe1,0x38,0x4f,0x7f,0xa5,0xa6,0x0f,0x73,0x51,0x1d,0xa2, + 0x85,0x23,0x14,0xac,0x38,0x39,0x58,0x35,0xd6,0x11,0x15,0x9b,0x30,0x60,0x87,0x94,0x0e,0x53,0x1f,0x3a, + 0xce,0xe2,0xab,0x60,0xcf,0xfd,0x8f,0xe0,0xe8,0xf8,0xea,0x78,0xf7,0x64,0x3d,0x18,0xf7,0xbd,0xbd,0x79, + 0xa5,0x6d,0x3e,0x81,0xe6,0x43,0x01,0x3e,0xb5,0x68,0x3c,0x39,0xf3,0x5a,0x89,0xba,0x47,0x71,0x34,0x41, + 0xbc,0x9f,0x95,0xb2,0xee,0x76,0xef,0x13,0xe7,0xac,0xdf,0xc5,0xaa,0xfd,0xe4,0x51,0x2c,0x68,0x14,0x4e, + 0x1e,0x5d,0x29,0x21,0x9e,0x5a,0x25,0x22,0x3c,0xab,0x44,0xa1,0xc6,0x03,0xe5,0xa7,0x41,0x5a,0xa9,0xc1, + 0x1a,0x2c,0xfe,0xac,0xab,0x99,0x41,0x8b,0x5d,0x1d,0xf5,0xbe,0x86,0x42,0x3b,0x44,0x6e,0x62,0xe9,0x1d, + 0x4f,0x7b,0xac,0xe2,0xae,0x7c,0x18,0x4e,0xc3,0xaa,0xc2,0x70,0x16,0x4e,0x55,0xd8,0x14,0x1e,0xdb,0xb4, + 0x71,0xfd,0x21,0x2a,0xb9,0x88,0xe8,0xa7,0xcd,0x67,0xcc,0x85,0x5a,0x48,0x62,0xe8,0x5c,0x3d,0x4d,0xeb, + 0xe4,0xb9,0x28,0x31,0x83,0xa2,0xd1,0x28,0x32,0x26,0xd1,0x2b,0x7f,0xe6,0x05,0x51,0xc5,0xfa,0xd5,0x37, + 0x4b,0x29,0xda,0xd6,0xb7,0xab,0x2e,0xf8,0xad,0x10,0x6f,0x7d,0x45,0x4d,0x20,0x96,0x4a,0x0b,0x28,0x2c, + 0x47,0xb9,0xb2,0x30,0x43,0xbc,0xf4,0x46,0x5f,0x66,0xca,0x2d,0x0c,0xa1,0x0f,0x98,0x7d,0x9c,0xec,0xce, + 0x4a,0x1f,0x56,0xa5,0xa6,0x9c,0x91,0x40,0x13,0x20,0x8c,0x72,0xb7,0xab,0x46,0xea,0x43,0x3e,0x6b,0x6a, + 0xa8,0x80,0xf3,0x93,0x60,0xd2,0x1c,0x53,0x0b,0x52,0x2b,0x0a,0x51,0xf9,0x1f,0x6a,0xaa,0x19,0xee,0x3e, + 0x1c,0x46,0xbb,0xbb,0xbd,0xc7,0xfb,0x43,0x0f,0xaa,0x7f,0x96,0x4a,0x6a,0xd4,0x7f,0xc8,0x7c,0xf8,0x8e, + 0x51,0xad,0x71,0xd4,0xf3,0x4b,0xa2,0x50,0x9b,0x72,0x87,0x90,0xc1,0xd2,0xaf,0x30,0xcc,0x74,0x69,0xa2, + 0xd1,0x55,0x50,0x91,0xfa,0x8a,0xeb,0x6c,0xbe,0x64,0x03,0x8a,0xd5,0x82,0xfb,0x2c,0x65,0x88,0x2e,0x8a, + 0xed,0xf0,0xba,0xfa,0x74,0x78,0x55,0x3a,0x2d,0x0b,0x0b,0x64,0x6b,0xca,0x52,0xb1,0x51,0x96,0xca,0x2c, + 0xfb,0xfa,0x16,0x2c,0x4e,0x7c,0x78,0xd9,0xcc,0x95,0x1f,0xe8,0xfa,0xb2,0xd7,0x71,0x76,0xe3,0xd9,0xa0, + 0xb5,0xde,0x07,0xd0,0xff,0xe5,0xf5,0x2e,0x1b,0x2a,0xc0,0x10,0x4b,0xa9,0xe1,0x0a,0xb4,0x7a,0xb4,0x84, + 0x6a,0xa4,0x39,0x5f,0x21,0x18,0x96,0x3a,0x4d,0x1d,0x94,0x26,0x1b,0x65,0x9b,0xe9,0x94,0xda,0x5c,0xa8, + 0x79,0x31,0x74,0x60,0x33,0xad,0x1d,0xd7,0xde,0xb6,0x72,0xfb,0xb6,0x01,0xcf,0xe8,0x50,0xec,0x5d,0x9b, + 0x95,0xfd,0xd5,0xcd,0xb2,0xe9,0xfd,0x44,0xee,0xac,0x1b,0x76,0x86,0x4e,0x13,0x1d,0x8b,0xbc,0xc1,0x87, + 0x34,0x67,0x59,0x3d,0x36,0x8e,0xda,0x57,0x4a,0xc9,0xea,0x7d,0xd6,0xea,0x9a,0xe7,0x5a,0xae,0xbc,0x6d, + 0xa9,0x21,0x11,0x08,0x1c,0xa7,0x79,0x06,0x27,0x9d,0x0b,0x6c,0xac,0x8e,0xc4,0x7c,0xb7,0x05,0x16,0x9f, + 0x0f,0x0b,0x05,0x16,0xd1,0x51,0x61,0x83,0x45,0xd1,0xff,0xbc,0xd2,0xd8,0x1b,0x55,0x52,0xb1,0x84,0x15, + 0xaf,0x0f,0x3c,0x3f,0x73,0x15,0xce,0xb0,0xc0,0x65,0x22,0x14,0x07,0xf5,0x6d,0xe0,0x21,0xa2,0x2b,0x2f, + 0xe1,0x01,0xcb,0x3d,0xdf,0x80,0xe1,0xfa,0xa8,0x6d,0xa5,0xe5,0x23,0x48,0x26,0x5b,0xe3,0xbd,0x3f,0xcc, + 0xd5,0x78,0xd9,0x3f,0x42,0x35,0xde,0xbc,0x7f,0xdf,0x80,0x71,0x62,0xc6,0x35,0x51,0x03,0x4b,0x3e,0x16, + 0x8e,0xfd,0xd2,0x8c,0x5c,0x07,0x9a,0x49,0x9a,0x2b,0xdd,0x44,0xbd,0x96,0xa9,0xb4,0x58,0xa8,0xb5,0x46, + 0xfd,0x60,0x98,0xa9,0x51,0xe7,0xb0,0x31,0xaa,0x46,0x9d,0xf5,0x1f,0xe8,0x27,0xb6,0x06,0x76,0xcb,0xbd, + 0x0a,0xb3,0xd5,0x01,0x94,0xa5,0x49,0x78,0xe2,0x19,0xb7,0x98,0xfc,0xc6,0xd0,0x1a,0xd4,0xa7,0x5c,0xe1, + 0xb7,0x2c,0x42,0xd9,0x68,0x92,0x72,0x6b,0xba,0x53,0x1d,0x84,0xa2,0xe1,0xfd,0x2c,0x6a,0x9b,0x10,0x1c, + 0xe4,0x8f,0x8d,0xc6,0x8a,0xed,0x8d,0xb1,0x0f,0xde,0x8e,0x56,0x9a,0x12,0x9a,0xb6,0x36,0xd7,0xc7,0x34, + 0x72,0x36,0x58,0x95,0xc9,0x62,0x20,0x3e,0x11,0xb7,0x8e,0xb6,0x6b,0xf2,0x75,0x26,0xe1,0x96,0xd9,0x37, + 0xd8,0x84,0xad,0x8b,0xb0,0xb5,0xd1,0xda,0x04,0xda,0xad,0x75,0x2e,0xc6,0x5f,0x6e,0x6c,0xcb,0xa2,0x74, + 0x4f,0xa2,0xb5,0x36,0xa2,0x69,0x92,0xfc,0x69,0xfa,0xef,0x20,0x48,0x34,0xb1,0x5a,0xc2,0x23,0x36,0x01, + 0x2c,0x90,0x36,0x51,0xe9,0x85,0x07,0x79,0x27,0x8c,0x4d,0xf9,0x11,0x41,0x88,0x59,0xe4,0xc3,0x25,0x98, + 0x9d,0xd9,0xe6,0x12,0x90,0x0e,0xeb,0x82,0xbe,0x73,0x72,0x82,0x48,0x09,0xfa,0x82,0x6d,0x0b,0x70,0x8f, + 0x56,0x06,0x7f,0xc1,0x9f,0xd3,0x8d,0x05,0x59,0x4c,0xd8,0xa1,0x5d,0xe9,0x46,0x50,0x3a,0xf6,0x17,0x8a, + 0x6f,0x6e,0xc9,0xf8,0x4e,0xa6,0x2d,0x54,0xc0,0xdc,0x87,0x19,0xf8,0x96,0x66,0x45,0x61,0x51,0x5a,0xb4, + 0x9f,0x3b,0x5a,0x6b,0x5a,0x5d,0x04,0x8d,0xab,0x70,0xbb,0xc4,0xc6,0x4f,0xb7,0xdf,0x8d,0xf9,0xff,0x8a, + 0xbb,0x51,0x5c,0x14,0x96,0xe6,0x6e,0xcc,0x61,0xe2,0x5f,0x5f,0x97,0x69,0x27,0x69,0xb2,0x0d,0xa7,0x1f, + 0x6c,0xc7,0xe9,0x07,0x63,0x6d,0x58,0x61,0xa1,0xad,0xac,0x65,0xa6,0xa4,0xed,0x1f,0x46,0x2d,0x5d,0x7a, + 0x18,0x6a,0x8f,0x24,0xfa,0x33,0x1e,0xf9,0x61,0x58,0xc4,0x51,0x4b,0xe0,0x1d,0x82,0x5b,0xe3,0xeb,0xcc, + 0xfa,0x8d,0xb8,0xa4,0xf4,0x83,0xa3,0xae,0xba,0x52,0x91,0x03,0xae,0x8a,0xf9,0x52,0x7a,0x83,0xf9,0x52, + 0x2a,0xe6,0x4b,0x52,0xc7,0xf3,0x3b,0xf2,0x0f,0xc6,0xaa,0x37,0xb6,0x5a,0x52,0xf0,0x88,0xe0,0xf6,0x1c, + 0xb9,0xb4,0x81,0x78,0x6c,0x89,0xc2,0x2d,0x68,0xa7,0x26,0x53,0xd8,0x8a,0x74,0xb6,0x34,0x58,0xc3,0x12, + 0xcd,0x96,0x3a,0x11,0xce,0x5f,0x6a,0x68,0x0b,0xb2,0xe9,0x1a,0xfa,0x76,0x54,0x23,0x3d,0xff,0xff,0x8a, + 0x68,0x9a,0xaf,0x41,0x5b,0xd0,0x4c,0x47,0xb1,0x0a,0xc9,0xd8,0x0b,0x78,0x2b,0x8a,0x49,0x3f,0x12,0xc5, + 0xd4,0x1a,0xbd,0x15,0xc1,0x48,0xe9,0xdb,0xd1,0x4b,0x43,0x96,0xfb,0xbf,0x1d,0xb9,0xa4,0xb7,0x23,0x97, + 0x6e,0xd7,0x4a,0xff,0x17,0xb9,0x74,0x20,0x97,0xd4,0x20,0x17,0xa5,0x09,0x22,0x86,0x02,0x4a,0x04,0x94, + 0x10,0xc1,0x67,0x2d,0xac,0xff,0x93,0x47,0xeb,0x1c,0x5d,0x46,0xc9,0x22,0x3a,0x4d,0x16,0x09,0xf2,0xc3, + 0xeb,0xfa,0x7d,0x19,0x7c,0xa8,0xbd,0x04,0x06,0xa7,0xd8,0x1a,0xd6,0xe8,0x5d,0x2c,0xec,0xb8,0xbd,0xf0, + 0xc5,0x70,0x16,0x12,0x14,0x5e,0x12,0xec,0x53,0xd2,0xdd,0xbb,0x0a,0xe0,0xce,0x74,0x8a,0x36,0xb1,0x1c, + 0x38,0x1e,0xcf,0x28,0xd6,0xcd,0x48,0x48,0xa6,0xae,0xf1,0x7e,0xa0,0xda,0xd5,0x68,0x9d,0x3b,0xa2,0xbf, + 0x7a,0x4d,0x50,0x1a,0x6c,0x13,0xb8,0xa2,0x08,0x9c,0xd8,0xa4,0xe1,0xd9,0x96,0x26,0xd3,0x5a,0x93,0x65, + 0xbb,0xbd,0xf6,0xfb,0x98,0xfd,0xf2,0xf3,0xbf,0x02,0xfc,0x62,0xa5,0xb7,0xaa,0x2d,0xb2,0x2b,0x7e,0x8a, + 0xd8,0x16,0xe2,0x42,0x8d,0xd9,0x57,0x93,0x56,0x8f,0x6d,0x5e,0x65,0xb3,0xa9,0xac,0x22,0x6e,0x9e,0xe3, + 0xe4,0xd3,0x26,0xd9,0x62,0x70,0x92,0x2e,0xb6,0x2c,0x31,0x0c,0x4e,0x62,0x4f,0x33,0x01,0x5b,0x26,0x5c, + 0x7e,0x63,0x9a,0x99,0xc5,0x9e,0x65,0x98,0xa7,0xb1,0x4e,0xcb,0x5a,0xf3,0xf4,0x53,0x33,0xd3,0xfc,0x53, + 0x66,0x1a,0x7f,0xfa,0x4c,0x95,0xbf,0xc4,0xfa,0x58,0x73,0x66,0x9e,0x4a,0xdf,0xe8,0xfd,0xe6,0x2d,0xde, + 0xf1,0xe3,0x47,0x35,0xfd,0xef,0x85,0x31,0xc3,0x13,0xc7,0xda,0x66,0x6f,0x6a,0x41,0x57,0x07,0xb7,0xfb, + 0xb1,0xf3,0xe8,0x38,0x7b,0xff,0xbd,0xf3,0x48,0x6f,0x9f,0x07,0x6c,0xae,0xdf,0x27,0xa9,0x7b,0x82,0x4f, + 0x63,0xfc,0xe7,0x3a,0x38,0xe7,0x1c,0xa1,0x61,0xa2,0xa2,0xba,0xb3,0xe3,0xb0,0xb3,0x2a,0xfe,0x98,0x7b, + 0x25,0x6e,0x16,0xaf,0x94,0xd6,0x0e,0x8d,0xd7,0xa8,0x0e,0x88,0x51,0xd4,0x4b,0x90,0x42,0x6f,0xcb,0x9c, + 0x2a,0xcf,0x09,0x53,0x0e,0x73,0xb1,0x8f,0xca,0x07,0x2a,0x9a,0x38,0x30,0xa3,0xc2,0x75,0xa1,0xf3,0xcf, + 0xc1,0x83,0xc1,0x03,0xc7,0xef,0x32,0xd5,0x92,0x48,0xcf,0x77,0xef,0xaa,0x88,0xcf,0xbf,0x20,0x06,0x4d, + 0xf5,0x3d,0x58,0x15,0xb1,0xfb,0x92,0x10,0xb3,0x52,0x1f,0x32,0xd6,0x2e,0xd7,0x71,0x1a,0x5c,0x73,0x54, + 0xcd,0xc0,0x79,0x5b,0x46,0x49,0x5e,0x38,0x7e,0xf1,0xa1,0x28,0xe3,0x8b,0x17,0xcf,0x29,0x85,0xbf,0x7a, + 0x2f,0x9e,0x3b,0xfe,0x2c,0xc9,0x2f,0xae,0xa2,0x3c,0xfe,0x45,0xc6,0x12,0x38,0xdf,0xa8,0x84,0x9e,0x1a, + 0x5d,0xd0,0x73,0xfc,0x49,0xb6,0xfc,0x20,0x91,0x33,0x9c,0x67,0xfa,0xb3,0xf7,0x3f,0xff,0x9f,0xde,0xfd, + 0xfd,0x83,0x7f,0xf6,0x5e,0x46,0xf9,0x79,0xef,0x32,0x4a,0x7b,0x3f,0xc5,0x69,0x71,0x95,0xad,0xa6,0x74, + 0xac,0x16,0x59,0x04,0x8f,0x5b,0x81,0xf3,0x66,0x11,0xc3,0x70,0x90,0xa3,0x19,0xf4,0x54,0x6a,0x4f,0x16, + 0x4a,0x85,0x7c,0x1f,0x0c,0x06,0x8e,0x9f,0xc7,0xa7,0x74,0xbd,0xbf,0x89,0x53,0xa9,0x75,0x78,0x16,0xf7, + 0x64,0xb4,0x34,0xff,0xc5,0xa2,0x77,0x1a,0xf7,0xa4,0x44,0x3c,0xf5,0x7b,0x4b,0x69,0x32,0x8f,0x67,0x79, + 0x5c,0x9c,0x31,0x26,0xef,0x2d,0x69,0xd2,0xbd,0x68,0x46,0xa4,0x14,0x0d,0x7d,0x4a,0x73,0xe5,0xad,0x7f, + 0xca,0x51,0x3c,0x02,0xe7,0x09,0x7e,0xd4,0xd2,0xde,0x46,0x97,0xdc,0x91,0xfc,0xe5,0x21,0x5c,0x25,0xb3, + 0x84,0x56,0xaa,0x5c,0x15,0xc1,0x75,0x34,0x81,0xc7,0xcb,0x65,0x96,0xa4,0xa5,0x59,0xc5,0x27,0x6f,0xb0, + 0x12,0xd3,0xa4,0x88,0x4e,0xe9,0x12,0x0a,0x9c,0xe7,0xea,0x8b,0xc8,0x0f,0x76,0x9f,0x91,0xa5,0x08,0x77, + 0x67,0x8a,0xff,0x9a,0x7c,0x93,0x6c,0xa9,0xe0,0x27,0x88,0x5c,0xe2,0xbc,0x98,0xe2,0x15,0x38,0xcd,0xde, + 0xbe,0xe5,0x2d,0xa1,0x7f,0x7b,0xb0,0x35,0x9d,0x65,0x04,0x05,0xb4,0x59,0x93,0x28,0x45,0x44,0x0a,0xd8, + 0x6e,0x50,0xe5,0xb7,0xf4,0xb3,0x37,0xd1,0xbf,0xb1,0x23,0x69,0x4a,0xd0,0xfa,0x0d,0xdd,0xc6,0xc8,0x96, + 0xbf,0xbd,0x32,0xeb,0xa9,0x0c,0x53,0x82,0xc6,0xf5,0x63,0x56,0xf0,0xc6,0xe9,0xdf,0xb4,0x0f,0x45,0xc9, + 0x23,0x53,0x65,0xd4,0xe8,0xcc,0x2f,0x04,0xfb,0x28,0xd4,0x52,0x94,0xd1,0xe9,0xa1,0x01,0x23,0x4a,0x71, + 0x7c,0x35,0xc1,0x67,0x12,0x31,0xa6,0x57,0xa8,0x64,0xba,0x9b,0xdf,0x96,0xf1,0xb2,0x38,0xcc,0x57,0x28, + 0x1c,0x97,0x3d,0xbc,0x15,0x20,0x6c,0xfd,0x07,0x9a,0x53,0xce,0x86,0x02,0x05,0x0a,0x54,0x45,0xbf,0x81, + 0xf6,0x6a,0xb3,0x2c,0x7c,0xb5,0x5d,0x26,0xd3,0x15,0xa2,0x52,0xd0,0xda,0x12,0x21,0x83,0x68,0x14,0xb5, + 0x91,0x1c,0xaa,0x34,0x8c,0xe5,0x22,0xd6,0x89,0xf4,0x29,0x09,0x2f,0xf0,0x46,0x91,0x12,0xea,0xd1,0xd0, + 0x47,0xcb,0x0a,0xfb,0x97,0xa8,0xec,0x21,0xbb,0xa7,0x9b,0xec,0x29,0x9b,0x94,0x5e,0x94,0x72,0xff,0xa8, + 0xd3,0xab,0x96,0x6d,0x20,0xad,0xbd,0xca,0x38,0xc4,0xb1,0xf3,0x2a,0x6b,0xd4,0x56,0x47,0xb5,0xf7,0x21, + 0x2e,0xa5,0xe4,0xd7,0xa9,0xda,0x69,0xf9,0xa8,0x17,0x57,0x63,0x85,0x10,0x9b,0x7d,0x69,0x61,0xb8,0x98, + 0x89,0xfe,0x2d,0xa5,0x93,0xb4,0x77,0x41,0x00,0x9f,0x14,0x31,0x8d,0x63,0xaa,0x2a,0x3d,0x99,0x52,0x9b, + 0xf4,0x8f,0xfc,0x7a,0x2e,0x01,0x85,0x1c,0xf9,0xab,0x9b,0xe5,0x4e,0x1a,0x03,0x50,0x15,0xbe,0x49,0xde, + 0xc7,0x53,0xe9,0x8e,0x3f,0xb9,0x27,0xc9,0x7a,0xbb,0x4a,0xf3,0x84,0xb7,0x40,0x3e,0x4c,0x6a,0x81,0xd5, + 0x93,0xbf,0x7a,0x91,0x2f,0xd4,0x1a,0xcb,0x18,0xd3,0x55,0x19,0xab,0xe1,0xbd,0xa4,0x91,0x46,0x1f,0x02, + 0x47,0xfe,0xaa,0xe2,0xab,0xb8,0xe0,0x44,0xf5,0x21,0xa9,0xbf,0xc6,0xd3,0x54,0xa5,0x9b,0x4f,0x55,0xfe, + 0x6c,0x95,0xab,0x0a,0xea,0x4b,0x8d,0x3d,0x4f,0x38,0x55,0xfe,0xaa,0xe1,0x11,0xbc,0xe5,0x9c,0xaa,0xbf, + 0xcc,0xb0,0x25,0x75,0x25,0xe3,0xb8,0xc8,0x64,0x9d,0x19,0x3a,0x5e,0xf2,0x0f,0x9d,0x68,0xed,0xa9,0x24, + 0x6c,0xd9,0x55,0xc9,0x6c,0xee,0x6b,0xa3,0x4a,0xa3,0xd8,0xf3,0x15,0x48,0xef,0xc3,0x6a,0x57,0x68,0xef, + 0x70,0xad,0xd0,0x45,0xd0,0x43,0x70,0xa1,0x5e,0x32,0xeb,0x45,0x35,0xd8,0x80,0x2d,0x4d,0xb4,0xc8,0xe3, + 0x68,0xfa,0xa1,0x17,0x89,0xf9,0xb9,0x1e,0xfc,0xa7,0x82,0x8b,0xae,0xb6,0x05,0x1c,0x24,0xbb,0x82,0x27, + 0xf9,0xdd,0x84,0x28,0x49,0x7d,0x93,0x10,0xe6,0xfc,0xf6,0xcd,0x8b,0xd7,0xbd,0x25,0x75,0xe3,0xca,0xc0, + 0x7a,0x67,0x84,0xfa,0x3d,0x53,0x51,0x6e,0x4c,0xa0,0xd8,0xb7,0x57,0x71,0xbc,0xa4,0x83,0x94,0x5c,0x44, + 0xf6,0x42,0x9b,0x12,0xaf,0xac,0xef,0x68,0x81,0x95,0x4f,0x63,0x6a,0x54,0xe3,0x84,0x1e,0xce,0x26,0x90, + 0x7e,0x74,0x21,0xe7,0xa6,0xdd,0xc7,0x61,0xb6,0x7c,0x8e,0x98,0x5a,0x0e,0x7d,0xf4,0x10,0x5d,0xab,0x55, + 0xe2,0x69,0x46,0xa8,0xfd,0xe2,0xe7,0x65,0xe0,0xc8,0x57,0x6f,0xb5,0x74,0x36,0x16,0x1e,0xb4,0x51,0x48, + 0x85,0x0d,0x2b,0x84,0x56,0x21,0x48,0x7e,0xf1,0x8b,0x4b,0xde,0x5c,0xfb,0x2e,0xd0,0x10,0x20,0x69,0x3d, + 0x4e,0xac,0x95,0xf8,0x8e,0x4b,0x3d,0x59,0x2c,0xb2,0xab,0x42,0xb0,0x9e,0xf2,0x29,0x60,0xe1,0x95,0xde, + 0x2c,0xa7,0xb1,0x7d,0xc8,0x56,0x39,0x01,0xdb,0x65,0x32,0x89,0x81,0xb6,0xf9,0x16,0x93,0x8b,0x5a,0x79, + 0x44,0xe2,0xea,0xb5,0x9b,0xb2,0xb7,0x5c,0xe5,0xcb,0xac,0x88,0x8b,0x41,0x0f,0x17,0xa4,0x2a,0x5d,0x2f, + 0x02,0x50,0x12,0x16,0x8d,0x5a,0xa0,0xdf,0x67,0x65,0xb9,0x0c,0xf6,0xf6,0x0e,0xbe,0xba,0x3f,0x38,0xf8, + 0xe2,0xcb,0xc1,0xc1,0xe0,0xe1,0x5e,0xef,0xea,0x8c,0xa0,0x90,0xfa,0xef,0xe1,0x96,0x37,0x48,0x1f,0xa3, + 0x48,0x4a,0x6a,0x9a,0x99,0x8c,0xb2,0x97,0xcd,0x08,0x4e,0x8b,0x5e,0x91,0xc1,0xc7,0x4c,0xd1,0x53,0x77, + 0x1c,0x06,0x17,0xa3,0x17,0xdd,0x2d,0x6e,0x64,0xca,0xa6,0x0a,0x94,0xc8,0xbe,0x12,0xe2,0x09,0x52,0x01, + 0x9b,0x51,0xfa,0x81,0x6e,0xfe,0x0f,0x83,0xde,0x6f,0xd4,0x19,0x2e,0xb0,0x68,0x41,0x3f,0x8b,0x9e,0xe1, + 0xc0,0x7a,0x42,0x2b,0xf5,0x20,0x24,0xc0,0x68,0x4f,0x3f,0xf4,0xa0,0x2c,0x09,0x1a,0x01,0xd0,0x60,0x2f, + 0x73,0x4f,0x85,0xe4,0x5a,0xa5,0x65,0xb2,0xe0,0xdc,0x1f,0xbf,0x7e,0xde,0x5b,0x80,0x12,0x29,0x68,0xa3, + 0x09,0x59,0xdb,0xb7,0xb0,0xde,0x28,0x7b,0xd4,0xb5,0x12,0xb2,0x51,0x6a,0xcb,0xbb,0x56,0x9f,0x56,0x83, + 0xb7,0x88,0x00,0xad,0x87,0xbb,0xbc,0x97,0xb3,0xc7,0xb0,0x41,0x4f,0xdd,0x29,0x1c,0x08,0x8e,0xc7,0x81, + 0x9b,0x9b,0xa8,0x92,0xa8,0x20,0xe2,0x27,0x9f,0xd2,0xa4,0xa7,0x44,0xd6,0xe6,0x94,0xd3,0xdc,0xbe,0xd3, + 0x98,0xc0,0x02,0x03,0x2d,0x92,0xa9,0x5c,0xf8,0x8e,0xaf,0xab,0xd1,0x5d,0xa5,0xbe,0xe8,0x62,0x3e,0x9b, + 0x10,0x0c,0xff,0x4c,0x9d,0x3c,0xff,0xee,0xd9,0x1b,0xf9,0xad,0x00,0x6b,0x45,0x60,0x0d,0x57,0x5d,0xb8, + 0x1c,0x69,0xd9,0x8b,0x64,0x9e,0x16,0xb8,0xbe,0x5e,0xbc,0xe9,0xa9,0x98,0xf2,0xdd,0xc0,0x24,0x5b,0x40, + 0xe4,0xf9,0x29,0x2d,0x0b,0x36,0x85,0x16,0x94,0x0a,0x9e,0xe3,0xd0,0xca,0x46,0x60,0x65,0x17,0xa8,0x0f, + 0xc0,0x80,0x49,0x13,0x81,0x09,0x1d,0x4a,0xfa,0x75,0x8f,0xa0,0x64,0x9a,0x81,0x4c,0x22,0xca,0x65,0xa9, + 0xba,0x21,0xf2,0xc5,0x74,0x49,0x33,0x5a,0x9d,0xd2,0xdd,0x79,0x11,0x15,0xe7,0x40,0xbf,0xf8,0xee,0xe1, + 0x87,0xe3,0xcf,0x09,0xeb,0x5d,0x01,0x29,0x7f,0x2b,0x1f,0x8e,0x7f,0x46,0xb4,0x87,0xd8,0x97,0x7e,0xa7, + 0xbe,0xaa,0xb4,0x37,0x95,0x3f,0x64,0x60,0x23,0x31,0x29,0xa5,0x96,0x26,0xa6,0xa7,0x8d,0x22,0x62,0x6b, + 0x74,0x09,0xa7,0x10,0x25,0x55,0x2e,0x2d,0x52,0xa0,0x07,0x95,0xce,0xb3,0x3c,0x4b,0x89,0xea,0xe2,0xd5, + 0x77,0x5f,0x1d,0xbe,0x21,0xac,0x42,0xc8,0xac,0x50,0xc5,0xbe,0x23,0x52,0x91,0x29,0x5d,0x4a,0xcb,0x10, + 0x58,0xf3,0x22,0x5a,0xea,0xbc,0x6f,0xb3,0x6c,0x4e,0x50,0xf0,0x92,0x52,0x7a,0x4f,0xde,0xbc,0xa8,0xe8, + 0x64,0x95,0x6f,0xa8,0x64,0xe1,0x0f,0xb8,0xf7,0xb7,0x70,0x5e,0x4b,0x23,0xa7,0x8e,0x7a,0xec,0xc8,0x36, + 0xe7,0x64,0x26,0x47,0x2e,0x81,0xf4,0x7e,0x52,0x24,0x6b,0xa2,0x52,0x7a,0x6e,0x75,0x97,0x7a,0x5c,0xf6, + 0xc7,0x88,0x76,0x99,0xfe,0x49,0x4a,0x26,0xa3,0x91,0x02,0x32,0xf5,0xc7,0x2c,0x9d,0x5b,0x49,0xc4,0x64, + 0x0a,0xd6,0xfd,0x96,0x16,0x7a,0xa1,0x4a,0xf7,0xf6,0x88,0xae,0x53,0xc5,0x04,0xc5,0x2c,0x54,0xb9,0x5a, + 0xa5,0xb7,0x71,0x94,0x4f,0xce,0x40,0x74,0xe1,0x2f,0xaf,0x07,0x1d,0x24,0x22,0x6e,0xe9,0x96,0xe2,0xd3, + 0xf6,0x86,0x4f,0x9b,0x50,0x75,0x7c,0xc6,0x18,0xfd,0xf7,0x89,0x41,0xb9,0xf4,0x74,0xf1,0xb7,0x87,0x4f, + 0x84,0x1e,0xc4,0xc2,0xbe,0x04,0x46,0xb8,0xa1,0xfc,0x93,0x37,0x9a,0x0e,0x57,0x87,0xb2,0xd6,0x91,0x3a, + 0xd6,0xf6,0x1d,0x43,0xa7,0x44,0x6a,0xbe,0xf9,0xf5,0xe5,0xf3,0x9c,0x52,0xf2,0xb7,0xcf,0xa9,0xbf,0x37, + 0xcf,0x9e,0x7c,0xf5,0xc5,0x97,0x9f,0xf7,0x28,0xb5,0x37,0xe5,0xe4,0x1e,0xa5,0x4b,0x4d,0xe8,0x06,0x37, + 0xeb,0x3c,0xfb,0xb1,0xbb,0xce,0xb3,0x1f,0xa5,0xce,0x04,0x8e,0x4c,0x51,0xe9,0xea,0xe2,0x89,0x06,0xea, + 0x8e,0xf2,0x2f,0xfe,0xe7,0xff,0xfb,0xac,0x82,0x74,0x2a,0xfc,0x0d,0xc8,0xc6,0x38,0x9d,0x7c,0xe8,0x2c, + 0x3e,0xd3,0xb9,0x02,0x4e,0x04,0x3b,0x3f,0xc4,0x1f,0x5a,0xf0,0x44,0x27,0xaf,0x56,0xe0,0x8c,0x8f,0xf7, + 0x4f,0xb1,0x38,0xf1,0x9b,0x02,0x7d,0xce,0x7a,0xab,0x82,0x11,0xa1,0x4d,0x45,0x0e,0x7a,0x84,0x16,0xa6, + 0x7c,0x35,0x2c,0xb2,0xec,0x1c,0xf9,0xab,0x25,0x63,0x21,0x15,0xc0,0x91,0x8b,0xff,0x49,0x97,0xeb,0x80, + 0xb0,0x16,0xdd,0xae,0x84,0x51,0xce,0x7b,0x88,0x28,0x47,0x00,0x0e,0x44,0xa1,0xfa,0xf6,0xb1,0xee,0x3d, + 0x35,0xa8,0x0b,0x66,0xe7,0x20,0x8c,0x2d,0x09,0xb6,0x05,0xed,0xf1,0x2c,0x0a,0xba,0x0e,0x7e,0x22,0xf6, + 0xb5,0x00,0xaa,0x93,0xdb,0x8c,0xa6,0x17,0xeb,0x46,0x70,0x69,0xab,0xfb,0x45,0xfb,0xbf,0xa3,0x0b,0x8d, + 0x90,0xdc,0x12,0x23,0x9d,0x73,0xe3,0x60,0x99,0xf7,0x18,0x27,0x46,0x9a,0x08,0x4a,0xca,0x7b,0x84,0xb1, + 0x0b,0xb9,0xe0,0x30,0x74,0xbd,0x28,0x03,0x3a,0xde,0x2c,0xfa,0x0d,0xae,0xc1,0x29,0x1a,0x8e,0xf4,0x19, + 0x5c,0x23,0xf2,0xdd,0x82,0x64,0x3a,0x3d,0x22,0xbb,0x06,0xec,0x45,0xa7,0x98,0x57,0x69,0xd8,0x45,0xe1, + 0x3c,0xab,0x9b,0xbc,0x55,0xd9,0xba,0x86,0x89,0xb6,0x2d,0xe1,0x15,0x5a,0xea,0x08,0x16,0x69,0x95,0x57, + 0x5c,0x68,0xbd,0xac,0x45,0xdc,0x15,0xad,0x1a,0x35,0xca,0xae,0x5e,0xef,0xa5,0x4d,0x9d,0xb5,0x6b,0xd6, + 0xe9,0x4a,0xab,0x2e,0x33,0xae,0xdd,0x93,0x2a,0x60,0x66,0xdd,0x39,0x29,0xae,0xd4,0x9e,0x15,0x57,0x68, + 0xcd,0x4a,0xb0,0x18,0xee,0x39,0xc5,0x02,0x5b,0x35,0xf2,0x98,0x46,0x44,0xfb,0x2a,0xd7,0xa0,0x66,0xf7, + 0x56,0x4b,0x8c,0x59,0xa3,0x41,0x3a,0xdb,0xd8,0xb8,0x1e,0x07,0x23,0xec,0x49,0x1e,0x80,0x53,0x63,0x4d, + 0xdd,0x03,0xb3,0x7d,0x76,0xe3,0x3c,0x4a,0x7e,0xa5,0x00,0x1d,0x28,0x0e,0x96,0x70,0xa1,0x30,0x76,0xaa, + 0x10,0x9d,0xbd,0x52,0xd9,0x39,0x60,0x5e,0x23,0x37,0x9a,0x3c,0x5d,0x9a,0x49,0x1a,0x31,0x3f,0xc2,0xcd, + 0x6d,0xdb,0x1e,0x9e,0xfa,0x96,0xed,0xe1,0x8a,0xdb,0xf7,0x87,0xab,0x6e,0xdb,0x1f,0xe2,0x96,0xd3,0x85, + 0x61,0xfc,0x89,0x46,0x5f,0xb6,0x64,0x2d,0x1f,0x27,0x6c,0x89,0xff,0x9e,0xac,0xe5,0x6b,0x22,0xeb,0xb2, + 0x79,0x9c,0x9e,0x2e,0x92,0xf3,0xde,0x3c,0xa6,0x7b,0x9f,0x68,0xb3,0xd3,0xf8,0xcf,0x64,0xde,0xbb,0xe0, + 0x8b,0x62,0x4a,0x05,0x2e,0x59,0x8e,0x60,0xc8,0x92,0xb8,0x4b,0xfc,0xf2,0x1d,0x95,0x2e,0xd4,0xb0,0x41, + 0x92,0x10,0x31,0xb8,0x4c,0x93,0x78,0x75,0x45,0x7f,0xe7,0xb1,0x84,0x29,0xc2,0x88,0x31,0x68,0xa2,0x0d, + 0xe2,0x3f,0x63,0x08,0x60,0x68,0x0f,0x7a,0x29,0x0d,0x25,0x4e,0x1b,0xe2,0x97,0xc3,0x2c,0x06,0x99,0xd3, + 0x48,0xd7,0x22,0x98,0xa7,0x66,0x80,0xd9,0xb2,0x58,0x44,0x51,0xfa,0x97,0xa4,0x31,0x3f,0x27,0x25,0x8d, + 0x6c,0x72,0x16,0x9d,0xc7,0x8b,0x8f,0x17,0xc9,0xd4,0x6b,0x29,0xb9,0xcc,0x5b,0x1a,0xc4,0x12,0x4e,0x48, + 0xa6,0x4d,0xe9,0x4c,0x42,0x83,0x9c,0xc7,0x97,0xc4,0x6a,0x61,0x2e,0x5d,0x12,0x9a,0x68,0x46,0x90,0x91, + 0xa5,0x6d,0x01,0xcd,0x0f,0x94,0x39,0x8f,0xb1,0xfe,0x71,0xae,0xa2,0x11,0x10,0x61,0x73,0x8e,0x76,0x9a, + 0x82,0x9a,0x5f,0xaa,0x12,0x54,0x78,0x91,0xe5,0x28,0x54,0x17,0xd6,0xbc,0xc2,0x48,0xd0,0x92,0x0c,0xe5, + 0x63,0xc4,0x35,0xdf,0xad,0x92,0x69,0x32,0x8f,0xb7,0x88,0x6b,0x88,0x63,0xc1,0xa9,0x88,0x01,0x21,0xd8, + 0xcf,0xc5,0x0c,0x54,0xbe,0x92,0xc9,0xc4,0x49,0xd9,0x92,0xd9,0x1c,0x4a,0x59,0x2d,0xac,0x89,0xe3,0x05, + 0x7b,0x6e,0x89,0xa9,0x9d,0xf4,0xd3,0xa4,0x36,0xef,0xa6,0x4d,0xa9,0xcd,0x8f,0x0c,0x0b,0x3d,0xc2,0x17, + 0xbd,0xcb,0x0c,0x77,0x04,0x95,0xa9,0x18,0xf4,0x38,0xae,0xa4,0x35,0x97,0xb5,0xa5,0x8a,0xe1,0x86,0x2f, + 0x29,0x5a,0x72,0x9b,0xb9,0xac,0x7c,0xbd,0x99,0x79,0x6c,0x38,0x98,0x38,0x9f,0x36,0x04,0x38,0x87,0xb5, + 0xa2,0x34,0x31,0x01,0x91,0x38,0xbd,0x59,0x8a,0x13,0x4b,0x1f,0x75,0xae,0x5c,0x57,0x62,0xae,0x9b,0x8e, + 0xc2,0x65,0x16,0xcf,0x75,0x9a,0xe6,0xbc,0x69,0xcb,0xaf,0xa8,0x66,0x9c,0x57,0x3d,0xd4,0x39,0x78,0x48, + 0x10,0xe2,0x59,0x4b,0x9e,0xf3,0x4b,0x54,0x94,0xd2,0x69,0x43,0x9e,0xf3,0x3b,0xee,0xe3,0xe5,0x79,0x76, + 0x51,0x94,0x75,0x99,0x0e,0x67,0x40,0x1d,0x79,0x1e,0x41,0xb9,0xd5,0x16,0xed,0xe8,0x91,0x83,0x1c,0x4d, + 0x1b,0xa2,0x1d,0x3a,0x96,0xd3,0x68,0xde,0x90,0xed,0x3c,0xa7,0x85,0x31,0xa9,0xb6,0x6c,0x27,0x8b,0xad, + 0x8c,0x4a,0xb4,0xf3,0x9c,0x3b,0x36,0x19,0x5a,0xb6,0xf3,0x4b,0x4e,0x5d,0xeb,0xc4,0x4a,0xb8,0xf3,0x3b, + 0x61,0xf4,0xaa,0xb0,0x16,0xee,0xfc,0x9e,0xc9,0x40,0x6a,0xc2,0x9d,0xa7,0xf1,0x55,0x3c,0x67,0x65,0xdd, + 0xa6,0x78,0x47,0x6d,0xfd,0xa9,0x2a,0xb0,0x7d,0xfb,0x1b,0x92,0x9e,0xa7,0xad,0x0a,0x35,0x20,0xb8,0x4d, + 0xe0,0xf3,0x9a,0xee,0x28,0xab,0x02,0xf1,0xbd,0x04,0xb7,0x10,0x81,0xf6,0x9a,0x80,0xc8,0x64,0x51,0x3c, + 0x23,0xb0,0xbd,0x4d,0xe6,0xb3,0x15,0xb8,0xba,0x65,0x3e,0x1a,0x62,0x2c,0x91,0x8f,0x05,0x7c,0x75,0xc1, + 0x4f,0x0d,0xfc,0xb6,0x4a,0x7f,0x68,0x94,0x67,0x44,0xd3,0x75,0x49,0x7f,0x9e,0x88,0xdc,0x27,0xbe,0x55, + 0xec,0xf3,0x2d,0xe6,0x0f,0xb1,0x8f,0xc1,0x36,0xf3,0x78,0x91,0xbc,0x3b,0xc7,0xd4,0x92,0x8e,0xa6,0x8d, + 0xd0,0xe7,0x69,0x06,0xd1,0x59,0x1a,0x45,0x39,0x6d,0x66,0x1a,0x5b,0x13,0xef,0x12,0xff,0x48,0x09,0x55, + 0x1c,0x35,0xb7,0xca,0x81,0x2a,0x64,0x6b,0x30,0xa5,0x85,0x7f,0xed,0x8b,0xb2,0x21,0x09,0x7a,0x62,0xcb, + 0x26,0x6a,0xc0,0x61,0x15,0x13,0xb2,0x9e,0x4e,0xcf,0x39,0x51,0xca,0x60,0x8a,0x33,0x99,0x6e,0x8f,0xb8, + 0x33,0xac,0x84,0xc8,0x86,0x2a,0x02,0x2e,0xc6,0xf5,0x1c,0xcd,0x38,0x8f,0xae,0xca,0x28,0x8f,0x08,0x07, + 0xf2,0x2c,0xf8,0x92,0x05,0x69,0x61,0xe4,0x13,0xb1,0xdc,0x1f,0x68,0x6a,0x1a,0x5b,0xa9,0x06,0xae,0x11, + 0x29,0xa2,0xf7,0xbc,0x5e,0x8b,0x38,0x7d,0x2a,0x42,0x2b,0x18,0xf1,0x6e,0xf7,0x2e,0x93,0xa8,0x53,0x44, + 0x44,0xf9,0xd4,0xf3,0x3b,0x7b,0x64,0x67,0xf1,0x29,0x6e,0xbf,0x0b,0x4c,0x66,0xd0,0x7b,0x2b,0xf3,0x95, + 0x71,0x41,0x8a,0x43,0x54,0x5f,0x82,0xb1,0xf2,0x3c,0xed,0x31,0xf8,0x3d,0x42,0x1e,0x73,0xba,0xe4,0xd5, + 0xd5,0x22,0xd7,0xe8,0x29,0x11,0x94,0xc9,0x22,0x99,0x4f,0x81,0xb0,0x7b,0xdf,0xc7,0xbd,0xf3,0x15,0xad, + 0xa3,0xd5,0x5a,0xd6,0x38,0x42,0x53,0xdc,0x04,0xb8,0x15,0x0c,0xff,0x28,0x4b,0x7f,0x9e,0x52,0x22,0xcd, + 0x69,0x9a,0xaf,0xce,0xb1,0x1c,0x65,0x56,0x62,0xe8,0x53,0x91,0x0f,0x45,0xb8,0x76,0x69,0x11,0x9b,0xe2, + 0x21,0x6b,0x8f,0x41,0x79,0x30,0x65,0xab,0xae,0x63,0xab,0x9c,0x6c,0x9f,0x2a,0xdb,0xde,0x02,0x34,0x4e, + 0x4b,0x14,0xd3,0xb5,0xda,0x90,0x11,0xfd,0xb2,0x5a,0xf4,0xce,0x12,0xa6,0x04,0xe8,0x88,0x63,0x45,0x98, + 0x80,0xa0,0x62,0x57,0xd1,0xe4,0xac,0xbc,0x02,0xc9,0x4a,0xb3,0xf3,0x91,0x62,0xe1,0x21,0x96,0x0f,0x97, + 0x2b,0x5e,0xd6,0x1e,0x81,0x6d,0x8e,0x0b,0x9b,0x97,0xa3,0xd8,0x2a,0x36,0xfa,0xd5,0x34,0xa8,0x05,0x47, + 0xdf,0xc6,0xa7,0xf9,0x8a,0x28,0xc0,0x4a,0x78,0x74,0x56,0x13,0x1e,0xd1,0x9a,0x32,0x80,0xb1,0x00,0x87, + 0xb8,0x5a,0x5a,0xb2,0x98,0x8e,0xff,0x9f,0x80,0xb9,0x28,0x6d,0x4d,0x93,0x18,0x49,0x02,0x40,0xaa,0x94, + 0xbc,0x4b,0x19,0x76,0xaf,0x92,0x05,0xa6,0x6d,0xed,0x15,0xaa,0x41,0x33,0x9f,0x26,0x44,0xff,0xfc,0x99, + 0xbc,0x43,0xfe,0x55,0x4c,0xd3,0xbe,0x02,0xec,0xd2,0x8f,0x8b,0x38,0x56,0x94,0xe8,0x29,0x1c,0x71,0xb5, + 0x05,0x49,0x79,0xbc,0x5d,0x8c,0x04,0x39,0xca,0xed,0x82,0xa4,0xe8,0x62,0x8b,0x20,0xe9,0x2d,0x48,0x39, + 0x1a,0xc7,0x54,0x8b,0x92,0xd0,0xd7,0x56,0x41,0x52,0x53,0x92,0xf4,0x6e,0x5a,0x97,0x24,0xc5,0x37,0x09, + 0x92,0x22,0x98,0x28,0xd0,0x39,0x20,0xb8,0x62,0x04,0xf5,0x17,0xe4,0x49,0xa7,0xc9,0xbb,0xab,0x38,0x67, + 0x48,0xfc,0x18,0x91,0xd2,0x2f,0x42,0x85,0x77,0x89,0x94,0x52,0x4b,0xa4,0xf4,0x94,0xc0,0x6b,0x5a,0xc6, + 0x73,0x42,0x28,0x53,0x4b,0xac,0x84,0x87,0x75,0x3b,0xd1,0xf0,0x5b,0x76,0x79,0x08,0x96,0xaa,0x82,0xb4, + 0xe5,0x67,0x11,0x0e,0x24,0x1d,0xbb,0xd3,0xa8,0x20,0x84,0x02,0x8e,0x42,0xb8,0xb1,0xb8,0x53,0xd2,0xf4, + 0x7b,0x16,0xf3,0x74,0xfe,0xba,0xa4,0xc9,0x62,0x3c,0x6f,0x91,0x30,0xd5,0x5a,0xb6,0xd1,0x07,0xa3,0x09, + 0xfb,0x2a,0x23,0x22,0x7f,0xfe,0xdf,0x21,0x65,0x3a,0x5f,0x64,0xff,0x67,0x09,0x99,0x9e,0x00,0x1b,0xe7, + 0xcc,0x0b,0x12,0xac,0x11,0x46,0x17,0x6c,0x71,0xc9,0x47,0xbf,0x4e,0x24,0xd3,0xd1,0x67,0xee,0x4f,0x95, + 0x29,0xd5,0x5d,0x73,0xa6,0x58,0x09,0x94,0x85,0xa8,0x49,0xae,0x94,0x25,0xa0,0x82,0x6a,0x10,0xf0,0x96, + 0x8c,0xbd,0xff,0x14,0xec,0x67,0x24,0x4e,0x17,0xc0,0x05,0x6a,0x88,0x54,0x9c,0xcb,0x4d,0xa9,0x57,0x48, + 0x97,0xce,0xd1,0xae,0x92,0x39,0x15,0x5a,0xe8,0x24,0x28,0x11,0x34,0x02,0x2e,0x60,0x33,0x25,0x40,0xde, + 0xc7,0x89,0x9d,0x80,0xd1,0x58,0xa4,0xa8,0x90,0x30,0x73,0x13,0x7a,0xc2,0xc0,0xfb,0xd3,0xdb,0x85,0x4f, + 0x60,0xdc,0x14,0x2f,0x6c,0x04,0x4f,0xea,0x0e,0x53,0x27,0xa1,0x2d,0x73,0x42,0x1d,0x8b,0x35,0x51,0x8c, + 0x11,0x23,0x85,0x8e,0x9a,0x5a,0x46,0x63,0xf5,0x74,0x5b,0x95,0xba,0x84,0x03,0x15,0x6b,0x34,0xe5,0x2d, + 0xb5,0x9b,0x62,0x0e,0xd4,0x6f,0x52,0xc8,0x37,0xb5,0xd1,0x12,0x47,0x7d,0xc4,0x7c,0x99,0xb3,0x6f,0x08, + 0xa5,0x6e,0x9b,0xb0,0xaa,0xd3,0x96,0x4d,0xa1,0xa2,0x8d,0x13,0xea,0xc3,0x6b,0x4a,0xa6,0xbe,0x61,0x11, + 0x21,0xe8,0xdb,0xb4,0xa8,0xd0,0x2b,0x03,0xfc,0x16,0xf1,0x14,0x2f,0x28,0x6e,0xc0,0x1b,0x46,0xd5,0x94, + 0x50,0xfd,0x50,0x61,0x41,0x4b,0x24,0x95,0x6a,0x6a,0x67,0x69,0x2d,0xdd,0x5f,0xd8,0x3d,0x7b,0xf9,0xfe, + 0xf2,0xf6,0x49,0x23,0x9b,0xcd,0xa6,0x8a,0x7e,0xc2,0xb2,0x9c,0x27,0xcb,0xa5,0x51,0xce,0x82,0x24,0x4e, + 0xb9,0xbf,0xaf,0xfc,0xc8,0x44,0x97,0x09,0xdd,0xbf,0x59,0x3e,0x58,0x10,0xee,0x58,0x45,0xf3,0xb8,0xe9, + 0xd4,0xc5,0xe1,0xdb,0x4e,0xbb,0x88,0x31,0x26,0xf5,0xde,0x50,0x35,0xe7,0x5e,0xc7,0x74,0x57,0xfd,0x83, + 0x86,0x4f,0x37,0x3f,0x35,0x1d,0xc4,0x3e,0xbb,0x5c,0xb9,0x4e,0x69,0x2e,0xb3,0x44,0xad,0x21,0x1b,0x58, + 0x69,0x69,0xd6,0xce,0xbe,0x5f,0x88,0x84,0x68,0xe7,0x40,0x7d,0xc9,0xee,0xd0,0x4f,0x55,0xe6,0x05,0x81, + 0xdb,0x04,0xe3,0x0a,0x9c,0xb5,0xde,0xf6,0x37,0x79,0x36,0x67,0x2c,0x4b,0xc5,0xe4,0xec,0x1f,0x46,0xa7, + 0x08,0x3d,0x22,0x52,0x0f,0xad,0xd3,0x74,0x5d,0xc9,0xe7,0x54,0x63,0x2c,0x75,0xd2,0xd9,0x76,0xe2,0xa6, + 0x2e,0x8b,0x5a,0x06,0xd7,0xb1,0xe2,0xb1,0xa8,0x8b,0x84,0xe8,0xad,0xfd,0x01,0xff,0x57,0x09,0x9d,0x6a, + 0x25,0x94,0x60,0x66,0xbf,0x5e,0x74,0xa3,0xe0,0x87,0xfa,0x30,0x20,0x84,0xe0,0x6f,0x95,0xd8,0x04,0xbc, + 0x9f,0xdd,0x4e,0x59,0x67,0x0b,0xc5,0x18,0x4d,0x17,0x87,0x4b,0x2d,0xe1,0x86,0x6a,0x75,0xe2,0x6d,0x0c, + 0xea,0x96,0xf6,0xa6,0xf1,0x82,0x48,0xac,0x56,0xd3,0x75,0xde,0xc9,0xd0,0x5d,0x5c,0xce,0xe6,0x89,0xb0, + 0x65,0xa5,0x99,0x0b,0x93,0xab,0x5c,0xc6,0x10,0xab,0xd2,0x09,0x88,0xd4,0x1d,0x5e,0x0f,0xfe,0x6d,0x11, + 0x7d,0xfc,0x5b,0x53,0x7a,0x6c,0x6f,0x6f,0xa8,0xb4,0x8a,0x16,0x12,0x1b,0x47,0x8b,0x06,0xfa,0xdc,0x27, + 0xda,0x53,0x01,0x0f,0x81,0x8b,0x74,0x49,0xf0,0x4f,0x88,0x3c,0x9e,0x12,0xb9,0x21,0x39,0xf1,0x14,0xa4, + 0x84,0x8c,0x79,0xa9,0xc8,0x05,0x29,0x7a,0x75,0x81,0x8b,0xdf,0x7c,0xd3,0x85,0x2e,0x5d,0x5b,0x57,0xb6, + 0xce,0xac,0x6e,0x65,0x4e,0xb1,0xef,0x5e,0xda,0x7e,0x2d,0x22,0xc3,0xec,0xf4,0x37,0x3b,0x29,0x08,0xb0, + 0x30,0xc8,0x38,0x1a,0xfb,0x0b,0x83,0x31,0x40,0x03,0x2a,0x49,0x0e,0xe7,0xe4,0x31,0x9e,0xf2,0x2e,0x63, + 0x9d,0x40,0xcb,0xce,0x8e,0xf9,0x5a,0x91,0x6f,0x95,0x07,0xb1,0x72,0x60,0x9f,0x1e,0xd4,0x52,0x71,0x7a, + 0x4c,0x28,0x2b,0x66,0x68,0xe1,0xb9,0xd6,0x75,0xf8,0xd3,0xd1,0x3e,0xc6,0x94,0x02,0xa1,0x1e,0x0b,0x4c, + 0xff,0xcf,0xb4,0x75,0xff,0x81,0xc4,0x57,0x2e,0x07,0xe6,0xf8,0x58,0x41,0xeb,0x7f,0x6c,0x9c,0x3c,0x58, + 0x04,0x0e,0x9a,0x08,0x9a,0x13,0x95,0x90,0x95,0x17,0x81,0x9d,0x1b,0x41,0x71,0x1b,0xe1,0x0d,0xad,0xb3, + 0x2c,0x63,0xde,0x39,0x18,0x36,0xf4,0x87,0xd9,0x4a,0x72,0x7f,0x98,0x3d,0x3a,0x78,0xf8,0x90,0xfe,0xf4, + 0xc3,0x83,0xcf,0x3d,0xe5,0xba,0x32,0x13,0xdf,0x05,0x59,0xb8,0x7b,0x1f,0x59,0x8f,0xc2,0xfb,0xa6,0x44, + 0x62,0x4a,0x94,0x83,0x6a,0x65,0xc3,0x9c,0xfa,0xac,0x2d,0x6d,0x98,0x50,0x8a,0x75,0xc7,0xbb,0xde,0xa0, + 0x3c,0x8b,0x53,0xdb,0x05,0x91,0xe4,0x57,0x57,0xdc,0xd6,0x22,0x72,0x95,0x6d,0xcd,0xb6,0x31,0xfd,0xd6, + 0x42,0x75,0x7c,0xbe,0xbd,0x2b,0xac,0x58,0x67,0x6e,0x51,0x66,0xcb,0xce,0x8d,0x51,0x58,0x8c,0x56,0x78, + 0xe3,0x59,0xff,0xf9,0x4a,0x05,0x35,0x40,0x34,0xb2,0xab,0x57,0x36,0x0a,0xee,0x8c,0x87,0x03,0x60,0x4b, + 0x6b,0xc0,0x16,0x5e,0x2b,0x1c,0x4f,0x88,0x5c,0x88,0xa6,0x72,0xa3,0x82,0x6f,0xa7,0x6d,0xa8,0xbc,0x7b, + 0x77,0xb2,0x20,0x6c,0x87,0x6f,0xba,0x8a,0xdd,0x8e,0x12,0x88,0x86,0xd8,0x06,0xe6,0x22,0x2e,0x75,0x1d, + 0x6b,0xbe,0x8d,0x91,0x08,0x3a,0xd8,0x72,0x14,0x36,0xfe,0xe7,0xf1,0x03,0x38,0x89,0x4c,0xa6,0x71,0xf7, + 0x3c,0x95,0x4d,0x52,0x47,0x93,0x3c,0x9b,0x56,0xa6,0x9a,0x90,0x5b,0x9b,0x51,0x77,0x29,0x65,0x65,0xd1, + 0x3d,0x32,0x0c,0x8a,0xd8,0xd2,0x45,0x4c,0xf8,0x83,0x9f,0xce,0x1a,0x9e,0xad,0x35,0x65,0xbb,0xc8,0x10, + 0x0a,0x48,0xd9,0xe8,0x38,0x0e,0x47,0x53,0x26,0x94,0xb4,0xa4,0xec,0x78,0xe4,0x7c,0x77,0x48,0x7c,0xa1, + 0xfe,0xd9,0x43,0xec,0xb8,0x9e,0xd3,0xaf,0x0a,0x0c,0xd4,0xe5,0x83,0x14,0x26,0xad,0x47,0xd0,0x78,0xd3, + 0xb9,0x4e,0x60,0xbc,0xe3,0xcb,0x48,0x9b,0xd0,0x00,0xd7,0xd7,0x6e,0xe9,0xf5,0x9d,0xe3,0xf4,0x38,0x75, + 0xfa,0xb9,0xcf,0x9e,0xd3,0x6d,0xea,0xf8,0x46,0xdd,0xee,0xe8,0x7d,0x92,0xb1,0x3b,0x28,0xd7,0xd9,0x8b, + 0x96,0xc9,0x9e,0xba,0x5c,0x9d,0x26,0x08,0x77,0x45,0x8c,0x2b,0x95,0x57,0x6b,0x1a,0x82,0x56,0x92,0x96, + 0x24,0x82,0xdf,0x81,0xf2,0xe3,0x3f,0xa8,0x2f,0xe0,0x00,0xe4,0x27,0x7c,0x6c,0x31,0x40,0xda,0x07,0xdc, + 0xf1,0xd4,0xb0,0x2d,0x9a,0xf5,0x93,0x46,0x5e,0x5d,0x7f,0x9f,0x3a,0xf8,0xaa,0xe6,0x5f,0x19,0xbf,0xa5, + 0xa4,0xa6,0xa7,0xa0,0x68,0xe7,0x4f,0x1a,0xbe,0x7a,0x1a,0xff,0xc4,0xa1,0x4b,0xad,0xbf,0x32,0x6c,0xa5, + 0x90,0xa3,0x87,0x5c,0x23,0x77,0x3f,0x69,0xe0,0x9a,0x08,0xd9,0x63,0x8d,0xd5,0x8e,0xf1,0xc3,0x13,0x4f, + 0xf7,0x14,0x34,0xf2,0x32,0xe4,0x90,0x24,0x0f,0xd4,0xcf,0xf5,0xba,0x4d,0x02,0xa9,0x12,0xf5,0xd4,0xf5, + 0x7a,0xbf,0x46,0x0b,0xb5,0x5d,0x0d,0x99,0x6a,0x52,0xc8,0xb3,0xc3,0xf6,0x0e,0xf3,0x47,0x8d,0x6c,0x13, + 0xbb,0xd7,0x0e,0xb3,0x5c,0x2b,0x71,0x94,0x8f,0x09,0xdb,0x9a,0xf2,0xe2,0xe4,0xfa,0x94,0x9f,0x81,0x53, + 0xd0,0x22,0xc9,0xa0,0xfa,0x61,0x8d,0x0e,0xd1,0x31,0x29,0xcf,0xfa,0x85,0x4c,0x3d,0xfb,0xa4,0x36,0x71, + 0x73,0x3b,0xd6,0x2b,0x3c,0xde,0x1f,0xed,0x23,0x45,0x4d,0xdb,0xbe,0x34,0x5b,0x05,0x4d,0x31,0xa2,0x6d, + 0x2e,0xe4,0x95,0xc8,0x3d,0xb8,0x9b,0xd0,0x54,0x3e,0x14,0xaf,0x67,0xbf,0xc6,0xf1,0xb9,0xf7,0x98,0xc6, + 0xa6,0x9e,0x8a,0xdc,0xfb,0xad,0xac,0x2b,0xf3,0x5e,0xe4,0x3e,0x6c,0xd7,0xd3,0x6f,0x46,0xee,0x97,0xad, + 0xbc,0x99,0x3c,0x1b,0xb9,0x07,0x5f,0xb4,0xb2,0x0a,0xfd,0x78,0xe4,0x3e,0x68,0x77,0x58,0xc8,0x0b,0x92, + 0xfb,0x45,0xab,0x3b,0xb8,0x1e,0xaf,0x16,0x1c,0xf3,0x0a,0x61,0x15,0xf6,0xf1,0x00,0x6f,0x43,0xb8,0x01, + 0xfb,0x06,0x9b,0xf6,0xd7,0x00,0x5f,0x88,0xfa,0x4f,0x3d,0xba,0x66,0x2e,0x52,0xfd,0xaf,0x9c,0xe1,0xfa, + 0xe8,0x2b,0xf4,0xc3,0x64,0xec,0xa7,0x61,0x1f,0xd6,0xf9,0xef,0x3e,0xbc,0x5d,0x27,0xc9,0xb3,0x2d,0x81, + 0x76,0xe0,0xdf,0x1e,0x7c,0x16,0xbb,0x67,0x67,0x57,0x41,0xfb,0xc3,0x48,0x1f,0x2a,0x75,0x96,0x22,0x3b, + 0x84,0x38,0x32,0x60,0xe1,0xcb,0x5e,0x8a,0xf3,0x11,0x51,0x11,0x41,0xb1,0x43,0x5f,0x1c,0x21,0x0a,0xf1, + 0x78,0xb3,0x9a,0xfb,0xf9,0x02,0xc1,0x75,0xfb,0x61,0xb1,0xc1,0x65,0x19,0x73,0x90,0xe4,0x78,0x50,0x23, + 0xde,0x25,0x7e,0xe3,0x6c,0x91,0xc1,0x1b,0xfe,0x9e,0x0e,0x8c,0xe0,0x59,0xc5,0x18,0x5a,0x36,0x2d,0xb1, + 0x48,0xf7,0x2a,0xc5,0x8a,0x00,0xe6,0xc8,0x12,0xf2,0x89,0x59,0xca,0xaa,0x2d,0x89,0xb7,0x6a,0xdf,0x39, + 0x7e,0xc5,0x73,0xd9,0x37,0xca,0x40,0xa7,0xd6,0x98,0xb0,0x5a,0x09,0x2b,0xc3,0xb0,0x66,0xb5,0x02,0x2a, + 0x51,0x98,0xb5,0x7a,0x0e,0xa5,0x54,0x9c,0x5b,0x2d,0x4b,0xa7,0x0a,0x2b,0x57,0xcb,0x42,0x0a,0x38,0xbb, + 0x5a,0x62,0xb2,0xb4,0x99,0xbc,0x7a,0x2f,0x26,0xdd,0xf0,0x7d,0xb5,0x7c,0x95,0xb8,0x69,0x82,0x0f,0x82, + 0xf8,0x7c,0x24,0x34,0x37,0xb6,0x85,0x40,0xb9,0x45,0x42,0x57,0x1b,0x41,0x84,0xb2,0xde,0xc9,0xee,0x9b, + 0xd6,0xf0,0x5e,0x66,0x17,0xcb,0x9b,0x76,0x51,0x6b,0xa5,0x95,0xea,0x3a,0x6d,0xf6,0x9d,0x32,0xfd,0xde, + 0x45,0x77,0x39,0x35,0x9d,0x1c,0x1c,0x40,0x3d,0xdf,0xb2,0x73,0xbe,0x65,0x6d,0xbe,0xe6,0x0a,0xee,0x62, + 0x17,0x6a,0x73,0xed,0x64,0xeb,0xb6,0xc2,0xae,0xe2,0x28,0x88,0xcf,0x9b,0xc7,0x74,0x24,0x4d,0x82,0x21, + 0xd8,0x35,0x57,0x6e,0x77,0xa9,0xe2,0x1d,0xd4,0x6b,0xf7,0xfb,0x7e,0x3d,0x41,0x85,0xbf,0x3b,0x08,0x4c, + 0xb2,0x19,0x4e,0xe8,0xec,0x39,0x56,0x68,0x83,0xde,0xfd,0xce,0x32,0xbb,0xb5,0x32,0x0f,0x3a,0xcb,0x1c, + 0x1f,0xd7,0x0a,0x3d,0xec,0x2c,0xb4,0x76,0xfc,0xe6,0x4c,0x37,0x1b,0xff,0xfe,0xe7,0xfb,0xbc,0x5c,0x6d, + 0x5e,0xcb,0x5e,0x2d,0xe6,0x0b,0xcc,0x22,0x28,0xcb,0xf1,0x6a,0x89,0xa8,0x05,0xc2,0x8c,0x9a,0x55,0xc6, + 0x23,0x89,0x50,0xe8,0x5d,0x4e,0x69,0x2b,0xb1,0x93,0x3e,0xa6,0xfa,0x12,0xd7,0x9e,0xcf,0x6c,0xa5,0x20, + 0xc7,0xc4,0x11,0xdc,0x52,0x57,0x78,0x01,0xb5,0xca,0x2a,0xc8,0xdf,0x7d,0x1d,0xcc,0x4f,0x1f,0x39,0x82, + 0xb4,0xa1,0xda,0x06,0xb5,0x40,0xfc,0xc7,0x44,0x12,0x14,0xcb,0x7c,0xbd,0xc2,0xf5,0xca,0x18,0x83,0x84, + 0x0e,0x0c,0x74,0x38,0xa0,0xae,0x71,0x6e,0xba,0x97,0xe0,0x30,0x7e,0x5f,0xfe,0xb5,0x65,0xe8,0xf1,0x71, + 0x69,0x17,0xc3,0x0b,0xae,0x16,0x43,0x4c,0x1d,0xef,0x13,0xd7,0xe7,0x23,0xda,0x86,0xba,0x18,0xb5,0xab, + 0xd6,0xeb,0x23,0x2a,0x88,0x36,0x99,0xae,0x72,0xff,0x63,0xaa,0xd4,0x94,0xcc,0x74,0x4d,0xbd,0xf2,0xbd, + 0x6d,0x73,0x49,0x96,0x1a,0xbe,0x3f,0xa2,0x8b,0x9a,0xa6,0x9a,0xee,0xe2,0xf3,0x4f,0xa8,0x99,0x88,0xe6, + 0x9a,0xae,0xda,0xdc,0xfe,0xdb,0xf6,0xa7,0x02,0x0d,0xc4,0xd8,0x69,0x49,0xfb,0x6f,0xbe,0x46,0x47,0x96, + 0x90,0x20,0x6e,0x49,0xa2,0x98,0xfd,0x0f,0xb6,0xb3,0x73,0x7b,0x4a,0x2e,0xfc,0x89,0xf4,0x55,0x35,0x97, + 0x4f,0x25,0xad,0x9a,0x03,0xec,0xc2,0xd0,0xb7,0xcf,0x08,0xd4,0x46,0xe3,0x95,0xa3,0xfb,0x9a,0xe2,0x43, + 0xa4,0x56,0xca,0x46,0xfd,0xfb,0x2c,0xb5,0xb3,0xe5,0xe5,0xa1,0x8a,0x39,0xcd,0x0f,0x00,0xf0,0xde,0x00, + 0x0d,0xaa,0x61,0xaa,0xe2,0xdd,0xbb,0xce,0x2c,0x81,0xb1,0xaa,0x91,0x2c,0xd2,0x62,0x7e,0x2d,0xe1,0x9e, + 0x9e,0x7e,0x78,0xc1,0xd9,0x32,0x8e,0x6f,0x50,0x8c,0xa3,0x6a,0xc5,0x05,0xfc,0x36,0x28,0xc1,0x05,0x8b, + 0xb3,0x69,0x42,0xc1,0x83,0x2f,0xe2,0x87,0x7e,0x96,0xfe,0x5c,0x97,0xd5,0xd7,0x5c,0xfc,0x36,0x07,0xc6, + 0xe4,0x57,0x0e,0xa3,0x58,0xf7,0x60,0x7f,0xff,0x33,0xc1,0xcc,0xf1,0x74,0x0f,0x31,0x35,0xcb,0x08,0x21, + 0xcb,0x86,0xad,0x6b,0xb7,0x7a,0xd7,0x81,0xb3,0xc9,0xff,0xfd,0x77,0x6e,0x7d,0x33,0xba,0xaf,0xdd,0xc6, + 0xb4,0x2c,0x59,0x28,0xbe,0x6f,0x5d,0x59,0x5a,0x55,0xaa,0x17,0x97,0xec,0xe8,0x7c,0x23,0xf2,0x64,0x25, + 0x57,0xbd,0xed,0xb6,0x46,0x58,0xc1,0x0e,0x71,0x2c,0x58,0x41,0x89,0xc3,0xd0,0x90,0xc8,0x0a,0xfb,0xdf, + 0x14,0xd3,0x76,0x4b,0xe3,0x34,0x84,0x2a,0xe9,0x24,0x5d,0x93,0xfb,0xfb,0x9e,0xb7,0xa9,0xbd,0xa7,0x75, + 0x0f,0x8f,0xbd,0xd9,0x5b,0xbd,0x00,0x2a,0x3b,0xba,0xc5,0x33,0x46,0xb7,0x30,0x79,0xdf,0x22,0xc1,0xdb, + 0x71,0xb1,0x38,0x24,0x16,0xaf,0x92,0x09,0x70,0x4f,0x6c,0x42,0x3d,0xf6,0x54,0x83,0xd2,0xdf,0x78,0x43, + 0xcd,0x05,0x94,0xe2,0xe9,0x57,0xb3,0xf1,0x68,0x7c,0x6b,0x9b,0x79,0x3f,0x54,0xa9,0x47,0xe9,0x58,0xe2, + 0x2a,0x0d,0x6f,0xe0,0x21,0xf2,0xbd,0x7a,0x1b,0xde,0x46,0xc4,0x00,0x2a,0x02,0xce,0xd6,0x6e,0x94,0x78, + 0xbb,0xd9,0x15,0xc6,0xbc,0x45,0xd6,0xde,0xa6,0x46,0xc5,0xfc,0xfa,0xba,0x21,0xf8,0x38,0x88,0x1f,0x48, + 0xe4,0x2c,0x84,0x86,0xfe,0x1b,0x94,0xb6,0xb5,0xe7,0x37,0x51,0xd9,0x6a,0xb7,0x21,0x93,0x6e,0xbe,0xa2, + 0x6e,0x07,0x64,0x29,0x20,0x90,0xd9,0x7c,0x39,0xab,0x28,0x6f,0xc6,0xf1,0xd0,0x0d,0x28,0x82,0xbd,0x3d, + 0xbc,0xce,0x28,0x75,0x00,0x9a,0x7c,0xc1,0x2a,0x01,0x48,0xe3,0xa5,0x98,0xc7,0x19,0xc4,0xa5,0x7b,0xef, + 0x0a,0x66,0xb0,0xc4,0xc5,0x6b,0x70,0xad,0x95,0x92,0xaa,0x2e,0xfd,0xf3,0x18,0x3c,0x89,0x90,0xef,0x83, + 0xea,0xc5,0x67,0xd3,0x5a,0xa9,0xed,0x2c,0x2d,0x4e,0x2e,0xdd,0x87,0x05,0x3c,0x64,0xd7,0x12,0x4c,0x94, + 0xbd,0x2a,0xf6,0xbc,0x9d,0x0d,0xff,0x3f,0x34,0xd0,0x8b,0xb8,0xcc,0x3f,0x98,0x01,0x0d,0xcd,0x60,0x16, + 0x51,0x09,0xa7,0x40,0x51,0xe9,0x57,0x49,0x84,0x4d,0x52,0xfc,0xfb,0xd1,0xf2,0x8b,0xfa,0x0e,0x6c,0xd9, + 0xb7,0xf6,0x8a,0x5b,0x8c,0xd2,0x47,0xc8,0xf7,0xd8,0x5f,0xaf,0xb9,0x87,0x2c,0xbe,0x77,0x58,0x1d,0x5b, + 0x23,0xa9,0x6b,0xc8,0x62,0x34,0xb5,0xd7,0x14,0xd7,0x35,0x8b,0xd5,0xb3,0xeb,0x6f,0xa3,0xfa,0x50,0x35, + 0x6b,0xd4,0x65,0x72,0xa9,0x96,0x23,0xe4,0xe1,0xb6,0xa2,0x74,0xec,0x86,0xe5,0x0d,0xc2,0xb9,0xdc,0x12, + 0xce,0xd5,0x24,0x73,0xb9,0x2d,0x3f,0x33,0x62,0xb9,0xbc,0x9a,0x1c,0xa6,0x94,0x37,0x84,0x6c,0x79,0xed, + 0xe1,0x8a,0xb2,0x8d,0xe0,0xce,0xaf,0x04,0x58,0x81,0x9b,0x0f,0x44,0x02,0x37,0x3a,0x08,0xf6,0xbd,0x35, + 0x62,0x17,0x8a,0xd8,0x6d,0x74,0x5f,0xfd,0x36,0xb2,0xb6,0xd1,0x43,0x5d,0x42,0x09,0xd8,0x46,0x5f,0xaa, + 0x04,0x91,0xaa,0x8d,0x0e,0xbe,0x50,0xbf,0xb5,0x28,0x6d,0xf4,0x40,0x37,0x22,0xf2,0xb3,0xd1,0x17,0x68, + 0x82,0x8e,0x6e,0x0b,0xb9,0xd4,0x85,0xb5,0x7e,0xf9,0x77,0x59,0xf6,0x86,0x50,0xed,0x66,0xa6,0x9d,0x6e, + 0x44,0x3a,0xba,0xf6,0x13,0x77,0xf3,0x85,0x67,0xcb,0xd6,0xb7,0x76,0xb0,0x2e,0x50,0xad,0x24,0xa8,0x84, + 0x63,0x2a,0xb1,0xe9,0xe7,0x0f,0x1b,0xe2,0x51,0x23,0x04,0xdd,0xa9,0x84,0x9e,0x3b,0xb6,0x90,0x73,0xc7, + 0x12,0x6a,0xee,0x18,0x21,0xe6,0x8e,0x25,0xb3,0xdc,0x31,0x22,0x4a,0x09,0xfe,0x21,0x61,0x5b,0x3b,0xa7, + 0x14,0xdf,0x3c,0x27,0x15,0xfd,0x25,0x46,0xf4,0x97,0x4e,0x95,0x91,0xbf,0x27,0x99,0x6a,0x0a,0x27,0xfd, + 0x96,0xc0,0xf1,0xef,0x6e,0x7d,0x4b,0xf8,0x78,0xbb,0xc4,0x66,0x5a,0x97,0x58,0x6e,0xdf,0x7e,0x19,0xe1, + 0x8d,0x00,0x60,0x6d,0xf9,0x32,0x49,0x83,0xfb,0xfe,0xd4,0x68,0xba,0x5b,0x3b,0xb3,0xa5,0xbf,0xd6,0xde, + 0x34,0x3b,0xac,0xed,0x0e,0x3c,0x74,0x26,0x94,0x12,0x31,0xb8,0x77,0x3e,0xbf,0x3a,0xce,0x10,0x51,0x93, + 0x25,0x70,0x40,0xda,0x0f,0x9d,0xbe,0xa3,0xc9,0x6a,0x8b,0xaa,0x88,0xf7,0xbe,0xd8,0xf7,0xfc,0x44,0x92, + 0xa2,0xd3,0x82,0xc6,0xf1,0x3f,0xbe,0xd8,0xd7,0x32,0x59,0x44,0xc1,0xeb,0x3b,0x81,0xe3,0x27,0x8f,0x0e, + 0x74,0x33,0xfb,0x8e,0xe7,0xa7,0x08,0xa9,0xb9,0xf1,0x39,0x74,0x0d,0x5d,0x7e,0x5a,0x7f,0xe1,0x5a,0xb6, + 0xa8,0xbd,0x8a,0x36,0xd5,0x09,0x62,0x0f,0x9a,0xb1,0x1c,0xd0,0xb7,0xae,0xee,0xf0,0xe9,0xf5,0x8b,0x4f, + 0xeb,0x57,0x85,0xf9,0xb1,0xfa,0x37,0xaa,0x3e,0xf6,0x46,0x74,0xa9,0x39,0x84,0xce,0x3f,0x9c,0x7e,0x0c, + 0xef,0x4f,0x9b,0xff,0x0f,0x0c,0xb6,0x23,0x4c,0xaf,0x0a,0x02,0x00}; #endif diff --git a/src/charproperties.cpp b/src/charproperties.cpp index de13473..05fb9cb 100644 --- a/src/charproperties.cpp +++ b/src/charproperties.cpp @@ -29,4 +29,16 @@ void assignChar(char** field, const char* newValue) } else *field = nullptr; +} + + +bool sameStr(const char* value1, const char* value2) +{ + if ((value1 == nullptr) != (value2 == nullptr)) + return true; + + if (value1 == nullptr) + return false; + + return strcmp(value1, value2) == 0; } \ No newline at end of file diff --git a/src/charproperties.h b/src/charproperties.h index 2b5e941..19291a8 100644 --- a/src/charproperties.h +++ b/src/charproperties.h @@ -10,5 +10,6 @@ #include void assignChar(char** field, const char* newValue); +bool sameStr(const char* value1, const char* value2); #endif \ No newline at end of file diff --git a/src/config.h b/src/config.h index 27eb077..3ba54b2 100644 --- a/src/config.h +++ b/src/config.h @@ -21,6 +21,8 @@ static const char* MotionTriggerSettingsFile = "/motiontriggers.json"; static const char* DefaultAPSSIDPrefix = "Stairs-"; +static const char* DefaultNTPServer = "pool.ntp.org"; + // Timeout when in AP + station mode (otherwise trying to connect // to the STA will block the AP) static const uint32_t StationModeTimeout = 30000; @@ -28,4 +30,8 @@ static const uint32_t StationModeTimeout = 30000; static const uint16_t APButtonHoldTime = 5000; +// Only used if the timezone has not been succesfully retrieved yet, otherwise +// the configurable NTP interval is used +static const uint32_t TimezoneRetryInterval = 60000; + #endif \ No newline at end of file diff --git a/src/global.cpp b/src/global.cpp index bf75b42..68d9f72 100644 --- a/src/global.cpp +++ b/src/global.cpp @@ -29,5 +29,7 @@ bool shouldReboot = false; uint32_t currentTime; NTPClient* ntpClient = nullptr; +bool hasTimezone = false; +uint32_t timezoneOffset = 0; IPAddress emptyIP(0, 0, 0, 0); diff --git a/src/global.h b/src/global.h index 9c457a9..35a73d1 100644 --- a/src/global.h +++ b/src/global.h @@ -41,6 +41,8 @@ extern bool shouldReboot; extern uint32_t currentTime; extern NTPClient* ntpClient; +extern bool hasTimezone; +extern uint32_t timezoneOffset; extern IPAddress emptyIP; diff --git a/src/main.cpp b/src/main.cpp index 55f40e1..a153a1f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -9,7 +9,9 @@ //#include #include #include +#include #include +#include extern "C" { #include diff --git a/src/main.debug.h b/src/main.debug.h index 7339030..e0fb467 100644 --- a/src/main.debug.h +++ b/src/main.debug.h @@ -63,6 +63,9 @@ void updateDebugStatus() _d(day(time)); _d("-"); _d(month(time)); _d("-"); _d(year(time)); _d(" "); _d(hour(time)); _d(":"); _d(minute(time)); _d(":"); _dln(second(time)); + + _d("Status :: offset: "); + _dln(timezoneOffset); } } diff --git a/src/main.triggers.h b/src/main.triggers.h index 2a61ef5..f247c4a 100644 --- a/src/main.triggers.h +++ b/src/main.triggers.h @@ -4,6 +4,13 @@ uint32_t lastTimeTriggerChecked = 0; TimeTrigger* lastTimeTrigger = nullptr; TimeTrigger* activeTimeTrigger = nullptr; +uint32_t lastTimezoneUpdate = 0; +AsyncClient* timezoneClient = nullptr; +char* response = nullptr; +uint16_t responseSize = 0; + +static const uint16_t ResponseMaxSize = 1024; + void initMotionPins() { @@ -19,6 +26,136 @@ void initMotionPins() } +void parseResponse() +{ + if (response == nullptr || responseSize == 0) + return; + + _dln("Timezone :: response:"); + _dln(response); + + char* data = response; + if (strncmp(data, "HTTP/1.0 ", 9) != 0) + { + _dln("Timezone :: not an HTTP response"); + return; + } + + data += 9; + if (strncmp(data, "200", 3) != 0) + { + _dln("Timezone :: invalid HTTP status code"); + return; + } + + data = strstr(data, "\r\n\r\n"); + if (data == nullptr) + { + _dln("Timezone :: end of HTTP headers not found"); + return; + } + + data += 4; + + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(5) + 200); + JsonObject& root = jsonBuffer.parseObject(data); + + if (!sameStr(root["status"], "OK")) + { + _dln("Timezone :: invalid status in response"); + return; + } + + timezoneOffset = root["rawOffset"]; + hasTimezone = true; +} + + +void updateTimezone() +{ + if (timezoneClient != nullptr) + return; + + timezoneClient = new AsyncClient(); + if (!timezoneClient) + return; + + timezoneClient->onError([](void* arg, AsyncClient* client, int error) + { + _d("Timezone :: error "); + _dln(error); + + timezoneClient = nullptr; + delete client; + + lastTimezoneUpdate = currentTime; + }, nullptr); + + timezoneClient->onConnect([](void* arg, AsyncClient* client) + { + response = (char*)malloc(ResponseMaxSize + 1); + responseSize = 0; + timezoneClient->onError(nullptr, nullptr); + + client->onDisconnect([](void * arg, AsyncClient * c) + { + timezoneClient = nullptr; + delete c; + + lastTimezoneUpdate = currentTime; + + parseResponse(); + free(response); + response = nullptr; + }, nullptr); + + client->onData([](void* arg, AsyncClient* c, void* data, size_t len) + { + uint16_t copyLen = responseSize == ResponseMaxSize ? 0 : + responseSize + len > ResponseMaxSize ? ResponseMaxSize - responseSize : + len; + + if (copyLen > 0) + { + memcpy(response + responseSize, data, copyLen); + responseSize += copyLen; + response[responseSize] = 0; + } + }, nullptr); + + + uint32_t timestamp = ntpClient->getEpochTime(); + String request = "GET /maps/api/timezone/json?location=" + + String(systemSettings->latitude(), 7) + "," + String(systemSettings->longitude(), 7) + + "8×tamp=" + + String(timestamp); + + _d("Timezone :: request: "); + _dln(request); + + if (systemSettings->mapsAPIKey() != nullptr) + request = request + "&key=" + systemSettings->mapsAPIKey(); + + request = request + " HTTP/1.0\r\nHost: maps.googleapis.com\r\n\r\n"; + client->write(request.c_str()); + }, nullptr); + + _d("Timezone :: available heap: "); + _dln(ESP.getFreeHeap()); + + if(!timezoneClient->connect("maps.googleapis.com", 443, true)) + { + _dln("Timezone :: failed to connect to host"); + + AsyncClient * client = timezoneClient; + timezoneClient = nullptr; + delete client; + + lastTimezoneUpdate = currentTime; + } +} + + void updateNTPClient() { if (ntpClient == nullptr && WiFi.status() == WL_CONNECTED && @@ -31,14 +168,30 @@ void updateNTPClient() } - if (ntpClient != nullptr) + // Only update if we're not in the middle of a transition, as it will block + // the loop until the NTP server responds or times out (up to a second) + if (ntpClient != nullptr && !stairs->inTransition()) + { ntpClient->update(); + + // Lat/lng 0,0 is off the African coast, I think we can safely assume nobody + // will have WiFi enabled stair lighting at that location. + if (timezoneClient == nullptr && systemSettings->latitude() && systemSettings->longitude()) + { + uint32_t interval = hasTimezone ? systemSettings->ntpInterval() * 60 * 1000 : TimezoneRetryInterval; + if (lastTimezoneUpdate == 0 || currentTime - lastTimezoneUpdate > interval) + { + updateTimezone(); + lastTimezoneUpdate = currentTime; + } + } + } } void updateTimeTrigger() { - if (ntpClient == nullptr || !timeTriggerSettings->enabled()) + if (ntpClient == nullptr || !hasTimezone || !timeTriggerSettings->enabled()) { activeTimeTrigger = nullptr; return; @@ -65,10 +218,8 @@ void updateTimeTrigger() return; } - // TODO apply timezone offset - tmElements_t time; - breakTime(epochTime, time); + breakTime(epochTime + timezoneOffset, time); activeTimeTrigger = timeTriggerSettings->getActiveTrigger(time); diff --git a/src/settings/connection.cpp b/src/settings/connection.cpp index 4053ef3..09feddc 100644 --- a/src/settings/connection.cpp +++ b/src/settings/connection.cpp @@ -65,11 +65,11 @@ bool ConnectionSettings::fromJson(char* data, bool* changed) if (!(jsonAccessPoint || jsonStation)) jsonAccessPoint = true; - if ((jsonHostname != hostname()) || + if ((!sameStr(jsonHostname, hostname())) || (jsonAccessPoint != flag(AccessPoint)) || (jsonStation != flag(StationMode)) || - (jsonSSID != ssid()) || - (jsonPassword != password()) || + (!sameStr(jsonSSID, ssid())) || + (!sameStr(jsonPassword, password())) || (jsonDHCP != flag(DHCP)) || (jsonIP != ip()) || (jsonSubnetMask != subnetMask()) || diff --git a/src/settings/system.cpp b/src/settings/system.cpp index e8a45bf..f141dc0 100644 --- a/src/settings/system.cpp +++ b/src/settings/system.cpp @@ -68,6 +68,9 @@ bool SystemSettings::fromJson(char* data, bool* changed) uint16_t jsonPWMDriverFrequency = root["pwmFrequency"]; const char* jsonMapAPIKey = root["mapsAPIKey"]; + if (jsonNTPServer == nullptr) jsonNTPServer = DefaultNTPServer; + if (jsonNTPInterval == 0) jsonNTPInterval = 5; + if (jsonPinLEDAP == 0) jsonPinLEDAP = pinLEDAP(); if (jsonPinLEDSTA == 0) jsonPinLEDSTA = pinLEDSTA(); if (jsonPinAPButton == 0) jsonPinAPButton = pinAPButton(); @@ -85,10 +88,10 @@ bool SystemSettings::fromJson(char* data, bool* changed) (jsonPinPWMDriverSCL != pinPWMDriverSCL()) || (jsonPWMDriverAddress != pwmDriverAddress()) || (jsonPWMDriverFrequency != pwmDriverFrequency()) || - (jsonMapAPIKey != mapsAPIKey()) || + (!sameStr(jsonMapAPIKey, mapsAPIKey())) || (jsonLat != latitude()) || (jsonLng != longitude()) || - (jsonNTPServer != ntpServer()) || + (!sameStr(jsonNTPServer, ntpServer())) || (jsonNTPInterval != ntpInterval())) { latitude(jsonLat); diff --git a/src/settings/system.h b/src/settings/system.h index 606bd66..fd513b4 100644 --- a/src/settings/system.h +++ b/src/settings/system.h @@ -17,7 +17,7 @@ class SystemSettings : public AbstractJsonSettings { private: - char* mNTPServer = nullptr; + char* mNTPServer; uint32_t mNTPInterval = 5; double mLatitude = 0; @@ -39,6 +39,12 @@ class SystemSettings : public AbstractJsonSettings virtual const char* getDebugPrefix() { return "SystemSettings"; }; public: + SystemSettings() + { + assignChar(&mNTPServer, DefaultNTPServer); + } + + void toJson(Print &print); bool fromJson(char* data, bool* changed); diff --git a/src/stairs.h b/src/stairs.h index 324ec3f..decd5ca 100644 --- a/src/stairs.h +++ b/src/stairs.h @@ -34,6 +34,8 @@ class Stairs void init(PCA9685* pwmDriver); void tick(); + bool inTransition() { return mTick; } + uint8_t get(uint8_t step, bool target = true); void set(uint8_t step, uint8_t brightness, uint16_t transitionTime = 0, uint16_t startTime = 0); void setAll(uint8_t brightness, uint16_t transitionTime = 0, uint16_t startTime = 0); diff --git a/web/dist/bundle.css b/web/dist/bundle.css index 4bf6224..142e30c 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem}.notificationContainer{position:absolute;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background-color:#ffc;border:solid 1px #000;box-shadow:0 0 10px #000;color:#000;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background-color:#ffc6b3;border:solid 1px #000;color:#000}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{border:solid 1px #404040;margin-bottom:2rem;padding:0}.panel .panel-header{background-color:#302f28;color:grey}.panel .panel-header input[type=checkbox]{margin-left:.5em;margin-top:.5em;margin-bottom:.5em}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header a,.panel .panel-header label{color:#fff}.panel .panel-body{background-color:#242422;padding:2rem}select{background:#202020;color:#fff}select:focus{background-image:none}.inline{display:inline-block;width:auto}.checkbox{white-space:nowrap}.weekday label{width:5em} \ No newline at end of file +*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background-color:#ffc;border:solid 1px #000;box-shadow:0 0 10px #000;color:#000;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background-color:#ffc6b3;border:solid 1px #000;color:#000}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{border:solid 1px #404040;margin-bottom:2rem;padding:0}.panel .panel-header{background-color:#302f28;color:grey}.panel .panel-header input[type=checkbox]{margin-left:.5em;margin-top:.5em;margin-bottom:.5em}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header a,.panel .panel-header label{color:#fff}.panel .panel-body{background-color:#242422;padding:2rem}select{background:#202020;color:#fff}select:focus{background-image:none}.inline{display:inline-block;width:auto}.checkbox{white-space:nowrap}.weekday label{width:5em} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 59cfe38..a2073a8 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(e){c.headers[e]={}}),o.forEach(["post","put","patch"],function(e){c.headers[e]=o.merge(s)}),e.exports=c},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){return r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]}),(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===hn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return gn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):G(c)&&G(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Fr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Ee(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==hn.call(n))&&e.test(t));var n}function De(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Pe(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Le(e,n){return{staticClass:Fe(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Fe(e,t){return e?t?e+" "+t:e:t||""}function Ne(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(b=e.charAt(y));y--);b&&Ti.test(b)||(p=!0)}}else void 0===o?(g=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==g&&t(),a)for(i=0;i-1?{exp:e.slice(0,Kr),key:'"'+e.slice(Kr+1)+'"'}:{exp:e,key:null};for(zr=e,Kr=Jr=Gr=0;!st();)ct(qr=at())?lt(qr):91===qr&&function(e){var t=1;for(Jr=Kr;!st();)if(e=at(),ct(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){Gr=Kr;break}}(qr);return{exp:e.slice(0,Jr),key:e.slice(Jr+1,Gr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function at(){return zr.charCodeAt(++Kr)}function st(){return Kr>=Hr}function ct(e){return 34===e||39===e}function lt(e){for(var t=e;!st()&&(e=at())!==t;);}function ut(e,t,n,r,i){var o,a,s,c,l;t=(l=t)._withTask||(l._withTask=function(){dr=!0;var e=l.apply(null,arguments);return dr=!1,e}),n&&(o=t,a=e,s=r,c=Xr,t=function e(){null!==o.apply(null,arguments)&&ft(a,e,s,c)}),Xr.addEventListener(e,t,Bn?{capture:r,passive:i}:r)}function ft(e,t,n,r){(r||Xr).removeEventListener(e,t._withTask||t,n)}function dt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(e){if(t(e[ki])){var n=Ln?"change":"input";e[n]=[].concat(e[ki],e[n]||[]),delete e[ki]}t(e[xi])&&(e.change=[].concat(e[xi],e.change||[]),delete e[xi])}(i),q(i,o,ut,ft,r.context),Xr=void 0}}function pt(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function ht(e){var t=vt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function vt(e){return Array.isArray(e)?m(e):"string"==typeof e?Si(e):e}function mt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=vt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ht(i.data))&&v(r,n);(n=ht(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=ht(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ei(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ei(c,s,null==a?"":a)}}function gt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function bt(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Ii(e.name||"v")),v(t,e),t}return"string"==typeof e?Ii(e):void 0}}function _t(e){Vi(function(){Vi(e)})}function wt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),gt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),yt(e,t)}function kt(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Bi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=Fi,u=a,f=o.length):t===Ni?l>0&&(n=Ni,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Fi&&Ui.test(r[Mi+"Property"])}}function Ct(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&St(t)}function jt(e,t,n){Dt(e,t,n),(Ln||Nn)&&setTimeout(function(){Dt(e,t,n)},0)}function Dt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Lt(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Lt(e){return"_value"in e?e._value:e.value}function Ft(e){e.target.composing=!0}function Nt(e){e.target.composing&&(e.target.composing=!1,Mt(e.target,"input"))}function Mt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Rt(e){return!e.componentInstance||e.data&&e.data.transition?e:Rt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Y(t.children)):e}function Bt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[bn(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ht(e){e.data.newPos=e.elm.getBoundingClientRect()}function zt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',So.innerHTML.indexOf(" ")>0}var pn=Object.freeze({}),hn=Object.prototype.toString,vn=l("slot,component",!0),mn=l("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,bn=d(function(e){return e.replace(yn,function(e,t){return t?t.toUpperCase():""})}),_n=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),wn=/\B([A-Z])/g,Tn=d(function(e){return e.replace(wn,"-$1").toLowerCase()}),kn=function(e,t,n){return!1},xn=function(e){return e},Cn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],$n={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:kn,isReservedAttr:kn,isUnknownElement:kn,getTagNamespace:g,parsePlatformTagName:xn,mustUseProp:kn,_lifecycleHooks:Sn},On=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,jn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=jn&&WXEnvironment.platform.toLowerCase(),In=Pn&&window.navigator.userAgent.toLowerCase(),Ln=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===Dn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===Dn,Wn=(In&&/chrome\/\d+/.test(In),{}.watch),Bn=!1;if(Pn)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Bn=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Un,Hn,zn=function(){return void 0===Un&&(Un=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Un},qn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Hn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(e){this.subs.push(e)},Xn.prototype.removeSub=function(e){u(this.subs,e)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tCr&&_r[n].id>e.id;)n--;_r.splice(n+1,0,e)}else _r.push(e);kr||(kr=!0,U(ce))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){R(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var $r={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};xe(Ce.prototype);var Er,Pr,jr,Dr,Ir={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=(a=e,s={_isComponent:!0,parent:br,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Ir.prepatch(o,o)}var a,s,c},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==pn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||pn,e.$listeners=n||pn,t&&e.$options.props){ir.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};Rr=Ee,(Br={}).get=function(){return $n},Object.defineProperty(Rr,"config",Br),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=$,Rr.delete=O,Rr.nextTick=U,Rr.options=Object.create(null),An.forEach(function(e){Rr.options[e+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Ur),Rr.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},Rr.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)ue(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Wr=Rr,An.forEach(function(e){Wr[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}),Object.defineProperty(Ee.prototype,"$isServer",{get:zn}),Object.defineProperty(Ee.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Ee.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=l("style,class"),Qr=l("input,textarea,option,select,progress"),ei=function(e,t,n){return"value"===n&&Qr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ti=l("contenteditable,draggable,spellcheck"),ni=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},oi=function(e){return ii(e)?e.slice(6,e.length):""},ai=function(e){return null==e||!1===e},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),li=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),ui=function(e){return ci(e)||li(e)},fi=Object.create(null),di=l("text,number,password,search,email,tel,url"),pi=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(si[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),hi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ue,update:Ue,destroy:function(e){Ue(e,vi)}},yi=Object.create(null),bi=[hi,gi],_i={create:qe,update:qe},wi={create:Je,update:Je},Ti=/[\w).+\-_$\]]/,ki="__r",xi="__c",Ci={create:dt,update:dt},Ai={create:pt,update:pt},Si=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),$i=/^--/,Oi=/\s*!important$/,Ei=function(e,t,n){if($i.test(t))e.style.setProperty(t,n);else if(Oi.test(n))e.style.setProperty(t,n.replace(Oi,""),"important");else{var r=ji(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&C.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:fi[e]=/HTMLUnknownElement/.test(t.toString())},v(Ee.options.directives,qi),v(Ee.options.components,Xi),Ee.prototype.__patch__=Pn?Hi:g,Ee.prototype.$mount=function(e,t){return e=e&&Pn?Re(e):void 0,r=e,i=t,(n=this).$el=r,n.$options.render||(n.$options.render=er),se(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,se(n,"mounted")),n;var n,r,i},Ee.nextTick(function(){$n.devtools&&qn&&qn.emit("init",Ee)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,eo=d(function(e){var t=e[0].replace(Qi,"\\$&"),n=e[1].replace(Qi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),to={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=rt(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=nt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},no={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=rt(e,"style");n&&(e.staticStyle=JSON.stringify(Si(n)));var r=nt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ro=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",lo=new RegExp("^<"+co),uo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Lo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ho.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(vo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(po);if(y){n(y[0].length);continue}var b=e.match(fo);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(lo);if(t){var r,i,o={tagName:t[1],attrs:[],start:u};for(n(t[0].length);!(r=e.match(uo))&&(i=e.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=u,o}}();if(w){!function(e){var n,i,u,f=e.tagName,d=e.unarySlash;s&&("p"===o&&oo(f)&&r(o),l(f)&&o===f&&r(f));for(var p=c(f)||!!d,h=e.attrs.length,v=new Array(h),m=0;m=0){for(k=e.slice(v);!(fo.test(k)||lo.test(k)||ho.test(k)||vo.test(k)||(x=k.indexOf("<",1))<0);)v+=x,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:go,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||xo(e);Ln&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Ge(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t,n,r,i=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(r=i,F.test(r)?(n=(t=i).charCodeAt(0))!==t.charCodeAt(t.length-1)||34!==n&&39!==n?t:t.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.formatter=this.$root.$i18n.formatter,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[C]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===j&&'"'===t)return l++,r="\\"+t,h[C](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?t:r,!1===a()))return;if(u===D)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c,l=this._path.getPathValue(t,i);if(Array.isArray(l))return l;if(r(l)){if(!n(t))return null;if("string"!=typeof(c=t[i]))return null}else{if("string"!=typeof l)return null;c=l}return c.indexOf("@:")>=0&&(c=this._link(e,t,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s,c=i.apply(void 0,o),l=c.locale||t,u=this._translate(n,l,this.fallbackLocale,e,r,"string",c.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[e].concat(o))}return this._warnDefault(l,e,u,r)},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){var n;(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===u.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===u.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,l){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+u(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,l,r),p=null}},p.onerror=function(){l(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){l(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),l(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=u(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function u(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=x(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=x(l.text+c):""!==c&&f.push(x(c)):X(c)&&X(l)?f[u]=x(l.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function je(e){return e&&(e.Ctor.options.name||e.tag)}function De(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=je(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,l(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=qr=0;!ct();)ut(Ur=st())?lt(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),ut(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){qr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,qr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Br}function ut(e){return 34===e||39===e}function lt(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=Kr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),Kr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||Kr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),K(i,o,ft,dt,r.context),Kr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};t(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)e(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=e(o)?"":String(o);d=l,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=l)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?xi(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Si(c,s,"");for(s in p)(a=p[s])!==f[s]&&Si(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&l(e._transitionClasses,t),bt(e,t)}function xt(e,t,n){var r=Ct(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Di?Fi:Mi,c=0,u=function(){e.removeEventListener(s,l),n()},l=function(t){t.target===e&&++c>=a&&u()};setTimeout(function(){c0&&(n=Di,l=a,f=o.length):t===Ii?u>0&&(n=Ii,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Di:Ii:null)?n===Di?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Di&&Wi.test(r[Li+"Property"])}}function At(e,t){for(;e.length1}function jt(e,t){!0!==t.data.show&&$t(t)}function Dt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Wt(e){return!e.componentInstance||e.data&&e.data.transition?e:Wt(e.componentInstance._vnode)}function Bt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Bt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function qt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Kt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',xo.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,xn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Cn=function(e,t,n){return!1},An=function(e){return e},Sn="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},Pn=/[^\w.$]/,jn="__proto__"in{},Dn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=Dn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Wn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Bn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(Dn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Dn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Dn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);qn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){l(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tSr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);Cr||(Cr=!0,H(ue))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){W(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};Ce(Ae.prototype);var jr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;jr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Wr),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:Kn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Br,Vr,Ur,Hr,zr,qr,Kr,Jr,Gr=u("style,class"),Xr=u("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){Be(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Be(e,!0),Be(t))},destroy:function(e){Be(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:Ke,update:Ke},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},xi=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Ci=/^--/,Ai=/\s*!important$/,Si=function(e,t,n){if(Ci.test(t))e.style.setProperty(t,n);else if(Ai.test(n))e.style.setProperty(t,n.replace(Ai,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&C.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),t(l)&&t(u=l.hook)&&t(u=u.postpatch)&&u(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Ui),v(Pe.options.components,Ki),Pe.prototype.__patch__=Dn?Bi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&Dn?We(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(xi(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),jo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});l+=e.length-h.length,e=h,r(d,l-f,l)}else{var v=e.indexOf("<");if(0===v){if(lo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(uo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=l;n(b[0].length),r(b[1],_,l);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:l};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(co.test(k)||ao.test(k)||lo.test(k)||fo.test(k)||(x=k.indexOf("<",1))<0);)v+=x,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,u){var l=i&&i.ns||wo(e);Nn&&"svg"===l&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=Xe(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(e,t){u[t]=e}):Object.keys(l).forEach(function(e){u[e]=l[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;u[n]=e}),t(r.tag,i,a.i(s,c,u))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,l=E,h[C]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(t=e[u])||!function(){var t=e[u+1];if(l===P&&"'"===t||l===j&&'"'===t)return u++,r="\\"+t,h[C](),!0}()){if(i=d(t),(o=(s=L[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(l===D)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(t))return null;if("string"!=typeof(u=t[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(e,t,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(e,t,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(e,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,u=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[e].concat(o))}return this._warnDefault(c,e,u,r);var l},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file diff --git a/web/site.scss b/web/site.scss index d161488..350a13b 100644 --- a/web/site.scss +++ b/web/site.scss @@ -293,7 +293,7 @@ input[disabled] .notificationContainer { - position: absolute; + position: fixed; top: 2rem; z-index: 666; From bc90234f735e609bd8d437050e670667bd963966 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Fri, 19 Jan 2018 16:12:23 +0100 Subject: [PATCH 24/43] Implemented timezone API HTTP proxy --- hosted/timezone.php | 3 + platformio-buildflags.bat | 4 +- src/assets/js.h | 4576 +++++++++++++++++++------------------ src/assets/version.h | 6 +- src/config.h | 23 + src/main.triggers.h | 14 +- web/dist/bundle.js | 2 +- 7 files changed, 2338 insertions(+), 2290 deletions(-) create mode 100644 hosted/timezone.php diff --git a/hosted/timezone.php b/hosted/timezone.php new file mode 100644 index 0000000..33d184b --- /dev/null +++ b/hosted/timezone.php @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/platformio-buildflags.bat b/platformio-buildflags.bat index 106cf3e..6d91e0d 100644 --- a/platformio-buildflags.bat +++ b/platformio-buildflags.bat @@ -1,5 +1,7 @@ @Echo Off -echo -DASYNC_TCP_SSL_ENABLED=1 + +REM Enable this line if you're not using MapsAPIViaProxyScript +REM echo -DASYNC_TCP_SSL_ENABLED=1 if exist src\secret.h ( echo -DSecretsPresent=1 diff --git a/src/assets/js.h b/src/assets/js.h index c3116d1..9b76e20 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2287 +4,2299 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb2,0x36,0xfc,0x57, - 0x24,0xbc,0xbe,0x34,0x30,0x6a,0xd1,0x92,0x93,0xcc,0x9d,0x80,0x46,0xf8,0x7a,0x8d,0x9d,0x78,0x1b,0x5b, - 0x59,0x66,0x14,0x5d,0x1d,0x88,0x04,0x25,0xc4,0x24,0xc0,0x00,0xa0,0x96,0x88,0x7c,0x7f,0xfb,0x57,0x4f, - 0x55,0x6f,0x00,0x21,0x27,0x99,0x73,0xcf,0x77,0x7c,0x2c,0x02,0xdd,0x8d,0x5e,0xab,0xab,0x6b,0xef,0xdd, - 0xd9,0xaa,0x98,0x34,0x79,0x59,0x84,0x99,0x6a,0xa2,0xdb,0xa0,0x3c,0xfb,0x35,0x9b,0x34,0x41,0x92,0x34, - 0x37,0xcb,0xac,0x9c,0xed,0x64,0xd7,0xcb,0xb2,0x6a,0xea,0xc1,0x60,0x2b,0x67,0x51,0x4e,0x57,0xf3,0x6c, - 0x2c,0x3f,0x43,0x5d,0x2e,0x69,0xc2,0x28,0x0e,0x4c,0x9d,0xae,0xf0,0x34,0x9b,0xe5,0x45,0x36,0x18,0xc8, - 0xef,0x30,0x5d,0x4c,0xc7,0xf2,0x18,0x1e,0x9f,0x50,0xbb,0xf1,0x5d,0xed,0x8e,0xf5,0xef,0x30,0xbd,0xce, - 0x4b,0xa9,0x3d,0x73,0xcf,0x9b,0xb0,0xb9,0xc8,0x6b,0x65,0x87,0x10,0xdd,0x56,0x59,0xb3,0xaa,0x8a,0x1d, - 0x37,0xa8,0xe8,0xd6,0x3c,0xef,0x34,0x61,0x15,0xdd,0xe6,0xb3,0xb0,0x38,0xae,0x4e,0x22,0x5d,0x10,0xcf, - 0xa6,0xef,0xa3,0xcb,0xb4,0xda,0xc9,0x13,0x24,0x25,0xb7,0x3a,0x2d,0xbe,0xdd,0xa8,0x7c,0x1a,0x57,0x6a, - 0x5e,0xa6,0xd3,0x6c,0x1a,0xef,0x1e,0x6e,0x46,0xfa,0xd3,0x0c,0x9f,0x4e,0xd2,0xf9,0x3c,0xcc,0x4d,0x0d, - 0x2a,0x57,0xee,0xb9,0x89,0xe8,0x45,0x3e,0x4b,0x76,0x0f,0x5c,0xc6,0x06,0xcd,0x14,0xc9,0xad,0xad,0xa8, - 0x19,0x2e,0x12,0x9a,0xfc,0xe1,0x24,0x29,0xe8,0xef,0x32,0x09,0x02,0xd5,0x84,0x07,0x34,0xb8,0x63,0x7f, - 0x6d,0x54,0x11,0xdd,0xba,0x69,0x2e,0xc2,0xc3,0x68,0xa3,0xba,0xf9,0xc1,0xaa,0xce,0x76,0xea,0xa6,0xca, - 0x69,0x26,0x47,0x76,0xdc,0x15,0x66,0x01,0x8d,0x36,0x49,0x91,0x5d,0xed,0xa4,0xf4,0xaa,0x8a,0xa4,0x0c, - 0xd3,0xe1,0xb2,0x2a,0x9b,0x12,0x13,0x3e,0xac,0xb2,0xdf,0x56,0x59,0xdd,0x50,0xa7,0x4d,0xaf,0xd0,0xdf, - 0x26,0x2b,0xa6,0x61,0xa1,0xbc,0x82,0x32,0x2a,0x9b,0x43,0x6f,0xc5,0x46,0x4f,0x5b,0xf8,0x30,0x52,0x25, - 0xfd,0x7c,0x11,0xa9,0x94,0x7e,0xbe,0x8a,0x14,0xba,0xf9,0xf7,0x48,0x4d,0x92,0x2a,0xac,0xa3,0xd1,0x64, - 0xf8,0x98,0xd7,0x2d,0x55,0x93,0xe1,0xa4,0xca,0xd2,0x26,0x4b,0xfc,0x65,0xd2,0xcd,0x56,0x34,0x9b,0x8b, - 0xac,0x3a,0xcf,0xc2,0x5a,0x65,0x11,0x8d,0x71,0x32,0x7c,0x9a,0x16,0x93,0x6c,0x8e,0x06,0xa8,0x6a,0xf3, - 0x7a,0x54,0x7e,0xca,0x0a,0xa4,0x7d,0x89,0xb4,0xbc,0x76,0x85,0x0e,0x90,0x40,0xcb,0xd2,0x57,0xfb,0xfb, - 0xaa,0x5c,0xe4,0x75,0x86,0x6c,0x4a,0x45,0xe5,0xf5,0x92,0xba,0x32,0xc5,0x77,0xd4,0x61,0x37,0xbf,0x13, - 0xf7,0x3c,0x24,0x40,0x4d,0x57,0xf3,0x26,0x99,0xfc,0xa5,0x09,0x97,0x16,0x83,0x63,0x01,0xec,0x9d,0xc7, - 0x55,0x95,0xde,0x9c,0x10,0x7c,0x27,0x2b,0x01,0x1a,0x6a,0xde,0x7e,0x90,0x7b,0x5d,0x2c,0x56,0xf3,0xf9, - 0x6e,0x92,0x64,0x3d,0x3b,0x2e,0x73,0x5f,0x94,0x3d,0x4d,0xbc,0xd0,0x99,0x77,0xb5,0x92,0xca,0x16,0xc7, - 0x0e,0xb0,0x6d,0x5c,0x96,0xf9,0x74,0xe7,0x00,0xcf,0x11,0xa5,0x9b,0x16,0x77,0x6d,0x8b,0x83,0x41,0x98, - 0x25,0xc7,0xd9,0x49,0xa4,0x30,0xa8,0x68,0x56,0x56,0xa1,0x80,0x2f,0x01,0x74,0x92,0x0d,0xe7,0x59,0x71, - 0xde,0x5c,0x8c,0x8a,0x47,0xf9,0xa8,0xd8,0xdb,0x8b,0x1a,0x69,0x14,0xd5,0xab,0xec,0xb8,0x38,0x51,0x05, - 0xad,0xe1,0x28,0x9b,0xd3,0x24,0x99,0x2f,0xcb,0x9d,0x9c,0xb6,0x4e,0xf4,0x8e,0x1b,0xf2,0x00,0xf0,0x22, - 0xad,0xdf,0x5d,0x15,0xb4,0x3e,0xcb,0xac,0x6a,0x6e,0x74,0xe7,0x55,0x19,0x0d,0x06,0xed,0x4a,0xcb,0x13, - 0x55,0x52,0xa5,0x0c,0x74,0xb5,0x40,0x1b,0xed,0x9b,0x90,0xa0,0x60,0x95,0x6c,0x55,0xda,0x94,0x1f,0x69, - 0x6d,0x8a,0xf3,0x91,0x5b,0xd8,0xdb,0xbc,0xe6,0xa5,0xa0,0x2d,0xad,0x9f,0x9e,0xac,0x66,0xb3,0xac,0x8a, - 0xb7,0xa1,0xa5,0xbd,0x76,0x52,0xac,0x33,0xb7,0x54,0x87,0xfe,0x7c,0x42,0x8f,0x2f,0xca,0x6a,0xf1,0x2c, - 0x6d,0xd2,0xbe,0xba,0x56,0x85,0xe0,0xbb,0xa9,0x9b,0x5c,0x53,0x7c,0x30,0xc8,0x68,0x52,0xea,0x06,0x10, - 0xec,0x25,0x6f,0xda,0x1d,0xfc,0x31,0xcf,0xae,0xfe,0x64,0xc5,0xde,0x57,0x83,0x81,0xf7,0x42,0xdb,0x04, - 0xb5,0x8c,0xb7,0x93,0xa8,0xbe,0x98,0xd6,0x3a,0x1b,0x9e,0xe9,0xaf,0xcc,0x93,0xdf,0x31,0xef,0x33,0xf4, - 0x4d,0xa6,0xb6,0xaf,0x4b,0x35,0xe7,0xf8,0x70,0x4b,0xc5,0xdf,0xae,0x16,0x67,0xfd,0xd3,0x5c,0x70,0x4e, - 0xa7,0xb8,0xac,0x65,0x4c,0x08,0xb5,0xfe,0xc1,0x8c,0xb0,0xe7,0xe3,0x1d,0x01,0x60,0x5a,0x14,0xfe,0x8a, - 0xe6,0x2d,0xfb,0xdc,0x4a,0x22,0x7f,0x7b,0x09,0x5f,0xe4,0xf3,0xcf,0x7e,0x85,0xfc,0x9e,0x85,0x9f,0x97, - 0x67,0x9f,0xfb,0x0a,0xf9,0x3d,0x6d,0xe9,0x0f,0xe2,0x52,0xa6,0x30,0x4b,0x17,0x7d,0xc3,0x02,0x46,0x18, - 0x0c,0x68,0x97,0x0f,0x97,0xf9,0x52,0xbe,0xfc,0xe1,0xc3,0xeb,0x8f,0x59,0x5a,0x4d,0x2e,0xde,0xa7,0x55, - 0xba,0xa8,0xff,0x24,0x2c,0x74,0xbe,0xea,0xc0,0x5a,0x27,0x57,0x96,0x35,0x2d,0xa6,0x69,0x35,0x7d,0x52, - 0x95,0x57,0x75,0x56,0x3d,0x2f,0x2e,0xe3,0xad,0xf3,0x35,0xf4,0x5a,0xb2,0xcb,0x56,0xa4,0x97,0xf9,0x79, - 0xda,0x94,0xd5,0x7a,0x1d,0x7c,0xc8,0xd2,0x49,0xf3,0x36,0x6d,0xf2,0xcb,0x8c,0xba,0x92,0xd8,0x2c,0xec, - 0xcd,0xe9,0x6a,0xd2,0xd0,0xd8,0xfa,0x3a,0x7b,0x95,0x17,0xd3,0xf2,0xaa,0x3f,0x6f,0x5a,0x4e,0x56,0x8b, - 0xac,0x68,0x08,0x09,0x97,0xd5,0xf3,0x74,0x72,0x11,0xa7,0x8a,0x0f,0x0a,0xdb,0xbd,0x9d,0x2c,0x6c,0x9d, - 0xf6,0x8d,0xaa,0x7a,0x08,0x1a,0x1c,0xef,0x3d,0xb8,0xb5,0x19,0xf3,0xb9,0x9f,0x31,0x75,0x00,0x8a,0x84, - 0x5f,0x9b,0x8d,0xc3,0x78,0x44,0x09,0x54,0x8c,0xf6,0xd2,0xea,0x9c,0x7b,0x52,0x1b,0xf4,0x57,0x11,0xfa, - 0xab,0x08,0xfd,0xa5,0xa1,0xcd,0x92,0x4a,0xcc,0x59,0x5a,0x6c,0x94,0x1c,0x99,0x71,0xf7,0x00,0xd1,0x05, - 0x52,0xea,0xac,0xcd,0xe2,0x7e,0x83,0xba,0x48,0x0a,0xea,0xe8,0x36,0x2d,0xd5,0x8c,0xeb,0x10,0x1f,0xc7, - 0xcd,0x86,0x8e,0xac,0x8d,0xa2,0xdd,0xd6,0x0b,0x43,0x38,0xd5,0x97,0xf3,0x74,0x92,0x85,0x0f,0xfe,0xe7, - 0x97,0xfa,0x6f,0x0f,0x54,0x10,0x44,0x2e,0x89,0x52,0xee,0x71,0xd2,0x66,0xd3,0x3e,0xd7,0x3a,0xa7,0x9a, - 0x43,0x9d,0xed,0x42,0x5d,0x4a,0x8b,0xa6,0xde,0x4e,0x15,0xc8,0x0c,0xc6,0x16,0x61,0x77,0xae,0x22,0xcc, - 0x21,0x4d,0x58,0x61,0xe7,0x8e,0xe6,0x8d,0xa7,0xda,0x9f,0x3a,0x4b,0x62,0x0d,0xd3,0xe5,0x72,0x7e,0xc3, - 0xa3,0xdd,0xee,0xa6,0x5d,0x6a,0x6f,0xd0,0xbb,0xbb,0xd9,0x70,0x52,0x12,0x80,0x57,0x04,0x65,0x65,0xd5, - 0x3b,0x7f,0xad,0x12,0x43,0x83,0xc1,0x81,0xf3,0xfa,0xd2,0xb1,0x6f,0xfb,0xe6,0xa0,0x73,0x60,0xe3,0xa4, - 0x44,0xea,0x7a,0x1d,0x36,0x44,0xcd,0xf5,0x2d,0xdb,0x10,0x94,0xc6,0x0b,0xa2,0x08,0x9b,0xd7,0xcf,0xfb, - 0x17,0x76,0x58,0xcf,0xf3,0x09,0xd5,0x44,0x30,0x20,0x8f,0xe1,0x81,0x3a,0x88,0x22,0xaa,0x14,0xe3,0x3a, - 0x35,0x5d,0x8a,0x98,0x52,0x6d,0x36,0x7f,0x89,0x1e,0x01,0xa5,0x6c,0x48,0x99,0x1a,0xf4,0x26,0xde,0xf3, - 0xa2,0xc9,0xaa,0x49,0xb6,0xa4,0x01,0xd3,0xd1,0xa8,0x89,0xc0,0x98,0xa9,0x44,0x55,0x65,0xf5,0x92,0xe6, - 0x23,0x93,0xd7,0x8d,0x25,0xf3,0xfe,0x2e,0x64,0xde,0x43,0x21,0xf3,0x0e,0xff,0x5b,0xe8,0xbc,0xc3,0x7f, - 0x10,0xb4,0x6f,0x13,0x94,0xad,0x09,0xdb,0x3e,0x18,0x98,0xbc,0x28,0x35,0xc1,0x77,0xbb,0xaa,0xe6,0xb1, - 0x03,0x83,0x83,0x93,0x8d,0x72,0x6f,0x87,0x27,0x51,0xa4,0xbc,0xc2,0xb9,0x6a,0x0d,0x48,0xdd,0x2e,0xb2, - 0xe6,0xa2,0x9c,0xc6,0xc1,0x79,0xd6,0x04,0x1b,0x90,0x8e,0x43,0x49,0x21,0x2a,0x45,0x1e,0x88,0x1a,0x78, - 0x5d,0x5e,0x65,0xd5,0xd3,0xb4,0x26,0x44,0x21,0x53,0x98,0x1c,0xd7,0x4a,0x4e,0x10,0xa2,0x55,0x12,0x43, - 0x1d,0xd2,0xc8,0xcb,0xf9,0x65,0x46,0x5d,0x1e,0x01,0xa6,0xb7,0x66,0xca,0x0c,0x6e,0xa8,0x31,0x51,0xe8, - 0x0f,0xb2,0x19,0xae,0x8a,0xfa,0x22,0x9f,0x35,0x84,0xbb,0x67,0xab,0xf9,0x2c,0x9f,0xcf,0xb3,0xa9,0x42, - 0xa5,0x40,0x38,0xd9,0x34,0xa2,0x4d,0xdb,0x57,0xa3,0x4c,0xf6,0x1d,0x55,0x2e,0x57,0xf5,0xc5,0xdd,0xf5, - 0x8d,0x1a,0xb3,0x9b,0x22,0xda,0x7b,0xc3,0xe6,0x22,0x63,0x00,0xe2,0x4e,0x50,0x63,0xe6,0xc9,0x47,0x47, - 0xa5,0x6d,0xe8,0x38,0x98,0x66,0xf3,0xac,0xc9,0x02,0xc5,0x53,0xa7,0x82,0x0b,0x82,0x52,0xfa,0x29,0x97, - 0x68,0xbe,0x0e,0x4e,0x54,0x0b,0xe6,0xdd,0x12,0x13,0x55,0x98,0x78,0x38,0xcb,0x21,0x33,0x1e,0x9d,0x9e, - 0xa2,0xd0,0xac,0x57,0xb1,0x5e,0x13,0x02,0x35,0xab,0x94,0x29,0xac,0x35,0xe1,0x2f,0xda,0xd6,0x51,0xab, - 0x33,0xcb,0xb2,0x46,0x27,0x96,0x2b,0xfe,0x9b,0x36,0x93,0x8b,0x3f,0xdf,0x03,0xe0,0xcd,0xcf,0xf5,0xa1, - 0xea,0xeb,0x83,0x9a,0x82,0x62,0x2b,0x74,0x57,0xdc,0x4e,0xaf,0xfe,0xc2,0xee,0x02,0x36,0xda,0xcd,0x87, - 0x1e,0xa9,0xc2,0xc7,0x77,0x27,0xe5,0x38,0x78,0x5a,0xd2,0x9a,0x17,0xcd,0xfe,0x11,0x75,0x3e,0x38,0x89, - 0x00,0xfd,0xdd,0xc4,0xa4,0x89,0xba,0x0c,0xd5,0x7f,0x63,0xa7,0xdd,0xb6,0xcb,0xc5,0x01,0x30,0x63,0x3e, - 0x49,0xd1,0x85,0x07,0xd7,0xfb,0x57,0x57,0x57,0xfb,0x34,0x89,0x8b,0x7d,0x1a,0x53,0x56,0x4c,0x4a,0x62, - 0x3a,0x69,0x17,0xd0,0x9e,0x4e,0xa7,0xe9,0xb2,0xf1,0xe9,0x2e,0x61,0x05,0xb3,0xd1,0xdd,0x24,0xc3,0xcf, - 0x6f,0x5e,0xbf,0x6c,0x9a,0xe5,0x07,0x99,0xbd,0x71,0x46,0x5d,0xf8,0x07,0x71,0xe8,0x3d,0x25,0x69,0x25, - 0x26,0x59,0x5d,0xf3,0x2e,0x46,0x21,0x1c,0x47,0x80,0xb8,0x2a,0x2d,0x6a,0xf4,0x46,0x57,0x11,0x1f,0xf7, - 0x1e,0x1d,0x25,0xad,0x59,0x7b,0x54,0xe0,0x2d,0x1d,0x19,0xcd,0xd8,0x14,0x09,0x1e,0xe1,0x69,0xd3,0x3a, - 0xaf,0x42,0x49,0xd9,0x57,0x50,0x6c,0xae,0x28,0x11,0x62,0xf4,0x32,0xce,0xe2,0x4e,0x65,0x9a,0xf2,0x1d, - 0x1b,0x62,0x97,0xf3,0x3b,0x24,0x11,0xf2,0xc3,0x0a,0x3d,0xfd,0xc3,0x09,0x1f,0x4d,0x2e,0xd2,0xaa,0xce, - 0x9a,0x64,0xd5,0xcc,0xf6,0xff,0x11,0x00,0x98,0x0c,0x03,0x42,0x9b,0x8f,0x2b,0x17,0xaa,0xb6,0xbf,0xce, - 0x5f,0xeb,0xb2,0xd8,0xaa,0xe2,0xbb,0x8f,0xef,0xde,0x0e,0x05,0x6d,0xe6,0xb3,0x1b,0xb0,0x60,0x71,0xb6, - 0x39,0xf1,0x67,0x58,0x23,0xe9,0x63,0x7f,0x8f,0x80,0x95,0xdb,0xc2,0xb5,0x51,0x53,0xdd,0xdc,0x66,0x09, - 0xd7,0xb8,0x44,0x2b,0x38,0xd9,0x26,0xd8,0x61,0xf8,0x64,0x63,0x8e,0x5c,0xd4,0x9e,0x2f,0xb2,0x72,0xd5, - 0xc4,0x07,0xea,0xba,0xae,0x66,0x4f,0xcb,0xf2,0x53,0x9e,0xbd,0x4d,0x17,0x59,0x1c,0xfc,0xfc,0xf1,0xc3, - 0x8b,0xfd,0xa3,0x77,0xdf,0x3f,0x7f,0x1b,0x70,0xde,0x4b,0xc2,0x15,0x59,0xa5,0xf3,0xf6,0xfd,0xdc,0x45, - 0x7a,0xad,0x97,0xf6,0x35,0xa3,0xa6,0x78,0xff,0x50,0x5d,0xa6,0xf3,0x9c,0x76,0x5b,0x46,0x24,0x66,0xb3, - 0xea,0x23,0x60,0x77,0xb2,0x6f,0x92,0x87,0x07,0x07,0x74,0x14,0x3f,0xfa,0xe2,0xe0,0x60,0xb3,0x19,0xd5, - 0xc3,0x0b,0x6e,0x81,0x00,0x79,0x52,0x2e,0x16,0x44,0x36,0xdf,0x3e,0x9e,0x00,0x67,0xc6,0x5b,0x53,0xa7, - 0x76,0x1a,0xa2,0xb1,0x1e,0x10,0x75,0x93,0xd3,0xf3,0xdf,0x1e,0xfc,0x2d,0xa0,0xf3,0x31,0xff,0x03,0x34, - 0xd7,0x46,0x2d,0xb6,0x35,0x20,0x96,0x5b,0xa0,0x83,0xfc,0xaf,0x60,0xa6,0xd6,0xe7,0x46,0x8a,0x91,0x46, - 0x2d,0xac,0x52,0xff,0x01,0x56,0xc1,0xde,0xac,0x78,0xeb,0xdf,0x4d,0x78,0xd9,0x3e,0x65,0xae,0x2e,0xc1, - 0x7d,0x44,0x6a,0x37,0x83,0x41,0x45,0x60,0xf7,0xc3,0x72,0x69,0x4e,0x3a,0xe2,0x40,0x9a,0x76,0x0a,0xe3, - 0x9d,0x86,0xc8,0x4b,0x25,0x73,0xc2,0xa2,0x2c,0xea,0xe7,0x1f,0x11,0x14,0xae,0x73,0x0a,0xe8,0xe9,0x6b, - 0x41,0x4f,0x87,0x86,0x12,0xf8,0x42,0x53,0x02,0x5f,0x0a,0x4b,0x7e,0x78,0x00,0x9e,0xfc,0x73,0x64,0xbe, - 0xfc,0x0e,0xcf,0x9a,0x32,0x6d,0xbd,0x0c,0xcf,0xe8,0x39,0x94,0x04,0xda,0xc3,0x54,0xd5,0x57,0xfd,0xd3, - 0xe1,0x68,0x30,0x22,0x51,0xf4,0xe9,0x1d,0x7a,0x27,0xc2,0x5c,0x90,0xdd,0x8c,0x68,0x00,0x60,0x79,0x05, - 0x62,0x40,0xaf,0xd1,0xa8,0xf2,0x31,0xcd,0x2c,0x82,0x68,0x92,0xe7,0x62,0xda,0xc5,0xc8,0x3c,0xec,0x25, - 0xd3,0xb4,0x6d,0xcc,0xa8,0x2e,0x92,0xa0,0x2c,0x40,0xd4,0xdd,0x10,0x43,0xd5,0x64,0xb4,0x77,0x8b,0x73, - 0x02,0xb0,0xcb,0x64,0xf7,0x70,0x84,0x2d,0xd8,0xc3,0x24,0xc9,0xa0,0x88,0x9e,0xd3,0xc3,0xfd,0xf9,0x59, - 0xb9,0x20,0x80,0xd5,0x35,0x12,0xe7,0x74,0x95,0x37,0x17,0x4f,0xab,0x6c,0x4a,0xed,0xe7,0xe9,0xbc,0x0e, - 0xf2,0x62,0x67,0xb9,0x5e,0x13,0x1a,0x1a,0x12,0xa2,0x01,0x75,0x29,0x3d,0xe9,0xfd,0x5c,0x3a,0x04,0x91, - 0x23,0x77,0xe2,0x40,0x2d,0x87,0x65,0x41,0x38,0xfa,0x9c,0xa8,0x0b,0x6f,0xda,0x68,0xb3,0x73,0x8e,0xde, - 0xe6,0xad,0x0c,0xc0,0x6a,0xba,0x22,0x3a,0x9d,0x27,0x6e,0x91,0xc8,0xdb,0x90,0xa0,0xa0,0x2a,0x68,0x97, - 0x53,0x07,0x03,0x75,0x6e,0x52,0x97,0x69,0x5d,0x5f,0x95,0xd5,0x14,0xa9,0xa3,0xe9,0xf0,0x31,0xa5,0x95, - 0x55,0xfe,0x3b,0xef,0xc9,0x24,0x78,0x92,0xd6,0xf9,0x64,0x27,0xd8,0x5b,0x85,0x8b,0x3d,0x3a,0xaf,0xf6, - 0xce,0xa3,0x0d,0x4d,0x0a,0x35,0xbc,0x24,0xf2,0xc4,0x23,0xca,0x3c,0xc0,0x54,0xa5,0x8c,0x93,0x3a,0xb1, - 0x64,0xec,0x6b,0x1f,0x3e,0x66,0x15,0x4d,0x47,0xfe,0x3b,0x11,0xbf,0x6a,0x97,0x00,0x6b,0x39,0x34,0xbd, - 0xcf,0xcc,0x93,0x5a,0x1e,0x5f,0x9c,0xf8,0x83,0x41,0x6b,0x04,0xea,0x5f,0xd2,0x06,0x58,0x32,0xed,0x7d, - 0x03,0xc4,0x43,0x63,0xb8,0xc4,0x0e,0x80,0xd0,0x6b,0x39,0xac,0x19,0x15,0xad,0xd7,0x4b,0x4b,0x81,0x11, - 0xfe,0x1f,0x0c,0x0e,0xf4,0x37,0x36,0x89,0xa8,0xb5,0x69,0x76,0xfd,0x8e,0x16,0x75,0x06,0x61,0x41,0x40, - 0x44,0xf9,0xad,0xf0,0x3a,0x40,0x27,0x8f,0xe7,0x73,0x83,0x88,0x05,0x23,0xca,0xba,0x8d,0x53,0x1a,0x6e, - 0x6f,0x36,0xce,0x03,0x16,0x68,0x55,0xc9,0x2d,0xd3,0x1f,0x99,0x6d,0x0c,0x40,0x47,0xdc,0x01,0x90,0x19, - 0x58,0xe7,0x76,0xc6,0xd8,0x75,0x2a,0x76,0x8f,0x47,0x54,0x56,0xc9,0x48,0xe2,0xc3,0x87,0x0f,0xbf,0x48, - 0xdc,0xc8,0xc6,0x0f,0x0f,0xbe,0x8c,0xcd,0x8b,0x2e,0x83,0xe2,0x5b,0xe5,0x82,0xb7,0xe5,0x8e,0x86,0xfb, - 0xc0,0x7e,0xc0,0x15,0xeb,0x0d,0x13,0x17,0x8a,0xd8,0xa3,0x59,0x7e,0x4e,0x84,0x93,0x61,0x14,0x96,0x9b, - 0x51,0x8e,0x6d,0x46,0xc8,0x47,0x11,0x5c,0xd2,0x80,0x36,0x02,0x5a,0x59,0x55,0x95,0x95,0xbf,0x16,0xf3, - 0x70,0x12,0x06,0x6f,0xb3,0x86,0xc0,0xe5,0xd3,0xce,0x73,0xe4,0x06,0x2a,0x53,0x3c,0x05,0xcb,0xc8,0x7e, - 0x7c,0x17,0x58,0xf2,0xd7,0x3a,0x7d,0x87,0x76,0x51,0xb0,0x67,0x57,0x7d,0x2f,0x58,0xd4,0x3b,0xd9,0xf5, - 0x24,0xcb,0x40,0xf2,0x50,0x9d,0xc1,0xf3,0xa7,0xef,0xde,0xbe,0x7d,0xfc,0xe4,0xdd,0x87,0xa3,0xe7,0xcf, - 0x82,0x56,0xed,0xd5,0xb0,0x4f,0xbc,0x11,0xea,0xa5,0xbc,0x01,0xce,0x22,0xe6,0xe6,0x2c,0x21,0x20,0xec, - 0x6c,0x43,0xb7,0x03,0x23,0xf0,0x89,0xed,0x63,0x71,0x7c,0xc3,0xd0,0x15,0x76,0xd3,0xa3,0x58,0x58,0x8b, - 0xd1,0x19,0x81,0xdb,0xf4,0x58,0xb2,0xdd,0x89,0x79,0x92,0x9c,0xf1,0x8e,0x08,0xe8,0xbc,0xd7,0x1b,0x58, - 0x32,0x19,0x76,0x80,0xc6,0x0d,0x9e,0x9f,0x76,0x18,0x5f,0x2b,0xf3,0x9a,0x11,0xa0,0x4c,0x34,0xb2,0x02, - 0x82,0x09,0x34,0xae,0xf7,0xf8,0x9c,0xb1,0x45,0x6b,0xcd,0x09,0xd6,0xb5,0xd3,0x16,0xad,0x5e,0x26,0x27, - 0x54,0x67,0xc4,0xd4,0xe5,0x65,0x37,0x2d,0xc1,0xce,0x6b,0x03,0x24,0x13,0x15,0xcb,0x56,0x52,0x07,0x64, - 0x35,0x89,0x21,0x82,0xe7,0x00,0x27,0xf5,0x36,0x58,0x47,0xcd,0x05,0x2d,0x07,0x71,0xb4,0xbd,0xdc,0x7a, - 0x59,0x3c,0x2b,0xaf,0x18,0xad,0xbd,0xd7,0xb8,0x6c,0x30,0x58,0x0e,0xd3,0xe9,0xf4,0xf9,0x25,0xc8,0x8b, - 0xbc,0xa6,0xf1,0xd3,0x48,0x02,0x83,0xe9,0x08,0x0a,0x7a,0xbe,0x89,0xfa,0x78,0x72,0x14,0xfc,0x61,0xd9, - 0xad,0x7a,0xc5,0x29,0xee,0xe9,0x0f,0xdb,0x6a,0x57,0x81,0x39,0x9a,0x38,0x25,0x05,0x0b,0x16,0xdc,0x2b, - 0xd8,0x17,0xe6,0x32,0x99,0x4d,0xf3,0xcf,0xb2,0x25,0xcf,0x79,0x7a,0x46,0x87,0x1c,0xa1,0x42,0x08,0x0c, - 0x35,0xe4,0x62,0x81,0xfc,0x35,0x0f,0x67,0x92,0xac,0xb0,0x9e,0x74,0x52,0xce,0xfe,0xc2,0xd9,0x4d,0xa7, - 0xf2,0x1d,0x94,0x05,0x3e,0xd1,0x9c,0xc7,0x50,0x76,0xfa,0xb0,0x4d,0xb0,0x8d,0x0a,0x8d,0x16,0x88,0xb3, - 0x19,0x0c,0x76,0xf3,0xd0,0xbc,0x47,0xe3,0x86,0xc8,0xd9,0x40,0x03,0xd6,0xce,0x2c,0x25,0x14,0x39,0xdd, - 0x01,0xf0,0xec,0x48,0x81,0x1d,0xd0,0xc7,0xb4,0x6b,0xcd,0x07,0xca,0xb4,0x20,0x18,0xa0,0xb0,0xea,0xa7, - 0x02,0xf4,0x6d,0x58,0xfc,0xf9,0xd1,0x1c,0xde,0x3d,0x1a,0x95,0xab,0x52,0x46,0x94,0xf2,0x91,0xc9,0x58, - 0x07,0x3c,0xbd,0xd5,0x34,0xa5,0xb6,0xd8,0x7f,0x22,0x02,0x03,0xbf,0xa9,0x72,0x4f,0xda,0x26,0x43,0x4a, - 0x28,0x03,0x04,0xd6,0x10,0x63,0x4e,0x0a,0xd9,0x30,0x22,0x0b,0xa9,0xbc,0xcd,0x93,0xe4,0xc4,0x2b,0xfd, - 0x07,0x0a,0xa5,0x1d,0x61,0x36,0x7e,0xf8,0xf0,0xea,0x69,0xb9,0xa0,0x9a,0x08,0x2a,0x29,0xd3,0x89,0xf5, - 0xfe,0xeb,0xcb,0x83,0x07,0xe7,0xb9,0x0a,0xfe,0xaf,0x2f,0xeb,0xfb,0xaf,0x2f,0x1e,0x73,0x62,0xdc,0x4a, - 0x7c,0xf8,0xe5,0x83,0x73,0x15,0xdc,0x6b,0xa7,0x3d,0xe5,0x82,0xaa,0x9d,0x78,0x80,0x82,0x7b,0xad,0xb4, - 0xaf,0x9e,0x70,0xc1,0xe3,0x76,0xe2,0x33,0x4e,0x3c,0x09,0x7c,0x1e,0xf6,0x33,0xe0,0x46,0x18,0x61,0xb7, - 0x31,0xaa,0xd8,0x8c,0x57,0xb5,0x04,0xe5,0x54,0x44,0x20,0x2c,0x1b,0xad,0x3a,0xa2,0x84,0x3e,0xc6,0xac, - 0x89,0xa8,0x54,0xe3,0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xf1,0xc9,0xc8,0xd1,0xee,0x4d,0x67,0x71,0xfb,0xd4, - 0x5f,0xb4,0x64,0x96,0x3b,0x64,0xe6,0x3d,0x6c,0xf6,0x92,0xe0,0xf8,0x44,0xf3,0xa4,0x26,0x9d,0x08,0x30, - 0xad,0x0f,0xcb,0xfb,0xc8,0x70,0xf0,0x5e,0x43,0x51,0x43,0x30,0x63,0x09,0xea,0xa4,0x7c,0xf5,0xf1,0x9d, - 0xe9,0x62,0x9b,0x09,0x64,0xbe,0x79,0x9b,0xc3,0x83,0xbe,0x15,0xf2,0x1e,0x42,0xce,0xd1,0x5e,0x90,0x04, - 0x7b,0xac,0x7a,0x83,0x80,0x02,0x04,0x77,0x3a,0xfc,0xb5,0xcc,0x8b,0x30,0x18,0xd0,0x24,0x1b,0x46,0x1a, - 0x15,0xed,0x25,0xe1,0xfe,0x21,0xf4,0x20,0x8e,0x54,0x19,0x07,0xd1,0x98,0xfe,0xc4,0x28,0xbb,0x57,0x46, - 0x7f,0x0c,0x70,0x2d,0x02,0xff,0x38,0x48,0x41,0xcd,0x06,0xa9,0x4f,0xd6,0xd1,0xbb,0x39,0x70,0x44,0xe4, - 0xe4,0x25,0xf0,0x09,0xa4,0x82,0xac,0x49,0xcf,0xf1,0x73,0xbd,0xcc,0x09,0xd8,0xe9,0x69,0x46,0x08,0x0f, - 0x0c,0x97,0xf0,0x4f,0xf9,0x6c,0x7f,0x51,0x4e,0xf3,0x59,0x9e,0x4d,0xf7,0xeb,0x9c,0xd0,0xa2,0xa4,0xad, - 0x8a,0xad,0xd4,0x79,0x5a,0x37,0xb6,0x2c,0xde,0xcb,0x89,0xe9,0x03,0x71,0x97,0xe0,0xbe,0xaf,0xe8,0x20, - 0x47,0x0b,0x84,0x52,0xaf,0x6f,0xf6,0xbb,0x1d,0xad,0x32,0xe2,0xe9,0xe9,0x38,0xc5,0x13,0x1d,0x53,0xfb, - 0xe9,0xac,0xe1,0x37,0x10,0xb3,0xfb,0x34,0x36,0xa2,0x74,0x4e,0xee,0x60,0x2b,0x58,0x38,0x48,0x1b,0xbc, - 0x84,0xe4,0xc5,0x69,0xfc,0x89,0x6b,0x77,0xab,0x3e,0xac,0x89,0x01,0x6d,0xc2,0xe0,0x97,0x82,0x60,0xa4, - 0xc3,0x7d,0x97,0xfe,0x32,0xd0,0xae,0x53,0xb4,0xf9,0x87,0x90,0xd3,0xe3,0xb3,0xd5,0x19,0xcd,0x77,0x78, - 0x40,0x68,0x27,0x6a,0x9f,0xd5,0xaa,0xd8,0x2a,0x55,0xee,0x1d,0x12,0x40,0xc8,0xe1,0x99,0xd2,0x11,0xce, - 0x42,0x25,0x5d,0x71,0x13,0x7d,0x93,0x1c,0xe8,0xdd,0x33,0x42,0x66,0x02,0x52,0x62,0x7f,0xc2,0x04,0x08, - 0x93,0x02,0x63,0xfe,0x66,0x8c,0x3f,0xf1,0xf1,0x49,0x04,0x0c,0x45,0x53,0x18,0x1e,0x17,0x27,0x51,0x6c, - 0x73,0xf6,0x02,0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xf3,0x50,0xe2,0xcd,0xde,0x5d,0xb4,0xd5, - 0xd8,0x57,0x10,0x38,0x45,0x8d,0xb5,0x48,0xc8,0xac,0x50,0x92,0x77,0x20,0x0d,0xe0,0x71,0x43,0xed,0x9c, - 0xad,0x68,0x07,0x05,0x17,0xb4,0x84,0x01,0x8c,0x0c,0x1a,0xe2,0xa7,0xf1,0x82,0x6d,0x77,0x47,0x91,0x5b, - 0x3c,0xc5,0x52,0x4c,0xb1,0x88,0x70,0x52,0xce,0xe9,0xdd,0x3c,0x8e,0xdd,0xa3,0xc3,0x58,0xb1,0xa8,0x40, - 0x62,0xe2,0x6a,0x00,0x9e,0xf8,0x9c,0x7e,0x54,0xcd,0x78,0x26,0x46,0x5b,0x78,0x18,0x9b,0x07,0x5f,0xa1, - 0x32,0x76,0x5f,0xa6,0x35,0xca,0xe2,0x67,0x2c,0x3f,0x5e,0xb9,0xff,0xd3,0x6a,0x00,0x3c,0x94,0x6e,0x04, - 0x8f,0x0a,0x73,0x87,0x3e,0xd2,0x8f,0x5a,0xa6,0xcd,0x05,0xe7,0x07,0x0f,0xb0,0x78,0x94,0xaa,0x13,0x86, - 0x10,0x0a,0x3d,0x86,0x49,0xc8,0xd8,0x25,0xa2,0xd4,0x9e,0x7b,0x15,0xf1,0x3c,0xad,0x55,0xf2,0x20,0x5c, - 0xd4,0x79,0xb6,0xa6,0x09,0x02,0xd9,0x16,0x3d,0xc8,0x87,0x0d,0x64,0xa0,0x4e,0x05,0x07,0xf0,0x7f,0x0c, - 0xe8,0xc7,0x26,0x37,0x5a,0x35,0x6d,0x91,0xf1,0x7c,0x9e,0xe1,0x2d,0x0c,0xd2,0xc0,0x9e,0x93,0xb4,0x46, - 0x9a,0x17,0x1f,0x9a,0x1d,0xa8,0xd7,0xc2,0x49,0x1f,0x0c,0xe5,0x20,0x50,0xc0,0xb8,0xae,0x20,0xf4,0x47, - 0x7f,0xe2,0xc2,0x19,0x94,0x98,0xf9,0x67,0x2a,0xd5,0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86, - 0xf0,0xe4,0x96,0xca,0x71,0xf7,0xe0,0xf3,0x67,0xb4,0xa7,0x0c,0xd2,0xba,0x8e,0x05,0x91,0x62,0xb4,0xcb, - 0x93,0x40,0x3a,0xb4,0x03,0x34,0x45,0xbc,0x72,0xbd,0x93,0x52,0x5f,0x0a,0x26,0x6d,0x76,0x30,0xb3,0xe9, - 0x04,0x68,0x61,0x23,0x50,0x1d,0x3c,0x7e,0xf2,0xf4,0xd9,0xf3,0x17,0xdf,0xbe,0x7c,0xf5,0xdd,0xf7,0xaf, - 0xdf,0xbc,0x7d,0xf7,0xfe,0x9f,0x1f,0x3e,0x1e,0xfd,0xf0,0xe3,0x4f,0x3f,0xff,0xeb,0xdf,0xe9,0xd9,0x84, - 0xd8,0xf9,0xf3,0x8b,0xfc,0xd7,0x4f,0xf3,0x45,0x51,0x2e,0x7f,0xab,0xea,0x66,0x75,0x79,0x75,0x7d,0xf3, - 0xfb,0xc1,0xe1,0xc3,0x2f,0xbe,0xfc,0xea,0xef,0xff,0xfd,0x8f,0xaf,0xf7,0x1e,0x24,0xc1,0xa8,0x70,0x12, - 0x6a,0x47,0x78,0x28,0x2f,0x55,0x48,0x83,0xaf,0x5a,0x49,0x58,0xc4,0x24,0x78,0x25,0xfd,0x7a,0x6a,0xba, - 0x65,0x38,0xa5,0x5e,0x24,0x65,0xf4,0x6d,0x0d,0x48,0x98,0x44,0x4f,0x7b,0x06,0x61,0x0c,0x41,0x5b,0x9d, - 0x1c,0xc0,0xf0,0x66,0x54,0x5a,0xe8,0x59,0xd7,0x38,0xbd,0x26,0x09,0x9d,0x28,0xaa,0xfe,0x2f,0x22,0x9c, - 0xd2,0xbd,0x64,0x62,0x72,0xff,0xfe,0xc5,0xa0,0xf9,0xe6,0x9b,0x7f,0xec,0x53,0xc6,0xdf,0xfe,0x11,0x31, - 0xba,0x09,0xf3,0x44,0x3e,0x7e,0x4a,0xbd,0xa5,0x22,0xf5,0x5e,0x32,0xfc,0xef,0xaf,0xa2,0xe8,0x9b,0x87, - 0x5f,0x7d,0xa5,0x09,0x76,0x8c,0xae,0x18,0x35,0x49,0xf3,0xe8,0xd1,0x3f,0xd6,0xb9,0x39,0x8e,0xfe,0x97, - 0x11,0xc8,0xed,0x55,0x95,0xb7,0xb4,0xfa,0x86,0x6a,0x23,0x64,0x75,0x2b,0x66,0x20,0x74,0xda,0xd7,0x5a, - 0x47,0xc2,0x07,0x66,0x0f,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0x39,0x18,0xe8,0x4f,0xcc, - 0x49,0x45,0xdf,0x61,0x3c,0x7c,0x76,0x17,0xc0,0xcc,0xdf,0xbe,0x39,0xb2,0xd2,0x5b,0xe5,0x41,0x76,0xee, - 0x7d,0x8b,0xfd,0x47,0x1f,0xe6,0xad,0x02,0xa5,0x57,0x60,0xca,0x02,0x1a,0x2a,0x52,0x42,0x70,0x41,0x40, - 0x9e,0xba,0xbc,0x3a,0x9b,0xac,0x2a,0x48,0xbd,0xdd,0x2e,0x64,0xdc,0x9d,0xd4,0xfa,0x8c,0x1f,0xed,0xd0, - 0x21,0xaf,0xc0,0x5c,0xc6,0x5b,0xa7,0x53,0xd2,0xf9,0x68,0xb8,0x60,0x3e,0x0b,0x43,0xf8,0x90,0x9d,0x3f, - 0xbf,0x5e,0x86,0x41,0xf8,0x3f,0xeb,0xd1,0x2f,0xbf,0xd4,0x7f,0x8b,0x42,0x9a,0x12,0x22,0xdf,0x92,0xf0, - 0xf8,0x7f,0x46,0x27,0x7f,0x8b,0x02,0xa7,0x0a,0x6a,0x88,0x3f,0xdc,0x9e,0xab,0xe3,0x2f,0x4e,0x44,0x3e, - 0x81,0xc6,0x17,0xe5,0x65,0xdb,0x3a,0x82,0x77,0x17,0x2f,0x0a,0xad,0x05,0x81,0x1a,0x66,0x6c,0x58,0x94, - 0x57,0x61,0xb4,0xff,0x8f,0xbf,0x7f,0x99,0x7d,0x45,0xd4,0x74,0xdc,0x5d,0x34,0xc8,0x9c,0xda,0xe3,0x68, - 0xe9,0x4f,0xb7,0xdb,0xa1,0x0f,0xfe,0x02,0x79,0xac,0x3b,0x75,0x41,0xe0,0x33,0x87,0xb4,0xf8,0xf8,0xc4, - 0x27,0x40,0x7d,0xbd,0x24,0x55,0xd0,0xaf,0xc8,0x6e,0x55,0x20,0x0b,0x74,0x6b,0xf5,0x6d,0x2c,0xf3,0x10, - 0x7d,0x1b,0x6b,0xdd,0xdb,0x85,0x85,0x12,0xda,0x3f,0x84,0x84,0xc1,0xb5,0xc4,0xe5,0x93,0xad,0x89,0x33, - 0x5f,0x11,0x11,0x09,0x22,0xb3,0x93,0xa4,0xf9,0xbd,0x56,0x45,0x9a,0xe2,0x48,0xda,0x54,0xa6,0x25,0x6e, - 0xfd,0x1a,0x3c,0x23,0x02,0x4b,0xe6,0x36,0xc4,0x80,0xd2,0x2b,0xb1,0x88,0xff,0xa1,0x76,0x0b,0x76,0x87, - 0x9f,0xe1,0x67,0x19,0x15,0xbc,0x9a,0x69,0xee,0x2f,0x9b,0x86,0x5b,0x0a,0xac,0xc3,0xaf,0x45,0x42,0x0c, - 0xd3,0x3c,0x6b,0x13,0x48,0xaf,0x87,0x10,0x10,0xd3,0xef,0x1d,0x3c,0x02,0x2d,0x0d,0xd0,0x59,0x36,0x3c, - 0x4b,0xb5,0x58,0x6e,0x77,0xa2,0xa5,0x30,0xcc,0x60,0xd1,0x43,0xb2,0x0a,0x6d,0xb6,0xd2,0x02,0x1a,0x65, - 0x65,0xbc,0x4e,0xda,0xcb,0x8a,0x3f,0x11,0x02,0x27,0x90,0x31,0xb2,0x34,0xd8,0xe6,0x42,0x51,0xd3,0x51, - 0x59,0xf9,0xb5,0x18,0x51,0xbe,0x4d,0x19,0x8a,0x2e,0x42,0x57,0x6a,0x85,0xfe,0x5a,0xa4,0x79,0xd2,0x4e, - 0xc7,0x5b,0xf4,0x87,0x8a,0x08,0xd5,0xa7,0x5e,0x00,0x69,0x8d,0x86,0x7c,0x3d,0x03,0xad,0xab,0x11,0xda, - 0xdb,0x96,0x9b,0x93,0x8d,0xd9,0xd0,0xd4,0x49,0xad,0xf1,0x5b,0xaf,0x6b,0xf3,0x18,0x81,0x43,0x6c,0x8b, - 0x1b,0x1c,0xdc,0xf3,0x1c,0x37,0x66,0x6a,0xe4,0x81,0xde,0x7b,0xa7,0x46,0x58,0x57,0x2a,0xbe,0x51,0x3d, - 0x35,0xa5,0xf4,0x4c,0x27,0x8c,0x54,0x08,0xbb,0x3d,0xc3,0xeb,0x02,0xce,0x9d,0x86,0xdb,0xb6,0xd4,0x4a, - 0x51,0xde,0xfb,0xe7,0xda,0xa6,0xf5,0x75,0x6a,0x7a,0xe6,0xa3,0x9a,0xbf,0xa4,0xb9,0xf8,0x0c,0x37,0x6a, - 0x26,0xc4,0x2e,0x55,0xd1,0xa2,0x70,0xa0,0xe2,0x04,0xc2,0xd8,0x6c,0x33,0x52,0x7f,0x42,0x5e,0x60,0xe9, - 0x98,0x70,0x37,0x5b,0xaf,0x61,0xcd,0x71,0xfa,0xf4,0xf1,0xdb,0xa7,0xcf,0x5f,0x9f,0x9e,0xfe,0x07,0xd2, - 0x07,0x53,0xdb,0x83,0xff,0x09,0x8f,0xd3,0xfd,0xdf,0x4f,0xf0,0xe7,0x97,0xe9,0x2f,0x7b,0xbf,0xec,0xff, - 0x32,0x3c,0xf9,0x5b,0x1c,0x8d,0x7f,0x79,0xf0,0xcb,0x03,0x43,0xfa,0x65,0xff,0x91,0x78,0xc3,0x21,0xc6, - 0xb1,0x67,0x48,0xf4,0xcb,0x83,0x3d,0x21,0x99,0xf7,0x40,0x7f,0x36,0x3e,0x41,0xfc,0x60,0x4f,0x48,0xdd, - 0x3f,0x98,0x9c,0xb6,0xd5,0x4e,0x8b,0x52,0xcb,0x36,0x45,0x8f,0xf1,0x66,0xb2,0x75,0x64,0x04,0x62,0xec, - 0x1b,0xec,0x85,0xfe,0xe7,0xc4,0xe8,0x12,0x1f,0xe3,0xa7,0xc4,0xb0,0x6e,0x6a,0x51,0x59,0x6e,0xd2,0xa1, - 0x1e,0xf1,0xcc,0xa9,0xff,0x12,0x3a,0x84,0x20,0xd3,0xca,0x12,0x77,0x3d,0x05,0xab,0x25,0x8a,0x20,0xd4, - 0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb3,0x58,0xd5,0xcd,0xce,0x59,0xb6,0x93,0x5a,0x9b, - 0xa9,0x61,0xa0,0xcd,0x50,0x46,0xdc,0x6b,0x2d,0x18,0x4c,0x7a,0x95,0x59,0x98,0x2b,0x9a,0x20,0xf9,0xa0, - 0x48,0xf0,0xc1,0xa8,0x9d,0x0d,0x29,0x5a,0x5a,0x03,0x2d,0x85,0xe6,0x91,0xab,0xca,0x79,0x3f,0xda,0x34, - 0x88,0x11,0x1c,0x82,0xfe,0xa2,0x7d,0x3a,0x76,0x71,0x79,0x47,0x9d,0xa2,0xad,0x2a,0xb8,0x1a,0x2d,0xb2, - 0x75,0x29,0x38,0xb4,0xea,0x72,0x55,0x4d,0x32,0xff,0x2b,0xdf,0xd8,0xe0,0xb6,0xc1,0x81,0xc1,0xf6,0x44, - 0x55,0x0b,0x15,0x65,0x09,0x0e,0x55,0x39,0x54,0x18,0x7e,0xee,0x3c,0xa8,0xfe,0xc2,0xde,0xd8,0xe9,0x41, - 0x51,0xc6,0xa0,0x8c,0xc5,0x8e,0x0d,0x6c,0xca,0xa0,0xf7,0xec,0xb6,0x70,0xb7,0x0f,0x44,0x8f,0x32,0xf3, - 0x7f,0xc9,0x0d,0xa2,0x81,0x63,0xc3,0x8f,0xab,0xac,0xdf,0xad,0xa1,0x1f,0x18,0xb3,0x5e,0x3b,0xd8,0xf5, - 0x1a,0xa3,0x63,0x8b,0x58,0xcf,0x18,0xb2,0x5b,0x52,0x64,0x5e,0x46,0x12,0xb6,0x69,0xef,0x4a,0xc3,0x72, - 0xb5,0x2b,0xf1,0xcd,0xda,0xb7,0xac,0x0b,0xd6,0xeb,0x6d,0x3b,0x5e,0x4a,0xab,0x6f,0x16,0x67,0xe5,0xbc, - 0x9d,0x76,0x56,0x96,0xf3,0x2c,0x2d,0x7a,0xed,0xda,0xff,0x77,0x2c,0xe1,0x45,0xc2,0xc6,0xc6,0xb7,0x8b, - 0xa2,0xd7,0x10,0xde,0x10,0xd1,0x6c,0x08,0xc1,0x36,0x79,0xa1,0x65,0xa0,0x1c,0x71,0xfc,0x4d,0x72,0x30, - 0x18,0xbc,0x21,0x12,0x7f,0x38,0x9b,0x97,0xb0,0x04,0x63,0x65,0x3a,0x71,0xac,0xf5,0x8b,0xbc,0x60,0xfa, - 0xd7,0xab,0xb5,0xee,0x74,0x9d,0x7a,0x3e,0x0e,0x82,0x1e,0xcf,0x96,0x71,0x57,0xe4,0x27,0x52,0xf0,0x87, - 0x51,0x6c,0xbb,0xe0,0x6a,0x9d,0xf4,0xf6,0xd5,0x49,0xb1,0x89,0xa3,0x49,0xdf,0x52,0xc7,0xc6,0x19,0x11, - 0xa6,0xf6,0xab,0x95,0xb6,0x90,0xb4,0x16,0x99,0xda,0x34,0x5e,0xb8,0xfc,0x50,0xb4,0x07,0x55,0x62,0x65, - 0x58,0x0a,0x62,0xce,0xe4,0x60,0x94,0x3f,0xaa,0x8c,0x29,0x59,0x2e,0x86,0x99,0xc7,0xf9,0xc9,0x09,0xe1, - 0x4a,0xc7,0x2f,0xf4,0x69,0xdf,0x8f,0xb3,0xb6,0x20,0xeb,0x64,0xd3,0x67,0xdc,0x41,0xc5,0x4e,0x36,0xae, - 0x8f,0x73,0xeb,0x8e,0x60,0xfc,0x08,0x8c,0x4a,0x35,0xf3,0x44,0x5c,0x2c,0x0e,0xfe,0x66,0xff,0xd0,0x4a, - 0x89,0xb9,0xcb,0x74,0xe2,0x14,0xea,0x30,0xf2,0x6a,0x9b,0xb5,0xce,0xac,0x33,0xb3,0xea,0xd8,0xe4,0xb6, - 0xcc,0xd4,0xcd,0x65,0xcf,0x7c,0x8c,0xba,0x68,0xc3,0xb3,0x68,0x3b,0x2e,0x4e,0x60,0xd8,0x49,0x3f,0xb0, - 0x10,0x8e,0xfc,0x86,0x97,0x5b,0xc6,0xa8,0x5a,0x1a,0x52,0xf5,0x18,0x0a,0x6b,0x0a,0x63,0x5c,0x7d,0x73, - 0x38,0x76,0xc6,0xad,0xb6,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xcd,0xb3,0x95,0xf3,0x16,0xc3,0x53,0xa9, - 0xc8,0x7a,0x5e,0xa8,0xc2,0x75,0xe4,0x42,0x3a,0x42,0xdc,0xf8,0x7a,0x7d,0x30,0x72,0x4b,0x6f,0xca,0xee, - 0x37,0xb4,0xe2,0xce,0x32,0xb7,0x88,0x46,0xc5,0xfe,0xfe,0x28,0xaa,0x78,0x50,0xc7,0xc5,0x5e,0x63,0xcd, - 0x6e,0x2b,0x57,0xe9,0x65,0x07,0x90,0xe0,0xbd,0xd1,0x44,0xf0,0xed,0x48,0x30,0x1b,0x56,0x32,0xea,0xbe, - 0x58,0xb4,0x44,0x13,0xb0,0x9a,0x2e,0x08,0xb0,0x8a,0x47,0xce,0x59,0x84,0x00,0x0b,0x15,0x0c,0x06,0x97, - 0xd0,0x3e,0x42,0x18,0x69,0xa1,0xcb,0x55,0x73,0x6e,0xce,0x61,0x97,0x74,0xe3,0x00,0x06,0xdb,0x30,0x32, - 0x58,0x4a,0x1f,0x89,0x7c,0xce,0x55,0xf4,0x23,0x40,0xb3,0x4b,0x07,0xe1,0x6e,0x65,0x0a,0x11,0xd7,0xb2, - 0x5b,0x0d,0x06,0x76,0x83,0x51,0x05,0xfa,0x99,0x4a,0x43,0x87,0xc9,0xba,0x87,0x84,0xa7,0xc6,0x13,0xf7, - 0x13,0xdb,0xd2,0x4e,0x92,0xba,0xcb,0xc1,0x20,0x75,0x00,0xa9,0xd7,0x04,0xf2,0x2b,0x79,0x04,0x87,0x94, - 0x5d,0x66,0xd5,0x8d,0x77,0x3e,0x7b,0x04,0x26,0x8f,0x03,0xc3,0xde,0x48,0x65,0xeb,0xb5,0xa9,0x6c,0xf7, - 0x70,0x24,0x02,0x0d,0x0d,0x9e,0x9f,0xb2,0x1b,0x60,0x15,0xe2,0x96,0xfc,0x04,0x67,0x57,0x5e,0xbb,0xb6, - 0x27,0xb6,0xed,0xba,0xdb,0x76,0xab,0x65,0x78,0xe5,0xe8,0xc6,0x9d,0xf1,0x97,0x69,0xdd,0x03,0xeb,0xb3, - 0x2e,0x06,0xd9,0x5a,0x43,0xea,0xba,0xa9,0x2f,0xb2,0xee,0x74,0xba,0x67,0xc4,0x0b,0xdb,0x9a,0x4e,0xdd, - 0xae,0xa3,0xf1,0x6d,0x9b,0x8d,0x37,0x6c,0x32,0xcd,0xe4,0x98,0xde,0x10,0x38,0xfc,0xdc,0x9e,0xf0,0x37, - 0xdb,0x95,0xab,0x0b,0xa2,0x9e,0x20,0xf2,0x05,0x54,0x07,0x76,0x5e,0xbe,0xf8,0x3b,0x56,0x63,0xbd,0xfe, - 0xfa,0x2b,0xfc,0xba,0xcf,0x8f,0x8c,0xde,0x2e,0xba,0xd5,0x13,0x2a,0xa7,0xaf,0x71,0x3b,0xe2,0x6c,0xaa, - 0x7f,0xbe,0xca,0xe2,0x42,0x65,0x74,0xa0,0x65,0x55,0x7a,0x36,0xcf,0xe2,0xdd,0xdd,0x4a,0x41,0xa2,0x21, - 0x2f,0x07,0xda,0x12,0x62,0xa5,0x33,0x0f,0x36,0x1e,0x92,0xf9,0xe4,0x9d,0x47,0x3d,0x0a,0xe7,0xc1,0xe0, - 0x41,0xc1,0x7e,0x11,0xac,0x13,0x7d,0xa0,0x29,0x74,0xdf,0x50,0xd0,0x55,0x75,0xdd,0xb1,0x70,0xca,0x68, - 0x2d,0xf8,0xf0,0x56,0xed,0x1f,0x77,0x72,0xb9,0x6f,0x9f,0x6a,0x53,0x01,0x8d,0x02,0x26,0x46,0xb8,0xf3, - 0x4e,0xcc,0x7a,0x35,0x2a,0x80,0x05,0xe5,0xb0,0x49,0xcf,0x95,0x65,0x89,0x27,0x17,0xf9,0x7c,0x5a,0x65, - 0x05,0x98,0x2f,0x58,0x7f,0x10,0x24,0xcf,0x17,0x8a,0x95,0x9b,0xfc,0x8e,0x8c,0xb4,0xbe,0x29,0x26,0x2f, - 0x52,0x98,0xc9,0xdf,0x38,0x75,0xea,0xb0,0x00,0xc3,0x8d,0xaa,0x45,0x92,0xd7,0xe4,0x13,0x60,0x72,0xfd, - 0x48,0xa9,0x04,0xbc,0x94,0x40,0x7f,0xb9,0xc4,0x53,0x62,0x6d,0xa9,0x3f,0x5c,0x44,0x3f,0x53,0xfa,0xac, - 0x78,0x2a,0x0d,0x51,0xba,0x7d,0xe6,0x74,0xdd,0x71,0x4e,0xb7,0x83,0xa0,0xe7,0x8f,0x13,0x5a,0xbb,0x57, - 0x53,0x4e,0xd7,0xcf,0x52,0xff,0x9c,0xc6,0xcb,0x9e,0x97,0x8d,0xa8,0x63,0xf5,0xc0,0xe8,0xa5,0xb2,0x2f, - 0xc9,0x63,0x2f,0x07,0x86,0x45,0x11,0x94,0xb7,0x85,0x5f,0xb8,0xf0,0x0b,0x17,0xed,0xc2,0x84,0x6f,0xdc, - 0x8c,0x3f,0xee,0xee,0x18,0x8b,0xa4,0xdb,0x68,0x57,0x1f,0xb4,0x05,0x9f,0xb0,0x38,0x5f,0x13,0x5a,0x2b, - 0xfa,0xf1,0xfc,0x45,0xbc,0x5a,0x3f,0x5a,0xa4,0x27,0x2e,0x41,0xbb,0x61,0xcb,0x81,0x87,0x98,0x7b,0xbd, - 0xc8,0x76,0x67,0x41,0x28,0x77,0x7a,0x5a,0x9e,0x9d,0x9e,0x06,0x6c,0xac,0x22,0xcf,0xfe,0x47,0x75,0x35, - 0x46,0xef,0x24,0x23,0x4e,0x89,0x6c,0xbf,0x28,0x57,0xf3,0x29,0xcd,0x36,0x21,0x0e,0x9a,0xad,0xdd,0xef, - 0x0b,0x36,0x12,0xec,0x62,0xc3,0xf5,0x1a,0xc4,0x16,0xe5,0xe8,0xcd,0x93,0xd7,0xcf,0xe1,0xd5,0x52,0xe7, - 0x67,0x6c,0x6d,0x4b,0x1f,0xb2,0x93,0x02,0x51,0xb1,0x98,0x37,0x1e,0x74,0xcd,0xba,0x4b,0x2c,0x01,0xcf, - 0xeb,0xe5,0xe2,0x69,0xb9,0x2a,0x9a,0xbd,0x3d,0x3a,0xb8,0xdc,0x18,0xef,0xf9,0xea,0x74,0x41,0xc4,0xf8, - 0xf6,0x5f,0x05,0xa1,0x5f,0xdd,0xd4,0x79,0xd6,0x78,0xee,0x81,0xcf,0xb2,0x7a,0x52,0xe5,0xb0,0x9c,0xe7, - 0xd9,0x61,0x74,0x9f,0x12,0xba,0x3f,0x24,0x72,0x31,0x1d,0xfa,0x9b,0xd3,0x48,0x88,0x53,0xc2,0xd8,0xa8, - 0x84,0x50,0x29,0x3f,0xd6,0xf4,0xb8,0x4a,0x76,0x73,0x3a,0x12,0x70,0x12,0x7e,0x06,0x1b,0xf8,0x58,0x60, - 0x6b,0xe3,0x2b,0xaa,0xb2,0x6b,0x5a,0xdd,0x24,0xf5,0xb8,0x36,0x44,0xa7,0x53,0x7f,0xfc,0xab,0xa0,0x8d, - 0x56,0x51,0x79,0x9a,0x9b,0x92,0x5a,0x5a,0xc2,0x72,0x23,0x52,0x2b,0x7a,0x5d,0xe1,0xd5,0x25,0x75,0x4f, - 0x9c,0xc1,0xc0,0xa3,0xf8,0x5b,0x10,0xa6,0xf7,0xbf,0xb8,0x25,0x35,0x5d,0x77,0x24,0x5a,0x82,0x06,0x86, - 0x9d,0x98,0x78,0x59,0x6b,0xf7,0xf4,0xb9,0x16,0x21,0x1b,0x67,0x23,0x0c,0x08,0xcd,0x59,0xd8,0x53,0xfb, - 0xa3,0x6c,0x0c,0x79,0xd3,0x1e,0x26,0x14,0x38,0xd5,0x7a,0xdd,0xec,0xb2,0x09,0xea,0x2e,0x9e,0xc3,0xc9, - 0x78,0xe2,0xe8,0xb0,0x98,0xba,0x63,0xe7,0xbc,0x81,0xd5,0x7f,0x51,0x36,0xa0,0x7f,0xd9,0xf2,0xde,0x03, - 0x87,0x77,0x9e,0x79,0x40,0x17,0x04,0x69,0xed,0x42,0x77,0xdc,0xd8,0xb3,0x97,0x69,0xf4,0x45,0x7a,0x6d, - 0x49,0x49,0xc5,0x12,0x3c,0x4d,0x2a,0x36,0xea,0x90,0xaa,0x53,0x05,0xe0,0xa4,0x61,0xff,0x53,0xec,0x23, - 0x7e,0xea,0xba,0x8c,0xba,0xaa,0xc5,0x40,0xb6,0xd0,0xa2,0x23,0xb3,0x5b,0x9c,0x67,0x92,0x00,0xfa,0x7a, - 0x5d,0xc1,0x52,0x4b,0xc3,0xf5,0xb8,0x88,0xab,0x71,0x78,0x8f,0x10,0x0c,0x9f,0x21,0x3c,0x0a,0x42,0x46, - 0x98,0x6b,0x33,0x56,0x10,0x76,0xc6,0xfa,0xb6,0xf0,0xf0,0xf5,0x73,0xbb,0xcf,0xef,0x18,0xb2,0x3f,0x1a, - 0xcf,0xd4,0xc1,0x6d,0xe4,0x91,0xeb,0x93,0xbf,0xd7,0xd6,0x6b,0x21,0x8d,0x61,0x83,0x66,0xac,0x7d,0x9b, - 0x13,0x41,0x73,0x7e,0xc7,0xfc,0x15,0x78,0x6f,0x3b,0xe3,0x9b,0x67,0x58,0xb8,0xc3,0x46,0x75,0x5b,0x53, - 0xd3,0x24,0xd0,0x38,0x8d,0xea,0x47,0xa9,0x81,0xc2,0x1a,0xd8,0x0d,0x84,0x65,0x92,0x1e,0xd7,0x27,0x27, - 0x00,0x50,0xd0,0x0a,0x33,0x26,0x85,0xc6,0x65,0x58,0xb1,0x7f,0x23,0x74,0x29,0xef,0x43,0x6c,0xfc,0x18, - 0xcb,0x5e,0xd0,0x43,0x0f,0x4d,0xf9,0x6b,0x47,0x44,0x57,0x8c,0x3b,0x7b,0xae,0x4a,0x7a,0xfd,0xe4,0x8c, - 0xeb,0x30,0x3b,0xcb,0x51,0x0f,0xfa,0x0e,0xe4,0x71,0xe6,0x15,0xca,0x1c,0x89,0xae,0x7b,0x95,0x6f,0xe2, - 0x66,0x9c,0xf9,0xed,0x19,0x57,0xf2,0xf0,0x73,0x4d,0x32,0x0d,0x83,0x3f,0x68,0xf8,0x73,0xcd,0x7a,0x05, - 0x89,0xed,0x8b,0x9b,0xd8,0x1b,0xf6,0xb3,0xae,0x1c,0x6e,0x9c,0x19,0x15,0x3e,0x6d,0xa7,0x2e,0x9a,0x18, - 0x37,0x31,0xf4,0xfc,0xde,0xf7,0xaf,0x1c,0xb9,0x23,0x02,0x9f,0x36,0xd7,0xa3,0x25,0x05,0x9e,0x2e,0xe8, - 0x12,0x6e,0x55,0x18,0xb3,0xad,0xe2,0xb5,0x99,0x79,0x4f,0x0a,0x60,0xab,0x9b,0x54,0x84,0x5e,0x08,0xbe, - 0xaa,0xd1,0x0a,0x1e,0x7c,0x74,0x40,0xb1,0xdb,0x23,0xfe,0xa0,0xd1,0x3e,0x6b,0x3e,0x60,0x3f,0xe2,0x50, - 0x86,0xda,0xbb,0xa8,0x2b,0x7a,0x31,0x10,0x4d,0xfb,0x71,0x59,0x8b,0x25,0x90,0xac,0x2f,0x03,0xdc,0xed, - 0x66,0xb4,0xb5,0x3f,0x0a,0x71,0x4a,0xa7,0x23,0xd6,0xa2,0x3f,0x70,0x35,0x5d,0x01,0x45,0x28,0x71,0x1d, - 0xb0,0x0b,0xd2,0xe3,0xab,0x82,0xe0,0xee,0x24,0xb9,0x45,0x96,0xa8,0xb9,0x9c,0xa5,0x51,0x69,0x6a,0xe4, - 0x73,0x03,0x28,0xa2,0x88,0xf0,0x6d,0x7d,0xa2,0xf8,0xc3,0x9a,0x3e,0x04,0xd8,0x8e,0xf3,0x58,0xbe,0xcf, - 0x37,0x23,0xdd,0xdf,0x24,0xdd,0x00,0x65,0xde,0x31,0xa4,0xbc,0xc0,0xdc,0xfb,0x63,0xb2,0x89,0x9f,0x1b, - 0x98,0xcc,0x34,0x13,0x0c,0x3e,0x67,0x4e,0x5c,0x1b,0x73,0xe6,0xb7,0x30,0xae,0x89,0xf1,0xbc,0xe9,0x1f, - 0x42,0x2a,0x43,0xd0,0xc7,0x60,0x71,0x9c,0x12,0xcf,0x46,0x7f,0x68,0x0c,0x75,0x44,0xeb,0x2d,0xdf,0xa7, - 0x84,0xe2,0xa3,0x58,0x9e,0xeb,0xcd,0xa6,0x3b,0x0c,0x33,0x08,0x3a,0x20,0xf3,0x8a,0xfa,0x4b,0xd4,0xab, - 0x5e,0x1c,0xd3,0x4a,0xe5,0xb5,0x22,0x33,0x3d,0xea,0x59,0xfc,0x1c,0x64,0x01,0x47,0xd7,0x80,0x81,0x7f, - 0x9c,0xab,0xd5,0x12,0xd6,0x85,0x34,0x85,0x11,0x94,0xfe,0x3a,0xfe,0x46,0xa3,0xc3,0x4b,0x70,0x13,0x39, - 0xdb,0x48,0x01,0x0a,0x73,0x18,0x07,0xaa,0x66,0xb8,0xc8,0xaf,0x89,0x94,0x71,0xe3,0xa3,0xb3,0xaf,0x4e, - 0x4c,0xb2,0x99,0xa2,0xf4,0x51,0x3d,0x4a,0xc1,0x67,0xf2,0xa7,0x26,0x97,0xc6,0x4d,0x95,0x70,0x33,0x13, - 0x3a,0x89,0x68,0xd6,0x51,0xcb,0x44,0x22,0x12,0xd0,0x43,0xe4,0xde,0x9b,0x08,0x88,0x6a,0x42,0x24,0x0f, - 0xa7,0xeb,0x1d,0xb2,0x72,0x1b,0xe3,0x85,0xdb,0x5b,0x7d,0xde,0x36,0x76,0x2e,0x80,0x6c,0x31,0x10,0x1a, - 0x0a,0x06,0x60,0xa4,0x36,0xe0,0x9d,0x85,0xd2,0xb9,0x02,0x83,0x66,0x4a,0x94,0x5e,0x89,0x52,0x4a,0xa4, - 0xc9,0x51,0x11,0x96,0x4e,0x3a,0x41,0xa5,0x52,0x82,0x3e,0x1a,0x4b,0x9c,0xb3,0x58,0x02,0x25,0xf1,0x37, - 0xf5,0x85,0x2b,0x6f,0xbb,0x5b,0xbf,0x39,0xce,0x4e,0x54,0x99,0xec,0xd2,0xaa,0x29,0xe6,0x6b,0x21,0x8d, - 0x41,0xb3,0x1f,0xc2,0x27,0x22,0x8f,0x53,0xf9,0x90,0x4f,0x40,0xd0,0x27,0x74,0x3e,0xa2,0xa1,0x40,0xbb, - 0x57,0x06,0xd1,0x38,0x25,0xe6,0x2d,0xfe,0xa0,0x85,0x64,0xa6,0x28,0x0c,0xff,0x77,0x59,0xa5,0x9d,0xd2, - 0xcf,0xb5,0xf6,0x7f,0x4d,0x13,0x26,0xa4,0xad,0x44,0x32,0x8d,0x6e,0xd3,0x3e,0xd3,0xbf,0x19,0x3c,0xa0, - 0x6c,0x0b,0x66,0x53,0x34,0xc6,0xa7,0xd3,0x9e,0x03,0x20,0x62,0xef,0x69,0x84,0x21,0x3b,0x4d,0xa2,0x26, - 0x38,0x91,0x67,0x4f,0xb6,0x08,0x18,0xac,0xa8,0x73,0x78,0xca,0x39,0x94,0x3a,0xf6,0x9e,0xfb,0x44,0xb4, - 0xf0,0x19,0x7e,0xe1,0x84,0xfb,0xc9,0x9b,0xb0,0x91,0xc1,0x8e,0x2b,0x4b,0xed,0x54,0x04,0xae,0x40,0x49, - 0x59,0xa4,0xf9,0xf5,0x2e,0x0d,0x3d,0xea,0x26,0x80,0x0f,0xf9,0x18,0xa6,0x34,0xf1,0xdd,0x8c,0xda,0x99, - 0x4d,0xd8,0xd5,0x7b,0xe3,0xd9,0x47,0x61,0xf4,0x8e,0x3b,0xd4,0x5a,0x7e,0x76,0xe8,0xb6,0xc5,0xc3,0x5f, - 0xae,0xf6,0xa2,0x07,0x1e,0x1e,0x6f,0x8e,0x0f,0x69,0x6c,0x81,0xab,0xf0,0x83,0x3b,0xd0,0xbb,0xc7,0x86, - 0x01,0xb8,0x37,0x22,0xdd,0x7c,0x63,0xbc,0x5e,0x4d,0x98,0x8f,0xca,0x11,0x96,0xc5,0xa3,0xca,0x70,0xfe, - 0x6f,0x58,0x18,0x66,0x3e,0x70,0xa2,0x18,0x2b,0x49,0xb0,0x4d,0xff,0xe4,0xad,0x78,0xe3,0x10,0x46,0x42, - 0xeb,0x9b,0x54,0xc3,0x7b,0xcb,0x94,0x98,0xa9,0x66,0xe4,0x0c,0x88,0xec,0x52,0xb2,0x0f,0xc1,0xd3,0x74, - 0x49,0x15,0x66,0x53,0xc6,0x05,0xf6,0xeb,0x92,0x10,0x62,0xf9,0x28,0x37,0xfd,0x2a,0x11,0x7a,0xa4,0xba, - 0xe1,0xe1,0xc1,0x04,0x12,0x3b,0x42,0xd6,0xaa,0x52,0xd2,0xb8,0xee,0xa0,0x93,0x78,0x3c,0xa1,0x5e,0x55, - 0x2a,0x68,0xb5,0xb1,0x73,0x51,0x96,0x9f,0xe0,0x0f,0xff,0x44,0x77,0xd9,0x0d,0xe2,0x89,0x37,0x88,0xe7, - 0x85,0x74,0xed,0xa5,0xe8,0xdc,0xb9,0x65,0x3d,0x87,0x9d,0x2c,0x3f,0x70,0x89,0x54,0x68,0xdb,0xff,0xd1, - 0x48,0x7d,0x03,0x6d,0x6a,0xed,0x7f,0x47,0x7d,0xf8,0x71,0xab,0x0b,0x3f,0x7a,0x5d,0xd8,0x7d,0x06,0x79, - 0xd6,0xab,0x82,0xf6,0x5f,0x8f,0x8f,0x11,0xbc,0xd8,0x69,0x47,0x6b,0x0d,0x4d,0x36,0xd2,0xef,0xd2,0x44, - 0x4b,0xb8,0xfc,0x03,0x91,0x33,0xcb,0x2a,0xd1,0x62,0xa7,0x2c,0x99,0x56,0xc6,0xed,0x3c,0x1a,0x4d,0x8d, - 0x24,0x38,0x71,0xc2,0xc4,0x86,0x9e,0x1b,0x27,0x05,0x6a,0x58,0x92,0xd7,0x9c,0x84,0x5e,0x95,0x2f,0xbd, - 0x53,0x0f,0x8b,0x46,0xd5,0xb0,0x2d,0x45,0x5b,0x91,0xa4,0x9d,0x11,0xad,0x80,0xd3,0xce,0x8b,0x40,0x4b, - 0x50,0xd0,0x11,0x70,0x94,0x4f,0xb0,0x1a,0x7c,0xaa,0x15,0xec,0x13,0x0f,0x55,0xcd,0x12,0x7c,0x05,0xfa, - 0x7c,0xa0,0x2e,0xaa,0xf1,0xbc,0x0a,0xa3,0x78,0x55,0xc1,0x40,0x67,0x37,0xeb,0xd7,0xcf,0x68,0x4d,0x5a, - 0xe4,0xc9,0x51,0xfa,0x94,0x6b,0x05,0x94,0x6b,0x6e,0x18,0xbf,0x23,0xcd,0x16,0x00,0xdf,0xa5,0x2c,0x29, - 0x52,0xde,0x21,0x15,0x0c,0x89,0x05,0x85,0xf4,0x11,0x8c,0xb0,0xe5,0x90,0x5f,0x54,0xe5,0xef,0x70,0xc7, - 0x16,0x9b,0xaa,0x46,0xd3,0xea,0xe6,0x3c,0x6e,0x7c,0x76,0x2c,0x67,0x28,0x2f,0x60,0x41,0x48,0x87,0xb3, - 0x31,0xec,0x2c,0xe0,0x7d,0x40,0xef,0x70,0x15,0x49,0x35,0xad,0xd3,0xb4,0x68,0x1d,0xea,0x1c,0x93,0x5c, - 0x5e,0xa4,0x9d,0x2a,0x09,0xcb,0x0e,0x7d,0x1e,0x6d,0x7d,0x53,0xd2,0x57,0x27,0x1c,0x59,0x21,0xa2,0x59, - 0x3f,0xab,0x22,0xfa,0x3f,0x9c,0xd0,0x51,0x50,0xf9,0x0b,0xfa,0x5b,0xd8,0x8e,0xa1,0xa5,0x55,0x7a,0x4e, - 0xb8,0xad,0x40,0x18,0xcc,0x0a,0x3e,0xae,0x77,0xb7,0x68,0x18,0x2b,0xba,0xf6,0x14,0x6f,0x4e,0xb6,0x37, - 0x72,0xf8,0xa0,0xd0,0xa0,0xd7,0xab,0x88,0x80,0x98,0xc4,0xaf,0x21,0xb3,0x32,0x71,0x6e,0x1a,0xe1,0x0c, - 0x5c,0x8f,0xbf,0x0f,0xb5,0x30,0xc1,0xda,0xff,0xab,0x5a,0xd1,0x81,0xcf,0x8d,0xa5,0x72,0xba,0xd3,0xd4, - 0x83,0x1a,0x98,0x30,0x45,0x44,0xb4,0xc0,0x69,0x05,0xe4,0x9c,0x85,0x6c,0x23,0x97,0xd1,0x91,0x3f,0xa6, - 0xbf,0x35,0xea,0xc6,0x79,0x28,0xa5,0x93,0xdf,0xb0,0x2c,0xaa,0x22,0x7e,0x9d,0x8d,0x37,0x6b,0xb5,0x1a, - 0x12,0x35,0x9e,0x29,0x04,0x78,0x61,0x14,0x42,0x4f,0xf0,0x89,0x23,0xfa,0x88,0x9f,0x60,0xa6,0x1e,0x45, - 0x71,0x4d,0xa7,0xc8,0x84,0x6a,0x99,0x70,0x57,0x89,0xda,0x47,0x5d,0x93,0x28,0x72,0xfd,0x29,0x78,0x3d, - 0x52,0x90,0xa7,0x79,0x18,0xea,0xde,0x44,0xd2,0x8a,0x74,0xd0,0xb4,0xe0,0x2d,0xcc,0x77,0xa1,0x1e,0xa2, - 0xa7,0xd7,0x8a,0x6e,0xcb,0x7e,0x21,0xaa,0x9a,0xcb,0x68,0x88,0x76,0xd8,0x54,0x6d,0x01,0x12,0x04,0x62, - 0x84,0x77,0x21,0xff,0x1b,0x02,0x03,0xc2,0x84,0xc3,0xbd,0x11,0x95,0x14,0xe9,0x53,0x0e,0xf6,0x84,0xb4, - 0x0e,0x23,0x9e,0x9e,0x9a,0x66,0x03,0x3d,0x8e,0x1b,0x19,0x17,0xa4,0x0c,0xf4,0xc4,0x96,0x32,0x53,0x9a, - 0xbd,0x9a,0x46,0x88,0x74,0xd9,0xfd,0x29,0xcd,0x02,0x3e,0x98,0x28,0xfa,0x44,0xd5,0xba,0x18,0x36,0x31, - 0x0b,0xc0,0x6a,0x37,0xaa,0x6f,0x99,0x0b,0xd4,0x23,0xc3,0x8e,0x01,0x10,0x09,0xb5,0x00,0x6a,0xc6,0xb1, - 0xe7,0x08,0x8f,0x02,0xb0,0x2f,0xd7,0x6b,0xcd,0xd7,0xf2,0x2b,0x9d,0x41,0xba,0x70,0xde,0x2d,0x9c,0xb7, - 0x0b,0xe7,0x28,0xbc,0xd9,0x3e,0xb0,0x7e,0xf6,0xa4,0xae,0x62,0xa5,0xcf,0x02,0x5a,0xc2,0x48,0xd8,0xd8, - 0xda,0xc4,0xde,0x88,0x2c,0xdd,0x67,0xff,0xf6,0x99,0xb5,0x10,0x4c,0x79,0x56,0xbf,0x61,0xa5,0xf0,0x7a, - 0xfd,0x2d,0x02,0xb9,0xc8,0x0b,0x74,0x92,0xd9,0xf1,0x47,0x56,0x8b,0xda,0x73,0xfd,0x28,0x3d,0x97,0x68, - 0x00,0x70,0x54,0x15,0xea,0x87,0xb6,0x01,0x3c,0x08,0x0c,0x31,0x0c,0xaa,0xc3,0xe3,0xec,0xfe,0xd5,0x0a, - 0xf3,0x62,0x7b,0x03,0x5a,0xc1,0x17,0xce,0xba,0x0f,0xfe,0xa9,0xed,0x16,0xba,0xc2,0x85,0xe8,0x33,0x02, - 0x7e,0xc3,0xa5,0x80,0x56,0xe5,0x95,0xa8,0xd8,0x2d,0x02,0xe2,0xd3,0x8e,0x34,0x99,0x36,0xcd,0xbf,0x28, - 0xd7,0x4e,0x78,0xe5,0x51,0xa2,0x59,0x66,0x0e,0xae,0x62,0x7c,0x83,0xe3,0x9d,0xe0,0x4e,0xe4,0x41,0xf2, - 0xd6,0xd1,0xd1,0x35,0x92,0x79,0xcb,0x99,0xb3,0x59,0x27,0xb7,0xb0,0x95,0xdd,0x50,0xc7,0x14,0xef,0x74, - 0x31,0xb7,0xa2,0x64,0x22,0x6b,0x29,0x55,0x68,0x3e,0x4f,0x6b,0x9d,0xf9,0x7c,0x98,0x70,0x5a,0xbb,0xee, - 0x38,0xf0,0x30,0x50,0x2b,0xa4,0x99,0x11,0xa2,0x69,0x79,0x24,0x73,0xb6,0x69,0x52,0xf2,0xc6,0x40,0x15, - 0x2c,0x45,0x4c,0x9b,0xa6,0xaa,0xed,0x03,0x21,0xb0,0xb2,0xb1,0x7e,0xc4,0x7e,0xa2,0x2a,0x8d,0xfc,0x5c, - 0xec,0xf1,0x4a,0x27,0xdb,0xde,0x65,0x45,0x05,0xa4,0x97,0xa2,0x33,0x4e,0xf9,0x83,0x28,0x2c,0x0c,0x20, - 0xb0,0x39,0x87,0x09,0x41,0x77,0x7c,0x42,0x68,0x81,0x77,0x54,0xe9,0xc9,0x80,0x6a,0xfd,0x15,0xa3,0xb3, - 0x1a,0x9a,0x4a,0xfc,0xa0,0xf0,0x28,0x68,0xb2,0xc5,0x72,0x4e,0x4c,0x16,0xe0,0xae,0x84,0xa8,0x7f,0x3c, - 0xe1,0x0a,0x34,0x9a,0x98,0xa0,0x6b,0x5a,0xa4,0xbd,0x5e,0xd3,0x17,0xf1,0xc4,0xd4,0xbf,0xb1,0xb1,0x8f, - 0x56,0x82,0xa3,0x8a,0xe3,0xd5,0x89,0xd6,0x2d,0xe5,0x99,0x73,0x98,0x46,0xb2,0x8b,0x2c,0xe2,0x34,0xf9, - 0xd9,0x5d,0x30,0xba,0xdb,0x06,0x52,0x22,0x62,0x76,0x78,0x57,0xf0,0x1e,0xf3,0x14,0xfb,0x99,0xa7,0xd0, - 0xd4,0xbc,0xda,0x1d,0x90,0xda,0x81,0x6a,0x50,0xa6,0x63,0x7c,0x2e,0xca,0xa9,0x98,0x78,0x1f,0x7a,0xc2, - 0x41,0xc8,0x9a,0xce,0x13,0x9a,0xfd,0x1e,0x8d,0x63,0x9a,0x19,0xcd,0xe5,0x28,0xd3,0x7b,0x51,0x53,0xa7, - 0xd1,0x28,0x62,0x2d,0xf5,0x69,0x5e,0xa4,0xcc,0xfd,0x7e,0x8e,0xde,0xad,0x33,0x4b,0x6b,0x1b,0xed,0xf6, - 0xa9,0xb0,0xcd,0xaf,0xf4,0xd7,0x44,0x6f,0x29,0x6e,0xcc,0x50,0xa5,0x86,0x71,0xdf,0x2a,0x69,0x68,0x80, - 0x76,0xeb,0xce,0xc0,0xc3,0xeb,0xd1,0xad,0xf7,0x02,0x82,0xae,0x3b,0x5b,0xf7,0xcc,0x2a,0xfb,0xf3,0x86, - 0xbe,0xba,0x1c,0xd6,0xc4,0xf2,0xe6,0x0c,0xb8,0x1e,0x82,0x9a,0x69,0xe0,0x8b,0x05,0x27,0x59,0x5b,0xa4, - 0x61,0x48,0x75,0xcd,0xe2,0x7a,0xe2,0x00,0xde,0x4b,0x45,0x77,0x2f,0x81,0xe6,0x2b,0x6c,0xd4,0x4c,0x1b, - 0x7d,0xa2,0x00,0xd9,0x57,0x80,0x44,0xde,0x0b,0x0c,0x0d,0x4e,0xa3,0x21,0x32,0xe8,0x25,0xbd,0xb0,0xe3, - 0x25,0xb3,0x80,0xd9,0x02,0xa6,0x0a,0x28,0x10,0x07,0x7b,0x3e,0x56,0x58,0x21,0xf0,0xd7,0x63,0xd0,0x84, - 0x42,0xc7,0xaa,0x86,0x87,0x7f,0x04,0x7b,0xa4,0xaa,0xf1,0x95,0xb0,0xbe,0x25,0x50,0x3e,0xdd,0x27,0x02, - 0x6d,0x4a,0x34,0xe5,0x47,0xc4,0xa4,0xfa,0x58,0x3d,0x3a,0xb2,0x34,0xc7,0x47,0xee,0x6e,0x42,0x40,0x70, - 0x54,0x1d,0x7f,0xac,0x4e,0x22,0x2a,0xa8,0xae,0x2b,0x16,0xdb,0x32,0xfd,0x31,0xac,0x56,0x45,0x68,0x8c, - 0xb1,0x3e,0x55,0x96,0x76,0xa9,0x92,0x23,0xfb,0x42,0xb5,0x24,0xb6,0x4a,0x14,0x32,0xf4,0x34,0xd5,0x04, - 0xbd,0xf8,0xd3,0x2a,0x41,0xa7,0x0f,0x5b,0x92,0x96,0x3f,0x20,0xb5,0xfd,0x45,0x3e,0x50,0x58,0x3f,0x08, - 0x73,0x77,0x11,0x2d,0xb4,0x88,0xee,0xa8,0xc8,0x55,0x02,0xca,0xcf,0xac,0x1e,0xbe,0x03,0xd5,0x75,0xb9, - 0x18,0x55,0xc3,0xd3,0x2b,0xac,0x44,0x56,0x11,0x50,0x15,0x90,0x67,0x9f,0xe6,0x74,0x76,0xad,0x08,0x41, - 0x4d,0x07,0x03,0x1a,0x0a,0x71,0x4a,0x22,0xaa,0x61,0x78,0x20,0x4c,0xaf,0xbe,0xa3,0x62,0xcf,0x81,0x97, - 0x2e,0x9b,0xb2,0x84,0xb7,0xf0,0x77,0xc4,0xfa,0xf0,0xfa,0xcc,0xe6,0x84,0x3e,0x02,0x6f,0x75,0xe6,0x16, - 0x67,0x3f,0xaf,0xa0,0x82,0xd9,0xb6,0xe7,0x63,0x2b,0x32,0xea,0x0f,0x01,0xe0,0x46,0x51,0xa1,0x3a,0xdb, - 0xb6,0x9b,0x96,0x6c,0x44,0xf9,0xbb,0x4b,0x57,0x53,0xd0,0xa7,0x5e,0xb3,0x33,0xdb,0xac,0x40,0x24,0x2b, - 0xb5,0xfa,0xa4,0x52,0xc5,0x38,0xd4,0x1d,0xab,0xc6,0x53,0x36,0xc4,0x2a,0x4c,0x27,0xce,0xa3,0xd8,0xe4, - 0x15,0xf8,0x3b,0xae,0x40,0x01,0x20,0xa0,0x1d,0x81,0x30,0xcd,0x97,0x29,0x8f,0xbc,0xf8,0xdc,0x7c,0x55, - 0xe0,0xef,0x98,0xff,0xc6,0xe7,0xd1,0x9d,0xfd,0x6d,0xda,0xfd,0x9d,0xfa,0xf8,0x72,0x4b,0xa5,0xc4,0x76, - 0x76,0xa7,0x38,0x77,0x57,0xb4,0x0a,0x3f,0xc9,0x6a,0xd1,0xb4,0xf7,0xa7,0x6b,0xd1,0x8e,0x95,0xdd,0xb3, - 0xe0,0xae,0xb9,0x81,0x4d,0x6e,0x06,0xcd,0x04,0xa4,0xbf,0x91,0xf2,0x34,0x52,0x8d,0xd3,0x05,0x35,0xa2, - 0xbb,0xf0,0x2d,0x5c,0x32,0x27,0x4c,0xb2,0xa1,0x7b,0xa0,0x24,0x82,0xd4,0x55,0x21,0xe2,0x94,0x36,0x3f, - 0x8f,0xd4,0xb6,0x1c,0x8c,0x35,0x81,0x8c,0x91,0x69,0xd3,0xdc,0xbb,0x12,0x5f,0x70,0x11,0x0f,0x3b,0xcb, - 0x15,0x87,0x32,0xb3,0x3f,0x36,0x5a,0xfa,0xb6,0x18,0x7f,0xc8,0x66,0x73,0xe4,0x94,0x57,0xc5,0xf7,0x62, - 0x22,0x31,0x9c,0xe5,0xf3,0x26,0xab,0xfa,0x0c,0x9c,0xff,0x8c,0x06,0x71,0xe8,0xb4,0x7c,0x9b,0x28,0xee, - 0x58,0x5f,0xf4,0xf0,0x23,0xb7,0x4e,0x12,0x01,0x02,0x96,0x28,0x03,0x44,0x26,0x1d,0x42,0x80,0x0a,0x69, - 0xe4,0xa8,0x1e,0xf1,0x68,0x6a,0x16,0x35,0x5d,0xe6,0x53,0xec,0x23,0xa6,0xf4,0xbd,0x14,0x22,0x88,0xe8, - 0x9b,0xc4,0x4b,0x81,0x70,0xf6,0x8c,0x06,0xfb,0x69,0x43,0x6c,0x82,0x39,0x7c,0xc0,0xf7,0xed,0xc2,0xf6, - 0xd0,0x48,0xca,0x20,0xad,0xa4,0x0f,0x05,0x32,0x26,0xd2,0xb0,0x11,0x99,0x71,0x8d,0x3d,0x30,0x6e,0x15, - 0x71,0x04,0xad,0x93,0x8d,0xb5,0x27,0xf2,0x16,0x19,0xe1,0xce,0x5a,0x2c,0x2e,0x78,0xa6,0x6d,0xa9,0x34, - 0xcb,0xfc,0xb6,0x43,0x0b,0x69,0x11,0xbc,0xd5,0x72,0x5b,0x8b,0x2e,0x55,0x12,0xba,0x4b,0x1d,0x0a,0x2a, - 0x1f,0xa5,0x2c,0xae,0xa9,0xd0,0x51,0xda,0xdc,0x1c,0xcf,0xd5,0x49,0xdf,0xb7,0x6d,0x08,0xb7,0xab,0xe6, - 0x3a,0xa9,0xa2,0xcc,0xaf,0xa8,0xdc,0x3b,0xf4,0xeb,0xc9,0x0d,0x69,0xbb,0x65,0x4a,0xe3,0x57,0x55,0x77, - 0x7a,0x59,0x77,0x7b,0x39,0x49,0x6a,0x74,0xd0,0x76,0x76,0x42,0x1c,0xa3,0x72,0xb2,0x58,0x4d,0x11,0x33, - 0xba,0xfc,0x11,0xb1,0x01,0x38,0x40,0x82,0xa7,0xbc,0x5f,0x78,0x3b,0x87,0xe5,0x5b,0xd4,0x10,0xef,0xd8, - 0x7b,0x35,0x2c,0x15,0xa6,0x1f,0x89,0x68,0x33,0x9b,0xb5,0x44,0xec,0x36,0xa6,0x65,0x2b,0xde,0x33,0x97, - 0xe1,0x65,0x88,0x97,0x88,0xe5,0xde,0x79,0x82,0x2d,0xb7,0x5e,0x37,0xbe,0x93,0xb3,0xae,0xca,0x54,0x92, - 0x42,0xb9,0x31,0x3c,0x25,0xa0,0x99,0x66,0x15,0x73,0x57,0xf8,0x8e,0x28,0xcb,0xc6,0x44,0xcb,0x85,0xce, - 0x0f,0xc5,0xad,0xfd,0xd0,0x58,0xaa,0xe8,0x38,0xff,0x59,0x9a,0x51,0xdd,0xa2,0x74,0x8c,0xb8,0xa0,0x2d, - 0xad,0xd0,0xb9,0x8f,0xab,0x5e,0x88,0x59,0xb0,0x21,0x06,0x54,0x20,0x5b,0x11,0xa1,0x11,0xa8,0xc3,0x8f, - 0x3d,0x92,0xf0,0xa6,0x3b,0x1d,0x09,0x1d,0x21,0xb4,0x30,0xb0,0xdf,0x01,0x82,0x27,0xc2,0xc6,0x9a,0x35, - 0x8e,0xdb,0x70,0x97,0x47,0x63,0xf6,0x6e,0x76,0xde,0xaf,0xc4,0x10,0xe5,0x90,0xec,0xc6,0xd5,0xf8,0xba, - 0xa0,0x85,0x00,0x21,0x1d,0x77,0x89,0xff,0x33,0xdb,0xa2,0x66,0x27,0x0b,0x70,0xd8,0xe0,0x28,0xb7,0x55, - 0xde,0x34,0xe7,0x0b,0x64,0x8d,0xb4,0xc8,0xc0,0x1d,0x41,0xb9,0xc8,0xf8,0x27,0x73,0xe2,0xed,0xd9,0x35, - 0x93,0xf7,0xc0,0x8d,0x30,0x73,0xf4,0x72,0x83,0x22,0x11,0x41,0xb9,0x4f,0x92,0x67,0x86,0x3b,0xd0,0x0f, - 0x2c,0x44,0x1e,0xa5,0xd0,0x8b,0xd3,0xa8,0x61,0x0c,0xfe,0x43,0xcd,0xc7,0x01,0xa1,0xc3,0x9a,0xe6,0x77, - 0x4c,0xac,0x5f,0xb9,0x40,0x42,0x0d,0x11,0x84,0x7d,0x01,0x03,0x1e,0xeb,0x3a,0x38,0x83,0x9f,0x90,0xba, - 0xc9,0x81,0x51,0x52,0x48,0xdc,0xc1,0x44,0x0b,0x47,0x5b,0x42,0x80,0x11,0x22,0x28,0x05,0x17,0x2e,0x0b, - 0x66,0xe0,0x8f,0xf5,0xf9,0x4d,0x84,0x53,0x7e,0xd2,0x3a,0x5b,0xf1,0x15,0x8b,0xbe,0x2c,0xc5,0x38,0x11, - 0x6a,0xbf,0x26,0x2e,0xdf,0x05,0x05,0x73,0xd6,0x5c,0x2d,0x1a,0x50,0x8e,0x9f,0x9a,0x2d,0x7c,0x8e,0xaa, - 0x2c,0x43,0x0f,0xb7,0xd2,0xc0,0x88,0x60,0xdf,0x01,0x46,0x0d,0x83,0x48,0xe7,0x68,0xd3,0x59,0xe2,0x2a, - 0x1a,0x3f,0xa6,0x3f,0xf1,0x53,0xfc,0x09,0x8f,0xb2,0x50,0x3e,0x49,0x5a,0xd0,0x35,0x94,0x7a,0x3f,0x30, - 0x8c,0xbf,0x28,0x00,0xf7,0x4e,0x8f,0x6a,0x60,0xff,0x3d,0xdc,0xc1,0x45,0xbc,0xca,0x9a,0x55,0xd8,0xc3, - 0xc8,0x77,0xa7,0xa7,0xc1,0x5e,0xa6,0x76,0x0f,0xa3,0xd6,0xf9,0x73,0x65,0x49,0x05,0xdd,0xbd,0xa3,0x4c, - 0x1b,0xd1,0x10,0xaf,0x8a,0x4f,0x9a,0xbd,0xb0,0x18,0x07,0xa7,0xf0,0x92,0x0e,0x02,0x09,0x40,0xe4,0x4d, - 0xc9,0x51,0xe6,0x89,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe3,0x2f,0x99,0xa0,0xe3,0x50,0xb4,0x1a,0x9d, - 0x3a,0x47,0x02,0x4e,0xfe,0x94,0x69,0x75,0xea,0x1e,0x1a,0xae,0xac,0x78,0xef,0x93,0x69,0xcd,0x33,0x39, - 0xb3,0x1d,0x70,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xd8,0x70,0xe5,0xf5,0x3b,0x1a,0x4a,0xe2,0xed,0xc5, - 0x6b,0x8f,0x4d,0x81,0x22,0xbe,0x89,0x1c,0x5d,0x5f,0xca,0x9f,0x31,0x23,0x20,0x3c,0x45,0xb1,0xc7,0x7f, - 0x55,0x22,0x41,0xf3,0x74,0x7d,0x84,0x3a,0x21,0x81,0x1c,0xb1,0x6e,0x2f,0x1f,0x1f,0x9f,0x18,0x2d,0x75, - 0xae,0xfd,0xc9,0xb7,0xc1,0xe8,0x69,0x26,0x7e,0x65,0xa7,0x65,0x72,0x95,0x51,0x1b,0xa7,0x05,0x87,0x5c, - 0x3f,0x85,0x7c,0x8c,0x7e,0xe6,0xc9,0x25,0xa7,0x36,0xc9,0x82,0x7f,0x7f,0x4b,0x6e,0xf0,0x93,0x27,0x67, - 0xf8,0x59,0x24,0xa7,0x9c,0x3a,0x4b,0xce,0xf9,0xf7,0x53,0x72,0xc3,0xbf,0x67,0xc9,0x19,0xff,0x5e,0x26, - 0xd7,0xf8,0xa1,0xf1,0x22,0xe2,0xc6,0xe9,0x2a,0x29,0x39,0xf9,0x3c,0xb9,0xf6,0x7a,0xf0,0x58,0x26,0xcd, - 0x17,0x13,0x12,0x83,0xac,0xc1,0x4c,0x1c,0x32,0xd8,0x53,0x49,0x47,0x4a,0x15,0x0d,0x6f,0x23,0x2f,0xd6, - 0x22,0xac,0xd2,0x99,0x7c,0x52,0x27,0x3a,0x26,0xe9,0x5c,0x47,0x89,0xa9,0x13,0xd9,0x86,0x97,0x85,0x09, - 0xf8,0x89,0x93,0x88,0x8d,0xd8,0x88,0xe2,0x49,0xf5,0x3b,0x6d,0x7d,0xc9,0x66,0x3c,0xde,0x43,0x1c,0x57, - 0x19,0x5b,0x22,0x6c,0xda,0xa6,0xa1,0x9a,0x28,0xca,0xc5,0x95,0x2e,0x15,0x1a,0x10,0x71,0x57,0xe0,0x53, - 0xb7,0x3b,0x19,0x4d,0x8c,0x73,0xa1,0xd9,0x39,0x49,0xaa,0xbc,0xf3,0x22,0x71,0x4d,0x86,0x91,0xda,0x3a, - 0x93,0x60,0x19,0xee,0xde,0x30,0x04,0x44,0xa5,0x38,0xad,0xc5,0xbe,0x6e,0xac,0xa9,0xce,0xad,0x70,0x28, - 0x46,0x5a,0xf2,0x8e,0xa3,0xf7,0x6b,0xc4,0xbb,0xb2,0xe7,0x65,0xc9,0xa6,0x4f,0xce,0x64,0xcf,0xd5,0xa8, - 0x3c,0x89,0x48,0x42,0x63,0x2a,0x37,0xf1,0xdd,0x6d,0x18,0xba,0xae,0xdd,0x88,0x47,0xcb,0x7c,0xcc,0xee, - 0xb0,0x5a,0x66,0x5d,0xab,0x58,0x2e,0x7b,0xd6,0x67,0x98,0x5f,0x4d,0xf0,0x88,0x76,0x25,0x0b,0x8d,0x55, - 0xdd,0x8a,0xfa,0x68,0x51,0xcf,0x29,0x1c,0x0d,0x59,0x11,0xa5,0xcf,0xfd,0x64,0x65,0xa4,0x73,0x54,0xbe, - 0xcf,0xca,0x43,0x4f,0xc8,0x9c,0x19,0x78,0xc8,0xcd,0xf2,0x29,0x3e,0x9c,0x13,0xdc,0x58,0xe5,0x65,0xe8, - 0xc5,0xc9,0xaa,0xc4,0xa9,0x19,0xe7,0x14,0x95,0x66,0x7d,0x0d,0x8b,0x1f,0xf5,0x33,0x3c,0x74,0x9d,0x8c, - 0xcd,0xa5,0x69,0xe9,0x9c,0x89,0x5b,0x3b,0xf5,0xca,0x98,0xa4,0x91,0xae,0x13,0x71,0x8a,0x08,0xd9,0xe8, - 0x5a,0xf5,0x5b,0xa7,0x5e,0x2f,0x95,0x85,0x65,0x22,0xf1,0xe3,0xb5,0xa9,0x23,0xa3,0xb9,0x70,0x49,0x89, - 0x08,0xd2,0x09,0xdf,0xac,0x7c,0xe8,0x35,0x93,0x9f,0x11,0x69,0xd5,0x38,0xd2,0x2a,0x7b,0x44,0x24,0x0c, - 0x44,0x0f,0xc0,0xdc,0xf7,0xa8,0xd0,0x24,0xfb,0x81,0x8f,0xa6,0x30,0xda,0xa8,0x79,0x72,0xda,0x52,0xca, - 0xb8,0xfe,0x27,0x10,0xaf,0x96,0x04,0xec,0xeb,0xf5,0x2a,0x64,0x97,0x9d,0x4e,0xd1,0xf6,0x24,0x31,0x55, - 0x26,0x41,0xc8,0xd0,0xaf,0x90,0x63,0xa7,0x4c,0x93,0x2a,0x9c,0xab,0x99,0x73,0x9d,0x08,0x79,0x35,0xfa, - 0xdc,0x74,0xd8,0x5b,0x72,0x9c,0xf9,0x73,0x3a,0x18,0x48,0x2a,0x57,0x11,0x37,0xe1,0xd4,0x49,0x41,0xa3, - 0xde,0x68,0xce,0x5e,0x01,0xfe,0x10,0x06,0x58,0x9d,0x24,0xae,0x4b,0xa1,0x2e,0xb3,0xd6,0xfe,0x28,0x68, - 0xcc,0x3a,0x03,0x76,0x01,0x5c,0xcc,0x2d,0x5f,0x7b,0xf5,0xb8,0xa8,0x7e,0xc7,0x34,0x01,0xb0,0xa6,0xc4, - 0x15,0xcc,0xd3,0x9b,0xb1,0x2d,0x48,0x53,0x11,0x13,0x4f,0x7a,0x24,0x81,0xd3,0x7c,0x8d,0x5c,0x67,0xa0, - 0x99,0x07,0x7c,0xa1,0xff,0xb9,0xcc,0xa4,0xd2,0x35,0xaf,0xd7,0x0f,0x0f,0x0e,0x74,0xc7,0x74,0x34,0x36, - 0x38,0xbe,0xff,0x99,0x16,0xe4,0x0a,0x0a,0xae,0xca,0x7c,0x19,0x01,0x93,0xed,0x1e,0x2a,0xdb,0xde,0xb8, - 0x35,0xc2,0xd8,0x7d,0xbf,0x71,0xb0,0x67,0xb4,0x0b,0x1b,0x9a,0xc9,0x15,0x6d,0x1d,0x27,0x82,0xee,0xa2, - 0x0d,0xcf,0xb4,0xb4,0x0a,0x1d,0x46,0x6a,0x49,0x22,0x09,0xd7,0xeb,0x84,0x37,0x19,0x61,0x7e,0x89,0xcc, - 0xd7,0x28,0xdd,0x18,0x02,0xe0,0x69,0xbc,0x1f,0x13,0xde,0x4f,0xcf,0x89,0x22,0x26,0x44,0x45,0x2d,0x1b, - 0xe4,0x31,0x2a,0x93,0x92,0x29,0xf8,0xe7,0xc0,0x20,0x8a,0x03,0x0f,0x13,0x69,0x3b,0xf7,0x2c,0x38,0x3d, - 0x26,0x0b,0x81,0xa9,0x91,0x0b,0x0a,0x91,0x1f,0xf8,0x8c,0x21,0xd2,0x92,0xf9,0xef,0x80,0x85,0xd1,0x9d, - 0x02,0x19,0x64,0x61,0x54,0x22,0x2f,0xe0,0x26,0x3c,0x0a,0x0b,0x39,0x96,0x58,0x44,0xbc,0x34,0xc4,0x62, - 0xc4,0xda,0x0e,0xfd,0x05,0xd7,0xa5,0x2d,0x4d,0x8a,0xa1,0x76,0x0e,0x14,0xa2,0x70,0x44,0xfd,0x23,0xe2, - 0x2f,0x1a,0xe3,0x6f,0x72,0x6c,0xbe,0x00,0x35,0x75,0x96,0x4e,0x3e,0xd9,0x43,0x9c,0x0b,0xc5,0x5c,0xa8, - 0x5b,0x66,0x43,0xab,0x6a,0xc8,0xfe,0x52,0x08,0xe7,0x99,0xc3,0x01,0xad,0x08,0x5c,0xb6,0xa0,0xb3,0xed, - 0xda,0x45,0x74,0x54,0x83,0x4f,0x68,0xd6,0xe8,0x20,0x13,0xe2,0x16,0x5e,0xe1,0xae,0x58,0x13,0xc2,0x0c, - 0xa7,0x09,0x57,0x8e,0x96,0x9a,0x33,0xe1,0x6b,0x82,0x7b,0x12,0xf9,0x3f,0x8f,0x46,0xdf,0xd2,0x69,0xb0, - 0x52,0xb4,0xa1,0x40,0x9e,0xad,0xd7,0x78,0x9d,0xc8,0xeb,0xa1,0xa5,0x63,0xeb,0xcd,0x06,0x82,0x73,0x8d, - 0x0b,0x4d,0x87,0x4c,0x87,0xd3,0x79,0x1f,0xf4,0xb4,0x35,0x89,0x38,0xd2,0xf5,0x80,0x75,0x9f,0xd3,0x76, - 0x4f,0xa3,0x96,0xd0,0x7c,0x42,0x78,0x6e,0x75,0x92,0xbc,0x0d,0x57,0xd4,0x19,0x26,0x05,0x34,0x15,0x07, - 0x74,0xc5,0x63,0x25,0xd8,0xf8,0x88,0x83,0xcc,0xbc,0x2a,0xe4,0x70,0x8d,0x2e,0x47,0x5e,0x79,0x7a,0xe7, - 0xc2,0xbe,0xe2,0xc8,0xa2,0x29,0x67,0x13,0x14,0x42,0x85,0xe9,0x50,0x08,0x5f,0xcf,0xe0,0x60,0x4e,0x67, - 0xa7,0xf2,0x9c,0x9a,0xb6,0x74,0x7e,0x33,0xff,0xc4,0x55,0x33,0xcf,0xc2,0x3e,0x85,0x23,0x27,0xab,0x32, - 0x42,0x2a,0x85,0x4d,0x40,0x50,0x23,0x0f,0x0c,0x5f,0x9c,0x99,0x48,0x19,0xda,0xb5,0x33,0xd8,0xc2,0xcc, - 0x64,0x13,0x48,0x27,0xa7,0x20,0xa4,0x58,0x6a,0x8d,0x5f,0x7a,0x11,0x8f,0x87,0x77,0x85,0xf2,0xa7,0x3d, - 0x45,0x80,0x23,0xda,0x78,0x1a,0x04,0x96,0x54,0x8e,0x79,0xd3,0x12,0xf3,0xba,0x64,0x52,0x81,0x1b,0x5a, - 0x46,0x9b,0x5d,0x1f,0xd3,0x67,0x46,0x4b,0x99,0x59,0x05,0x65,0xc7,0x40,0xe1,0x59,0xe5,0x8b,0x4d,0x35, - 0x59,0xfb,0xac,0x12,0x89,0xa7,0x7c,0x05,0xcd,0x40,0x9e,0xfc,0x0a,0xe7,0xa7,0x91,0x4d,0x49,0xaa,0xb1, - 0x8f,0x36,0xb6,0xa5,0x71,0x16,0x16,0x32,0xfb,0x08,0xcf,0x5a,0xfd,0x48,0xc0,0x95,0x13,0x7d,0x42,0x68, - 0x81,0xa1,0x0c,0xcd,0x5e,0x78,0x70,0x2f,0xf1,0x53,0x27,0x56,0x55,0x22,0xee,0x17,0xc1,0xe5,0x2a,0xdb, - 0xb7,0xa7,0xc2,0x3e,0x51,0xfa,0xa0,0x12,0xf6,0xc2,0x8b,0x71,0x40,0x2f,0x17,0xcc,0x6f,0x94,0xaa,0xd7, - 0xed,0x23,0x55,0xb7,0x4f,0x09,0x6d,0x11,0x32,0xb2,0x56,0x4f,0xf1,0x4c,0x59,0xea,0x33,0x9e,0x32,0x92, - 0x9a,0x38,0xac,0x45,0x7c,0xfc,0x1c,0x3e,0xaf,0xce,0xd2,0x1a,0x71,0xf4,0x35,0xf6,0x22,0x12,0xca,0x28, - 0x2f,0xdb,0x3c,0x4c,0xca,0x46,0x70,0x29,0xcc,0x1a,0xc2,0x49,0x02,0xb8,0x4f,0x89,0xe0,0x97,0x3e,0x44, - 0xb4,0xa2,0x2b,0xc9,0x78,0x5d,0x79,0xf2,0xe7,0xbc,0x45,0x50,0x35,0xf4,0x35,0x08,0x8e,0xd4,0x58,0x3f, - 0x58,0xed,0x1b,0x50,0x71,0xab,0x40,0xce,0xfa,0x76,0x44,0x39,0x03,0xdf,0x46,0xdc,0xac,0x5f,0xb2,0xdd, - 0xaf,0xba,0xff,0xd8,0xc5,0xc5,0x01,0x80,0xdc,0x14,0x92,0x0f,0x82,0x0d,0x9f,0x90,0x25,0x94,0x2e,0x82, - 0xb2,0x58,0xae,0x17,0xb0,0xfe,0x53,0xb8,0x33,0x8a,0x8e,0xcc,0xd7,0xd5,0x98,0x28,0x9b,0x70,0x95,0xd4, - 0xd1,0xf8,0xf8,0x9a,0x46,0x76,0xd2,0xb1,0xb2,0x5d,0xb9,0x78,0x56,0x44,0x3e,0xb8,0x08,0x34,0x98,0x3e, - 0x20,0x1b,0x44,0xa2,0x11,0xb1,0x13,0x6c,0xa1,0x4b,0xdf,0x16,0x3a,0xa3,0x39,0x2a,0x8f,0xeb,0x93,0xa8, - 0xcf,0x03,0x96,0xc8,0x1a,0xa2,0x0a,0x67,0xc7,0x44,0x41,0xd9,0x68,0x22,0x27,0x1d,0xb3,0xfc,0x49,0x34, - 0x36,0x4e,0x5e,0xdf,0x1c,0xd0,0x08,0x7f,0x0e,0xa9,0xc6,0x3c,0x9c,0x28,0xd8,0x9d,0xb0,0x47,0x3e,0xf1, - 0x89,0x44,0xa0,0xd1,0xc8,0x68,0x66,0x7e,0x0e,0x39,0x4a,0xc6,0x0c,0xe8,0xe7,0x3a,0x9c,0xb3,0x6e,0x6d, - 0x6f,0x42,0x79,0xa2,0xc9,0xc6,0xcd,0x57,0xfa,0x56,0x00,0xda,0xfb,0x9e,0x42,0x70,0x46,0x6b,0x16,0xc5, - 0x30,0x7a,0x1c,0xa3,0x8a,0x71,0xa7,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0xbc,0x06,0xce,0x8b,0x7f, - 0xa6,0xbf,0xd2,0x66,0xf7,0x03,0x69,0x2e,0x26,0x84,0x5b,0x5a,0x31,0x19,0xaf,0xf5,0x04,0xca,0x48,0x26, - 0x36,0x26,0x60,0x53,0x65,0xfd,0x19,0x94,0x98,0x6b,0x25,0xee,0xfb,0x12,0xa0,0x1c,0xec,0xa5,0x32,0x30, - 0xfa,0x7b,0x1a,0x98,0xce,0xa2,0x51,0x87,0xdb,0x36,0xb4,0x2e,0x5a,0xf4,0x13,0x63,0x19,0x5f,0x55,0x6c, - 0xb3,0xf1,0x27,0xd5,0x2a,0xdb,0x4c,0x3b,0x21,0x0a,0x0b,0xa2,0x92,0xe5,0x87,0x6e,0xc2,0xa1,0xa8,0x27, - 0xeb,0xf8,0x44,0x65,0x9e,0xbd,0x3a,0xcc,0x43,0x78,0xdb,0x33,0x2c,0x8c,0xfa,0xec,0x42,0xf5,0x39,0x32, - 0x1d,0xcd,0x92,0x7c,0x78,0xef,0xb2,0xa0,0xe3,0x14,0x01,0xb0,0xe4,0x69,0x58,0xd4,0x2c,0x1c,0x3a,0x27, - 0x12,0x2a,0x3d,0x47,0x8c,0xd8,0x7a,0x89,0xe0,0x0a,0x84,0x65,0xe6,0x10,0x95,0xe5,0xf5,0x87,0xac,0xce, - 0x2a,0x22,0x81,0x28,0x9b,0x52,0xc7,0x1a,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9f,0xa7,0x0d,0x82,0x65,0xe8, - 0x8f,0xf1,0x1d,0x36,0x61,0x1b,0x6b,0xe4,0x4c,0xbc,0x26,0x2f,0xc2,0xdc,0x13,0xd9,0x59,0x04,0x54,0x07, - 0xa0,0x35,0xc7,0xc4,0x13,0x4d,0xe9,0xdb,0x1c,0x87,0x4c,0x14,0xeb,0x66,0xca,0xde,0xda,0x44,0x7b,0x39, - 0x4f,0xe8,0x93,0x52,0x3e,0xf1,0xe4,0xa3,0x04,0x0f,0xe1,0xcc,0xf3,0x5f,0xa9,0xc2,0xdc,0xb2,0x38,0x39, - 0x1c,0xc6,0x4a,0x62,0x9b,0xca,0x2a,0xcb,0xcf,0x8b,0x77,0xc6,0x4d,0x9a,0x26,0x86,0x20,0x83,0xb1,0x80, - 0x41,0x74,0x2c,0xca,0x6c,0xe8,0x0b,0x83,0xca,0x3c,0x13,0x6d,0x8e,0x73,0xe5,0x72,0xec,0x96,0x7b,0x34, - 0xe1,0x6d,0xa7,0xd9,0x38,0x57,0x80,0xb6,0x20,0x51,0x3e,0x2b,0x0d,0x7d,0xc4,0x96,0xad,0x86,0x6c,0xc0, - 0x50,0x08,0x8a,0xa3,0xdd,0xcf,0x3d,0xdc,0x6c,0x84,0x38,0x9f,0xd3,0xf0,0x61,0x0f,0xe5,0xa1,0x34,0xcf, - 0x69,0xc3,0x0f,0x64,0x67,0x65,0x07,0xac,0xad,0xad,0x57,0xcb,0xac,0x32,0x67,0x0f,0xca,0xe9,0x14,0x26, - 0x3e,0xd8,0x22,0x95,0xdf,0x8d,0x01,0xc5,0x6d,0xfb,0x3d,0x31,0x7e,0x27,0x5d,0x23,0x6c,0x44,0x78,0x73, - 0x24,0x08,0x4e,0x33,0xe1,0x40,0x8d,0x47,0x1c,0x88,0xc6,0x3a,0x4b,0xe7,0x99,0x49,0xb1,0x47,0x63,0x69, - 0x94,0xf8,0xe5,0xc9,0xae,0x98,0x48,0x42,0x42,0xc0,0xbe,0x97,0x08,0x50,0xd3,0x40,0xc6,0xdd,0x63,0xa4, - 0xbb,0x25,0xcf,0xd2,0xc4,0x2b,0x21,0xba,0x22,0xe9,0x0a,0x51,0xc7,0x45,0xcc,0x2a,0xf7,0x2d,0xf3,0x38, - 0xf1,0x4d,0xb0,0x7d,0x11,0x8d,0x4a,0xe6,0x6b,0x54,0xc2,0xc6,0x49,0x76,0x41,0x70,0x7e,0x93,0x1c,0xd0, - 0x9a,0xb4,0xd3,0x1e,0x1d,0x60,0x81,0x74,0xa0,0x2f,0x24,0x38,0x7f,0x39,0xb7,0x07,0x0b,0x23,0xb1,0x57, - 0x18,0xa3,0xe7,0xcc,0xbf,0x61,0xaf,0x79,0x78,0x1d,0x77,0x27,0x8d,0x4e,0xae,0xd0,0x5b,0xc0,0xe4,0x35, - 0xb4,0xd1,0xed,0x32,0xda,0x1a,0x8b,0x23,0xd9,0xb8,0xcd,0x72,0xdc,0x70,0xea,0x49,0x82,0x10,0x2b,0xdb, - 0x16,0x05,0xef,0x33,0x1b,0xe2,0xe4,0x14,0xf1,0x02,0x5a,0xb6,0x97,0xbf,0xb6,0xec,0x23,0xd8,0x45,0x11, - 0xa7,0x79,0x87,0x5c,0x60,0xef,0x4c,0xef,0xab,0x67,0x59,0x8b,0x32,0xe9,0xae,0xce,0xd8,0x77,0x9d,0xff, - 0x66,0xff,0x30,0xde,0xd6,0xd5,0x8c,0x7d,0xa7,0xff,0x4e,0x69,0xa8,0xea,0xd4,0x6e,0x68,0xe3,0x28,0x48, - 0x20,0xb1,0x13,0x60,0x7c,0x13,0x47,0xa1,0x90,0x08,0xd8,0xec,0xb6,0xda,0x68,0x74,0xe7,0x89,0x15,0x5f, - 0x75,0x4c,0x04,0x58,0x4d,0xca,0x70,0x0a,0x05,0x0c,0x83,0xe7,0x29,0xe3,0xba,0x2e,0x5c,0x9a,0x40,0xbd, - 0x30,0x7b,0x67,0x4b,0x47,0xcd,0x17,0xfc,0x0a,0x49,0xd9,0x96,0xbd,0xd1,0xa8,0x86,0x00,0x99,0x49,0x80, - 0xd7,0xa0,0xc5,0x4a,0x66,0xf0,0x7c,0xd2,0xe6,0xf5,0x96,0xae,0x81,0x2d,0xf1,0x77,0x73,0xf6,0xd8,0x62, - 0x14,0x03,0x87,0x35,0xfc,0xe2,0x96,0x10,0xdb,0xc2,0x2b,0x4d,0x26,0x0f,0xef,0x4d,0x69,0x88,0x55,0x09, - 0x97,0xad,0xcc,0xea,0xfd,0xe7,0x7c,0xe7,0xa5,0xe7,0x05,0x90,0xf9,0x9e,0xdd,0xb7,0x22,0x64,0x7e,0x0a, - 0x3d,0x41,0xfc,0x96,0xf7,0xbc,0x4b,0x50,0x85,0xff,0x46,0x07,0x30,0x97,0x82,0x69,0x19,0x3f,0x11,0xc1, - 0xa1,0x9f,0x10,0x1c,0x19,0xbf,0x27,0xb1,0x7e,0xf0,0xcd,0xfa,0xdb,0xcb,0x9f,0x8d,0x9b,0x71,0xb6,0x17, - 0x20,0xec,0x4d,0x9c,0xc5,0xe0,0x0c,0x3d,0x9b,0xef,0x37,0x3e,0x80,0x6d,0x01,0x4a,0xdf,0xe1,0x48,0x93, - 0x85,0xd0,0x81,0xb4,0x3b,0x55,0xe9,0x54,0x76,0xf9,0xa3,0x92,0x77,0x28,0x11,0xba,0x09,0xea,0xc4,0xc6, - 0x03,0xe9,0xc5,0x17,0xbb,0x41,0x40,0x80,0xff,0x7b,0x09,0xf5,0x22,0x52,0xf4,0x5b,0x78,0xbb,0x92,0x95, - 0x34,0xdd,0xd6,0x04,0x5d,0x06,0xc1,0xa8,0x25,0x9e,0xcb,0x74,0x4c,0x80,0xb0,0xd1,0xa1,0x77,0x51,0x5d, - 0xe3,0x57,0xc7,0x1b,0xb8,0x17,0xa0,0xdb,0xa6,0xee,0xfe,0xb0,0x53,0x6e,0x3d,0xa8,0x2f,0xcf,0x83,0x38, - 0x58,0xa4,0xcd,0x05,0x1b,0x1a,0x8d,0xe5,0x71,0x4b,0x5b,0xf4,0x53,0x66,0xa2,0xfb,0x6c,0x6b,0x38,0x4d, - 0x8d,0x36,0xea,0xde,0x6f,0xab,0xac,0xba,0xf9,0x98,0x41,0x0f,0x5d,0xca,0x3d,0x34,0x77,0xc5,0xd2,0x9c, - 0xe6,0x97,0x41,0x9f,0x2a,0xe5,0x49,0x67,0xaf,0xb0,0xcd,0x65,0x95,0xcd,0x3a,0x3e,0x42,0xc6,0xf3,0x3a, - 0xf7,0xdd,0xb8,0x0d,0x98,0x02,0x43,0xc0,0x41,0xbb,0x84,0xe5,0x3c,0x7d,0x5b,0x8f,0xba,0x6a,0x95,0x92, - 0xad,0xa1,0xe6,0xfc,0x8b,0xc3,0x1f,0xbf,0x38,0x64,0x71,0xc0,0xe2,0x51,0x13,0xf2,0xb1,0x6b,0xff,0x55, - 0xf1,0xa2,0xac,0x7a,0x6b,0xc1,0x5f,0x8b,0x32,0x72,0xc2,0xc7,0x83,0x01,0x27,0x31,0x46,0x36,0x75,0x13, - 0x7c,0xc8,0x43,0xee,0x01,0xee,0x8f,0x22,0xc4,0x76,0x31,0xb6,0x40,0xe3,0xe1,0xa8,0xa7,0x5f,0x16,0x32, - 0xc9,0x7e,0xd4,0x47,0xbf,0xef,0x1f,0xce,0x3a,0x3f,0x67,0x3c,0xd6,0x68,0xe3,0x54,0x8e,0xc4,0x42,0x14, - 0x01,0x3f,0x77,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x0a,0x16,0x51,0xc1,0x1b,0x31, - 0xac,0xf4,0x9c,0x8b,0x30,0x34,0x71,0x0c,0x79,0xc5,0xba,0x3a,0xe8,0x6a,0xd9,0xaf,0xec,0x33,0x65,0xac, - 0x28,0x11,0xd6,0x75,0xeb,0xf5,0x2a,0x67,0x87,0x46,0xfa,0x21,0x6e,0x90,0x07,0x0c,0xba,0x02,0xa3,0x79, - 0x0c,0xa9,0xd2,0x7b,0x84,0xca,0xba,0x28,0xe7,0xc4,0xa9,0x73,0x0d,0x2d,0xd9,0x13,0xc6,0xe9,0x27,0x80, - 0x32,0x6e,0xa7,0x68,0x99,0x9c,0x6f,0xbf,0x9f,0x89,0x80,0xc2,0x6a,0x97,0xc5,0x49,0x0e,0x1b,0x2b,0x27, - 0x12,0x22,0x7f,0x94,0x54,0xa3,0xbd,0xbd,0x9c,0xb6,0x2e,0x2c,0x18,0xf3,0x13,0x4d,0x68,0x87,0x29,0x0e, - 0x7b,0xe7,0x69,0xe9,0x79,0x9e,0xbc,0xd4,0x30,0xa9,0x63,0xe4,0x79,0x0e,0x5f,0xeb,0x75,0xd3,0x4d,0x6a, - 0xcf,0xbb,0x81,0x64,0xe1,0x86,0x13,0xc4,0xe8,0x98,0xc2,0x6b,0xaf,0x91,0x87,0x3a,0xf9,0x3d,0xdb,0xae, - 0xd5,0x45,0x16,0x00,0x07,0x46,0x25,0xb6,0x1a,0xc1,0xc5,0xc8,0xa6,0xc4,0x8a,0xc8,0x0e,0x22,0x85,0x35, - 0x93,0x55,0x88,0x84,0xa5,0x4a,0x6a,0xe1,0xe6,0x27,0xf8,0xa9,0xc6,0x34,0x6b,0x34,0xc5,0x3f,0x42,0xf0, - 0x95,0x18,0x47,0xdc,0xdf,0xc0,0xe8,0x6a,0x1d,0x68,0xa0,0x70,0xe7,0x81,0xca,0x61,0x34,0x81,0x93,0x80, - 0x7e,0xdc,0xbe,0x12,0x59,0xf4,0x74,0x30,0x98,0x1b,0xa0,0x26,0xde,0x45,0xbe,0x86,0xcf,0x5a,0xdf,0xb7, - 0x79,0x41,0x34,0x39,0x7f,0xb3,0xb2,0xdf,0x60,0x0b,0xaf,0x5a,0x51,0x6d,0x66,0x7d,0xb2,0x71,0x31,0xce, - 0x5b,0xf9,0x26,0x79,0xd4,0xd6,0x0a,0xe3,0x08,0x4c,0xb5,0xd2,0xe4,0x66,0x54,0x8e,0xbf,0x83,0xbf,0x94, - 0x24,0x07,0x90,0x41,0xcf,0x42,0x76,0x0a,0x98,0xdb,0xc8,0x1f,0x5c,0x00,0x71,0x04,0x75,0xf8,0xc0,0x3b, - 0x5b,0x9c,0x77,0x5a,0x9c,0x73,0x8b,0xdd,0x49,0xd0,0x2d,0x33,0x1b,0x6e,0xe7,0xbb,0x8e,0x26,0xec,0x75, - 0x46,0x5f,0xf1,0xb4,0x07,0xab,0x42,0x26,0x26,0xa3,0x7f,0x10,0xc4,0xb6,0x0d,0x76,0x7f,0x6f,0xe1,0xb8, - 0xbe,0xa8,0x3b,0x1d,0x73,0x5c,0xbd,0x3d,0x47,0x62,0xf6,0xb1,0xa5,0x32,0x0d,0x73,0x36,0xc5,0x8d,0x86, - 0x3a,0x2e,0x38,0xeb,0xc4,0x73,0xf7,0x96,0x5c,0xe6,0x91,0x2a,0x8e,0x09,0xde,0x09,0x06,0x87,0x55,0x7a, - 0xf5,0x96,0xc9,0xa8,0x92,0xc9,0xa9,0xbd,0x60,0x18,0xec,0xf9,0xf6,0x20,0xa5,0x5f,0x0d,0x64,0x05,0x12, - 0x76,0x75,0x18,0x44,0x11,0xed,0x0f,0x59,0x66,0xe2,0x94,0x1a,0x8f,0x53,0x72,0x80,0x49,0x07,0x25,0xd7, - 0x1a,0xe9,0xb8,0xf5,0xdb,0x26,0xb0,0xbf,0x65,0xdb,0xd2,0xe7,0x4c,0x40,0x87,0x7f,0xb4,0xdd,0x64,0xc9, - 0x86,0x91,0x65,0x58,0x48,0xa8,0x0d,0x5d,0x5e,0x1b,0x47,0x56,0x30,0x8e,0xac,0xe4,0xc2,0x04,0x3e,0x06, - 0x5c,0x0f,0xf8,0x1a,0x14,0x19,0x17,0x28,0x00,0x67,0x3c,0xe9,0xb9,0x42,0x64,0xa1,0x47,0x01,0x6d,0x1b, - 0x6e,0xf3,0xec,0x87,0x0d,0x63,0x2d,0x71,0x9d,0x6a,0x13,0xa1,0x79,0x71,0x91,0x55,0x39,0xc7,0xdb,0xa6, - 0x19,0xca,0x42,0x41,0x86,0x16,0x09,0x66,0xc6,0x53,0x40,0x12,0x34,0x73,0xc0,0x7c,0x12,0x35,0x86,0xd1, - 0x4c,0x12,0xff,0x13,0x16,0x8e,0xaf,0x92,0xaa,0x93,0xc4,0xfc,0x98,0x16,0x0d,0x21,0x1c,0x42,0xab,0x40, - 0xc2,0x5a,0xe8,0x95,0x76,0x97,0x60,0x6a,0x71,0x15,0xa5,0xc9,0x0a,0x14,0xfe,0x44,0x98,0x99,0x94,0x40, - 0x1f,0x92,0x52,0xf0,0x6d,0xa3,0xf0,0x6d,0xb1,0x5e,0x7f,0x80,0x41,0xc7,0x4a,0x36,0x3f,0xc4,0x15,0xf2, - 0xa4,0x8b,0x19,0x01,0xbb,0xce,0xf7,0x2a,0x9e,0x44,0xd8,0x7d,0x25,0xdb,0xe2,0x37,0x40,0xe2,0x63,0x04, - 0xb7,0x43,0x60,0x5a,0x1b,0x71,0xfc,0xed,0xc7,0x30,0xcb,0x55,0x81,0xcc,0x28,0xfe,0x17,0x7d,0x17,0x21, - 0xd0,0x66,0xa7,0x10,0x32,0xbd,0x55,0xf8,0xce,0x37,0x10,0xf8,0x67,0xc5,0x4e,0x77,0x39,0x07,0xc8,0xde, - 0xfa,0x90,0x45,0x25,0x49,0x40,0x94,0x76,0x79,0x35,0xa3,0xfd,0x51,0xd3,0x5e,0xc9,0x8a,0x40,0xc2,0x8e, - 0x05,0xcf,0xdf,0x3c,0x79,0xfe,0x4c,0xdb,0x4a,0x0b,0x8f,0x3f,0x0e,0x9a,0x8a,0xc6,0x12,0x43,0xc9,0xdf, - 0x0a,0x8c,0xce,0x5e,0x6f,0xd6,0x1e,0xea,0x5f,0x95,0x0e,0x21,0xd0,0x2e,0xc2,0xbd,0x20,0xaa,0x71,0x96, - 0x52,0x39,0xd4,0x5b,0x8c,0xf5,0x73,0x2c,0xf5,0xba,0x1a,0x9a,0xfc,0x33,0xdd,0xb6,0x93,0xd2,0xe0,0xfe, - 0x8e,0x56,0x2b,0x92,0xd5,0x58,0xf3,0x05,0xaa,0x8a,0x2b,0x89,0xfa,0xc6,0x2e,0xf6,0x33,0x54,0xe4,0x2d, - 0xfc,0xdb,0xde,0xc0,0x6b,0xe2,0xe8,0xf9,0xcf,0x47,0x8f,0x3f,0x3c,0x7f,0xdc,0x1a,0x35,0xa5,0x2f,0xdd, - 0x59,0xaa,0x67,0x87,0x63,0x6a,0xe6,0xd9,0xf2,0xc2,0x90,0x4e,0xbe,0x2d,0x60,0x43,0xc4,0x77,0xb9,0x7c, - 0x45,0x44,0xc4,0x34,0x27,0xdc,0x03,0xcb,0x9a,0xf4,0x3c,0x15,0xe4,0xa8,0x4c,0x57,0x3a,0x77,0xbc,0x08, - 0x05,0x01,0x4b,0x91,0x51,0xd6,0x73,0x05,0x8c,0xcd,0x56,0xa6,0xe1,0x64,0xf7,0x60,0xd3,0xb3,0x0c,0x1e, - 0x24,0x7c,0xdb,0xd9,0x8f,0x86,0x74,0xe3,0xe0,0x3b,0xa9,0xde,0x2b,0xb2,0x29,0x33,0xc8,0xbf,0x3d,0x86, - 0x01,0xbb,0xad,0xd4,0xbc,0x02,0xcb,0x2d,0x20,0x97,0x05,0x73,0xd4,0x2d,0x94,0xea,0x42,0x91,0xd5,0xad, - 0xf4,0xd2,0xfa,0xe6,0x4e,0x34,0xf8,0x51,0x10,0x52,0x1d,0xb1,0x78,0xa5,0x4b,0x5e,0x46,0x23,0x60,0xdc, - 0x3e,0xf6,0x48,0xb8,0x38,0xbe,0xe4,0x72,0xca,0xde,0xb8,0x04,0xb6,0x2f,0x32,0x4d,0x90,0x31,0xec,0xb1, - 0x25,0xbd,0x10,0x4d,0xd6,0x8c,0x9e,0x83,0x65,0xf8,0xe5,0x0b,0xa5,0xc9,0x39,0xa7,0x92,0x4b,0x5a,0x8c, - 0x12,0xcf,0x8a,0xf0,0x45,0x0d,0x6f,0x36,0x48,0x09,0xc7,0x6f,0x21,0x6c,0x7a,0xc3,0xfa,0x23,0x22,0xfe, - 0x47,0x1a,0xeb,0xb0,0x65,0x32,0x84,0x41,0xa7,0x1c,0x37,0x36,0xc7,0x98,0xb9,0x92,0x8c,0xc8,0x62,0x96, - 0x50,0x86,0x75,0xf2,0x16,0x28,0xe0,0x4d,0xc6,0x12,0x44,0x05,0xd7,0xac,0x1c,0x06,0x98,0xd9,0x25,0x17, - 0xec,0xb9,0x83,0x40,0xac,0xbe,0x54,0x8d,0x53,0xdf,0x15,0x4c,0x6a,0x7f,0x59,0x7f,0xce,0xb6,0x9c,0xe4, - 0x42,0xb6,0xcb,0xf2,0x1c,0x36,0x32,0x6d,0x16,0x7e,0x41,0xb8,0x5d,0x2e,0x79,0xa0,0xf6,0x2f,0x92,0x7c, - 0xef,0x70,0xe3,0x91,0x4d,0x8c,0x3a,0x77,0x0f,0x45,0x15,0xba,0xc2,0x9f,0x39,0x5b,0x88,0x13,0x4b,0x36, - 0xa5,0xff,0x4b,0xfa,0x6f,0x1c,0x32,0x7b,0x84,0x28,0xd8,0x5c,0x6c,0x92,0x9b,0xf9,0x71,0xb1,0xe8,0x44, - 0xac,0xa3,0x2f,0xbe,0x16,0xdb,0xee,0xaf,0x1f,0xd2,0x90,0x45,0x3e,0xba,0x7b,0xe8,0xf6,0xe4,0x24,0xfa, - 0xe2,0xcb,0x4e,0x81,0x49,0xab,0xc0,0x2a,0xfa,0xfa,0xef,0x9d,0x02,0xab,0x56,0x81,0x79,0xf4,0xe5,0x7f, - 0x77,0x0a,0xcc,0x5b,0x05,0x0e,0x1f,0x7e,0x09,0x8e,0x71,0xbd,0xa6,0x07,0xde,0xcc,0x7e,0x17,0xf7,0x0e, - 0xa3,0xfe,0x8c,0x7d,0x64,0xcc,0x88,0xb9,0x5a,0xaf,0x97,0xd1,0x6d,0x7d,0x95,0x6b,0x8f,0x81,0x49,0x4a, - 0xb5,0x7e,0xf1,0x65,0x0c,0xc3,0x03,0x31,0x9a,0x1d,0x49,0xd2,0xd7,0x71,0xdd,0x49,0xfa,0xfa,0xef,0xf1, - 0xaa,0x93,0xf4,0xe5,0x41,0xbc,0xdc,0xdb,0x6b,0xa5,0x1c,0xc6,0xcb,0xfd,0xfd,0xd6,0x67,0x87,0xf1,0xb4, - 0x5d,0xe6,0xeb,0x2f,0xe2,0x69,0xbb,0xcc,0xe1,0xc3,0x2f,0xe2,0x59,0xbb,0xd0,0xe1,0xc3,0xaf,0xe2,0xd9, - 0xfe,0x3e,0x28,0x33,0x99,0x10,0xb7,0xe7,0x2e,0x13,0x1a,0x8e,0x5a,0x68,0x96,0x6b,0x74,0xc9,0xe1,0x25, - 0xc5,0xf9,0x25,0x5c,0x24,0xf6,0x9e,0x87,0x4b,0x88,0x55,0xf6,0xf7,0xa3,0xd1,0x62,0x30,0x38,0xd3,0x31, - 0x7c,0x17,0x11,0x6b,0x08,0x60,0xe8,0x2f,0x02,0x57,0x6b,0x3f,0x52,0x8e,0x43,0x86,0x22,0x66,0xd9,0xcd, - 0xa5,0xd1,0x0e,0xc4,0xe2,0x46,0x54,0x2c,0x5e,0xf9,0xde,0x82,0x31,0xdc,0xe4,0x2f,0xc0,0xe5,0xe0,0x12, - 0x10,0x07,0x5f,0xa9,0x0f,0x5f,0x65,0xd2,0x43,0xef,0x27,0x4e,0x72,0x17,0x84,0x81,0x08,0x38,0x1f,0x99, - 0x7b,0x49,0xee,0x9f,0x52,0xea,0x7d,0x22,0x4e,0xee,0x07,0x51,0x78,0x9f,0xa3,0xd0,0x07,0xa3,0x76,0x96, - 0xed,0x4b,0x11,0xb9,0x52,0x2a,0xb0,0x19,0x05,0xc1,0xc6,0x06,0xb2,0x65,0x5f,0xe2,0x57,0x7a,0x8e,0x77, - 0xbc,0xf9,0xda,0x4e,0xce,0xc1,0xf1,0x8f,0x2b,0x44,0x58,0x63,0x93,0xa8,0xea,0x04,0x81,0x81,0x7d,0xd9, - 0xdb,0xbf,0xba,0x62,0x14,0x44,0xcf,0x5f,0xb6,0x4d,0x4f,0x5c,0x18,0xa0,0xcd,0xb6,0x75,0xb9,0x57,0x60, - 0x13,0xc5,0xc7,0x9e,0x35,0xd1,0x3f,0xed,0x59,0x1f,0x66,0x56,0x3b,0x6f,0x02,0x84,0x38,0x6c,0x70,0xcb, - 0x77,0x78,0x34,0x4a,0xc7,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0xc4,0xf7,0x25,0xca,0x1a,0xaf,0xb2,0xae, - 0x05,0xe8,0x5f,0xad,0xac,0x69,0x9c,0x95,0x20,0xd7,0xf0,0x26,0x5d,0x4a,0x1c,0x22,0xfd,0x8e,0xa3,0xed, - 0x8e,0x0a,0x3d,0x0f,0xbc,0xc6,0xd1,0xb4,0xd0,0x84,0x02,0xbf,0xb3,0x5e,0xdb,0x78,0xa8,0xba,0x38,0x43, - 0x95,0x75,0x8b,0x6d,0x92,0x60,0x17,0x2e,0x3b,0x84,0xec,0x61,0x52,0xe9,0x17,0x61,0x07,0x5a,0xca,0xff, - 0x7f,0x3a,0x5f,0xfb,0xcf,0xfa,0x45,0x8c,0x4b,0x2d,0x95,0x1a,0x70,0x29,0xc2,0xc9,0xf0,0x0d,0x97,0x63, - 0x1f,0x86,0x25,0xf9,0xf9,0x45,0x33,0x0e,0x29,0x5f,0x13,0xc9,0x8b,0xac,0x58,0x05,0xca,0x56,0xc0,0xf9, - 0x51,0x5c,0x0d,0x17,0xf9,0x74,0x3a,0x67,0x21,0x6e,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96,0x81,0x31,0xf8, - 0x1d,0x55,0x5a,0x4d,0x3d,0x76,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x7e,0x02,0xab, - 0xc5,0x63,0x14,0xcb,0x5c,0x81,0xcc,0x66,0x69,0xcb,0x3d,0x13,0x58,0x70,0x33,0xc2,0x45,0xad,0x97,0x90, - 0x9d,0xd5,0x1e,0xe7,0xa2,0xaf,0x75,0x9f,0x24,0xb8,0x94,0x67,0xb4,0xa5,0xfb,0xcb,0xc7,0x13,0x7b,0xb3, - 0x78,0x6d,0xdd,0xf4,0x6a,0xb9,0xc8,0x27,0x99,0x50,0xfe,0x71,0xad,0x26,0x27,0xf1,0xf1,0x44,0xd5,0x27, - 0x71,0xdd,0x0b,0x02,0x95,0x05,0x01,0xa1,0x90,0x20,0x92,0xc6,0xad,0x60,0x7b,0x08,0xdc,0x2e,0x2f,0x97, - 0xfb,0x1c,0x9b,0x05,0x49,0xbc,0x93,0x39,0x06,0xaf,0x09,0xa3,0x89,0x83,0x4e,0x54,0x18,0xe2,0x05,0x63, - 0x08,0x19,0xfe,0xd4,0xff,0x20,0x37,0x1f,0x74,0x42,0xdd,0xe6,0xfe,0xa9,0x99,0xb7,0x7b,0xe3,0xbe,0x66, - 0xc9,0x8c,0x07,0xa2,0x7e,0x24,0x1c,0x0f,0x56,0xb5,0xd5,0x7e,0xde,0xb5,0xda,0x87,0x6e,0x09,0x4e,0x11, - 0x7c,0xa5,0x0a,0x02,0x85,0xde,0xe6,0x26,0x76,0x56,0x89,0xd8,0x59,0xe2,0x62,0x61,0xd8,0x35,0xeb,0xc7, - 0xd8,0x6a,0xd2,0xb7,0xe2,0x2f,0x3b,0xb3,0x26,0x56,0xfa,0x79,0x12,0xdc,0xbb,0x77,0x49,0xc8,0x8c,0x11, - 0x28,0x08,0x87,0x24,0x08,0xb5,0xb8,0x90,0x32,0x76,0xa8,0xe5,0x9d,0xfb,0x32,0xf2,0xfb,0x63,0xa4,0x18, - 0x44,0x8b,0xe7,0x08,0xb2,0xd2,0xa1,0x38,0x3b,0xc8,0xa7,0xa7,0xc4,0x77,0xee,0xe5,0x40,0x8f,0x9a,0x9f, - 0x4c,0x10,0xe5,0x09,0xe1,0xb0,0xb4,0xf1,0x8f,0x01,0x1f,0xc2,0xb1,0xe0,0xf5,0x22,0xe2,0xb8,0xaf,0x97, - 0xb8,0x6e,0x90,0xba,0x18,0xdf,0xd7,0x38,0xf6,0xbe,0x32,0xa6,0x39,0x2e,0xb4,0xc9,0x4e,0x88,0x06,0x77, - 0x6e,0x83,0xbd,0x72,0x2f,0xd8,0x04,0xde,0x02,0xa4,0x8d,0x8f,0xc6,0x7d,0xe4,0x46,0x53,0xf8,0xa4,0x72, - 0x01,0x0c,0xbd,0xcb,0xac,0x8e,0x83,0xe8,0xd1,0x01,0xa4,0x8e,0xb8,0x9d,0xeb,0x95,0x49,0x3d,0xa1,0xd4, - 0x27,0x95,0x8d,0xd2,0x1b,0xbe,0xe4,0x8f,0xfd,0x12,0xe0,0xa9,0xbf,0xd9,0x3f,0x1c,0xdf,0x52,0xaf,0x63, - 0x77,0xfe,0xbc,0x24,0x8a,0x8d,0x58,0x71,0x1e,0x80,0x49,0x7d,0x59,0x11,0xc6,0xc7,0x60,0x36,0xb1,0x94, - 0xe6,0x12,0x1c,0xa7,0x89,0x09,0x9f,0x1f,0x41,0xb2,0x52,0x0b,0xbf,0x57,0xc9,0x6f,0x10,0x11,0xec,0x4e, - 0x70,0xc6,0x45,0xab,0x26,0xfc,0xa1,0x4a,0x6a,0xa8,0xb4,0xc7,0x73,0x3c,0x47,0xf1,0xd7,0x60,0x69,0x7f, - 0xa8,0x7c,0x31,0x95,0x91,0x3f,0x8b,0x87,0x24,0x55,0xf1,0xb2,0x32,0x15,0x70,0x60,0x59,0x7c,0xaf,0x56, - 0x50,0xd5,0x44,0x73,0x8e,0xb3,0x6c,0xc8,0x17,0xae,0x8b,0x70,0x07,0x82,0x17,0x7e,0xfd,0x85,0x7e,0xde, - 0xdf,0x67,0x53,0x3b,0x9a,0xc3,0xdf,0xb8,0x26,0x01,0xad,0x0d,0x1a,0x37,0x31,0xcf,0xdb,0xe3,0xfd,0x5d, - 0x8f,0xd7,0xa4,0xfc,0x4e,0x63,0x55,0xbf,0x55,0x50,0x37,0x3a,0x4d,0xb2,0x76,0xef,0x64,0xdf,0x88,0xb1, - 0xdc,0x68,0xd3,0xc4,0xc1,0x3d,0xa2,0x4b,0x43,0xdc,0xa1,0x48,0x35,0xea,0x3b,0xbb,0x50,0x40,0x1e,0x19, - 0x22,0x3c,0x27,0xd4,0xc6,0xd9,0x0f,0xff,0x58,0xf9,0x04,0xd5,0xde,0xde,0x4b,0xdf,0xf4,0x7d,0xe2,0x15, - 0x7c,0x59,0x7d,0x93,0x3c,0xf1,0xe0,0x7e,0xe5,0x47,0x0d,0x67,0xf2,0x30,0x5b,0xaf,0x99,0x8e,0xf4,0x84, - 0xd8,0x3c,0x49,0xbe,0xb3,0xa1,0xcc,0x26,0x3b,0xd0,0xf2,0x5a,0xc0,0x2f,0x63,0x14,0x8d,0x3c,0xc7,0xbc, - 0xc6,0x97,0x8a,0x34,0x88,0x54,0xd1,0x44,0xc3,0x53,0x5c,0x17,0x79,0x94,0xd6,0x30,0xec,0x29,0xdd,0x9b, - 0x2f,0x35,0xbb,0x70,0x1e,0x9e,0x49,0x79,0x47,0x3c,0x09,0xdd,0xdb,0x0b,0xf6,0xab,0xa4,0xb3,0x99,0xef, - 0x62,0x6c,0x5a,0x64,0x8b,0xdb,0xc8,0xdf,0x57,0xdd,0x70,0xb4,0x3b,0x79,0xe8,0xae,0x07,0xec,0x6f,0x82, - 0xf0,0x05,0x6f,0x4c,0xf1,0x61,0xdb,0x20,0x84,0x31,0xe2,0x12,0xa8,0xef,0xab,0x6d,0x1e,0x11,0xad,0xfd, - 0x50,0x8c,0x6f,0xf5,0x39,0x08,0x4b,0x1d,0x39,0xcb,0x10,0x56,0x4e,0xe3,0x7b,0x8f,0x92,0x99,0x36,0x4e, - 0x67,0x15,0xd2,0xa9,0xfa,0x7d,0x15,0xf5,0x72,0xa6,0x88,0x68,0xe5,0xcd,0x57,0xdb,0x19,0x60,0xd9,0x84, - 0x26,0x2a,0xd5,0xae,0x15,0xd8,0x94,0x60,0xf3,0x77,0xad,0xb8,0x06,0xb7,0x00,0x58,0x1e,0x54,0xa7,0x30, - 0x52,0x2b,0x93,0xc2,0x7f,0x1f,0x7d,0x5f,0x69,0x26,0xb5,0x83,0x1c,0xa8,0xa3,0xc7,0xa7,0xd0,0x03,0x69, - 0xdc,0xf1,0xb6,0x18,0x07,0xfa,0xfa,0xeb,0xd8,0x58,0x27,0x72,0x90,0x68,0xe7,0x0b,0xc0,0x1f,0x70,0xb8, - 0x67,0xf6,0x33,0x77,0x57,0x8f,0x53,0xf2,0x06,0xd9,0x57,0xb9,0xc4,0x40,0x18,0x4a,0x45,0xad,0x4f,0xaf, - 0xf0,0xa9,0xce,0xe8,0x7c,0x8e,0xcf,0x36,0xe0,0x71,0xbe,0x67,0x15,0xfd,0xac,0x51,0x53,0x04,0x8c,0xb5, - 0x32,0xe3,0xef,0x6d,0x48,0x00,0xcf,0xe1,0xb0,0x6f,0x8e,0x8c,0xc3,0x4d,0x6b,0xa6,0x6c,0xa2,0x2f,0x62, - 0x97,0x29,0xa9,0x93,0xce,0x87,0x6d,0xe9,0x96,0x9f,0x7a,0x97,0x80,0xcb,0xfa,0xf8,0xb4,0x64,0x5c,0xb9, - 0xc8,0x59,0x21,0x8a,0xca,0x75,0xc4,0xba,0xfc,0x24,0x09,0x02,0x2f,0x77,0xa5,0x6f,0x19,0x44,0x09,0xc5, - 0x77,0x45,0x9b,0xbb,0x9b,0xb5,0x7b,0x52,0x5e,0x10,0xa0,0xbc,0x3c,0x7a,0xf3,0x9a,0x13,0xb8,0x74,0xd5, - 0x1f,0x02,0xd7,0x33,0x81,0x2a,0xa9,0x6c,0x8d,0x36,0x31,0x79,0x79,0xb1,0xca,0x46,0xc0,0x79,0xa9,0x14, - 0x7d,0x0b,0x27,0x2d,0x2b,0x6a,0x4e,0x35,0x60,0x3e,0x45,0x56,0xe8,0x17,0x81,0xf9,0x11,0x5f,0x6b,0x2c, - 0x52,0x36,0x69,0x3e,0x1d,0x9e,0xf2,0x6b,0x52,0x6a,0x2b,0x46,0x88,0xc8,0x10,0x1d,0xdf,0xde,0x98,0x35, - 0x9a,0x26,0x73,0xb5,0x1b,0xce,0x92,0x34,0x12,0x69,0x43,0x4d,0xe9,0xb0,0xce,0x7e,0xf7,0xfe,0xe8,0xd5, - 0xbb,0xb7,0xa8,0x67,0x66,0xc4,0x3f,0xc4,0x10,0xf6,0xb0,0x21,0x84,0x1b,0xd8,0xc1,0xdc,0x5d,0x8c,0x25, - 0x8e,0xd2,0x5a,0x0f,0xc7,0xd7,0x1c,0xd8,0x38,0x43,0xde,0xf1,0x9f,0x59,0x31,0x61,0xb3,0x09,0x67,0x6a, - 0x1a,0xb5,0xaa,0xf7,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x1b,0x43,0xb6,0x89,0xf9,0x5a,0x1e,0x69,0x93, - 0x96,0x79,0xfa,0xfb,0x8d,0x0b,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x1b,0x82,0x68,0x22,0xae,0x6a,0x13,0x1d, - 0xf4,0x2d,0x67,0xaa,0xc0,0xd9,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68,0x3a,0x0a,0x92,0xb1,0x90,0xfe, - 0x31,0x48,0x48,0x6f,0x92,0xb9,0xb6,0xbf,0x61,0x10,0x29,0xe5,0x16,0x40,0x2a,0xe3,0xf9,0x75,0x36,0xee, - 0xcc,0x5b,0x34,0xac,0x92,0xbe,0x99,0x7b,0x46,0x4b,0x5a,0xd6,0xf2,0x11,0xa9,0xe3,0xcb,0xb0,0xf5,0xce, - 0xb1,0x13,0x3c,0x6f,0xc6,0xe6,0x73,0x0a,0xe5,0xc5,0x1d,0xda,0xd9,0xeb,0xbc,0x13,0xbb,0xe4,0xbc,0x69, - 0xcb,0xc0,0x58,0x60,0x54,0x76,0x64,0x5f,0xb9,0xdf,0x8f,0x48,0x74,0x61,0xb5,0x7d,0x2e,0xb7,0x72,0x4b, - 0x9d,0x1b,0x79,0x11,0x7f,0xf4,0x3e,0x5d,0x25,0xad,0xe2,0x6a,0x0e,0x83,0xd4,0xb2,0x5a,0xf0,0x75,0xf2, - 0x53,0x4e,0x83,0x82,0xa0,0x96,0x07,0xda,0x87,0xb3,0x64,0xb5,0x5e,0xcf,0xd5,0x14,0xf3,0xa5,0x37,0xaa, - 0x54,0xce,0x5b,0x59,0xa7,0x74,0x6a,0x48,0x60,0x04,0xaf,0x77,0xb8,0xf8,0x4d,0x4d,0xa3,0x78,0x3a,0x12, - 0xc3,0xd6,0x36,0xb4,0xfa,0xda,0x76,0xa6,0x23,0xb3,0x51,0x8f,0x80,0xed,0x2f,0x09,0xde,0x2e,0xad,0x26, - 0x34,0x82,0x7d,0x0b,0x3b,0x8b,0x49,0x72,0xd6,0x4d,0x76,0x8e,0xcb,0x19,0xcc,0xd5,0x87,0x26,0xfe,0x5a, - 0xd9,0xaa,0xad,0xec,0x7e,0xe6,0x54,0xfa,0x95,0xd4,0xc1,0xa1,0x31,0x67,0x84,0xa4,0x96,0xb0,0x69,0x1c, - 0x0c,0x3e,0xc2,0x12,0xb1,0x56,0x06,0x4b,0x71,0xf6,0x32,0x0a,0xd3,0x84,0xf3,0x09,0x78,0x67,0xf4,0x6b, - 0x8b,0xe9,0x58,0x27,0xc0,0x00,0xa9,0xcf,0x12,0xdc,0x34,0xbe,0x57,0x1a,0x47,0x0a,0xd5,0x72,0x0c,0x89, - 0xc0,0xc1,0xc2,0x38,0x36,0x21,0xf4,0x84,0x0e,0x3b,0x01,0x53,0x96,0x8d,0xb6,0x6b,0x79,0xf0,0x4b,0xbd, - 0xf7,0x20,0xb2,0x97,0x38,0xf5,0x78,0x84,0x7b,0xf5,0x70,0x70,0x2d,0x04,0x16,0x8b,0xb7,0x13,0xfd,0x20, - 0xbb,0xd0,0xb0,0x50,0xfb,0xe7,0x3d,0xa2,0xc1,0x48,0x5b,0x5f,0xee,0xe0,0xe6,0x47,0xaf,0x53,0xac,0x91, - 0x09,0x58,0x49,0x9e,0xf5,0xcb,0x14,0xc3,0x82,0xb8,0x2c,0x33,0x40,0x3f,0xf6,0xfe,0xff,0xef,0xb3,0x20, - 0xc8,0x7c,0x7b,0x22,0x6c,0xba,0xf2,0x53,0xe5,0x10,0x00,0x13,0xd0,0x15,0xe1,0x9b,0x29,0x91,0xa9,0x73, - 0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0x31,0xd3,0xe6,0x4d,0x65,0x05,0x5b,0xb0,0x11,0xbc,0xa3,0xed,0x6d, - 0x53,0x95,0xc2,0x70,0x01,0xe2,0x06,0x4d,0x42,0x29,0xd1,0x3b,0xc7,0x7c,0x8f,0xc6,0x5d,0xdd,0xf4,0xe6, - 0xfc,0xb4,0xd1,0xa4,0x8d,0xb6,0x00,0xd9,0xba,0xb5,0xc5,0x20,0x51,0x7b,0x1d,0x30,0xb3,0xc0,0x34,0x2d, - 0x90,0x1a,0xe3,0x26,0x8b,0xf7,0x79,0x98,0x69,0xab,0xad,0xe0,0x32,0x40,0x00,0xcc,0x90,0x95,0xc5,0x8d, - 0x46,0xe1,0x3d,0xb8,0xf1,0x3d,0xe3,0xc6,0x2d,0xf2,0xe4,0x8a,0xfb,0xf2,0x21,0xf7,0x1d,0x68,0x3e,0xa0, - 0xa8,0x2f,0x88,0x39,0x6a,0xda,0xd6,0x23,0xdb,0x32,0x6f,0x96,0x42,0x6c,0x27,0x73,0x5c,0xa0,0xc2,0xb3, - 0xfc,0x02,0x84,0xc2,0x81,0x04,0xf2,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xff,0x52,0xdd,0x54,0x5f,0x6d,0x83, - 0xc1,0xbc,0xb7,0x15,0x04,0xe0,0xd6,0x70,0xec,0x39,0x9d,0x76,0x38,0xe9,0xa7,0x52,0x40,0xe1,0x18,0xd0, - 0x26,0x17,0x95,0x71,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7,0x82,0x95,0x2a,0x98,0xd0,0x2b, - 0x75,0x02,0xc3,0x8b,0x67,0xf9,0xf8,0x45,0x1e,0xbf,0xc9,0x09,0xe3,0x77,0x7c,0xd0,0xfa,0x15,0x3b,0xb5, - 0x9a,0xc3,0x6e,0x9d,0xfd,0xcd,0xda,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd,0xde,0xde,0xe4,0x1b,0x68,0x16, - 0xe1,0x6e,0x36,0xea,0x77,0x6a,0x9a,0x3c,0xd2,0xf9,0x0a,0xd7,0x34,0xab,0x1e,0x25,0x11,0x9a,0xf2,0x9c, - 0x5e,0xfd,0x25,0x23,0x68,0xd7,0xb7,0xea,0x52,0x93,0x4f,0x75,0x00,0x0f,0x3e,0x4b,0x24,0xe6,0x44,0x75, - 0xfc,0x3a,0xdf,0x0b,0x9e,0xc1,0xd1,0x2a,0x38,0xb1,0x26,0x7b,0xb0,0x8a,0x2a,0x4d,0xde,0xaa,0x92,0xab, - 0xae,0xdb,0xd9,0x69,0x02,0xb9,0x39,0x5c,0x13,0x6a,0x2a,0xf8,0xf6,0x8e,0x4a,0x26,0x26,0xaf,0xbf,0x92, - 0x15,0x2a,0x81,0xb1,0x2b,0xcd,0xd1,0x01,0xd4,0x0f,0xee,0x36,0x60,0x9e,0xf0,0x94,0x4d,0xd0,0x0b,0x7a, - 0xa4,0x02,0x29,0x15,0x30,0xb6,0xee,0x44,0x31,0xc0,0x02,0x3b,0x1f,0xaf,0x74,0x89,0x57,0x28,0xb1,0xa2, - 0x12,0x13,0x5b,0x62,0x96,0x50,0x7a,0x38,0x77,0x51,0xdb,0x53,0xd0,0xbe,0xdf,0x1c,0x50,0xad,0xab,0xf1, - 0xb3,0x3c,0x7e,0x95,0x33,0xb7,0x1f,0x8d,0x0b,0x69,0xcc,0xd4,0x1d,0x9b,0x2a,0xe2,0x03,0xa5,0x83,0x37, - 0x2b,0x0d,0x2d,0xf1,0x5c,0x59,0x58,0x89,0x67,0xb8,0x92,0xf9,0xc8,0x5c,0x1d,0x18,0x4b,0x2d,0x83,0xc1, - 0x4f,0x5a,0x96,0x2e,0xb3,0x67,0x22,0x81,0x04,0x27,0x3e,0x1a,0x78,0xdc,0xb8,0x43,0x7a,0x64,0xe4,0x1f, - 0x8f,0x6c,0xbc,0xc5,0x28,0x4b,0x6c,0x08,0x6e,0x47,0x44,0x99,0x71,0xb4,0x2e,0x17,0x6b,0x4b,0x94,0x7d, - 0xef,0xf2,0x8f,0xb0,0x9c,0xdc,0xfb,0xd8,0x48,0xa0,0xaa,0x8d,0xbf,0xd3,0x3e,0xfa,0x24,0xd6,0x61,0xf6, - 0xc5,0xdf,0xf4,0x75,0xb5,0x4e,0x80,0xb0,0x7f,0xe8,0x97,0xbf,0xe7,0xd1,0x52,0x20,0xa1,0x88,0xde,0x81, - 0x5b,0x17,0xee,0x09,0x4a,0x89,0x38,0x3f,0x63,0x67,0x0a,0xfb,0xa6,0xaf,0xed,0x9c,0x4b,0xe4,0x3d,0x97, - 0x1e,0x1a,0x19,0x68,0x72,0xda,0x18,0x6e,0xc8,0x6d,0xe8,0xc8,0xfa,0x6a,0xb1,0xcd,0x25,0x7d,0x46,0x10, - 0x9e,0x55,0x5c,0xf9,0x21,0x47,0x15,0x03,0x41,0x82,0x1b,0xef,0x1c,0x6d,0x83,0x88,0x64,0x84,0x18,0x15, - 0xfc,0x67,0x79,0x63,0x13,0x90,0x0c,0xe5,0x33,0x56,0xe5,0xcd,0xcc,0xeb,0x51,0x29,0x09,0x53,0x93,0xf0, - 0x98,0x69,0x76,0x49,0x5c,0x52,0x22,0x4d,0x69,0x96,0xea,0xaf,0x2e,0xec,0xbb,0xf9,0xec,0xd2,0xa6,0xf8, - 0xdf,0x2d,0x28,0xf5,0x2c,0x83,0x5d,0xf9,0x73,0x54,0xa9,0xce,0x4d,0xe5,0xea,0x06,0xe5,0x71,0x0d,0xbc, - 0x64,0x9c,0xd9,0x5e,0x99,0x89,0x51,0x57,0xf6,0xdb,0xc7,0x5c,0xaf,0x3a,0xb2,0x4d,0xa8,0x4f,0xe6,0x6b, - 0x9d,0x75,0xed,0xfa,0x67,0xbf,0x7f,0x4a,0x69,0x53,0xbd,0xa7,0xd4,0xe3,0xe4,0xaa,0x52,0x1f,0xe9,0x8f, - 0x36,0xf0,0x1f,0x7d,0x24,0x0a,0xc8,0x92,0x5c,0x8f,0x93,0xf0,0x63,0x62,0x5e,0x23,0xc3,0xb1,0xf2,0x4a, - 0xdc,0x4b,0x76,0x1f,0x7b,0x41,0x98,0x88,0x23,0x65,0xeb,0xff,0xb2,0x04,0x1d,0x88,0xf8,0xc2,0x58,0x92, - 0x7b,0xeb,0xf5,0x11,0x0e,0x4f,0x5a,0x83,0x23,0x01,0x81,0x77,0xc9,0xbd,0xc1,0x60,0x39,0x5e,0xd2,0x6e, - 0x78,0x8e,0xc7,0xcb,0xf1,0x65,0x3c,0x55,0xef,0xf1,0x78,0x31,0xbe,0xa0,0x7d,0xf1,0x6b,0x72,0x6f,0x7c, - 0xb5,0x5e,0x2f,0xe2,0x85,0x7a,0x86,0xd4,0x1e,0xff,0x99,0xa3,0xf1,0x51,0x7c,0xae,0x5e,0x51,0xc1,0x4f, - 0xeb,0xf5,0x4d,0x7c,0xa3,0x5e,0xd3,0xe3,0xf5,0x7a,0x7d,0x16,0x9f,0xa9,0x17,0xc4,0xb7,0xe4,0xe1,0xd3, - 0x68,0xfc,0x54,0xa6,0x2d,0x7e,0x1a,0xa9,0xb7,0x09,0x1f,0x84,0x35,0x2b,0xec,0xd5,0x9b,0xe4,0x7d,0x13, - 0x3e,0x8b,0xd4,0x87,0xc4,0xc1,0x89,0xef,0xa9,0x1b,0xdd,0xbe,0x25,0x90,0xa4,0x03,0xa5,0x54,0xef,0x23, - 0xc5,0xbf,0xcf,0xe9,0xa8,0xfc,0xe0,0x40,0x73,0x1c,0x52,0x09,0xce,0x78,0x17,0xa9,0xd7,0x83,0xc1,0x6b, - 0xb6,0xb4,0x78,0x35,0x18,0xbc,0x82,0x3f,0x83,0x57,0xab,0x0e,0xdc,0xae,0xe1,0xb5,0xbe,0x28,0x69,0x60, - 0xdf,0xd1,0x76,0x70,0x26,0x52,0xae,0x51,0x23,0x34,0x92,0xb9,0x06,0x9f,0xaa,0x74,0x68,0xe5,0x53,0x84, - 0x3d,0x62,0x56,0xd3,0x3d,0x1f,0xb3,0x60,0xed,0x64,0xc4,0x81,0x91,0xc4,0x30,0xb1,0x10,0xc3,0xc4,0x06, - 0x3b,0xcc,0xee,0x9b,0xee,0x7b,0x18,0xa9,0x67,0x83,0xc1,0x33,0xea,0xfa,0x07,0x98,0x4d,0xfd,0x3a,0x18, - 0xfc,0x8a,0x3e,0x63,0xc4,0x47,0x7a,0x40,0x47,0x32,0x62,0x75,0xd5,0x3a,0x48,0x8e,0xfc,0xf9,0x78,0xd7, - 0x9a,0x8e,0xf5,0xfa,0x0d,0x9d,0xe3,0xcf,0x9b,0xf0,0x45,0x34,0xf6,0x4e,0xa1,0x0f,0xea,0x45,0x14,0x5f, - 0xa3,0xf8,0x8a,0x1a,0x03,0x12,0x51,0xde,0x44,0x88,0x55,0x6e,0xe5,0xf7,0x87,0xba,0xc1,0x55,0x7d,0x08, - 0xdb,0x1e,0x60,0x1a,0x81,0x38,0x61,0x37,0x75,0xe7,0xda,0x6f,0x3e,0x6c,0x4d,0x70,0x48,0x9c,0xa7,0x9b, - 0x44,0x3b,0x63,0xd0,0x75,0xf7,0xa5,0x8b,0x3f,0xaa,0x4c,0x67,0x52,0x44,0xea,0x82,0x00,0x11,0x81,0x56, - 0xaf,0x64,0x4a,0x52,0x78,0x58,0xf0,0xef,0xb2,0x67,0x4a,0x52,0xe2,0xa1,0x30,0x25,0x5c,0xaa,0xd5,0xa7, - 0x23,0x99,0x92,0x4f,0xad,0x29,0xb9,0x56,0x9f,0x78,0x4a,0x52,0x35,0x57,0xd7,0x32,0x25,0x97,0xa0,0xcc, - 0x52,0x7a,0x53,0x57,0xfc,0xd1,0x35,0xe8,0x6c,0x6d,0x68,0xae,0x71,0x65,0xea,0xa3,0x33,0xef,0xad,0x8d, - 0x2b,0x5d,0xba,0xc1,0x95,0xf5,0xdd,0xb8,0x52,0xa2,0xc8,0xca,0x5d,0x34,0x16,0x35,0x1a,0x06,0x4a,0xb4, - 0xb1,0xbb,0xdc,0xb0,0x41,0xd2,0xc6,0x49,0xa5,0x66,0x9c,0x39,0x4f,0x24,0x56,0x0c,0x21,0x49,0xc8,0x5b, - 0x52,0x83,0xd5,0xa6,0xe6,0xd5,0x20,0xbf,0xa5,0x49,0xf0,0x71,0xdf,0x05,0x25,0x0a,0xfe,0x7a,0x8d,0x2c, - 0xc2,0x90,0xba,0x10,0x61,0xc5,0x5a,0xb0,0x97,0x64,0x9c,0xdb,0xda,0x2d,0xee,0xba,0xa1,0x24,0xf6,0xec, - 0x96,0x12,0x67,0x78,0x35,0xa8,0xec,0x4a,0xb6,0xf9,0x4a,0xb6,0xf9,0x11,0xb6,0xf9,0x25,0xad,0x0e,0x23, - 0x84,0xb3,0x68,0x7c,0x26,0x75,0xc5,0x67,0x11,0x63,0x45,0x33,0xb4,0xf6,0xd6,0xf7,0x41,0x04,0x22,0xa4, - 0x1e,0x80,0xe1,0x35,0xe8,0x49,0xb7,0x30,0xc4,0x41,0xc0,0xae,0x04,0x87,0x38,0x00,0x59,0x46,0x2d,0x08, - 0x19,0x87,0x57,0x8c,0x43,0x18,0x72,0xa8,0xce,0x73,0x36,0x14,0x09,0xb1,0x21,0x16,0x83,0xc1,0x02,0x6f, - 0xca,0xeb,0xa4,0xc6,0x24,0x37,0xe3,0x1b,0xda,0xae,0x71,0x19,0xfa,0x04,0xc1,0x73,0xef,0x44,0xde,0x8e, - 0x4e,0x45,0xb3,0x21,0x17,0x30,0xfa,0xda,0xe5,0xf7,0x88,0x59,0xcb,0xac,0x84,0x0b,0x80,0xac,0x43,0x6c, - 0xc3,0x9c,0x18,0xa1,0x92,0xbd,0x00,0x52,0x63,0x2a,0xbe,0x15,0x08,0xa7,0x3a,0x3e,0x38,0x89,0x11,0x06, - 0xc7,0x5e,0xf9,0x07,0x67,0x18,0x4d,0x3f,0x7d,0xe3,0x69,0xf4,0x7e,0xd5,0xf4,0xca,0x2e,0xd4,0xf7,0x8d, - 0x8f,0x01,0xee,0xf1,0xcd,0xc8,0xce,0x71,0xc4,0x92,0xde,0xaf,0xcc,0x93,0x72,0xa6,0x72,0xfd,0xf4,0xad, - 0x2d,0xb9,0x51,0x07,0x5e,0x55,0xaf,0x3a,0x54,0x7c,0xe3,0x49,0xc6,0x16,0xab,0x79,0x93,0x2f,0xe7,0x99, - 0xd0,0xeb,0xeb,0x75,0x77,0x64,0x5e,0xe4,0x34,0x36,0x75,0x81,0xf3,0x96,0x75,0xbc,0xe9,0xfa,0x6e,0xc1, - 0x0f,0xc4,0xe5,0xe2,0x0a,0x8e,0x3c,0x2a,0x93,0x33,0x62,0xff,0x5e,0xc0,0x0a,0x08,0xfc,0xae,0xc2,0x55, - 0x4e,0x73,0xbe,0x98,0x9d,0x26,0xa0,0x64,0xf0,0x31,0x09,0x89,0x17,0x10,0xec,0x26,0xe4,0x4f,0xbc,0x08, - 0xc2,0xe0,0xba,0x40,0x57,0xe9,0xc2,0xac,0xa8,0x92,0x73,0xac,0x9b,0x9a,0xc0,0xad,0x2f,0x67,0x6e,0xaa, - 0x9d,0xbe,0xdf,0xba,0x81,0xf2,0x75,0xd3,0xbe,0xae,0xa5,0x7b,0x0d,0x9f,0xcd,0xda,0xbd,0x09,0xc5,0xb0, - 0xd6,0xf3,0x23,0xf1,0xa1,0x4c,0x44,0xa5,0x1c,0xe7,0x0d,0x97,0x15,0x88,0xda,0x4f,0x8b,0x1f,0x3d,0x57, - 0x90,0x46,0x9c,0xa1,0x85,0x67,0x71,0x32,0x53,0x18,0xa1,0x39,0x1f,0x90,0x3b,0x0a,0xf1,0x20,0xb7,0xbf, - 0x3c,0x54,0x1f,0x1a,0x9b,0xa1,0xb4,0x20,0xdf,0xa7,0x37,0x3f,0xb4,0x98,0xce,0xae,0xc3,0xc3,0x25,0xbb, - 0x3b,0x40,0xea,0x2c,0x6a,0xf1,0x40,0xf8,0xcc,0xbc,0x91,0x9c,0x46,0x11,0x26,0xe5,0xd8,0x49,0xc3,0x69, - 0x5e,0xb3,0x8d,0xb2,0x64,0xf8,0xea,0x8b,0x9f,0xbc,0x99,0xd8,0xbd,0xc3,0xe1,0x41,0x24,0x55,0x59,0x17, - 0xf9,0x8e,0xb3,0xf8,0x27,0xf6,0xa7,0xb9,0x4b,0x66,0xe6,0xb9,0x5e,0x78,0x52,0x51,0x26,0x03,0xb6,0x0c, - 0x63,0xcd,0x2a,0xe2,0x8c,0x6f,0x99,0xc4,0x1a,0xb7,0xf5,0x31,0xd5,0xf1,0x4f,0x78,0x83,0x59,0x97,0x44, - 0x5f,0xc8,0xf9,0xa3,0xd7,0x00,0x5f,0x81,0xe9,0xa2,0xa5,0xb6,0x03,0x29,0x15,0xee,0xca,0x8a,0x08,0x41, - 0x94,0xd8,0xbc,0x79,0xa4,0x63,0x2b,0x11,0xfa,0x63,0x54,0x68,0xf8,0xc9,0x8e,0x37,0x5f,0x4e,0x5f,0x5c, - 0xe1,0x72,0x90,0x13,0xf6,0xe7,0xeb,0x89,0x69,0xfb,0x83,0x93,0x24,0x3d,0xf8,0x65,0xba,0xff,0x29,0xcb, - 0x96,0xfb,0xe9,0x9c,0x0e,0x8b,0x7b,0xfa,0xe6,0x41,0xa6,0x6f,0x5c,0xa0,0xec,0x30,0x70,0x45,0x02,0x75, - 0xcb,0x5d,0x8b,0x9b,0xad,0xd9,0x71,0x7d,0xf6,0x81,0xf8,0xa5,0x06,0x36,0x26,0x89,0x58,0x39,0x70,0xc6, - 0x37,0x61,0xba,0x57,0xb6,0xb5,0xe4,0x77,0x7d,0x9a,0xda,0x7c,0x7b,0xba,0x7a,0xa6,0xe3,0xba,0x3a,0x11, - 0xb7,0x66,0x57,0xef,0x4b,0x84,0x25,0x42,0x69,0x02,0xce,0x27,0x44,0x18,0x73,0x68,0x90,0x79,0x4e,0x9f, - 0x7e,0xc0,0x3d,0xf0,0x7e,0xcc,0x7a,0x7f,0x79,0xa5,0x02,0x02,0x71,0x65,0x9d,0x6c,0xa4,0x36,0x7d,0xb5, - 0xc5,0xac,0xd9,0x2f,0xf8,0x87,0xef,0x50,0x6b,0xca,0x25,0xbd,0xd2,0x5f,0x60,0xb0,0x6a,0xbd,0xce,0x6d, - 0x17,0x30,0x84,0xa9,0xd1,0x40,0x96,0xba,0x2b,0x2c,0x18,0x1e,0x95,0xee,0xa2,0x7a,0x22,0x32,0x7f,0xca, - 0xce,0x3e,0xe5,0x8d,0xe5,0x3f,0x93,0x80,0x33,0x11,0x50,0x2f,0x0c,0xf6,0xaa,0xbd,0x60,0x79,0xad,0x58, - 0xd5,0xbf,0xbc,0x8e,0x02,0x55,0x7a,0x00,0x6c,0x78,0xf1,0x24,0x38,0xa8,0x7d,0x3d,0xfd,0xf7,0xad,0x5d, - 0xd7,0x8c,0x9f,0x97,0xf1,0xbb,0xd2,0x49,0xf0,0x8d,0x54,0xac,0x68,0x69,0xe9,0x74,0xf6,0xbd,0x12,0xb7, - 0xee,0xfa,0x61,0xe3,0x2d,0xf6,0xd6,0x0a,0x6a,0x66,0xa4,0x0f,0x39,0x56,0x40,0xa6,0xac,0x71,0x45,0xdc, - 0x28,0x63,0x0e,0xd1,0xba,0xcb,0xb7,0x7b,0xb3,0xab,0x72,0x66,0x02,0xf6,0x7e,0x10,0x1d,0x6f,0x59,0xbb, - 0x46,0xe2,0x51,0xc2,0x90,0x38,0x47,0xae,0x26,0x52,0x02,0xd9,0x7e,0x50,0x95,0x63,0xff,0x02,0x9b,0x6f, - 0xcd,0xc1,0xb6,0xad,0xba,0x67,0x2b,0x16,0x02,0xd4,0x1b,0xc2,0x2f,0x72,0xb7,0x23,0x87,0x39,0x83,0xef, - 0x81,0x67,0xf9,0x94,0x89,0x6b,0xd1,0xae,0x6f,0xdc,0xa4,0xcd,0x19,0xee,0xaa,0xb2,0xca,0x66,0xb6,0x4a, - 0x7a,0xe6,0xc8,0x69,0xc6,0x1f,0xaa,0x25,0x29,0xf2,0x8c,0x68,0x47,0x85,0x84,0xfa,0xb4,0x57,0xcd,0x14, - 0x90,0xb9,0x3a,0x77,0x23,0x88,0x28,0x75,0x20,0x4f,0x1b,0x2b,0x1a,0x54,0x28,0xfa,0xda,0x51,0xaa,0x06, - 0x08,0x77,0x61,0xed,0x9c,0x61,0xad,0x4d,0xef,0xd0,0x77,0xe9,0xee,0x61,0x3e,0x03,0x4f,0x2a,0xdd,0xb4, - 0xa3,0x7b,0xf3,0x57,0xb0,0x82,0x12,0x43,0x1e,0x0e,0x7b,0x10,0xf0,0x2d,0x78,0x54,0x0d,0x87,0xdc,0x42, - 0x20,0x6d,0x9d,0x49,0x49,0xfb,0xba,0x04,0x51,0x19,0xf6,0x1b,0x3f,0x59,0x0e,0x42,0xf7,0xad,0x89,0x76, - 0x5c,0xd9,0xa2,0xc0,0xef,0xb6,0xd4,0x91,0xc8,0xce,0xee,0x07,0xc1,0x7d,0x36,0x24,0xbf,0x6f,0x03,0x96, - 0xde,0xa7,0x45,0xde,0xee,0x29,0x10,0xb9,0xad,0x9d,0x5e,0x5c,0xad,0x8a,0x2f,0x58,0xee,0x4e,0x90,0x8c, - 0x38,0x34,0x6b,0x95,0xd7,0xa6,0x8b,0x16,0x39,0x51,0x17,0x95,0x36,0x3f,0x92,0x22,0xc5,0x3c,0x2f,0xb2, - 0x7d,0xdb,0xb2,0x14,0x97,0xd4,0x23,0x9d,0xc8,0x16,0x95,0x9d,0x2b,0x6f,0x08,0x8e,0x17,0xa5,0xef,0x21, - 0x93,0x25,0x0b,0x38,0xb4,0x31,0x40,0x52,0x4f,0x47,0xdb,0x30,0xa9,0x3c,0xf3,0x5d,0xa6,0x68,0x2c,0xcc, - 0x71,0xc5,0x0d,0xed,0x93,0xc2,0x0a,0xc0,0x46,0xcd,0xa3,0xc2,0x44,0x1e,0xa8,0x12,0xf8,0x2d,0x35,0xb2, - 0x59,0x54,0x29,0xcf,0x42,0x4e,0xbd,0x2a,0xb5,0xb8,0x4a,0x4b,0xfd,0x2f,0xd2,0xfa,0x49,0xce,0x48,0x0f, - 0x06,0xae,0x2a,0xf4,0xef,0x54,0xb2,0x70,0xac,0xef,0x07,0xfa,0x49,0xa2,0xdc,0xf8,0x61,0xef,0xdd,0x7d, - 0x19,0x5d,0x95,0x00,0x47,0x81,0x34,0x12,0xa6,0xc3,0x08,0xd7,0x7d,0xc3,0x70,0x02,0x57,0x72,0x45,0xfa, - 0x72,0x08,0x83,0x62,0x7e,0x2a,0xa1,0xe1,0x21,0x06,0xd5,0xf5,0xcd,0xcf,0xfe,0xc0,0xd9,0x34,0x8c,0x9f, - 0x39,0xf8,0x00,0x5b,0x32,0x4b,0x54,0x52,0x1c,0x18,0x62,0x74,0x7c,0xa0,0xb4,0x72,0xba,0x59,0xcc,0x03, - 0x89,0x7f,0x76,0x85,0xf8,0x9d,0xd2,0x94,0xa7,0xb8,0x66,0x1a,0x7d,0x42,0xd3,0x32,0xe7,0x1c,0x29,0x04, - 0x7a,0xef,0xa6,0x98,0x0c,0x06,0x6c,0x87,0xe8,0xa2,0x5a,0x72,0xae,0x42,0xb4,0x22,0x15,0xdc,0x63,0xcb, - 0xbb,0x80,0xed,0xbb,0xa1,0xcb,0x77,0x10,0x32,0x18,0x9c,0x96,0xf6,0xc2,0x5b,0x83,0xde,0x84,0xd9,0x22, - 0xa2,0x9b,0x4d,0x37,0x11,0x6b,0x2b,0x66,0x60,0xac,0xfc,0x80,0xb2,0xcf,0xfa,0x07,0xfc,0x4c,0x06,0x5c, - 0xe8,0xf2,0xb4,0xfc,0xbb,0xfe,0xe5,0x8c,0xab,0xa4,0x35,0x7b,0xaf,0x64,0xf6,0xf4,0x1a,0xbd,0xe1,0xb0, - 0x0e,0xc4,0x50,0xad,0x8e,0x0f,0x4f,0x46,0x73,0x3d,0xd3,0x56,0xce,0x67,0xfd,0xba,0xf6,0x0e,0x31,0x92, - 0x69,0x52,0x11,0xc3,0x97,0x13,0x7f,0x57,0x12,0x4f,0x37,0x87,0x8c,0x4b,0x85,0xe1,0x2c,0xc9,0xa2,0x96, - 0x8f,0x1e,0xe2,0xf4,0xd8,0xd7,0x2d,0x13,0xd1,0xa9,0xd2,0x1e,0x51,0xf1,0x52,0xdb,0x76,0x5e,0xc0,0xb2, - 0x25,0xbe,0x54,0xd6,0x0c,0x31,0x5e,0x6c,0x38,0xc8,0x86,0xb1,0x1d,0xe4,0x09,0xd0,0xf3,0xd1,0x31,0xe6, - 0x2b,0xf9,0xd6,0x1d,0x7f,0x76,0x83,0x05,0x84,0xd8,0x58,0xd5,0xea,0xb3,0x53,0x3d,0x18,0xe8,0xb9,0x36, - 0x5e,0x26,0x5a,0x6d,0xad,0x96,0xea,0x42,0x51,0x67,0x36,0x2d,0x7e,0xea,0x67,0x77,0x9a,0x33,0x50,0x27, - 0xc6,0x52,0x91,0x20,0x39,0x88,0xfa,0xcc,0xd7,0x8c,0x5d,0xb2,0x4c,0xf4,0x6b,0x1d,0xf2,0xc9,0xf0,0x2b, - 0xac,0xc4,0xa5,0x6f,0x93,0xe2,0xf8,0xe1,0x89,0xd6,0x1f,0x19,0x8a,0x8b,0x96,0x42,0xa7,0xd8,0x55,0x7b, - 0x6b,0x80,0x3a,0xd7,0xf5,0xbd,0x70,0x11,0x80,0xcb,0x31,0xe2,0x38,0xcd,0xf3,0xb4,0xa6,0x5c,0xf3,0xc1, - 0x0b,0xf9,0xa0,0x1a,0xe6,0x44,0xd3,0xa4,0x44,0x3b,0x1e,0x26,0xa5,0xab,0x57,0x95,0xd4,0x2a,0x5b,0x60, - 0x98,0xec,0x87,0x49,0xe9,0x3a,0x82,0xe0,0x2b,0xa6,0x46,0x55,0xf1,0xb5,0x78,0x05,0xc7,0x2c,0x68,0x3b, - 0x92,0xfc,0xdb,0xaa,0x64,0xf2,0xd9,0xd3,0x92,0xb0,0x02,0xd3,0x65,0xcc,0xa3,0xf8,0x09,0x1c,0x7a,0xb5, - 0x9d,0x64,0xf4,0x3c,0x9e,0x35,0xb4,0x2f,0x74,0xfe,0xae,0x69,0xaf,0x1a,0x9f,0x9b,0x26,0xba,0x7d,0x66, - 0x84,0x95,0x9e,0xbd,0x73,0x97,0x19,0x1c,0x07,0x26,0xda,0x53,0x7c,0x1b,0xc4,0x41,0x89,0x1f,0x17,0xf8, - 0x41,0xdf,0xb5,0xb7,0x97,0xc0,0xe0,0x2f,0xdf,0xbb,0x1f,0xc4,0xf7,0xf7,0x32,0xc4,0x0b,0x62,0xb7,0x72, - 0xd8,0x7d,0xbb,0xfb,0xa4,0x3d,0x91,0x37,0x1b,0x2e,0x3a,0xb3,0xe8,0xc2,0x52,0xb5,0xf6,0x7e,0x52,0x2b, - 0xc9,0x24,0xbe,0x75,0x13,0x6c,0x07,0xae,0xb6,0x17,0x9d,0x05,0xc7,0x30,0x2d,0x6f,0x0b,0xe7,0x9d,0x4e, - 0x54,0x5f,0x47,0x62,0x3c,0x01,0x15,0x34,0x93,0x27,0x81,0x3e,0xf9,0xbe,0x2b,0x0d,0xd1,0x2c,0x8e,0x63, - 0x44,0xfb,0x7c,0xdf,0x49,0x62,0x00,0x75,0x46,0xbd,0xc6,0xca,0x21,0x20,0x42,0x0f,0x7f,0x52,0xe3,0xbb, - 0xca,0x22,0x24,0x0e,0x4b,0xe9,0x15,0xa6,0x6f,0xff,0xcd,0x21,0x82,0xca,0xbd,0x84,0x1f,0xd4,0xb7,0x25, - 0x6b,0xcd,0x53,0x63,0xec,0xeb,0x02,0x65,0x67,0xd7,0xa9,0x44,0x4b,0xa9,0x4d,0x20,0x70,0xaf,0xa6,0x11, - 0x55,0xf0,0x73,0x19,0x1e,0x07,0x93,0xa6,0x9a,0xd3,0x20,0xd8,0x6a,0x98,0x7e,0xd3,0x39,0xfe,0x2e,0xb2, - 0x26,0x0d,0x4e,0xee,0xb6,0x69,0xdf,0x9d,0x30,0xc9,0x78,0x87,0x49,0xbc,0x46,0xaf,0xc3,0x00,0x66,0xfa, - 0xdf,0x13,0x11,0x66,0x27,0x6b,0xbd,0x06,0xaf,0x28,0xe6,0x28,0xb6,0xc3,0xc6,0xc5,0xd8,0x5a,0x0e,0x85, - 0xf9,0x1e,0x61,0x79,0x58,0x79,0xdc,0x3f,0x5b,0x35,0x4d,0x59,0xdc,0xc7,0x34,0x48,0xa5,0x08,0x2b,0xb0, - 0x97,0x72,0xc3,0x4d,0x61,0xaa,0xa5,0x34,0x5a,0x04,0xab,0xfa,0xa3,0x03,0x7e,0x84,0xed,0x28,0x35,0x95, - 0x5e,0xdc,0xcd,0x50,0x57,0x72,0x0b,0xea,0x3a,0x2c,0xc6,0x7a,0x4d,0xf6,0x02,0x93,0x11,0xc4,0xd5,0x98, - 0xcd,0x67,0x4d,0x46,0xe4,0x72,0xcc,0x02,0x32,0xa4,0x99,0xb6,0xd6,0xeb,0xca,0xd4,0x12,0xf7,0x35,0x63, - 0x2b,0xf2,0xa1,0xb3,0xf1,0xce,0x63,0x0e,0xcb,0xf3,0x8a,0x8f,0x87,0xc3,0x83,0xc8,0x8f,0xc9,0x6f,0xa6, - 0x51,0x87,0xbf,0x26,0xc2,0x91,0xaa,0xd3,0x70,0xf6,0x6d,0xe9,0x42,0x25,0x07,0xa7,0x9f,0xc2,0x76,0x51, - 0x62,0x1e,0x3a,0x88,0x38,0xe3,0x8d,0xd3,0x4d,0x2d,0x90,0xea,0x3e,0xf5,0xcd,0x43,0x8b,0x96,0xe1,0x14, - 0xc2,0xfb,0xfc,0x13,0x11,0x80,0x8d,0xc9,0xaa,0x04,0x93,0x8b,0x03,0x98,0x18,0x72,0x10,0x59,0xbb,0x3f, - 0xa0,0xc5,0x1f,0x57,0x62,0x17,0x15,0xdf,0x3f,0x9d,0xe8,0xe0,0x06,0xf7,0x79,0xda,0x54,0x27,0x36,0x73, - 0x5c,0x74,0xa3,0x35,0x7b,0x08,0xac,0x72,0x7b,0xd8,0xd8,0x1c,0x41,0xbd,0xc1,0x04,0xbb,0xbc,0xbe,0xaf, - 0xca,0x49,0x56,0xd7,0xd9,0xd4,0x2c,0xbd,0x36,0xa0,0x91,0xf8,0x3a,0xe2,0x47,0xb0,0x2b,0x0f,0x5b,0x45, - 0x53,0xbf,0x28,0xed,0x37,0x2e,0x49,0xbf,0x5b,0x05,0xdb,0x86,0xa1,0x5e,0xb0,0x10,0x94,0x66,0x97,0x1a, - 0xc6,0xc5,0xec,0x02,0x60,0xd1,0xf9,0x18,0xb3,0xed,0xbd,0xc7,0xb4,0xb3,0x6b,0xaf,0xc0,0xc3,0x4e,0x81, - 0x87,0xf0,0x51,0xb3,0xec,0x9a,0xdf,0x0d,0x26,0x87,0x4e,0xe7,0xa1,0xb6,0xfd,0x76,0x04,0x2f,0x8c,0xb5, - 0x53,0x04,0xbd,0xf2,0xa6,0x5e,0x4f,0x19,0x4d,0x35,0xad,0xa5,0x37,0xbe,0x7c,0xc6,0xc3,0xcb,0x67,0x5b, - 0xa3,0xab,0xdd,0x34,0x38,0x02,0x7c,0xb7,0x43,0x80,0x0b,0xe1,0xde,0xc7,0x81,0xf4,0xcc,0x91,0xb3,0x37, - 0x30,0xcc,0xc9,0x7a,0xed,0x51,0xfa,0x84,0x11,0x57,0x85,0xd1,0xe9,0x07,0xa7,0x6c,0xaf,0xbc,0x17,0x56, - 0x3c,0x1f,0x95,0xc4,0xb2,0x73,0x81,0xd1,0x83,0x5b,0x4c,0x92,0x04,0x47,0xbf,0xc3,0xfd,0xe6,0xaa,0xd0, - 0x36,0x15,0x34,0xea,0x18,0xa5,0x45,0x08,0xd6,0x42,0xcf,0x9b,0x80,0x57,0xc7,0x1a,0xef,0x6b,0x17,0x86, - 0xc0,0xec,0xa0,0x5d,0xdc,0x66,0x9a,0xd2,0x56,0x86,0xa7,0x38,0xe1,0x1e,0xe6,0x11,0x1c,0x06,0x41,0xd7, - 0x10,0x28,0x4b,0xde,0xc2,0x12,0x36,0x49,0xa6,0x0c,0x6f,0xab,0x94,0xc6,0xc2,0xd6,0xd5,0x32,0x97,0x3c, - 0x7e,0x99,0x78,0x17,0x00,0xd6,0x27,0x3f,0xda,0xa2,0xd1,0x36,0xbb,0x31,0x46,0xbd,0xf1,0x8a,0xf5,0xc1, - 0x10,0x85,0xd9,0x4d,0x4e,0x3b,0x49,0xbb,0x3d,0x4d,0x44,0x59,0xdc,0x9a,0x35,0xdd,0xbc,0x6b,0x50,0x71, - 0x57,0x2c,0x9d,0x09,0x1e,0x9c,0x29,0xb6,0xb1,0x89,0x82,0x66,0x17,0xa1,0xcb,0xf0,0xd8,0x1e,0xa0,0x9f, - 0xe8,0x41,0x91,0xa0,0xf5,0xfb,0x98,0x5c,0x5a,0xf3,0xbd,0x80,0x9e,0x5a,0x4d,0x87,0x39,0xbf,0xe4,0xb6, - 0x1f,0xed,0x4b,0x38,0x1b,0x27,0xfa,0x70,0xd7,0x27,0x10,0x6f,0x53,0x24,0x7e,0xce,0x71,0x79,0xc2,0x38, - 0xc3,0x39,0xc9,0xeb,0x07,0x0d,0x2d,0x30,0x99,0xe1,0x9e,0x7b,0x48,0x6a,0xeb,0xc2,0x9e,0x0e,0x5a,0xc0, - 0xde,0x69,0xba,0x18,0x46,0xce,0x9d,0x5e,0xcc,0xe5,0xb6,0x4f,0x80,0x88,0xf0,0x0b,0x9a,0xf1,0x70,0xfb, - 0x7b,0x13,0x7d,0x2f,0xda,0xb3,0x78,0x49,0xe2,0xa1,0x04,0x4a,0x3c,0xad,0xed,0x34,0x58,0x2f,0x0a,0x1f, - 0x93,0xb5,0xb0,0x91,0xc4,0x60,0xff,0x53,0xdb,0xb3,0xd5,0x96,0x2f,0x60,0x08,0x02,0x96,0xb0,0x68,0x9d, - 0x71,0x35,0xd2,0xa6,0xbc,0x90,0x31,0xdc,0x12,0x2f,0x0e,0xcc,0x6e,0x1c,0x5a,0xac,0xa3,0xad,0x3d,0xbf, - 0xc6,0x01,0x11,0xe1,0xde,0xc8,0xd9,0xab,0x0e,0x5d,0x7c,0x35,0xdd,0xdb,0xe3,0xd7,0x02,0x63,0x89,0x75, - 0x81,0x4d,0x1b,0xd1,0x7a,0xee,0x04,0xdb,0xd1,0xb7,0x5b,0x03,0xc2,0x40,0x1d,0x75,0x16,0x5a,0xe3,0x7e, - 0x4f,0xab,0xe8,0xf6,0x74,0x35,0xae,0xe4,0xfc,0x90,0xd9,0x1a,0xa7,0xfa,0x38,0xd1,0xc7,0x0a,0xdf,0x77, - 0x62,0x44,0x35,0xf6,0x36,0x64,0x02,0x90,0x53,0xa2,0x40,0x03,0x6d,0xa7,0xd0,0x98,0xe8,0x85,0x8e,0xbe, - 0xc8,0xae,0x97,0x7c,0xb8,0xa7,0xe2,0x1f,0x11,0x8d,0x69,0x5b,0x13,0xe3,0x79,0x36,0x2f,0x27,0x9f,0x34, - 0xf6,0xb0,0x1d,0xa3,0x45,0xf4,0x32,0x37,0x1d,0xa2,0xd9,0x92,0xbb,0xdd,0x7b,0x6a,0x26,0x2d,0x14,0x48, - 0xe8,0x4b,0x55,0x49,0x3f,0x72,0xec,0xde,0x93,0x7d,0xab,0xc3,0x5a,0x68,0x07,0x5f,0x2f,0x8a,0x44,0x7c, - 0x1c,0xb0,0xb3,0xaf,0x09,0x78,0xd1,0x77,0x6f,0xd6,0x6d,0x69,0xc2,0xec,0x6b,0xe9,0xe3,0xaa,0x75,0x15, - 0xf7,0xb1,0x44,0xb7,0x38,0x19,0xad,0xc0,0x6a,0x27,0xbb,0xbb,0x2b,0xc4,0xca,0xa6,0xbd,0x71,0x95,0x56, - 0xb8,0x3b,0x24,0x15,0x67,0xde,0x03,0x55,0x13,0xd9,0x2d,0x8c,0x20,0x11,0xdf,0x3a,0x24,0xc6,0xfd,0xc0, - 0xf2,0x84,0x9c,0xa8,0x5f,0xe0,0x7e,0xb3,0x17,0x96,0x82,0x6f,0x09,0xf6,0x85,0x06,0xc2,0xb1,0x64,0x69, - 0x27,0xdf,0xff,0x68,0x8b,0xf8,0xd0,0xc5,0x22,0x41,0x21,0xe5,0x90,0xce,0x98,0xf1,0x7d,0xe6,0x35,0xb9, - 0x15,0x7a,0x40,0x0b,0x26,0xd7,0x12,0xae,0xd4,0x92,0xe3,0x44,0x7b,0x2a,0x75,0xb4,0xb2,0xec,0xc3,0x8d, - 0x72,0x91,0x95,0x26,0xe3,0xba,0xcd,0x32,0x9c,0xd8,0x08,0x4f,0x1a,0x75,0xf3,0xc5,0x2a,0x7b,0x49,0x05, - 0xc8,0x8f,0x94,0x16,0x10,0x22,0x05,0xc2,0x44,0x3e,0x5e,0xc4,0x9f,0x26,0x90,0x90,0x00,0x33,0x9d,0x49, - 0x4f,0x9c,0x49,0xbf,0x5e,0x26,0xef,0x54,0x57,0x82,0x5f,0x63,0xa0,0x08,0x29,0xb1,0x64,0x4f,0x48,0x64, - 0xd2,0x93,0x97,0xee,0x71,0xcb,0xc8,0xbd,0x0f,0xb1,0x2b,0xfb,0x3e,0x01,0xf9,0xd2,0x62,0xdc,0x77,0xa2, - 0x28,0x71,0xc0,0x15,0xa5,0xde,0xb7,0x59,0xe1,0xb0,0x13,0xfb,0xe2,0xd2,0xc7,0x7e,0x16,0xb1,0x4f,0x61, - 0xa6,0x51,0x89,0x3e,0x5f,0xb9,0x75,0x7e,0x26,0x16,0x6c,0x6f,0x56,0x98,0x1c,0x3d,0x6f,0x4a,0x7b,0xa5, - 0xea,0x82,0xc6,0x17,0xc1,0x96,0x95,0xa8,0xc3,0xb6,0xac,0xb8,0x33,0x4a,0x61,0x30,0x7d,0x3a,0x41,0xed, - 0x1e,0x1a,0x48,0x33,0x93,0xe3,0x7b,0x46,0x7a,0xe5,0xfd,0x64,0xc5,0xb8,0xbb,0xf5,0x95,0x23,0x45,0x84, - 0x06,0x34,0xa2,0x41,0xdd,0x3d,0xbe,0x88,0x26,0xd8,0xf3,0xcb,0xd9,0x2f,0x5d,0x80,0x57,0x29,0xcc,0x5a, - 0x43,0x2f,0x15,0x57,0x32,0x69,0x81,0xa8,0x24,0xc4,0xa7,0x2b,0x62,0x8e,0x5a,0xa1,0x60,0xd2,0xbb,0xf8, - 0x9d,0x9d,0x2e,0x62,0xb3,0x19,0x85,0xa6,0x2c,0x8b,0x16,0x49,0xe7,0x62,0x9d,0xb5,0x08,0xca,0x42,0x13, - 0x94,0x85,0x25,0x28,0x8b,0x0e,0x41,0x59,0x74,0x09,0xca,0xa2,0x43,0x50,0x16,0xbd,0x04,0x65,0xf1,0x9f, - 0x13,0x94,0x66,0x40,0x9a,0xa2,0x94,0x97,0x38,0xb8,0x95,0xdd,0x80,0xf9,0x9d,0x15,0xb1,0x57,0x83,0x76, - 0xd6,0x28,0xdc,0xe2,0x44,0xad,0xfa,0xc2,0x96,0x94,0x97,0x4d,0x66,0xc6,0xd4,0xe9,0x19,0xff,0xd9,0x0b, - 0x08,0x23,0x87,0x2b,0x0e,0xa2,0x1c,0xb5,0x2e,0xae,0x06,0x76,0x76,0x6f,0x71,0x5f,0x11,0x1c,0x0e,0x7c, - 0xfd,0x2b,0x75,0x75,0xc3,0x94,0x58,0x8a,0xfb,0xec,0xeb,0x2e,0xa7,0x4e,0x07,0x7b,0x04,0x90,0xd0,0x71, - 0xd3,0x19,0x72,0xf8,0x39,0x36,0xde,0x93,0x7b,0x99,0x1f,0x19,0x9d,0x86,0xe8,0x1c,0x26,0x6d,0x96,0x49, - 0xda,0x0b,0xda,0x38,0xce,0x86,0x61,0xb7,0x89,0x76,0x77,0xb4,0x89,0x2c,0x63,0x90,0xd7,0x36,0xff,0xb3, - 0x01,0xdd,0x4c,0x24,0xd2,0x03,0x0e,0xff,0x73,0x28,0x71,0x08,0xd9,0x7e,0x4e,0xc3,0x4a,0xc1,0x11,0x7f, - 0x4a,0x13,0xec,0x50,0x13,0x89,0xed,0x36,0x62,0xc3,0xa6,0x79,0x82,0x0f,0x5a,0x74,0x1d,0x09,0x1c,0x1d, - 0xeb,0xb2,0x63,0xc7,0xc8,0xee,0xd2,0x3b,0x77,0x30,0xf9,0xad,0x4a,0x85,0xc1,0x6d,0xcf,0x34,0x1c,0x49, - 0x09,0xd1,0x12,0x56,0x2d,0x65,0x9e,0x4b,0xde,0x8e,0x1b,0xed,0x7d,0x61,0xa1,0xd3,0xb3,0xda,0x7e,0xa0, - 0xee,0x3d,0x50,0x81,0x26,0xd9,0xb3,0xe1,0x55,0x95,0x2e,0x9f,0x19,0x9f,0x03,0xf7,0x0a,0x9b,0x09,0x9d, - 0x6b,0xd5,0x9e,0x5e,0x11,0x9b,0xc6,0xe5,0xbc,0x60,0x4b,0xab,0x9e,0x50,0xff,0x6e,0xae,0x25,0x18,0xb9, - 0x1f,0x90,0x2b,0x4d,0x4a,0x6f,0x01,0x4a,0xcf,0xb3,0x89,0x77,0x75,0x8b,0x5f,0x4a,0xc5,0xfa,0x4b,0xd8, - 0x23,0xf3,0x6e,0x7c,0x5d,0x89,0xaf,0x20,0x34,0x16,0xa6,0x86,0x39,0xa0,0x8d,0xdb,0x09,0x23,0xee,0xe9, - 0x16,0x54,0x4f,0x4c,0x2b,0x1b,0x9f,0xb2,0xb2,0xdd,0xc9,0x35,0x3c,0x20,0xae,0x06,0x2e,0x97,0x42,0x88, - 0x4a,0x9f,0x44,0x81,0xf7,0x47,0x9b,0x64,0x29,0x17,0x59,0x1f,0xf2,0x9a,0x03,0x93,0x6b,0x32,0x27,0x02, - 0xc5,0xf8,0x50,0x53,0x8b,0xec,0xb4,0xf4,0x1f,0x57,0xdb,0xf8,0xb5,0xf2,0xea,0x1c,0x46,0xde,0xb5,0x72, - 0x61,0xc9,0xf6,0xaf,0x37,0x67,0xd9,0x53,0xcb,0x22,0xc5,0x1c,0xa7,0xb7,0xeb,0xba,0x65,0x4c,0x5d,0x85, - 0xe7,0xa4,0x31,0x8f,0x35,0x2d,0x1a,0x7f,0x61,0x93,0xa0,0x24,0xb6,0x11,0x00,0xc7,0x70,0x0e,0x57,0x20, - 0x06,0xb7,0xc8,0x83,0x4a,0x62,0x4d,0xb3,0x0f,0x75,0x1c,0x9c,0x5e,0x82,0xc0,0x7f,0x08,0x0d,0x43,0x01, - 0x29,0x39,0x57,0x5e,0x78,0x7b,0x37,0x9e,0x16,0x61,0x57,0x64,0x22,0x35,0x44,0x5c,0xc7,0x48,0x9b,0x69, - 0x1b,0xd5,0x09,0x04,0x87,0xe5,0x5d,0x87,0xc4,0xa4,0x57,0x6e,0xb8,0x17,0xd6,0x8c,0xb9,0x6b,0x50,0x2b, - 0x9e,0xf0,0x63,0xee,0x7f,0x6a,0x35,0x87,0x2c,0x1a,0x20,0xb4,0xd7,0xa3,0x2a,0x6b,0x33,0xe6,0x9e,0x2f, - 0x6d,0x47,0x27,0x4b,0xe7,0xc6,0x1f,0x5c,0xe4,0xdc,0x88,0xe8,0xb5,0x32,0xd4,0x5f,0x7c,0x7f,0x6f,0x8a, - 0x10,0x85,0x46,0xfa,0xa5,0x02,0x77,0xb3,0xba,0x47,0x4d,0x79,0x4e,0xaa,0xad,0xe8,0x17,0x6e,0x73,0xff, - 0xb2,0x7a,0x78,0xf0,0xf0,0x1f,0x0f,0xce,0x55,0xf0,0x8b,0x3c,0x06,0x51,0x27,0xf3,0x6b,0x97,0xf9,0xb5, - 0x7f,0x41,0xe8,0x52,0xc3,0x02,0xbc,0xf7,0x0c,0x08,0x65,0x57,0x3b,0x2f,0xdc,0x2c,0xbb,0x8b,0x62,0x6d, - 0xdf,0x44,0xab,0x91,0x55,0x15,0x34,0xc8,0x84,0x95,0x63,0x38,0xfb,0x9e,0xfb,0x3e,0x9e,0x5e,0x3f,0xc3, - 0xeb,0x32,0xb9,0x2e,0xff,0x20,0x42,0x27,0x82,0xe1,0x6a,0xdd,0x53,0x92,0x8d,0xef,0x3f,0x4a,0x77,0x2e, - 0xa0,0x04,0x0e,0x7e,0x29,0x82,0x07,0xdf,0xdc,0x8f,0xef,0x3f,0xa2,0x52,0x84,0x35,0xf4,0xbb,0xba,0x2e, - 0x5d,0x79,0xe7,0x85,0x33,0xf8,0x3f,0x87,0x07,0xa3,0x20,0xfa,0xe6,0x80,0x11,0xe1,0xa5,0x0d,0x79,0x37, - 0xab,0xb2,0xec,0xf7,0x2c,0x44,0xa4,0xe5,0x85,0x4d,0x74,0x51,0xc5,0xcd,0x45,0xe0,0xea,0xbc,0x48,0x56, - 0x22,0x86,0x51,0x96,0x52,0x0c,0xd8,0x68,0xe6,0x86,0x73,0xe8,0x68,0x56,0xd4,0x2b,0xc5,0x25,0x9c,0xba, - 0x56,0x41,0x1d,0xaa,0xce,0x7a,0x6a,0xbe,0x48,0x6b,0xef,0xda,0x4b,0x75,0x5a,0x24,0x0f,0xf6,0xc3,0x5f, - 0xae,0x22,0x5a,0x8b,0xab,0x22,0x99,0xf6,0x86,0x34,0xb1,0xeb,0x76,0xea,0x9b,0x14,0xf8,0xb6,0x4d,0x63, - 0x18,0x4a,0xfc,0xb0,0x5c,0xc2,0x72,0xba,0x26,0x56,0x09,0x11,0x58,0x61,0xf2,0x7a,0x74,0x67,0x95,0x3a, - 0xb6,0xcd,0x41,0xd4,0xfe,0x70,0xcf,0xe9,0x1d,0xe9,0xf3,0x4f,0xd4,0xbb,0x5f,0x9e,0x84,0xc7,0x8f,0xf7, - 0xff,0x7d,0x82,0x1e,0x5e,0xff,0x61,0x0f,0x3f,0x15,0x2a,0xd8,0xbf,0x77,0x18,0xa0,0xda,0xd7,0xe5,0x95, - 0xa9,0x96,0xea,0x7a,0xba,0x2d,0x93,0xb1,0x0a,0x78,0xf5,0xb8,0xad,0x2f,0xb2,0xb1,0x5c,0xd4,0x47,0xe2, - 0xeb,0x40,0x54,0xef,0x73,0x9c,0xf5,0x6a,0xdf,0x5c,0xa6,0x18,0xa8,0x7b,0x45,0x72,0x1c,0x78,0x6b,0xe2, - 0x78,0xb8,0xc0,0x5c,0x79,0x18,0x9c,0xa8,0x77,0x28,0x25,0xf6,0x97,0x4f,0x19,0xc6,0x28,0x53,0x80,0x8d, - 0xaa,0xd0,0x19,0x6c,0xd4,0x0d,0x39,0xbc,0x18,0x77,0xdb,0xf4,0x1f,0x74,0x78,0x4a,0x7b,0xd7,0xae,0xc9, - 0x78,0x26,0x91,0x88,0xd1,0xa6,0x3c,0x71,0x9e,0xbb,0xa3,0x19,0xe9,0xfe,0x9b,0xdc,0x20,0x24,0x3e,0xe7, - 0x53,0xea,0xd4,0xf3,0x22,0xb9,0x15,0x62,0xe2,0x4d,0x46,0x84,0x33,0x81,0x1a,0x15,0x3c,0xcf,0x89,0xf9, - 0xec,0xbb,0x61,0xb5,0xce,0xe7,0x30,0xcc,0x20,0xba,0x9e,0xa0,0x68,0xba,0xe2,0x49,0x3a,0xca,0x97,0x48, - 0x30,0xd7,0xfd,0x72,0x66,0x56,0x41,0xb4,0x03,0xfb,0x2a,0xbc,0x72,0x9b,0x2f,0xe5,0x1e,0x58,0xf6,0xde, - 0x50,0xa0,0xee,0x5b,0x09,0xf9,0x79,0x41,0x83,0x99,0xea,0x5d,0x47,0xf4,0xc8,0x89,0x32,0x97,0x3f,0xf6, - 0x76,0xa4,0x15,0xee,0x3e,0x7e,0x5a,0x78,0x09,0x70,0xe5,0x92,0x94,0x1f,0x8a,0x4f,0x45,0x79,0x55,0xe8, - 0x4a,0x91,0xd6,0x89,0x9e,0x1f,0x9f,0xab,0xbe,0xe0,0xf8,0xf1,0xe3,0x42,0x79,0x97,0x30,0xe2,0xc3,0xd3, - 0x79,0x3e,0xcb,0x26,0x37,0x93,0x79,0x86,0x7b,0xa7,0xa9,0x4f,0xc5,0x46,0xbd,0x27,0x88,0x3c,0xfe,0x9f, - 0x5f,0xae,0x86,0xf7,0x4e,0x1e,0xa8,0x5f,0x21,0x2b,0x3b,0xe5,0xbd,0x75,0x7a,0x4a,0xe4,0xd8,0xed,0x46, - 0x3d,0xa3,0x24,0x47,0xa6,0xda,0x2b,0xfc,0xc4,0xb3,0x47,0xbd,0xea,0xcf,0xfd,0xe9,0xe7,0xe7,0xc5,0x65, - 0x5e,0x95,0x85,0xbe,0x0f,0x7d,0xb7,0x95,0x00,0x49,0x1e,0xf7,0x54,0xbd,0x2e,0x92,0x57,0xc5,0x60,0xd0, - 0x9f,0xdb,0x06,0x78,0xf5,0xa2,0x48,0x9e,0x51,0x59,0xed,0x52,0x54,0xa4,0x97,0xf9,0x39,0x38,0x85,0xe1, - 0x8a,0x26,0xec,0xf1,0x39,0x5f,0x38,0xd5,0x2a,0xff,0xb6,0x48,0x5e,0x50,0xf9,0x07,0x8b,0x3a,0xcf,0xd6, - 0x84,0x7b,0xa6,0x54,0x44,0xdb,0x84,0xbd,0x28,0x22,0xf5,0x46,0xb2,0x5f,0x78,0x1e,0x8d,0x28,0xb9,0xf3, - 0xf5,0xf0,0x00,0xd8,0x4d,0x7d,0xd8,0xce,0xcf,0xa6,0xe7,0xd9,0x03,0xce,0xfc,0x69,0x3b,0x93,0xe0,0xa0, - 0xa2,0x73,0x0e,0xd9,0x74,0x9a,0x99,0x37,0x5c,0xb9,0x51,0xa8,0x27,0xba,0x2b,0xf9,0xf2,0x82,0xf6,0xd6, - 0x3a,0x5f,0xa6,0x53,0xfa,0x53,0xd2,0x9f,0xb2,0x76,0x5d,0x82,0x53,0x7b,0x59,0xeb,0x4f,0x7e,0x2c,0x92, - 0x90,0xbf,0x99,0x5c,0x54,0x44,0xa2,0xfc,0xf2,0xe0,0x97,0xe9,0x9e,0xd7,0xfb,0xdb,0xcd,0x90,0x6f,0x1a, - 0x8e,0xd4,0x0f,0x50,0x62,0x83,0xaa,0x7a,0x56,0x70,0x94,0x4d,0x60,0xe5,0x97,0x6c,0x0f,0xd1,0x7f,0x2d, - 0xf3,0x4b,0xc2,0x27,0x3a,0x46,0x43,0xa0,0x6e,0x71,0xad,0xb3,0x47,0x09,0xa3,0xb2,0x83,0x0d,0xe1,0x16, - 0x3d,0xcb,0xdb,0x31,0x01,0xd1,0x83,0x7d,0xfb,0x3d,0x43,0xfd,0xcb,0x22,0xf2,0xdc,0xce,0xd1,0xfe,0xef, - 0x85,0xfa,0xad,0x50,0xdf,0x7b,0x28,0xa8,0x43,0x0b,0xd0,0x18,0x7f,0x87,0x61,0xcd,0xef,0xd4,0x1e,0x16, - 0xb5,0x0f,0x86,0xce,0xe7,0xe5,0x59,0x3a,0x07,0x4d,0xca,0x88,0x0a,0xf3,0x22,0x49,0xc0,0xfd,0xe0,0x05, - 0x87,0x59,0x71,0x39,0xfc,0xf1,0x87,0xe7,0xa7,0xcf,0xdf,0xfe,0x18,0xa9,0xdf,0x09,0x96,0xbf,0x6b,0x81, - 0xc8,0xe9,0x29,0x32,0x9f,0x3d,0xff,0xf1,0xe8,0xdd,0xbb,0xd7,0x1f,0x4f,0xbf,0x7d,0xfd,0xee,0xc9,0xe3, - 0xd7,0xa7,0x2f,0xdf,0xbd,0xfb,0xfe,0xf4,0x54,0x7d,0xdb,0x0f,0xb8,0x1f,0x6f,0x16,0x67,0x25,0x35,0xfa, - 0x29,0x94,0xa7,0xa8,0xbf,0x6f,0xfa,0x7a,0x66,0x94,0xeb,0xdc,0xd4,0x1c,0x8d,0x7e,0xbb,0xa3,0xe6,0x8c, - 0x8b,0xd3,0x4f,0x34,0xfe,0xd8,0x9e,0x75,0x8f,0xff,0xd6,0xc1,0xf4,0x71,0xc9,0x76,0x0f,0xc2,0xb0,0x21, - 0xb6,0xdb,0xc7,0x5f,0x0f,0xa6,0xdf,0xe5,0xa0,0x2d,0xba,0x2a,0x28,0x3b,0x95,0xff,0x0d,0x2d,0x6b,0xeb, - 0x1b,0xaf,0x20,0xd6,0xbf,0x55,0x96,0x90,0x45,0x5a,0xf9,0x0b,0xf9,0xd9,0x0e,0xaa,0x6c,0xa3,0x4d,0x0d, - 0x7e,0x2e,0x92,0x73,0xf5,0x6f,0x30,0x04,0xff,0x2a,0xb6,0x3e,0xcf,0xa7,0xc9,0xbf,0x89,0x6e,0xd3,0xd7, - 0x42,0xae,0xce,0xa0,0xc6,0xdf,0x8c,0xfe,0x55,0xb4,0xfb,0xf8,0x71,0x75,0xd6,0xd3,0x4d,0x2a,0xad,0xe3, - 0x0d,0x52,0x73,0xad,0x4f,0xc4,0x15,0xb2,0xfb,0x95,0xbe,0x39,0x15,0xdf,0xa9,0xad,0x4f,0xe4,0x52,0x70, - 0xbf,0x7f,0xde,0x9d,0xe1,0xf6,0x11,0x9d,0x79,0x96,0x2d,0x45,0xde,0xde,0xa9,0xa1,0x28,0x1b,0x22,0xac, - 0xfb,0xef,0x05,0x74,0x1d,0xb6,0x02,0x57,0xb6,0x93,0xca,0xba,0x76,0x52,0x7c,0xf1,0xfd,0xca,0xde,0x12, - 0x68,0x1b,0x66,0xc3,0x7d,0x9e,0xce,0x7f,0x16,0x88,0x0c,0x9d,0x55,0x9d,0x23,0xdf,0x19,0x65,0xe9,0xe9, - 0x81,0x33,0x8f,0xbe,0xd0,0x93,0xaf,0xb3,0xea,0xde,0xe7,0xa9,0x6f,0xea,0xe4,0x4b,0xb1,0xf4,0xdd,0x9e, - 0xd9,0x7c,0x61,0x2e,0xf6,0x2c,0x6a,0x73,0x23,0x89,0x7c,0xa5,0x6f,0xcf,0x2a,0xe5,0xd5,0x5d,0xa7,0xe5, - 0x17,0x72,0xd7,0x6a,0xb5,0x53,0xcd,0x1d,0x98,0x7e,0x2a,0x9b,0x31,0xc2,0xe0,0x18,0x54,0x9e,0x6e,0xa2, - 0x6d,0x78,0x6b,0x2e,0xf1,0xdc,0x32,0x71,0x6e,0xd5,0xa3,0xaf,0x23,0xf5,0x93,0xaa,0x14,0x0e,0x1c,0xfa, - 0x1e,0x52,0x7b,0x45,0xac,0x4d,0x70,0x9e,0x65,0xac,0x55,0x91,0x44,0x13,0x81,0xdd,0x15,0x7b,0x3a,0xa7, - 0x46,0xa7,0x5e,0x02,0xdf,0x2a,0x6b,0x5e,0x5b,0xe1,0xcc,0x6b,0x2f,0x8d,0x6f,0xd3,0xf3,0x7b,0xb3,0x1d, - 0x0f,0x1d,0xa6,0x46,0xaa,0xa9,0x92,0x5b,0x5e,0x8a,0x18,0xe1,0xfc,0x66,0xf9,0xf9,0x8a,0x6f,0x64,0x8f, - 0x81,0x74,0x47,0x8d,0x0e,0x59,0x02,0xeb,0xdf,0x1e,0xcc,0xd9,0x3f,0x2d,0x1b,0xd5,0x87,0xe6,0x89,0xf2, - 0x09,0xb3,0xca,0x41,0x29,0x35,0xac,0xf5,0x7a,0x9d,0x0b,0x57,0x0c,0x36,0xe6,0xeb,0x39,0x38,0x02,0x8b, - 0xb0,0x59,0x72,0x21,0x8e,0x33,0xa9,0xe3,0x55,0x47,0x54,0x1e,0x6f,0xd2,0x68,0xa8,0x1b,0x55,0x55,0x49, - 0xe7,0x02,0x21,0x95,0x57,0x1d,0xd4,0x50,0x51,0xe3,0xc7,0x01,0xf6,0x6c,0x80,0xe8,0xdd,0x4b,0xcf,0x5e, - 0x43,0xc7,0x7b,0x43,0x0a,0xc7,0x2f,0xc3,0x43,0x09,0xd7,0xb6,0xa0,0x82,0x73,0x41,0x9d,0xc1,0x8c,0xa3, - 0xc7,0x9c,0x4f,0x1b,0x03,0x56,0x30,0x23,0x38,0x0a,0xf3,0x4a,0x65,0xfd,0xb1,0xc0,0x8f,0x71,0x21,0x9a, - 0x0d,0x6d,0x64,0x65,0x12,0xfb,0xfb,0xa3,0x88,0xef,0xf2,0xb5,0x59,0xd6,0x26,0x1d,0x41,0xf1,0xb5,0x9b, - 0x2b,0x66,0x1c,0x5e,0x24,0xfa,0x1e,0x72,0x09,0x7e,0x31,0xd2,0x11,0x3a,0x33,0x89,0xd0,0x29,0xc3,0x8a, - 0xf9,0xd1,0x0c,0x26,0x46,0x68,0x7a,0x17,0x30,0xd3,0x0c,0x0d,0xc9,0x1a,0x11,0x3c,0xb4,0xa8,0x3c,0x87, - 0x3c,0xa6,0x3c,0xe3,0x33,0xce,0x5c,0x04,0xae,0x52,0xe0,0x25,0x8d,0x59,0x60,0x4f,0x05,0xce,0x43,0x8c, - 0xb2,0xed,0xd4,0x12,0x8c,0x78,0x5c,0x0f,0xd3,0x82,0x34,0x0d,0xf4,0x29,0x41,0x58,0x7d,0x51,0xae,0xe6, - 0x53,0xda,0xab,0x34,0x83,0x0d,0x60,0x4b,0xd5,0xd5,0x36,0x22,0x95,0xf0,0x2a,0x06,0x57,0x64,0x4b,0x5e, - 0xf3,0x7f,0x69,0xfc,0x70,0xb9,0x60,0x47,0x63,0xc2,0x56,0x47,0xa1,0x5c,0x14,0x4d,0x43,0x0f,0xf4,0x65, - 0xd3,0x5b,0x91,0x51,0xc2,0xf0,0xd7,0xb6,0x44,0x48,0x62,0x30,0x5a,0x4a,0x32,0x69,0x36,0x71,0x37,0xdb, - 0xbb,0x35,0xba,0x57,0x23,0xa4,0x1d,0x7e,0xb1,0x2e,0x47,0xa2,0xed,0x41,0xd8,0x6a,0xa2,0x4d,0x42,0x40, - 0x98,0x2a,0x2b,0x7d,0xa9,0x6f,0x6b,0xee,0x32,0x84,0x03,0x45,0xea,0x55,0x3a,0xff,0x84,0x03,0x62,0x54, - 0x7b,0xbb,0x80,0x53,0xef,0xb8,0x34,0xcb,0x97,0x94,0x67,0x91,0x96,0x31,0x34,0xbe,0x8c,0xe1,0x1e,0x7a, - 0x8e,0x80,0xf0,0x84,0xac,0xe9,0x87,0xfa,0xa2,0x5a,0x95,0xfb,0x1d,0xb9,0xeb,0x66,0xae,0x3e,0xdc,0xff, - 0x51,0xae,0xe3,0x92,0xdb,0x8f,0x27,0x15,0xae,0xc1,0xea,0x65,0x65,0x46,0x13,0x09,0xcc,0x72,0x07,0xd3, - 0xb7,0x53,0x8c,0x7f,0xd5,0x29,0x71,0xe3,0xfb,0xbd,0x5a,0x0a,0xa4,0x19,0x67,0xf1,0xaf,0x22,0xc5,0x21, - 0x2e,0xae,0x77,0x5b,0x4d,0xb0,0xa1,0x92,0x67,0x44,0x00,0xde,0xbb,0xbb,0xc0,0x5e,0x50,0x07,0x27,0xc9, - 0x2b,0x2a,0x44,0x3d,0x62,0x2a,0x74,0xeb,0x50,0x12,0x5d,0x31,0xe1,0x95,0x1f,0xd9,0x7c,0xda,0xde,0xa5, - 0xd7,0x98,0xa4,0xc6,0x26,0x59,0xfb,0xb6,0x9d,0x36,0xd2,0xc8,0xd6,0xeb,0x9e,0xf0,0xf9,0x8d,0x36,0x63, - 0x24,0xf2,0xf6,0x12,0x36,0x75,0x51,0xdb,0x5f,0xa4,0x31,0x92,0x4f,0x78,0x8b,0x40,0x29,0x02,0xa7,0x91, - 0x94,0x18,0x90,0xee,0x85,0x7f,0xac,0x47,0x3c,0x4e,0x4f,0x22,0xbe,0x43,0x29,0x49,0xc7,0xa9,0x71,0x7a, - 0xaf,0xa3,0xce,0x8d,0x78,0x75,0x34,0x26,0x4e,0xae,0x3e,0xb1,0x3b,0x76,0x83,0x71,0x4b,0xb8,0x53,0x7a, - 0x58,0x64,0xcd,0x45,0x39,0xe5,0x47,0xb9,0xee,0x1a,0x4f,0x13,0x1d,0xed,0xa0,0x7f,0x62,0xb6,0x87,0xd3, - 0x77,0x6d,0x80,0x21,0x98,0x79,0x98,0xaa,0x81,0x89,0x64,0xce,0x16,0x0f,0xa6,0xfd,0x4b,0x62,0x69,0x92, - 0x5f,0x45,0x5d,0x5a,0xa9,0x79,0xa5,0x66,0x5d,0x65,0x6d,0x97,0xe6,0x06,0x04,0x10,0xce,0x9e,0xe2,0x72, - 0x2b,0xe2,0x7d,0x71,0xae,0x71,0x1c,0x39,0x36,0x9f,0xe9,0xa1,0x59,0x89,0xca,0xb3,0x01,0xc5,0x41,0xbc, - 0xfa,0xef,0x51,0x34,0x6f,0x91,0x85,0x7e,0x5e,0xf8,0x03,0x22,0x8a,0x1b,0x43,0x3e,0x57,0xb1,0x75,0x2b, - 0x7c,0x43,0xe4,0x7b,0x7a,0x9e,0x3d,0xbd,0x48,0x8b,0x22,0x9b,0xaf,0xd7,0xbb,0x9f,0xc2,0x76,0x12,0xe8, - 0x6e,0x73,0x47,0x53,0x3b,0x87,0xd0,0x5a,0xdd,0x54,0x2b,0x9c,0xc1,0x7c,0x6d,0x53,0x3b,0xd7,0xca,0x99, - 0xc2,0x9e,0xfe,0x19,0x07,0xc0,0x1f,0xe0,0xec,0xe7,0x6c,0x4b,0x2e,0x2b,0x46,0x7d,0xed,0x8a,0xd4,0xa2, - 0x4a,0x2e,0x69,0x9a,0xe9,0x30,0x7a,0x38,0xd2,0x0f,0x87,0x43,0x70,0xa8,0x5c,0x2a,0xf9,0x41,0xb5,0xab, - 0x5f,0xa0,0x48,0xdd,0xe8,0x4a,0x20,0xec,0xd9,0xdc,0x31,0xa9,0x84,0xb3,0x17,0x79,0xcd,0xf3,0xa9,0x1f, - 0xb5,0x85,0xef,0x79,0x95,0xe8,0x04,0x73,0x11,0x30,0x91,0xd2,0xab,0x56,0x2b,0xe7,0x95,0xdc,0xaa,0xfc, - 0x43,0x44,0x3c,0x65,0xcb,0xa9,0xf1,0xdc,0x84,0x4d,0xa6,0x0f,0xe6,0x15,0x03,0xc5,0x4d,0xa5,0xce,0x64, - 0x68,0xc4,0x8c,0x9d,0x56,0x1d,0x41,0x93,0x16,0xa7,0x0e,0x02,0x1b,0x90,0x9a,0x85,0x57,0x84,0xa1,0x82, - 0xff,0xc7,0x56,0xeb,0x19,0xc0,0xc5,0xca,0xae,0xe2,0x2c,0xf2,0x0a,0x55,0x08,0x77,0x2b,0x85,0x8a,0xbb, - 0x0a,0x19,0x5b,0x3b,0x56,0xc7,0x67,0x49,0xd5,0x2a,0xa7,0x60,0x18,0x01,0xc1,0xe6,0x56,0xdc,0xc0,0x86, - 0xd9,0xcf,0x4a,0x6e,0xa3,0x3a,0x62,0x48,0xfd,0xc4,0x7f,0xaf,0x39,0x98,0xd4,0x53,0x86,0xda,0xc7,0xfc, - 0xf7,0x23,0xce,0x8e,0x7b,0xf8,0xf3,0xae,0x8f,0x2e,0x36,0xe7,0xdc,0x02,0xf1,0xdf,0xd9,0x33,0xe2,0x94, - 0xb1,0x15,0xd1,0x62,0x72,0x8e,0xb9,0x04,0x63,0x33,0xcc,0xc9,0xd5,0x38,0xd4,0x67,0x22,0x1d,0x8a,0xbb, - 0xbb,0x15,0x3f,0xc8,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0x92,0x10,0x0f,0x8d,0x93,0xf0,0xa0,0x19,0x1a, - 0xa2,0xfc,0x38,0x09,0x0f,0xfa,0x40,0xe2,0xca,0x5c,0x1d,0xee,0x53,0xef,0x0b,0x4d,0x65,0x4e,0xce,0x0c, - 0x95,0x4e,0x6c,0xd2,0xde,0xde,0x3d,0xdd,0x90,0xc4,0x7a,0xb3,0xd4,0xeb,0x34,0xa7,0x73,0xdf,0xd5,0x63, - 0x8f,0x71,0xb0,0x52,0x9a,0x98,0xcf,0xae,0x9e,0xf9,0xef,0x94,0xf9,0x8a,0x10,0x95,0x06,0x08,0xaf,0x48, - 0x37,0xd5,0x69,0x10,0x20,0x6e,0xef,0x89,0xa0,0xd0,0x8c,0xb9,0x1c,0xd1,0x20,0x0d,0xc6,0x12,0x87,0xfe, - 0x6b,0xc7,0xe7,0x67,0xf7,0x7d,0x21,0x62,0x0b,0x03,0xe6,0x70,0x58,0xd3,0x81,0x58,0x86,0x81,0xbb,0xe2, - 0xb2,0xe7,0xc0,0xec,0x39,0x84,0x5b,0xe8,0x73,0x94,0x25,0xfa,0x2c,0x76,0x77,0x4f,0x6d,0xd8,0xf5,0xca, - 0xeb,0x0f,0xee,0xff,0xeb,0xeb,0x5d,0x04,0xc7,0x7d,0xe5,0x51,0x42,0x76,0x2a,0x8d,0x89,0x99,0xf9,0x0c, - 0xe1,0x71,0xde,0xf9,0x27,0x7d,0x87,0x3e,0x97,0x4f,0x95,0xc7,0x38,0xfe,0x53,0xc7,0x1a,0xb2,0x49,0x91, - 0xc7,0xd2,0xc9,0x65,0xd5,0x0c,0xa5,0x89,0x06,0x50,0x0e,0xeb,0xd7,0x24,0x5e,0x3f,0xf5,0x55,0x74,0xca, - 0x8a,0x56,0x8c,0x31,0xb8,0x81,0xa0,0xa8,0xb9,0xa8,0xca,0x2b,0x3a,0x40,0x7e,0x62,0xad,0xf6,0x7d,0xf9, - 0x6c,0x87,0xa6,0x6e,0x47,0xc3,0xf4,0x0e,0x22,0xe6,0xb6,0x97,0x13,0x16,0x29,0xd1,0x86,0xf0,0x11,0x55, - 0x7e,0x73,0x6b,0xe1,0x72,0x30,0xf8,0x3d,0x6c,0x75,0x11,0xfd,0x2f,0x97,0xa1,0x9e,0x1e,0x48,0x00,0x8a, - 0xd5,0x12,0xb0,0xe4,0xa2,0xf5,0xd1,0x31,0xd2,0x9a,0x13,0xe1,0x90,0x7b,0x1c,0x76,0x32,0x82,0xe2,0x51, - 0x1b,0xd8,0x20,0xb3,0x08,0x61,0x12,0x17,0x76,0xd2,0x25,0x2a,0x59,0x0b,0x7a,0x0d,0xab,0xef,0x83,0xb0, - 0xfd,0xde,0x48,0x09,0x64,0xe3,0x46,0x9d,0x2e,0x79,0xfd,0xfe,0x0c,0x7b,0x8e,0x2d,0x63,0x20,0x2c,0x03, - 0x5f,0xa0,0xfb,0x6d,0x33,0xc1,0x62,0xf4,0xf5,0x9f,0xc6,0x85,0xcb,0x1a,0x9c,0xd4,0x41,0x8b,0x07,0xb4, - 0x6b,0x86,0xeb,0xee,0xc8,0xdf,0x7d,0xed,0x9a,0xb6,0x76,0x61,0x27,0x41,0xa4,0x2f,0x61,0xa4,0x5c,0x85, - 0xb5,0xb7,0xd3,0xfd,0x89,0x6a,0xef,0xf9,0xa2,0x3d,0x89,0x26,0x02,0x66,0x67,0x86,0x44,0xe2,0xb0,0x25, - 0x9d,0xe1,0x4d,0xe0,0x21,0x99,0x5d,0xbd,0x17,0x80,0xa5,0x24,0xbd,0x5a,0x51,0xe1,0xf8,0x8e,0xc5,0xd6, - 0x51,0xae,0x93,0xe4,0x1a,0x17,0x52,0x33,0xdc,0xf2,0x13,0x50,0xd7,0xe3,0x96,0xe9,0xdf,0x51,0x65,0xad, - 0x11,0x47,0xc5,0x37,0x1f,0xab,0xc1,0xe0,0xa8,0xe2,0x0b,0xd8,0xa6,0xdf,0x70,0x4d,0x51,0x41,0x0b,0x42, - 0x85,0x74,0x6c,0xeb,0x62,0xef,0x50,0x1d,0x40,0x86,0xc3,0x07,0xdd,0x91,0xb9,0x27,0x33,0x1a,0x3d,0xc5, - 0x2e,0xc7,0xc9,0x70,0xa0,0x5e,0x86,0xab,0x8c,0x9d,0xeb,0xb4,0xac,0xa6,0x35,0x5e,0xea,0xb6,0x3f,0x58, - 0x18,0xab,0x3b,0xcc,0x6a,0x62,0xa8,0xb8,0x6d,0xcf,0xb6,0x46,0xbb,0x5a,0x8e,0xc6,0x48,0x62,0xbd,0xce, - 0xf9,0x22,0x3c,0xbb,0x75,0x5a,0xd0,0x22,0x3e,0xa0,0xa6,0xd6,0x16,0x7f,0x25,0x5b,0xb6,0xd2,0x9b,0x6e, - 0x72,0x26,0xfb,0x5b,0x6f,0x7f,0xb6,0x75,0x75,0x22,0xd4,0x9f,0xc2,0xcc,0x30,0x61,0xea,0xbe,0xb1,0xd4, - 0xf8,0x53,0x3b,0x5b,0x2e,0x5e,0xbf,0xb3,0x85,0x4d,0x67,0x3a,0x32,0x74,0xb1,0x0f,0x00,0x3c,0x84,0xc8, - 0x13,0xe1,0x9f,0x38,0x10,0x63,0xb4,0x6a,0xd9,0x16,0xa1,0xfd,0xd1,0x0e,0xf3,0xb7,0x96,0xfe,0x3c,0xec, - 0x2e,0x55,0x43,0x70,0x3f,0x2d,0xaf,0x3e,0xbb,0x5e,0x7a,0x70,0x08,0x23,0xf4,0x24,0x23,0x9a,0xef,0x99, - 0xd1,0x1d,0xad,0xd7,0x76,0xe4,0xee,0x88,0x17,0xe6,0x75,0xf4,0x97,0x3a,0xd7,0xd9,0xdb,0xa3,0xd6,0x41, - 0x7c,0xb8,0x11,0x9e,0xed,0x39,0x11,0x26,0x59,0xb1,0x5a,0x64,0x46,0x96,0xa3,0x3a,0xb2,0x1d,0x28,0x6c, - 0xe2,0x73,0x55,0xe3,0xef,0x46,0xbd,0xa7,0xe2,0xd8,0x61,0x60,0xcc,0x47,0x4f,0xb3,0xf0,0xb1,0x27,0x6d, - 0x15,0x2e,0xff,0x57,0x2a,0x81,0xa0,0x02,0x3e,0xcf,0xac,0x29,0x1a,0x3e,0xfe,0xfa,0x63,0x06,0xf4,0x04, - 0x05,0xc8,0x6b,0x3b,0x25,0x51,0x5f,0xd8,0x80,0xa4,0xd5,0x80,0xbb,0xec,0x3b,0xb9,0x3d,0x65,0x39,0x8f, - 0x94,0xc6,0x08,0xb4,0x2f,0xf3,0x55,0xa5,0xb4,0xc3,0xfe,0x8f,0x05,0xab,0xa4,0xcd,0xeb,0xf3,0xf9,0x22, - 0xae,0x84,0x63,0x23,0x52,0x33,0x9b,0xe1,0x3d,0x97,0xf7,0x0d,0xbb,0x8b,0xb2,0x83,0x79,0xdb,0xbe,0xc7, - 0xc5,0x08,0x91,0x8b,0x6b,0xb4,0x61,0x4f,0x32,0xd1,0x0f,0xaa,0xee,0xda,0xf2,0x50,0x56,0x27,0x85,0x30, - 0x23,0x24,0x55,0xdb,0xfe,0xfb,0x88,0x68,0x40,0xac,0x1b,0xfc,0xec,0xa2,0xe1,0x3d,0x56,0x44,0x86,0x20, - 0x55,0x33,0xea,0x98,0x16,0xd4,0x79,0x17,0x36,0xe9,0xfe,0x21,0x34,0xc0,0xe3,0xb9,0xc5,0x05,0x88,0x20, - 0xfa,0x2b,0x80,0x32,0xe3,0x50,0x0e,0x61,0xa9,0x4a,0xda,0x44,0xca,0xbc,0xc7,0x6d,0x66,0xcb,0xb8,0xe4, - 0x6d,0x05,0x5a,0xd8,0xed,0x23,0x4d,0xa5,0xfe,0xdd,0xdd,0x30,0xc7,0xda,0x99,0xc8,0x09,0xc3,0x53,0x19, - 0xfa,0x53,0x2d,0xae,0x5d,0xaf,0x4d,0x78,0x56,0x67,0xda,0xc7,0xe5,0xbd,0x77,0xbe,0x69,0x41,0xdb,0x45, - 0xba,0x7a,0xbc,0x55,0x4a,0x2a,0xa2,0x74,0x25,0x3c,0x17,0x3f,0x9e,0xea,0x4b,0xb9,0x43,0xf3,0x68,0xc4, - 0xa9,0x7c,0xd1,0xd3,0x5d,0x5d,0x49,0x72,0x64,0xca,0xc5,0x1c,0xe6,0x86,0xa3,0xf6,0x35,0x67,0x97,0xb8, - 0x67,0xe3,0xde,0xdc,0x98,0x2f,0xe1,0x16,0x01,0x4a,0x6a,0x60,0xdc,0x62,0x2b,0x15,0x93,0xcb,0xdb,0xb4, - 0x1a,0xb6,0x84,0x54,0xc6,0x3c,0x58,0x98,0x77,0x04,0xc5,0x41,0x39,0x76,0x39,0xf1,0x86,0x44,0x69,0x50, - 0xb1,0x20,0x3c,0x36,0x22,0x21,0x8e,0x26,0x8f,0xec,0xd6,0x9d,0xb8,0x8b,0xb0,0xeb,0xe3,0x09,0xf1,0xfc, - 0xb8,0xa3,0xfd,0x6d,0xb8,0x52,0xdd,0xb6,0xe5,0xc6,0xbf,0xed,0xf6,0x0f,0xb6,0x4a,0x3e,0x63,0xf1,0xf9, - 0xc6,0x59,0x37,0xcf,0x93,0xed,0x09,0x76,0x71,0x2b,0x3e,0x93,0x87,0x0b,0x8b,0xe4,0x1e,0xcb,0x79,0xb4, - 0x29,0x79,0xe2,0xef,0xc1,0xb2,0x81,0x26,0x12,0xf7,0x2e,0x7a,0xa1,0xbc,0x29,0x83,0xa6,0x61,0xa2,0x15, - 0xe5,0xec,0x45,0xdf,0xf4,0x6c,0xdb,0x9e,0xad,0xac,0xbc,0x30,0x1b,0xf4,0x6c,0x57,0x01,0x10,0xe7,0x22, - 0x78,0x6c,0x94,0x84,0x0e,0xeb,0x3d,0xba,0xcd,0xfd,0x7b,0x45,0x5f,0xfd,0xa3,0xa2,0x15,0xad,0x2d,0xf4, - 0x5f,0x31,0x7b,0x1c,0x9d,0xc1,0x2a,0xfc,0xd9,0xc0,0xad,0xbd,0xa5,0xf8,0x62,0x69,0xf7,0xcd,0x98,0xef, - 0x71,0xaa,0x70,0x6d,0xb4,0xc5,0xa7,0xc4,0xe8,0xc9,0x91,0x5e,0x45,0x51,0x5c,0xa3,0xc2,0xdd,0x03,0x1d, - 0x8c,0xaa,0xda,0x28,0x6d,0x19,0x70,0x47,0xd7,0xbb,0xdd,0x6d,0x5a,0xd8,0x8f,0xdd,0x46,0xdb,0xfd,0xb1, - 0xf2,0x4a,0xb1,0x7a,0x15,0xd4,0x1a,0x16,0xd2,0x4d,0xb1,0x7c,0x78,0x55,0x38,0x9e,0x2b,0x45,0x8c,0x58, - 0xa6,0xf7,0x6c,0x8f,0x23,0x04,0xd4,0xf4,0xfa,0x7f,0x30,0xf2,0x64,0x9a,0xa3,0x8a,0x18,0x97,0x7b,0xdd, - 0x3b,0xdb,0x21,0xd9,0xc4,0x0d,0xa0,0x36,0x03,0x37,0x3d,0x8e,0x26,0xe8,0x41,0xcb,0xc2,0x41,0xc2,0xee, - 0xd3,0xe8,0xe3,0xc6,0xbb,0xa6,0x19,0xc8,0xe7,0x59,0xd5,0x12,0x55,0xfe,0x4a,0x7b,0xf6,0x55,0x95,0x1c, - 0xaa,0xd7,0x55,0xf2,0x50,0xbd,0x40,0xc3,0xef,0x7d,0xed,0x1d,0xdf,0xca,0xbd,0x2d,0xfb,0x3d,0x5d,0x11, - 0x6b,0xf9,0xa2,0x32,0x1a,0x38,0x9a,0xaa,0x1f,0x57,0x3c,0x4c,0x89,0x18,0xe7,0x21,0xff,0x71,0x1f,0x92, - 0x73,0xb0,0xde,0x91,0x5c,0x31,0x10,0x19,0xf1,0x8c,0x35,0xef,0xe4,0x30,0x24,0x3e,0x46,0x1a,0x99,0x88, - 0x11,0x94,0x2e,0x0f,0xaa,0xe8,0xa2,0x2c,0x9b,0x40,0x47,0x89,0xfb,0x9c,0x5e,0x90,0x23,0x27,0x0c,0x92, - 0xe5,0x49,0x8b,0xd1,0x7a,0xae,0x7f,0xf4,0xb6,0x45,0x92,0xb7,0xb6,0xc8,0xd6,0x2e,0xcd,0xbd,0x5d,0x53, - 0x6c,0xa3,0x3f,0xbb,0x8b,0x90,0x69,0xdb,0x39,0x4a,0xcf,0xe5,0x4e,0x5f,0xd5,0xe8,0x63,0x8b,0x43,0xcd, - 0xea,0xa3,0xcc,0xa4,0xa9,0x2d,0x47,0xc1,0x64,0xcb,0x31,0x27,0x12,0x9a,0x95,0xd0,0x93,0x50,0xdb,0xf7, - 0xdc,0x65,0xed,0xcf,0xb3,0xd0,0xe8,0xe3,0xcc,0xe4,0xd2,0x06,0xe3,0x50,0xde,0x22,0xb2,0x90,0x55,0x94, - 0xb6,0xde,0x57,0xe5,0xb5,0x08,0x06,0x74,0x72,0x9d,0xcd,0x67,0xf2,0xde,0xb7,0x75,0xec,0xc5,0x9f,0x85, - 0x5d,0x0c,0xa6,0xe0,0x11,0x0a,0xd3,0x86,0x02,0xd2,0xe1,0x42,0x0b,0x87,0xe3,0x4c,0xce,0x60,0x40,0x89, - 0x26,0xde,0x23,0x6c,0x61,0xcd,0x4b,0xe1,0x41,0xbf,0x51,0xd7,0x66,0x26,0x97,0xaf,0x64,0xba,0x57,0x95, - 0x25,0x3d,0x8d,0x0b,0x79,0x22,0x62,0x22,0x73,0xdf,0xb0,0xb6,0x53,0x2e,0x7c,0x86,0xd8,0xc7,0x93,0xdd, - 0x30,0x8d,0x91,0x79,0x1b,0xcf,0x24,0x74,0x37,0xed,0x21,0x97,0x72,0x48,0x4a,0xbf,0x5b,0xa4,0x60,0x53, - 0xda,0xc4,0x23,0x08,0x3b,0x2d,0x09,0xf2,0xe7,0x8b,0x4a,0xea,0xfb,0x8e,0xfa,0x2c,0x79,0x28,0x97,0x98, - 0x42,0x58,0xd5,0xb0,0xbd,0x44,0xa2,0xa3,0xa1,0x35,0x9f,0x3d,0x32,0x30,0x79,0x72,0x4f,0xd7,0x1d,0x0d, - 0xca,0x99,0x6d,0xc6,0x27,0xf0,0x72,0x54,0x65,0x59,0xed,0xf4,0xc2,0x9d,0x25,0xb4,0x07,0x7d,0x7b,0xc3, - 0xd1,0x0e,0x2c,0xb0,0x52,0x26,0x02,0xa7,0x7f,0x00,0x35,0x5d,0x50,0x97,0x0b,0x1f,0x7d,0x12,0x23,0xe1, - 0xa3,0xfd,0x74,0xd2,0x32,0xf7,0x56,0xfe,0x75,0xd7,0xef,0xbc,0x8b,0x60,0x11,0x21,0x62,0xc3,0x6b,0xe9, - 0xdb,0x20,0xfe,0xd9,0x6f,0x0f,0xb4,0x26,0x24,0x97,0x1e,0x73,0xc8,0x7c,0xa8,0x5e,0x02,0xa1,0x3d,0x02, - 0x88,0xf2,0x72,0x8f,0xe4,0x90,0x80,0x5b,0x52,0xc2,0xee,0xdf,0x40,0x35,0x5b,0xd3,0xed,0x4a,0x9b,0xd9, - 0x9e,0xc8,0xb6,0x52,0x6d,0x73,0xb6,0x9e,0xa0,0x2c,0xc9,0x45,0xe6,0x13,0x57,0x22,0xe7,0x87,0xf2,0x01, - 0x3e,0x2e,0x3d,0xb4,0x8c,0xf2,0x51,0x74,0xd3,0x13,0xa3,0x9c,0x8e,0x9b,0x7b,0x4c,0x10,0x34,0x12,0x20, - 0x57,0xf5,0x10,0x24,0x77,0x01,0x85,0xe1,0x67,0xe0,0x68,0xdf,0x85,0x80,0x51,0x63,0x3c,0x5e,0x3e,0x8f, - 0xb6,0x1d,0x22,0x64,0x24,0x52,0x59,0x92,0x4b,0xc7,0xeb,0xef,0xa1,0xba,0xb0,0x21,0x4b,0x04,0x1d,0x32, - 0x1b,0x7c,0xab,0xcb,0xa5,0x76,0x5d,0xb3,0x4d,0x97,0xb8,0x97,0x8a,0xf7,0x7e,0x69,0xc2,0xef,0xbe,0x85, - 0xe1,0x34,0x8d,0x9b,0xe6,0xee,0x5e,0xc8,0xf1,0x44,0x22,0xc5,0x9a,0x1b,0xc2,0x66,0x88,0x0b,0xad,0x02, - 0xe9,0x47,0x00,0x52,0xbb,0x13,0x47,0x20,0x4a,0xe1,0x6e,0xdf,0x33,0x53,0xec,0xfc,0xa4,0x49,0x4b,0x98, - 0x65,0x8b,0x46,0xa6,0x3b,0x07,0xdd,0xd1,0xbb,0x80,0x38,0x52,0x3b,0xdf,0xe6,0x22,0x82,0x0b,0xac,0xca, - 0xf8,0x3c,0x5e,0x86,0xa2,0xef,0x93,0x3b,0x9f,0x4d,0xbd,0x68,0x02,0x50,0x39,0xfe,0x1c,0x36,0x15,0xb8, - 0x2d,0x43,0xa4,0x9d,0xb2,0xd6,0xae,0x57,0x8c,0xda,0xee,0xa1,0x67,0x1e,0x9c,0x69,0xf6,0xbd,0x25,0x18, - 0xd0,0x79,0x2c,0x1f,0x50,0x6c,0xc4,0x19,0xe2,0x9a,0xad,0xdb,0x8d,0x5c,0xd2,0x43,0xe7,0x06,0xdf,0xf1, - 0x0c,0xb9,0x1a,0x5f,0xca,0xe6,0x04,0x2d,0x6d,0x78,0xe4,0xf5,0xee,0x90,0xc5,0x79,0xe2,0x43,0xb8,0x1e, - 0xaa,0xb2,0x11,0x19,0x47,0xb9,0x15,0x8d,0xa5,0x49,0x71,0x9c,0x9f,0xc0,0xd5,0x6c,0x46,0x2b,0x88,0x3b, - 0x5a,0xaf,0xf8,0xa6,0x56,0xbd,0x7c,0xe8,0x56,0x80,0x7b,0xb2,0x3f,0x0a,0x05,0x03,0x0e,0x2c,0xfe,0x18, - 0x9a,0x69,0x20,0xf8,0xc2,0x7e,0x6d,0xac,0x8a,0xec,0x2e,0x50,0x3d,0x35,0x05,0x7e,0x32,0xf0,0xde,0x87, - 0x77,0xab,0xe4,0x7b,0x84,0x4a,0x6f,0x45,0xdf,0x68,0x0c,0x77,0xd5,0xe0,0xee,0x98,0xde,0x99,0x2f,0xc7, - 0x65,0x5c,0x42,0xb6,0x31,0x82,0xe4,0x08,0xe3,0x61,0x01,0xf8,0x3b,0xf8,0x6d,0xd2,0x96,0x38,0x57,0xe7, - 0xc4,0xa6,0x13,0x11,0x9b,0x6b,0xd0,0x9c,0x61,0x6c,0x39,0xb3,0x7f,0x0c,0x0a,0xa6,0x6f,0x11,0xfb,0x78, - 0x51,0xff,0x60,0xd3,0xc2,0x0f,0xbb,0xa2,0xe0,0xbc,0xc3,0x3d,0xc2,0xeb,0x5e,0xc5,0x50,0xb6,0x1d,0xc6, - 0xa3,0xf2,0xef,0x82,0x83,0x7b,0x5c,0xe5,0xfb,0xc4,0x2d,0x85,0x8f,0xa8,0xf8,0xa6,0x48,0xe6,0x5e,0x4d, - 0x8a,0xe9,0x9a,0x98,0x05,0xf6,0xe1,0x8e,0x2d,0x18,0xd5,0x3a,0x44,0x1d,0x0f,0xec,0x54,0xbf,0x4e,0xfb, - 0x41,0xb5,0x11,0x88,0x04,0x94,0x6d,0x23,0x50,0x63,0x00,0xac,0x29,0x11,0xdb,0x02,0x5c,0x94,0x24,0x45, - 0x38,0xf0,0x6e,0x2e,0x9d,0x13,0xdb,0x3d,0xc4,0x6d,0x42,0x9f,0xb3,0x81,0x61,0x40,0xda,0x8c,0x6c,0xdc, - 0xa7,0xe2,0xb3,0x85,0x19,0xbc,0xfb,0xad,0x64,0x6e,0x42,0x8f,0x54,0xa6,0xe3,0x43,0x40,0x97,0xf6,0xc7, - 0x9f,0x29,0xac,0xd1,0x54,0x11,0xb5,0xac,0xe5,0xee,0xb1,0x61,0x5c,0x3b,0x49,0x2e,0x72,0x4a,0x9e,0xb7, - 0x53,0xfb,0x14,0xe7,0x72,0xe7,0x91,0x8b,0xe4,0x82,0xc5,0x15,0x9a,0x50,0xee,0x97,0xc6,0x75,0x10,0x72, - 0x8d,0xbb,0x28,0xa2,0x0e,0x4c,0xc8,0x55,0x81,0x5d,0xbf,0xa8,0xf5,0x9d,0xcb,0x9d,0x02,0xb7,0x71,0x32, - 0x41,0x65,0xfc,0x21,0x7c,0xb3,0x99,0xca,0x4a,0xdd,0x38,0x84,0x72,0xf8,0xbe,0x2f,0x40,0x59,0xf2,0xe0, - 0x7f,0x70,0x09,0x7b,0xfc,0x60,0xd4,0x1a,0x4e,0xd9,0x32,0x46,0x97,0x91,0x74,0xed,0x44,0xa2,0xb6,0xcd, - 0x47,0xd6,0xb5,0xf9,0xd0,0xd0,0x41,0x15,0xc0,0x17,0x58,0x8b,0x67,0x04,0x66,0x34,0xed,0x75,0x9c,0x9d, - 0x18,0xad,0x81,0x4b,0xf1,0x82,0x40,0x15,0xd8,0x90,0x5a,0xdb,0x04,0x4e,0x8e,0x0b,0xb6,0x09,0x33,0xab, - 0x98,0x64,0xf8,0x68,0xdb,0x3a,0xde,0x2b,0x3b,0x42,0xb1,0xc6,0x33,0xce,0x94,0x19,0xba,0x57,0xce,0x66, - 0x3c,0x40,0x65,0xac,0x84,0x2a,0xef,0xea,0xb4,0x8d,0xde,0xd9,0x54,0xb3,0xe7,0xbd,0x48,0x94,0xb5,0xaa, - 0x64,0x60,0xf8,0xb0,0xea,0x36,0x3a,0x9b,0x75,0xda,0x04,0x2b,0xda,0x35,0x5a,0x8a,0x5a,0x50,0xfd,0x19, - 0x52,0x94,0x1b,0xef,0x9b,0xfd,0x8e,0x97,0xd6,0x76,0x50,0x43,0x99,0x7e,0x8c,0x0f,0xc7,0x5e,0xd3,0x9e, - 0x28,0x41,0x48,0x9d,0xa9,0x6f,0x5f,0x5a,0x61,0x5a,0x76,0x26,0x1d,0xdd,0x95,0x92,0x8b,0x03,0x74,0xb1, - 0xc6,0xc2,0x43,0xe9,0x5f,0x72,0x99,0xe2,0xa4,0xa1,0xec,0xb0,0x4c,0x72,0x58,0x68,0xc0,0x6e,0x01,0xd7, - 0x17,0xcd,0x8a,0xce,0x55,0x97,0xe9,0xd6,0x55,0x97,0x3d,0x2b,0x9a,0x2d,0x3a,0xfc,0xaf,0x93,0xd7,0x33, - 0xc7,0xd3,0x1e,0x4b,0x01,0x07,0x32,0x73,0xe8,0x7d,0x73,0x38,0x06,0x44,0xc5,0x85,0xc7,0xd7,0x5f,0x84, - 0x76,0x5d,0xa8,0x75,0x02,0xe2,0x03,0xf6,0x78,0x35,0x18,0xfa,0x51,0xc9,0x58,0x9a,0x6f,0xe9,0x22,0x14, - 0x6d,0xec,0xc8,0x80,0x9d,0xad,0x83,0xcf,0x4f,0x21,0x91,0x7d,0xea,0x3e,0xb7,0xbb,0x73,0x21,0xee,0x03, - 0x2c,0xdd,0x87,0x93,0xb4,0xc8,0xf1,0x9d,0x92,0x4d,0x36,0x61,0xf8,0xa6,0x4a,0xe8,0xd7,0xe7,0xeb,0xbb, - 0xaa,0x1b,0x21,0x20,0x34,0x33,0xaf,0x59,0x9e,0xc1,0xa0,0x43,0xe1,0x6a,0xff,0x0b,0x13,0xe7,0x50,0x16, - 0x3c,0x9b,0x2b,0xad,0x8f,0x16,0x7e,0x83,0x06,0x75,0x55,0x8d,0xae,0x2a,0x9f,0x85,0x14,0x9e,0x82,0xd8, - 0x88,0xb1,0xf9,0xc6,0x98,0xc4,0xb1,0x24,0xf4,0xf4,0x94,0x76,0x41,0x16,0x69,0x3d,0x70,0x4f,0xae,0x6d, - 0x89,0x63,0x72,0x1c,0x76,0x4e,0x09,0x8f,0xb7,0xef,0x64,0x08,0x77,0xdf,0x3d,0x55,0x7c,0xc1,0x40,0x5f, - 0x79,0x13,0x43,0xbb,0x4a,0x72,0xbe,0x1d,0x91,0xf8,0xf5,0xd3,0xcb,0x55,0x76,0x7a,0x9a,0xb8,0x1d,0x82, - 0xde,0x18,0x0c,0x41,0x8f,0xb6,0x84,0xc7,0x4f,0xdf,0xd3,0x72,0x52,0x79,0x91,0x36,0xcd,0x9b,0x4c,0x88, - 0x56,0x0d,0xe9,0x3c,0x27,0x58,0x6d,0xa5,0xda,0xe9,0xb8,0xc7,0xe7,0xdd,0x1b,0x5f,0xcb,0xe1,0x4b,0xfb, - 0xb6,0xb4,0x30,0x86,0xd2,0xd7,0x6d,0x9a,0x57,0xcf,0x4e,0xb8,0x5d,0x97,0x96,0x13,0x75,0x34,0x26,0xbb, - 0x06,0x28,0xda,0x5c,0x6e,0x74,0xdb,0x81,0x0d,0xe3,0x82,0x13,0xa9,0xfe,0x0f,0xdc,0xcd,0x94,0xfe,0xe8, - 0x46,0xbb,0xac,0x7b,0xe8,0xd1,0xc0,0xb4,0x57,0xc6,0x88,0x0b,0xa0,0x99,0xf1,0xb8,0xfc,0x96,0xf8,0xe2, - 0x8e,0xe1,0xba,0x33,0x69,0xe4,0x2c,0xe9,0x5a,0x45,0xac,0x14,0xb8,0xb1,0x0a,0x1c,0x9b,0x05,0xc3,0x6a, - 0xaf,0x06,0x47,0x40,0x68,0x73,0x4e,0xd3,0x9a,0x97,0x64,0x8c,0x1f,0xf7,0xf7,0xed,0x54,0xf8,0xb3,0xa0, - 0xfa,0x60,0x5b,0x6f,0x1d,0x81,0x2f,0x3b,0xb3,0xce,0x99,0xc9,0x82,0x30,0x61,0xd7,0xcf,0x03,0xa0,0x0f, - 0xa2,0x6d,0x78,0x6a,0xc9,0xea,0xc5,0xdc,0x7e,0xa3,0x9e,0x66,0x61,0xf8,0xb6,0x83,0x1d,0x22,0xf5,0xb6, - 0x05,0x18,0x05,0xb1,0xfc,0x47,0xf9,0xa4,0x6d,0xfa,0xa8,0x51,0xcc,0x4b,0xad,0x6c,0x24,0x68,0x6a,0x7d, - 0xa4,0x65,0x02,0x3e,0x30,0xb9,0xd5,0x57,0x5b,0x82,0x23,0x2d,0xe6,0xda,0x12,0xf4,0xb1,0x56,0xc2,0x61, - 0xa4,0xa8,0x45,0xa8,0x1b,0x29,0x84,0x73,0x66,0x96,0x77,0xb0,0x17,0xb8,0x85,0xc5,0xb8,0xa6,0x11,0xf6, - 0x3f,0x3e,0x38,0x19,0x0c,0xf0,0x17,0x0a,0x9c,0xc8,0x13,0xa1,0x83,0x74,0x7f,0x4c,0x4c,0x25,0x24,0xc5, - 0x9b,0x8e,0xd4,0xa2,0xb2,0x1a,0x8a,0x96,0xfa,0x44,0xf4,0x14,0x5a,0x1f,0x22,0x7c,0x29,0x1b,0x60,0x20, - 0x60,0x81,0xd0,0xb8,0x2d,0x51,0xda,0x96,0x24,0xc3,0x33,0xc9,0xf8,0x89,0x2f,0x47,0x0d,0xa4,0x34,0xdf, - 0x4c,0x64,0xa4,0x36,0x06,0x85,0xa7,0x34,0x50,0x11,0x49,0x23,0x9a,0x3e,0xb8,0x0d,0x6a,0xa6,0x0a,0x39, - 0xce,0xa7,0x51,0xbb,0x28,0x4d,0xcd,0xbe,0xad,0x68,0x47,0xab,0x0f,0x55,0x72,0xac,0x7d,0x25,0x3f,0x64, - 0xe7,0xcf,0xaf,0x97,0x62,0x6f,0x7b,0xa2,0x7e,0xaa,0x92,0xdb,0xef,0x8d,0xf8,0x3a,0xd6,0x61,0x4e,0xfc, - 0x68,0xd6,0x66,0x93,0xb1,0xc2,0x4e,0x22,0x5d,0xe4,0xc5,0x64,0xbe,0x9a,0x66,0xf1,0x07,0xc2,0xcf,0xd7, - 0xf6,0x71,0x91,0x5e,0xc7,0xa6,0x0d,0xb9,0x7f,0xe7,0x04,0x46,0x85,0x4c,0xc3,0xc7,0x5d,0x34,0x34,0x49, - 0x69,0x23,0xdd,0x49,0x69,0x30,0x4f,0x09,0xef,0x0d,0x65,0x81,0xbd,0xe5,0xda,0x62,0xb4,0xad,0xcc,0xf9, - 0xd8,0xea,0xa2,0xd7,0x46,0xa2,0x89,0x37,0x95,0xb9,0xaa,0x08,0x0e,0x79,0xeb,0xba,0xae,0xfb,0x40,0xfb, - 0x4a,0xef,0x2c,0x27,0x4b,0xb2,0x80,0xfc,0x4c,0x4b,0xd2,0x20,0x7a,0xba,0xfe,0x2b,0x5f,0xee,0xba,0x2f, - 0x37,0x6a,0x3b,0xe2,0x80,0x8f,0xf3,0x18,0xe2,0x86,0x3a,0x16,0x18,0x6d,0x82,0x7f,0x8a,0xa9,0x30,0x7b, - 0x34,0x6c,0x49,0x9e,0xfd,0x80,0x9c,0xbf,0xe2,0xa2,0x04,0xa5,0xc9,0x27,0x3d,0x30,0x18,0x9a,0x8b,0x12, - 0x9f,0x5f,0xf9,0xae,0x4c,0x02,0xec,0x5d,0x82,0x11,0x74,0x29,0x47,0x30,0x08,0x82,0x7c,0x82,0xe1,0xc1, - 0xe0,0x19,0x2e,0xf6,0x76,0x91,0xfd,0x1b,0x13,0x24,0xc8,0x4d,0xa1,0x36,0x06,0xc1,0x14,0xaa,0x89,0x11, - 0x63,0xf0,0xf5,0xca,0x85,0x44,0x77,0x9f,0xe4,0xd3,0xbd,0x50,0x22,0x56,0x04,0x71,0x8c,0x58,0x1b,0x1c, - 0x98,0x25,0x80,0x8a,0x01,0x21,0x96,0xd2,0xe3,0xc9,0xc9,0xb8,0x57,0xdb,0x84,0x9c,0x1e,0x85,0xd3,0x5c, - 0x6e,0xcf,0xd2,0x16,0x3a,0x13,0x44,0x59,0x46,0x49,0xa2,0x75,0x6d,0x92,0x2c,0x2b,0x41,0xdb,0x60,0x60, - 0x70,0xf4,0x37,0x36,0x60,0xa0,0xc9,0xa3,0xdd,0xfc,0x1a,0xc4,0x1c,0xee,0x55,0x55,0x2d,0x82,0x23,0x32, - 0xa2,0x16,0xa7,0xb5,0x81,0xb4,0xc7,0x4c,0x02,0x1d,0x3c,0x83,0x41,0x46,0x5f,0x11,0xaf,0xd2,0x13,0xb1, - 0xf8,0x73,0x7c,0xe4,0xf3,0xe2,0x4e,0x8e,0x90,0x98,0x59,0xd6,0xde,0x33,0x23,0x98,0x0d,0x57,0x4d,0x3e, - 0x4f,0x6e,0xe1,0xe9,0x19,0xff,0x4c,0x78,0xe3,0xba,0x21,0x00,0x41,0x34,0x59,0xd8,0x66,0xeb,0x95,0x8e, - 0x5f,0x2b,0xa9,0xe4,0x83,0x68,0x70,0xb2,0xf8,0x1e,0x88,0x50,0xc3,0x09,0x7a,0xec,0x9f,0x45,0xc4,0x2f, - 0x95,0xbd,0xf4,0xa1,0x77,0x67,0xf5,0x59,0x5f,0xb3,0x08,0xcb,0xdc,0x14,0xd1,0x88,0x11,0x76,0x9f,0x0b, - 0x56,0xe4,0xea,0x1e,0x9e,0x9e,0xa5,0x35,0xe8,0x36,0x5c,0x7b,0x6a,0xd2,0xec,0x4a,0xd6,0x84,0x51,0x78, - 0x88,0x75,0x76,0x07,0x85,0x0c,0x21,0x3b,0xad,0x36,0x2e,0x1c,0x79,0x3f,0x5f,0x9d,0xe7,0x1c,0x7f,0xb5, - 0x3f,0x83,0xef,0xdc,0xe3,0xd0,0xa0,0xc6,0x23,0x32,0xc3,0xed,0x15,0x2d,0xd6,0x40,0xa8,0xce,0x36,0x09, - 0xed,0xd8,0x24,0xed,0x3d,0xa1,0x45,0x0b,0x3d,0x32,0x08,0xc4,0x20,0xe1,0x46,0xc7,0xf6,0x49,0x13,0xd8, - 0x1c,0x5d,0xab,0xef,0x0b,0x68,0xb3,0xbc,0x2b,0xcb,0x98,0x6b,0xf3,0x0d,0xca,0xb0,0x4e,0x8b,0xfc,0x3a, - 0xef,0x75,0x96,0xe6,0x81,0x3a,0x25,0x8c,0xff,0xaa,0xec,0xf7,0x6d,0xe1,0x2c,0x6d,0xb2,0xe4,0x40,0x4b, - 0x65,0x0f,0x89,0x41,0x16,0x78,0x69,0x55,0x9e,0x25,0xac,0xb8,0xf1,0x48,0x70,0x08,0xe7,0xf1,0xa5,0x5c, - 0xbc,0x8b,0xcd,0x2a,0xf7,0x1a,0xe2,0x89,0xe5,0x78,0xc0,0x0c,0x50,0x14,0x1a,0x03,0x74,0xe3,0xab,0x82, - 0x13,0x53,0xae,0x63,0xb4,0xa1,0x54,0x24,0xca,0x76,0xda,0xa3,0xf1,0x83,0x22,0x90,0x3d,0x22,0x74,0xc0, - 0x80,0xd4,0x1d,0xf6,0x5d,0x30,0xf2,0x28,0x89,0xc8,0xd7,0x39,0x25,0x29,0xe2,0x55,0xd3,0x10,0x71,0x43, - 0x7c,0xea,0x4d,0x4d,0xe1,0xcf,0x0b,0x9d,0xb6,0xab,0x25,0xf4,0x34,0xae,0xc8,0xb6,0x50,0xda,0x49,0xa3, - 0x3e,0x2b,0x93,0x85,0x4c,0xd1,0x97,0xba,0x9c,0x5a,0xa9,0xcb,0x06,0x77,0x9d,0xa4,0x2d,0xa0,0xee,0x4a, - 0x13,0xb7,0xdb,0x30,0xa5,0xba,0xcd,0xcc,0xda,0xcd,0x18,0xb1,0xbc,0x34,0xa1,0xd7,0xb0,0xd0,0x0f,0x94, - 0x22,0x10,0x53,0xc8,0x2f,0xbd,0x63,0x03,0x15,0xf8,0x7b,0x97,0xd7,0x44,0xca,0xbc,0x2f,0xc7,0x9c,0x55, - 0x72,0x83,0xcb,0xf6,0x66,0x64,0x37,0x04,0x3b,0x7b,0xc6,0x1b,0xce,0xcd,0xac,0xe9,0x88,0xc9,0xc9,0xf8, - 0x62,0x98,0x94,0x76,0xa0,0x75,0xbf,0xc3,0xa5,0xbc,0xa9,0xd3,0xba,0xe6,0xec,0xe0,0x44,0xc4,0xc5,0x46, - 0x8e,0xa9,0x3b,0xbb,0x87,0x9e,0x75,0x22,0xf9,0x58,0x9f,0x92,0xd0,0x8b,0x08,0x20,0x7e,0x62,0x65,0x58, - 0x70,0x40,0x14,0x06,0xb5,0xa4,0xd0,0x10,0x68,0xad,0x59,0x5b,0xa8,0x47,0xf7,0x99,0x23,0xd9,0x78,0xe1, - 0x04,0xa4,0xa2,0x9e,0x0d,0xcb,0xdc,0x5a,0x72,0x8b,0xe8,0x96,0x71,0xa1,0x74,0xec,0xf3,0x62,0x63,0x5c, - 0x7d,0x34,0xf2,0x13,0x0f,0x14,0x58,0x14,0x16,0xec,0xed,0xd2,0x9b,0xb7,0xd1,0x2e,0x53,0x85,0xb0,0xd0, - 0xfd,0xd8,0xfe,0x7d,0x5b,0xa6,0x97,0xd7,0x1f,0xc5,0xd7,0x58,0x1c,0xa3,0xbf,0x47,0xcb,0x7f,0xea,0xc3, - 0xba,0xae,0xb4,0x6b,0xe4,0xb6,0x4f,0xb5,0x8f,0x4d,0xda,0x2c,0xa5,0x10,0xf4,0xee,0x5b,0x58,0xbe,0x53, - 0xc5,0xf0,0x7b,0xcb,0x61,0x7b,0xfd,0x70,0xf8,0xd5,0xf0,0xf0,0x0b,0x09,0xd3,0xf2,0xa4,0x52,0x3f,0x56, - 0xea,0x87,0x4a,0xbd,0xac,0xd4,0xef,0x95,0xfa,0xad,0x52,0xdf,0x57,0xea,0xbb,0x4a,0x7d,0x5b,0x71,0x38, - 0x0d,0xbe,0xf7,0x59,0xdf,0xf9,0xaa,0x7e,0xe6,0x34,0xbe,0xdb,0x46,0xa1,0x5e,0x22,0x33,0x53,0x25,0x13, - 0xa4,0xe4,0x7e,0x1f,0x90,0x87,0xe7,0x30,0x1d,0xa4,0xd2,0xff,0xee,0xda,0xce,0xdb,0x10,0x49,0xf6,0x7e, - 0x73,0x5a,0x96,0x9f,0x2b,0x16,0xa9,0x05,0x12,0xd1,0x18,0x8e,0x17,0x0d,0x82,0xb6,0xe8,0xdb,0x82,0x74, - 0xa1,0x40,0x1a,0xe1,0xf5,0xa5,0x5c,0xa2,0x4b,0x26,0x9f,0x5c,0xa6,0x5c,0xb6,0xa3,0xf3,0x6c,0x1c,0x75, - 0xe4,0x40,0xec,0x5c,0x72,0xce,0x46,0xfd,0x8b,0x3b,0x3f,0x91,0xcb,0xde,0xb3,0x69,0xde,0xc0,0x88,0x4e, - 0x4d,0xab,0xf4,0xfc,0x9c,0x9f,0xea,0x65,0x36,0x9f,0x73,0xcd,0xd4,0xf7,0x7f,0x72,0x61,0x3a,0x08,0xca, - 0xab,0x19,0x21,0xf8,0x9a,0x30,0x18,0x31,0x95,0xec,0x92,0xa9,0xd2,0x55,0x53,0xce,0xca,0xc9,0xaa,0xe6, - 0xa7,0xe5,0x3c,0xbd,0x51,0xba,0x43,0x1c,0x78,0x84,0x8e,0x6a,0xd8,0xe9,0x11,0xc9,0x3a,0xaf,0xe9,0xfc, - 0xa6,0xb9,0xab,0x32,0x65,0x48,0x3b,0xfd,0x6b,0xca,0xeb,0x57,0xee,0xb3,0x79,0x31,0x43,0xc7,0x3b,0x71, - 0x3e,0xd3,0xbc,0x46,0xf7,0xa6,0x2a,0x2b,0xe4,0x17,0x11,0x0c,0x8a,0x92,0xa6,0x30,0x07,0x10,0xab,0x8b, - 0x7c,0x3a,0xa5,0xae,0xe1,0x70,0x6c,0xb2,0x6a,0x91,0x17,0x48,0x24,0x88,0xaa,0x1a,0x95,0xd7,0x8b,0x74, - 0xa9,0xf2,0x26,0x5b,0x48,0xa4,0x93,0x79,0x59,0x2e,0x95,0xb9,0x66,0x4a,0x49,0xa3,0x45,0x89,0x50,0x2d, - 0x0a,0xe1,0x25,0xea,0xfc,0x77,0x42,0x51,0x65,0x7d,0x91,0x82,0xe1,0x74,0x2d,0x14,0x25,0xa2,0x47,0xd1, - 0x3a,0x53,0x33,0xcb,0x94,0xb0,0x11,0x6d,0xda,0xeb,0xbc,0x21,0x92,0x36,0x9d,0x96,0xc5,0x1c,0x51,0x55, - 0x7e,0x5b,0xd1,0x16,0x9c,0x2a,0xed,0x5a,0x39,0x55,0xc2,0x16,0x11,0x4c,0xa4,0x8b,0x39,0x01,0x83,0xb2, - 0x63,0x82,0x0f,0x26,0xcf,0xb6,0xbd,0xd8,0x85,0x63,0x83,0xd2,0xdc,0x53,0x26,0x60,0x1e,0x81,0x25,0x38, - 0x56,0xbc,0xba,0xcc,0xeb,0x9c,0x4a,0x22,0x46,0x58,0x9e,0x04,0x17,0x4d,0xb3,0x8c,0x1f,0x3c,0xb8,0xba, - 0xba,0x1a,0x5e,0x7d,0x31,0x2c,0xab,0xf3,0x07,0x87,0x5f,0x7f,0xfd,0xf5,0x83,0xeb,0x79,0x5e,0x7c,0x22, - 0x8a,0x2a,0xef,0x39,0x67,0x83,0xb8,0xe5,0x82,0xf2,0x15,0xa0,0x4c,0xca,0x73,0xb2,0x09,0xd1,0xf3,0x15, - 0x11,0xf6,0x45,0xdf,0xf7,0x3b,0x0d,0x6c,0x72,0xad,0x77,0xc9,0xdf,0x95,0x11,0x6c,0x72,0xcc,0x16,0x55, - 0xf5,0x7e,0x23,0x04,0x32,0x01,0xe2,0xee,0xa1,0x80,0x5d,0x9e,0x27,0xb7,0xf5,0x25,0x11,0xc4,0xdb,0x23, - 0x78,0x78,0x70,0x70,0xf0,0x80,0xf2,0x02,0xe2,0x9b,0x9a,0x8b,0xbe,0x12,0x34,0xc6,0x7f,0x3c,0xc0,0x1d, - 0xa9,0xfc,0xe7,0xcd,0x6b,0x6a,0xb6,0xcc,0x01,0x99,0x17,0xcd,0x62,0xae,0xce,0xca,0xe9,0x8d,0x02,0x36, - 0x54,0x17,0xb4,0x14,0x0a,0x43,0x53,0x88,0x50,0xae,0x64,0xd7,0x36,0x79,0x43,0x7f,0xd3,0xe9,0x14,0xfb, - 0x51,0xa5,0x55,0x93,0x4f,0xf0,0x5e,0xd3,0x9e,0x20,0x20,0x2a,0x71,0x8b,0x27,0xbe,0xc3,0xcf,0xa1,0xba, - 0x78,0xa8,0x2e,0xbe,0x50,0x17,0x5f,0xaa,0x8b,0xaf,0xd4,0xc5,0xdf,0xd5,0xc5,0x79,0x55,0xae,0x96,0xaa, - 0x48,0x2f,0x69,0xed,0x78,0x8c,0x04,0x88,0x97,0x6a,0x4a,0x50,0x39,0x57,0xd3,0x46,0x11,0x1d,0x0b,0x0f, - 0x1b,0xa4,0xb3,0x41,0x6a,0xa6,0x96,0xf9,0x04,0x0e,0x37,0xea,0xa2,0x52,0xf9,0xe2,0x9c,0x3a,0x43,0x83, - 0xa2,0x43,0xac,0x9c,0xab,0x25,0x0c,0x1b,0xd5,0x6a,0xae,0x52,0x75,0x46,0xac,0xe4,0x59,0xa5,0xce,0xa6, - 0x39,0xfd,0x2f,0x15,0x3d,0x4e,0x08,0x3c,0x39,0x0a,0x91,0xe2,0xcb,0xec,0xa7,0x33,0xa2,0x85,0x17,0x2a, - 0x57,0x9f,0xce,0xa6,0x54,0x41,0xf5,0x49,0xfd,0xa6,0xaa,0xa5,0x22,0x60,0xae,0x9a,0x89,0xaa,0x56,0x67, - 0x37,0x44,0xc9,0xd7,0xe9,0x62,0xa9,0x08,0xb6,0x89,0xf0,0xaa,0x97,0x29,0xa1,0x1e,0xda,0x6b,0xc4,0x70, - 0xd6,0xab,0x33,0xfa,0xbf,0xe4,0x7b,0x6d,0xd5,0x4a,0x11,0x72,0x53,0x57,0x67,0x10,0xa2,0x13,0x92,0x4a, - 0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x64,0x3f,0x29,0x46,0x0c,0xd4,0xd2,0x19,0x81,0x9d,0x78,0x83,0xc1, - 0x12,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x41,0x26,0x69,0x71,0x99,0x52,0x4b,0x93,0x2a,0x5f,0x36,0xd8, - 0x14,0xf2,0x40,0x24,0x37,0x0c,0xdd,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65,0xb2,0x34,0x60,0xf3,0x5a, - 0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x50,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xa6,0x04,0x34,0x67,0xd9,0x7c,0x4a, - 0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x51,0xed,0xf3,0xec,0x1c,0xb4,0xc0,0x02,0x9b,0x19,0xa8, - 0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15,0x13,0x0a,0x48,0x73,0x60, - 0x9d,0x3c,0x9d,0x97,0xe7,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b,0x9a,0xd0,0x1b,0xa5,0x31, - 0xa0,0xca,0x44,0xe8,0xa0,0xb0,0xdf,0xcb,0x2b,0x65,0x42,0x67,0x29,0x0e,0x4e,0xf6,0xdb,0xaa,0x04,0x1a, - 0x99,0x55,0xa0,0xfa,0x1a,0x40,0x0b,0x84,0x10,0x0c,0x7a,0x04,0xb0,0x2a,0x2d,0xf2,0x05,0xca,0x4e,0xf2, - 0x6a,0xc2,0xe7,0x43,0xbe,0x5c,0x12,0x80,0xaa,0xc9,0xaa,0xa2,0x1d,0x0e,0xcc,0x05,0xd4,0x57,0x4f,0xa8, - 0x11,0xca,0x22,0x00,0x95,0x28,0x3f,0x34,0xdc,0xa2,0xd9,0x9f,0xa5,0x13,0x00,0x60,0x95,0xe5,0xe7,0x85, - 0x1c,0x82,0xea,0x5c,0x9d,0xcf,0x6f,0x96,0x17,0x04,0x39,0xe9,0x79,0x06,0x40,0xce,0x78,0xf1,0x33,0x48, - 0x14,0x6a,0x02,0xea,0xbc,0xc6,0x2d,0x6b,0xfb,0x52,0x88,0x5b,0xa2,0x3f,0x54,0x21,0x21,0xa4,0x72,0x7e, - 0x73,0x5e,0xca,0x2f,0x7f,0x07,0x52,0x40,0x89,0x2b,0xb5,0xaa,0x39,0xd4,0x06,0xcf,0x0f,0xff,0xe1,0x2f, - 0x1b,0x86,0x19,0x10,0x55,0x97,0x79,0x76,0x25,0x11,0xa2,0xea,0xde,0xbd,0x5c,0x8a,0x4d,0x7e,0xca,0xf7, - 0x87,0xd3,0x58,0x7b,0x39,0xaa,0x15,0x4f,0x8a,0xd8,0x37,0xb2,0xc4,0x83,0x1d,0xce,0xae,0xca,0x8a,0xd1, - 0x5f,0x45,0xbd,0xc8,0x68,0x23,0xa0,0x13,0x73,0xb5,0xaa,0x10,0x3d,0x7b,0x9e,0x77,0x43,0x5b,0xb5,0xa4, - 0x40,0xbd,0xd6,0xbf,0x77,0x84,0xdf,0xb2,0x17,0x29,0xeb,0x03,0x93,0x23,0x94,0x8f,0x8b,0x38,0x6c,0xb4, - 0x21,0x6d,0xe3,0x19,0xd2,0x0e,0x06,0x36,0x5e,0x9a,0x9f,0x6c,0x2f,0x1e,0x84,0x55,0x4c,0xfb,0x22,0x78, - 0x93,0x83,0x88,0x4b,0xe6,0x31,0xe2,0x4b,0x0d,0x5b,0xdd,0x78,0xfb,0xb1,0xd3,0x67,0x3d,0x7f,0xfd,0x9d, - 0x7e,0xfb,0x31,0xcc,0x73,0x84,0xa0,0x6c,0x6c,0x3d,0x47,0x34,0x7b,0xb8,0xb3,0x32,0xee,0x59,0x84,0x4e, - 0x25,0xa6,0xa8,0x2c,0x09,0x27,0xe9,0xb8,0x01,0x7f,0xe2,0x63,0x5d,0x92,0xbf,0x15,0x7b,0xd5,0x27,0x2c, - 0xa2,0xde,0xf2,0x21,0x67,0x3e,0xd0,0x66,0x87,0x72,0x91,0xa3,0xd8,0xec,0xb3,0x31,0x53,0x67,0xbc,0x26, - 0x42,0x08,0xe7,0xe1,0x82,0x10,0x85,0xbb,0x8d,0x8b,0x69,0x7f,0x59,0x2f,0x8f,0xcb,0xba,0x3b,0x3b,0xfb, - 0x86,0x90,0x79,0x77,0x7a,0xd2,0x41,0x45,0xc3,0xff,0x48,0xc7,0x22,0xed,0x86,0xfe,0xc2,0x5e,0x81,0x0d, - 0x2e,0x26,0xe3,0x80,0x4d,0xbd,0x25,0x75,0xe6,0x06,0xee,0x03,0x98,0xd5,0xa7,0x82,0x17,0xb6,0xba,0xdb, - 0xb8,0xbc,0xa4,0xe1,0xd2,0x16,0x42,0x7a,0xe6,0xad,0x05,0x40,0x3c,0x6f,0xb8,0x14,0x87,0xce,0x40,0x59, - 0x81,0x4e,0xed,0x4f,0x32,0x9e,0x01,0x4d,0x8f,0x77,0x5b,0x66,0x18,0x25,0xea,0xe4,0xff,0x6b,0xef,0x4d, - 0xf7,0xdb,0x36,0x96,0x7d,0xd1,0x57,0xa1,0xb0,0x7c,0x6c,0x20,0x84,0x28,0xc9,0x76,0xb2,0x12,0xd0,0x30, - 0xb7,0x87,0x0c,0x4e,0xe2,0x61,0xc7,0x4a,0xb2,0x12,0x89,0xd1,0x86,0x48,0x90,0x82,0x45,0x01,0x5c,0x00, - 0x28,0xd9,0x11,0xf9,0x40,0xf7,0xeb,0x7d,0x84,0xf3,0x64,0xb7,0xfe,0x55,0xdd,0x8d,0xc6,0x40,0xc9,0x4e, - 0xce,0xd9,0xf7,0x7c,0x38,0x2b,0xbf,0x65,0x81,0x3d,0x0f,0xd5,0xd5,0x55,0xd5,0x35,0x54,0x00,0x2b,0x9e, - 0x85,0x9f,0x42,0xae,0x86,0x63,0xcb,0xd5,0xbd,0x6e,0x0d,0x5e,0x5d,0x68,0x43,0xd9,0x89,0x72,0x3b,0xe1, - 0x3a,0x44,0x45,0x6f,0x7c,0x44,0x76,0x59,0x26,0xf0,0x49,0xa6,0xfd,0x8c,0x69,0x05,0x59,0xe3,0x41,0x8c, - 0xfd,0x44,0x60,0x4b,0x2b,0xcf,0x61,0xce,0x98,0x68,0x2d,0x33,0x8f,0xef,0x62,0x3d,0xea,0xef,0xe2,0xce, - 0xfe,0xbf,0x43,0xff,0xd3,0x04,0xfd,0x5f,0x76,0x63,0x8e,0x0b,0x1a,0xc2,0x2c,0xa1,0x46,0xc7,0xfe,0xbc, - 0x6a,0xf8,0x07,0xd3,0xf0,0x0f,0xb4,0x37,0x1f,0xaa,0x8c,0x6f,0x4d,0xc6,0xb7,0x94,0x71,0x9a,0x84,0x7b, - 0x47,0xc7,0x57,0xde,0xa0,0x7f,0xbc,0x7b,0x72,0xe7,0x78,0x3c,0xde,0xf3,0x4f,0x10,0x37,0xe0,0x84,0x78, - 0x8c,0x2b,0xfe,0x98,0x38,0xfe,0x61,0x55,0x9b,0x2e,0x2f,0x55,0x7b,0x49,0x9b,0x78,0x5e,0x65,0x9c,0x99, - 0x8c,0x33,0xca,0x78,0x9f,0x74,0x5a,0xf3,0x72,0xc0,0xba,0xbd,0xc0,0x1d,0xf4,0xbd,0xbd,0x2a,0x1c,0x83, - 0x18,0x5b,0xee,0x0d,0xdd,0xd1,0xce,0xd1,0x1f,0xee,0xf8,0xb3,0x63,0xcf,0xdb,0x9b,0x77,0x28,0xa5,0x89, - 0xbd,0x66,0x5c,0xb9,0x71,0x95,0x8a,0x50,0x26,0x30,0x2f,0xa2,0x78,0x8c,0x38,0x42,0xec,0x56,0x15,0xcc, - 0x67,0x1c,0xe6,0x55,0xe0,0x1f,0x06,0xa2,0x12,0x9e,0xe9,0x68,0xd6,0x7f,0xec,0xee,0xee,0xf9,0x4f,0xe8, - 0xe3,0xb8,0xf8,0x6c,0x27,0xb9,0x80,0xfd,0x74,0x94,0x96,0x77,0xf6,0xfc,0xb7,0x49,0x97,0xd6,0xc3,0x33, - 0x15,0xba,0x9e,0x00,0x25,0x96,0x98,0x83,0x80,0x51,0xc3,0x6f,0x95,0xb6,0xb5,0xc6,0x13,0x55,0x36,0xdd, - 0x5a,0xd6,0x78,0xcf,0x7b,0x92,0x70,0xa4,0x22,0xc7,0x0c,0xc0,0xa9,0x05,0x15,0x78,0x9d,0xb8,0xe2,0x9d, - 0xbe,0xfe,0x58,0x9e,0xd6,0x74,0x70,0xba,0x5e,0x78,0x55,0xbf,0xe0,0xb0,0x59,0x1b,0x4a,0x82,0x48,0x59, - 0x89,0x04,0x4f,0x77,0x00,0xbb,0x12,0x2a,0x91,0xc0,0xf3,0x65,0xf6,0x27,0xf0,0x73,0x01,0x17,0x7a,0xcd, - 0xdd,0xa3,0x01,0x7c,0x9f,0x87,0xdf,0xe7,0xb7,0xf8,0x6f,0x94,0xe6,0x8d,0x2f,0xbe,0x1d,0xb6,0xbf,0x46, - 0x00,0x09,0x78,0x28,0x65,0x09,0xfb,0xf7,0x3a,0x2e,0x5f,0x2f,0xb6,0x1e,0xcb,0x3e,0xc6,0x37,0xa1,0xf2, - 0x78,0x71,0x27,0xe9,0x70,0xab,0x79,0x27,0x39,0x4a,0xc7,0x7d,0x56,0x0b,0xce,0xeb,0xbd,0xe4,0xd8,0xf1, - 0xaf,0x2b,0x28,0x9d,0x1b,0x28,0x9d,0x13,0x94,0xbe,0x69,0xce,0x53,0x59,0x84,0xc7,0x1c,0x0a,0x13,0xcc, - 0x6a,0x40,0xec,0xfa,0x2e,0xff,0x74,0x7c,0xfe,0xa3,0x22,0x3f,0x57,0xe9,0xbb,0x65,0xa6,0xb2,0xac,0x18, - 0xd0,0x56,0xb6,0x48,0x5c,0x1d,0xbf,0x0a,0x23,0xcd,0x99,0xfc,0x53,0xa5,0xda,0x6d,0x72,0x02,0xb7,0xd9, - 0x8c,0x2b,0x6d,0x65,0xab,0x36,0x31,0xb7,0x77,0x09,0x7b,0x14,0x43,0x44,0xe8,0xe7,0x89,0x8a,0x73,0xc9, - 0x9e,0x63,0x1d,0xff,0x05,0xfd,0x16,0x02,0x8b,0x7f,0xfe,0xd8,0xc8,0xfe,0xa6,0xf6,0x9b,0x6e,0x12,0xc7, - 0x7f,0x55,0xaf,0xf1,0xd2,0xfe,0x89,0x02,0xc3,0x77,0x78,0x00,0x30,0xde,0x1a,0x94,0x1b,0x33,0xf0,0xa8, - 0x56,0x33,0x16,0x79,0x60,0x0a,0x5c,0x31,0x90,0x35,0x8a,0xb9,0x18,0x91,0x15,0xa9,0xd3,0x1a,0xd7,0x55, - 0x23,0xf5,0xeb,0x14,0x2f,0x94,0xed,0x8e,0xed,0xd1,0x6d,0xef,0xb7,0x5e,0xca,0x7d,0x65,0xba,0x7d,0x52, - 0x9f,0xeb,0x55,0x3d,0x91,0x3b,0x15,0x19,0xcd,0x4f,0x58,0xe5,0x91,0x6a,0x16,0x6c,0x2a,0x9d,0x6e,0x53, - 0xee,0x1b,0x10,0xb7,0x37,0x66,0x0e,0x20,0x2f,0x72,0xa5,0x04,0x0c,0x47,0xb4,0x53,0x84,0xce,0x0b,0x15, - 0xef,0xe6,0xbf,0x02,0x2d,0x9d,0xba,0x26,0x7a,0xc7,0x9a,0x78,0x14,0xcf,0xf5,0xd7,0x77,0xbc,0x3d,0xff, - 0xa9,0x85,0x9e,0x5a,0x01,0x1e,0x84,0xca,0x7b,0x66,0xdd,0xf5,0xa0,0xed,0x4a,0x96,0x88,0x3d,0xab,0x51, - 0x17,0x50,0x71,0xb5,0x22,0x68,0x70,0x2c,0xb8,0x44,0x4c,0xec,0x24,0xa4,0x4d,0xcd,0x23,0x55,0xe4,0xdb, - 0x46,0x62,0x5c,0x52,0x2b,0x5b,0xca,0xfd,0xca,0xa2,0x75,0x44,0x84,0x56,0x46,0x4e,0x9d,0x51,0x80,0x3d, - 0xf8,0x12,0x32,0x4f,0x25,0xaa,0x4a,0x18,0x0d,0xa0,0xaf,0x45,0x79,0xf2,0x03,0x72,0x60,0x14,0xc4,0xb5, - 0x7b,0xc0,0x1d,0xf9,0xdd,0x8d,0x99,0x18,0x1e,0x18,0x11,0xe1,0x07,0x77,0xe5,0xd5,0xf4,0x1a,0x75,0x04, - 0x0c,0x4b,0x87,0x27,0x1e,0x46,0x1d,0xa6,0x38,0x12,0xe5,0xba,0x23,0x47,0xbf,0x9a,0x97,0x6e,0x46,0xd9, - 0x98,0x26,0x8f,0x32,0x0b,0xed,0x90,0xb1,0x4a,0x6f,0x49,0x62,0xb1,0x9c,0x0f,0x34,0x09,0xa0,0xd1,0x54, - 0xbf,0x9f,0x79,0x55,0x2a,0xa2,0xb0,0x10,0xd3,0x1a,0x21,0x2c,0x33,0xcb,0xf9,0x23,0xad,0x21,0x34,0x81, - 0x86,0x0a,0x1e,0x8f,0x69,0xcc,0x1b,0xb3,0xc6,0xfe,0x8e,0x84,0x4e,0x90,0x5f,0x7a,0x71,0x65,0xc9,0xfd, - 0x99,0xe5,0x5d,0xdb,0x3f,0x13,0xc7,0xc4,0xb4,0xd7,0x67,0xde,0xc8,0xe5,0x96,0x20,0x7d,0x2f,0x46,0xcf, - 0x5a,0x64,0x33,0x92,0xfd,0x33,0x2f,0x68,0xe4,0xb8,0x67,0x90,0x8e,0x2f,0x21,0x8b,0x5d,0x50,0x97,0x33, - 0x2c,0x6a,0xc9,0x8b,0x3a,0x95,0x15,0x9e,0xc0,0xd3,0x0b,0x0f,0x91,0x86,0x12,0xa4,0xae,0xe5,0x13,0xda, - 0x74,0xf9,0xac,0x49,0x22,0x8b,0x3f,0xe7,0x46,0xdd,0x46,0xe1,0x8a,0x18,0xef,0x2a,0x6d,0x79,0x14,0x2e, - 0x44,0x75,0xaf,0xd4,0xc6,0x52,0x2a,0x34,0xbd,0x40,0xa9,0x08,0x7d,0xb1,0xaa,0xfa,0x49,0xc5,0xef,0x2c, - 0xd6,0x99,0x1a,0x6a,0x33,0x09,0x59,0xb7,0x36,0x28,0x40,0x39,0x68,0xc6,0xbe,0xa4,0xa6,0xa2,0x25,0xb7, - 0x64,0x67,0x4e,0x4c,0x44,0x7a,0xbe,0x31,0x21,0xb1,0x63,0x95,0x28,0xbd,0xd7,0x6b,0xad,0xec,0xc7,0x61, - 0xe5,0xad,0xa3,0x29,0x52,0xe6,0x67,0x75,0x1e,0x41,0xea,0xd0,0xde,0xd8,0xe4,0x7d,0xcc,0x01,0x59,0x4d, - 0xcb,0x0b,0x8b,0x2e,0x69,0xc5,0xd8,0x6b,0xc6,0xae,0x30,0x70,0x98,0x78,0x91,0xcb,0x1a,0xc7,0xa9,0x5a, - 0x5b,0x7e,0x72,0x82,0xbe,0x21,0x13,0x07,0xb9,0x5e,0x7d,0x0c,0xa9,0xd6,0x39,0x17,0x6e,0xed,0x95,0x72, - 0x63,0x13,0x6b,0x87,0xdd,0x96,0x4b,0x6c,0xed,0x23,0x63,0xd8,0x65,0xf8,0xe6,0x75,0x9a,0x07,0xaa,0xa3, - 0x56,0x99,0xdc,0x4a,0xfc,0x2b,0xcb,0xe9,0xb5,0x6c,0x7d,0xdd,0x82,0xed,0x5c,0x0d,0xaa,0x9a,0x64,0xee, - 0xe9,0x34,0xa2,0x72,0x70,0xd4,0x18,0xfd,0x5d,0x69,0x03,0x5f,0x85,0x69,0x68,0x2f,0xae,0x54,0x31,0xfa, - 0xa5,0x3f,0xa5,0xb8,0x8f,0xbc,0x44,0x43,0x54,0xd7,0xc6,0x2e,0x0d,0xa6,0x15,0x14,0x06,0x6d,0x70,0xe3, - 0x4e,0xd0,0xf3,0x9e,0xd5,0x99,0x17,0xb5,0xd6,0x20,0xf3,0x64,0xa1,0xab,0x29,0xc4,0x88,0x26,0x84,0xfa, - 0x95,0x85,0x25,0xf0,0x0b,0x5b,0x29,0x99,0x67,0x8a,0x42,0xb5,0x8b,0x6d,0xd9,0xd6,0xb0,0x5f,0x45,0x1e, - 0x02,0xb2,0x0f,0xaf,0x10,0xe0,0x33,0x65,0x87,0xe6,0xaa,0x61,0xfd,0xd3,0xb8,0x48,0xfc,0x6b,0x1d,0x59, - 0xce,0xbd,0x6d,0xff,0x8e,0x6a,0xbb,0xf3,0x47,0x61,0xc2,0x7b,0x10,0xb9,0x1c,0x2d,0x27,0xf3,0xeb,0x41, - 0x8c,0x2e,0xcd,0xc2,0xa1,0x5a,0xed,0xe6,0x48,0x04,0x70,0x31,0xa6,0xa4,0xba,0x0f,0x30,0x40,0xc5,0x14, - 0x61,0x42,0x95,0xe3,0xb3,0x73,0x9d,0x5c,0xed,0x7c,0xea,0x99,0x44,0x8e,0x14,0xec,0x55,0x9b,0x53,0x05, - 0x88,0x57,0x21,0x7e,0xd8,0xff,0x7f,0xd3,0xf6,0x11,0x03,0xc7,0x3b,0xb4,0x6d,0xfa,0x58,0x8d,0xfd,0xa2, - 0x7e,0xa3,0x54,0x73,0x35,0x36,0x07,0xf9,0x78,0x58,0x8a,0xe7,0x2e,0xfa,0xc3,0xd0,0x3b,0x72,0xe7,0x78, - 0xa2,0xbb,0xc4,0xbd,0x18,0x20,0xda,0x11,0x74,0x83,0x6c,0x7c,0x36,0x37,0xaa,0xc8,0xb8,0xa2,0xd7,0x6b, - 0x8d,0xd8,0x3c,0x13,0xae,0x28,0x3c,0x57,0xb7,0xb6,0x09,0x45,0x3b,0x54,0xeb,0xe4,0x8d,0x2c,0x2b,0xda, - 0x7e,0x98,0x04,0xe9,0x4d,0x8a,0xc1,0x44,0x36,0xed,0xee,0x5a,0x15,0xf0,0x4c,0x16,0x1b,0x67,0x29,0x56, - 0x46,0x48,0x9b,0xba,0x71,0xf5,0x4d,0x44,0x87,0x21,0xef,0x3a,0xae,0xbc,0x3b,0x00,0x3a,0xa5,0x08,0xc1, - 0x3f,0xf5,0x0d,0x39,0x47,0xec,0x0c,0xcf,0xd7,0x47,0xb4,0x36,0x7e,0x75,0x44,0x25,0x0d,0x47,0x94,0x63, - 0x92,0x49,0x2f,0xf6,0x09,0x2d,0x55,0xd8,0x5e,0x14,0xf3,0x74,0xb8,0x2a,0xa8,0x7d,0xf3,0x11,0xca,0x64, - 0x80,0xd6,0xf6,0x40,0xcd,0x19,0xe4,0x4b,0x21,0xd1,0xb9,0x08,0xd6,0x13,0x1d,0x95,0x33,0x61,0x9c,0x9e, - 0xe3,0x5f,0xd6,0x79,0x41,0xdc,0xd7,0x96,0xf7,0x4b,0x8f,0xce,0x61,0x52,0xf3,0x9f,0xa9,0x7d,0x5c,0x4d, - 0xbd,0xd1,0x89,0x9b,0xcb,0x7a,0x20,0x32,0x71,0xd2,0xe9,0x3b,0x73,0xdf,0x30,0x7f,0x44,0x95,0x19,0xff, - 0x9e,0x0c,0xb4,0xb9,0xfd,0x33,0x61,0x17,0xa3,0xa1,0x84,0x0d,0xc3,0x85,0xc5,0xa5,0xc5,0xab,0x27,0x01, - 0x80,0xfc,0x7c,0xcd,0xe4,0x8d,0x97,0x74,0xe8,0xba,0xe4,0x1d,0x18,0xb5,0x0a,0x76,0xec,0x2f,0x68,0xb6, - 0x7c,0xa8,0x4a,0x77,0xc1,0xab,0xb8,0x0a,0x17,0xd5,0x92,0xae,0xc2,0x95,0x71,0x16,0x40,0x09,0x2b,0xac, - 0x99,0x10,0xb8,0xd3,0x30,0xaf,0x48,0x89,0xa5,0x65,0x4b,0x2a,0x87,0x08,0x6d,0xcd,0x70,0x46,0x19,0xf6, - 0x57,0xb4,0xb1,0x2b,0xda,0x58,0xe1,0xa4,0xaa,0x8d,0x5d,0x79,0x3a,0xed,0x68,0x35,0x96,0xb6,0x3b,0x06, - 0x20,0x25,0x4c,0xf7,0x9b,0xd8,0x4d,0xe4,0x0a,0x19,0x95,0xee,0x94,0x4b,0x2d,0xbd,0xd1,0x94,0x36,0x70, - 0x69,0x51,0x73,0xda,0x8f,0x6c,0x51,0xdd,0x00,0x13,0x9f,0xa6,0x4b,0x34,0xd0,0xbe,0x3f,0xa5,0xff,0x2f, - 0xc3,0xca,0x55,0x8b,0x7f,0x19,0x42,0x02,0xe0,0xcf,0xe9,0xcf,0x72,0xec,0x9f,0x1a,0xd5,0x6d,0xca,0x3a, - 0x09,0x13,0x64,0x5d,0xd1,0x9f,0xd3,0xb1,0x7f,0x18,0xee,0x14,0xc3,0xd9,0x23,0x74,0x35,0x7d,0x14,0x9e, - 0xd2,0xdd,0xe4,0x5e,0x7a,0x23,0x54,0xef,0xf7,0x67,0xe3,0x20,0x76,0xe9,0x0c,0xa3,0x95,0xdd,0xdd,0xe5, - 0x38,0xf8,0x85,0x32,0xfd,0x13,0x3a,0xd4,0x1f,0xf0,0x17,0xc4,0x99,0x2e,0xc8,0xad,0xf6,0xfb,0xd3,0xb1, - 0x87,0x42,0x73,0xff,0x8a,0x0b,0xd1,0x5f,0x14,0xd2,0xf5,0xb9,0xcf,0xdd,0xdd,0x53,0x29,0x74,0xa9,0x0a, - 0x5d,0x4a,0xa1,0xc3,0x16,0x1d,0x90,0xfa,0x97,0xea,0xde,0xb5,0x44,0x71,0xee,0x5c,0x50,0x48,0xd5,0x73, - 0xad,0xd1,0xb9,0x1a,0xde,0x5c,0x86,0xd7,0xd5,0x28,0x37,0x20,0x4d,0x5b,0x43,0xab,0xc6,0xef,0xc6,0xe2, - 0xec,0x62,0x12,0xfe,0x1c,0xd3,0xfe,0xcc,0xfc,0x25,0x4c,0xe5,0x5d,0x10,0xf4,0x27,0x1c,0xc3,0x74,0x34, - 0x39,0xe2,0x8f,0x71,0x87,0xf3,0x8f,0x2a,0x2e,0xe1,0x8c,0x68,0xe1,0x84,0xa3,0x10,0x1a,0xf4,0x98,0x8d, - 0x35,0x8f,0x70,0xf7,0xee,0x2f,0xa0,0x73,0x22,0x43,0xc1,0x67,0x44,0xe3,0x9e,0x50,0x13,0xfb,0xe8,0x6d, - 0x14,0xd1,0x77,0xe6,0xab,0xf9,0xf3,0xbc,0x16,0x34,0xce,0xd5,0x58,0x4d,0x6e,0x21,0x93,0x43,0x8a,0xf6, - 0x68,0xdb,0x35,0xd1,0x85,0x35,0x51,0x2f,0xa8,0xb7,0x59,0xcd,0x77,0x38,0x7b,0xbc,0x84,0x12,0x3d,0x4d, - 0x91,0x00,0xa2,0x7f,0x30,0xf6,0x24,0x3a,0xa3,0xfc,0x50,0x87,0x7e,0xea,0x9f,0xe2,0xe0,0x4f,0x1f,0x9f, - 0xde,0xbd,0x7b,0xe1,0xee,0xfb,0xb2,0x2c,0x1b,0x77,0xc2,0xe1,0xb2,0x01,0x94,0x01,0x03,0x2d,0x28,0xbc, - 0x8a,0x84,0xaa,0x8b,0x43,0xa9,0x30,0xee,0xe9,0x33,0xfa,0xcb,0x64,0xd7,0x12,0x93,0xad,0xc0,0x12,0x44, - 0x31,0xc0,0x7f,0x84,0xf6,0xa7,0x94,0x37,0xad,0xc2,0x20,0x06,0xb7,0x36,0x1b,0x48,0xfe,0x0e,0x47,0xad, - 0xe1,0xbb,0xbd,0xa3,0x9c,0x3a,0x65,0xfe,0x76,0xcc,0x90,0x15,0x65,0x1d,0x35,0x6c,0xac,0xab,0xea,0x54, - 0xb8,0x10,0x46,0xaf,0x60,0x3c,0x51,0xcb,0x04,0xa3,0xf6,0xf4,0x57,0x17,0x65,0x9d,0xd7,0xc9,0x1e,0x61, - 0x94,0x72,0x9b,0x3f,0xca,0x09,0x38,0x2a,0xec,0xaf,0x76,0xd2,0xcd,0xd9,0x9f,0xaa,0x19,0xc0,0x49,0x83, - 0xf1,0xf4,0x27,0x88,0xd9,0x14,0xcd,0xfd,0x95,0x72,0xf7,0x41,0xb8,0x20,0xaf,0x47,0x1b,0x0a,0xb3,0xf5, - 0x1a,0xd1,0xdd,0x81,0xf4,0xfc,0x5c,0x48,0x7b,0x5f,0x10,0xb2,0xe6,0x5b,0xe4,0xe2,0xb2,0xf1,0xbe,0x81, - 0xca,0xae,0x6b,0x02,0xea,0xd5,0x84,0xeb,0x19,0x90,0x57,0xea,0xaa,0xa7,0xa5,0xeb,0x66,0x60,0x73,0xb1, - 0x24,0xa4,0xc4,0x0e,0xac,0xed,0x59,0xfc,0x2b,0xd6,0xd5,0x34,0x3b,0xf1,0x14,0x41,0x30,0xf3,0x3c,0xe6, - 0xc4,0xcf,0xa2,0x82,0x09,0x71,0x50,0xdd,0x85,0xcb,0x89,0xdc,0xab,0xe9,0x50,0xc7,0x8d,0xb3,0x46,0xa0, - 0xa2,0xa2,0x48,0x53,0x11,0x53,0x7e,0x55,0xa2,0x09,0xc2,0xc1,0x17,0x87,0xde,0x97,0x25,0xe6,0x06,0x2e, - 0x72,0x96,0xe4,0x45,0xc9,0x3d,0x12,0x9a,0xd9,0x1f,0x5e,0x3e,0x9a,0xe9,0xbd,0xba,0xd4,0x0e,0xee,0xce, - 0xd6,0xeb,0x9d,0x13,0xe2,0x17,0x67,0x47,0x97,0x63,0xc5,0x99,0x2e,0x61,0x52,0x2e,0xac,0xec,0x59,0x78, - 0x56,0x7b,0x3f,0x40,0x8d,0xe5,0x7a,0x7d,0x56,0xef,0x98,0xb8,0x18,0x1c,0xa4,0xc4,0xd3,0xab,0x29,0xfb, - 0x7a,0x61,0xbb,0x5a,0x99,0x43,0x9a,0xb7,0xc2,0x8c,0x77,0x9e,0x10,0x2e,0xf6,0xae,0x2f,0x30,0xc8,0xa9, - 0xdc,0x2d,0xd2,0xd9,0xce,0x05,0x36,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x7d,0x6a,0x67,0x93,0x42,0x54,0xec, - 0x70,0x78,0x2f,0x3e,0x18,0x8a,0xc0,0x52,0xbf,0xf5,0xb3,0xd7,0x8e,0x04,0x8b,0xb9,0xf2,0x0f,0xfd,0x73, - 0x08,0xa9,0xdf,0x23,0xd2,0x7c,0x36,0x5d,0x2d,0xe2,0xc2,0x7f,0x46,0xdf,0xa0,0x71,0x5e,0x2b,0xed,0xaf, - 0x2b,0x5a,0x93,0xab,0x47,0xcb,0xa4,0x02,0xe0,0x2b,0x26,0x2b,0xcf,0x8f,0x96,0xc9,0xd1,0xd5,0x18,0xd6, - 0x5e,0x74,0xaf,0xec,0x0f,0x0f,0x1f,0xbd,0xaf,0x8a,0x1c,0x12,0x79,0xf1,0xfe,0xe8,0x70,0xac,0xca,0xd0, - 0x4e,0xe9,0xe2,0xc2,0x5f,0xd8,0x79,0x7c,0x21,0x3f,0x61,0xbd,0x11,0xbc,0xab,0x89,0xd6,0x8c,0x0a,0x25, - 0xf6,0xcc,0xfa,0x7e,0xcb,0xc2,0x56,0x42,0xc5,0x1d,0x4e,0x0a,0xd5,0x6d,0xe9,0xd3,0x25,0xa9,0x7c,0x32, - 0xf1,0xed,0x2d,0x5e,0x62,0x10,0x46,0x04,0xc6,0xd9,0x80,0x2e,0x98,0x73,0x2e,0xd8,0x7f,0x88,0x0b,0x44, - 0x87,0xf2,0x15,0x3d,0xb1,0x0c,0x71,0x38,0x30,0xf9,0x43,0xf6,0xfd,0xc4,0x1b,0xc9,0xd8,0x1b,0x1b,0xe0, - 0x09,0xcd,0x35,0xf5,0x55,0x50,0x74,0xf4,0xb3,0xe4,0xde,0x24,0x9e,0x9a,0xae,0x07,0x25,0x77,0x82,0xe1, - 0x8a,0x9f,0x78,0xcb,0xfa,0x59,0x9a,0xba,0xab,0xa5,0xc3,0x82,0x1b,0x3e,0x3e,0xdd,0x8c,0x8a,0x9c,0x48, - 0xfb,0xe6,0xa0,0x9c,0xf2,0x10,0x91,0x9f,0x0f,0x5f,0x87,0x50,0xe6,0x57,0xcf,0x31,0xcf,0xf4,0x23,0x94, - 0xfb,0xba,0x11,0x85,0x46,0x9e,0x69,0x94,0xe4,0xd0,0x7f,0x2d,0xf6,0x6f,0x67,0x42,0x0c,0xd2,0xf5,0x57, - 0x13,0x94,0x9d,0xf1,0x04,0x65,0x1d,0xce,0x06,0x27,0x22,0xb0,0x3d,0x95,0xfb,0x60,0xde,0xb8,0x87,0xcf, - 0xa0,0xfa,0x4b,0x84,0x8b,0xc6,0x7f,0x1a,0x60,0xaf,0x42,0x9d,0x46,0x30,0x00,0x8a,0x69,0x78,0x35,0xac, - 0xee,0xc5,0xf7,0x04,0x16,0xef,0xbb,0x78,0x97,0xf7,0x16,0xef,0xf2,0x7e,0xec,0x5e,0xf1,0x48,0xae,0xc4, - 0xf1,0x3d,0x0f,0xf5,0xb0,0x6a,0xe4,0x09,0x35,0xf2,0xa4,0x83,0xf3,0x7d,0x52,0x71,0xbe,0x4f,0x98,0xf3, - 0xbd,0x12,0x48,0x7a,0x1b,0x5e,0xb5,0x70,0x2b,0x9a,0x7f,0x3b,0x60,0x1d,0xe1,0xca,0xe4,0xe1,0x4e,0x78, - 0x30,0xbc,0xf3,0xe8,0x2d,0xb1,0x88,0xc6,0x5e,0xe5,0x0e,0xdc,0x3f,0x23,0xe1,0xe8,0xce,0x58,0xd3,0xde, - 0x4f,0x63,0x8c,0xef,0x8a,0x5a,0x55,0xa1,0x6e,0xe1,0xdb,0x95,0xef,0x2d,0xb0,0x7c,0xfb,0xfe,0xbe,0xba, - 0xb0,0x88,0xff,0x81,0x4b,0xe0,0xbc,0xb2,0x16,0x93,0xfd,0x43,0x58,0x19,0xcc,0x89,0xb7,0xe2,0x35,0x48, - 0x7f,0x53,0xce,0xbd,0x56,0x07,0x2d,0x80,0xda,0x87,0x9c,0xbf,0xe0,0x68,0x9e,0xf8,0x1f,0x12,0xff,0x30, - 0xf1,0xcf,0x13,0xff,0xeb,0xc4,0x7f,0x9e,0x8e,0xb4,0x34,0xff,0x5d,0xe9,0x6b,0xc1,0x1a,0xbe,0x05,0x9e, - 0x1a,0xcf,0x7f,0x3b,0x12,0xd7,0x4b,0xac,0x2c,0xce,0xb2,0xab,0xd1,0xeb,0x52,0xa2,0x9b,0xc1,0x6d,0xe6, - 0x26,0xb8,0xde,0x8c,0xb5,0x63,0xe5,0x8b,0x04,0x5e,0xcc,0x5f,0xa6,0x44,0x0b,0xea,0x47,0x8e,0x76,0x78, - 0x11,0x79,0x1f,0xa7,0xd6,0x27,0x67,0x51,0x3a,0x8f,0x1d,0xdb,0x3c,0x55,0x34,0xf1,0xab,0xca,0x2c,0xa5, - 0x57,0xc2,0xb5,0x21,0xab,0xfa,0x5e,0xaa,0xa8,0x88,0x3f,0x61,0x0c,0x4a,0xdf,0x4c,0xbb,0x4e,0xff,0x25, - 0x81,0x53,0x35,0xec,0x4e,0x3c,0x6d,0x3c,0x88,0x42,0x88,0xa4,0x5f,0xe6,0x4d,0x58,0x47,0xe1,0x49,0xee, - 0xde,0xdd,0xe1,0xbf,0xc4,0x88,0x29,0x35,0xcb,0xd1,0xf7,0x70,0x74,0x64,0x2e,0xf3,0xda,0x08,0x7f,0xb1, - 0x58,0x0a,0x31,0xea,0x9a,0x2a,0x51,0xd2,0xc6,0x0b,0x9e,0x97,0xf2,0x6d,0x7b,0x7b,0x32,0xad,0x12,0xbe, - 0x40,0xe0,0x35,0x6d,0x7f,0xa2,0x95,0x3e,0xbf,0x29,0x21,0x03,0x73,0xb4,0xe6,0x88,0x19,0x1d,0xdd,0xbb, - 0x89,0x2b,0xb1,0xe3,0x3c,0x4f,0x79,0xf2,0x7a,0xa9,0x23,0xc7,0x86,0x65,0x15,0x45,0xd6,0xb7,0xbe,0xd9, - 0xaf,0x23,0xab,0x16,0xb7,0xd7,0x5d,0x2f,0xf7,0x4b,0x1a,0xd6,0xaf,0xe9,0xb6,0x42,0x98,0x9b,0x48,0x65, - 0x09,0x45,0xc2,0x4b,0xff,0x2b,0x9e,0xc5,0x8d,0x25,0xf9,0xe5,0x83,0x9a,0x45,0xc4,0x1d,0x1e,0xa9,0x6c, - 0x12,0xf0,0x10,0xde,0x84,0x9b,0xeb,0xd5,0x7a,0xab,0xe6,0xa0,0xed,0xf5,0xbd,0xf1,0xae,0x5b,0x6b,0x39, - 0xd4,0x6f,0x96,0x66,0x45,0x45,0x9b,0xfa,0xf6,0xf5,0x1d,0x26,0xcd,0x18,0x80,0x95,0x6a,0xc4,0x0e,0x54, - 0xcb,0xd9,0x89,0xe5,0x46,0x56,0x59,0xab,0x57,0x8c,0x4a,0x31,0x9f,0xde,0x1a,0x3e,0xf0,0x47,0x0c,0x10, - 0x00,0x1f,0xa8,0x92,0xfc,0x38,0x4e,0x34,0xce,0x2f,0xf8,0x71,0xf7,0x2e,0xe5,0xab,0x0c,0x60,0x7a,0x0d, - 0xb1,0x6a,0x17,0xd8,0x53,0xe3,0xcf,0x04,0xaf,0x12,0xd8,0xf3,0x97,0xc4,0xc7,0xc9,0x0a,0x44,0x2d,0xb6, - 0xb9,0x3e,0xca,0xe2,0x58,0x37,0x86,0x58,0x80,0xbf,0xf2,0xd3,0xa8,0x52,0x2d,0x11,0x17,0x2a,0x96,0x40, - 0x9d,0x03,0xd4,0x9f,0xd0,0xca,0xe4,0xc9,0x1c,0x9e,0x60,0x9f,0x27,0x05,0x94,0x23,0x43,0x27,0xa5,0x7d, - 0x50,0x3a,0x77,0xfc,0xa6,0x3a,0x95,0x0c,0x84,0x8b,0x6f,0x24,0xc1,0xf9,0x43,0x32,0x72,0xd3,0xea,0xd8, - 0xe3,0x8a,0xbb,0x43,0xdd,0xda,0xa7,0xa1,0x51,0x29,0xcc,0x36,0x9e,0xd7,0x6c,0x29,0xcc,0x47,0x59,0x20, - 0x3d,0x77,0xea,0x17,0xb4,0x66,0x38,0xcc,0x1b,0x2b,0xe9,0xde,0x3a,0xe1,0xd6,0x40,0xf3,0xd1,0x6d,0x43, - 0xed,0x5a,0x20,0xda,0xcb,0xd7,0xb7,0x54,0x53,0x13,0xe9,0x9c,0x66,0x57,0x93,0x6a,0xe6,0x50,0xad,0x48, - 0x3b,0x36,0x57,0x31,0x04,0x7c,0x1a,0x6f,0x1f,0x1f,0x43,0xcd,0x77,0x04,0x35,0x6c,0x18,0xa6,0xac,0xbb, - 0x20,0x68,0x8e,0xf2,0xe0,0x69,0x96,0xc1,0x19,0xae,0x3f,0x29,0x0a,0xf3,0x0d,0xe0,0xd2,0xc5,0x80,0x48, - 0xf4,0xb7,0xf5,0x3a,0xab,0x52,0xac,0xb7,0x55,0xbb,0x8c,0x7e,0x57,0xb5,0x4b,0x35,0xd2,0x5a,0x0f,0xb7, - 0x76,0xd9,0x8e,0x74,0x19,0x6e,0x47,0xd2,0xd6,0xb2,0x8d,0x0e,0xa7,0xab,0x9c,0xdf,0x05,0x83,0x23,0xb1, - 0x6b,0xf3,0x55,0xba,0x28,0x76,0x8c,0x37,0xfe,0x9f,0x7a,0x81,0x6a,0x8f,0xb5,0x62,0x2d,0xf7,0x5d,0x52, - 0x33,0xa1,0x6b,0xda,0x82,0xb5,0x8c,0xc7,0xdb,0x36,0x61,0xca,0x73,0x16,0x0b,0x56,0xe5,0x95,0xbe,0x3b, - 0xb8,0x1f,0xa3,0xf0,0xdf,0x20,0x21,0x24,0xb0,0xb5,0x63,0xb6,0x2a,0x13,0x31,0xec,0x0d,0xd4,0x0e,0x54, - 0xfc,0x56,0xbb,0x0d,0x11,0xfc,0x87,0x9a,0x23,0x1c,0x7a,0x95,0xfb,0x4a,0xeb,0xd1,0xcc,0xd0,0xdd,0xb6, - 0xed,0x68,0x25,0x10,0x50,0xf6,0x63,0x4f,0x4b,0x78,0xe6,0x61,0x6f,0x03,0x55,0x96,0xf6,0xb2,0xca,0x14, - 0x1a,0xad,0x9d,0xce,0xf9,0x19,0x28,0x2a,0xd3,0x11,0x60,0x9d,0x93,0x93,0xaa,0xbb,0x5d,0xa7,0x6f,0xdc, - 0xca,0xf5,0x9d,0x5d,0x67,0x18,0xb1,0x18,0x4e,0x94,0x6c,0xf9,0x7b,0x14,0x59,0x01,0x4e,0x8b,0x3e,0x2e, - 0x08,0x7c,0x3a,0x41,0xd1,0x67,0x59,0x6e,0x90,0xbb,0x91,0xc8,0x3f,0xf0,0x00,0xad,0xde,0x3e,0x24,0xc5, - 0x18,0x14,0x15,0xde,0x88,0x53,0xb8,0x0e,0xfe,0xf2,0xbf,0x12,0x36,0x23,0x74,0xe5,0x01,0x11,0xf6,0x95, - 0x03,0xe5,0x68,0x86,0x96,0xb6,0x1a,0x62,0xf8,0x8b,0xb6,0x2c,0x5a,0xd5,0x8c,0xdd,0x17,0x58,0x84,0x95, - 0x90,0xa6,0xb2,0x8a,0x55,0xd8,0x79,0x3c,0xa7,0x36,0x92,0xb6,0x21,0x7c,0x07,0xb8,0x45,0x90,0x27,0xa0, - 0x8b,0xaf,0x8b,0xa8,0x86,0x75,0x3c,0x9f,0x08,0x93,0x85,0xc2,0x51,0xee,0x59,0x18,0xf9,0x17,0xe1,0xc2, - 0xbf,0xc0,0x14,0x08,0xa3,0x9d,0xe1,0xef,0x7a,0x7d,0x81,0xb5,0xe0,0x9f,0x42,0xdf,0xed,0xfc,0xc6,0xd2, - 0x04,0x77,0x67,0xd1,0xe5,0xf3,0xb5,0x2b,0x55,0xbb,0xf4,0xac,0x58,0x70,0x01,0xac,0x59,0xb8,0x68,0x02, - 0x89,0x18,0x8c,0x4c,0x78,0xee,0x4e,0xb6,0x2a,0x77,0x13,0xd6,0xdc,0x4f,0xea,0xce,0x1b,0x14,0x14,0x00, - 0x6f,0x7e,0xef,0xce,0x7c,0x27,0x9a,0x11,0x54,0xff,0x28,0xea,0x15,0xb6,0xa9,0xa8,0x55,0x12,0xf1,0xd2, - 0xeb,0x7e,0x2c,0x37,0x9e,0xaf,0xc1,0x07,0x9d,0x25,0xe9,0x6e,0x26,0xa6,0x00,0x22,0xf0,0xf8,0xcd,0xad, - 0x84,0x55,0x2b,0x11,0x98,0xfa,0x4b,0xdb,0x6c,0x0f,0xfe,0x81,0x87,0xdf,0x43,0x1a,0xc3,0xdd,0x7f,0x2d, - 0x1a,0x23,0x4b,0xcf,0xe7,0x34,0xc1,0x58,0x98,0x3d,0x0c,0xd2,0x54,0xfa,0x0c,0x1a,0x61,0x84,0x16,0x9b, - 0x43,0xa5,0x2d,0x9b,0x86,0xf1,0xa6,0x22,0x9b,0x33,0x61,0x5a,0xfc,0x0b,0x42,0x9f,0xff,0x4e,0xb0,0x28, - 0x80,0x47,0x85,0x37,0xf8,0x41,0xdf,0x42,0x30,0xc0,0xb0,0xde,0x50,0x4c,0xfa,0x7a,0xff,0x66,0x2e,0x56, - 0xfc,0xb9,0xff,0x40,0x78,0xa5,0x52,0xa8,0x08,0xfe,0x24,0x8a,0xda,0xfc,0xfa,0x16,0xca,0xc1,0xc1,0xb5, - 0x20,0x99,0x7f,0x27,0x5d,0x88,0xa5,0x61,0xd9,0xce,0xf8,0xc1,0x36,0x12,0x91,0xad,0x93,0x40,0xb9,0xcb, - 0x28,0x45,0x10,0xdc,0x6e,0x77,0x48,0x5c,0x69,0x99,0xc7,0x97,0xc6,0x71,0xa1,0x18,0x89,0x6a,0xe1,0x73, - 0xd2,0x85,0xb6,0xd8,0xa3,0x6a,0x56,0x2f,0x09,0x3e,0x3b,0xaa,0x4e,0x4d,0x41,0x6c,0x51,0xf1,0xc8,0x70, - 0xe5,0x85,0x16,0x3d,0x4e,0xc2,0xe4,0xa8,0x18,0x0f,0x27,0x12,0x3f,0x1a,0xa3,0xd8,0x09,0x27,0x22,0x7c, - 0x07,0x67,0xa0,0x4e,0xf2,0xa4,0x7e,0x92,0x09,0x79,0x5c,0xe2,0x45,0xc4,0x01,0x6c,0x67,0xc6,0x5a,0x34, - 0x3d,0xe2,0x72,0xe3,0x70,0xe2,0x53,0x0d,0x75,0x9c,0x27,0xdd,0xc7,0x39,0xf2,0x20,0xf7,0xb0,0xbc,0x89, - 0xaf,0x30,0xe0,0x05,0xfe,0x99,0xd1,0x50,0x67,0x95,0x04,0x6c,0xa6,0x87,0x3a,0x0d,0xf3,0xa3,0xd9,0x78, - 0x38,0x6d,0x9d,0x83,0xc8,0x57,0x69,0x44,0xb3,0x86,0x53,0x26,0xf7,0xe7,0x71,0xf9,0x34,0x5b,0xb1,0x98, - 0xed,0xd9,0x22,0x21,0x00,0xfb,0x89,0xd6,0x1a,0x7e,0xd8,0x8f,0xa6,0x3c,0xc4,0xd1,0x4a,0x46,0x3d,0xf5, - 0x82,0x85,0xfe,0xda,0x28,0x0b,0xdc,0x65,0x19,0xb2,0x4e,0x25,0xe4,0x90,0x2b,0x65,0xba,0x24,0xbc,0xd3, - 0x34,0x5c,0x98,0x48,0x05,0xba,0x44,0x46,0xb7,0xbf,0xed,0x9d,0xa3,0x65,0x7f,0xdd,0xed,0x69,0xc0,0xf4, - 0x05,0x2d,0x0e,0x96,0x83,0x59,0x8e,0x3a,0x4c,0xa6,0xa6,0xa9,0xa6,0x5b,0x2c,0x9a,0x6d,0x40,0xf1,0x4b, - 0x7d,0xf7,0x28,0x90,0x37,0xfe,0xf9,0xd9,0xc0,0xcb,0xb9,0x44,0xc4,0xe7,0x5d,0x56,0xb6,0x1c,0x6a,0xbe, - 0x58,0x59,0x32,0x9d,0x45,0xc5,0x4b,0x4a,0x77,0x63,0x65,0xa0,0xef,0x97,0x42,0x2e,0x6b,0x15,0xc3,0xef, - 0x98,0x4d,0xd0,0xbf,0xfe,0xac,0xfd,0xfa,0xb7,0x76,0xf8,0x0f,0xe7,0x1d,0x0b,0x42,0x95,0x86,0xc1,0x83, - 0x6e,0xfe,0x20,0x9b,0xcd,0x8a,0xb8,0xfc,0x2e,0x4e,0xe6,0x67,0xa5,0x55,0xab,0xa9,0xb4,0x28,0xfb,0xc7, - 0x6b,0x5c,0xb9,0x10,0xc3,0x48,0x60,0x5b,0xc9,0xb4,0xd3,0xf0,0x10,0xc4,0x1b,0x9c,0x9f,0x0d,0x8c,0xde, - 0x4f,0x98,0x0f,0x2c,0x05,0x29,0x95,0x52,0x01,0xc6,0x73,0x45,0x4c,0x70,0xd0,0xe9,0x36,0x97,0xf3,0x4d, - 0x02,0x4f,0xa0,0xbc,0x5c,0x55,0xc4,0xc1,0x1e,0x44,0x3e,0xd7,0x44,0x1f,0xef,0xec,0x99,0x6e,0xee,0xa8, - 0xc0,0x9d,0x12,0x35,0x48,0xc7,0xeb,0xf2,0xd8,0x8b,0xae,0x00,0x46,0xab,0x61,0xd6,0x79,0xd0,0x6d,0x33, - 0x9c,0x9c,0xcb,0xf0,0xd9,0x4c,0x1d,0x8c,0x93,0x72,0xd1,0x16,0x5c,0xab,0xc5,0x6f,0xf0,0xe5,0xb8,0xd4, - 0xdf,0x25,0x46,0x24,0x58,0xdd,0xea,0xaa,0x78,0x1d,0xc9,0xab,0xc4,0xa1,0x5e,0xb9,0x09,0x1e,0xcc,0x58, - 0x6a,0xe3,0xd1,0x5e,0x5b,0x37,0x3d,0x03,0x06,0x6e,0xc6,0xae,0xd4,0xce,0xdd,0x39,0x2d,0x45,0x17,0xca, - 0xf3,0x3f,0xa8,0x0d,0x48,0x3b,0xa9,0x66,0xe3,0x14,0xa3,0xa6,0x1c,0x91,0x6a,0xce,0xee,0x99,0x28,0xa2, - 0xda,0xb6,0x74,0x54,0xb4,0xa6,0x71,0xa5,0xe1,0x48,0x4d,0x26,0x64,0xb1,0x98,0xd9,0xd9,0x0d,0xac,0xc4, - 0xdf,0xf0,0x83,0xfd,0x2c,0x99,0x0f,0xac,0xc8,0xb8,0xe1,0xef,0xb9,0x5f,0x65,0xd4,0x62,0xf2,0x86,0x45, - 0xd2,0x99,0x05,0xa1,0x5a,0xf8,0xad,0x5d,0xad,0x11,0x93,0x37,0xfc,0x29,0xae,0x55,0xac,0x07,0xf1,0x6d, - 0xc5,0x48,0x79,0x5e,0x51,0x6c,0xd8,0xa9,0x02,0xa6,0x0c,0xb5,0xbd,0x03,0xc1,0x57,0x97,0xbc,0x29,0x54, - 0x0b,0x15,0x7d,0xbd,0x97,0xfc,0x43,0x59,0x1f,0xdf,0x66,0x89,0xc0,0xd6,0xd4,0x0a,0x1b,0xef,0x3a,0x30, - 0xd5,0x1e,0x71,0x75,0x76,0x60,0x5e,0x59,0xfc,0x1a,0x65,0x3f,0x48,0xb6,0xeb,0x93,0x80,0x2f,0xe4,0xad, - 0x45,0xb5,0x91,0x84,0xb4,0xb9,0xd7,0xae,0xad,0x8e,0x44,0x69,0x07,0x6c,0xda,0xf8,0x97,0x30,0xac,0x34, - 0x2e,0x14,0x0d,0xd5,0x45,0xcc,0xb0,0x57,0xcf,0xb3,0x8c,0xd8,0x7f,0x48,0xd8,0x6a,0xd2,0x72,0x5d,0xa2, - 0x11,0x26,0x94,0x0a,0x9f,0x26,0xc1,0xbc,0x9e,0x2d,0xae,0xe8,0xba,0x23,0x65,0xb5,0x15,0xe5,0xd9,0x7b, - 0x8f,0xed,0x1b,0x5c,0x2e,0x6f,0xe6,0xc9,0x1a,0x69,0x61,0x9a,0xb3,0xef,0x97,0xb8,0x1e,0x06,0xbb,0x32, - 0x71,0xd7,0x1e,0x06,0x6b,0x1c,0xa4,0xf2,0xe4,0x54,0x39,0x1d,0x71,0xc5,0x74,0x63,0x6e,0xf4,0x87,0x7c, - 0x44,0xf8,0xf5,0x95,0xc5,0x5a,0xe5,0x14,0x26,0x6e,0x7b,0xe0,0x8e,0xeb,0x1e,0xb8,0xb5,0x43,0x61,0xa8, - 0x41,0xd1,0x52,0xfc,0x0a,0x55,0x2a,0xed,0xfc,0x1e,0xfa,0xfc,0x6f,0x2a,0x8f,0x04,0xae,0x35,0xa6,0xaf, - 0xa1,0x14,0x22,0x61,0xb0,0xef,0xde,0xfd,0x3e,0xc5,0xff,0x07,0x70,0xa3,0x05,0xba,0x0d,0xaa,0xcc,0x6f, - 0x60,0x97,0xb1,0x2f,0x07,0xf3,0xfb,0xc4,0xff,0x16,0xca,0x94,0xd7,0xc7,0xd7,0xae,0x3b,0x0a,0x06,0xeb, - 0xe3,0xd4,0xeb,0x8f,0xbc,0xe3,0xcd,0xf1,0x66,0x6f,0xee,0xff,0x0b,0xda,0xef,0xbb,0x83,0xcf,0xfa,0xa3, - 0x3f,0xee,0x5c,0x6f,0x5c,0x6f,0x7d,0x74,0x3c,0x3e,0xde,0x3b,0x3e,0x1e,0x53,0xde,0xef,0xdd,0x2a,0xec, - 0x7c,0x85,0x68,0xed,0xed,0x7f,0x25,0xbe,0x73,0x7c,0x7c,0xe7,0xae,0xc3,0xe6,0xcb,0x50,0x34,0x6f,0xe7, - 0xd8,0xab,0x2b,0xfe,0x52,0xdc,0xb2,0xef,0xa8,0xc1,0xc8,0x68,0x9c,0x7e,0xea,0x3b,0x73,0x48,0x02,0xfd, - 0xdf,0x60,0xe6,0xc7,0xe2,0x7d,0xf8,0x34,0x0d,0x8e,0x1c,0x4b,0xee,0xef,0x8c,0x7d,0x83,0xb2,0x1b,0x66, - 0x1e,0xec,0x5c,0x6b,0x00,0x2f,0x10,0x0a,0x45,0x26,0x22,0xaf,0x11,0x83,0xdb,0xa1,0x08,0xb6,0xac,0xa6, - 0xc2,0xef,0xdf,0xbe,0x7e,0x45,0x09,0x00,0x6c,0xc4,0x70,0x4c,0xb5,0x1b,0xf3,0x30,0xb7,0x2a,0xc2,0x51, - 0x2e,0x44,0x29,0x50,0x8a,0x41,0xc2,0xd3,0x84,0x09,0x8e,0x30,0xc7,0xf6,0xc7,0x29,0xdc,0xb3,0x76,0x70, - 0x9f,0x8e,0x63,0xa9,0xf6,0x57,0x5d,0xe2,0xb1,0xac,0x1f,0xda,0xf3,0x09,0x9c,0x7e,0xad,0x44,0xdf,0xf1, - 0x61,0xa5,0x59,0xeb,0x4b,0xd5,0x9a,0x98,0xf2,0x76,0xa6,0x54,0x28,0x89,0x2e,0xfe,0xcf,0xee,0x65,0xe3, - 0x27,0x92,0x4f,0x5f,0x36,0x46,0xff,0x8d,0x65,0xe3,0xa6,0x9a,0xcb,0xf6,0x3e,0xc1,0xca,0xd5,0x97,0x4e, - 0x2a,0x5b,0x4b,0xc7,0x09,0x7f,0x75,0xe9,0xb8,0xdb,0xda,0xd2,0x71,0x8a,0xb5,0x74,0xfc,0x5b,0x2f,0x9d, - 0xdd,0x97,0xa9,0x85,0xf2,0xae,0x54,0xa8,0x72,0xfb,0xb0,0x3a,0x90,0xc5,0x8b,0x33,0x7e,0x6c,0x82,0xe5, - 0x1f,0x5b,0x81,0xc2,0x9c,0x32,0x5b,0x28,0xab,0x46,0x31,0xdd,0x53,0xd6,0x98,0x62,0x61,0x98,0x14,0x8c, - 0x99,0xf1,0xf4,0x44,0x53,0xb1,0xec,0x45,0x6b,0xa6,0x8f,0x62,0x20,0x79,0x75,0x0a,0xb7,0x43,0x65,0x26, - 0x36,0xd3,0xca,0xc2,0x11,0xe6,0x9f,0x25,0x4c,0x3b,0xb5,0x98,0x73,0xc9,0x26,0x8e,0x30,0x0f,0x64,0x43, - 0x47,0x31,0x7d,0xcc,0x55,0x4b,0x38,0x5c,0x32,0xc2,0x4e,0x13,0x54,0x19,0x72,0x65,0x6c,0xc8,0x16,0x93, - 0x9d,0x86,0x95,0xe8,0xb6,0x6e,0xd9,0xc8,0xb6,0xa8,0xca,0x10,0x55,0x5b,0x52,0xb6,0x2c,0x52,0x95,0x8d, - 0x2b,0x9b,0x58,0x76,0x58,0xb8,0x62,0xac,0xda,0xfe,0x55,0xfa,0xa1,0xc5,0x62,0xbb,0x5a,0x65,0x83,0x89, - 0xb7,0x0c,0x6d,0x3c,0xc9,0xcb,0xd4,0x34,0xc7,0x94,0x65,0x13,0xf3,0x54,0xb5,0x78,0x62,0x48,0xa1,0x4d, - 0x2d,0x2b,0x2b,0xd0,0xc6,0x12,0xb1,0x65,0x2e,0x2d,0x14,0xaf,0x35,0xd4,0x00,0xb3,0x70,0xef,0x8f,0xe3, - 0xe2,0x33,0xf7,0x88,0xfe,0x75,0xee,0x3d,0x7a,0x7c,0xbc,0x17,0x8e,0xfb,0x1e,0xe1,0x1a,0x24,0x86,0x1e, - 0xfe,0x1d,0x05,0x0e,0x65,0x3b,0xe3,0xcf,0x08,0xed,0xac,0xef,0xd1,0xe7,0x3d,0xfa,0xbc,0xd7,0x5f,0xab, - 0x3a,0xe1,0xa3,0xc7,0xff,0x45,0x55,0x3c,0x6f,0xb4,0xe7,0x27,0x59,0xe8,0x1c,0x45,0xbb,0x7f,0x3e,0xd9, - 0xfd,0xfd,0x64,0x7c,0x74,0x7c,0x7c,0x75,0x7c,0xbc,0x7b,0x7c,0x3c,0x18,0x7f,0xe6,0xf8,0x19,0x65,0x01, - 0x87,0x39,0xfd,0x24,0xeb,0x13,0xa6,0x0b,0xbc,0x91,0x7c,0x7a,0x8e,0x1f,0x65,0xa1,0x85,0xec,0x9c,0x3f, - 0x1e,0x39,0xfd,0x2c,0x23,0x0e,0x4d,0x0f,0xee,0x78,0x6f,0xe4,0x3d,0xde,0xa3,0x7d,0x69,0x14,0x3b,0x3e, - 0xde,0x43,0xc9,0xbe,0x73,0xf4,0xc7,0xe3,0xf1,0x67,0x8f,0x69,0x3e,0x2b,0x54,0x79,0xb4,0xf3,0xfc,0xf5, - 0xb3,0xc3,0xdf,0xde,0x7c,0xdd,0x43,0x7a,0xff,0xf1,0x5e,0xe2,0x2f,0x24,0x1d,0x16,0x3c,0x33,0xf9,0x3c, - 0x3e,0xda,0xf3,0x97,0x19,0xde,0x8e,0x9d,0xf7,0x8e,0xc1,0xc2,0x7b,0xef,0xdd,0x01,0x4d,0x64,0xee,0xd7, - 0x8f,0x3c,0x15,0x74,0xc0,0xdc,0x97,0xea,0xe9,0xe5,0x2c,0xf3,0x2f,0x33,0x62,0xa5,0xfd,0x79,0xe6,0x7f, - 0xc8,0x08,0x82,0xfc,0x93,0xcc,0xbf,0xca,0xfc,0xc3,0xcc,0x3f,0xcf,0xfc,0xf7,0x99,0xff,0x2c,0xf3,0x9f, - 0x30,0x08,0x2a,0xfb,0x5d,0x65,0x18,0xad,0x5f,0x3d,0xf8,0x12,0x7c,0x9b,0xe1,0xe5,0xf8,0x0e,0xfd,0xeb, - 0xdc,0x5d,0x94,0x43,0x27,0x70,0x1e,0xd1,0xa1,0xbc,0x3b,0xe7,0xcf,0xc7,0xf8,0x04,0x7c,0xd2,0x8f,0x7b, - 0xce,0x3d,0xfa,0x11,0x5d,0x2c,0x91,0x71,0x17,0x19,0xff,0x38,0xd8,0xc7,0xf7,0x71,0xca,0x3f,0xbe,0xe2, - 0xef,0xd2,0xd9,0xf8,0xaf,0x69,0x6e,0x77,0x69,0x91,0x89,0x01,0x9e,0x97,0x6b,0x54,0x5f,0x53,0x35,0x6f, - 0x48,0x13,0xfa,0xba,0x33,0x6b,0x4d,0x2d,0xad,0xff,0xf1,0x15,0x97,0x78,0xc3,0x03,0x86,0xe6,0x43,0x7d, - 0x9c,0xef,0xb2,0x6e,0xd2,0x82,0xb0,0xcc,0x9b,0x4c,0x7c,0x28,0x1c,0xb3,0x9c,0xa5,0x84,0xe7,0x22,0xff, - 0x39,0xd6,0xf7,0x3f,0xd6,0x7f,0x5c,0xee,0x66,0x69,0xb0,0xe7,0xbf,0xc0,0xcf,0xcb,0xdd,0x35,0x92,0xe8, - 0xe7,0x8f,0xf4,0xd3,0x1d,0x7c,0x46,0x17,0x6a,0xd1,0xa7,0xd1,0x24,0xe9,0x3a,0x9b,0xf1,0xf7,0xe0,0x33, - 0x6f,0xcf,0xff,0x86,0x72,0x7d,0x82,0x2b,0x9f,0xae,0xdb,0x31,0x41,0x19,0x95,0xb0,0x7f,0x7a,0xa3,0x3b, - 0x7b,0xfe,0x2b,0x86,0x0a,0x77,0x7d,0xec,0xdd,0xa1,0x41,0xbf,0xcc,0xd8,0x3c,0xec,0x33,0xfa,0xe1,0xff, - 0x84,0x9c,0x00,0x3d,0xb3,0xe8,0x79,0xcf,0xff,0x95,0x12,0x8e,0x07,0x47,0x7f,0x0c,0xc6,0x7d,0x2a,0xfa, - 0x34,0xeb,0x34,0xde,0x71,0xbf,0x4f,0xc2,0xef,0x93,0x5b,0x0c,0x95,0xbc,0x4a,0x1b,0x22,0x8c,0xfd,0xef, - 0x13,0xdb,0x38,0x91,0x2e,0xe1,0x5f,0xd0,0xf3,0xfb,0x8b,0x45,0x5a,0x04,0xaf,0xde,0x1e,0x4f,0xfb,0x7b, - 0xfe,0xcf,0x48,0xe1,0x6f,0x1a,0xc7,0x77,0x59,0x78,0xf4,0x5b,0x42,0x77,0x8e,0x7f,0x4d,0xcb,0x7b,0x78, - 0xc3,0xdd,0x22,0xb2,0x24,0xed,0x55,0x42,0x9e,0x86,0x34,0x0b,0xc3,0x8f,0xfb,0x2f,0xa3,0x25,0x8b,0x64, - 0x8f,0x9c,0xcb,0x5d,0x7e,0x4c,0x71,0xc6,0x90,0xce,0xe2,0x27,0x4f,0x1a,0x04,0xa1,0x33,0x5e,0xaf,0x29, - 0x45,0x7d,0x6b,0xd5,0x50,0x75,0xdb,0x70,0x22,0x3c,0x77,0xc9,0xcd,0x75,0xb9,0x9b,0xcc,0x64,0x9b,0xb3, - 0x30,0x19,0x39,0xd4,0x16,0x9d,0x4a,0x1c,0xca,0x80,0x58,0xc4,0x28,0x14,0x9a,0x5c,0x17,0xc5,0x73,0xae, - 0xb2,0x5b,0xae,0xa5,0x99,0x36,0x26,0xe1,0x6f,0x4c,0x91,0xff,0xab,0x64,0x5f,0x59,0xac,0x6d,0xc4,0x1d, - 0xfa,0xe2,0x3a,0xe3,0x34,0x7b,0x4f,0x7d,0x7f,0x8b,0x74,0x28,0xed,0x83,0x86,0x9d,0x10,0x82,0x56,0xe4, - 0xde,0x20,0x99,0x11,0x8e,0x70,0xfa,0x39,0xf5,0x4f,0xd3,0xbf,0xa7,0xab,0xdc,0xa3,0x43,0xee,0xff,0x8e, - 0x4a,0xd7,0xf1,0xfb,0x65,0x80,0x72,0x82,0xbf,0x83,0x89,0x3a,0x8f,0x2b,0xd5,0x2f,0x0d,0x6a,0x85,0x41, - 0xd1,0xea,0xca,0x80,0x4a,0x4e,0x50,0x43,0xc8,0xa3,0x69,0x92,0x49,0xff,0x2b,0xf4,0x5f,0x35,0x69,0xf7, - 0xca,0xa5,0xb8,0x4b,0xe9,0x63,0xa5,0xfa,0x58,0xa8,0x3e,0xb4,0xcf,0xa2,0xd2,0x5d,0x34,0xbb,0xa2,0x04, - 0x59,0x74,0x18,0x3f,0x7c,0x8b,0xdf,0xb5,0x5e,0x12,0xd5,0xe2,0x02,0xee,0xf1,0x47,0x93,0x01,0x96,0x0e, - 0xa1,0xe8,0x40,0xe9,0xc8,0x2f,0x5a,0x00,0x38,0xa1,0x06,0x67,0x37,0xf6,0xff,0x24,0xcc,0x40,0xd5,0x88, - 0x63,0x00,0xd8,0x41,0x7e,0xaf,0x5f,0xb8,0xbf,0xcb,0xfc,0x8a,0x95,0x08,0xd4,0xa3,0xda,0x6d,0xcf,0x68, - 0xf6,0x1b,0x6a,0x26,0xb0,0xc5,0xde,0xfd,0x34,0x58,0xf1,0xdb,0xab,0xb8,0x37,0x34,0xbc,0x88,0x91,0xa1, - 0x97,0x4a,0x99,0xcb,0x57,0xa1,0x75,0xab,0xf7,0xcb,0xcc,0xdb,0xe9,0xee,0xf9,0x1e,0xab,0x08,0xdc,0xd1, - 0x1e,0x38,0x7e,0x89,0x16,0xbd,0xb0,0xd7,0x88,0xac,0xae,0x9e,0x14,0xe4,0x11,0xf3,0x0e,0x3b,0x90,0x55, - 0x11,0x1b,0xcd,0x83,0xa6,0x69,0x3c,0xab,0xcc,0xe3,0x07,0xba,0xd1,0x8d,0x87,0x37,0x50,0xd7,0x2e,0x83, - 0x5e,0x2f,0xb9,0x2f,0xe7,0x44,0xdc,0xbd,0x40,0x25,0x28,0xeb,0x8d,0xa8,0x9a,0x24,0xf4,0x02,0xfa,0x54, - 0x4f,0x6f,0xd2,0xe0,0xbd,0xbe,0xcb,0x31,0x18,0xc4,0x8e,0x7e,0xe4,0x9c,0xa4,0x2e,0xe5,0xe3,0x0c,0xd0, - 0x1f,0x08,0x89,0x08,0x04,0x9c,0x61,0x6a,0xbf,0x68,0x42,0x81,0xbe,0xef,0xf4,0x9c,0x7e,0x54,0x22,0xd4, - 0x4d,0x7d,0xec,0xfa,0x51,0x95,0x3a,0xad,0x2f,0x40,0x50,0xff,0x4d,0xf8,0xd2,0xf1,0x0c,0x57,0xc4,0x66, - 0x3b,0x95,0x4d,0x68,0x85,0x07,0x32,0xc2,0xb0,0xe6,0xf8,0xd0,0xef,0x68,0xdb,0x92,0x5b,0x93,0xa0,0x2d, - 0x96,0xf3,0x2e,0x6b,0xe0,0xad,0xd7,0x0e,0xfa,0xc1,0x99,0x56,0x78,0x20,0x5f,0xc5,0xbb,0x55,0x26,0x7e, - 0x3a,0x74,0xac,0x25,0x73,0x16,0xe1,0x54,0x57,0xb9,0xfc,0xdb,0x19,0xfe,0x67,0x2c,0x2b,0x20,0x4e,0x70, - 0x7c,0xa7,0x6e,0x4a,0xe2,0xf4,0x89,0x4d,0xf1,0x46,0x27,0x89,0x7c,0xf9,0x74,0x84,0xfa,0xcc,0x87,0x3b, - 0x7d,0x57,0xda,0xc7,0xd8,0x47,0x4e,0xa0,0x4a,0xd2,0xf2,0x06,0x27,0xff,0x36,0x85,0x23,0x24,0x11,0x93, - 0x57,0x5f,0x66,0x47,0xa0,0x28,0x0a,0xa5,0xd8,0x1d,0x70,0xaf,0xb5,0xc5,0xa6,0xa4,0x49,0x88,0xe4,0x81, - 0x1a,0xd7,0xc8,0x95,0xb6,0xd0,0x0d,0x71,0x08,0x1d,0xc6,0xb0,0xd4,0x9c,0x42,0x8a,0x77,0xee,0x5c,0x52, - 0xc3,0xae,0x6c,0xb9,0x8c,0xd7,0x09,0x32,0x8f,0x3b,0x4a,0x42,0x9a,0x09,0x15,0xa5,0xcf,0x4b,0x6e,0xc4, - 0xee,0xc4,0xbb,0xa6,0x02,0x8f,0xf6,0x19,0x5d,0xd2,0xb8,0x68,0x00,0x26,0xdc,0xf6,0x11,0x95,0x1f,0x7b, - 0xa2,0xfb,0x82,0x52,0xb4,0x00,0xb5,0x62,0xda,0xfd,0x0b,0x65,0x79,0xba,0x4e,0x95,0x4e,0xa9,0xfd,0x03, - 0xe8,0x11,0x48,0x7d,0x03,0x5f,0x77,0x26,0x0c,0x87,0xce,0xc7,0x41,0x8b,0x60,0xba,0xbf,0x09,0x2a,0xad, - 0xed,0xb6,0x36,0xcb,0xa5,0x3a,0xad,0x45,0x43,0xe8,0x86,0xfa,0xee,0xf1,0xe0,0xb3,0x8f,0x01,0x71,0x80, - 0xa0,0xa5,0x13,0xb2,0x15,0xab,0x34,0xf0,0x15,0xe1,0x35,0xf6,0x1f,0x8f,0xdb,0x4b,0xa2,0x06,0xc3,0xef, - 0xb6,0x9a,0x17,0x02,0x20,0xc1,0x8e,0x9b,0xae,0xa5,0x1d,0x59,0x15,0x0c,0x0a,0xba,0x7d,0xfe,0x2a,0xcc, - 0x46,0x7a,0x94,0x81,0xca,0x80,0x0e,0x1a,0x41,0x6f,0xa0,0x46,0xe5,0x2f,0xc2,0xc6,0xb1,0x96,0xf5,0x19, - 0x02,0x5d,0x77,0xe7,0x29,0xab,0x71,0x78,0x2c,0x91,0x32,0xbc,0x40,0x0b,0x5e,0x99,0xa1,0xbc,0x59,0xf1, - 0x8a,0x2c,0xbc,0xe1,0x84,0x0a,0xd0,0x6d,0x07,0xb0,0xaa,0xb5,0xa3,0xf4,0x4c,0xcc,0x23,0xe5,0xd0,0xe9, - 0xcf,0x3c,0x5f,0x76,0x42,0xfa,0xf7,0x1d,0x7d,0x7e,0xd4,0x6a,0xaf,0xfc,0x59,0x25,0x59,0x71,0x8b,0xf5, - 0x1a,0x0a,0xd3,0xb2,0x0f,0xa7,0x8b,0x15,0xdd,0x4e,0x4e,0xfd,0xe9,0xca,0xd1,0xe6,0x82,0xd5,0x46,0xec, - 0x7c,0x9d,0xd6,0xc5,0x84,0x84,0x49,0x3b,0x71,0xbf,0x79,0x85,0x65,0x1a,0xb1,0xc5,0x18,0x5f,0x8a,0x06, - 0x83,0x0c,0xd7,0x22,0x91,0x00,0x3c,0x05,0x86,0x2d,0x25,0x78,0xf0,0x1b,0xe6,0x79,0x6e,0x6e,0xc2,0x10, - 0x5d,0x9d,0x0d,0x6c,0x88,0xb1,0x7c,0x43,0xf4,0x54,0xd4,0xe5,0x92,0x02,0x84,0xac,0x72,0xc0,0x05,0x61, - 0x25,0x71,0x45,0x28,0x17,0x13,0xd5,0x5e,0xc9,0x49,0x83,0xdf,0x73,0x38,0xdc,0x79,0x1a,0xff,0x18,0xcf, - 0xca,0xd7,0xcb,0x38,0x45,0x91,0x32,0xf3,0x6b,0x4b,0x11,0x14,0x89,0xdf,0x90,0x85,0x06,0x3f,0xc5,0xbe, - 0x25,0x3c,0xf8,0x2e,0x23,0xfe,0x61,0xba,0x9a,0x74,0xab,0xdc,0x70,0x2c,0x47,0x3e,0xe5,0x3a,0x40,0x96, - 0x0e,0xf9,0xe7,0xb1,0x47,0x88,0xc1,0xbb,0x2c,0x21,0x30,0xf1,0xb1,0x22,0xff,0xee,0x26,0x51,0x7b,0x70, - 0xf4,0x02,0x68,0xe7,0x3b,0x1b,0xf0,0x0f,0xc9,0xba,0xaf,0x4f,0x82,0x4f,0xbc,0x4b,0x92,0x2a,0x77,0x1e, - 0xbe,0x79,0x18,0x93,0xe8,0x42,0x7d,0x37,0x1e,0xe1,0xc4,0xc6,0xf0,0x8c,0x0a,0x81,0xd1,0x0f,0x86,0xe5, - 0x3b,0xbe,0xba,0x73,0x32,0xee,0xaf,0x8f,0x89,0xc2,0xf6,0xc6,0x9f,0x8d,0x8e,0x3d,0xb0,0x7b,0xe1,0xe3, - 0xf5,0x1f,0x7a,0x04,0xf4,0xf3,0xd8,0xdd,0xf3,0xbf,0x57,0x35,0x8e,0x88,0xad,0x23,0xe6,0xee,0xe4,0xce, - 0x18,0x55,0xc7,0xe0,0x0c,0x89,0xba,0x6e,0x24,0xae,0x8f,0x8f,0xee,0x11,0x7d,0x7f,0x6f,0x4c,0x1f,0x0e, - 0x7d,0x38,0xf8,0x20,0x32,0x18,0x7f,0x9a,0x65,0xc7,0xde,0x67,0xd4,0x2c,0x51,0xee,0xdf,0x82,0xd4,0x29, - 0x26,0xc1,0xfd,0x7f,0xc2,0x99,0x51,0xf0,0x95,0xa8,0x59,0x04,0x07,0x0f,0x7c,0x59,0xef,0x07,0xf7,0xfd, - 0xd5,0x32,0x78,0xf0,0x25,0x71,0xc8,0xb3,0x32,0x78,0xf0,0x4f,0x3f,0xc7,0xeb,0x49,0xf0,0xe0,0x2b,0x1f, - 0x5e,0xb0,0x83,0x87,0xfb,0xbe,0x3c,0x60,0x06,0x47,0x5f,0xfa,0x0f,0xbf,0x20,0x26,0xe4,0x5f,0x59,0x97, - 0x5f,0x2e,0xa0,0x9c,0x3e,0x80,0xc7,0xf2,0x99,0x35,0x24,0xb6,0xe9,0xf7,0x0c,0xc2,0x20,0x82,0x07,0x7d, - 0xa8,0xf1,0x03,0x00,0x12,0xcd,0x23,0x11,0x21,0x0e,0xa1,0x51,0xc1,0x79,0xa6,0x8c,0xfa,0xfd,0x5c,0x1e, - 0x1c,0xb9,0x08,0xe2,0x92,0x05,0xff,0xca,0xdc,0x3a,0x6e,0xe8,0x11,0xc6,0xe9,0xa9,0x94,0xc9,0x2a,0xc7, - 0x26,0x1d,0x72,0x06,0x1d,0xe0,0x49,0x99,0x2f,0xb8,0xc6,0x8e,0x2e,0x40,0x09,0x3f,0x40,0x43,0xd7,0x67, - 0xdf,0xa1,0xb5,0x3c,0x4e,0x91,0xcc,0x68,0x51,0xcf,0xa2,0xdf,0x92,0x01,0x79,0x41,0x2d,0x07,0x09,0x92, - 0xc5,0x6b,0x87,0xac,0x7b,0xe2,0x15,0xea,0x1e,0x08,0x23,0x29,0xd5,0xbb,0x7b,0x57,0x8f,0x50,0xf2,0x78, - 0xcc,0xfb,0x68,0x2f,0x99,0x4e,0x17,0xf1,0x27,0x55,0x3b,0x80,0x5c,0x81,0xf7,0xe7,0x53,0x6a,0xdd,0x07, - 0xfc,0xff,0x46,0x1b,0x41,0x5c,0x63,0xd3,0x1f,0x0b,0xdc,0xc0,0x55,0x51,0xed,0x3a,0x36,0xf6,0x64,0x2e, - 0x1b,0xeb,0xd7,0x30,0xc4,0x06,0xde,0x4a,0xd2,0xb6,0x1f,0x1c,0x34,0xc7,0xe1,0xf3,0x2a,0x6b,0xa1,0xaa, - 0xa5,0x53,0x6a,0x29,0xa5,0x96,0xee,0x41,0xfe,0x45,0xe7,0xad,0x0f,0xe6,0xbb,0x6a,0x15,0x77,0x9f,0x45, - 0x49,0xc3,0xd1,0x51,0xa5,0x8e,0x88,0xc7,0xb0,0x91,0x90,0x3a,0x81,0xa2,0x99,0xbc,0x1b,0x8a,0x73,0xf4, - 0x69,0xc7,0x57,0xe5,0x1d,0x4f,0x8d,0x79,0xb2,0xc8,0xa2,0x73,0xc4,0xd5,0xfd,0xcf,0xac,0xed,0xf5,0x34, - 0x33,0xce,0x32,0xf9,0x27,0x24,0x91,0x74,0x27,0xe2,0xcf,0x7a,0xfd,0xbb,0x4a,0x34,0xc2,0xcb,0x22,0xfc, - 0x0d,0x62,0x78,0xad,0x98,0xee,0x98,0x8c,0x67,0xc4,0x31,0x68,0x0f,0xee,0x78,0x67,0xfc,0x36,0x4e,0x11, - 0xc1,0xaf,0x5e,0x5a,0x49,0x1d,0x4d,0x39,0xc3,0x71,0x84,0x97,0x2e,0x2b,0x5a,0xfc,0x96,0xb1,0x69,0xb4, - 0x49,0xf7,0x4c,0xf4,0xae,0x1a,0x02,0x5d,0xaf,0x9f,0xa5,0x43,0xe5,0x1b,0xf9,0xc3,0x69,0x6c,0x02,0x31, - 0x76,0x6c,0xe4,0x8e,0x31,0xe3,0x55,0xfe,0x31,0xd3,0x49,0xfc,0x02,0xd6,0x5a,0xfc,0xab,0x19,0x70,0x10, - 0x3e,0xba,0xe3,0x28,0x74,0x6d,0xa1,0xd0,0xf1,0xf1,0xa9,0xd3,0x77,0xa6,0x84,0xc3,0x67,0x10,0xc0,0x11, - 0xd0,0x97,0x08,0xa8,0x4b,0x8b,0xfc,0x81,0x1d,0xb3,0x4d,0x20,0xfc,0xc3,0xb5,0xe7,0x5f,0x25,0xe5,0x99, - 0x1f,0x5d,0x45,0x49,0xe9,0xb3,0x61,0x80,0xcf,0x3e,0xd0,0x95,0xf2,0x3c,0x3f,0x03,0xf9,0xec,0xb8,0xd4, - 0xe7,0xb8,0xf4,0xfe,0x15,0xa1,0xd5,0xd8,0xff,0x00,0xa9,0x9f,0x42,0x36,0x3e,0x31,0x67,0x19,0xbc,0x1d, - 0xb2,0x27,0x16,0x5f,0x66,0xa0,0x3d,0x80,0x69,0xbf,0x8b,0xe2,0x2e,0x94,0xd8,0x18,0x09,0x51,0xcf,0x4e, - 0xd0,0x92,0x74,0x05,0xd7,0x3d,0xa7,0xab,0xf9,0x1c,0x62,0x42,0xb5,0x0a,0x55,0xd0,0x15,0x47,0xf9,0xa9, - 0xc1,0x9d,0xa0,0x6e,0x07,0x9a,0xd6,0x1a,0x53,0xf3,0xfa,0x3c,0x43,0x09,0x12,0xdc,0x98,0xb3,0x0c,0x4a, - 0xfc,0x8e,0xb2,0x02,0x7b,0x67,0x3b,0x84,0xd2,0x81,0xf0,0x8f,0x8f,0x09,0xe5,0xd3,0x3f,0x55,0xab,0x8d, - 0x0c,0xea,0xc3,0x7d,0xd6,0x94,0xfc,0x88,0x28,0x62,0xab,0xd5,0x28,0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7, - 0xe1,0xce,0x81,0xe7,0x9f,0x66,0x6a,0x3f,0xd9,0x40,0x0c,0x12,0x6e,0x2b,0x62,0xcb,0x30,0x7d,0xf4,0x21, - 0xb3,0x9d,0xb3,0x7c,0xc8,0xd8,0x0e,0x17,0x2f,0x39,0x67,0x59,0x58,0x56,0x50,0x7d,0x8a,0x5f,0xfa,0xae, - 0x07,0x38,0xf9,0x27,0x48,0xb1,0x6e,0x72,0x4e,0xbc,0x42,0x62,0xe3,0xaa,0xe6,0x8c,0x8b,0x0c,0xa0,0x5d, - 0x76,0x1c,0x84,0x57,0x72,0x10,0xe6,0xcd,0x02,0x4d,0x31,0x0d,0x95,0xf9,0xd0,0x2a,0x93,0x15,0x65,0xb3, - 0xd0,0x25,0x86,0x40,0x3b,0x91,0x5c,0x24,0x25,0x02,0x22,0x2a,0xa3,0x5c,0x22,0x4f,0x59,0xf9,0x64,0xe7, - 0x80,0x75,0x3d,0x11,0xe3,0x1c,0xa7,0xe3,0xd7,0x33,0x2a,0xc5,0xc3,0xf4,0xb1,0x5e,0xa0,0x53,0x0f,0x5a, - 0x96,0x19,0xcd,0x45,0xa6,0x5f,0x8b,0x3e,0x5e,0xf0,0xa0,0xd6,0xba,0x3a,0x95,0xb7,0x05,0xd7,0xb6,0x9a, - 0xce,0xb5,0x1f,0x01,0xd6,0xbf,0xf3,0x8b,0x2a,0x7e,0xbd,0x68,0xf2,0x2d,0x3c,0xf5,0xf6,0x86,0xe7,0x86, - 0x1c,0x3f,0x65,0xc7,0x1a,0x0f,0xb2,0x94,0xcc,0xaa,0xfe,0x49,0x18,0x55,0x41,0xed,0x93,0xc7,0x21,0x71, - 0x3d,0x11,0x42,0xc1,0x2c,0x74,0x51,0x1c,0x72,0x9a,0x57,0x81,0x90,0x6a,0x9a,0xa6,0x0c,0xf9,0xd9,0x17, - 0xa5,0x2d,0x03,0x4c,0xbb,0xa1,0xc9,0xe3,0x30,0x19,0x4e,0xa8,0x42,0x39,0x60,0x2f,0x2b,0xfc,0x87,0xfd, - 0xad,0xb3,0x64,0x02,0xe3,0x1f,0xea,0xe2,0x21,0x16,0x30,0xe1,0x6e,0x77,0x0f,0x38,0x9f,0xb9,0x23,0xe7, - 0x34,0x07,0x85,0x57,0x8c,0x98,0xb0,0xca,0xd9,0x69,0x3d,0x7f,0xd0,0xfc,0x69,0xb9,0x77,0xf6,0xc5,0x33, - 0x82,0xb3,0xe4,0x52,0x1c,0x07,0xb7,0xb3,0xdc,0x01,0x97,0xf3,0x6b,0x03,0x91,0x15,0xa4,0x45,0xd5,0xce, - 0x11,0xe0,0xe9,0x04,0x9b,0x08,0x65,0xf4,0x4a,0x2a,0x43,0x5b,0x56,0x0e,0x2a,0xfa,0x92,0xa1,0x6d,0x85, - 0x17,0xe7,0x06,0x55,0xc9,0x19,0x0b,0x5a,0x94,0x78,0xc8,0x42,0xbe,0x84,0x10,0x38,0xb1,0x24,0x4f,0x32, - 0x37,0x33,0xea,0x6c,0xb0,0x4b,0xcd,0x1a,0x6f,0xe2,0xcb,0xf0,0x6d,0x76,0x34,0x45,0x88,0x28,0xfe,0x5b, - 0x93,0x7f,0x13,0x01,0x77,0x5c,0x1c,0x1f,0xbf,0x25,0xd2,0xcd,0x73,0x1f,0xed,0x39,0xfd,0xa9,0x16,0x84, - 0x7b,0x74,0xe2,0x13,0xf0,0xd2,0xb0,0xce,0xd2,0xa2,0xed,0xa5,0x2d,0xd3,0x66,0xf0,0xd0,0x90,0x66,0x2c, - 0x61,0x7d,0x1a,0xcf,0x94,0xf9,0x3f,0xe5,0x77,0x12,0x0b,0xc7,0xb1,0x91,0xc3,0xca,0x01,0xd5,0x1e,0xc4, - 0xe8,0xd4,0x77,0x21,0x3d,0xef,0xee,0x3e,0xde,0x9b,0x13,0x8b,0x41,0xb7,0xbe,0x5d,0xe4,0xf8,0xe8,0xd9, - 0xf3,0x27,0x87,0x4f,0x8e,0x8f,0xaa,0x92,0xe3,0xb1,0x29,0x09,0xa1,0xb2,0x3b,0xf5,0xc5,0xed,0x32,0xf4, - 0x59,0x94,0xcf,0x26,0x0e,0xa3,0x77,0x16,0xc9,0x45,0xc9,0x1f,0x50,0x82,0x70,0x20,0x7f,0x21,0x98,0xd7, - 0x3a,0x3a,0xbb,0x67,0x7a,0xbc,0x71,0x78,0xe6,0xe7,0xd4,0xd0,0x62,0x77,0x86,0x48,0xd4,0xc6,0x0e,0xe9, - 0x32,0xb4,0x94,0x01,0x1e,0x89,0x0c,0x00,0x6a,0x98,0x97,0xbc,0xf8,0x8b,0x4c,0x47,0xd4,0xd2,0x16,0x64, - 0xb6,0xea,0xc0,0xee,0xf1,0xfb,0x07,0xb1,0x54,0xb9,0x60,0xf0,0x2d,0x55,0x78,0x46,0x44,0xaa,0x50,0x2a, - 0x88,0x2a,0x3c,0x82,0x72,0x58,0x52,0x9d,0xc2,0x87,0x3e,0x6c,0x6d,0x53,0xf7,0xa2,0xff,0x80,0x58,0x3c, - 0x85,0xea,0x37,0xd0,0xeb,0x9a,0x35,0xfa,0x9c,0xdb,0x7d,0x8e,0x1f,0x4b,0x7f,0x73,0xee,0x2f,0x75,0xe7, - 0xfd,0xfb,0x76,0x75,0x94,0x87,0x86,0x34,0xbb,0xa7,0x75,0x57,0xa2,0x72,0xf8,0x01,0x05,0x3f,0xe0,0x6d, - 0x59,0x07,0x34,0x34,0x15,0x50,0xfe,0xd4,0x94,0x9f,0x48,0xf9,0x53,0xe9,0xf7,0x24,0x5c,0x0c,0x53,0xf7, - 0xd4,0xaa,0x47,0x0b,0x78,0x7a,0x74,0x30,0xf6,0x4f,0x98,0x2d,0xb5,0xdb,0xb8,0x6a,0xc6,0x4a,0x29,0x4d, - 0xa3,0x91,0x34,0x6a,0x22,0xff,0x5d,0x6b,0x8f,0x7f,0x25,0x9a,0x62,0xce,0x23,0xc0,0x61,0xc1,0x29,0x0b, - 0x16,0x1b,0xea,0xb2,0xb4,0x87,0x6a,0x9d,0xaa,0xe1,0x0e,0x0e,0x83,0x6a,0xb6,0xc8,0xd8,0xf8,0x23,0x33, - 0x09,0x39,0x25,0x0c,0xbd,0xd4,0xcd,0x6a,0x03,0x56,0xfe,0x23,0x75,0x20,0x4e,0x9c,0xa7,0xca,0x06,0x73, - 0x85,0xb3,0xf8,0x96,0x6e,0x71,0x42,0x1b,0x18,0x4c,0xea,0x26,0xf5,0xca,0xf0,0x7d,0xbe,0xf0,0xf3,0xcd, - 0xc6,0x15,0xab,0x29,0xef,0xba,0x15,0x6a,0x21,0x0d,0x8d,0x9b,0x42,0xb6,0xba,0xa8,0xda,0x64,0xee,0x5f, - 0x30,0x0a,0x9d,0xdf,0x54,0x5c,0x87,0xe7,0x34,0x0a,0x7f,0xc5,0x9f,0x99,0x38,0x80,0xce,0xf9,0x81,0x5c, - 0x4f,0x73,0x11,0x4e,0xd8,0x5b,0xc3,0xce,0x4e,0xc2,0x3e,0x78,0x64,0xf8,0x0a,0x86,0xa7,0x7c,0xa8,0x45, - 0x32,0x35,0xc3,0x89,0xdf,0x1f,0x2e,0x1f,0xcd,0x86,0x4b,0xad,0xe4,0x77,0xa6,0x2b,0x1c,0x2d,0xc7,0xc3, - 0x25,0x75,0xba,0x0b,0x6b,0xb9,0x33,0xcc,0x49,0x03,0xd0,0x3d,0xc7,0xb9,0x87,0x75,0xe3,0x37,0xaa,0xb3, - 0xa3,0x07,0xe3,0xbb,0x77,0x95,0x42,0x27,0x7e,0xf8,0x2a,0xf9,0xa1,0x9d,0xfc,0xd0,0x24,0x7f,0x6e,0x27, - 0x7f,0xae,0xac,0x09,0x2f,0xb9,0x99,0xf5,0x1a,0x05,0xf1,0xef,0xe7,0xf4,0xaf,0xe3,0xf8,0x17,0xa1,0x13, - 0x69,0x17,0xd7,0x70,0xdf,0x2c,0x2d,0x1c,0x8c,0x47,0xfa,0x8c,0x3c,0x8f,0xe1,0x52,0xf7,0x55,0x7c,0x05, - 0x97,0xa8,0xc5,0x37,0x59,0xfe,0x1d,0x95,0x0a,0xba,0x73,0x87,0x53,0x9a,0x91,0xd2,0x5d,0x47,0x23,0x3e, - 0x93,0xd8,0xc1,0x0f,0xa5,0x7b,0x49,0xc7,0x68,0xb3,0x59,0xb0,0xea,0x33,0x6f,0x32,0x2b,0xb0,0x12,0x02, - 0xb5,0x6f,0x9c,0x20,0x6d,0xe0,0x4a,0x81,0xba,0x29,0x3c,0xd2,0x87,0x1c,0x17,0xa1,0x81,0xec,0x53,0xd8, - 0x92,0xf1,0x93,0x37,0xfd,0x82,0x47,0x9b,0x74,0xea,0x6d,0x68,0xfb,0x81,0x8b,0x32,0x3f,0x66,0xd7,0x0b, - 0x07,0xcd,0x73,0x77,0xa8,0x4d,0xc6,0xcf,0xf5,0xc7,0x7b,0xf5,0x01,0xd8,0xb9,0x34,0xf7,0xdb,0xb9,0x71, - 0xec,0x7c,0xe9,0x11,0x48,0x4f,0xd4,0x71,0x3f,0x87,0x1b,0x57,0xeb,0x7b,0x61,0x7d,0xcf,0xac,0x6f,0xf7, - 0x7d,0x78,0x6e,0x63,0x2c,0x9f,0x70,0xe1,0xa3,0x7d,0x02,0xfd,0xcb,0x7e,0xf8,0xde,0xaf,0x35,0x7e,0x58, - 0xbb,0xf7,0xf7,0xfd,0x4b,0x20,0x9c,0x4b,0x6f,0x73,0xc9,0xe2,0x48,0xca,0x25,0xac,0x08,0xcb,0x71,0x83, - 0x49,0x0f,0x2b,0x64,0x7a,0xc8,0x3a,0xa6,0xb1,0xa8,0x29,0xb7,0x50,0x6d,0xac,0x4d,0x64,0x37,0xb9,0xcb, - 0x32,0x22,0x89,0x12,0x72,0x96,0xf9,0xd6,0x33,0x44,0xed,0xf6,0xb3,0x24,0x2b,0xf6,0x35,0xd8,0x21,0x54, - 0x69,0xdd,0x88,0x7e,0x17,0x48,0x6c,0x81,0x94,0xce,0xb2,0x37,0x03,0x97,0xca,0xf5,0x5b,0xa8,0x3b,0x30, - 0x98,0xbb,0x50,0xe8,0xc9,0xba,0x16,0x23,0x58,0xbf,0xca,0x89,0x15,0x01,0x69,0xb1,0x5e,0x5f,0xe1,0x8d, - 0x73,0xf8,0x0a,0x20,0x0f,0x97,0xd9,0xb4,0x76,0x88,0x72,0x55,0x0f,0x48,0x51,0x29,0x3b,0x13,0xd2,0x13, - 0xd2,0x36,0xb6,0x29,0x5b,0x2d,0xbc,0x44,0x7c,0xd4,0x5f,0x32,0xad,0x3b,0x99,0x2a,0x9d,0x49,0xf9,0x0a, - 0xe5,0x8f,0xb9,0x44,0x7f,0xce,0x7c,0xd9,0x46,0x3e,0x01,0xa0,0x45,0x4c,0x0c,0x3d,0x28,0x97,0x2b,0x79, - 0xe2,0xf7,0x25,0x0f,0x3b,0xa1,0x0b,0x12,0x12,0x45,0x1a,0x31,0xe8,0xb9,0x1d,0xe5,0x40,0x9f,0x3d,0x2a, - 0x4e,0xc3,0x99,0x27,0xca,0xcc,0xfa,0x39,0x1a,0xc9,0x53,0x51,0xbe,0x9e,0xd6,0xe5,0xa9,0x34,0x49,0x88, - 0xed,0xf6,0xde,0x45,0x97,0x91,0x5d,0xb6,0x56,0x88,0xc6,0x8c,0x18,0xb5,0x1e,0x77,0x48,0x53,0x3f,0x65, - 0x4f,0xf0,0x1c,0x88,0x52,0x2f,0xc4,0x54,0xe1,0xb1,0xb9,0x21,0xf0,0x81,0xcf,0x66,0xe1,0x3c,0xa3,0x33, - 0xef,0xce,0x88,0xa4,0x25,0xf8,0x67,0xc5,0x40,0x9a,0xff,0x45,0x38,0xf3,0xcd,0x43,0xe3,0x05,0x1e,0xd5, - 0x20,0xbb,0x43,0xf3,0x17,0x20,0x95,0xd9,0xd4,0x60,0x56,0xf1,0x15,0xfb,0x1e,0x33,0x16,0x33,0x8b,0xb1, - 0xc0,0x8b,0x64,0x67,0xf4,0x62,0x23,0x2c,0x33,0xee,0x2e,0xed,0x28,0x8d,0xe6,0x55,0xd5,0x42,0xc1,0xa5, - 0xf6,0x43,0x53,0x72,0x04,0x4f,0x78,0xe9,0x51,0x38,0xca,0x6a,0x8d,0x12,0x25,0x2e,0x89,0xa0,0xac,0x86, - 0x92,0x4f,0xa3,0xa0,0x84,0x25,0xdd,0x68,0x8f,0x9a,0x34,0x0f,0xd6,0xb5,0x63,0xa1,0x9d,0x44,0xc5,0x9e, - 0x79,0xc1,0xac,0x7a,0x0b,0xa5,0xdc,0x7f,0xc1,0x98,0xbf,0x23,0x52,0xa9,0xf5,0x66,0xab,0xee,0xdf,0x18, - 0x8f,0xa6,0x25,0x1e,0x19,0x63,0x79,0x64,0x2c,0xd5,0x23,0x63,0xbc,0x51,0x46,0xd6,0x1d,0x4f,0xb8,0xa2, - 0xcb,0xac,0x9e,0x1f,0x75,0xec,0xc4,0xe6,0x83,0xae,0xd6,0x66,0x52,0xef,0x92,0x70,0xa8,0x8b,0x41,0x5d, - 0xda,0x9b,0x75,0x89,0x0a,0x60,0xd2,0xb9,0xc9,0x4b,0xe6,0xd7,0x79,0x37,0xbe,0x2d,0x79,0x93,0x69,0x2d, - 0x47,0x1a,0x02,0xd6,0xeb,0x9c,0xc6,0xca,0x30,0x23,0x4d,0x12,0x04,0xf0,0x17,0x55,0xa5,0xe1,0xe7,0x32, - 0x7c,0x9d,0xa9,0x66,0x31,0xdb,0x78,0x41,0x4e,0x3d,0xd2,0x69,0xdc,0xb1,0x60,0x0d,0x26,0x42,0xad,0x66, - 0x76,0x6e,0xe6,0x55,0xed,0x53,0x6a,0x0e,0x27,0xc7,0xd7,0xd3,0x16,0xe8,0x31,0x87,0xd6,0x03,0x80,0x6b, - 0xc9,0x2d,0x25,0x20,0x28,0x6c,0xb6,0x84,0xe9,0xaf,0x5b,0x39,0xb9,0xe1,0xb5,0x49,0x79,0x3a,0xbf,0xe3, - 0x62,0xe1,0xa1,0xc7,0xf5,0xa1,0xc3,0x22,0x83,0x16,0xcc,0xc8,0xd8,0x67,0x03,0x58,0x28,0xb0,0xd3,0x2f, - 0x8e,0x22,0x2e,0xdb,0x7f,0x20,0xfa,0x24,0xa1,0xe4,0x8a,0x5c,0x70,0xbd,0xbe,0xe7,0x28,0xf9,0x81,0x73, - 0x6f,0x48,0xdd,0xd6,0x82,0xbd,0xd5,0x7f,0xb3,0x19,0xc1,0xd1,0xd9,0x38,0x9c,0x89,0xb1,0x75,0x35,0x46, - 0xc1,0x1b,0x33,0x3e,0x3a,0x12,0x96,0x2d,0x91,0xab,0xdd,0xbf,0x18,0xae,0x46,0x29,0x80,0x8e,0x28,0xaf, - 0x99,0x9f,0xe9,0x82,0x88,0x33,0x96,0x76,0xe8,0xd5,0x67,0x47,0x99,0x61,0xdb,0xc6,0x7e,0x69,0xb9,0xc7, - 0x3a,0x6a,0xf9,0xc4,0xa2,0x12,0x08,0xbe,0xfc,0x00,0xda,0x20,0x1a,0xa1,0xf4,0x1c,0xf9,0xc5,0xee,0x14, - 0x76,0x26,0xd0,0xb4,0xae,0xc6,0x88,0xa5,0xf5,0x4d,0xfb,0xe1,0x01,0x91,0x5b,0xf5,0xfe,0x52,0x71,0xb8, - 0x8d,0x0b,0xaa,0x26,0xe5,0xd7,0xc1,0xc5,0x5e,0xa5,0xf6,0xd3,0x91,0x78,0x34,0x01,0x62,0x4b,0x2a,0x9c, - 0xb5,0xac,0xdc,0x71,0xc0,0xb4,0xdb,0x33,0xa7,0xa9,0xe6,0xfc,0x23,0x0e,0x27,0x08,0xfc,0x28,0x4f,0x38, - 0x23,0x17,0xa1,0x36,0x9d,0x8a,0x0b,0xca,0xb5,0xad,0x0a,0xa3,0x55,0x9d,0x30,0x8a,0x83,0xa7,0x19,0xbb, - 0xf5,0x63,0x97,0xe7,0x32,0xea,0x11,0xcd,0x18,0xe2,0x3c,0xe5,0xf1,0x6d,0xa7,0xe0,0x35,0xd8,0x61,0xdf, - 0x7d,0x6e,0x53,0x7a,0x22,0x50,0x7a,0x99,0x8d,0x7e,0x4f,0xdc,0xcb,0xcc,0x0b,0xbe,0x4d,0x98,0x5b,0xaf, - 0x98,0x05,0xe3,0xfc,0xcd,0xb7,0x58,0x50,0xfa,0x67,0x02,0x17,0xbe,0x51,0x51,0xbe,0x00,0xd1,0x00,0x84, - 0xc5,0xf1,0x7c,0xe2,0x09,0x2e,0x2b,0xef,0x9a,0x76,0x36,0x17,0x7a,0xc2,0x7b,0x8c,0xa7,0x26,0x4d,0x2c, - 0x1b,0x42,0x62,0x02,0x2b,0x5d,0x5f,0x91,0x57,0x0d,0xfc,0x95,0x69,0x0d,0xc5,0x55,0xf8,0xaf,0xd8,0xb5, - 0xdd,0x21,0x0f,0x55,0x05,0x79,0x8c,0x59,0xc9,0x23,0x94,0x6a,0xfb,0xda,0xf9,0x8f,0x53,0xd1,0x14,0x74, - 0xa0,0x33,0x41,0x03,0x4c,0xfa,0x79,0x45,0x79,0xeb,0xdb,0x6b,0xf2,0xa8,0x32,0xb5,0xe8,0x18,0xd6,0x8d, - 0x83,0xe2,0x73,0x06,0x8d,0x3e,0x18,0x24,0x45,0x4a,0xa4,0xd5,0x67,0x75,0xc1,0xf3,0x38,0x2d,0x82,0x62, - 0xc3,0x91,0x81,0xbc,0x51,0xa9,0xc9,0x46,0x58,0x81,0xde,0xf7,0xad,0x5a,0x58,0x24,0xfd,0x43,0x57,0x03, - 0x21,0x89,0x0f,0x79,0xd3,0xa2,0x73,0x1b,0x08,0xcc,0xc6,0xd5,0x9e,0x1a,0x30,0x3e,0x2a,0x2b,0xd8,0x64, - 0x90,0x86,0xd2,0xb8,0xd5,0xd9,0x03,0xd3,0x88,0xd0,0x8f,0x39,0x1b,0x84,0xb7,0xdc,0xc4,0x37,0x8f,0x69, - 0xbd,0xb2,0x6f,0x6c,0xdd,0x82,0x9d,0x7d,0x36,0x8f,0x20,0x76,0xc5,0xd5,0xb0,0x89,0x38,0xc6,0x4a,0x90, - 0x04,0x69,0xf0,0x45,0xf2,0x67,0xcc,0x72,0x1c,0x36,0x85,0xf2,0x21,0xd3,0x39,0xcc,0xc2,0x7f,0x67,0xc0, - 0x13,0xd6,0x73,0x13,0x68,0x89,0x73,0xbc,0x92,0xb6,0x64,0xb3,0xe6,0x9e,0x81,0x09,0x8f,0xb8,0x92,0x51, - 0x35,0x43,0xba,0x5b,0x4b,0xff,0x3e,0x75,0x35,0x51,0x87,0xd9,0xc5,0xc9,0x96,0x1f,0xc4,0xce,0xb8,0x3b, - 0x13,0x75,0x2d,0x4f,0x60,0x99,0xa0,0x14,0x45,0xa9,0x33,0xa8,0xe8,0xe0,0xdf,0x19,0x22,0x7f,0xcd,0x53, - 0x97,0x8d,0xa9,0xc0,0x00,0x9d,0x67,0xe6,0xbb,0x6d,0x02,0x6a,0x0c,0x40,0x59,0x0d,0x4a,0xc7,0x85,0x50, - 0x5e,0xa1,0x8d,0xeb,0x20,0xae,0x5e,0xb3,0x24,0x40,0x37,0x95,0x7d,0xa8,0xf1,0x19,0x43,0xc0,0x44,0x3d, - 0x2a,0xa3,0x32,0x84,0x11,0xa4,0x84,0x01,0x02,0xc5,0x7c,0xa0,0x05,0xf2,0xf0,0x3f,0xff,0xc0,0xe0,0x29, - 0xb1,0x5a,0xa0,0xe1,0x95,0x8a,0xac,0x70,0x80,0x8f,0x39,0x2a,0x50,0x65,0x08,0x86,0x1f,0x1a,0xab,0x1c, - 0x39,0x49,0x0a,0x4a,0x73,0xd7,0x8c,0x53,0x5b,0x2d,0xd8,0x32,0x4e,0x8e,0x1f,0xda,0xf4,0x1b,0xa8,0xc3, - 0x53,0x6b,0xfb,0xd8,0x0a,0x9f,0x12,0x79,0x08,0xbf,0x2b,0xbe,0xde,0x3a,0x18,0x2c,0xe9,0xbd,0xd8,0x39, - 0x60,0xe2,0x9d,0xe8,0xec,0xd9,0xb3,0x8c,0x16,0x9a,0xdf,0x01,0xaa,0x80,0xd3,0x84,0x3a,0xa3,0xb0,0x9e, - 0xa9,0xfb,0xcb,0x1e,0x45,0x95,0x67,0xad,0xa2,0x51,0x08,0x9e,0x94,0xf8,0xc2,0xa2,0x9e,0x61,0x15,0xb7, - 0xa5,0x67,0x06,0xe6,0xc9,0x86,0xe8,0xd0,0x1a,0xb8,0x28,0x7f,0x06,0x8d,0x75,0x34,0x55,0x71,0x38,0x32, - 0xf1,0xfe,0x67,0xd2,0x5e,0xa4,0x44,0x9b,0x1b,0x06,0x8d,0x12,0x84,0x01,0xa9,0x2d,0x11,0x15,0x17,0x00, - 0x6f,0xa4,0xaf,0xd7,0x0f,0x6a,0xc9,0xec,0xb6,0x9d,0x5d,0x46,0x28,0xec,0x02,0xd6,0xcc,0xf4,0x04,0x7f, - 0xc4,0x4c,0xe0,0x58,0x20,0x2d,0x69,0x07,0x7e,0xd5,0x46,0x23,0x86,0x7b,0x7b,0xbb,0x74,0x30,0x77,0x08, - 0x7f,0x2d,0x57,0x8f,0x7e,0x0a,0x86,0xbe,0x64,0xe0,0x1b,0xfe,0xbd,0x8d,0x89,0xdd,0x2d,0x7b,0xc2,0x61, - 0x0c,0xe0,0x16,0xea,0xc0,0x28,0x8d,0xb3,0x30,0x39,0x4d,0xd9,0xf0,0x48,0xc9,0x8a,0xaf,0xe9,0x1a,0x20, - 0xee,0x58,0x19,0x61,0x66,0x3a,0x74,0x6d,0xe3,0xb9,0x84,0x32,0x1a,0x29,0x9b,0x7a,0xb0,0x3f,0xb3,0xaf, - 0xa5,0x6b,0x29,0x5c,0xd4,0x8d,0x32,0x63,0x68,0x0e,0xb2,0x69,0xa5,0xb8,0x03,0xca,0xe5,0x05,0xaa,0x7e, - 0xa7,0xb9,0xe5,0x28,0x0b,0x12,0x4f,0x3b,0x42,0xdd,0xa0,0xb1,0x54,0xcb,0xcd,0xd9,0x91,0x8f,0xfa,0x0e, - 0xab,0xe7,0x26,0x7e,0x0f,0xd7,0x0f,0xe5,0xa6,0x30,0x84,0x69,0x35,0xf3,0x65,0xf8,0x8c,0xb4,0xdf,0xa1, - 0x1a,0xa3,0xb3,0x32,0xd7,0x6b,0x31,0x20,0xb5,0xeb,0x5b,0x22,0x19,0x44,0xb1,0xed,0xa5,0x9e,0xa3,0x3a, - 0xc2,0x41,0xa7,0x2b,0xbc,0x8a,0xe8,0xa6,0x53,0xe8,0xfa,0x8b,0xe0,0x11,0x3f,0x1a,0x8b,0x2b,0xa0,0x22, - 0x7c,0x96,0x71,0xf8,0x73,0x2d,0xa7,0x2f,0x06,0x71,0x9e,0x67,0xc4,0x42,0x24,0x74,0x76,0xca,0x64,0x59, - 0x84,0x99,0x5f,0x28,0x24,0x74,0x0d,0x6d,0x8e,0x64,0x11,0x07,0xa5,0xaf,0xbe,0x0e,0xb3,0x6f,0xd4,0x52, - 0x15,0x1d,0xda,0xfc,0x1d,0x06,0xb0,0xad,0xe7,0x00,0xe5,0x43,0x81,0xf0,0x3d,0xbf,0xc1,0x11,0x5f,0xc8, - 0x5b,0xa0,0xde,0xa4,0x7a,0x79,0x65,0x9c,0x90,0xc1,0xcd,0x99,0x79,0x8a,0x18,0x29,0xa3,0x24,0x3b,0xcd, - 0xeb,0xd3,0x85,0xc8,0xb0,0x0b,0xcf,0x69,0x9a,0xbd,0x84,0xe3,0x3d,0xb1,0xa6,0x87,0x5b,0xbc,0x1c,0xca, - 0x9e,0xb0,0xaa,0xc6,0x8e,0x9b,0x39,0x2b,0xfb,0xa0,0x25,0xa2,0x2e,0x2a,0x70,0x9b,0x54,0xc8,0xa3,0x7a, - 0xa2,0x8b,0x9a,0x29,0x75,0x7d,0xbd,0x4a,0xc3,0x61,0x09,0xd8,0x99,0x40,0x3f,0x01,0xfd,0x87,0x04,0x9b, - 0x78,0xd2,0xd8,0x78,0xee,0x9f,0x99,0x37,0x68,0x2f,0x1e,0x15,0x8b,0xc2,0x9d,0x1d,0x78,0xb2,0x3f,0x4b, - 0x5d,0x3c,0x35,0xa5,0xf6,0x6f,0x78,0x7c,0x8a,0x3a,0xad,0x71,0xd8,0x64,0xc8,0x58,0xdd,0x01,0xf5,0x18, - 0x1d,0x13,0xea,0x3b,0x89,0xc2,0x0e,0xcb,0x2a,0x5d,0xfc,0x76,0xa3,0x2b,0xe0,0x3e,0x36,0x4e,0xe2,0x6e, - 0xa0,0x4e,0x5a,0xb3,0xfd,0x24,0xfa,0xd2,0x4e,0xd2,0x1f,0x3a,0x0a,0x73,0x3b,0xb2,0x68,0x2d,0xe4,0x38, - 0xbb,0x35,0x48,0xd5,0x72,0xeb,0xe3,0x09,0x4a,0x51,0xee,0x1f,0x3e,0x8e,0x1e,0x2b,0x67,0xf2,0x4e,0x57, - 0x31,0x08,0x73,0xcf,0xf9,0x87,0x90,0xac,0x26,0x6a,0x02,0x13,0x0c,0x79,0x04,0xb1,0x82,0x71,0xc5,0xb5, - 0x63,0x79,0xee,0xb2,0x87,0x92,0x33,0x29,0xa9,0x17,0x49,0xb8,0x58,0xae,0xdf,0x32,0x59,0xcd,0x56,0x65, - 0xcd,0x63,0x5c,0xcf,0x4a,0xba,0xd9,0x8a,0x4f,0xb4,0xac,0xcd,0xbe,0x34,0xdc,0x49,0x57,0xc6,0x9b,0xcc, - 0xfc,0xdb,0x7b,0x86,0x65,0x96,0x99,0xab,0xdb,0x34,0x86,0x1b,0xbd,0xeb,0x6e,0xe1,0x52,0x74,0xa3,0x20, - 0x29,0x45,0x1c,0x2b,0x7d,0x34,0x82,0xd4,0x3a,0x27,0x9a,0x84,0x43,0xaa,0xfe,0xdc,0xa8,0x48,0xef,0x20, - 0xa9,0xd4,0x09,0x80,0xea,0x59,0x03,0xdc,0x87,0x7a,0xbf,0x08,0x2b,0xa4,0xed,0xd3,0x61,0x4c,0xf6,0x93, - 0x48,0x74,0x60,0xc5,0xbc,0x4d,0xdb,0xb2,0x29,0xb8,0xa7,0x39,0xd1,0xaf,0x8d,0xd7,0x30,0x4a,0x70,0x24, - 0x7e,0x98,0x15,0x1c,0x96,0xdf,0xa3,0xc1,0x6e,0xac,0x52,0x89,0xee,0x38,0x25,0x2c,0xa6,0x32,0x05,0xd1, - 0x8d,0xe4,0xcf,0x40,0x15,0x0d,0x4b,0xb7,0x33,0xcc,0xac,0xd4,0x86,0x5c,0x18,0x7f,0x07,0xd1,0xc5,0x74, - 0x24,0x9f,0x74,0x28,0x89,0xcf,0xfd,0x65,0x15,0xbf,0x38,0xf8,0x32,0x45,0xed,0x4d,0x23,0x08,0x35,0x0d, - 0x6b,0x45,0x00,0x02,0x10,0xa4,0xa1,0x0d,0x2d,0x5a,0x41,0xc6,0xdc,0x31,0x32,0xbc,0xb5,0x67,0x6c,0xb3, - 0xa4,0xbe,0x18,0x85,0xb9,0xce,0xd1,0xe5,0x2a,0xde,0x4d,0xa8,0x9f,0x71,0xcf,0xe9,0xc3,0xcd,0xf6,0xdd, - 0xbb,0xb5,0x02,0x7c,0xa5,0x4f,0xce,0x6d,0x47,0xdb,0x65,0x23,0x20,0x9e,0x30,0x5d,0xed,0x85,0xaa,0x6a, - 0xd8,0x38,0xe8,0x52,0x39,0x53,0xc2,0xb9,0xbd,0xa8,0x3d,0xa7,0x36,0xa2,0xec,0x21,0xcc,0x9e,0x89,0x2d, - 0x61,0x35,0x96,0xd8,0xf1,0xc1,0x45,0x14,0x68,0x1e,0xf5,0x0d,0xf1,0x07,0x89,0x03,0x04,0x81,0x55,0x16, - 0xc8,0x3e,0x75,0x9a,0xa1,0xc6,0x97,0xf0,0x1f,0x7d,0x16,0x58,0x30,0xa1,0x39,0xcb,0x92,0x0d,0xd2,0x89, - 0xac,0xad,0x2b,0xb4,0x72,0xe2,0x28,0x61,0x53,0xc3,0xa0,0x75,0xfc,0x63,0x0e,0x35,0x0f,0x87,0xc9,0x28, - 0x16,0xdc,0xb7,0x1a,0x64,0x91,0xe0,0x8d,0xc5,0x7d,0x17,0x7d,0x1e,0x74,0xf5,0x49,0x89,0xc0,0x23,0x49, - 0x28,0x9f,0xfe,0x35,0x51,0x2c,0x11,0x5d,0x76,0xb9,0xd8,0x27,0x15,0x41,0x62,0x79,0x03,0xcd,0x2a,0x23, - 0x6e,0xec,0x88,0xea,0xd4,0xc0,0x40,0x5c,0x53,0xc9,0xd2,0xb2,0x39,0xa5,0xbe,0xb0,0xb6,0x6c,0x22,0x8f, - 0xb6,0xd8,0xb9,0xc6,0x21,0x02,0x15,0x0e,0xa2,0x53,0x88,0xb1,0x7d,0xcc,0xb1,0x1c,0xc1,0x95,0xb7,0x37, - 0x4a,0x1f,0x1f,0x8c,0x0e,0x82,0xfd,0xe0,0x20,0x88,0x47,0x5c,0xe6,0x22,0x41,0xd5,0xfb,0x5e,0xb0,0xaf, - 0xc3,0xa9,0xc2,0xef,0x96,0x7a,0x1f,0x1a,0x8f,0x52,0x96,0x02,0x31,0xa7,0x15,0x58,0x7b,0x1b,0x59,0x50, - 0xc0,0xac,0x29,0x87,0xfd,0x6e,0x72,0xa9,0x35,0xb7,0xef,0x85,0x2d,0x74,0xb2,0x40,0xc1,0xd7,0x54,0x95, - 0x90,0x53,0xc4,0xc4,0x3c,0x6a,0x81,0x49,0xa2,0xe9,0xf5,0x4c,0xc2,0xf1,0xe0,0xb1,0x41,0x47,0x2b,0xc9, - 0xb4,0x5b,0x8a,0xd0,0xc4,0xd4,0x50,0x4f,0x12,0xe8,0x8c,0x29,0x9b,0xcc,0x9b,0x10,0xc6,0x59,0x85,0x91, - 0x3f,0x17,0xa0,0x86,0x9f,0x46,0xf6,0x3e,0x9a,0x81,0x94,0x19,0x31,0x55,0x53,0x30,0x71,0xe3,0x73,0x4a, - 0xc0,0x29,0xfc,0xa9,0x68,0x7d,0x7f,0xa5,0x17,0x3d,0xaf,0x87,0x28,0x60,0xe2,0x70,0xc1,0x0e,0xb6,0xe1, - 0xe4,0x59,0xb9,0x83,0x33,0x45,0x56,0x95,0x7b,0xdf,0x05,0xab,0xfb,0x42,0xe4,0xd7,0x21,0xf3,0x28,0xb5, - 0xab,0xb3,0xca,0x82,0xf1,0x44,0x20,0x88,0xbd,0xa2,0xdd,0xc1,0xc9,0x1f,0x48,0xc2,0x46,0xb5,0x63,0x61, - 0x13,0x7e,0xc0,0x86,0xa4,0x04,0xf7,0x5a,0x65,0x6a,0xae,0x38,0x2a,0x97,0x1d,0x43,0xc2,0x53,0x20,0x5f, - 0x9a,0x09,0x51,0xea,0x99,0x2e,0x04,0x51,0x22,0xad,0xa0,0x22,0x87,0x52,0xaf,0xf2,0xce,0x43,0xa5,0xcb, - 0xfc,0x83,0x5a,0xd1,0x66,0xfc,0x24,0xa2,0x82,0xea,0x49,0xd2,0x36,0x91,0x88,0x85,0x81,0x5d,0xad,0xae, - 0x10,0x9a,0x17,0x75,0x48,0x09,0x85,0xe5,0x34,0x4b,0x60,0x47,0x23,0x06,0x07,0x95,0x73,0x64,0x66,0x69, - 0x6c,0xbd,0x2e,0x2a,0xd6,0x56,0x54,0x26,0x6c,0xfe,0x35,0x85,0xaf,0x1f,0x3b,0xa1,0x22,0x43,0x27,0x55, - 0xdf,0x2b,0xd3,0xf7,0xa4,0xd5,0xb7,0xd5,0x33,0xe0,0x5c,0xbb,0x82,0xdb,0xb0,0xee,0x53,0xa5,0x06,0x47, - 0xdc,0xf3,0x86,0xa8,0x70,0x31,0x1d,0x49,0x8d,0x6f,0x32,0x70,0xed,0x95,0x66,0x84,0xde,0x8c,0x85,0xcd, - 0x2e,0xa4,0xcd,0x5d,0xcd,0x47,0x3b,0x44,0x58,0xf0,0x6e,0x42,0xec,0xed,0x3a,0x69,0x56,0xd2,0x4d,0x95, - 0x14,0x65,0x4f,0x5d,0x23,0xbd,0x44,0x79,0xfa,0x01,0xe0,0x52,0x9a,0xf9,0xed,0x40,0xe5,0x98,0x3d,0x4c, - 0xd7,0x2b,0xd5,0x2b,0x80,0x2e,0xe8,0xa9,0x4e,0xa5,0x86,0x1d,0x58,0xa2,0x14,0x48,0x94,0x93,0xd4,0x22, - 0x07,0x91,0x69,0x02,0x19,0x36,0xf1,0xe0,0xa8,0x0c,0x63,0x04,0x2d,0xe1,0x73,0xc3,0xf2,0x87,0xf2,0xcc, - 0x87,0x06,0xba,0x00,0x25,0x3f,0x0c,0xd3,0xb9,0x25,0x1a,0xe0,0x1a,0x59,0x44,0xe4,0x1b,0x04,0x88,0x64, - 0xa0,0x3f,0xa2,0xb6,0x45,0xfa,0x4f,0xb4,0x41,0x26,0x0d,0x10,0x7f,0xa0,0x1b,0xa0,0x23,0xca,0x0d,0xe8, - 0xad,0x5f,0xaf,0x27,0x1c,0x59,0x46,0x47,0x6d,0x49,0xcc,0x5a,0x96,0x83,0x93,0xcb,0x52,0xc9,0x50,0x75, - 0x48,0x3c,0x77,0x41,0x3b,0xcd,0xeb,0xea,0x0d,0x4a,0x15,0xc0,0x64,0xe1,0xd3,0x01,0xd6,0x5c,0x54,0xfb, - 0xd0,0xe5,0x16,0x0d,0xcf,0x5e,0x56,0x4d,0xe4,0x78,0x9a,0x62,0x33,0x2e,0x08,0x7c,0xcb,0x97,0xc0,0xf0, - 0xaa,0x58,0xc9,0x42,0x28,0xa2,0x85,0x3c,0x26,0xc1,0xf4,0x59,0x5d,0xd5,0x4e,0xaa,0x58,0x4a,0x29,0x22, - 0xd1,0x75,0x74,0x80,0xde,0xde,0x7f,0x61,0xee,0xff,0x85,0xfd,0xba,0xdc,0x2d,0x7b,0x55,0xdc,0x6c,0x25, - 0x1e,0x57,0x3b,0x5c,0xac,0x96,0x20,0x4b,0x7a,0x62,0xa6,0x23,0x96,0x6a,0xb5,0x80,0x1e,0x7c,0xe4,0xab, - 0x9b,0x57,0x78,0x3c,0x7c,0xa9,0x53,0xe3,0xd0,0xc6,0x39,0x46,0x0b,0x11,0xd4,0x2e,0x34,0x1d,0x99,0xe2, - 0x1d,0x8a,0x62,0x1e,0x8e,0x00,0x74,0x00,0x7b,0x5f,0x1d,0x04,0xf2,0xf7,0x81,0xfc,0x7d,0xf8,0x85,0xfc, - 0x7d,0xf0,0x50,0xfd,0xfd,0x4a,0xa5,0x7f,0x19,0x98,0x00,0x64,0x52,0xe1,0x73,0x55,0x40,0x55,0x78,0xf8, - 0x79,0xa0,0xd5,0x8b,0xa7,0x50,0x75,0x97,0x52,0x0f,0xee,0xab,0xe6,0xe5,0xcf,0xc1,0xbe,0xfa,0xab,0x7a, - 0x3b,0xf8,0x42,0x25,0x7c,0xf1,0xf9,0xfd,0x7f,0xaa,0x32,0x5f,0xde,0xd7,0x95,0xe8,0xeb,0x81,0x6e,0xf4, - 0xaa,0x70,0xcc,0xc3,0xdf,0xe3,0xf0,0xab,0x7f,0x12,0xcb,0xf2,0x28,0x3c,0xb8,0x7f,0x7f,0xbd,0xa6,0x9f, - 0x5f,0x7c,0xce,0x3f,0xbf,0xda,0x1f,0xa9,0xce,0x03,0x4a,0x7c,0xf8,0x15,0x27,0x7e,0xfe,0xcf,0x91,0x23, - 0x86,0x10,0x4e,0xe0,0xf0,0xb3,0x4f,0x47,0x40,0x12,0x2c,0x93,0xdc,0x75,0x0a,0x2e,0x5c,0x67,0xdf,0xd9, - 0xb1,0x82,0x17,0xef,0x43,0x86,0x96,0x14,0xaf,0xa2,0x57,0x12,0x94,0x8d,0x10,0x6e,0xe9,0x7f,0xa3,0xa3, - 0xd5,0x75,0xbe,0xb9,0xd5,0x97,0x5d,0x8f,0xdd,0x34,0xaa,0xb2,0x8c,0x32,0xcf,0x01,0xf5,0xf0,0xe0,0x21, - 0xc4,0x3a,0x77,0xef,0x3e,0xf8,0x0a,0x7f,0x47,0x78,0x6b,0x53,0x2a,0x41,0x3e,0xe5,0x83,0x15,0x0c,0x9c, - 0xcf,0x9c,0x7e,0xa9,0x03,0xa0,0x8b,0x7f,0xab,0x4b,0x8d,0x0b,0x2b,0xae,0x4c,0xfb,0xde,0x80,0xa6,0xc2, - 0x91,0x90,0x7d,0x3d,0xe5,0x29,0xcf,0xf1,0xe7,0xed,0xf2,0x67,0x51,0xf1,0xfa,0x2a,0xd5,0x81,0xf6,0xfc, - 0x0f,0x61,0x17,0x81,0xfa,0x22,0x2d,0x17,0x56,0xb0,0x30,0xfc,0x1c,0x3c,0x47,0x64,0x9b,0xe4,0x22,0x26, - 0xe6,0xe1,0x22,0x2a,0xfd,0xd3,0x8f,0xae,0x28,0x5e,0xfc,0x54,0xb5,0x93,0xf0,0x5a,0x1c,0x6b,0x3c,0x6b, - 0x04,0xa9,0xac,0xf9,0x34,0xb2,0x19,0xc0,0x78,0x80,0xd3,0x16,0xca,0x1f,0x7e,0x47,0x3c,0x39,0xc1,0xe7, - 0xe8,0x7a,0x13,0xe8,0x88,0x44,0x8c,0x13,0xae,0x4d,0x61,0x83,0x2e,0x69,0x44,0x2f,0x55,0xba,0x54,0xf2, - 0xf4,0x75,0x87,0x40,0x8b,0x43,0x9d,0xda,0xe9,0xf4,0xa6,0x24,0x6a,0xa1,0xf4,0x2d,0xc2,0x27,0x66,0x63, - 0x02,0xfb,0x32,0x2a,0x3b,0x22,0x30,0x4a,0x48,0x53,0x34,0xca,0xbe,0x83,0x7f,0x64,0x24,0xf1,0x32,0x2e, - 0x8a,0x68,0x8e,0x3b,0xbc,0x94,0xbb,0x4f,0x5d,0x3f,0xd4,0x8d,0x78,0x9c,0x3a,0xb1,0xe6,0xe8,0x57,0x29, - 0xbf,0xa2,0x54,0xac,0x3c,0x82,0xc9,0x50,0xaf,0x90,0x84,0x4b,0x04,0x9a,0xca,0xae,0x67,0x15,0x66,0x1d, - 0x89,0x49,0x9e,0x9c,0xc6,0xc8,0x7a,0x06,0x53,0x1f,0xd6,0x93,0x64,0xa6,0x4d,0x8a,0xe9,0x12,0xe2,0x0c, - 0x6e,0x53,0xc5,0xe3,0x50,0x4b,0x28,0xb2,0x70,0xde,0x81,0x3c,0xcb,0x4a,0x1d,0xe4,0x1e,0xdf,0x82,0xf4, - 0xda,0x29,0xb5,0xb5,0xe6,0xe7,0x53,0x1e,0x0b,0x0a,0x84,0xcd,0xb2,0x6a,0xa7,0x06,0x33,0xa2,0xcf,0x4e, - 0x89,0x91,0x91,0xc5,0x69,0x15,0x6b,0xe4,0xeb,0x5a,0x05,0x31,0x86,0xa9,0xe8,0x9f,0x2e,0xd8,0x48,0xe1, - 0x57,0x08,0xe2,0x5a,0x95,0x3b,0x8b,0xb1,0xa3,0xde,0x3a,0x04,0xe4,0xb7,0x42,0x40,0x0e,0x7a,0xb1,0x0d, - 0x01,0x66,0x7b,0x79,0x4f,0x8b,0x30,0xef,0xde,0x4c,0x3c,0xb0,0xbf,0xd4,0x0b,0xfb,0xdf,0xb6,0xa7,0xbe, - 0x75,0x59,0xa8,0x65,0xfb,0x90,0xf2,0x33,0x9f,0xf9,0xc1,0xb7,0xbb,0xf8,0x05,0xe4,0xf5,0xad,0x0d,0xe8, - 0x4e,0x35,0x20,0x59,0x7d,0x57,0x5b,0xe6,0xf5,0xfe,0x06,0x5c,0x8c,0x5c,0x6b,0x61,0x5a,0x50,0xf1,0x37, - 0xa6,0x0b,0xde,0x5c,0x5e,0x49,0xf0,0xc8,0xaa,0x02,0x2c,0xa8,0x11,0xd5,0x7f,0x37,0xe1,0xb4,0x76,0xec, - 0xec,0x82,0x7f,0x6b,0x38,0xda,0x0f,0xdc,0xf3,0x66,0x98,0x5a,0xed,0x08,0x4e,0x86,0xe6,0xb6,0x2a,0xd7, - 0x46,0x34,0x58,0xa5,0x37,0xf5,0xac,0x04,0x9f,0xad,0x36,0x3a,0xa0,0xac,0xd6,0xac,0x4a,0x73,0x1b,0x2d, - 0x58,0x59,0xba,0x85,0x1a,0x60,0x74,0x83,0x4b,0xb3,0x95,0x5a,0xa6,0x3d,0x12,0x09,0x1b,0xb7,0xd9,0xf8, - 0x57,0xda,0x6b,0x2b,0x52,0x2b,0x6f,0x8e,0xd1,0x02,0x86,0xde,0xe2,0x58,0x91,0xb5,0xde,0xae,0x6d,0x4f, - 0xb6,0x4a,0x2b,0x20,0x10,0x97,0x89,0x1b,0x8e,0x48,0x5e,0x2f,0xa1,0x29,0x2e,0x3c,0x1c,0x6a,0x7a,0xd4, - 0x2e,0xb0,0xf1,0xf9,0x35,0xbc,0x50,0x89,0x47,0x4c,0xed,0x19,0x67,0xb2,0x9b,0x96,0x27,0xc7,0x1a,0x69, - 0xcf,0xc3,0x82,0x7c,0x42,0xc2,0x67,0x20,0x8a,0x6c,0x65,0x6d,0x86,0x7c,0x0b,0x70,0x24,0x9e,0x86,0x9b, - 0x89,0x60,0xff,0x56,0xd7,0xb1,0x2a,0x2c,0x5c,0x28,0x7f,0x4c,0xf8,0x5d,0xa2,0xe7,0x2d,0x47,0xae,0x22, - 0x80,0xcf,0x85,0x90,0x46,0x34,0x0f,0x45,0x48,0xaf,0x20,0xa0,0x5e,0x20,0x83,0xe7,0xc6,0x06,0xa1,0xb3, - 0x06,0xbb,0xb6,0xf0,0x46,0x0b,0x1d,0xf4,0x77,0x3f,0xb0,0xef,0xad,0x85,0x67,0xd2,0x59,0x03,0xbb,0xc1, - 0x33,0xd9,0xfe,0xf8,0x70,0x8c,0xaa,0x00,0xe6,0x15,0xc9,0x63,0x05,0x35,0xe7,0x21,0x68,0xaa,0xa7,0x8a, - 0x7b,0x7e,0xf7,0xae,0xc3,0x8f,0x89,0x9b,0x4d,0x25,0xd2,0xbf,0x7b,0x37,0x33,0x3d,0x13,0x53,0x3a,0xa5, - 0xd6,0x5d,0xe7,0xc5,0xac,0x27,0xb3,0xe8,0x61,0xb5,0x7b,0x49,0xd1,0x83,0x93,0x99,0x1e,0xdd,0x01,0x3d, - 0x5e,0xeb,0x5e,0x2c,0x22,0xd3,0xa2,0x07,0xf3,0x87,0xde,0x59,0x74,0x19,0x4b,0x05,0x29,0x4f,0x85,0x07, - 0xc4,0x05,0x75,0xcc,0xbd,0x8d,0xd3,0xc1,0x16,0xac,0x88,0x01,0x84,0xf3,0xd0,0xe6,0x8a,0x74,0xdd,0x00, - 0x2b,0x78,0x3e,0x5b,0xd0,0x3f,0x50,0xb1,0xdc,0xd2,0x9e,0xf0,0xf6,0xd3,0x91,0x03,0xf3,0xa9,0xe6,0xb2, - 0x04,0x94,0x5a,0x0e,0x57,0x10,0x7e,0x41,0x9c,0xa9,0xbc,0xfe,0xfb,0x89,0x1f,0x0d,0x12,0x57,0x62,0x4f, - 0xe0,0x68,0x1c,0x86,0x2d,0x44,0x31,0xa1,0x9e,0xe8,0x72,0xe9,0x78,0x20,0xd9,0x0c,0x0f,0x2d,0x7a,0x2e, - 0x81,0xdd,0xe0,0x32,0x83,0x3c,0xdc,0x96,0x13,0x55,0xee,0x10,0xac,0xd6,0xe0,0x5a,0x4e,0x33,0xa9,0xd0, - 0xc2,0xbb,0x51,0xa3,0x8f,0x18,0x3f,0xc7,0xb1,0xd5,0xfa,0x8c,0xbc,0xf9,0x28,0xed,0xf7,0x59,0x3e,0xe3, - 0x5c,0x2b,0xff,0xaf,0x39,0x9e,0x15,0xac,0x67,0x7d,0x56,0x4f,0x71,0x94,0xae,0x58,0x8e,0xc7,0x7c,0xb4, - 0x25,0x2c,0x29,0x7d,0x88,0x8d,0x85,0x6a,0xc7,0xd9,0xb0,0x0e,0xcb,0xd0,0xcb,0xfa,0x61,0xe2,0x9b,0x64, - 0x91,0x49,0x9c,0x0b,0xdd,0x9d,0x79,0x23,0x87,0x9d,0x8d,0x06,0xef,0xab,0x04,0x20,0x93,0x29,0x51,0xfa, - 0x2b,0x71,0x4a,0xe7,0x0c,0xf5,0x10,0xa4,0xdb,0x4c,0x3c,0x62,0x47,0x1b,0xd1,0x92,0x77,0xfe,0x07,0x8f, - 0x75,0x44,0x63,0x06,0x61,0x4e,0x3b,0x02,0x91,0x1f,0x75,0xe9,0x05,0xf8,0x57,0x73,0x1c,0xb7,0xce,0xa4, - 0xdc,0x30,0xfb,0x58,0x5f,0xd5,0x30,0xaf,0x89,0xaa,0xd3,0x8a,0xf9,0xf4,0x25,0xf8,0x74,0x53,0xb6,0xa2, - 0xa7,0xc3,0x2c,0x45,0x7b,0x26,0x58,0x5b,0xfd,0x83,0x6d,0xc3,0xf5,0xe8,0x78,0xe9,0x86,0x49,0x73,0x53, - 0x22,0x9a,0x50,0x32,0xd6,0x0c,0x5f,0xa4,0xde,0xa5,0xc1,0x59,0xc9,0xf8,0x03,0xc5,0xd1,0x46,0x8a,0x39, - 0x17,0xad,0x57,0xe6,0xdb,0xd4,0x40,0x54,0x81,0xf4,0x88,0x29,0x1d,0xa2,0xdb,0x75,0x59,0xff,0x60,0xdf, - 0x1b,0xd7,0x2a,0xe8,0xd1,0xca,0x5f,0x51,0x0b,0x37,0xd5,0x55,0x2d,0xa2,0x71,0x93,0x7e,0xdf,0x2c,0xea, - 0x86,0xc3,0xdd,0x6d,0x78,0x53,0xcf,0xc3,0xbd,0x3f,0xdc,0xe3,0xa9,0xd7,0xdf,0xf3,0xdf,0xf3,0xe7,0x15, - 0x3e,0x9f,0xd1,0x32,0x3d,0x09,0x0f,0xfc,0xb7,0xe1,0x7d,0xff,0x4e,0xf8,0xc0,0x7f,0x4d,0xbf,0xbf,0x0e, - 0x1f,0xfa,0x6f,0xc2,0xcf,0xfd,0x77,0xe1,0x17,0xfe,0xf3,0xf0,0x9f,0xfe,0x8b,0xf0,0x4b,0xff,0x47,0x30, - 0xf4,0x3f,0x1e,0xbd,0x1e,0x87,0xd7,0x57,0x45,0x40,0x7f,0x7d,0x66,0x03,0x83,0xa3,0x07,0xfe,0xb3,0xb1, - 0xef,0x1c,0x39,0xc1,0xd1,0xd7,0x63,0x9f,0x2e,0xf9,0xe0,0xe8,0xf9,0x78,0xe3,0xff,0x78,0x74,0xa0,0x4a, - 0x1e,0x50,0xee,0x80,0x72,0xef,0x77,0x96,0xba,0xaf,0x4a,0xdd,0xaf,0xb7,0xb7,0xaf,0xfe,0x0a,0x57,0x29, - 0x3f,0x50,0xfc,0x01,0x15,0xbf,0xad,0x9c,0xcf,0xbd,0xfa,0x4f,0x74,0xbf,0xfc,0xc5,0x3d,0xe3,0x4b,0xfa, - 0xa6,0x2f,0x34,0xf7,0x35,0x35,0xe7,0xdc,0xa3,0xac,0x37,0xa8,0x77,0xcf,0xb9,0x17,0x1c,0xbd,0xab,0xa6, - 0xe3,0xbf,0xa5,0xaf,0xb1,0x83,0xc6,0xee,0x48,0xc5,0x17,0x6c,0xcf,0x87,0x2c,0x19,0xce,0x1b,0x5d,0x1f, - 0x09,0xb5,0x12,0x6f,0x54,0x89,0x77,0x54,0x82,0xdb,0x6d,0x95,0x40,0x47,0xb2,0x31,0xdf,0xb0,0xcd,0x33, - 0x91,0x6a,0xf9,0x2a,0x5e,0xb3,0x2d,0xe7,0x7a,0x77,0x74,0x74,0x3c,0x1d,0x8c,0xfb,0xeb,0x7b,0xec,0x03, - 0xeb,0xde,0xda,0x61,0xb7,0x58,0x8e,0x47,0xe5,0xe0,0x98,0x68,0x0b,0xda,0xea,0xc6,0x5a,0xaf,0x2c,0xac, - 0xc5,0x50,0xf6,0x86,0x2e,0xb5,0xb6,0x84,0xca,0xc6,0x58,0x16,0xc2,0x2a,0xa1,0x9f,0xd1,0x21,0xcf,0xd2, - 0x61,0xef,0x22,0x84,0xf2,0xc1,0x81,0x5b,0x85,0xbb,0x07,0x74,0x35,0xbe,0xe6,0xb8,0x77,0x67,0x00,0x17, - 0x9c,0x99,0xb3,0xa3,0x27,0xe3,0x9a,0x71,0x87,0xbe,0xa7,0x52,0xd6,0xe5,0x11,0xe8,0x85,0x8b,0x42,0xc9, - 0x80,0xad,0xfe,0xd1,0xb3,0x8e,0x1a,0x90,0xd4,0x8e,0xd2,0x30,0x0f,0xd2,0x3e,0x11,0xfe,0x54,0xe8,0x6d, - 0xad,0x10,0x2a,0x11,0x65,0x34,0x23,0xd8,0xa7,0xbc,0x3b,0xb5,0x3c,0x68,0x44,0x3e,0xde,0xf7,0x66,0xbb, - 0xbb,0x34,0xbc,0xaf,0x7d,0x29,0x6a,0xde,0x22,0x31,0xda,0x1d,0x3c,0x7d,0xb8,0x69,0xb8,0x64,0x97,0x79, - 0x46,0x2c,0x8a,0xb1,0x43,0x1d,0x73,0xa8,0x64,0xe0,0x0b,0x76,0x18,0xbf,0xea,0xf7,0xe1,0x3f,0x91,0x95, - 0x85,0xe0,0x73,0x71,0x85,0x17,0x8b,0x9d,0x06,0x3f,0xcd,0x19,0xfd,0x03,0xc6,0xd6,0x10,0x1b,0xbd,0xa1, - 0x5b,0xf9,0x1e,0xab,0x75,0xad,0xd7,0xf8,0xfd,0xee,0xee,0x5d,0x02,0x0b,0xfc,0x36,0xbe,0xbb,0xa9,0x59, - 0xc2,0xd6,0xd4,0x70,0xbf,0x54,0x63,0x44,0x84,0x65,0xd7,0x53,0x56,0x5c,0x53,0x88,0xc5,0x40,0xe7,0x14, - 0xe1,0x8f,0x47,0x8b,0xb1,0x47,0x78,0x67,0xbd,0x2e,0x58,0x11,0x74,0xbd,0x7e,0x01,0xd9,0xf2,0x0b,0xad, - 0x15,0xc4,0x7d,0xc2,0x8e,0xc5,0x77,0xa3,0xf0,0xec,0x28,0xa3,0x33,0x38,0x96,0x77,0xd8,0x0c,0x07,0x2d, - 0x0f,0xcd,0x92,0xe6,0xa3,0x32,0xc8,0x65,0xfa,0xc4,0xff,0x78,0xb5,0x06,0xc2,0xf0,0xb9,0x71,0x8e,0x2a, - 0xca,0x6e,0x86,0x20,0xd5,0x30,0x12,0xc2,0xff,0x30,0xc8,0xae,0x8d,0x6f,0x03,0xd9,0x3c,0x2e,0x01,0x62, - 0x2c,0xc8,0x6d,0xdc,0x8d,0x90,0x91,0x97,0x95,0x83,0xd6,0xea,0x11,0x46,0x7b,0xdf,0xd6,0xf0,0x09,0x8f, - 0xb5,0x3c,0xef,0xbc,0x41,0x61,0x20,0xbc,0x1b,0x86,0xae,0xdd,0x69,0xd7,0x5a,0xb2,0xac,0x7d,0x2a,0x53, - 0x33,0x42,0xd2,0xca,0x05,0x77,0x36,0xd4,0x8e,0xb7,0xa3,0xa3,0xfc,0xa8,0x18,0x5b,0x8f,0x1d,0x50,0x36, - 0xf3,0xae,0xc5,0x0d,0x95,0xb2,0x4d,0x88,0xc2,0x89,0x5f,0x54,0xc8,0x34,0x92,0xd3,0xfa,0x72,0xcb,0xc9, - 0x19,0x56,0xfc,0x1f,0xb8,0x71,0x68,0xcb,0x9a,0xd7,0x25,0x21,0x1e,0xd7,0x6b,0x27,0x4e,0x77,0x7f,0x7e, - 0xeb,0xb0,0x3c,0xb7,0xce,0x6b,0x57,0x79,0x6c,0x91,0xa4,0x58,0x5c,0x26,0x2f,0x55,0x18,0x73,0x4b,0x06, - 0x24,0xe9,0xb0,0xa2,0x4c,0x2d,0x11,0x0f,0xa7,0x0e,0x95,0x2b,0xeb,0x0b,0x79,0xe0,0x93,0x5f,0x33,0xce, - 0x27,0x72,0x25,0x64,0x05,0x36,0xf9,0x5e,0xaf,0xc1,0x28,0x1f,0xaa,0x22,0x17,0x49,0x01,0x57,0x20,0xe8, - 0x5b,0xbe,0x44,0xe0,0xa9,0xbd,0x4b,0x43,0xa8,0x10,0xb3,0x6c,0xa1,0x96,0x0e,0xae,0x36,0xb4,0xf8,0x5e, - 0x61,0x79,0x77,0x76,0xe4,0x4b,0xf7,0xae,0x26,0xca,0xfa,0x50,0x56,0x61,0x3b,0x5d,0x2a,0xd9,0x29,0xba, - 0x87,0x4e,0xd9,0x83,0x41,0x22,0x71,0xb7,0xd4,0x81,0x48,0xdc,0x9d,0x2d,0x59,0xaa,0xdd,0xfa,0x82,0xe2, - 0xe5,0x1d,0x84,0xbd,0xe4,0xd9,0x8b,0x5a,0xcf,0x01,0x37,0xc0,0xf2,0x85,0x57,0x55,0x33,0x51,0xe5,0x2e, - 0x80,0x90,0xa0,0x24,0xf3,0xfb,0x41,0x03,0xf2,0x15,0x56,0x71,0x77,0xa0,0xce,0x98,0xae,0xd7,0xb9,0x5b, - 0x4a,0x83,0xb5,0xe3,0x22,0xe1,0xb4,0xb5,0x51,0xfa,0x09,0x9c,0xc6,0xfe,0xf2,0xd2,0xd5,0xef,0x9d,0xa9, - 0x5f,0x87,0x9a,0x00,0xee,0x1b,0x05,0x54,0x88,0xec,0x6a,0x00,0x49,0x10,0xf9,0x35,0xf0,0x08,0x0a,0xa2, - 0xc8,0xfc,0x9f,0xc2,0xeb,0xcb,0x8b,0xe0,0x7a,0x53,0x55,0xa4,0xef,0x66,0x4d,0x4a,0xaa,0x57,0xbd,0xae, - 0x38,0xbc,0x4d,0x73,0x0c,0x68,0x4b,0x60,0x86,0x33,0xf5,0xb2,0xe1,0x47,0xe7,0x0e,0x50,0xc6,0x46,0x5f, - 0x2e,0x2f,0x6d,0xd7,0xc3,0x32,0xd9,0x8e,0xe3,0x75,0xa6,0x7d,0x41,0x4b,0x7b,0xc3,0xc6,0x6f,0x48,0x5f, - 0x2a,0xb0,0xa7,0xdd,0x21,0x1a,0x12,0x1b,0x03,0xd5,0x58,0xbf,0x59,0xb6,0xdc,0xf8,0x76,0xa7,0x9d,0xec, - 0x7e,0xdb,0x17,0x42,0x7d,0xa3,0x2b,0x75,0x33,0xbb,0xa9,0x2d,0xb2,0x83,0x5a,0x63,0x0d,0xc3,0x01,0xe6, - 0xf6,0xec,0x10,0x26,0xa9,0x65,0xab,0x59,0x32,0x02,0x4c,0x1f,0xef,0x1e,0x78,0xf2,0x3e,0x3d,0x81,0x1c, - 0x13,0x0a,0x92,0x6e,0xc7,0x98,0xfc,0xe6,0x70,0x6a,0xb2,0xad,0xa6,0x79,0xa5,0xc8,0xfe,0x6a,0x2e,0xc1, - 0x69,0xf1,0x06,0x77,0xb8,0x92,0xeb,0xdc,0x41,0xd3,0xb5,0x10,0x15,0xb6,0x41,0x43,0x63,0x31,0x6c,0xfb, - 0x86,0xb3,0x4e,0xa7,0xc8,0xcd,0x2a,0xc4,0x08,0xb2,0x13,0xf4,0x66,0x62,0x2b,0xf0,0xc5,0xc6,0xbf,0x9e, - 0xc6,0xf1,0x52,0x54,0x93,0xdb,0xb3,0x53,0x62,0xcc,0xfa,0x55,0xbf,0x53,0xa1,0x26,0x3a,0x68,0x15,0xfe, - 0x6a,0xdd,0x38,0xb1,0x8e,0x65,0x72,0x51,0x5f,0x07,0x16,0x90,0x59,0x8b,0x21,0x80,0x6f,0xad,0x06,0x7b, - 0xf6,0xb8,0x43,0xec,0x2f,0xac,0x58,0x74,0x2e,0xfb,0xe5,0x6f,0x8c,0xdf,0xbf,0x4e,0x2e,0x88,0x54,0x4f, - 0x20,0x6f,0x97,0x29,0xfc,0x84,0x86,0xe9,0xbc,0xdb,0x63,0x6e,0x6c,0x02,0x0a,0xe9,0xb3,0xb9,0xa5,0x68, - 0xa4,0x00,0x80,0x72,0x95,0x80,0xbb,0x60,0x0f,0xe0,0x3f,0x35,0xef,0x89,0xdb,0xeb,0xd7,0x1f,0x17,0x74, - 0x33,0xb5,0xc3,0x7f,0x7b,0x23,0xf6,0x43,0x83,0x6e,0x42,0xd6,0xe5,0x96,0xb9,0xea,0x47,0xf7,0xaa,0x7c, - 0x11,0x97,0x1d,0xa7,0x0f,0xbb,0x81,0xf5,0xd6,0xbf,0xaa,0x65,0x8f,0xb9,0xb3,0x3a,0x46,0xba,0xad,0xd3, - 0x7a,0xe9,0x8e,0xfa,0x1f,0x3b,0x88,0x7a,0x35,0x3d,0x18,0x85,0x0c,0x6f,0x1c,0x85,0x2a,0x63,0x17,0xef, - 0xee,0xd4,0xdc,0xcb,0x3c,0x4c,0x8d,0x5b,0x6f,0x6c,0xdb,0x94,0xaa,0x57,0xe9,0x6e,0xdf,0x22,0x0d,0x50, - 0xbc,0x13,0x61,0xdf,0xd8,0x5b,0x67,0x8d,0xed,0x4d,0x75,0x8f,0xa2,0xfb,0x96,0x8f,0xeb,0x47,0xde,0x06, - 0xf7,0x9b,0xb6,0x57,0x1f,0x9e,0x76,0xed,0x06,0xb0,0xdf,0xd4,0x48,0xe3,0x20,0xb5,0xdb,0xaa,0xc1,0xfc, - 0x4d,0x2d,0xd5,0xce,0x52,0xa3,0x1d,0x28,0x97,0x29,0xaf,0x4e,0x35,0x5d,0x23,0x62,0xae,0x12,0xd3,0x12, - 0x0c,0xbc,0x95,0x1c,0x5f,0x41,0x83,0x12,0xfa,0x6b,0xc8,0x91,0x07,0x79,0x26,0xcb,0x8e,0x50,0x39,0x19, - 0xc3,0x70,0x23,0x48,0x1b,0x9d,0x25,0xc5,0x37,0x36,0x25,0xd6,0xe1,0x12,0x27,0x46,0xc4,0x46,0xd7,0x42, - 0x99,0xaa,0xa3,0x1a,0x09,0xd7,0x6c,0xb5,0x5b,0x0c,0x56,0x6a,0xde,0x50,0xe1,0xe4,0x16,0xf6,0x9d,0x84, - 0x15,0x49,0x55,0xa7,0x80,0x4a,0x15,0x77,0xb7,0x4e,0xf6,0x4f,0x0c,0xcb,0x30,0x11,0x83,0x21,0x56,0xc5, - 0xd4,0x11,0x89,0x77,0x58,0x81,0xc0,0xee,0xc3,0xd2,0x4e,0xd5,0x8f,0xa4,0x88,0x14,0x4e,0x5c,0x53,0xad, - 0xdc,0x46,0xb3,0x81,0x2d,0x3d,0xb1,0x49,0xad,0xb9,0x55,0x38,0xd1,0x7c,0xc0,0xaa,0xb2,0x9e,0xfe,0x8f, - 0xc0,0xf1,0xd8,0x4b,0x89,0xab,0x03,0x63,0xc1,0xe1,0x38,0x4f,0x7f,0xa5,0xa6,0x0f,0x73,0x51,0x1d,0xa2, - 0x85,0x23,0x14,0xac,0x38,0x39,0x58,0x35,0xd6,0x11,0x15,0x9b,0x30,0x60,0x87,0x94,0x0e,0x53,0x1f,0x3a, - 0xce,0xe2,0xab,0x60,0xcf,0xfd,0x8f,0xe0,0xe8,0xf8,0xea,0x78,0xf7,0x64,0x3d,0x18,0xf7,0xbd,0xbd,0x79, - 0xa5,0x6d,0x3e,0x81,0xe6,0x43,0x01,0x3e,0xb5,0x68,0x3c,0x39,0xf3,0x5a,0x89,0xba,0x47,0x71,0x34,0x41, - 0xbc,0x9f,0x95,0xb2,0xee,0x76,0xef,0x13,0xe7,0xac,0xdf,0xc5,0xaa,0xfd,0xe4,0x51,0x2c,0x68,0x14,0x4e, - 0x1e,0x5d,0x29,0x21,0x9e,0x5a,0x25,0x22,0x3c,0xab,0x44,0xa1,0xc6,0x03,0xe5,0xa7,0x41,0x5a,0xa9,0xc1, - 0x1a,0x2c,0xfe,0xac,0xab,0x99,0x41,0x8b,0x5d,0x1d,0xf5,0xbe,0x86,0x42,0x3b,0x44,0x6e,0x62,0xe9,0x1d, - 0x4f,0x7b,0xac,0xe2,0xae,0x7c,0x18,0x4e,0xc3,0xaa,0xc2,0x70,0x16,0x4e,0x55,0xd8,0x14,0x1e,0xdb,0xb4, - 0x71,0xfd,0x21,0x2a,0xb9,0x88,0xe8,0xa7,0xcd,0x67,0xcc,0x85,0x5a,0x48,0x62,0xe8,0x5c,0x3d,0x4d,0xeb, - 0xe4,0xb9,0x28,0x31,0x83,0xa2,0xd1,0x28,0x32,0x26,0xd1,0x2b,0x7f,0xe6,0x05,0x51,0xc5,0xfa,0xd5,0x37, - 0x4b,0x29,0xda,0xd6,0xb7,0xab,0x2e,0xf8,0xad,0x10,0x6f,0x7d,0x45,0x4d,0x20,0x96,0x4a,0x0b,0x28,0x2c, - 0x47,0xb9,0xb2,0x30,0x43,0xbc,0xf4,0x46,0x5f,0x66,0xca,0x2d,0x0c,0xa1,0x0f,0x98,0x7d,0x9c,0xec,0xce, - 0x4a,0x1f,0x56,0xa5,0xa6,0x9c,0x91,0x40,0x13,0x20,0x8c,0x72,0xb7,0xab,0x46,0xea,0x43,0x3e,0x6b,0x6a, - 0xa8,0x80,0xf3,0x93,0x60,0xd2,0x1c,0x53,0x0b,0x52,0x2b,0x0a,0x51,0xf9,0x1f,0x6a,0xaa,0x19,0xee,0x3e, - 0x1c,0x46,0xbb,0xbb,0xbd,0xc7,0xfb,0x43,0x0f,0xaa,0x7f,0x96,0x4a,0x6a,0xd4,0x7f,0xc8,0x7c,0xf8,0x8e, - 0x51,0xad,0x71,0xd4,0xf3,0x4b,0xa2,0x50,0x9b,0x72,0x87,0x90,0xc1,0xd2,0xaf,0x30,0xcc,0x74,0x69,0xa2, - 0xd1,0x55,0x50,0x91,0xfa,0x8a,0xeb,0x6c,0xbe,0x64,0x03,0x8a,0xd5,0x82,0xfb,0x2c,0x65,0x88,0x2e,0x8a, - 0xed,0xf0,0xba,0xfa,0x74,0x78,0x55,0x3a,0x2d,0x0b,0x0b,0x64,0x6b,0xca,0x52,0xb1,0x51,0x96,0xca,0x2c, - 0xfb,0xfa,0x16,0x2c,0x4e,0x7c,0x78,0xd9,0xcc,0x95,0x1f,0xe8,0xfa,0xb2,0xd7,0x71,0x76,0xe3,0xd9,0xa0, - 0xb5,0xde,0x07,0xd0,0xff,0xe5,0xf5,0x2e,0x1b,0x2a,0xc0,0x10,0x4b,0xa9,0xe1,0x0a,0xb4,0x7a,0xb4,0x84, - 0x6a,0xa4,0x39,0x5f,0x21,0x18,0x96,0x3a,0x4d,0x1d,0x94,0x26,0x1b,0x65,0x9b,0xe9,0x94,0xda,0x5c,0xa8, - 0x79,0x31,0x74,0x60,0x33,0xad,0x1d,0xd7,0xde,0xb6,0x72,0xfb,0xb6,0x01,0xcf,0xe8,0x50,0xec,0x5d,0x9b, - 0x95,0xfd,0xd5,0xcd,0xb2,0xe9,0xfd,0x44,0xee,0xac,0x1b,0x76,0x86,0x4e,0x13,0x1d,0x8b,0xbc,0xc1,0x87, - 0x34,0x67,0x59,0x3d,0x36,0x8e,0xda,0x57,0x4a,0xc9,0xea,0x7d,0xd6,0xea,0x9a,0xe7,0x5a,0xae,0xbc,0x6d, - 0xa9,0x21,0x11,0x08,0x1c,0xa7,0x79,0x06,0x27,0x9d,0x0b,0x6c,0xac,0x8e,0xc4,0x7c,0xb7,0x05,0x16,0x9f, - 0x0f,0x0b,0x05,0x16,0xd1,0x51,0x61,0x83,0x45,0xd1,0xff,0xbc,0xd2,0xd8,0x1b,0x55,0x52,0xb1,0x84,0x15, - 0xaf,0x0f,0x3c,0x3f,0x73,0x15,0xce,0xb0,0xc0,0x65,0x22,0x14,0x07,0xf5,0x6d,0xe0,0x21,0xa2,0x2b,0x2f, - 0xe1,0x01,0xcb,0x3d,0xdf,0x80,0xe1,0xfa,0xa8,0x6d,0xa5,0xe5,0x23,0x48,0x26,0x5b,0xe3,0xbd,0x3f,0xcc, - 0xd5,0x78,0xd9,0x3f,0x42,0x35,0xde,0xbc,0x7f,0xdf,0x80,0x71,0x62,0xc6,0x35,0x51,0x03,0x4b,0x3e,0x16, - 0x8e,0xfd,0xd2,0x8c,0x5c,0x07,0x9a,0x49,0x9a,0x2b,0xdd,0x44,0xbd,0x96,0xa9,0xb4,0x58,0xa8,0xb5,0x46, - 0xfd,0x60,0x98,0xa9,0x51,0xe7,0xb0,0x31,0xaa,0x46,0x9d,0xf5,0x1f,0xe8,0x27,0xb6,0x06,0x76,0xcb,0xbd, - 0x0a,0xb3,0xd5,0x01,0x94,0xa5,0x49,0x78,0xe2,0x19,0xb7,0x98,0xfc,0xc6,0xd0,0x1a,0xd4,0xa7,0x5c,0xe1, - 0xb7,0x2c,0x42,0xd9,0x68,0x92,0x72,0x6b,0xba,0x53,0x1d,0x84,0xa2,0xe1,0xfd,0x2c,0x6a,0x9b,0x10,0x1c, - 0xe4,0x8f,0x8d,0xc6,0x8a,0xed,0x8d,0xb1,0x0f,0xde,0x8e,0x56,0x9a,0x12,0x9a,0xb6,0x36,0xd7,0xc7,0x34, - 0x72,0x36,0x58,0x95,0xc9,0x62,0x20,0x3e,0x11,0xb7,0x8e,0xb6,0x6b,0xf2,0x75,0x26,0xe1,0x96,0xd9,0x37, - 0xd8,0x84,0xad,0x8b,0xb0,0xb5,0xd1,0xda,0x04,0xda,0xad,0x75,0x2e,0xc6,0x5f,0x6e,0x6c,0xcb,0xa2,0x74, - 0x4f,0xa2,0xb5,0x36,0xa2,0x69,0x92,0xfc,0x69,0xfa,0xef,0x20,0x48,0x34,0xb1,0x5a,0xc2,0x23,0x36,0x01, - 0x2c,0x90,0x36,0x51,0xe9,0x85,0x07,0x79,0x27,0x8c,0x4d,0xf9,0x11,0x41,0x88,0x59,0xe4,0xc3,0x25,0x98, - 0x9d,0xd9,0xe6,0x12,0x90,0x0e,0xeb,0x82,0xbe,0x73,0x72,0x82,0x48,0x09,0xfa,0x82,0x6d,0x0b,0x70,0x8f, - 0x56,0x06,0x7f,0xc1,0x9f,0xd3,0x8d,0x05,0x59,0x4c,0xd8,0xa1,0x5d,0xe9,0x46,0x50,0x3a,0xf6,0x17,0x8a, - 0x6f,0x6e,0xc9,0xf8,0x4e,0xa6,0x2d,0x54,0xc0,0xdc,0x87,0x19,0xf8,0x96,0x66,0x45,0x61,0x51,0x5a,0xb4, - 0x9f,0x3b,0x5a,0x6b,0x5a,0x5d,0x04,0x8d,0xab,0x70,0xbb,0xc4,0xc6,0x4f,0xb7,0xdf,0x8d,0xf9,0xff,0x8a, - 0xbb,0x51,0x5c,0x14,0x96,0xe6,0x6e,0xcc,0x61,0xe2,0x5f,0x5f,0x97,0x69,0x27,0x69,0xb2,0x0d,0xa7,0x1f, - 0x6c,0xc7,0xe9,0x07,0x63,0x6d,0x58,0x61,0xa1,0xad,0xac,0x65,0xa6,0xa4,0xed,0x1f,0x46,0x2d,0x5d,0x7a, - 0x18,0x6a,0x8f,0x24,0xfa,0x33,0x1e,0xf9,0x61,0x58,0xc4,0x51,0x4b,0xe0,0x1d,0x82,0x5b,0xe3,0xeb,0xcc, - 0xfa,0x8d,0xb8,0xa4,0xf4,0x83,0xa3,0xae,0xba,0x52,0x91,0x03,0xae,0x8a,0xf9,0x52,0x7a,0x83,0xf9,0x52, - 0x2a,0xe6,0x4b,0x52,0xc7,0xf3,0x3b,0xf2,0x0f,0xc6,0xaa,0x37,0xb6,0x5a,0x52,0xf0,0x88,0xe0,0xf6,0x1c, - 0xb9,0xb4,0x81,0x78,0x6c,0x89,0xc2,0x2d,0x68,0xa7,0x26,0x53,0xd8,0x8a,0x74,0xb6,0x34,0x58,0xc3,0x12, - 0xcd,0x96,0x3a,0x11,0xce,0x5f,0x6a,0x68,0x0b,0xb2,0xe9,0x1a,0xfa,0x76,0x54,0x23,0x3d,0xff,0xff,0x8a, - 0x68,0x9a,0xaf,0x41,0x5b,0xd0,0x4c,0x47,0xb1,0x0a,0xc9,0xd8,0x0b,0x78,0x2b,0x8a,0x49,0x3f,0x12,0xc5, - 0xd4,0x1a,0xbd,0x15,0xc1,0x48,0xe9,0xdb,0xd1,0x4b,0x43,0x96,0xfb,0xbf,0x1d,0xb9,0xa4,0xb7,0x23,0x97, - 0x6e,0xd7,0x4a,0xff,0x17,0xb9,0x74,0x20,0x97,0xd4,0x20,0x17,0xa5,0x09,0x22,0x86,0x02,0x4a,0x04,0x94, - 0x10,0xc1,0x67,0x2d,0xac,0xff,0x93,0x47,0xeb,0x1c,0x5d,0x46,0xc9,0x22,0x3a,0x4d,0x16,0x09,0xf2,0xc3, - 0xeb,0xfa,0x7d,0x19,0x7c,0xa8,0xbd,0x04,0x06,0xa7,0xd8,0x1a,0xd6,0xe8,0x5d,0x2c,0xec,0xb8,0xbd,0xf0, - 0xc5,0x70,0x16,0x12,0x14,0x5e,0x12,0xec,0x53,0xd2,0xdd,0xbb,0x0a,0xe0,0xce,0x74,0x8a,0x36,0xb1,0x1c, - 0x38,0x1e,0xcf,0x28,0xd6,0xcd,0x48,0x48,0xa6,0xae,0xf1,0x7e,0xa0,0xda,0xd5,0x68,0x9d,0x3b,0xa2,0xbf, - 0x7a,0x4d,0x50,0x1a,0x6c,0x13,0xb8,0xa2,0x08,0x9c,0xd8,0xa4,0xe1,0xd9,0x96,0x26,0xd3,0x5a,0x93,0x65, - 0xbb,0xbd,0xf6,0xfb,0x98,0xfd,0xf2,0xf3,0xbf,0x02,0xfc,0x62,0xa5,0xb7,0xaa,0x2d,0xb2,0x2b,0x7e,0x8a, - 0xd8,0x16,0xe2,0x42,0x8d,0xd9,0x57,0x93,0x56,0x8f,0x6d,0x5e,0x65,0xb3,0xa9,0xac,0x22,0x6e,0x9e,0xe3, - 0xe4,0xd3,0x26,0xd9,0x62,0x70,0x92,0x2e,0xb6,0x2c,0x31,0x0c,0x4e,0x62,0x4f,0x33,0x01,0x5b,0x26,0x5c, - 0x7e,0x63,0x9a,0x99,0xc5,0x9e,0x65,0x98,0xa7,0xb1,0x4e,0xcb,0x5a,0xf3,0xf4,0x53,0x33,0xd3,0xfc,0x53, - 0x66,0x1a,0x7f,0xfa,0x4c,0x95,0xbf,0xc4,0xfa,0x58,0x73,0x66,0x9e,0x4a,0xdf,0xe8,0xfd,0xe6,0x2d,0xde, - 0xf1,0xe3,0x47,0x35,0xfd,0xef,0x85,0x31,0xc3,0x13,0xc7,0xda,0x66,0x6f,0x6a,0x41,0x57,0x07,0xb7,0xfb, - 0xb1,0xf3,0xe8,0x38,0x7b,0xff,0xbd,0xf3,0x48,0x6f,0x9f,0x07,0x6c,0xae,0xdf,0x27,0xa9,0x7b,0x82,0x4f, - 0x63,0xfc,0xe7,0x3a,0x38,0xe7,0x1c,0xa1,0x61,0xa2,0xa2,0xba,0xb3,0xe3,0xb0,0xb3,0x2a,0xfe,0x98,0x7b, - 0x25,0x6e,0x16,0xaf,0x94,0xd6,0x0e,0x8d,0xd7,0xa8,0x0e,0x88,0x51,0xd4,0x4b,0x90,0x42,0x6f,0xcb,0x9c, - 0x2a,0xcf,0x09,0x53,0x0e,0x73,0xb1,0x8f,0xca,0x07,0x2a,0x9a,0x38,0x30,0xa3,0xc2,0x75,0xa1,0xf3,0xcf, - 0xc1,0x83,0xc1,0x03,0xc7,0xef,0x32,0xd5,0x92,0x48,0xcf,0x77,0xef,0xaa,0x88,0xcf,0xbf,0x20,0x06,0x4d, - 0xf5,0x3d,0x58,0x15,0xb1,0xfb,0x92,0x10,0xb3,0x52,0x1f,0x32,0xd6,0x2e,0xd7,0x71,0x1a,0x5c,0x73,0x54, - 0xcd,0xc0,0x79,0x5b,0x46,0x49,0x5e,0x38,0x7e,0xf1,0xa1,0x28,0xe3,0x8b,0x17,0xcf,0x29,0x85,0xbf,0x7a, - 0x2f,0x9e,0x3b,0xfe,0x2c,0xc9,0x2f,0xae,0xa2,0x3c,0xfe,0x45,0xc6,0x12,0x38,0xdf,0xa8,0x84,0x9e,0x1a, - 0x5d,0xd0,0x73,0xfc,0x49,0xb6,0xfc,0x20,0x91,0x33,0x9c,0x67,0xfa,0xb3,0xf7,0x3f,0xff,0x9f,0xde,0xfd, - 0xfd,0x83,0x7f,0xf6,0x5e,0x46,0xf9,0x79,0xef,0x32,0x4a,0x7b,0x3f,0xc5,0x69,0x71,0x95,0xad,0xa6,0x74, - 0xac,0x16,0x59,0x04,0x8f,0x5b,0x81,0xf3,0x66,0x11,0xc3,0x70,0x90,0xa3,0x19,0xf4,0x54,0x6a,0x4f,0x16, - 0x4a,0x85,0x7c,0x1f,0x0c,0x06,0x8e,0x9f,0xc7,0xa7,0x74,0xbd,0xbf,0x89,0x53,0xa9,0x75,0x78,0x16,0xf7, - 0x64,0xb4,0x34,0xff,0xc5,0xa2,0x77,0x1a,0xf7,0xa4,0x44,0x3c,0xf5,0x7b,0x4b,0x69,0x32,0x8f,0x67,0x79, - 0x5c,0x9c,0x31,0x26,0xef,0x2d,0x69,0xd2,0xbd,0x68,0x46,0xa4,0x14,0x0d,0x7d,0x4a,0x73,0xe5,0xad,0x7f, - 0xca,0x51,0x3c,0x02,0xe7,0x09,0x7e,0xd4,0xd2,0xde,0x46,0x97,0xdc,0x91,0xfc,0xe5,0x21,0x5c,0x25,0xb3, - 0x84,0x56,0xaa,0x5c,0x15,0xc1,0x75,0x34,0x81,0xc7,0xcb,0x65,0x96,0xa4,0xa5,0x59,0xc5,0x27,0x6f,0xb0, - 0x12,0xd3,0xa4,0x88,0x4e,0xe9,0x12,0x0a,0x9c,0xe7,0xea,0x8b,0xc8,0x0f,0x76,0x9f,0x91,0xa5,0x08,0x77, - 0x67,0x8a,0xff,0x9a,0x7c,0x93,0x6c,0xa9,0xe0,0x27,0x88,0x5c,0xe2,0xbc,0x98,0xe2,0x15,0x38,0xcd,0xde, - 0xbe,0xe5,0x2d,0xa1,0x7f,0x7b,0xb0,0x35,0x9d,0x65,0x04,0x05,0xb4,0x59,0x93,0x28,0x45,0x44,0x0a,0xd8, - 0x6e,0x50,0xe5,0xb7,0xf4,0xb3,0x37,0xd1,0xbf,0xb1,0x23,0x69,0x4a,0xd0,0xfa,0x0d,0xdd,0xc6,0xc8,0x96, - 0xbf,0xbd,0x32,0xeb,0xa9,0x0c,0x53,0x82,0xc6,0xf5,0x63,0x56,0xf0,0xc6,0xe9,0xdf,0xb4,0x0f,0x45,0xc9, - 0x23,0x53,0x65,0xd4,0xe8,0xcc,0x2f,0x04,0xfb,0x28,0xd4,0x52,0x94,0xd1,0xe9,0xa1,0x01,0x23,0x4a,0x71, - 0x7c,0x35,0xc1,0x67,0x12,0x31,0xa6,0x57,0xa8,0x64,0xba,0x9b,0xdf,0x96,0xf1,0xb2,0x38,0xcc,0x57,0x28, - 0x1c,0x97,0x3d,0xbc,0x15,0x20,0x6c,0xfd,0x07,0x9a,0x53,0xce,0x86,0x02,0x05,0x0a,0x54,0x45,0xbf,0x81, - 0xf6,0x6a,0xb3,0x2c,0x7c,0xb5,0x5d,0x26,0xd3,0x15,0xa2,0x52,0xd0,0xda,0x12,0x21,0x83,0x68,0x14,0xb5, - 0x91,0x1c,0xaa,0x34,0x8c,0xe5,0x22,0xd6,0x89,0xf4,0x29,0x09,0x2f,0xf0,0x46,0x91,0x12,0xea,0xd1,0xd0, - 0x47,0xcb,0x0a,0xfb,0x97,0xa8,0xec,0x21,0xbb,0xa7,0x9b,0xec,0x29,0x9b,0x94,0x5e,0x94,0x72,0xff,0xa8, - 0xd3,0xab,0x96,0x6d,0x20,0xad,0xbd,0xca,0x38,0xc4,0xb1,0xf3,0x2a,0x6b,0xd4,0x56,0x47,0xb5,0xf7,0x21, - 0x2e,0xa5,0xe4,0xd7,0xa9,0xda,0x69,0xf9,0xa8,0x17,0x57,0x63,0x85,0x10,0x9b,0x7d,0x69,0x61,0xb8,0x98, - 0x89,0xfe,0x2d,0xa5,0x93,0xb4,0x77,0x41,0x00,0x9f,0x14,0x31,0x8d,0x63,0xaa,0x2a,0x3d,0x99,0x52,0x9b, - 0xf4,0x8f,0xfc,0x7a,0x2e,0x01,0x85,0x1c,0xf9,0xab,0x9b,0xe5,0x4e,0x1a,0x03,0x50,0x15,0xbe,0x49,0xde, - 0xc7,0x53,0xe9,0x8e,0x3f,0xb9,0x27,0xc9,0x7a,0xbb,0x4a,0xf3,0x84,0xb7,0x40,0x3e,0x4c,0x6a,0x81,0xd5, - 0x93,0xbf,0x7a,0x91,0x2f,0xd4,0x1a,0xcb,0x18,0xd3,0x55,0x19,0xab,0xe1,0xbd,0xa4,0x91,0x46,0x1f,0x02, - 0x47,0xfe,0xaa,0xe2,0xab,0xb8,0xe0,0x44,0xf5,0x21,0xa9,0xbf,0xc6,0xd3,0x54,0xa5,0x9b,0x4f,0x55,0xfe, - 0x6c,0x95,0xab,0x0a,0xea,0x4b,0x8d,0x3d,0x4f,0x38,0x55,0xfe,0xaa,0xe1,0x11,0xbc,0xe5,0x9c,0xaa,0xbf, - 0xcc,0xb0,0x25,0x75,0x25,0xe3,0xb8,0xc8,0x64,0x9d,0x19,0x3a,0x5e,0xf2,0x0f,0x9d,0x68,0xed,0xa9,0x24, - 0x6c,0xd9,0x55,0xc9,0x6c,0xee,0x6b,0xa3,0x4a,0xa3,0xd8,0xf3,0x15,0x48,0xef,0xc3,0x6a,0x57,0x68,0xef, - 0x70,0xad,0xd0,0x45,0xd0,0x43,0x70,0xa1,0x5e,0x32,0xeb,0x45,0x35,0xd8,0x80,0x2d,0x4d,0xb4,0xc8,0xe3, - 0x68,0xfa,0xa1,0x17,0x89,0xf9,0xb9,0x1e,0xfc,0xa7,0x82,0x8b,0xae,0xb6,0x05,0x1c,0x24,0xbb,0x82,0x27, - 0xf9,0xdd,0x84,0x28,0x49,0x7d,0x93,0x10,0xe6,0xfc,0xf6,0xcd,0x8b,0xd7,0xbd,0x25,0x75,0xe3,0xca,0xc0, - 0x7a,0x67,0x84,0xfa,0x3d,0x53,0x51,0x6e,0x4c,0xa0,0xd8,0xb7,0x57,0x71,0xbc,0xa4,0x83,0x94,0x5c,0x44, - 0xf6,0x42,0x9b,0x12,0xaf,0xac,0xef,0x68,0x81,0x95,0x4f,0x63,0x6a,0x54,0xe3,0x84,0x1e,0xce,0x26,0x90, - 0x7e,0x74,0x21,0xe7,0xa6,0xdd,0xc7,0x61,0xb6,0x7c,0x8e,0x98,0x5a,0x0e,0x7d,0xf4,0x10,0x5d,0xab,0x55, - 0xe2,0x69,0x46,0xa8,0xfd,0xe2,0xe7,0x65,0xe0,0xc8,0x57,0x6f,0xb5,0x74,0x36,0x16,0x1e,0xb4,0x51,0x48, - 0x85,0x0d,0x2b,0x84,0x56,0x21,0x48,0x7e,0xf1,0x8b,0x4b,0xde,0x5c,0xfb,0x2e,0xd0,0x10,0x20,0x69,0x3d, - 0x4e,0xac,0x95,0xf8,0x8e,0x4b,0x3d,0x59,0x2c,0xb2,0xab,0x42,0xb0,0x9e,0xf2,0x29,0x60,0xe1,0x95,0xde, - 0x2c,0xa7,0xb1,0x7d,0xc8,0x56,0x39,0x01,0xdb,0x65,0x32,0x89,0x81,0xb6,0xf9,0x16,0x93,0x8b,0x5a,0x79, - 0x44,0xe2,0xea,0xb5,0x9b,0xb2,0xb7,0x5c,0xe5,0xcb,0xac,0x88,0x8b,0x41,0x0f,0x17,0xa4,0x2a,0x5d,0x2f, - 0x02,0x50,0x12,0x16,0x8d,0x5a,0xa0,0xdf,0x67,0x65,0xb9,0x0c,0xf6,0xf6,0x0e,0xbe,0xba,0x3f,0x38,0xf8, - 0xe2,0xcb,0xc1,0xc1,0xe0,0xe1,0x5e,0xef,0xea,0x8c,0xa0,0x90,0xfa,0xef,0xe1,0x96,0x37,0x48,0x1f,0xa3, - 0x48,0x4a,0x6a,0x9a,0x99,0x8c,0xb2,0x97,0xcd,0x08,0x4e,0x8b,0x5e,0x91,0xc1,0xc7,0x4c,0xd1,0x53,0x77, - 0x1c,0x06,0x17,0xa3,0x17,0xdd,0x2d,0x6e,0x64,0xca,0xa6,0x0a,0x94,0xc8,0xbe,0x12,0xe2,0x09,0x52,0x01, - 0x9b,0x51,0xfa,0x81,0x6e,0xfe,0x0f,0x83,0xde,0x6f,0xd4,0x19,0x2e,0xb0,0x68,0x41,0x3f,0x8b,0x9e,0xe1, - 0xc0,0x7a,0x42,0x2b,0xf5,0x20,0x24,0xc0,0x68,0x4f,0x3f,0xf4,0xa0,0x2c,0x09,0x1a,0x01,0xd0,0x60,0x2f, - 0x73,0x4f,0x85,0xe4,0x5a,0xa5,0x65,0xb2,0xe0,0xdc,0x1f,0xbf,0x7e,0xde,0x5b,0x80,0x12,0x29,0x68,0xa3, - 0x09,0x59,0xdb,0xb7,0xb0,0xde,0x28,0x7b,0xd4,0xb5,0x12,0xb2,0x51,0x6a,0xcb,0xbb,0x56,0x9f,0x56,0x83, - 0xb7,0x88,0x00,0xad,0x87,0xbb,0xbc,0x97,0xb3,0xc7,0xb0,0x41,0x4f,0xdd,0x29,0x1c,0x08,0x8e,0xc7,0x81, - 0x9b,0x9b,0xa8,0x92,0xa8,0x20,0xe2,0x27,0x9f,0xd2,0xa4,0xa7,0x44,0xd6,0xe6,0x94,0xd3,0xdc,0xbe,0xd3, - 0x98,0xc0,0x02,0x03,0x2d,0x92,0xa9,0x5c,0xf8,0x8e,0xaf,0xab,0xd1,0x5d,0xa5,0xbe,0xe8,0x62,0x3e,0x9b, - 0x10,0x0c,0xff,0x4c,0x9d,0x3c,0xff,0xee,0xd9,0x1b,0xf9,0xad,0x00,0x6b,0x45,0x60,0x0d,0x57,0x5d,0xb8, - 0x1c,0x69,0xd9,0x8b,0x64,0x9e,0x16,0xb8,0xbe,0x5e,0xbc,0xe9,0xa9,0x98,0xf2,0xdd,0xc0,0x24,0x5b,0x40, - 0xe4,0xf9,0x29,0x2d,0x0b,0x36,0x85,0x16,0x94,0x0a,0x9e,0xe3,0xd0,0xca,0x46,0x60,0x65,0x17,0xa8,0x0f, - 0xc0,0x80,0x49,0x13,0x81,0x09,0x1d,0x4a,0xfa,0x75,0x8f,0xa0,0x64,0x9a,0x81,0x4c,0x22,0xca,0x65,0xa9, - 0xba,0x21,0xf2,0xc5,0x74,0x49,0x33,0x5a,0x9d,0xd2,0xdd,0x79,0x11,0x15,0xe7,0x40,0xbf,0xf8,0xee,0xe1, - 0x87,0xe3,0xcf,0x09,0xeb,0x5d,0x01,0x29,0x7f,0x2b,0x1f,0x8e,0x7f,0x46,0xb4,0x87,0xd8,0x97,0x7e,0xa7, - 0xbe,0xaa,0xb4,0x37,0x95,0x3f,0x64,0x60,0x23,0x31,0x29,0xa5,0x96,0x26,0xa6,0xa7,0x8d,0x22,0x62,0x6b, - 0x74,0x09,0xa7,0x10,0x25,0x55,0x2e,0x2d,0x52,0xa0,0x07,0x95,0xce,0xb3,0x3c,0x4b,0x89,0xea,0xe2,0xd5, - 0x77,0x5f,0x1d,0xbe,0x21,0xac,0x42,0xc8,0xac,0x50,0xc5,0xbe,0x23,0x52,0x91,0x29,0x5d,0x4a,0xcb,0x10, - 0x58,0xf3,0x22,0x5a,0xea,0xbc,0x6f,0xb3,0x6c,0x4e,0x50,0xf0,0x92,0x52,0x7a,0x4f,0xde,0xbc,0xa8,0xe8, - 0x64,0x95,0x6f,0xa8,0x64,0xe1,0x0f,0xb8,0xf7,0xb7,0x70,0x5e,0x4b,0x23,0xa7,0x8e,0x7a,0xec,0xc8,0x36, - 0xe7,0x64,0x26,0x47,0x2e,0x81,0xf4,0x7e,0x52,0x24,0x6b,0xa2,0x52,0x7a,0x6e,0x75,0x97,0x7a,0x5c,0xf6, - 0xc7,0x88,0x76,0x99,0xfe,0x49,0x4a,0x26,0xa3,0x91,0x02,0x32,0xf5,0xc7,0x2c,0x9d,0x5b,0x49,0xc4,0x64, - 0x0a,0xd6,0xfd,0x96,0x16,0x7a,0xa1,0x4a,0xf7,0xf6,0x88,0xae,0x53,0xc5,0x04,0xc5,0x2c,0x54,0xb9,0x5a, - 0xa5,0xb7,0x71,0x94,0x4f,0xce,0x40,0x74,0xe1,0x2f,0xaf,0x07,0x1d,0x24,0x22,0x6e,0xe9,0x96,0xe2,0xd3, - 0xf6,0x86,0x4f,0x9b,0x50,0x75,0x7c,0xc6,0x18,0xfd,0xf7,0x89,0x41,0xb9,0xf4,0x74,0xf1,0xb7,0x87,0x4f, - 0x84,0x1e,0xc4,0xc2,0xbe,0x04,0x46,0xb8,0xa1,0xfc,0x93,0x37,0x9a,0x0e,0x57,0x87,0xb2,0xd6,0x91,0x3a, - 0xd6,0xf6,0x1d,0x43,0xa7,0x44,0x6a,0xbe,0xf9,0xf5,0xe5,0xf3,0x9c,0x52,0xf2,0xb7,0xcf,0xa9,0xbf,0x37, - 0xcf,0x9e,0x7c,0xf5,0xc5,0x97,0x9f,0xf7,0x28,0xb5,0x37,0xe5,0xe4,0x1e,0xa5,0x4b,0x4d,0xe8,0x06,0x37, - 0xeb,0x3c,0xfb,0xb1,0xbb,0xce,0xb3,0x1f,0xa5,0xce,0x04,0x8e,0x4c,0x51,0xe9,0xea,0xe2,0x89,0x06,0xea, - 0x8e,0xf2,0x2f,0xfe,0xe7,0xff,0xfb,0xac,0x82,0x74,0x2a,0xfc,0x0d,0xc8,0xc6,0x38,0x9d,0x7c,0xe8,0x2c, - 0x3e,0xd3,0xb9,0x02,0x4e,0x04,0x3b,0x3f,0xc4,0x1f,0x5a,0xf0,0x44,0x27,0xaf,0x56,0xe0,0x8c,0x8f,0xf7, - 0x4f,0xb1,0x38,0xf1,0x9b,0x02,0x7d,0xce,0x7a,0xab,0x82,0x11,0xa1,0x4d,0x45,0x0e,0x7a,0x84,0x16,0xa6, - 0x7c,0x35,0x2c,0xb2,0xec,0x1c,0xf9,0xab,0x25,0x63,0x21,0x15,0xc0,0x91,0x8b,0xff,0x49,0x97,0xeb,0x80, - 0xb0,0x16,0xdd,0xae,0x84,0x51,0xce,0x7b,0x88,0x28,0x47,0x00,0x0e,0x44,0xa1,0xfa,0xf6,0xb1,0xee,0x3d, - 0x35,0xa8,0x0b,0x66,0xe7,0x20,0x8c,0x2d,0x09,0xb6,0x05,0xed,0xf1,0x2c,0x0a,0xba,0x0e,0x7e,0x22,0xf6, - 0xb5,0x00,0xaa,0x93,0xdb,0x8c,0xa6,0x17,0xeb,0x46,0x70,0x69,0xab,0xfb,0x45,0xfb,0xbf,0xa3,0x0b,0x8d, - 0x90,0xdc,0x12,0x23,0x9d,0x73,0xe3,0x60,0x99,0xf7,0x18,0x27,0x46,0x9a,0x08,0x4a,0xca,0x7b,0x84,0xb1, - 0x0b,0xb9,0xe0,0x30,0x74,0xbd,0x28,0x03,0x3a,0xde,0x2c,0xfa,0x0d,0xae,0xc1,0x29,0x1a,0x8e,0xf4,0x19, - 0x5c,0x23,0xf2,0xdd,0x82,0x64,0x3a,0x3d,0x22,0xbb,0x06,0xec,0x45,0xa7,0x98,0x57,0x69,0xd8,0x45,0xe1, - 0x3c,0xab,0x9b,0xbc,0x55,0xd9,0xba,0x86,0x89,0xb6,0x2d,0xe1,0x15,0x5a,0xea,0x08,0x16,0x69,0x95,0x57, - 0x5c,0x68,0xbd,0xac,0x45,0xdc,0x15,0xad,0x1a,0x35,0xca,0xae,0x5e,0xef,0xa5,0x4d,0x9d,0xb5,0x6b,0xd6, - 0xe9,0x4a,0xab,0x2e,0x33,0xae,0xdd,0x93,0x2a,0x60,0x66,0xdd,0x39,0x29,0xae,0xd4,0x9e,0x15,0x57,0x68, - 0xcd,0x4a,0xb0,0x18,0xee,0x39,0xc5,0x02,0x5b,0x35,0xf2,0x98,0x46,0x44,0xfb,0x2a,0xd7,0xa0,0x66,0xf7, - 0x56,0x4b,0x8c,0x59,0xa3,0x41,0x3a,0xdb,0xd8,0xb8,0x1e,0x07,0x23,0xec,0x49,0x1e,0x80,0x53,0x63,0x4d, - 0xdd,0x03,0xb3,0x7d,0x76,0xe3,0x3c,0x4a,0x7e,0xa5,0x00,0x1d,0x28,0x0e,0x96,0x70,0xa1,0x30,0x76,0xaa, - 0x10,0x9d,0xbd,0x52,0xd9,0x39,0x60,0x5e,0x23,0x37,0x9a,0x3c,0x5d,0x9a,0x49,0x1a,0x31,0x3f,0xc2,0xcd, - 0x6d,0xdb,0x1e,0x9e,0xfa,0x96,0xed,0xe1,0x8a,0xdb,0xf7,0x87,0xab,0x6e,0xdb,0x1f,0xe2,0x96,0xd3,0x85, - 0x61,0xfc,0x89,0x46,0x5f,0xb6,0x64,0x2d,0x1f,0x27,0x6c,0x89,0xff,0x9e,0xac,0xe5,0x6b,0x22,0xeb,0xb2, - 0x79,0x9c,0x9e,0x2e,0x92,0xf3,0xde,0x3c,0xa6,0x7b,0x9f,0x68,0xb3,0xd3,0xf8,0xcf,0x64,0xde,0xbb,0xe0, - 0x8b,0x62,0x4a,0x05,0x2e,0x59,0x8e,0x60,0xc8,0x92,0xb8,0x4b,0xfc,0xf2,0x1d,0x95,0x2e,0xd4,0xb0,0x41, - 0x92,0x10,0x31,0xb8,0x4c,0x93,0x78,0x75,0x45,0x7f,0xe7,0xb1,0x84,0x29,0xc2,0x88,0x31,0x68,0xa2,0x0d, - 0xe2,0x3f,0x63,0x08,0x60,0x68,0x0f,0x7a,0x29,0x0d,0x25,0x4e,0x1b,0xe2,0x97,0xc3,0x2c,0x06,0x99,0xd3, - 0x48,0xd7,0x22,0x98,0xa7,0x66,0x80,0xd9,0xb2,0x58,0x44,0x51,0xfa,0x97,0xa4,0x31,0x3f,0x27,0x25,0x8d, - 0x6c,0x72,0x16,0x9d,0xc7,0x8b,0x8f,0x17,0xc9,0xd4,0x6b,0x29,0xb9,0xcc,0x5b,0x1a,0xc4,0x12,0x4e,0x48, - 0xa6,0x4d,0xe9,0x4c,0x42,0x83,0x9c,0xc7,0x97,0xc4,0x6a,0x61,0x2e,0x5d,0x12,0x9a,0x68,0x46,0x90,0x91, - 0xa5,0x6d,0x01,0xcd,0x0f,0x94,0x39,0x8f,0xb1,0xfe,0x71,0xae,0xa2,0x11,0x10,0x61,0x73,0x8e,0x76,0x9a, - 0x82,0x9a,0x5f,0xaa,0x12,0x54,0x78,0x91,0xe5,0x28,0x54,0x17,0xd6,0xbc,0xc2,0x48,0xd0,0x92,0x0c,0xe5, - 0x63,0xc4,0x35,0xdf,0xad,0x92,0x69,0x32,0x8f,0xb7,0x88,0x6b,0x88,0x63,0xc1,0xa9,0x88,0x01,0x21,0xd8, - 0xcf,0xc5,0x0c,0x54,0xbe,0x92,0xc9,0xc4,0x49,0xd9,0x92,0xd9,0x1c,0x4a,0x59,0x2d,0xac,0x89,0xe3,0x05, - 0x7b,0x6e,0x89,0xa9,0x9d,0xf4,0xd3,0xa4,0x36,0xef,0xa6,0x4d,0xa9,0xcd,0x8f,0x0c,0x0b,0x3d,0xc2,0x17, - 0xbd,0xcb,0x0c,0x77,0x04,0x95,0xa9,0x18,0xf4,0x38,0xae,0xa4,0x35,0x97,0xb5,0xa5,0x8a,0xe1,0x86,0x2f, - 0x29,0x5a,0x72,0x9b,0xb9,0xac,0x7c,0xbd,0x99,0x79,0x6c,0x38,0x98,0x38,0x9f,0x36,0x04,0x38,0x87,0xb5, - 0xa2,0x34,0x31,0x01,0x91,0x38,0xbd,0x59,0x8a,0x13,0x4b,0x1f,0x75,0xae,0x5c,0x57,0x62,0xae,0x9b,0x8e, - 0xc2,0x65,0x16,0xcf,0x75,0x9a,0xe6,0xbc,0x69,0xcb,0xaf,0xa8,0x66,0x9c,0x57,0x3d,0xd4,0x39,0x78,0x48, - 0x10,0xe2,0x59,0x4b,0x9e,0xf3,0x4b,0x54,0x94,0xd2,0x69,0x43,0x9e,0xf3,0x3b,0xee,0xe3,0xe5,0x79,0x76, - 0x51,0x94,0x75,0x99,0x0e,0x67,0x40,0x1d,0x79,0x1e,0x41,0xb9,0xd5,0x16,0xed,0xe8,0x91,0x83,0x1c,0x4d, - 0x1b,0xa2,0x1d,0x3a,0x96,0xd3,0x68,0xde,0x90,0xed,0x3c,0xa7,0x85,0x31,0xa9,0xb6,0x6c,0x27,0x8b,0xad, - 0x8c,0x4a,0xb4,0xf3,0x9c,0x3b,0x36,0x19,0x5a,0xb6,0xf3,0x4b,0x4e,0x5d,0xeb,0xc4,0x4a,0xb8,0xf3,0x3b, - 0x61,0xf4,0xaa,0xb0,0x16,0xee,0xfc,0x9e,0xc9,0x40,0x6a,0xc2,0x9d,0xa7,0xf1,0x55,0x3c,0x67,0x65,0xdd, - 0xa6,0x78,0x47,0x6d,0xfd,0xa9,0x2a,0xb0,0x7d,0xfb,0x1b,0x92,0x9e,0xa7,0xad,0x0a,0x35,0x20,0xb8,0x4d, - 0xe0,0xf3,0x9a,0xee,0x28,0xab,0x02,0xf1,0xbd,0x04,0xb7,0x10,0x81,0xf6,0x9a,0x80,0xc8,0x64,0x51,0x3c, - 0x23,0xb0,0xbd,0x4d,0xe6,0xb3,0x15,0xb8,0xba,0x65,0x3e,0x1a,0x62,0x2c,0x91,0x8f,0x05,0x7c,0x75,0xc1, - 0x4f,0x0d,0xfc,0xb6,0x4a,0x7f,0x68,0x94,0x67,0x44,0xd3,0x75,0x49,0x7f,0x9e,0x88,0xdc,0x27,0xbe,0x55, - 0xec,0xf3,0x2d,0xe6,0x0f,0xb1,0x8f,0xc1,0x36,0xf3,0x78,0x91,0xbc,0x3b,0xc7,0xd4,0x92,0x8e,0xa6,0x8d, - 0xd0,0xe7,0x69,0x06,0xd1,0x59,0x1a,0x45,0x39,0x6d,0x66,0x1a,0x5b,0x13,0xef,0x12,0xff,0x48,0x09,0x55, - 0x1c,0x35,0xb7,0xca,0x81,0x2a,0x64,0x6b,0x30,0xa5,0x85,0x7f,0xed,0x8b,0xb2,0x21,0x09,0x7a,0x62,0xcb, - 0x26,0x6a,0xc0,0x61,0x15,0x13,0xb2,0x9e,0x4e,0xcf,0x39,0x51,0xca,0x60,0x8a,0x33,0x99,0x6e,0x8f,0xb8, - 0x33,0xac,0x84,0xc8,0x86,0x2a,0x02,0x2e,0xc6,0xf5,0x1c,0xcd,0x38,0x8f,0xae,0xca,0x28,0x8f,0x08,0x07, - 0xf2,0x2c,0xf8,0x92,0x05,0x69,0x61,0xe4,0x13,0xb1,0xdc,0x1f,0x68,0x6a,0x1a,0x5b,0xa9,0x06,0xae,0x11, - 0x29,0xa2,0xf7,0xbc,0x5e,0x8b,0x38,0x7d,0x2a,0x42,0x2b,0x18,0xf1,0x6e,0xf7,0x2e,0x93,0xa8,0x53,0x44, - 0x44,0xf9,0xd4,0xf3,0x3b,0x7b,0x64,0x67,0xf1,0x29,0x6e,0xbf,0x0b,0x4c,0x66,0xd0,0x7b,0x2b,0xf3,0x95, - 0x71,0x41,0x8a,0x43,0x54,0x5f,0x82,0xb1,0xf2,0x3c,0xed,0x31,0xf8,0x3d,0x42,0x1e,0x73,0xba,0xe4,0xd5, - 0xd5,0x22,0xd7,0xe8,0x29,0x11,0x94,0xc9,0x22,0x99,0x4f,0x81,0xb0,0x7b,0xdf,0xc7,0xbd,0xf3,0x15,0xad, - 0xa3,0xd5,0x5a,0xd6,0x38,0x42,0x53,0xdc,0x04,0xb8,0x15,0x0c,0xff,0x28,0x4b,0x7f,0x9e,0x52,0x22,0xcd, - 0x69,0x9a,0xaf,0xce,0xb1,0x1c,0x65,0x56,0x62,0xe8,0x53,0x91,0x0f,0x45,0xb8,0x76,0x69,0x11,0x9b,0xe2, - 0x21,0x6b,0x8f,0x41,0x79,0x30,0x65,0xab,0xae,0x63,0xab,0x9c,0x6c,0x9f,0x2a,0xdb,0xde,0x02,0x34,0x4e, - 0x4b,0x14,0xd3,0xb5,0xda,0x90,0x11,0xfd,0xb2,0x5a,0xf4,0xce,0x12,0xa6,0x04,0xe8,0x88,0x63,0x45,0x98, - 0x80,0xa0,0x62,0x57,0xd1,0xe4,0xac,0xbc,0x02,0xc9,0x4a,0xb3,0xf3,0x91,0x62,0xe1,0x21,0x96,0x0f,0x97, - 0x2b,0x5e,0xd6,0x1e,0x81,0x6d,0x8e,0x0b,0x9b,0x97,0xa3,0xd8,0x2a,0x36,0xfa,0xd5,0x34,0xa8,0x05,0x47, - 0xdf,0xc6,0xa7,0xf9,0x8a,0x28,0xc0,0x4a,0x78,0x74,0x56,0x13,0x1e,0xd1,0x9a,0x32,0x80,0xb1,0x00,0x87, - 0xb8,0x5a,0x5a,0xb2,0x98,0x8e,0xff,0x9f,0x80,0xb9,0x28,0x6d,0x4d,0x93,0x18,0x49,0x02,0x40,0xaa,0x94, - 0xbc,0x4b,0x19,0x76,0xaf,0x92,0x05,0xa6,0x6d,0xed,0x15,0xaa,0x41,0x33,0x9f,0x26,0x44,0xff,0xfc,0x99, - 0xbc,0x43,0xfe,0x55,0x4c,0xd3,0xbe,0x02,0xec,0xd2,0x8f,0x8b,0x38,0x56,0x94,0xe8,0x29,0x1c,0x71,0xb5, - 0x05,0x49,0x79,0xbc,0x5d,0x8c,0x04,0x39,0xca,0xed,0x82,0xa4,0xe8,0x62,0x8b,0x20,0xe9,0x2d,0x48,0x39, - 0x1a,0xc7,0x54,0x8b,0x92,0xd0,0xd7,0x56,0x41,0x52,0x53,0x92,0xf4,0x6e,0x5a,0x97,0x24,0xc5,0x37,0x09, - 0x92,0x22,0x98,0x28,0xd0,0x39,0x20,0xb8,0x62,0x04,0xf5,0x17,0xe4,0x49,0xa7,0xc9,0xbb,0xab,0x38,0x67, - 0x48,0xfc,0x18,0x91,0xd2,0x2f,0x42,0x85,0x77,0x89,0x94,0x52,0x4b,0xa4,0xf4,0x94,0xc0,0x6b,0x5a,0xc6, - 0x73,0x42,0x28,0x53,0x4b,0xac,0x84,0x87,0x75,0x3b,0xd1,0xf0,0x5b,0x76,0x79,0x08,0x96,0xaa,0x82,0xb4, - 0xe5,0x67,0x11,0x0e,0x24,0x1d,0xbb,0xd3,0xa8,0x20,0x84,0x02,0x8e,0x42,0xb8,0xb1,0xb8,0x53,0xd2,0xf4, - 0x7b,0x16,0xf3,0x74,0xfe,0xba,0xa4,0xc9,0x62,0x3c,0x6f,0x91,0x30,0xd5,0x5a,0xb6,0xd1,0x07,0xa3,0x09, - 0xfb,0x2a,0x23,0x22,0x7f,0xfe,0xdf,0x21,0x65,0x3a,0x5f,0x64,0xff,0x67,0x09,0x99,0x9e,0x00,0x1b,0xe7, - 0xcc,0x0b,0x12,0xac,0x11,0x46,0x17,0x6c,0x71,0xc9,0x47,0xbf,0x4e,0x24,0xd3,0xd1,0x67,0xee,0x4f,0x95, - 0x29,0xd5,0x5d,0x73,0xa6,0x58,0x09,0x94,0x85,0xa8,0x49,0xae,0x94,0x25,0xa0,0x82,0x6a,0x10,0xf0,0x96, - 0x8c,0xbd,0xff,0x14,0xec,0x67,0x24,0x4e,0x17,0xc0,0x05,0x6a,0x88,0x54,0x9c,0xcb,0x4d,0xa9,0x57,0x48, - 0x97,0xce,0xd1,0xae,0x92,0x39,0x15,0x5a,0xe8,0x24,0x28,0x11,0x34,0x02,0x2e,0x60,0x33,0x25,0x40,0xde, - 0xc7,0x89,0x9d,0x80,0xd1,0x58,0xa4,0xa8,0x90,0x30,0x73,0x13,0x7a,0xc2,0xc0,0xfb,0xd3,0xdb,0x85,0x4f, - 0x60,0xdc,0x14,0x2f,0x6c,0x04,0x4f,0xea,0x0e,0x53,0x27,0xa1,0x2d,0x73,0x42,0x1d,0x8b,0x35,0x51,0x8c, - 0x11,0x23,0x85,0x8e,0x9a,0x5a,0x46,0x63,0xf5,0x74,0x5b,0x95,0xba,0x84,0x03,0x15,0x6b,0x34,0xe5,0x2d, - 0xb5,0x9b,0x62,0x0e,0xd4,0x6f,0x52,0xc8,0x37,0xb5,0xd1,0x12,0x47,0x7d,0xc4,0x7c,0x99,0xb3,0x6f,0x08, - 0xa5,0x6e,0x9b,0xb0,0xaa,0xd3,0x96,0x4d,0xa1,0xa2,0x8d,0x13,0xea,0xc3,0x6b,0x4a,0xa6,0xbe,0x61,0x11, - 0x21,0xe8,0xdb,0xb4,0xa8,0xd0,0x2b,0x03,0xfc,0x16,0xf1,0x14,0x2f,0x28,0x6e,0xc0,0x1b,0x46,0xd5,0x94, - 0x50,0xfd,0x50,0x61,0x41,0x4b,0x24,0x95,0x6a,0x6a,0x67,0x69,0x2d,0xdd,0x5f,0xd8,0x3d,0x7b,0xf9,0xfe, - 0xf2,0xf6,0x49,0x23,0x9b,0xcd,0xa6,0x8a,0x7e,0xc2,0xb2,0x9c,0x27,0xcb,0xa5,0x51,0xce,0x82,0x24,0x4e, - 0xb9,0xbf,0xaf,0xfc,0xc8,0x44,0x97,0x09,0xdd,0xbf,0x59,0x3e,0x58,0x10,0xee,0x58,0x45,0xf3,0xb8,0xe9, - 0xd4,0xc5,0xe1,0xdb,0x4e,0xbb,0x88,0x31,0x26,0xf5,0xde,0x50,0x35,0xe7,0x5e,0xc7,0x74,0x57,0xfd,0x83, - 0x86,0x4f,0x37,0x3f,0x35,0x1d,0xc4,0x3e,0xbb,0x5c,0xb9,0x4e,0x69,0x2e,0xb3,0x44,0xad,0x21,0x1b,0x58, - 0x69,0x69,0xd6,0xce,0xbe,0x5f,0x88,0x84,0x68,0xe7,0x40,0x7d,0xc9,0xee,0xd0,0x4f,0x55,0xe6,0x05,0x81, - 0xdb,0x04,0xe3,0x0a,0x9c,0xb5,0xde,0xf6,0x37,0x79,0x36,0x67,0x2c,0x4b,0xc5,0xe4,0xec,0x1f,0x46,0xa7, - 0x08,0x3d,0x22,0x52,0x0f,0xad,0xd3,0x74,0x5d,0xc9,0xe7,0x54,0x63,0x2c,0x75,0xd2,0xd9,0x76,0xe2,0xa6, - 0x2e,0x8b,0x5a,0x06,0xd7,0xb1,0xe2,0xb1,0xa8,0x8b,0x84,0xe8,0xad,0xfd,0x01,0xff,0x57,0x09,0x9d,0x6a, - 0x25,0x94,0x60,0x66,0xbf,0x5e,0x74,0xa3,0xe0,0x87,0xfa,0x30,0x20,0x84,0xe0,0x6f,0x95,0xd8,0x04,0xbc, - 0x9f,0xdd,0x4e,0x59,0x67,0x0b,0xc5,0x18,0x4d,0x17,0x87,0x4b,0x2d,0xe1,0x86,0x6a,0x75,0xe2,0x6d,0x0c, - 0xea,0x96,0xf6,0xa6,0xf1,0x82,0x48,0xac,0x56,0xd3,0x75,0xde,0xc9,0xd0,0x5d,0x5c,0xce,0xe6,0x89,0xb0, - 0x65,0xa5,0x99,0x0b,0x93,0xab,0x5c,0xc6,0x10,0xab,0xd2,0x09,0x88,0xd4,0x1d,0x5e,0x0f,0xfe,0x6d,0x11, - 0x7d,0xfc,0x5b,0x53,0x7a,0x6c,0x6f,0x6f,0xa8,0xb4,0x8a,0x16,0x12,0x1b,0x47,0x8b,0x06,0xfa,0xdc,0x27, - 0xda,0x53,0x01,0x0f,0x81,0x8b,0x74,0x49,0xf0,0x4f,0x88,0x3c,0x9e,0x12,0xb9,0x21,0x39,0xf1,0x14,0xa4, - 0x84,0x8c,0x79,0xa9,0xc8,0x05,0x29,0x7a,0x75,0x81,0x8b,0xdf,0x7c,0xd3,0x85,0x2e,0x5d,0x5b,0x57,0xb6, - 0xce,0xac,0x6e,0x65,0x4e,0xb1,0xef,0x5e,0xda,0x7e,0x2d,0x22,0xc3,0xec,0xf4,0x37,0x3b,0x29,0x08,0xb0, - 0x30,0xc8,0x38,0x1a,0xfb,0x0b,0x83,0x31,0x40,0x03,0x2a,0x49,0x0e,0xe7,0xe4,0x31,0x9e,0xf2,0x2e,0x63, - 0x9d,0x40,0xcb,0xce,0x8e,0xf9,0x5a,0x91,0x6f,0x95,0x07,0xb1,0x72,0x60,0x9f,0x1e,0xd4,0x52,0x71,0x7a, - 0x4c,0x28,0x2b,0x66,0x68,0xe1,0xb9,0xd6,0x75,0xf8,0xd3,0xd1,0x3e,0xc6,0x94,0x02,0xa1,0x1e,0x0b,0x4c, - 0xff,0xcf,0xb4,0x75,0xff,0x81,0xc4,0x57,0x2e,0x07,0xe6,0xf8,0x58,0x41,0xeb,0x7f,0x6c,0x9c,0x3c,0x58, - 0x04,0x0e,0x9a,0x08,0x9a,0x13,0x95,0x90,0x95,0x17,0x81,0x9d,0x1b,0x41,0x71,0x1b,0xe1,0x0d,0xad,0xb3, - 0x2c,0x63,0xde,0x39,0x18,0x36,0xf4,0x87,0xd9,0x4a,0x72,0x7f,0x98,0x3d,0x3a,0x78,0xf8,0x90,0xfe,0xf4, - 0xc3,0x83,0xcf,0x3d,0xe5,0xba,0x32,0x13,0xdf,0x05,0x59,0xb8,0x7b,0x1f,0x59,0x8f,0xc2,0xfb,0xa6,0x44, - 0x62,0x4a,0x94,0x83,0x6a,0x65,0xc3,0x9c,0xfa,0xac,0x2d,0x6d,0x98,0x50,0x8a,0x75,0xc7,0xbb,0xde,0xa0, - 0x3c,0x8b,0x53,0xdb,0x05,0x91,0xe4,0x57,0x57,0xdc,0xd6,0x22,0x72,0x95,0x6d,0xcd,0xb6,0x31,0xfd,0xd6, - 0x42,0x75,0x7c,0xbe,0xbd,0x2b,0xac,0x58,0x67,0x6e,0x51,0x66,0xcb,0xce,0x8d,0x51,0x58,0x8c,0x56,0x78, - 0xe3,0x59,0xff,0xf9,0x4a,0x05,0x35,0x40,0x34,0xb2,0xab,0x57,0x36,0x0a,0xee,0x8c,0x87,0x03,0x60,0x4b, - 0x6b,0xc0,0x16,0x5e,0x2b,0x1c,0x4f,0x88,0x5c,0x88,0xa6,0x72,0xa3,0x82,0x6f,0xa7,0x6d,0xa8,0xbc,0x7b, - 0x77,0xb2,0x20,0x6c,0x87,0x6f,0xba,0x8a,0xdd,0x8e,0x12,0x88,0x86,0xd8,0x06,0xe6,0x22,0x2e,0x75,0x1d, - 0x6b,0xbe,0x8d,0x91,0x08,0x3a,0xd8,0x72,0x14,0x36,0xfe,0xe7,0xf1,0x03,0x38,0x89,0x4c,0xa6,0x71,0xf7, - 0x3c,0x95,0x4d,0x52,0x47,0x93,0x3c,0x9b,0x56,0xa6,0x9a,0x90,0x5b,0x9b,0x51,0x77,0x29,0x65,0x65,0xd1, - 0x3d,0x32,0x0c,0x8a,0xd8,0xd2,0x45,0x4c,0xf8,0x83,0x9f,0xce,0x1a,0x9e,0xad,0x35,0x65,0xbb,0xc8,0x10, - 0x0a,0x48,0xd9,0xe8,0x38,0x0e,0x47,0x53,0x26,0x94,0xb4,0xa4,0xec,0x78,0xe4,0x7c,0x77,0x48,0x7c,0xa1, - 0xfe,0xd9,0x43,0xec,0xb8,0x9e,0xd3,0xaf,0x0a,0x0c,0xd4,0xe5,0x83,0x14,0x26,0xad,0x47,0xd0,0x78,0xd3, - 0xb9,0x4e,0x60,0xbc,0xe3,0xcb,0x48,0x9b,0xd0,0x00,0xd7,0xd7,0x6e,0xe9,0xf5,0x9d,0xe3,0xf4,0x38,0x75, - 0xfa,0xb9,0xcf,0x9e,0xd3,0x6d,0xea,0xf8,0x46,0xdd,0xee,0xe8,0x7d,0x92,0xb1,0x3b,0x28,0xd7,0xd9,0x8b, - 0x96,0xc9,0x9e,0xba,0x5c,0x9d,0x26,0x08,0x77,0x45,0x8c,0x2b,0x95,0x57,0x6b,0x1a,0x82,0x56,0x92,0x96, - 0x24,0x82,0xdf,0x81,0xf2,0xe3,0x3f,0xa8,0x2f,0xe0,0x00,0xe4,0x27,0x7c,0x6c,0x31,0x40,0xda,0x07,0xdc, - 0xf1,0xd4,0xb0,0x2d,0x9a,0xf5,0x93,0x46,0x5e,0x5d,0x7f,0x9f,0x3a,0xf8,0xaa,0xe6,0x5f,0x19,0xbf,0xa5, - 0xa4,0xa6,0xa7,0xa0,0x68,0xe7,0x4f,0x1a,0xbe,0x7a,0x1a,0xff,0xc4,0xa1,0x4b,0xad,0xbf,0x32,0x6c,0xa5, - 0x90,0xa3,0x87,0x5c,0x23,0x77,0x3f,0x69,0xe0,0x9a,0x08,0xd9,0x63,0x8d,0xd5,0x8e,0xf1,0xc3,0x13,0x4f, - 0xf7,0x14,0x34,0xf2,0x32,0xe4,0x90,0x24,0x0f,0xd4,0xcf,0xf5,0xba,0x4d,0x02,0xa9,0x12,0xf5,0xd4,0xf5, - 0x7a,0xbf,0x46,0x0b,0xb5,0x5d,0x0d,0x99,0x6a,0x52,0xc8,0xb3,0xc3,0xf6,0x0e,0xf3,0x47,0x8d,0x6c,0x13, - 0xbb,0xd7,0x0e,0xb3,0x5c,0x2b,0x71,0x94,0x8f,0x09,0xdb,0x9a,0xf2,0xe2,0xe4,0xfa,0x94,0x9f,0x81,0x53, - 0xd0,0x22,0xc9,0xa0,0xfa,0x61,0x8d,0x0e,0xd1,0x31,0x29,0xcf,0xfa,0x85,0x4c,0x3d,0xfb,0xa4,0x36,0x71, - 0x73,0x3b,0xd6,0x2b,0x3c,0xde,0x1f,0xed,0x23,0x45,0x4d,0xdb,0xbe,0x34,0x5b,0x05,0x4d,0x31,0xa2,0x6d, - 0x2e,0xe4,0x95,0xc8,0x3d,0xb8,0x9b,0xd0,0x54,0x3e,0x14,0xaf,0x67,0xbf,0xc6,0xf1,0xb9,0xf7,0x98,0xc6, - 0xa6,0x9e,0x8a,0xdc,0xfb,0xad,0xac,0x2b,0xf3,0x5e,0xe4,0x3e,0x6c,0xd7,0xd3,0x6f,0x46,0xee,0x97,0xad, - 0xbc,0x99,0x3c,0x1b,0xb9,0x07,0x5f,0xb4,0xb2,0x0a,0xfd,0x78,0xe4,0x3e,0x68,0x77,0x58,0xc8,0x0b,0x92, - 0xfb,0x45,0xab,0x3b,0xb8,0x1e,0xaf,0x16,0x1c,0xf3,0x0a,0x61,0x15,0xf6,0xf1,0x00,0x6f,0x43,0xb8,0x01, - 0xfb,0x06,0x9b,0xf6,0xd7,0x00,0x5f,0x88,0xfa,0x4f,0x3d,0xba,0x66,0x2e,0x52,0xfd,0xaf,0x9c,0xe1,0xfa, - 0xe8,0x2b,0xf4,0xc3,0x64,0xec,0xa7,0x61,0x1f,0xd6,0xf9,0xef,0x3e,0xbc,0x5d,0x27,0xc9,0xb3,0x2d,0x81, - 0x76,0xe0,0xdf,0x1e,0x7c,0x16,0xbb,0x67,0x67,0x57,0x41,0xfb,0xc3,0x48,0x1f,0x2a,0x75,0x96,0x22,0x3b, - 0x84,0x38,0x32,0x60,0xe1,0xcb,0x5e,0x8a,0xf3,0x11,0x51,0x11,0x41,0xb1,0x43,0x5f,0x1c,0x21,0x0a,0xf1, - 0x78,0xb3,0x9a,0xfb,0xf9,0x02,0xc1,0x75,0xfb,0x61,0xb1,0xc1,0x65,0x19,0x73,0x90,0xe4,0x78,0x50,0x23, - 0xde,0x25,0x7e,0xe3,0x6c,0x91,0xc1,0x1b,0xfe,0x9e,0x0e,0x8c,0xe0,0x59,0xc5,0x18,0x5a,0x36,0x2d,0xb1, - 0x48,0xf7,0x2a,0xc5,0x8a,0x00,0xe6,0xc8,0x12,0xf2,0x89,0x59,0xca,0xaa,0x2d,0x89,0xb7,0x6a,0xdf,0x39, - 0x7e,0xc5,0x73,0xd9,0x37,0xca,0x40,0xa7,0xd6,0x98,0xb0,0x5a,0x09,0x2b,0xc3,0xb0,0x66,0xb5,0x02,0x2a, - 0x51,0x98,0xb5,0x7a,0x0e,0xa5,0x54,0x9c,0x5b,0x2d,0x4b,0xa7,0x0a,0x2b,0x57,0xcb,0x42,0x0a,0x38,0xbb, - 0x5a,0x62,0xb2,0xb4,0x99,0xbc,0x7a,0x2f,0x26,0xdd,0xf0,0x7d,0xb5,0x7c,0x95,0xb8,0x69,0x82,0x0f,0x82, - 0xf8,0x7c,0x24,0x34,0x37,0xb6,0x85,0x40,0xb9,0x45,0x42,0x57,0x1b,0x41,0x84,0xb2,0xde,0xc9,0xee,0x9b, - 0xd6,0xf0,0x5e,0x66,0x17,0xcb,0x9b,0x76,0x51,0x6b,0xa5,0x95,0xea,0x3a,0x6d,0xf6,0x9d,0x32,0xfd,0xde, - 0x45,0x77,0x39,0x35,0x9d,0x1c,0x1c,0x40,0x3d,0xdf,0xb2,0x73,0xbe,0x65,0x6d,0xbe,0xe6,0x0a,0xee,0x62, - 0x17,0x6a,0x73,0xed,0x64,0xeb,0xb6,0xc2,0xae,0xe2,0x28,0x88,0xcf,0x9b,0xc7,0x74,0x24,0x4d,0x82,0x21, - 0xd8,0x35,0x57,0x6e,0x77,0xa9,0xe2,0x1d,0xd4,0x6b,0xf7,0xfb,0x7e,0x3d,0x41,0x85,0xbf,0x3b,0x08,0x4c, - 0xb2,0x19,0x4e,0xe8,0xec,0x39,0x56,0x68,0x83,0xde,0xfd,0xce,0x32,0xbb,0xb5,0x32,0x0f,0x3a,0xcb,0x1c, - 0x1f,0xd7,0x0a,0x3d,0xec,0x2c,0xb4,0x76,0xfc,0xe6,0x4c,0x37,0x1b,0xff,0xfe,0xe7,0xfb,0xbc,0x5c,0x6d, - 0x5e,0xcb,0x5e,0x2d,0xe6,0x0b,0xcc,0x22,0x28,0xcb,0xf1,0x6a,0x89,0xa8,0x05,0xc2,0x8c,0x9a,0x55,0xc6, - 0x23,0x89,0x50,0xe8,0x5d,0x4e,0x69,0x2b,0xb1,0x93,0x3e,0xa6,0xfa,0x12,0xd7,0x9e,0xcf,0x6c,0xa5,0x20, - 0xc7,0xc4,0x11,0xdc,0x52,0x57,0x78,0x01,0xb5,0xca,0x2a,0xc8,0xdf,0x7d,0x1d,0xcc,0x4f,0x1f,0x39,0x82, - 0xb4,0xa1,0xda,0x06,0xb5,0x40,0xfc,0xc7,0x44,0x12,0x14,0xcb,0x7c,0xbd,0xc2,0xf5,0xca,0x18,0x83,0x84, - 0x0e,0x0c,0x74,0x38,0xa0,0xae,0x71,0x6e,0xba,0x97,0xe0,0x30,0x7e,0x5f,0xfe,0xb5,0x65,0xe8,0xf1,0x71, - 0x69,0x17,0xc3,0x0b,0xae,0x16,0x43,0x4c,0x1d,0xef,0x13,0xd7,0xe7,0x23,0xda,0x86,0xba,0x18,0xb5,0xab, - 0xd6,0xeb,0x23,0x2a,0x88,0x36,0x99,0xae,0x72,0xff,0x63,0xaa,0xd4,0x94,0xcc,0x74,0x4d,0xbd,0xf2,0xbd, - 0x6d,0x73,0x49,0x96,0x1a,0xbe,0x3f,0xa2,0x8b,0x9a,0xa6,0x9a,0xee,0xe2,0xf3,0x4f,0xa8,0x99,0x88,0xe6, - 0x9a,0xae,0xda,0xdc,0xfe,0xdb,0xf6,0xa7,0x02,0x0d,0xc4,0xd8,0x69,0x49,0xfb,0x6f,0xbe,0x46,0x47,0x96, - 0x90,0x20,0x6e,0x49,0xa2,0x98,0xfd,0x0f,0xb6,0xb3,0x73,0x7b,0x4a,0x2e,0xfc,0x89,0xf4,0x55,0x35,0x97, - 0x4f,0x25,0xad,0x9a,0x03,0xec,0xc2,0xd0,0xb7,0xcf,0x08,0xd4,0x46,0xe3,0x95,0xa3,0xfb,0x9a,0xe2,0x43, - 0xa4,0x56,0xca,0x46,0xfd,0xfb,0x2c,0xb5,0xb3,0xe5,0xe5,0xa1,0x8a,0x39,0xcd,0x0f,0x00,0xf0,0xde,0x00, - 0x0d,0xaa,0x61,0xaa,0xe2,0xdd,0xbb,0xce,0x2c,0x81,0xb1,0xaa,0x91,0x2c,0xd2,0x62,0x7e,0x2d,0xe1,0x9e, - 0x9e,0x7e,0x78,0xc1,0xd9,0x32,0x8e,0x6f,0x50,0x8c,0xa3,0x6a,0xc5,0x05,0xfc,0x36,0x28,0xc1,0x05,0x8b, - 0xb3,0x69,0x42,0xc1,0x83,0x2f,0xe2,0x87,0x7e,0x96,0xfe,0x5c,0x97,0xd5,0xd7,0x5c,0xfc,0x36,0x07,0xc6, - 0xe4,0x57,0x0e,0xa3,0x58,0xf7,0x60,0x7f,0xff,0x33,0xc1,0xcc,0xf1,0x74,0x0f,0x31,0x35,0xcb,0x08,0x21, - 0xcb,0x86,0xad,0x6b,0xb7,0x7a,0xd7,0x81,0xb3,0xc9,0xff,0xfd,0x77,0x6e,0x7d,0x33,0xba,0xaf,0xdd,0xc6, - 0xb4,0x2c,0x59,0x28,0xbe,0x6f,0x5d,0x59,0x5a,0x55,0xaa,0x17,0x97,0xec,0xe8,0x7c,0x23,0xf2,0x64,0x25, - 0x57,0xbd,0xed,0xb6,0x46,0x58,0xc1,0x0e,0x71,0x2c,0x58,0x41,0x89,0xc3,0xd0,0x90,0xc8,0x0a,0xfb,0xdf, - 0x14,0xd3,0x76,0x4b,0xe3,0x34,0x84,0x2a,0xe9,0x24,0x5d,0x93,0xfb,0xfb,0x9e,0xb7,0xa9,0xbd,0xa7,0x75, - 0x0f,0x8f,0xbd,0xd9,0x5b,0xbd,0x00,0x2a,0x3b,0xba,0xc5,0x33,0x46,0xb7,0x30,0x79,0xdf,0x22,0xc1,0xdb, - 0x71,0xb1,0x38,0x24,0x16,0xaf,0x92,0x09,0x70,0x4f,0x6c,0x42,0x3d,0xf6,0x54,0x83,0xd2,0xdf,0x78,0x43, - 0xcd,0x05,0x94,0xe2,0xe9,0x57,0xb3,0xf1,0x68,0x7c,0x6b,0x9b,0x79,0x3f,0x54,0xa9,0x47,0xe9,0x58,0xe2, - 0x2a,0x0d,0x6f,0xe0,0x21,0xf2,0xbd,0x7a,0x1b,0xde,0x46,0xc4,0x00,0x2a,0x02,0xce,0xd6,0x6e,0x94,0x78, - 0xbb,0xd9,0x15,0xc6,0xbc,0x45,0xd6,0xde,0xa6,0x46,0xc5,0xfc,0xfa,0xba,0x21,0xf8,0x38,0x88,0x1f,0x48, - 0xe4,0x2c,0x84,0x86,0xfe,0x1b,0x94,0xb6,0xb5,0xe7,0x37,0x51,0xd9,0x6a,0xb7,0x21,0x93,0x6e,0xbe,0xa2, - 0x6e,0x07,0x64,0x29,0x20,0x90,0xd9,0x7c,0x39,0xab,0x28,0x6f,0xc6,0xf1,0xd0,0x0d,0x28,0x82,0xbd,0x3d, - 0xbc,0xce,0x28,0x75,0x00,0x9a,0x7c,0xc1,0x2a,0x01,0x48,0xe3,0xa5,0x98,0xc7,0x19,0xc4,0xa5,0x7b,0xef, - 0x0a,0x66,0xb0,0xc4,0xc5,0x6b,0x70,0xad,0x95,0x92,0xaa,0x2e,0xfd,0xf3,0x18,0x3c,0x89,0x90,0xef,0x83, - 0xea,0xc5,0x67,0xd3,0x5a,0xa9,0xed,0x2c,0x2d,0x4e,0x2e,0xdd,0x87,0x05,0x3c,0x64,0xd7,0x12,0x4c,0x94, - 0xbd,0x2a,0xf6,0xbc,0x9d,0x0d,0xff,0x3f,0x34,0xd0,0x8b,0xb8,0xcc,0x3f,0x98,0x01,0x0d,0xcd,0x60,0x16, - 0x51,0x09,0xa7,0x40,0x51,0xe9,0x57,0x49,0x84,0x4d,0x52,0xfc,0xfb,0xd1,0xf2,0x8b,0xfa,0x0e,0x6c,0xd9, - 0xb7,0xf6,0x8a,0x5b,0x8c,0xd2,0x47,0xc8,0xf7,0xd8,0x5f,0xaf,0xb9,0x87,0x2c,0xbe,0x77,0x58,0x1d,0x5b, - 0x23,0xa9,0x6b,0xc8,0x62,0x34,0xb5,0xd7,0x14,0xd7,0x35,0x8b,0xd5,0xb3,0xeb,0x6f,0xa3,0xfa,0x50,0x35, - 0x6b,0xd4,0x65,0x72,0xa9,0x96,0x23,0xe4,0xe1,0xb6,0xa2,0x74,0xec,0x86,0xe5,0x0d,0xc2,0xb9,0xdc,0x12, - 0xce,0xd5,0x24,0x73,0xb9,0x2d,0x3f,0x33,0x62,0xb9,0xbc,0x9a,0x1c,0xa6,0x94,0x37,0x84,0x6c,0x79,0xed, - 0xe1,0x8a,0xb2,0x8d,0xe0,0xce,0xaf,0x04,0x58,0x81,0x9b,0x0f,0x44,0x02,0x37,0x3a,0x08,0xf6,0xbd,0x35, - 0x62,0x17,0x8a,0xd8,0x6d,0x74,0x5f,0xfd,0x36,0xb2,0xb6,0xd1,0x43,0x5d,0x42,0x09,0xd8,0x46,0x5f,0xaa, - 0x04,0x91,0xaa,0x8d,0x0e,0xbe,0x50,0xbf,0xb5,0x28,0x6d,0xf4,0x40,0x37,0x22,0xf2,0xb3,0xd1,0x17,0x68, - 0x82,0x8e,0x6e,0x0b,0xb9,0xd4,0x85,0xb5,0x7e,0xf9,0x77,0x59,0xf6,0x86,0x50,0xed,0x66,0xa6,0x9d,0x6e, - 0x44,0x3a,0xba,0xf6,0x13,0x77,0xf3,0x85,0x67,0xcb,0xd6,0xb7,0x76,0xb0,0x2e,0x50,0xad,0x24,0xa8,0x84, - 0x63,0x2a,0xb1,0xe9,0xe7,0x0f,0x1b,0xe2,0x51,0x23,0x04,0xdd,0xa9,0x84,0x9e,0x3b,0xb6,0x90,0x73,0xc7, - 0x12,0x6a,0xee,0x18,0x21,0xe6,0x8e,0x25,0xb3,0xdc,0x31,0x22,0x4a,0x09,0xfe,0x21,0x61,0x5b,0x3b,0xa7, - 0x14,0xdf,0x3c,0x27,0x15,0xfd,0x25,0x46,0xf4,0x97,0x4e,0x95,0x91,0xbf,0x27,0x99,0x6a,0x0a,0x27,0xfd, - 0x96,0xc0,0xf1,0xef,0x6e,0x7d,0x4b,0xf8,0x78,0xbb,0xc4,0x66,0x5a,0x97,0x58,0x6e,0xdf,0x7e,0x19,0xe1, - 0x8d,0x00,0x60,0x6d,0xf9,0x32,0x49,0x83,0xfb,0xfe,0xd4,0x68,0xba,0x5b,0x3b,0xb3,0xa5,0xbf,0xd6,0xde, - 0x34,0x3b,0xac,0xed,0x0e,0x3c,0x74,0x26,0x94,0x12,0x31,0xb8,0x77,0x3e,0xbf,0x3a,0xce,0x10,0x51,0x93, - 0x25,0x70,0x40,0xda,0x0f,0x9d,0xbe,0xa3,0xc9,0x6a,0x8b,0xaa,0x88,0xf7,0xbe,0xd8,0xf7,0xfc,0x44,0x92, - 0xa2,0xd3,0x82,0xc6,0xf1,0x3f,0xbe,0xd8,0xd7,0x32,0x59,0x44,0xc1,0xeb,0x3b,0x81,0xe3,0x27,0x8f,0x0e, - 0x74,0x33,0xfb,0x8e,0xe7,0xa7,0x08,0xa9,0xb9,0xf1,0x39,0x74,0x0d,0x5d,0x7e,0x5a,0x7f,0xe1,0x5a,0xb6, - 0xa8,0xbd,0x8a,0x36,0xd5,0x09,0x62,0x0f,0x9a,0xb1,0x1c,0xd0,0xb7,0xae,0xee,0xf0,0xe9,0xf5,0x8b,0x4f, - 0xeb,0x57,0x85,0xf9,0xb1,0xfa,0x37,0xaa,0x3e,0xf6,0x46,0x74,0xa9,0x39,0x84,0xce,0x3f,0x9c,0x7e,0x0c, - 0xef,0x4f,0x9b,0xff,0x0f,0x0c,0xb6,0x23,0x4c,0xaf,0x0a,0x02,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x77,0xdb,0x46,0xb2,0x2e,0xfa,0x57, + 0x24,0x1c,0x6f,0x19,0x18,0xb6,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0x7e,0x26,0x4e,0xfc,0x8a,0x2d, + 0x3b,0xc9,0x28,0x1a,0x2d,0x88,0x04,0x25,0xc4,0x24,0xc0,0x00,0xa0,0x64,0x45,0xe4,0xf9,0xed,0xb7,0xbe, + 0xaa,0x7e,0x01,0x84,0x9c,0x64,0xaf,0xbd,0xee,0xf2,0xb2,0x08,0x74,0x37,0xfa,0x59,0x5d,0x5d,0xef,0xde, + 0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x09,0xca,0xb3,0xdf,0xb2,0x49,0x13,0x24,0x49, + 0x73,0xbd,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0xbd,0xb7,0xb7,0x95,0xb3,0x28,0xa7,0xab,0x79, + 0x36,0x96,0x9f,0xa1,0x2e,0x97,0x34,0x61,0x14,0x07,0xa6,0x4e,0x57,0x78,0x9a,0xcd,0xf2,0x22,0xdb,0xdb, + 0x93,0xdf,0x61,0xba,0x98,0x8e,0xe5,0x31,0x3c,0x3e,0xa1,0x76,0xe3,0xdb,0xda,0x1d,0xeb,0xdf,0x61,0xfa, + 0x29,0x2f,0xa5,0xf6,0xcc,0x3d,0x6f,0xc2,0xe6,0x22,0xaf,0x95,0x1d,0x42,0x74,0x53,0x65,0xcd,0xaa,0x2a, + 0x76,0xdc,0xa0,0xa2,0x1b,0xf3,0xbc,0xd3,0x84,0x55,0x74,0x93,0xcf,0xc2,0xe2,0xb8,0x3a,0x89,0x74,0x41, + 0x3c,0x9b,0xbe,0x8f,0x2e,0xd3,0x6a,0x27,0x4f,0x90,0x94,0xdc,0xe8,0xb4,0xf8,0x66,0xa3,0xf2,0x69,0x5c, + 0xa9,0x79,0x99,0x4e,0xb3,0x69,0xbc,0x7b,0xb8,0x19,0xe9,0x4f,0x33,0x7c,0x3a,0x49,0xe7,0xf3,0x30,0x37, + 0x35,0xa8,0x5c,0xb9,0xe7,0x26,0xa2,0x17,0xf9,0x2c,0xd9,0x3d,0x70,0x19,0x1b,0x34,0x53,0x24,0x37,0xb6, + 0xa2,0x66,0xb8,0x48,0x68,0xf2,0x87,0x93,0xa4,0xa0,0xbf,0xcb,0x24,0x08,0x54,0x13,0x1e,0xd0,0xe0,0x8e, + 0xfd,0xb5,0x51,0x45,0x74,0xe3,0xa6,0xb9,0x08,0x0f,0xa3,0x8d,0xea,0xe6,0x07,0xab,0x3a,0xdb,0xa9,0x9b, + 0x2a,0xa7,0x99,0x1c,0xd9,0x71,0x57,0x98,0x05,0x34,0xda,0x24,0x45,0x76,0xb5,0x93,0xd2,0xab,0x2a,0x92, + 0x32,0x4c,0x87,0xcb,0xaa,0x6c,0x4a,0x4c,0xf8,0xb0,0xca,0x7e,0x5f,0x65,0x75,0x43,0x9d,0x36,0xbd,0x42, + 0x7f,0x9b,0xac,0x98,0x86,0x85,0xf2,0x0a,0xca,0xa8,0x6c,0x0e,0xbd,0x15,0x1b,0x3d,0x6d,0xe1,0xfd,0x48, + 0x95,0xf4,0xf3,0x45,0xa4,0x52,0xfa,0xf9,0x2a,0x52,0xe8,0xe6,0x3f,0x23,0x35,0x49,0xaa,0xb0,0x8e,0x46, + 0x93,0xe1,0x43,0x5e,0xb7,0x54,0x4d,0x86,0x93,0x2a,0x4b,0x9b,0x2c,0xf1,0x97,0x49,0x37,0x5b,0xd1,0x6c, + 0x2e,0xb2,0xea,0x3c,0x0b,0x6b,0x95,0x45,0x34,0xc6,0xc9,0xf0,0x71,0x5a,0x4c,0xb2,0x39,0x1a,0xa0,0xaa, + 0xcd,0xeb,0x51,0xf9,0x31,0x2b,0x90,0xf6,0x25,0xd2,0xf2,0xda,0x15,0x3a,0x40,0x02,0x2d,0x4b,0x5f,0xed, + 0x6f,0xaa,0x72,0x91,0xd7,0x19,0xb2,0x29,0x15,0x95,0xd7,0x4b,0xea,0xca,0x14,0xdf,0x51,0x87,0xdd,0xfc, + 0x4e,0xdc,0xf3,0x90,0x00,0x35,0x5d,0xcd,0x9b,0x64,0xf2,0xb7,0x26,0x5c,0x5a,0x0c,0x8e,0x05,0xb0,0x77, + 0x1e,0x56,0x55,0x7a,0x7d,0x42,0xf0,0x9d,0xcc,0x05,0x68,0xa8,0x79,0xfb,0x41,0xee,0x75,0xb1,0x58,0xcd, + 0xe7,0xbb,0x49,0x92,0xf5,0xec,0xb8,0xcc,0x7d,0x51,0xf6,0x34,0xf1,0x4c,0x67,0xde,0xd6,0x4a,0x2a,0x5b, + 0x1c,0x3b,0xc0,0xb6,0x71,0x59,0xe6,0xd3,0x9d,0x03,0x3c,0x47,0x94,0x6e,0x5a,0xdc,0xb5,0x2d,0xee,0xed, + 0x85,0x59,0x72,0x9c,0x9d,0x44,0x0a,0x83,0x8a,0x66,0x65,0x15,0x0a,0xf8,0x12,0x40,0x27,0xd9,0x70,0x9e, + 0x15,0xe7,0xcd,0xc5,0xa8,0x78,0x90,0x8f,0x8a,0xc1,0x20,0x6a,0xa4,0x51,0x54,0xaf,0xb2,0xe3,0xe2,0x44, + 0x15,0xb4,0x86,0xa3,0x6c,0x4e,0x93,0x64,0xbe,0x2c,0x77,0x72,0xda,0x3a,0xd1,0x6b,0x6e,0xc8,0x03,0xc0, + 0x8b,0xb4,0x7e,0x7d,0x55,0xd0,0xfa,0x2c,0xb3,0xaa,0xb9,0xd6,0x9d,0x57,0x65,0xb4,0xb7,0xd7,0xae,0xb4, + 0x3c,0x51,0x25,0x55,0xca,0x40,0x57,0x0b,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0xe6,0xc9,0x56,0xa5,0x4d,0xf9, + 0x8e,0xd6,0xa6,0x38,0x1f,0xb9,0x85,0xbd,0xc9,0x6b,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xd1,0x6a,0x36,0xcb, + 0xaa,0x78,0x1b,0x5a,0xda,0x6b,0x27,0xc5,0x3a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xac,0xac,0x16, + 0x4f,0xd2,0x26,0xed,0xab,0x6b,0x55,0x08,0xbe,0x9b,0xba,0xc9,0x35,0xc5,0xf7,0xf6,0x32,0x9a,0x94,0xba, + 0x01,0x04,0x7b,0xc9,0x9b,0x76,0x07,0x3f,0xe4,0xd9,0xd5,0x5f,0xac,0xd8,0xfb,0x6a,0x6f,0xcf,0x7b,0xa1, + 0x6d,0x82,0x5a,0xc6,0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x9d,0x0d,0xcf,0xf4,0x57,0xe6,0xc9,0xef,0x98,0xf7, + 0x19,0xfa,0x26,0x53,0xdb,0xd7,0xa5,0x9a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x56,0x8b,0xb3,0xfe,0x69,0x2e, + 0x38,0xa7,0x53,0x5c,0xd6,0x32,0x26,0x84,0x5a,0xbf,0x37,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85, + 0xbf,0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0x67,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1, + 0xe7,0xe5,0xd9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80, + 0x11,0xf6,0xf6,0x68,0x97,0x0f,0x97,0xf9,0x52,0xbe,0x7c,0xff,0xf6,0xc5,0xbb,0x2c,0xad,0x26,0x17,0x6f, + 0xd2,0x2a,0x5d,0xd4,0x7f,0x11,0x16,0x3a,0x5f,0x75,0x60,0xad,0x93,0x2b,0xcb,0x9a,0x16,0xd3,0xb4,0x9a, + 0x3e,0xaa,0xca,0xab,0x3a,0xab,0x9e,0x16,0x97,0xf1,0xd6,0xf9,0x1a,0x7a,0x2d,0xd9,0x65,0x2b,0xd2,0xcb, + 0xfc,0x3c,0x6d,0xca,0x6a,0xbd,0x0e,0xde,0x66,0xe9,0xa4,0x79,0x95,0x36,0xf9,0x65,0x46,0x5d,0x49,0x6c, + 0x16,0xf6,0xe6,0x74,0x35,0x69,0x68,0x6c,0x7d,0x9d,0xbd,0xca,0x8b,0x69,0x79,0xd5,0x9f,0x37,0x2d,0x27, + 0xab,0x45,0x56,0x34,0x84,0x84,0xcb,0xea,0x69,0x3a,0xb9,0x88,0x53,0xc5,0x07,0x85,0xed,0xde,0x4e,0x16, + 0xb6,0x4e,0xfb,0x46,0x55,0x3d,0x04,0x0d,0x8e,0xf7,0x1e,0xdc,0xda,0x8c,0xf9,0xdc,0xcf,0x98,0x3a,0x00, + 0x45,0xc2,0xaf,0xcd,0xc6,0x61,0x3c,0xa2,0x04,0x2a,0x46,0x7b,0x69,0x75,0xce,0x3d,0xa9,0x0d,0xfa,0xab, + 0x08,0xfd,0x55,0x84,0xfe,0xd2,0xd0,0x66,0x49,0x25,0xe6,0x2c,0x2d,0x36,0x4a,0x8e,0xcc,0xb8,0x7b,0x80, + 0xe8,0x02,0x29,0x75,0xd6,0x66,0x71,0xbf,0x41,0x5d,0x24,0x05,0x75,0x74,0x9b,0x96,0x6a,0xc6,0x75,0x88, + 0x8f,0xe3,0x66,0x43,0x47,0xd6,0x46,0xd1,0x6e,0xeb,0x85,0x21,0x9c,0xea,0xcb,0x79,0x3a,0xc9,0xc2,0x7b, + 0xff,0xf9,0xb5,0xfe,0xc7,0x3d,0x15,0x04,0x91,0x4b,0xa2,0x94,0x3b,0x9c,0xb4,0xd9,0xb4,0xcf,0xb5,0xce, + 0xa9,0xe6,0x50,0x67,0xbb,0x50,0x97,0xd2,0xa2,0xa9,0xb7,0x53,0x05,0x32,0x83,0xb1,0x45,0xd8,0x9d,0xab, + 0x08,0x73,0x48,0x13,0x56,0xd8,0xb9,0xa3,0x79,0xe3,0xa9,0xf6,0xa7,0xce,0x92,0x58,0xc3,0x74,0xb9,0x9c, + 0x5f,0xf3,0x68,0xb7,0xbb,0x69,0x97,0xda,0x1b,0xf4,0xee,0x6e,0x36,0x9c,0x94,0x04,0xe0,0x15,0x41,0x59, + 0x59,0xf5,0xce,0x5f,0xab,0xc4,0xd0,0x60,0x70,0xe0,0xbc,0xbe,0x74,0xec,0xdb,0xbe,0x39,0xe8,0x1c,0xd8, + 0x38,0x29,0x91,0x4a,0xc0,0xbf,0xd5,0x62,0xd8,0xd0,0xf1,0x3a,0x04,0x9d,0xf1,0x8c,0xe8,0xc1,0xe6,0xc5, + 0xd3,0xfe,0x65,0x1d,0xd6,0xf3,0x7c,0x42,0xf5,0x10,0x04,0xc8,0x63,0x78,0xa0,0x0e,0x22,0xaa,0x11,0x83, + 0x3a,0x35,0xfd,0x89,0x98,0x4c,0x6d,0x36,0x7f,0x8b,0x18,0x01,0x99,0x6c,0xe8,0x98,0x1a,0xc4,0x26,0xde, + 0xf3,0xa2,0xc9,0xaa,0x49,0xb6,0xa4,0xd1,0xd2,0xb9,0xa8,0x29,0xc0,0x98,0x49,0x44,0x55,0x65,0xf5,0x92, + 0x26,0x23,0x93,0xd7,0x8d,0xa5,0xf1,0xfe,0x29,0x34,0xde,0x7d,0xa1,0xf1,0x0e,0xff,0x5b,0x88,0xbc,0xc3, + 0x7f,0x11,0xa8,0x6f,0x53,0x93,0xad,0xd9,0xda,0x3e,0x15,0x98,0xb6,0x28,0x35,0xb5,0x77,0xb3,0xaa,0xe6, + 0xb1,0x83,0x81,0x83,0x93,0x8d,0x72,0x6f,0x87,0x27,0x51,0xa4,0xbc,0xc2,0xb9,0x6a,0x0d,0x48,0xdd,0x2c, + 0xb2,0xe6,0xa2,0x9c,0xc6,0xc1,0x79,0xd6,0x04,0x1b,0xd0,0x8d,0x43,0x49,0x21,0x12,0x45,0x1e,0x88,0x14, + 0x78,0x51,0x5e,0x65,0xd5,0xe3,0xb4,0x26,0x2c,0x21,0x53,0x98,0x1c,0xd7,0x4a,0x8e,0x0f,0x22,0x54,0x12, + 0x43,0x1a,0xd2,0xc8,0xcb,0xf9,0x65,0x46,0x5d,0x1e,0x01,0xa0,0xb7,0x66,0xca,0x0c,0x6e,0xa8,0xd1,0x50, + 0xe8,0x0f,0xb2,0x19,0xae,0x8a,0xfa,0x22,0x9f,0x35,0x84,0xb8,0x67,0xab,0xf9,0x2c,0x9f,0xcf,0xb3,0xa9, + 0x42,0xa5,0xc0,0x36,0xd9,0x34,0xa2,0x1d,0xdb,0x57,0xa3,0x4c,0xf6,0x2d,0x55,0x2e,0x57,0xf5,0xc5,0xed, + 0xf5,0x8d,0x1a,0xb3,0x95,0x22,0xda,0x78,0xc3,0xe6,0x22,0x63,0xf8,0xe1,0x4e,0x50,0x63,0xe6,0xc9,0xc7, + 0x45,0xa5,0x6d,0xe8,0x38,0x98,0x66,0xf3,0xac,0xc9,0x02,0xc5,0x53,0xa7,0x82,0x0b,0x02,0x52,0xfa,0x29, + 0x97,0x68,0xbe,0x0e,0x4e,0x54,0x0b,0xe0,0xdd,0x12,0x13,0x49,0x98,0x78,0x08,0xcb,0x61,0x32,0x1e,0x9d, + 0x9e,0xa2,0xd0,0xac,0x57,0xb1,0x5e,0x13,0xf6,0x34,0xab,0x94,0x29,0xac,0x35,0x21,0x2f,0xda,0xd3,0x51, + 0xab,0x33,0xcb,0xb2,0x46,0x27,0x96,0x2b,0xfe,0x9b,0x36,0x93,0x8b,0xbf,0xde,0x03,0x20,0xcd,0xcf,0xf5, + 0xa1,0xea,0xeb,0x83,0x9a,0x82,0x5c,0x2b,0x74,0x57,0xdc,0x36,0xaf,0xfe,0xc6,0xee,0x02,0x2a,0xda,0x2d, + 0x87,0x1e,0x9d,0x22,0x67,0x77,0x3b,0xe5,0x38,0x78,0x5c,0xd2,0x9a,0x17,0xcd,0xfe,0x11,0x75,0x3e,0x38, + 0x89,0x00,0xfd,0xdd,0xc4,0xa4,0x11,0xc2,0x36,0xf7,0x37,0x19,0xef,0xb1,0x9b,0x76,0xc9,0x38,0x00,0x62, + 0xcc,0x27,0x29,0x3a,0x71,0xef,0xd3,0xfe,0xd5,0xd5,0xd5,0x3e,0x4d,0xe3,0x62,0x9f,0x46,0x95,0x15,0x93, + 0x92,0x78,0x4e,0xda,0x07,0x93,0xe4,0x26,0x9d,0xa6,0x4b,0x82,0xb4,0x38,0xec,0x3b,0x52,0x7f,0x7e,0xf9, + 0xe2,0xbb,0xa6,0x59,0xbe,0x95,0x99,0x1a,0x63,0x7f,0xff,0x8b,0x58,0xf1,0x9e,0x92,0x34,0xeb,0x93,0xac, + 0x26,0xea,0x21,0x94,0x42,0xc4,0x04,0x12,0x6c,0x55,0x69,0x51,0xa3,0x55,0x5d,0x41,0x7c,0xdc,0x7b,0x42, + 0xe0,0x6c,0x6b,0xf7,0x1e,0x8b,0xee,0xa8,0x65,0x46,0x9a,0x48,0xf0,0xe8,0x4b,0x9b,0xd6,0x79,0x15,0x82, + 0xc9,0xbe,0x82,0x30,0x73,0x45,0x89,0xde,0xa2,0x97,0x71,0x16,0x77,0x2a,0xd3,0x04,0xee,0xd8,0xd0,0xb4, + 0x9c,0xdf,0xa1,0x7c,0x90,0x1f,0x56,0xe8,0xe9,0x9f,0x4e,0xec,0x68,0x72,0x91,0x56,0x75,0xd6,0x24,0xab, + 0x66,0xb6,0xff,0xaf,0x00,0x60,0x63,0xf8,0x0c,0xda,0x66,0x5c,0xb9,0x10,0xaf,0xfd,0x75,0xfe,0x56,0x97, + 0xc5,0x56,0x15,0xdf,0xbf,0x7b,0xfd,0x6a,0x28,0x08,0x32,0x9f,0x5d,0x83,0xd3,0x8a,0xb3,0xcd,0x89,0x3f, + 0xc3,0x1a,0x1d,0x1f,0xfb,0xbb,0x01,0x1c,0xdb,0x16,0x56,0x8d,0x9a,0xea,0xfa,0x26,0x4b,0xb8,0xc6,0x25, + 0x5a,0xc1,0x01,0x36,0xc1,0x5e,0xc2,0x27,0x1b,0x73,0xb2,0xa2,0xf6,0x7c,0x91,0x95,0xab,0x26,0x3e,0x50, + 0x9f,0xea,0x6a,0xf6,0xb8,0x2c,0x3f,0xe6,0xd9,0xab,0x74,0x91,0xc5,0xc1,0xcf,0xef,0xde,0x3e,0xdb,0x3f, + 0x7a,0xfd,0xc3,0xd3,0x57,0x01,0xe7,0x7d,0x47,0x58,0x21,0xab,0x74,0xde,0xbe,0x9f,0xbb,0x48,0x3f,0xe9, + 0xa5,0x7d,0xc1,0x48,0x28,0xde,0x3f,0x54,0x97,0xe9,0x3c,0xa7,0x7d,0x95,0x11,0x25,0xd9,0xac,0xfa,0xe8, + 0xd4,0x9d,0xec,0x9b,0xe4,0xfe,0xc1,0x01,0x9d,0xb8,0x0f,0xbe,0x38,0x38,0xd8,0x6c,0x46,0x93,0xe1,0x05, + 0xb7,0x40,0x70,0x3e,0x29,0x17,0x0b,0xa2,0x8e,0x6f,0x1e,0x4e,0x80,0x1d,0xe3,0xad,0xa9,0x53,0x3b,0x0d, + 0x91,0x52,0xf7,0x88,0x88,0xc9,0xe9,0xf9,0x1f,0xf7,0xfe,0x11,0x6c,0xfe,0x1c,0xa1,0xb5,0x91,0x88,0x6d, + 0x0d,0x28,0xe4,0xe6,0x6f,0xe3,0xa0,0xd6,0xe7,0x06,0xbb,0xd4,0x51,0x0b,0x7f,0xfc,0x99,0xa8,0x00,0x9b, + 0xbc,0xe2,0x2d,0x7e,0x3b,0x7d,0x65,0xfb,0x94,0xb9,0xba,0x04,0xcb,0x11,0x45,0xdd,0xec,0xed,0x55,0x04, + 0x76,0xef,0x97,0x4b,0x73,0xa6,0x11,0xa3,0xd1,0xb4,0x53,0x18,0xc3,0x34,0x44,0x45,0x2a,0x99,0x13,0x96, + 0x58,0x51,0x3f,0xff,0x8c,0x74,0x70,0x9d,0x53,0xd8,0xed,0x5f,0xcb,0x91,0x7f,0x68,0xce,0xfc,0x2f,0xf4, + 0x99,0xff,0xa5,0x70,0xde,0x87,0x07,0x60,0xbd,0x3f,0x47,0xcd,0xcb,0xef,0xf0,0xac,0x29,0xd3,0xd6,0xcb, + 0xf0,0x8c,0x9e,0x43,0x49,0xa0,0x3d,0x4c,0x55,0x7d,0xd5,0x3f,0x1d,0x8e,0xd4,0x22,0x62,0x44,0x9f,0xd3, + 0xa1,0x87,0xfb,0x57,0x22,0xde,0x9a,0xd1,0x69,0x0f,0x7c,0xae,0x70,0xec,0xeb,0x35,0x1a,0x55,0x3e,0xa6, + 0x99,0x45,0x90,0x40,0xf2,0x5c,0x4c,0xbb,0xb8,0x97,0x87,0xbd,0x64,0xd2,0xb5,0x8d,0x17,0xd5,0x45,0x12, + 0x94,0x05,0xa8,0xb7,0x6b,0xe2,0x9b,0x9a,0x8c,0xf6,0x6e,0x71,0x4e,0x00,0x76,0x99,0xec,0x1e,0x8e,0xb0, + 0x05,0x7b,0x78,0x21,0x19,0x14,0x51,0x6e,0x7a,0xb8,0x3f,0x3f,0x29,0x17,0x04,0xb0,0xba,0x46,0xa2,0x11, + 0xaf,0xf2,0xe6,0xe2,0x71,0x95,0x4d,0xa9,0xfd,0x3c,0x9d,0xd7,0x41,0x5e,0xec,0x2c,0xd7,0x6b,0x42,0x43, + 0x43,0x42,0x34,0x34,0x19,0xa1,0xf4,0xa4,0xf7,0x73,0xe9,0x10,0x24,0x8b,0xdc,0x89,0x03,0xb5,0x1c,0x96, + 0x05,0x61,0xe8,0x73,0xa2,0x23,0xbc,0x69,0xa3,0xcd,0xce,0x39,0x7a,0x9b,0xb7,0x32,0x00,0xab,0xe9,0x8a, + 0xc8,0x71,0x9e,0xb8,0x45,0x22,0x6f,0x43,0x82,0x82,0xaa,0xa0,0x5d,0x4e,0x1d,0x0c,0xd4,0xb9,0x49,0x5d, + 0xa6,0x75,0x7d,0x55,0x56,0x53,0xa4,0x8e,0xa6,0xc3,0x87,0x94,0x56,0x56,0xf9,0x1f,0xbc,0x27,0x93,0xe0, + 0x51,0x5a,0xe7,0x93,0x9d,0x60,0x30,0x0f,0x17,0x03,0x3a,0x97,0x06,0xe7,0xd1,0x86,0x26,0x85,0x1a,0x5e, + 0x12,0x21,0xe2,0x91,0x5f,0x1e,0x60,0xaa,0x52,0xc6,0x49,0x9d,0x58,0x32,0xf6,0xb5,0x0f,0xef,0xb2,0x8a, + 0xa6,0x23,0xff,0x83,0xc8,0x5c,0xb5,0x4b,0x80,0xb5,0x1c,0x9a,0xde,0x67,0xe6,0x49,0x2d,0x8f,0x2f,0x4e, + 0xfc,0xc1,0xa0,0x35,0x02,0xf5,0x2f,0x69,0x03,0x2c,0x99,0xc8,0xbe,0x06,0xe2,0xa1,0x31,0x5c,0x62,0x07, + 0x40,0xb6,0xb5,0x1c,0xd6,0x8c,0x8a,0xd6,0xeb,0xa5,0xa5,0xb5,0x08,0xff,0xef,0xed,0x1d,0xe8,0x6f,0x6c, + 0x12,0xd1,0x65,0xd3,0xec,0xd3,0x6b,0x5a,0xd4,0x19,0x64,0x02,0x41,0x14,0xc9,0x0c,0xd1,0x38,0x09,0x9d, + 0x3c,0x9c,0xcf,0x0d,0x22,0x16,0x8c,0x28,0xeb,0x36,0x4e,0x69,0xb8,0xbd,0xd9,0x38,0x0f,0x58,0x6e,0x55, + 0x25,0x37,0x4c,0x69,0x64,0xb6,0x31,0x00,0x1d,0xb1,0x01,0x40,0x66,0xe0,0x90,0xdb,0x19,0x63,0xd7,0xa9, + 0xd8,0x3d,0x1e,0x51,0x59,0x25,0x23,0x89,0x0f,0xef,0xdf,0xff,0x22,0x71,0x23,0x1b,0xdf,0x3f,0xf8,0x32, + 0x36,0x2f,0xba,0x0c,0x8a,0x6f,0x95,0x0b,0x5e,0x95,0x3b,0x1a,0xee,0x03,0xfb,0x01,0x57,0xac,0x37,0x4c, + 0x5c,0x28,0xe2,0x82,0x66,0xf9,0x39,0x91,0x48,0x86,0x25,0x58,0x6e,0x46,0x39,0xb6,0x19,0x21,0x1f,0x45, + 0x70,0x49,0x03,0xda,0x08,0x68,0x65,0x55,0x55,0x56,0xfe,0x5a,0xac,0xc2,0x49,0x18,0xbc,0xca,0x1a,0x02, + 0x97,0x8f,0x3b,0x4f,0x91,0x1b,0xa8,0x4c,0xf1,0x14,0x2c,0x23,0xfb,0xf1,0x6d,0x60,0xc9,0x5f,0xeb,0xf4, + 0x1d,0xda,0x45,0xc1,0xc0,0xae,0xfa,0x20,0x58,0xd4,0x3b,0xd9,0xa7,0x49,0x96,0x81,0xb4,0xa1,0x3a,0x83, + 0xa7,0x8f,0x5f,0xbf,0x7a,0xf5,0xf0,0xd1,0xeb,0xb7,0x47,0x4f,0x9f,0x04,0xad,0xda,0xab,0x61,0x9f,0x14, + 0x23,0xd4,0x4b,0x79,0x0d,0x9c,0x45,0x6c,0xcc,0x59,0x42,0x40,0xd8,0xd9,0x86,0x6e,0x07,0x46,0x60,0x07, + 0xdb,0xc7,0xe2,0xf8,0x9a,0xa1,0x2b,0xec,0xa6,0x47,0xb1,0x30,0x11,0xa3,0x33,0x02,0xb7,0xe9,0xb1,0x64, + 0xbb,0x13,0xf3,0x24,0x39,0xe3,0x1d,0x11,0xd0,0x79,0xaf,0x37,0xb0,0x64,0x32,0xec,0x00,0x8d,0x1b,0x3c, + 0x3f,0xed,0xf0,0xb7,0x56,0xb4,0x35,0x23,0x40,0x99,0x68,0x64,0x05,0x04,0x13,0x68,0x5c,0xef,0x71,0x34, + 0x63,0x8b,0xd6,0x9a,0x13,0xac,0x6b,0xa7,0x2d,0x5a,0xbd,0x4c,0x4e,0xa8,0xce,0x88,0xa9,0xcb,0xcb,0x6e, + 0x5a,0x82,0x9d,0xd7,0x06,0x48,0x26,0x2a,0x96,0xad,0xa4,0x0e,0xc8,0x6a,0x12,0x43,0xe4,0xcb,0x01,0x4e, + 0xea,0x6d,0xb0,0x8e,0x9a,0x0b,0x5a,0x0e,0xe2,0x5d,0x7b,0x99,0xf2,0xb2,0x78,0x52,0x5e,0x31,0x5a,0x7b, + 0xa3,0x71,0xd9,0xde,0xde,0x72,0x98,0x4e,0xa7,0x4f,0x2f,0x41,0x5e,0xe4,0x35,0x8d,0x9f,0x46,0x12,0x18, + 0x4c,0x47,0x50,0xd0,0xf3,0x4d,0xa4,0x6e,0xa9,0xfc,0xfd,0xb2,0x5b,0xf5,0x8a,0x53,0xdc,0xd3,0x9f,0xb6, + 0xd5,0xae,0x02,0x73,0x34,0x71,0xba,0x08,0x96,0x1f,0xb8,0x57,0x30,0x2a,0xcc,0x4f,0x32,0x43,0xe6,0x9f, + 0x65,0x4b,0x9e,0xf3,0xf4,0x8c,0x0e,0x39,0x42,0x85,0x2b,0x68,0x63,0x04,0x72,0xb1,0x40,0xfe,0x9a,0x87, + 0x33,0x49,0x56,0x58,0x4f,0x3a,0x29,0x67,0x7f,0xe3,0xec,0xa6,0x53,0xf9,0x16,0xca,0x02,0x9f,0x68,0x6e, + 0x7e,0x28,0x3b,0x7d,0xd8,0x26,0xd8,0x46,0x85,0x46,0x0b,0x7b,0x7b,0xf9,0xde,0xde,0x6e,0x1e,0x9a,0xf7, + 0x68,0xdc,0x10,0x39,0x1b,0x68,0xc0,0xda,0x99,0xa5,0x84,0x22,0xa7,0x3b,0x00,0x9e,0x1d,0x29,0xb0,0x03, + 0xfa,0x98,0x76,0xad,0xf9,0x40,0x99,0x16,0x04,0x03,0x14,0x56,0xcb,0x54,0x80,0xbe,0x0d,0x8b,0xbf,0x3e, + 0x9a,0xc3,0xdb,0x47,0xa3,0x88,0x59,0x92,0x11,0xa5,0x7c,0x64,0x32,0xd6,0x01,0xf7,0x6e,0x15,0x4a,0xa9, + 0x2d,0xf6,0x3f,0x91,0x74,0x81,0xb3,0x24,0x6e,0xc7,0x09,0xd5,0x64,0x48,0x09,0x65,0x80,0xc0,0x1a,0x62, + 0xcc,0x49,0x21,0x1b,0x46,0xa4,0x1e,0x95,0xb7,0x79,0x92,0x5c,0x65,0x7f,0x4f,0x54,0x63,0xda,0x61,0x66, + 0xe3,0xfd,0xdb,0xe7,0x8f,0xcb,0x05,0xd5,0x44,0x50,0x19,0x66,0x9e,0xf4,0xee,0xbf,0xbe,0x3c,0xb8,0x77, + 0x9e,0xab,0xe0,0xff,0xfa,0x22,0xbd,0xff,0xfa,0xe2,0x21,0x27,0xc6,0xad,0xc4,0xfb,0x5f,0xde,0x3b,0x57, + 0xc1,0x9d,0x76,0xda,0x63,0x2e,0xa8,0xda,0x89,0x07,0x28,0x38,0x68,0xa5,0x7d,0xf5,0x88,0x0b,0x1e,0xb7, + 0x13,0x9f,0x70,0xe2,0x49,0x10,0x79,0xba,0xbf,0xcf,0x80,0x1b,0x61,0x84,0xdd,0xc6,0x68,0x5c,0x33,0x5e, + 0xd5,0x12,0x94,0x53,0x11,0x81,0xb0,0x6c,0xb4,0x86,0x88,0x12,0xf2,0x1e,0xc6,0xac,0x89,0xa8,0x54,0xe3, + 0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xf1,0xc9,0x28,0xb7,0xf8,0xb3,0xe9,0x2c,0x6e,0x9f,0x96,0x0b,0x1c,0xac, + 0xe1,0x0e,0x99,0x4d,0x0f,0x9b,0x41,0x12,0x1c,0xd3,0x50,0x94,0x9f,0x4e,0x04,0x98,0x56,0x7b,0xe5,0x7d, + 0x64,0x38,0x78,0xaf,0xa1,0x68,0x1b,0x98,0xb1,0x04,0x75,0x52,0x3e,0x7f,0xf7,0xda,0x74,0x31,0xce,0x7d, + 0x26,0x90,0xe5,0x5c,0xdb,0x1c,0x1e,0xd4,0xaa,0x90,0xec,0x10,0x72,0x8e,0x06,0x41,0x12,0x0c,0x58,0xc3, + 0x06,0x51,0x04,0x08,0xee,0x74,0xf8,0x5b,0x99,0x17,0x61,0xb0,0x47,0x93,0xac,0x67,0xae,0x44,0x45,0x83, + 0x24,0xdc,0x3f,0x84,0xba,0xc3,0x91,0x2a,0xe3,0x20,0x1a,0xd3,0x9f,0x18,0x65,0x07,0x65,0xf4,0xe7,0x00, + 0xd7,0x22,0xf0,0x8f,0x83,0x14,0xd4,0x6c,0x90,0xfa,0x64,0x1d,0xbd,0x9b,0x03,0x47,0x84,0x4b,0x5e,0x02, + 0x9f,0x40,0x2a,0xc8,0x9a,0xf4,0x1c,0x3f,0x9f,0x96,0x39,0x01,0x3b,0x3d,0xcd,0x08,0xe1,0x81,0xe1,0x12, + 0xfe,0x29,0x9f,0xed,0x2f,0xca,0x69,0x3e,0xcb,0xb3,0xe9,0x7e,0x9d,0x13,0x5a,0x94,0xb4,0x55,0xb1,0x95, + 0x3a,0x4f,0xeb,0xc6,0x96,0xc5,0x7b,0x39,0x31,0x7d,0x20,0xee,0x12,0xdc,0xf7,0x15,0x1d,0xe4,0x68,0x81, + 0x50,0xea,0xa7,0xeb,0xfd,0x6e,0x47,0xab,0x8c,0x78,0x7a,0x3a,0x4e,0xf1,0x44,0xc7,0xd4,0x7e,0x3a,0x6b, + 0xf8,0x0d,0xc4,0xec,0x3e,0x8d,0x8d,0x28,0x9d,0x93,0x5b,0xd8,0x0a,0x16,0x03,0xd2,0x06,0x2f,0x89,0xb3, + 0x71,0xfa,0xf8,0x8c,0xb8,0x76,0xb7,0xea,0xc3,0x9a,0x18,0xd0,0x26,0x0c,0x7e,0x2d,0x08,0x46,0x3a,0xdc, + 0x77,0xe9,0x2f,0x03,0xed,0x3a,0x45,0x9b,0x7f,0x08,0x71,0x3c,0x3e,0x5b,0x9d,0xd1,0x7c,0x87,0x07,0x84, + 0x76,0xa2,0xf6,0x59,0xad,0x8a,0xad,0x52,0xe5,0xe0,0x90,0x00,0x42,0x0e,0xcf,0x94,0x8e,0x70,0x42,0xbd, + 0xb6,0xe2,0x26,0xfa,0x26,0x39,0xd0,0xbb,0x67,0x84,0xcc,0x04,0xa4,0xc4,0xfe,0x84,0x09,0x10,0x26,0x05, + 0xc6,0xfc,0xcd,0x18,0x7f,0xe2,0xe3,0x93,0x08,0x18,0x8a,0xa6,0x30,0x3c,0x2e,0x4e,0xa2,0xd8,0xe6,0x0c, + 0x02,0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xeb,0x50,0xe2,0xcd,0xde,0x6d,0xb4,0xd5,0xd8,0xd7, + 0x03,0x38,0x7d,0x8c,0x35,0x3c,0xc8,0xac,0xf8,0x91,0x77,0x20,0x0d,0xe0,0x61,0x43,0xed,0x9c,0xad,0x68, + 0x07,0x05,0x17,0xb4,0x84,0x01,0x6c,0x09,0x9a,0x24,0x1f,0xe2,0x05,0xdb,0xee,0x96,0x22,0x37,0x78,0x8a, + 0xa5,0x98,0x62,0x61,0xe0,0xa4,0x9c,0xd3,0xbb,0x79,0x1c,0xbb,0x47,0x87,0xb1,0x62,0xd1,0x74,0xc4,0xc4, + 0xd5,0x00,0x3c,0xf1,0x39,0xfd,0xa8,0x9a,0xf1,0x4c,0x8c,0xb6,0xf0,0x30,0x36,0x0f,0xbe,0xde,0x64,0xec, + 0xbe,0x4c,0x6b,0x94,0xc5,0xcf,0x58,0x7e,0xbc,0x72,0xff,0xa7,0xd5,0x00,0x78,0x28,0xdd,0x08,0x1e,0x15, + 0xe6,0x0e,0x7d,0xa4,0x1f,0xb5,0x4c,0x9b,0x0b,0xce,0x0f,0xee,0x61,0xf1,0x28,0x55,0x27,0x0c,0x21,0x14, + 0x7a,0x08,0xcb,0x8f,0xb1,0x4b,0x44,0xa9,0x81,0x7b,0x15,0x41,0x3c,0xad,0x55,0x72,0x2f,0x5c,0xd4,0x79, + 0xb6,0xa6,0x09,0x02,0xd9,0x16,0xdd,0xcb,0x87,0x0d,0xa4,0x9d,0x4e,0xd3,0x06,0xf0,0x7f,0x08,0xe8,0xc7, + 0x26,0x37,0xca,0x33,0x6d,0x78,0xf1,0x74,0x9e,0xe1,0x2d,0x0c,0xd2,0xc0,0x9e,0x93,0xb4,0x46,0x9a,0x17, + 0x1f,0x9a,0x1d,0xa8,0xd7,0xc2,0x49,0x1f,0x0c,0xe5,0x20,0x50,0xc0,0xb8,0xae,0x20,0xf4,0x47,0x7f,0xe2, + 0xc2,0xd9,0x8d,0x98,0xf9,0x67,0x2a,0xd5,0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86,0xf0,0xe4, + 0x96,0x66,0x71,0xf7,0xe0,0xf3,0x67,0xb4,0xa7,0xf3,0xd1,0x5a,0x8d,0x05,0x91,0x62,0xb4,0xcb,0x93,0x40, + 0x3a,0xb4,0x03,0x34,0x45,0xbc,0x72,0xbd,0x93,0x52,0x5f,0x0a,0x26,0x6d,0x76,0x30,0xb3,0xe9,0x04,0x68, + 0x61,0x23,0x50,0x1d,0x3c,0x7c,0xf4,0xf8,0xc9,0xd3,0x67,0xdf,0x7e,0xf7,0xfc,0xfb,0x1f,0x5e,0xbc,0x7c, + 0xf5,0xfa,0xcd,0x8f,0x6f,0xdf,0x1d,0xbd,0xff,0xf0,0xd3,0xcf,0xbf,0xfc,0x3b,0x3d,0x9b,0x10,0x3b,0x7f, + 0x7e,0x91,0xff,0xf6,0x71,0xbe,0x28,0xca,0xe5,0xef,0x55,0xdd,0xac,0x2e,0xaf,0x3e,0x5d,0xff,0x71,0x70, + 0x78,0xff,0x8b,0x2f,0xbf,0xfa,0xe7,0x7f,0xff,0xeb,0xeb,0xc1,0xbd,0x24,0x18,0x15,0x4e,0x16,0xed,0x08, + 0x0f,0xe5,0xa5,0x0a,0x69,0xf0,0x55,0x2b,0x09,0x8b,0x98,0x04,0xcf,0xa5,0x5f,0x8f,0x4d,0xb7,0x0c,0xa7, + 0xd4,0x8b,0xa4,0x8c,0x5a,0xad,0x01,0x09,0x93,0xe8,0x69,0xcf,0x20,0x8c,0x21,0x68,0xab,0x93,0x03,0xd8, + 0xd7,0x8c,0x4a,0x0b,0x3d,0xeb,0x1a,0xa7,0xd7,0x24,0xa1,0x13,0x45,0xd5,0xff,0x45,0x84,0x53,0x3a,0x48, + 0x26,0x26,0xf7,0x9f,0x5f,0xec,0x35,0xdf,0x7c,0xf3,0xaf,0x7d,0xca,0xf8,0xc7,0xbf,0x22,0x46,0x37,0x61, + 0x9e,0xc8,0xc7,0x8f,0xa9,0xb7,0x54,0xa4,0x1e,0x24,0xc3,0xff,0xfe,0x2a,0x8a,0xbe,0xb9,0xff,0xd5,0x57, + 0x9a,0x60,0xc7,0xe8,0x8a,0x51,0x93,0x34,0x0f,0x1e,0xfc,0x6b,0x9d,0x9b,0xe3,0xe8,0x7f,0x19,0x81,0xdc, + 0x5c,0x55,0x79,0x4b,0x79,0x6f,0xa8,0x36,0x42,0x56,0x37,0x62,0xed,0x41,0xa7,0x7d,0xad,0xb5,0x21,0x7c, + 0x60,0xf6,0xd0,0x48,0x44,0x2d,0x30,0xff,0x27,0xd6,0x06,0x04,0x98,0x7b,0x7b,0xfa,0x13,0x73,0x52,0xd1, + 0x77,0x18,0x0f,0x9f,0xdd,0x05,0x30,0xf3,0xb7,0x2f,0x8f,0xac,0xf4,0x56,0x79,0x90,0x9d,0x7b,0xdf,0x62, + 0xff,0xd1,0x87,0x79,0xab,0x40,0xe9,0x15,0x98,0xb2,0x80,0x86,0x8a,0x94,0x10,0x5c,0x10,0x90,0xa7,0x2e, + 0xaf,0xce,0x26,0xab,0x0a,0x52,0x6f,0xb7,0x0b,0x19,0x77,0x27,0xb5,0x3e,0xe3,0x47,0x3b,0x74,0xc8,0x2b, + 0x30,0x97,0xf1,0xd6,0xe9,0x94,0x74,0x3e,0x1a,0x2e,0x98,0xcf,0xc2,0x10,0xde,0x66,0xe7,0x4f,0x3f,0x2d, + 0xc3,0x20,0xfc,0xcf,0x7a,0xf4,0xeb,0xaf,0xf5,0x3f,0xa2,0x90,0xa6,0x84,0xc8,0xb7,0x24,0x3c,0xfe,0xcf, + 0xe8,0xe4,0x1f,0x51,0xe0,0x94,0x3e,0x0d,0xf1,0x87,0xdb,0x73,0x75,0xfc,0xc5,0x89,0xc8,0x27,0xd0,0xf8, + 0xa2,0xbc,0x6c,0x1b,0x41,0xf0,0xee,0xe2,0x45,0xa1,0xb5,0x20,0x50,0xc3,0x8c,0x0d,0x8b,0xf2,0x2a,0x8c, + 0xf6,0xff,0xf5,0xcf,0x2f,0xb3,0xaf,0x88,0x9a,0x8e,0xbb,0x8b,0x06,0x99,0x53,0x7b,0x1c,0x2d,0x35,0xe9, + 0x76,0x3b,0xf4,0xc1,0xdf,0x20,0x8f,0x75,0xa7,0x2e,0x08,0x7c,0xe6,0x90,0x16,0x1f,0x9f,0xf8,0x04,0xa8, + 0xaf,0x81,0xa4,0x0a,0xfa,0xf5,0xd5,0xad,0x0a,0x64,0x81,0x6e,0xac,0x66,0x8d,0x65,0x1e,0xa2,0x59,0x63, + 0xe5,0x7a,0xbb,0xb0,0x50,0x42,0xfb,0x87,0x90,0x30,0xb8,0x96,0xb8,0x7c,0xb2,0x35,0x71,0xe6,0x2b,0x22, + 0x22,0x41,0x64,0x76,0x92,0x34,0xbf,0xd7,0xaa,0x48,0x53,0x1c,0x49,0x9b,0xca,0xb4,0xc4,0xad,0x5f,0x83, + 0x67,0x2b,0x60,0xc9,0xdc,0x86,0x18,0x50,0x7a,0x25,0x16,0xf1,0x7f,0xa8,0xc7,0x82,0x79,0xe1,0x67,0xf8, + 0x59,0x46,0x05,0xcf,0x67,0x9a,0xfb,0xcb,0xa6,0x61,0xd4,0x35,0xfc,0x3b,0xfc,0x5a,0x24,0xc4,0xb0,0xc0, + 0xb3,0xa6,0x7f,0xf4,0x7a,0x08,0x01,0x31,0xfd,0xde,0xc2,0x23,0x78,0xa6,0x7f,0x19,0xd8,0xa8,0xb3,0x54, + 0x4b,0xe7,0x76,0x27,0x5a,0x18,0xc3,0x7c,0x16,0x3d,0x24,0xf3,0xd0,0x66,0x2b,0x2d,0xa7,0x51,0x56,0xd4, + 0xeb,0x84,0xbe,0xac,0xe9,0x13,0x59,0x70,0x02,0x51,0x23,0x0b,0x85,0x6d,0x2e,0xf4,0x35,0x1d,0xcd,0x95, + 0x5f,0x8b,0x31,0x3f,0xb4,0x29,0x43,0x51,0x49,0xe8,0x4a,0xad,0xec,0x5f,0x4b,0x36,0x4f,0xda,0xe9,0x78, + 0xf3,0x99,0x86,0xdb,0x14,0xac,0x3d,0x5a,0x06,0x50,0xd8,0x68,0xc8,0x57,0x37,0xd0,0xf2,0x1a,0xd9,0xbd, + 0x6d,0xb9,0x39,0xd9,0x40,0x19,0x3e,0xd4,0xaa,0xbd,0xf5,0xba,0x36,0x8f,0x11,0x58,0xc4,0xb6,0xbc,0xa1, + 0x69,0xcf,0x6e,0x63,0x26,0x45,0x1e,0xe8,0xbd,0x77,0x52,0x84,0x77,0xa5,0xe2,0x1b,0xd5,0x53,0x53,0x4a, + 0xcf,0x74,0xc4,0x48,0x85,0xb0,0xcf,0x33,0xcc,0x2e,0x00,0xdd,0x29,0xb3,0x6d,0x4b,0xad,0x14,0xe5,0xbd, + 0x7f,0xae,0x6d,0x5a,0x59,0xa7,0x91,0x67,0x46,0xaa,0xf9,0x5b,0xaa,0x8b,0xcf,0xb0,0xa3,0x66,0x42,0xec, + 0x22,0x15,0x2d,0x12,0x87,0x4e,0x73,0xc6,0x18,0x9b,0x6d,0x4e,0xea,0x2f,0x08,0x0c,0x2c,0x21,0x13,0xee, + 0x66,0xeb,0x35,0x0c,0x37,0x4e,0x1f,0x3f,0x7c,0xf5,0xf8,0xe9,0x8b,0xd3,0xd3,0xff,0x81,0xf8,0xc1,0xd4, + 0x76,0xef,0x3f,0xe1,0x71,0xba,0xff,0xc7,0x09,0xfe,0xfc,0x3a,0xfd,0x75,0xf0,0xeb,0xfe,0xaf,0xc3,0x93, + 0x7f,0xc4,0xd1,0xf8,0xd7,0x7b,0xbf,0xde,0x33,0xb4,0x5f,0xf6,0x3f,0x92,0x6f,0x38,0xcc,0x38,0xf6,0x0c, + 0x86,0x7e,0xbd,0x37,0x10,0x9a,0x79,0x00,0x02,0xb4,0xf1,0x29,0xe2,0x7b,0x03,0xa1,0x75,0xff,0x64,0x72, + 0xda,0xd6,0x39,0x2d,0x52,0x2d,0xdb,0x14,0x3d,0x46,0x9a,0xc9,0xd6,0x99,0x11,0x88,0x51,0x6f,0x30,0x08, + 0xfd,0xcf,0x89,0xd3,0x25,0x46,0xc6,0x4f,0x89,0x61,0xc5,0xd4,0x22,0xb3,0xdc,0xa4,0x43,0x3f,0xe2,0x99, + 0x4d,0xff,0x2d,0x7c,0x08,0x49,0xa6,0x15,0x26,0xee,0x7a,0x1a,0x56,0x4b,0x15,0x41,0xaa,0x29,0x02,0x27, + 0x22,0x2f,0xe8,0x98,0x27,0xc2,0x7b,0x67,0xb1,0xaa,0x9b,0x9d,0xb3,0x6c,0x27,0xb5,0xb6,0x51,0xc3,0x40, + 0x5b,0x9c,0x8c,0xb8,0xd7,0x5a,0x32,0x98,0xf4,0x6a,0xb3,0x30,0x57,0x34,0x41,0xf2,0x41,0x91,0xe0,0x83, + 0x51,0x3b,0x1b,0x62,0xb4,0xb4,0x06,0x42,0x0a,0xcd,0x23,0x57,0x95,0xf3,0x7e,0xb4,0x69,0x90,0x23,0x38, + 0x0c,0xfd,0x45,0xfb,0x78,0xec,0x22,0xf3,0x8e,0x3e,0x45,0x1b,0x50,0x70,0x35,0x5a,0x66,0xeb,0x52,0x70, + 0x6a,0xd5,0xe5,0xaa,0x9a,0x64,0xfe,0x57,0x68,0xc9,0x30,0x79,0x37,0x0d,0x4e,0x0c,0x36,0x1d,0xaa,0x5a, + 0xa8,0x28,0x4b,0x70,0xaa,0xca,0xa9,0xc2,0xf0,0x73,0xeb,0x49,0xf5,0x37,0xf6,0xc6,0x4e,0x0f,0x8a,0x32, + 0x86,0x63,0x2c,0x77,0x6c,0x60,0x3b,0x06,0xc5,0x67,0xb7,0x85,0xdb,0x7d,0x1d,0x7a,0xb4,0x99,0xff,0x4b, + 0xee,0x0e,0x0d,0x1c,0x18,0x3e,0xac,0xb2,0x7e,0xf7,0x85,0x7e,0x60,0xcc,0x7a,0xed,0x5d,0xd7,0x6b,0x8c, + 0x8e,0x2d,0x5f,0x3d,0xa3,0xc7,0x6e,0x49,0x11,0x7a,0x19,0x51,0xd8,0xa6,0xbd,0x2b,0x0d,0xcf,0xd5,0xae, + 0xc4,0x37,0x5f,0xdf,0x32,0x2f,0x58,0xaf,0xb7,0xed,0x75,0x29,0xad,0xbe,0x5e,0x9c,0x95,0xf3,0x76,0xda, + 0x59,0x59,0xce,0xb3,0xb4,0xe8,0xb5,0x5f,0xff,0xdf,0xb1,0x78,0x17,0x11,0x1b,0x1b,0xd9,0x5e,0x14,0xbd, + 0x06,0xef,0x86,0x8a,0x66,0x4b,0x08,0xb6,0xbe,0x0b,0x2d,0x07,0xe5,0xa8,0xe3,0x6f,0x92,0x83,0xbd,0xbd, + 0x97,0x44,0xe3,0x0f,0x67,0xf3,0x12,0x46,0x5f,0xac,0x4d,0x27,0x96,0xb5,0x7e,0x96,0x17,0x4c,0x00,0x7b, + 0xb5,0xd6,0x9d,0xae,0x53,0xcf,0xc7,0x41,0xd0,0xe3,0xc1,0x32,0xee,0xca,0xfc,0x44,0x0c,0x7e,0x3f,0x8a, + 0x6d,0x17,0x5c,0xad,0x93,0xde,0xbe,0x3a,0x31,0x36,0xb1,0x34,0xe9,0x2b,0xea,0xd8,0x38,0x23,0xca,0xd4, + 0x7e,0x35,0xd7,0x96,0x90,0xd6,0xf2,0x52,0x9b,0xc0,0x0b,0x9b,0x1f,0x8a,0xfa,0xa0,0x4a,0xac,0x10,0x4b, + 0x41,0xce,0x99,0x1c,0x8c,0xf2,0x07,0x95,0xb1,0x1a,0xcb,0xc5,0x00,0xf3,0x38,0x3f,0x39,0x21,0x5c,0xe9, + 0x18,0x86,0x3e,0xf5,0xfb,0x71,0xd6,0x96,0x64,0x9d,0x6c,0xfa,0xac,0x3b,0xa8,0xd8,0xc9,0xc6,0xf5,0x71, + 0x65,0xdd,0x0e,0x8c,0xbf,0x80,0xd1,0xa9,0x66,0x9e,0x8c,0x8b,0xe5,0xc1,0xdf,0xec,0x1f,0x5a,0x31,0x31, + 0x77,0x99,0x4e,0x9c,0x42,0x1d,0x46,0x5e,0x6d,0xb3,0xd6,0x99,0x75,0x6e,0x56,0x1d,0x9b,0xdc,0x96,0x99, + 0xba,0xb9,0xec,0x99,0x8f,0x51,0x17,0x6d,0x78,0xc6,0x6b,0xc7,0x05,0xd1,0x73,0x21,0x7e,0x60,0x09,0x1c, + 0xf9,0x0d,0x2f,0xb7,0x8c,0x4e,0xb5,0x38,0xa4,0xea,0x31,0x08,0xd6,0x14,0xc6,0xb8,0xfa,0xe6,0x70,0xec, + 0x8c,0x58,0x6d,0x39,0xe0,0x00,0xee,0x37,0x9b,0xf1,0x9a,0x67,0x2b,0xe8,0x2d,0x86,0xa7,0x52,0x91,0xf5, + 0xb0,0x50,0x85,0xeb,0xc8,0x85,0x74,0x84,0xd8,0xf1,0xf5,0xfa,0x60,0xe4,0x96,0xde,0x94,0xdd,0x6f,0x68, + 0xc5,0x9d,0x05,0x6e,0x11,0x8d,0x8a,0xfd,0xfd,0x51,0x54,0xf1,0xa0,0x8e,0x8b,0x41,0x63,0xcd,0x6b,0x2b, + 0x57,0xe9,0x65,0x07,0x90,0xe0,0xa5,0xd1,0x44,0xf0,0xe1,0x48,0x30,0x1b,0x56,0x34,0xea,0xbe,0x58,0xb4, + 0x64,0x13,0xb0,0x8e,0x2e,0x08,0xb0,0x8a,0x07,0xce,0x29,0x84,0x00,0x0b,0x15,0xec,0xed,0x5d,0x42,0xfd, + 0x08,0x69,0xa4,0x85,0x2e,0x57,0xcd,0xb9,0x39,0x87,0x5d,0xd2,0xb5,0x03,0x18,0x6c,0xc3,0xc8,0x60,0x29, + 0x7d,0x24,0xf2,0x39,0x57,0xd1,0x8f,0x00,0xcd,0x2e,0x1d,0x84,0xbb,0x95,0x29,0x44,0x6c,0xcb,0x6e,0xb5, + 0xb7,0x67,0x37,0x18,0x55,0xa0,0x9f,0xa9,0x34,0x94,0x98,0xac,0x7c,0x48,0x78,0x6a,0x3c,0x79,0x3f,0xf1, + 0x2d,0xed,0x24,0xa9,0xbb,0xdc,0xdb,0x4b,0x1d,0x40,0xea,0x35,0x81,0x00,0x4b,0x1e,0xc1,0x22,0x65,0x97, + 0x59,0x75,0xed,0x9d,0xcf,0x1e,0x81,0xc9,0xe3,0xc0,0xb0,0x37,0x52,0xd9,0x7a,0x6d,0x2a,0xdb,0x3d,0x1c, + 0x89,0x44,0x43,0x83,0xe7,0xc7,0xec,0x1a,0x58,0x85,0xd8,0x25,0x3f,0xc1,0xd9,0x8f,0xd7,0xae,0xed,0x89, + 0x6d,0xbb,0xee,0xb6,0xdd,0x6a,0x19,0xde,0x37,0xba,0x71,0x67,0xfd,0x65,0x5a,0xf7,0xc0,0xfa,0xac,0x8b, + 0x41,0xb6,0xd6,0x90,0xba,0x6e,0xea,0x8b,0xac,0xdb,0x9c,0xee,0x19,0x31,0xc3,0xb6,0xa6,0x53,0xb7,0xeb, + 0x68,0x7c,0xdb,0xe6,0xe1,0x0d,0x76,0x96,0x90,0x63,0x7a,0x43,0xe0,0xf0,0x73,0x7b,0xc2,0xdf,0x6c,0x57, + 0x46,0xf3,0x16,0xdd,0xe8,0x19,0x91,0xe3,0xd3,0xf8,0x07,0x71,0x36,0x35,0x36,0x5f,0x65,0x71,0xa1,0x32, + 0x3a,0x91,0xb2,0x2a,0x3d,0x9b,0x67,0xf1,0xee,0x6e,0xa5,0x20,0x93,0x90,0x97,0x03,0x6d,0xcb,0xb0,0xd2, + 0x99,0x07,0x1b,0x0f,0x4b,0x1c,0x79,0x07,0x4a,0x8f,0xca,0x78,0x6f,0xef,0x5e,0xc1,0x0e,0x0c,0xac,0xd5, + 0xbc,0xa7,0x49,0x6c,0xdf,0xd4,0xcf,0x55,0xf5,0xb1,0x63,0xa3,0xf4,0x4b,0x11,0xca,0xe9,0xab,0xda,0x3f, + 0xee,0xe8,0x71,0xdf,0x7e,0xd2,0xca,0x7e,0xbd,0x87,0x27,0x46,0x3c,0xf3,0x5a,0x4c,0x70,0xf5,0x5e,0xfe, + 0x05,0xb6,0x34,0x4d,0x7a,0xae,0x2c,0x37,0x3b,0xb9,0xc8,0xe7,0xd3,0x2a,0x2b,0xc0,0x3d,0xc1,0x7e,0x83, + 0x40,0x71,0xbe,0x50,0xac,0x9e,0xe4,0x77,0x64,0xa4,0xf5,0x75,0x31,0x79,0x96,0xc2,0x9e,0xfd,0xda,0x29, + 0x44,0x87,0x05,0x78,0x65,0x54,0x2d,0xb2,0xb8,0x26,0x9f,0x00,0x15,0xeb,0x47,0x4a,0x25,0xe8,0xa3,0x04, + 0xfa,0xcb,0x25,0x1e,0x13,0x57,0x4a,0xfd,0xe1,0x22,0xfa,0x99,0xd2,0x67,0xc5,0x63,0x69,0x88,0xd2,0xed, + 0x33,0xa7,0xeb,0x8e,0x73,0xba,0x1d,0x04,0x3d,0xbf,0x9b,0xd0,0xda,0x3d,0x9f,0x72,0xba,0x7e,0x96,0xfa, + 0xe7,0x34,0x5e,0x76,0x91,0x6c,0x44,0xa1,0xaa,0x07,0x46,0x2f,0x95,0x7d,0x49,0x1e,0x7b,0x39,0x30,0x0d, + 0x8a,0xa0,0x7e,0x2d,0xfc,0xc2,0x85,0x5f,0xb8,0x68,0x17,0x26,0x84,0xe1,0x66,0xfc,0x71,0x17,0xe4,0x2d, + 0x96,0x6d,0xe3,0x4d,0x7d,0x52,0x16,0x7c,0x44,0xe2,0x80,0x4c,0x68,0xad,0xe8,0xc7,0x73,0xec,0xf0,0x6a, + 0x7d,0xe8,0xad,0x23,0xb6,0xbb,0x78,0xf0,0xec,0x86,0x2d,0x7f,0x9b,0x5f,0x0a,0xbb,0x85,0x70,0x90,0x05, + 0xa7,0xa7,0xe5,0xd9,0xe9,0x69,0xc0,0xd6,0x26,0xf2,0xec,0x97,0x2e,0xab,0x31,0x3a,0x27,0x19,0x71,0x4e, + 0x64,0xf7,0x45,0xb9,0x9a,0x4f,0x69,0xb2,0x69,0xe3,0xd3,0x64,0xed,0xfe,0x51,0xb0,0x95,0x5f,0x17,0x9b, + 0xad,0xd7,0x20,0x96,0x28,0x47,0xef,0x9d,0xbc,0x7e,0x0a,0xef,0x93,0x3a,0x3f,0x63,0x73,0x59,0xfa,0x90, + 0xfd,0x09,0x88,0x0a,0xc5,0xb4,0xf1,0x98,0x59,0x65,0xce,0xec,0x3c,0x4f,0xeb,0xe5,0xe2,0x71,0xb9,0x2a, + 0x9a,0xc1,0xc0,0x3f,0x78,0xde,0xf9,0xea,0x70,0xc1,0xa3,0x6c,0x2d,0x57,0x10,0xf6,0xd4,0x2d,0x9d,0x67, + 0x8d,0xe7,0xc5,0xf7,0x24,0xab,0x27,0x55,0x0e,0x1b,0x77,0x9e,0x1b,0xc6,0xd6,0x29,0x61,0xeb,0x43,0xa2, + 0xf6,0xd2,0xa1,0xbf,0x35,0x8d,0x84,0x37,0x25,0x84,0x8b,0x4a,0x08,0x13,0xf2,0x63,0x4d,0x8f,0xf3,0x64, + 0x37,0xdf,0xdb,0x7b,0x88,0x83,0xec,0x33,0xb8,0xc0,0xc7,0x01,0x5b,0xdb,0x5e,0x51,0x95,0xbe,0xcc,0x51, + 0xb0,0x54,0x3d,0xae,0x0d,0xcd,0xe8,0xd4,0x17,0x3f,0x17,0xb4,0xcd,0x2a,0x2a,0x4f,0x53,0x53,0x52,0x4b, + 0x4b,0x58,0x5e,0x44,0x6a,0x4e,0xaf,0x73,0xbc,0xba,0xa4,0xee,0x81,0xb1,0xb7,0xe7,0x11,0xec,0x2d,0xf8, + 0xd2,0xbb,0x5f,0xbc,0x87,0x9a,0xae,0xd7,0x10,0xad,0x40,0x03,0xc3,0x4c,0xcc,0xbb,0x2c,0xb5,0x7b,0xfa, + 0x5c,0x8b,0x90,0x6d,0xb3,0x11,0x05,0x84,0xde,0x2c,0xab,0xa9,0xfd,0x51,0x36,0x86,0x3a,0x69,0x0f,0x13, + 0x0a,0x98,0x6a,0xbd,0x6e,0x76,0xd9,0x84,0x74,0x17,0xcf,0xe1,0x64,0x3c,0x71,0x64,0x54,0x4c,0xdd,0xb1, + 0x73,0xde,0xc0,0x36,0xb6,0x28,0x1b,0x90,0xaf,0x6c,0x23,0xef,0xe1,0xe8,0x3b,0x9e,0x7a,0xbf,0x0b,0x81, + 0xb4,0x76,0xa1,0x3b,0x2d,0xec,0xd1,0xc9,0x24,0xf6,0x22,0xfd,0x64,0x29,0x41,0xc5,0xa2,0x37,0x4d,0xe9, + 0x35,0xea,0x90,0xaa,0x53,0xbc,0x7b,0x1a,0x76,0x13,0xc5,0xfe,0xe1,0xa7,0xae,0x67,0xa7,0xab,0x5a,0x0c, + 0x5c,0x0b,0x2d,0xf9,0x31,0x9b,0xc5,0x39,0x10,0x09,0x9c,0xaf,0xd7,0x15,0x2c,0xad,0x34,0x58,0x8f,0x8b, + 0xb8,0x1a,0x87,0xef,0x08,0xbd,0xf0,0x09,0xc2,0xa3,0x20,0x54,0x84,0xb9,0x36,0x63,0x05,0x5d,0x66,0xac, + 0x67,0x0b,0x0f,0x5b,0xbf,0xb6,0xb4,0xc9,0x2d,0x43,0xf6,0x47,0xe3,0x99,0x2a,0xb8,0x7d,0x3c,0x72,0x7d, + 0xf2,0xb7,0xda,0x7a,0x2d,0x94,0x2d,0x6c,0xc8,0x8c,0xb5,0x6e,0x73,0x22,0x48,0xce,0xef,0x98,0xbf,0x02, + 0x4f,0x6d,0x67,0x7c,0xf3,0x0a,0x0b,0x77,0xd8,0xa8,0x6e,0x6b,0x6a,0x92,0x02,0x1a,0xa3,0x51,0xfd,0x20, + 0x35,0x50,0x58,0x03,0xb7,0x81,0x2e,0x4c,0xd2,0xe3,0xfa,0xe4,0x04,0x00,0x8a,0xa3,0x7e,0xc6,0x94,0xcc, + 0xb8,0x0c,0x2b,0x76,0x43,0x84,0x2e,0xe4,0x69,0x88,0x8d,0x1f,0x63,0xd9,0x0b,0x7a,0xe8,0x21,0x09,0xdf, + 0x74,0x24,0x6c,0xc5,0xb8,0xb3,0xe7,0xaa,0xa4,0xd7,0x9d,0xcd,0x78,0xf8,0xb2,0x4f,0x1b,0xf5,0xa0,0xef, + 0x38,0x1e,0x67,0x5e,0xa1,0xcc,0x51,0xd8,0xba,0x57,0xf9,0x26,0x6e,0xc6,0x99,0xdf,0x9e,0x2e,0xf1,0x34, + 0xfc,0x5c,0x93,0x4c,0x82,0xe0,0x0f,0x1a,0xfe,0x5c,0xb3,0x5e,0x41,0xe2,0xda,0xe2,0x26,0xf6,0x86,0xfd, + 0x5b,0x57,0x8c,0x36,0xce,0x8c,0x0a,0x9e,0xb6,0x53,0x17,0x4d,0x8c,0x9b,0x18,0x7a,0x7a,0xef,0xfb,0x27, + 0x8e,0xd8,0x11,0x79,0x4d,0x9b,0x69,0xd1,0x8c,0xbe,0xa7,0xcb,0xb9,0x84,0x03,0x14,0xc6,0x6c,0xab,0x78, + 0x6e,0x66,0xde,0x63,0xe2,0x6d,0x75,0x69,0x45,0xe8,0x65,0xbd,0x9e,0x57,0xa3,0x39,0x1c,0xed,0xe8,0x60, + 0x62,0xef,0x44,0xfc,0x41,0xa3,0x7d,0xd6,0x78,0xc0,0x7e,0xc4,0x60,0x0c,0xb5,0x1f,0x50,0x57,0x72,0x62, + 0x20,0x9a,0xf6,0xe3,0xb2,0x16,0x4b,0x1e,0x59,0x5f,0x06,0xb8,0x9b,0xcd,0x68,0x6b,0x7f,0x14,0xe2,0x3b, + 0x4e,0x07,0xac,0x45,0x7f,0x60,0x4a,0xba,0xf2,0x85,0x50,0xc2,0x2f,0x60,0x17,0xa4,0xc7,0x67,0x05,0xc1, + 0xdd,0x49,0x72,0x83,0x2c,0x51,0x53,0x39,0x4b,0xa1,0xd2,0xd4,0xc8,0xe7,0x06,0x50,0x44,0x11,0xe1,0xdb, + 0xfa,0x44,0xf1,0x87,0x35,0x7d,0x08,0xb0,0x1d,0xe7,0xb1,0x7c,0x9f,0x6f,0x46,0xba,0xbf,0x49,0xba,0x01, + 0xca,0xbc,0x65,0x48,0x79,0x81,0xb9,0xf7,0xc7,0x64,0x13,0x3f,0x37,0x30,0x99,0x69,0x26,0x17,0x7c,0xc6, + 0x9a,0x98,0x2e,0x66,0xac,0x6f,0x60,0x1c,0x13,0xe3,0x79,0xd3,0x3f,0x84,0x54,0x86,0xa0,0x8f,0xc1,0xe2, + 0x38,0x25,0x96,0x8b,0xfe,0xd0,0x18,0xea,0x88,0xd6,0x5b,0xbe,0x4f,0x09,0xc5,0x47,0xb1,0x3c,0xd7,0x9b, + 0x4d,0x77,0x18,0x66,0x10,0x74,0x40,0xe6,0x15,0xf5,0x97,0x68,0x57,0xbd,0x38,0xa6,0x95,0xca,0x6b,0x45, + 0x66,0x7a,0xd4,0xb3,0xf8,0x39,0xa8,0x02,0x0e,0x82,0x01,0x03,0xfd,0x38,0x57,0xab,0x25,0xac,0x03,0x69, + 0x0a,0x23,0x28,0xed,0x75,0x98,0x8c,0x46,0x47,0x81,0xe0,0x26,0x72,0xb6,0x71,0x02,0x14,0xe6,0x30,0xee, + 0x53,0xcd,0x70,0x91,0x7f,0x22,0x4a,0xc6,0x8d,0x8f,0xce,0xbe,0x3a,0x31,0xc9,0x66,0x8a,0xd2,0x07,0xf5, + 0x28,0x05,0x9b,0xc8,0x9f,0x9a,0x5c,0x1a,0x37,0x55,0xc2,0xcd,0x4c,0xe8,0x24,0xa2,0x59,0x47,0x2d,0x13, + 0x09,0x1c,0x40,0x0f,0x91,0x7b,0x6f,0x22,0x20,0xaa,0x09,0x51,0x3c,0x9c,0xae,0x77,0xc8,0xdc,0x6d,0x8c, + 0x17,0x6e,0x6f,0xf5,0x79,0xcb,0xd8,0xb9,0x00,0xb2,0xc5,0x40,0x68,0x28,0xca,0xd1,0x68,0x39,0x58,0x5f, + 0xa1,0x74,0xce,0xc0,0x5f,0x99,0x12,0xa5,0x57,0xa2,0x94,0x12,0x69,0x72,0x5a,0x84,0xa5,0x13,0x2e,0x50, + 0xa9,0x94,0xa0,0x8f,0xc6,0x12,0xe7,0x2c,0x55,0x40,0x49,0xfc,0x4d,0x7d,0xd9,0xc8,0xb3,0xee,0xd6,0x6f, + 0x8e,0xb3,0x13,0x55,0x26,0xbb,0xb4,0x6a,0x8a,0xd9,0x52,0x08,0x53,0xd0,0xec,0xcb,0xf0,0x91,0x88,0xd3, + 0x54,0x3e,0xe4,0x13,0x10,0xf4,0x09,0x9d,0x8f,0x68,0x28,0xd0,0x8e,0x90,0x41,0x34,0x4e,0x89,0xf7,0x8a, + 0x5f,0x6a,0x19,0x97,0x29,0x0a,0xc3,0xfd,0x5d,0x56,0x49,0xa7,0xf4,0x73,0x24,0x6e,0xaa,0x61,0x9a,0x30, + 0x19,0x6d,0x05,0x8a,0x69,0x74,0x93,0xf6,0x99,0xee,0xcd,0xe0,0xc1,0x64,0x5b,0x30,0x9b,0xa2,0x31,0xde, + 0x97,0xf6,0x1c,0x00,0x0d,0x7b,0x47,0x23,0x0c,0xd9,0x69,0x12,0xdc,0xc0,0x49,0x2c,0x7b,0xb2,0x45,0x3e, + 0x60,0x25,0x95,0xc3,0x53,0xce,0xa1,0xd4,0xb1,0xf7,0xdc,0x27,0x61,0x85,0x6b,0xef,0x33,0x27,0x9b,0x4f, + 0x5e,0x85,0x8d,0x0c,0x76,0x5c,0x59,0x6a,0xa7,0x22,0x70,0x05,0x4a,0xca,0x22,0xcd,0x6e,0x77,0x49,0xe8, + 0x51,0x37,0x01,0x5c,0xc8,0xc3,0x30,0x25,0xd2,0xbf,0x9b,0x51,0x3b,0xb3,0x07,0xbb,0x7a,0xaf,0x3c,0xfb, + 0x26,0x8c,0xde,0xf1,0x86,0x5a,0x4b,0xcf,0x7e,0xd7,0xb6,0x78,0xf8,0xeb,0xd5,0x20,0xba,0xe7,0xe1,0xf1, + 0xe6,0xf8,0x90,0xc6,0x16,0xb8,0x0a,0x5f,0xba,0x03,0xbd,0x7b,0x6c,0x18,0x80,0x7b,0x25,0xc2,0xc9,0x57, + 0xc6,0x3f,0xd5,0x44,0xe3,0xa8,0x1c,0x61,0x59,0x3c,0xa8,0x0c,0xe3,0xfe,0x8a,0x65,0x59,0xe6,0x03,0x27, + 0x49,0xb1,0x82,0x00,0xdb,0xf4,0x5b,0x6f,0xc5,0x1b,0x87,0x30,0x12,0x5a,0xdf,0xa4,0x1a,0xde,0x59,0xa6, + 0xc4,0x4a,0x35,0x23,0x67,0x00,0x64,0x97,0x92,0x7d,0x00,0x1e,0xa7,0x4b,0xaa,0x30,0x9b,0x32,0x2e,0xb0, + 0x5f,0x97,0x84,0x10,0xcb,0x07,0xb9,0xe9,0x57,0x89,0x08,0x21,0xd5,0x35,0x0f,0x0f,0x26,0x8c,0xd8,0x11, + 0xb2,0x56,0x95,0x92,0xc6,0x75,0x07,0x9d,0xc0,0xe2,0x27,0xea,0x55,0xa5,0x82,0x56,0x1b,0x3b,0x17,0x65, + 0xf9,0x11,0x6e,0xeb,0x3f,0xe9,0x2e,0xbb,0x41,0xfc,0xe4,0x0d,0xe2,0x4e,0x21,0x5d,0xfb,0x4e,0x74,0xe6, + 0xdc,0xb2,0x9e,0xc3,0x4e,0x96,0x1f,0x5f,0x44,0x2a,0xb4,0xed,0x3f,0x32,0x42,0xdb,0x40,0x9b,0x4a,0xfb, + 0xdf,0x51,0x1f,0x1e,0x6d,0x75,0xe1,0x91,0xd7,0x85,0xdd,0x37,0x10,0x47,0xfd,0x56,0xd0,0xfe,0xeb,0xf1, + 0x11,0x82,0xb3,0x39,0xed,0x68,0xad,0x60,0xc9,0x46,0xfa,0x5d,0x9a,0x68,0xc9,0x86,0x3f,0xc0,0xa8,0xae, + 0x4a,0xb4,0xd4,0x28,0x4b,0x56,0x95,0xf1,0x0f,0x8f,0x46,0x2b,0x23,0xc8,0x4d,0x9c,0x2c,0xb0,0xa1,0xe7, + 0xc6,0x09,0x71,0x1a,0x16,0xc4,0x35,0x27,0xa1,0x57,0xe5,0xfb,0x0e,0xb7,0x4a,0xd5,0xb0,0x2d,0x44,0x5b, + 0x0f,0xa4,0x9d,0x09,0xad,0x7c,0xd2,0xce,0x8b,0x40,0x4b,0x50,0xd0,0x11,0x70,0x94,0x4f,0xb0,0x1a,0x7c, + 0xaa,0x15,0xec,0xbc,0xce,0x9a,0x16,0xf0,0x15,0xe8,0xf3,0x81,0x9a,0x56,0xe3,0x49,0x15,0x46,0x71,0x5d, + 0xc1,0xc0,0x66,0x37,0xeb,0x57,0xaf,0x68,0x45,0x58,0xe4,0x49,0x51,0xfa,0x74,0x63,0x05,0x74,0x63,0x6e, + 0x18,0xdf,0x21,0xcd,0x16,0x00,0xdf,0xa5,0x2c,0x29,0x52,0xde,0x22,0xd4,0x0b,0x89,0x05,0x85,0xf0,0x10, + 0x7c,0xb0,0x65,0x90,0x9f,0x55,0xe5,0x1f,0x70,0x9c,0x16,0x9b,0xa8,0x46,0xd3,0xea,0xe6,0x3c,0x6e,0x7c, + 0x76,0x2c,0x67,0x28,0x2f,0x60,0x01,0x48,0x87,0xb3,0x31,0xcc,0x2c,0xe0,0x3d,0x00,0x37,0x40,0x58,0x70, + 0x6a,0x5a,0xa7,0x69,0xd1,0x3a,0xd4,0x39,0x26,0xb9,0xbc,0x80,0x38,0x55,0x12,0x96,0x1d,0xfa,0x3c,0xda, + 0xfa,0xa6,0xa4,0xaf,0x4e,0x38,0x00,0x42,0x44,0xb3,0x7e,0x5e,0x45,0xf4,0x7f,0x38,0xa1,0xa3,0xa0,0xf2, + 0x17,0xf4,0x8f,0xb0,0x1d,0xea,0x4a,0x6b,0xe4,0x9c,0x6c,0x5a,0x81,0x30,0x98,0x15,0x7c,0x5c,0xef,0x6e, + 0xd1,0x30,0x56,0xf2,0xec,0xe9,0xcd,0x9c,0x68,0x6e,0xe4,0xf0,0x41,0xa1,0x41,0xaf,0x57,0x8f,0x00,0x21, + 0x89,0x5f,0x43,0x66,0x45,0xda,0xdc,0x34,0x02,0x0f,0xb8,0x1e,0xff,0x1e,0x6a,0x61,0x82,0xb5,0xdf,0x57, + 0xb5,0xa2,0x03,0x9f,0x1b,0x4b,0xe5,0x74,0xa7,0xa9,0x07,0x35,0x30,0x61,0x8a,0x88,0x68,0x81,0xeb,0x0a, + 0xc8,0x19,0xee,0x96,0xb0,0xd0,0xa6,0x23,0x7f,0x4c,0x7f,0x6b,0xd4,0x8d,0xf3,0x50,0x4a,0x27,0x7f,0x60, + 0x59,0x54,0x45,0xfc,0x3a,0x1b,0x5f,0xd6,0x6a,0x3e,0x24,0x6a,0x3c,0x53,0x88,0xc3,0xc2,0x28,0x84,0x9e, + 0xe0,0xd3,0x46,0xf4,0x11,0x3f,0xc1,0xcc,0x3c,0x22,0xf8,0xa4,0x53,0x64,0x42,0xb5,0x4c,0xb8,0xab,0x44, + 0xed,0xa3,0xae,0x49,0x14,0xb9,0xfe,0x14,0xbc,0x1e,0x29,0xc8,0xd3,0x3c,0x0c,0x75,0x6f,0x22,0x69,0x45, + 0x3a,0x68,0x5a,0xf0,0x16,0xe6,0x87,0x50,0x0f,0xd1,0x53,0x4b,0x45,0x37,0x65,0xbf,0x0c,0x54,0xad,0x64, + 0x34,0x44,0x3b,0x6c,0xaa,0xb6,0xe0,0x08,0xe2,0x30,0xc2,0xbb,0x90,0xfe,0x0d,0x81,0x01,0x61,0x81,0xe1, + 0xde,0x88,0x4a,0x8a,0xf4,0x29,0x07,0x7b,0x40,0x5a,0x87,0x11,0x4f,0x4f,0x4d,0xb3,0x81,0x1e,0xc7,0x8d, + 0x8c,0x0b,0x52,0x06,0x7a,0x62,0x13,0x97,0x29,0xcd,0x5e,0x4d,0x23,0x44,0xba,0xec,0xfe,0x94,0x66,0x01, + 0x1f,0x4c,0x14,0x7d,0xa2,0x6a,0x5d,0x0c,0x9b,0x98,0xc5,0x5f,0xb5,0x1b,0xd5,0xf7,0xcc,0x05,0xea,0x91, + 0x61,0xc7,0x00,0x88,0x84,0x5a,0x00,0x35,0xe3,0xd8,0x73,0x44,0x31,0x01,0xd8,0x97,0xeb,0xb5,0xe6,0x6b, + 0xf9,0x95,0xce,0x20,0x5d,0x38,0xef,0x16,0xce,0xdb,0x85,0x73,0x14,0xde,0x6c,0x1f,0x58,0xdf,0x7a,0x32, + 0x57,0xb1,0xb2,0x67,0xf1,0x2c,0x61,0x24,0x6c,0x6c,0x6d,0x22,0x6f,0x04,0x96,0xee,0xb3,0x9f,0x7d,0x66, + 0x2d,0x04,0x53,0x9e,0xd5,0x2f,0x59,0xa7,0xbb,0x5e,0xff,0x80,0x78,0x2b,0xf2,0x02,0x95,0x62,0x76,0xfc, + 0x8e,0xb5,0x9a,0xf6,0x5c,0x3f,0x4a,0xcf,0xc5,0x6f,0x1f,0x8e,0xa6,0x42,0xfd,0xd0,0x36,0x80,0x07,0x80, + 0x21,0x86,0x41,0x75,0x78,0x9c,0xdd,0xbf,0x5b,0xd1,0x58,0x6c,0x6f,0x40,0x2b,0xf8,0xa2,0x59,0xf7,0xc1, + 0x2f,0xda,0xec,0xa0,0x2b,0x5c,0x88,0x3e,0x23,0x9f,0x37,0x5c,0x0a,0x68,0x55,0x5e,0x89,0x8a,0xdd,0x1a, + 0x20,0x3c,0xed,0xc8,0x92,0x69,0xd3,0xfc,0x9b,0x72,0xed,0x84,0x57,0x1e,0x25,0xfa,0xa3,0x39,0xb7,0x8a, + 0xf1,0x02,0xa7,0x3b,0x81,0x9d,0x88,0x83,0xe4,0xad,0xa3,0x61,0xcb,0x24,0xf3,0x86,0x33,0x67,0xb3,0x4e, + 0x2e,0x5b,0x0c,0x72,0x65,0x0b,0xea,0x97,0xe2,0x8d,0xce,0x66,0x52,0x3f,0xaa,0x8c,0x88,0x5a,0x4a,0x14, + 0x8a,0xcf,0xd3,0x46,0x67,0x3e,0x17,0x26,0x7c,0xd6,0xae,0x3b,0x0c,0x3c,0xfc,0xd3,0x8a,0x3b,0x66,0x44, + 0x68,0x5a,0x1a,0xc9,0x7c,0x6d,0x9a,0x94,0xbc,0x2d,0x50,0x05,0xcb,0x10,0xd3,0xa6,0xa9,0x6a,0xfb,0x40, + 0xe8,0xab,0x6c,0xac,0x17,0xb0,0x9f,0xa8,0x4a,0x23,0x3b,0x17,0x6b,0xba,0xd2,0xc9,0xb5,0x91,0xb0,0x5e, + 0x43,0x76,0x29,0x0a,0xdf,0x94,0x3f,0x88,0xc2,0xc2,0x80,0x01,0xdb,0x62,0x98,0x38,0x71,0xc7,0x27,0x84, + 0x14,0x78,0x3f,0x95,0x9e,0x04,0xa8,0xd6,0x5f,0x31,0x32,0xab,0xa1,0x66,0xc4,0x0f,0x0a,0x8f,0x82,0x26, + 0x5b,0x2c,0xe7,0xc4,0x62,0x01,0xea,0x4a,0x88,0xf9,0xc7,0x13,0xae,0x40,0x23,0x89,0x09,0xba,0xa6,0xc5, + 0xd9,0xeb,0x35,0x7d,0x11,0x4f,0x4c,0xfd,0x1b,0x1b,0xa0,0x68,0x2e,0x18,0xaa,0x38,0x9e,0x9f,0x68,0xc5, + 0x50,0x95,0x39,0x77,0x67,0x24,0xbb,0x08,0x20,0x4e,0x4a,0x90,0xdd,0x06,0xa1,0xbb,0x6d,0x10,0x25,0x12, + 0x66,0x87,0xf7,0x04,0xef,0x30,0x4f,0x8f,0x9f,0x79,0xda,0x48,0xcd,0xa9,0xdd,0x02,0xa7,0x1d,0x98,0x06, + 0x5d,0x3a,0xc6,0xe7,0xa2,0x59,0x8a,0x89,0xf3,0xa1,0x27,0x1c,0x83,0xac,0xa6,0x3c,0xa1,0xd9,0xef,0x51, + 0x17,0x96,0x99,0x51,0x3b,0x8e,0x32,0xbd,0x13,0x35,0x6d,0x1a,0x8d,0x22,0x56,0x31,0x9f,0xe6,0x45,0xca, + 0xbc,0xef,0xe7,0xa8,0xdd,0x34,0xb3,0x94,0xb6,0x51,0x4d,0x9f,0x0a,0xd3,0xfc,0x5c,0x7f,0x4d,0xd4,0x96, + 0xe2,0xc6,0x0c,0x4d,0x6a,0xd8,0xf6,0xad,0x92,0x86,0x02,0x68,0xb7,0xee,0xac,0x33,0xbc,0x1e,0xdd,0x78, + 0x2f,0x20,0xe7,0xba,0xb3,0x75,0xc7,0xac,0xb2,0x3f,0x6f,0xe8,0xab,0xcb,0x61,0x35,0x6a,0xcd,0x26,0xb9, + 0x5c,0x0f,0x41,0xcd,0x34,0xf0,0x85,0x82,0x75,0xd6,0x16,0x68,0x18,0x42,0x5d,0x33,0xb8,0x9e,0x30,0x80, + 0xf7,0x52,0xd1,0xdd,0x4b,0xa0,0xf8,0x0a,0x1b,0xda,0xd2,0xc6,0x8e,0x28,0x40,0xf4,0x15,0x20,0x90,0x07, + 0x81,0xa1,0xc0,0x69,0x34,0x44,0x04,0x7d,0x47,0x2f,0xec,0x36,0xc9,0x0c,0x60,0xb6,0x80,0x9d,0x01,0x0a, + 0xc4,0xc1,0xc0,0x47,0x0a,0xa0,0x19,0x84,0x26,0x51,0x0d,0x0f,0xfc,0x13,0x53,0x87,0xa7,0x30,0x26,0xaa, + 0x1a,0x5f,0x83,0xea,0x9b,0xf1,0xe4,0xd3,0x7d,0x22,0xcf,0xa6,0x44,0x51,0x3e,0x46,0xe0,0xa8,0xc7,0xd5, + 0x83,0x53,0x4b,0x71,0x3c,0xe6,0xee,0x26,0x04,0x04,0xa7,0xd5,0xf1,0xe3,0xea,0x24,0xa2,0x82,0xea,0xa8, + 0x62,0xa1,0x2d,0x53,0x1f,0xc3,0x6a,0x55,0x84,0xc6,0x92,0xea,0xaa,0xb2,0x94,0x4b,0x95,0x9c,0xda,0x17, + 0xaa,0x25,0xb1,0x55,0xa2,0x90,0xa1,0xa6,0xa9,0x26,0x28,0xb5,0x3f,0x56,0x09,0x3a,0x7a,0xd8,0x92,0xb3, + 0xfc,0x09,0xa1,0xed,0x2f,0xf2,0x81,0xc2,0xfa,0x41,0x94,0xbb,0x8b,0x90,0x9e,0x45,0x74,0x4b,0x45,0xae, + 0x12,0xd0,0x7d,0x66,0xf5,0xf0,0x1d,0x68,0xae,0xcb,0xc5,0xa8,0x1a,0x9e,0x5e,0x61,0x25,0xb2,0x8a,0x80, + 0xaa,0x80,0x34,0xfb,0x34,0xa7,0x93,0x6b,0x45,0x08,0x6a,0xba,0xb7,0x47,0xab,0x4e,0x7c,0x92,0x08,0x6a, + 0x18,0x1e,0x08,0xcf,0xab,0xdf,0xa9,0xd8,0x1d,0xe0,0xa5,0xcb,0xa6,0x2c,0xe1,0xeb,0xfb,0x3b,0x31,0x3e, + 0xbc,0x3e,0xb3,0x39,0xa1,0x8f,0xc0,0x5b,0x9d,0xb9,0x45,0xd9,0x77,0x2a,0x28,0x60,0xb6,0x8d,0xf1,0xd8, + 0x04,0x8c,0xfa,0x43,0x00,0xb8,0x51,0x54,0xa8,0xce,0xb6,0xad,0x9e,0x25,0x1b,0xa1,0xf8,0x6e,0xd3,0xd4, + 0x14,0xf4,0xa9,0xd7,0xec,0xca,0x36,0x2b,0x10,0xc9,0x1a,0xad,0x3e,0x99,0x54,0x31,0x0e,0x75,0xc7,0xaa, + 0xf1,0x8c,0xad,0xa8,0x0a,0xd3,0x89,0xf3,0x28,0x36,0x79,0x05,0xfe,0x8e,0x2b,0x9c,0xff,0x88,0x3a,0x47, + 0x20,0x4c,0xf3,0x65,0xca,0x23,0x2f,0x3e,0x37,0x5f,0x15,0xf8,0x3b,0xe6,0xbf,0xf1,0x79,0x74,0x6b,0x7f, + 0x9b,0x76,0x7f,0x67,0x3e,0xbe,0xdc,0x52,0x28,0xb1,0x91,0xdc,0x29,0x4e,0xdd,0x15,0xad,0xc2,0x4f,0xb2, + 0x5a,0x34,0xed,0xfd,0xe9,0x5a,0xb0,0x63,0x25,0xf7,0x2c,0xb6,0x6b,0xae,0x61,0x50,0x9b,0x41,0x2f,0x01, + 0xd9,0x6f,0xa4,0x3c,0x7d,0x54,0xe3,0x34,0x41,0x8d,0x68,0x2e,0xbc,0x6d,0x3f,0xcd,0x9c,0x28,0xc9,0xf8, + 0x0b,0xb2,0x8a,0x08,0x32,0x57,0x85,0xc8,0x50,0xda,0x78,0x3c,0x52,0xdb,0x52,0x30,0x56,0x03,0x32,0x46, + 0xa6,0x4d,0x73,0xe7,0x4a,0x3c,0xb9,0x45,0x38,0xec,0xec,0x5f,0x1c,0xca,0xcc,0xfe,0xdc,0xe2,0xe8,0x87, + 0x62,0xfc,0x36,0x9b,0xcd,0x91,0x53,0x5e,0x15,0x3f,0x88,0x7d,0xc3,0x70,0x96,0xcf,0x9b,0xac,0xea,0xb3, + 0x4e,0xfe,0x2b,0xfa,0xc3,0xa1,0xd3,0xf1,0x6d,0xa2,0xb8,0x63,0x3a,0xd1,0xc3,0x8d,0xdc,0x38,0x39,0x04, + 0xc8,0x57,0xa2,0x0c,0x10,0x3e,0x74,0x08,0xf1,0x29,0x64,0x91,0xa3,0x7a,0xc4,0xa3,0xa9,0x59,0xd0,0x74, + 0x99,0x4f,0xb1,0x8f,0x98,0xce,0xf7,0x52,0x88,0x1e,0xa2,0x6f,0x12,0x2f,0x05,0xa2,0xd9,0x33,0x1a,0xec, + 0xc7,0x0d,0x31,0x09,0xe6,0xf0,0x01,0xd7,0xb7,0x0b,0xc3,0x41,0x23,0x27,0x83,0xac,0x92,0x3e,0x14,0xc8, + 0x98,0x48,0xc3,0x46,0x60,0xc6,0x35,0xf6,0xc0,0xb8,0x55,0xc3,0x11,0xb4,0x4e,0x36,0xd6,0x18,0xc8,0x5b, + 0xe4,0x8b,0x4c,0x0c,0x4c,0x2c,0x83,0x0b,0x8e,0x69,0x5b,0x26,0xcd,0x12,0xbf,0xed,0xc0,0x40,0x5a,0x00, + 0x6f,0x35,0xdc,0xd6,0x1c,0x4b,0x95,0x84,0xee,0x52,0x87,0x82,0xca,0x07,0x29,0x0b,0x6b,0x2a,0x74,0x94, + 0x36,0x37,0x07,0x5d,0x75,0xb2,0xf7,0x6d,0x03,0xc0,0xed,0xaa,0xb9,0x4e,0xaa,0x28,0xf3,0x2b,0x2a,0x07, + 0x87,0x7e,0x3d,0xb9,0x21,0x6c,0xb7,0xec,0x60,0xfc,0xaa,0xea,0x4e,0x2f,0xeb,0x6e,0x2f,0x27,0x49,0x8d, + 0x0e,0xda,0xce,0x4e,0x88,0x5f,0x54,0x4e,0x12,0xab,0xe9,0x61,0x46,0x97,0x1f,0xe0,0xd9,0xcf,0xe1,0x0d, + 0x7c,0xd3,0x27,0x6f,0xe7,0x98,0xe0,0x5b,0xbc,0x63,0xef,0xd4,0xb0,0x52,0x98,0xbe,0x23,0xa2,0xcd,0x6c, + 0xd6,0x12,0x31,0xd6,0x98,0x94,0xad,0x78,0xcf,0x5c,0x86,0x97,0x21,0x5e,0x22,0x96,0x7a,0xe7,0x09,0xb6, + 0xdc,0x7a,0xdd,0xf8,0x2e,0xca,0xba,0x2a,0x53,0x49,0x0a,0xd5,0xc6,0xf0,0x94,0x80,0x66,0x9a,0x55,0xcc, + 0x5b,0xe1,0x3b,0xa2,0x2c,0x1b,0x13,0xd2,0x16,0x1a,0x3f,0x14,0xb7,0xc6,0x3f,0x63,0xa9,0xa2,0xe3,0xba, + 0x67,0x69,0x46,0x75,0x83,0xd2,0x31,0x82,0x77,0xb6,0x74,0x42,0x0b,0x1f,0x57,0xbd,0x10,0x9b,0x5e,0x43, + 0x0c,0xa8,0x40,0xb6,0x22,0x02,0x1b,0x50,0x87,0x3f,0x79,0x24,0xe1,0x79,0x77,0x3a,0x12,0x3a,0x42,0x68, + 0x61,0xe0,0x1e,0x06,0x04,0x4f,0x84,0x8d,0xb5,0x49,0x1c,0xb7,0xe1,0x2e,0x8f,0xc6,0xec,0x9b,0xec,0x7c, + 0x57,0x89,0x1d,0xca,0x21,0xd7,0x8d,0xab,0xf1,0x51,0x41,0x0b,0x01,0x42,0x3a,0xee,0x12,0xff,0xd7,0xb6, + 0x45,0xcd,0x4c,0x16,0xe0,0xaf,0xc1,0x4f,0x6e,0x2b,0xbc,0x69,0xce,0x17,0xc8,0x1a,0x69,0x81,0x81,0x3b, + 0x82,0x72,0x91,0xf0,0x4f,0xe6,0xc4,0xd9,0xb3,0x63,0x25,0xef,0x81,0x6b,0x61,0xe5,0xe8,0x65,0x81,0x22, + 0x11,0x41,0xb9,0x4f,0x92,0x67,0x86,0x3b,0xd0,0x0f,0x2c,0x42,0x1e,0xa5,0xd0,0x8a,0xd3,0xa8,0x61,0xc9, + 0xfd,0xbe,0xe6,0xe3,0x80,0xd0,0x61,0x4d,0xf3,0x3b,0x26,0xc6,0xaf,0x5c,0x20,0xa1,0x86,0x00,0xc2,0xbe, + 0x80,0xfd,0x8e,0x75,0x1d,0x9c,0xc1,0x4f,0x48,0xdd,0xe4,0xc0,0x28,0x29,0xe4,0xed,0x60,0xa1,0x85,0x9f, + 0x2d,0x21,0xbe,0x08,0x11,0x52,0x82,0x0b,0x97,0x05,0xb3,0xef,0xc7,0xfa,0xfc,0x26,0xc2,0x29,0x3f,0x69, + 0x9d,0xad,0xf8,0x8a,0x05,0x5f,0x96,0x62,0x9c,0x08,0xb5,0x5f,0x13,0x8f,0xef,0x42,0x7a,0x39,0xa3,0xae, + 0x16,0x0d,0x28,0xc7,0x4f,0xcd,0xd6,0x3d,0x47,0x55,0x96,0xa1,0x87,0x5b,0x69,0x60,0x44,0xb0,0xef,0x00, + 0xa3,0x86,0x3d,0xa4,0x73,0xb4,0xe9,0x2c,0x71,0x15,0x8d,0x1f,0xd3,0x9f,0xf8,0x13,0xfe,0x84,0x57,0x59, + 0x28,0x9f,0x24,0x2d,0xe8,0x1a,0x4a,0xbd,0x6f,0x19,0xc6,0x9f,0x15,0x80,0x7b,0xa7,0x45,0x35,0xb0,0xff, + 0x06,0xce,0xdc,0x22,0x5c,0x65,0xbd,0x2a,0x8c,0x61,0xe4,0xbb,0xd3,0xd3,0x60,0x90,0xa9,0xdd,0xc3,0xa8, + 0x75,0xfe,0x9c,0x5a,0x52,0x41,0x77,0xef,0x2a,0xd3,0x16,0x34,0xc4,0xaa,0xe2,0x93,0x66,0x10,0x16,0xe3, + 0xe0,0x14,0x3e,0xce,0x41,0x20,0xe1,0x83,0xbc,0x29,0xb9,0xca,0x3c,0xc1,0xec,0xad,0xec,0xb5,0x04,0x27, + 0x75,0xfc,0x25,0x13,0x74,0x1c,0x2f,0x56,0xa3,0x53,0xe7,0x05,0xc0,0xc9,0x47,0x99,0x56,0xa6,0x0e,0xd0, + 0x70,0x65,0x85,0x7b,0x47,0xa6,0x35,0xcf,0xdc,0xcc,0x76,0xc0,0xd9,0x5a,0x89,0x35,0x1c,0xcc,0xad,0x60, + 0xbf,0x95,0xd7,0xaf,0x69,0x28,0x89,0xb7,0x17,0x3f,0x7a,0x6c,0x0a,0xd4,0xf0,0x4d,0xe4,0xe8,0xfa,0x52, + 0xfe,0x8c,0x19,0x01,0xe1,0x29,0x8a,0x3d,0xfe,0xab,0x12,0xf9,0x99,0xa7,0xe9,0x23,0xd4,0x09,0xf9,0xe3, + 0x88,0x35,0x7b,0xf9,0xf8,0xf8,0xc4,0xe8,0xa8,0x73,0xed,0x0d,0xbe,0x0d,0x46,0x9f,0x32,0xf1,0x0a,0x3b, + 0x2d,0x93,0xd3,0x8c,0xda,0x38,0x2d,0x38,0x2e,0xfa,0x29,0xa4,0x63,0xf4,0x33,0x4f,0x2e,0x38,0xb5,0x49, + 0x2e,0xf9,0xf7,0xf7,0xe4,0x1a,0x3f,0x79,0x72,0x86,0x9f,0x45,0x72,0xc6,0xa9,0xb3,0x64,0xc1,0xbf,0x1f, + 0x93,0x73,0xfe,0x3d,0x4b,0xae,0xf9,0xf7,0x32,0xf9,0x88,0x1f,0xe2,0xe0,0x10,0x2f,0xe3,0x74,0x95,0xe4, + 0x9c,0x7c,0x9e,0x7c,0xf4,0x7a,0xf0,0x58,0x26,0xcd,0x17,0x12,0x12,0x83,0xac,0xc1,0x4c,0xbc,0x29,0xd8, + 0xcd,0x48,0x47,0x34,0x15,0xfd,0x6e,0x23,0x2f,0xd6,0x1a,0xac,0xd2,0x99,0x7c,0x52,0x27,0x3a,0x76,0xe8, + 0x5c,0xc7,0x78,0xa9,0x13,0xd9,0x86,0xcb,0xc2,0x04,0xe6,0xc4,0x49,0xc4,0x06,0x6c,0x44,0xf1,0xa4,0xfa, + 0x9d,0xc3,0x1d,0x22,0x9b,0xf1,0x78,0x0f,0x71,0x5c,0x64,0x6c,0x87,0xb0,0x69,0xdb,0x75,0x6a,0xa2,0x28, + 0x17,0x47,0xb8,0x54,0x68,0x40,0x44,0x4d,0x81,0x47,0xdc,0xee,0x64,0x34,0x31,0xae,0x81,0x66,0xe7,0x24, + 0xa9,0xf2,0xce,0x8b,0xc4,0x35,0x19,0x46,0x6a,0xeb,0x4c,0x82,0x59,0xb7,0x7b,0xc3,0x10,0x10,0x53,0xe2, + 0xb4,0x16,0xdb,0xba,0xb1,0xa6,0x3a,0xb7,0x82,0x99,0x18,0x69,0xc9,0x1d,0x0e,0xb1,0xaf,0x11,0xaf,0x33, + 0x2f,0x28,0xd9,0xf0,0xc9,0x99,0xeb,0xb9,0x1a,0x95,0x27,0x11,0x49,0x68,0x4c,0xe5,0x26,0xbe,0xbd,0x0d, + 0xa3,0x6a,0x69,0x37,0xe2,0xd1,0x32,0x0f,0xb3,0x5b,0x4c,0x8e,0x59,0xd3,0x2a,0x66,0xc7,0x9e,0xed,0x19, + 0xe6,0x57,0x13,0x3c,0xa2,0x5b,0xc9,0x20,0xc9,0xe2,0xa1,0xcc,0xa9,0x8f,0x16,0xf5,0x9c,0xc2,0x3f,0x50, + 0xec,0xef,0xe4,0xdc,0x4f,0xe6,0x46,0x36,0x47,0xe5,0xfb,0x6c,0x3c,0xf4,0x84,0xac,0x98,0x81,0x87,0xd4, + 0x2c,0x9f,0x46,0x9e,0xd6,0x32,0xf4,0x02,0x5c,0x55,0xe2,0x8d,0x8c,0x23,0x8a,0x0a,0xb2,0xa2,0x86,0xe5, + 0x8e,0xfa,0x19,0xae,0xb5,0x4e,0xb8,0xe6,0xd2,0xb4,0x58,0xce,0x84,0x96,0x9d,0x7a,0x65,0x4c,0xd2,0x48, + 0xd7,0x89,0x00,0x43,0x84,0x67,0x74,0xad,0xfa,0xad,0x53,0xaf,0x97,0xca,0x72,0x32,0x11,0xf5,0xf1,0xb2, + 0xd4,0x91,0x51,0x59,0xb8,0xa4,0x44,0x24,0xe8,0x84,0x6a,0xe6,0x3e,0xe0,0x9a,0x79,0xcf,0x88,0xaa,0x6a, + 0x1c,0x55,0x95,0x3d,0x20,0xea,0x85,0xd0,0x1e,0x23,0xed,0x3b,0x54,0x68,0x92,0xbd,0xe7,0x53,0x29,0x8c, + 0x36,0x6a,0x95,0x9c,0xb6,0xb4,0x31,0xae,0xff,0x09,0xe4,0xaa,0x25,0xc1,0xf9,0x7a,0x3d,0x0f,0x59,0x01, + 0xd4,0x29,0xda,0x9e,0x24,0x26,0xc8,0x24,0x7a,0x18,0xfa,0x15,0x72,0xd0,0x93,0x69,0x52,0x85,0x2b,0x35, + 0x73,0x2e,0x0f,0x21,0x16,0xa2,0xcf,0x7e,0x67,0xca,0x5e,0x8e,0xe3,0xcc,0x9f,0xd3,0xbd,0x3d,0x49,0xe5, + 0x2a,0xe2,0x26,0x9c,0x3a,0xf1,0x67,0xd4,0x1b,0x6f,0xd9,0x2b,0xc0,0x1f,0xc2,0xf2,0xaa,0x93,0xc4,0x75, + 0x29,0xd4,0x65,0xd6,0xda,0x1f,0x05,0x8d,0x59,0x67,0xc0,0x20,0x80,0x8b,0xb9,0xe5,0x6b,0xaf,0x1e,0x17, + 0xd5,0xef,0x98,0x26,0x00,0xd6,0x94,0x18,0x82,0x79,0x7a,0x3d,0xb6,0x05,0x69,0x2a,0x62,0x62,0x47,0x8f, + 0x24,0xe2,0x99,0xaf,0x8a,0xeb,0x0c,0x34,0xf3,0x80,0x2f,0xf4,0x3f,0x97,0x99,0x54,0xba,0xe6,0xf5,0xfa, + 0xfe,0xc1,0x81,0xee,0x98,0x0e,0xa3,0x06,0x8f,0xf5,0xbf,0xd2,0x82,0x5c,0x11,0xc1,0x55,0x99,0x2f,0x23, + 0x20,0xb1,0xdd,0x43,0x65,0xdb,0x1b,0xb7,0x46,0x18,0xbb,0xef,0x37,0x0e,0xf6,0x8c,0x5a,0x61,0x13,0xae, + 0x08,0x0d,0xcf,0x69,0xf3,0x58,0x38,0xbe,0x4c,0x56,0x6a,0x91,0x94,0xea,0x9c,0x70,0xde,0x35,0x1d,0x28, + 0x67,0x74,0xb6,0x5c,0xd1,0x61,0x40,0x98,0xee,0xaa,0x25,0x7a,0x4c,0x2e,0x4d,0xc2,0xcb,0x8c,0x50,0xbd, + 0x04,0xd2,0x5b,0x28,0xdd,0x04,0x71,0xf4,0x06,0xd1,0xc7,0xd7,0xaa,0x49,0xcf,0xe3,0xb3,0x8d,0xba,0x1a, + 0x95,0x49,0xc9,0x64,0xfa,0x6b,0xa0,0x09,0xc5,0x51,0x80,0x89,0x7e,0x9d,0x7b,0x46,0x9a,0x1e,0x27,0x85, + 0x28,0xd1,0xc8,0x05,0x19,0xc8,0x0f,0x7c,0x90,0x10,0xfd,0xc8,0x4c,0x76,0xc0,0x12,0xe7,0x4e,0x81,0x0c, + 0x02,0x2f,0x2a,0x91,0x17,0x70,0xe1,0x1d,0x85,0x85,0x9c,0x3d,0x2c,0x07,0x5e,0x1a,0x8a,0x30,0x62,0x85, + 0x86,0xfe,0x82,0xeb,0xd2,0xc6,0x24,0xc5,0x50,0xbb,0xef,0x09,0xe5,0x37,0xa2,0xfe,0x11,0x85,0x17,0x8d, + 0xf1,0x37,0x39,0x36,0x5f,0x80,0x64,0x3a,0x4b,0x27,0x1f,0xed,0x49,0xcd,0x85,0x62,0x2e,0xd4,0x2d,0xb3, + 0xa1,0xf5,0x33,0xb4,0x7d,0x29,0xd4,0xf1,0xcc,0xed,0xf6,0x56,0x90,0x2c,0x5b,0xd0,0x99,0x6f,0x11,0x32, + 0x4d,0x2d,0xe6,0xb8,0x41,0xe0,0xe0,0x42,0x28,0x58,0x38,0x6e,0xbb,0x62,0x4d,0x08,0x4b,0x9b,0x26,0x9c, + 0x3b,0x82,0x69,0xc5,0xd4,0xad,0x89,0xbf,0x49,0x34,0xfe,0x2a,0x1a,0x7d,0x4f,0x28,0x7f,0xae,0x68,0xeb, + 0x80,0x06,0x5b,0xaf,0xf1,0x3a,0x91,0xd7,0x43,0x4b,0xac,0xd6,0x9b,0x0d,0xa4,0xe3,0x1a,0xeb,0x99,0x0e, + 0x99,0x0e,0xa7,0x73,0x67,0x26,0xed,0x2d,0x57,0x9b,0x0e,0xc8,0xec,0x80,0x75,0x9f,0xd3,0x76,0x4f,0xa3, + 0x96,0x64,0x7c,0x42,0x18,0x6d,0x7e,0x92,0x3c,0x0b,0xe7,0xd4,0x19,0x3e,0xef,0x35,0xa9,0x06,0xc4,0xc4, + 0x63,0x25,0xd8,0x78,0x88,0xd3,0xca,0xbc,0x2a,0xe4,0x70,0x8d,0x2e,0x47,0x5e,0x79,0x7a,0x57,0xcc,0xa3, + 0x3e,0xc6,0xb9,0x44,0x53,0xce,0x56,0x26,0x84,0xf4,0xd2,0xa1,0x50,0xb7,0x9e,0x4d,0xc1,0x8a,0x0e,0x48, + 0xb5,0x72,0x96,0x41,0x5b,0x6a,0xbd,0x99,0x7f,0xac,0xaa,0x99,0x67,0x42,0x9f,0xc2,0xd5,0x92,0xf5,0x15, + 0x21,0x95,0x02,0xe0,0x43,0xab,0x2e,0x24,0x0f,0xe0,0x8b,0x33,0x13,0x29,0x43,0xfb,0x73,0x06,0x73,0x97, + 0x99,0x1c,0x93,0xd2,0xc9,0x29,0xa8,0x25,0x16,0x4d,0xe3,0x97,0x5e,0xc4,0xa5,0xe1,0x75,0xa1,0xfc,0x69, + 0x4f,0x11,0x83,0x88,0x36,0x9b,0x06,0x81,0x25,0x95,0x63,0x06,0xb4,0xc4,0xbc,0x2e,0x99,0x1e,0xe0,0x86, + 0x96,0xd1,0x66,0xd7,0xc7,0xe9,0x99,0x51,0x44,0x66,0x56,0x07,0xd9,0xb1,0x41,0x78,0x51,0xf9,0xb2,0x51, + 0x4d,0xbb,0xbe,0xa8,0x44,0xac,0x29,0x5f,0x41,0xfc,0x9f,0x27,0xcf,0xe1,0x9e,0x34,0xb2,0x29,0x90,0xf2, + 0xf5,0x09,0x84,0x3d,0x88,0xd6,0xb0,0x90,0xd9,0x47,0xf8,0xbe,0xea,0x47,0x02,0xae,0x9c,0x88,0x10,0xe2, + 0x86,0x19,0xca,0xd0,0xec,0x85,0x07,0xf7,0x12,0xe2,0x74,0x62,0xf5,0x21,0xe2,0x5f,0x11,0x5c,0xae,0xb2, + 0x7d,0x8b,0xff,0xf7,0x89,0x9c,0x07,0x29,0x30,0x08,0x2f,0xc6,0x01,0xbd,0x5c,0x30,0x53,0x51,0xaa,0x5e, + 0xbf,0x8e,0x54,0xdd,0x3c,0x26,0x54,0x15,0x57,0xca,0x1a,0x36,0xc5,0x33,0x65,0x49,0xcc,0x78,0xca,0x88, + 0x69,0xe2,0x30,0x15,0x31,0xeb,0xab,0x48,0x82,0xf9,0x5c,0xaa,0x85,0x3a,0x57,0xd7,0xea,0x4c,0x5d,0x79, + 0xb6,0xd5,0x88,0x71,0xaf,0xc9,0x1d,0x22,0x9b,0x8c,0xba,0xb2,0xcd,0xb7,0xa4,0x6c,0xf6,0x96,0xc2,0x90, + 0x21,0x9c,0x24,0xd8,0x06,0x29,0x11,0xf9,0xd2,0xa5,0x88,0x16,0x78,0x2e,0x19,0xaf,0x2a,0x4f,0xe6,0x9c, + 0xb7,0x88,0xa8,0x86,0xbe,0x06,0xa5,0x91,0x1a,0x7b,0x07,0xab,0x8a,0x25,0x34,0x3c,0x6a,0x15,0xc8,0x59, + 0xc3,0x8e,0xb8,0x64,0xe0,0xd5,0x88,0x83,0xf5,0x4b,0xf2,0x2e,0xe3,0x2d,0x3e,0x1d,0x75,0x3a,0x59,0xf7, + 0x1f,0xbe,0x88,0xf0,0x0f,0xa8,0x4e,0x21,0xfa,0x20,0xb8,0xf1,0x29,0x59,0x42,0xf1,0x22,0x29,0x8b,0xe5, + 0x1e,0x00,0xeb,0xfd,0x84,0x9b,0x9d,0x60,0xca,0x54,0x8d,0x89,0xbe,0x09,0xe7,0x49,0x1d,0x8d,0x8f,0x3f, + 0xd2,0x30,0x4f,0x3a,0x46,0xb6,0x73,0x17,0x8e,0x8a,0x88,0x08,0x17,0x40,0x06,0x73,0x89,0x5e,0x22,0x90, + 0x8c,0xc8,0x9d,0x60,0x0a,0x5d,0xfa,0xa6,0xd0,0x19,0x4d,0x58,0x79,0x5c,0x9f,0x44,0x7d,0xfe,0xab,0x44, + 0xdc,0xd0,0x39,0x36,0x3b,0x26,0x3a,0xca,0x06,0x03,0x39,0xe9,0x58,0xe5,0x4f,0xa2,0xb1,0x71,0xd1,0xfa, + 0xe6,0x80,0x46,0xf8,0x6d,0x48,0x35,0xe6,0xe1,0x44,0xc1,0xec,0x84,0xfd,0xe9,0x89,0x51,0x24,0x32,0x8d, + 0x46,0x46,0x33,0xf3,0x2d,0xe1,0x4b,0x60,0x00,0xa0,0xa6,0x8f,0xe1,0x8a,0x95,0x6b,0x83,0x09,0xe5,0x89, + 0x22,0x1b,0xf7,0x53,0xe9,0xf0,0xfd,0x84,0x17,0x3c,0x8d,0xe0,0x8c,0x16,0x30,0x8a,0x61,0xf3,0x38,0x46, + 0x15,0xe3,0x4e,0x05,0x08,0x44,0x25,0xd6,0x0c,0xf2,0x55,0xf8,0x11,0xf8,0x30,0xfe,0x96,0xfe,0x4a,0x9b, + 0xdd,0x0f,0xa4,0xb9,0x98,0x90,0x71,0x69,0xe5,0x64,0xbc,0xf0,0x13,0x68,0x23,0x99,0xe4,0x98,0x80,0x4f, + 0x15,0x60,0x60,0xb8,0x62,0xb6,0x95,0xd8,0xef,0x4b,0x80,0x79,0x30,0x48,0x65,0x60,0xf4,0xf7,0x34,0x30, + 0x9d,0x45,0xa3,0x0e,0xef,0x6d,0x68,0x5d,0xb4,0xec,0x27,0xc6,0x32,0x3e,0xab,0xd8,0x64,0xe3,0x2f,0xea, + 0x55,0xb6,0xb9,0x76,0x42,0x22,0x16,0x5e,0x25,0xcb,0x8f,0xbc,0x84,0x03,0x53,0x4f,0xd6,0xf1,0x89,0xca, + 0x3c,0x73,0x75,0xb6,0x0e,0xd9,0x12,0x8f,0x96,0xd1,0x38,0x9c,0x25,0xf9,0xf0,0xce,0x65,0x41,0x07,0x2b, + 0xa2,0x55,0xc9,0xd3,0xb0,0xa8,0x59,0x16,0x74,0x4e,0x64,0x53,0x7a,0x8e,0x80,0xae,0xf5,0x12,0x81,0x10, + 0x08,0xdf,0xac,0x20,0x19,0xcb,0xeb,0xb7,0x59,0x9d,0x55,0x44,0xf6,0x50,0x36,0xa5,0x8e,0x35,0x36,0xa1, + 0x2c,0xf6,0xe3,0x7d,0x33,0x4f,0x1b,0x04,0xb6,0xd0,0x1f,0xe3,0x3b,0xec,0xbf,0x36,0xfe,0xc8,0x99,0x60, + 0x4d,0x5e,0x84,0xb9,0x27,0xa1,0xb3,0xa8,0xa8,0x0e,0x40,0x5f,0x8e,0x89,0x05,0x9a,0xd2,0xb7,0x39,0x8e, + 0x9b,0x28,0xd6,0xcd,0x94,0xbd,0xb5,0x45,0xf1,0x2a,0xa1,0xe2,0xa5,0x14,0xf7,0x44,0xa1,0x2b,0x8c,0xd2, + 0x73,0x54,0xa9,0xc2,0xdc,0xb2,0x34,0x39,0xfc,0xc2,0x4a,0xe2,0x90,0xca,0x2a,0xcb,0xcf,0x8b,0xd7,0xc6, + 0x9d,0x99,0x26,0x85,0x60,0x80,0x37,0xbf,0x41,0x77,0x2c,0xb5,0x6c,0xe8,0x0b,0x83,0xd0,0x3c,0x5b,0x6c, + 0x0e,0x48,0xe5,0x72,0xec,0xe6,0x7a,0x30,0xe1,0x0d,0xa6,0x39,0x36,0x57,0x80,0x36,0x1b,0xd1,0x3f,0x73, + 0x0d,0x67,0xc4,0x81,0xcd,0x87,0x6c,0xa9,0x50,0x08,0x66,0xa3,0x7d,0xce,0x3d,0x24,0x4c,0xce,0xc4,0xf8, + 0x2a,0x8a,0x81,0x72,0x36,0x1e,0x26,0xf3,0xbc,0x33,0xfc,0x88,0x73,0x56,0x4c,0xc0,0x8a,0xd9,0x7a,0xb5, + 0xcc,0x2a,0x73,0x02,0xa1,0x9c,0x4e,0x61,0x12,0x84,0x4d,0x4f,0xf9,0xdd,0x58,0x4a,0xdc,0xb4,0xdf,0x13, + 0xe3,0x60,0xd2,0xb5,0xb6,0x46,0x28,0x36,0x47,0x88,0xe0,0x4c,0x13,0x66,0xd3,0x38,0xbe,0x81,0x74,0xac, + 0xb3,0x94,0x58,0x7e,0x9d,0x62,0x0f,0xc8,0xd2,0xe8,0xeb,0xcb,0x93,0x5d,0xb1,0x85,0x84,0x30,0x80,0x7d, + 0x24,0x11,0x42,0xa6,0x81,0x38,0xbb,0xc7,0x1a,0x77,0x4b,0x74,0xa5,0x49,0x58,0x42,0x69,0x45,0xd2,0x95, + 0x97,0x8e,0x8b,0x98,0xb5,0xeb,0x5b,0x76,0x70,0xe2,0x84,0x60,0xfb,0x22,0xca,0x93,0xcc,0x57,0x9e,0x84, + 0x8d,0x13,0xe2,0x82,0xec,0xfc,0x26,0x39,0xa0,0x35,0x69,0xa7,0x3d,0x38,0xc0,0x02,0xe9,0x88,0x5c,0x48, + 0x70,0x6e,0x71,0x6e,0xb7,0x15,0x46,0x38,0xaf,0x30,0x46,0xcf,0xe9,0x7e,0xc3,0xde,0xed,0xf0,0x0e,0xee, + 0x4e,0x1a,0x1d,0x58,0xa1,0xb7,0x80,0xc9,0x73,0x28,0x9e,0xdb,0x65,0xb4,0xd9,0x15,0x47,0x9c,0x71,0x1b, + 0xe5,0xb8,0xe1,0xd4,0x93,0x04,0xa1,0x50,0xb6,0x8d,0x07,0x9e,0x66,0x36,0x14,0xc9,0x29,0xfc,0xfa,0x5b, + 0x46,0x96,0x6f,0x5a,0xa6,0x10,0xec,0x89,0x88,0x33,0xbd,0x43,0x34,0xb0,0x13,0xa6,0xf7,0xd5,0x6f,0x59, + 0x8b,0x3e,0xe9,0xae,0xce,0xd8,0x77,0x71,0xff,0x66,0xff,0x30,0xde,0x56,0xcb,0x8c,0x7d,0xe7,0xfc,0x4e, + 0x69,0x68,0xe5,0xd4,0x6e,0x68,0xe3,0x1d,0x48,0xc4,0xaf,0x13,0xe0,0x76,0x13,0xef,0xa0,0x90,0x50,0xd5, + 0xec,0x9d,0xda,0x68,0xb9,0xb8,0x27,0x41,0x7c,0xd2,0xb1,0x06,0x60,0x8d,0x28,0xc3,0x29,0x74,0x2d,0x0c, + 0x9e,0xa7,0x8c,0xe7,0xba,0x70,0x69,0x22,0xea,0xc2,0xbe,0x9d,0x4d,0x1a,0x35,0x77,0xf0,0x06,0x42,0xb1, + 0x2d,0xc3,0xa2,0x51,0x0d,0x59,0x31,0x1f,0xf6,0xcf,0x41,0x91,0x95,0xec,0x24,0xb8,0xf1,0xc4,0x3d,0xcf, + 0xb7,0xd4,0x0a,0x6c,0x72,0xbf,0x9b,0xb3,0x6b,0x16,0xa3,0x18,0x78,0xa6,0xe1,0x77,0xbd,0xce,0x5d,0x0b, + 0xcf,0x35,0xb1,0x3c,0xbc,0x33,0xa5,0x21,0x56,0x25,0x7c,0xb3,0x32,0xab,0xe2,0x5f,0xf1,0x1d,0x94,0x9e, + 0xb9,0x7f,0xe6,0x7b,0x60,0xdf,0x88,0x3c,0xf9,0x31,0x54,0x02,0xf1,0x33,0xde,0xf3,0x2e,0x41,0x15,0xfe, + 0x1b,0x1d,0xb5,0x5c,0x0a,0x36,0x64,0xfc,0x44,0xa4,0x85,0x7e,0x42,0x14,0x63,0xfc,0x9e,0xc4,0xfa,0xc1, + 0xb7,0xdf,0x6f,0x2f,0x7f,0x36,0x6e,0xc6,0xd9,0x20,0x40,0x78,0x9a,0x38,0x8b,0xc1,0x1f,0x7a,0xc6,0xdd, + 0xaf,0x7c,0x00,0xdb,0x02,0x94,0xbe,0x63,0x90,0x26,0x0b,0x31,0xfe,0x68,0x77,0xaa,0xd2,0x69,0xe7,0xf2, + 0x07,0x25,0xef,0x50,0x22,0x77,0x13,0xd4,0x89,0x8d,0x07,0x22,0x8b,0x2f,0x5a,0x83,0x40,0x00,0xff,0x07, + 0x09,0xf5,0x22,0x52,0xf4,0x5b,0x78,0xbb,0x92,0xf5,0x31,0xdd,0xd6,0x04,0x5d,0x06,0xc1,0xa8,0x25,0x89, + 0xcb,0xb4,0xef,0x7e,0xd8,0xe8,0x18,0xb9,0xa8,0xae,0xf1,0xab,0xe3,0x0d,0xdc,0x0b,0xd0,0x6d,0x9b,0x76, + 0x7f,0xd8,0x73,0x6e,0x3d,0xa8,0x2f,0xcf,0x83,0x38,0x58,0xa4,0xcd,0x05,0xdb,0x14,0x8d,0xe5,0x71,0x4b, + 0x31,0xf4,0xd6,0xfb,0xb4,0xa7,0x1d,0x1b,0x19,0xef,0xf7,0x55,0x56,0x5d,0xbf,0xcb,0xa0,0x6d,0x2e,0xe5, + 0xae,0x98,0xdb,0xe2,0x5d,0x4e,0xf3,0xcb,0xa0,0x65,0xa1,0xf7,0x53,0x67,0x7f,0xb0,0x41,0x65,0x95,0xcd, + 0x3a,0x0e,0x40,0xc6,0xa9,0x3a,0xf7,0x3d,0xb4,0x0d,0x68,0x02,0x2b,0xc0,0xf7,0xba,0x84,0x59,0x3c,0x7d, + 0x5b,0x8f,0xba,0x5a,0x93,0x92,0x8d,0x9d,0x56,0xfc,0x8b,0xc3,0x1e,0xbf,0x38,0x58,0x71,0xa8,0xe2,0x51, + 0xd3,0xec,0xb1,0x6b,0xff,0x79,0xf1,0xac,0xac,0x7a,0x6b,0xc1,0x5f,0x8b,0x26,0x72,0xc2,0xc1,0x7b,0x7b, + 0x9c,0xc4,0x58,0xd8,0xd4,0x4d,0x30,0x21,0x0f,0xb9,0x07,0xac,0x8f,0x44,0x46,0xed,0xe2,0x5f,0x81,0x82, + 0xc3,0xf1,0x4e,0xbf,0x2c,0x48,0x92,0x3d,0xa8,0x8f,0x7b,0xdf,0xf5,0x9b,0x55,0x7a,0xce,0x36,0xac,0xd1, + 0x96,0xa7,0x1c,0x25,0x85,0xa8,0x00,0x7e,0xee,0x4a,0x56,0xa0,0x8c,0x13,0xe9,0x08,0x9f,0xae,0x40,0x9b, + 0xad,0x40,0x0e,0x15,0x5c,0x0d,0xc3,0x4a,0xcf,0xb9,0x08,0x3c,0x13,0xc7,0x8a,0x57,0xac,0x8a,0x83,0x2a, + 0x96,0x9d,0xc6,0x3e,0x53,0xc6,0x8a,0x0b,0x61,0x3c,0x47,0x4b,0x9f,0xb3,0xb7,0x22,0xfd,0x10,0x1f,0xc8, + 0x03,0x06,0x2d,0x81,0xd1,0x3c,0x84,0x0c,0xe9,0x0d,0xc2,0x58,0x5d,0x94,0x73,0xe2,0xd1,0xb9,0x86,0x96, + 0xa4,0x09,0xe3,0xf4,0x13,0x40,0xf7,0xb6,0x53,0xb4,0xdc,0xcd,0x37,0xce,0xcf,0x44,0x34,0x61,0x95,0xc7, + 0xe2,0x01,0x87,0xcd,0x94,0x13,0xd9,0x90,0x3f,0x48,0xaa,0xd1,0x60,0x90,0xd3,0x76,0x85,0x81,0x62,0x7e, + 0xa2,0xc9,0xe8,0x30,0xc5,0x01,0xef,0xdc,0x28,0x3d,0xb7,0x92,0xf7,0x1a,0x26,0x75,0xe4,0x3a,0xcf,0x9b, + 0x6b,0xbd,0x6e,0xba,0x49,0xed,0x79,0x37,0x90,0x2c,0x7c,0x70,0x82,0xf8,0x19,0x97,0x70,0xc9,0x6b,0xe4, + 0xa1,0x4e,0xbe,0xcb,0xb6,0x6b,0x75,0x41,0x03,0xc0,0x5f,0x51,0x89,0xad,0x46,0x70,0x39,0xb1,0x29,0x31, + 0x27,0x52,0x83,0x48,0x5f,0xcd,0x42,0x15,0x22,0x5b,0xa9,0x92,0x5a,0xf8,0xf8,0x09,0x7e,0xaa,0x31,0xcd, + 0x1a,0x4d,0xf1,0x07,0x88,0xbc,0x12,0xe3,0x65,0xfb,0x07,0x78,0x5a,0xad,0xe2,0x0c,0x14,0x2e,0x24,0x50, + 0x39,0x6c,0x22,0x80,0xfd,0xe9,0xc7,0xed,0x2b,0x91,0x37,0x4f,0xf7,0xf6,0x56,0x06,0xa8,0x89,0x33,0x91, + 0xaf,0xe1,0x90,0xd6,0xf7,0x6d,0x5e,0x10,0x0d,0xce,0xdf,0xcc,0xed,0x37,0xd8,0xc2,0xf3,0x56,0xc4,0x99, + 0x59,0x9f,0xfc,0x5b,0x6c,0xef,0xe6,0xbe,0xc5,0x1d,0xb5,0x35,0xc7,0x38,0x02,0x53,0xad,0x34,0xb9,0x19, + 0x95,0xe3,0x1f,0xe0,0x0c,0x25,0xc9,0x01,0xe4,0xcc,0xb3,0x90,0x2d,0xfe,0x57,0x36,0x2a,0x07,0x17,0x40, + 0x74,0x3f,0x1d,0xd4,0xef,0xd6,0x16,0x57,0x9d,0x16,0x57,0xdc,0x62,0x77,0x12,0x74,0xcb,0xcc,0x71,0xdb, + 0xf9,0xae,0xa3,0x09,0xbb,0x94,0xd1,0x57,0x3c,0xed,0xc1,0xaa,0x90,0x89,0xc9,0xe8,0x1f,0x84,0xad,0x6d, + 0x73,0xdc,0xef,0xb2,0x6d,0xc8,0xe8,0x8b,0x8b,0xd3,0xb2,0xb9,0x2d,0x65,0x79,0xb7,0xcd,0x38,0x43,0x31, + 0x35,0x8e,0x86,0x3a,0x64,0x37,0x2b,0xbc,0x2b,0xf7,0x96,0x5c,0x43,0x35,0x74,0x4c,0xc0,0x4f,0x2d,0x0d, + 0xab,0xf4,0xea,0x15,0x13,0x4e,0x39,0x13,0x50,0x83,0x60,0x18,0x0c,0x7c,0x63,0x8f,0xdc,0xaf,0x06,0x72, + 0x00,0x89,0x88,0x3a,0x0c,0xa2,0xe8,0x84,0x2a,0x80,0x53,0xf6,0x8c,0xf8,0xa2,0xc6,0xe3,0x8b,0x1c,0x58, + 0x06,0x94,0x8f,0x5a,0x9d,0xee,0xca,0xf3,0x87,0x70,0x46,0x05,0x36,0x5a,0x41,0x26,0x20,0xc3,0x3f,0xda, + 0x1c,0xb2,0x64,0x7b,0xc7,0x32,0x2c,0x24,0x7a,0x86,0x2e,0xaf,0x6d,0x1e,0x2b,0xd8,0x3c,0x56,0x72,0x8b, + 0x01,0xa3,0x7f,0xd7,0x36,0xdf,0x4d,0x22,0x23,0xc2,0x69,0xef,0x6c,0x22,0x3d,0xff,0x86,0x2c,0xf4,0xa8, + 0x9d,0x6d,0x6b,0x6c,0x9e,0xef,0xb0,0x61,0x6c,0x25,0xfe,0x50,0x6d,0x82,0x33,0x2f,0x2e,0xb2,0x2a,0xe7, + 0x20,0xd8,0x34,0x37,0x59,0x28,0x48,0xd0,0x22,0xbf,0xcc,0x98,0xff,0x4b,0x82,0x66,0x04,0x98,0x27,0xa2, + 0xc6,0x30,0x9a,0x49,0xe2,0x7f,0xc2,0xe2,0xf0,0x79,0x52,0x75,0x92,0x98,0xf7,0xd2,0xd2,0x1f,0xc4,0x38, + 0x68,0x15,0x48,0x58,0xb9,0x3c,0xd7,0x3e,0x10,0x4c,0x19,0xce,0xa3,0x34,0x99,0x83,0x9a,0x9f,0x08,0xe3, + 0x92,0x12,0xc8,0x43,0x36,0x0a,0x1e,0x6d,0x14,0xbe,0x28,0xd6,0xeb,0x57,0xb0,0xd3,0xd0,0xf2,0x6e,0x08, + 0x21,0xe4,0x49,0x17,0x33,0x22,0x75,0x9d,0xef,0x55,0x3c,0x89,0xb0,0xeb,0x4a,0x36,0xb0,0xcf,0x81,0xbc, + 0xc7,0x08,0x38,0x87,0x68,0xb1,0x36,0x0c,0xf8,0xab,0x77,0x61,0x45,0xc0,0x8b,0x4c,0x62,0x98,0xf1,0x83, + 0xe0,0x97,0x9d,0x42,0xc8,0xf4,0x56,0xe1,0x07,0x5f,0xef,0x5f,0xb0,0xdf,0x4f,0x9a,0x73,0xd4,0xea,0xad, + 0x0f,0x59,0x00,0x92,0x04,0x44,0x55,0x97,0x57,0x33,0xda,0x11,0x35,0xed,0x8e,0xac,0x08,0x24,0x14,0x58, + 0xf0,0xf4,0xe5,0xa3,0xa7,0x4f,0xb4,0x09,0xb4,0xf0,0xf2,0xe3,0xa0,0xa9,0x68,0x2c,0x31,0x74,0xf7,0xad, + 0x68,0xe5,0xec,0xca,0x66,0xcd,0x9c,0x9a,0x5c,0xc7,0x05,0x68,0x17,0xe1,0x5e,0xe0,0xb6,0xd0,0x94,0xca, + 0xa1,0xde,0x62,0xac,0x9f,0x63,0xa9,0xd7,0x33,0x94,0xfa,0x5c,0xb7,0xed,0xa4,0x34,0xb8,0x54,0xa3,0xd5, + 0x8a,0x64,0x35,0xd6,0x2a,0x01,0x74,0x3c,0x1b,0xd6,0xf4,0x8d,0x5d,0xcc,0x62,0xa8,0xc8,0x0b,0x38,0xad, + 0x3d,0x83,0x2b,0xc4,0xd1,0xd3,0x9f,0x8f,0x1e,0xbe,0x7d,0xfa,0xb0,0x35,0x6a,0x4a,0x5f,0xba,0x33,0x54, + 0xcf,0x0e,0xc7,0xb9,0xcc,0xb3,0xe5,0x85,0x21,0x99,0x7c,0x13,0xbf,0x86,0x08,0xed,0x72,0xf9,0x9c,0x88, + 0x87,0x69,0x4e,0xd8,0x06,0x06,0x33,0xe9,0x79,0x2a,0x48,0x51,0x99,0xae,0x74,0x2e,0x5e,0x11,0xca,0x01, + 0x06,0x20,0xa3,0xac,0xe7,0x5e,0x16,0x9b,0xad,0x4c,0xc3,0xc9,0xee,0xc1,0xa6,0x67,0x19,0x3c,0x48,0xf8, + 0xbe,0xb3,0x1f,0x0d,0xc9,0xc6,0xf1,0x74,0x52,0xbd,0x57,0x64,0x53,0x66,0x90,0x78,0x7b,0xcc,0x01,0x76, + 0x5b,0xa9,0xf9,0x02,0x96,0x51,0x40,0xf4,0x0a,0x46,0xa8,0x5b,0x28,0xd5,0x85,0x22,0xab,0x4d,0xe9,0xa5, + 0xeb,0xcd,0x45,0x65,0xf0,0x8e,0x20,0x92,0x72,0xc4,0xa2,0x94,0x2e,0x59,0x19,0x8d,0x22,0x42,0xa2,0x7d, + 0xac,0x90,0x70,0x6c,0x11,0x1f,0x7e,0xec,0x62,0x4b,0x60,0xfb,0x22,0xd3,0x84,0x18,0xc3,0x1e,0x1b,0xc8, + 0x0b,0xb1,0x64,0xad,0xe3,0x39,0x02,0x86,0x5f,0xbe,0x50,0x9a,0x8c,0x73,0xf8,0x33,0x69,0x31,0x45,0x3c, + 0x2b,0xc2,0x03,0x35,0xbc,0xd9,0x20,0xfb,0x1b,0x3f,0x83,0x60,0xe9,0x15,0x6b,0x8c,0x88,0xd0,0x1f,0x69, + 0xac,0xc3,0x06,0xc7,0x10,0xfc,0x9c,0x72,0x2c,0xd7,0x1c,0x63,0xe6,0x4a,0x32,0x22,0x87,0x59,0xee,0x18, + 0xd6,0xc9,0x33,0xa0,0x80,0x57,0x19,0xcb,0x05,0x15,0xfc,0xad,0x72,0xd8,0x55,0x66,0x97,0x5c,0xb0,0xe7, + 0x62,0x00,0x31,0xe6,0x52,0x35,0x4e,0x7b,0x57,0x30,0xa9,0xfd,0x65,0xfd,0x36,0xdb,0xf2,0x7c,0x0b,0xd9, + 0xdc,0xca,0xf3,0xc3,0xc8,0xb4,0xb5,0xf7,0x39,0xe1,0x76,0xb9,0x79,0x81,0xda,0x3f,0x4f,0xf2,0xc1,0xe1, + 0xc6,0x3b,0x14,0x8d,0xb8,0x9d,0xa8,0x1b,0xd8,0x7b,0xe3,0xcf,0x14,0x7f,0x96,0xf8,0x03,0x8b,0xf0,0x4b, + 0xfa,0xbf,0xa0,0xff,0xe7,0xda,0xd7,0xb2,0x47,0x6c,0x42,0xe0,0x23,0xf6,0xb6,0x99,0x1f,0x53,0x3d,0x87, + 0xdc,0xea,0x8b,0xaf,0xc5,0x70,0xfb,0xeb,0xfb,0x34,0x70,0x30,0x69,0x68,0xc6,0xed,0xcc,0x59,0xf4,0xc5, + 0x97,0x9d,0x02,0xb3,0x56,0x81,0x69,0xf4,0xf5,0x3f,0x3b,0x05,0xa6,0xad,0x02,0xcb,0xe8,0xcb,0xff,0xee, + 0x14,0x58,0xb6,0x0a,0x1c,0xde,0xff,0x12,0x3c,0xe2,0x7a,0x4d,0x0f,0xbc,0xa5,0xfd,0x2e,0x0e,0x0e,0xa3, + 0xfe,0x8c,0x7d,0x64,0x5c,0xac,0xd7,0x97,0xeb,0xf5,0x22,0xba,0xa9,0xaf,0x72,0xed,0x0e,0x30,0x49,0xa9, + 0xd6,0x2f,0xbe,0x8c,0x67,0x08,0x1b,0xc8,0x16,0xb1,0x23,0x49,0xfa,0x3a,0x5e,0x75,0x92,0xbe,0xfe,0x67, + 0x3c,0xed,0x24,0x7d,0x79,0x10,0x2f,0x06,0x83,0x56,0xca,0x61,0xbc,0xd8,0xdf,0x6f,0x7d,0x76,0x18,0x5f, + 0xb6,0xcb,0x7c,0xfd,0x45,0x7c,0xd9,0x2e,0x73,0x78,0xff,0x8b,0xf8,0xa2,0x5d,0xe8,0xf0,0xfe,0x57,0xf1, + 0xc5,0xfe,0x3e,0xe8,0x32,0x99,0x10,0xb7,0xf3,0xae,0x13,0x1a,0x8e,0x3a,0xd3,0x0c,0xd7,0xe8,0x9a,0x03, + 0x3f,0x8a,0x67,0x4b,0x78,0x96,0xd8,0x2b,0x18,0xae,0x69,0x4b,0x5c,0xef,0xef,0x47,0xb8,0xd2,0xeb,0x48, + 0x47,0xd7,0x3d,0x93,0x5b,0xf9,0x60,0xc5,0x2f,0xbe,0x20,0xd6,0x42,0xa4,0x1c,0x87,0x0c,0x4b,0xcc,0xa4, + 0x9b,0x8b,0x9b,0x1d,0xa0,0xc5,0x8d,0xe8,0x52,0xbc,0xf2,0xbd,0x05,0x63,0x78,0xc0,0x9f,0x83,0xc7,0xc1, + 0xfd,0x1c,0x0e,0xbe,0x52,0x1f,0xbe,0x20,0xa1,0x9d,0x24,0x30,0x25,0x34,0xd2,0xde,0x39,0x9d,0xb0,0xf6, + 0x0e,0x92,0x10,0x3a,0xaa,0x64,0xfe,0xe0,0x60,0x7c,0xf7,0x94,0x5e,0xef,0x0e,0x26,0x83,0xbb,0x41,0x14, + 0xde,0x85,0x60,0x3e,0x0a,0x62,0x93,0x68,0x1b,0x9f,0x47,0x2e,0x5f,0x05,0x36,0x63,0x4e,0xc0,0xd0,0x43, + 0x53,0xfd,0xcc,0x5b,0xad,0xed,0xa7,0x1c,0x1c,0x7f,0x58,0x21,0x44,0x1a,0xdb,0x35,0x55,0x27,0x08,0xcd, + 0xeb,0x4b,0xd5,0xfe,0xdd,0x15,0x90,0x20,0x80,0xfd,0xb2,0x6d,0x44,0xe2,0x22,0xf9,0x6c,0xb6,0x4d,0xc4, + 0xbd,0x02,0x9b,0x28,0x3e,0xf6,0x4c,0x82,0x7e,0xb1,0x27,0x7b,0x98,0x59,0xed,0xbb,0x89,0xf1,0xe1,0xf6, + 0xfe,0x0d,0x5f,0xa3,0xd1,0x28,0x1d,0x2c,0x8e,0x2f,0x41,0xe3,0xdb,0x43,0x13,0xdf,0x21,0xe8,0x47,0xbf, + 0xb2,0xae,0x19,0xe7,0xdf,0xad,0x2c,0x6b,0x9c,0xa9,0x1f,0xd7,0xf0,0x32,0x5d,0x4a,0x28,0x21,0xfd,0x8e, + 0x83,0xec,0x96,0x0a,0x3d,0x2f,0xba,0xc6,0x51,0xb0,0x56,0xeb,0x3d,0x02,0x4e,0x67,0xed,0xb5,0x71,0x35, + 0x75,0x01,0x83,0x2a,0xeb,0xdf,0xda,0x24,0xc1,0x2e,0xbc,0x6f,0x08,0xc1,0xc3,0x3a,0xd2,0x2f,0xc2,0x9e, + 0xb0,0x94,0xff,0xff,0x74,0xbe,0x76,0x84,0xf5,0x8b,0x18,0xdf,0x58,0x2a,0xb5,0xc7,0xa5,0x08,0x0f,0xc3, + 0xc9,0x5b,0x8e,0x7a,0x18,0x8a,0xe4,0xe7,0x17,0xcd,0x38,0xa4,0x7c,0x4d,0x18,0x2f,0xb2,0x62,0x15,0x28, + 0x5b,0x01,0xe7,0x47,0x31,0x31,0x05,0xf9,0x74,0x3a,0x67,0x21,0x6d,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96, + 0x01,0x5f,0xb2,0x20,0x6a,0xe8,0xb1,0x6b,0x53,0x12,0xd8,0x08,0x5d,0x1e,0xf9,0xc0,0x97,0x45,0xf0,0x13, + 0x58,0xed,0x1d,0xa3,0x58,0xe6,0x0a,0x64,0x36,0x4b,0x9b,0xdf,0x99,0xc8,0x80,0x9b,0x11,0xee,0x4a,0x5d, + 0x42,0x2a,0x56,0x7b,0x1c,0x8a,0xbe,0x43,0x1d,0xfb,0x88,0xb8,0x80,0x2d,0xfd,0x5d,0x3e,0x9e,0xd8,0x6b, + 0xbc,0x6b,0xeb,0x6b,0x57,0xcb,0x5d,0x3a,0xc9,0x84,0xf2,0x8f,0xe9,0x9c,0x38,0x89,0x8f,0x27,0xaa,0x3e, + 0x89,0xeb,0x5e,0x10,0x28,0x2c,0x08,0x08,0x3d,0x54,0xe1,0x3d,0x60,0x97,0xa8,0xf5,0x5a,0x5e,0x2e,0xf7, + 0x39,0xbc,0x0a,0x92,0x58,0xda,0xc4,0x51,0x70,0x4d,0x20,0x4b,0x1c,0x6b,0xa2,0x9c,0x10,0x57,0x16,0x4b, + 0xb6,0x34,0x36,0x94,0x9a,0x7c,0x90,0x9b,0x0f,0x3a,0xc1,0x66,0x73,0xff,0x8c,0xac,0xda,0xbd,0x71,0x5f, + 0xb3,0xfc,0xc5,0x03,0x51,0x3f,0x98,0x8d,0x07,0xab,0xda,0xf4,0x3e,0xef,0x9a,0xde,0x83,0x36,0x85,0x67, + 0x03,0xdf,0x6a,0x82,0x50,0x9d,0x37,0xb9,0x09,0x7f,0x55,0x22,0xfc,0x95,0xf8,0x49,0x18,0x35,0xbb,0x75, + 0x46,0x6c,0x35,0xe9,0x9b,0xe2,0xe7,0x9d,0x59,0x13,0x53,0xfb,0x3c,0x09,0xee,0xdc,0xb9,0x0c,0x46,0x72, + 0x69,0x12,0xdf,0x41,0x1d,0x84,0x5a,0x0a,0x48,0x19,0x3b,0xd4,0xf2,0xce,0x5d,0x19,0xf9,0xdd,0x31,0x52, + 0x0c,0x42,0xc5,0x73,0x14,0x30,0xbc,0xb1,0xc7,0x82,0x7c,0x7a,0x4a,0xfc,0xe5,0x20,0x07,0x3e,0x8c,0xb4, + 0x39,0x4e,0xd9,0x84,0xb0,0xf0,0x1c,0x69,0xe3,0x1e,0x03,0x3e,0x84,0x4d,0xc1,0xd9,0x45,0xc4,0x57,0x7f, + 0x5a,0xe2,0xc6,0x3f,0xea,0x62,0x7c,0x97,0xf0,0x67,0x43,0x48,0xf3,0xae,0x32,0xa6,0x37,0x2e,0x3a,0xc9, + 0x4e,0x88,0x06,0x77,0x6e,0x82,0x41,0x39,0x08,0x36,0x81,0xb7,0x00,0x65,0xe3,0x8b,0x19,0x7d,0xe4,0x46, + 0x53,0xf8,0x5d,0xe5,0x22,0x10,0x7a,0xf7,0x49,0x1d,0x07,0xd1,0x83,0x03,0xc8,0x16,0x71,0x41,0xd6,0x73, + 0x93,0x7a,0x42,0xa9,0xdf,0x55,0x36,0x4e,0x6e,0xf8,0x03,0x7f,0xec,0x97,0x00,0xef,0xfc,0xcd,0xfe,0xe1, + 0xf8,0x86,0x7a,0x1d,0xbb,0x73,0xe6,0x07,0xa2,0xcf,0x88,0xe5,0xe6,0x01,0x98,0xd4,0x1f,0x2a,0x42,0xf4, + 0x18,0xcc,0x26,0x96,0xd2,0x5c,0x82,0x43,0x2d,0x31,0x81,0xf3,0x07,0x08,0x54,0x6a,0xe1,0xfb,0x2a,0xf9, + 0x16,0xa6,0xd1,0xbb,0x35,0xce,0xb2,0x68,0xd2,0x84,0xbf,0x57,0x49,0x0a,0xb5,0xf4,0x78,0x8e,0xe7,0x28, + 0xfe,0x1a,0x0c,0xec,0xef,0x95,0x2f,0x8c,0x32,0x92,0x65,0x71,0x73,0xa4,0x2a,0x7e,0xa8,0x4c,0x05,0x1c, + 0xda,0x15,0xdf,0x2b,0xbe,0x20,0x2d,0x9a,0x73,0xa4,0x63,0x43,0xa6,0x70,0x5d,0x84,0x35,0x10,0x7e,0xf0, + 0xeb,0x2f,0xf4,0xf3,0xfe,0x3e,0x1b,0xcd,0xd1,0x1c,0x7e,0xcb,0x35,0x09,0x68,0x6d,0xd0,0xb8,0x89,0x3a, + 0xde,0x1e,0xef,0xf7,0x7a,0xbc,0x26,0xe5,0x7b,0x1a,0xab,0xfa,0xb6,0x82,0x22,0xd1,0x09,0x0c,0xb4,0x8f, + 0x26,0x3b,0x38,0x8c,0xe5,0x52,0x99,0x26,0x0e,0xee,0x10,0x15,0x1a,0xe2,0x1a,0x43,0xaa,0x51,0x5f,0x9b, + 0x85,0x02,0xf2,0xc8,0x10,0xe1,0x79,0x92,0x36,0xce,0x08,0xf8,0x8f,0xca,0x27,0x9c,0x06,0x83,0x1f,0x7c, + 0xfb,0xf5,0xda,0x2b,0xf8,0x43,0xf5,0x4d,0xf2,0x9d,0x07,0xf7,0x13,0x3f,0x6e,0x37,0x93,0x81,0xd9,0x7a, + 0xcd,0xf4,0xa2,0x27,0xaa,0xe6,0x49,0xf2,0x3d,0x06,0x65,0x36,0xd9,0x0b,0x96,0xd7,0x02,0xce,0x15,0xa3, + 0x68,0xe4,0x79,0xd7,0x35,0x5b,0x32,0x10,0x43,0xe3,0x8e,0x9a,0x84,0x78,0xfd,0x26,0x1a,0x9e,0xe2,0xfe, + 0xc6,0xa3,0xb4,0x86,0x19,0xcf,0xdc,0xbd,0xf9,0x92,0xb2,0x29,0x8c,0x34,0x75,0xe8,0x91,0xf9,0x2d,0x01, + 0x22,0x74,0xdf,0xa7,0xec,0x2a,0x49,0x27,0x35,0x5f,0x8e,0x58,0x26,0x0d,0x30,0x3a,0x04,0x12,0x44,0xb4, + 0xfc,0x5c,0x29,0xe7,0x31,0xb8,0x03,0x6f,0x50,0x1d,0xf8,0xbb,0xec,0xaf,0x93,0x60,0x89,0xf8,0x0d,0x95, + 0x89,0x8e,0x37,0x52,0x3f,0x57,0xdb,0x8c,0x20,0x86,0xf7,0xa8,0x18,0xdf,0xe8,0x83,0x0f,0x06,0x38,0x72, + 0x78,0x21,0x20,0x5c,0xcb,0x71,0xaf,0x71,0xea,0xa7,0x90,0x0e,0xd0,0x9f,0xab,0xa8,0x97,0xf1,0x44,0x14, + 0x2a,0x6f,0x4a,0xda,0x26,0xfc,0xd3,0x26,0x34,0x91,0xa4,0x76,0xad,0x3c,0xa6,0x04,0x17,0xbf,0x6b,0xa5, + 0x31,0x08,0xbc,0x6f,0x59,0x4c,0x9d,0xc2,0x58,0xac,0x4c,0x0a,0xff,0x7d,0xf4,0x73,0xa5,0x79,0xd0,0x0e, + 0x36,0xa0,0x8e,0x1e,0x7f,0x84,0x4a,0xc7,0x58,0x4b,0x15,0xe3,0x40,0x5f,0x39,0x1d,0x1b,0x73,0x43,0x8e, + 0xcb,0xec,0x2c,0xf8,0xf9,0x03,0x8e,0xb0,0xcc,0xde,0xe1,0xee,0xba,0x6f,0x4a,0xde,0x20,0xfb,0x53,0x2e, + 0x71,0x0b,0x86,0x52,0x51,0xeb,0xd3,0x4f,0xf8,0x54,0x67,0x74,0x3e,0xc7,0x67,0x1b,0x30,0x2f,0xbf,0xb3, + 0xb6,0x7d,0xd5,0xa8,0x19,0x42,0xbc,0x5a,0x51,0xf0,0xcf,0xd6,0x91,0xdf,0x73,0x13,0xec,0x9b,0x23,0xe3, + 0x26,0xd3,0x9a,0x29,0x9b,0xe8,0x4b,0xce,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0x78,0xe5,0xa7,0xde,0x26, + 0xbf,0xb2,0x9e,0x39,0x2d,0x11,0x56,0x2e,0xe2,0x53,0x48,0x9a,0x72,0x1d,0x65,0x2e,0x3f,0x49,0x82,0xc0, + 0xcb,0x9d,0xeb,0x9b,0xfd,0x50,0x42,0xf1,0xfd,0xcc,0xe6,0xbe,0x64,0xed,0x54,0x94,0x17,0x04,0x28,0xdf, + 0x1d,0xbd,0x7c,0xc1,0x09,0x5c,0xba,0xea,0x0f,0x5a,0xeb,0xd9,0x2d,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc, + 0xbc,0x58,0x65,0x23,0x20,0xb9,0x54,0x8a,0xbe,0x82,0x6b,0x95,0x95,0x20,0xa7,0x1a,0x30,0x1f,0x23,0x2b, + 0xf4,0x8b,0xc0,0x66,0x88,0xaf,0x12,0x16,0x21,0x9a,0x34,0x9f,0x0e,0x4f,0xf9,0x35,0x29,0xb5,0x59,0x22, + 0x24,0x60,0x08,0x48,0x6f,0x6f,0xa9,0x1a,0x4d,0x93,0x95,0xda,0x25,0x6e,0x32,0x8d,0x44,0x98,0x50,0x53, + 0x3a,0x0c,0xab,0x5f,0xbf,0x39,0x7a,0xfe,0xfa,0x15,0xea,0x99,0x19,0xe9,0xce,0x7a,0xdd,0xa3,0x4d,0xc0, + 0xf6,0x67,0xb7,0x70,0x77,0x19,0x95,0xb8,0x37,0x6b,0xbd,0x1a,0xdf,0x2c,0x60,0x63,0x03,0x79,0xe7,0x7d, + 0x66,0xa5,0x80,0xcd,0x26,0x9c,0xa9,0x69,0xd4,0xaa,0xde,0xd3,0xaf,0x89,0x86,0x40,0xb4,0xd1,0x2f,0x0d, + 0x9d,0x26,0x06,0x68,0x79,0xa4,0xad,0x53,0xe6,0xe9,0x1f,0xd7,0x2e,0x7e,0xb6,0x18,0xac,0xf0,0xb1,0x6e, + 0x28,0xa0,0x89,0x38,0x98,0x4d,0x74,0xa0,0xb6,0x9c,0xc9,0x00,0x67,0x36,0x2f,0x44,0x01,0xfb,0x05,0xcb, + 0xa3,0xe9,0x28,0x68,0xc4,0x42,0xfa,0xc7,0x20,0x21,0xbd,0x49,0x56,0x3a,0xa8,0x11,0x83,0x48,0x29,0xc6, + 0x7a,0x54,0xc6,0xf3,0xc6,0x6c,0xdc,0x21,0x77,0xd9,0xb0,0x76,0xf9,0x7a,0xee,0x59,0x1a,0x69,0x51,0xca, + 0x3b,0xa4,0x8e,0x2f,0xc3,0xd6,0x3b,0x47,0x3c,0xf0,0x7c,0x10,0x9b,0xcf,0xe9,0x86,0x17,0xb7,0x28,0x5a, + 0xdf,0xe5,0x9d,0x78,0x23,0x8b,0xa6,0x2d,0xe2,0x62,0x79,0x50,0xd9,0x11,0x6d,0xe5,0x7e,0x3f,0x22,0x51, + 0x71,0xd5,0xf6,0xb9,0xdc,0xca,0x2d,0x75,0x6e,0xe4,0x45,0xe9,0xd1,0xfb,0x74,0x9e,0xb4,0x8a,0xab,0x15, + 0x2c,0x4c,0xcb,0x6a,0xc1,0x57,0xb8,0x4f,0x39,0x6d,0xbd,0xd6,0xdf,0xf3,0x16,0x9e,0x25,0xf3,0xf5,0x7a, + 0xa5,0xa6,0x98,0x2f,0xbd,0x51,0xa5,0x72,0xde,0xca,0x3a,0xa5,0x53,0x43,0x02,0xfb,0x75,0xbd,0xc3,0xc5, + 0xdb,0x69,0x1a,0xc5,0xd3,0x91,0x58,0xaa,0xb6,0xa1,0xd5,0x57,0x9c,0x33,0xe1,0x98,0x8d,0x7a,0xe4,0x67, + 0x7f,0x4b,0xae,0x76,0x61,0x15,0x9c,0x70,0x0a,0x09,0xd9,0xc5,0x4b,0x92,0xb3,0x6e,0xb2,0x73,0x37,0xce, + 0x60,0x7f,0x3e,0x34,0x31,0xd3,0xca,0x56,0x6d,0x65,0xf7,0x33,0xa7,0x9d,0xaf,0xa4,0x0e,0x0e,0x67,0x39, + 0x23,0x24,0xb5,0x84,0x21,0xe2,0xde,0xde,0x53,0x98,0x0f,0xd6,0xca,0x60,0x29,0xce,0x5e,0x46,0x61,0x9a, + 0x70,0x3e,0x01,0xef,0x8c,0x7e,0x6d,0x31,0x1d,0xa1,0x04,0x18,0x20,0xf5,0x79,0x80,0xf3,0xc6,0xf7,0x25, + 0xe3,0xe8,0x9e,0x5a,0x40,0x21,0x71,0x33,0x58,0xd6,0xc6,0x76,0x7f,0xce,0xf2,0x07,0x4a,0x7f,0x90,0x92, + 0x8d,0x36,0x51,0xb9,0xf7,0x6b,0x3d,0xb8,0x17,0xd9,0x7b,0x93,0x7a,0xfc,0xb8,0xbd,0x7a,0x38,0x20,0x16, + 0x82,0x81,0xc5,0xdb,0x89,0x7e,0x60,0x5c,0x28,0x50,0xa8,0xfd,0xf3,0x1e,0xc9,0x5f,0xa4,0x4d,0x26,0x77, + 0x70,0xdb,0xa2,0xd7,0x29,0x56,0xb8,0x04,0xac,0xfb,0xce,0xfa,0x45,0x86,0x61,0x41,0x6c,0x95,0x19,0xa0, + 0x37,0x0b,0xd7,0xff,0xbf,0xcf,0x82,0x20,0xf3,0xed,0x89,0xb0,0xe9,0xca,0x4f,0x95,0x43,0x00,0x54,0x7f, + 0x57,0x42,0x6f,0xa6,0x44,0xa6,0xce,0x89,0x92,0xff,0xd2,0xf4,0xc1,0x90,0xc4,0x4c,0x9b,0x37,0x95,0x15, + 0xcc,0xba,0x46,0xf0,0x69,0xb6,0x17,0x3c,0x55,0x0a,0xc3,0x05,0x88,0x1b,0x34,0x09,0x9d,0x43,0xef,0x1c, + 0xf3,0xd5,0x15,0xb7,0x75,0xd3,0xbf,0x62,0xa0,0xd1,0xa4,0x8d,0xbe,0x52,0x69,0xeb,0xa2,0x14,0x83,0x44, + 0xed,0x15,0xbc,0xcc,0xf3,0xd2,0xb4,0x40,0x28,0x8c,0xcb,0x23,0x9e,0xe7,0x61,0xa6,0x0d,0xb0,0x82,0x4b, + 0x48,0x10,0xf8,0x46,0x09,0xc4,0xbc,0xbe,0xd5,0x38,0xe4,0x39,0xe3,0xc6,0x2d,0xf2,0xe4,0x94,0xfb,0xf2, + 0x21,0xf7,0x7d,0x5f,0x3e,0xa0,0xa8,0x2f,0x79,0xb9,0x6a,0xda,0x46,0x21,0xdb,0x22,0x6d,0x16,0x3b,0x6c, + 0x27,0x73,0x34,0x9f,0xc2,0x33,0xe2,0x02,0x84,0xc2,0x23,0x04,0x02,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xaf, + 0x50,0xdd,0x54,0x5f,0x6d,0x7b,0x7b,0xab,0xde,0x56,0x10,0x34,0x5b,0xc3,0xb1,0xe7,0x2a,0xda,0x61,0x9d, + 0x3f,0x49,0x01,0x85,0x63,0x40,0x5b,0x52,0x54,0xc6,0x97,0x87,0xe9,0x2c,0xc8,0xc9,0x38,0xf2,0x34,0x9f, + 0x0b,0x56,0x8c,0x60,0x02,0xa6,0xd4,0x09,0xec,0x29,0x9e,0xe5,0xe3,0xb7,0x79,0xfc,0x28,0x27,0x8c,0xdf, + 0x71,0x1f,0xeb,0xd7,0xdb,0xd4,0x6a,0x05,0xcb,0x73,0x76,0x15,0x6b,0xab,0x80,0x24,0x88,0x85,0x30,0x73, + 0x83,0xc1,0xe4,0x1b,0x28,0x0e,0xe1,0x29,0x36,0xea,0xf7,0x47,0x9a,0x3c,0xd0,0xf9,0x0a,0x57,0x23,0xab, + 0x1e,0x1d,0x10,0x9a,0xf2,0x5c,0x55,0x9b,0x96,0x8e,0x3b,0xd1,0x37,0xd9,0x52,0x93,0x8f,0x75,0xd8,0x0d, + 0x3e,0x4b,0x24,0x52,0x44,0x75,0xfc,0x92,0xf8,0xff,0x27,0xf0,0x91,0x0a,0x4e,0xac,0xf5,0xdd,0x0e,0xcb, + 0x4e,0x75,0xde,0xaa,0x92,0xeb,0xa5,0xdb,0xd9,0x69,0xf2,0xb8,0xe1,0xf0,0xaf,0x60,0x69,0x8e,0x7f,0xba, + 0xa5,0x92,0x89,0xc9,0xeb,0xaf,0x64,0x8e,0x4a,0xc0,0xd3,0xd0,0x1c,0x1d,0xd0,0x89,0xe8,0xee,0xdc,0x91, + 0x09,0x4f,0xd9,0x6e,0xbc,0xa0,0x47,0x2a,0x90,0x52,0x01,0x63,0xa0,0x4e,0x14,0x03,0xac,0xdf,0xf3,0xf1, + 0x5c,0x97,0x78,0x85,0x12,0x73,0x2a,0x31,0xb1,0x25,0x66,0x09,0xa5,0x87,0x2b,0x17,0x69,0x3d,0x05,0xed, + 0xfb,0xcd,0x01,0xd5,0x3a,0x1f,0x3f,0xcb,0xe3,0x57,0x39,0xb3,0xf7,0xd1,0xb8,0x90,0xc6,0x4c,0xdd,0xb1, + 0xa9,0x22,0x3e,0x50,0x3a,0xe0,0xb2,0xd2,0xd0,0x12,0xaf,0x94,0x85,0x95,0x78,0x86,0x6b,0x90,0x8f,0xcc, + 0x6d,0x7d,0xb1,0xd4,0xb2,0xb7,0xf7,0x5e,0x0b,0xc9,0x65,0xf6,0x4c,0xfc,0x8e,0xe0,0xc4,0x47,0x03,0x8f, + 0x1b,0x77,0x48,0x8f,0x8c,0xc0,0xe3,0x81,0x8d,0x91,0x18,0x65,0x89,0x0d,0x9b,0xed,0x88,0x28,0x33,0x8e, + 0xd6,0x7d,0x5e,0x6d,0x11,0xb2,0xef,0x13,0xfe,0x10,0x46,0x90,0x83,0x87,0x8d,0x84,0x97,0xda,0xf8,0x3b, + 0xed,0xa1,0x4f,0x62,0x1d,0x66,0x5f,0xfc,0x43,0x5f,0x11,0xeb,0x24,0x06,0xfb,0x87,0x7e,0xf9,0x77,0x1e, + 0x2d,0x05,0x12,0x8a,0xe8,0x1d,0xf8,0x69,0xe1,0x6a,0x9e,0x94,0x88,0xf3,0x33,0x76,0x87,0xb0,0x6f,0xfa, + 0xaa,0xcc,0xb9,0x44,0xcb,0x73,0xe9,0xa1,0x09,0x55,0x90,0x9c,0x35,0x86,0x1b,0x72,0x1b,0x3a,0xb2,0xce, + 0x57,0x6c,0x3e,0x49,0x9f,0x11,0x84,0x67,0x15,0x57,0x7e,0xc8,0xb1,0xc0,0x40,0x90,0xe0,0x92,0x39,0x47, + 0xdb,0x20,0x8e,0x18,0x21,0x46,0x05,0xaf,0x57,0xde,0xd8,0x04,0x24,0x43,0xf9,0x8c,0x35,0x75,0x33,0xf3, + 0x7a,0x54,0x4a,0xc2,0xd4,0x24,0x3c,0x64,0x9a,0x5d,0x12,0x97,0x94,0x48,0x53,0x9a,0xa5,0xfa,0xab,0x0b, + 0xfb,0x6e,0x3e,0xbb,0xb4,0x29,0xfe,0x77,0x0b,0x4a,0x3d,0xcb,0x60,0x22,0xfe,0x14,0x55,0xc2,0x7b,0x4f, + 0x2a,0x57,0xd7,0x28,0x8f,0xab,0xd7,0x25,0xe3,0xcc,0xf6,0xca,0x4c,0x8c,0xba,0xb2,0xdf,0x3e,0xe4,0x7a, + 0xd5,0x91,0x6d,0x42,0x7d,0x34,0x5f,0xeb,0xac,0x4f,0xae,0x7f,0xf6,0xfb,0xc7,0x94,0x36,0xd5,0x7b,0x4a, + 0x3d,0x4c,0xce,0x2a,0xf5,0x8e,0xfe,0x68,0x3b,0xfd,0xd1,0xbb,0xbd,0xbd,0x77,0x96,0xe4,0x7a,0x98,0x84, + 0xef,0x12,0xf3,0x1a,0x19,0x8e,0x95,0x57,0xe2,0x4e,0xb2,0xfb,0xd0,0x0b,0x9d,0x44,0x1c,0x29,0x1b,0xf1, + 0x97,0x25,0xe8,0x40,0x8e,0x09,0x4c,0x4b,0x72,0x67,0xbd,0x3e,0xc2,0xe1,0x49,0x6b,0x70,0x24,0x20,0xf0, + 0x3a,0xb9,0xb3,0xb7,0xb7,0x1c,0x2f,0x69,0x37,0x3c,0xc5,0xe3,0xe5,0xf8,0x32,0x9e,0xaa,0x37,0x78,0xbc, + 0x18,0x5f,0xd0,0xbe,0xf8,0x2d,0xb9,0x33,0xbe,0x5a,0xaf,0x17,0xf1,0x42,0x3d,0x41,0x6a,0x8f,0xd3,0xcb, + 0xd1,0xf8,0x28,0x3e,0x57,0xcf,0xa9,0xe0,0xc7,0xf5,0xfa,0x3a,0xbe,0x56,0x2f,0xe8,0xf1,0xd3,0x7a,0x7d, + 0x16,0x9f,0xa9,0x67,0xc4,0xb7,0xe4,0xe1,0xe3,0x68,0xfc,0x58,0xa6,0x2d,0x7e,0x1c,0xa9,0x57,0x09,0x1f, + 0x84,0x35,0xeb,0xe3,0xd5,0xcb,0xe4,0x69,0x13,0x3e,0x89,0xd4,0xdb,0xc4,0xc1,0x89,0xef,0x64,0x1b,0xdd, + 0xbc,0x22,0x90,0xa4,0x03,0xa5,0x54,0x6f,0x22,0xc5,0xbf,0x4f,0xe9,0xa8,0x7c,0xeb,0x40,0x73,0x1c,0x52, + 0x09,0xce,0x78,0x1d,0xa9,0x17,0x7b,0x7b,0x2f,0xd8,0x90,0xe2,0xf9,0xde,0xde,0x73,0xb8,0x25,0x78,0xb5, + 0xea,0x60,0xeb,0x1a,0x5e,0xeb,0x8b,0x92,0x06,0xf6,0x03,0x6d,0x07,0x67,0xf9,0xe4,0x1a,0x15,0xb9,0x90, + 0xa1,0x76,0xc1,0xa7,0x2a,0x1d,0x0e,0xf9,0x14,0xc1,0x8a,0x98,0xd5,0x74,0xcf,0xc7,0x2c,0x49,0x3b,0x19, + 0x71,0x38,0x23,0xb1,0x37,0x2c,0xc4,0xde,0xb0,0xc1,0x0e,0xb3,0xfb,0xa6,0xfb,0x1e,0x46,0xea,0xc9,0xde, + 0xde,0x13,0xea,0xfa,0x5b,0xc8,0x82,0x7e,0xdb,0xdb,0xfb,0x0d,0x7d,0xc6,0x88,0xaf,0xf4,0x80,0xae,0x64, + 0xc4,0xea,0xb4,0x75,0x90,0x5c,0xf9,0xf3,0xf1,0xba,0x35,0x1d,0xeb,0xf5,0x4b,0x3a,0xc7,0x5f,0x37,0xe1, + 0xb3,0x68,0xec,0x9d,0x42,0x6f,0xd5,0xb3,0x28,0xfe,0x88,0xe2,0x73,0x6a,0x0c,0x48,0x44,0x79,0x13,0x21, + 0x06,0xb6,0x95,0xdf,0x1f,0xea,0x06,0x57,0xf5,0x36,0x6c,0x59,0x3c,0xdf,0xd1,0x08,0xc4,0x09,0x81,0xa9, + 0x3b,0x9f,0xfc,0xe6,0xc3,0xd6,0x04,0x87,0xc4,0x79,0xba,0x49,0xb4,0x33,0x06,0x55,0x76,0x5f,0xba,0x38, + 0x98,0xca,0x74,0x26,0x45,0xa4,0x2e,0x08,0x10,0x11,0x1c,0xf5,0x4a,0xa6,0x24,0x85,0xb3,0x04,0xff,0x2e, + 0x7b,0xa6,0x24,0x25,0x1e,0x0a,0x53,0xc2,0xa5,0x5a,0x7d,0x3a,0x92,0x29,0xf9,0xd8,0x9a,0x92,0x4f,0xea, + 0x23,0x4f,0x49,0xaa,0x56,0xea,0x93,0x4c,0xc9,0x25,0x28,0xb3,0x94,0xde,0xd4,0x15,0x7f,0xf4,0x09,0x74, + 0xb6,0xb6,0x19,0xd7,0xb8,0x32,0xf5,0xd1,0x99,0xf7,0xd6,0xc6,0x95,0x2e,0xdd,0xe0,0xca,0xfa,0x76,0x5c, + 0x29,0x91,0x5f,0xe5,0xfe,0x18,0x8b,0x1a,0x0d,0x03,0x25,0x6a,0xd6,0x5d,0x6e,0xd8,0x20,0x69,0xe3,0x6f, + 0x52,0x33,0xce,0x5c,0x25,0x12,0xe1,0x85,0x90,0x24,0xe4,0x2d,0xa9,0xc1,0x6a,0x53,0xf3,0x6a,0x90,0xdf, + 0xd2,0x24,0xf8,0xb8,0xef,0x82,0x12,0x05,0x7f,0xbd,0x40,0x16,0x61,0x48,0x5d,0x88,0xb0,0x62,0x2d,0xd8, + 0x4b,0x32,0xce,0x6d,0xed,0x16,0x77,0x5d,0x53,0x12,0x3b,0x65,0x4b,0x89,0x33,0xbc,0x1a,0x54,0x76,0x25, + 0xdb,0x7c,0x2e,0xdb,0xfc,0x08,0xdb,0xfc,0x32,0x22,0x8c,0x08,0x84,0x70,0x16,0x8d,0xcf,0xa4,0xae,0xf8, + 0x2c,0x62,0xac,0x68,0x86,0xd6,0xde,0xfa,0x3e,0x88,0x40,0x84,0xd4,0x03,0x30,0xbc,0x06,0x3d,0xe9,0x16, + 0x86,0x38,0x74,0xd7,0x95,0xe0,0x10,0x07,0x20,0xcb,0xa8,0x05,0x21,0xe3,0xf0,0x8a,0x71,0x08,0x43,0x0e, + 0xd5,0x79,0xce,0x76,0x20,0x21,0x36,0xc4,0x62,0x6f,0x6f,0x81,0x37,0xe5,0x75,0x52,0x63,0x92,0xeb,0xf1, + 0x35,0x6d,0xd7,0xb8,0x0c,0x7d,0x82,0xe0,0xb5,0x77,0x22,0x6f,0xc7,0x94,0xa2,0xd9,0x90,0x3b,0x0f,0x7d, + 0x75,0xf2,0x53,0xc4,0x99,0x65,0x56,0xc2,0x05,0x2d,0xd6,0x61,0xb1,0x61,0x25,0x8c,0xf0,0xc6,0x5e,0xd8, + 0xa7,0x31,0x15,0xdf,0x0a,0x5f,0x53,0x1d,0x1f,0x9c,0xc4,0x08,0x5e,0x63,0x6f,0xd9,0x83,0x5f,0x8b,0xa6, + 0x9f,0xbe,0xf1,0x54,0x78,0x6f,0x34,0xbd,0xb2,0x0b,0xbd,0x7c,0xe3,0x63,0x80,0x77,0x7c,0x19,0xb1,0xf3, + 0x01,0xb1,0xa4,0xf7,0x13,0xf3,0xa4,0x9c,0x25,0x5c,0x3f,0x7d,0x6b,0x4b,0x6e,0xd4,0x81,0x57,0xd5,0x93, + 0x0e,0x15,0xdf,0x78,0x92,0xb1,0xc5,0x6a,0xde,0xe4,0xcb,0x79,0x26,0xf4,0xfa,0x7a,0xdd,0x1d,0x99,0x17, + 0xef,0x8c,0x8d,0x00,0xe1,0x87,0x65,0x7d,0x68,0xba,0x6e,0x58,0x30,0x05,0x73,0xb9,0xb8,0x36,0x23,0x8f, + 0xca,0xe4,0x8c,0xd8,0xbf,0x17,0x30,0xf2,0x01,0xbf,0xab,0x70,0xfd,0xd2,0x9c,0x2f,0x43,0x87,0x90,0x9e, + 0xc1,0xc7,0x24,0x24,0x5e,0x18,0xaf,0xeb,0x90,0x3f,0xf1,0xa2,0xfe,0x82,0xeb,0x02,0x5d,0xa5,0x0b,0xb3, + 0x66,0x4a,0xce,0xb1,0x6e,0x6a,0x52,0xc3,0x4e,0x97,0xb9,0xa9,0x76,0xfa,0x7e,0xeb,0xd2,0xc7,0xe7,0x4d, + 0xfb,0x8a,0x95,0xee,0xcd,0x77,0x36,0x6b,0xf7,0x3a,0x14,0x7b,0x59,0xcf,0x25,0xc4,0x87,0x32,0x11,0x95, + 0x72,0x74,0x36,0x5c,0x30,0x20,0x7a,0x3e,0x2d,0x7e,0xf4,0xbc,0x3a,0x1a,0xf1,0x6e,0x16,0x9e,0xc5,0xc9, + 0x4c,0x61,0x63,0xe6,0xdc,0x39,0x6e,0x29,0xc4,0x83,0xdc,0xfe,0xf2,0x50,0xbd,0x6c,0x6c,0x86,0xd2,0x82, + 0x7c,0x9f,0xde,0x7c,0xd9,0x62,0x3a,0xbb,0x0e,0x0c,0x97,0xec,0xbe,0x00,0xa9,0xb3,0xe8,0xc1,0x03,0xe1, + 0x33,0xf3,0x46,0x72,0x1a,0x45,0x98,0x94,0x23,0x1e,0x0d,0xa7,0x79,0xcd,0xa6,0xc7,0x92,0xe1,0xab,0x2f, + 0xde,0x7a,0x33,0xb1,0x7b,0x8b,0x1f,0x83,0x48,0xaa,0xb2,0x2e,0xf2,0x1d,0x67,0xf1,0x5b,0x76,0x8d,0xb9, + 0x4d,0x66,0xe6,0x79,0x54,0x78,0x52,0x51,0x26,0x03,0xb6,0xec,0x5e,0xcd,0x2a,0xe2,0x8c,0x6f,0x59,0xbc, + 0x1a,0x3f,0xf4,0x31,0xd5,0xf1,0x0b,0x1c,0xbb,0xac,0x77,0xa1,0x2f,0xe4,0x7c,0xe4,0x35,0xc0,0xb7,0x4e, + 0xba,0x18,0xa7,0xed,0xf0,0x47,0x85,0xbb,0x66,0x22,0x42,0xe8,0x23,0x8e,0x0f,0xac,0x6f,0x2f,0xa1,0xcd, + 0x2f,0xa8,0xd0,0xf0,0x93,0x1d,0xc7,0xbc,0x9c,0xbe,0x38,0xc3,0x85,0x1e,0x27,0xec,0x9a,0xd7,0x13,0x89, + 0xf6,0x83,0x93,0x24,0xdd,0xfb,0x75,0xba,0xff,0x31,0xcb,0x96,0xfb,0xe9,0x9c,0x0e,0x8b,0x3b,0xfa,0xae, + 0x40,0xa6,0x6f,0x9c,0x47,0x75,0x18,0xb8,0x22,0x81,0xba,0xe1,0xae,0xc5,0xcd,0xd6,0xec,0xb8,0x3e,0xfb, + 0x40,0xfc,0x5e,0x03,0x1b,0x93,0x44,0xac,0x1c,0x38,0xe3,0xcb,0x27,0xdd,0x2b,0x9b,0x52,0xf2,0xbb,0x3e, + 0x4d,0x6d,0xbe,0x3d,0x5d,0x3d,0x8b,0x70,0x5d,0x9d,0x88,0x5b,0xb3,0xab,0x37,0x25,0x82,0x09,0xa1,0x34, + 0x01,0xe7,0x23,0x22,0x8c,0x39,0xaa,0xc7,0x3c,0xa7,0x4f,0xdf,0xe2,0xea,0x75,0x3f,0xce,0xbc,0xbf,0xbc, + 0x52,0x01,0x81,0xb8,0xb2,0xbe,0x33,0x52,0x9b,0xbe,0x8e,0x62,0xd6,0xec,0x17,0xfc,0xc3,0xf7,0x9e,0x35, + 0xe5,0x92,0x5e,0xe9,0x2f,0x30,0x58,0xb5,0x5e,0xe7,0xb6,0x0b,0x18,0xc2,0xd4,0x28,0x19,0x4b,0xdd,0x15, + 0x16,0x0c,0x8f,0x4a,0x77,0x37,0x3c,0x11,0x99,0x3f,0x65,0x67,0x1f,0xf3,0xc6,0xf2,0x9f,0x49,0xc0,0x99, + 0x08,0x83,0x17,0x06,0x83,0x6a,0x10,0x2c,0x3f,0x29,0xd6,0xed,0x2f,0x3f,0x45,0x81,0x2a,0x3d,0x00,0x36, + 0xbc,0x78,0x12,0x1c,0xd4,0xbe,0x62,0xfe,0x77,0x8b,0x70,0xb5,0x12,0x99,0x79,0xdf,0x43,0xf6,0xd7,0xcf, + 0x94,0x35,0x80,0x88,0x1b,0x65,0x4c,0x16,0x5a,0x37,0xde,0x76,0xef,0x3f,0x55,0x4e,0x95,0x6f,0xaf,0xe1, + 0xd0,0x81,0x8d,0xb5,0x63,0x22,0x1e,0x25,0x14,0x88,0x73,0xa3,0x6a,0x22,0x25,0xc0,0x48,0x4c,0xb7,0x0d, + 0x11,0x70,0xec,0xdf,0x13,0xf3,0x43,0x5b,0xbc,0x61,0xac,0x15,0x47,0x61,0x9d,0xd0,0x26,0x87,0x8e,0x95, + 0xa0,0xeb,0x3a,0xd0,0xfa,0x0b,0xf8,0xf5,0xd4,0x9e,0x69,0x52,0x26,0x1e,0x3e,0xbb,0xbe,0xf5,0x91,0xb6, + 0x37,0x08,0x4b,0x54,0x90,0xa3,0x82,0x2a,0x9b,0x49,0x05,0x39,0x1c,0x90,0x92,0x52,0xe5,0xd6,0x11,0xe9, + 0x16,0x27,0xed,0x7c,0xd4,0x48,0x08,0x4d,0x7b,0x81,0x4b,0x03,0xa9,0xa8,0xf3,0xf3,0x81,0x78,0x55,0x07, + 0xc8,0xb4,0x31,0x98,0xd9,0x97,0xbd,0xad,0xf2,0x0c,0x10,0x5d,0xc2,0x1a,0x19,0xc3,0x54,0x9a,0xde,0xa1, + 0x8d,0x4a,0xd8,0x8c,0x26,0xc0,0xd4,0x05,0x9e,0xcc,0xb8,0x69,0x47,0xcc,0xe6,0xaf,0x60,0x8e,0x24,0x76, + 0x35,0x1c,0x49,0x20,0xe0,0x7b,0xe5,0xa8,0x1a,0x0e,0x63,0x85,0xe0,0xd4,0x3a,0x93,0x92,0xf6,0x75,0x09, + 0xa2,0x01,0xec,0x37,0x7e,0xb2,0x1c,0x53,0xee,0x5b,0x13,0x41,0xb8,0xb0,0x45,0x81,0x7d,0x6d,0xa9,0x23, + 0x91,0x6c,0xdd,0x0d,0x82,0xbb,0x6c,0xc5,0x7d,0xd7,0x06,0x01,0xbd,0x4b,0xeb,0xb9,0xdd,0x53,0xa0,0x59, + 0x5b,0xfb,0x7a,0xcd,0x96,0x67,0x52,0xab,0xe2,0x1b,0x87,0x21,0xa3,0x82,0x11,0x69,0xc3,0xde,0x9f,0x41, + 0x5e,0x4b,0x97,0x0a,0x87,0x2a,0x12,0xc4,0x9b,0x14,0x73,0xa1,0x46,0xb8,0xb2,0x79,0x5e,0x64,0xfb,0xb6, + 0x25,0x29,0x2e,0xa9,0x47,0x3a,0x11,0x86,0x8b,0x2e,0x7a,0x60,0x72,0x30,0x9a,0x3c,0x38,0xb3,0x91,0x0f, + 0x26,0x7c,0x07,0xd3,0x59,0x79,0x3c,0x39,0x61,0x38,0xa3,0x2e,0x8e,0x5a,0x91,0x3e,0xb4,0xab,0x73,0xd7, + 0x4e,0x16,0x01,0x1f,0xd4,0x52,0x5d,0xf8,0xb6,0x42,0xdc,0x48,0x43,0x5b,0xa1,0x48,0x2e,0xac,0x03,0xff, + 0x83,0xc2,0x38,0xf1,0x57,0x49,0x9e,0x5c,0x20,0x46,0x32,0xdf,0x9a,0x50,0xca,0xb3,0x10,0x39,0xaf,0x4a, + 0x2d,0x44,0xd2,0xb2,0xf8,0x8b,0xb4,0x7e,0x94,0x33,0x2a,0xaa,0xc1,0x28,0x84,0x69,0xb2,0xd5,0xa5,0xa4, + 0xd2,0x37,0xed,0xbc,0x97,0x60,0x32,0x7e,0x08,0x79,0x77,0xf3,0x44,0x57,0x50,0xcf,0x11,0x15,0x8d,0xdc, + 0xe7,0x30,0xc2,0xbd,0xd7,0xb0,0x58,0xc0,0xe5,0x56,0x91,0xbe,0x66,0xc1,0x88,0xc3,0xdf,0x97,0xd0,0xbb, + 0x44,0xea,0x83,0xeb,0x9b,0x9f,0xfd,0x81,0xb3,0x69,0x18,0xdf,0xb2,0x67,0x7f,0x8d,0x73,0x5e,0x22,0x7c, + 0x02,0x8d,0xb3,0xcd,0x33,0xf5,0x5c,0xab,0x8c,0x9b,0xc5,0x3c,0x90,0x80,0x62,0x67,0x88,0x85,0x29,0x4d, + 0x79,0xea,0x64,0xa6,0x9c,0x27,0x34,0x2d,0x73,0xce,0x91,0x42,0xa0,0xc2,0xae,0x8b,0x09,0x9d,0x95,0x0c, + 0x7d,0x36,0x42,0x24,0xe7,0xaa,0x12,0x6c,0x6a,0x70,0x87,0x0d,0xe0,0x02,0x36,0xaa,0x86,0x86,0xdd,0x41, + 0xca,0xde,0xde,0xc7,0xd2,0x5e,0x1c,0x6b,0x30,0x98,0xb0,0x40,0x44,0x0a,0xb3,0x05,0x25,0x82,0x57,0xc5, + 0x3f,0x9a,0x27,0x4b,0xd5,0x3d,0xeb,0x1f,0xf0,0x33,0x19,0x30,0x77,0x46,0x02,0xb2,0xed,0xfa,0xd7,0x1c, + 0x5e,0x26,0xad,0xd9,0x7b,0x25,0xb3,0xa7,0xd7,0xe8,0x11,0xcd,0xd0,0x22,0x01,0xe3,0x78,0x7c,0x78,0x32, + 0x5a,0xe8,0x99,0xb6,0xd2,0xb7,0x70,0xa1,0xc1,0x65,0x70,0x88,0x91,0xcc,0x93,0x8a,0xf8,0xb5,0x1c,0xf2, + 0x4f,0xe2,0xcf,0x16,0x90,0x58,0x29,0xc4,0xd2,0xc8,0xa2,0x96,0x43,0x5c,0x38,0xf1,0x5e,0xb7,0x2c,0x35, + 0xe7,0x4a,0x3b,0x20,0xc5,0x2b,0x6d,0x62,0x39,0x83,0x85,0x49,0x3c,0x55,0xd6,0x1a,0x30,0x5e,0x6e,0x10, + 0x67,0xc3,0x9a,0xf0,0xf1,0x04,0xe8,0xf9,0xe8,0xd8,0xd4,0x95,0x7c,0x7f,0x8d,0x3f,0xbb,0xc1,0x02,0xa2, + 0x65,0xac,0x6a,0xf5,0xd9,0xa9,0xde,0xdb,0xd3,0x73,0xad,0x5d,0x3b,0x36,0x2d,0xae,0xe6,0x7b,0x77,0xa6, + 0x32,0x10,0x27,0xc6,0x40,0x90,0x20,0x37,0x88,0xfa,0xac,0xc6,0x24,0xa5,0xd1,0x13,0xfb,0x52,0x47,0x52, + 0x32,0x5c,0x03,0xab,0x52,0xe9,0xdb,0xa4,0x38,0xbe,0x7f,0xa2,0xb5,0x38,0x86,0xee,0xa1,0xa9,0xd7,0x29, + 0x76,0x95,0x7e,0x32,0x40,0x9c,0xeb,0xfa,0xde,0xba,0xe8,0xb9,0xe5,0x18,0xe1,0x91,0xe6,0x79,0x5a,0x27, + 0xb9,0xfd,0xe0,0xad,0x7c,0x50,0x0d,0x73,0xa2,0x2c,0x52,0xa2,0xe0,0x0e,0x93,0xd2,0xd5,0xab,0x4a,0x6a, + 0x95,0xed,0x20,0x4c,0xf6,0xfd,0xa4,0x74,0x1d,0x41,0xdc,0x12,0x53,0xa3,0xaa,0xf8,0x42,0xb9,0x82,0x83, + 0x00,0xb4,0xbd,0x35,0xbe,0xb5,0x8a,0x91,0x7c,0xf6,0xb8,0x24,0x2c,0xc0,0xd4,0x11,0x73,0x0a,0x7e,0x02, + 0x87,0x2d,0x6d,0x27,0x19,0x6d,0x8b,0x67,0xb7,0xec,0x8b,0x7e,0x7f,0x6f,0xda,0xab,0xc4,0xa7,0xa1,0x89, + 0x0c,0x9f,0x19,0x91,0xa1,0x67,0xc1,0xdc,0x65,0xc9,0xc6,0x81,0x09,0xa2,0x14,0xdf,0x04,0x71,0x50,0xe2, + 0xc7,0x45,0x52,0xd0,0xb7,0xd4,0x0d,0x12,0xd8,0xd9,0xe5,0x83,0xbb,0x41,0x7c,0x77,0xf0,0x0b,0x94,0x06, + 0xec,0xa7,0x0d,0x2b,0x6b,0x77,0x0f,0xb3,0x27,0x78,0x66,0x7b,0x41,0x67,0xda,0xec,0x68,0x4b,0x7b,0xb3, + 0x67,0xe0,0x71,0x8f,0x9b,0x60,0x3b,0xe8,0xb3,0xbd,0x22,0x2c,0x38,0x0e,0x06,0x5d,0x11,0xb9,0x1d,0xbd, + 0xae,0xd9,0x3a,0xda,0x29,0xe8,0x07,0x4f,0x02,0x7d,0xc2,0xfd,0xbb,0x34,0xa4,0xab,0x78,0x67,0x11,0x39, + 0xf3,0x73,0x27,0x89,0x01,0xd4,0xd9,0xd2,0x1a,0x5b,0x83,0x80,0xc8,0x2d,0xfc,0x49,0x8d,0x63,0x28,0x0b, + 0x72,0x38,0xa4,0xa3,0x57,0x18,0x68,0x1d,0xd7,0x8c,0x46,0xe5,0x20,0xe1,0x07,0xf5,0x4b,0xc9,0xba,0xeb, + 0xd4,0xd8,0xd8,0xba,0x20,0xd3,0xd9,0xa7,0x54,0xc2,0x8f,0xd4,0x26,0x88,0xb6,0x57,0xd3,0x88,0x2a,0xf8, + 0xb1,0x0c,0x8f,0x83,0x49,0x53,0xcd,0x69,0x10,0x6c,0xac,0x4b,0xbf,0xe9,0x1c,0x7f,0x17,0x59,0x93,0x06, + 0x27,0xb7,0x9b,0x92,0xef,0x4e,0x8e,0x33,0xd8,0x9a,0xf7,0x5b,0xa2,0x6b,0x74,0x3a,0x0c,0x06,0xd9,0x20, + 0xf8,0x81,0xa8,0x2a,0x3b,0x59,0xeb,0x35,0x38,0x36,0x31,0x0a,0xb1,0x1d,0x36,0xfe,0xbb,0xd6,0x7e,0x27, + 0xcc,0x07,0x84,0xd5,0x61,0x6b,0x71,0xf7,0x6c,0xd5,0x34,0x65,0x71,0x17,0xd3,0x20,0x95,0xc2,0x4f,0x7f, + 0x90,0x72,0xc3,0x3f,0x36,0xa6,0x5a,0x4a,0xa3,0x45,0xb0,0x0a,0x38,0x3a,0xd8,0x47,0xd8,0x8e,0x52,0x53, + 0xe9,0xc5,0xac,0x0c,0x75,0x25,0x37,0xa0,0x71,0xc3,0x62,0xac,0xd7,0x64,0x10,0x98,0x8c,0x20,0xae,0xc6, + 0x6c,0xb5,0x6a,0x32,0x22,0x97,0x63,0x16,0x90,0x21,0xcd,0xb4,0x45,0x64,0x91,0xa9,0x25,0xee,0x6b,0xc6, + 0x56,0xe4,0x43,0xe7,0x8f,0x1e,0x0b,0xc0,0x31,0x6e,0x9e,0x33,0x65,0x74,0x78,0x10,0xf9,0xf1,0xec,0xcd, + 0x34,0xea,0xd0,0xd1,0x44,0x1c,0x52,0x75,0x1a,0xce,0x68,0xd5,0x6d,0x98,0xe1,0xe0,0xf4,0x63,0xd8,0x2e, + 0x4a,0x24,0x7c,0x07,0xf1,0x66,0xbc,0x71,0xba,0xa9,0x05,0x52,0xdd,0xa7,0xbe,0x55,0x66,0xd6,0x32,0x5f, + 0x42,0xac,0x9c,0x02,0xb7,0xf3,0x1a,0x4b,0x51,0x89,0xd1,0x16,0x07,0x30,0xf4,0xe3,0x00,0xac,0x76,0x7f, + 0x40,0x97,0x3e,0x6e,0xc4,0x3a,0x29,0xbe,0x7b,0x3a,0xd1,0x21,0x03,0xee,0xf2,0xb4,0xa9,0x4e,0x5c,0xe3, + 0xb8,0xe8,0x46,0x3a,0xf6,0x10,0x58,0x53,0xb8,0x78,0xf9,0xa6,0x58,0x59,0x8a,0xaf,0x9c,0xbc,0xbe,0xa9, + 0xca,0x49,0x56,0xd7,0xd9,0xd4,0x2e,0x7d,0x61,0x8d,0xbb,0x33,0x6d,0xb8,0xbf,0x2b,0x0f,0x5b,0x45,0x2b, + 0xbf,0x28,0xed,0x37,0x2e,0x49,0xbf,0xdb,0x75,0x26,0x08,0xf7,0xd1,0xf0,0x4d,0x1f,0x33,0x44,0xaa,0x44, + 0x68,0x3f,0x60,0x5f,0x76,0xee,0xb2,0x08,0x7c,0x8c,0xf9,0xf5,0xde,0x63,0xda,0xcb,0xb5,0x57,0xe0,0x7e, + 0xa7,0xc0,0x7d,0x14,0x28,0x5a,0x2d,0x32,0xa5,0x73,0x3a,0x0f,0xb5,0x75,0xb5,0x23,0xf2,0x61,0x0e,0x9d, + 0xb2,0x07,0x8a,0x9b,0xe5,0x86,0x43,0xb8,0x61,0x56,0x23,0x8d,0x7c,0x6e,0xa3,0x2d,0x95,0x0e,0x90,0x26, + 0x43,0xcd,0x67,0x3c,0xd2,0x7c,0xb6,0x35,0xd0,0xd2,0xcd,0x88,0xa3,0xb9,0x77,0x3b,0x34,0xb7,0xd0,0xea, + 0x7d,0x4c,0x87,0x31,0x60,0xa5,0xe9,0x5a,0xd2,0x74,0x5d,0x24,0x53,0xcb,0x85,0xac,0xd7,0x1e,0x49,0x0f, + 0xa9,0x6f,0x11,0x4e,0x21,0x55,0x27,0xf6,0xf3,0x14,0x76,0xc2,0x17,0x83,0xf0,0x92,0xa7,0xe7,0x92,0x63, + 0xc4,0x9d,0xd3,0xa7,0x3a,0xaa,0x78,0x40,0x5b,0x48,0xbf,0xdc,0xe6,0xf6,0x72,0x56,0x68,0xd3,0x06,0x9a, + 0x8b,0x18,0x4e,0xc5,0x22,0x8b,0x6a,0xe1,0x67,0x82,0xbc,0x6b,0x53,0x29,0x8c,0xe6,0xb5,0xeb,0x40,0x70, + 0xa2,0x76,0xcf,0x69,0x3a,0xae,0xd9,0x37,0x2b,0x5c,0x10,0xda,0x61,0xb6,0x20,0x60,0xc1,0xac,0xbc,0x07, + 0x83,0xf3,0x48,0x5d,0xcb,0x5b,0x78,0x0e,0xa3,0x20,0x53,0x86,0x77,0xd4,0x35,0x8d,0x02,0xf6,0xcc,0xbc, + 0x04,0x67,0x32,0xc5,0x2e,0x6c,0xea,0xc4,0x8f,0x76,0x41,0x04,0x19,0x74,0x8d,0x0d,0x6c,0xb8,0x3a,0xbc, + 0xc5,0x18,0x35,0xc6,0x34,0x2d,0x58,0x36,0x48,0xa1,0xce,0x68,0x66,0x68,0xeb,0x0c,0x26,0xdc,0x48,0xca, + 0x19,0xd1,0x20,0x9c,0xf1,0x2c,0xcd,0x62,0x36,0x4a,0xa1,0x46,0x2d,0xd9,0x78,0x9a,0x68,0x5e,0x75,0xac, + 0xe3,0x83,0xa5,0xb2,0x98,0x08,0x08,0x7a,0x5b,0x5b,0x38,0x94,0xc1,0xd3,0x48,0x5b,0x77,0x31,0x75,0xb4, + 0x8e,0x83,0x80,0x9e,0xc2,0x53,0x6e,0xe8,0x94,0x1b,0x0a,0xaf,0xf8,0xe5,0xca,0xb4,0x6a,0x2f,0x4c,0x3a, + 0x22,0x26,0xe8,0xe8,0x41,0xe3,0xe4,0x0b,0x56,0x48,0x7a,0x44,0xac,0xca,0x59,0xe2,0xe7,0x1c,0x1f,0x81, + 0x31,0x3a,0xb3,0xd8,0xfe,0xcc,0xc6,0xb1,0x2c,0x34,0xc3,0x14,0x48,0xcf,0x3d,0x1c,0x54,0x74,0xef,0xb2, + 0xe9,0xec,0x7a,0xec,0x97,0xa6,0x8b,0x40,0xe4,0x58,0xe9,0x45,0x4c,0x1a,0xa1,0x00,0x1c,0x10,0x2c,0x7d, + 0x41,0xf3,0x1b,0x6e,0x7f,0x6f,0xe2,0xd2,0x45,0x03,0x8b,0x76,0x24,0x96,0x48,0xa0,0xc4,0x5b,0xd9,0x4e, + 0x83,0x75,0x0e,0xf1,0x11,0x55,0x0b,0xd9,0x48,0x78,0xf2,0xbf,0xb4,0xe5,0x5a,0x6d,0xf9,0x9e,0xae,0x41, + 0xc0,0x32,0x11,0xad,0x98,0xad,0x46,0xda,0x5e,0x16,0x62,0x82,0x9b,0x22,0xe1,0x18,0x24,0xc6,0x4d,0xc4, + 0x3a,0xab,0xda,0xe3,0x69,0x1c,0x9c,0x96,0xa1,0x37,0x72,0x85,0x13,0x09,0x5d,0x7c,0x3e,0x1d,0x0c,0xf8, + 0xb5,0x60,0xbf,0x36,0x5d,0x60,0xd3,0xc6,0xa3,0x9e,0xfb,0xc5,0x76,0x60,0xea,0xd6,0x80,0x30,0x50,0xcf, + 0x32,0xdd,0x9a,0xcc,0x7b,0xaa,0x3b,0xb7,0x63,0xab,0x71,0x25,0xc7,0x83,0xcc,0xd6,0xb8,0xd2,0xa7,0x85, + 0x3e,0x35,0xf8,0x2a,0x10,0x23,0x5f,0xb1,0xd7,0x04,0x13,0x80,0x9c,0x12,0x81,0x19,0x68,0x63,0x80,0xc6, + 0xc4,0xf5,0x73,0xe4,0x43,0xf6,0x69,0xc9,0x67,0x77,0x2a,0x5e,0x07,0xd1,0x98,0xd0,0x26,0xf1,0x91,0x67, + 0xf3,0x72,0xf2,0x51,0xe3,0x06,0xdb,0x31,0x5a,0x44,0x2f,0x73,0xd3,0xa1,0x89,0x2d,0x35,0xdb,0xbd,0xc2, + 0x25,0xed,0x86,0x08,0x49,0x08,0x41,0xd1,0x89,0xd0,0x67,0xf2,0x9b,0x6d,0x5d,0x22,0xad,0x6f,0x1d,0xd1, + 0x48,0x3a,0xf1,0xe2,0x30,0xc4,0xc7,0x01,0xc7,0x06,0x1e,0xc9,0x35,0x20,0xbd,0xd7,0x4a,0xdd,0x94,0x26, + 0x0a,0xbd,0x16,0xf3,0xcd,0x5b,0xf7,0x54,0x1f,0x97,0x22,0x20,0x1b,0x81,0xf7,0xa5,0x32,0xbb,0x73,0xc4, + 0x93,0xa6,0xfd,0x71,0x95,0x56,0xb8,0x5a,0x23,0xe5,0x50,0x96,0xb4,0x4c,0x35,0x51,0xd6,0xc2,0xdb,0x11, + 0x7d,0x2d,0x1f,0x11,0x91,0x6d,0xd9,0x3c,0x4e,0xd4,0x2f,0x70,0x6c,0x19,0x84,0xa5,0x60,0x54,0x82,0x7f, + 0x21,0x73,0x70,0x1c,0x59,0xf2,0xc8,0xf7,0xec,0xd9,0xa2,0x2f,0x74,0xb1,0x48,0xd0,0x48,0x39,0xa4,0xb3, + 0x63,0x7c,0x97,0xd9,0x47,0x6e,0x85,0x1e,0xd0,0x82,0xc9,0xb5,0xb4,0x29,0xb5,0xe4,0x98,0xcb,0x9e,0x4a, + 0x1d,0x39,0x2c,0x7b,0x71,0x43,0x38,0xde,0x40,0xee,0x64,0x5c,0xb7,0xb9,0x82,0x13,0x1b,0x15,0x49,0xa2, + 0x7a,0x8c,0x0c,0x59,0x08,0xe8,0x8f,0x94,0x96,0xec,0x31,0xc9,0x09,0x67,0x17,0x60,0x41,0xf1,0x54,0x09, + 0xc4,0xb5,0x7e,0xa6,0x33,0xe9,0x89,0x33,0xe9,0xd7,0xcb,0xe4,0xdd,0xea,0x4a,0xf0,0x6b,0x0c,0x34,0x21, + 0x25,0x96,0xec,0x5d,0x88,0x4c,0x7a,0xf2,0xd2,0x3d,0x06,0x18,0xb9,0x77,0x21,0x2c,0x65,0xaf,0x22,0x20, + 0x60,0x5a,0x8c,0xbb,0x4e,0xd2,0x94,0x12,0x92,0x4d,0x1f,0x88,0xf6,0xec,0xdb,0xac,0x78,0xe6,0xdd,0xfd, + 0x0d,0x79,0xd0,0x20,0xf1,0xb3,0x8e,0xd3,0x93,0x30,0xd3,0xe8,0x44,0x9f,0xa0,0xdc,0x3a,0x3f,0x13,0x97, + 0x35,0x98,0x17,0x26,0x47,0xcf,0x9b,0xd2,0xfe,0x9e,0xba,0xa0,0x31,0xfa,0xb7,0x65,0x25,0x5e,0xaf,0x2d, + 0x2b,0x8e,0x82,0x52,0x18,0x7c,0x9d,0x4e,0x50,0xbb,0x87,0x06,0xd2,0xcc,0xe4,0xf8,0x3e,0x87,0x5e,0x79, + 0x3f,0x59,0x31,0xfe,0x6e,0x7d,0xe5,0x48,0x0c,0x21,0xf3,0x8c,0x94,0x4f,0x77,0x8f,0xef,0x69,0x09,0x06, + 0x7e,0x39,0xfb,0xa5,0x0b,0x7f,0x2a,0x85,0x21,0xfc,0xf3,0x53,0x99,0x88,0x0b,0xbc,0x84,0xf8,0x74,0x45, + 0xfc,0x4f,0x2b,0x98,0x4a,0x71,0x1b,0x4b,0xb3,0xd3,0x45,0x6e,0xee,0xde,0x02,0x4d,0x3c,0xb6,0x49,0xb9, + 0x71,0x98,0xb3,0xeb,0x4e,0x45,0xfb,0x1c,0x12,0x62,0x36,0x76,0xa5,0x2d,0x5e,0x6a,0xd2,0x11,0x76,0xdf, + 0x6d,0xd2,0xb1,0x6c,0x93,0x8e,0x2b,0xaf,0xc0,0xfd,0x4e,0x01,0x26,0x1d,0xcb,0xdb,0x48,0xc7,0xba,0x43, + 0x3a,0x4e,0x06,0xf3,0xc1,0xaa,0x45,0x3a,0xea,0xd0,0xb8,0x42,0x3b,0xd2,0x1e,0xba,0x11,0xc0,0xc7,0x54, + 0xce,0x8a,0xd8,0xfb,0x54,0x3b,0x40,0x14,0x6e,0x1d,0xa2,0x56,0x45,0x61,0x4b,0x36,0xcb,0x66,0x28,0x63, + 0xa2,0x70,0x67,0xfc,0x67,0x10,0x10,0x02,0x0e,0x6b,0x21,0x53,0x5b,0x17,0x38,0x03,0x19,0xbb,0xb7,0xb8, + 0xaf,0x48,0xac,0xc9,0x5b,0xf4,0x71,0x23,0x38,0xbf,0x45,0xdb,0x62,0x2f,0xe3,0xda,0x14,0x60,0xe7,0x36, + 0x27,0x4e,0x27,0x7b,0x04,0x78,0xd0,0xe1,0xc6,0x19,0x6c,0xf8,0x39,0x36,0x4e,0x89,0x83,0xcc,0x0f,0x28, + 0x4e,0x83,0x76,0x7e,0x88,0x36,0xcb,0x24,0x0d,0x82,0x36,0x82,0xb3,0xd1,0xcb,0x6d,0xa2,0xdd,0x1a,0x6d, + 0x2a,0x6b,0x2b,0x7a,0x45,0xe3,0x7b,0x6b,0xd8,0xd0,0x9d,0x07,0x1c,0x43,0xe7,0x50,0x02,0xf7,0xb1,0x95, + 0x9a,0x76,0x1d,0x2d,0x38,0x6c,0x4e,0x69,0xa2,0x03,0x6a,0x4e,0xaf,0xdd,0x46,0x6c,0xd8,0x30,0x4f,0xb0, + 0x41,0xac,0x83,0x0e,0xa0,0x8d,0x8e,0x75,0xd9,0xad,0x63,0x64,0x77,0x09,0x9e,0x5b,0x98,0xf8,0x56,0xa5, + 0xc2,0xc0,0xb6,0x67,0x1a,0xfe,0x99,0x84,0x65,0x1b,0x8e,0x5d,0x88,0x79,0x66,0x17,0x78,0x8b,0x89,0x73, + 0x4f,0xde,0x75,0x4f,0xdd,0xb9,0xa7,0x02,0x4d,0x89,0x67,0xc3,0xab,0x2a,0x5d,0xca,0xd5,0xf6,0x50,0x9c, + 0xd8,0x57,0x78,0xaa,0xe8,0x5c,0xab,0x54,0xf4,0x8a,0xd8,0x34,0x2e,0xe7,0xdd,0xd3,0x54,0x5b,0xe2,0xc4, + 0x8f,0x54,0x64,0xe6,0x58,0x62,0x77,0xfb,0x51,0xac,0xd2,0xa4,0xf4,0x26,0xbe,0xf4,0xfc,0x86,0x78,0x2b, + 0xb7,0x98,0x9f,0x54,0x6c,0xab,0x84,0xd7,0x31,0xef,0xc6,0x75,0xb4,0x5a,0xaf,0x9b,0x22,0x0a,0x53,0xd5, + 0x18,0xbb,0x9b,0xa2,0x13,0x75,0xbb,0x7d,0xc1,0xfc,0xd6,0xd5,0x38,0x36,0x90,0x63,0x65,0xbb,0x93,0x6b, + 0x38,0xa0,0xd7,0x09,0x2e,0x5c,0x42,0xe0,0x27,0x9f,0x36,0x81,0x6f,0x45,0x9b,0x56,0x29,0x17,0x59,0x1f, + 0xc6,0x9a,0x00,0x7d,0x6b,0xfa,0x26,0x02,0xa9,0x78,0x5f,0x93,0x89,0xec,0x12,0xf4,0x3f,0xae,0xb6,0xf1, + 0x6b,0x65,0x23,0xda,0xc3,0xc8,0xbb,0x6a,0x2d,0x2c,0xd9,0xba,0xf4,0xfa,0x2c,0x7b,0x6c,0xb9,0xa0,0x98, + 0x03,0xda,0x76,0x1d,0xa3,0x8c,0x21,0xa9,0x30,0x90,0x34,0xe6,0xb1,0x26,0x42,0xe3,0x2f,0x6c,0x12,0x54, + 0xb0,0x36,0x6c,0xde,0x18,0xbe,0xd6,0x0a,0x54,0xe0,0x16,0x4d,0x50,0x49,0xf8,0x65,0x76,0x49,0x8e,0x83, + 0xd3,0x4b,0x50,0xf6,0xf7,0xa1,0x29,0x28,0x20,0xed,0xe6,0xca,0x0b,0x6f,0xcf,0x12,0xf6,0x09,0xbb,0xa2, + 0x10,0xa9,0x21,0x8a,0x2c,0x33,0x47,0xe0,0x64,0x54,0x20,0x10,0x08,0x96,0xb7,0x9d,0x0c,0x93,0x5e,0x79, + 0x20,0x61,0x3e,0xc6,0xda,0x35,0x48,0x14,0x4f,0xa8,0x31,0xf1,0x3f,0xb5,0x5a,0x3f,0x96,0x3c,0x10,0x02, + 0xec,0x51,0x75,0xb5,0xb9,0x6c,0xcf,0x99,0xb5,0xa3,0x4a,0x84,0x34,0xe1,0xf3,0x57,0x1b,0x37,0x22,0x52, + 0xad,0x0c,0xc9,0x17,0xdf,0x1d,0xac,0x10,0xd7,0xcf,0x48,0xb5,0x54,0xe0,0xee,0x1a,0xf7,0x48,0x28,0xcf, + 0x1b,0xb6,0x15,0x4c,0xc2,0x6d,0xee,0x5f,0x57,0xf7,0x0f,0xee,0xff,0xeb,0xde,0xb9,0x0a,0x7e,0x95,0xc7, + 0x20,0xea,0x64,0x7e,0xed,0x32,0xbf,0xf6,0x2f,0xcd,0x9c,0x69,0x58,0x80,0x6f,0x9c,0x17,0x4b,0xfe,0x99, + 0x9b,0x65,0x77,0x79,0xaa,0xed,0x9b,0x68,0x27,0xb2,0xaa,0x82,0xb2,0x97,0xb0,0x71,0x0c,0x6f,0xd9,0x73, + 0xff,0x26,0x47,0xaf,0x9f,0xe1,0xbb,0x32,0x79,0x57,0xfe,0x49,0x3c,0x4b,0x44,0x8d,0xd5,0x3a,0xa4,0x24, + 0x1b,0xdf,0x7d,0x90,0xee,0x5c,0x40,0x81,0x1b,0xfc,0x5a,0x04,0xf7,0xbe,0xb9,0x1b,0xdf,0x7d,0x40,0xa5, + 0x08,0x6b,0xe8,0x77,0xf5,0xae,0x74,0xe5,0x9d,0x8f,0xcb,0xde,0xff,0x39,0x3c,0x18,0x05,0xd1,0x37,0x07, + 0x6c,0xc4,0xb7,0xb4,0xf7,0x3a,0xce,0xaa,0x2c,0xfb,0x23,0x0b,0x11,0x92,0xf8,0xc2,0x26,0xba,0x40,0xdb, + 0xe6,0x6a,0x6c,0x75,0x59,0x24,0x73,0x91,0xa9,0x28,0x4b,0x1e,0x06,0x2c,0x0c,0x58,0x70,0x0e,0x1d,0xd2, + 0x8a,0x7a,0xa5,0xb8,0x84,0x53,0xb7,0x2a,0xa8,0x37,0xd5,0x79,0x4f,0xcd,0x17,0x69,0xed,0x5d,0x05,0xa9, + 0xae,0x8b,0xe4,0xde,0x7e,0xf8,0xeb,0x55,0x44,0x6b,0x71,0x56,0x24,0xd3,0xde,0x08,0x21,0x76,0xdd,0xae, + 0x0b,0xd5,0xbb,0x5d,0x9b,0x31,0xcc,0x10,0xde,0x2f,0x97,0xb0,0x4b,0xae,0x89,0x47,0x42,0xa8,0x52,0x18, + 0x94,0x9e,0xde,0x5a,0xa5,0x0e,0x09,0x73,0x10,0xb5,0x3f,0x1c,0x38,0xfd,0x21,0x7d,0x7e,0x45,0xbd,0xfb, + 0xf5,0x51,0x78,0xfc,0x70,0xff,0xdf,0x27,0xe8,0xe1,0xd1,0x9f,0xf6,0xf0,0xaa,0x50,0xc1,0xfe,0x9d,0xc3, + 0x00,0xd5,0xbe,0x28,0xaf,0x4c,0xb5,0x54,0xd7,0xc7,0xa2,0xc5,0x90,0x39,0xdb,0x84,0xdd,0xc3,0x8d,0xfa, + 0xd4,0xd6,0x03,0xd9,0xd0,0x28,0xea,0x31,0xb1,0xda,0xa0,0xa4,0xf7,0x39,0x18,0x79,0xb5,0x6f,0x2e,0x18, + 0x0c,0xd4,0xc3,0x22,0x39,0x0e,0xbc,0x35,0x71,0x8c,0x5b,0x60,0xae,0x01,0x0c,0x4e,0xd4,0x3b,0x94,0x12, + 0xeb,0xc6,0xc7,0x0c,0x63,0x94,0x29,0xc0,0x46,0x55,0xe8,0x0c,0x36,0x99,0x86,0x7c,0x5d,0x4c,0xa7,0x6d, + 0xfa,0x7b,0x1d,0xd3,0xd1,0xde,0x3f,0x6b,0x32,0x9e,0x48,0xc8,0x5e,0xb4,0x29,0x4f,0x9c,0xe7,0xee,0x2d, + 0x46,0xba,0xff,0x26,0x57,0xeb,0x88,0x2f,0x37,0xc4,0x5b,0x77,0x8a,0xe4,0x46,0x88,0x88,0x97,0xb8,0x89, + 0x9e,0x40,0x8d,0x0a,0x9e,0xe7,0xc4,0x71,0xf6,0xdd,0x3a,0x5a,0xe7,0x73,0xd8,0x50,0x20,0x62,0x53,0x55, + 0x4e,0x57,0x3c,0x49,0x47,0xf9,0x12,0x09,0xe6,0x0a,0x5c,0xce,0xcc,0x2a,0xc8,0x74,0x60,0xbd,0x84,0x57, + 0x6e,0xf3,0x3b,0xb9,0x1b,0x95,0x7d,0x23,0x14,0x48,0xfa,0x56,0x42,0x7e,0x5e,0xd0,0x60,0xa6,0x7a,0xd7, + 0x11,0x1d,0x72,0xa2,0xcc,0x85,0x88,0xbd,0x1d,0x69,0xc5,0x84,0x8f,0x3f,0x16,0x5e,0x02,0x1c,0xa5,0x24, + 0xe5,0x7d,0xf1,0xb1,0x28,0xaf,0x0a,0x5d,0x29,0xd2,0x3a,0x21,0xe6,0xe3,0x73,0xd5,0x17,0x41,0x3e,0xfe, + 0x54,0x28,0xef,0x62,0x42,0x7c,0x78,0x3a,0xcf,0x67,0xd9,0xe4,0x7a,0x32,0xcf,0x70,0x17,0x73,0x1d,0xbf, + 0x2b,0x36,0xea,0x35,0x41,0xe4,0xf1,0x7f,0x7e,0xbd,0x1a,0xde,0x39,0xb9,0xa7,0x9e,0x16,0x88,0xd4,0xcf, + 0x7b,0xeb,0xf4,0x94,0xc8,0xb0,0x9b,0x8d,0x7a,0x43,0x49,0x8e,0x60,0xb5,0xd7,0xda,0x89,0xdf,0x8c,0xfa, + 0xad,0x3f,0xf7,0xa7,0x9f,0x9f,0x16,0x97,0x79,0x55,0x16,0xfa,0x8e,0xf0,0xdd,0x56,0x02,0x44,0x78,0xdc, + 0x53,0xf5,0xa4,0x48,0x7e,0x2b,0xf6,0xf6,0xfa,0x73,0xdb,0x00,0xaf,0x9e,0x17,0xc9,0x1b,0x2a,0xab,0x1d, + 0x76,0x8a,0xf4,0x32,0x3f,0x07,0x97,0x30,0x5c,0xd1,0x84,0x3d,0x3c,0xe7,0x9b,0x98,0x5a,0xe5,0x5f,0x14, + 0xc9,0x73,0x2a,0x7f,0x6f,0x51,0xe7,0xd9,0x9a,0x70,0xcf,0x94,0x8a,0x68,0x8b,0xab,0xe7,0x45,0xa4,0x9e, + 0x49,0xf6,0x73,0xcf,0x5f,0x10,0x25,0x77,0xbe,0x1e,0x1e,0x00,0xbb,0xa9,0x57,0xdb,0xf9,0xd9,0xf4,0x3c, + 0xbb,0xc7,0x99,0x2f,0xb7,0x33,0x09,0x0e,0x2a,0x3a,0xe7,0x90,0x4d,0xa7,0x99,0x79,0xa3,0x03,0xed,0x49, + 0xa1,0xde,0xea,0xae,0xe4,0xcb,0x0b,0xda,0x5b,0xeb,0x7c,0x99,0x4e,0xe9,0x4f,0x49,0x7f,0xca,0xda,0x75, + 0x09,0x2e,0xe3,0x65,0xad,0x3f,0xf9,0xa9,0x48,0x42,0xfe,0x66,0x72,0x51,0x11,0x89,0xf2,0xeb,0xbd,0x5f, + 0xa7,0x03,0xaf,0xf7,0x37,0x9b,0x21,0xdf,0xbe,0x1b,0xa9,0x47,0x50,0x46,0x83,0xaa,0x7a,0x53,0x70,0x88, + 0x4a,0x60,0xe5,0x0f,0x6c,0xd7,0xd0,0x7f,0x55,0xf1,0x07,0xc2,0x27,0x3a,0xf6,0x41,0xa0,0x6e,0x70,0xd5, + 0xb1,0x47,0x01,0xa3,0xb2,0x83,0x0d,0xf0,0x94,0xcc,0xf2,0x76,0x40,0x3d,0xf4,0x60,0xdf,0x7e,0xcf,0x50, + 0xff,0xa1,0x88,0x3c,0xa7,0x6e,0xb4,0xff,0xbe,0x50,0xdf,0x15,0xea,0x0f,0x0f,0x05,0x75,0x68,0x01,0x1a, + 0xe3,0x7b,0x18,0xc6,0xbc,0xa7,0xf6,0xb0,0xa8,0x7d,0x30,0x74,0x3e,0x2f,0xcf,0xd2,0x39,0x68,0x52,0x46, + 0x54,0x98,0x17,0x49,0x02,0xee,0x07,0x3b,0x38,0xcc,0x8a,0xcb,0xe1,0x87,0xf7,0x4f,0x4f,0x9f,0xbe,0xfa, + 0x10,0xa9,0xf7,0x04,0xcb,0xbf,0xb7,0x40,0xe4,0xf4,0x14,0x99,0x4f,0x9e,0x7e,0x38,0x7a,0xfd,0xfa,0xc5, + 0xbb,0xd3,0x6f,0x5f,0xbc,0x7e,0xf4,0xf0,0xc5,0xe9,0x77,0xaf,0x5f,0xff,0x70,0x7a,0xaa,0x7e,0xe8,0x07, + 0xdc,0x77,0xd7,0x8b,0xb3,0x92,0x1a,0x3d,0x0a,0xe5,0x29,0xea,0xef,0x9b,0xbe,0xb2,0x18,0xe5,0x3a,0xb7, + 0x17,0x47,0xa3,0xef,0x6e,0xa9,0x39,0xe3,0xe2,0xf4,0x83,0x1b,0x1a,0x5a,0xb3,0xde,0x8a,0x75,0x21,0x57, + 0xf9,0x65,0x4d,0x5f,0xe4,0x55,0x1b,0x2d,0xbf,0x7d,0xfc,0xf5,0x60,0xfa,0x5d,0x8e,0x81,0xa2,0xab,0x82, + 0x12,0x53,0xf9,0xdf,0xd0,0xb2,0xb6,0xbe,0xf1,0x0a,0x62,0xfd,0x5b,0x65,0x09,0x59,0xa4,0x95,0xbf,0x90, + 0x9f,0xed,0xa0,0xca,0x36,0xda,0x84,0xe0,0xfb,0x22,0x39,0x57,0xdf,0x82,0x21,0xf8,0xb9,0xd8,0xfa,0x3c, + 0x9f,0x26,0xdf,0x12,0xdd,0xa6,0xaf,0x4a,0x5c,0x9d,0x41,0x3d,0xbf,0x19,0xfd,0x5c,0xb4,0xfb,0xf8,0x6e, + 0x75,0xd6,0xd3,0x4d,0x2a,0xad,0x83,0xf5,0x51,0x73,0xad,0x4f,0xc4,0xd1,0xb0,0xfb,0xd5,0x2a,0xb4,0xdf, + 0xa9,0xad,0x4f,0xe4,0xa2,0x6c,0xbf,0x7f,0xde,0x3d,0xda,0xf6,0x11,0x9d,0x79,0x92,0x2d,0x45,0xd0,0xde, + 0xa9,0xa1,0x28,0x1b,0x22,0xac,0xfb,0x2f,0xcc,0x73,0x1d,0xb6,0x92,0x56,0xb6,0x77,0xca,0xba,0xf6,0x4e, + 0x7c,0x19,0xfc,0xca,0x5e,0x9f,0x67,0x1b,0x66,0xb3,0x78,0x9e,0xce,0x7f,0x17,0x08,0xa7,0xfc,0x4b,0xf7, + 0xc8,0x77,0xca,0x30,0x3d,0x3d,0x70,0x95,0xd1,0x97,0x5c,0xf2,0xed,0x4f,0xdd,0x3b,0x2e,0xf5,0xed,0x95, + 0x7c,0x87,0x94,0xbe,0xef,0x32,0x9b,0x2f,0xcc,0x65,0x97,0x45,0x6d,0xae,0xee,0x90,0xaf,0xf4,0x65,0x53, + 0xa5,0xbc,0xba,0xdb,0xa7,0xfc,0x42,0xee,0x16,0xaa,0x76,0xaa,0xb9,0x17,0xd2,0x4f,0xe5,0x1b,0x4c,0x61, + 0xce,0x0b,0x2a,0x4f,0x37,0xd1,0x36,0x6b,0x35,0x17,0x5b,0x6e,0x19,0x10,0xb7,0xea,0xd1,0x57,0x74,0xfa, + 0x49,0x55,0x0a,0xf7,0x08,0x7d,0x37,0xa7,0xbd,0x36,0xd5,0x26,0x38,0xbf,0x2d,0x56,0xa7,0x48,0xa2,0x09, + 0x5b,0xee,0x8a,0x3d,0x9e,0x53,0xa3,0x53,0x2f,0x81,0x6f,0x5a,0x35,0xaf,0xad,0x18,0xe0,0xb5,0x97,0xc6, + 0x17,0xce,0xf9,0xbd,0xd9,0x0e,0x22,0x0e,0x93,0x21,0xf5,0x23,0x21,0x66,0x5e,0x8a,0x18,0xd1,0xf1,0x66, + 0xf9,0xf9,0x8a,0x6f,0x29,0x8f,0x81,0x74,0x47,0x3f,0x16,0xb2,0x4c,0x7c,0x43,0xfd,0x36,0xe6,0xec,0x9f, + 0x96,0x4d,0xef,0x8d,0xf4,0x44,0xf9,0x84,0xbf,0x78,0x50,0x4a,0x0d,0xcb,0xae,0xcc,0x3a,0x37,0x93,0x18, + 0x6c,0xcc,0xf7,0x58,0x70,0x7c,0x13,0x61,0xb3,0xe4,0xd6,0x18,0x67,0x1a,0xc7,0xab,0x8e,0x98,0x37,0xde, + 0xa4,0xd1,0x50,0x37,0xaa,0xa9,0x92,0xce,0x9d,0x3a,0xaa,0xa8,0x3a,0xa8,0xa1,0xa9,0xa2,0xd1,0x71,0x80, + 0x3d,0x1b,0x20,0xe4,0xf5,0xd2,0xb3,0xc3,0xd0,0xe1,0xd3,0x90,0xc2,0xe1,0xc0,0xf0,0x50,0xc2,0x71,0x2c, + 0xa8,0x60,0xba,0x5f,0x67,0x30,0xcf,0xe8,0x31,0xcb,0x93,0x5e,0x36,0x15,0xcc,0x03,0xae,0xc2,0xa2,0x52, + 0x59,0x7f,0x00,0xed,0x63,0xdc,0x1f,0x66,0x43,0x05,0x59,0x99,0xc4,0xfe,0xfe,0x28,0xe2,0xfb,0x6d,0x6d, + 0x96,0xb5,0xf8,0x46,0x24,0x79,0xed,0x44,0x8a,0x19,0x87,0x8f,0x86,0xbe,0x9b,0x5b,0x42,0x4b,0x8c,0x74, + 0x60,0xcb,0x4c,0x02,0x5b,0xca,0xb0,0x62,0x7e,0x34,0x83,0x89,0x11,0xcf,0xdd,0xc5,0x99,0x34,0x43,0x43, + 0xb2,0x46,0x04,0xf7,0x9d,0xf8,0x08,0xf2,0x98,0xf2,0x8c,0xcf,0x38,0x73,0x39,0xb6,0x4a,0x81,0x97,0x34, + 0x66,0x81,0x9d,0x14,0x38,0x0f,0xf1,0x5d,0xb1,0x53,0x4b,0x30,0xe2,0x71,0x3d,0x4c,0x0b,0xd2,0x34,0x10, + 0x49,0x59,0x25,0x37,0xf5,0x45,0xb9,0x9a,0x4f,0x69,0xaf,0xd2,0x0c,0x36,0x80,0x2d,0xd5,0xb1,0xcc,0xe5, + 0xe1,0x48,0xf0,0x12,0x83,0x2b,0xb2,0x25,0xaf,0xf9,0xcf,0x1a,0x3f,0x5c,0x2e,0xd8,0x8d,0x97,0xb0,0xd5, + 0x95,0xbe,0x3c,0x99,0x86,0x1e,0xe8,0x0b,0x98,0xb7,0xe2,0x8e,0x84,0xe1,0xd3,0xb6,0x44,0x48,0x42,0x1a, + 0x5a,0x4a,0x32,0x69,0x36,0x71,0x37,0xdb,0xbb,0x49,0xb9,0x57,0x0d,0xa4,0xdd,0x69,0xb1,0x2e,0x57,0xa2, + 0xe2,0x41,0xcc,0x67,0xa2,0x4d,0x20,0x12,0xad,0x54,0x55,0xe9,0x8b,0x6e,0x5b,0x73,0x97,0x21,0x8a,0x26, + 0x52,0xaf,0xd2,0xf9,0xc7,0x90,0x23,0xb1,0x57,0x1e,0xae,0x46,0xea,0x2d,0x26,0xca,0x9d,0x8b,0xe5,0x45, + 0xc6,0xd0,0xf8,0x32,0x86,0x77,0xe8,0x39,0xa2,0xa8,0x13,0xb2,0xa6,0x9f,0x13,0xb8,0x9c,0xfb,0x95,0xfb, + 0x1d,0xb9,0xed,0xb2,0xaa,0x3e,0xdc,0xff,0x50,0x6e,0xa8,0x92,0x1b,0x81,0xe9,0xa8,0xbd,0x63,0xe4,0xa1, + 0x1d,0x56,0x66,0x94,0x4a,0xd8,0x93,0x5b,0x98,0xbe,0x9d,0x62,0xfc,0x46,0xa7,0xc4,0x8d,0xef,0x55,0x6a, + 0x29,0x90,0x66,0x9c,0xc5,0x6f,0x44,0x8a,0x43,0x5c,0x5c,0xef,0xb6,0x4a,0xb1,0xa1,0x92,0xdf,0x88,0x00, + 0x7c,0x78,0x7b,0x81,0x41,0x50,0x07,0x27,0xc9,0x13,0x2a,0x44,0x3d,0x62,0x2a,0x74,0xeb,0x50,0x12,0x25, + 0x31,0xe1,0x95,0x9f,0xd8,0xfc,0xd9,0xde,0x35,0xd7,0x98,0xa4,0xc6,0x26,0x59,0xbb,0xb5,0x9d,0x36,0xd2, + 0xc8,0xd6,0xeb,0x9e,0x68,0xf3,0x8d,0x36,0x4f,0x24,0xf2,0xf6,0x12,0xb6,0x72,0x51,0xdb,0x1b,0xa3,0x31, + 0x92,0x4f,0xf8,0x62,0xa8,0x3a,0x01,0xcc,0x8c,0x52,0x62,0x40,0xba,0x17,0xe2,0xb1,0xf2,0xf0,0x38,0x3d, + 0x89,0xf8,0xb2,0xa1,0x24,0x1d,0xa7,0xc6,0xa5,0xbc,0x8e,0x3a,0x97,0xc4,0xd5,0xd1,0x98,0x38,0xb9,0xfa, + 0xc4,0xee,0xd8,0x0d,0xc6,0x2d,0xd1,0x43,0xe9,0x61,0x91,0x35,0x17,0xe5,0x94,0x1f,0xe5,0x0a,0x68,0x3c, + 0x4d,0x74,0x2c,0x81,0xfe,0x89,0xd9,0x1e,0x4e,0x5f,0x94,0x7d,0x43,0x30,0xf3,0x30,0x55,0x03,0xd3,0xc7, + 0x9c,0x03,0x35,0x98,0xf6,0x2f,0x89,0xa5,0x49,0xde,0x88,0x44,0xb6,0x52,0x93,0x4a,0xcd,0xab,0x8e,0x86, + 0xb6,0x4b,0x73,0x03,0x02,0x08,0x67,0xaf,0x70,0x0b,0x94,0x9a,0x71,0x08,0x36,0x0e,0xc4,0xc6,0xb6,0x30, + 0x3d,0x34,0x2b,0x51,0x79,0x36,0x1a,0x37,0x88,0x57,0xff,0x3d,0x8a,0x26,0x2d,0xb2,0xd0,0xcf,0x0b,0x3f, + 0x20,0x1c,0xb7,0x31,0xd0,0x73,0x15,0x5b,0xa7,0xbd,0x97,0x44,0xbe,0xa7,0xe7,0xd9,0xe3,0x8b,0xb4,0x28, + 0xb2,0xf9,0x7a,0xbd,0x7b,0x14,0xb6,0x93,0x40,0x77,0x9b,0xcb,0x8c,0xda,0x39,0x84,0xd6,0xea,0xa6,0x5a, + 0xe1,0x0c,0xe6,0xfb,0x8d,0xda,0xb9,0x56,0xce,0x14,0xf6,0xf4,0xcf,0xb8,0xd7,0x7d,0x80,0x2b,0x9d,0x33, + 0x2a,0x59,0x56,0x8c,0xfa,0xda,0x15,0xa9,0x8b,0x2a,0x59,0xd2,0x34,0xd3,0x61,0x74,0x7f,0xa4,0x1f,0x0e, + 0x87,0xe0,0x50,0xb9,0x54,0xf2,0x41,0xb5,0xab,0xbf,0x40,0x91,0xba,0xd1,0x95,0x40,0xd8,0xb3,0xb9,0x65, + 0x52,0x09,0x67,0x2f,0xf2,0x9a,0xe7,0x53,0x3f,0x6a,0xcb,0xdd,0xcb,0x2a,0xd1,0x09,0xe6,0x86,0x5c,0x22, + 0xa5,0xeb,0x56,0x2b,0x97,0x95,0x5c,0x37,0x4c,0xfc,0xce,0xdb,0xa2,0xe5,0x32,0x78,0x6e,0xa2,0x0d,0xd3, + 0x07,0x93,0x8a,0x81,0x62,0x51,0xa9,0x73,0x19,0x1a,0x31,0x63,0xd7,0x55,0x47,0xd0,0xa4,0xc5,0xa9,0x7b, + 0x81,0x8d,0xe3,0xcc,0xc2,0x2b,0xc2,0x50,0xc1,0xff,0x63,0xeb,0xf3,0x0c,0xe0,0x62,0x65,0x57,0x71,0x16, + 0x79,0x85,0x2a,0xc4,0x8d,0x95,0x42,0xc5,0x6d,0x85,0x8c,0x0d,0x1d,0xeb,0xe0,0xb3,0xa4,0x6a,0x95,0x53, + 0xb0,0x88,0x80,0x60,0x73,0x2b,0x1e,0x5f,0x03,0xf6,0xf3,0xac,0x92,0x6b,0x9b,0x4e,0x19,0x52,0xaf,0xf8, + 0xef,0x11,0x87,0x6a,0xfa,0xc8,0x50,0xfb,0x89,0xff,0x3e,0xc6,0xd9,0xf1,0x10,0x7f,0xde,0x55,0x3d,0x74, + 0xb1,0x39,0xe7,0x16,0x08,0x9e,0xce,0x5e,0x18,0xa7,0x8c,0xad,0x88,0x06,0x92,0x73,0xcc,0x25,0x18,0x5b, + 0x60,0x4e,0xae,0xc6,0xa1,0x3e,0x13,0xe9,0x50,0xdc,0xdd,0xad,0xf8,0x41,0x0e,0x1b,0xc8,0x1a,0x38,0x09, + 0x0f,0xfa,0x7e,0xf8,0xf4,0x8f,0x6b,0x4e,0xc2,0x83,0x66,0x68,0x88,0xf2,0xe3,0x24,0x3c,0xe8,0x03,0x89, + 0x2b,0x73,0x75,0xb8,0x4f,0xbd,0x2f,0x34,0x95,0x39,0x39,0x33,0x54,0x3a,0xb1,0x49,0x83,0xc1,0x43,0xdd, + 0x90,0x44,0x52,0xb3,0xd4,0xeb,0x34,0xa7,0x73,0xdf,0xd5,0x63,0x8f,0x71,0xb0,0x52,0x9a,0x98,0xcf,0xae, + 0x9e,0xf8,0xef,0x94,0xf9,0x9c,0x10,0x95,0x06,0x08,0xaf,0x48,0x37,0xd5,0x69,0x10,0x20,0x6e,0xef,0x89, + 0x4f,0xd0,0xc8,0x9d,0xf1,0x44,0x83,0x34,0x18,0x4b,0x1c,0xfa,0xaf,0x1d,0x9f,0x9d,0xdd,0xd7,0x85,0x88, + 0x2d,0x0c,0x98,0xc3,0x1d,0x4c,0x87,0x39,0x19,0x06,0xee,0xd6,0xc7,0x9e,0x03,0xb3,0xe7,0x10,0x6e,0xa1, + 0xcf,0x51,0x96,0xe8,0xb3,0xd8,0x5d,0x23,0xb7,0x61,0x2f,0x29,0xaf,0x3f,0xb8,0x28,0xaf,0xaf,0x77,0x11, + 0xdc,0xe2,0x95,0x47,0x09,0xd9,0xa9,0x34,0xb6,0x65,0xe6,0x33,0x04,0x9f,0x79,0xe7,0x9f,0xf4,0x1d,0xfa, + 0x9c,0xe9,0xea,0x91,0x54,0xa0,0x3c,0xf6,0xf1,0xdf,0x3a,0x9e,0x8f,0x4d,0x8a,0x3c,0xc6,0x4e,0x6e,0x78, + 0xc6,0xad,0x80,0x1a,0x48,0x39,0x70,0x5e,0x93,0x78,0x7d,0xd5,0xf7,0xb6,0x29,0x2b,0x5e,0x31,0x86,0xde, + 0x06,0x8a,0xa2,0xe6,0xa2,0x2a,0xaf,0xe8,0x10,0x79,0xcb,0xca,0xfa,0xbb,0xf2,0xd9,0x0e,0x4d,0xdf,0x8e, + 0x86,0xeb,0x1d,0x04,0xa1,0x6d,0x2f,0x29,0x4c,0x51,0xa2,0x0d,0xe1,0x24,0xaa,0xfc,0xfa,0xc6,0xc2,0xe6, + 0xde,0xde,0x77,0x61,0xab,0x83,0xe8,0x7d,0xb9,0x0c,0xf5,0x14,0x41,0x0a,0x50,0xac,0x96,0x80,0x27,0x17, + 0x0f,0x8f,0x8e,0x92,0xd6,0xbc,0x08,0x97,0xdc,0xe3,0x7c,0x93,0x11,0x24,0x8f,0xda,0x00,0x07,0xb9,0x45, + 0x08,0x7b,0xb8,0xb0,0x93,0x2e,0x71,0xbf,0x5a,0x10,0x6c,0xd8,0x7d,0x1f,0x8c,0xed,0xf7,0x46,0x52,0x20, + 0x9b,0x37,0xea,0x74,0xc9,0xeb,0xf7,0x67,0x58,0x74,0x6c,0x1b,0x7b,0xaf,0x3d,0x78,0x03,0xc3,0x5f,0x98, + 0x4c,0xb0,0x19,0x7d,0xfd,0xa7,0x71,0xe1,0xb6,0x03,0x27,0x79,0xd0,0x22,0x02,0xed,0x76,0xe1,0xba,0x3b, + 0xf2,0x77,0x60,0xbb,0xa6,0xad,0x9d,0xd8,0x49,0x10,0x09,0x4c,0x18,0x29,0x57,0x61,0xed,0xed,0x76,0x7f, + 0xa2,0xda,0xfb,0xbe,0x68,0x4f,0xa2,0x89,0x31,0xd9,0x99,0x21,0x91,0x3a,0x6c,0x49,0x68,0x78,0x23,0x78, + 0x88,0x66,0x57,0xef,0x07,0x60,0x2a,0x49,0xaf,0x56,0x54,0x38,0xbe,0x65,0xb1,0x75,0xe0,0xe8,0x24,0x39, + 0xc2,0x1d,0xce,0x0c,0xb7,0xfc,0x04,0xf4,0xf5,0xa9,0x65,0xf7,0x77,0x5a,0x59,0x53,0xc4,0x51,0xf1,0xcd, + 0xe3,0x6a,0x6f,0xef,0xb4,0xe2,0x9b,0xcb,0xa6,0xdf,0x70,0x4d,0x51,0x41,0x0b,0x42,0x85,0x74,0xb8,0xe8, + 0x62,0x70,0xa8,0x0e,0x20,0xc7,0xe1,0xc3,0xee,0xd4,0x5c,0x2a,0x19,0x8d,0x3e,0x62,0xa7,0xe3,0x74,0x38, + 0x50,0xef,0xc3,0x49,0xc6,0x0e,0x72,0x5a,0x5e,0xd3,0x1a,0x2f,0x75,0xdb,0x1f,0x2c,0x0c,0xd1,0x1d,0x76, + 0x35,0x51,0x4a,0xdc,0xd6,0x67,0x23,0xa3,0x5d,0x2d,0x4b,0x63,0x44,0xb1,0x5e,0xe7,0x7c,0x75,0x9c,0xdd, + 0x3a,0x2d,0x68,0x11,0x97,0x4d,0x53,0x6b,0x8b,0xc7,0x92,0x2d,0x5b,0xe9,0x4d,0x37,0x39,0x93,0xfd,0xad, + 0xb7,0xbf,0x62,0xba,0xdc,0x8a,0x51,0xdf,0x86,0x99,0x61,0xc4,0xd4,0x5d,0x63,0xa5,0xf1,0x97,0x76,0xb6, + 0xdc,0x55,0x7e,0x6b,0x0b,0x9b,0xce,0x74,0x64,0xe8,0x62,0x1f,0x00,0x78,0x48,0x91,0x27,0xc2,0x3f,0x75, + 0x20,0xca,0x68,0xd5,0xb2,0x2d,0x46,0xfb,0xb3,0x1d,0xe6,0x6f,0x2d,0xfd,0x79,0xd8,0x5d,0xaa,0x86,0xe0, + 0x7e,0x5a,0x5e,0x7d,0x76,0xbd,0xf4,0xe0,0x10,0xa8,0xe7,0x51,0x46,0x74,0xdf,0x13,0xa3,0x3f,0x5a,0xaf, + 0x57,0xa1,0xcd,0x34,0xc7,0xbc,0x30,0xb0,0xa3,0xbf,0xd5,0xb9,0xce,0xde,0x1e,0xb5,0x0e,0xe3,0xc3,0x8d, + 0xf0,0x6d,0x77,0x88,0x38,0xc9,0x8a,0xd5,0x22,0x33,0xf2,0x1c,0xd5,0x91,0xef,0x40,0x69,0x13,0x9f,0xab, + 0x1a,0x7f,0x37,0xea,0x35,0x15,0xc7,0x0e,0x03,0x73,0x3e,0xfa,0x94,0x85,0x8f,0x3d,0x89,0xab,0x70,0xfa, + 0x4f,0x2b,0xf5,0xa6,0x52,0xbf,0x55,0xea,0x49,0xa5,0x9e,0x53,0x69,0xb8,0xf0,0xfb,0x3c,0xb4,0xa6,0x70, + 0xf8,0x38,0xec,0xf7,0xd0,0xef,0x71,0xc1,0xcf,0x6b,0x3b,0x3d,0x51,0x9f,0x93,0x7e,0x12,0x4a,0x14,0xe6, + 0x9b,0x53,0x16,0xf3,0x48,0x26,0x3a,0xaf,0xbd,0x8e,0xcf,0x2a,0xa5,0xbd,0xe1,0x3f,0xc0,0x99,0x3f,0x4e, + 0xcd,0xeb,0xd3,0xf9,0x22,0xae,0x84,0x61,0x23,0x9a,0x2d,0x9b,0xe1,0x3d,0x97,0xf7,0x0d,0xae,0xa1,0x10, + 0xef,0xed,0xb6,0x59,0x8f,0x32,0xb7,0xbd,0x68,0x43,0x9e,0x64,0xa2,0x1f,0x54,0xdd,0xb5,0xdd,0xa1,0xac, + 0x4e,0x0a,0x61,0x43,0x22,0x58,0xb6,0x2f,0x18,0xe5,0x38,0x01,0xb8,0xb8,0x39,0x1a,0xde,0x61,0xed,0x63, + 0x08,0xfa,0x34,0xa3,0xee,0x68,0xe9,0x9c,0x77,0xc5,0x91,0xf6,0x29,0x87,0xb7,0xfd,0xc3,0xb9,0xdd,0xfc, + 0x08,0xca,0xf9,0x1c,0x50,0x98,0x71,0x74,0x84,0xb0,0xc4,0x35,0xf1,0x36,0x9e,0xe9,0x46,0x99,0x8c,0xb8, + 0xcd,0x6a,0x19,0x47,0xbb,0xad,0x20,0x06,0xbb,0x7d,0x84,0xa9,0x34,0xb4,0xbb,0x1b,0xe6,0x58,0x29,0x13, + 0x95,0x60,0x78,0x2a,0x13,0xf0,0x58,0x0b,0x6b,0xd7,0x6b,0x13,0xfa,0xd4,0x59,0xf3,0x71,0x79,0xef,0x9d, + 0xaf,0x2d,0xd0,0xa6,0x90,0xae,0x1e,0x6f,0x91,0x92,0x8a,0xe8,0x5c,0x09,0x7d,0xc5,0x8f,0xa7,0xfa,0xde, + 0xea,0xd0,0x3c,0x1a,0x61,0x2a,0xdf,0x91,0x74,0x5b,0x57,0x92,0x1c,0x99,0x72,0xcb,0x85,0xb9,0x1c,0xa8, + 0x7d,0x43,0xd8,0x12,0x97,0x56,0xdc,0xb1,0x57,0xd9,0x23,0x24,0x3f,0x25,0x35,0x30,0x6d,0xb1,0x95,0x8a, + 0x95,0xe5,0x4d,0x5e,0x0d,0x5b,0x22,0x2a,0x63,0x11,0x2c,0xac,0x3b,0x02,0xce,0xa0,0x9c,0xaa,0x93,0xd6, + 0x90,0x28,0x0d,0x0a,0x16,0x84,0x9e,0x56,0xe2,0x97,0x5c,0xfb,0x6e,0xc9,0x26,0x7e,0xcf,0xf1,0x84,0x38, + 0x7e,0x5c,0x5a,0xfe,0x2c,0x9c,0xab,0x6e,0xdb,0x72,0x49,0xde,0x76,0xfb,0x07,0x5b,0x25,0x9f,0xb0,0xf0, + 0x7c,0xe3,0x0c,0x9a,0x57,0xc9,0xf6,0x04,0xbb,0x98,0x10,0x9f,0xc9,0xc3,0x39,0x2c,0x57,0x3f,0xae,0xa2, + 0x4d,0xc9,0x13,0x7f,0xa7,0xe6,0xeb,0xeb,0x0b,0x58,0x28,0x7a,0x61,0xb2,0x29,0x83,0xa6,0x61,0xa2,0xd5, + 0xe4,0x88,0x93,0xe4,0x5f,0x5a,0x6c,0x37,0x69,0xcf,0xc6,0x55,0x5e,0x08,0x0b,0x7a,0xb6,0xab,0x00,0x88, + 0x73,0xd1,0x31,0x36,0x4a,0xc2,0x72,0x6d,0x1f,0xda,0x72,0x0f,0x91,0xbe,0xbc,0xae,0xea,0x6b,0x61,0x54, + 0xb5,0x62,0xa1,0x85,0xfe,0x2b,0x9b,0x5b,0x73,0x44,0x50,0xa3,0xf0,0x67,0x03,0xb7,0xf6,0xee,0x62,0x57, + 0x73,0xf7,0xcd,0x38,0x84,0xfb,0x6a,0x84,0xfb,0x95,0x2d,0x2e,0x25,0x46,0xcf,0xf8,0x64,0x46,0x71,0x8a, + 0x0a,0x77,0x0f,0x40,0xd1,0x69,0x9b,0x80,0x5e,0x5a,0x63,0xbb,0xa3,0x4d,0x0b,0xcf,0xb1,0x23,0x68,0xbb, + 0x27,0x56,0x52,0x29,0x46,0xae,0x82,0x44,0x43,0x96,0x4a,0x0d,0x4f,0xc5,0xe6,0xe1,0x79,0xe1,0xb8,0xad, + 0x12,0xb1,0x57,0x99,0xca,0xb3,0x7d,0x8d,0x10,0xa8,0xd2,0xeb,0xf9,0xc1,0xc8,0x93,0x66,0x8e,0x2a,0x62, + 0x59,0xee,0x74,0xaf,0x35,0x87,0x4c,0x13,0x17,0x66,0xda,0x8c,0xe3,0xea,0x84,0xb8,0x7b,0xf4,0xa0,0x65, + 0xdb,0xc0,0x64,0x0b,0xc6,0x1d,0x37,0xde,0x4d,0xc6,0x94,0xaa,0x5e,0x54,0x2d,0x21,0xe5,0x73,0xda,0xaf, + 0xcf,0xaa,0xe4,0x50,0xbd,0xaa,0x92,0xfb,0xea,0x25,0x1a,0x7e,0xea,0xeb,0xed,0xf8,0xe2,0xea,0x6d,0x5a, + 0x5c,0x30,0x90,0x1c,0x62,0xa7,0x2b,0x62,0x30,0x5f,0x56,0x46,0x0f,0x47,0xd3,0xf6,0x61,0xc5,0x43,0x96, + 0xa8,0x6c,0xde,0x19,0x30,0xee,0x43,0x76,0x0e,0xe6,0x3b,0xf2,0x2b,0x06,0x25,0x23,0xa4,0xb1,0xc6,0x9d, + 0x1c,0xea,0xc3,0xc7,0x4c,0xa3,0xc2,0xa0,0x1e,0x13,0xfc,0x41,0x15,0x5d,0xd4,0x65,0x13,0xe8,0x44,0x71, + 0x9f,0xd3,0x0b,0x72,0xe4,0xa0,0x41,0xb2,0x3c,0x69,0x61,0x5a,0xcf,0x0d,0x8a,0xde,0xf6,0x48,0xf2,0xd6, + 0x56,0xd9,0xda,0xad,0xb9,0xb7,0x7b,0x8a,0x6d,0x34,0x68,0x77,0x13,0x32,0x6d,0x3b,0x47,0xe9,0xb9,0x5c, + 0x87,0xab,0x1a,0x7d,0x88,0x31,0xb8,0xeb,0x83,0xcd,0xa4,0xa9,0x2d,0x37,0xc0,0x64,0xcb,0x2f,0x27,0x12, + 0xaa,0x95,0xd0,0x94,0xd0,0xdb,0x77,0xdc,0xdd,0xe6,0xaf,0xb3,0xd0,0x68,0xe5,0xcc,0xe4,0xd2,0x36,0xe3, + 0x70,0xd9,0x22,0xb8,0x90,0x55,0x94,0xb6,0xde,0x54,0xe5,0x27,0x11,0x0f,0xe8,0xe4,0x3a,0x9b,0xcf,0xe4, + 0xbd,0x6f,0x1b,0xd9,0x5b,0x33,0x0b,0xbb,0x18,0x4c,0xc3,0x23,0xdc,0xa4,0x0d,0xb7,0xa3,0x43,0x72,0x16, + 0x0e,0xd7,0x99,0x9c,0xbd,0x3d,0x4a,0x34,0x31,0x15,0x11,0x11,0xd8,0xbc,0x14,0xde,0x4e,0x30,0x4a,0xdb, + 0xcc,0xe4,0xf2,0x3d,0x47,0x77,0xaa,0xb2,0xa4,0xa7,0x71,0x21,0x4f,0x71,0x86,0x34,0xab,0xae,0x3c,0x3e, + 0xe1,0x22,0xd9,0x0c,0xb7,0xf6,0x78,0x02,0x1b,0x11,0x0f,0x65,0xde,0x26,0x34,0x09,0xdd,0x0d,0x7c,0xc8, + 0xa5,0x1c,0xaa,0xd2,0xef,0x16,0x41,0xd8,0x94,0x36,0xf9,0x08,0xd2,0x4e,0xcb,0x83,0xfc,0xf9,0xa2,0x92, + 0xfa,0x12,0xa1,0x3e,0x7b,0x1e,0xca,0x25,0xb6,0x10,0xb6,0x35,0x6c,0x35,0x91,0xe8,0x88,0x63,0xcd,0x67, + 0x8f,0x0e,0xe8,0x43,0xe5,0xf2,0xab,0x5b,0x1a,0x94,0xb3,0xdb,0x8c,0x4f,0xe0,0xe5,0xa8,0xca,0xb2,0xda, + 0x69,0x87,0x3b,0x4b,0x68,0x0f,0xfc,0xf6,0x86,0xa3,0x1d,0x58,0x60,0xa5,0x4c,0x94,0x4b,0xff,0x20,0x6a, + 0xba,0xa0,0x2e,0x77,0x26,0xfa,0xa4,0x46,0xc2,0x47,0xfc,0xe9,0xa4,0x65,0xec,0xad,0xfc,0x9b,0xa2,0xef, + 0x78,0x77,0xa9,0x22,0xde,0xc3,0x86,0xd7,0xd2,0xb7,0x44,0xfc,0xab,0xdf,0x1e,0x68,0x7d,0x48,0x2e,0x3d, + 0xe6,0xb0,0xf4,0x50,0xc0,0x04,0x42,0x83,0x04,0x10,0xe8,0xe5,0x1e,0xe9,0x21,0x41,0xad,0xa4,0x84,0xdd, + 0xbf,0x81,0x6a,0xb6,0xa6,0xdb,0x95,0x36,0xb3,0x5d,0xcb,0xb6,0x52,0x6d,0xa3,0xb6,0x48,0x85,0x79,0xb2, + 0xcc,0xc2,0x50,0x0b,0x0b,0xdd,0x02,0x8a,0x94,0x5f,0x49,0x5c,0x8e,0x1e,0x52,0x46,0xb5,0xae,0xad,0xed, + 0x09,0xff,0x4d,0xab,0xfa,0x2e,0x84,0xc6,0x32,0x27,0xf6,0x02,0x86,0x7c,0x3d,0xf4,0xc8,0x16,0x10,0x18, + 0x0e,0x06,0x6e,0xf3,0xdd,0x15,0x1f,0x35,0xc6,0xb9,0xe5,0xf3,0x68,0xda,0x21,0x3e,0x46,0x1a,0x95,0x25, + 0xb5,0x74,0x0c,0xfc,0x1e,0x6a,0x0b,0x1b,0xb0,0x44,0x60,0x20,0xb3,0xa1,0xb7,0xfa,0x5a,0x6a,0x4f,0x35, + 0xdb,0x74,0x89,0xcb,0x9d,0x78,0xaf,0x97,0x26,0xa4,0xed,0x33,0x98,0x4b,0xd3,0xd2,0x12,0x6f,0x83,0x91, + 0xc3,0x29,0x43,0xb1,0xbe,0x86,0xb0,0xd7,0x9c,0xc3,0xda,0x48,0x3f,0x02,0xd0,0xda,0x9d,0xa8,0x00,0x51, + 0x0a,0xe7,0xf9,0x9e,0x29,0x62,0x3f,0x27,0x4d,0x52,0xc2,0x18,0x5b,0xf4,0x30,0xdd,0x39,0xe8,0x8e,0xbe, + 0x7d,0x79,0x7d,0xc3,0x97,0xd7,0x27,0x22,0xaa,0x80,0x24,0x71,0x7c,0x1e,0x2f,0x43,0xd1,0xf2,0xc9,0xf5, + 0xc8,0xa6,0x5e,0x34,0x01,0x28,0x1c,0x7f,0x0e,0x7b,0x0a,0x9c,0x96,0x21,0xd2,0x4e,0x59,0x57,0xd7,0x2b, + 0x3c,0x6d,0xf7,0xd0,0x33,0x0a,0xce,0x34,0xc3,0xde,0x12,0x05,0xe8,0x3c,0x96,0x08,0x28,0x36,0xdd,0x0c, + 0x71,0x57,0xd5,0x0d,0x8b,0x3a,0xf9,0x9c,0xe0,0x0b,0x91,0x21,0x49,0xe3,0x9b,0xcd,0xfc,0xbb,0x0d,0x7c, + 0x50,0xe4,0x18,0xdf,0x5b,0x04,0x71,0x9a,0xf8,0x8c,0x83,0x1e,0xac,0x32,0x32,0x99,0x68,0x94,0x5a,0x71, + 0x18,0x22,0x59,0xa7,0x27,0x23,0xda,0x78,0x33,0x22,0x5b,0x11,0x5e,0xf3,0x8b,0x7f,0x8a,0xed,0x79,0x58, + 0x0f,0x82,0x20,0xf2,0xaf,0x34,0x3a,0x00,0xc1,0xf4,0xf5,0x57,0x09,0x5f,0x22,0xa9,0x57,0x18,0x3d,0xc7, + 0x15,0x9d,0x9b,0x87,0x42,0xe0,0x20,0xb4,0x49,0xfc,0x30,0x34,0x33,0x45,0x20,0x08,0xb0,0x6f,0xac,0xee, + 0xec,0x36,0x68,0x3e,0x35,0x05,0x7e,0x32,0x5b,0xa2,0x0f,0x15,0x57,0xc9,0x1f,0x88,0x50,0xde,0x0a,0xb7, + 0xd1,0x18,0xc6,0xab,0xc1,0x95,0x2d,0xbd,0x8b,0x53,0x8e,0xcb,0xb8,0x84,0xc0,0x63,0x04,0x71,0x52,0x81, + 0x1b,0x3d,0xc0,0x68,0xbe,0x83,0x27,0x27,0xed,0x9a,0x73,0x75,0x4e,0xbc,0x3b,0xdc,0x32,0x34,0xf4,0xae, + 0x30,0x36,0x04,0xfa,0x16,0xb7,0x3b,0xdb,0xf9,0x88,0x3d,0xbe,0xa8,0x7f,0x30,0x76,0xe1,0x87,0x5d,0xd1, + 0x7c,0xde,0xe2,0x37,0xe1,0x75,0xaf,0x62,0x40,0xdc,0x8e,0xdb,0x51,0xf9,0x77,0xae,0xe1,0xbe,0x47,0xb3, + 0x48,0x7c,0xdf,0xe3,0x54,0xdf,0x2e,0x8f,0xe0,0x21,0xc2,0xe1,0x9a,0x14,0xd3,0x35,0xb1,0x17,0x34,0x58, + 0x0f,0xcb,0xd6,0x74,0x51,0x9b,0x56,0x2a,0x46,0x42,0x0a,0xeb,0xb7,0x69,0xdf,0x3c,0xe1,0xbc,0x16,0x58, + 0x8d,0xe2,0xc2,0xc3,0xa1,0xc6,0x12,0x58,0x13,0x23,0xb6,0x66,0xf8,0x28,0x49,0x8a,0x70,0xe5,0xdd,0x5c, + 0x3a,0x2a,0xb6,0x37,0x16,0x2e,0xed,0xf9,0x9c,0x31,0x0c,0x03,0xce,0x66,0x64,0x03,0x39,0x15,0x9f,0x2d, + 0xcc,0xf0,0xde,0x6f,0x2e,0x73,0x1d,0x7a,0x94,0x33,0x9d,0x20,0x02,0xaa,0xb4,0x61,0xfe,0x4a,0x61,0x8d, + 0xb9,0x8a,0xa8,0x65,0x36,0x87,0xab,0xc1,0x92,0x3b,0xed,0x24,0xb9,0x2f,0x29,0x79,0xdd,0x4e,0xed,0xd3, + 0xa0,0xcb,0xd5,0x42,0x2e,0x54,0x0b,0x16,0x53,0xc8,0x42,0xb9,0xa5,0x19,0xb7,0x2e,0xc8,0x35,0xe8,0xa2, + 0x91,0x3a,0x30,0x91,0x4d,0x05,0x56,0xfd,0xa2,0xd6,0x7f,0x2f,0x77,0x9a,0xdc,0xc6,0x09,0x06,0x95,0x71, + 0x8c,0xf0,0xed,0x67,0x2a,0x2b,0x7a,0xe3,0x48,0xc5,0xe1,0x53,0xca,0x7e,0x52,0x25,0xf7,0xfe,0x83,0xbb, + 0xcb,0xe3,0x7b,0x2a,0xfc,0xad,0x4a,0x28,0xcd,0x1f,0x45,0x59,0x74,0x74,0xcf,0x5b,0xf0,0x9b,0x39,0xf8, + 0xbd,0x2d,0x00,0x9e,0x00,0x45,0xc1,0x41,0xd9,0x95,0xbe,0xfc,0x43,0x40,0x45,0x53,0x5d,0x74,0x60,0x1a, + 0x8d,0x81,0x4b,0xf1,0x82,0x39,0x35,0xe8,0xa7,0x51,0x37,0x01,0x8a,0xb9,0x64,0x9b,0x26,0xb3,0x9a,0x49, + 0x86,0x8b,0x8d,0xfa,0xad,0x6a,0x8f,0x63,0x92,0x75,0x46,0xe2,0x1c,0xf5,0x79,0x6a,0xee,0x94,0xb3,0x19, + 0x3b,0x70,0x2b,0x63,0x27,0x54,0x79,0x97,0x91,0x6d,0xf4,0x16,0xa6,0xaa,0xdd,0xd4,0xcf,0x88,0xaa,0x56, + 0x95,0x0c,0x0d,0x1f,0x56,0x5b,0xad,0xce,0x66,0xdb,0xd3,0xb7,0xdb,0xb5,0x5b,0x8a,0x5a,0xf0,0xfc,0x19, + 0x3a,0x94,0x5b,0xef,0x5b,0x80,0x9b,0xbf,0xb6,0x02,0x18,0xa0,0x5e,0x02,0x7f,0xaa,0x04,0xf5,0x74,0x66, + 0xbf,0x7d,0x2b,0x84,0x69,0xd9,0x59,0x75,0x74,0x17,0x4b,0x22,0xf3,0xeb,0x62,0x8d,0x05,0x89,0xd2,0xbf, + 0x36,0x92,0x0f,0x1d,0xca,0x0e,0xcb,0x24,0x87,0x91,0x06,0x4c,0x17,0x70,0x3f,0xd0,0xac,0xe8,0x5c,0x1e, + 0x99,0x6e,0x5d,0x1e,0xd9,0xb7,0xa6,0xd9,0xa2,0x8f,0x13,0x16,0x66,0x08,0xfc,0x4e,0x7b,0x30,0x05,0x9c, + 0xc8,0x0c,0xdf,0xfe,0xcd,0xe1,0x18,0x5e,0x39,0x71,0xe1,0x71,0xf8,0x17,0xa1,0x5d,0x18,0x6a,0x9e,0x0e, + 0xd5,0x03,0x0e,0x96,0x62,0x90,0xf1,0x83,0x92,0x11,0x32,0xdf,0x83,0x45,0xd8,0xd8,0xd8,0x92,0x01,0x11, + 0x5b,0x27,0x9f,0xb7,0x61,0x41,0xbb,0xf3,0x2e,0xb7,0xbb,0x73,0x21,0x2e,0x04,0x2c,0xdd,0x87,0x77,0xb4, + 0xc8,0xf1,0x3d,0x25,0x5b,0xf8,0xa6,0xbb,0xdd,0x4e,0xbb,0x5a,0x1b,0xa1,0x24,0x34,0x17,0xaf,0x79,0x1d, + 0xd8,0x07,0xb4,0x48,0x5b,0xed,0x7e,0x61,0xc2,0x14,0xca,0x62,0x67,0x73,0xa5,0xd5,0xd1,0xc2,0x68,0xd0, + 0x78,0xce,0x70,0x6b,0xa2,0xcf,0x3b,0x0a,0x33,0x41,0xfc,0xc3,0xd8,0x7c,0x63,0x2c,0xe2,0x58,0x14,0x7a, + 0x7a,0x0a,0x72,0x36,0xd2,0x6a,0xe0,0x9e,0x5c,0xdb,0x12,0xc7,0xe2,0x38,0xec,0x9c,0x0d,0x1e,0x53,0xdf, + 0xc9,0x10,0xb6,0xbe,0x7b,0x96,0xf8,0x12,0x81,0xbe,0xf2,0x3a,0x40,0x35,0x0d,0x21,0xe7,0xdb,0x05,0x89, + 0x51,0x3f,0xbd,0x5c,0x65,0xa7,0xa7,0x89,0xdb,0x1d,0xe8,0x8d,0xc1,0x0f,0xf4,0x68,0x4b,0x78,0x8c,0xf4, + 0x1d,0x2d,0x28,0x95,0x17,0x69,0xd3,0xbc,0xc9,0x84,0x68,0xad,0x90,0xce,0x73,0x92,0xd5,0x56,0xaa,0x9d, + 0x8e,0x3b,0x7c,0xca,0xbd,0x69,0x41,0xa6,0x27,0xee,0xdb,0x52,0xc0,0x18,0x92,0x5f,0xb7,0x69,0x5e,0x3d, + 0x33,0xe1,0x76,0x5d,0x5a,0x58,0xd4,0x51,0x96,0xec,0x1a,0xa0,0x68,0xb3,0xb7,0xb0,0x87,0x69,0xc1,0x86, + 0xf1,0xc0,0x89,0x54,0xff,0x07,0xee,0x66,0x47,0x7f,0x74,0xa3,0x5d,0x56,0x35,0xf4,0x28,0x5f,0xda,0x2b, + 0x63,0xe4,0x04,0x50,0xca,0x78,0xec,0x7d,0x4b,0x6e,0x71,0xcb,0x70,0xdd,0x49,0x34,0x72,0x86,0x74,0xad, + 0x22,0x56,0x0c,0xdc,0x58,0xdd,0x8d,0xcd,0x82,0x5d,0xb5,0x57,0x83,0x23,0x1b,0xb4,0x35,0xa7,0x69,0xcd, + 0x4b,0x32,0xb6,0x8f,0xfb,0xfb,0x76,0x2a,0xfc,0x59,0x50,0x7d,0xb0,0xad,0xb7,0x8e,0x76,0x2f,0x32,0x33, + 0xeb,0x7c,0x99,0x2c,0x08,0x13,0x66,0xfd,0x3c,0x00,0xfa,0x20,0xda,0x86,0xa7,0x96,0xb0,0x5e,0xac,0xed, + 0x37,0xea,0x13,0x71,0xa8,0x4f,0x3b,0xd8,0x21,0x52,0x4f,0x5b,0x80,0x51,0x10,0xaf,0x7f,0x94,0x4f,0xda, + 0x96,0x8f,0x1a,0xbb,0xbc,0xd7,0x7a,0x46,0x82,0xa6,0xd6,0x47,0x5a,0x18,0xb0,0x65,0xe6,0xa0,0x3c,0xb4, + 0x69,0x05,0x0e,0x55,0x62,0x44,0x5d,0xca,0x0b,0x98,0x2c,0x32,0x3e,0x8e,0x02,0xe7,0x70,0x52,0xd4,0x36, + 0xd7,0xd3,0x02,0x08,0x63,0xb5,0x67,0xde,0x61,0xb5,0x87,0xe0,0xfc,0xc6,0x37,0x6d,0xbd,0x4e,0x8f,0x0f, + 0x10,0xfd,0x8d,0xfe,0x42,0x99,0x23,0x04,0xaa,0x2d,0x9b,0x3c,0xa6,0x83,0x80,0x45,0xc5,0x4d,0x5b,0x60, + 0x91,0x9b,0x1b,0xda,0xda,0x1a,0x14,0xe8,0x25,0xcc,0x1e,0xce,0xd9,0xee,0x22,0x4b,0xb4,0xb5,0x45,0xd3, + 0x92,0x9f,0xa1,0x58,0x4b,0x7c,0xb1,0x85,0xc2,0x03,0x29,0x0d,0xcf,0xf8,0xc4,0x60,0x00,0x6b,0x8c,0x42, + 0x43,0x14,0x99,0x34,0x11,0xcc,0xbf,0x14,0x90,0x44,0x27,0x59,0x15,0x46,0x2e,0x7a,0x20,0xb4,0x2a,0x42, + 0xbf,0xbe,0xad,0xd4,0x4f,0x95,0x7a,0x54,0xa9,0x0f,0x55,0x72,0xac,0x3d,0x25,0xdf,0x66,0xe7,0x4f,0x3f, + 0x2d,0xc5,0xda,0xf6,0x44,0xbd,0xaf,0x92,0x9b,0x1f,0x8c,0x08,0x3b,0xd6,0x91,0x4d,0xfc,0x48,0xd1,0x66, + 0x8f,0xb1,0xbe,0x4e,0x82,0x5b,0xe4,0xc5,0x64,0xbe,0x9a,0x66,0xf1,0x07,0x42,0xcf,0x9f,0xec,0xe3,0x22, + 0xfd,0x14,0x9b,0x36,0xe4,0x6e,0x9b,0x93,0x8d,0xd2,0x84,0x7b,0xdc,0xc5,0x42,0x93,0x94,0xf6,0xd1,0xad, + 0x44,0x06,0x73,0x96,0xf0,0xdd,0x50,0x16,0xd6,0x5b,0x8e,0x2d,0x46,0xcf,0xca,0x8b,0x6d,0xab,0x8b,0x9e, + 0x1b,0x49,0x26,0xde,0x54,0xe6,0xaa,0x22,0x30,0xe4,0x9d,0xeb,0xba,0xee,0xc3,0xec,0x13,0xbd,0xb1,0x9c, + 0x0c,0xc9,0xc2,0xf1,0x6f,0x5a,0x82,0x06,0x91,0xd3,0xa7,0xbf,0xf3,0xe5,0xae,0xfb,0x72,0xa3,0xb6,0xe3, + 0x0c,0xf8,0x28,0x8f,0xc1,0x6d,0xa8,0x03,0x7c,0xd1,0x46,0xf8,0x45,0x0c,0x85,0xd9,0x9f,0x61,0x4b,0xe2, + 0xec,0x87,0xd9,0x7c,0x83,0x4b,0x08,0x94,0xa6,0x9c,0xf4,0xc0,0x60,0x66,0x2e,0xea,0x7b,0x7e,0xe5,0x7b, + 0x28,0x09,0xaa,0x77,0x89,0xed,0x44,0x97,0x72,0xc8,0x97,0x88,0xe4,0xd9,0xdb,0x23,0x84,0xf8,0x1b,0x6e, + 0xc9,0x76,0x51,0xf3,0x1b,0x13,0x1b,0xc8,0x4d,0xa1,0x36,0x03,0xc1,0x14,0xaa,0x89,0x11,0x67,0xf0,0x5d, + 0xc5,0x85,0x44,0x4e,0x9f,0xe4,0xd3,0x41,0x28,0x91,0x2b,0x82,0x38,0x46,0x80,0x36,0x8e,0xc5,0x12,0x40, + 0xcd,0x80,0xc8,0x4a,0xe9,0xf1,0xe4,0x64,0xdc,0xab,0x6d,0x42,0x4e,0x8f,0xc2,0x69,0x25,0x37,0x53,0x69, + 0xdb,0x9c,0x09,0x62,0x24,0xa3,0x24,0xd1,0xb9,0x36,0x49,0x96,0x95,0xa0,0x8d,0x08,0x11,0x43,0x4e,0xd9, + 0x30,0x80,0x26,0x8f,0xb6,0xf2,0x73,0xd0,0x71,0xb8,0xb3,0x54,0xb5,0xe8,0x8d,0xc8,0x88,0x5c,0x9c,0xe6, + 0x06,0x52,0x1f,0x33,0x09,0x74,0xee,0xec,0xed,0x65,0xf4,0x15,0x31,0x28,0xa3,0xb7,0x40,0x81,0x2a,0x7c, + 0x04,0x13,0xc1,0xe8,0x16,0x2e,0xf0,0x4e,0x71,0x1b,0xf3,0x47,0x9b,0x2f,0x10,0x75,0x7d,0x40,0x5b,0x30, + 0x52,0x6f,0xe9,0x90,0x6d,0xf2,0x79,0x72,0x03,0x07,0xcf,0xf8,0xfb,0x82,0x40,0xaa,0x21,0xc8,0x88,0x2f, + 0xd5,0x02,0x26,0xd9,0x7a,0x89,0xe3,0xe7,0x4a,0xea,0x79,0x2b,0xea,0x9b,0x2c,0x7e,0xb7,0xc1,0xa7,0xc2, + 0xf8,0xbd,0x85,0xd9,0xa0,0x66,0xf7,0xe8,0xd9,0xe2,0xe0,0xf7,0x78,0xeb,0x57,0x9b,0xc8,0xb6,0xba,0xc5, + 0xf0,0xda,0x7d,0x65,0x0c,0xb0,0xfb,0xdc,0xaf,0x22,0xaf,0xf6,0xe1,0xe9,0x59,0x5a,0x67,0x09,0x0d,0xee, + 0x32,0xf4,0x52,0xed,0x52,0xd6,0x84,0x52,0x64,0xac,0x75,0x76,0x0b,0x75,0x0c,0xf1,0x3a,0xad,0x37,0xae, + 0xf3,0x78,0x33,0x5f,0x9d,0xe7,0x1c,0x57,0xb5,0x3f,0x83,0x6f,0xb4,0x63,0x64,0x6f,0x3c,0x22,0x33,0xdc, + 0x0d,0xd1,0xe2,0x0b,0x84,0xec,0x6c,0x93,0xcf,0x8e,0x49,0xd2,0xde,0x13,0x5a,0x3e,0xd1,0x23,0x73,0x40, + 0xec,0x11,0x6e,0x74,0x6c,0x9f,0x34,0x71,0xcd,0x61,0xb5,0xfa,0xbe,0x80,0x1e,0xcb,0xbb,0x10,0x8c,0x79, + 0x36,0xdf,0x98,0x8c,0x17,0x6c,0x91,0x7f,0xca,0x7b,0xbd,0xa5,0x79,0xa4,0x4e,0xff,0xe2,0xbf,0x2a,0x5b, + 0x41,0x5b,0x4e,0x4b,0xfb,0x2c,0x39,0xd0,0x02,0xda,0xc3,0x51,0x36,0x14,0xc8,0x69,0x55,0x9e,0x25,0xac, + 0xb3,0xf1,0x88,0x70,0x3e,0x40,0xe9,0x4b,0xb9,0xd7,0x16,0xfb,0x55,0xae,0x0d,0xc4,0x13,0x8b,0xf4,0x80, + 0x1c,0xa0,0x2f,0x34,0x16,0xe8,0xc6,0x59,0x05,0xf1,0x3f,0xe4,0xb6,0x43,0x1b,0x43,0x45,0xc2,0x65,0xb7, + 0x23,0x60,0x9b,0x15,0xcb,0x1b,0x76,0x89,0xd0,0x11,0x03,0x52,0x77,0xdc,0x77,0x61,0xc9,0xa3,0x25,0x22, + 0x5f,0xdd,0x94,0xa4,0x08,0x3c,0x4d,0x43,0xc4,0x8d,0xeb,0xa9,0x37,0x35,0x85,0x3f,0x2f,0x74,0xda,0xae, + 0x96,0x50,0xd1,0xb8,0x22,0xdb,0xf2,0x69,0x27,0x3c,0xfd,0xac,0x78,0x16,0xb2,0x43,0x5f,0xda,0x72,0x6a, + 0xa5,0x2d,0x1b,0x5c,0x25,0x92,0xb6,0xc0,0xba,0x2b,0x35,0xdc,0x6e,0xc3,0x94,0xea,0x36,0xb3,0x6a,0x37, + 0x53,0xb0,0xa3,0x87,0x69,0x42,0xaf,0x61,0xa1,0x1f,0x28,0x45,0x20,0xa6,0x90,0x5f,0x7a,0xc7,0x0e,0x2a, + 0xf0,0xf7,0x56,0xb7,0x09,0xe6,0x7c,0x39,0x98,0xac,0x92,0x0b,0x52,0xb6,0xb7,0x23,0xfb,0x21,0xd8,0xd9, + 0x33,0xee,0x70,0x6e,0x66,0x4d,0x47,0x4c,0x4e,0xc6,0xf7,0xae,0xa4,0xb4,0x05,0xad,0xff,0x1d,0xee,0xbc, + 0x4d,0x9d,0xc2,0x35,0x67,0x0f,0x27,0x95,0x6e,0x36,0x84,0x00,0x22,0x22,0x30,0x80,0x0c,0x6e,0xe9,0xe1, + 0x4f,0xec,0xf9,0xe1,0x6b,0x67,0x3c,0xc7,0x92,0xd0,0x0b,0x0b,0x20,0xce,0x62,0x65,0x58,0x48,0xf0,0xf8, + 0x82,0xa3,0xef,0x6b,0x28,0xb4,0xe6,0xac,0x2d,0x14,0xa4,0xfb,0x8d,0x8b,0x78,0xfc,0x98,0x02,0x52,0x51, + 0x9f,0x6c,0x91,0xc3,0xad,0xdc,0x20,0x72,0x65,0x5c,0x28,0x1d,0xc8,0xbc,0xd8,0x18,0x7f,0x9f,0x16,0x16, + 0x84,0x49,0x61,0xc1,0x2e,0x2f,0xbd,0x79,0xb0,0x25,0xef,0xc7,0xf9,0x4f,0xdb,0x42,0xbc,0xbc,0x7e,0x27, + 0x5e,0xc6,0xe2,0x12,0xfd,0x47,0xf1,0x57,0x3f,0xac,0xeb,0x4a,0x3b,0x45,0x6e,0x7b,0x53,0xfb,0x68,0xa4, + 0xcd,0x4d,0x0a,0x2d,0xef,0xbe,0x45,0x3f,0xa9,0x62,0x78,0xbc,0xe5,0xb0,0xba,0xbe,0x3f,0xfc,0x6a,0x78, + 0xf8,0x85,0x04,0x68,0xf9,0xae,0x52,0x7f,0x54,0xea,0xf7,0x4a,0xfd,0x50,0xa9,0xef,0x2b,0xf5,0x6d,0xa5, + 0x7e,0xae,0xd4,0xbf,0x2b,0xf5,0x4b,0xc5,0x81,0x34,0xf8,0x3e,0x65,0x7d,0x97,0xaa,0xfa,0x91,0xd3,0xf8, + 0xce,0x18,0x85,0x7a,0x89,0xca,0x4c,0x95,0xcc,0x8a,0x92,0x7b,0x73,0x40,0x1a,0x9e,0xc3,0x60,0x10,0x24, + 0x6b,0x7e,0x8b,0x2f,0x91,0xbb,0x37,0x9c,0xd6,0xe2,0xc7,0x8a,0x65,0x69,0x81,0xc4,0x28,0x86,0xcb,0x45, + 0x83,0x70,0x2d,0xfa,0x16,0x1e,0x5d,0x28,0x90,0x46,0x78,0x51,0x29,0x97,0x68,0x92,0xc9,0x47,0x97,0x29, + 0x97,0xd8,0xe8,0x3c,0x1b,0x09,0x1d,0x39,0x10,0x30,0x97,0x9c,0xb3,0x51,0x4d,0x8e,0xce,0x4f,0xe4,0x12, + 0xf5,0x6c,0x9a,0x37,0x30,0x9d,0x53,0xd3,0x2a,0x3d,0x3f,0xe7,0xa7,0x7a,0x99,0xcd,0xe7,0x5c,0x33,0xf5, + 0xbd,0xe0,0xc2,0x74,0x04,0x94,0x57,0x33,0x42,0xed,0x35,0xa1,0x2e,0xe2,0x27,0xd9,0x19,0x53,0xa5,0xab, + 0xa6,0x9c,0x95,0x93,0x55,0xcd,0x4f,0xcb,0x79,0x7a,0xad,0x74,0x87,0x38,0xe4,0x08,0x9d,0xd6,0xb0,0xce, + 0x23,0x72,0x75,0x5e,0xd3,0x11,0x4e,0x73,0x57,0x65,0xca,0x90,0x75,0xfa,0xd7,0x94,0xd7,0xaf,0xdc,0x67, + 0xf3,0x62,0x86,0x8e,0x77,0x62,0x79,0xa6,0x79,0x8d,0xee,0x4d,0x55,0x56,0xc8,0x2f,0x62,0x17,0x14,0x25, + 0x4d,0x61,0x0e,0xc8,0x55,0x17,0xf9,0x74,0x4a,0x5d,0xc3,0xb1,0xd8,0x64,0xd5,0x22,0x2f,0x90,0x48,0x10, + 0x55,0x35,0x2a,0xaf,0x17,0xe9,0x52,0xe5,0x4d,0xb6,0x90,0x18,0x27,0xf3,0xb2,0x5c,0x2a,0x73,0x7d,0x93, + 0x92,0x46,0x8b,0x12,0x41,0x5a,0x14,0x02,0x4b,0xd4,0xf9,0x1f,0x84,0x9b,0xca,0xfa,0x22,0x05,0xaf,0xe9, + 0x5a,0x28,0x4a,0xc4,0x8d,0xa2,0x75,0xa6,0x66,0x96,0x29,0xa1,0x21,0xda,0xa9,0x9f,0xf2,0x86,0xc8,0xd9, + 0x74,0x5a,0x16,0x73,0xc4,0x53,0xf9,0x7d,0x45,0xfb,0x6e,0xaa,0xb4,0x53,0xe5,0x54,0x09,0x3f,0x44,0x30, + 0x91,0x2e,0xe6,0x04,0x0c,0xca,0x8e,0x09,0xde,0x97,0x3c,0xdb,0xf6,0xc2,0x14,0x0e,0x07,0x4a,0x73,0x4f, + 0x99,0x80,0x79,0x84,0x94,0xe0,0xe8,0xef,0xea,0x32,0xaf,0x73,0x2a,0x89,0x00,0xef,0x79,0x12,0x5c,0x34, + 0xcd,0x32,0xbe,0x77,0xef,0xea,0xea,0x6a,0x78,0xf5,0xc5,0xb0,0xac,0xce,0xef,0x1d,0x7e,0xfd,0xf5,0xd7, + 0xf7,0x3e,0xcd,0xf3,0xe2,0x63,0xa0,0xf2,0xbc,0xe7,0x80,0x0d,0xe2,0x96,0xf3,0xc9,0x57,0x80,0x32,0x29, + 0xcf,0xc9,0x26,0x38,0xcf,0x57,0xf0,0xb4,0xeb,0xfb,0x7e,0x27,0x87,0x25,0xae,0xf5,0x2b,0xf9,0xa7,0x32, + 0xf2,0x4c,0x8e,0xd6,0xa2,0xd2,0xde,0x6f,0x84,0x38,0x26,0x40,0xdc,0x3d,0x14,0xb0,0xab,0xf3,0xe4,0xa6, + 0xbe,0x24,0x62,0x78,0x7b,0x04,0xf7,0x0f,0x0e,0x0e,0xee,0x51,0x5e,0x40,0x3c,0x53,0x73,0xd1,0x57,0x82, + 0xc6,0xf8,0xaf,0x7b,0xb8,0x7b,0x94,0xff,0xbc,0x7c,0x41,0xcd,0x4e,0x18,0x32,0x2f,0x9a,0xc5,0x5c,0x9d, + 0x95,0xd3,0x6b,0x05,0x14,0xa8,0x2e,0x68,0x29,0x14,0x86,0xa6,0x10,0x73,0x5c,0xc9,0xae,0x6d,0xf2,0x86, + 0xfe,0xa6,0xd3,0x29,0xf6,0xa3,0x4a,0xab,0x26,0x9f,0xe0,0xbd,0xa6,0x3d,0x41,0x40,0x54,0xe2,0x76,0x4c, + 0x7c,0x87,0x9f,0x43,0x75,0x71,0x5f,0x5d,0x7c,0xa1,0x2e,0xbe,0x54,0x17,0x5f,0xa9,0x8b,0x7f,0xaa,0x8b, + 0xf3,0xaa,0x5c,0x2d,0x55,0x91,0x5e,0xd2,0xda,0xf1,0x18,0x09,0x10,0x2f,0xd5,0x94,0xa0,0x72,0xae,0xa6, + 0x8d,0x22,0x62,0x16,0xbe,0x35,0x48,0x67,0x33,0xd4,0x4c,0x2d,0xf3,0x09,0x5c,0x6d,0xd4,0x05,0x71,0xe9, + 0x8b,0x73,0xea,0x0c,0x0d,0x8a,0x4e,0xaf,0x72,0xae,0x96,0x30,0x6a,0x54,0xab,0xb9,0x4a,0xd5,0x19,0xb1, + 0x91,0x67,0x95,0x3a,0x9b,0xe6,0xf4,0xbf,0x54,0xf4,0x38,0x21,0xf0,0xe4,0xf8,0x43,0x8a,0x2f,0x89,0x9f, + 0xce,0x88,0x1c,0x5e,0xa8,0x5c,0x7d,0x3c,0x9b,0x52,0x05,0xd5,0x47,0xf5,0xbb,0xaa,0x96,0x8a,0x80,0xb9, + 0x6a,0x26,0xaa,0x5a,0x9d,0x5d,0x13,0x15,0x5f,0xa7,0x8b,0xa5,0x22,0xd8,0x26,0x92,0xab,0x5e,0xa6,0x84, + 0x7a,0x68,0xaf,0x11,0xb3,0x59,0xaf,0xce,0xe8,0xff,0x92,0xef,0x8b,0x55,0xb8,0x67,0xa1,0x52,0x57,0x67, + 0x10,0x9e,0x13,0x92,0x4a,0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x62,0x3f,0x2a,0x46,0x0c,0xd4,0xd2,0x19, + 0x81,0x9d,0xf8,0x81,0xc1,0x08,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x3f,0x26,0x69,0x71,0x99,0x52,0x4b, + 0x93,0x2a,0x5f,0x36,0xd8,0x14,0xf2,0x40,0x34,0x37,0x8c,0xdc,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65, + 0xb2,0x34,0x60,0xf3,0x5a,0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x50,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xe6,0x03, + 0x34,0x67,0xd9,0x7c,0x4a,0x94,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x51,0xed,0xf3,0xec,0x1c,0x44, + 0xc0,0x02,0x9b,0x19,0xa8,0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15, + 0x13,0x0a,0x48,0x73,0x60,0x9d,0x3c,0x9d,0x97,0xe7,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b, + 0x9a,0xd0,0x6b,0xa5,0x31,0xa0,0xca,0x44,0xe6,0xa0,0xb0,0xdf,0xcb,0x2b,0x65,0x82,0x66,0x29,0x0e,0x4b, + 0xf6,0xfb,0xaa,0x04,0x1a,0x99,0x55,0x20,0xf7,0x1a,0x40,0x0b,0x6e,0x0c,0x66,0xd0,0x23,0x80,0x55,0x69, + 0x91,0x2f,0x50,0x76,0x92,0x57,0x13,0x3e,0x1f,0xf2,0xe5,0x92,0x00,0x54,0x4d,0x56,0x15,0xed,0x70,0x60, + 0x2e,0xa0,0xbe,0x7a,0x42,0x8d,0x50,0x16,0x01,0xa8,0xc4,0xf7,0xa1,0xe1,0x16,0xcd,0xfe,0x2c,0x9d,0x00, + 0x00,0xab,0x2c,0x3f,0x2f,0xe4,0x10,0x54,0xe7,0xea,0x7c,0x7e,0xbd,0xbc,0x20,0xc8,0x49,0xcf,0x33,0x00, + 0x72,0xc6,0x8b,0x9f,0x41,0x9a,0x50,0x13,0x50,0xe7,0x35,0x6e,0x2f,0xdb,0x97,0x42,0xdc,0x12,0xfd,0xa1, + 0x0a,0x09,0x21,0x95,0xf3,0xeb,0xf3,0x52,0x7e,0xf9,0x3b,0x9c,0xff,0xea,0xff,0x6b,0xef,0xdd,0xd7,0xdb, + 0x36,0x92,0x7d,0xd1,0x57,0xa1,0x30,0xda,0x32,0x10,0x42,0x94,0x64,0x3b,0x99,0x04,0x34,0xcc,0xe5,0x4b, + 0x2e,0x4e,0x7c,0x5b,0xb1,0x92,0xcc,0x44,0x62,0xb4,0x20,0x12,0xa4,0x60,0x51,0x00,0x07,0x00,0x29,0x2b, + 0x22,0x1f,0xe8,0xfc,0x7b,0x1e,0x61,0x3f,0xd9,0xa9,0x5f,0x55,0x77,0xa3,0x01,0x82,0x96,0x9d,0xd9,0x7b, + 0x9d,0xfd,0xc7,0xfe,0xf2,0xc5,0x02,0xfb,0x7e,0xa9,0xae,0xae,0xaa,0xae,0x8b,0x18,0x51,0xfb,0x05,0x3b, + 0xd9,0xe0,0xf5,0xe1,0x7f,0xb8,0x66,0xc9,0x30,0x03,0x6a,0x6a,0x99,0xc4,0xd7,0xe2,0x1b,0x6a,0xd1,0x7a, + 0x96,0x47,0xa2,0x89,0x3f,0xe3,0xb8,0xdc,0x34,0x85,0x56,0x86,0x6a,0xcc,0x8b,0xc2,0x5d,0x48,0xec,0x40, + 0x36,0x35,0xbb,0xce,0x72,0x46,0x7f,0x39,0x8d,0x22,0xa6,0x83,0x80,0x41,0xcc,0xfc,0x45,0x0e,0xa7,0xd8, + 0xf3,0xa4,0xe9,0xd4,0xaa,0x26,0x04,0x6a,0xd5,0xfc,0xdd,0xe2,0x78,0xcb,0x04,0x28,0x56,0x17,0x26,0x3b, + 0x1a,0x1f,0xa4,0x81,0x5b,0x2a,0x25,0xda,0xd2,0x52,0xa2,0xdd,0xdb,0xb3,0xe2,0x23,0x55,0xc9,0x26,0xa0, + 0x1f,0x34,0x61,0xea,0x01,0xd6,0x75,0x0e,0x7c,0x2d,0xe9,0x4f,0x8f,0x83,0x05,0xd6,0x86,0xf1,0xfa,0x5d, + 0x63,0xcc,0xfa,0x55,0xb1,0x75,0xd0,0xaf,0xdf,0xb9,0x05,0x54,0x53,0xd8,0x50,0x58,0x72,0x8e,0x69,0xf5, + 0x10,0x0b,0x32,0x68,0xd9,0x84,0x46,0x23,0xba,0x28,0x6f,0x89,0x24,0x29,0x8f,0x01,0x9f,0x50,0x59,0x95, + 0xe4,0xba,0xa2,0xab,0xfa,0x94,0xa5,0xd3,0x1b,0xd6,0xe3,0xcc,0x01,0x9a,0x6c,0x57,0x02,0x24,0x8a,0xa6, + 0x3e,0x2b,0x30,0x35,0xe6,0xab,0x7d,0x83,0x70,0x1e,0x42,0x7e,0xf8,0x88,0x19,0x9c,0x8e,0xdb,0xcb,0x5a, + 0x79,0x5c,0xb6,0x8a,0x85,0xd9,0x36,0x85,0xd8,0x8a,0x95,0xb9,0xf6,0xc1,0xe8,0xbf,0xa3,0x6b,0x91,0x4e, + 0x43,0x7b,0x61,0xab,0xc0,0x1a,0xd1,0xc3,0xd8,0x55,0x53,0x6b,0x49,0x95,0xb9,0x86,0xd1,0x00,0x56,0xf5, + 0x99,0xe0,0x85,0x8d,0xe1,0x96,0x55,0x5e,0x58,0x72,0x69,0x03,0x21,0x2d,0xeb,0x56,0x03,0x20,0x5e,0x37, + 0x78,0x6c,0xa3,0x3b,0x50,0x76,0xa0,0xd1,0xfa,0x6f,0x31,0xaf,0x80,0x22,0xc2,0x9b,0x3d,0x33,0x8c,0x12, + 0x75,0x52,0x01,0xac,0x38,0x12,0xfe,0x0d,0x32,0x35,0x1c,0x5b,0xae,0xbe,0x45,0x83,0x57,0x17,0x5a,0xaf, + 0xe9,0x9c,0x2b,0x87,0x13,0xae,0x43,0x54,0xf4,0xda,0x47,0xac,0x96,0xab,0x04,0xde,0xc8,0xb4,0x87,0x31, + 0xad,0x20,0x6b,0x7c,0x87,0xb1,0x87,0x08,0x6c,0x69,0xe5,0x33,0xcc,0x19,0xfa,0xd3,0x6a,0x1e,0xbf,0xc4, + 0x7a,0xd4,0xbf,0xc4,0xad,0xfd,0xff,0x82,0xfe,0x97,0x09,0xfa,0xbf,0x69,0xc7,0x1c,0xe7,0x34,0x84,0x8b, + 0x84,0x1a,0x1d,0xfa,0x67,0x55,0xc3,0xff,0x32,0x0d,0xff,0x8b,0xf6,0xe6,0xba,0xca,0xf8,0xd1,0x64,0xfc, + 0x48,0x19,0xc7,0x49,0x78,0x70,0x72,0x7a,0xed,0xf5,0xba,0xa7,0xfb,0x67,0xbb,0xa7,0xc3,0xe1,0x81,0x7f, + 0x99,0xc0,0xbb,0x16,0xf1,0x18,0x1f,0xf8,0x63,0xe4,0xf8,0xcf,0xaa,0xda,0x74,0x67,0xab,0xda,0x63,0xda, + 0xc4,0x27,0x55,0xc6,0xdc,0x64,0xcc,0x61,0x70,0x97,0xb4,0xda,0xf1,0x72,0x54,0xb9,0x83,0xc0,0xed,0x75, + 0xbd,0x83,0xbe,0x81,0x20,0x31,0xb3,0x3c,0xe8,0xbb,0x83,0x9d,0x93,0x3f,0xdc,0xe1,0x17,0xa7,0x9e,0x77, + 0x30,0x6d,0xd7,0x48,0x83,0x01,0x41,0xe5,0xb8,0x55,0x2a,0x42,0x7b,0xc0,0xbc,0x83,0x42,0xe4,0x7e,0x82, + 0x98,0xa8,0x2a,0x3c,0xcf,0x30,0xcc,0xab,0x50,0x3e,0x0c,0x44,0x25,0xfd,0xbf,0x4b,0xb3,0xfe,0x63,0x7f, + 0xff,0xc0,0x7f,0x43,0x1f,0xa7,0xc5,0x17,0x3b,0xc9,0x15,0x2c,0xa7,0xa3,0xb4,0xdc,0x3d,0xf0,0xbf,0xdd, + 0xe4,0x37,0xa8,0xdb,0x5d,0x15,0x12,0x9e,0x00,0x25,0x96,0x58,0x7e,0x80,0x51,0xc3,0x6f,0x95,0xb6,0xc9, + 0xc6,0x1b,0x55,0x36,0xdd,0x5a,0xd6,0xf8,0xcd,0x7b,0x93,0x70,0xec,0x21,0xc7,0x0c,0xc0,0x0e,0x0c,0x97, + 0x87,0xef,0x13,0x57,0x1c,0xd2,0xd7,0xdf,0xc8,0xd3,0x9a,0x92,0x4d,0xdb,0xbb,0xae,0xea,0x17,0xac,0x35, + 0x9e,0x77,0x65,0x68,0x76,0x22,0xc1,0xd3,0x5b,0xc0,0xae,0x84,0x20,0x24,0xf0,0x7c,0x95,0xfd,0x09,0xfc, + 0x4c,0x1c,0xa9,0xff,0xbe,0xb9,0x7b,0x34,0x80,0xdf,0xf3,0xf0,0xf7,0xfc,0x0e,0xcf,0x8d,0xd2,0xbc,0xf1, + 0xc2,0xb7,0xc3,0x96,0xd7,0x88,0x08,0x01,0x25,0x44,0x96,0xae,0xff,0xae,0xa3,0xe9,0x75,0x62,0xeb,0x9d, + 0xec,0x53,0xbc,0x12,0x2a,0x5f,0x17,0x6f,0x93,0x16,0x87,0x9a,0x6f,0x93,0x93,0x74,0xd8,0x65,0x55,0xe0, + 0xbc,0xde,0x4b,0x8e,0x1d,0x7f,0x5e,0x41,0xe9,0x95,0x81,0xd2,0x2b,0x82,0xd2,0x17,0xcd,0x79,0x2a,0x5b, + 0xf0,0xd8,0x84,0x9f,0x0f,0x88,0x47,0xdf,0xe7,0x9f,0x8e,0x1f,0x5b,0x51,0xe8,0xab,0xf4,0xfd,0x32,0x53, + 0x59,0x56,0x6c,0x65,0x2b,0x5b,0x84,0xae,0x8e,0x5f,0x85,0x67,0xe6,0x4c,0xfe,0xa9,0x52,0xed,0x36,0x39, + 0x81,0xdb,0x6c,0xc6,0x6b,0xb6,0xb2,0x55,0x9b,0x98,0xdb,0xcb,0x84,0x7d,0x89,0x21,0xd2,0xf2,0x77,0x89, + 0x8a,0x1f,0xc9,0x3e,0x63,0x1d,0xff,0x35,0xfd,0x16,0x02,0x8b,0x7f,0xbe,0x6a,0x64,0xff,0x5c,0xfb,0x4d, + 0x37,0x89,0xe3,0xff,0x56,0xaf,0xf1,0xd4,0xfe,0x89,0x02,0xfd,0x97,0x10,0xfe,0x1b,0x3f,0x0d,0xca,0x81, + 0x19,0x78,0x54,0xab,0x19,0x8b,0x3c,0x30,0x05,0xae,0x19,0xc8,0x1a,0xc5,0x5c,0x8c,0xc8,0x8a,0x80,0x69, + 0x8d,0xeb,0xba,0x91,0xfa,0x6d,0x8a,0xc7,0xc9,0xcd,0x8e,0xed,0xd1,0x6d,0xef,0xb7,0x5e,0xca,0xfd,0xcd, + 0x74,0xfb,0xa4,0x3e,0xd7,0xeb,0x7a,0x22,0x77,0x2a,0x5a,0x08,0xbf,0x62,0x95,0x07,0xaa,0x59,0xb0,0xa9, + 0x74,0xba,0x4d,0xb9,0xef,0x40,0xdc,0x7e,0x34,0xb3,0x07,0x21,0x91,0x2b,0x25,0xbc,0xa0,0x72,0x87,0xd0, + 0x7a,0xa1,0xe2,0xc9,0xfc,0x17,0xa0,0xa5,0x73,0xd7,0x04,0xec,0x58,0x11,0x8f,0xe2,0xb9,0xfe,0x6a,0xd7, + 0x3b,0xf0,0x7f,0xb0,0xd0,0xd3,0x46,0x4c,0x07,0xa1,0xf2,0x9e,0x59,0x77,0x3d,0x68,0xbb,0x92,0xc5,0x60, + 0xcf,0x6a,0xd4,0x05,0xd4,0x5c,0xad,0x50,0x0a,0x1c,0xcd,0x4d,0x1c,0x91,0x4b,0xe4,0x8c,0xba,0x2f,0xaa, + 0xc8,0xb7,0x0d,0xc4,0xb8,0xa4,0x7e,0x0d,0x95,0xfb,0x95,0x85,0xea,0x88,0xb4,0xac,0x0c,0x9c,0x5a,0xa3, + 0xeb,0x7a,0xf0,0x22,0x64,0x9e,0x49,0x54,0x95,0x30,0xea,0x41,0x5f,0x8b,0xf2,0xe4,0x07,0x04,0xc0,0x28, + 0x88,0x6b,0xf7,0x88,0x3b,0xf2,0xdb,0x1b,0xd3,0x67,0xbc,0xc0,0x88,0x08,0x3f,0xb8,0x70,0xc7,0xb1,0x69, + 0x7b,0x68,0xab,0xee,0xc4,0xfd,0xa8,0xc5,0x14,0x47,0xa2,0x47,0xb7,0xe4,0xe8,0x07,0xf3,0xd2,0xcd,0x94, + 0x71,0x20,0x8f,0x32,0x0b,0xed,0x50,0xac,0x4a,0x5d,0x29,0x23,0xf4,0x94,0x3d,0xba,0xec,0x69,0x12,0x40, + 0xa3,0xa9,0x6e,0x37,0xf3,0xaa,0xd4,0x93,0x6c,0xe8,0x2e,0x13,0x5a,0xe4,0xbe,0x32,0x34,0x88,0xb4,0x62, + 0xd0,0x08,0xca,0x29,0x78,0x35,0xa6,0x31,0xaf,0xcd,0x1a,0xfb,0x3b,0x12,0x29,0x41,0x7e,0xe9,0xc5,0x95, + 0x25,0xf7,0x27,0x96,0x5f,0x6d,0x0e,0x5a,0x49,0xa4,0x18,0xed,0xf5,0x85,0x37,0x70,0xb9,0x25,0x88,0xdd, + 0x8b,0xc1,0xb3,0x0d,0xb2,0x19,0xc9,0xfe,0x85,0x17,0x34,0x72,0xdc,0x0b,0x88,0xc5,0xe7,0x78,0x74,0x58, + 0x50,0x97,0x13,0x2c,0x6a,0xc9,0x8b,0x3a,0x96,0x15,0x1e,0xc1,0xc7,0x0b,0x0f,0x91,0x86,0x12,0xa4,0xae, + 0xe5,0x0d,0xda,0x74,0xf9,0xac,0x49,0x22,0x8b,0x27,0xe7,0x46,0xdd,0x46,0xe1,0x8a,0x18,0x6f,0x2b,0x6d, + 0xf9,0x12,0x2e,0xf8,0x0d,0xe5,0xb6,0xd4,0xc6,0x52,0x2a,0xe4,0xbb,0x40,0xa9,0x48,0x7a,0xb1,0xaa,0xfa, + 0x31,0xc5,0x6f,0x2d,0xd6,0x9a,0x1a,0x6a,0xd3,0x08,0x59,0xb7,0x4d,0x50,0x80,0x5e,0xd0,0x84,0xbd,0x48, + 0x8d,0x45,0x3b,0x6e,0xce,0x6e,0x9c,0x98,0x88,0xf4,0x7c,0x63,0x36,0x62,0x9d,0xa9,0x91,0x52,0x6c,0xbd, + 0xd5,0x5a,0x7e,0x1c,0xae,0xdd,0x3a,0x9a,0x22,0x5a,0x7e,0x56,0xe7,0x11,0xa4,0x0e,0xed,0x8d,0x4d,0xde, + 0xc7,0x1c,0x4a,0xd5,0xb4,0xbc,0xb0,0xe8,0x92,0x8d,0xa8,0x79,0x75,0xed,0xdb,0xb2,0x82,0xc3,0xc4,0x8b, + 0x5c,0x56,0x29,0x4e,0xd5,0xda,0xf2,0x63,0x13,0x14,0x0d,0x99,0x38,0xc8,0xf5,0xea,0x63,0x48,0xb5,0xce, + 0xb9,0xf0,0xc6,0x5e,0x29,0x07,0x36,0xb1,0x76,0xd5,0x6d,0xf9,0x91,0xd6,0xde,0x31,0xfa,0x6d,0x86,0x6f, + 0x5e,0xab,0x69,0xa0,0x3a,0x6a,0x55,0xb8,0x7b,0x09,0x63,0x65,0xb9,0x91,0x96,0xad,0xaf,0x5b,0xb0,0x5d, + 0xaa,0x41,0x55,0x93,0xcc,0x3d,0x9d,0x46,0x54,0x0e,0x8e,0x1a,0xa3,0xbf,0x6b,0x1d,0xce,0x59,0x61,0x1a, + 0xda,0x8b,0x6b,0x55,0x8c,0x7e,0xe9,0x4f,0x29,0xee,0x23,0x2f,0xd1,0x10,0xd5,0xb6,0xb1,0x73,0x83,0x69, + 0x05,0x85,0x41,0xdd,0xdb,0x38,0x12,0xf4,0xbc,0x67,0x75,0xe6,0x45,0xad,0x35,0xc8,0x3c,0x59,0xe8,0x6a, + 0x0a,0x31,0x02,0x08,0xa1,0x7e,0x65,0x5d,0x09,0xfc,0xc2,0x96,0x49,0xe6,0x6d,0xa2,0x50,0xed,0x62,0x5b, + 0xb6,0x35,0xec,0x57,0xc1,0x86,0x80,0xec,0xc3,0x73,0x84,0xe8,0x4c,0xd9,0x95,0xb9,0x6a,0x58,0xff,0x34, + 0xce,0x11,0xff,0x5a,0x47,0xd5,0x22,0x5c,0xd8,0x9e,0x1d,0xd5,0x76,0xe7,0x8f,0xc2,0x84,0xf7,0x20,0x72, + 0x39,0x38,0x4e,0xe6,0xd7,0xe3,0x16,0x2d,0xcd,0xc2,0x71,0xb4,0x1e,0xfb,0xe6,0x48,0x04,0x70,0x31,0xa6, + 0xa4,0xba,0x0f,0x30,0x40,0xc5,0x14,0x61,0x42,0x95,0xcb,0xb3,0x4b,0x9d,0x5c,0xed,0x7c,0xea,0x99,0x44, + 0xa2,0x06,0x55,0xe0,0x15,0xd9,0x9c,0x2a,0xf0,0xba,0x8a,0xe8,0xc3,0x9e,0xff,0x9b,0xb6,0x8f,0x18,0xf8, + 0xd2,0xb5,0xc2,0x41,0xe4,0x43,0x6b,0xec,0x57,0xf5,0x1b,0xa5,0x9a,0xab,0xba,0x06,0xd9,0x05,0x5c,0x29, + 0x3e,0xbb,0xe8,0x0f,0x43,0xef,0xc0,0x9d,0xe2,0x6d,0x6e,0x89,0x7b,0x31,0x40,0x80,0x23,0x28,0x05,0xd9, + 0xf8,0x6c,0x2a,0x40,0x2d,0x03,0x85,0xf1,0xa6,0x42,0x6c,0x9e,0x89,0x4e,0x14,0x5e,0xaa,0x5b,0xdb,0x04, + 0x93,0xed,0xab,0x75,0xf2,0x06,0x96,0x05,0x6d,0x37,0x4c,0x82,0xa6,0x6a,0x73,0x4d,0x21,0x98,0xc8,0xa6, + 0xfd,0x7d,0xab,0x02,0xde,0xc6,0xe2,0x2a,0xc2,0x54,0x95,0x11,0xd2,0xa6,0xae,0x5d,0x7d,0x13,0xd1,0x61, + 0x68,0xb5,0xb3,0xe5,0xdd,0x01,0xd0,0x29,0x25,0x08,0xfe,0xa9,0x6f,0xc8,0x29,0xa2,0x65,0x78,0xbe,0x3e, + 0xa2,0xb5,0xf1,0xab,0x23,0x2a,0x69,0x38,0xa2,0x58,0x80,0xbe,0xf4,0x62,0x9f,0xd0,0x52,0x05,0xde,0x45, + 0x31,0x4f,0x47,0xa8,0x82,0x9e,0x37,0x1f,0xa1,0x4c,0x06,0x68,0x6d,0x0f,0xd4,0x9b,0x41,0xbe,0x14,0x12, + 0x90,0x8b,0x60,0x3d,0xd1,0x71,0x36,0x13,0xc6,0xe9,0x39,0xfe,0x65,0x7d,0x17,0x44,0x72,0xdd,0xf0,0x7b, + 0xe9,0xd1,0x39,0x4c,0x6a,0x9e,0x33,0xb5,0x77,0xab,0xb1,0x37,0x38,0x73,0x73,0x59,0x0f,0xc4,0x16,0x4e, + 0x5a,0xbd,0x66,0x1e,0x1a,0xe6,0x8f,0xa8,0x32,0xe3,0xd9,0x93,0x81,0x36,0xb7,0x7f,0x26,0xec,0x5c,0x34, + 0x94,0x48,0x61,0xb8,0xb0,0xb8,0xb4,0xf8,0xf3,0x24,0x00,0x90,0x9f,0x6f,0x98,0xbc,0xf1,0x92,0x16,0x3d, + 0x97,0xbc,0x05,0xa3,0x1a,0x7e,0x71,0x86,0x08,0xc3,0x72,0xa8,0x4a,0x77,0xc1,0xab,0x38,0x0b,0x17,0xd5, + 0x92,0xce,0xc2,0x99,0xf1,0x18,0x40,0x09,0x33,0xac,0x99,0x10,0xb8,0x63,0x34,0xac,0x49,0x89,0xb9,0x65, + 0x3f,0x2a,0x87,0x08,0x6d,0x4d,0x70,0x46,0x19,0xf6,0x67,0xb4,0xb1,0x33,0xda,0x58,0xe1,0xa4,0xaa,0x8d, + 0x9d,0x79,0x3a,0xed,0x64,0x36,0x94,0xb6,0x5b,0x06,0x20,0x25,0x4c,0xf7,0xeb,0xd8,0x4d,0xe4,0x0a,0x19, + 0x94,0xee,0x98,0x4b,0xcd,0xbd,0xc1,0x18,0x0e,0x03,0x2c,0x6a,0x4e,0x7b,0x90,0x2d,0xaa,0x1b,0x40,0x45, + 0x55,0x24,0xf6,0x77,0x4c,0xff,0xcf,0xc3,0xca,0x41,0x8b,0xbf,0x0c,0x21,0x01,0xf0,0xa7,0xf4,0x67,0x3e, + 0xf4,0xcf,0x8d,0xc6,0x36,0x65,0x9d,0x85,0x09,0xb2,0xae,0xe9,0xcf,0xf9,0xd0,0x3f,0x0e,0x77,0x8a,0xfe, + 0xe4,0x11,0xba,0x1a,0x3f,0x0a,0xcf,0xe9,0x6e,0x72,0x97,0xde,0x00,0xd5,0xbb,0xdd,0xc9,0x30,0x88,0x5d, + 0x3a,0xc3,0x68,0x65,0x7f,0x7f,0x3e,0x0c,0x9e,0x52,0xa6,0x7f,0x46,0x87,0xfa,0x06,0x7f,0x41,0x9c,0xe9, + 0x82,0xdc,0x6a,0xb7,0x3b,0x1e,0x7a,0x28,0x34,0xf5,0xaf,0xb9,0x10,0xfd,0x45,0x21,0x5d,0x9f,0xfb,0xdc, + 0xdf,0x3f,0x97,0x42,0x4b,0x55,0x68,0x29,0x85,0x8e,0x37,0xe8,0x80,0xd4,0x5f,0xaa,0x7b,0xd7,0x12,0xc5, + 0xb9,0x53,0x41,0x21,0x55,0xcf,0xb5,0x46,0xa7,0x6a,0x78,0x53,0x19,0x5e,0x5b,0xa3,0xdc,0x80,0x34,0x6d, + 0x0d,0xad,0x1a,0xbf,0x1b,0x8b,0xbb,0x8b,0x51,0xf8,0x2b,0x2c,0xdb,0x27,0xfe,0x1c,0x8a,0x80,0x2e,0x08, + 0xfa,0x33,0x8e,0x4a,0x3a,0x18,0x9d,0xf0,0xc7,0xb0,0xc5,0xcd,0x87,0x21,0xb5,0xc3,0x09,0xd1,0xc2,0x49, + 0x3f,0xd3,0x2c,0x3a,0xd0,0x63,0x36,0xd4,0x3c,0xc2,0xde,0xde,0x53,0xd0,0x39,0x91,0xa1,0xe0,0x33,0xa2, + 0x71,0xcf,0xa8,0x89,0x43,0xf4,0x36,0x88,0xe8,0x3b,0xf3,0xd5,0xfc,0x79,0x5e,0x0b,0x1a,0xe7,0x6c,0xa8, + 0x26,0xb7,0x90,0xc9,0x21,0x45,0xfb,0xb2,0x6d,0x9b,0xe8,0xc2,0x9a,0xa8,0x17,0xd4,0xdb,0xac,0xe6,0xdb, + 0x9f,0x3c,0x9e,0x43,0x75,0x9e,0xa6,0x48,0x00,0xd1,0x3d,0x1a,0x7a,0x12,0x90,0x51,0x7e,0xa8,0x43,0x3f, + 0xf6,0xcf,0x71,0xf0,0xc7,0x8f,0xcf,0xf7,0xf6,0xae,0xdc,0x43,0x5f,0x96,0x65,0xed,0x8e,0x38,0xa2,0x27, + 0x80,0x32,0x60,0xa0,0x05,0x85,0x57,0x91,0x50,0x75,0x71,0x28,0x15,0xc6,0x3d,0x7d,0x41,0x7f,0x99,0xec, + 0x9a,0x63,0xb2,0x15,0x58,0x82,0x28,0x06,0xf8,0x0f,0xd0,0xfe,0x98,0xf2,0xc6,0x55,0xe4,0xc3,0xe0,0xce, + 0x66,0x03,0xc9,0xdf,0xe1,0x78,0x35,0x7c,0xb7,0xb7,0x94,0x53,0xa7,0xcc,0xdf,0x8e,0x19,0xb2,0xa2,0xac, + 0xa3,0x86,0xb5,0x75,0x55,0x9d,0x0b,0x17,0xc2,0xe8,0x15,0x8c,0x27,0x6a,0x99,0xf0,0xd2,0x9e,0xfe,0x6a, + 0xa3,0xac,0xf3,0x3a,0xd9,0x23,0x8c,0x52,0x6e,0xf3,0x47,0x39,0x01,0x47,0x85,0xfd,0xd5,0x4e,0xba,0x39, + 0x7b,0x52,0x35,0x03,0x38,0x6b,0x30,0x9e,0xfe,0x08,0x51,0x9a,0xa2,0x29,0x22,0xab,0x6b,0x7e,0x28,0xaf, + 0xc7,0x19,0x0a,0xb3,0xd5,0x6a,0x46,0x93,0x01,0xd2,0xf3,0x73,0x21,0xed,0x7d,0x41,0xc8,0x9a,0x6f,0x91, + 0x8b,0xcb,0xc6,0xfb,0x06,0x2a,0xdb,0xae,0x09,0x68,0x56,0x13,0xae,0x67,0x40,0x9e,0xa9,0xab,0x9e,0x96, + 0xae,0x9d,0x81,0xcd,0xc5,0x54,0x90,0x12,0x5b,0xb0,0xb6,0x67,0xf1,0xaf,0x58,0x57,0xd3,0xec,0xc8,0x53, + 0x04,0xc1,0xc4,0xe3,0x00,0xd3,0x70,0xe1,0xc5,0x84,0x38,0xa8,0xee,0xc2,0xe5,0x44,0xee,0xd5,0x74,0xa8, + 0xc3,0xc4,0x59,0x23,0x50,0xf1,0x50,0xa4,0xa9,0x88,0x29,0xbf,0x2a,0xd1,0x84,0xdf,0xe0,0x8b,0x43,0xef, + 0xcb,0x1c,0x73,0x03,0x17,0x39,0x49,0xf2,0xa2,0xe4,0x1e,0x09,0xcd,0x1c,0xf6,0x97,0x8f,0x26,0x7a,0xaf, + 0x96,0xda,0xb5,0xdd,0xc5,0x6a,0xb5,0x73,0x46,0xfc,0xe2,0xe4,0x64,0x39,0x54,0x9c,0xe9,0x1c,0x66,0xe4, + 0xc2,0xca,0x5e,0x84,0x17,0xb5,0xf7,0x03,0xd4,0x98,0xaf,0x56,0x17,0xf5,0x8e,0x89,0x8b,0xc1,0x41,0x4a, + 0x3c,0xbd,0x9a,0xb2,0xaf,0x57,0xb6,0x9b,0x95,0x29,0xa4,0x79,0x33,0xcc,0x78,0xe7,0x09,0xe1,0x62,0xef, + 0xf6,0x0a,0x83,0x1c,0xcb,0xdd,0x22,0x9d,0xed,0x5c,0x61,0x83,0x59,0xb3,0x04,0xce,0xe1,0xd4,0xa7,0x76, + 0x33,0x29,0x44,0xc5,0x0e,0x07,0xf4,0xe2,0x83,0xa1,0x08,0x2c,0xf5,0x5b,0x3f,0x7b,0xed,0x48,0x98,0x98, + 0x6b,0xff,0xd8,0xbf,0x84,0x90,0xfa,0x03,0x62,0xc7,0x67,0xe3,0xc5,0x2c,0x2e,0xfc,0x67,0xf4,0x0d,0x1a, + 0xe7,0x8d,0x52,0xfb,0xba,0xa6,0x35,0xb9,0x7e,0x74,0x95,0x54,0x00,0x7c,0xcd,0x64,0xe5,0xe5,0xc9,0x55, + 0x72,0x72,0x3d,0x1c,0xb2,0x13,0x48,0x8e,0xc5,0xfa,0xa1,0x2a,0x72,0x4c,0xe4,0xc5,0x87,0x93,0xe3,0xa1, + 0x2a,0x43,0x3b,0xa5,0x8b,0x0b,0x7f,0x61,0xe7,0xf1,0x85,0xfc,0x84,0xf5,0x46,0xf0,0xae,0x26,0x5a,0x33, + 0x2a,0x78,0xd8,0x33,0xeb,0xfb,0x1d,0x0b,0x5b,0x09,0x15,0xb7,0xb8,0x27,0x54,0xb7,0x25,0xc2,0xb3,0x29, + 0xef,0x4b,0x7c,0x7b,0x8b,0x87,0x18,0xf8,0x53,0x85,0x81,0x36,0xa0,0x0b,0xf6,0x9a,0x0b,0x2c,0x6a,0xe4, + 0x02,0xd1,0xa1,0xbc,0xe5,0x72,0x34,0xc4,0xe1,0xc0,0xe4,0x8f,0xd9,0xe3,0x13,0x6f,0x24,0x63,0x6f,0x6c, + 0x80,0x27,0x34,0xd7,0xd8,0x57,0x61,0xce,0xd1,0xcf,0x9c,0x7b,0x93,0x08,0x6a,0xba,0x1e,0x5c,0xf0,0x10, + 0x0c,0x57,0xfc,0xc4,0x33,0x56,0xca,0xd2,0xd4,0x5d,0x2d,0x1d,0x56,0xdc,0xf0,0xee,0xe9,0x66,0x54,0xe4, + 0x4c,0xda,0x37,0x07,0xe5,0x9c,0x87,0x88,0xfc,0xbc,0xff,0x26,0xcc,0xfd,0x5c,0x3f,0xc7,0x3c,0xd3,0x8f, + 0x50,0xee,0x9b,0x46,0xfc,0x19,0x79,0xa6,0x51,0x92,0x43,0xff,0x8d,0xd8,0xbd,0x5d,0x08,0x31,0x48,0xd7, + 0x5f,0x4d,0x50,0x76,0xc1,0x13,0x94,0x75,0xb8,0xe8,0x9d,0x89,0xc0,0xf6,0x5c,0xee,0x83,0x69,0xe3,0x1e, + 0xbe,0x80,0xda,0x2f,0x11,0x2e,0x1a,0xff,0x69,0x80,0xbd,0x0e,0x75,0x1a,0xc1,0x00,0x28,0xa6,0xfe,0x75, + 0xbf,0xba,0x17,0x3f,0x10,0x58,0x7c,0x68,0xe3,0x5d,0x3e,0x58,0xbc,0xcb,0x87,0xa1,0x7b,0xcd,0x23,0xb9, + 0x16,0x97,0xf7,0x3c,0xd4,0xe3,0xaa,0x91,0x27,0xd4,0xc8,0x93,0x16,0xce,0xf7,0x49,0xc5,0xf9,0x3e,0x61, + 0xce,0xf7,0x5a,0x20,0xe9,0x5d,0x78,0xbd,0x81,0x5b,0xd1,0xfc,0xbb,0x1e,0xab,0x09,0x57,0xb6,0x0e,0xbb, + 0xe1,0x51,0x7f,0xf7,0xd1,0x3b,0x62,0x11,0x8d,0xa9,0xca,0x2e,0x1c,0x4a,0x23,0xe1,0x64,0x77,0xa8,0x69, + 0xef,0xdf,0x62,0x8c,0xef,0x9a,0x5a,0x55,0xd1,0x6d,0xe1,0xd5,0x95,0xef,0x2d,0xb0,0x7c,0x87,0xfe,0xa1, + 0xba,0xb0,0x88,0xff,0x81,0x33,0xe0,0xbc,0xb2,0x11,0x93,0xfd,0x5b,0x78,0x3e,0xcf,0x89,0xb7,0xe2,0x0d, + 0x48,0x7f,0x53,0xce,0xbd,0x55,0x07,0x2d,0x98,0x27,0xbe,0x3a,0x7f,0xc1,0xc9,0x19,0x4d,0x25,0xf1,0x9f, + 0x25,0xfe,0x93,0xc4,0x7f,0x9e,0xf8,0x6f,0xd3,0x81,0x96,0xe6,0xbf,0x2d,0x7d,0x2d,0x58,0xc3,0xb7,0xc0, + 0x53,0xe3,0xf9,0x6f,0x47,0x22,0x7a,0x89,0x79,0xc5,0x45,0x76,0x3d,0xd8,0x2d,0x25,0xae,0x19,0x1c,0x66, + 0xae,0x83,0xdb,0xf5,0x50,0xbb,0x54,0x3e,0x4f,0xe0,0xbf,0xfc,0xbb,0x94,0x68,0x41,0xfd,0xc8,0xb1,0x19, + 0x58,0x44,0xde,0xc7,0xa9,0xf5,0xd1,0x45,0x94,0x4e,0x63,0xc7,0xb6,0x47,0x15,0x2d,0xfc,0xaa,0x32,0x4b, + 0xe9,0x95,0x70,0xad,0xcf,0x4a,0xbe,0x4b,0x15,0x07,0xf1,0x15,0xc6,0xa0,0xf4,0xcd,0xb4,0xd3,0xf4,0x3f, + 0x13,0xb8,0x4f,0xc3,0xee,0xc4,0xe3,0xc6,0x83,0x28,0x84,0x48,0xfa,0x65,0xde,0x84,0x76,0x14,0x9e,0x64, + 0x6f,0x6f,0x87,0xff,0x12,0x23,0xa6,0xf4,0x2b,0x07,0x3f,0xb9,0x88,0x9d,0xa2,0x2f,0xf3,0xda,0x08,0xff, + 0xb4,0x58,0x0a,0xb1,0xe7,0x1a,0x2b,0x51,0xd2,0xda,0x0b,0xde,0x97,0xf2,0x6d,0x7b,0x7a,0x32,0xad,0x12, + 0xbe,0x40,0xc8,0x35,0x31,0x3f,0x31,0x9a,0xaa,0xfe,0x4b,0xf8,0x40,0x12,0xb5,0x05,0x68,0x8e,0x98,0xd1, + 0xad,0x56,0xe3,0xc4,0x95,0xa8,0x71,0xec,0x80,0x02,0x2d,0xbd,0xd2,0x81,0x62,0xc3,0xb2,0x0a,0x1a,0xeb, + 0x5b,0xdf,0xec,0xcd,0x91,0x75,0x8a,0x37,0xd7,0x5d,0x2f,0xf7,0x6b,0x1a,0xd6,0xab,0x74,0x5b,0x21,0xcc, + 0x4d,0xa4,0xb2,0x84,0x22,0xe1,0x9f,0xff,0x3b,0x9e,0xc5,0x47,0x4b,0xf2,0xcb,0x07,0x35,0x8b,0x58,0x3b, + 0x3c,0x52,0xd9,0x24,0xe0,0x21,0xbc,0x09,0x37,0xd7,0x6b,0xe3,0xad,0x9a,0x63,0xaf,0xd7,0xf7,0xc6,0xbb, + 0xdd,0x58,0xcb,0xbe,0x7e,0xb3,0x34,0x2b,0x2a,0x6a,0xd4,0x77,0xaf,0x6f,0x3f,0x69,0x46,0xff,0xab,0x54, + 0x23,0x76,0xa0,0x54,0xce,0xae,0x2b,0xd7,0xb2,0xca,0x5a,0xbd,0x62,0x50,0x8a,0xbd,0xf4,0xd6,0xc0,0x81, + 0x2f,0x30,0x40,0x00,0x7c,0xa0,0x4a,0xf2,0xe3,0x38,0xd1,0x38,0xbf,0xe2,0xc7,0xde,0x1e,0xe5,0xab,0x0c, + 0x60,0x7a,0x0d,0xb1,0x6a,0x17,0xd8,0x3f,0xe3,0xbf,0x08,0x5e,0x25,0x94,0xe7,0x9f,0x89,0x8f,0x93,0x15, + 0x88,0x2e,0x6c,0x73,0x7d,0x94,0xa5,0xb1,0x6e,0x0c,0x9e,0x18,0x7e,0xe6,0xa7,0x51,0xa5,0x5a,0x22,0x6e, + 0x53,0x2c,0x81,0xba,0x0f,0x7d,0xf1,0x33,0x5a,0x99,0x3c,0x99,0xc2,0xff,0xeb,0xf3,0xa4,0x80,0x72,0x64, + 0xe8,0xa4,0xb4,0x0f,0x4a,0xe7,0x8e,0xdf,0x54,0xc7,0x92,0x81,0x28,0xf0,0x8d,0xa4,0x7e,0x4e,0x9c,0xf6, + 0xc0,0x4d,0xab,0x63,0x8f,0x2b,0xee,0x1d,0x75,0x6b,0x9f,0x86,0x46,0xa5,0x30,0x5b,0x7b,0x5e,0xb3,0xa5, + 0x30,0x1f,0x64,0x81,0xf4,0xdc,0xaa,0x5f,0xb0,0x31,0xc3,0x7e,0xde,0x58,0x49,0xf7,0xce,0x09,0x6f,0x0c, + 0x34,0x1f,0xdc,0x35,0xd4,0xb6,0x05,0xa2,0xbd,0xdc,0xbd,0xa3,0x9a,0x9a,0x48,0xeb,0x34,0xdb,0x9a,0x54, + 0x33,0x87,0x6a,0x45,0xda,0xb2,0xb9,0x8a,0x21,0xe0,0xd3,0x78,0xf7,0xf8,0x18,0x6a,0x7e,0x22,0xa8,0x61, + 0xa3,0x30,0x65,0xd9,0x05,0x41,0x73,0x94,0x07,0x4f,0xb3,0x0c,0x2e,0x70,0xfd,0x51,0x51,0x98,0x6f,0x00, + 0x97,0x2e,0x06,0x44,0xa2,0xbf,0xad,0xd7,0x59,0x95,0x62,0xbd,0xad,0xda,0x65,0xf4,0xbb,0xaa,0x5d,0xaa, + 0x91,0xb6,0xf1,0x70,0x6b,0x97,0x6d,0x49,0x97,0xe1,0xb6,0x24,0x6d,0x2d,0xdb,0xe8,0x70,0xbc,0xc8,0xf9, + 0x5d,0x30,0x38,0x11,0x9b,0x36,0x5f,0xa5,0x8b,0x62,0xc7,0x70,0xed,0xff,0xa8,0x17,0xa8,0xf6,0x58,0x2b, + 0x96,0x72,0x3f,0x25,0x35,0xf3,0xb9,0xa6,0x1d,0x98,0xe5,0x3c,0x4d,0xac,0xb8,0xb4,0xf5,0x56,0xdd,0x26, + 0x8c,0x59,0x23,0x82,0x4b,0x3c,0x63,0xc9,0x4b,0x7d,0x7b,0x68,0x3f,0x46,0xe3,0xbf,0x43,0x4a,0x48,0xa0, + 0x5b,0x8f,0xd8,0x2a,0x66,0x51,0x78,0x1a,0x2b,0x4c,0xf4,0x56,0xbb,0x0d,0x11,0xfe,0x87,0x9a,0x2b,0xec, + 0x7b,0x95,0x1f,0x4b,0xeb,0xe1,0xcc,0xd0,0xde,0xb6,0xe9,0x68,0xc5,0x16,0xf5,0x45,0x7c,0xf7,0x5b,0xc9, + 0x9e,0x75,0x88,0xf4,0x1c,0x55,0x59,0xda,0xbf,0x2a,0x53,0x69,0xb4,0x7e,0x3a,0xe7,0x57,0xa0,0xa9,0xc2, + 0x53,0x11,0xd9,0x9d,0xb3,0xb3,0xaa,0xbb,0x7d,0xa7,0x6b,0xdc,0xc9,0x75,0x9d,0x7d,0xa7,0x3f,0x62,0x51, + 0x9c,0x28,0xda,0xf2,0xf7,0x60,0x64,0x85,0x37,0x9d,0x75,0x71,0x49,0xe0,0xd3,0x09,0x66,0xdd,0x11,0x1b, + 0xa2,0xe5,0xee,0x48,0x64,0x20,0x78,0x84,0x56,0xef,0x1f,0x92,0x62,0xcc,0x89,0x66,0xde,0x80,0x53,0xb8, + 0x0e,0xfe,0xf2,0xbf,0x7d,0x21,0xbc,0xa9,0xf0,0x98,0xdd,0x1a,0xa9,0x0f,0x58,0xcd,0x78,0xd6,0x8a,0x84, + 0x4f,0xb5,0x5d,0xd1,0xa4,0x66,0xeb,0x3e,0xc6,0x22,0x4c,0x78,0x11,0xa4,0xa2,0x15,0x69,0x7e,0x6f,0x6f, + 0x23,0x69,0x1b,0xd2,0x77,0x80,0x5f,0x04,0x81,0x02,0xc2,0xf8,0xca,0x18,0xd5,0x30,0x8f,0xe7,0x8f,0x89, + 0xfa,0x51,0x78,0xca,0x2d,0xc3,0x11,0x1c,0xb0,0x8c,0x3d,0x4c,0x61,0x47,0x99,0xea,0xc1,0x88,0x87,0xd6, + 0x82,0x7f,0x0a,0x8d,0xb7,0xf3,0x3b,0xcb,0xed,0xdc,0x9d,0x71,0x9b,0x87,0xd7,0xb6,0x54,0xed,0xd2,0xb3, + 0x62,0xc3,0x3d,0xc5,0x6f,0x8c,0x9b,0x40,0x22,0xd6,0x22,0x0b,0x9e,0xbb,0x93,0x2d,0xca,0xfd,0x84,0xb5, + 0xf7,0xa3,0xba,0xdf,0x06,0x05,0x05,0xc0,0x9d,0x3f,0xb9,0x73,0xdf,0x89,0x26,0x04,0xd5,0x2f,0x45,0xc5, + 0xc2,0x36,0x34,0xb7,0x4a,0x1e,0x11,0x15,0x5a,0xf7,0x63,0xb9,0xf6,0x7c,0x0d,0x3e,0xe8,0x2c,0x49,0xf7, + 0x33,0x31,0x07,0x90,0x27,0xf1,0xdf,0xc1,0x99,0x6b,0x3e,0x8b,0x37,0xf4,0xc2,0xbf,0xaa,0xc5,0x56,0x80, + 0x07,0xf6,0x9f,0xdc,0x85,0xea,0xfe,0x5b,0xd1,0x1a,0xb9,0xf2,0x7c,0x4e,0x13,0xac,0x85,0xd9,0xc3,0x1c, + 0x4d,0xa5,0xcf,0xa1,0x15,0x46,0xa8,0xb1,0x39,0x54,0xda,0x32,0xe2,0xc4,0xd7,0x15,0xe9,0x5c,0x00,0x77, + 0x7e,0x9f,0x60,0x35,0x00,0x88,0x0a,0x69,0xf0,0x6b,0xbe,0x85,0x5d,0x80,0x5e,0xbd,0xbe,0x18,0xf4,0x75, + 0xbe,0x67,0x16,0x56,0x1c,0xb8,0xff,0x83,0x90,0x4a,0xa5,0x4d,0x11,0xfc,0x98,0xf8,0xd5,0xaf,0xef,0xa1, + 0x19,0x1c,0xdc,0x0a,0x86,0xf9,0x3e,0x69,0xc3,0x2a,0x0d,0x8b,0x76,0x46,0x0c,0xb6,0x85,0x88,0xec,0x99, + 0xc4,0xc7,0x9d,0x47,0x29,0x62,0xdf,0xb6,0x3b,0x3b,0xe2,0x4a,0xf3,0x3c,0x5e,0x1a,0x4f,0x85,0x62,0x1d, + 0xaa,0x25,0xcf,0x49,0x1b,0xbe,0x62,0x57,0xaa,0x59,0xbd,0x24,0x98,0xec,0xa8,0x3a,0x2e,0x05,0xf1,0x44, + 0xc5,0x23,0xc3,0x92,0x17,0x5a,0xee,0x38,0x0a,0x93,0x93,0x62,0xd8,0x1f,0x49,0xd8,0x68,0x8c,0x62,0x47, + 0x8e,0xfa,0xde,0x1e,0xd8,0x82,0xf6,0x23,0x4c,0x58,0x63,0x89,0xe7,0x10,0x07,0x40,0x9d,0x19,0x33,0xd1, + 0xf4,0x84,0xcb,0x0d,0x71,0x28,0xee,0x3a,0xc7,0x91,0x07,0xa1,0x87,0xe5,0x40,0x7c,0x86,0x01,0x2f,0x38, + 0x9e,0x09,0x0d,0x75,0x52,0x89,0xbf,0x26,0x7a,0xa8,0xe3,0x30,0x3f,0x99,0x0c,0xfb,0x9b,0x07,0x20,0xf2, + 0x55,0x1a,0x11,0xac,0x74,0x3e,0x40,0xeb,0x4f,0xe3,0xf2,0x69,0xb6,0x60,0x19,0xdb,0xb3,0x59,0x42,0x90, + 0xf5,0x33,0xad,0x35,0x5c,0xaf,0x9f,0x8c,0x79,0x88,0x83,0x99,0x8c,0x7a,0xec,0x05,0x0b,0xfd,0xb5,0x56, + 0xa6,0xb7,0xf3,0x32,0x64,0x85,0x4a,0x08,0x21,0xb5,0x79,0xb4,0x30,0x4e,0xe3,0x70,0x61,0x6c,0xc2,0x75, + 0x89,0x8c,0xae,0x7e,0xdb,0x2b,0xc7,0x86,0xe1,0x75,0xbb,0x87,0x01,0xd3,0x17,0x54,0x38,0x58,0x08,0x66, + 0x39,0xe8,0x30,0x99,0x9a,0xa0,0x1a,0x6f,0x31,0x65,0xb6,0x01,0x45,0x59,0xf4,0xf7,0x0c,0xc8,0x1b,0x97, + 0xfc,0x6c,0xd2,0xe5,0x2c,0x11,0xe8,0x79,0x9f,0x35,0x2d,0xfb,0x9a,0x29,0x56,0x66,0x4c,0x17,0x51,0xf1, + 0x8a,0xd2,0xdd,0x58,0x99,0xe5,0xfb,0xa5,0xd0,0xca,0x5a,0xbf,0xf0,0x17,0xe6,0x11,0xf4,0xaf,0x1f,0x6a, + 0xbf,0xfe,0xd4,0x3e,0xfe,0xe1,0xb4,0x63,0x46,0x38,0xd2,0x70,0x77,0x50,0xcc,0xef,0x65,0x93,0x49,0x11, + 0x97,0x3f,0xc4,0xc9,0xf4,0xa2,0xb4,0x6a,0x35,0x35,0x16,0x65,0xff,0x78,0x8d,0x2b,0x07,0x61,0x18,0x09, + 0x2c,0x2a,0x99,0x70,0xea,0x5f,0x83,0x72,0xa3,0xce,0xf2,0x9e,0x51,0xfa,0x09,0xf3,0x9e,0xa5,0x1d,0xa5, + 0x52,0x2a,0xc0,0x78,0xae,0x28,0x09,0x8e,0x35,0xbd,0xc9,0xe2,0xfc,0x9c,0xc0,0xf5,0x27,0x2f,0x57,0x15, + 0x68,0xb0,0x03,0x79,0xcf,0x2d,0x11,0xc7,0x3b,0x07,0xa6,0x9b,0x5d,0x15,0xaf,0x53,0x82,0x05,0xe9,0x30, + 0x5d,0x70,0xd4,0x96,0x2a,0xc0,0xd8,0x68,0x98,0x15,0x1e,0x74,0xdb,0x0c,0x27,0xc7,0x32,0x7c,0xb6,0x4f, + 0x07,0xd7,0xa4,0x3c,0xb4,0x05,0xb7,0x6a,0xf1,0x1b,0x4c,0x39,0x6e,0xf3,0x97,0x89,0x91,0x07,0x56,0xd7, + 0xb9,0x2a,0x5e,0xc7,0xee,0x2a,0xb1,0xaf,0x57,0x6e,0x84,0xd7,0x32,0x16,0xd9,0x78,0xb4,0xd7,0xd6,0x15, + 0xcf,0x80,0x81,0x2b,0xb1,0x2d,0xb5,0x75,0x77,0x6e,0x4a,0x51,0x84,0xf2,0xfc,0xa9,0xda,0x80,0xb4,0x95, + 0x64,0x36,0xce,0x30,0x6a,0x9a,0x11,0xa9,0x66,0xeb,0x3e,0x88,0x16,0xaa,0x6d,0x48,0x47,0x45,0x6b,0xea, + 0x56,0x1a,0x8e,0xd4,0x64,0x42,0x96,0x89,0x99,0x9d,0x5d,0xc3,0x3c,0xfc,0x5b,0x7e,0xad,0x9f,0x24,0xd3, + 0x9e,0x15,0x10,0x37,0x8c,0x13,0xbf,0xca,0xa8,0x85,0xe2,0x0d,0x17,0xed,0x59,0x90,0xa8,0x85,0xff,0xcc, + 0xad,0xbc,0x46,0x28,0xde,0xf0,0x55,0x5c,0xab,0x58,0x8f,0xdd,0xbb,0x11,0x1a,0xe5,0x6d,0x45,0xaa,0x61, + 0xa7,0x16,0xb0,0x63,0xa8,0xed,0x1d,0x28,0xbd,0xba,0xd8,0x4d,0x50,0xed,0x84,0x5d,0x47,0xea,0x3b,0x13, + 0x3f,0x94,0xcd,0xf1,0x5d,0x66,0x08,0x6c,0x44,0xad,0xb0,0xf1,0xbe,0x03,0x0b,0xed,0x01,0x57,0x67,0xcf, + 0xe5,0x95,0x9d,0xaf,0xd1,0xf4,0x83,0x58,0xbb,0x3e,0x09,0x38,0x42,0xde,0x5a,0xd4,0x58,0x48,0x70,0x9b, + 0x07,0x9b,0xb5,0xd5,0x91,0x28,0xed,0x38,0x4d,0x6b,0x7f,0x09,0xab,0x4a,0xe3,0x43,0xd1,0x90,0x5b,0xc4, + 0x09,0x7b,0xf5,0x3c,0xcb,0x78,0xfd,0x1f,0x09,0x9b,0x4c,0x5a,0x2e,0x4b,0x34,0xc2,0x84,0x46,0xe1,0x0f, + 0x49,0x30,0xad,0x67,0x8b,0xe3,0xb9,0xf6,0x00,0x59,0x31,0xd4,0x85,0xa8,0xd6,0xcf,0x50,0x39,0xd2,0x9e, + 0xe2,0x73,0x84,0x0d,0x0a,0x4b,0x10,0x6a,0x7c,0x17,0xb2,0x27,0x1f,0xf8,0xf0,0x35,0x8a,0x1d,0x72,0xa1, + 0xf3,0x79,0x6e,0xa4,0x85,0x71,0xce,0x7e,0x60,0xd2,0x7a,0x44,0x6c,0xf1,0x5a,0xff,0x2e,0xaf,0xf3,0x92, + 0xa9,0x76,0xe7,0xe4,0x1a,0x7f,0xc3,0xb4,0xd1,0x09,0xad,0xcb,0xd4,0x68,0x12,0xd1,0x48,0x08,0xe1,0x0b, + 0x49,0x9d,0x56,0x9e,0x61,0xd2,0x4d,0x2f,0xdc,0x69,0xcd,0x0b,0x77,0xda,0x37,0x5a,0x21,0x6b,0xac,0x87, + 0xf6,0x43,0xe0,0x5a,0xfd,0xef,0x42,0x15,0x44,0xc2,0x5e,0xef,0xed,0xfd,0x2b,0xc5,0xff,0x3d,0xb8,0xcc, + 0x02,0xa5,0x06,0x05,0xe6,0x6f,0x61,0x8d,0x71,0x28,0x27,0xf2,0xf7,0xc4,0xff,0x27,0x54,0x28,0x6f,0x4f, + 0x6f,0x5d,0x77,0x10,0xf4,0x56,0xa7,0xa9,0xd7,0x1d,0x78,0xa7,0xeb,0xd3,0xf5,0xc1,0xd4,0xff,0x4f,0xe8, + 0xbc,0xef,0xf7,0xbe,0xe8,0x0e,0xfe,0xd8,0xbd,0x5d,0xbb,0xde,0xea,0xe4,0x74,0x78,0x7a,0x70,0x7a,0x3a, + 0xa4,0xbc,0x38,0x6b,0x55,0x5c,0xe7,0xbb,0x43,0xeb,0x6c,0xff,0x67,0xe2,0x3b,0xa7,0xa7,0xbb,0x7b,0x58, + 0x28,0xca,0x39,0x6a,0xcb,0x31,0x0e,0x03,0x68,0x25,0xc5,0x43,0x8a,0x5b,0x76,0x1d,0x35,0x18,0x19,0x8d, + 0xd3,0xa5,0x45,0x98,0x42,0xfe,0xe7,0x97,0x59,0x78,0x2b,0x42,0x7d,0x78,0x33,0x0d,0x4e,0x1c,0x4b,0xda, + 0xef,0x0c,0x7d,0x83,0xab,0x1b,0xc6,0x1d,0xec,0x4d,0xab,0x07,0xf7,0x0f,0x0a,0x37,0xe6,0x22,0xa5,0x11, + 0x33,0xdb,0xbe,0x88,0xb3,0xac,0xa6,0xc2,0x1f,0xdf,0xbd,0x79,0x4d,0x09,0x80,0x68,0xc4,0x6c,0x4c,0x3d, + 0x8d,0xc0,0x52,0xab,0x22,0x5c,0xe2,0x42,0x80,0x02,0x55,0x18,0x24,0x3c,0x4d,0x98,0xd2,0x08,0x73,0x6c, + 0x75,0x9c,0xc2,0x31,0x6b,0x8b,0x8f,0x73,0xc7,0xb1,0x14,0xfa,0xab,0x2e,0xc1,0x46,0x74,0x43,0x7b,0x3e, + 0x81,0xd3,0xad,0x95,0xe8,0x3a,0x3e,0x8c,0x7c,0x6b,0x7d,0xa9,0x5a,0x23,0x53,0xde,0xce,0x94,0x0a,0x25, + 0x11,0xc4,0x69,0xfb,0xb2,0xf1,0xc3,0xc8,0xe7,0x2f,0x1b,0xe3,0xfd,0xc6,0xb2,0x71,0x53,0xcd,0x65,0x7b, + 0x97,0x60,0xe5,0xea,0x4b,0x27,0x95,0xad,0xa5,0xe3,0x84,0xbf,0xba,0x74,0xdc,0x6d,0x6d,0xe9,0x38,0xc5, + 0x5a,0x3a,0xfe,0xad,0x97,0xce,0xee,0xcb,0xd4,0x42,0x79,0x57,0x2a,0x54,0xb9,0x5d,0xd8,0x1a,0xc8,0xe2, + 0xe5,0x19,0x3f,0x31,0xc1,0xde,0x8f,0x6d,0x3f,0x61,0x44,0x99,0xcd,0x94,0x2d,0xa3,0x18,0xec,0x29,0x1b, + 0x4c,0xb1,0x2b,0x4c,0x0a,0x46,0xc9,0x78,0x70,0xa2,0xa9,0x58,0x56,0xa2,0x35,0x83,0x47,0x31,0x8b,0xbc, + 0x3e,0x87,0xaf,0xa1,0x24,0x13,0x4b,0x69,0x65,0xd7,0x08,0xa3,0xcf,0x12,0x06,0x9d,0x5a,0xb8,0x39,0x67, + 0xc3,0x46,0x18,0x05,0xb2,0x79,0xa3,0x18,0x3c,0xe6,0xaa,0x25,0xaa,0x9f,0xc9,0x08,0x5b,0x0d,0x4f,0x65, + 0xc8,0x95,0x89,0x21,0xdb,0x49,0xb6,0x9a,0x53,0xa2,0xdb,0xba,0x3d,0x23,0x5b,0xa0,0x2a,0xf3,0x53,0x6d, + 0x3f,0xb9,0x61,0x87,0xaa,0x2c,0x5b,0xd9,0xb0,0xb2,0xc5,0xae,0x15,0x63,0xd5,0x56,0xaf,0xd2,0x0f,0x2d, + 0x16,0x5b,0xd3,0x2a,0xcb,0x4b,0x18,0xae,0x6a,0x93,0x49,0x5e,0xa6,0xa6,0x11,0xa6,0x2c,0x9b,0x18,0xa5, + 0xaa,0xc5,0x13,0xf3,0x09,0x6d,0x60,0x59,0xd9,0x7e,0x36,0x96,0x88,0xed,0x71,0x69,0xa1,0x78,0xad,0x69, + 0x9d,0xa2,0x2c,0x3c,0xf8,0xe3,0xb4,0xf8,0xc2,0x3d,0xa1,0x7f,0x9d,0x7b,0x8f,0x1e,0x9f,0x1e,0x84,0xc3, + 0xae,0x47,0xb8,0x06,0x89,0xa1,0x87,0x7f,0x07,0x81,0x43,0xd9,0xce,0xf0,0x0b,0x42,0x3b,0xab,0x7b,0xf4, + 0x79,0x8f,0x3e,0xef,0x75,0x57,0xaa,0x4e,0xf8,0xe8,0xf1,0x7f,0x51,0x15,0xcf,0x1b,0x1c,0xd0,0x60,0x42, + 0xe7,0x24,0xda,0xff,0xf3,0xc9,0xfe,0xef,0x67,0xc3,0x93,0xd3,0xd3,0xeb,0xd3,0xd3,0xfd,0xd3,0xd3,0xde, + 0xf0,0x0b,0x87,0x16,0x35,0x64,0x1c,0xe6,0x74,0x8b,0xac,0x4b,0x98,0x2e,0xf0,0x06,0xf2,0xe9,0x39,0xfe, + 0x2c,0x0b,0x2d,0x64,0xe7,0xfc,0xf1,0xc8,0xe9,0x8e,0x32,0xcf,0x5f,0xe8,0xc1,0x9d,0x1e,0x0c,0xbc,0xc7, + 0x07,0xb4,0xa0,0x8d,0x62,0xa7,0xa7,0x07,0x28,0xd9,0x75,0x4e,0xfe,0x78,0x3c,0xfc,0xe2,0x31,0x0c,0x1b, + 0x51,0xe5,0xd1,0xce,0xf3,0x37,0xcf,0x8e,0xff,0xf9,0xf6,0xdb,0x0e,0xd2,0xbb,0x8f,0x0f,0x12,0xff,0x42, + 0xd2,0x61,0xb7,0xb3,0x94,0xcf,0xd3,0x93,0x03,0x62,0x82,0xf1,0x62,0xec,0x7c,0x70,0x0c,0x16,0x3e,0xf8, + 0xe0,0xf6,0x68,0x22,0x53,0xbf,0x7e,0xe4,0xa9,0xa0,0x03,0x76,0xbe,0x54,0x0f,0x2e,0xd3,0xcc,0xbf,0xc9, + 0x08,0x70,0xfc,0xb3,0xcc,0xbf,0xce,0xfc,0xe3,0xcc,0xbf,0xcc,0xfc,0x0f,0x99,0xff,0x2c,0xf3,0x9f,0x64, + 0xfe,0xbb,0xcc,0xdf,0xcd,0xfc,0x37,0x0c,0x82,0xca,0x6a,0x57,0x99,0x43,0xeb,0xb7,0x0e,0xbe,0xf0,0xbe, + 0xcd,0xf0,0x5e,0xfc,0x96,0xfe,0x75,0xf6,0x66,0x65,0xdf,0x09,0x9c,0x47,0x74,0x28,0xf7,0xa6,0xfc,0xf9, + 0x18,0x9f,0x80,0x4f,0xfa,0x71,0xcf,0xb9,0x47,0x3f,0xa2,0xab,0x39,0x32,0xf6,0x90,0xf1,0xb7,0xa3,0x43, + 0x7c,0x9f,0xa6,0xfc,0xe3,0x1b,0xfe,0x2e,0x9d,0xb5,0xff,0x9e,0xe6,0xb6,0x47,0x8b,0x4c,0x9c,0xef,0xb4, + 0x5c,0xa1,0xfa,0x8a,0xaa,0x79,0x7d,0x9a,0xd0,0xf3,0xd6,0xac,0x15,0xb5,0xb4,0xfa,0xdb,0x37,0x5c,0xe2, + 0x05,0x0f,0x18,0xfa,0x0e,0xf5,0x71,0xbe,0xcc,0xb6,0xd0,0x14,0x7b,0x7b,0x2f,0x32,0xf1,0x9c,0x70,0xca, + 0x92,0x95,0x12,0xbe,0x8a,0xfc,0xef,0xb0,0xbe,0xff,0xb1,0xfa,0x63,0xb9,0x9f,0xa5,0xc1,0x81,0xff,0x1a, + 0x3f,0x97,0xfb,0x2b,0x24,0xd1,0xcf,0x57,0xf4,0xd3,0xed,0x7d,0x41,0x17,0x6a,0xd1,0xa5,0xd1,0x24,0xe9, + 0x2a,0x9b,0xf0,0x77,0xef,0x0b,0xef,0xc0,0xff,0x99,0x72,0x7d,0x82,0x2b,0x9f,0xae,0xdb,0x21,0x41,0x19, + 0x95,0xb0,0x7f,0x7a,0x83,0xdd,0x03,0xff,0x37,0x86,0x0a,0x77,0x75,0xea,0xed,0xd2,0xa0,0x9f,0x66,0x6c, + 0x14,0xf6,0x05,0xfd,0xf0,0x7f,0x45,0x4e,0x80,0x9e,0x59,0xe0,0x7c,0xe0,0xff,0x42,0x09,0xa7,0xbd,0x93, + 0x3f,0x7a,0xc3,0x2e,0x15,0xfd,0xa1,0x79,0x3f,0x2b,0x37,0x31,0xbf,0x27,0xe1,0xef,0xc9,0x1d,0xe6,0x49, + 0x5e,0xa5,0x03,0x41,0x44,0xd3,0xef,0x89,0x6d,0x92,0x48,0x97,0xf0,0x9f,0xe8,0xf9,0xc3,0xd5,0x2c,0x2d, + 0x82,0xd7,0xef,0x4e,0xc7,0xdd,0x03,0xff,0x5f,0x48,0xe1,0x6f,0x1a,0xc7,0x4f,0x59,0x78,0x52,0x66,0x74, + 0xe7,0xf8,0xb7,0xb4,0xbc,0xc7,0x1f,0xb9,0x5b,0x44,0x7a,0xa4,0x7d,0x49,0xc8,0x83,0x90,0xe6,0x5d,0xf8, + 0x49,0xff,0x55,0x34,0x67,0x4d,0xc4,0x13,0x67,0xb9,0xcf,0x4f,0x28,0xce,0x10,0x54,0x12,0x7e,0xf2,0xa4, + 0x41,0x09,0x3a,0xc3,0xd5,0x8a,0x52,0xd4,0xb7,0x56,0x08,0x55,0xb7,0x0d,0x27,0x82,0xda,0x92,0x9b,0x6b, + 0xb9,0x9f,0x4c,0x64,0x9b,0xb3,0x30,0x19,0x38,0xd4,0x96,0xd3,0x4d,0x70,0x28,0x03,0xe2,0x0d,0xa3,0x50, + 0x88,0x71,0x5d,0x14,0x8f,0xb8,0x52,0xb8,0xa8,0xa5,0x99,0x36,0x46,0xe1,0x3f,0x98,0x14,0xff,0x11,0xba, + 0x28,0x7e,0xcc,0x3a,0x46,0xdc,0xa1,0x2f,0x0e,0x33,0xce,0xb3,0x0f,0xd4,0xf7,0x4f,0x48,0x87,0xaa,0x3e, + 0x88,0xd7,0x11,0x21,0x68,0x21,0xed,0x46,0xbd,0x64,0x42,0x38,0xc2,0xe9,0xe6,0xd4,0x3f,0x4d,0xff,0x9e, + 0xae,0x72,0xcf,0xe9,0x66,0xfe,0xf7,0xa8,0x74,0x1b,0x7f,0x98,0x07,0x28,0x27,0xf8,0x3b,0x18,0xad,0xb5, + 0xbc,0x56,0xfa,0xa5,0x41,0xcd,0x30,0x28,0x5a,0x5d,0x19,0x50,0xcc,0x09,0x6a,0x08,0x79,0x34,0x4e,0x32, + 0xe9,0x7f,0x86,0xfe,0xab,0x26,0xed,0x5e,0xb9,0x14,0x77,0x29,0x7d,0xcc,0x54,0x1f,0x0b,0xdd,0x87,0x52, + 0xf1,0x29,0x21,0x9a,0xab,0x77,0x45,0x09,0xb2,0xe8,0x30,0x79,0xf8,0x09,0xbf,0x6b,0xbd,0x24,0xaa,0xc5, + 0x05,0x02,0x0b,0x0f,0x46,0x3d,0x2c,0x1d,0xc2,0xce,0x15,0x2c,0x4c,0xc5,0x2f,0x5a,0x80,0x82,0xd6,0x05, + 0x2c,0xdd,0xd0,0xff,0x91,0x30,0x03,0x55,0x23,0x56,0x01,0x60,0x07,0xa9,0xbd,0x7e,0xd7,0xfe,0x29,0xf3, + 0x2b,0x1e,0x22,0x50,0x4f,0x69,0xad,0x4f,0x4b,0x62,0x97,0x23,0xda,0x1c,0x50,0x79,0x64,0xb5,0xb3,0x0b, + 0x7f,0xe9,0x5f,0x99,0x67,0xb5,0x69,0xed,0x4d,0xf5,0x46,0xa0,0xce,0x3f,0xb7,0x00,0x8e,0xdf,0x62,0x25, + 0x00,0x93,0x61,0x4f,0x8c,0xa7,0x26,0x80,0xc1,0x95,0x3f,0xf5,0x7c,0x15,0x64,0xb7,0x7a,0xcf,0xbc,0xf1, + 0x88,0x03,0xf5,0x2f,0xc2,0x2b,0x7f,0x19,0xde,0x63,0x2d,0x81,0x5d,0xed,0x84,0xe3,0xd7,0x68,0xd6,0x09, + 0x3b,0x8d,0xb0,0xea,0xea,0x45,0x41,0xde,0x31,0x77,0xd9,0x73,0xac,0x0a,0xd5,0x68,0xde,0x34,0xcd,0x1c, + 0x33,0x83,0x85,0xb2,0x9e,0x6e,0x74,0xed,0xe1,0x19,0xd4,0xb5,0xcb,0xa0,0xd7,0x25,0xf7,0xe5,0x9c,0x89, + 0xc7,0x17,0x68,0x05,0x65,0x9d,0x01,0x55,0x93,0x84,0x4e,0x40,0x9f,0xea,0xf5,0x4d,0x1a,0xbc,0xd7,0x75, + 0x89,0x12,0x9a,0xf6,0xc4,0x94,0x7e,0xe0,0x9c,0xa5,0x2e,0xe5,0xe3,0x40,0xd0,0x1f,0x88,0x8a,0x08,0x1e, + 0x88,0xa9,0x2f,0x21,0x81,0xd5,0x4f,0xcb,0xcb,0x70,0xd9,0x75,0x3a,0x04,0x33,0xb0,0x84,0x71,0xea,0x63, + 0xd7,0xef,0xaa,0xd4,0x69,0x7d,0x01,0x82,0xfa,0x6f,0x42,0x9e,0x8e,0xd7,0x30,0xac,0xa8,0xa1,0x83,0x1b, + 0x42,0xb4,0xe6,0x14,0xd1,0xef,0x73,0x0f,0x2e,0x92,0x46,0xb4,0xbe,0xb3,0xd0,0x1a,0xb1,0xbf,0xc0,0x49, + 0x2f,0x7c,0xe5,0xe2,0xc6,0x5b,0xad,0x1c,0x34,0xea,0xf8,0x13,0x95,0x0e,0x6f,0x27,0xfb,0x55,0x26,0x7e, + 0x3a,0xfe,0x58,0x65,0x4e,0x22,0x9c,0xe7,0x2a,0x97,0x7f,0x3b,0xfe,0x3f,0x63,0x64,0x6a,0xa7,0x37,0xbe, + 0x53,0x37,0x1d,0xa1,0x4b,0x98,0x0e,0xcf,0xe0,0x2c,0x91,0x2f,0xdf,0xe9,0x2e,0xba,0xcc,0x7a,0x3b,0x5d, + 0x57,0xda,0xa7,0xe1,0x4e,0x06,0x4e,0xa0,0x4a,0xd2,0x5a,0x06,0x67,0xff,0x32,0x85,0x27,0x48,0x82,0x56, + 0x4c,0x29,0x9d,0xc8,0x9a,0x3a,0x02,0x32,0x51,0x28,0xc5,0x76,0xc1,0x9c,0xd6,0x56,0x96,0x92,0x46,0x21, + 0x92,0x7b,0x6a,0x5c,0x03,0x57,0xda,0x42,0x37,0x63,0xfa,0xbb,0x69,0xfc,0x4a,0xcd,0x29,0x74,0xb8,0xbb, + 0xbb,0xa4,0x86,0xdd,0x19,0xef,0xaf,0x8c,0xd7,0x09,0x16,0x1e,0x77,0x94,0x84,0x34,0x13,0x2a,0x4a,0x9f, + 0x4b,0x6e,0xc4,0xee,0x84,0xb8,0xc9,0xdd,0xe4,0xd1,0x21,0x23,0x4a,0x1a,0x17,0x0d,0xc0,0x04,0xd6,0x3e, + 0xa1,0xf2,0x84,0x6e,0x45,0x37,0x8e,0x4a,0xd1,0x02,0xd4,0x8a,0x69,0x77,0x2f,0x94,0xe5,0xe9,0x3a,0x55, + 0x3a,0xa5,0x76,0x8f,0xa0,0x37,0x20,0xf5,0x19,0x98,0x08,0x7d,0xd2,0x24,0x19,0xe8,0x9c,0xbb,0x40,0x43, + 0xb0,0x1b,0xc3,0x85,0x30,0xf6,0x57,0x84,0xd2,0x6d,0xb8,0x88,0xb0,0xc5,0xf9,0x26,0x5c,0xfc,0x93,0x03, + 0x5b,0x55,0x7b,0xcb,0x3b,0x93,0xf0,0xce,0xb8,0x51,0x98,0xa9,0x15,0x8a,0x78,0x85,0x22,0x8f,0xf7,0x0a, + 0x5b,0x95,0x57,0x5b,0x45,0x23,0x85,0x61,0xda,0x47,0x47,0x08,0x48,0xb3,0x54,0x3d,0x6e,0xbc,0x9d,0x56, + 0x84,0xd5,0x44,0x3b,0xf0,0xb7,0xca,0xb1,0x3c,0x32,0xa8,0x62,0x23,0x0c,0x30,0xbc,0x68,0xab,0x19,0x21, + 0x96,0x11,0xcc,0xb3,0xe9,0x10,0xec,0x64,0xbc,0x04,0x18,0x0e,0x54,0xf6,0xe8,0x48,0xd0,0xc0,0xd5,0xf8, + 0x02,0x95,0x01,0xd5,0xb2,0xc1,0x65,0x12,0xa8,0x51,0xd1,0x41,0x69,0x1c,0x55,0x59,0x99,0x3e,0xf0,0x71, + 0x7b,0x9e,0x32,0x06,0x07,0xe1,0x2c,0x65,0x2a,0xe0,0x91,0x4b,0x62,0x12,0xd2,0x5a,0x94,0x78,0x74,0x1a, + 0x51,0x01,0xba,0xce,0x00,0x3d,0xb5,0x76,0x94,0xfa,0x88,0x79,0x77,0xec,0x13,0xcc,0x7a,0xd8,0x83,0x58, + 0xef,0x8c,0x8f,0xdb,0xa8,0x34,0xeb,0x1c,0x13,0xe6,0x9e,0x54,0x62,0x12,0xb7,0x58,0xad,0xd8,0x96,0x90, + 0xef,0xdf,0xf3,0xd9,0x82,0xae,0x1f,0xa7,0xfe,0x1a,0xe5,0xb0,0x15,0x20,0x90,0xb2,0xd9,0x88,0x9d,0xdd, + 0xb4,0x2e,0x00,0x74,0x2b,0x65,0xd5,0x1a,0x0a,0x37,0x0f,0xab,0x4c,0x04,0x6e,0x70,0xbe,0x4b,0x51,0x4c, + 0x90,0xe1,0x5a,0x34,0x10,0xc0,0xa6,0xc0,0xb0,0xa5,0x04,0x0f,0x7e,0xcd,0x4c,0xcd,0xc7,0x9b,0x30,0x54, + 0x55,0x6b,0x03,0x6b,0xe2,0x1c,0xdf,0x12,0xc1,0x14,0xb5,0x79,0x9a,0x00,0xa5,0xaa,0xfc,0x6a,0x41,0x0c, + 0x49,0x6c,0x0f,0xca,0xe5,0x99,0x6f,0x49,0x40,0x83,0x38,0x81,0x1f,0x9d,0xa7,0xf1,0xcb,0x78,0x52,0xbe, + 0x99,0xc7,0x29,0x8a,0x24,0x99,0x5f,0x5b,0x8a,0x60,0x91,0xf8,0x0d,0x29,0x67,0xf0,0x2a,0xf6,0x2d,0xe9, + 0xc0,0x4f,0x19,0x31,0x08,0xe3,0xc5,0xa8,0x5d,0x93,0xa6,0x13,0xeb,0xc3,0xac,0x63,0x5d,0xe9,0x28,0x7e, + 0x1e,0x3b,0x7a,0xe8,0xbd,0xcf,0x12,0x02,0x13,0x1f,0x2b,0xf2,0x7d,0x3b,0x0d,0xda,0x81,0xff,0x16,0x40, + 0x3b,0xae,0x5e,0x86,0x7f,0xc8,0xcc,0x7d,0x7d,0x12,0x7c,0x62,0x4e,0x92,0x54,0x79,0xe9,0xf0,0xcd,0x93, + 0x97,0x04,0x0a,0xea,0xba,0xf1,0x00,0x67,0x35,0x86,0xb3,0x53,0x48,0x84,0xfe,0x61,0x78,0xba,0xd3,0xeb, + 0xdd,0xb3,0x61,0x77,0x75,0x4a,0x24,0xb4,0x37,0xfc,0x62,0x70,0xea,0x81,0x9f,0x0b,0x1f,0xaf,0xfe,0xd0, + 0x23,0xa0,0x9f,0xa7,0xee,0x81,0xff,0xbb,0xaa,0x71,0x42,0x7c,0x1b,0x71,0x6f,0x67,0xbb,0x43,0x54,0x1d, + 0x82,0xf5,0x23,0xf2,0xb9,0x91,0xb8,0x3a,0x3d,0xb9,0x47,0x04,0xfc,0xbd,0x21,0x7d,0x38,0xf4,0xe1,0xe0, + 0x83,0xe8,0x5c,0xfc,0x69,0x96,0x1d,0x7a,0x5f,0x50,0xb3,0x44,0x9a,0xff,0x13,0xb4,0x4c,0x31,0x0a,0xee, + 0xff,0x1d,0x3e,0x8a,0x82,0x6f,0x44,0x7b,0x22,0x38,0x7a,0xe0,0xcb,0x7a,0x3f,0xb8,0xef,0x2f,0xe6,0xc1, + 0x83,0xaf,0x89,0x05,0x9e,0x94,0xc1,0x83,0xbf,0xfb,0x39,0xde,0x45,0x82,0x07,0xdf,0xf8,0xf0,0x6b,0x1d, + 0x3c,0x3c,0xf4,0xe5,0x69,0x32,0x38,0xf9,0xda,0x7f,0xf8,0x15,0x71,0x19,0xff,0x99,0xb5,0xb9,0xdb,0x02, + 0xca,0xe9,0x02,0x78,0x2c,0x57,0x58,0x7d,0xe2,0x8b,0xe2,0x08,0xd2,0x1e,0x82,0x07,0x7d,0xa8,0xf1,0x03, + 0x00,0x12,0x4d,0x23,0x91,0x11,0xf6,0xa1,0x28,0xc1,0x79,0xa6,0x8c,0xfa,0xfd,0x5c,0x9e,0x12,0xb9,0x08, + 0x42,0x8c,0x05,0xff,0x99,0xb9,0x75,0xdc,0xd0,0x21,0x8c,0xd3,0x51,0x29,0xa3,0x45,0x8e,0x4d,0x3a,0xe6, + 0x0c,0x3a,0xc0,0xa3,0x32,0x9f,0x71,0x8d,0x1d,0x5d,0x80,0x12,0x7e,0x82,0xe2,0xad,0xcf,0xce,0x40,0x6b, + 0x79,0x9c,0x22,0x99,0xd1,0xac,0x9e,0x45,0xbf,0x25,0x03,0x02,0x81,0x5a,0x0e,0x12,0x24,0x8b,0xd7,0x0e, + 0x59,0xf7,0xc4,0xd9,0xd3,0x3d,0x10,0x3b,0x52,0xaa,0xb3,0xb7,0xa7,0x47,0x28,0x79,0x3c,0xe6,0x43,0xb4, + 0x97,0x8c,0xc7,0xb3,0xf8,0xb3,0xaa,0x1d,0xb1,0x43,0x34,0xec,0xcf,0xe7,0xd4,0xba,0x0f,0xf8,0xc7,0x83, + 0x27,0xb1,0x85,0x4d,0x37,0x2b,0xf0,0xee,0x56,0x05,0xa8,0x6b,0xd9,0xd8,0xb3,0xa9,0x6c,0xac,0x5f,0xc3, + 0x10,0x84,0x20,0x36,0x54,0x8b,0x74,0x73,0x1c,0x09,0xaf,0x32,0x02,0xaa,0x5a,0x3a,0xa7,0x96,0x52,0x6a, + 0xe9,0x1e,0x04,0x5c,0x74,0xde,0xba,0xe0,0xae,0xab,0x56,0x71,0xeb,0x59,0x04,0x31,0xfc,0x17,0x55,0x5a, + 0x86,0x78,0xe6,0x1a,0x08,0x45,0x13,0x28,0xd2,0xc8,0xfb,0x48,0x71,0x0e,0x25,0xed,0xf8,0xaa,0xbc,0xe3, + 0xa9,0x31,0x8f,0x66,0x59,0x74,0x89,0x20,0xb9,0x69,0x8b,0x17,0xd3,0xcc,0x38,0xbf,0xe4,0x9f,0x10,0x35, + 0xd2,0x9d,0x88,0x3f,0xab,0xd5,0x3f,0x54,0xa2,0x91,0x4e,0x16,0xe1,0xef,0xb0,0xb1,0xd4,0xfa,0xe6,0x8e, + 0xc9,0x40,0x94,0x22,0xed,0x93,0x1d,0x2f,0x88,0xdf,0xc7,0x29,0x82,0xf1,0xd5,0x4b,0x2b,0xb1,0xa2,0x29, + 0x67,0x58,0x8a,0x70,0xe9,0xb2,0xee,0x44,0x19,0xb1,0xc5,0xb3,0x49,0xf7,0x4c,0x60,0xae,0x1a,0x02,0x5d, + 0xad,0x2e,0xd3,0xbe,0x72,0x77,0x7c,0x73,0x1e,0x9b,0x98,0x8a,0x2d,0x1b,0xb9,0x63,0xac,0x73,0x95,0xaf, + 0xcb,0x74,0x14,0xbf,0x80,0x11,0x16,0xff,0x6a,0xc6,0x0e,0x84,0xdb,0xed,0x3c,0x0a,0x5d,0x5b,0xea,0x73, + 0x7a,0x7a,0xee,0x74,0x9d,0x31,0xe1,0xf0,0x09,0x24,0x6c,0x04,0xf4,0x25,0xde,0x1c,0x68,0x91,0x6f,0xd8, + 0xdf,0xda,0x08,0xd2,0x3d,0x5c,0x7b,0xfe,0x75,0x52,0x5e,0xf8,0xd1,0x75,0x94,0x94,0x3e,0xeb,0xfb,0xfb, + 0xec,0xd9,0x5c,0xe9,0xc4,0xf3,0x03,0x8f,0xcf,0x8e,0x48,0x7d,0x0e,0x32,0xef,0x5f,0x13,0x5a,0x8d,0xfd, + 0x1b,0x88,0xf5,0x14,0xb2,0xf1,0x89,0xfb,0xca,0xe0,0xc4,0x90,0x1d,0xac,0xf8,0x32,0x03,0xed,0xd8,0x4b, + 0xbb,0x53,0x14,0xd7,0x9f,0xc4,0x9a,0x48,0xbc,0x79,0xf6,0x6d,0x96,0xa4,0x0b,0x78,0xe4,0x39,0x5f,0x4c, + 0xa7,0x90,0x03,0xaa,0x55,0xa8,0x62,0xa8,0x38,0xca,0xfd,0x0c,0xee,0x04,0x75,0x3b,0xd0,0xb4,0x56,0x98, + 0x9a,0xd7,0xe5,0x19,0xca,0x3b,0x4a,0x63,0xce,0x32,0x28,0xf1,0x21,0xca,0x7a,0xe9,0xad,0xed,0x10,0x4a, + 0x07,0xc2,0x3f,0x3d,0x25,0x94,0x4f,0xff,0x54,0xad,0x36,0x32,0x10,0x00,0x6e,0xb7,0x29,0xda,0xa9,0x2c, + 0x6c,0xb7,0x1a,0x84,0xb2,0x17,0x60,0xc2,0x8d,0x08,0x6c,0x1c,0xee,0x1c,0x79,0xfe,0x71,0xa6,0xf6,0x94, + 0x6d,0xbf,0x20,0xc6,0xb6,0x62,0xb0,0xf4,0xd3,0x47,0xd7,0x99,0xed,0x77,0xe5,0x3a,0x63,0x13,0x5b,0x18, + 0xf7,0x4e,0xb3,0xb0,0xac,0x20,0xfb,0x18,0xbf,0xf4,0x7d,0x0f,0x90,0xf2,0x2f,0x91,0x62,0xdd,0xe6,0x9c, + 0xf8,0x01,0x89,0x8d,0xeb,0x9a,0x33,0xce,0x33,0x80,0x77,0xd9,0x72,0x18,0x5e,0xcb,0x61,0x38,0x6b,0x16, + 0x68,0xca,0x62,0xa8,0xcc,0xf5,0x46,0x99,0xac,0x28,0x9b,0x85,0x6e,0x30,0x04,0xda,0x8d,0xe4,0x2a,0x29, + 0x11,0xdf,0xd0,0x70,0xda,0xa2,0x5a,0xb2,0x73,0xc4,0x1a,0x4e,0x08,0x5a,0x8e,0x13,0xf2,0xdb,0x05,0x95, + 0xe2,0x61,0xfa,0x58,0x2f,0xd0,0xaa,0x47,0x1b,0x46,0x17,0xcd,0x45,0xa6,0x5f,0x8b,0x6e,0x48,0xd0,0x05, + 0x8d,0xd5,0xc5,0xb9,0x3c,0x20,0xb8,0xb6,0x41,0x74,0xae,0x5d,0x04,0xb0,0xc1,0xbe,0x5f,0x54,0x01,0xe9, + 0xc5,0xbb,0xec,0xc2,0x53,0x8f,0x69,0x78,0x53,0xc8,0xf1,0x53,0x76,0xac,0xf1,0xdc,0x4a,0xc9,0xac,0xc5, + 0x9f,0x84,0x51,0x15,0xa5,0x3e,0x79,0x1c,0x1e,0x22,0x16,0x41,0x32,0xec,0xcd,0x74,0x51,0x1c,0x74,0x9a, + 0x17,0xf5,0xb3,0xbf,0xaf,0xe9,0xca,0x90,0x1f,0x75,0x51,0xda,0xb2,0xad,0xb4,0x1b,0x1a,0x3d,0x0e,0x93, + 0xfe,0x88,0x2a,0x94,0x3d,0x76,0xa0,0xc2,0x7f,0xd8,0x8d,0x3a,0x0b,0x19,0x30,0xfe,0xbe,0x2e,0x1e,0x62, + 0x01,0x13,0xee,0x76,0xff,0x88,0xf3,0x99,0x11,0x72,0xce,0x73,0x50,0x79,0xc5,0x80,0x89,0xab,0x9c,0x7d, + 0xd1,0xf3,0x07,0xcd,0x9f,0x96,0x7b,0xe7,0x50,0x9c,0x1e,0x38,0x73,0x2e,0xc5,0x61,0x13,0x5a,0xcb,0x1d, + 0x71,0x39,0xbf,0x36,0x10,0x59,0x41,0x5a,0x54,0xed,0xf7,0x00,0xc2,0x12,0x6c,0x22,0xf4,0xcc,0x2b,0xd1, + 0x0b,0x6d,0x59,0xd9,0xab,0x68,0x4c,0x86,0xb6,0x19,0xde,0x93,0x1b,0x94,0x25,0x67,0x2c,0x68,0x51,0xe2, + 0x3e,0x4b,0xf2,0x12,0x42,0xe2,0xc4,0x96,0xbc,0xc9,0x5c,0xed,0x7f,0x43,0x4c,0x4e,0xb3,0xc6,0x8b,0xf7, + 0x3c,0xfc,0x36,0x3b,0x19,0x23,0xee,0x13,0xff,0xad,0x09,0xb9,0x89,0x88,0x3b,0x2d,0x4e,0x4f,0xdf,0x11, + 0xf9,0xe6,0xb9,0x8f,0x0e,0x98,0xb1,0x15,0x69,0xb7,0x47,0xa7,0x3e,0x01,0xdb,0x0c,0xc3,0x2b,0x2d,0xbf, + 0x9e,0xdb,0x82,0x6b,0x06,0x0f,0x0d,0x69,0xc6,0xc8,0xd5,0xa7,0xf1,0x8c,0x99,0xfb,0x53,0x2e,0x25,0xb1, + 0x70,0x88,0x22,0x9c,0x86,0x95,0x6f,0xa9,0x03,0xc8,0xca,0xa9,0xef,0x42,0x7a,0xde,0xdf,0x7f,0x7c,0x30, + 0x25,0x36,0x83,0x6e,0x7e,0xbb,0xc8,0xe9,0xc9,0xb3,0xe7,0x4f,0x8e,0x9f,0x9c,0x9e,0x54,0x25,0x87,0x43, + 0x53,0x12,0x92,0x63,0x77,0xec,0x8b,0x1b,0x65,0x68,0xab,0x28,0x77,0x4c,0x1c,0x02,0xef,0x22,0x92,0xcb, + 0x92,0x3f,0xa0,0xe2,0xe0,0x40,0xae,0x42,0x30,0xaf,0x35,0x70,0xf6,0x2f,0xf4,0x78,0xe3,0xf0,0xc2,0xcf, + 0xa9,0xa1,0xc5,0xfe,0x04,0x01,0xa6,0x8d,0x89,0xd1,0x32,0xb4,0x9e,0xfa,0x1f,0x09,0xbb,0x0f,0xed,0xca, + 0x25,0x2f,0xfe,0x45,0xa6,0xa3,0x64,0x69,0xe3,0x30,0x5b,0x31,0x60,0xff,0xf4,0xc3,0x83,0x58,0xaa,0x5c, + 0x31,0xf8,0x96,0x2a,0xfa,0x22,0x02,0x50,0x28,0xcd,0x42,0x15,0xf5,0x40,0xf9,0x22,0xa9,0x4e,0xe1,0x43, + 0x1f,0x66,0xb4,0xa9,0x7b,0xd5,0x7d,0x40,0x6c,0x9e,0x42,0xf7,0x6b,0x68,0x6d,0x2d,0x1b,0x7d,0x4e,0xed, + 0x3e,0x87,0x8f,0xa5,0xbf,0x29,0xf7,0x97,0xba,0xd3,0xee,0x7d,0xbb,0x3a,0xca,0x43,0xf8,0xc6,0x9e,0x67, + 0xdd,0x79,0xc6,0x65,0x6f,0x50,0xf0,0x06,0x0f,0xc8,0x3a,0x5a,0xa1,0xa9,0x80,0xf2,0xe7,0xa6,0xfc,0x44, + 0xca,0x9f,0x4b,0xbf,0x67,0xe1,0xa2,0x9f,0xba,0xe7,0x56,0x3d,0x5a,0xc0,0xf3,0x93,0xa3,0xa1,0x7f,0xc6, + 0xac,0xa9,0xdd,0xc6,0x75,0x33,0x02,0x4a,0x69,0x1a,0x9d,0x49,0xa3,0xa5,0x25,0x4b,0x0c,0x6f,0xb5,0x43, + 0xbf,0x12,0xcd,0x31,0x07,0x12,0xe0,0xc0,0xe0,0xa4,0x05,0x0b,0x09,0x6d,0x49,0xe8,0xcb,0x1e,0xf2,0x0e, + 0x5b,0xe8,0x4b,0x93,0x8b,0x4c,0x82,0x8a,0x9a,0x84,0x88,0x12,0xfa,0x5e,0xea,0x26,0xf6,0x60,0x33,0xe5, + 0x16,0x92,0xf5,0xcf,0xc4,0xca,0xcf,0xb8,0xe5,0xca,0x7a,0x0b,0x9c,0xc3,0x77,0x74,0x8b,0x5f,0xb0,0x83, + 0x36,0x58,0x65,0xd6,0x2b,0xc3,0x97,0xf9,0xc2,0x87,0x65,0xb0,0x18,0x43,0x79,0xb7,0x3b,0xcd,0x97,0xd3, + 0x94,0x26,0xb3,0x60,0x2f,0x38,0x6a,0x3e,0x74,0x2c,0x63,0xab,0x65,0x96,0x01,0x08,0x4e,0xa1,0x13,0x9c, + 0x65,0xee,0x84,0x86,0x9d,0xd3,0x39,0xf6,0x67,0xfc,0x99,0x41,0xa0,0x85,0x94,0x89,0x57,0x5d,0x77,0xf3, + 0x70,0x44,0xbf,0x57,0xab,0x9d,0x9d,0x31,0x1f,0x4a,0x99,0x84,0x82,0xe2,0x25,0x1f,0x6b,0x11,0x43,0xd1, + 0x28,0xaf,0x08,0x4d,0x5c,0x3d,0xba,0xe8,0x5f,0x69,0x25,0xbe,0xa9,0xae,0x70,0x72,0x35,0xec,0x5f,0x51, + 0xa7,0xfb,0x30,0x85,0x9b,0x62,0x66,0x1a,0x84,0xee,0x39,0xce,0x3d,0xac,0x1e,0x3f,0x45,0x4d,0x4f,0x1e, + 0x0c,0xf7,0xf6,0x94,0xc2,0x26,0x7e,0xf8,0x2a,0xf9,0xa1,0x9d,0xfc,0xd0,0x24,0x7f,0x69,0x27,0x7f,0xa9, + 0x4c,0x05,0x6f,0xb8,0x99,0xd5,0x0a,0x05,0xf1,0xef,0x97,0xf4,0xaf,0xe3,0xf8,0xe7,0xa1,0xc3,0x42,0x1a, + 0x9a,0xa1,0x03,0xdf,0xcc,0xd2,0xc2,0xd1,0x70,0xa0,0x4f,0xc9,0xf3,0x18,0xfe,0x72,0x5f,0xc7,0xd7,0xf0, + 0x77,0x5a,0x7c,0x97,0xe5,0x3f,0x50,0xa9,0xa0,0x3d,0xb7,0xbf,0xa4,0x19,0x29,0xc5,0x74,0x34,0xe2,0x33, + 0xa1,0x1d,0x10,0x4a,0xb8,0x41,0x24,0x2e,0xf8,0x1d,0x18,0x3c,0xcf,0x82,0xf7,0x99,0xe5,0xda,0x6e,0xe1, + 0xb7,0xf0,0xc8,0x6f,0x33,0x76,0x2f,0xef,0xad,0xd7,0x44,0x09,0xc0,0xb9,0x3f,0xa0,0x83,0x75,0x5a,0x27, + 0x7e,0xed,0x9a,0x0a,0x26,0x0d,0x04,0x2b,0x60,0xba,0x84,0x6b,0xfa,0x70,0x02,0xf4,0xd3,0xb8,0x21,0x88, + 0x9a,0xf2,0xe7,0xfc,0x18,0x4e,0xbf,0xe0,0xe1,0x26,0x1d,0x7b,0x6b,0x82,0x1b,0x20,0xb0,0xcc,0x8f,0xd9, + 0x15,0xc3,0x51,0xf3,0xb0,0x1e,0x6b,0x13,0xf2,0x4b,0xfd,0xf1,0x41,0x7d,0x00,0xe8,0x96,0xe6,0x52,0xbc, + 0x34,0x8e,0x9e,0x97,0x38,0x0b,0x13,0x85,0x23,0x2e,0xe1,0xd6,0xd5,0xfa,0xbe,0xb0,0xbe,0x97,0xd6,0xb7, + 0xfb,0x21,0xbc,0xb4,0xd1,0x9c,0x4f,0x08,0xf4,0xd1,0x21,0x9d,0x99,0x65,0x37,0xfc,0xe0,0xd7,0x1a,0x3f, + 0xae,0x11,0x0b,0x87,0xfe,0x12,0x58,0x6a,0xe9,0xad,0x97,0x2c,0xae,0xa4,0x5c,0x42,0xa5,0xb0,0x24,0x37, + 0xe8,0xf7,0xb8,0xc2,0xc0,0xc7,0xac,0x76,0x0a,0xbf,0x42,0x09,0x90,0x61,0x03,0x3f,0xc7,0xda,0x64,0x76, + 0x9d,0xbb,0x2c,0x5c,0x92,0xc0,0x21,0xd3,0xcc,0xb7,0x1e,0x28,0x6a,0x57,0xa6,0x25,0x92,0xb1,0xef,0xce, + 0x4d,0x69,0xcc,0xe6,0x35,0xea,0xb7,0x41,0xd1,0x16,0xe0,0x6a,0x2d,0xfb,0x71,0x78,0x54,0xb9,0xfe,0x06, + 0xbe,0x0f,0x0c,0xba,0x2f,0x14,0x3e,0xb3,0xee,0xd2,0x08,0xd6,0xb0,0xf2,0x0c,0xc4,0x31,0x97,0x10,0x28, + 0xe4,0x03,0x5e,0x3f,0xfb,0x2f,0xe1,0xe5,0x1d,0x2e,0xb4,0x69,0xed,0x16,0x88,0x7c,0x50,0x63,0x7b,0x2a, + 0xfd,0x67,0xc2,0x92,0x42,0x0f,0xc7,0x36,0x39,0xac,0xa5,0x9e,0x08,0x88,0xfa,0x67,0xa6,0xd5,0x29,0x53, + 0xa5,0x46,0x29,0x5f,0xa1,0xfc,0x31,0xa7,0xe3,0x5f,0x99,0x2f,0xdb,0xc8,0x27,0x00,0x04,0x8c,0x89,0xa4, + 0x07,0x77,0x31,0x22,0x88,0xb4,0x5e,0x7a,0xfe,0x55,0xf2,0x04,0x08,0x91,0x62,0x7c,0x57,0x34,0x76,0x90, + 0x83,0x3b,0xca,0xb5,0x3e,0xfb,0x5a,0x9c,0x84,0x57,0x9e,0x68,0x3a,0xeb,0x27,0x6b,0x24,0x4f,0x44,0x33, + 0x7b,0x52,0x17,0xc9,0xd2,0x74,0x21,0xf9,0x3b,0x78,0x1f,0x2d,0x23,0xbb,0x6c,0xad,0x10,0x8d,0x1e,0xe1, + 0x69,0x3d,0xee,0x90,0x16,0xe1,0x9c,0x7d,0xc4,0x73,0x6c,0x4a,0x63,0xa1,0x4d,0xab,0x31,0x7d,0x74,0x66, + 0xb8,0x83,0x29,0x2d,0xc7,0x55,0x78,0x96,0x9d,0x4c,0x87,0x2e,0x34,0x6d,0x57,0x2b,0x76,0xba,0x02,0x75, + 0x5d,0xf3,0x0c,0xb9,0x0c,0xaf,0xf0,0xe8,0x06,0xd1,0x1f,0x9a,0x5e,0x82,0xca,0x66,0xe3,0x83,0xab,0x8a, + 0x25,0x39,0xf4,0x98,0x27,0xb9,0xb2,0x78,0x12,0xbc,0x58,0xb6,0xc6,0x35,0x36,0xb2,0x36,0xe3,0x04,0xd3, + 0x0e,0xd9,0x68,0x5e,0x5d,0x2d,0xdc,0x5d,0x6a,0xef,0x34,0x65,0x3f,0xa7,0x01,0xc3,0x77,0x8f,0x42,0x6e, + 0x56,0x6b,0x94,0x28,0x61,0x4a,0x04,0xd7,0x35,0x94,0x80,0x1a,0x05,0x25,0x3a,0xe9,0x5a,0xfb,0xd9,0xa4, + 0x79,0xb0,0x55,0x14,0xcb,0xfc,0x42,0x0e,0x23,0x7c,0xe5,0x05,0x57,0xd5,0x5b,0x29,0xe5,0xfe,0x58,0x52, + 0x5a,0x4b,0x3c,0x59,0xeb,0x4d,0x57,0x5d,0xdd,0x31,0x1e,0x55,0x4b,0x3c,0x42,0xc6,0xf2,0x08,0x59,0xaa, + 0x47,0xc8,0x78,0xad,0x4c,0xaf,0x5b,0x9e,0x78,0x45,0xc9,0x59,0x3d,0x4f,0x7a,0x35,0x4d,0xa7,0xea,0xc1, + 0x57,0x6b,0x3b,0xa9,0x77,0x4b,0xb8,0xd9,0xc5,0xa0,0x4c,0x73,0x17,0xb2,0x55,0xe0,0xf0,0xb9,0xc1,0x0b, + 0x66,0xf6,0x79,0x2f,0x7e,0x2a,0x79,0x83,0x69,0x25,0x07,0x7a,0xf7,0x57,0xab,0x9c,0x46,0xca,0xd0,0x22, + 0x0d,0xd2,0xee,0xf3,0x17,0x55,0xfd,0x1e,0x8f,0x0d,0x3c,0x78,0x9d,0xa9,0xe6,0x70,0xb5,0xf6,0x82,0x9c, + 0xba,0xa1,0x13,0xb9,0x63,0x41,0x19,0x4c,0x86,0x36,0x9a,0x19,0x53,0xb9,0xf9,0x96,0xa3,0x69,0x4e,0x24, + 0xc7,0xd7,0xd3,0x66,0xe8,0x31,0x87,0xd6,0x03,0x2c,0x6b,0x39,0x2f,0x25,0xf4,0x69,0x63,0xb2,0x39,0xec, + 0x7f,0xdd,0xca,0xd3,0x0d,0x91,0xf0,0x7b,0x7b,0x73,0x1e,0xff,0xf7,0x78,0x17,0xe4,0xb1,0x8e,0xeb,0x63, + 0x1d,0xaf,0x2b,0x69,0xfc,0x55,0x0f,0x56,0x0a,0xec,0xf5,0x8b,0x43,0x89,0xcb,0x4e,0x1f,0xa9,0x2b,0x59, + 0x72,0x45,0x82,0xb8,0x5a,0xdd,0x73,0x94,0xa4,0xc1,0xb9,0xd7,0xa7,0x2e,0x6b,0x61,0xde,0xea,0xbf,0xd9, + 0x94,0xe0,0xe4,0x66,0x18,0x5e,0x89,0xb5,0x75,0x35,0x3e,0x41,0x14,0x57,0x7c,0x4a,0x54,0x58,0xb6,0xfe, + 0x6c,0x90,0x02,0xae,0x5c,0x7e,0x27,0xd2,0x05,0x10,0x5c,0x2c,0x6d,0xd1,0xa9,0xcf,0x4e,0x32,0xc3,0xd4, + 0x0d,0xfd,0xd2,0xf2,0x8b,0x75,0xb2,0xe1,0x0c,0x8b,0x4a,0xf4,0xe9,0x6e,0x7d,0x10,0xb2,0x99,0x8f,0xe0, + 0x8b,0x8e,0x23,0xbf,0xd8,0x8f,0xc2,0xce,0x08,0x5a,0xd6,0xd5,0xd8,0xb0,0x9c,0xbe,0x69,0x3f,0x3c,0x22, + 0xaa,0xa0,0xde,0x5f,0x2a,0x9e,0xb6,0x71,0x13,0xd5,0xde,0x01,0x74,0x44,0xb1,0x97,0xa9,0xfd,0xb8,0x24, + 0xae,0x4c,0x80,0xb7,0x92,0x0a,0x25,0xcd,0x2b,0x3f,0x1c,0xb0,0xe9,0xf6,0x8c,0xb9,0x9b,0xed,0xaf,0x88, + 0xae,0xbf,0x11,0x82,0x3d,0xca,0x23,0xcf,0xc0,0xa9,0xd8,0x23,0xa2,0x60,0x13,0x4f,0x9b,0xa9,0x30,0xd2, + 0x64,0x37,0x05,0xb0,0xa5,0x8e,0x83,0x1f,0x70,0x0d,0x04,0x6c,0x9d,0x29,0x63,0x1e,0xd0,0x7c,0x21,0xee, + 0xc3,0xd8,0x0a,0x9e,0xfd,0x0e,0xbb,0xeb,0x73,0x9b,0xca,0xb9,0x72,0xb0,0x6e,0xb2,0x41,0x9c,0xb9,0x37, + 0x99,0x17,0xfc,0x33,0x61,0x2e,0xbe,0x62,0x22,0x8c,0xbf,0x37,0xdf,0x62,0x4d,0xe9,0x9f,0x11,0xbc,0xf6, + 0x46,0x45,0xf9,0x02,0x74,0x01,0xb0,0x11,0xc7,0xee,0x89,0x47,0xb8,0x8f,0xbc,0x5b,0xda,0xd3,0x5c,0x48, + 0x06,0xef,0x31,0x9e,0xa1,0x14,0x21,0x9d,0x19,0x5a,0x61,0x04,0xc3,0x5c,0x5f,0x51,0x50,0x0d,0xe4,0x94, + 0x69,0xf5,0xc4,0x59,0xf8,0x7d,0xec,0xda,0x1e,0x90,0xfb,0xaa,0x82,0x3c,0xd4,0xcc,0xe4,0x81,0x4a,0xb5, + 0x7d,0xeb,0xfc,0xc7,0xb9,0xa8,0x09,0x3a,0x50,0x98,0xa0,0x01,0x26,0x5d,0x8b,0x2a,0xd7,0x17,0xd4,0xe8, + 0x51,0x65,0x60,0xd1,0x32,0xac,0x8f,0x0e,0x8a,0x4f,0x15,0xd4,0xf9,0x60,0x86,0x14,0x29,0x71,0x17,0x94, + 0x12,0xcb,0xec,0x32,0x4e,0x8b,0x00,0x76,0x4e,0x58,0xb4,0x41,0xaa,0x29,0x43,0x18,0x7e,0xde,0xf7,0xad, + 0x5a,0x4c,0xa1,0xa8,0x1f,0xba,0x1a,0x14,0xb5,0xf1,0x21,0xef,0x5d,0x84,0x15,0x03,0x81,0xd6,0xb8,0xda, + 0x4f,0x0d,0xc0,0xe9,0x89,0x05,0xe3,0x0c,0xcc,0xb0,0x68,0xb3,0x3a,0x7b,0x60,0x1a,0x51,0x51,0x92,0xd9, + 0x06,0x7c,0xc3,0x33,0x7c,0xf3,0x60,0xd6,0x2b,0xfb,0xc6,0xb4,0x2d,0xd8,0x39,0x64,0xa3,0x08,0x3f,0x87, + 0x57,0x35,0xd9,0x05,0x44,0x2c,0x56,0x02,0x26,0x48,0x8a,0xaf,0x92,0x3f,0x63,0x96,0xef,0xb0,0x16,0x37, + 0x5c,0xeb,0xb8,0xcf,0xb2,0xf0,0xfb,0x8c,0x28,0x07,0xfb,0x29,0x0a,0xe4,0xc2,0x93,0x0c,0x50,0xd1,0x94, + 0xdb,0x9a,0x4b,0x04,0x86,0x3b,0xe2,0x3d,0x46,0xd5,0x0c,0xef,0x83,0x30,0x18,0x85,0xa5,0xa7,0x4e,0xb1, + 0x8b,0x23,0x3d,0xe2,0x1f,0xc4,0xe3,0xb8,0x3b,0x23,0x75,0xe5,0x8e,0x60,0x8e,0xa0,0x94,0x44,0xa9,0x2f, + 0xa8,0xe7,0xe0,0xdf,0x09,0x82,0x7c,0x2d,0x53,0x97,0x2d,0xa8,0xc0,0x15,0x3d,0xc9,0xcc,0xf7,0xa6,0xc1, + 0xa7,0x31,0xf7,0x64,0x15,0x28,0x1d,0x09,0x42,0xf9,0x81,0x36,0xce,0x82,0xb8,0x7a,0xcd,0x7c,0x00,0xdd, + 0x54,0xd6,0xa0,0xc6,0x4b,0x0c,0xc1,0x12,0xf5,0xa8,0x2c,0xc9,0x10,0x34,0x90,0x12,0x7a,0x08,0x0d,0x73, + 0x43,0xeb,0xe3,0x01,0x9a,0x8e,0x0c,0x7e,0x12,0x4b,0x05,0x1a,0x9d,0xb6,0x4a,0x74,0x80,0x7f,0x1d,0x6d, + 0xa6,0x28,0xc6,0x5f,0xf8,0xa1,0xb1,0xc9,0x89,0x93,0xa4,0x20,0x25,0xf7,0xcd,0x30,0xb5,0xa5,0x82,0x2d, + 0xf9,0x84,0xcd,0xda,0x86,0xa3,0x40,0x1d,0x86,0x5a,0xa4,0x76,0x56,0x01,0xd0,0x7f,0x70,0xb4,0xe2,0x27, + 0x6a,0xf9,0x61,0xa4,0xa4,0x77,0x62,0xe7,0x88,0xa9,0x73,0x22,0xa4,0x27,0xcf,0x32,0x5a,0x67,0x7e,0x21, + 0xa8,0x02,0x8d,0x12,0xca,0x44,0x64,0x51,0x3b,0x53,0xf7,0x97,0x3d,0x8a,0x2a,0x57,0x5a,0x45,0xa3,0x10, + 0x5c,0x27,0xf1,0xe5,0x44,0x3d,0xc3,0x12,0x6e,0x4b,0xcf,0x0c,0xca,0xa3,0x35,0x84,0x34,0x36,0xb0,0x28, + 0x07,0x06,0x8d,0x75,0x34,0x55,0x61,0x45,0x91,0x89,0xbb,0x3f,0x93,0xf6,0x22,0x25,0xe2,0x3b,0x4c,0x15, + 0x07,0x46,0x09,0xc2,0x61,0xd4,0x96,0x88,0x8a,0x0b,0x78,0x37,0xd2,0x57,0xab,0x07,0xb5,0x64,0xf6,0xd3, + 0xce,0x3e,0x22,0x14,0x6e,0x01,0xef,0x65,0x7a,0x82,0x03,0x62,0xa6,0x5d,0x2c,0x80,0x96,0xb4,0x23,0xbf, + 0x6a,0xc3,0x2c,0x21,0x51,0x74,0x7e,0xd2,0xb2,0x5d,0xf9,0xa3,0x84,0xa9,0x3c,0x88,0x84,0x2d,0xdf,0x8e, + 0x7e,0x0a,0x26,0xbf,0x64,0xd8,0xeb,0xff,0x7b,0x1b,0x13,0xbb,0x5b,0xf6,0x84,0xe3,0x16,0xb8,0x29,0xd4, + 0xc2,0x15,0x42,0x26,0x44,0x99,0xba,0x49,0x15,0xb2,0xfc,0x96,0x2e,0x80,0xc0,0x18,0x5d,0x66,0x3a,0x40, + 0x6d,0xe3,0x11,0x85,0x32,0x1a,0x29,0xeb,0x7a,0x48,0x3f,0xb3,0xa7,0xa5,0x6b,0xa9,0x61,0xd4,0x8d,0x30, + 0x63,0x28,0x0c,0xb2,0x29,0xa5,0xf8,0xfe,0xc9,0xe5,0x5d,0xaa,0x7e,0x9b,0xb9,0xe5,0x20,0x0b,0x12,0x4f, + 0x7b,0x3d,0x5d,0xa3,0xb1,0x54,0x4b,0xd2,0xd9,0x6b,0x8f,0xfa,0x0e,0xab,0x47,0x28,0x7e,0x25,0xd7,0xcf, + 0xe7,0xa6,0x30,0xc4,0x6b,0x35,0x3b,0x65,0x38,0x88,0xb4,0x5f,0xa7,0x1a,0xa3,0xb3,0x32,0x09,0x23,0xb3, + 0xc1,0xa8,0x5d,0xdf,0x12,0xd1,0x44,0x78,0xa5,0x4c,0x3d,0x47,0x75,0x84,0x43,0x4e,0x17,0x77,0x15,0xb3, + 0x4d,0xa7,0xd0,0xc5,0x17,0xc1,0xfd,0x7d,0x34,0x14,0x4c,0x5e,0x84,0xbb,0x19,0x47,0x38,0xd7,0x92,0xfb, + 0xa2,0x17,0xe7,0x79,0x46,0x9c,0x41,0x42,0xe7,0xa6,0x4c,0xe6,0x45,0x98,0xf9,0x85,0xc2,0x3f,0xb7,0xd0, + 0xf1,0x48,0x66,0x71,0x50,0xfa,0xea,0xeb,0x38,0xfb,0x4e,0x2d,0x55,0x01,0xc1,0x07,0x35,0xd4,0x6a,0xe5, + 0x5a,0xd3,0x88,0x49,0xb0,0xa2,0x62,0xc3,0x4c,0xa4,0x32,0x2f,0xb8,0x7a,0x97,0xea,0x58,0x16,0x08,0xf5, + 0xa7,0x88,0x81,0x32,0x39,0xb2,0xd3,0xbc,0x2e,0xb1,0x26,0xbc,0x69,0x70,0x8a,0xa6,0xb5,0x17,0xe1,0x53, + 0x4f,0xb9,0xd7,0xe3,0xdd,0xf3,0x41,0x3e,0xd2,0xb5,0x4d,0xfb,0x6b,0x66,0xa8,0x23,0x24,0x23,0x92,0xa2, + 0x02,0xae,0x51,0x85,0x26,0xaa,0x67,0xba,0xa8,0x99,0x52,0xd7,0xc3,0xab,0x24,0x38,0x13,0xf4,0x35,0x82, + 0x8e,0x02,0xfa,0x0f,0x0b,0xba,0xdd,0xb4,0xf5,0xce,0xda,0x73,0x7f,0xcc,0xbc,0xde,0xe6,0x7a,0x11,0xe4, + 0x45,0xe1,0xce,0x0e,0x3c,0xd5,0x8f,0x53,0x17,0xef,0x4d,0x99,0xfd,0x9b,0xb8,0x89,0x28,0x6a,0xb5,0xbb, + 0x61,0x53,0x27,0x63,0x58,0x07,0x4c,0x63,0x94,0x4d,0x68,0x00,0x45,0x14,0xb6,0x18,0x4f,0xe9,0xe2,0x77, + 0xdb,0x55,0x01,0xd5,0xb1,0x51,0x15,0x77,0x03,0xc5,0xd1,0x9a,0x79,0x27,0x91,0x91,0x76,0x92,0xfe,0xd0, + 0x41,0x96,0x37,0x63,0x86,0xd6,0xa2,0x89,0xb3,0xcb,0x02,0x1d,0x71,0xda,0xa8,0xef,0xf6,0xf4,0x75,0x23, + 0xf2,0x50,0x56,0xb6,0xe4,0xed,0xae,0x02,0x0b,0xe6,0x9e,0xf3,0x37,0x21,0x4d,0x4d,0x54,0x04,0xa6,0x0e, + 0xa2,0x08,0x62,0x02,0xe3,0x6a,0x6b,0xc7,0xf2,0xcc,0x65,0x0f,0x25,0x67,0xba,0x51,0x2f,0x92,0xf0,0xa3, + 0x5c,0x7f,0xc3,0x2a,0x35,0x5b,0x94,0x35,0x8f,0x70,0x1d,0x2b,0xe9,0xe3,0x86,0x7a,0xa2,0x4f,0x6d,0xf6, + 0xa5,0xe1,0x2e,0xba,0xb2,0xcf,0x64,0x36,0xde,0xde,0x33,0x2c,0xb3,0xcc,0x5c,0x5d,0x9e,0x39,0xdc,0xe4, + 0xdd,0xb6,0x0a,0x8b,0x92,0xe8,0xa3,0x82,0xa1,0x0c,0x71,0xaa,0xf4,0xf9,0x08,0x52,0xeb,0xb0,0x68,0x7a, + 0x0d,0xa9,0xfa,0x73,0xad,0x82,0xb8,0x43,0x03,0x4d,0x1d,0x03,0xe8,0xa0,0x35,0x60,0xbe,0xaf,0xf7,0x2b, + 0xcc,0xd8,0x10,0xb4,0x71,0x44,0x2a,0x73,0xfc,0x48,0xc5,0xe1,0x86,0x93,0x0d,0x7e,0x06,0x15,0x7b,0x4a, + 0x86,0x7b,0x9a,0x13,0xfd,0x5a,0x7b,0x0d,0xf3,0x03,0x47,0xe2,0x83,0x59,0x61,0x5f,0xf9,0x61,0x1a,0xbc, + 0xc5,0x22,0x95,0xe8,0x8d,0x63,0x42,0x5c,0x2a,0x53,0x70,0xdb,0x40,0xfe,0xf4,0x54,0xd1,0xb0,0x74,0x5b, + 0x03,0xc8,0x4a,0x6d,0x88,0x86,0xf1,0xb7,0x17,0x5d,0x8d,0x07,0xf2,0x49,0xd4,0x60,0x10,0xf7,0x7e,0x5d, + 0xc4,0x2f,0x8e,0xbe,0x4e,0x51,0x7b,0xdd,0x08,0x30,0x4d,0xc3,0x5a,0x10,0x80,0x00,0x04,0x69,0x68,0x7d, + 0x8b,0x34,0x90,0x31,0xb7,0x8c,0x0c,0x8f,0xee,0x19,0x5b,0x27,0xa9,0x2f,0xc6,0x63,0xae,0x73,0xb2,0x5c, + 0xc4,0xfb,0x09,0xf5,0x33,0xec,0x38,0x5d,0xb8,0xd1,0xde,0xdb,0xab,0x15,0xe0,0x1b,0x7c,0x74,0x69,0x3b, + 0xd2,0x2e,0x1b,0x01,0xef,0x84,0xc3,0xda,0x5c,0xa8,0xaa,0x86,0x8d,0x88,0x96,0xca,0x59,0x12,0xce,0xed, + 0x55,0xed,0x4d,0xb5,0x11,0x45,0x0f,0x61,0xf4,0x4c,0xec,0x08,0xab,0xb1,0xc4,0x8e,0xfd,0x2d,0xa2,0x3d, + 0xf3,0xba,0x6f,0x68,0x3d,0x08,0x13,0x20,0xd8,0xab,0xb2,0x40,0xe5,0xa9,0xd3,0x0c,0x7d,0xbe,0x84,0xff, + 0xe8,0xb3,0xc0,0x32,0x07,0xcd,0x42,0x96,0x6c,0x73,0x4e,0x44,0x6c,0x5d,0x81,0x95,0x13,0x07,0x09,0x1b, + 0x15,0x06,0x1b,0xc7,0x3f,0xe6,0x18,0xf2,0x78,0x6e,0x41,0xb1,0xe0,0xbe,0xd5,0x20,0x0b,0xf6,0x3e,0x5a, + 0xdc,0x77,0xd1,0xe7,0x51,0x5b,0x9f,0x94,0xa8,0x5e,0x6d,0xf8,0xd3,0xbf,0x25,0x02,0x25,0xa2,0xfb,0x2d, + 0x17,0x4b,0x24,0x3a,0x6f,0x96,0xb7,0xcf,0xac,0xb2,0xd3,0xc6,0x8e,0xa8,0x4e,0x0d,0x0c,0xc4,0x35,0xdd, + 0x2c,0xa3,0x6f,0xc0,0x9e,0x9b,0x94,0x36,0xc3,0xca,0xb2,0x81,0xe4,0xbb,0x52,0x0b,0x03,0x68,0x95,0x11, + 0x84,0xb0,0x17,0x9d,0xf3,0x93,0x61,0x76,0x52,0x86,0xf7,0x59,0xa9,0x93,0x86,0x96,0xd2,0xb2,0x3c,0x3e, + 0x1a,0x1c,0x05,0x87,0xc1,0x51,0x90,0x0e,0xb8,0xdc,0x55,0x02,0xf7,0xbf,0xf7,0xbd,0xe0,0x70,0x38,0xc8, + 0x58,0x9a,0xc3,0x3c,0x54,0x60,0x6d,0x64,0x64,0x6d,0x39,0x33,0x9d,0x1c,0xbf,0xbb,0xc9,0x7f,0xd6,0x7c, + 0xb8,0x17,0xb6,0xf0,0xc8,0xda,0x77,0x73,0xa9,0x0b,0xb9,0x44,0xfc,0xc9,0xa3,0x0d,0x98,0x48,0x34,0x2d, + 0x9e,0x49,0x6c,0x1d,0x7e,0x34,0x54,0xa1,0x47,0x32,0xed,0x66,0x22,0x34,0x01,0x32,0xd4,0x7b,0x02,0x3a, + 0x63,0xca,0x25,0xf3,0x46,0x84,0x5e,0x66,0x61,0xe4,0x4f,0x05,0x82,0xe1,0x74,0x91,0x5d,0x89,0x66,0x20, + 0x55,0x06,0x4c,0xb5,0x14,0x4c,0xbc,0xf8,0x9c,0x12,0x70,0x0a,0x7f,0x2a,0x3a,0xde,0x37,0xf0,0x96,0xd7, + 0xe3,0x0d,0x30,0xf1,0xb7,0x60,0x6f,0xd9,0xf0,0xd8,0xac,0x7c,0xbb,0x99,0x22,0xb3,0xca,0x57,0x2f,0x8f, + 0xdf,0x8f,0xfa,0x0b,0x8e,0xed,0xc0,0xee,0x80,0x10,0x90,0xd9,0x78,0xa2,0xf7,0xb3,0xde,0x99,0x40,0x08, + 0x3c,0xa0,0xf4,0x76,0x71,0xb2,0x7b,0x92,0x50,0xf9,0x65,0xee,0xc0,0x90,0x37,0x17,0x9f,0xb0,0xd8,0xc3, + 0xca,0x4e,0x5c,0xb1,0x46,0xbc,0xc3,0xf0,0x22,0x29,0x1e,0x7c,0x12,0x22,0xb9,0x33,0x5d,0x08,0x02,0x3f, + 0x5a,0x2e,0x45,0xed,0xa4,0x5e,0xe5,0x53,0x87,0x4a,0x97,0xf9,0x8d,0x5a,0xbe,0x66,0xe4,0x23,0x22,0x72, + 0xea,0x49,0xd2,0x36,0xd1,0x7b,0x85,0x81,0x4a,0xad,0x8d,0x10,0x9a,0x07,0x73,0x08,0x02,0x84,0x75,0x34, + 0xb8,0xcf,0x0e,0x1e,0x0c,0x56,0x28,0xe7,0x60,0xca,0xd2,0xd8,0x6a,0x55,0x54,0x2c,0xaa,0x68,0x44,0xd8, + 0x7c,0x28,0x8d,0x62,0x56,0x4b,0xa8,0x68,0xca,0x51,0xd5,0xf7,0xcc,0xf4,0x3d,0xda,0xe8,0xdb,0xea,0x39, + 0x25,0xa0,0xd6,0x4e,0xdc,0xd6,0xac,0xde,0x54,0x69,0xba,0x11,0x17,0x4c,0xfc,0x83,0x32,0xf2,0x48,0x8d, + 0x57,0x31,0x70,0xdf,0x95,0xe2,0x43,0x15,0x16,0xc2,0xa2,0xfd,0x8d,0xeb,0x39,0x03,0x29,0x83,0x1d,0x22, + 0x19,0x78,0x1f,0x21,0x9a,0x76,0x9d,0x34,0x2b,0xe9,0x0e,0x4a,0x8a,0xb2,0xa3,0x2e,0x88,0x4e,0xa2,0xfc, + 0xf3,0x00,0x4a,0x29,0xcd,0xfc,0x76,0xa0,0x55,0xcc,0xbe,0xa1,0xeb,0x95,0xea,0x15,0x70,0xe3,0x77,0x54, + 0xa7,0x52,0xc3,0x0e,0x09,0x51,0xd6,0xc0,0x4e,0x8c,0x59,0x68,0x77,0x64,0x66,0x8b,0x70,0x03,0xb1,0x11, + 0x3c,0xce,0xbc,0x41,0x14,0x66,0x81,0x38,0x03,0x85,0x16,0x7b,0x8f,0x03,0x2f,0x16,0x40,0x25,0x0c,0x88, + 0x44,0xea,0x66,0x3d,0x3a,0x9e,0x74,0xaf,0xdf,0x22,0x2b,0x88,0x7c,0x85,0xd4,0x60,0x2e,0x3a,0x2d,0x60, + 0x5a,0xe4,0x4f,0xc2,0x85,0xd4,0x1b,0xd3,0x87,0xaa,0x37,0xa7,0x4f,0x14,0x60,0xbf,0x55,0xab,0xd5,0x78, + 0xb5,0x9a,0x83,0x14,0x9b,0xc8,0xf8,0xf8,0xc1,0xc5,0x9f,0xfa,0x37,0x90,0x2b,0xaa,0x45,0x2c,0x7b,0x67, + 0xcb,0x52,0x49,0x3f,0x75,0x14,0x3b,0x77,0x1a,0xde,0xc8,0x82,0x7a,0xbd,0x52,0xc5,0x1c,0x99,0xfa,0x27, + 0x13,0xe3,0x51,0xd2,0x5d,0x86,0x73,0xff,0x0a,0x37,0x8b,0x7b,0x11,0xc2,0x47,0xd2,0x95,0xf0,0x55,0x17, + 0x9e,0xbf,0xa4,0x19,0xd5,0xc1,0x78,0xc9,0xee,0xdf,0x97,0x5e,0x55,0x6c,0xe9,0x41,0x49,0x01,0x04,0x94, + 0x3e,0x89,0x37,0xb5,0x73,0xa8,0x88,0x3b,0xd7,0xd1,0x81,0x73,0x3b,0xff,0x85,0x89,0xfe,0x17,0x76,0x63, + 0xb9,0x5f,0x76,0xaa,0x20,0xd6,0x4a,0x6a,0xad,0xf6,0xaf,0x58,0xcc,0x41,0x4e,0x74,0xc4,0x76,0x46,0x6c, + 0xc9,0x6a,0x81,0x36,0xf8,0x40,0x57,0x37,0xa6,0xb0,0x63,0xf8,0x52,0x67,0xc2,0xa1,0xfd,0x71,0x8c,0x1a, + 0x21,0xa8,0x54,0xa8,0x2a,0x32,0xa5,0xda,0x17,0xcd,0x3a,0x00,0x38,0x94,0xf8,0x3a,0xdf,0x1c,0x05,0xf2, + 0xf7,0x81,0xfc,0x7d,0xf8,0x95,0xfc,0x7d,0xf0,0x50,0xfd,0xfd,0x46,0xa5,0x7f,0x1d,0x98,0xc0,0x60,0x52, + 0xe1,0x4b,0x55,0x40,0x55,0x78,0xf8,0x65,0xa0,0xf5,0x83,0xc7,0xd0,0x55,0x97,0x52,0x0f,0xee,0xab,0xe6, + 0xe5,0xcf,0xd1,0xa1,0xfa,0xab,0x7a,0x3b,0xfa,0x4a,0x25,0x7c,0xf5,0xe5,0xfd,0xbf,0xab,0x32,0x5f,0xdf, + 0xd7,0x95,0xe8,0xeb,0x81,0x6e,0xf4,0xba,0x70,0xcc,0x03,0xdc,0xe3,0xf0,0x9b,0xbf,0x13,0xab,0xf1,0x28, + 0x3c,0xba,0x7f,0x7f,0xb5,0xa2,0x9f,0x5f,0x7d,0xc9,0x3f,0xbf,0x39,0x1c,0xa8,0xce,0x03,0x4a,0x7c,0xf8, + 0x0d,0x27,0x7e,0xf9,0xf7,0x81,0x23,0x96,0x0c,0x4e,0xe0,0xf0,0xc3,0x4b,0x4b,0xa0,0x10,0xe5,0x2b,0x2f, + 0xd4,0x02,0x40,0x1d,0xdc,0xde,0x39,0x74,0x76,0xac,0xd0,0xc2,0x87,0x90,0x77,0x25,0xc5,0xeb,0xe8,0xb5, + 0x84,0x4c,0x83,0xc4,0xda,0xff,0x4e,0xbd,0x27,0x7a,0x03,0xc2,0xb1,0xc4,0x4c,0xc2,0xec,0xc4,0x5e,0x71, + 0x4f,0x49,0x54,0x4c,0x52,0x69,0xe4,0x9b,0xd4,0xdc,0x83,0x87,0x3b,0xac,0x4c,0xf6,0xe0,0x1b,0xfc,0x1d, + 0xe0,0x7d,0x54,0xa9,0xf0,0xf8,0x70,0x2d,0xee,0x7c,0xe1,0x74,0x13,0xe5,0x15,0xd7,0x5f,0x6a,0x94,0x56, + 0xb1,0x4d,0xda,0xff,0x05,0x41,0xb1,0x73,0x22,0x74,0x59,0x47,0xb9,0xaa,0x73,0xfc,0xe9,0x66,0xf9,0x8b, + 0xa8,0x78,0x73,0x9d,0xea,0x48,0x77,0x74,0x82,0xda,0x28,0xc8,0x17,0x69,0x39,0xb3,0xa2,0x75,0xe1,0x67, + 0xef,0x39,0x42,0xcb,0x24,0x57,0x31,0x51,0xf7,0x57,0x51,0x09,0xe5,0x85,0x4f,0xac,0x28,0x6e,0xf4,0x54, + 0xb5,0xb3,0xf0,0x56,0x1c,0x59,0x3c,0x6b,0x44,0x89,0xac,0xf9,0x15,0xb2,0x39,0xb4,0xb8,0x87,0x03,0x15, + 0xca,0x1f,0x7e,0xb2,0x3b,0x3b,0xc3,0xe7,0xe0,0x76,0x1d,0xe8,0x90,0x40,0x7c,0xc2,0x6f,0x4d,0x61,0x83, + 0xf5,0x68,0x44,0xaf,0x54,0xba,0x54,0xf2,0xf4,0xad,0x85,0x48,0x87,0x7d,0x9d,0xda,0xea,0x78,0xa6,0xa4, + 0x1b,0xbe,0xf4,0x2d,0x62,0x25,0x66,0xb5,0x7f,0xfb,0x4e,0x29,0x5b,0x42,0x20,0x4a,0x4c,0x51,0x34,0xca, + 0xce,0x7b,0x5f,0x32,0x1e,0x78,0x15,0x17,0x45,0x34,0xc5,0x55,0x5c,0xca,0x15,0xa6,0x6e,0x11,0xea,0x46, + 0xbc,0x3e,0x9d,0x59,0x73,0xf4,0xab,0x94,0xdf,0x50,0x2a,0x56,0x5e,0xb9,0x64,0xa8,0xd7,0x48,0xc2,0x5d, + 0x00,0x9d,0x62,0xd7,0xb3,0x0a,0xb3,0x52,0xc2,0x28,0x4f,0xce,0x63,0x64,0x3d,0x83,0x51,0x0e,0x0b,0x29, + 0x98,0xab,0x92,0x62,0xba,0x84,0x78,0x62,0x5b,0x57,0x01,0x31,0xd4,0x12,0x8a,0x64,0x9a,0x77,0x20,0xcf, + 0xb2,0x52,0x47,0x99,0xc7,0xb7,0xe0,0xb5,0xcd,0x94,0xda,0x5a,0xf3,0x4b,0x25,0x8f,0x05,0x05,0xc2,0x66, + 0x59,0xb5,0x53,0x58,0xb4,0x2b,0x8e,0xea,0xbb,0x51,0xa2,0xca,0x32,0x65,0x89,0xfe,0x3a,0x27,0xae,0x44, + 0x16,0xb2,0xa5,0x42,0x2d,0x5f,0xd7,0x2a,0x88,0xcb,0x4b,0x45,0xa3,0x74,0xc6,0xa6,0x07,0xbf,0x41,0x90, + 0xb6,0x51,0xb9,0xb5,0x18,0x7b,0xd5,0xad,0x43,0x4b,0x7e,0x27,0xb4,0xe4,0xa0,0x07,0x37,0xa1,0xc5,0x80, + 0x02,0xef,0x7f,0x11,0xe6,0xed,0x1b,0x8f,0x77,0xef,0x57,0x7a,0x13,0xfe,0xdb,0xf6,0xdf,0xb7,0x6e,0x10, + 0xb5,0x6c,0x37,0x29,0x3f,0xcd,0x99,0x1f,0x4c,0xf5,0x8a,0x03,0x3f,0x5e,0xdf,0xda,0x80,0x76,0xab,0x01, + 0xc9,0xea,0xbb,0xda,0xac,0xae,0xf3,0x6f,0xc0,0xd0,0xc0,0xb5,0x16,0x66,0x03,0x82,0xfe,0x8d,0xe9,0x82, + 0xd1,0x96,0x07,0x0e,0x3c,0x8c,0xaa,0x68,0x08,0x6a,0x44,0xf5,0xdf,0x4d,0x98,0xae,0x1d,0x51,0xbb,0xe0, + 0xbf,0x35,0x1c,0xed,0xb7,0xed,0x79,0x33,0xa6,0xac,0x76,0xdc,0x26,0x43,0x73,0x37,0x2a,0xd7,0x46,0xd4, + 0x5b,0xa4,0x1f,0xeb,0x59,0x8b,0x32,0x9b,0x6d,0xb4,0x40,0x59,0xad,0x59,0x95,0xe6,0x36,0x5a,0xb0,0xb2, + 0x74,0x0b,0x35,0xc0,0x68,0x07,0x97,0x66,0x2b,0xb5,0x4c,0x7b,0x24,0x12,0xe3,0x6d,0xbd,0xf6,0xaf,0xb5, + 0x8b,0x55,0xa4,0x56,0x6e,0x17,0xa3,0x19,0xec,0xb3,0xc5,0x11,0x22,0xab,0xa4,0xdd,0xda,0x6e,0x67,0xd5, + 0x0b,0x7e,0x20,0x2e,0x0e,0xd7,0x1c,0x3e,0xbc,0x5e,0x42,0x93,0x61,0x78,0xf2,0xd3,0x84,0xa8,0x5d,0x60, + 0xed,0xf3,0x0b,0x76,0xa1,0x12,0x4f,0x98,0xee,0x33,0x9e,0x5f,0xd7,0x1b,0x9e,0x17,0x6b,0xd4,0x3c,0x0f, + 0x0b,0xc2,0x06,0x89,0x75,0x81,0x90,0xaf,0x95,0x0d,0x19,0xf2,0x2d,0xc0,0x91,0xe0,0x17,0x6e,0x26,0x82, + 0xf9,0x3b,0x7d,0xbc,0xaa,0x18,0x6e,0xa1,0xfc,0x31,0xb1,0x72,0x89,0x84,0x37,0x6e,0x36,0xb3,0xbe,0x08, + 0xd0,0x73,0x21,0xa5,0x11,0x7a,0x43,0x91,0xd2,0x33,0x88,0x9c,0x17,0xc8,0xe0,0xb9,0xb1,0x99,0xe7,0xa4, + 0xc1,0xa1,0x2d,0xbc,0xc1,0x42,0x47,0xe8,0x3d,0x0c,0xec,0x3b,0x6e,0xe1,0x99,0x74,0xd6,0xa9,0x6e,0xb0, + 0x49,0xb6,0xff,0x3c,0x1c,0xa3,0x2a,0xda,0x78,0xa5,0xfd,0x63,0x45,0x20,0xe7,0x21,0x68,0x7e,0xa7,0x0a, + 0x52,0xbe,0xb7,0xe7,0xf0,0x43,0xe0,0x7a,0x5d,0x05,0x4a,0xd8,0xdb,0xcb,0x4c,0xcf,0xc4,0x87,0x8e,0xa9, + 0x75,0xd7,0x79,0x31,0xe9,0xc8,0x2c,0x3a,0x58,0xed,0x4e,0x52,0x74,0xe0,0x1b,0xa6,0x43,0x77,0x40,0x87, + 0xd7,0xba,0xa3,0x62,0xdd,0x17,0x1d,0x18,0x34,0x74,0x2e,0xa2,0x65,0x2c,0x15,0xa4,0x3c,0x15,0xee,0xe1, + 0x8d,0x76,0x73,0xee,0x9b,0x38,0x1d,0xd2,0x95,0x19,0xf1,0x7c,0xf0,0xf2,0xd9,0x5c,0x91,0xb6,0x1b,0x60, + 0x06,0x4f,0x65,0x0b,0xd6,0x9d,0x24,0xce,0xbc,0xbd,0x3d,0x11,0x65,0x8c,0x07,0x0e,0x8c,0xa2,0x9a,0xcb, + 0x12,0x50,0x6a,0xd9,0x9f,0x41,0x92,0x05,0xd9,0xa4,0x72,0xd1,0xef,0x27,0x7e,0xd4,0x4b,0x5c,0x09,0x14, + 0x81,0xa3,0x71,0x1c,0x6e,0x20,0x8a,0x11,0xf5,0x44,0x97,0x4b,0xcb,0x5b,0xc7,0xba,0x7f,0x6c,0xd1,0x7e, + 0x09,0xac,0x01,0xe7,0x19,0x84,0xdb,0xb6,0x9c,0xbd,0x72,0x90,0x6d,0xb5,0x06,0x57,0x70,0x9a,0x2f,0x85, + 0x8a,0xdc,0x47,0xd5,0xed,0xfc,0x1c,0x2e,0x92,0x2c,0x9d,0x3b,0x2d,0x3c,0x8e,0x4f,0xd2,0x6e,0x97,0xe5, + 0x2f,0xce,0xad,0x23,0x5a,0x8f,0x39,0xde,0x08,0xac,0x07,0x79,0x56,0x29,0x71,0x94,0x0a,0x57,0x8e,0x47, + 0x0b,0xb4,0x25,0xc2,0x1b,0xfa,0x10,0xab,0x09,0xd5,0x8e,0xb3,0x66,0xbd,0x93,0xbe,0x97,0x75,0x89,0xee, + 0x36,0xc9,0x22,0x86,0xb8,0x14,0x32,0x3c,0xf3,0x06,0x0e,0x3b,0x07,0x0d,0x3e,0x54,0x09,0x40,0x26,0x63, + 0x22,0xff,0x17,0xe2,0x44,0xce,0xe9,0xeb,0x21,0x48,0xb7,0x99,0xb8,0xaf,0x8e,0xd6,0xa2,0xf7,0xee,0xfc, + 0x0f,0x1e,0xeb,0x80,0xc6,0x0c,0xe2,0x9f,0x76,0x04,0x94,0x3e,0x75,0xe9,0x05,0xf8,0x57,0xb3,0x21,0x77, + 0xce,0xa4,0x84,0x34,0xdd,0x6f,0xac,0x6a,0x98,0xd7,0xe4,0xce,0x66,0xf1,0x69,0x25,0x25,0x52,0x74,0x53, + 0x9c,0xa2,0xa7,0xc3,0x11,0xe5,0x36,0x67,0x82,0xb5,0xd5,0x3f,0xa0,0x47,0x6d,0xde,0x9e,0x78,0xe9,0xfa, + 0x49,0x73,0x53,0x22,0x9a,0x50,0x32,0xd4,0x5c,0x60,0xa4,0xde,0x94,0xc1,0x6e,0xc9,0xf8,0x83,0x5c,0xc5, + 0x3d,0x55,0x1a,0x73,0xa2,0x92,0xca,0xcc,0x9c,0x1a,0x88,0x2a,0x90,0x9e,0x30,0xa5,0x43,0x34,0xbe,0x2e, + 0xeb,0x1f,0x1d,0x7a,0xc3,0x5a,0x05,0x3d,0x5a,0xf9,0x2b,0x6a,0xde,0xa6,0xba,0xaa,0x45,0xf4,0x70,0xd2, + 0xed,0x9a,0x45,0x5d,0x73,0x6c,0x3a,0x79,0xb1,0xba,0x0c,0x0f,0xfe,0x70,0x4f,0xc7,0x5e,0xf7,0xc0,0xff, + 0xc0,0x9f,0xd7,0xf8,0x7c,0x46,0xcb,0xf4,0x24,0x3c,0xf2,0xdf,0x85,0xf7,0xfd,0xdd,0xf0,0x81,0xff,0x86, + 0x7e,0x7f,0x1b,0x3e,0xf4,0xdf,0x86,0x5f,0xfa,0xef,0xc3,0xaf,0xfc,0xe7,0xe1,0xdf,0xfd,0x17,0xe1,0xd7, + 0xfe,0x4b,0x3c,0xb3,0xbd,0x3c,0x79,0x33,0x0c,0x6f,0xaf,0x8b,0x80,0xfe,0xfa,0xcc,0x1b,0x06,0x27,0x0f, + 0xfc,0x67,0x43,0xdf,0x39,0x71,0x82,0x93,0x6f,0x87,0x3e,0x5d,0xf2,0xc1,0xc9,0xf3,0xe1,0xda,0x7f,0x79, + 0x72,0xa4,0x4a,0x1e,0x51,0x6e,0x8f,0x72,0xef,0xb7,0x96,0xba,0xaf,0x4a,0xdd,0xaf,0xb7,0x77,0xa8,0xfe, + 0x0a,0xab,0x29,0x3f,0x50,0xfc,0x01,0x15,0xbf,0xab,0x9c,0xcf,0xbd,0xfa,0x4f,0x74,0xbf,0xfc,0xc5,0x3d, + 0xe3,0x4b,0xfa,0xa6,0x2f,0x34,0xf7,0x2d,0x35,0xe7,0xdc,0xa3,0xac,0xb7,0xa8,0x77,0xcf,0xb9,0x17,0x9c, + 0xbc,0xaf,0xa6,0xe3,0xbf,0xa3,0xaf,0xa1,0x83,0xc6,0x76,0xa5,0xe2,0x0b,0xb6,0xd2,0x43,0x96,0x0c,0xe7, + 0xad,0xae,0x8f,0x84,0x5a,0x89,0xb7,0xaa,0xc4,0x7b,0x2a,0xc1,0xed,0x6e,0x94,0x40,0x47,0xb2,0x31,0xdf, + 0xb1,0x25,0x33,0x91,0x6a,0xf9,0x22,0x5e,0xb1,0x85,0xe6,0x6a,0x7f,0x70,0x72,0x3a,0xee,0x0d,0xbb,0xab, + 0x7b,0xec,0xba,0xea,0xde,0xca,0x61,0x6f,0x56,0x8e,0x47,0xe5,0x76,0x0f,0xfc,0xd7,0x5b,0xd0,0x56,0x3b, + 0xd6,0x7a,0x6d,0x61,0x2d,0x86,0xb2,0xb7,0x74,0xa9,0xd5,0x50,0x90,0xe5,0xed,0x58,0x1a,0xb2,0x10,0x56, + 0x09,0xdd,0x8a,0xcd,0xd2,0x3a,0x16,0xa6,0x08,0xb7,0x70,0xe0,0x66,0xe1,0xfe,0x11,0x5d,0x8d,0x6f,0x38, + 0x48,0xdd,0x05,0xc0,0x05,0x67,0xe6,0xe2,0xe4,0xc9,0xb0,0x66,0xae,0xa1,0xef,0xa9,0x94,0xd5,0x70,0x04, + 0x7a,0xe1,0x59,0x50,0x32,0x60,0x81,0x7f,0xf2,0xac,0xa5,0x06,0x74,0x99,0x06,0x69,0x98,0x07,0x69,0x97, + 0x08,0x7f,0x2a,0xf4,0xae,0x56,0x08,0x95,0x88,0x32,0x9a,0x10,0xec,0x53,0xde,0x6e,0x2d,0x0f,0xa2,0xae, + 0xc7,0x87,0xde,0x64,0x7f,0x9f,0x86,0xf7,0xad,0x2f,0x45,0xcd,0xc3,0x22,0x46,0xbb,0x83,0x77,0x0c,0x37, + 0x0d,0xe7,0xec,0xe9,0xce,0x48,0x42,0x31,0x76,0xa8,0x4d,0xf6,0x95,0x8c,0x7b,0xc1,0x9e,0xdd,0x67,0xdd, + 0x2e,0xdc,0x1e,0xb2,0x9e,0x0f,0x5c,0x25,0xce,0xf0,0xfc,0xb0,0xd3,0xe0,0xbd,0x39,0xa3,0x7b,0xc4,0xd8, + 0x7a,0x41,0x8d,0xbf,0xa5,0x5b,0xf9,0x1e,0x6b,0x14,0xae,0x56,0xf8,0xfd,0x7e,0x6f,0x8f,0xc0,0x02,0xbf, + 0x35,0x8a,0x41,0xb3,0x84,0xad,0xa9,0xe1,0x6e,0xa9,0xc6,0x88,0x70,0xc8,0xae,0xa7,0xec,0xb2,0xc6,0x50, + 0xe3,0x05,0x9d,0x53,0x84,0x2f,0x4f,0x16,0x43,0x8f,0xf0,0xce,0x6a,0x55,0xb0,0xc2,0xe6,0x6a,0xf5,0x02, + 0xe2,0xe4,0x17,0x5a,0xa3,0x87,0xfb,0x84,0xa3,0x7a,0xdf,0x8d,0xc2,0x8b,0x93,0x8c,0xce,0xe0,0x50,0xe4, + 0x2b,0x66,0x2d,0xe9,0x3b,0xa3,0x43,0xe7,0x0d,0xca,0x20,0x97,0xe9,0x13,0xff,0xe3,0xd5,0x1a,0x08,0xc3, + 0xe7,0x7a,0x6c,0x23,0x51,0x53,0x33,0x04,0xa9,0x86,0x91,0x10,0xfe,0x82,0x41,0x76,0xad,0x7d,0x1b,0xc8, + 0xa6,0x71,0x09,0x10,0x63,0xd9,0x6d,0xe3,0x6e,0x84,0x58,0xbc,0xac,0x1c,0xaa,0x56,0x2f,0x2a,0xb9,0xf6, + 0x86,0x6d,0x20,0x14,0x3e,0x66,0xf1,0x76,0x4a,0x97,0x53,0x53,0x02,0xbe,0xb7,0x77,0x68,0x09,0xbb,0x6b, + 0x6d,0x55,0x8a,0x2c,0xda,0x3f,0x36,0x02,0x61,0x2b,0x97,0xd9,0x59,0x5f,0x3b,0xca,0x8e,0x4e,0xe0,0x2a, + 0xdb,0x7a,0xcc,0x80,0x9e,0x98,0x77,0x2b,0xde,0xa3,0x94,0xe1,0x40,0x14,0x8e,0xfc,0xa2,0x42,0xa6,0x91, + 0x9c,0xd6,0x57,0x5b,0x4e,0x4e,0xbf,0xe2,0xff,0xc0,0xb9,0x43,0xb3,0xd5,0xb8,0xf0,0x15,0xe2,0x71,0xb5, + 0x72,0xe2,0x74,0xff,0x97,0x77,0x0e,0x8b,0xc6,0xea,0xbc,0x76,0x95,0x87,0x47,0x25,0xcd,0xe2,0x32,0x79, + 0xa9,0x62,0x8e,0x5b,0xf2,0x22,0x49,0x87,0x5d,0x64,0x6a,0x89,0x83,0x38,0xb5,0xaf,0x5c,0x4f,0x5f,0xc9, + 0x6b,0x9d,0xfc,0xaa,0x44,0x04,0x71,0x25,0x13,0x58,0xad,0xc0,0x28,0x1f,0xab,0x22,0x57,0x49,0x01,0x07, + 0x1f,0xe8,0x5b,0xbe,0x44,0x0a,0xaa,0xbd,0x41,0x43,0x00,0x11,0xb3,0x1c,0xa2,0x96,0x0e,0xae,0x36,0xb4, + 0xf8,0x5e,0x61,0x79,0x77,0x76,0xe4,0x4b,0xf7,0xae,0x26,0xca,0xba,0x4c,0x56,0x61,0x3b,0x5d,0x2a,0xd9, + 0x29,0xba,0x87,0x56,0xd9,0x83,0x41,0x22,0x71,0xbb,0xd4,0x81,0x48,0xdc,0x9d,0x2d,0x59,0xaa,0xdd,0xfa, + 0x82,0xe2,0x19,0x1d,0x84,0xbd,0xe4,0xd9,0x8b,0x5a,0xcf,0x01,0x37,0xc0,0xf2,0x85,0xd7,0x55,0x33,0x51, + 0xe5,0x04,0x80,0x90,0xa0,0x24,0xf3,0x93,0x41,0x03,0xf2,0x15,0x56,0x71,0x77,0xa0,0x89,0x98,0xae,0x56, + 0xb9,0x5b,0x4a,0x83,0xb5,0xe3,0x22,0xb1,0xaf,0xb5,0xa9,0xf9,0x19,0x7c,0xbd,0xfe,0xfa,0xca,0xd5,0x8f, + 0x97,0xa9,0x5f,0x87,0x9a,0x00,0x5e,0x17,0x05,0x54,0x88,0xec,0x6a,0x00,0x49,0x10,0xf9,0x35,0xf0,0x08, + 0xa0,0xbb,0xe2,0xff,0x1c,0xde,0x2e,0xaf,0x82,0xdb,0x75,0x55,0x91,0xbe,0x9b,0x35,0x29,0xa9,0x5e,0xf5, + 0xb6,0xe2,0xf0,0xd6,0xcd,0x31,0xa0,0x2d,0x81,0x19,0xce,0xd4,0xcb,0x86,0x1f,0xad,0x3b,0x40,0x19,0x6b, + 0x7d,0xb9,0xbc,0xb2,0x5d,0x05,0xcb,0x64,0x5b,0x8e,0xd7,0x85,0xf6,0xdd,0x2c,0xed,0xf5,0x1b,0xbf,0x21, + 0x7d,0xa9,0xc0,0x9e,0x76,0x87,0x68,0x48,0x6c,0x0c,0x94,0x5a,0xfd,0x66,0xd9,0x72,0xed,0xdb,0x9d,0xb6, + 0xb2,0xfb,0x9b,0x1e,0x0e,0xea,0x1b,0x5d,0xa9,0x8b,0xd9,0x4d,0x6d,0x91,0x1d,0xd4,0x1a,0xdb,0xa9,0xb3, + 0x30,0xcc,0xed,0xd9,0xb1,0x46,0x52,0xcb,0xfa,0xb2,0x64,0xf4,0x97,0x3e,0xde,0x3f,0xf2,0xe4,0x99,0x79, + 0x04,0x99,0x27,0x94,0x1b,0xdd,0x96,0x31,0xf9,0xcd,0xe1,0xd4,0x64,0x5b,0x4d,0x83,0x49,0x91,0xfd,0xd5, + 0x5c,0x78,0xd3,0xe2,0xf5,0x76,0xb9,0x92,0xeb,0xec,0xa2,0xe9,0x5a,0x2c,0x09,0xdb,0xf0,0xa0,0xb1,0x18, + 0xb6,0x1d,0xc2,0x45,0xab,0x2f,0xe3,0x66,0x15,0x62,0x04,0xd9,0x69,0x79,0x33,0x71,0x23,0x42,0xc5,0xda, + 0xbf,0x1d,0xc7,0xf1,0x5c,0x94,0x8a,0x37,0x67,0xa7,0xc4,0x98,0xf5,0xab,0x7e,0xa7,0x42,0x4d,0x74,0xd0, + 0x2a,0xfc,0xb5,0x71,0xe3,0xc4,0x3a,0xe8,0xc8,0x55,0x7d,0x1d,0x58,0x40,0x66,0x2d,0x86,0x00,0xbe,0xb5, + 0x1a,0xec,0xaf,0x63,0x97,0xd8,0x5f,0x18,0x97,0xe8,0x5c,0xf6,0xa3,0xdf,0x18,0xbf,0x7f,0x9b,0x5c,0x11, + 0xa9,0x9e,0x40,0x36,0x2f,0x53,0xf8,0x19,0x0d,0xd3,0x79,0xb7,0xc7,0xdc,0xd8,0x04,0x14,0xd2,0x67,0x73, + 0x4b,0xd1,0x48,0x01,0x00,0xe5,0x2a,0x61,0x78,0xc1,0x1e,0xbb,0x7f,0x6e,0xde,0x13,0x77,0xd7,0xaf,0x3f, + 0x44,0xe8,0x66,0x6a,0x87,0xff,0xee,0x46,0xec,0x47,0x09,0xdd,0x84,0xac,0xcb,0x1d,0x73,0xd5,0x2f,0x7b, + 0x55,0xf9,0x22,0x2e,0x5b,0x4e,0x1f,0x76,0x03,0xeb,0xad,0x7f,0x55,0xcb,0x1e,0x73,0x67,0x75,0x8c,0x74, + 0x57,0xa7,0xf5,0xd2,0x2d,0xf5,0x3f,0x75,0x10,0xf5,0x6a,0x7a,0x30,0x0a,0x19,0x7e,0x74,0x14,0xaa,0x8c, + 0x5d,0xbc,0xbd,0x53,0x73,0x2f,0xf3,0x30,0x35,0x6e,0xfd,0x68,0xdb,0xa6,0x54,0xbd,0x4a,0x7b,0xfb,0x16, + 0x69,0x80,0xe2,0xad,0x08,0xfb,0xa3,0xbd,0xb5,0xd6,0xd8,0xde,0x54,0xfb,0x28,0xda,0x6f,0xf9,0xb8,0x7e, + 0xe4,0x6d,0x70,0xff,0xd8,0xf6,0xea,0xc3,0xb3,0x59,0xbb,0x01,0xec,0x1f,0x6b,0xa4,0x71,0x90,0x36,0xdb, + 0xaa,0xc1,0xfc,0xc7,0x5a,0xaa,0x9d,0xa5,0x46,0x3b,0xd0,0x14,0x53,0xbe,0x9a,0x6a,0xba,0x9a,0x08,0x69, + 0x65,0x5a,0xca,0x21,0xaa,0x10,0xa8,0x53,0xd0,0xa0,0x84,0xfe,0x1a,0x72,0xe4,0x29,0x9e,0xc9,0xb2,0x13, + 0xd6,0xc2,0x1d,0xc2,0xe4,0x22,0x48,0x1b,0x9d,0x25,0xc5,0x77,0x36,0x25,0xd6,0xe2,0xe8,0x26,0x46,0x78, + 0x45,0xd7,0x42,0x99,0xaa,0xa3,0x1a,0x09,0xd7,0x6c,0xb5,0x5d,0x0c,0x56,0x6a,0xde,0x50,0xe1,0xe4,0x0d, + 0xec,0x0b,0x7d,0x88,0x8a,0xa8,0xaa,0xd3,0x40,0xa5,0x0a,0x93,0x5b,0x27,0xfb,0x67,0x86,0x69,0x98,0x31, + 0x5f,0xc0,0x31,0x74,0x59,0xeb,0x94,0x30,0x72,0xad,0x7d,0x4b,0xcd,0x54,0x3f,0xa6,0xc2,0x28,0x84,0x38, + 0xa6,0x5a,0xb9,0xb5,0x66,0x01,0x37,0x14,0xbe,0x66,0xb5,0xe6,0x46,0xe1,0xcc,0x18,0x03,0x55,0x66,0xcd, + 0xff,0x11,0x38,0x1e,0xfb,0x1c,0x41,0xd3,0x22,0x89,0x4f,0xd2,0x4b,0x9e,0xfa,0x48,0x4d,0x1d,0x16,0x9c, + 0x3a,0x9c,0x0a,0x07,0x10,0x18,0x71,0x72,0x30,0x6a,0xac,0x21,0x2a,0x36,0xf7,0xdf,0x8e,0xfd,0x1c,0xa6, + 0x3e,0x34,0x96,0xc5,0xfb,0xc0,0x81,0xfb,0x1f,0xc1,0xc9,0xe9,0xf5,0xe9,0xfe,0xd9,0xaa,0x37,0xec,0x7a, + 0x07,0xd3,0x4a,0x53,0x7c,0x04,0x55,0x88,0x02,0x3c,0x6a,0xd1,0x78,0x9a,0xe6,0x30,0xcb,0x62,0x21,0x55, + 0x9c,0x8c,0x10,0x9b,0x67,0xa6,0xcc,0xae,0xdd,0xfb,0x55,0xf8,0x2d,0x6b,0x2f,0x79,0x14,0x0b,0x1a,0x85, + 0x93,0x47,0xd7,0x4a,0x80,0xa7,0x56,0x89,0x88,0xce,0x2a,0x51,0x28,0xf1,0x40,0x79,0x5d,0x90,0x56,0x6a, + 0x70,0x06,0x6f,0x03,0xd6,0xb5,0xcc,0x60,0xc5,0xce,0x8b,0x3a,0xdf,0x42,0x19,0x1d,0xe2,0x36,0x31,0xc1, + 0x8e,0xc7,0x1d,0x56,0x4f,0x57,0x5e,0x09,0xc7,0x61,0x55,0xa1,0x3f,0x09,0xc7,0x2a,0xc4,0x09,0x8f,0x6d, + 0xdc,0xb8,0xfa,0x10,0x3e,0x5c,0xc4,0xf3,0xe3,0xe6,0x13,0xe6,0x42,0x2d,0x24,0x31,0x73,0xae,0x9e,0xa6, + 0x75,0xea,0xdc,0x98,0x3d,0xcc,0xe6,0x88,0xc3,0x6e,0x6c,0x95,0x67,0xfe,0xc4,0x0b,0xa2,0x8a,0xed,0xab, + 0x6f,0x96,0xd6,0x30,0x6f,0xf5,0x04,0xd9,0x40,0xaa,0xbd,0xfa,0x8a,0x9a,0xa0,0x29,0x95,0xf6,0x4f,0x58, + 0x0e,0x72,0x65,0x17,0x86,0xc0,0xe6,0x8d,0xbe,0xcc,0x94,0x37,0xb0,0x83,0x3e,0x5c,0xc2,0xcd,0x6e,0x6e, + 0x5f,0xe9,0xc3,0xf2,0xd3,0x94,0x33,0xd2,0x67,0x02,0x84,0x41,0xee,0xb6,0xd5,0x48,0x7d,0xc8,0x66,0x4d, + 0x0d,0x15,0x19,0x7e,0xb4,0x01,0xac,0x1b,0x98,0xca,0x8a,0xfb,0xa4,0xbc,0x09,0x35,0x55,0x08,0xf7,0x1f, + 0xf6,0xa3,0xfd,0xfd,0xce,0xe3,0xc3,0xbe,0x07,0xb5,0x3e,0x4b,0xb7,0x34,0xea,0x3e,0x64,0x1e,0x7c,0xc7, + 0xe8,0xda,0x88,0xb4,0x1a,0x22,0xa5,0x44,0x21,0x36,0xe5,0xa9,0x00,0x7e,0x2c,0xc2,0x91,0x61,0xa5,0x09, + 0x3a,0xd5,0x24,0x2a,0xb8,0x48,0x7d,0xc5,0x98,0x36,0xdf,0xb1,0x01,0xc7,0x6a,0xc9,0xe1,0xc1,0x99,0x15, + 0x40,0xb7,0x43,0xec,0xe2,0xf3,0x21,0x56,0x29,0xb8,0x14,0x16,0xd0,0x56,0x4a,0x52,0x05,0xa1,0x65,0xa3, + 0x24,0x95,0x59,0xa6,0xef,0x1b,0xd0,0x38,0xf3,0x19,0x62,0x1b,0xb4,0x6e,0x1d,0x57,0x37,0x9e,0x0b,0x36, + 0xd6,0xfa,0x08,0x4a,0xbc,0xbc,0xd6,0x65,0x43,0x8f,0x17,0xe2,0x28,0x35,0xd0,0x5c,0x45,0x4f,0x39,0xd3, + 0x63,0xcc,0xf9,0xea,0xc0,0x80,0xd4,0x49,0x6a,0xa1,0x30,0xd9,0x4e,0xda,0x4c,0xa4,0xd4,0x21,0x21,0x9a, + 0x17,0x42,0x0b,0x26,0xd3,0xfa,0xa3,0x9b,0x1b,0x56,0x6e,0xdf,0x30,0xe0,0x18,0x1d,0x2f,0xbd,0x6d,0x9b, + 0xb2,0xbf,0xba,0x4d,0x36,0x9d,0x9f,0x28,0xbb,0x95,0xed,0x7b,0x42,0x27,0x89,0x8e,0x44,0x73,0x4f,0x9a, + 0xb3,0xac,0x1e,0x19,0x07,0x9b,0xd7,0x49,0xc9,0x76,0xb4,0xd6,0xea,0x9a,0x67,0x5a,0xae,0xbc,0x6d,0xa9, + 0x21,0x09,0x08,0x1c,0xa7,0x79,0xfe,0x46,0xad,0x0b,0x6c,0xac,0x85,0xc4,0xe0,0x76,0x03,0x2c,0xbe,0xec, + 0x17,0x0a,0x2c,0xa2,0x93,0xc2,0x06,0x8b,0xa2,0xfb,0xa5,0x91,0xf5,0xd2,0xe0,0x8d,0x80,0x26,0x61,0xed, + 0x69,0xd8,0xae,0xb8,0x0a,0x5f,0x58,0xe0,0x32,0x12,0x4a,0x83,0xfa,0x36,0xf0,0x10,0x79,0x08,0x8f,0x83, + 0x01,0xcb,0xfd,0xde,0x80,0xe1,0xfa,0xa8,0x6d,0x65,0x64,0x1a,0x6f,0xbe,0x39,0xde,0xfb,0xfd,0x5c,0x8d, + 0x97,0xdd,0x15,0x54,0xe3,0xcd,0xbb,0xf7,0x0d,0x18,0x27,0x66,0x5c,0x23,0x35,0xb0,0xe4,0x53,0xe1,0xd8, + 0x2f,0xcd,0xc8,0x75,0x5c,0x98,0xa4,0xb9,0xd2,0x4d,0xb4,0x6b,0x19,0x37,0x8b,0x65,0xd9,0xc6,0xa8,0x1f, + 0xf4,0x33,0x35,0x6a,0xb6,0x16,0xaa,0x46,0x9d,0x75,0x1f,0xe8,0xa7,0xb5,0x06,0x5e,0xcb,0xbd,0x0a,0xa7, + 0xd5,0x01,0x94,0xa5,0x48,0x78,0xda,0x19,0x6e,0x30,0xf7,0x8d,0xa1,0x35,0xa8,0x4e,0xb9,0xbe,0xef,0x58, + 0x84,0xb2,0xd1,0x24,0xe5,0xd6,0xf4,0xab,0x5a,0x08,0x44,0xc3,0xf3,0x59,0x54,0x36,0xa1,0x36,0xc8,0x1d, + 0x1b,0x8d,0x15,0xdb,0x1b,0x63,0x8f,0xba,0x2d,0xad,0x34,0x25,0x33,0x9b,0x1a,0x5f,0x9f,0xd2,0xc8,0x45, + 0x6f,0x51,0x26,0xb3,0x9e,0x78,0x38,0xdc,0x3a,0xda,0xb6,0xc9,0xd7,0x99,0x83,0x3b,0x66,0xdf,0x60,0x0f, + 0xb6,0x2e,0xc2,0xd6,0x46,0x6b,0x13,0xd8,0x6c,0xad,0x75,0x31,0xfe,0x72,0x63,0x5b,0x16,0xa5,0x7d,0x12, + 0x1b,0x6b,0x23,0x1a,0x26,0xc9,0x9f,0xa6,0xff,0x16,0x62,0xc4,0x44,0xca,0x85,0x7f,0x6b,0x02,0x58,0x20, + 0x6d,0xa2,0xd0,0x0b,0x0f,0x72,0x4e,0x18,0x88,0xf2,0xe3,0x01,0xe7,0x85,0xe9,0x10,0xae,0xbd,0xec,0xac, + 0x0d,0xde,0x20,0x44,0x3a,0x6c,0x06,0xba,0xce,0xd9,0x19,0xc2,0x1a,0xe8,0xbb,0x7e,0x53,0x6c,0x7b,0x32, + 0x33,0xd8,0x6b,0xb1,0x5a,0xb9,0x1f,0x2d,0xc8,0xc2,0xc1,0x16,0xfd,0x4b,0x37,0xf2,0x61,0xc7,0xbf,0x50, + 0xdc,0xf2,0x86,0x64,0xef,0x6c,0xbc,0x81,0x08,0x98,0xef,0x30,0x03,0xdf,0xd2,0xac,0xa8,0x34,0x4a,0x8b, + 0x7d,0x9b,0x40,0x6c,0xae,0x68,0x75,0x0d,0x34,0x2e,0xc2,0xed,0x72,0x1a,0x3f,0xdd,0x7e,0x33,0xe6,0xff, + 0x2b,0x6e,0x46,0x71,0x35,0x58,0x9a,0x9b,0x31,0x87,0x49,0x7e,0x7d,0x5d,0xc6,0xad,0x84,0xc9,0x36,0x8c, + 0x7e,0xb4,0x1d,0xa3,0x1f,0x0d,0xb5,0x05,0x85,0x85,0xb4,0xb2,0x0d,0x4b,0xa3,0xca,0x59,0x45,0xd3,0x2c, + 0x08,0xa6,0xd5,0x03,0xd8,0xa7,0x1c,0x0e,0xf1,0xb4,0x0f,0xdb,0x20,0x0e,0x31,0x02,0x6f,0x0e,0xca,0x88, + 0x03,0xf6,0x36,0xd5,0x6f,0x44,0x0f,0xa5,0x1f,0x1c,0x1b,0xd5,0x95,0x8a,0x1c,0x16,0x55,0x2c,0x90,0xd2, + 0x8f,0x58,0x20,0xa5,0x62,0x81,0x24,0x75,0x3c,0xbf,0x25,0xff,0x68,0xa8,0x7a,0x63,0xc3,0x23,0x05,0x8f, + 0x88,0x3f,0xcf,0xf1,0x45,0x1b,0x68,0xc7,0x96,0x23,0xdc,0x81,0x74,0x6a,0x92,0x84,0xad,0x28,0x67,0x4b, + 0x83,0x35,0x1c,0xd1,0x6c,0xa9,0x15,0xdd,0xfc,0xa5,0x86,0xb6,0xa0,0x9a,0xb6,0xa1,0x6f,0x47,0x34,0xd2, + 0xf3,0xff,0x8f,0x68,0xa6,0xf9,0x02,0xb4,0x05,0xc9,0xb4,0x14,0xab,0x50,0x8c,0xbd,0x7c,0x77,0x22,0x98, + 0xf4,0x13,0x11,0x4c,0xad,0xd1,0x3b,0xd1,0x8b,0x94,0xbe,0x1b,0xb9,0x34,0xe4,0xb7,0xff,0xdb,0x51,0x4b, + 0x7a,0x37,0x6a,0x49,0xff,0x2f,0x6a,0xf9,0x54,0xd4,0x92,0x1a,0xd4,0xa2,0xb4,0x3f,0xc4,0x90,0x40,0x89, + 0x7e,0x12,0x22,0xf6,0xac,0x85,0xf5,0x7f,0xf6,0x68,0x9d,0xa3,0x65,0x94,0xcc,0xa2,0xf3,0x64,0x96,0x20, + 0x3f,0xbc,0xad,0xdf,0x96,0xc1,0x4d,0xed,0xf5,0x2f,0x38,0xc7,0xd6,0xb0,0x16,0xef,0x6c,0x66,0xc7,0xd6, + 0xd5,0x3a,0x78,0x7d,0xf7,0x02,0x1e,0x57,0x96,0x74,0x02,0x28,0x63,0x6f,0x4f,0x81,0xdd,0x85,0x4e,0xd1, + 0x36,0x92,0x3d,0xc7,0xe3,0x79,0xc5,0xba,0x31,0x89,0xa1,0xd4,0x36,0xea,0x1b,0xaa,0x5d,0x8d,0xd9,0xd9, + 0x15,0xcd,0xd5,0x5b,0x82,0xd5,0x60,0x9b,0xa8,0x15,0x45,0xe0,0x78,0x26,0x0d,0x2f,0xb6,0x34,0x99,0xd6, + 0x9a,0x2c,0x37,0xdb,0xdb,0x7c,0x19,0xb3,0xdf,0x7c,0xfe,0x57,0x00,0x61,0xac,0x34,0x56,0x55,0xf3,0x49, + 0xc5,0x51,0x11,0xe3,0x42,0x7c,0xa8,0x06,0xd0,0xa4,0x49,0xad,0xc7,0x36,0xb7,0xb2,0x5e,0x57,0xb6,0x13, + 0x1f,0x9f,0xe3,0xe8,0xf3,0x26,0xb9,0xc1,0xe2,0x24,0x6d,0x8c,0x59,0x62,0x58,0x9c,0xc4,0x9e,0x66,0x02, + 0xc6,0x4c,0x39,0xfd,0xa8,0x4f,0x33,0xb3,0x18,0xb4,0x0c,0xf3,0x34,0x16,0x6d,0xd9,0xc6,0x3c,0xfd,0xd4, + 0xcc,0x34,0xff,0x9c,0x99,0xc6,0x9f,0x3f,0x53,0xe5,0xc6,0xb0,0x3e,0xd6,0x9c,0xd9,0xa7,0xd2,0x37,0x1a, + 0xbf,0xf9,0x06,0xf7,0xf8,0xe9,0xa3,0x1a,0xff,0xf7,0xc2,0x98,0xe1,0x8a,0x63,0x6d,0xa7,0x37,0xb6,0xa0, + 0xab,0x85,0xdf,0xfd,0xd4,0x79,0xb4,0x9c,0xbd,0xff,0xde,0x79,0xa4,0x77,0xcf,0x03,0xa6,0xd3,0x1f,0x92, + 0xd4,0x3d,0xc3,0xa7,0xb1,0x05,0x74,0x1d,0x9c,0x73,0x8e,0xb8,0x30,0x52,0xf1,0xd7,0xd9,0xd9,0xd7,0x45, + 0x15,0x16,0xcc,0xbd,0x16,0xbf,0x87,0xd7,0xfa,0x12,0x35,0x2a,0x03,0x62,0x38,0xf5,0x0a,0xc4,0xd0,0xbb, + 0x32,0xa7,0xaa,0x53,0xc2,0x96,0xfd,0x5c,0x6c,0xa8,0xf2,0x9e,0x8a,0xfa,0x0d,0xec,0xa8,0x30,0x5d,0xe8, + 0xfc,0xbd,0xf7,0xa0,0xf7,0xd0,0xf1,0xdb,0xcc,0xb9,0x24,0x22,0xf3,0xde,0x9e,0x8a,0xcc,0xfc,0x2b,0x22, + 0xca,0x54,0xdf,0xbd,0x45,0x11,0xbb,0xaf,0x08,0x39,0x2b,0xb5,0x21,0x63,0xe5,0x72,0x1b,0xa7,0xc1,0x2d, + 0x07,0xc1,0x0c,0x9c,0x77,0x65,0x94,0xe4,0x85,0xe3,0x17,0x37,0x45,0x19,0x5f,0xbd,0x78,0x4e,0x29,0xfc, + 0xd5,0x79,0xf1,0xdc,0xf1,0x27,0x49,0x7e,0x75,0x1d,0xe5,0xf1,0xaf,0x32,0x96,0xc0,0xf9,0x4e,0x25,0x74, + 0xd4,0xe8,0x82,0x0e,0x42,0x5a,0xce,0x6f,0x24,0x0e,0x86,0xf3,0x4c,0x7f,0x76,0xfe,0xe7,0xff,0xd3,0xb9, + 0x7f,0x78,0xf4,0xf7,0xce,0xab,0x28,0xbf,0xec,0x2c,0xa3,0xb4,0xf3,0x73,0x9c,0x16,0xd7,0xd9,0x62,0x1c, + 0x23,0xce,0x65,0x04,0x27,0x59,0x81,0xf3,0x76,0x16,0xc3,0x8a,0x90,0x63,0x13,0x74,0x54,0x6a,0x47,0x16, + 0x4a,0x85,0x66,0xef,0xf5,0x7a,0x8e,0x9f,0xc7,0xe7,0x74,0xc5,0xbf,0x8d,0x53,0xa9,0x75,0x7c,0x11,0x77, + 0x64,0xb4,0x34,0xff,0xd9,0xac,0x73,0x1e,0x77,0xa4,0x44,0x3c,0xf6,0x3b,0x73,0x69,0x32,0x8f,0x27,0x79, + 0x5c,0x5c,0x30,0x1e,0xef,0xcc,0x69,0xd2,0x9d,0x68,0x42,0xe4,0x14,0x0d,0x7d,0x4c,0x73,0xe5,0x8d,0x7f, + 0xca,0x31,0x39,0x02,0xe7,0x09,0x7e,0xd4,0xd2,0xde,0x45,0x4b,0xee,0x48,0xfe,0xf2,0x10,0xae,0x93,0x49, + 0x42,0x2b,0x55,0x2e,0x8a,0xe0,0x36,0x1a,0xc1,0x01,0xe5,0x3c,0x4b,0xd2,0xd2,0xac,0xe2,0x93,0xb7,0x58, + 0x89,0x71,0x52,0x44,0xe7,0x74,0x05,0x05,0xce,0x73,0xf5,0x45,0x24,0x08,0xfb,0xc0,0xc8,0x52,0x44,0xa7, + 0x33,0xc5,0x7f,0x4b,0xbe,0x4b,0xb6,0x54,0xf0,0x13,0xc4,0x21,0x71,0x5e,0x8c,0xf1,0xfa,0x9b,0x66,0xef, + 0xde,0xf1,0x96,0xd0,0xbf,0x1d,0x18,0x9e,0x4e,0x32,0x82,0x02,0xda,0xac,0x51,0x94,0x22,0xbe,0x04,0x6c, + 0x36,0xa8,0xf2,0x3b,0xfa,0xd9,0x19,0xe9,0xdf,0xd8,0x91,0x34,0x25,0x58,0xfd,0x8e,0x6e,0x64,0x64,0xcb, + 0xdf,0x4e,0x99,0x75,0x54,0x86,0x29,0x41,0xe3,0x7a,0x99,0x15,0xbc,0x71,0xfa,0x37,0xed,0x43,0x51,0xf2, + 0xc8,0x54,0x19,0x35,0x3a,0xf3,0x0b,0xa1,0x3b,0x0a,0xb5,0x14,0x65,0x74,0x7e,0x6c,0xc0,0x88,0x52,0x1c, + 0x5f,0x4d,0xf0,0x99,0xc4,0x7f,0xe9,0x14,0x2a,0x99,0x6e,0xe6,0x77,0x65,0x3c,0x2f,0x8e,0xf3,0x05,0x0a, + 0xc7,0x65,0x07,0xef,0x04,0x08,0x2f,0x7f,0x43,0x73,0xca,0xd9,0x40,0xa0,0x40,0x81,0xaa,0xe8,0x77,0xd0, + 0x5a,0x6d,0x96,0x85,0x7b,0xb5,0x65,0x32,0x5e,0x20,0xc6,0x04,0xad,0x2d,0x11,0x33,0x88,0x2d,0x51,0x1b, + 0xc9,0xb1,0x4a,0xc3,0x58,0xae,0x62,0x9d,0x48,0x9f,0x92,0xf0,0x02,0xef,0x13,0x29,0x21,0x1e,0x0d,0x7d, + 0xb4,0xac,0xb0,0x7b,0x89,0xca,0x0e,0xb2,0x3b,0xba,0xc9,0x8e,0xb2,0x45,0xe9,0x44,0x29,0xf7,0x8f,0x3a, + 0x9d,0x6a,0xd9,0x7a,0xd2,0xda,0xeb,0x8c,0x23,0x12,0x3b,0xaf,0xb3,0x46,0x6d,0x75,0x54,0x3b,0x37,0x71, + 0x29,0x25,0xbf,0x4d,0xd5,0x4e,0xcb,0x47,0xbd,0xb8,0x1a,0x2b,0x84,0xd8,0xec,0xff,0x0a,0xc3,0xc5,0x4c, + 0xf4,0x6f,0x29,0x9d,0xa4,0x9d,0x2b,0x02,0xf8,0xa4,0x88,0x69,0x1c,0x63,0x55,0xe9,0xc9,0x98,0xda,0xa4, + 0x7f,0xe4,0xd7,0x73,0x09,0x0f,0xe4,0xc8,0x5f,0xdd,0x2c,0x77,0xd2,0x18,0x80,0xaa,0xf0,0x5d,0xf2,0x21, + 0x1e,0x4b,0x77,0xfc,0xc9,0x3d,0x49,0xd6,0xbb,0x45,0x9a,0x27,0xbc,0x05,0xf2,0x61,0x52,0x0b,0xac,0x9e, + 0xfc,0xd5,0x8b,0x7c,0xa5,0xd6,0x58,0xc6,0x98,0x2e,0xca,0x58,0x0d,0xef,0x15,0x8d,0x34,0xba,0x09,0x1c, + 0xf9,0xab,0x8a,0x2f,0xe2,0x82,0x13,0xd5,0x87,0xa4,0xfe,0x16,0x8f,0x53,0x95,0x6e,0x3e,0x55,0xf9,0x8b, + 0x45,0xae,0x2a,0xa8,0x2f,0x35,0xf6,0x3c,0xe1,0x54,0xf9,0xab,0x86,0x47,0xf0,0x96,0x73,0xaa,0xfe,0x32, + 0xc3,0x96,0xd4,0x85,0x8c,0xe3,0x2a,0x93,0x75,0x66,0xe8,0x78,0xc5,0x3f,0x74,0xa2,0xb5,0xa7,0x92,0xb0, + 0x65,0x57,0x25,0xb3,0xb9,0xaf,0x8d,0x2a,0x8d,0x62,0xcf,0x17,0x20,0xbf,0x8f,0xab,0x5d,0xa1,0xbd,0xc3, + 0xa5,0x42,0x17,0x41,0x07,0xa1,0x82,0x3a,0xc9,0xa4,0x13,0xd5,0x60,0x03,0x36,0x34,0xd1,0x2c,0x8f,0xa3, + 0xf1,0x4d,0x27,0x12,0x5b,0x74,0x3d,0xf8,0xcf,0x05,0x17,0x5d,0x6d,0x0b,0x38,0x48,0x76,0x05,0x4f,0xf2, + 0xbb,0x09,0x51,0x92,0xfa,0x36,0x21,0xcc,0xf9,0xfd,0xdb,0x17,0x6f,0x3a,0x73,0xea,0xc6,0x95,0x81,0x75, + 0x2e,0x08,0xf5,0x7b,0xa6,0xa2,0xdc,0x97,0x40,0xb1,0xef,0xae,0xe3,0x78,0x4e,0x07,0x29,0xb9,0x8a,0xec, + 0x85,0x36,0x25,0x5e,0x5b,0xdf,0xd1,0x0c,0x2b,0x9f,0xc6,0xd4,0xa8,0xc6,0x09,0x1d,0x9c,0x4d,0x20,0xfd, + 0xe8,0x4a,0xce,0xcd,0x66,0x1f,0xc7,0xd9,0xfc,0x39,0x22,0x64,0x39,0xf4,0xd1,0x41,0xac,0xac,0x8d,0x12, + 0x4f,0x33,0x42,0xed,0x57,0xbf,0xcc,0x03,0x47,0xbe,0x3a,0x8b,0xb9,0xb3,0xb6,0xf0,0xa0,0x8d,0x42,0x2a, + 0x6c,0x58,0x21,0xb4,0x0a,0x41,0xf2,0x5b,0x5f,0x5c,0xf2,0xe6,0xda,0x77,0x81,0x86,0x00,0x49,0xeb,0x70, + 0x62,0xad,0xc4,0x0f,0x5c,0xea,0xc9,0x6c,0x96,0x5d,0x17,0x82,0xf5,0x94,0x83,0x01,0x0b,0xaf,0x74,0x26, + 0x39,0x8d,0xed,0x26,0x5b,0xe4,0x04,0x6c,0xcb,0x64,0x14,0x03,0x6d,0xf3,0x2d,0x26,0x17,0xb5,0x72,0x6b, + 0xc4,0xd5,0x6b,0x37,0x65,0x67,0xbe,0xc8,0xe7,0x59,0x11,0x17,0xbd,0x0e,0x2e,0x48,0x55,0xba,0x5e,0x04, + 0xa0,0x24,0x6c,0x1a,0xb5,0x40,0xbf,0x2f,0xca,0x72,0x1e,0x1c,0x1c,0x1c,0x7d,0x73,0xbf,0x77,0xf4,0xd5, + 0xd7,0xbd,0xa3,0xde,0xc3,0x83,0xce,0xf5,0x05,0x41,0x21,0xf5,0xdf,0xc1,0x2d,0x6f,0x90,0x3e,0x46,0x91, + 0x94,0xd4,0x34,0xb3,0x18,0x65,0x27,0x9b,0x10,0x9c,0x16,0x9d,0x22,0x83,0xef,0x98,0xa2,0xa3,0xee,0x38, + 0x0c,0x2e,0x46,0x2f,0xba,0x5b,0xdc,0xc8,0x94,0x4d,0x15,0x28,0x91,0x1d,0x27,0xc4,0x23,0xa4,0x02,0x36, + 0xa3,0xf4,0x86,0x6e,0xfe,0x9b,0x5e,0xe7,0x9f,0xd4,0x19,0x2e,0xb0,0x68,0x46,0x3f,0x8b,0x8e,0xe1,0xbf, + 0x3a,0x42,0x2b,0x75,0x20,0x28,0xc0,0x68,0xcf,0x6f,0x3a,0x50,0x92,0x04,0x8d,0x00,0x68,0xb0,0x97,0xb9, + 0xa3,0x02,0x6c,0x2d,0xd2,0x32,0x99,0x71,0xee,0xcb,0x6f,0x9f,0x77,0x66,0xa0,0x44,0x0a,0xda,0x68,0x42, + 0xd6,0xf6,0x2d,0xac,0x37,0xca,0x1e,0x75,0xad,0x84,0x6c,0x94,0xda,0xf2,0xb6,0xd5,0xa7,0xd5,0xe0,0x2d, + 0x22,0x40,0xeb,0xe0,0x2e,0xef,0xe4,0xec,0xf6,0xab,0xd7,0x51,0x77,0x0a,0x87,0x75,0xe3,0x71,0xe0,0xe6, + 0x26,0xaa,0x24,0x2a,0x88,0xf8,0xc9,0xc7,0x34,0xe9,0x31,0x11,0xb5,0x39,0xe5,0x34,0xb7,0xef,0x3c,0x26, + 0xb0,0xc0,0x40,0x8b,0x64,0x2c,0x17,0xbe,0xe3,0xeb,0x6a,0x74,0x57,0xa9,0x2f,0xba,0x98,0x2f,0x46,0x04, + 0xc3,0xbf,0x50,0x27,0xcf,0x7f,0x78,0xf6,0x56,0x7e,0x2b,0xc0,0x5a,0x10,0x58,0xc3,0xdf,0x16,0x2e,0x47, + 0x5a,0xf6,0x22,0x99,0xa6,0x05,0xae,0xaf,0x17,0x6f,0x3b,0x2a,0x04,0x7c,0x3b,0x30,0xc9,0x16,0x10,0x71, + 0x7e,0x4e,0xcb,0x82,0x4d,0xa1,0x05,0xa5,0x82,0x97,0x38,0xb4,0xb2,0x11,0x58,0xd9,0x19,0xea,0x03,0x30, + 0x60,0xca,0x44,0x60,0x42,0x87,0x92,0x7e,0xdd,0x23,0x28,0x19,0x67,0x20,0x93,0x88,0x72,0x99,0xab,0x6e, + 0x88,0x7c,0x31,0x5d,0xd2,0x8c,0x16,0xe7,0x74,0x77,0x5e,0x45,0xc5,0x25,0xd0,0x2f,0xbe,0x3b,0xf8,0xe1, + 0xf8,0x53,0xc2,0x7a,0xd7,0x40,0xca,0xdf,0xcb,0x87,0xe3,0x5f,0x10,0xed,0x21,0x76,0xa5,0x3f,0xa8,0xaf, + 0x2a,0xed,0x6d,0xe5,0xbb,0x18,0xd8,0x48,0x4c,0x49,0xa9,0xa5,0x91,0xe9,0x69,0xad,0x88,0xd8,0x1a,0x5d, + 0xc2,0x29,0x44,0x49,0x95,0x73,0x8b,0x14,0xe8,0x40,0x95,0xf3,0x22,0xcf,0x52,0xa2,0xba,0x78,0xf5,0xdd, + 0xd7,0xc7,0x6f,0x09,0xab,0x10,0x32,0x2b,0x54,0xb1,0x1f,0x88,0x54,0x64,0x4a,0x97,0xd2,0x32,0x84,0xc9, + 0xbc,0x8a,0xe6,0x3a,0xef,0xfb,0x2c,0x9b,0x12,0x14,0xbc,0xa2,0x94,0xce,0x93,0xb7,0x2f,0x2a,0x3a,0x59, + 0xe5,0x1b,0x2a,0x59,0xb8,0x03,0xee,0xfd,0x1d,0xdc,0xcd,0xd2,0xc8,0xa9,0xa3,0x0e,0xbb,0x9e,0xcd,0x39, + 0x99,0xc9,0x91,0x25,0x90,0xde,0xcf,0x8a,0x64,0x4d,0x54,0x4a,0xc7,0xad,0xee,0x52,0x8f,0xcb,0xbe,0x8c, + 0x68,0x97,0xe9,0x9f,0xa4,0x64,0x32,0x1a,0x29,0x20,0x53,0x5f,0x66,0xe9,0xd4,0x4a,0x22,0x16,0x53,0xb0, + 0xee,0xf7,0xb4,0xd0,0x33,0x55,0xba,0x73,0x40,0x74,0x9d,0x2a,0x26,0x28,0x66,0xa6,0xca,0xd5,0x2a,0xbd, + 0x8b,0xa3,0x7c,0x74,0x01,0xa2,0x0b,0x7f,0x79,0x3d,0xe8,0x20,0x11,0x71,0x4b,0xb7,0x14,0x9f,0xb6,0xb7, + 0x7c,0xda,0x84,0xaa,0xe3,0x33,0xc6,0xe8,0xbf,0xfb,0xa0,0xf7,0x60,0xe9,0xe9,0xe2,0xef,0x8e,0x9f,0x08, + 0x3d,0x88,0x85,0x7d,0x05,0x8c,0xf0,0x91,0xf2,0x4f,0xde,0x6a,0x3a,0x5c,0x1d,0xca,0x5a,0x47,0xea,0x58, + 0xdb,0x77,0x0c,0x9d,0x12,0xa9,0xf9,0xf6,0xb7,0x57,0xcf,0x73,0x4a,0xc9,0xdf,0x3d,0xa7,0xfe,0xde,0x3e, + 0x7b,0xf2,0xcd,0x57,0x5f,0x7f,0xd9,0xa1,0xd4,0xce,0x98,0x93,0x3b,0x94,0x2e,0x35,0xa1,0x13,0xdc,0xac, + 0xf3,0xec,0x65,0x7b,0x9d,0x67,0x2f,0xa5,0xce,0x08,0xce,0x47,0x51,0xe9,0xfa,0xea,0x89,0x06,0xea,0x96, + 0xf2,0x2f,0xfe,0xe7,0xff,0xfb,0xac,0x82,0x74,0x2a,0xfc,0x1d,0xc8,0xc6,0x38,0x1d,0xdd,0xb4,0x16,0x9f, + 0xe8,0x5c,0x01,0x27,0x82,0x9d,0x9f,0xe2,0x9b,0x0d,0x78,0xa2,0x93,0x57,0x2b,0x70,0xc1,0xc7,0xfb,0xe7, + 0x58,0x3c,0xf1,0x8d,0x81,0x3e,0x27,0x9d,0x45,0xc1,0x88,0xd0,0xa6,0x22,0x7b,0x1d,0x42,0x0b,0x63,0xbe, + 0x1a,0x66,0x59,0x76,0x89,0xfc,0xc5,0x9c,0xb1,0x90,0x0a,0xc7,0xc8,0xc5,0xff,0xa4,0xcb,0xb5,0x47,0x58, + 0x8b,0x6e,0x57,0xc2,0x28,0x97,0x1d,0xc4,0x87,0x23,0x00,0x07,0xa2,0x50,0x7d,0xfb,0x58,0xf7,0x8e,0x1a, + 0xd4,0x15,0xb3,0x73,0x10,0xc8,0x96,0x04,0xdb,0x82,0xf6,0x78,0x16,0x05,0x5d,0x07,0x3f,0x13,0xfb,0x5a, + 0x00,0xd5,0xc9,0x6d,0x46,0xd3,0x8b,0x75,0x23,0xb8,0xb4,0xd5,0xfd,0xa2,0x9d,0xd8,0xd1,0x85,0x46,0x48, + 0x6e,0x8e,0x91,0x4e,0xb9,0x71,0x30,0xcc,0x07,0x8c,0x13,0x23,0x4d,0x04,0x25,0xe5,0x3d,0xc2,0xd8,0x85, + 0x5c,0x70,0x18,0xba,0x5e,0x94,0x1e,0xe2,0x57,0x42,0xfc,0x1b,0xdc,0x82,0x53,0x34,0x1c,0xe9,0x33,0xf8, + 0x37,0xe4,0xbb,0x05,0xc9,0x74,0x7a,0x44,0x7e,0x0d,0xd8,0x8b,0xce,0x31,0xaf,0xd2,0xb0,0x8b,0xc2,0x79, + 0x56,0x37,0xf9,0x46,0x65,0xeb,0x1a,0x26,0xda,0xb6,0x84,0x23,0x67,0xa9,0x23,0x58,0x64,0xa3,0xbc,0xe2, + 0x42,0xeb,0x65,0x2d,0xe2,0xae,0xd8,0xa8,0x51,0xa3,0xec,0xea,0xf5,0x5e,0xd9,0xd4,0xd9,0x66,0xcd,0x3a, + 0x5d,0x69,0xd5,0x65,0xc6,0xb5,0x7d,0x52,0x05,0xcc,0xab,0x5b,0x27,0xc5,0x95,0x36,0x67,0xc5,0x15,0x36, + 0x66,0x25,0x58,0x0c,0xf7,0x9c,0x62,0x81,0xad,0x1a,0x79,0x4c,0x23,0xa2,0x7d,0x95,0x6b,0x50,0xb3,0x7b, + 0x8b,0x39,0xc6,0xac,0xd1,0x20,0x9d,0x6d,0x6c,0x5c,0x87,0x43,0x0b,0x76,0x24,0x0f,0xc0,0xa9,0xb1,0xa6, + 0xee,0x81,0xd9,0x3e,0xbb,0x71,0x1e,0x25,0xbf,0x54,0x80,0x0e,0x14,0x6f,0x4b,0xb8,0x50,0x18,0x3b,0x55, + 0x88,0xce,0x5e,0xa9,0xec,0x12,0x30,0xaf,0x91,0x1b,0x4d,0x9e,0x2e,0xcd,0x24,0x8d,0x98,0x1f,0xe1,0xe6, + 0xb6,0x6d,0x0f,0x4f,0x7d,0xcb,0xf6,0x70,0xc5,0xed,0xfb,0xc3,0x55,0xb7,0xed,0x0f,0x71,0xcb,0xe9,0xcc, + 0x30,0xfe,0x44,0xa3,0xcf,0x37,0x64,0x2d,0x9f,0x26,0x6c,0x89,0xff,0x3d,0x59,0xcb,0xb7,0x44,0xd6,0x65, + 0xd3,0x38,0x3d,0x9f,0x25,0x97,0x9d,0x69,0x4c,0xf7,0x3e,0xd1,0x66,0xe7,0xf1,0x9f,0xc9,0xb4,0x73,0xc5, + 0x17,0xc5,0x98,0x0a,0x2c,0x59,0x8e,0x60,0xc8,0x92,0xb8,0x4d,0xfc,0xf2,0x03,0x95,0x2e,0xd4,0xb0,0x41, + 0x92,0x10,0x31,0x38,0x4f,0x93,0x78,0x71,0x4d,0x7f,0xa7,0xb1,0xc4,0x0e,0xc2,0x88,0x31,0x68,0xa2,0x0d, + 0xe2,0x3f,0x63,0x08,0x60,0x68,0x0f,0x3a,0x29,0x0d,0x25,0x4e,0x1b,0xe2,0x97,0xe3,0x2c,0x06,0x99,0xd3, + 0x48,0xd7,0x22,0x98,0xa7,0x66,0x80,0xd9,0xbc,0x98,0x45,0x51,0xfa,0x97,0xa4,0x31,0xbf,0x24,0x25,0x8d, + 0x6c,0x74,0x11,0x5d,0xc6,0xb3,0x4f,0x17,0xc9,0xd4,0x6b,0x29,0xb9,0xcc,0x3b,0x1a,0xc4,0x1c,0xce,0x47, + 0xc6,0x4d,0xe9,0x4c,0x42,0x83,0x9c,0xc6,0x4b,0x62,0xb5,0x30,0x97,0x36,0x09,0x4d,0x34,0x21,0xc8,0xc8, + 0xd2,0x4d,0x01,0xcd,0x4f,0x94,0x39,0x8d,0xb1,0xfe,0x71,0xae,0xe2,0x07,0x10,0x61,0x73,0x89,0x76,0x9a, + 0x82,0x9a,0x5f,0xab,0x12,0x54,0x78,0x96,0xe5,0x28,0x54,0x17,0xd6,0xbc,0xc6,0x48,0xd0,0x92,0x0c,0xe5, + 0x53,0xc4,0x35,0x3f,0x2c,0x92,0x71,0x32,0x8d,0xb7,0x88,0x6b,0x88,0x63,0xc1,0xa9,0x88,0x01,0x21,0xd8, + 0xcf,0xd9,0x04,0x54,0xbe,0x92,0xc9,0xc4,0x49,0xb9,0x21,0xb3,0x39,0x96,0xb2,0x5a,0x58,0x13,0xc7,0x33, + 0xf6,0xd8,0x12,0x53,0x3b,0xe9,0xe7,0x49,0x6d,0xde,0x8f,0x9b,0x52,0x9b,0x97,0x0c,0x0b,0x1d,0xc2,0x17, + 0x9d,0x65,0x86,0x3b,0x82,0xca,0x54,0x0c,0x7a,0x1c,0x57,0xd2,0x9a,0x65,0x6d,0xa9,0x62,0x78,0xdc,0x4b, + 0x8a,0x0d,0xb9,0xcd,0x54,0x56,0xbe,0xde,0xcc,0x34,0x36,0x1c,0x4c,0x9c,0x8f,0x1b,0x02,0x9c,0xe3,0x5a, + 0x51,0x9a,0x98,0x80,0x48,0x9c,0x7e,0x5c,0x8a,0x13,0x4b,0x1f,0x75,0xae,0x5c,0x57,0x62,0xae,0x9b,0x8e, + 0xc2,0x32,0x8b,0xa7,0x3a,0x4d,0x73,0xde,0xb4,0xe5,0xd7,0x54,0x33,0xce,0xab,0x1e,0xea,0x1c,0x3c,0x24, + 0x08,0xf1,0x64,0x43,0x9e,0xf3,0x6b,0x54,0x94,0xd2,0x69,0x43,0x9e,0xf3,0x3b,0xee,0xe3,0xf9,0x65,0x76, + 0x55,0x94,0x75,0x99,0x0e,0x67,0x40,0x15,0x79,0x1a,0x41,0xad,0xd5,0x16,0xed,0xe8,0x91,0x83,0x1c,0x4d, + 0x1b,0xa2,0x1d,0x3a,0x96,0xe3,0x68,0xda,0x90,0xed,0x3c,0xa7,0x85,0x31,0xa9,0xb6,0x6c,0x27,0x8b,0xad, + 0x8c,0x4a,0xb4,0xf3,0x9c,0x3b,0x36,0x19,0x5a,0xb6,0xf3,0x6b,0x4e,0x5d,0xeb,0xc4,0x4a,0xb8,0xf3,0x3b, + 0x61,0xf4,0xaa,0xb0,0x16,0xee,0xfc,0x9e,0xc9,0x40,0x6a,0xc2,0x9d,0xa7,0xf1,0x75,0x3c,0x65,0x35,0xdd, + 0xa6,0x78,0x47,0x6d,0xfd,0xb9,0x2a,0xb0,0x7d,0xfb,0x1b,0x92,0x9e,0xa7,0x1b,0x15,0x6a,0x40,0x70,0x97, + 0xc0,0xe7,0x0d,0xdd,0x51,0x56,0x05,0xe2,0x7b,0x09,0x6e,0x21,0x02,0xed,0x34,0x01,0x91,0xc9,0xa2,0x78, + 0x42,0x60,0x7b,0x97,0xcc,0x67,0x2b,0x70,0xb5,0xcb,0x7c,0x34,0xc4,0x58,0x22,0x1f,0x0b,0xf8,0xea,0x82, + 0x9f,0x1a,0xf8,0x6d,0x95,0xfe,0xd0,0x28,0x2f,0x88,0xa6,0x6b,0x93,0xfe,0x3c,0x11,0xb9,0x4f,0x7c,0xa7, + 0xd8,0xe7,0x7b,0xcc,0x1f,0x62,0x1f,0x83,0x6d,0xa6,0xf1,0x2c,0x79,0x7f,0x89,0xa9,0x25,0x2d,0x4d,0x1b, + 0xa1,0xcf,0xd3,0x0c,0xa2,0xb3,0x34,0x8a,0x72,0xda,0xcc,0x34,0xb6,0x26,0xde,0x26,0xfe,0x91,0x12,0xaa, + 0x38,0x6a,0x6e,0x95,0x03,0x55,0xc8,0xd6,0x60,0x4a,0x0b,0xff,0xda,0x17,0x65,0x43,0x12,0xf4,0xc4,0x96, + 0x4d,0xd4,0x80,0xc3,0x2a,0x26,0x64,0x3d,0x9d,0x9e,0x4b,0xa2,0x94,0xc1,0x14,0x67,0x32,0xdd,0x0e,0x71, + 0x67,0x58,0x09,0x91,0x0d,0x55,0x04,0x5c,0x8c,0xeb,0x39,0x9a,0x70,0x1e,0x5d,0x95,0x51,0x1e,0x11,0x0e, + 0xe4,0x59,0xf0,0x25,0x0b,0xd2,0xc2,0xc8,0x27,0x62,0xb9,0x3f,0xd0,0xd4,0x38,0xb6,0x52,0x0d,0x5c,0x23, + 0xba,0x43,0xe7,0x79,0xbd,0x16,0x71,0xfa,0x54,0x84,0x56,0x30,0xe2,0xdd,0xee,0x2c,0x93,0xa8,0x55,0x44, + 0x44,0xf9,0xd4,0xf3,0x7b,0x7b,0x64,0x17,0xf1,0x39,0x6e,0xbf,0x2b,0x4c,0xa6,0xd7,0x79,0x27,0xf3,0x95, + 0x71,0x41,0x8a,0x43,0x54,0x5f,0x82,0xb1,0xf2,0x3c,0xed,0x31,0xf8,0x1d,0x42,0x1e,0x53,0xba,0xe4,0xd5, + 0xd5,0x22,0xd7,0xe8,0x39,0x11,0x94,0xc9,0x2c,0x99,0x8e,0x81,0xb0,0x3b,0x3f,0xc6,0x9d,0xcb,0x05,0xad, + 0xa3,0xd5,0x5a,0xd6,0x38,0x42,0x63,0xdc,0x04,0xb8,0x15,0x0c,0xff,0x28,0x4b,0x7f,0x99,0x52,0x22,0xcd, + 0x69,0x9c,0x2f,0x2e,0xb1,0x1c,0x65,0x56,0x62,0xe8,0x63,0x91,0x0f,0x45,0xb8,0x76,0x69,0x11,0x9b,0xe2, + 0x21,0x6b,0x8f,0x41,0x79,0x30,0x65,0xab,0xae,0x63,0xab,0x9c,0x6c,0x9f,0x2a,0xbb,0xb9,0x05,0x68,0x9c, + 0x96,0x28,0xa6,0x6b,0xb5,0x21,0x23,0xfa,0x75,0x31,0xeb,0x5c,0x24,0x4c,0x09,0xd0,0x11,0xc7,0x8a,0x30, + 0x01,0x41,0xc5,0xae,0xa3,0xd1,0x45,0x79,0x0d,0x92,0x95,0x66,0xe7,0x23,0xc5,0xc2,0x43,0x2c,0x1f,0x2e, + 0x17,0xbc,0xac,0x1d,0x02,0xdb,0x1c,0x17,0x36,0x2f,0x47,0xb1,0x55,0x6c,0xf4,0x9b,0x69,0x50,0x0b,0x8e, + 0xbe,0x8f,0xcf,0xf3,0x05,0x51,0x80,0x95,0xf0,0xe8,0xa2,0x26,0x3c,0xa2,0x35,0x65,0x00,0x63,0x01,0x0e, + 0x71,0xb5,0xb4,0x64,0x31,0x1d,0xff,0x3f,0x01,0x73,0x51,0xba,0x31,0x4d,0x62,0x24,0x09,0x00,0xa9,0x52, + 0xf2,0x3e,0x65,0xd8,0xbd,0x4e,0x66,0x98,0xb6,0xb5,0x57,0xa8,0x06,0xcd,0x7c,0x9a,0x10,0xfd,0xf3,0x67, + 0xf2,0x1e,0xf9,0xd7,0x31,0x4d,0xfb,0x1a,0xb0,0x4b,0x3f,0xae,0xe2,0x58,0x51,0xa2,0xe7,0x70,0xc0,0xb5, + 0x29,0x48,0xca,0xe3,0xed,0x62,0x24,0xc8,0x51,0xee,0x16,0x24,0x45,0x57,0x5b,0x04,0x49,0xef,0x40,0xca, + 0xd1,0x38,0xc6,0x5a,0x94,0x84,0xbe,0xb6,0x0a,0x92,0x9a,0x92,0xa4,0xf7,0xe3,0xba,0x24,0x29,0xfe,0x98, + 0x20,0x29,0x82,0x89,0x02,0x9d,0x03,0x82,0x2b,0x46,0x50,0x7f,0x41,0x9e,0x74,0x9e,0xbc,0xbf,0x8e,0x73, + 0x86,0xc4,0x4f,0x11,0x29,0xfd,0x2a,0x54,0x78,0x9b,0x48,0x29,0xb5,0x44,0x4a,0x4f,0x09,0xbc,0xc6,0x65, + 0x3c,0x25,0x84,0x32,0xb6,0xc4,0x4a,0x78,0x56,0xb7,0x13,0x0d,0xbf,0x65,0x97,0x87,0x60,0xa9,0x2a,0x48, + 0x5b,0x7e,0x11,0xe1,0x40,0xd2,0xb1,0x3b,0x8f,0x0a,0x42,0x28,0xe0,0x28,0x84,0x1b,0x8b,0x5b,0x25,0x4d, + 0xbf,0x67,0x31,0x4f,0xe7,0xaf,0x4b,0x9a,0x2c,0xc6,0xf3,0x0e,0x09,0x53,0xad,0x65,0x1b,0x7d,0x30,0x9a, + 0xb0,0xaf,0x32,0x22,0xf2,0xa7,0xff,0x1d,0x52,0xa6,0xcb,0x59,0xf6,0x7f,0x96,0x90,0xe9,0x09,0xb0,0x71, + 0xce,0xbc,0x20,0xc1,0x1a,0x61,0x74,0xc1,0x16,0x4b,0x3e,0xfa,0x75,0x22,0x99,0x8e,0x3e,0x73,0x7f,0xaa, + 0x4c,0xa9,0xee,0x9a,0x0b,0xc5,0x4a,0xa0,0x2c,0x44,0x4d,0x72,0xa5,0xcc,0x01,0x15,0x54,0x83,0x80,0xb7, + 0x64,0xec,0xfd,0xa7,0x60,0x3f,0x23,0x71,0xba,0x02,0x2e,0x50,0x43,0xa4,0xe2,0x5c,0x6e,0x4c,0xbd,0x42, + 0xba,0x74,0x89,0x76,0x95,0xcc,0xa9,0xd0,0x42,0x27,0x41,0x89,0xa0,0x11,0x70,0x01,0x9b,0x29,0x01,0xf2, + 0x3e,0x4d,0xec,0x04,0x8c,0xc6,0x22,0x45,0x85,0x84,0x99,0x9b,0xd0,0x13,0x06,0xde,0x1f,0xdf,0x2d,0x7c, + 0x02,0xe3,0xa6,0x78,0x61,0x23,0x78,0x52,0x77,0x98,0x3a,0x09,0x9b,0x32,0x27,0xd4,0xb1,0x58,0x13,0xc5, + 0x18,0x31,0x52,0x68,0xa9,0xa9,0x65,0x34,0x56,0x4f,0x77,0x55,0xa9,0x4b,0x38,0x50,0xb1,0x46,0x53,0xde, + 0x51,0xbb,0x29,0xe6,0x40,0xfd,0x26,0x85,0xfc,0xb1,0x36,0x36,0xc4,0x51,0x9f,0x30,0x5f,0xe6,0xec,0x1b, + 0x42,0xa9,0xbb,0x26,0xac,0xea,0x6c,0xca,0xa6,0x50,0xd1,0xc6,0x09,0xf5,0xe1,0x35,0x25,0x53,0xdf,0xb1, + 0x88,0x10,0xf4,0x6d,0x5a,0x54,0xe8,0x95,0x01,0x7e,0x8b,0x78,0x8a,0x17,0x14,0x37,0xe0,0x47,0x46,0xd5, + 0x94,0x50,0xfd,0x54,0x61,0x41,0x4b,0x24,0x95,0x6a,0x6a,0x67,0x6e,0x2d,0xdd,0x5f,0xd8,0x3d,0x7b,0xf9, + 0xfe,0xf2,0xf6,0x49,0x23,0xeb,0xf5,0xba,0x0a,0x61,0xc2,0xb2,0x9c,0x27,0xf3,0xb9,0x51,0xcd,0x82,0x24, + 0x4e,0x79,0xba,0xaf,0xfc,0xc7,0x44,0xcb,0x84,0xee,0xdf,0x2c,0xef,0xcd,0x08,0x77,0x2c,0xa2,0x69,0xdc, + 0x74,0xe6,0xe2,0xf0,0x6d,0xa7,0x5d,0xc3,0x18,0x53,0x7a,0xaf,0xaf,0x9a,0x73,0x6f,0x63,0xba,0xab,0xfe, + 0x46,0xc3,0xa7,0x9b,0x9f,0x9a,0x0e,0x62,0x9f,0x5d,0xad,0xdc,0xa6,0x34,0x97,0x49,0xa2,0xd6,0x90,0x0d, + 0xac,0xb4,0x34,0x6b,0xe7,0xd0,0x2f,0x44,0x42,0xb4,0x73,0xa4,0xbe,0x64,0x77,0xe8,0xa7,0x2a,0xf3,0x82, + 0xc0,0x6d,0x84,0x71,0x05,0xce,0x4a,0x6f,0xfb,0xdb,0x3c,0x9b,0x32,0x96,0xa5,0x62,0x72,0xf6,0x8f,0xa3, + 0x73,0xc4,0x0f,0x11,0xa9,0x87,0xd6,0x69,0xba,0xad,0xe4,0x73,0xaa,0x31,0x96,0x3a,0xe9,0x6c,0x3b,0x71, + 0x5d,0x97,0x45,0xcd,0x83,0xdb,0x58,0xf1,0x58,0xd4,0x45,0x42,0xf4,0xd6,0x61,0x8f,0xff,0xab,0x84,0x4e, + 0xb5,0x12,0x4a,0x30,0x73,0x58,0x2f,0xba,0x56,0xf0,0x43,0x7d,0x18,0x10,0x42,0xc0,0xb6,0x4a,0x6c,0x02, + 0xde,0xcf,0x6e,0xa7,0xac,0xb3,0x85,0x62,0x8c,0xa6,0x8b,0xc3,0x95,0x96,0x70,0x43,0xb5,0x3a,0xf1,0x36, + 0x06,0x75,0x4b,0x7b,0xe3,0x78,0x46,0x24,0xd6,0x46,0xd3,0x75,0xde,0xc9,0xd0,0x5d,0x5c,0xce,0xe6,0x89, + 0xb0,0x65,0xa5,0x99,0x0b,0x93,0xab,0x5c,0xc6,0x10,0xab,0xd2,0x09,0x88,0xd4,0x1d,0x5e,0x0f,0xfe,0x6d, + 0x11,0x7d,0xfc,0x5b,0x53,0x7a,0x6c,0x6b,0x6f,0xa8,0xb4,0x8a,0x16,0x12,0x1b,0x47,0x8b,0x06,0xfa,0xd2, + 0x27,0xda,0x53,0x01,0x0f,0x81,0x8b,0x74,0x49,0xf0,0x4f,0x88,0x3c,0x1e,0x13,0xb9,0x21,0x39,0xf1,0x18, + 0xa4,0x84,0x8c,0x79,0xae,0xc8,0x05,0x29,0x7a,0x7d,0x85,0x8b,0xdf,0x7c,0xd3,0x85,0x2e,0x5d,0x5b,0x57, + 0xb6,0xce,0xac,0x6e,0x65,0x4e,0xb1,0xef,0x5e,0xda,0x7e,0x2d,0x22,0xc3,0xec,0xf4,0x37,0xbb,0x26,0x08, + 0xb0,0x30,0xc8,0x80,0xbf,0x3b,0x83,0x31,0x40,0x03,0x2a,0x49,0x0e,0xe7,0xe4,0x31,0x9e,0xf2,0x96,0xb1, + 0x4e,0xa0,0x65,0x67,0x87,0x7c,0x1b,0x51,0x6a,0x95,0xe7,0xb0,0xb2,0x67,0x9f,0x1e,0xd4,0x52,0xc1,0x76, + 0x4c,0x3c,0x2a,0x66,0x68,0xe1,0xb1,0xd6,0x75,0xf8,0xd3,0xd1,0xbe,0xc5,0x94,0x02,0xa1,0x1e,0x0b,0xcc, + 0xfe,0x2f,0xb4,0x65,0xff,0x91,0x84,0x3b,0x2e,0x7b,0xe6,0xf8,0x98,0x38,0x86,0x79,0xf9,0xb2,0x71,0xf2, + 0x60,0x11,0xd8,0x6b,0x22,0x68,0x4e,0x54,0x42,0x56,0x5e,0x04,0x76,0x6a,0x04,0xb5,0x6d,0x84,0x24,0xb4, + 0xce,0xb2,0x8c,0x79,0xe7,0xa8,0xdf,0xd0,0x1e,0x66,0x2b,0xc9,0xc3,0x7e,0xf6,0xe8,0xe8,0xe1,0x43,0xfa, + 0xd3,0x0d,0x8f,0xbe,0xf4,0x94,0xcb,0xca,0x4c,0xfc,0x16,0x64,0xe1,0xfe,0x7d,0x64,0x3d,0x0a,0xef,0x9b, + 0x12,0x89,0x29,0x51,0xf6,0xaa,0x95,0x0d,0x73,0xea,0xb3,0xb6,0xb4,0x61,0x42,0x29,0xd6,0x1d,0xef,0x7a, + 0xbd,0xf2,0x22,0x4e,0x6d,0xd7,0x43,0x92,0x5f,0x5d,0x71,0x5b,0x8b,0xc8,0x55,0xb6,0x35,0xdb,0xc6,0xf4, + 0x5b,0x0b,0xd5,0xf1,0xf9,0xf6,0xae,0xb0,0x62,0xad,0xb9,0x45,0x99,0xcd,0x5b,0x37,0x46,0x61,0x31,0x5a, + 0xe1,0xb5,0x67,0xfd,0xe7,0x2b,0x15,0xd4,0x00,0x21,0xc5,0xae,0x5f,0xdb,0x28,0xb8,0xcd,0x57,0x2e,0x03, + 0x5b,0x5a,0x03,0xb6,0xf0,0x56,0xe1,0x78,0x42,0xe4,0x42,0x34,0x95,0x6b,0x15,0x0f,0x3b,0xdd,0x84,0xca, + 0xbd,0xbd,0xd1,0x8c,0xb0,0x1d,0xbe,0xe9,0x2a,0x76,0x5b,0x4a,0x20,0x8a,0xe1,0x26,0x30,0x17,0x71,0xa9, + 0xeb,0x58,0xf3,0x6d,0x8c,0x44,0xd0,0xc1,0x96,0xa3,0xb0,0xf6,0xbf,0x8c,0x1f,0xc0,0x39,0x64,0x32,0x8e, + 0xdb,0xe7,0xa9,0xac,0x92,0x5a,0x9a,0xe4,0xd9,0x6c,0x64,0xaa,0x09,0xb9,0xb5,0x19,0xb5,0x97,0x52,0x96, + 0x16,0xed,0x23,0xc3,0xa0,0x88,0x2d,0x9d,0xc5,0x84,0x3f,0xf8,0xe9,0xac,0xe1,0xd1,0x5a,0x53,0xb6,0xb3, + 0x0c,0x51,0x7f,0x94,0x8a,0xb1,0xe3,0x70,0xfc,0x63,0x42,0x49,0x73,0xca,0x8e,0x07,0xce,0x0f,0xc7,0xc4, + 0x17,0xea,0x9f,0x1d,0x04,0x80,0xeb,0x38,0xdd,0xaa,0x40,0x4f,0x5d,0x3e,0x48,0x61,0xd2,0x7a,0x00,0x8d, + 0x37,0x9d,0xeb,0x04,0xc6,0x2b,0xbe,0x8c,0xb4,0x09,0x0d,0x70,0x79,0xed,0x96,0x5e,0xd7,0x39,0x4d,0x4f, + 0x53,0xa7,0x9b,0xfb,0xec,0x31,0xdd,0xa6,0x8e,0x3f,0xaa,0xd9,0x1d,0x7d,0x48,0x32,0x76,0x03,0xe5,0x3a, + 0x07,0xd1,0x3c,0x39,0x50,0x97,0xab,0xd3,0x04,0xe1,0xb6,0xb0,0x6f,0xa5,0xf2,0x66,0x4d,0x43,0xd0,0x4a, + 0xd2,0x92,0x44,0xf0,0xdb,0x53,0xfe,0xfb,0x7b,0xf5,0x05,0xec,0x81,0xfc,0x84,0x6f,0x2d,0x06,0x48,0xfb, + 0x80,0x3b,0x9e,0x1a,0xb6,0x45,0xb3,0x7e,0xd6,0xc8,0xab,0xeb,0xef,0x73,0x07,0x5f,0xd5,0xfc,0x2b,0xe3, + 0xb7,0x94,0xd4,0xf4,0x14,0x14,0xed,0xfc,0x59,0xc3,0x57,0x4f,0xe3,0x9f,0x39,0x74,0xa9,0xf5,0x57,0x86, + 0xad,0x14,0x72,0xf4,0x90,0x6b,0xe4,0xee,0x67,0x0d,0x5c,0x13,0x21,0x07,0xac,0xb1,0xda,0x32,0x7e,0x78, + 0xe1,0x69,0x9f,0x82,0x46,0x5e,0x86,0x1c,0x92,0xe4,0x9e,0xfa,0xb9,0x5a,0x6d,0x92,0x40,0xaa,0x44,0x3d, + 0x75,0xb5,0x3a,0xac,0xd1,0x42,0x9b,0x0e,0x86,0x4c,0x35,0x29,0xe4,0xd9,0xa1,0x76,0xfb,0xf9,0xa3,0x46, + 0xb6,0x89,0xb7,0x6b,0x87,0x46,0xae,0x95,0x38,0xc9,0x87,0x84,0x6d,0x4d,0x79,0x71,0x6e,0x7d,0xce,0xcf, + 0xc0,0x29,0x68,0x91,0xa4,0x57,0xfd,0xb0,0x46,0x87,0x10,0x97,0x94,0x67,0xfd,0x42,0xa6,0x9e,0x7d,0x52, + 0x9b,0xb8,0xb9,0x1d,0xeb,0x15,0x1e,0x1f,0x0e,0x0e,0x91,0xa2,0xa6,0x6d,0x5f,0x9a,0x1b,0x05,0x4d,0x31, + 0xa2,0x6d,0xae,0xe4,0x95,0xc8,0x3d,0xda,0x4b,0x68,0x2a,0x37,0xc5,0x9b,0xc9,0x6f,0x71,0x7c,0xe9,0x3d, + 0xa6,0xb1,0xa9,0xa7,0x22,0xf7,0xfe,0x46,0xd6,0xb5,0x79,0x2f,0x72,0x1f,0x6e,0xd6,0xd3,0x6f,0x46,0xee, + 0xd7,0x1b,0x79,0x13,0x79,0x36,0x72,0x8f,0xbe,0xda,0xc8,0x2a,0xf4,0xe3,0x91,0xfb,0x60,0xb3,0xc3,0x42, + 0x5e,0x90,0xdc,0xaf,0x36,0xba,0x83,0xcb,0xf1,0x6a,0xc1,0x31,0xaf,0x10,0x36,0x61,0x9f,0x0e,0xf0,0x36, + 0x84,0x1b,0xb0,0x6f,0xb0,0x69,0x7f,0x0d,0xf0,0x85,0xa8,0xff,0xdc,0xa3,0x6b,0xe6,0x22,0xd5,0xff,0xca, + 0x19,0xae,0x8f,0xbe,0x42,0x3f,0x4c,0xc6,0x7e,0x1e,0xf6,0x61,0x9d,0xff,0xf6,0xc3,0xdb,0x76,0x92,0x3c, + 0xdb,0x0e,0x68,0x07,0x7e,0xed,0xc1,0x67,0xb1,0x5b,0x76,0x76,0x13,0x74,0xd8,0x8f,0xf4,0xa1,0x52,0x67, + 0x29,0xb2,0xc3,0x7e,0x23,0x03,0x36,0xbe,0xec,0x9d,0x38,0x1f,0x10,0x15,0x11,0x14,0x3b,0xf4,0x05,0xeb, + 0xcb,0x90,0x83,0xea,0xd6,0xdc,0xce,0x13,0x93,0xea,0x27,0xdd,0xb0,0x58,0xe3,0xb2,0x8c,0x39,0xb8,0x71, + 0xdc,0xab,0x11,0xef,0x12,0x88,0x71,0x32,0xcb,0xe0,0x05,0xff,0x40,0x07,0x44,0xf0,0xac,0x62,0x0c,0x2d, + 0xeb,0x0d,0xb1,0x48,0xfb,0x2a,0xc5,0x8a,0x00,0xe6,0x88,0x12,0xf2,0x89,0x59,0xca,0xaa,0xcd,0x89,0xb7, + 0xda,0xbc,0x73,0xfc,0x8a,0xe7,0xb2,0x6f,0x94,0x9e,0x4e,0xad,0x31,0x61,0xb5,0x12,0x56,0x86,0x61,0xcd, + 0x6a,0x05,0x54,0xa2,0x30,0x6b,0xf5,0x1c,0x4a,0xa9,0x38,0xb7,0x5a,0x96,0x4e,0x15,0x56,0xae,0x96,0x85, + 0x14,0x70,0x76,0xb5,0xc4,0x64,0x6e,0x33,0x79,0xf5,0x5e,0x4c,0xba,0xe1,0xfb,0x6a,0xf9,0x2a,0x71,0xdd, + 0x04,0x1f,0x04,0xef,0xf9,0x44,0x68,0x6e,0x6c,0x0b,0x81,0xf2,0x06,0x09,0x5d,0x6d,0x04,0x11,0xca,0x7a, + 0x27,0xdb,0x6f,0x5a,0xc3,0x7b,0x99,0x5d,0x2c,0x3f,0xb6,0x8b,0x5a,0x2b,0xad,0x54,0xd7,0x69,0xb3,0xef, + 0x94,0xe9,0xf7,0x36,0xba,0xcb,0xa9,0xe9,0xe4,0xe0,0x00,0xea,0xf9,0x96,0xad,0xf3,0x2d,0x6b,0xf3,0x35, + 0x57,0x70,0x1b,0xbb,0x50,0x9b,0x6b,0x2b,0x5b,0xb7,0x15,0x76,0x15,0x47,0x41,0x7c,0xde,0x34,0xa6,0x23, + 0x69,0x12,0x0c,0xc1,0xae,0xb9,0x72,0xbb,0x4b,0x15,0xe7,0xa0,0x5e,0xbb,0xdb,0xf5,0xeb,0x09,0x2a,0x16, + 0xde,0x51,0x60,0x92,0xcd,0x70,0x42,0xe7,0xc0,0xb1,0x42,0x1a,0x74,0xee,0xb7,0x96,0xd9,0xaf,0x95,0x79, + 0xd0,0x5a,0xe6,0xf4,0xb4,0x56,0xe8,0x61,0x6b,0xa1,0x95,0xe3,0x37,0x67,0xba,0x5e,0xfb,0xf7,0xbf,0x3c, + 0xe4,0xe5,0xda,0xe4,0xb5,0xec,0xd5,0x62,0xbe,0xc0,0x2c,0x82,0xb2,0x1e,0xaf,0x96,0x88,0x5a,0x20,0xcc, + 0xa8,0x59,0x65,0x3c,0x92,0x08,0x85,0xde,0xe6,0x8c,0xb6,0x12,0x3b,0xe9,0x63,0xaa,0x2f,0x71,0xed,0xf5, + 0xcc,0x56,0x0a,0x72,0x4c,0x50,0xc1,0x2d,0x75,0x85,0x17,0x50,0xab,0xac,0x22,0xfe,0xdd,0xd7,0x91,0xfd, + 0xf4,0x91,0x23,0x48,0xeb,0xab,0x6d,0x50,0x0b,0xc4,0x7f,0x4c,0x58,0x41,0xb1,0xce,0xd7,0x2b,0x5c,0xaf, + 0x8c,0x31,0x48,0x1c,0xc1,0x40,0x87,0x01,0x6a,0x1b,0xe7,0xba,0x7d,0x09,0x8e,0xe3,0x0f,0xe5,0x5f,0x5b, + 0x86,0x0e,0x1f,0x97,0xcd,0x62,0x78,0xc1,0xd5,0x62,0x88,0xb1,0xe3,0x7d,0xe6,0xfa,0x7c,0x42,0xdb,0x50, + 0x17,0xa3,0x76,0xd5,0x7a,0x7d,0x42,0x05,0xd1,0x26,0xd3,0x55,0xee,0x7f,0x4a,0x95,0x9a,0x92,0x99,0xae, + 0xa9,0x57,0xbe,0xb3,0x6d,0x2e,0xc9,0x5c,0xc3,0xf7,0x27,0x74,0x51,0xd3,0x54,0xd3,0x5d,0x7c,0xf9,0x19, + 0x35,0x13,0xd1,0x5c,0xd3,0x55,0x9b,0xdb,0x7f,0xd7,0xfe,0x54,0xa0,0x81,0xd8,0x3a,0x1b,0xd2,0xfe,0x8f, + 0x5f,0xa3,0x03,0x4b,0x48,0x10,0x6f,0x48,0xa2,0x98,0xfd,0x0f,0xb6,0xb3,0x73,0x07,0x4a,0x2e,0xfc,0x99, + 0xf4,0x55,0x35,0x97,0xcf,0x25,0xad,0x9a,0x03,0x6c,0xc3,0xd0,0x77,0xcf,0x08,0xd4,0x46,0xe3,0x95,0xa3, + 0xfd,0x9a,0xe2,0x43,0xa4,0x56,0xca,0x46,0xfd,0x87,0x2c,0xb5,0xb3,0xe5,0xe5,0xe1,0xa1,0x12,0x0d,0x42, + 0x62,0x0f,0x0f,0x0e,0xd0,0xa0,0xea,0xa7,0x2a,0x68,0xbd,0xeb,0x4c,0x12,0x18,0xab,0x1a,0xc9,0x22,0x2d, + 0xa6,0x0a,0x73,0xff,0xf4,0xe6,0x05,0x67,0xcb,0x38,0xbe,0x43,0x31,0x8e,0xa6,0x15,0x17,0xf0,0xda,0xa0, + 0x04,0x17,0x2c,0xce,0xa6,0x09,0x05,0x0f,0xbe,0x8a,0x1f,0xfa,0x59,0xfa,0x4b,0x5d,0x56,0x5f,0x73,0xed, + 0xdb,0x1c,0x18,0x93,0x5f,0x39,0x8c,0x62,0xdd,0xa3,0xc3,0xc3,0x2f,0x04,0x33,0xc7,0xe3,0x03,0xc4,0xdd, + 0x2c,0x23,0x84,0x2a,0xeb,0x6f,0x5c,0xbb,0xd5,0xbb,0x0e,0x1c,0x4d,0xfe,0xef,0xbf,0x73,0xeb,0x9b,0xd1, + 0x7e,0xed,0x36,0xa6,0x65,0xc9,0x42,0xf1,0x7d,0xe7,0xca,0xd2,0xaa,0x52,0xbd,0xb8,0x64,0x07,0xe7,0x6b, + 0x91,0x27,0x2b,0xb9,0xea,0x5d,0xb7,0x35,0xc2,0x09,0xb6,0x88,0x63,0xc1,0x0a,0x4a,0xfc,0x85,0x86,0x44, + 0x56,0xd8,0xff,0xa6,0x98,0xb6,0x5d,0x1a,0xa7,0x21,0x54,0x49,0x27,0xe9,0x9a,0x3c,0x3c,0xf4,0xbc,0x75, + 0xed,0x3d,0xad,0x7d,0x78,0xec,0xc5,0xde,0xea,0x05,0x50,0xd9,0xd2,0x2d,0x9e,0x31,0xda,0x85,0xc9,0x87, + 0x16,0x09,0xbe,0x19,0x0f,0x8b,0x43,0x61,0xf1,0x2a,0x99,0x28,0xf5,0xc4,0x26,0xd4,0x63,0x4e,0x35,0x28, + 0xfd,0xb5,0xd7,0xd7,0x5c,0x40,0x29,0x5e,0x7e,0x35,0x1b,0x8f,0xc6,0xb7,0xb6,0x99,0x77,0x43,0x95,0x7a, + 0x92,0x0e,0x25,0x9e,0x52,0xff,0x23,0x3c,0x44,0x7e,0x50,0x6f,0x43,0x02,0xcb,0x26,0x3a,0xf2,0xcd,0xd6, + 0x6e,0x94,0x78,0xbb,0xd9,0x15,0xc6,0xbc,0x45,0xd6,0xbe,0x49,0x8d,0x8a,0xf9,0xf5,0x6d,0x43,0xf0,0x71, + 0x14,0x3f,0x90,0x88,0x59,0x08,0x6f,0xff,0x6f,0x50,0xda,0xd6,0x9e,0x7f,0x8c,0xca,0x56,0xbb,0x0d,0x99, + 0x74,0xf3,0x15,0x75,0x3b,0x20,0x4b,0x01,0x81,0xcc,0xe6,0xcb,0x59,0x45,0x79,0x33,0x8e,0x87,0x6e,0x40, + 0x11,0x1c,0x1c,0xe0,0x75,0x46,0xa9,0x03,0xd0,0xe4,0x0b,0x56,0x09,0x40,0x1a,0x2f,0xc5,0x34,0xce,0x20, + 0x2e,0x3d,0x78,0x5f,0x30,0x83,0x25,0xce,0x5d,0x83,0x5b,0xad,0x94,0x54,0x75,0xe9,0x5f,0xc6,0xe0,0x49, + 0x84,0x7c,0xef,0x55,0x2f,0x3e,0xeb,0x8d,0x95,0xda,0xce,0xd2,0xe2,0xe4,0xd2,0x7d,0x58,0xc0,0x33,0x76, + 0x2d,0xc1,0x44,0xd7,0x33,0xb2,0xf6,0x5a,0x36,0x7c,0x00,0xd1,0x40,0xaf,0xe2,0x32,0xbf,0x31,0x03,0xea, + 0x9b,0xc1,0xcc,0xa2,0x12,0x8e,0x81,0xa2,0xd2,0xaf,0x92,0x08,0x9b,0xa4,0xf8,0xf7,0x93,0xe5,0x17,0xf5, + 0x1d,0xd8,0xb2,0x6f,0x9b,0x2b,0x6e,0x31,0x4a,0x9f,0x20,0xdf,0x63,0x5f,0xbd,0xe6,0x1e,0xb2,0xf8,0xde, + 0x7e,0x75,0x6c,0x8d,0xa4,0xae,0x21,0x8b,0xd1,0xd4,0x5e,0x53,0x5c,0xd7,0x2c,0x56,0xcf,0xae,0xbf,0x8d, + 0xea,0x43,0xd5,0xac,0x51,0x97,0xc9,0xa5,0x5a,0x8e,0x90,0x87,0xdb,0x8a,0xd2,0xb1,0xeb,0x97,0x1f,0x11, + 0xce,0xe5,0x96,0x70,0xae,0x26,0x99,0xcb,0x6d,0xf9,0x99,0x11,0xcb,0xe5,0xd5,0xe4,0x30,0xa5,0xbc,0x21, + 0x64,0xcb,0x6b,0x0f,0x57,0x94,0x6d,0x04,0x77,0x7e,0x25,0xc0,0x0a,0xdc,0xbc,0x27,0x12,0xb8,0xc1,0x51, + 0x70,0xe8,0xad,0x10,0xb3,0x50,0xc4,0x6e,0x83,0xfb,0xea,0xb7,0x91,0xb5,0x0d,0x1e,0xea,0x12,0x4a,0xc0, + 0x36,0xf8,0x5a,0x25,0x88,0x54,0x6d,0x70,0xf4,0x95,0xfa,0xad,0x45,0x69,0x83,0x07,0xba,0x11,0x91,0x9f, + 0x0d,0xbe,0x42,0x13,0x74,0x74,0x37,0x90,0x4b,0x5d,0x58,0xeb,0x97,0xff,0x2e,0xcb,0xde,0x10,0xaa,0x7d, + 0x9c,0x69,0xa7,0x1b,0x91,0x8e,0xae,0xfd,0xc4,0xdd,0x7c,0xe1,0xd9,0xb2,0xf5,0x1b,0x3b,0x58,0x17,0xa8, + 0x56,0x12,0x54,0xc2,0x31,0x95,0xd8,0xf4,0xcb,0x87,0x0d,0xf1,0xa8,0x11,0x82,0xee,0x54,0x42,0xcf,0x1d, + 0x5b,0xc8,0xb9,0x63,0x09,0x35,0x77,0x8c,0x10,0x73,0xc7,0x92,0x59,0xee,0x18,0x11,0xa5,0x04,0xfd,0x90, + 0x70,0xad,0xad,0x53,0x8a,0x3f,0x3e,0x27,0x15,0xf5,0x25,0x46,0xd4,0x97,0x56,0x95,0x91,0x7f,0x4f,0x32, + 0xd5,0x14,0x4e,0xfa,0x1b,0x02,0xc7,0x7f,0x77,0xeb,0x37,0x84,0x8f,0x77,0x4b,0x6c,0xc6,0x75,0x89,0xe5, + 0xf6,0xed,0x97,0x11,0x7e,0x14,0x00,0xac,0x2d,0x9f,0x27,0x69,0x70,0xdf,0x1f,0x1b,0x4d,0x77,0x6b,0x67, + 0xb6,0xf4,0xb7,0xb1,0x37,0xcd,0x0e,0x6b,0xbb,0x03,0x1f,0x9d,0x09,0xa5,0x44,0x0c,0xee,0xad,0xcf,0xaf, + 0x8e,0xd3,0x47,0xb4,0x64,0x09,0x1a,0x90,0x76,0x43,0xa7,0xeb,0x68,0xb2,0xda,0xa2,0x2a,0xe2,0x83,0xaf, + 0x0e,0x3d,0x3f,0x91,0xa4,0xe8,0xbc,0xa0,0x71,0xfc,0x8f,0xaf,0x0e,0xb5,0x4c,0x16,0xd1,0xef,0xba,0x4e, + 0xe0,0xf8,0xc9,0xa3,0x23,0xdd,0xcc,0xa1,0xe3,0xf9,0x29,0x42,0x69,0xae,0x7d,0x0e,0x59,0x43,0x97,0x9f, + 0xd6,0x5f,0xb8,0x95,0x2d,0xda,0x5c,0x45,0x9b,0xea,0x04,0xb1,0x07,0xcd,0x58,0x0e,0xe4,0x5b,0x57,0x77, + 0xf8,0xfc,0xfa,0xc5,0xe7,0xf5,0xab,0xc2,0xfb,0x58,0xfd,0x1b,0x55,0x1f,0x7b,0x23,0xda,0xd4,0x1c,0x42, + 0xe7,0x6f,0x4e,0x37,0x86,0xef,0xa7,0xf5,0xff,0x07,0x0d,0xb3,0xd4,0xe3,0x07,0x09,0x02,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 5a0b2d6..e6b59b0 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 23; +const uint8_t VersionMetadata = 25; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+23"; -const char VersionCommitDate[] = "2018-01-18"; +const char VersionFullSemVer[] = "2.0.0-beta.1+25"; +const char VersionCommitDate[] = "2018-01-19"; #endif diff --git a/src/config.h b/src/config.h index 3ba54b2..a807777 100644 --- a/src/config.h +++ b/src/config.h @@ -34,4 +34,27 @@ static const uint16_t APButtonHoldTime = 5000; // the configurable NTP interval is used static const uint32_t TimezoneRetryInterval = 60000; + +// SSL takes quite a bit of memory (and I haven't been optimizing much), +// which seems to cause memory-related exceptions when getting the timezone +// information from Google's HTTPS API. Google requires HTTPS. The workaround +// is hosting a small proxy script on HTTP, which is included in the "hosted" folder +// of this project. Note that this completely defeats any security, and may +// cause your Google API key and location data to leak. My advice is simply to not +// specify your location too precisely :-) +// +// If you want to host your own version of the script because you don't trust +// that mine will not log anything, or want to disable the proxy script +// completely, change these definitions below. Also update platformio-buildflags.bat +// to enable SSL support in ESPAsyncTCP. +// +// If you can fix my sloppy code and get a direct SSL connection working, +// I'd be interested in the changes as well! +#define MapsAPIViaProxyScript + +#ifdef MapsAPIViaProxyScript +static const char* TimezoneProxyScriptHost = "api.x2software.net"; +static const char* TimezoneProxyScriptPath = "/timezone.php"; +#endif + #endif \ No newline at end of file diff --git a/src/main.triggers.h b/src/main.triggers.h index f247c4a..dbcf2f0 100644 --- a/src/main.triggers.h +++ b/src/main.triggers.h @@ -125,17 +125,21 @@ void updateTimezone() uint32_t timestamp = ntpClient->getEpochTime(); + #ifdef MapsAPIViaProxyScript + String request = String("GET ") + TimezoneProxyScriptPath + "?location=" + + #else String request = "GET /maps/api/timezone/json?location=" + + #endif String(systemSettings->latitude(), 7) + "," + String(systemSettings->longitude(), 7) + "8×tamp=" + String(timestamp); - _d("Timezone :: request: "); - _dln(request); - if (systemSettings->mapsAPIKey() != nullptr) request = request + "&key=" + systemSettings->mapsAPIKey(); + _d("Timezone :: request: "); + _dln(request); + request = request + " HTTP/1.0\r\nHost: maps.googleapis.com\r\n\r\n"; client->write(request.c_str()); }, nullptr); @@ -143,7 +147,11 @@ void updateTimezone() _d("Timezone :: available heap: "); _dln(ESP.getFreeHeap()); + #ifdef MapsAPIViaProxyScript + if(!timezoneClient->connect(TimezoneProxyScriptHost, 80)) + #else if(!timezoneClient->connect("maps.googleapis.com", 443, true)) + #endif { _dln("Timezone :: failed to connect to host"); diff --git a/web/dist/bundle.js b/web/dist/bundle.js index a2073a8..59cfe38 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===u.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===u.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,l){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+u(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,l,r),p=null}},p.onerror=function(){l(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){l(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),l(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=u(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function u(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=x(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=x(l.text+c):""!==c&&f.push(x(c)):X(c)&&X(l)?f[u]=x(l.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function je(e){return e&&(e.Ctor.options.name||e.tag)}function De(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=je(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,l(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=qr=0;!ct();)ut(Ur=st())?lt(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),ut(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){qr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,qr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Br}function ut(e){return 34===e||39===e}function lt(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=Kr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),Kr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||Kr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),K(i,o,ft,dt,r.context),Kr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};t(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)e(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=e(o)?"":String(o);d=l,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=l)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?xi(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Si(c,s,"");for(s in p)(a=p[s])!==f[s]&&Si(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&l(e._transitionClasses,t),bt(e,t)}function xt(e,t,n){var r=Ct(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Di?Fi:Mi,c=0,u=function(){e.removeEventListener(s,l),n()},l=function(t){t.target===e&&++c>=a&&u()};setTimeout(function(){c0&&(n=Di,l=a,f=o.length):t===Ii?u>0&&(n=Ii,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Di:Ii:null)?n===Di?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Di&&Wi.test(r[Li+"Property"])}}function At(e,t){for(;e.length1}function jt(e,t){!0!==t.data.show&&$t(t)}function Dt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Wt(e){return!e.componentInstance||e.data&&e.data.transition?e:Wt(e.componentInstance._vnode)}function Bt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Bt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function qt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Kt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',xo.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,xn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Cn=function(e,t,n){return!1},An=function(e){return e},Sn="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},Pn=/[^\w.$]/,jn="__proto__"in{},Dn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=Dn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Wn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Bn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(Dn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Dn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Dn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);qn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){l(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tSr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);Cr||(Cr=!0,H(ue))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){W(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};Ce(Ae.prototype);var jr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;jr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Wr),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:Kn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Br,Vr,Ur,Hr,zr,qr,Kr,Jr,Gr=u("style,class"),Xr=u("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){Be(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Be(e,!0),Be(t))},destroy:function(e){Be(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:Ke,update:Ke},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},xi=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Ci=/^--/,Ai=/\s*!important$/,Si=function(e,t,n){if(Ci.test(t))e.style.setProperty(t,n);else if(Ai.test(n))e.style.setProperty(t,n.replace(Ai,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&C.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),t(l)&&t(u=l.hook)&&t(u=u.postpatch)&&u(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Ui),v(Pe.options.components,Ki),Pe.prototype.__patch__=Dn?Bi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&Dn?We(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(xi(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),jo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});l+=e.length-h.length,e=h,r(d,l-f,l)}else{var v=e.indexOf("<");if(0===v){if(lo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(uo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=l;n(b[0].length),r(b[1],_,l);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:l};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(co.test(k)||ao.test(k)||lo.test(k)||fo.test(k)||(x=k.indexOf("<",1))<0);)v+=x,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,u){var l=i&&i.ns||wo(e);Nn&&"svg"===l&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=Xe(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(e,t){u[t]=e}):Object.keys(l).forEach(function(e){u[e]=l[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;u[n]=e}),t(r.tag,i,a.i(s,c,u))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,l=E,h[C]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(t=e[u])||!function(){var t=e[u+1];if(l===P&&"'"===t||l===j&&'"'===t)return u++,r="\\"+t,h[C](),!0}()){if(i=d(t),(o=(s=L[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(l===D)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(t))return null;if("string"!=typeof(u=t[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(e,t,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(e,t,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(e,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,u=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[e].concat(o))}return this._warnDefault(c,e,u,r);var l},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(e){c.headers[e]={}}),o.forEach(["post","put","patch"],function(e){c.headers[e]=o.merge(s)}),e.exports=c},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){return r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]}),(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===hn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return gn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):G(c)&&G(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Fr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Ee(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==hn.call(n))&&e.test(t));var n}function De(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Pe(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Le(e,n){return{staticClass:Fe(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Fe(e,t){return e?t?e+" "+t:e:t||""}function Ne(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(b=e.charAt(y));y--);b&&Ti.test(b)||(p=!0)}}else void 0===o?(g=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==g&&t(),a)for(i=0;i-1?{exp:e.slice(0,Kr),key:'"'+e.slice(Kr+1)+'"'}:{exp:e,key:null};for(zr=e,Kr=Jr=Gr=0;!st();)ct(qr=at())?lt(qr):91===qr&&function(e){var t=1;for(Jr=Kr;!st();)if(e=at(),ct(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){Gr=Kr;break}}(qr);return{exp:e.slice(0,Jr),key:e.slice(Jr+1,Gr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function at(){return zr.charCodeAt(++Kr)}function st(){return Kr>=Hr}function ct(e){return 34===e||39===e}function lt(e){for(var t=e;!st()&&(e=at())!==t;);}function ut(e,t,n,r,i){var o,a,s,c,l;t=(l=t)._withTask||(l._withTask=function(){dr=!0;var e=l.apply(null,arguments);return dr=!1,e}),n&&(o=t,a=e,s=r,c=Xr,t=function e(){null!==o.apply(null,arguments)&&ft(a,e,s,c)}),Xr.addEventListener(e,t,Bn?{capture:r,passive:i}:r)}function ft(e,t,n,r){(r||Xr).removeEventListener(e,t._withTask||t,n)}function dt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(e){if(t(e[ki])){var n=Ln?"change":"input";e[n]=[].concat(e[ki],e[n]||[]),delete e[ki]}t(e[xi])&&(e.change=[].concat(e[xi],e.change||[]),delete e[xi])}(i),q(i,o,ut,ft,r.context),Xr=void 0}}function pt(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function ht(e){var t=vt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function vt(e){return Array.isArray(e)?m(e):"string"==typeof e?Si(e):e}function mt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=vt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ht(i.data))&&v(r,n);(n=ht(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=ht(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ei(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ei(c,s,null==a?"":a)}}function gt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function bt(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Ii(e.name||"v")),v(t,e),t}return"string"==typeof e?Ii(e):void 0}}function _t(e){Vi(function(){Vi(e)})}function wt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),gt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),yt(e,t)}function kt(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Bi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=Fi,u=a,f=o.length):t===Ni?l>0&&(n=Ni,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Fi&&Ui.test(r[Mi+"Property"])}}function Ct(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&St(t)}function jt(e,t,n){Dt(e,t,n),(Ln||Nn)&&setTimeout(function(){Dt(e,t,n)},0)}function Dt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Lt(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Lt(e){return"_value"in e?e._value:e.value}function Ft(e){e.target.composing=!0}function Nt(e){e.target.composing&&(e.target.composing=!1,Mt(e.target,"input"))}function Mt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Rt(e){return!e.componentInstance||e.data&&e.data.transition?e:Rt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Y(t.children)):e}function Bt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[bn(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ht(e){e.data.newPos=e.elm.getBoundingClientRect()}function zt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',So.innerHTML.indexOf(" ")>0}var pn=Object.freeze({}),hn=Object.prototype.toString,vn=l("slot,component",!0),mn=l("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,bn=d(function(e){return e.replace(yn,function(e,t){return t?t.toUpperCase():""})}),_n=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),wn=/\B([A-Z])/g,Tn=d(function(e){return e.replace(wn,"-$1").toLowerCase()}),kn=function(e,t,n){return!1},xn=function(e){return e},Cn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],$n={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:kn,isReservedAttr:kn,isUnknownElement:kn,getTagNamespace:g,parsePlatformTagName:xn,mustUseProp:kn,_lifecycleHooks:Sn},On=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,jn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=jn&&WXEnvironment.platform.toLowerCase(),In=Pn&&window.navigator.userAgent.toLowerCase(),Ln=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===Dn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===Dn,Wn=(In&&/chrome\/\d+/.test(In),{}.watch),Bn=!1;if(Pn)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Bn=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Un,Hn,zn=function(){return void 0===Un&&(Un=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Un},qn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Hn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(e){this.subs.push(e)},Xn.prototype.removeSub=function(e){u(this.subs,e)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tCr&&_r[n].id>e.id;)n--;_r.splice(n+1,0,e)}else _r.push(e);kr||(kr=!0,U(ce))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){R(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var $r={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};xe(Ce.prototype);var Er,Pr,jr,Dr,Ir={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=(a=e,s={_isComponent:!0,parent:br,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Ir.prepatch(o,o)}var a,s,c},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==pn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||pn,e.$listeners=n||pn,t&&e.$options.props){ir.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};Rr=Ee,(Br={}).get=function(){return $n},Object.defineProperty(Rr,"config",Br),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=$,Rr.delete=O,Rr.nextTick=U,Rr.options=Object.create(null),An.forEach(function(e){Rr.options[e+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Ur),Rr.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},Rr.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)ue(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Wr=Rr,An.forEach(function(e){Wr[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}),Object.defineProperty(Ee.prototype,"$isServer",{get:zn}),Object.defineProperty(Ee.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Ee.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=l("style,class"),Qr=l("input,textarea,option,select,progress"),ei=function(e,t,n){return"value"===n&&Qr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ti=l("contenteditable,draggable,spellcheck"),ni=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},oi=function(e){return ii(e)?e.slice(6,e.length):""},ai=function(e){return null==e||!1===e},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),li=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),ui=function(e){return ci(e)||li(e)},fi=Object.create(null),di=l("text,number,password,search,email,tel,url"),pi=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(si[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),hi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ue,update:Ue,destroy:function(e){Ue(e,vi)}},yi=Object.create(null),bi=[hi,gi],_i={create:qe,update:qe},wi={create:Je,update:Je},Ti=/[\w).+\-_$\]]/,ki="__r",xi="__c",Ci={create:dt,update:dt},Ai={create:pt,update:pt},Si=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),$i=/^--/,Oi=/\s*!important$/,Ei=function(e,t,n){if($i.test(t))e.style.setProperty(t,n);else if(Oi.test(n))e.style.setProperty(t,n.replace(Oi,""),"important");else{var r=ji(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&C.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:fi[e]=/HTMLUnknownElement/.test(t.toString())},v(Ee.options.directives,qi),v(Ee.options.components,Xi),Ee.prototype.__patch__=Pn?Hi:g,Ee.prototype.$mount=function(e,t){return e=e&&Pn?Re(e):void 0,r=e,i=t,(n=this).$el=r,n.$options.render||(n.$options.render=er),se(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,se(n,"mounted")),n;var n,r,i},Ee.nextTick(function(){$n.devtools&&qn&&qn.emit("init",Ee)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,eo=d(function(e){var t=e[0].replace(Qi,"\\$&"),n=e[1].replace(Qi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),to={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=rt(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=nt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},no={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=rt(e,"style");n&&(e.staticStyle=JSON.stringify(Si(n)));var r=nt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ro=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",lo=new RegExp("^<"+co),uo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Lo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ho.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(vo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(po);if(y){n(y[0].length);continue}var b=e.match(fo);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(lo);if(t){var r,i,o={tagName:t[1],attrs:[],start:u};for(n(t[0].length);!(r=e.match(uo))&&(i=e.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=u,o}}();if(w){!function(e){var n,i,u,f=e.tagName,d=e.unarySlash;s&&("p"===o&&oo(f)&&r(o),l(f)&&o===f&&r(f));for(var p=c(f)||!!d,h=e.attrs.length,v=new Array(h),m=0;m=0){for(k=e.slice(v);!(fo.test(k)||lo.test(k)||ho.test(k)||vo.test(k)||(x=k.indexOf("<",1))<0);)v+=x,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:go,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||xo(e);Ln&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Ge(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t,n,r,i=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(r=i,F.test(r)?(n=(t=i).charCodeAt(0))!==t.charCodeAt(t.length-1)||34!==n&&39!==n?t:t.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.formatter=this.$root.$i18n.formatter,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[C]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===j&&'"'===t)return l++,r="\\"+t,h[C](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?t:r,!1===a()))return;if(u===D)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c,l=this._path.getPathValue(t,i);if(Array.isArray(l))return l;if(r(l)){if(!n(t))return null;if("string"!=typeof(c=t[i]))return null}else{if("string"!=typeof l)return null;c=l}return c.indexOf("@:")>=0&&(c=this._link(e,t,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s,c=i.apply(void 0,o),l=c.locale||t,u=this._translate(n,l,this.fallbackLocale,e,r,"string",c.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[e].concat(o))}return this._warnDefault(l,e,u,r)},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){var n;(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file From c8bbf563f623b994f59910923a50e7384f372471 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Sun, 21 Jan 2018 11:30:49 +0100 Subject: [PATCH 25/43] Fixed #12: Time trigger activates after set time, not on Fixed incorrect host in Maps API proxy request --- src/assets/js.h | 4576 ++++++++++++++++---------------- src/assets/version.h | 2 +- src/main.triggers.h | 7 +- src/settings/triggers/time.cpp | 2 +- web/dist/bundle.js | 2 +- 5 files changed, 2291 insertions(+), 2298 deletions(-) diff --git a/src/assets/js.h b/src/assets/js.h index 9b76e20..c3116d1 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2299 +4,2287 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x77,0xdb,0x46,0xb2,0x2e,0xfa,0x57, - 0x24,0x1c,0x6f,0x19,0x18,0xb6,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0x7e,0x26,0x4e,0xfc,0x8a,0x2d, - 0x3b,0xc9,0x28,0x1a,0x2d,0x88,0x04,0x25,0xc4,0x24,0xc0,0x00,0xa0,0x64,0x45,0xe4,0xf9,0xed,0xb7,0xbe, - 0xaa,0x7e,0x01,0x84,0x9c,0x64,0xaf,0xbd,0xee,0xf2,0xb2,0x08,0x74,0x37,0xfa,0x59,0x5d,0x5d,0xef,0xde, - 0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x09,0xca,0xb3,0xdf,0xb2,0x49,0x13,0x24,0x49, - 0x73,0xbd,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0xbd,0xb7,0xb7,0x95,0xb3,0x28,0xa7,0xab,0x79, - 0x36,0x96,0x9f,0xa1,0x2e,0x97,0x34,0x61,0x14,0x07,0xa6,0x4e,0x57,0x78,0x9a,0xcd,0xf2,0x22,0xdb,0xdb, - 0x93,0xdf,0x61,0xba,0x98,0x8e,0xe5,0x31,0x3c,0x3e,0xa1,0x76,0xe3,0xdb,0xda,0x1d,0xeb,0xdf,0x61,0xfa, - 0x29,0x2f,0xa5,0xf6,0xcc,0x3d,0x6f,0xc2,0xe6,0x22,0xaf,0x95,0x1d,0x42,0x74,0x53,0x65,0xcd,0xaa,0x2a, - 0x76,0xdc,0xa0,0xa2,0x1b,0xf3,0xbc,0xd3,0x84,0x55,0x74,0x93,0xcf,0xc2,0xe2,0xb8,0x3a,0x89,0x74,0x41, - 0x3c,0x9b,0xbe,0x8f,0x2e,0xd3,0x6a,0x27,0x4f,0x90,0x94,0xdc,0xe8,0xb4,0xf8,0x66,0xa3,0xf2,0x69,0x5c, - 0xa9,0x79,0x99,0x4e,0xb3,0x69,0xbc,0x7b,0xb8,0x19,0xe9,0x4f,0x33,0x7c,0x3a,0x49,0xe7,0xf3,0x30,0x37, - 0x35,0xa8,0x5c,0xb9,0xe7,0x26,0xa2,0x17,0xf9,0x2c,0xd9,0x3d,0x70,0x19,0x1b,0x34,0x53,0x24,0x37,0xb6, - 0xa2,0x66,0xb8,0x48,0x68,0xf2,0x87,0x93,0xa4,0xa0,0xbf,0xcb,0x24,0x08,0x54,0x13,0x1e,0xd0,0xe0,0x8e, - 0xfd,0xb5,0x51,0x45,0x74,0xe3,0xa6,0xb9,0x08,0x0f,0xa3,0x8d,0xea,0xe6,0x07,0xab,0x3a,0xdb,0xa9,0x9b, - 0x2a,0xa7,0x99,0x1c,0xd9,0x71,0x57,0x98,0x05,0x34,0xda,0x24,0x45,0x76,0xb5,0x93,0xd2,0xab,0x2a,0x92, - 0x32,0x4c,0x87,0xcb,0xaa,0x6c,0x4a,0x4c,0xf8,0xb0,0xca,0x7e,0x5f,0x65,0x75,0x43,0x9d,0x36,0xbd,0x42, - 0x7f,0x9b,0xac,0x98,0x86,0x85,0xf2,0x0a,0xca,0xa8,0x6c,0x0e,0xbd,0x15,0x1b,0x3d,0x6d,0xe1,0xfd,0x48, - 0x95,0xf4,0xf3,0x45,0xa4,0x52,0xfa,0xf9,0x2a,0x52,0xe8,0xe6,0x3f,0x23,0x35,0x49,0xaa,0xb0,0x8e,0x46, - 0x93,0xe1,0x43,0x5e,0xb7,0x54,0x4d,0x86,0x93,0x2a,0x4b,0x9b,0x2c,0xf1,0x97,0x49,0x37,0x5b,0xd1,0x6c, - 0x2e,0xb2,0xea,0x3c,0x0b,0x6b,0x95,0x45,0x34,0xc6,0xc9,0xf0,0x71,0x5a,0x4c,0xb2,0x39,0x1a,0xa0,0xaa, - 0xcd,0xeb,0x51,0xf9,0x31,0x2b,0x90,0xf6,0x25,0xd2,0xf2,0xda,0x15,0x3a,0x40,0x02,0x2d,0x4b,0x5f,0xed, - 0x6f,0xaa,0x72,0x91,0xd7,0x19,0xb2,0x29,0x15,0x95,0xd7,0x4b,0xea,0xca,0x14,0xdf,0x51,0x87,0xdd,0xfc, - 0x4e,0xdc,0xf3,0x90,0x00,0x35,0x5d,0xcd,0x9b,0x64,0xf2,0xb7,0x26,0x5c,0x5a,0x0c,0x8e,0x05,0xb0,0x77, - 0x1e,0x56,0x55,0x7a,0x7d,0x42,0xf0,0x9d,0xcc,0x05,0x68,0xa8,0x79,0xfb,0x41,0xee,0x75,0xb1,0x58,0xcd, - 0xe7,0xbb,0x49,0x92,0xf5,0xec,0xb8,0xcc,0x7d,0x51,0xf6,0x34,0xf1,0x4c,0x67,0xde,0xd6,0x4a,0x2a,0x5b, - 0x1c,0x3b,0xc0,0xb6,0x71,0x59,0xe6,0xd3,0x9d,0x03,0x3c,0x47,0x94,0x6e,0x5a,0xdc,0xb5,0x2d,0xee,0xed, - 0x85,0x59,0x72,0x9c,0x9d,0x44,0x0a,0x83,0x8a,0x66,0x65,0x15,0x0a,0xf8,0x12,0x40,0x27,0xd9,0x70,0x9e, - 0x15,0xe7,0xcd,0xc5,0xa8,0x78,0x90,0x8f,0x8a,0xc1,0x20,0x6a,0xa4,0x51,0x54,0xaf,0xb2,0xe3,0xe2,0x44, - 0x15,0xb4,0x86,0xa3,0x6c,0x4e,0x93,0x64,0xbe,0x2c,0x77,0x72,0xda,0x3a,0xd1,0x6b,0x6e,0xc8,0x03,0xc0, - 0x8b,0xb4,0x7e,0x7d,0x55,0xd0,0xfa,0x2c,0xb3,0xaa,0xb9,0xd6,0x9d,0x57,0x65,0xb4,0xb7,0xd7,0xae,0xb4, - 0x3c,0x51,0x25,0x55,0xca,0x40,0x57,0x0b,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0xe6,0xc9,0x56,0xa5,0x4d,0xf9, - 0x8e,0xd6,0xa6,0x38,0x1f,0xb9,0x85,0xbd,0xc9,0x6b,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xd1,0x6a,0x36,0xcb, - 0xaa,0x78,0x1b,0x5a,0xda,0x6b,0x27,0xc5,0x3a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xac,0xac,0x16, - 0x4f,0xd2,0x26,0xed,0xab,0x6b,0x55,0x08,0xbe,0x9b,0xba,0xc9,0x35,0xc5,0xf7,0xf6,0x32,0x9a,0x94,0xba, - 0x01,0x04,0x7b,0xc9,0x9b,0x76,0x07,0x3f,0xe4,0xd9,0xd5,0x5f,0xac,0xd8,0xfb,0x6a,0x6f,0xcf,0x7b,0xa1, - 0x6d,0x82,0x5a,0xc6,0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x9d,0x0d,0xcf,0xf4,0x57,0xe6,0xc9,0xef,0x98,0xf7, - 0x19,0xfa,0x26,0x53,0xdb,0xd7,0xa5,0x9a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x56,0x8b,0xb3,0xfe,0x69,0x2e, - 0x38,0xa7,0x53,0x5c,0xd6,0x32,0x26,0x84,0x5a,0xbf,0x37,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85, - 0xbf,0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0x67,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1, - 0xe7,0xe5,0xd9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80, - 0x11,0xf6,0xf6,0x68,0x97,0x0f,0x97,0xf9,0x52,0xbe,0x7c,0xff,0xf6,0xc5,0xbb,0x2c,0xad,0x26,0x17,0x6f, - 0xd2,0x2a,0x5d,0xd4,0x7f,0x11,0x16,0x3a,0x5f,0x75,0x60,0xad,0x93,0x2b,0xcb,0x9a,0x16,0xd3,0xb4,0x9a, - 0x3e,0xaa,0xca,0xab,0x3a,0xab,0x9e,0x16,0x97,0xf1,0xd6,0xf9,0x1a,0x7a,0x2d,0xd9,0x65,0x2b,0xd2,0xcb, - 0xfc,0x3c,0x6d,0xca,0x6a,0xbd,0x0e,0xde,0x66,0xe9,0xa4,0x79,0x95,0x36,0xf9,0x65,0x46,0x5d,0x49,0x6c, - 0x16,0xf6,0xe6,0x74,0x35,0x69,0x68,0x6c,0x7d,0x9d,0xbd,0xca,0x8b,0x69,0x79,0xd5,0x9f,0x37,0x2d,0x27, - 0xab,0x45,0x56,0x34,0x84,0x84,0xcb,0xea,0x69,0x3a,0xb9,0x88,0x53,0xc5,0x07,0x85,0xed,0xde,0x4e,0x16, - 0xb6,0x4e,0xfb,0x46,0x55,0x3d,0x04,0x0d,0x8e,0xf7,0x1e,0xdc,0xda,0x8c,0xf9,0xdc,0xcf,0x98,0x3a,0x00, - 0x45,0xc2,0xaf,0xcd,0xc6,0x61,0x3c,0xa2,0x04,0x2a,0x46,0x7b,0x69,0x75,0xce,0x3d,0xa9,0x0d,0xfa,0xab, - 0x08,0xfd,0x55,0x84,0xfe,0xd2,0xd0,0x66,0x49,0x25,0xe6,0x2c,0x2d,0x36,0x4a,0x8e,0xcc,0xb8,0x7b,0x80, - 0xe8,0x02,0x29,0x75,0xd6,0x66,0x71,0xbf,0x41,0x5d,0x24,0x05,0x75,0x74,0x9b,0x96,0x6a,0xc6,0x75,0x88, - 0x8f,0xe3,0x66,0x43,0x47,0xd6,0x46,0xd1,0x6e,0xeb,0x85,0x21,0x9c,0xea,0xcb,0x79,0x3a,0xc9,0xc2,0x7b, - 0xff,0xf9,0xb5,0xfe,0xc7,0x3d,0x15,0x04,0x91,0x4b,0xa2,0x94,0x3b,0x9c,0xb4,0xd9,0xb4,0xcf,0xb5,0xce, - 0xa9,0xe6,0x50,0x67,0xbb,0x50,0x97,0xd2,0xa2,0xa9,0xb7,0x53,0x05,0x32,0x83,0xb1,0x45,0xd8,0x9d,0xab, - 0x08,0x73,0x48,0x13,0x56,0xd8,0xb9,0xa3,0x79,0xe3,0xa9,0xf6,0xa7,0xce,0x92,0x58,0xc3,0x74,0xb9,0x9c, - 0x5f,0xf3,0x68,0xb7,0xbb,0x69,0x97,0xda,0x1b,0xf4,0xee,0x6e,0x36,0x9c,0x94,0x04,0xe0,0x15,0x41,0x59, - 0x59,0xf5,0xce,0x5f,0xab,0xc4,0xd0,0x60,0x70,0xe0,0xbc,0xbe,0x74,0xec,0xdb,0xbe,0x39,0xe8,0x1c,0xd8, - 0x38,0x29,0x91,0x4a,0xc0,0xbf,0xd5,0x62,0xd8,0xd0,0xf1,0x3a,0x04,0x9d,0xf1,0x8c,0xe8,0xc1,0xe6,0xc5, - 0xd3,0xfe,0x65,0x1d,0xd6,0xf3,0x7c,0x42,0xf5,0x10,0x04,0xc8,0x63,0x78,0xa0,0x0e,0x22,0xaa,0x11,0x83, - 0x3a,0x35,0xfd,0x89,0x98,0x4c,0x6d,0x36,0x7f,0x8b,0x18,0x01,0x99,0x6c,0xe8,0x98,0x1a,0xc4,0x26,0xde, - 0xf3,0xa2,0xc9,0xaa,0x49,0xb6,0xa4,0xd1,0xd2,0xb9,0xa8,0x29,0xc0,0x98,0x49,0x44,0x55,0x65,0xf5,0x92, - 0x26,0x23,0x93,0xd7,0x8d,0xa5,0xf1,0xfe,0x29,0x34,0xde,0x7d,0xa1,0xf1,0x0e,0xff,0x5b,0x88,0xbc,0xc3, - 0x7f,0x11,0xa8,0x6f,0x53,0x93,0xad,0xd9,0xda,0x3e,0x15,0x98,0xb6,0x28,0x35,0xb5,0x77,0xb3,0xaa,0xe6, - 0xb1,0x83,0x81,0x83,0x93,0x8d,0x72,0x6f,0x87,0x27,0x51,0xa4,0xbc,0xc2,0xb9,0x6a,0x0d,0x48,0xdd,0x2c, - 0xb2,0xe6,0xa2,0x9c,0xc6,0xc1,0x79,0xd6,0x04,0x1b,0xd0,0x8d,0x43,0x49,0x21,0x12,0x45,0x1e,0x88,0x14, - 0x78,0x51,0x5e,0x65,0xd5,0xe3,0xb4,0x26,0x2c,0x21,0x53,0x98,0x1c,0xd7,0x4a,0x8e,0x0f,0x22,0x54,0x12, - 0x43,0x1a,0xd2,0xc8,0xcb,0xf9,0x65,0x46,0x5d,0x1e,0x01,0xa0,0xb7,0x66,0xca,0x0c,0x6e,0xa8,0xd1,0x50, - 0xe8,0x0f,0xb2,0x19,0xae,0x8a,0xfa,0x22,0x9f,0x35,0x84,0xb8,0x67,0xab,0xf9,0x2c,0x9f,0xcf,0xb3,0xa9, - 0x42,0xa5,0xc0,0x36,0xd9,0x34,0xa2,0x1d,0xdb,0x57,0xa3,0x4c,0xf6,0x2d,0x55,0x2e,0x57,0xf5,0xc5,0xed, - 0xf5,0x8d,0x1a,0xb3,0x95,0x22,0xda,0x78,0xc3,0xe6,0x22,0x63,0xf8,0xe1,0x4e,0x50,0x63,0xe6,0xc9,0xc7, - 0x45,0xa5,0x6d,0xe8,0x38,0x98,0x66,0xf3,0xac,0xc9,0x02,0xc5,0x53,0xa7,0x82,0x0b,0x02,0x52,0xfa,0x29, - 0x97,0x68,0xbe,0x0e,0x4e,0x54,0x0b,0xe0,0xdd,0x12,0x13,0x49,0x98,0x78,0x08,0xcb,0x61,0x32,0x1e,0x9d, - 0x9e,0xa2,0xd0,0xac,0x57,0xb1,0x5e,0x13,0xf6,0x34,0xab,0x94,0x29,0xac,0x35,0x21,0x2f,0xda,0xd3,0x51, - 0xab,0x33,0xcb,0xb2,0x46,0x27,0x96,0x2b,0xfe,0x9b,0x36,0x93,0x8b,0xbf,0xde,0x03,0x20,0xcd,0xcf,0xf5, - 0xa1,0xea,0xeb,0x83,0x9a,0x82,0x5c,0x2b,0x74,0x57,0xdc,0x36,0xaf,0xfe,0xc6,0xee,0x02,0x2a,0xda,0x2d, - 0x87,0x1e,0x9d,0x22,0x67,0x77,0x3b,0xe5,0x38,0x78,0x5c,0xd2,0x9a,0x17,0xcd,0xfe,0x11,0x75,0x3e,0x38, - 0x89,0x00,0xfd,0xdd,0xc4,0xa4,0x11,0xc2,0x36,0xf7,0x37,0x19,0xef,0xb1,0x9b,0x76,0xc9,0x38,0x00,0x62, - 0xcc,0x27,0x29,0x3a,0x71,0xef,0xd3,0xfe,0xd5,0xd5,0xd5,0x3e,0x4d,0xe3,0x62,0x9f,0x46,0x95,0x15,0x93, - 0x92,0x78,0x4e,0xda,0x07,0x93,0xe4,0x26,0x9d,0xa6,0x4b,0x82,0xb4,0x38,0xec,0x3b,0x52,0x7f,0x7e,0xf9, - 0xe2,0xbb,0xa6,0x59,0xbe,0x95,0x99,0x1a,0x63,0x7f,0xff,0x8b,0x58,0xf1,0x9e,0x92,0x34,0xeb,0x93,0xac, - 0x26,0xea,0x21,0x94,0x42,0xc4,0x04,0x12,0x6c,0x55,0x69,0x51,0xa3,0x55,0x5d,0x41,0x7c,0xdc,0x7b,0x42, - 0xe0,0x6c,0x6b,0xf7,0x1e,0x8b,0xee,0xa8,0x65,0x46,0x9a,0x48,0xf0,0xe8,0x4b,0x9b,0xd6,0x79,0x15,0x82, - 0xc9,0xbe,0x82,0x30,0x73,0x45,0x89,0xde,0xa2,0x97,0x71,0x16,0x77,0x2a,0xd3,0x04,0xee,0xd8,0xd0,0xb4, - 0x9c,0xdf,0xa1,0x7c,0x90,0x1f,0x56,0xe8,0xe9,0x9f,0x4e,0xec,0x68,0x72,0x91,0x56,0x75,0xd6,0x24,0xab, - 0x66,0xb6,0xff,0xaf,0x00,0x60,0x63,0xf8,0x0c,0xda,0x66,0x5c,0xb9,0x10,0xaf,0xfd,0x75,0xfe,0x56,0x97, - 0xc5,0x56,0x15,0xdf,0xbf,0x7b,0xfd,0x6a,0x28,0x08,0x32,0x9f,0x5d,0x83,0xd3,0x8a,0xb3,0xcd,0x89,0x3f, - 0xc3,0x1a,0x1d,0x1f,0xfb,0xbb,0x01,0x1c,0xdb,0x16,0x56,0x8d,0x9a,0xea,0xfa,0x26,0x4b,0xb8,0xc6,0x25, - 0x5a,0xc1,0x01,0x36,0xc1,0x5e,0xc2,0x27,0x1b,0x73,0xb2,0xa2,0xf6,0x7c,0x91,0x95,0xab,0x26,0x3e,0x50, - 0x9f,0xea,0x6a,0xf6,0xb8,0x2c,0x3f,0xe6,0xd9,0xab,0x74,0x91,0xc5,0xc1,0xcf,0xef,0xde,0x3e,0xdb,0x3f, - 0x7a,0xfd,0xc3,0xd3,0x57,0x01,0xe7,0x7d,0x47,0x58,0x21,0xab,0x74,0xde,0xbe,0x9f,0xbb,0x48,0x3f,0xe9, - 0xa5,0x7d,0xc1,0x48,0x28,0xde,0x3f,0x54,0x97,0xe9,0x3c,0xa7,0x7d,0x95,0x11,0x25,0xd9,0xac,0xfa,0xe8, - 0xd4,0x9d,0xec,0x9b,0xe4,0xfe,0xc1,0x01,0x9d,0xb8,0x0f,0xbe,0x38,0x38,0xd8,0x6c,0x46,0x93,0xe1,0x05, - 0xb7,0x40,0x70,0x3e,0x29,0x17,0x0b,0xa2,0x8e,0x6f,0x1e,0x4e,0x80,0x1d,0xe3,0xad,0xa9,0x53,0x3b,0x0d, - 0x91,0x52,0xf7,0x88,0x88,0xc9,0xe9,0xf9,0x1f,0xf7,0xfe,0x11,0x6c,0xfe,0x1c,0xa1,0xb5,0x91,0x88,0x6d, - 0x0d,0x28,0xe4,0xe6,0x6f,0xe3,0xa0,0xd6,0xe7,0x06,0xbb,0xd4,0x51,0x0b,0x7f,0xfc,0x99,0xa8,0x00,0x9b, - 0xbc,0xe2,0x2d,0x7e,0x3b,0x7d,0x65,0xfb,0x94,0xb9,0xba,0x04,0xcb,0x11,0x45,0xdd,0xec,0xed,0x55,0x04, - 0x76,0xef,0x97,0x4b,0x73,0xa6,0x11,0xa3,0xd1,0xb4,0x53,0x18,0xc3,0x34,0x44,0x45,0x2a,0x99,0x13,0x96, - 0x58,0x51,0x3f,0xff,0x8c,0x74,0x70,0x9d,0x53,0xd8,0xed,0x5f,0xcb,0x91,0x7f,0x68,0xce,0xfc,0x2f,0xf4, - 0x99,0xff,0xa5,0x70,0xde,0x87,0x07,0x60,0xbd,0x3f,0x47,0xcd,0xcb,0xef,0xf0,0xac,0x29,0xd3,0xd6,0xcb, - 0xf0,0x8c,0x9e,0x43,0x49,0xa0,0x3d,0x4c,0x55,0x7d,0xd5,0x3f,0x1d,0x8e,0xd4,0x22,0x62,0x44,0x9f,0xd3, - 0xa1,0x87,0xfb,0x57,0x22,0xde,0x9a,0xd1,0x69,0x0f,0x7c,0xae,0x70,0xec,0xeb,0x35,0x1a,0x55,0x3e,0xa6, - 0x99,0x45,0x90,0x40,0xf2,0x5c,0x4c,0xbb,0xb8,0x97,0x87,0xbd,0x64,0xd2,0xb5,0x8d,0x17,0xd5,0x45,0x12, - 0x94,0x05,0xa8,0xb7,0x6b,0xe2,0x9b,0x9a,0x8c,0xf6,0x6e,0x71,0x4e,0x00,0x76,0x99,0xec,0x1e,0x8e,0xb0, - 0x05,0x7b,0x78,0x21,0x19,0x14,0x51,0x6e,0x7a,0xb8,0x3f,0x3f,0x29,0x17,0x04,0xb0,0xba,0x46,0xa2,0x11, - 0xaf,0xf2,0xe6,0xe2,0x71,0x95,0x4d,0xa9,0xfd,0x3c,0x9d,0xd7,0x41,0x5e,0xec,0x2c,0xd7,0x6b,0x42,0x43, - 0x43,0x42,0x34,0x34,0x19,0xa1,0xf4,0xa4,0xf7,0x73,0xe9,0x10,0x24,0x8b,0xdc,0x89,0x03,0xb5,0x1c,0x96, - 0x05,0x61,0xe8,0x73,0xa2,0x23,0xbc,0x69,0xa3,0xcd,0xce,0x39,0x7a,0x9b,0xb7,0x32,0x00,0xab,0xe9,0x8a, - 0xc8,0x71,0x9e,0xb8,0x45,0x22,0x6f,0x43,0x82,0x82,0xaa,0xa0,0x5d,0x4e,0x1d,0x0c,0xd4,0xb9,0x49,0x5d, - 0xa6,0x75,0x7d,0x55,0x56,0x53,0xa4,0x8e,0xa6,0xc3,0x87,0x94,0x56,0x56,0xf9,0x1f,0xbc,0x27,0x93,0xe0, - 0x51,0x5a,0xe7,0x93,0x9d,0x60,0x30,0x0f,0x17,0x03,0x3a,0x97,0x06,0xe7,0xd1,0x86,0x26,0x85,0x1a,0x5e, - 0x12,0x21,0xe2,0x91,0x5f,0x1e,0x60,0xaa,0x52,0xc6,0x49,0x9d,0x58,0x32,0xf6,0xb5,0x0f,0xef,0xb2,0x8a, - 0xa6,0x23,0xff,0x83,0xc8,0x5c,0xb5,0x4b,0x80,0xb5,0x1c,0x9a,0xde,0x67,0xe6,0x49,0x2d,0x8f,0x2f,0x4e, - 0xfc,0xc1,0xa0,0x35,0x02,0xf5,0x2f,0x69,0x03,0x2c,0x99,0xc8,0xbe,0x06,0xe2,0xa1,0x31,0x5c,0x62,0x07, - 0x40,0xb6,0xb5,0x1c,0xd6,0x8c,0x8a,0xd6,0xeb,0xa5,0xa5,0xb5,0x08,0xff,0xef,0xed,0x1d,0xe8,0x6f,0x6c, - 0x12,0xd1,0x65,0xd3,0xec,0xd3,0x6b,0x5a,0xd4,0x19,0x64,0x02,0x41,0x14,0xc9,0x0c,0xd1,0x38,0x09,0x9d, - 0x3c,0x9c,0xcf,0x0d,0x22,0x16,0x8c,0x28,0xeb,0x36,0x4e,0x69,0xb8,0xbd,0xd9,0x38,0x0f,0x58,0x6e,0x55, - 0x25,0x37,0x4c,0x69,0x64,0xb6,0x31,0x00,0x1d,0xb1,0x01,0x40,0x66,0xe0,0x90,0xdb,0x19,0x63,0xd7,0xa9, - 0xd8,0x3d,0x1e,0x51,0x59,0x25,0x23,0x89,0x0f,0xef,0xdf,0xff,0x22,0x71,0x23,0x1b,0xdf,0x3f,0xf8,0x32, - 0x36,0x2f,0xba,0x0c,0x8a,0x6f,0x95,0x0b,0x5e,0x95,0x3b,0x1a,0xee,0x03,0xfb,0x01,0x57,0xac,0x37,0x4c, - 0x5c,0x28,0xe2,0x82,0x66,0xf9,0x39,0x91,0x48,0x86,0x25,0x58,0x6e,0x46,0x39,0xb6,0x19,0x21,0x1f,0x45, - 0x70,0x49,0x03,0xda,0x08,0x68,0x65,0x55,0x55,0x56,0xfe,0x5a,0xac,0xc2,0x49,0x18,0xbc,0xca,0x1a,0x02, - 0x97,0x8f,0x3b,0x4f,0x91,0x1b,0xa8,0x4c,0xf1,0x14,0x2c,0x23,0xfb,0xf1,0x6d,0x60,0xc9,0x5f,0xeb,0xf4, - 0x1d,0xda,0x45,0xc1,0xc0,0xae,0xfa,0x20,0x58,0xd4,0x3b,0xd9,0xa7,0x49,0x96,0x81,0xb4,0xa1,0x3a,0x83, - 0xa7,0x8f,0x5f,0xbf,0x7a,0xf5,0xf0,0xd1,0xeb,0xb7,0x47,0x4f,0x9f,0x04,0xad,0xda,0xab,0x61,0x9f,0x14, - 0x23,0xd4,0x4b,0x79,0x0d,0x9c,0x45,0x6c,0xcc,0x59,0x42,0x40,0xd8,0xd9,0x86,0x6e,0x07,0x46,0x60,0x07, - 0xdb,0xc7,0xe2,0xf8,0x9a,0xa1,0x2b,0xec,0xa6,0x47,0xb1,0x30,0x11,0xa3,0x33,0x02,0xb7,0xe9,0xb1,0x64, - 0xbb,0x13,0xf3,0x24,0x39,0xe3,0x1d,0x11,0xd0,0x79,0xaf,0x37,0xb0,0x64,0x32,0xec,0x00,0x8d,0x1b,0x3c, - 0x3f,0xed,0xf0,0xb7,0x56,0xb4,0x35,0x23,0x40,0x99,0x68,0x64,0x05,0x04,0x13,0x68,0x5c,0xef,0x71,0x34, - 0x63,0x8b,0xd6,0x9a,0x13,0xac,0x6b,0xa7,0x2d,0x5a,0xbd,0x4c,0x4e,0xa8,0xce,0x88,0xa9,0xcb,0xcb,0x6e, - 0x5a,0x82,0x9d,0xd7,0x06,0x48,0x26,0x2a,0x96,0xad,0xa4,0x0e,0xc8,0x6a,0x12,0x43,0xe4,0xcb,0x01,0x4e, - 0xea,0x6d,0xb0,0x8e,0x9a,0x0b,0x5a,0x0e,0xe2,0x5d,0x7b,0x99,0xf2,0xb2,0x78,0x52,0x5e,0x31,0x5a,0x7b, - 0xa3,0x71,0xd9,0xde,0xde,0x72,0x98,0x4e,0xa7,0x4f,0x2f,0x41,0x5e,0xe4,0x35,0x8d,0x9f,0x46,0x12,0x18, - 0x4c,0x47,0x50,0xd0,0xf3,0x4d,0xa4,0x6e,0xa9,0xfc,0xfd,0xb2,0x5b,0xf5,0x8a,0x53,0xdc,0xd3,0x9f,0xb6, - 0xd5,0xae,0x02,0x73,0x34,0x71,0xba,0x08,0x96,0x1f,0xb8,0x57,0x30,0x2a,0xcc,0x4f,0x32,0x43,0xe6,0x9f, - 0x65,0x4b,0x9e,0xf3,0xf4,0x8c,0x0e,0x39,0x42,0x85,0x2b,0x68,0x63,0x04,0x72,0xb1,0x40,0xfe,0x9a,0x87, - 0x33,0x49,0x56,0x58,0x4f,0x3a,0x29,0x67,0x7f,0xe3,0xec,0xa6,0x53,0xf9,0x16,0xca,0x02,0x9f,0x68,0x6e, - 0x7e,0x28,0x3b,0x7d,0xd8,0x26,0xd8,0x46,0x85,0x46,0x0b,0x7b,0x7b,0xf9,0xde,0xde,0x6e,0x1e,0x9a,0xf7, - 0x68,0xdc,0x10,0x39,0x1b,0x68,0xc0,0xda,0x99,0xa5,0x84,0x22,0xa7,0x3b,0x00,0x9e,0x1d,0x29,0xb0,0x03, - 0xfa,0x98,0x76,0xad,0xf9,0x40,0x99,0x16,0x04,0x03,0x14,0x56,0xcb,0x54,0x80,0xbe,0x0d,0x8b,0xbf,0x3e, - 0x9a,0xc3,0xdb,0x47,0xa3,0x88,0x59,0x92,0x11,0xa5,0x7c,0x64,0x32,0xd6,0x01,0xf7,0x6e,0x15,0x4a,0xa9, - 0x2d,0xf6,0x3f,0x91,0x74,0x81,0xb3,0x24,0x6e,0xc7,0x09,0xd5,0x64,0x48,0x09,0x65,0x80,0xc0,0x1a,0x62, - 0xcc,0x49,0x21,0x1b,0x46,0xa4,0x1e,0x95,0xb7,0x79,0x92,0x5c,0x65,0x7f,0x4f,0x54,0x63,0xda,0x61,0x66, - 0xe3,0xfd,0xdb,0xe7,0x8f,0xcb,0x05,0xd5,0x44,0x50,0x19,0x66,0x9e,0xf4,0xee,0xbf,0xbe,0x3c,0xb8,0x77, - 0x9e,0xab,0xe0,0xff,0xfa,0x22,0xbd,0xff,0xfa,0xe2,0x21,0x27,0xc6,0xad,0xc4,0xfb,0x5f,0xde,0x3b,0x57, - 0xc1,0x9d,0x76,0xda,0x63,0x2e,0xa8,0xda,0x89,0x07,0x28,0x38,0x68,0xa5,0x7d,0xf5,0x88,0x0b,0x1e,0xb7, - 0x13,0x9f,0x70,0xe2,0x49,0x10,0x79,0xba,0xbf,0xcf,0x80,0x1b,0x61,0x84,0xdd,0xc6,0x68,0x5c,0x33,0x5e, - 0xd5,0x12,0x94,0x53,0x11,0x81,0xb0,0x6c,0xb4,0x86,0x88,0x12,0xf2,0x1e,0xc6,0xac,0x89,0xa8,0x54,0xe3, - 0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xf1,0xc9,0x28,0xb7,0xf8,0xb3,0xe9,0x2c,0x6e,0x9f,0x96,0x0b,0x1c,0xac, - 0xe1,0x0e,0x99,0x4d,0x0f,0x9b,0x41,0x12,0x1c,0xd3,0x50,0x94,0x9f,0x4e,0x04,0x98,0x56,0x7b,0xe5,0x7d, - 0x64,0x38,0x78,0xaf,0xa1,0x68,0x1b,0x98,0xb1,0x04,0x75,0x52,0x3e,0x7f,0xf7,0xda,0x74,0x31,0xce,0x7d, - 0x26,0x90,0xe5,0x5c,0xdb,0x1c,0x1e,0xd4,0xaa,0x90,0xec,0x10,0x72,0x8e,0x06,0x41,0x12,0x0c,0x58,0xc3, - 0x06,0x51,0x04,0x08,0xee,0x74,0xf8,0x5b,0x99,0x17,0x61,0xb0,0x47,0x93,0xac,0x67,0xae,0x44,0x45,0x83, - 0x24,0xdc,0x3f,0x84,0xba,0xc3,0x91,0x2a,0xe3,0x20,0x1a,0xd3,0x9f,0x18,0x65,0x07,0x65,0xf4,0xe7,0x00, - 0xd7,0x22,0xf0,0x8f,0x83,0x14,0xd4,0x6c,0x90,0xfa,0x64,0x1d,0xbd,0x9b,0x03,0x47,0x84,0x4b,0x5e,0x02, - 0x9f,0x40,0x2a,0xc8,0x9a,0xf4,0x1c,0x3f,0x9f,0x96,0x39,0x01,0x3b,0x3d,0xcd,0x08,0xe1,0x81,0xe1,0x12, - 0xfe,0x29,0x9f,0xed,0x2f,0xca,0x69,0x3e,0xcb,0xb3,0xe9,0x7e,0x9d,0x13,0x5a,0x94,0xb4,0x55,0xb1,0x95, - 0x3a,0x4f,0xeb,0xc6,0x96,0xc5,0x7b,0x39,0x31,0x7d,0x20,0xee,0x12,0xdc,0xf7,0x15,0x1d,0xe4,0x68,0x81, - 0x50,0xea,0xa7,0xeb,0xfd,0x6e,0x47,0xab,0x8c,0x78,0x7a,0x3a,0x4e,0xf1,0x44,0xc7,0xd4,0x7e,0x3a,0x6b, - 0xf8,0x0d,0xc4,0xec,0x3e,0x8d,0x8d,0x28,0x9d,0x93,0x5b,0xd8,0x0a,0x16,0x03,0xd2,0x06,0x2f,0x89,0xb3, - 0x71,0xfa,0xf8,0x8c,0xb8,0x76,0xb7,0xea,0xc3,0x9a,0x18,0xd0,0x26,0x0c,0x7e,0x2d,0x08,0x46,0x3a,0xdc, - 0x77,0xe9,0x2f,0x03,0xed,0x3a,0x45,0x9b,0x7f,0x08,0x71,0x3c,0x3e,0x5b,0x9d,0xd1,0x7c,0x87,0x07,0x84, - 0x76,0xa2,0xf6,0x59,0xad,0x8a,0xad,0x52,0xe5,0xe0,0x90,0x00,0x42,0x0e,0xcf,0x94,0x8e,0x70,0x42,0xbd, - 0xb6,0xe2,0x26,0xfa,0x26,0x39,0xd0,0xbb,0x67,0x84,0xcc,0x04,0xa4,0xc4,0xfe,0x84,0x09,0x10,0x26,0x05, - 0xc6,0xfc,0xcd,0x18,0x7f,0xe2,0xe3,0x93,0x08,0x18,0x8a,0xa6,0x30,0x3c,0x2e,0x4e,0xa2,0xd8,0xe6,0x0c, - 0x02,0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xeb,0x50,0xe2,0xcd,0xde,0x6d,0xb4,0xd5,0xd8,0xd7, - 0x03,0x38,0x7d,0x8c,0x35,0x3c,0xc8,0xac,0xf8,0x91,0x77,0x20,0x0d,0xe0,0x61,0x43,0xed,0x9c,0xad,0x68, - 0x07,0x05,0x17,0xb4,0x84,0x01,0x6c,0x09,0x9a,0x24,0x1f,0xe2,0x05,0xdb,0xee,0x96,0x22,0x37,0x78,0x8a, - 0xa5,0x98,0x62,0x61,0xe0,0xa4,0x9c,0xd3,0xbb,0x79,0x1c,0xbb,0x47,0x87,0xb1,0x62,0xd1,0x74,0xc4,0xc4, - 0xd5,0x00,0x3c,0xf1,0x39,0xfd,0xa8,0x9a,0xf1,0x4c,0x8c,0xb6,0xf0,0x30,0x36,0x0f,0xbe,0xde,0x64,0xec, - 0xbe,0x4c,0x6b,0x94,0xc5,0xcf,0x58,0x7e,0xbc,0x72,0xff,0xa7,0xd5,0x00,0x78,0x28,0xdd,0x08,0x1e,0x15, - 0xe6,0x0e,0x7d,0xa4,0x1f,0xb5,0x4c,0x9b,0x0b,0xce,0x0f,0xee,0x61,0xf1,0x28,0x55,0x27,0x0c,0x21,0x14, - 0x7a,0x08,0xcb,0x8f,0xb1,0x4b,0x44,0xa9,0x81,0x7b,0x15,0x41,0x3c,0xad,0x55,0x72,0x2f,0x5c,0xd4,0x79, - 0xb6,0xa6,0x09,0x02,0xd9,0x16,0xdd,0xcb,0x87,0x0d,0xa4,0x9d,0x4e,0xd3,0x06,0xf0,0x7f,0x08,0xe8,0xc7, - 0x26,0x37,0xca,0x33,0x6d,0x78,0xf1,0x74,0x9e,0xe1,0x2d,0x0c,0xd2,0xc0,0x9e,0x93,0xb4,0x46,0x9a,0x17, - 0x1f,0x9a,0x1d,0xa8,0xd7,0xc2,0x49,0x1f,0x0c,0xe5,0x20,0x50,0xc0,0xb8,0xae,0x20,0xf4,0x47,0x7f,0xe2, - 0xc2,0xd9,0x8d,0x98,0xf9,0x67,0x2a,0xd5,0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86,0xf0,0xe4, - 0x96,0x66,0x71,0xf7,0xe0,0xf3,0x67,0xb4,0xa7,0xf3,0xd1,0x5a,0x8d,0x05,0x91,0x62,0xb4,0xcb,0x93,0x40, - 0x3a,0xb4,0x03,0x34,0x45,0xbc,0x72,0xbd,0x93,0x52,0x5f,0x0a,0x26,0x6d,0x76,0x30,0xb3,0xe9,0x04,0x68, - 0x61,0x23,0x50,0x1d,0x3c,0x7c,0xf4,0xf8,0xc9,0xd3,0x67,0xdf,0x7e,0xf7,0xfc,0xfb,0x1f,0x5e,0xbc,0x7c, - 0xf5,0xfa,0xcd,0x8f,0x6f,0xdf,0x1d,0xbd,0xff,0xf0,0xd3,0xcf,0xbf,0xfc,0x3b,0x3d,0x9b,0x10,0x3b,0x7f, - 0x7e,0x91,0xff,0xf6,0x71,0xbe,0x28,0xca,0xe5,0xef,0x55,0xdd,0xac,0x2e,0xaf,0x3e,0x5d,0xff,0x71,0x70, - 0x78,0xff,0x8b,0x2f,0xbf,0xfa,0xe7,0x7f,0xff,0xeb,0xeb,0xc1,0xbd,0x24,0x18,0x15,0x4e,0x16,0xed,0x08, - 0x0f,0xe5,0xa5,0x0a,0x69,0xf0,0x55,0x2b,0x09,0x8b,0x98,0x04,0xcf,0xa5,0x5f,0x8f,0x4d,0xb7,0x0c,0xa7, - 0xd4,0x8b,0xa4,0x8c,0x5a,0xad,0x01,0x09,0x93,0xe8,0x69,0xcf,0x20,0x8c,0x21,0x68,0xab,0x93,0x03,0xd8, - 0xd7,0x8c,0x4a,0x0b,0x3d,0xeb,0x1a,0xa7,0xd7,0x24,0xa1,0x13,0x45,0xd5,0xff,0x45,0x84,0x53,0x3a,0x48, - 0x26,0x26,0xf7,0x9f,0x5f,0xec,0x35,0xdf,0x7c,0xf3,0xaf,0x7d,0xca,0xf8,0xc7,0xbf,0x22,0x46,0x37,0x61, - 0x9e,0xc8,0xc7,0x8f,0xa9,0xb7,0x54,0xa4,0x1e,0x24,0xc3,0xff,0xfe,0x2a,0x8a,0xbe,0xb9,0xff,0xd5,0x57, - 0x9a,0x60,0xc7,0xe8,0x8a,0x51,0x93,0x34,0x0f,0x1e,0xfc,0x6b,0x9d,0x9b,0xe3,0xe8,0x7f,0x19,0x81,0xdc, - 0x5c,0x55,0x79,0x4b,0x79,0x6f,0xa8,0x36,0x42,0x56,0x37,0x62,0xed,0x41,0xa7,0x7d,0xad,0xb5,0x21,0x7c, - 0x60,0xf6,0xd0,0x48,0x44,0x2d,0x30,0xff,0x27,0xd6,0x06,0x04,0x98,0x7b,0x7b,0xfa,0x13,0x73,0x52,0xd1, - 0x77,0x18,0x0f,0x9f,0xdd,0x05,0x30,0xf3,0xb7,0x2f,0x8f,0xac,0xf4,0x56,0x79,0x90,0x9d,0x7b,0xdf,0x62, - 0xff,0xd1,0x87,0x79,0xab,0x40,0xe9,0x15,0x98,0xb2,0x80,0x86,0x8a,0x94,0x10,0x5c,0x10,0x90,0xa7,0x2e, - 0xaf,0xce,0x26,0xab,0x0a,0x52,0x6f,0xb7,0x0b,0x19,0x77,0x27,0xb5,0x3e,0xe3,0x47,0x3b,0x74,0xc8,0x2b, - 0x30,0x97,0xf1,0xd6,0xe9,0x94,0x74,0x3e,0x1a,0x2e,0x98,0xcf,0xc2,0x10,0xde,0x66,0xe7,0x4f,0x3f,0x2d, - 0xc3,0x20,0xfc,0xcf,0x7a,0xf4,0xeb,0xaf,0xf5,0x3f,0xa2,0x90,0xa6,0x84,0xc8,0xb7,0x24,0x3c,0xfe,0xcf, - 0xe8,0xe4,0x1f,0x51,0xe0,0x94,0x3e,0x0d,0xf1,0x87,0xdb,0x73,0x75,0xfc,0xc5,0x89,0xc8,0x27,0xd0,0xf8, - 0xa2,0xbc,0x6c,0x1b,0x41,0xf0,0xee,0xe2,0x45,0xa1,0xb5,0x20,0x50,0xc3,0x8c,0x0d,0x8b,0xf2,0x2a,0x8c, - 0xf6,0xff,0xf5,0xcf,0x2f,0xb3,0xaf,0x88,0x9a,0x8e,0xbb,0x8b,0x06,0x99,0x53,0x7b,0x1c,0x2d,0x35,0xe9, - 0x76,0x3b,0xf4,0xc1,0xdf,0x20,0x8f,0x75,0xa7,0x2e,0x08,0x7c,0xe6,0x90,0x16,0x1f,0x9f,0xf8,0x04,0xa8, - 0xaf,0x81,0xa4,0x0a,0xfa,0xf5,0xd5,0xad,0x0a,0x64,0x81,0x6e,0xac,0x66,0x8d,0x65,0x1e,0xa2,0x59,0x63, - 0xe5,0x7a,0xbb,0xb0,0x50,0x42,0xfb,0x87,0x90,0x30,0xb8,0x96,0xb8,0x7c,0xb2,0x35,0x71,0xe6,0x2b,0x22, - 0x22,0x41,0x64,0x76,0x92,0x34,0xbf,0xd7,0xaa,0x48,0x53,0x1c,0x49,0x9b,0xca,0xb4,0xc4,0xad,0x5f,0x83, - 0x67,0x2b,0x60,0xc9,0xdc,0x86,0x18,0x50,0x7a,0x25,0x16,0xf1,0x7f,0xa8,0xc7,0x82,0x79,0xe1,0x67,0xf8, - 0x59,0x46,0x05,0xcf,0x67,0x9a,0xfb,0xcb,0xa6,0x61,0xd4,0x35,0xfc,0x3b,0xfc,0x5a,0x24,0xc4,0xb0,0xc0, - 0xb3,0xa6,0x7f,0xf4,0x7a,0x08,0x01,0x31,0xfd,0xde,0xc2,0x23,0x78,0xa6,0x7f,0x19,0xd8,0xa8,0xb3,0x54, - 0x4b,0xe7,0x76,0x27,0x5a,0x18,0xc3,0x7c,0x16,0x3d,0x24,0xf3,0xd0,0x66,0x2b,0x2d,0xa7,0x51,0x56,0xd4, - 0xeb,0x84,0xbe,0xac,0xe9,0x13,0x59,0x70,0x02,0x51,0x23,0x0b,0x85,0x6d,0x2e,0xf4,0x35,0x1d,0xcd,0x95, - 0x5f,0x8b,0x31,0x3f,0xb4,0x29,0x43,0x51,0x49,0xe8,0x4a,0xad,0xec,0x5f,0x4b,0x36,0x4f,0xda,0xe9,0x78, - 0xf3,0x99,0x86,0xdb,0x14,0xac,0x3d,0x5a,0x06,0x50,0xd8,0x68,0xc8,0x57,0x37,0xd0,0xf2,0x1a,0xd9,0xbd, - 0x6d,0xb9,0x39,0xd9,0x40,0x19,0x3e,0xd4,0xaa,0xbd,0xf5,0xba,0x36,0x8f,0x11,0x58,0xc4,0xb6,0xbc,0xa1, - 0x69,0xcf,0x6e,0x63,0x26,0x45,0x1e,0xe8,0xbd,0x77,0x52,0x84,0x77,0xa5,0xe2,0x1b,0xd5,0x53,0x53,0x4a, - 0xcf,0x74,0xc4,0x48,0x85,0xb0,0xcf,0x33,0xcc,0x2e,0x00,0xdd,0x29,0xb3,0x6d,0x4b,0xad,0x14,0xe5,0xbd, - 0x7f,0xae,0x6d,0x5a,0x59,0xa7,0x91,0x67,0x46,0xaa,0xf9,0x5b,0xaa,0x8b,0xcf,0xb0,0xa3,0x66,0x42,0xec, - 0x22,0x15,0x2d,0x12,0x87,0x4e,0x73,0xc6,0x18,0x9b,0x6d,0x4e,0xea,0x2f,0x08,0x0c,0x2c,0x21,0x13,0xee, - 0x66,0xeb,0x35,0x0c,0x37,0x4e,0x1f,0x3f,0x7c,0xf5,0xf8,0xe9,0x8b,0xd3,0xd3,0xff,0x81,0xf8,0xc1,0xd4, - 0x76,0xef,0x3f,0xe1,0x71,0xba,0xff,0xc7,0x09,0xfe,0xfc,0x3a,0xfd,0x75,0xf0,0xeb,0xfe,0xaf,0xc3,0x93, - 0x7f,0xc4,0xd1,0xf8,0xd7,0x7b,0xbf,0xde,0x33,0xb4,0x5f,0xf6,0x3f,0x92,0x6f,0x38,0xcc,0x38,0xf6,0x0c, - 0x86,0x7e,0xbd,0x37,0x10,0x9a,0x79,0x00,0x02,0xb4,0xf1,0x29,0xe2,0x7b,0x03,0xa1,0x75,0xff,0x64,0x72, - 0xda,0xd6,0x39,0x2d,0x52,0x2d,0xdb,0x14,0x3d,0x46,0x9a,0xc9,0xd6,0x99,0x11,0x88,0x51,0x6f,0x30,0x08, - 0xfd,0xcf,0x89,0xd3,0x25,0x46,0xc6,0x4f,0x89,0x61,0xc5,0xd4,0x22,0xb3,0xdc,0xa4,0x43,0x3f,0xe2,0x99, - 0x4d,0xff,0x2d,0x7c,0x08,0x49,0xa6,0x15,0x26,0xee,0x7a,0x1a,0x56,0x4b,0x15,0x41,0xaa,0x29,0x02,0x27, - 0x22,0x2f,0xe8,0x98,0x27,0xc2,0x7b,0x67,0xb1,0xaa,0x9b,0x9d,0xb3,0x6c,0x27,0xb5,0xb6,0x51,0xc3,0x40, - 0x5b,0x9c,0x8c,0xb8,0xd7,0x5a,0x32,0x98,0xf4,0x6a,0xb3,0x30,0x57,0x34,0x41,0xf2,0x41,0x91,0xe0,0x83, - 0x51,0x3b,0x1b,0x62,0xb4,0xb4,0x06,0x42,0x0a,0xcd,0x23,0x57,0x95,0xf3,0x7e,0xb4,0x69,0x90,0x23,0x38, - 0x0c,0xfd,0x45,0xfb,0x78,0xec,0x22,0xf3,0x8e,0x3e,0x45,0x1b,0x50,0x70,0x35,0x5a,0x66,0xeb,0x52,0x70, - 0x6a,0xd5,0xe5,0xaa,0x9a,0x64,0xfe,0x57,0x68,0xc9,0x30,0x79,0x37,0x0d,0x4e,0x0c,0x36,0x1d,0xaa,0x5a, - 0xa8,0x28,0x4b,0x70,0xaa,0xca,0xa9,0xc2,0xf0,0x73,0xeb,0x49,0xf5,0x37,0xf6,0xc6,0x4e,0x0f,0x8a,0x32, - 0x86,0x63,0x2c,0x77,0x6c,0x60,0x3b,0x06,0xc5,0x67,0xb7,0x85,0xdb,0x7d,0x1d,0x7a,0xb4,0x99,0xff,0x4b, - 0xee,0x0e,0x0d,0x1c,0x18,0x3e,0xac,0xb2,0x7e,0xf7,0x85,0x7e,0x60,0xcc,0x7a,0xed,0x5d,0xd7,0x6b,0x8c, - 0x8e,0x2d,0x5f,0x3d,0xa3,0xc7,0x6e,0x49,0x11,0x7a,0x19,0x51,0xd8,0xa6,0xbd,0x2b,0x0d,0xcf,0xd5,0xae, - 0xc4,0x37,0x5f,0xdf,0x32,0x2f,0x58,0xaf,0xb7,0xed,0x75,0x29,0xad,0xbe,0x5e,0x9c,0x95,0xf3,0x76,0xda, - 0x59,0x59,0xce,0xb3,0xb4,0xe8,0xb5,0x5f,0xff,0xdf,0xb1,0x78,0x17,0x11,0x1b,0x1b,0xd9,0x5e,0x14,0xbd, - 0x06,0xef,0x86,0x8a,0x66,0x4b,0x08,0xb6,0xbe,0x0b,0x2d,0x07,0xe5,0xa8,0xe3,0x6f,0x92,0x83,0xbd,0xbd, - 0x97,0x44,0xe3,0x0f,0x67,0xf3,0x12,0x46,0x5f,0xac,0x4d,0x27,0x96,0xb5,0x7e,0x96,0x17,0x4c,0x00,0x7b, - 0xb5,0xd6,0x9d,0xae,0x53,0xcf,0xc7,0x41,0xd0,0xe3,0xc1,0x32,0xee,0xca,0xfc,0x44,0x0c,0x7e,0x3f,0x8a, - 0x6d,0x17,0x5c,0xad,0x93,0xde,0xbe,0x3a,0x31,0x36,0xb1,0x34,0xe9,0x2b,0xea,0xd8,0x38,0x23,0xca,0xd4, - 0x7e,0x35,0xd7,0x96,0x90,0xd6,0xf2,0x52,0x9b,0xc0,0x0b,0x9b,0x1f,0x8a,0xfa,0xa0,0x4a,0xac,0x10,0x4b, - 0x41,0xce,0x99,0x1c,0x8c,0xf2,0x07,0x95,0xb1,0x1a,0xcb,0xc5,0x00,0xf3,0x38,0x3f,0x39,0x21,0x5c,0xe9, - 0x18,0x86,0x3e,0xf5,0xfb,0x71,0xd6,0x96,0x64,0x9d,0x6c,0xfa,0xac,0x3b,0xa8,0xd8,0xc9,0xc6,0xf5,0x71, - 0x65,0xdd,0x0e,0x8c,0xbf,0x80,0xd1,0xa9,0x66,0x9e,0x8c,0x8b,0xe5,0xc1,0xdf,0xec,0x1f,0x5a,0x31,0x31, - 0x77,0x99,0x4e,0x9c,0x42,0x1d,0x46,0x5e,0x6d,0xb3,0xd6,0x99,0x75,0x6e,0x56,0x1d,0x9b,0xdc,0x96,0x99, - 0xba,0xb9,0xec,0x99,0x8f,0x51,0x17,0x6d,0x78,0xc6,0x6b,0xc7,0x05,0xd1,0x73,0x21,0x7e,0x60,0x09,0x1c, - 0xf9,0x0d,0x2f,0xb7,0x8c,0x4e,0xb5,0x38,0xa4,0xea,0x31,0x08,0xd6,0x14,0xc6,0xb8,0xfa,0xe6,0x70,0xec, - 0x8c,0x58,0x6d,0x39,0xe0,0x00,0xee,0x37,0x9b,0xf1,0x9a,0x67,0x2b,0xe8,0x2d,0x86,0xa7,0x52,0x91,0xf5, - 0xb0,0x50,0x85,0xeb,0xc8,0x85,0x74,0x84,0xd8,0xf1,0xf5,0xfa,0x60,0xe4,0x96,0xde,0x94,0xdd,0x6f,0x68, - 0xc5,0x9d,0x05,0x6e,0x11,0x8d,0x8a,0xfd,0xfd,0x51,0x54,0xf1,0xa0,0x8e,0x8b,0x41,0x63,0xcd,0x6b,0x2b, - 0x57,0xe9,0x65,0x07,0x90,0xe0,0xa5,0xd1,0x44,0xf0,0xe1,0x48,0x30,0x1b,0x56,0x34,0xea,0xbe,0x58,0xb4, - 0x64,0x13,0xb0,0x8e,0x2e,0x08,0xb0,0x8a,0x07,0xce,0x29,0x84,0x00,0x0b,0x15,0xec,0xed,0x5d,0x42,0xfd, - 0x08,0x69,0xa4,0x85,0x2e,0x57,0xcd,0xb9,0x39,0x87,0x5d,0xd2,0xb5,0x03,0x18,0x6c,0xc3,0xc8,0x60,0x29, - 0x7d,0x24,0xf2,0x39,0x57,0xd1,0x8f,0x00,0xcd,0x2e,0x1d,0x84,0xbb,0x95,0x29,0x44,0x6c,0xcb,0x6e,0xb5, - 0xb7,0x67,0x37,0x18,0x55,0xa0,0x9f,0xa9,0x34,0x94,0x98,0xac,0x7c,0x48,0x78,0x6a,0x3c,0x79,0x3f,0xf1, - 0x2d,0xed,0x24,0xa9,0xbb,0xdc,0xdb,0x4b,0x1d,0x40,0xea,0x35,0x81,0x00,0x4b,0x1e,0xc1,0x22,0x65,0x97, - 0x59,0x75,0xed,0x9d,0xcf,0x1e,0x81,0xc9,0xe3,0xc0,0xb0,0x37,0x52,0xd9,0x7a,0x6d,0x2a,0xdb,0x3d,0x1c, - 0x89,0x44,0x43,0x83,0xe7,0xc7,0xec,0x1a,0x58,0x85,0xd8,0x25,0x3f,0xc1,0xd9,0x8f,0xd7,0xae,0xed,0x89, - 0x6d,0xbb,0xee,0xb6,0xdd,0x6a,0x19,0xde,0x37,0xba,0x71,0x67,0xfd,0x65,0x5a,0xf7,0xc0,0xfa,0xac,0x8b, - 0x41,0xb6,0xd6,0x90,0xba,0x6e,0xea,0x8b,0xac,0xdb,0x9c,0xee,0x19,0x31,0xc3,0xb6,0xa6,0x53,0xb7,0xeb, - 0x68,0x7c,0xdb,0xe6,0xe1,0x0d,0x76,0x96,0x90,0x63,0x7a,0x43,0xe0,0xf0,0x73,0x7b,0xc2,0xdf,0x6c,0x57, - 0x46,0xf3,0x16,0xdd,0xe8,0x19,0x91,0xe3,0xd3,0xf8,0x07,0x71,0x36,0x35,0x36,0x5f,0x65,0x71,0xa1,0x32, - 0x3a,0x91,0xb2,0x2a,0x3d,0x9b,0x67,0xf1,0xee,0x6e,0xa5,0x20,0x93,0x90,0x97,0x03,0x6d,0xcb,0xb0,0xd2, - 0x99,0x07,0x1b,0x0f,0x4b,0x1c,0x79,0x07,0x4a,0x8f,0xca,0x78,0x6f,0xef,0x5e,0xc1,0x0e,0x0c,0xac,0xd5, - 0xbc,0xa7,0x49,0x6c,0xdf,0xd4,0xcf,0x55,0xf5,0xb1,0x63,0xa3,0xf4,0x4b,0x11,0xca,0xe9,0xab,0xda,0x3f, - 0xee,0xe8,0x71,0xdf,0x7e,0xd2,0xca,0x7e,0xbd,0x87,0x27,0x46,0x3c,0xf3,0x5a,0x4c,0x70,0xf5,0x5e,0xfe, - 0x05,0xb6,0x34,0x4d,0x7a,0xae,0x2c,0x37,0x3b,0xb9,0xc8,0xe7,0xd3,0x2a,0x2b,0xc0,0x3d,0xc1,0x7e,0x83, - 0x40,0x71,0xbe,0x50,0xac,0x9e,0xe4,0x77,0x64,0xa4,0xf5,0x75,0x31,0x79,0x96,0xc2,0x9e,0xfd,0xda,0x29, - 0x44,0x87,0x05,0x78,0x65,0x54,0x2d,0xb2,0xb8,0x26,0x9f,0x00,0x15,0xeb,0x47,0x4a,0x25,0xe8,0xa3,0x04, - 0xfa,0xcb,0x25,0x1e,0x13,0x57,0x4a,0xfd,0xe1,0x22,0xfa,0x99,0xd2,0x67,0xc5,0x63,0x69,0x88,0xd2,0xed, - 0x33,0xa7,0xeb,0x8e,0x73,0xba,0x1d,0x04,0x3d,0xbf,0x9b,0xd0,0xda,0x3d,0x9f,0x72,0xba,0x7e,0x96,0xfa, - 0xe7,0x34,0x5e,0x76,0x91,0x6c,0x44,0xa1,0xaa,0x07,0x46,0x2f,0x95,0x7d,0x49,0x1e,0x7b,0x39,0x30,0x0d, - 0x8a,0xa0,0x7e,0x2d,0xfc,0xc2,0x85,0x5f,0xb8,0x68,0x17,0x26,0x84,0xe1,0x66,0xfc,0x71,0x17,0xe4,0x2d, - 0x96,0x6d,0xe3,0x4d,0x7d,0x52,0x16,0x7c,0x44,0xe2,0x80,0x4c,0x68,0xad,0xe8,0xc7,0x73,0xec,0xf0,0x6a, - 0x7d,0xe8,0xad,0x23,0xb6,0xbb,0x78,0xf0,0xec,0x86,0x2d,0x7f,0x9b,0x5f,0x0a,0xbb,0x85,0x70,0x90,0x05, - 0xa7,0xa7,0xe5,0xd9,0xe9,0x69,0xc0,0xd6,0x26,0xf2,0xec,0x97,0x2e,0xab,0x31,0x3a,0x27,0x19,0x71,0x4e, - 0x64,0xf7,0x45,0xb9,0x9a,0x4f,0x69,0xb2,0x69,0xe3,0xd3,0x64,0xed,0xfe,0x51,0xb0,0x95,0x5f,0x17,0x9b, - 0xad,0xd7,0x20,0x96,0x28,0x47,0xef,0x9d,0xbc,0x7e,0x0a,0xef,0x93,0x3a,0x3f,0x63,0x73,0x59,0xfa,0x90, - 0xfd,0x09,0x88,0x0a,0xc5,0xb4,0xf1,0x98,0x59,0x65,0xce,0xec,0x3c,0x4f,0xeb,0xe5,0xe2,0x71,0xb9,0x2a, - 0x9a,0xc1,0xc0,0x3f,0x78,0xde,0xf9,0xea,0x70,0xc1,0xa3,0x6c,0x2d,0x57,0x10,0xf6,0xd4,0x2d,0x9d,0x67, - 0x8d,0xe7,0xc5,0xf7,0x24,0xab,0x27,0x55,0x0e,0x1b,0x77,0x9e,0x1b,0xc6,0xd6,0x29,0x61,0xeb,0x43,0xa2, - 0xf6,0xd2,0xa1,0xbf,0x35,0x8d,0x84,0x37,0x25,0x84,0x8b,0x4a,0x08,0x13,0xf2,0x63,0x4d,0x8f,0xf3,0x64, - 0x37,0xdf,0xdb,0x7b,0x88,0x83,0xec,0x33,0xb8,0xc0,0xc7,0x01,0x5b,0xdb,0x5e,0x51,0x95,0xbe,0xcc,0x51, - 0xb0,0x54,0x3d,0xae,0x0d,0xcd,0xe8,0xd4,0x17,0x3f,0x17,0xb4,0xcd,0x2a,0x2a,0x4f,0x53,0x53,0x52,0x4b, - 0x4b,0x58,0x5e,0x44,0x6a,0x4e,0xaf,0x73,0xbc,0xba,0xa4,0xee,0x81,0xb1,0xb7,0xe7,0x11,0xec,0x2d,0xf8, - 0xd2,0xbb,0x5f,0xbc,0x87,0x9a,0xae,0xd7,0x10,0xad,0x40,0x03,0xc3,0x4c,0xcc,0xbb,0x2c,0xb5,0x7b,0xfa, - 0x5c,0x8b,0x90,0x6d,0xb3,0x11,0x05,0x84,0xde,0x2c,0xab,0xa9,0xfd,0x51,0x36,0x86,0x3a,0x69,0x0f,0x13, - 0x0a,0x98,0x6a,0xbd,0x6e,0x76,0xd9,0x84,0x74,0x17,0xcf,0xe1,0x64,0x3c,0x71,0x64,0x54,0x4c,0xdd,0xb1, - 0x73,0xde,0xc0,0x36,0xb6,0x28,0x1b,0x90,0xaf,0x6c,0x23,0xef,0xe1,0xe8,0x3b,0x9e,0x7a,0xbf,0x0b,0x81, - 0xb4,0x76,0xa1,0x3b,0x2d,0xec,0xd1,0xc9,0x24,0xf6,0x22,0xfd,0x64,0x29,0x41,0xc5,0xa2,0x37,0x4d,0xe9, - 0x35,0xea,0x90,0xaa,0x53,0xbc,0x7b,0x1a,0x76,0x13,0xc5,0xfe,0xe1,0xa7,0xae,0x67,0xa7,0xab,0x5a,0x0c, - 0x5c,0x0b,0x2d,0xf9,0x31,0x9b,0xc5,0x39,0x10,0x09,0x9c,0xaf,0xd7,0x15,0x2c,0xad,0x34,0x58,0x8f,0x8b, - 0xb8,0x1a,0x87,0xef,0x08,0xbd,0xf0,0x09,0xc2,0xa3,0x20,0x54,0x84,0xb9,0x36,0x63,0x05,0x5d,0x66,0xac, - 0x67,0x0b,0x0f,0x5b,0xbf,0xb6,0xb4,0xc9,0x2d,0x43,0xf6,0x47,0xe3,0x99,0x2a,0xb8,0x7d,0x3c,0x72,0x7d, - 0xf2,0xb7,0xda,0x7a,0x2d,0x94,0x2d,0x6c,0xc8,0x8c,0xb5,0x6e,0x73,0x22,0x48,0xce,0xef,0x98,0xbf,0x02, - 0x4f,0x6d,0x67,0x7c,0xf3,0x0a,0x0b,0x77,0xd8,0xa8,0x6e,0x6b,0x6a,0x92,0x02,0x1a,0xa3,0x51,0xfd,0x20, - 0x35,0x50,0x58,0x03,0xb7,0x81,0x2e,0x4c,0xd2,0xe3,0xfa,0xe4,0x04,0x00,0x8a,0xa3,0x7e,0xc6,0x94,0xcc, - 0xb8,0x0c,0x2b,0x76,0x43,0x84,0x2e,0xe4,0x69,0x88,0x8d,0x1f,0x63,0xd9,0x0b,0x7a,0xe8,0x21,0x09,0xdf, - 0x74,0x24,0x6c,0xc5,0xb8,0xb3,0xe7,0xaa,0xa4,0xd7,0x9d,0xcd,0x78,0xf8,0xb2,0x4f,0x1b,0xf5,0xa0,0xef, - 0x38,0x1e,0x67,0x5e,0xa1,0xcc,0x51,0xd8,0xba,0x57,0xf9,0x26,0x6e,0xc6,0x99,0xdf,0x9e,0x2e,0xf1,0x34, - 0xfc,0x5c,0x93,0x4c,0x82,0xe0,0x0f,0x1a,0xfe,0x5c,0xb3,0x5e,0x41,0xe2,0xda,0xe2,0x26,0xf6,0x86,0xfd, - 0x5b,0x57,0x8c,0x36,0xce,0x8c,0x0a,0x9e,0xb6,0x53,0x17,0x4d,0x8c,0x9b,0x18,0x7a,0x7a,0xef,0xfb,0x27, - 0x8e,0xd8,0x11,0x79,0x4d,0x9b,0x69,0xd1,0x8c,0xbe,0xa7,0xcb,0xb9,0x84,0x03,0x14,0xc6,0x6c,0xab,0x78, - 0x6e,0x66,0xde,0x63,0xe2,0x6d,0x75,0x69,0x45,0xe8,0x65,0xbd,0x9e,0x57,0xa3,0x39,0x1c,0xed,0xe8,0x60, - 0x62,0xef,0x44,0xfc,0x41,0xa3,0x7d,0xd6,0x78,0xc0,0x7e,0xc4,0x60,0x0c,0xb5,0x1f,0x50,0x57,0x72,0x62, - 0x20,0x9a,0xf6,0xe3,0xb2,0x16,0x4b,0x1e,0x59,0x5f,0x06,0xb8,0x9b,0xcd,0x68,0x6b,0x7f,0x14,0xe2,0x3b, - 0x4e,0x07,0xac,0x45,0x7f,0x60,0x4a,0xba,0xf2,0x85,0x50,0xc2,0x2f,0x60,0x17,0xa4,0xc7,0x67,0x05,0xc1, - 0xdd,0x49,0x72,0x83,0x2c,0x51,0x53,0x39,0x4b,0xa1,0xd2,0xd4,0xc8,0xe7,0x06,0x50,0x44,0x11,0xe1,0xdb, - 0xfa,0x44,0xf1,0x87,0x35,0x7d,0x08,0xb0,0x1d,0xe7,0xb1,0x7c,0x9f,0x6f,0x46,0xba,0xbf,0x49,0xba,0x01, - 0xca,0xbc,0x65,0x48,0x79,0x81,0xb9,0xf7,0xc7,0x64,0x13,0x3f,0x37,0x30,0x99,0x69,0x26,0x17,0x7c,0xc6, - 0x9a,0x98,0x2e,0x66,0xac,0x6f,0x60,0x1c,0x13,0xe3,0x79,0xd3,0x3f,0x84,0x54,0x86,0xa0,0x8f,0xc1,0xe2, - 0x38,0x25,0x96,0x8b,0xfe,0xd0,0x18,0xea,0x88,0xd6,0x5b,0xbe,0x4f,0x09,0xc5,0x47,0xb1,0x3c,0xd7,0x9b, - 0x4d,0x77,0x18,0x66,0x10,0x74,0x40,0xe6,0x15,0xf5,0x97,0x68,0x57,0xbd,0x38,0xa6,0x95,0xca,0x6b,0x45, - 0x66,0x7a,0xd4,0xb3,0xf8,0x39,0xa8,0x02,0x0e,0x82,0x01,0x03,0xfd,0x38,0x57,0xab,0x25,0xac,0x03,0x69, - 0x0a,0x23,0x28,0xed,0x75,0x98,0x8c,0x46,0x47,0x81,0xe0,0x26,0x72,0xb6,0x71,0x02,0x14,0xe6,0x30,0xee, - 0x53,0xcd,0x70,0x91,0x7f,0x22,0x4a,0xc6,0x8d,0x8f,0xce,0xbe,0x3a,0x31,0xc9,0x66,0x8a,0xd2,0x07,0xf5, - 0x28,0x05,0x9b,0xc8,0x9f,0x9a,0x5c,0x1a,0x37,0x55,0xc2,0xcd,0x4c,0xe8,0x24,0xa2,0x59,0x47,0x2d,0x13, - 0x09,0x1c,0x40,0x0f,0x91,0x7b,0x6f,0x22,0x20,0xaa,0x09,0x51,0x3c,0x9c,0xae,0x77,0xc8,0xdc,0x6d,0x8c, - 0x17,0x6e,0x6f,0xf5,0x79,0xcb,0xd8,0xb9,0x00,0xb2,0xc5,0x40,0x68,0x28,0xca,0xd1,0x68,0x39,0x58,0x5f, - 0xa1,0x74,0xce,0xc0,0x5f,0x99,0x12,0xa5,0x57,0xa2,0x94,0x12,0x69,0x72,0x5a,0x84,0xa5,0x13,0x2e,0x50, - 0xa9,0x94,0xa0,0x8f,0xc6,0x12,0xe7,0x2c,0x55,0x40,0x49,0xfc,0x4d,0x7d,0xd9,0xc8,0xb3,0xee,0xd6,0x6f, - 0x8e,0xb3,0x13,0x55,0x26,0xbb,0xb4,0x6a,0x8a,0xd9,0x52,0x08,0x53,0xd0,0xec,0xcb,0xf0,0x91,0x88,0xd3, - 0x54,0x3e,0xe4,0x13,0x10,0xf4,0x09,0x9d,0x8f,0x68,0x28,0xd0,0x8e,0x90,0x41,0x34,0x4e,0x89,0xf7,0x8a, - 0x5f,0x6a,0x19,0x97,0x29,0x0a,0xc3,0xfd,0x5d,0x56,0x49,0xa7,0xf4,0x73,0x24,0x6e,0xaa,0x61,0x9a,0x30, - 0x19,0x6d,0x05,0x8a,0x69,0x74,0x93,0xf6,0x99,0xee,0xcd,0xe0,0xc1,0x64,0x5b,0x30,0x9b,0xa2,0x31,0xde, - 0x97,0xf6,0x1c,0x00,0x0d,0x7b,0x47,0x23,0x0c,0xd9,0x69,0x12,0xdc,0xc0,0x49,0x2c,0x7b,0xb2,0x45,0x3e, - 0x60,0x25,0x95,0xc3,0x53,0xce,0xa1,0xd4,0xb1,0xf7,0xdc,0x27,0x61,0x85,0x6b,0xef,0x33,0x27,0x9b,0x4f, - 0x5e,0x85,0x8d,0x0c,0x76,0x5c,0x59,0x6a,0xa7,0x22,0x70,0x05,0x4a,0xca,0x22,0xcd,0x6e,0x77,0x49,0xe8, - 0x51,0x37,0x01,0x5c,0xc8,0xc3,0x30,0x25,0xd2,0xbf,0x9b,0x51,0x3b,0xb3,0x07,0xbb,0x7a,0xaf,0x3c,0xfb, - 0x26,0x8c,0xde,0xf1,0x86,0x5a,0x4b,0xcf,0x7e,0xd7,0xb6,0x78,0xf8,0xeb,0xd5,0x20,0xba,0xe7,0xe1,0xf1, - 0xe6,0xf8,0x90,0xc6,0x16,0xb8,0x0a,0x5f,0xba,0x03,0xbd,0x7b,0x6c,0x18,0x80,0x7b,0x25,0xc2,0xc9,0x57, - 0xc6,0x3f,0xd5,0x44,0xe3,0xa8,0x1c,0x61,0x59,0x3c,0xa8,0x0c,0xe3,0xfe,0x8a,0x65,0x59,0xe6,0x03,0x27, - 0x49,0xb1,0x82,0x00,0xdb,0xf4,0x5b,0x6f,0xc5,0x1b,0x87,0x30,0x12,0x5a,0xdf,0xa4,0x1a,0xde,0x59,0xa6, - 0xc4,0x4a,0x35,0x23,0x67,0x00,0x64,0x97,0x92,0x7d,0x00,0x1e,0xa7,0x4b,0xaa,0x30,0x9b,0x32,0x2e,0xb0, - 0x5f,0x97,0x84,0x10,0xcb,0x07,0xb9,0xe9,0x57,0x89,0x08,0x21,0xd5,0x35,0x0f,0x0f,0x26,0x8c,0xd8,0x11, - 0xb2,0x56,0x95,0x92,0xc6,0x75,0x07,0x9d,0xc0,0xe2,0x27,0xea,0x55,0xa5,0x82,0x56,0x1b,0x3b,0x17,0x65, - 0xf9,0x11,0x6e,0xeb,0x3f,0xe9,0x2e,0xbb,0x41,0xfc,0xe4,0x0d,0xe2,0x4e,0x21,0x5d,0xfb,0x4e,0x74,0xe6, - 0xdc,0xb2,0x9e,0xc3,0x4e,0x96,0x1f,0x5f,0x44,0x2a,0xb4,0xed,0x3f,0x32,0x42,0xdb,0x40,0x9b,0x4a,0xfb, - 0xdf,0x51,0x1f,0x1e,0x6d,0x75,0xe1,0x91,0xd7,0x85,0xdd,0x37,0x10,0x47,0xfd,0x56,0xd0,0xfe,0xeb,0xf1, - 0x11,0x82,0xb3,0x39,0xed,0x68,0xad,0x60,0xc9,0x46,0xfa,0x5d,0x9a,0x68,0xc9,0x86,0x3f,0xc0,0xa8,0xae, - 0x4a,0xb4,0xd4,0x28,0x4b,0x56,0x95,0xf1,0x0f,0x8f,0x46,0x2b,0x23,0xc8,0x4d,0x9c,0x2c,0xb0,0xa1,0xe7, - 0xc6,0x09,0x71,0x1a,0x16,0xc4,0x35,0x27,0xa1,0x57,0xe5,0xfb,0x0e,0xb7,0x4a,0xd5,0xb0,0x2d,0x44,0x5b, - 0x0f,0xa4,0x9d,0x09,0xad,0x7c,0xd2,0xce,0x8b,0x40,0x4b,0x50,0xd0,0x11,0x70,0x94,0x4f,0xb0,0x1a,0x7c, - 0xaa,0x15,0xec,0xbc,0xce,0x9a,0x16,0xf0,0x15,0xe8,0xf3,0x81,0x9a,0x56,0xe3,0x49,0x15,0x46,0x71,0x5d, - 0xc1,0xc0,0x66,0x37,0xeb,0x57,0xaf,0x68,0x45,0x58,0xe4,0x49,0x51,0xfa,0x74,0x63,0x05,0x74,0x63,0x6e, - 0x18,0xdf,0x21,0xcd,0x16,0x00,0xdf,0xa5,0x2c,0x29,0x52,0xde,0x22,0xd4,0x0b,0x89,0x05,0x85,0xf0,0x10, - 0x7c,0xb0,0x65,0x90,0x9f,0x55,0xe5,0x1f,0x70,0x9c,0x16,0x9b,0xa8,0x46,0xd3,0xea,0xe6,0x3c,0x6e,0x7c, - 0x76,0x2c,0x67,0x28,0x2f,0x60,0x01,0x48,0x87,0xb3,0x31,0xcc,0x2c,0xe0,0x3d,0x00,0x37,0x40,0x58,0x70, - 0x6a,0x5a,0xa7,0x69,0xd1,0x3a,0xd4,0x39,0x26,0xb9,0xbc,0x80,0x38,0x55,0x12,0x96,0x1d,0xfa,0x3c,0xda, - 0xfa,0xa6,0xa4,0xaf,0x4e,0x38,0x00,0x42,0x44,0xb3,0x7e,0x5e,0x45,0xf4,0x7f,0x38,0xa1,0xa3,0xa0,0xf2, - 0x17,0xf4,0x8f,0xb0,0x1d,0xea,0x4a,0x6b,0xe4,0x9c,0x6c,0x5a,0x81,0x30,0x98,0x15,0x7c,0x5c,0xef,0x6e, - 0xd1,0x30,0x56,0xf2,0xec,0xe9,0xcd,0x9c,0x68,0x6e,0xe4,0xf0,0x41,0xa1,0x41,0xaf,0x57,0x8f,0x00,0x21, - 0x89,0x5f,0x43,0x66,0x45,0xda,0xdc,0x34,0x02,0x0f,0xb8,0x1e,0xff,0x1e,0x6a,0x61,0x82,0xb5,0xdf,0x57, - 0xb5,0xa2,0x03,0x9f,0x1b,0x4b,0xe5,0x74,0xa7,0xa9,0x07,0x35,0x30,0x61,0x8a,0x88,0x68,0x81,0xeb,0x0a, - 0xc8,0x19,0xee,0x96,0xb0,0xd0,0xa6,0x23,0x7f,0x4c,0x7f,0x6b,0xd4,0x8d,0xf3,0x50,0x4a,0x27,0x7f,0x60, - 0x59,0x54,0x45,0xfc,0x3a,0x1b,0x5f,0xd6,0x6a,0x3e,0x24,0x6a,0x3c,0x53,0x88,0xc3,0xc2,0x28,0x84,0x9e, - 0xe0,0xd3,0x46,0xf4,0x11,0x3f,0xc1,0xcc,0x3c,0x22,0xf8,0xa4,0x53,0x64,0x42,0xb5,0x4c,0xb8,0xab,0x44, - 0xed,0xa3,0xae,0x49,0x14,0xb9,0xfe,0x14,0xbc,0x1e,0x29,0xc8,0xd3,0x3c,0x0c,0x75,0x6f,0x22,0x69,0x45, - 0x3a,0x68,0x5a,0xf0,0x16,0xe6,0x87,0x50,0x0f,0xd1,0x53,0x4b,0x45,0x37,0x65,0xbf,0x0c,0x54,0xad,0x64, - 0x34,0x44,0x3b,0x6c,0xaa,0xb6,0xe0,0x08,0xe2,0x30,0xc2,0xbb,0x90,0xfe,0x0d,0x81,0x01,0x61,0x81,0xe1, - 0xde,0x88,0x4a,0x8a,0xf4,0x29,0x07,0x7b,0x40,0x5a,0x87,0x11,0x4f,0x4f,0x4d,0xb3,0x81,0x1e,0xc7,0x8d, - 0x8c,0x0b,0x52,0x06,0x7a,0x62,0x13,0x97,0x29,0xcd,0x5e,0x4d,0x23,0x44,0xba,0xec,0xfe,0x94,0x66,0x01, - 0x1f,0x4c,0x14,0x7d,0xa2,0x6a,0x5d,0x0c,0x9b,0x98,0xc5,0x5f,0xb5,0x1b,0xd5,0xf7,0xcc,0x05,0xea,0x91, - 0x61,0xc7,0x00,0x88,0x84,0x5a,0x00,0x35,0xe3,0xd8,0x73,0x44,0x31,0x01,0xd8,0x97,0xeb,0xb5,0xe6,0x6b, - 0xf9,0x95,0xce,0x20,0x5d,0x38,0xef,0x16,0xce,0xdb,0x85,0x73,0x14,0xde,0x6c,0x1f,0x58,0xdf,0x7a,0x32, - 0x57,0xb1,0xb2,0x67,0xf1,0x2c,0x61,0x24,0x6c,0x6c,0x6d,0x22,0x6f,0x04,0x96,0xee,0xb3,0x9f,0x7d,0x66, - 0x2d,0x04,0x53,0x9e,0xd5,0x2f,0x59,0xa7,0xbb,0x5e,0xff,0x80,0x78,0x2b,0xf2,0x02,0x95,0x62,0x76,0xfc, - 0x8e,0xb5,0x9a,0xf6,0x5c,0x3f,0x4a,0xcf,0xc5,0x6f,0x1f,0x8e,0xa6,0x42,0xfd,0xd0,0x36,0x80,0x07,0x80, - 0x21,0x86,0x41,0x75,0x78,0x9c,0xdd,0xbf,0x5b,0xd1,0x58,0x6c,0x6f,0x40,0x2b,0xf8,0xa2,0x59,0xf7,0xc1, - 0x2f,0xda,0xec,0xa0,0x2b,0x5c,0x88,0x3e,0x23,0x9f,0x37,0x5c,0x0a,0x68,0x55,0x5e,0x89,0x8a,0xdd,0x1a, - 0x20,0x3c,0xed,0xc8,0x92,0x69,0xd3,0xfc,0x9b,0x72,0xed,0x84,0x57,0x1e,0x25,0xfa,0xa3,0x39,0xb7,0x8a, - 0xf1,0x02,0xa7,0x3b,0x81,0x9d,0x88,0x83,0xe4,0xad,0xa3,0x61,0xcb,0x24,0xf3,0x86,0x33,0x67,0xb3,0x4e, - 0x2e,0x5b,0x0c,0x72,0x65,0x0b,0xea,0x97,0xe2,0x8d,0xce,0x66,0x52,0x3f,0xaa,0x8c,0x88,0x5a,0x4a,0x14, - 0x8a,0xcf,0xd3,0x46,0x67,0x3e,0x17,0x26,0x7c,0xd6,0xae,0x3b,0x0c,0x3c,0xfc,0xd3,0x8a,0x3b,0x66,0x44, - 0x68,0x5a,0x1a,0xc9,0x7c,0x6d,0x9a,0x94,0xbc,0x2d,0x50,0x05,0xcb,0x10,0xd3,0xa6,0xa9,0x6a,0xfb,0x40, - 0xe8,0xab,0x6c,0xac,0x17,0xb0,0x9f,0xa8,0x4a,0x23,0x3b,0x17,0x6b,0xba,0xd2,0xc9,0xb5,0x91,0xb0,0x5e, - 0x43,0x76,0x29,0x0a,0xdf,0x94,0x3f,0x88,0xc2,0xc2,0x80,0x01,0xdb,0x62,0x98,0x38,0x71,0xc7,0x27,0x84, - 0x14,0x78,0x3f,0x95,0x9e,0x04,0xa8,0xd6,0x5f,0x31,0x32,0xab,0xa1,0x66,0xc4,0x0f,0x0a,0x8f,0x82,0x26, - 0x5b,0x2c,0xe7,0xc4,0x62,0x01,0xea,0x4a,0x88,0xf9,0xc7,0x13,0xae,0x40,0x23,0x89,0x09,0xba,0xa6,0xc5, - 0xd9,0xeb,0x35,0x7d,0x11,0x4f,0x4c,0xfd,0x1b,0x1b,0xa0,0x68,0x2e,0x18,0xaa,0x38,0x9e,0x9f,0x68,0xc5, - 0x50,0x95,0x39,0x77,0x67,0x24,0xbb,0x08,0x20,0x4e,0x4a,0x90,0xdd,0x06,0xa1,0xbb,0x6d,0x10,0x25,0x12, - 0x66,0x87,0xf7,0x04,0xef,0x30,0x4f,0x8f,0x9f,0x79,0xda,0x48,0xcd,0xa9,0xdd,0x02,0xa7,0x1d,0x98,0x06, - 0x5d,0x3a,0xc6,0xe7,0xa2,0x59,0x8a,0x89,0xf3,0xa1,0x27,0x1c,0x83,0xac,0xa6,0x3c,0xa1,0xd9,0xef,0x51, - 0x17,0x96,0x99,0x51,0x3b,0x8e,0x32,0xbd,0x13,0x35,0x6d,0x1a,0x8d,0x22,0x56,0x31,0x9f,0xe6,0x45,0xca, - 0xbc,0xef,0xe7,0xa8,0xdd,0x34,0xb3,0x94,0xb6,0x51,0x4d,0x9f,0x0a,0xd3,0xfc,0x5c,0x7f,0x4d,0xd4,0x96, - 0xe2,0xc6,0x0c,0x4d,0x6a,0xd8,0xf6,0xad,0x92,0x86,0x02,0x68,0xb7,0xee,0xac,0x33,0xbc,0x1e,0xdd,0x78, - 0x2f,0x20,0xe7,0xba,0xb3,0x75,0xc7,0xac,0xb2,0x3f,0x6f,0xe8,0xab,0xcb,0x61,0x35,0x6a,0xcd,0x26,0xb9, - 0x5c,0x0f,0x41,0xcd,0x34,0xf0,0x85,0x82,0x75,0xd6,0x16,0x68,0x18,0x42,0x5d,0x33,0xb8,0x9e,0x30,0x80, - 0xf7,0x52,0xd1,0xdd,0x4b,0xa0,0xf8,0x0a,0x1b,0xda,0xd2,0xc6,0x8e,0x28,0x40,0xf4,0x15,0x20,0x90,0x07, - 0x81,0xa1,0xc0,0x69,0x34,0x44,0x04,0x7d,0x47,0x2f,0xec,0x36,0xc9,0x0c,0x60,0xb6,0x80,0x9d,0x01,0x0a, - 0xc4,0xc1,0xc0,0x47,0x0a,0xa0,0x19,0x84,0x26,0x51,0x0d,0x0f,0xfc,0x13,0x53,0x87,0xa7,0x30,0x26,0xaa, - 0x1a,0x5f,0x83,0xea,0x9b,0xf1,0xe4,0xd3,0x7d,0x22,0xcf,0xa6,0x44,0x51,0x3e,0x46,0xe0,0xa8,0xc7,0xd5, - 0x83,0x53,0x4b,0x71,0x3c,0xe6,0xee,0x26,0x04,0x04,0xa7,0xd5,0xf1,0xe3,0xea,0x24,0xa2,0x82,0xea,0xa8, - 0x62,0xa1,0x2d,0x53,0x1f,0xc3,0x6a,0x55,0x84,0xc6,0x92,0xea,0xaa,0xb2,0x94,0x4b,0x95,0x9c,0xda,0x17, - 0xaa,0x25,0xb1,0x55,0xa2,0x90,0xa1,0xa6,0xa9,0x26,0x28,0xb5,0x3f,0x56,0x09,0x3a,0x7a,0xd8,0x92,0xb3, - 0xfc,0x09,0xa1,0xed,0x2f,0xf2,0x81,0xc2,0xfa,0x41,0x94,0xbb,0x8b,0x90,0x9e,0x45,0x74,0x4b,0x45,0xae, - 0x12,0xd0,0x7d,0x66,0xf5,0xf0,0x1d,0x68,0xae,0xcb,0xc5,0xa8,0x1a,0x9e,0x5e,0x61,0x25,0xb2,0x8a,0x80, - 0xaa,0x80,0x34,0xfb,0x34,0xa7,0x93,0x6b,0x45,0x08,0x6a,0xba,0xb7,0x47,0xab,0x4e,0x7c,0x92,0x08,0x6a, - 0x18,0x1e,0x08,0xcf,0xab,0xdf,0xa9,0xd8,0x1d,0xe0,0xa5,0xcb,0xa6,0x2c,0xe1,0xeb,0xfb,0x3b,0x31,0x3e, - 0xbc,0x3e,0xb3,0x39,0xa1,0x8f,0xc0,0x5b,0x9d,0xb9,0x45,0xd9,0x77,0x2a,0x28,0x60,0xb6,0x8d,0xf1,0xd8, - 0x04,0x8c,0xfa,0x43,0x00,0xb8,0x51,0x54,0xa8,0xce,0xb6,0xad,0x9e,0x25,0x1b,0xa1,0xf8,0x6e,0xd3,0xd4, - 0x14,0xf4,0xa9,0xd7,0xec,0xca,0x36,0x2b,0x10,0xc9,0x1a,0xad,0x3e,0x99,0x54,0x31,0x0e,0x75,0xc7,0xaa, - 0xf1,0x8c,0xad,0xa8,0x0a,0xd3,0x89,0xf3,0x28,0x36,0x79,0x05,0xfe,0x8e,0x2b,0x9c,0xff,0x88,0x3a,0x47, - 0x20,0x4c,0xf3,0x65,0xca,0x23,0x2f,0x3e,0x37,0x5f,0x15,0xf8,0x3b,0xe6,0xbf,0xf1,0x79,0x74,0x6b,0x7f, - 0x9b,0x76,0x7f,0x67,0x3e,0xbe,0xdc,0x52,0x28,0xb1,0x91,0xdc,0x29,0x4e,0xdd,0x15,0xad,0xc2,0x4f,0xb2, - 0x5a,0x34,0xed,0xfd,0xe9,0x5a,0xb0,0x63,0x25,0xf7,0x2c,0xb6,0x6b,0xae,0x61,0x50,0x9b,0x41,0x2f,0x01, - 0xd9,0x6f,0xa4,0x3c,0x7d,0x54,0xe3,0x34,0x41,0x8d,0x68,0x2e,0xbc,0x6d,0x3f,0xcd,0x9c,0x28,0xc9,0xf8, - 0x0b,0xb2,0x8a,0x08,0x32,0x57,0x85,0xc8,0x50,0xda,0x78,0x3c,0x52,0xdb,0x52,0x30,0x56,0x03,0x32,0x46, - 0xa6,0x4d,0x73,0xe7,0x4a,0x3c,0xb9,0x45,0x38,0xec,0xec,0x5f,0x1c,0xca,0xcc,0xfe,0xdc,0xe2,0xe8,0x87, - 0x62,0xfc,0x36,0x9b,0xcd,0x91,0x53,0x5e,0x15,0x3f,0x88,0x7d,0xc3,0x70,0x96,0xcf,0x9b,0xac,0xea,0xb3, - 0x4e,0xfe,0x2b,0xfa,0xc3,0xa1,0xd3,0xf1,0x6d,0xa2,0xb8,0x63,0x3a,0xd1,0xc3,0x8d,0xdc,0x38,0x39,0x04, - 0xc8,0x57,0xa2,0x0c,0x10,0x3e,0x74,0x08,0xf1,0x29,0x64,0x91,0xa3,0x7a,0xc4,0xa3,0xa9,0x59,0xd0,0x74, - 0x99,0x4f,0xb1,0x8f,0x98,0xce,0xf7,0x52,0x88,0x1e,0xa2,0x6f,0x12,0x2f,0x05,0xa2,0xd9,0x33,0x1a,0xec, - 0xc7,0x0d,0x31,0x09,0xe6,0xf0,0x01,0xd7,0xb7,0x0b,0xc3,0x41,0x23,0x27,0x83,0xac,0x92,0x3e,0x14,0xc8, - 0x98,0x48,0xc3,0x46,0x60,0xc6,0x35,0xf6,0xc0,0xb8,0x55,0xc3,0x11,0xb4,0x4e,0x36,0xd6,0x18,0xc8,0x5b, - 0xe4,0x8b,0x4c,0x0c,0x4c,0x2c,0x83,0x0b,0x8e,0x69,0x5b,0x26,0xcd,0x12,0xbf,0xed,0xc0,0x40,0x5a,0x00, - 0x6f,0x35,0xdc,0xd6,0x1c,0x4b,0x95,0x84,0xee,0x52,0x87,0x82,0xca,0x07,0x29,0x0b,0x6b,0x2a,0x74,0x94, - 0x36,0x37,0x07,0x5d,0x75,0xb2,0xf7,0x6d,0x03,0xc0,0xed,0xaa,0xb9,0x4e,0xaa,0x28,0xf3,0x2b,0x2a,0x07, - 0x87,0x7e,0x3d,0xb9,0x21,0x6c,0xb7,0xec,0x60,0xfc,0xaa,0xea,0x4e,0x2f,0xeb,0x6e,0x2f,0x27,0x49,0x8d, - 0x0e,0xda,0xce,0x4e,0x88,0x5f,0x54,0x4e,0x12,0xab,0xe9,0x61,0x46,0x97,0x1f,0xe0,0xd9,0xcf,0xe1,0x0d, - 0x7c,0xd3,0x27,0x6f,0xe7,0x98,0xe0,0x5b,0xbc,0x63,0xef,0xd4,0xb0,0x52,0x98,0xbe,0x23,0xa2,0xcd,0x6c, - 0xd6,0x12,0x31,0xd6,0x98,0x94,0xad,0x78,0xcf,0x5c,0x86,0x97,0x21,0x5e,0x22,0x96,0x7a,0xe7,0x09,0xb6, - 0xdc,0x7a,0xdd,0xf8,0x2e,0xca,0xba,0x2a,0x53,0x49,0x0a,0xd5,0xc6,0xf0,0x94,0x80,0x66,0x9a,0x55,0xcc, - 0x5b,0xe1,0x3b,0xa2,0x2c,0x1b,0x13,0xd2,0x16,0x1a,0x3f,0x14,0xb7,0xc6,0x3f,0x63,0xa9,0xa2,0xe3,0xba, - 0x67,0x69,0x46,0x75,0x83,0xd2,0x31,0x82,0x77,0xb6,0x74,0x42,0x0b,0x1f,0x57,0xbd,0x10,0x9b,0x5e,0x43, - 0x0c,0xa8,0x40,0xb6,0x22,0x02,0x1b,0x50,0x87,0x3f,0x79,0x24,0xe1,0x79,0x77,0x3a,0x12,0x3a,0x42,0x68, - 0x61,0xe0,0x1e,0x06,0x04,0x4f,0x84,0x8d,0xb5,0x49,0x1c,0xb7,0xe1,0x2e,0x8f,0xc6,0xec,0x9b,0xec,0x7c, - 0x57,0x89,0x1d,0xca,0x21,0xd7,0x8d,0xab,0xf1,0x51,0x41,0x0b,0x01,0x42,0x3a,0xee,0x12,0xff,0xd7,0xb6, - 0x45,0xcd,0x4c,0x16,0xe0,0xaf,0xc1,0x4f,0x6e,0x2b,0xbc,0x69,0xce,0x17,0xc8,0x1a,0x69,0x81,0x81,0x3b, - 0x82,0x72,0x91,0xf0,0x4f,0xe6,0xc4,0xd9,0xb3,0x63,0x25,0xef,0x81,0x6b,0x61,0xe5,0xe8,0x65,0x81,0x22, - 0x11,0x41,0xb9,0x4f,0x92,0x67,0x86,0x3b,0xd0,0x0f,0x2c,0x42,0x1e,0xa5,0xd0,0x8a,0xd3,0xa8,0x61,0xc9, - 0xfd,0xbe,0xe6,0xe3,0x80,0xd0,0x61,0x4d,0xf3,0x3b,0x26,0xc6,0xaf,0x5c,0x20,0xa1,0x86,0x00,0xc2,0xbe, - 0x80,0xfd,0x8e,0x75,0x1d,0x9c,0xc1,0x4f,0x48,0xdd,0xe4,0xc0,0x28,0x29,0xe4,0xed,0x60,0xa1,0x85,0x9f, - 0x2d,0x21,0xbe,0x08,0x11,0x52,0x82,0x0b,0x97,0x05,0xb3,0xef,0xc7,0xfa,0xfc,0x26,0xc2,0x29,0x3f,0x69, - 0x9d,0xad,0xf8,0x8a,0x05,0x5f,0x96,0x62,0x9c,0x08,0xb5,0x5f,0x13,0x8f,0xef,0x42,0x7a,0x39,0xa3,0xae, - 0x16,0x0d,0x28,0xc7,0x4f,0xcd,0xd6,0x3d,0x47,0x55,0x96,0xa1,0x87,0x5b,0x69,0x60,0x44,0xb0,0xef,0x00, - 0xa3,0x86,0x3d,0xa4,0x73,0xb4,0xe9,0x2c,0x71,0x15,0x8d,0x1f,0xd3,0x9f,0xf8,0x13,0xfe,0x84,0x57,0x59, - 0x28,0x9f,0x24,0x2d,0xe8,0x1a,0x4a,0xbd,0x6f,0x19,0xc6,0x9f,0x15,0x80,0x7b,0xa7,0x45,0x35,0xb0,0xff, - 0x06,0xce,0xdc,0x22,0x5c,0x65,0xbd,0x2a,0x8c,0x61,0xe4,0xbb,0xd3,0xd3,0x60,0x90,0xa9,0xdd,0xc3,0xa8, - 0x75,0xfe,0x9c,0x5a,0x52,0x41,0x77,0xef,0x2a,0xd3,0x16,0x34,0xc4,0xaa,0xe2,0x93,0x66,0x10,0x16,0xe3, - 0xe0,0x14,0x3e,0xce,0x41,0x20,0xe1,0x83,0xbc,0x29,0xb9,0xca,0x3c,0xc1,0xec,0xad,0xec,0xb5,0x04,0x27, - 0x75,0xfc,0x25,0x13,0x74,0x1c,0x2f,0x56,0xa3,0x53,0xe7,0x05,0xc0,0xc9,0x47,0x99,0x56,0xa6,0x0e,0xd0, - 0x70,0x65,0x85,0x7b,0x47,0xa6,0x35,0xcf,0xdc,0xcc,0x76,0xc0,0xd9,0x5a,0x89,0x35,0x1c,0xcc,0xad,0x60, - 0xbf,0x95,0xd7,0xaf,0x69,0x28,0x89,0xb7,0x17,0x3f,0x7a,0x6c,0x0a,0xd4,0xf0,0x4d,0xe4,0xe8,0xfa,0x52, - 0xfe,0x8c,0x19,0x01,0xe1,0x29,0x8a,0x3d,0xfe,0xab,0x12,0xf9,0x99,0xa7,0xe9,0x23,0xd4,0x09,0xf9,0xe3, - 0x88,0x35,0x7b,0xf9,0xf8,0xf8,0xc4,0xe8,0xa8,0x73,0xed,0x0d,0xbe,0x0d,0x46,0x9f,0x32,0xf1,0x0a,0x3b, - 0x2d,0x93,0xd3,0x8c,0xda,0x38,0x2d,0x38,0x2e,0xfa,0x29,0xa4,0x63,0xf4,0x33,0x4f,0x2e,0x38,0xb5,0x49, - 0x2e,0xf9,0xf7,0xf7,0xe4,0x1a,0x3f,0x79,0x72,0x86,0x9f,0x45,0x72,0xc6,0xa9,0xb3,0x64,0xc1,0xbf,0x1f, - 0x93,0x73,0xfe,0x3d,0x4b,0xae,0xf9,0xf7,0x32,0xf9,0x88,0x1f,0xe2,0xe0,0x10,0x2f,0xe3,0x74,0x95,0xe4, - 0x9c,0x7c,0x9e,0x7c,0xf4,0x7a,0xf0,0x58,0x26,0xcd,0x17,0x12,0x12,0x83,0xac,0xc1,0x4c,0xbc,0x29,0xd8, - 0xcd,0x48,0x47,0x34,0x15,0xfd,0x6e,0x23,0x2f,0xd6,0x1a,0xac,0xd2,0x99,0x7c,0x52,0x27,0x3a,0x76,0xe8, - 0x5c,0xc7,0x78,0xa9,0x13,0xd9,0x86,0xcb,0xc2,0x04,0xe6,0xc4,0x49,0xc4,0x06,0x6c,0x44,0xf1,0xa4,0xfa, - 0x9d,0xc3,0x1d,0x22,0x9b,0xf1,0x78,0x0f,0x71,0x5c,0x64,0x6c,0x87,0xb0,0x69,0xdb,0x75,0x6a,0xa2,0x28, - 0x17,0x47,0xb8,0x54,0x68,0x40,0x44,0x4d,0x81,0x47,0xdc,0xee,0x64,0x34,0x31,0xae,0x81,0x66,0xe7,0x24, - 0xa9,0xf2,0xce,0x8b,0xc4,0x35,0x19,0x46,0x6a,0xeb,0x4c,0x82,0x59,0xb7,0x7b,0xc3,0x10,0x10,0x53,0xe2, - 0xb4,0x16,0xdb,0xba,0xb1,0xa6,0x3a,0xb7,0x82,0x99,0x18,0x69,0xc9,0x1d,0x0e,0xb1,0xaf,0x11,0xaf,0x33, - 0x2f,0x28,0xd9,0xf0,0xc9,0x99,0xeb,0xb9,0x1a,0x95,0x27,0x11,0x49,0x68,0x4c,0xe5,0x26,0xbe,0xbd,0x0d, - 0xa3,0x6a,0x69,0x37,0xe2,0xd1,0x32,0x0f,0xb3,0x5b,0x4c,0x8e,0x59,0xd3,0x2a,0x66,0xc7,0x9e,0xed,0x19, - 0xe6,0x57,0x13,0x3c,0xa2,0x5b,0xc9,0x20,0xc9,0xe2,0xa1,0xcc,0xa9,0x8f,0x16,0xf5,0x9c,0xc2,0x3f,0x50, - 0xec,0xef,0xe4,0xdc,0x4f,0xe6,0x46,0x36,0x47,0xe5,0xfb,0x6c,0x3c,0xf4,0x84,0xac,0x98,0x81,0x87,0xd4, - 0x2c,0x9f,0x46,0x9e,0xd6,0x32,0xf4,0x02,0x5c,0x55,0xe2,0x8d,0x8c,0x23,0x8a,0x0a,0xb2,0xa2,0x86,0xe5, - 0x8e,0xfa,0x19,0xae,0xb5,0x4e,0xb8,0xe6,0xd2,0xb4,0x58,0xce,0x84,0x96,0x9d,0x7a,0x65,0x4c,0xd2,0x48, - 0xd7,0x89,0x00,0x43,0x84,0x67,0x74,0xad,0xfa,0xad,0x53,0xaf,0x97,0xca,0x72,0x32,0x11,0xf5,0xf1,0xb2, - 0xd4,0x91,0x51,0x59,0xb8,0xa4,0x44,0x24,0xe8,0x84,0x6a,0xe6,0x3e,0xe0,0x9a,0x79,0xcf,0x88,0xaa,0x6a, - 0x1c,0x55,0x95,0x3d,0x20,0xea,0x85,0xd0,0x1e,0x23,0xed,0x3b,0x54,0x68,0x92,0xbd,0xe7,0x53,0x29,0x8c, - 0x36,0x6a,0x95,0x9c,0xb6,0xb4,0x31,0xae,0xff,0x09,0xe4,0xaa,0x25,0xc1,0xf9,0x7a,0x3d,0x0f,0x59,0x01, - 0xd4,0x29,0xda,0x9e,0x24,0x26,0xc8,0x24,0x7a,0x18,0xfa,0x15,0x72,0xd0,0x93,0x69,0x52,0x85,0x2b,0x35, - 0x73,0x2e,0x0f,0x21,0x16,0xa2,0xcf,0x7e,0x67,0xca,0x5e,0x8e,0xe3,0xcc,0x9f,0xd3,0xbd,0x3d,0x49,0xe5, - 0x2a,0xe2,0x26,0x9c,0x3a,0xf1,0x67,0xd4,0x1b,0x6f,0xd9,0x2b,0xc0,0x1f,0xc2,0xf2,0xaa,0x93,0xc4,0x75, - 0x29,0xd4,0x65,0xd6,0xda,0x1f,0x05,0x8d,0x59,0x67,0xc0,0x20,0x80,0x8b,0xb9,0xe5,0x6b,0xaf,0x1e,0x17, - 0xd5,0xef,0x98,0x26,0x00,0xd6,0x94,0x18,0x82,0x79,0x7a,0x3d,0xb6,0x05,0x69,0x2a,0x62,0x62,0x47,0x8f, - 0x24,0xe2,0x99,0xaf,0x8a,0xeb,0x0c,0x34,0xf3,0x80,0x2f,0xf4,0x3f,0x97,0x99,0x54,0xba,0xe6,0xf5,0xfa, - 0xfe,0xc1,0x81,0xee,0x98,0x0e,0xa3,0x06,0x8f,0xf5,0xbf,0xd2,0x82,0x5c,0x11,0xc1,0x55,0x99,0x2f,0x23, - 0x20,0xb1,0xdd,0x43,0x65,0xdb,0x1b,0xb7,0x46,0x18,0xbb,0xef,0x37,0x0e,0xf6,0x8c,0x5a,0x61,0x13,0xae, - 0x08,0x0d,0xcf,0x69,0xf3,0x58,0x38,0xbe,0x4c,0x56,0x6a,0x91,0x94,0xea,0x9c,0x70,0xde,0x35,0x1d,0x28, - 0x67,0x74,0xb6,0x5c,0xd1,0x61,0x40,0x98,0xee,0xaa,0x25,0x7a,0x4c,0x2e,0x4d,0xc2,0xcb,0x8c,0x50,0xbd, - 0x04,0xd2,0x5b,0x28,0xdd,0x04,0x71,0xf4,0x06,0xd1,0xc7,0xd7,0xaa,0x49,0xcf,0xe3,0xb3,0x8d,0xba,0x1a, - 0x95,0x49,0xc9,0x64,0xfa,0x6b,0xa0,0x09,0xc5,0x51,0x80,0x89,0x7e,0x9d,0x7b,0x46,0x9a,0x1e,0x27,0x85, - 0x28,0xd1,0xc8,0x05,0x19,0xc8,0x0f,0x7c,0x90,0x10,0xfd,0xc8,0x4c,0x76,0xc0,0x12,0xe7,0x4e,0x81,0x0c, - 0x02,0x2f,0x2a,0x91,0x17,0x70,0xe1,0x1d,0x85,0x85,0x9c,0x3d,0x2c,0x07,0x5e,0x1a,0x8a,0x30,0x62,0x85, - 0x86,0xfe,0x82,0xeb,0xd2,0xc6,0x24,0xc5,0x50,0xbb,0xef,0x09,0xe5,0x37,0xa2,0xfe,0x11,0x85,0x17,0x8d, - 0xf1,0x37,0x39,0x36,0x5f,0x80,0x64,0x3a,0x4b,0x27,0x1f,0xed,0x49,0xcd,0x85,0x62,0x2e,0xd4,0x2d,0xb3, - 0xa1,0xf5,0x33,0xb4,0x7d,0x29,0xd4,0xf1,0xcc,0xed,0xf6,0x56,0x90,0x2c,0x5b,0xd0,0x99,0x6f,0x11,0x32, - 0x4d,0x2d,0xe6,0xb8,0x41,0xe0,0xe0,0x42,0x28,0x58,0x38,0x6e,0xbb,0x62,0x4d,0x08,0x4b,0x9b,0x26,0x9c, - 0x3b,0x82,0x69,0xc5,0xd4,0xad,0x89,0xbf,0x49,0x34,0xfe,0x2a,0x1a,0x7d,0x4f,0x28,0x7f,0xae,0x68,0xeb, - 0x80,0x06,0x5b,0xaf,0xf1,0x3a,0x91,0xd7,0x43,0x4b,0xac,0xd6,0x9b,0x0d,0xa4,0xe3,0x1a,0xeb,0x99,0x0e, - 0x99,0x0e,0xa7,0x73,0x67,0x26,0xed,0x2d,0x57,0x9b,0x0e,0xc8,0xec,0x80,0x75,0x9f,0xd3,0x76,0x4f,0xa3, - 0x96,0x64,0x7c,0x42,0x18,0x6d,0x7e,0x92,0x3c,0x0b,0xe7,0xd4,0x19,0x3e,0xef,0x35,0xa9,0x06,0xc4,0xc4, - 0x63,0x25,0xd8,0x78,0x88,0xd3,0xca,0xbc,0x2a,0xe4,0x70,0x8d,0x2e,0x47,0x5e,0x79,0x7a,0x57,0xcc,0xa3, - 0x3e,0xc6,0xb9,0x44,0x53,0xce,0x56,0x26,0x84,0xf4,0xd2,0xa1,0x50,0xb7,0x9e,0x4d,0xc1,0x8a,0x0e,0x48, - 0xb5,0x72,0x96,0x41,0x5b,0x6a,0xbd,0x99,0x7f,0xac,0xaa,0x99,0x67,0x42,0x9f,0xc2,0xd5,0x92,0xf5,0x15, - 0x21,0x95,0x02,0xe0,0x43,0xab,0x2e,0x24,0x0f,0xe0,0x8b,0x33,0x13,0x29,0x43,0xfb,0x73,0x06,0x73,0x97, - 0x99,0x1c,0x93,0xd2,0xc9,0x29,0xa8,0x25,0x16,0x4d,0xe3,0x97,0x5e,0xc4,0xa5,0xe1,0x75,0xa1,0xfc,0x69, - 0x4f,0x11,0x83,0x88,0x36,0x9b,0x06,0x81,0x25,0x95,0x63,0x06,0xb4,0xc4,0xbc,0x2e,0x99,0x1e,0xe0,0x86, - 0x96,0xd1,0x66,0xd7,0xc7,0xe9,0x99,0x51,0x44,0x66,0x56,0x07,0xd9,0xb1,0x41,0x78,0x51,0xf9,0xb2,0x51, - 0x4d,0xbb,0xbe,0xa8,0x44,0xac,0x29,0x5f,0x41,0xfc,0x9f,0x27,0xcf,0xe1,0x9e,0x34,0xb2,0x29,0x90,0xf2, - 0xf5,0x09,0x84,0x3d,0x88,0xd6,0xb0,0x90,0xd9,0x47,0xf8,0xbe,0xea,0x47,0x02,0xae,0x9c,0x88,0x10,0xe2, - 0x86,0x19,0xca,0xd0,0xec,0x85,0x07,0xf7,0x12,0xe2,0x74,0x62,0xf5,0x21,0xe2,0x5f,0x11,0x5c,0xae,0xb2, - 0x7d,0x8b,0xff,0xf7,0x89,0x9c,0x07,0x29,0x30,0x08,0x2f,0xc6,0x01,0xbd,0x5c,0x30,0x53,0x51,0xaa,0x5e, - 0xbf,0x8e,0x54,0xdd,0x3c,0x26,0x54,0x15,0x57,0xca,0x1a,0x36,0xc5,0x33,0x65,0x49,0xcc,0x78,0xca,0x88, - 0x69,0xe2,0x30,0x15,0x31,0xeb,0xab,0x48,0x82,0xf9,0x5c,0xaa,0x85,0x3a,0x57,0xd7,0xea,0x4c,0x5d,0x79, - 0xb6,0xd5,0x88,0x71,0xaf,0xc9,0x1d,0x22,0x9b,0x8c,0xba,0xb2,0xcd,0xb7,0xa4,0x6c,0xf6,0x96,0xc2,0x90, - 0x21,0x9c,0x24,0xd8,0x06,0x29,0x11,0xf9,0xd2,0xa5,0x88,0x16,0x78,0x2e,0x19,0xaf,0x2a,0x4f,0xe6,0x9c, - 0xb7,0x88,0xa8,0x86,0xbe,0x06,0xa5,0x91,0x1a,0x7b,0x07,0xab,0x8a,0x25,0x34,0x3c,0x6a,0x15,0xc8,0x59, - 0xc3,0x8e,0xb8,0x64,0xe0,0xd5,0x88,0x83,0xf5,0x4b,0xf2,0x2e,0xe3,0x2d,0x3e,0x1d,0x75,0x3a,0x59,0xf7, - 0x1f,0xbe,0x88,0xf0,0x0f,0xa8,0x4e,0x21,0xfa,0x20,0xb8,0xf1,0x29,0x59,0x42,0xf1,0x22,0x29,0x8b,0xe5, - 0x1e,0x00,0xeb,0xfd,0x84,0x9b,0x9d,0x60,0xca,0x54,0x8d,0x89,0xbe,0x09,0xe7,0x49,0x1d,0x8d,0x8f,0x3f, - 0xd2,0x30,0x4f,0x3a,0x46,0xb6,0x73,0x17,0x8e,0x8a,0x88,0x08,0x17,0x40,0x06,0x73,0x89,0x5e,0x22,0x90, - 0x8c,0xc8,0x9d,0x60,0x0a,0x5d,0xfa,0xa6,0xd0,0x19,0x4d,0x58,0x79,0x5c,0x9f,0x44,0x7d,0xfe,0xab,0x44, - 0xdc,0xd0,0x39,0x36,0x3b,0x26,0x3a,0xca,0x06,0x03,0x39,0xe9,0x58,0xe5,0x4f,0xa2,0xb1,0x71,0xd1,0xfa, - 0xe6,0x80,0x46,0xf8,0x6d,0x48,0x35,0xe6,0xe1,0x44,0xc1,0xec,0x84,0xfd,0xe9,0x89,0x51,0x24,0x32,0x8d, - 0x46,0x46,0x33,0xf3,0x2d,0xe1,0x4b,0x60,0x00,0xa0,0xa6,0x8f,0xe1,0x8a,0x95,0x6b,0x83,0x09,0xe5,0x89, - 0x22,0x1b,0xf7,0x53,0xe9,0xf0,0xfd,0x84,0x17,0x3c,0x8d,0xe0,0x8c,0x16,0x30,0x8a,0x61,0xf3,0x38,0x46, - 0x15,0xe3,0x4e,0x05,0x08,0x44,0x25,0xd6,0x0c,0xf2,0x55,0xf8,0x11,0xf8,0x30,0xfe,0x96,0xfe,0x4a,0x9b, - 0xdd,0x0f,0xa4,0xb9,0x98,0x90,0x71,0x69,0xe5,0x64,0xbc,0xf0,0x13,0x68,0x23,0x99,0xe4,0x98,0x80,0x4f, - 0x15,0x60,0x60,0xb8,0x62,0xb6,0x95,0xd8,0xef,0x4b,0x80,0x79,0x30,0x48,0x65,0x60,0xf4,0xf7,0x34,0x30, - 0x9d,0x45,0xa3,0x0e,0xef,0x6d,0x68,0x5d,0xb4,0xec,0x27,0xc6,0x32,0x3e,0xab,0xd8,0x64,0xe3,0x2f,0xea, - 0x55,0xb6,0xb9,0x76,0x42,0x22,0x16,0x5e,0x25,0xcb,0x8f,0xbc,0x84,0x03,0x53,0x4f,0xd6,0xf1,0x89,0xca, - 0x3c,0x73,0x75,0xb6,0x0e,0xd9,0x12,0x8f,0x96,0xd1,0x38,0x9c,0x25,0xf9,0xf0,0xce,0x65,0x41,0x07,0x2b, - 0xa2,0x55,0xc9,0xd3,0xb0,0xa8,0x59,0x16,0x74,0x4e,0x64,0x53,0x7a,0x8e,0x80,0xae,0xf5,0x12,0x81,0x10, - 0x08,0xdf,0xac,0x20,0x19,0xcb,0xeb,0xb7,0x59,0x9d,0x55,0x44,0xf6,0x50,0x36,0xa5,0x8e,0x35,0x36,0xa1, - 0x2c,0xf6,0xe3,0x7d,0x33,0x4f,0x1b,0x04,0xb6,0xd0,0x1f,0xe3,0x3b,0xec,0xbf,0x36,0xfe,0xc8,0x99,0x60, - 0x4d,0x5e,0x84,0xb9,0x27,0xa1,0xb3,0xa8,0xa8,0x0e,0x40,0x5f,0x8e,0x89,0x05,0x9a,0xd2,0xb7,0x39,0x8e, - 0x9b,0x28,0xd6,0xcd,0x94,0xbd,0xb5,0x45,0xf1,0x2a,0xa1,0xe2,0xa5,0x14,0xf7,0x44,0xa1,0x2b,0x8c,0xd2, - 0x73,0x54,0xa9,0xc2,0xdc,0xb2,0x34,0x39,0xfc,0xc2,0x4a,0xe2,0x90,0xca,0x2a,0xcb,0xcf,0x8b,0xd7,0xc6, - 0x9d,0x99,0x26,0x85,0x60,0x80,0x37,0xbf,0x41,0x77,0x2c,0xb5,0x6c,0xe8,0x0b,0x83,0xd0,0x3c,0x5b,0x6c, - 0x0e,0x48,0xe5,0x72,0xec,0xe6,0x7a,0x30,0xe1,0x0d,0xa6,0x39,0x36,0x57,0x80,0x36,0x1b,0xd1,0x3f,0x73, - 0x0d,0x67,0xc4,0x81,0xcd,0x87,0x6c,0xa9,0x50,0x08,0x66,0xa3,0x7d,0xce,0x3d,0x24,0x4c,0xce,0xc4,0xf8, - 0x2a,0x8a,0x81,0x72,0x36,0x1e,0x26,0xf3,0xbc,0x33,0xfc,0x88,0x73,0x56,0x4c,0xc0,0x8a,0xd9,0x7a,0xb5, - 0xcc,0x2a,0x73,0x02,0xa1,0x9c,0x4e,0x61,0x12,0x84,0x4d,0x4f,0xf9,0xdd,0x58,0x4a,0xdc,0xb4,0xdf,0x13, - 0xe3,0x60,0xd2,0xb5,0xb6,0x46,0x28,0x36,0x47,0x88,0xe0,0x4c,0x13,0x66,0xd3,0x38,0xbe,0x81,0x74,0xac, - 0xb3,0x94,0x58,0x7e,0x9d,0x62,0x0f,0xc8,0xd2,0xe8,0xeb,0xcb,0x93,0x5d,0xb1,0x85,0x84,0x30,0x80,0x7d, - 0x24,0x11,0x42,0xa6,0x81,0x38,0xbb,0xc7,0x1a,0x77,0x4b,0x74,0xa5,0x49,0x58,0x42,0x69,0x45,0xd2,0x95, - 0x97,0x8e,0x8b,0x98,0xb5,0xeb,0x5b,0x76,0x70,0xe2,0x84,0x60,0xfb,0x22,0xca,0x93,0xcc,0x57,0x9e,0x84, - 0x8d,0x13,0xe2,0x82,0xec,0xfc,0x26,0x39,0xa0,0x35,0x69,0xa7,0x3d,0x38,0xc0,0x02,0xe9,0x88,0x5c,0x48, - 0x70,0x6e,0x71,0x6e,0xb7,0x15,0x46,0x38,0xaf,0x30,0x46,0xcf,0xe9,0x7e,0xc3,0xde,0xed,0xf0,0x0e,0xee, - 0x4e,0x1a,0x1d,0x58,0xa1,0xb7,0x80,0xc9,0x73,0x28,0x9e,0xdb,0x65,0xb4,0xd9,0x15,0x47,0x9c,0x71,0x1b, - 0xe5,0xb8,0xe1,0xd4,0x93,0x04,0xa1,0x50,0xb6,0x8d,0x07,0x9e,0x66,0x36,0x14,0xc9,0x29,0xfc,0xfa,0x5b, - 0x46,0x96,0x6f,0x5a,0xa6,0x10,0xec,0x89,0x88,0x33,0xbd,0x43,0x34,0xb0,0x13,0xa6,0xf7,0xd5,0x6f,0x59, - 0x8b,0x3e,0xe9,0xae,0xce,0xd8,0x77,0x71,0xff,0x66,0xff,0x30,0xde,0x56,0xcb,0x8c,0x7d,0xe7,0xfc,0x4e, - 0x69,0x68,0xe5,0xd4,0x6e,0x68,0xe3,0x1d,0x48,0xc4,0xaf,0x13,0xe0,0x76,0x13,0xef,0xa0,0x90,0x50,0xd5, - 0xec,0x9d,0xda,0x68,0xb9,0xb8,0x27,0x41,0x7c,0xd2,0xb1,0x06,0x60,0x8d,0x28,0xc3,0x29,0x74,0x2d,0x0c, - 0x9e,0xa7,0x8c,0xe7,0xba,0x70,0x69,0x22,0xea,0xc2,0xbe,0x9d,0x4d,0x1a,0x35,0x77,0xf0,0x06,0x42,0xb1, - 0x2d,0xc3,0xa2,0x51,0x0d,0x59,0x31,0x1f,0xf6,0xcf,0x41,0x91,0x95,0xec,0x24,0xb8,0xf1,0xc4,0x3d,0xcf, - 0xb7,0xd4,0x0a,0x6c,0x72,0xbf,0x9b,0xb3,0x6b,0x16,0xa3,0x18,0x78,0xa6,0xe1,0x77,0xbd,0xce,0x5d,0x0b, - 0xcf,0x35,0xb1,0x3c,0xbc,0x33,0xa5,0x21,0x56,0x25,0x7c,0xb3,0x32,0xab,0xe2,0x5f,0xf1,0x1d,0x94,0x9e, - 0xb9,0x7f,0xe6,0x7b,0x60,0xdf,0x88,0x3c,0xf9,0x31,0x54,0x02,0xf1,0x33,0xde,0xf3,0x2e,0x41,0x15,0xfe, - 0x1b,0x1d,0xb5,0x5c,0x0a,0x36,0x64,0xfc,0x44,0xa4,0x85,0x7e,0x42,0x14,0x63,0xfc,0x9e,0xc4,0xfa,0xc1, - 0xb7,0xdf,0x6f,0x2f,0x7f,0x36,0x6e,0xc6,0xd9,0x20,0x40,0x78,0x9a,0x38,0x8b,0xc1,0x1f,0x7a,0xc6,0xdd, - 0xaf,0x7c,0x00,0xdb,0x02,0x94,0xbe,0x63,0x90,0x26,0x0b,0x31,0xfe,0x68,0x77,0xaa,0xd2,0x69,0xe7,0xf2, - 0x07,0x25,0xef,0x50,0x22,0x77,0x13,0xd4,0x89,0x8d,0x07,0x22,0x8b,0x2f,0x5a,0x83,0x40,0x00,0xff,0x07, - 0x09,0xf5,0x22,0x52,0xf4,0x5b,0x78,0xbb,0x92,0xf5,0x31,0xdd,0xd6,0x04,0x5d,0x06,0xc1,0xa8,0x25,0x89, - 0xcb,0xb4,0xef,0x7e,0xd8,0xe8,0x18,0xb9,0xa8,0xae,0xf1,0xab,0xe3,0x0d,0xdc,0x0b,0xd0,0x6d,0x9b,0x76, - 0x7f,0xd8,0x73,0x6e,0x3d,0xa8,0x2f,0xcf,0x83,0x38,0x58,0xa4,0xcd,0x05,0xdb,0x14,0x8d,0xe5,0x71,0x4b, - 0x31,0xf4,0xd6,0xfb,0xb4,0xa7,0x1d,0x1b,0x19,0xef,0xf7,0x55,0x56,0x5d,0xbf,0xcb,0xa0,0x6d,0x2e,0xe5, - 0xae,0x98,0xdb,0xe2,0x5d,0x4e,0xf3,0xcb,0xa0,0x65,0xa1,0xf7,0x53,0x67,0x7f,0xb0,0x41,0x65,0x95,0xcd, - 0x3a,0x0e,0x40,0xc6,0xa9,0x3a,0xf7,0x3d,0xb4,0x0d,0x68,0x02,0x2b,0xc0,0xf7,0xba,0x84,0x59,0x3c,0x7d, - 0x5b,0x8f,0xba,0x5a,0x93,0x92,0x8d,0x9d,0x56,0xfc,0x8b,0xc3,0x1e,0xbf,0x38,0x58,0x71,0xa8,0xe2,0x51, - 0xd3,0xec,0xb1,0x6b,0xff,0x79,0xf1,0xac,0xac,0x7a,0x6b,0xc1,0x5f,0x8b,0x26,0x72,0xc2,0xc1,0x7b,0x7b, - 0x9c,0xc4,0x58,0xd8,0xd4,0x4d,0x30,0x21,0x0f,0xb9,0x07,0xac,0x8f,0x44,0x46,0xed,0xe2,0x5f,0x81,0x82, - 0xc3,0xf1,0x4e,0xbf,0x2c,0x48,0x92,0x3d,0xa8,0x8f,0x7b,0xdf,0xf5,0x9b,0x55,0x7a,0xce,0x36,0xac,0xd1, - 0x96,0xa7,0x1c,0x25,0x85,0xa8,0x00,0x7e,0xee,0x4a,0x56,0xa0,0x8c,0x13,0xe9,0x08,0x9f,0xae,0x40,0x9b, - 0xad,0x40,0x0e,0x15,0x5c,0x0d,0xc3,0x4a,0xcf,0xb9,0x08,0x3c,0x13,0xc7,0x8a,0x57,0xac,0x8a,0x83,0x2a, - 0x96,0x9d,0xc6,0x3e,0x53,0xc6,0x8a,0x0b,0x61,0x3c,0x47,0x4b,0x9f,0xb3,0xb7,0x22,0xfd,0x10,0x1f,0xc8, - 0x03,0x06,0x2d,0x81,0xd1,0x3c,0x84,0x0c,0xe9,0x0d,0xc2,0x58,0x5d,0x94,0x73,0xe2,0xd1,0xb9,0x86,0x96, - 0xa4,0x09,0xe3,0xf4,0x13,0x40,0xf7,0xb6,0x53,0xb4,0xdc,0xcd,0x37,0xce,0xcf,0x44,0x34,0x61,0x95,0xc7, - 0xe2,0x01,0x87,0xcd,0x94,0x13,0xd9,0x90,0x3f,0x48,0xaa,0xd1,0x60,0x90,0xd3,0x76,0x85,0x81,0x62,0x7e, - 0xa2,0xc9,0xe8,0x30,0xc5,0x01,0xef,0xdc,0x28,0x3d,0xb7,0x92,0xf7,0x1a,0x26,0x75,0xe4,0x3a,0xcf,0x9b, - 0x6b,0xbd,0x6e,0xba,0x49,0xed,0x79,0x37,0x90,0x2c,0x7c,0x70,0x82,0xf8,0x19,0x97,0x70,0xc9,0x6b,0xe4, - 0xa1,0x4e,0xbe,0xcb,0xb6,0x6b,0x75,0x41,0x03,0xc0,0x5f,0x51,0x89,0xad,0x46,0x70,0x39,0xb1,0x29,0x31, - 0x27,0x52,0x83,0x48,0x5f,0xcd,0x42,0x15,0x22,0x5b,0xa9,0x92,0x5a,0xf8,0xf8,0x09,0x7e,0xaa,0x31,0xcd, - 0x1a,0x4d,0xf1,0x07,0x88,0xbc,0x12,0xe3,0x65,0xfb,0x07,0x78,0x5a,0xad,0xe2,0x0c,0x14,0x2e,0x24,0x50, - 0x39,0x6c,0x22,0x80,0xfd,0xe9,0xc7,0xed,0x2b,0x91,0x37,0x4f,0xf7,0xf6,0x56,0x06,0xa8,0x89,0x33,0x91, - 0xaf,0xe1,0x90,0xd6,0xf7,0x6d,0x5e,0x10,0x0d,0xce,0xdf,0xcc,0xed,0x37,0xd8,0xc2,0xf3,0x56,0xc4,0x99, - 0x59,0x9f,0xfc,0x5b,0x6c,0xef,0xe6,0xbe,0xc5,0x1d,0xb5,0x35,0xc7,0x38,0x02,0x53,0xad,0x34,0xb9,0x19, - 0x95,0xe3,0x1f,0xe0,0x0c,0x25,0xc9,0x01,0xe4,0xcc,0xb3,0x90,0x2d,0xfe,0x57,0x36,0x2a,0x07,0x17,0x40, - 0x74,0x3f,0x1d,0xd4,0xef,0xd6,0x16,0x57,0x9d,0x16,0x57,0xdc,0x62,0x77,0x12,0x74,0xcb,0xcc,0x71,0xdb, - 0xf9,0xae,0xa3,0x09,0xbb,0x94,0xd1,0x57,0x3c,0xed,0xc1,0xaa,0x90,0x89,0xc9,0xe8,0x1f,0x84,0xad,0x6d, - 0x73,0xdc,0xef,0xb2,0x6d,0xc8,0xe8,0x8b,0x8b,0xd3,0xb2,0xb9,0x2d,0x65,0x79,0xb7,0xcd,0x38,0x43,0x31, - 0x35,0x8e,0x86,0x3a,0x64,0x37,0x2b,0xbc,0x2b,0xf7,0x96,0x5c,0x43,0x35,0x74,0x4c,0xc0,0x4f,0x2d,0x0d, - 0xab,0xf4,0xea,0x15,0x13,0x4e,0x39,0x13,0x50,0x83,0x60,0x18,0x0c,0x7c,0x63,0x8f,0xdc,0xaf,0x06,0x72, - 0x00,0x89,0x88,0x3a,0x0c,0xa2,0xe8,0x84,0x2a,0x80,0x53,0xf6,0x8c,0xf8,0xa2,0xc6,0xe3,0x8b,0x1c,0x58, - 0x06,0x94,0x8f,0x5a,0x9d,0xee,0xca,0xf3,0x87,0x70,0x46,0x05,0x36,0x5a,0x41,0x26,0x20,0xc3,0x3f,0xda, - 0x1c,0xb2,0x64,0x7b,0xc7,0x32,0x2c,0x24,0x7a,0x86,0x2e,0xaf,0x6d,0x1e,0x2b,0xd8,0x3c,0x56,0x72,0x8b, - 0x01,0xa3,0x7f,0xd7,0x36,0xdf,0x4d,0x22,0x23,0xc2,0x69,0xef,0x6c,0x22,0x3d,0xff,0x86,0x2c,0xf4,0xa8, - 0x9d,0x6d,0x6b,0x6c,0x9e,0xef,0xb0,0x61,0x6c,0x25,0xfe,0x50,0x6d,0x82,0x33,0x2f,0x2e,0xb2,0x2a,0xe7, - 0x20,0xd8,0x34,0x37,0x59,0x28,0x48,0xd0,0x22,0xbf,0xcc,0x98,0xff,0x4b,0x82,0x66,0x04,0x98,0x27,0xa2, - 0xc6,0x30,0x9a,0x49,0xe2,0x7f,0xc2,0xe2,0xf0,0x79,0x52,0x75,0x92,0x98,0xf7,0xd2,0xd2,0x1f,0xc4,0x38, - 0x68,0x15,0x48,0x58,0xb9,0x3c,0xd7,0x3e,0x10,0x4c,0x19,0xce,0xa3,0x34,0x99,0x83,0x9a,0x9f,0x08,0xe3, - 0x92,0x12,0xc8,0x43,0x36,0x0a,0x1e,0x6d,0x14,0xbe,0x28,0xd6,0xeb,0x57,0xb0,0xd3,0xd0,0xf2,0x6e,0x08, - 0x21,0xe4,0x49,0x17,0x33,0x22,0x75,0x9d,0xef,0x55,0x3c,0x89,0xb0,0xeb,0x4a,0x36,0xb0,0xcf,0x81,0xbc, - 0xc7,0x08,0x38,0x87,0x68,0xb1,0x36,0x0c,0xf8,0xab,0x77,0x61,0x45,0xc0,0x8b,0x4c,0x62,0x98,0xf1,0x83, - 0xe0,0x97,0x9d,0x42,0xc8,0xf4,0x56,0xe1,0x07,0x5f,0xef,0x5f,0xb0,0xdf,0x4f,0x9a,0x73,0xd4,0xea,0xad, - 0x0f,0x59,0x00,0x92,0x04,0x44,0x55,0x97,0x57,0x33,0xda,0x11,0x35,0xed,0x8e,0xac,0x08,0x24,0x14,0x58, - 0xf0,0xf4,0xe5,0xa3,0xa7,0x4f,0xb4,0x09,0xb4,0xf0,0xf2,0xe3,0xa0,0xa9,0x68,0x2c,0x31,0x74,0xf7,0xad, - 0x68,0xe5,0xec,0xca,0x66,0xcd,0x9c,0x9a,0x5c,0xc7,0x05,0x68,0x17,0xe1,0x5e,0xe0,0xb6,0xd0,0x94,0xca, - 0xa1,0xde,0x62,0xac,0x9f,0x63,0xa9,0xd7,0x33,0x94,0xfa,0x5c,0xb7,0xed,0xa4,0x34,0xb8,0x54,0xa3,0xd5, - 0x8a,0x64,0x35,0xd6,0x2a,0x01,0x74,0x3c,0x1b,0xd6,0xf4,0x8d,0x5d,0xcc,0x62,0xa8,0xc8,0x0b,0x38,0xad, - 0x3d,0x83,0x2b,0xc4,0xd1,0xd3,0x9f,0x8f,0x1e,0xbe,0x7d,0xfa,0xb0,0x35,0x6a,0x4a,0x5f,0xba,0x33,0x54, - 0xcf,0x0e,0xc7,0xb9,0xcc,0xb3,0xe5,0x85,0x21,0x99,0x7c,0x13,0xbf,0x86,0x08,0xed,0x72,0xf9,0x9c,0x88, - 0x87,0x69,0x4e,0xd8,0x06,0x06,0x33,0xe9,0x79,0x2a,0x48,0x51,0x99,0xae,0x74,0x2e,0x5e,0x11,0xca,0x01, - 0x06,0x20,0xa3,0xac,0xe7,0x5e,0x16,0x9b,0xad,0x4c,0xc3,0xc9,0xee,0xc1,0xa6,0x67,0x19,0x3c,0x48,0xf8, - 0xbe,0xb3,0x1f,0x0d,0xc9,0xc6,0xf1,0x74,0x52,0xbd,0x57,0x64,0x53,0x66,0x90,0x78,0x7b,0xcc,0x01,0x76, - 0x5b,0xa9,0xf9,0x02,0x96,0x51,0x40,0xf4,0x0a,0x46,0xa8,0x5b,0x28,0xd5,0x85,0x22,0xab,0x4d,0xe9,0xa5, - 0xeb,0xcd,0x45,0x65,0xf0,0x8e,0x20,0x92,0x72,0xc4,0xa2,0x94,0x2e,0x59,0x19,0x8d,0x22,0x42,0xa2,0x7d, - 0xac,0x90,0x70,0x6c,0x11,0x1f,0x7e,0xec,0x62,0x4b,0x60,0xfb,0x22,0xd3,0x84,0x18,0xc3,0x1e,0x1b,0xc8, - 0x0b,0xb1,0x64,0xad,0xe3,0x39,0x02,0x86,0x5f,0xbe,0x50,0x9a,0x8c,0x73,0xf8,0x33,0x69,0x31,0x45,0x3c, - 0x2b,0xc2,0x03,0x35,0xbc,0xd9,0x20,0xfb,0x1b,0x3f,0x83,0x60,0xe9,0x15,0x6b,0x8c,0x88,0xd0,0x1f,0x69, - 0xac,0xc3,0x06,0xc7,0x10,0xfc,0x9c,0x72,0x2c,0xd7,0x1c,0x63,0xe6,0x4a,0x32,0x22,0x87,0x59,0xee,0x18, - 0xd6,0xc9,0x33,0xa0,0x80,0x57,0x19,0xcb,0x05,0x15,0xfc,0xad,0x72,0xd8,0x55,0x66,0x97,0x5c,0xb0,0xe7, - 0x62,0x00,0x31,0xe6,0x52,0x35,0x4e,0x7b,0x57,0x30,0xa9,0xfd,0x65,0xfd,0x36,0xdb,0xf2,0x7c,0x0b,0xd9, - 0xdc,0xca,0xf3,0xc3,0xc8,0xb4,0xb5,0xf7,0x39,0xe1,0x76,0xb9,0x79,0x81,0xda,0x3f,0x4f,0xf2,0xc1,0xe1, - 0xc6,0x3b,0x14,0x8d,0xb8,0x9d,0xa8,0x1b,0xd8,0x7b,0xe3,0xcf,0x14,0x7f,0x96,0xf8,0x03,0x8b,0xf0,0x4b, - 0xfa,0xbf,0xa0,0xff,0xe7,0xda,0xd7,0xb2,0x47,0x6c,0x42,0xe0,0x23,0xf6,0xb6,0x99,0x1f,0x53,0x3d,0x87, - 0xdc,0xea,0x8b,0xaf,0xc5,0x70,0xfb,0xeb,0xfb,0x34,0x70,0x30,0x69,0x68,0xc6,0xed,0xcc,0x59,0xf4,0xc5, - 0x97,0x9d,0x02,0xb3,0x56,0x81,0x69,0xf4,0xf5,0x3f,0x3b,0x05,0xa6,0xad,0x02,0xcb,0xe8,0xcb,0xff,0xee, - 0x14,0x58,0xb6,0x0a,0x1c,0xde,0xff,0x12,0x3c,0xe2,0x7a,0x4d,0x0f,0xbc,0xa5,0xfd,0x2e,0x0e,0x0e,0xa3, - 0xfe,0x8c,0x7d,0x64,0x5c,0xac,0xd7,0x97,0xeb,0xf5,0x22,0xba,0xa9,0xaf,0x72,0xed,0x0e,0x30,0x49,0xa9, - 0xd6,0x2f,0xbe,0x8c,0x67,0x08,0x1b,0xc8,0x16,0xb1,0x23,0x49,0xfa,0x3a,0x5e,0x75,0x92,0xbe,0xfe,0x67, - 0x3c,0xed,0x24,0x7d,0x79,0x10,0x2f,0x06,0x83,0x56,0xca,0x61,0xbc,0xd8,0xdf,0x6f,0x7d,0x76,0x18,0x5f, - 0xb6,0xcb,0x7c,0xfd,0x45,0x7c,0xd9,0x2e,0x73,0x78,0xff,0x8b,0xf8,0xa2,0x5d,0xe8,0xf0,0xfe,0x57,0xf1, - 0xc5,0xfe,0x3e,0xe8,0x32,0x99,0x10,0xb7,0xf3,0xae,0x13,0x1a,0x8e,0x3a,0xd3,0x0c,0xd7,0xe8,0x9a,0x03, - 0x3f,0x8a,0x67,0x4b,0x78,0x96,0xd8,0x2b,0x18,0xae,0x69,0x4b,0x5c,0xef,0xef,0x47,0xb8,0xd2,0xeb,0x48, - 0x47,0xd7,0x3d,0x93,0x5b,0xf9,0x60,0xc5,0x2f,0xbe,0x20,0xd6,0x42,0xa4,0x1c,0x87,0x0c,0x4b,0xcc,0xa4, - 0x9b,0x8b,0x9b,0x1d,0xa0,0xc5,0x8d,0xe8,0x52,0xbc,0xf2,0xbd,0x05,0x63,0x78,0xc0,0x9f,0x83,0xc7,0xc1, - 0xfd,0x1c,0x0e,0xbe,0x52,0x1f,0xbe,0x20,0xa1,0x9d,0x24,0x30,0x25,0x34,0xd2,0xde,0x39,0x9d,0xb0,0xf6, - 0x0e,0x92,0x10,0x3a,0xaa,0x64,0xfe,0xe0,0x60,0x7c,0xf7,0x94,0x5e,0xef,0x0e,0x26,0x83,0xbb,0x41,0x14, - 0xde,0x85,0x60,0x3e,0x0a,0x62,0x93,0x68,0x1b,0x9f,0x47,0x2e,0x5f,0x05,0x36,0x63,0x4e,0xc0,0xd0,0x43, - 0x53,0xfd,0xcc,0x5b,0xad,0xed,0xa7,0x1c,0x1c,0x7f,0x58,0x21,0x44,0x1a,0xdb,0x35,0x55,0x27,0x08,0xcd, - 0xeb,0x4b,0xd5,0xfe,0xdd,0x15,0x90,0x20,0x80,0xfd,0xb2,0x6d,0x44,0xe2,0x22,0xf9,0x6c,0xb6,0x4d,0xc4, - 0xbd,0x02,0x9b,0x28,0x3e,0xf6,0x4c,0x82,0x7e,0xb1,0x27,0x7b,0x98,0x59,0xed,0xbb,0x89,0xf1,0xe1,0xf6, - 0xfe,0x0d,0x5f,0xa3,0xd1,0x28,0x1d,0x2c,0x8e,0x2f,0x41,0xe3,0xdb,0x43,0x13,0xdf,0x21,0xe8,0x47,0xbf, - 0xb2,0xae,0x19,0xe7,0xdf,0xad,0x2c,0x6b,0x9c,0xa9,0x1f,0xd7,0xf0,0x32,0x5d,0x4a,0x28,0x21,0xfd,0x8e, - 0x83,0xec,0x96,0x0a,0x3d,0x2f,0xba,0xc6,0x51,0xb0,0x56,0xeb,0x3d,0x02,0x4e,0x67,0xed,0xb5,0x71,0x35, - 0x75,0x01,0x83,0x2a,0xeb,0xdf,0xda,0x24,0xc1,0x2e,0xbc,0x6f,0x08,0xc1,0xc3,0x3a,0xd2,0x2f,0xc2,0x9e, - 0xb0,0x94,0xff,0xff,0x74,0xbe,0x76,0x84,0xf5,0x8b,0x18,0xdf,0x58,0x2a,0xb5,0xc7,0xa5,0x08,0x0f,0xc3, - 0xc9,0x5b,0x8e,0x7a,0x18,0x8a,0xe4,0xe7,0x17,0xcd,0x38,0xa4,0x7c,0x4d,0x18,0x2f,0xb2,0x62,0x15,0x28, - 0x5b,0x01,0xe7,0x47,0x31,0x31,0x05,0xf9,0x74,0x3a,0x67,0x21,0x6d,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96, - 0x01,0x5f,0xb2,0x20,0x6a,0xe8,0xb1,0x6b,0x53,0x12,0xd8,0x08,0x5d,0x1e,0xf9,0xc0,0x97,0x45,0xf0,0x13, - 0x58,0xed,0x1d,0xa3,0x58,0xe6,0x0a,0x64,0x36,0x4b,0x9b,0xdf,0x99,0xc8,0x80,0x9b,0x11,0xee,0x4a,0x5d, - 0x42,0x2a,0x56,0x7b,0x1c,0x8a,0xbe,0x43,0x1d,0xfb,0x88,0xb8,0x80,0x2d,0xfd,0x5d,0x3e,0x9e,0xd8,0x6b, - 0xbc,0x6b,0xeb,0x6b,0x57,0xcb,0x5d,0x3a,0xc9,0x84,0xf2,0x8f,0xe9,0x9c,0x38,0x89,0x8f,0x27,0xaa,0x3e, - 0x89,0xeb,0x5e,0x10,0x28,0x2c,0x08,0x08,0x3d,0x54,0xe1,0x3d,0x60,0x97,0xa8,0xf5,0x5a,0x5e,0x2e,0xf7, - 0x39,0xbc,0x0a,0x92,0x58,0xda,0xc4,0x51,0x70,0x4d,0x20,0x4b,0x1c,0x6b,0xa2,0x9c,0x10,0x57,0x16,0x4b, - 0xb6,0x34,0x36,0x94,0x9a,0x7c,0x90,0x9b,0x0f,0x3a,0xc1,0x66,0x73,0xff,0x8c,0xac,0xda,0xbd,0x71,0x5f, - 0xb3,0xfc,0xc5,0x03,0x51,0x3f,0x98,0x8d,0x07,0xab,0xda,0xf4,0x3e,0xef,0x9a,0xde,0x83,0x36,0x85,0x67, - 0x03,0xdf,0x6a,0x82,0x50,0x9d,0x37,0xb9,0x09,0x7f,0x55,0x22,0xfc,0x95,0xf8,0x49,0x18,0x35,0xbb,0x75, - 0x46,0x6c,0x35,0xe9,0x9b,0xe2,0xe7,0x9d,0x59,0x13,0x53,0xfb,0x3c,0x09,0xee,0xdc,0xb9,0x0c,0x46,0x72, - 0x69,0x12,0xdf,0x41,0x1d,0x84,0x5a,0x0a,0x48,0x19,0x3b,0xd4,0xf2,0xce,0x5d,0x19,0xf9,0xdd,0x31,0x52, - 0x0c,0x42,0xc5,0x73,0x14,0x30,0xbc,0xb1,0xc7,0x82,0x7c,0x7a,0x4a,0xfc,0xe5,0x20,0x07,0x3e,0x8c,0xb4, - 0x39,0x4e,0xd9,0x84,0xb0,0xf0,0x1c,0x69,0xe3,0x1e,0x03,0x3e,0x84,0x4d,0xc1,0xd9,0x45,0xc4,0x57,0x7f, - 0x5a,0xe2,0xc6,0x3f,0xea,0x62,0x7c,0x97,0xf0,0x67,0x43,0x48,0xf3,0xae,0x32,0xa6,0x37,0x2e,0x3a,0xc9, - 0x4e,0x88,0x06,0x77,0x6e,0x82,0x41,0x39,0x08,0x36,0x81,0xb7,0x00,0x65,0xe3,0x8b,0x19,0x7d,0xe4,0x46, - 0x53,0xf8,0x5d,0xe5,0x22,0x10,0x7a,0xf7,0x49,0x1d,0x07,0xd1,0x83,0x03,0xc8,0x16,0x71,0x41,0xd6,0x73, - 0x93,0x7a,0x42,0xa9,0xdf,0x55,0x36,0x4e,0x6e,0xf8,0x03,0x7f,0xec,0x97,0x00,0xef,0xfc,0xcd,0xfe,0xe1, - 0xf8,0x86,0x7a,0x1d,0xbb,0x73,0xe6,0x07,0xa2,0xcf,0x88,0xe5,0xe6,0x01,0x98,0xd4,0x1f,0x2a,0x42,0xf4, - 0x18,0xcc,0x26,0x96,0xd2,0x5c,0x82,0x43,0x2d,0x31,0x81,0xf3,0x07,0x08,0x54,0x6a,0xe1,0xfb,0x2a,0xf9, - 0x16,0xa6,0xd1,0xbb,0x35,0xce,0xb2,0x68,0xd2,0x84,0xbf,0x57,0x49,0x0a,0xb5,0xf4,0x78,0x8e,0xe7,0x28, - 0xfe,0x1a,0x0c,0xec,0xef,0x95,0x2f,0x8c,0x32,0x92,0x65,0x71,0x73,0xa4,0x2a,0x7e,0xa8,0x4c,0x05,0x1c, - 0xda,0x15,0xdf,0x2b,0xbe,0x20,0x2d,0x9a,0x73,0xa4,0x63,0x43,0xa6,0x70,0x5d,0x84,0x35,0x10,0x7e,0xf0, - 0xeb,0x2f,0xf4,0xf3,0xfe,0x3e,0x1b,0xcd,0xd1,0x1c,0x7e,0xcb,0x35,0x09,0x68,0x6d,0xd0,0xb8,0x89,0x3a, - 0xde,0x1e,0xef,0xf7,0x7a,0xbc,0x26,0xe5,0x7b,0x1a,0xab,0xfa,0xb6,0x82,0x22,0xd1,0x09,0x0c,0xb4,0x8f, - 0x26,0x3b,0x38,0x8c,0xe5,0x52,0x99,0x26,0x0e,0xee,0x10,0x15,0x1a,0xe2,0x1a,0x43,0xaa,0x51,0x5f,0x9b, - 0x85,0x02,0xf2,0xc8,0x10,0xe1,0x79,0x92,0x36,0xce,0x08,0xf8,0x8f,0xca,0x27,0x9c,0x06,0x83,0x1f,0x7c, - 0xfb,0xf5,0xda,0x2b,0xf8,0x43,0xf5,0x4d,0xf2,0x9d,0x07,0xf7,0x13,0x3f,0x6e,0x37,0x93,0x81,0xd9,0x7a, - 0xcd,0xf4,0xa2,0x27,0xaa,0xe6,0x49,0xf2,0x3d,0x06,0x65,0x36,0xd9,0x0b,0x96,0xd7,0x02,0xce,0x15,0xa3, - 0x68,0xe4,0x79,0xd7,0x35,0x5b,0x32,0x10,0x43,0xe3,0x8e,0x9a,0x84,0x78,0xfd,0x26,0x1a,0x9e,0xe2,0xfe, - 0xc6,0xa3,0xb4,0x86,0x19,0xcf,0xdc,0xbd,0xf9,0x92,0xb2,0x29,0x8c,0x34,0x75,0xe8,0x91,0xf9,0x2d,0x01, - 0x22,0x74,0xdf,0xa7,0xec,0x2a,0x49,0x27,0x35,0x5f,0x8e,0x58,0x26,0x0d,0x30,0x3a,0x04,0x12,0x44,0xb4, - 0xfc,0x5c,0x29,0xe7,0x31,0xb8,0x03,0x6f,0x50,0x1d,0xf8,0xbb,0xec,0xaf,0x93,0x60,0x89,0xf8,0x0d,0x95, - 0x89,0x8e,0x37,0x52,0x3f,0x57,0xdb,0x8c,0x20,0x86,0xf7,0xa8,0x18,0xdf,0xe8,0x83,0x0f,0x06,0x38,0x72, - 0x78,0x21,0x20,0x5c,0xcb,0x71,0xaf,0x71,0xea,0xa7,0x90,0x0e,0xd0,0x9f,0xab,0xa8,0x97,0xf1,0x44,0x14, - 0x2a,0x6f,0x4a,0xda,0x26,0xfc,0xd3,0x26,0x34,0x91,0xa4,0x76,0xad,0x3c,0xa6,0x04,0x17,0xbf,0x6b,0xa5, - 0x31,0x08,0xbc,0x6f,0x59,0x4c,0x9d,0xc2,0x58,0xac,0x4c,0x0a,0xff,0x7d,0xf4,0x73,0xa5,0x79,0xd0,0x0e, - 0x36,0xa0,0x8e,0x1e,0x7f,0x84,0x4a,0xc7,0x58,0x4b,0x15,0xe3,0x40,0x5f,0x39,0x1d,0x1b,0x73,0x43,0x8e, - 0xcb,0xec,0x2c,0xf8,0xf9,0x03,0x8e,0xb0,0xcc,0xde,0xe1,0xee,0xba,0x6f,0x4a,0xde,0x20,0xfb,0x53,0x2e, - 0x71,0x0b,0x86,0x52,0x51,0xeb,0xd3,0x4f,0xf8,0x54,0x67,0x74,0x3e,0xc7,0x67,0x1b,0x30,0x2f,0xbf,0xb3, - 0xb6,0x7d,0xd5,0xa8,0x19,0x42,0xbc,0x5a,0x51,0xf0,0xcf,0xd6,0x91,0xdf,0x73,0x13,0xec,0x9b,0x23,0xe3, - 0x26,0xd3,0x9a,0x29,0x9b,0xe8,0x4b,0xce,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0x78,0xe5,0xa7,0xde,0x26, - 0xbf,0xb2,0x9e,0x39,0x2d,0x11,0x56,0x2e,0xe2,0x53,0x48,0x9a,0x72,0x1d,0x65,0x2e,0x3f,0x49,0x82,0xc0, - 0xcb,0x9d,0xeb,0x9b,0xfd,0x50,0x42,0xf1,0xfd,0xcc,0xe6,0xbe,0x64,0xed,0x54,0x94,0x17,0x04,0x28,0xdf, - 0x1d,0xbd,0x7c,0xc1,0x09,0x5c,0xba,0xea,0x0f,0x5a,0xeb,0xd9,0x2d,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc, - 0xbc,0x58,0x65,0x23,0x20,0xb9,0x54,0x8a,0xbe,0x82,0x6b,0x95,0x95,0x20,0xa7,0x1a,0x30,0x1f,0x23,0x2b, - 0xf4,0x8b,0xc0,0x66,0x88,0xaf,0x12,0x16,0x21,0x9a,0x34,0x9f,0x0e,0x4f,0xf9,0x35,0x29,0xb5,0x59,0x22, - 0x24,0x60,0x08,0x48,0x6f,0x6f,0xa9,0x1a,0x4d,0x93,0x95,0xda,0x25,0x6e,0x32,0x8d,0x44,0x98,0x50,0x53, - 0x3a,0x0c,0xab,0x5f,0xbf,0x39,0x7a,0xfe,0xfa,0x15,0xea,0x99,0x19,0xe9,0xce,0x7a,0xdd,0xa3,0x4d,0xc0, - 0xf6,0x67,0xb7,0x70,0x77,0x19,0x95,0xb8,0x37,0x6b,0xbd,0x1a,0xdf,0x2c,0x60,0x63,0x03,0x79,0xe7,0x7d, - 0x66,0xa5,0x80,0xcd,0x26,0x9c,0xa9,0x69,0xd4,0xaa,0xde,0xd3,0xaf,0x89,0x86,0x40,0xb4,0xd1,0x2f,0x0d, - 0x9d,0x26,0x06,0x68,0x79,0xa4,0xad,0x53,0xe6,0xe9,0x1f,0xd7,0x2e,0x7e,0xb6,0x18,0xac,0xf0,0xb1,0x6e, - 0x28,0xa0,0x89,0x38,0x98,0x4d,0x74,0xa0,0xb6,0x9c,0xc9,0x00,0x67,0x36,0x2f,0x44,0x01,0xfb,0x05,0xcb, - 0xa3,0xe9,0x28,0x68,0xc4,0x42,0xfa,0xc7,0x20,0x21,0xbd,0x49,0x56,0x3a,0xa8,0x11,0x83,0x48,0x29,0xc6, - 0x7a,0x54,0xc6,0xf3,0xc6,0x6c,0xdc,0x21,0x77,0xd9,0xb0,0x76,0xf9,0x7a,0xee,0x59,0x1a,0x69,0x51,0xca, - 0x3b,0xa4,0x8e,0x2f,0xc3,0xd6,0x3b,0x47,0x3c,0xf0,0x7c,0x10,0x9b,0xcf,0xe9,0x86,0x17,0xb7,0x28,0x5a, - 0xdf,0xe5,0x9d,0x78,0x23,0x8b,0xa6,0x2d,0xe2,0x62,0x79,0x50,0xd9,0x11,0x6d,0xe5,0x7e,0x3f,0x22,0x51, - 0x71,0xd5,0xf6,0xb9,0xdc,0xca,0x2d,0x75,0x6e,0xe4,0x45,0xe9,0xd1,0xfb,0x74,0x9e,0xb4,0x8a,0xab,0x15, - 0x2c,0x4c,0xcb,0x6a,0xc1,0x57,0xb8,0x4f,0x39,0x6d,0xbd,0xd6,0xdf,0xf3,0x16,0x9e,0x25,0xf3,0xf5,0x7a, - 0xa5,0xa6,0x98,0x2f,0xbd,0x51,0xa5,0x72,0xde,0xca,0x3a,0xa5,0x53,0x43,0x02,0xfb,0x75,0xbd,0xc3,0xc5, - 0xdb,0x69,0x1a,0xc5,0xd3,0x91,0x58,0xaa,0xb6,0xa1,0xd5,0x57,0x9c,0x33,0xe1,0x98,0x8d,0x7a,0xe4,0x67, - 0x7f,0x4b,0xae,0x76,0x61,0x15,0x9c,0x70,0x0a,0x09,0xd9,0xc5,0x4b,0x92,0xb3,0x6e,0xb2,0x73,0x37,0xce, - 0x60,0x7f,0x3e,0x34,0x31,0xd3,0xca,0x56,0x6d,0x65,0xf7,0x33,0xa7,0x9d,0xaf,0xa4,0x0e,0x0e,0x67,0x39, - 0x23,0x24,0xb5,0x84,0x21,0xe2,0xde,0xde,0x53,0x98,0x0f,0xd6,0xca,0x60,0x29,0xce,0x5e,0x46,0x61,0x9a, - 0x70,0x3e,0x01,0xef,0x8c,0x7e,0x6d,0x31,0x1d,0xa1,0x04,0x18,0x20,0xf5,0x79,0x80,0xf3,0xc6,0xf7,0x25, - 0xe3,0xe8,0x9e,0x5a,0x40,0x21,0x71,0x33,0x58,0xd6,0xc6,0x76,0x7f,0xce,0xf2,0x07,0x4a,0x7f,0x90,0x92, - 0x8d,0x36,0x51,0xb9,0xf7,0x6b,0x3d,0xb8,0x17,0xd9,0x7b,0x93,0x7a,0xfc,0xb8,0xbd,0x7a,0x38,0x20,0x16, - 0x82,0x81,0xc5,0xdb,0x89,0x7e,0x60,0x5c,0x28,0x50,0xa8,0xfd,0xf3,0x1e,0xc9,0x5f,0xa4,0x4d,0x26,0x77, - 0x70,0xdb,0xa2,0xd7,0x29,0x56,0xb8,0x04,0xac,0xfb,0xce,0xfa,0x45,0x86,0x61,0x41,0x6c,0x95,0x19,0xa0, - 0x37,0x0b,0xd7,0xff,0xbf,0xcf,0x82,0x20,0xf3,0xed,0x89,0xb0,0xe9,0xca,0x4f,0x95,0x43,0x00,0x54,0x7f, - 0x57,0x42,0x6f,0xa6,0x44,0xa6,0xce,0x89,0x92,0xff,0xd2,0xf4,0xc1,0x90,0xc4,0x4c,0x9b,0x37,0x95,0x15, - 0xcc,0xba,0x46,0xf0,0x69,0xb6,0x17,0x3c,0x55,0x0a,0xc3,0x05,0x88,0x1b,0x34,0x09,0x9d,0x43,0xef,0x1c, - 0xf3,0xd5,0x15,0xb7,0x75,0xd3,0xbf,0x62,0xa0,0xd1,0xa4,0x8d,0xbe,0x52,0x69,0xeb,0xa2,0x14,0x83,0x44, - 0xed,0x15,0xbc,0xcc,0xf3,0xd2,0xb4,0x40,0x28,0x8c,0xcb,0x23,0x9e,0xe7,0x61,0xa6,0x0d,0xb0,0x82,0x4b, - 0x48,0x10,0xf8,0x46,0x09,0xc4,0xbc,0xbe,0xd5,0x38,0xe4,0x39,0xe3,0xc6,0x2d,0xf2,0xe4,0x94,0xfb,0xf2, - 0x21,0xf7,0x7d,0x5f,0x3e,0xa0,0xa8,0x2f,0x79,0xb9,0x6a,0xda,0x46,0x21,0xdb,0x22,0x6d,0x16,0x3b,0x6c, - 0x27,0x73,0x34,0x9f,0xc2,0x33,0xe2,0x02,0x84,0xc2,0x23,0x04,0x02,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xaf, - 0x50,0xdd,0x54,0x5f,0x6d,0x7b,0x7b,0xab,0xde,0x56,0x10,0x34,0x5b,0xc3,0xb1,0xe7,0x2a,0xda,0x61,0x9d, - 0x3f,0x49,0x01,0x85,0x63,0x40,0x5b,0x52,0x54,0xc6,0x97,0x87,0xe9,0x2c,0xc8,0xc9,0x38,0xf2,0x34,0x9f, - 0x0b,0x56,0x8c,0x60,0x02,0xa6,0xd4,0x09,0xec,0x29,0x9e,0xe5,0xe3,0xb7,0x79,0xfc,0x28,0x27,0x8c,0xdf, - 0x71,0x1f,0xeb,0xd7,0xdb,0xd4,0x6a,0x05,0xcb,0x73,0x76,0x15,0x6b,0xab,0x80,0x24,0x88,0x85,0x30,0x73, - 0x83,0xc1,0xe4,0x1b,0x28,0x0e,0xe1,0x29,0x36,0xea,0xf7,0x47,0x9a,0x3c,0xd0,0xf9,0x0a,0x57,0x23,0xab, - 0x1e,0x1d,0x10,0x9a,0xf2,0x5c,0x55,0x9b,0x96,0x8e,0x3b,0xd1,0x37,0xd9,0x52,0x93,0x8f,0x75,0xd8,0x0d, - 0x3e,0x4b,0x24,0x52,0x44,0x75,0xfc,0x92,0xf8,0xff,0x27,0xf0,0x91,0x0a,0x4e,0xac,0xf5,0xdd,0x0e,0xcb, - 0x4e,0x75,0xde,0xaa,0x92,0xeb,0xa5,0xdb,0xd9,0x69,0xf2,0xb8,0xe1,0xf0,0xaf,0x60,0x69,0x8e,0x7f,0xba, - 0xa5,0x92,0x89,0xc9,0xeb,0xaf,0x64,0x8e,0x4a,0xc0,0xd3,0xd0,0x1c,0x1d,0xd0,0x89,0xe8,0xee,0xdc,0x91, - 0x09,0x4f,0xd9,0x6e,0xbc,0xa0,0x47,0x2a,0x90,0x52,0x01,0x63,0xa0,0x4e,0x14,0x03,0xac,0xdf,0xf3,0xf1, - 0x5c,0x97,0x78,0x85,0x12,0x73,0x2a,0x31,0xb1,0x25,0x66,0x09,0xa5,0x87,0x2b,0x17,0x69,0x3d,0x05,0xed, - 0xfb,0xcd,0x01,0xd5,0x3a,0x1f,0x3f,0xcb,0xe3,0x57,0x39,0xb3,0xf7,0xd1,0xb8,0x90,0xc6,0x4c,0xdd,0xb1, - 0xa9,0x22,0x3e,0x50,0x3a,0xe0,0xb2,0xd2,0xd0,0x12,0xaf,0x94,0x85,0x95,0x78,0x86,0x6b,0x90,0x8f,0xcc, - 0x6d,0x7d,0xb1,0xd4,0xb2,0xb7,0xf7,0x5e,0x0b,0xc9,0x65,0xf6,0x4c,0xfc,0x8e,0xe0,0xc4,0x47,0x03,0x8f, - 0x1b,0x77,0x48,0x8f,0x8c,0xc0,0xe3,0x81,0x8d,0x91,0x18,0x65,0x89,0x0d,0x9b,0xed,0x88,0x28,0x33,0x8e, - 0xd6,0x7d,0x5e,0x6d,0x11,0xb2,0xef,0x13,0xfe,0x10,0x46,0x90,0x83,0x87,0x8d,0x84,0x97,0xda,0xf8,0x3b, - 0xed,0xa1,0x4f,0x62,0x1d,0x66,0x5f,0xfc,0x43,0x5f,0x11,0xeb,0x24,0x06,0xfb,0x87,0x7e,0xf9,0x77,0x1e, - 0x2d,0x05,0x12,0x8a,0xe8,0x1d,0xf8,0x69,0xe1,0x6a,0x9e,0x94,0x88,0xf3,0x33,0x76,0x87,0xb0,0x6f,0xfa, - 0xaa,0xcc,0xb9,0x44,0xcb,0x73,0xe9,0xa1,0x09,0x55,0x90,0x9c,0x35,0x86,0x1b,0x72,0x1b,0x3a,0xb2,0xce, - 0x57,0x6c,0x3e,0x49,0x9f,0x11,0x84,0x67,0x15,0x57,0x7e,0xc8,0xb1,0xc0,0x40,0x90,0xe0,0x92,0x39,0x47, - 0xdb,0x20,0x8e,0x18,0x21,0x46,0x05,0xaf,0x57,0xde,0xd8,0x04,0x24,0x43,0xf9,0x8c,0x35,0x75,0x33,0xf3, - 0x7a,0x54,0x4a,0xc2,0xd4,0x24,0x3c,0x64,0x9a,0x5d,0x12,0x97,0x94,0x48,0x53,0x9a,0xa5,0xfa,0xab,0x0b, - 0xfb,0x6e,0x3e,0xbb,0xb4,0x29,0xfe,0x77,0x0b,0x4a,0x3d,0xcb,0x60,0x22,0xfe,0x14,0x55,0xc2,0x7b,0x4f, - 0x2a,0x57,0xd7,0x28,0x8f,0xab,0xd7,0x25,0xe3,0xcc,0xf6,0xca,0x4c,0x8c,0xba,0xb2,0xdf,0x3e,0xe4,0x7a, - 0xd5,0x91,0x6d,0x42,0x7d,0x34,0x5f,0xeb,0xac,0x4f,0xae,0x7f,0xf6,0xfb,0xc7,0x94,0x36,0xd5,0x7b,0x4a, - 0x3d,0x4c,0xce,0x2a,0xf5,0x8e,0xfe,0x68,0x3b,0xfd,0xd1,0xbb,0xbd,0xbd,0x77,0x96,0xe4,0x7a,0x98,0x84, - 0xef,0x12,0xf3,0x1a,0x19,0x8e,0x95,0x57,0xe2,0x4e,0xb2,0xfb,0xd0,0x0b,0x9d,0x44,0x1c,0x29,0x1b,0xf1, - 0x97,0x25,0xe8,0x40,0x8e,0x09,0x4c,0x4b,0x72,0x67,0xbd,0x3e,0xc2,0xe1,0x49,0x6b,0x70,0x24,0x20,0xf0, - 0x3a,0xb9,0xb3,0xb7,0xb7,0x1c,0x2f,0x69,0x37,0x3c,0xc5,0xe3,0xe5,0xf8,0x32,0x9e,0xaa,0x37,0x78,0xbc, - 0x18,0x5f,0xd0,0xbe,0xf8,0x2d,0xb9,0x33,0xbe,0x5a,0xaf,0x17,0xf1,0x42,0x3d,0x41,0x6a,0x8f,0xd3,0xcb, - 0xd1,0xf8,0x28,0x3e,0x57,0xcf,0xa9,0xe0,0xc7,0xf5,0xfa,0x3a,0xbe,0x56,0x2f,0xe8,0xf1,0xd3,0x7a,0x7d, - 0x16,0x9f,0xa9,0x67,0xc4,0xb7,0xe4,0xe1,0xe3,0x68,0xfc,0x58,0xa6,0x2d,0x7e,0x1c,0xa9,0x57,0x09,0x1f, - 0x84,0x35,0xeb,0xe3,0xd5,0xcb,0xe4,0x69,0x13,0x3e,0x89,0xd4,0xdb,0xc4,0xc1,0x89,0xef,0x64,0x1b,0xdd, - 0xbc,0x22,0x90,0xa4,0x03,0xa5,0x54,0x6f,0x22,0xc5,0xbf,0x4f,0xe9,0xa8,0x7c,0xeb,0x40,0x73,0x1c,0x52, - 0x09,0xce,0x78,0x1d,0xa9,0x17,0x7b,0x7b,0x2f,0xd8,0x90,0xe2,0xf9,0xde,0xde,0x73,0xb8,0x25,0x78,0xb5, - 0xea,0x60,0xeb,0x1a,0x5e,0xeb,0x8b,0x92,0x06,0xf6,0x03,0x6d,0x07,0x67,0xf9,0xe4,0x1a,0x15,0xb9,0x90, - 0xa1,0x76,0xc1,0xa7,0x2a,0x1d,0x0e,0xf9,0x14,0xc1,0x8a,0x98,0xd5,0x74,0xcf,0xc7,0x2c,0x49,0x3b,0x19, - 0x71,0x38,0x23,0xb1,0x37,0x2c,0xc4,0xde,0xb0,0xc1,0x0e,0xb3,0xfb,0xa6,0xfb,0x1e,0x46,0xea,0xc9,0xde, - 0xde,0x13,0xea,0xfa,0x5b,0xc8,0x82,0x7e,0xdb,0xdb,0xfb,0x0d,0x7d,0xc6,0x88,0xaf,0xf4,0x80,0xae,0x64, - 0xc4,0xea,0xb4,0x75,0x90,0x5c,0xf9,0xf3,0xf1,0xba,0x35,0x1d,0xeb,0xf5,0x4b,0x3a,0xc7,0x5f,0x37,0xe1, - 0xb3,0x68,0xec,0x9d,0x42,0x6f,0xd5,0xb3,0x28,0xfe,0x88,0xe2,0x73,0x6a,0x0c,0x48,0x44,0x79,0x13,0x21, - 0x06,0xb6,0x95,0xdf,0x1f,0xea,0x06,0x57,0xf5,0x36,0x6c,0x59,0x3c,0xdf,0xd1,0x08,0xc4,0x09,0x81,0xa9, - 0x3b,0x9f,0xfc,0xe6,0xc3,0xd6,0x04,0x87,0xc4,0x79,0xba,0x49,0xb4,0x33,0x06,0x55,0x76,0x5f,0xba,0x38, - 0x98,0xca,0x74,0x26,0x45,0xa4,0x2e,0x08,0x10,0x11,0x1c,0xf5,0x4a,0xa6,0x24,0x85,0xb3,0x04,0xff,0x2e, - 0x7b,0xa6,0x24,0x25,0x1e,0x0a,0x53,0xc2,0xa5,0x5a,0x7d,0x3a,0x92,0x29,0xf9,0xd8,0x9a,0x92,0x4f,0xea, - 0x23,0x4f,0x49,0xaa,0x56,0xea,0x93,0x4c,0xc9,0x25,0x28,0xb3,0x94,0xde,0xd4,0x15,0x7f,0xf4,0x09,0x74, - 0xb6,0xb6,0x19,0xd7,0xb8,0x32,0xf5,0xd1,0x99,0xf7,0xd6,0xc6,0x95,0x2e,0xdd,0xe0,0xca,0xfa,0x76,0x5c, - 0x29,0x91,0x5f,0xe5,0xfe,0x18,0x8b,0x1a,0x0d,0x03,0x25,0x6a,0xd6,0x5d,0x6e,0xd8,0x20,0x69,0xe3,0x6f, - 0x52,0x33,0xce,0x5c,0x25,0x12,0xe1,0x85,0x90,0x24,0xe4,0x2d,0xa9,0xc1,0x6a,0x53,0xf3,0x6a,0x90,0xdf, - 0xd2,0x24,0xf8,0xb8,0xef,0x82,0x12,0x05,0x7f,0xbd,0x40,0x16,0x61,0x48,0x5d,0x88,0xb0,0x62,0x2d,0xd8, - 0x4b,0x32,0xce,0x6d,0xed,0x16,0x77,0x5d,0x53,0x12,0x3b,0x65,0x4b,0x89,0x33,0xbc,0x1a,0x54,0x76,0x25, - 0xdb,0x7c,0x2e,0xdb,0xfc,0x08,0xdb,0xfc,0x32,0x22,0x8c,0x08,0x84,0x70,0x16,0x8d,0xcf,0xa4,0xae,0xf8, - 0x2c,0x62,0xac,0x68,0x86,0xd6,0xde,0xfa,0x3e,0x88,0x40,0x84,0xd4,0x03,0x30,0xbc,0x06,0x3d,0xe9,0x16, - 0x86,0x38,0x74,0xd7,0x95,0xe0,0x10,0x07,0x20,0xcb,0xa8,0x05,0x21,0xe3,0xf0,0x8a,0x71,0x08,0x43,0x0e, - 0xd5,0x79,0xce,0x76,0x20,0x21,0x36,0xc4,0x62,0x6f,0x6f,0x81,0x37,0xe5,0x75,0x52,0x63,0x92,0xeb,0xf1, - 0x35,0x6d,0xd7,0xb8,0x0c,0x7d,0x82,0xe0,0xb5,0x77,0x22,0x6f,0xc7,0x94,0xa2,0xd9,0x90,0x3b,0x0f,0x7d, - 0x75,0xf2,0x53,0xc4,0x99,0x65,0x56,0xc2,0x05,0x2d,0xd6,0x61,0xb1,0x61,0x25,0x8c,0xf0,0xc6,0x5e,0xd8, - 0xa7,0x31,0x15,0xdf,0x0a,0x5f,0x53,0x1d,0x1f,0x9c,0xc4,0x08,0x5e,0x63,0x6f,0xd9,0x83,0x5f,0x8b,0xa6, - 0x9f,0xbe,0xf1,0x54,0x78,0x6f,0x34,0xbd,0xb2,0x0b,0xbd,0x7c,0xe3,0x63,0x80,0x77,0x7c,0x19,0xb1,0xf3, - 0x01,0xb1,0xa4,0xf7,0x13,0xf3,0xa4,0x9c,0x25,0x5c,0x3f,0x7d,0x6b,0x4b,0x6e,0xd4,0x81,0x57,0xd5,0x93, - 0x0e,0x15,0xdf,0x78,0x92,0xb1,0xc5,0x6a,0xde,0xe4,0xcb,0x79,0x26,0xf4,0xfa,0x7a,0xdd,0x1d,0x99,0x17, - 0xef,0x8c,0x8d,0x00,0xe1,0x87,0x65,0x7d,0x68,0xba,0x6e,0x58,0x30,0x05,0x73,0xb9,0xb8,0x36,0x23,0x8f, - 0xca,0xe4,0x8c,0xd8,0xbf,0x17,0x30,0xf2,0x01,0xbf,0xab,0x70,0xfd,0xd2,0x9c,0x2f,0x43,0x87,0x90,0x9e, - 0xc1,0xc7,0x24,0x24,0x5e,0x18,0xaf,0xeb,0x90,0x3f,0xf1,0xa2,0xfe,0x82,0xeb,0x02,0x5d,0xa5,0x0b,0xb3, - 0x66,0x4a,0xce,0xb1,0x6e,0x6a,0x52,0xc3,0x4e,0x97,0xb9,0xa9,0x76,0xfa,0x7e,0xeb,0xd2,0xc7,0xe7,0x4d, - 0xfb,0x8a,0x95,0xee,0xcd,0x77,0x36,0x6b,0xf7,0x3a,0x14,0x7b,0x59,0xcf,0x25,0xc4,0x87,0x32,0x11,0x95, - 0x72,0x74,0x36,0x5c,0x30,0x20,0x7a,0x3e,0x2d,0x7e,0xf4,0xbc,0x3a,0x1a,0xf1,0x6e,0x16,0x9e,0xc5,0xc9, - 0x4c,0x61,0x63,0xe6,0xdc,0x39,0x6e,0x29,0xc4,0x83,0xdc,0xfe,0xf2,0x50,0xbd,0x6c,0x6c,0x86,0xd2,0x82, - 0x7c,0x9f,0xde,0x7c,0xd9,0x62,0x3a,0xbb,0x0e,0x0c,0x97,0xec,0xbe,0x00,0xa9,0xb3,0xe8,0xc1,0x03,0xe1, - 0x33,0xf3,0x46,0x72,0x1a,0x45,0x98,0x94,0x23,0x1e,0x0d,0xa7,0x79,0xcd,0xa6,0xc7,0x92,0xe1,0xab,0x2f, - 0xde,0x7a,0x33,0xb1,0x7b,0x8b,0x1f,0x83,0x48,0xaa,0xb2,0x2e,0xf2,0x1d,0x67,0xf1,0x5b,0x76,0x8d,0xb9, - 0x4d,0x66,0xe6,0x79,0x54,0x78,0x52,0x51,0x26,0x03,0xb6,0xec,0x5e,0xcd,0x2a,0xe2,0x8c,0x6f,0x59,0xbc, - 0x1a,0x3f,0xf4,0x31,0xd5,0xf1,0x0b,0x1c,0xbb,0xac,0x77,0xa1,0x2f,0xe4,0x7c,0xe4,0x35,0xc0,0xb7,0x4e, - 0xba,0x18,0xa7,0xed,0xf0,0x47,0x85,0xbb,0x66,0x22,0x42,0xe8,0x23,0x8e,0x0f,0xac,0x6f,0x2f,0xa1,0xcd, - 0x2f,0xa8,0xd0,0xf0,0x93,0x1d,0xc7,0xbc,0x9c,0xbe,0x38,0xc3,0x85,0x1e,0x27,0xec,0x9a,0xd7,0x13,0x89, - 0xf6,0x83,0x93,0x24,0xdd,0xfb,0x75,0xba,0xff,0x31,0xcb,0x96,0xfb,0xe9,0x9c,0x0e,0x8b,0x3b,0xfa,0xae, - 0x40,0xa6,0x6f,0x9c,0x47,0x75,0x18,0xb8,0x22,0x81,0xba,0xe1,0xae,0xc5,0xcd,0xd6,0xec,0xb8,0x3e,0xfb, - 0x40,0xfc,0x5e,0x03,0x1b,0x93,0x44,0xac,0x1c,0x38,0xe3,0xcb,0x27,0xdd,0x2b,0x9b,0x52,0xf2,0xbb,0x3e, - 0x4d,0x6d,0xbe,0x3d,0x5d,0x3d,0x8b,0x70,0x5d,0x9d,0x88,0x5b,0xb3,0xab,0x37,0x25,0x82,0x09,0xa1,0x34, - 0x01,0xe7,0x23,0x22,0x8c,0x39,0xaa,0xc7,0x3c,0xa7,0x4f,0xdf,0xe2,0xea,0x75,0x3f,0xce,0xbc,0xbf,0xbc, - 0x52,0x01,0x81,0xb8,0xb2,0xbe,0x33,0x52,0x9b,0xbe,0x8e,0x62,0xd6,0xec,0x17,0xfc,0xc3,0xf7,0x9e,0x35, - 0xe5,0x92,0x5e,0xe9,0x2f,0x30,0x58,0xb5,0x5e,0xe7,0xb6,0x0b,0x18,0xc2,0xd4,0x28,0x19,0x4b,0xdd,0x15, - 0x16,0x0c,0x8f,0x4a,0x77,0x37,0x3c,0x11,0x99,0x3f,0x65,0x67,0x1f,0xf3,0xc6,0xf2,0x9f,0x49,0xc0,0x99, - 0x08,0x83,0x17,0x06,0x83,0x6a,0x10,0x2c,0x3f,0x29,0xd6,0xed,0x2f,0x3f,0x45,0x81,0x2a,0x3d,0x00,0x36, - 0xbc,0x78,0x12,0x1c,0xd4,0xbe,0x62,0xfe,0x77,0x8b,0x70,0xb5,0x12,0x99,0x79,0xdf,0x43,0xf6,0xd7,0xcf, - 0x94,0x35,0x80,0x88,0x1b,0x65,0x4c,0x16,0x5a,0x37,0xde,0x76,0xef,0x3f,0x55,0x4e,0x95,0x6f,0xaf,0xe1, - 0xd0,0x81,0x8d,0xb5,0x63,0x22,0x1e,0x25,0x14,0x88,0x73,0xa3,0x6a,0x22,0x25,0xc0,0x48,0x4c,0xb7,0x0d, - 0x11,0x70,0xec,0xdf,0x13,0xf3,0x43,0x5b,0xbc,0x61,0xac,0x15,0x47,0x61,0x9d,0xd0,0x26,0x87,0x8e,0x95, - 0xa0,0xeb,0x3a,0xd0,0xfa,0x0b,0xf8,0xf5,0xd4,0x9e,0x69,0x52,0x26,0x1e,0x3e,0xbb,0xbe,0xf5,0x91,0xb6, - 0x37,0x08,0x4b,0x54,0x90,0xa3,0x82,0x2a,0x9b,0x49,0x05,0x39,0x1c,0x90,0x92,0x52,0xe5,0xd6,0x11,0xe9, - 0x16,0x27,0xed,0x7c,0xd4,0x48,0x08,0x4d,0x7b,0x81,0x4b,0x03,0xa9,0xa8,0xf3,0xf3,0x81,0x78,0x55,0x07, - 0xc8,0xb4,0x31,0x98,0xd9,0x97,0xbd,0xad,0xf2,0x0c,0x10,0x5d,0xc2,0x1a,0x19,0xc3,0x54,0x9a,0xde,0xa1, - 0x8d,0x4a,0xd8,0x8c,0x26,0xc0,0xd4,0x05,0x9e,0xcc,0xb8,0x69,0x47,0xcc,0xe6,0xaf,0x60,0x8e,0x24,0x76, - 0x35,0x1c,0x49,0x20,0xe0,0x7b,0xe5,0xa8,0x1a,0x0e,0x63,0x85,0xe0,0xd4,0x3a,0x93,0x92,0xf6,0x75,0x09, - 0xa2,0x01,0xec,0x37,0x7e,0xb2,0x1c,0x53,0xee,0x5b,0x13,0x41,0xb8,0xb0,0x45,0x81,0x7d,0x6d,0xa9,0x23, - 0x91,0x6c,0xdd,0x0d,0x82,0xbb,0x6c,0xc5,0x7d,0xd7,0x06,0x01,0xbd,0x4b,0xeb,0xb9,0xdd,0x53,0xa0,0x59, - 0x5b,0xfb,0x7a,0xcd,0x96,0x67,0x52,0xab,0xe2,0x1b,0x87,0x21,0xa3,0x82,0x11,0x69,0xc3,0xde,0x9f,0x41, - 0x5e,0x4b,0x97,0x0a,0x87,0x2a,0x12,0xc4,0x9b,0x14,0x73,0xa1,0x46,0xb8,0xb2,0x79,0x5e,0x64,0xfb,0xb6, - 0x25,0x29,0x2e,0xa9,0x47,0x3a,0x11,0x86,0x8b,0x2e,0x7a,0x60,0x72,0x30,0x9a,0x3c,0x38,0xb3,0x91,0x0f, - 0x26,0x7c,0x07,0xd3,0x59,0x79,0x3c,0x39,0x61,0x38,0xa3,0x2e,0x8e,0x5a,0x91,0x3e,0xb4,0xab,0x73,0xd7, - 0x4e,0x16,0x01,0x1f,0xd4,0x52,0x5d,0xf8,0xb6,0x42,0xdc,0x48,0x43,0x5b,0xa1,0x48,0x2e,0xac,0x03,0xff, - 0x83,0xc2,0x38,0xf1,0x57,0x49,0x9e,0x5c,0x20,0x46,0x32,0xdf,0x9a,0x50,0xca,0xb3,0x10,0x39,0xaf,0x4a, - 0x2d,0x44,0xd2,0xb2,0xf8,0x8b,0xb4,0x7e,0x94,0x33,0x2a,0xaa,0xc1,0x28,0x84,0x69,0xb2,0xd5,0xa5,0xa4, - 0xd2,0x37,0xed,0xbc,0x97,0x60,0x32,0x7e,0x08,0x79,0x77,0xf3,0x44,0x57,0x50,0xcf,0x11,0x15,0x8d,0xdc, - 0xe7,0x30,0xc2,0xbd,0xd7,0xb0,0x58,0xc0,0xe5,0x56,0x91,0xbe,0x66,0xc1,0x88,0xc3,0xdf,0x97,0xd0,0xbb, - 0x44,0xea,0x83,0xeb,0x9b,0x9f,0xfd,0x81,0xb3,0x69,0x18,0xdf,0xb2,0x67,0x7f,0x8d,0x73,0x5e,0x22,0x7c, - 0x02,0x8d,0xb3,0xcd,0x33,0xf5,0x5c,0xab,0x8c,0x9b,0xc5,0x3c,0x90,0x80,0x62,0x67,0x88,0x85,0x29,0x4d, - 0x79,0xea,0x64,0xa6,0x9c,0x27,0x34,0x2d,0x73,0xce,0x91,0x42,0xa0,0xc2,0xae,0x8b,0x09,0x9d,0x95,0x0c, - 0x7d,0x36,0x42,0x24,0xe7,0xaa,0x12,0x6c,0x6a,0x70,0x87,0x0d,0xe0,0x02,0x36,0xaa,0x86,0x86,0xdd,0x41, - 0xca,0xde,0xde,0xc7,0xd2,0x5e,0x1c,0x6b,0x30,0x98,0xb0,0x40,0x44,0x0a,0xb3,0x05,0x25,0x82,0x57,0xc5, - 0x3f,0x9a,0x27,0x4b,0xd5,0x3d,0xeb,0x1f,0xf0,0x33,0x19,0x30,0x77,0x46,0x02,0xb2,0xed,0xfa,0xd7,0x1c, - 0x5e,0x26,0xad,0xd9,0x7b,0x25,0xb3,0xa7,0xd7,0xe8,0x11,0xcd,0xd0,0x22,0x01,0xe3,0x78,0x7c,0x78,0x32, - 0x5a,0xe8,0x99,0xb6,0xd2,0xb7,0x70,0xa1,0xc1,0x65,0x70,0x88,0x91,0xcc,0x93,0x8a,0xf8,0xb5,0x1c,0xf2, - 0x4f,0xe2,0xcf,0x16,0x90,0x58,0x29,0xc4,0xd2,0xc8,0xa2,0x96,0x43,0x5c,0x38,0xf1,0x5e,0xb7,0x2c,0x35, - 0xe7,0x4a,0x3b,0x20,0xc5,0x2b,0x6d,0x62,0x39,0x83,0x85,0x49,0x3c,0x55,0xd6,0x1a,0x30,0x5e,0x6e,0x10, - 0x67,0xc3,0x9a,0xf0,0xf1,0x04,0xe8,0xf9,0xe8,0xd8,0xd4,0x95,0x7c,0x7f,0x8d,0x3f,0xbb,0xc1,0x02,0xa2, - 0x65,0xac,0x6a,0xf5,0xd9,0xa9,0xde,0xdb,0xd3,0x73,0xad,0x5d,0x3b,0x36,0x2d,0xae,0xe6,0x7b,0x77,0xa6, - 0x32,0x10,0x27,0xc6,0x40,0x90,0x20,0x37,0x88,0xfa,0xac,0xc6,0x24,0xa5,0xd1,0x13,0xfb,0x52,0x47,0x52, - 0x32,0x5c,0x03,0xab,0x52,0xe9,0xdb,0xa4,0x38,0xbe,0x7f,0xa2,0xb5,0x38,0x86,0xee,0xa1,0xa9,0xd7,0x29, - 0x76,0x95,0x7e,0x32,0x40,0x9c,0xeb,0xfa,0xde,0xba,0xe8,0xb9,0xe5,0x18,0xe1,0x91,0xe6,0x79,0x5a,0x27, - 0xb9,0xfd,0xe0,0xad,0x7c,0x50,0x0d,0x73,0xa2,0x2c,0x52,0xa2,0xe0,0x0e,0x93,0xd2,0xd5,0xab,0x4a,0x6a, - 0x95,0xed,0x20,0x4c,0xf6,0xfd,0xa4,0x74,0x1d,0x41,0xdc,0x12,0x53,0xa3,0xaa,0xf8,0x42,0xb9,0x82,0x83, - 0x00,0xb4,0xbd,0x35,0xbe,0xb5,0x8a,0x91,0x7c,0xf6,0xb8,0x24,0x2c,0xc0,0xd4,0x11,0x73,0x0a,0x7e,0x02, - 0x87,0x2d,0x6d,0x27,0x19,0x6d,0x8b,0x67,0xb7,0xec,0x8b,0x7e,0x7f,0x6f,0xda,0xab,0xc4,0xa7,0xa1,0x89, - 0x0c,0x9f,0x19,0x91,0xa1,0x67,0xc1,0xdc,0x65,0xc9,0xc6,0x81,0x09,0xa2,0x14,0xdf,0x04,0x71,0x50,0xe2, - 0xc7,0x45,0x52,0xd0,0xb7,0xd4,0x0d,0x12,0xd8,0xd9,0xe5,0x83,0xbb,0x41,0x7c,0x77,0xf0,0x0b,0x94,0x06, - 0xec,0xa7,0x0d,0x2b,0x6b,0x77,0x0f,0xb3,0x27,0x78,0x66,0x7b,0x41,0x67,0xda,0xec,0x68,0x4b,0x7b,0xb3, - 0x67,0xe0,0x71,0x8f,0x9b,0x60,0x3b,0xe8,0xb3,0xbd,0x22,0x2c,0x38,0x0e,0x06,0x5d,0x11,0xb9,0x1d,0xbd, - 0xae,0xd9,0x3a,0xda,0x29,0xe8,0x07,0x4f,0x02,0x7d,0xc2,0xfd,0xbb,0x34,0xa4,0xab,0x78,0x67,0x11,0x39, - 0xf3,0x73,0x27,0x89,0x01,0xd4,0xd9,0xd2,0x1a,0x5b,0x83,0x80,0xc8,0x2d,0xfc,0x49,0x8d,0x63,0x28,0x0b, - 0x72,0x38,0xa4,0xa3,0x57,0x18,0x68,0x1d,0xd7,0x8c,0x46,0xe5,0x20,0xe1,0x07,0xf5,0x4b,0xc9,0xba,0xeb, - 0xd4,0xd8,0xd8,0xba,0x20,0xd3,0xd9,0xa7,0x54,0xc2,0x8f,0xd4,0x26,0x88,0xb6,0x57,0xd3,0x88,0x2a,0xf8, - 0xb1,0x0c,0x8f,0x83,0x49,0x53,0xcd,0x69,0x10,0x6c,0xac,0x4b,0xbf,0xe9,0x1c,0x7f,0x17,0x59,0x93,0x06, - 0x27,0xb7,0x9b,0x92,0xef,0x4e,0x8e,0x33,0xd8,0x9a,0xf7,0x5b,0xa2,0x6b,0x74,0x3a,0x0c,0x06,0xd9,0x20, - 0xf8,0x81,0xa8,0x2a,0x3b,0x59,0xeb,0x35,0x38,0x36,0x31,0x0a,0xb1,0x1d,0x36,0xfe,0xbb,0xd6,0x7e,0x27, - 0xcc,0x07,0x84,0xd5,0x61,0x6b,0x71,0xf7,0x6c,0xd5,0x34,0x65,0x71,0x17,0xd3,0x20,0x95,0xc2,0x4f,0x7f, - 0x90,0x72,0xc3,0x3f,0x36,0xa6,0x5a,0x4a,0xa3,0x45,0xb0,0x0a,0x38,0x3a,0xd8,0x47,0xd8,0x8e,0x52,0x53, - 0xe9,0xc5,0xac,0x0c,0x75,0x25,0x37,0xa0,0x71,0xc3,0x62,0xac,0xd7,0x64,0x10,0x98,0x8c,0x20,0xae,0xc6, - 0x6c,0xb5,0x6a,0x32,0x22,0x97,0x63,0x16,0x90,0x21,0xcd,0xb4,0x45,0x64,0x91,0xa9,0x25,0xee,0x6b,0xc6, - 0x56,0xe4,0x43,0xe7,0x8f,0x1e,0x0b,0xc0,0x31,0x6e,0x9e,0x33,0x65,0x74,0x78,0x10,0xf9,0xf1,0xec,0xcd, - 0x34,0xea,0xd0,0xd1,0x44,0x1c,0x52,0x75,0x1a,0xce,0x68,0xd5,0x6d,0x98,0xe1,0xe0,0xf4,0x63,0xd8,0x2e, - 0x4a,0x24,0x7c,0x07,0xf1,0x66,0xbc,0x71,0xba,0xa9,0x05,0x52,0xdd,0xa7,0xbe,0x55,0x66,0xd6,0x32,0x5f, - 0x42,0xac,0x9c,0x02,0xb7,0xf3,0x1a,0x4b,0x51,0x89,0xd1,0x16,0x07,0x30,0xf4,0xe3,0x00,0xac,0x76,0x7f, - 0x40,0x97,0x3e,0x6e,0xc4,0x3a,0x29,0xbe,0x7b,0x3a,0xd1,0x21,0x03,0xee,0xf2,0xb4,0xa9,0x4e,0x5c,0xe3, - 0xb8,0xe8,0x46,0x3a,0xf6,0x10,0x58,0x53,0xb8,0x78,0xf9,0xa6,0x58,0x59,0x8a,0xaf,0x9c,0xbc,0xbe,0xa9, - 0xca,0x49,0x56,0xd7,0xd9,0xd4,0x2e,0x7d,0x61,0x8d,0xbb,0x33,0x6d,0xb8,0xbf,0x2b,0x0f,0x5b,0x45,0x2b, - 0xbf,0x28,0xed,0x37,0x2e,0x49,0xbf,0xdb,0x75,0x26,0x08,0xf7,0xd1,0xf0,0x4d,0x1f,0x33,0x44,0xaa,0x44, - 0x68,0x3f,0x60,0x5f,0x76,0xee,0xb2,0x08,0x7c,0x8c,0xf9,0xf5,0xde,0x63,0xda,0xcb,0xb5,0x57,0xe0,0x7e, - 0xa7,0xc0,0x7d,0x14,0x28,0x5a,0x2d,0x32,0xa5,0x73,0x3a,0x0f,0xb5,0x75,0xb5,0x23,0xf2,0x61,0x0e,0x9d, - 0xb2,0x07,0x8a,0x9b,0xe5,0x86,0x43,0xb8,0x61,0x56,0x23,0x8d,0x7c,0x6e,0xa3,0x2d,0x95,0x0e,0x90,0x26, - 0x43,0xcd,0x67,0x3c,0xd2,0x7c,0xb6,0x35,0xd0,0xd2,0xcd,0x88,0xa3,0xb9,0x77,0x3b,0x34,0xb7,0xd0,0xea, - 0x7d,0x4c,0x87,0x31,0x60,0xa5,0xe9,0x5a,0xd2,0x74,0x5d,0x24,0x53,0xcb,0x85,0xac,0xd7,0x1e,0x49,0x0f, - 0xa9,0x6f,0x11,0x4e,0x21,0x55,0x27,0xf6,0xf3,0x14,0x76,0xc2,0x17,0x83,0xf0,0x92,0xa7,0xe7,0x92,0x63, - 0xc4,0x9d,0xd3,0xa7,0x3a,0xaa,0x78,0x40,0x5b,0x48,0xbf,0xdc,0xe6,0xf6,0x72,0x56,0x68,0xd3,0x06,0x9a, - 0x8b,0x18,0x4e,0xc5,0x22,0x8b,0x6a,0xe1,0x67,0x82,0xbc,0x6b,0x53,0x29,0x8c,0xe6,0xb5,0xeb,0x40,0x70, - 0xa2,0x76,0xcf,0x69,0x3a,0xae,0xd9,0x37,0x2b,0x5c,0x10,0xda,0x61,0xb6,0x20,0x60,0xc1,0xac,0xbc,0x07, - 0x83,0xf3,0x48,0x5d,0xcb,0x5b,0x78,0x0e,0xa3,0x20,0x53,0x86,0x77,0xd4,0x35,0x8d,0x02,0xf6,0xcc,0xbc, - 0x04,0x67,0x32,0xc5,0x2e,0x6c,0xea,0xc4,0x8f,0x76,0x41,0x04,0x19,0x74,0x8d,0x0d,0x6c,0xb8,0x3a,0xbc, - 0xc5,0x18,0x35,0xc6,0x34,0x2d,0x58,0x36,0x48,0xa1,0xce,0x68,0x66,0x68,0xeb,0x0c,0x26,0xdc,0x48,0xca, - 0x19,0xd1,0x20,0x9c,0xf1,0x2c,0xcd,0x62,0x36,0x4a,0xa1,0x46,0x2d,0xd9,0x78,0x9a,0x68,0x5e,0x75,0xac, - 0xe3,0x83,0xa5,0xb2,0x98,0x08,0x08,0x7a,0x5b,0x5b,0x38,0x94,0xc1,0xd3,0x48,0x5b,0x77,0x31,0x75,0xb4, - 0x8e,0x83,0x80,0x9e,0xc2,0x53,0x6e,0xe8,0x94,0x1b,0x0a,0xaf,0xf8,0xe5,0xca,0xb4,0x6a,0x2f,0x4c,0x3a, - 0x22,0x26,0xe8,0xe8,0x41,0xe3,0xe4,0x0b,0x56,0x48,0x7a,0x44,0xac,0xca,0x59,0xe2,0xe7,0x1c,0x1f,0x81, - 0x31,0x3a,0xb3,0xd8,0xfe,0xcc,0xc6,0xb1,0x2c,0x34,0xc3,0x14,0x48,0xcf,0x3d,0x1c,0x54,0x74,0xef,0xb2, - 0xe9,0xec,0x7a,0xec,0x97,0xa6,0x8b,0x40,0xe4,0x58,0xe9,0x45,0x4c,0x1a,0xa1,0x00,0x1c,0x10,0x2c,0x7d, - 0x41,0xf3,0x1b,0x6e,0x7f,0x6f,0xe2,0xd2,0x45,0x03,0x8b,0x76,0x24,0x96,0x48,0xa0,0xc4,0x5b,0xd9,0x4e, - 0x83,0x75,0x0e,0xf1,0x11,0x55,0x0b,0xd9,0x48,0x78,0xf2,0xbf,0xb4,0xe5,0x5a,0x6d,0xf9,0x9e,0xae,0x41, - 0xc0,0x32,0x11,0xad,0x98,0xad,0x46,0xda,0x5e,0x16,0x62,0x82,0x9b,0x22,0xe1,0x18,0x24,0xc6,0x4d,0xc4, - 0x3a,0xab,0xda,0xe3,0x69,0x1c,0x9c,0x96,0xa1,0x37,0x72,0x85,0x13,0x09,0x5d,0x7c,0x3e,0x1d,0x0c,0xf8, - 0xb5,0x60,0xbf,0x36,0x5d,0x60,0xd3,0xc6,0xa3,0x9e,0xfb,0xc5,0x76,0x60,0xea,0xd6,0x80,0x30,0x50,0xcf, - 0x32,0xdd,0x9a,0xcc,0x7b,0xaa,0x3b,0xb7,0x63,0xab,0x71,0x25,0xc7,0x83,0xcc,0xd6,0xb8,0xd2,0xa7,0x85, - 0x3e,0x35,0xf8,0x2a,0x10,0x23,0x5f,0xb1,0xd7,0x04,0x13,0x80,0x9c,0x12,0x81,0x19,0x68,0x63,0x80,0xc6, - 0xc4,0xf5,0x73,0xe4,0x43,0xf6,0x69,0xc9,0x67,0x77,0x2a,0x5e,0x07,0xd1,0x98,0xd0,0x26,0xf1,0x91,0x67, - 0xf3,0x72,0xf2,0x51,0xe3,0x06,0xdb,0x31,0x5a,0x44,0x2f,0x73,0xd3,0xa1,0x89,0x2d,0x35,0xdb,0xbd,0xc2, - 0x25,0xed,0x86,0x08,0x49,0x08,0x41,0xd1,0x89,0xd0,0x67,0xf2,0x9b,0x6d,0x5d,0x22,0xad,0x6f,0x1d,0xd1, - 0x48,0x3a,0xf1,0xe2,0x30,0xc4,0xc7,0x01,0xc7,0x06,0x1e,0xc9,0x35,0x20,0xbd,0xd7,0x4a,0xdd,0x94,0x26, - 0x0a,0xbd,0x16,0xf3,0xcd,0x5b,0xf7,0x54,0x1f,0x97,0x22,0x20,0x1b,0x81,0xf7,0xa5,0x32,0xbb,0x73,0xc4, - 0x93,0xa6,0xfd,0x71,0x95,0x56,0xb8,0x5a,0x23,0xe5,0x50,0x96,0xb4,0x4c,0x35,0x51,0xd6,0xc2,0xdb,0x11, - 0x7d,0x2d,0x1f,0x11,0x91,0x6d,0xd9,0x3c,0x4e,0xd4,0x2f,0x70,0x6c,0x19,0x84,0xa5,0x60,0x54,0x82,0x7f, - 0x21,0x73,0x70,0x1c,0x59,0xf2,0xc8,0xf7,0xec,0xd9,0xa2,0x2f,0x74,0xb1,0x48,0xd0,0x48,0x39,0xa4,0xb3, - 0x63,0x7c,0x97,0xd9,0x47,0x6e,0x85,0x1e,0xd0,0x82,0xc9,0xb5,0xb4,0x29,0xb5,0xe4,0x98,0xcb,0x9e,0x4a, - 0x1d,0x39,0x2c,0x7b,0x71,0x43,0x38,0xde,0x40,0xee,0x64,0x5c,0xb7,0xb9,0x82,0x13,0x1b,0x15,0x49,0xa2, - 0x7a,0x8c,0x0c,0x59,0x08,0xe8,0x8f,0x94,0x96,0xec,0x31,0xc9,0x09,0x67,0x17,0x60,0x41,0xf1,0x54,0x09, - 0xc4,0xb5,0x7e,0xa6,0x33,0xe9,0x89,0x33,0xe9,0xd7,0xcb,0xe4,0xdd,0xea,0x4a,0xf0,0x6b,0x0c,0x34,0x21, - 0x25,0x96,0xec,0x5d,0x88,0x4c,0x7a,0xf2,0xd2,0x3d,0x06,0x18,0xb9,0x77,0x21,0x2c,0x65,0xaf,0x22,0x20, - 0x60,0x5a,0x8c,0xbb,0x4e,0xd2,0x94,0x12,0x92,0x4d,0x1f,0x88,0xf6,0xec,0xdb,0xac,0x78,0xe6,0xdd,0xfd, - 0x0d,0x79,0xd0,0x20,0xf1,0xb3,0x8e,0xd3,0x93,0x30,0xd3,0xe8,0x44,0x9f,0xa0,0xdc,0x3a,0x3f,0x13,0x97, - 0x35,0x98,0x17,0x26,0x47,0xcf,0x9b,0xd2,0xfe,0x9e,0xba,0xa0,0x31,0xfa,0xb7,0x65,0x25,0x5e,0xaf,0x2d, - 0x2b,0x8e,0x82,0x52,0x18,0x7c,0x9d,0x4e,0x50,0xbb,0x87,0x06,0xd2,0xcc,0xe4,0xf8,0x3e,0x87,0x5e,0x79, - 0x3f,0x59,0x31,0xfe,0x6e,0x7d,0xe5,0x48,0x0c,0x21,0xf3,0x8c,0x94,0x4f,0x77,0x8f,0xef,0x69,0x09,0x06, - 0x7e,0x39,0xfb,0xa5,0x0b,0x7f,0x2a,0x85,0x21,0xfc,0xf3,0x53,0x99,0x88,0x0b,0xbc,0x84,0xf8,0x74,0x45, - 0xfc,0x4f,0x2b,0x98,0x4a,0x71,0x1b,0x4b,0xb3,0xd3,0x45,0x6e,0xee,0xde,0x02,0x4d,0x3c,0xb6,0x49,0xb9, - 0x71,0x98,0xb3,0xeb,0x4e,0x45,0xfb,0x1c,0x12,0x62,0x36,0x76,0xa5,0x2d,0x5e,0x6a,0xd2,0x11,0x76,0xdf, - 0x6d,0xd2,0xb1,0x6c,0x93,0x8e,0x2b,0xaf,0xc0,0xfd,0x4e,0x01,0x26,0x1d,0xcb,0xdb,0x48,0xc7,0xba,0x43, - 0x3a,0x4e,0x06,0xf3,0xc1,0xaa,0x45,0x3a,0xea,0xd0,0xb8,0x42,0x3b,0xd2,0x1e,0xba,0x11,0xc0,0xc7,0x54, - 0xce,0x8a,0xd8,0xfb,0x54,0x3b,0x40,0x14,0x6e,0x1d,0xa2,0x56,0x45,0x61,0x4b,0x36,0xcb,0x66,0x28,0x63, - 0xa2,0x70,0x67,0xfc,0x67,0x10,0x10,0x02,0x0e,0x6b,0x21,0x53,0x5b,0x17,0x38,0x03,0x19,0xbb,0xb7,0xb8, - 0xaf,0x48,0xac,0xc9,0x5b,0xf4,0x71,0x23,0x38,0xbf,0x45,0xdb,0x62,0x2f,0xe3,0xda,0x14,0x60,0xe7,0x36, - 0x27,0x4e,0x27,0x7b,0x04,0x78,0xd0,0xe1,0xc6,0x19,0x6c,0xf8,0x39,0x36,0x4e,0x89,0x83,0xcc,0x0f,0x28, - 0x4e,0x83,0x76,0x7e,0x88,0x36,0xcb,0x24,0x0d,0x82,0x36,0x82,0xb3,0xd1,0xcb,0x6d,0xa2,0xdd,0x1a,0x6d, - 0x2a,0x6b,0x2b,0x7a,0x45,0xe3,0x7b,0x6b,0xd8,0xd0,0x9d,0x07,0x1c,0x43,0xe7,0x50,0x02,0xf7,0xb1,0x95, - 0x9a,0x76,0x1d,0x2d,0x38,0x6c,0x4e,0x69,0xa2,0x03,0x6a,0x4e,0xaf,0xdd,0x46,0x6c,0xd8,0x30,0x4f,0xb0, - 0x41,0xac,0x83,0x0e,0xa0,0x8d,0x8e,0x75,0xd9,0xad,0x63,0x64,0x77,0x09,0x9e,0x5b,0x98,0xf8,0x56,0xa5, - 0xc2,0xc0,0xb6,0x67,0x1a,0xfe,0x99,0x84,0x65,0x1b,0x8e,0x5d,0x88,0x79,0x66,0x17,0x78,0x8b,0x89,0x73, - 0x4f,0xde,0x75,0x4f,0xdd,0xb9,0xa7,0x02,0x4d,0x89,0x67,0xc3,0xab,0x2a,0x5d,0xca,0xd5,0xf6,0x50,0x9c, - 0xd8,0x57,0x78,0xaa,0xe8,0x5c,0xab,0x54,0xf4,0x8a,0xd8,0x34,0x2e,0xe7,0xdd,0xd3,0x54,0x5b,0xe2,0xc4, - 0x8f,0x54,0x64,0xe6,0x58,0x62,0x77,0xfb,0x51,0xac,0xd2,0xa4,0xf4,0x26,0xbe,0xf4,0xfc,0x86,0x78,0x2b, - 0xb7,0x98,0x9f,0x54,0x6c,0xab,0x84,0xd7,0x31,0xef,0xc6,0x75,0xb4,0x5a,0xaf,0x9b,0x22,0x0a,0x53,0xd5, - 0x18,0xbb,0x9b,0xa2,0x13,0x75,0xbb,0x7d,0xc1,0xfc,0xd6,0xd5,0x38,0x36,0x90,0x63,0x65,0xbb,0x93,0x6b, - 0x38,0xa0,0xd7,0x09,0x2e,0x5c,0x42,0xe0,0x27,0x9f,0x36,0x81,0x6f,0x45,0x9b,0x56,0x29,0x17,0x59,0x1f, - 0xc6,0x9a,0x00,0x7d,0x6b,0xfa,0x26,0x02,0xa9,0x78,0x5f,0x93,0x89,0xec,0x12,0xf4,0x3f,0xae,0xb6,0xf1, - 0x6b,0x65,0x23,0xda,0xc3,0xc8,0xbb,0x6a,0x2d,0x2c,0xd9,0xba,0xf4,0xfa,0x2c,0x7b,0x6c,0xb9,0xa0,0x98, - 0x03,0xda,0x76,0x1d,0xa3,0x8c,0x21,0xa9,0x30,0x90,0x34,0xe6,0xb1,0x26,0x42,0xe3,0x2f,0x6c,0x12,0x54, - 0xb0,0x36,0x6c,0xde,0x18,0xbe,0xd6,0x0a,0x54,0xe0,0x16,0x4d,0x50,0x49,0xf8,0x65,0x76,0x49,0x8e,0x83, - 0xd3,0x4b,0x50,0xf6,0xf7,0xa1,0x29,0x28,0x20,0xed,0xe6,0xca,0x0b,0x6f,0xcf,0x12,0xf6,0x09,0xbb,0xa2, - 0x10,0xa9,0x21,0x8a,0x2c,0x33,0x47,0xe0,0x64,0x54,0x20,0x10,0x08,0x96,0xb7,0x9d,0x0c,0x93,0x5e,0x79, - 0x20,0x61,0x3e,0xc6,0xda,0x35,0x48,0x14,0x4f,0xa8,0x31,0xf1,0x3f,0xb5,0x5a,0x3f,0x96,0x3c,0x10,0x02, - 0xec,0x51,0x75,0xb5,0xb9,0x6c,0xcf,0x99,0xb5,0xa3,0x4a,0x84,0x34,0xe1,0xf3,0x57,0x1b,0x37,0x22,0x52, - 0xad,0x0c,0xc9,0x17,0xdf,0x1d,0xac,0x10,0xd7,0xcf,0x48,0xb5,0x54,0xe0,0xee,0x1a,0xf7,0x48,0x28,0xcf, - 0x1b,0xb6,0x15,0x4c,0xc2,0x6d,0xee,0x5f,0x57,0xf7,0x0f,0xee,0xff,0xeb,0xde,0xb9,0x0a,0x7e,0x95,0xc7, - 0x20,0xea,0x64,0x7e,0xed,0x32,0xbf,0xf6,0x2f,0xcd,0x9c,0x69,0x58,0x80,0x6f,0x9c,0x17,0x4b,0xfe,0x99, - 0x9b,0x65,0x77,0x79,0xaa,0xed,0x9b,0x68,0x27,0xb2,0xaa,0x82,0xb2,0x97,0xb0,0x71,0x0c,0x6f,0xd9,0x73, - 0xff,0x26,0x47,0xaf,0x9f,0xe1,0xbb,0x32,0x79,0x57,0xfe,0x49,0x3c,0x4b,0x44,0x8d,0xd5,0x3a,0xa4,0x24, - 0x1b,0xdf,0x7d,0x90,0xee,0x5c,0x40,0x81,0x1b,0xfc,0x5a,0x04,0xf7,0xbe,0xb9,0x1b,0xdf,0x7d,0x40,0xa5, - 0x08,0x6b,0xe8,0x77,0xf5,0xae,0x74,0xe5,0x9d,0x8f,0xcb,0xde,0xff,0x39,0x3c,0x18,0x05,0xd1,0x37,0x07, - 0x6c,0xc4,0xb7,0xb4,0xf7,0x3a,0xce,0xaa,0x2c,0xfb,0x23,0x0b,0x11,0x92,0xf8,0xc2,0x26,0xba,0x40,0xdb, - 0xe6,0x6a,0x6c,0x75,0x59,0x24,0x73,0x91,0xa9,0x28,0x4b,0x1e,0x06,0x2c,0x0c,0x58,0x70,0x0e,0x1d,0xd2, - 0x8a,0x7a,0xa5,0xb8,0x84,0x53,0xb7,0x2a,0xa8,0x37,0xd5,0x79,0x4f,0xcd,0x17,0x69,0xed,0x5d,0x05,0xa9, - 0xae,0x8b,0xe4,0xde,0x7e,0xf8,0xeb,0x55,0x44,0x6b,0x71,0x56,0x24,0xd3,0xde,0x08,0x21,0x76,0xdd,0xae, - 0x0b,0xd5,0xbb,0x5d,0x9b,0x31,0xcc,0x10,0xde,0x2f,0x97,0xb0,0x4b,0xae,0x89,0x47,0x42,0xa8,0x52,0x18, - 0x94,0x9e,0xde,0x5a,0xa5,0x0e,0x09,0x73,0x10,0xb5,0x3f,0x1c,0x38,0xfd,0x21,0x7d,0x7e,0x45,0xbd,0xfb, - 0xf5,0x51,0x78,0xfc,0x70,0xff,0xdf,0x27,0xe8,0xe1,0xd1,0x9f,0xf6,0xf0,0xaa,0x50,0xc1,0xfe,0x9d,0xc3, - 0x00,0xd5,0xbe,0x28,0xaf,0x4c,0xb5,0x54,0xd7,0xc7,0xa2,0xc5,0x90,0x39,0xdb,0x84,0xdd,0xc3,0x8d,0xfa, - 0xd4,0xd6,0x03,0xd9,0xd0,0x28,0xea,0x31,0xb1,0xda,0xa0,0xa4,0xf7,0x39,0x18,0x79,0xb5,0x6f,0x2e,0x18, - 0x0c,0xd4,0xc3,0x22,0x39,0x0e,0xbc,0x35,0x71,0x8c,0x5b,0x60,0xae,0x01,0x0c,0x4e,0xd4,0x3b,0x94,0x12, - 0xeb,0xc6,0xc7,0x0c,0x63,0x94,0x29,0xc0,0x46,0x55,0xe8,0x0c,0x36,0x99,0x86,0x7c,0x5d,0x4c,0xa7,0x6d, - 0xfa,0x7b,0x1d,0xd3,0xd1,0xde,0x3f,0x6b,0x32,0x9e,0x48,0xc8,0x5e,0xb4,0x29,0x4f,0x9c,0xe7,0xee,0x2d, - 0x46,0xba,0xff,0x26,0x57,0xeb,0x88,0x2f,0x37,0xc4,0x5b,0x77,0x8a,0xe4,0x46,0x88,0x88,0x97,0xb8,0x89, - 0x9e,0x40,0x8d,0x0a,0x9e,0xe7,0xc4,0x71,0xf6,0xdd,0x3a,0x5a,0xe7,0x73,0xd8,0x50,0x20,0x62,0x53,0x55, - 0x4e,0x57,0x3c,0x49,0x47,0xf9,0x12,0x09,0xe6,0x0a,0x5c,0xce,0xcc,0x2a,0xc8,0x74,0x60,0xbd,0x84,0x57, - 0x6e,0xf3,0x3b,0xb9,0x1b,0x95,0x7d,0x23,0x14,0x48,0xfa,0x56,0x42,0x7e,0x5e,0xd0,0x60,0xa6,0x7a,0xd7, - 0x11,0x1d,0x72,0xa2,0xcc,0x85,0x88,0xbd,0x1d,0x69,0xc5,0x84,0x8f,0x3f,0x16,0x5e,0x02,0x1c,0xa5,0x24, - 0xe5,0x7d,0xf1,0xb1,0x28,0xaf,0x0a,0x5d,0x29,0xd2,0x3a,0x21,0xe6,0xe3,0x73,0xd5,0x17,0x41,0x3e,0xfe, - 0x54,0x28,0xef,0x62,0x42,0x7c,0x78,0x3a,0xcf,0x67,0xd9,0xe4,0x7a,0x32,0xcf,0x70,0x17,0x73,0x1d,0xbf, - 0x2b,0x36,0xea,0x35,0x41,0xe4,0xf1,0x7f,0x7e,0xbd,0x1a,0xde,0x39,0xb9,0xa7,0x9e,0x16,0x88,0xd4,0xcf, - 0x7b,0xeb,0xf4,0x94,0xc8,0xb0,0x9b,0x8d,0x7a,0x43,0x49,0x8e,0x60,0xb5,0xd7,0xda,0x89,0xdf,0x8c,0xfa, - 0xad,0x3f,0xf7,0xa7,0x9f,0x9f,0x16,0x97,0x79,0x55,0x16,0xfa,0x8e,0xf0,0xdd,0x56,0x02,0x44,0x78,0xdc, - 0x53,0xf5,0xa4,0x48,0x7e,0x2b,0xf6,0xf6,0xfa,0x73,0xdb,0x00,0xaf,0x9e,0x17,0xc9,0x1b,0x2a,0xab,0x1d, - 0x76,0x8a,0xf4,0x32,0x3f,0x07,0x97,0x30,0x5c,0xd1,0x84,0x3d,0x3c,0xe7,0x9b,0x98,0x5a,0xe5,0x5f,0x14, - 0xc9,0x73,0x2a,0x7f,0x6f,0x51,0xe7,0xd9,0x9a,0x70,0xcf,0x94,0x8a,0x68,0x8b,0xab,0xe7,0x45,0xa4,0x9e, - 0x49,0xf6,0x73,0xcf,0x5f,0x10,0x25,0x77,0xbe,0x1e,0x1e,0x00,0xbb,0xa9,0x57,0xdb,0xf9,0xd9,0xf4,0x3c, - 0xbb,0xc7,0x99,0x2f,0xb7,0x33,0x09,0x0e,0x2a,0x3a,0xe7,0x90,0x4d,0xa7,0x99,0x79,0xa3,0x03,0xed,0x49, - 0xa1,0xde,0xea,0xae,0xe4,0xcb,0x0b,0xda,0x5b,0xeb,0x7c,0x99,0x4e,0xe9,0x4f,0x49,0x7f,0xca,0xda,0x75, - 0x09,0x2e,0xe3,0x65,0xad,0x3f,0xf9,0xa9,0x48,0x42,0xfe,0x66,0x72,0x51,0x11,0x89,0xf2,0xeb,0xbd,0x5f, - 0xa7,0x03,0xaf,0xf7,0x37,0x9b,0x21,0xdf,0xbe,0x1b,0xa9,0x47,0x50,0x46,0x83,0xaa,0x7a,0x53,0x70,0x88, - 0x4a,0x60,0xe5,0x0f,0x6c,0xd7,0xd0,0x7f,0x55,0xf1,0x07,0xc2,0x27,0x3a,0xf6,0x41,0xa0,0x6e,0x70,0xd5, - 0xb1,0x47,0x01,0xa3,0xb2,0x83,0x0d,0xf0,0x94,0xcc,0xf2,0x76,0x40,0x3d,0xf4,0x60,0xdf,0x7e,0xcf,0x50, - 0xff,0xa1,0x88,0x3c,0xa7,0x6e,0xb4,0xff,0xbe,0x50,0xdf,0x15,0xea,0x0f,0x0f,0x05,0x75,0x68,0x01,0x1a, - 0xe3,0x7b,0x18,0xc6,0xbc,0xa7,0xf6,0xb0,0xa8,0x7d,0x30,0x74,0x3e,0x2f,0xcf,0xd2,0x39,0x68,0x52,0x46, - 0x54,0x98,0x17,0x49,0x02,0xee,0x07,0x3b,0x38,0xcc,0x8a,0xcb,0xe1,0x87,0xf7,0x4f,0x4f,0x9f,0xbe,0xfa, - 0x10,0xa9,0xf7,0x04,0xcb,0xbf,0xb7,0x40,0xe4,0xf4,0x14,0x99,0x4f,0x9e,0x7e,0x38,0x7a,0xfd,0xfa,0xc5, - 0xbb,0xd3,0x6f,0x5f,0xbc,0x7e,0xf4,0xf0,0xc5,0xe9,0x77,0xaf,0x5f,0xff,0x70,0x7a,0xaa,0x7e,0xe8,0x07, - 0xdc,0x77,0xd7,0x8b,0xb3,0x92,0x1a,0x3d,0x0a,0xe5,0x29,0xea,0xef,0x9b,0xbe,0xb2,0x18,0xe5,0x3a,0xb7, - 0x17,0x47,0xa3,0xef,0x6e,0xa9,0x39,0xe3,0xe2,0xf4,0x83,0x1b,0x1a,0x5a,0xb3,0xde,0x8a,0x75,0x21,0x57, - 0xf9,0x65,0x4d,0x5f,0xe4,0x55,0x1b,0x2d,0xbf,0x7d,0xfc,0xf5,0x60,0xfa,0x5d,0x8e,0x81,0xa2,0xab,0x82, - 0x12,0x53,0xf9,0xdf,0xd0,0xb2,0xb6,0xbe,0xf1,0x0a,0x62,0xfd,0x5b,0x65,0x09,0x59,0xa4,0x95,0xbf,0x90, - 0x9f,0xed,0xa0,0xca,0x36,0xda,0x84,0xe0,0xfb,0x22,0x39,0x57,0xdf,0x82,0x21,0xf8,0xb9,0xd8,0xfa,0x3c, - 0x9f,0x26,0xdf,0x12,0xdd,0xa6,0xaf,0x4a,0x5c,0x9d,0x41,0x3d,0xbf,0x19,0xfd,0x5c,0xb4,0xfb,0xf8,0x6e, - 0x75,0xd6,0xd3,0x4d,0x2a,0xad,0x83,0xf5,0x51,0x73,0xad,0x4f,0xc4,0xd1,0xb0,0xfb,0xd5,0x2a,0xb4,0xdf, - 0xa9,0xad,0x4f,0xe4,0xa2,0x6c,0xbf,0x7f,0xde,0x3d,0xda,0xf6,0x11,0x9d,0x79,0x92,0x2d,0x45,0xd0,0xde, - 0xa9,0xa1,0x28,0x1b,0x22,0xac,0xfb,0x2f,0xcc,0x73,0x1d,0xb6,0x92,0x56,0xb6,0x77,0xca,0xba,0xf6,0x4e, - 0x7c,0x19,0xfc,0xca,0x5e,0x9f,0x67,0x1b,0x66,0xb3,0x78,0x9e,0xce,0x7f,0x17,0x08,0xa7,0xfc,0x4b,0xf7, - 0xc8,0x77,0xca,0x30,0x3d,0x3d,0x70,0x95,0xd1,0x97,0x5c,0xf2,0xed,0x4f,0xdd,0x3b,0x2e,0xf5,0xed,0x95, - 0x7c,0x87,0x94,0xbe,0xef,0x32,0x9b,0x2f,0xcc,0x65,0x97,0x45,0x6d,0xae,0xee,0x90,0xaf,0xf4,0x65,0x53, - 0xa5,0xbc,0xba,0xdb,0xa7,0xfc,0x42,0xee,0x16,0xaa,0x76,0xaa,0xb9,0x17,0xd2,0x4f,0xe5,0x1b,0x4c,0x61, - 0xce,0x0b,0x2a,0x4f,0x37,0xd1,0x36,0x6b,0x35,0x17,0x5b,0x6e,0x19,0x10,0xb7,0xea,0xd1,0x57,0x74,0xfa, - 0x49,0x55,0x0a,0xf7,0x08,0x7d,0x37,0xa7,0xbd,0x36,0xd5,0x26,0x38,0xbf,0x2d,0x56,0xa7,0x48,0xa2,0x09, - 0x5b,0xee,0x8a,0x3d,0x9e,0x53,0xa3,0x53,0x2f,0x81,0x6f,0x5a,0x35,0xaf,0xad,0x18,0xe0,0xb5,0x97,0xc6, - 0x17,0xce,0xf9,0xbd,0xd9,0x0e,0x22,0x0e,0x93,0x21,0xf5,0x23,0x21,0x66,0x5e,0x8a,0x18,0xd1,0xf1,0x66, - 0xf9,0xf9,0x8a,0x6f,0x29,0x8f,0x81,0x74,0x47,0x3f,0x16,0xb2,0x4c,0x7c,0x43,0xfd,0x36,0xe6,0xec,0x9f, - 0x96,0x4d,0xef,0x8d,0xf4,0x44,0xf9,0x84,0xbf,0x78,0x50,0x4a,0x0d,0xcb,0xae,0xcc,0x3a,0x37,0x93,0x18, - 0x6c,0xcc,0xf7,0x58,0x70,0x7c,0x13,0x61,0xb3,0xe4,0xd6,0x18,0x67,0x1a,0xc7,0xab,0x8e,0x98,0x37,0xde, - 0xa4,0xd1,0x50,0x37,0xaa,0xa9,0x92,0xce,0x9d,0x3a,0xaa,0xa8,0x3a,0xa8,0xa1,0xa9,0xa2,0xd1,0x71,0x80, - 0x3d,0x1b,0x20,0xe4,0xf5,0xd2,0xb3,0xc3,0xd0,0xe1,0xd3,0x90,0xc2,0xe1,0xc0,0xf0,0x50,0xc2,0x71,0x2c, - 0xa8,0x60,0xba,0x5f,0x67,0x30,0xcf,0xe8,0x31,0xcb,0x93,0x5e,0x36,0x15,0xcc,0x03,0xae,0xc2,0xa2,0x52, - 0x59,0x7f,0x00,0xed,0x63,0xdc,0x1f,0x66,0x43,0x05,0x59,0x99,0xc4,0xfe,0xfe,0x28,0xe2,0xfb,0x6d,0x6d, - 0x96,0xb5,0xf8,0x46,0x24,0x79,0xed,0x44,0x8a,0x19,0x87,0x8f,0x86,0xbe,0x9b,0x5b,0x42,0x4b,0x8c,0x74, - 0x60,0xcb,0x4c,0x02,0x5b,0xca,0xb0,0x62,0x7e,0x34,0x83,0x89,0x11,0xcf,0xdd,0xc5,0x99,0x34,0x43,0x43, - 0xb2,0x46,0x04,0xf7,0x9d,0xf8,0x08,0xf2,0x98,0xf2,0x8c,0xcf,0x38,0x73,0x39,0xb6,0x4a,0x81,0x97,0x34, - 0x66,0x81,0x9d,0x14,0x38,0x0f,0xf1,0x5d,0xb1,0x53,0x4b,0x30,0xe2,0x71,0x3d,0x4c,0x0b,0xd2,0x34,0x10, - 0x49,0x59,0x25,0x37,0xf5,0x45,0xb9,0x9a,0x4f,0x69,0xaf,0xd2,0x0c,0x36,0x80,0x2d,0xd5,0xb1,0xcc,0xe5, - 0xe1,0x48,0xf0,0x12,0x83,0x2b,0xb2,0x25,0xaf,0xf9,0xcf,0x1a,0x3f,0x5c,0x2e,0xd8,0x8d,0x97,0xb0,0xd5, - 0x95,0xbe,0x3c,0x99,0x86,0x1e,0xe8,0x0b,0x98,0xb7,0xe2,0x8e,0x84,0xe1,0xd3,0xb6,0x44,0x48,0x42,0x1a, - 0x5a,0x4a,0x32,0x69,0x36,0x71,0x37,0xdb,0xbb,0x49,0xb9,0x57,0x0d,0xa4,0xdd,0x69,0xb1,0x2e,0x57,0xa2, - 0xe2,0x41,0xcc,0x67,0xa2,0x4d,0x20,0x12,0xad,0x54,0x55,0xe9,0x8b,0x6e,0x5b,0x73,0x97,0x21,0x8a,0x26, - 0x52,0xaf,0xd2,0xf9,0xc7,0x90,0x23,0xb1,0x57,0x1e,0xae,0x46,0xea,0x2d,0x26,0xca,0x9d,0x8b,0xe5,0x45, - 0xc6,0xd0,0xf8,0x32,0x86,0x77,0xe8,0x39,0xa2,0xa8,0x13,0xb2,0xa6,0x9f,0x13,0xb8,0x9c,0xfb,0x95,0xfb, - 0x1d,0xb9,0xed,0xb2,0xaa,0x3e,0xdc,0xff,0x50,0x6e,0xa8,0x92,0x1b,0x81,0xe9,0xa8,0xbd,0x63,0xe4,0xa1, - 0x1d,0x56,0x66,0x94,0x4a,0xd8,0x93,0x5b,0x98,0xbe,0x9d,0x62,0xfc,0x46,0xa7,0xc4,0x8d,0xef,0x55,0x6a, - 0x29,0x90,0x66,0x9c,0xc5,0x6f,0x44,0x8a,0x43,0x5c,0x5c,0xef,0xb6,0x4a,0xb1,0xa1,0x92,0xdf,0x88,0x00, - 0x7c,0x78,0x7b,0x81,0x41,0x50,0x07,0x27,0xc9,0x13,0x2a,0x44,0x3d,0x62,0x2a,0x74,0xeb,0x50,0x12,0x25, - 0x31,0xe1,0x95,0x9f,0xd8,0xfc,0xd9,0xde,0x35,0xd7,0x98,0xa4,0xc6,0x26,0x59,0xbb,0xb5,0x9d,0x36,0xd2, - 0xc8,0xd6,0xeb,0x9e,0x68,0xf3,0x8d,0x36,0x4f,0x24,0xf2,0xf6,0x12,0xb6,0x72,0x51,0xdb,0x1b,0xa3,0x31, - 0x92,0x4f,0xf8,0x62,0xa8,0x3a,0x01,0xcc,0x8c,0x52,0x62,0x40,0xba,0x17,0xe2,0xb1,0xf2,0xf0,0x38,0x3d, - 0x89,0xf8,0xb2,0xa1,0x24,0x1d,0xa7,0xc6,0xa5,0xbc,0x8e,0x3a,0x97,0xc4,0xd5,0xd1,0x98,0x38,0xb9,0xfa, - 0xc4,0xee,0xd8,0x0d,0xc6,0x2d,0xd1,0x43,0xe9,0x61,0x91,0x35,0x17,0xe5,0x94,0x1f,0xe5,0x0a,0x68,0x3c, - 0x4d,0x74,0x2c,0x81,0xfe,0x89,0xd9,0x1e,0x4e,0x5f,0x94,0x7d,0x43,0x30,0xf3,0x30,0x55,0x03,0xd3,0xc7, - 0x9c,0x03,0x35,0x98,0xf6,0x2f,0x89,0xa5,0x49,0xde,0x88,0x44,0xb6,0x52,0x93,0x4a,0xcd,0xab,0x8e,0x86, - 0xb6,0x4b,0x73,0x03,0x02,0x08,0x67,0xaf,0x70,0x0b,0x94,0x9a,0x71,0x08,0x36,0x0e,0xc4,0xc6,0xb6,0x30, - 0x3d,0x34,0x2b,0x51,0x79,0x36,0x1a,0x37,0x88,0x57,0xff,0x3d,0x8a,0x26,0x2d,0xb2,0xd0,0xcf,0x0b,0x3f, - 0x20,0x1c,0xb7,0x31,0xd0,0x73,0x15,0x5b,0xa7,0xbd,0x97,0x44,0xbe,0xa7,0xe7,0xd9,0xe3,0x8b,0xb4,0x28, - 0xb2,0xf9,0x7a,0xbd,0x7b,0x14,0xb6,0x93,0x40,0x77,0x9b,0xcb,0x8c,0xda,0x39,0x84,0xd6,0xea,0xa6,0x5a, - 0xe1,0x0c,0xe6,0xfb,0x8d,0xda,0xb9,0x56,0xce,0x14,0xf6,0xf4,0xcf,0xb8,0xd7,0x7d,0x80,0x2b,0x9d,0x33, - 0x2a,0x59,0x56,0x8c,0xfa,0xda,0x15,0xa9,0x8b,0x2a,0x59,0xd2,0x34,0xd3,0x61,0x74,0x7f,0xa4,0x1f,0x0e, - 0x87,0xe0,0x50,0xb9,0x54,0xf2,0x41,0xb5,0xab,0xbf,0x40,0x91,0xba,0xd1,0x95,0x40,0xd8,0xb3,0xb9,0x65, - 0x52,0x09,0x67,0x2f,0xf2,0x9a,0xe7,0x53,0x3f,0x6a,0xcb,0xdd,0xcb,0x2a,0xd1,0x09,0xe6,0x86,0x5c,0x22, - 0xa5,0xeb,0x56,0x2b,0x97,0x95,0x5c,0x37,0x4c,0xfc,0xce,0xdb,0xa2,0xe5,0x32,0x78,0x6e,0xa2,0x0d,0xd3, - 0x07,0x93,0x8a,0x81,0x62,0x51,0xa9,0x73,0x19,0x1a,0x31,0x63,0xd7,0x55,0x47,0xd0,0xa4,0xc5,0xa9,0x7b, - 0x81,0x8d,0xe3,0xcc,0xc2,0x2b,0xc2,0x50,0xc1,0xff,0x63,0xeb,0xf3,0x0c,0xe0,0x62,0x65,0x57,0x71,0x16, - 0x79,0x85,0x2a,0xc4,0x8d,0x95,0x42,0xc5,0x6d,0x85,0x8c,0x0d,0x1d,0xeb,0xe0,0xb3,0xa4,0x6a,0x95,0x53, - 0xb0,0x88,0x80,0x60,0x73,0x2b,0x1e,0x5f,0x03,0xf6,0xf3,0xac,0x92,0x6b,0x9b,0x4e,0x19,0x52,0xaf,0xf8, - 0xef,0x11,0x87,0x6a,0xfa,0xc8,0x50,0xfb,0x89,0xff,0x3e,0xc6,0xd9,0xf1,0x10,0x7f,0xde,0x55,0x3d,0x74, - 0xb1,0x39,0xe7,0x16,0x08,0x9e,0xce,0x5e,0x18,0xa7,0x8c,0xad,0x88,0x06,0x92,0x73,0xcc,0x25,0x18,0x5b, - 0x60,0x4e,0xae,0xc6,0xa1,0x3e,0x13,0xe9,0x50,0xdc,0xdd,0xad,0xf8,0x41,0x0e,0x1b,0xc8,0x1a,0x38,0x09, - 0x0f,0xfa,0x7e,0xf8,0xf4,0x8f,0x6b,0x4e,0xc2,0x83,0x66,0x68,0x88,0xf2,0xe3,0x24,0x3c,0xe8,0x03,0x89, - 0x2b,0x73,0x75,0xb8,0x4f,0xbd,0x2f,0x34,0x95,0x39,0x39,0x33,0x54,0x3a,0xb1,0x49,0x83,0xc1,0x43,0xdd, - 0x90,0x44,0x52,0xb3,0xd4,0xeb,0x34,0xa7,0x73,0xdf,0xd5,0x63,0x8f,0x71,0xb0,0x52,0x9a,0x98,0xcf,0xae, - 0x9e,0xf8,0xef,0x94,0xf9,0x9c,0x10,0x95,0x06,0x08,0xaf,0x48,0x37,0xd5,0x69,0x10,0x20,0x6e,0xef,0x89, - 0x4f,0xd0,0xc8,0x9d,0xf1,0x44,0x83,0x34,0x18,0x4b,0x1c,0xfa,0xaf,0x1d,0x9f,0x9d,0xdd,0xd7,0x85,0x88, - 0x2d,0x0c,0x98,0xc3,0x1d,0x4c,0x87,0x39,0x19,0x06,0xee,0xd6,0xc7,0x9e,0x03,0xb3,0xe7,0x10,0x6e,0xa1, - 0xcf,0x51,0x96,0xe8,0xb3,0xd8,0x5d,0x23,0xb7,0x61,0x2f,0x29,0xaf,0x3f,0xb8,0x28,0xaf,0xaf,0x77,0x11, - 0xdc,0xe2,0x95,0x47,0x09,0xd9,0xa9,0x34,0xb6,0x65,0xe6,0x33,0x04,0x9f,0x79,0xe7,0x9f,0xf4,0x1d,0xfa, - 0x9c,0xe9,0xea,0x91,0x54,0xa0,0x3c,0xf6,0xf1,0xdf,0x3a,0x9e,0x8f,0x4d,0x8a,0x3c,0xc6,0x4e,0x6e,0x78, - 0xc6,0xad,0x80,0x1a,0x48,0x39,0x70,0x5e,0x93,0x78,0x7d,0xd5,0xf7,0xb6,0x29,0x2b,0x5e,0x31,0x86,0xde, - 0x06,0x8a,0xa2,0xe6,0xa2,0x2a,0xaf,0xe8,0x10,0x79,0xcb,0xca,0xfa,0xbb,0xf2,0xd9,0x0e,0x4d,0xdf,0x8e, - 0x86,0xeb,0x1d,0x04,0xa1,0x6d,0x2f,0x29,0x4c,0x51,0xa2,0x0d,0xe1,0x24,0xaa,0xfc,0xfa,0xc6,0xc2,0xe6, - 0xde,0xde,0x77,0x61,0xab,0x83,0xe8,0x7d,0xb9,0x0c,0xf5,0x14,0x41,0x0a,0x50,0xac,0x96,0x80,0x27,0x17, - 0x0f,0x8f,0x8e,0x92,0xd6,0xbc,0x08,0x97,0xdc,0xe3,0x7c,0x93,0x11,0x24,0x8f,0xda,0x00,0x07,0xb9,0x45, - 0x08,0x7b,0xb8,0xb0,0x93,0x2e,0x71,0xbf,0x5a,0x10,0x6c,0xd8,0x7d,0x1f,0x8c,0xed,0xf7,0x46,0x52,0x20, - 0x9b,0x37,0xea,0x74,0xc9,0xeb,0xf7,0x67,0x58,0x74,0x6c,0x1b,0x7b,0xaf,0x3d,0x78,0x03,0xc3,0x5f,0x98, - 0x4c,0xb0,0x19,0x7d,0xfd,0xa7,0x71,0xe1,0xb6,0x03,0x27,0x79,0xd0,0x22,0x02,0xed,0x76,0xe1,0xba,0x3b, - 0xf2,0x77,0x60,0xbb,0xa6,0xad,0x9d,0xd8,0x49,0x10,0x09,0x4c,0x18,0x29,0x57,0x61,0xed,0xed,0x76,0x7f, - 0xa2,0xda,0xfb,0xbe,0x68,0x4f,0xa2,0x89,0x31,0xd9,0x99,0x21,0x91,0x3a,0x6c,0x49,0x68,0x78,0x23,0x78, - 0x88,0x66,0x57,0xef,0x07,0x60,0x2a,0x49,0xaf,0x56,0x54,0x38,0xbe,0x65,0xb1,0x75,0xe0,0xe8,0x24,0x39, - 0xc2,0x1d,0xce,0x0c,0xb7,0xfc,0x04,0xf4,0xf5,0xa9,0x65,0xf7,0x77,0x5a,0x59,0x53,0xc4,0x51,0xf1,0xcd, - 0xe3,0x6a,0x6f,0xef,0xb4,0xe2,0x9b,0xcb,0xa6,0xdf,0x70,0x4d,0x51,0x41,0x0b,0x42,0x85,0x74,0xb8,0xe8, - 0x62,0x70,0xa8,0x0e,0x20,0xc7,0xe1,0xc3,0xee,0xd4,0x5c,0x2a,0x19,0x8d,0x3e,0x62,0xa7,0xe3,0x74,0x38, - 0x50,0xef,0xc3,0x49,0xc6,0x0e,0x72,0x5a,0x5e,0xd3,0x1a,0x2f,0x75,0xdb,0x1f,0x2c,0x0c,0xd1,0x1d,0x76, - 0x35,0x51,0x4a,0xdc,0xd6,0x67,0x23,0xa3,0x5d,0x2d,0x4b,0x63,0x44,0xb1,0x5e,0xe7,0x7c,0x75,0x9c,0xdd, - 0x3a,0x2d,0x68,0x11,0x97,0x4d,0x53,0x6b,0x8b,0xc7,0x92,0x2d,0x5b,0xe9,0x4d,0x37,0x39,0x93,0xfd,0xad, - 0xb7,0xbf,0x62,0xba,0xdc,0x8a,0x51,0xdf,0x86,0x99,0x61,0xc4,0xd4,0x5d,0x63,0xa5,0xf1,0x97,0x76,0xb6, - 0xdc,0x55,0x7e,0x6b,0x0b,0x9b,0xce,0x74,0x64,0xe8,0x62,0x1f,0x00,0x78,0x48,0x91,0x27,0xc2,0x3f,0x75, - 0x20,0xca,0x68,0xd5,0xb2,0x2d,0x46,0xfb,0xb3,0x1d,0xe6,0x6f,0x2d,0xfd,0x79,0xd8,0x5d,0xaa,0x86,0xe0, - 0x7e,0x5a,0x5e,0x7d,0x76,0xbd,0xf4,0xe0,0x10,0xa8,0xe7,0x51,0x46,0x74,0xdf,0x13,0xa3,0x3f,0x5a,0xaf, - 0x57,0xa1,0xcd,0x34,0xc7,0xbc,0x30,0xb0,0xa3,0xbf,0xd5,0xb9,0xce,0xde,0x1e,0xb5,0x0e,0xe3,0xc3,0x8d, - 0xf0,0x6d,0x77,0x88,0x38,0xc9,0x8a,0xd5,0x22,0x33,0xf2,0x1c,0xd5,0x91,0xef,0x40,0x69,0x13,0x9f,0xab, - 0x1a,0x7f,0x37,0xea,0x35,0x15,0xc7,0x0e,0x03,0x73,0x3e,0xfa,0x94,0x85,0x8f,0x3d,0x89,0xab,0x70,0xfa, - 0x4f,0x2b,0xf5,0xa6,0x52,0xbf,0x55,0xea,0x49,0xa5,0x9e,0x53,0x69,0xb8,0xf0,0xfb,0x3c,0xb4,0xa6,0x70, - 0xf8,0x38,0xec,0xf7,0xd0,0xef,0x71,0xc1,0xcf,0x6b,0x3b,0x3d,0x51,0x9f,0x93,0x7e,0x12,0x4a,0x14,0xe6, - 0x9b,0x53,0x16,0xf3,0x48,0x26,0x3a,0xaf,0xbd,0x8e,0xcf,0x2a,0xa5,0xbd,0xe1,0x3f,0xc0,0x99,0x3f,0x4e, - 0xcd,0xeb,0xd3,0xf9,0x22,0xae,0x84,0x61,0x23,0x9a,0x2d,0x9b,0xe1,0x3d,0x97,0xf7,0x0d,0xae,0xa1,0x10, - 0xef,0xed,0xb6,0x59,0x8f,0x32,0xb7,0xbd,0x68,0x43,0x9e,0x64,0xa2,0x1f,0x54,0xdd,0xb5,0xdd,0xa1,0xac, - 0x4e,0x0a,0x61,0x43,0x22,0x58,0xb6,0x2f,0x18,0xe5,0x38,0x01,0xb8,0xb8,0x39,0x1a,0xde,0x61,0xed,0x63, - 0x08,0xfa,0x34,0xa3,0xee,0x68,0xe9,0x9c,0x77,0xc5,0x91,0xf6,0x29,0x87,0xb7,0xfd,0xc3,0xb9,0xdd,0xfc, - 0x08,0xca,0xf9,0x1c,0x50,0x98,0x71,0x74,0x84,0xb0,0xc4,0x35,0xf1,0x36,0x9e,0xe9,0x46,0x99,0x8c,0xb8, - 0xcd,0x6a,0x19,0x47,0xbb,0xad,0x20,0x06,0xbb,0x7d,0x84,0xa9,0x34,0xb4,0xbb,0x1b,0xe6,0x58,0x29,0x13, - 0x95,0x60,0x78,0x2a,0x13,0xf0,0x58,0x0b,0x6b,0xd7,0x6b,0x13,0xfa,0xd4,0x59,0xf3,0x71,0x79,0xef,0x9d, - 0xaf,0x2d,0xd0,0xa6,0x90,0xae,0x1e,0x6f,0x91,0x92,0x8a,0xe8,0x5c,0x09,0x7d,0xc5,0x8f,0xa7,0xfa,0xde, - 0xea,0xd0,0x3c,0x1a,0x61,0x2a,0xdf,0x91,0x74,0x5b,0x57,0x92,0x1c,0x99,0x72,0xcb,0x85,0xb9,0x1c,0xa8, - 0x7d,0x43,0xd8,0x12,0x97,0x56,0xdc,0xb1,0x57,0xd9,0x23,0x24,0x3f,0x25,0x35,0x30,0x6d,0xb1,0x95,0x8a, - 0x95,0xe5,0x4d,0x5e,0x0d,0x5b,0x22,0x2a,0x63,0x11,0x2c,0xac,0x3b,0x02,0xce,0xa0,0x9c,0xaa,0x93,0xd6, - 0x90,0x28,0x0d,0x0a,0x16,0x84,0x9e,0x56,0xe2,0x97,0x5c,0xfb,0x6e,0xc9,0x26,0x7e,0xcf,0xf1,0x84,0x38, - 0x7e,0x5c,0x5a,0xfe,0x2c,0x9c,0xab,0x6e,0xdb,0x72,0x49,0xde,0x76,0xfb,0x07,0x5b,0x25,0x9f,0xb0,0xf0, - 0x7c,0xe3,0x0c,0x9a,0x57,0xc9,0xf6,0x04,0xbb,0x98,0x10,0x9f,0xc9,0xc3,0x39,0x2c,0x57,0x3f,0xae,0xa2, - 0x4d,0xc9,0x13,0x7f,0xa7,0xe6,0xeb,0xeb,0x0b,0x58,0x28,0x7a,0x61,0xb2,0x29,0x83,0xa6,0x61,0xa2,0xd5, - 0xe4,0x88,0x93,0xe4,0x5f,0x5a,0x6c,0x37,0x69,0xcf,0xc6,0x55,0x5e,0x08,0x0b,0x7a,0xb6,0xab,0x00,0x88, - 0x73,0xd1,0x31,0x36,0x4a,0xc2,0x72,0x6d,0x1f,0xda,0x72,0x0f,0x91,0xbe,0xbc,0xae,0xea,0x6b,0x61,0x54, - 0xb5,0x62,0xa1,0x85,0xfe,0x2b,0x9b,0x5b,0x73,0x44,0x50,0xa3,0xf0,0x67,0x03,0xb7,0xf6,0xee,0x62,0x57, - 0x73,0xf7,0xcd,0x38,0x84,0xfb,0x6a,0x84,0xfb,0x95,0x2d,0x2e,0x25,0x46,0xcf,0xf8,0x64,0x46,0x71,0x8a, - 0x0a,0x77,0x0f,0x40,0xd1,0x69,0x9b,0x80,0x5e,0x5a,0x63,0xbb,0xa3,0x4d,0x0b,0xcf,0xb1,0x23,0x68,0xbb, - 0x27,0x56,0x52,0x29,0x46,0xae,0x82,0x44,0x43,0x96,0x4a,0x0d,0x4f,0xc5,0xe6,0xe1,0x79,0xe1,0xb8,0xad, - 0x12,0xb1,0x57,0x99,0xca,0xb3,0x7d,0x8d,0x10,0xa8,0xd2,0xeb,0xf9,0xc1,0xc8,0x93,0x66,0x8e,0x2a,0x62, - 0x59,0xee,0x74,0xaf,0x35,0x87,0x4c,0x13,0x17,0x66,0xda,0x8c,0xe3,0xea,0x84,0xb8,0x7b,0xf4,0xa0,0x65, - 0xdb,0xc0,0x64,0x0b,0xc6,0x1d,0x37,0xde,0x4d,0xc6,0x94,0xaa,0x5e,0x54,0x2d,0x21,0xe5,0x73,0xda,0xaf, - 0xcf,0xaa,0xe4,0x50,0xbd,0xaa,0x92,0xfb,0xea,0x25,0x1a,0x7e,0xea,0xeb,0xed,0xf8,0xe2,0xea,0x6d,0x5a, - 0x5c,0x30,0x90,0x1c,0x62,0xa7,0x2b,0x62,0x30,0x5f,0x56,0x46,0x0f,0x47,0xd3,0xf6,0x61,0xc5,0x43,0x96, - 0xa8,0x6c,0xde,0x19,0x30,0xee,0x43,0x76,0x0e,0xe6,0x3b,0xf2,0x2b,0x06,0x25,0x23,0xa4,0xb1,0xc6,0x9d, - 0x1c,0xea,0xc3,0xc7,0x4c,0xa3,0xc2,0xa0,0x1e,0x13,0xfc,0x41,0x15,0x5d,0xd4,0x65,0x13,0xe8,0x44,0x71, - 0x9f,0xd3,0x0b,0x72,0xe4,0xa0,0x41,0xb2,0x3c,0x69,0x61,0x5a,0xcf,0x0d,0x8a,0xde,0xf6,0x48,0xf2,0xd6, - 0x56,0xd9,0xda,0xad,0xb9,0xb7,0x7b,0x8a,0x6d,0x34,0x68,0x77,0x13,0x32,0x6d,0x3b,0x47,0xe9,0xb9,0x5c, - 0x87,0xab,0x1a,0x7d,0x88,0x31,0xb8,0xeb,0x83,0xcd,0xa4,0xa9,0x2d,0x37,0xc0,0x64,0xcb,0x2f,0x27,0x12, - 0xaa,0x95,0xd0,0x94,0xd0,0xdb,0x77,0xdc,0xdd,0xe6,0xaf,0xb3,0xd0,0x68,0xe5,0xcc,0xe4,0xd2,0x36,0xe3, - 0x70,0xd9,0x22,0xb8,0x90,0x55,0x94,0xb6,0xde,0x54,0xe5,0x27,0x11,0x0f,0xe8,0xe4,0x3a,0x9b,0xcf,0xe4, - 0xbd,0x6f,0x1b,0xd9,0x5b,0x33,0x0b,0xbb,0x18,0x4c,0xc3,0x23,0xdc,0xa4,0x0d,0xb7,0xa3,0x43,0x72,0x16, - 0x0e,0xd7,0x99,0x9c,0xbd,0x3d,0x4a,0x34,0x31,0x15,0x11,0x11,0xd8,0xbc,0x14,0xde,0x4e,0x30,0x4a,0xdb, - 0xcc,0xe4,0xf2,0x3d,0x47,0x77,0xaa,0xb2,0xa4,0xa7,0x71,0x21,0x4f,0x71,0x86,0x34,0xab,0xae,0x3c,0x3e, - 0xe1,0x22,0xd9,0x0c,0xb7,0xf6,0x78,0x02,0x1b,0x11,0x0f,0x65,0xde,0x26,0x34,0x09,0xdd,0x0d,0x7c,0xc8, - 0xa5,0x1c,0xaa,0xd2,0xef,0x16,0x41,0xd8,0x94,0x36,0xf9,0x08,0xd2,0x4e,0xcb,0x83,0xfc,0xf9,0xa2,0x92, - 0xfa,0x12,0xa1,0x3e,0x7b,0x1e,0xca,0x25,0xb6,0x10,0xb6,0x35,0x6c,0x35,0x91,0xe8,0x88,0x63,0xcd,0x67, - 0x8f,0x0e,0xe8,0x43,0xe5,0xf2,0xab,0x5b,0x1a,0x94,0xb3,0xdb,0x8c,0x4f,0xe0,0xe5,0xa8,0xca,0xb2,0xda, - 0x69,0x87,0x3b,0x4b,0x68,0x0f,0xfc,0xf6,0x86,0xa3,0x1d,0x58,0x60,0xa5,0x4c,0x94,0x4b,0xff,0x20,0x6a, - 0xba,0xa0,0x2e,0x77,0x26,0xfa,0xa4,0x46,0xc2,0x47,0xfc,0xe9,0xa4,0x65,0xec,0xad,0xfc,0x9b,0xa2,0xef, - 0x78,0x77,0xa9,0x22,0xde,0xc3,0x86,0xd7,0xd2,0xb7,0x44,0xfc,0xab,0xdf,0x1e,0x68,0x7d,0x48,0x2e,0x3d, - 0xe6,0xb0,0xf4,0x50,0xc0,0x04,0x42,0x83,0x04,0x10,0xe8,0xe5,0x1e,0xe9,0x21,0x41,0xad,0xa4,0x84,0xdd, - 0xbf,0x81,0x6a,0xb6,0xa6,0xdb,0x95,0x36,0xb3,0x5d,0xcb,0xb6,0x52,0x6d,0xa3,0xb6,0x48,0x85,0x79,0xb2, - 0xcc,0xc2,0x50,0x0b,0x0b,0xdd,0x02,0x8a,0x94,0x5f,0x49,0x5c,0x8e,0x1e,0x52,0x46,0xb5,0xae,0xad,0xed, - 0x09,0xff,0x4d,0xab,0xfa,0x2e,0x84,0xc6,0x32,0x27,0xf6,0x02,0x86,0x7c,0x3d,0xf4,0xc8,0x16,0x10,0x18, - 0x0e,0x06,0x6e,0xf3,0xdd,0x15,0x1f,0x35,0xc6,0xb9,0xe5,0xf3,0x68,0xda,0x21,0x3e,0x46,0x1a,0x95,0x25, - 0xb5,0x74,0x0c,0xfc,0x1e,0x6a,0x0b,0x1b,0xb0,0x44,0x60,0x20,0xb3,0xa1,0xb7,0xfa,0x5a,0x6a,0x4f,0x35, - 0xdb,0x74,0x89,0xcb,0x9d,0x78,0xaf,0x97,0x26,0xa4,0xed,0x33,0x98,0x4b,0xd3,0xd2,0x12,0x6f,0x83,0x91, - 0xc3,0x29,0x43,0xb1,0xbe,0x86,0xb0,0xd7,0x9c,0xc3,0xda,0x48,0x3f,0x02,0xd0,0xda,0x9d,0xa8,0x00,0x51, - 0x0a,0xe7,0xf9,0x9e,0x29,0x62,0x3f,0x27,0x4d,0x52,0xc2,0x18,0x5b,0xf4,0x30,0xdd,0x39,0xe8,0x8e,0xbe, - 0x7d,0x79,0x7d,0xc3,0x97,0xd7,0x27,0x22,0xaa,0x80,0x24,0x71,0x7c,0x1e,0x2f,0x43,0xd1,0xf2,0xc9,0xf5, - 0xc8,0xa6,0x5e,0x34,0x01,0x28,0x1c,0x7f,0x0e,0x7b,0x0a,0x9c,0x96,0x21,0xd2,0x4e,0x59,0x57,0xd7,0x2b, - 0x3c,0x6d,0xf7,0xd0,0x33,0x0a,0xce,0x34,0xc3,0xde,0x12,0x05,0xe8,0x3c,0x96,0x08,0x28,0x36,0xdd,0x0c, - 0x71,0x57,0xd5,0x0d,0x8b,0x3a,0xf9,0x9c,0xe0,0x0b,0x91,0x21,0x49,0xe3,0x9b,0xcd,0xfc,0xbb,0x0d,0x7c, - 0x50,0xe4,0x18,0xdf,0x5b,0x04,0x71,0x9a,0xf8,0x8c,0x83,0x1e,0xac,0x32,0x32,0x99,0x68,0x94,0x5a,0x71, - 0x18,0x22,0x59,0xa7,0x27,0x23,0xda,0x78,0x33,0x22,0x5b,0x11,0x5e,0xf3,0x8b,0x7f,0x8a,0xed,0x79,0x58, - 0x0f,0x82,0x20,0xf2,0xaf,0x34,0x3a,0x00,0xc1,0xf4,0xf5,0x57,0x09,0x5f,0x22,0xa9,0x57,0x18,0x3d,0xc7, - 0x15,0x9d,0x9b,0x87,0x42,0xe0,0x20,0xb4,0x49,0xfc,0x30,0x34,0x33,0x45,0x20,0x08,0xb0,0x6f,0xac,0xee, - 0xec,0x36,0x68,0x3e,0x35,0x05,0x7e,0x32,0x5b,0xa2,0x0f,0x15,0x57,0xc9,0x1f,0x88,0x50,0xde,0x0a,0xb7, - 0xd1,0x18,0xc6,0xab,0xc1,0x95,0x2d,0xbd,0x8b,0x53,0x8e,0xcb,0xb8,0x84,0xc0,0x63,0x04,0x71,0x52,0x81, - 0x1b,0x3d,0xc0,0x68,0xbe,0x83,0x27,0x27,0xed,0x9a,0x73,0x75,0x4e,0xbc,0x3b,0xdc,0x32,0x34,0xf4,0xae, - 0x30,0x36,0x04,0xfa,0x16,0xb7,0x3b,0xdb,0xf9,0x88,0x3d,0xbe,0xa8,0x7f,0x30,0x76,0xe1,0x87,0x5d,0xd1, - 0x7c,0xde,0xe2,0x37,0xe1,0x75,0xaf,0x62,0x40,0xdc,0x8e,0xdb,0x51,0xf9,0x77,0xae,0xe1,0xbe,0x47,0xb3, - 0x48,0x7c,0xdf,0xe3,0x54,0xdf,0x2e,0x8f,0xe0,0x21,0xc2,0xe1,0x9a,0x14,0xd3,0x35,0xb1,0x17,0x34,0x58, - 0x0f,0xcb,0xd6,0x74,0x51,0x9b,0x56,0x2a,0x46,0x42,0x0a,0xeb,0xb7,0x69,0xdf,0x3c,0xe1,0xbc,0x16,0x58, - 0x8d,0xe2,0xc2,0xc3,0xa1,0xc6,0x12,0x58,0x13,0x23,0xb6,0x66,0xf8,0x28,0x49,0x8a,0x70,0xe5,0xdd,0x5c, - 0x3a,0x2a,0xb6,0x37,0x16,0x2e,0xed,0xf9,0x9c,0x31,0x0c,0x03,0xce,0x66,0x64,0x03,0x39,0x15,0x9f,0x2d, - 0xcc,0xf0,0xde,0x6f,0x2e,0x73,0x1d,0x7a,0x94,0x33,0x9d,0x20,0x02,0xaa,0xb4,0x61,0xfe,0x4a,0x61,0x8d, - 0xb9,0x8a,0xa8,0x65,0x36,0x87,0xab,0xc1,0x92,0x3b,0xed,0x24,0xb9,0x2f,0x29,0x79,0xdd,0x4e,0xed,0xd3, - 0xa0,0xcb,0xd5,0x42,0x2e,0x54,0x0b,0x16,0x53,0xc8,0x42,0xb9,0xa5,0x19,0xb7,0x2e,0xc8,0x35,0xe8,0xa2, - 0x91,0x3a,0x30,0x91,0x4d,0x05,0x56,0xfd,0xa2,0xd6,0x7f,0x2f,0x77,0x9a,0xdc,0xc6,0x09,0x06,0x95,0x71, - 0x8c,0xf0,0xed,0x67,0x2a,0x2b,0x7a,0xe3,0x48,0xc5,0xe1,0x53,0xca,0x7e,0x52,0x25,0xf7,0xfe,0x83,0xbb, - 0xcb,0xe3,0x7b,0x2a,0xfc,0xad,0x4a,0x28,0xcd,0x1f,0x45,0x59,0x74,0x74,0xcf,0x5b,0xf0,0x9b,0x39,0xf8, - 0xbd,0x2d,0x00,0x9e,0x00,0x45,0xc1,0x41,0xd9,0x95,0xbe,0xfc,0x43,0x40,0x45,0x53,0x5d,0x74,0x60,0x1a, - 0x8d,0x81,0x4b,0xf1,0x82,0x39,0x35,0xe8,0xa7,0x51,0x37,0x01,0x8a,0xb9,0x64,0x9b,0x26,0xb3,0x9a,0x49, - 0x86,0x8b,0x8d,0xfa,0xad,0x6a,0x8f,0x63,0x92,0x75,0x46,0xe2,0x1c,0xf5,0x79,0x6a,0xee,0x94,0xb3,0x19, - 0x3b,0x70,0x2b,0x63,0x27,0x54,0x79,0x97,0x91,0x6d,0xf4,0x16,0xa6,0xaa,0xdd,0xd4,0xcf,0x88,0xaa,0x56, - 0x95,0x0c,0x0d,0x1f,0x56,0x5b,0xad,0xce,0x66,0xdb,0xd3,0xb7,0xdb,0xb5,0x5b,0x8a,0x5a,0xf0,0xfc,0x19, - 0x3a,0x94,0x5b,0xef,0x5b,0x80,0x9b,0xbf,0xb6,0x02,0x18,0xa0,0x5e,0x02,0x7f,0xaa,0x04,0xf5,0x74,0x66, - 0xbf,0x7d,0x2b,0x84,0x69,0xd9,0x59,0x75,0x74,0x17,0x4b,0x22,0xf3,0xeb,0x62,0x8d,0x05,0x89,0xd2,0xbf, - 0x36,0x92,0x0f,0x1d,0xca,0x0e,0xcb,0x24,0x87,0x91,0x06,0x4c,0x17,0x70,0x3f,0xd0,0xac,0xe8,0x5c,0x1e, - 0x99,0x6e,0x5d,0x1e,0xd9,0xb7,0xa6,0xd9,0xa2,0x8f,0x13,0x16,0x66,0x08,0xfc,0x4e,0x7b,0x30,0x05,0x9c, - 0xc8,0x0c,0xdf,0xfe,0xcd,0xe1,0x18,0x5e,0x39,0x71,0xe1,0x71,0xf8,0x17,0xa1,0x5d,0x18,0x6a,0x9e,0x0e, - 0xd5,0x03,0x0e,0x96,0x62,0x90,0xf1,0x83,0x92,0x11,0x32,0xdf,0x83,0x45,0xd8,0xd8,0xd8,0x92,0x01,0x11, - 0x5b,0x27,0x9f,0xb7,0x61,0x41,0xbb,0xf3,0x2e,0xb7,0xbb,0x73,0x21,0x2e,0x04,0x2c,0xdd,0x87,0x77,0xb4, - 0xc8,0xf1,0x3d,0x25,0x5b,0xf8,0xa6,0xbb,0xdd,0x4e,0xbb,0x5a,0x1b,0xa1,0x24,0x34,0x17,0xaf,0x79,0x1d, - 0xd8,0x07,0xb4,0x48,0x5b,0xed,0x7e,0x61,0xc2,0x14,0xca,0x62,0x67,0x73,0xa5,0xd5,0xd1,0xc2,0x68,0xd0, - 0x78,0xce,0x70,0x6b,0xa2,0xcf,0x3b,0x0a,0x33,0x41,0xfc,0xc3,0xd8,0x7c,0x63,0x2c,0xe2,0x58,0x14,0x7a, - 0x7a,0x0a,0x72,0x36,0xd2,0x6a,0xe0,0x9e,0x5c,0xdb,0x12,0xc7,0xe2,0x38,0xec,0x9c,0x0d,0x1e,0x53,0xdf, - 0xc9,0x10,0xb6,0xbe,0x7b,0x96,0xf8,0x12,0x81,0xbe,0xf2,0x3a,0x40,0x35,0x0d,0x21,0xe7,0xdb,0x05,0x89, - 0x51,0x3f,0xbd,0x5c,0x65,0xa7,0xa7,0x89,0xdb,0x1d,0xe8,0x8d,0xc1,0x0f,0xf4,0x68,0x4b,0x78,0x8c,0xf4, - 0x1d,0x2d,0x28,0x95,0x17,0x69,0xd3,0xbc,0xc9,0x84,0x68,0xad,0x90,0xce,0x73,0x92,0xd5,0x56,0xaa,0x9d, - 0x8e,0x3b,0x7c,0xca,0xbd,0x69,0x41,0xa6,0x27,0xee,0xdb,0x52,0xc0,0x18,0x92,0x5f,0xb7,0x69,0x5e,0x3d, - 0x33,0xe1,0x76,0x5d,0x5a,0x58,0xd4,0x51,0x96,0xec,0x1a,0xa0,0x68,0xb3,0xb7,0xb0,0x87,0x69,0xc1,0x86, - 0xf1,0xc0,0x89,0x54,0xff,0x07,0xee,0x66,0x47,0x7f,0x74,0xa3,0x5d,0x56,0x35,0xf4,0x28,0x5f,0xda,0x2b, - 0x63,0xe4,0x04,0x50,0xca,0x78,0xec,0x7d,0x4b,0x6e,0x71,0xcb,0x70,0xdd,0x49,0x34,0x72,0x86,0x74,0xad, - 0x22,0x56,0x0c,0xdc,0x58,0xdd,0x8d,0xcd,0x82,0x5d,0xb5,0x57,0x83,0x23,0x1b,0xb4,0x35,0xa7,0x69,0xcd, - 0x4b,0x32,0xb6,0x8f,0xfb,0xfb,0x76,0x2a,0xfc,0x59,0x50,0x7d,0xb0,0xad,0xb7,0x8e,0x76,0x2f,0x32,0x33, - 0xeb,0x7c,0x99,0x2c,0x08,0x13,0x66,0xfd,0x3c,0x00,0xfa,0x20,0xda,0x86,0xa7,0x96,0xb0,0x5e,0xac,0xed, - 0x37,0xea,0x13,0x71,0xa8,0x4f,0x3b,0xd8,0x21,0x52,0x4f,0x5b,0x80,0x51,0x10,0xaf,0x7f,0x94,0x4f,0xda, - 0x96,0x8f,0x1a,0xbb,0xbc,0xd7,0x7a,0x46,0x82,0xa6,0xd6,0x47,0x5a,0x18,0xb0,0x65,0xe6,0xa0,0x3c,0xb4, - 0x69,0x05,0x0e,0x55,0x62,0x44,0x5d,0xca,0x0b,0x98,0x2c,0x32,0x3e,0x8e,0x02,0xe7,0x70,0x52,0xd4,0x36, - 0xd7,0xd3,0x02,0x08,0x63,0xb5,0x67,0xde,0x61,0xb5,0x87,0xe0,0xfc,0xc6,0x37,0x6d,0xbd,0x4e,0x8f,0x0f, - 0x10,0xfd,0x8d,0xfe,0x42,0x99,0x23,0x04,0xaa,0x2d,0x9b,0x3c,0xa6,0x83,0x80,0x45,0xc5,0x4d,0x5b,0x60, - 0x91,0x9b,0x1b,0xda,0xda,0x1a,0x14,0xe8,0x25,0xcc,0x1e,0xce,0xd9,0xee,0x22,0x4b,0xb4,0xb5,0x45,0xd3, - 0x92,0x9f,0xa1,0x58,0x4b,0x7c,0xb1,0x85,0xc2,0x03,0x29,0x0d,0xcf,0xf8,0xc4,0x60,0x00,0x6b,0x8c,0x42, - 0x43,0x14,0x99,0x34,0x11,0xcc,0xbf,0x14,0x90,0x44,0x27,0x59,0x15,0x46,0x2e,0x7a,0x20,0xb4,0x2a,0x42, - 0xbf,0xbe,0xad,0xd4,0x4f,0x95,0x7a,0x54,0xa9,0x0f,0x55,0x72,0xac,0x3d,0x25,0xdf,0x66,0xe7,0x4f,0x3f, - 0x2d,0xc5,0xda,0xf6,0x44,0xbd,0xaf,0x92,0x9b,0x1f,0x8c,0x08,0x3b,0xd6,0x91,0x4d,0xfc,0x48,0xd1,0x66, - 0x8f,0xb1,0xbe,0x4e,0x82,0x5b,0xe4,0xc5,0x64,0xbe,0x9a,0x66,0xf1,0x07,0x42,0xcf,0x9f,0xec,0xe3,0x22, - 0xfd,0x14,0x9b,0x36,0xe4,0x6e,0x9b,0x93,0x8d,0xd2,0x84,0x7b,0xdc,0xc5,0x42,0x93,0x94,0xf6,0xd1,0xad, - 0x44,0x06,0x73,0x96,0xf0,0xdd,0x50,0x16,0xd6,0x5b,0x8e,0x2d,0x46,0xcf,0xca,0x8b,0x6d,0xab,0x8b,0x9e, - 0x1b,0x49,0x26,0xde,0x54,0xe6,0xaa,0x22,0x30,0xe4,0x9d,0xeb,0xba,0xee,0xc3,0xec,0x13,0xbd,0xb1,0x9c, - 0x0c,0xc9,0xc2,0xf1,0x6f,0x5a,0x82,0x06,0x91,0xd3,0xa7,0xbf,0xf3,0xe5,0xae,0xfb,0x72,0xa3,0xb6,0xe3, - 0x0c,0xf8,0x28,0x8f,0xc1,0x6d,0xa8,0x03,0x7c,0xd1,0x46,0xf8,0x45,0x0c,0x85,0xd9,0x9f,0x61,0x4b,0xe2, - 0xec,0x87,0xd9,0x7c,0x83,0x4b,0x08,0x94,0xa6,0x9c,0xf4,0xc0,0x60,0x66,0x2e,0xea,0x7b,0x7e,0xe5,0x7b, - 0x28,0x09,0xaa,0x77,0x89,0xed,0x44,0x97,0x72,0xc8,0x97,0x88,0xe4,0xd9,0xdb,0x23,0x84,0xf8,0x1b,0x6e, - 0xc9,0x76,0x51,0xf3,0x1b,0x13,0x1b,0xc8,0x4d,0xa1,0x36,0x03,0xc1,0x14,0xaa,0x89,0x11,0x67,0xf0,0x5d, - 0xc5,0x85,0x44,0x4e,0x9f,0xe4,0xd3,0x41,0x28,0x91,0x2b,0x82,0x38,0x46,0x80,0x36,0x8e,0xc5,0x12,0x40, - 0xcd,0x80,0xc8,0x4a,0xe9,0xf1,0xe4,0x64,0xdc,0xab,0x6d,0x42,0x4e,0x8f,0xc2,0x69,0x25,0x37,0x53,0x69, - 0xdb,0x9c,0x09,0x62,0x24,0xa3,0x24,0xd1,0xb9,0x36,0x49,0x96,0x95,0xa0,0x8d,0x08,0x11,0x43,0x4e,0xd9, - 0x30,0x80,0x26,0x8f,0xb6,0xf2,0x73,0xd0,0x71,0xb8,0xb3,0x54,0xb5,0xe8,0x8d,0xc8,0x88,0x5c,0x9c,0xe6, - 0x06,0x52,0x1f,0x33,0x09,0x74,0xee,0xec,0xed,0x65,0xf4,0x15,0x31,0x28,0xa3,0xb7,0x40,0x81,0x2a,0x7c, - 0x04,0x13,0xc1,0xe8,0x16,0x2e,0xf0,0x4e,0x71,0x1b,0xf3,0x47,0x9b,0x2f,0x10,0x75,0x7d,0x40,0x5b,0x30, - 0x52,0x6f,0xe9,0x90,0x6d,0xf2,0x79,0x72,0x03,0x07,0xcf,0xf8,0xfb,0x82,0x40,0xaa,0x21,0xc8,0x88,0x2f, - 0xd5,0x02,0x26,0xd9,0x7a,0x89,0xe3,0xe7,0x4a,0xea,0x79,0x2b,0xea,0x9b,0x2c,0x7e,0xb7,0xc1,0xa7,0xc2, - 0xf8,0xbd,0x85,0xd9,0xa0,0x66,0xf7,0xe8,0xd9,0xe2,0xe0,0xf7,0x78,0xeb,0x57,0x9b,0xc8,0xb6,0xba,0xc5, - 0xf0,0xda,0x7d,0x65,0x0c,0xb0,0xfb,0xdc,0xaf,0x22,0xaf,0xf6,0xe1,0xe9,0x59,0x5a,0x67,0x09,0x0d,0xee, - 0x32,0xf4,0x52,0xed,0x52,0xd6,0x84,0x52,0x64,0xac,0x75,0x76,0x0b,0x75,0x0c,0xf1,0x3a,0xad,0x37,0xae, - 0xf3,0x78,0x33,0x5f,0x9d,0xe7,0x1c,0x57,0xb5,0x3f,0x83,0x6f,0xb4,0x63,0x64,0x6f,0x3c,0x22,0x33,0xdc, - 0x0d,0xd1,0xe2,0x0b,0x84,0xec,0x6c,0x93,0xcf,0x8e,0x49,0xd2,0xde,0x13,0x5a,0x3e,0xd1,0x23,0x73,0x40, - 0xec,0x11,0x6e,0x74,0x6c,0x9f,0x34,0x71,0xcd,0x61,0xb5,0xfa,0xbe,0x80,0x1e,0xcb,0xbb,0x10,0x8c,0x79, - 0x36,0xdf,0x98,0x8c,0x17,0x6c,0x91,0x7f,0xca,0x7b,0xbd,0xa5,0x79,0xa4,0x4e,0xff,0xe2,0xbf,0x2a,0x5b, - 0x41,0x5b,0x4e,0x4b,0xfb,0x2c,0x39,0xd0,0x02,0xda,0xc3,0x51,0x36,0x14,0xc8,0x69,0x55,0x9e,0x25,0xac, - 0xb3,0xf1,0x88,0x70,0x3e,0x40,0xe9,0x4b,0xb9,0xd7,0x16,0xfb,0x55,0xae,0x0d,0xc4,0x13,0x8b,0xf4,0x80, - 0x1c,0xa0,0x2f,0x34,0x16,0xe8,0xc6,0x59,0x05,0xf1,0x3f,0xe4,0xb6,0x43,0x1b,0x43,0x45,0xc2,0x65,0xb7, - 0x23,0x60,0x9b,0x15,0xcb,0x1b,0x76,0x89,0xd0,0x11,0x03,0x52,0x77,0xdc,0x77,0x61,0xc9,0xa3,0x25,0x22, - 0x5f,0xdd,0x94,0xa4,0x08,0x3c,0x4d,0x43,0xc4,0x8d,0xeb,0xa9,0x37,0x35,0x85,0x3f,0x2f,0x74,0xda,0xae, - 0x96,0x50,0xd1,0xb8,0x22,0xdb,0xf2,0x69,0x27,0x3c,0xfd,0xac,0x78,0x16,0xb2,0x43,0x5f,0xda,0x72,0x6a, - 0xa5,0x2d,0x1b,0x5c,0x25,0x92,0xb6,0xc0,0xba,0x2b,0x35,0xdc,0x6e,0xc3,0x94,0xea,0x36,0xb3,0x6a,0x37, - 0x53,0xb0,0xa3,0x87,0x69,0x42,0xaf,0x61,0xa1,0x1f,0x28,0x45,0x20,0xa6,0x90,0x5f,0x7a,0xc7,0x0e,0x2a, - 0xf0,0xf7,0x56,0xb7,0x09,0xe6,0x7c,0x39,0x98,0xac,0x92,0x0b,0x52,0xb6,0xb7,0x23,0xfb,0x21,0xd8,0xd9, - 0x33,0xee,0x70,0x6e,0x66,0x4d,0x47,0x4c,0x4e,0xc6,0xf7,0xae,0xa4,0xb4,0x05,0xad,0xff,0x1d,0xee,0xbc, - 0x4d,0x9d,0xc2,0x35,0x67,0x0f,0x27,0x95,0x6e,0x36,0x84,0x00,0x22,0x22,0x30,0x80,0x0c,0x6e,0xe9,0xe1, - 0x4f,0xec,0xf9,0xe1,0x6b,0x67,0x3c,0xc7,0x92,0xd0,0x0b,0x0b,0x20,0xce,0x62,0x65,0x58,0x48,0xf0,0xf8, - 0x82,0xa3,0xef,0x6b,0x28,0xb4,0xe6,0xac,0x2d,0x14,0xa4,0xfb,0x8d,0x8b,0x78,0xfc,0x98,0x02,0x52,0x51, - 0x9f,0x6c,0x91,0xc3,0xad,0xdc,0x20,0x72,0x65,0x5c,0x28,0x1d,0xc8,0xbc,0xd8,0x18,0x7f,0x9f,0x16,0x16, - 0x84,0x49,0x61,0xc1,0x2e,0x2f,0xbd,0x79,0xb0,0x25,0xef,0xc7,0xf9,0x4f,0xdb,0x42,0xbc,0xbc,0x7e,0x27, - 0x5e,0xc6,0xe2,0x12,0xfd,0x47,0xf1,0x57,0x3f,0xac,0xeb,0x4a,0x3b,0x45,0x6e,0x7b,0x53,0xfb,0x68,0xa4, - 0xcd,0x4d,0x0a,0x2d,0xef,0xbe,0x45,0x3f,0xa9,0x62,0x78,0xbc,0xe5,0xb0,0xba,0xbe,0x3f,0xfc,0x6a,0x78, - 0xf8,0x85,0x04,0x68,0xf9,0xae,0x52,0x7f,0x54,0xea,0xf7,0x4a,0xfd,0x50,0xa9,0xef,0x2b,0xf5,0x6d,0xa5, - 0x7e,0xae,0xd4,0xbf,0x2b,0xf5,0x4b,0xc5,0x81,0x34,0xf8,0x3e,0x65,0x7d,0x97,0xaa,0xfa,0x91,0xd3,0xf8, - 0xce,0x18,0x85,0x7a,0x89,0xca,0x4c,0x95,0xcc,0x8a,0x92,0x7b,0x73,0x40,0x1a,0x9e,0xc3,0x60,0x10,0x24, - 0x6b,0x7e,0x8b,0x2f,0x91,0xbb,0x37,0x9c,0xd6,0xe2,0xc7,0x8a,0x65,0x69,0x81,0xc4,0x28,0x86,0xcb,0x45, - 0x83,0x70,0x2d,0xfa,0x16,0x1e,0x5d,0x28,0x90,0x46,0x78,0x51,0x29,0x97,0x68,0x92,0xc9,0x47,0x97,0x29, - 0x97,0xd8,0xe8,0x3c,0x1b,0x09,0x1d,0x39,0x10,0x30,0x97,0x9c,0xb3,0x51,0x4d,0x8e,0xce,0x4f,0xe4,0x12, - 0xf5,0x6c,0x9a,0x37,0x30,0x9d,0x53,0xd3,0x2a,0x3d,0x3f,0xe7,0xa7,0x7a,0x99,0xcd,0xe7,0x5c,0x33,0xf5, - 0xbd,0xe0,0xc2,0x74,0x04,0x94,0x57,0x33,0x42,0xed,0x35,0xa1,0x2e,0xe2,0x27,0xd9,0x19,0x53,0xa5,0xab, - 0xa6,0x9c,0x95,0x93,0x55,0xcd,0x4f,0xcb,0x79,0x7a,0xad,0x74,0x87,0x38,0xe4,0x08,0x9d,0xd6,0xb0,0xce, - 0x23,0x72,0x75,0x5e,0xd3,0x11,0x4e,0x73,0x57,0x65,0xca,0x90,0x75,0xfa,0xd7,0x94,0xd7,0xaf,0xdc,0x67, - 0xf3,0x62,0x86,0x8e,0x77,0x62,0x79,0xa6,0x79,0x8d,0xee,0x4d,0x55,0x56,0xc8,0x2f,0x62,0x17,0x14,0x25, - 0x4d,0x61,0x0e,0xc8,0x55,0x17,0xf9,0x74,0x4a,0x5d,0xc3,0xb1,0xd8,0x64,0xd5,0x22,0x2f,0x90,0x48,0x10, - 0x55,0x35,0x2a,0xaf,0x17,0xe9,0x52,0xe5,0x4d,0xb6,0x90,0x18,0x27,0xf3,0xb2,0x5c,0x2a,0x73,0x7d,0x93, - 0x92,0x46,0x8b,0x12,0x41,0x5a,0x14,0x02,0x4b,0xd4,0xf9,0x1f,0x84,0x9b,0xca,0xfa,0x22,0x05,0xaf,0xe9, - 0x5a,0x28,0x4a,0xc4,0x8d,0xa2,0x75,0xa6,0x66,0x96,0x29,0xa1,0x21,0xda,0xa9,0x9f,0xf2,0x86,0xc8,0xd9, - 0x74,0x5a,0x16,0x73,0xc4,0x53,0xf9,0x7d,0x45,0xfb,0x6e,0xaa,0xb4,0x53,0xe5,0x54,0x09,0x3f,0x44,0x30, - 0x91,0x2e,0xe6,0x04,0x0c,0xca,0x8e,0x09,0xde,0x97,0x3c,0xdb,0xf6,0xc2,0x14,0x0e,0x07,0x4a,0x73,0x4f, - 0x99,0x80,0x79,0x84,0x94,0xe0,0xe8,0xef,0xea,0x32,0xaf,0x73,0x2a,0x89,0x00,0xef,0x79,0x12,0x5c,0x34, - 0xcd,0x32,0xbe,0x77,0xef,0xea,0xea,0x6a,0x78,0xf5,0xc5,0xb0,0xac,0xce,0xef,0x1d,0x7e,0xfd,0xf5,0xd7, - 0xf7,0x3e,0xcd,0xf3,0xe2,0x63,0xa0,0xf2,0xbc,0xe7,0x80,0x0d,0xe2,0x96,0xf3,0xc9,0x57,0x80,0x32,0x29, - 0xcf,0xc9,0x26,0x38,0xcf,0x57,0xf0,0xb4,0xeb,0xfb,0x7e,0x27,0x87,0x25,0xae,0xf5,0x2b,0xf9,0xa7,0x32, - 0xf2,0x4c,0x8e,0xd6,0xa2,0xd2,0xde,0x6f,0x84,0x38,0x26,0x40,0xdc,0x3d,0x14,0xb0,0xab,0xf3,0xe4,0xa6, - 0xbe,0x24,0x62,0x78,0x7b,0x04,0xf7,0x0f,0x0e,0x0e,0xee,0x51,0x5e,0x40,0x3c,0x53,0x73,0xd1,0x57,0x82, - 0xc6,0xf8,0xaf,0x7b,0xb8,0x7b,0x94,0xff,0xbc,0x7c,0x41,0xcd,0x4e,0x18,0x32,0x2f,0x9a,0xc5,0x5c,0x9d, - 0x95,0xd3,0x6b,0x05,0x14,0xa8,0x2e,0x68,0x29,0x14,0x86,0xa6,0x10,0x73,0x5c,0xc9,0xae,0x6d,0xf2,0x86, - 0xfe,0xa6,0xd3,0x29,0xf6,0xa3,0x4a,0xab,0x26,0x9f,0xe0,0xbd,0xa6,0x3d,0x41,0x40,0x54,0xe2,0x76,0x4c, - 0x7c,0x87,0x9f,0x43,0x75,0x71,0x5f,0x5d,0x7c,0xa1,0x2e,0xbe,0x54,0x17,0x5f,0xa9,0x8b,0x7f,0xaa,0x8b, - 0xf3,0xaa,0x5c,0x2d,0x55,0x91,0x5e,0xd2,0xda,0xf1,0x18,0x09,0x10,0x2f,0xd5,0x94,0xa0,0x72,0xae,0xa6, - 0x8d,0x22,0x62,0x16,0xbe,0x35,0x48,0x67,0x33,0xd4,0x4c,0x2d,0xf3,0x09,0x5c,0x6d,0xd4,0x05,0x71,0xe9, - 0x8b,0x73,0xea,0x0c,0x0d,0x8a,0x4e,0xaf,0x72,0xae,0x96,0x30,0x6a,0x54,0xab,0xb9,0x4a,0xd5,0x19,0xb1, - 0x91,0x67,0x95,0x3a,0x9b,0xe6,0xf4,0xbf,0x54,0xf4,0x38,0x21,0xf0,0xe4,0xf8,0x43,0x8a,0x2f,0x89,0x9f, - 0xce,0x88,0x1c,0x5e,0xa8,0x5c,0x7d,0x3c,0x9b,0x52,0x05,0xd5,0x47,0xf5,0xbb,0xaa,0x96,0x8a,0x80,0xb9, - 0x6a,0x26,0xaa,0x5a,0x9d,0x5d,0x13,0x15,0x5f,0xa7,0x8b,0xa5,0x22,0xd8,0x26,0x92,0xab,0x5e,0xa6,0x84, - 0x7a,0x68,0xaf,0x11,0xb3,0x59,0xaf,0xce,0xe8,0xff,0x92,0xef,0x8b,0x55,0xb8,0x67,0xa1,0x52,0x57,0x67, - 0x10,0x9e,0x13,0x92,0x4a,0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x62,0x3f,0x2a,0x46,0x0c,0xd4,0xd2,0x19, - 0x81,0x9d,0xf8,0x81,0xc1,0x08,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x3f,0x26,0x69,0x71,0x99,0x52,0x4b, - 0x93,0x2a,0x5f,0x36,0xd8,0x14,0xf2,0x40,0x34,0x37,0x8c,0xdc,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65, - 0xb2,0x34,0x60,0xf3,0x5a,0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x50,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xe6,0x03, - 0x34,0x67,0xd9,0x7c,0x4a,0x94,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x51,0xed,0xf3,0xec,0x1c,0x44, - 0xc0,0x02,0x9b,0x19,0xa8,0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15, - 0x13,0x0a,0x48,0x73,0x60,0x9d,0x3c,0x9d,0x97,0xe7,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b, - 0x9a,0xd0,0x6b,0xa5,0x31,0xa0,0xca,0x44,0xe6,0xa0,0xb0,0xdf,0xcb,0x2b,0x65,0x82,0x66,0x29,0x0e,0x4b, - 0xf6,0xfb,0xaa,0x04,0x1a,0x99,0x55,0x20,0xf7,0x1a,0x40,0x0b,0x6e,0x0c,0x66,0xd0,0x23,0x80,0x55,0x69, - 0x91,0x2f,0x50,0x76,0x92,0x57,0x13,0x3e,0x1f,0xf2,0xe5,0x92,0x00,0x54,0x4d,0x56,0x15,0xed,0x70,0x60, - 0x2e,0xa0,0xbe,0x7a,0x42,0x8d,0x50,0x16,0x01,0xa8,0xc4,0xf7,0xa1,0xe1,0x16,0xcd,0xfe,0x2c,0x9d,0x00, - 0x00,0xab,0x2c,0x3f,0x2f,0xe4,0x10,0x54,0xe7,0xea,0x7c,0x7e,0xbd,0xbc,0x20,0xc8,0x49,0xcf,0x33,0x00, - 0x72,0xc6,0x8b,0x9f,0x41,0x9a,0x50,0x13,0x50,0xe7,0x35,0x6e,0x2f,0xdb,0x97,0x42,0xdc,0x12,0xfd,0xa1, - 0x0a,0x09,0x21,0x95,0xf3,0xeb,0xf3,0x52,0x7e,0xf9,0x3b,0x9c,0xff,0xea,0xff,0x6b,0xef,0xdd,0xd7,0xdb, - 0x36,0x92,0x7d,0xd1,0x57,0xa1,0x30,0xda,0x32,0x10,0x42,0x94,0x64,0x3b,0x99,0x04,0x34,0xcc,0xe5,0x4b, - 0x2e,0x4e,0x7c,0x5b,0xb1,0x92,0xcc,0x44,0x62,0xb4,0x20,0x12,0xa4,0x60,0x51,0x00,0x07,0x00,0x29,0x2b, - 0x22,0x1f,0xe8,0xfc,0x7b,0x1e,0x61,0x3f,0xd9,0xa9,0x5f,0x55,0x77,0xa3,0x01,0x82,0x96,0x9d,0xd9,0x7b, - 0x9d,0xfd,0xc7,0xfe,0xf2,0xc5,0x02,0xfb,0x7e,0xa9,0xae,0xae,0xaa,0xae,0x8b,0x18,0x51,0xfb,0x05,0x3b, - 0xd9,0xe0,0xf5,0xe1,0x7f,0xb8,0x66,0xc9,0x30,0x03,0x6a,0x6a,0x99,0xc4,0xd7,0xe2,0x1b,0x6a,0xd1,0x7a, - 0x96,0x47,0xa2,0x89,0x3f,0xe3,0xb8,0xdc,0x34,0x85,0x56,0x86,0x6a,0xcc,0x8b,0xc2,0x5d,0x48,0xec,0x40, - 0x36,0x35,0xbb,0xce,0x72,0x46,0x7f,0x39,0x8d,0x22,0xa6,0x83,0x80,0x41,0xcc,0xfc,0x45,0x0e,0xa7,0xd8, - 0xf3,0xa4,0xe9,0xd4,0xaa,0x26,0x04,0x6a,0xd5,0xfc,0xdd,0xe2,0x78,0xcb,0x04,0x28,0x56,0x17,0x26,0x3b, - 0x1a,0x1f,0xa4,0x81,0x5b,0x2a,0x25,0xda,0xd2,0x52,0xa2,0xdd,0xdb,0xb3,0xe2,0x23,0x55,0xc9,0x26,0xa0, - 0x1f,0x34,0x61,0xea,0x01,0xd6,0x75,0x0e,0x7c,0x2d,0xe9,0x4f,0x8f,0x83,0x05,0xd6,0x86,0xf1,0xfa,0x5d, - 0x63,0xcc,0xfa,0x55,0xb1,0x75,0xd0,0xaf,0xdf,0xb9,0x05,0x54,0x53,0xd8,0x50,0x58,0x72,0x8e,0x69,0xf5, - 0x10,0x0b,0x32,0x68,0xd9,0x84,0x46,0x23,0xba,0x28,0x6f,0x89,0x24,0x29,0x8f,0x01,0x9f,0x50,0x59,0x95, - 0xe4,0xba,0xa2,0xab,0xfa,0x94,0xa5,0xd3,0x1b,0xd6,0xe3,0xcc,0x01,0x9a,0x6c,0x57,0x02,0x24,0x8a,0xa6, - 0x3e,0x2b,0x30,0x35,0xe6,0xab,0x7d,0x83,0x70,0x1e,0x42,0x7e,0xf8,0x88,0x19,0x9c,0x8e,0xdb,0xcb,0x5a, - 0x79,0x5c,0xb6,0x8a,0x85,0xd9,0x36,0x85,0xd8,0x8a,0x95,0xb9,0xf6,0xc1,0xe8,0xbf,0xa3,0x6b,0x91,0x4e, - 0x43,0x7b,0x61,0xab,0xc0,0x1a,0xd1,0xc3,0xd8,0x55,0x53,0x6b,0x49,0x95,0xb9,0x86,0xd1,0x00,0x56,0xf5, - 0x99,0xe0,0x85,0x8d,0xe1,0x96,0x55,0x5e,0x58,0x72,0x69,0x03,0x21,0x2d,0xeb,0x56,0x03,0x20,0x5e,0x37, - 0x78,0x6c,0xa3,0x3b,0x50,0x76,0xa0,0xd1,0xfa,0x6f,0x31,0xaf,0x80,0x22,0xc2,0x9b,0x3d,0x33,0x8c,0x12, - 0x75,0x52,0x01,0xac,0x38,0x12,0xfe,0x0d,0x32,0x35,0x1c,0x5b,0xae,0xbe,0x45,0x83,0x57,0x17,0x5a,0xaf, - 0xe9,0x9c,0x2b,0x87,0x13,0xae,0x43,0x54,0xf4,0xda,0x47,0xac,0x96,0xab,0x04,0xde,0xc8,0xb4,0x87,0x31, - 0xad,0x20,0x6b,0x7c,0x87,0xb1,0x87,0x08,0x6c,0x69,0xe5,0x33,0xcc,0x19,0xfa,0xd3,0x6a,0x1e,0xbf,0xc4, - 0x7a,0xd4,0xbf,0xc4,0xad,0xfd,0xff,0x82,0xfe,0x97,0x09,0xfa,0xbf,0x69,0xc7,0x1c,0xe7,0x34,0x84,0x8b, - 0x84,0x1a,0x1d,0xfa,0x67,0x55,0xc3,0xff,0x32,0x0d,0xff,0x8b,0xf6,0xe6,0xba,0xca,0xf8,0xd1,0x64,0xfc, - 0x48,0x19,0xc7,0x49,0x78,0x70,0x72,0x7a,0xed,0xf5,0xba,0xa7,0xfb,0x67,0xbb,0xa7,0xc3,0xe1,0x81,0x7f, - 0x99,0xc0,0xbb,0x16,0xf1,0x18,0x1f,0xf8,0x63,0xe4,0xf8,0xcf,0xaa,0xda,0x74,0x67,0xab,0xda,0x63,0xda, - 0xc4,0x27,0x55,0xc6,0xdc,0x64,0xcc,0x61,0x70,0x97,0xb4,0xda,0xf1,0x72,0x54,0xb9,0x83,0xc0,0xed,0x75, - 0xbd,0x83,0xbe,0x81,0x20,0x31,0xb3,0x3c,0xe8,0xbb,0x83,0x9d,0x93,0x3f,0xdc,0xe1,0x17,0xa7,0x9e,0x77, - 0x30,0x6d,0xd7,0x48,0x83,0x01,0x41,0xe5,0xb8,0x55,0x2a,0x42,0x7b,0xc0,0xbc,0x83,0x42,0xe4,0x7e,0x82, - 0x98,0xa8,0x2a,0x3c,0xcf,0x30,0xcc,0xab,0x50,0x3e,0x0c,0x44,0x25,0xfd,0xbf,0x4b,0xb3,0xfe,0x63,0x7f, - 0xff,0xc0,0x7f,0x43,0x1f,0xa7,0xc5,0x17,0x3b,0xc9,0x15,0x2c,0xa7,0xa3,0xb4,0xdc,0x3d,0xf0,0xbf,0xdd, - 0xe4,0x37,0xa8,0xdb,0x5d,0x15,0x12,0x9e,0x00,0x25,0x96,0x58,0x7e,0x80,0x51,0xc3,0x6f,0x95,0xb6,0xc9, - 0xc6,0x1b,0x55,0x36,0xdd,0x5a,0xd6,0xf8,0xcd,0x7b,0x93,0x70,0xec,0x21,0xc7,0x0c,0xc0,0x0e,0x0c,0x97, - 0x87,0xef,0x13,0x57,0x1c,0xd2,0xd7,0xdf,0xc8,0xd3,0x9a,0x92,0x4d,0xdb,0xbb,0xae,0xea,0x17,0xac,0x35, - 0x9e,0x77,0x65,0x68,0x76,0x22,0xc1,0xd3,0x5b,0xc0,0xae,0x84,0x20,0x24,0xf0,0x7c,0x95,0xfd,0x09,0xfc, - 0x4c,0x1c,0xa9,0xff,0xbe,0xb9,0x7b,0x34,0x80,0xdf,0xf3,0xf0,0xf7,0xfc,0x0e,0xcf,0x8d,0xd2,0xbc,0xf1, - 0xc2,0xb7,0xc3,0x96,0xd7,0x88,0x08,0x01,0x25,0x44,0x96,0xae,0xff,0xae,0xa3,0xe9,0x75,0x62,0xeb,0x9d, - 0xec,0x53,0xbc,0x12,0x2a,0x5f,0x17,0x6f,0x93,0x16,0x87,0x9a,0x6f,0x93,0x93,0x74,0xd8,0x65,0x55,0xe0, - 0xbc,0xde,0x4b,0x8e,0x1d,0x7f,0x5e,0x41,0xe9,0x95,0x81,0xd2,0x2b,0x82,0xd2,0x17,0xcd,0x79,0x2a,0x5b, - 0xf0,0xd8,0x84,0x9f,0x0f,0x88,0x47,0xdf,0xe7,0x9f,0x8e,0x1f,0x5b,0x51,0xe8,0xab,0xf4,0xfd,0x32,0x53, - 0x59,0x56,0x6c,0x65,0x2b,0x5b,0x84,0xae,0x8e,0x5f,0x85,0x67,0xe6,0x4c,0xfe,0xa9,0x52,0xed,0x36,0x39, - 0x81,0xdb,0x6c,0xc6,0x6b,0xb6,0xb2,0x55,0x9b,0x98,0xdb,0xcb,0x84,0x7d,0x89,0x21,0xd2,0xf2,0x77,0x89, - 0x8a,0x1f,0xc9,0x3e,0x63,0x1d,0xff,0x35,0xfd,0x16,0x02,0x8b,0x7f,0xbe,0x6a,0x64,0xff,0x5c,0xfb,0x4d, - 0x37,0x89,0xe3,0xff,0x56,0xaf,0xf1,0xd4,0xfe,0x89,0x02,0xfd,0x97,0x10,0xfe,0x1b,0x3f,0x0d,0xca,0x81, - 0x19,0x78,0x54,0xab,0x19,0x8b,0x3c,0x30,0x05,0xae,0x19,0xc8,0x1a,0xc5,0x5c,0x8c,0xc8,0x8a,0x80,0x69, - 0x8d,0xeb,0xba,0x91,0xfa,0x6d,0x8a,0xc7,0xc9,0xcd,0x8e,0xed,0xd1,0x6d,0xef,0xb7,0x5e,0xca,0xfd,0xcd, - 0x74,0xfb,0xa4,0x3e,0xd7,0xeb,0x7a,0x22,0x77,0x2a,0x5a,0x08,0xbf,0x62,0x95,0x07,0xaa,0x59,0xb0,0xa9, - 0x74,0xba,0x4d,0xb9,0xef,0x40,0xdc,0x7e,0x34,0xb3,0x07,0x21,0x91,0x2b,0x25,0xbc,0xa0,0x72,0x87,0xd0, - 0x7a,0xa1,0xe2,0xc9,0xfc,0x17,0xa0,0xa5,0x73,0xd7,0x04,0xec,0x58,0x11,0x8f,0xe2,0xb9,0xfe,0x6a,0xd7, - 0x3b,0xf0,0x7f,0xb0,0xd0,0xd3,0x46,0x4c,0x07,0xa1,0xf2,0x9e,0x59,0x77,0x3d,0x68,0xbb,0x92,0xc5,0x60, - 0xcf,0x6a,0xd4,0x05,0xd4,0x5c,0xad,0x50,0x0a,0x1c,0xcd,0x4d,0x1c,0x91,0x4b,0xe4,0x8c,0xba,0x2f,0xaa, - 0xc8,0xb7,0x0d,0xc4,0xb8,0xa4,0x7e,0x0d,0x95,0xfb,0x95,0x85,0xea,0x88,0xb4,0xac,0x0c,0x9c,0x5a,0xa3, - 0xeb,0x7a,0xf0,0x22,0x64,0x9e,0x49,0x54,0x95,0x30,0xea,0x41,0x5f,0x8b,0xf2,0xe4,0x07,0x04,0xc0,0x28, - 0x88,0x6b,0xf7,0x88,0x3b,0xf2,0xdb,0x1b,0xd3,0x67,0xbc,0xc0,0x88,0x08,0x3f,0xb8,0x70,0xc7,0xb1,0x69, - 0x7b,0x68,0xab,0xee,0xc4,0xfd,0xa8,0xc5,0x14,0x47,0xa2,0x47,0xb7,0xe4,0xe8,0x07,0xf3,0xd2,0xcd,0x94, - 0x71,0x20,0x8f,0x32,0x0b,0xed,0x50,0xac,0x4a,0x5d,0x29,0x23,0xf4,0x94,0x3d,0xba,0xec,0x69,0x12,0x40, - 0xa3,0xa9,0x6e,0x37,0xf3,0xaa,0xd4,0x93,0x6c,0xe8,0x2e,0x13,0x5a,0xe4,0xbe,0x32,0x34,0x88,0xb4,0x62, - 0xd0,0x08,0xca,0x29,0x78,0x35,0xa6,0x31,0xaf,0xcd,0x1a,0xfb,0x3b,0x12,0x29,0x41,0x7e,0xe9,0xc5,0x95, - 0x25,0xf7,0x27,0x96,0x5f,0x6d,0x0e,0x5a,0x49,0xa4,0x18,0xed,0xf5,0x85,0x37,0x70,0xb9,0x25,0x88,0xdd, - 0x8b,0xc1,0xb3,0x0d,0xb2,0x19,0xc9,0xfe,0x85,0x17,0x34,0x72,0xdc,0x0b,0x88,0xc5,0xe7,0x78,0x74,0x58, - 0x50,0x97,0x13,0x2c,0x6a,0xc9,0x8b,0x3a,0x96,0x15,0x1e,0xc1,0xc7,0x0b,0x0f,0x91,0x86,0x12,0xa4,0xae, - 0xe5,0x0d,0xda,0x74,0xf9,0xac,0x49,0x22,0x8b,0x27,0xe7,0x46,0xdd,0x46,0xe1,0x8a,0x18,0x6f,0x2b,0x6d, - 0xf9,0x12,0x2e,0xf8,0x0d,0xe5,0xb6,0xd4,0xc6,0x52,0x2a,0xe4,0xbb,0x40,0xa9,0x48,0x7a,0xb1,0xaa,0xfa, - 0x31,0xc5,0x6f,0x2d,0xd6,0x9a,0x1a,0x6a,0xd3,0x08,0x59,0xb7,0x4d,0x50,0x80,0x5e,0xd0,0x84,0xbd,0x48, - 0x8d,0x45,0x3b,0x6e,0xce,0x6e,0x9c,0x98,0x88,0xf4,0x7c,0x63,0x36,0x62,0x9d,0xa9,0x91,0x52,0x6c,0xbd, - 0xd5,0x5a,0x7e,0x1c,0xae,0xdd,0x3a,0x9a,0x22,0x5a,0x7e,0x56,0xe7,0x11,0xa4,0x0e,0xed,0x8d,0x4d,0xde, - 0xc7,0x1c,0x4a,0xd5,0xb4,0xbc,0xb0,0xe8,0x92,0x8d,0xa8,0x79,0x75,0xed,0xdb,0xb2,0x82,0xc3,0xc4,0x8b, - 0x5c,0x56,0x29,0x4e,0xd5,0xda,0xf2,0x63,0x13,0x14,0x0d,0x99,0x38,0xc8,0xf5,0xea,0x63,0x48,0xb5,0xce, - 0xb9,0xf0,0xc6,0x5e,0x29,0x07,0x36,0xb1,0x76,0xd5,0x6d,0xf9,0x91,0xd6,0xde,0x31,0xfa,0x6d,0x86,0x6f, - 0x5e,0xab,0x69,0xa0,0x3a,0x6a,0x55,0xb8,0x7b,0x09,0x63,0x65,0xb9,0x91,0x96,0xad,0xaf,0x5b,0xb0,0x5d, - 0xaa,0x41,0x55,0x93,0xcc,0x3d,0x9d,0x46,0x54,0x0e,0x8e,0x1a,0xa3,0xbf,0x6b,0x1d,0xce,0x59,0x61,0x1a, - 0xda,0x8b,0x6b,0x55,0x8c,0x7e,0xe9,0x4f,0x29,0xee,0x23,0x2f,0xd1,0x10,0xd5,0xb6,0xb1,0x73,0x83,0x69, - 0x05,0x85,0x41,0xdd,0xdb,0x38,0x12,0xf4,0xbc,0x67,0x75,0xe6,0x45,0xad,0x35,0xc8,0x3c,0x59,0xe8,0x6a, - 0x0a,0x31,0x02,0x08,0xa1,0x7e,0x65,0x5d,0x09,0xfc,0xc2,0x96,0x49,0xe6,0x6d,0xa2,0x50,0xed,0x62,0x5b, - 0xb6,0x35,0xec,0x57,0xc1,0x86,0x80,0xec,0xc3,0x73,0x84,0xe8,0x4c,0xd9,0x95,0xb9,0x6a,0x58,0xff,0x34, - 0xce,0x11,0xff,0x5a,0x47,0xd5,0x22,0x5c,0xd8,0x9e,0x1d,0xd5,0x76,0xe7,0x8f,0xc2,0x84,0xf7,0x20,0x72, - 0x39,0x38,0x4e,0xe6,0xd7,0xe3,0x16,0x2d,0xcd,0xc2,0x71,0xb4,0x1e,0xfb,0xe6,0x48,0x04,0x70,0x31,0xa6, - 0xa4,0xba,0x0f,0x30,0x40,0xc5,0x14,0x61,0x42,0x95,0xcb,0xb3,0x4b,0x9d,0x5c,0xed,0x7c,0xea,0x99,0x44, - 0xa2,0x06,0x55,0xe0,0x15,0xd9,0x9c,0x2a,0xf0,0xba,0x8a,0xe8,0xc3,0x9e,0xff,0x9b,0xb6,0x8f,0x18,0xf8, - 0xd2,0xb5,0xc2,0x41,0xe4,0x43,0x6b,0xec,0x57,0xf5,0x1b,0xa5,0x9a,0xab,0xba,0x06,0xd9,0x05,0x5c,0x29, - 0x3e,0xbb,0xe8,0x0f,0x43,0xef,0xc0,0x9d,0xe2,0x6d,0x6e,0x89,0x7b,0x31,0x40,0x80,0x23,0x28,0x05,0xd9, - 0xf8,0x6c,0x2a,0x40,0x2d,0x03,0x85,0xf1,0xa6,0x42,0x6c,0x9e,0x89,0x4e,0x14,0x5e,0xaa,0x5b,0xdb,0x04, - 0x93,0xed,0xab,0x75,0xf2,0x06,0x96,0x05,0x6d,0x37,0x4c,0x82,0xa6,0x6a,0x73,0x4d,0x21,0x98,0xc8,0xa6, - 0xfd,0x7d,0xab,0x02,0xde,0xc6,0xe2,0x2a,0xc2,0x54,0x95,0x11,0xd2,0xa6,0xae,0x5d,0x7d,0x13,0xd1,0x61, - 0x68,0xb5,0xb3,0xe5,0xdd,0x01,0xd0,0x29,0x25,0x08,0xfe,0xa9,0x6f,0xc8,0x29,0xa2,0x65,0x78,0xbe,0x3e, - 0xa2,0xb5,0xf1,0xab,0x23,0x2a,0x69,0x38,0xa2,0x58,0x80,0xbe,0xf4,0x62,0x9f,0xd0,0x52,0x05,0xde,0x45, - 0x31,0x4f,0x47,0xa8,0x82,0x9e,0x37,0x1f,0xa1,0x4c,0x06,0x68,0x6d,0x0f,0xd4,0x9b,0x41,0xbe,0x14,0x12, - 0x90,0x8b,0x60,0x3d,0xd1,0x71,0x36,0x13,0xc6,0xe9,0x39,0xfe,0x65,0x7d,0x17,0x44,0x72,0xdd,0xf0,0x7b, - 0xe9,0xd1,0x39,0x4c,0x6a,0x9e,0x33,0xb5,0x77,0xab,0xb1,0x37,0x38,0x73,0x73,0x59,0x0f,0xc4,0x16,0x4e, - 0x5a,0xbd,0x66,0x1e,0x1a,0xe6,0x8f,0xa8,0x32,0xe3,0xd9,0x93,0x81,0x36,0xb7,0x7f,0x26,0xec,0x5c,0x34, - 0x94,0x48,0x61,0xb8,0xb0,0xb8,0xb4,0xf8,0xf3,0x24,0x00,0x90,0x9f,0x6f,0x98,0xbc,0xf1,0x92,0x16,0x3d, - 0x97,0xbc,0x05,0xa3,0x1a,0x7e,0x71,0x86,0x08,0xc3,0x72,0xa8,0x4a,0x77,0xc1,0xab,0x38,0x0b,0x17,0xd5, - 0x92,0xce,0xc2,0x99,0xf1,0x18,0x40,0x09,0x33,0xac,0x99,0x10,0xb8,0x63,0x34,0xac,0x49,0x89,0xb9,0x65, - 0x3f,0x2a,0x87,0x08,0x6d,0x4d,0x70,0x46,0x19,0xf6,0x67,0xb4,0xb1,0x33,0xda,0x58,0xe1,0xa4,0xaa,0x8d, - 0x9d,0x79,0x3a,0xed,0x64,0x36,0x94,0xb6,0x5b,0x06,0x20,0x25,0x4c,0xf7,0xeb,0xd8,0x4d,0xe4,0x0a,0x19, - 0x94,0xee,0x98,0x4b,0xcd,0xbd,0xc1,0x18,0x0e,0x03,0x2c,0x6a,0x4e,0x7b,0x90,0x2d,0xaa,0x1b,0x40,0x45, - 0x55,0x24,0xf6,0x77,0x4c,0xff,0xcf,0xc3,0xca,0x41,0x8b,0xbf,0x0c,0x21,0x01,0xf0,0xa7,0xf4,0x67,0x3e, - 0xf4,0xcf,0x8d,0xc6,0x36,0x65,0x9d,0x85,0x09,0xb2,0xae,0xe9,0xcf,0xf9,0xd0,0x3f,0x0e,0x77,0x8a,0xfe, - 0xe4,0x11,0xba,0x1a,0x3f,0x0a,0xcf,0xe9,0x6e,0x72,0x97,0xde,0x00,0xd5,0xbb,0xdd,0xc9,0x30,0x88,0x5d, - 0x3a,0xc3,0x68,0x65,0x7f,0x7f,0x3e,0x0c,0x9e,0x52,0xa6,0x7f,0x46,0x87,0xfa,0x06,0x7f,0x41,0x9c,0xe9, - 0x82,0xdc,0x6a,0xb7,0x3b,0x1e,0x7a,0x28,0x34,0xf5,0xaf,0xb9,0x10,0xfd,0x45,0x21,0x5d,0x9f,0xfb,0xdc, - 0xdf,0x3f,0x97,0x42,0x4b,0x55,0x68,0x29,0x85,0x8e,0x37,0xe8,0x80,0xd4,0x5f,0xaa,0x7b,0xd7,0x12,0xc5, - 0xb9,0x53,0x41,0x21,0x55,0xcf,0xb5,0x46,0xa7,0x6a,0x78,0x53,0x19,0x5e,0x5b,0xa3,0xdc,0x80,0x34,0x6d, - 0x0d,0xad,0x1a,0xbf,0x1b,0x8b,0xbb,0x8b,0x51,0xf8,0x2b,0x2c,0xdb,0x27,0xfe,0x1c,0x8a,0x80,0x2e,0x08, - 0xfa,0x33,0x8e,0x4a,0x3a,0x18,0x9d,0xf0,0xc7,0xb0,0xc5,0xcd,0x87,0x21,0xb5,0xc3,0x09,0xd1,0xc2,0x49, - 0x3f,0xd3,0x2c,0x3a,0xd0,0x63,0x36,0xd4,0x3c,0xc2,0xde,0xde,0x53,0xd0,0x39,0x91,0xa1,0xe0,0x33,0xa2, - 0x71,0xcf,0xa8,0x89,0x43,0xf4,0x36,0x88,0xe8,0x3b,0xf3,0xd5,0xfc,0x79,0x5e,0x0b,0x1a,0xe7,0x6c,0xa8, - 0x26,0xb7,0x90,0xc9,0x21,0x45,0xfb,0xb2,0x6d,0x9b,0xe8,0xc2,0x9a,0xa8,0x17,0xd4,0xdb,0xac,0xe6,0xdb, - 0x9f,0x3c,0x9e,0x43,0x75,0x9e,0xa6,0x48,0x00,0xd1,0x3d,0x1a,0x7a,0x12,0x90,0x51,0x7e,0xa8,0x43,0x3f, - 0xf6,0xcf,0x71,0xf0,0xc7,0x8f,0xcf,0xf7,0xf6,0xae,0xdc,0x43,0x5f,0x96,0x65,0xed,0x8e,0x38,0xa2,0x27, - 0x80,0x32,0x60,0xa0,0x05,0x85,0x57,0x91,0x50,0x75,0x71,0x28,0x15,0xc6,0x3d,0x7d,0x41,0x7f,0x99,0xec, - 0x9a,0x63,0xb2,0x15,0x58,0x82,0x28,0x06,0xf8,0x0f,0xd0,0xfe,0x98,0xf2,0xc6,0x55,0xe4,0xc3,0xe0,0xce, - 0x66,0x03,0xc9,0xdf,0xe1,0x78,0x35,0x7c,0xb7,0xb7,0x94,0x53,0xa7,0xcc,0xdf,0x8e,0x19,0xb2,0xa2,0xac, - 0xa3,0x86,0xb5,0x75,0x55,0x9d,0x0b,0x17,0xc2,0xe8,0x15,0x8c,0x27,0x6a,0x99,0xf0,0xd2,0x9e,0xfe,0x6a, - 0xa3,0xac,0xf3,0x3a,0xd9,0x23,0x8c,0x52,0x6e,0xf3,0x47,0x39,0x01,0x47,0x85,0xfd,0xd5,0x4e,0xba,0x39, - 0x7b,0x52,0x35,0x03,0x38,0x6b,0x30,0x9e,0xfe,0x08,0x51,0x9a,0xa2,0x29,0x22,0xab,0x6b,0x7e,0x28,0xaf, - 0xc7,0x19,0x0a,0xb3,0xd5,0x6a,0x46,0x93,0x01,0xd2,0xf3,0x73,0x21,0xed,0x7d,0x41,0xc8,0x9a,0x6f,0x91, - 0x8b,0xcb,0xc6,0xfb,0x06,0x2a,0xdb,0xae,0x09,0x68,0x56,0x13,0xae,0x67,0x40,0x9e,0xa9,0xab,0x9e,0x96, - 0xae,0x9d,0x81,0xcd,0xc5,0x54,0x90,0x12,0x5b,0xb0,0xb6,0x67,0xf1,0xaf,0x58,0x57,0xd3,0xec,0xc8,0x53, - 0x04,0xc1,0xc4,0xe3,0x00,0xd3,0x70,0xe1,0xc5,0x84,0x38,0xa8,0xee,0xc2,0xe5,0x44,0xee,0xd5,0x74,0xa8, - 0xc3,0xc4,0x59,0x23,0x50,0xf1,0x50,0xa4,0xa9,0x88,0x29,0xbf,0x2a,0xd1,0x84,0xdf,0xe0,0x8b,0x43,0xef, - 0xcb,0x1c,0x73,0x03,0x17,0x39,0x49,0xf2,0xa2,0xe4,0x1e,0x09,0xcd,0x1c,0xf6,0x97,0x8f,0x26,0x7a,0xaf, - 0x96,0xda,0xb5,0xdd,0xc5,0x6a,0xb5,0x73,0x46,0xfc,0xe2,0xe4,0x64,0x39,0x54,0x9c,0xe9,0x1c,0x66,0xe4, - 0xc2,0xca,0x5e,0x84,0x17,0xb5,0xf7,0x03,0xd4,0x98,0xaf,0x56,0x17,0xf5,0x8e,0x89,0x8b,0xc1,0x41,0x4a, - 0x3c,0xbd,0x9a,0xb2,0xaf,0x57,0xb6,0x9b,0x95,0x29,0xa4,0x79,0x33,0xcc,0x78,0xe7,0x09,0xe1,0x62,0xef, - 0xf6,0x0a,0x83,0x1c,0xcb,0xdd,0x22,0x9d,0xed,0x5c,0x61,0x83,0x59,0xb3,0x04,0xce,0xe1,0xd4,0xa7,0x76, - 0x33,0x29,0x44,0xc5,0x0e,0x07,0xf4,0xe2,0x83,0xa1,0x08,0x2c,0xf5,0x5b,0x3f,0x7b,0xed,0x48,0x98,0x98, - 0x6b,0xff,0xd8,0xbf,0x84,0x90,0xfa,0x03,0x62,0xc7,0x67,0xe3,0xc5,0x2c,0x2e,0xfc,0x67,0xf4,0x0d,0x1a, - 0xe7,0x8d,0x52,0xfb,0xba,0xa6,0x35,0xb9,0x7e,0x74,0x95,0x54,0x00,0x7c,0xcd,0x64,0xe5,0xe5,0xc9,0x55, - 0x72,0x72,0x3d,0x1c,0xb2,0x13,0x48,0x8e,0xc5,0xfa,0xa1,0x2a,0x72,0x4c,0xe4,0xc5,0x87,0x93,0xe3,0xa1, - 0x2a,0x43,0x3b,0xa5,0x8b,0x0b,0x7f,0x61,0xe7,0xf1,0x85,0xfc,0x84,0xf5,0x46,0xf0,0xae,0x26,0x5a,0x33, - 0x2a,0x78,0xd8,0x33,0xeb,0xfb,0x1d,0x0b,0x5b,0x09,0x15,0xb7,0xb8,0x27,0x54,0xb7,0x25,0xc2,0xb3,0x29, - 0xef,0x4b,0x7c,0x7b,0x8b,0x87,0x18,0xf8,0x53,0x85,0x81,0x36,0xa0,0x0b,0xf6,0x9a,0x0b,0x2c,0x6a,0xe4, - 0x02,0xd1,0xa1,0xbc,0xe5,0x72,0x34,0xc4,0xe1,0xc0,0xe4,0x8f,0xd9,0xe3,0x13,0x6f,0x24,0x63,0x6f,0x6c, - 0x80,0x27,0x34,0xd7,0xd8,0x57,0x61,0xce,0xd1,0xcf,0x9c,0x7b,0x93,0x08,0x6a,0xba,0x1e,0x5c,0xf0,0x10, - 0x0c,0x57,0xfc,0xc4,0x33,0x56,0xca,0xd2,0xd4,0x5d,0x2d,0x1d,0x56,0xdc,0xf0,0xee,0xe9,0x66,0x54,0xe4, - 0x4c,0xda,0x37,0x07,0xe5,0x9c,0x87,0x88,0xfc,0xbc,0xff,0x26,0xcc,0xfd,0x5c,0x3f,0xc7,0x3c,0xd3,0x8f, - 0x50,0xee,0x9b,0x46,0xfc,0x19,0x79,0xa6,0x51,0x92,0x43,0xff,0x8d,0xd8,0xbd,0x5d,0x08,0x31,0x48,0xd7, - 0x5f,0x4d,0x50,0x76,0xc1,0x13,0x94,0x75,0xb8,0xe8,0x9d,0x89,0xc0,0xf6,0x5c,0xee,0x83,0x69,0xe3,0x1e, - 0xbe,0x80,0xda,0x2f,0x11,0x2e,0x1a,0xff,0x69,0x80,0xbd,0x0e,0x75,0x1a,0xc1,0x00,0x28,0xa6,0xfe,0x75, - 0xbf,0xba,0x17,0x3f,0x10,0x58,0x7c,0x68,0xe3,0x5d,0x3e,0x58,0xbc,0xcb,0x87,0xa1,0x7b,0xcd,0x23,0xb9, - 0x16,0x97,0xf7,0x3c,0xd4,0xe3,0xaa,0x91,0x27,0xd4,0xc8,0x93,0x16,0xce,0xf7,0x49,0xc5,0xf9,0x3e,0x61, - 0xce,0xf7,0x5a,0x20,0xe9,0x5d,0x78,0xbd,0x81,0x5b,0xd1,0xfc,0xbb,0x1e,0xab,0x09,0x57,0xb6,0x0e,0xbb, - 0xe1,0x51,0x7f,0xf7,0xd1,0x3b,0x62,0x11,0x8d,0xa9,0xca,0x2e,0x1c,0x4a,0x23,0xe1,0x64,0x77,0xa8,0x69, - 0xef,0xdf,0x62,0x8c,0xef,0x9a,0x5a,0x55,0xd1,0x6d,0xe1,0xd5,0x95,0xef,0x2d,0xb0,0x7c,0x87,0xfe,0xa1, - 0xba,0xb0,0x88,0xff,0x81,0x33,0xe0,0xbc,0xb2,0x11,0x93,0xfd,0x5b,0x78,0x3e,0xcf,0x89,0xb7,0xe2,0x0d, - 0x48,0x7f,0x53,0xce,0xbd,0x55,0x07,0x2d,0x98,0x27,0xbe,0x3a,0x7f,0xc1,0xc9,0x19,0x4d,0x25,0xf1,0x9f, - 0x25,0xfe,0x93,0xc4,0x7f,0x9e,0xf8,0x6f,0xd3,0x81,0x96,0xe6,0xbf,0x2d,0x7d,0x2d,0x58,0xc3,0xb7,0xc0, - 0x53,0xe3,0xf9,0x6f,0x47,0x22,0x7a,0x89,0x79,0xc5,0x45,0x76,0x3d,0xd8,0x2d,0x25,0xae,0x19,0x1c,0x66, - 0xae,0x83,0xdb,0xf5,0x50,0xbb,0x54,0x3e,0x4f,0xe0,0xbf,0xfc,0xbb,0x94,0x68,0x41,0xfd,0xc8,0xb1,0x19, - 0x58,0x44,0xde,0xc7,0xa9,0xf5,0xd1,0x45,0x94,0x4e,0x63,0xc7,0xb6,0x47,0x15,0x2d,0xfc,0xaa,0x32,0x4b, - 0xe9,0x95,0x70,0xad,0xcf,0x4a,0xbe,0x4b,0x15,0x07,0xf1,0x15,0xc6,0xa0,0xf4,0xcd,0xb4,0xd3,0xf4,0x3f, - 0x13,0xb8,0x4f,0xc3,0xee,0xc4,0xe3,0xc6,0x83,0x28,0x84,0x48,0xfa,0x65,0xde,0x84,0x76,0x14,0x9e,0x64, - 0x6f,0x6f,0x87,0xff,0x12,0x23,0xa6,0xf4,0x2b,0x07,0x3f,0xb9,0x88,0x9d,0xa2,0x2f,0xf3,0xda,0x08,0xff, - 0xb4,0x58,0x0a,0xb1,0xe7,0x1a,0x2b,0x51,0xd2,0xda,0x0b,0xde,0x97,0xf2,0x6d,0x7b,0x7a,0x32,0xad,0x12, - 0xbe,0x40,0xc8,0x35,0x31,0x3f,0x31,0x9a,0xaa,0xfe,0x4b,0xf8,0x40,0x12,0xb5,0x05,0x68,0x8e,0x98,0xd1, - 0xad,0x56,0xe3,0xc4,0x95,0xa8,0x71,0xec,0x80,0x02,0x2d,0xbd,0xd2,0x81,0x62,0xc3,0xb2,0x0a,0x1a,0xeb, - 0x5b,0xdf,0xec,0xcd,0x91,0x75,0x8a,0x37,0xd7,0x5d,0x2f,0xf7,0x6b,0x1a,0xd6,0xab,0x74,0x5b,0x21,0xcc, - 0x4d,0xa4,0xb2,0x84,0x22,0xe1,0x9f,0xff,0x3b,0x9e,0xc5,0x47,0x4b,0xf2,0xcb,0x07,0x35,0x8b,0x58,0x3b, - 0x3c,0x52,0xd9,0x24,0xe0,0x21,0xbc,0x09,0x37,0xd7,0x6b,0xe3,0xad,0x9a,0x63,0xaf,0xd7,0xf7,0xc6,0xbb, - 0xdd,0x58,0xcb,0xbe,0x7e,0xb3,0x34,0x2b,0x2a,0x6a,0xd4,0x77,0xaf,0x6f,0x3f,0x69,0x46,0xff,0xab,0x54, - 0x23,0x76,0xa0,0x54,0xce,0xae,0x2b,0xd7,0xb2,0xca,0x5a,0xbd,0x62,0x50,0x8a,0xbd,0xf4,0xd6,0xc0,0x81, - 0x2f,0x30,0x40,0x00,0x7c,0xa0,0x4a,0xf2,0xe3,0x38,0xd1,0x38,0xbf,0xe2,0xc7,0xde,0x1e,0xe5,0xab,0x0c, - 0x60,0x7a,0x0d,0xb1,0x6a,0x17,0xd8,0x3f,0xe3,0xbf,0x08,0x5e,0x25,0x94,0xe7,0x9f,0x89,0x8f,0x93,0x15, - 0x88,0x2e,0x6c,0x73,0x7d,0x94,0xa5,0xb1,0x6e,0x0c,0x9e,0x18,0x7e,0xe6,0xa7,0x51,0xa5,0x5a,0x22,0x6e, - 0x53,0x2c,0x81,0xba,0x0f,0x7d,0xf1,0x33,0x5a,0x99,0x3c,0x99,0xc2,0xff,0xeb,0xf3,0xa4,0x80,0x72,0x64, - 0xe8,0xa4,0xb4,0x0f,0x4a,0xe7,0x8e,0xdf,0x54,0xc7,0x92,0x81,0x28,0xf0,0x8d,0xa4,0x7e,0x4e,0x9c,0xf6, - 0xc0,0x4d,0xab,0x63,0x8f,0x2b,0xee,0x1d,0x75,0x6b,0x9f,0x86,0x46,0xa5,0x30,0x5b,0x7b,0x5e,0xb3,0xa5, - 0x30,0x1f,0x64,0x81,0xf4,0xdc,0xaa,0x5f,0xb0,0x31,0xc3,0x7e,0xde,0x58,0x49,0xf7,0xce,0x09,0x6f,0x0c, - 0x34,0x1f,0xdc,0x35,0xd4,0xb6,0x05,0xa2,0xbd,0xdc,0xbd,0xa3,0x9a,0x9a,0x48,0xeb,0x34,0xdb,0x9a,0x54, - 0x33,0x87,0x6a,0x45,0xda,0xb2,0xb9,0x8a,0x21,0xe0,0xd3,0x78,0xf7,0xf8,0x18,0x6a,0x7e,0x22,0xa8,0x61, - 0xa3,0x30,0x65,0xd9,0x05,0x41,0x73,0x94,0x07,0x4f,0xb3,0x0c,0x2e,0x70,0xfd,0x51,0x51,0x98,0x6f,0x00, - 0x97,0x2e,0x06,0x44,0xa2,0xbf,0xad,0xd7,0x59,0x95,0x62,0xbd,0xad,0xda,0x65,0xf4,0xbb,0xaa,0x5d,0xaa, - 0x91,0xb6,0xf1,0x70,0x6b,0x97,0x6d,0x49,0x97,0xe1,0xb6,0x24,0x6d,0x2d,0xdb,0xe8,0x70,0xbc,0xc8,0xf9, - 0x5d,0x30,0x38,0x11,0x9b,0x36,0x5f,0xa5,0x8b,0x62,0xc7,0x70,0xed,0xff,0xa8,0x17,0xa8,0xf6,0x58,0x2b, - 0x96,0x72,0x3f,0x25,0x35,0xf3,0xb9,0xa6,0x1d,0x98,0xe5,0x3c,0x4d,0xac,0xb8,0xb4,0xf5,0x56,0xdd,0x26, - 0x8c,0x59,0x23,0x82,0x4b,0x3c,0x63,0xc9,0x4b,0x7d,0x7b,0x68,0x3f,0x46,0xe3,0xbf,0x43,0x4a,0x48,0xa0, - 0x5b,0x8f,0xd8,0x2a,0x66,0x51,0x78,0x1a,0x2b,0x4c,0xf4,0x56,0xbb,0x0d,0x11,0xfe,0x87,0x9a,0x2b,0xec, - 0x7b,0x95,0x1f,0x4b,0xeb,0xe1,0xcc,0xd0,0xde,0xb6,0xe9,0x68,0xc5,0x16,0xf5,0x45,0x7c,0xf7,0x5b,0xc9, - 0x9e,0x75,0x88,0xf4,0x1c,0x55,0x59,0xda,0xbf,0x2a,0x53,0x69,0xb4,0x7e,0x3a,0xe7,0x57,0xa0,0xa9,0xc2, - 0x53,0x11,0xd9,0x9d,0xb3,0xb3,0xaa,0xbb,0x7d,0xa7,0x6b,0xdc,0xc9,0x75,0x9d,0x7d,0xa7,0x3f,0x62,0x51, - 0x9c,0x28,0xda,0xf2,0xf7,0x60,0x64,0x85,0x37,0x9d,0x75,0x71,0x49,0xe0,0xd3,0x09,0x66,0xdd,0x11,0x1b, - 0xa2,0xe5,0xee,0x48,0x64,0x20,0x78,0x84,0x56,0xef,0x1f,0x92,0x62,0xcc,0x89,0x66,0xde,0x80,0x53,0xb8, - 0x0e,0xfe,0xf2,0xbf,0x7d,0x21,0xbc,0xa9,0xf0,0x98,0xdd,0x1a,0xa9,0x0f,0x58,0xcd,0x78,0xd6,0x8a,0x84, - 0x4f,0xb5,0x5d,0xd1,0xa4,0x66,0xeb,0x3e,0xc6,0x22,0x4c,0x78,0x11,0xa4,0xa2,0x15,0x69,0x7e,0x6f,0x6f, - 0x23,0x69,0x1b,0xd2,0x77,0x80,0x5f,0x04,0x81,0x02,0xc2,0xf8,0xca,0x18,0xd5,0x30,0x8f,0xe7,0x8f,0x89, - 0xfa,0x51,0x78,0xca,0x2d,0xc3,0x11,0x1c,0xb0,0x8c,0x3d,0x4c,0x61,0x47,0x99,0xea,0xc1,0x88,0x87,0xd6, - 0x82,0x7f,0x0a,0x8d,0xb7,0xf3,0x3b,0xcb,0xed,0xdc,0x9d,0x71,0x9b,0x87,0xd7,0xb6,0x54,0xed,0xd2,0xb3, - 0x62,0xc3,0x3d,0xc5,0x6f,0x8c,0x9b,0x40,0x22,0xd6,0x22,0x0b,0x9e,0xbb,0x93,0x2d,0xca,0xfd,0x84,0xb5, - 0xf7,0xa3,0xba,0xdf,0x06,0x05,0x05,0xc0,0x9d,0x3f,0xb9,0x73,0xdf,0x89,0x26,0x04,0xd5,0x2f,0x45,0xc5, - 0xc2,0x36,0x34,0xb7,0x4a,0x1e,0x11,0x15,0x5a,0xf7,0x63,0xb9,0xf6,0x7c,0x0d,0x3e,0xe8,0x2c,0x49,0xf7, - 0x33,0x31,0x07,0x90,0x27,0xf1,0xdf,0xc1,0x99,0x6b,0x3e,0x8b,0x37,0xf4,0xc2,0xbf,0xaa,0xc5,0x56,0x80, - 0x07,0xf6,0x9f,0xdc,0x85,0xea,0xfe,0x5b,0xd1,0x1a,0xb9,0xf2,0x7c,0x4e,0x13,0xac,0x85,0xd9,0xc3,0x1c, - 0x4d,0xa5,0xcf,0xa1,0x15,0x46,0xa8,0xb1,0x39,0x54,0xda,0x32,0xe2,0xc4,0xd7,0x15,0xe9,0x5c,0x00,0x77, - 0x7e,0x9f,0x60,0x35,0x00,0x88,0x0a,0x69,0xf0,0x6b,0xbe,0x85,0x5d,0x80,0x5e,0xbd,0xbe,0x18,0xf4,0x75, - 0xbe,0x67,0x16,0x56,0x1c,0xb8,0xff,0x83,0x90,0x4a,0xa5,0x4d,0x11,0xfc,0x98,0xf8,0xd5,0xaf,0xef,0xa1, - 0x19,0x1c,0xdc,0x0a,0x86,0xf9,0x3e,0x69,0xc3,0x2a,0x0d,0x8b,0x76,0x46,0x0c,0xb6,0x85,0x88,0xec,0x99, - 0xc4,0xc7,0x9d,0x47,0x29,0x62,0xdf,0xb6,0x3b,0x3b,0xe2,0x4a,0xf3,0x3c,0x5e,0x1a,0x4f,0x85,0x62,0x1d, - 0xaa,0x25,0xcf,0x49,0x1b,0xbe,0x62,0x57,0xaa,0x59,0xbd,0x24,0x98,0xec,0xa8,0x3a,0x2e,0x05,0xf1,0x44, - 0xc5,0x23,0xc3,0x92,0x17,0x5a,0xee,0x38,0x0a,0x93,0x93,0x62,0xd8,0x1f,0x49,0xd8,0x68,0x8c,0x62,0x47, - 0x8e,0xfa,0xde,0x1e,0xd8,0x82,0xf6,0x23,0x4c,0x58,0x63,0x89,0xe7,0x10,0x07,0x40,0x9d,0x19,0x33,0xd1, - 0xf4,0x84,0xcb,0x0d,0x71,0x28,0xee,0x3a,0xc7,0x91,0x07,0xa1,0x87,0xe5,0x40,0x7c,0x86,0x01,0x2f,0x38, - 0x9e,0x09,0x0d,0x75,0x52,0x89,0xbf,0x26,0x7a,0xa8,0xe3,0x30,0x3f,0x99,0x0c,0xfb,0x9b,0x07,0x20,0xf2, - 0x55,0x1a,0x11,0xac,0x74,0x3e,0x40,0xeb,0x4f,0xe3,0xf2,0x69,0xb6,0x60,0x19,0xdb,0xb3,0x59,0x42,0x90, - 0xf5,0x33,0xad,0x35,0x5c,0xaf,0x9f,0x8c,0x79,0x88,0x83,0x99,0x8c,0x7a,0xec,0x05,0x0b,0xfd,0xb5,0x56, - 0xa6,0xb7,0xf3,0x32,0x64,0x85,0x4a,0x08,0x21,0xb5,0x79,0xb4,0x30,0x4e,0xe3,0x70,0x61,0x6c,0xc2,0x75, - 0x89,0x8c,0xae,0x7e,0xdb,0x2b,0xc7,0x86,0xe1,0x75,0xbb,0x87,0x01,0xd3,0x17,0x54,0x38,0x58,0x08,0x66, - 0x39,0xe8,0x30,0x99,0x9a,0xa0,0x1a,0x6f,0x31,0x65,0xb6,0x01,0x45,0x59,0xf4,0xf7,0x0c,0xc8,0x1b,0x97, - 0xfc,0x6c,0xd2,0xe5,0x2c,0x11,0xe8,0x79,0x9f,0x35,0x2d,0xfb,0x9a,0x29,0x56,0x66,0x4c,0x17,0x51,0xf1, - 0x8a,0xd2,0xdd,0x58,0x99,0xe5,0xfb,0xa5,0xd0,0xca,0x5a,0xbf,0xf0,0x17,0xe6,0x11,0xf4,0xaf,0x1f,0x6a, - 0xbf,0xfe,0xd4,0x3e,0xfe,0xe1,0xb4,0x63,0x46,0x38,0xd2,0x70,0x77,0x50,0xcc,0xef,0x65,0x93,0x49,0x11, - 0x97,0x3f,0xc4,0xc9,0xf4,0xa2,0xb4,0x6a,0x35,0x35,0x16,0x65,0xff,0x78,0x8d,0x2b,0x07,0x61,0x18,0x09, - 0x2c,0x2a,0x99,0x70,0xea,0x5f,0x83,0x72,0xa3,0xce,0xf2,0x9e,0x51,0xfa,0x09,0xf3,0x9e,0xa5,0x1d,0xa5, - 0x52,0x2a,0xc0,0x78,0xae,0x28,0x09,0x8e,0x35,0xbd,0xc9,0xe2,0xfc,0x9c,0xc0,0xf5,0x27,0x2f,0x57,0x15, - 0x68,0xb0,0x03,0x79,0xcf,0x2d,0x11,0xc7,0x3b,0x07,0xa6,0x9b,0x5d,0x15,0xaf,0x53,0x82,0x05,0xe9,0x30, - 0x5d,0x70,0xd4,0x96,0x2a,0xc0,0xd8,0x68,0x98,0x15,0x1e,0x74,0xdb,0x0c,0x27,0xc7,0x32,0x7c,0xb6,0x4f, - 0x07,0xd7,0xa4,0x3c,0xb4,0x05,0xb7,0x6a,0xf1,0x1b,0x4c,0x39,0x6e,0xf3,0x97,0x89,0x91,0x07,0x56,0xd7, - 0xb9,0x2a,0x5e,0xc7,0xee,0x2a,0xb1,0xaf,0x57,0x6e,0x84,0xd7,0x32,0x16,0xd9,0x78,0xb4,0xd7,0xd6,0x15, - 0xcf,0x80,0x81,0x2b,0xb1,0x2d,0xb5,0x75,0x77,0x6e,0x4a,0x51,0x84,0xf2,0xfc,0xa9,0xda,0x80,0xb4,0x95, - 0x64,0x36,0xce,0x30,0x6a,0x9a,0x11,0xa9,0x66,0xeb,0x3e,0x88,0x16,0xaa,0x6d,0x48,0x47,0x45,0x6b,0xea, - 0x56,0x1a,0x8e,0xd4,0x64,0x42,0x96,0x89,0x99,0x9d,0x5d,0xc3,0x3c,0xfc,0x5b,0x7e,0xad,0x9f,0x24,0xd3, - 0x9e,0x15,0x10,0x37,0x8c,0x13,0xbf,0xca,0xa8,0x85,0xe2,0x0d,0x17,0xed,0x59,0x90,0xa8,0x85,0xff,0xcc, - 0xad,0xbc,0x46,0x28,0xde,0xf0,0x55,0x5c,0xab,0x58,0x8f,0xdd,0xbb,0x11,0x1a,0xe5,0x6d,0x45,0xaa,0x61, - 0xa7,0x16,0xb0,0x63,0xa8,0xed,0x1d,0x28,0xbd,0xba,0xd8,0x4d,0x50,0xed,0x84,0x5d,0x47,0xea,0x3b,0x13, - 0x3f,0x94,0xcd,0xf1,0x5d,0x66,0x08,0x6c,0x44,0xad,0xb0,0xf1,0xbe,0x03,0x0b,0xed,0x01,0x57,0x67,0xcf, - 0xe5,0x95,0x9d,0xaf,0xd1,0xf4,0x83,0x58,0xbb,0x3e,0x09,0x38,0x42,0xde,0x5a,0xd4,0x58,0x48,0x70,0x9b, - 0x07,0x9b,0xb5,0xd5,0x91,0x28,0xed,0x38,0x4d,0x6b,0x7f,0x09,0xab,0x4a,0xe3,0x43,0xd1,0x90,0x5b,0xc4, - 0x09,0x7b,0xf5,0x3c,0xcb,0x78,0xfd,0x1f,0x09,0x9b,0x4c,0x5a,0x2e,0x4b,0x34,0xc2,0x84,0x46,0xe1,0x0f, - 0x49,0x30,0xad,0x67,0x8b,0xe3,0xb9,0xf6,0x00,0x59,0x31,0xd4,0x85,0xa8,0xd6,0xcf,0x50,0x39,0xd2,0x9e, - 0xe2,0x73,0x84,0x0d,0x0a,0x4b,0x10,0x6a,0x7c,0x17,0xb2,0x27,0x1f,0xf8,0xf0,0x35,0x8a,0x1d,0x72,0xa1, - 0xf3,0x79,0x6e,0xa4,0x85,0x71,0xce,0x7e,0x60,0xd2,0x7a,0x44,0x6c,0xf1,0x5a,0xff,0x2e,0xaf,0xf3,0x92, - 0xa9,0x76,0xe7,0xe4,0x1a,0x7f,0xc3,0xb4,0xd1,0x09,0xad,0xcb,0xd4,0x68,0x12,0xd1,0x48,0x08,0xe1,0x0b, - 0x49,0x9d,0x56,0x9e,0x61,0xd2,0x4d,0x2f,0xdc,0x69,0xcd,0x0b,0x77,0xda,0x37,0x5a,0x21,0x6b,0xac,0x87, - 0xf6,0x43,0xe0,0x5a,0xfd,0xef,0x42,0x15,0x44,0xc2,0x5e,0xef,0xed,0xfd,0x2b,0xc5,0xff,0x3d,0xb8,0xcc, - 0x02,0xa5,0x06,0x05,0xe6,0x6f,0x61,0x8d,0x71,0x28,0x27,0xf2,0xf7,0xc4,0xff,0x27,0x54,0x28,0x6f,0x4f, - 0x6f,0x5d,0x77,0x10,0xf4,0x56,0xa7,0xa9,0xd7,0x1d,0x78,0xa7,0xeb,0xd3,0xf5,0xc1,0xd4,0xff,0x4f,0xe8, - 0xbc,0xef,0xf7,0xbe,0xe8,0x0e,0xfe,0xd8,0xbd,0x5d,0xbb,0xde,0xea,0xe4,0x74,0x78,0x7a,0x70,0x7a,0x3a, - 0xa4,0xbc,0x38,0x6b,0x55,0x5c,0xe7,0xbb,0x43,0xeb,0x6c,0xff,0x67,0xe2,0x3b,0xa7,0xa7,0xbb,0x7b,0x58, - 0x28,0xca,0x39,0x6a,0xcb,0x31,0x0e,0x03,0x68,0x25,0xc5,0x43,0x8a,0x5b,0x76,0x1d,0x35,0x18,0x19,0x8d, - 0xd3,0xa5,0x45,0x98,0x42,0xfe,0xe7,0x97,0x59,0x78,0x2b,0x42,0x7d,0x78,0x33,0x0d,0x4e,0x1c,0x4b,0xda, - 0xef,0x0c,0x7d,0x83,0xab,0x1b,0xc6,0x1d,0xec,0x4d,0xab,0x07,0xf7,0x0f,0x0a,0x37,0xe6,0x22,0xa5,0x11, - 0x33,0xdb,0xbe,0x88,0xb3,0xac,0xa6,0xc2,0x1f,0xdf,0xbd,0x79,0x4d,0x09,0x80,0x68,0xc4,0x6c,0x4c,0x3d, - 0x8d,0xc0,0x52,0xab,0x22,0x5c,0xe2,0x42,0x80,0x02,0x55,0x18,0x24,0x3c,0x4d,0x98,0xd2,0x08,0x73,0x6c, - 0x75,0x9c,0xc2,0x31,0x6b,0x8b,0x8f,0x73,0xc7,0xb1,0x14,0xfa,0xab,0x2e,0xc1,0x46,0x74,0x43,0x7b,0x3e, - 0x81,0xd3,0xad,0x95,0xe8,0x3a,0x3e,0x8c,0x7c,0x6b,0x7d,0xa9,0x5a,0x23,0x53,0xde,0xce,0x94,0x0a,0x25, - 0x11,0xc4,0x69,0xfb,0xb2,0xf1,0xc3,0xc8,0xe7,0x2f,0x1b,0xe3,0xfd,0xc6,0xb2,0x71,0x53,0xcd,0x65,0x7b, - 0x97,0x60,0xe5,0xea,0x4b,0x27,0x95,0xad,0xa5,0xe3,0x84,0xbf,0xba,0x74,0xdc,0x6d,0x6d,0xe9,0x38,0xc5, - 0x5a,0x3a,0xfe,0xad,0x97,0xce,0xee,0xcb,0xd4,0x42,0x79,0x57,0x2a,0x54,0xb9,0x5d,0xd8,0x1a,0xc8,0xe2, - 0xe5,0x19,0x3f,0x31,0xc1,0xde,0x8f,0x6d,0x3f,0x61,0x44,0x99,0xcd,0x94,0x2d,0xa3,0x18,0xec,0x29,0x1b, - 0x4c,0xb1,0x2b,0x4c,0x0a,0x46,0xc9,0x78,0x70,0xa2,0xa9,0x58,0x56,0xa2,0x35,0x83,0x47,0x31,0x8b,0xbc, - 0x3e,0x87,0xaf,0xa1,0x24,0x13,0x4b,0x69,0x65,0xd7,0x08,0xa3,0xcf,0x12,0x06,0x9d,0x5a,0xb8,0x39,0x67, - 0xc3,0x46,0x18,0x05,0xb2,0x79,0xa3,0x18,0x3c,0xe6,0xaa,0x25,0xaa,0x9f,0xc9,0x08,0x5b,0x0d,0x4f,0x65, - 0xc8,0x95,0x89,0x21,0xdb,0x49,0xb6,0x9a,0x53,0xa2,0xdb,0xba,0x3d,0x23,0x5b,0xa0,0x2a,0xf3,0x53,0x6d, - 0x3f,0xb9,0x61,0x87,0xaa,0x2c,0x5b,0xd9,0xb0,0xb2,0xc5,0xae,0x15,0x63,0xd5,0x56,0xaf,0xd2,0x0f,0x2d, - 0x16,0x5b,0xd3,0x2a,0xcb,0x4b,0x18,0xae,0x6a,0x93,0x49,0x5e,0xa6,0xa6,0x11,0xa6,0x2c,0x9b,0x18,0xa5, - 0xaa,0xc5,0x13,0xf3,0x09,0x6d,0x60,0x59,0xd9,0x7e,0x36,0x96,0x88,0xed,0x71,0x69,0xa1,0x78,0xad,0x69, - 0x9d,0xa2,0x2c,0x3c,0xf8,0xe3,0xb4,0xf8,0xc2,0x3d,0xa1,0x7f,0x9d,0x7b,0x8f,0x1e,0x9f,0x1e,0x84,0xc3, - 0xae,0x47,0xb8,0x06,0x89,0xa1,0x87,0x7f,0x07,0x81,0x43,0xd9,0xce,0xf0,0x0b,0x42,0x3b,0xab,0x7b,0xf4, - 0x79,0x8f,0x3e,0xef,0x75,0x57,0xaa,0x4e,0xf8,0xe8,0xf1,0x7f,0x51,0x15,0xcf,0x1b,0x1c,0xd0,0x60,0x42, - 0xe7,0x24,0xda,0xff,0xf3,0xc9,0xfe,0xef,0x67,0xc3,0x93,0xd3,0xd3,0xeb,0xd3,0xd3,0xfd,0xd3,0xd3,0xde, - 0xf0,0x0b,0x87,0x16,0x35,0x64,0x1c,0xe6,0x74,0x8b,0xac,0x4b,0x98,0x2e,0xf0,0x06,0xf2,0xe9,0x39,0xfe, - 0x2c,0x0b,0x2d,0x64,0xe7,0xfc,0xf1,0xc8,0xe9,0x8e,0x32,0xcf,0x5f,0xe8,0xc1,0x9d,0x1e,0x0c,0xbc,0xc7, - 0x07,0xb4,0xa0,0x8d,0x62,0xa7,0xa7,0x07,0x28,0xd9,0x75,0x4e,0xfe,0x78,0x3c,0xfc,0xe2,0x31,0x0c,0x1b, - 0x51,0xe5,0xd1,0xce,0xf3,0x37,0xcf,0x8e,0xff,0xf9,0xf6,0xdb,0x0e,0xd2,0xbb,0x8f,0x0f,0x12,0xff,0x42, - 0xd2,0x61,0xb7,0xb3,0x94,0xcf,0xd3,0x93,0x03,0x62,0x82,0xf1,0x62,0xec,0x7c,0x70,0x0c,0x16,0x3e,0xf8, - 0xe0,0xf6,0x68,0x22,0x53,0xbf,0x7e,0xe4,0xa9,0xa0,0x03,0x76,0xbe,0x54,0x0f,0x2e,0xd3,0xcc,0xbf,0xc9, - 0x08,0x70,0xfc,0xb3,0xcc,0xbf,0xce,0xfc,0xe3,0xcc,0xbf,0xcc,0xfc,0x0f,0x99,0xff,0x2c,0xf3,0x9f,0x64, - 0xfe,0xbb,0xcc,0xdf,0xcd,0xfc,0x37,0x0c,0x82,0xca,0x6a,0x57,0x99,0x43,0xeb,0xb7,0x0e,0xbe,0xf0,0xbe, - 0xcd,0xf0,0x5e,0xfc,0x96,0xfe,0x75,0xf6,0x66,0x65,0xdf,0x09,0x9c,0x47,0x74,0x28,0xf7,0xa6,0xfc,0xf9, - 0x18,0x9f,0x80,0x4f,0xfa,0x71,0xcf,0xb9,0x47,0x3f,0xa2,0xab,0x39,0x32,0xf6,0x90,0xf1,0xb7,0xa3,0x43, - 0x7c,0x9f,0xa6,0xfc,0xe3,0x1b,0xfe,0x2e,0x9d,0xb5,0xff,0x9e,0xe6,0xb6,0x47,0x8b,0x4c,0x9c,0xef,0xb4, - 0x5c,0xa1,0xfa,0x8a,0xaa,0x79,0x7d,0x9a,0xd0,0xf3,0xd6,0xac,0x15,0xb5,0xb4,0xfa,0xdb,0x37,0x5c,0xe2, - 0x05,0x0f,0x18,0xfa,0x0e,0xf5,0x71,0xbe,0xcc,0xb6,0xd0,0x14,0x7b,0x7b,0x2f,0x32,0xf1,0x9c,0x70,0xca, - 0x92,0x95,0x12,0xbe,0x8a,0xfc,0xef,0xb0,0xbe,0xff,0xb1,0xfa,0x63,0xb9,0x9f,0xa5,0xc1,0x81,0xff,0x1a, - 0x3f,0x97,0xfb,0x2b,0x24,0xd1,0xcf,0x57,0xf4,0xd3,0xed,0x7d,0x41,0x17,0x6a,0xd1,0xa5,0xd1,0x24,0xe9, - 0x2a,0x9b,0xf0,0x77,0xef,0x0b,0xef,0xc0,0xff,0x99,0x72,0x7d,0x82,0x2b,0x9f,0xae,0xdb,0x21,0x41,0x19, - 0x95,0xb0,0x7f,0x7a,0x83,0xdd,0x03,0xff,0x37,0x86,0x0a,0x77,0x75,0xea,0xed,0xd2,0xa0,0x9f,0x66,0x6c, - 0x14,0xf6,0x05,0xfd,0xf0,0x7f,0x45,0x4e,0x80,0x9e,0x59,0xe0,0x7c,0xe0,0xff,0x42,0x09,0xa7,0xbd,0x93, - 0x3f,0x7a,0xc3,0x2e,0x15,0xfd,0xa1,0x79,0x3f,0x2b,0x37,0x31,0xbf,0x27,0xe1,0xef,0xc9,0x1d,0xe6,0x49, - 0x5e,0xa5,0x03,0x41,0x44,0xd3,0xef,0x89,0x6d,0x92,0x48,0x97,0xf0,0x9f,0xe8,0xf9,0xc3,0xd5,0x2c,0x2d, - 0x82,0xd7,0xef,0x4e,0xc7,0xdd,0x03,0xff,0x5f,0x48,0xe1,0x6f,0x1a,0xc7,0x4f,0x59,0x78,0x52,0x66,0x74, - 0xe7,0xf8,0xb7,0xb4,0xbc,0xc7,0x1f,0xb9,0x5b,0x44,0x7a,0xa4,0x7d,0x49,0xc8,0x83,0x90,0xe6,0x5d,0xf8, - 0x49,0xff,0x55,0x34,0x67,0x4d,0xc4,0x13,0x67,0xb9,0xcf,0x4f,0x28,0xce,0x10,0x54,0x12,0x7e,0xf2,0xa4, - 0x41,0x09,0x3a,0xc3,0xd5,0x8a,0x52,0xd4,0xb7,0x56,0x08,0x55,0xb7,0x0d,0x27,0x82,0xda,0x92,0x9b,0x6b, - 0xb9,0x9f,0x4c,0x64,0x9b,0xb3,0x30,0x19,0x38,0xd4,0x96,0xd3,0x4d,0x70,0x28,0x03,0xe2,0x0d,0xa3,0x50, - 0x88,0x71,0x5d,0x14,0x8f,0xb8,0x52,0xb8,0xa8,0xa5,0x99,0x36,0x46,0xe1,0x3f,0x98,0x14,0xff,0x11,0xba, - 0x28,0x7e,0xcc,0x3a,0x46,0xdc,0xa1,0x2f,0x0e,0x33,0xce,0xb3,0x0f,0xd4,0xf7,0x4f,0x48,0x87,0xaa,0x3e, - 0x88,0xd7,0x11,0x21,0x68,0x21,0xed,0x46,0xbd,0x64,0x42,0x38,0xc2,0xe9,0xe6,0xd4,0x3f,0x4d,0xff,0x9e, - 0xae,0x72,0xcf,0xe9,0x66,0xfe,0xf7,0xa8,0x74,0x1b,0x7f,0x98,0x07,0x28,0x27,0xf8,0x3b,0x18,0xad,0xb5, - 0xbc,0x56,0xfa,0xa5,0x41,0xcd,0x30,0x28,0x5a,0x5d,0x19,0x50,0xcc,0x09,0x6a,0x08,0x79,0x34,0x4e,0x32, - 0xe9,0x7f,0x86,0xfe,0xab,0x26,0xed,0x5e,0xb9,0x14,0x77,0x29,0x7d,0xcc,0x54,0x1f,0x0b,0xdd,0x87,0x52, - 0xf1,0x29,0x21,0x9a,0xab,0x77,0x45,0x09,0xb2,0xe8,0x30,0x79,0xf8,0x09,0xbf,0x6b,0xbd,0x24,0xaa,0xc5, - 0x05,0x02,0x0b,0x0f,0x46,0x3d,0x2c,0x1d,0xc2,0xce,0x15,0x2c,0x4c,0xc5,0x2f,0x5a,0x80,0x82,0xd6,0x05, - 0x2c,0xdd,0xd0,0xff,0x91,0x30,0x03,0x55,0x23,0x56,0x01,0x60,0x07,0xa9,0xbd,0x7e,0xd7,0xfe,0x29,0xf3, - 0x2b,0x1e,0x22,0x50,0x4f,0x69,0xad,0x4f,0x4b,0x62,0x97,0x23,0xda,0x1c,0x50,0x79,0x64,0xb5,0xb3,0x0b, - 0x7f,0xe9,0x5f,0x99,0x67,0xb5,0x69,0xed,0x4d,0xf5,0x46,0xa0,0xce,0x3f,0xb7,0x00,0x8e,0xdf,0x62,0x25, - 0x00,0x93,0x61,0x4f,0x8c,0xa7,0x26,0x80,0xc1,0x95,0x3f,0xf5,0x7c,0x15,0x64,0xb7,0x7a,0xcf,0xbc,0xf1, - 0x88,0x03,0xf5,0x2f,0xc2,0x2b,0x7f,0x19,0xde,0x63,0x2d,0x81,0x5d,0xed,0x84,0xe3,0xd7,0x68,0xd6,0x09, - 0x3b,0x8d,0xb0,0xea,0xea,0x45,0x41,0xde,0x31,0x77,0xd9,0x73,0xac,0x0a,0xd5,0x68,0xde,0x34,0xcd,0x1c, - 0x33,0x83,0x85,0xb2,0x9e,0x6e,0x74,0xed,0xe1,0x19,0xd4,0xb5,0xcb,0xa0,0xd7,0x25,0xf7,0xe5,0x9c,0x89, - 0xc7,0x17,0x68,0x05,0x65,0x9d,0x01,0x55,0x93,0x84,0x4e,0x40,0x9f,0xea,0xf5,0x4d,0x1a,0xbc,0xd7,0x75, - 0x89,0x12,0x9a,0xf6,0xc4,0x94,0x7e,0xe0,0x9c,0xa5,0x2e,0xe5,0xe3,0x40,0xd0,0x1f,0x88,0x8a,0x08,0x1e, - 0x88,0xa9,0x2f,0x21,0x81,0xd5,0x4f,0xcb,0xcb,0x70,0xd9,0x75,0x3a,0x04,0x33,0xb0,0x84,0x71,0xea,0x63, - 0xd7,0xef,0xaa,0xd4,0x69,0x7d,0x01,0x82,0xfa,0x6f,0x42,0x9e,0x8e,0xd7,0x30,0xac,0xa8,0xa1,0x83,0x1b, - 0x42,0xb4,0xe6,0x14,0xd1,0xef,0x73,0x0f,0x2e,0x92,0x46,0xb4,0xbe,0xb3,0xd0,0x1a,0xb1,0xbf,0xc0,0x49, - 0x2f,0x7c,0xe5,0xe2,0xc6,0x5b,0xad,0x1c,0x34,0xea,0xf8,0x13,0x95,0x0e,0x6f,0x27,0xfb,0x55,0x26,0x7e, - 0x3a,0xfe,0x58,0x65,0x4e,0x22,0x9c,0xe7,0x2a,0x97,0x7f,0x3b,0xfe,0x3f,0x63,0x64,0x6a,0xa7,0x37,0xbe, - 0x53,0x37,0x1d,0xa1,0x4b,0x98,0x0e,0xcf,0xe0,0x2c,0x91,0x2f,0xdf,0xe9,0x2e,0xba,0xcc,0x7a,0x3b,0x5d, - 0x57,0xda,0xa7,0xe1,0x4e,0x06,0x4e,0xa0,0x4a,0xd2,0x5a,0x06,0x67,0xff,0x32,0x85,0x27,0x48,0x82,0x56, - 0x4c,0x29,0x9d,0xc8,0x9a,0x3a,0x02,0x32,0x51,0x28,0xc5,0x76,0xc1,0x9c,0xd6,0x56,0x96,0x92,0x46,0x21, - 0x92,0x7b,0x6a,0x5c,0x03,0x57,0xda,0x42,0x37,0x63,0xfa,0xbb,0x69,0xfc,0x4a,0xcd,0x29,0x74,0xb8,0xbb, - 0xbb,0xa4,0x86,0xdd,0x19,0xef,0xaf,0x8c,0xd7,0x09,0x16,0x1e,0x77,0x94,0x84,0x34,0x13,0x2a,0x4a,0x9f, - 0x4b,0x6e,0xc4,0xee,0x84,0xb8,0xc9,0xdd,0xe4,0xd1,0x21,0x23,0x4a,0x1a,0x17,0x0d,0xc0,0x04,0xd6,0x3e, - 0xa1,0xf2,0x84,0x6e,0x45,0x37,0x8e,0x4a,0xd1,0x02,0xd4,0x8a,0x69,0x77,0x2f,0x94,0xe5,0xe9,0x3a,0x55, - 0x3a,0xa5,0x76,0x8f,0xa0,0x37,0x20,0xf5,0x19,0x98,0x08,0x7d,0xd2,0x24,0x19,0xe8,0x9c,0xbb,0x40,0x43, - 0xb0,0x1b,0xc3,0x85,0x30,0xf6,0x57,0x84,0xd2,0x6d,0xb8,0x88,0xb0,0xc5,0xf9,0x26,0x5c,0xfc,0x93,0x03, - 0x5b,0x55,0x7b,0xcb,0x3b,0x93,0xf0,0xce,0xb8,0x51,0x98,0xa9,0x15,0x8a,0x78,0x85,0x22,0x8f,0xf7,0x0a, - 0x5b,0x95,0x57,0x5b,0x45,0x23,0x85,0x61,0xda,0x47,0x47,0x08,0x48,0xb3,0x54,0x3d,0x6e,0xbc,0x9d,0x56, - 0x84,0xd5,0x44,0x3b,0xf0,0xb7,0xca,0xb1,0x3c,0x32,0xa8,0x62,0x23,0x0c,0x30,0xbc,0x68,0xab,0x19,0x21, - 0x96,0x11,0xcc,0xb3,0xe9,0x10,0xec,0x64,0xbc,0x04,0x18,0x0e,0x54,0xf6,0xe8,0x48,0xd0,0xc0,0xd5,0xf8, - 0x02,0x95,0x01,0xd5,0xb2,0xc1,0x65,0x12,0xa8,0x51,0xd1,0x41,0x69,0x1c,0x55,0x59,0x99,0x3e,0xf0,0x71, - 0x7b,0x9e,0x32,0x06,0x07,0xe1,0x2c,0x65,0x2a,0xe0,0x91,0x4b,0x62,0x12,0xd2,0x5a,0x94,0x78,0x74,0x1a, - 0x51,0x01,0xba,0xce,0x00,0x3d,0xb5,0x76,0x94,0xfa,0x88,0x79,0x77,0xec,0x13,0xcc,0x7a,0xd8,0x83,0x58, - 0xef,0x8c,0x8f,0xdb,0xa8,0x34,0xeb,0x1c,0x13,0xe6,0x9e,0x54,0x62,0x12,0xb7,0x58,0xad,0xd8,0x96,0x90, - 0xef,0xdf,0xf3,0xd9,0x82,0xae,0x1f,0xa7,0xfe,0x1a,0xe5,0xb0,0x15,0x20,0x90,0xb2,0xd9,0x88,0x9d,0xdd, - 0xb4,0x2e,0x00,0x74,0x2b,0x65,0xd5,0x1a,0x0a,0x37,0x0f,0xab,0x4c,0x04,0x6e,0x70,0xbe,0x4b,0x51,0x4c, - 0x90,0xe1,0x5a,0x34,0x10,0xc0,0xa6,0xc0,0xb0,0xa5,0x04,0x0f,0x7e,0xcd,0x4c,0xcd,0xc7,0x9b,0x30,0x54, - 0x55,0x6b,0x03,0x6b,0xe2,0x1c,0xdf,0x12,0xc1,0x14,0xb5,0x79,0x9a,0x00,0xa5,0xaa,0xfc,0x6a,0x41,0x0c, - 0x49,0x6c,0x0f,0xca,0xe5,0x99,0x6f,0x49,0x40,0x83,0x38,0x81,0x1f,0x9d,0xa7,0xf1,0xcb,0x78,0x52,0xbe, - 0x99,0xc7,0x29,0x8a,0x24,0x99,0x5f,0x5b,0x8a,0x60,0x91,0xf8,0x0d,0x29,0x67,0xf0,0x2a,0xf6,0x2d,0xe9, - 0xc0,0x4f,0x19,0x31,0x08,0xe3,0xc5,0xa8,0x5d,0x93,0xa6,0x13,0xeb,0xc3,0xac,0x63,0x5d,0xe9,0x28,0x7e, - 0x1e,0x3b,0x7a,0xe8,0xbd,0xcf,0x12,0x02,0x13,0x1f,0x2b,0xf2,0x7d,0x3b,0x0d,0xda,0x81,0xff,0x16,0x40, - 0x3b,0xae,0x5e,0x86,0x7f,0xc8,0xcc,0x7d,0x7d,0x12,0x7c,0x62,0x4e,0x92,0x54,0x79,0xe9,0xf0,0xcd,0x93, - 0x97,0x04,0x0a,0xea,0xba,0xf1,0x00,0x67,0x35,0x86,0xb3,0x53,0x48,0x84,0xfe,0x61,0x78,0xba,0xd3,0xeb, - 0xdd,0xb3,0x61,0x77,0x75,0x4a,0x24,0xb4,0x37,0xfc,0x62,0x70,0xea,0x81,0x9f,0x0b,0x1f,0xaf,0xfe,0xd0, - 0x23,0xa0,0x9f,0xa7,0xee,0x81,0xff,0xbb,0xaa,0x71,0x42,0x7c,0x1b,0x71,0x6f,0x67,0xbb,0x43,0x54,0x1d, - 0x82,0xf5,0x23,0xf2,0xb9,0x91,0xb8,0x3a,0x3d,0xb9,0x47,0x04,0xfc,0xbd,0x21,0x7d,0x38,0xf4,0xe1,0xe0, - 0x83,0xe8,0x5c,0xfc,0x69,0x96,0x1d,0x7a,0x5f,0x50,0xb3,0x44,0x9a,0xff,0x13,0xb4,0x4c,0x31,0x0a,0xee, - 0xff,0x1d,0x3e,0x8a,0x82,0x6f,0x44,0x7b,0x22,0x38,0x7a,0xe0,0xcb,0x7a,0x3f,0xb8,0xef,0x2f,0xe6,0xc1, - 0x83,0xaf,0x89,0x05,0x9e,0x94,0xc1,0x83,0xbf,0xfb,0x39,0xde,0x45,0x82,0x07,0xdf,0xf8,0xf0,0x6b,0x1d, - 0x3c,0x3c,0xf4,0xe5,0x69,0x32,0x38,0xf9,0xda,0x7f,0xf8,0x15,0x71,0x19,0xff,0x99,0xb5,0xb9,0xdb,0x02, - 0xca,0xe9,0x02,0x78,0x2c,0x57,0x58,0x7d,0xe2,0x8b,0xe2,0x08,0xd2,0x1e,0x82,0x07,0x7d,0xa8,0xf1,0x03, - 0x00,0x12,0x4d,0x23,0x91,0x11,0xf6,0xa1,0x28,0xc1,0x79,0xa6,0x8c,0xfa,0xfd,0x5c,0x9e,0x12,0xb9,0x08, - 0x42,0x8c,0x05,0xff,0x99,0xb9,0x75,0xdc,0xd0,0x21,0x8c,0xd3,0x51,0x29,0xa3,0x45,0x8e,0x4d,0x3a,0xe6, - 0x0c,0x3a,0xc0,0xa3,0x32,0x9f,0x71,0x8d,0x1d,0x5d,0x80,0x12,0x7e,0x82,0xe2,0xad,0xcf,0xce,0x40,0x6b, - 0x79,0x9c,0x22,0x99,0xd1,0xac,0x9e,0x45,0xbf,0x25,0x03,0x02,0x81,0x5a,0x0e,0x12,0x24,0x8b,0xd7,0x0e, - 0x59,0xf7,0xc4,0xd9,0xd3,0x3d,0x10,0x3b,0x52,0xaa,0xb3,0xb7,0xa7,0x47,0x28,0x79,0x3c,0xe6,0x43,0xb4, - 0x97,0x8c,0xc7,0xb3,0xf8,0xb3,0xaa,0x1d,0xb1,0x43,0x34,0xec,0xcf,0xe7,0xd4,0xba,0x0f,0xf8,0xc7,0x83, - 0x27,0xb1,0x85,0x4d,0x37,0x2b,0xf0,0xee,0x56,0x05,0xa8,0x6b,0xd9,0xd8,0xb3,0xa9,0x6c,0xac,0x5f,0xc3, - 0x10,0x84,0x20,0x36,0x54,0x8b,0x74,0x73,0x1c,0x09,0xaf,0x32,0x02,0xaa,0x5a,0x3a,0xa7,0x96,0x52,0x6a, - 0xe9,0x1e,0x04,0x5c,0x74,0xde,0xba,0xe0,0xae,0xab,0x56,0x71,0xeb,0x59,0x04,0x31,0xfc,0x17,0x55,0x5a, - 0x86,0x78,0xe6,0x1a,0x08,0x45,0x13,0x28,0xd2,0xc8,0xfb,0x48,0x71,0x0e,0x25,0xed,0xf8,0xaa,0xbc,0xe3, - 0xa9,0x31,0x8f,0x66,0x59,0x74,0x89,0x20,0xb9,0x69,0x8b,0x17,0xd3,0xcc,0x38,0xbf,0xe4,0x9f,0x10,0x35, - 0xd2,0x9d,0x88,0x3f,0xab,0xd5,0x3f,0x54,0xa2,0x91,0x4e,0x16,0xe1,0xef,0xb0,0xb1,0xd4,0xfa,0xe6,0x8e, - 0xc9,0x40,0x94,0x22,0xed,0x93,0x1d,0x2f,0x88,0xdf,0xc7,0x29,0x82,0xf1,0xd5,0x4b,0x2b,0xb1,0xa2,0x29, - 0x67,0x58,0x8a,0x70,0xe9,0xb2,0xee,0x44,0x19,0xb1,0xc5,0xb3,0x49,0xf7,0x4c,0x60,0xae,0x1a,0x02,0x5d, - 0xad,0x2e,0xd3,0xbe,0x72,0x77,0x7c,0x73,0x1e,0x9b,0x98,0x8a,0x2d,0x1b,0xb9,0x63,0xac,0x73,0x95,0xaf, - 0xcb,0x74,0x14,0xbf,0x80,0x11,0x16,0xff,0x6a,0xc6,0x0e,0x84,0xdb,0xed,0x3c,0x0a,0x5d,0x5b,0xea,0x73, - 0x7a,0x7a,0xee,0x74,0x9d,0x31,0xe1,0xf0,0x09,0x24,0x6c,0x04,0xf4,0x25,0xde,0x1c,0x68,0x91,0x6f,0xd8, - 0xdf,0xda,0x08,0xd2,0x3d,0x5c,0x7b,0xfe,0x75,0x52,0x5e,0xf8,0xd1,0x75,0x94,0x94,0x3e,0xeb,0xfb,0xfb, - 0xec,0xd9,0x5c,0xe9,0xc4,0xf3,0x03,0x8f,0xcf,0x8e,0x48,0x7d,0x0e,0x32,0xef,0x5f,0x13,0x5a,0x8d,0xfd, - 0x1b,0x88,0xf5,0x14,0xb2,0xf1,0x89,0xfb,0xca,0xe0,0xc4,0x90,0x1d,0xac,0xf8,0x32,0x03,0xed,0xd8,0x4b, - 0xbb,0x53,0x14,0xd7,0x9f,0xc4,0x9a,0x48,0xbc,0x79,0xf6,0x6d,0x96,0xa4,0x0b,0x78,0xe4,0x39,0x5f,0x4c, - 0xa7,0x90,0x03,0xaa,0x55,0xa8,0x62,0xa8,0x38,0xca,0xfd,0x0c,0xee,0x04,0x75,0x3b,0xd0,0xb4,0x56,0x98, - 0x9a,0xd7,0xe5,0x19,0xca,0x3b,0x4a,0x63,0xce,0x32,0x28,0xf1,0x21,0xca,0x7a,0xe9,0xad,0xed,0x10,0x4a, - 0x07,0xc2,0x3f,0x3d,0x25,0x94,0x4f,0xff,0x54,0xad,0x36,0x32,0x10,0x00,0x6e,0xb7,0x29,0xda,0xa9,0x2c, - 0x6c,0xb7,0x1a,0x84,0xb2,0x17,0x60,0xc2,0x8d,0x08,0x6c,0x1c,0xee,0x1c,0x79,0xfe,0x71,0xa6,0xf6,0x94, - 0x6d,0xbf,0x20,0xc6,0xb6,0x62,0xb0,0xf4,0xd3,0x47,0xd7,0x99,0xed,0x77,0xe5,0x3a,0x63,0x13,0x5b,0x18, - 0xf7,0x4e,0xb3,0xb0,0xac,0x20,0xfb,0x18,0xbf,0xf4,0x7d,0x0f,0x90,0xf2,0x2f,0x91,0x62,0xdd,0xe6,0x9c, - 0xf8,0x01,0x89,0x8d,0xeb,0x9a,0x33,0xce,0x33,0x80,0x77,0xd9,0x72,0x18,0x5e,0xcb,0x61,0x38,0x6b,0x16, - 0x68,0xca,0x62,0xa8,0xcc,0xf5,0x46,0x99,0xac,0x28,0x9b,0x85,0x6e,0x30,0x04,0xda,0x8d,0xe4,0x2a,0x29, - 0x11,0xdf,0xd0,0x70,0xda,0xa2,0x5a,0xb2,0x73,0xc4,0x1a,0x4e,0x08,0x5a,0x8e,0x13,0xf2,0xdb,0x05,0x95, - 0xe2,0x61,0xfa,0x58,0x2f,0xd0,0xaa,0x47,0x1b,0x46,0x17,0xcd,0x45,0xa6,0x5f,0x8b,0x6e,0x48,0xd0,0x05, - 0x8d,0xd5,0xc5,0xb9,0x3c,0x20,0xb8,0xb6,0x41,0x74,0xae,0x5d,0x04,0xb0,0xc1,0xbe,0x5f,0x54,0x01,0xe9, - 0xc5,0xbb,0xec,0xc2,0x53,0x8f,0x69,0x78,0x53,0xc8,0xf1,0x53,0x76,0xac,0xf1,0xdc,0x4a,0xc9,0xac,0xc5, - 0x9f,0x84,0x51,0x15,0xa5,0x3e,0x79,0x1c,0x1e,0x22,0x16,0x41,0x32,0xec,0xcd,0x74,0x51,0x1c,0x74,0x9a, - 0x17,0xf5,0xb3,0xbf,0xaf,0xe9,0xca,0x90,0x1f,0x75,0x51,0xda,0xb2,0xad,0xb4,0x1b,0x1a,0x3d,0x0e,0x93, - 0xfe,0x88,0x2a,0x94,0x3d,0x76,0xa0,0xc2,0x7f,0xd8,0x8d,0x3a,0x0b,0x19,0x30,0xfe,0xbe,0x2e,0x1e,0x62, - 0x01,0x13,0xee,0x76,0xff,0x88,0xf3,0x99,0x11,0x72,0xce,0x73,0x50,0x79,0xc5,0x80,0x89,0xab,0x9c,0x7d, - 0xd1,0xf3,0x07,0xcd,0x9f,0x96,0x7b,0xe7,0x50,0x9c,0x1e,0x38,0x73,0x2e,0xc5,0x61,0x13,0x5a,0xcb,0x1d, - 0x71,0x39,0xbf,0x36,0x10,0x59,0x41,0x5a,0x54,0xed,0xf7,0x00,0xc2,0x12,0x6c,0x22,0xf4,0xcc,0x2b,0xd1, - 0x0b,0x6d,0x59,0xd9,0xab,0x68,0x4c,0x86,0xb6,0x19,0xde,0x93,0x1b,0x94,0x25,0x67,0x2c,0x68,0x51,0xe2, - 0x3e,0x4b,0xf2,0x12,0x42,0xe2,0xc4,0x96,0xbc,0xc9,0x5c,0xed,0x7f,0x43,0x4c,0x4e,0xb3,0xc6,0x8b,0xf7, - 0x3c,0xfc,0x36,0x3b,0x19,0x23,0xee,0x13,0xff,0xad,0x09,0xb9,0x89,0x88,0x3b,0x2d,0x4e,0x4f,0xdf,0x11, - 0xf9,0xe6,0xb9,0x8f,0x0e,0x98,0xb1,0x15,0x69,0xb7,0x47,0xa7,0x3e,0x01,0xdb,0x0c,0xc3,0x2b,0x2d,0xbf, - 0x9e,0xdb,0x82,0x6b,0x06,0x0f,0x0d,0x69,0xc6,0xc8,0xd5,0xa7,0xf1,0x8c,0x99,0xfb,0x53,0x2e,0x25,0xb1, - 0x70,0x88,0x22,0x9c,0x86,0x95,0x6f,0xa9,0x03,0xc8,0xca,0xa9,0xef,0x42,0x7a,0xde,0xdf,0x7f,0x7c,0x30, - 0x25,0x36,0x83,0x6e,0x7e,0xbb,0xc8,0xe9,0xc9,0xb3,0xe7,0x4f,0x8e,0x9f,0x9c,0x9e,0x54,0x25,0x87,0x43, - 0x53,0x12,0x92,0x63,0x77,0xec,0x8b,0x1b,0x65,0x68,0xab,0x28,0x77,0x4c,0x1c,0x02,0xef,0x22,0x92,0xcb, - 0x92,0x3f,0xa0,0xe2,0xe0,0x40,0xae,0x42,0x30,0xaf,0x35,0x70,0xf6,0x2f,0xf4,0x78,0xe3,0xf0,0xc2,0xcf, - 0xa9,0xa1,0xc5,0xfe,0x04,0x01,0xa6,0x8d,0x89,0xd1,0x32,0xb4,0x9e,0xfa,0x1f,0x09,0xbb,0x0f,0xed,0xca, - 0x25,0x2f,0xfe,0x45,0xa6,0xa3,0x64,0x69,0xe3,0x30,0x5b,0x31,0x60,0xff,0xf4,0xc3,0x83,0x58,0xaa,0x5c, - 0x31,0xf8,0x96,0x2a,0xfa,0x22,0x02,0x50,0x28,0xcd,0x42,0x15,0xf5,0x40,0xf9,0x22,0xa9,0x4e,0xe1,0x43, - 0x1f,0x66,0xb4,0xa9,0x7b,0xd5,0x7d,0x40,0x6c,0x9e,0x42,0xf7,0x6b,0x68,0x6d,0x2d,0x1b,0x7d,0x4e,0xed, - 0x3e,0x87,0x8f,0xa5,0xbf,0x29,0xf7,0x97,0xba,0xd3,0xee,0x7d,0xbb,0x3a,0xca,0x43,0xf8,0xc6,0x9e,0x67, - 0xdd,0x79,0xc6,0x65,0x6f,0x50,0xf0,0x06,0x0f,0xc8,0x3a,0x5a,0xa1,0xa9,0x80,0xf2,0xe7,0xa6,0xfc,0x44, - 0xca,0x9f,0x4b,0xbf,0x67,0xe1,0xa2,0x9f,0xba,0xe7,0x56,0x3d,0x5a,0xc0,0xf3,0x93,0xa3,0xa1,0x7f,0xc6, - 0xac,0xa9,0xdd,0xc6,0x75,0x33,0x02,0x4a,0x69,0x1a,0x9d,0x49,0xa3,0xa5,0x25,0x4b,0x0c,0x6f,0xb5,0x43, - 0xbf,0x12,0xcd,0x31,0x07,0x12,0xe0,0xc0,0xe0,0xa4,0x05,0x0b,0x09,0x6d,0x49,0xe8,0xcb,0x1e,0xf2,0x0e, - 0x5b,0xe8,0x4b,0x93,0x8b,0x4c,0x82,0x8a,0x9a,0x84,0x88,0x12,0xfa,0x5e,0xea,0x26,0xf6,0x60,0x33,0xe5, - 0x16,0x92,0xf5,0xcf,0xc4,0xca,0xcf,0xb8,0xe5,0xca,0x7a,0x0b,0x9c,0xc3,0x77,0x74,0x8b,0x5f,0xb0,0x83, - 0x36,0x58,0x65,0xd6,0x2b,0xc3,0x97,0xf9,0xc2,0x87,0x65,0xb0,0x18,0x43,0x79,0xb7,0x3b,0xcd,0x97,0xd3, - 0x94,0x26,0xb3,0x60,0x2f,0x38,0x6a,0x3e,0x74,0x2c,0x63,0xab,0x65,0x96,0x01,0x08,0x4e,0xa1,0x13,0x9c, - 0x65,0xee,0x84,0x86,0x9d,0xd3,0x39,0xf6,0x67,0xfc,0x99,0x41,0xa0,0x85,0x94,0x89,0x57,0x5d,0x77,0xf3, - 0x70,0x44,0xbf,0x57,0xab,0x9d,0x9d,0x31,0x1f,0x4a,0x99,0x84,0x82,0xe2,0x25,0x1f,0x6b,0x11,0x43,0xd1, - 0x28,0xaf,0x08,0x4d,0x5c,0x3d,0xba,0xe8,0x5f,0x69,0x25,0xbe,0xa9,0xae,0x70,0x72,0x35,0xec,0x5f,0x51, - 0xa7,0xfb,0x30,0x85,0x9b,0x62,0x66,0x1a,0x84,0xee,0x39,0xce,0x3d,0xac,0x1e,0x3f,0x45,0x4d,0x4f,0x1e, - 0x0c,0xf7,0xf6,0x94,0xc2,0x26,0x7e,0xf8,0x2a,0xf9,0xa1,0x9d,0xfc,0xd0,0x24,0x7f,0x69,0x27,0x7f,0xa9, - 0x4c,0x05,0x6f,0xb8,0x99,0xd5,0x0a,0x05,0xf1,0xef,0x97,0xf4,0xaf,0xe3,0xf8,0xe7,0xa1,0xc3,0x42,0x1a, - 0x9a,0xa1,0x03,0xdf,0xcc,0xd2,0xc2,0xd1,0x70,0xa0,0x4f,0xc9,0xf3,0x18,0xfe,0x72,0x5f,0xc7,0xd7,0xf0, - 0x77,0x5a,0x7c,0x97,0xe5,0x3f,0x50,0xa9,0xa0,0x3d,0xb7,0xbf,0xa4,0x19,0x29,0xc5,0x74,0x34,0xe2,0x33, - 0xa1,0x1d,0x10,0x4a,0xb8,0x41,0x24,0x2e,0xf8,0x1d,0x18,0x3c,0xcf,0x82,0xf7,0x99,0xe5,0xda,0x6e,0xe1, - 0xb7,0xf0,0xc8,0x6f,0x33,0x76,0x2f,0xef,0xad,0xd7,0x44,0x09,0xc0,0xb9,0x3f,0xa0,0x83,0x75,0x5a,0x27, - 0x7e,0xed,0x9a,0x0a,0x26,0x0d,0x04,0x2b,0x60,0xba,0x84,0x6b,0xfa,0x70,0x02,0xf4,0xd3,0xb8,0x21,0x88, - 0x9a,0xf2,0xe7,0xfc,0x18,0x4e,0xbf,0xe0,0xe1,0x26,0x1d,0x7b,0x6b,0x82,0x1b,0x20,0xb0,0xcc,0x8f,0xd9, - 0x15,0xc3,0x51,0xf3,0xb0,0x1e,0x6b,0x13,0xf2,0x4b,0xfd,0xf1,0x41,0x7d,0x00,0xe8,0x96,0xe6,0x52,0xbc, - 0x34,0x8e,0x9e,0x97,0x38,0x0b,0x13,0x85,0x23,0x2e,0xe1,0xd6,0xd5,0xfa,0xbe,0xb0,0xbe,0x97,0xd6,0xb7, - 0xfb,0x21,0xbc,0xb4,0xd1,0x9c,0x4f,0x08,0xf4,0xd1,0x21,0x9d,0x99,0x65,0x37,0xfc,0xe0,0xd7,0x1a,0x3f, - 0xae,0x11,0x0b,0x87,0xfe,0x12,0x58,0x6a,0xe9,0xad,0x97,0x2c,0xae,0xa4,0x5c,0x42,0xa5,0xb0,0x24,0x37, - 0xe8,0xf7,0xb8,0xc2,0xc0,0xc7,0xac,0x76,0x0a,0xbf,0x42,0x09,0x90,0x61,0x03,0x3f,0xc7,0xda,0x64,0x76, - 0x9d,0xbb,0x2c,0x5c,0x92,0xc0,0x21,0xd3,0xcc,0xb7,0x1e,0x28,0x6a,0x57,0xa6,0x25,0x92,0xb1,0xef,0xce, - 0x4d,0x69,0xcc,0xe6,0x35,0xea,0xb7,0x41,0xd1,0x16,0xe0,0x6a,0x2d,0xfb,0x71,0x78,0x54,0xb9,0xfe,0x06, - 0xbe,0x0f,0x0c,0xba,0x2f,0x14,0x3e,0xb3,0xee,0xd2,0x08,0xd6,0xb0,0xf2,0x0c,0xc4,0x31,0x97,0x10,0x28, - 0xe4,0x03,0x5e,0x3f,0xfb,0x2f,0xe1,0xe5,0x1d,0x2e,0xb4,0x69,0xed,0x16,0x88,0x7c,0x50,0x63,0x7b,0x2a, - 0xfd,0x67,0xc2,0x92,0x42,0x0f,0xc7,0x36,0x39,0xac,0xa5,0x9e,0x08,0x88,0xfa,0x67,0xa6,0xd5,0x29,0x53, - 0xa5,0x46,0x29,0x5f,0xa1,0xfc,0x31,0xa7,0xe3,0x5f,0x99,0x2f,0xdb,0xc8,0x27,0x00,0x04,0x8c,0x89,0xa4, - 0x07,0x77,0x31,0x22,0x88,0xb4,0x5e,0x7a,0xfe,0x55,0xf2,0x04,0x08,0x91,0x62,0x7c,0x57,0x34,0x76,0x90, - 0x83,0x3b,0xca,0xb5,0x3e,0xfb,0x5a,0x9c,0x84,0x57,0x9e,0x68,0x3a,0xeb,0x27,0x6b,0x24,0x4f,0x44,0x33, - 0x7b,0x52,0x17,0xc9,0xd2,0x74,0x21,0xf9,0x3b,0x78,0x1f,0x2d,0x23,0xbb,0x6c,0xad,0x10,0x8d,0x1e,0xe1, - 0x69,0x3d,0xee,0x90,0x16,0xe1,0x9c,0x7d,0xc4,0x73,0x6c,0x4a,0x63,0xa1,0x4d,0xab,0x31,0x7d,0x74,0x66, - 0xb8,0x83,0x29,0x2d,0xc7,0x55,0x78,0x96,0x9d,0x4c,0x87,0x2e,0x34,0x6d,0x57,0x2b,0x76,0xba,0x02,0x75, - 0x5d,0xf3,0x0c,0xb9,0x0c,0xaf,0xf0,0xe8,0x06,0xd1,0x1f,0x9a,0x5e,0x82,0xca,0x66,0xe3,0x83,0xab,0x8a, - 0x25,0x39,0xf4,0x98,0x27,0xb9,0xb2,0x78,0x12,0xbc,0x58,0xb6,0xc6,0x35,0x36,0xb2,0x36,0xe3,0x04,0xd3, - 0x0e,0xd9,0x68,0x5e,0x5d,0x2d,0xdc,0x5d,0x6a,0xef,0x34,0x65,0x3f,0xa7,0x01,0xc3,0x77,0x8f,0x42,0x6e, - 0x56,0x6b,0x94,0x28,0x61,0x4a,0x04,0xd7,0x35,0x94,0x80,0x1a,0x05,0x25,0x3a,0xe9,0x5a,0xfb,0xd9,0xa4, - 0x79,0xb0,0x55,0x14,0xcb,0xfc,0x42,0x0e,0x23,0x7c,0xe5,0x05,0x57,0xd5,0x5b,0x29,0xe5,0xfe,0x58,0x52, - 0x5a,0x4b,0x3c,0x59,0xeb,0x4d,0x57,0x5d,0xdd,0x31,0x1e,0x55,0x4b,0x3c,0x42,0xc6,0xf2,0x08,0x59,0xaa, - 0x47,0xc8,0x78,0xad,0x4c,0xaf,0x5b,0x9e,0x78,0x45,0xc9,0x59,0x3d,0x4f,0x7a,0x35,0x4d,0xa7,0xea,0xc1, - 0x57,0x6b,0x3b,0xa9,0x77,0x4b,0xb8,0xd9,0xc5,0xa0,0x4c,0x73,0x17,0xb2,0x55,0xe0,0xf0,0xb9,0xc1,0x0b, - 0x66,0xf6,0x79,0x2f,0x7e,0x2a,0x79,0x83,0x69,0x25,0x07,0x7a,0xf7,0x57,0xab,0x9c,0x46,0xca,0xd0,0x22, - 0x0d,0xd2,0xee,0xf3,0x17,0x55,0xfd,0x1e,0x8f,0x0d,0x3c,0x78,0x9d,0xa9,0xe6,0x70,0xb5,0xf6,0x82,0x9c, - 0xba,0xa1,0x13,0xb9,0x63,0x41,0x19,0x4c,0x86,0x36,0x9a,0x19,0x53,0xb9,0xf9,0x96,0xa3,0x69,0x4e,0x24, - 0xc7,0xd7,0xd3,0x66,0xe8,0x31,0x87,0xd6,0x03,0x2c,0x6b,0x39,0x2f,0x25,0xf4,0x69,0x63,0xb2,0x39,0xec, - 0x7f,0xdd,0xca,0xd3,0x0d,0x91,0xf0,0x7b,0x7b,0x73,0x1e,0xff,0xf7,0x78,0x17,0xe4,0xb1,0x8e,0xeb,0x63, - 0x1d,0xaf,0x2b,0x69,0xfc,0x55,0x0f,0x56,0x0a,0xec,0xf5,0x8b,0x43,0x89,0xcb,0x4e,0x1f,0xa9,0x2b,0x59, - 0x72,0x45,0x82,0xb8,0x5a,0xdd,0x73,0x94,0xa4,0xc1,0xb9,0xd7,0xa7,0x2e,0x6b,0x61,0xde,0xea,0xbf,0xd9, - 0x94,0xe0,0xe4,0x66,0x18,0x5e,0x89,0xb5,0x75,0x35,0x3e,0x41,0x14,0x57,0x7c,0x4a,0x54,0x58,0xb6,0xfe, - 0x6c,0x90,0x02,0xae,0x5c,0x7e,0x27,0xd2,0x05,0x10,0x5c,0x2c,0x6d,0xd1,0xa9,0xcf,0x4e,0x32,0xc3,0xd4, - 0x0d,0xfd,0xd2,0xf2,0x8b,0x75,0xb2,0xe1,0x0c,0x8b,0x4a,0xf4,0xe9,0x6e,0x7d,0x10,0xb2,0x99,0x8f,0xe0, - 0x8b,0x8e,0x23,0xbf,0xd8,0x8f,0xc2,0xce,0x08,0x5a,0xd6,0xd5,0xd8,0xb0,0x9c,0xbe,0x69,0x3f,0x3c,0x22, - 0xaa,0xa0,0xde,0x5f,0x2a,0x9e,0xb6,0x71,0x13,0xd5,0xde,0x01,0x74,0x44,0xb1,0x97,0xa9,0xfd,0xb8,0x24, - 0xae,0x4c,0x80,0xb7,0x92,0x0a,0x25,0xcd,0x2b,0x3f,0x1c,0xb0,0xe9,0xf6,0x8c,0xb9,0x9b,0xed,0xaf,0x88, - 0xae,0xbf,0x11,0x82,0x3d,0xca,0x23,0xcf,0xc0,0xa9,0xd8,0x23,0xa2,0x60,0x13,0x4f,0x9b,0xa9,0x30,0xd2, - 0x64,0x37,0x05,0xb0,0xa5,0x8e,0x83,0x1f,0x70,0x0d,0x04,0x6c,0x9d,0x29,0x63,0x1e,0xd0,0x7c,0x21,0xee, - 0xc3,0xd8,0x0a,0x9e,0xfd,0x0e,0xbb,0xeb,0x73,0x9b,0xca,0xb9,0x72,0xb0,0x6e,0xb2,0x41,0x9c,0xb9,0x37, - 0x99,0x17,0xfc,0x33,0x61,0x2e,0xbe,0x62,0x22,0x8c,0xbf,0x37,0xdf,0x62,0x4d,0xe9,0x9f,0x11,0xbc,0xf6, - 0x46,0x45,0xf9,0x02,0x74,0x01,0xb0,0x11,0xc7,0xee,0x89,0x47,0xb8,0x8f,0xbc,0x5b,0xda,0xd3,0x5c,0x48, - 0x06,0xef,0x31,0x9e,0xa1,0x14,0x21,0x9d,0x19,0x5a,0x61,0x04,0xc3,0x5c,0x5f,0x51,0x50,0x0d,0xe4,0x94, - 0x69,0xf5,0xc4,0x59,0xf8,0x7d,0xec,0xda,0x1e,0x90,0xfb,0xaa,0x82,0x3c,0xd4,0xcc,0xe4,0x81,0x4a,0xb5, - 0x7d,0xeb,0xfc,0xc7,0xb9,0xa8,0x09,0x3a,0x50,0x98,0xa0,0x01,0x26,0x5d,0x8b,0x2a,0xd7,0x17,0xd4,0xe8, - 0x51,0x65,0x60,0xd1,0x32,0xac,0x8f,0x0e,0x8a,0x4f,0x15,0xd4,0xf9,0x60,0x86,0x14,0x29,0x71,0x17,0x94, - 0x12,0xcb,0xec,0x32,0x4e,0x8b,0x00,0x76,0x4e,0x58,0xb4,0x41,0xaa,0x29,0x43,0x18,0x7e,0xde,0xf7,0xad, - 0x5a,0x4c,0xa1,0xa8,0x1f,0xba,0x1a,0x14,0xb5,0xf1,0x21,0xef,0x5d,0x84,0x15,0x03,0x81,0xd6,0xb8,0xda, - 0x4f,0x0d,0xc0,0xe9,0x89,0x05,0xe3,0x0c,0xcc,0xb0,0x68,0xb3,0x3a,0x7b,0x60,0x1a,0x51,0x51,0x92,0xd9, - 0x06,0x7c,0xc3,0x33,0x7c,0xf3,0x60,0xd6,0x2b,0xfb,0xc6,0xb4,0x2d,0xd8,0x39,0x64,0xa3,0x08,0x3f,0x87, - 0x57,0x35,0xd9,0x05,0x44,0x2c,0x56,0x02,0x26,0x48,0x8a,0xaf,0x92,0x3f,0x63,0x96,0xef,0xb0,0x16,0x37, - 0x5c,0xeb,0xb8,0xcf,0xb2,0xf0,0xfb,0x8c,0x28,0x07,0xfb,0x29,0x0a,0xe4,0xc2,0x93,0x0c,0x50,0xd1,0x94, - 0xdb,0x9a,0x4b,0x04,0x86,0x3b,0xe2,0x3d,0x46,0xd5,0x0c,0xef,0x83,0x30,0x18,0x85,0xa5,0xa7,0x4e,0xb1, - 0x8b,0x23,0x3d,0xe2,0x1f,0xc4,0xe3,0xb8,0x3b,0x23,0x75,0xe5,0x8e,0x60,0x8e,0xa0,0x94,0x44,0xa9,0x2f, - 0xa8,0xe7,0xe0,0xdf,0x09,0x82,0x7c,0x2d,0x53,0x97,0x2d,0xa8,0xc0,0x15,0x3d,0xc9,0xcc,0xf7,0xa6,0xc1, - 0xa7,0x31,0xf7,0x64,0x15,0x28,0x1d,0x09,0x42,0xf9,0x81,0x36,0xce,0x82,0xb8,0x7a,0xcd,0x7c,0x00,0xdd, - 0x54,0xd6,0xa0,0xc6,0x4b,0x0c,0xc1,0x12,0xf5,0xa8,0x2c,0xc9,0x10,0x34,0x90,0x12,0x7a,0x08,0x0d,0x73, - 0x43,0xeb,0xe3,0x01,0x9a,0x8e,0x0c,0x7e,0x12,0x4b,0x05,0x1a,0x9d,0xb6,0x4a,0x74,0x80,0x7f,0x1d,0x6d, - 0xa6,0x28,0xc6,0x5f,0xf8,0xa1,0xb1,0xc9,0x89,0x93,0xa4,0x20,0x25,0xf7,0xcd,0x30,0xb5,0xa5,0x82,0x2d, - 0xf9,0x84,0xcd,0xda,0x86,0xa3,0x40,0x1d,0x86,0x5a,0xa4,0x76,0x56,0x01,0xd0,0x7f,0x70,0xb4,0xe2,0x27, - 0x6a,0xf9,0x61,0xa4,0xa4,0x77,0x62,0xe7,0x88,0xa9,0x73,0x22,0xa4,0x27,0xcf,0x32,0x5a,0x67,0x7e,0x21, - 0xa8,0x02,0x8d,0x12,0xca,0x44,0x64,0x51,0x3b,0x53,0xf7,0x97,0x3d,0x8a,0x2a,0x57,0x5a,0x45,0xa3,0x10, - 0x5c,0x27,0xf1,0xe5,0x44,0x3d,0xc3,0x12,0x6e,0x4b,0xcf,0x0c,0xca,0xa3,0x35,0x84,0x34,0x36,0xb0,0x28, - 0x07,0x06,0x8d,0x75,0x34,0x55,0x61,0x45,0x91,0x89,0xbb,0x3f,0x93,0xf6,0x22,0x25,0xe2,0x3b,0x4c,0x15, - 0x07,0x46,0x09,0xc2,0x61,0xd4,0x96,0x88,0x8a,0x0b,0x78,0x37,0xd2,0x57,0xab,0x07,0xb5,0x64,0xf6,0xd3, - 0xce,0x3e,0x22,0x14,0x6e,0x01,0xef,0x65,0x7a,0x82,0x03,0x62,0xa6,0x5d,0x2c,0x80,0x96,0xb4,0x23,0xbf, - 0x6a,0xc3,0x2c,0x21,0x51,0x74,0x7e,0xd2,0xb2,0x5d,0xf9,0xa3,0x84,0xa9,0x3c,0x88,0x84,0x2d,0xdf,0x8e, - 0x7e,0x0a,0x26,0xbf,0x64,0xd8,0xeb,0xff,0x7b,0x1b,0x13,0xbb,0x5b,0xf6,0x84,0xe3,0x16,0xb8,0x29,0xd4, - 0xc2,0x15,0x42,0x26,0x44,0x99,0xba,0x49,0x15,0xb2,0xfc,0x96,0x2e,0x80,0xc0,0x18,0x5d,0x66,0x3a,0x40, - 0x6d,0xe3,0x11,0x85,0x32,0x1a,0x29,0xeb,0x7a,0x48,0x3f,0xb3,0xa7,0xa5,0x6b,0xa9,0x61,0xd4,0x8d,0x30, - 0x63,0x28,0x0c,0xb2,0x29,0xa5,0xf8,0xfe,0xc9,0xe5,0x5d,0xaa,0x7e,0x9b,0xb9,0xe5,0x20,0x0b,0x12,0x4f, - 0x7b,0x3d,0x5d,0xa3,0xb1,0x54,0x4b,0xd2,0xd9,0x6b,0x8f,0xfa,0x0e,0xab,0x47,0x28,0x7e,0x25,0xd7,0xcf, - 0xe7,0xa6,0x30,0xc4,0x6b,0x35,0x3b,0x65,0x38,0x88,0xb4,0x5f,0xa7,0x1a,0xa3,0xb3,0x32,0x09,0x23,0xb3, - 0xc1,0xa8,0x5d,0xdf,0x12,0xd1,0x44,0x78,0xa5,0x4c,0x3d,0x47,0x75,0x84,0x43,0x4e,0x17,0x77,0x15,0xb3, - 0x4d,0xa7,0xd0,0xc5,0x17,0xc1,0xfd,0x7d,0x34,0x14,0x4c,0x5e,0x84,0xbb,0x19,0x47,0x38,0xd7,0x92,0xfb, - 0xa2,0x17,0xe7,0x79,0x46,0x9c,0x41,0x42,0xe7,0xa6,0x4c,0xe6,0x45,0x98,0xf9,0x85,0xc2,0x3f,0xb7,0xd0, - 0xf1,0x48,0x66,0x71,0x50,0xfa,0xea,0xeb,0x38,0xfb,0x4e,0x2d,0x55,0x01,0xc1,0x07,0x35,0xd4,0x6a,0xe5, - 0x5a,0xd3,0x88,0x49,0xb0,0xa2,0x62,0xc3,0x4c,0xa4,0x32,0x2f,0xb8,0x7a,0x97,0xea,0x58,0x16,0x08,0xf5, - 0xa7,0x88,0x81,0x32,0x39,0xb2,0xd3,0xbc,0x2e,0xb1,0x26,0xbc,0x69,0x70,0x8a,0xa6,0xb5,0x17,0xe1,0x53, - 0x4f,0xb9,0xd7,0xe3,0xdd,0xf3,0x41,0x3e,0xd2,0xb5,0x4d,0xfb,0x6b,0x66,0xa8,0x23,0x24,0x23,0x92,0xa2, - 0x02,0xae,0x51,0x85,0x26,0xaa,0x67,0xba,0xa8,0x99,0x52,0xd7,0xc3,0xab,0x24,0x38,0x13,0xf4,0x35,0x82, - 0x8e,0x02,0xfa,0x0f,0x0b,0xba,0xdd,0xb4,0xf5,0xce,0xda,0x73,0x7f,0xcc,0xbc,0xde,0xe6,0x7a,0x11,0xe4, - 0x45,0xe1,0xce,0x0e,0x3c,0xd5,0x8f,0x53,0x17,0xef,0x4d,0x99,0xfd,0x9b,0xb8,0x89,0x28,0x6a,0xb5,0xbb, - 0x61,0x53,0x27,0x63,0x58,0x07,0x4c,0x63,0x94,0x4d,0x68,0x00,0x45,0x14,0xb6,0x18,0x4f,0xe9,0xe2,0x77, - 0xdb,0x55,0x01,0xd5,0xb1,0x51,0x15,0x77,0x03,0xc5,0xd1,0x9a,0x79,0x27,0x91,0x91,0x76,0x92,0xfe,0xd0, - 0x41,0x96,0x37,0x63,0x86,0xd6,0xa2,0x89,0xb3,0xcb,0x02,0x1d,0x71,0xda,0xa8,0xef,0xf6,0xf4,0x75,0x23, - 0xf2,0x50,0x56,0xb6,0xe4,0xed,0xae,0x02,0x0b,0xe6,0x9e,0xf3,0x37,0x21,0x4d,0x4d,0x54,0x04,0xa6,0x0e, - 0xa2,0x08,0x62,0x02,0xe3,0x6a,0x6b,0xc7,0xf2,0xcc,0x65,0x0f,0x25,0x67,0xba,0x51,0x2f,0x92,0xf0,0xa3, - 0x5c,0x7f,0xc3,0x2a,0x35,0x5b,0x94,0x35,0x8f,0x70,0x1d,0x2b,0xe9,0xe3,0x86,0x7a,0xa2,0x4f,0x6d,0xf6, - 0xa5,0xe1,0x2e,0xba,0xb2,0xcf,0x64,0x36,0xde,0xde,0x33,0x2c,0xb3,0xcc,0x5c,0x5d,0x9e,0x39,0xdc,0xe4, - 0xdd,0xb6,0x0a,0x8b,0x92,0xe8,0xa3,0x82,0xa1,0x0c,0x71,0xaa,0xf4,0xf9,0x08,0x52,0xeb,0xb0,0x68,0x7a, - 0x0d,0xa9,0xfa,0x73,0xad,0x82,0xb8,0x43,0x03,0x4d,0x1d,0x03,0xe8,0xa0,0x35,0x60,0xbe,0xaf,0xf7,0x2b, - 0xcc,0xd8,0x10,0xb4,0x71,0x44,0x2a,0x73,0xfc,0x48,0xc5,0xe1,0x86,0x93,0x0d,0x7e,0x06,0x15,0x7b,0x4a, - 0x86,0x7b,0x9a,0x13,0xfd,0x5a,0x7b,0x0d,0xf3,0x03,0x47,0xe2,0x83,0x59,0x61,0x5f,0xf9,0x61,0x1a,0xbc, - 0xc5,0x22,0x95,0xe8,0x8d,0x63,0x42,0x5c,0x2a,0x53,0x70,0xdb,0x40,0xfe,0xf4,0x54,0xd1,0xb0,0x74,0x5b, - 0x03,0xc8,0x4a,0x6d,0x88,0x86,0xf1,0xb7,0x17,0x5d,0x8d,0x07,0xf2,0x49,0xd4,0x60,0x10,0xf7,0x7e,0x5d, - 0xc4,0x2f,0x8e,0xbe,0x4e,0x51,0x7b,0xdd,0x08,0x30,0x4d,0xc3,0x5a,0x10,0x80,0x00,0x04,0x69,0x68,0x7d, - 0x8b,0x34,0x90,0x31,0xb7,0x8c,0x0c,0x8f,0xee,0x19,0x5b,0x27,0xa9,0x2f,0xc6,0x63,0xae,0x73,0xb2,0x5c, - 0xc4,0xfb,0x09,0xf5,0x33,0xec,0x38,0x5d,0xb8,0xd1,0xde,0xdb,0xab,0x15,0xe0,0x1b,0x7c,0x74,0x69,0x3b, - 0xd2,0x2e,0x1b,0x01,0xef,0x84,0xc3,0xda,0x5c,0xa8,0xaa,0x86,0x8d,0x88,0x96,0xca,0x59,0x12,0xce,0xed, - 0x55,0xed,0x4d,0xb5,0x11,0x45,0x0f,0x61,0xf4,0x4c,0xec,0x08,0xab,0xb1,0xc4,0x8e,0xfd,0x2d,0xa2,0x3d, - 0xf3,0xba,0x6f,0x68,0x3d,0x08,0x13,0x20,0xd8,0xab,0xb2,0x40,0xe5,0xa9,0xd3,0x0c,0x7d,0xbe,0x84,0xff, - 0xe8,0xb3,0xc0,0x32,0x07,0xcd,0x42,0x96,0x6c,0x73,0x4e,0x44,0x6c,0x5d,0x81,0x95,0x13,0x07,0x09,0x1b, - 0x15,0x06,0x1b,0xc7,0x3f,0xe6,0x18,0xf2,0x78,0x6e,0x41,0xb1,0xe0,0xbe,0xd5,0x20,0x0b,0xf6,0x3e,0x5a, - 0xdc,0x77,0xd1,0xe7,0x51,0x5b,0x9f,0x94,0xa8,0x5e,0x6d,0xf8,0xd3,0xbf,0x25,0x02,0x25,0xa2,0xfb,0x2d, - 0x17,0x4b,0x24,0x3a,0x6f,0x96,0xb7,0xcf,0xac,0xb2,0xd3,0xc6,0x8e,0xa8,0x4e,0x0d,0x0c,0xc4,0x35,0xdd, - 0x2c,0xa3,0x6f,0xc0,0x9e,0x9b,0x94,0x36,0xc3,0xca,0xb2,0x81,0xe4,0xbb,0x52,0x0b,0x03,0x68,0x95,0x11, - 0x84,0xb0,0x17,0x9d,0xf3,0x93,0x61,0x76,0x52,0x86,0xf7,0x59,0xa9,0x93,0x86,0x96,0xd2,0xb2,0x3c,0x3e, - 0x1a,0x1c,0x05,0x87,0xc1,0x51,0x90,0x0e,0xb8,0xdc,0x55,0x02,0xf7,0xbf,0xf7,0xbd,0xe0,0x70,0x38,0xc8, - 0x58,0x9a,0xc3,0x3c,0x54,0x60,0x6d,0x64,0x64,0x6d,0x39,0x33,0x9d,0x1c,0xbf,0xbb,0xc9,0x7f,0xd6,0x7c, - 0xb8,0x17,0xb6,0xf0,0xc8,0xda,0x77,0x73,0xa9,0x0b,0xb9,0x44,0xfc,0xc9,0xa3,0x0d,0x98,0x48,0x34,0x2d, - 0x9e,0x49,0x6c,0x1d,0x7e,0x34,0x54,0xa1,0x47,0x32,0xed,0x66,0x22,0x34,0x01,0x32,0xd4,0x7b,0x02,0x3a, - 0x63,0xca,0x25,0xf3,0x46,0x84,0x5e,0x66,0x61,0xe4,0x4f,0x05,0x82,0xe1,0x74,0x91,0x5d,0x89,0x66,0x20, - 0x55,0x06,0x4c,0xb5,0x14,0x4c,0xbc,0xf8,0x9c,0x12,0x70,0x0a,0x7f,0x2a,0x3a,0xde,0x37,0xf0,0x96,0xd7, - 0xe3,0x0d,0x30,0xf1,0xb7,0x60,0x6f,0xd9,0xf0,0xd8,0xac,0x7c,0xbb,0x99,0x22,0xb3,0xca,0x57,0x2f,0x8f, - 0xdf,0x8f,0xfa,0x0b,0x8e,0xed,0xc0,0xee,0x80,0x10,0x90,0xd9,0x78,0xa2,0xf7,0xb3,0xde,0x99,0x40,0x08, - 0x3c,0xa0,0xf4,0x76,0x71,0xb2,0x7b,0x92,0x50,0xf9,0x65,0xee,0xc0,0x90,0x37,0x17,0x9f,0xb0,0xd8,0xc3, - 0xca,0x4e,0x5c,0xb1,0x46,0xbc,0xc3,0xf0,0x22,0x29,0x1e,0x7c,0x12,0x22,0xb9,0x33,0x5d,0x08,0x02,0x3f, - 0x5a,0x2e,0x45,0xed,0xa4,0x5e,0xe5,0x53,0x87,0x4a,0x97,0xf9,0x8d,0x5a,0xbe,0x66,0xe4,0x23,0x22,0x72, - 0xea,0x49,0xd2,0x36,0xd1,0x7b,0x85,0x81,0x4a,0xad,0x8d,0x10,0x9a,0x07,0x73,0x08,0x02,0x84,0x75,0x34, - 0xb8,0xcf,0x0e,0x1e,0x0c,0x56,0x28,0xe7,0x60,0xca,0xd2,0xd8,0x6a,0x55,0x54,0x2c,0xaa,0x68,0x44,0xd8, - 0x7c,0x28,0x8d,0x62,0x56,0x4b,0xa8,0x68,0xca,0x51,0xd5,0xf7,0xcc,0xf4,0x3d,0xda,0xe8,0xdb,0xea,0x39, - 0x25,0xa0,0xd6,0x4e,0xdc,0xd6,0xac,0xde,0x54,0x69,0xba,0x11,0x17,0x4c,0xfc,0x83,0x32,0xf2,0x48,0x8d, - 0x57,0x31,0x70,0xdf,0x95,0xe2,0x43,0x15,0x16,0xc2,0xa2,0xfd,0x8d,0xeb,0x39,0x03,0x29,0x83,0x1d,0x22, - 0x19,0x78,0x1f,0x21,0x9a,0x76,0x9d,0x34,0x2b,0xe9,0x0e,0x4a,0x8a,0xb2,0xa3,0x2e,0x88,0x4e,0xa2,0xfc, - 0xf3,0x00,0x4a,0x29,0xcd,0xfc,0x76,0xa0,0x55,0xcc,0xbe,0xa1,0xeb,0x95,0xea,0x15,0x70,0xe3,0x77,0x54, - 0xa7,0x52,0xc3,0x0e,0x09,0x51,0xd6,0xc0,0x4e,0x8c,0x59,0x68,0x77,0x64,0x66,0x8b,0x70,0x03,0xb1,0x11, - 0x3c,0xce,0xbc,0x41,0x14,0x66,0x81,0x38,0x03,0x85,0x16,0x7b,0x8f,0x03,0x2f,0x16,0x40,0x25,0x0c,0x88, - 0x44,0xea,0x66,0x3d,0x3a,0x9e,0x74,0xaf,0xdf,0x22,0x2b,0x88,0x7c,0x85,0xd4,0x60,0x2e,0x3a,0x2d,0x60, - 0x5a,0xe4,0x4f,0xc2,0x85,0xd4,0x1b,0xd3,0x87,0xaa,0x37,0xa7,0x4f,0x14,0x60,0xbf,0x55,0xab,0xd5,0x78, - 0xb5,0x9a,0x83,0x14,0x9b,0xc8,0xf8,0xf8,0xc1,0xc5,0x9f,0xfa,0x37,0x90,0x2b,0xaa,0x45,0x2c,0x7b,0x67, - 0xcb,0x52,0x49,0x3f,0x75,0x14,0x3b,0x77,0x1a,0xde,0xc8,0x82,0x7a,0xbd,0x52,0xc5,0x1c,0x99,0xfa,0x27, - 0x13,0xe3,0x51,0xd2,0x5d,0x86,0x73,0xff,0x0a,0x37,0x8b,0x7b,0x11,0xc2,0x47,0xd2,0x95,0xf0,0x55,0x17, - 0x9e,0xbf,0xa4,0x19,0xd5,0xc1,0x78,0xc9,0xee,0xdf,0x97,0x5e,0x55,0x6c,0xe9,0x41,0x49,0x01,0x04,0x94, - 0x3e,0x89,0x37,0xb5,0x73,0xa8,0x88,0x3b,0xd7,0xd1,0x81,0x73,0x3b,0xff,0x85,0x89,0xfe,0x17,0x76,0x63, - 0xb9,0x5f,0x76,0xaa,0x20,0xd6,0x4a,0x6a,0xad,0xf6,0xaf,0x58,0xcc,0x41,0x4e,0x74,0xc4,0x76,0x46,0x6c, - 0xc9,0x6a,0x81,0x36,0xf8,0x40,0x57,0x37,0xa6,0xb0,0x63,0xf8,0x52,0x67,0xc2,0xa1,0xfd,0x71,0x8c,0x1a, - 0x21,0xa8,0x54,0xa8,0x2a,0x32,0xa5,0xda,0x17,0xcd,0x3a,0x00,0x38,0x94,0xf8,0x3a,0xdf,0x1c,0x05,0xf2, - 0xf7,0x81,0xfc,0x7d,0xf8,0x95,0xfc,0x7d,0xf0,0x50,0xfd,0xfd,0x46,0xa5,0x7f,0x1d,0x98,0xc0,0x60,0x52, - 0xe1,0x4b,0x55,0x40,0x55,0x78,0xf8,0x65,0xa0,0xf5,0x83,0xc7,0xd0,0x55,0x97,0x52,0x0f,0xee,0xab,0xe6, - 0xe5,0xcf,0xd1,0xa1,0xfa,0xab,0x7a,0x3b,0xfa,0x4a,0x25,0x7c,0xf5,0xe5,0xfd,0xbf,0xab,0x32,0x5f,0xdf, - 0xd7,0x95,0xe8,0xeb,0x81,0x6e,0xf4,0xba,0x70,0xcc,0x03,0xdc,0xe3,0xf0,0x9b,0xbf,0x13,0xab,0xf1,0x28, - 0x3c,0xba,0x7f,0x7f,0xb5,0xa2,0x9f,0x5f,0x7d,0xc9,0x3f,0xbf,0x39,0x1c,0xa8,0xce,0x03,0x4a,0x7c,0xf8, - 0x0d,0x27,0x7e,0xf9,0xf7,0x81,0x23,0x96,0x0c,0x4e,0xe0,0xf0,0xc3,0x4b,0x4b,0xa0,0x10,0xe5,0x2b,0x2f, - 0xd4,0x02,0x40,0x1d,0xdc,0xde,0x39,0x74,0x76,0xac,0xd0,0xc2,0x87,0x90,0x77,0x25,0xc5,0xeb,0xe8,0xb5, - 0x84,0x4c,0x83,0xc4,0xda,0xff,0x4e,0xbd,0x27,0x7a,0x03,0xc2,0xb1,0xc4,0x4c,0xc2,0xec,0xc4,0x5e,0x71, - 0x4f,0x49,0x54,0x4c,0x52,0x69,0xe4,0x9b,0xd4,0xdc,0x83,0x87,0x3b,0xac,0x4c,0xf6,0xe0,0x1b,0xfc,0x1d, - 0xe0,0x7d,0x54,0xa9,0xf0,0xf8,0x70,0x2d,0xee,0x7c,0xe1,0x74,0x13,0xe5,0x15,0xd7,0x5f,0x6a,0x94,0x56, - 0xb1,0x4d,0xda,0xff,0x05,0x41,0xb1,0x73,0x22,0x74,0x59,0x47,0xb9,0xaa,0x73,0xfc,0xe9,0x66,0xf9,0x8b, - 0xa8,0x78,0x73,0x9d,0xea,0x48,0x77,0x74,0x82,0xda,0x28,0xc8,0x17,0x69,0x39,0xb3,0xa2,0x75,0xe1,0x67, - 0xef,0x39,0x42,0xcb,0x24,0x57,0x31,0x51,0xf7,0x57,0x51,0x09,0xe5,0x85,0x4f,0xac,0x28,0x6e,0xf4,0x54, - 0xb5,0xb3,0xf0,0x56,0x1c,0x59,0x3c,0x6b,0x44,0x89,0xac,0xf9,0x15,0xb2,0x39,0xb4,0xb8,0x87,0x03,0x15, - 0xca,0x1f,0x7e,0xb2,0x3b,0x3b,0xc3,0xe7,0xe0,0x76,0x1d,0xe8,0x90,0x40,0x7c,0xc2,0x6f,0x4d,0x61,0x83, - 0xf5,0x68,0x44,0xaf,0x54,0xba,0x54,0xf2,0xf4,0xad,0x85,0x48,0x87,0x7d,0x9d,0xda,0xea,0x78,0xa6,0xa4, - 0x1b,0xbe,0xf4,0x2d,0x62,0x25,0x66,0xb5,0x7f,0xfb,0x4e,0x29,0x5b,0x42,0x20,0x4a,0x4c,0x51,0x34,0xca, - 0xce,0x7b,0x5f,0x32,0x1e,0x78,0x15,0x17,0x45,0x34,0xc5,0x55,0x5c,0xca,0x15,0xa6,0x6e,0x11,0xea,0x46, - 0xbc,0x3e,0x9d,0x59,0x73,0xf4,0xab,0x94,0xdf,0x50,0x2a,0x56,0x5e,0xb9,0x64,0xa8,0xd7,0x48,0xc2,0x5d, - 0x00,0x9d,0x62,0xd7,0xb3,0x0a,0xb3,0x52,0xc2,0x28,0x4f,0xce,0x63,0x64,0x3d,0x83,0x51,0x0e,0x0b,0x29, - 0x98,0xab,0x92,0x62,0xba,0x84,0x78,0x62,0x5b,0x57,0x01,0x31,0xd4,0x12,0x8a,0x64,0x9a,0x77,0x20,0xcf, - 0xb2,0x52,0x47,0x99,0xc7,0xb7,0xe0,0xb5,0xcd,0x94,0xda,0x5a,0xf3,0x4b,0x25,0x8f,0x05,0x05,0xc2,0x66, - 0x59,0xb5,0x53,0x58,0xb4,0x2b,0x8e,0xea,0xbb,0x51,0xa2,0xca,0x32,0x65,0x89,0xfe,0x3a,0x27,0xae,0x44, - 0x16,0xb2,0xa5,0x42,0x2d,0x5f,0xd7,0x2a,0x88,0xcb,0x4b,0x45,0xa3,0x74,0xc6,0xa6,0x07,0xbf,0x41,0x90, - 0xb6,0x51,0xb9,0xb5,0x18,0x7b,0xd5,0xad,0x43,0x4b,0x7e,0x27,0xb4,0xe4,0xa0,0x07,0x37,0xa1,0xc5,0x80, - 0x02,0xef,0x7f,0x11,0xe6,0xed,0x1b,0x8f,0x77,0xef,0x57,0x7a,0x13,0xfe,0xdb,0xf6,0xdf,0xb7,0x6e,0x10, - 0xb5,0x6c,0x37,0x29,0x3f,0xcd,0x99,0x1f,0x4c,0xf5,0x8a,0x03,0x3f,0x5e,0xdf,0xda,0x80,0x76,0xab,0x01, - 0xc9,0xea,0xbb,0xda,0xac,0xae,0xf3,0x6f,0xc0,0xd0,0xc0,0xb5,0x16,0x66,0x03,0x82,0xfe,0x8d,0xe9,0x82, - 0xd1,0x96,0x07,0x0e,0x3c,0x8c,0xaa,0x68,0x08,0x6a,0x44,0xf5,0xdf,0x4d,0x98,0xae,0x1d,0x51,0xbb,0xe0, - 0xbf,0x35,0x1c,0xed,0xb7,0xed,0x79,0x33,0xa6,0xac,0x76,0xdc,0x26,0x43,0x73,0x37,0x2a,0xd7,0x46,0xd4, - 0x5b,0xa4,0x1f,0xeb,0x59,0x8b,0x32,0x9b,0x6d,0xb4,0x40,0x59,0xad,0x59,0x95,0xe6,0x36,0x5a,0xb0,0xb2, - 0x74,0x0b,0x35,0xc0,0x68,0x07,0x97,0x66,0x2b,0xb5,0x4c,0x7b,0x24,0x12,0xe3,0x6d,0xbd,0xf6,0xaf,0xb5, - 0x8b,0x55,0xa4,0x56,0x6e,0x17,0xa3,0x19,0xec,0xb3,0xc5,0x11,0x22,0xab,0xa4,0xdd,0xda,0x6e,0x67,0xd5, - 0x0b,0x7e,0x20,0x2e,0x0e,0xd7,0x1c,0x3e,0xbc,0x5e,0x42,0x93,0x61,0x78,0xf2,0xd3,0x84,0xa8,0x5d,0x60, - 0xed,0xf3,0x0b,0x76,0xa1,0x12,0x4f,0x98,0xee,0x33,0x9e,0x5f,0xd7,0x1b,0x9e,0x17,0x6b,0xd4,0x3c,0x0f, - 0x0b,0xc2,0x06,0x89,0x75,0x81,0x90,0xaf,0x95,0x0d,0x19,0xf2,0x2d,0xc0,0x91,0xe0,0x17,0x6e,0x26,0x82, - 0xf9,0x3b,0x7d,0xbc,0xaa,0x18,0x6e,0xa1,0xfc,0x31,0xb1,0x72,0x89,0x84,0x37,0x6e,0x36,0xb3,0xbe,0x08, - 0xd0,0x73,0x21,0xa5,0x11,0x7a,0x43,0x91,0xd2,0x33,0x88,0x9c,0x17,0xc8,0xe0,0xb9,0xb1,0x99,0xe7,0xa4, - 0xc1,0xa1,0x2d,0xbc,0xc1,0x42,0x47,0xe8,0x3d,0x0c,0xec,0x3b,0x6e,0xe1,0x99,0x74,0xd6,0xa9,0x6e,0xb0, - 0x49,0xb6,0xff,0x3c,0x1c,0xa3,0x2a,0xda,0x78,0xa5,0xfd,0x63,0x45,0x20,0xe7,0x21,0x68,0x7e,0xa7,0x0a, - 0x52,0xbe,0xb7,0xe7,0xf0,0x43,0xe0,0x7a,0x5d,0x05,0x4a,0xd8,0xdb,0xcb,0x4c,0xcf,0xc4,0x87,0x8e,0xa9, - 0x75,0xd7,0x79,0x31,0xe9,0xc8,0x2c,0x3a,0x58,0xed,0x4e,0x52,0x74,0xe0,0x1b,0xa6,0x43,0x77,0x40,0x87, - 0xd7,0xba,0xa3,0x62,0xdd,0x17,0x1d,0x18,0x34,0x74,0x2e,0xa2,0x65,0x2c,0x15,0xa4,0x3c,0x15,0xee,0xe1, - 0x8d,0x76,0x73,0xee,0x9b,0x38,0x1d,0xd2,0x95,0x19,0xf1,0x7c,0xf0,0xf2,0xd9,0x5c,0x91,0xb6,0x1b,0x60, - 0x06,0x4f,0x65,0x0b,0xd6,0x9d,0x24,0xce,0xbc,0xbd,0x3d,0x11,0x65,0x8c,0x07,0x0e,0x8c,0xa2,0x9a,0xcb, - 0x12,0x50,0x6a,0xd9,0x9f,0x41,0x92,0x05,0xd9,0xa4,0x72,0xd1,0xef,0x27,0x7e,0xd4,0x4b,0x5c,0x09,0x14, - 0x81,0xa3,0x71,0x1c,0x6e,0x20,0x8a,0x11,0xf5,0x44,0x97,0x4b,0xcb,0x5b,0xc7,0xba,0x7f,0x6c,0xd1,0x7e, - 0x09,0xac,0x01,0xe7,0x19,0x84,0xdb,0xb6,0x9c,0xbd,0x72,0x90,0x6d,0xb5,0x06,0x57,0x70,0x9a,0x2f,0x85, - 0x8a,0xdc,0x47,0xd5,0xed,0xfc,0x1c,0x2e,0x92,0x2c,0x9d,0x3b,0x2d,0x3c,0x8e,0x4f,0xd2,0x6e,0x97,0xe5, - 0x2f,0xce,0xad,0x23,0x5a,0x8f,0x39,0xde,0x08,0xac,0x07,0x79,0x56,0x29,0x71,0x94,0x0a,0x57,0x8e,0x47, - 0x0b,0xb4,0x25,0xc2,0x1b,0xfa,0x10,0xab,0x09,0xd5,0x8e,0xb3,0x66,0xbd,0x93,0xbe,0x97,0x75,0x89,0xee, - 0x36,0xc9,0x22,0x86,0xb8,0x14,0x32,0x3c,0xf3,0x06,0x0e,0x3b,0x07,0x0d,0x3e,0x54,0x09,0x40,0x26,0x63, - 0x22,0xff,0x17,0xe2,0x44,0xce,0xe9,0xeb,0x21,0x48,0xb7,0x99,0xb8,0xaf,0x8e,0xd6,0xa2,0xf7,0xee,0xfc, - 0x0f,0x1e,0xeb,0x80,0xc6,0x0c,0xe2,0x9f,0x76,0x04,0x94,0x3e,0x75,0xe9,0x05,0xf8,0x57,0xb3,0x21,0x77, - 0xce,0xa4,0x84,0x34,0xdd,0x6f,0xac,0x6a,0x98,0xd7,0xe4,0xce,0x66,0xf1,0x69,0x25,0x25,0x52,0x74,0x53, - 0x9c,0xa2,0xa7,0xc3,0x11,0xe5,0x36,0x67,0x82,0xb5,0xd5,0x3f,0xa0,0x47,0x6d,0xde,0x9e,0x78,0xe9,0xfa, - 0x49,0x73,0x53,0x22,0x9a,0x50,0x32,0xd4,0x5c,0x60,0xa4,0xde,0x94,0xc1,0x6e,0xc9,0xf8,0x83,0x5c,0xc5, - 0x3d,0x55,0x1a,0x73,0xa2,0x92,0xca,0xcc,0x9c,0x1a,0x88,0x2a,0x90,0x9e,0x30,0xa5,0x43,0x34,0xbe,0x2e, - 0xeb,0x1f,0x1d,0x7a,0xc3,0x5a,0x05,0x3d,0x5a,0xf9,0x2b,0x6a,0xde,0xa6,0xba,0xaa,0x45,0xf4,0x70,0xd2, - 0xed,0x9a,0x45,0x5d,0x73,0x6c,0x3a,0x79,0xb1,0xba,0x0c,0x0f,0xfe,0x70,0x4f,0xc7,0x5e,0xf7,0xc0,0xff, - 0xc0,0x9f,0xd7,0xf8,0x7c,0x46,0xcb,0xf4,0x24,0x3c,0xf2,0xdf,0x85,0xf7,0xfd,0xdd,0xf0,0x81,0xff,0x86, - 0x7e,0x7f,0x1b,0x3e,0xf4,0xdf,0x86,0x5f,0xfa,0xef,0xc3,0xaf,0xfc,0xe7,0xe1,0xdf,0xfd,0x17,0xe1,0xd7, - 0xfe,0x4b,0x3c,0xb3,0xbd,0x3c,0x79,0x33,0x0c,0x6f,0xaf,0x8b,0x80,0xfe,0xfa,0xcc,0x1b,0x06,0x27,0x0f, - 0xfc,0x67,0x43,0xdf,0x39,0x71,0x82,0x93,0x6f,0x87,0x3e,0x5d,0xf2,0xc1,0xc9,0xf3,0xe1,0xda,0x7f,0x79, - 0x72,0xa4,0x4a,0x1e,0x51,0x6e,0x8f,0x72,0xef,0xb7,0x96,0xba,0xaf,0x4a,0xdd,0xaf,0xb7,0x77,0xa8,0xfe, - 0x0a,0xab,0x29,0x3f,0x50,0xfc,0x01,0x15,0xbf,0xab,0x9c,0xcf,0xbd,0xfa,0x4f,0x74,0xbf,0xfc,0xc5,0x3d, - 0xe3,0x4b,0xfa,0xa6,0x2f,0x34,0xf7,0x2d,0x35,0xe7,0xdc,0xa3,0xac,0xb7,0xa8,0x77,0xcf,0xb9,0x17,0x9c, - 0xbc,0xaf,0xa6,0xe3,0xbf,0xa3,0xaf,0xa1,0x83,0xc6,0x76,0xa5,0xe2,0x0b,0xb6,0xd2,0x43,0x96,0x0c,0xe7, - 0xad,0xae,0x8f,0x84,0x5a,0x89,0xb7,0xaa,0xc4,0x7b,0x2a,0xc1,0xed,0x6e,0x94,0x40,0x47,0xb2,0x31,0xdf, - 0xb1,0x25,0x33,0x91,0x6a,0xf9,0x22,0x5e,0xb1,0x85,0xe6,0x6a,0x7f,0x70,0x72,0x3a,0xee,0x0d,0xbb,0xab, - 0x7b,0xec,0xba,0xea,0xde,0xca,0x61,0x6f,0x56,0x8e,0x47,0xe5,0x76,0x0f,0xfc,0xd7,0x5b,0xd0,0x56,0x3b, - 0xd6,0x7a,0x6d,0x61,0x2d,0x86,0xb2,0xb7,0x74,0xa9,0xd5,0x50,0x90,0xe5,0xed,0x58,0x1a,0xb2,0x10,0x56, - 0x09,0xdd,0x8a,0xcd,0xd2,0x3a,0x16,0xa6,0x08,0xb7,0x70,0xe0,0x66,0xe1,0xfe,0x11,0x5d,0x8d,0x6f,0x38, - 0x48,0xdd,0x05,0xc0,0x05,0x67,0xe6,0xe2,0xe4,0xc9,0xb0,0x66,0xae,0xa1,0xef,0xa9,0x94,0xd5,0x70,0x04, - 0x7a,0xe1,0x59,0x50,0x32,0x60,0x81,0x7f,0xf2,0xac,0xa5,0x06,0x74,0x99,0x06,0x69,0x98,0x07,0x69,0x97, - 0x08,0x7f,0x2a,0xf4,0xae,0x56,0x08,0x95,0x88,0x32,0x9a,0x10,0xec,0x53,0xde,0x6e,0x2d,0x0f,0xa2,0xae, - 0xc7,0x87,0xde,0x64,0x7f,0x9f,0x86,0xf7,0xad,0x2f,0x45,0xcd,0xc3,0x22,0x46,0xbb,0x83,0x77,0x0c,0x37, - 0x0d,0xe7,0xec,0xe9,0xce,0x48,0x42,0x31,0x76,0xa8,0x4d,0xf6,0x95,0x8c,0x7b,0xc1,0x9e,0xdd,0x67,0xdd, - 0x2e,0xdc,0x1e,0xb2,0x9e,0x0f,0x5c,0x25,0xce,0xf0,0xfc,0xb0,0xd3,0xe0,0xbd,0x39,0xa3,0x7b,0xc4,0xd8, - 0x7a,0x41,0x8d,0xbf,0xa5,0x5b,0xf9,0x1e,0x6b,0x14,0xae,0x56,0xf8,0xfd,0x7e,0x6f,0x8f,0xc0,0x02,0xbf, - 0x35,0x8a,0x41,0xb3,0x84,0xad,0xa9,0xe1,0x6e,0xa9,0xc6,0x88,0x70,0xc8,0xae,0xa7,0xec,0xb2,0xc6,0x50, - 0xe3,0x05,0x9d,0x53,0x84,0x2f,0x4f,0x16,0x43,0x8f,0xf0,0xce,0x6a,0x55,0xb0,0xc2,0xe6,0x6a,0xf5,0x02, - 0xe2,0xe4,0x17,0x5a,0xa3,0x87,0xfb,0x84,0xa3,0x7a,0xdf,0x8d,0xc2,0x8b,0x93,0x8c,0xce,0xe0,0x50,0xe4, - 0x2b,0x66,0x2d,0xe9,0x3b,0xa3,0x43,0xe7,0x0d,0xca,0x20,0x97,0xe9,0x13,0xff,0xe3,0xd5,0x1a,0x08,0xc3, - 0xe7,0x7a,0x6c,0x23,0x51,0x53,0x33,0x04,0xa9,0x86,0x91,0x10,0xfe,0x82,0x41,0x76,0xad,0x7d,0x1b,0xc8, - 0xa6,0x71,0x09,0x10,0x63,0xd9,0x6d,0xe3,0x6e,0x84,0x58,0xbc,0xac,0x1c,0xaa,0x56,0x2f,0x2a,0xb9,0xf6, - 0x86,0x6d,0x20,0x14,0x3e,0x66,0xf1,0x76,0x4a,0x97,0x53,0x53,0x02,0xbe,0xb7,0x77,0x68,0x09,0xbb,0x6b, - 0x6d,0x55,0x8a,0x2c,0xda,0x3f,0x36,0x02,0x61,0x2b,0x97,0xd9,0x59,0x5f,0x3b,0xca,0x8e,0x4e,0xe0,0x2a, - 0xdb,0x7a,0xcc,0x80,0x9e,0x98,0x77,0x2b,0xde,0xa3,0x94,0xe1,0x40,0x14,0x8e,0xfc,0xa2,0x42,0xa6,0x91, - 0x9c,0xd6,0x57,0x5b,0x4e,0x4e,0xbf,0xe2,0xff,0xc0,0xb9,0x43,0xb3,0xd5,0xb8,0xf0,0x15,0xe2,0x71,0xb5, - 0x72,0xe2,0x74,0xff,0x97,0x77,0x0e,0x8b,0xc6,0xea,0xbc,0x76,0x95,0x87,0x47,0x25,0xcd,0xe2,0x32,0x79, - 0xa9,0x62,0x8e,0x5b,0xf2,0x22,0x49,0x87,0x5d,0x64,0x6a,0x89,0x83,0x38,0xb5,0xaf,0x5c,0x4f,0x5f,0xc9, - 0x6b,0x9d,0xfc,0xaa,0x44,0x04,0x71,0x25,0x13,0x58,0xad,0xc0,0x28,0x1f,0xab,0x22,0x57,0x49,0x01,0x07, - 0x1f,0xe8,0x5b,0xbe,0x44,0x0a,0xaa,0xbd,0x41,0x43,0x00,0x11,0xb3,0x1c,0xa2,0x96,0x0e,0xae,0x36,0xb4, - 0xf8,0x5e,0x61,0x79,0x77,0x76,0xe4,0x4b,0xf7,0xae,0x26,0xca,0xba,0x4c,0x56,0x61,0x3b,0x5d,0x2a,0xd9, - 0x29,0xba,0x87,0x56,0xd9,0x83,0x41,0x22,0x71,0xbb,0xd4,0x81,0x48,0xdc,0x9d,0x2d,0x59,0xaa,0xdd,0xfa, - 0x82,0xe2,0x19,0x1d,0x84,0xbd,0xe4,0xd9,0x8b,0x5a,0xcf,0x01,0x37,0xc0,0xf2,0x85,0xd7,0x55,0x33,0x51, - 0xe5,0x04,0x80,0x90,0xa0,0x24,0xf3,0x93,0x41,0x03,0xf2,0x15,0x56,0x71,0x77,0xa0,0x89,0x98,0xae,0x56, - 0xb9,0x5b,0x4a,0x83,0xb5,0xe3,0x22,0xb1,0xaf,0xb5,0xa9,0xf9,0x19,0x7c,0xbd,0xfe,0xfa,0xca,0xd5,0x8f, - 0x97,0xa9,0x5f,0x87,0x9a,0x00,0x5e,0x17,0x05,0x54,0x88,0xec,0x6a,0x00,0x49,0x10,0xf9,0x35,0xf0,0x08, - 0xa0,0xbb,0xe2,0xff,0x1c,0xde,0x2e,0xaf,0x82,0xdb,0x75,0x55,0x91,0xbe,0x9b,0x35,0x29,0xa9,0x5e,0xf5, - 0xb6,0xe2,0xf0,0xd6,0xcd,0x31,0xa0,0x2d,0x81,0x19,0xce,0xd4,0xcb,0x86,0x1f,0xad,0x3b,0x40,0x19,0x6b, - 0x7d,0xb9,0xbc,0xb2,0x5d,0x05,0xcb,0x64,0x5b,0x8e,0xd7,0x85,0xf6,0xdd,0x2c,0xed,0xf5,0x1b,0xbf,0x21, - 0x7d,0xa9,0xc0,0x9e,0x76,0x87,0x68,0x48,0x6c,0x0c,0x94,0x5a,0xfd,0x66,0xd9,0x72,0xed,0xdb,0x9d,0xb6, - 0xb2,0xfb,0x9b,0x1e,0x0e,0xea,0x1b,0x5d,0xa9,0x8b,0xd9,0x4d,0x6d,0x91,0x1d,0xd4,0x1a,0xdb,0xa9,0xb3, - 0x30,0xcc,0xed,0xd9,0xb1,0x46,0x52,0xcb,0xfa,0xb2,0x64,0xf4,0x97,0x3e,0xde,0x3f,0xf2,0xe4,0x99,0x79, - 0x04,0x99,0x27,0x94,0x1b,0xdd,0x96,0x31,0xf9,0xcd,0xe1,0xd4,0x64,0x5b,0x4d,0x83,0x49,0x91,0xfd,0xd5, - 0x5c,0x78,0xd3,0xe2,0xf5,0x76,0xb9,0x92,0xeb,0xec,0xa2,0xe9,0x5a,0x2c,0x09,0xdb,0xf0,0xa0,0xb1,0x18, - 0xb6,0x1d,0xc2,0x45,0xab,0x2f,0xe3,0x66,0x15,0x62,0x04,0xd9,0x69,0x79,0x33,0x71,0x23,0x42,0xc5,0xda, - 0xbf,0x1d,0xc7,0xf1,0x5c,0x94,0x8a,0x37,0x67,0xa7,0xc4,0x98,0xf5,0xab,0x7e,0xa7,0x42,0x4d,0x74,0xd0, - 0x2a,0xfc,0xb5,0x71,0xe3,0xc4,0x3a,0xe8,0xc8,0x55,0x7d,0x1d,0x58,0x40,0x66,0x2d,0x86,0x00,0xbe,0xb5, - 0x1a,0xec,0xaf,0x63,0x97,0xd8,0x5f,0x18,0x97,0xe8,0x5c,0xf6,0xa3,0xdf,0x18,0xbf,0x7f,0x9b,0x5c,0x11, - 0xa9,0x9e,0x40,0x36,0x2f,0x53,0xf8,0x19,0x0d,0xd3,0x79,0xb7,0xc7,0xdc,0xd8,0x04,0x14,0xd2,0x67,0x73, - 0x4b,0xd1,0x48,0x01,0x00,0xe5,0x2a,0x61,0x78,0xc1,0x1e,0xbb,0x7f,0x6e,0xde,0x13,0x77,0xd7,0xaf,0x3f, - 0x44,0xe8,0x66,0x6a,0x87,0xff,0xee,0x46,0xec,0x47,0x09,0xdd,0x84,0xac,0xcb,0x1d,0x73,0xd5,0x2f,0x7b, - 0x55,0xf9,0x22,0x2e,0x5b,0x4e,0x1f,0x76,0x03,0xeb,0xad,0x7f,0x55,0xcb,0x1e,0x73,0x67,0x75,0x8c,0x74, - 0x57,0xa7,0xf5,0xd2,0x2d,0xf5,0x3f,0x75,0x10,0xf5,0x6a,0x7a,0x30,0x0a,0x19,0x7e,0x74,0x14,0xaa,0x8c, - 0x5d,0xbc,0xbd,0x53,0x73,0x2f,0xf3,0x30,0x35,0x6e,0xfd,0x68,0xdb,0xa6,0x54,0xbd,0x4a,0x7b,0xfb,0x16, - 0x69,0x80,0xe2,0xad,0x08,0xfb,0xa3,0xbd,0xb5,0xd6,0xd8,0xde,0x54,0xfb,0x28,0xda,0x6f,0xf9,0xb8,0x7e, - 0xe4,0x6d,0x70,0xff,0xd8,0xf6,0xea,0xc3,0xb3,0x59,0xbb,0x01,0xec,0x1f,0x6b,0xa4,0x71,0x90,0x36,0xdb, - 0xaa,0xc1,0xfc,0xc7,0x5a,0xaa,0x9d,0xa5,0x46,0x3b,0xd0,0x14,0x53,0xbe,0x9a,0x6a,0xba,0x9a,0x08,0x69, - 0x65,0x5a,0xca,0x21,0xaa,0x10,0xa8,0x53,0xd0,0xa0,0x84,0xfe,0x1a,0x72,0xe4,0x29,0x9e,0xc9,0xb2,0x13, - 0xd6,0xc2,0x1d,0xc2,0xe4,0x22,0x48,0x1b,0x9d,0x25,0xc5,0x77,0x36,0x25,0xd6,0xe2,0xe8,0x26,0x46,0x78, - 0x45,0xd7,0x42,0x99,0xaa,0xa3,0x1a,0x09,0xd7,0x6c,0xb5,0x5d,0x0c,0x56,0x6a,0xde,0x50,0xe1,0xe4,0x0d, - 0xec,0x0b,0x7d,0x88,0x8a,0xa8,0xaa,0xd3,0x40,0xa5,0x0a,0x93,0x5b,0x27,0xfb,0x67,0x86,0x69,0x98,0x31, - 0x5f,0xc0,0x31,0x74,0x59,0xeb,0x94,0x30,0x72,0xad,0x7d,0x4b,0xcd,0x54,0x3f,0xa6,0xc2,0x28,0x84,0x38, - 0xa6,0x5a,0xb9,0xb5,0x66,0x01,0x37,0x14,0xbe,0x66,0xb5,0xe6,0x46,0xe1,0xcc,0x18,0x03,0x55,0x66,0xcd, - 0xff,0x11,0x38,0x1e,0xfb,0x1c,0x41,0xd3,0x22,0x89,0x4f,0xd2,0x4b,0x9e,0xfa,0x48,0x4d,0x1d,0x16,0x9c, - 0x3a,0x9c,0x0a,0x07,0x10,0x18,0x71,0x72,0x30,0x6a,0xac,0x21,0x2a,0x36,0xf7,0xdf,0x8e,0xfd,0x1c,0xa6, - 0x3e,0x34,0x96,0xc5,0xfb,0xc0,0x81,0xfb,0x1f,0xc1,0xc9,0xe9,0xf5,0xe9,0xfe,0xd9,0xaa,0x37,0xec,0x7a, - 0x07,0xd3,0x4a,0x53,0x7c,0x04,0x55,0x88,0x02,0x3c,0x6a,0xd1,0x78,0x9a,0xe6,0x30,0xcb,0x62,0x21,0x55, - 0x9c,0x8c,0x10,0x9b,0x67,0xa6,0xcc,0xae,0xdd,0xfb,0x55,0xf8,0x2d,0x6b,0x2f,0x79,0x14,0x0b,0x1a,0x85, - 0x93,0x47,0xd7,0x4a,0x80,0xa7,0x56,0x89,0x88,0xce,0x2a,0x51,0x28,0xf1,0x40,0x79,0x5d,0x90,0x56,0x6a, - 0x70,0x06,0x6f,0x03,0xd6,0xb5,0xcc,0x60,0xc5,0xce,0x8b,0x3a,0xdf,0x42,0x19,0x1d,0xe2,0x36,0x31,0xc1, - 0x8e,0xc7,0x1d,0x56,0x4f,0x57,0x5e,0x09,0xc7,0x61,0x55,0xa1,0x3f,0x09,0xc7,0x2a,0xc4,0x09,0x8f,0x6d, - 0xdc,0xb8,0xfa,0x10,0x3e,0x5c,0xc4,0xf3,0xe3,0xe6,0x13,0xe6,0x42,0x2d,0x24,0x31,0x73,0xae,0x9e,0xa6, - 0x75,0xea,0xdc,0x98,0x3d,0xcc,0xe6,0x88,0xc3,0x6e,0x6c,0x95,0x67,0xfe,0xc4,0x0b,0xa2,0x8a,0xed,0xab, - 0x6f,0x96,0xd6,0x30,0x6f,0xf5,0x04,0xd9,0x40,0xaa,0xbd,0xfa,0x8a,0x9a,0xa0,0x29,0x95,0xf6,0x4f,0x58, - 0x0e,0x72,0x65,0x17,0x86,0xc0,0xe6,0x8d,0xbe,0xcc,0x94,0x37,0xb0,0x83,0x3e,0x5c,0xc2,0xcd,0x6e,0x6e, - 0x5f,0xe9,0xc3,0xf2,0xd3,0x94,0x33,0xd2,0x67,0x02,0x84,0x41,0xee,0xb6,0xd5,0x48,0x7d,0xc8,0x66,0x4d, - 0x0d,0x15,0x19,0x7e,0xb4,0x01,0xac,0x1b,0x98,0xca,0x8a,0xfb,0xa4,0xbc,0x09,0x35,0x55,0x08,0xf7,0x1f, - 0xf6,0xa3,0xfd,0xfd,0xce,0xe3,0xc3,0xbe,0x07,0xb5,0x3e,0x4b,0xb7,0x34,0xea,0x3e,0x64,0x1e,0x7c,0xc7, - 0xe8,0xda,0x88,0xb4,0x1a,0x22,0xa5,0x44,0x21,0x36,0xe5,0xa9,0x00,0x7e,0x2c,0xc2,0x91,0x61,0xa5,0x09, - 0x3a,0xd5,0x24,0x2a,0xb8,0x48,0x7d,0xc5,0x98,0x36,0xdf,0xb1,0x01,0xc7,0x6a,0xc9,0xe1,0xc1,0x99,0x15, - 0x40,0xb7,0x43,0xec,0xe2,0xf3,0x21,0x56,0x29,0xb8,0x14,0x16,0xd0,0x56,0x4a,0x52,0x05,0xa1,0x65,0xa3, - 0x24,0x95,0x59,0xa6,0xef,0x1b,0xd0,0x38,0xf3,0x19,0x62,0x1b,0xb4,0x6e,0x1d,0x57,0x37,0x9e,0x0b,0x36, - 0xd6,0xfa,0x08,0x4a,0xbc,0xbc,0xd6,0x65,0x43,0x8f,0x17,0xe2,0x28,0x35,0xd0,0x5c,0x45,0x4f,0x39,0xd3, - 0x63,0xcc,0xf9,0xea,0xc0,0x80,0xd4,0x49,0x6a,0xa1,0x30,0xd9,0x4e,0xda,0x4c,0xa4,0xd4,0x21,0x21,0x9a, - 0x17,0x42,0x0b,0x26,0xd3,0xfa,0xa3,0x9b,0x1b,0x56,0x6e,0xdf,0x30,0xe0,0x18,0x1d,0x2f,0xbd,0x6d,0x9b, - 0xb2,0xbf,0xba,0x4d,0x36,0x9d,0x9f,0x28,0xbb,0x95,0xed,0x7b,0x42,0x27,0x89,0x8e,0x44,0x73,0x4f,0x9a, - 0xb3,0xac,0x1e,0x19,0x07,0x9b,0xd7,0x49,0xc9,0x76,0xb4,0xd6,0xea,0x9a,0x67,0x5a,0xae,0xbc,0x6d,0xa9, - 0x21,0x09,0x08,0x1c,0xa7,0x79,0xfe,0x46,0xad,0x0b,0x6c,0xac,0x85,0xc4,0xe0,0x76,0x03,0x2c,0xbe,0xec, - 0x17,0x0a,0x2c,0xa2,0x93,0xc2,0x06,0x8b,0xa2,0xfb,0xa5,0x91,0xf5,0xd2,0xe0,0x8d,0x80,0x26,0x61,0xed, - 0x69,0xd8,0xae,0xb8,0x0a,0x5f,0x58,0xe0,0x32,0x12,0x4a,0x83,0xfa,0x36,0xf0,0x10,0x79,0x08,0x8f,0x83, - 0x01,0xcb,0xfd,0xde,0x80,0xe1,0xfa,0xa8,0x6d,0x65,0x64,0x1a,0x6f,0xbe,0x39,0xde,0xfb,0xfd,0x5c,0x8d, - 0x97,0xdd,0x15,0x54,0xe3,0xcd,0xbb,0xf7,0x0d,0x18,0x27,0x66,0x5c,0x23,0x35,0xb0,0xe4,0x53,0xe1,0xd8, - 0x2f,0xcd,0xc8,0x75,0x5c,0x98,0xa4,0xb9,0xd2,0x4d,0xb4,0x6b,0x19,0x37,0x8b,0x65,0xd9,0xc6,0xa8,0x1f, - 0xf4,0x33,0x35,0x6a,0xb6,0x16,0xaa,0x46,0x9d,0x75,0x1f,0xe8,0xa7,0xb5,0x06,0x5e,0xcb,0xbd,0x0a,0xa7, - 0xd5,0x01,0x94,0xa5,0x48,0x78,0xda,0x19,0x6e,0x30,0xf7,0x8d,0xa1,0x35,0xa8,0x4e,0xb9,0xbe,0xef,0x58, - 0x84,0xb2,0xd1,0x24,0xe5,0xd6,0xf4,0xab,0x5a,0x08,0x44,0xc3,0xf3,0x59,0x54,0x36,0xa1,0x36,0xc8,0x1d, - 0x1b,0x8d,0x15,0xdb,0x1b,0x63,0x8f,0xba,0x2d,0xad,0x34,0x25,0x33,0x9b,0x1a,0x5f,0x9f,0xd2,0xc8,0x45, - 0x6f,0x51,0x26,0xb3,0x9e,0x78,0x38,0xdc,0x3a,0xda,0xb6,0xc9,0xd7,0x99,0x83,0x3b,0x66,0xdf,0x60,0x0f, - 0xb6,0x2e,0xc2,0xd6,0x46,0x6b,0x13,0xd8,0x6c,0xad,0x75,0x31,0xfe,0x72,0x63,0x5b,0x16,0xa5,0x7d,0x12, - 0x1b,0x6b,0x23,0x1a,0x26,0xc9,0x9f,0xa6,0xff,0x16,0x62,0xc4,0x44,0xca,0x85,0x7f,0x6b,0x02,0x58,0x20, - 0x6d,0xa2,0xd0,0x0b,0x0f,0x72,0x4e,0x18,0x88,0xf2,0xe3,0x01,0xe7,0x85,0xe9,0x10,0xae,0xbd,0xec,0xac, - 0x0d,0xde,0x20,0x44,0x3a,0x6c,0x06,0xba,0xce,0xd9,0x19,0xc2,0x1a,0xe8,0xbb,0x7e,0x53,0x6c,0x7b,0x32, - 0x33,0xd8,0x6b,0xb1,0x5a,0xb9,0x1f,0x2d,0xc8,0xc2,0xc1,0x16,0xfd,0x4b,0x37,0xf2,0x61,0xc7,0xbf,0x50, - 0xdc,0xf2,0x86,0x64,0xef,0x6c,0xbc,0x81,0x08,0x98,0xef,0x30,0x03,0xdf,0xd2,0xac,0xa8,0x34,0x4a,0x8b, - 0x7d,0x9b,0x40,0x6c,0xae,0x68,0x75,0x0d,0x34,0x2e,0xc2,0xed,0x72,0x1a,0x3f,0xdd,0x7e,0x33,0xe6,0xff, - 0x2b,0x6e,0x46,0x71,0x35,0x58,0x9a,0x9b,0x31,0x87,0x49,0x7e,0x7d,0x5d,0xc6,0xad,0x84,0xc9,0x36,0x8c, - 0x7e,0xb4,0x1d,0xa3,0x1f,0x0d,0xb5,0x05,0x85,0x85,0xb4,0xb2,0x0d,0x4b,0xa3,0xca,0x59,0x45,0xd3,0x2c, - 0x08,0xa6,0xd5,0x03,0xd8,0xa7,0x1c,0x0e,0xf1,0xb4,0x0f,0xdb,0x20,0x0e,0x31,0x02,0x6f,0x0e,0xca,0x88, - 0x03,0xf6,0x36,0xd5,0x6f,0x44,0x0f,0xa5,0x1f,0x1c,0x1b,0xd5,0x95,0x8a,0x1c,0x16,0x55,0x2c,0x90,0xd2, - 0x8f,0x58,0x20,0xa5,0x62,0x81,0x24,0x75,0x3c,0xbf,0x25,0xff,0x68,0xa8,0x7a,0x63,0xc3,0x23,0x05,0x8f, - 0x88,0x3f,0xcf,0xf1,0x45,0x1b,0x68,0xc7,0x96,0x23,0xdc,0x81,0x74,0x6a,0x92,0x84,0xad,0x28,0x67,0x4b, - 0x83,0x35,0x1c,0xd1,0x6c,0xa9,0x15,0xdd,0xfc,0xa5,0x86,0xb6,0xa0,0x9a,0xb6,0xa1,0x6f,0x47,0x34,0xd2, - 0xf3,0xff,0x8f,0x68,0xa6,0xf9,0x02,0xb4,0x05,0xc9,0xb4,0x14,0xab,0x50,0x8c,0xbd,0x7c,0x77,0x22,0x98, - 0xf4,0x13,0x11,0x4c,0xad,0xd1,0x3b,0xd1,0x8b,0x94,0xbe,0x1b,0xb9,0x34,0xe4,0xb7,0xff,0xdb,0x51,0x4b, - 0x7a,0x37,0x6a,0x49,0xff,0x2f,0x6a,0xf9,0x54,0xd4,0x92,0x1a,0xd4,0xa2,0xb4,0x3f,0xc4,0x90,0x40,0x89, - 0x7e,0x12,0x22,0xf6,0xac,0x85,0xf5,0x7f,0xf6,0x68,0x9d,0xa3,0x65,0x94,0xcc,0xa2,0xf3,0x64,0x96,0x20, - 0x3f,0xbc,0xad,0xdf,0x96,0xc1,0x4d,0xed,0xf5,0x2f,0x38,0xc7,0xd6,0xb0,0x16,0xef,0x6c,0x66,0xc7,0xd6, - 0xd5,0x3a,0x78,0x7d,0xf7,0x02,0x1e,0x57,0x96,0x74,0x02,0x28,0x63,0x6f,0x4f,0x81,0xdd,0x85,0x4e,0xd1, - 0x36,0x92,0x3d,0xc7,0xe3,0x79,0xc5,0xba,0x31,0x89,0xa1,0xd4,0x36,0xea,0x1b,0xaa,0x5d,0x8d,0xd9,0xd9, - 0x15,0xcd,0xd5,0x5b,0x82,0xd5,0x60,0x9b,0xa8,0x15,0x45,0xe0,0x78,0x26,0x0d,0x2f,0xb6,0x34,0x99,0xd6, - 0x9a,0x2c,0x37,0xdb,0xdb,0x7c,0x19,0xb3,0xdf,0x7c,0xfe,0x57,0x00,0x61,0xac,0x34,0x56,0x55,0xf3,0x49, - 0xc5,0x51,0x11,0xe3,0x42,0x7c,0xa8,0x06,0xd0,0xa4,0x49,0xad,0xc7,0x36,0xb7,0xb2,0x5e,0x57,0xb6,0x13, - 0x1f,0x9f,0xe3,0xe8,0xf3,0x26,0xb9,0xc1,0xe2,0x24,0x6d,0x8c,0x59,0x62,0x58,0x9c,0xc4,0x9e,0x66,0x02, - 0xc6,0x4c,0x39,0xfd,0xa8,0x4f,0x33,0xb3,0x18,0xb4,0x0c,0xf3,0x34,0x16,0x6d,0xd9,0xc6,0x3c,0xfd,0xd4, - 0xcc,0x34,0xff,0x9c,0x99,0xc6,0x9f,0x3f,0x53,0xe5,0xc6,0xb0,0x3e,0xd6,0x9c,0xd9,0xa7,0xd2,0x37,0x1a, - 0xbf,0xf9,0x06,0xf7,0xf8,0xe9,0xa3,0x1a,0xff,0xf7,0xc2,0x98,0xe1,0x8a,0x63,0x6d,0xa7,0x37,0xb6,0xa0, - 0xab,0x85,0xdf,0xfd,0xd4,0x79,0xb4,0x9c,0xbd,0xff,0xde,0x79,0xa4,0x77,0xcf,0x03,0xa6,0xd3,0x1f,0x92, - 0xd4,0x3d,0xc3,0xa7,0xb1,0x05,0x74,0x1d,0x9c,0x73,0x8e,0xb8,0x30,0x52,0xf1,0xd7,0xd9,0xd9,0xd7,0x45, - 0x15,0x16,0xcc,0xbd,0x16,0xbf,0x87,0xd7,0xfa,0x12,0x35,0x2a,0x03,0x62,0x38,0xf5,0x0a,0xc4,0xd0,0xbb, - 0x32,0xa7,0xaa,0x53,0xc2,0x96,0xfd,0x5c,0x6c,0xa8,0xf2,0x9e,0x8a,0xfa,0x0d,0xec,0xa8,0x30,0x5d,0xe8, - 0xfc,0xbd,0xf7,0xa0,0xf7,0xd0,0xf1,0xdb,0xcc,0xb9,0x24,0x22,0xf3,0xde,0x9e,0x8a,0xcc,0xfc,0x2b,0x22, - 0xca,0x54,0xdf,0xbd,0x45,0x11,0xbb,0xaf,0x08,0x39,0x2b,0xb5,0x21,0x63,0xe5,0x72,0x1b,0xa7,0xc1,0x2d, - 0x07,0xc1,0x0c,0x9c,0x77,0x65,0x94,0xe4,0x85,0xe3,0x17,0x37,0x45,0x19,0x5f,0xbd,0x78,0x4e,0x29,0xfc, - 0xd5,0x79,0xf1,0xdc,0xf1,0x27,0x49,0x7e,0x75,0x1d,0xe5,0xf1,0xaf,0x32,0x96,0xc0,0xf9,0x4e,0x25,0x74, - 0xd4,0xe8,0x82,0x0e,0x42,0x5a,0xce,0x6f,0x24,0x0e,0x86,0xf3,0x4c,0x7f,0x76,0xfe,0xe7,0xff,0xd3,0xb9, - 0x7f,0x78,0xf4,0xf7,0xce,0xab,0x28,0xbf,0xec,0x2c,0xa3,0xb4,0xf3,0x73,0x9c,0x16,0xd7,0xd9,0x62,0x1c, - 0x23,0xce,0x65,0x04,0x27,0x59,0x81,0xf3,0x76,0x16,0xc3,0x8a,0x90,0x63,0x13,0x74,0x54,0x6a,0x47,0x16, - 0x4a,0x85,0x66,0xef,0xf5,0x7a,0x8e,0x9f,0xc7,0xe7,0x74,0xc5,0xbf,0x8d,0x53,0xa9,0x75,0x7c,0x11,0x77, - 0x64,0xb4,0x34,0xff,0xd9,0xac,0x73,0x1e,0x77,0xa4,0x44,0x3c,0xf6,0x3b,0x73,0x69,0x32,0x8f,0x27,0x79, - 0x5c,0x5c,0x30,0x1e,0xef,0xcc,0x69,0xd2,0x9d,0x68,0x42,0xe4,0x14,0x0d,0x7d,0x4c,0x73,0xe5,0x8d,0x7f, - 0xca,0x31,0x39,0x02,0xe7,0x09,0x7e,0xd4,0xd2,0xde,0x45,0x4b,0xee,0x48,0xfe,0xf2,0x10,0xae,0x93,0x49, - 0x42,0x2b,0x55,0x2e,0x8a,0xe0,0x36,0x1a,0xc1,0x01,0xe5,0x3c,0x4b,0xd2,0xd2,0xac,0xe2,0x93,0xb7,0x58, - 0x89,0x71,0x52,0x44,0xe7,0x74,0x05,0x05,0xce,0x73,0xf5,0x45,0x24,0x08,0xfb,0xc0,0xc8,0x52,0x44,0xa7, - 0x33,0xc5,0x7f,0x4b,0xbe,0x4b,0xb6,0x54,0xf0,0x13,0xc4,0x21,0x71,0x5e,0x8c,0xf1,0xfa,0x9b,0x66,0xef, - 0xde,0xf1,0x96,0xd0,0xbf,0x1d,0x18,0x9e,0x4e,0x32,0x82,0x02,0xda,0xac,0x51,0x94,0x22,0xbe,0x04,0x6c, - 0x36,0xa8,0xf2,0x3b,0xfa,0xd9,0x19,0xe9,0xdf,0xd8,0x91,0x34,0x25,0x58,0xfd,0x8e,0x6e,0x64,0x64,0xcb, - 0xdf,0x4e,0x99,0x75,0x54,0x86,0x29,0x41,0xe3,0x7a,0x99,0x15,0xbc,0x71,0xfa,0x37,0xed,0x43,0x51,0xf2, - 0xc8,0x54,0x19,0x35,0x3a,0xf3,0x0b,0xa1,0x3b,0x0a,0xb5,0x14,0x65,0x74,0x7e,0x6c,0xc0,0x88,0x52,0x1c, - 0x5f,0x4d,0xf0,0x99,0xc4,0x7f,0xe9,0x14,0x2a,0x99,0x6e,0xe6,0x77,0x65,0x3c,0x2f,0x8e,0xf3,0x05,0x0a, - 0xc7,0x65,0x07,0xef,0x04,0x08,0x2f,0x7f,0x43,0x73,0xca,0xd9,0x40,0xa0,0x40,0x81,0xaa,0xe8,0x77,0xd0, - 0x5a,0x6d,0x96,0x85,0x7b,0xb5,0x65,0x32,0x5e,0x20,0xc6,0x04,0xad,0x2d,0x11,0x33,0x88,0x2d,0x51,0x1b, - 0xc9,0xb1,0x4a,0xc3,0x58,0xae,0x62,0x9d,0x48,0x9f,0x92,0xf0,0x02,0xef,0x13,0x29,0x21,0x1e,0x0d,0x7d, - 0xb4,0xac,0xb0,0x7b,0x89,0xca,0x0e,0xb2,0x3b,0xba,0xc9,0x8e,0xb2,0x45,0xe9,0x44,0x29,0xf7,0x8f,0x3a, - 0x9d,0x6a,0xd9,0x7a,0xd2,0xda,0xeb,0x8c,0x23,0x12,0x3b,0xaf,0xb3,0x46,0x6d,0x75,0x54,0x3b,0x37,0x71, - 0x29,0x25,0xbf,0x4d,0xd5,0x4e,0xcb,0x47,0xbd,0xb8,0x1a,0x2b,0x84,0xd8,0xec,0xff,0x0a,0xc3,0xc5,0x4c, - 0xf4,0x6f,0x29,0x9d,0xa4,0x9d,0x2b,0x02,0xf8,0xa4,0x88,0x69,0x1c,0x63,0x55,0xe9,0xc9,0x98,0xda,0xa4, - 0x7f,0xe4,0xd7,0x73,0x09,0x0f,0xe4,0xc8,0x5f,0xdd,0x2c,0x77,0xd2,0x18,0x80,0xaa,0xf0,0x5d,0xf2,0x21, - 0x1e,0x4b,0x77,0xfc,0xc9,0x3d,0x49,0xd6,0xbb,0x45,0x9a,0x27,0xbc,0x05,0xf2,0x61,0x52,0x0b,0xac,0x9e, - 0xfc,0xd5,0x8b,0x7c,0xa5,0xd6,0x58,0xc6,0x98,0x2e,0xca,0x58,0x0d,0xef,0x15,0x8d,0x34,0xba,0x09,0x1c, - 0xf9,0xab,0x8a,0x2f,0xe2,0x82,0x13,0xd5,0x87,0xa4,0xfe,0x16,0x8f,0x53,0x95,0x6e,0x3e,0x55,0xf9,0x8b, - 0x45,0xae,0x2a,0xa8,0x2f,0x35,0xf6,0x3c,0xe1,0x54,0xf9,0xab,0x86,0x47,0xf0,0x96,0x73,0xaa,0xfe,0x32, - 0xc3,0x96,0xd4,0x85,0x8c,0xe3,0x2a,0x93,0x75,0x66,0xe8,0x78,0xc5,0x3f,0x74,0xa2,0xb5,0xa7,0x92,0xb0, - 0x65,0x57,0x25,0xb3,0xb9,0xaf,0x8d,0x2a,0x8d,0x62,0xcf,0x17,0x20,0xbf,0x8f,0xab,0x5d,0xa1,0xbd,0xc3, - 0xa5,0x42,0x17,0x41,0x07,0xa1,0x82,0x3a,0xc9,0xa4,0x13,0xd5,0x60,0x03,0x36,0x34,0xd1,0x2c,0x8f,0xa3, - 0xf1,0x4d,0x27,0x12,0x5b,0x74,0x3d,0xf8,0xcf,0x05,0x17,0x5d,0x6d,0x0b,0x38,0x48,0x76,0x05,0x4f,0xf2, - 0xbb,0x09,0x51,0x92,0xfa,0x36,0x21,0xcc,0xf9,0xfd,0xdb,0x17,0x6f,0x3a,0x73,0xea,0xc6,0x95,0x81,0x75, - 0x2e,0x08,0xf5,0x7b,0xa6,0xa2,0xdc,0x97,0x40,0xb1,0xef,0xae,0xe3,0x78,0x4e,0x07,0x29,0xb9,0x8a,0xec, - 0x85,0x36,0x25,0x5e,0x5b,0xdf,0xd1,0x0c,0x2b,0x9f,0xc6,0xd4,0xa8,0xc6,0x09,0x1d,0x9c,0x4d,0x20,0xfd, - 0xe8,0x4a,0xce,0xcd,0x66,0x1f,0xc7,0xd9,0xfc,0x39,0x22,0x64,0x39,0xf4,0xd1,0x41,0xac,0xac,0x8d,0x12, - 0x4f,0x33,0x42,0xed,0x57,0xbf,0xcc,0x03,0x47,0xbe,0x3a,0x8b,0xb9,0xb3,0xb6,0xf0,0xa0,0x8d,0x42,0x2a, - 0x6c,0x58,0x21,0xb4,0x0a,0x41,0xf2,0x5b,0x5f,0x5c,0xf2,0xe6,0xda,0x77,0x81,0x86,0x00,0x49,0xeb,0x70, - 0x62,0xad,0xc4,0x0f,0x5c,0xea,0xc9,0x6c,0x96,0x5d,0x17,0x82,0xf5,0x94,0x83,0x01,0x0b,0xaf,0x74,0x26, - 0x39,0x8d,0xed,0x26,0x5b,0xe4,0x04,0x6c,0xcb,0x64,0x14,0x03,0x6d,0xf3,0x2d,0x26,0x17,0xb5,0x72,0x6b, - 0xc4,0xd5,0x6b,0x37,0x65,0x67,0xbe,0xc8,0xe7,0x59,0x11,0x17,0xbd,0x0e,0x2e,0x48,0x55,0xba,0x5e,0x04, - 0xa0,0x24,0x6c,0x1a,0xb5,0x40,0xbf,0x2f,0xca,0x72,0x1e,0x1c,0x1c,0x1c,0x7d,0x73,0xbf,0x77,0xf4,0xd5, - 0xd7,0xbd,0xa3,0xde,0xc3,0x83,0xce,0xf5,0x05,0x41,0x21,0xf5,0xdf,0xc1,0x2d,0x6f,0x90,0x3e,0x46,0x91, - 0x94,0xd4,0x34,0xb3,0x18,0x65,0x27,0x9b,0x10,0x9c,0x16,0x9d,0x22,0x83,0xef,0x98,0xa2,0xa3,0xee,0x38, - 0x0c,0x2e,0x46,0x2f,0xba,0x5b,0xdc,0xc8,0x94,0x4d,0x15,0x28,0x91,0x1d,0x27,0xc4,0x23,0xa4,0x02,0x36, - 0xa3,0xf4,0x86,0x6e,0xfe,0x9b,0x5e,0xe7,0x9f,0xd4,0x19,0x2e,0xb0,0x68,0x46,0x3f,0x8b,0x8e,0xe1,0xbf, - 0x3a,0x42,0x2b,0x75,0x20,0x28,0xc0,0x68,0xcf,0x6f,0x3a,0x50,0x92,0x04,0x8d,0x00,0x68,0xb0,0x97,0xb9, - 0xa3,0x02,0x6c,0x2d,0xd2,0x32,0x99,0x71,0xee,0xcb,0x6f,0x9f,0x77,0x66,0xa0,0x44,0x0a,0xda,0x68,0x42, - 0xd6,0xf6,0x2d,0xac,0x37,0xca,0x1e,0x75,0xad,0x84,0x6c,0x94,0xda,0xf2,0xb6,0xd5,0xa7,0xd5,0xe0,0x2d, - 0x22,0x40,0xeb,0xe0,0x2e,0xef,0xe4,0xec,0xf6,0xab,0xd7,0x51,0x77,0x0a,0x87,0x75,0xe3,0x71,0xe0,0xe6, - 0x26,0xaa,0x24,0x2a,0x88,0xf8,0xc9,0xc7,0x34,0xe9,0x31,0x11,0xb5,0x39,0xe5,0x34,0xb7,0xef,0x3c,0x26, - 0xb0,0xc0,0x40,0x8b,0x64,0x2c,0x17,0xbe,0xe3,0xeb,0x6a,0x74,0x57,0xa9,0x2f,0xba,0x98,0x2f,0x46,0x04, - 0xc3,0xbf,0x50,0x27,0xcf,0x7f,0x78,0xf6,0x56,0x7e,0x2b,0xc0,0x5a,0x10,0x58,0xc3,0xdf,0x16,0x2e,0x47, - 0x5a,0xf6,0x22,0x99,0xa6,0x05,0xae,0xaf,0x17,0x6f,0x3b,0x2a,0x04,0x7c,0x3b,0x30,0xc9,0x16,0x10,0x71, - 0x7e,0x4e,0xcb,0x82,0x4d,0xa1,0x05,0xa5,0x82,0x97,0x38,0xb4,0xb2,0x11,0x58,0xd9,0x19,0xea,0x03,0x30, - 0x60,0xca,0x44,0x60,0x42,0x87,0x92,0x7e,0xdd,0x23,0x28,0x19,0x67,0x20,0x93,0x88,0x72,0x99,0xab,0x6e, - 0x88,0x7c,0x31,0x5d,0xd2,0x8c,0x16,0xe7,0x74,0x77,0x5e,0x45,0xc5,0x25,0xd0,0x2f,0xbe,0x3b,0xf8,0xe1, - 0xf8,0x53,0xc2,0x7a,0xd7,0x40,0xca,0xdf,0xcb,0x87,0xe3,0x5f,0x10,0xed,0x21,0x76,0xa5,0x3f,0xa8,0xaf, - 0x2a,0xed,0x6d,0xe5,0xbb,0x18,0xd8,0x48,0x4c,0x49,0xa9,0xa5,0x91,0xe9,0x69,0xad,0x88,0xd8,0x1a,0x5d, - 0xc2,0x29,0x44,0x49,0x95,0x73,0x8b,0x14,0xe8,0x40,0x95,0xf3,0x22,0xcf,0x52,0xa2,0xba,0x78,0xf5,0xdd, - 0xd7,0xc7,0x6f,0x09,0xab,0x10,0x32,0x2b,0x54,0xb1,0x1f,0x88,0x54,0x64,0x4a,0x97,0xd2,0x32,0x84,0xc9, - 0xbc,0x8a,0xe6,0x3a,0xef,0xfb,0x2c,0x9b,0x12,0x14,0xbc,0xa2,0x94,0xce,0x93,0xb7,0x2f,0x2a,0x3a,0x59, - 0xe5,0x1b,0x2a,0x59,0xb8,0x03,0xee,0xfd,0x1d,0xdc,0xcd,0xd2,0xc8,0xa9,0xa3,0x0e,0xbb,0x9e,0xcd,0x39, - 0x99,0xc9,0x91,0x25,0x90,0xde,0xcf,0x8a,0x64,0x4d,0x54,0x4a,0xc7,0xad,0xee,0x52,0x8f,0xcb,0xbe,0x8c, - 0x68,0x97,0xe9,0x9f,0xa4,0x64,0x32,0x1a,0x29,0x20,0x53,0x5f,0x66,0xe9,0xd4,0x4a,0x22,0x16,0x53,0xb0, - 0xee,0xf7,0xb4,0xd0,0x33,0x55,0xba,0x73,0x40,0x74,0x9d,0x2a,0x26,0x28,0x66,0xa6,0xca,0xd5,0x2a,0xbd, - 0x8b,0xa3,0x7c,0x74,0x01,0xa2,0x0b,0x7f,0x79,0x3d,0xe8,0x20,0x11,0x71,0x4b,0xb7,0x14,0x9f,0xb6,0xb7, - 0x7c,0xda,0x84,0xaa,0xe3,0x33,0xc6,0xe8,0xbf,0xfb,0xa0,0xf7,0x60,0xe9,0xe9,0xe2,0xef,0x8e,0x9f,0x08, - 0x3d,0x88,0x85,0x7d,0x05,0x8c,0xf0,0x91,0xf2,0x4f,0xde,0x6a,0x3a,0x5c,0x1d,0xca,0x5a,0x47,0xea,0x58, - 0xdb,0x77,0x0c,0x9d,0x12,0xa9,0xf9,0xf6,0xb7,0x57,0xcf,0x73,0x4a,0xc9,0xdf,0x3d,0xa7,0xfe,0xde,0x3e, - 0x7b,0xf2,0xcd,0x57,0x5f,0x7f,0xd9,0xa1,0xd4,0xce,0x98,0x93,0x3b,0x94,0x2e,0x35,0xa1,0x13,0xdc,0xac, - 0xf3,0xec,0x65,0x7b,0x9d,0x67,0x2f,0xa5,0xce,0x08,0xce,0x47,0x51,0xe9,0xfa,0xea,0x89,0x06,0xea,0x96, - 0xf2,0x2f,0xfe,0xe7,0xff,0xfb,0xac,0x82,0x74,0x2a,0xfc,0x1d,0xc8,0xc6,0x38,0x1d,0xdd,0xb4,0x16,0x9f, - 0xe8,0x5c,0x01,0x27,0x82,0x9d,0x9f,0xe2,0x9b,0x0d,0x78,0xa2,0x93,0x57,0x2b,0x70,0xc1,0xc7,0xfb,0xe7, - 0x58,0x3c,0xf1,0x8d,0x81,0x3e,0x27,0x9d,0x45,0xc1,0x88,0xd0,0xa6,0x22,0x7b,0x1d,0x42,0x0b,0x63,0xbe, - 0x1a,0x66,0x59,0x76,0x89,0xfc,0xc5,0x9c,0xb1,0x90,0x0a,0xc7,0xc8,0xc5,0xff,0xa4,0xcb,0xb5,0x47,0x58, - 0x8b,0x6e,0x57,0xc2,0x28,0x97,0x1d,0xc4,0x87,0x23,0x00,0x07,0xa2,0x50,0x7d,0xfb,0x58,0xf7,0x8e,0x1a, - 0xd4,0x15,0xb3,0x73,0x10,0xc8,0x96,0x04,0xdb,0x82,0xf6,0x78,0x16,0x05,0x5d,0x07,0x3f,0x13,0xfb,0x5a, - 0x00,0xd5,0xc9,0x6d,0x46,0xd3,0x8b,0x75,0x23,0xb8,0xb4,0xd5,0xfd,0xa2,0x9d,0xd8,0xd1,0x85,0x46,0x48, - 0x6e,0x8e,0x91,0x4e,0xb9,0x71,0x30,0xcc,0x07,0x8c,0x13,0x23,0x4d,0x04,0x25,0xe5,0x3d,0xc2,0xd8,0x85, - 0x5c,0x70,0x18,0xba,0x5e,0x94,0x1e,0xe2,0x57,0x42,0xfc,0x1b,0xdc,0x82,0x53,0x34,0x1c,0xe9,0x33,0xf8, - 0x37,0xe4,0xbb,0x05,0xc9,0x74,0x7a,0x44,0x7e,0x0d,0xd8,0x8b,0xce,0x31,0xaf,0xd2,0xb0,0x8b,0xc2,0x79, - 0x56,0x37,0xf9,0x46,0x65,0xeb,0x1a,0x26,0xda,0xb6,0x84,0x23,0x67,0xa9,0x23,0x58,0x64,0xa3,0xbc,0xe2, - 0x42,0xeb,0x65,0x2d,0xe2,0xae,0xd8,0xa8,0x51,0xa3,0xec,0xea,0xf5,0x5e,0xd9,0xd4,0xd9,0x66,0xcd,0x3a, - 0x5d,0x69,0xd5,0x65,0xc6,0xb5,0x7d,0x52,0x05,0xcc,0xab,0x5b,0x27,0xc5,0x95,0x36,0x67,0xc5,0x15,0x36, - 0x66,0x25,0x58,0x0c,0xf7,0x9c,0x62,0x81,0xad,0x1a,0x79,0x4c,0x23,0xa2,0x7d,0x95,0x6b,0x50,0xb3,0x7b, - 0x8b,0x39,0xc6,0xac,0xd1,0x20,0x9d,0x6d,0x6c,0x5c,0x87,0x43,0x0b,0x76,0x24,0x0f,0xc0,0xa9,0xb1,0xa6, - 0xee,0x81,0xd9,0x3e,0xbb,0x71,0x1e,0x25,0xbf,0x54,0x80,0x0e,0x14,0x6f,0x4b,0xb8,0x50,0x18,0x3b,0x55, - 0x88,0xce,0x5e,0xa9,0xec,0x12,0x30,0xaf,0x91,0x1b,0x4d,0x9e,0x2e,0xcd,0x24,0x8d,0x98,0x1f,0xe1,0xe6, - 0xb6,0x6d,0x0f,0x4f,0x7d,0xcb,0xf6,0x70,0xc5,0xed,0xfb,0xc3,0x55,0xb7,0xed,0x0f,0x71,0xcb,0xe9,0xcc, - 0x30,0xfe,0x44,0xa3,0xcf,0x37,0x64,0x2d,0x9f,0x26,0x6c,0x89,0xff,0x3d,0x59,0xcb,0xb7,0x44,0xd6,0x65, - 0xd3,0x38,0x3d,0x9f,0x25,0x97,0x9d,0x69,0x4c,0xf7,0x3e,0xd1,0x66,0xe7,0xf1,0x9f,0xc9,0xb4,0x73,0xc5, - 0x17,0xc5,0x98,0x0a,0x2c,0x59,0x8e,0x60,0xc8,0x92,0xb8,0x4d,0xfc,0xf2,0x03,0x95,0x2e,0xd4,0xb0,0x41, - 0x92,0x10,0x31,0x38,0x4f,0x93,0x78,0x71,0x4d,0x7f,0xa7,0xb1,0xc4,0x0e,0xc2,0x88,0x31,0x68,0xa2,0x0d, - 0xe2,0x3f,0x63,0x08,0x60,0x68,0x0f,0x3a,0x29,0x0d,0x25,0x4e,0x1b,0xe2,0x97,0xe3,0x2c,0x06,0x99,0xd3, - 0x48,0xd7,0x22,0x98,0xa7,0x66,0x80,0xd9,0xbc,0x98,0x45,0x51,0xfa,0x97,0xa4,0x31,0xbf,0x24,0x25,0x8d, - 0x6c,0x74,0x11,0x5d,0xc6,0xb3,0x4f,0x17,0xc9,0xd4,0x6b,0x29,0xb9,0xcc,0x3b,0x1a,0xc4,0x1c,0xce,0x47, - 0xc6,0x4d,0xe9,0x4c,0x42,0x83,0x9c,0xc6,0x4b,0x62,0xb5,0x30,0x97,0x36,0x09,0x4d,0x34,0x21,0xc8,0xc8, - 0xd2,0x4d,0x01,0xcd,0x4f,0x94,0x39,0x8d,0xb1,0xfe,0x71,0xae,0xe2,0x07,0x10,0x61,0x73,0x89,0x76,0x9a, - 0x82,0x9a,0x5f,0xab,0x12,0x54,0x78,0x96,0xe5,0x28,0x54,0x17,0xd6,0xbc,0xc6,0x48,0xd0,0x92,0x0c,0xe5, - 0x53,0xc4,0x35,0x3f,0x2c,0x92,0x71,0x32,0x8d,0xb7,0x88,0x6b,0x88,0x63,0xc1,0xa9,0x88,0x01,0x21,0xd8, - 0xcf,0xd9,0x04,0x54,0xbe,0x92,0xc9,0xc4,0x49,0xb9,0x21,0xb3,0x39,0x96,0xb2,0x5a,0x58,0x13,0xc7,0x33, - 0xf6,0xd8,0x12,0x53,0x3b,0xe9,0xe7,0x49,0x6d,0xde,0x8f,0x9b,0x52,0x9b,0x97,0x0c,0x0b,0x1d,0xc2,0x17, - 0x9d,0x65,0x86,0x3b,0x82,0xca,0x54,0x0c,0x7a,0x1c,0x57,0xd2,0x9a,0x65,0x6d,0xa9,0x62,0x78,0xdc,0x4b, - 0x8a,0x0d,0xb9,0xcd,0x54,0x56,0xbe,0xde,0xcc,0x34,0x36,0x1c,0x4c,0x9c,0x8f,0x1b,0x02,0x9c,0xe3,0x5a, - 0x51,0x9a,0x98,0x80,0x48,0x9c,0x7e,0x5c,0x8a,0x13,0x4b,0x1f,0x75,0xae,0x5c,0x57,0x62,0xae,0x9b,0x8e, - 0xc2,0x32,0x8b,0xa7,0x3a,0x4d,0x73,0xde,0xb4,0xe5,0xd7,0x54,0x33,0xce,0xab,0x1e,0xea,0x1c,0x3c,0x24, - 0x08,0xf1,0x64,0x43,0x9e,0xf3,0x6b,0x54,0x94,0xd2,0x69,0x43,0x9e,0xf3,0x3b,0xee,0xe3,0xf9,0x65,0x76, - 0x55,0x94,0x75,0x99,0x0e,0x67,0x40,0x15,0x79,0x1a,0x41,0xad,0xd5,0x16,0xed,0xe8,0x91,0x83,0x1c,0x4d, - 0x1b,0xa2,0x1d,0x3a,0x96,0xe3,0x68,0xda,0x90,0xed,0x3c,0xa7,0x85,0x31,0xa9,0xb6,0x6c,0x27,0x8b,0xad, - 0x8c,0x4a,0xb4,0xf3,0x9c,0x3b,0x36,0x19,0x5a,0xb6,0xf3,0x6b,0x4e,0x5d,0xeb,0xc4,0x4a,0xb8,0xf3,0x3b, - 0x61,0xf4,0xaa,0xb0,0x16,0xee,0xfc,0x9e,0xc9,0x40,0x6a,0xc2,0x9d,0xa7,0xf1,0x75,0x3c,0x65,0x35,0xdd, - 0xa6,0x78,0x47,0x6d,0xfd,0xb9,0x2a,0xb0,0x7d,0xfb,0x1b,0x92,0x9e,0xa7,0x1b,0x15,0x6a,0x40,0x70,0x97, - 0xc0,0xe7,0x0d,0xdd,0x51,0x56,0x05,0xe2,0x7b,0x09,0x6e,0x21,0x02,0xed,0x34,0x01,0x91,0xc9,0xa2,0x78, - 0x42,0x60,0x7b,0x97,0xcc,0x67,0x2b,0x70,0xb5,0xcb,0x7c,0x34,0xc4,0x58,0x22,0x1f,0x0b,0xf8,0xea,0x82, - 0x9f,0x1a,0xf8,0x6d,0x95,0xfe,0xd0,0x28,0x2f,0x88,0xa6,0x6b,0x93,0xfe,0x3c,0x11,0xb9,0x4f,0x7c,0xa7, - 0xd8,0xe7,0x7b,0xcc,0x1f,0x62,0x1f,0x83,0x6d,0xa6,0xf1,0x2c,0x79,0x7f,0x89,0xa9,0x25,0x2d,0x4d,0x1b, - 0xa1,0xcf,0xd3,0x0c,0xa2,0xb3,0x34,0x8a,0x72,0xda,0xcc,0x34,0xb6,0x26,0xde,0x26,0xfe,0x91,0x12,0xaa, - 0x38,0x6a,0x6e,0x95,0x03,0x55,0xc8,0xd6,0x60,0x4a,0x0b,0xff,0xda,0x17,0x65,0x43,0x12,0xf4,0xc4,0x96, - 0x4d,0xd4,0x80,0xc3,0x2a,0x26,0x64,0x3d,0x9d,0x9e,0x4b,0xa2,0x94,0xc1,0x14,0x67,0x32,0xdd,0x0e,0x71, - 0x67,0x58,0x09,0x91,0x0d,0x55,0x04,0x5c,0x8c,0xeb,0x39,0x9a,0x70,0x1e,0x5d,0x95,0x51,0x1e,0x11,0x0e, - 0xe4,0x59,0xf0,0x25,0x0b,0xd2,0xc2,0xc8,0x27,0x62,0xb9,0x3f,0xd0,0xd4,0x38,0xb6,0x52,0x0d,0x5c,0x23, - 0xba,0x43,0xe7,0x79,0xbd,0x16,0x71,0xfa,0x54,0x84,0x56,0x30,0xe2,0xdd,0xee,0x2c,0x93,0xa8,0x55,0x44, - 0x44,0xf9,0xd4,0xf3,0x7b,0x7b,0x64,0x17,0xf1,0x39,0x6e,0xbf,0x2b,0x4c,0xa6,0xd7,0x79,0x27,0xf3,0x95, - 0x71,0x41,0x8a,0x43,0x54,0x5f,0x82,0xb1,0xf2,0x3c,0xed,0x31,0xf8,0x1d,0x42,0x1e,0x53,0xba,0xe4,0xd5, - 0xd5,0x22,0xd7,0xe8,0x39,0x11,0x94,0xc9,0x2c,0x99,0x8e,0x81,0xb0,0x3b,0x3f,0xc6,0x9d,0xcb,0x05,0xad, - 0xa3,0xd5,0x5a,0xd6,0x38,0x42,0x63,0xdc,0x04,0xb8,0x15,0x0c,0xff,0x28,0x4b,0x7f,0x99,0x52,0x22,0xcd, - 0x69,0x9c,0x2f,0x2e,0xb1,0x1c,0x65,0x56,0x62,0xe8,0x63,0x91,0x0f,0x45,0xb8,0x76,0x69,0x11,0x9b,0xe2, - 0x21,0x6b,0x8f,0x41,0x79,0x30,0x65,0xab,0xae,0x63,0xab,0x9c,0x6c,0x9f,0x2a,0xbb,0xb9,0x05,0x68,0x9c, - 0x96,0x28,0xa6,0x6b,0xb5,0x21,0x23,0xfa,0x75,0x31,0xeb,0x5c,0x24,0x4c,0x09,0xd0,0x11,0xc7,0x8a,0x30, - 0x01,0x41,0xc5,0xae,0xa3,0xd1,0x45,0x79,0x0d,0x92,0x95,0x66,0xe7,0x23,0xc5,0xc2,0x43,0x2c,0x1f,0x2e, - 0x17,0xbc,0xac,0x1d,0x02,0xdb,0x1c,0x17,0x36,0x2f,0x47,0xb1,0x55,0x6c,0xf4,0x9b,0x69,0x50,0x0b,0x8e, - 0xbe,0x8f,0xcf,0xf3,0x05,0x51,0x80,0x95,0xf0,0xe8,0xa2,0x26,0x3c,0xa2,0x35,0x65,0x00,0x63,0x01,0x0e, - 0x71,0xb5,0xb4,0x64,0x31,0x1d,0xff,0x3f,0x01,0x73,0x51,0xba,0x31,0x4d,0x62,0x24,0x09,0x00,0xa9,0x52, - 0xf2,0x3e,0x65,0xd8,0xbd,0x4e,0x66,0x98,0xb6,0xb5,0x57,0xa8,0x06,0xcd,0x7c,0x9a,0x10,0xfd,0xf3,0x67, - 0xf2,0x1e,0xf9,0xd7,0x31,0x4d,0xfb,0x1a,0xb0,0x4b,0x3f,0xae,0xe2,0x58,0x51,0xa2,0xe7,0x70,0xc0,0xb5, - 0x29,0x48,0xca,0xe3,0xed,0x62,0x24,0xc8,0x51,0xee,0x16,0x24,0x45,0x57,0x5b,0x04,0x49,0xef,0x40,0xca, - 0xd1,0x38,0xc6,0x5a,0x94,0x84,0xbe,0xb6,0x0a,0x92,0x9a,0x92,0xa4,0xf7,0xe3,0xba,0x24,0x29,0xfe,0x98, - 0x20,0x29,0x82,0x89,0x02,0x9d,0x03,0x82,0x2b,0x46,0x50,0x7f,0x41,0x9e,0x74,0x9e,0xbc,0xbf,0x8e,0x73, - 0x86,0xc4,0x4f,0x11,0x29,0xfd,0x2a,0x54,0x78,0x9b,0x48,0x29,0xb5,0x44,0x4a,0x4f,0x09,0xbc,0xc6,0x65, - 0x3c,0x25,0x84,0x32,0xb6,0xc4,0x4a,0x78,0x56,0xb7,0x13,0x0d,0xbf,0x65,0x97,0x87,0x60,0xa9,0x2a,0x48, - 0x5b,0x7e,0x11,0xe1,0x40,0xd2,0xb1,0x3b,0x8f,0x0a,0x42,0x28,0xe0,0x28,0x84,0x1b,0x8b,0x5b,0x25,0x4d, - 0xbf,0x67,0x31,0x4f,0xe7,0xaf,0x4b,0x9a,0x2c,0xc6,0xf3,0x0e,0x09,0x53,0xad,0x65,0x1b,0x7d,0x30,0x9a, - 0xb0,0xaf,0x32,0x22,0xf2,0xa7,0xff,0x1d,0x52,0xa6,0xcb,0x59,0xf6,0x7f,0x96,0x90,0xe9,0x09,0xb0,0x71, - 0xce,0xbc,0x20,0xc1,0x1a,0x61,0x74,0xc1,0x16,0x4b,0x3e,0xfa,0x75,0x22,0x99,0x8e,0x3e,0x73,0x7f,0xaa, - 0x4c,0xa9,0xee,0x9a,0x0b,0xc5,0x4a,0xa0,0x2c,0x44,0x4d,0x72,0xa5,0xcc,0x01,0x15,0x54,0x83,0x80,0xb7, - 0x64,0xec,0xfd,0xa7,0x60,0x3f,0x23,0x71,0xba,0x02,0x2e,0x50,0x43,0xa4,0xe2,0x5c,0x6e,0x4c,0xbd,0x42, - 0xba,0x74,0x89,0x76,0x95,0xcc,0xa9,0xd0,0x42,0x27,0x41,0x89,0xa0,0x11,0x70,0x01,0x9b,0x29,0x01,0xf2, - 0x3e,0x4d,0xec,0x04,0x8c,0xc6,0x22,0x45,0x85,0x84,0x99,0x9b,0xd0,0x13,0x06,0xde,0x1f,0xdf,0x2d,0x7c, - 0x02,0xe3,0xa6,0x78,0x61,0x23,0x78,0x52,0x77,0x98,0x3a,0x09,0x9b,0x32,0x27,0xd4,0xb1,0x58,0x13,0xc5, - 0x18,0x31,0x52,0x68,0xa9,0xa9,0x65,0x34,0x56,0x4f,0x77,0x55,0xa9,0x4b,0x38,0x50,0xb1,0x46,0x53,0xde, - 0x51,0xbb,0x29,0xe6,0x40,0xfd,0x26,0x85,0xfc,0xb1,0x36,0x36,0xc4,0x51,0x9f,0x30,0x5f,0xe6,0xec,0x1b, - 0x42,0xa9,0xbb,0x26,0xac,0xea,0x6c,0xca,0xa6,0x50,0xd1,0xc6,0x09,0xf5,0xe1,0x35,0x25,0x53,0xdf,0xb1, - 0x88,0x10,0xf4,0x6d,0x5a,0x54,0xe8,0x95,0x01,0x7e,0x8b,0x78,0x8a,0x17,0x14,0x37,0xe0,0x47,0x46,0xd5, - 0x94,0x50,0xfd,0x54,0x61,0x41,0x4b,0x24,0x95,0x6a,0x6a,0x67,0x6e,0x2d,0xdd,0x5f,0xd8,0x3d,0x7b,0xf9, - 0xfe,0xf2,0xf6,0x49,0x23,0xeb,0xf5,0xba,0x0a,0x61,0xc2,0xb2,0x9c,0x27,0xf3,0xb9,0x51,0xcd,0x82,0x24, - 0x4e,0x79,0xba,0xaf,0xfc,0xc7,0x44,0xcb,0x84,0xee,0xdf,0x2c,0xef,0xcd,0x08,0x77,0x2c,0xa2,0x69,0xdc, - 0x74,0xe6,0xe2,0xf0,0x6d,0xa7,0x5d,0xc3,0x18,0x53,0x7a,0xaf,0xaf,0x9a,0x73,0x6f,0x63,0xba,0xab,0xfe, - 0x46,0xc3,0xa7,0x9b,0x9f,0x9a,0x0e,0x62,0x9f,0x5d,0xad,0xdc,0xa6,0x34,0x97,0x49,0xa2,0xd6,0x90,0x0d, - 0xac,0xb4,0x34,0x6b,0xe7,0xd0,0x2f,0x44,0x42,0xb4,0x73,0xa4,0xbe,0x64,0x77,0xe8,0xa7,0x2a,0xf3,0x82, - 0xc0,0x6d,0x84,0x71,0x05,0xce,0x4a,0x6f,0xfb,0xdb,0x3c,0x9b,0x32,0x96,0xa5,0x62,0x72,0xf6,0x8f,0xa3, - 0x73,0xc4,0x0f,0x11,0xa9,0x87,0xd6,0x69,0xba,0xad,0xe4,0x73,0xaa,0x31,0x96,0x3a,0xe9,0x6c,0x3b,0x71, - 0x5d,0x97,0x45,0xcd,0x83,0xdb,0x58,0xf1,0x58,0xd4,0x45,0x42,0xf4,0xd6,0x61,0x8f,0xff,0xab,0x84,0x4e, - 0xb5,0x12,0x4a,0x30,0x73,0x58,0x2f,0xba,0x56,0xf0,0x43,0x7d,0x18,0x10,0x42,0xc0,0xb6,0x4a,0x6c,0x02, - 0xde,0xcf,0x6e,0xa7,0xac,0xb3,0x85,0x62,0x8c,0xa6,0x8b,0xc3,0x95,0x96,0x70,0x43,0xb5,0x3a,0xf1,0x36, - 0x06,0x75,0x4b,0x7b,0xe3,0x78,0x46,0x24,0xd6,0x46,0xd3,0x75,0xde,0xc9,0xd0,0x5d,0x5c,0xce,0xe6,0x89, - 0xb0,0x65,0xa5,0x99,0x0b,0x93,0xab,0x5c,0xc6,0x10,0xab,0xd2,0x09,0x88,0xd4,0x1d,0x5e,0x0f,0xfe,0x6d, - 0x11,0x7d,0xfc,0x5b,0x53,0x7a,0x6c,0x6b,0x6f,0xa8,0xb4,0x8a,0x16,0x12,0x1b,0x47,0x8b,0x06,0xfa,0xd2, - 0x27,0xda,0x53,0x01,0x0f,0x81,0x8b,0x74,0x49,0xf0,0x4f,0x88,0x3c,0x1e,0x13,0xb9,0x21,0x39,0xf1,0x18, - 0xa4,0x84,0x8c,0x79,0xae,0xc8,0x05,0x29,0x7a,0x7d,0x85,0x8b,0xdf,0x7c,0xd3,0x85,0x2e,0x5d,0x5b,0x57, - 0xb6,0xce,0xac,0x6e,0x65,0x4e,0xb1,0xef,0x5e,0xda,0x7e,0x2d,0x22,0xc3,0xec,0xf4,0x37,0xbb,0x26,0x08, - 0xb0,0x30,0xc8,0x80,0xbf,0x3b,0x83,0x31,0x40,0x03,0x2a,0x49,0x0e,0xe7,0xe4,0x31,0x9e,0xf2,0x96,0xb1, - 0x4e,0xa0,0x65,0x67,0x87,0x7c,0x1b,0x51,0x6a,0x95,0xe7,0xb0,0xb2,0x67,0x9f,0x1e,0xd4,0x52,0xc1,0x76, - 0x4c,0x3c,0x2a,0x66,0x68,0xe1,0xb1,0xd6,0x75,0xf8,0xd3,0xd1,0xbe,0xc5,0x94,0x02,0xa1,0x1e,0x0b,0xcc, - 0xfe,0x2f,0xb4,0x65,0xff,0x91,0x84,0x3b,0x2e,0x7b,0xe6,0xf8,0x98,0x38,0x86,0x79,0xf9,0xb2,0x71,0xf2, - 0x60,0x11,0xd8,0x6b,0x22,0x68,0x4e,0x54,0x42,0x56,0x5e,0x04,0x76,0x6a,0x04,0xb5,0x6d,0x84,0x24,0xb4, - 0xce,0xb2,0x8c,0x79,0xe7,0xa8,0xdf,0xd0,0x1e,0x66,0x2b,0xc9,0xc3,0x7e,0xf6,0xe8,0xe8,0xe1,0x43,0xfa, - 0xd3,0x0d,0x8f,0xbe,0xf4,0x94,0xcb,0xca,0x4c,0xfc,0x16,0x64,0xe1,0xfe,0x7d,0x64,0x3d,0x0a,0xef,0x9b, - 0x12,0x89,0x29,0x51,0xf6,0xaa,0x95,0x0d,0x73,0xea,0xb3,0xb6,0xb4,0x61,0x42,0x29,0xd6,0x1d,0xef,0x7a, - 0xbd,0xf2,0x22,0x4e,0x6d,0xd7,0x43,0x92,0x5f,0x5d,0x71,0x5b,0x8b,0xc8,0x55,0xb6,0x35,0xdb,0xc6,0xf4, - 0x5b,0x0b,0xd5,0xf1,0xf9,0xf6,0xae,0xb0,0x62,0xad,0xb9,0x45,0x99,0xcd,0x5b,0x37,0x46,0x61,0x31,0x5a, - 0xe1,0xb5,0x67,0xfd,0xe7,0x2b,0x15,0xd4,0x00,0x21,0xc5,0xae,0x5f,0xdb,0x28,0xb8,0xcd,0x57,0x2e,0x03, - 0x5b,0x5a,0x03,0xb6,0xf0,0x56,0xe1,0x78,0x42,0xe4,0x42,0x34,0x95,0x6b,0x15,0x0f,0x3b,0xdd,0x84,0xca, - 0xbd,0xbd,0xd1,0x8c,0xb0,0x1d,0xbe,0xe9,0x2a,0x76,0x5b,0x4a,0x20,0x8a,0xe1,0x26,0x30,0x17,0x71,0xa9, - 0xeb,0x58,0xf3,0x6d,0x8c,0x44,0xd0,0xc1,0x96,0xa3,0xb0,0xf6,0xbf,0x8c,0x1f,0xc0,0x39,0x64,0x32,0x8e, - 0xdb,0xe7,0xa9,0xac,0x92,0x5a,0x9a,0xe4,0xd9,0x6c,0x64,0xaa,0x09,0xb9,0xb5,0x19,0xb5,0x97,0x52,0x96, - 0x16,0xed,0x23,0xc3,0xa0,0x88,0x2d,0x9d,0xc5,0x84,0x3f,0xf8,0xe9,0xac,0xe1,0xd1,0x5a,0x53,0xb6,0xb3, - 0x0c,0x51,0x7f,0x94,0x8a,0xb1,0xe3,0x70,0xfc,0x63,0x42,0x49,0x73,0xca,0x8e,0x07,0xce,0x0f,0xc7,0xc4, - 0x17,0xea,0x9f,0x1d,0x04,0x80,0xeb,0x38,0xdd,0xaa,0x40,0x4f,0x5d,0x3e,0x48,0x61,0xd2,0x7a,0x00,0x8d, - 0x37,0x9d,0xeb,0x04,0xc6,0x2b,0xbe,0x8c,0xb4,0x09,0x0d,0x70,0x79,0xed,0x96,0x5e,0xd7,0x39,0x4d,0x4f, - 0x53,0xa7,0x9b,0xfb,0xec,0x31,0xdd,0xa6,0x8e,0x3f,0xaa,0xd9,0x1d,0x7d,0x48,0x32,0x76,0x03,0xe5,0x3a, - 0x07,0xd1,0x3c,0x39,0x50,0x97,0xab,0xd3,0x04,0xe1,0xb6,0xb0,0x6f,0xa5,0xf2,0x66,0x4d,0x43,0xd0,0x4a, - 0xd2,0x92,0x44,0xf0,0xdb,0x53,0xfe,0xfb,0x7b,0xf5,0x05,0xec,0x81,0xfc,0x84,0x6f,0x2d,0x06,0x48,0xfb, - 0x80,0x3b,0x9e,0x1a,0xb6,0x45,0xb3,0x7e,0xd6,0xc8,0xab,0xeb,0xef,0x73,0x07,0x5f,0xd5,0xfc,0x2b,0xe3, - 0xb7,0x94,0xd4,0xf4,0x14,0x14,0xed,0xfc,0x59,0xc3,0x57,0x4f,0xe3,0x9f,0x39,0x74,0xa9,0xf5,0x57,0x86, - 0xad,0x14,0x72,0xf4,0x90,0x6b,0xe4,0xee,0x67,0x0d,0x5c,0x13,0x21,0x07,0xac,0xb1,0xda,0x32,0x7e,0x78, - 0xe1,0x69,0x9f,0x82,0x46,0x5e,0x86,0x1c,0x92,0xe4,0x9e,0xfa,0xb9,0x5a,0x6d,0x92,0x40,0xaa,0x44,0x3d, - 0x75,0xb5,0x3a,0xac,0xd1,0x42,0x9b,0x0e,0x86,0x4c,0x35,0x29,0xe4,0xd9,0xa1,0x76,0xfb,0xf9,0xa3,0x46, - 0xb6,0x89,0xb7,0x6b,0x87,0x46,0xae,0x95,0x38,0xc9,0x87,0x84,0x6d,0x4d,0x79,0x71,0x6e,0x7d,0xce,0xcf, - 0xc0,0x29,0x68,0x91,0xa4,0x57,0xfd,0xb0,0x46,0x87,0x10,0x97,0x94,0x67,0xfd,0x42,0xa6,0x9e,0x7d,0x52, - 0x9b,0xb8,0xb9,0x1d,0xeb,0x15,0x1e,0x1f,0x0e,0x0e,0x91,0xa2,0xa6,0x6d,0x5f,0x9a,0x1b,0x05,0x4d,0x31, - 0xa2,0x6d,0xae,0xe4,0x95,0xc8,0x3d,0xda,0x4b,0x68,0x2a,0x37,0xc5,0x9b,0xc9,0x6f,0x71,0x7c,0xe9,0x3d, - 0xa6,0xb1,0xa9,0xa7,0x22,0xf7,0xfe,0x46,0xd6,0xb5,0x79,0x2f,0x72,0x1f,0x6e,0xd6,0xd3,0x6f,0x46,0xee, - 0xd7,0x1b,0x79,0x13,0x79,0x36,0x72,0x8f,0xbe,0xda,0xc8,0x2a,0xf4,0xe3,0x91,0xfb,0x60,0xb3,0xc3,0x42, - 0x5e,0x90,0xdc,0xaf,0x36,0xba,0x83,0xcb,0xf1,0x6a,0xc1,0x31,0xaf,0x10,0x36,0x61,0x9f,0x0e,0xf0,0x36, - 0x84,0x1b,0xb0,0x6f,0xb0,0x69,0x7f,0x0d,0xf0,0x85,0xa8,0xff,0xdc,0xa3,0x6b,0xe6,0x22,0xd5,0xff,0xca, - 0x19,0xae,0x8f,0xbe,0x42,0x3f,0x4c,0xc6,0x7e,0x1e,0xf6,0x61,0x9d,0xff,0xf6,0xc3,0xdb,0x76,0x92,0x3c, - 0xdb,0x0e,0x68,0x07,0x7e,0xed,0xc1,0x67,0xb1,0x5b,0x76,0x76,0x13,0x74,0xd8,0x8f,0xf4,0xa1,0x52,0x67, - 0x29,0xb2,0xc3,0x7e,0x23,0x03,0x36,0xbe,0xec,0x9d,0x38,0x1f,0x10,0x15,0x11,0x14,0x3b,0xf4,0x05,0xeb, - 0xcb,0x90,0x83,0xea,0xd6,0xdc,0xce,0x13,0x93,0xea,0x27,0xdd,0xb0,0x58,0xe3,0xb2,0x8c,0x39,0xb8,0x71, - 0xdc,0xab,0x11,0xef,0x12,0x88,0x71,0x32,0xcb,0xe0,0x05,0xff,0x40,0x07,0x44,0xf0,0xac,0x62,0x0c,0x2d, - 0xeb,0x0d,0xb1,0x48,0xfb,0x2a,0xc5,0x8a,0x00,0xe6,0x88,0x12,0xf2,0x89,0x59,0xca,0xaa,0xcd,0x89,0xb7, - 0xda,0xbc,0x73,0xfc,0x8a,0xe7,0xb2,0x6f,0x94,0x9e,0x4e,0xad,0x31,0x61,0xb5,0x12,0x56,0x86,0x61,0xcd, - 0x6a,0x05,0x54,0xa2,0x30,0x6b,0xf5,0x1c,0x4a,0xa9,0x38,0xb7,0x5a,0x96,0x4e,0x15,0x56,0xae,0x96,0x85, - 0x14,0x70,0x76,0xb5,0xc4,0x64,0x6e,0x33,0x79,0xf5,0x5e,0x4c,0xba,0xe1,0xfb,0x6a,0xf9,0x2a,0x71,0xdd, - 0x04,0x1f,0x04,0xef,0xf9,0x44,0x68,0x6e,0x6c,0x0b,0x81,0xf2,0x06,0x09,0x5d,0x6d,0x04,0x11,0xca,0x7a, - 0x27,0xdb,0x6f,0x5a,0xc3,0x7b,0x99,0x5d,0x2c,0x3f,0xb6,0x8b,0x5a,0x2b,0xad,0x54,0xd7,0x69,0xb3,0xef, - 0x94,0xe9,0xf7,0x36,0xba,0xcb,0xa9,0xe9,0xe4,0xe0,0x00,0xea,0xf9,0x96,0xad,0xf3,0x2d,0x6b,0xf3,0x35, - 0x57,0x70,0x1b,0xbb,0x50,0x9b,0x6b,0x2b,0x5b,0xb7,0x15,0x76,0x15,0x47,0x41,0x7c,0xde,0x34,0xa6,0x23, - 0x69,0x12,0x0c,0xc1,0xae,0xb9,0x72,0xbb,0x4b,0x15,0xe7,0xa0,0x5e,0xbb,0xdb,0xf5,0xeb,0x09,0x2a,0x16, - 0xde,0x51,0x60,0x92,0xcd,0x70,0x42,0xe7,0xc0,0xb1,0x42,0x1a,0x74,0xee,0xb7,0x96,0xd9,0xaf,0x95,0x79, - 0xd0,0x5a,0xe6,0xf4,0xb4,0x56,0xe8,0x61,0x6b,0xa1,0x95,0xe3,0x37,0x67,0xba,0x5e,0xfb,0xf7,0xbf,0x3c, - 0xe4,0xe5,0xda,0xe4,0xb5,0xec,0xd5,0x62,0xbe,0xc0,0x2c,0x82,0xb2,0x1e,0xaf,0x96,0x88,0x5a,0x20,0xcc, - 0xa8,0x59,0x65,0x3c,0x92,0x08,0x85,0xde,0xe6,0x8c,0xb6,0x12,0x3b,0xe9,0x63,0xaa,0x2f,0x71,0xed,0xf5, - 0xcc,0x56,0x0a,0x72,0x4c,0x50,0xc1,0x2d,0x75,0x85,0x17,0x50,0xab,0xac,0x22,0xfe,0xdd,0xd7,0x91,0xfd, - 0xf4,0x91,0x23,0x48,0xeb,0xab,0x6d,0x50,0x0b,0xc4,0x7f,0x4c,0x58,0x41,0xb1,0xce,0xd7,0x2b,0x5c,0xaf, - 0x8c,0x31,0x48,0x1c,0xc1,0x40,0x87,0x01,0x6a,0x1b,0xe7,0xba,0x7d,0x09,0x8e,0xe3,0x0f,0xe5,0x5f,0x5b, - 0x86,0x0e,0x1f,0x97,0xcd,0x62,0x78,0xc1,0xd5,0x62,0x88,0xb1,0xe3,0x7d,0xe6,0xfa,0x7c,0x42,0xdb,0x50, - 0x17,0xa3,0x76,0xd5,0x7a,0x7d,0x42,0x05,0xd1,0x26,0xd3,0x55,0xee,0x7f,0x4a,0x95,0x9a,0x92,0x99,0xae, - 0xa9,0x57,0xbe,0xb3,0x6d,0x2e,0xc9,0x5c,0xc3,0xf7,0x27,0x74,0x51,0xd3,0x54,0xd3,0x5d,0x7c,0xf9,0x19, - 0x35,0x13,0xd1,0x5c,0xd3,0x55,0x9b,0xdb,0x7f,0xd7,0xfe,0x54,0xa0,0x81,0xd8,0x3a,0x1b,0xd2,0xfe,0x8f, - 0x5f,0xa3,0x03,0x4b,0x48,0x10,0x6f,0x48,0xa2,0x98,0xfd,0x0f,0xb6,0xb3,0x73,0x07,0x4a,0x2e,0xfc,0x99, - 0xf4,0x55,0x35,0x97,0xcf,0x25,0xad,0x9a,0x03,0x6c,0xc3,0xd0,0x77,0xcf,0x08,0xd4,0x46,0xe3,0x95,0xa3, - 0xfd,0x9a,0xe2,0x43,0xa4,0x56,0xca,0x46,0xfd,0x87,0x2c,0xb5,0xb3,0xe5,0xe5,0xe1,0xa1,0x12,0x0d,0x42, - 0x62,0x0f,0x0f,0x0e,0xd0,0xa0,0xea,0xa7,0x2a,0x68,0xbd,0xeb,0x4c,0x12,0x18,0xab,0x1a,0xc9,0x22,0x2d, - 0xa6,0x0a,0x73,0xff,0xf4,0xe6,0x05,0x67,0xcb,0x38,0xbe,0x43,0x31,0x8e,0xa6,0x15,0x17,0xf0,0xda,0xa0, - 0x04,0x17,0x2c,0xce,0xa6,0x09,0x05,0x0f,0xbe,0x8a,0x1f,0xfa,0x59,0xfa,0x4b,0x5d,0x56,0x5f,0x73,0xed, - 0xdb,0x1c,0x18,0x93,0x5f,0x39,0x8c,0x62,0xdd,0xa3,0xc3,0xc3,0x2f,0x04,0x33,0xc7,0xe3,0x03,0xc4,0xdd, - 0x2c,0x23,0x84,0x2a,0xeb,0x6f,0x5c,0xbb,0xd5,0xbb,0x0e,0x1c,0x4d,0xfe,0xef,0xbf,0x73,0xeb,0x9b,0xd1, - 0x7e,0xed,0x36,0xa6,0x65,0xc9,0x42,0xf1,0x7d,0xe7,0xca,0xd2,0xaa,0x52,0xbd,0xb8,0x64,0x07,0xe7,0x6b, - 0x91,0x27,0x2b,0xb9,0xea,0x5d,0xb7,0x35,0xc2,0x09,0xb6,0x88,0x63,0xc1,0x0a,0x4a,0xfc,0x85,0x86,0x44, - 0x56,0xd8,0xff,0xa6,0x98,0xb6,0x5d,0x1a,0xa7,0x21,0x54,0x49,0x27,0xe9,0x9a,0x3c,0x3c,0xf4,0xbc,0x75, - 0xed,0x3d,0xad,0x7d,0x78,0xec,0xc5,0xde,0xea,0x05,0x50,0xd9,0xd2,0x2d,0x9e,0x31,0xda,0x85,0xc9,0x87, - 0x16,0x09,0xbe,0x19,0x0f,0x8b,0x43,0x61,0xf1,0x2a,0x99,0x28,0xf5,0xc4,0x26,0xd4,0x63,0x4e,0x35,0x28, - 0xfd,0xb5,0xd7,0xd7,0x5c,0x40,0x29,0x5e,0x7e,0x35,0x1b,0x8f,0xc6,0xb7,0xb6,0x99,0x77,0x43,0x95,0x7a, - 0x92,0x0e,0x25,0x9e,0x52,0xff,0x23,0x3c,0x44,0x7e,0x50,0x6f,0x43,0x02,0xcb,0x26,0x3a,0xf2,0xcd,0xd6, - 0x6e,0x94,0x78,0xbb,0xd9,0x15,0xc6,0xbc,0x45,0xd6,0xbe,0x49,0x8d,0x8a,0xf9,0xf5,0x6d,0x43,0xf0,0x71, - 0x14,0x3f,0x90,0x88,0x59,0x08,0x6f,0xff,0x6f,0x50,0xda,0xd6,0x9e,0x7f,0x8c,0xca,0x56,0xbb,0x0d,0x99, - 0x74,0xf3,0x15,0x75,0x3b,0x20,0x4b,0x01,0x81,0xcc,0xe6,0xcb,0x59,0x45,0x79,0x33,0x8e,0x87,0x6e,0x40, - 0x11,0x1c,0x1c,0xe0,0x75,0x46,0xa9,0x03,0xd0,0xe4,0x0b,0x56,0x09,0x40,0x1a,0x2f,0xc5,0x34,0xce,0x20, - 0x2e,0x3d,0x78,0x5f,0x30,0x83,0x25,0xce,0x5d,0x83,0x5b,0xad,0x94,0x54,0x75,0xe9,0x5f,0xc6,0xe0,0x49, - 0x84,0x7c,0xef,0x55,0x2f,0x3e,0xeb,0x8d,0x95,0xda,0xce,0xd2,0xe2,0xe4,0xd2,0x7d,0x58,0xc0,0x33,0x76, - 0x2d,0xc1,0x44,0xd7,0x33,0xb2,0xf6,0x5a,0x36,0x7c,0x00,0xd1,0x40,0xaf,0xe2,0x32,0xbf,0x31,0x03,0xea, - 0x9b,0xc1,0xcc,0xa2,0x12,0x8e,0x81,0xa2,0xd2,0xaf,0x92,0x08,0x9b,0xa4,0xf8,0xf7,0x93,0xe5,0x17,0xf5, - 0x1d,0xd8,0xb2,0x6f,0x9b,0x2b,0x6e,0x31,0x4a,0x9f,0x20,0xdf,0x63,0x5f,0xbd,0xe6,0x1e,0xb2,0xf8,0xde, - 0x7e,0x75,0x6c,0x8d,0xa4,0xae,0x21,0x8b,0xd1,0xd4,0x5e,0x53,0x5c,0xd7,0x2c,0x56,0xcf,0xae,0xbf,0x8d, - 0xea,0x43,0xd5,0xac,0x51,0x97,0xc9,0xa5,0x5a,0x8e,0x90,0x87,0xdb,0x8a,0xd2,0xb1,0xeb,0x97,0x1f,0x11, - 0xce,0xe5,0x96,0x70,0xae,0x26,0x99,0xcb,0x6d,0xf9,0x99,0x11,0xcb,0xe5,0xd5,0xe4,0x30,0xa5,0xbc,0x21, - 0x64,0xcb,0x6b,0x0f,0x57,0x94,0x6d,0x04,0x77,0x7e,0x25,0xc0,0x0a,0xdc,0xbc,0x27,0x12,0xb8,0xc1,0x51, - 0x70,0xe8,0xad,0x10,0xb3,0x50,0xc4,0x6e,0x83,0xfb,0xea,0xb7,0x91,0xb5,0x0d,0x1e,0xea,0x12,0x4a,0xc0, - 0x36,0xf8,0x5a,0x25,0x88,0x54,0x6d,0x70,0xf4,0x95,0xfa,0xad,0x45,0x69,0x83,0x07,0xba,0x11,0x91,0x9f, - 0x0d,0xbe,0x42,0x13,0x74,0x74,0x37,0x90,0x4b,0x5d,0x58,0xeb,0x97,0xff,0x2e,0xcb,0xde,0x10,0xaa,0x7d, - 0x9c,0x69,0xa7,0x1b,0x91,0x8e,0xae,0xfd,0xc4,0xdd,0x7c,0xe1,0xd9,0xb2,0xf5,0x1b,0x3b,0x58,0x17,0xa8, - 0x56,0x12,0x54,0xc2,0x31,0x95,0xd8,0xf4,0xcb,0x87,0x0d,0xf1,0xa8,0x11,0x82,0xee,0x54,0x42,0xcf,0x1d, - 0x5b,0xc8,0xb9,0x63,0x09,0x35,0x77,0x8c,0x10,0x73,0xc7,0x92,0x59,0xee,0x18,0x11,0xa5,0x04,0xfd,0x90, - 0x70,0xad,0xad,0x53,0x8a,0x3f,0x3e,0x27,0x15,0xf5,0x25,0x46,0xd4,0x97,0x56,0x95,0x91,0x7f,0x4f,0x32, - 0xd5,0x14,0x4e,0xfa,0x1b,0x02,0xc7,0x7f,0x77,0xeb,0x37,0x84,0x8f,0x77,0x4b,0x6c,0xc6,0x75,0x89,0xe5, - 0xf6,0xed,0x97,0x11,0x7e,0x14,0x00,0xac,0x2d,0x9f,0x27,0x69,0x70,0xdf,0x1f,0x1b,0x4d,0x77,0x6b,0x67, - 0xb6,0xf4,0xb7,0xb1,0x37,0xcd,0x0e,0x6b,0xbb,0x03,0x1f,0x9d,0x09,0xa5,0x44,0x0c,0xee,0xad,0xcf,0xaf, - 0x8e,0xd3,0x47,0xb4,0x64,0x09,0x1a,0x90,0x76,0x43,0xa7,0xeb,0x68,0xb2,0xda,0xa2,0x2a,0xe2,0x83,0xaf, - 0x0e,0x3d,0x3f,0x91,0xa4,0xe8,0xbc,0xa0,0x71,0xfc,0x8f,0xaf,0x0e,0xb5,0x4c,0x16,0xd1,0xef,0xba,0x4e, - 0xe0,0xf8,0xc9,0xa3,0x23,0xdd,0xcc,0xa1,0xe3,0xf9,0x29,0x42,0x69,0xae,0x7d,0x0e,0x59,0x43,0x97,0x9f, - 0xd6,0x5f,0xb8,0x95,0x2d,0xda,0x5c,0x45,0x9b,0xea,0x04,0xb1,0x07,0xcd,0x58,0x0e,0xe4,0x5b,0x57,0x77, - 0xf8,0xfc,0xfa,0xc5,0xe7,0xf5,0xab,0xc2,0xfb,0x58,0xfd,0x1b,0x55,0x1f,0x7b,0x23,0xda,0xd4,0x1c,0x42, - 0xe7,0x6f,0x4e,0x37,0x86,0xef,0xa7,0xf5,0xff,0x07,0x0d,0xb3,0xd4,0xe3,0x07,0x09,0x02,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb2,0x36,0xfc,0x57, + 0x24,0xbc,0xbe,0x34,0x30,0x6a,0xd1,0x92,0x93,0xcc,0x9d,0x80,0x46,0xf8,0x7a,0x8d,0x9d,0x78,0x1b,0x5b, + 0x59,0x66,0x14,0x5d,0x1d,0x88,0x04,0x25,0xc4,0x24,0xc0,0x00,0xa0,0x96,0x88,0x7c,0x7f,0xfb,0x57,0x4f, + 0x55,0x6f,0x00,0x21,0x27,0x99,0x73,0xcf,0x77,0x7c,0x2c,0x02,0xdd,0x8d,0x5e,0xab,0xab,0x6b,0xef,0xdd, + 0xd9,0xaa,0x98,0x34,0x79,0x59,0x84,0x99,0x6a,0xa2,0xdb,0xa0,0x3c,0xfb,0x35,0x9b,0x34,0x41,0x92,0x34, + 0x37,0xcb,0xac,0x9c,0xed,0x64,0xd7,0xcb,0xb2,0x6a,0xea,0xc1,0x60,0x2b,0x67,0x51,0x4e,0x57,0xf3,0x6c, + 0x2c,0x3f,0x43,0x5d,0x2e,0x69,0xc2,0x28,0x0e,0x4c,0x9d,0xae,0xf0,0x34,0x9b,0xe5,0x45,0x36,0x18,0xc8, + 0xef,0x30,0x5d,0x4c,0xc7,0xf2,0x18,0x1e,0x9f,0x50,0xbb,0xf1,0x5d,0xed,0x8e,0xf5,0xef,0x30,0xbd,0xce, + 0x4b,0xa9,0x3d,0x73,0xcf,0x9b,0xb0,0xb9,0xc8,0x6b,0x65,0x87,0x10,0xdd,0x56,0x59,0xb3,0xaa,0x8a,0x1d, + 0x37,0xa8,0xe8,0xd6,0x3c,0xef,0x34,0x61,0x15,0xdd,0xe6,0xb3,0xb0,0x38,0xae,0x4e,0x22,0x5d,0x10,0xcf, + 0xa6,0xef,0xa3,0xcb,0xb4,0xda,0xc9,0x13,0x24,0x25,0xb7,0x3a,0x2d,0xbe,0xdd,0xa8,0x7c,0x1a,0x57,0x6a, + 0x5e,0xa6,0xd3,0x6c,0x1a,0xef,0x1e,0x6e,0x46,0xfa,0xd3,0x0c,0x9f,0x4e,0xd2,0xf9,0x3c,0xcc,0x4d,0x0d, + 0x2a,0x57,0xee,0xb9,0x89,0xe8,0x45,0x3e,0x4b,0x76,0x0f,0x5c,0xc6,0x06,0xcd,0x14,0xc9,0xad,0xad,0xa8, + 0x19,0x2e,0x12,0x9a,0xfc,0xe1,0x24,0x29,0xe8,0xef,0x32,0x09,0x02,0xd5,0x84,0x07,0x34,0xb8,0x63,0x7f, + 0x6d,0x54,0x11,0xdd,0xba,0x69,0x2e,0xc2,0xc3,0x68,0xa3,0xba,0xf9,0xc1,0xaa,0xce,0x76,0xea,0xa6,0xca, + 0x69,0x26,0x47,0x76,0xdc,0x15,0x66,0x01,0x8d,0x36,0x49,0x91,0x5d,0xed,0xa4,0xf4,0xaa,0x8a,0xa4,0x0c, + 0xd3,0xe1,0xb2,0x2a,0x9b,0x12,0x13,0x3e,0xac,0xb2,0xdf,0x56,0x59,0xdd,0x50,0xa7,0x4d,0xaf,0xd0,0xdf, + 0x26,0x2b,0xa6,0x61,0xa1,0xbc,0x82,0x32,0x2a,0x9b,0x43,0x6f,0xc5,0x46,0x4f,0x5b,0xf8,0x30,0x52,0x25, + 0xfd,0x7c,0x11,0xa9,0x94,0x7e,0xbe,0x8a,0x14,0xba,0xf9,0xf7,0x48,0x4d,0x92,0x2a,0xac,0xa3,0xd1,0x64, + 0xf8,0x98,0xd7,0x2d,0x55,0x93,0xe1,0xa4,0xca,0xd2,0x26,0x4b,0xfc,0x65,0xd2,0xcd,0x56,0x34,0x9b,0x8b, + 0xac,0x3a,0xcf,0xc2,0x5a,0x65,0x11,0x8d,0x71,0x32,0x7c,0x9a,0x16,0x93,0x6c,0x8e,0x06,0xa8,0x6a,0xf3, + 0x7a,0x54,0x7e,0xca,0x0a,0xa4,0x7d,0x89,0xb4,0xbc,0x76,0x85,0x0e,0x90,0x40,0xcb,0xd2,0x57,0xfb,0xfb, + 0xaa,0x5c,0xe4,0x75,0x86,0x6c,0x4a,0x45,0xe5,0xf5,0x92,0xba,0x32,0xc5,0x77,0xd4,0x61,0x37,0xbf,0x13, + 0xf7,0x3c,0x24,0x40,0x4d,0x57,0xf3,0x26,0x99,0xfc,0xa5,0x09,0x97,0x16,0x83,0x63,0x01,0xec,0x9d,0xc7, + 0x55,0x95,0xde,0x9c,0x10,0x7c,0x27,0x2b,0x01,0x1a,0x6a,0xde,0x7e,0x90,0x7b,0x5d,0x2c,0x56,0xf3,0xf9, + 0x6e,0x92,0x64,0x3d,0x3b,0x2e,0x73,0x5f,0x94,0x3d,0x4d,0xbc,0xd0,0x99,0x77,0xb5,0x92,0xca,0x16,0xc7, + 0x0e,0xb0,0x6d,0x5c,0x96,0xf9,0x74,0xe7,0x00,0xcf,0x11,0xa5,0x9b,0x16,0x77,0x6d,0x8b,0x83,0x41,0x98, + 0x25,0xc7,0xd9,0x49,0xa4,0x30,0xa8,0x68,0x56,0x56,0xa1,0x80,0x2f,0x01,0x74,0x92,0x0d,0xe7,0x59,0x71, + 0xde,0x5c,0x8c,0x8a,0x47,0xf9,0xa8,0xd8,0xdb,0x8b,0x1a,0x69,0x14,0xd5,0xab,0xec,0xb8,0x38,0x51,0x05, + 0xad,0xe1,0x28,0x9b,0xd3,0x24,0x99,0x2f,0xcb,0x9d,0x9c,0xb6,0x4e,0xf4,0x8e,0x1b,0xf2,0x00,0xf0,0x22, + 0xad,0xdf,0x5d,0x15,0xb4,0x3e,0xcb,0xac,0x6a,0x6e,0x74,0xe7,0x55,0x19,0x0d,0x06,0xed,0x4a,0xcb,0x13, + 0x55,0x52,0xa5,0x0c,0x74,0xb5,0x40,0x1b,0xed,0x9b,0x90,0xa0,0x60,0x95,0x6c,0x55,0xda,0x94,0x1f,0x69, + 0x6d,0x8a,0xf3,0x91,0x5b,0xd8,0xdb,0xbc,0xe6,0xa5,0xa0,0x2d,0xad,0x9f,0x9e,0xac,0x66,0xb3,0xac,0x8a, + 0xb7,0xa1,0xa5,0xbd,0x76,0x52,0xac,0x33,0xb7,0x54,0x87,0xfe,0x7c,0x42,0x8f,0x2f,0xca,0x6a,0xf1,0x2c, + 0x6d,0xd2,0xbe,0xba,0x56,0x85,0xe0,0xbb,0xa9,0x9b,0x5c,0x53,0x7c,0x30,0xc8,0x68,0x52,0xea,0x06,0x10, + 0xec,0x25,0x6f,0xda,0x1d,0xfc,0x31,0xcf,0xae,0xfe,0x64,0xc5,0xde,0x57,0x83,0x81,0xf7,0x42,0xdb,0x04, + 0xb5,0x8c,0xb7,0x93,0xa8,0xbe,0x98,0xd6,0x3a,0x1b,0x9e,0xe9,0xaf,0xcc,0x93,0xdf,0x31,0xef,0x33,0xf4, + 0x4d,0xa6,0xb6,0xaf,0x4b,0x35,0xe7,0xf8,0x70,0x4b,0xc5,0xdf,0xae,0x16,0x67,0xfd,0xd3,0x5c,0x70,0x4e, + 0xa7,0xb8,0xac,0x65,0x4c,0x08,0xb5,0xfe,0xc1,0x8c,0xb0,0xe7,0xe3,0x1d,0x01,0x60,0x5a,0x14,0xfe,0x8a, + 0xe6,0x2d,0xfb,0xdc,0x4a,0x22,0x7f,0x7b,0x09,0x5f,0xe4,0xf3,0xcf,0x7e,0x85,0xfc,0x9e,0x85,0x9f,0x97, + 0x67,0x9f,0xfb,0x0a,0xf9,0x3d,0x6d,0xe9,0x0f,0xe2,0x52,0xa6,0x30,0x4b,0x17,0x7d,0xc3,0x02,0x46,0x18, + 0x0c,0x68,0x97,0x0f,0x97,0xf9,0x52,0xbe,0xfc,0xe1,0xc3,0xeb,0x8f,0x59,0x5a,0x4d,0x2e,0xde,0xa7,0x55, + 0xba,0xa8,0xff,0x24,0x2c,0x74,0xbe,0xea,0xc0,0x5a,0x27,0x57,0x96,0x35,0x2d,0xa6,0x69,0x35,0x7d,0x52, + 0x95,0x57,0x75,0x56,0x3d,0x2f,0x2e,0xe3,0xad,0xf3,0x35,0xf4,0x5a,0xb2,0xcb,0x56,0xa4,0x97,0xf9,0x79, + 0xda,0x94,0xd5,0x7a,0x1d,0x7c,0xc8,0xd2,0x49,0xf3,0x36,0x6d,0xf2,0xcb,0x8c,0xba,0x92,0xd8,0x2c,0xec, + 0xcd,0xe9,0x6a,0xd2,0xd0,0xd8,0xfa,0x3a,0x7b,0x95,0x17,0xd3,0xf2,0xaa,0x3f,0x6f,0x5a,0x4e,0x56,0x8b, + 0xac,0x68,0x08,0x09,0x97,0xd5,0xf3,0x74,0x72,0x11,0xa7,0x8a,0x0f,0x0a,0xdb,0xbd,0x9d,0x2c,0x6c,0x9d, + 0xf6,0x8d,0xaa,0x7a,0x08,0x1a,0x1c,0xef,0x3d,0xb8,0xb5,0x19,0xf3,0xb9,0x9f,0x31,0x75,0x00,0x8a,0x84, + 0x5f,0x9b,0x8d,0xc3,0x78,0x44,0x09,0x54,0x8c,0xf6,0xd2,0xea,0x9c,0x7b,0x52,0x1b,0xf4,0x57,0x11,0xfa, + 0xab,0x08,0xfd,0xa5,0xa1,0xcd,0x92,0x4a,0xcc,0x59,0x5a,0x6c,0x94,0x1c,0x99,0x71,0xf7,0x00,0xd1,0x05, + 0x52,0xea,0xac,0xcd,0xe2,0x7e,0x83,0xba,0x48,0x0a,0xea,0xe8,0x36,0x2d,0xd5,0x8c,0xeb,0x10,0x1f,0xc7, + 0xcd,0x86,0x8e,0xac,0x8d,0xa2,0xdd,0xd6,0x0b,0x43,0x38,0xd5,0x97,0xf3,0x74,0x92,0x85,0x0f,0xfe,0xe7, + 0x97,0xfa,0x6f,0x0f,0x54,0x10,0x44,0x2e,0x89,0x52,0xee,0x71,0xd2,0x66,0xd3,0x3e,0xd7,0x3a,0xa7,0x9a, + 0x43,0x9d,0xed,0x42,0x5d,0x4a,0x8b,0xa6,0xde,0x4e,0x15,0xc8,0x0c,0xc6,0x16,0x61,0x77,0xae,0x22,0xcc, + 0x21,0x4d,0x58,0x61,0xe7,0x8e,0xe6,0x8d,0xa7,0xda,0x9f,0x3a,0x4b,0x62,0x0d,0xd3,0xe5,0x72,0x7e,0xc3, + 0xa3,0xdd,0xee,0xa6,0x5d,0x6a,0x6f,0xd0,0xbb,0xbb,0xd9,0x70,0x52,0x12,0x80,0x57,0x04,0x65,0x65,0xd5, + 0x3b,0x7f,0xad,0x12,0x43,0x83,0xc1,0x81,0xf3,0xfa,0xd2,0xb1,0x6f,0xfb,0xe6,0xa0,0x73,0x60,0xe3,0xa4, + 0x44,0xea,0x7a,0x1d,0x36,0x44,0xcd,0xf5,0x2d,0xdb,0x10,0x94,0xc6,0x0b,0xa2,0x08,0x9b,0xd7,0xcf,0xfb, + 0x17,0x76,0x58,0xcf,0xf3,0x09,0xd5,0x44,0x30,0x20,0x8f,0xe1,0x81,0x3a,0x88,0x22,0xaa,0x14,0xe3,0x3a, + 0x35,0x5d,0x8a,0x98,0x52,0x6d,0x36,0x7f,0x89,0x1e,0x01,0xa5,0x6c,0x48,0x99,0x1a,0xf4,0x26,0xde,0xf3, + 0xa2,0xc9,0xaa,0x49,0xb6,0xa4,0x01,0xd3,0xd1,0xa8,0x89,0xc0,0x98,0xa9,0x44,0x55,0x65,0xf5,0x92,0xe6, + 0x23,0x93,0xd7,0x8d,0x25,0xf3,0xfe,0x2e,0x64,0xde,0x43,0x21,0xf3,0x0e,0xff,0x5b,0xe8,0xbc,0xc3,0x7f, + 0x10,0xb4,0x6f,0x13,0x94,0xad,0x09,0xdb,0x3e,0x18,0x98,0xbc,0x28,0x35,0xc1,0x77,0xbb,0xaa,0xe6,0xb1, + 0x03,0x83,0x83,0x93,0x8d,0x72,0x6f,0x87,0x27,0x51,0xa4,0xbc,0xc2,0xb9,0x6a,0x0d,0x48,0xdd,0x2e,0xb2, + 0xe6,0xa2,0x9c,0xc6,0xc1,0x79,0xd6,0x04,0x1b,0x90,0x8e,0x43,0x49,0x21,0x2a,0x45,0x1e,0x88,0x1a,0x78, + 0x5d,0x5e,0x65,0xd5,0xd3,0xb4,0x26,0x44,0x21,0x53,0x98,0x1c,0xd7,0x4a,0x4e,0x10,0xa2,0x55,0x12,0x43, + 0x1d,0xd2,0xc8,0xcb,0xf9,0x65,0x46,0x5d,0x1e,0x01,0xa6,0xb7,0x66,0xca,0x0c,0x6e,0xa8,0x31,0x51,0xe8, + 0x0f,0xb2,0x19,0xae,0x8a,0xfa,0x22,0x9f,0x35,0x84,0xbb,0x67,0xab,0xf9,0x2c,0x9f,0xcf,0xb3,0xa9,0x42, + 0xa5,0x40,0x38,0xd9,0x34,0xa2,0x4d,0xdb,0x57,0xa3,0x4c,0xf6,0x1d,0x55,0x2e,0x57,0xf5,0xc5,0xdd,0xf5, + 0x8d,0x1a,0xb3,0x9b,0x22,0xda,0x7b,0xc3,0xe6,0x22,0x63,0x00,0xe2,0x4e,0x50,0x63,0xe6,0xc9,0x47,0x47, + 0xa5,0x6d,0xe8,0x38,0x98,0x66,0xf3,0xac,0xc9,0x02,0xc5,0x53,0xa7,0x82,0x0b,0x82,0x52,0xfa,0x29,0x97, + 0x68,0xbe,0x0e,0x4e,0x54,0x0b,0xe6,0xdd,0x12,0x13,0x55,0x98,0x78,0x38,0xcb,0x21,0x33,0x1e,0x9d,0x9e, + 0xa2,0xd0,0xac,0x57,0xb1,0x5e,0x13,0x02,0x35,0xab,0x94,0x29,0xac,0x35,0xe1,0x2f,0xda,0xd6,0x51,0xab, + 0x33,0xcb,0xb2,0x46,0x27,0x96,0x2b,0xfe,0x9b,0x36,0x93,0x8b,0x3f,0xdf,0x03,0xe0,0xcd,0xcf,0xf5,0xa1, + 0xea,0xeb,0x83,0x9a,0x82,0x62,0x2b,0x74,0x57,0xdc,0x4e,0xaf,0xfe,0xc2,0xee,0x02,0x36,0xda,0xcd,0x87, + 0x1e,0xa9,0xc2,0xc7,0x77,0x27,0xe5,0x38,0x78,0x5a,0xd2,0x9a,0x17,0xcd,0xfe,0x11,0x75,0x3e,0x38,0x89, + 0x00,0xfd,0xdd,0xc4,0xa4,0x89,0xba,0x0c,0xd5,0x7f,0x63,0xa7,0xdd,0xb6,0xcb,0xc5,0x01,0x30,0x63,0x3e, + 0x49,0xd1,0x85,0x07,0xd7,0xfb,0x57,0x57,0x57,0xfb,0x34,0x89,0x8b,0x7d,0x1a,0x53,0x56,0x4c,0x4a,0x62, + 0x3a,0x69,0x17,0xd0,0x9e,0x4e,0xa7,0xe9,0xb2,0xf1,0xe9,0x2e,0x61,0x05,0xb3,0xd1,0xdd,0x24,0xc3,0xcf, + 0x6f,0x5e,0xbf,0x6c,0x9a,0xe5,0x07,0x99,0xbd,0x71,0x46,0x5d,0xf8,0x07,0x71,0xe8,0x3d,0x25,0x69,0x25, + 0x26,0x59,0x5d,0xf3,0x2e,0x46,0x21,0x1c,0x47,0x80,0xb8,0x2a,0x2d,0x6a,0xf4,0x46,0x57,0x11,0x1f,0xf7, + 0x1e,0x1d,0x25,0xad,0x59,0x7b,0x54,0xe0,0x2d,0x1d,0x19,0xcd,0xd8,0x14,0x09,0x1e,0xe1,0x69,0xd3,0x3a, + 0xaf,0x42,0x49,0xd9,0x57,0x50,0x6c,0xae,0x28,0x11,0x62,0xf4,0x32,0xce,0xe2,0x4e,0x65,0x9a,0xf2,0x1d, + 0x1b,0x62,0x97,0xf3,0x3b,0x24,0x11,0xf2,0xc3,0x0a,0x3d,0xfd,0xc3,0x09,0x1f,0x4d,0x2e,0xd2,0xaa,0xce, + 0x9a,0x64,0xd5,0xcc,0xf6,0xff,0x11,0x00,0x98,0x0c,0x03,0x42,0x9b,0x8f,0x2b,0x17,0xaa,0xb6,0xbf,0xce, + 0x5f,0xeb,0xb2,0xd8,0xaa,0xe2,0xbb,0x8f,0xef,0xde,0x0e,0x05,0x6d,0xe6,0xb3,0x1b,0xb0,0x60,0x71,0xb6, + 0x39,0xf1,0x67,0x58,0x23,0xe9,0x63,0x7f,0x8f,0x80,0x95,0xdb,0xc2,0xb5,0x51,0x53,0xdd,0xdc,0x66,0x09, + 0xd7,0xb8,0x44,0x2b,0x38,0xd9,0x26,0xd8,0x61,0xf8,0x64,0x63,0x8e,0x5c,0xd4,0x9e,0x2f,0xb2,0x72,0xd5, + 0xc4,0x07,0xea,0xba,0xae,0x66,0x4f,0xcb,0xf2,0x53,0x9e,0xbd,0x4d,0x17,0x59,0x1c,0xfc,0xfc,0xf1,0xc3, + 0x8b,0xfd,0xa3,0x77,0xdf,0x3f,0x7f,0x1b,0x70,0xde,0x4b,0xc2,0x15,0x59,0xa5,0xf3,0xf6,0xfd,0xdc,0x45, + 0x7a,0xad,0x97,0xf6,0x35,0xa3,0xa6,0x78,0xff,0x50,0x5d,0xa6,0xf3,0x9c,0x76,0x5b,0x46,0x24,0x66,0xb3, + 0xea,0x23,0x60,0x77,0xb2,0x6f,0x92,0x87,0x07,0x07,0x74,0x14,0x3f,0xfa,0xe2,0xe0,0x60,0xb3,0x19,0xd5, + 0xc3,0x0b,0x6e,0x81,0x00,0x79,0x52,0x2e,0x16,0x44,0x36,0xdf,0x3e,0x9e,0x00,0x67,0xc6,0x5b,0x53,0xa7, + 0x76,0x1a,0xa2,0xb1,0x1e,0x10,0x75,0x93,0xd3,0xf3,0xdf,0x1e,0xfc,0x2d,0xa0,0xf3,0x31,0xff,0x03,0x34, + 0xd7,0x46,0x2d,0xb6,0x35,0x20,0x96,0x5b,0xa0,0x83,0xfc,0xaf,0x60,0xa6,0xd6,0xe7,0x46,0x8a,0x91,0x46, + 0x2d,0xac,0x52,0xff,0x01,0x56,0xc1,0xde,0xac,0x78,0xeb,0xdf,0x4d,0x78,0xd9,0x3e,0x65,0xae,0x2e,0xc1, + 0x7d,0x44,0x6a,0x37,0x83,0x41,0x45,0x60,0xf7,0xc3,0x72,0x69,0x4e,0x3a,0xe2,0x40,0x9a,0x76,0x0a,0xe3, + 0x9d,0x86,0xc8,0x4b,0x25,0x73,0xc2,0xa2,0x2c,0xea,0xe7,0x1f,0x11,0x14,0xae,0x73,0x0a,0xe8,0xe9,0x6b, + 0x41,0x4f,0x87,0x86,0x12,0xf8,0x42,0x53,0x02,0x5f,0x0a,0x4b,0x7e,0x78,0x00,0x9e,0xfc,0x73,0x64,0xbe, + 0xfc,0x0e,0xcf,0x9a,0x32,0x6d,0xbd,0x0c,0xcf,0xe8,0x39,0x94,0x04,0xda,0xc3,0x54,0xd5,0x57,0xfd,0xd3, + 0xe1,0x68,0x30,0x22,0x51,0xf4,0xe9,0x1d,0x7a,0x27,0xc2,0x5c,0x90,0xdd,0x8c,0x68,0x00,0x60,0x79,0x05, + 0x62,0x40,0xaf,0xd1,0xa8,0xf2,0x31,0xcd,0x2c,0x82,0x68,0x92,0xe7,0x62,0xda,0xc5,0xc8,0x3c,0xec,0x25, + 0xd3,0xb4,0x6d,0xcc,0xa8,0x2e,0x92,0xa0,0x2c,0x40,0xd4,0xdd,0x10,0x43,0xd5,0x64,0xb4,0x77,0x8b,0x73, + 0x02,0xb0,0xcb,0x64,0xf7,0x70,0x84,0x2d,0xd8,0xc3,0x24,0xc9,0xa0,0x88,0x9e,0xd3,0xc3,0xfd,0xf9,0x59, + 0xb9,0x20,0x80,0xd5,0x35,0x12,0xe7,0x74,0x95,0x37,0x17,0x4f,0xab,0x6c,0x4a,0xed,0xe7,0xe9,0xbc,0x0e, + 0xf2,0x62,0x67,0xb9,0x5e,0x13,0x1a,0x1a,0x12,0xa2,0x01,0x75,0x29,0x3d,0xe9,0xfd,0x5c,0x3a,0x04,0x91, + 0x23,0x77,0xe2,0x40,0x2d,0x87,0x65,0x41,0x38,0xfa,0x9c,0xa8,0x0b,0x6f,0xda,0x68,0xb3,0x73,0x8e,0xde, + 0xe6,0xad,0x0c,0xc0,0x6a,0xba,0x22,0x3a,0x9d,0x27,0x6e,0x91,0xc8,0xdb,0x90,0xa0,0xa0,0x2a,0x68,0x97, + 0x53,0x07,0x03,0x75,0x6e,0x52,0x97,0x69,0x5d,0x5f,0x95,0xd5,0x14,0xa9,0xa3,0xe9,0xf0,0x31,0xa5,0x95, + 0x55,0xfe,0x3b,0xef,0xc9,0x24,0x78,0x92,0xd6,0xf9,0x64,0x27,0xd8,0x5b,0x85,0x8b,0x3d,0x3a,0xaf,0xf6, + 0xce,0xa3,0x0d,0x4d,0x0a,0x35,0xbc,0x24,0xf2,0xc4,0x23,0xca,0x3c,0xc0,0x54,0xa5,0x8c,0x93,0x3a,0xb1, + 0x64,0xec,0x6b,0x1f,0x3e,0x66,0x15,0x4d,0x47,0xfe,0x3b,0x11,0xbf,0x6a,0x97,0x00,0x6b,0x39,0x34,0xbd, + 0xcf,0xcc,0x93,0x5a,0x1e,0x5f,0x9c,0xf8,0x83,0x41,0x6b,0x04,0xea,0x5f,0xd2,0x06,0x58,0x32,0xed,0x7d, + 0x03,0xc4,0x43,0x63,0xb8,0xc4,0x0e,0x80,0xd0,0x6b,0x39,0xac,0x19,0x15,0xad,0xd7,0x4b,0x4b,0x81,0x11, + 0xfe,0x1f,0x0c,0x0e,0xf4,0x37,0x36,0x89,0xa8,0xb5,0x69,0x76,0xfd,0x8e,0x16,0x75,0x06,0x61,0x41,0x40, + 0x44,0xf9,0xad,0xf0,0x3a,0x40,0x27,0x8f,0xe7,0x73,0x83,0x88,0x05,0x23,0xca,0xba,0x8d,0x53,0x1a,0x6e, + 0x6f,0x36,0xce,0x03,0x16,0x68,0x55,0xc9,0x2d,0xd3,0x1f,0x99,0x6d,0x0c,0x40,0x47,0xdc,0x01,0x90,0x19, + 0x58,0xe7,0x76,0xc6,0xd8,0x75,0x2a,0x76,0x8f,0x47,0x54,0x56,0xc9,0x48,0xe2,0xc3,0x87,0x0f,0xbf,0x48, + 0xdc,0xc8,0xc6,0x0f,0x0f,0xbe,0x8c,0xcd,0x8b,0x2e,0x83,0xe2,0x5b,0xe5,0x82,0xb7,0xe5,0x8e,0x86,0xfb, + 0xc0,0x7e,0xc0,0x15,0xeb,0x0d,0x13,0x17,0x8a,0xd8,0xa3,0x59,0x7e,0x4e,0x84,0x93,0x61,0x14,0x96,0x9b, + 0x51,0x8e,0x6d,0x46,0xc8,0x47,0x11,0x5c,0xd2,0x80,0x36,0x02,0x5a,0x59,0x55,0x95,0x95,0xbf,0x16,0xf3, + 0x70,0x12,0x06,0x6f,0xb3,0x86,0xc0,0xe5,0xd3,0xce,0x73,0xe4,0x06,0x2a,0x53,0x3c,0x05,0xcb,0xc8,0x7e, + 0x7c,0x17,0x58,0xf2,0xd7,0x3a,0x7d,0x87,0x76,0x51,0xb0,0x67,0x57,0x7d,0x2f,0x58,0xd4,0x3b,0xd9,0xf5, + 0x24,0xcb,0x40,0xf2,0x50,0x9d,0xc1,0xf3,0xa7,0xef,0xde,0xbe,0x7d,0xfc,0xe4,0xdd,0x87,0xa3,0xe7,0xcf, + 0x82,0x56,0xed,0xd5,0xb0,0x4f,0xbc,0x11,0xea,0xa5,0xbc,0x01,0xce,0x22,0xe6,0xe6,0x2c,0x21,0x20,0xec, + 0x6c,0x43,0xb7,0x03,0x23,0xf0,0x89,0xed,0x63,0x71,0x7c,0xc3,0xd0,0x15,0x76,0xd3,0xa3,0x58,0x58,0x8b, + 0xd1,0x19,0x81,0xdb,0xf4,0x58,0xb2,0xdd,0x89,0x79,0x92,0x9c,0xf1,0x8e,0x08,0xe8,0xbc,0xd7,0x1b,0x58, + 0x32,0x19,0x76,0x80,0xc6,0x0d,0x9e,0x9f,0x76,0x18,0x5f,0x2b,0xf3,0x9a,0x11,0xa0,0x4c,0x34,0xb2,0x02, + 0x82,0x09,0x34,0xae,0xf7,0xf8,0x9c,0xb1,0x45,0x6b,0xcd,0x09,0xd6,0xb5,0xd3,0x16,0xad,0x5e,0x26,0x27, + 0x54,0x67,0xc4,0xd4,0xe5,0x65,0x37,0x2d,0xc1,0xce,0x6b,0x03,0x24,0x13,0x15,0xcb,0x56,0x52,0x07,0x64, + 0x35,0x89,0x21,0x82,0xe7,0x00,0x27,0xf5,0x36,0x58,0x47,0xcd,0x05,0x2d,0x07,0x71,0xb4,0xbd,0xdc,0x7a, + 0x59,0x3c,0x2b,0xaf,0x18,0xad,0xbd,0xd7,0xb8,0x6c,0x30,0x58,0x0e,0xd3,0xe9,0xf4,0xf9,0x25,0xc8,0x8b, + 0xbc,0xa6,0xf1,0xd3,0x48,0x02,0x83,0xe9,0x08,0x0a,0x7a,0xbe,0x89,0xfa,0x78,0x72,0x14,0xfc,0x61,0xd9, + 0xad,0x7a,0xc5,0x29,0xee,0xe9,0x0f,0xdb,0x6a,0x57,0x81,0x39,0x9a,0x38,0x25,0x05,0x0b,0x16,0xdc,0x2b, + 0xd8,0x17,0xe6,0x32,0x99,0x4d,0xf3,0xcf,0xb2,0x25,0xcf,0x79,0x7a,0x46,0x87,0x1c,0xa1,0x42,0x08,0x0c, + 0x35,0xe4,0x62,0x81,0xfc,0x35,0x0f,0x67,0x92,0xac,0xb0,0x9e,0x74,0x52,0xce,0xfe,0xc2,0xd9,0x4d,0xa7, + 0xf2,0x1d,0x94,0x05,0x3e,0xd1,0x9c,0xc7,0x50,0x76,0xfa,0xb0,0x4d,0xb0,0x8d,0x0a,0x8d,0x16,0x88,0xb3, + 0x19,0x0c,0x76,0xf3,0xd0,0xbc,0x47,0xe3,0x86,0xc8,0xd9,0x40,0x03,0xd6,0xce,0x2c,0x25,0x14,0x39,0xdd, + 0x01,0xf0,0xec,0x48,0x81,0x1d,0xd0,0xc7,0xb4,0x6b,0xcd,0x07,0xca,0xb4,0x20,0x18,0xa0,0xb0,0xea,0xa7, + 0x02,0xf4,0x6d,0x58,0xfc,0xf9,0xd1,0x1c,0xde,0x3d,0x1a,0x95,0xab,0x52,0x46,0x94,0xf2,0x91,0xc9,0x58, + 0x07,0x3c,0xbd,0xd5,0x34,0xa5,0xb6,0xd8,0x7f,0x22,0x02,0x03,0xbf,0xa9,0x72,0x4f,0xda,0x26,0x43,0x4a, + 0x28,0x03,0x04,0xd6,0x10,0x63,0x4e,0x0a,0xd9,0x30,0x22,0x0b,0xa9,0xbc,0xcd,0x93,0xe4,0xc4,0x2b,0xfd, + 0x07,0x0a,0xa5,0x1d,0x61,0x36,0x7e,0xf8,0xf0,0xea,0x69,0xb9,0xa0,0x9a,0x08,0x2a,0x29,0xd3,0x89,0xf5, + 0xfe,0xeb,0xcb,0x83,0x07,0xe7,0xb9,0x0a,0xfe,0xaf,0x2f,0xeb,0xfb,0xaf,0x2f,0x1e,0x73,0x62,0xdc,0x4a, + 0x7c,0xf8,0xe5,0x83,0x73,0x15,0xdc,0x6b,0xa7,0x3d,0xe5,0x82,0xaa,0x9d,0x78,0x80,0x82,0x7b,0xad,0xb4, + 0xaf,0x9e,0x70,0xc1,0xe3,0x76,0xe2,0x33,0x4e,0x3c,0x09,0x7c,0x1e,0xf6,0x33,0xe0,0x46,0x18,0x61,0xb7, + 0x31,0xaa,0xd8,0x8c,0x57,0xb5,0x04,0xe5,0x54,0x44,0x20,0x2c,0x1b,0xad,0x3a,0xa2,0x84,0x3e,0xc6,0xac, + 0x89,0xa8,0x54,0xe3,0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xf1,0xc9,0xc8,0xd1,0xee,0x4d,0x67,0x71,0xfb,0xd4, + 0x5f,0xb4,0x64,0x96,0x3b,0x64,0xe6,0x3d,0x6c,0xf6,0x92,0xe0,0xf8,0x44,0xf3,0xa4,0x26,0x9d,0x08,0x30, + 0xad,0x0f,0xcb,0xfb,0xc8,0x70,0xf0,0x5e,0x43,0x51,0x43,0x30,0x63,0x09,0xea,0xa4,0x7c,0xf5,0xf1,0x9d, + 0xe9,0x62,0x9b,0x09,0x64,0xbe,0x79,0x9b,0xc3,0x83,0xbe,0x15,0xf2,0x1e,0x42,0xce,0xd1,0x5e,0x90,0x04, + 0x7b,0xac,0x7a,0x83,0x80,0x02,0x04,0x77,0x3a,0xfc,0xb5,0xcc,0x8b,0x30,0x18,0xd0,0x24,0x1b,0x46,0x1a, + 0x15,0xed,0x25,0xe1,0xfe,0x21,0xf4,0x20,0x8e,0x54,0x19,0x07,0xd1,0x98,0xfe,0xc4,0x28,0xbb,0x57,0x46, + 0x7f,0x0c,0x70,0x2d,0x02,0xff,0x38,0x48,0x41,0xcd,0x06,0xa9,0x4f,0xd6,0xd1,0xbb,0x39,0x70,0x44,0xe4, + 0xe4,0x25,0xf0,0x09,0xa4,0x82,0xac,0x49,0xcf,0xf1,0x73,0xbd,0xcc,0x09,0xd8,0xe9,0x69,0x46,0x08,0x0f, + 0x0c,0x97,0xf0,0x4f,0xf9,0x6c,0x7f,0x51,0x4e,0xf3,0x59,0x9e,0x4d,0xf7,0xeb,0x9c,0xd0,0xa2,0xa4,0xad, + 0x8a,0xad,0xd4,0x79,0x5a,0x37,0xb6,0x2c,0xde,0xcb,0x89,0xe9,0x03,0x71,0x97,0xe0,0xbe,0xaf,0xe8,0x20, + 0x47,0x0b,0x84,0x52,0xaf,0x6f,0xf6,0xbb,0x1d,0xad,0x32,0xe2,0xe9,0xe9,0x38,0xc5,0x13,0x1d,0x53,0xfb, + 0xe9,0xac,0xe1,0x37,0x10,0xb3,0xfb,0x34,0x36,0xa2,0x74,0x4e,0xee,0x60,0x2b,0x58,0x38,0x48,0x1b,0xbc, + 0x84,0xe4,0xc5,0x69,0xfc,0x89,0x6b,0x77,0xab,0x3e,0xac,0x89,0x01,0x6d,0xc2,0xe0,0x97,0x82,0x60,0xa4, + 0xc3,0x7d,0x97,0xfe,0x32,0xd0,0xae,0x53,0xb4,0xf9,0x87,0x90,0xd3,0xe3,0xb3,0xd5,0x19,0xcd,0x77,0x78, + 0x40,0x68,0x27,0x6a,0x9f,0xd5,0xaa,0xd8,0x2a,0x55,0xee,0x1d,0x12,0x40,0xc8,0xe1,0x99,0xd2,0x11,0xce, + 0x42,0x25,0x5d,0x71,0x13,0x7d,0x93,0x1c,0xe8,0xdd,0x33,0x42,0x66,0x02,0x52,0x62,0x7f,0xc2,0x04,0x08, + 0x93,0x02,0x63,0xfe,0x66,0x8c,0x3f,0xf1,0xf1,0x49,0x04,0x0c,0x45,0x53,0x18,0x1e,0x17,0x27,0x51,0x6c, + 0x73,0xf6,0x02,0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xf3,0x50,0xe2,0xcd,0xde,0x5d,0xb4,0xd5, + 0xd8,0x57,0x10,0x38,0x45,0x8d,0xb5,0x48,0xc8,0xac,0x50,0x92,0x77,0x20,0x0d,0xe0,0x71,0x43,0xed,0x9c, + 0xad,0x68,0x07,0x05,0x17,0xb4,0x84,0x01,0x8c,0x0c,0x1a,0xe2,0xa7,0xf1,0x82,0x6d,0x77,0x47,0x91,0x5b, + 0x3c,0xc5,0x52,0x4c,0xb1,0x88,0x70,0x52,0xce,0xe9,0xdd,0x3c,0x8e,0xdd,0xa3,0xc3,0x58,0xb1,0xa8,0x40, + 0x62,0xe2,0x6a,0x00,0x9e,0xf8,0x9c,0x7e,0x54,0xcd,0x78,0x26,0x46,0x5b,0x78,0x18,0x9b,0x07,0x5f,0xa1, + 0x32,0x76,0x5f,0xa6,0x35,0xca,0xe2,0x67,0x2c,0x3f,0x5e,0xb9,0xff,0xd3,0x6a,0x00,0x3c,0x94,0x6e,0x04, + 0x8f,0x0a,0x73,0x87,0x3e,0xd2,0x8f,0x5a,0xa6,0xcd,0x05,0xe7,0x07,0x0f,0xb0,0x78,0x94,0xaa,0x13,0x86, + 0x10,0x0a,0x3d,0x86,0x49,0xc8,0xd8,0x25,0xa2,0xd4,0x9e,0x7b,0x15,0xf1,0x3c,0xad,0x55,0xf2,0x20,0x5c, + 0xd4,0x79,0xb6,0xa6,0x09,0x02,0xd9,0x16,0x3d,0xc8,0x87,0x0d,0x64,0xa0,0x4e,0x05,0x07,0xf0,0x7f,0x0c, + 0xe8,0xc7,0x26,0x37,0x5a,0x35,0x6d,0x91,0xf1,0x7c,0x9e,0xe1,0x2d,0x0c,0xd2,0xc0,0x9e,0x93,0xb4,0x46, + 0x9a,0x17,0x1f,0x9a,0x1d,0xa8,0xd7,0xc2,0x49,0x1f,0x0c,0xe5,0x20,0x50,0xc0,0xb8,0xae,0x20,0xf4,0x47, + 0x7f,0xe2,0xc2,0x19,0x94,0x98,0xf9,0x67,0x2a,0xd5,0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86, + 0xf0,0xe4,0x96,0xca,0x71,0xf7,0xe0,0xf3,0x67,0xb4,0xa7,0x0c,0xd2,0xba,0x8e,0x05,0x91,0x62,0xb4,0xcb, + 0x93,0x40,0x3a,0xb4,0x03,0x34,0x45,0xbc,0x72,0xbd,0x93,0x52,0x5f,0x0a,0x26,0x6d,0x76,0x30,0xb3,0xe9, + 0x04,0x68,0x61,0x23,0x50,0x1d,0x3c,0x7e,0xf2,0xf4,0xd9,0xf3,0x17,0xdf,0xbe,0x7c,0xf5,0xdd,0xf7,0xaf, + 0xdf,0xbc,0x7d,0xf7,0xfe,0x9f,0x1f,0x3e,0x1e,0xfd,0xf0,0xe3,0x4f,0x3f,0xff,0xeb,0xdf,0xe9,0xd9,0x84, + 0xd8,0xf9,0xf3,0x8b,0xfc,0xd7,0x4f,0xf3,0x45,0x51,0x2e,0x7f,0xab,0xea,0x66,0x75,0x79,0x75,0x7d,0xf3, + 0xfb,0xc1,0xe1,0xc3,0x2f,0xbe,0xfc,0xea,0xef,0xff,0xfd,0x8f,0xaf,0xf7,0x1e,0x24,0xc1,0xa8,0x70,0x12, + 0x6a,0x47,0x78,0x28,0x2f,0x55,0x48,0x83,0xaf,0x5a,0x49,0x58,0xc4,0x24,0x78,0x25,0xfd,0x7a,0x6a,0xba, + 0x65,0x38,0xa5,0x5e,0x24,0x65,0xf4,0x6d,0x0d,0x48,0x98,0x44,0x4f,0x7b,0x06,0x61,0x0c,0x41,0x5b,0x9d, + 0x1c,0xc0,0xf0,0x66,0x54,0x5a,0xe8,0x59,0xd7,0x38,0xbd,0x26,0x09,0x9d,0x28,0xaa,0xfe,0x2f,0x22,0x9c, + 0xd2,0xbd,0x64,0x62,0x72,0xff,0xfe,0xc5,0xa0,0xf9,0xe6,0x9b,0x7f,0xec,0x53,0xc6,0xdf,0xfe,0x11,0x31, + 0xba,0x09,0xf3,0x44,0x3e,0x7e,0x4a,0xbd,0xa5,0x22,0xf5,0x5e,0x32,0xfc,0xef,0xaf,0xa2,0xe8,0x9b,0x87, + 0x5f,0x7d,0xa5,0x09,0x76,0x8c,0xae,0x18,0x35,0x49,0xf3,0xe8,0xd1,0x3f,0xd6,0xb9,0x39,0x8e,0xfe,0x97, + 0x11,0xc8,0xed,0x55,0x95,0xb7,0xb4,0xfa,0x86,0x6a,0x23,0x64,0x75,0x2b,0x66,0x20,0x74,0xda,0xd7,0x5a, + 0x47,0xc2,0x07,0x66,0x0f,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0x39,0x18,0xe8,0x4f,0xcc, + 0x49,0x45,0xdf,0x61,0x3c,0x7c,0x76,0x17,0xc0,0xcc,0xdf,0xbe,0x39,0xb2,0xd2,0x5b,0xe5,0x41,0x76,0xee, + 0x7d,0x8b,0xfd,0x47,0x1f,0xe6,0xad,0x02,0xa5,0x57,0x60,0xca,0x02,0x1a,0x2a,0x52,0x42,0x70,0x41,0x40, + 0x9e,0xba,0xbc,0x3a,0x9b,0xac,0x2a,0x48,0xbd,0xdd,0x2e,0x64,0xdc,0x9d,0xd4,0xfa,0x8c,0x1f,0xed,0xd0, + 0x21,0xaf,0xc0,0x5c,0xc6,0x5b,0xa7,0x53,0xd2,0xf9,0x68,0xb8,0x60,0x3e,0x0b,0x43,0xf8,0x90,0x9d,0x3f, + 0xbf,0x5e,0x86,0x41,0xf8,0x3f,0xeb,0xd1,0x2f,0xbf,0xd4,0x7f,0x8b,0x42,0x9a,0x12,0x22,0xdf,0x92,0xf0, + 0xf8,0x7f,0x46,0x27,0x7f,0x8b,0x02,0xa7,0x0a,0x6a,0x88,0x3f,0xdc,0x9e,0xab,0xe3,0x2f,0x4e,0x44,0x3e, + 0x81,0xc6,0x17,0xe5,0x65,0xdb,0x3a,0x82,0x77,0x17,0x2f,0x0a,0xad,0x05,0x81,0x1a,0x66,0x6c,0x58,0x94, + 0x57,0x61,0xb4,0xff,0x8f,0xbf,0x7f,0x99,0x7d,0x45,0xd4,0x74,0xdc,0x5d,0x34,0xc8,0x9c,0xda,0xe3,0x68, + 0xe9,0x4f,0xb7,0xdb,0xa1,0x0f,0xfe,0x02,0x79,0xac,0x3b,0x75,0x41,0xe0,0x33,0x87,0xb4,0xf8,0xf8,0xc4, + 0x27,0x40,0x7d,0xbd,0x24,0x55,0xd0,0xaf,0xc8,0x6e,0x55,0x20,0x0b,0x74,0x6b,0xf5,0x6d,0x2c,0xf3,0x10, + 0x7d,0x1b,0x6b,0xdd,0xdb,0x85,0x85,0x12,0xda,0x3f,0x84,0x84,0xc1,0xb5,0xc4,0xe5,0x93,0xad,0x89,0x33, + 0x5f,0x11,0x11,0x09,0x22,0xb3,0x93,0xa4,0xf9,0xbd,0x56,0x45,0x9a,0xe2,0x48,0xda,0x54,0xa6,0x25,0x6e, + 0xfd,0x1a,0x3c,0x23,0x02,0x4b,0xe6,0x36,0xc4,0x80,0xd2,0x2b,0xb1,0x88,0xff,0xa1,0x76,0x0b,0x76,0x87, + 0x9f,0xe1,0x67,0x19,0x15,0xbc,0x9a,0x69,0xee,0x2f,0x9b,0x86,0x5b,0x0a,0xac,0xc3,0xaf,0x45,0x42,0x0c, + 0xd3,0x3c,0x6b,0x13,0x48,0xaf,0x87,0x10,0x10,0xd3,0xef,0x1d,0x3c,0x02,0x2d,0x0d,0xd0,0x59,0x36,0x3c, + 0x4b,0xb5,0x58,0x6e,0x77,0xa2,0xa5,0x30,0xcc,0x60,0xd1,0x43,0xb2,0x0a,0x6d,0xb6,0xd2,0x02,0x1a,0x65, + 0x65,0xbc,0x4e,0xda,0xcb,0x8a,0x3f,0x11,0x02,0x27,0x90,0x31,0xb2,0x34,0xd8,0xe6,0x42,0x51,0xd3,0x51, + 0x59,0xf9,0xb5,0x18,0x51,0xbe,0x4d,0x19,0x8a,0x2e,0x42,0x57,0x6a,0x85,0xfe,0x5a,0xa4,0x79,0xd2,0x4e, + 0xc7,0x5b,0xf4,0x87,0x8a,0x08,0xd5,0xa7,0x5e,0x00,0x69,0x8d,0x86,0x7c,0x3d,0x03,0xad,0xab,0x11,0xda, + 0xdb,0x96,0x9b,0x93,0x8d,0xd9,0xd0,0xd4,0x49,0xad,0xf1,0x5b,0xaf,0x6b,0xf3,0x18,0x81,0x43,0x6c,0x8b, + 0x1b,0x1c,0xdc,0xf3,0x1c,0x37,0x66,0x6a,0xe4,0x81,0xde,0x7b,0xa7,0x46,0x58,0x57,0x2a,0xbe,0x51,0x3d, + 0x35,0xa5,0xf4,0x4c,0x27,0x8c,0x54,0x08,0xbb,0x3d,0xc3,0xeb,0x02,0xce,0x9d,0x86,0xdb,0xb6,0xd4,0x4a, + 0x51,0xde,0xfb,0xe7,0xda,0xa6,0xf5,0x75,0x6a,0x7a,0xe6,0xa3,0x9a,0xbf,0xa4,0xb9,0xf8,0x0c,0x37,0x6a, + 0x26,0xc4,0x2e,0x55,0xd1,0xa2,0x70,0xa0,0xe2,0x04,0xc2,0xd8,0x6c,0x33,0x52,0x7f,0x42,0x5e,0x60,0xe9, + 0x98,0x70,0x37,0x5b,0xaf,0x61,0xcd,0x71,0xfa,0xf4,0xf1,0xdb,0xa7,0xcf,0x5f,0x9f,0x9e,0xfe,0x07,0xd2, + 0x07,0x53,0xdb,0x83,0xff,0x09,0x8f,0xd3,0xfd,0xdf,0x4f,0xf0,0xe7,0x97,0xe9,0x2f,0x7b,0xbf,0xec,0xff, + 0x32,0x3c,0xf9,0x5b,0x1c,0x8d,0x7f,0x79,0xf0,0xcb,0x03,0x43,0xfa,0x65,0xff,0x91,0x78,0xc3,0x21,0xc6, + 0xb1,0x67,0x48,0xf4,0xcb,0x83,0x3d,0x21,0x99,0xf7,0x40,0x7f,0x36,0x3e,0x41,0xfc,0x60,0x4f,0x48,0xdd, + 0x3f,0x98,0x9c,0xb6,0xd5,0x4e,0x8b,0x52,0xcb,0x36,0x45,0x8f,0xf1,0x66,0xb2,0x75,0x64,0x04,0x62,0xec, + 0x1b,0xec,0x85,0xfe,0xe7,0xc4,0xe8,0x12,0x1f,0xe3,0xa7,0xc4,0xb0,0x6e,0x6a,0x51,0x59,0x6e,0xd2,0xa1, + 0x1e,0xf1,0xcc,0xa9,0xff,0x12,0x3a,0x84,0x20,0xd3,0xca,0x12,0x77,0x3d,0x05,0xab,0x25,0x8a,0x20,0xd4, + 0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb3,0x58,0xd5,0xcd,0xce,0x59,0xb6,0x93,0x5a,0x9b, + 0xa9,0x61,0xa0,0xcd,0x50,0x46,0xdc,0x6b,0x2d,0x18,0x4c,0x7a,0x95,0x59,0x98,0x2b,0x9a,0x20,0xf9,0xa0, + 0x48,0xf0,0xc1,0xa8,0x9d,0x0d,0x29,0x5a,0x5a,0x03,0x2d,0x85,0xe6,0x91,0xab,0xca,0x79,0x3f,0xda,0x34, + 0x88,0x11,0x1c,0x82,0xfe,0xa2,0x7d,0x3a,0x76,0x71,0x79,0x47,0x9d,0xa2,0xad,0x2a,0xb8,0x1a,0x2d,0xb2, + 0x75,0x29,0x38,0xb4,0xea,0x72,0x55,0x4d,0x32,0xff,0x2b,0xdf,0xd8,0xe0,0xb6,0xc1,0x81,0xc1,0xf6,0x44, + 0x55,0x0b,0x15,0x65,0x09,0x0e,0x55,0x39,0x54,0x18,0x7e,0xee,0x3c,0xa8,0xfe,0xc2,0xde,0xd8,0xe9,0x41, + 0x51,0xc6,0xa0,0x8c,0xc5,0x8e,0x0d,0x6c,0xca,0xa0,0xf7,0xec,0xb6,0x70,0xb7,0x0f,0x44,0x8f,0x32,0xf3, + 0x7f,0xc9,0x0d,0xa2,0x81,0x63,0xc3,0x8f,0xab,0xac,0xdf,0xad,0xa1,0x1f,0x18,0xb3,0x5e,0x3b,0xd8,0xf5, + 0x1a,0xa3,0x63,0x8b,0x58,0xcf,0x18,0xb2,0x5b,0x52,0x64,0x5e,0x46,0x12,0xb6,0x69,0xef,0x4a,0xc3,0x72, + 0xb5,0x2b,0xf1,0xcd,0xda,0xb7,0xac,0x0b,0xd6,0xeb,0x6d,0x3b,0x5e,0x4a,0xab,0x6f,0x16,0x67,0xe5,0xbc, + 0x9d,0x76,0x56,0x96,0xf3,0x2c,0x2d,0x7a,0xed,0xda,0xff,0x77,0x2c,0xe1,0x45,0xc2,0xc6,0xc6,0xb7,0x8b, + 0xa2,0xd7,0x10,0xde,0x10,0xd1,0x6c,0x08,0xc1,0x36,0x79,0xa1,0x65,0xa0,0x1c,0x71,0xfc,0x4d,0x72,0x30, + 0x18,0xbc,0x21,0x12,0x7f,0x38,0x9b,0x97,0xb0,0x04,0x63,0x65,0x3a,0x71,0xac,0xf5,0x8b,0xbc,0x60,0xfa, + 0xd7,0xab,0xb5,0xee,0x74,0x9d,0x7a,0x3e,0x0e,0x82,0x1e,0xcf,0x96,0x71,0x57,0xe4,0x27,0x52,0xf0,0x87, + 0x51,0x6c,0xbb,0xe0,0x6a,0x9d,0xf4,0xf6,0xd5,0x49,0xb1,0x89,0xa3,0x49,0xdf,0x52,0xc7,0xc6,0x19,0x11, + 0xa6,0xf6,0xab,0x95,0xb6,0x90,0xb4,0x16,0x99,0xda,0x34,0x5e,0xb8,0xfc,0x50,0xb4,0x07,0x55,0x62,0x65, + 0x58,0x0a,0x62,0xce,0xe4,0x60,0x94,0x3f,0xaa,0x8c,0x29,0x59,0x2e,0x86,0x99,0xc7,0xf9,0xc9,0x09,0xe1, + 0x4a,0xc7,0x2f,0xf4,0x69,0xdf,0x8f,0xb3,0xb6,0x20,0xeb,0x64,0xd3,0x67,0xdc,0x41,0xc5,0x4e,0x36,0xae, + 0x8f,0x73,0xeb,0x8e,0x60,0xfc,0x08,0x8c,0x4a,0x35,0xf3,0x44,0x5c,0x2c,0x0e,0xfe,0x66,0xff,0xd0,0x4a, + 0x89,0xb9,0xcb,0x74,0xe2,0x14,0xea,0x30,0xf2,0x6a,0x9b,0xb5,0xce,0xac,0x33,0xb3,0xea,0xd8,0xe4,0xb6, + 0xcc,0xd4,0xcd,0x65,0xcf,0x7c,0x8c,0xba,0x68,0xc3,0xb3,0x68,0x3b,0x2e,0x4e,0x60,0xd8,0x49,0x3f,0xb0, + 0x10,0x8e,0xfc,0x86,0x97,0x5b,0xc6,0xa8,0x5a,0x1a,0x52,0xf5,0x18,0x0a,0x6b,0x0a,0x63,0x5c,0x7d,0x73, + 0x38,0x76,0xc6,0xad,0xb6,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xcd,0xb3,0x95,0xf3,0x16,0xc3,0x53,0xa9, + 0xc8,0x7a,0x5e,0xa8,0xc2,0x75,0xe4,0x42,0x3a,0x42,0xdc,0xf8,0x7a,0x7d,0x30,0x72,0x4b,0x6f,0xca,0xee, + 0x37,0xb4,0xe2,0xce,0x32,0xb7,0x88,0x46,0xc5,0xfe,0xfe,0x28,0xaa,0x78,0x50,0xc7,0xc5,0x5e,0x63,0xcd, + 0x6e,0x2b,0x57,0xe9,0x65,0x07,0x90,0xe0,0xbd,0xd1,0x44,0xf0,0xed,0x48,0x30,0x1b,0x56,0x32,0xea,0xbe, + 0x58,0xb4,0x44,0x13,0xb0,0x9a,0x2e,0x08,0xb0,0x8a,0x47,0xce,0x59,0x84,0x00,0x0b,0x15,0x0c,0x06,0x97, + 0xd0,0x3e,0x42,0x18,0x69,0xa1,0xcb,0x55,0x73,0x6e,0xce,0x61,0x97,0x74,0xe3,0x00,0x06,0xdb,0x30,0x32, + 0x58,0x4a,0x1f,0x89,0x7c,0xce,0x55,0xf4,0x23,0x40,0xb3,0x4b,0x07,0xe1,0x6e,0x65,0x0a,0x11,0xd7,0xb2, + 0x5b,0x0d,0x06,0x76,0x83,0x51,0x05,0xfa,0x99,0x4a,0x43,0x87,0xc9,0xba,0x87,0x84,0xa7,0xc6,0x13,0xf7, + 0x13,0xdb,0xd2,0x4e,0x92,0xba,0xcb,0xc1,0x20,0x75,0x00,0xa9,0xd7,0x04,0xf2,0x2b,0x79,0x04,0x87,0x94, + 0x5d,0x66,0xd5,0x8d,0x77,0x3e,0x7b,0x04,0x26,0x8f,0x03,0xc3,0xde,0x48,0x65,0xeb,0xb5,0xa9,0x6c,0xf7, + 0x70,0x24,0x02,0x0d,0x0d,0x9e,0x9f,0xb2,0x1b,0x60,0x15,0xe2,0x96,0xfc,0x04,0x67,0x57,0x5e,0xbb,0xb6, + 0x27,0xb6,0xed,0xba,0xdb,0x76,0xab,0x65,0x78,0xe5,0xe8,0xc6,0x9d,0xf1,0x97,0x69,0xdd,0x03,0xeb,0xb3, + 0x2e,0x06,0xd9,0x5a,0x43,0xea,0xba,0xa9,0x2f,0xb2,0xee,0x74,0xba,0x67,0xc4,0x0b,0xdb,0x9a,0x4e,0xdd, + 0xae,0xa3,0xf1,0x6d,0x9b,0x8d,0x37,0x6c,0x32,0xcd,0xe4,0x98,0xde,0x10,0x38,0xfc,0xdc,0x9e,0xf0,0x37, + 0xdb,0x95,0xab,0x0b,0xa2,0x9e,0x20,0xf2,0x05,0x54,0x07,0x76,0x5e,0xbe,0xf8,0x3b,0x56,0x63,0xbd,0xfe, + 0xfa,0x2b,0xfc,0xba,0xcf,0x8f,0x8c,0xde,0x2e,0xba,0xd5,0x13,0x2a,0xa7,0xaf,0x71,0x3b,0xe2,0x6c,0xaa, + 0x7f,0xbe,0xca,0xe2,0x42,0x65,0x74,0xa0,0x65,0x55,0x7a,0x36,0xcf,0xe2,0xdd,0xdd,0x4a,0x41,0xa2,0x21, + 0x2f,0x07,0xda,0x12,0x62,0xa5,0x33,0x0f,0x36,0x1e,0x92,0xf9,0xe4,0x9d,0x47,0x3d,0x0a,0xe7,0xc1,0xe0, + 0x41,0xc1,0x7e,0x11,0xac,0x13,0x7d,0xa0,0x29,0x74,0xdf,0x50,0xd0,0x55,0x75,0xdd,0xb1,0x70,0xca,0x68, + 0x2d,0xf8,0xf0,0x56,0xed,0x1f,0x77,0x72,0xb9,0x6f,0x9f,0x6a,0x53,0x01,0x8d,0x02,0x26,0x46,0xb8,0xf3, + 0x4e,0xcc,0x7a,0x35,0x2a,0x80,0x05,0xe5,0xb0,0x49,0xcf,0x95,0x65,0x89,0x27,0x17,0xf9,0x7c,0x5a,0x65, + 0x05,0x98,0x2f,0x58,0x7f,0x10,0x24,0xcf,0x17,0x8a,0x95,0x9b,0xfc,0x8e,0x8c,0xb4,0xbe,0x29,0x26,0x2f, + 0x52,0x98,0xc9,0xdf,0x38,0x75,0xea,0xb0,0x00,0xc3,0x8d,0xaa,0x45,0x92,0xd7,0xe4,0x13,0x60,0x72,0xfd, + 0x48,0xa9,0x04,0xbc,0x94,0x40,0x7f,0xb9,0xc4,0x53,0x62,0x6d,0xa9,0x3f,0x5c,0x44,0x3f,0x53,0xfa,0xac, + 0x78,0x2a,0x0d,0x51,0xba,0x7d,0xe6,0x74,0xdd,0x71,0x4e,0xb7,0x83,0xa0,0xe7,0x8f,0x13,0x5a,0xbb,0x57, + 0x53,0x4e,0xd7,0xcf,0x52,0xff,0x9c,0xc6,0xcb,0x9e,0x97,0x8d,0xa8,0x63,0xf5,0xc0,0xe8,0xa5,0xb2,0x2f, + 0xc9,0x63,0x2f,0x07,0x86,0x45,0x11,0x94,0xb7,0x85,0x5f,0xb8,0xf0,0x0b,0x17,0xed,0xc2,0x84,0x6f,0xdc, + 0x8c,0x3f,0xee,0xee,0x18,0x8b,0xa4,0xdb,0x68,0x57,0x1f,0xb4,0x05,0x9f,0xb0,0x38,0x5f,0x13,0x5a,0x2b, + 0xfa,0xf1,0xfc,0x45,0xbc,0x5a,0x3f,0x5a,0xa4,0x27,0x2e,0x41,0xbb,0x61,0xcb,0x81,0x87,0x98,0x7b,0xbd, + 0xc8,0x76,0x67,0x41,0x28,0x77,0x7a,0x5a,0x9e,0x9d,0x9e,0x06,0x6c,0xac,0x22,0xcf,0xfe,0x47,0x75,0x35, + 0x46,0xef,0x24,0x23,0x4e,0x89,0x6c,0xbf,0x28,0x57,0xf3,0x29,0xcd,0x36,0x21,0x0e,0x9a,0xad,0xdd,0xef, + 0x0b,0x36,0x12,0xec,0x62,0xc3,0xf5,0x1a,0xc4,0x16,0xe5,0xe8,0xcd,0x93,0xd7,0xcf,0xe1,0xd5,0x52,0xe7, + 0x67,0x6c,0x6d,0x4b,0x1f,0xb2,0x93,0x02,0x51,0xb1,0x98,0x37,0x1e,0x74,0xcd,0xba,0x4b,0x2c,0x01,0xcf, + 0xeb,0xe5,0xe2,0x69,0xb9,0x2a,0x9a,0xbd,0x3d,0x3a,0xb8,0xdc,0x18,0xef,0xf9,0xea,0x74,0x41,0xc4,0xf8, + 0xf6,0x5f,0x05,0xa1,0x5f,0xdd,0xd4,0x79,0xd6,0x78,0xee,0x81,0xcf,0xb2,0x7a,0x52,0xe5,0xb0,0x9c,0xe7, + 0xd9,0x61,0x74,0x9f,0x12,0xba,0x3f,0x24,0x72,0x31,0x1d,0xfa,0x9b,0xd3,0x48,0x88,0x53,0xc2,0xd8,0xa8, + 0x84,0x50,0x29,0x3f,0xd6,0xf4,0xb8,0x4a,0x76,0x73,0x3a,0x12,0x70,0x12,0x7e,0x06,0x1b,0xf8,0x58,0x60, + 0x6b,0xe3,0x2b,0xaa,0xb2,0x6b,0x5a,0xdd,0x24,0xf5,0xb8,0x36,0x44,0xa7,0x53,0x7f,0xfc,0xab,0xa0,0x8d, + 0x56,0x51,0x79,0x9a,0x9b,0x92,0x5a,0x5a,0xc2,0x72,0x23,0x52,0x2b,0x7a,0x5d,0xe1,0xd5,0x25,0x75,0x4f, + 0x9c,0xc1,0xc0,0xa3,0xf8,0x5b,0x10,0xa6,0xf7,0xbf,0xb8,0x25,0x35,0x5d,0x77,0x24,0x5a,0x82,0x06,0x86, + 0x9d,0x98,0x78,0x59,0x6b,0xf7,0xf4,0xb9,0x16,0x21,0x1b,0x67,0x23,0x0c,0x08,0xcd,0x59,0xd8,0x53,0xfb, + 0xa3,0x6c,0x0c,0x79,0xd3,0x1e,0x26,0x14,0x38,0xd5,0x7a,0xdd,0xec,0xb2,0x09,0xea,0x2e,0x9e,0xc3,0xc9, + 0x78,0xe2,0xe8,0xb0,0x98,0xba,0x63,0xe7,0xbc,0x81,0xd5,0x7f,0x51,0x36,0xa0,0x7f,0xd9,0xf2,0xde,0x03, + 0x87,0x77,0x9e,0x79,0x40,0x17,0x04,0x69,0xed,0x42,0x77,0xdc,0xd8,0xb3,0x97,0x69,0xf4,0x45,0x7a,0x6d, + 0x49,0x49,0xc5,0x12,0x3c,0x4d,0x2a,0x36,0xea,0x90,0xaa,0x53,0x05,0xe0,0xa4,0x61,0xff,0x53,0xec,0x23, + 0x7e,0xea,0xba,0x8c,0xba,0xaa,0xc5,0x40,0xb6,0xd0,0xa2,0x23,0xb3,0x5b,0x9c,0x67,0x92,0x00,0xfa,0x7a, + 0x5d,0xc1,0x52,0x4b,0xc3,0xf5,0xb8,0x88,0xab,0x71,0x78,0x8f,0x10,0x0c,0x9f,0x21,0x3c,0x0a,0x42,0x46, + 0x98,0x6b,0x33,0x56,0x10,0x76,0xc6,0xfa,0xb6,0xf0,0xf0,0xf5,0x73,0xbb,0xcf,0xef,0x18,0xb2,0x3f,0x1a, + 0xcf,0xd4,0xc1,0x6d,0xe4,0x91,0xeb,0x93,0xbf,0xd7,0xd6,0x6b,0x21,0x8d,0x61,0x83,0x66,0xac,0x7d,0x9b, + 0x13,0x41,0x73,0x7e,0xc7,0xfc,0x15,0x78,0x6f,0x3b,0xe3,0x9b,0x67,0x58,0xb8,0xc3,0x46,0x75,0x5b,0x53, + 0xd3,0x24,0xd0,0x38,0x8d,0xea,0x47,0xa9,0x81,0xc2,0x1a,0xd8,0x0d,0x84,0x65,0x92,0x1e,0xd7,0x27,0x27, + 0x00,0x50,0xd0,0x0a,0x33,0x26,0x85,0xc6,0x65,0x58,0xb1,0x7f,0x23,0x74,0x29,0xef,0x43,0x6c,0xfc,0x18, + 0xcb,0x5e,0xd0,0x43,0x0f,0x4d,0xf9,0x6b,0x47,0x44,0x57,0x8c,0x3b,0x7b,0xae,0x4a,0x7a,0xfd,0xe4,0x8c, + 0xeb,0x30,0x3b,0xcb,0x51,0x0f,0xfa,0x0e,0xe4,0x71,0xe6,0x15,0xca,0x1c,0x89,0xae,0x7b,0x95,0x6f,0xe2, + 0x66,0x9c,0xf9,0xed,0x19,0x57,0xf2,0xf0,0x73,0x4d,0x32,0x0d,0x83,0x3f,0x68,0xf8,0x73,0xcd,0x7a,0x05, + 0x89,0xed,0x8b,0x9b,0xd8,0x1b,0xf6,0xb3,0xae,0x1c,0x6e,0x9c,0x19,0x15,0x3e,0x6d,0xa7,0x2e,0x9a,0x18, + 0x37,0x31,0xf4,0xfc,0xde,0xf7,0xaf,0x1c,0xb9,0x23,0x02,0x9f,0x36,0xd7,0xa3,0x25,0x05,0x9e,0x2e,0xe8, + 0x12,0x6e,0x55,0x18,0xb3,0xad,0xe2,0xb5,0x99,0x79,0x4f,0x0a,0x60,0xab,0x9b,0x54,0x84,0x5e,0x08,0xbe, + 0xaa,0xd1,0x0a,0x1e,0x7c,0x74,0x40,0xb1,0xdb,0x23,0xfe,0xa0,0xd1,0x3e,0x6b,0x3e,0x60,0x3f,0xe2,0x50, + 0x86,0xda,0xbb,0xa8,0x2b,0x7a,0x31,0x10,0x4d,0xfb,0x71,0x59,0x8b,0x25,0x90,0xac,0x2f,0x03,0xdc,0xed, + 0x66,0xb4,0xb5,0x3f,0x0a,0x71,0x4a,0xa7,0x23,0xd6,0xa2,0x3f,0x70,0x35,0x5d,0x01,0x45,0x28,0x71,0x1d, + 0xb0,0x0b,0xd2,0xe3,0xab,0x82,0xe0,0xee,0x24,0xb9,0x45,0x96,0xa8,0xb9,0x9c,0xa5,0x51,0x69,0x6a,0xe4, + 0x73,0x03,0x28,0xa2,0x88,0xf0,0x6d,0x7d,0xa2,0xf8,0xc3,0x9a,0x3e,0x04,0xd8,0x8e,0xf3,0x58,0xbe,0xcf, + 0x37,0x23,0xdd,0xdf,0x24,0xdd,0x00,0x65,0xde,0x31,0xa4,0xbc,0xc0,0xdc,0xfb,0x63,0xb2,0x89,0x9f,0x1b, + 0x98,0xcc,0x34,0x13,0x0c,0x3e,0x67,0x4e,0x5c,0x1b,0x73,0xe6,0xb7,0x30,0xae,0x89,0xf1,0xbc,0xe9,0x1f, + 0x42,0x2a,0x43,0xd0,0xc7,0x60,0x71,0x9c,0x12,0xcf,0x46,0x7f,0x68,0x0c,0x75,0x44,0xeb,0x2d,0xdf,0xa7, + 0x84,0xe2,0xa3,0x58,0x9e,0xeb,0xcd,0xa6,0x3b,0x0c,0x33,0x08,0x3a,0x20,0xf3,0x8a,0xfa,0x4b,0xd4,0xab, + 0x5e,0x1c,0xd3,0x4a,0xe5,0xb5,0x22,0x33,0x3d,0xea,0x59,0xfc,0x1c,0x64,0x01,0x47,0xd7,0x80,0x81,0x7f, + 0x9c,0xab,0xd5,0x12,0xd6,0x85,0x34,0x85,0x11,0x94,0xfe,0x3a,0xfe,0x46,0xa3,0xc3,0x4b,0x70,0x13,0x39, + 0xdb,0x48,0x01,0x0a,0x73,0x18,0x07,0xaa,0x66,0xb8,0xc8,0xaf,0x89,0x94,0x71,0xe3,0xa3,0xb3,0xaf,0x4e, + 0x4c,0xb2,0x99,0xa2,0xf4,0x51,0x3d,0x4a,0xc1,0x67,0xf2,0xa7,0x26,0x97,0xc6,0x4d,0x95,0x70,0x33,0x13, + 0x3a,0x89,0x68,0xd6,0x51,0xcb,0x44,0x22,0x12,0xd0,0x43,0xe4,0xde,0x9b,0x08,0x88,0x6a,0x42,0x24,0x0f, + 0xa7,0xeb,0x1d,0xb2,0x72,0x1b,0xe3,0x85,0xdb,0x5b,0x7d,0xde,0x36,0x76,0x2e,0x80,0x6c,0x31,0x10,0x1a, + 0x0a,0x06,0x60,0xa4,0x36,0xe0,0x9d,0x85,0xd2,0xb9,0x02,0x83,0x66,0x4a,0x94,0x5e,0x89,0x52,0x4a,0xa4, + 0xc9,0x51,0x11,0x96,0x4e,0x3a,0x41,0xa5,0x52,0x82,0x3e,0x1a,0x4b,0x9c,0xb3,0x58,0x02,0x25,0xf1,0x37, + 0xf5,0x85,0x2b,0x6f,0xbb,0x5b,0xbf,0x39,0xce,0x4e,0x54,0x99,0xec,0xd2,0xaa,0x29,0xe6,0x6b,0x21,0x8d, + 0x41,0xb3,0x1f,0xc2,0x27,0x22,0x8f,0x53,0xf9,0x90,0x4f,0x40,0xd0,0x27,0x74,0x3e,0xa2,0xa1,0x40,0xbb, + 0x57,0x06,0xd1,0x38,0x25,0xe6,0x2d,0xfe,0xa0,0x85,0x64,0xa6,0x28,0x0c,0xff,0x77,0x59,0xa5,0x9d,0xd2, + 0xcf,0xb5,0xf6,0x7f,0x4d,0x13,0x26,0xa4,0xad,0x44,0x32,0x8d,0x6e,0xd3,0x3e,0xd3,0xbf,0x19,0x3c,0xa0, + 0x6c,0x0b,0x66,0x53,0x34,0xc6,0xa7,0xd3,0x9e,0x03,0x20,0x62,0xef,0x69,0x84,0x21,0x3b,0x4d,0xa2,0x26, + 0x38,0x91,0x67,0x4f,0xb6,0x08,0x18,0xac,0xa8,0x73,0x78,0xca,0x39,0x94,0x3a,0xf6,0x9e,0xfb,0x44,0xb4, + 0xf0,0x19,0x7e,0xe1,0x84,0xfb,0xc9,0x9b,0xb0,0x91,0xc1,0x8e,0x2b,0x4b,0xed,0x54,0x04,0xae,0x40,0x49, + 0x59,0xa4,0xf9,0xf5,0x2e,0x0d,0x3d,0xea,0x26,0x80,0x0f,0xf9,0x18,0xa6,0x34,0xf1,0xdd,0x8c,0xda,0x99, + 0x4d,0xd8,0xd5,0x7b,0xe3,0xd9,0x47,0x61,0xf4,0x8e,0x3b,0xd4,0x5a,0x7e,0x76,0xe8,0xb6,0xc5,0xc3,0x5f, + 0xae,0xf6,0xa2,0x07,0x1e,0x1e,0x6f,0x8e,0x0f,0x69,0x6c,0x81,0xab,0xf0,0x83,0x3b,0xd0,0xbb,0xc7,0x86, + 0x01,0xb8,0x37,0x22,0xdd,0x7c,0x63,0xbc,0x5e,0x4d,0x98,0x8f,0xca,0x11,0x96,0xc5,0xa3,0xca,0x70,0xfe, + 0x6f,0x58,0x18,0x66,0x3e,0x70,0xa2,0x18,0x2b,0x49,0xb0,0x4d,0xff,0xe4,0xad,0x78,0xe3,0x10,0x46,0x42, + 0xeb,0x9b,0x54,0xc3,0x7b,0xcb,0x94,0x98,0xa9,0x66,0xe4,0x0c,0x88,0xec,0x52,0xb2,0x0f,0xc1,0xd3,0x74, + 0x49,0x15,0x66,0x53,0xc6,0x05,0xf6,0xeb,0x92,0x10,0x62,0xf9,0x28,0x37,0xfd,0x2a,0x11,0x7a,0xa4,0xba, + 0xe1,0xe1,0xc1,0x04,0x12,0x3b,0x42,0xd6,0xaa,0x52,0xd2,0xb8,0xee,0xa0,0x93,0x78,0x3c,0xa1,0x5e,0x55, + 0x2a,0x68,0xb5,0xb1,0x73,0x51,0x96,0x9f,0xe0,0x0f,0xff,0x44,0x77,0xd9,0x0d,0xe2,0x89,0x37,0x88,0xe7, + 0x85,0x74,0xed,0xa5,0xe8,0xdc,0xb9,0x65,0x3d,0x87,0x9d,0x2c,0x3f,0x70,0x89,0x54,0x68,0xdb,0xff,0xd1, + 0x48,0x7d,0x03,0x6d,0x6a,0xed,0x7f,0x47,0x7d,0xf8,0x71,0xab,0x0b,0x3f,0x7a,0x5d,0xd8,0x7d,0x06,0x79, + 0xd6,0xab,0x82,0xf6,0x5f,0x8f,0x8f,0x11,0xbc,0xd8,0x69,0x47,0x6b,0x0d,0x4d,0x36,0xd2,0xef,0xd2,0x44, + 0x4b,0xb8,0xfc,0x03,0x91,0x33,0xcb,0x2a,0xd1,0x62,0xa7,0x2c,0x99,0x56,0xc6,0xed,0x3c,0x1a,0x4d,0x8d, + 0x24,0x38,0x71,0xc2,0xc4,0x86,0x9e,0x1b,0x27,0x05,0x6a,0x58,0x92,0xd7,0x9c,0x84,0x5e,0x95,0x2f,0xbd, + 0x53,0x0f,0x8b,0x46,0xd5,0xb0,0x2d,0x45,0x5b,0x91,0xa4,0x9d,0x11,0xad,0x80,0xd3,0xce,0x8b,0x40,0x4b, + 0x50,0xd0,0x11,0x70,0x94,0x4f,0xb0,0x1a,0x7c,0xaa,0x15,0xec,0x13,0x0f,0x55,0xcd,0x12,0x7c,0x05,0xfa, + 0x7c,0xa0,0x2e,0xaa,0xf1,0xbc,0x0a,0xa3,0x78,0x55,0xc1,0x40,0x67,0x37,0xeb,0xd7,0xcf,0x68,0x4d,0x5a, + 0xe4,0xc9,0x51,0xfa,0x94,0x6b,0x05,0x94,0x6b,0x6e,0x18,0xbf,0x23,0xcd,0x16,0x00,0xdf,0xa5,0x2c,0x29, + 0x52,0xde,0x21,0x15,0x0c,0x89,0x05,0x85,0xf4,0x11,0x8c,0xb0,0xe5,0x90,0x5f,0x54,0xe5,0xef,0x70,0xc7, + 0x16,0x9b,0xaa,0x46,0xd3,0xea,0xe6,0x3c,0x6e,0x7c,0x76,0x2c,0x67,0x28,0x2f,0x60,0x41,0x48,0x87,0xb3, + 0x31,0xec,0x2c,0xe0,0x7d,0x40,0xef,0x70,0x15,0x49,0x35,0xad,0xd3,0xb4,0x68,0x1d,0xea,0x1c,0x93,0x5c, + 0x5e,0xa4,0x9d,0x2a,0x09,0xcb,0x0e,0x7d,0x1e,0x6d,0x7d,0x53,0xd2,0x57,0x27,0x1c,0x59,0x21,0xa2,0x59, + 0x3f,0xab,0x22,0xfa,0x3f,0x9c,0xd0,0x51,0x50,0xf9,0x0b,0xfa,0x5b,0xd8,0x8e,0xa1,0xa5,0x55,0x7a,0x4e, + 0xb8,0xad,0x40,0x18,0xcc,0x0a,0x3e,0xae,0x77,0xb7,0x68,0x18,0x2b,0xba,0xf6,0x14,0x6f,0x4e,0xb6,0x37, + 0x72,0xf8,0xa0,0xd0,0xa0,0xd7,0xab,0x88,0x80,0x98,0xc4,0xaf,0x21,0xb3,0x32,0x71,0x6e,0x1a,0xe1,0x0c, + 0x5c,0x8f,0xbf,0x0f,0xb5,0x30,0xc1,0xda,0xff,0xab,0x5a,0xd1,0x81,0xcf,0x8d,0xa5,0x72,0xba,0xd3,0xd4, + 0x83,0x1a,0x98,0x30,0x45,0x44,0xb4,0xc0,0x69,0x05,0xe4,0x9c,0x85,0x6c,0x23,0x97,0xd1,0x91,0x3f,0xa6, + 0xbf,0x35,0xea,0xc6,0x79,0x28,0xa5,0x93,0xdf,0xb0,0x2c,0xaa,0x22,0x7e,0x9d,0x8d,0x37,0x6b,0xb5,0x1a, + 0x12,0x35,0x9e,0x29,0x04,0x78,0x61,0x14,0x42,0x4f,0xf0,0x89,0x23,0xfa,0x88,0x9f,0x60,0xa6,0x1e,0x45, + 0x71,0x4d,0xa7,0xc8,0x84,0x6a,0x99,0x70,0x57,0x89,0xda,0x47,0x5d,0x93,0x28,0x72,0xfd,0x29,0x78,0x3d, + 0x52,0x90,0xa7,0x79,0x18,0xea,0xde,0x44,0xd2,0x8a,0x74,0xd0,0xb4,0xe0,0x2d,0xcc,0x77,0xa1,0x1e,0xa2, + 0xa7,0xd7,0x8a,0x6e,0xcb,0x7e,0x21,0xaa,0x9a,0xcb,0x68,0x88,0x76,0xd8,0x54,0x6d,0x01,0x12,0x04,0x62, + 0x84,0x77,0x21,0xff,0x1b,0x02,0x03,0xc2,0x84,0xc3,0xbd,0x11,0x95,0x14,0xe9,0x53,0x0e,0xf6,0x84,0xb4, + 0x0e,0x23,0x9e,0x9e,0x9a,0x66,0x03,0x3d,0x8e,0x1b,0x19,0x17,0xa4,0x0c,0xf4,0xc4,0x96,0x32,0x53,0x9a, + 0xbd,0x9a,0x46,0x88,0x74,0xd9,0xfd,0x29,0xcd,0x02,0x3e,0x98,0x28,0xfa,0x44,0xd5,0xba,0x18,0x36,0x31, + 0x0b,0xc0,0x6a,0x37,0xaa,0x6f,0x99,0x0b,0xd4,0x23,0xc3,0x8e,0x01,0x10,0x09,0xb5,0x00,0x6a,0xc6,0xb1, + 0xe7,0x08,0x8f,0x02,0xb0,0x2f,0xd7,0x6b,0xcd,0xd7,0xf2,0x2b,0x9d,0x41,0xba,0x70,0xde,0x2d,0x9c,0xb7, + 0x0b,0xe7,0x28,0xbc,0xd9,0x3e,0xb0,0x7e,0xf6,0xa4,0xae,0x62,0xa5,0xcf,0x02,0x5a,0xc2,0x48,0xd8,0xd8, + 0xda,0xc4,0xde,0x88,0x2c,0xdd,0x67,0xff,0xf6,0x99,0xb5,0x10,0x4c,0x79,0x56,0xbf,0x61,0xa5,0xf0,0x7a, + 0xfd,0x2d,0x02,0xb9,0xc8,0x0b,0x74,0x92,0xd9,0xf1,0x47,0x56,0x8b,0xda,0x73,0xfd,0x28,0x3d,0x97,0x68, + 0x00,0x70,0x54,0x15,0xea,0x87,0xb6,0x01,0x3c,0x08,0x0c,0x31,0x0c,0xaa,0xc3,0xe3,0xec,0xfe,0xd5,0x0a, + 0xf3,0x62,0x7b,0x03,0x5a,0xc1,0x17,0xce,0xba,0x0f,0xfe,0xa9,0xed,0x16,0xba,0xc2,0x85,0xe8,0x33,0x02, + 0x7e,0xc3,0xa5,0x80,0x56,0xe5,0x95,0xa8,0xd8,0x2d,0x02,0xe2,0xd3,0x8e,0x34,0x99,0x36,0xcd,0xbf,0x28, + 0xd7,0x4e,0x78,0xe5,0x51,0xa2,0x59,0x66,0x0e,0xae,0x62,0x7c,0x83,0xe3,0x9d,0xe0,0x4e,0xe4,0x41,0xf2, + 0xd6,0xd1,0xd1,0x35,0x92,0x79,0xcb,0x99,0xb3,0x59,0x27,0xb7,0xb0,0x95,0xdd,0x50,0xc7,0x14,0xef,0x74, + 0x31,0xb7,0xa2,0x64,0x22,0x6b,0x29,0x55,0x68,0x3e,0x4f,0x6b,0x9d,0xf9,0x7c,0x98,0x70,0x5a,0xbb,0xee, + 0x38,0xf0,0x30,0x50,0x2b,0xa4,0x99,0x11,0xa2,0x69,0x79,0x24,0x73,0xb6,0x69,0x52,0xf2,0xc6,0x40,0x15, + 0x2c,0x45,0x4c,0x9b,0xa6,0xaa,0xed,0x03,0x21,0xb0,0xb2,0xb1,0x7e,0xc4,0x7e,0xa2,0x2a,0x8d,0xfc,0x5c, + 0xec,0xf1,0x4a,0x27,0xdb,0xde,0x65,0x45,0x05,0xa4,0x97,0xa2,0x33,0x4e,0xf9,0x83,0x28,0x2c,0x0c,0x20, + 0xb0,0x39,0x87,0x09,0x41,0x77,0x7c,0x42,0x68,0x81,0x77,0x54,0xe9,0xc9,0x80,0x6a,0xfd,0x15,0xa3,0xb3, + 0x1a,0x9a,0x4a,0xfc,0xa0,0xf0,0x28,0x68,0xb2,0xc5,0x72,0x4e,0x4c,0x16,0xe0,0xae,0x84,0xa8,0x7f,0x3c, + 0xe1,0x0a,0x34,0x9a,0x98,0xa0,0x6b,0x5a,0xa4,0xbd,0x5e,0xd3,0x17,0xf1,0xc4,0xd4,0xbf,0xb1,0xb1,0x8f, + 0x56,0x82,0xa3,0x8a,0xe3,0xd5,0x89,0xd6,0x2d,0xe5,0x99,0x73,0x98,0x46,0xb2,0x8b,0x2c,0xe2,0x34,0xf9, + 0xd9,0x5d,0x30,0xba,0xdb,0x06,0x52,0x22,0x62,0x76,0x78,0x57,0xf0,0x1e,0xf3,0x14,0xfb,0x99,0xa7,0xd0, + 0xd4,0xbc,0xda,0x1d,0x90,0xda,0x81,0x6a,0x50,0xa6,0x63,0x7c,0x2e,0xca,0xa9,0x98,0x78,0x1f,0x7a,0xc2, + 0x41,0xc8,0x9a,0xce,0x13,0x9a,0xfd,0x1e,0x8d,0x63,0x9a,0x19,0xcd,0xe5,0x28,0xd3,0x7b,0x51,0x53,0xa7, + 0xd1,0x28,0x62,0x2d,0xf5,0x69,0x5e,0xa4,0xcc,0xfd,0x7e,0x8e,0xde,0xad,0x33,0x4b,0x6b,0x1b,0xed,0xf6, + 0xa9,0xb0,0xcd,0xaf,0xf4,0xd7,0x44,0x6f,0x29,0x6e,0xcc,0x50,0xa5,0x86,0x71,0xdf,0x2a,0x69,0x68,0x80, + 0x76,0xeb,0xce,0xc0,0xc3,0xeb,0xd1,0xad,0xf7,0x02,0x82,0xae,0x3b,0x5b,0xf7,0xcc,0x2a,0xfb,0xf3,0x86, + 0xbe,0xba,0x1c,0xd6,0xc4,0xf2,0xe6,0x0c,0xb8,0x1e,0x82,0x9a,0x69,0xe0,0x8b,0x05,0x27,0x59,0x5b,0xa4, + 0x61,0x48,0x75,0xcd,0xe2,0x7a,0xe2,0x00,0xde,0x4b,0x45,0x77,0x2f,0x81,0xe6,0x2b,0x6c,0xd4,0x4c,0x1b, + 0x7d,0xa2,0x00,0xd9,0x57,0x80,0x44,0xde,0x0b,0x0c,0x0d,0x4e,0xa3,0x21,0x32,0xe8,0x25,0xbd,0xb0,0xe3, + 0x25,0xb3,0x80,0xd9,0x02,0xa6,0x0a,0x28,0x10,0x07,0x7b,0x3e,0x56,0x58,0x21,0xf0,0xd7,0x63,0xd0,0x84, + 0x42,0xc7,0xaa,0x86,0x87,0x7f,0x04,0x7b,0xa4,0xaa,0xf1,0x95,0xb0,0xbe,0x25,0x50,0x3e,0xdd,0x27,0x02, + 0x6d,0x4a,0x34,0xe5,0x47,0xc4,0xa4,0xfa,0x58,0x3d,0x3a,0xb2,0x34,0xc7,0x47,0xee,0x6e,0x42,0x40,0x70, + 0x54,0x1d,0x7f,0xac,0x4e,0x22,0x2a,0xa8,0xae,0x2b,0x16,0xdb,0x32,0xfd,0x31,0xac,0x56,0x45,0x68,0x8c, + 0xb1,0x3e,0x55,0x96,0x76,0xa9,0x92,0x23,0xfb,0x42,0xb5,0x24,0xb6,0x4a,0x14,0x32,0xf4,0x34,0xd5,0x04, + 0xbd,0xf8,0xd3,0x2a,0x41,0xa7,0x0f,0x5b,0x92,0x96,0x3f,0x20,0xb5,0xfd,0x45,0x3e,0x50,0x58,0x3f,0x08, + 0x73,0x77,0x11,0x2d,0xb4,0x88,0xee,0xa8,0xc8,0x55,0x02,0xca,0xcf,0xac,0x1e,0xbe,0x03,0xd5,0x75,0xb9, + 0x18,0x55,0xc3,0xd3,0x2b,0xac,0x44,0x56,0x11,0x50,0x15,0x90,0x67,0x9f,0xe6,0x74,0x76,0xad,0x08,0x41, + 0x4d,0x07,0x03,0x1a,0x0a,0x71,0x4a,0x22,0xaa,0x61,0x78,0x20,0x4c,0xaf,0xbe,0xa3,0x62,0xcf,0x81,0x97, + 0x2e,0x9b,0xb2,0x84,0xb7,0xf0,0x77,0xc4,0xfa,0xf0,0xfa,0xcc,0xe6,0x84,0x3e,0x02,0x6f,0x75,0xe6,0x16, + 0x67,0x3f,0xaf,0xa0,0x82,0xd9,0xb6,0xe7,0x63,0x2b,0x32,0xea,0x0f,0x01,0xe0,0x46,0x51,0xa1,0x3a,0xdb, + 0xb6,0x9b,0x96,0x6c,0x44,0xf9,0xbb,0x4b,0x57,0x53,0xd0,0xa7,0x5e,0xb3,0x33,0xdb,0xac,0x40,0x24,0x2b, + 0xb5,0xfa,0xa4,0x52,0xc5,0x38,0xd4,0x1d,0xab,0xc6,0x53,0x36,0xc4,0x2a,0x4c,0x27,0xce,0xa3,0xd8,0xe4, + 0x15,0xf8,0x3b,0xae,0x40,0x01,0x20,0xa0,0x1d,0x81,0x30,0xcd,0x97,0x29,0x8f,0xbc,0xf8,0xdc,0x7c,0x55, + 0xe0,0xef,0x98,0xff,0xc6,0xe7,0xd1,0x9d,0xfd,0x6d,0xda,0xfd,0x9d,0xfa,0xf8,0x72,0x4b,0xa5,0xc4,0x76, + 0x76,0xa7,0x38,0x77,0x57,0xb4,0x0a,0x3f,0xc9,0x6a,0xd1,0xb4,0xf7,0xa7,0x6b,0xd1,0x8e,0x95,0xdd,0xb3, + 0xe0,0xae,0xb9,0x81,0x4d,0x6e,0x06,0xcd,0x04,0xa4,0xbf,0x91,0xf2,0x34,0x52,0x8d,0xd3,0x05,0x35,0xa2, + 0xbb,0xf0,0x2d,0x5c,0x32,0x27,0x4c,0xb2,0xa1,0x7b,0xa0,0x24,0x82,0xd4,0x55,0x21,0xe2,0x94,0x36,0x3f, + 0x8f,0xd4,0xb6,0x1c,0x8c,0x35,0x81,0x8c,0x91,0x69,0xd3,0xdc,0xbb,0x12,0x5f,0x70,0x11,0x0f,0x3b,0xcb, + 0x15,0x87,0x32,0xb3,0x3f,0x36,0x5a,0xfa,0xb6,0x18,0x7f,0xc8,0x66,0x73,0xe4,0x94,0x57,0xc5,0xf7,0x62, + 0x22,0x31,0x9c,0xe5,0xf3,0x26,0xab,0xfa,0x0c,0x9c,0xff,0x8c,0x06,0x71,0xe8,0xb4,0x7c,0x9b,0x28,0xee, + 0x58,0x5f,0xf4,0xf0,0x23,0xb7,0x4e,0x12,0x01,0x02,0x96,0x28,0x03,0x44,0x26,0x1d,0x42,0x80,0x0a,0x69, + 0xe4,0xa8,0x1e,0xf1,0x68,0x6a,0x16,0x35,0x5d,0xe6,0x53,0xec,0x23,0xa6,0xf4,0xbd,0x14,0x22,0x88,0xe8, + 0x9b,0xc4,0x4b,0x81,0x70,0xf6,0x8c,0x06,0xfb,0x69,0x43,0x6c,0x82,0x39,0x7c,0xc0,0xf7,0xed,0xc2,0xf6, + 0xd0,0x48,0xca,0x20,0xad,0xa4,0x0f,0x05,0x32,0x26,0xd2,0xb0,0x11,0x99,0x71,0x8d,0x3d,0x30,0x6e,0x15, + 0x71,0x04,0xad,0x93,0x8d,0xb5,0x27,0xf2,0x16,0x19,0xe1,0xce,0x5a,0x2c,0x2e,0x78,0xa6,0x6d,0xa9,0x34, + 0xcb,0xfc,0xb6,0x43,0x0b,0x69,0x11,0xbc,0xd5,0x72,0x5b,0x8b,0x2e,0x55,0x12,0xba,0x4b,0x1d,0x0a,0x2a, + 0x1f,0xa5,0x2c,0xae,0xa9,0xd0,0x51,0xda,0xdc,0x1c,0xcf,0xd5,0x49,0xdf,0xb7,0x6d,0x08,0xb7,0xab,0xe6, + 0x3a,0xa9,0xa2,0xcc,0xaf,0xa8,0xdc,0x3b,0xf4,0xeb,0xc9,0x0d,0x69,0xbb,0x65,0x4a,0xe3,0x57,0x55,0x77, + 0x7a,0x59,0x77,0x7b,0x39,0x49,0x6a,0x74,0xd0,0x76,0x76,0x42,0x1c,0xa3,0x72,0xb2,0x58,0x4d,0x11,0x33, + 0xba,0xfc,0x11,0xb1,0x01,0x38,0x40,0x82,0xa7,0xbc,0x5f,0x78,0x3b,0x87,0xe5,0x5b,0xd4,0x10,0xef,0xd8, + 0x7b,0x35,0x2c,0x15,0xa6,0x1f,0x89,0x68,0x33,0x9b,0xb5,0x44,0xec,0x36,0xa6,0x65,0x2b,0xde,0x33,0x97, + 0xe1,0x65,0x88,0x97,0x88,0xe5,0xde,0x79,0x82,0x2d,0xb7,0x5e,0x37,0xbe,0x93,0xb3,0xae,0xca,0x54,0x92, + 0x42,0xb9,0x31,0x3c,0x25,0xa0,0x99,0x66,0x15,0x73,0x57,0xf8,0x8e,0x28,0xcb,0xc6,0x44,0xcb,0x85,0xce, + 0x0f,0xc5,0xad,0xfd,0xd0,0x58,0xaa,0xe8,0x38,0xff,0x59,0x9a,0x51,0xdd,0xa2,0x74,0x8c,0xb8,0xa0,0x2d, + 0xad,0xd0,0xb9,0x8f,0xab,0x5e,0x88,0x59,0xb0,0x21,0x06,0x54,0x20,0x5b,0x11,0xa1,0x11,0xa8,0xc3,0x8f, + 0x3d,0x92,0xf0,0xa6,0x3b,0x1d,0x09,0x1d,0x21,0xb4,0x30,0xb0,0xdf,0x01,0x82,0x27,0xc2,0xc6,0x9a,0x35, + 0x8e,0xdb,0x70,0x97,0x47,0x63,0xf6,0x6e,0x76,0xde,0xaf,0xc4,0x10,0xe5,0x90,0xec,0xc6,0xd5,0xf8,0xba, + 0xa0,0x85,0x00,0x21,0x1d,0x77,0x89,0xff,0x33,0xdb,0xa2,0x66,0x27,0x0b,0x70,0xd8,0xe0,0x28,0xb7,0x55, + 0xde,0x34,0xe7,0x0b,0x64,0x8d,0xb4,0xc8,0xc0,0x1d,0x41,0xb9,0xc8,0xf8,0x27,0x73,0xe2,0xed,0xd9,0x35, + 0x93,0xf7,0xc0,0x8d,0x30,0x73,0xf4,0x72,0x83,0x22,0x11,0x41,0xb9,0x4f,0x92,0x67,0x86,0x3b,0xd0,0x0f, + 0x2c,0x44,0x1e,0xa5,0xd0,0x8b,0xd3,0xa8,0x61,0x0c,0xfe,0x43,0xcd,0xc7,0x01,0xa1,0xc3,0x9a,0xe6,0x77, + 0x4c,0xac,0x5f,0xb9,0x40,0x42,0x0d,0x11,0x84,0x7d,0x01,0x03,0x1e,0xeb,0x3a,0x38,0x83,0x9f,0x90,0xba, + 0xc9,0x81,0x51,0x52,0x48,0xdc,0xc1,0x44,0x0b,0x47,0x5b,0x42,0x80,0x11,0x22,0x28,0x05,0x17,0x2e,0x0b, + 0x66,0xe0,0x8f,0xf5,0xf9,0x4d,0x84,0x53,0x7e,0xd2,0x3a,0x5b,0xf1,0x15,0x8b,0xbe,0x2c,0xc5,0x38,0x11, + 0x6a,0xbf,0x26,0x2e,0xdf,0x05,0x05,0x73,0xd6,0x5c,0x2d,0x1a,0x50,0x8e,0x9f,0x9a,0x2d,0x7c,0x8e,0xaa, + 0x2c,0x43,0x0f,0xb7,0xd2,0xc0,0x88,0x60,0xdf,0x01,0x46,0x0d,0x83,0x48,0xe7,0x68,0xd3,0x59,0xe2,0x2a, + 0x1a,0x3f,0xa6,0x3f,0xf1,0x53,0xfc,0x09,0x8f,0xb2,0x50,0x3e,0x49,0x5a,0xd0,0x35,0x94,0x7a,0x3f,0x30, + 0x8c,0xbf,0x28,0x00,0xf7,0x4e,0x8f,0x6a,0x60,0xff,0x3d,0xdc,0xc1,0x45,0xbc,0xca,0x9a,0x55,0xd8,0xc3, + 0xc8,0x77,0xa7,0xa7,0xc1,0x5e,0xa6,0x76,0x0f,0xa3,0xd6,0xf9,0x73,0x65,0x49,0x05,0xdd,0xbd,0xa3,0x4c, + 0x1b,0xd1,0x10,0xaf,0x8a,0x4f,0x9a,0xbd,0xb0,0x18,0x07,0xa7,0xf0,0x92,0x0e,0x02,0x09,0x40,0xe4,0x4d, + 0xc9,0x51,0xe6,0x89,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe3,0x2f,0x99,0xa0,0xe3,0x50,0xb4,0x1a,0x9d, + 0x3a,0x47,0x02,0x4e,0xfe,0x94,0x69,0x75,0xea,0x1e,0x1a,0xae,0xac,0x78,0xef,0x93,0x69,0xcd,0x33,0x39, + 0xb3,0x1d,0x70,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xd8,0x70,0xe5,0xf5,0x3b,0x1a,0x4a,0xe2,0xed,0xc5, + 0x6b,0x8f,0x4d,0x81,0x22,0xbe,0x89,0x1c,0x5d,0x5f,0xca,0x9f,0x31,0x23,0x20,0x3c,0x45,0xb1,0xc7,0x7f, + 0x55,0x22,0x41,0xf3,0x74,0x7d,0x84,0x3a,0x21,0x81,0x1c,0xb1,0x6e,0x2f,0x1f,0x1f,0x9f,0x18,0x2d,0x75, + 0xae,0xfd,0xc9,0xb7,0xc1,0xe8,0x69,0x26,0x7e,0x65,0xa7,0x65,0x72,0x95,0x51,0x1b,0xa7,0x05,0x87,0x5c, + 0x3f,0x85,0x7c,0x8c,0x7e,0xe6,0xc9,0x25,0xa7,0x36,0xc9,0x82,0x7f,0x7f,0x4b,0x6e,0xf0,0x93,0x27,0x67, + 0xf8,0x59,0x24,0xa7,0x9c,0x3a,0x4b,0xce,0xf9,0xf7,0x53,0x72,0xc3,0xbf,0x67,0xc9,0x19,0xff,0x5e,0x26, + 0xd7,0xf8,0xa1,0xf1,0x22,0xe2,0xc6,0xe9,0x2a,0x29,0x39,0xf9,0x3c,0xb9,0xf6,0x7a,0xf0,0x58,0x26,0xcd, + 0x17,0x13,0x12,0x83,0xac,0xc1,0x4c,0x1c,0x32,0xd8,0x53,0x49,0x47,0x4a,0x15,0x0d,0x6f,0x23,0x2f,0xd6, + 0x22,0xac,0xd2,0x99,0x7c,0x52,0x27,0x3a,0x26,0xe9,0x5c,0x47,0x89,0xa9,0x13,0xd9,0x86,0x97,0x85,0x09, + 0xf8,0x89,0x93,0x88,0x8d,0xd8,0x88,0xe2,0x49,0xf5,0x3b,0x6d,0x7d,0xc9,0x66,0x3c,0xde,0x43,0x1c,0x57, + 0x19,0x5b,0x22,0x6c,0xda,0xa6,0xa1,0x9a,0x28,0xca,0xc5,0x95,0x2e,0x15,0x1a,0x10,0x71,0x57,0xe0,0x53, + 0xb7,0x3b,0x19,0x4d,0x8c,0x73,0xa1,0xd9,0x39,0x49,0xaa,0xbc,0xf3,0x22,0x71,0x4d,0x86,0x91,0xda,0x3a, + 0x93,0x60,0x19,0xee,0xde,0x30,0x04,0x44,0xa5,0x38,0xad,0xc5,0xbe,0x6e,0xac,0xa9,0xce,0xad,0x70,0x28, + 0x46,0x5a,0xf2,0x8e,0xa3,0xf7,0x6b,0xc4,0xbb,0xb2,0xe7,0x65,0xc9,0xa6,0x4f,0xce,0x64,0xcf,0xd5,0xa8, + 0x3c,0x89,0x48,0x42,0x63,0x2a,0x37,0xf1,0xdd,0x6d,0x18,0xba,0xae,0xdd,0x88,0x47,0xcb,0x7c,0xcc,0xee, + 0xb0,0x5a,0x66,0x5d,0xab,0x58,0x2e,0x7b,0xd6,0x67,0x98,0x5f,0x4d,0xf0,0x88,0x76,0x25,0x0b,0x8d,0x55, + 0xdd,0x8a,0xfa,0x68,0x51,0xcf,0x29,0x1c,0x0d,0x59,0x11,0xa5,0xcf,0xfd,0x64,0x65,0xa4,0x73,0x54,0xbe, + 0xcf,0xca,0x43,0x4f,0xc8,0x9c,0x19,0x78,0xc8,0xcd,0xf2,0x29,0x3e,0x9c,0x13,0xdc,0x58,0xe5,0x65,0xe8, + 0xc5,0xc9,0xaa,0xc4,0xa9,0x19,0xe7,0x14,0x95,0x66,0x7d,0x0d,0x8b,0x1f,0xf5,0x33,0x3c,0x74,0x9d,0x8c, + 0xcd,0xa5,0x69,0xe9,0x9c,0x89,0x5b,0x3b,0xf5,0xca,0x98,0xa4,0x91,0xae,0x13,0x71,0x8a,0x08,0xd9,0xe8, + 0x5a,0xf5,0x5b,0xa7,0x5e,0x2f,0x95,0x85,0x65,0x22,0xf1,0xe3,0xb5,0xa9,0x23,0xa3,0xb9,0x70,0x49,0x89, + 0x08,0xd2,0x09,0xdf,0xac,0x7c,0xe8,0x35,0x93,0x9f,0x11,0x69,0xd5,0x38,0xd2,0x2a,0x7b,0x44,0x24,0x0c, + 0x44,0x0f,0xc0,0xdc,0xf7,0xa8,0xd0,0x24,0xfb,0x81,0x8f,0xa6,0x30,0xda,0xa8,0x79,0x72,0xda,0x52,0xca, + 0xb8,0xfe,0x27,0x10,0xaf,0x96,0x04,0xec,0xeb,0xf5,0x2a,0x64,0x97,0x9d,0x4e,0xd1,0xf6,0x24,0x31,0x55, + 0x26,0x41,0xc8,0xd0,0xaf,0x90,0x63,0xa7,0x4c,0x93,0x2a,0x9c,0xab,0x99,0x73,0x9d,0x08,0x79,0x35,0xfa, + 0xdc,0x74,0xd8,0x5b,0x72,0x9c,0xf9,0x73,0x3a,0x18,0x48,0x2a,0x57,0x11,0x37,0xe1,0xd4,0x49,0x41,0xa3, + 0xde,0x68,0xce,0x5e,0x01,0xfe,0x10,0x06,0x58,0x9d,0x24,0xae,0x4b,0xa1,0x2e,0xb3,0xd6,0xfe,0x28,0x68, + 0xcc,0x3a,0x03,0x76,0x01,0x5c,0xcc,0x2d,0x5f,0x7b,0xf5,0xb8,0xa8,0x7e,0xc7,0x34,0x01,0xb0,0xa6,0xc4, + 0x15,0xcc,0xd3,0x9b,0xb1,0x2d,0x48,0x53,0x11,0x13,0x4f,0x7a,0x24,0x81,0xd3,0x7c,0x8d,0x5c,0x67,0xa0, + 0x99,0x07,0x7c,0xa1,0xff,0xb9,0xcc,0xa4,0xd2,0x35,0xaf,0xd7,0x0f,0x0f,0x0e,0x74,0xc7,0x74,0x34,0x36, + 0x38,0xbe,0xff,0x99,0x16,0xe4,0x0a,0x0a,0xae,0xca,0x7c,0x19,0x01,0x93,0xed,0x1e,0x2a,0xdb,0xde,0xb8, + 0x35,0xc2,0xd8,0x7d,0xbf,0x71,0xb0,0x67,0xb4,0x0b,0x1b,0x9a,0xc9,0x15,0x6d,0x1d,0x27,0x82,0xee,0xa2, + 0x0d,0xcf,0xb4,0xb4,0x0a,0x1d,0x46,0x6a,0x49,0x22,0x09,0xd7,0xeb,0x84,0x37,0x19,0x61,0x7e,0x89,0xcc, + 0xd7,0x28,0xdd,0x18,0x02,0xe0,0x69,0xbc,0x1f,0x13,0xde,0x4f,0xcf,0x89,0x22,0x26,0x44,0x45,0x2d,0x1b, + 0xe4,0x31,0x2a,0x93,0x92,0x29,0xf8,0xe7,0xc0,0x20,0x8a,0x03,0x0f,0x13,0x69,0x3b,0xf7,0x2c,0x38,0x3d, + 0x26,0x0b,0x81,0xa9,0x91,0x0b,0x0a,0x91,0x1f,0xf8,0x8c,0x21,0xd2,0x92,0xf9,0xef,0x80,0x85,0xd1,0x9d, + 0x02,0x19,0x64,0x61,0x54,0x22,0x2f,0xe0,0x26,0x3c,0x0a,0x0b,0x39,0x96,0x58,0x44,0xbc,0x34,0xc4,0x62, + 0xc4,0xda,0x0e,0xfd,0x05,0xd7,0xa5,0x2d,0x4d,0x8a,0xa1,0x76,0x0e,0x14,0xa2,0x70,0x44,0xfd,0x23,0xe2, + 0x2f,0x1a,0xe3,0x6f,0x72,0x6c,0xbe,0x00,0x35,0x75,0x96,0x4e,0x3e,0xd9,0x43,0x9c,0x0b,0xc5,0x5c,0xa8, + 0x5b,0x66,0x43,0xab,0x6a,0xc8,0xfe,0x52,0x08,0xe7,0x99,0xc3,0x01,0xad,0x08,0x5c,0xb6,0xa0,0xb3,0xed, + 0xda,0x45,0x74,0x54,0x83,0x4f,0x68,0xd6,0xe8,0x20,0x13,0xe2,0x16,0x5e,0xe1,0xae,0x58,0x13,0xc2,0x0c, + 0xa7,0x09,0x57,0x8e,0x96,0x9a,0x33,0xe1,0x6b,0x82,0x7b,0x12,0xf9,0x3f,0x8f,0x46,0xdf,0xd2,0x69,0xb0, + 0x52,0xb4,0xa1,0x40,0x9e,0xad,0xd7,0x78,0x9d,0xc8,0xeb,0xa1,0xa5,0x63,0xeb,0xcd,0x06,0x82,0x73,0x8d, + 0x0b,0x4d,0x87,0x4c,0x87,0xd3,0x79,0x1f,0xf4,0xb4,0x35,0x89,0x38,0xd2,0xf5,0x80,0x75,0x9f,0xd3,0x76, + 0x4f,0xa3,0x96,0xd0,0x7c,0x42,0x78,0x6e,0x75,0x92,0xbc,0x0d,0x57,0xd4,0x19,0x26,0x05,0x34,0x15,0x07, + 0x74,0xc5,0x63,0x25,0xd8,0xf8,0x88,0x83,0xcc,0xbc,0x2a,0xe4,0x70,0x8d,0x2e,0x47,0x5e,0x79,0x7a,0xe7, + 0xc2,0xbe,0xe2,0xc8,0xa2,0x29,0x67,0x13,0x14,0x42,0x85,0xe9,0x50,0x08,0x5f,0xcf,0xe0,0x60,0x4e,0x67, + 0xa7,0xf2,0x9c,0x9a,0xb6,0x74,0x7e,0x33,0xff,0xc4,0x55,0x33,0xcf,0xc2,0x3e,0x85,0x23,0x27,0xab,0x32, + 0x42,0x2a,0x85,0x4d,0x40,0x50,0x23,0x0f,0x0c,0x5f,0x9c,0x99,0x48,0x19,0xda,0xb5,0x33,0xd8,0xc2,0xcc, + 0x64,0x13,0x48,0x27,0xa7,0x20,0xa4,0x58,0x6a,0x8d,0x5f,0x7a,0x11,0x8f,0x87,0x77,0x85,0xf2,0xa7,0x3d, + 0x45,0x80,0x23,0xda,0x78,0x1a,0x04,0x96,0x54,0x8e,0x79,0xd3,0x12,0xf3,0xba,0x64,0x52,0x81,0x1b,0x5a, + 0x46,0x9b,0x5d,0x1f,0xd3,0x67,0x46,0x4b,0x99,0x59,0x05,0x65,0xc7,0x40,0xe1,0x59,0xe5,0x8b,0x4d,0x35, + 0x59,0xfb,0xac,0x12,0x89,0xa7,0x7c,0x05,0xcd,0x40,0x9e,0xfc,0x0a,0xe7,0xa7,0x91,0x4d,0x49,0xaa,0xb1, + 0x8f,0x36,0xb6,0xa5,0x71,0x16,0x16,0x32,0xfb,0x08,0xcf,0x5a,0xfd,0x48,0xc0,0x95,0x13,0x7d,0x42,0x68, + 0x81,0xa1,0x0c,0xcd,0x5e,0x78,0x70,0x2f,0xf1,0x53,0x27,0x56,0x55,0x22,0xee,0x17,0xc1,0xe5,0x2a,0xdb, + 0xb7,0xa7,0xc2,0x3e,0x51,0xfa,0xa0,0x12,0xf6,0xc2,0x8b,0x71,0x40,0x2f,0x17,0xcc,0x6f,0x94,0xaa,0xd7, + 0xed,0x23,0x55,0xb7,0x4f,0x09,0x6d,0x11,0x32,0xb2,0x56,0x4f,0xf1,0x4c,0x59,0xea,0x33,0x9e,0x32,0x92, + 0x9a,0x38,0xac,0x45,0x7c,0xfc,0x1c,0x3e,0xaf,0xce,0xd2,0x1a,0x71,0xf4,0x35,0xf6,0x22,0x12,0xca,0x28, + 0x2f,0xdb,0x3c,0x4c,0xca,0x46,0x70,0x29,0xcc,0x1a,0xc2,0x49,0x02,0xb8,0x4f,0x89,0xe0,0x97,0x3e,0x44, + 0xb4,0xa2,0x2b,0xc9,0x78,0x5d,0x79,0xf2,0xe7,0xbc,0x45,0x50,0x35,0xf4,0x35,0x08,0x8e,0xd4,0x58,0x3f, + 0x58,0xed,0x1b,0x50,0x71,0xab,0x40,0xce,0xfa,0x76,0x44,0x39,0x03,0xdf,0x46,0xdc,0xac,0x5f,0xb2,0xdd, + 0xaf,0xba,0xff,0xd8,0xc5,0xc5,0x01,0x80,0xdc,0x14,0x92,0x0f,0x82,0x0d,0x9f,0x90,0x25,0x94,0x2e,0x82, + 0xb2,0x58,0xae,0x17,0xb0,0xfe,0x53,0xb8,0x33,0x8a,0x8e,0xcc,0xd7,0xd5,0x98,0x28,0x9b,0x70,0x95,0xd4, + 0xd1,0xf8,0xf8,0x9a,0x46,0x76,0xd2,0xb1,0xb2,0x5d,0xb9,0x78,0x56,0x44,0x3e,0xb8,0x08,0x34,0x98,0x3e, + 0x20,0x1b,0x44,0xa2,0x11,0xb1,0x13,0x6c,0xa1,0x4b,0xdf,0x16,0x3a,0xa3,0x39,0x2a,0x8f,0xeb,0x93,0xa8, + 0xcf,0x03,0x96,0xc8,0x1a,0xa2,0x0a,0x67,0xc7,0x44,0x41,0xd9,0x68,0x22,0x27,0x1d,0xb3,0xfc,0x49,0x34, + 0x36,0x4e,0x5e,0xdf,0x1c,0xd0,0x08,0x7f,0x0e,0xa9,0xc6,0x3c,0x9c,0x28,0xd8,0x9d,0xb0,0x47,0x3e,0xf1, + 0x89,0x44,0xa0,0xd1,0xc8,0x68,0x66,0x7e,0x0e,0x39,0x4a,0xc6,0x0c,0xe8,0xe7,0x3a,0x9c,0xb3,0x6e,0x6d, + 0x6f,0x42,0x79,0xa2,0xc9,0xc6,0xcd,0x57,0xfa,0x56,0x00,0xda,0xfb,0x9e,0x42,0x70,0x46,0x6b,0x16,0xc5, + 0x30,0x7a,0x1c,0xa3,0x8a,0x71,0xa7,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0xbc,0x06,0xce,0x8b,0x7f, + 0xa6,0xbf,0xd2,0x66,0xf7,0x03,0x69,0x2e,0x26,0x84,0x5b,0x5a,0x31,0x19,0xaf,0xf5,0x04,0xca,0x48,0x26, + 0x36,0x26,0x60,0x53,0x65,0xfd,0x19,0x94,0x98,0x6b,0x25,0xee,0xfb,0x12,0xa0,0x1c,0xec,0xa5,0x32,0x30, + 0xfa,0x7b,0x1a,0x98,0xce,0xa2,0x51,0x87,0xdb,0x36,0xb4,0x2e,0x5a,0xf4,0x13,0x63,0x19,0x5f,0x55,0x6c, + 0xb3,0xf1,0x27,0xd5,0x2a,0xdb,0x4c,0x3b,0x21,0x0a,0x0b,0xa2,0x92,0xe5,0x87,0x6e,0xc2,0xa1,0xa8,0x27, + 0xeb,0xf8,0x44,0x65,0x9e,0xbd,0x3a,0xcc,0x43,0x78,0xdb,0x33,0x2c,0x8c,0xfa,0xec,0x42,0xf5,0x39,0x32, + 0x1d,0xcd,0x92,0x7c,0x78,0xef,0xb2,0xa0,0xe3,0x14,0x01,0xb0,0xe4,0x69,0x58,0xd4,0x2c,0x1c,0x3a,0x27, + 0x12,0x2a,0x3d,0x47,0x8c,0xd8,0x7a,0x89,0xe0,0x0a,0x84,0x65,0xe6,0x10,0x95,0xe5,0xf5,0x87,0xac,0xce, + 0x2a,0x22,0x81,0x28,0x9b,0x52,0xc7,0x1a,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9f,0xa7,0x0d,0x82,0x65,0xe8, + 0x8f,0xf1,0x1d,0x36,0x61,0x1b,0x6b,0xe4,0x4c,0xbc,0x26,0x2f,0xc2,0xdc,0x13,0xd9,0x59,0x04,0x54,0x07, + 0xa0,0x35,0xc7,0xc4,0x13,0x4d,0xe9,0xdb,0x1c,0x87,0x4c,0x14,0xeb,0x66,0xca,0xde,0xda,0x44,0x7b,0x39, + 0x4f,0xe8,0x93,0x52,0x3e,0xf1,0xe4,0xa3,0x04,0x0f,0xe1,0xcc,0xf3,0x5f,0xa9,0xc2,0xdc,0xb2,0x38,0x39, + 0x1c,0xc6,0x4a,0x62,0x9b,0xca,0x2a,0xcb,0xcf,0x8b,0x77,0xc6,0x4d,0x9a,0x26,0x86,0x20,0x83,0xb1,0x80, + 0x41,0x74,0x2c,0xca,0x6c,0xe8,0x0b,0x83,0xca,0x3c,0x13,0x6d,0x8e,0x73,0xe5,0x72,0xec,0x96,0x7b,0x34, + 0xe1,0x6d,0xa7,0xd9,0x38,0x57,0x80,0xb6,0x20,0x51,0x3e,0x2b,0x0d,0x7d,0xc4,0x96,0xad,0x86,0x6c,0xc0, + 0x50,0x08,0x8a,0xa3,0xdd,0xcf,0x3d,0xdc,0x6c,0x84,0x38,0x9f,0xd3,0xf0,0x61,0x0f,0xe5,0xa1,0x34,0xcf, + 0x69,0xc3,0x0f,0x64,0x67,0x65,0x07,0xac,0xad,0xad,0x57,0xcb,0xac,0x32,0x67,0x0f,0xca,0xe9,0x14,0x26, + 0x3e,0xd8,0x22,0x95,0xdf,0x8d,0x01,0xc5,0x6d,0xfb,0x3d,0x31,0x7e,0x27,0x5d,0x23,0x6c,0x44,0x78,0x73, + 0x24,0x08,0x4e,0x33,0xe1,0x40,0x8d,0x47,0x1c,0x88,0xc6,0x3a,0x4b,0xe7,0x99,0x49,0xb1,0x47,0x63,0x69, + 0x94,0xf8,0xe5,0xc9,0xae,0x98,0x48,0x42,0x42,0xc0,0xbe,0x97,0x08,0x50,0xd3,0x40,0xc6,0xdd,0x63,0xa4, + 0xbb,0x25,0xcf,0xd2,0xc4,0x2b,0x21,0xba,0x22,0xe9,0x0a,0x51,0xc7,0x45,0xcc,0x2a,0xf7,0x2d,0xf3,0x38, + 0xf1,0x4d,0xb0,0x7d,0x11,0x8d,0x4a,0xe6,0x6b,0x54,0xc2,0xc6,0x49,0x76,0x41,0x70,0x7e,0x93,0x1c,0xd0, + 0x9a,0xb4,0xd3,0x1e,0x1d,0x60,0x81,0x74,0xa0,0x2f,0x24,0x38,0x7f,0x39,0xb7,0x07,0x0b,0x23,0xb1,0x57, + 0x18,0xa3,0xe7,0xcc,0xbf,0x61,0xaf,0x79,0x78,0x1d,0x77,0x27,0x8d,0x4e,0xae,0xd0,0x5b,0xc0,0xe4,0x35, + 0xb4,0xd1,0xed,0x32,0xda,0x1a,0x8b,0x23,0xd9,0xb8,0xcd,0x72,0xdc,0x70,0xea,0x49,0x82,0x10,0x2b,0xdb, + 0x16,0x05,0xef,0x33,0x1b,0xe2,0xe4,0x14,0xf1,0x02,0x5a,0xb6,0x97,0xbf,0xb6,0xec,0x23,0xd8,0x45,0x11, + 0xa7,0x79,0x87,0x5c,0x60,0xef,0x4c,0xef,0xab,0x67,0x59,0x8b,0x32,0xe9,0xae,0xce,0xd8,0x77,0x9d,0xff, + 0x66,0xff,0x30,0xde,0xd6,0xd5,0x8c,0x7d,0xa7,0xff,0x4e,0x69,0xa8,0xea,0xd4,0x6e,0x68,0xe3,0x28,0x48, + 0x20,0xb1,0x13,0x60,0x7c,0x13,0x47,0xa1,0x90,0x08,0xd8,0xec,0xb6,0xda,0x68,0x74,0xe7,0x89,0x15,0x5f, + 0x75,0x4c,0x04,0x58,0x4d,0xca,0x70,0x0a,0x05,0x0c,0x83,0xe7,0x29,0xe3,0xba,0x2e,0x5c,0x9a,0x40,0xbd, + 0x30,0x7b,0x67,0x4b,0x47,0xcd,0x17,0xfc,0x0a,0x49,0xd9,0x96,0xbd,0xd1,0xa8,0x86,0x00,0x99,0x49,0x80, + 0xd7,0xa0,0xc5,0x4a,0x66,0xf0,0x7c,0xd2,0xe6,0xf5,0x96,0xae,0x81,0x2d,0xf1,0x77,0x73,0xf6,0xd8,0x62, + 0x14,0x03,0x87,0x35,0xfc,0xe2,0x96,0x10,0xdb,0xc2,0x2b,0x4d,0x26,0x0f,0xef,0x4d,0x69,0x88,0x55,0x09, + 0x97,0xad,0xcc,0xea,0xfd,0xe7,0x7c,0xe7,0xa5,0xe7,0x05,0x90,0xf9,0x9e,0xdd,0xb7,0x22,0x64,0x7e,0x0a, + 0x3d,0x41,0xfc,0x96,0xf7,0xbc,0x4b,0x50,0x85,0xff,0x46,0x07,0x30,0x97,0x82,0x69,0x19,0x3f,0x11,0xc1, + 0xa1,0x9f,0x10,0x1c,0x19,0xbf,0x27,0xb1,0x7e,0xf0,0xcd,0xfa,0xdb,0xcb,0x9f,0x8d,0x9b,0x71,0xb6,0x17, + 0x20,0xec,0x4d,0x9c,0xc5,0xe0,0x0c,0x3d,0x9b,0xef,0x37,0x3e,0x80,0x6d,0x01,0x4a,0xdf,0xe1,0x48,0x93, + 0x85,0xd0,0x81,0xb4,0x3b,0x55,0xe9,0x54,0x76,0xf9,0xa3,0x92,0x77,0x28,0x11,0xba,0x09,0xea,0xc4,0xc6, + 0x03,0xe9,0xc5,0x17,0xbb,0x41,0x40,0x80,0xff,0x7b,0x09,0xf5,0x22,0x52,0xf4,0x5b,0x78,0xbb,0x92,0x95, + 0x34,0xdd,0xd6,0x04,0x5d,0x06,0xc1,0xa8,0x25,0x9e,0xcb,0x74,0x4c,0x80,0xb0,0xd1,0xa1,0x77,0x51,0x5d, + 0xe3,0x57,0xc7,0x1b,0xb8,0x17,0xa0,0xdb,0xa6,0xee,0xfe,0xb0,0x53,0x6e,0x3d,0xa8,0x2f,0xcf,0x83,0x38, + 0x58,0xa4,0xcd,0x05,0x1b,0x1a,0x8d,0xe5,0x71,0x4b,0x5b,0xf4,0x53,0x66,0xa2,0xfb,0x6c,0x6b,0x38,0x4d, + 0x8d,0x36,0xea,0xde,0x6f,0xab,0xac,0xba,0xf9,0x98,0x41,0x0f,0x5d,0xca,0x3d,0x34,0x77,0xc5,0xd2,0x9c, + 0xe6,0x97,0x41,0x9f,0x2a,0xe5,0x49,0x67,0xaf,0xb0,0xcd,0x65,0x95,0xcd,0x3a,0x3e,0x42,0xc6,0xf3,0x3a, + 0xf7,0xdd,0xb8,0x0d,0x98,0x02,0x43,0xc0,0x41,0xbb,0x84,0xe5,0x3c,0x7d,0x5b,0x8f,0xba,0x6a,0x95,0x92, + 0xad,0xa1,0xe6,0xfc,0x8b,0xc3,0x1f,0xbf,0x38,0x64,0x71,0xc0,0xe2,0x51,0x13,0xf2,0xb1,0x6b,0xff,0x55, + 0xf1,0xa2,0xac,0x7a,0x6b,0xc1,0x5f,0x8b,0x32,0x72,0xc2,0xc7,0x83,0x01,0x27,0x31,0x46,0x36,0x75,0x13, + 0x7c,0xc8,0x43,0xee,0x01,0xee,0x8f,0x22,0xc4,0x76,0x31,0xb6,0x40,0xe3,0xe1,0xa8,0xa7,0x5f,0x16,0x32, + 0xc9,0x7e,0xd4,0x47,0xbf,0xef,0x1f,0xce,0x3a,0x3f,0x67,0x3c,0xd6,0x68,0xe3,0x54,0x8e,0xc4,0x42,0x14, + 0x01,0x3f,0x77,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x0a,0x16,0x51,0xc1,0x1b,0x31, + 0xac,0xf4,0x9c,0x8b,0x30,0x34,0x71,0x0c,0x79,0xc5,0xba,0x3a,0xe8,0x6a,0xd9,0xaf,0xec,0x33,0x65,0xac, + 0x28,0x11,0xd6,0x75,0xeb,0xf5,0x2a,0x67,0x87,0x46,0xfa,0x21,0x6e,0x90,0x07,0x0c,0xba,0x02,0xa3,0x79, + 0x0c,0xa9,0xd2,0x7b,0x84,0xca,0xba,0x28,0xe7,0xc4,0xa9,0x73,0x0d,0x2d,0xd9,0x13,0xc6,0xe9,0x27,0x80, + 0x32,0x6e,0xa7,0x68,0x99,0x9c,0x6f,0xbf,0x9f,0x89,0x80,0xc2,0x6a,0x97,0xc5,0x49,0x0e,0x1b,0x2b,0x27, + 0x12,0x22,0x7f,0x94,0x54,0xa3,0xbd,0xbd,0x9c,0xb6,0x2e,0x2c,0x18,0xf3,0x13,0x4d,0x68,0x87,0x29,0x0e, + 0x7b,0xe7,0x69,0xe9,0x79,0x9e,0xbc,0xd4,0x30,0xa9,0x63,0xe4,0x79,0x0e,0x5f,0xeb,0x75,0xd3,0x4d,0x6a, + 0xcf,0xbb,0x81,0x64,0xe1,0x86,0x13,0xc4,0xe8,0x98,0xc2,0x6b,0xaf,0x91,0x87,0x3a,0xf9,0x3d,0xdb,0xae, + 0xd5,0x45,0x16,0x00,0x07,0x46,0x25,0xb6,0x1a,0xc1,0xc5,0xc8,0xa6,0xc4,0x8a,0xc8,0x0e,0x22,0x85,0x35, + 0x93,0x55,0x88,0x84,0xa5,0x4a,0x6a,0xe1,0xe6,0x27,0xf8,0xa9,0xc6,0x34,0x6b,0x34,0xc5,0x3f,0x42,0xf0, + 0x95,0x18,0x47,0xdc,0xdf,0xc0,0xe8,0x6a,0x1d,0x68,0xa0,0x70,0xe7,0x81,0xca,0x61,0x34,0x81,0x93,0x80, + 0x7e,0xdc,0xbe,0x12,0x59,0xf4,0x74,0x30,0x98,0x1b,0xa0,0x26,0xde,0x45,0xbe,0x86,0xcf,0x5a,0xdf,0xb7, + 0x79,0x41,0x34,0x39,0x7f,0xb3,0xb2,0xdf,0x60,0x0b,0xaf,0x5a,0x51,0x6d,0x66,0x7d,0xb2,0x71,0x31,0xce, + 0x5b,0xf9,0x26,0x79,0xd4,0xd6,0x0a,0xe3,0x08,0x4c,0xb5,0xd2,0xe4,0x66,0x54,0x8e,0xbf,0x83,0xbf,0x94, + 0x24,0x07,0x90,0x41,0xcf,0x42,0x76,0x0a,0x98,0xdb,0xc8,0x1f,0x5c,0x00,0x71,0x04,0x75,0xf8,0xc0,0x3b, + 0x5b,0x9c,0x77,0x5a,0x9c,0x73,0x8b,0xdd,0x49,0xd0,0x2d,0x33,0x1b,0x6e,0xe7,0xbb,0x8e,0x26,0xec,0x75, + 0x46,0x5f,0xf1,0xb4,0x07,0xab,0x42,0x26,0x26,0xa3,0x7f,0x10,0xc4,0xb6,0x0d,0x76,0x7f,0x6f,0xe1,0xb8, + 0xbe,0xa8,0x3b,0x1d,0x73,0x5c,0xbd,0x3d,0x47,0x62,0xf6,0xb1,0xa5,0x32,0x0d,0x73,0x36,0xc5,0x8d,0x86, + 0x3a,0x2e,0x38,0xeb,0xc4,0x73,0xf7,0x96,0x5c,0xe6,0x91,0x2a,0x8e,0x09,0xde,0x09,0x06,0x87,0x55,0x7a, + 0xf5,0x96,0xc9,0xa8,0x92,0xc9,0xa9,0xbd,0x60,0x18,0xec,0xf9,0xf6,0x20,0xa5,0x5f,0x0d,0x64,0x05,0x12, + 0x76,0x75,0x18,0x44,0x11,0xed,0x0f,0x59,0x66,0xe2,0x94,0x1a,0x8f,0x53,0x72,0x80,0x49,0x07,0x25,0xd7, + 0x1a,0xe9,0xb8,0xf5,0xdb,0x26,0xb0,0xbf,0x65,0xdb,0xd2,0xe7,0x4c,0x40,0x87,0x7f,0xb4,0xdd,0x64,0xc9, + 0x86,0x91,0x65,0x58,0x48,0xa8,0x0d,0x5d,0x5e,0x1b,0x47,0x56,0x30,0x8e,0xac,0xe4,0xc2,0x04,0x3e,0x06, + 0x5c,0x0f,0xf8,0x1a,0x14,0x19,0x17,0x28,0x00,0x67,0x3c,0xe9,0xb9,0x42,0x64,0xa1,0x47,0x01,0x6d,0x1b, + 0x6e,0xf3,0xec,0x87,0x0d,0x63,0x2d,0x71,0x9d,0x6a,0x13,0xa1,0x79,0x71,0x91,0x55,0x39,0xc7,0xdb,0xa6, + 0x19,0xca,0x42,0x41,0x86,0x16,0x09,0x66,0xc6,0x53,0x40,0x12,0x34,0x73,0xc0,0x7c,0x12,0x35,0x86,0xd1, + 0x4c,0x12,0xff,0x13,0x16,0x8e,0xaf,0x92,0xaa,0x93,0xc4,0xfc,0x98,0x16,0x0d,0x21,0x1c,0x42,0xab,0x40, + 0xc2,0x5a,0xe8,0x95,0x76,0x97,0x60,0x6a,0x71,0x15,0xa5,0xc9,0x0a,0x14,0xfe,0x44,0x98,0x99,0x94,0x40, + 0x1f,0x92,0x52,0xf0,0x6d,0xa3,0xf0,0x6d,0xb1,0x5e,0x7f,0x80,0x41,0xc7,0x4a,0x36,0x3f,0xc4,0x15,0xf2, + 0xa4,0x8b,0x19,0x01,0xbb,0xce,0xf7,0x2a,0x9e,0x44,0xd8,0x7d,0x25,0xdb,0xe2,0x37,0x40,0xe2,0x63,0x04, + 0xb7,0x43,0x60,0x5a,0x1b,0x71,0xfc,0xed,0xc7,0x30,0xcb,0x55,0x81,0xcc,0x28,0xfe,0x17,0x7d,0x17,0x21, + 0xd0,0x66,0xa7,0x10,0x32,0xbd,0x55,0xf8,0xce,0x37,0x10,0xf8,0x67,0xc5,0x4e,0x77,0x39,0x07,0xc8,0xde, + 0xfa,0x90,0x45,0x25,0x49,0x40,0x94,0x76,0x79,0x35,0xa3,0xfd,0x51,0xd3,0x5e,0xc9,0x8a,0x40,0xc2,0x8e, + 0x05,0xcf,0xdf,0x3c,0x79,0xfe,0x4c,0xdb,0x4a,0x0b,0x8f,0x3f,0x0e,0x9a,0x8a,0xc6,0x12,0x43,0xc9,0xdf, + 0x0a,0x8c,0xce,0x5e,0x6f,0xd6,0x1e,0xea,0x5f,0x95,0x0e,0x21,0xd0,0x2e,0xc2,0xbd,0x20,0xaa,0x71,0x96, + 0x52,0x39,0xd4,0x5b,0x8c,0xf5,0x73,0x2c,0xf5,0xba,0x1a,0x9a,0xfc,0x33,0xdd,0xb6,0x93,0xd2,0xe0,0xfe, + 0x8e,0x56,0x2b,0x92,0xd5,0x58,0xf3,0x05,0xaa,0x8a,0x2b,0x89,0xfa,0xc6,0x2e,0xf6,0x33,0x54,0xe4,0x2d, + 0xfc,0xdb,0xde,0xc0,0x6b,0xe2,0xe8,0xf9,0xcf,0x47,0x8f,0x3f,0x3c,0x7f,0xdc,0x1a,0x35,0xa5,0x2f,0xdd, + 0x59,0xaa,0x67,0x87,0x63,0x6a,0xe6,0xd9,0xf2,0xc2,0x90,0x4e,0xbe,0x2d,0x60,0x43,0xc4,0x77,0xb9,0x7c, + 0x45,0x44,0xc4,0x34,0x27,0xdc,0x03,0xcb,0x9a,0xf4,0x3c,0x15,0xe4,0xa8,0x4c,0x57,0x3a,0x77,0xbc,0x08, + 0x05,0x01,0x4b,0x91,0x51,0xd6,0x73,0x05,0x8c,0xcd,0x56,0xa6,0xe1,0x64,0xf7,0x60,0xd3,0xb3,0x0c,0x1e, + 0x24,0x7c,0xdb,0xd9,0x8f,0x86,0x74,0xe3,0xe0,0x3b,0xa9,0xde,0x2b,0xb2,0x29,0x33,0xc8,0xbf,0x3d,0x86, + 0x01,0xbb,0xad,0xd4,0xbc,0x02,0xcb,0x2d,0x20,0x97,0x05,0x73,0xd4,0x2d,0x94,0xea,0x42,0x91,0xd5,0xad, + 0xf4,0xd2,0xfa,0xe6,0x4e,0x34,0xf8,0x51,0x10,0x52,0x1d,0xb1,0x78,0xa5,0x4b,0x5e,0x46,0x23,0x60,0xdc, + 0x3e,0xf6,0x48,0xb8,0x38,0xbe,0xe4,0x72,0xca,0xde,0xb8,0x04,0xb6,0x2f,0x32,0x4d,0x90,0x31,0xec,0xb1, + 0x25,0xbd,0x10,0x4d,0xd6,0x8c,0x9e,0x83,0x65,0xf8,0xe5,0x0b,0xa5,0xc9,0x39,0xa7,0x92,0x4b,0x5a,0x8c, + 0x12,0xcf,0x8a,0xf0,0x45,0x0d,0x6f,0x36,0x48,0x09,0xc7,0x6f,0x21,0x6c,0x7a,0xc3,0xfa,0x23,0x22,0xfe, + 0x47,0x1a,0xeb,0xb0,0x65,0x32,0x84,0x41,0xa7,0x1c,0x37,0x36,0xc7,0x98,0xb9,0x92,0x8c,0xc8,0x62,0x96, + 0x50,0x86,0x75,0xf2,0x16,0x28,0xe0,0x4d,0xc6,0x12,0x44,0x05,0xd7,0xac,0x1c,0x06,0x98,0xd9,0x25,0x17, + 0xec,0xb9,0x83,0x40,0xac,0xbe,0x54,0x8d,0x53,0xdf,0x15,0x4c,0x6a,0x7f,0x59,0x7f,0xce,0xb6,0x9c,0xe4, + 0x42,0xb6,0xcb,0xf2,0x1c,0x36,0x32,0x6d,0x16,0x7e,0x41,0xb8,0x5d,0x2e,0x79,0xa0,0xf6,0x2f,0x92,0x7c, + 0xef,0x70,0xe3,0x91,0x4d,0x8c,0x3a,0x77,0x0f,0x45,0x15,0xba,0xc2,0x9f,0x39,0x5b,0x88,0x13,0x4b,0x36, + 0xa5,0xff,0x4b,0xfa,0x6f,0x1c,0x32,0x7b,0x84,0x28,0xd8,0x5c,0x6c,0x92,0x9b,0xf9,0x71,0xb1,0xe8,0x44, + 0xac,0xa3,0x2f,0xbe,0x16,0xdb,0xee,0xaf,0x1f,0xd2,0x90,0x45,0x3e,0xba,0x7b,0xe8,0xf6,0xe4,0x24,0xfa, + 0xe2,0xcb,0x4e,0x81,0x49,0xab,0xc0,0x2a,0xfa,0xfa,0xef,0x9d,0x02,0xab,0x56,0x81,0x79,0xf4,0xe5,0x7f, + 0x77,0x0a,0xcc,0x5b,0x05,0x0e,0x1f,0x7e,0x09,0x8e,0x71,0xbd,0xa6,0x07,0xde,0xcc,0x7e,0x17,0xf7,0x0e, + 0xa3,0xfe,0x8c,0x7d,0x64,0xcc,0x88,0xb9,0x5a,0xaf,0x97,0xd1,0x6d,0x7d,0x95,0x6b,0x8f,0x81,0x49,0x4a, + 0xb5,0x7e,0xf1,0x65,0x0c,0xc3,0x03,0x31,0x9a,0x1d,0x49,0xd2,0xd7,0x71,0xdd,0x49,0xfa,0xfa,0xef,0xf1, + 0xaa,0x93,0xf4,0xe5,0x41,0xbc,0xdc,0xdb,0x6b,0xa5,0x1c,0xc6,0xcb,0xfd,0xfd,0xd6,0x67,0x87,0xf1,0xb4, + 0x5d,0xe6,0xeb,0x2f,0xe2,0x69,0xbb,0xcc,0xe1,0xc3,0x2f,0xe2,0x59,0xbb,0xd0,0xe1,0xc3,0xaf,0xe2,0xd9, + 0xfe,0x3e,0x28,0x33,0x99,0x10,0xb7,0xe7,0x2e,0x13,0x1a,0x8e,0x5a,0x68,0x96,0x6b,0x74,0xc9,0xe1,0x25, + 0xc5,0xf9,0x25,0x5c,0x24,0xf6,0x9e,0x87,0x4b,0x88,0x55,0xf6,0xf7,0xa3,0xd1,0x62,0x30,0x38,0xd3,0x31, + 0x7c,0x17,0x11,0x6b,0x08,0x60,0xe8,0x2f,0x02,0x57,0x6b,0x3f,0x52,0x8e,0x43,0x86,0x22,0x66,0xd9,0xcd, + 0xa5,0xd1,0x0e,0xc4,0xe2,0x46,0x54,0x2c,0x5e,0xf9,0xde,0x82,0x31,0xdc,0xe4,0x2f,0xc0,0xe5,0xe0,0x12, + 0x10,0x07,0x5f,0xa9,0x0f,0x5f,0x65,0xd2,0x43,0xef,0x27,0x4e,0x72,0x17,0x84,0x81,0x08,0x38,0x1f,0x99, + 0x7b,0x49,0xee,0x9f,0x52,0xea,0x7d,0x22,0x4e,0xee,0x07,0x51,0x78,0x9f,0xa3,0xd0,0x07,0xa3,0x76,0x96, + 0xed,0x4b,0x11,0xb9,0x52,0x2a,0xb0,0x19,0x05,0xc1,0xc6,0x06,0xb2,0x65,0x5f,0xe2,0x57,0x7a,0x8e,0x77, + 0xbc,0xf9,0xda,0x4e,0xce,0xc1,0xf1,0x8f,0x2b,0x44,0x58,0x63,0x93,0xa8,0xea,0x04,0x81,0x81,0x7d,0xd9, + 0xdb,0xbf,0xba,0x62,0x14,0x44,0xcf,0x5f,0xb6,0x4d,0x4f,0x5c,0x18,0xa0,0xcd,0xb6,0x75,0xb9,0x57,0x60, + 0x13,0xc5,0xc7,0x9e,0x35,0xd1,0x3f,0xed,0x59,0x1f,0x66,0x56,0x3b,0x6f,0x02,0x84,0x38,0x6c,0x70,0xcb, + 0x77,0x78,0x34,0x4a,0xc7,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0xc4,0xf7,0x25,0xca,0x1a,0xaf,0xb2,0xae, + 0x05,0xe8,0x5f,0xad,0xac,0x69,0x9c,0x95,0x20,0xd7,0xf0,0x26,0x5d,0x4a,0x1c,0x22,0xfd,0x8e,0xa3,0xed, + 0x8e,0x0a,0x3d,0x0f,0xbc,0xc6,0xd1,0xb4,0xd0,0x84,0x02,0xbf,0xb3,0x5e,0xdb,0x78,0xa8,0xba,0x38,0x43, + 0x95,0x75,0x8b,0x6d,0x92,0x60,0x17,0x2e,0x3b,0x84,0xec,0x61,0x52,0xe9,0x17,0x61,0x07,0x5a,0xca,0xff, + 0x7f,0x3a,0x5f,0xfb,0xcf,0xfa,0x45,0x8c,0x4b,0x2d,0x95,0x1a,0x70,0x29,0xc2,0xc9,0xf0,0x0d,0x97,0x63, + 0x1f,0x86,0x25,0xf9,0xf9,0x45,0x33,0x0e,0x29,0x5f,0x13,0xc9,0x8b,0xac,0x58,0x05,0xca,0x56,0xc0,0xf9, + 0x51,0x5c,0x0d,0x17,0xf9,0x74,0x3a,0x67,0x21,0x6e,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96,0x81,0x31,0xf8, + 0x1d,0x55,0x5a,0x4d,0x3d,0x76,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x7e,0x02,0xab, + 0xc5,0x63,0x14,0xcb,0x5c,0x81,0xcc,0x66,0x69,0xcb,0x3d,0x13,0x58,0x70,0x33,0xc2,0x45,0xad,0x97,0x90, + 0x9d,0xd5,0x1e,0xe7,0xa2,0xaf,0x75,0x9f,0x24,0xb8,0x94,0x67,0xb4,0xa5,0xfb,0xcb,0xc7,0x13,0x7b,0xb3, + 0x78,0x6d,0xdd,0xf4,0x6a,0xb9,0xc8,0x27,0x99,0x50,0xfe,0x71,0xad,0x26,0x27,0xf1,0xf1,0x44,0xd5,0x27, + 0x71,0xdd,0x0b,0x02,0x95,0x05,0x01,0xa1,0x90,0x20,0x92,0xc6,0xad,0x60,0x7b,0x08,0xdc,0x2e,0x2f,0x97, + 0xfb,0x1c,0x9b,0x05,0x49,0xbc,0x93,0x39,0x06,0xaf,0x09,0xa3,0x89,0x83,0x4e,0x54,0x18,0xe2,0x05,0x63, + 0x08,0x19,0xfe,0xd4,0xff,0x20,0x37,0x1f,0x74,0x42,0xdd,0xe6,0xfe,0xa9,0x99,0xb7,0x7b,0xe3,0xbe,0x66, + 0xc9,0x8c,0x07,0xa2,0x7e,0x24,0x1c,0x0f,0x56,0xb5,0xd5,0x7e,0xde,0xb5,0xda,0x87,0x6e,0x09,0x4e,0x11, + 0x7c,0xa5,0x0a,0x02,0x85,0xde,0xe6,0x26,0x76,0x56,0x89,0xd8,0x59,0xe2,0x62,0x61,0xd8,0x35,0xeb,0xc7, + 0xd8,0x6a,0xd2,0xb7,0xe2,0x2f,0x3b,0xb3,0x26,0x56,0xfa,0x79,0x12,0xdc,0xbb,0x77,0x49,0xc8,0x8c,0x11, + 0x28,0x08,0x87,0x24,0x08,0xb5,0xb8,0x90,0x32,0x76,0xa8,0xe5,0x9d,0xfb,0x32,0xf2,0xfb,0x63,0xa4,0x18, + 0x44,0x8b,0xe7,0x08,0xb2,0xd2,0xa1,0x38,0x3b,0xc8,0xa7,0xa7,0xc4,0x77,0xee,0xe5,0x40,0x8f,0x9a,0x9f, + 0x4c,0x10,0xe5,0x09,0xe1,0xb0,0xb4,0xf1,0x8f,0x01,0x1f,0xc2,0xb1,0xe0,0xf5,0x22,0xe2,0xb8,0xaf,0x97, + 0xb8,0x6e,0x90,0xba,0x18,0xdf,0xd7,0x38,0xf6,0xbe,0x32,0xa6,0x39,0x2e,0xb4,0xc9,0x4e,0x88,0x06,0x77, + 0x6e,0x83,0xbd,0x72,0x2f,0xd8,0x04,0xde,0x02,0xa4,0x8d,0x8f,0xc6,0x7d,0xe4,0x46,0x53,0xf8,0xa4,0x72, + 0x01,0x0c,0xbd,0xcb,0xac,0x8e,0x83,0xe8,0xd1,0x01,0xa4,0x8e,0xb8,0x9d,0xeb,0x95,0x49,0x3d,0xa1,0xd4, + 0x27,0x95,0x8d,0xd2,0x1b,0xbe,0xe4,0x8f,0xfd,0x12,0xe0,0xa9,0xbf,0xd9,0x3f,0x1c,0xdf,0x52,0xaf,0x63, + 0x77,0xfe,0xbc,0x24,0x8a,0x8d,0x58,0x71,0x1e,0x80,0x49,0x7d,0x59,0x11,0xc6,0xc7,0x60,0x36,0xb1,0x94, + 0xe6,0x12,0x1c,0xa7,0x89,0x09,0x9f,0x1f,0x41,0xb2,0x52,0x0b,0xbf,0x57,0xc9,0x6f,0x10,0x11,0xec,0x4e, + 0x70,0xc6,0x45,0xab,0x26,0xfc,0xa1,0x4a,0x6a,0xa8,0xb4,0xc7,0x73,0x3c,0x47,0xf1,0xd7,0x60,0x69,0x7f, + 0xa8,0x7c,0x31,0x95,0x91,0x3f,0x8b,0x87,0x24,0x55,0xf1,0xb2,0x32,0x15,0x70,0x60,0x59,0x7c,0xaf,0x56, + 0x50,0xd5,0x44,0x73,0x8e,0xb3,0x6c,0xc8,0x17,0xae,0x8b,0x70,0x07,0x82,0x17,0x7e,0xfd,0x85,0x7e,0xde, + 0xdf,0x67,0x53,0x3b,0x9a,0xc3,0xdf,0xb8,0x26,0x01,0xad,0x0d,0x1a,0x37,0x31,0xcf,0xdb,0xe3,0xfd,0x5d, + 0x8f,0xd7,0xa4,0xfc,0x4e,0x63,0x55,0xbf,0x55,0x50,0x37,0x3a,0x4d,0xb2,0x76,0xef,0x64,0xdf,0x88,0xb1, + 0xdc,0x68,0xd3,0xc4,0xc1,0x3d,0xa2,0x4b,0x43,0xdc,0xa1,0x48,0x35,0xea,0x3b,0xbb,0x50,0x40,0x1e,0x19, + 0x22,0x3c,0x27,0xd4,0xc6,0xd9,0x0f,0xff,0x58,0xf9,0x04,0xd5,0xde,0xde,0x4b,0xdf,0xf4,0x7d,0xe2,0x15, + 0x7c,0x59,0x7d,0x93,0x3c,0xf1,0xe0,0x7e,0xe5,0x47,0x0d,0x67,0xf2,0x30,0x5b,0xaf,0x99,0x8e,0xf4,0x84, + 0xd8,0x3c,0x49,0xbe,0xb3,0xa1,0xcc,0x26,0x3b,0xd0,0xf2,0x5a,0xc0,0x2f,0x63,0x14,0x8d,0x3c,0xc7,0xbc, + 0xc6,0x97,0x8a,0x34,0x88,0x54,0xd1,0x44,0xc3,0x53,0x5c,0x17,0x79,0x94,0xd6,0x30,0xec,0x29,0xdd,0x9b, + 0x2f,0x35,0xbb,0x70,0x1e,0x9e,0x49,0x79,0x47,0x3c,0x09,0xdd,0xdb,0x0b,0xf6,0xab,0xa4,0xb3,0x99,0xef, + 0x62,0x6c,0x5a,0x64,0x8b,0xdb,0xc8,0xdf,0x57,0xdd,0x70,0xb4,0x3b,0x79,0xe8,0xae,0x07,0xec,0x6f,0x82, + 0xf0,0x05,0x6f,0x4c,0xf1,0x61,0xdb,0x20,0x84,0x31,0xe2,0x12,0xa8,0xef,0xab,0x6d,0x1e,0x11,0xad,0xfd, + 0x50,0x8c,0x6f,0xf5,0x39,0x08,0x4b,0x1d,0x39,0xcb,0x10,0x56,0x4e,0xe3,0x7b,0x8f,0x92,0x99,0x36,0x4e, + 0x67,0x15,0xd2,0xa9,0xfa,0x7d,0x15,0xf5,0x72,0xa6,0x88,0x68,0xe5,0xcd,0x57,0xdb,0x19,0x60,0xd9,0x84, + 0x26,0x2a,0xd5,0xae,0x15,0xd8,0x94,0x60,0xf3,0x77,0xad,0xb8,0x06,0xb7,0x00,0x58,0x1e,0x54,0xa7,0x30, + 0x52,0x2b,0x93,0xc2,0x7f,0x1f,0x7d,0x5f,0x69,0x26,0xb5,0x83,0x1c,0xa8,0xa3,0xc7,0xa7,0xd0,0x03,0x69, + 0xdc,0xf1,0xb6,0x18,0x07,0xfa,0xfa,0xeb,0xd8,0x58,0x27,0x72,0x90,0x68,0xe7,0x0b,0xc0,0x1f,0x70,0xb8, + 0x67,0xf6,0x33,0x77,0x57,0x8f,0x53,0xf2,0x06,0xd9,0x57,0xb9,0xc4,0x40,0x18,0x4a,0x45,0xad,0x4f,0xaf, + 0xf0,0xa9,0xce,0xe8,0x7c,0x8e,0xcf,0x36,0xe0,0x71,0xbe,0x67,0x15,0xfd,0xac,0x51,0x53,0x04,0x8c,0xb5, + 0x32,0xe3,0xef,0x6d,0x48,0x00,0xcf,0xe1,0xb0,0x6f,0x8e,0x8c,0xc3,0x4d,0x6b,0xa6,0x6c,0xa2,0x2f,0x62, + 0x97,0x29,0xa9,0x93,0xce,0x87,0x6d,0xe9,0x96,0x9f,0x7a,0x97,0x80,0xcb,0xfa,0xf8,0xb4,0x64,0x5c,0xb9, + 0xc8,0x59,0x21,0x8a,0xca,0x75,0xc4,0xba,0xfc,0x24,0x09,0x02,0x2f,0x77,0xa5,0x6f,0x19,0x44,0x09,0xc5, + 0x77,0x45,0x9b,0xbb,0x9b,0xb5,0x7b,0x52,0x5e,0x10,0xa0,0xbc,0x3c,0x7a,0xf3,0x9a,0x13,0xb8,0x74,0xd5, + 0x1f,0x02,0xd7,0x33,0x81,0x2a,0xa9,0x6c,0x8d,0x36,0x31,0x79,0x79,0xb1,0xca,0x46,0xc0,0x79,0xa9,0x14, + 0x7d,0x0b,0x27,0x2d,0x2b,0x6a,0x4e,0x35,0x60,0x3e,0x45,0x56,0xe8,0x17,0x81,0xf9,0x11,0x5f,0x6b,0x2c, + 0x52,0x36,0x69,0x3e,0x1d,0x9e,0xf2,0x6b,0x52,0x6a,0x2b,0x46,0x88,0xc8,0x10,0x1d,0xdf,0xde,0x98,0x35, + 0x9a,0x26,0x73,0xb5,0x1b,0xce,0x92,0x34,0x12,0x69,0x43,0x4d,0xe9,0xb0,0xce,0x7e,0xf7,0xfe,0xe8,0xd5, + 0xbb,0xb7,0xa8,0x67,0x66,0xc4,0x3f,0xc4,0x10,0xf6,0xb0,0x21,0x84,0x1b,0xd8,0xc1,0xdc,0x5d,0x8c,0x25, + 0x8e,0xd2,0x5a,0x0f,0xc7,0xd7,0x1c,0xd8,0x38,0x43,0xde,0xf1,0x9f,0x59,0x31,0x61,0xb3,0x09,0x67,0x6a, + 0x1a,0xb5,0xaa,0xf7,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x1b,0x43,0xb6,0x89,0xf9,0x5a,0x1e,0x69,0x93, + 0x96,0x79,0xfa,0xfb,0x8d,0x0b,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x1b,0x82,0x68,0x22,0xae,0x6a,0x13,0x1d, + 0xf4,0x2d,0x67,0xaa,0xc0,0xd9,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68,0x3a,0x0a,0x92,0xb1,0x90,0xfe, + 0x31,0x48,0x48,0x6f,0x92,0xb9,0xb6,0xbf,0x61,0x10,0x29,0xe5,0x16,0x40,0x2a,0xe3,0xf9,0x75,0x36,0xee, + 0xcc,0x5b,0x34,0xac,0x92,0xbe,0x99,0x7b,0x46,0x4b,0x5a,0xd6,0xf2,0x11,0xa9,0xe3,0xcb,0xb0,0xf5,0xce, + 0xb1,0x13,0x3c,0x6f,0xc6,0xe6,0x73,0x0a,0xe5,0xc5,0x1d,0xda,0xd9,0xeb,0xbc,0x13,0xbb,0xe4,0xbc,0x69, + 0xcb,0xc0,0x58,0x60,0x54,0x76,0x64,0x5f,0xb9,0xdf,0x8f,0x48,0x74,0x61,0xb5,0x7d,0x2e,0xb7,0x72,0x4b, + 0x9d,0x1b,0x79,0x11,0x7f,0xf4,0x3e,0x5d,0x25,0xad,0xe2,0x6a,0x0e,0x83,0xd4,0xb2,0x5a,0xf0,0x75,0xf2, + 0x53,0x4e,0x83,0x82,0xa0,0x96,0x07,0xda,0x87,0xb3,0x64,0xb5,0x5e,0xcf,0xd5,0x14,0xf3,0xa5,0x37,0xaa, + 0x54,0xce,0x5b,0x59,0xa7,0x74,0x6a,0x48,0x60,0x04,0xaf,0x77,0xb8,0xf8,0x4d,0x4d,0xa3,0x78,0x3a,0x12, + 0xc3,0xd6,0x36,0xb4,0xfa,0xda,0x76,0xa6,0x23,0xb3,0x51,0x8f,0x80,0xed,0x2f,0x09,0xde,0x2e,0xad,0x26, + 0x34,0x82,0x7d,0x0b,0x3b,0x8b,0x49,0x72,0xd6,0x4d,0x76,0x8e,0xcb,0x19,0xcc,0xd5,0x87,0x26,0xfe,0x5a, + 0xd9,0xaa,0xad,0xec,0x7e,0xe6,0x54,0xfa,0x95,0xd4,0xc1,0xa1,0x31,0x67,0x84,0xa4,0x96,0xb0,0x69,0x1c, + 0x0c,0x3e,0xc2,0x12,0xb1,0x56,0x06,0x4b,0x71,0xf6,0x32,0x0a,0xd3,0x84,0xf3,0x09,0x78,0x67,0xf4,0x6b, + 0x8b,0xe9,0x58,0x27,0xc0,0x00,0xa9,0xcf,0x12,0xdc,0x34,0xbe,0x57,0x1a,0x47,0x0a,0xd5,0x72,0x0c,0x89, + 0xc0,0xc1,0xc2,0x38,0x36,0x21,0xf4,0x84,0x0e,0x3b,0x01,0x53,0x96,0x8d,0xb6,0x6b,0x79,0xf0,0x4b,0xbd, + 0xf7,0x20,0xb2,0x97,0x38,0xf5,0x78,0x84,0x7b,0xf5,0x70,0x70,0x2d,0x04,0x16,0x8b,0xb7,0x13,0xfd,0x20, + 0xbb,0xd0,0xb0,0x50,0xfb,0xe7,0x3d,0xa2,0xc1,0x48,0x5b,0x5f,0xee,0xe0,0xe6,0x47,0xaf,0x53,0xac,0x91, + 0x09,0x58,0x49,0x9e,0xf5,0xcb,0x14,0xc3,0x82,0xb8,0x2c,0x33,0x40,0x3f,0xf6,0xfe,0xff,0xef,0xb3,0x20, + 0xc8,0x7c,0x7b,0x22,0x6c,0xba,0xf2,0x53,0xe5,0x10,0x00,0x13,0xd0,0x15,0xe1,0x9b,0x29,0x91,0xa9,0x73, + 0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0x31,0xd3,0xe6,0x4d,0x65,0x05,0x5b,0xb0,0x11,0xbc,0xa3,0xed,0x6d, + 0x53,0x95,0xc2,0x70,0x01,0xe2,0x06,0x4d,0x42,0x29,0xd1,0x3b,0xc7,0x7c,0x8f,0xc6,0x5d,0xdd,0xf4,0xe6, + 0xfc,0xb4,0xd1,0xa4,0x8d,0xb6,0x00,0xd9,0xba,0xb5,0xc5,0x20,0x51,0x7b,0x1d,0x30,0xb3,0xc0,0x34,0x2d, + 0x90,0x1a,0xe3,0x26,0x8b,0xf7,0x79,0x98,0x69,0xab,0xad,0xe0,0x32,0x40,0x00,0xcc,0x90,0x95,0xc5,0x8d, + 0x46,0xe1,0x3d,0xb8,0xf1,0x3d,0xe3,0xc6,0x2d,0xf2,0xe4,0x8a,0xfb,0xf2,0x21,0xf7,0x1d,0x68,0x3e,0xa0, + 0xa8,0x2f,0x88,0x39,0x6a,0xda,0xd6,0x23,0xdb,0x32,0x6f,0x96,0x42,0x6c,0x27,0x73,0x5c,0xa0,0xc2,0xb3, + 0xfc,0x02,0x84,0xc2,0x81,0x04,0xf2,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xff,0x52,0xdd,0x54,0x5f,0x6d,0x83, + 0xc1,0xbc,0xb7,0x15,0x04,0xe0,0xd6,0x70,0xec,0x39,0x9d,0x76,0x38,0xe9,0xa7,0x52,0x40,0xe1,0x18,0xd0, + 0x26,0x17,0x95,0x71,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7,0x82,0x95,0x2a,0x98,0xd0,0x2b, + 0x75,0x02,0xc3,0x8b,0x67,0xf9,0xf8,0x45,0x1e,0xbf,0xc9,0x09,0xe3,0x77,0x7c,0xd0,0xfa,0x15,0x3b,0xb5, + 0x9a,0xc3,0x6e,0x9d,0xfd,0xcd,0xda,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd,0xde,0xde,0xe4,0x1b,0x68,0x16, + 0xe1,0x6e,0x36,0xea,0x77,0x6a,0x9a,0x3c,0xd2,0xf9,0x0a,0xd7,0x34,0xab,0x1e,0x25,0x11,0x9a,0xf2,0x9c, + 0x5e,0xfd,0x25,0x23,0x68,0xd7,0xb7,0xea,0x52,0x93,0x4f,0x75,0x00,0x0f,0x3e,0x4b,0x24,0xe6,0x44,0x75, + 0xfc,0x3a,0xdf,0x0b,0x9e,0xc1,0xd1,0x2a,0x38,0xb1,0x26,0x7b,0xb0,0x8a,0x2a,0x4d,0xde,0xaa,0x92,0xab, + 0xae,0xdb,0xd9,0x69,0x02,0xb9,0x39,0x5c,0x13,0x6a,0x2a,0xf8,0xf6,0x8e,0x4a,0x26,0x26,0xaf,0xbf,0x92, + 0x15,0x2a,0x81,0xb1,0x2b,0xcd,0xd1,0x01,0xd4,0x0f,0xee,0x36,0x60,0x9e,0xf0,0x94,0x4d,0xd0,0x0b,0x7a, + 0xa4,0x02,0x29,0x15,0x30,0xb6,0xee,0x44,0x31,0xc0,0x02,0x3b,0x1f,0xaf,0x74,0x89,0x57,0x28,0xb1,0xa2, + 0x12,0x13,0x5b,0x62,0x96,0x50,0x7a,0x38,0x77,0x51,0xdb,0x53,0xd0,0xbe,0xdf,0x1c,0x50,0xad,0xab,0xf1, + 0xb3,0x3c,0x7e,0x95,0x33,0xb7,0x1f,0x8d,0x0b,0x69,0xcc,0xd4,0x1d,0x9b,0x2a,0xe2,0x03,0xa5,0x83,0x37, + 0x2b,0x0d,0x2d,0xf1,0x5c,0x59,0x58,0x89,0x67,0xb8,0x92,0xf9,0xc8,0x5c,0x1d,0x18,0x4b,0x2d,0x83,0xc1, + 0x4f,0x5a,0x96,0x2e,0xb3,0x67,0x22,0x81,0x04,0x27,0x3e,0x1a,0x78,0xdc,0xb8,0x43,0x7a,0x64,0xe4,0x1f, + 0x8f,0x6c,0xbc,0xc5,0x28,0x4b,0x6c,0x08,0x6e,0x47,0x44,0x99,0x71,0xb4,0x2e,0x17,0x6b,0x4b,0x94,0x7d, + 0xef,0xf2,0x8f,0xb0,0x9c,0xdc,0xfb,0xd8,0x48,0xa0,0xaa,0x8d,0xbf,0xd3,0x3e,0xfa,0x24,0xd6,0x61,0xf6, + 0xc5,0xdf,0xf4,0x75,0xb5,0x4e,0x80,0xb0,0x7f,0xe8,0x97,0xbf,0xe7,0xd1,0x52,0x20,0xa1,0x88,0xde,0x81, + 0x5b,0x17,0xee,0x09,0x4a,0x89,0x38,0x3f,0x63,0x67,0x0a,0xfb,0xa6,0xaf,0xed,0x9c,0x4b,0xe4,0x3d,0x97, + 0x1e,0x1a,0x19,0x68,0x72,0xda,0x18,0x6e,0xc8,0x6d,0xe8,0xc8,0xfa,0x6a,0xb1,0xcd,0x25,0x7d,0x46,0x10, + 0x9e,0x55,0x5c,0xf9,0x21,0x47,0x15,0x03,0x41,0x82,0x1b,0xef,0x1c,0x6d,0x83,0x88,0x64,0x84,0x18,0x15, + 0xfc,0x67,0x79,0x63,0x13,0x90,0x0c,0xe5,0x33,0x56,0xe5,0xcd,0xcc,0xeb,0x51,0x29,0x09,0x53,0x93,0xf0, + 0x98,0x69,0x76,0x49,0x5c,0x52,0x22,0x4d,0x69,0x96,0xea,0xaf,0x2e,0xec,0xbb,0xf9,0xec,0xd2,0xa6,0xf8, + 0xdf,0x2d,0x28,0xf5,0x2c,0x83,0x5d,0xf9,0x73,0x54,0xa9,0xce,0x4d,0xe5,0xea,0x06,0xe5,0x71,0x0d,0xbc, + 0x64,0x9c,0xd9,0x5e,0x99,0x89,0x51,0x57,0xf6,0xdb,0xc7,0x5c,0xaf,0x3a,0xb2,0x4d,0xa8,0x4f,0xe6,0x6b, + 0x9d,0x75,0xed,0xfa,0x67,0xbf,0x7f,0x4a,0x69,0x53,0xbd,0xa7,0xd4,0xe3,0xe4,0xaa,0x52,0x1f,0xe9,0x8f, + 0x36,0xf0,0x1f,0x7d,0x24,0x0a,0xc8,0x92,0x5c,0x8f,0x93,0xf0,0x63,0x62,0x5e,0x23,0xc3,0xb1,0xf2,0x4a, + 0xdc,0x4b,0x76,0x1f,0x7b,0x41,0x98,0x88,0x23,0x65,0xeb,0xff,0xb2,0x04,0x1d,0x88,0xf8,0xc2,0x58,0x92, + 0x7b,0xeb,0xf5,0x11,0x0e,0x4f,0x5a,0x83,0x23,0x01,0x81,0x77,0xc9,0xbd,0xc1,0x60,0x39,0x5e,0xd2,0x6e, + 0x78,0x8e,0xc7,0xcb,0xf1,0x65,0x3c,0x55,0xef,0xf1,0x78,0x31,0xbe,0xa0,0x7d,0xf1,0x6b,0x72,0x6f,0x7c, + 0xb5,0x5e,0x2f,0xe2,0x85,0x7a,0x86,0xd4,0x1e,0xff,0x99,0xa3,0xf1,0x51,0x7c,0xae,0x5e,0x51,0xc1,0x4f, + 0xeb,0xf5,0x4d,0x7c,0xa3,0x5e,0xd3,0xe3,0xf5,0x7a,0x7d,0x16,0x9f,0xa9,0x17,0xc4,0xb7,0xe4,0xe1,0xd3, + 0x68,0xfc,0x54,0xa6,0x2d,0x7e,0x1a,0xa9,0xb7,0x09,0x1f,0x84,0x35,0x2b,0xec,0xd5,0x9b,0xe4,0x7d,0x13, + 0x3e,0x8b,0xd4,0x87,0xc4,0xc1,0x89,0xef,0xa9,0x1b,0xdd,0xbe,0x25,0x90,0xa4,0x03,0xa5,0x54,0xef,0x23, + 0xc5,0xbf,0xcf,0xe9,0xa8,0xfc,0xe0,0x40,0x73,0x1c,0x52,0x09,0xce,0x78,0x17,0xa9,0xd7,0x83,0xc1,0x6b, + 0xb6,0xb4,0x78,0x35,0x18,0xbc,0x82,0x3f,0x83,0x57,0xab,0x0e,0xdc,0xae,0xe1,0xb5,0xbe,0x28,0x69,0x60, + 0xdf,0xd1,0x76,0x70,0x26,0x52,0xae,0x51,0x23,0x34,0x92,0xb9,0x06,0x9f,0xaa,0x74,0x68,0xe5,0x53,0x84, + 0x3d,0x62,0x56,0xd3,0x3d,0x1f,0xb3,0x60,0xed,0x64,0xc4,0x81,0x91,0xc4,0x30,0xb1,0x10,0xc3,0xc4,0x06, + 0x3b,0xcc,0xee,0x9b,0xee,0x7b,0x18,0xa9,0x67,0x83,0xc1,0x33,0xea,0xfa,0x07,0x98,0x4d,0xfd,0x3a,0x18, + 0xfc,0x8a,0x3e,0x63,0xc4,0x47,0x7a,0x40,0x47,0x32,0x62,0x75,0xd5,0x3a,0x48,0x8e,0xfc,0xf9,0x78,0xd7, + 0x9a,0x8e,0xf5,0xfa,0x0d,0x9d,0xe3,0xcf,0x9b,0xf0,0x45,0x34,0xf6,0x4e,0xa1,0x0f,0xea,0x45,0x14,0x5f, + 0xa3,0xf8,0x8a,0x1a,0x03,0x12,0x51,0xde,0x44,0x88,0x55,0x6e,0xe5,0xf7,0x87,0xba,0xc1,0x55,0x7d,0x08, + 0xdb,0x1e,0x60,0x1a,0x81,0x38,0x61,0x37,0x75,0xe7,0xda,0x6f,0x3e,0x6c,0x4d,0x70,0x48,0x9c,0xa7,0x9b, + 0x44,0x3b,0x63,0xd0,0x75,0xf7,0xa5,0x8b,0x3f,0xaa,0x4c,0x67,0x52,0x44,0xea,0x82,0x00,0x11,0x81,0x56, + 0xaf,0x64,0x4a,0x52,0x78,0x58,0xf0,0xef,0xb2,0x67,0x4a,0x52,0xe2,0xa1,0x30,0x25,0x5c,0xaa,0xd5,0xa7, + 0x23,0x99,0x92,0x4f,0xad,0x29,0xb9,0x56,0x9f,0x78,0x4a,0x52,0x35,0x57,0xd7,0x32,0x25,0x97,0xa0,0xcc, + 0x52,0x7a,0x53,0x57,0xfc,0xd1,0x35,0xe8,0x6c,0x6d,0x68,0xae,0x71,0x65,0xea,0xa3,0x33,0xef,0xad,0x8d, + 0x2b,0x5d,0xba,0xc1,0x95,0xf5,0xdd,0xb8,0x52,0xa2,0xc8,0xca,0x5d,0x34,0x16,0x35,0x1a,0x06,0x4a,0xb4, + 0xb1,0xbb,0xdc,0xb0,0x41,0xd2,0xc6,0x49,0xa5,0x66,0x9c,0x39,0x4f,0x24,0x56,0x0c,0x21,0x49,0xc8,0x5b, + 0x52,0x83,0xd5,0xa6,0xe6,0xd5,0x20,0xbf,0xa5,0x49,0xf0,0x71,0xdf,0x05,0x25,0x0a,0xfe,0x7a,0x8d,0x2c, + 0xc2,0x90,0xba,0x10,0x61,0xc5,0x5a,0xb0,0x97,0x64,0x9c,0xdb,0xda,0x2d,0xee,0xba,0xa1,0x24,0xf6,0xec, + 0x96,0x12,0x67,0x78,0x35,0xa8,0xec,0x4a,0xb6,0xf9,0x4a,0xb6,0xf9,0x11,0xb6,0xf9,0x25,0xad,0x0e,0x23, + 0x84,0xb3,0x68,0x7c,0x26,0x75,0xc5,0x67,0x11,0x63,0x45,0x33,0xb4,0xf6,0xd6,0xf7,0x41,0x04,0x22,0xa4, + 0x1e,0x80,0xe1,0x35,0xe8,0x49,0xb7,0x30,0xc4,0x41,0xc0,0xae,0x04,0x87,0x38,0x00,0x59,0x46,0x2d,0x08, + 0x19,0x87,0x57,0x8c,0x43,0x18,0x72,0xa8,0xce,0x73,0x36,0x14,0x09,0xb1,0x21,0x16,0x83,0xc1,0x02,0x6f, + 0xca,0xeb,0xa4,0xc6,0x24,0x37,0xe3,0x1b,0xda,0xae,0x71,0x19,0xfa,0x04,0xc1,0x73,0xef,0x44,0xde,0x8e, + 0x4e,0x45,0xb3,0x21,0x17,0x30,0xfa,0xda,0xe5,0xf7,0x88,0x59,0xcb,0xac,0x84,0x0b,0x80,0xac,0x43,0x6c, + 0xc3,0x9c,0x18,0xa1,0x92,0xbd,0x00,0x52,0x63,0x2a,0xbe,0x15,0x08,0xa7,0x3a,0x3e,0x38,0x89,0x11,0x06, + 0xc7,0x5e,0xf9,0x07,0x67,0x18,0x4d,0x3f,0x7d,0xe3,0x69,0xf4,0x7e,0xd5,0xf4,0xca,0x2e,0xd4,0xf7,0x8d, + 0x8f,0x01,0xee,0xf1,0xcd,0xc8,0xce,0x71,0xc4,0x92,0xde,0xaf,0xcc,0x93,0x72,0xa6,0x72,0xfd,0xf4,0xad, + 0x2d,0xb9,0x51,0x07,0x5e,0x55,0xaf,0x3a,0x54,0x7c,0xe3,0x49,0xc6,0x16,0xab,0x79,0x93,0x2f,0xe7,0x99, + 0xd0,0xeb,0xeb,0x75,0x77,0x64,0x5e,0xe4,0x34,0x36,0x75,0x81,0xf3,0x96,0x75,0xbc,0xe9,0xfa,0x6e,0xc1, + 0x0f,0xc4,0xe5,0xe2,0x0a,0x8e,0x3c,0x2a,0x93,0x33,0x62,0xff,0x5e,0xc0,0x0a,0x08,0xfc,0xae,0xc2,0x55, + 0x4e,0x73,0xbe,0x98,0x9d,0x26,0xa0,0x64,0xf0,0x31,0x09,0x89,0x17,0x10,0xec,0x26,0xe4,0x4f,0xbc,0x08, + 0xc2,0xe0,0xba,0x40,0x57,0xe9,0xc2,0xac,0xa8,0x92,0x73,0xac,0x9b,0x9a,0xc0,0xad,0x2f,0x67,0x6e,0xaa, + 0x9d,0xbe,0xdf,0xba,0x81,0xf2,0x75,0xd3,0xbe,0xae,0xa5,0x7b,0x0d,0x9f,0xcd,0xda,0xbd,0x09,0xc5,0xb0, + 0xd6,0xf3,0x23,0xf1,0xa1,0x4c,0x44,0xa5,0x1c,0xe7,0x0d,0x97,0x15,0x88,0xda,0x4f,0x8b,0x1f,0x3d,0x57, + 0x90,0x46,0x9c,0xa1,0x85,0x67,0x71,0x32,0x53,0x18,0xa1,0x39,0x1f,0x90,0x3b,0x0a,0xf1,0x20,0xb7,0xbf, + 0x3c,0x54,0x1f,0x1a,0x9b,0xa1,0xb4,0x20,0xdf,0xa7,0x37,0x3f,0xb4,0x98,0xce,0xae,0xc3,0xc3,0x25,0xbb, + 0x3b,0x40,0xea,0x2c,0x6a,0xf1,0x40,0xf8,0xcc,0xbc,0x91,0x9c,0x46,0x11,0x26,0xe5,0xd8,0x49,0xc3,0x69, + 0x5e,0xb3,0x8d,0xb2,0x64,0xf8,0xea,0x8b,0x9f,0xbc,0x99,0xd8,0xbd,0xc3,0xe1,0x41,0x24,0x55,0x59,0x17, + 0xf9,0x8e,0xb3,0xf8,0x27,0xf6,0xa7,0xb9,0x4b,0x66,0xe6,0xb9,0x5e,0x78,0x52,0x51,0x26,0x03,0xb6,0x0c, + 0x63,0xcd,0x2a,0xe2,0x8c,0x6f,0x99,0xc4,0x1a,0xb7,0xf5,0x31,0xd5,0xf1,0x4f,0x78,0x83,0x59,0x97,0x44, + 0x5f,0xc8,0xf9,0xa3,0xd7,0x00,0x5f,0x81,0xe9,0xa2,0xa5,0xb6,0x03,0x29,0x15,0xee,0xca,0x8a,0x08,0x41, + 0x94,0xd8,0xbc,0x79,0xa4,0x63,0x2b,0x11,0xfa,0x63,0x54,0x68,0xf8,0xc9,0x8e,0x37,0x5f,0x4e,0x5f,0x5c, + 0xe1,0x72,0x90,0x13,0xf6,0xe7,0xeb,0x89,0x69,0xfb,0x83,0x93,0x24,0x3d,0xf8,0x65,0xba,0xff,0x29,0xcb, + 0x96,0xfb,0xe9,0x9c,0x0e,0x8b,0x7b,0xfa,0xe6,0x41,0xa6,0x6f,0x5c,0xa0,0xec,0x30,0x70,0x45,0x02,0x75, + 0xcb,0x5d,0x8b,0x9b,0xad,0xd9,0x71,0x7d,0xf6,0x81,0xf8,0xa5,0x06,0x36,0x26,0x89,0x58,0x39,0x70,0xc6, + 0x37,0x61,0xba,0x57,0xb6,0xb5,0xe4,0x77,0x7d,0x9a,0xda,0x7c,0x7b,0xba,0x7a,0xa6,0xe3,0xba,0x3a,0x11, + 0xb7,0x66,0x57,0xef,0x4b,0x84,0x25,0x42,0x69,0x02,0xce,0x27,0x44,0x18,0x73,0x68,0x90,0x79,0x4e,0x9f, + 0x7e,0xc0,0x3d,0xf0,0x7e,0xcc,0x7a,0x7f,0x79,0xa5,0x02,0x02,0x71,0x65,0x9d,0x6c,0xa4,0x36,0x7d,0xb5, + 0xc5,0xac,0xd9,0x2f,0xf8,0x87,0xef,0x50,0x6b,0xca,0x25,0xbd,0xd2,0x5f,0x60,0xb0,0x6a,0xbd,0xce,0x6d, + 0x17,0x30,0x84,0xa9,0xd1,0x40,0x96,0xba,0x2b,0x2c,0x18,0x1e,0x95,0xee,0xa2,0x7a,0x22,0x32,0x7f,0xca, + 0xce,0x3e,0xe5,0x8d,0xe5,0x3f,0x93,0x80,0x33,0x11,0x50,0x2f,0x0c,0xf6,0xaa,0xbd,0x60,0x79,0xad,0x58, + 0xd5,0xbf,0xbc,0x8e,0x02,0x55,0x7a,0x00,0x6c,0x78,0xf1,0x24,0x38,0xa8,0x7d,0x3d,0xfd,0xf7,0xad,0x5d, + 0xd7,0x8c,0x9f,0x97,0xf1,0xbb,0xd2,0x49,0xf0,0x8d,0x54,0xac,0x68,0x69,0xe9,0x74,0xf6,0xbd,0x12,0xb7, + 0xee,0xfa,0x61,0xe3,0x2d,0xf6,0xd6,0x0a,0x6a,0x66,0xa4,0x0f,0x39,0x56,0x40,0xa6,0xac,0x71,0x45,0xdc, + 0x28,0x63,0x0e,0xd1,0xba,0xcb,0xb7,0x7b,0xb3,0xab,0x72,0x66,0x02,0xf6,0x7e,0x10,0x1d,0x6f,0x59,0xbb, + 0x46,0xe2,0x51,0xc2,0x90,0x38,0x47,0xae,0x26,0x52,0x02,0xd9,0x7e,0x50,0x95,0x63,0xff,0x02,0x9b,0x6f, + 0xcd,0xc1,0xb6,0xad,0xba,0x67,0x2b,0x16,0x02,0xd4,0x1b,0xc2,0x2f,0x72,0xb7,0x23,0x87,0x39,0x83,0xef, + 0x81,0x67,0xf9,0x94,0x89,0x6b,0xd1,0xae,0x6f,0xdc,0xa4,0xcd,0x19,0xee,0xaa,0xb2,0xca,0x66,0xb6,0x4a, + 0x7a,0xe6,0xc8,0x69,0xc6,0x1f,0xaa,0x25,0x29,0xf2,0x8c,0x68,0x47,0x85,0x84,0xfa,0xb4,0x57,0xcd,0x14, + 0x90,0xb9,0x3a,0x77,0x23,0x88,0x28,0x75,0x20,0x4f,0x1b,0x2b,0x1a,0x54,0x28,0xfa,0xda,0x51,0xaa,0x06, + 0x08,0x77,0x61,0xed,0x9c,0x61,0xad,0x4d,0xef,0xd0,0x77,0xe9,0xee,0x61,0x3e,0x03,0x4f,0x2a,0xdd,0xb4, + 0xa3,0x7b,0xf3,0x57,0xb0,0x82,0x12,0x43,0x1e,0x0e,0x7b,0x10,0xf0,0x2d,0x78,0x54,0x0d,0x87,0xdc,0x42, + 0x20,0x6d,0x9d,0x49,0x49,0xfb,0xba,0x04,0x51,0x19,0xf6,0x1b,0x3f,0x59,0x0e,0x42,0xf7,0xad,0x89,0x76, + 0x5c,0xd9,0xa2,0xc0,0xef,0xb6,0xd4,0x91,0xc8,0xce,0xee,0x07,0xc1,0x7d,0x36,0x24,0xbf,0x6f,0x03,0x96, + 0xde,0xa7,0x45,0xde,0xee,0x29,0x10,0xb9,0xad,0x9d,0x5e,0x5c,0xad,0x8a,0x2f,0x58,0xee,0x4e,0x90,0x8c, + 0x38,0x34,0x6b,0x95,0xd7,0xa6,0x8b,0x16,0x39,0x51,0x17,0x95,0x36,0x3f,0x92,0x22,0xc5,0x3c,0x2f,0xb2, + 0x7d,0xdb,0xb2,0x14,0x97,0xd4,0x23,0x9d,0xc8,0x16,0x95,0x9d,0x2b,0x6f,0x08,0x8e,0x17,0xa5,0xef,0x21, + 0x93,0x25,0x0b,0x38,0xb4,0x31,0x40,0x52,0x4f,0x47,0xdb,0x30,0xa9,0x3c,0xf3,0x5d,0xa6,0x68,0x2c,0xcc, + 0x71,0xc5,0x0d,0xed,0x93,0xc2,0x0a,0xc0,0x46,0xcd,0xa3,0xc2,0x44,0x1e,0xa8,0x12,0xf8,0x2d,0x35,0xb2, + 0x59,0x54,0x29,0xcf,0x42,0x4e,0xbd,0x2a,0xb5,0xb8,0x4a,0x4b,0xfd,0x2f,0xd2,0xfa,0x49,0xce,0x48,0x0f, + 0x06,0xae,0x2a,0xf4,0xef,0x54,0xb2,0x70,0xac,0xef,0x07,0xfa,0x49,0xa2,0xdc,0xf8,0x61,0xef,0xdd,0x7d, + 0x19,0x5d,0x95,0x00,0x47,0x81,0x34,0x12,0xa6,0xc3,0x08,0xd7,0x7d,0xc3,0x70,0x02,0x57,0x72,0x45,0xfa, + 0x72,0x08,0x83,0x62,0x7e,0x2a,0xa1,0xe1,0x21,0x06,0xd5,0xf5,0xcd,0xcf,0xfe,0xc0,0xd9,0x34,0x8c,0x9f, + 0x39,0xf8,0x00,0x5b,0x32,0x4b,0x54,0x52,0x1c,0x18,0x62,0x74,0x7c,0xa0,0xb4,0x72,0xba,0x59,0xcc,0x03, + 0x89,0x7f,0x76,0x85,0xf8,0x9d,0xd2,0x94,0xa7,0xb8,0x66,0x1a,0x7d,0x42,0xd3,0x32,0xe7,0x1c,0x29,0x04, + 0x7a,0xef,0xa6,0x98,0x0c,0x06,0x6c,0x87,0xe8,0xa2,0x5a,0x72,0xae,0x42,0xb4,0x22,0x15,0xdc,0x63,0xcb, + 0xbb,0x80,0xed,0xbb,0xa1,0xcb,0x77,0x10,0x32,0x18,0x9c,0x96,0xf6,0xc2,0x5b,0x83,0xde,0x84,0xd9,0x22, + 0xa2,0x9b,0x4d,0x37,0x11,0x6b,0x2b,0x66,0x60,0xac,0xfc,0x80,0xb2,0xcf,0xfa,0x07,0xfc,0x4c,0x06,0x5c, + 0xe8,0xf2,0xb4,0xfc,0xbb,0xfe,0xe5,0x8c,0xab,0xa4,0x35,0x7b,0xaf,0x64,0xf6,0xf4,0x1a,0xbd,0xe1,0xb0, + 0x0e,0xc4,0x50,0xad,0x8e,0x0f,0x4f,0x46,0x73,0x3d,0xd3,0x56,0xce,0x67,0xfd,0xba,0xf6,0x0e,0x31,0x92, + 0x69,0x52,0x11,0xc3,0x97,0x13,0x7f,0x57,0x12,0x4f,0x37,0x87,0x8c,0x4b,0x85,0xe1,0x2c,0xc9,0xa2,0x96, + 0x8f,0x1e,0xe2,0xf4,0xd8,0xd7,0x2d,0x13,0xd1,0xa9,0xd2,0x1e,0x51,0xf1,0x52,0xdb,0x76,0x5e,0xc0,0xb2, + 0x25,0xbe,0x54,0xd6,0x0c,0x31,0x5e,0x6c,0x38,0xc8,0x86,0xb1,0x1d,0xe4,0x09,0xd0,0xf3,0xd1,0x31,0xe6, + 0x2b,0xf9,0xd6,0x1d,0x7f,0x76,0x83,0x05,0x84,0xd8,0x58,0xd5,0xea,0xb3,0x53,0x3d,0x18,0xe8,0xb9,0x36, + 0x5e,0x26,0x5a,0x6d,0xad,0x96,0xea,0x42,0x51,0x67,0x36,0x2d,0x7e,0xea,0x67,0x77,0x9a,0x33,0x50,0x27, + 0xc6,0x52,0x91,0x20,0x39,0x88,0xfa,0xcc,0xd7,0x8c,0x5d,0xb2,0x4c,0xf4,0x6b,0x1d,0xf2,0xc9,0xf0,0x2b, + 0xac,0xc4,0xa5,0x6f,0x93,0xe2,0xf8,0xe1,0x89,0xd6,0x1f,0x19,0x8a,0x8b,0x96,0x42,0xa7,0xd8,0x55,0x7b, + 0x6b,0x80,0x3a,0xd7,0xf5,0xbd,0x70,0x11,0x80,0xcb,0x31,0xe2,0x38,0xcd,0xf3,0xb4,0xa6,0x5c,0xf3,0xc1, + 0x0b,0xf9,0xa0,0x1a,0xe6,0x44,0xd3,0xa4,0x44,0x3b,0x1e,0x26,0xa5,0xab,0x57,0x95,0xd4,0x2a,0x5b,0x60, + 0x98,0xec,0x87,0x49,0xe9,0x3a,0x82,0xe0,0x2b,0xa6,0x46,0x55,0xf1,0xb5,0x78,0x05,0xc7,0x2c,0x68,0x3b, + 0x92,0xfc,0xdb,0xaa,0x64,0xf2,0xd9,0xd3,0x92,0xb0,0x02,0xd3,0x65,0xcc,0xa3,0xf8,0x09,0x1c,0x7a,0xb5, + 0x9d,0x64,0xf4,0x3c,0x9e,0x35,0xb4,0x2f,0x74,0xfe,0xae,0x69,0xaf,0x1a,0x9f,0x9b,0x26,0xba,0x7d,0x66, + 0x84,0x95,0x9e,0xbd,0x73,0x97,0x19,0x1c,0x07,0x26,0xda,0x53,0x7c,0x1b,0xc4,0x41,0x89,0x1f,0x17,0xf8, + 0x41,0xdf,0xb5,0xb7,0x97,0xc0,0xe0,0x2f,0xdf,0xbb,0x1f,0xc4,0xf7,0xf7,0x32,0xc4,0x0b,0x62,0xb7,0x72, + 0xd8,0x7d,0xbb,0xfb,0xa4,0x3d,0x91,0x37,0x1b,0x2e,0x3a,0xb3,0xe8,0xc2,0x52,0xb5,0xf6,0x7e,0x52,0x2b, + 0xc9,0x24,0xbe,0x75,0x13,0x6c,0x07,0xae,0xb6,0x17,0x9d,0x05,0xc7,0x30,0x2d,0x6f,0x0b,0xe7,0x9d,0x4e, + 0x54,0x5f,0x47,0x62,0x3c,0x01,0x15,0x34,0x93,0x27,0x81,0x3e,0xf9,0xbe,0x2b,0x0d,0xd1,0x2c,0x8e,0x63, + 0x44,0xfb,0x7c,0xdf,0x49,0x62,0x00,0x75,0x46,0xbd,0xc6,0xca,0x21,0x20,0x42,0x0f,0x7f,0x52,0xe3,0xbb, + 0xca,0x22,0x24,0x0e,0x4b,0xe9,0x15,0xa6,0x6f,0xff,0xcd,0x21,0x82,0xca,0xbd,0x84,0x1f,0xd4,0xb7,0x25, + 0x6b,0xcd,0x53,0x63,0xec,0xeb,0x02,0x65,0x67,0xd7,0xa9,0x44,0x4b,0xa9,0x4d,0x20,0x70,0xaf,0xa6,0x11, + 0x55,0xf0,0x73,0x19,0x1e,0x07,0x93,0xa6,0x9a,0xd3,0x20,0xd8,0x6a,0x98,0x7e,0xd3,0x39,0xfe,0x2e,0xb2, + 0x26,0x0d,0x4e,0xee,0xb6,0x69,0xdf,0x9d,0x30,0xc9,0x78,0x87,0x49,0xbc,0x46,0xaf,0xc3,0x00,0x66,0xfa, + 0xdf,0x13,0x11,0x66,0x27,0x6b,0xbd,0x06,0xaf,0x28,0xe6,0x28,0xb6,0xc3,0xc6,0xc5,0xd8,0x5a,0x0e,0x85, + 0xf9,0x1e,0x61,0x79,0x58,0x79,0xdc,0x3f,0x5b,0x35,0x4d,0x59,0xdc,0xc7,0x34,0x48,0xa5,0x08,0x2b,0xb0, + 0x97,0x72,0xc3,0x4d,0x61,0xaa,0xa5,0x34,0x5a,0x04,0xab,0xfa,0xa3,0x03,0x7e,0x84,0xed,0x28,0x35,0x95, + 0x5e,0xdc,0xcd,0x50,0x57,0x72,0x0b,0xea,0x3a,0x2c,0xc6,0x7a,0x4d,0xf6,0x02,0x93,0x11,0xc4,0xd5,0x98, + 0xcd,0x67,0x4d,0x46,0xe4,0x72,0xcc,0x02,0x32,0xa4,0x99,0xb6,0xd6,0xeb,0xca,0xd4,0x12,0xf7,0x35,0x63, + 0x2b,0xf2,0xa1,0xb3,0xf1,0xce,0x63,0x0e,0xcb,0xf3,0x8a,0x8f,0x87,0xc3,0x83,0xc8,0x8f,0xc9,0x6f,0xa6, + 0x51,0x87,0xbf,0x26,0xc2,0x91,0xaa,0xd3,0x70,0xf6,0x6d,0xe9,0x42,0x25,0x07,0xa7,0x9f,0xc2,0x76,0x51, + 0x62,0x1e,0x3a,0x88,0x38,0xe3,0x8d,0xd3,0x4d,0x2d,0x90,0xea,0x3e,0xf5,0xcd,0x43,0x8b,0x96,0xe1,0x14, + 0xc2,0xfb,0xfc,0x13,0x11,0x80,0x8d,0xc9,0xaa,0x04,0x93,0x8b,0x03,0x98,0x18,0x72,0x10,0x59,0xbb,0x3f, + 0xa0,0xc5,0x1f,0x57,0x62,0x17,0x15,0xdf,0x3f,0x9d,0xe8,0xe0,0x06,0xf7,0x79,0xda,0x54,0x27,0x36,0x73, + 0x5c,0x74,0xa3,0x35,0x7b,0x08,0xac,0x72,0x7b,0xd8,0xd8,0x1c,0x41,0xbd,0xc1,0x04,0xbb,0xbc,0xbe,0xaf, + 0xca,0x49,0x56,0xd7,0xd9,0xd4,0x2c,0xbd,0x36,0xa0,0x91,0xf8,0x3a,0xe2,0x47,0xb0,0x2b,0x0f,0x5b,0x45, + 0x53,0xbf,0x28,0xed,0x37,0x2e,0x49,0xbf,0x5b,0x05,0xdb,0x86,0xa1,0x5e,0xb0,0x10,0x94,0x66,0x97,0x1a, + 0xc6,0xc5,0xec,0x02,0x60,0xd1,0xf9,0x18,0xb3,0xed,0xbd,0xc7,0xb4,0xb3,0x6b,0xaf,0xc0,0xc3,0x4e,0x81, + 0x87,0xf0,0x51,0xb3,0xec,0x9a,0xdf,0x0d,0x26,0x87,0x4e,0xe7,0xa1,0xb6,0xfd,0x76,0x04,0x2f,0x8c,0xb5, + 0x53,0x04,0xbd,0xf2,0xa6,0x5e,0x4f,0x19,0x4d,0x35,0xad,0xa5,0x37,0xbe,0x7c,0xc6,0xc3,0xcb,0x67,0x5b, + 0xa3,0xab,0xdd,0x34,0x38,0x02,0x7c,0xb7,0x43,0x80,0x0b,0xe1,0xde,0xc7,0x81,0xf4,0xcc,0x91,0xb3,0x37, + 0x30,0xcc,0xc9,0x7a,0xed,0x51,0xfa,0x84,0x11,0x57,0x85,0xd1,0xe9,0x07,0xa7,0x6c,0xaf,0xbc,0x17,0x56, + 0x3c,0x1f,0x95,0xc4,0xb2,0x73,0x81,0xd1,0x83,0x5b,0x4c,0x92,0x04,0x47,0xbf,0xc3,0xfd,0xe6,0xaa,0xd0, + 0x36,0x15,0x34,0xea,0x18,0xa5,0x45,0x08,0xd6,0x42,0xcf,0x9b,0x80,0x57,0xc7,0x1a,0xef,0x6b,0x17,0x86, + 0xc0,0xec,0xa0,0x5d,0xdc,0x66,0x9a,0xd2,0x56,0x86,0xa7,0x38,0xe1,0x1e,0xe6,0x11,0x1c,0x06,0x41,0xd7, + 0x10,0x28,0x4b,0xde,0xc2,0x12,0x36,0x49,0xa6,0x0c,0x6f,0xab,0x94,0xc6,0xc2,0xd6,0xd5,0x32,0x97,0x3c, + 0x7e,0x99,0x78,0x17,0x00,0xd6,0x27,0x3f,0xda,0xa2,0xd1,0x36,0xbb,0x31,0x46,0xbd,0xf1,0x8a,0xf5,0xc1, + 0x10,0x85,0xd9,0x4d,0x4e,0x3b,0x49,0xbb,0x3d,0x4d,0x44,0x59,0xdc,0x9a,0x35,0xdd,0xbc,0x6b,0x50,0x71, + 0x57,0x2c,0x9d,0x09,0x1e,0x9c,0x29,0xb6,0xb1,0x89,0x82,0x66,0x17,0xa1,0xcb,0xf0,0xd8,0x1e,0xa0,0x9f, + 0xe8,0x41,0x91,0xa0,0xf5,0xfb,0x98,0x5c,0x5a,0xf3,0xbd,0x80,0x9e,0x5a,0x4d,0x87,0x39,0xbf,0xe4,0xb6, + 0x1f,0xed,0x4b,0x38,0x1b,0x27,0xfa,0x70,0xd7,0x27,0x10,0x6f,0x53,0x24,0x7e,0xce,0x71,0x79,0xc2,0x38, + 0xc3,0x39,0xc9,0xeb,0x07,0x0d,0x2d,0x30,0x99,0xe1,0x9e,0x7b,0x48,0x6a,0xeb,0xc2,0x9e,0x0e,0x5a,0xc0, + 0xde,0x69,0xba,0x18,0x46,0xce,0x9d,0x5e,0xcc,0xe5,0xb6,0x4f,0x80,0x88,0xf0,0x0b,0x9a,0xf1,0x70,0xfb, + 0x7b,0x13,0x7d,0x2f,0xda,0xb3,0x78,0x49,0xe2,0xa1,0x04,0x4a,0x3c,0xad,0xed,0x34,0x58,0x2f,0x0a,0x1f, + 0x93,0xb5,0xb0,0x91,0xc4,0x60,0xff,0x53,0xdb,0xb3,0xd5,0x96,0x2f,0x60,0x08,0x02,0x96,0xb0,0x68,0x9d, + 0x71,0x35,0xd2,0xa6,0xbc,0x90,0x31,0xdc,0x12,0x2f,0x0e,0xcc,0x6e,0x1c,0x5a,0xac,0xa3,0xad,0x3d,0xbf, + 0xc6,0x01,0x11,0xe1,0xde,0xc8,0xd9,0xab,0x0e,0x5d,0x7c,0x35,0xdd,0xdb,0xe3,0xd7,0x02,0x63,0x89,0x75, + 0x81,0x4d,0x1b,0xd1,0x7a,0xee,0x04,0xdb,0xd1,0xb7,0x5b,0x03,0xc2,0x40,0x1d,0x75,0x16,0x5a,0xe3,0x7e, + 0x4f,0xab,0xe8,0xf6,0x74,0x35,0xae,0xe4,0xfc,0x90,0xd9,0x1a,0xa7,0xfa,0x38,0xd1,0xc7,0x0a,0xdf,0x77, + 0x62,0x44,0x35,0xf6,0x36,0x64,0x02,0x90,0x53,0xa2,0x40,0x03,0x6d,0xa7,0xd0,0x98,0xe8,0x85,0x8e,0xbe, + 0xc8,0xae,0x97,0x7c,0xb8,0xa7,0xe2,0x1f,0x11,0x8d,0x69,0x5b,0x13,0xe3,0x79,0x36,0x2f,0x27,0x9f,0x34, + 0xf6,0xb0,0x1d,0xa3,0x45,0xf4,0x32,0x37,0x1d,0xa2,0xd9,0x92,0xbb,0xdd,0x7b,0x6a,0x26,0x2d,0x14,0x48, + 0xe8,0x4b,0x55,0x49,0x3f,0x72,0xec,0xde,0x93,0x7d,0xab,0xc3,0x5a,0x68,0x07,0x5f,0x2f,0x8a,0x44,0x7c, + 0x1c,0xb0,0xb3,0xaf,0x09,0x78,0xd1,0x77,0x6f,0xd6,0x6d,0x69,0xc2,0xec,0x6b,0xe9,0xe3,0xaa,0x75,0x15, + 0xf7,0xb1,0x44,0xb7,0x38,0x19,0xad,0xc0,0x6a,0x27,0xbb,0xbb,0x2b,0xc4,0xca,0xa6,0xbd,0x71,0x95,0x56, + 0xb8,0x3b,0x24,0x15,0x67,0xde,0x03,0x55,0x13,0xd9,0x2d,0x8c,0x20,0x11,0xdf,0x3a,0x24,0xc6,0xfd,0xc0, + 0xf2,0x84,0x9c,0xa8,0x5f,0xe0,0x7e,0xb3,0x17,0x96,0x82,0x6f,0x09,0xf6,0x85,0x06,0xc2,0xb1,0x64,0x69, + 0x27,0xdf,0xff,0x68,0x8b,0xf8,0xd0,0xc5,0x22,0x41,0x21,0xe5,0x90,0xce,0x98,0xf1,0x7d,0xe6,0x35,0xb9, + 0x15,0x7a,0x40,0x0b,0x26,0xd7,0x12,0xae,0xd4,0x92,0xe3,0x44,0x7b,0x2a,0x75,0xb4,0xb2,0xec,0xc3,0x8d, + 0x72,0x91,0x95,0x26,0xe3,0xba,0xcd,0x32,0x9c,0xd8,0x08,0x4f,0x1a,0x75,0xf3,0xc5,0x2a,0x7b,0x49,0x05, + 0xc8,0x8f,0x94,0x16,0x10,0x22,0x05,0xc2,0x44,0x3e,0x5e,0xc4,0x9f,0x26,0x90,0x90,0x00,0x33,0x9d,0x49, + 0x4f,0x9c,0x49,0xbf,0x5e,0x26,0xef,0x54,0x57,0x82,0x5f,0x63,0xa0,0x08,0x29,0xb1,0x64,0x4f,0x48,0x64, + 0xd2,0x93,0x97,0xee,0x71,0xcb,0xc8,0xbd,0x0f,0xb1,0x2b,0xfb,0x3e,0x01,0xf9,0xd2,0x62,0xdc,0x77,0xa2, + 0x28,0x71,0xc0,0x15,0xa5,0xde,0xb7,0x59,0xe1,0xb0,0x13,0xfb,0xe2,0xd2,0xc7,0x7e,0x16,0xb1,0x4f,0x61, + 0xa6,0x51,0x89,0x3e,0x5f,0xb9,0x75,0x7e,0x26,0x16,0x6c,0x6f,0x56,0x98,0x1c,0x3d,0x6f,0x4a,0x7b,0xa5, + 0xea,0x82,0xc6,0x17,0xc1,0x96,0x95,0xa8,0xc3,0xb6,0xac,0xb8,0x33,0x4a,0x61,0x30,0x7d,0x3a,0x41,0xed, + 0x1e,0x1a,0x48,0x33,0x93,0xe3,0x7b,0x46,0x7a,0xe5,0xfd,0x64,0xc5,0xb8,0xbb,0xf5,0x95,0x23,0x45,0x84, + 0x06,0x34,0xa2,0x41,0xdd,0x3d,0xbe,0x88,0x26,0xd8,0xf3,0xcb,0xd9,0x2f,0x5d,0x80,0x57,0x29,0xcc,0x5a, + 0x43,0x2f,0x15,0x57,0x32,0x69,0x81,0xa8,0x24,0xc4,0xa7,0x2b,0x62,0x8e,0x5a,0xa1,0x60,0xd2,0xbb,0xf8, + 0x9d,0x9d,0x2e,0x62,0xb3,0x19,0x85,0xa6,0x2c,0x8b,0x16,0x49,0xe7,0x62,0x9d,0xb5,0x08,0xca,0x42,0x13, + 0x94,0x85,0x25,0x28,0x8b,0x0e,0x41,0x59,0x74,0x09,0xca,0xa2,0x43,0x50,0x16,0xbd,0x04,0x65,0xf1,0x9f, + 0x13,0x94,0x66,0x40,0x9a,0xa2,0x94,0x97,0x38,0xb8,0x95,0xdd,0x80,0xf9,0x9d,0x15,0xb1,0x57,0x83,0x76, + 0xd6,0x28,0xdc,0xe2,0x44,0xad,0xfa,0xc2,0x96,0x94,0x97,0x4d,0x66,0xc6,0xd4,0xe9,0x19,0xff,0xd9,0x0b, + 0x08,0x23,0x87,0x2b,0x0e,0xa2,0x1c,0xb5,0x2e,0xae,0x06,0x76,0x76,0x6f,0x71,0x5f,0x11,0x1c,0x0e,0x7c, + 0xfd,0x2b,0x75,0x75,0xc3,0x94,0x58,0x8a,0xfb,0xec,0xeb,0x2e,0xa7,0x4e,0x07,0x7b,0x04,0x90,0xd0,0x71, + 0xd3,0x19,0x72,0xf8,0x39,0x36,0xde,0x93,0x7b,0x99,0x1f,0x19,0x9d,0x86,0xe8,0x1c,0x26,0x6d,0x96,0x49, + 0xda,0x0b,0xda,0x38,0xce,0x86,0x61,0xb7,0x89,0x76,0x77,0xb4,0x89,0x2c,0x63,0x90,0xd7,0x36,0xff,0xb3, + 0x01,0xdd,0x4c,0x24,0xd2,0x03,0x0e,0xff,0x73,0x28,0x71,0x08,0xd9,0x7e,0x4e,0xc3,0x4a,0xc1,0x11,0x7f, + 0x4a,0x13,0xec,0x50,0x13,0x89,0xed,0x36,0x62,0xc3,0xa6,0x79,0x82,0x0f,0x5a,0x74,0x1d,0x09,0x1c,0x1d, + 0xeb,0xb2,0x63,0xc7,0xc8,0xee,0xd2,0x3b,0x77,0x30,0xf9,0xad,0x4a,0x85,0xc1,0x6d,0xcf,0x34,0x1c,0x49, + 0x09,0xd1,0x12,0x56,0x2d,0x65,0x9e,0x4b,0xde,0x8e,0x1b,0xed,0x7d,0x61,0xa1,0xd3,0xb3,0xda,0x7e,0xa0, + 0xee,0x3d,0x50,0x81,0x26,0xd9,0xb3,0xe1,0x55,0x95,0x2e,0x9f,0x19,0x9f,0x03,0xf7,0x0a,0x9b,0x09,0x9d, + 0x6b,0xd5,0x9e,0x5e,0x11,0x9b,0xc6,0xe5,0xbc,0x60,0x4b,0xab,0x9e,0x50,0xff,0x6e,0xae,0x25,0x18,0xb9, + 0x1f,0x90,0x2b,0x4d,0x4a,0x6f,0x01,0x4a,0xcf,0xb3,0x89,0x77,0x75,0x8b,0x5f,0x4a,0xc5,0xfa,0x4b,0xd8, + 0x23,0xf3,0x6e,0x7c,0x5d,0x89,0xaf,0x20,0x34,0x16,0xa6,0x86,0x39,0xa0,0x8d,0xdb,0x09,0x23,0xee,0xe9, + 0x16,0x54,0x4f,0x4c,0x2b,0x1b,0x9f,0xb2,0xb2,0xdd,0xc9,0x35,0x3c,0x20,0xae,0x06,0x2e,0x97,0x42,0x88, + 0x4a,0x9f,0x44,0x81,0xf7,0x47,0x9b,0x64,0x29,0x17,0x59,0x1f,0xf2,0x9a,0x03,0x93,0x6b,0x32,0x27,0x02, + 0xc5,0xf8,0x50,0x53,0x8b,0xec,0xb4,0xf4,0x1f,0x57,0xdb,0xf8,0xb5,0xf2,0xea,0x1c,0x46,0xde,0xb5,0x72, + 0x61,0xc9,0xf6,0xaf,0x37,0x67,0xd9,0x53,0xcb,0x22,0xc5,0x1c,0xa7,0xb7,0xeb,0xba,0x65,0x4c,0x5d,0x85, + 0xe7,0xa4,0x31,0x8f,0x35,0x2d,0x1a,0x7f,0x61,0x93,0xa0,0x24,0xb6,0x11,0x00,0xc7,0x70,0x0e,0x57,0x20, + 0x06,0xb7,0xc8,0x83,0x4a,0x62,0x4d,0xb3,0x0f,0x75,0x1c,0x9c,0x5e,0x82,0xc0,0x7f,0x08,0x0d,0x43,0x01, + 0x29,0x39,0x57,0x5e,0x78,0x7b,0x37,0x9e,0x16,0x61,0x57,0x64,0x22,0x35,0x44,0x5c,0xc7,0x48,0x9b,0x69, + 0x1b,0xd5,0x09,0x04,0x87,0xe5,0x5d,0x87,0xc4,0xa4,0x57,0x6e,0xb8,0x17,0xd6,0x8c,0xb9,0x6b,0x50,0x2b, + 0x9e,0xf0,0x63,0xee,0x7f,0x6a,0x35,0x87,0x2c,0x1a,0x20,0xb4,0xd7,0xa3,0x2a,0x6b,0x33,0xe6,0x9e,0x2f, + 0x6d,0x47,0x27,0x4b,0xe7,0xc6,0x1f,0x5c,0xe4,0xdc,0x88,0xe8,0xb5,0x32,0xd4,0x5f,0x7c,0x7f,0x6f,0x8a, + 0x10,0x85,0x46,0xfa,0xa5,0x02,0x77,0xb3,0xba,0x47,0x4d,0x79,0x4e,0xaa,0xad,0xe8,0x17,0x6e,0x73,0xff, + 0xb2,0x7a,0x78,0xf0,0xf0,0x1f,0x0f,0xce,0x55,0xf0,0x8b,0x3c,0x06,0x51,0x27,0xf3,0x6b,0x97,0xf9,0xb5, + 0x7f,0x41,0xe8,0x52,0xc3,0x02,0xbc,0xf7,0x0c,0x08,0x65,0x57,0x3b,0x2f,0xdc,0x2c,0xbb,0x8b,0x62,0x6d, + 0xdf,0x44,0xab,0x91,0x55,0x15,0x34,0xc8,0x84,0x95,0x63,0x38,0xfb,0x9e,0xfb,0x3e,0x9e,0x5e,0x3f,0xc3, + 0xeb,0x32,0xb9,0x2e,0xff,0x20,0x42,0x27,0x82,0xe1,0x6a,0xdd,0x53,0x92,0x8d,0xef,0x3f,0x4a,0x77,0x2e, + 0xa0,0x04,0x0e,0x7e,0x29,0x82,0x07,0xdf,0xdc,0x8f,0xef,0x3f,0xa2,0x52,0x84,0x35,0xf4,0xbb,0xba,0x2e, + 0x5d,0x79,0xe7,0x85,0x33,0xf8,0x3f,0x87,0x07,0xa3,0x20,0xfa,0xe6,0x80,0x11,0xe1,0xa5,0x0d,0x79,0x37, + 0xab,0xb2,0xec,0xf7,0x2c,0x44,0xa4,0xe5,0x85,0x4d,0x74,0x51,0xc5,0xcd,0x45,0xe0,0xea,0xbc,0x48,0x56, + 0x22,0x86,0x51,0x96,0x52,0x0c,0xd8,0x68,0xe6,0x86,0x73,0xe8,0x68,0x56,0xd4,0x2b,0xc5,0x25,0x9c,0xba, + 0x56,0x41,0x1d,0xaa,0xce,0x7a,0x6a,0xbe,0x48,0x6b,0xef,0xda,0x4b,0x75,0x5a,0x24,0x0f,0xf6,0xc3,0x5f, + 0xae,0x22,0x5a,0x8b,0xab,0x22,0x99,0xf6,0x86,0x34,0xb1,0xeb,0x76,0xea,0x9b,0x14,0xf8,0xb6,0x4d,0x63, + 0x18,0x4a,0xfc,0xb0,0x5c,0xc2,0x72,0xba,0x26,0x56,0x09,0x11,0x58,0x61,0xf2,0x7a,0x74,0x67,0x95,0x3a, + 0xb6,0xcd,0x41,0xd4,0xfe,0x70,0xcf,0xe9,0x1d,0xe9,0xf3,0x4f,0xd4,0xbb,0x5f,0x9e,0x84,0xc7,0x8f,0xf7, + 0xff,0x7d,0x82,0x1e,0x5e,0xff,0x61,0x0f,0x3f,0x15,0x2a,0xd8,0xbf,0x77,0x18,0xa0,0xda,0xd7,0xe5,0x95, + 0xa9,0x96,0xea,0x7a,0xba,0x2d,0x93,0xb1,0x0a,0x78,0xf5,0xb8,0xad,0x2f,0xb2,0xb1,0x5c,0xd4,0x47,0xe2, + 0xeb,0x40,0x54,0xef,0x73,0x9c,0xf5,0x6a,0xdf,0x5c,0xa6,0x18,0xa8,0x7b,0x45,0x72,0x1c,0x78,0x6b,0xe2, + 0x78,0xb8,0xc0,0x5c,0x79,0x18,0x9c,0xa8,0x77,0x28,0x25,0xf6,0x97,0x4f,0x19,0xc6,0x28,0x53,0x80,0x8d, + 0xaa,0xd0,0x19,0x6c,0xd4,0x0d,0x39,0xbc,0x18,0x77,0xdb,0xf4,0x1f,0x74,0x78,0x4a,0x7b,0xd7,0xae,0xc9, + 0x78,0x26,0x91,0x88,0xd1,0xa6,0x3c,0x71,0x9e,0xbb,0xa3,0x19,0xe9,0xfe,0x9b,0xdc,0x20,0x24,0x3e,0xe7, + 0x53,0xea,0xd4,0xf3,0x22,0xb9,0x15,0x62,0xe2,0x4d,0x46,0x84,0x33,0x81,0x1a,0x15,0x3c,0xcf,0x89,0xf9, + 0xec,0xbb,0x61,0xb5,0xce,0xe7,0x30,0xcc,0x20,0xba,0x9e,0xa0,0x68,0xba,0xe2,0x49,0x3a,0xca,0x97,0x48, + 0x30,0xd7,0xfd,0x72,0x66,0x56,0x41,0xb4,0x03,0xfb,0x2a,0xbc,0x72,0x9b,0x2f,0xe5,0x1e,0x58,0xf6,0xde, + 0x50,0xa0,0xee,0x5b,0x09,0xf9,0x79,0x41,0x83,0x99,0xea,0x5d,0x47,0xf4,0xc8,0x89,0x32,0x97,0x3f,0xf6, + 0x76,0xa4,0x15,0xee,0x3e,0x7e,0x5a,0x78,0x09,0x70,0xe5,0x92,0x94,0x1f,0x8a,0x4f,0x45,0x79,0x55,0xe8, + 0x4a,0x91,0xd6,0x89,0x9e,0x1f,0x9f,0xab,0xbe,0xe0,0xf8,0xf1,0xe3,0x42,0x79,0x97,0x30,0xe2,0xc3,0xd3, + 0x79,0x3e,0xcb,0x26,0x37,0x93,0x79,0x86,0x7b,0xa7,0xa9,0x4f,0xc5,0x46,0xbd,0x27,0x88,0x3c,0xfe,0x9f, + 0x5f,0xae,0x86,0xf7,0x4e,0x1e,0xa8,0x5f,0x21,0x2b,0x3b,0xe5,0xbd,0x75,0x7a,0x4a,0xe4,0xd8,0xed,0x46, + 0x3d,0xa3,0x24,0x47,0xa6,0xda,0x2b,0xfc,0xc4,0xb3,0x47,0xbd,0xea,0xcf,0xfd,0xe9,0xe7,0xe7,0xc5,0x65, + 0x5e,0x95,0x85,0xbe,0x0f,0x7d,0xb7,0x95,0x00,0x49,0x1e,0xf7,0x54,0xbd,0x2e,0x92,0x57,0xc5,0x60,0xd0, + 0x9f,0xdb,0x06,0x78,0xf5,0xa2,0x48,0x9e,0x51,0x59,0xed,0x52,0x54,0xa4,0x97,0xf9,0x39,0x38,0x85,0xe1, + 0x8a,0x26,0xec,0xf1,0x39,0x5f,0x38,0xd5,0x2a,0xff,0xb6,0x48,0x5e,0x50,0xf9,0x07,0x8b,0x3a,0xcf,0xd6, + 0x84,0x7b,0xa6,0x54,0x44,0xdb,0x84,0xbd,0x28,0x22,0xf5,0x46,0xb2,0x5f,0x78,0x1e,0x8d,0x28,0xb9,0xf3, + 0xf5,0xf0,0x00,0xd8,0x4d,0x7d,0xd8,0xce,0xcf,0xa6,0xe7,0xd9,0x03,0xce,0xfc,0x69,0x3b,0x93,0xe0,0xa0, + 0xa2,0x73,0x0e,0xd9,0x74,0x9a,0x99,0x37,0x5c,0xb9,0x51,0xa8,0x27,0xba,0x2b,0xf9,0xf2,0x82,0xf6,0xd6, + 0x3a,0x5f,0xa6,0x53,0xfa,0x53,0xd2,0x9f,0xb2,0x76,0x5d,0x82,0x53,0x7b,0x59,0xeb,0x4f,0x7e,0x2c,0x92, + 0x90,0xbf,0x99,0x5c,0x54,0x44,0xa2,0xfc,0xf2,0xe0,0x97,0xe9,0x9e,0xd7,0xfb,0xdb,0xcd,0x90,0x6f,0x1a, + 0x8e,0xd4,0x0f,0x50,0x62,0x83,0xaa,0x7a,0x56,0x70,0x94,0x4d,0x60,0xe5,0x97,0x6c,0x0f,0xd1,0x7f,0x2d, + 0xf3,0x4b,0xc2,0x27,0x3a,0x46,0x43,0xa0,0x6e,0x71,0xad,0xb3,0x47,0x09,0xa3,0xb2,0x83,0x0d,0xe1,0x16, + 0x3d,0xcb,0xdb,0x31,0x01,0xd1,0x83,0x7d,0xfb,0x3d,0x43,0xfd,0xcb,0x22,0xf2,0xdc,0xce,0xd1,0xfe,0xef, + 0x85,0xfa,0xad,0x50,0xdf,0x7b,0x28,0xa8,0x43,0x0b,0xd0,0x18,0x7f,0x87,0x61,0xcd,0xef,0xd4,0x1e,0x16, + 0xb5,0x0f,0x86,0xce,0xe7,0xe5,0x59,0x3a,0x07,0x4d,0xca,0x88,0x0a,0xf3,0x22,0x49,0xc0,0xfd,0xe0,0x05, + 0x87,0x59,0x71,0x39,0xfc,0xf1,0x87,0xe7,0xa7,0xcf,0xdf,0xfe,0x18,0xa9,0xdf,0x09,0x96,0xbf,0x6b,0x81, + 0xc8,0xe9,0x29,0x32,0x9f,0x3d,0xff,0xf1,0xe8,0xdd,0xbb,0xd7,0x1f,0x4f,0xbf,0x7d,0xfd,0xee,0xc9,0xe3, + 0xd7,0xa7,0x2f,0xdf,0xbd,0xfb,0xfe,0xf4,0x54,0x7d,0xdb,0x0f,0xb8,0x1f,0x6f,0x16,0x67,0x25,0x35,0xfa, + 0x29,0x94,0xa7,0xa8,0xbf,0x6f,0xfa,0x7a,0x66,0x94,0xeb,0xdc,0xd4,0x1c,0x8d,0x7e,0xbb,0xa3,0xe6,0x8c, + 0x8b,0xd3,0x4f,0x34,0xfe,0xd8,0x9e,0x75,0x8f,0xff,0xd6,0xc1,0xf4,0x71,0xc9,0x76,0x0f,0xc2,0xb0,0x21, + 0xb6,0xdb,0xc7,0x5f,0x0f,0xa6,0xdf,0xe5,0xa0,0x2d,0xba,0x2a,0x28,0x3b,0x95,0xff,0x0d,0x2d,0x6b,0xeb, + 0x1b,0xaf,0x20,0xd6,0xbf,0x55,0x96,0x90,0x45,0x5a,0xf9,0x0b,0xf9,0xd9,0x0e,0xaa,0x6c,0xa3,0x4d,0x0d, + 0x7e,0x2e,0x92,0x73,0xf5,0x6f,0x30,0x04,0xff,0x2a,0xb6,0x3e,0xcf,0xa7,0xc9,0xbf,0x89,0x6e,0xd3,0xd7, + 0x42,0xae,0xce,0xa0,0xc6,0xdf,0x8c,0xfe,0x55,0xb4,0xfb,0xf8,0x71,0x75,0xd6,0xd3,0x4d,0x2a,0xad,0xe3, + 0x0d,0x52,0x73,0xad,0x4f,0xc4,0x15,0xb2,0xfb,0x95,0xbe,0x39,0x15,0xdf,0xa9,0xad,0x4f,0xe4,0x52,0x70, + 0xbf,0x7f,0xde,0x9d,0xe1,0xf6,0x11,0x9d,0x79,0x96,0x2d,0x45,0xde,0xde,0xa9,0xa1,0x28,0x1b,0x22,0xac, + 0xfb,0xef,0x05,0x74,0x1d,0xb6,0x02,0x57,0xb6,0x93,0xca,0xba,0x76,0x52,0x7c,0xf1,0xfd,0xca,0xde,0x12, + 0x68,0x1b,0x66,0xc3,0x7d,0x9e,0xce,0x7f,0x16,0x88,0x0c,0x9d,0x55,0x9d,0x23,0xdf,0x19,0x65,0xe9,0xe9, + 0x81,0x33,0x8f,0xbe,0xd0,0x93,0xaf,0xb3,0xea,0xde,0xe7,0xa9,0x6f,0xea,0xe4,0x4b,0xb1,0xf4,0xdd,0x9e, + 0xd9,0x7c,0x61,0x2e,0xf6,0x2c,0x6a,0x73,0x23,0x89,0x7c,0xa5,0x6f,0xcf,0x2a,0xe5,0xd5,0x5d,0xa7,0xe5, + 0x17,0x72,0xd7,0x6a,0xb5,0x53,0xcd,0x1d,0x98,0x7e,0x2a,0x9b,0x31,0xc2,0xe0,0x18,0x54,0x9e,0x6e,0xa2, + 0x6d,0x78,0x6b,0x2e,0xf1,0xdc,0x32,0x71,0x6e,0xd5,0xa3,0xaf,0x23,0xf5,0x93,0xaa,0x14,0x0e,0x1c,0xfa, + 0x1e,0x52,0x7b,0x45,0xac,0x4d,0x70,0x9e,0x65,0xac,0x55,0x91,0x44,0x13,0x81,0xdd,0x15,0x7b,0x3a,0xa7, + 0x46,0xa7,0x5e,0x02,0xdf,0x2a,0x6b,0x5e,0x5b,0xe1,0xcc,0x6b,0x2f,0x8d,0x6f,0xd3,0xf3,0x7b,0xb3,0x1d, + 0x0f,0x1d,0xa6,0x46,0xaa,0xa9,0x92,0x5b,0x5e,0x8a,0x18,0xe1,0xfc,0x66,0xf9,0xf9,0x8a,0x6f,0x64,0x8f, + 0x81,0x74,0x47,0x8d,0x0e,0x59,0x02,0xeb,0xdf,0x1e,0xcc,0xd9,0x3f,0x2d,0x1b,0xd5,0x87,0xe6,0x89,0xf2, + 0x09,0xb3,0xca,0x41,0x29,0x35,0xac,0xf5,0x7a,0x9d,0x0b,0x57,0x0c,0x36,0xe6,0xeb,0x39,0x38,0x02,0x8b, + 0xb0,0x59,0x72,0x21,0x8e,0x33,0xa9,0xe3,0x55,0x47,0x54,0x1e,0x6f,0xd2,0x68,0xa8,0x1b,0x55,0x55,0x49, + 0xe7,0x02,0x21,0x95,0x57,0x1d,0xd4,0x50,0x51,0xe3,0xc7,0x01,0xf6,0x6c,0x80,0xe8,0xdd,0x4b,0xcf,0x5e, + 0x43,0xc7,0x7b,0x43,0x0a,0xc7,0x2f,0xc3,0x43,0x09,0xd7,0xb6,0xa0,0x82,0x73,0x41,0x9d,0xc1,0x8c,0xa3, + 0xc7,0x9c,0x4f,0x1b,0x03,0x56,0x30,0x23,0x38,0x0a,0xf3,0x4a,0x65,0xfd,0xb1,0xc0,0x8f,0x71,0x21,0x9a, + 0x0d,0x6d,0x64,0x65,0x12,0xfb,0xfb,0xa3,0x88,0xef,0xf2,0xb5,0x59,0xd6,0x26,0x1d,0x41,0xf1,0xb5,0x9b, + 0x2b,0x66,0x1c,0x5e,0x24,0xfa,0x1e,0x72,0x09,0x7e,0x31,0xd2,0x11,0x3a,0x33,0x89,0xd0,0x29,0xc3,0x8a, + 0xf9,0xd1,0x0c,0x26,0x46,0x68,0x7a,0x17,0x30,0xd3,0x0c,0x0d,0xc9,0x1a,0x11,0x3c,0xb4,0xa8,0x3c,0x87, + 0x3c,0xa6,0x3c,0xe3,0x33,0xce,0x5c,0x04,0xae,0x52,0xe0,0x25,0x8d,0x59,0x60,0x4f,0x05,0xce,0x43,0x8c, + 0xb2,0xed,0xd4,0x12,0x8c,0x78,0x5c,0x0f,0xd3,0x82,0x34,0x0d,0xf4,0x29,0x41,0x58,0x7d,0x51,0xae,0xe6, + 0x53,0xda,0xab,0x34,0x83,0x0d,0x60,0x4b,0xd5,0xd5,0x36,0x22,0x95,0xf0,0x2a,0x06,0x57,0x64,0x4b,0x5e, + 0xf3,0x7f,0x69,0xfc,0x70,0xb9,0x60,0x47,0x63,0xc2,0x56,0x47,0xa1,0x5c,0x14,0x4d,0x43,0x0f,0xf4,0x65, + 0xd3,0x5b,0x91,0x51,0xc2,0xf0,0xd7,0xb6,0x44,0x48,0x62,0x30,0x5a,0x4a,0x32,0x69,0x36,0x71,0x37,0xdb, + 0xbb,0x35,0xba,0x57,0x23,0xa4,0x1d,0x7e,0xb1,0x2e,0x47,0xa2,0xed,0x41,0xd8,0x6a,0xa2,0x4d,0x42,0x40, + 0x98,0x2a,0x2b,0x7d,0xa9,0x6f,0x6b,0xee,0x32,0x84,0x03,0x45,0xea,0x55,0x3a,0xff,0x84,0x03,0x62,0x54, + 0x7b,0xbb,0x80,0x53,0xef,0xb8,0x34,0xcb,0x97,0x94,0x67,0x91,0x96,0x31,0x34,0xbe,0x8c,0xe1,0x1e,0x7a, + 0x8e,0x80,0xf0,0x84,0xac,0xe9,0x87,0xfa,0xa2,0x5a,0x95,0xfb,0x1d,0xb9,0xeb,0x66,0xae,0x3e,0xdc,0xff, + 0x51,0xae,0xe3,0x92,0xdb,0x8f,0x27,0x15,0xae,0xc1,0xea,0x65,0x65,0x46,0x13,0x09,0xcc,0x72,0x07,0xd3, + 0xb7,0x53,0x8c,0x7f,0xd5,0x29,0x71,0xe3,0xfb,0xbd,0x5a,0x0a,0xa4,0x19,0x67,0xf1,0xaf,0x22,0xc5,0x21, + 0x2e,0xae,0x77,0x5b,0x4d,0xb0,0xa1,0x92,0x67,0x44,0x00,0xde,0xbb,0xbb,0xc0,0x5e,0x50,0x07,0x27,0xc9, + 0x2b,0x2a,0x44,0x3d,0x62,0x2a,0x74,0xeb,0x50,0x12,0x5d,0x31,0xe1,0x95,0x1f,0xd9,0x7c,0xda,0xde,0xa5, + 0xd7,0x98,0xa4,0xc6,0x26,0x59,0xfb,0xb6,0x9d,0x36,0xd2,0xc8,0xd6,0xeb,0x9e,0xf0,0xf9,0x8d,0x36,0x63, + 0x24,0xf2,0xf6,0x12,0x36,0x75,0x51,0xdb,0x5f,0xa4,0x31,0x92,0x4f,0x78,0x8b,0x40,0x29,0x02,0xa7,0x91, + 0x94,0x18,0x90,0xee,0x85,0x7f,0xac,0x47,0x3c,0x4e,0x4f,0x22,0xbe,0x43,0x29,0x49,0xc7,0xa9,0x71,0x7a, + 0xaf,0xa3,0xce,0x8d,0x78,0x75,0x34,0x26,0x4e,0xae,0x3e,0xb1,0x3b,0x76,0x83,0x71,0x4b,0xb8,0x53,0x7a, + 0x58,0x64,0xcd,0x45,0x39,0xe5,0x47,0xb9,0xee,0x1a,0x4f,0x13,0x1d,0xed,0xa0,0x7f,0x62,0xb6,0x87,0xd3, + 0x77,0x6d,0x80,0x21,0x98,0x79,0x98,0xaa,0x81,0x89,0x64,0xce,0x16,0x0f,0xa6,0xfd,0x4b,0x62,0x69,0x92, + 0x5f,0x45,0x5d,0x5a,0xa9,0x79,0xa5,0x66,0x5d,0x65,0x6d,0x97,0xe6,0x06,0x04,0x10,0xce,0x9e,0xe2,0x72, + 0x2b,0xe2,0x7d,0x71,0xae,0x71,0x1c,0x39,0x36,0x9f,0xe9,0xa1,0x59,0x89,0xca,0xb3,0x01,0xc5,0x41,0xbc, + 0xfa,0xef,0x51,0x34,0x6f,0x91,0x85,0x7e,0x5e,0xf8,0x03,0x22,0x8a,0x1b,0x43,0x3e,0x57,0xb1,0x75,0x2b, + 0x7c,0x43,0xe4,0x7b,0x7a,0x9e,0x3d,0xbd,0x48,0x8b,0x22,0x9b,0xaf,0xd7,0xbb,0x9f,0xc2,0x76,0x12,0xe8, + 0x6e,0x73,0x47,0x53,0x3b,0x87,0xd0,0x5a,0xdd,0x54,0x2b,0x9c,0xc1,0x7c,0x6d,0x53,0x3b,0xd7,0xca,0x99, + 0xc2,0x9e,0xfe,0x19,0x07,0xc0,0x1f,0xe0,0xec,0xe7,0x6c,0x4b,0x2e,0x2b,0x46,0x7d,0xed,0x8a,0xd4,0xa2, + 0x4a,0x2e,0x69,0x9a,0xe9,0x30,0x7a,0x38,0xd2,0x0f,0x87,0x43,0x70,0xa8,0x5c,0x2a,0xf9,0x41,0xb5,0xab, + 0x5f,0xa0,0x48,0xdd,0xe8,0x4a,0x20,0xec,0xd9,0xdc,0x31,0xa9,0x84,0xb3,0x17,0x79,0xcd,0xf3,0xa9,0x1f, + 0xb5,0x85,0xef,0x79,0x95,0xe8,0x04,0x73,0x11,0x30,0x91,0xd2,0xab,0x56,0x2b,0xe7,0x95,0xdc,0xaa,0xfc, + 0x43,0x44,0x3c,0x65,0xcb,0xa9,0xf1,0xdc,0x84,0x4d,0xa6,0x0f,0xe6,0x15,0x03,0xc5,0x4d,0xa5,0xce,0x64, + 0x68,0xc4,0x8c,0x9d,0x56,0x1d,0x41,0x93,0x16,0xa7,0x0e,0x02,0x1b,0x90,0x9a,0x85,0x57,0x84,0xa1,0x82, + 0xff,0xc7,0x56,0xeb,0x19,0xc0,0xc5,0xca,0xae,0xe2,0x2c,0xf2,0x0a,0x55,0x08,0x77,0x2b,0x85,0x8a,0xbb, + 0x0a,0x19,0x5b,0x3b,0x56,0xc7,0x67,0x49,0xd5,0x2a,0xa7,0x60,0x18,0x01,0xc1,0xe6,0x56,0xdc,0xc0,0x86, + 0xd9,0xcf,0x4a,0x6e,0xa3,0x3a,0x62,0x48,0xfd,0xc4,0x7f,0xaf,0x39,0x98,0xd4,0x53,0x86,0xda,0xc7,0xfc, + 0xf7,0x23,0xce,0x8e,0x7b,0xf8,0xf3,0xae,0x8f,0x2e,0x36,0xe7,0xdc,0x02,0xf1,0xdf,0xd9,0x33,0xe2,0x94, + 0xb1,0x15,0xd1,0x62,0x72,0x8e,0xb9,0x04,0x63,0x33,0xcc,0xc9,0xd5,0x38,0xd4,0x67,0x22,0x1d,0x8a,0xbb, + 0xbb,0x15,0x3f,0xc8,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0x92,0x10,0x0f,0x8d,0x93,0xf0,0xa0,0x19,0x1a, + 0xa2,0xfc,0x38,0x09,0x0f,0xfa,0x40,0xe2,0xca,0x5c,0x1d,0xee,0x53,0xef,0x0b,0x4d,0x65,0x4e,0xce,0x0c, + 0x95,0x4e,0x6c,0xd2,0xde,0xde,0x3d,0xdd,0x90,0xc4,0x7a,0xb3,0xd4,0xeb,0x34,0xa7,0x73,0xdf,0xd5,0x63, + 0x8f,0x71,0xb0,0x52,0x9a,0x98,0xcf,0xae,0x9e,0xf9,0xef,0x94,0xf9,0x8a,0x10,0x95,0x06,0x08,0xaf,0x48, + 0x37,0xd5,0x69,0x10,0x20,0x6e,0xef,0x89,0xa0,0xd0,0x8c,0xb9,0x1c,0xd1,0x20,0x0d,0xc6,0x12,0x87,0xfe, + 0x6b,0xc7,0xe7,0x67,0xf7,0x7d,0x21,0x62,0x0b,0x03,0xe6,0x70,0x58,0xd3,0x81,0x58,0x86,0x81,0xbb,0xe2, + 0xb2,0xe7,0xc0,0xec,0x39,0x84,0x5b,0xe8,0x73,0x94,0x25,0xfa,0x2c,0x76,0x77,0x4f,0x6d,0xd8,0xf5,0xca, + 0xeb,0x0f,0xee,0xff,0xeb,0xeb,0x5d,0x04,0xc7,0x7d,0xe5,0x51,0x42,0x76,0x2a,0x8d,0x89,0x99,0xf9,0x0c, + 0xe1,0x71,0xde,0xf9,0x27,0x7d,0x87,0x3e,0x97,0x4f,0x95,0xc7,0x38,0xfe,0x53,0xc7,0x1a,0xb2,0x49,0x91, + 0xc7,0xd2,0xc9,0x65,0xd5,0x0c,0xa5,0x89,0x06,0x50,0x0e,0xeb,0xd7,0x24,0x5e,0x3f,0xf5,0x55,0x74,0xca, + 0x8a,0x56,0x8c,0x31,0xb8,0x81,0xa0,0xa8,0xb9,0xa8,0xca,0x2b,0x3a,0x40,0x7e,0x62,0xad,0xf6,0x7d,0xf9, + 0x6c,0x87,0xa6,0x6e,0x47,0xc3,0xf4,0x0e,0x22,0xe6,0xb6,0x97,0x13,0x16,0x29,0xd1,0x86,0xf0,0x11,0x55, + 0x7e,0x73,0x6b,0xe1,0x72,0x30,0xf8,0x3d,0x6c,0x75,0x11,0xfd,0x2f,0x97,0xa1,0x9e,0x1e,0x48,0x00,0x8a, + 0xd5,0x12,0xb0,0xe4,0xa2,0xf5,0xd1,0x31,0xd2,0x9a,0x13,0xe1,0x90,0x7b,0x1c,0x76,0x32,0x82,0xe2,0x51, + 0x1b,0xd8,0x20,0xb3,0x08,0x61,0x12,0x17,0x76,0xd2,0x25,0x2a,0x59,0x0b,0x7a,0x0d,0xab,0xef,0x83,0xb0, + 0xfd,0xde,0x48,0x09,0x64,0xe3,0x46,0x9d,0x2e,0x79,0xfd,0xfe,0x0c,0x7b,0x8e,0x2d,0x63,0x20,0x2c,0x03, + 0x5f,0xa0,0xfb,0x6d,0x33,0xc1,0x62,0xf4,0xf5,0x9f,0xc6,0x85,0xcb,0x1a,0x9c,0xd4,0x41,0x8b,0x07,0xb4, + 0x6b,0x86,0xeb,0xee,0xc8,0xdf,0x7d,0xed,0x9a,0xb6,0x76,0x61,0x27,0x41,0xa4,0x2f,0x61,0xa4,0x5c,0x85, + 0xb5,0xb7,0xd3,0xfd,0x89,0x6a,0xef,0xf9,0xa2,0x3d,0x89,0x26,0x02,0x66,0x67,0x86,0x44,0xe2,0xb0,0x25, + 0x9d,0xe1,0x4d,0xe0,0x21,0x99,0x5d,0xbd,0x17,0x80,0xa5,0x24,0xbd,0x5a,0x51,0xe1,0xf8,0x8e,0xc5,0xd6, + 0x51,0xae,0x93,0xe4,0x1a,0x17,0x52,0x33,0xdc,0xf2,0x13,0x50,0xd7,0xe3,0x96,0xe9,0xdf,0x51,0x65,0xad, + 0x11,0x47,0xc5,0x37,0x1f,0xab,0xc1,0xe0,0xa8,0xe2,0x0b,0xd8,0xa6,0xdf,0x70,0x4d,0x51,0x41,0x0b,0x42, + 0x85,0x74,0x6c,0xeb,0x62,0xef,0x50,0x1d,0x40,0x86,0xc3,0x07,0xdd,0x91,0xb9,0x27,0x33,0x1a,0x3d,0xc5, + 0x2e,0xc7,0xc9,0x70,0xa0,0x5e,0x86,0xab,0x8c,0x9d,0xeb,0xb4,0xac,0xa6,0x35,0x5e,0xea,0xb6,0x3f,0x58, + 0x18,0xab,0x3b,0xcc,0x6a,0x62,0xa8,0xb8,0x6d,0xcf,0xb6,0x46,0xbb,0x5a,0x8e,0xc6,0x48,0x62,0xbd,0xce, + 0xf9,0x22,0x3c,0xbb,0x75,0x5a,0xd0,0x22,0x3e,0xa0,0xa6,0xd6,0x16,0x7f,0x25,0x5b,0xb6,0xd2,0x9b,0x6e, + 0x72,0x26,0xfb,0x5b,0x6f,0x7f,0xb6,0x75,0x75,0x22,0xd4,0x9f,0xc2,0xcc,0x30,0x61,0xea,0xbe,0xb1,0xd4, + 0xf8,0x53,0x3b,0x5b,0x2e,0x5e,0xbf,0xb3,0x85,0x4d,0x67,0x3a,0x32,0x74,0xb1,0x0f,0x00,0x3c,0x84,0xc8, + 0x13,0xe1,0x9f,0x38,0x10,0x63,0xb4,0x6a,0xd9,0x16,0xa1,0xfd,0xd1,0x0e,0xf3,0xb7,0x96,0xfe,0x3c,0xec, + 0x2e,0x55,0x43,0x70,0x3f,0x2d,0xaf,0x3e,0xbb,0x5e,0x7a,0x70,0x08,0x23,0xf4,0x24,0x23,0x9a,0xef,0x99, + 0xd1,0x1d,0xad,0xd7,0x76,0xe4,0xee,0x88,0x17,0xe6,0x75,0xf4,0x97,0x3a,0xd7,0xd9,0xdb,0xa3,0xd6,0x41, + 0x7c,0xb8,0x11,0x9e,0xed,0x39,0x11,0x26,0x59,0xb1,0x5a,0x64,0x46,0x96,0xa3,0x3a,0xb2,0x1d,0x28,0x6c, + 0xe2,0x73,0x55,0xe3,0xef,0x46,0xbd,0xa7,0xe2,0xd8,0x61,0x60,0xcc,0x47,0x4f,0xb3,0xf0,0xb1,0x27,0x6d, + 0x15,0x2e,0xff,0x57,0x2a,0x81,0xa0,0x02,0x3e,0xcf,0xac,0x29,0x1a,0x3e,0xfe,0xfa,0x63,0x06,0xf4,0x04, + 0x05,0xc8,0x6b,0x3b,0x25,0x51,0x5f,0xd8,0x80,0xa4,0xd5,0x80,0xbb,0xec,0x3b,0xb9,0x3d,0x65,0x39,0x8f, + 0x94,0xc6,0x08,0xb4,0x2f,0xf3,0x55,0xa5,0xb4,0xc3,0xfe,0x8f,0x05,0xab,0xa4,0xcd,0xeb,0xf3,0xf9,0x22, + 0xae,0x84,0x63,0x23,0x52,0x33,0x9b,0xe1,0x3d,0x97,0xf7,0x0d,0xbb,0x8b,0xb2,0x83,0x79,0xdb,0xbe,0xc7, + 0xc5,0x08,0x91,0x8b,0x6b,0xb4,0x61,0x4f,0x32,0xd1,0x0f,0xaa,0xee,0xda,0xf2,0x50,0x56,0x27,0x85,0x30, + 0x23,0x24,0x55,0xdb,0xfe,0xfb,0x88,0x68,0x40,0xac,0x1b,0xfc,0xec,0xa2,0xe1,0x3d,0x56,0x44,0x86,0x20, + 0x55,0x33,0xea,0x98,0x16,0xd4,0x79,0x17,0x36,0xe9,0xfe,0x21,0x34,0xc0,0xe3,0xb9,0xc5,0x05,0x88,0x20, + 0xfa,0x2b,0x80,0x32,0xe3,0x50,0x0e,0x61,0xa9,0x4a,0xda,0x44,0xca,0xbc,0xc7,0x6d,0x66,0xcb,0xb8,0xe4, + 0x6d,0x05,0x5a,0xd8,0xed,0x23,0x4d,0xa5,0xfe,0xdd,0xdd,0x30,0xc7,0xda,0x99,0xc8,0x09,0xc3,0x53,0x19, + 0xfa,0x53,0x2d,0xae,0x5d,0xaf,0x4d,0x78,0x56,0x67,0xda,0xc7,0xe5,0xbd,0x77,0xbe,0x69,0x41,0xdb,0x45, + 0xba,0x7a,0xbc,0x55,0x4a,0x2a,0xa2,0x74,0x25,0x3c,0x17,0x3f,0x9e,0xea,0x4b,0xb9,0x43,0xf3,0x68,0xc4, + 0xa9,0x7c,0xd1,0xd3,0x5d,0x5d,0x49,0x72,0x64,0xca,0xc5,0x1c,0xe6,0x86,0xa3,0xf6,0x35,0x67,0x97,0xb8, + 0x67,0xe3,0xde,0xdc,0x98,0x2f,0xe1,0x16,0x01,0x4a,0x6a,0x60,0xdc,0x62,0x2b,0x15,0x93,0xcb,0xdb,0xb4, + 0x1a,0xb6,0x84,0x54,0xc6,0x3c,0x58,0x98,0x77,0x04,0xc5,0x41,0x39,0x76,0x39,0xf1,0x86,0x44,0x69,0x50, + 0xb1,0x20,0x3c,0x36,0x22,0x21,0x8e,0x26,0x8f,0xec,0xd6,0x9d,0xb8,0x8b,0xb0,0xeb,0xe3,0x09,0xf1,0xfc, + 0xb8,0xa3,0xfd,0x6d,0xb8,0x52,0xdd,0xb6,0xe5,0xc6,0xbf,0xed,0xf6,0x0f,0xb6,0x4a,0x3e,0x63,0xf1,0xf9, + 0xc6,0x59,0x37,0xcf,0x93,0xed,0x09,0x76,0x71,0x2b,0x3e,0x93,0x87,0x0b,0x8b,0xe4,0x1e,0xcb,0x79,0xb4, + 0x29,0x79,0xe2,0xef,0xc1,0xb2,0x81,0x26,0x12,0xf7,0x2e,0x7a,0xa1,0xbc,0x29,0x83,0xa6,0x61,0xa2,0x15, + 0xe5,0xec,0x45,0xdf,0xf4,0x6c,0xdb,0x9e,0xad,0xac,0xbc,0x30,0x1b,0xf4,0x6c,0x57,0x01,0x10,0xe7,0x22, + 0x78,0x6c,0x94,0x84,0x0e,0xeb,0x3d,0xba,0xcd,0xfd,0x7b,0x45,0x5f,0xfd,0xa3,0xa2,0x15,0xad,0x2d,0xf4, + 0x5f,0x31,0x7b,0x1c,0x9d,0xc1,0x2a,0xfc,0xd9,0xc0,0xad,0xbd,0xa5,0xf8,0x62,0x69,0xf7,0xcd,0x98,0xef, + 0x71,0xaa,0x70,0x6d,0xb4,0xc5,0xa7,0xc4,0xe8,0xc9,0x91,0x5e,0x45,0x51,0x5c,0xa3,0xc2,0xdd,0x03,0x1d, + 0x8c,0xaa,0xda,0x28,0x6d,0x19,0x70,0x47,0xd7,0xbb,0xdd,0x6d,0x5a,0xd8,0x8f,0xdd,0x46,0xdb,0xfd,0xb1, + 0xf2,0x4a,0xb1,0x7a,0x15,0xd4,0x1a,0x16,0xd2,0x4d,0xb1,0x7c,0x78,0x55,0x38,0x9e,0x2b,0x45,0x8c,0x58, + 0xa6,0xf7,0x6c,0x8f,0x23,0x04,0xd4,0xf4,0xfa,0x7f,0x30,0xf2,0x64,0x9a,0xa3,0x8a,0x18,0x97,0x7b,0xdd, + 0x3b,0xdb,0x21,0xd9,0xc4,0x0d,0xa0,0x36,0x03,0x37,0x3d,0x8e,0x26,0xe8,0x41,0xcb,0xc2,0x41,0xc2,0xee, + 0xd3,0xe8,0xe3,0xc6,0xbb,0xa6,0x19,0xc8,0xe7,0x59,0xd5,0x12,0x55,0xfe,0x4a,0x7b,0xf6,0x55,0x95,0x1c, + 0xaa,0xd7,0x55,0xf2,0x50,0xbd,0x40,0xc3,0xef,0x7d,0xed,0x1d,0xdf,0xca,0xbd,0x2d,0xfb,0x3d,0x5d,0x11, + 0x6b,0xf9,0xa2,0x32,0x1a,0x38,0x9a,0xaa,0x1f,0x57,0x3c,0x4c,0x89,0x18,0xe7,0x21,0xff,0x71,0x1f,0x92, + 0x73,0xb0,0xde,0x91,0x5c,0x31,0x10,0x19,0xf1,0x8c,0x35,0xef,0xe4,0x30,0x24,0x3e,0x46,0x1a,0x99,0x88, + 0x11,0x94,0x2e,0x0f,0xaa,0xe8,0xa2,0x2c,0x9b,0x40,0x47,0x89,0xfb,0x9c,0x5e,0x90,0x23,0x27,0x0c,0x92, + 0xe5,0x49,0x8b,0xd1,0x7a,0xae,0x7f,0xf4,0xb6,0x45,0x92,0xb7,0xb6,0xc8,0xd6,0x2e,0xcd,0xbd,0x5d,0x53, + 0x6c,0xa3,0x3f,0xbb,0x8b,0x90,0x69,0xdb,0x39,0x4a,0xcf,0xe5,0x4e,0x5f,0xd5,0xe8,0x63,0x8b,0x43,0xcd, + 0xea,0xa3,0xcc,0xa4,0xa9,0x2d,0x47,0xc1,0x64,0xcb,0x31,0x27,0x12,0x9a,0x95,0xd0,0x93,0x50,0xdb,0xf7, + 0xdc,0x65,0xed,0xcf,0xb3,0xd0,0xe8,0xe3,0xcc,0xe4,0xd2,0x06,0xe3,0x50,0xde,0x22,0xb2,0x90,0x55,0x94, + 0xb6,0xde,0x57,0xe5,0xb5,0x08,0x06,0x74,0x72,0x9d,0xcd,0x67,0xf2,0xde,0xb7,0x75,0xec,0xc5,0x9f,0x85, + 0x5d,0x0c,0xa6,0xe0,0x11,0x0a,0xd3,0x86,0x02,0xd2,0xe1,0x42,0x0b,0x87,0xe3,0x4c,0xce,0x60,0x40,0x89, + 0x26,0xde,0x23,0x6c,0x61,0xcd,0x4b,0xe1,0x41,0xbf,0x51,0xd7,0x66,0x26,0x97,0xaf,0x64,0xba,0x57,0x95, + 0x25,0x3d,0x8d,0x0b,0x79,0x22,0x62,0x22,0x73,0xdf,0xb0,0xb6,0x53,0x2e,0x7c,0x86,0xd8,0xc7,0x93,0xdd, + 0x30,0x8d,0x91,0x79,0x1b,0xcf,0x24,0x74,0x37,0xed,0x21,0x97,0x72,0x48,0x4a,0xbf,0x5b,0xa4,0x60,0x53, + 0xda,0xc4,0x23,0x08,0x3b,0x2d,0x09,0xf2,0xe7,0x8b,0x4a,0xea,0xfb,0x8e,0xfa,0x2c,0x79,0x28,0x97,0x98, + 0x42,0x58,0xd5,0xb0,0xbd,0x44,0xa2,0xa3,0xa1,0x35,0x9f,0x3d,0x32,0x30,0x79,0x72,0x4f,0xd7,0x1d,0x0d, + 0xca,0x99,0x6d,0xc6,0x27,0xf0,0x72,0x54,0x65,0x59,0xed,0xf4,0xc2,0x9d,0x25,0xb4,0x07,0x7d,0x7b,0xc3, + 0xd1,0x0e,0x2c,0xb0,0x52,0x26,0x02,0xa7,0x7f,0x00,0x35,0x5d,0x50,0x97,0x0b,0x1f,0x7d,0x12,0x23,0xe1, + 0xa3,0xfd,0x74,0xd2,0x32,0xf7,0x56,0xfe,0x75,0xd7,0xef,0xbc,0x8b,0x60,0x11,0x21,0x62,0xc3,0x6b,0xe9, + 0xdb,0x20,0xfe,0xd9,0x6f,0x0f,0xb4,0x26,0x24,0x97,0x1e,0x73,0xc8,0x7c,0xa8,0x5e,0x02,0xa1,0x3d,0x02, + 0x88,0xf2,0x72,0x8f,0xe4,0x90,0x80,0x5b,0x52,0xc2,0xee,0xdf,0x40,0x35,0x5b,0xd3,0xed,0x4a,0x9b,0xd9, + 0x9e,0xc8,0xb6,0x52,0x6d,0x73,0xb6,0x9e,0xa0,0x2c,0xc9,0x45,0xe6,0x13,0x57,0x22,0xe7,0x87,0xf2,0x01, + 0x3e,0x2e,0x3d,0xb4,0x8c,0xf2,0x51,0x74,0xd3,0x13,0xa3,0x9c,0x8e,0x9b,0x7b,0x4c,0x10,0x34,0x12,0x20, + 0x57,0xf5,0x10,0x24,0x77,0x01,0x85,0xe1,0x67,0xe0,0x68,0xdf,0x85,0x80,0x51,0x63,0x3c,0x5e,0x3e,0x8f, + 0xb6,0x1d,0x22,0x64,0x24,0x52,0x59,0x92,0x4b,0xc7,0xeb,0xef,0xa1,0xba,0xb0,0x21,0x4b,0x04,0x1d,0x32, + 0x1b,0x7c,0xab,0xcb,0xa5,0x76,0x5d,0xb3,0x4d,0x97,0xb8,0x97,0x8a,0xf7,0x7e,0x69,0xc2,0xef,0xbe,0x85, + 0xe1,0x34,0x8d,0x9b,0xe6,0xee,0x5e,0xc8,0xf1,0x44,0x22,0xc5,0x9a,0x1b,0xc2,0x66,0x88,0x0b,0xad,0x02, + 0xe9,0x47,0x00,0x52,0xbb,0x13,0x47,0x20,0x4a,0xe1,0x6e,0xdf,0x33,0x53,0xec,0xfc,0xa4,0x49,0x4b,0x98, + 0x65,0x8b,0x46,0xa6,0x3b,0x07,0xdd,0xd1,0xbb,0x80,0x38,0x52,0x3b,0xdf,0xe6,0x22,0x82,0x0b,0xac,0xca, + 0xf8,0x3c,0x5e,0x86,0xa2,0xef,0x93,0x3b,0x9f,0x4d,0xbd,0x68,0x02,0x50,0x39,0xfe,0x1c,0x36,0x15,0xb8, + 0x2d,0x43,0xa4,0x9d,0xb2,0xd6,0xae,0x57,0x8c,0xda,0xee,0xa1,0x67,0x1e,0x9c,0x69,0xf6,0xbd,0x25,0x18, + 0xd0,0x79,0x2c,0x1f,0x50,0x6c,0xc4,0x19,0xe2,0x9a,0xad,0xdb,0x8d,0x5c,0xd2,0x43,0xe7,0x06,0xdf,0xf1, + 0x0c,0xb9,0x1a,0x5f,0xca,0xe6,0x04,0x2d,0x6d,0x78,0xe4,0xf5,0xee,0x90,0xc5,0x79,0xe2,0x43,0xb8,0x1e, + 0xaa,0xb2,0x11,0x19,0x47,0xb9,0x15,0x8d,0xa5,0x49,0x71,0x9c,0x9f,0xc0,0xd5,0x6c,0x46,0x2b,0x88,0x3b, + 0x5a,0xaf,0xf8,0xa6,0x56,0xbd,0x7c,0xe8,0x56,0x80,0x7b,0xb2,0x3f,0x0a,0x05,0x03,0x0e,0x2c,0xfe,0x18, + 0x9a,0x69,0x20,0xf8,0xc2,0x7e,0x6d,0xac,0x8a,0xec,0x2e,0x50,0x3d,0x35,0x05,0x7e,0x32,0xf0,0xde,0x87, + 0x77,0xab,0xe4,0x7b,0x84,0x4a,0x6f,0x45,0xdf,0x68,0x0c,0x77,0xd5,0xe0,0xee,0x98,0xde,0x99,0x2f,0xc7, + 0x65,0x5c,0x42,0xb6,0x31,0x82,0xe4,0x08,0xe3,0x61,0x01,0xf8,0x3b,0xf8,0x6d,0xd2,0x96,0x38,0x57,0xe7, + 0xc4,0xa6,0x13,0x11,0x9b,0x6b,0xd0,0x9c,0x61,0x6c,0x39,0xb3,0x7f,0x0c,0x0a,0xa6,0x6f,0x11,0xfb,0x78, + 0x51,0xff,0x60,0xd3,0xc2,0x0f,0xbb,0xa2,0xe0,0xbc,0xc3,0x3d,0xc2,0xeb,0x5e,0xc5,0x50,0xb6,0x1d,0xc6, + 0xa3,0xf2,0xef,0x82,0x83,0x7b,0x5c,0xe5,0xfb,0xc4,0x2d,0x85,0x8f,0xa8,0xf8,0xa6,0x48,0xe6,0x5e,0x4d, + 0x8a,0xe9,0x9a,0x98,0x05,0xf6,0xe1,0x8e,0x2d,0x18,0xd5,0x3a,0x44,0x1d,0x0f,0xec,0x54,0xbf,0x4e,0xfb, + 0x41,0xb5,0x11,0x88,0x04,0x94,0x6d,0x23,0x50,0x63,0x00,0xac,0x29,0x11,0xdb,0x02,0x5c,0x94,0x24,0x45, + 0x38,0xf0,0x6e,0x2e,0x9d,0x13,0xdb,0x3d,0xc4,0x6d,0x42,0x9f,0xb3,0x81,0x61,0x40,0xda,0x8c,0x6c,0xdc, + 0xa7,0xe2,0xb3,0x85,0x19,0xbc,0xfb,0xad,0x64,0x6e,0x42,0x8f,0x54,0xa6,0xe3,0x43,0x40,0x97,0xf6,0xc7, + 0x9f,0x29,0xac,0xd1,0x54,0x11,0xb5,0xac,0xe5,0xee,0xb1,0x61,0x5c,0x3b,0x49,0x2e,0x72,0x4a,0x9e,0xb7, + 0x53,0xfb,0x14,0xe7,0x72,0xe7,0x91,0x8b,0xe4,0x82,0xc5,0x15,0x9a,0x50,0xee,0x97,0xc6,0x75,0x10,0x72, + 0x8d,0xbb,0x28,0xa2,0x0e,0x4c,0xc8,0x55,0x81,0x5d,0xbf,0xa8,0xf5,0x9d,0xcb,0x9d,0x02,0xb7,0x71,0x32, + 0x41,0x65,0xfc,0x21,0x7c,0xb3,0x99,0xca,0x4a,0xdd,0x38,0x84,0x72,0xf8,0xbe,0x2f,0x40,0x59,0xf2,0xe0, + 0x7f,0x70,0x09,0x7b,0xfc,0x60,0xd4,0x1a,0x4e,0xd9,0x32,0x46,0x97,0x91,0x74,0xed,0x44,0xa2,0xb6,0xcd, + 0x47,0xd6,0xb5,0xf9,0xd0,0xd0,0x41,0x15,0xc0,0x17,0x58,0x8b,0x67,0x04,0x66,0x34,0xed,0x75,0x9c,0x9d, + 0x18,0xad,0x81,0x4b,0xf1,0x82,0x40,0x15,0xd8,0x90,0x5a,0xdb,0x04,0x4e,0x8e,0x0b,0xb6,0x09,0x33,0xab, + 0x98,0x64,0xf8,0x68,0xdb,0x3a,0xde,0x2b,0x3b,0x42,0xb1,0xc6,0x33,0xce,0x94,0x19,0xba,0x57,0xce,0x66, + 0x3c,0x40,0x65,0xac,0x84,0x2a,0xef,0xea,0xb4,0x8d,0xde,0xd9,0x54,0xb3,0xe7,0xbd,0x48,0x94,0xb5,0xaa, + 0x64,0x60,0xf8,0xb0,0xea,0x36,0x3a,0x9b,0x75,0xda,0x04,0x2b,0xda,0x35,0x5a,0x8a,0x5a,0x50,0xfd,0x19, + 0x52,0x94,0x1b,0xef,0x9b,0xfd,0x8e,0x97,0xd6,0x76,0x50,0x43,0x99,0x7e,0x8c,0x0f,0xc7,0x5e,0xd3,0x9e, + 0x28,0x41,0x48,0x9d,0xa9,0x6f,0x5f,0x5a,0x61,0x5a,0x76,0x26,0x1d,0xdd,0x95,0x92,0x8b,0x03,0x74,0xb1, + 0xc6,0xc2,0x43,0xe9,0x5f,0x72,0x99,0xe2,0xa4,0xa1,0xec,0xb0,0x4c,0x72,0x58,0x68,0xc0,0x6e,0x01,0xd7, + 0x17,0xcd,0x8a,0xce,0x55,0x97,0xe9,0xd6,0x55,0x97,0x3d,0x2b,0x9a,0x2d,0x3a,0xfc,0xaf,0x93,0xd7,0x33, + 0xc7,0xd3,0x1e,0x4b,0x01,0x07,0x32,0x73,0xe8,0x7d,0x73,0x38,0x06,0x44,0xc5,0x85,0xc7,0xd7,0x5f,0x84, + 0x76,0x5d,0xa8,0x75,0x02,0xe2,0x03,0xf6,0x78,0x35,0x18,0xfa,0x51,0xc9,0x58,0x9a,0x6f,0xe9,0x22,0x14, + 0x6d,0xec,0xc8,0x80,0x9d,0xad,0x83,0xcf,0x4f,0x21,0x91,0x7d,0xea,0x3e,0xb7,0xbb,0x73,0x21,0xee,0x03, + 0x2c,0xdd,0x87,0x93,0xb4,0xc8,0xf1,0x9d,0x92,0x4d,0x36,0x61,0xf8,0xa6,0x4a,0xe8,0xd7,0xe7,0xeb,0xbb, + 0xaa,0x1b,0x21,0x20,0x34,0x33,0xaf,0x59,0x9e,0xc1,0xa0,0x43,0xe1,0x6a,0xff,0x0b,0x13,0xe7,0x50,0x16, + 0x3c,0x9b,0x2b,0xad,0x8f,0x16,0x7e,0x83,0x06,0x75,0x55,0x8d,0xae,0x2a,0x9f,0x85,0x14,0x9e,0x82,0xd8, + 0x88,0xb1,0xf9,0xc6,0x98,0xc4,0xb1,0x24,0xf4,0xf4,0x94,0x76,0x41,0x16,0x69,0x3d,0x70,0x4f,0xae,0x6d, + 0x89,0x63,0x72,0x1c,0x76,0x4e,0x09,0x8f,0xb7,0xef,0x64,0x08,0x77,0xdf,0x3d,0x55,0x7c,0xc1,0x40,0x5f, + 0x79,0x13,0x43,0xbb,0x4a,0x72,0xbe,0x1d,0x91,0xf8,0xf5,0xd3,0xcb,0x55,0x76,0x7a,0x9a,0xb8,0x1d,0x82, + 0xde,0x18,0x0c,0x41,0x8f,0xb6,0x84,0xc7,0x4f,0xdf,0xd3,0x72,0x52,0x79,0x91,0x36,0xcd,0x9b,0x4c,0x88, + 0x56,0x0d,0xe9,0x3c,0x27,0x58,0x6d,0xa5,0xda,0xe9,0xb8,0xc7,0xe7,0xdd,0x1b,0x5f,0xcb,0xe1,0x4b,0xfb, + 0xb6,0xb4,0x30,0x86,0xd2,0xd7,0x6d,0x9a,0x57,0xcf,0x4e,0xb8,0x5d,0x97,0x96,0x13,0x75,0x34,0x26,0xbb, + 0x06,0x28,0xda,0x5c,0x6e,0x74,0xdb,0x81,0x0d,0xe3,0x82,0x13,0xa9,0xfe,0x0f,0xdc,0xcd,0x94,0xfe,0xe8, + 0x46,0xbb,0xac,0x7b,0xe8,0xd1,0xc0,0xb4,0x57,0xc6,0x88,0x0b,0xa0,0x99,0xf1,0xb8,0xfc,0x96,0xf8,0xe2, + 0x8e,0xe1,0xba,0x33,0x69,0xe4,0x2c,0xe9,0x5a,0x45,0xac,0x14,0xb8,0xb1,0x0a,0x1c,0x9b,0x05,0xc3,0x6a, + 0xaf,0x06,0x47,0x40,0x68,0x73,0x4e,0xd3,0x9a,0x97,0x64,0x8c,0x1f,0xf7,0xf7,0xed,0x54,0xf8,0xb3,0xa0, + 0xfa,0x60,0x5b,0x6f,0x1d,0x81,0x2f,0x3b,0xb3,0xce,0x99,0xc9,0x82,0x30,0x61,0xd7,0xcf,0x03,0xa0,0x0f, + 0xa2,0x6d,0x78,0x6a,0xc9,0xea,0xc5,0xdc,0x7e,0xa3,0x9e,0x66,0x61,0xf8,0xb6,0x83,0x1d,0x22,0xf5,0xb6, + 0x05,0x18,0x05,0xb1,0xfc,0x47,0xf9,0xa4,0x6d,0xfa,0xa8,0x51,0xcc,0x4b,0xad,0x6c,0x24,0x68,0x6a,0x7d, + 0xa4,0x65,0x02,0x3e,0x30,0xb9,0xd5,0x57,0x5b,0x82,0x23,0x2d,0xe6,0xda,0x12,0xf4,0xb1,0x56,0xc2,0x61, + 0xa4,0xa8,0x45,0xa8,0x1b,0x29,0x84,0x73,0x66,0x96,0x77,0xb0,0x17,0xb8,0x85,0xc5,0xb8,0xa6,0x11,0xf6, + 0x3f,0x3e,0x38,0x19,0x0c,0xf0,0x17,0x0a,0x9c,0xc8,0x13,0xa1,0x83,0x74,0x7f,0x4c,0x4c,0x25,0x24,0xc5, + 0x9b,0x8e,0xd4,0xa2,0xb2,0x1a,0x8a,0x96,0xfa,0x44,0xf4,0x14,0x5a,0x1f,0x22,0x7c,0x29,0x1b,0x60,0x20, + 0x60,0x81,0xd0,0xb8,0x2d,0x51,0xda,0x96,0x24,0xc3,0x33,0xc9,0xf8,0x89,0x2f,0x47,0x0d,0xa4,0x34,0xdf, + 0x4c,0x64,0xa4,0x36,0x06,0x85,0xa7,0x34,0x50,0x11,0x49,0x23,0x9a,0x3e,0xb8,0x0d,0x6a,0xa6,0x0a,0x39, + 0xce,0xa7,0x51,0xbb,0x28,0x4d,0xcd,0xbe,0xad,0x68,0x47,0xab,0x0f,0x55,0x72,0xac,0x7d,0x25,0x3f,0x64, + 0xe7,0xcf,0xaf,0x97,0x62,0x6f,0x7b,0xa2,0x7e,0xaa,0x92,0xdb,0xef,0x8d,0xf8,0x3a,0xd6,0x61,0x4e,0xfc, + 0x68,0xd6,0x66,0x93,0xb1,0xc2,0x4e,0x22,0x5d,0xe4,0xc5,0x64,0xbe,0x9a,0x66,0xf1,0x07,0xc2,0xcf,0xd7, + 0xf6,0x71,0x91,0x5e,0xc7,0xa6,0x0d,0xb9,0x7f,0xe7,0x04,0x46,0x85,0x4c,0xc3,0xc7,0x5d,0x34,0x34,0x49, + 0x69,0x23,0xdd,0x49,0x69,0x30,0x4f,0x09,0xef,0x0d,0x65,0x81,0xbd,0xe5,0xda,0x62,0xb4,0xad,0xcc,0xf9, + 0xd8,0xea,0xa2,0xd7,0x46,0xa2,0x89,0x37,0x95,0xb9,0xaa,0x08,0x0e,0x79,0xeb,0xba,0xae,0xfb,0x40,0xfb, + 0x4a,0xef,0x2c,0x27,0x4b,0xb2,0x80,0xfc,0x4c,0x4b,0xd2,0x20,0x7a,0xba,0xfe,0x2b,0x5f,0xee,0xba,0x2f, + 0x37,0x6a,0x3b,0xe2,0x80,0x8f,0xf3,0x18,0xe2,0x86,0x3a,0x16,0x18,0x6d,0x82,0x7f,0x8a,0xa9,0x30,0x7b, + 0x34,0x6c,0x49,0x9e,0xfd,0x80,0x9c,0xbf,0xe2,0xa2,0x04,0xa5,0xc9,0x27,0x3d,0x30,0x18,0x9a,0x8b,0x12, + 0x9f,0x5f,0xf9,0xae,0x4c,0x02,0xec,0x5d,0x82,0x11,0x74,0x29,0x47,0x30,0x08,0x82,0x7c,0x82,0xe1,0xc1, + 0xe0,0x19,0x2e,0xf6,0x76,0x91,0xfd,0x1b,0x13,0x24,0xc8,0x4d,0xa1,0x36,0x06,0xc1,0x14,0xaa,0x89,0x11, + 0x63,0xf0,0xf5,0xca,0x85,0x44,0x77,0x9f,0xe4,0xd3,0xbd,0x50,0x22,0x56,0x04,0x71,0x8c,0x58,0x1b,0x1c, + 0x98,0x25,0x80,0x8a,0x01,0x21,0x96,0xd2,0xe3,0xc9,0xc9,0xb8,0x57,0xdb,0x84,0x9c,0x1e,0x85,0xd3,0x5c, + 0x6e,0xcf,0xd2,0x16,0x3a,0x13,0x44,0x59,0x46,0x49,0xa2,0x75,0x6d,0x92,0x2c,0x2b,0x41,0xdb,0x60,0x60, + 0x70,0xf4,0x37,0x36,0x60,0xa0,0xc9,0xa3,0xdd,0xfc,0x1a,0xc4,0x1c,0xee,0x55,0x55,0x2d,0x82,0x23,0x32, + 0xa2,0x16,0xa7,0xb5,0x81,0xb4,0xc7,0x4c,0x02,0x1d,0x3c,0x83,0x41,0x46,0x5f,0x11,0xaf,0xd2,0x13,0xb1, + 0xf8,0x73,0x7c,0xe4,0xf3,0xe2,0x4e,0x8e,0x90,0x98,0x59,0xd6,0xde,0x33,0x23,0x98,0x0d,0x57,0x4d,0x3e, + 0x4f,0x6e,0xe1,0xe9,0x19,0xff,0x4c,0x78,0xe3,0xba,0x21,0x00,0x41,0x34,0x59,0xd8,0x66,0xeb,0x95,0x8e, + 0x5f,0x2b,0xa9,0xe4,0x83,0x68,0x70,0xb2,0xf8,0x1e,0x88,0x50,0xc3,0x09,0x7a,0xec,0x9f,0x45,0xc4,0x2f, + 0x95,0xbd,0xf4,0xa1,0x77,0x67,0xf5,0x59,0x5f,0xb3,0x08,0xcb,0xdc,0x14,0xd1,0x88,0x11,0x76,0x9f,0x0b, + 0x56,0xe4,0xea,0x1e,0x9e,0x9e,0xa5,0x35,0xe8,0x36,0x5c,0x7b,0x6a,0xd2,0xec,0x4a,0xd6,0x84,0x51,0x78, + 0x88,0x75,0x76,0x07,0x85,0x0c,0x21,0x3b,0xad,0x36,0x2e,0x1c,0x79,0x3f,0x5f,0x9d,0xe7,0x1c,0x7f,0xb5, + 0x3f,0x83,0xef,0xdc,0xe3,0xd0,0xa0,0xc6,0x23,0x32,0xc3,0xed,0x15,0x2d,0xd6,0x40,0xa8,0xce,0x36,0x09, + 0xed,0xd8,0x24,0xed,0x3d,0xa1,0x45,0x0b,0x3d,0x32,0x08,0xc4,0x20,0xe1,0x46,0xc7,0xf6,0x49,0x13,0xd8, + 0x1c,0x5d,0xab,0xef,0x0b,0x68,0xb3,0xbc,0x2b,0xcb,0x98,0x6b,0xf3,0x0d,0xca,0xb0,0x4e,0x8b,0xfc,0x3a, + 0xef,0x75,0x96,0xe6,0x81,0x3a,0x25,0x8c,0xff,0xaa,0xec,0xf7,0x6d,0xe1,0x2c,0x6d,0xb2,0xe4,0x40,0x4b, + 0x65,0x0f,0x89,0x41,0x16,0x78,0x69,0x55,0x9e,0x25,0xac,0xb8,0xf1,0x48,0x70,0x08,0xe7,0xf1,0xa5,0x5c, + 0xbc,0x8b,0xcd,0x2a,0xf7,0x1a,0xe2,0x89,0xe5,0x78,0xc0,0x0c,0x50,0x14,0x1a,0x03,0x74,0xe3,0xab,0x82, + 0x13,0x53,0xae,0x63,0xb4,0xa1,0x54,0x24,0xca,0x76,0xda,0xa3,0xf1,0x83,0x22,0x90,0x3d,0x22,0x74,0xc0, + 0x80,0xd4,0x1d,0xf6,0x5d,0x30,0xf2,0x28,0x89,0xc8,0xd7,0x39,0x25,0x29,0xe2,0x55,0xd3,0x10,0x71,0x43, + 0x7c,0xea,0x4d,0x4d,0xe1,0xcf,0x0b,0x9d,0xb6,0xab,0x25,0xf4,0x34,0xae,0xc8,0xb6,0x50,0xda,0x49,0xa3, + 0x3e,0x2b,0x93,0x85,0x4c,0xd1,0x97,0xba,0x9c,0x5a,0xa9,0xcb,0x06,0x77,0x9d,0xa4,0x2d,0xa0,0xee,0x4a, + 0x13,0xb7,0xdb,0x30,0xa5,0xba,0xcd,0xcc,0xda,0xcd,0x18,0xb1,0xbc,0x34,0xa1,0xd7,0xb0,0xd0,0x0f,0x94, + 0x22,0x10,0x53,0xc8,0x2f,0xbd,0x63,0x03,0x15,0xf8,0x7b,0x97,0xd7,0x44,0xca,0xbc,0x2f,0xc7,0x9c,0x55, + 0x72,0x83,0xcb,0xf6,0x66,0x64,0x37,0x04,0x3b,0x7b,0xc6,0x1b,0xce,0xcd,0xac,0xe9,0x88,0xc9,0xc9,0xf8, + 0x62,0x98,0x94,0x76,0xa0,0x75,0xbf,0xc3,0xa5,0xbc,0xa9,0xd3,0xba,0xe6,0xec,0xe0,0x44,0xc4,0xc5,0x46, + 0x8e,0xa9,0x3b,0xbb,0x87,0x9e,0x75,0x22,0xf9,0x58,0x9f,0x92,0xd0,0x8b,0x08,0x20,0x7e,0x62,0x65,0x58, + 0x70,0x40,0x14,0x06,0xb5,0xa4,0xd0,0x10,0x68,0xad,0x59,0x5b,0xa8,0x47,0xf7,0x99,0x23,0xd9,0x78,0xe1, + 0x04,0xa4,0xa2,0x9e,0x0d,0xcb,0xdc,0x5a,0x72,0x8b,0xe8,0x96,0x71,0xa1,0x74,0xec,0xf3,0x62,0x63,0x5c, + 0x7d,0x34,0xf2,0x13,0x0f,0x14,0x58,0x14,0x16,0xec,0xed,0xd2,0x9b,0xb7,0xd1,0x2e,0x53,0x85,0xb0,0xd0, + 0xfd,0xd8,0xfe,0x7d,0x5b,0xa6,0x97,0xd7,0x1f,0xc5,0xd7,0x58,0x1c,0xa3,0xbf,0x47,0xcb,0x7f,0xea,0xc3, + 0xba,0xae,0xb4,0x6b,0xe4,0xb6,0x4f,0xb5,0x8f,0x4d,0xda,0x2c,0xa5,0x10,0xf4,0xee,0x5b,0x58,0xbe,0x53, + 0xc5,0xf0,0x7b,0xcb,0x61,0x7b,0xfd,0x70,0xf8,0xd5,0xf0,0xf0,0x0b,0x09,0xd3,0xf2,0xa4,0x52,0x3f,0x56, + 0xea,0x87,0x4a,0xbd,0xac,0xd4,0xef,0x95,0xfa,0xad,0x52,0xdf,0x57,0xea,0xbb,0x4a,0x7d,0x5b,0x71,0x38, + 0x0d,0xbe,0xf7,0x59,0xdf,0xf9,0xaa,0x7e,0xe6,0x34,0xbe,0xdb,0x46,0xa1,0x5e,0x22,0x33,0x53,0x25,0x13, + 0xa4,0xe4,0x7e,0x1f,0x90,0x87,0xe7,0x30,0x1d,0xa4,0xd2,0xff,0xee,0xda,0xce,0xdb,0x10,0x49,0xf6,0x7e, + 0x73,0x5a,0x96,0x9f,0x2b,0x16,0xa9,0x05,0x12,0xd1,0x18,0x8e,0x17,0x0d,0x82,0xb6,0xe8,0xdb,0x82,0x74, + 0xa1,0x40,0x1a,0xe1,0xf5,0xa5,0x5c,0xa2,0x4b,0x26,0x9f,0x5c,0xa6,0x5c,0xb6,0xa3,0xf3,0x6c,0x1c,0x75, + 0xe4,0x40,0xec,0x5c,0x72,0xce,0x46,0xfd,0x8b,0x3b,0x3f,0x91,0xcb,0xde,0xb3,0x69,0xde,0xc0,0x88,0x4e, + 0x4d,0xab,0xf4,0xfc,0x9c,0x9f,0xea,0x65,0x36,0x9f,0x73,0xcd,0xd4,0xf7,0x7f,0x72,0x61,0x3a,0x08,0xca, + 0xab,0x19,0x21,0xf8,0x9a,0x30,0x18,0x31,0x95,0xec,0x92,0xa9,0xd2,0x55,0x53,0xce,0xca,0xc9,0xaa,0xe6, + 0xa7,0xe5,0x3c,0xbd,0x51,0xba,0x43,0x1c,0x78,0x84,0x8e,0x6a,0xd8,0xe9,0x11,0xc9,0x3a,0xaf,0xe9,0xfc, + 0xa6,0xb9,0xab,0x32,0x65,0x48,0x3b,0xfd,0x6b,0xca,0xeb,0x57,0xee,0xb3,0x79,0x31,0x43,0xc7,0x3b,0x71, + 0x3e,0xd3,0xbc,0x46,0xf7,0xa6,0x2a,0x2b,0xe4,0x17,0x11,0x0c,0x8a,0x92,0xa6,0x30,0x07,0x10,0xab,0x8b, + 0x7c,0x3a,0xa5,0xae,0xe1,0x70,0x6c,0xb2,0x6a,0x91,0x17,0x48,0x24,0x88,0xaa,0x1a,0x95,0xd7,0x8b,0x74, + 0xa9,0xf2,0x26,0x5b,0x48,0xa4,0x93,0x79,0x59,0x2e,0x95,0xb9,0x66,0x4a,0x49,0xa3,0x45,0x89,0x50,0x2d, + 0x0a,0xe1,0x25,0xea,0xfc,0x77,0x42,0x51,0x65,0x7d,0x91,0x82,0xe1,0x74,0x2d,0x14,0x25,0xa2,0x47,0xd1, + 0x3a,0x53,0x33,0xcb,0x94,0xb0,0x11,0x6d,0xda,0xeb,0xbc,0x21,0x92,0x36,0x9d,0x96,0xc5,0x1c,0x51,0x55, + 0x7e,0x5b,0xd1,0x16,0x9c,0x2a,0xed,0x5a,0x39,0x55,0xc2,0x16,0x11,0x4c,0xa4,0x8b,0x39,0x01,0x83,0xb2, + 0x63,0x82,0x0f,0x26,0xcf,0xb6,0xbd,0xd8,0x85,0x63,0x83,0xd2,0xdc,0x53,0x26,0x60,0x1e,0x81,0x25,0x38, + 0x56,0xbc,0xba,0xcc,0xeb,0x9c,0x4a,0x22,0x46,0x58,0x9e,0x04,0x17,0x4d,0xb3,0x8c,0x1f,0x3c,0xb8,0xba, + 0xba,0x1a,0x5e,0x7d,0x31,0x2c,0xab,0xf3,0x07,0x87,0x5f,0x7f,0xfd,0xf5,0x83,0xeb,0x79,0x5e,0x7c,0x22, + 0x8a,0x2a,0xef,0x39,0x67,0x83,0xb8,0xe5,0x82,0xf2,0x15,0xa0,0x4c,0xca,0x73,0xb2,0x09,0xd1,0xf3,0x15, + 0x11,0xf6,0x45,0xdf,0xf7,0x3b,0x0d,0x6c,0x72,0xad,0x77,0xc9,0xdf,0x95,0x11,0x6c,0x72,0xcc,0x16,0x55, + 0xf5,0x7e,0x23,0x04,0x32,0x01,0xe2,0xee,0xa1,0x80,0x5d,0x9e,0x27,0xb7,0xf5,0x25,0x11,0xc4,0xdb,0x23, + 0x78,0x78,0x70,0x70,0xf0,0x80,0xf2,0x02,0xe2,0x9b,0x9a,0x8b,0xbe,0x12,0x34,0xc6,0x7f,0x3c,0xc0,0x1d, + 0xa9,0xfc,0xe7,0xcd,0x6b,0x6a,0xb6,0xcc,0x01,0x99,0x17,0xcd,0x62,0xae,0xce,0xca,0xe9,0x8d,0x02,0x36, + 0x54,0x17,0xb4,0x14,0x0a,0x43,0x53,0x88,0x50,0xae,0x64,0xd7,0x36,0x79,0x43,0x7f,0xd3,0xe9,0x14,0xfb, + 0x51,0xa5,0x55,0x93,0x4f,0xf0,0x5e,0xd3,0x9e,0x20,0x20,0x2a,0x71,0x8b,0x27,0xbe,0xc3,0xcf,0xa1,0xba, + 0x78,0xa8,0x2e,0xbe,0x50,0x17,0x5f,0xaa,0x8b,0xaf,0xd4,0xc5,0xdf,0xd5,0xc5,0x79,0x55,0xae,0x96,0xaa, + 0x48,0x2f,0x69,0xed,0x78,0x8c,0x04,0x88,0x97,0x6a,0x4a,0x50,0x39,0x57,0xd3,0x46,0x11,0x1d,0x0b,0x0f, + 0x1b,0xa4,0xb3,0x41,0x6a,0xa6,0x96,0xf9,0x04,0x0e,0x37,0xea,0xa2,0x52,0xf9,0xe2,0x9c,0x3a,0x43,0x83, + 0xa2,0x43,0xac,0x9c,0xab,0x25,0x0c,0x1b,0xd5,0x6a,0xae,0x52,0x75,0x46,0xac,0xe4,0x59,0xa5,0xce,0xa6, + 0x39,0xfd,0x2f,0x15,0x3d,0x4e,0x08,0x3c,0x39,0x0a,0x91,0xe2,0xcb,0xec,0xa7,0x33,0xa2,0x85,0x17,0x2a, + 0x57,0x9f,0xce,0xa6,0x54,0x41,0xf5,0x49,0xfd,0xa6,0xaa,0xa5,0x22,0x60,0xae,0x9a,0x89,0xaa,0x56,0x67, + 0x37,0x44,0xc9,0xd7,0xe9,0x62,0xa9,0x08,0xb6,0x89,0xf0,0xaa,0x97,0x29,0xa1,0x1e,0xda,0x6b,0xc4,0x70, + 0xd6,0xab,0x33,0xfa,0xbf,0xe4,0x7b,0x6d,0xd5,0x4a,0x11,0x72,0x53,0x57,0x67,0x10,0xa2,0x13,0x92,0x4a, + 0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x64,0x3f,0x29,0x46,0x0c,0xd4,0xd2,0x19,0x81,0x9d,0x78,0x83,0xc1, + 0x12,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x41,0x26,0x69,0x71,0x99,0x52,0x4b,0x93,0x2a,0x5f,0x36,0xd8, + 0x14,0xf2,0x40,0x24,0x37,0x0c,0xdd,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65,0xb2,0x34,0x60,0xf3,0x5a, + 0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x50,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xa6,0x04,0x34,0x67,0xd9,0x7c,0x4a, + 0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x51,0xed,0xf3,0xec,0x1c,0xb4,0xc0,0x02,0x9b,0x19,0xa8, + 0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15,0x13,0x0a,0x48,0x73,0x60, + 0x9d,0x3c,0x9d,0x97,0xe7,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b,0x9a,0xd0,0x1b,0xa5,0x31, + 0xa0,0xca,0x44,0xe8,0xa0,0xb0,0xdf,0xcb,0x2b,0x65,0x42,0x67,0x29,0x0e,0x4e,0xf6,0xdb,0xaa,0x04,0x1a, + 0x99,0x55,0xa0,0xfa,0x1a,0x40,0x0b,0x84,0x10,0x0c,0x7a,0x04,0xb0,0x2a,0x2d,0xf2,0x05,0xca,0x4e,0xf2, + 0x6a,0xc2,0xe7,0x43,0xbe,0x5c,0x12,0x80,0xaa,0xc9,0xaa,0xa2,0x1d,0x0e,0xcc,0x05,0xd4,0x57,0x4f,0xa8, + 0x11,0xca,0x22,0x00,0x95,0x28,0x3f,0x34,0xdc,0xa2,0xd9,0x9f,0xa5,0x13,0x00,0x60,0x95,0xe5,0xe7,0x85, + 0x1c,0x82,0xea,0x5c,0x9d,0xcf,0x6f,0x96,0x17,0x04,0x39,0xe9,0x79,0x06,0x40,0xce,0x78,0xf1,0x33,0x48, + 0x14,0x6a,0x02,0xea,0xbc,0xc6,0x2d,0x6b,0xfb,0x52,0x88,0x5b,0xa2,0x3f,0x54,0x21,0x21,0xa4,0x72,0x7e, + 0x73,0x5e,0xca,0x2f,0x7f,0x07,0x52,0x40,0x89,0x2b,0xb5,0xaa,0x39,0xd4,0x06,0xcf,0x0f,0xff,0xe1,0x2f, + 0x1b,0x86,0x19,0x10,0x55,0x97,0x79,0x76,0x25,0x11,0xa2,0xea,0xde,0xbd,0x5c,0x8a,0x4d,0x7e,0xca,0xf7, + 0x87,0xd3,0x58,0x7b,0x39,0xaa,0x15,0x4f,0x8a,0xd8,0x37,0xb2,0xc4,0x83,0x1d,0xce,0xae,0xca,0x8a,0xd1, + 0x5f,0x45,0xbd,0xc8,0x68,0x23,0xa0,0x13,0x73,0xb5,0xaa,0x10,0x3d,0x7b,0x9e,0x77,0x43,0x5b,0xb5,0xa4, + 0x40,0xbd,0xd6,0xbf,0x77,0x84,0xdf,0xb2,0x17,0x29,0xeb,0x03,0x93,0x23,0x94,0x8f,0x8b,0x38,0x6c,0xb4, + 0x21,0x6d,0xe3,0x19,0xd2,0x0e,0x06,0x36,0x5e,0x9a,0x9f,0x6c,0x2f,0x1e,0x84,0x55,0x4c,0xfb,0x22,0x78, + 0x93,0x83,0x88,0x4b,0xe6,0x31,0xe2,0x4b,0x0d,0x5b,0xdd,0x78,0xfb,0xb1,0xd3,0x67,0x3d,0x7f,0xfd,0x9d, + 0x7e,0xfb,0x31,0xcc,0x73,0x84,0xa0,0x6c,0x6c,0x3d,0x47,0x34,0x7b,0xb8,0xb3,0x32,0xee,0x59,0x84,0x4e, + 0x25,0xa6,0xa8,0x2c,0x09,0x27,0xe9,0xb8,0x01,0x7f,0xe2,0x63,0x5d,0x92,0xbf,0x15,0x7b,0xd5,0x27,0x2c, + 0xa2,0xde,0xf2,0x21,0x67,0x3e,0xd0,0x66,0x87,0x72,0x91,0xa3,0xd8,0xec,0xb3,0x31,0x53,0x67,0xbc,0x26, + 0x42,0x08,0xe7,0xe1,0x82,0x10,0x85,0xbb,0x8d,0x8b,0x69,0x7f,0x59,0x2f,0x8f,0xcb,0xba,0x3b,0x3b,0xfb, + 0x86,0x90,0x79,0x77,0x7a,0xd2,0x41,0x45,0xc3,0xff,0x48,0xc7,0x22,0xed,0x86,0xfe,0xc2,0x5e,0x81,0x0d, + 0x2e,0x26,0xe3,0x80,0x4d,0xbd,0x25,0x75,0xe6,0x06,0xee,0x03,0x98,0xd5,0xa7,0x82,0x17,0xb6,0xba,0xdb, + 0xb8,0xbc,0xa4,0xe1,0xd2,0x16,0x42,0x7a,0xe6,0xad,0x05,0x40,0x3c,0x6f,0xb8,0x14,0x87,0xce,0x40,0x59, + 0x81,0x4e,0xed,0x4f,0x32,0x9e,0x01,0x4d,0x8f,0x77,0x5b,0x66,0x18,0x25,0xea,0xe4,0xff,0x6b,0xef,0x4d, + 0xf7,0xdb,0x36,0x96,0x7d,0xd1,0x57,0xa1,0xb0,0x7c,0x6c,0x20,0x84,0x28,0xc9,0x76,0xb2,0x12,0xd0,0x30, + 0xb7,0x87,0x0c,0x4e,0xe2,0x61,0xc7,0x4a,0xb2,0x12,0x89,0xd1,0x86,0x48,0x90,0x82,0x45,0x01,0x5c,0x00, + 0x28,0xd9,0x11,0xf9,0x40,0xf7,0xeb,0x7d,0x84,0xf3,0x64,0xb7,0xfe,0x55,0xdd,0x8d,0xc6,0x40,0xc9,0x4e, + 0xce,0xd9,0xf7,0x7c,0x38,0x2b,0xbf,0x65,0x81,0x3d,0x0f,0xd5,0xd5,0x55,0xd5,0x35,0x54,0x00,0x2b,0x9e, + 0x85,0x9f,0x42,0xae,0x86,0x63,0xcb,0xd5,0xbd,0x6e,0x0d,0x5e,0x5d,0x68,0x43,0xd9,0x89,0x72,0x3b,0xe1, + 0x3a,0x44,0x45,0x6f,0x7c,0x44,0x76,0x59,0x26,0xf0,0x49,0xa6,0xfd,0x8c,0x69,0x05,0x59,0xe3,0x41,0x8c, + 0xfd,0x44,0x60,0x4b,0x2b,0xcf,0x61,0xce,0x98,0x68,0x2d,0x33,0x8f,0xef,0x62,0x3d,0xea,0xef,0xe2,0xce, + 0xfe,0xbf,0x43,0xff,0xd3,0x04,0xfd,0x5f,0x76,0x63,0x8e,0x0b,0x1a,0xc2,0x2c,0xa1,0x46,0xc7,0xfe,0xbc, + 0x6a,0xf8,0x07,0xd3,0xf0,0x0f,0xb4,0x37,0x1f,0xaa,0x8c,0x6f,0x4d,0xc6,0xb7,0x94,0x71,0x9a,0x84,0x7b, + 0x47,0xc7,0x57,0xde,0xa0,0x7f,0xbc,0x7b,0x72,0xe7,0x78,0x3c,0xde,0xf3,0x4f,0x10,0x37,0xe0,0x84,0x78, + 0x8c,0x2b,0xfe,0x98,0x38,0xfe,0x61,0x55,0x9b,0x2e,0x2f,0x55,0x7b,0x49,0x9b,0x78,0x5e,0x65,0x9c,0x99, + 0x8c,0x33,0xca,0x78,0x9f,0x74,0x5a,0xf3,0x72,0xc0,0xba,0xbd,0xc0,0x1d,0xf4,0xbd,0xbd,0x2a,0x1c,0x83, + 0x18,0x5b,0xee,0x0d,0xdd,0xd1,0xce,0xd1,0x1f,0xee,0xf8,0xb3,0x63,0xcf,0xdb,0x9b,0x77,0x28,0xa5,0x89, + 0xbd,0x66,0x5c,0xb9,0x71,0x95,0x8a,0x50,0x26,0x30,0x2f,0xa2,0x78,0x8c,0x38,0x42,0xec,0x56,0x15,0xcc, + 0x67,0x1c,0xe6,0x55,0xe0,0x1f,0x06,0xa2,0x12,0x9e,0xe9,0x68,0xd6,0x7f,0xec,0xee,0xee,0xf9,0x4f,0xe8, + 0xe3,0xb8,0xf8,0x6c,0x27,0xb9,0x80,0xfd,0x74,0x94,0x96,0x77,0xf6,0xfc,0xb7,0x49,0x97,0xd6,0xc3,0x33, + 0x15,0xba,0x9e,0x00,0x25,0x96,0x98,0x83,0x80,0x51,0xc3,0x6f,0x95,0xb6,0xb5,0xc6,0x13,0x55,0x36,0xdd, + 0x5a,0xd6,0x78,0xcf,0x7b,0x92,0x70,0xa4,0x22,0xc7,0x0c,0xc0,0xa9,0x05,0x15,0x78,0x9d,0xb8,0xe2,0x9d, + 0xbe,0xfe,0x58,0x9e,0xd6,0x74,0x70,0xba,0x5e,0x78,0x55,0xbf,0xe0,0xb0,0x59,0x1b,0x4a,0x82,0x48,0x59, + 0x89,0x04,0x4f,0x77,0x00,0xbb,0x12,0x2a,0x91,0xc0,0xf3,0x65,0xf6,0x27,0xf0,0x73,0x01,0x17,0x7a,0xcd, + 0xdd,0xa3,0x01,0x7c,0x9f,0x87,0xdf,0xe7,0xb7,0xf8,0x6f,0x94,0xe6,0x8d,0x2f,0xbe,0x1d,0xb6,0xbf,0x46, + 0x00,0x09,0x78,0x28,0x65,0x09,0xfb,0xf7,0x3a,0x2e,0x5f,0x2f,0xb6,0x1e,0xcb,0x3e,0xc6,0x37,0xa1,0xf2, + 0x78,0x71,0x27,0xe9,0x70,0xab,0x79,0x27,0x39,0x4a,0xc7,0x7d,0x56,0x0b,0xce,0xeb,0xbd,0xe4,0xd8,0xf1, + 0xaf,0x2b,0x28,0x9d,0x1b,0x28,0x9d,0x13,0x94,0xbe,0x69,0xce,0x53,0x59,0x84,0xc7,0x1c,0x0a,0x13,0xcc, + 0x6a,0x40,0xec,0xfa,0x2e,0xff,0x74,0x7c,0xfe,0xa3,0x22,0x3f,0x57,0xe9,0xbb,0x65,0xa6,0xb2,0xac,0x18, + 0xd0,0x56,0xb6,0x48,0x5c,0x1d,0xbf,0x0a,0x23,0xcd,0x99,0xfc,0x53,0xa5,0xda,0x6d,0x72,0x02,0xb7,0xd9, + 0x8c,0x2b,0x6d,0x65,0xab,0x36,0x31,0xb7,0x77,0x09,0x7b,0x14,0x43,0x44,0xe8,0xe7,0x89,0x8a,0x73,0xc9, + 0x9e,0x63,0x1d,0xff,0x05,0xfd,0x16,0x02,0x8b,0x7f,0xfe,0xd8,0xc8,0xfe,0xa6,0xf6,0x9b,0x6e,0x12,0xc7, + 0x7f,0x55,0xaf,0xf1,0xd2,0xfe,0x89,0x02,0xc3,0x77,0x78,0x00,0x30,0xde,0x1a,0x94,0x1b,0x33,0xf0,0xa8, + 0x56,0x33,0x16,0x79,0x60,0x0a,0x5c,0x31,0x90,0x35,0x8a,0xb9,0x18,0x91,0x15,0xa9,0xd3,0x1a,0xd7,0x55, + 0x23,0xf5,0xeb,0x14,0x2f,0x94,0xed,0x8e,0xed,0xd1,0x6d,0xef,0xb7,0x5e,0xca,0x7d,0x65,0xba,0x7d,0x52, + 0x9f,0xeb,0x55,0x3d,0x91,0x3b,0x15,0x19,0xcd,0x4f,0x58,0xe5,0x91,0x6a,0x16,0x6c,0x2a,0x9d,0x6e,0x53, + 0xee,0x1b,0x10,0xb7,0x37,0x66,0x0e,0x20,0x2f,0x72,0xa5,0x04,0x0c,0x47,0xb4,0x53,0x84,0xce,0x0b,0x15, + 0xef,0xe6,0xbf,0x02,0x2d,0x9d,0xba,0x26,0x7a,0xc7,0x9a,0x78,0x14,0xcf,0xf5,0xd7,0x77,0xbc,0x3d,0xff, + 0xa9,0x85,0x9e,0x5a,0x01,0x1e,0x84,0xca,0x7b,0x66,0xdd,0xf5,0xa0,0xed,0x4a,0x96,0x88,0x3d,0xab,0x51, + 0x17,0x50,0x71,0xb5,0x22,0x68,0x70,0x2c,0xb8,0x44,0x4c,0xec,0x24,0xa4,0x4d,0xcd,0x23,0x55,0xe4,0xdb, + 0x46,0x62,0x5c,0x52,0x2b,0x5b,0xca,0xfd,0xca,0xa2,0x75,0x44,0x84,0x56,0x46,0x4e,0x9d,0x51,0x80,0x3d, + 0xf8,0x12,0x32,0x4f,0x25,0xaa,0x4a,0x18,0x0d,0xa0,0xaf,0x45,0x79,0xf2,0x03,0x72,0x60,0x14,0xc4,0xb5, + 0x7b,0xc0,0x1d,0xf9,0xdd,0x8d,0x99,0x18,0x1e,0x18,0x11,0xe1,0x07,0x77,0xe5,0xd5,0xf4,0x1a,0x75,0x04, + 0x0c,0x4b,0x87,0x27,0x1e,0x46,0x1d,0xa6,0x38,0x12,0xe5,0xba,0x23,0x47,0xbf,0x9a,0x97,0x6e,0x46,0xd9, + 0x98,0x26,0x8f,0x32,0x0b,0xed,0x90,0xb1,0x4a,0x6f,0x49,0x62,0xb1,0x9c,0x0f,0x34,0x09,0xa0,0xd1,0x54, + 0xbf,0x9f,0x79,0x55,0x2a,0xa2,0xb0,0x10,0xd3,0x1a,0x21,0x2c,0x33,0xcb,0xf9,0x23,0xad,0x21,0x34,0x81, + 0x86,0x0a,0x1e,0x8f,0x69,0xcc,0x1b,0xb3,0xc6,0xfe,0x8e,0x84,0x4e,0x90,0x5f,0x7a,0x71,0x65,0xc9,0xfd, + 0x99,0xe5,0x5d,0xdb,0x3f,0x13,0xc7,0xc4,0xb4,0xd7,0x67,0xde,0xc8,0xe5,0x96,0x20,0x7d,0x2f,0x46,0xcf, + 0x5a,0x64,0x33,0x92,0xfd,0x33,0x2f,0x68,0xe4,0xb8,0x67,0x90,0x8e,0x2f,0x21,0x8b,0x5d,0x50,0x97,0x33, + 0x2c,0x6a,0xc9,0x8b,0x3a,0x95,0x15,0x9e,0xc0,0xd3,0x0b,0x0f,0x91,0x86,0x12,0xa4,0xae,0xe5,0x13,0xda, + 0x74,0xf9,0xac,0x49,0x22,0x8b,0x3f,0xe7,0x46,0xdd,0x46,0xe1,0x8a,0x18,0xef,0x2a,0x6d,0x79,0x14,0x2e, + 0x44,0x75,0xaf,0xd4,0xc6,0x52,0x2a,0x34,0xbd,0x40,0xa9,0x08,0x7d,0xb1,0xaa,0xfa,0x49,0xc5,0xef,0x2c, + 0xd6,0x99,0x1a,0x6a,0x33,0x09,0x59,0xb7,0x36,0x28,0x40,0x39,0x68,0xc6,0xbe,0xa4,0xa6,0xa2,0x25,0xb7, + 0x64,0x67,0x4e,0x4c,0x44,0x7a,0xbe,0x31,0x21,0xb1,0x63,0x95,0x28,0xbd,0xd7,0x6b,0xad,0xec,0xc7,0x61, + 0xe5,0xad,0xa3,0x29,0x52,0xe6,0x67,0x75,0x1e,0x41,0xea,0xd0,0xde,0xd8,0xe4,0x7d,0xcc,0x01,0x59,0x4d, + 0xcb,0x0b,0x8b,0x2e,0x69,0xc5,0xd8,0x6b,0xc6,0xae,0x30,0x70,0x98,0x78,0x91,0xcb,0x1a,0xc7,0xa9,0x5a, + 0x5b,0x7e,0x72,0x82,0xbe,0x21,0x13,0x07,0xb9,0x5e,0x7d,0x0c,0xa9,0xd6,0x39,0x17,0x6e,0xed,0x95,0x72, + 0x63,0x13,0x6b,0x87,0xdd,0x96,0x4b,0x6c,0xed,0x23,0x63,0xd8,0x65,0xf8,0xe6,0x75,0x9a,0x07,0xaa,0xa3, + 0x56,0x99,0xdc,0x4a,0xfc,0x2b,0xcb,0xe9,0xb5,0x6c,0x7d,0xdd,0x82,0xed,0x5c,0x0d,0xaa,0x9a,0x64,0xee, + 0xe9,0x34,0xa2,0x72,0x70,0xd4,0x18,0xfd,0x5d,0x69,0x03,0x5f,0x85,0x69,0x68,0x2f,0xae,0x54,0x31,0xfa, + 0xa5,0x3f,0xa5,0xb8,0x8f,0xbc,0x44,0x43,0x54,0xd7,0xc6,0x2e,0x0d,0xa6,0x15,0x14,0x06,0x6d,0x70,0xe3, + 0x4e,0xd0,0xf3,0x9e,0xd5,0x99,0x17,0xb5,0xd6,0x20,0xf3,0x64,0xa1,0xab,0x29,0xc4,0x88,0x26,0x84,0xfa, + 0x95,0x85,0x25,0xf0,0x0b,0x5b,0x29,0x99,0x67,0x8a,0x42,0xb5,0x8b,0x6d,0xd9,0xd6,0xb0,0x5f,0x45,0x1e, + 0x02,0xb2,0x0f,0xaf,0x10,0xe0,0x33,0x65,0x87,0xe6,0xaa,0x61,0xfd,0xd3,0xb8,0x48,0xfc,0x6b,0x1d,0x59, + 0xce,0xbd,0x6d,0xff,0x8e,0x6a,0xbb,0xf3,0x47,0x61,0xc2,0x7b,0x10,0xb9,0x1c,0x2d,0x27,0xf3,0xeb,0x41, + 0x8c,0x2e,0xcd,0xc2,0xa1,0x5a,0xed,0xe6,0x48,0x04,0x70,0x31,0xa6,0xa4,0xba,0x0f,0x30,0x40,0xc5,0x14, + 0x61,0x42,0x95,0xe3,0xb3,0x73,0x9d,0x5c,0xed,0x7c,0xea,0x99,0x44,0x8e,0x14,0xec,0x55,0x9b,0x53,0x05, + 0x88,0x57,0x21,0x7e,0xd8,0xff,0x7f,0xd3,0xf6,0x11,0x03,0xc7,0x3b,0xb4,0x6d,0xfa,0x58,0x8d,0xfd,0xa2, + 0x7e,0xa3,0x54,0x73,0x35,0x36,0x07,0xf9,0x78,0x58,0x8a,0xe7,0x2e,0xfa,0xc3,0xd0,0x3b,0x72,0xe7,0x78, + 0xa2,0xbb,0xc4,0xbd,0x18,0x20,0xda,0x11,0x74,0x83,0x6c,0x7c,0x36,0x37,0xaa,0xc8,0xb8,0xa2,0xd7,0x6b, + 0x8d,0xd8,0x3c,0x13,0xae,0x28,0x3c,0x57,0xb7,0xb6,0x09,0x45,0x3b,0x54,0xeb,0xe4,0x8d,0x2c,0x2b,0xda, + 0x7e,0x98,0x04,0xe9,0x4d,0x8a,0xc1,0x44,0x36,0xed,0xee,0x5a,0x15,0xf0,0x4c,0x16,0x1b,0x67,0x29,0x56, + 0x46,0x48,0x9b,0xba,0x71,0xf5,0x4d,0x44,0x87,0x21,0xef,0x3a,0xae,0xbc,0x3b,0x00,0x3a,0xa5,0x08,0xc1, + 0x3f,0xf5,0x0d,0x39,0x47,0xec,0x0c,0xcf,0xd7,0x47,0xb4,0x36,0x7e,0x75,0x44,0x25,0x0d,0x47,0x94,0x63, + 0x92,0x49,0x2f,0xf6,0x09,0x2d,0x55,0xd8,0x5e,0x14,0xf3,0x74,0xb8,0x2a,0xa8,0x7d,0xf3,0x11,0xca,0x64, + 0x80,0xd6,0xf6,0x40,0xcd,0x19,0xe4,0x4b,0x21,0xd1,0xb9,0x08,0xd6,0x13,0x1d,0x95,0x33,0x61,0x9c,0x9e, + 0xe3,0x5f,0xd6,0x79,0x41,0xdc,0xd7,0x96,0xf7,0x4b,0x8f,0xce,0x61,0x52,0xf3,0x9f,0xa9,0x7d,0x5c,0x4d, + 0xbd,0xd1,0x89,0x9b,0xcb,0x7a,0x20,0x32,0x71,0xd2,0xe9,0x3b,0x73,0xdf,0x30,0x7f,0x44,0x95,0x19,0xff, + 0x9e,0x0c,0xb4,0xb9,0xfd,0x33,0x61,0x17,0xa3,0xa1,0x84,0x0d,0xc3,0x85,0xc5,0xa5,0xc5,0xab,0x27,0x01, + 0x80,0xfc,0x7c,0xcd,0xe4,0x8d,0x97,0x74,0xe8,0xba,0xe4,0x1d,0x18,0xb5,0x0a,0x76,0xec,0x2f,0x68,0xb6, + 0x7c,0xa8,0x4a,0x77,0xc1,0xab,0xb8,0x0a,0x17,0xd5,0x92,0xae,0xc2,0x95,0x71,0x16,0x40,0x09,0x2b,0xac, + 0x99,0x10,0xb8,0xd3,0x30,0xaf,0x48,0x89,0xa5,0x65,0x4b,0x2a,0x87,0x08,0x6d,0xcd,0x70,0x46,0x19,0xf6, + 0x57,0xb4,0xb1,0x2b,0xda,0x58,0xe1,0xa4,0xaa,0x8d,0x5d,0x79,0x3a,0xed,0x68,0x35,0x96,0xb6,0x3b,0x06, + 0x20,0x25,0x4c,0xf7,0x9b,0xd8,0x4d,0xe4,0x0a,0x19,0x95,0xee,0x94,0x4b,0x2d,0xbd,0xd1,0x94,0x36,0x70, + 0x69,0x51,0x73,0xda,0x8f,0x6c,0x51,0xdd,0x00,0x13,0x9f,0xa6,0x4b,0x34,0xd0,0xbe,0x3f,0xa5,0xff,0x2f, + 0xc3,0xca,0x55,0x8b,0x7f,0x19,0x42,0x02,0xe0,0xcf,0xe9,0xcf,0x72,0xec,0x9f,0x1a,0xd5,0x6d,0xca,0x3a, + 0x09,0x13,0x64,0x5d,0xd1,0x9f,0xd3,0xb1,0x7f,0x18,0xee,0x14,0xc3,0xd9,0x23,0x74,0x35,0x7d,0x14,0x9e, + 0xd2,0xdd,0xe4,0x5e,0x7a,0x23,0x54,0xef,0xf7,0x67,0xe3,0x20,0x76,0xe9,0x0c,0xa3,0x95,0xdd,0xdd,0xe5, + 0x38,0xf8,0x85,0x32,0xfd,0x13,0x3a,0xd4,0x1f,0xf0,0x17,0xc4,0x99,0x2e,0xc8,0xad,0xf6,0xfb,0xd3,0xb1, + 0x87,0x42,0x73,0xff,0x8a,0x0b,0xd1,0x5f,0x14,0xd2,0xf5,0xb9,0xcf,0xdd,0xdd,0x53,0x29,0x74,0xa9,0x0a, + 0x5d,0x4a,0xa1,0xc3,0x16,0x1d,0x90,0xfa,0x97,0xea,0xde,0xb5,0x44,0x71,0xee,0x5c,0x50,0x48,0xd5,0x73, + 0xad,0xd1,0xb9,0x1a,0xde,0x5c,0x86,0xd7,0xd5,0x28,0x37,0x20,0x4d,0x5b,0x43,0xab,0xc6,0xef,0xc6,0xe2, + 0xec,0x62,0x12,0xfe,0x1c,0xd3,0xfe,0xcc,0xfc,0x25,0x4c,0xe5,0x5d,0x10,0xf4,0x27,0x1c,0xc3,0x74,0x34, + 0x39,0xe2,0x8f,0x71,0x87,0xf3,0x8f,0x2a,0x2e,0xe1,0x8c,0x68,0xe1,0x84,0xa3,0x10,0x1a,0xf4,0x98,0x8d, + 0x35,0x8f,0x70,0xf7,0xee,0x2f,0xa0,0x73,0x22,0x43,0xc1,0x67,0x44,0xe3,0x9e,0x50,0x13,0xfb,0xe8,0x6d, + 0x14,0xd1,0x77,0xe6,0xab,0xf9,0xf3,0xbc,0x16,0x34,0xce,0xd5,0x58,0x4d,0x6e,0x21,0x93,0x43,0x8a,0xf6, + 0x68,0xdb,0x35,0xd1,0x85,0x35,0x51,0x2f,0xa8,0xb7,0x59,0xcd,0x77,0x38,0x7b,0xbc,0x84,0x12,0x3d,0x4d, + 0x91,0x00,0xa2,0x7f,0x30,0xf6,0x24,0x3a,0xa3,0xfc,0x50,0x87,0x7e,0xea,0x9f,0xe2,0xe0,0x4f,0x1f,0x9f, + 0xde,0xbd,0x7b,0xe1,0xee,0xfb,0xb2,0x2c,0x1b,0x77,0xc2,0xe1,0xb2,0x01,0x94,0x01,0x03,0x2d,0x28,0xbc, + 0x8a,0x84,0xaa,0x8b,0x43,0xa9,0x30,0xee,0xe9,0x33,0xfa,0xcb,0x64,0xd7,0x12,0x93,0xad,0xc0,0x12,0x44, + 0x31,0xc0,0x7f,0x84,0xf6,0xa7,0x94,0x37,0xad,0xc2,0x20,0x06,0xb7,0x36,0x1b,0x48,0xfe,0x0e,0x47,0xad, + 0xe1,0xbb,0xbd,0xa3,0x9c,0x3a,0x65,0xfe,0x76,0xcc,0x90,0x15,0x65,0x1d,0x35,0x6c,0xac,0xab,0xea,0x54, + 0xb8,0x10,0x46,0xaf,0x60,0x3c,0x51,0xcb,0x04,0xa3,0xf6,0xf4,0x57,0x17,0x65,0x9d,0xd7,0xc9,0x1e,0x61, + 0x94,0x72,0x9b,0x3f,0xca,0x09,0x38,0x2a,0xec,0xaf,0x76,0xd2,0xcd,0xd9,0x9f,0xaa,0x19,0xc0,0x49,0x83, + 0xf1,0xf4,0x27,0x88,0xd9,0x14,0xcd,0xfd,0x95,0x72,0xf7,0x41,0xb8,0x20,0xaf,0x47,0x1b,0x0a,0xb3,0xf5, + 0x1a,0xd1,0xdd,0x81,0xf4,0xfc,0x5c,0x48,0x7b,0x5f,0x10,0xb2,0xe6,0x5b,0xe4,0xe2,0xb2,0xf1,0xbe,0x81, + 0xca,0xae,0x6b,0x02,0xea,0xd5,0x84,0xeb,0x19,0x90,0x57,0xea,0xaa,0xa7,0xa5,0xeb,0x66,0x60,0x73,0xb1, + 0x24,0xa4,0xc4,0x0e,0xac,0xed,0x59,0xfc,0x2b,0xd6,0xd5,0x34,0x3b,0xf1,0x14,0x41,0x30,0xf3,0x3c,0xe6, + 0xc4,0xcf,0xa2,0x82,0x09,0x71,0x50,0xdd,0x85,0xcb,0x89,0xdc,0xab,0xe9,0x50,0xc7,0x8d,0xb3,0x46,0xa0, + 0xa2,0xa2,0x48,0x53,0x11,0x53,0x7e,0x55,0xa2,0x09,0xc2,0xc1,0x17,0x87,0xde,0x97,0x25,0xe6,0x06,0x2e, + 0x72,0x96,0xe4,0x45,0xc9,0x3d,0x12,0x9a,0xd9,0x1f,0x5e,0x3e,0x9a,0xe9,0xbd,0xba,0xd4,0x0e,0xee,0xce, + 0xd6,0xeb,0x9d,0x13,0xe2,0x17,0x67,0x47,0x97,0x63,0xc5,0x99,0x2e,0x61,0x52,0x2e,0xac,0xec,0x59,0x78, + 0x56,0x7b,0x3f,0x40,0x8d,0xe5,0x7a,0x7d,0x56,0xef,0x98,0xb8,0x18,0x1c,0xa4,0xc4,0xd3,0xab,0x29,0xfb, + 0x7a,0x61,0xbb,0x5a,0x99,0x43,0x9a,0xb7,0xc2,0x8c,0x77,0x9e,0x10,0x2e,0xf6,0xae,0x2f,0x30,0xc8,0xa9, + 0xdc,0x2d,0xd2,0xd9,0xce,0x05,0x36,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x7d,0x6a,0x67,0x93,0x42,0x54,0xec, + 0x70,0x78,0x2f,0x3e,0x18,0x8a,0xc0,0x52,0xbf,0xf5,0xb3,0xd7,0x8e,0x04,0x8b,0xb9,0xf2,0x0f,0xfd,0x73, + 0x08,0xa9,0xdf,0x23,0xd2,0x7c,0x36,0x5d,0x2d,0xe2,0xc2,0x7f,0x46,0xdf,0xa0,0x71,0x5e,0x2b,0xed,0xaf, + 0x2b,0x5a,0x93,0xab,0x47,0xcb,0xa4,0x02,0xe0,0x2b,0x26,0x2b,0xcf,0x8f,0x96,0xc9,0xd1,0xd5,0x18,0xd6, + 0x5e,0x74,0xaf,0xec,0x0f,0x0f,0x1f,0xbd,0xaf,0x8a,0x1c,0x12,0x79,0xf1,0xfe,0xe8,0x70,0xac,0xca,0xd0, + 0x4e,0xe9,0xe2,0xc2,0x5f,0xd8,0x79,0x7c,0x21,0x3f,0x61,0xbd,0x11,0xbc,0xab,0x89,0xd6,0x8c,0x0a,0x25, + 0xf6,0xcc,0xfa,0x7e,0xcb,0xc2,0x56,0x42,0xc5,0x1d,0x4e,0x0a,0xd5,0x6d,0xe9,0xd3,0x25,0xa9,0x7c,0x32, + 0xf1,0xed,0x2d,0x5e,0x62,0x10,0x46,0x04,0xc6,0xd9,0x80,0x2e,0x98,0x73,0x2e,0xd8,0x7f,0x88,0x0b,0x44, + 0x87,0xf2,0x15,0x3d,0xb1,0x0c,0x71,0x38,0x30,0xf9,0x43,0xf6,0xfd,0xc4,0x1b,0xc9,0xd8,0x1b,0x1b,0xe0, + 0x09,0xcd,0x35,0xf5,0x55,0x50,0x74,0xf4,0xb3,0xe4,0xde,0x24,0x9e,0x9a,0xae,0x07,0x25,0x77,0x82,0xe1, + 0x8a,0x9f,0x78,0xcb,0xfa,0x59,0x9a,0xba,0xab,0xa5,0xc3,0x82,0x1b,0x3e,0x3e,0xdd,0x8c,0x8a,0x9c,0x48, + 0xfb,0xe6,0xa0,0x9c,0xf2,0x10,0x91,0x9f,0x0f,0x5f,0x87,0x50,0xe6,0x57,0xcf,0x31,0xcf,0xf4,0x23,0x94, + 0xfb,0xba,0x11,0x85,0x46,0x9e,0x69,0x94,0xe4,0xd0,0x7f,0x2d,0xf6,0x6f,0x67,0x42,0x0c,0xd2,0xf5,0x57, + 0x13,0x94,0x9d,0xf1,0x04,0x65,0x1d,0xce,0x06,0x27,0x22,0xb0,0x3d,0x95,0xfb,0x60,0xde,0xb8,0x87,0xcf, + 0xa0,0xfa,0x4b,0x84,0x8b,0xc6,0x7f,0x1a,0x60,0xaf,0x42,0x9d,0x46,0x30,0x00,0x8a,0x69,0x78,0x35,0xac, + 0xee,0xc5,0xf7,0x04,0x16,0xef,0xbb,0x78,0x97,0xf7,0x16,0xef,0xf2,0x7e,0xec,0x5e,0xf1,0x48,0xae,0xc4, + 0xf1,0x3d,0x0f,0xf5,0xb0,0x6a,0xe4,0x09,0x35,0xf2,0xa4,0x83,0xf3,0x7d,0x52,0x71,0xbe,0x4f,0x98,0xf3, + 0xbd,0x12,0x48,0x7a,0x1b,0x5e,0xb5,0x70,0x2b,0x9a,0x7f,0x3b,0x60,0x1d,0xe1,0xca,0xe4,0xe1,0x4e,0x78, + 0x30,0xbc,0xf3,0xe8,0x2d,0xb1,0x88,0xc6,0x5e,0xe5,0x0e,0xdc,0x3f,0x23,0xe1,0xe8,0xce,0x58,0xd3,0xde, + 0x4f,0x63,0x8c,0xef,0x8a,0x5a,0x55,0xa1,0x6e,0xe1,0xdb,0x95,0xef,0x2d,0xb0,0x7c,0xfb,0xfe,0xbe,0xba, + 0xb0,0x88,0xff,0x81,0x4b,0xe0,0xbc,0xb2,0x16,0x93,0xfd,0x43,0x58,0x19,0xcc,0x89,0xb7,0xe2,0x35,0x48, + 0x7f,0x53,0xce,0xbd,0x56,0x07,0x2d,0x80,0xda,0x87,0x9c,0xbf,0xe0,0x68,0x9e,0xf8,0x1f,0x12,0xff,0x30, + 0xf1,0xcf,0x13,0xff,0xeb,0xc4,0x7f,0x9e,0x8e,0xb4,0x34,0xff,0x5d,0xe9,0x6b,0xc1,0x1a,0xbe,0x05,0x9e, + 0x1a,0xcf,0x7f,0x3b,0x12,0xd7,0x4b,0xac,0x2c,0xce,0xb2,0xab,0xd1,0xeb,0x52,0xa2,0x9b,0xc1,0x6d,0xe6, + 0x26,0xb8,0xde,0x8c,0xb5,0x63,0xe5,0x8b,0x04,0x5e,0xcc,0x5f,0xa6,0x44,0x0b,0xea,0x47,0x8e,0x76,0x78, + 0x11,0x79,0x1f,0xa7,0xd6,0x27,0x67,0x51,0x3a,0x8f,0x1d,0xdb,0x3c,0x55,0x34,0xf1,0xab,0xca,0x2c,0xa5, + 0x57,0xc2,0xb5,0x21,0xab,0xfa,0x5e,0xaa,0xa8,0x88,0x3f,0x61,0x0c,0x4a,0xdf,0x4c,0xbb,0x4e,0xff,0x25, + 0x81,0x53,0x35,0xec,0x4e,0x3c,0x6d,0x3c,0x88,0x42,0x88,0xa4,0x5f,0xe6,0x4d,0x58,0x47,0xe1,0x49,0xee, + 0xde,0xdd,0xe1,0xbf,0xc4,0x88,0x29,0x35,0xcb,0xd1,0xf7,0x70,0x74,0x64,0x2e,0xf3,0xda,0x08,0x7f,0xb1, + 0x58,0x0a,0x31,0xea,0x9a,0x2a,0x51,0xd2,0xc6,0x0b,0x9e,0x97,0xf2,0x6d,0x7b,0x7b,0x32,0xad,0x12,0xbe, + 0x40,0xe0,0x35,0x6d,0x7f,0xa2,0x95,0x3e,0xbf,0x29,0x21,0x03,0x73,0xb4,0xe6,0x88,0x19,0x1d,0xdd,0xbb, + 0x89,0x2b,0xb1,0xe3,0x3c,0x4f,0x79,0xf2,0x7a,0xa9,0x23,0xc7,0x86,0x65,0x15,0x45,0xd6,0xb7,0xbe,0xd9, + 0xaf,0x23,0xab,0x16,0xb7,0xd7,0x5d,0x2f,0xf7,0x4b,0x1a,0xd6,0xaf,0xe9,0xb6,0x42,0x98,0x9b,0x48,0x65, + 0x09,0x45,0xc2,0x4b,0xff,0x2b,0x9e,0xc5,0x8d,0x25,0xf9,0xe5,0x83,0x9a,0x45,0xc4,0x1d,0x1e,0xa9,0x6c, + 0x12,0xf0,0x10,0xde,0x84,0x9b,0xeb,0xd5,0x7a,0xab,0xe6,0xa0,0xed,0xf5,0xbd,0xf1,0xae,0x5b,0x6b,0x39, + 0xd4,0x6f,0x96,0x66,0x45,0x45,0x9b,0xfa,0xf6,0xf5,0x1d,0x26,0xcd,0x18,0x80,0x95,0x6a,0xc4,0x0e,0x54, + 0xcb,0xd9,0x89,0xe5,0x46,0x56,0x59,0xab,0x57,0x8c,0x4a,0x31,0x9f,0xde,0x1a,0x3e,0xf0,0x47,0x0c,0x10, + 0x00,0x1f,0xa8,0x92,0xfc,0x38,0x4e,0x34,0xce,0x2f,0xf8,0x71,0xf7,0x2e,0xe5,0xab,0x0c,0x60,0x7a,0x0d, + 0xb1,0x6a,0x17,0xd8,0x53,0xe3,0xcf,0x04,0xaf,0x12,0xd8,0xf3,0x97,0xc4,0xc7,0xc9,0x0a,0x44,0x2d,0xb6, + 0xb9,0x3e,0xca,0xe2,0x58,0x37,0x86,0x58,0x80,0xbf,0xf2,0xd3,0xa8,0x52,0x2d,0x11,0x17,0x2a,0x96,0x40, + 0x9d,0x03,0xd4,0x9f,0xd0,0xca,0xe4,0xc9,0x1c,0x9e,0x60,0x9f,0x27,0x05,0x94,0x23,0x43,0x27,0xa5,0x7d, + 0x50,0x3a,0x77,0xfc,0xa6,0x3a,0x95,0x0c,0x84,0x8b,0x6f,0x24,0xc1,0xf9,0x43,0x32,0x72,0xd3,0xea,0xd8, + 0xe3,0x8a,0xbb,0x43,0xdd,0xda,0xa7,0xa1,0x51,0x29,0xcc,0x36,0x9e,0xd7,0x6c,0x29,0xcc,0x47,0x59,0x20, + 0x3d,0x77,0xea,0x17,0xb4,0x66,0x38,0xcc,0x1b,0x2b,0xe9,0xde,0x3a,0xe1,0xd6,0x40,0xf3,0xd1,0x6d,0x43, + 0xed,0x5a,0x20,0xda,0xcb,0xd7,0xb7,0x54,0x53,0x13,0xe9,0x9c,0x66,0x57,0x93,0x6a,0xe6,0x50,0xad,0x48, + 0x3b,0x36,0x57,0x31,0x04,0x7c,0x1a,0x6f,0x1f,0x1f,0x43,0xcd,0x77,0x04,0x35,0x6c,0x18,0xa6,0xac,0xbb, + 0x20,0x68,0x8e,0xf2,0xe0,0x69,0x96,0xc1,0x19,0xae,0x3f,0x29,0x0a,0xf3,0x0d,0xe0,0xd2,0xc5,0x80,0x48, + 0xf4,0xb7,0xf5,0x3a,0xab,0x52,0xac,0xb7,0x55,0xbb,0x8c,0x7e,0x57,0xb5,0x4b,0x35,0xd2,0x5a,0x0f,0xb7, + 0x76,0xd9,0x8e,0x74,0x19,0x6e,0x47,0xd2,0xd6,0xb2,0x8d,0x0e,0xa7,0xab,0x9c,0xdf,0x05,0x83,0x23,0xb1, + 0x6b,0xf3,0x55,0xba,0x28,0x76,0x8c,0x37,0xfe,0x9f,0x7a,0x81,0x6a,0x8f,0xb5,0x62,0x2d,0xf7,0x5d,0x52, + 0x33,0xa1,0x6b,0xda,0x82,0xb5,0x8c,0xc7,0xdb,0x36,0x61,0xca,0x73,0x16,0x0b,0x56,0xe5,0x95,0xbe,0x3b, + 0xb8,0x1f,0xa3,0xf0,0xdf,0x20,0x21,0x24,0xb0,0xb5,0x63,0xb6,0x2a,0x13,0x31,0xec,0x0d,0xd4,0x0e,0x54, + 0xfc,0x56,0xbb,0x0d,0x11,0xfc,0x87,0x9a,0x23,0x1c,0x7a,0x95,0xfb,0x4a,0xeb,0xd1,0xcc,0xd0,0xdd,0xb6, + 0xed,0x68,0x25,0x10,0x50,0xf6,0x63,0x4f,0x4b,0x78,0xe6,0x61,0x6f,0x03,0x55,0x96,0xf6,0xb2,0xca,0x14, + 0x1a,0xad,0x9d,0xce,0xf9,0x19,0x28,0x2a,0xd3,0x11,0x60,0x9d,0x93,0x93,0xaa,0xbb,0x5d,0xa7,0x6f,0xdc, + 0xca,0xf5,0x9d,0x5d,0x67,0x18,0xb1,0x18,0x4e,0x94,0x6c,0xf9,0x7b,0x14,0x59,0x01,0x4e,0x8b,0x3e,0x2e, + 0x08,0x7c,0x3a,0x41,0xd1,0x67,0x59,0x6e,0x90,0xbb,0x91,0xc8,0x3f,0xf0,0x00,0xad,0xde,0x3e,0x24,0xc5, + 0x18,0x14,0x15,0xde,0x88,0x53,0xb8,0x0e,0xfe,0xf2,0xbf,0x12,0x36,0x23,0x74,0xe5,0x01,0x11,0xf6,0x95, + 0x03,0xe5,0x68,0x86,0x96,0xb6,0x1a,0x62,0xf8,0x8b,0xb6,0x2c,0x5a,0xd5,0x8c,0xdd,0x17,0x58,0x84,0x95, + 0x90,0xa6,0xb2,0x8a,0x55,0xd8,0x79,0x3c,0xa7,0x36,0x92,0xb6,0x21,0x7c,0x07,0xb8,0x45,0x90,0x27,0xa0, + 0x8b,0xaf,0x8b,0xa8,0x86,0x75,0x3c,0x9f,0x08,0x93,0x85,0xc2,0x51,0xee,0x59,0x18,0xf9,0x17,0xe1,0xc2, + 0xbf,0xc0,0x14,0x08,0xa3,0x9d,0xe1,0xef,0x7a,0x7d,0x81,0xb5,0xe0,0x9f,0x42,0xdf,0xed,0xfc,0xc6,0xd2, + 0x04,0x77,0x67,0xd1,0xe5,0xf3,0xb5,0x2b,0x55,0xbb,0xf4,0xac,0x58,0x70,0x01,0xac,0x59,0xb8,0x68,0x02, + 0x89,0x18,0x8c,0x4c,0x78,0xee,0x4e,0xb6,0x2a,0x77,0x13,0xd6,0xdc,0x4f,0xea,0xce,0x1b,0x14,0x14,0x00, + 0x6f,0x7e,0xef,0xce,0x7c,0x27,0x9a,0x11,0x54,0xff,0x28,0xea,0x15,0xb6,0xa9,0xa8,0x55,0x12,0xf1,0xd2, + 0xeb,0x7e,0x2c,0x37,0x9e,0xaf,0xc1,0x07,0x9d,0x25,0xe9,0x6e,0x26,0xa6,0x00,0x22,0xf0,0xf8,0xcd,0xad, + 0x84,0x55,0x2b,0x11,0x98,0xfa,0x4b,0xdb,0x6c,0x0f,0xfe,0x81,0x87,0xdf,0x43,0x1a,0xc3,0xdd,0x7f,0x2d, + 0x1a,0x23,0x4b,0xcf,0xe7,0x34,0xc1,0x58,0x98,0x3d,0x0c,0xd2,0x54,0xfa,0x0c,0x1a,0x61,0x84,0x16,0x9b, + 0x43,0xa5,0x2d,0x9b,0x86,0xf1,0xa6,0x22,0x9b,0x33,0x61,0x5a,0xfc,0x0b,0x42,0x9f,0xff,0x4e,0xb0,0x28, + 0x80,0x47,0x85,0x37,0xf8,0x41,0xdf,0x42,0x30,0xc0,0xb0,0xde,0x50,0x4c,0xfa,0x7a,0xff,0x66,0x2e,0x56, + 0xfc,0xb9,0xff,0x40,0x78,0xa5,0x52,0xa8,0x08,0xfe,0x24,0x8a,0xda,0xfc,0xfa,0x16,0xca,0xc1,0xc1,0xb5, + 0x20,0x99,0x7f,0x27,0x5d,0x88,0xa5,0x61,0xd9,0xce,0xf8,0xc1,0x36,0x12,0x91,0xad,0x93,0x40,0xb9,0xcb, + 0x28,0x45,0x10,0xdc,0x6e,0x77,0x48,0x5c,0x69,0x99,0xc7,0x97,0xc6,0x71,0xa1,0x18,0x89,0x6a,0xe1,0x73, + 0xd2,0x85,0xb6,0xd8,0xa3,0x6a,0x56,0x2f,0x09,0x3e,0x3b,0xaa,0x4e,0x4d,0x41,0x6c,0x51,0xf1,0xc8,0x70, + 0xe5,0x85,0x16,0x3d,0x4e,0xc2,0xe4,0xa8,0x18,0x0f,0x27,0x12,0x3f,0x1a,0xa3,0xd8,0x09,0x27,0x22,0x7c, + 0x07,0x67,0xa0,0x4e,0xf2,0xa4,0x7e,0x92,0x09,0x79,0x5c,0xe2,0x45,0xc4,0x01,0x6c,0x67,0xc6,0x5a,0x34, + 0x3d,0xe2,0x72,0xe3,0x70,0xe2,0x53,0x0d,0x75,0x9c,0x27,0xdd,0xc7,0x39,0xf2,0x20,0xf7,0xb0,0xbc,0x89, + 0xaf,0x30,0xe0,0x05,0xfe,0x99,0xd1,0x50,0x67,0x95,0x04,0x6c,0xa6,0x87,0x3a,0x0d,0xf3,0xa3,0xd9,0x78, + 0x38,0x6d,0x9d,0x83,0xc8,0x57,0x69,0x44,0xb3,0x86,0x53,0x26,0xf7,0xe7,0x71,0xf9,0x34,0x5b,0xb1,0x98, + 0xed,0xd9,0x22,0x21,0x00,0xfb,0x89,0xd6,0x1a,0x7e,0xd8,0x8f,0xa6,0x3c,0xc4,0xd1,0x4a,0x46,0x3d,0xf5, + 0x82,0x85,0xfe,0xda,0x28,0x0b,0xdc,0x65,0x19,0xb2,0x4e,0x25,0xe4,0x90,0x2b,0x65,0xba,0x24,0xbc,0xd3, + 0x34,0x5c,0x98,0x48,0x05,0xba,0x44,0x46,0xb7,0xbf,0xed,0x9d,0xa3,0x65,0x7f,0xdd,0xed,0x69,0xc0,0xf4, + 0x05,0x2d,0x0e,0x96,0x83,0x59,0x8e,0x3a,0x4c,0xa6,0xa6,0xa9,0xa6,0x5b,0x2c,0x9a,0x6d,0x40,0xf1,0x4b, + 0x7d,0xf7,0x28,0x90,0x37,0xfe,0xf9,0xd9,0xc0,0xcb,0xb9,0x44,0xc4,0xe7,0x5d,0x56,0xb6,0x1c,0x6a,0xbe, + 0x58,0x59,0x32,0x9d,0x45,0xc5,0x4b,0x4a,0x77,0x63,0x65,0xa0,0xef,0x97,0x42,0x2e,0x6b,0x15,0xc3,0xef, + 0x98,0x4d,0xd0,0xbf,0xfe,0xac,0xfd,0xfa,0xb7,0x76,0xf8,0x0f,0xe7,0x1d,0x0b,0x42,0x95,0x86,0xc1,0x83, + 0x6e,0xfe,0x20,0x9b,0xcd,0x8a,0xb8,0xfc,0x2e,0x4e,0xe6,0x67,0xa5,0x55,0xab,0xa9,0xb4,0x28,0xfb,0xc7, + 0x6b,0x5c,0xb9,0x10,0xc3,0x48,0x60,0x5b,0xc9,0xb4,0xd3,0xf0,0x10,0xc4,0x1b,0x9c,0x9f,0x0d,0x8c,0xde, + 0x4f,0x98,0x0f,0x2c,0x05,0x29,0x95,0x52,0x01,0xc6,0x73,0x45,0x4c,0x70,0xd0,0xe9,0x36,0x97,0xf3,0x4d, + 0x02,0x4f,0xa0,0xbc,0x5c,0x55,0xc4,0xc1,0x1e,0x44,0x3e,0xd7,0x44,0x1f,0xef,0xec,0x99,0x6e,0xee,0xa8, + 0xc0,0x9d,0x12,0x35,0x48,0xc7,0xeb,0xf2,0xd8,0x8b,0xae,0x00,0x46,0xab,0x61,0xd6,0x79,0xd0,0x6d,0x33, + 0x9c,0x9c,0xcb,0xf0,0xd9,0x4c,0x1d,0x8c,0x93,0x72,0xd1,0x16,0x5c,0xab,0xc5,0x6f,0xf0,0xe5,0xb8,0xd4, + 0xdf,0x25,0x46,0x24,0x58,0xdd,0xea,0xaa,0x78,0x1d,0xc9,0xab,0xc4,0xa1,0x5e,0xb9,0x09,0x1e,0xcc,0x58, + 0x6a,0xe3,0xd1,0x5e,0x5b,0x37,0x3d,0x03,0x06,0x6e,0xc6,0xae,0xd4,0xce,0xdd,0x39,0x2d,0x45,0x17,0xca, + 0xf3,0x3f,0xa8,0x0d,0x48,0x3b,0xa9,0x66,0xe3,0x14,0xa3,0xa6,0x1c,0x91,0x6a,0xce,0xee,0x99,0x28,0xa2, + 0xda,0xb6,0x74,0x54,0xb4,0xa6,0x71,0xa5,0xe1,0x48,0x4d,0x26,0x64,0xb1,0x98,0xd9,0xd9,0x0d,0xac,0xc4, + 0xdf,0xf0,0x83,0xfd,0x2c,0x99,0x0f,0xac,0xc8,0xb8,0xe1,0xef,0xb9,0x5f,0x65,0xd4,0x62,0xf2,0x86,0x45, + 0xd2,0x99,0x05,0xa1,0x5a,0xf8,0xad,0x5d,0xad,0x11,0x93,0x37,0xfc,0x29,0xae,0x55,0xac,0x07,0xf1,0x6d, + 0xc5,0x48,0x79,0x5e,0x51,0x6c,0xd8,0xa9,0x02,0xa6,0x0c,0xb5,0xbd,0x03,0xc1,0x57,0x97,0xbc,0x29,0x54, + 0x0b,0x15,0x7d,0xbd,0x97,0xfc,0x43,0x59,0x1f,0xdf,0x66,0x89,0xc0,0xd6,0xd4,0x0a,0x1b,0xef,0x3a,0x30, + 0xd5,0x1e,0x71,0x75,0x76,0x60,0x5e,0x59,0xfc,0x1a,0x65,0x3f,0x48,0xb6,0xeb,0x93,0x80,0x2f,0xe4,0xad, + 0x45,0xb5,0x91,0x84,0xb4,0xb9,0xd7,0xae,0xad,0x8e,0x44,0x69,0x07,0x6c,0xda,0xf8,0x97,0x30,0xac,0x34, + 0x2e,0x14,0x0d,0xd5,0x45,0xcc,0xb0,0x57,0xcf,0xb3,0x8c,0xd8,0x7f,0x48,0xd8,0x6a,0xd2,0x72,0x5d,0xa2, + 0x11,0x26,0x94,0x0a,0x9f,0x26,0xc1,0xbc,0x9e,0x2d,0xae,0xe8,0xba,0x23,0x65,0xb5,0x15,0xe5,0xd9,0x7b, + 0x8f,0xed,0x1b,0x5c,0x2e,0x6f,0xe6,0xc9,0x1a,0x69,0x61,0x9a,0xb3,0xef,0x97,0xb8,0x1e,0x06,0xbb,0x32, + 0x71,0xd7,0x1e,0x06,0x6b,0x1c,0xa4,0xf2,0xe4,0x54,0x39,0x1d,0x71,0xc5,0x74,0x63,0x6e,0xf4,0x87,0x7c, + 0x44,0xf8,0xf5,0x95,0xc5,0x5a,0xe5,0x14,0x26,0x6e,0x7b,0xe0,0x8e,0xeb,0x1e,0xb8,0xb5,0x43,0x61,0xa8, + 0x41,0xd1,0x52,0xfc,0x0a,0x55,0x2a,0xed,0xfc,0x1e,0xfa,0xfc,0x6f,0x2a,0x8f,0x04,0xae,0x35,0xa6,0xaf, + 0xa1,0x14,0x22,0x61,0xb0,0xef,0xde,0xfd,0x3e,0xc5,0xff,0x07,0x70,0xa3,0x05,0xba,0x0d,0xaa,0xcc,0x6f, + 0x60,0x97,0xb1,0x2f,0x07,0xf3,0xfb,0xc4,0xff,0x16,0xca,0x94,0xd7,0xc7,0xd7,0xae,0x3b,0x0a,0x06,0xeb, + 0xe3,0xd4,0xeb,0x8f,0xbc,0xe3,0xcd,0xf1,0x66,0x6f,0xee,0xff,0x0b,0xda,0xef,0xbb,0x83,0xcf,0xfa,0xa3, + 0x3f,0xee,0x5c,0x6f,0x5c,0x6f,0x7d,0x74,0x3c,0x3e,0xde,0x3b,0x3e,0x1e,0x53,0xde,0xef,0xdd,0x2a,0xec, + 0x7c,0x85,0x68,0xed,0xed,0x7f,0x25,0xbe,0x73,0x7c,0x7c,0xe7,0xae,0xc3,0xe6,0xcb,0x50,0x34,0x6f,0xe7, + 0xd8,0xab,0x2b,0xfe,0x52,0xdc,0xb2,0xef,0xa8,0xc1,0xc8,0x68,0x9c,0x7e,0xea,0x3b,0x73,0x48,0x02,0xfd, + 0xdf,0x60,0xe6,0xc7,0xe2,0x7d,0xf8,0x34,0x0d,0x8e,0x1c,0x4b,0xee,0xef,0x8c,0x7d,0x83,0xb2,0x1b,0x66, + 0x1e,0xec,0x5c,0x6b,0x00,0x2f,0x10,0x0a,0x45,0x26,0x22,0xaf,0x11,0x83,0xdb,0xa1,0x08,0xb6,0xac,0xa6, + 0xc2,0xef,0xdf,0xbe,0x7e,0x45,0x09,0x00,0x6c,0xc4,0x70,0x4c,0xb5,0x1b,0xf3,0x30,0xb7,0x2a,0xc2,0x51, + 0x2e,0x44,0x29,0x50,0x8a,0x41,0xc2,0xd3,0x84,0x09,0x8e,0x30,0xc7,0xf6,0xc7,0x29,0xdc,0xb3,0x76,0x70, + 0x9f,0x8e,0x63,0xa9,0xf6,0x57,0x5d,0xe2,0xb1,0xac,0x1f,0xda,0xf3,0x09,0x9c,0x7e,0xad,0x44,0xdf,0xf1, + 0x61,0xa5,0x59,0xeb,0x4b,0xd5,0x9a,0x98,0xf2,0x76,0xa6,0x54,0x28,0x89,0x2e,0xfe,0xcf,0xee,0x65,0xe3, + 0x27,0x92,0x4f,0x5f,0x36,0x46,0xff,0x8d,0x65,0xe3,0xa6,0x9a,0xcb,0xf6,0x3e,0xc1,0xca,0xd5,0x97,0x4e, + 0x2a,0x5b,0x4b,0xc7,0x09,0x7f,0x75,0xe9,0xb8,0xdb,0xda,0xd2,0x71,0x8a,0xb5,0x74,0xfc,0x5b,0x2f,0x9d, + 0xdd,0x97,0xa9,0x85,0xf2,0xae,0x54,0xa8,0x72,0xfb,0xb0,0x3a,0x90,0xc5,0x8b,0x33,0x7e,0x6c,0x82,0xe5, + 0x1f,0x5b,0x81,0xc2,0x9c,0x32,0x5b,0x28,0xab,0x46,0x31,0xdd,0x53,0xd6,0x98,0x62,0x61,0x98,0x14,0x8c, + 0x99,0xf1,0xf4,0x44,0x53,0xb1,0xec,0x45,0x6b,0xa6,0x8f,0x62,0x20,0x79,0x75,0x0a,0xb7,0x43,0x65,0x26, + 0x36,0xd3,0xca,0xc2,0x11,0xe6,0x9f,0x25,0x4c,0x3b,0xb5,0x98,0x73,0xc9,0x26,0x8e,0x30,0x0f,0x64,0x43, + 0x47,0x31,0x7d,0xcc,0x55,0x4b,0x38,0x5c,0x32,0xc2,0x4e,0x13,0x54,0x19,0x72,0x65,0x6c,0xc8,0x16,0x93, + 0x9d,0x86,0x95,0xe8,0xb6,0x6e,0xd9,0xc8,0xb6,0xa8,0xca,0x10,0x55,0x5b,0x52,0xb6,0x2c,0x52,0x95,0x8d, + 0x2b,0x9b,0x58,0x76,0x58,0xb8,0x62,0xac,0xda,0xfe,0x55,0xfa,0xa1,0xc5,0x62,0xbb,0x5a,0x65,0x83,0x89, + 0xb7,0x0c,0x6d,0x3c,0xc9,0xcb,0xd4,0x34,0xc7,0x94,0x65,0x13,0xf3,0x54,0xb5,0x78,0x62,0x48,0xa1,0x4d, + 0x2d,0x2b,0x2b,0xd0,0xc6,0x12,0xb1,0x65,0x2e,0x2d,0x14,0xaf,0x35,0xd4,0x00,0xb3,0x70,0xef,0x8f,0xe3, + 0xe2,0x33,0xf7,0x88,0xfe,0x75,0xee,0x3d,0x7a,0x7c,0xbc,0x17,0x8e,0xfb,0x1e,0xe1,0x1a,0x24,0x86,0x1e, + 0xfe,0x1d,0x05,0x0e,0x65,0x3b,0xe3,0xcf,0x08,0xed,0xac,0xef,0xd1,0xe7,0x3d,0xfa,0xbc,0xd7,0x5f,0xab, + 0x3a,0xe1,0xa3,0xc7,0xff,0x45,0x55,0x3c,0x6f,0xb4,0xe7,0x27,0x59,0xe8,0x1c,0x45,0xbb,0x7f,0x3e,0xd9, + 0xfd,0xfd,0x64,0x7c,0x74,0x7c,0x7c,0x75,0x7c,0xbc,0x7b,0x7c,0x3c,0x18,0x7f,0xe6,0xf8,0x19,0x65,0x01, + 0x87,0x39,0xfd,0x24,0xeb,0x13,0xa6,0x0b,0xbc,0x91,0x7c,0x7a,0x8e,0x1f,0x65,0xa1,0x85,0xec,0x9c,0x3f, + 0x1e,0x39,0xfd,0x2c,0x23,0x0e,0x4d,0x0f,0xee,0x78,0x6f,0xe4,0x3d,0xde,0xa3,0x7d,0x69,0x14,0x3b,0x3e, + 0xde,0x43,0xc9,0xbe,0x73,0xf4,0xc7,0xe3,0xf1,0x67,0x8f,0x69,0x3e,0x2b,0x54,0x79,0xb4,0xf3,0xfc,0xf5, + 0xb3,0xc3,0xdf,0xde,0x7c,0xdd,0x43,0x7a,0xff,0xf1,0x5e,0xe2,0x2f,0x24,0x1d,0x16,0x3c,0x33,0xf9,0x3c, + 0x3e,0xda,0xf3,0x97,0x19,0xde,0x8e,0x9d,0xf7,0x8e,0xc1,0xc2,0x7b,0xef,0xdd,0x01,0x4d,0x64,0xee,0xd7, + 0x8f,0x3c,0x15,0x74,0xc0,0xdc,0x97,0xea,0xe9,0xe5,0x2c,0xf3,0x2f,0x33,0x62,0xa5,0xfd,0x79,0xe6,0x7f, + 0xc8,0x08,0x82,0xfc,0x93,0xcc,0xbf,0xca,0xfc,0xc3,0xcc,0x3f,0xcf,0xfc,0xf7,0x99,0xff,0x2c,0xf3,0x9f, + 0x30,0x08,0x2a,0xfb,0x5d,0x65,0x18,0xad,0x5f,0x3d,0xf8,0x12,0x7c,0x9b,0xe1,0xe5,0xf8,0x0e,0xfd,0xeb, + 0xdc,0x5d,0x94,0x43,0x27,0x70,0x1e,0xd1,0xa1,0xbc,0x3b,0xe7,0xcf,0xc7,0xf8,0x04,0x7c,0xd2,0x8f,0x7b, + 0xce,0x3d,0xfa,0x11,0x5d,0x2c,0x91,0x71,0x17,0x19,0xff,0x38,0xd8,0xc7,0xf7,0x71,0xca,0x3f,0xbe,0xe2, + 0xef,0xd2,0xd9,0xf8,0xaf,0x69,0x6e,0x77,0x69,0x91,0x89,0x01,0x9e,0x97,0x6b,0x54,0x5f,0x53,0x35,0x6f, + 0x48,0x13,0xfa,0xba,0x33,0x6b,0x4d,0x2d,0xad,0xff,0xf1,0x15,0x97,0x78,0xc3,0x03,0x86,0xe6,0x43,0x7d, + 0x9c,0xef,0xb2,0x6e,0xd2,0x82,0xb0,0xcc,0x9b,0x4c,0x7c,0x28,0x1c,0xb3,0x9c,0xa5,0x84,0xe7,0x22,0xff, + 0x39,0xd6,0xf7,0x3f,0xd6,0x7f,0x5c,0xee,0x66,0x69,0xb0,0xe7,0xbf,0xc0,0xcf,0xcb,0xdd,0x35,0x92,0xe8, + 0xe7,0x8f,0xf4,0xd3,0x1d,0x7c,0x46,0x17,0x6a,0xd1,0xa7,0xd1,0x24,0xe9,0x3a,0x9b,0xf1,0xf7,0xe0,0x33, + 0x6f,0xcf,0xff,0x86,0x72,0x7d,0x82,0x2b,0x9f,0xae,0xdb,0x31,0x41,0x19,0x95,0xb0,0x7f,0x7a,0xa3,0x3b, + 0x7b,0xfe,0x2b,0x86,0x0a,0x77,0x7d,0xec,0xdd,0xa1,0x41,0xbf,0xcc,0xd8,0x3c,0xec,0x33,0xfa,0xe1,0xff, + 0x84,0x9c,0x00,0x3d,0xb3,0xe8,0x79,0xcf,0xff,0x95,0x12,0x8e,0x07,0x47,0x7f,0x0c,0xc6,0x7d,0x2a,0xfa, + 0x34,0xeb,0x34,0xde,0x71,0xbf,0x4f,0xc2,0xef,0x93,0x5b,0x0c,0x95,0xbc,0x4a,0x1b,0x22,0x8c,0xfd,0xef, + 0x13,0xdb,0x38,0x91,0x2e,0xe1,0x5f,0xd0,0xf3,0xfb,0x8b,0x45,0x5a,0x04,0xaf,0xde,0x1e,0x4f,0xfb,0x7b, + 0xfe,0xcf,0x48,0xe1,0x6f,0x1a,0xc7,0x77,0x59,0x78,0xf4,0x5b,0x42,0x77,0x8e,0x7f,0x4d,0xcb,0x7b,0x78, + 0xc3,0xdd,0x22,0xb2,0x24,0xed,0x55,0x42,0x9e,0x86,0x34,0x0b,0xc3,0x8f,0xfb,0x2f,0xa3,0x25,0x8b,0x64, + 0x8f,0x9c,0xcb,0x5d,0x7e,0x4c,0x71,0xc6,0x90,0xce,0xe2,0x27,0x4f,0x1a,0x04,0xa1,0x33,0x5e,0xaf,0x29, + 0x45,0x7d,0x6b,0xd5,0x50,0x75,0xdb,0x70,0x22,0x3c,0x77,0xc9,0xcd,0x75,0xb9,0x9b,0xcc,0x64,0x9b,0xb3, + 0x30,0x19,0x39,0xd4,0x16,0x9d,0x4a,0x1c,0xca,0x80,0x58,0xc4,0x28,0x14,0x9a,0x5c,0x17,0xc5,0x73,0xae, + 0xb2,0x5b,0xae,0xa5,0x99,0x36,0x26,0xe1,0x6f,0x4c,0x91,0xff,0xab,0x64,0x5f,0x59,0xac,0x6d,0xc4,0x1d, + 0xfa,0xe2,0x3a,0xe3,0x34,0x7b,0x4f,0x7d,0x7f,0x8b,0x74,0x28,0xed,0x83,0x86,0x9d,0x10,0x82,0x56,0xe4, + 0xde,0x20,0x99,0x11,0x8e,0x70,0xfa,0x39,0xf5,0x4f,0xd3,0xbf,0xa7,0xab,0xdc,0xa3,0x43,0xee,0xff,0x8e, + 0x4a,0xd7,0xf1,0xfb,0x65,0x80,0x72,0x82,0xbf,0x83,0x89,0x3a,0x8f,0x2b,0xd5,0x2f,0x0d,0x6a,0x85,0x41, + 0xd1,0xea,0xca,0x80,0x4a,0x4e,0x50,0x43,0xc8,0xa3,0x69,0x92,0x49,0xff,0x2b,0xf4,0x5f,0x35,0x69,0xf7, + 0xca,0xa5,0xb8,0x4b,0xe9,0x63,0xa5,0xfa,0x58,0xa8,0x3e,0xb4,0xcf,0xa2,0xd2,0x5d,0x34,0xbb,0xa2,0x04, + 0x59,0x74,0x18,0x3f,0x7c,0x8b,0xdf,0xb5,0x5e,0x12,0xd5,0xe2,0x02,0xee,0xf1,0x47,0x93,0x01,0x96,0x0e, + 0xa1,0xe8,0x40,0xe9,0xc8,0x2f,0x5a,0x00,0x38,0xa1,0x06,0x67,0x37,0xf6,0xff,0x24,0xcc,0x40,0xd5,0x88, + 0x63,0x00,0xd8,0x41,0x7e,0xaf,0x5f,0xb8,0xbf,0xcb,0xfc,0x8a,0x95,0x08,0xd4,0xa3,0xda,0x6d,0xcf,0x68, + 0xf6,0x1b,0x6a,0x26,0xb0,0xc5,0xde,0xfd,0x34,0x58,0xf1,0xdb,0xab,0xb8,0x37,0x34,0xbc,0x88,0x91,0xa1, + 0x97,0x4a,0x99,0xcb,0x57,0xa1,0x75,0xab,0xf7,0xcb,0xcc,0xdb,0xe9,0xee,0xf9,0x1e,0xab,0x08,0xdc,0xd1, + 0x1e,0x38,0x7e,0x89,0x16,0xbd,0xb0,0xd7,0x88,0xac,0xae,0x9e,0x14,0xe4,0x11,0xf3,0x0e,0x3b,0x90,0x55, + 0x11,0x1b,0xcd,0x83,0xa6,0x69,0x3c,0xab,0xcc,0xe3,0x07,0xba,0xd1,0x8d,0x87,0x37,0x50,0xd7,0x2e,0x83, + 0x5e,0x2f,0xb9,0x2f,0xe7,0x44,0xdc,0xbd,0x40,0x25,0x28,0xeb,0x8d,0xa8,0x9a,0x24,0xf4,0x02,0xfa,0x54, + 0x4f,0x6f,0xd2,0xe0,0xbd,0xbe,0xcb,0x31,0x18,0xc4,0x8e,0x7e,0xe4,0x9c,0xa4,0x2e,0xe5,0xe3,0x0c,0xd0, + 0x1f,0x08,0x89,0x08,0x04,0x9c,0x61,0x6a,0xbf,0x68,0x42,0x81,0xbe,0xef,0xf4,0x9c,0x7e,0x54,0x22,0xd4, + 0x4d,0x7d,0xec,0xfa,0x51,0x95,0x3a,0xad,0x2f,0x40,0x50,0xff,0x4d,0xf8,0xd2,0xf1,0x0c,0x57,0xc4,0x66, + 0x3b,0x95,0x4d,0x68,0x85,0x07,0x32,0xc2,0xb0,0xe6,0xf8,0xd0,0xef,0x68,0xdb,0x92,0x5b,0x93,0xa0,0x2d, + 0x96,0xf3,0x2e,0x6b,0xe0,0xad,0xd7,0x0e,0xfa,0xc1,0x99,0x56,0x78,0x20,0x5f,0xc5,0xbb,0x55,0x26,0x7e, + 0x3a,0x74,0xac,0x25,0x73,0x16,0xe1,0x54,0x57,0xb9,0xfc,0xdb,0x19,0xfe,0x67,0x2c,0x2b,0x20,0x4e,0x70, + 0x7c,0xa7,0x6e,0x4a,0xe2,0xf4,0x89,0x4d,0xf1,0x46,0x27,0x89,0x7c,0xf9,0x74,0x84,0xfa,0xcc,0x87,0x3b, + 0x7d,0x57,0xda,0xc7,0xd8,0x47,0x4e,0xa0,0x4a,0xd2,0xf2,0x06,0x27,0xff,0x36,0x85,0x23,0x24,0x11,0x93, + 0x57,0x5f,0x66,0x47,0xa0,0x28,0x0a,0xa5,0xd8,0x1d,0x70,0xaf,0xb5,0xc5,0xa6,0xa4,0x49,0x88,0xe4,0x81, + 0x1a,0xd7,0xc8,0x95,0xb6,0xd0,0x0d,0x71,0x08,0x1d,0xc6,0xb0,0xd4,0x9c,0x42,0x8a,0x77,0xee,0x5c,0x52, + 0xc3,0xae,0x6c,0xb9,0x8c,0xd7,0x09,0x32,0x8f,0x3b,0x4a,0x42,0x9a,0x09,0x15,0xa5,0xcf,0x4b,0x6e,0xc4, + 0xee,0xc4,0xbb,0xa6,0x02,0x8f,0xf6,0x19,0x5d,0xd2,0xb8,0x68,0x00,0x26,0xdc,0xf6,0x11,0x95,0x1f,0x7b, + 0xa2,0xfb,0x82,0x52,0xb4,0x00,0xb5,0x62,0xda,0xfd,0x0b,0x65,0x79,0xba,0x4e,0x95,0x4e,0xa9,0xfd,0x03, + 0xe8,0x11,0x48,0x7d,0x03,0x5f,0x77,0x26,0x0c,0x87,0xce,0xc7,0x41,0x8b,0x60,0xba,0xbf,0x09,0x2a,0xad, + 0xed,0xb6,0x36,0xcb,0xa5,0x3a,0xad,0x45,0x43,0xe8,0x86,0xfa,0xee,0xf1,0xe0,0xb3,0x8f,0x01,0x71,0x80, + 0xa0,0xa5,0x13,0xb2,0x15,0xab,0x34,0xf0,0x15,0xe1,0x35,0xf6,0x1f,0x8f,0xdb,0x4b,0xa2,0x06,0xc3,0xef, + 0xb6,0x9a,0x17,0x02,0x20,0xc1,0x8e,0x9b,0xae,0xa5,0x1d,0x59,0x15,0x0c,0x0a,0xba,0x7d,0xfe,0x2a,0xcc, + 0x46,0x7a,0x94,0x81,0xca,0x80,0x0e,0x1a,0x41,0x6f,0xa0,0x46,0xe5,0x2f,0xc2,0xc6,0xb1,0x96,0xf5,0x19, + 0x02,0x5d,0x77,0xe7,0x29,0xab,0x71,0x78,0x2c,0x91,0x32,0xbc,0x40,0x0b,0x5e,0x99,0xa1,0xbc,0x59,0xf1, + 0x8a,0x2c,0xbc,0xe1,0x84,0x0a,0xd0,0x6d,0x07,0xb0,0xaa,0xb5,0xa3,0xf4,0x4c,0xcc,0x23,0xe5,0xd0,0xe9, + 0xcf,0x3c,0x5f,0x76,0x42,0xfa,0xf7,0x1d,0x7d,0x7e,0xd4,0x6a,0xaf,0xfc,0x59,0x25,0x59,0x71,0x8b,0xf5, + 0x1a,0x0a,0xd3,0xb2,0x0f,0xa7,0x8b,0x15,0xdd,0x4e,0x4e,0xfd,0xe9,0xca,0xd1,0xe6,0x82,0xd5,0x46,0xec, + 0x7c,0x9d,0xd6,0xc5,0x84,0x84,0x49,0x3b,0x71,0xbf,0x79,0x85,0x65,0x1a,0xb1,0xc5,0x18,0x5f,0x8a,0x06, + 0x83,0x0c,0xd7,0x22,0x91,0x00,0x3c,0x05,0x86,0x2d,0x25,0x78,0xf0,0x1b,0xe6,0x79,0x6e,0x6e,0xc2,0x10, + 0x5d,0x9d,0x0d,0x6c,0x88,0xb1,0x7c,0x43,0xf4,0x54,0xd4,0xe5,0x92,0x02,0x84,0xac,0x72,0xc0,0x05,0x61, + 0x25,0x71,0x45,0x28,0x17,0x13,0xd5,0x5e,0xc9,0x49,0x83,0xdf,0x73,0x38,0xdc,0x79,0x1a,0xff,0x18,0xcf, + 0xca,0xd7,0xcb,0x38,0x45,0x91,0x32,0xf3,0x6b,0x4b,0x11,0x14,0x89,0xdf,0x90,0x85,0x06,0x3f,0xc5,0xbe, + 0x25,0x3c,0xf8,0x2e,0x23,0xfe,0x61,0xba,0x9a,0x74,0xab,0xdc,0x70,0x2c,0x47,0x3e,0xe5,0x3a,0x40,0x96, + 0x0e,0xf9,0xe7,0xb1,0x47,0x88,0xc1,0xbb,0x2c,0x21,0x30,0xf1,0xb1,0x22,0xff,0xee,0x26,0x51,0x7b,0x70, + 0xf4,0x02,0x68,0xe7,0x3b,0x1b,0xf0,0x0f,0xc9,0xba,0xaf,0x4f,0x82,0x4f,0xbc,0x4b,0x92,0x2a,0x77,0x1e, + 0xbe,0x79,0x18,0x93,0xe8,0x42,0x7d,0x37,0x1e,0xe1,0xc4,0xc6,0xf0,0x8c,0x0a,0x81,0xd1,0x0f,0x86,0xe5, + 0x3b,0xbe,0xba,0x73,0x32,0xee,0xaf,0x8f,0x89,0xc2,0xf6,0xc6,0x9f,0x8d,0x8e,0x3d,0xb0,0x7b,0xe1,0xe3, + 0xf5,0x1f,0x7a,0x04,0xf4,0xf3,0xd8,0xdd,0xf3,0xbf,0x57,0x35,0x8e,0x88,0xad,0x23,0xe6,0xee,0xe4,0xce, + 0x18,0x55,0xc7,0xe0,0x0c,0x89,0xba,0x6e,0x24,0xae,0x8f,0x8f,0xee,0x11,0x7d,0x7f,0x6f,0x4c,0x1f,0x0e, + 0x7d,0x38,0xf8,0x20,0x32,0x18,0x7f,0x9a,0x65,0xc7,0xde,0x67,0xd4,0x2c,0x51,0xee,0xdf,0x82,0xd4,0x29, + 0x26,0xc1,0xfd,0x7f,0xc2,0x99,0x51,0xf0,0x95,0xa8,0x59,0x04,0x07,0x0f,0x7c,0x59,0xef,0x07,0xf7,0xfd, + 0xd5,0x32,0x78,0xf0,0x25,0x71,0xc8,0xb3,0x32,0x78,0xf0,0x4f,0x3f,0xc7,0xeb,0x49,0xf0,0xe0,0x2b,0x1f, + 0x5e,0xb0,0x83,0x87,0xfb,0xbe,0x3c,0x60,0x06,0x47,0x5f,0xfa,0x0f,0xbf,0x20,0x26,0xe4,0x5f,0x59,0x97, + 0x5f,0x2e,0xa0,0x9c,0x3e,0x80,0xc7,0xf2,0x99,0x35,0x24,0xb6,0xe9,0xf7,0x0c,0xc2,0x20,0x82,0x07,0x7d, + 0xa8,0xf1,0x03,0x00,0x12,0xcd,0x23,0x11,0x21,0x0e,0xa1,0x51,0xc1,0x79,0xa6,0x8c,0xfa,0xfd,0x5c,0x1e, + 0x1c,0xb9,0x08,0xe2,0x92,0x05,0xff,0xca,0xdc,0x3a,0x6e,0xe8,0x11,0xc6,0xe9,0xa9,0x94,0xc9,0x2a,0xc7, + 0x26,0x1d,0x72,0x06,0x1d,0xe0,0x49,0x99,0x2f,0xb8,0xc6,0x8e,0x2e,0x40,0x09,0x3f,0x40,0x43,0xd7,0x67, + 0xdf,0xa1,0xb5,0x3c,0x4e,0x91,0xcc,0x68,0x51,0xcf,0xa2,0xdf,0x92,0x01,0x79,0x41,0x2d,0x07,0x09,0x92, + 0xc5,0x6b,0x87,0xac,0x7b,0xe2,0x15,0xea,0x1e,0x08,0x23,0x29,0xd5,0xbb,0x7b,0x57,0x8f,0x50,0xf2,0x78, + 0xcc,0xfb,0x68,0x2f,0x99,0x4e,0x17,0xf1,0x27,0x55,0x3b,0x80,0x5c,0x81,0xf7,0xe7,0x53,0x6a,0xdd,0x07, + 0xfc,0xff,0x46,0x1b,0x41,0x5c,0x63,0xd3,0x1f,0x0b,0xdc,0xc0,0x55,0x51,0xed,0x3a,0x36,0xf6,0x64,0x2e, + 0x1b,0xeb,0xd7,0x30,0xc4,0x06,0xde,0x4a,0xd2,0xb6,0x1f,0x1c,0x34,0xc7,0xe1,0xf3,0x2a,0x6b,0xa1,0xaa, + 0xa5,0x53,0x6a,0x29,0xa5,0x96,0xee,0x41,0xfe,0x45,0xe7,0xad,0x0f,0xe6,0xbb,0x6a,0x15,0x77,0x9f,0x45, + 0x49,0xc3,0xd1,0x51,0xa5,0x8e,0x88,0xc7,0xb0,0x91,0x90,0x3a,0x81,0xa2,0x99,0xbc,0x1b,0x8a,0x73,0xf4, + 0x69,0xc7,0x57,0xe5,0x1d,0x4f,0x8d,0x79,0xb2,0xc8,0xa2,0x73,0xc4,0xd5,0xfd,0xcf,0xac,0xed,0xf5,0x34, + 0x33,0xce,0x32,0xf9,0x27,0x24,0x91,0x74,0x27,0xe2,0xcf,0x7a,0xfd,0xbb,0x4a,0x34,0xc2,0xcb,0x22,0xfc, + 0x0d,0x62,0x78,0xad,0x98,0xee,0x98,0x8c,0x67,0xc4,0x31,0x68,0x0f,0xee,0x78,0x67,0xfc,0x36,0x4e,0x11, + 0xc1,0xaf,0x5e,0x5a,0x49,0x1d,0x4d,0x39,0xc3,0x71,0x84,0x97,0x2e,0x2b,0x5a,0xfc,0x96,0xb1,0x69,0xb4, + 0x49,0xf7,0x4c,0xf4,0xae,0x1a,0x02,0x5d,0xaf,0x9f,0xa5,0x43,0xe5,0x1b,0xf9,0xc3,0x69,0x6c,0x02,0x31, + 0x76,0x6c,0xe4,0x8e,0x31,0xe3,0x55,0xfe,0x31,0xd3,0x49,0xfc,0x02,0xd6,0x5a,0xfc,0xab,0x19,0x70,0x10, + 0x3e,0xba,0xe3,0x28,0x74,0x6d,0xa1,0xd0,0xf1,0xf1,0xa9,0xd3,0x77,0xa6,0x84,0xc3,0x67,0x10,0xc0,0x11, + 0xd0,0x97,0x08,0xa8,0x4b,0x8b,0xfc,0x81,0x1d,0xb3,0x4d,0x20,0xfc,0xc3,0xb5,0xe7,0x5f,0x25,0xe5,0x99, + 0x1f,0x5d,0x45,0x49,0xe9,0xb3,0x61,0x80,0xcf,0x3e,0xd0,0x95,0xf2,0x3c,0x3f,0x03,0xf9,0xec,0xb8,0xd4, + 0xe7,0xb8,0xf4,0xfe,0x15,0xa1,0xd5,0xd8,0xff,0x00,0xa9,0x9f,0x42,0x36,0x3e,0x31,0x67,0x19,0xbc,0x1d, + 0xb2,0x27,0x16,0x5f,0x66,0xa0,0x3d,0x80,0x69,0xbf,0x8b,0xe2,0x2e,0x94,0xd8,0x18,0x09,0x51,0xcf,0x4e, + 0xd0,0x92,0x74,0x05,0xd7,0x3d,0xa7,0xab,0xf9,0x1c,0x62,0x42,0xb5,0x0a,0x55,0xd0,0x15,0x47,0xf9,0xa9, + 0xc1,0x9d,0xa0,0x6e,0x07,0x9a,0xd6,0x1a,0x53,0xf3,0xfa,0x3c,0x43,0x09,0x12,0xdc,0x98,0xb3,0x0c,0x4a, + 0xfc,0x8e,0xb2,0x02,0x7b,0x67,0x3b,0x84,0xd2,0x81,0xf0,0x8f,0x8f,0x09,0xe5,0xd3,0x3f,0x55,0xab,0x8d, + 0x0c,0xea,0xc3,0x7d,0xd6,0x94,0xfc,0x88,0x28,0x62,0xab,0xd5,0x28,0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7, + 0xe1,0xce,0x81,0xe7,0x9f,0x66,0x6a,0x3f,0xd9,0x40,0x0c,0x12,0x6e,0x2b,0x62,0xcb,0x30,0x7d,0xf4,0x21, + 0xb3,0x9d,0xb3,0x7c,0xc8,0xd8,0x0e,0x17,0x2f,0x39,0x67,0x59,0x58,0x56,0x50,0x7d,0x8a,0x5f,0xfa,0xae, + 0x07,0x38,0xf9,0x27,0x48,0xb1,0x6e,0x72,0x4e,0xbc,0x42,0x62,0xe3,0xaa,0xe6,0x8c,0x8b,0x0c,0xa0,0x5d, + 0x76,0x1c,0x84,0x57,0x72,0x10,0xe6,0xcd,0x02,0x4d,0x31,0x0d,0x95,0xf9,0xd0,0x2a,0x93,0x15,0x65,0xb3, + 0xd0,0x25,0x86,0x40,0x3b,0x91,0x5c,0x24,0x25,0x02,0x22,0x2a,0xa3,0x5c,0x22,0x4f,0x59,0xf9,0x64,0xe7, + 0x80,0x75,0x3d,0x11,0xe3,0x1c,0xa7,0xe3,0xd7,0x33,0x2a,0xc5,0xc3,0xf4,0xb1,0x5e,0xa0,0x53,0x0f,0x5a, + 0x96,0x19,0xcd,0x45,0xa6,0x5f,0x8b,0x3e,0x5e,0xf0,0xa0,0xd6,0xba,0x3a,0x95,0xb7,0x05,0xd7,0xb6,0x9a, + 0xce,0xb5,0x1f,0x01,0xd6,0xbf,0xf3,0x8b,0x2a,0x7e,0xbd,0x68,0xf2,0x2d,0x3c,0xf5,0xf6,0x86,0xe7,0x86, + 0x1c,0x3f,0x65,0xc7,0x1a,0x0f,0xb2,0x94,0xcc,0xaa,0xfe,0x49,0x18,0x55,0x41,0xed,0x93,0xc7,0x21,0x71, + 0x3d,0x11,0x42,0xc1,0x2c,0x74,0x51,0x1c,0x72,0x9a,0x57,0x81,0x90,0x6a,0x9a,0xa6,0x0c,0xf9,0xd9,0x17, + 0xa5,0x2d,0x03,0x4c,0xbb,0xa1,0xc9,0xe3,0x30,0x19,0x4e,0xa8,0x42,0x39,0x60,0x2f,0x2b,0xfc,0x87,0xfd, + 0xad,0xb3,0x64,0x02,0xe3,0x1f,0xea,0xe2,0x21,0x16,0x30,0xe1,0x6e,0x77,0x0f,0x38,0x9f,0xb9,0x23,0xe7, + 0x34,0x07,0x85,0x57,0x8c,0x98,0xb0,0xca,0xd9,0x69,0x3d,0x7f,0xd0,0xfc,0x69,0xb9,0x77,0xf6,0xc5,0x33, + 0x82,0xb3,0xe4,0x52,0x1c,0x07,0xb7,0xb3,0xdc,0x01,0x97,0xf3,0x6b,0x03,0x91,0x15,0xa4,0x45,0xd5,0xce, + 0x11,0xe0,0xe9,0x04,0x9b,0x08,0x65,0xf4,0x4a,0x2a,0x43,0x5b,0x56,0x0e,0x2a,0xfa,0x92,0xa1,0x6d,0x85, + 0x17,0xe7,0x06,0x55,0xc9,0x19,0x0b,0x5a,0x94,0x78,0xc8,0x42,0xbe,0x84,0x10,0x38,0xb1,0x24,0x4f,0x32, + 0x37,0x33,0xea,0x6c,0xb0,0x4b,0xcd,0x1a,0x6f,0xe2,0xcb,0xf0,0x6d,0x76,0x34,0x45,0x88,0x28,0xfe,0x5b, + 0x93,0x7f,0x13,0x01,0x77,0x5c,0x1c,0x1f,0xbf,0x25,0xd2,0xcd,0x73,0x1f,0xed,0x39,0xfd,0xa9,0x16,0x84, + 0x7b,0x74,0xe2,0x13,0xf0,0xd2,0xb0,0xce,0xd2,0xa2,0xed,0xa5,0x2d,0xd3,0x66,0xf0,0xd0,0x90,0x66,0x2c, + 0x61,0x7d,0x1a,0xcf,0x94,0xf9,0x3f,0xe5,0x77,0x12,0x0b,0xc7,0xb1,0x91,0xc3,0xca,0x01,0xd5,0x1e,0xc4, + 0xe8,0xd4,0x77,0x21,0x3d,0xef,0xee,0x3e,0xde,0x9b,0x13,0x8b,0x41,0xb7,0xbe,0x5d,0xe4,0xf8,0xe8,0xd9, + 0xf3,0x27,0x87,0x4f,0x8e,0x8f,0xaa,0x92,0xe3,0xb1,0x29,0x09,0xa1,0xb2,0x3b,0xf5,0xc5,0xed,0x32,0xf4, + 0x59,0x94,0xcf,0x26,0x0e,0xa3,0x77,0x16,0xc9,0x45,0xc9,0x1f,0x50,0x82,0x70,0x20,0x7f,0x21,0x98,0xd7, + 0x3a,0x3a,0xbb,0x67,0x7a,0xbc,0x71,0x78,0xe6,0xe7,0xd4,0xd0,0x62,0x77,0x86,0x48,0xd4,0xc6,0x0e,0xe9, + 0x32,0xb4,0x94,0x01,0x1e,0x89,0x0c,0x00,0x6a,0x98,0x97,0xbc,0xf8,0x8b,0x4c,0x47,0xd4,0xd2,0x16,0x64, + 0xb6,0xea,0xc0,0xee,0xf1,0xfb,0x07,0xb1,0x54,0xb9,0x60,0xf0,0x2d,0x55,0x78,0x46,0x44,0xaa,0x50,0x2a, + 0x88,0x2a,0x3c,0x82,0x72,0x58,0x52,0x9d,0xc2,0x87,0x3e,0x6c,0x6d,0x53,0xf7,0xa2,0xff,0x80,0x58,0x3c, + 0x85,0xea,0x37,0xd0,0xeb,0x9a,0x35,0xfa,0x9c,0xdb,0x7d,0x8e,0x1f,0x4b,0x7f,0x73,0xee,0x2f,0x75,0xe7, + 0xfd,0xfb,0x76,0x75,0x94,0x87,0x86,0x34,0xbb,0xa7,0x75,0x57,0xa2,0x72,0xf8,0x01,0x05,0x3f,0xe0,0x6d, + 0x59,0x07,0x34,0x34,0x15,0x50,0xfe,0xd4,0x94,0x9f,0x48,0xf9,0x53,0xe9,0xf7,0x24,0x5c,0x0c,0x53,0xf7, + 0xd4,0xaa,0x47,0x0b,0x78,0x7a,0x74,0x30,0xf6,0x4f,0x98,0x2d,0xb5,0xdb,0xb8,0x6a,0xc6,0x4a,0x29,0x4d, + 0xa3,0x91,0x34,0x6a,0x22,0xff,0x5d,0x6b,0x8f,0x7f,0x25,0x9a,0x62,0xce,0x23,0xc0,0x61,0xc1,0x29,0x0b, + 0x16,0x1b,0xea,0xb2,0xb4,0x87,0x6a,0x9d,0xaa,0xe1,0x0e,0x0e,0x83,0x6a,0xb6,0xc8,0xd8,0xf8,0x23,0x33, + 0x09,0x39,0x25,0x0c,0xbd,0xd4,0xcd,0x6a,0x03,0x56,0xfe,0x23,0x75,0x20,0x4e,0x9c,0xa7,0xca,0x06,0x73, + 0x85,0xb3,0xf8,0x96,0x6e,0x71,0x42,0x1b,0x18,0x4c,0xea,0x26,0xf5,0xca,0xf0,0x7d,0xbe,0xf0,0xf3,0xcd, + 0xc6,0x15,0xab,0x29,0xef,0xba,0x15,0x6a,0x21,0x0d,0x8d,0x9b,0x42,0xb6,0xba,0xa8,0xda,0x64,0xee,0x5f, + 0x30,0x0a,0x9d,0xdf,0x54,0x5c,0x87,0xe7,0x34,0x0a,0x7f,0xc5,0x9f,0x99,0x38,0x80,0xce,0xf9,0x81,0x5c, + 0x4f,0x73,0x11,0x4e,0xd8,0x5b,0xc3,0xce,0x4e,0xc2,0x3e,0x78,0x64,0xf8,0x0a,0x86,0xa7,0x7c,0xa8,0x45, + 0x32,0x35,0xc3,0x89,0xdf,0x1f,0x2e,0x1f,0xcd,0x86,0x4b,0xad,0xe4,0x77,0xa6,0x2b,0x1c,0x2d,0xc7,0xc3, + 0x25,0x75,0xba,0x0b,0x6b,0xb9,0x33,0xcc,0x49,0x03,0xd0,0x3d,0xc7,0xb9,0x87,0x75,0xe3,0x37,0xaa,0xb3, + 0xa3,0x07,0xe3,0xbb,0x77,0x95,0x42,0x27,0x7e,0xf8,0x2a,0xf9,0xa1,0x9d,0xfc,0xd0,0x24,0x7f,0x6e,0x27, + 0x7f,0xae,0xac,0x09,0x2f,0xb9,0x99,0xf5,0x1a,0x05,0xf1,0xef,0xe7,0xf4,0xaf,0xe3,0xf8,0x17,0xa1,0x13, + 0x69,0x17,0xd7,0x70,0xdf,0x2c,0x2d,0x1c,0x8c,0x47,0xfa,0x8c,0x3c,0x8f,0xe1,0x52,0xf7,0x55,0x7c,0x05, + 0x97,0xa8,0xc5,0x37,0x59,0xfe,0x1d,0x95,0x0a,0xba,0x73,0x87,0x53,0x9a,0x91,0xd2,0x5d,0x47,0x23,0x3e, + 0x93,0xd8,0xc1,0x0f,0xa5,0x7b,0x49,0xc7,0x68,0xb3,0x59,0xb0,0xea,0x33,0x6f,0x32,0x2b,0xb0,0x12,0x02, + 0xb5,0x6f,0x9c,0x20,0x6d,0xe0,0x4a,0x81,0xba,0x29,0x3c,0xd2,0x87,0x1c,0x17,0xa1,0x81,0xec,0x53,0xd8, + 0x92,0xf1,0x93,0x37,0xfd,0x82,0x47,0x9b,0x74,0xea,0x6d,0x68,0xfb,0x81,0x8b,0x32,0x3f,0x66,0xd7,0x0b, + 0x07,0xcd,0x73,0x77,0xa8,0x4d,0xc6,0xcf,0xf5,0xc7,0x7b,0xf5,0x01,0xd8,0xb9,0x34,0xf7,0xdb,0xb9,0x71, + 0xec,0x7c,0xe9,0x11,0x48,0x4f,0xd4,0x71,0x3f,0x87,0x1b,0x57,0xeb,0x7b,0x61,0x7d,0xcf,0xac,0x6f,0xf7, + 0x7d,0x78,0x6e,0x63,0x2c,0x9f,0x70,0xe1,0xa3,0x7d,0x02,0xfd,0xcb,0x7e,0xf8,0xde,0xaf,0x35,0x7e,0x58, + 0xbb,0xf7,0xf7,0xfd,0x4b,0x20,0x9c,0x4b,0x6f,0x73,0xc9,0xe2,0x48,0xca,0x25,0xac,0x08,0xcb,0x71,0x83, + 0x49,0x0f,0x2b,0x64,0x7a,0xc8,0x3a,0xa6,0xb1,0xa8,0x29,0xb7,0x50,0x6d,0xac,0x4d,0x64,0x37,0xb9,0xcb, + 0x32,0x22,0x89,0x12,0x72,0x96,0xf9,0xd6,0x33,0x44,0xed,0xf6,0xb3,0x24,0x2b,0xf6,0x35,0xd8,0x21,0x54, + 0x69,0xdd,0x88,0x7e,0x17,0x48,0x6c,0x81,0x94,0xce,0xb2,0x37,0x03,0x97,0xca,0xf5,0x5b,0xa8,0x3b,0x30, + 0x98,0xbb,0x50,0xe8,0xc9,0xba,0x16,0x23,0x58,0xbf,0xca,0x89,0x15,0x01,0x69,0xb1,0x5e,0x5f,0xe1,0x8d, + 0x73,0xf8,0x0a,0x20,0x0f,0x97,0xd9,0xb4,0x76,0x88,0x72,0x55,0x0f,0x48,0x51,0x29,0x3b,0x13,0xd2,0x13, + 0xd2,0x36,0xb6,0x29,0x5b,0x2d,0xbc,0x44,0x7c,0xd4,0x5f,0x32,0xad,0x3b,0x99,0x2a,0x9d,0x49,0xf9,0x0a, + 0xe5,0x8f,0xb9,0x44,0x7f,0xce,0x7c,0xd9,0x46,0x3e,0x01,0xa0,0x45,0x4c,0x0c,0x3d,0x28,0x97,0x2b,0x79, + 0xe2,0xf7,0x25,0x0f,0x3b,0xa1,0x0b,0x12,0x12,0x45,0x1a,0x31,0xe8,0xb9,0x1d,0xe5,0x40,0x9f,0x3d,0x2a, + 0x4e,0xc3,0x99,0x27,0xca,0xcc,0xfa,0x39,0x1a,0xc9,0x53,0x51,0xbe,0x9e,0xd6,0xe5,0xa9,0x34,0x49,0x88, + 0xed,0xf6,0xde,0x45,0x97,0x91,0x5d,0xb6,0x56,0x88,0xc6,0x8c,0x18,0xb5,0x1e,0x77,0x48,0x53,0x3f,0x65, + 0x4f,0xf0,0x1c,0x88,0x52,0x2f,0xc4,0x54,0xe1,0xb1,0xb9,0x21,0xf0,0x81,0xcf,0x66,0xe1,0x3c,0xa3,0x33, + 0xef,0xce,0x88,0xa4,0x25,0xf8,0x67,0xc5,0x40,0x9a,0xff,0x45,0x38,0xf3,0xcd,0x43,0xe3,0x05,0x1e,0xd5, + 0x20,0xbb,0x43,0xf3,0x17,0x20,0x95,0xd9,0xd4,0x60,0x56,0xf1,0x15,0xfb,0x1e,0x33,0x16,0x33,0x8b,0xb1, + 0xc0,0x8b,0x64,0x67,0xf4,0x62,0x23,0x2c,0x33,0xee,0x2e,0xed,0x28,0x8d,0xe6,0x55,0xd5,0x42,0xc1,0xa5, + 0xf6,0x43,0x53,0x72,0x04,0x4f,0x78,0xe9,0x51,0x38,0xca,0x6a,0x8d,0x12,0x25,0x2e,0x89,0xa0,0xac,0x86, + 0x92,0x4f,0xa3,0xa0,0x84,0x25,0xdd,0x68,0x8f,0x9a,0x34,0x0f,0xd6,0xb5,0x63,0xa1,0x9d,0x44,0xc5,0x9e, + 0x79,0xc1,0xac,0x7a,0x0b,0xa5,0xdc,0x7f,0xc1,0x98,0xbf,0x23,0x52,0xa9,0xf5,0x66,0xab,0xee,0xdf,0x18, + 0x8f,0xa6,0x25,0x1e,0x19,0x63,0x79,0x64,0x2c,0xd5,0x23,0x63,0xbc,0x51,0x46,0xd6,0x1d,0x4f,0xb8,0xa2, + 0xcb,0xac,0x9e,0x1f,0x75,0xec,0xc4,0xe6,0x83,0xae,0xd6,0x66,0x52,0xef,0x92,0x70,0xa8,0x8b,0x41,0x5d, + 0xda,0x9b,0x75,0x89,0x0a,0x60,0xd2,0xb9,0xc9,0x4b,0xe6,0xd7,0x79,0x37,0xbe,0x2d,0x79,0x93,0x69,0x2d, + 0x47,0x1a,0x02,0xd6,0xeb,0x9c,0xc6,0xca,0x30,0x23,0x4d,0x12,0x04,0xf0,0x17,0x55,0xa5,0xe1,0xe7,0x32, + 0x7c,0x9d,0xa9,0x66,0x31,0xdb,0x78,0x41,0x4e,0x3d,0xd2,0x69,0xdc,0xb1,0x60,0x0d,0x26,0x42,0xad,0x66, + 0x76,0x6e,0xe6,0x55,0xed,0x53,0x6a,0x0e,0x27,0xc7,0xd7,0xd3,0x16,0xe8,0x31,0x87,0xd6,0x03,0x80,0x6b, + 0xc9,0x2d,0x25,0x20,0x28,0x6c,0xb6,0x84,0xe9,0xaf,0x5b,0x39,0xb9,0xe1,0xb5,0x49,0x79,0x3a,0xbf,0xe3, + 0x62,0xe1,0xa1,0xc7,0xf5,0xa1,0xc3,0x22,0x83,0x16,0xcc,0xc8,0xd8,0x67,0x03,0x58,0x28,0xb0,0xd3,0x2f, + 0x8e,0x22,0x2e,0xdb,0x7f,0x20,0xfa,0x24,0xa1,0xe4,0x8a,0x5c,0x70,0xbd,0xbe,0xe7,0x28,0xf9,0x81,0x73, + 0x6f,0x48,0xdd,0xd6,0x82,0xbd,0xd5,0x7f,0xb3,0x19,0xc1,0xd1,0xd9,0x38,0x9c,0x89,0xb1,0x75,0x35,0x46, + 0xc1,0x1b,0x33,0x3e,0x3a,0x12,0x96,0x2d,0x91,0xab,0xdd,0xbf,0x18,0xae,0x46,0x29,0x80,0x8e,0x28,0xaf, + 0x99,0x9f,0xe9,0x82,0x88,0x33,0x96,0x76,0xe8,0xd5,0x67,0x47,0x99,0x61,0xdb,0xc6,0x7e,0x69,0xb9,0xc7, + 0x3a,0x6a,0xf9,0xc4,0xa2,0x12,0x08,0xbe,0xfc,0x00,0xda,0x20,0x1a,0xa1,0xf4,0x1c,0xf9,0xc5,0xee,0x14, + 0x76,0x26,0xd0,0xb4,0xae,0xc6,0x88,0xa5,0xf5,0x4d,0xfb,0xe1,0x01,0x91,0x5b,0xf5,0xfe,0x52,0x71,0xb8, + 0x8d,0x0b,0xaa,0x26,0xe5,0xd7,0xc1,0xc5,0x5e,0xa5,0xf6,0xd3,0x91,0x78,0x34,0x01,0x62,0x4b,0x2a,0x9c, + 0xb5,0xac,0xdc,0x71,0xc0,0xb4,0xdb,0x33,0xa7,0xa9,0xe6,0xfc,0x23,0x0e,0x27,0x08,0xfc,0x28,0x4f,0x38, + 0x23,0x17,0xa1,0x36,0x9d,0x8a,0x0b,0xca,0xb5,0xad,0x0a,0xa3,0x55,0x9d,0x30,0x8a,0x83,0xa7,0x19,0xbb, + 0xf5,0x63,0x97,0xe7,0x32,0xea,0x11,0xcd,0x18,0xe2,0x3c,0xe5,0xf1,0x6d,0xa7,0xe0,0x35,0xd8,0x61,0xdf, + 0x7d,0x6e,0x53,0x7a,0x22,0x50,0x7a,0x99,0x8d,0x7e,0x4f,0xdc,0xcb,0xcc,0x0b,0xbe,0x4d,0x98,0x5b,0xaf, + 0x98,0x05,0xe3,0xfc,0xcd,0xb7,0x58,0x50,0xfa,0x67,0x02,0x17,0xbe,0x51,0x51,0xbe,0x00,0xd1,0x00,0x84, + 0xc5,0xf1,0x7c,0xe2,0x09,0x2e,0x2b,0xef,0x9a,0x76,0x36,0x17,0x7a,0xc2,0x7b,0x8c,0xa7,0x26,0x4d,0x2c, + 0x1b,0x42,0x62,0x02,0x2b,0x5d,0x5f,0x91,0x57,0x0d,0xfc,0x95,0x69,0x0d,0xc5,0x55,0xf8,0xaf,0xd8,0xb5, + 0xdd,0x21,0x0f,0x55,0x05,0x79,0x8c,0x59,0xc9,0x23,0x94,0x6a,0xfb,0xda,0xf9,0x8f,0x53,0xd1,0x14,0x74, + 0xa0,0x33,0x41,0x03,0x4c,0xfa,0x79,0x45,0x79,0xeb,0xdb,0x6b,0xf2,0xa8,0x32,0xb5,0xe8,0x18,0xd6,0x8d, + 0x83,0xe2,0x73,0x06,0x8d,0x3e,0x18,0x24,0x45,0x4a,0xa4,0xd5,0x67,0x75,0xc1,0xf3,0x38,0x2d,0x82,0x62, + 0xc3,0x91,0x81,0xbc,0x51,0xa9,0xc9,0x46,0x58,0x81,0xde,0xf7,0xad,0x5a,0x58,0x24,0xfd,0x43,0x57,0x03, + 0x21,0x89,0x0f,0x79,0xd3,0xa2,0x73,0x1b,0x08,0xcc,0xc6,0xd5,0x9e,0x1a,0x30,0x3e,0x2a,0x2b,0xd8,0x64, + 0x90,0x86,0xd2,0xb8,0xd5,0xd9,0x03,0xd3,0x88,0xd0,0x8f,0x39,0x1b,0x84,0xb7,0xdc,0xc4,0x37,0x8f,0x69, + 0xbd,0xb2,0x6f,0x6c,0xdd,0x82,0x9d,0x7d,0x36,0x8f,0x20,0x76,0xc5,0xd5,0xb0,0x89,0x38,0xc6,0x4a,0x90, + 0x04,0x69,0xf0,0x45,0xf2,0x67,0xcc,0x72,0x1c,0x36,0x85,0xf2,0x21,0xd3,0x39,0xcc,0xc2,0x7f,0x67,0xc0, + 0x13,0xd6,0x73,0x13,0x68,0x89,0x73,0xbc,0x92,0xb6,0x64,0xb3,0xe6,0x9e,0x81,0x09,0x8f,0xb8,0x92,0x51, + 0x35,0x43,0xba,0x5b,0x4b,0xff,0x3e,0x75,0x35,0x51,0x87,0xd9,0xc5,0xc9,0x96,0x1f,0xc4,0xce,0xb8,0x3b, + 0x13,0x75,0x2d,0x4f,0x60,0x99,0xa0,0x14,0x45,0xa9,0x33,0xa8,0xe8,0xe0,0xdf,0x19,0x22,0x7f,0xcd,0x53, + 0x97,0x8d,0xa9,0xc0,0x00,0x9d,0x67,0xe6,0xbb,0x6d,0x02,0x6a,0x0c,0x40,0x59,0x0d,0x4a,0xc7,0x85,0x50, + 0x5e,0xa1,0x8d,0xeb,0x20,0xae,0x5e,0xb3,0x24,0x40,0x37,0x95,0x7d,0xa8,0xf1,0x19,0x43,0xc0,0x44,0x3d, + 0x2a,0xa3,0x32,0x84,0x11,0xa4,0x84,0x01,0x02,0xc5,0x7c,0xa0,0x05,0xf2,0xf0,0x3f,0xff,0xc0,0xe0,0x29, + 0xb1,0x5a,0xa0,0xe1,0x95,0x8a,0xac,0x70,0x80,0x8f,0x39,0x2a,0x50,0x65,0x08,0x86,0x1f,0x1a,0xab,0x1c, + 0x39,0x49,0x0a,0x4a,0x73,0xd7,0x8c,0x53,0x5b,0x2d,0xd8,0x32,0x4e,0x8e,0x1f,0xda,0xf4,0x1b,0xa8,0xc3, + 0x53,0x6b,0xfb,0xd8,0x0a,0x9f,0x12,0x79,0x08,0xbf,0x2b,0xbe,0xde,0x3a,0x18,0x2c,0xe9,0xbd,0xd8,0x39, + 0x60,0xe2,0x9d,0xe8,0xec,0xd9,0xb3,0x8c,0x16,0x9a,0xdf,0x01,0xaa,0x80,0xd3,0x84,0x3a,0xa3,0xb0,0x9e, + 0xa9,0xfb,0xcb,0x1e,0x45,0x95,0x67,0xad,0xa2,0x51,0x08,0x9e,0x94,0xf8,0xc2,0xa2,0x9e,0x61,0x15,0xb7, + 0xa5,0x67,0x06,0xe6,0xc9,0x86,0xe8,0xd0,0x1a,0xb8,0x28,0x7f,0x06,0x8d,0x75,0x34,0x55,0x71,0x38,0x32, + 0xf1,0xfe,0x67,0xd2,0x5e,0xa4,0x44,0x9b,0x1b,0x06,0x8d,0x12,0x84,0x01,0xa9,0x2d,0x11,0x15,0x17,0x00, + 0x6f,0xa4,0xaf,0xd7,0x0f,0x6a,0xc9,0xec,0xb6,0x9d,0x5d,0x46,0x28,0xec,0x02,0xd6,0xcc,0xf4,0x04,0x7f, + 0xc4,0x4c,0xe0,0x58,0x20,0x2d,0x69,0x07,0x7e,0xd5,0x46,0x23,0x86,0x7b,0x7b,0xbb,0x74,0x30,0x77,0x08, + 0x7f,0x2d,0x57,0x8f,0x7e,0x0a,0x86,0xbe,0x64,0xe0,0x1b,0xfe,0xbd,0x8d,0x89,0xdd,0x2d,0x7b,0xc2,0x61, + 0x0c,0xe0,0x16,0xea,0xc0,0x28,0x8d,0xb3,0x30,0x39,0x4d,0xd9,0xf0,0x48,0xc9,0x8a,0xaf,0xe9,0x1a,0x20, + 0xee,0x58,0x19,0x61,0x66,0x3a,0x74,0x6d,0xe3,0xb9,0x84,0x32,0x1a,0x29,0x9b,0x7a,0xb0,0x3f,0xb3,0xaf, + 0xa5,0x6b,0x29,0x5c,0xd4,0x8d,0x32,0x63,0x68,0x0e,0xb2,0x69,0xa5,0xb8,0x03,0xca,0xe5,0x05,0xaa,0x7e, + 0xa7,0xb9,0xe5,0x28,0x0b,0x12,0x4f,0x3b,0x42,0xdd,0xa0,0xb1,0x54,0xcb,0xcd,0xd9,0x91,0x8f,0xfa,0x0e, + 0xab,0xe7,0x26,0x7e,0x0f,0xd7,0x0f,0xe5,0xa6,0x30,0x84,0x69,0x35,0xf3,0x65,0xf8,0x8c,0xb4,0xdf,0xa1, + 0x1a,0xa3,0xb3,0x32,0xd7,0x6b,0x31,0x20,0xb5,0xeb,0x5b,0x22,0x19,0x44,0xb1,0xed,0xa5,0x9e,0xa3,0x3a, + 0xc2,0x41,0xa7,0x2b,0xbc,0x8a,0xe8,0xa6,0x53,0xe8,0xfa,0x8b,0xe0,0x11,0x3f,0x1a,0x8b,0x2b,0xa0,0x22, + 0x7c,0x96,0x71,0xf8,0x73,0x2d,0xa7,0x2f,0x06,0x71,0x9e,0x67,0xc4,0x42,0x24,0x74,0x76,0xca,0x64,0x59, + 0x84,0x99,0x5f,0x28,0x24,0x74,0x0d,0x6d,0x8e,0x64,0x11,0x07,0xa5,0xaf,0xbe,0x0e,0xb3,0x6f,0xd4,0x52, + 0x15,0x1d,0xda,0xfc,0x1d,0x06,0xb0,0xad,0xe7,0x00,0xe5,0x43,0x81,0xf0,0x3d,0xbf,0xc1,0x11,0x5f,0xc8, + 0x5b,0xa0,0xde,0xa4,0x7a,0x79,0x65,0x9c,0x90,0xc1,0xcd,0x99,0x79,0x8a,0x18,0x29,0xa3,0x24,0x3b,0xcd, + 0xeb,0xd3,0x85,0xc8,0xb0,0x0b,0xcf,0x69,0x9a,0xbd,0x84,0xe3,0x3d,0xb1,0xa6,0x87,0x5b,0xbc,0x1c,0xca, + 0x9e,0xb0,0xaa,0xc6,0x8e,0x9b,0x39,0x2b,0xfb,0xa0,0x25,0xa2,0x2e,0x2a,0x70,0x9b,0x54,0xc8,0xa3,0x7a, + 0xa2,0x8b,0x9a,0x29,0x75,0x7d,0xbd,0x4a,0xc3,0x61,0x09,0xd8,0x99,0x40,0x3f,0x01,0xfd,0x87,0x04,0x9b, + 0x78,0xd2,0xd8,0x78,0xee,0x9f,0x99,0x37,0x68,0x2f,0x1e,0x15,0x8b,0xc2,0x9d,0x1d,0x78,0xb2,0x3f,0x4b, + 0x5d,0x3c,0x35,0xa5,0xf6,0x6f,0x78,0x7c,0x8a,0x3a,0xad,0x71,0xd8,0x64,0xc8,0x58,0xdd,0x01,0xf5,0x18, + 0x1d,0x13,0xea,0x3b,0x89,0xc2,0x0e,0xcb,0x2a,0x5d,0xfc,0x76,0xa3,0x2b,0xe0,0x3e,0x36,0x4e,0xe2,0x6e, + 0xa0,0x4e,0x5a,0xb3,0xfd,0x24,0xfa,0xd2,0x4e,0xd2,0x1f,0x3a,0x0a,0x73,0x3b,0xb2,0x68,0x2d,0xe4,0x38, + 0xbb,0x35,0x48,0xd5,0x72,0xeb,0xe3,0x09,0x4a,0x51,0xee,0x1f,0x3e,0x8e,0x1e,0x2b,0x67,0xf2,0x4e,0x57, + 0x31,0x08,0x73,0xcf,0xf9,0x87,0x90,0xac,0x26,0x6a,0x02,0x13,0x0c,0x79,0x04,0xb1,0x82,0x71,0xc5,0xb5, + 0x63,0x79,0xee,0xb2,0x87,0x92,0x33,0x29,0xa9,0x17,0x49,0xb8,0x58,0xae,0xdf,0x32,0x59,0xcd,0x56,0x65, + 0xcd,0x63,0x5c,0xcf,0x4a,0xba,0xd9,0x8a,0x4f,0xb4,0xac,0xcd,0xbe,0x34,0xdc,0x49,0x57,0xc6,0x9b,0xcc, + 0xfc,0xdb,0x7b,0x86,0x65,0x96,0x99,0xab,0xdb,0x34,0x86,0x1b,0xbd,0xeb,0x6e,0xe1,0x52,0x74,0xa3,0x20, + 0x29,0x45,0x1c,0x2b,0x7d,0x34,0x82,0xd4,0x3a,0x27,0x9a,0x84,0x43,0xaa,0xfe,0xdc,0xa8,0x48,0xef,0x20, + 0xa9,0xd4,0x09,0x80,0xea,0x59,0x03,0xdc,0x87,0x7a,0xbf,0x08,0x2b,0xa4,0xed,0xd3,0x61,0x4c,0xf6,0x93, + 0x48,0x74,0x60,0xc5,0xbc,0x4d,0xdb,0xb2,0x29,0xb8,0xa7,0x39,0xd1,0xaf,0x8d,0xd7,0x30,0x4a,0x70,0x24, + 0x7e,0x98,0x15,0x1c,0x96,0xdf,0xa3,0xc1,0x6e,0xac,0x52,0x89,0xee,0x38,0x25,0x2c,0xa6,0x32,0x05,0xd1, + 0x8d,0xe4,0xcf,0x40,0x15,0x0d,0x4b,0xb7,0x33,0xcc,0xac,0xd4,0x86,0x5c,0x18,0x7f,0x07,0xd1,0xc5,0x74, + 0x24,0x9f,0x74,0x28,0x89,0xcf,0xfd,0x65,0x15,0xbf,0x38,0xf8,0x32,0x45,0xed,0x4d,0x23,0x08,0x35,0x0d, + 0x6b,0x45,0x00,0x02,0x10,0xa4,0xa1,0x0d,0x2d,0x5a,0x41,0xc6,0xdc,0x31,0x32,0xbc,0xb5,0x67,0x6c,0xb3, + 0xa4,0xbe,0x18,0x85,0xb9,0xce,0xd1,0xe5,0x2a,0xde,0x4d,0xa8,0x9f,0x71,0xcf,0xe9,0xc3,0xcd,0xf6,0xdd, + 0xbb,0xb5,0x02,0x7c,0xa5,0x4f,0xce,0x6d,0x47,0xdb,0x65,0x23,0x20,0x9e,0x30,0x5d,0xed,0x85,0xaa,0x6a, + 0xd8,0x38,0xe8,0x52,0x39,0x53,0xc2,0xb9,0xbd,0xa8,0x3d,0xa7,0x36,0xa2,0xec,0x21,0xcc,0x9e,0x89,0x2d, + 0x61,0x35,0x96,0xd8,0xf1,0xc1,0x45,0x14,0x68,0x1e,0xf5,0x0d,0xf1,0x07,0x89,0x03,0x04,0x81,0x55,0x16, + 0xc8,0x3e,0x75,0x9a,0xa1,0xc6,0x97,0xf0,0x1f,0x7d,0x16,0x58,0x30,0xa1,0x39,0xcb,0x92,0x0d,0xd2,0x89, + 0xac,0xad,0x2b,0xb4,0x72,0xe2,0x28,0x61,0x53,0xc3,0xa0,0x75,0xfc,0x63,0x0e,0x35,0x0f,0x87,0xc9,0x28, + 0x16,0xdc,0xb7,0x1a,0x64,0x91,0xe0,0x8d,0xc5,0x7d,0x17,0x7d,0x1e,0x74,0xf5,0x49,0x89,0xc0,0x23,0x49, + 0x28,0x9f,0xfe,0x35,0x51,0x2c,0x11,0x5d,0x76,0xb9,0xd8,0x27,0x15,0x41,0x62,0x79,0x03,0xcd,0x2a,0x23, + 0x6e,0xec,0x88,0xea,0xd4,0xc0,0x40,0x5c,0x53,0xc9,0xd2,0xb2,0x39,0xa5,0xbe,0xb0,0xb6,0x6c,0x22,0x8f, + 0xb6,0xd8,0xb9,0xc6,0x21,0x02,0x15,0x0e,0xa2,0x53,0x88,0xb1,0x7d,0xcc,0xb1,0x1c,0xc1,0x95,0xb7,0x37, + 0x4a,0x1f,0x1f,0x8c,0x0e,0x82,0xfd,0xe0,0x20,0x88,0x47,0x5c,0xe6,0x22,0x41,0xd5,0xfb,0x5e,0xb0,0xaf, + 0xc3,0xa9,0xc2,0xef,0x96,0x7a,0x1f,0x1a,0x8f,0x52,0x96,0x02,0x31,0xa7,0x15,0x58,0x7b,0x1b,0x59,0x50, + 0xc0,0xac,0x29,0x87,0xfd,0x6e,0x72,0xa9,0x35,0xb7,0xef,0x85,0x2d,0x74,0xb2,0x40,0xc1,0xd7,0x54,0x95, + 0x90,0x53,0xc4,0xc4,0x3c,0x6a,0x81,0x49,0xa2,0xe9,0xf5,0x4c,0xc2,0xf1,0xe0,0xb1,0x41,0x47,0x2b,0xc9, + 0xb4,0x5b,0x8a,0xd0,0xc4,0xd4,0x50,0x4f,0x12,0xe8,0x8c,0x29,0x9b,0xcc,0x9b,0x10,0xc6,0x59,0x85,0x91, + 0x3f,0x17,0xa0,0x86,0x9f,0x46,0xf6,0x3e,0x9a,0x81,0x94,0x19,0x31,0x55,0x53,0x30,0x71,0xe3,0x73,0x4a, + 0xc0,0x29,0xfc,0xa9,0x68,0x7d,0x7f,0xa5,0x17,0x3d,0xaf,0x87,0x28,0x60,0xe2,0x70,0xc1,0x0e,0xb6,0xe1, + 0xe4,0x59,0xb9,0x83,0x33,0x45,0x56,0x95,0x7b,0xdf,0x05,0xab,0xfb,0x42,0xe4,0xd7,0x21,0xf3,0x28,0xb5, + 0xab,0xb3,0xca,0x82,0xf1,0x44,0x20,0x88,0xbd,0xa2,0xdd,0xc1,0xc9,0x1f,0x48,0xc2,0x46,0xb5,0x63,0x61, + 0x13,0x7e,0xc0,0x86,0xa4,0x04,0xf7,0x5a,0x65,0x6a,0xae,0x38,0x2a,0x97,0x1d,0x43,0xc2,0x53,0x20,0x5f, + 0x9a,0x09,0x51,0xea,0x99,0x2e,0x04,0x51,0x22,0xad,0xa0,0x22,0x87,0x52,0xaf,0xf2,0xce,0x43,0xa5,0xcb, + 0xfc,0x83,0x5a,0xd1,0x66,0xfc,0x24,0xa2,0x82,0xea,0x49,0xd2,0x36,0x91,0x88,0x85,0x81,0x5d,0xad,0xae, + 0x10,0x9a,0x17,0x75,0x48,0x09,0x85,0xe5,0x34,0x4b,0x60,0x47,0x23,0x06,0x07,0x95,0x73,0x64,0x66,0x69, + 0x6c,0xbd,0x2e,0x2a,0xd6,0x56,0x54,0x26,0x6c,0xfe,0x35,0x85,0xaf,0x1f,0x3b,0xa1,0x22,0x43,0x27,0x55, + 0xdf,0x2b,0xd3,0xf7,0xa4,0xd5,0xb7,0xd5,0x33,0xe0,0x5c,0xbb,0x82,0xdb,0xb0,0xee,0x53,0xa5,0x06,0x47, + 0xdc,0xf3,0x86,0xa8,0x70,0x31,0x1d,0x49,0x8d,0x6f,0x32,0x70,0xed,0x95,0x66,0x84,0xde,0x8c,0x85,0xcd, + 0x2e,0xa4,0xcd,0x5d,0xcd,0x47,0x3b,0x44,0x58,0xf0,0x6e,0x42,0xec,0xed,0x3a,0x69,0x56,0xd2,0x4d,0x95, + 0x14,0x65,0x4f,0x5d,0x23,0xbd,0x44,0x79,0xfa,0x01,0xe0,0x52,0x9a,0xf9,0xed,0x40,0xe5,0x98,0x3d,0x4c, + 0xd7,0x2b,0xd5,0x2b,0x80,0x2e,0xe8,0xa9,0x4e,0xa5,0x86,0x1d,0x58,0xa2,0x14,0x48,0x94,0x93,0xd4,0x22, + 0x07,0x91,0x69,0x02,0x19,0x36,0xf1,0xe0,0xa8,0x0c,0x63,0x04,0x2d,0xe1,0x73,0xc3,0xf2,0x87,0xf2,0xcc, + 0x87,0x06,0xba,0x00,0x25,0x3f,0x0c,0xd3,0xb9,0x25,0x1a,0xe0,0x1a,0x59,0x44,0xe4,0x1b,0x04,0x88,0x64, + 0xa0,0x3f,0xa2,0xb6,0x45,0xfa,0x4f,0xb4,0x41,0x26,0x0d,0x10,0x7f,0xa0,0x1b,0xa0,0x23,0xca,0x0d,0xe8, + 0xad,0x5f,0xaf,0x27,0x1c,0x59,0x46,0x47,0x6d,0x49,0xcc,0x5a,0x96,0x83,0x93,0xcb,0x52,0xc9,0x50,0x75, + 0x48,0x3c,0x77,0x41,0x3b,0xcd,0xeb,0xea,0x0d,0x4a,0x15,0xc0,0x64,0xe1,0xd3,0x01,0xd6,0x5c,0x54,0xfb, + 0xd0,0xe5,0x16,0x0d,0xcf,0x5e,0x56,0x4d,0xe4,0x78,0x9a,0x62,0x33,0x2e,0x08,0x7c,0xcb,0x97,0xc0,0xf0, + 0xaa,0x58,0xc9,0x42,0x28,0xa2,0x85,0x3c,0x26,0xc1,0xf4,0x59,0x5d,0xd5,0x4e,0xaa,0x58,0x4a,0x29,0x22, + 0xd1,0x75,0x74,0x80,0xde,0xde,0x7f,0x61,0xee,0xff,0x85,0xfd,0xba,0xdc,0x2d,0x7b,0x55,0xdc,0x6c,0x25, + 0x1e,0x57,0x3b,0x5c,0xac,0x96,0x20,0x4b,0x7a,0x62,0xa6,0x23,0x96,0x6a,0xb5,0x80,0x1e,0x7c,0xe4,0xab, + 0x9b,0x57,0x78,0x3c,0x7c,0xa9,0x53,0xe3,0xd0,0xc6,0x39,0x46,0x0b,0x11,0xd4,0x2e,0x34,0x1d,0x99,0xe2, + 0x1d,0x8a,0x62,0x1e,0x8e,0x00,0x74,0x00,0x7b,0x5f,0x1d,0x04,0xf2,0xf7,0x81,0xfc,0x7d,0xf8,0x85,0xfc, + 0x7d,0xf0,0x50,0xfd,0xfd,0x4a,0xa5,0x7f,0x19,0x98,0x00,0x64,0x52,0xe1,0x73,0x55,0x40,0x55,0x78,0xf8, + 0x79,0xa0,0xd5,0x8b,0xa7,0x50,0x75,0x97,0x52,0x0f,0xee,0xab,0xe6,0xe5,0xcf,0xc1,0xbe,0xfa,0xab,0x7a, + 0x3b,0xf8,0x42,0x25,0x7c,0xf1,0xf9,0xfd,0x7f,0xaa,0x32,0x5f,0xde,0xd7,0x95,0xe8,0xeb,0x81,0x6e,0xf4, + 0xaa,0x70,0xcc,0xc3,0xdf,0xe3,0xf0,0xab,0x7f,0x12,0xcb,0xf2,0x28,0x3c,0xb8,0x7f,0x7f,0xbd,0xa6,0x9f, + 0x5f,0x7c,0xce,0x3f,0xbf,0xda,0x1f,0xa9,0xce,0x03,0x4a,0x7c,0xf8,0x15,0x27,0x7e,0xfe,0xcf,0x91,0x23, + 0x86,0x10,0x4e,0xe0,0xf0,0xb3,0x4f,0x47,0x40,0x12,0x2c,0x93,0xdc,0x75,0x0a,0x2e,0x5c,0x67,0xdf,0xd9, + 0xb1,0x82,0x17,0xef,0x43,0x86,0x96,0x14,0xaf,0xa2,0x57,0x12,0x94,0x8d,0x10,0x6e,0xe9,0x7f,0xa3,0xa3, + 0xd5,0x75,0xbe,0xb9,0xd5,0x97,0x5d,0x8f,0xdd,0x34,0xaa,0xb2,0x8c,0x32,0xcf,0x01,0xf5,0xf0,0xe0,0x21, + 0xc4,0x3a,0x77,0xef,0x3e,0xf8,0x0a,0x7f,0x47,0x78,0x6b,0x53,0x2a,0x41,0x3e,0xe5,0x83,0x15,0x0c,0x9c, + 0xcf,0x9c,0x7e,0xa9,0x03,0xa0,0x8b,0x7f,0xab,0x4b,0x8d,0x0b,0x2b,0xae,0x4c,0xfb,0xde,0x80,0xa6,0xc2, + 0x91,0x90,0x7d,0x3d,0xe5,0x29,0xcf,0xf1,0xe7,0xed,0xf2,0x67,0x51,0xf1,0xfa,0x2a,0xd5,0x81,0xf6,0xfc, + 0x0f,0x61,0x17,0x81,0xfa,0x22,0x2d,0x17,0x56,0xb0,0x30,0xfc,0x1c,0x3c,0x47,0x64,0x9b,0xe4,0x22,0x26, + 0xe6,0xe1,0x22,0x2a,0xfd,0xd3,0x8f,0xae,0x28,0x5e,0xfc,0x54,0xb5,0x93,0xf0,0x5a,0x1c,0x6b,0x3c,0x6b, + 0x04,0xa9,0xac,0xf9,0x34,0xb2,0x19,0xc0,0x78,0x80,0xd3,0x16,0xca,0x1f,0x7e,0x47,0x3c,0x39,0xc1,0xe7, + 0xe8,0x7a,0x13,0xe8,0x88,0x44,0x8c,0x13,0xae,0x4d,0x61,0x83,0x2e,0x69,0x44,0x2f,0x55,0xba,0x54,0xf2, + 0xf4,0x75,0x87,0x40,0x8b,0x43,0x9d,0xda,0xe9,0xf4,0xa6,0x24,0x6a,0xa1,0xf4,0x2d,0xc2,0x27,0x66,0x63, + 0x02,0xfb,0x32,0x2a,0x3b,0x22,0x30,0x4a,0x48,0x53,0x34,0xca,0xbe,0x83,0x7f,0x64,0x24,0xf1,0x32,0x2e, + 0x8a,0x68,0x8e,0x3b,0xbc,0x94,0xbb,0x4f,0x5d,0x3f,0xd4,0x8d,0x78,0x9c,0x3a,0xb1,0xe6,0xe8,0x57,0x29, + 0xbf,0xa2,0x54,0xac,0x3c,0x82,0xc9,0x50,0xaf,0x90,0x84,0x4b,0x04,0x9a,0xca,0xae,0x67,0x15,0x66,0x1d, + 0x89,0x49,0x9e,0x9c,0xc6,0xc8,0x7a,0x06,0x53,0x1f,0xd6,0x93,0x64,0xa6,0x4d,0x8a,0xe9,0x12,0xe2,0x0c, + 0x6e,0x53,0xc5,0xe3,0x50,0x4b,0x28,0xb2,0x70,0xde,0x81,0x3c,0xcb,0x4a,0x1d,0xe4,0x1e,0xdf,0x82,0xf4, + 0xda,0x29,0xb5,0xb5,0xe6,0xe7,0x53,0x1e,0x0b,0x0a,0x84,0xcd,0xb2,0x6a,0xa7,0x06,0x33,0xa2,0xcf,0x4e, + 0x89,0x91,0x91,0xc5,0x69,0x15,0x6b,0xe4,0xeb,0x5a,0x05,0x31,0x86,0xa9,0xe8,0x9f,0x2e,0xd8,0x48,0xe1, + 0x57,0x08,0xe2,0x5a,0x95,0x3b,0x8b,0xb1,0xa3,0xde,0x3a,0x04,0xe4,0xb7,0x42,0x40,0x0e,0x7a,0xb1,0x0d, + 0x01,0x66,0x7b,0x79,0x4f,0x8b,0x30,0xef,0xde,0x4c,0x3c,0xb0,0xbf,0xd4,0x0b,0xfb,0xdf,0xb6,0xa7,0xbe, + 0x75,0x59,0xa8,0x65,0xfb,0x90,0xf2,0x33,0x9f,0xf9,0xc1,0xb7,0xbb,0xf8,0x05,0xe4,0xf5,0xad,0x0d,0xe8, + 0x4e,0x35,0x20,0x59,0x7d,0x57,0x5b,0xe6,0xf5,0xfe,0x06,0x5c,0x8c,0x5c,0x6b,0x61,0x5a,0x50,0xf1,0x37, + 0xa6,0x0b,0xde,0x5c,0x5e,0x49,0xf0,0xc8,0xaa,0x02,0x2c,0xa8,0x11,0xd5,0x7f,0x37,0xe1,0xb4,0x76,0xec, + 0xec,0x82,0x7f,0x6b,0x38,0xda,0x0f,0xdc,0xf3,0x66,0x98,0x5a,0xed,0x08,0x4e,0x86,0xe6,0xb6,0x2a,0xd7, + 0x46,0x34,0x58,0xa5,0x37,0xf5,0xac,0x04,0x9f,0xad,0x36,0x3a,0xa0,0xac,0xd6,0xac,0x4a,0x73,0x1b,0x2d, + 0x58,0x59,0xba,0x85,0x1a,0x60,0x74,0x83,0x4b,0xb3,0x95,0x5a,0xa6,0x3d,0x12,0x09,0x1b,0xb7,0xd9,0xf8, + 0x57,0xda,0x6b,0x2b,0x52,0x2b,0x6f,0x8e,0xd1,0x02,0x86,0xde,0xe2,0x58,0x91,0xb5,0xde,0xae,0x6d,0x4f, + 0xb6,0x4a,0x2b,0x20,0x10,0x97,0x89,0x1b,0x8e,0x48,0x5e,0x2f,0xa1,0x29,0x2e,0x3c,0x1c,0x6a,0x7a,0xd4, + 0x2e,0xb0,0xf1,0xf9,0x35,0xbc,0x50,0x89,0x47,0x4c,0xed,0x19,0x67,0xb2,0x9b,0x96,0x27,0xc7,0x1a,0x69, + 0xcf,0xc3,0x82,0x7c,0x42,0xc2,0x67,0x20,0x8a,0x6c,0x65,0x6d,0x86,0x7c,0x0b,0x70,0x24,0x9e,0x86,0x9b, + 0x89,0x60,0xff,0x56,0xd7,0xb1,0x2a,0x2c,0x5c,0x28,0x7f,0x4c,0xf8,0x5d,0xa2,0xe7,0x2d,0x47,0xae,0x22, + 0x80,0xcf,0x85,0x90,0x46,0x34,0x0f,0x45,0x48,0xaf,0x20,0xa0,0x5e,0x20,0x83,0xe7,0xc6,0x06,0xa1,0xb3, + 0x06,0xbb,0xb6,0xf0,0x46,0x0b,0x1d,0xf4,0x77,0x3f,0xb0,0xef,0xad,0x85,0x67,0xd2,0x59,0x03,0xbb,0xc1, + 0x33,0xd9,0xfe,0xf8,0x70,0x8c,0xaa,0x00,0xe6,0x15,0xc9,0x63,0x05,0x35,0xe7,0x21,0x68,0xaa,0xa7,0x8a, + 0x7b,0x7e,0xf7,0xae,0xc3,0x8f,0x89,0x9b,0x4d,0x25,0xd2,0xbf,0x7b,0x37,0x33,0x3d,0x13,0x53,0x3a,0xa5, + 0xd6,0x5d,0xe7,0xc5,0xac,0x27,0xb3,0xe8,0x61,0xb5,0x7b,0x49,0xd1,0x83,0x93,0x99,0x1e,0xdd,0x01,0x3d, + 0x5e,0xeb,0x5e,0x2c,0x22,0xd3,0xa2,0x07,0xf3,0x87,0xde,0x59,0x74,0x19,0x4b,0x05,0x29,0x4f,0x85,0x07, + 0xc4,0x05,0x75,0xcc,0xbd,0x8d,0xd3,0xc1,0x16,0xac,0x88,0x01,0x84,0xf3,0xd0,0xe6,0x8a,0x74,0xdd,0x00, + 0x2b,0x78,0x3e,0x5b,0xd0,0x3f,0x50,0xb1,0xdc,0xd2,0x9e,0xf0,0xf6,0xd3,0x91,0x03,0xf3,0xa9,0xe6,0xb2, + 0x04,0x94,0x5a,0x0e,0x57,0x10,0x7e,0x41,0x9c,0xa9,0xbc,0xfe,0xfb,0x89,0x1f,0x0d,0x12,0x57,0x62,0x4f, + 0xe0,0x68,0x1c,0x86,0x2d,0x44,0x31,0xa1,0x9e,0xe8,0x72,0xe9,0x78,0x20,0xd9,0x0c,0x0f,0x2d,0x7a,0x2e, + 0x81,0xdd,0xe0,0x32,0x83,0x3c,0xdc,0x96,0x13,0x55,0xee,0x10,0xac,0xd6,0xe0,0x5a,0x4e,0x33,0xa9,0xd0, + 0xc2,0xbb,0x51,0xa3,0x8f,0x18,0x3f,0xc7,0xb1,0xd5,0xfa,0x8c,0xbc,0xf9,0x28,0xed,0xf7,0x59,0x3e,0xe3, + 0x5c,0x2b,0xff,0xaf,0x39,0x9e,0x15,0xac,0x67,0x7d,0x56,0x4f,0x71,0x94,0xae,0x58,0x8e,0xc7,0x7c,0xb4, + 0x25,0x2c,0x29,0x7d,0x88,0x8d,0x85,0x6a,0xc7,0xd9,0xb0,0x0e,0xcb,0xd0,0xcb,0xfa,0x61,0xe2,0x9b,0x64, + 0x91,0x49,0x9c,0x0b,0xdd,0x9d,0x79,0x23,0x87,0x9d,0x8d,0x06,0xef,0xab,0x04,0x20,0x93,0x29,0x51,0xfa, + 0x2b,0x71,0x4a,0xe7,0x0c,0xf5,0x10,0xa4,0xdb,0x4c,0x3c,0x62,0x47,0x1b,0xd1,0x92,0x77,0xfe,0x07,0x8f, + 0x75,0x44,0x63,0x06,0x61,0x4e,0x3b,0x02,0x91,0x1f,0x75,0xe9,0x05,0xf8,0x57,0x73,0x1c,0xb7,0xce,0xa4, + 0xdc,0x30,0xfb,0x58,0x5f,0xd5,0x30,0xaf,0x89,0xaa,0xd3,0x8a,0xf9,0xf4,0x25,0xf8,0x74,0x53,0xb6,0xa2, + 0xa7,0xc3,0x2c,0x45,0x7b,0x26,0x58,0x5b,0xfd,0x83,0x6d,0xc3,0xf5,0xe8,0x78,0xe9,0x86,0x49,0x73,0x53, + 0x22,0x9a,0x50,0x32,0xd6,0x0c,0x5f,0xa4,0xde,0xa5,0xc1,0x59,0xc9,0xf8,0x03,0xc5,0xd1,0x46,0x8a,0x39, + 0x17,0xad,0x57,0xe6,0xdb,0xd4,0x40,0x54,0x81,0xf4,0x88,0x29,0x1d,0xa2,0xdb,0x75,0x59,0xff,0x60,0xdf, + 0x1b,0xd7,0x2a,0xe8,0xd1,0xca,0x5f,0x51,0x0b,0x37,0xd5,0x55,0x2d,0xa2,0x71,0x93,0x7e,0xdf,0x2c,0xea, + 0x86,0xc3,0xdd,0x6d,0x78,0x53,0xcf,0xc3,0xbd,0x3f,0xdc,0xe3,0xa9,0xd7,0xdf,0xf3,0xdf,0xf3,0xe7,0x15, + 0x3e,0x9f,0xd1,0x32,0x3d,0x09,0x0f,0xfc,0xb7,0xe1,0x7d,0xff,0x4e,0xf8,0xc0,0x7f,0x4d,0xbf,0xbf,0x0e, + 0x1f,0xfa,0x6f,0xc2,0xcf,0xfd,0x77,0xe1,0x17,0xfe,0xf3,0xf0,0x9f,0xfe,0x8b,0xf0,0x4b,0xff,0x47,0x30, + 0xf4,0x3f,0x1e,0xbd,0x1e,0x87,0xd7,0x57,0x45,0x40,0x7f,0x7d,0x66,0x03,0x83,0xa3,0x07,0xfe,0xb3,0xb1, + 0xef,0x1c,0x39,0xc1,0xd1,0xd7,0x63,0x9f,0x2e,0xf9,0xe0,0xe8,0xf9,0x78,0xe3,0xff,0x78,0x74,0xa0,0x4a, + 0x1e,0x50,0xee,0x80,0x72,0xef,0x77,0x96,0xba,0xaf,0x4a,0xdd,0xaf,0xb7,0xb7,0xaf,0xfe,0x0a,0x57,0x29, + 0x3f,0x50,0xfc,0x01,0x15,0xbf,0xad,0x9c,0xcf,0xbd,0xfa,0x4f,0x74,0xbf,0xfc,0xc5,0x3d,0xe3,0x4b,0xfa, + 0xa6,0x2f,0x34,0xf7,0x35,0x35,0xe7,0xdc,0xa3,0xac,0x37,0xa8,0x77,0xcf,0xb9,0x17,0x1c,0xbd,0xab,0xa6, + 0xe3,0xbf,0xa5,0xaf,0xb1,0x83,0xc6,0xee,0x48,0xc5,0x17,0x6c,0xcf,0x87,0x2c,0x19,0xce,0x1b,0x5d,0x1f, + 0x09,0xb5,0x12,0x6f,0x54,0x89,0x77,0x54,0x82,0xdb,0x6d,0x95,0x40,0x47,0xb2,0x31,0xdf,0xb0,0xcd,0x33, + 0x91,0x6a,0xf9,0x2a,0x5e,0xb3,0x2d,0xe7,0x7a,0x77,0x74,0x74,0x3c,0x1d,0x8c,0xfb,0xeb,0x7b,0xec,0x03, + 0xeb,0xde,0xda,0x61,0xb7,0x58,0x8e,0x47,0xe5,0xe0,0x98,0x68,0x0b,0xda,0xea,0xc6,0x5a,0xaf,0x2c,0xac, + 0xc5,0x50,0xf6,0x86,0x2e,0xb5,0xb6,0x84,0xca,0xc6,0x58,0x16,0xc2,0x2a,0xa1,0x9f,0xd1,0x21,0xcf,0xd2, + 0x61,0xef,0x22,0x84,0xf2,0xc1,0x81,0x5b,0x85,0xbb,0x07,0x74,0x35,0xbe,0xe6,0xb8,0x77,0x67,0x00,0x17, + 0x9c,0x99,0xb3,0xa3,0x27,0xe3,0x9a,0x71,0x87,0xbe,0xa7,0x52,0xd6,0xe5,0x11,0xe8,0x85,0x8b,0x42,0xc9, + 0x80,0xad,0xfe,0xd1,0xb3,0x8e,0x1a,0x90,0xd4,0x8e,0xd2,0x30,0x0f,0xd2,0x3e,0x11,0xfe,0x54,0xe8,0x6d, + 0xad,0x10,0x2a,0x11,0x65,0x34,0x23,0xd8,0xa7,0xbc,0x3b,0xb5,0x3c,0x68,0x44,0x3e,0xde,0xf7,0x66,0xbb, + 0xbb,0x34,0xbc,0xaf,0x7d,0x29,0x6a,0xde,0x22,0x31,0xda,0x1d,0x3c,0x7d,0xb8,0x69,0xb8,0x64,0x97,0x79, + 0x46,0x2c,0x8a,0xb1,0x43,0x1d,0x73,0xa8,0x64,0xe0,0x0b,0x76,0x18,0xbf,0xea,0xf7,0xe1,0x3f,0x91,0x95, + 0x85,0xe0,0x73,0x71,0x85,0x17,0x8b,0x9d,0x06,0x3f,0xcd,0x19,0xfd,0x03,0xc6,0xd6,0x10,0x1b,0xbd,0xa1, + 0x5b,0xf9,0x1e,0xab,0x75,0xad,0xd7,0xf8,0xfd,0xee,0xee,0x5d,0x02,0x0b,0xfc,0x36,0xbe,0xbb,0xa9,0x59, + 0xc2,0xd6,0xd4,0x70,0xbf,0x54,0x63,0x44,0x84,0x65,0xd7,0x53,0x56,0x5c,0x53,0x88,0xc5,0x40,0xe7,0x14, + 0xe1,0x8f,0x47,0x8b,0xb1,0x47,0x78,0x67,0xbd,0x2e,0x58,0x11,0x74,0xbd,0x7e,0x01,0xd9,0xf2,0x0b,0xad, + 0x15,0xc4,0x7d,0xc2,0x8e,0xc5,0x77,0xa3,0xf0,0xec,0x28,0xa3,0x33,0x38,0x96,0x77,0xd8,0x0c,0x07,0x2d, + 0x0f,0xcd,0x92,0xe6,0xa3,0x32,0xc8,0x65,0xfa,0xc4,0xff,0x78,0xb5,0x06,0xc2,0xf0,0xb9,0x71,0x8e,0x2a, + 0xca,0x6e,0x86,0x20,0xd5,0x30,0x12,0xc2,0xff,0x30,0xc8,0xae,0x8d,0x6f,0x03,0xd9,0x3c,0x2e,0x01,0x62, + 0x2c,0xc8,0x6d,0xdc,0x8d,0x90,0x91,0x97,0x95,0x83,0xd6,0xea,0x11,0x46,0x7b,0xdf,0xd6,0xf0,0x09,0x8f, + 0xb5,0x3c,0xef,0xbc,0x41,0x61,0x20,0xbc,0x1b,0x86,0xae,0xdd,0x69,0xd7,0x5a,0xb2,0xac,0x7d,0x2a,0x53, + 0x33,0x42,0xd2,0xca,0x05,0x77,0x36,0xd4,0x8e,0xb7,0xa3,0xa3,0xfc,0xa8,0x18,0x5b,0x8f,0x1d,0x50,0x36, + 0xf3,0xae,0xc5,0x0d,0x95,0xb2,0x4d,0x88,0xc2,0x89,0x5f,0x54,0xc8,0x34,0x92,0xd3,0xfa,0x72,0xcb,0xc9, + 0x19,0x56,0xfc,0x1f,0xb8,0x71,0x68,0xcb,0x9a,0xd7,0x25,0x21,0x1e,0xd7,0x6b,0x27,0x4e,0x77,0x7f,0x7e, + 0xeb,0xb0,0x3c,0xb7,0xce,0x6b,0x57,0x79,0x6c,0x91,0xa4,0x58,0x5c,0x26,0x2f,0x55,0x18,0x73,0x4b,0x06, + 0x24,0xe9,0xb0,0xa2,0x4c,0x2d,0x11,0x0f,0xa7,0x0e,0x95,0x2b,0xeb,0x0b,0x79,0xe0,0x93,0x5f,0x33,0xce, + 0x27,0x72,0x25,0x64,0x05,0x36,0xf9,0x5e,0xaf,0xc1,0x28,0x1f,0xaa,0x22,0x17,0x49,0x01,0x57,0x20,0xe8, + 0x5b,0xbe,0x44,0xe0,0xa9,0xbd,0x4b,0x43,0xa8,0x10,0xb3,0x6c,0xa1,0x96,0x0e,0xae,0x36,0xb4,0xf8,0x5e, + 0x61,0x79,0x77,0x76,0xe4,0x4b,0xf7,0xae,0x26,0xca,0xfa,0x50,0x56,0x61,0x3b,0x5d,0x2a,0xd9,0x29,0xba, + 0x87,0x4e,0xd9,0x83,0x41,0x22,0x71,0xb7,0xd4,0x81,0x48,0xdc,0x9d,0x2d,0x59,0xaa,0xdd,0xfa,0x82,0xe2, + 0xe5,0x1d,0x84,0xbd,0xe4,0xd9,0x8b,0x5a,0xcf,0x01,0x37,0xc0,0xf2,0x85,0x57,0x55,0x33,0x51,0xe5,0x2e, + 0x80,0x90,0xa0,0x24,0xf3,0xfb,0x41,0x03,0xf2,0x15,0x56,0x71,0x77,0xa0,0xce,0x98,0xae,0xd7,0xb9,0x5b, + 0x4a,0x83,0xb5,0xe3,0x22,0xe1,0xb4,0xb5,0x51,0xfa,0x09,0x9c,0xc6,0xfe,0xf2,0xd2,0xd5,0xef,0x9d,0xa9, + 0x5f,0x87,0x9a,0x00,0xee,0x1b,0x05,0x54,0x88,0xec,0x6a,0x00,0x49,0x10,0xf9,0x35,0xf0,0x08,0x0a,0xa2, + 0xc8,0xfc,0x9f,0xc2,0xeb,0xcb,0x8b,0xe0,0x7a,0x53,0x55,0xa4,0xef,0x66,0x4d,0x4a,0xaa,0x57,0xbd,0xae, + 0x38,0xbc,0x4d,0x73,0x0c,0x68,0x4b,0x60,0x86,0x33,0xf5,0xb2,0xe1,0x47,0xe7,0x0e,0x50,0xc6,0x46,0x5f, + 0x2e,0x2f,0x6d,0xd7,0xc3,0x32,0xd9,0x8e,0xe3,0x75,0xa6,0x7d,0x41,0x4b,0x7b,0xc3,0xc6,0x6f,0x48,0x5f, + 0x2a,0xb0,0xa7,0xdd,0x21,0x1a,0x12,0x1b,0x03,0xd5,0x58,0xbf,0x59,0xb6,0xdc,0xf8,0x76,0xa7,0x9d,0xec, + 0x7e,0xdb,0x17,0x42,0x7d,0xa3,0x2b,0x75,0x33,0xbb,0xa9,0x2d,0xb2,0x83,0x5a,0x63,0x0d,0xc3,0x01,0xe6, + 0xf6,0xec,0x10,0x26,0xa9,0x65,0xab,0x59,0x32,0x02,0x4c,0x1f,0xef,0x1e,0x78,0xf2,0x3e,0x3d,0x81,0x1c, + 0x13,0x0a,0x92,0x6e,0xc7,0x98,0xfc,0xe6,0x70,0x6a,0xb2,0xad,0xa6,0x79,0xa5,0xc8,0xfe,0x6a,0x2e,0xc1, + 0x69,0xf1,0x06,0x77,0xb8,0x92,0xeb,0xdc,0x41,0xd3,0xb5,0x10,0x15,0xb6,0x41,0x43,0x63,0x31,0x6c,0xfb, + 0x86,0xb3,0x4e,0xa7,0xc8,0xcd,0x2a,0xc4,0x08,0xb2,0x13,0xf4,0x66,0x62,0x2b,0xf0,0xc5,0xc6,0xbf,0x9e, + 0xc6,0xf1,0x52,0x54,0x93,0xdb,0xb3,0x53,0x62,0xcc,0xfa,0x55,0xbf,0x53,0xa1,0x26,0x3a,0x68,0x15,0xfe, + 0x6a,0xdd,0x38,0xb1,0x8e,0x65,0x72,0x51,0x5f,0x07,0x16,0x90,0x59,0x8b,0x21,0x80,0x6f,0xad,0x06,0x7b, + 0xf6,0xb8,0x43,0xec,0x2f,0xac,0x58,0x74,0x2e,0xfb,0xe5,0x6f,0x8c,0xdf,0xbf,0x4e,0x2e,0x88,0x54,0x4f, + 0x20,0x6f,0x97,0x29,0xfc,0x84,0x86,0xe9,0xbc,0xdb,0x63,0x6e,0x6c,0x02,0x0a,0xe9,0xb3,0xb9,0xa5,0x68, + 0xa4,0x00,0x80,0x72,0x95,0x80,0xbb,0x60,0x0f,0xe0,0x3f,0x35,0xef,0x89,0xdb,0xeb,0xd7,0x1f,0x17,0x74, + 0x33,0xb5,0xc3,0x7f,0x7b,0x23,0xf6,0x43,0x83,0x6e,0x42,0xd6,0xe5,0x96,0xb9,0xea,0x47,0xf7,0xaa,0x7c, + 0x11,0x97,0x1d,0xa7,0x0f,0xbb,0x81,0xf5,0xd6,0xbf,0xaa,0x65,0x8f,0xb9,0xb3,0x3a,0x46,0xba,0xad,0xd3, + 0x7a,0xe9,0x8e,0xfa,0x1f,0x3b,0x88,0x7a,0x35,0x3d,0x18,0x85,0x0c,0x6f,0x1c,0x85,0x2a,0x63,0x17,0xef, + 0xee,0xd4,0xdc,0xcb,0x3c,0x4c,0x8d,0x5b,0x6f,0x6c,0xdb,0x94,0xaa,0x57,0xe9,0x6e,0xdf,0x22,0x0d,0x50, + 0xbc,0x13,0x61,0xdf,0xd8,0x5b,0x67,0x8d,0xed,0x4d,0x75,0x8f,0xa2,0xfb,0x96,0x8f,0xeb,0x47,0xde,0x06, + 0xf7,0x9b,0xb6,0x57,0x1f,0x9e,0x76,0xed,0x06,0xb0,0xdf,0xd4,0x48,0xe3,0x20,0xb5,0xdb,0xaa,0xc1,0xfc, + 0x4d,0x2d,0xd5,0xce,0x52,0xa3,0x1d,0x28,0x97,0x29,0xaf,0x4e,0x35,0x5d,0x23,0x62,0xae,0x12,0xd3,0x12, + 0x0c,0xbc,0x95,0x1c,0x5f,0x41,0x83,0x12,0xfa,0x6b,0xc8,0x91,0x07,0x79,0x26,0xcb,0x8e,0x50,0x39,0x19, + 0xc3,0x70,0x23,0x48,0x1b,0x9d,0x25,0xc5,0x37,0x36,0x25,0xd6,0xe1,0x12,0x27,0x46,0xc4,0x46,0xd7,0x42, + 0x99,0xaa,0xa3,0x1a,0x09,0xd7,0x6c,0xb5,0x5b,0x0c,0x56,0x6a,0xde,0x50,0xe1,0xe4,0x16,0xf6,0x9d,0x84, + 0x15,0x49,0x55,0xa7,0x80,0x4a,0x15,0x77,0xb7,0x4e,0xf6,0x4f,0x0c,0xcb,0x30,0x11,0x83,0x21,0x56,0xc5, + 0xd4,0x11,0x89,0x77,0x58,0x81,0xc0,0xee,0xc3,0xd2,0x4e,0xd5,0x8f,0xa4,0x88,0x14,0x4e,0x5c,0x53,0xad, + 0xdc,0x46,0xb3,0x81,0x2d,0x3d,0xb1,0x49,0xad,0xb9,0x55,0x38,0xd1,0x7c,0xc0,0xaa,0xb2,0x9e,0xfe,0x8f, + 0xc0,0xf1,0xd8,0x4b,0x89,0xab,0x03,0x63,0xc1,0xe1,0x38,0x4f,0x7f,0xa5,0xa6,0x0f,0x73,0x51,0x1d,0xa2, + 0x85,0x23,0x14,0xac,0x38,0x39,0x58,0x35,0xd6,0x11,0x15,0x9b,0x30,0x60,0x87,0x94,0x0e,0x53,0x1f,0x3a, + 0xce,0xe2,0xab,0x60,0xcf,0xfd,0x8f,0xe0,0xe8,0xf8,0xea,0x78,0xf7,0x64,0x3d,0x18,0xf7,0xbd,0xbd,0x79, + 0xa5,0x6d,0x3e,0x81,0xe6,0x43,0x01,0x3e,0xb5,0x68,0x3c,0x39,0xf3,0x5a,0x89,0xba,0x47,0x71,0x34,0x41, + 0xbc,0x9f,0x95,0xb2,0xee,0x76,0xef,0x13,0xe7,0xac,0xdf,0xc5,0xaa,0xfd,0xe4,0x51,0x2c,0x68,0x14,0x4e, + 0x1e,0x5d,0x29,0x21,0x9e,0x5a,0x25,0x22,0x3c,0xab,0x44,0xa1,0xc6,0x03,0xe5,0xa7,0x41,0x5a,0xa9,0xc1, + 0x1a,0x2c,0xfe,0xac,0xab,0x99,0x41,0x8b,0x5d,0x1d,0xf5,0xbe,0x86,0x42,0x3b,0x44,0x6e,0x62,0xe9,0x1d, + 0x4f,0x7b,0xac,0xe2,0xae,0x7c,0x18,0x4e,0xc3,0xaa,0xc2,0x70,0x16,0x4e,0x55,0xd8,0x14,0x1e,0xdb,0xb4, + 0x71,0xfd,0x21,0x2a,0xb9,0x88,0xe8,0xa7,0xcd,0x67,0xcc,0x85,0x5a,0x48,0x62,0xe8,0x5c,0x3d,0x4d,0xeb, + 0xe4,0xb9,0x28,0x31,0x83,0xa2,0xd1,0x28,0x32,0x26,0xd1,0x2b,0x7f,0xe6,0x05,0x51,0xc5,0xfa,0xd5,0x37, + 0x4b,0x29,0xda,0xd6,0xb7,0xab,0x2e,0xf8,0xad,0x10,0x6f,0x7d,0x45,0x4d,0x20,0x96,0x4a,0x0b,0x28,0x2c, + 0x47,0xb9,0xb2,0x30,0x43,0xbc,0xf4,0x46,0x5f,0x66,0xca,0x2d,0x0c,0xa1,0x0f,0x98,0x7d,0x9c,0xec,0xce, + 0x4a,0x1f,0x56,0xa5,0xa6,0x9c,0x91,0x40,0x13,0x20,0x8c,0x72,0xb7,0xab,0x46,0xea,0x43,0x3e,0x6b,0x6a, + 0xa8,0x80,0xf3,0x93,0x60,0xd2,0x1c,0x53,0x0b,0x52,0x2b,0x0a,0x51,0xf9,0x1f,0x6a,0xaa,0x19,0xee,0x3e, + 0x1c,0x46,0xbb,0xbb,0xbd,0xc7,0xfb,0x43,0x0f,0xaa,0x7f,0x96,0x4a,0x6a,0xd4,0x7f,0xc8,0x7c,0xf8,0x8e, + 0x51,0xad,0x71,0xd4,0xf3,0x4b,0xa2,0x50,0x9b,0x72,0x87,0x90,0xc1,0xd2,0xaf,0x30,0xcc,0x74,0x69,0xa2, + 0xd1,0x55,0x50,0x91,0xfa,0x8a,0xeb,0x6c,0xbe,0x64,0x03,0x8a,0xd5,0x82,0xfb,0x2c,0x65,0x88,0x2e,0x8a, + 0xed,0xf0,0xba,0xfa,0x74,0x78,0x55,0x3a,0x2d,0x0b,0x0b,0x64,0x6b,0xca,0x52,0xb1,0x51,0x96,0xca,0x2c, + 0xfb,0xfa,0x16,0x2c,0x4e,0x7c,0x78,0xd9,0xcc,0x95,0x1f,0xe8,0xfa,0xb2,0xd7,0x71,0x76,0xe3,0xd9,0xa0, + 0xb5,0xde,0x07,0xd0,0xff,0xe5,0xf5,0x2e,0x1b,0x2a,0xc0,0x10,0x4b,0xa9,0xe1,0x0a,0xb4,0x7a,0xb4,0x84, + 0x6a,0xa4,0x39,0x5f,0x21,0x18,0x96,0x3a,0x4d,0x1d,0x94,0x26,0x1b,0x65,0x9b,0xe9,0x94,0xda,0x5c,0xa8, + 0x79,0x31,0x74,0x60,0x33,0xad,0x1d,0xd7,0xde,0xb6,0x72,0xfb,0xb6,0x01,0xcf,0xe8,0x50,0xec,0x5d,0x9b, + 0x95,0xfd,0xd5,0xcd,0xb2,0xe9,0xfd,0x44,0xee,0xac,0x1b,0x76,0x86,0x4e,0x13,0x1d,0x8b,0xbc,0xc1,0x87, + 0x34,0x67,0x59,0x3d,0x36,0x8e,0xda,0x57,0x4a,0xc9,0xea,0x7d,0xd6,0xea,0x9a,0xe7,0x5a,0xae,0xbc,0x6d, + 0xa9,0x21,0x11,0x08,0x1c,0xa7,0x79,0x06,0x27,0x9d,0x0b,0x6c,0xac,0x8e,0xc4,0x7c,0xb7,0x05,0x16,0x9f, + 0x0f,0x0b,0x05,0x16,0xd1,0x51,0x61,0x83,0x45,0xd1,0xff,0xbc,0xd2,0xd8,0x1b,0x55,0x52,0xb1,0x84,0x15, + 0xaf,0x0f,0x3c,0x3f,0x73,0x15,0xce,0xb0,0xc0,0x65,0x22,0x14,0x07,0xf5,0x6d,0xe0,0x21,0xa2,0x2b,0x2f, + 0xe1,0x01,0xcb,0x3d,0xdf,0x80,0xe1,0xfa,0xa8,0x6d,0xa5,0xe5,0x23,0x48,0x26,0x5b,0xe3,0xbd,0x3f,0xcc, + 0xd5,0x78,0xd9,0x3f,0x42,0x35,0xde,0xbc,0x7f,0xdf,0x80,0x71,0x62,0xc6,0x35,0x51,0x03,0x4b,0x3e,0x16, + 0x8e,0xfd,0xd2,0x8c,0x5c,0x07,0x9a,0x49,0x9a,0x2b,0xdd,0x44,0xbd,0x96,0xa9,0xb4,0x58,0xa8,0xb5,0x46, + 0xfd,0x60,0x98,0xa9,0x51,0xe7,0xb0,0x31,0xaa,0x46,0x9d,0xf5,0x1f,0xe8,0x27,0xb6,0x06,0x76,0xcb,0xbd, + 0x0a,0xb3,0xd5,0x01,0x94,0xa5,0x49,0x78,0xe2,0x19,0xb7,0x98,0xfc,0xc6,0xd0,0x1a,0xd4,0xa7,0x5c,0xe1, + 0xb7,0x2c,0x42,0xd9,0x68,0x92,0x72,0x6b,0xba,0x53,0x1d,0x84,0xa2,0xe1,0xfd,0x2c,0x6a,0x9b,0x10,0x1c, + 0xe4,0x8f,0x8d,0xc6,0x8a,0xed,0x8d,0xb1,0x0f,0xde,0x8e,0x56,0x9a,0x12,0x9a,0xb6,0x36,0xd7,0xc7,0x34, + 0x72,0x36,0x58,0x95,0xc9,0x62,0x20,0x3e,0x11,0xb7,0x8e,0xb6,0x6b,0xf2,0x75,0x26,0xe1,0x96,0xd9,0x37, + 0xd8,0x84,0xad,0x8b,0xb0,0xb5,0xd1,0xda,0x04,0xda,0xad,0x75,0x2e,0xc6,0x5f,0x6e,0x6c,0xcb,0xa2,0x74, + 0x4f,0xa2,0xb5,0x36,0xa2,0x69,0x92,0xfc,0x69,0xfa,0xef,0x20,0x48,0x34,0xb1,0x5a,0xc2,0x23,0x36,0x01, + 0x2c,0x90,0x36,0x51,0xe9,0x85,0x07,0x79,0x27,0x8c,0x4d,0xf9,0x11,0x41,0x88,0x59,0xe4,0xc3,0x25,0x98, + 0x9d,0xd9,0xe6,0x12,0x90,0x0e,0xeb,0x82,0xbe,0x73,0x72,0x82,0x48,0x09,0xfa,0x82,0x6d,0x0b,0x70,0x8f, + 0x56,0x06,0x7f,0xc1,0x9f,0xd3,0x8d,0x05,0x59,0x4c,0xd8,0xa1,0x5d,0xe9,0x46,0x50,0x3a,0xf6,0x17,0x8a, + 0x6f,0x6e,0xc9,0xf8,0x4e,0xa6,0x2d,0x54,0xc0,0xdc,0x87,0x19,0xf8,0x96,0x66,0x45,0x61,0x51,0x5a,0xb4, + 0x9f,0x3b,0x5a,0x6b,0x5a,0x5d,0x04,0x8d,0xab,0x70,0xbb,0xc4,0xc6,0x4f,0xb7,0xdf,0x8d,0xf9,0xff,0x8a, + 0xbb,0x51,0x5c,0x14,0x96,0xe6,0x6e,0xcc,0x61,0xe2,0x5f,0x5f,0x97,0x69,0x27,0x69,0xb2,0x0d,0xa7,0x1f, + 0x6c,0xc7,0xe9,0x07,0x63,0x6d,0x58,0x61,0xa1,0xad,0xac,0x65,0xa6,0xa4,0xed,0x1f,0x46,0x2d,0x5d,0x7a, + 0x18,0x6a,0x8f,0x24,0xfa,0x33,0x1e,0xf9,0x61,0x58,0xc4,0x51,0x4b,0xe0,0x1d,0x82,0x5b,0xe3,0xeb,0xcc, + 0xfa,0x8d,0xb8,0xa4,0xf4,0x83,0xa3,0xae,0xba,0x52,0x91,0x03,0xae,0x8a,0xf9,0x52,0x7a,0x83,0xf9,0x52, + 0x2a,0xe6,0x4b,0x52,0xc7,0xf3,0x3b,0xf2,0x0f,0xc6,0xaa,0x37,0xb6,0x5a,0x52,0xf0,0x88,0xe0,0xf6,0x1c, + 0xb9,0xb4,0x81,0x78,0x6c,0x89,0xc2,0x2d,0x68,0xa7,0x26,0x53,0xd8,0x8a,0x74,0xb6,0x34,0x58,0xc3,0x12, + 0xcd,0x96,0x3a,0x11,0xce,0x5f,0x6a,0x68,0x0b,0xb2,0xe9,0x1a,0xfa,0x76,0x54,0x23,0x3d,0xff,0xff,0x8a, + 0x68,0x9a,0xaf,0x41,0x5b,0xd0,0x4c,0x47,0xb1,0x0a,0xc9,0xd8,0x0b,0x78,0x2b,0x8a,0x49,0x3f,0x12,0xc5, + 0xd4,0x1a,0xbd,0x15,0xc1,0x48,0xe9,0xdb,0xd1,0x4b,0x43,0x96,0xfb,0xbf,0x1d,0xb9,0xa4,0xb7,0x23,0x97, + 0x6e,0xd7,0x4a,0xff,0x17,0xb9,0x74,0x20,0x97,0xd4,0x20,0x17,0xa5,0x09,0x22,0x86,0x02,0x4a,0x04,0x94, + 0x10,0xc1,0x67,0x2d,0xac,0xff,0x93,0x47,0xeb,0x1c,0x5d,0x46,0xc9,0x22,0x3a,0x4d,0x16,0x09,0xf2,0xc3, + 0xeb,0xfa,0x7d,0x19,0x7c,0xa8,0xbd,0x04,0x06,0xa7,0xd8,0x1a,0xd6,0xe8,0x5d,0x2c,0xec,0xb8,0xbd,0xf0, + 0xc5,0x70,0x16,0x12,0x14,0x5e,0x12,0xec,0x53,0xd2,0xdd,0xbb,0x0a,0xe0,0xce,0x74,0x8a,0x36,0xb1,0x1c, + 0x38,0x1e,0xcf,0x28,0xd6,0xcd,0x48,0x48,0xa6,0xae,0xf1,0x7e,0xa0,0xda,0xd5,0x68,0x9d,0x3b,0xa2,0xbf, + 0x7a,0x4d,0x50,0x1a,0x6c,0x13,0xb8,0xa2,0x08,0x9c,0xd8,0xa4,0xe1,0xd9,0x96,0x26,0xd3,0x5a,0x93,0x65, + 0xbb,0xbd,0xf6,0xfb,0x98,0xfd,0xf2,0xf3,0xbf,0x02,0xfc,0x62,0xa5,0xb7,0xaa,0x2d,0xb2,0x2b,0x7e,0x8a, + 0xd8,0x16,0xe2,0x42,0x8d,0xd9,0x57,0x93,0x56,0x8f,0x6d,0x5e,0x65,0xb3,0xa9,0xac,0x22,0x6e,0x9e,0xe3, + 0xe4,0xd3,0x26,0xd9,0x62,0x70,0x92,0x2e,0xb6,0x2c,0x31,0x0c,0x4e,0x62,0x4f,0x33,0x01,0x5b,0x26,0x5c, + 0x7e,0x63,0x9a,0x99,0xc5,0x9e,0x65,0x98,0xa7,0xb1,0x4e,0xcb,0x5a,0xf3,0xf4,0x53,0x33,0xd3,0xfc,0x53, + 0x66,0x1a,0x7f,0xfa,0x4c,0x95,0xbf,0xc4,0xfa,0x58,0x73,0x66,0x9e,0x4a,0xdf,0xe8,0xfd,0xe6,0x2d,0xde, + 0xf1,0xe3,0x47,0x35,0xfd,0xef,0x85,0x31,0xc3,0x13,0xc7,0xda,0x66,0x6f,0x6a,0x41,0x57,0x07,0xb7,0xfb, + 0xb1,0xf3,0xe8,0x38,0x7b,0xff,0xbd,0xf3,0x48,0x6f,0x9f,0x07,0x6c,0xae,0xdf,0x27,0xa9,0x7b,0x82,0x4f, + 0x63,0xfc,0xe7,0x3a,0x38,0xe7,0x1c,0xa1,0x61,0xa2,0xa2,0xba,0xb3,0xe3,0xb0,0xb3,0x2a,0xfe,0x98,0x7b, + 0x25,0x6e,0x16,0xaf,0x94,0xd6,0x0e,0x8d,0xd7,0xa8,0x0e,0x88,0x51,0xd4,0x4b,0x90,0x42,0x6f,0xcb,0x9c, + 0x2a,0xcf,0x09,0x53,0x0e,0x73,0xb1,0x8f,0xca,0x07,0x2a,0x9a,0x38,0x30,0xa3,0xc2,0x75,0xa1,0xf3,0xcf, + 0xc1,0x83,0xc1,0x03,0xc7,0xef,0x32,0xd5,0x92,0x48,0xcf,0x77,0xef,0xaa,0x88,0xcf,0xbf,0x20,0x06,0x4d, + 0xf5,0x3d,0x58,0x15,0xb1,0xfb,0x92,0x10,0xb3,0x52,0x1f,0x32,0xd6,0x2e,0xd7,0x71,0x1a,0x5c,0x73,0x54, + 0xcd,0xc0,0x79,0x5b,0x46,0x49,0x5e,0x38,0x7e,0xf1,0xa1,0x28,0xe3,0x8b,0x17,0xcf,0x29,0x85,0xbf,0x7a, + 0x2f,0x9e,0x3b,0xfe,0x2c,0xc9,0x2f,0xae,0xa2,0x3c,0xfe,0x45,0xc6,0x12,0x38,0xdf,0xa8,0x84,0x9e,0x1a, + 0x5d,0xd0,0x73,0xfc,0x49,0xb6,0xfc,0x20,0x91,0x33,0x9c,0x67,0xfa,0xb3,0xf7,0x3f,0xff,0x9f,0xde,0xfd, + 0xfd,0x83,0x7f,0xf6,0x5e,0x46,0xf9,0x79,0xef,0x32,0x4a,0x7b,0x3f,0xc5,0x69,0x71,0x95,0xad,0xa6,0x74, + 0xac,0x16,0x59,0x04,0x8f,0x5b,0x81,0xf3,0x66,0x11,0xc3,0x70,0x90,0xa3,0x19,0xf4,0x54,0x6a,0x4f,0x16, + 0x4a,0x85,0x7c,0x1f,0x0c,0x06,0x8e,0x9f,0xc7,0xa7,0x74,0xbd,0xbf,0x89,0x53,0xa9,0x75,0x78,0x16,0xf7, + 0x64,0xb4,0x34,0xff,0xc5,0xa2,0x77,0x1a,0xf7,0xa4,0x44,0x3c,0xf5,0x7b,0x4b,0x69,0x32,0x8f,0x67,0x79, + 0x5c,0x9c,0x31,0x26,0xef,0x2d,0x69,0xd2,0xbd,0x68,0x46,0xa4,0x14,0x0d,0x7d,0x4a,0x73,0xe5,0xad,0x7f, + 0xca,0x51,0x3c,0x02,0xe7,0x09,0x7e,0xd4,0xd2,0xde,0x46,0x97,0xdc,0x91,0xfc,0xe5,0x21,0x5c,0x25,0xb3, + 0x84,0x56,0xaa,0x5c,0x15,0xc1,0x75,0x34,0x81,0xc7,0xcb,0x65,0x96,0xa4,0xa5,0x59,0xc5,0x27,0x6f,0xb0, + 0x12,0xd3,0xa4,0x88,0x4e,0xe9,0x12,0x0a,0x9c,0xe7,0xea,0x8b,0xc8,0x0f,0x76,0x9f,0x91,0xa5,0x08,0x77, + 0x67,0x8a,0xff,0x9a,0x7c,0x93,0x6c,0xa9,0xe0,0x27,0x88,0x5c,0xe2,0xbc,0x98,0xe2,0x15,0x38,0xcd,0xde, + 0xbe,0xe5,0x2d,0xa1,0x7f,0x7b,0xb0,0x35,0x9d,0x65,0x04,0x05,0xb4,0x59,0x93,0x28,0x45,0x44,0x0a,0xd8, + 0x6e,0x50,0xe5,0xb7,0xf4,0xb3,0x37,0xd1,0xbf,0xb1,0x23,0x69,0x4a,0xd0,0xfa,0x0d,0xdd,0xc6,0xc8,0x96, + 0xbf,0xbd,0x32,0xeb,0xa9,0x0c,0x53,0x82,0xc6,0xf5,0x63,0x56,0xf0,0xc6,0xe9,0xdf,0xb4,0x0f,0x45,0xc9, + 0x23,0x53,0x65,0xd4,0xe8,0xcc,0x2f,0x04,0xfb,0x28,0xd4,0x52,0x94,0xd1,0xe9,0xa1,0x01,0x23,0x4a,0x71, + 0x7c,0x35,0xc1,0x67,0x12,0x31,0xa6,0x57,0xa8,0x64,0xba,0x9b,0xdf,0x96,0xf1,0xb2,0x38,0xcc,0x57,0x28, + 0x1c,0x97,0x3d,0xbc,0x15,0x20,0x6c,0xfd,0x07,0x9a,0x53,0xce,0x86,0x02,0x05,0x0a,0x54,0x45,0xbf,0x81, + 0xf6,0x6a,0xb3,0x2c,0x7c,0xb5,0x5d,0x26,0xd3,0x15,0xa2,0x52,0xd0,0xda,0x12,0x21,0x83,0x68,0x14,0xb5, + 0x91,0x1c,0xaa,0x34,0x8c,0xe5,0x22,0xd6,0x89,0xf4,0x29,0x09,0x2f,0xf0,0x46,0x91,0x12,0xea,0xd1,0xd0, + 0x47,0xcb,0x0a,0xfb,0x97,0xa8,0xec,0x21,0xbb,0xa7,0x9b,0xec,0x29,0x9b,0x94,0x5e,0x94,0x72,0xff,0xa8, + 0xd3,0xab,0x96,0x6d,0x20,0xad,0xbd,0xca,0x38,0xc4,0xb1,0xf3,0x2a,0x6b,0xd4,0x56,0x47,0xb5,0xf7,0x21, + 0x2e,0xa5,0xe4,0xd7,0xa9,0xda,0x69,0xf9,0xa8,0x17,0x57,0x63,0x85,0x10,0x9b,0x7d,0x69,0x61,0xb8,0x98, + 0x89,0xfe,0x2d,0xa5,0x93,0xb4,0x77,0x41,0x00,0x9f,0x14,0x31,0x8d,0x63,0xaa,0x2a,0x3d,0x99,0x52,0x9b, + 0xf4,0x8f,0xfc,0x7a,0x2e,0x01,0x85,0x1c,0xf9,0xab,0x9b,0xe5,0x4e,0x1a,0x03,0x50,0x15,0xbe,0x49,0xde, + 0xc7,0x53,0xe9,0x8e,0x3f,0xb9,0x27,0xc9,0x7a,0xbb,0x4a,0xf3,0x84,0xb7,0x40,0x3e,0x4c,0x6a,0x81,0xd5, + 0x93,0xbf,0x7a,0x91,0x2f,0xd4,0x1a,0xcb,0x18,0xd3,0x55,0x19,0xab,0xe1,0xbd,0xa4,0x91,0x46,0x1f,0x02, + 0x47,0xfe,0xaa,0xe2,0xab,0xb8,0xe0,0x44,0xf5,0x21,0xa9,0xbf,0xc6,0xd3,0x54,0xa5,0x9b,0x4f,0x55,0xfe, + 0x6c,0x95,0xab,0x0a,0xea,0x4b,0x8d,0x3d,0x4f,0x38,0x55,0xfe,0xaa,0xe1,0x11,0xbc,0xe5,0x9c,0xaa,0xbf, + 0xcc,0xb0,0x25,0x75,0x25,0xe3,0xb8,0xc8,0x64,0x9d,0x19,0x3a,0x5e,0xf2,0x0f,0x9d,0x68,0xed,0xa9,0x24, + 0x6c,0xd9,0x55,0xc9,0x6c,0xee,0x6b,0xa3,0x4a,0xa3,0xd8,0xf3,0x15,0x48,0xef,0xc3,0x6a,0x57,0x68,0xef, + 0x70,0xad,0xd0,0x45,0xd0,0x43,0x70,0xa1,0x5e,0x32,0xeb,0x45,0x35,0xd8,0x80,0x2d,0x4d,0xb4,0xc8,0xe3, + 0x68,0xfa,0xa1,0x17,0x89,0xf9,0xb9,0x1e,0xfc,0xa7,0x82,0x8b,0xae,0xb6,0x05,0x1c,0x24,0xbb,0x82,0x27, + 0xf9,0xdd,0x84,0x28,0x49,0x7d,0x93,0x10,0xe6,0xfc,0xf6,0xcd,0x8b,0xd7,0xbd,0x25,0x75,0xe3,0xca,0xc0, + 0x7a,0x67,0x84,0xfa,0x3d,0x53,0x51,0x6e,0x4c,0xa0,0xd8,0xb7,0x57,0x71,0xbc,0xa4,0x83,0x94,0x5c,0x44, + 0xf6,0x42,0x9b,0x12,0xaf,0xac,0xef,0x68,0x81,0x95,0x4f,0x63,0x6a,0x54,0xe3,0x84,0x1e,0xce,0x26,0x90, + 0x7e,0x74,0x21,0xe7,0xa6,0xdd,0xc7,0x61,0xb6,0x7c,0x8e,0x98,0x5a,0x0e,0x7d,0xf4,0x10,0x5d,0xab,0x55, + 0xe2,0x69,0x46,0xa8,0xfd,0xe2,0xe7,0x65,0xe0,0xc8,0x57,0x6f,0xb5,0x74,0x36,0x16,0x1e,0xb4,0x51,0x48, + 0x85,0x0d,0x2b,0x84,0x56,0x21,0x48,0x7e,0xf1,0x8b,0x4b,0xde,0x5c,0xfb,0x2e,0xd0,0x10,0x20,0x69,0x3d, + 0x4e,0xac,0x95,0xf8,0x8e,0x4b,0x3d,0x59,0x2c,0xb2,0xab,0x42,0xb0,0x9e,0xf2,0x29,0x60,0xe1,0x95,0xde, + 0x2c,0xa7,0xb1,0x7d,0xc8,0x56,0x39,0x01,0xdb,0x65,0x32,0x89,0x81,0xb6,0xf9,0x16,0x93,0x8b,0x5a,0x79, + 0x44,0xe2,0xea,0xb5,0x9b,0xb2,0xb7,0x5c,0xe5,0xcb,0xac,0x88,0x8b,0x41,0x0f,0x17,0xa4,0x2a,0x5d,0x2f, + 0x02,0x50,0x12,0x16,0x8d,0x5a,0xa0,0xdf,0x67,0x65,0xb9,0x0c,0xf6,0xf6,0x0e,0xbe,0xba,0x3f,0x38,0xf8, + 0xe2,0xcb,0xc1,0xc1,0xe0,0xe1,0x5e,0xef,0xea,0x8c,0xa0,0x90,0xfa,0xef,0xe1,0x96,0x37,0x48,0x1f,0xa3, + 0x48,0x4a,0x6a,0x9a,0x99,0x8c,0xb2,0x97,0xcd,0x08,0x4e,0x8b,0x5e,0x91,0xc1,0xc7,0x4c,0xd1,0x53,0x77, + 0x1c,0x06,0x17,0xa3,0x17,0xdd,0x2d,0x6e,0x64,0xca,0xa6,0x0a,0x94,0xc8,0xbe,0x12,0xe2,0x09,0x52,0x01, + 0x9b,0x51,0xfa,0x81,0x6e,0xfe,0x0f,0x83,0xde,0x6f,0xd4,0x19,0x2e,0xb0,0x68,0x41,0x3f,0x8b,0x9e,0xe1, + 0xc0,0x7a,0x42,0x2b,0xf5,0x20,0x24,0xc0,0x68,0x4f,0x3f,0xf4,0xa0,0x2c,0x09,0x1a,0x01,0xd0,0x60,0x2f, + 0x73,0x4f,0x85,0xe4,0x5a,0xa5,0x65,0xb2,0xe0,0xdc,0x1f,0xbf,0x7e,0xde,0x5b,0x80,0x12,0x29,0x68,0xa3, + 0x09,0x59,0xdb,0xb7,0xb0,0xde,0x28,0x7b,0xd4,0xb5,0x12,0xb2,0x51,0x6a,0xcb,0xbb,0x56,0x9f,0x56,0x83, + 0xb7,0x88,0x00,0xad,0x87,0xbb,0xbc,0x97,0xb3,0xc7,0xb0,0x41,0x4f,0xdd,0x29,0x1c,0x08,0x8e,0xc7,0x81, + 0x9b,0x9b,0xa8,0x92,0xa8,0x20,0xe2,0x27,0x9f,0xd2,0xa4,0xa7,0x44,0xd6,0xe6,0x94,0xd3,0xdc,0xbe,0xd3, + 0x98,0xc0,0x02,0x03,0x2d,0x92,0xa9,0x5c,0xf8,0x8e,0xaf,0xab,0xd1,0x5d,0xa5,0xbe,0xe8,0x62,0x3e,0x9b, + 0x10,0x0c,0xff,0x4c,0x9d,0x3c,0xff,0xee,0xd9,0x1b,0xf9,0xad,0x00,0x6b,0x45,0x60,0x0d,0x57,0x5d,0xb8, + 0x1c,0x69,0xd9,0x8b,0x64,0x9e,0x16,0xb8,0xbe,0x5e,0xbc,0xe9,0xa9,0x98,0xf2,0xdd,0xc0,0x24,0x5b,0x40, + 0xe4,0xf9,0x29,0x2d,0x0b,0x36,0x85,0x16,0x94,0x0a,0x9e,0xe3,0xd0,0xca,0x46,0x60,0x65,0x17,0xa8,0x0f, + 0xc0,0x80,0x49,0x13,0x81,0x09,0x1d,0x4a,0xfa,0x75,0x8f,0xa0,0x64,0x9a,0x81,0x4c,0x22,0xca,0x65,0xa9, + 0xba,0x21,0xf2,0xc5,0x74,0x49,0x33,0x5a,0x9d,0xd2,0xdd,0x79,0x11,0x15,0xe7,0x40,0xbf,0xf8,0xee,0xe1, + 0x87,0xe3,0xcf,0x09,0xeb,0x5d,0x01,0x29,0x7f,0x2b,0x1f,0x8e,0x7f,0x46,0xb4,0x87,0xd8,0x97,0x7e,0xa7, + 0xbe,0xaa,0xb4,0x37,0x95,0x3f,0x64,0x60,0x23,0x31,0x29,0xa5,0x96,0x26,0xa6,0xa7,0x8d,0x22,0x62,0x6b, + 0x74,0x09,0xa7,0x10,0x25,0x55,0x2e,0x2d,0x52,0xa0,0x07,0x95,0xce,0xb3,0x3c,0x4b,0x89,0xea,0xe2,0xd5, + 0x77,0x5f,0x1d,0xbe,0x21,0xac,0x42,0xc8,0xac,0x50,0xc5,0xbe,0x23,0x52,0x91,0x29,0x5d,0x4a,0xcb,0x10, + 0x58,0xf3,0x22,0x5a,0xea,0xbc,0x6f,0xb3,0x6c,0x4e,0x50,0xf0,0x92,0x52,0x7a,0x4f,0xde,0xbc,0xa8,0xe8, + 0x64,0x95,0x6f,0xa8,0x64,0xe1,0x0f,0xb8,0xf7,0xb7,0x70,0x5e,0x4b,0x23,0xa7,0x8e,0x7a,0xec,0xc8,0x36, + 0xe7,0x64,0x26,0x47,0x2e,0x81,0xf4,0x7e,0x52,0x24,0x6b,0xa2,0x52,0x7a,0x6e,0x75,0x97,0x7a,0x5c,0xf6, + 0xc7,0x88,0x76,0x99,0xfe,0x49,0x4a,0x26,0xa3,0x91,0x02,0x32,0xf5,0xc7,0x2c,0x9d,0x5b,0x49,0xc4,0x64, + 0x0a,0xd6,0xfd,0x96,0x16,0x7a,0xa1,0x4a,0xf7,0xf6,0x88,0xae,0x53,0xc5,0x04,0xc5,0x2c,0x54,0xb9,0x5a, + 0xa5,0xb7,0x71,0x94,0x4f,0xce,0x40,0x74,0xe1,0x2f,0xaf,0x07,0x1d,0x24,0x22,0x6e,0xe9,0x96,0xe2,0xd3, + 0xf6,0x86,0x4f,0x9b,0x50,0x75,0x7c,0xc6,0x18,0xfd,0xf7,0x89,0x41,0xb9,0xf4,0x74,0xf1,0xb7,0x87,0x4f, + 0x84,0x1e,0xc4,0xc2,0xbe,0x04,0x46,0xb8,0xa1,0xfc,0x93,0x37,0x9a,0x0e,0x57,0x87,0xb2,0xd6,0x91,0x3a, + 0xd6,0xf6,0x1d,0x43,0xa7,0x44,0x6a,0xbe,0xf9,0xf5,0xe5,0xf3,0x9c,0x52,0xf2,0xb7,0xcf,0xa9,0xbf,0x37, + 0xcf,0x9e,0x7c,0xf5,0xc5,0x97,0x9f,0xf7,0x28,0xb5,0x37,0xe5,0xe4,0x1e,0xa5,0x4b,0x4d,0xe8,0x06,0x37, + 0xeb,0x3c,0xfb,0xb1,0xbb,0xce,0xb3,0x1f,0xa5,0xce,0x04,0x8e,0x4c,0x51,0xe9,0xea,0xe2,0x89,0x06,0xea, + 0x8e,0xf2,0x2f,0xfe,0xe7,0xff,0xfb,0xac,0x82,0x74,0x2a,0xfc,0x0d,0xc8,0xc6,0x38,0x9d,0x7c,0xe8,0x2c, + 0x3e,0xd3,0xb9,0x02,0x4e,0x04,0x3b,0x3f,0xc4,0x1f,0x5a,0xf0,0x44,0x27,0xaf,0x56,0xe0,0x8c,0x8f,0xf7, + 0x4f,0xb1,0x38,0xf1,0x9b,0x02,0x7d,0xce,0x7a,0xab,0x82,0x11,0xa1,0x4d,0x45,0x0e,0x7a,0x84,0x16,0xa6, + 0x7c,0x35,0x2c,0xb2,0xec,0x1c,0xf9,0xab,0x25,0x63,0x21,0x15,0xc0,0x91,0x8b,0xff,0x49,0x97,0xeb,0x80, + 0xb0,0x16,0xdd,0xae,0x84,0x51,0xce,0x7b,0x88,0x28,0x47,0x00,0x0e,0x44,0xa1,0xfa,0xf6,0xb1,0xee,0x3d, + 0x35,0xa8,0x0b,0x66,0xe7,0x20,0x8c,0x2d,0x09,0xb6,0x05,0xed,0xf1,0x2c,0x0a,0xba,0x0e,0x7e,0x22,0xf6, + 0xb5,0x00,0xaa,0x93,0xdb,0x8c,0xa6,0x17,0xeb,0x46,0x70,0x69,0xab,0xfb,0x45,0xfb,0xbf,0xa3,0x0b,0x8d, + 0x90,0xdc,0x12,0x23,0x9d,0x73,0xe3,0x60,0x99,0xf7,0x18,0x27,0x46,0x9a,0x08,0x4a,0xca,0x7b,0x84,0xb1, + 0x0b,0xb9,0xe0,0x30,0x74,0xbd,0x28,0x03,0x3a,0xde,0x2c,0xfa,0x0d,0xae,0xc1,0x29,0x1a,0x8e,0xf4,0x19, + 0x5c,0x23,0xf2,0xdd,0x82,0x64,0x3a,0x3d,0x22,0xbb,0x06,0xec,0x45,0xa7,0x98,0x57,0x69,0xd8,0x45,0xe1, + 0x3c,0xab,0x9b,0xbc,0x55,0xd9,0xba,0x86,0x89,0xb6,0x2d,0xe1,0x15,0x5a,0xea,0x08,0x16,0x69,0x95,0x57, + 0x5c,0x68,0xbd,0xac,0x45,0xdc,0x15,0xad,0x1a,0x35,0xca,0xae,0x5e,0xef,0xa5,0x4d,0x9d,0xb5,0x6b,0xd6, + 0xe9,0x4a,0xab,0x2e,0x33,0xae,0xdd,0x93,0x2a,0x60,0x66,0xdd,0x39,0x29,0xae,0xd4,0x9e,0x15,0x57,0x68, + 0xcd,0x4a,0xb0,0x18,0xee,0x39,0xc5,0x02,0x5b,0x35,0xf2,0x98,0x46,0x44,0xfb,0x2a,0xd7,0xa0,0x66,0xf7, + 0x56,0x4b,0x8c,0x59,0xa3,0x41,0x3a,0xdb,0xd8,0xb8,0x1e,0x07,0x23,0xec,0x49,0x1e,0x80,0x53,0x63,0x4d, + 0xdd,0x03,0xb3,0x7d,0x76,0xe3,0x3c,0x4a,0x7e,0xa5,0x00,0x1d,0x28,0x0e,0x96,0x70,0xa1,0x30,0x76,0xaa, + 0x10,0x9d,0xbd,0x52,0xd9,0x39,0x60,0x5e,0x23,0x37,0x9a,0x3c,0x5d,0x9a,0x49,0x1a,0x31,0x3f,0xc2,0xcd, + 0x6d,0xdb,0x1e,0x9e,0xfa,0x96,0xed,0xe1,0x8a,0xdb,0xf7,0x87,0xab,0x6e,0xdb,0x1f,0xe2,0x96,0xd3,0x85, + 0x61,0xfc,0x89,0x46,0x5f,0xb6,0x64,0x2d,0x1f,0x27,0x6c,0x89,0xff,0x9e,0xac,0xe5,0x6b,0x22,0xeb,0xb2, + 0x79,0x9c,0x9e,0x2e,0x92,0xf3,0xde,0x3c,0xa6,0x7b,0x9f,0x68,0xb3,0xd3,0xf8,0xcf,0x64,0xde,0xbb,0xe0, + 0x8b,0x62,0x4a,0x05,0x2e,0x59,0x8e,0x60,0xc8,0x92,0xb8,0x4b,0xfc,0xf2,0x1d,0x95,0x2e,0xd4,0xb0,0x41, + 0x92,0x10,0x31,0xb8,0x4c,0x93,0x78,0x75,0x45,0x7f,0xe7,0xb1,0x84,0x29,0xc2,0x88,0x31,0x68,0xa2,0x0d, + 0xe2,0x3f,0x63,0x08,0x60,0x68,0x0f,0x7a,0x29,0x0d,0x25,0x4e,0x1b,0xe2,0x97,0xc3,0x2c,0x06,0x99,0xd3, + 0x48,0xd7,0x22,0x98,0xa7,0x66,0x80,0xd9,0xb2,0x58,0x44,0x51,0xfa,0x97,0xa4,0x31,0x3f,0x27,0x25,0x8d, + 0x6c,0x72,0x16,0x9d,0xc7,0x8b,0x8f,0x17,0xc9,0xd4,0x6b,0x29,0xb9,0xcc,0x5b,0x1a,0xc4,0x12,0x4e,0x48, + 0xa6,0x4d,0xe9,0x4c,0x42,0x83,0x9c,0xc7,0x97,0xc4,0x6a,0x61,0x2e,0x5d,0x12,0x9a,0x68,0x46,0x90,0x91, + 0xa5,0x6d,0x01,0xcd,0x0f,0x94,0x39,0x8f,0xb1,0xfe,0x71,0xae,0xa2,0x11,0x10,0x61,0x73,0x8e,0x76,0x9a, + 0x82,0x9a,0x5f,0xaa,0x12,0x54,0x78,0x91,0xe5,0x28,0x54,0x17,0xd6,0xbc,0xc2,0x48,0xd0,0x92,0x0c,0xe5, + 0x63,0xc4,0x35,0xdf,0xad,0x92,0x69,0x32,0x8f,0xb7,0x88,0x6b,0x88,0x63,0xc1,0xa9,0x88,0x01,0x21,0xd8, + 0xcf,0xc5,0x0c,0x54,0xbe,0x92,0xc9,0xc4,0x49,0xd9,0x92,0xd9,0x1c,0x4a,0x59,0x2d,0xac,0x89,0xe3,0x05, + 0x7b,0x6e,0x89,0xa9,0x9d,0xf4,0xd3,0xa4,0x36,0xef,0xa6,0x4d,0xa9,0xcd,0x8f,0x0c,0x0b,0x3d,0xc2,0x17, + 0xbd,0xcb,0x0c,0x77,0x04,0x95,0xa9,0x18,0xf4,0x38,0xae,0xa4,0x35,0x97,0xb5,0xa5,0x8a,0xe1,0x86,0x2f, + 0x29,0x5a,0x72,0x9b,0xb9,0xac,0x7c,0xbd,0x99,0x79,0x6c,0x38,0x98,0x38,0x9f,0x36,0x04,0x38,0x87,0xb5, + 0xa2,0x34,0x31,0x01,0x91,0x38,0xbd,0x59,0x8a,0x13,0x4b,0x1f,0x75,0xae,0x5c,0x57,0x62,0xae,0x9b,0x8e, + 0xc2,0x65,0x16,0xcf,0x75,0x9a,0xe6,0xbc,0x69,0xcb,0xaf,0xa8,0x66,0x9c,0x57,0x3d,0xd4,0x39,0x78,0x48, + 0x10,0xe2,0x59,0x4b,0x9e,0xf3,0x4b,0x54,0x94,0xd2,0x69,0x43,0x9e,0xf3,0x3b,0xee,0xe3,0xe5,0x79,0x76, + 0x51,0x94,0x75,0x99,0x0e,0x67,0x40,0x1d,0x79,0x1e,0x41,0xb9,0xd5,0x16,0xed,0xe8,0x91,0x83,0x1c,0x4d, + 0x1b,0xa2,0x1d,0x3a,0x96,0xd3,0x68,0xde,0x90,0xed,0x3c,0xa7,0x85,0x31,0xa9,0xb6,0x6c,0x27,0x8b,0xad, + 0x8c,0x4a,0xb4,0xf3,0x9c,0x3b,0x36,0x19,0x5a,0xb6,0xf3,0x4b,0x4e,0x5d,0xeb,0xc4,0x4a,0xb8,0xf3,0x3b, + 0x61,0xf4,0xaa,0xb0,0x16,0xee,0xfc,0x9e,0xc9,0x40,0x6a,0xc2,0x9d,0xa7,0xf1,0x55,0x3c,0x67,0x65,0xdd, + 0xa6,0x78,0x47,0x6d,0xfd,0xa9,0x2a,0xb0,0x7d,0xfb,0x1b,0x92,0x9e,0xa7,0xad,0x0a,0x35,0x20,0xb8,0x4d, + 0xe0,0xf3,0x9a,0xee,0x28,0xab,0x02,0xf1,0xbd,0x04,0xb7,0x10,0x81,0xf6,0x9a,0x80,0xc8,0x64,0x51,0x3c, + 0x23,0xb0,0xbd,0x4d,0xe6,0xb3,0x15,0xb8,0xba,0x65,0x3e,0x1a,0x62,0x2c,0x91,0x8f,0x05,0x7c,0x75,0xc1, + 0x4f,0x0d,0xfc,0xb6,0x4a,0x7f,0x68,0x94,0x67,0x44,0xd3,0x75,0x49,0x7f,0x9e,0x88,0xdc,0x27,0xbe,0x55, + 0xec,0xf3,0x2d,0xe6,0x0f,0xb1,0x8f,0xc1,0x36,0xf3,0x78,0x91,0xbc,0x3b,0xc7,0xd4,0x92,0x8e,0xa6,0x8d, + 0xd0,0xe7,0x69,0x06,0xd1,0x59,0x1a,0x45,0x39,0x6d,0x66,0x1a,0x5b,0x13,0xef,0x12,0xff,0x48,0x09,0x55, + 0x1c,0x35,0xb7,0xca,0x81,0x2a,0x64,0x6b,0x30,0xa5,0x85,0x7f,0xed,0x8b,0xb2,0x21,0x09,0x7a,0x62,0xcb, + 0x26,0x6a,0xc0,0x61,0x15,0x13,0xb2,0x9e,0x4e,0xcf,0x39,0x51,0xca,0x60,0x8a,0x33,0x99,0x6e,0x8f,0xb8, + 0x33,0xac,0x84,0xc8,0x86,0x2a,0x02,0x2e,0xc6,0xf5,0x1c,0xcd,0x38,0x8f,0xae,0xca,0x28,0x8f,0x08,0x07, + 0xf2,0x2c,0xf8,0x92,0x05,0x69,0x61,0xe4,0x13,0xb1,0xdc,0x1f,0x68,0x6a,0x1a,0x5b,0xa9,0x06,0xae,0x11, + 0x29,0xa2,0xf7,0xbc,0x5e,0x8b,0x38,0x7d,0x2a,0x42,0x2b,0x18,0xf1,0x6e,0xf7,0x2e,0x93,0xa8,0x53,0x44, + 0x44,0xf9,0xd4,0xf3,0x3b,0x7b,0x64,0x67,0xf1,0x29,0x6e,0xbf,0x0b,0x4c,0x66,0xd0,0x7b,0x2b,0xf3,0x95, + 0x71,0x41,0x8a,0x43,0x54,0x5f,0x82,0xb1,0xf2,0x3c,0xed,0x31,0xf8,0x3d,0x42,0x1e,0x73,0xba,0xe4,0xd5, + 0xd5,0x22,0xd7,0xe8,0x29,0x11,0x94,0xc9,0x22,0x99,0x4f,0x81,0xb0,0x7b,0xdf,0xc7,0xbd,0xf3,0x15,0xad, + 0xa3,0xd5,0x5a,0xd6,0x38,0x42,0x53,0xdc,0x04,0xb8,0x15,0x0c,0xff,0x28,0x4b,0x7f,0x9e,0x52,0x22,0xcd, + 0x69,0x9a,0xaf,0xce,0xb1,0x1c,0x65,0x56,0x62,0xe8,0x53,0x91,0x0f,0x45,0xb8,0x76,0x69,0x11,0x9b,0xe2, + 0x21,0x6b,0x8f,0x41,0x79,0x30,0x65,0xab,0xae,0x63,0xab,0x9c,0x6c,0x9f,0x2a,0xdb,0xde,0x02,0x34,0x4e, + 0x4b,0x14,0xd3,0xb5,0xda,0x90,0x11,0xfd,0xb2,0x5a,0xf4,0xce,0x12,0xa6,0x04,0xe8,0x88,0x63,0x45,0x98, + 0x80,0xa0,0x62,0x57,0xd1,0xe4,0xac,0xbc,0x02,0xc9,0x4a,0xb3,0xf3,0x91,0x62,0xe1,0x21,0x96,0x0f,0x97, + 0x2b,0x5e,0xd6,0x1e,0x81,0x6d,0x8e,0x0b,0x9b,0x97,0xa3,0xd8,0x2a,0x36,0xfa,0xd5,0x34,0xa8,0x05,0x47, + 0xdf,0xc6,0xa7,0xf9,0x8a,0x28,0xc0,0x4a,0x78,0x74,0x56,0x13,0x1e,0xd1,0x9a,0x32,0x80,0xb1,0x00,0x87, + 0xb8,0x5a,0x5a,0xb2,0x98,0x8e,0xff,0x9f,0x80,0xb9,0x28,0x6d,0x4d,0x93,0x18,0x49,0x02,0x40,0xaa,0x94, + 0xbc,0x4b,0x19,0x76,0xaf,0x92,0x05,0xa6,0x6d,0xed,0x15,0xaa,0x41,0x33,0x9f,0x26,0x44,0xff,0xfc,0x99, + 0xbc,0x43,0xfe,0x55,0x4c,0xd3,0xbe,0x02,0xec,0xd2,0x8f,0x8b,0x38,0x56,0x94,0xe8,0x29,0x1c,0x71,0xb5, + 0x05,0x49,0x79,0xbc,0x5d,0x8c,0x04,0x39,0xca,0xed,0x82,0xa4,0xe8,0x62,0x8b,0x20,0xe9,0x2d,0x48,0x39, + 0x1a,0xc7,0x54,0x8b,0x92,0xd0,0xd7,0x56,0x41,0x52,0x53,0x92,0xf4,0x6e,0x5a,0x97,0x24,0xc5,0x37,0x09, + 0x92,0x22,0x98,0x28,0xd0,0x39,0x20,0xb8,0x62,0x04,0xf5,0x17,0xe4,0x49,0xa7,0xc9,0xbb,0xab,0x38,0x67, + 0x48,0xfc,0x18,0x91,0xd2,0x2f,0x42,0x85,0x77,0x89,0x94,0x52,0x4b,0xa4,0xf4,0x94,0xc0,0x6b,0x5a,0xc6, + 0x73,0x42,0x28,0x53,0x4b,0xac,0x84,0x87,0x75,0x3b,0xd1,0xf0,0x5b,0x76,0x79,0x08,0x96,0xaa,0x82,0xb4, + 0xe5,0x67,0x11,0x0e,0x24,0x1d,0xbb,0xd3,0xa8,0x20,0x84,0x02,0x8e,0x42,0xb8,0xb1,0xb8,0x53,0xd2,0xf4, + 0x7b,0x16,0xf3,0x74,0xfe,0xba,0xa4,0xc9,0x62,0x3c,0x6f,0x91,0x30,0xd5,0x5a,0xb6,0xd1,0x07,0xa3,0x09, + 0xfb,0x2a,0x23,0x22,0x7f,0xfe,0xdf,0x21,0x65,0x3a,0x5f,0x64,0xff,0x67,0x09,0x99,0x9e,0x00,0x1b,0xe7, + 0xcc,0x0b,0x12,0xac,0x11,0x46,0x17,0x6c,0x71,0xc9,0x47,0xbf,0x4e,0x24,0xd3,0xd1,0x67,0xee,0x4f,0x95, + 0x29,0xd5,0x5d,0x73,0xa6,0x58,0x09,0x94,0x85,0xa8,0x49,0xae,0x94,0x25,0xa0,0x82,0x6a,0x10,0xf0,0x96, + 0x8c,0xbd,0xff,0x14,0xec,0x67,0x24,0x4e,0x17,0xc0,0x05,0x6a,0x88,0x54,0x9c,0xcb,0x4d,0xa9,0x57,0x48, + 0x97,0xce,0xd1,0xae,0x92,0x39,0x15,0x5a,0xe8,0x24,0x28,0x11,0x34,0x02,0x2e,0x60,0x33,0x25,0x40,0xde, + 0xc7,0x89,0x9d,0x80,0xd1,0x58,0xa4,0xa8,0x90,0x30,0x73,0x13,0x7a,0xc2,0xc0,0xfb,0xd3,0xdb,0x85,0x4f, + 0x60,0xdc,0x14,0x2f,0x6c,0x04,0x4f,0xea,0x0e,0x53,0x27,0xa1,0x2d,0x73,0x42,0x1d,0x8b,0x35,0x51,0x8c, + 0x11,0x23,0x85,0x8e,0x9a,0x5a,0x46,0x63,0xf5,0x74,0x5b,0x95,0xba,0x84,0x03,0x15,0x6b,0x34,0xe5,0x2d, + 0xb5,0x9b,0x62,0x0e,0xd4,0x6f,0x52,0xc8,0x37,0xb5,0xd1,0x12,0x47,0x7d,0xc4,0x7c,0x99,0xb3,0x6f,0x08, + 0xa5,0x6e,0x9b,0xb0,0xaa,0xd3,0x96,0x4d,0xa1,0xa2,0x8d,0x13,0xea,0xc3,0x6b,0x4a,0xa6,0xbe,0x61,0x11, + 0x21,0xe8,0xdb,0xb4,0xa8,0xd0,0x2b,0x03,0xfc,0x16,0xf1,0x14,0x2f,0x28,0x6e,0xc0,0x1b,0x46,0xd5,0x94, + 0x50,0xfd,0x50,0x61,0x41,0x4b,0x24,0x95,0x6a,0x6a,0x67,0x69,0x2d,0xdd,0x5f,0xd8,0x3d,0x7b,0xf9,0xfe, + 0xf2,0xf6,0x49,0x23,0x9b,0xcd,0xa6,0x8a,0x7e,0xc2,0xb2,0x9c,0x27,0xcb,0xa5,0x51,0xce,0x82,0x24,0x4e, + 0xb9,0xbf,0xaf,0xfc,0xc8,0x44,0x97,0x09,0xdd,0xbf,0x59,0x3e,0x58,0x10,0xee,0x58,0x45,0xf3,0xb8,0xe9, + 0xd4,0xc5,0xe1,0xdb,0x4e,0xbb,0x88,0x31,0x26,0xf5,0xde,0x50,0x35,0xe7,0x5e,0xc7,0x74,0x57,0xfd,0x83, + 0x86,0x4f,0x37,0x3f,0x35,0x1d,0xc4,0x3e,0xbb,0x5c,0xb9,0x4e,0x69,0x2e,0xb3,0x44,0xad,0x21,0x1b,0x58, + 0x69,0x69,0xd6,0xce,0xbe,0x5f,0x88,0x84,0x68,0xe7,0x40,0x7d,0xc9,0xee,0xd0,0x4f,0x55,0xe6,0x05,0x81, + 0xdb,0x04,0xe3,0x0a,0x9c,0xb5,0xde,0xf6,0x37,0x79,0x36,0x67,0x2c,0x4b,0xc5,0xe4,0xec,0x1f,0x46,0xa7, + 0x08,0x3d,0x22,0x52,0x0f,0xad,0xd3,0x74,0x5d,0xc9,0xe7,0x54,0x63,0x2c,0x75,0xd2,0xd9,0x76,0xe2,0xa6, + 0x2e,0x8b,0x5a,0x06,0xd7,0xb1,0xe2,0xb1,0xa8,0x8b,0x84,0xe8,0xad,0xfd,0x01,0xff,0x57,0x09,0x9d,0x6a, + 0x25,0x94,0x60,0x66,0xbf,0x5e,0x74,0xa3,0xe0,0x87,0xfa,0x30,0x20,0x84,0xe0,0x6f,0x95,0xd8,0x04,0xbc, + 0x9f,0xdd,0x4e,0x59,0x67,0x0b,0xc5,0x18,0x4d,0x17,0x87,0x4b,0x2d,0xe1,0x86,0x6a,0x75,0xe2,0x6d,0x0c, + 0xea,0x96,0xf6,0xa6,0xf1,0x82,0x48,0xac,0x56,0xd3,0x75,0xde,0xc9,0xd0,0x5d,0x5c,0xce,0xe6,0x89,0xb0, + 0x65,0xa5,0x99,0x0b,0x93,0xab,0x5c,0xc6,0x10,0xab,0xd2,0x09,0x88,0xd4,0x1d,0x5e,0x0f,0xfe,0x6d,0x11, + 0x7d,0xfc,0x5b,0x53,0x7a,0x6c,0x6f,0x6f,0xa8,0xb4,0x8a,0x16,0x12,0x1b,0x47,0x8b,0x06,0xfa,0xdc,0x27, + 0xda,0x53,0x01,0x0f,0x81,0x8b,0x74,0x49,0xf0,0x4f,0x88,0x3c,0x9e,0x12,0xb9,0x21,0x39,0xf1,0x14,0xa4, + 0x84,0x8c,0x79,0xa9,0xc8,0x05,0x29,0x7a,0x75,0x81,0x8b,0xdf,0x7c,0xd3,0x85,0x2e,0x5d,0x5b,0x57,0xb6, + 0xce,0xac,0x6e,0x65,0x4e,0xb1,0xef,0x5e,0xda,0x7e,0x2d,0x22,0xc3,0xec,0xf4,0x37,0x3b,0x29,0x08,0xb0, + 0x30,0xc8,0x38,0x1a,0xfb,0x0b,0x83,0x31,0x40,0x03,0x2a,0x49,0x0e,0xe7,0xe4,0x31,0x9e,0xf2,0x2e,0x63, + 0x9d,0x40,0xcb,0xce,0x8e,0xf9,0x5a,0x91,0x6f,0x95,0x07,0xb1,0x72,0x60,0x9f,0x1e,0xd4,0x52,0x71,0x7a, + 0x4c,0x28,0x2b,0x66,0x68,0xe1,0xb9,0xd6,0x75,0xf8,0xd3,0xd1,0x3e,0xc6,0x94,0x02,0xa1,0x1e,0x0b,0x4c, + 0xff,0xcf,0xb4,0x75,0xff,0x81,0xc4,0x57,0x2e,0x07,0xe6,0xf8,0x58,0x41,0xeb,0x7f,0x6c,0x9c,0x3c,0x58, + 0x04,0x0e,0x9a,0x08,0x9a,0x13,0x95,0x90,0x95,0x17,0x81,0x9d,0x1b,0x41,0x71,0x1b,0xe1,0x0d,0xad,0xb3, + 0x2c,0x63,0xde,0x39,0x18,0x36,0xf4,0x87,0xd9,0x4a,0x72,0x7f,0x98,0x3d,0x3a,0x78,0xf8,0x90,0xfe,0xf4, + 0xc3,0x83,0xcf,0x3d,0xe5,0xba,0x32,0x13,0xdf,0x05,0x59,0xb8,0x7b,0x1f,0x59,0x8f,0xc2,0xfb,0xa6,0x44, + 0x62,0x4a,0x94,0x83,0x6a,0x65,0xc3,0x9c,0xfa,0xac,0x2d,0x6d,0x98,0x50,0x8a,0x75,0xc7,0xbb,0xde,0xa0, + 0x3c,0x8b,0x53,0xdb,0x05,0x91,0xe4,0x57,0x57,0xdc,0xd6,0x22,0x72,0x95,0x6d,0xcd,0xb6,0x31,0xfd,0xd6, + 0x42,0x75,0x7c,0xbe,0xbd,0x2b,0xac,0x58,0x67,0x6e,0x51,0x66,0xcb,0xce,0x8d,0x51,0x58,0x8c,0x56,0x78, + 0xe3,0x59,0xff,0xf9,0x4a,0x05,0x35,0x40,0x34,0xb2,0xab,0x57,0x36,0x0a,0xee,0x8c,0x87,0x03,0x60,0x4b, + 0x6b,0xc0,0x16,0x5e,0x2b,0x1c,0x4f,0x88,0x5c,0x88,0xa6,0x72,0xa3,0x82,0x6f,0xa7,0x6d,0xa8,0xbc,0x7b, + 0x77,0xb2,0x20,0x6c,0x87,0x6f,0xba,0x8a,0xdd,0x8e,0x12,0x88,0x86,0xd8,0x06,0xe6,0x22,0x2e,0x75,0x1d, + 0x6b,0xbe,0x8d,0x91,0x08,0x3a,0xd8,0x72,0x14,0x36,0xfe,0xe7,0xf1,0x03,0x38,0x89,0x4c,0xa6,0x71,0xf7, + 0x3c,0x95,0x4d,0x52,0x47,0x93,0x3c,0x9b,0x56,0xa6,0x9a,0x90,0x5b,0x9b,0x51,0x77,0x29,0x65,0x65,0xd1, + 0x3d,0x32,0x0c,0x8a,0xd8,0xd2,0x45,0x4c,0xf8,0x83,0x9f,0xce,0x1a,0x9e,0xad,0x35,0x65,0xbb,0xc8,0x10, + 0x0a,0x48,0xd9,0xe8,0x38,0x0e,0x47,0x53,0x26,0x94,0xb4,0xa4,0xec,0x78,0xe4,0x7c,0x77,0x48,0x7c,0xa1, + 0xfe,0xd9,0x43,0xec,0xb8,0x9e,0xd3,0xaf,0x0a,0x0c,0xd4,0xe5,0x83,0x14,0x26,0xad,0x47,0xd0,0x78,0xd3, + 0xb9,0x4e,0x60,0xbc,0xe3,0xcb,0x48,0x9b,0xd0,0x00,0xd7,0xd7,0x6e,0xe9,0xf5,0x9d,0xe3,0xf4,0x38,0x75, + 0xfa,0xb9,0xcf,0x9e,0xd3,0x6d,0xea,0xf8,0x46,0xdd,0xee,0xe8,0x7d,0x92,0xb1,0x3b,0x28,0xd7,0xd9,0x8b, + 0x96,0xc9,0x9e,0xba,0x5c,0x9d,0x26,0x08,0x77,0x45,0x8c,0x2b,0x95,0x57,0x6b,0x1a,0x82,0x56,0x92,0x96, + 0x24,0x82,0xdf,0x81,0xf2,0xe3,0x3f,0xa8,0x2f,0xe0,0x00,0xe4,0x27,0x7c,0x6c,0x31,0x40,0xda,0x07,0xdc, + 0xf1,0xd4,0xb0,0x2d,0x9a,0xf5,0x93,0x46,0x5e,0x5d,0x7f,0x9f,0x3a,0xf8,0xaa,0xe6,0x5f,0x19,0xbf,0xa5, + 0xa4,0xa6,0xa7,0xa0,0x68,0xe7,0x4f,0x1a,0xbe,0x7a,0x1a,0xff,0xc4,0xa1,0x4b,0xad,0xbf,0x32,0x6c,0xa5, + 0x90,0xa3,0x87,0x5c,0x23,0x77,0x3f,0x69,0xe0,0x9a,0x08,0xd9,0x63,0x8d,0xd5,0x8e,0xf1,0xc3,0x13,0x4f, + 0xf7,0x14,0x34,0xf2,0x32,0xe4,0x90,0x24,0x0f,0xd4,0xcf,0xf5,0xba,0x4d,0x02,0xa9,0x12,0xf5,0xd4,0xf5, + 0x7a,0xbf,0x46,0x0b,0xb5,0x5d,0x0d,0x99,0x6a,0x52,0xc8,0xb3,0xc3,0xf6,0x0e,0xf3,0x47,0x8d,0x6c,0x13, + 0xbb,0xd7,0x0e,0xb3,0x5c,0x2b,0x71,0x94,0x8f,0x09,0xdb,0x9a,0xf2,0xe2,0xe4,0xfa,0x94,0x9f,0x81,0x53, + 0xd0,0x22,0xc9,0xa0,0xfa,0x61,0x8d,0x0e,0xd1,0x31,0x29,0xcf,0xfa,0x85,0x4c,0x3d,0xfb,0xa4,0x36,0x71, + 0x73,0x3b,0xd6,0x2b,0x3c,0xde,0x1f,0xed,0x23,0x45,0x4d,0xdb,0xbe,0x34,0x5b,0x05,0x4d,0x31,0xa2,0x6d, + 0x2e,0xe4,0x95,0xc8,0x3d,0xb8,0x9b,0xd0,0x54,0x3e,0x14,0xaf,0x67,0xbf,0xc6,0xf1,0xb9,0xf7,0x98,0xc6, + 0xa6,0x9e,0x8a,0xdc,0xfb,0xad,0xac,0x2b,0xf3,0x5e,0xe4,0x3e,0x6c,0xd7,0xd3,0x6f,0x46,0xee,0x97,0xad, + 0xbc,0x99,0x3c,0x1b,0xb9,0x07,0x5f,0xb4,0xb2,0x0a,0xfd,0x78,0xe4,0x3e,0x68,0x77,0x58,0xc8,0x0b,0x92, + 0xfb,0x45,0xab,0x3b,0xb8,0x1e,0xaf,0x16,0x1c,0xf3,0x0a,0x61,0x15,0xf6,0xf1,0x00,0x6f,0x43,0xb8,0x01, + 0xfb,0x06,0x9b,0xf6,0xd7,0x00,0x5f,0x88,0xfa,0x4f,0x3d,0xba,0x66,0x2e,0x52,0xfd,0xaf,0x9c,0xe1,0xfa, + 0xe8,0x2b,0xf4,0xc3,0x64,0xec,0xa7,0x61,0x1f,0xd6,0xf9,0xef,0x3e,0xbc,0x5d,0x27,0xc9,0xb3,0x2d,0x81, + 0x76,0xe0,0xdf,0x1e,0x7c,0x16,0xbb,0x67,0x67,0x57,0x41,0xfb,0xc3,0x48,0x1f,0x2a,0x75,0x96,0x22,0x3b, + 0x84,0x38,0x32,0x60,0xe1,0xcb,0x5e,0x8a,0xf3,0x11,0x51,0x11,0x41,0xb1,0x43,0x5f,0x1c,0x21,0x0a,0xf1, + 0x78,0xb3,0x9a,0xfb,0xf9,0x02,0xc1,0x75,0xfb,0x61,0xb1,0xc1,0x65,0x19,0x73,0x90,0xe4,0x78,0x50,0x23, + 0xde,0x25,0x7e,0xe3,0x6c,0x91,0xc1,0x1b,0xfe,0x9e,0x0e,0x8c,0xe0,0x59,0xc5,0x18,0x5a,0x36,0x2d,0xb1, + 0x48,0xf7,0x2a,0xc5,0x8a,0x00,0xe6,0xc8,0x12,0xf2,0x89,0x59,0xca,0xaa,0x2d,0x89,0xb7,0x6a,0xdf,0x39, + 0x7e,0xc5,0x73,0xd9,0x37,0xca,0x40,0xa7,0xd6,0x98,0xb0,0x5a,0x09,0x2b,0xc3,0xb0,0x66,0xb5,0x02,0x2a, + 0x51,0x98,0xb5,0x7a,0x0e,0xa5,0x54,0x9c,0x5b,0x2d,0x4b,0xa7,0x0a,0x2b,0x57,0xcb,0x42,0x0a,0x38,0xbb, + 0x5a,0x62,0xb2,0xb4,0x99,0xbc,0x7a,0x2f,0x26,0xdd,0xf0,0x7d,0xb5,0x7c,0x95,0xb8,0x69,0x82,0x0f,0x82, + 0xf8,0x7c,0x24,0x34,0x37,0xb6,0x85,0x40,0xb9,0x45,0x42,0x57,0x1b,0x41,0x84,0xb2,0xde,0xc9,0xee,0x9b, + 0xd6,0xf0,0x5e,0x66,0x17,0xcb,0x9b,0x76,0x51,0x6b,0xa5,0x95,0xea,0x3a,0x6d,0xf6,0x9d,0x32,0xfd,0xde, + 0x45,0x77,0x39,0x35,0x9d,0x1c,0x1c,0x40,0x3d,0xdf,0xb2,0x73,0xbe,0x65,0x6d,0xbe,0xe6,0x0a,0xee,0x62, + 0x17,0x6a,0x73,0xed,0x64,0xeb,0xb6,0xc2,0xae,0xe2,0x28,0x88,0xcf,0x9b,0xc7,0x74,0x24,0x4d,0x82,0x21, + 0xd8,0x35,0x57,0x6e,0x77,0xa9,0xe2,0x1d,0xd4,0x6b,0xf7,0xfb,0x7e,0x3d,0x41,0x85,0xbf,0x3b,0x08,0x4c, + 0xb2,0x19,0x4e,0xe8,0xec,0x39,0x56,0x68,0x83,0xde,0xfd,0xce,0x32,0xbb,0xb5,0x32,0x0f,0x3a,0xcb,0x1c, + 0x1f,0xd7,0x0a,0x3d,0xec,0x2c,0xb4,0x76,0xfc,0xe6,0x4c,0x37,0x1b,0xff,0xfe,0xe7,0xfb,0xbc,0x5c,0x6d, + 0x5e,0xcb,0x5e,0x2d,0xe6,0x0b,0xcc,0x22,0x28,0xcb,0xf1,0x6a,0x89,0xa8,0x05,0xc2,0x8c,0x9a,0x55,0xc6, + 0x23,0x89,0x50,0xe8,0x5d,0x4e,0x69,0x2b,0xb1,0x93,0x3e,0xa6,0xfa,0x12,0xd7,0x9e,0xcf,0x6c,0xa5,0x20, + 0xc7,0xc4,0x11,0xdc,0x52,0x57,0x78,0x01,0xb5,0xca,0x2a,0xc8,0xdf,0x7d,0x1d,0xcc,0x4f,0x1f,0x39,0x82, + 0xb4,0xa1,0xda,0x06,0xb5,0x40,0xfc,0xc7,0x44,0x12,0x14,0xcb,0x7c,0xbd,0xc2,0xf5,0xca,0x18,0x83,0x84, + 0x0e,0x0c,0x74,0x38,0xa0,0xae,0x71,0x6e,0xba,0x97,0xe0,0x30,0x7e,0x5f,0xfe,0xb5,0x65,0xe8,0xf1,0x71, + 0x69,0x17,0xc3,0x0b,0xae,0x16,0x43,0x4c,0x1d,0xef,0x13,0xd7,0xe7,0x23,0xda,0x86,0xba,0x18,0xb5,0xab, + 0xd6,0xeb,0x23,0x2a,0x88,0x36,0x99,0xae,0x72,0xff,0x63,0xaa,0xd4,0x94,0xcc,0x74,0x4d,0xbd,0xf2,0xbd, + 0x6d,0x73,0x49,0x96,0x1a,0xbe,0x3f,0xa2,0x8b,0x9a,0xa6,0x9a,0xee,0xe2,0xf3,0x4f,0xa8,0x99,0x88,0xe6, + 0x9a,0xae,0xda,0xdc,0xfe,0xdb,0xf6,0xa7,0x02,0x0d,0xc4,0xd8,0x69,0x49,0xfb,0x6f,0xbe,0x46,0x47,0x96, + 0x90,0x20,0x6e,0x49,0xa2,0x98,0xfd,0x0f,0xb6,0xb3,0x73,0x7b,0x4a,0x2e,0xfc,0x89,0xf4,0x55,0x35,0x97, + 0x4f,0x25,0xad,0x9a,0x03,0xec,0xc2,0xd0,0xb7,0xcf,0x08,0xd4,0x46,0xe3,0x95,0xa3,0xfb,0x9a,0xe2,0x43, + 0xa4,0x56,0xca,0x46,0xfd,0xfb,0x2c,0xb5,0xb3,0xe5,0xe5,0xa1,0x8a,0x39,0xcd,0x0f,0x00,0xf0,0xde,0x00, + 0x0d,0xaa,0x61,0xaa,0xe2,0xdd,0xbb,0xce,0x2c,0x81,0xb1,0xaa,0x91,0x2c,0xd2,0x62,0x7e,0x2d,0xe1,0x9e, + 0x9e,0x7e,0x78,0xc1,0xd9,0x32,0x8e,0x6f,0x50,0x8c,0xa3,0x6a,0xc5,0x05,0xfc,0x36,0x28,0xc1,0x05,0x8b, + 0xb3,0x69,0x42,0xc1,0x83,0x2f,0xe2,0x87,0x7e,0x96,0xfe,0x5c,0x97,0xd5,0xd7,0x5c,0xfc,0x36,0x07,0xc6, + 0xe4,0x57,0x0e,0xa3,0x58,0xf7,0x60,0x7f,0xff,0x33,0xc1,0xcc,0xf1,0x74,0x0f,0x31,0x35,0xcb,0x08,0x21, + 0xcb,0x86,0xad,0x6b,0xb7,0x7a,0xd7,0x81,0xb3,0xc9,0xff,0xfd,0x77,0x6e,0x7d,0x33,0xba,0xaf,0xdd,0xc6, + 0xb4,0x2c,0x59,0x28,0xbe,0x6f,0x5d,0x59,0x5a,0x55,0xaa,0x17,0x97,0xec,0xe8,0x7c,0x23,0xf2,0x64,0x25, + 0x57,0xbd,0xed,0xb6,0x46,0x58,0xc1,0x0e,0x71,0x2c,0x58,0x41,0x89,0xc3,0xd0,0x90,0xc8,0x0a,0xfb,0xdf, + 0x14,0xd3,0x76,0x4b,0xe3,0x34,0x84,0x2a,0xe9,0x24,0x5d,0x93,0xfb,0xfb,0x9e,0xb7,0xa9,0xbd,0xa7,0x75, + 0x0f,0x8f,0xbd,0xd9,0x5b,0xbd,0x00,0x2a,0x3b,0xba,0xc5,0x33,0x46,0xb7,0x30,0x79,0xdf,0x22,0xc1,0xdb, + 0x71,0xb1,0x38,0x24,0x16,0xaf,0x92,0x09,0x70,0x4f,0x6c,0x42,0x3d,0xf6,0x54,0x83,0xd2,0xdf,0x78,0x43, + 0xcd,0x05,0x94,0xe2,0xe9,0x57,0xb3,0xf1,0x68,0x7c,0x6b,0x9b,0x79,0x3f,0x54,0xa9,0x47,0xe9,0x58,0xe2, + 0x2a,0x0d,0x6f,0xe0,0x21,0xf2,0xbd,0x7a,0x1b,0xde,0x46,0xc4,0x00,0x2a,0x02,0xce,0xd6,0x6e,0x94,0x78, + 0xbb,0xd9,0x15,0xc6,0xbc,0x45,0xd6,0xde,0xa6,0x46,0xc5,0xfc,0xfa,0xba,0x21,0xf8,0x38,0x88,0x1f,0x48, + 0xe4,0x2c,0x84,0x86,0xfe,0x1b,0x94,0xb6,0xb5,0xe7,0x37,0x51,0xd9,0x6a,0xb7,0x21,0x93,0x6e,0xbe,0xa2, + 0x6e,0x07,0x64,0x29,0x20,0x90,0xd9,0x7c,0x39,0xab,0x28,0x6f,0xc6,0xf1,0xd0,0x0d,0x28,0x82,0xbd,0x3d, + 0xbc,0xce,0x28,0x75,0x00,0x9a,0x7c,0xc1,0x2a,0x01,0x48,0xe3,0xa5,0x98,0xc7,0x19,0xc4,0xa5,0x7b,0xef, + 0x0a,0x66,0xb0,0xc4,0xc5,0x6b,0x70,0xad,0x95,0x92,0xaa,0x2e,0xfd,0xf3,0x18,0x3c,0x89,0x90,0xef,0x83, + 0xea,0xc5,0x67,0xd3,0x5a,0xa9,0xed,0x2c,0x2d,0x4e,0x2e,0xdd,0x87,0x05,0x3c,0x64,0xd7,0x12,0x4c,0x94, + 0xbd,0x2a,0xf6,0xbc,0x9d,0x0d,0xff,0x3f,0x34,0xd0,0x8b,0xb8,0xcc,0x3f,0x98,0x01,0x0d,0xcd,0x60,0x16, + 0x51,0x09,0xa7,0x40,0x51,0xe9,0x57,0x49,0x84,0x4d,0x52,0xfc,0xfb,0xd1,0xf2,0x8b,0xfa,0x0e,0x6c,0xd9, + 0xb7,0xf6,0x8a,0x5b,0x8c,0xd2,0x47,0xc8,0xf7,0xd8,0x5f,0xaf,0xb9,0x87,0x2c,0xbe,0x77,0x58,0x1d,0x5b, + 0x23,0xa9,0x6b,0xc8,0x62,0x34,0xb5,0xd7,0x14,0xd7,0x35,0x8b,0xd5,0xb3,0xeb,0x6f,0xa3,0xfa,0x50,0x35, + 0x6b,0xd4,0x65,0x72,0xa9,0x96,0x23,0xe4,0xe1,0xb6,0xa2,0x74,0xec,0x86,0xe5,0x0d,0xc2,0xb9,0xdc,0x12, + 0xce,0xd5,0x24,0x73,0xb9,0x2d,0x3f,0x33,0x62,0xb9,0xbc,0x9a,0x1c,0xa6,0x94,0x37,0x84,0x6c,0x79,0xed, + 0xe1,0x8a,0xb2,0x8d,0xe0,0xce,0xaf,0x04,0x58,0x81,0x9b,0x0f,0x44,0x02,0x37,0x3a,0x08,0xf6,0xbd,0x35, + 0x62,0x17,0x8a,0xd8,0x6d,0x74,0x5f,0xfd,0x36,0xb2,0xb6,0xd1,0x43,0x5d,0x42,0x09,0xd8,0x46,0x5f,0xaa, + 0x04,0x91,0xaa,0x8d,0x0e,0xbe,0x50,0xbf,0xb5,0x28,0x6d,0xf4,0x40,0x37,0x22,0xf2,0xb3,0xd1,0x17,0x68, + 0x82,0x8e,0x6e,0x0b,0xb9,0xd4,0x85,0xb5,0x7e,0xf9,0x77,0x59,0xf6,0x86,0x50,0xed,0x66,0xa6,0x9d,0x6e, + 0x44,0x3a,0xba,0xf6,0x13,0x77,0xf3,0x85,0x67,0xcb,0xd6,0xb7,0x76,0xb0,0x2e,0x50,0xad,0x24,0xa8,0x84, + 0x63,0x2a,0xb1,0xe9,0xe7,0x0f,0x1b,0xe2,0x51,0x23,0x04,0xdd,0xa9,0x84,0x9e,0x3b,0xb6,0x90,0x73,0xc7, + 0x12,0x6a,0xee,0x18,0x21,0xe6,0x8e,0x25,0xb3,0xdc,0x31,0x22,0x4a,0x09,0xfe,0x21,0x61,0x5b,0x3b,0xa7, + 0x14,0xdf,0x3c,0x27,0x15,0xfd,0x25,0x46,0xf4,0x97,0x4e,0x95,0x91,0xbf,0x27,0x99,0x6a,0x0a,0x27,0xfd, + 0x96,0xc0,0xf1,0xef,0x6e,0x7d,0x4b,0xf8,0x78,0xbb,0xc4,0x66,0x5a,0x97,0x58,0x6e,0xdf,0x7e,0x19,0xe1, + 0x8d,0x00,0x60,0x6d,0xf9,0x32,0x49,0x83,0xfb,0xfe,0xd4,0x68,0xba,0x5b,0x3b,0xb3,0xa5,0xbf,0xd6,0xde, + 0x34,0x3b,0xac,0xed,0x0e,0x3c,0x74,0x26,0x94,0x12,0x31,0xb8,0x77,0x3e,0xbf,0x3a,0xce,0x10,0x51,0x93, + 0x25,0x70,0x40,0xda,0x0f,0x9d,0xbe,0xa3,0xc9,0x6a,0x8b,0xaa,0x88,0xf7,0xbe,0xd8,0xf7,0xfc,0x44,0x92, + 0xa2,0xd3,0x82,0xc6,0xf1,0x3f,0xbe,0xd8,0xd7,0x32,0x59,0x44,0xc1,0xeb,0x3b,0x81,0xe3,0x27,0x8f,0x0e, + 0x74,0x33,0xfb,0x8e,0xe7,0xa7,0x08,0xa9,0xb9,0xf1,0x39,0x74,0x0d,0x5d,0x7e,0x5a,0x7f,0xe1,0x5a,0xb6, + 0xa8,0xbd,0x8a,0x36,0xd5,0x09,0x62,0x0f,0x9a,0xb1,0x1c,0xd0,0xb7,0xae,0xee,0xf0,0xe9,0xf5,0x8b,0x4f, + 0xeb,0x57,0x85,0xf9,0xb1,0xfa,0x37,0xaa,0x3e,0xf6,0x46,0x74,0xa9,0x39,0x84,0xce,0x3f,0x9c,0x7e,0x0c, + 0xef,0x4f,0x9b,0xff,0x0f,0x0c,0xb6,0x23,0x4c,0xaf,0x0a,0x02,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index e6b59b0..646e0cd 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -8,6 +8,6 @@ const uint8_t VersionMetadata = 25; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; const char VersionFullSemVer[] = "2.0.0-beta.1+25"; -const char VersionCommitDate[] = "2018-01-19"; +const char VersionCommitDate[] = "2018-01-21"; #endif diff --git a/src/main.triggers.h b/src/main.triggers.h index dbcf2f0..5de4b40 100644 --- a/src/main.triggers.h +++ b/src/main.triggers.h @@ -35,7 +35,7 @@ void parseResponse() _dln(response); char* data = response; - if (strncmp(data, "HTTP/1.0 ", 9) != 0) + if (strncmp(data, "HTTP/1.", 7) != 0) { _dln("Timezone :: not an HTTP response"); return; @@ -140,7 +140,12 @@ void updateTimezone() _d("Timezone :: request: "); _dln(request); + #ifdef MapsAPIViaProxyScript + request = request + " HTTP/1.0\r\nHost: " + TimezoneProxyScriptHost + "\r\n\r\n"; + #else request = request + " HTTP/1.0\r\nHost: maps.googleapis.com\r\n\r\n"; + #endif + client->write(request.c_str()); }, nullptr); diff --git a/src/settings/triggers/time.cpp b/src/settings/triggers/time.cpp index 4c8aa3c..83969a8 100644 --- a/src/settings/triggers/time.cpp +++ b/src/settings/triggers/time.cpp @@ -168,7 +168,7 @@ TimeTrigger* TimeTriggerSettings::getActiveTrigger(tmElements_t &time) // Check if the current time is after the time set in the trigger, and // if this trigger is later than any previously found trigger, so that // we'll always get the most recent match - if (triggerTime < dayTime && (activeTrigger == nullptr || triggerTime > activeTriggerTime)) + if (triggerTime <= dayTime && (activeTrigger == nullptr || triggerTime > activeTriggerTime)) { activeTrigger = trigger; activeTriggerTime = triggerTime; diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 59cfe38..a2073a8 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(e){c.headers[e]={}}),o.forEach(["post","put","patch"],function(e){c.headers[e]=o.merge(s)}),e.exports=c},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){return r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]}),(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===hn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return gn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):G(c)&&G(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Fr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Ee(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==hn.call(n))&&e.test(t));var n}function De(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Pe(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Le(e,n){return{staticClass:Fe(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Fe(e,t){return e?t?e+" "+t:e:t||""}function Ne(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(b=e.charAt(y));y--);b&&Ti.test(b)||(p=!0)}}else void 0===o?(g=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==g&&t(),a)for(i=0;i-1?{exp:e.slice(0,Kr),key:'"'+e.slice(Kr+1)+'"'}:{exp:e,key:null};for(zr=e,Kr=Jr=Gr=0;!st();)ct(qr=at())?lt(qr):91===qr&&function(e){var t=1;for(Jr=Kr;!st();)if(e=at(),ct(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){Gr=Kr;break}}(qr);return{exp:e.slice(0,Jr),key:e.slice(Jr+1,Gr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function at(){return zr.charCodeAt(++Kr)}function st(){return Kr>=Hr}function ct(e){return 34===e||39===e}function lt(e){for(var t=e;!st()&&(e=at())!==t;);}function ut(e,t,n,r,i){var o,a,s,c,l;t=(l=t)._withTask||(l._withTask=function(){dr=!0;var e=l.apply(null,arguments);return dr=!1,e}),n&&(o=t,a=e,s=r,c=Xr,t=function e(){null!==o.apply(null,arguments)&&ft(a,e,s,c)}),Xr.addEventListener(e,t,Bn?{capture:r,passive:i}:r)}function ft(e,t,n,r){(r||Xr).removeEventListener(e,t._withTask||t,n)}function dt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(e){if(t(e[ki])){var n=Ln?"change":"input";e[n]=[].concat(e[ki],e[n]||[]),delete e[ki]}t(e[xi])&&(e.change=[].concat(e[xi],e.change||[]),delete e[xi])}(i),q(i,o,ut,ft,r.context),Xr=void 0}}function pt(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function ht(e){var t=vt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function vt(e){return Array.isArray(e)?m(e):"string"==typeof e?Si(e):e}function mt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=vt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ht(i.data))&&v(r,n);(n=ht(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=ht(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ei(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ei(c,s,null==a?"":a)}}function gt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function bt(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Ii(e.name||"v")),v(t,e),t}return"string"==typeof e?Ii(e):void 0}}function _t(e){Vi(function(){Vi(e)})}function wt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),gt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),yt(e,t)}function kt(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Bi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=Fi,u=a,f=o.length):t===Ni?l>0&&(n=Ni,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Fi&&Ui.test(r[Mi+"Property"])}}function Ct(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&St(t)}function jt(e,t,n){Dt(e,t,n),(Ln||Nn)&&setTimeout(function(){Dt(e,t,n)},0)}function Dt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Lt(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Lt(e){return"_value"in e?e._value:e.value}function Ft(e){e.target.composing=!0}function Nt(e){e.target.composing&&(e.target.composing=!1,Mt(e.target,"input"))}function Mt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Rt(e){return!e.componentInstance||e.data&&e.data.transition?e:Rt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Y(t.children)):e}function Bt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[bn(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ht(e){e.data.newPos=e.elm.getBoundingClientRect()}function zt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',So.innerHTML.indexOf(" ")>0}var pn=Object.freeze({}),hn=Object.prototype.toString,vn=l("slot,component",!0),mn=l("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,bn=d(function(e){return e.replace(yn,function(e,t){return t?t.toUpperCase():""})}),_n=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),wn=/\B([A-Z])/g,Tn=d(function(e){return e.replace(wn,"-$1").toLowerCase()}),kn=function(e,t,n){return!1},xn=function(e){return e},Cn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],$n={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:kn,isReservedAttr:kn,isUnknownElement:kn,getTagNamespace:g,parsePlatformTagName:xn,mustUseProp:kn,_lifecycleHooks:Sn},On=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,jn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Dn=jn&&WXEnvironment.platform.toLowerCase(),In=Pn&&window.navigator.userAgent.toLowerCase(),Ln=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===Dn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===Dn,Wn=(In&&/chrome\/\d+/.test(In),{}.watch),Bn=!1;if(Pn)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Bn=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Un,Hn,zn=function(){return void 0===Un&&(Un=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Un},qn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Hn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(e){this.subs.push(e)},Xn.prototype.removeSub=function(e){u(this.subs,e)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tCr&&_r[n].id>e.id;)n--;_r.splice(n+1,0,e)}else _r.push(e);kr||(kr=!0,U(ce))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){R(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var $r={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};xe(Ce.prototype);var Er,Pr,jr,Dr,Ir={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=(a=e,s={_isComponent:!0,parent:br,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Ir.prepatch(o,o)}var a,s,c},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==pn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||pn,e.$listeners=n||pn,t&&e.$options.props){ir.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};Rr=Ee,(Br={}).get=function(){return $n},Object.defineProperty(Rr,"config",Br),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=$,Rr.delete=O,Rr.nextTick=U,Rr.options=Object.create(null),An.forEach(function(e){Rr.options[e+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Ur),Rr.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},Rr.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)ue(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Wr=Rr,An.forEach(function(e){Wr[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}),Object.defineProperty(Ee.prototype,"$isServer",{get:zn}),Object.defineProperty(Ee.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Ee.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=l("style,class"),Qr=l("input,textarea,option,select,progress"),ei=function(e,t,n){return"value"===n&&Qr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ti=l("contenteditable,draggable,spellcheck"),ni=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},oi=function(e){return ii(e)?e.slice(6,e.length):""},ai=function(e){return null==e||!1===e},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),li=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),ui=function(e){return ci(e)||li(e)},fi=Object.create(null),di=l("text,number,password,search,email,tel,url"),pi=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(si[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),hi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ue,update:Ue,destroy:function(e){Ue(e,vi)}},yi=Object.create(null),bi=[hi,gi],_i={create:qe,update:qe},wi={create:Je,update:Je},Ti=/[\w).+\-_$\]]/,ki="__r",xi="__c",Ci={create:dt,update:dt},Ai={create:pt,update:pt},Si=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),$i=/^--/,Oi=/\s*!important$/,Ei=function(e,t,n){if($i.test(t))e.style.setProperty(t,n);else if(Oi.test(n))e.style.setProperty(t,n.replace(Oi,""),"important");else{var r=ji(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&C.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:fi[e]=/HTMLUnknownElement/.test(t.toString())},v(Ee.options.directives,qi),v(Ee.options.components,Xi),Ee.prototype.__patch__=Pn?Hi:g,Ee.prototype.$mount=function(e,t){return e=e&&Pn?Re(e):void 0,r=e,i=t,(n=this).$el=r,n.$options.render||(n.$options.render=er),se(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,se(n,"mounted")),n;var n,r,i},Ee.nextTick(function(){$n.devtools&&qn&&qn.emit("init",Ee)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,eo=d(function(e){var t=e[0].replace(Qi,"\\$&"),n=e[1].replace(Qi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),to={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=rt(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=nt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},no={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=rt(e,"style");n&&(e.staticStyle=JSON.stringify(Si(n)));var r=nt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ro=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",lo=new RegExp("^<"+co),uo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Lo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ho.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(vo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(po);if(y){n(y[0].length);continue}var b=e.match(fo);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(lo);if(t){var r,i,o={tagName:t[1],attrs:[],start:u};for(n(t[0].length);!(r=e.match(uo))&&(i=e.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=u,o}}();if(w){!function(e){var n,i,u,f=e.tagName,d=e.unarySlash;s&&("p"===o&&oo(f)&&r(o),l(f)&&o===f&&r(f));for(var p=c(f)||!!d,h=e.attrs.length,v=new Array(h),m=0;m=0){for(k=e.slice(v);!(fo.test(k)||lo.test(k)||ho.test(k)||vo.test(k)||(x=k.indexOf("<",1))<0);)v+=x,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:go,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||xo(e);Ln&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Ge(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t,n,r,i=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(r=i,F.test(r)?(n=(t=i).charCodeAt(0))!==t.charCodeAt(t.length-1)||34!==n&&39!==n?t:t.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.formatter=this.$root.$i18n.formatter,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[C]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===j&&'"'===t)return l++,r="\\"+t,h[C](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?t:r,!1===a()))return;if(u===D)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c,l=this._path.getPathValue(t,i);if(Array.isArray(l))return l;if(r(l)){if(!n(t))return null;if("string"!=typeof(c=t[i]))return null}else{if("string"!=typeof l)return null;c=l}return c.indexOf("@:")>=0&&(c=this._link(e,t,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s,c=i.apply(void 0,o),l=c.locale||t,u=this._translate(n,l,this.fallbackLocale,e,r,"string",c.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[e].concat(o))}return this._warnDefault(l,e,u,r)},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){var n;(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===u.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===u.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,l){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+u(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,l,r),p=null}},p.onerror=function(){l(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){l(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),l(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=u(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function u(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=x(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=x(l.text+c):""!==c&&f.push(x(c)):X(c)&&X(l)?f[u]=x(l.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function je(e){return e&&(e.Ctor.options.name||e.tag)}function De(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=je(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,l(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=qr=0;!ct();)ut(Ur=st())?lt(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),ut(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){qr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,qr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Br}function ut(e){return 34===e||39===e}function lt(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=Kr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),Kr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||Kr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),K(i,o,ft,dt,r.context),Kr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};t(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)e(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=e(o)?"":String(o);d=l,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=l)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?xi(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Si(c,s,"");for(s in p)(a=p[s])!==f[s]&&Si(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&l(e._transitionClasses,t),bt(e,t)}function xt(e,t,n){var r=Ct(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Di?Fi:Mi,c=0,u=function(){e.removeEventListener(s,l),n()},l=function(t){t.target===e&&++c>=a&&u()};setTimeout(function(){c0&&(n=Di,l=a,f=o.length):t===Ii?u>0&&(n=Ii,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Di:Ii:null)?n===Di?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Di&&Wi.test(r[Li+"Property"])}}function At(e,t){for(;e.length1}function jt(e,t){!0!==t.data.show&&$t(t)}function Dt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Wt(e){return!e.componentInstance||e.data&&e.data.transition?e:Wt(e.componentInstance._vnode)}function Bt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Bt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function qt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Kt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',xo.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,xn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Cn=function(e,t,n){return!1},An=function(e){return e},Sn="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},Pn=/[^\w.$]/,jn="__proto__"in{},Dn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=Dn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Wn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Bn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(Dn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Dn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Dn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);qn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){l(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tSr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);Cr||(Cr=!0,H(ue))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){W(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};Ce(Ae.prototype);var jr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;jr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Wr),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:Kn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Br,Vr,Ur,Hr,zr,qr,Kr,Jr,Gr=u("style,class"),Xr=u("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){Be(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Be(e,!0),Be(t))},destroy:function(e){Be(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:Ke,update:Ke},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},xi=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Ci=/^--/,Ai=/\s*!important$/,Si=function(e,t,n){if(Ci.test(t))e.style.setProperty(t,n);else if(Ai.test(n))e.style.setProperty(t,n.replace(Ai,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&C.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),t(l)&&t(u=l.hook)&&t(u=u.postpatch)&&u(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Ui),v(Pe.options.components,Ki),Pe.prototype.__patch__=Dn?Bi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&Dn?We(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(xi(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),jo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});l+=e.length-h.length,e=h,r(d,l-f,l)}else{var v=e.indexOf("<");if(0===v){if(lo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(uo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=l;n(b[0].length),r(b[1],_,l);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:l};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(co.test(k)||ao.test(k)||lo.test(k)||fo.test(k)||(x=k.indexOf("<",1))<0);)v+=x,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,u){var l=i&&i.ns||wo(e);Nn&&"svg"===l&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=Xe(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(e,t){u[t]=e}):Object.keys(l).forEach(function(e){u[e]=l[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;u[n]=e}),t(r.tag,i,a.i(s,c,u))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,l=E,h[C]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(t=e[u])||!function(){var t=e[u+1];if(l===P&&"'"===t||l===j&&'"'===t)return u++,r="\\"+t,h[C](),!0}()){if(i=d(t),(o=(s=L[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(l===D)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(t))return null;if("string"!=typeof(u=t[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(e,t,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(e,t,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(e,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,u=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[e].concat(o))}return this._warnDefault(c,e,u,r);var l},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file From a3a5f274ba73eae981c2cf21bac2241d1e13871d Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Sun, 21 Jan 2018 11:31:41 +0100 Subject: [PATCH 26/43] Added Fritzing wiring reference --- docs/ESP8266-12F WiFi Module.fzpz | Bin 0 -> 227344 bytes docs/PCA9685 16x12-bit PWM Breakout.fzpz | Bin 0 -> 22515 bytes docs/PIR sensor.fzpz | Bin 0 -> 7500 bytes docs/Wiring.fzz | Bin 0 -> 264332 bytes docs/Wiring.png | Bin 0 -> 234271 bytes 5 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/ESP8266-12F WiFi Module.fzpz create mode 100644 docs/PCA9685 16x12-bit PWM Breakout.fzpz create mode 100644 docs/PIR sensor.fzpz create mode 100644 docs/Wiring.fzz create mode 100644 docs/Wiring.png diff --git a/docs/ESP8266-12F WiFi Module.fzpz b/docs/ESP8266-12F WiFi Module.fzpz new file mode 100644 index 0000000000000000000000000000000000000000..607589f029fe9bbbfb8d7e73ffe2b71bf73ea41d GIT binary patch literal 227344 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

2PQ$@ialW(bR@3!n%7gf^WmHX0i| zeA?qLqxpH*N$+<|^~)C_&wXyz71C-}HW!;o*&x7Aq;r$TK<60IO$529Ps5Yru!dmH zd{yz`xXo`-dfjIhtW-KbeXo%9Z#HR5zZ6Y8h6+JOj2wV28JeU5ZH81)d;co!-^0w_ zP|Lfqm8lzNeNU7xBx?6z)&cR@;?BESA=rEaHjMyxVHKpmZ*g=4!{%UU9{JP(o$iuA zDYZq_1ouMoJmUM5j100=UT@-eKQ?SfkrvgLy>}JDe$Jo7`is%iM9f6m#Kod`zJ;+C z47o_}4A*eM6N7Na0x0Y%Pybd%P{u2Ed&1SfGKkKQdT`SPo%jI^_qnH1@2wrzCNgz4 zc9P%Kdc{^LDM?k${*K&h|kFOL`T}4-yGiZ^7$*zDbhA7 z5y`jx0qcn7o7W(M(Sq$_7lMlGH>G0#o8cnPh>|D@vA2cBN$)G|QNOzn z{f(mj;Dj76c|ts_7{WI(GP;;|xZ>@~HK#scF6(WOF4Pr%qKA|S>$g7!GT0F$N!zT2 z6ja8&$7E$-%MoWA6Mag`oq77A0({kn{srijTL9gs-iiy}iB;x$IOJ+7eG0NgKle(t z{7Ef@Pf9Y_5dCFdExDCy`|1@T6&R>L283&)nU$MVsA#8Y`j42k+A3nG0_j)RXAmzO z#Cs%Stc)leQK(SJWDL}ofKpKzOm3bLua?`qm7ZyC5S5J;RlR{P4XZd^VFhDSbU#(` zE4-5+x5VN~^$#E4yeFFC+->OB*$Q*{#wU+hbae#=@hu%)YSeFT9rifTd?eEbVkICX z%9z`m2wT5-N|esW^pE}?Ky-K{w1~V*axhqd)E<}aS7f7%d4%t?N>O36h8?Ct>eva+ zBOPQd6@!s!MHzk`V2*RnfJ_6D_mgFrB$7B#g3k)1DGQ1w`DBZ4DWWv9zD%e2Deeu8 zoUvKj2H_8}LRkPIkB+XG)HfrDboQa@AR3zquZ7detevmjV`uZ|d|0wI{qi`oITY00 zvT)Bb^$jUSEDJ9qWvf%*M;`aG#hK9bX!NSmh(>hDQjo;rO%GWo?-#aSh5&?;pThNn zGs+X;=*B1rLOnowQgrL@lSy~1O(h7qrfyBlT~%`$h9c}Gd~A#PMRu)KIPJJJg;q^0 ziCgJ5IY~xuulVAG)1SJ6tHJ!(b`hNkfP5m@l`jwbKnu0RTGFs-*_-~_0G-|${FOWQd=WdY7=`nDZd!ahVzXNM|0}EXSiSU`)WpB)zgp{TX zVo&{_z?U3CQ}R&eq0ZGLOL-*FOK0^wdL<&U;|^hXt_@*N?T|0 zV^X03WIyc4EVz%Y=RVBPa>lV$RVYpVE0P;r@2O)gPXFD|>u356*5&Bhm9E9QT@_Khz1)@q}bi78`+;^;F z-nzfI-dZaP$?3dhiKdy2_l?9~GE;Tw3W)P6toZ6C+PUj%Xp=lG`q>v45*lG_fgp1uN|wr&Qoi(;D-hKE2rR zFCi(mGDVMl1kS}U)mY2ZTvJ69hN7uqV2+R56lJ3uzdA~;)6*E)o~V&(S^F&3rl_`+ zu6k5-A~3YNd6v)sF~N!gEog3CRbRrQz6H3;jK6R8nVLykE}i5p4+{<%FLTVCN#Uo~Us8au} z9~1iarI+SA&G7fG7+CPPq?*N9FvKVW4}G@fvCpey9FyzxMJ}n?S!>_&ziQ>R^wPJ~ z#De`<=&d)+_r@5N*czDeWD_K ziJcepo*h@AtL_e%70D0M^0P9u`_GCX%{RpV9w>v6ZGKrKtk@s=*P-u8CFbi6uPogP z{-nSKyZ&L2o=jQ}jICs_n!Ntwq!3S+#ImMb| z{F*y`tAV1|slCH1NYf_Eg&+Y=4Fgr`4x1iP-4kP8JZg${eXsj1|1Bezcg3VDD%$Tp zDa~OUWPW4i^YU8KEcTbLK3VI)z&9ZvyP$LR7gP0UAa2yWOv9STEB8N`S!Lt6JFKw~ z85`^EtI8s@YmExJ7@vDzW-JvEyQc{uzB&d7;R-8^F`#a}`nQZV(eC4IeJ_^=s*}w;MqCyDyOIeX05?F$zu>?arS=_} z*2EK0pgCpyzd70VrFN(1U= znnILyBDJ+|1;UBzwa>+Wx)3ddnZalP9H(5YAe8vg64t8KM~Ct8AU_6ihWD1C&W|bN zR4o5C>6o_UZyyDE`5ZP`AX^ux$11*lQeuRktg4H?xfdJ3YX_dKIauiskcotRrIvO zW%^JdUgoqs15X>Qk_PT|V}oc|MrlOcQ@R{Zn|Hv@RkdT`0hEW?MciK8S;i5go<2In zC89Q@VADa8}Ni7{$ z-X_Nts2M8e*dC4o6+kF2<)N`RL#5t*a1w8&VVj(HTQB>P9b3K9sgms@^bM1%rUg`DK}Uq5B44`7t5E<)jY7^m1J zX|eAz$tpVC{rES^spKKh9c?FX)|=N>Hx5olw3zmDE7iDP=*&3$#`3&#DZ)VPXAJg; z#t0}Ymu)fP_)9wWk4ImjF*2K481d9R_U``fHiSB$TcVbIGcYdVC5D%82piLqNNIp+ zemZc)-_`k20LHUb^x@g@ctF#D(ily&3Y&s<1R3iIUZ}aZb31C&^4ux^O(c91$&|Id zp!6C4Kt;rM1!bwWkGc|uk|yttjlLXu%eVtC`AiYgVkTzRT?UPlQ=$>xNXv`+>Es4^ zY6}pr9GZYT26tjiYlHL@-LYf}|4RqmAYKhFm|a+1zKqG+{TL4oOtN*d7s_-B{vT$= zOU~cmQalwSucq+Zhc_%rzd4eIZp0wxOB0ah7QE2;Gj3cXK_G8jN!1r4>yHK{V>9ol zIHi`S?l-B8m!!%7SwIiG&3|aJUe<4z7cw2$Jp< ziZlYHiSCRbrg4l!%Z~G?AE7)6)pO6cN4@Db36y4k&{Xd-VgzU!ZQUwQI+}G?W2D7E zIsn(3dDTuRq}_22Ti49ve@genp=a<&Riq?BNr_cxfw8wX=zPrP`lBVyEU}6IoKoxI z+i#m1VZ0jsoA(y`W}FG!CT(<22^(sk#C1(WuD#Q$B3gL(*sqi_m(_a}Umosr;XYxZ zGU~&oV_+3#jZ;Ng2C=}BfgI9M5p&acz3J3}2JtcNtjR zht65gM{kHxA2&Z-BoFJ;on3UuL#*z>6-7Cfm4iZWHa(tX2JaGSVSgyHbaZjAV_z9a z@ozb|y_4?ucm?!8uYwOLz2X$D3XXW}RUoYo(S* zE4ODktC=uiiyWyY0Q2fG@G*AjGg@JwJdsQo}hI4WI)KO5McA`<<$7`JFyjf z1a~=<+!+s5#E;jIh_t(JUvrwmE^on_K{5(tMQWX2UmI7{Dib zjkvpG8o>vTPV1J^V!1D#fN$;9A8$_m;n|@5Z5XS!Z}cQz-^&c9IW7u#D%O0n{3>Oa zNB*9p12Gqc8`)#VP|Pj;r$&m(6X5wJ@6e5X2H7*iJ{ZQc_ow}FTY@dD%l{C+_OJ__ zkB3~7?hzESu(tx3yawNyF}bl25CD9s8(O5EJ3;gE0^jVITsUNLViv%Spf*+^ALAL^ ztLK#gVM?$)+>cOMhE?6va)Mvb8Gl9hY{!WOG>pNRM&_oBrtjHx?AJcL9Zc_4MqQi= zz35_$yPcRssj3!hcYzTSS*!&hvmfx|uLU&b_t>CW1g0o_qUlL*q6L*`y^C zFsx&5)G3TeUu3aT!0pZ0@NUcGG=02maD~T%d7JQp{R54`w)qFU}5p%#7Ct9ok?vQxuA5mm9=p zNSSpgEo{JY4AN=AC*K11uG~^xzV5pq>uWh~CugHS6t|x~&a@ajsIu0MthJE)jteWI zQMT>j&>bPjn{3>cm#%8NkMioqLznW7C1b^+`$~W*ldp(2Yy)^NN~13qYVd(hYX#_u z^`;ZnU)f5%ah5^)?X&a!Us3!@O_}H$5N)~giZS6@29KLo+?a0m2&V3Q#j-IYf_u_u z<-Z4oviX;4*XsjM@cw_ACjli@TG8zrucSnFp z%p^){%9qjrKYs9+-18`CpYQ4KJEFm6B8PUG&% zb)*S6o-YJg%*AkDMrvY?X}E~mlk^KLzZGV-K&hw5c>t+@#Oc_h&){zj-lJs5aB2bC z)!zdGqxFk|zpH+cEX!40<#tdmFmXa#>AoyqH?D;C0cEE-l_1~}vK<|04l~czcq%yD zUg|TS_gQm1&uEpR3GkU^oJFKUCz8>@YcopgZ}*YaHMp6>-8^*ghV<2%x@W>7i`vYG z%rc?~p2b%~p{yvoTp5z+&;5Z3)Cy?6>u25-XQ&;?VGR=+;)gUXm@q(Zaq9fW5O^b$ zot#7yR=3VR&3{6>(t0`MZr8qw1C>m)LX@a%zeT^LQPaC70!P@dpEN0c!42Va4 z4n=wbz7)7F#lR_D=_6+Iw_HeaNkd;0y7^i*&xeroDg5OtT(c>pKVwqg8jfLsAaX>G zj$sPeOOo;lg<<~hM)DRJlO}ErHJC8GsPK{}7LD`@c(Vif`^Zo^i{P=Y0*>|Ol?>AH zL3W;QliWs&->Us>5EF|k{e4lic`+2(0qHv3j}0AW@`mw`3#~;em?)%BuZD0J2E9LosaV}w8)2w=nM1fQTy?2K0kWAVsn(H~t-{Y+1oDpQ! zYU>O9oZL#Hav0^eeP%X$qPvzKS##70CF)i34+a{Ly~ z^n|D_-I}N$-J#IFpHI?r{DLfx^SuQG%XXBr*KiWq6V18gd)c31f&)0p44%fbZ@1OC z9Rq4bfoLkW#Gv#q9_#m-xz-aQu@u_9;-8I5nLeJgw3ucxIV{;Y$1{d!$xv`1pR~aV zk-0H&8V0JRc(Z*kwkcjwE%_??Y*#Wgu!hi1W`FG#XE?yn*EbXbC+|Z9;5YM^6`8*% z8y{2w?7ueu4b`>PM-kyI=64msN&A#;V*H-xsPFuzV*PZ|&JVe8;KQCT=bDF}Bl+*+ zc}rBZq0r?$YYg_Uu+s!?ZSqygYTb9g&8I;HVQLLdQMXHU_mQ83%IZi_ZJRTnzK~uU zejXbSahQ!lKFT|LgBtY_nf79*rpJM^o^0VmJ2?k1Ltq?{aS<0YK^zf z55h3yDo&NF{q9wQ=4>WvO?xrs<$SJrdt=H|xy(Yn7fz4ZGOQ7d9*iPn+Lt6V=7Q96(tba7%T zohdM;?U=%TU~xg#$1y0Krw#!K+Dz8<@^>H6V16eQamiuAsMDQrWe5Tp0V3;LWq=GH zs^Ux61JQC!87F$kq;Ah%lo5v$dB$J1bdSJhFmW?%D*EWoZCKhY)QkYgxW@{zJlMN> zOL=Bf_O*NTt)IMEUcm1Za&7MVASF?dru8>duU_@(39m~6Gf^L=RfH;Kp}ZGHp0qJ5 zSC;4uFuw-}!?yrm`h2;AuVwnH83?$ygu?KU^R)|=rJMvG8`o>yo)pJE^irQVjqjTiE zrxr+Jt-k5Bd&~okP|sF(p?%|^DQ-t7I$qv9-6C|-CicY$Vf>1Xamy~o-wSIp@e4$s z@4**ir@kPE(%-U5``Jvb5TcS?cEk)r4IjtS$1)d^sDQ*SwuVT%%CZ!Vus*}s+sbCe zooGCk`zbjKnNsIFm?!^=;;VYQz3f7leE%L2AYEFcJ{%&}FX|$1YKUT*wNe%bcmO|g z=7a;G=7*4eZMPt0KqhS)%|qxzh6P4r);FOJ%F|xyJ5uqN(tx3LTABu%UcMpjw4XdW zID?fvvN=eHykG8mTekZFl2#v9%rw+0q2&kN1)d-5M6SZ)Wp|pq1G%+d6Oy&GzQyx= z;Q?x1%t^Nw8lcQ#ZE`UeHMli>tpY8BNjm^JP%lPN@>*lXsO3X&8ArAbRt#y`{=K5f zW*)6D(8}=RqWWov7K@*d{{ex{SKpOOElAv_ zBC1?A#Z3vPu{zq1Ez%;Qd+7nKAR2AvZpyj`f6q&zz~XqUr=YhN8~8cN56}A3l^*>b z_RP>+o1Kj?AEG##wX3q;kCpD2Ju9ur+aapJmte&YFV%l{f3>kuy@xws8kS0r!+Zp0 zWJTihJ!!ym-2}&`F*>n>?;`lYN8fMvsShTwkt`9-*^lC(S`Ir#Nqc4k)Q(ybd1GYT zUFMlvL@)aFF3f#h=r7>wfolwU=HQ~j%CaBh>@mew5NnlTan*rdo4wd3mbSt0`@}^0 zLRxLGUyRiuZL=<88pBb~-JU?@AuYtRU@*Pj>guuzzIE-|%M8tz8tu*MybBInBEv!4 zII`F^DFTEd%s7=SOjWzTqGtYrV+MeI>KuO@d}ti;fFz&~m)e9KWmb+ki_J5zoc4j! z?KOX%b!XH!rE~hIL)_Nypth%1USt(bXQ#w3&<`#}oced@i>)9)OpU#Lts5naH;$wbdMd7M+vPX$0q)hETFx&P>hh0}# zG6>mTLj%{Jm^`C(o7s1~D(#ZEA*nPxQFbVdG%ph4 zw`JBA5!X9_;$Pz(QJ`B*V)a9t4+g#SlP5r4P0vUpW+HY)Cg>%$9C>nA-xH+)E|CUg zfQFCRS=BP4>>XHNzJ+UJuMDc^J_a76&u{6gUa5)ReCUF(q`I2)QzPLV}e>dY2a9lb8Q@v>Nd$I zd5i2?xTz4*K&&c02gOa{OCnmzcnu7ykX3oy(Uju?V?-%u!kJ zZ*0rnbJQWg{e2k{hvbzYL`9$PR`yj~@TLH6-03FsB7?>tqTF)c0^fy29!-UEhl3hM z4B&aSaoxUZZvQnS$2vv7=ANTO3CY@p{{ZLqUn)s4)AWQ z`XFI#4q`pUM(1m0P!;C%>Eh~zqqY0QUsu|fb!q%zM-;QyrRkXej91Vh5C`wd}*YUI5>n zFEN|JE}9y5aJ`T9yTk`PD)8O74dC$^eJndZjuL5$mKq156Yhs3*I@R*fq7nQmaX?k zEHUnd>hMJh%D~nl$_bD7U-$H-3qk(Ne85nB#)hvFNNeKFvLUoeG4%$pyAyKuREePi zOo3>+Dz$QW5Kh6Q=-Q~E4VENm>3O8u1`-zhL-q(z{3wLsZ%PmtzJjX8-yWSnNTZ(M zh^6}5e&B7*e-9su_2TE--@2zsC+1(of|!KzeGCv~YkNf1@i`p1>njW;Ab#>#9{=8u z6{_EWbL14DzLY4?jb&%jPI8U{J2RXt`jqN&#(~sQd@<-sh4D_;f`Ojux0Isr!7wPz zZK2VpS2_6~7+R3i#6RB7)VbZd`!lle>-4|w@0q@vyeYF#5v-U@H+D+)^j2EdU#02` z;O|BE`pUb;vg!1576tegEhZ&4&3E^!R=4!B!3U0iJ8htzCYV~or~uh6D)g3tWwxO! zL@1Y=scn>tX`ON2#%xLby}1Ey(cFMQ@>2rtkd7kFfwZ*sG_b=;)q=F@lyNubZ3>4n z=H0^l7N)LyquEIDmj?iT0X^(qr*$ON6Sl^`E3*4kg6i-AFM8hp-d$jQzF%T8rNjre zp(lx(k|PQI1%AJ=FY0q>{?UJui9{8|cbb-6_Ss%Ra-ZQ68N0~w6Fah{XJMaVYfqfW zUm#^&V!)e8k*loamK~t7<;Ceho7#@F_vb5Xl#ZfK!6Wkqy32z>FQs!u$`{c9K%m4x?U5fQ(J3o>giTS1s=2VSq zCY&jb4`(;-Ebfu3gzu!hqnA6RnPG$RX_Y}n1u8TtYs31Ig=FLgv!^!skN+a*dFn-hHE`nhq4~OQD|6p55i2yvxs;q?k|;TN@UY?T z`zuc-RLwl(#`)AMYxB@!V<3F!IeV$U7XMyetf^YJ)2%}D-v%7C>f7Y`WlAkgrrzvk z;#2Xs<8u*W_S}jGT;h^#u?^weA-HCJ<4q+jJ+MS7yRXHaJ-D&6!Bi?=zBeKr{0L3; z8{`(Vw?jBf$W@A(>sHAcY_aTz!0nS~_d~+q_s7Z+7rO0l&bTq@gfT*DpC_Qv#z5$u zOULBeHZpKef_m)(>fMZw+hb@1cNOY5KU6g zG^Y>tnB=Qz&qtg(Qi0xZr?QY6 z6l!g=6jJ_PTg@UD?kG=1SyGTaZ4v!805O!};eEju-j~U%@MCQbGen?$SVuLNMR&v>KpPXD$QaYO|HaHH zf0KtvIO>xp?~y23JVL;9FC3wu+!ZtHWV+$|AZxPUdLXn^1d80fF+DvQ zyg5A)ljkm~W+XJR2m`}F)V|p9e!f;Gd0SEQ$_=seU?`_CQI|zz^62e_k3k^!f47d? zpNk;JarBZpR;m4a1(-F|b}%z!L0<>-<1}^F^yV{hx5Vv*R?hMf(xKgGd%e-6Ld?Yi z%t~@g7fsge5+91{URJw|Rb_51EANG{a>M<>U945xjM`$v4oHwTpRmtI;Vev+mD*3B zWE^Mn124J%6WF?9e2=$M7JUyU{B6w1qVI26-{OjUO^e`SSd(_i5vu z-)7ZVObq`Pw{T-A0?4qilz>d-s5IUa?`rU{>vdA=#E4kYTwjKWeozHWKhpN8$wdeB zjA&?OK{sY`*U;g`91xs>3fBEo6Xh4vhVOF{@e7msFh&4^)hDUu*^u%!BimGzCd92V zJ#3ofMJ8-CeB&Ib7~7|LS3;{o;){ETUbWVT8<292ZUD%7Z73wnFZ5~vN~dsC4=BKI zW8JzKmBNjt-I1Y;CFW_|-I7Tc?(YP2Ofk8U81>d+NqK8vNr*v#A;~S?lzvq4ha;Oc zH4mm*zA_jReMoEj(OyS(DPj6DJ3}^l61P#;4F*yNUuB?G%!_!^5mg#RhV(6Gm|V)m z!Q9zVZXA2Z^J5M(h6eqO>;A*kJeP^Dt&ig`xJkml-n_<4a>uu0V5;p2{i-%^a@Nw% zX2Y+KwgByL)dtLxt;zp)PH-}v(`|a8yPoWf=_5MK28cb zh7J@{4g`*a72nUDWg`WjyD|F5y?I(%_8#F$EC1=c+T^Rcio{sycAkKyng+%{_TFRJ zVJ*29ocC8$+@5p?-V@;g>a{uo-Vxqo21|JFzrJzqEtOOyRh9H)2fYt@f`rN3J9nD3 zKo}(5Od6B=bQW*1(nCz>JReaQQ;;g_p5B@LReJC!TsynjYF10M*yl7BplH$G-aU;j zioyD|BwVtyP4JL#X6qQt%U+D(@GmENW(AOqNux+JqO?;Qm)?2vfWLu8TgZ!RT_4tR zhFmCDD-gksRpHJNI=AWA?dReHHC??mn3ifNKC7E#dXW%%BMAd@nBww*VZ?~XP4i~e zj^q@O#Eb-t6|UILdie18B=lFAFCo{bU?qip_VA(iH_FUeI6a{jrD*1_Zj z)}jvRlS@2tEXuZ-&_B9|NT>MA(KbC>l1Ngh!K-b0-d@>K zs2>m(xm$*qvA*(gb0^d&zuIu30eLJ5)caB`C8k#+qTM=zc5fk5_s$A2$6T~McZNh| z@G=t!5B;)c2LoCu4+F3-(=ucd)u3QB=HmC8_gi0>7D=sYc|QiDQEH`gLU7?^Zzl7? zaC(zu=#chciQ$}-m@BtpS4DaG_T?yyHrkY7wr#%bcUG$hkT`8I;C zXA%G1fmL*_WcaS5^gt-zaz?mcr-Mr;8KQRkZFOYeM-5$&y5?_O@K7iTw5*C1nreLv z#^>AvF&aopGI5(;i%Xt?)mMc}^*hf%*_-=X#*TW`F<47*pm#%kD9)ZPOIuB&^nnY^bw@{TF zOs8aK+_cR`yiuQ0>9F&-ivm)Ki62ON`{Cvnd(4#To8hwI-o?>hN#y;-jN4S;hO3pw1k(XIL?tWZD{o2oU=4f(X0`>sGmWW1iv; zG31$MP$bi2s-=qD#C;OJQRv-i2}rJd5oSCVxGAWj>Ppje!7oR5pv`tgvs`-)ffFh)oNFNHi5fW-Gj5@OviqGTuN> zyl1&Sr#T-Y3+BOC`Z+#2u@08%?%i^cd9ZUM%5D6u3D0t*hqk&o@!pp}``(zEdyU(K zl^cssmQP=qUV_j}5>pEJAi$&Dr!dgE_W6Yh`SnQBXw#qEh*eugv6)U^Vr?7hoSyTf z>DqK=_CV@ZHm+;gLhR=azM;)a;v=F)C81S+#UjiCNF6IJR(ZzZNsw@zO$`5>>)^72 znM+zJk--hENY%>beXnuG<|q54165cMXGi;M7*0;N*v~XAnekBZNp}?HnFQ`SRO&-M z%-4GeMAm{bc9Vb>rYyyHw6uo3Sv{Ej8DgwtR;W-*u!_Zqcw!=HAq+j9|Bk2+AiV-J zGEHw|2QwB#4H6Q$qP`NbJOo?f!*AWH3C0PYSun?A{11Uk7+2%+yXM;uR%};68L86N zvI?d}5W-jZuv-*)8&ZkYuDEI9o5gQ<0kT%6v9C0}^jZTlZqf$*D>9|+aGxHo1GlbC zL-pV1@LnlsEMUi$SmEK<#wQJjS`qF(Jt#JbU~+zmE#gkFr5qI+`|C`?WU$33v4@C_*=FxDoTMh{1eo9V_C#D~J!Mor z1#LVr`i*P`?~KR8hn}njs_F>QJS*0hIt35D|Jqqmn+X(jpth+n=e;J?{KP%x(U)rR zUte$S6X6h9-_JP&66vZw>Z!MkrE3QFO8A4)jVzcn`5eaBl+^Cnv7%**e0Owbiq{c< z8$#HW`*R?jWGpC@ug5~KGI5~b@Wy~0*ZW1HR}UxR-B@Wf#ji8`bnZ%=aa)1hZT5}{ z@js6*yq->`J1TMirL36H6mR!aKnw zkGP(GuC9w_9Hrl^R3K1r<@n=nbki;$HrtOL;zIKERDl95VbCr3T9&)4`XXRi?S|QJ z8n@P5x-QmA9#Vz8Sh)J~r?`?D5$qINyZJk&PV~M6kjXEUqJeQcKnK#JH1siAjVNoR z)PB>rv?yFv^@bt=jGHJFV;ENwCHy!@!zCxgMe+S9^s&(Gp3=c z_I(frEY9z~aBhMCU(N}IC3P8FY zr_Wg1V7_^MWzh10x5$A7mfm!_X>h>_D&6K7C8J;9ipdjunHsl*6bg>DZ|nG1BF~kW zy11__LV~2Yc;c!xvpJ%c-c6#N#F;tQrMdsPS5~$rwzR7rCiJ#65RFug@E1lo5p&t~ z8D}3`hUz9P(kaVBNnMZn_6t4uvZz{KrS1CIS#WC90i)mktci~mJku#KPnIPk0j`;& zNW86$ebVq7fud7}NcTxVo)~Qdy-ZD-Yl+pmY(w)7{*+P8 z(9x<_FelYX-^Uv%)K6#a=1*d3^Hw1CrqK77ND=Z%mX@rtU)`KzL%Rk_o@0yx;K3E% zH7yb`*#l7lgF{%#sM@AWV&#nO-34GwRGt+P^sIDXNAg{3E78=o+|~~ZJ4l|RkU8_X{^1j0xa>5*+xhJ)Z2=tnS z{p~`9+3FlBSr!k0g6Tj)`DI%tX`GPw?L8Mtb9lJ|U9;yMc2dYAY-z^eU2 z;-GlWB^g6}Tw@S6{XB{IE|gs@O8+P5jLaV=OpCj@fx>Qk!kT;uEBjQL=S{A;>tQiD z%nt-xjVK>PP`@@$gp1&<`jats^;>!S69URFnC+kOBL(r$;n7@8po^b!ggh7we%VBU zKLm9Lj#yZgWo!M1ug0!{Q(*BP4dWHw&u%1@d;ny54M~pFkER>=5(X~5UePbVtFpiQ zrRw5u4nx2EE~}QYjjv}(-&TG8%kP%;YV*JQ<@d|~_P53VYuNL-Xour(_iCw<_Svq? zt8cmf-7gqP{_?xu{r&pC`{fTC996cKfAXu1pS+Z{F?;)Z}0rSwd22fr+?KB|Kg4RMH~LrjsD^We|F_RyW*cL z{G$bb`0@`Q<~&`0Wn4cW-oO0rVOr4Npb+tX-~ONAukDxLeTTXKyI;V+ z!Ty0{q1fLbIF6E!fb(Y+PGSU!Ki~eIW#Q!C5I9D{$lr6V|L6O=b&mU`80PNpe(B2pSXX!nm%`|NE)@6SaTM zE&hEK|B3Ry?lk}Y>i=;U{%TPC$93V4y78~E!+%6a{-`tmk|6t!@6I1}>0cI%|2dud zwPU{?GW}gS=f&UslErKMx4$lU)noqsUrD^=IQl z@WF78|M8omIg>OvOSO1QvU$t2c$#yC()9V#jOB8OMS6(knyMdpxmc-(a-qF^rJHiQ zkjhe!=F*e_{)t@U#XOQFs{S&nsnXJyVmOmyIa7R{6uUj6rRkpy|Fj(@Pk&S9S0R+d zJ~sQ4rgD@i@pSoPFY{64iqAgmAGSR><}n9Fmz>R=CdjeU%{#77-yFH7RB)r!sCCNIgtnbsQkjd>=; z^qXhhsTR2NS8w!PAPQEMY!u)8QfWc+rR$#{fAb z&=!#rS|zN+{shTsb=C{RIHxTppVpfGFDx~Ae4BP_9gq8&-upjrF%lzkC=s* z>TH?1lxaIg)D6$h!U+`yWp>s?SruiBorX%H)xyg8@5K`pnm~oi!{eTzFT++58o!|L zL?-EYoX!b@KLY?A{mp$)%6)y_=0#F8fuGvPX>&v1f$r>03NH1{Y&hW@BcHUj;mfK~ z7JGxGZLuh|dc1WbQB3S`>gmaKk=hMi+Dl+Yzp3ra z$PF@e{$IXI@p=v^H`6}F$l!cshf<6Fael=ldfwMaA*THny%11$BO z-J>*kIuAxP1eW)Gz{Rab-xW5m#uusxNtxUJXiao{A9sG7eCRS<3Jz)n0=#UWdXZ0z z`Om%VQ$LZ=xI(wyJkW0Ux*yt9{uGBRZ8GmNF%+!BUGRFpTS336n=Y}M9aBXTI zuy5f?^)0pi4_uLVx`EK!wkrH16rm-AM1NcPs3e$fk|l1e!rd1gK>gg@>raAKz0yc-9nbd9-RS4J2hLb5bUwjw3=e8i-C1~^ z&!zm_J<>id{^V=)E>dI#a`F@39@5VpfpuP{1(~yxPXV{<6u0myZu{~^lu0u{Wcl^+ z3?Dg{+V_A^83df1iq!hU(e3Oz(=5ns`4$olm$&!bEO?^F{ZL3rj`pQCjkY+9rpP878g3D2t8%h*iLiGNV7~C7B#pa((Y1E*XqjXEP*7>1#n>Z+VN3XN2F;)=o&OZ7=;Xgq?mgcoV5b#;|er!36O?y-{Al8v!ftBY)gc(aRX~ z9U%vB#w9^HCaetdHjP#sW19hKuf48i1r4FNxr%L(<vC0m^Jl_;X<)zQI+5>ZzQcV1zcuIH7e5;( z@5e1G{GG-b9fj4;16)wRT|DOPzeLhmmHmMnzP`2Pd%7U769v+x)s2mVO?i9peD?ig z41M~(!a*dgCuUm+Uk#s>`@YLy%EKCBSHibVCjQU8pP#Y|o3@Iv@K!*OGC_JB5QaZ% z5jrLQZ3YJJvNv?Yc~PV|80b?|e7W4QR01^jFYS;!#C{G+?wndyr|`FtVQc2@yrBkKF%}^ICC4qqHu1-)FRe5?Q6A8Rtjwx~4GDL@WDUaiC1)zoURaw; z1XctVC>k2O0EP3F0cyNV(I~_e+_xO^PY;?c z2H=9C^?^Cx0esWu#o8u`>uxI~lUUqkH%7B;_*@-4b$4^$vM)>NB1=Y*=t~Zm{<%UI z+@dlp?sLC-!U*r;=Xha-$7guUMQ=D@k?Bbv*~Tlb>w}&%9Utj4Akwb)2A99`FLn>0 zKBdo8@k~xV6^qE*-!kKD<&=f}6YShYy4qahZ{V8kK*+z}hNs;kKpOi8_N!oWy4;(B zuS8zN2ZBN*TCvakb8=q@_d=V6e);izqiOn%j8h}=by=E>;?lJcmzPh$w{@&PBY>oW zr26%mB{f(KUJkqZGV1%%hmY{C$>`#mk9;8BhM8q_iGxFugG8JLibV`7J~|wkvIotJmzw3|8ghZr7-n6#c3eji9#`u`R!EY^nYam7F`-w7zJ^PZw@4fyX=TE1 zPOBJR%tsKy@8~`FxfL!LnCO5k2M?GjLWuaSnECZzDrPK5qw&3*DEmYyTn5WKS`8bD zrX?t-wYK%aARjvZBYR z9$>ppUhPN5h?@pskw!k&Lhx`Y+tHJ@-NHYXo_T_Ugx{e7bG?N&&pvIP94Lw@ZRZ6xxTKp#!-8I2e9Vm#IeBD1+IdH#_7X#_>0tE3+ekc)V;j5Y56(EKjxF0$&JZ_ z+EZR(J&OS$%Gk>!5AdbxpK90ryNA8}_gO{-{#*iW)v3ukKzD`+)4!PBsu8}BE(YPT zx*-wxS&MA=1o}s2Gku3f?6?~oOz2TLNV1Ly;eMIrH+Nt8>!2nRi)5E*N{uXET~-fwd_|31--{Xbvs)B`+IXr^FU)vbl?*Et+!&{3uo)KQVk+`gsd zz|IY`btAw*Tm0<4n^*;1oYKM$3-FA=XB&MQQ5|gF&q|QMc8o6W=1rF<>fya%*$o%U z-Q}Ed&QEaugtgooMSvwOZESUd5hMwo=yxk2<#RT8e1(+WT9k_EMUk=keYh`-IfpKc zi%x7XoWv5nh`hfNjGdH+D-M!Iyn!o}#mM)_ltt3_&+1o=Xb17WC4KL|+U36aE)iIG z#94?>!KM?EvXw2jk@`#TPtGCy_+}Kl?Brw%%2Dba-IShrkL+2`s|8FKFxh9Qu9JCv zP`;@bd`>2ViX?R`Xkg70f`7i?V zaD8B(Q@1iE)!aF{~gyF?h-Aaz3dBxkLO0hvh|5S*sWOV;_Hl(&&vXn040T zb_=%ztnRhLZD@NA-qqHHqCdF<6Tse%!2oAzy%9x0V@4j>>ip| zD(lUGF*n=!2K-zR@2YVgRcjw3j-L(i5(ii(JLd>~9BA$`PKBK*0%2iP*2}PK9h|_e z&7=Ml=dooXTO5atgBsu-?o>lW2L2b0l@Fr6dzZ-Zu9R2cNc;7qc264Q*qpQP7k?`G zlNyjP0-+2k)X&ykP_Zbpb?-JrKalEKc&VkRD|?!%z?LRfu=n2n_2m!L+i&$<$}zX4 z!xK3{4W-%Q;jf@_pGwqs2#3+vS}a+*_QKk6)CwdW0D^HpilnSqITS5KtdD@FlJejg z78l58+gBOP?04QSc%(mUoI#UKhp_6evRcRoBu#T67y#}x8S^pEW*fOTrVkngs4D*?mP|fG>rA#oKJ)7CV6;%v9c~BtP zj(umO#cGc#myn4RTZ=w#rZ<*-r+Hq3>T2)q1h)$v-||V@H~_Rs>g+1y>}#`nyHzvC z`u6iSP@$rQ=Oz zYzXmi#QFY86IjM{!mzQjl~E6Kf_Uol5jmGZzjjl3L$2Onzu7FgdcN_`|48sO-u=UG z2-H*IHCwqaAW&G0Kz-=N;*`Z}V4yLI>jc_XiD-2CPib7RObZ?+Gq!viPU)K}LmVq? z#AG*7;jg9gffHhFYc`46WW+vH9Ig0zP$k{|%ax#9z?v&MXNTN$^Uw9|9~v8|HF&i7 zl<8eWW@)=`egQYV3PGZ7FBJ2t%sA=uZvy?&3dl z^Pn`;CAH}4;_}i6l+fHp*RMT-1|a!9jBZ>WI^4^x>P7e=j94^BhWl{+v%3_WjvpL? ztkjr{NnLiXUVH%7m0z7x={#t*iZAV4@&q z$1eJV+x&ffm8OmQtBuB~{O3PFIWZ*;e4Bl}vHQbn4yU!R_+roHe0_iDz^Ap&WFckJHD%pg%;)(5$~S1IL6C6ea(C_s`cVu!8UeyA7VE*xeaS2 zH2z2f(JherHB;6Zsj_!qCtqs5vDAcogFm$^g(`ma#x@ zMn-234EcH}ha-D>&y0dD;M6HNHShr-<^9ZYbDn(62yQI;HqUiVh@=N(4d=b0Ns7cgEuui8!4FCf))la{iYoy?j^`O)<8 zxgmL{c@oG^lZg+L1)#5ZhTcYjw{ET%X8~72d`*w5Dv#gOVmh^vs9;~uWGtl5N$`F2 z`cms=Sy?3zUuq=hChLw7D0g3}pJM zUaKQCzUsVu^V|-u$k4mj8x_{G??{)U5`yCcp%SnZIPn@=(=jU!4BeE(G)OA5`Pk#H z5}WVDr_h9EQYc{3_o6yq3!(D4*1RQpO`e5fk7LA5Mn#kIB%|+eXve{<5iekKV3idb zZ~5tY1nA*w4CIMSJ4wK$1O*)dqtdfzu)EGcb849cI5@o?S5h+;@9-9MKaFhm$8eeX zW4MR!OU%W2fnizS@IAxCEh=*m649DFfWRYxLd4Jw>mIXNwLjFAk!;e2Fgh%qjP8kv ziWXcNt5_XT#{gBD!wb-Dt>QV=6Z@;P;cUsBFf{nYhX35ydVX?J5MxYI2P-0Ao4g?I z{ZQB9+*N&&&t9%JkKh=H;*j(KVQ#Y$r^TipYL8{Iig$W;8bg{4@yET~v3T83GnYYf zgrk>wTY`y9knH1%@af|^frh0>dl=;cV@nWL1ZRiSlD(#@O6xJh4Ak+vG!pr+x?Jn$ zq2cRqGZ35t_Po~11DP_fHt}_FTK4VLxC1_Xss-yuM3t8(5U$lhDvKr=5?0IUKBmcP zEbWUL&+yyr-5-zL`xG+0nv(n(A0Ahl0$k~!rwn@H?r>e}Cc$8_-(02>7@t&lLQ-#< z<_0FJm$#D|P^XUujo{KLB(^mGoF|7rAc;s+h}$lc&gMXe^=7E7*f{Zh`ib;0MZ|$9 zcX-gIwR`-(s)I~I0gwy9h_>vr$=A5Fg-DD;FN8>|K!cSb#H7|_{Euljq@ zwq`LYiareN@na7hUCgh^{I|i3F%*0b8~gQzq6s`|9j!4|@kZt~t~oc-*(Tgc>gQQi zU`1=9#H-^lTe28#>4GE|q1ArEMSF6?O2>voY6Z$7&-8{89xvB-y^~vu+DaHZ^iyY; ze^5Om3Wz@#D8WYgSZ^h4wyUv)g~Kl0@+a_0YF~99pIhovBJ$;3N9={-=}FGXljmTc zmSdZi1y*A&$2SE0P!B^}OP}JH>kgFjK}WU(Td)yAM6yx1{*RP@0cD3S6S^BTX}#Kw zpNy@HUxUL$-4TuZ$1YMjZ@QM6+c7tmzsh@9XBGRvX-iBz>6M(7cIoKPh3H+KHV29T zk)2|=*Jk11v2++lu?!WT378&#$3vsKf(a4$Y)=Rkfy1=Bsf$_j7vQ&xSp|3au;~-J zl+-N^^^2~XynW)*P5m=AM;X1H)Bj%1xWe+%Xt+_q+9Yx92aF?n^Bqy&&S6n5ChGfv zOo}DmdZJ7?7n?r9Kk7sCdT0T`!wL8E!4h|3f|eAfOB4OR-)h6g*>~Us>8T~uo!2N- z+XK!EH7hbTRn5+mz*dWk@na6l@#hGP0&G>)=#x}!r6~>G$2#ea?5k+J46)KWkz3+F zSp6f%^Ac+C`>?RX4^vzI!a9Pyp@L4klRK)!R-MpGtqlstz7C5`L7p%I^$r5=SHU~4 zlu4dGSMnN*o9Ja&hVc_H{yI8)DBE)GKil0R(M3EMAJ!^mGs+EdXh}`F&th8dQZUR} z(9x&dn}89XBXZ&NCrq33 zXVtmk-~iURiBLAA&cc%w!?DC8IZ>7=$=nfzWTgB zb<|vP^({#UV`)=(>2f@2>H9n@vY=Bi}#!od{kR4)33unU9XT5r# zppAShn?KPUnKpJ39TL8z#BQCF%^Ko?COVL^{l0=QH*FIycw-dQP~znp>WRWZt$-M@ zh(wB0V6`sPLs@ti_0Bv=7QlP(<$g|afDXu;*bFIiZ7&Er81SR7m8A{%cteEg?OL|( zq*>j5sx{vv2oHDO;bIK_`3TuchZ16H2?V2Cg5mJ!rp)ar8c$#sSN$3uHNja$XO-2i zXUpydnPy)#{R@%CL)umP?j8zbQ%N4O)kQ_OsbYhWf~+1=9V;Evpt*M%@WO=78KlQl z_tcoXLjg7AV9|1`jhG7OJp|RN%CO+gBMD9Dksv>JODz~(fvC3Sok%;Pk>-)8Ga5cd z?~5^ybN$HrIa_;5mdYqBCF`5H$70?vf$6sa)Jt_WRr>ZC!mO>TUM?gw4qmL%4xp75 z!v+c+)3nHDWjk`Bn(Nmnp^wgSpZ%?@uI++VYR6oHshj#~P4Tf(W5k>rR1e|!Ib&pj z5s#;7kIT}}+E~5Rq zrPj`{yLjrqjSzw=dL~*Wi_&Z=laO)Z?p+Caf!z5G2lvxX8ZELyXwoh$)NedOf9y92 zro+`1q}8R)eij2$ut5USL)$)qn(M5bu$&H2r=*@=R$GVL7W9z(j_fWp)};8si|Qq? zOe%H2mrHAX7nJ>P&(zH_eq{Ram+TvC))~I?E>|9>h!bQY=Ld(}l^x-0>Y^gwsGeso zn~jCnQ~DEHZ8Yj6zo}OD7A%2Iup`&))QU8UD)KIMsY0=9syU8jjNH2Yxul8 z@0Eld_{GcHO=ZiDs%gyLuDIkMN_h)b7)w}qFGxp5G#^5Pu%;di?UV%0Zd}s}rdouT z&ma;su+CZ6Vq1z8(afH#hccgXUyW}AF6ZTQlUBf|-~#8`?X+C&UtW4#D}xK;ZB?VJ zbh0efO~YA&GqSXwFV#M8j+qL53OmILayEl5Zs^ zFX-FsHEZ{^71GNy^xAWD06qKuRm*HEnTwf#QVjzH^I~Wrk6p%S!A+Uz(=(Xf{F9Yw z(d>1NnCk)TMT^0rER7fiyKLU8-=j0X&dL2bj=pcrz{AwW!M#Z}$qj6vlKB}e! zS&5X9aU;Z48nBg=1wW$9OGhpCeJZoCMJob#)?c23z5&szD>3%T>1F$+E^BYtIlJck z3^M&I92%<)k-SArE)qsslNd0p*)LNcU5=eqVZE~7RBrK;l$%Sb1N&Y-%qAvKDG4MO z8Nj>Z=21OG3FO{Zznb>5kFIrgX}(k6%`+-%WFp^evSy+mgVxF}bfR+E%jRxe>Q>cqml3u~ zM=5THeATkj@(-8sgdIV&`1G9cEj;M+#EqgZCx{carzl`YdzYWmBC3_Rf30RVfxCB` zd~f~+)Ns@#%(KR;&BQu4LWSs{*t-ZdK7sS%Jp;Q-4%TCAdV+A8?TM%!!%3Jhcylfh zqU7D4TS?g6o}^O$TneDocGARmwp%DtH|oSM`82gK zYfii1;PTr5H=uj}`iE$QMo_I)nnu+$Wy5+z=>eegWgj%hH6HE3AZ87CcquRGBPC9$ zKz73i1evtw*>M6HF!Q3IiFxHgPEjbsOVKWNPlYjPTT#P`NzWt3(zJGiH_Xc>Ex?k$ zdD(Pg$N6m@cEt3gvQ~21*_>_*870^kQzP@PSB~(cxLh+)_~4JRS<8+oHqJkp8KZN> zXVpZE@smIH7xl?rulGPP)Xy~?98bv&z*9WYgYSMT95~0`M)d!G`&WH4XJucw8`IzP z!vo<@cNR!dAtMPmyZQJo%7$B_KWOXLdOYhA{uKh7Fc1&l<;grKEkFB2o@F4$KkW1# zD#M;ftnIZ8XA=8rfyWoD&_4&bpL0j=3h_`h< zy`9l}@A>pUzuoFqOFCOuvl~$i8h{{ywU8^b2!i&dRhR~TB|eDq^`YqYT7du*mfy$m z7Ajyg8b<^~RA`5(9VUflC$p{Vz2)p~qePz-?}JLZNZm29O_V^{SJMF<&oax9%Q@aT zg%}wl=>ln`%Y`KQ%sX>GoyOo#JVQX46TK@WAblznfkk%kQ~PWHq^^5KPzmZhxUfSi z&&xT*zO(gWlS$Int4)MfHt+Iyf5yNo7vVtNH`pIdx8^GRWW0NJg&g3fb%(-ZV*_NBTY_L-_W|oLtff|7kV(ew+Rf& zZ98u>8$@QKnAW5gYEiYvM%~XxJRPpXvpXHJVwG0C;bN|Z^^k}yq%u%ao`_|uO5b6- zIaEA1mkZV$GbxIlL+JMIPE*$GI`FK9dO+Fb=X15Z8-&?nt?W22^VA*7^?j*$QOvT% z!d~r@`Cle|!ihCGXJSrs5q^z17(nFPCES(=mp_0n?0t(#@$;l;t-Ghyjwjx@*XXAZ#jl6F!QK2o1_5k%3qCdWYfAzAOmu7;nh%#4P{SlW=x4kNu2TMt#G%_^ zig)%*`PpZ7?W4Kyhhq)3(pNK~$sFFlv4hPv)emr6C0<}vNKS>}D_j?3S7P4k?MUsU z37AADuTlpy|IKvSS^h;sGzVFA87_33-l%kfTlrO z%GPA0d2j5!<=k{KOZ*Zi&XruEwcmn0RIn$KdF=+fsFzqTPv3duc`#Yr`2A7M(^@-I zn$`vir`zXz&z`&JG(9kQ8Dky()*vLcvns~ z;#3_ZBi)_Zsf=j=r7H6l-MfA_8J4Lhucxh@dhAck64i%=%@n+zGMO+=VVRG!;`NF8 zKM$EcO-9t)MF$r4GH#ULx^+=AKS8MZEg_xDZE`f%{L8j9HjTzLZl@V?wh_0wn`mIo ze?lNEZnxE~k2+I9c0fx!_f?y&tw&n>e{XpKQqn6K#WNTI)4{o~U~5hjUQNv}ZiRFr zt4+x$oJ2AJIQNmvKT}nALMrLe)q?*VLNG0?(&AvnUa}O_GV5-OHYGsu?N|O%$(Z7G z&c5!qA(za;iCEQ{gYUn9eG;bmT6)cUvIF(+SIfWcF}0-*E&S2CnAfxVn7Jm-o+P&x zlrWTN#{|R%5&J81n*dS;coXWc+P-m*(nQWv1&COMYYEJPx|#qn8=>j6^xV8A;B>*L zE8(1MbsnduUQ1;5vZc%%!wE~vNdm@L$p;@F>aP?Z<+7ZKHj+6@BSkRxCudP8kYP-U z+3XQ^MMMGCR)TtVU2s8nll)(Hh)1*L;dRapspk|b>22EP{Ylwi_EwPghkldx3tc{T-%ut?)6H^? z>(EFtUe1d+QG22pD&Cc)MXz)J1j83H;d-K`k655JjflIgriBUwLAo~H&+(cxT)g8x z0d5|m={aaqSb3u6{l;w<(tmmu)f`ip`3Yk)qcHQIvi9f7RN8+c4pBdxR{t1NdK@FM}@ zU`op5tB&`JS8S*2cA6J+|H`ry9i zE>1hE!th+H)R}7_)U}ovwb`5yToLF)1ZegBmBliQGML`JG`eUAj*1bCN`ue(lzfpH z6$A9=Wi=edd%a3q7m=Xk9Lft7dx&>XCwulY$!ts2jq45dN%t;?GFQasuBMstg?Flw zV-7<9M1ZZ?A6`THO+2yJURAASEk@|R>esu_(423mF@?@MSr%Db0-|>1mUyr4>C1T9 z;%)>udxM$I#H7R2!Jr&UJw*Myb}!8iBqG+YhvTy%mhu$eC`#;y0fzT~X`rBU!y z%y#UJ?E>t`WOU*t^aah3dK-Oy>9A_N>eXaZxvoBtQ$GT<$IDHh%7^?>tz-4-igQhN ze>-{aC70JS^g=3}MbHHqU23d0`#~X`;RT_tHl@>&C%pp|#q&wxyML`^fbh|Z6Ryl%g%Y`fn^&zyPF`p(0*%MZgVFB74BZ- zl0R0b3z1E{UH$HMuQ!w6vG980_80+bDE3DxgJ{!hpt=g(I6g*2e=S}~S!j~GW<__9 ze8cxn^^R@E^Gfy$yE?|g3*ShotY4WXm z0Xy~|VdgczgBnk7$C^=XvpPD!BGS9?%NAK>imAI?R&F4AihX_+#jep=fa$kh1k0u4 z${L~ty}rG6D8E*Q^5}$KKbBc))S4w%`hx3a3U%#FD_e-$-elM&(b-Hf)MW~c8PHrM zdeAoE@~Y}p`?&*AEE|M*e=PdE?NbZlHryCm;^3+|g3#oMRlO^Qdz&`LtPn4^#aB$O zj4qj)1Rg#7f8*}!{OR4T`JCK@NtSk~EGf%$;ZTPP$Rfef+=pDPH`>=Wd%DJC1yNv| zNR%$51+`Tg73kYlKrg6C(Ad(nCK4jFNCiFqbtt#2FcnRjolC|$gmZwdZVlqZc{uP~ zFuB6j9v#)`p_vTR)UQNbkZ5@bi4zq{H>hFg#CK+=)ww=d)LxF0mUJHz)|Oy$zH@sE zsE4G_RxI6Yeu&|Bm<5g)>CtV0f~dIg0#+$MW<{E z+_2%qb2Ry6i;ofalb#5)Bkl9KJ(2MMY40VLLeNxWQ=bTIpT&@Do?c<-`;lW*IE0BY zI81tQ{73VY#F+#_X|ItICUXe6{>0(~Hh~D+qS`>!01U%!d@8oJzMxyEjLil-KMl=* zHVJyUd;UJikd+FDd>WwMWO+%gJRWR7(Gww}E)^D`>}c0kI8L96;6s6}E^~RDXuj6( z3(6$)M_g@sqY40uLzx#cWlFZsY;w@p3;(Xz7?Cv>?(3u&`01p zq`uO1k4c{x<87wK@2I!9L;EhnTU~~?hqG4(dS_A$yF@4*E@S;uHLZI8Z&iECA(dlm zfV$QQjdDROumz8-?i6cG;f%trjT1GQq_c_Ti!Qc|y@W1KlCIf{@iNkmUy#))xfGyd zaRJh0J@muwAiDv9Pnz3R9C+DcsIyEVA9kzY*N5Lkc;vIFnii*`Mc)pVu-PnOxLebA zOoyrLUb7NARJDqLKkaEM+xVeQiiVTPS{X4!wy4W*8Bno%*iY4Yr*01>zk?UzGrb{U zPg#zeqw$!fGe8A2thw2aJW>Fj>Q6j)1YkDw^@nH{+dKMc!LFrvMYa_O4eNS-DL^Q1 zV~wDW#Riw3p9g@p*raD$o}(a|Wxt9HL7=4PRQn<21cGQ{(!bTjBa|f*<4_j>44%q zx_k!Do;bwTd*oU%_tr6G7+9^%Daml9Pm|1w559O(u z4sQ0VO%X;O6CV_KIQ}23^b-Wi&3&RN6?QE@bVGH*Hwplw?|8i_dEFRgzT8Iz88>Xo zRTsbcDhe4@+^lB-wF7#8W@>`Eb{{;=1V3a#?)wSVr|x#WuS6>a8ZWpCGv^+fOl5?m zT4re84h4?hjL0(OriJiVY%S4QQg45Vq_X&$34qu@PMWnNx6(ki*<>Nm*#VOX?+#UR zO%yn%l8abG$}DaUy63v$g{SOGe2C|?yyhn&{I}rV5{AfAGP`8jf}JL!%2^ZX+4;~y zGU-VrWqpBgjIY`lYK{BlEOcGQXKq4sW^q?ee3*yA%hX{PC&fgRG>zNEL?V8%O_zwL z{V9bN??s}An2GRz2*9M^q(Eu;-Qk&4(-D33fRk<&u zL~~pJjHCFUjrrjOIF*sk^)nGB#X_;h5^PtlgKvM|XGuv5?!$abs_87gPn(na^$vjut#euFou%X zk|r&dpB!Kdy_=F~4c<7-pdKSDkdfKb7^9h*b)@aHKChTPnKvSw*VKHffpnP0kCuUl z)BhP;-f8M%N#XW9U`?|Cw3JC>Vnzb$B7MgptWYUr+GqqRPBUbw1rB~qY-e`Zz=E-i z5d}AR9kc)dr%6pP!;jy&>0m%ymQ*;sGun13GHwg-Yo7=R=Zp$9_YRXt$(%+f%t2oK zcX>G-y~@_{bniyEc-tNa6Ka}R>_*uHBxIU7TW??&V$YEP1va)lzGJdZ=Hq~EZD1kI z3ps9Cuf@s^-n4aAc#3ua4rG=H%2drxvuWW_R13^&jQ`y-2@`?Bg%RKr4Ei_6Mt&c;}AWF3Ro-6oo#k$S7_~@*SOVZ?p+SrRP>k+qb7|`; zx5}2abvA%>Q<5pVRHdiZ<3w<@WxgLT@D$)3Q(tMt)iUP9N&8^33lBl*K`DK!dsO#k z2w*)*sR0FlA#7EtJ+K2X4|ZliwH|Gz`-wQABFmbIO&0+Vnh#GW{obCJ4ZMI6{ro-_9^br4+Qc{K-W{=cUyq=G zh~?ts4c);O^Wl>A1nLSS^X}DZ?uoGg%o_p1dFdQFYOvS%@GA$=;crGWvHO}s(}JZv zQ=o}bTZiz3k!Vh?j(I--lyX`HY_plv!<%YPSBq9`&Y+&&ps_%ulW_RI!Fyx+I{L@I znwg5Tz=IjLvsJw29UP);DZ;i59z7N~NJ#gm6PUV=tM4KI#H`6SlHw&w_Sa91z>4^F z$h$o?y5pTPV5-%3c&|@8Nyn~T#5Uzh2%2FDdMDBXa+ExVixuV`6Gf4ba;tLA!qK?g z_?9{j#fSm@ES>ckZvb>+wGAZiq|f(;|8F>t;hfhR6id5_pd#(k!1u3r3{_#!Q}Bzy z8bRH*Y(f~`ck$wxlCVI)s(rOw%peiuarT7G4fan|L)vosC?~OH#N{6FrYG|I)lMbj zKNKHi6%sfQ$je=UOL?bQaYP!$-HEei~Oe^N?dWUvCG2H_!|=6Zm}x z{jfRy(SG&NL@}v{l})#Fj+J$nm(9jXAtJcbL(jGPh8JR(x7MK_-eG_|4V>JrLj?v)U8gIf8*1?88&6weV?t25D2c z1^h+1$(Oo8T+k*{h?A1l$OO`*&cZWz$zrKGyv&BuB#}YeDfZW7-(>lq>5@|RVU$HR zQx7ufY`x)fy;UZ!*QU37q4BK-YjS<%!*Nh@4O>7Qv3C+OV!gcy%f-DmbIunr`Pz)E zJ^0QENTWf>ng(9vNGAE2|efj?>RSs%C`#gp-&?u7!F2d{O*Kyycr2i!m7&24O z7yS&K`!v=Yh;5aRa8)%SMeJEBb+p!CF?s{D@({z~R5im?t`GPZ@M1RmF80LYVd>q$ z$08VT-B^3sG)(0sgtiCHM?t}E<+0p{AuFjraH~t2~CpN5H zTYfmC8HFPBrE{Q}V&*%`mSW`Xx?2L?<@(-u2T1pL9^^lK)(ET#mU{!s+QD2@5qpG9@pAv^`|VpAB8#} zB`5!?9)!JADLcj20N)RTYM}ljdEz4|%hWA%I(_K;NOUiiBVrM@Pzv+K-g)znxQx&j zlKdX_G8)G-oJz#9lBVXeRpmf%<4)@P?ELT9>$Uguu#Gdlnc{lYE5N*$=O&5P87lqg z%oy~1unjoUaZH`-8}eM(xU6OV>SNwrQI3VGsVjt@c`pgDe9nSu>q>Q(F_C}F;-(ML zIS06woA>Dc^e^i*zVzMu|7`wXJ1@_1xmRc=#8sha%i5w0F?thkSX6MU-!2SwJ7Cn% z_REFfE@tdYlUd=cJw5i7`eqK3R->A_{JL7AazaZ%d2Uf1gA*Zq}pPDelYL-nFQ%5_9p0t610zM66L)vAS)Xtb+oq!%%e{#+f%aZ8i1ic%Q zL?w!?cubpybB~wT?~o35$qrs2a>+ML>Zqb=j*?fW?O;`aY-7+_YH#M9?71cq3~Qnm zwH|64b#=+NNoi?W6u5YxP2narzlZd3kaWvJb0MxeM0@VOCAII8SXU6pQw9?VSNN3T z;u2L@xHt#DkDLtG8J=w{?e6avO2_Jbu6GQ@353!K2*hSJv}?EJ8~?ip7}=U&{?Ah> z_}_krq&V{d9_PxbMMDjm*M87KG&TlXu?dXOdzdNH`UuMqOT0Bh%oH7_JQTzIV1r}1 zNi1Ei?m)^Lju$s+)He|E)VwY%-Z>*oz{NDF2+LcMwTUfZ_(7Y8Nh zFm3uLVBd6tmRoYbS`c>x&L!qu(nhQUHWa%h?If4A9g_}yYqyoDxd6Iu9N9J(Go9}%vOor}ot zRToh@9cd*fGJw)y{i(AF_cV&MzdrUJlan9FYVna58Q#7Q)4vO1n>P3)tr74xDV2JR z+C$$f_bzzj3dq`DV-5*rmfxIel^~*>>3NlH*v3=h2!5bY52l~VL%7JC1j1w~PT$Vz z;zl8hBGfp>oj!t2QI-6zmS%!f&TqRVsznCDY;QFO$mS$mKpEy`un8*(>aOiBldw~Q zy%|m2G}raSCyM!`-3h4rS=<)f@6dg8t8Rg8g#uRd<( zI&wEyk4;!fK9+>;0Xq9?&eU6+DA8g)Vc5TeGeT*-!MM0Eez*oL^67n&2Ll+)e9kX)*Zim*<(VN|YO4K#R4b%zO|voI z@pCiX(njs__1ylyIJAu|vmsq+*!Rcy@QXq_=e3#zKd1y0Zks&hmiwGuF2hmE-sJzuJcy8-Hpkj2=^^*bHMJ2|8uM5DNfE{j^`SqZT;$iqv|H5N?xq0_bm zPpf1Gs1v$}$DkbB3kQKxd@mS;N7Ii>2FdN^&%yLlYLPa5>X%gp*;?<1ntX4dIF=Q4 zZRcE70Bz-&B|QB*W1YyBQ73x__O{93P|Zt`HM0z#l`8)HN1N2t-2~o0R?$(JruB~u zKP%rnG_d^VNk1!jMr>qy`}B+ZesO*sjMpN}7G0|x-bZu1}*%p%Uz3e5=dd`CV zUSZd=MVG0z5i)frmZ2kbjoc=cA5gt*0>zQxxdy;xuZVt5`F1^NfNd1Rw-Nr4=KM-i zO{|<{^}Scc4WECcl~FkxSoLQXJy*Za6^jE}BN1_58&9aeC3!bU<=)3FELj#l%Sfm| zzDRVXMIg5x-|gdo)9FKJtI&_-@fuqx_o6@H0M`AP&&9cCyUarqGe9k8{)~a*l}YB* z>b%xSiFT)CY>pDlPa)N9-9ww{_}uDVBd?bQ>++>=Y7ghz4TF08nm=zh+P(>%iL8KX zu3n!z4=FfIi3?&XnuyWA9Srfnbq|I}#)`+8#be)LA-Z+XR^?5azbsmFJ=6htt=S~f zkMMlB@7y)`%cUN!Z;V}iIOWK0YIk!aS`C1&s?fzNDWAElnM_$P3egV%7n*re%G5D& zPq-ZLp6OummwD}_y;&n99?8($3&Yc6i}D+NbW<02FOE6(E`SvEMz= zL9tSwuA>&N(7yu5GPQdD>>%#ROL~7;Bk>GJL6F`|=4{^dnTh7A_4Tx_b{yq#O&ZTLBwM6YRW_#DG|BgI~TM;tLb`CHBz`hNs9!+W+bn7i$G4#0bL$F7qPxn9ZH3Mu1!UYS$tt`S%_1V@23o7ND8N70K9RMJ6Q_$xg;@v4^j5(Y=E~;n9=9F=(%Jh z@j}#;Y&`1!LH4F@?7i%j-ut?mcQ*wZB*zyIeJhA%<%^cwogM0 zTOuioi_4VONePwe#tBWrZ$@3JPdA{5{RyRH^epuHq;rLd~ZUo5Jt;91Fu3E34 zhs_EP<#PM|iu)akOF3E3GPs-MLoGMF%Jqno-Gk(#1CFMa)&`Ri>GbN|G_w`*WhZi= zudX0m!bhh~HNFb<=K{V9OlM@ofTM&Ep*!J}>d*Z!;H`+|cQ85A#}9OGvwzg1d*atH$HQUNy(s>S)*S|h0yf~uiAbxh)NTn z*XDCu0%l1Q-c3#Mf~oGoWd-p+jZnx#Btl+-S4!ZhsarTi*V^jGLT|Ak8L z8-uMD3@e$4VfhQGdH|N%L+SG!n)gG~V4)6-%ISD*r3Kr;5~8Hou1hLPxtx=EuZR56qL~l=33*e@SJ^_WZKfMPAzp5 z?I5LdsPW@$I@ObPm^+s=Ot;=0WX!2tMEbI>T%7v_AkeRBXfbob@f%fIJ;e zv2)@mBz7g~79R-!eYL*oTp$kXLS;0WRpy#DJ%XBUD9$f70*UyV!iCF|a0KX(Jyjs~ z?F)cNI)oSg6sB9$8Ln@o!Ya@n5dwPnulcv}(QhOQ&D#5p5_N7prp=wcPs;7B za(|Mxi2_%cTR+3Dv@of`)TySpUo2NNwWJM+m=Ub`p?t(B2srha_LFteRDiXxp#CMh zM-abmQ)PX13iIph88u~1py)$RxLA4Ds`|Q%%Ns&Ik^?n!!VOb?dDo>WqwTKov+w8p ztilc}hAvaTNZM;7tdWTn97hpV^>LaMl4AeWUQsxLU~6LDF3%1(NUyDhx*?UCXy(x| zb}4{5)4cDr9}`J8`rOwxXm^@+7_QeQ&Vgw+Y0EO3*JV$uh!1hOM%_;NG0KNSb!^D7 znKOF%Y^~9ZHo9t8#f|F*7O6Y!@zR~g3}rMgkk{^A7cSX1_1#$73}cmiCv%C~b5uZA zxl2`KzXNclEthxwf|(O{Bm8e~;Sit7B~+QV)YKL~qr|nb2{!$t05&^_-{1%yf?tK% zUio%xF7J=V0f2`Al`o4R?baYY(f0hb{@gl`Qa(*LxLt2p4ad1~kPiHKv9UKlqM;Pj z@SvGQeHmZAd5>~)TTh_W@;;1X#sWJx zY#?p%{Qm5*f(3#0oN&u+Lujr2Yr^cV8-$s{I%x4`ov4qmAQV-NtNYV!{szgXWIJ2` z77DBfcAnQamA$?UoQV+b;=%0ctqry=XxrxMANcMmk&@d#!<;LstwaBwVEff0XmAV< zYqe;f!PPGqeP*GZ{l`1eqx6(4`ZST>6`Uu}7SLJ44C60!78kOGyMDwY3`W~}STsvI zs<+U*^zCo&u)UEEUZD3Pl9BDJrCYp3oY+;%QvrV|ui8Kv-Xm$fcoD0t#MA8DGqQ#91e|%4Exdq=1zCE%P;s1|2um3Xz;bg);*i)}wpYGS@P56fLW&v71%g?iO zJUhg*lYV}s*vMXpO>Bn9ENTU8!Si1y#YA9u^Jf+tRTOBJ4KXH;uD{Owqs;$lM^&-# zJEC3w*F1&-rymcd$&x@Vks49X$J5=9MNiS(OG80^$qyjV36(K=8e1Pye}CBd*-%l` zPR4;avTw!Eex_<$+|7pb5y06`vAA-9*`e}IN0K-3nX5ESGiCQd?&BhMK&o|nVB>~@ z{`9AGiHR(kBQPsL+FktQp>O(g1q0f2XQcsX1{09l9ZFZvC6&0sQO6HBu%7CzDE?R7GsB5>+QQ zK&iS*OC=s+Z$rDJV2?4b#D&~=jD`n$5WMddf7&|4#ni&kSN(lgB>s>idcbUYapzB*hTCJ{mBs8$HVGn{o##{{~t7~wdPl?(^$^9^*_gXg0{ zl+b4(Pjdf|i4=Mg$)_rl3JQ^vVy7^83W*+}yE?36w(@ksGu${x+g=qX5Wh0jK_A=V z5yyuDydIYQ*xY`9L?3u`^OOP;*2c6DGybCFC`7(t{$m%qp@P1j?rVY7+%-|`<+z>y zQKjKS+V&go-^b@?IbMNr91ep;y03have@*k9vDP^DX9}Cc^6!LoJ;wdz4DbO!k;N6 zpi|MpaA`=-D42&pk~V!LO{PrCDblo-wI70Q073DW14`xyZ2XBtoP7AvVLIR zk1l53o1mmG_K*fL(P&AAnHfsI3`8U8QNJ~Kf8np6dvt`St=S|#z5{)gJGH0C`ifUv z44-gde+{3}CWJ&OPlKcHsEA_V*Sm9{c`YwBc$47Iyqaw-Hg6{|_bZ2#b=8>_Q3Dn^!= zm7K5f@f>)@?bNog{_w1gi2J(c`n3R<2-v}+ee`s;c5&kAVSrH1#`-VbIi11F2r#EX zo2x!MYT?#_F!#}z*2jjZjNQX8%mKxYbcoF<>35gD3bC>#W1nlzucd!6d+Z?`ZIR*Y znlgU>z&ze}P6;Sh3juUK#A^@o*NCH!@2KCPzs`3b!|x9tP3IF|Fzr#{`6Fx@BA$uh zBFfr%*A&)>09(5c4~KBb$@uOI9-hy4*iI}EVlH+gu5kgojHWB|1Rr#(DWVQa!u=tE zn;H|zy;Af(o{%z)l>|dnsDy;ANHyj+T7i{Pzm!t9VL|CvE)HB}AscaFazAtR6P}yr z%KKFvs%+7((_Hs;^4$;PZ#cHoc`|<|w4;n!dWBh22rV&%!~&{iQ^A6|#;HQ?O5vM@rl(KnR)7k~IR5*6zkOMk%SU?*Bynl>3mM*2 z*y>eMl^D8R>^!^}(782(Iy_KB;LjB?wnc(i^&x`6czF^bRP53b-xQgffV#C?ozE)t zUPI3BEbvgKB+J!SS0>XS6a2iIR1C7$*F$b(^VYs{#$CnFY`B8wt5FN`7a>OJ}+owX#7AnszO2IA%L5G?* zn14l#GRGUl$7T3JCyE5YBlOI&4!~^-$T>-ZeK!gD+%#MZ>324t`dS5;#k<7KX&%07lz(6$UoEA~ws%N1V0k7_A?Cj9JvzAHxD z%Kqw^mlx_k-9Aae^NF1Axy`%MAq;`z(@MFraFx9$%#T%)dRQbFU!<_7z)-Z6cUGFp zDj)lDOOxW2pjxm?gO!wRtXj#F>T-*IaU!ulP*cl!Wo?5ol<>kX>xBz@5H^oFHcH!p zh&dCRPpU+O?U~|KXf3YIwd00v($8LFqlLF`iPnfTb3lZ2$VBapigz9xaRXf+3Vwk! zWYF`29S^Q6kC(P*>1&~?6U!|UJ@Hp)-za13rtZUr^=qWvjWDX5-T^#-bYXjyuzfSm zgGk{vPIU{+37js3kU+7tH#O2~d+0z&bs7&`^Pqt)aaWA0q6Q}T4w&dN=djN~orTW6y>a%RULup14ZhI9z}b!Fc-a34A@ZlN{s z*5eZ$3ynB%KD2)XNI(z2^Q_~Oc3|vR+(Fam-Vq1K-dFs;N0Kcqs zJ`Ic-;q3|VU)Y!k?UGFi$Q;dBpmXt#85>Ux3W#kx6%VMk)Rrp{4wWL|2j)cSX+n+> zKtVnMn52(ve85o2RbFy5Vn~v)OB|etJtm?bN&4v~SB}r+wdIbmmo!xZK4#6-5w@Y3 zsf|AUn+^0!#fOJ{vWK@CA43}Ovvf-&RmCA{3+#fgrA;)_5IgeTfBX^&x7m*!k?VFU z_FTizoZz9*AC}L!KBi_mHs4&#iP4r`UAPU$%k#dzf7;Q@JTgduJ57C!Lf5(XLpHJZ zT0C{M>muva`uZqyRnhzI|c5Z!8wfuEeu|II0tNON9&sI@{_A zDeo|b9yzAizC9~<&%MONQ}z>BlJNz-SLQ>k9e}{}JAU(?)X8)cLKw0Gn7Dsj1D7&P z;+LMeYn}JrQJ$`sx4- z?E_?o5;J#ha@^z3aXvl%;giOcsMM=N+a>?le|iu(yajlxV4&mbgXBuE8!I3N>$Kr) zaf8)!06&oOB|68CNj%c3>^ZNnuUwv{n|~Oi{lEm$ zob0*EL21tY%pZuALbffo`<@oc%z$bil+eCAntR>5{*t7Okc5}SUKTh#JpI#uA8c{x zqP5o`>ZelAv>hEA1248vmjn1^gA7VCh7Vbm7{es%we^)k7{YboKGesUfJ&HU%CvWt4c=J*g4B&XQ{gU94WL+8VZ9KoAsWH_~J zLb(K?wrg8XgQORQ<;X1IOtW56u?z?+R`cA=HPro?npr*dLEE`!-%Tdun|#01K-mZR z6`mS4a3Wx#d&nOnnm!F7oomqHl=+le zi(iSWTqGxBQd1@k&+(Wy-H9~KAs@Xs`Oa&!`L<5(mE5Qe zz2Viybp>;<%HHL$yTsI*^8DO`-?**s7=M$ba^=o?9CAcv=E{~LD84b!T`k6uWYZor zz>d`NBMPuE4!v)oO|r(JD{1!aysDF$nG{=3s!+hEMUeZN@ea>@|9CjX)w!J%n@KRY zVfAoxl0y4S+3@DeUILmYV02LOb}iI_iHp;g>vuVV3xW3hE5#Z%$g*Y>=%&P%uyI#2{_ z;}>UdjL1KD7y7fAGnd3uC%Imfcp?*y*%Fi`ITvCzbt;{&B?#&@-yH|{%Q6M51F}aM zC6S36s1U(u)``NqsxH}bSNwuV@FwU>ygo5?!F3JU&jFO%cJe zu}o&D1vFBl4+#=kOP zd^uz0Q`55*LAk(w0?e}wec(``ZmpGDv8I(b;AXaQ`M!i;g6gw>BGEv&LhN5S8a z-afP~8l^7+v6)jd>_nw$kwhI01Ya>S+B^)=@>-(Xi!B59fz!+^wR~Y_+$Ro6YPh;< zK8+D(s4jw!Mjso~kG>U~haoj^AbY`IbnXY@p|a=!l20B0njozwF9yJi2(I*q1^=!? zufOn;_l;eQLO!1p|^WktY-?DTw5={P&~-y#UfT_vYOwq z04yQT_Kxh;-dF_?QrOQIM%m=^Rs-UBc~{f3Ds=USB|7TCFU2aT6zvvjVwk?V2wH=l zHb?-s-j$LC;phI!Cycm68^Agjg#dM{y||6gbDTAl{(A9HX1vEOrK=Z15xwG49gO2? z^lpXoVou#tiV`~?QOpN1S6f2#IthvQ5TwX14MH%Bi*okwddWxqXUuonx|(9fB7Ce& zfBOIT{yV;}{LyHy`MnRrXwW0EB*jON-M zi!5h?_OQqZ5OngnqpWC!!nO5hQYlbababh=uU5|rDfQ4i^V`#}T!B&pAD0Bl*okkX zIRYF?<~jIT-)5%-;-h$dDXHNG$YQh;TV3L{Hbq?iG!cmh(06f-k#_reZK;3OxxaV`9>NhoW5$8t3fI;gT`Km^vf6u+DzvzdZO2)G$|DXy9YDaq;aaH>jtCXzvw%4Vi z6~u3Qg*ek^fhxdflA(8gk<)TEG$OFvgr+@ua%P2Q`OtkbVEEX~_@Lb3fKICe-}nb` z)N6j_I^N|PtPsU6-?5fY^RKbzx!ku3pEb~&sw^L3UzWMTHwxHVaB$(pdYsmVzZ-;G zX#*t#dRK+MP04~@&+pnjF9-295XDW-i%;nPJ-?hIb6ggd)hlv|}HNf4-&YA1Z9ypiu+31cmi^k668hWn{)7?0EUm1U!S zc)vU+O!U4wyYZn-sY1TDf7F+i7Z#!a^vhGJ)5d|r-*Nsy{aNO4(YeBBV0Sg7o@^o( zLy=mlANXcSVoNoU`&O|~^aEq$5uPFzj5-QYt{*M8&>L2W3t@yNHO(J*JsTg>c8JE0 zjB!Xpc5D!goCl9keGU5;z=2|Y{Ui}GIr=4~`)iqVgoy=ldFfVgAVZoAMJboO&)~1L zt)c+^iSAF#zexAz34H$)X(+StaH25(4Q5I|ljt=6-J($q(o1Sad!fJ>}=Z?zI#a zj&}j6 zj`-AgJ`xItyNG~wxsXnOW+pa=O8O{r^LIX@z>UXm!y*qs>`5B~8$iRI@i8*Dze}ur zu&R<7VRDQ!=i1PU0P)Z2d!@lkhYhT5RAgxo{m}y8St^*&A5PoKzTxIKztSRsj;;Pq zB@urM;tgYcK-FD*0XXk0Wl6!zOTgu)#eT@DQF2Y;SOEM&Oz$3scUi#LN!!Bhe5S?jqZDx%g6jsMufjUxPed{W1{;n>cTh8xdM-PY-#xC{xbY8MID`{ zU~688dZo}}r(y+3`>)BcD{zttzG#xKrTY4%wU<3a=%t*ZdR`^cV_IOBny9uH7ty4% z`4lnql(8}qyltqKXKm^PRVqMj%6Z4kQJM-N4knqCh*-Y8%NRp{d!>eO6zN8<6wlAl zDETV}uU@I9o$uP-bDBEaqUHNj()^}B@=`DR00l955g4|FSiGP8T6r*2Xd<)okb*(E zZ%9Pa2WHIncM{m~z{9uE%)?*_rMvA&iQHrKO@7d;E;yA)WHfO}ga>ACci&fD+*c{Gd(@3E4o6M3tohP6`jvitMbFS| zZcBF5$1>RMRzPzL4u!vZzvu5~RlAQlKpa%~2$<21ed`3MLalJ49T940LCLHXc#nTS zCr}0*Olxar93R_=49{4{L}SzjKL{n{wGZDjNI>{=HHCX&5a{ChGhZHDoS#UXUQ!P6 z>^Eq0ce5=mD`|8j3Zj@;O zwd1))c}3=V{)DllF&MLWHF4sjwwnrYA;c-8F1uy061KN!Xv^w0Pl7z&C0={*hqBQR zK+kPGyotDUK$<7Bv4+|7`L!aZbI>AOjR-odnP7^2=Tf=l_iE7vdL*qOX3rND6!>y_ zzW#$jRSVp)XFbsaH|+MS--B%@+LGTf_QGog{~1DkYdq~`5%4HGktEQM zsDG_?7a0o9%e#7b*R#(*6N1gSgOi=I@_O~%IWvhEN=3eL_xe|RpM=~-_D@{t}SrhwbI#z?pZ0}UDcju zhECH&7!ctiv)f!bwNh)>r&pC4F54bXEl2co*4SK>kdmXu#R`DB|3NL#rFzYiDuQ`@K^(NCX~ z`k&VR|J(k5c-x;*LtHU(d4;u+-XH6c4ybN^;UAVEADsVQB%s3PnUvUO-q`WsM>5nW z#9@NdzV(glWp!vmgM$6x;sK)-7b&pP-kP90qXU9> zlM7vw#PFSVOttBhB-HAXelSid)N@RnobgDWPAR>_#242X0|=q^mwZgi!~+^z|Gva= zlcsC>K%l+mnsi%baO=(;yO+H0h4QboO+eh0WR9^{DzkG-^`{3jneNu0$;uq_ON|P| zJ|o`~n{yM{k`n*ZV}EtIOG~=ff3MC9y6E@LHO_U3+%}6s6Snp8a%jp@9s75@v~fZ@ zx4j@)xCinrq%J|co1(TAQs z1Ncz~l5!ulxb%nAXM6(obw(A;WcGyQJT6kxyGbn(HL%<$yQpP$fc&YBY21JwX?Qfbg&QlB=zs(;!*Bc4Uiw? zD{mL9HVBCl+qjBgo~-<>e~)G|WTfH8P2+F474#~{#`#=NyZQ5N7Zu2aUPu1?J z?$5~pHL&HvV5m9F@S@y$uj}Yq2EKxqAx;=`*9rI>$R1%|7}1a8ymDd!OJ|CsFkf5D zKDL8*ixg)=Rh%(4kIvn9^uBdomzdbT-5dozv4hE3YQB-3OF=Mu|1>}Ze0W0quOKt#@D6rFQ8bQ!UND$p>+*L$ zfy;|?Bg3~g{h{-EuJ*=LRA>kkiT9~u%>yQnSoRto87mkJxF_>Fck*X8Az|uGIQ_i5 zT6K_0a5VFI#vO**?5j_HobwzLPxM9fz)*{GE#^-qLpjk<{u5_+9SA9{F z=3fvqdx&#%0TY8Z>R|ntmc#o(iJdAM(ao?Z?Ywhf{nE~!g|)gw?Y5-`i}%*B^flR+pf`?W`&O`&l!?RGJgP7!Nex(WeB@;tviYU^x^sRe_bA{9Kf$0G{8@awo= zc40E3R|)XckkCK#KC9R|;a31TH=aJaSH;UXJc{wU(ZL*mE%fHhdogF*rlSs~zxyVS zjiueqsZ!CG(GZ`de#7BqN4J8>>WjH??gMqbG3QHh407?&s&NN@Vg?1j*)z*Og@GUK z4N3b{+?D2Wt8no;npke0B)V#;sCkw4Tw?<*x%o3h$g!OUpA1Ig7i3HwT#$Amiv&%b zc*IRtMg}g2$_p2N*RmW!zWm1GuWAjg5dcw4-&mkbtt=a|{R%%Ib-#NGGFB>Jmw5Q8 zf&5*GBmm0@3uJ!HN&)-uR^oQickaT*Wv|B>RNqWrK;Ma8b8-flo^L4Qd(>p^P#=hE z2Sax>SS-SgGc>YOm1#9zFd_p#|>}A4>IOXTi2FbU7dJ|C!vY@ z6f(gzQ+35=2wYtnMTTrXVJ<{HOOG&&a`YL|b?Gx0qiUq9lTRiH<|;52IrnJG{o^hB z-ME*ooj^Y)yPLE)cfTxwEzZp$xmTKxzbbx^H9Fn1w(iCK zZBkQM*4g}cqd}wcON8Cs=v36PF>}e=hAGPBIL1U#T-$%g@Z~D%PSz>noi*D%@wbI} z5jr_0_^hG9se2 zf_vmf{X)=@wmjfgz6w7a^D#Zo69;vW;Jmx%8!_bj*Gw;q6N5#_6a^ilUVfcoUnq{UQGMISv^BW{zevk5Z z{RNMDJ$SbVW<5VG6S9b@zK&&0DH=&pu|ledU9`wyxD@E?89Q1E%~5p4(mM(EO##3E zpa_ae3frgRkPCf^gKhCS>$Te?e|YjR>{R;Jt}6RwTObf}WpdmINomt+H>{<7gBU`Z zY7`tjZ<<=VUnO&9n=WN4L0>E=Z}0wMOm}X0@UxSG;}EUGk`6)Qx8z_-ALH~Yx@m}B z_PVJT)fBC^rzkS%_(j{mebS~ z0p9!V8tej%Kf^C#6~?hfBs88Xd~8mA9((;REZ^`luC%z)#i+<>RqXQ0cW}w>y?VFX}rR(uSRIwPlKzgLz!V1+eZ%pMX&ROnKhdw8impiuOeA4inmyq#y+` zD~e5a;_`mM5K<1ES#&Jpn2Gz@>ACdhs^y*)wNif1f2=0uN(iki|I1#QH+^PJj8&)u z*19^na>S_mC26V*161}zWskv|IGGcPXpWc4?q}CJ!L1md77$#x;n+_j@h8NG;nz62-a@UgTWc~&*I{`!}`B9K{X@;;emJEIAnF^e< zV#;P2MD|G_;W?c8dPmcul{QIh48PK=(;jNKj7kY%BBL(MX6$s!x^C|;W8}@s;;on6 z@~>GbzY7UVR9#6Tt{JvQ92P{5-4{~Zdj{`TR+Q%04_n+4DfSXbo7P2H=#p9-^mT~s zlx=6ru?0zjdNnYzEZRJzCldW$`)Z#gF>iYs1q3y8+)dUV;Tx1n!==WnxJNa6gX4IS z<4%6wZArXo+uzDmlD=-sLqd_*?>;kSAmHae@ZZP59|A35NYZVfCq7z1K4}Jh)7M|H zO{zdNsDHpc-(SyXmu%fCRD6H?-9yg9nXrYahT>D$N_Gb{u4}(u=p5(fu>0g!wwk}W z5gSL=?*(Aej4pN`@3m_W0b|>5P6HsLL&woB>DE+XK(CK$TMj*|H%ZTC}Oh&6%4 z3?`OCBo1}Gu{J@#Oqd8lMX*-PUIf_iAjB0A1%LTAMws7qEq(8&SHaQHc@oXoh23Q7 z2W)EKcVm}e0QUz%0OX9sTgJKO@4O4{qWH?RCw=_ixl9Fua9lRC*<_ zX;s^JD?^?1t`c}W==UYdnA@I0YCD()t+>bs6ng#BKGC?PQRo^((JzG<1?SkB*LjE! z>5bCXafG#knxm)@FIld0Ra>cLYUK(7g3sHe;6W;D1uV$j4_Bu(;e$1~2cGsL#@>P=2nZFy2crBy+@AIWP22Nk2 z0DdRw2XU25dx53pM7Ei_^3Qw@rr`chFg&dpt8k9`2l?4((RU^*O0aF4zY{6se>Grk z7Up3SLqJ=7PmX$6pV>0B?_WDnPyhj$msy1T2<6h^U1q2jNK`Fb8e*^G&IZ)3 zL`$2y_UAhOOWle0j-!VByzZvzZ}kM*LYxv7WB=3j7&dQTeY{Hn=?783bJD9>`AYlO z=I@@#4z%7r0+8hIB9M`qiqnq!ZA2eJbF7ZPL_kdI`DT$ z?-6sxZwZF1Dd+xSEXYE;&=`+cIf zZQl6`XaNcdiDux$%*2Pr*>T>eh!mB3**gfb^SOw6|0MlNQ&;n4Pq-vF0_D(}f8v#) ze}>_$ z9ktF=|L#L*80FEJ(YQ&ORwh+0Fp7Rde{BX&N;{4nn-+2UdxIrGetXu9wt#L+vmbCB zMh|vSY0Lf@N9dU`Z*LSsHJyNN?%u_*$KQq9EgD_v)2s-#6Ig+KR}dr+(iDxpBt;w= zEPBdR6zl!U+5J&l6vF;rhhC>8oPn-JL$}tg1d?zvWJwnvEpdW~o9B+B!dLYE?K)kX z&DJ>D9~(TRPE-8%tNafr;6jhVpH2U}92-EYE%f!=gCIBbO{ORsI>0w5rJV}(1_yCq zWHu}!6VBQ0cRz2kMa`lw8CSc@a%}7}=gJ0G676*Erp$O50(1Se!3){qt0Vz+>%&g1 z!y~pR&P-9&0D8(#zQi|{^1x3;Rm)X1kaeBPSx8%D*I>Krab4=%);#Ge$+retgCQrV z3O<+pXPLtJnf4QFoj%2Qj|%xUQ54F4N8vmC>bksIt=pU8MW_BfhP{rs(tSX1W?+w^ z#PrqZ>)R<96sM%GO5P$J4bkt!x6=3qsRk-z(pMS5*x&d8bj1*f%{^#d~ zAlQ?`>*&PSRGhH)Y7NH9Y(6|90!JSQc;$>)@SGU?ccygP$2~U!3ja>=yp+(6U*<~& z#*_PZ3QwQ$Z%%eLg6gI)ei%US$?~J14E^O^34WQ3n`odT*nQAebJ3p&~9MdJ z-#j#ARGl3osq?oft6TdR-pu(lNaBJJ!V;qJ~OS`9h6~-k);FCN>V@MW3h>Na)N%Ek8_5NL2 zbqNcDQc_1!;j|yG3*Y_NVzQconTeh@@6F=RHKUaGYjm!h3*Ep#7D`82%jNxM{$E88@OACJ@I1SB zO8x!*ecit+k|Aq++xUEOhtiT}NWGi7rKJl5{wfaMDMlZiU5NR2#UIi7My%$qW?$X= z6(a`x!q+e5OUB)rqn6>zk>~MSN1@m9E~z_lWu*i_fo1=(|D&(4z{5buX>rP2guj$@ zN-t49VW_{_JbmRq*z}Ec__Xm1OOgokD0a(}B<^(A67+ZRVDOqBS9HS|{dt3#*-5*^ z0lulqS6RB;a4@!x+VS&pOzbkG{_VDtI}Md3*$4n4}zhDSdZ z8;AtDE8XU-&7e%zU6v8lg9ef~Y)g_7OeheZcU$}-8LH~Ac>~5$MG$@uUAZec=8R9w;MIxhJ!!;#tZ*-lIAOfZabVj zpE-8vFAm&F7@}`P*X$mNA0FDYyc)+XX|@trIGdK%C}|p6r|D`*g^VB&n;?$*|lD{mpTC&Kgh)s+Tlh(*OKlP@nZC znHLymw;L7B@+fJ~vMdgbfNssn?HCHS;xs3eMEFlwVr!@@o% z_qGY3@bgb*In7LrgRyP_Ar}0eI#1J{;swiQrS^!T^$9Y~FYkZJ!{g`W;SyDSOuJ4> zFy{rWrdTY;F7SrUL{fUuHXR}uGOm_GTnP<51#!dWv7=D{4IJRl+bXn zPO*Z%G4!w8Aj&VbSXq)d*CojRY854gRRY)nY}SJ1qAborCTf8Zs%5`8)NpDHqN_qf zQdJ2M{aEJ%GK|Wgs*Ua6hF#mlDryMi=j4R=(Cl2umknRH3pbp8l@%SKsQ*I!c4`9b zZpkr#Qy>F9EB2U?qF301g!X&^Fq9tDldw%xw}e=0K-d>(IYE& z-w9BoSF@`f8Jr;5=cGm1zE@3iA1|c$Z4ukUE5aqhK4I+&eC{H)`P$|sz?9Yv!Y7R_ zY=uR^^^P3jigc`qG~3kY%dOw6jxLRpq*G4I(@cR8fZt&9JGEvLlt#W4Dj8V;Z)z%j zs4eIsJu6YbsU_k?^C=ADgU>&d@gt|?(dy&XX$O)9*nD{iHhZu^U&pB#8s}Npnn?7n z{yk*6t!qz~ukAEX`-{->1D3n6JSIT^@pR-a?2-Su>E`KPZ}fVUu9qi~?}x??VlB5> z2SuliH1=*L(t;}R;h*%Ay9%~0Dd2fXet__+@9`1+eUG}&d1jL?9X5qT`m-ehe~;&j z(@Fp9+~YMrk90|YcYqXZ>6*}i60-?Pn_lZHBKH%x=^Q3}-vnU{ZkV3sW=;N0NeRfzWlq_n~d0QW}U>qZJF9X+<;xW^(YnBHCGP{AWGo8Zeh5n`}Hv!QmZ+o zZ)sPlwfvjL^s2WW>cgc0m#^jSU)@1hqkLisaT0to1cfeJFxUkt)GX{QK((i`4GeM+ z6~)1$MpQNIL>o^${b)quVktj+8|}2fbaA0{;q0yq|6*&uxYk?vEyJ{cNjnP zPu`N7Q)WK^^_Sxq$Sq2BGOkjhIYgTnbNQGTcg?J>S&QiP#-V>5J!=luub^wI7w%Mx zo(nb|VDFA5{ZbH>2i{Mi^zG#o5Eb-A9}Hc(kY*>EEu%UF`Mb0N^Pd2Qc$F(&HMcBE zxqdh5`H{9kM_Q&<9_TsCkQ^Mq3;gz}fLgqO>oY89l#)wH7`7vj~=7OG?}L75IH<-sA^;2KOGU2|T9|d?K+7e&>|w9r7bdC`ogK zEtA`gI1)D7?Pi>rm_M|eSGjRsrgNoLzEsih+C$3kJ5_lEEJ_(l?*;hD9Y+7|f=-b{ zaUBu#^Q&c5IT#LMcp^>iyzee1h)lT*o>8=H;DbIPjvbvf&oI(OUr%%f4`c@5_EAr+ zeSPLH$=+Dq=_2y!Cu1Q}fAO6%51L3qOoOl=Nq#gC*(X9N+W&+^rzqz{JZF^4#z3J- z%qw+;yX+M2&BqYOTo<)11Gpk=41qWwj+&+>0RZS`>(^sHUgB69fPSYmvf zOUO1u6wZ&K z>L%#;)!!=h^+;e%T9f=N5ou*`C=G~MhNQwKFM}(=%g=ntrZ|qbWoUO*YZmDOhGmk# z{?x$y#FLwW3d%h3q0*3CAQ&PQopg6(YjWGIo+j=qaNCSIXT@Ux&xdH+n)$!e1b*?N zapZ~W`XVeZk!z5aKt;bK z$41E#J41!QD6RajaC|#km|{GB)VV=$?Gi(o0_w zb@`A?rBnj|+e^R1oBmAO%5OkGoi$$qCBg9MJ}72ahw993<;M2T=l4vCMNZ-|yHA=y z`@=4Hk$!!93fEe#!W}L3ffkDHonl1#$b=!`R3wWj9^MK-4+6wKB@s>|VMM{)XQ^v{ za(`(fh|?>}E&iUxMP105kcxeKcNX)E!_l5_W2>8%mQUyKskH5=dCa%vD5(2cBfZIR zY5QYtfR!LbEc>##t1~=tTXbeQ4C|pbACFL|1^TxAoupxQa%e)efNA>Dx$_LYG%%<| zS8341`-`U~)Omh$#g;+bdjYHtJg#LoFTU<-`%x6#Byekf+`uljRi2d(nE-J89g>%E zKOagS1`;x37yQq-D|vB}-y`Ul2szk#$}o`z{A*#}bp5->DpDPF22zroJ;HgsDGPBz z6-s>TU9)~2-Uol9>kXp4%!|!=HiWfqR#DrJEKM7k+s^&ukjyQDoEbx=X^G>+0A5SS zJ?tOwdv$)6OB7~U(Oyt3N!@AIqk25}0zhIV{E)6!va{t7c(I2d@3Lceb_vqe2Ev#t{ zWr4o8Jpyr4%ie(wXl!0A`Kdhlt!6&^Vdxt|hAcMmjnqz97>_c9A*5SqF0{Gzb=rIp z-6|vw`;s>5Fv$_Z&eV*&!cHHj`9Gt!DLOgiSIWO8wyH=!m#soU7Z>xX{U*#}37=UV zJI;21b1Q|uRtCe~RZf8Q@W`BJlFUz*_lW}&=9l_xvnWF>;`|UtDWve``RHruUj<6+ zcaFKWc>Thf>?t?%0k&#%o&4$ddyGyo%XWAYYKXtosCQRd=}(1CH| zDU(hhYy^o5WpvIMi2|C8W14fuRvE>{dk+-(*V&IPoNKcyPSTRClaKZRhmoO3)Deyg zK5Q*woR-k}tUjKXP7XgXZBY&UI)Zote;wkcBES5FJ)xJ7@ePevJA8~6e~dg-XfU37 zSkgbvlnZTtHh-rv)_nWV`G76#4$X|6J_~l0?I&rXLG%KL&#Xph_V=`t{V zgWY$6er<TW=}(uU(!6k@t>eZ)RngNaUBXDZj=GQcJc}!!w$@|k%f_%8~or$@9+US%`J*b;HbF}V!sC4U%*n4(A zWJY%h0@b~x!!~%5oP{5#)$MOh>8rYcVE~cAsbfe#VZE8)U_2AXz>F`;ie&~qIh=I^ z3&UTsoYVGTQuq=~-BGH~IW?0BH_1QO6g^S6jP|@#A7CiQ1ZSBo%ieb7yFp+j;)4|= zFxWJYs5EbS75aJ;XFiS)lAZgGetpVd{Y6x*(q*+aYM|VL3g4O8Bxw{is{8FmL9;jL z|C1A2k|@@p_jkHBCjB6H4)fnmwNz5C_FEkS%P_C*|<>Cw}MJfxhQBMaXBy z61HDB0TpGdkD1OAO8xehH&v64=C5KOUspe?_>BLNi(UGm7efBv(eAoy3f=(oUyE6r zDYjk5IN!dCCt&?nUkKu{a|1`r9Ro^hYH7^oO<`0wp+cCiGK}z}w4TIJJg+xqw4Y|2 zUcY2wT~nD^@C4^}gYu!rXiaVKO)ov+Bbibq|4(~w*5oM8tqb3uUy;%K=A3X<8i~1k z_l^LAvCU+I!G@bJ7;MaB%w!w?`cF8=%F3*%EBE{EbFwlj6A2+{J!@$Vl0X2QKx4n= zI7r>b!?mTMj*yo-B`7zij4j96v10Gcl22A9abZ?eOAD(JU83N%9Cm9rBv33DkuilI z+w)=jb5MiLit4o3)$C*{)W_yTa8-PE_}xV+EL{pBks+IPp68KMCyP^SB9Vrgw}VZ% zTAg)@y$f4K$wNzZA*2;uD5BYeI zXLHe8T7_y;i-~5oQz*!Ky2AHqQAFK=bqk%xY?vQsy0h(yh*p%9Yq-05deYSM%qaz5 zOAHHgIK(kOnn=}Z+{!iYkFv^{+lE_nY9PC<3MSaXkK1x?n{YT-Y+yF9h?&Gua=Dug z;{8-R|FCV*hDx+ZXqjJblkvSZxs1fdvsp##s^iqIm+SD{T1GXFgr=#hBMfF!sHF7e z3`F%rN#lWD1jtoZ@Kf8NAU3qHX;DQYEsMcMT!*o?^uUm+;?x#E*iZ}n7|#iHi(xA4 z2FM}|c(%mH$3igG%2>g@zhT96J)bRhSW%CHC$eva-gKqsoFy#;A@YWz z59)#pvw=X#>u4J#WXtCmwlqiDX+4#=F*WJ3kevE;ATBq{Wo`#4Q}8-LZfk(zpl=J; z-DW1PkRV^VtCJn^6eTx}g!h{~wphJ1>lmL}>t?sOP)64d3y{YcomK1Fu$G;-GQ0W+ zk^YKmUp&b|m&Au+L)zrb9Hj?%@IC$la)$t%Wz`GS9}TEX9PGo~S{<`~k)_TnZDi|= zxGGGe;1fsKF4grcPZp{@J6%?nO;^B#v-ZAM41z#oO-Wr$>@|`@;UssaiR*R}ko@s* z1g1{T?U7@PwOl84>lu>P>B=q{9p-zr zty619j)Fx#*p=Z{!I?-q9ia~tf3Taoryt?RWWFGG)EGGtItEb8RFHxHMkC@SM}TcA%`1i8-?? zLdukR&JRk&l}(hFBi=0}F=&p|5_qO1OLUEQ4bmME=%Nyqyix}KI8b$IPI=tg3p2T$ z<=m-hj_pCv2kWUa)l0>)ebv<1m6H#Zlfkh1tYGLB#UGDEvUJ6fGvOpwim>Q1mCj=| z?V@v<$c$4jX6GI{=X4_y11OA12IdQLS8{z_1$S3uo>qyd67D<@TCuX@AXCvVlwWm3y zCCKMF#TOrxxa~;Uxz*U&!i7zKKJ@FD1aaA&k>s5zhWL?e@GESC68^kZmQ z2Q2N{^tfD2_v(owI$2G8-w^`24vaHK8Qd!45;<|k>-b=2OPQ}VgCPi41mZrNM-C1X z!4nLu%`=*~XnE#=h|{9+3{UZ3$))pPEd&O#%S$iF07gue{bqR%)UEEJ{DWpoir!9< zy3dH1iyA+xNu|~ypy+$z>5h~F( zM|$_dOfc)n4X-o$`}uMhB6Tq!_CL1qio?`p#J5#70sVS?Nu60+rRb5LM4DGl=Wa2! zQyw}wFg*jWOH`K#B%<#xFUv z71iGz)-D~a9K2a2oii8YQa_5eiF28pRW6xajB*aLrEUqs=-rS?cU7z>k3@%#*DrSf#)l+fmVOiem@|yW9tX zZf_5)(t^`wAT!~32HE+p4?$3XQn?G;XmH?O!lY@8(dgv+ z9nfd|Fq=+-Jr#JWq1Ap89}VLi%VrT3$ENXiihSrqC$-Y;Mot~520W|rja`YpC2q-4 z1;+!kZg+r@7o+n+XW`M}A`3pXG;!sl1VA z$e(`1vYbd!u^{rO7^H)E9E2RZTE?Vca)Y)&-r+T1kZ z_UurI>B=!OIv;S-AQ5-EYc8tEX5qGz+~5!=5V-| zQpMp`&{`};a$Rr|m7h3geJbai74TpqC&7rNwnAt^6pXBnMG*jXqrzF?5Q)29)fyW@ z-l6l7bR0W{lfauo(K>A>vMNwvVwYR`(2mx)$nL+hqxRV5?6FApg(En!kd4OrxpD&D z1DAF(v14BvOop6To+W!1*~9&5yc(ZEFtx|PA|_jt4|oUn1G$rzp%E?F@+eE4n~RRt z+6x(|mnw5k`jVo;NaIE^&pxGKmx-AvSYmrrZk z7p<8z&L`vDCa$IhH?ATFThWa>_AB|sW|HOPEG=bfT;?WQ7tPZ1Tg+YayptR_DXty< zf}$zCOLR^JG>JN1AzPkmCuUIu;VLxUW(=&=*#1ITsyrlfXH9RrOrf5HeF;)8}Q7 z>`8fa1n1p_DG0L~5jtiWY173=#dgh3j*dsI8XYv_P_$8(jqO^<<`bK>3kOdeT-!M@ z2{Bug5u9>v5zX1wQ@9uRo4vZ@YbO#m9i~>b?F}(IJ)$u;@o8ku+GRb%?LlFTFrT&K z4Qes-q)8E>03!1gF_}mSFOMc`Pgt6TX_LAfwaCNatZsZ{Z~zaslU7?%iilY^PrRLW zfZDmStW6%^?3nTBayu3x<80%pp%_{$psS#mCB7%DH>b3bpe|8O<5S1&E}!9}y=SXTs!9MCZBTEiP-{>90(?C zVSJvo=h>88CJRe7eTTzpY>nB%J0_MFwmVUkxf;VN3(K06C7#4kG+k-nr9j=l=Rq) z*~Zj7Hd~MCN}y0=h#UHBGG3&Lpfo%|DHGn$B7L3~hiTEYb5;vQR?N>umkpvm;!vsh zG&>!LJ!MAgQ65Vi&rvg?vK&&+M97cbY{N2(h|R{5<@ypnfC&~En<^0l-rj|iljag6 zH}=I*eGd8$Zzq+E;&nPLl9*89cD-9$UI3@_VV`v1ybP7Q*y6m}TArbkmA-zdP$;V(PnIwc>zR_7wveS8a;3bG+ z)+E+kGpmcU)?}q_D@iuq3WEZx&WYSf#OY}7bbmuH=hbqv7lm#uB- zdyx8_G~whzbB`ESiAk)FryaFf7f_bY+FX+)+vLjKuHgu3X07K_S;>|T!L2lz6E@Le zBwVbqiP_!1lw|JukCqRmHnHP^44BWr*rLu&y9@9EA=L zu-c3+kiDS*rnATpWHcHk z%pj>IKEmh2;_$ib=U;K5YXpMPp)Hh6}Zpr^RKh51RR; zWc6rYn-F<0NqxL)6lnx#82#CHJ-K8)o2FX@4e>65<4fIZ8F$?8Ri8e;>_~#hj66fm z%eaaMce~lYD6u+AGeMftyAkg=Lint$XP4GV-zT-@JB36gmp%4vhe=~GydkETwRR$o z3xIoYx|rsc>)9!qZ0&PBFU+lRnpr21sE2GSuf`0&K2K;(Ea-Zn@)=|@^MaziMr^qx zUWkdZrY{Oy-u*@>=v1{prL$kt)Z2S^iXI<~CF(h?Ipyw*3z zL_s8-Gek1cApjY7)5!z%=#D3s`31U%aB*ma(YTF=rxCT^n(hHbo{U#3$~Kv6%YnBE zmYP<4ml!R4CrNY7X<13STeLF?TT4`2cEhqjKH5C)Hws%0R>*0)3Rk#<)GV<8 zG;(_dN9RnJV{5hY<$36N>TKr`XVObkc{f_{*_sPR{X2JS+cY}s-0iiCy`6f^X=RD~ z6orCyIrZs_*XARIRv7KHt37I0srHnE;LQ2Um7zr?RhqJfAx{hw?4+6S&WJ=IL*cDD z6fuV=fSH`g%u0h$3x&0%t)}&c_wR6OVz&HF_~g@vqkp>7 zNK96d#s-9DdstglX=j}u=;L8Qi2dtd(`9`=+L4kZm8$hevPS`vt>8W`;R#IGIVW3t zXFNgbY_~*y+6viTA@cFE<~Oz0GWP7kh}*e+VaKa!(_#4NKrT^rafQtBaDJMtbXbWi z(n|*WXt^J+^{x^fizI)@XXNeHhg`+FB{$wtvsMUL#a)&M-Q77G4M zaCS*t$6qdYD}L6XUYbRVcrM{mW%-F;Utf-6fVg+Uj8m*N#&9HM2{AvYqV#x_CL=;Z z?jVKu>973I+8-xTLQ*_#aatoz{M{)MJRkVmW0BJGc8~BIP!Zph(+RcV^}rfw5d^#D z5QXjf$Na4M0vqfXomo%K@kHblK-eWCgU#4Gj+*suRh=rEa7$IBvYEBZ1UZBdA7wM# z!)w7T2LiVrWuxen`X|ZY*t5c-e2u}HNHAMGNG{Y#X8_Pj=;=nF>MLg*jaJP)f6ki{!4R6c9t?xn?AM^O`p~m?UX2y z`L)N4+8jxXmUCVU%{0tv&d=-9C|itH7hegQwPn=1lOPudq6+6Rl0P7ibVU@gqB|om z&)rXXYOX9iN-a)p)Of?mQjc+K&jBFYI0}tCZ`%@QxtN%Iv+D>H0kx`9&$v}8I!BKU z&1|-GJOT1kT#M(2BD0f;s1^r0ba!o4TK>Vyd6+DTZ_JT$FiS3F>e{uxn)T7iX|$+_ z35Zjp;VKl5na~6D2yB}Z9c~+<|8;u(mw8f(@uDlOi(5hdbQkIzqb;*rq$@$((#QZG z2a9S}rk$R}lrR}J=5D{%=8m^5hP=e=DOof!ktsBgj+rr$Y?G3}Ab*~iRX?XSD&}R; z(ngZ;$E~#AiAQQ_f^P80rkf` zOdJ!Jp#vwfV5kVrd>zcV@kDQCqqubSGL|<9%lA)AZNeXBi?waAkdz!{!=5c)D`#Bm zM$-_IKtb%j~tqZ*pXS*3@P>U7Rm2Qd>K- zTb$ei9|MhTHd4>OqPv{jDWERvqn8g&b?mAu%C6!p35?Oj&E54Fo`}+Cl?k3ND+e~$ z*2LyeaZXA$K!%p85W6N@FPBECof?yck(dy2bQ)97`e&ZIM48sSP@N}V5BVv(7M!Ex zM-#_GjtJ_`ju=+e2}2PTa`-6f8YUq}X3!$nZ@9j{&AhzLx_xG)J(L{O{e6%pB{?2x zQ?-({y;1Cpz|Q9@9l5bnP0z9u+=so#H(Yt5Sexf^cZsT|(p!x!DwQ}PUq~2_l5CJ( zCjP~~*0>w8*NT6rg44U~2AYZ`)0Fc}`flG+8Y5P-uD)L|Ed*=7k3` z$hz{(RaIWO7n>dO;b;-EB}Mi*t-nv^BW|LP!vJJqY@7ovb)rdleTx+{!vkbEcj+XK zclUsP_Fy*@G9%{CcQ3m-^yd2cwj;XTwq8rNn{{-&zv-@=G*~mj3m>F_S@m zkdTo$!BAVOX=)|1vg4M>yoY$@tYV!^!19RvL%IKq$eBon<;zdCpct;5^MW+ALtwW~ z%7O8ioO5Y)CasYk6eG^}=+2a-)qFDK_%!mv92tgv3Tg)_ej{GXt-e|W2GL3r;~Z|# z03YOOlAzdk+~g^L%$w#!dh70VDlsh1c3WwYYycIf7_-|*LF2Aqr$*OF2ln?w8|jjgute93_5dsnf2QU&yW!o3%z!X;L<|E68N&B z3PDu$XxUkK29FmnFsi+KQlezYNqcumP3L$V@tMDMm@Sv*SVxks;MxaG(YSM(Hfa}5 zrJ*eI^g#`wV}|;+KK1T z=J^q`WjOw&4@B^MFmp|CIX3MuJ{u=5o*Mnv1f)+MHwF=MIi60eBu+L}|Rh}ut&o753BuRy~dGfh#;azQ9@>QF9? zZZ?@rl!&x?!4!C{I4w&nkfz+a#m9@~+MBU6l@C$^jUz0yrh+E(8O6118O1T2t;jKWO8JR6xBpVtPvOD)s6CO+q;-nofK@<($JP;+~XWv;z7YrmlSv)3|PSx_~89O0{4pMqKDXr8w4{p1`- z35(*!g3y+78r0D&5un78ORL>6g(>;wX+?K#6A_FTD!2uxafgcrCpsgvSb2*m9IX8lnqxoK=CW73hQA96{mY9aF z$hp&rfUKc!ZB=bP-UR#(*BF%;Ts9Gdr)0O^B<^wT6%jMtnIkrXISCngU{Me=<6+Rz zb$GGyZ8nIus|Clg$We+n$VFIo!xmq2WNbJ%v+*sD}5wbo1=74%o;8hSry|_LGWZYs5jEAJBgOtY~c8^+A{|f8@U)3 zt>;rz*JiO#G_&)zE3?bheA%uv;0Uyi0;<}Gj3M_@Kd{PJA$@74Eu0N&YwgBv^@Fyq zPJ*stgUaROOWPl-*ngdOxMa_h`QDm_Ojt|j16Y^4n7?q02x}n6hBh5{#(vN=$<|m> zp3t?MjXvkhDL0;xG7=rS8<^u|W4eBMnkZH+N}?KxwKv52w=pDqt1FIhkd8_Ju6?;m z-Ti!veCRpctQwac&W6E8Fe!PFS^IQU8%<+bh;yl$>*j3CcPMa6Ep1Y=BD3s58}MDU zr7O_yG%a=_bM}vF%grF(oDSqc8{@D@+mkXHSjvzS<0HmwvQ)03K+Tfvq{#cdzTAdN zPl}$~HE4?YY*k?8M6K0iItrU;!xM*@Fqw?nFxC!dI4U&6qM2lj3c8ss11OCzR=dYc z#6agb1}W)njnVQr<^&m@;CynLO}K++$6U1bH%DxquZnJ|7nV7Tsd8KIvx3~JE(2<1 zFFn z(23JUU9s-*6)BLzP_==`EssU9@YPr(Sb3jggUnO9gAjJ@%){BW#4itrAkRXZPUg*J z$Ga7>kgfzvQ@A8Tw6}}RAlcU@=Zj-+xyrHt)L8;kQHlK6TygljTT?Ro3Eu7EO=@e(Dj5zY9saLf8$cO@fx>(Kz zhczD`O}pB9MXqrYzT(CU8E;>=C!$sR3%`<(`nu|{}LcY?-@qVcc6Uoia#|==baLMCI zThvg_aTyKxO&+ORgW9ZU)i`tZtaJz%TikRUtbAdE3@|dPDU6La4V#LvN4?vi=j+N% zwG*LVTq|JqIg=culcFRs-=52PhunUu(kF5T7$MHfP*p_wnM**k6!%XveDMp6P zid8LE!&7A~s1bGPB3`E#XI36ydqLP?7jKbz$#G2A(R!*4zZ5EZOHN#-LQ(5 zi08FCY&2uP5?!Yv$JR>HhdbFU#!=$LW2Biw9kcfVM;hA^f!i~FRxIk;mFv;@G(DAT zt6K?Oy>t> zVj#YcFlyuMmBR=egm%!MT3>Asm!WCe<5p(Xglg4wI~sw+3XT~QHznL2TnRbo+nnIb z(8F91>n6V0mk_STZYUlyWv#EYpx{Z5KANZMa5~BLrVci8d_E)7J(styxC0i*D`0rK zshZGXM>8SWSymf^%Sj%YH8wjr{z%@(pl#eNTNHzkK5i9uAI}c;-fn}2MWP!h+JRk8 zcaFPsllow284$fHt53DhxY}gp?H0RkH#Wk^3PitCa$|)Il*$otx-~psj%7u4PGf!o z7q}#EJJNDV!e@!<5M_1$?dqelJapQ6EAIz$nS;105uu>S$e(bH+@X=MS6Mb4nzfls z+3YxM8_T0kV}iKkixTV-i(}ffb-4|bT-<7fGpgz}nX>~I!D}v7Ik8PIHJg0c`N^@l zfO#c>Wx*gnwb?n+p;1=?+aD*X?dtHzmjk8U^~ZD><9X(;hY~wTD=V~%DH1YF3S(ca zWu#LYH7$Lk3migI4(@i>vXJy0SeX>B>6ZzzdbR^78A%dAGCt>YMo}eMNjx|Jf}YH_ zZq84dug@tMWEf0AK$UhZTD28HGCX3|)X|ociFC9L!x^#5xz1P@{cv&CP7dkpQ0F6D zwvS*#?BavTD~4s*za}V5Tu|w{g45XcDqbPIb6hS4MdXiXh zpK0WDFV|r^o%eHUaVT1|VSb4T8L!OQ0Z%T=u9AqYw+JchluQMvTYGnNFe=<8gEBL7 zuJc=A={2bupPRU(ms?@9D=#9b_Zxns=X_Jn?UA~hsrG6yVhxJ(oP%1qXVtFNqj>m& zDcs#qA~;P`3t){#nBzcayFA;-Gc98mmrrhu1sqi}>ZXi*MH5f1(8X!LoqQ(zGy1qWACL3VT$!tOGdk$zVnozo;aK}z&(kQ*rgg=U zf}gDpm&0C!l_c3lbn&akY7c2W$({BjbtExa+gd6W>lSlp4zR2-aH;j`D9ojkv-KBZ zu)wXh0{P)$8s}^^X8M;xTrUMurh8La6asg>(FHW*O7XJw;JVov>uy(^4n{=yRl0Yx zQZe_-kzg-&_N9|3RU!7m)-r3G9v=B@ST@II_;{4htRN4o-AcEXe9Fyc_R56wqfJnL zU9FQt+cg_Kr)BVOpRxI|64~n|)=wEPO00+LWte&DX5WW+(`69x-i1mozSU_SoUYwx z6=BkPec=*Ol#!D=t8gG%9vLJ>F(aX*xl=dc*g-o+%InGD(V?>}zh@b5q3+>16i_~Ryw>qF*sfB&&B_M1O$>ZZ#!fB#V& zydZA6Ke1c**L{gU`vQLz$4#}(iqoIRxQ_h{J+a%w(XRRX50Yg5xVd?_|Mwq{1x|6; z?E3rQkKup)ubX%H_n*V)_gDPeEB&n%{Jtq4}ss351QvcqnoDk_Vu=?^1uJc zy{3xK{~P-RZ&{k48I1b$8QwyO6C|WRVV@Z4mIMrB@lT&wR51Zq4E&!zZk|yU-Mpar zWyYJC-@NhNoA(8J^dgFW!iBlTo__xLP6e-UfyJ>a9{_cWLxQ5Oe5i_a^Z6c3bi3!s z-+%na_WJLUPxr<0xY<-$jQ;#d{B@rfdiBn$s(TaiMrUvDYyNz1dQcypcnod2F>(RqD|@x8an@VsdlUO;q2qlPzha~R+Uz~_=dz5@Q3+9-C`utfbduN@o!@f z2ykUP#CqkSZd_gVYcRhf&G|kfNGmG?4YFS78jJA-wn9q;aLy*$pkKZUA@ z!y6M>pT9oG`?L=6r2T1gtvq=xqO3W_7$3O zbUq6{ z^(8U-G1dQpH`u4UVmJLw<}Mf9JSzfjdM^{zf&ygJBuOzh&l}mH6o&p@dxcsz6OB0{F%6A*vAA4x=E_<7THH{CLJnp?mN|&A#bj?u6f|*={`XDfa$x0 zlpNK!hy(JbZvs5DvFlsGaO&prJ&qx!yv_ppfd$kpl9($C@LPocBMTryAUtpa^a&cH zui)T4>VP3164(_gtj{G01Oeh4i$A8&AF}7bwbV_2kN9+V@8+olN+4&LW>GE3<;B3K z-tB-rR~YKPnH@^8*nPhUcn8U~849PbQyVns`Hr!V34jIydnX%^WO`_g)E8}$pZ z^5%Nun#0~a-DR)&_*E*9Aomoo=n>Qc^Vr1hDuAe0-{k>(iwEpI5176aJqzx2&y@vN z+*o)AKXH`gIS?n!1AAm;Wv~ z_#5N^@E}u2Zkb*IenK%DO=EZT0BrM_=xHL*Xhed=!mD7=#7+O3d`b`uyvhPYF)jxrAPwy{YJwVg1fPREHBD=$ha$Uxyc`@z8h}AwQ~Hva`IX^e7t68>WUR= zzK6B%-(8EJpGsU4cU63T>~&ws=PzlvBa?VeCiR@muLo{O2grc@^*j{*6FdW*coTH? z1N8R-oqP-QUafwB{yv~nuYevD`#thiii$eK`w!^f3wruZd8h6{XK!iHTPot)sQ2?Y z)N|yCFEf4;{RwIp(7lsFyvcz37T${qj|4n2;!BdAGvgWc)Jy7ro+-?mOkqBl@~>hF z`xaCBb*2xd{7ab9L;tqrV4f_;2W$S@S@TvH3h>9NfIjraKkWH$wCDI+fhWM}57gfc z^*7^Voc%!k-B5omKz>yI#FO&>!2b7R|7M&_5cjA=hd+us z{_lkPYk~3|>eL77?}qxDF*3n?p#E;CzZL{PYIpdg-9NDZ{n)=5>-PJK?og+0DTuv> zI{bCi$uCd`U!e|Ppbp*;)4%{Y~$KTv-+)L)BJAGJIC zOuK(z|J$*DGg_tKJ?c2TggiN|K@@&z@F6m z2l&4q{5Qi@`e6$LPTw*N{ek*#44H^G*KBG01NC=9{mnp?CO=SrFVx9zuDU+g?jP9y zcI@8_SDA-x2>naKA0gB4Mg7fXRR(^b{%)wh8K^SE2kP&J`Zt$V>1Vq!Kd}Gp*uNRB zKE60W^l!~DJ?h|=05r?uRR5C1-D>t7>OV>ren%F#-xu^i)~-+AEqXj4{jlWm#EYjz zkNXB5u>S$%s0ZZWcLe0^rE%h(hs5)xaq2m-Kac&Ji>oa7!2X@Fe=}xf@el0Z8T)T8 zw1Vf`?>|`ZPAqscjAb8o7~m{&hluZE|Mn)K{|4;8y;A)G`?t4SJz!5g!=Cys_SCOo zPrbG33Nh>h`*+6vtzZ^n@B{mI#{QctumC)p#ra^tJF(!c_!dP~57^_kEQWoU+%K>P zzro~EZ!O0{jQzm=ow0u_%7p-YVE@k8e{*S;e5Un3IPgv!cq`V0;BgZ-a|>SywC<+X z{t5Qv3+%xQ?BQ3~gZIY%?RmNv*yFzg`?pqUAz(hRe`oC93UVRDKCpjZ?CEc=*n;P~ z=|5QTPAqsc)`gF|yCDh*z7DiLu>Z%{zqNb|A^m~A=`5A1(G_HV7|LY(@*{++RZGs?x85A5F=`){x4KL0Yp2MgYb z1#bqs#KVRL0B&)L{w>(Ur;q$ROtL-y$j=)*xPI>ESNQPFZwkF!YWd+WD*dy|fGD&$g2lVd?{kPxjeKH3h40tC7Jd3MeKLD~n72^~32~xL!Bq-DuYlCUbQ5Ip;d4*@ z{eg-bi-HZW|5c!3Ig~G z{O<2C&uNDb84rc8=R|%F1BUrWAmHBs;dS??@8GBFf7A!!mc(#0)IU-ExlI5P|AuE? zGmw5fwfXbo*>Ujh3}E_x1IM_6FYJPrq%N=XpsH@Bh4>9{ksj zA0_-Ox7cp$P4g%A-*bF0OMK^W?Faat<^8z#h!{Y8FyJQ`@cUTsf(_IM8-9unzn2j& zn8AE7<0qN%``Pg&OZvsD50?BSOWubmFBtP-z<-4?@5h=ed%l<&CUD|$^xXTAy|b+L zpAU!RC(wro!OX}zJy{<)Xw`+_XW{o)#7Oy1DMm4K(qd%{TS>jXyj34*#{l*?8txqbkJ0ce zKmXaX!z=xG#`)`Iuj&3beT&fmqi6;(o+VhCc(L~M58C_ZmHgIQRaU8J3v%Jqpy&&C76U0+}&+?vHewK-b0>#ic1K_hNKeM+i3WG_K ze%AK0%%@I1%X}i{S)H%Z{gtzX-%>0D$X8+?e55-k^?qk>D^xs#LLRP>K4`R5h9R7T9JK_9@8Lk1uUlKRN0Uj`*_nESr~ z@9%t>fcOo#22GC_ICcXbo`B$~7SNwpLf+T@*v#cd?Ue`(`h6elHEYx#OGuI!LxcOA zzT*1={pt$|=%*~ue>H=8UI>6&ZM<{A+C8Ci_=$)gZ|to&vNj) zi@vIB`o3R}X%^`y=AL%uWd^)ffZtKq?<=`B!4Nq8Jfo)$M;!$ObL}Y&SpuW(^6oni z37o`;XIYOF;$Opn-!cqE;SWH4iR9%msC=+CKcr2bb{zj6VMERspkAM1K)4~=z=MoH z6vy{lWtpcmAOM9J2vH=@k^}+!XJ`Nc4f{OM@7|$*l~DK&guXtkAahGzWsE@rfb1hq zGc*NJ3R1U-|NUeJvXnHAe1xYg#P}<}pXDIY#*rDmX0Zf>7~AKen)^jtRPP=4k=#M1 z7XYQtyMGkkvi-$f`!DiPZT(CNP4prRD4NCbK95AEy@_sB1?F0;eF7NYp{}07B)ltKhoF?D`;s?hsTD z3BwX3du{Sw6Fv0mc~ZG%5D&WQPBo%x0E+_v`#jVZMKIT@!M$`aBtx-JIS&%_knv2) zkP^XqH>?-JC+Ymfk%a%|kwm^eiV$xZ5(mh3kOaW4wzj1MEs?1DS*TiyXFCc1Oyt1w+xA-jiM3kc(2}(1hG9_1ae-%wNAYM z{sRtil#2n9X5saDgd5AEDv=Y5Wb3XO2E$0AZ<;_@6IWqC(t#>R9q%nu&--4G0FFFi zlt+*ZOEa&L*PF*HrznV1pZak~5)7oSc_dAMK8_@iGyx>#_XCK)ShCMWvfN8B>}f$# zNAx=@ajN&kk(on6LHF&@7>WZZyw5}Q_aZ>`Z6gX$IpP)#B)TUKIp7pQ-eutogA+Yo zNKIhu6)&W<8AM)>B8oL|)U&=b*RzFjibBs51S$=$&(kc8R5yjXfMHh%kvb<)&*(lP zrdamcWfVP-7)124kYOOn^py3A9>vYb#G-MIG2m5P9`FJLD$(z;Ls|_zcFiMtR((Pv ziKUV1WbW`Hks?OCLb-Tl$~%=Zk$Xv79Y3P$w;byb)B%OAa?ffz(022!tr^NVAi z_(x;@mmS()dhq|MS>9`*Y7;b9bs6VgwDF7P|Lf-}tMlJ~^oyY==A(M6gt(79ugvo| zh`ox}ZK@maVp{AwJV(WMn>gAvD2ilz`^ol;6Q~&qsXQE6KyvfB|0v_leY8%HNbmJK zqJAXgd~2HQGa!)>q&|H{gP>O_9}}U!@bDMH0lp^&8>;_#Qw-p5ogIC&^-uj{9|BMo z*;L{ai6M6k>3HNm0S4Jp~4H;a8)-#_Bx zKMOTKjO9No^or1sk1+-Ey5J`?{0XX`ok1?|Es0+=kp#9-aq`M)M5Y30siS#|8I8g6=MwV zjWK=w5a=&=t?%6H#+d9U2HC6M{{F@o+>ddR>|n@~fcc!y5lw;s4Pal>T#AAJL!xA5cpJ1QY-O00;mr0J=yy@zAV}asdDmvjPA- z0001Uc4sbWV{dLQMN?2MF)~J9G-EY3IW{?FVKinrH)CcoWHK{hFfcP@Gi78lWjHcn zUol^4V{dLQb9QIcyVus_*p(i5ucyc2>~O zkRFzCr)|?c0w(0`beI z`UVsmmf!tQuj}-i`+eW{pLX=8ajxzN1VMMO;)idaSGlv}@w*?OZ_qaq`iUY4h^D?_ z)K4(|!he|9>+gObpq~(w#8DE+{P~V@NVBf|F-!Bdn#XMbQipQ?_N51b|AhQOh2InilDremCF` zUl0QS;oI*Qd|xyd&)+x?;pbh!w?DTl*pa?N$Q?m`1S@`A&S6cDABW|?{_wAozDvvV z--P4be*2P|X5$7t@x#xe^ZbvJ^SMmd*Qd`xalq{ys{4SER^)^Bm_sU4NEY z{Oj)1Hh13z7WuvG%Dx=d)>p7MGC*r?*1!UE@ z&0h)jXVw>a|N4@8ch^_f$zR(1UpwXg7nFXj-T#r+zmoIY`_D1{lN`GLoJ2q8-Te=_ z_Vf3md@kQ}@aqFYpg(-O|MAL_|9oZ1(O>3e`7CDuE2Z!P`hKnX#hI@p=3NWqJMj~U z7f|6(ul_-iFR?#=p38g%s5Fml`6F<0Id?Dc2Fe%u;b-aj3X1jjD}MLGe??IEi9p}$ z9sUV}Nt!0GKV1It=ZXV`{{(RYtDoPGAHEf@W$IFJ&j66`Yx&s$VgK8 zf5qj`-2U$i_=OPUF9`YT#QZ`O_7_F{^}_yCAP!T1-b4R4LVqck{!705zZLx}@qgK? zf6E5H+T`Ez_usnBueKuoimm>(&3?7vza99$-L z_4)e>{0|fQA1e4iT=>r$d{0p1uYsHY=tTT?mHg{~>K~=%FI4?&A?_ck?4K%({`KJa zk5>6l)dr}J{!NPif3Nzl)W`ou_5U#j{K^ROZ#Lo|XU4Bgq5lr1{9}#zr9m+KcQNQ6 zZ_=;K`diEXKbK)&$DbJYw}ZleKJ&hgKl0(fU-bU7nfP`5(agVR9RD*K`gQ!#*uO^; z_|I?d*YQV_|31y){~tzw9l!nl3-PylE}vj@P1p1{zyHa&nab+FXX#QB*uUKA=8iFp z?Y4>HR1C{hJmWH~%rK8T$uN#11x<>!Ul#UTS=KEpmV1dpt zd(1FwZ-W<>1E;4rx+6Qs1IZej%`!ET5^H& zU%C&4%E@|<9g9_WYz$^uG}lISh>G>r7mQ0t^v-ZV_-&hGD*2ao+Q2H0uVfDdjTdS^ z5?Q8E9sYAq8D@Wg>%dRC^R<*P6xcIs#Z(5n9Yk+@k#EtP`1b7n(IbnNj{#Gf>adrJGROZ26NbzO3 z8t$K=-{8#vVXtVsD7q{O6Kk|%DbHF`k-}ihXP>9OB`?r}G#)49_0;Uu`Z9FDpLrqr z6B8fr3&)Br)HUd16gNj(N`-u~ie?V3J1K%p#!7~N9`iw)A^A34mAVZ!sh?&8<#;T9 zWXm@_cW$FeA zsq&+zueBxIr9#S75XKM-WqTFUHLK_h)eHLN&c+tk0}M}GE{D;qaQNrFCtJ@|K|q`N z-T9bLo9quIMhK8;wk8O*_Ox(X%))YlF$pgmI1%R#Q8)vUhS`AZc!F`dV;G&JG}9t{ z_9GTL>WQeYzcKouJOCLR*wXuVYi5xf@l<_1IH;ECiK*K4sBHf=h& zlilf1S6?Sw{0%3Dy}}x{cOUWd*%cGEGngy_A4 zuh;F>L#u;3-7L-@lO?b2lapWh6&DHvg}$&2R>M`F(5RooODqVuADV=(MBp1GUpf4N zD-Lb3q%3M}G3ii#t8VP}O7V?-u=5ZpFCDV7iN0&oQ4C2)(Yd}+LN;hS!8{P$@vf!x z-*}jL=EY6X6hNjo>nWbB^*oGhoQFk{W|`TSa;Hio7SZS)71YW@-H6~|)kjH(Eq<{Ex9mhE3%p_7ee3TF9ohK9VE*RAOYjNq;6 zDsosEXi0qLlz|MEbC`%>wzVQl4*(?v!^DVyzVs-hmQD>O@3UN6x-c`%CbMM*bXI7G zSA3Eo;#~5b?DZ(S!y`{pp0t-CAoxPH<{M?wX~9b=%Hcq4jOXa_A_Jev2fz8-Fy9ni zL0$>YpMlvs^-fYc!Lo@ryjLhj35pJlvB`3C9_FM$Vv1~_kB&@Gz9mIDMw(~SPf6>^ znA%ovilGQkYesNrkFbGo!cZZzC;p8#SL}A7E9-P;}Nf$Sul}Fi`tm4WOh_9XX*}u>Q5u|lGnBI1P(s* zQYT1$Oe3DaDp*#}K?CD{b&X2d!hv({=NY8kw2|72`YcCpwuJ1vdrnG0_kk7HI~)V= zbZIriS$nNJBF&5$2-<$3Hxh6O4m~(e1kAvn_&`cLxzLeWnTY%p zwW7M#@nfERn^w6GypaUq;g^Q#E(h<(yTwFZoM?^FtB+4+y^BW?X~W#QdptvD{{CF} zl7)3r*teyQlKypjq&&xQ@fAZRNa19atF~|74@e^g}b*H2+PV#4Q-slQT6(?k57rwbN@g4XDe?jjOTDrq@HIC zA)!b83Np>_AV8!aO4g1J+#cekB}`I{Ba@orEM|6XZa2>=8ik^v5PuPcHWeAZT<^AR zq<)zTmWd(j7=5HZ#dxT?-D|Y@Fydmfq)5#;VIH2QP-aCV>p3z7WZguCCe$L2=k}Z$ zaEk@_H7$@R5l#1o@FDXH?0pQW-6sdOV1&oF*J}vr`r-A^ZWy%^DVEXopHUpS;*vad zaBXXX0ZFtUCWQ+8JAm<4=i~ias40CRv*c+>NDqF1xnedTJL71YDdKQxtNBqpbfZdG zl&~+Exj7?G1_^7$E#IM27cLoJiBv51) z6283)wH=)1B6M<8@nNcbE<_Ks;Sd^kpuUUUItiMo?*jEW$IgLKCGy`?V#IeR#}hV} zjF;v%F;OZ7$MNLBL(`*3H56Oo>FrsQPJGTYG(;n2?_Q4k7Zbzw9K6uPY1GEtHq&c9 z{pl{Cwv+)%kfX{s{a7;Z{qELNWb;^4ae8x9VGRuoebKcQykXFTZzd7->yF&4QN~{* z#KPv#j57|&7K)Xvl2t>B=go__T7uZ_@)B_}p$)|~wp84WS902<@`28%BNKIi@N+i< z39?M)3IKT$(mi`Pg9abytAx+C2VQ8C9O>)D2MO8Zxfjgy^_gBfM34)bUz$i|lb`6^ zOVUC{0DL#AudFhYym7+^ImFkwo^Z{P_1#n2=BnReYb*y+=+HWtl_UAou@uWiWI`gI z%E3a)D)MxZa6Z=Ntn{#3Ow^cOSgkijPQ&;?hvCks4}5#M{yfR2pQ_^VGz;yb#w3er zJw}jKRI|4Mjo0v`5Kc!j;BI=CSKnRpq)5ekmIu?AROW#4jMipPj(^XMvm0W6YNnFl#Fjq8sGE4RVA1?p!Fj1hq6Dr&L|Yv8l(cu zHm(D8q5HbkWBxEJWo8`~@as^W+83!tSvJ5JVl}1^k!mA`wuVT`99iyj!2@7ve)NK)H5VFN?R0kQiPFUUbM$$YQcr0 z1F>k9Uu}{{of2A^mm9MPtQ5w@LI}H6cw;PtH*8&_ou7yrrVNtI!W>kA)lx8};->@Y zx1eg;~uHm*!?6zeakQjmBDhYQVL zRz7`ciF|2kGWg8CDuimOLg#^9i4O4^hE^k#;N|-xwzqPL%ziHcZJO|XeqmKTYD+A0 zWpf_+0p0aL8q0#{_kgFX?ol}B;34T28PpvN=hOfTgW)XGxV{;Ff9qO~OEzYdIa@^M z;3ACJJ?ur%>RT`Q5kZk)8<05R_695`o8&79VI!^_NYbu3ecv{nj65C8KQAY@!()~J zE+umuve^sD{mVY~2h{o$3V$?BN3XiSyenDMfClrO&=AzZY!lwRk6U6iFi%^TIc1#hwG8zz1=5S>%meTKB-b(O_fpS;3E(EV>s$1)z`5P;}*U zPM>|aY`p_0>pS8_gPq2r3XGnx>9^0rO;g!m$V>ge`|0gh;Rhj zrlS7N%AapDP?L~Q>IuvW?wWv#DPQwtle6)T-W@R%J$mZT7?3dn0@&>tDcn0wG-9Xx zSU*-YUP@lRTxXb^cS;t&1+Eaf26vYHvz$*>XOCDTbMT(pGMu`NA(b8MK^7`se??${k~fW;?nGLOHEvGR@h+VeAvIZ{`I&V)&q~cf?u+lx@wPu?}FC`=h6lF zJS(b#BAu{8#CutnFZ(7ACf%@q!^#BwZr#6r53N|H`ud&tac4BGj@3Ol^6k;>`6v73 zBUR~fMqo0I*f;OF!-J*ySOm#~>yhzh*(jSkG2`w^gsXQ|y(@VWm!DIbQFKP5uSZYk zgQnQNLt6KakncOEfoBKw3 zH6ycb`Lxj;W0Wf&jlHjp1c{+qx^;C-Glcs*iB9(p6zg)X+Q$c@>{fnmu9Tak0#y$u zNqaAEA)LEy_Ul!W6DN>!d*CY9Qn&h5;33ynIG5{9wQ{73vcIkVkRZAnl4SQHmuFav9enh!Pj?tDlHbp<*4K6jy zlB79i)g$rr0l~x{Pu9v~Yf`OxXvc!fHHApjqhl0wFhja}VBFD_yxBY-Y}+&A!82t& zvKITsDw%elwpo+PR$9g5z^o!BD%HA`_F#%EMpT%!u_gBUyr0~@$&Lh6Es$Z+Te(s9 z7q#W^$!=ukAYOUL*9pNs1AOlXRT|Y>^HeBljLZ|l zS%pjUrmxDYsSVT5@eBiWU|_(!);&(2kh}84W7&#CZ|5+>Ys>oTKmth(mzr0NioTmK zrb7qSEJyHdvaL*gQp`!E;;%OU0^5E3pYw`+eYA@|Y?>-}U?mlf?CHKD0>ddr$f8i z`#8<`Mx;)Ai@LXwG_QBNZY;v=(g2o;kQ#s^=GzM2Vu% zZ0Nf_y8FBj#U2F7w{XOdBL{gyZ8in4rjvGyapC}@S-UwuDbVItp9w~T(yIZxSEZ!r zDj5s&&Uv2xKs{}EKThuCUiICV&kgu^Q*1`EB^Ka8>Ez}_@SWk<_Ynu;zqUwJat6|O zZtrrJF(*5AKbiW-V(4$0OR-?ZN{HGKv@aoi#`D2d2O_LUpa|eGJ8bAi3!3a zMI2+l&QBa+*!Kq+kdJ`WzCXNx%mR?fY;M0M7X5P5L0=BN3ALHJy2deNJ=z}IQY_SX z6&I}xOD;e+Za15Tp1k|xDUDA&!5$^bEBih?HoL|dQknKffl`vgJJIgG&=?o;*D`j3 zMd?&oHClzT)O6*_PV#~!*`}QfSNgq3H1xYcB^Ho1a17{{>gl^L|2hb%4Ec^lgzFpx zvm8EWKUkhc`{Oh;kVP$4)(R)5?G0+`t%F63+_2n39}u6=I4d4+dZ84dVe>t$c@~=K;KRGUKfp7|{M2NNT2G zG`A9YI?W7V2*cF<={jwR1iNj69QgW=hJ+#dHq#Ic=nM?ij12GV^2}KtC-Pu7U^2zo zAjM(6x;0kTgIwUi{9KKNHTnnb;r#*vS$W`1T%QI2vwB1*H zH*(e}dCTXGz8&IK@z2n*WQN+C2I}xgAEgZz9;y{_@?O2FS54IT^R9qoZC=5l9yNdf z2V4>82c&Yqmq1!ufhNr7WmV{`bi&dFfeRz2a@KVFR8;%4dBCZH0i0;%u>`kb(y&z^ zRR_!0i1X&75DSQ@x`UGSfk#Trb_nThPK-h?@y-$~wDaW21H9v(P791~pnWMG0CU?0 zr5UFL{mu0Ga-{7jgK*+}9^TXP0sihm%}V$20fC_Ga`k}Nr_Gx7SI7Y9ShS|D=2MM198v^$az^L53ePJ4C(_iefn%SQ}E?>zDo|}r*IkU-8Tvkuo z_`3Nvk@JW61An!@^Vg}l)j*8pG*I&{i36cPZ#xK!yPyO7A&*;Lb#-|XPu_b& zZDS?jb;K3a@#3V*wdK1`njUqn<6X}V>lTrUglDVUPz!=vw;-z~^z?GmK@lu(*0uL; z&{m6gGq`y&wPrf?s*5rtqTIA^W`>`u4>-TgCy?K3;WHH06@5mXYJe%^C*OZ6i+Vdrnaz>dbC+$}(7&qb4?i_-HQ*YL|$?5vOAC_A` zun+a*BtYdc_~AaKa7cgLLTX$%pszQ&n=-s^w9~FiI9kX<4Nb-o)5YSn*uR|)5%>>8Bf3g zvC#}Tk~Fw_#RolmmUc$H%)L7^=xrQ$gg@F$>u$E6Db6C4H@7hZrD$G{%q}mg;qEdU zeY%q39%?}1(MLWfxN9QUr9Z`)-mLsNk93{p9E{Ax>wKytZKBTAl^yVpd6Md6$qg(J z8Wj?R4yNfj2Is`y@b zES)9GppCkH!Pwze^HP`1n$32QMN@+^E-4DvwOTkdz-pXTOoqX)*$RN6?Syy*_|@s%2Nm zH;8l){Ir?{vxv|+XW~XjT0~krx+A2fW%C7VVlKC{5(Yd;5)jmcA4Pl56!gA>x$wTO ziez?NjID*};_vp}XkrwWj}gy2gcBVSJqQY)QS2at$LEn}FL;S>dd5M}!E*S@Ik=y< zd9b1KK{rX!$j~-I-1DIBIsBoRoaCz`!o%}|hbNd+^I<}W1XNI20BY444W1a@EE2?a zD;6(9&wRCR9+`_P1ugG+Ny8l^0`;1R@DHF&h7n3o<^D;uQa3od1LRzjvVjsp_8BHV= zmJzp{!L0J$@ZjlmUJ{_9hQ8*gT|EK>xk$7%voltsuNS0w>C;8t$UZ*n@FqG`)V6ql zsaGGVPQtFriZW3#6s={LPb4X7a!l-HQ{Km?c}kYZ-U5y%a89@t9ADJneSe)rb(o09 zG^;ov$o@e<+X1RBGP!P225_oaJsRPLEN?%^{2DSAS3WLgoc>JpL3x)Q5~?GEsFw3+ zOwT z7toZ;It&m3JNv^_Ic|F1oawqV=1e3UDHO1QZKbx~;AL1pP_elooN2Z8#z)Q1(%Dts z8FPXTCz{4=D1s`lc=>vJNG6oK8s8WD{?SCSlSVK-CS*d~quUZRmd`R^W=~lE4(4FP z%n7)BIvTd#G_*dU8bd(~#mUVMBHYr&`&Kv_e`BF4^V^}Dk0e{jl{nHY@6sM6nK&Px zIrpmcf!l|&+^hhNYTFi_dF(s0DK7}n@Z0y_rVfaE4|f1WYEF>Q#fEo*+=KVyMH|)j zF!zcza^WqUxO{SY1s@#(DglkP-G;CBT$B7sJrTc_jwbEAR3xLit=pFg21-Yy8f3sQ zNv=yD=}f$NlSsFg!P!>bD>Qrl6c#8SV^EaC`iKAt;l+Hk>i$?o4Z~H!y{K&2Pk(h3 zzQ0Rjf~I$@n3IdDZ)W<5AkM_7UE=%3q8r-mh1z|i*w&CqMmrLMYZc0KrC8{OBW8a{iMLBtfR(R>hT0#~>|5O{DnfR+ z2cqRR+_B{0Ook7qyzvws@p@MjT+?1qg{gFR3yB*-SX3GWMUt)_T4eF;sjC!eX{XNl zoQl+G81-F#)lETa(k?)xsK>||kATr8bfGec&A(-=7`;0qe*Afxp2EULj5{bF>Yb#B zaxW;}pRe$ZD4IdqsJJ!4Jsgrx+kTWLA8~a$wze5SZX5O&9`B7 zh3XQz3vRgbr(2M7zp=PM^7T<@_m%WZ-gz1d2dvokC#9f{_o+%Wg@?ODLyL81SUR}?h73O0B``@C zHCZY)#Xbel+S)=_?P9h?ZD@h2dbil1$(~|E`3Oubpz!YAvo0ymst^LyH3Ojgx;H1< z+!@PC_Wn+l{P+YzsSIA0M+m-806W;b4=Ae^O`kmq*aud;?fCvO`&hgKSb>e3MRcRs zz@<0Qp^rwsIQs8OscS$$iZ@%O&wQ3IxNlGbdyqv^8^j1d7uCI|zU!@N2$dtm(WBHd=mXT-eYSz)+SJ(OVBCK{4N;1vjxzchPf_drMYpNDOp?tlK zHVRYon(Z4FwC%VlM%ZQB3E!KC=p5-I%%2df)y8DFxObN(dpLyVv<2kyb9h1Y zjZD5isI>^c=L*goyJ3FR8i{VNO>pN|c$5$YjCd2s;5eN_a|=Hw zDb~djuFasU2!g*o_<=uORU*7;^F~BxdJo|k2M8@KFf@%px_I(5A|js8wuiiZpAwMC z@<3j066c;=YUfZ@BAn#ZT+kN}*;yPSv4lE$R9A$fh6bp2ik5F{Mb{?HDJyq#%{P_4 zzCi%8`Z|y&rAXC$6XA*T-1hO@6^>ydV{R9^SE@GQru0JUIy%{kUO@vw;T3lJE^*-% zL(^kIR!+n9AoW);n^u{lH~mJ#M>vk+UDIN^y?S#;gZlC%22?uTTT78YIOUzXI%U*Z`>Ik7HVk)ncXhU=j=tiFJ0=i1JP zf+}lD;5xh=dExn=fQ+8%0hhC=M|b{n!#lp_$6BNVSTt38$zX8!ol}b>iG2)uE=nzq66PC1aHJlM?{p)&;9PVjOM~e zj0AO)#N#{M-|kl5+z=bb_o}YKgKRMLl_jpBbtV!~uhib23nQi5Arin(8=ZYb(8%d# zkrcSU^&x2%N{ASQPhW&|)1=o87B(`I8EGqm& zNswmV@!^o!Eg~{|0jwc3wu$kn_(+DqB&yiHQF$Q5hF@2=euso`^CC1w;K|hy!)LTSB*5pV_7G?>xZn2Ol;1XGkHv5@Z#eX1KgN-=9nihFTn$&gZ;8S<9wMJ;3G zv`;7b_I^0<7+7R>QUN|H#)G3<+D*X>%voC;-5Ghh)_Z!7N?|q}F$@zeS~G4f-tJS} z4`ko6?c*+f)|Lm*^Fd`m7YSF2PDqQSdNCV;wxI8)U2DJn6nmaIej#9>G+HC&KL$%q z;!{ScNxT&~Rznywz}wl5o`r<3ToXn_S*6cF(2G9yH9@!c!@@S{bJGkHxpuyLgcmxJ zf_g9+%QB?;%A<*W9TrkD_>pmUwz0G@O@$^=Pz*cy*J}E)5?=$W54UbH!jwvOPGa7= zf&0^n5F?V|47>Hw@bIJOo_&bEUZRk7Aegi9f+|XpG{#I8!vymQG|kIw*y5|jXD7^+~Oj@(y_}P9#O{2`s5Z%40wt~jgCZ9fo7ry23 zG{v2jte5$`c1xCdx=lVFJq!ywh|TD@R^J!0eTt&6_V<(lRUtP^ZLPvQIA&9b^d&6s z_>)X1*-urR@2zoEbk?%VEc27VnRsIp8l z&Lx!9WQIR+S?0?|BaiT?5--BUO~J^DiCm0j+L6VBr2TAZ!@`?@5u1;`2(m@c`&Nx# zzpvwdA0&5_EM1b^#8*Wl5JsVBm58B|o2iV&V9*Jc-pWrvrwu?)==tK10Cpc}cz*q> z==swU;uOxl^pxqRT9Ec5rd^l>Z4FxB{Q#{Wxh@#T@K4q;bq~f?lY%MaGm2U@r>pF6{)Y0!cCVzlU!T4gRiw&lU} z82eL3~GML-sh~Ynv!PK9!q%bzdRK;x% z-4_aQ$SaQm(Y&f|2CmmlB)<3@FlqFi<-vJ4)eA1q4u-dSA#O(k=qRh<(?Pk=v9=Z^ zKic%zObk+mVd`cC8Ioty^TgB=Ns~gvR*v3zw$5LQ*lr4=u#aJLc0Ol@?ZYWdlrVs3 zGv%4I+ic-(Cf|{H(DPoeunk*s#MZEl)Su%k4fhK_^6Lf1PY#EsJVwt2Fp&*fmYlE~ zkt3YG*kb&S~DeG zgy^^-x;gww4o?S-T|eg^qHX)`#gJ`s9C>9rMp|%l42nFX>JGl`wL{9y3I{wQmHlnX?EM;Y|rS)(_^MR z{12+ui+i3|yeAs`4khpGwk5rKGA987=ZHcgZLvH~H^3cI+4MH|ZGDZoF;)^h?W+l{ zv|%-#`SOXj)07vNf5EA`=yT|lu)n7Iy4Pr6ulzdoMT%jOtc)e@059Lvgry&yK7aD; zakEX%efjP(ultOf+fo6VPYrxqP|!MpT9Pl3MWl?80rs0sOyAZInL7p;O%6#O+nU|| zW*jup4_n^MVZNoslyerVQhN@%q3HA^P4R6VpCz0zVn19W9$8f9I zxS(YMvU@Mq2pxDqCQ;TNIGk6IN!gOY;*K)V)-2*t%k83^P1kCxJ;?XGQ-uXp(qg`nq^HmT!;yZCwDmFW_k>o)dx zq)fOp09{3U6Lfe80qVsnvXX3y+$|wq>`)3n?fj%Oa*zo!^4BDUZl4)mS37YRNmLqI`x{IIoLe9YUhDbC$-@L)b{`epp4e>ldkp3)MI6K=InSuWH zB7#xbp(Q18&ecf3{@+$<^(d1wyBYI{Yne@Z-yiW~UudaRN(_wmWhp8b($Y{eoySqW zOzg3VpFQQbXPW129KK*`ts&a%WHL*)k03Nk@-8yN7SIHSpKF+qngV)F(Y!XRuZm>3 ztBEM$^ky}Aon)(%^_X~*}763yKr=~qH4b-+IUL>=#H!~+#>`nW2JAu)hj`Kp?{e_`3OmA|?_l`G}C zN&;ysMTRjGkq_gXDY0?fvFuie8e?{7d(E9TyzzxXO~F)*FQ(kRN7d6TYw{!I#j+|=UwL^*_dpc)g2GJX3lXB`LC|w z_IrF-c{qzPI_b9#QXJwIWM^Q^%fg*qBlTOpeff7qfMy4X@dE0KW4sONq82Goc--n^ zq4E{!FfH0B5lNfQRML!zZeYMPw;Ah-KxCD&!=7RiEi1oOg~Kz<(rL@cc7v0NY}+-> zvi=0cIarPIWyz@8cZi^t4s#Kr+z?Mwpv&aQmnv_--D;kc4DOu(M71CM7g-#og60Xs z083ddYQw+rMIBn#25N>s&t69&>cr5`6V~CUvw(!-0$ELJ7j)k+WbW=Ono9ZUU9Gja zOCQMz6njQT+U!hn$DZ8ZTsfgdgkLL(H^=19RV1TWCgKD+x#{1 zuI)D{H5N*9>Jt({IWcPduy?j1hG1ein_<}G!gpR`*#m3L@y^2M@yJkgOM}c?r$;^j z5t&vMjptS~*^G#ndrr{olvT(AGU2kqB+Gcr=5vs$z5MxADIzg_DP7Awel@g^>e1sH zoQ1YBw@7t$hyAfr@gry(&J`VX$qG$tIfsM!xN9zJn~th5K?nmz+8}`nTM5!vk&7xr zs6}`G6Jho9MvKrfRjsXY=K}Ro+%4t~I@4Sgno&QrgrPFrSE*|mpSw4-t60o%WfzO7 zwsyF0qK@r0onoxYVUNV&1eb1gjT+?h6VlxaqmTS*CE^QVh+69B)>>)omwZF4q$wr3 zR@Zb~&g3vAk`NAL-c7eY%6}&I(REI;)|7$W6keIKLxiAr;kODgmoPuO z9A@HP?GX1(>*PFE;3JwQ?XoeReThIesY8;KnjTlr+>k2I!`QrHECm&IIo}+3Fs~W> zE&j_Fq9um@)#cTk*`8o;3~@|x%bji={Lk(9$wfqbwMn#C`Um&z#sJ1i`0g!__s}B! zKv%37**fp7WvyVbL}}NnH}XQuhRnlk%wYjbOflUzfC0P%e1LDwX0u9%NWH>Dbl*tk z{g`aOU@^ttPU@Fhics$fFqPcBRDtp}0+5K~YIxOOU=XL|R~vaK342??C$#V-vD+p4 zgTAJOTMCT&y>+e5^>#YHZP6}4I@mjw2jS#dC8yZ2zhnFe%P&d+1leROeNeM?Ug?7|P=io>OHZ4EEypRO4ez)twgVdb7LW)5p zlC6@_Jl;OhjVl{e{@{3RD1QoZ?RcOPS^TAc+O#f4*-Gd&N)J&-xx8;qKNC#PL6AUe ziz)z>?+7PGk9EV`H4q5;ae%Un3Vf2Q_Ss;eewvqAEF!mOC=EQBWZ$1xvY($EPl&g1 z-?=Ek7)?nog(`n>!XS^O!4)otyaVSR)^F31Iyg$mmT`>+ttAl5_-;bVhkBrhOZ5dX zyvqsI16#$E+V@JZ^F8o}?fKmUES0dGb0hr-9Dp~AaDWW*Git?1!Yn&jE3%hz^|pP# z&eePUSpR8>M1SgUWtoN`LaiHgg%*A|7p_G-9jMHUZV1KACmNKskvMMJ_MkmiRQf8C zv%jFcXNFS)20AS!tg6?hAc7nuWXMtEnjgij&$$fC_NPVqD`|TWECE{6Q2?8+9L|vE zmNwO2sok&F@N9e6OkY70(VZy7)e@OL#i?ZWTyPl9ZQju+q3B!+i6}l23y8vOo7Y!U z_U)L___I4*)<(y0{Ej!g6mKJA;cWgE4=|o!rfxij4ksp=^#B0Qeoh%zZ}nme48Y&4 zrF4)I9!jc&@-~#8j<2mdbz{!*7w`UC*2SB{$=^L#?x)tL>Rt4shtl7($K;~Op~tI; z5r(rkHiF`Wi_pOCj?%|-CVpw(xx(~CxfJ`MfN}3tb`U87`>S3)b=PWA`&)@Xiy&p6 zw~R-w{R(9@M_(9X)816%AukR)Ln|Xel9f)8&~%^-B)^CqXt7H$y=NUr@p(NgB+U-B zXy}L1T_yvbbm|hye_&L}`=1&U3ZNVSu>|t^rkQO#EZK}SReipnE_aiAQ1du9KM-{Y zR2aSE|D%3e8Z4Xht)$@|2x}kq1C-Ud?S6m5APL!OKdf8hp`mQb>D7+qR2tH;FY7cYU{B<4yf72OjO8axUD8&8A52y8JKgZG zyp#tj3XMDpRy{_IwpAih1QkVlknFuZp2%p(QIa0JJ1*c0Wc%o?w?84}M@#n|F5K~u zHMp&8GE?V%Ub62jkVUf;i#wZECs3aEcn?I)Ub997<)%}v)~s5haZJ@ex>$3QACsLG zm1}c0#R7(cnME8p%GrZs_Sm0UcH!Tfe|?|(1X@sD*6;RiL~f-lAge|gIJaHaB*=aT z@c1^^+X0_j(OF@|J{c#bVEj8bqva_TdQkVRz@Vnqg!mbv#?g{((dh?pOx^UhJmk!I zFD2~rR&NzH$ZsctMyGyJ%XfqkDH69YM%pvuxr}7d8djJj=y`}U8U{83!K}FN1RTEl zo(b@onFlNkyyp|$g9_>!_K@Ei867NAtv0qw5Q^pN*$ZN~UjL*WD!Ut)T(El~uA<b2ndHU~8S; zzUxg{YeDgdELaDN7L__aPl)xJ2J-VpOKd{3$LPe}i%e#Z5+d*5rA*Fh^7_)LCk68R zHh^DR8$+v$>91lIT#_QU!fHC-O1EpH8m}iuSVkZJDdItWts_E-40~Ou$o3MG5$~j) z>=2gr3loG^Y3EP<2y|ja9?0Wo(Z}5zs}uEUUg9rUYoAUFU-Am~HXgH6|Ei^J z$nzUd+JPt_{nZ<3DJPtdLt&*(z~BII-m?nfVI(k2E*e2v?9=k(HYc9K1!q`7+iW@# z*G1ERgJZ+k>%-i4WM%oSz|XoL5Eq-=(4XD<{&rxNE+O}(59SdW?+JgtHshCLhENfR z@wf7=MhQw`)ZPIoeiSLrvBP11uu8OZjr|}}ldscq*)lveZd=SN0gQ4r3iGk!HZ3{b zc|wW#9qK^@r*J=q%RH$QenbuD@>=kdP_IxYN(9RX@~CzdESZ(+%6^TJm3g~nlZP99 zO-`I%&N4_BBf>iOV=4+Ky(MzxHAYnSBp2<-g#O<`Vx59~f#O+v(u(H52sAk)A|$_i zhH?A+1_E*&N5wIHAF7)!IKE&GVTd)1rDO~-T{Y&i4m)%;Rem`1U`r7J5NyXyh)77C!4yy^qit+)d;H(zH^#dC;o zJfCnpsa9nJ7Zekh{s+vtZ}>UqZw{Qf-h$8uOtJ#I34r267;v&!x-TDmd$XT^J}=dv zyZhbtoHzCrnGbx~Q?!JKmimYvFO+^J=VA>TX`v_Ep`?mpunlAGt=3%2Gd_}0g`NF3 z&iHkXpcyCqy$8lvk;tdgA~Q|TfOr6M$V7;_MW3tYbqLiMcG+I9T$xS0!|}_1H#e zXIW|bT4)-NRJlzv_RL@8Xo;+S;7`?koXf8iO01l}_dWTsEc5<(gophw3EP_7Y&#xH z$n!HuDS@5UBYC*QS|H6ImRGM$aOd@n^BGL|4K+Ab`>crKtK{DzFV%kXE?M!PdP2Fr&Yv7_dJF65;9l~mJrgZjhdr}}pj%5$g~MQTj= zcSF*@8))uOs8<&2bN5g};rd%ecSpSZx13J6Bj)cXCV!u2n1c#O@8heKWBc7@O3!a!39(8#UM#KQ95F~Wd*`^T2`YQIJf`pO}PL6p2z6#hMW7p zN8;Zl{dYP|4KoeL%aGjovOB=f0N4M%hL4aeLb31~J={ARUrOs=#W8y)f9M|R6Lot% zB@5hAGsfPgZO3B@NR$*ka{u@3O|$QlujC)d`xn`ayh>W7#{gxkIb z%**9CO1S2Gd!?Ga4`)*S@BVsOv@Y&~)!v=`C9v?|8?F(h0evdph#>ZO78+{*8abTq zVUVQ!+cj7Ox3zisZm5jWb2%@It^o!uK^~5*PRY6LFR#x4&EmjrKaVVZdTrbCHB&u) zBCILgngep(rm&C&<1g48OmI$t6$FvVY|i85+v7WR5$BFfHb0V`-i}>O`ggP zDL1=^e06@+`Bhb*-)jWWPxYh;YV!qmzCH{UGs~rA2)vv9F0ojEF>OoSy1azI0yOm^ zn1=|us0EPuulJYO5rs_>dtJz|eHmMJb};(7Pc_o_Tm@u1;Ct7zBvyrLaDA0BYKbz` zjmfC!P(trLdT7<8uc@1|Pf~gAtdwxc{QBr&dBb@xs%_If#lK&BJ!{KTe&Z$`;oboS z_`iE+>lmahE?k3m&Q1LK3sGUl%xP(!DZ&~yBISdls?RhyNdaV%%_iS?MwK`7J-BN z;*B?VJ{o|W0&L0^fT?8UV_&dhfMvFVS&H2hyf}>^`WTXbdh(Isr~nY&BGN6N!Q;)5 zNxr_o6l^cDVNP%iIf&LOX}LUjTfnmx;+bH-_xbxqwtGRnc*dgiBx(2NP;re(3lL}e z=73Ky-c2c9L8eYbCpf@l0erPBpuZ#UC3aNMch%`c4L-^y_46eYO^pwj`I35n+T4r2 zkqolW@&1aBXQuZPjUUyQ+@ya%YFpo)gkBv{ZV4OgiVV~-jN2yp%8aa&T;ZmjhXfF) z!H-4KLTf>Ll_DC8e{EM=*sP#965|dh-C^-08t~oWMRzsVEiIw8R0tj|)!XIvfY?c> zBjxquc*;}zp7lG8!+X8Yb^5Wh7BpGbh^p>uph3-R6YH9@+4x%`G; z!9JZ&aq0RTWm2Z>f?;_HONLG`kT{PA*_79()Tk{;%S%h?Q`_VXtVHY%n0^(j2k2?& zd!ma_YRfT1=sUjaO%-2>RQ2=(bwP@C2Y_Jg{CqpBXd}Y2H7XiQF1PD0U&t_9MDSFt zZNYvg`iX&wT`7~O?j-yx4|XQd{H-w|`r;f%d@Oi48OZY5_qz6!v^*>zw)8#dB{$Tw zyt^^bYyFKFl;k%GkN&O%Ktau7A0x&!(SW?bvG$IMs8*E>PHY(%9mwC-rbOS>VBmX9 z(LSq7{Ecw^p*v`<@-fE<3!3@9REKBORD4ai)i$)9hM|G&VXiY*t<&N<00j*laI_MU zdx+XaB4eq~=INyDm>?m6UYA(#S;)^qj2QfB!##yp5{DOMeK%1Pa^p##doLGPI0o<) z_(ceQ`})P@O**Xb7~gdIW=!av!wsCYKGd_?1LCQpf4{j`7V-_i;^RZ-y1{3lbsOi*fS1`0B1>0LX7fkfN`lYcE@N`bSJ(j z{INK@D7camM7yIAMfYdnD-K(*MP7eTdd5YWuuwrMcO}pSk68LQ$v9N_qY+E@pY2xB z+TR~WCRS+Un|sc`X;^z!=01r`4T*KUMMMzIjt`_7>vw5fxOuwm1`wkN2iOucH!&HaItypeW1~>txeq^@&-9X-e0=&sy@|6o z!A@;eD&Okbxy|g=67Q7{G8bTvp!0BlWR(NYX(iIh@sN+*Yj%dQ@;_Z(w=12=8jj=Xybc3ir{sqD5Z3#GV z-5kuxN1V=4~#hkK7NDym51aoO2|K4gsNDKFH`e3 zs6Tz#E(E*Px(lP%2(OPQ?p+KfPC<%}FFZf_l5Uw=CGn2R*_p5fnPyE_Z9VgTnWRP#LuMY$g;A>bNTJ_y=|pbUdw3!3qTE%lhGHty9lanYW=*zIhTL ziyqphZ6~LFlVVb!q-^&5y}VuxTVdh>Q)ay6sANu!ZCQm42}DuK57tSO)UZz zclyYycSJho#amw(GXa4PdX&>&TfM&qUIOWZ%}#=bY=YE{vJmWgs3iKVKFA(clI|j*k~3hG(FdN+(+EYg zgbyJyb!jse5at=9!W)o1sjw=7t*zKor>e?2SEnWLjUzp$rh`<4DfqRJ;1_N%EmL?6 zMt+A93s2e(x!^WP^;Vw|)*MbyY8RAL#NVQPYV5>wYyZ^J?Y~F|D6V0wrCiAnCw)7& ze7+s?Xgwyp-o{$JlQiDdQN8D4WCr%Fh(vn*n&y{=rT7lomgz!suV&B2C|_LZ zm_%s8vP!)gGv97P{xW?cy|6Y*`odPNKaR#4m=}KwpXHI&O^}ZDM;FsuBsWS2;3BRc z@g1QY7+Bgm~t9clRGwwu%5%M4M`fOd--)~&Ec1_~Q%ar#u zE{#?#y2BlM$i%bUPjHKpsU`fj?@_i##pcHo zseNvC*LS}~&@~1U5XIdb$k(TN3N9t~g8_bvzhK^qm|pXVKm$do@O}>ZHkgH;?zVF) zbG^jKXc|tOJo}r%BVB&`BSOEXi@|d?+QO_r!^(v_#xI6<2@wX-OZS!q;xk>)D}1f9 z3WK3QEr>y$EglwiOmFe8yZFYbHf&kgrNMI^QtNfR*@B|b{9p>YZcU4?gzU|{dBJ=} z&l)aD)?3Byr`WJb`bxWK=#g)9(G&H(wsSd zmmCds7z^|y5UuJhYWz(v3q~Eb`UxJ}+pUHk(I7pZ-g>72kMlQim>i}58}!ibLb%+x^o)Btdsy7)t5L^4<0%8(N@Hw$;Mp4z%;#6gj#y_%f_0exG)3DcYP`%@Aa zsf7@OegmPqx212%l8$yTRyrg%HP0HqY_&IN(4^P)T*ZL>a7UqLsdyO+*2q^cg?S-0 zJTD{OZw29(4c%A2yvnl?Gifi}wsAD}o+Hr`551!o=NMj|8XQuT(k~rlZ4mDk+jy@D z42jZAqCgw(NUP}5e2)@(C234vdv?XRju;49=Pj|bqq~9nr%jMy;=7Ci50g_pZob2* za=~{FE{4G0SL0uD_1H(d*Dw;}9P>E6hxhvwJkNSHT{ifTb-fpj;|DwDyR;;$|7iw% zPS+IcN8#hs_iihG^x`Z8tlK1aPxz($77%Fh^ELg z6TG3VoSsrkIT}{tT*a$pbLyl+l76S(ZWsgtkLj91#_g@*UIJ+;d1(eunt^^%Kz+=T zp=rar7Z#oC2EzIA>tdU3jLetE`Y(m3nW|?oO8zi$gYPQ&t-^pCVWf1lnh5%)0ih`X z&vry=fp~K9+kaXLJl-57*J^EJ)w0_p&Zl5}pKpEfldX{90JZx{>u8`JPS1(7Q?)b? z`Brf5JZiIZ zD}+ao*ey}MZlI5@U8H#9a#)?bh|q?ukUnO>2PeaC=*fqx=%+4>4ELZx26CERFvRLj z$F*C`a2<5_+L?~4(W|P;sTMBj6Ut)_|xm-*P zyvL-`RFytiNdPZPSKNWJ$*U>p-hF$qd%16N>413yjh2GyfZL*Oa`4@TS4&)j^>q}C zJQE|iZ%(e76Z&~h79p<|3AV%k?1K|~FS8P=(|$eqN&H{dxN~pNta?+y3vVs- zRGcQ-Wuc$AHItdi&QI_DYCdP>DRW|)MH51PneE%m#+yW=Z%mQHjs!@4F&f`phEXN* zmUd%!@|nuMC&)aD?rs}f@pb|T+DIwCT4`ayf9qvrw{$+_&L!4OZ-bs$mA*J1va_kL z2}Qd@=6D+LL)C}BQnAEpT_u=~6LG*jy+uuBwu>l!cefZ{Q2#%R-*})fvoNt z&Hh}qV2)x`;F`JhM*{MW3LE8a=Fl{?y+Tv_0XPQ}CyY z@fCvSY!0}!=zu1)WYhP0UR^b$vqa1T^1`}q;ilhwxsA(bCJy##5TuzJ3KB?1#(3x6 z4t@hI!%(pKqv;Q)=s7qg0GvC(i6;}t0ZsR|6KTzBXJ5}?SK9>iUylvR+jgvbO$Vos zqEwXME}Zjzf>1GS$ed0IE160_{R6+XQR(_A#ok`J@z8@^RGN}zy8(7}t#iztHOHsI zynFhV!{Z*?JDRYCCjiEJHiKIlwsZUEeI~e)hNF!NFx}FYt>40ZYjS^XGS$Cf7V>fn z8Uiyum&Z?=N4lC%>)-m;gnkG6`6THN?cPW?mI~$?4YDfG8OVrbHM)LG#QkH0@ZfR@ z7k#O1?h(^dA|*--@*JR*c(_=}X{yaBcG%6Hb&@fpWmDBdbp(`Dc;vljjim29TBV$HO@hSSv#2&6E|6gBPbN z3YgQc`3r;ihM+ z8GP1c6t%RJDK|2JG_P}@e2#aN`L`zUw#PY78tWhzIhr?n4Eg9wEQ}}^58(H<%OC;c z#Kbr1eJRYmpqYqC;4^4n6oJhfT5_?|26dap%a^;7fH5#;K#v6o-Za;JY~~s&B%q)A zUTjXVB~&CG0V93^TIWA;w-2}azGwBA(%%~wN^9fcgR_4_nN%B?&W|b!4q&A_3WDU@ zETcN3`s9V2DB`=tVWh^|2#{8tH@yAAMEP5=PUdvz8G&i zQl1U1!qcU6p~@Q;6#E&8&31gEVE}^8K8>m|KWYM==9h>JM9N25;A*P}^r4V9SiDI? z$vdh3@o>tRXY&Ta;p7A3bILM7J9b~!DaPj<`in+Jw^_&V4k?Xc0&ihg_;C25C$0g{ zvSJ+uUoJPwn&<}xmoqhHly{`ULCp}2^ln(|c2kD^;iu~`_Jw}rAJ-sQi$Vuh%86-i ze9-=4j9X1Kr?12G=w?4Gb!rd-g1}FTa!VM-x+W27MZmxAV4g`)?%pnS&5zv(JMw zqYu`FD{40e1ynC3-jt!^zTs1ZHOV5>z_s)#DIw`SSb9t66i3!qQ`h2_hkdD;;I*~d z4<(9rLinqWz8^3hXTwMOSzP+142{Hj5o6kYk9<0(ne}Jz>5nIIc+Ba9A%HjgIEyV$ z2F{J*#W_5^UW-@fbkQ&SH!aQH&KZq0y7M3K^dr~fuAAh-A;ZhYg+)4TSkgrumu&zyE0O+m4;3nX_+U4jNR929W zo|yA}Sj$>KA*bLU=t;J3l^}HLC$Lc`^_#&j%6dWkqSt48h9G6)`+~qpgYkCCOVzj^ zBhJd-=%@`!7xi3jU_XIA=2}19?aH;u%Ovz#g!g|R(!*f?D)8R*o*FWN9lFIYk>X

y0-V)cG>F$|(?aDQN)4){V@QyMo!rtgDNd?KhFoiJR z!?}U@i?wcXV`Tf=G6+yOm1SG;R=X-R4dr{^uVvNCZ&s!g4s&(EI}zUPG9upejA!@9 zPm9IIh~Y^KvcP6?_SG=ow0@woIyBF7Rm~oe=EoLaJ`J2-tg~`G+N4>OGc5TrjEv1W zFDvKSU7O86DOI0BgP>1X^yphU0jUg^c)sN3k8e!Cd`?;6V`8HDFYQYYpVQuCCX>+x z=6J;)R$l7kBcb;8+@FrZ4CN)*LVH8!aceF8d=M_;KO80~AG$J|BThDe%)&|;E7*FY zpgj><@m>G^|BHVedfr|RD?&;E)r!8_bJ8F%C>)5qWYdE;d%y3b_Oezg)o4CHeJye@ zbKFz`JtKtpU~{KJ0yllO6sM1cdkqez@P@gIj$0xHy`#Vz++g^cys{dyRtypux@&La zQ&nNa}I{bqJb~B-BUwdVugC8zXmXjtj}?bEuz;4&hH;GR%8C zzE!?6tc=%Bd7<&h-X2=T3yryq_C^Eb$bbkIOt-!F<;?g}5H&2w?jWkDC|$`vGMdt4 zk-dqLvm22)43_n>WBeF*4IR!ib@nP;%lKVTUc6t9ZfeBSzP`;?BD2%Fm$_UvoT(~P z8Pk@ep4a=1@!Be$zo?IvQc_pxy{7N(tSs`~K5#4UtGiq7i-6M|a1aDMwmgULkTEDD_Z1~l~rH(X^)WumNa%hWf^?XGqV9?(Cz>DL3+8$$8S>Aw4AlQC4n#y_(HmP zjJb|U0i^>5g1(qTG^~>Wl;ba=SVuuiV@`!~-ZwozS#LI!x2gRs!mkJHWJv}?HqnEn zWAa0(7xzYQT8icG`9+`zuQ}1D@AVtnht3fbqf7(MJi-#yvn9D3=CWR+cPWko50$k^ z0#83|4Q1U$xr zA!UGpLMl3Ccu9;RA`H5d#$)Q=Z5)RCwDsR2Xy%+%HHLD+s0569&oCr;Jg`oyAl;DY3@FTtDNdbl41yHfcDrhwmp!N@6Gh>a zqsO#tEYg`cfUrD9cY0eU#Zl(x>K%++x_X&+VNa$yF_&N0*yyU)y~AgL#CaRxc!@4% zI-t_}q3J)NqoH7aIgC}z9_QO_Ukyf-dHSQ@Z#Ne6hjR;)V>^7D2QPDUw>F3gL`;>zHn?USbw)HON*TDYE^-z`71z-+JE)2F<8YyaNH=*Py7bf z`-8-nAp6>_0P~{AZxm%G1_le@cZNqp8z{cBvaF-z)kVZj;E$f63L`wMb%xRp{y^pt zyvc^;e**&7m5RnGv8OfNY|Rg(4dbmWShNxqLv@^2Z{VqeR|*|OMv1@GEg!eS#FyCb zeY_GqG`2>)laQ9R{826FWuybVnBjzUneeEf#Kl)ya{sjj$;1($3CEfSTrGVR@#DN!bX4;GuGK069yPDGqCJ_(=f4@0WHjE>Hkd3m~}+Qt1}Ia;x&ctBhqcIh-mG_U}$je zZuPQt83oe|&EeX}%fxy%k}h@c&mNJRCu~-eGju81p5hqF=ZyzVQ_N-rL4z37@!+zu zLQy#0KdxwFi0;1aZCgD^nMKm$YuOSF|0)WkQD|~CW*`7Fs<9s-Ap0Fr6<;b=QVqWoJ>nA~DkJ^zd8WEm@Efnu zlx%}FmtFen-eN98RL~66H(NZ`aSa>tE*o>OY+aDfch1Pzw>_f6m{00ut7G~p;8Z9L z=wb-p-XdVPZHB^3NAtHii6==%pcawG#eXNQaBsfj<&6fvLrLr_%*F~NquE*<``MU! z^KDSB8h>(Q+6h0D47h!KL>am5t9A{xKU05O*+Zl%jyP=Hf@?g z1MFCyA96rd6p-uhCbMdvK0>}igK_EYMu;K9WkKjE6X+VRvE|v>0i@F*9L9LTF_<;{ z>~B_ib75Ok#7TV@0r&XKQM8T%$MuT!QmGSEImUzZ#A)R$VQSC$zL}T>WgNO_sI${g zL50?}HgC)_r7Xmi2Ac*4`MImY=zK><9EXX8=|BeVHwxv`s65csU8YuJaQ>LRF+FYC zJS38J>9CUX@5@4~vx=TchD6u>B`C*@SI;fnHXeN)E*rDEZ)B>RFRq>BLrOXS#w_75`MqAF6?{W5X5KL?PWXM3yESiv>ShH)X?CkOBWahMS%!P3_V~4KxnuKHfS}oTA9jA82QtODbmrVh|#% z#hSH%nShZoKe{HT6^7@;{4O_9)VCu1yA3u?Hgg|9!cwUo`sV{mO)1Eqtb!9d> zlVVkL*GCMl#oFaKWXRxnz&u3@1!g!$@yy8=HJgC7Z2uZ$kDIeo*vC0K9_YBpk7nPIN@sli6ZsYN9mG>NmZtR|Q4P z=E|YRz&@SCx75(-rI6$cf1NHBq?T`!j6h$lzYUtQwU6!UQ~kX`(eQq2(IEgM#`>pz z!7Hh6g787_V~)jeHx?V%u6MjlYMOgHr(28JZ^$CzF_@lge~6p41tMnlMU}bK6~_x5 z`!ExB#+t*g9g-I)tYD~8(F9+goVngv*UYO`ih8r+ABtjP3(Q~-hJ}vIqR#0f1+UUE zY2T~JMxADYi%2lAR9eDt{5Y4vKJp9-l&b*m>rZn5gmp|agm1=Y)cUjvUJYM9F_I*_w975Xx)+~Dk7o3&E)=IEW@wjtLon%d`VkWU7)Z2Tj79J$7gd7yo8zyfy zKmB)2818*%mkPA&&wE^h<$rL`@0!0j#3aIMC|iB(WwP)7p^PqpMj@FA+{&| zXTPzN?=EE8uf@e081VUqXq4lWPCc~+Y`|oJTZ-e9zY)dp%N$yI2eJyd?>76;dqwM$ z$AYyNdh3lBk)uMWYS}#J0blZb%N_4eOPvr;$McC}_UqIS`JGZyTpTfobgW})I=yX; z2w^Ds2)0yzkg<#4P7V;QEs=Tg#8ZwKKSKJsmNjlk4$KS!gbj1^X+<>1_X`fa4z%;P19o~V8u5JaxG_&1` z)lwO_0SkfZpctEF0G0A)KAX=c-Urs-BHmcL-*PTJ4K)H%|BBu-F$e3|3dFfT%mryF zz@cIy`u@T?O*r{kD|62^u#8#GWL`_~mBNn#U0bpIxLecTN*Yu81!K|#bz_bP;dH{p zU?7w`_tg#=P}klB>}u09S*X_S@gZICV&Z)(@@8)AM3ip%$+C|a;Q`sGHA3?#^h7r% zS&25Em<{&iqS{y}{?u9+LT~YatoS6%EoO$5ZZXMSD{18RWvU%f%W-#Mh;{Un$)}~h zlW99T5u6Ix%Zo0*T{q>l!A+rMz$)GL`9+;5>y4MbT|H|-oCEp}tr|ak-_$799TG6D zY~9`yG?>!SL_jNu9q(C#S+>_a@oH}D#5)aaKL`+ZDJ=?lj={dT!LjcQitmW>a-yq6^S zvY@!Y+b6?EkT&;^cCPxD8zuzBC=P`@+lEBl#)d*W{a}~HCdWS?iGzq#$5lLtgfVL< zT!a;1^@26J(mTW-H>2r5qv|)eIXEpopKw$pH~L$OvMc0)qT&d8ya}V;n2+&9DdQW7 zJs|xO<&0T@%vR+a)d*^N;;;`M&569X4y~=AnodEg>i1%A?C5OFkYH?XH+VP4U@DGT z-O`74Z=f;cp}OFq9Bodt(nlUJrfFqbOZYcJ>6(A)4HKicmcs@U}r%>&pm|3*KjbK1wDL}t^rEK;ql8v%2FGjZB+*rKIiC9N$ zP%s=L{MByXrjz_?^fxF*FxnM!BWmS9$}%IIavi zT~xRHxX>9z>dE(?cxDKTs0*M6{)9H2EjAh(Jbc>YFQfT+*h%kqO!dnbA_1)cZ-4EMRGQtz!D*CsM`HhAiONH5Wo_c!?0dhr6BW09fk3rNMg z!D;-(QBgUu>T~7rZ~oy~?w^4r3+#!(h?LPB0$iVbXko4T*2D0yXuX36D&^sfQZk?_C!b8o!=bZ^78pB&neP2DiO)I{Q>KU=9||bg3~A3g&IAKB5F>o=uh|C`|=&WMsI3bD6^#!2rh?NPtG5B-gz{@{chFL^>dtQf*KF*3TCcevv1 z$~C7xU@q%zkS^2}exiqz2g%niAy~ku_V9OC_8xws>%AI-oq5^!? zhyDfVm0JMar{0PS-icM_dN|~2Dt!vFML+jSwfspfgilH`*bx0?UM;zmYWwOHAr%;? zKL&(rqnVYPRH$gDY5I?twc09Tr~>I%*Jltf9K?GhVyuiP98suH$Yc!Emw-}H8BA`T z5wDipyp^75ZV;7?6;-`~FAb|WU10@dQglC6@hiNOAh*QgO7#yP-@GT9;@oZM*Vzhl z`Nk)YSafv-2JtN&U24>CZXNbG(0nA*24W>3B+8iEn+RLKc}kSd$Mlc>9zb+>B(#XU zOL8z+fz%$C?pI`^jCq9bvr186vxXg}Lh9HF&LbUUEfs^2X+;@+9$=1h&VWnL41M39p6I$*i5P-D79-=zLhRHU089vpE#h-Li1cGW889MJx+1BW0^o;71|(uhWM$x@KS;!O`(C+`=wUWNdKlApr$gEPt#;poOF2tqwTdQx=j?~_S)tW6~d zxu$MS%w1J;8ipe5C46j)`9*fERXFXqG=)}8EQwp`HaST~Z?E{`gwvn8f~&#&*me<} z34nYe*p)92`#=k|#9Gp@Y1y1F!V+!Qg?*FTZ`m$F)V8!D!JgOdUHALsZscBn@a_cS z(6NbE`%Ku_iY|WI#Sp%Yc>@bw28r;Q+GTIdn}n363}R3HpTL(KLR0ck=AqLOXXVxs|60lV z6dLebE&^pS6t#<6hT-s>$W>N6>Z|5ZY8%78>;7(`ECWjpPsj9{k`BiPMFfj`x{^Pd zt12M92tqnBLNAWtS+(WwVPFGexoEjhDN0*s@?%n=0c1by$Sk;zt>-?>&~nDHRaGcW z{wtCjT<@u4El&U4(CcUV4c6u8+L#G}j*w5^?~d|09-@Ji+icZ~!`Gg%Mh-CqY=UDj z_)+{}&yRl*)f|N3@A7(gSOua=VRXDk*xYxlW8S*IxZYYT3d!lbWr?PljrWbjUoum5 z=?nz87?bH~KPG--Emn1+KpG6@v2X8aRbyGU^~*hQ!39qakxHm^9eFXF^%;ElI0CCg zq!rB#!~T+F<52&W4&C~REXQ*#NmQX3hX^c$yO+84E-%b{uiJ$4jO?&C?rpdB4vq>D zWZw~p9+0;sg}@4(Uh~WC3fYcuPsLAFKz>J*uP$ME-B)q;b~@40WljfA(-R|4Lyl-6 z+>+ZauCafsQZ%tCc?B!&9H&&^PtzLno<6e*HXbCp@ER(&(Jp#-8DtKVNE?0}p^|9uh zqXDYq4J!_|*Ru)3)b|J5Dms=nF&qz#x3ARC#Z|AZZfbk~OQ#dFYr%RUSRkoe@D*vz zxZgsq3fZwNP&kkqvyzXEyJCm4coK=V_8EHc{c-V_!6CDZIZd1K>LSX9Jr=wma*=(- zZv?jSPXj|FsZGzIZT-e>JT=!{ti>Z{d8ktVtsfKm_NABRJI(O-t{7PGx1^fISun&X z0}p++<+0DJWE_+0^hGYI*;#Af^1o{3we-@r)Wm}QS>*1sTd(y`!N=KgrOVPRscSwH zg@grVKl;1>`EHOjD4aae2JYG^qw78p{wo=m=(zn((#m<*o z@L0lv5AlH|(Z;k1!TGN0-GXMQ=tDp+mdp)G?Z0lXf0O=;h5{jzQkwzbk4&>Fg^dyA zV%Si6LvK><*5~I0SvYsr0Kvu0-oXcLUOB~@WBi&seXD_@*Qve3D@fBO%Y`5TP7MQ9 z>JFP8QQZ?`UOZ}wb$zel zAiJP*^%qn1XdrIXyiCKI$1C?gm|11xxI3(|5E&cm?W@Wnv}=tDx)`5(UuG;75xb`e zA-*~W2;mAVj4_~Yz52I|HPPJx(0o1PxyqYZ>kAh8HG_9~7Ketujz zzbiWVRBN7&v_?SVD{|{z->mi)*)_e@FM&l`?v-@YTzdmHq+7}W(fmc5oY7A}P7khT*C1p=Mn8-#EgCpyzd70VrFN(1U=nnILyBDJ+|1;UBzwa>+Wx)3ddnZalP9H(5Y zAe8vg64t8KM~Ct8AU_6ihWD1C&W|bNR4o5C>6o_UZyyDE`5ZP`AX^ux$11*lQeuRk ztg4H?xfdJ3YX_dKIauiskcotRrIvOW%^JdUgoqs15X>Qk_PT|V}oc|MrlOcQ@R{Z zn|Hv@RkdT`0hEW?MciK8S;i5go<2InC89Q@VADa8}Ni7{$-X_Nts2M8e*dC4o6+kF2<)N`RL#5t*a1w8& zVVj(HTQB>P9b3K9sgms@^b zM1%rUg`DK}Uq5B44`7t5E<)jY7^m1JX|eAz$tpVC{rES^spKKh9c?FX)|=N>Hx5ol zw3zmDE7iDP=*&3$#`3&#DZ)VPXAJg;#t0}Ymu)fP_)9wWk4ImjF*2K481d9R_U``f zHiSB$TcVbIGcYdVC5D%82piLqNNIp+emZc)-_`k20LHUb^x@g@ctF#D(ily&3Y&s< z1R3iIUZ}aZb31C&^4ux^O(c91$&|Idp!6C4Kt;rM1!bwWkGc|uk|yttjlLXu%eVtC z`AiYgVkTzRT?UPlQ=$>xNXv`+>Es4^Y6}pr9GZYT26tjiYlHL@-LYf}|4RqmAYKhF zm|a+1zKqG+{TL4oOtN*d7s_-B{vT$=OU~cmQalwSucq+Zhc_%rzd4eIZp0wxOB0ah z7QE2;Gj3cXK_G8jN!1r4>yHK{V>9olIHi`S?l-B8m!!%7SwIiG&3|aJUe<4z7cw2$Jp9M5p&acz3J3}2JtcNtjRht65gM{kHxA2&Z-BoFJ;on3UuL#*z>6-7Cf zm4iZWHa(tX2JaGSVSgyHbaZjAV_z9a@ozb|y_4?ucm?!8uYwOLz2X$D3XXW}RUoYo(S*E4ODktC=uiiyWyY0Q2fG@G*AjGg@J zwJdsQo}hI4WI)KO5McA`<<$7`JFyjf1a~=<+!+s5#E;jIh_t(JUvrwmE^on_K{5(tMQWX2UmI7{DibjkvpG8o>vTPV1J^V!1D#fN$;9A8$_m;n|@5 zZ5XS!Z}cQz-^&c9IW7u#D%O0n{3>OaNB*9p12Gqc8`)#VP|Pj;r$&m(6X5wJ@6e5X z2H7*iJ{ZQc_ow}FTY@dD%l{C+_OJ__kB3~7?hzESu(tx3yawNyF}bl25CD9s8(O5E zJ3;gE0^jVITsUNLViv%Spf*+^ALAL^tLK#gVM?$)+>cOMhE?6va)Mvb8Gl9hY{!WO zG>pNRM&_oBrtjHx?AJcL9Zc_4MqQi=z35_$yPcRssj3!hcYzTSS*!&hvmfx|uLU&b z_t>CW1g0o_qUlL*q6L*`y^CFsx&5)G3TeUu3aT!0pZ0@NUcGG=02maD~T%d7JQp{R5 z4`w)qFU}5p%#7Ct9ok?vQxuA5mm9=pNSSpgEo{JY4AN=AC*K11uG~^xzV5pq>uWh~ zCugHS6t|x~&a@ajsIu0MthJE)jteWIQMT>j&>bPjn{3>cm#%8NkMioqLznW7C1b^+ z`$~W*ldp(2Yy)^NN~13qYVd(hYX#_u^`;ZnU)f5%ah5^)?X&a!Us3!@O_}H$5N)~g ziZS6@29KLo+?a0m2&V3Q#j-IYf_u_u<-Z4oviX;4*XsjM@cw_ACjli@TG8zrucSnFp%p^){%9qjrKYs9+-18`CpYQ4KJEFm6B8PUG&%b)*S6o-YJg%*AkDMrvY?X}E~mlk^KLzZGV- zK&hw5c>t+@#Oc_h&){zj-lJs5aB2bC)!zdGqxFk|zpH+cEX!40<#tdmFmXa#>Aoyq zH?D;C0cEE-l_1~}vK<|04l~czcq%yDUg|TS_gQm1&uEpR3GkU^oJFKUCz8>@Ycopg zZ}*YaHMp6>-8^*ghV<2%x@W>7i`vYG%rc?~p2b%~p{yvoTp5z+&;5Z3)Cy?6>u25- zXQ&;?VGR=+;)gUXm@q(Zaq9fW5O^b$ot#7yR=3VR&3{6>(t0`MZr8qw1C>m)LX@a% zzeT^LQPaC70!P@dpEN0c!42Va44n=wbz7)7F#lR_D=_6+Iw_HeaNkd;0y7^i* z&xeroDg5OtT(c>pKVwqg8jfLsAaX>Gj$sPeOOo;lg<<~hM)DRJlO}ErHJC8GsPK{} z7LD`@c(Vif`^Zo^i{P=Y0*>|Ol?>AHL3W;QliWs&->Us>5EF|k{e4lic`+2(0qHv3 zj}0AW@`mw`3#~;em?)%BuZD0J2E9LosaV}w8)2w=nM1fQTy?2K0kWAVsn(H~t-{Y+1oDpQ!YU>O9oZL#Hav0^eeP%X$qPvzKS##70CF)i3 z4+a{Ly~^n|D_-I}N$-J#IFpHI?r{DLfx^SuQG%XXBr z*KiWq6V18gd)c31f&)0p44%fbZ@1OC9Rq4bfoLkW#Gv#q9_#m-xz-aQu@u_9;-8I5 znLeJgw3ucxIV{;Y$1{d!$xv`1pR~aVk-0H&8V0JRc(Z*kwkcjwE%_??Y*#Wgu!hi1 zW`FG#XE?yn*EbXbC+|Z9;5YM^6`8*%8y{2w?7ueu4b`>PM-kyI=64msN&A#;V*H-x zsPFuzV*PZ|&JVe8;KQCT=bDF}Bl+*+c}rBZq0r?$YYg_Uu+s!?ZSqygYTb9g&8I;H zVQLLdQMXHU_mQ83%IZi_ZJRTnzK~uUejXbSahQ!lKFT|LgBtY_nf79 z*rpJM^o^0VmJ2?k1Ltq?{aS<0YK^zf55h3yDo&NF{q9wQ=4>WvO?xrs<$SJrdt=H|xy(Yn7f zz4ZGOQ7d9*iPn+Lt6V=7Q2;$a!oNC@8+37EDxE1XrtO%*eqeDy*2gg@ou>`~2--~6 z_40Qg(O`Zj6miL6!l=`oaAgPr837{eTV;R@AFAR@*8|aVOc^J7$fR!1UX&4s6M4p8 zwseocW-xIxY%2Qb&TUxQEYyqu$hgM}vOL(kdP{j`Q}(rc^sS$~Szf^J6mo6u`XD7y zkf!xFQ?Fk2=?Sk(0y9w`rd5P0Wud$mMxL}WD_5523^2b32gA1jU;2ExgRf=!s~HHm zw}is*kn^<*m8F~n9~;+e-JTT3KJ--Gtus2qPFw%cn<1<|6VZ=uU-;ir!XSjH>P}(W ze&#$LpMxorB3i#4k&V!p_+!{FDrL!LDg(#riuF6_ zC&_T>)^GDV>!Z(s^LGV6Qkxf#^6O4-E~9hgyr&jOVy(XEw0q10jZn{4ccFdbpeb%g zC^}x=Jl!I6(kAxB2x0t+jd9B^#@`ETGVu#UpYOpJW2e3#htl7&O8ePNtq`J;Tz13^ zLk%Ct(#J9vlBj^hF1Ch9yUMZ@jj%q$*xSlx#hqw8mis9=3z<^qJD4Z`isGw!yS?l} zmwf*o5+Ge#qdpuW)-UQJZ)%8Qnzd3E2Y3KKa^{2sq2`B>er>lPWk4ov8_h%LLxu%L zW7apJ4$9MB={r*Km(qZtby}JRn_j*l?zEpgIyi%sJ+e7ShrD0zdRw;p0g_f9R?IZi zDxu{E-36W>>_o1@<7Ic6yaTzlUlWqGw7$jjeBl9VUd&0i7aE|&a2ZFo4pt0l+5Wwv$z~p{Fwn~IB9tsok0 z=5ETm2Y=5?qQK&Ktf!#27aRCF$q&!^)0H0m9`?-8T$`PZFdw2gnzgI4-j9{;m^~}4 z$=e~Sz?Wdf4=>e!cYn39QN4#dU>cT6kHdTfW@JU;^F3+6bKL~TrZGCPgYP2v!AIY3 z_o)viu#qeg&DoFQp;`_*MoD{S1JsUM5_w}}+g;|FTSPDV^)AePUFa|1>w#+wdgkDw z!pgEA`a)W5uwRVTA#JlRV;aLz&)uFtbwgMTOz|j+&Hq>H7NpwBFs3IEKF6qzoKUTf@21N zed-*49DHaT@qi?t510oPjR$K@Ezyn#KjEFb%jdyk1cbeK)7uD({eE}dfME#=t+Vt< z892+1sls(c9=~yUL!b1CW0?Qy5Tn$rGonZ2i}nP)D=kqS-omSsF|jXBMILyKh# zR!D!~ut0OC&7ki32J75{$YoZJIg8CRu$=aR)9p2Xo^@x`H>Gp>s6*V=@1VA)S6*Zl zO=qXXFVGJzMV$T~t*ooojl~vP1!0U{^KS<2d1>^9w)_A5@OVAP=IYiPPwUw$e4oyU zK&UuM<>F(0VnyMqbh1Z@C!|d6J}}$%NQYflSTYFNUPA-dpO`$Ob(`6DyyUIGfJeU+ ztl?ym<*e-$Af6Ny`sLd1t$(|_rv{7vTf>8$Z$|vtd8FTSv4es9CPXG{1Pc!V10jGq zJ(5qXiCwXb}XP8yJAWAoi$*%U#G8;U%TOyH_+F z=ZoGO>X4JNKG^Qci!I9tOV8rj2RDG$MgP1KIDB79*XVDT*gY){So3Q;7Zn@aql3!c z!Bu)NWYT8ZL)49>4P$~@JZa!qjB{-qk?J#J_p53;Y%V~%6JV7 zs*qhOxwuBh08S#5B}r!9G89>YfnTsEr$_h|bFdV*4RHJ>VVrL*bhk$oVs2=Pjx~j- zOuQqRy@dWNMnlE**Sh8i_x371wg7Q~Cp)?({Gu`xZH<*xv9N8K{=ByE^7NQ1vUl@M z8qAwPSAvi7LnL6Q5P^8v*`3RmEU^f=e#}u>@NaC(-gDF;!2Nw05{KlKAVfu6L8^yFI?ej_LM z!5j|jWM3CS?Wzg>nW+R9l;@xZx5FCvqNrK^?ayr~iL21N4umGE2ZUnJ$Ocsb798dp z?gBj~kS!~UrlSd%E~**XGQ*h7zTP7yS?HQEyGeg0(w(1ko>DKOCgEXbiCz~O&vZN4 zz@A|k@svJT@Ih)=pevh!hf}y$+6DNkz(6ZJB^c_!_TfwHoP&7@xz?&wE5G$$ikHqM z<}cAktEMw&iiXNulfw0)Ze1a7|2WtCS5%nj{`LVYR3$L9-q);D%nhOzLwV675y65} z)>t3U?96-AD^nescxWi-++qimr?u?EyIug_oi8z)!7iE_cW}Lr^}ECeJSy+uypUNhjuC z#DbWF@_h^tWovsx)$utTx$7$oB_MwCSRVi0kQJ)mfOF&&puUtS(2Zqh(oS-Y0y{ID zEc%q{a>jwwQhYJ!N`>)G*Mfnb>bI1l@WC)B&26F4r&l@o9~fGY)5JgC&eXZxy8AP- z@ay!y?(dnto4hHrP!X({OgDB)_ViX-)?cOS3*hfX_xj4a#-iUo+g-D!>9n+E-Lhvfn~O#D?})lo2hM-i)o#4-o|W6{k^#XZqeL; zK=M-p?vRcm&4IME^)#@XdOe=WPmyGUnaF{1&FJd!yM%@s|exegQq~UZ-^= z)f2YHzbmr)RD$a80WW&q|K43-eZF5}GNr@^wxK79o0205{RMu%u`lX#X#UZEl8HnW z#CMvOUG~{tL2{qr5*fS5@e@0;rDtKEVQWvE$X_63U1GqSNs+6p>>MZ?dc}_5`pQze#zIGt&bm z@k@58s9%vL8+t!rBw^UVXnaNLm>5)Dx`&Y$P{M$Vhej`ti%VS~KIBpH=*bXk64TAu zW?CEZ>Ci}1C=p?>qeM?^VeyNVL{jQ3vd@d_Gt|TU7+Dev2&X9GJ)<(TW^9rI5q|wG z^@w62Wtjb7JWz;9e_e|8WjjBT9f|p-4CYjgYbKm2jt^%y?kw(+tAy{QyrY*pq?uuZ z@oAMoMg=M~DQnBc1vpJ4SZvZjj^~7qBm=F@2`&+T`*>5#{%?Q@zSf0Vq3L| zUUt}F`;g0Tp`A4%Eo6~tzTPu-e@?Q!0~1h8F_zs&WjP?B0FS4Bj% z!pG39CLs$58eMElFv?+hqyx>JEZ@L4W01whxGy+(M;-Kf4KUkdY-0VU2PCgmwQNq; z51uvGc^wCdaB`DIEiO{U)LX5v%vxZ`sXV)opM2VCNkZLtmE+#$GT zedA3fEIqJ9D!Z@6ojtg*v%ypxbhrsQV zXZJ(G;P=PM5f{4cZ_c4Y&tYM&>d(Z)dNolD2$+BcO4Cj0r6FX#P?Lm1T`kt|w~ zsW(zX&zId9z$}AsMvq7HyM~QcF{h=FARgyHsU76+k5V5(dpQ32gVMIxWkIQ|I(RgJ zNiAugIOUD#lT|UVg;}}#;FQYe7H-mvon`V%3BcbARTAbU9EQ&#ll^<3Vjs$*aw8|@ z`kVYhw02lSWOT1*nA`gY?vW?Y_W8aH{JJr@a$fl!9oYZI3y+`NR1i{o2-5wanfhQs zH%7jU0N<;LRDJ!mXwy0tRJRJx5d?!R7!XZT&orkG_L$_WY0pQTI#Pk&aOCa&y-MW6 zsaMO?Up0(I@@Bh>3CwSApggfR`ER0M0cfiHMWqIlO`{{jpdri zD%yOb!rp+jzF*R}E1rqSD@1|0m0_ClcsL=>S~9-X6QJkoaHrupuNH&(jMv!j5myL~knqAf`PK1g z5^NE~gUWF)G{XQNSxclu^v;(NhuuQP$W9!6eg#}LLat6){c=UXLVuhxqXQ*!7Qt zC`4+W4pG6AtDQazN{v2n&5f?ZTc-otQmS3pcgn*En1~3NhcX+qG2ylJ9d63165f}| ztMFrO4l_iceON~|mqmBPA3z%up2!%}xc|k>DSwlPNjU10C-0FcSv*3(bT1sCpxhNR z>t;T4XDnUSed>iPwjgV=-+CalR0N9Ly)ivK8N4|?5tHXGs%9iKu?PdhK-9k2@qWHm zCwW^@^U4je^I#~aF;SOAWb)|kg^xiX_kXvJ+n=GY}>Rwj6j8$cBEi3PZ zuyVuw!CkCX+l<;`#12T1HlMK1N8v0?mX+F1pky3p^8+ur{}b4{VtkLcQWkv=Cj4#8 z$)fLXS>NK5zbFE&Y6__Kp^YChN%`{puJ>u%@py(Oh4Kh<;E7Oh3~0smVnL^o(d|WkEM)ao5n{#T*cvf(q9CQxoME z(}wSJ67dU@`Y=WSg4HLf=Gl<)HY3|qlqSTjF+FUWcFStpT73H_=zZ*tbs&t}80vNony0&wcbus3VWy~Satth0uU z5vvd)NS9DQk1D0b6Kjo8``kF(M_l^G2Zjz5Qw{`2{ugrkVx@njO|Z_TH=6VeL8-e4k&Ty7Mwq=r)l7y2n$6 zoQRz9hDhX`fBoRxE6J8@Np`pG_QUK$o+1&}+I#I4z7Is8F{w{y@fIsR#DvcC5rr`Y zsj}|ro!MWd2am$Fvzx7EwM2`3PGbRz7X9tr)99iYtY1sQB|F;$4+&?sj={X_#TX9% za-wHe0NI!{iZmliJEd{yoi`8o8)&qJytvl&VJ&CKg>tn55$sqM?i`_Wn~vRnEVQ7E#533iCjrUzq(Z7+A-7-1 zPYkVk1A(_T@cc`$>Ey1=5X0*_UaqRp9*8EsJ_-7`B!)tbi38oq(|#I4A&_Bky~9`B zZu`l$!V}qmu)iq76czr!n4;$c{FaUAYrv~Lf`E(hiP-dMX_c6BHbMwA@e`JfBiJRV zP7i0!LvNLs2j>6W0~?+CgDnfGCt~9%jE^rj{(4>^vU3s|0!J_p9V!YI2g_`+4EZ^> z^x9hUhxxfHV?qqu!?H>1mcR!@zkg0YaoGBcsn*6j@)-#L{_vJc99aR-ElJik=1Sn1 znWxR7Y?}%FqkD*SioYCf)3YUsB!wEh+NS62l`Vz(0b!B5Wr!K;D<3y^LXGmP4JR6q z$C5z3FV#|FdNm^2ts`jn7BY43tPpd|McZ>{NK^(dGlB5XFKc!%pq2740Q)j6LncuT z3Pxite!qFY^@VAX)T);EV=x+}RyrpH7f$wOGA|6LH%W#LX%Chd&Pj>6(hJmqy;ecJ zK&vClhi^$Q*@qcJ^paV&l+c~~KxLcYk*^q4zDY5=;9&)598 zLI~hLt=!8khsgr8qKp01?FE`~9JeZ3@)@6tA0U+tuk&-Pe(cDI?MQL-%KdX*rdTLA z9-+8gN=ljlG~2L$&h2L%9wU(x1%W`agBX(`APY%95U@g6G>#Gs9M*>!%=?oQQ)f$= zkkGb1)*hEqOrPTpd*lT9#pGn1CSFTJGHsM^Bj|b-@!uU-MdwO}?>b5kgz_zCg!^?m zxO9>sYPa83M+Sb>&;_Y${>B9lg_1zas#u|^*2iFc&OH#Lfutl8x9PRGwFC!xH`IsX?CG+!)ig>!c>90>`CbUn7v0pY|AJ8xWWTOr3Zz^$Tnkoe{ov#rYPfkoitM0&W%>>9g?u49<)+Iu%d%) zQt1Zj%yD~$6|+gEtucrIp${*Jz?-mcm76!_Dee$Mo@oX}GEJshs>n^;C*d1~-knBn z)(TkKgJXCO&mX>6P&jBZs3dpJA#P}qi)>)8Y58#SGPXvMtAkZ&S%|^7Z$qC$!Z1a9 z=xyysVz`4aMb}e@XB1c;z?1yYRKydN%4*rDBmoz!DtSNdFez(ToqSkPCS@0zfow|e z0FsYtmR`bNm0_gUwyGXX;?A=Qfyb{kIL0=hTNgm;bs;15)vrDXNAeUU7yp2O<)4)= zSWd-!J6TSd-VuPeg_l2XTO9^p)u)2+brhrGO6tJlcH< z1FdVHU#O5@k0gyY{mG43wPh5W>GUPmwxQ1HIZv9dO=o5gq;6&7x|S`(e%|04+Pow_ zB5G6;TJ={f!YqK)vC?9dXB?gc3D?=g@XxspE-RS1q?HmG+|Y_tt!&=+8fR>NvQIit zg#~eTw7-Vouq8hH z)~%XgoZy)Sb3DfX5V(YKH7>tvzWrdub`_M7Ds3&RU|Iwre1#9YMUl55m00bHnESwX>)JF_|9uYcm4e0sc5I0i9)4|n(r~C1 z;qKFeVv`6a=a<+b?xfE2dJX+V5g=2UVuz}t<5bGe$rjAd-5+$1mHQ+oY5RnX!XDeK zXV`d<8;Ui9cb^1=k))0t0S%ruEZI)70BIY@0bw(^Z3H++4S2X`j?36mZg?CS*L|D z)DaU+a?|qW=AR^1pGn8+=7VMqp%D=;g<#PxB4Lk}x+gSw(u?&0%p{XpU-~1>_B=TA zlE#kpHpU*L^q0gIeHdU5Bc36(muOG;QfPj!GvtX6mJCDhWmt*US_Lo-!YCrcrez9) zRcYXTA{FDxlPl8>sbMniNDmQ+GwWuI$@aA4XXN zi-!k}tQ+QgW~*HNx!}6nK|p?A@fL1AdRa3<#+%$#R1%-&!veoo7T*>{x-ZUgRmu3k z)-@SOvGU>$R7F^fl$EA2K3NhwI2R}lX~vq5$$*3Uw)I2NEH{l2`y)s{vopwWm1OT+ zy03@Q_n9}X#3#Ri)t}C;B#LQNVYxf8G(sf26I}9$>*?p}x@g8x`prrO0tHu&Kki01 z?ebx>{pcYsBwtSzD9{oH-GZ-Wxy!0A0+!WonEj@4Yt5zWVy)yMRmh8lt1o|wE2$B| zPNB7%zhmk|?@Iug{6Z-j7`Fp-AU#S$AEVWXvPMenH+>*yTS-{3BHZ|nG{#a-k;?jG zDq4cp8)VKdsR6M{J6LO;Xb<2Wy6*XG7pnQQed?r^wBrN`Yy#GiKzEX|jHTylLqtt~ zC#D`0w_JjeH|a`eOu}wKdV$IA8T~paPut+n$~F1WoN(~|YFW4ou1pLD3>E&T`!X`m zVC$fB;6S59342LhtV5IPKeujbVw#2^ap_?|go6oLSK<{$(BpXfd#!zfZW1nksQ2S@ ziS8Rz^YEnyaaD$&JXmyXe0rk$lw#=O%St>a>ZIr<1CJx>8EvxM09O%4{M*w+3@lNt zHebs3!L{zb>ZJ-#ugphN$9i>sL;=xK%ij-UR^xPtXoZM)go0VU3}Mqyovh``E18XR z;;D6VIA--?opVi#ewPyeP5L$n*rw_c4k|ih8memF2VubC{O$`E2W^&v(!yK`>D}&; z$l^i|O7eb9*dC}U4nh;fYM7;`)$(13}FI=HKx%&eFvu5pP4kFt4;Ru zhfzc9<3A;9a71oZUqIw`7tO2=FQgiM<@TWfq}y@&jI|Bso7YzcEgyJ`99UrKO{bd% z7o4EdZH`eg`US3-Jh7LlaZ5;{;8^>%j(;WcT#2cR`^q9DNQ#Rmu39sjBWmg0B-%-w znR8v5`=5JdWou$fyXs*=Z%YHwNYw~`VU!awmtCK6_OWHCZo(p+vOJX3^{8*Z(1S0F zs^wMMu8*Asr$!wx`t8q}_*lU+odWY@SuzsfnmLNZ+uGPC4Zjg6I%SA-p9JKI(KgV_ z)TFtVSgp%8H1FU~DdiwJZOD&Dw|f>mj2B^s2jK=Ct$GD>Ql0dDypclvbk=VEB&IfR z1!8XseSe7*A+Ka<$twHR%{ex-YoO#g#wY+DT;W~QA`z245EU>ugr%%H8!bJR8INt- zoRtV7KU`sHLiY}YKwI}psn^EJ*V~l&uSV(AAU<>wubD!t5uQb+3m4jCq#;&Imo5X9 zy3Kf2sGOOQeW>WUQlQ<23At#N^O*#zrtXiZzQME-(HCP*Z#h(Iu>n&ANlr_Xn zSc*zTm%*ZT`&)}JP_iuVJG>z$%<-9fQp<=yuSwY7E>uWP&?jiOtH`O@ezJ8t@pJCd z@&Z8saxMwj8W9aH7Q5d&Si8*p^|bi)qPX5)i-dy*Do`t$z$0hsqQgQ;=gomJFTRqu z0vgAB^{5v)L91Eod;vfV0$I$Wkha$zI^T>Fbo>(p*sC?0&N^SqM9BtIHfJq-`NOt_ z9(AXKrZ^&#>j0O5t9B=O&vzxRqoA#KiO&P9+CL-?isxLCF~r9;24U0BlZfv^+0~-- ze}c}){BgpxxSJa&?6xPY$(OLQPnCJz>4-)7Vpt8 zUg7=hMpDTKK$h2#ydhzf_0*%XH?yL`VL&cjA9*2mZGy|KFnc zKV9j6s>1&?W&bIP{==30hbs6F6aF6}_}^XVzpKE1H(~!Sg8r9<{4WXkpWgX@YR7-` zPXDGI{?!}*t2X?b8~xP{{^H7iam7Dd_$Leg_~joz%z3*0${Bt>ynp%K!xf;vLm}e* z#?e30g`#TPzyCkMU)wLg`wnye55Itahy5c>K(W6=a2zEc0q4&uoWuwcf4=>JC*b7Y z5jaM|$RF6k|MUIbI>-G|40HDnzjX0BSLgo){vCvX(0>De{(k%T-;uvVFzmnmcL@GF z2!9z@ zwtzno^8O1#{&iyhsVEHki=zJZ!u~`c{7mX!7Wr=z`e%awWz+x9i~ck5e`#v|*A)Dj zlD|B4|Lbc0R2A~qruN@Q*`F!=>l6R)r}EF#{w=ro_f`B)mH!P_|Bq4rCms0LkNw}f z3xCp$za2XNu^su7&irda>_5Iczjo=@BX7Se=e+obU$S_O|NhqnuX@bC|09W)97q4# z>s`N4iZbmclC3XAQ(ulzOlhPj_C-*XWru%Nj7hp7Eg1oP?|npnz39C zu}BZGTvPQUFBdEIP%gBWuXIyx7gAXY(p;J{z(12~yqHI_MActLHC0;rQVeHuEN6Mu%C7v#S>}5WRT=Ch5{o}R=$2{hs=#sO! z(*!wIx_QU->6?T3i#i^gQ&OdUWu87{JG7qtp7~N4<{L`1sWSAJ<0*=J=76#!OX5_Q zGhLrQrCPDM+vFu#IMZ4KzcJ6Gn11uDdmNr}Ng!PfE9bceTYg)$u>_VeVN>9qasT)O z^$kV(Yx30L{tV*LNmtshZzNIL%(-B$g@NQMwObsU%cp(`Ou}z*^}e zoAitq{H4@qoD^05*z=M0IqomHYm4fz3CkVuajO4`UtIDptUjSquXvJDiWV56{GUzr z9~uq6C9)kFs$jWRcBfxnBbLqOw@&;3>v%Y8`k?n3RzHK@4jpW9tz*S%Dwj zx!$fHYeCiKRSnr@{lu9egF9GZRjr|!rMhs!zcq1kazkOLcvhgx6*eEvmp=|Fmizpl z4xUydWeM|Pn+^||$BRb9I0ncefwrI|>S!Z>uGr3B;ZB}vPBjzvqGI)w27RQ?ld@-votrk|! ze=nY>&;%-69v=4$eHpfj(D(&?Co)OL<8)3K{22h~=x^?WQts>XHZPK*3H;PPPMaG7 z4|Hd5QgEqnX2S{R82O~F4PRD`ve+9eZHq;z)#I%jiDF`hQ%_H>i_~uD;{F5Scc(Ae zcrNw|SxY%U!d`z5OwYdG{Y`CWMsAR?oNQ&+mJ^U)_*&e ziS?kUVNEUKdH9#C{-;f7uvP88BbFSxzwae6!S0PsAG;x2&%rS*M(^qns<8bW7M9`> z9N!w&qr69;tVN=k(E5f3A7H8P>>j1T(|ItWA+Wsf11@eg`mV5fHNH?qNXp#yM{AW0~ydYPS;l8H8dNX$i+EfJ1)q1{(C0m3>Bm%P7mX zNQr4(hJc+JFEBH14)ULORMNG-i)eeLDvIs!Kt_hDl;BY>U z=`+XTDtHnx!_G+P_L#*N)MhdY1j$O;{xZbv-XgR57Vf_20P5!+QGXV+>Xk-v>v*<* z?nXb)J#fZiq4NobV|Y-D>dwORd@kkZ?veI!@h4xScab71kdvSI_K<$=2(0rmEy$dm zdFV${^t6RHW7)qHJg1nPx$5%eRndxV*jZ zX2BCZ?uSC^qB6sY*s4dtFQswHy_~$O(N`AIgEVu2_{_vy6kLwF+)$$E5~BB?#Ngg2 zEjIsbN}~q79Hm>TwayQ{8}B{JNb2^1e9K#OJR|&$wst~NZF}jDA?);{!J9}eGKP(_ z45cLV-UwKEANk{sieAQ;?+7`7GcF0rF=1tpw`sKE7~2f+9KMVEXab4%!O{C| z1AL*$=Bm!w+3(wzmrZXzML&fi1;|bnz;{d-VhAP|YzX*~Tu!K;E=J>6xr+q zW9@y1IuDk=x)PP?HCC66o5F-{pX%u`0=$uaqFq4!-oFfi>ZMpQqO> z&1x6&_}Sd=gl%NuGhPHK<0)4NFU!*#R_rJUM=9{5Td=?IuBS*osODU1&JKQln?Do& zYXkc&*NJ>T^BwLB_^mnjzWCWVc|UGh;qNrg=qRjyo&$mc?&2|T|0R;ns_YNs@b#@N z-_r$wohXnlt!``_Y|7h%=d+cZr4pdIe`$x@ zA@*}na_7{tI)%TD3|li-N5m-LKLP4pmp*wBiDxEQ^KqtWz?s_+CV#Q^=Um0<+s3fd zc5|PjWc(T2q%Atsk9+JhepY>jVXnL1E6H|7--NSjFE@cB;v4e`5V2e`wXS{F>jvn* zBR`P%s~6owwpL@(MMop}4gQWe-C{1eeX(cyb~s+(WCW}ZWs0w!$W;1H-?t55(6D9R zuu~G*J=I|-3ySHnViJNc<*2=2NAB?(8oJomid7?zk|Y8ROzOBNh0W_Z36l}nX=YbA zido=l8)+#*z_+=v4#SrZVGJhRIZ5UBPs}W2%ZA~&>7PO?t|d9InST}s-IY|rQWlgNcc!=ua&>~bsLIPLx||XMJR}ru>s{kw+jCFG5{>4o zKdAv5e?NI(@V6(AC{&N|Ruqq};B(97Yx1`!pKs3SBhB(kNJ3)JTz#KkWerUl@v~x^ z6Unud9+#K<*$0lLs{wJuEQO`zkS+SGn`46qSpcvS)ETd=3)-QTi_Gs_EzG(*W0g-mSH@N(jf3bT2^(lR(if3}_saQnb{+1bME2k{%pJC@N($(e~e*@QS z2SWb+HazVX0n*q%uwMm})8*b2d?oTCJ`fZl(TaWMpL4`QxEIuBK753CO-2{jeB=Z1Hq0!e zOB@`M93O#Ear`p_p&vdZ0+( z3Xb=(Q4RGG%Z0vy)7|NddGe7HGF~Em^J_l2hQ9hb-`ACHNwK} z`*+zV*g`%`$Nx?^T!w5Jl@&ck^#I#-@@hXaM%*+Ai!}1F7J`RM*^ZvH?H2yA^vn|+ zB>WBynCmUHdG=}RD!_3gp;hP!t+(AkE*y_@(~z^xv-!8>Bl z^Fdn@JI-}cYUw?JzW34iWxH!Rm!qLwY?=N7kI@$LU61~(AW1e5*CNM8PM}}TYZ6gf z#D4FMcWyhGZ$D&m%vPV`0`vC+rDXe%Hg1?nyLuhWxMlo2Dug#H-_$kyhYyxfj9@@i z1&;7auwGK^<|Owv1j@t7(fHgNKjs>nRa1|^xP9LtrU!?w8NZ+ra z?&Ymb%g-_XF`wK_ZcHB3p7ILoSqunK#$G0QfG<`5RJ-oqJ?!Pb&oV0Tml9~JPEFPU zx-&$W{>AiGjqrtZF$j;<4T-?dT4ci~&_6Pp={q!H$KBvyLXXNpl66D~_scB5x%r zzD3J6eZwFI;L`}M6;vO!jFceOlN1boox{fRew)Mj_laig|K)P09^jcmGX=}4ZY^xT z&fzeFjxwd7j*497_AM<3c5axh8vzd5;%E2W#470GloobafM*Oo+vwAX>R|JJR)Pe! zV{~yhZ@NTL5AO}jZn#kHF6WGMeuDEStmWP)0xW51W2+O4AW85W^E2Q++ zqEt*Tij39o!+l}QIdoxMbYg?yB$nt!3jdxF89rMiNL}m&O&?&Hl2`^t!%lC)L(jkat`6gH>22PCnsA_j#BUFru58v zWY2nDEnvEU$v#7Moy_Zl@=d+qb21rJB&lOTBijK#`74)U1sqN)jg`tP{>ocvQkgZ!A^j|ax2!C=@qO;ZTR z7omqG?p$24zLQ13V|{**8P8zOF5!Lv#7pcgLmr0@9`nI!hG#E-gXsV(d7T96o9Pzf ze(1Cz&7mNqQT8w*!y8?1pWPxr?#S>Wffe*mjGF|CVFmGt!AoA3^GP+x9pX1QEH9GE zTD{mG`}h--MsIAvtg{xkTeu})b*~+6L)&xkuC^{D&GYVWSB>+iTKgDr{A_@iIKVpDIY;p0Ky#OI zD(p-V2n(aKUWQ%k-~?`M9`&as%BmH6H44P~@gjIhd=T_pf&VHHSV;fIV z`Vc*Ezwq+mNu~WtIHF!^mbZR(n*rgiNH^TJ(7{y|L^&&GQ;mS9^CSxLxS@mQUKo z0iaD%XICL-Uz^q2t(rL|UxCt|huxGI_haQh^mIRU83Y_Pf<`^D$k)LJ|Lj;HI~|bu z@jdfeBadaE)>Y@{+voT1V+~gKeXRi>y7g*Lq+%hT59ZlL>$g4gKHh?#dyt`jEW*8l z-q&`%5&a&DuU>Z6KnvWkZNsqIeRJB|y7kvJfWmnh$oZwqAJubvtnDMq@QUenrgb17 z!u6avUyam~S&-l%50LXLd8(8TE?2!#7}PDNSA0Ze@p4lA7mn2bv^V+3gR?C7>*u$@ zf(GTuzPpo5gkR7t9d9yYLx_hX&i7ZEz%r&2hK-f2jCz<8#8aP-$hi#qwVTQta`guL z&1T8f^NoM`M}nvE?jL_cpq>h^*~)zZfx==0>O(IUrz~Cr1C3E!C(yP^M5EJxO5=iM zTJSKLvE|!vO5ao&;#grLCcB9We=U^{oDgeUvq{t@Ble-%JE*2E6dbu;t{5yX_tDrdN%&;>xpeC0x8Fqm zEVuk=gIVz%$VLxw7yp@?2c@AdsYO>8mzPGMgyuH7e(e!70Lk}ZbmQ{S;a+Z4FTxLD z#G*Me+=uI*-KF4k{NNBA=L|E+taFwua)@EcYa(}F)xDY9SD8L?e`9a|>`3~bw771O zabXQ*cYc0z{rLsSleBTX8CNFcD3)ma3N)j`NkW;OnGO!H)`-p5y&7ac4d2*M{2&`p zCZx=|z%Qm~UG47z69q9lcF`Z*<`4B%nl|chHX5h$pZ@^m#FRMjZT9uX?vJZEoYubL z>lIVf_vg1knl{-Nr7CDoPH)b$rAo`Ix#BF(18!knotGNc@45S|DHdqfykhv~)d1=M z53klyC!6YcBI>LUzwof(9r9qwC++(3i6m(rUAo`}pI*$q2tn9}H|ILRy;`R6Iw`ug z^Xw%w^3u75r4k_o9qAfn=HqA8D}u)k(hoOQF5{`w9qPqz!ARe3zLQe9_T=!^uwXvd zntvU%MOv;>a`C*s1v1IxeZV}=duSQp=1A_{z-JqXmm70PKwO4*O{gT(!4}Wn%O!Am zS2ie{3JYs_hP!C$;!NPGMNqjU|U0)A8Mjp5p>b8qzJs z&(-u+p-FLs&Fp2w5XLq3VIe?lwtit$Z1J<450A@sd{-L_EzB(<-aTz`jF)%%n)zf@ z>&3r}$|?o}t0mWMr^bqToC#rtaf&Wz$F@-wD|p`lAq zb4mvAD8?(40ieGuV}ag`jLsey^7T*-NA~od83kRysZ(%j-~&L)`HTL#QQSOJB+r^GdGAXV7z)>wVSM8 zK&t5`EoC)3nKhI0qv_*wL-J1ZB#@sb6CWlEKwt3;y^R8I-CQru01r> zbZR3}!M>i!SV*6f;QQ$HrPj@|vPvMn)JV=v)+a53(F)llgvufW8m%55H(hszcNODo zcIzk%AKo`;b1z64$n;gcR!3-j)p_~mxgA`Qp?9x0Dy(PUkuFCi1jh$LC15FV;x)FW zV^$m(x+#fikW^;#vBzH}Hs6U)p$W~TP{5?`MRmRwLgjO6;kwpM zg27_HxlAW8KB@48q~0{m4NO!oZznaNP9F^#!KG73Y-<2GPY!=T5|OA7w_PTk&4CW< z%}`mfapL>*6X|1$hyzjX@Ssg=_xOKR2bqKdAQyrWZP{m&uW@M$kr;*1xYSKtNnzF_T+|@jtz;_3Y0~j=?x`3 zUas$YC$|>0l`wYbr_M0{sCq^e5PvXGf{pUA-b&bPS7Qqchh4hmPvDi*zUn?cx74RZ z*Ce($SymnY%h|4io_*JH>FX&BDQB=`f6987e*#Fg^Z`hemY;6C&{0o)9VmhiP|H z7qjLsz;73`3hwY>(pbR%B|bnw=+stri#K#~ha9&k+~}*s7}0C#l*>QyRRF zbeVPS_KrndZrbp&|;H$ce0Lj|37CwEkdtvaEX zS{oFOeH|8?f;?da>Kz2!uYz}8DU&>XuH-cqH_^+m4C5zY{B?BpP`2gVf3~|tqKkMi zKCD&BW|SM^(2|;TpT)G^rC^w|prci3EHMOAf^~_4M{n_CKZjsdsnkxG{MOj^^F)<= zz8Jmc;ti*wR+PeL?(22QA}QFtK!1fWw%$pHXd55T@WfwZeJXRudSdtu_Pq_1^w~ACEucM~u(F)VpD|(sL8^ zP*|#_8Fk<_;w*p{hO5Au7R&^?VNsLP7`OZmf_|`(n#4`VRq8Wq-jjFE1;w>URiBLA zA&cc%w!?DC8IZ>7=$=nfzWTgBb<|vP^({#UV`)=(>2f@2>H9n@v zY=Bi}#!od{kR4)33unU9XT5r#ppAShn?KPUnKpJ39TL8z#BQCF%^Ko?COVL^{l0=Q zH*FIycw-dQP~znp>WRWZt$-M@h(wB0V6`sPLs@ti_0Bv=7QlP(<$g|afDXu;*bFIi zZ7&Er81SR7m8A{%cteEg?OL|(q*>j5sx{vv2oHDO;bIK_`3TuchZ16H2?V2Cg5mJ! zrp)ar8c$#sSN$3uHNja$XO-2iXUpydnPy)#{R@%CL)umP?j8zbQ%N4O)kQ_OsbYhW zf~+1=9V;Evpt*M%@WO=78KlQl_tcoXLjg7AV9|1`jhG7OJp|RN%CO+gBMD9Dksv=e z-7FYgfvC3Sok%;Pk>-)8Ga5cd?~5^ybN$HrIa_;5mdYqBCF`5H$70?vf$6sa)Jt_W zRr>ZC!mO>TUM?gw4qmL%4xp75!v+c+)3nHDWjk`Bn(Nmnp^wgSpZ%?@uI++VYR6oH zshj#~P4Tf(W5k>rR1e|!Ib&pj5s#;7kIT}}+E~5RqrPj`{yLjrqjSzw=dL~*Wi_&Z=laO)Z?p+Caf!z5G z2lvxX8ZELyXwoh$)NedOf9y92ro+`1q}8R)eij2$ut5USL)$)qn(M5bu$&H2r=*@= zR$GVL7W9z(j_fWp)};8si|Qq?Oe%H2mrHAX7nJ>P&(zH_eq{Ram+TvC))~I?E>|9> zh!bQY=Ld(}l^x-0>Y^gwsGeson~jCnQ~DEHZ8Yj6zo}OD7A%2Iup`&))QU8UD)KIM zsY0=9syU8jjNH2Yxul84@$xg{Nm;9rm|&6)ih>rS6uQBrMv|zj3q3*7o;O2 znh&8tSW^#%c1i+gH?C;~Q!T>FXAlV*Sm&&3u`R`lXl75=Lzz#xug13lm-F(uNh{z} zaDj8}c3Q6XFE2f=mBEGawyIH9I$4(Lrr|8X8QEZKTL~nipbby$3>2;s(;DU!i~N?4 zQMm;9+_ol-*HVb7c7PV+82pdhu}*9$Zhn`N5=G4m?|>Si<7`^6w8QR?#UeRp=)b-` zG-oF=qG7g*Aj6D&9Oaa7$+wb|7xZoRnzj4d3hCt;dhIznfS!H-s%5s7%*9MVsfGc9 zc`>w*$1Y>E;HJ#<=^0FK{>jR;X!g2B%=G~FqQziQmPU+%T{iF4@6nlG=j8qzN8h(* z;9+Xx;Y->bqvG9>(KxUNA5~L=tVGJlxDnzi4cJP`f*(=lrK1-6K9yP6q7{KV>o3ni z-+<`Vl^FZv^s@a@m$f(SoLzH%2ATd94vp1@NZukQ7YQS+Nemd)?3byJF2~NQuwL13 zD!2Ga%FU(JfqkzZW)l;rlmwEC4B%aH^QfMp1afby@*IQ7Fg;C>9KK+ZjLycp-6q5; z1zl^w&GP6wYP(LwhGQQkAN4{==0~kD@43w#-1s#y`H=e5T1QyDdw|p|xZ-zxe&ac! zBeuIgJmGPdB_twMdsQFTj<(5N9^EPlw}hcZIarGAM+!Bc&erVXO_%NlAueF)<7-cd zyLXXPN`*FaEbU-{Jb42TUQU{HC?aV&Y%k2li@s%W^l_=m@y_2eHp-mVH7? zzXnyZM}?81+fZyVROpZdX;7jpmF2Q!k&aHnxA0v(?l%!7R6lVzj$sBpYfrX87#^n2 z;fXftfNkkTTf%ymY07xSS}jie?rts!Cm!kcUrqbjN7p*LG~cQ3<{6bWGLdgKSu@d( zL2G3fI#IdoWpg(!b*pN*%LrSgqZGG8zG_)%`G?DR!j2$Xe0om!79R9@;zm)I6T}JI zQxveHy~|H&5!FiEzg9Dwz}>q|zBhjZYB=f==2_#_W@4Qip+a;}>|KN!pTK$Xo`KyZ z2kS95JwZ6l_C!>V;Ur8Lyg8Q$QSxrjtt9Mj&z~Q8^Qwu-PU9@T__+nv2($<|-YiFg zsK}C68)2<-E!|c$n<Acw`L-U>XE;Y><@F?bd50v=*Ve4AJpb-GF&!B|_BJFW zE(OqPJ89xO+btBS8+GEBe41LAHK$#0aQSV38_>Of{X;ZDBdFFYO`~d>vSB@<^Z?NL zvJaZ$8jtp15VHn6yp)&pkrJm=AiLoMf=t@;>^Ol8n0Zmq#Jut#rzn)+rDzwsr@|Pt zt*Bweq~{T1XgSpcj;G`X;3=Ny!FRtE z4xD3eBl`cp{hPj-v$8MTjp=Xt;eqg{I}4I}O@?;*AmY;nh&oU6>A9s2Wm0`~#*7n+lGl_k*z~c*6=$`}J&$**_h4?0Ehmqu0 zs5+Nk;X3sH5%(TTv*Xs%=mXWD=*_T--g`Tv_uljAe}22wt(J7Qu4Xr)7&HJu0&5{x zW)TFx5+6kQ`cQOxtv~<@%kSfO3l%ULjUxggDzwAY4wFK&liAkw-g0)gQKHX^_dz9H zr0$s5CQ6{}tLcD_XPITlNseLv8QrEpAs04K$T-YI%=jEJY-`RSx$s}p()h0qKn|FD#i!1IPsFlSrSGua94elh%LQwWnH0s&A#{6przvZ89e7qlJ)rFJ^VL({ z4Z>`(R(711dFqbk`o2`WC}!DWVXyYd{4bL};l!GpGcl*R2*1W03?TCD5^l?b%OAiO z_P)iW_<2&a*4@);#}jYd>vjz$Utda1S*#4e;}hEYIqFv15zT%hZ1pqMtJ1u51m(d; ze+)Bf;UO2v1J;1S`85rXwJp26Jen77Gxc4_d7zH|gevRbezeUPw6BV-enHk%qYhKs zLRuFCCM=#_7Y5FA6JWZvyuPi#`zjSKYPzX*v~`iUl*Yv|qMEp%;eDY!$=%M)H|@;>teIwRqZ_7|%yv;!UnqO0;7ZfNq~%>TFw#D7Tm`SzYg+&} zpZgPc4-~9X=o{M}$t=;W2t!Zy=jnd3iw-|4yG>mnLD_lpa?vG5JvzSaiZe^~L#SZ6 z82!{7qlSpLU(*10ubw`|!%Mp|MOA&Mq%x-$Ao-cT+$B6x@2?c2U-pt1xZP3DOURc)@uatuMXQEhhFBnNO7ly;@3mo;BI~(g8(+X1)m!GwWR=lCOWna z&4)`2s9};G^fO)sS1Er+;?V6d#XEbZ{OmKk_R(DU!?A{1>8qL0WDf7&*uiF->Ib;3 z5-+eSB&Wjg6|M`iD=}~NcBFRF1WclnSE+-U|7N|HNCdCmq9Va~vjE#Riy6Meu1KdS ztd_HSYryelUgajFiIk?zjyRK_%bQk8j&?p?o|49nD$*VEQcJ@zMN ziR#0`W(rIXX)+4R`zqh;qDe0Ar z;u(y9>EPT~ur;R%ucqb~w?aCR)uv<=P9hlqocl=TpQ)-lA(iy#YQcXFA($3cX>qV( zFIfs|nRT~Cn-ZY-_A7s>WK8ioXJ7Z*kV|IaM6Bw}!S`RlJ_*x&ExqPF*@61^tL5MJ znA%c@7XD~m%i2aqhO#rC^yb1MJZQr;@X(H#T0z|CB zwFG8CT}^1Mgcb!a3RFXu&^s6EjP74OQ@qSv{9g5e99a6M7eM=a2q zM#SA#(?SJ;AYB{p=XgyTF5YpU05=cO^c=J)tUOWke&e^iMs4ZJ2PmJwle+0sJq{m%)}l zzxHiDnFp?V^r*sLzjTSWT|xQecxyr4EBeo0e4~OnmNxLyq;*o+Z>F!U^qQly03APH zo;Iz|^0XB+Yh7FG1k?l?pdke{FePR3Rmc0qE4I|V1L~M+w1#5!l#i7*xn7~Je1499 zp%Q-NJCbC6y)UBNEd<#7sK1L9Qh~FqiVg+#2-V6FcXi~9uoUUz@=YLCG*kqJCe_s% z3+zg?8WO2<~KaEYrmUPPFvNJt*D zyDiBMg0fqV^>AJ52{L_8eQ;lM7pI+7VR)`p>dZ9|>RL;T+H6h;t_buY0<`-6%3>Kt z8BA|q8eKF5N5u$6rNL)?O1{X9iUIobvKo%!y5I0a3ehOT5?j^kqD4aW?{-y}?XpV$x}uk4&?QR5?G1FLFa`QU|l+xo;+3 zrmTOGNwa>EpUTk445``KxU=u^gsENAyAcE2p9I?+b*z{A(<&qTYeLI~;G6q)8m2? zliq;}aweJ6e-o!}p7VwK!%8#UNp=787x@e;F5N=yBi8qfdrA=@B1by_+4PHe zz_N{<-A#~PXuq{Bx49F63U@DZ$seoJg~%q}u6}pB*PBW3Sa>~gdyD`z6#FBULA2>L zP+f&?93P{izZS2gEHueov!XjlzTtgyUKtv4e=H*hg3TM|@wN$nEuG$P!IPmz@m8C> z)4#`0>UO4{0JWYhwcs`ci~c=Zr?+Tu$q~)(GN#cmn}_%VQsfCk8G=6upFSd6d)+Xf z2M;~Oz*SAD<-pqDX~5{L)@JISI0C>>`}X6%_zr|w-QpxO?57vf$kmi))n!U1vWt(J)(K(y@gAH zcGum-vKB7Ovw4PY1wPpzs_l$YOwg$eBQ|KFpi8LxF1+ktS8N#3@vYXq0(r?Dpnu=| z`Dk{7nWva;7cj)2YhC(+H2K!OfF1jfF!P$o25#Xi4^V%O*_!1P-$g5}b2Wew4SUf*6jlwT`Dd2~XrAImH?YR!@>eZloIg}Qd8 zl`X_=Z!&C?=xnAK>M{k!3}~(rJ!qS7c~$kQ{oH{lmJPzZKNfx7_NfJN8*U6Oad6cf zL1=Qss@@gDy-k~AR*09|;wvUsMwd)Y0*@a4zj60<{`BtFd`@n{BuhI~mXu|>aHvBC zWRc)#?nAED8|`bGJzZn6f+(;}BuW?3g4!yL3iRzNpcm96Xl!X(6A2Moq=Fv*I+R;h zn2ILN&L!g=!Z|=!w+3Q^EzNVGhJ#EA-}8`Lm#;ybg` z>Rg{JYA?r0OS+E#4cGfW$#pL0ad>qEj{nZrE_*IhuU3#m9*INlygYk@orAp2&EBwD%HAA!w?x zsZRv9&tgb6Pp>fa{m3yY9KysH940+D{-b$H;!FaewAV-plR1Q3e`4_gn?QtZQEi}V z0ES^VJ{8+qU(hX7#%2SapN3{Yn*_bwJ%1l$$V!DnJ`GTBvb>~L9uGF4=!p3N9H&o3@S(s~m$^JnG+*oY1!WTYBd#{RQ3U|Sq09@JG9}w*HaTc)hJlkgjXS#< z2`=lbQ&%TG--^v-b``lS=p%3)QeWx1$D~h;@itTAchp zT_ThYm$Ck-npVC4x2nD6kjk+&KwWEuM!6ss*n&q^cZxNpa7JO*#)+Ct(%HoFMHgGf zUP2cqN!RSfco}KOFUabYTnf;!xB%(09{OQ-klld5C(Z3D4!mqJ)LEvG54%%(s% zJn~soO^Z{}qHhOF*ld6EG}zXq`ZvqbIEmIMA7%_FgBn}RxBsADc%7+ZU7UyE;nHFz|!I_x_(zOaV} zBEO?>#K(OvMmN3LY%Va%bU<+)T|R?nPaIPtVI(@o4vVVSSc z)`;t3?Ubh7xMb6C%q%?3hw{`+2RHlGrU)aCi4O`q9RCki`UwK%=04Gs3cHpcx}iGZ z8wG&Tcf8(|yl#v#U+$xVj2kxPs*B%z6@`o{Zq~Da+5x>kGc`e7yAPgbf*&#=_x*(G zQ+K=GSE7{yjTc;nnR5?KrZPfOEi*K4hXO}$Mr4_C(?a+wwwCBDskc8wQdxY>1VC&c zC(YWCTWKKMY_bsO?0`vxcZVvuCJLNW$we$8WfnIF-E&>>!c+DoKE!icUh@+X{#$Tw z2}9&5nO!n%!A=uV<*bSH?0je;ne?QRvc5n###e0&wZ{E&7P>CuGdH0*v$!iKKFmYm zW$LhtlVT!Dn#S#7A`!pXrc1=r{*=Naw-xV*I#HugEh^F5(FLaBuykq`cRfl(18D=i zYlBdQXn+@ZsZHqYZZZ1#IN29cqPeYq#!>vw#{6&soXSY&`k4rmVxd@L3AQWO!MDHf zv!tX2_hG&z)pQnLav)VZA+7qQSd2seP#bOa1g43MRaHAC0If&<@m^I6K*3SDEWXuI z3HKWzbtTa(IdWS%*rPQS7(>ZxNs|`KPY$q!-c3og25+2ZP>+!n$jIzzjL}TZI@0!8 zpI6MD%o`ETYid5#Ksrq0N6Wy&>Hmx^?= zvFAvD0vp>N-!WMy^KrnoHn5Q9g&eo6*J5P{Z`wL5JViSI2Qo_pWvXVU*|cydss-jX z#{UJK{v+SDC`Na*xwLhaTV>1IIvYT`DajOFs?t;IaUwX{GT)CEcna{2sjsx+ zY8i9lqT@pp?GVJ*s;%1h5{Z)PRD&5Voq+9@qhx2Rk#MT8}o<{Y0EllJwiV z`*URLX;_SOxm150kAqaa?`=jAMXaQK6z+=B2ZQ`4A?~Yi!uSZZo#By=+hVEdC`EW^l0(FIvdG~5H_rzEL=8XX1ymSs7 zHP~x>_?3g`@HeBG*nQ2RX~EK-DbPfztwVUiNHix`$Gjf^N;$0pw%JVT;Z3!tt3@j| zXHZXX&{&|-NjUu9;Jq<@9sT29%}m8v;K7XB*(zT14h~Va6k*#2j~)vgB&7S(2~1tb z)%TEpV%B6EN%0aT`|GDhU`6~ofLd`lgNV#I)cmd^T&Hvl@Z+6Iz$(&u}_|2Le+aL#KD zilyB|P?2_N;QQA*hN>{=Dfq=;ji7E@HX#h}yLjYDA6C? z>`&mMN{C2Cpob}4EU=jq7AlK?<&SmS zlE|R#6#HwkZ?b&QbV(`uFv_BusRx;Kw%%~L-YS#VYt!4k(D+t^HMzd>;W#L{hAkkD z*gFXsvEJT<<>FqOIp>R*d~HV79(?Bnq|qQ`O#?4-B$NEi@$~1fzWo1`DhD;6eICOZ zXq3qV7vc5t>$vYz(*KeO44J9ti++aAeH!Zx#J0*uxT>0vBK9nmI$CS67`=g6d5B?g zs+wUc*9ZIycrlxO7kgsyu=MWWV-XCvZmhj*8m96RLfZr9qoCl_VeIb->0T^o@F%o1 zdVtvbY-s^lS7*8Qpjq}NAYXpF;^b~< zRZHricVx&ok8Az;(tTNcKMHj|N>2V&JqUZLQg({30lpsw)j<76^2A3_mZ@9jbo$Ww zk?3A3N5mp*p%mtez4PWDaT%d6B>6q;Wi*awIF*QHB~8s`tIC1k#+}sn+4k6x0j1seCfOQ|JnS(c3z(2a<9-#h^s=; zmbFD0V)Q27u&Cfxzg-yWcEG5i?UxI|UCh{*CbPm>dwT3E_01e6twuF<`E|8K<%E`k z^4y}zfULAXaP!o`PEjIL*H{AH*St{~Lr!H|J~d&8)hwGVrjB+HJ!u021$-LDhP2Bt zshu&uIsrYj{^Xn|mL<{233@jqiAoe(@t8IZ=N>Pw-yt3Bk{!H4;*~Xx=)ZWZH*>g=K7}i8BYCY68>gtkjlhV?%C~)yWo5D?Meh=y6AnBHc=0aR` zi1yrlOKRUGv92JHrwk?#uJ9?v#U-k+aB&WPA2}JWGd$Z^+TGtTl#bQ=T<;i)69}af z5QxocXxDDbH~x1IFtRnl{GX>%@W1^KNpa=_JkFIVY5&gY9FSQjXaZ`NiFiYstNCd!Yj@j+ z*UuZ^kQU5tgnIMvy|!)nFAhr1VcPUhz`p4OEw|)=wIJ>YoJ-8Rq>WeyY$$e1+DR^J zJ0>0a)^00Pa{+YSII@rM56EfBxdiMK(@>S|_2TNxEpbhjIq>wA0Oi);{tRd6fE;3S z1VvSeTB+!k)hVXFKO$TmI~S4Pt1hB+I?_r|WB{eZ`cr2U?r9Whe|_vdCMQ3T)#4*B zGQ52qrhga2Hf``pS|i|XQY!TrwTHe}?p^T46_B;R#vBsLEWbI`DnUd$)AK6Zu#Kn0 z5&S@*9!x)zhj5WO353Z~oW7ma#f?H1MW}I%JADM5qAK}aEzJa}oZog!RErFP+1_dn zkj+WBfHKU>U=vmn)Lq+MCSj)pdo!B4X|C&uPZaY>yAx3Lv$!qzU!5~ajV)H#F~TJs zsx#!aT%=yB^~8JGs~7_fUwz!nb>wca9-FX|d@Kpw19bM)oT;}sQKH3q!mxh_XN1yv zgK=?T{BR9gD$tnixbm zD=4!8$=sj}mwJcmp^^f}g_7qbXr>rY6DQ*nRX=bYkedJPKU8JYYz+Vt(AOE|YB2c_ zNLf(I8@3vr?{IH@=(T0JxUE!u_L$&}ZacCP`W<$Etuk)8%ut5*CO?`cLUTHA&aq->vuYicXCKSh(>V{ zT^6;>vl3!ykcXF^Yb==XL#J&Co>s{WP$zT`k3l)M7Y+iY_+BswkES1&43gW+pM&YA z)FN&A)Gw}`|5p_-Q>Yi1cf zD^>jYk2a~Py9vC1tfHebP3s>SepbGDXkhuzlYUn6jM&KZ_URY*$HQmyKN%^4)vses z$T3(7I!7PBid4ss`f#E zVxrSv=-R3{vMnUxd)Z5#^_&I!y~3_#i!M`bBV_7MEJH`=8o5m>KcITs1d1cWa}9vY zUJ?DA^6h%k0NW^rZzKF8&H0t4npio@>U*z>8$SO?E2DBYuI8pF*nJx`#H?@wwH#MqV!q*5ym# z)E>^a8wU0GHGkf2w0#pi6IlV(T)jSb9#U|a5*Nf&G!dhJI~d}D>mCe|j1`YFi^smh zLUik%t;(A;e_6EVdZ+{PTC+){AL03M-??k>mrFfd-x$04aLSS0)b8d;v>E_kRiTSl zQa*E8Gnukp6rvvjE;RF`l&NFlo^UzfJ=4MBFZ0?Qv`^iy0VvvTDnK&tW50W#gJPvVT}Lfkp??LAWoq^Q*+JZsm-POyM&cQcf*`$_ z%-Ou@GZW3z8ZQ4NA{ejhs#~RRftdq|Ip&et%}8GF7J;0e1G+qVE@FMDI+P0iT$_p( zv-rZ?#-jx;Q>MWwDdkF-`pkTbu=X~jIKp7K)V!E%vJj^z-%lCFkQ7eE0C?jhcd``h zb4gQJgD57D1=pvLMdw=66)^6l0Zr&w(+aP|xGkyY9ndEiki)PG#-#6` zakpOfEIgGd;{XsZVJyE-=p4Dsfjwr975Te#ZH9*NQI>c3D|6=hRA69b@;bx4euxVi zRTwlsDOYwBr1~%Yc1<}YJ3&y&joxJn9j(E0Y?cTLU+O`)t~!e zz*`Z^?_hGKk00pXX8)*1_r$wfTuk?E{%wq`(y#&Ci<~TLQ=Fq`>DT@rBWO;PZ+zwy zlafI%vqry`3Zd%}UbX#X5S1oCug&MS1k92qyqlWh1ykLF%L?Lu9ARA-=k(-+HA{KQ zD5+i8glX8-OZio#=&#Uw{tK1fHwIfR7*;Y7!}1qW^#Cljhuqz%uXeEp2b%!8r>Dgb zu0Y}9vo@LCYK1QE@SlbFi%-JA9xiy=#R?=>!<05gY+d7JBMu{~IsFJ&_4eAI7fb-9 zc||dTkN(4aYx~n-2XJw<2t^5?b1QbOz}GjzmK?5c+;!*6ZPD>nHt;gM&#p3~*#tH_ ziRy_NXIV%zQ*G>2g$T~+3e}X_-npmAZ0V7@w(?q~djP>0W0vURcKn}%O|erks`qB5 z${}t|euBAN>NP}iDkgzYL=VC`ir^O8ap3hP=ByIzwu;m}40&YqFWNV&=aIc_#=fu4 z;qioHcO0E8cOd8GK_1zpY6>M-kS_psyGG}#wc0M=%Ix>gbPhn5^UkGmOKMxAs;umk zZJYNNXlMiJuG%-v4h#XP;csluFe)GCFpOo8M<^CjX69uj?w|<6QX<<@>sZ&jHzgVtlYDpUsF(X*> zL-~kN5OC@-?I-J`sQ_zXLH$d1k05^Crpo&26z130Giu73K+%VsaIx~PRrPfjmp6ob zBnN8dgd3*(@~%r$M%!KEXW!5HS%n=|3|*#vk+j!FSR)fDIF2H!>f{0-Arg`6KKPHlH^trEX(C#$tFkG)qoCDKt(w1d5 zugjiR5g+1mjk=xkW0Vhv>e!HDGiUVj*;=C+ZFJSHiW}DrEK+ycbtSD8OAF4PUaG|=cs_La+j*eeh1)8TQ2YV1v4k^M)=>}!XZADOQ^rF@!h zaJ$~H8jf?}ARYMeVqB*y|hv z5oK$x!6njO$dq>L0QH`^04Wb_Z7P7^h<&uw7NzQWe&M8)sh?sCGojLU38tiL}0!dLxwKzl^kGdHj zv;~WXsS3JCiBDAqQVAQvF#1&X*g)Fi`Tf~r1q%Z0IpLPuhR|C3*M!+!HwZI@bEfiP}>^!e;DtmnyI1?e<#e>zS{Eugc8 z8OC4eEG}dVcm0S*7>u^{uxOTaRBxeq>D%AlVS6JTyg=_oBqQ5bOSgE7II*jirvm;` zUbTTTyhqY{@gi1PiKp4QXJiw*W(`e&(PRM_5U`)Ux~TtQ|L-cadE|ASv&fI2|M;HT zatpqzg2ZlvYS8=joqXSpdQ?dGt0wOsHm9175Wm=$JaBo1eS2gp!v7z4UjJtb!pVex zu%}+VKHaa)oA3?g%>uN3mY-+mcy@?qC;j|Nv5~zHo7fDIS=0*Hg6F?ZiiyDR=FcoP zswmJb8)8fxU4NbVN16ZAj;dnecSO7VuXzjwPCp(@lO=&#A~m9%kEgpIi=LvnmxhA; zk{>{z6Dni$G`2pZ{{FD@v!SA>os0uN<75ghIUE89%EdI3%T(a4G;Dpc;74jv~`G!sfD4h z`una*04#Ug`k?Y0=M+*Ns1mI;2Nv&Ck7rfscrqw_b+|fAB7)9Qtq_D~IP0E{33OpG z!f_%i84lRz8|bnJ&qswQq0d5|`cH zxN(rSy(&&1er2kIKDNapjt>QRJuLgNx&8i#KJe(~DFr61jcFlf{6)!8hc@2{#@@1cKW{lL5*UCg{UK}lciAq`}r(UJ@^Gn9TAh(^+*erxdl!e2l4=m<|+ zvq^k>2l^^^YEO~%6|cA$KHncX;$x zNb@1m={TP@R%d5aj4UxLIbY-BIq;0zscm8X;aM9I_jS$nYXLA3u!BeY=;>_j;>6R# z0HK_X^Tub0_c2**B<1r5l0{2QNKZdo$o$|-yc4j z&L_TL+M~krN7yn%JQKl1l(qA&DXb9zwss#L4&jiK@!c0ZJfH8dome2mT-ib`$GaZH71gKrRaS;A!QmX35KXp2?<+~YRqr60xP9{DWz`1g3_;C z9JtCtHsZqMe&*^YJU7pk_p4fL^dIf{9{20RLogfH?-&9xgzPI+UzOm&=MR%@dP~R5 zQApD@eRV?%yQ6-g8L(tOAK;ivuBs~7zZI5YWX9*ZvpiKe;hN8dP&bXt6TU=2$v4sGeL`trR1yswXf(3PrQ-$1>!Z!;|PoL1O02PpN{P+8Q z`?4;VkMDpDSW)iv+RiLj;5I@+3m2 z*rg-BDKa+!b!)depH=9+hMeD7;Gs-OmaDCJzGwuF7TpmF_tSlRAc&YfqQJN$t!Sr|aolT#G}?R{&6>ufA8I zy4ZI@i;IU@&KobB`$%+R zy*>nw5LqIue`1QgB_4WbqeGft9a>C)fN``&A5ytPrH;E$tY4l^;Ms%W56Y1Vp@>*i zk8b9DX8>m3r^)QwnA$tVFV%UnN|eGIXnZ5fhQ?3*~2 zE4+Xo)l&RS_}Tq@SB$uo{naxsFVug!eUgOd6FJ{=n|Gx{7y`$qm2zd_Dtk|uAFCww zut+ezNMTQbp=c}btTdHXKKA97CdDg3wP2S9D=FJpwUQ^*si*2D&~J`~qpnpyvlW9$Z%*FKy4#*Fse%mRlrx;;+!YQO4L!-G>e9*GRh? zVN^N219$-G!uBd*`(~U6k-}}9>K2$2I9&)KfnsTIYNXZn(1DQZG#$BQO#g`iXJ~BVB?(+1U;{qDxxc%~yOstRu+Y`<0ZJMCBqo#$6!2~_i!q>HpZ3e^ zQ{RPz=i7z4^|7v;^sN;#g(DDFf;Ksh@o-h4ogZANH}9Io>0cd-_(U*WO^QiRdZ;tc zeNF6S>UibK>E*acrpn`opV zcI3VP_$3lm7xrU)R!9$@xET3_GOwDv`zPXqaqb?g1!;|qGP%!gPz0D?ou(aL!&x$KQ{g!kS* zsnNf=BOm)W|1d`TfeEBJ*>jbH(wzI5KM*U0Y+G#iJuQ@(0o6Vzp?!BW_quoeB}o|} z2``DgEO2^w`ltUs*y7MdYp+4nPoi!e!WpatvQo=L+!>f(!3g%#yy~|;DiK#W^`MC$baa-Rp{w7J~%ANH%fz=jh4z=S;mw!51T;^;=%D27TBrjP7pE=P?{Wke1RZvO z4K5c}CTKo!*b>n2>MjinxnPi|-Pl~BmN#se2Q*QElX)u#zZULt`;fUr|Bt=**mjU< z(?c(afyjskPJbNmUd@)%!jHA^7DRHfY4|!NVrO zw$|z!#+7--8Z`ME$Lz2g{fsNQzakR;s>o6!obG&Bwj3S-7RUw(aPc|w0Zo>x8sp*> z>y#M^k~ver=cO;|BuG+h&jE20Rj;lMz0(ceT*aKoQ%?w#h}qpuQaGE=`w=pEGJ2FI z?Hwj|Vrz;J8*oys$Ho5)Eh}Tg_ss*j6G2SkKjO4#Z7i^oPr!E=1Y(M&AYpFP_k6*N zr^2(Z?RjgRmvAX`pa|B+FV5Z=k$>@IA%fAY6NPtGU9#n__yv*RP0*KkePZf@>l(7314;|X z5=p6p8cMVP~ zQuqnOt#6$`c-aG+B7$XOnaofNbd2*1oC18DfI+st)8c7=A!+@Q;MaZqL75f$k(vUs zkvuy@Y=XC6FcdzGe`UbmT3re`aHa)JE>TpurkxzG7swc^IPQwM4fUTL$g} zr!^iYvArYmLf+*M@7xy|D@)q_CeajIzn+tp>#N@~)<5Rp{yu zOLWwOUy4;wDcUX6#4vqz5wr$9ZIA$Ny(=XP!q5GcPZ)8DHh^_53IXa?dvP0~=QwL9 z{q^FZ%y^GmN>?w2B6`K8IvB^(=-mqE#hkjQ6eV^(qL>e2uC|2ebrKTqAxM#38iZgL z7v=2V^^%YJ&zSGDbv4C|Mfg~m1c7W%MmRo?ce6<^h88U>jDkF&YD4AMvb%IhNAtEb zv{=CsGRrl%xwz|Y?ZHl=3 zX(AF2pzq=uBklI{+EV|lbB7VN)n9#I)o*I%BF>G50fW{x@>PvS|DJnQf6)&+m5gUi z{y`NI)QsMq|;b-c?pSRsmCzGE$)=3isabGdI7K5L*kRarj7 zzASTvZxpb#;NZfG^*F5!e>VuX(gsQf^sWkho00{+p5L{5UJl}IAc~uu7oX7odwxx6 zG{2}(#-nqTUk4#8hWKzs4En%s&6zIXa%3Ya)ZerB33qn2D7Q*Yk|0nk)lT?Ic_ZJu z62@92>A_CG4fj*qFdnDxE6Yav@P2ttnCN|VcH={vQiXhP|EMo3FDyd;>6fQcr;P)L zzvKLa`m@a8qH~4M!0u{DJ=sJoh9b38Kk&_v#FlCx_pM@~=m*BgBRoYc7Wa`a0|_t!G# z2onq9^3tu~K!!9Kic&6lpTS>gTSWo-6WyPff06Fb6Zrlq(okmO;Y4Bn8_bk`CedmB zyG5fKq?go;_CkRz5J`_b>Z@k)0EB;{hvGVBfiMdQTeF9CfN09Tf)zi^bfF@eKl@w8 zCUdO6>QxV?fvaJy2^j2`s#%DF+MMu-5Y2@RY5ByCN<^Uwa6vSfOuj?zY+uz)?6p#t z<;Dzi({h*J=!q7}*hSp++-oT;9Pa{B$MG+8LXR6JyHA?JPGfM#C}}L5UTjU_U*Tq! z7De2LeRBuU?rHxn#msT|SJI!4yB6KD@QBum9~EZzcB_z;$!|ccY1sCZ4FO7}2>b*_ z#U2+4p9Ig^Zq*`01Jtg(>%}d%9r3C0d?XYOcM$>Wav`1m%uH+!mGn{M=I?w)fg6wC zhD9EN*poH}Hh_jZ<6~rQf0tPMU{xhE!sHld&b6Tx0pg$4_ez784jWkAsL0YF`lAKF zvs5slKb*FeeZ$Rfex*eM9b5gKN+SLi#2d!?fU3Lr0&w10%94Vamw?Mpi~W#QqvV>x zu>kmmnBF}M@3MfgleUH1$G2Iht!If}8~|bgg1j$ja7&$RXC=iga*Yuh{jS$x7`)5C zSiRW=-KI@IU?{nYqX=K{DP{MPRD!3?3A1a_)TNg&8{PLXmyh|Oj0k^ya08(@#zgmD z)P--Fa|Isp*wXON{bl%HiaI(?!PdMG^-7_|PQ?n6_Ft1>SKuTQe99>)eX8#S#3wT7AjvU$EQ<==>-D(%xvx@W z_oy3T9FCf5S@WfD^eg@Pik_j_+?MR9k7cmit$^kh914H+e$U^}s&*f9fH6ig<9c8J0jH1f|6M&@E-quPM{1rnAXf6eh^B?YahO6kbv;# zY6|zlAkfA0XTChRI6sj%y`&uC*>BM1@Z1gWbuY52(BSne(N;}hs!~>}ynihd*n!Cg zMc7?!q(XZ%_*R{P_tl^6-6+!nYR7Yp@`}v!{0U=8V=!j%YU0F4Z8sI*LWomFU3SZ0 zC2Vie(3aJ0o&BH&SWB1xbhQU6-)E;1CHmv{B>u4kWrCIp*t2PZpa<@M^jb7m4T zl!|=g?)9(sLca)45zTjMlX+8Tbt?0O&qoNH$JcYj0kskrF%2sP9>QVQlRa0^pf?n| zznwz^TwCD0Yo)Ub-Lq1{yQ)3S44tNlFd)K3X1BR=YNgh$Pp>M!+Jl#t38&H!zPpu> z+#(h>gIunpRo_YF`^Y4A7q#*ze- z+#CFGQ@F;8-l#?JYut6KeX>sSU?W7XyxwVV@l;lLnT^!GeJ77d_MLbIPGxOZ3k@D$ zyG@}2NL!l~Gdf(0+ki%okWR8z3V6C*yV=?dgU%nT(Q5fx{MQ2KqoaJVfF`?F?nbb4 zaB=7NNGp3eXZPxCmmf+w%Kv&#b1V8#w7$gP>nHV&{fmRB8ldN94n%c7uf&A_EGfTs z^2s(6khXFUejhIQr?yc;qMtq|^*^os|F`}B@U}mrhPYzn@(ODsy+76?9Z=o;!apoS zJ~;oqNI-?nGbypnys_iMk7TG%h{FV@ed`<9%j(dC1_k@W#REnwE>d8nzb$tk5m2#~ z_=am)fuAQS`=c{(Xt#CQaA$fk1oBHR-m>;MScxb}xC~3*}#Fn}E10$sA*^ zRA%Rv>Q4`5GTp5~la)Ea?B_;l+$NuVamzH#||6ZLJbkXmfYnGh_TIGqCxU`s3z$^1-k#i_uB9;YszM z4}0btCXyBRm)B`bp{o1h+lg}4{#L>Cv9XmMz}iV;3nY{(sUov9e^7LZU(zvEJEP>8 zPp*towc11LenPKC0tmkxSA$|(Jt+e7NfN-~Bvlu|S3&Cb;{eeit?|{|%Dl1{ym)RK z^bs$~AX!oN6>rBkd_)92q7OZN2JoW}B;`J8ap@1K&-euF>x?RzQ#fmF?RMol+w@h* zDDzcQ*#Pb1CTkZfYySImU<4y6d$pC%!)waaqBM17a*avDqA}byldZHokxNZ)NAM2c zYiDh}=wKi8N$TIn#iQJ@8X!N&SKcmIZ4eSAws94~JX!f${~pa`$VkJFo5tU8E9g~@ zjq|yldc*D#Y7pN(n>2Kj5STgy2$#R-7s`i-WpqDOazKW`ui5V_`*$WdhMw)0HgPh9 zkE-R4<2*V!W)WtHDyC&iS7L(c-Jg>IYGBKS!BBIU;YGRiUf0pJ415JIL!2+`0#}I zUqNQf;T`OVqG%ldykIcH*5&Vh0+$!(Muu-~`a|dSTiCvFtTG zGFC7ca8KrU?&QyGLc-LWaQb<9wdx?1;ArOaj5`dq*;k+ZIOjPgp6H9{fuR=XTFjqJ z$btT0V{iTSgrFo=Jg!STo@q#JmoVk3raI^9y?aAF2%a(<7d6W|!cyI~%a3+cg4=_3 zZos`cW4muhK(mr?UFlqJuKJ=T&A%XK_7Laj0wxA+)WP~OEr<7o5<68iqMKn++Ii=| z`lX#c3u|?W+HFe>7VohK+;MjN*Ts!}CWBB|_G^zkn?mDe+U;T}og&t{bQJ=Muu8%w*JQ>CIWqai*^{f5KKj&22$)faQ)+z0AVEeWWUN%cF7fbF1NplWNdT4+7RdaXl>+wRt;Fr3@7#rr%U+K&sJ@xL zfW8yG=Hv`8J>O8q_o&I-p*|4T4u)h_>(Xa1 zM%74HC!b6Z%vE44a_-TV`^Q`MyKygFJAr;qb~kBp?tWPUTb!Fia<4QWe^vY-YjnD2 zZ&AdZq!$(_-2_ZsrvaDD*QYCe+oYzjth4#?MuSG>mk7JN(W$6oW9E{#4O5iMag2$g zxVHa};mcLjovc&DJ8QOk;%^J{B6M<0@L5BHQw8D6x`Vjyqb?FmwYGR`^wq#{#k@*j z8=`M0B*aj9aAO8s_8MD5g6Go31^38}`h}n)ZF#`0d=-8;=3{!ECl2Z$!FhMjH)6>5 zubEyJCkBg~&LzM1B=W7~7WUvlZ0vjF4qR({hZZKBFVDpV(17xTO zM_pggJd)}(6=+~JrXon&?fDrW(CcZyAF2trU&MTj1pJg3CV|Y97u^-_MgP6Q4D49D zj`_Qr1An`yQJ&*T_UWA>xaI?XDN#uM>Gl#o0=-r0_lN(c@c5kLeJivoOdj^hx1cB# zn}fsb4QlYK8Aas$-3cx;DibegLgVx{Zg(t!UetFsqzyaaYReQa2lKd!3t-)kJ^`Wr znex1^X^Z3I6zz%J9VWCZNkIx?Rur4;#O3{hA*38Sv*=jHF%$Q*({t(1Rm(jqYNh<1 z|5#1Rl@MB4{+GQpZ~Dxd7^_eRtaWvC<%m)BOVU&s2B_?b${vF^aWW?o(Ht+8-OsLd zf?F{@Eg-mX!?8F0m6!o+y^(^+2nw3&j-`Tm?7(@)R$9Qr%U({>P)hbpQSIap+sr|# zaKr_die5be`S-N>+yKUpH}lMe9=V$ZFStUaDzTDJ*XJ|+3@@IwHDg^v<*p^w$@~ps zb^?e{@}nT@(hOl`EE)RJGZi>z#gxr5i0qRktM#al1Ceiss!sJfCwTr+HqI4p=9yDy}+_YB^xtSHT~ zAGWw9QtTy=Hm!@Y&?U7v=<5*MDcjDLV+)c5^=e>bS+sdbPbB)i_SHT~V&3*N3J7ZG zxSOm!!Z#?DhD(iCagS>D2FLLt$DRDV+md+Gw!f9BBz@hMhlC=r-+gAvK)}y`;J=T9 zKLlFBkfhr{Pkgk3e9{d1rmw$Xn^b{lQ2&5?zQ3N&F4?+OsQCW&yN8^IGhqu;4aKLh zmFx~^T-ScR&^gY{VfV?eY&Cy#BQ}n#-wVK`8C~o?-fPz$0>-xAoCZKfhmNCN(ygfy z1*dcoOfYnh9VPQk+U}>m5NiU78B8pPNF3^VV{L+fnJ^KAieRmny$G=3L5M3L3jXqK zj4;3JTKe8kuY#kY^CX(F3%kkE57^Ye@5U~{0PYWj0MPw?nd|<{EAV=^u-gcwhJulC ziV)B52(+r`_08=jO(#C@KQHH-H|<}23EAKf?n?u>Gj?pLLG$U{SM0+o{%Rp27yB!Z$E?(?IbbT{Kp=)c16JR zdsBYI0M@%8m zAKb(Z+UuH!@876JV0a79sPsx;)2g=dR)#w1T_x~%(CoqF)Lz3eK@Luk#Qe(i^3%;|Oa7HAhh+Ub0;0s7?RAox{g_`5?5;Vf z0uhJd#Eo*ebCKC@+L-@kUEpa23gFS7{w5z3{- zyUb86lzwqEoe;oC2P*}!(0MUF|*nc^*?O@A;FVACDbq9^LGvf#0q2Y zr*9Xow>+Qoe^AjX%l#q+;6AZlGAZG{j!Voeij6iIz5Z?ay`mm%0=09Y+oMdEHIb-|7jrg*YWF#{Q@4 zF>Kzx`goTD(hs75=cHG&@|E_l&EGwf9caCM1TYsY%G*aEAcd0mZB%uzME^51aMIj> zM%y5Ig=27{c=UE+oGb@@b>Q!i-XrFW$?J$KS=9D|F0q-KHRYX*p;G^!|krmp78o^VNU1j?Z`|HLap$McyTAbLqvq#%feZFlDMcS3S5y{x-rgvNYB~Yk+`WrqkG~7ITQs`T zr&$qfC$Iwft{_Mtq$wJGNs2f$SoD;sDAxOxv-_jAD1`mL4!urGI0IdchHkA}2_)fU z$dWETTH*u|H_shMg|F!S+jY7&o2_xQKQ?$sou>HjSNR`Mz=a-zKb!t{IW~Y)Tj=Y# z2SIM=n@mwObbxPAN;?(m4G!YK$ZS|dCY-a~?|$B7i<(7WGOl))<=EI|&Xo@q9u@Lyq9~O8j>32N)pdEb zTDLdFi%$J}40|1MrTc*3%)lN+iRr7+*SAwJC{9UVmBz#RLIJ#nY}gBuXuglHo@J@h zQ4-x^sGLmsaV9HDkttR=x2OS3(S9WcP|+WyR{}f~-(3fKrHakC|M|LEB2smKq)4O##A`MbrY z?SeYw_`*Q}z9@MlyviDbU#Z_nGQK`f>XNTF6vHT9<0?MiCa^33L*h3N70|l={HhMS zlA-n&YRla^PZ-DHd-;gKLqBEWoWeF$P6T`!_mu$3$k$$biy9WD=k|Q=De?>0>M(-A zXr#3LDO9PbA;kgZG2BL<1ZtmeubsV8x0#{_JPB#UKnRzN1{lssrP?QGavo_js;U%* zjXsw@RKVs^$^=^Q2=!N5^zf=1;}OQsgud?gu~UZ4#30KHQAZz_^Qp(iY8)R}T7>8QhYD!}BM zt8nWnKmT5rbpyJ>7%8@j{Ljw|L9i!>*U^cusW@Tp)f$YI*?f3J1dcuq@X8sp;5jk& z?@Z~ok9%$e6#kv!c`2bCzs#2mj3@W+6rMig-<<4h1l3Jp{4jvtljTQ28T!k;68th5 z$%(k~a0sTPKaonz`!oIzXFHSdmjWO(nR`nVjEU5zWnj#_gtBq^%6ZXw!`|Wey{0|; zvOcCh}2l6j6u^8uNw;1jM-mD^o6lrGSy-dzIkZKs5(1FQs-||R>8Ih0tb1!zC5JA)cDuID@kpy z>D&HTQPu`RQv8o+^jYUil<=_0Bv_`W4SY?@)ZOeuL4`|k;nudd$2bg~mUd71DvV2p zz$bZ%#*i$65EoqoljK1G>;1d5>Jke@$BgE~g!0eF zVKbTDzb}g2uhbFOCNZS1ha(~9|9QKAitf)z>PfEDxveMx#(&@!7&{O+TA4k$7rKFg zER>G4mdpFi{J)AG;Op9b;dyrNl=}Pq`?`NuBtzEtw(IA#^d)q2uq)-}<}k|7^DT%f&p0rV3o@ zWB+|$q@pX|_@Q541N$N+`I)`+tTyeI-WQ^~Zea})s*lFT4HaVhSIqw@{+B8*Fn;Y{ z+ze2#A;s*XolTCI5)U3XTfPjp!$_jp(_80tfbRb;1;xJ<{LslL%U&E!-v~D0I`}}) zs!I~l{TM_@zHkjGg8uE?*xgn)Sb-K6en!5mfnbRgN?f+$?3H}Pj-`BU8Ggb>Ho)Wn z#-6a3i~A*diB6%VH?Y^ev4DfiU>7qc??wcnjk^g4=j7wRFAmy55_|WEI*y;v8;^ev zu_fZa&i+-j|5Xf)@!vj9^!SnB?33;pvW#5vvTXiybo!Y?PmJ@&j^kT)U$2<{@Z=jH zZ#QbX4F`YxjTipwB+XX{-F7&6K64nQgpmN|JE8wNn!f}4AB!vatwk=7c_!d`-DlfD zIIFCby`|5(Z|phKeq8NuHv76A;qiZ&H1_9Bn$Jn`^S8$iEMo+TQ*Z@pw+n`*TPIW^ zfjG?z3)@W!&ArQyKxHhcyXu%rxwrl<;lj;%a;`N?TRg#`JlQwP_vw%!Nm5s(lVQ0R z`kUkOoHd{pR4-}1r2qN9pg!wOGA}UBZZ|5LbnKe@+id6lW4 z9DSn!78VYsuGfjt>u_edsDge-Q9jh-_&r~HUM<8cc7|2oUI-Yh)zZlj_hUKj^vc(j zRR;zYOYmvYP)QWSVAMvLhJ}4j?rjr5;pd;sa+;YK2V>m=LM-?_b)Kd@#S50rO6?Iv z>l0*}U*7+chsV#$!zHTvn0B3%V9pC#O|e*xUEmFyiKO(RZA3;EvG_UJNy;R6mI%6BsreFp}~ZFlWesMinJH3{S_vtad^#kQ|4fOomG;N%t{T&q_< zWV-jz9z6R^%1$pQ_*?WsD52qConi%jW9VPGL6l!=v9cs_u1k>r)hbE~s|2tE*sKN1 zMOmDMOwX4YpLqe81T22vYbfMR+p4+!``(?_|9+?uvE^rabJLbP>N-jmpV?)ew7cU#0fv_%qeoWmz7wEEuVz;}GB`o9&q<52eXpA4K3+)g+ak7ySA-OfGMpTgijh<*b0k+>m51573o+JX|}1)ms`JC9bFnHNvE8arrCTi2c}U)yP(_7|b$2P}7Cc}#);;_1j;*dzaQ z)6LVp-strxT`x}}-w%x)#9D5%4vJ12Y3$uhqy<&r!$0XKcNJ`1Qo!?&`~cxs-{T|t z`yO?l^UNk)I&2Dw^k+*1{vOX4r<4BIxyNgM9_f<)?f@y+(lwz2C1w+pHoewYMD8bW z(>YA|z6rt@+%P@M&6@n1$Zrm*QkHF>g->mV#P@QT6~+p3LXu^@saU|*rWFrj3r4>- zpY*WDgLfPt4R(!Q=n*;;@bixGR>l6OfKvPhwzhEm#XJM%fN>cj{eff8rpDM zYpxy^K$O6F-NJBD_v>Req*ilE-_ov9Yxy^g=~Zt%)Q3w0E?>*tzq*62M)|}N;w1QF z2nt=cV6Y2Ps9D%qfND==8yMsuDvExKkEO+vwy0gR`oR$U&&N6v_Z;30pI80 z{aw}aNSQglVAE{(V#mR@?l6AnpS&eEr_6o;>MzGJkXw}MWL%|0bBH!E=JGKw?wVO$ zvlh|ojYI!Bde$7QUqRPaFWjjXJr`^`z}_8A`lTQ$54@j3>D$XGAS&pKJ{Y=mA;lnW@W^+ls0_WYTvLsMQKEm8awFXyOe}JIz_w*3cGnDOD?-OyX)} zwbh8)S4EKA)Aq)1%EW)UpEmXx;fEAac!yvYyx4DLNx z6L?M`_(WnE{LU%UJLE@_P?F{dTPC*~aU^WE+s!yLF@I<`uX5wOOy^3ge5s=0wTG17 zcdGITSd=o9-V5-PJB@&9?W3Mt`})jZlD)CI(?#UdPsT!|{^C1j9yF1JmLw>y3jtdi6|jAOVZN@`Z1) ziE%QwF@cS?v4xE@di~%aCk~of)J@RwtG`w1>yf~kv?lpkBGSs>P#O@i3`vDeUItf! zm!J8PO>rD=%h2ws)-2Km49g^e{i%WZi6=J$6_k16L!}|PKrloqI_d7n*5tNZJx$zK z;IR`3H;(kL^o0uj|d)hd9(N~s0_wwHd1H~pEmmEVAXI%~cJN`m3heNfD< z4%M06%8l)v&+nNOi=4z`cAqqZ_J>{YBK`XI6t1;eg*#g611%KYJH?3fkqJY>sYn)6 zJiHZv9t4PeN+O&_!ia*o&r;X^H2q%RirxV45TDEdxZ0NQx@WcDwO!vyJr15ybu0H*BeB8nHQV$YzS-JtfICbS(-L7 zx1IaRA(>kQIWvY#(-Oyt0lb!ud)PnV_v-vCo3;!_8>Md|LA#brPaA!;{(jLl4l)xD zZE)_V@aWGlX#Kbu8lS+1$Uh!9G(Q6B4$w^n80B6NfMuTWXS$@li+Jr5+nUpDrKxkk z^~ace`RL=U9Orb0&;0j@Ku2#|Y(h4H=BgSMH;Fqse5P}kvNxE!toj>bU*741e=JBR z_+U-qG@|0BkbG&iaLor#jCPa8H^^?$N!4T3FK@$^w0Fdj#U9mc0WV(Ad0K@>6;8Tg`m-!_YT`3|VaA z8>yYJFdk(HLrAyKTxfIa>$LeIx>ZOV_9bo9VUi<+ov9glg`GZ5^M6KdQ*?63uatjH zY*mqdE?b3yE-vO%`%Rd|5JP%#Q7nPQb^&=^U>GRzY3Jt?;LY$@%n`|*;8)j18mjkI{DM@_ZXdGmhJE))DVBE zQSYv_$Op6N82(R_132XR>fN)fPK`bQjdgJu%r!rbUP!+7#+LRR&fJdn;FD2HS6M&g zY=B<>^YBP7MQpmEI0$&JOijg~aMu!e5rCbkDV^rYB$2k-+x8D#AO&Qx)+ig19n-mx z!-u{dm9Vp5>H@H>VxUn`p#$T_Qzo52*a#9A%IKUi5(P9F$28}Rtul&@`40S4G=>My zw$QSA&)-Q0{qov5<6{)4vAbB!&AuD!CV;l|tKOe!s`t)k9M?7BsNGIA*CTqnud^Rp zIM-%ZoTMdNCm-zt4kJU6s3RN~eArsVI4z;`S$#Y&og98(+M*ixbp-JQ{yM}>MSl4U zdqOWE;~N^UcK8@C{up_v&|p0Eu%v&SDHq!QZ2nGTtoinz^8s7f9hwFPkU!MOjE}OxPq| zZbE^)_1?zaupN0zdtDA2udx3iy&O}}lX{OQ`{iCYY?(S(a7Nq#y}8NFAzsI6dcD#X z2+Ri(?_-*%VwSw}YhokV;|2)#2D|SB{n`$X!0%LQRgfu+m#au!3hHAM?n<7%-OFGC zAPFZ(xLV-9J~VA!1hb)fz+*fJ#q@%w&7OuRzodD7<3B--s4H#j<2n>R+$aNp?c^0e zh8>t^BMT!jH!N@NqRy(r4RAt|eL076N7HPCVu>)yn~{(D>89yJ zw9zS>dQdlY=4jpdQ0dkivG?qL$c*k11gd*Whi&jAISW5ftJ~k2(pPl>!vG?KQ^$~g z!g@2o!FVQ&ff-+x70V2KayaV-7KXoMIj8Nxr0^w}x}#K|b803NZjyhlDSD!C$*peJ z5V*cx3HR`Js(XPKVGz05C-B-q-JH($4W$~tM(Zs}u=d*i=l_i6?iWLApOnmRZJh9V z&VU8%t0!ZR=T%;1cLE|t$nv<}C3$`nd2h55h@J>O%uM17!|u-G(4(X?_;6f$y1@^t z38fOyDx9^Jqq9V(xP~MG1jG`H{LVSbCs6&tA>pQ9Z2^Qe?5}#Nz{2KFr}5L7^VRgZ zJD3o&^{H}AKKeLGr1vZ-YB_{k*cZsS8NO=*Qa$6Fqxxps50!&g`$pY4;t^`$8SQzg zKEP0p3C=QGmc8xDcZ0x6#0M)#V6bT(QEA@vD)jXx&U_ppBs=#V{rZ%_`irPqrORq< z)Ihlf6}~gGNzy24RQKDBf@W{f|0gH5BvGtG@9%VNO!`6Y9Ol2BYN@1N?YBzM9otY% zAzRplC8&0obnzOH^&@frUk z7rXRBFNFNTquq7a6ubfEzZSDLQ*67AalU;OPr&-Ez7WJ?=LU|LI|h{2)Y6#Eo5HAW zLWMA2Wf3^K96syf zEkShm|7q{dnjF=+HR1d3S7hvS(_gqM4PxH=ye9$-#x|1;1{-cV7;I)U+s41Xg>$T| z%$j!PJ9KAdR3;Ka(t6g?8YF>qWdgn2IZiq`sqb0Vie)P@DlXX=_=Vn(9mQ`ZR0V_A zYTR#~0Ee+$NW>&|?9S!>=b%P+8?skpN41hU-yGW$&erkS=Aw&On40K^0!_5rJkLYB zNmi%MfFcc4Hv(<2*_<_!xeHqcNgn=>rNU4qoJAkjA{AVaPIQ%n0A&R_?57^|IOlnl zxt1NhQLBVFkGXi1XG_6dn}uSLtC?zabHGbly1@=_(Eh!sfre(_%K(`KWtmnu^g@vO5)c0WO{E+E)$`3Ek+jl`Z%|m^)@(nre04& zzHOWO2>ity$SHL>qk?iG#py^ZeCR66*s1Gb5F41tyr@Hgk_3MzY=c-`yXcs#F<#=z9zhh)kDx^uaZH6xj|FciwY~udZ^sDfcDYzZNYPCE^)^M)!)8)VXOd?I z?tG)=tSPQ|K6J-|hc*QfWFwxGw&6ZZh>pt)i5F zy5KaN*f%JQgT5_Xcbl2mLIhmxY))3lk)+hNA~tOD*dxu_Xku(`Zrf;eA@#l+7ibcrA$VN)1-!6i1oUn|>1o~#sWak^|SyS@MkYaTqe82P@+7^1S8Sz9QF z{7LE!1JkU;C%9vIL=BBtS`*t68mUQ|&ecV=*W@S}wQ*Q6nF+O3k&vkqJXv zd%C2t9WExaw4%liTkHMd!ol!PVp)$u?Ogy3n!v8csGrZ+vEr(;1HLTE9amo`t53$U zbS`WYouLWQKz>lVCN(2s;;-^iR0Vq(qeJy{1Rg4TqiE@zeuN*h<%)>NDRd$<1cfnE zLGbPfM;ZZ+J;|PX+f$97sCiK#r=wRSl4Q3ETO|Ua8)RZ04?eyH8y2rj4VZPfEXz4) z`gFX~*Gs{#s#Q5U*wT1S*6V$>kh5kao~X)L8~V7+wngSEM!@XHuC>Xsts;sVcPdmY zXSKc?$(v+mEUX$AGkKYFqY83m7v|N3a|%)L+atL~UBi?_s=@je>W&cY!wOWKT>0MA zS2S@+y6n~sGO1hS?5S;!UCC>s?OdK~m26s`VyMi<&d2gerx|Tg(A0+Hjz>IMJHo`C zu_7aeNO+lx=c$tR;W~M$~xB&-*QS;8z18yw|#vEcxZ)LwwRqem07GD(B|iISjWWiOLT@h*NcSI6OLhfKIe%_ zB=uCNu!Z2oz%)xF?Ys22-pmimiN$+KNj%TyeW~&FGeYX@CSwyRv8UU(w6e9tHL6bI zxFev#Ay|es1`^)ob)?HP3csj%=At31hSLR>V*Z*)>_1RbU znhWzw)e>c`n?rS<;V~PwURGDUe6cV@#$6XK&2Id`|+LFmh+j9rV+&&%_YLCrMTBX`7C>%=RtOVKZozt>nSKO@K z?hTSKSOt%rfaztdI+G=cQ)e9psE&h%-+*#@JOV_{aSVYZ*!&EJ1hh<5lgeK=rH@;7CiuvT%`9Wdt88>}Vt1%FfdhHfEJ! z2u}_>cfFqb8*;uN+)3ZY#!8;;x4Q*WRA+XsA>PRqP0T#-StZ%>SqLq3t+OUJZ!J<% z+J3$3Dt%+~laM&GbtNWZl?v2|gCSO0Z!L8>4@t=Sopj*$V*xBVnTmIpAKAf3vz)rK z$=Iu^7^?A04lG&mqH^m{{>H}IP14&-UaGXCU>O*jNlAXPZ7~rH(Z;i&C<8}4S)#V$ z)<|TKo3#;;^r~^>r1aZ>n$0l9KTnH&Lv#>{bZwg*?TA}%WaJJ#?M4zEOebD52czVTVfLkMF;2&EylkPJ?}rcs1}L?&vh)^1 zolB6ktv;EYJg-N!1vk#-Gyg#PuA-}rm&8Y1KgW_$gvGIK-AI@6WpFjJ0tAR zO(7+GR+g;HV(qTnmoQq(3Y{!A5+&BI3-TIMoz;5pyKTz>v1ZY>_BNnBayA-zCUe;j z-)H%uVJhvU1@xyMv8-ldSgi0oEJo=lp85gHY}PTs8|X6R#%&S?jBAsH zM!C777@86@wY4YG(|M&%<`93?`eImW7vH;u{!fU~K*B5d1A!OVB(Krm1HnWXS!kXY58D!a)R6PUwycGMoboH-WBp|E*d z;v&8*lHN3$_2RAp&0J zOm&pR-pK`9?W~oADwjI5PuiL!gHY}r(5S=53N{*oqdau*xh+|!v?SP@KCxSI!LqfV z^_r0=ag@&+%M;9nIL&9%XcyP>f}Pf(jclmanR>N!VlvURbA}Q#C9ZOVX^M93dL80y zInGW>R*V~)yTE8l>l2MtP>O&Zuc0kZ)ss1mcLsEexm7Ak&}fL-#o6u(zn|^(t*fHs znT0N5fb%|;5w6A-9fu^%Y^pCnUTPlHdkDUSc4qAh$8JGs-`>Kx-UlkRn>uDl%Hh;Y zS)lIOF#+{9t0=oh>JM(m5$9-Sp*;g|NjTIg6*y-FZy1G4AYwv zR$*g_jj53x69BOU3BoDmCf=ScEd>YRusbLb*VrMy>k*}HEO(4p=@E{(nMXlu)~%Zb zW{nDcf_RJ-?_i6WE6$1#1`wGm3&~7OIB7E5y8PNG42#gDu!9~BYxdJ4jiI2l?6lqs zVu&yLW#UF^3Dk3In!DV`m?`a2)qcu{`q{!#UDnl@hgW{FNIaL{?oMed0!<{_)+3Mm zC|_Wc{ZaJM3H?z%It?1>936}L@IytKR z+^8td#Y>YrZ*4$NqM6*zK-Jak2#btGk)}N_O)x>Ch-@N+ywqJLA#Tdfs*TRceuc*K zW3b_=UFLaBWvd}oXOq;%M}0Um6>W2j64dnOT(r%`zGl~nWGIR>SybBvZ;K;t>h5&L zI8$IHr^j~6w1(<3*>=*@JP9L1OxG5(=_-|Zx#e(Do^f6lYRj}J=SABs88r|XAwL&= zHVTJ`Lm}hS;#A@X(g?ScJQi7wB^P*Y+Ju$~fSWqmj-gi}lTAg_@kDF{5+u}jbt3qj z6$P`C>fi)B^@K@t_Jb#HwRtO>tJ+tkNtw$)=rN-RF^w<=-X=KG0lZj^3N*e}k)Ye6qis6al#LJ|~Hz-rG zXVv4GU~@IRP=|_b#8@_WtP8;j^$XfGX8=UdReNh|Evvd3-lUZF)@D9mswWJiUj|rT z&fnxPbO0!$E~o<98GaDIjB_>RS-t#Kiq9@BH zKJsTKwea1tnGBa9ywtE+Hic1ove_E?dAgmO4ttt*p0|yl&`T0?p2f1*#}SsAPLinj zIh*!-22;1EIlONbxQ(Xk3Ntsv%B9H7L|wc6IntxM=PBqGtEG5~;z^=Vdqz6YD1D0c zExJE3%WRrXDXi_PrS9$)Q*>AP+$v7g4En1V7(W-LgCj5|W!L$<^W7AViG3BUlt!8t zm#sExm$Qn|!b4*K=)ok-@vc#*5rD1_XWI?r68U1D?qxW{`w&bo&7ftR>9ALQ{`|5h za6HrV3_3522kxVWJ-*OIdH>bv)#sFT_g;0nYHvbcNHeFZb#dC7!TJ{)2j2qq zpK5B;io4trR-^E;zBO|V3fT`Jt_NX(R>VH$_*$I#0k1>b=<>RfA zQ_pHRmBfv;<$J`Re5&U?#y&^T=JUvNZ%IShSgk10{5|?&mH8K5(4wAMKY;su@7hL+ z{2@YPa6Hw6M0blp$z9CF^IcEVw*KgEwXK~Lik?L(`6@d;|DUfeVmiup=`}s%47Ng8 zma!}fz9!qCWeTqwT_%-_}cPpUqiPoR<=-U|y^z zy;d3R*5#>6H|bZ6slPQnp_GC)CO3#}1z8suTNv12S2XdHV+)Z5luNA}_ZrzwRU8DidyUNpn`rmnxO&eO_DrEmi1X*o|>CVQ+t=pF4_WtnQ`?}{&A&MF`l@vYo zNSZb2!WsS@EbX1JnJhY%Y(!t-&=XcYX>og4dkzX8oh7F(*>h`K=b~`P?@rEz>F)DS zc3-h=bqo!pT}6!w@JY}Y2P2$P=cx=R%JggM;5TTaC~k;^s&1k5c~nMJXk6y60W>0~ zKNs`Hw2jH^2C!-IDPQE@^JI8!zCO~5kcNuFYh8x*l=DG!KI z+fis8tvR#fWaZD`&*;#^Ef$1s8x*%q87$^*I`^_X0%bhG>FR%eS|e{NZ|?utl+Atl zrr)l?1e47+#kgMz1!b4Q#z|o7RYH7yW|E>jbBlaPyEdgZL5^`Ilm%KcHAVH-t{qt_ zOPw~tC&1x6EQ5Sb@ewl}nEF2LkCn)ereNu30-q9x?$NN4 zO!UeCcf?JkB91aX+>fK#xk*=H*WgPI&=<&`B+l9(TCmYAB&FL9s6yQ}Bm(q{Z9cF^f;{(kS z(%^MnD!-0>@18b|Qc+3OjGvtoT+(lixXyw$NXr4eK759M#it0!H~O&1J234$VY%H~ z3=-K47ans`m8)_aLiI%<-r2X-?f^=dj5eHWYtCx&w*C9}XJ zHj?W9br)%8hNpxa+)O{x$Ska=%6-vJfSK$>>si*h0^<_56Hs-E?krC~Lp_$}pXzY^ zUBMwkj)Gs(K4Drd-0i?5FwVu2Bn!@tGu6v5*a@s3IG|#s*OfJ#UZUC1tVHPGW$LiI zC8%%DmJc0fJt+dV^ZDLlEW(f%sfUMEB5HS#fW@WEZ*|I7CO6=NDV-j?S}ZW$!|Ku4 z*+ysKTHh+NnYAcLGG;C^neZ+o(zWVFmM67RtWES+p&7;7E&Nx`Pg#d*`r+l+IHe3- z{nU-Wb5QmZn?Ak5K+=j<>Jngn9!zdA^TNgOzeCD_LPD---FAr%0RFVf5Q} z?)tX*zi?YZ3PBvhstgMJiX1$briQk0qf;%W9nQvK5_1I|!5$jYIHA?NBU#_C7hO~K z%{&Rqo%Z94tqj)P#GnkZmB=KLo_P&MT&*msySf^A_QywCex%*XFwivNA%$3X-alOX zq%&MwE-{XbRFO-rx0_8e!U-i;*WlQPadHI>QEMF=sAbh)a@?0aOuIZWt*r>|%m52!7k-b8Rm$hJg^nVF8-|A-pW8Mf#$I!0 zMpYne(|uPaV+;j&7)W9y=!nS2(dUUvEh%M|)Dxe&BEVw(-+ggxKZn#N&WWc*%tqy1 zn;Z1JeM61g?W7xvHDi&enNiVo6Q;|s(X7+VF%bnbDpD-Be?CH?h}o%&?V(csQ+ zMW~T)J@QWW+yy%&+!7=N8ztBaB+R}{ptr{`wtExjXLNEV+iMK|Tg|lgH+c9?YC8veum7qnacA}+-V9eku)+YENo4|{i z$MC$B6M#xb*IAE~T;TGM5Wk8)TpNGd09 zJmamo$DMMX#T=*3b|2T2z?9oFImay~m$^2q*3mtm&Das8yh3g3Vs<}wJbZ0!>7wJH%phzs-LfUYd^nZQsEzc!3dvqG37B10 zwuyd)H}!gOSWOl6A%*sW&N@kx%zdAW?t_va zu?zk0O&Dx9wPU%Fes!eZg-pwg?Ke=0g`!zjD%i>Fn@b5h{d8$tw&B97Psbh$^Inzf z%*Tm!*j#w?HoQdVMn{*iRlGJ}O0ylh_SxD4uMo20izm~0LIm+d7u=z`UoJO-Or z_>?0Og<%)rs_G%dmV)vkI5e((xOBg4!W({X%2uIJ|I3Mu#G#362hXZWe>T~`JkxPe zXt(65Pq$kNK$rer>iHz<1ht&5D=2}-Vc|3DS{iPJo&uuN7Hv=1Dk|{V=qaSuB z%1!?T!3AdS_c$%I>9AQ}dCrch$*Udig#b&21*in~5)@m1F-F#E5v|jv-r-`NusV*u z;?{+nL6Q!*`nWBFrARF6C3s{gKt}YXqhm?%O04;vRct92a&?mua0Z z9pnfOm6bEhvY-`z<01o!i%McLj~x7DiNcHb zcBN9`yL8sI*%-go)5(kRJ6hY0C6IlCfgQ?^9H#h`DF#WB3&C!KtEROdsHQEVp$bJ( z_-vp3zp9;^p2Ir(aCO0&N+7I{G38)i7!_70YGh>gBePnSkHoPVvRDq)w24qp`f1$R z)^Ntle9?LZC*ckM^p_!NUHFA37A=&wzbX}C$#=_fi)qA8h5e@(%B zao9DT(mGhSI6l-hR-b6>`JAUAjd~mf;(k&Zj6|$jjZcv_t1sYmXQ*9yjKGsVeCDJI zil3TO=H{PyMykn04t&_4^Wc8QDE;nT&2XW!B`0B5vcBiyQQ*m7Piz5I6BO<2EnH|e zm4{D%A?hBRkb6{=ILNLQtKRW@;wk@fSPdk8)=D z9LDGGhHWp&mPI!rS+zgsTidc?dS|OA{1cC5FRH6)bsBb~Mbin~19@i_W$Zb~Wp1Bk z>B=HoL{&aBh){S|7$DkWD0LP?e@#$u>c6~ETRS~)kY;+xZoyBF4_!4s)CkZs#NVgTS`Etn#zK>3lB>;6Hx+16Q>%Z`i=IHbczqbwV#!Vd4w()u&UR zTpe@+MYWx$J4Ri!Om3Wt)Lk}m`=#b7o5~YiH>@g47vu#j8uQ^s0aw1|DTwy=9LbQE zV&U&y=*nNA70b?_2~pt-t<~3k_&gklDl(~$kUVkcCxh)La9gCU8wfS>-7Cw!A&?Qz zb{Wi}9lMX`(&s5l1HU6z))DYapPlOd(Z4NSH$F(#ZuN@wIOTL!E*H!{crmzcz#Vb! z{wkYcQ_vGV`wL`HLC!EbSD)QbJgVsQa~e;Gio<{0X7OZ7p5~zc_LGaVc4aPU`8OPg z!xQ;m{66jWtL_W%XjWg@XsV)}wuJY!mM}>M8f;C!JAAe$RgmRE#}O%znkKc5a=+4* z+E#U%(sPP6UE)nx{4!JiT)CbDiMY(InHB*|^XPQcntsiiU_bW!E-@>>?Y0de^zxoy zWzi(-tv|7$^Zkn6Ryb}5t)uk=+5_p6ixtIzOGt*F0I^C<-Q!;iJHqAWR6;r`5sM9F zdTY~{vABc{lrtr{FpL+#SO>GyC&YL@*bOpfD1HqFtY2TYzLP9*2o9Dej8?L%GE}bd zy{p8`T3L5y{(i^v?EidAykt17hGxu@3SaoSY;EM|FRgMMf^MFjBQ=?6vu!@BK3++X z@P!2!i{lsA*garUV*cKu#eDg8++$hgcUosoQHZ|Pbmg_RT)zDuYrOmUZk6 z_vpN8D6wP5MxJ6!8RjDZhLZ`bwWuW>MU49CZ_~fbVGrldk#y!CNu%Qb-zEp6Ae9}Nxjc2@aT|5{>G6;O@2`xQie)dWv7Fm$$w;qxC~$1 zvV}Gp#^Zjkqg9(?grj{5UBw|rK1tJ3U{SsFC(-`vHTQrTRBn(kG75yWp={LgR;Q@Va}@<47Fi1AMXD$90Ap89XS#Jfrmctbru-OM6X zP^C*!U)rwhcBEm1zoo-NWJ#EoMf2{;$Jw%S-cB$=pfpRPH__#Y=)}U=_KpB z+DbT>EB=tn7RMdi4x=I~Cww8af2iz`R+x-kY2gTtkc9Hh4zSr7(M*F9Y* z@&{>C-k@wmEA10L%TEF6L_!eB^ z(N!kQH#hA1_WiJ0C*B437f06M7CK#?re>+c^aNakz47IW6{=5}=9%&D2^*|JIu^Y( z%_4@X!HL~hL9%5Hq+G$sW`;w3i?v?}4N;>Lb|X3Mi6@#(F+)z0WS)on&O*Aslt#WY zlv-BPd*R@=dXKk=qVL;nEwT>yu9bDCAwn+}TOaR^ROvUdELdi2Y$}`~`?a<#eq(JV zGu2@I#rZN$)s{=shpYOqrH}lM!qY`OJsDe6*fgC+ZiM3e2N#cLI$sIqQe-24bcjkD zIkN|~)&7U$YlUFCPn55_k5i)}KgKDtV-5A`@7N#I`-lOK#PKrmi3a?&>t-SWqQ9)v zvHsGpTZ40y) zo<9x8M(in}E&Sq+()RcISSw${J88j-oKCIEiORl3R%Y~&F$w|at3>g=Kj@x>FJsDB z0v6zhkEeY#Qjfqty!M6X@7HqbodJIy0;$_}>Rzz}G2q{s6S{l~@yf*$opF4L{HWJQ zOcvkwF+)Hf?H%6jABp1RsCj#!_=wjdiv5r04~Kx;z7O)qzP8`ndb^HQXKml^+E||T z@!oER`tEjA#qTsQ-<)CZBwW_!oQThHg37H9;7*JJ35cn56p zIA}aSF7QSHGmYXOwsIKafq%ke{GY}s#@X(FkaND_TM@zqGasU9v>|nyLt$u+_5}1d z=d3RN6UcQQOGoOUeb?(@iNEc$U^bn>m!ycZbBD$LOMsT zpwvaYolber!b|m#HpGgL>#@M|x({+9Cm?I$hGG85)okGt@XFZv(ZFPS`il1vt7opIAIk-L$vUd-R$GNzV3qoPC?) zuc=~z4GDqg80>GiYpxL9>evgcx8s+9Owa6%-T|aLM^2ayI_nsErigbNl^u#auL!j>RXi_?)>$A#!!E7d;Vo+_kBWhDT8`o+Fs@0+&?#lVK(;vrpx>qat zHXRzCo}P~m`jbP)tDm-R$L+rVS(m*5X+e6|ZUjn`A!_L- z{188}u(>fAs>dDiW>ImIAZqOx6UQPDX2eAx9BjlZZKd^FU?Sp)QE8S}ys2OULQF#- zMGTiIW!8I$@g3d3+1srTzc!uZ2g1OjEgVl9TKpSaY~Kk5?}hY7MbVWb!amW+4&8{W zbTDp+zCoU0uO!bc$~2)H5P?3m?+ec&Bdo?&ruiA&gpvoP6I@i#WFMuF-;d1Cz~8Tq zG^5%=WqqXWPXx8wIEOoCh`2IYz5)MKrp7tml5;4kArCAg5;RZ=PHOrF zM432~Aa8aKAd6|5*Y9D^)`)g^G~QPz-{1ZJgj3B{Pl>a9G%14hvBT~AghT^_9D!V~ z1b?rIG=rej=H3xcv?T+4uhi?9NpJ8$f?lIjfn+j^+PJzQzifdga~!lGrsU1^C|7k~ zZc9o&R$(BtxOZ&fb5oizweiJ4L4(&*be|m+QaXjL_g8YtE_+~3@FUkxOF08Jd2j!~ z`&4*a=X94E{i3^5PQi%Kqv1 zN~I^qVdQmOWjFxyEIy;X*f2(`C06cYwo3vw@w$i{etUKtO*c^=P49dj)H7y8&83xp z0ejPY`a*Se*`i&~r$eI5B`wDYNAX?4BvX99jrTSyXqQV8W0N`}2u*g9P#QoRu`OL5 z!96^Ezs!f(F1dj6R4WH>wr}$@kun zJgCj9|Icj@xiDA#j?trmuG2_7wCB~nwonia1bi`TcA|HX04@E{awNT1i*#ed=<2FH zktDMvx=HVt;8{AsGA{jmnG)I~i4g-B$4%4sQ41w*?M;K6c1s7L6q*>y@Eg5)CtNU0E?RcNpJsifT_8S zF7TlzXoFG3Edi(n3M_8NC31mb?>(gBwLoV6s1OofEjq#ql%Zz-XKGx6nBy9d70l5UdgMHYe1OLaTBIV$}J_6cq z+5cbFPU$|YgF)(TyvqKdcM@s(w`o3olvfGJrdlA6T4@yK;x?-LUT#(GtluN%S)llX zV?@>65P#UN`&MGq@ni8jxRDwCe}_lI=Iy_o%bonW*tD5NvHIb0wjHNM0VM5@Y_mLq zcE7`yV~Q9U-=&N0S~?S13`}D^OJKbV0M5bc&L{Qi-+4*Am`v zV~+oOVa7L<_MgNsuMd^>4_r+H$zKHsw2AIuUp+_Pr?b)r0QG@ZXMG)WF@WuWkAVKdHE-cL=xuN zHqmQah;C5Oe@l*a{l&AE&H$Y&6;>~n-f;CL*oRfNP)Z8=N7S?VZDW^-HZ3#gK|kY< znSXjme_?PT{qOk=AK+iC*I!Npop$mCue7RB=f;%(+_8Dl&2{GLy^5^jaMa5IjWK%% z$^9MAwhPLAgT)?1>H}@l@j-Wp50`NeeMxqx@qeXQvHNK}{kvy}7fk$a9Mr8i_ksNj z2Po-~I@lV_vk(3UN49Mk3IG3APILeR{_i;CDs?bEd^r!S-^tgxvaF63J2R1}+%;_Z zpE;{Jf{An6~C*$!0}9h60^LQoyoo=j%_2lfL5cc zfr3DI-z~J-=ty*2xVV0Cm@dzt_i1=@n2(@$|Dr&iGWv1Mqiup0M|KMF4c@zfAWzf& zruLWn65>b=E&x>_ly@w)ATr5FrG5xp5cT^p15e1V??|H9M|Kkt1v4Sw>O~KJyKZmt zd%ynDn~n@nE27VEEm7OE<|Z9eUraytH4Z~=1}fqQ0D2Fff$M+_pqIO8(58b%R~u>9 zuN4vOM5eUj6G4*rEY4B`9N>X++qZIl_69-T$A>6H^Pa>%KCfs$LB3dF*d8z{7#DK7 z2^vHd*N>@wHp+eK33894_L1Z*?etM?S6M_D*^`>dD;aUKTIE5J&R9% z2iuSK$_m_|Y^qsN5r!_z0^)_HR3Z8c(|*z*AW!m?t=mw62GTFJ56L%jqnH<>&SUK( zS!c#Wq)^Teg*OCoIe~kWO*CBBG&sg5_yA1Lqr>LV$hgSCm0Oa&NND8`HmrKbpsP-O zZnvw2d+{^a03}L7(v!mRT~RvRosTz-5*rDzg5bC3>v4W3&sugb(QlcuOmTM<^UquA z9gp|uh`TQi&*dvE=eONIqA&xER1YAhV~L0U8Tx0B)3p$s=R?wo$(?P{A1~0|R^H;^ zCCQ^}%%ecUmu=X0RD>i7v?pYQHvoROF)U;tqR@2c(qcGsif}mskaevw^#nQd8c4y! zf!wlsQAfVbdD-wZ6Cs0AniMWLRme;7coDE;RPK-};?M<`eAt2Mrm z0b9}z$jyx&OnHIgHV_z#b$6bbxq?mm;3m0H&medw;3#kEbz$++O9|`R*B)_%Er1(9 zw{v_`z!~x;9E>FmW90xe*v1N*q!408`t~OO zH1J$LW^zSyt0r#vBp&E-y3~J(Plc6MJa3}n6D3cPs>ann7bvKd)h=TlM^zvA4#yV} zbg0gDt--Sh#EIQ5MvD15bUl7`$aGIMx5y^*oAy51(m{bREs*Fkpd^{%fidvc{SJ3m&>}mhUiNQ;3Ya!R6k5EPIhs-85ZcGv`y7$lyT6muh&U3g& z0AzRj>wsg`L7SFa%^4~%c!2BbfJK!2pF{%z=LtSMVRJws=y-(6)B4TwhLvEa&FO%0 z6}|l?F{~3d^iBGBS4Yg6K>=ll_L|jEu$p8@4Iwb&kqASg!h?}C@aLuOmd4~PcM)6) zZ}>c;m)2h^a7J)2iKN=>dO*hW;)GSU>ab|lEnjCJ_tPrd1QhPNFL+>PTS)J5|JcL< zBcZ6Tm-p$zGy72hcR1F)w9kHR8y8&I@N}s)vHf!=lj8jz5%?YIWyua++d8rqU@Vd$G!z_c`B zTqlO>)1hoYM(Cy?nx^5xBgE$mj~dt9WAg$BPk#%{Swg2t{Kq<6yxHPyT(B^j2kywR zttwOh4w84K=eBo{8C;0?q|XnmS7L;-j4}mmU#Jr$T8_l|@z9u$3#@?k=jTT_G+|=K zXCG0NhLAfDrVF(3oPeF?kHX)K2`Nc7oJghrRLcgg(86KTV5G@~&k8^R;euBr(Z2pq zP=q%|7SR!L5u=DD)-iCL@ZA`~>QGGYxjPLwVP2;d%Ci@;uhOaYGATr)xG;3`H|y%8WAad?SRPmaD0S~M zW}nR!SO264PbZh4FiWS94u0=CXL6r=Q6?bI6=J?yIgAM(V`vd0;f=9AtqQP8_OdjT z-a5tmmv<5HF(-i}at!p!A(a*yY*m;MRa$wMr8OMYRgn$pUMvtEN)fJ_ z)Wfe{7`6{_SCZ>UZ%{N3L=+Pc-#u_=*dhH7Zh7OxV9KGrr)d~T$@Zv86|qq0UIXTK zkfhN%)B+GI;bGa-eqWg&lE`AzvhkXzVO127p#&%JMWcHsy$7Ek%<=z#${2Fo-6=xY z1Ia1v4IARiE)W8C;5A_f4X#7hvm*}B8Kn-%Ld8ggUB!m*XcV4A6NY~8yoipdsmY|) zqawM4WBs&;d59yX7ELj!HH^3r42F{DfVC#Zx|3J~&6$uQO*4>gAjS8_Ou`y5Vkn{I zfRRov<1iL$xKZS|*nQrq5>pOkjCe zN201T40D+Y>aRzsnl`XGpaia2@t}NGO)B#G{o~j0Dh<@JA(QjS-sZxL&aa{AAU z3}7ljGm!G2_$MSc6Hr1JJEEerK3vVm4$b}?_Ix4}%uhkm3_6e;6hb1#iO|6@znDDE zL(*`>1P-B$=;9YlXw2KJAD|5+R2*7#cWl^G;=G>njd~NfKt-b^EM5uPyHZdY%uo)_ z%jzkIjaSFQvD|!*Ou#15v(FL6j3{X%oa}b-RNceTnoem%JI1=iov;?yk>u9{zI#rU zqFkY~&gYGbMI89Wp*yl*X;(yV_;A>WgEOp6sj;0CUa7=SF82tdhXSE=y`3nS@Y}2p z7XE!xbwJdfcM2Znx~p_Ax5Oe?Xuv>nRO%2d%-xm)@>z~#N@!o$CWbFjr7b67>Jb)~ zf3Y#GY?9N|Ci;MhF8)AKi3EBwAN&xZ=~byC6b$Hu5bQyfy6b;5JU3+ZGlG;bkUR7v zdgusCc*;|#9xblwLJ@6J4gfpyER> zMRj)s|9cQWd^#>#57yBj`nxDEnDAQxuoTe~pJebKEf>?RJ23`1X=E?Ww^3a4Wo?^r zil>jtw^&}ZSH~g_q%POL8%=ivo4&|X0){b{zMd4l0}Il?7{nV-zm7tk8NVj!x-51l z$IgmV21r1qh;*cpfZ;Ib(y&4P%p;HC5d;)EAb2MXDh=L3pzJm2jM|+JGbw%PJ;?pr zTYXg?F@ehQHsk?O;^%&QY!@07|3Fkzf`!9{f`USVVuR|G_k}ypCPRdRQWSxL68?A9 z)x(P2$;^~pMnjE_i(3}RYsSYf#4luN!fPocU}ni>&dp=O$;o5RV`0v1A;@h4k&Vw* zqp4)|j=J+C28{&Gps&ak7Yl-s~xWsxh;3&4& zVRlC}P&zLvXZgD%swXQXNdJP(@ToI6{F=Ud#K!HTP&{DB$wzFH7Z3}{ia5J`EucOdrf*(0!5 zw8IC%YV414O^e20S==+{;5ML4=4z*W<8ezxqmm8HD$wd#`=A-2ZB5{+Qo9mkNY?cT zhWed6e9b4nbi)O?{ES;xRER5&t;vrJH+^Qr;eNVJlnIZ0&?fEkDI;5}M$GYI*T21j z%r4INI8!iI%ZdpcYNAqvo@ziJy2RGCHqp3*1Yp?ds!jg8`mn-HRa04;Mj1m~LhO&! zB}AXva=d*lH03JFpP?NXt@NPG4Q5cLK9aT94s+=W%eMo`PIsdSLi8BXfG3IiB|U4Y zJI(?vkh*lQ0ucxn+MOj(jIQ7+%0WKU#QM!gNm=_VJg6nE4tXRuq~$;f7Mo$@TdB$5nj+TxgELafZ78{gc%P}p89OHajM zEK^rhu>gyAYRFcqukx8_?YsrKnW%Q7l>0 zo+-bE>9Z9cN@voi^PW(oU>@t=Zmmho5T{I3Yq-vHTSogA7 znHJNERuk*l|KNOBv-O`|V+laXsMrdk4@3c0|`4kBy z+!iOHeVHT6hHm}1nM_@q_C4B|muiZMy$-eAXcVoD^koXxgfITfn`P;yRL$uaxF0Tw z3w&X3CEqgTx)89qb_Dsl&CVG3DNXvXY#R>3i4GH4Cgn_f3zY;A9Z@z-ZJNS+Y-7X0T5_dFmB6C}Seo$kE3V%jX4G)TDu0 z5o*z`By&ZRP=4A}sBlgQvdqCWND z(u`m01OpQbe~d=x6Vz}xq|IitqXXF+O9xnhJwsrD^OPk68Ou#PG^X-%uLj z3ZOoXjze#zaB1{9z*Tz8bTczOi?;*ywF`FWPVrf$=A#<*Sb=7 z-4pQq0O^W!40yeOIDXuULn6iBDY`bnA3lCw&;Pay+_nj*Zaco;J%Nw6ca?It{Xg#R z_E&)Z_icR;`;Qu|$4iR7*OSNGO^n{>-MVf29f58CC-8{V;kM}JejFEYfQ*Ab(Es+T z?c)}ry4}r5(&TJ;d7ZN9)hBQ<0-io~H0rkpEZvyidbS@=cM+Vk8Lf)_x!HV`ds^sT z_4~L2cU=}Hom|%z9yky_oR(ki4)qeg6vChUYbg5LWnvu#pnLsl`|kOAcOz0RDXU=yLHY5A`e0`o5E;b{# zyN^_h%X@t8??3!Lo*YU1P9{Gf?;MhE0Nllfls@TF3dZer+T0z zmS|I5@B0H}ACsf-AiM6h?&B$QtnIFUrLNb<>-B1AsH+?kxYh$X84>S!-u>%|+0OBf z3CHMgiJ2vwmE*VB!JgaZfWLj;m&V^g<{D1LYiV4C6-lwK^Xc5F|6?JbQdTE;fg%${!Q?Kce#PhZgo< z14Eadl-d8$h@szf#81EG*`n)PfKB#y(9z=jZ10r1M$_#10i|KEku;Cfv7VIv5$Ka*!fqhCEROU^XJ=@CL*Qz5Mbf4Y81VG|cYlAf zFK{~X*zxa7?-HFaynqe$K;VFp!fZ}JpaW?4O`>i2yoqR3H!-nE)HZGR%x#@#2yRC0 zY!^*t;1y_-D4BT^_wQ`Dmi6z$|QMyT( zYEQ4#5qp6zPP@VAxmm66CYb>y!IlKr@guhjL#nDE)3wF13026yZ%z4Tq`=3!#5M-q zUCW!YclbvO5UhXgXuJ#3=!3wjzrWmEPfvQP;+#90%PZ49twok=Z?m9}^_lse+MezO z9_04=KM&=$1%ABriH7tvKNHM-f3Nqwz1Rly#{$ltn8X3yKDXz&+Qxp}fdX5R9PPf( z57VBPy$B?C*T+ zcST1%54>AN1Jb3SF4NO?J)7`^-axK zbQ9V26LX63?^v9#!3y&o8z)x+ca3XW#r|$I!znE6qnuxi%FT78iD<3g zBFdLK)1HVx>T(>si_^zc_1MW)T>HzQ%jKP>sXmMeE$!#7311wqEPM5r*X-|J$IKW- zsaxEieiW6TM|Lx<;SPeg9UtyEz66J&^&8GW4Q>%2icmtsGP38uKr8nOL62P;l5ZO`<6a&QmEu6HS9o#uzj2S z!h_r%`&R?e_7fU~h!DvgX`0p0r{coNE3vgEm!H?E;r8~s=SNtr+QIp?gQ zI+@J2PPP@ZQGLbxVZe^Wyr-%14T_foKR4Wa(aw`#?$=FuYkhyrFUxpiRs#%b%`g3F z2Mj4P53z06?gVD*N0O$NP{lb6DF4KRsa<|4=aK=&IGY-Wt##}-Om9ht3Rd}hCxOaB zAQykdX<8XBmrp;MYlLi%93LDIkC?Gg+&^ zoj*RcB_qd@FT0i4&SXl*n9%QTFm99;E&V!MMAWe-7r20>#cMW=WLgsIvmdlCA>mTx zB@Dy}_6)9~1X=3`t0~Y*n0jQ>5pWJk%mxXuG>iEM+2FSl?c@(>C6e0Rdk5?apcIO) zhB{2FMCac6-?20g?5M5r;^>NwS2mNES0|bghd&B+jP$c6^ljI5X=2XGOB7K@B8`s6 zA@Uzt8mrc;l$IU4{Vq5hGN_mTqL0jNo5RhKFxGsn1u z&<_mq8Q)3lbm8KId|9vd&9shZCD}KTs}}ROyfIkeZ~%{`fnJXOk2+vRiYCNwmqa?LFTY1=x3l@3}KJ-f;H#P9aRkxj@dY>mDp zmKeOcd|-e!Mxq(RqjD5^%~R{&dlKd$@X9rNOc$2q{DDR4J8!^HN6? z=4$*!o)9F_IMTIK#v^|+FZ6b(e4A(IX>-}%2#1GfsSefxH;ziDMiZAO&gM?tM!h(% zY={eB@uAPKF1)vXa9U+dBf@V+QUH5n0iA{kg(xtuv7Esr#7aU8oqin%U*N?6!9S#M z#X{$t(F9rvi-y^Y-er9vXhW7)$AKHQ>zDW<3-yjfpuol=>6Anq zYt~d~qOAW#0c{cMnC+4))f73EBiw)q+Metl1;i0V#>8(iw2Cl@5{4d5dMaW4N*u9A z_$Gn*OG}MeO85)CTa=ubNxD;I0^F)asilkl+y!DyJ@>_NSEFGJV|P>=)-Nj>DRUll zJOz>c#%0<`L@TIMT*@y&OyNYH!HGH2TT}r=0WhtDR8vj* zm?{Zm^|B$|N}pH>1_mb()m`dglA~c0KUqk@t!*`K^$%prqrq1#Kow9Dx^>M&T2Nne zoR1b#d!;BdkYVonH&?z^*oVMQZ!db<(q=u?Tja zZD0p;H9py8$lA*e=NrZM9~_*0&H;hJuJf^B(L4j#(5i@aWSqmuTH!oKvfzbC#h_CU zFEYA*7OSMJLE9kR&%<_0&ta=?K_BZ;XdZB3^V=c~?Ej8jBSyg!Mc512*F;<lhQ6-ADUUdG zqNFBUU1IdCU-Zv%HlgkDmkpdP(`?lMZQBAKH#vE_mYU~z=H>;|Uk*+$r%rjI{{jwd zvJpeNUo!_1A;>`{&Esc8Q0J|%rYE{2GeEN;IQ9B{$CQ3uv{pJTy zu&~0c|9;|V0n?Ktr8E{{(C7%}Qr2=TtUi21^t8t}qeK=;?t|j+Jt+Q2=7=K@&$WBL zkPI&@K~yp|!TkW0{#@J0-ld-HUPg7O1$!|akT``{FN1^Y{sQiNWGGcouVBkD&XhRQ>7WI4@Z6ca23HX=?c+LUs|EDfF<;)xI=>lk9? z@f)4}N5J)8G&Jvem?I`5WiJ?)MLU9&L>9KDC=`#b!5I`vVJV6sWZh01O)!eB+w%O< zsxl5`G%j|Cx590?8KQd|MZ*KxSO@vE6|uHqL&(VFa{yB?wPu~ujfgt_%$u~wk{O9V zYq$c!aAvgBU=yljbjk6Nvas({SojrgRW3Snfzs%%3Yd+l!V%ooea&E;(xK&eSv*q% z>VrHhMk7&gx;ud_O6VL1e{;~+d?=7Xu$pHQ$J8c`g`@y*BLQfH1z`MIXe0@lrZ{Rb zCV~gmbfbvCGLj$hUuS_oB9OxhtpLWf*Q;B^%~1rXz9StNj#*`XznNZxf>4Pkn51|! z`M34TFIf^iDG4%ZKj`=b_q#p*RW!y;Mcs-hI z0l7NYlW@WyI2!Oi9x4W2sv^3eP>iR-;uugk0GcEg(H-b#q9WclBJb~Ur3ZrDL&h-t zTRywzeMD!XvKELnFkw<{Kpji4Cm53^iOz`_%>mJEED^L$+_$E3Ufk*iTie$INsjTc zjXWA}{cHWX%gau`9B+9WoOfKf%TmVFaRDp}RXo(nW5J9}bzOj7TnF8X*iI6ozaw^|eUUw_fe@tZKZ>kkR1tX~B3n!>YDH>t;}f zKW-0r9k3ciT){fR;kDh5Ax_!m2n(fhD7jKtw`~(M>89$YASKxdT(sqhWnpYII-Zox z!C@;D&>ylSl-OdE<|xR;W}z{o(I40iztB}pgtw*z>;r9XEKoOHq&ID0kv0Tf_6H4X<^Rv85V1%xX3pR z)=Xb0CvHyNR^!O$B_Am=4>!!={do?5MI=_*g9?pd5tE$f_yZO5pqhu!f*N2^y`}=8 z(Yu+!${Km|H>^_qu8lC}7`so%tOOkMjoK=Az*&M1Pw-i;-o@q1Uzq3)n zxkK|kZZ<{+KtP>q?KuoM=ufdG%4tDH3}JeqmSC4bEl0ivwrw@+u4b!~net$LsF88Q zTRWV0T3i7sraeZ80txpv2ziXC(M_Cu_do13UWO@x_P~CbKna$;p~EL_or%?B;u_0+ zN>iKdCC>OA#k|-+M*J8osxduqGpCOcq_Q!ZBgs3EgYSWpmuwap&77=ECLSmL>EZ0w z*hpz9Sje^M7R|51lem$C$Z%(3afKk=R!%0};G^6Dj9mOLtZX!hPW}7spmoirpWy*| z^8y6)kdsd0G;mUYB;~AU*fCyYBqw{JKT>8WO|z!O(a1$~rJ!MJX^hTNi8aeEQhWF= zO8z!uk|$wQMpe6=ZZb1C@s;sZN8qN+j9TeE>r%7!8e)syA-aVELwJ~uGv_E%u&KCa z&@l<>HY45%&$aV|4ew%3>>mh%=*_kk@Gt(&mi(KU!?z%Z2)gd1mZ4*6)WTYXO9MA* z2ott};iQuCh9*q0&D0n zyOghDsH;q+*U-JTR~v~m^sO2oJQzyzR;@=KT-a&K;dx?EC=%KvO6Nn_VI(BgOW3=D z=_@$JuBHS}{PTd+(u$&n$lJgfMnpC0g*Gp53<=P}1W(S;?)l7-wN&=D44iYw7cQ~R z6nJsfV-*W$p-pcj34}eQ2fZ|#rWiD~Hyp!xrd1Wk*Iay$UWwIPFTA&rB$;;8r1F;e zo%n&8J4ro54W0+SES8_Lx*o(s8Qpxi;>;0XyM&p-kzd>K93%G=v~Q?BVK@nUGY%_D zVmt2xBMv1qWbon+oW6o{#~7f^?eh(57x7ZBZ@w%F<~HZ?Y*8I^Sp?S7>+ANQbH`&| zUw`-dKG*9zOM3ADE?mAFv-J3G)(&5Fcyxd7X65ePnB(4Fx;8p{H!EN70atH6}U*`KHms%gc4l!RuxLLLd^WtlhmU3c(rg?yQU6 zox2x0ciG{0_wJ5-`vUK-sn7840_TnvIBpufyAz(m&fOV?`G@#+MY&)5cDYE~MXp^s z3xj8u4$CRW?#i!QXUnH>DCF$bJ?7M9eeRR->AJzAJA=vW&|Lt`SNd~r`LLdM=UV$L zcP?hVTf+-+r8{@CJ9d%e`sSb`cl=WS4nObi!acO~=Uuq=iZK1bg$pWnt;h=QF5K?I zoe1Q?O@jy5ZKkUh7pL%*W3=YV8#%INeb@O7P1awR!EQCC|f2H!Tyo zmp0FL9B|V50q!*eOmosjJDUc0SQd9^VCdkV6%5%-&v=G+_K{f*x$jB%@3%S7X0+sS^XN-Ioc(95dER`)iS4*5Kl-eeW zRGjaKT=2Txp@ODokBPa~?jU~y?{D}$-xJjWLo(#;*_pw`K!=rX5qD&BeXv2NC!P+jgKWdG`^#5cTeb_>{a5>F$O2wGQif zFNC=wAh&xV;Ix8F7F_A-q%!+UJ0c7R)ZTp&s||487h$fdJgL42)UrXfHh%O)l(jG7 zrd$yRvdM1C7cundGKYN;_w=!!kvA3yJlFjr)Ur+tLIX|bLu z@No~@wCXWTUQtHUMF#~;amOT~-5SYEyeQ2p*y6v{2IsVz!6r76Gq7tMZ&Cm$smAme zam}gWXG>vHZ9Aq>|B_JCDJ`9bewQ0*C3q-i&+NJqI+6y9-Ay+cHbVIxE4PTZgmP;5 zjxo}lD50oLN$shm5t}x0k~|G%X*A%$2yRAdD|IZN=_s>V;fn;%6Smv#9Vxv*S56F7 z4_(j-=K}Le?MzGE7~hL39Gf9?%EG3JUJ-1CEv>tPm5ku3{s(?~7erH|uSCGsHPB&7K zt(PhxiBmUTI)46ntEAVN`^5bm_f01Mghe^GZ;jbVHu79 z&_K{ue9ftn8|W{uZAStp!I+-F&^jHe$*HaVK*;4X=Qt?p(^y4D>$rJnB>81W*)PT^ zG%MLJA|-8^{2`nxGEx|uGvcV(nZb)l*)Q}=g>pgZu_I>~(ux{|QA&D6?o~*cE{0%L zwr15k>b)IuatwoYyqJQu=`^+sC1PmfS2T-I#}QM$`ckAoTWdC13O6er{f zls=7(326^E>ZK_DCsx+_5vP2Yi6Z$fyXok*W~#+V-Z*=xrn~y+$XC|aq^Y9x{0hzck7Xs{rAo*XijIe&|~mKFIf%PmgbY`W>xY<^Q>@-5dHJ9B%yY_bcbi zcMHN%;>inZAK1Ch24Jp*e56~?v4qFAp zl!R>1El9#xY(m1!Qa#UFTHTS^ic-52j^zL$Btk42$%s+YcDN}P(P=qlHI6q_~Tc#E)$joOZ*-2eaB_v{AgLeh8$B&bJt` z=3)|kWYIsyi2e)*T8tRg;z7%kY6N9m+(xh#EX}ImT#cz%(Fw9s=pd;dSV-0*EG1o4 zqIywb@KWZX$Tw*-&|L&<$tx-TRb$RG3D}Rb>hrdsopJ76P23^ap>N(vI|DB&NR6gQ zdkD+v`q;XzN`(ioUUM50IX989@on4>2EUoCxQ%`09=;q76(<^Ke8Eb$3fvtMS7%x2 z$4&uZq`-E7$&?}muzkfY<5?o(I~4VRH#-mZzR}*{!PhhlKp1V&Zq0?mh`^MXD_UXvxWS*n9J!*O2JK=%i-DP@?{_di(FSR{0qGe)XD(a*#_-jkE}*w zNh_F>$`zEwsFOMci7FB&1V$hcCl~IJt8yR-%|yvJ3WE|wGdB{f9RmM^ey-XVTN*H$ zVslc_V54*w^ig7=iWesz>@GI!gJC?8>}nBe8uHlsP!*9U%%}x@6~qolFi{-b6`jh2 z60Ni!V^_9A_po#%(+ED4E2J9WAN)HmiI7Ob=!sizB-W=5m`i3=Cyp9;E6br*$kZp2 zEC$Jfl#`uAK{jsEtF1THt^`4-$u^as=>$Py2vM=$b@(yG`Gwf ziKYSxo>e;#u-8;=Hl{IIL43K%`vs*0qkABf!tSJ|4JHi1HIp((HlvwzLC^00K^Me` z>Xj-OR+?Z~DuSg(seYceO|LNQ<=BdlR*jB+pva8IS)xgl^qLKTpz)M;fuLX{J zyhsZI8n3Y}DvI^D+ZFoZXFyHmjB9)5-g%EvD}gJYr(nc^9K>b1L+%{|J0oyYSDvAvesJx2!`;O=RI5z?XSj%NO8>xk#JgRDw|0w(hNZ7#Z#|3KQs5VFFkEgg_3>=Ma$wAuT2>B7V^O# zzD0}>dWvK%TAwtzs=BP_f-tMdu{X6yGFX4%`?+`qkWkJf$js*=?JEdr;9yh=-lSd% z9=UrrL$_FL)weJrapg8Ekfb%TbUY1BT#<<3>=TyNqmEFGmf~awEn)#CH45jNMMr($ zmgm3~5KC6O8=I)@qN@>X07WAkmZCK&!G`EL;G0Y|5(t%J1(TC}0@5Ljh7xba_jO)` zfJ}+?5!36mVKh2EI6xy<%_g+KLsU_6tPR-gK~lSk#ygf4~Yk1RI32*I7` zEVKNFv*?7w1!LkswngWWxRM z{sS%9!FDW{C0=~qYxVH%^|_V8Tc&l2=TZ&x6}5P5Kz?De-9`lZESFE^T*E2VaOiZ$ z*=wyiJXMRLBN7}MlOrXAxaZzUG|XGb8Y@jWe;?8SbMlqC@ z4T+(-otTbeZ#xMo99!Fo6*_jd6BDI3w#zdG6Ap)bLpGkKu69frn%XV9K!{B?rW+o} zHl#1L78gR{WW&(14Kv$?$@Q9tY-}aYoW*QIj=}a65-N#T8qTye68=nb$+OF2%r@N0 z#-mlkY(qa%cvf4op;(JjI=v?!a;bEY%NiCorW&$67&I3#a-J)_0}-V9I>tVUMVb7R zYbd%CB^yq;hF?GlmS?f-3la@4tnCmOOk z-rLyG;3!d>_c{kwk4@~@CO*)^4(XU@$bKPAG#v5_b4xRnvr;*FNBc4BXA*!ky+-mS z8*ignLOzf!%`jOwXnmx_m{I zBsiuCH#j$?x0tdt04IH{*?pvovZqc@`Y=o(|+b=a`u#JamOS6jG zM?Gd4sxm#L8OE_|-PAusXJ~rL(6(-<6QW(~7JZ{BzlX;?^sI}++Z~vLrj2a`{?C(u zX)`>vtD{vIG7Y!GF#2MSz3RC8!qBRYHw9KbOmnK?m}wZR<{GlniJ5m^D7kB`Ivc8V zYOdib)o^PhiD_f@i#}>bQszd=BG*v)lUy8g4Q*{du^WG*>5-JfGA`RNQcM(Nc86IM zBc;9ZAQ^WDuJ5L&jLqugx2Vm^MvW*Q(dkxo%$f@miE3zQwv!RCr2#gW?KD%!q-8zXXvU(Z8b&oytoSu4is}f$fZeP_ zo5tQ_Z)Z40L-!Se;*6veoSsF|$hn^mBU`3}2ULb+qc30tvlyp@5DUY3P>fNrg-me8 z@R=DfSzrkuyj>yL34CZOeDD8wr;KR;zo2<1?Yj?Py&5L-8w{=&@q}|bG zpIf`pID_lijM{IAD8YtYNG(d5qV92BOQUJAk{H;8 zghD9TOsW%Zl;NIE?CSV_xUgdU?ag62hwrB=s@!yZKkq?E*%EqBqdUI;i{bnJ0(?K- z@%=l#f5-Q~NS1v8zMrlrP1W)J4D7i$MzK_{+xt_{$35FECt~s|1A4Ov|ty+$qkwyws`*gZP0c5?SolB#< zQ-fLb4ys<(JHd>NU`V6KYI?kRjifpCJ}`7cgZN1iHVpdm36P#I!!6NBkpM5H?2NQ* zB8Y#-H@AXterN-OXOz3ZP*gs)fhk`?7ntXrp^G6~f0=50dvlo2LAK!jnN)}XjcfWohV29&R>boe!}tB z^)h_ce|h+9SOK(dBoIF9R?S}49p@FCU1GDX-@HJx+UVsdGP?q1kK?jSSawEbm!Rwt zlU+ixOGI`8WRJkHw<*!`1!!!%CP${Bv2|ZFMqB4IXsnVt8oL5xmssr4wl3ELvFQj7 z`CIX?y1ELVb|c|vrhbGHr{1h zBIe4)w%FF7f^SB^9^!x;uO}QC1I0JGJj3nEDx6p_ zZcp4c`B_LV#vyLqDIB8h;B(k8q8%&;1*sBG`P8}y}gf!arT=No0p7X$Sd zHXFaaIV|UZdVh_#umkmOj|I-|K)w07K>ZS@U!wGW1=6oE`V~aKM(9rf^b34`3D2+5 z`Md__XZ?6;#jb$W8kk?<@@rUrh03o$`BRvDZ^7P751O(8kv|W}-|=|*{46~FMg>>7 z0FMvX%oE<^nJ+>$~hQP1mpO5rVUtFGAs88to3Vc7*Kz#+h-|VuV zN8ZCVf$tr82i3RUk@s*d@VV@tW2zyup>{GtN;lSmIaLe#|xd2`d z*W{pNIQ4kICK((9D7LxV9}E~%fed1HzXj&>e;o9;ikM z9S%^S>EuUg{h;lfsjLazk*(-?TCSmTra&WLISh?mh9BaMV#GMs9_@|LqJ~>VkzSQT zEx2ZL_tGGxE|R^qhY8uYGeK)x3|a&>Ki1zGt$^loAQs8mrc}b_KGWPJJxEx!)9zhb z*F-0@X~{Hn5j{L5+L>8Ty*5rpaCB6x+aei`;URoz_{@epDM!-tD>-S|Zl=$OvW^zG z9&|6wCzLbfz$0t+g%4w(4@qLN%&b!{2-{(VoQxcTcq*?Lw-X}~w9}c9rJR7XZn{YY zoyLd?cX*>s&!xjt#T5{Jve5)!h!S=VwmM#UDqrEJi`S#|po&%WOHSsOj zFEOC!1I#R{A6Y&%fY}~LnEeF^^XCLGm!AhPkBBlEuwM|u9KJw=xqR9Pvpozk-)P8p zy#Qi%*95GDJ!quZ=hR|f1Vl|wAIJd3GVIV#r%dH;GC^R0$=*9$;qe_h^9fg=b!6xCl}v#}R~%iXe*k{-4MSs81Z5z&S+v~E#q-Z+^4h3pVeX3}C1LsZ0!^e{C z&9yOzx1nG=BTQh1jMk8RK3A}PBy>x2DA&HO)-Gn`iDK=H(j*uCNI6ofeRiuD?WXS3 zKeEw-*FcM%P8S`N5Qc(h!&k-v?Q?ndWp#Fr5bDL*S=tY^+1XNTrP+DDdu8^``1+EZ z;0?oX0;&vU*}L?oWge@tv(-BkWv7MiHQ5JXT*UPcIK** zZ1w62J z^tABROw6ra>@~vRKA#!B2dfB?KQa8ATn&WF>%|>=7SPquTRl6&EDYN=i-k$r3Jxbm zu(q{kmz<`iL`jknBH#R3JR(ggYW{ijGHpaYY*qi-=)?GyEY^9uMQi%ChX_X6iib7b zt)}gCy*DB0zj5e>X%N#e!$SKjY>z~*jV8p!FB61+q=Fj5P4XFUE)Z;zO0s)@8={1)PwyND`wRqnE*M#`jd+QYL~b zskU?7%xaXDYJC+gEh`9vjm=SLHM=K;sLgmJ8I|n0t}KwIq1Btb z@QoIG;SduL`46MEoVv<92BVSycZh;FsU|yvH?n;@cq67#clM^dboRPDpKa0p2Vd{f)yn~5JwrIE zCtXc@h4LibTcDvqAtvyM_7Hn=lT;cajoUN@o-)8kf;@4fsB`zgo5A_31_Qae)c_(x z$ILE#)^nR#G{#*`*QJ7`WW0ANOi^}baLo&olYk9n7OJlE+V#)qB397aI?ecQp!J0D z?q(eLnV_|w35rTHr{Nmq&5E)hRE5cDl!Cy$St_UY(C8M~K*LaHoeY&1qgezJKxebp zs1%8)!vFzIahGM+jn!;O3DKame99g_-?%W|@uC7B>unzNNOXM%`dUrp93S z8+G9WKXaEFFX=M$=kuP!4^J;2pU%x9-!#pmJ!im}E3h*U_6r;=8@Dd+D@7J-0GhhG zxqVcRKx1HR3PH2m@jOs*V&X|d5ZXEl%??}*R49IIk3$nwq6MOvIDE!PG_B}yd9w2* z!Dwl8oH0MHQvA3jfhc7ajwb4yXRZVqTNHgxd@4O0O*}DFDq|yDes<7N%JVAcSwQB~ zF=@*2)>+S?F7uuPixaY?T3nhbOR0t}PP$+e)~JzZLu{IONqcZwNNPj2=rnB!IfSQq z#o$E9fhN5QP)li|V1$~woG3&s&uU9b*-d&2NN!dXy4wkxVJ3H@aC;3Rw7|9Vk!wSC!WR*`_H3SgfkADq2ww|(RI;i=uAMP@ z%^eJ1BbUUKA)PM>VCzcI?r;Q~(TXr*3|nZV9>k_~@40;x>zmXLVs0O`kuWwi%v&5= z$yWrjab&>|$>v7qO-v?D-WzK8I=XL^a44FM9MMxan;+uY#KXi@oQ3ykM4MT~vrc*D-F3i(f_}_47Bt`8c-=yW7eJ zD8Q0XcS9u`%@@F`w*Y_B0gPVVR-a#DhFh>;63 zQq#2FF-lINYFe0FUd73^xSP?c=mtG1`r|VgD$rkP(Q>Zav-BclXcHqC;^i2Lo&)C8 zh7eQXhBx#1s5yHD@|X86!U{QmKq*Pt+L@D3h1!9Sj*^?XVT108aVZ2imhBbsHq`B9 zJZ37~8>U*mDq9)D!_vLETTt{67owX<{7bv>r>OmIKVtNU#W>g9H0q9VOa**d@!%Oa zP{G%=%el+l_7KA{g^DUl{wdGTc;*Yn+xAhn`Dw3aq=au7Nurgt8os5^p6N&vg~zdL z%s4IL>pRTD=dsoBb=wh{q<$gW;dPXNMSR^{!nYo(;Y-|r>bmBEFxK()qLyU&0Y%(~ zTE1bb{oCZ?P|Y{jkwASYTRmU#E)NBL*A;z5EgVYvnsrg%IO`?Y9Gbt?%lh&y=4Vv=N4#6V)^7doyJ2Q_t7+@%&q(Q$ufH>|&u(5r z9rCoy1K~?4@cVo=emaEj=@EYDTNpm@=$B8AZ+`k6ZKBHmvs()@iT?wpi2wb5CWcwF5!?WzrbKqFY7Jr%UM_&jW}~n>JYqmyV8N zw!!AEB5)m;U1X)U#9eHoS}pRQX=}nR{+e{m3QR5i_|xIlJ%Hk$U0~N1*zU8#LxKw& zK(A(n3z1?CPtTPrE#RCmk}c6Amc?}vhn|)}a9PBlmuM9Ub%~jiq-FAa;MjKgm}`=n zJ)vsEWJoOIi-f5tfeJa%Bzu(tVs;{KLBFlFnzEFz zbYK(p7Zg?2rlfO4;9w{tPHz`kx6;p;&(d+{qP`#2SA3ZX-f>*24h7A(L6h0P*cuaOD7|G zBY1cgJlwfTJ}go3IUci^z>$?WFfmSbeUjB89@4p9yzWLcb%6_we=cKLdmJXFGAapY zFRX~Oj`6uD9N{vA{WcX2|4fC$)~xc#?p=ZvE*0gGHL(WS{SuDA=&q47&2b1G<7kG@ z5hN0u3nd6@9od4nMZQt8glA^)UJ8afLX;j z|4f!I+Ga2ixWrX8{I!~z)sx9z~58zG|lXSO0Lnn-rc#ncefnM1iIQj&j>V$Fr6 zdTrk#-WV77F{Bmj`g)7nfs{gWVx$DBQo|Q17E5`*JV8US8Y#KfW?sW0c}`XE3j_BO z4HQ*oyQ-BIY*>;q1(u5d5`#NvUnX{Ybb-ee5wW~P75@T<`@#s5#;@~Y^B$EK*~nyx zE+Nr1^!_ZvB#)&71WogWrILa6mQW>XO)t&<%fI@H~WE zb1&epuoAGAs>gQts6Wf^Z$!};cfTG;RQFf`wYIMr&58(RU+eH$4j+SDEx3uVAvc** z58IBwfr##`>LseL)0fCJ8rQ>C?x@=c!B<6t+Cd~%riWH2g6_3UCT22xiiCF!1Bu#S zI|vK~il}a%D)=I*GJ?_?&16N5{q5ptwPXMd38Di;=iL@3zDvQe(ClEo(~h=M3d}og z0dj+8%!=MoqG%5x1?Cr2_sTBk(zXRXNlMEtJ`b`%R6Qfsgl?eBPB7Kg`FJWD(KDtK zLiD0l>{OK&c1@P55tC!sU?en#eLrjxVI;$8XMC7{WK_VLYT33?JL$^O+AfmZ=e~=q zS5GI}OI@elnb9y)N}IzhIXy%;rJ%;JP*DAamhZ<@P`gT4{OOv>Uj_#CoY?wsCMFy- zhKpv76NSpYfC}T{Htkcw(z*385@pi}MQMLS7J~>z4N#L=qfu@NN0}uc1zUW9NOAby zaY#yBKv!T=Da|)%XUc|30T;U%mkOe*YV6$rOp$rMK&CiLZi!9#&mSCr))qb=A`2|) zid|f(gGI$%jM1mIYH_ilU991#aq=?@K?+f4^$AASDlqOywgzVjp>$B62}_!sG;cF1Sc<|VFHU0P~G<(7`h1k_6SkOhqlvsLR=lpbFj_^0YDsD|Wo|k`$;VHBoG4t+S8nezO627OQ5}TPKh#+0QcxL!wj@LA|mmSah+t zGV3}l5e(UTs;%T8jk~q^D5{VQflAOGMNn^K0HQNVj2J@LGbMOY?u(QUz%3fbz10XQ z@}yIC$_S&QMQq!{&?jFdheMbEv-VD~m>Fd;Ui_bt-#Cm>@xX6jMhwQ`{CR*i2Q!*= z{|VC6&tQOBg&{^UgP}XkA`l3nSq*N&;pHeh^fPJ%xTS;|(H+X-o;I|Ixn*q`^yElrUV|xyW2LVY6t0R{rHGqLcb4p{l0JE3-tSPS&WJ5_pXAz zvn~6WKrB?(y%*hi!NQ2Msl4;!M^cOoYia7c5Mf(`qJU}Xx|qJ9gp@q$wX-@X8e`us zLg+Gt1cqTn$2aH2wjDQBzE-}A*#rP%g@d?Ks$Hkj&1=|qp{|P{z6+^_C~{RTjV4xA zK_6Tf>bVGAVJ3+j%tS!XMR#4;Ildr+6_%RsLR=T=xbGsU>q4ChTr7hXwWhc7c@{5r zVPmWlX4i#!DWv6;Pia9x$A$VWbjq8KYSkIj6j_3qJ5!=-7L)ZR5;`ur=fc%8YARst z__Xj{hJ>2_44M{PKo8o<8RBiJ zmhI@f$m$x=6bf{S%~}@enj=MY>Oq&%-9f7ngA`Q^>a@|r*EF!fd7;3m9N=dA^e<^I z4`Bi@iKP=J-$ip>q|tW~20fb3ZU5YUSJh(gvMX)$!--V8uSrE(GsCDhdoRNH5jFUw z9xa!eF-OvI+z^B;i|=AkLdWlP&xO`BX_#|S$Ayc7=c2PVJ+hNpJ=rPh{_Bnlbz2xs zHdb4{I>|q7w)^C_IN-LB_={xx+Haxt!fcVYZ9&~4YUuT&EtG;2J2@_z-@@hYxQN|v zQTmRc2X(*2L>NUw5Ko+_GtIu0V#GG5sJ;vFTxctcmFq%17demIn)Mwsxh_m|UQ8Rm z?-FGs{j`%#q`$)qNtyiUy=d->1zXEy*bC!c8Z0vOUkpJ(yEao3sn6!2l)Lc~!~%-WM!-0B#nphQC+YgXIIWo^h~-TX83 zP;yxB#M)>m5^pYclaaf6B(S&Ih_hPql@$8mQ`QDUXM{(O70uxcxprCdFkExy@_}kj zBeRz*0hUxLYxU076-kc?d8T*cxhv}I78t5osf|!tCHGXsZ!Kxa4t~JtpgC{JPcnr)`AG;Z`H9dz-AMHMg0MEHtM-R!$xrGkZ4u@zx2uJm zQ?iy|mWq0$T<1-v%bqmqv-Mdg=z_Pf1ah||s*>Umy}~TKW%NrWUI!EG1o3ddRcK>k z9q%k@Y2vn~Rg-qgrliT{XXeuquOxQ90X^EgMg5|Ub;-8FHyA(TJF3_<8hVlyXBC9V z$irIM6h$(L3$-&e&!z?t3#;w_ps?P9Ew{zMUbu3t849k zB&Of1FN#mFX$3TR2#_QP6hKbv64IU#%Ht8V|1bYuG7yruFlU z3hfK^bRRC1-M2S~<*c554W5G46)QG4aagJzRPr8o>MqyRDcEh&)%{9Y_bY8(V~$i^ z_iKG!ZW$GJNf+%ZyOsF7uC&KG#cz?L$t@K3c285?qd>wl-A3Bw*o+v#1WHM=@IrmSr1J;z$Q88-9y(qKl#%<9!*`E`Z`e%M&QI6SI zmofn8QX4;$%e@5&7zr_8{|{#`wG>F<0+RS+I5c)5WP_oaqrTFT5>wT1IP?&SBTZ}~ z%Qc`l+ice+$qbfA$l{w%VVO4MwI)=RzKe7uw6_eaNW!huwxcBPY)YAuyKj_jozi3) z|9bWQ-MfcZPwyYC`|-`Y&c%L%wb*iLrKL*>54*UvRK}>*vT^%}J$ulS1hLq1aCU!t z^ZMy~9D~icS$Z}$^F^6?xf$mSrsC_z_kVf!dK!M62Y+C^{=|6eJ{K6&*1A2WGq>Ru zbZ4FzZh6*VgE==?XHE>Z?7`?H{lvw6pphoHYW>lXVm-h7%&{(Z#UqT5#)^OVm16ey zZ(dkzd6~nJVtdsXT)=*z{%&3(&@4aH*3p;voW^m8lMA3))uVsYwI2xWHIh=O7oMR zB}?5eA5i|nZEAmRrT&@N^}nQfAEhgRVXXm%%T&M~tfV?%C~GCqueCs{YG740P_wB9 zJRt=%TS#&#bd0PPr!s?uUFX%R(j39NS)CP z=Niw66rt=jE4z!kad|UUt>ozVp>8D;j#RF6v-eghQ|-#ooZ!j@{p7&K(6uyqaJhk# z+0O+m!$jdaJ7)M5;(fh_rCC?8T$QnGsq{T3Tx82o$TF@fS!xFK@luwHT9(3adofE1 zlsH<=(k$v(@*)fsEvFimRQziAd__%5tIaf8QA^vs--ex@KclQ=5%2m?*iuPzY0IUM zXQ8p#HA!dotLm2Sit3gUw$jU6#xmW}rhKe$sWpariA#>bpc1VyE|jafv(rMK?9NVYGNqi~#&K_nOPKa$=^~&z-ej!vpR(E!7 z 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 Oc;BzdmNVFQ>wf`iKm`B* literal 0 HcmV?d00001 diff --git a/docs/PCA9685 16x12-bit PWM Breakout.fzpz b/docs/PCA9685 16x12-bit PWM Breakout.fzpz new file mode 100644 index 0000000000000000000000000000000000000000..cacc40d61b538a74bcce4e649229b0c93835b2f3 GIT binary patch literal 22515 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 L7Hb^EA5Z@USSen8 literal 0 HcmV?d00001 diff --git a/docs/Wiring.fzz b/docs/Wiring.fzz new file mode 100644 index 0000000000000000000000000000000000000000..867a6c004a30782e4ead3900901c4380d4b5336a GIT binary patch literal 264332 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 literal 0 HcmV?d00001 diff --git a/docs/Wiring.png b/docs/Wiring.png new file mode 100644 index 0000000000000000000000000000000000000000..79d9d193fa447f6a5e35b06075c5caf617516850 GIT binary patch literal 234271 zcmagF1yo$kwlxZYV8IgHA-KCc1Pj4}ySuwXfFMCbun;UX?!leL8z(?;Y24kRk$>mB zd(Quz``#FD3>td$W>;6$u3Br(xn_M)RhGj*BSwRRgTqjefAW0eA8g-< zh~s3vB!2(tw=@dXX$1DF(#mHIq0gU*gFMWI*a#O_S6W#Y-4Y$~%1-RG7rldnS&Ufz zX!S8|-(_yNx0MOIpDZ!93Xd=CFy*Q;e8!eSq5AJ%6X6Wepv-%{6t>s@?`zWvr~3c< z2C8>yMJa6mY{-K#CwS%hK;$`KPy27{QEbYg(0?=*RcXD^-=IG`SH1SB1+g>y@4YQN z3jS>W-4oze&~Q@Xf8S|;I5)!zO{E_A*In--zx~(s|LI$c2x`!)|1~bE&%5U|x2*qP zU$NTw&))y5jVLyi|LXGpPs4SSFaI+>8)x#I95a1h%V}Pp05PfDQy8xig`Q^iG=UTk z+n&wq>H<8txdi-rJ44`IqG$4n*xdS6?{{>#?-+h|A}d<;gATtVtGq5#LDJfgY&!3b1-;R(O z%4^KaT-A@xO}txOn?&Xe$wTS$R;8jSSlf+M%-r7RSz3`T^+kaK;2P3y^);bUpoamW zjxlH7-+nrcE*Z7zI0MWj4w@M?>Ns$~I}2+`+jdK-E=v07n9WbGrQm)}7x(@^?Y_rm}kX|^sMifE1Whe32( zF5vvp-ZK>cQh=aP5l{2CQVd5_>Gtt%8DsxxlvXXpxFSGJhX72!V{LWK~t+ zWsdW_qF(@dk6->pjC&DBjW*q2H5ah~itF~*f2^B@caq_8SH2J*s|mXqvVkxqCC5!sM*LakcD=eUVT)1Bxe4E<0c%vBU@q$>huYA^&bDwj+j?hD|u5_W? z6ET#kElAuchoT4)GqrJa34fLZKb>kbOzB{knUWR!h)3}F=s80su&{n*!^;#5J`Qja zu;(c}`8c(5xejZqwbF0BEHWxvd%75tQp0_!_aM{9B;e8U>i^2(Mb27SzA(S(S0O9v zt0MkcOLH$6YD^>iIf}zZx_4i?DPZ-qvFwH4j|iQSuow|9m=#=lA$AO6%zw5ES^#(GGGR3 z{;|uW@P&Oqnc$#?&_->?9)hp0GszT+Ca|sf-q>@!dr?r4tA_W%kBqK89x(ow!u*ROMMGGz=gSwy^1H)H8dkGuR3?W}nUYtY4MdOSoOF$O0c z-Gw8DN~WF&&N)5qT_HCeH+w5YbJmK2izjMw#9XLV0%|g!VK%x+2h*iYXIAF7&%|+= zZQ^d#5tQ2KE?liuF&(Z?0|+d%${5V?#J<*5;pW#3&2ePbC~jMn^tG_2T{2jpVV^R_ z@P$%aE#yOPp5y*|u9wYrzrt$$oA+MB9QgQ6WLM_RbL$EnskY(ercq+nYRE+WyetgS^syrIe{@ ztG#v^$Jz)h_u~A}9IdM--m@3&#R~_ z_YDqYZS?XrXA-l!Ly3crdQgr(U1WKOHq#VA_>x*}3FT^HmE`N2!PoI!&QC%yx ztxcTD>Y6JjZ}WoT?bfe7Rk+NYj*o-49zBKaQl^TTo-dM!4ETZwt=hBOa4g$8%+$jU z0=N5Pz6+bdVQ1S14zIm9hMic~j}^QtOYZ}>hd&VwGB6y%b`TEPnYKc~?MCz{Pe4G* z9opMY*&?}}WliI#@#bF=6Q^)q=-aqRlfC`|VhHefz7nZ*;T`tckx8AkX&$oi?}(i-6?n;I9i?;9#Owrnal(0zrT6kC$-OY~Zcc~o zXzwe9k)wwfm%5t&wq2xI4ggYt@bX!bS@L3~Qu^{@-?LKLJ4dtCO0Do#*+qp~Bp)+J zgP8pvXrB5O&-L@H*f6AQKqTD`@W6UH5Co|OHiJndZ zKC$kympjclh8i%D3m@Iu6BNE8lE}rLeV{3SO7O}AlsnSGeLDYj`R(ITCchgt2`2f5 zjV>*?*+i&uj8wbqaOpL|_c^e2#f{mhY$3++@NUPlU3+lbQvZ*~J5nY_Ynud*`+T}T zt)k&6UNeWnZ;T2-Of`=7*E{MPXMA&5n#yUwMtyxibg)y+sHue1q2f6YM-OZ)TQ9@F zjmHNkx2cd5bwlB~uI9ju-~ddev-1Pj1}j!~eP!OHR{tM{+R8uDjNiS!6`NkpJBl5( z2{NqpZv~+RJC@>(8p zeD1OaHL{*R7QvNS>r4Wh0{QE2=7h^tMFH}V8o_eFsc<~L>xCi(hr2xA6tXq1j+3z| zW8;Ir*sKy+Us1;O>D)sVNH5rD)BAvY-kvLY*RLha_=8dIAl ztQ#FSeTw1qN+so5!+b|E*kN5q7WgXS)3Wf)*sRXK81NA zDf#q11sc;24NmtnWwEh6?gaa8H4Hb~O``CW#unj9c?A74O(X?`z@1div;Ex*OlY=e zoHTkZvhTICWTg}GeM*m#;Z(wDLRt0yT%Q=N<5{c9;$cBX;-boI2x`yg4tqPpTj1`HihkGu- z?suG>bS$S6mRmIl!X^sIRR>*YpX!Y-ne$@ z)2gxf9B|dV#OePQhNgIS+mq+hO8a@|nRhQ^h2Z)}OIO1m0cJ(=4m=d(ASw}KAMhm& zu8gEwvftDXIdj+qNPZQT&)%>-!?<&H$GImYcM97M4*b1}(rwq6CYnOt497!-jp8xr zl^}oBVB>MAkT)r+h75L}45+iBi%_#&DGq~DPw9DQkz^gm3*9c?w}=3j;eC z#e_}7jyxIP`?TVdeQO4*r0G9%=LAFj7~L%~0h&Wk|IZA#zt|qxv~#6`(!jw%uSYlL zK*LSdpg5jep{eOtMB~!E{S$zdmJ6cZy>MdCnzZ5U0Pb@m0H(`jKj!#NMLfF@SQbnx zT?khjvzsX)Sv{UX%b%R$9X^2#xD))xvqFvXz925B5HyY(Ti1C$$8Ju2Oe!?k{ralMR>REwbihAGA+DCI)SG_~o9bN=t)RqzsOQ8_X<9sy^Cz=t zrlU!sBL>EPshi#=HnLkWO})&Nke0ARaN2<2c&m=6l|G z6Z*qjSBbAF$jPc0(1Kg`4I0GGhW&<_qPqd~yn5_T=b3IURhOlud=+0v#2s+^ASIB<)wUIA-4WaFv9YJV!c7Bo(Es zDEohzH^|5+_!Bs=B@`e=3k71D@NuBkS5HmOMnw?FR}0=8*TobQ&fMu@VDWn1v%L6= zCxD^$pX~(4Kqx539D2)VU!#TF#XVf#K8oC4r-}GJz9jX3GR-8%0yuE8ws4ot>YoaO z+GmulX=Sm%RoVAP%D9x&RD5r6`FA}ejy(3Lq~1+wP82FW+w`yn1@Fz12Ctdc5o1)- zAzaL!Y}TCh?3Zr<;KX-7;#GA3Kjcmh+(I4+8LoJK`s#c`UfOyb*V<&dU^6y~TGXQy zS9=b1=AT`RuM=QaS$3g<1E}F};^h10RWz!1%)7j+uNngGW48lkkFDNSeIReKX%Xq9 z`MjI_Pd?&TA^LT^)xI$&)e}O5%SLLm)#iXBx}otcmTH8Uf{AKLl8mqFeKq$$skzw7 zyzPdI=BeDoPC9Bejn3H8-Fx#`q`xe?uDnzoxs&2?l^HWlgNv;UnOL*y0PA$<9OJ|8 zY?;=O+b06B-f$PrmVt;Die6mAQs^6_XD@E>cj5G{RxH^eO#y=sfrm0dV)icvIoBdd zt_f1k_O?Y0_)H0DuUqnVvkmK7lz*I4_?-`@XtaVdC}3YyQq@&$&CS3@8bXFFbH8Gg zBI9ctR}q0J&@Vd#CL#4mC~7;I3e+L-DHKh={h(uGD`Czr|LdA4H{6_ST~si;p|SHk z4j*zb?2x36IK_O6uXzrbw`5!yQ`K)np496^Nx9V1=+*adNPQ}Bctyr?>H2G`1vv@s zSu8_kU7o~N@;;V*NMq!wqX62iQ3t|f{6E5@nw)7tmNkB5|CZyTuXoYS1Ycp z&!`b{vNJDJmd8Yb7Vfk8*yomuCl$reM~qAU<6CDR!ey_W2x7g}hqHFoE6!pe=F+hb z47=3*2b9x0l#8yRwf?xTGaaqmzeGUU*{$Ui7G=5;(iU%n%Nn?f^@+9ejJ&>LgVYoM zAye$ndF%=pJ1j3+9gt*}ua&qb5xqH)$@q<45+&B^^`r5o}!++)~A^tUw|J*bJFeZs|U*kD586sz_Lm=4_bRD{7A3YmueWy;}Bz;Pwe##=d*fT?n-&xc{dIGqdvt zT4A-R0+?Ra^w)Ikn>^8($@Ov_^lxmM07Mm-ZbD~;8svPq*|c~gw-n9jE>-&iDxM#6 zBs2MoBj<(-*&HEpXXG~Hu{MoVFY+t zzO}yM!WO^PLstk}D32pHe=*ooNzYhKVr-bz`8Bzc2u>R}{P>HjjmDN-;E1P6v~*db zz6L<#5j#hWgv8odQs@4J(4cpqXvdxKoE$NNXQOfm#7c=zuhf9VO)o&Zs zD_M;&R7VGqh3|;CM+qCI-#uR$Vhh;XthH^&}?64;zX66JUeFJSHnM=r(ek&`B=;V3Jb&B_qJ409T=|sxl z?naCGp6`rpg`&AK6(8({69$WkVo3J*c^j+I>`M2Wb46yN1yKw@`9}Xo4nlz|&1A!O zT%0ZSyj1*sTIMQL9=HRl&(FE$V=hho9FjH(fe~Y=#O+Mrr5J*$xZjwm;tFmnr;t;G z^&F-ADFOLPNw!(``6#|ZX)(Ma=t4H)53wUj#t#L7VpODZW)R}${fHNEyR|i=i*5-e zwGpszUOphUk-xws={N`4@;DpZRp*+}*;qIxE@AjAG%x5`{C+sM^tzcfOS^=&swQxM zLBG)4Sr>+A?47bduUYDx*1|_{5OQ5&Z=Sd&7bxiOXM}cU#eMe32B-X-h8P%tpGvOo z<8@4|1^%cI&OFzxXcQH`=$0;Q)|n8*L_qa!hw>lT63*pUerS8e2mQN0ZMYhWToL(Q zM>9^E&a{O)xK8M7JLy+UTdZxqi$?1svMfmLq%Pt=r)=b-t5xm1<*lQNZ;w)%61HAn z22fmHFAk|4ZC%FlVpq+AG&S28a5Y;Q&zNoAOsQQV1*8<*GAT~b=9?TQE?ebQBJg4w z+`;T#wm)K$yw^ls9?|=zgyc~g%8uB_YZSdC$)m7WjHI5gv~X(?yIiY!#rg^n0B7a7 z^Gm$eZ<3HN3yUYm0A}m!x5lJASGv{t8iYffoNsDXn9$T=ooBOfA{+_?#4#M<+nx{M ztsM;ZXMPQ2jGHdDFXwF)YPiF($^Kb{f%{oJsT`y`ET^opTS!emA?;8_bhP4SK7>O0 zlH_h`-eu9+GOHy=-HdkGSNfazh=zb23S!tK5y&(bI~zpp6P*wkj8V*F_8yc?R2#ts z3O2qJB5OH$@)aR}2of*Q@;fYiyh<`5&{j(z}B26i4bZE(iv{NTFjFrHzr$lbse`67T+_TT5stX;659Vn~1xA z-XatxxU}~*q&VTfINY8q9(p<}e^2LSf0vB=JdfYg>YoQ&f*p*Y$rja%JYItv`cEaD zW*=e$&zErje8&Z%)Iy_~jP!?bTZ3I#Cb++3b5Za5uC?*!=k@oke_=~j=s&;lhSwe<;x|zj`uQ4YR#39(DjC`VrR3aXlcL^NmQ8BuLO1O~pVo0Z>kY?)r<`8q9FW!4#k1 z(-}nq&RC8Gt>2`@QS^_9xAi7Y#;4PD7h}A(wz)%K(+a$t^_FHn;5x`Np2@d2G)%Q} zNNY~<$WFJ7uayTY~wM)%+tzvlSk1jLT12OyG6XAGLlzQMu4=}3L~qG{O)Sd$?V za41FavwI%9SAOV72v)V}^Xhb5zr3;V%U4EP>7`5>K-Iks#Y)-T)QO$mncxWF$U@G* zC5AU|x!$E#m-@y8(j;deD2RXrMe-Zvko!N2Rt(jG#U3qsZ4Y;k ztPE(o8$wRK380BQJ%5+8PLMLuLj&O@p{E;jAtSLS)ruLYTa7x4%I+)`f1OzzUcz~L zSlV5d({4_clJv5&va)}pL|oKeNeKg(rfTDJ>($FZ)p*F6ANwg<<=@op^}aO^id!Pqz%h>dh%M; z62Mx^dH2~h1wcsm)6=h zoFm>DYNsGGK`iVcJfbikTPZdJN>l_WHRqluYh~-t?uee{Q-gvt{3KEvwP=14+S|Yg z;^`t1ocpWIa9aC}dV}AFVX#{&xNoPYzhiS_iG>j18W-c1ot#fI*;!e)rnQaxj=bC_ zWC#+IlENSxRBUXRNrSzyufufOO~eYOf)~p9!XK!ybpV6F|KkM^Te^e6b1=e_6D}u} zY(QSDUinqeJ0OBHz(Err8HbfNB9w%CaxRO3n?-!|br%7b*5zIZByaX0UC52$RjQcW z-U!KW+5)-d!m~#|t{Rm_+2OivA^OiY`h!;CPIT<|w;f~)m~n#PKWB#UdNjNO3|By& zb9PI(+FDbhjLKf+*dXbD*8YLYcBx@DK0B0KtItH?`1I&EAYeJQ5&bqgG{ju~n5%VkCXJ(vfyA!7Asl$KlNM2qJqp zn&$}ps~bCsYF)gYjRt^7 zFssNL*XY5Xk+ZxB8y=tb6*>f{SWbdrtCx(?&Efn7?7)bFFg?tF{}1D(P($3;Dg0&L zse>-<*UDXD8YfoAO{5>_aDu>K0b8}KzAr|f|-#)*jW-MpHIVFqsJ!K94Cm(T{Zna_+Hak=$bU#Te^-TW)c)vZ z)VhJTjee2m8*YWm4Zn>3|92D&_97|J`Y1M=olHls51PqSS2wT&lXMe?ZlHY z-5f~7NNwM%iHU;NaFjZpr{GC4yz8{xS(jXg4P5X2A}@4VXy865lkZ?m zsyRR2cv#TAW>>Q`wA4e&SdomN9;N)#x-Io5NLo!;Orff@_S1CVgsfGTu5ekz2<3bYqW9+I8-1jprtUMiEk5w-&TKu=5bAH19 zRNUFTsC_#DTKHV5@jwfL+<~|VUO16-&F^9+pu{!Z>Zp!%y(Vw_5;AO`AdxLdld%j@ zap}fa&LMN=bGzESM`-3XVn3-|Ay*&~=ip8O?%YovW@Rz$%a+C%OIg<9!Z9OCo5s=9 zl#j3esWvSSefeVnoQwTb`VsE_;1PYF%&4-k5UFTtFam>wBmDz92_Jf1wNt|=-^y&P0c-oO(-{-6U>e$JCQnK3YE}B5@0#vgf}9l_-6>ygX4)Lw*7O z{{4Hq_F3#KWystyBg+6Zp+q~lnFGbOKX8VTA!`kW^9ck}*LzAoIQPrwD11frPWYdR zLXUUWlL5DTZ`SNeP$)n+bj5`vUc*;N2})eIpmlYUklyzbqP20H?3lsJlOb;4s@xvz zf4eO6uo2T@Tk!0)?3dROB9v7)!X|HWE!2LY>IZ-e6^oKBk$XBZNO*`H#y%j0Dd8MWf# zVoGsw@tVqsJUM<{=w?WuZc+|%93og+j9t>(=kwLB#j7*u%RlyZcEkpBKxodJh*~5Q z%Z`bT-Ut3E7kheo+DC-^wun8Cy-Gw!1gS!p?SCt2aNLN|pru-&O_Jej!ds5Z?K)DLy;xLg&y0W}F zlJ1Vz{KGR-2yo<3Cjx0CPr0hu*&k)CV$q>$ixH! z8k*cD;tEjGw2b+`rlgT}bd?)fvC9=BeS)u@me)i0-d-|A_n zO%ViAj&Iu<8eVS$!aVHvvAXcqQ;okKfk4HzS3B}(yvCjC?>Cpz9=DgAVpU<2#COL4 zL%#n9Lypp7c0(Mzo)c;#lT3)iM%&`eqQ7-aGOh%QIaTCTj}Yr!0Gxe`ltT?{xTG zuYU^55RLr7o8vz~fa!v~#K!gQ4g6cl?Pm9#7r&gL9eVCIiw=BR?9YVd+F41Dy)V+`+^$89EFS|q9%=IArQ{ADhG1=! zgqJZ?hjY`2w7cMe!IuuQH+%itJuk1=ycg$jbi65Zj_za}C*y&@g6X9#@GDg5-gQWv^nJ9?<9-sLtYpr)^w>Xu0c`o zi)U-lhVZ<_?KKzf-9Z+~Ds@H|YJQyjNUSMYrgnzhGA3U~m;?{ST7V^SN&}$h;UXp_ z@g`fp?T4{3N1P%A%bDZ$v8ZhOeE&SoVcgkA`Pg+{^z`vk7XRgVWnuOnpMpQH_ky?(+VUA6dgA!{+rv| zvhBV?S@D;b9+Oj3gCip})YM_g$+$e?@_{E8exPhDouUbs!KU0LZf`F0doKtemv(=v zZ~J9|0Vw!F0cl7f+6|D?)BI8^_SV~9UpA&EjMWh&!?nG8Pdjh7t?BOGj*p;PUt+O0 zKcG1uHMr<2d)6NO0FO_W*X?0eb+`JnF7cG#O~tjf&Q6wl9Lr#0yu$h+$X<4L_se+E zv_Me%Bp@Rdu#9}4D!PN8)ArUu_3RS-n^J}o!kd1#V5v7Mkj-E^Ym#?-jo6Y~LZN!6 zO%Lw)7w&vl)M!7;c7A>iC;$Gv+5VprCAL~~2qq?(5Tb;XloXAlMcviq?nD@n)DTWL zlT_9{B6hx#aa(<$>DyLNOk?X?vw4auij9pOD9*Od3B=D}4NzyJr;ofC7dQ55!v-k| zuA#ft^~*m;Baq=gTx(LuVfX=sl=i917+KAU(o#~&3X|Vq&!^+HZ_e)4_jygkZ{ES_aXbL*QATZd zrh??`?95@grM}A(pMap&WlbuTMOR8$8FMGg+sGn|mzNju!_4mD<+9kc4G&^imn;HQ zHt%%;1P3)4fSnm%aOnA(MCo6KNtPOtYvh$oxB>Q?#t}luQ7t_n$14T_4jA8qS1Y$( z+zmg*@P6OleoEgHHT-Z){@C-rfS35GnyPZ%Gw|1JcU`tqzvVk)?L_Gw^$fEN!`TDj z@(;(`rZ&<1`<9rCb!~O^cYBq_EBHOVPUJ{*_aLKfiGujFMhH)9Ww28eE&a4~jEHAeG4f@^cJYqB9e2mKTKnH=` zE)t2qHrD@<{G*herwWypJf@W3^7Hdu0K81+j0g>Weq=Fh!9^+RWnpKp;tt)841z5} z&*!ak;7@yTRNjR`gYSlo1zg`|N}X4>9+%=gbij^V=Np}kYa0(hF>LD_3F1hr6wkNF zcXxMiO92<7WN#jxt{0u}fEPR=zZ0qZ_K0A`m8PcV*^>J>ya@-P&uR$rrU?Nk#@{z4 z48khRVX3_P)t8wJGW)Cbql%>G4iPO&$jQu9@kD|uOR>$f?+!PP8EQaUw-6!P+426- z!|`KZ{gA^j`zD}f3@WRNS6OtaNvNMubLIivG19Qep`x!6K;tYODCe& z!YS;19Gj0fYs2$*WQWVGX^x8xYKD)G#Y+;Do!g@sL_9Xw^Yil(0=HzbN=|J`5lN0* zA5RT)?CbS3G%XM3svVY^UITK3tgLKBFt8-st{3b{MTvtXy7oNyh;ESp=56z4l9(08 zoX6#K51DhX=b{mOHfr_PrXayEunFI8pMnuCRlb}9t=u~fX21=N)S@|0+e`Vdzv3Yr zO-g)x$MogB_eE8S#c%Y^1!wXjfnA5(gG$jlPg(l&gs!S5V6=zn80Z0JsRwwcDPq7NlyZmfQ6m1vx{ zS+$;mxWVRe{+73AwH!7d>lZW7JMBi+)JhlT5F571O;-M(0y;Jiu~J3dcF~IQT$``^ z<`pp9zZr>}I|+caE~l%K4NlANot)UZOt3XIza%6iB#(~@zq1VBC(d}S%d0P`2Go(f zD44sCyv%usCl0PMy;pok(z%f_o0+c+$4CLK)!K+5Jl2?3ce@ zP|m=fdXvBF8*NOl)7mx6H?f`v=ZLssE6&?}71aW5tl;B05vE4A58Fl3qz3$dBr~aW zP8z^D_G{w$<}S#3M%o4XTifj4noPeZ*+&XQO&}jEU*BBo`C3NS%Y>XHp_TF)+~{(N zQ>?AlNGiwvP;Fm)>Q@G&*lKK)hPKK)FV@+hAKi}BWCoMaFS*&xqh%sYRgR74W8}<+ z)@HHyFQur08kfevW6KJZ<}AeKX00>M;x(~Zct|s(Rqs%!#t{Fy%j$;0u*3!w+1n92 z^Af~{%o9XsYS?{4;E0Hb5@!nv3TWu*z3059|NQx5mjDQ|HatU^1b_-SS*Fc?f4SH5 zmxkyxyIJOSomA*I%1$Qd)VXa9$%aAwuMcx;xE{=*cJ*9#e~Jg7RwLhE-!1->3?p_t zDA%ne6!NgqSmbq>`!(=fq?Cd0i|sJ*m8xbc9NX|CCGL7|Rhf_F3fse8-tQmki$&|I zaInO!0QF*XZ`+-r*^(jYx{8w??p63uKt?yx?FbRJQrR5OVd+`Bb{igXZL7Dl&vWNs zj_%$Q_$;>E773U*&QJSleXK|MqRW)WZNPZ`m^EhOH;k(|6;_q$nLXoHv0LdR?CVvt z*^p2SVPDTaI;|7ok0(nTrCpy(`QKc&=&I|4k6KZ4a=xyeH?YUOQF!_CWpZlJGe_s( z2eCDCg#u%6(B;7_79c@%g&`{_DwcUZn{H)`)Cm&swirg2N}7M6UHw&^+bij7NxRI& z#gQ=z=vuOJg+)b0a!k4yMtbRSOE#eo8iR(#px|%HO|1ujj5%Uz{9PbBWJ(@1nDZy$S3k3Hx)4 zi>Ya=Yiwbo`RP&PiL$L>YG~1)C3f(Xi(x`BmhK4wXf}gMoUYZ_<9c&71iTlrlPARB_#zH7Z+}gQu$=1 zy#PVD8pyf|yaAKC)>(L(NT1u0C$d;Cv2)dP4)f!-mTZ?jDPa7}X2^2wAWA?qn4&`c7+VyAHE9^7zA6 zd^RxV2c@F8yVs@3XK*1LYK@=rP5FP?C>6CU!`7;bOG?%|WVW&@#c6Jr@dJIV^5dUj zJJ7#N_Ti$4VAaKc!d4^u*1|W-t*^n(3Vm?BaL=6cz;lH7$0#c|#PqkFpsD*GMseV* z4&X_i^&1DuIcKY!p%|O+nBh`O&)Yi=4^yHKXVLCWThNQe0xTv{UO=+N7-!cVo-03I z;xZ@w>xBiZ<3JTC3N=AQ+ZoOv?RzLtcBU<)nK@b-ZnI6|%oqh^<%g#Q#_x@ei}-iJ z1_lOU;BZ#_S3Qwf0I3TK5`$cRvDx_cV+r3-3JpFI!`Kb0L$C1*33~@zSl1_`D#(GO z08VEK))tfFI3Iz@OowVQBwPPZM1>CMh zE&&g&Laz#lXIpM+A3t`tcpmtyg%f<|Fnv)4eiA}JLjM|1K(-Hke)6UfJsjnSjtsMd zmrUkW#O`Rg#E%7cGJ8NWG5Nr%x;mJheSd(yCb5*vsQ$y?x_KviW3MR3=>fsG%o0f6 z27y=84-Y%yC%--*iRG}rX+vy!yk1oC&w7Q=5+%ap_H?&1)$Z>txY|+-B)LCmLHyem zl(5a+)1@T?txALW-GLwKVNmh@2^q$QP$%^zUU&(EI^I)0AomDKLCMK@|uap+QS ziD4G2bMGcfCUc=9SI??5oMyuU%8EJSEgO|U9UM4avI*#faNX{nv;6xo?-N$5uBytN zz6|!lZnd7y5smEDJ$m3M-0GGk$$m1}c}3$mgTHv0t z^x<1QAd0;3?zo?@&4R%q0aMNgisZiJkU&+uaN??}u0$wYOTLE)eS97-7ZrUgpW| zE!WalS66EQk#U>!ITy%4dW?&Jq)3br1a4kcXX-bK@I%U8lx`_|y2vfx(&$3=+0eWRS=EU@r1Me8VnD|bS0KE;04ITo{ilMwU^G5Duv4y`)!wW$Zx zN#ts))bBY6AXb^eHBR_tVSQU7U<-^CW$iznS==CT(WE!G<26@TPmjQc6tq`eMy9_e zXJ5OcwRiDrQ=9b!7&4)!(29}avj&ED4)>RdK=5<><8(X%MylhGr@GvlhyR_;My21g zSe=}Zcn)tiq54rI+6;xj(C{#Soejkp(MnDk{m!2|xCM2W&>j4$uB|JXmA^9iv4ZQv z&EjZ%bPm58C4N};&FqoQgx3ixmJ2M+%SgzZme?Kb{*mV_`oq&x`{3j5>d22VYzt@4dx-m$fvkBmYxAgQy%Z*bTXD$#j?{`Lx zfbqF1_>uWwHqsf?N^tdE2T;|KmXW#L_5cSxf`)je44RvplT%XQzow*U+H0sPg4qMl2kFc8 z8{+}3>C#WM-R}wngzOKQ0*OzLFu5UeA&;o;?(TtyBy43OKf9bv9p3=KyCgl#|SzIOvVs9*h|@|k;;`6oj~y!fH8i<04eTxI9CKVsDhf>>uAvLR&QrOZta_^Hn%S* z0FJGy#Ig7Gout$}w7?B@yzISc#g@r)zVKV3Z&(#*iG`&K&HHsj8DXH@#KyONxvDz> z#cR`eB)Vj$Zt$#1`iF%AdV z%kcsL-yipm%9S|w(YfEeTRzA6{nV&G;eDsLfN5D4-9v68_-}c2f%ddwx)^W{{!9Hg z8k68D9RdRI!%?mCcd!%kw3ABMFu?d)dU*o2`VKMmbnAjhw8xcz;l81uP|?)H1I}1v zj7C5%9{qk?Wb9mo$1sox5@;xCY~jV>2ikdy$lQ@aMj!_b7qz!OX6EJ!^721xYHC*C zno3La3kuY92v@}El{0Nz^s+R|wA>lY3GE!DG#p!e4plqm{iD$2lqzo6b2u_r7}q=n zM2&!21!PTj@~ANlFrIf`S;uW}#I??+8tXWx3nV3$(Qg69BGtg59+JC)(Tt4S*&US) z5T~?{_tCXqV;~@&Ed{UW{@pW&%;-g<6hM_(MspfhlaHP3k~(d~Y`;^it=WxvYkEv5 znBr^t5a5ULTmc6>xB%7x$aXNEr{S~zogn&QYPWt_gR1+`)mnb8=;VII!O$0Km%9Lw zRvS+bNGs@c)_$xffA)N3;RtbGu)*EWQg(ko{VZotgP>ymZxyuMW5S?t#-x|$OZa5o%sFo|M6m+R7P0!#{KzzpjU`+) zd9?#|WFP;^OAcGny?{%hRbglgYZ_cU~EZ zVecR$GSyO3>q^l!8U$)UzjRn?a6V%@-sDjeT0A|p*dpzW=ZveXh)$O$q9Gt-Zh~UE zFQ$CkjfRGXfGUL5)&6v1q+dL#U^lSAb=&3Tu#x0^fQoqr!oA)bv)5%3ilz<29x-$G@iFLxI^v;K|? z#O9(y|Mmg^il}*iERf)hR*zdxoLrK}6qZ{&H`1-M*8l|hrLEB!DpsgmAu2Vx=P~1p zwF-zl>wgnDz>HP_sRv;-g2ZX{YS!5K*O>ZjPD+Z5k&#grmtrc*8bA0>iALTiCo_{Y z=&H>4Y%1qTLs^1KZ`H^1Yx9ZL=>#4V{CKbep$j9ixl~5EFfN*jcpakiywkDazKLXI zm-Go+tL5Ud4FY`qSbeQ4!A5XyNxwv8CG}VsFhnB zm%1}cl71gt(a_MSYHG@S{P;#tQ1GvubG89V`ii~GYYhNp7M3gX9F8X4#UhoX_^Jm) z$*K&j_n{v8_3^_yqmpIQvI`z=pKnT#&Q)6}%Xv9JPel*{Orfrr~(6G1;W>@&20O&2}8Wn+cN9Y_ZEDMOQ_1Rn<4 z!$G^Qay+e`ST1DsnAXfKt3(sVL9pWpW$>ayn)4GxFAJ?wo8r+-Nd!Ar{KUvBpg@)k zT6S4=N}iJdE%-d0M$Y{V&r**xt5G5NZCjVX_wy+DbxQFXe9SGu&zXJ%Vk=QN9wlNt zWf{Kc?3}IxGfdgc5jkCq*Bz*c-8;xxJn*@+Z|!`a0O*$~a8)#|aclY!h)U#MyTmMz? zfSN+DGx#xrS}uO|{_4Qz=9rAnaRHG|o#VKot&J1_58rJ25j@bQ{_m(4Ss`(>)r5g_>R z@PMo5^udADE3z+dF3_jFF`?f?Vzit5=S1iB`5A23?Xv+mytI_5IqZ92KmdnnHzMN8 zmkOS>3d+j;{i})tH$+vZEgZX{8>;_@r>}sDLfzUPM7kSkP`Z&WX;eZ$kXEFnLAtv^ zk&uv<4hiXQB_sqvX%OiaN%7xv?|;9wTuaY!IZV9o-p_twPZXn+i`1SPIj&`S*wBQ% z$;4*r#_@|xJY#OvaRX%%@Xw*};M0Gsr29iYrma)yVa%b*qMfuwA@Qv!pF0&-{LEMS z%2?X&LSgyno)R^Bq}|X!vC3H%(O9Vc%v3*(Aq)N+DlA@tJyy!VzV+k7*&b}we+@Ut z9B*r${k|!>wolcdijR|gE0@jR8@J(U?b!Oh(NEnsR-`wA4!q=;I9Qoff+r`n zNy*4$b#*CrXB#3C6BCDx-X9g0m-oV_nvj)+58{LC-rOyGe0*%~GB`aT;3~Si3%j_u z

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', + props: { + title: String, + value: { + type: Boolean, + default: false + } + }, + + methods: { + handleClick: function() + { + this.value = !this.value; + this.$emit('input', this.value); + }, + + handleKeyDown: function(event) + { + if (event.keyCode == 32) + { + this.handleClick(); + event.preventDefault(); + } + } + } + }); + + + Vue.component('radio', { + template: '
{{ title }}
', + props: { + title: String, + value: null, + id: null + }, + + methods: { + handleClick: function() + { + this.value = this.id; + this.$emit('input', this.value); + } + } + }); + var i18n = new VueI18n({ locale: navigator.language, fallbackLocale: 'en', diff --git a/web/dist/bundle.css b/web/dist/bundle.css index 142e30c..96c5fd6 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -*,:after,:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#606c76;font-family:Roboto,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:1.6em;font-weight:300;letter-spacing:.01em;line-height:1.6}blockquote{border-left:.3rem solid #404040;margin-left:0;margin-right:0;padding:1rem 1.5rem}blockquote :last-child{margin-bottom:0}.button,button,input[type=button],input[type=reset],input[type=submit]{background-color:#06f;border:.1rem solid #06f;border-radius:.4rem;color:#fff;cursor:pointer;display:inline-block;font-size:1.1rem;font-weight:700;height:3.8rem;letter-spacing:.1rem;line-height:3.8rem;padding:0 3rem;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{background-color:#606c76;border-color:#606c76;color:#fff;outline:0}.button[disabled],button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type=button][disabled]:focus,input[type=button][disabled]:hover,input[type=reset][disabled]:focus,input[type=reset][disabled]:hover,input[type=submit][disabled]:focus,input[type=submit][disabled]:hover{background-color:#06f;border-color:#06f}.button.button-outline,button.button-outline,input[type=button].button-outline,input[type=reset].button-outline,input[type=submit].button-outline{background-color:transparent;color:#06f}.button.button-outline:focus,.button.button-outline:hover,button.button-outline:focus,button.button-outline:hover,input[type=button].button-outline:focus,input[type=button].button-outline:hover,input[type=reset].button-outline:focus,input[type=reset].button-outline:hover,input[type=submit].button-outline:focus,input[type=submit].button-outline:hover{background-color:transparent;border-color:#606c76;color:#606c76}.button.button-outline[disabled]:focus,.button.button-outline[disabled]:hover,button.button-outline[disabled]:focus,button.button-outline[disabled]:hover,input[type=button].button-outline[disabled]:focus,input[type=button].button-outline[disabled]:hover,input[type=reset].button-outline[disabled]:focus,input[type=reset].button-outline[disabled]:hover,input[type=submit].button-outline[disabled]:focus,input[type=submit].button-outline[disabled]:hover{border-color:inherit;color:#06f}.button.button-clear,button.button-clear,input[type=button].button-clear,input[type=reset].button-clear,input[type=submit].button-clear{background-color:transparent;border-color:transparent;color:#06f}.button.button-clear:focus,.button.button-clear:hover,button.button-clear:focus,button.button-clear:hover,input[type=button].button-clear:focus,input[type=button].button-clear:hover,input[type=reset].button-clear:focus,input[type=reset].button-clear:hover,input[type=submit].button-clear:focus,input[type=submit].button-clear:hover{background-color:transparent;border-color:transparent;color:#606c76}.button.button-clear[disabled]:focus,.button.button-clear[disabled]:hover,button.button-clear[disabled]:focus,button.button-clear[disabled]:hover,input[type=button].button-clear[disabled]:focus,input[type=button].button-clear[disabled]:hover,input[type=reset].button-clear[disabled]:focus,input[type=reset].button-clear[disabled]:hover,input[type=submit].button-clear[disabled]:focus,input[type=submit].button-clear[disabled]:hover{color:#06f}code{background:#f4f5f6;border-radius:.4rem;font-size:86%;margin:0 .2rem;padding:.2rem .5rem;white-space:nowrap}pre{background:#f4f5f6;border-left:.3rem solid #06f;overflow-y:hidden}pre>code{border-radius:0;display:block;padding:1rem 1.5rem;white-space:pre}hr{border:0;border-top:.1rem solid #f4f5f6;margin:3rem 0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{appearance:none;background-color:transparent;border:.1rem solid #404040;border-radius:.4rem;box-shadow:none;box-sizing:inherit;height:3.8rem;padding:.6rem 1rem;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#06f;outline:0}select{background:url('data:image/svg+xml;utf8,') center right no-repeat;padding-right:3rem}select:focus{background-image:url('data:image/svg+xml;utf8,')}textarea{min-height:6.5rem}label,legend{display:block;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}fieldset{border-width:0;padding:0}input[type=checkbox],input[type=radio]{display:inline}.label-inline{display:inline-block;font-weight:400;margin-left:.5rem}.container{margin:0 auto;max-width:112rem;padding:0 2rem;position:relative;width:100%}.row{display:flex;flex-direction:column;padding:0;width:100%}.row.row-no-padding{padding:0}.row.row-no-padding>.column{padding:0}.row.row-wrap{flex-wrap:wrap}.row.row-top{align-items:flex-start}.row.row-bottom{align-items:flex-end}.row.row-center{align-items:center}.row.row-stretch{align-items:stretch}.row.row-baseline{align-items:baseline}.row .column{display:block;flex:1 1 auto;margin-left:0;max-width:100%;width:100%}.row .column.column-offset-10{margin-left:10%}.row .column.column-offset-20{margin-left:20%}.row .column.column-offset-25{margin-left:25%}.row .column.column-offset-33,.row .column.column-offset-34{margin-left:33.3333%}.row .column.column-offset-50{margin-left:50%}.row .column.column-offset-66,.row .column.column-offset-67{margin-left:66.6666%}.row .column.column-offset-75{margin-left:75%}.row .column.column-offset-80{margin-left:80%}.row .column.column-offset-90{margin-left:90%}.row .column.column-10{flex:0 0 10%;max-width:10%}.row .column.column-20{flex:0 0 20%;max-width:20%}.row .column.column-25{flex:0 0 25%;max-width:25%}.row .column.column-33,.row .column.column-34{flex:0 0 33.3333%;max-width:33.3333%}.row .column.column-40{flex:0 0 40%;max-width:40%}.row .column.column-50{flex:0 0 50%;max-width:50%}.row .column.column-60{flex:0 0 60%;max-width:60%}.row .column.column-66,.row .column.column-67{flex:0 0 66.6666%;max-width:66.6666%}.row .column.column-75{flex:0 0 75%;max-width:75%}.row .column.column-80{flex:0 0 80%;max-width:80%}.row .column.column-90{flex:0 0 90%;max-width:90%}.row .column .column-top{align-self:flex-start}.row .column .column-bottom{align-self:flex-end}.row .column .column-center{align-self:center}@media (min-width:40rem){.row{flex-direction:row;margin-left:-1rem;width:calc(100% + 2rem)}.row .column{margin-bottom:inherit;padding:0 1rem}}a{color:#06f;text-decoration:none}a:focus,a:hover{color:#606c76}dl,ol,ul{list-style:none;margin-top:0;padding-left:0}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{font-size:90%;margin:1.5rem 0 1.5rem 3rem}ol{list-style:decimal inside}ul{list-style:circle inside}.button,button,dd,dt,li{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}table{border-spacing:0;width:100%}td,th{border-bottom:.1rem solid #e1e1e1;padding:1.2rem 1.5rem;text-align:left}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}b,strong{font-weight:700}p{margin-top:0}h1,h2,h3,h4,h5,h6{font-weight:300;letter-spacing:-.1rem;margin-bottom:2rem;margin-top:0}h1{font-size:4.6rem;line-height:1.2}h2{font-size:3.6rem;line-height:1.25}h3{font-size:2.8rem;line-height:1.3}h4{font-size:2.2rem;letter-spacing:-.08rem;line-height:1.35}h5{font-size:1.8rem;letter-spacing:-.05rem;line-height:1.5}h6{font-size:1.6rem;letter-spacing:0;line-height:1.4}img{max-width:100%}.clearfix:after{clear:both;content:' ';display:table}.float-left{float:left}.float-right{float:right}[v-cloak]{display:none}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:10pt;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}input,textarea{color:#fff}#container{background-color:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}h1{font-size:16pt;margin:0}h2{color:silver;font-size:10pt;margin:0}h3{color:grey;background-color:#282828;font-size:14pt;border-bottom:solid 1px grey}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.tabs{clear:both;margin-top:3rem}.tabs .button{background-color:#404040;color:#fff!important;border-color:grey}.tabs .button.button-outline{background-color:transparent}@media screen and (max-width:767px){.tabs .button{width:100%}}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#302f28;border:solid 1px #000;padding:.5em;margin-bottom:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background-color:#ffc;border:solid 1px #000;box-shadow:0 0 10px #000;color:#000;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background-color:#ffc6b3;border:solid 1px #000;color:#000}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{border:solid 1px #404040;margin-bottom:2rem;padding:0}.panel .panel-header{background-color:#302f28;color:grey}.panel .panel-header input[type=checkbox]{margin-left:.5em;margin-top:.5em;margin-bottom:.5em}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header a,.panel .panel-header label{color:#fff}.panel .panel-body{background-color:#242422;padding:2rem}select{background:#202020;color:#fff}select:focus{background-image:none}.inline{display:inline-block;width:auto}.checkbox{white-space:nowrap}.weekday label{width:5em} \ No newline at end of file +html{box-sizing:border-box;font-size:62.5%}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,h3{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active{border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}.button{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer}.button.focus,.button:focus,.button:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active{color:#ccc;background:#282828}a.button{line-height:3rem;text-decoration:none}.tabs{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:5px;left:5px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}input,textarea{color:#fff}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background-color:#282828;font-size:1.2rem;padding:.5rem}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background-color:#302f28;color:#fff}.panel .panel-header input[type=checkbox]{margin-left:.5em;margin-top:.5em;margin-bottom:.5em}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header a,.panel .panel-header label{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background-color:#242422;padding:2rem}select{background:#202020;color:#fff}select:focus{background-image:none}.inline{display:inline-block;width:auto}.weekdays .label{width:8em} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index a2073a8..65612d2 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===u.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===u.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),u="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,l){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+u(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,l,r),p=null}},p.onerror=function(){l(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){l(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),l(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),u=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=u(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function u(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(l)&&(f[u]=x(l.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(l)?f[u]=x(l.text+c):""!==c&&f.push(x(c)):X(c)&&X(l)?f[u]=x(l.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(u):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function je(e){return e&&(e.Ctor.options.name||e.tag)}function De(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=je(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,l(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(l=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=qr=0;!ct();)ut(Ur=st())?lt(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),ut(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){qr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,qr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Br}function ut(e){return 34===e||39===e}function lt(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=Kr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),Kr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||Kr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),K(i,o,ft,dt,r.context),Kr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},u=r.data.domProps||{};t(u.__ob__)&&(u=r.data.domProps=v({},u));for(i in s)e(u[i])&&(a[i]="");for(i in u){if(o=u[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var l=e(o)?"":String(o);d=l,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=l)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?xi(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,u=o.staticStyle,l=o.normalizedStyle||o.style||{},f=u||l,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Si(c,s,"");for(s in p)(a=p[s])!==f[s]&&Si(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&l(e._transitionClasses,t),bt(e,t)}function xt(e,t,n){var r=Ct(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Di?Fi:Mi,c=0,u=function(){e.removeEventListener(s,l),n()},l=function(t){t.target===e&&++c>=a&&u()};setTimeout(function(){c0&&(n=Di,l=a,f=o.length):t===Ii?u>0&&(n=Ii,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Di:Ii:null)?n===Di?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Di&&Wi.test(r[Li+"Property"])}}function At(e,t){for(;e.length1}function jt(e,t){!0!==t.data.show&&$t(t)}function Dt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Wt(e){return!e.componentInstance||e.data&&e.data.transition?e:Wt(e.componentInstance._vnode)}function Bt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Bt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function qt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Kt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',xo.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=u("slot,component",!0),yn=u("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,xn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Cn=function(e,t,n){return!1},An=function(e){return e},Sn="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Cn,isReservedAttr:Cn,isUnknownElement:Cn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:Cn,_lifecycleHooks:On},Pn=/[^\w.$]/,jn="__proto__"in{},Dn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=Dn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Wn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Bn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(Dn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Dn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Dn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);qn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){l(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tSr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);Cr||(Cr=!0,H(ue))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){W(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||l(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};Ce(Ae.prototype);var jr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;jr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Wr),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:Kn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Br,Vr,Ur,Hr,zr,qr,Kr,Jr,Gr=u("style,class"),Xr=u("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=u("contenteditable,draggable,spellcheck"),Qr=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),ui=u("text,number,password,search,email,tel,url"),li=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){Be(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Be(e,!0),Be(t))},destroy:function(e){Be(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:Ke,update:Ke},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},xi=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Ci=/^--/,Ai=/\s*!important$/,Si=function(e,t,n){if(Ci.test(t))e.style.setProperty(t,n);else if(Ai.test(n))e.style.setProperty(t,n.replace(Ai,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&C.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&C.setTextContent(c,""):r.text!==i.text&&C.setTextContent(c,i.text),t(l)&&t(u=l.hook)&&t(u=u.postpatch)&&u(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Ui),v(Pe.options.components,Ki),Pe.prototype.__patch__=Dn?Bi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&Dn?We(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(xi(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=u("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=u("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=u("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),uo=/^]+>/i,lo=/^/g,"$1").replace(//g,"$1")),jo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});l+=e.length-h.length,e=h,r(d,l-f,l)}else{var v=e.indexOf("<");if(0===v){if(lo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(uo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=l;n(b[0].length),r(b[1],_,l);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:l};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=l,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),u(n)&&o===n&&r(n));for(var l=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(co.test(k)||ao.test(k)||lo.test(k)||fo.test(k)||(x=k.indexOf("<",1))<0);)v+=x,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,u){var l=i&&i.ns||wo(e);Nn&&"svg"===l&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=Xe(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,u={},l=r.places||{},f=Array.isArray(l)?l.length>0:Object.keys(l).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(l)?l.forEach(function(e,t){u[t]=e}):Object.keys(l).forEach(function(e){u[e]=l[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;u[n]=e}),t(r.tag,i,a.i(s,c,u))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,l=E,h[C]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==l;)if(u++,"\\"!==(t=e[u])||!function(){var t=e[u+1];if(l===P&&"'"===t||l===j&&'"'===t)return u++,r="\\"+t,h[C](),!0}()){if(i=d(t),(o=(s=L[l])[i]||s.else||I)===I)return;if(l=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(l===D)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var u;if(r(c)){if(!n(t))return null;if("string"!=typeof(u=t[i]))return null}else{if("string"!=typeof c)return null;u=c}return u.indexOf("@:")>=0&&(u=this._link(e,t,u,o,a,s)),s?this._render(u,a,s):u},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var u=s[c],l=u.substr(2),f=this._interpolate(e,t,l,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,l,r,i,o)}a=(f=this._warnDefault(e,l,f,r))?a.replace(u,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,u=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(l=this._root).t.apply(l,[e].concat(o))}return this._warnDefault(c,e,u,r);var l},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._dateTimeFormatters[u];return l||(l=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(a,c)),l.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],u=a+"__"+o,l=this._numberFormatters[u];return l||(l=this._numberFormatters[u]=new Intl.NumberFormat(a,c)),l.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:u}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(u)&&(f[l]=C(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=C(u.text+c):""!==c&&f.push(C(c)):X(c)&&X(u)?f[l]=C(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function je(e){return e&&(e.Ctor.options.name||e.tag)}function De(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=je(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=qr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){qr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,qr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Br}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=Kr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),Kr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||Kr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),K(i,o,ft,dt,r.context),Kr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?Ci(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Si(c,s,"");for(s in p)(a=p[s])!==f[s]&&Si(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function Ct(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Di?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=Di,u=a,f=o.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?Di:Ii:null)?n===Di?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Di&&Wi.test(r[Li+"Property"])}}function At(e,t){for(;e.length1}function jt(e,t){!0!==t.data.show&&$t(t)}function Dt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Wt(e){return!e.componentInstance||e.data&&e.data.transition?e:Wt(e.componentInstance._vnode)}function Bt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Bt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function qt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Kt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',Co.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,Cn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),xn=function(e,t,n){return!1},An=function(e){return e},Sn="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:xn,isReservedAttr:xn,isUnknownElement:xn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:xn,_lifecycleHooks:On},Pn=/[^\w.$]/,jn="__proto__"in{},Dn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=Dn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Wn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Bn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(Dn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Dn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Dn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);qn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tSr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);xr||(xr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){W(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};xe(Ae.prototype);var jr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;jr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Wr),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:Kn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Br,Vr,Ur,Hr,zr,qr,Kr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){Be(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Be(e,!0),Be(t))},destroy:function(e){Be(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:Ke,update:Ke},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},Ci=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),xi=/^--/,Ai=/\s*!important$/,Si=function(e,t,n){if(xi.test(t))e.style.setProperty(t,n);else if(Ai.test(n))e.style.setProperty(t,n.replace(Ai,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Ui),v(Pe.options.components,Ki),Pe.prototype.__patch__=Dn?Bi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&Dn?We(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(Ci(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),lo=/^]+>/i,uo=/^/g,"$1").replace(//g,"$1")),jo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(uo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(lo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),l(n)&&o===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(co.test(k)||ao.test(k)||uo.test(k)||fo.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||wo(e);Nn&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Xe(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===j&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(u===D)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,o,a,s)),s?this._render(l,a,s):l},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(o))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1}},methods:{handleClick:function(){this.value=!this.value,this.$emit("input",this.value)},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null},methods:{handleClick:function(){this.value=this.id,this.$emit("input",this.value)}}});var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 396049b..e9cc28c 100644 --- a/web/index.html +++ b/web/index.html @@ -12,7 +12,7 @@
-
+
{{ notification.message }}
@@ -39,10 +39,7 @@
@@ -53,6 +50,10 @@ -->

{{ $t('status.title') }}

+ + + +
@@ -87,163 +89,133 @@ -->
-
-

{{ $t('triggers.timeTitle') }}

+

{{ $t('triggers.timeTitle') }}

- + -
-
- {{ $t('triggers.timeInternet') }} -
+
+
+ {{ $t('triggers.timeInternet') }} +
- - + + - -
-
-
- - - [ {{ $t('triggers.timeDelete') }} ] - -
+ +
+
+ + +
+ + + + + +
+ + + + + + +
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- {{ Math.floor(trigger.brightness / 255 * 100) }}% -
- -
+
+ {{ Math.floor(trigger.brightness / 255 * 100) }}% +
+
+
-
- {{ $t('triggers.timeNoData') }} -
- -
- -
+
+ {{ $t('triggers.timeNoData') }}
- +
-
+
+ +
+ +
-
-

{{ $t('triggers.motionTitle') }}

+

{{ $t('triggers.motionTitle') }}

- + -
- +
+ - - + + - -
-
-
- - - [ {{ $t('triggers.motionDelete') }} ] - -
-
+ +
+
+ -
- - +
+ + - - + + -
- {{ Math.floor(trigger.brightness / 255 * 100) }}% -
- -
+
+ {{ Math.floor(trigger.brightness / 255 * 100) }}% +
+
+
-
- {{ $t('triggers.motionNoData') }} -
- -
- -
+
+ {{ $t('triggers.motionNoData') }}
- +
-
+
+ +
+ +
@@ -254,47 +226,42 @@ -->
-
-

{{ $t('connection.title') }}

+

{{ $t('connection.title') }}

- - - {{ $t('connection.accesspointHint') }} + + {{ $t('connection.accesspointHint') }} - - - {{ $t('connection.stationmodeHint') }} + + {{ $t('connection.stationmodeHint') }} - - + + - - + + - - - {{ $t('connection.dhcpHint') }} + + {{ $t('connection.dhcpHint') }} -
- - +
+ + - - + + - - -
+ + +
- - + + -
- -
-
+
+ +
@@ -305,83 +272,79 @@ -->
-
-

{{ $t('system.firmwareTitle') }}

+

{{ $t('system.firmwareTitle') }}

- + -
- -
+
+ +
-
- {{ uploadProgress }}% -
-
+
+ {{ uploadProgress }}% +
-
-

{{ $t('system.ntpTitle') }}

+

{{ $t('system.ntpTitle') }}

-
- {{ $t('triggers.timeInternet') }} -
+
+ {{ $t('triggers.timeInternet') }} +
- - + + - - + + - - + + - - + + - - + + -
- - - -
+
+ + + +
-

{{ $t('system.pinsTitle') }}

+

{{ $t('system.pinsTitle') }}

- - + + - - + + - - + + - - + + - - + + - - + + - - + + -

{{ $t('system.mapsTitle') }}

+

{{ $t('system.mapsTitle') }}

- - - {{ $t('system.mapsAPIKeyhint') }} + + + {{ $t('system.mapsAPIKeyhint') }} -
- -
-
+
+ +
diff --git a/web/site.scss b/web/site.scss index 350a13b..ec75d35 100644 --- a/web/site.scss +++ b/web/site.scss @@ -1,57 +1,38 @@ -$color-primary: #0066ff; -$color-quaternary: #404040; - -@import "milligram"; - - - -$bodyBackgroundColor: black; -$textColor: white; - -$containerBackgroundColor: #202020; -$containerShadow: 0 0 50px #fcf6cf; - -$panelBorderColor: #404040; -$panelBodyBackgroundColor: #242422; -$panelHeaderBackgroundColor: #302f28; -$panelHeaderColor: #808080; -$panelHeaderLinkColor: white; - -$buttonBorderColor: #404040; - -$sliderBarColor: #404040; -$sliderBarSize: .5rem; -$sliderThumbColor: #fcf6cf; -$sliderThumbSize: 2rem; -$sliderValueColor: #808080; - -$warningColor: #302f28; -$warningBorderColor: #000000; - -$notificationColor: black; -$notificationBackgroundColor: #ffffcc; -$notificationBorderColor: #000000; -$notificationShadow: 0 0 10px black; - -$errorColor: black; -$errorBackgroundColor: #ffc6b3; -$errorBorderColor: #000000; - $smallScreen: "screen and (max-width: 767px)"; $mediumScreen: "screen and (min-width: 768px)"; -[v-cloak] +$containerBackground: #202020; +$buttonBackground: #404040; +$buttonHoverBackground: #505050; +$buttonActiveBackground: #282828; + +$checkRadioBackground: #404040; +$checkRadioSelectedBackground: #606060; + +$panelBorderColor: #404040; +$panelBodyBackgroundColor: #242422; +$panelHeaderBackgroundColor: #302f28; +$panelHeaderColor: white; +$panelHeaderLinkColor: white; + + + +html { - display: none; + box-sizing: border-box; + font-size: 62.5%; } body { - background-color: $bodyBackgroundColor; - color: $textColor; + background-color: black; + color: white; font-family: 'Verdana', 'Arial', sans-serif; - font-size: 10pt; + font-size: 1.3em; + font-weight: 300; + letter-spacing: .01em; + line-height: 1.3; padding-bottom: 3rem; @@ -61,20 +42,29 @@ body } } - -input, textarea +a { - color: $textColor; + text-decoration: none; } +/* + Hide VueJS container until the template has been processed +*/ +[v-cloak] +{ + display: none; +} + + + #container { - background-color: $containerBackgroundColor; + background: $containerBackground; margin-top: 2rem; padding: 1rem; - box-shadow: $containerShadow; + box-shadow: 0 0 50px #fcf6cf; border: solid 1px black; @media #{$mediumScreen} @@ -127,25 +117,82 @@ input, textarea } } -h1 + +%outset { - font-size: 16pt; - margin: 0; + border: 1px solid #111111; + border-radius: 3px; + box-shadow: inset 0 1px rgba(255,255,255,0.1), inset 0 -1px 3px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.08), 0 1px 2px rgba(0,0,0,0.15); } -h2 + +%inset { - color: #c0c0c0; - font-size: 10pt; - margin: 0; + border-color: black #111111 #111111; + box-shadow: inset 0 1px 2px rgba(0,0,0,0.25),0 1px rgba(255,255,255,0.08); } -h3 + +.button { - color: #808080; - background-color: #282828; - font-size: 14pt; - border-bottom: solid 1px #808080; + @extend %outset; + + display: inline-block; + padding: 0 12px; + color: #dddddd; + background: $buttonBackground; + cursor: pointer; + + &:hover, &:focus, &.focus + { + color: #dddddd; + background: $buttonHoverBackground; + outline: none + } + + &:active, &.active + { + @extend %inset; + + color: #cccccc; + background: $buttonActiveBackground; + } +} + +a.button +{ + line-height: 3rem; + text-decoration: none +} + + +.tabs +{ + clear: both; + margin-top: 3rem; + + &>.button + { + margin-left: -1px; + border-radius: 0; + + &:first-child + { + margin-left: 0; + border-radius: 3px 0 0 3px + } + + &:last-child + { + border-radius: 0 3px 3px 0 + } + + &:focus + { + position: relative; + z-index: 1 + } + } } @@ -158,30 +205,189 @@ h3 } -.tabs +.notificationContainer { - clear: both; - margin-top: 3rem; + position: fixed; + top: 2rem; + z-index: 666; - .button + @media #{$mediumScreen} { - background-color: $buttonBorderColor; - color: $textColor !important; - border-color: #808080; + width: 512px; + left: 50%; + } +} - &.button-outline - { - background-color: transparent; - } - @media #{$smallScreen} +.notification +{ + @extend %outset; + + background: #297ab8; +/* border: solid 1px $notificationBorderColor;*/ + box-shadow: 0 0 10px black; + color: white; + cursor: pointer; + padding: .5em; + margin-bottom: 2rem; + + position: relative; + + @media #{$mediumScreen} + { + left: -50%; + } + + .message + { + white-space: pre; + } + + + &.error + { + background: #973a38; + } +} + + +.check, .radio +{ + display: inline-block; + cursor: pointer; + user-select: none; + white-space: nowrap; + + .control + { + @extend %outset; + background: $checkRadioBackground; + display: inline-block; + width: 16px; + height: 16px; + position: relative; + } + + .label + { + display: inline-block; + margin-left: .5em; + vertical-align: top; + } + + &.checked + { + .control { - width: 100%; + background: $checkRadioSelectedBackground; + + .inner + { + } } } } +.radio +{ + .control, .control .inner + { + border-radius: 50%; + } + + .control .inner + { + color: black; + position: absolute; + top: 5px; + left: 5px; + width: 6px; + height: 6px; + } + + &.checked .control .inner + { + background: #cccccc; + box-shadow: 0 1px rgba(0,0,0,0.5); + } +} + + +.check +{ + .control .inner + { + position: absolute; + top: 5px; + left: 4px; + width: 6px; + height: 3px; + } + + &.checked .control .inner + { + border: solid rgba(255,255,255,0.8); + border-width: 0 0 2px 2px; + transform: rotate(-45deg); + box-shadow: -1px 0 rgba(0,0,0,0.2), 0 1px rgba(0,0,0,0.5) + } +} + + + +$buttonBorderColor: #404040; + +$sliderBarColor: #404040; +$sliderBarSize: .5rem; +$sliderThumbColor: #fcf6cf; +$sliderThumbSize: 2rem; +$sliderValueColor: #808080; + +$errorColor: black; +$errorBackgroundColor: #ffc6b3; +$errorBorderColor: #000000; + + + + + +input, textarea +{ + color: white; +} + +input[type=range] +{ + margin-top: 1rem; + margin-bottom: 1rem; +} + + + +h1 +{ + font-size: 2rem; + margin: 0; +} + +h2 +{ + color: #c0c0c0; + font-size: 1.2rem; + margin: 0; +} + +h3 +{ + @extend %outset; + color: #808080; + background-color: #282828; + font-size: 1.2rem; + padding: .5rem; +} + + input[disabled] { cursor: not-allowed; @@ -284,56 +490,11 @@ input[disabled] .warning { - background: $warningColor; - border: solid 1px $warningBorderColor; + @extend %outset; + background: #973a38; padding: .5em; margin-bottom: 2rem; -} - - -.notificationContainer -{ - position: fixed; - top: 2rem; - z-index: 666; - - @media #{$mediumScreen} - { - width: 512px; - left: 50%; - } -} - - -.notification -{ - background-color: $notificationBackgroundColor; - border: solid 1px $notificationBorderColor; - box-shadow: $notificationShadow; - color: $notificationColor; - cursor: pointer; - padding: .5em; - margin-bottom: 2rem; - - position: relative; - - @media #{$mediumScreen} - { - left: -50%; - } - - .message - { - white-space: pre; - } - - - &.error - { - background-color: $errorBackgroundColor; - border: solid 1px $errorBorderColor; - color: $errorColor; - } + margin-top: 1rem; } @@ -352,12 +513,16 @@ input[disabled] .panel { - border: solid 1px $panelBorderColor; margin-bottom: 2rem; padding: 0; - & .panel-header + .panel-header { + @extend %outset; + border-radius: 3px 3px 0 0; + border-bottom-width: 0; + padding: .5em; + & input[type=checkbox] { margin-left: 0.5em; margin-top: 0.5em; @@ -387,6 +552,9 @@ input[disabled] & .panel-body { + @extend %outset; + border-radius: 0 0 3px 3px; + background-color: $panelBodyBackgroundColor; padding: 2rem; } @@ -395,7 +563,7 @@ input[disabled] select { - background: $containerBackgroundColor; + background: $containerBackground; color: white; &:focus @@ -410,14 +578,7 @@ select width: auto; } - -.checkbox +.weekdays .label { - white-space: nowrap; -} - - -.weekday label -{ - width: 5em; + width: 8em; } \ No newline at end of file From a2f7021d2c7e883ac00f10fc52ce99f6edb0f464 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Tue, 23 Jan 2018 15:06:51 +0100 Subject: [PATCH 28/43] Finished restyling --- src/assets/css.h | 167 +- src/assets/html.h | 305 +-- src/assets/js.h | 4599 +++++++++++++++++++++--------------------- src/assets/version.h | 6 +- web/app.js | 25 +- web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 20 +- web/site.scss | 171 +- web/variables.scss | 48 + 10 files changed, 2726 insertions(+), 2619 deletions(-) create mode 100644 web/variables.scss diff --git a/src/assets/css.h b/src/assets/css.h index a437d31..1ad9748 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -4,85 +4,92 @@ #include const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xad,0x58,0xeb,0x6e,0xa3,0x38,0x14,0x7e,0x15,0xa4, - 0x6a,0xa4,0xa9,0x14,0x10,0x90,0x26,0x4d,0x41,0xb3,0xda,0xd5,0xbe,0xc3,0xfe,0x19,0xf5,0x87,0x01,0x13, - 0xac,0x02,0x46,0xc6,0x34,0xe9,0x20,0xde,0x7d,0x8f,0x6d,0x4c,0x6c,0x70,0x2f,0xb3,0x5a,0xa1,0x99,0x06, - 0x5f,0xce,0xcd,0xe7,0x7c,0xe7,0x33,0x15,0x6f,0xea,0x31,0xa3,0x57,0xbf,0x27,0xbf,0x48,0x7b,0x4e,0x32, - 0xca,0x0a,0xcc,0x7c,0x18,0x49,0x4b,0xda,0x72,0x31,0x8c,0x93,0x63,0x1c,0x1c,0xbe,0x4d,0x19,0x2d,0xde, - 0xc6,0x0c,0xe5,0x2f,0x67,0x46,0x87,0xb6,0xf0,0x73,0x5a,0x53,0x96,0xdc,0x85,0x61,0x98,0xce,0x3f,0xcb, - 0xb2,0x54,0xbb,0x4a,0xd4,0x90,0xfa,0x2d,0xf9,0x07,0xb3,0x02,0xb5,0x68,0xf7,0x17,0x23,0xa8,0xde,0xf5, - 0xa8,0xed,0xfd,0x1e,0x33,0x52,0x1a,0xa2,0xa3,0x60,0x8f,0x1b,0xf5,0x7e,0xc1,0xe4,0x5c,0xf1,0x64,0x0f, - 0xf2,0x6a,0xcc,0x39,0x58,0xd1,0x77,0x28,0x17,0x46,0x05,0x61,0x04,0x8b,0x6a,0xd2,0x62,0xbf,0x52,0x8b, - 0x60,0x5b,0xda,0xa1,0xa2,0x80,0x59,0xb0,0x95,0x73,0xda,0x24,0x7b,0x86,0x9b,0xe9,0xcf,0x06,0x17,0x04, - 0x79,0x7d,0xce,0x30,0x6e,0x3d,0xd4,0x16,0xde,0xf7,0x86,0xb4,0xfe,0x85,0x14,0xbc,0x4a,0x1e,0x8f,0xa7, - 0xee,0x7a,0x3f,0x4a,0x3f,0xf4,0x66,0x4e,0x3b,0xb5,0x73,0x42,0x23,0xc7,0x57,0xee,0x17,0x38,0xa7,0x0c, - 0x71,0x42,0xdb,0xa4,0xa5,0x2d,0x9e,0x7e,0xbe,0xfa,0x79,0x4d,0xd1,0xcb,0xf3,0x58,0x90,0xbe,0xab,0xd1, - 0x9b,0x1a,0xbe,0xcb,0xc1,0x64,0x04,0x16,0x31,0x23,0x24,0xc9,0x5d,0x1c,0x8a,0x27,0x6d,0x10,0x3b,0x83, - 0x5a,0x21,0x3c,0x06,0xe1,0xda,0xd4,0x24,0x12,0x2f,0x32,0xda,0x15,0x2a,0xe8,0x25,0x09,0xbd,0xd0,0x3b, - 0x84,0xdd,0xd5,0xbb,0x2b,0xf3,0xf2,0x98,0x97,0xa9,0x0a,0x7f,0xd2,0xd3,0x9a,0x14,0x5e,0x24,0x26,0x20, - 0xbc,0x5f,0xf2,0xca,0x30,0xc8,0x18,0xd7,0x96,0xd4,0xb8,0xe4,0x09,0x1a,0x38,0xd5,0x03,0x4c,0x86,0x51, - 0x8c,0x4c,0x53,0x50,0x61,0x04,0x5a,0xc7,0x8e,0xf6,0x44,0x3a,0xce,0x70,0x0d,0x11,0x78,0xc5,0x7a,0xc6, - 0x23,0xcd,0x79,0x2c,0x21,0x0a,0x3c,0x11,0x82,0x6c,0x19,0xd1,0x7b,0x71,0x47,0xd7,0xc5,0xc2,0x47,0x61, - 0xa1,0x16,0x16,0x5c,0x48,0x49,0x7a,0x8e,0xf8,0xd0,0x8f,0x79,0x8d,0x11,0x83,0xa4,0xe3,0x95,0x19,0x33, - 0x75,0x20,0x5f,0xf1,0xda,0x25,0x73,0x71,0x03,0x65,0x10,0xc7,0x81,0xe3,0x54,0x19,0x1a,0xa6,0x42,0x76, - 0xb8,0xf8,0x6b,0x6e,0xf2,0x02,0xd2,0x16,0x24,0x47,0x9c,0xb2,0xe5,0x9c,0x49,0x2b,0x33,0x2e,0xab,0x69, - 0xfe,0x92,0x2a,0xad,0xf2,0xfc,0x74,0x0a,0xaa,0xb3,0x94,0xe5,0xc2,0x50,0x41,0x86,0x3e,0x39,0x84,0xdf, - 0xec,0xd8,0x04,0x07,0xe1,0xc9,0xc7,0xfa,0x7e,0x16,0x88,0x23,0x5f,0x0d,0xff,0x80,0x43,0x6c,0x71,0xce, - 0x71,0xf1,0xec,0xa8,0xb4,0xfd,0xd3,0xf1,0x77,0x64,0x81,0x1f,0xa6,0xb8,0x75,0x66,0x9d,0x19,0x7e,0xfb, - 0x0f,0xa6,0x41,0x1a,0xbb,0x6c,0x2b,0x9f,0xf6,0xbf,0x23,0x0c,0x33,0x46,0x99,0x4b,0x4e,0x0e,0xe9,0x1e, - 0x64,0x03,0x54,0x74,0xbb,0x0b,0xf2,0x0a,0xe7,0x2f,0x5e,0x20,0x32,0x9b,0xd1,0x7a,0x17,0xb4,0x94,0x83, - 0xe4,0x5c,0x56,0xe7,0x2e,0xe8,0x50,0x8b,0x6b,0x4f,0xfd,0xf1,0x45,0x51,0xaf,0x86,0x94,0x35,0xbb,0x40, - 0x1c,0x0e,0x35,0xa4,0x5c,0x10,0x6b,0xc1,0x8b,0x5d,0xb5,0xd7,0x41,0x11,0xe1,0x50,0x81,0xb9,0x8b,0xa2, - 0x68,0x75,0xa8,0x7b,0xa8,0x22,0xa3,0x64,0x49,0xdb,0x63,0x0e,0x65,0x2b,0xf6,0xb0,0x73,0x86,0xbe,0xc7, - 0x87,0xc3,0x4e,0xff,0x0b,0xa2,0xfb,0x9d,0x5e,0xe0,0x8b,0x15,0x7b,0xbd,0x2a,0xdc,0x89,0x27,0xd8,0xdf, - 0xe6,0xc3,0x77,0x85,0x84,0xa7,0xfb,0x9d,0x9a,0x8b,0x57,0xdb,0xa3,0xc3,0xbd,0x8e,0x4e,0x80,0x72,0x51, - 0xa2,0xbb,0xf9,0x35,0x51,0xaf,0xb3,0x47,0x06,0x36,0x4b,0x97,0xb4,0x5f,0x4e,0x2f,0xd6,0x4a,0xe2,0x83, - 0x56,0xef,0x34,0x4d,0x1b,0xe0,0xae,0x13,0x8d,0x74,0x20,0x00,0xe4,0xea,0xc6,0x50,0x14,0x45,0x6a,0xc2, - 0xe4,0x43,0x28,0x9e,0x34,0x1f,0x58,0x0f,0xd3,0x1d,0x25,0x2d,0xc0,0xfd,0xe2,0x59,0x49,0xf3,0xa1,0x5f, - 0x1c,0xb3,0xdf,0x2a,0xfa,0x0a,0x48,0xf5,0x8e,0xd8,0x43,0x28,0x9e,0x94,0x0e,0x5c,0x58,0x94,0x84,0x9f, - 0xc4,0x4a,0xa7,0x5c,0x9e,0x5b,0x52,0xe2,0x93,0x78,0x26,0xa4,0xfd,0x34,0xfb,0x8e,0x40,0xa6,0xd4,0xd9, - 0x27,0x02,0x0e,0x70,0xf3,0x11,0x9e,0xc9,0x05,0x7f,0x68,0xa1,0x26,0x2e,0x8b,0x4c,0x59,0x25,0x5d,0x68, - 0x2f,0x4f,0x4a,0xc2,0x7a,0xee,0xe7,0x15,0xa9,0x0b,0x6b,0x6b,0xb8,0x4d,0x56,0x99,0x58,0xf0,0x77,0x25, - 0xa1,0x46,0x8b,0x80,0x95,0x2a,0x99,0xa4,0x72,0xe3,0x5a,0xa9,0x88,0xfc,0xb6,0x2b,0xa4,0xbf,0x7c,0x28, - 0x6a,0x7c,0x4d,0xa2,0x29,0x80,0xc3,0xe8,0x61,0x6e,0x0e,0xa5,0x80,0x14,0xa3,0xb7,0x9f,0x3a,0xae,0x62, - 0x85,0x6a,0x72,0x6e,0x93,0x1c,0x8b,0x53,0x5e,0xf7,0xc6,0xc9,0xaa,0xea,0xbf,0x97,0x26,0xb6,0xa8,0x2d, - 0xc9,0x15,0x17,0xe9,0xd2,0x4a,0xb5,0xf2,0xe3,0xf1,0xf8,0xb5,0x0e,0xe1,0x16,0xaf,0xd6,0x1c,0x64,0x92, - 0xca,0x48,0x02,0x76,0x4f,0xb6,0x2d,0x76,0x63,0x7f,0x7a,0x44,0xd9,0x69,0xdd,0xbb,0xa3,0x70,0x6e,0xd1, - 0x26,0x03,0xb2,0xb3,0x7a,0xa9,0x88,0xe0,0x00,0xd6,0xcf,0xce,0xcf,0x94,0x45,0x71,0x83,0x4d,0xd7,0xfd, - 0x6d,0xb7,0x46,0x95,0x46,0x5b,0x17,0xbc,0xa0,0xc1,0x7d,0x8f,0xce,0x78,0xbc,0x54,0x84,0x63,0x49,0xa8, - 0x70,0xd2,0x31,0x6c,0x2f,0x0b,0x24,0x1c,0x5b,0xfe,0x3e,0x3d,0xee,0xd1,0xfe,0x34,0x29,0x08,0x9e,0x31, - 0xd4,0x5d,0xf1,0x2b,0x77,0x87,0x5e,0x10,0x37,0x5c,0x43,0xab,0x90,0x85,0x91,0x9a,0x9a,0x5b,0x7a,0x61, - 0xa8,0x9b,0x36,0xc0,0x6e,0x43,0xf4,0xe8,0x80,0x8a,0x8f,0x9a,0xf2,0x11,0xce,0x50,0x37,0x65,0xf1,0xdb, - 0xc1,0x63,0x66,0x85,0x35,0xca,0xf0,0x4d,0x9d,0x7c,0x73,0x3b,0x65,0xd6,0x98,0x3c,0x38,0x48,0x74,0x0e, - 0xd1,0xaa,0xe7,0x5c,0x86,0x74,0x9c,0x85,0xaa,0xff,0x71,0xb1,0xf6,0x66,0x33,0x6e,0x79,0x75,0x0c,0xc5, - 0x33,0x6d,0x7a,0x93,0xfd,0x2e,0xba,0xa7,0x64,0x98,0x6b,0x96,0xb1,0xde,0xa8,0x17,0x1a,0x94,0x7c,0xcb, - 0x82,0x44,0x09,0x1d,0x96,0x74,0x87,0x1f,0x2a,0x7c,0x46,0xf4,0x8e,0x02,0x35,0xdc,0xd6,0x2f,0xa6,0x18, - 0x4e,0x48,0xe0,0x34,0x0b,0x22,0x5a,0x75,0x12,0xd1,0xad,0xec,0xa3,0xd6,0x62,0x3e,0xb1,0xee,0xc1,0x65, - 0x9d,0xc4,0x34,0x77,0xcc,0xed,0x40,0xcd,0x24,0x67,0xdb,0xbd,0x4e,0xf7,0x1a,0x2e,0x95,0x70,0x51,0xc2, - 0xb1,0xea,0x80,0x29,0x67,0x70,0x3d,0x29,0x29,0x6b,0x12,0x46,0x81,0xa3,0xe0,0xef,0xfe,0xc3,0xa1,0xc0, - 0xe7,0x7b,0xd3,0x43,0xd9,0xd2,0x43,0xbb,0x59,0x5a,0xbd,0xf2,0xe6,0x37,0x69,0xbb,0x81,0xef,0x04,0xfa, - 0x21,0x86,0xd1,0x78,0x83,0x07,0x35,0xf3,0x93,0xbf,0x75,0xf8,0x07,0xa8,0x3c,0xe3,0xe7,0xd1,0x40,0x44, - 0x49,0x2a,0x6d,0x90,0x90,0xfc,0xba,0x8a,0xc6,0x1b,0xae,0xc6,0xb7,0x45,0xd0,0x28,0xaa,0x78,0x96,0xde, - 0x93,0x1a,0xb2,0xd4,0xba,0x5b,0xad,0x56,0xee,0x4d,0x9c,0xde,0x72,0x2f,0xd5,0xf8,0xb6,0x02,0x6e,0x08, - 0x26,0x4c,0x51,0xf6,0x43,0xd5,0xa0,0xac,0x16,0xc4,0x72,0xae,0x7f,0xc0,0x13,0xa8,0x8d,0x9a,0x5e,0x00, - 0xac,0x3f,0xd6,0x72,0x14,0xcf,0xa4,0xaa,0xcf,0x57,0x55,0x37,0x5a,0xac,0x59,0xb5,0x85,0x0a,0xf0,0x64, - 0x29,0x4e,0x55,0x95,0x76,0x6b,0x31,0xb4,0xac,0x22,0x36,0xd3,0x6e,0xb8,0xb0,0x08,0xbb,0xc7,0x55,0x27, - 0xde,0xf6,0xa4,0x29,0xe8,0x87,0x8c,0x76,0x22,0x21,0x7b,0xab,0xbd,0x2a,0x39,0xaa,0x1d,0xf6,0xa3,0x6b, - 0x1f,0x24,0x1a,0xb4,0xc0,0x71,0xd3,0xd4,0x7a,0x8e,0x3b,0x4b,0xd4,0xde,0x38,0x59,0x76,0xe3,0x12,0x0e, - 0xac,0x12,0x5b,0xbd,0x59,0xf2,0xed,0x52,0x67,0x6d,0x7d,0xd0,0x2a,0xbc,0xe0,0x15,0xd5,0x03,0xfe,0xe4, - 0xce,0x13,0xc8,0xb4,0xba,0xc5,0x4b,0xdb,0x3d,0xc2,0x9d,0x3b,0x7b,0x21,0xe0,0x54,0xd7,0x01,0x6f,0x41, - 0xad,0x84,0x68,0x81,0xd9,0x0a,0x58,0x43,0xb8,0xcf,0xcc,0xc5,0x27,0x43,0xba,0x22,0x1b,0xc0,0x14,0xe5, - 0xe0,0x16,0xad,0x0d,0x06,0xa6,0x34,0x25,0x89,0x56,0xa5,0xde,0x7d,0x5e,0x0d,0x4d,0xf6,0xae,0x7e,0xb7, - 0x3d,0xb1,0x71,0xfb,0x8a,0xdd,0xb7,0x2f,0xd3,0x96,0xf9,0x4a,0xbd,0x26,0x99,0x8b,0x41,0x0d,0xfd,0xe5, - 0xcb,0x0a,0x9c,0x8d,0xf9,0x3f,0x95,0xcc,0x77,0x0c,0x47,0x4b,0xfd,0x94,0x0f,0xac,0xd0,0x40,0x74,0x6a, - 0x71,0x73,0x32,0x4b,0xd7,0x91,0x88,0x92,0x78,0x1a,0xf4,0x73,0x52,0x97,0xa0,0xd1,0x45,0x38,0x34,0x45, - 0x9f,0x5c,0xf7,0xa5,0x71,0x4b,0x28,0x67,0x52,0x99,0x2e,0xdf,0x86,0x84,0x2c,0x0d,0xa1,0xb6,0x3f,0x8e, - 0x4b,0x6b,0x18,0x97,0x00,0x2a,0x06,0x00,0xba,0xb4,0x7a,0x06,0x2a,0x4a,0x70,0x07,0xd4,0x7d,0x1e,0x37, - 0x5d,0xd8,0x88,0x8d,0x23,0x7c,0x62,0xc8,0x2d,0x5d,0x75,0x7a,0x03,0xd8,0xbe,0xf8,0xa9,0xc8,0x29,0x4c, - 0xde,0x26,0x04,0x1e,0xa8,0x2f,0x22,0xb2,0xd0,0x26,0xb7,0x5e,0xe4,0xbc,0x92,0xce,0xe6,0xbc,0x1b,0x12, - 0xf5,0xa1,0x6d,0x45,0xd2,0x17,0x9a,0xee,0x82,0xd4,0x07,0x78,0xe2,0xe5,0x24,0x24,0x02,0x29,0x0a,0xe6, - 0xfa,0x38,0x65,0xe8,0x9d,0x79,0x9a,0x22,0xfa,0x86,0x5c,0xd2,0x00,0x67,0x9c,0xef,0x35,0x33,0x42,0x7f, - 0x40,0xc0,0xe4,0x57,0xa4,0xe0,0x82,0xf1,0x4b,0x81,0xde,0x7a,0xcd,0xab,0xd4,0xdc,0x09,0x4c,0xf9,0x17, - 0xe1,0xb4,0xa0,0x28,0x64,0x14,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xad,0x58,0xdb,0x6e,0xa3,0x38,0x18,0x7e,0x15,0xa4, + 0x6a,0xa5,0xe9,0x0a,0x10,0x49,0x4a,0x9a,0x82,0x66,0xb5,0xab,0x7d,0x87,0xbd,0x19,0xe5,0xc2,0x80,0x09, + 0x56,0x09,0x46,0xb6,0xd3,0xb4,0x83,0x78,0xf7,0xfd,0x6d,0x63,0x62,0x83,0xdb,0xe9,0x8c,0x46,0x28,0x07, + 0x7c,0xf8,0xcf,0x87,0xcf,0x6e,0xc4,0xb9,0x1d,0x0a,0xfa,0x1a,0x71,0xf2,0x9d,0x74,0xa7,0xac,0xa0,0xac, + 0xc2,0x2c,0x82,0x91,0xbc,0xa6,0x9d,0x90,0xc3,0x38,0xdb,0x6f,0xe3,0xf4,0x8f,0xf1,0xcf,0x30,0x43,0xb5, + 0xc0,0x2c,0xcc,0x0a,0x5c,0x53,0x86,0xed,0x6d,0xa4,0x6b,0x30,0x23,0x62,0x2c,0x68,0xf5,0x36,0x14,0xa8, + 0x7c,0x3e,0x31,0x7a,0xe9,0xaa,0xa8,0xa4,0x2d,0x65,0xd9,0x5d,0x92,0x24,0xf9,0xf4,0xb7,0xae,0x6b,0x4d, + 0xb9,0x46,0x67,0xd2,0xbe,0x65,0xff,0x61,0x56,0xa1,0x0e,0x85,0xff,0x30,0x82,0xda,0x90,0xa3,0x8e,0x47, + 0x1c,0x48,0xd5,0x16,0xfb,0x4d,0xbc,0xc3,0x67,0xfd,0x7e,0xc5,0xe4,0xd4,0x88,0x6c,0x07,0xf4,0x5a,0x2c, + 0x40,0x98,0x88,0xf7,0xa8,0x94,0x12,0xc4,0xc9,0x06,0x16,0xb5,0xa4,0xc3,0x51,0xa3,0x17,0xc1,0xb6,0xbc, + 0x47,0x55,0x05,0xb3,0xa0,0x8f,0x10,0xf4,0x9c,0xed,0x18,0x3e,0x8f,0x7f,0x9f,0x71,0x45,0x50,0xc0,0x4b, + 0x86,0x71,0x17,0xa0,0xae,0x0a,0xbe,0x9c,0x49,0x17,0x5d,0x49,0x25,0x9a,0xec,0x71,0x7f,0xe8,0x5f,0xef, + 0x07,0xa5,0x87,0xd9,0x2c,0x68,0xaf,0x77,0x8e,0x68,0x10,0xf8,0x55,0x44,0x15,0x2e,0x29,0x43,0x82,0xd0, + 0x2e,0xeb,0x68,0x87,0xc7,0x6f,0x2f,0x51,0xd9,0x52,0xf4,0x7c,0x1c,0x2a,0xc2,0xfb,0x16,0xbd,0xe9,0xe1, + 0xbb,0x12,0x44,0x46,0x20,0x11,0xb3,0x4c,0x92,0xdd,0x6d,0x13,0xf9,0xe4,0x67,0xc4,0x4e,0xc0,0x56,0x12, + 0xdf,0x02,0x71,0x23,0x6a,0xb6,0x91,0x2f,0xca,0xb4,0x0d,0xaa,0xe8,0x35,0x4b,0x82,0x24,0x48,0x93,0xfe, + 0x35,0xb8,0xab,0xcb,0x7a,0x5f,0xd6,0xb9,0x76,0x51,0xc6,0x69,0x4b,0xaa,0x60,0x23,0x27,0xc0,0xbc,0x9f, + 0xd2,0xca,0x12,0xc8,0x1a,0x37,0x92,0xb4,0xb8,0x16,0x19,0xba,0x08,0x6a,0x06,0x98,0x32,0xa3,0x1c,0x19, + 0xc7,0xb8,0xc1,0x08,0xb8,0x0e,0x3d,0xe5,0x44,0x29,0xce,0x70,0x0b,0x16,0x78,0xc1,0x66,0x26,0x20,0xe7, + 0xd3,0x50,0x83,0x15,0x44,0x26,0x09,0xb9,0x34,0x36,0xef,0xd9,0x1d,0xbd,0xce,0x12,0x3e,0x4a,0x09,0x0d, + 0xb1,0xf8,0x4a,0x6a,0xc2,0x05,0x12,0x17,0x3e,0x94,0x2d,0x46,0x0c,0x02,0x53,0x34,0xb6,0xcd,0xb4,0x43, + 0x3e,0xa3,0xb5,0x8f,0xe6,0xac,0x06,0x2a,0xc0,0x8e,0x17,0x81,0x73,0x2d,0x68,0x92,0x4b,0xda,0xc9,0xac, + 0xaf,0xbd,0x29,0x88,0x49,0x57,0x91,0x12,0x09,0xca,0x66,0x3f,0x93,0x4e,0x45,0x5c,0xd1,0xd2,0xf2,0x39, + 0xd7,0x5c,0x95,0xff,0x4c,0x08,0x6a,0x5f,0xaa,0x94,0x62,0xa8,0x22,0x17,0x9e,0xa5,0xc9,0x1f,0xae,0x6d, + 0xe2,0x54,0x6a,0xf2,0x31,0xbf,0x6f,0x15,0x12,0x28,0xd2,0xc3,0x5f,0xc1,0x89,0x1d,0x2e,0x05,0xae,0x8e, + 0x9e,0x4c,0xdb,0x3d,0xed,0x7f,0x86,0x16,0xe8,0x61,0x93,0x5b,0x46,0xd6,0x89,0xe1,0xb7,0x5f,0x10,0x0d, + 0xc2,0xd8,0x27,0x5b,0xfd,0xb4,0xfb,0x19,0x62,0x98,0x31,0xca,0x7c,0x74,0x4a,0x08,0xf7,0xb8,0xb8,0x40, + 0x46,0x77,0x61,0x5c,0x36,0xb8,0x7c,0x0e,0x62,0x19,0xd9,0x8c,0xb6,0x61,0xdc,0x51,0x01,0x94,0x4b,0x95, + 0x9d,0x61,0xdc,0xa3,0x0e,0xb7,0x81,0xfe,0x89,0x64,0x52,0x2f,0x86,0xb4,0x34,0x61,0x2c,0x9d,0x43,0x2d, + 0x2a,0x57,0xc4,0x3a,0xd0,0x22,0x9c,0xb8,0x34,0xbb,0x90,0x74,0xfd,0x45,0x7c,0x13,0x6f,0x3d,0xfe,0xca, + 0x2f,0xc5,0x99,0x88,0x63,0xc8,0x71,0x0b,0xca,0x1a,0xab,0x49,0x7b,0x69,0xcb,0xdd,0x6d,0x36,0x9b,0x85, + 0xd7,0x77,0x90,0x66,0x56,0x4e,0x93,0x8e,0x63,0x01,0x79,0x2d,0xf7,0xb0,0x53,0x81,0xbe,0x6c,0xd3,0x34, + 0x34,0x9f,0x78,0x73,0x1f,0x9a,0x05,0x91,0x5c,0xb1,0x33,0xab,0x92,0x50,0x3e,0xf1,0xee,0x36,0x9f,0xbc, + 0x4b,0x24,0x39,0xdc,0x87,0x7a,0x6e,0xbb,0xd8,0xbe,0x49,0xef,0x8d,0xf9,0x62,0x54,0xca,0x1c,0x0e,0xa7, + 0xd7,0x6c,0x7a,0x75,0x27,0xdd,0x39,0xcb,0x0e,0xdd,0xe5,0x5c,0x60,0x76,0xb4,0x87,0x7a,0xc4,0xf9,0x15, + 0x34,0x3f,0x7a,0xec,0x15,0xaf,0x29,0x4c,0x33,0x1e,0xda,0xb2,0xce,0x1e,0x43,0xf9,0x8d,0x18,0x46,0x1f, + 0xdb,0xf8,0xd6,0x64,0xd4,0xb0,0x99,0xf3,0x5a,0x7b,0x69,0x8c,0x6d,0x6a,0xcc,0xe4,0x35,0xe1,0x1c,0x67, + 0xd3,0xcf,0x5a,0x76,0x7f,0x29,0x30,0xc5,0x1c,0x48,0x03,0x47,0xd3,0xfb,0xaa,0xaa,0xca,0xed,0x4e,0xf0, + 0x90,0xc8,0x27,0x2f,0x2f,0x8c,0xc3,0x74,0x4f,0x49,0x07,0x1d,0xcd,0xe9,0x61,0xaa,0xca,0x19,0x67,0xd5, + 0xb4,0xbc,0xf0,0xd9,0x57,0xee,0x5b,0x43,0x5f,0x20,0x8e,0x9d,0x85,0xce,0x3a,0x67,0x99,0xc7,0x37,0x7a, + 0x95,0xc7,0x35,0xef,0x4e,0x28,0x52,0xc3,0x3b,0x9a,0xa5,0x89,0x7c,0x72,0x7a,0x11,0x52,0x9b,0x2c,0xf9, + 0x3d,0x01,0xf7,0xd9,0x40,0x32,0x52,0x95,0x65,0xe9,0x48,0xb5,0x3d,0xc8,0xc7,0xc8,0x12,0xf5,0x8c,0x40, + 0x25,0x7e,0xf3,0x39,0xd5,0xd9,0xb5,0xdd,0xa7,0x68,0xb3,0xdc,0xe5,0x7a,0xc3,0x8c,0x66,0xfe,0xd1,0xdf, + 0x6e,0x76,0x47,0xbe,0xfd,0xe3,0xb6,0xd8,0x8f,0x68,0x62,0xea,0x87,0x28,0xb1,0x80,0x4e,0xf7,0x51,0x2b, + 0x55,0x0b,0xfe,0x32,0x34,0x6c,0x48,0x20,0x6b,0xd0,0xa2,0x9c,0x25,0xee,0xf2,0xac,0x26,0x8c,0x8b,0xa8, + 0x6c,0x48,0x5b,0x39,0x5b,0x93,0x75,0x19,0x54,0x25,0x0b,0x7e,0x17,0x14,0x5a,0x34,0x13,0x58,0xb0,0x52, + 0xe5,0x4f,0x6d,0x5c,0x32,0x95,0x26,0x5a,0x03,0x92,0xfc,0x7b,0x04,0xfd,0x04,0xbf,0x66,0xe0,0x32,0x30, + 0x15,0x87,0xb9,0x29,0x1e,0x64,0x37,0xb3,0x60,0xe5,0xa1,0x17,0xb9,0xb2,0x15,0x6a,0xc9,0xa9,0xcb,0x4a, + 0xac,0xb2,0x6f,0x01,0xcb,0x46,0xa7,0xa1,0xfc,0x3b,0xe3,0xa7,0x99,0x6d,0x4d,0x5e,0x71,0x95,0xcf,0x28, + 0xce,0x30,0xdf,0xef,0xf7,0x9f,0x03,0x27,0x7e,0xf2,0x7a,0x4d,0xaa,0x8a,0x87,0xb2,0x24,0xc0,0x86,0xd1, + 0x95,0xc5,0x8d,0x81,0xa7,0x47,0x54,0x1c,0x96,0xb0,0x71,0x93,0x4c,0xe8,0xd0,0x06,0xdf,0x8b,0x6a,0x63, + 0x2a,0x55,0x9c,0x82,0xf4,0x93,0xf2,0x13,0x5a,0xd6,0xb0,0x74,0x05,0xf8,0x7e,0x5a,0xad,0x41,0x87,0xd1, + 0x5a,0x85,0x20,0x3e,0x63,0xce,0xd1,0x09,0x0f,0xd7,0x86,0x08,0xac,0xb0,0x3c,0xce,0x7a,0x86,0xdd,0x65, + 0xb1,0x42,0x02,0x8e,0xbe,0x4f,0x8f,0x3b,0xb4,0x83,0x4c,0x56,0xdd,0x7f,0x6a,0xdf,0xfe,0x4a,0xbc,0x50, + 0xf7,0xc2,0xe5,0x99,0x41,0x35,0x6e,0x95,0x18,0xb9,0xcd,0xb9,0xa3,0x57,0x86,0xfa,0x71,0x85,0x29,0x5c, + 0x74,0x30,0x78,0x4a,0xf8,0x47,0x78,0x70,0x0f,0x3e,0x34,0x78,0x50,0xfe,0xf7,0x40,0xe8,0x89,0x61,0x8b, + 0x0a,0x7c,0x63,0xa7,0xde,0xfc,0x4a,0xd9,0x39,0xa6,0x1c,0x07,0x81,0x2e,0xc0,0x5a,0xed,0x14,0xcb,0x10, + 0x8e,0x13,0x51,0xfd,0x8d,0xab,0xa5,0x36,0xab,0x71,0x47,0xab,0x7d,0x22,0x1f,0x43,0x02,0x44,0x40,0x45, + 0x8b,0x2b,0xb3,0xd5,0xbc,0x0f,0x93,0x6d,0xc1,0x57,0xc0,0xb7,0xa5,0x57,0x5c,0x8d,0x2b,0x24,0xe5,0xbe, + 0x4b,0xac,0xa7,0xce,0x43,0x4b,0x4c,0xbc,0xdc,0x68,0x16,0x5a,0x07,0xc8,0x35,0x66,0x97,0x59,0x97,0xce, + 0x19,0x02,0x7f,0xb4,0xc5,0x2d,0x83,0xef,0x65,0xa1,0xf1,0x2b,0x3c,0x8b,0x62,0xe9,0xad,0x1a,0x86,0x9d, + 0x43,0x9b,0x05,0x5c,0x90,0xd0,0xc9,0x8d,0x0e,0x43,0xe6,0x07,0xd2,0x3d,0xf8,0xa4,0x53,0x65,0xd0,0xef, + 0x26,0xd7,0x50,0x13,0x24,0x5f,0x43,0x94,0xc3,0xbd,0xa9,0xb0,0x9a,0xb8,0xcc,0xfa,0xad,0x86,0x39,0xb9, + 0x60,0x70,0x98,0x86,0x83,0xfa,0x39,0x63,0x14,0x10,0x35,0xfe,0x12,0x3d,0xa4,0x15,0x3e,0xdd,0xdb,0x1a, + 0x2a,0x7c,0x99,0xb8,0x88,0xc8,0x01,0x44,0x96,0xde,0x92,0x54,0x64,0xa2,0xc5,0x2a,0x93,0x70,0xee,0x1e, + 0x7f,0x01,0x15,0x2e,0x11,0x9e,0x07,0x17,0xdd,0x8a,0x96,0x53,0xa5,0xa6,0xbc,0x4a,0x20,0x6a,0x0c,0x04, + 0xff,0xf4,0x66,0x5b,0x52,0xb0,0xcf,0x09,0x1f,0x1d,0x55,0xd8,0xaa,0x08,0xaa,0xa3,0x6b,0xb3,0x19,0x6e, + 0x7d,0x63,0x7b,0x5b,0x04,0x8d,0xb0,0xd9,0x4e,0x31,0xca,0x49,0x0b,0x59,0xe8,0x5c,0x5b,0x2c,0x56,0xee, + 0xec,0x3e,0xb4,0xc6,0x25,0xeb,0xad,0x37,0xc1,0x95,0x10,0x0f,0x83,0xbd,0xe2,0x81,0xcd,0xda,0x98,0x84, + 0x3c,0x7a,0x32,0x32,0x7f,0x8f,0xe7,0x5e,0x3e,0xa3,0x5b,0x64,0x9c,0xea,0x32,0xf9,0x76,0x61,0x0f,0x65, + 0x44,0x5d,0x9b,0x22,0x5d,0x93,0x06,0xe7,0x38,0xab,0x9b,0x66,0x03,0xd5,0x76,0x41,0xd5,0x6d,0xbc,0x96, + 0x54,0x0b,0x7b,0x4f,0xe7,0xe1,0x96,0x22,0xa9,0xfb,0xb0,0xc0,0x29,0xeb,0x8e,0x3d,0xc6,0x00,0x8d,0x68, + 0x2f,0x73,0x8f,0x3b,0xe0,0x23,0xb5,0xb0,0x33,0x1f,0x7c,0xfb,0x20,0xa7,0x00,0x20,0x0c,0xab,0x96,0xcf, + 0x05,0xee,0x1d,0x52,0x3b,0x2b,0x2e,0xd8,0x0c,0xcc,0x7d,0x95,0x5c,0x6e,0x0d,0x26,0xca,0xb7,0xdb,0x16, + 0x67,0xeb,0x83,0x61,0x11,0xc4,0x2f,0xa8,0xbd,0xe0,0x1f,0x5c,0x46,0xc4,0x2a,0x28,0x6f,0xf6,0x1a,0xdf, + 0xa3,0x6e,0x02,0xd8,0x2c,0x18,0xa2,0x2b,0x2e,0x9e,0x09,0x68,0xdd,0xf7,0x00,0xfb,0x50,0xa7,0x3a,0x9c, + 0x6c,0x79,0x73,0xfe,0x98,0x42,0xa4,0x6c,0xbe,0xc0,0x6a,0x70,0x34,0x52,0x83,0xeb,0xd4,0xb2,0x50,0xbd, + 0xe6,0x94,0x65,0x86,0x95,0x7e,0x8f,0x44,0x03,0x45,0xe0,0x5d,0xfe,0x7e,0x79,0xb6,0xd6,0xbd,0xc9,0xd6, + 0x7f,0x6f,0x62,0xcb,0x32,0x5d,0x86,0xb9,0xed,0xdd,0x12,0xe8,0x4c,0xbf,0x47,0x2a,0xc1,0x27,0x61,0x7e, + 0x27,0x93,0xe9,0x76,0xc0,0x83,0x48,0x7e,0x08,0xa7,0x56,0xbe,0xea,0xa8,0xbc,0xf3,0xb0,0x2b,0x83,0x27, + 0x52,0x15,0x6e,0xb7,0xd0,0xfb,0xa8,0xaf,0x2f,0x06,0x1f,0x5e,0x33,0x27,0xcf,0xd1,0x77,0xd3,0x31,0xac, + 0xf1,0xf8,0x84,0xc9,0xf3,0xf9,0xe6,0x57,0xd2,0x32,0xed,0xc4,0xd5,0xe7,0xc3,0x32,0xeb,0xe5,0x17,0xe8, + 0xfa,0x62,0xd5,0xad,0x4f,0x5e,0xc0,0x7a,0x89,0xa9,0x83,0x9f,0x4c,0x66,0x7d,0xcf,0xa8,0xb2,0x64,0xf4, + 0xf3,0x35,0x58,0xca,0x37,0x67,0xac,0xed,0x91,0x5a,0xdf,0x5f,0x2f,0x0e,0x20,0xf3,0x11,0xc4,0x31,0xc0, + 0x2e,0x91,0xcf,0x6c,0x20,0x5d,0x39,0x14,0x95,0xe9,0x7c,0xba,0xb4,0xbc,0xbd,0xb7,0x78,0x40,0xe9,0xc1, + 0x31,0xde,0x54,0x4b,0x3f,0x00,0x92,0xea,0x22,0x36,0xbe,0x62,0xfc,0x5c,0xa1,0x37,0xbe,0xce,0x7a,0x33, + 0x63,0x90,0xa3,0xde,0x75,0x80,0xa9,0xff,0x01,0x2a,0xd5,0x64,0x08,0xe5,0x17,0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index e66db66..f2f656d 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,157 +4,158 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0x59,0x57,0xe3,0x3a,0x12,0xfe,0x2b,0x6e, - 0xdf,0x99,0x81,0x9e,0x6e,0xc2,0xda,0xdc,0x86,0x01,0xe6,0x66,0x85,0x40,0x12,0x42,0x12,0xd6,0x97,0x39, - 0x8a,0xad,0xd8,0x02,0x6f,0x48,0x72,0x42,0xee,0xf2,0xdf,0x47,0x8b,0x17,0xd9,0xb1,0x93,0xd0,0xd3,0xe7, - 0x2e,0xe7,0x0c,0x0f,0x24,0x56,0x6d,0x9f,0xca,0x55,0xa5,0x92,0xec,0x9c,0x7c,0x68,0x5c,0xd7,0x47,0x8f, - 0xfd,0xa6,0x66,0x53,0xd7,0x39,0x3b,0x89,0xfe,0x43,0x60,0x9e,0x9d,0xb8,0x90,0x02,0xcd,0xb0,0x01,0x26, - 0x90,0x9e,0xea,0xb7,0xa3,0xd6,0xd6,0x57,0xfd,0xec,0x84,0x22,0xea,0xc0,0xb3,0x93,0xed,0xe8,0x53,0x30, - 0x79,0xc0,0x85,0xa7,0x3a,0xb5,0xa1,0x0b,0xb7,0x0c,0xdf,0xf1,0xb1,0xae,0x19,0xbe,0x47,0xa1,0xc7,0xe4, - 0x7e,0xd8,0x11,0x7f,0x7a,0x86,0x75,0x8a,0xe0,0x2c,0xf0,0x31,0x55,0xf8,0x66,0xc8,0xa4,0xf6,0xa9,0x09, - 0xa7,0xc8,0x80,0x5b,0xe2,0xe2,0x33,0xf2,0x10,0x45,0xc0,0xd9,0x22,0x06,0x70,0xe0,0xe9,0x2e,0x53,0xe1, - 0x20,0xef,0x45,0xc3,0xd0,0x39,0xd5,0x09,0x9d,0x3b,0x90,0xd8,0x10,0x32,0x1d,0x36,0x86,0x93,0x53,0x7d, - 0x1c,0x7a,0xa6,0x03,0x2b,0x06,0x21,0x8c,0x91,0x18,0x18,0x05,0x54,0x23,0xd8,0x48,0x08,0xcf,0x7c,0x7c, - 0x5b,0x12,0xd8,0x17,0x39,0xc7,0xb1,0x6f,0xce,0xcf,0x4e,0x4c,0x34,0xd5,0x90,0x79,0xaa,0x83,0x20,0xd0, - 0xe5,0xd5,0x74,0xcb,0x70,0x7c,0xf0,0x22,0x2f,0x0c,0x07,0x10,0x72,0xaa,0x7b,0x3e,0x45,0x13,0x64,0x00, - 0x8a,0x7c,0xaf,0xce,0x60,0x03,0xe4,0x41,0xac,0x97,0xb2,0xe8,0xda,0x71,0x34,0xfa,0x8b,0x06,0x31,0xf6, - 0xf1,0xb1,0xa6,0x92,0xb5,0x0f,0xa7,0x9a,0x17,0x3a,0x8e,0xf6,0x8f,0x7f,0x64,0xc6,0x2b,0x82,0x57,0xfb, - 0x4d,0x67,0x18,0xd0,0x24,0xab,0x32,0x96,0xd1,0xb5,0x9f,0x0c,0x07,0x19,0x2f,0x95,0x00,0xc3,0xa9,0xf0, - 0x9e,0x8d,0x4c,0xd8,0x53,0x8d,0x33,0x17,0x04,0xc0,0x8b,0x71,0xb9,0x90,0x10,0x60,0x41,0xfd,0xec,0x97, - 0x5f,0xb2,0xc6,0x22,0x82,0xf6,0xdb,0x6f,0xcc,0x35,0x4c,0x80,0x39,0x86,0x4d,0x27,0xfe,0x1f,0xfb,0xc5, - 0x28,0x9e,0x2d,0x77,0xa1,0x18,0x43,0xae,0x25,0x5d,0x6d,0x02,0x0a,0x8e,0x91,0xcb,0x34,0x6e,0x07,0x9e, - 0xf5,0xaf,0x31,0x20,0xf0,0xf0,0xe0,0x33,0xba,0xab,0x5d,0x0f,0x66,0x3b,0x57,0xe7,0x96,0x5f,0x65,0x7f, - 0xbd,0xe1,0xad,0xdd,0xbc,0xb5,0xd8,0xb7,0x06,0xbf,0xac,0xce,0xea,0xd5,0x47,0xf6,0x51,0x7b,0xa8,0x4e, - 0xdd,0x0b,0x3e,0x70,0xfe,0x30,0x68,0xdd,0x5f,0x0c,0x46,0xe3,0xbd,0xa7,0x1d,0x73,0xaf,0x35,0x7f,0xba, - 0xa9,0xd5,0x9e,0xce,0x8f,0xd0,0xd3,0xb0,0x76,0x39,0xbe,0x6f,0x79,0x4f,0x77,0x97,0xce,0xe3,0xfd,0xe0, - 0x8b,0x61,0x38,0x4e,0x9f,0x0b,0x3c,0xd4,0x2e,0x07,0xcd,0xd6,0x2d,0xec,0x61,0x72,0x6f,0x36,0x7b,0xd6, - 0x73,0xf5,0xa6,0x63,0x3c,0xd6,0x8c,0x6a,0xdf,0xa8,0xd6,0xcd,0x9b,0xde,0x41,0xb5,0xb7,0xd7,0xad,0x1f, - 0x58,0x03,0xf2,0x78,0x79,0xd4,0xec,0x99,0xd5,0xfe,0x63,0xb5,0x01,0xaa,0x0d,0x18,0x98,0xb7,0x76,0x77, - 0xf7,0xb5,0xf5,0x1c,0x62,0x2b,0x38,0x1a,0x1a,0xdd,0x0b,0xcb,0xfc,0x71,0x77,0xff,0x6e,0x7f,0x42,0x6f, - 0x83,0x2f,0xf0,0xc2,0xea,0xb6,0x76,0x31,0x3e,0x6f,0x82,0xf0,0xf0,0xee,0xa2,0xb1,0x77,0xd1,0x1d,0x5f, - 0x7c,0x79,0xbd,0xbc,0xee,0x5c,0x60,0xf0,0x69,0xf2,0xf2,0xf3,0x98,0x3c,0x0e,0x88,0xdd,0xfd,0x1a,0x74, - 0x46,0xd6,0x6d,0xdb,0x1a,0x5a,0xd3,0xb0,0xdb,0xf5,0x1f,0x67,0x9f,0x50,0xf7,0x71,0x84,0x0f,0x6f,0xec, - 0xde,0x63,0x17,0xf7,0x50,0x6f,0x3e,0x6b,0x77,0x9c,0xf9,0xdd,0x95,0x69,0xcc,0xe7,0x7d,0xe2,0x1a,0x03, - 0x32,0xbf,0xfd,0xb2,0xf3,0x62,0x5d,0xd0,0x9b,0x9b,0x70,0xaf,0x6a,0xf6,0x2e,0x5b,0x41,0xe3,0xa5,0x7a, - 0x75,0xd0,0xde,0xee,0xb4,0xef,0xbb,0xe3,0xbd,0x2a,0x69,0xd7,0x8c,0xd7,0x1d,0x34,0x38,0x87,0x37,0xe7, - 0xfd,0xd1,0xd3,0xe4,0xee,0xf0,0xa6,0xb9,0xf3,0xc9,0x6a,0x9c,0xb7,0xf6,0xb0,0x4f,0xce,0x9b,0x56,0xf7, - 0xe6,0xad,0x5d,0xb5,0xbd,0xa7,0x2a,0xea,0xf7,0xbe,0x1e,0x84,0xc1,0x60,0xb2,0xb3,0x7d,0xed,0x04,0xa4, - 0x53,0xaf,0x05,0xfb,0xf3,0xd7,0x1d,0xc3,0xb6,0x68,0xfd,0xf6,0xf6,0x09,0x0f,0x66,0x87,0x37,0x8d,0xeb, - 0xfd,0xe6,0xfd,0xc5,0xf0,0xb5,0x75,0x44,0x01,0x7e,0x02,0xc3,0xab,0xcb,0x07,0x78,0xd9,0x30,0xc7,0x37, - 0x0e,0x69,0xee,0x5c,0x35,0x0e,0x2f,0x7b,0xdb,0x57,0xfe,0x80,0x9c,0xdb,0x6f,0x0f,0x57,0x75,0xa7,0x7e, - 0x75,0x71,0xd9,0x9e,0xbc,0x8c,0xec,0x59,0xf7,0xde,0xae,0x1e,0x9a,0xb5,0xa1,0xef,0x0c,0xd0,0xf3,0xcb, - 0xe5,0xb5,0xb9,0xfb,0x74,0x3b,0x3d,0x9a,0xdf,0x1c,0x5d,0x07,0xaf,0xe3,0x8b,0x00,0x81,0xdb,0x3b,0xd0, - 0x1c,0x3f,0x35,0x7f,0xa4,0xed,0xf6,0xb3,0x5f,0xbb,0x7a,0x98,0x13,0x9f,0xec,0x1a,0x07,0x77,0x5f,0xe1, - 0xb8,0xd3,0x34,0xc7,0xd3,0xbd,0xb1,0xd1,0x25,0xcd,0x1f,0xad,0xe7,0xb0,0x66,0x4e,0x1f,0x06,0xc3,0xcb, - 0x83,0xd6,0xa7,0xed,0xd9,0x6b,0xfb,0xe1,0x01,0xb7,0xcf,0x67,0xee,0xc3,0xfe,0xcf,0x33,0x60,0x74,0x1a, - 0x36,0xec,0x5d,0x1f,0xed,0x5e,0x3f,0x77,0x6e,0xae,0xcc,0xdd,0x83,0xbb,0x6e,0xa3,0xee,0x3d,0x5a,0xf5, - 0xb7,0xbb,0xe7,0xf6,0x7e,0x6f,0x04,0x77,0xdd,0xa1,0xdf,0x6f,0x1c,0x1c,0xbd,0x1d,0x0c,0x31,0x0b,0x8e, - 0xa3,0xd7,0xbe,0x77,0x00,0xfd,0x69,0xbd,0x2b,0xa2,0xa7,0xe9,0xb4,0x46,0x2f,0xc3,0xf0,0xc6,0xad,0xd7, - 0x59,0x24,0xda,0xbb,0x3c,0xc4,0xff,0x46,0x37,0x37,0x44,0x7d,0xda,0xf8,0x28,0x22,0x9b,0x8d,0x9e,0xd8, - 0x7b,0x9c,0x32,0x85,0x98,0xf0,0xb8,0x27,0x73,0x42,0xa1,0xdb,0x6e,0xb0,0x8c,0x8a,0xd2,0xf0,0xdf,0x42, - 0x2a,0x1e,0x67,0x82,0x9f,0xb4,0x8d,0x63,0x6d,0x83,0x7d,0x2c,0xc8,0xb0,0xe1,0x0d,0xa9,0x77,0x2f,0x93, - 0x0f,0x33,0x96,0x57,0x84,0x02,0x1a,0x92,0x6c,0x9e,0xb0,0xf4,0xf1,0xa0,0x11,0xa5,0xa5,0x32,0x8e,0x3c, - 0x93,0xe7,0x21,0x2f,0x97,0xc7,0x3c,0x73,0xb6,0xa4,0xb0,0x54,0x34,0x14,0xdf,0x2b,0x20,0xa8,0x40,0x0f, - 0x8c,0x1d,0x68,0x32,0x84,0x1b,0x91,0x26,0x68,0x6e,0x70,0x10,0x26,0x22,0xe9,0x80,0x1e,0x25,0x6d,0x34, - 0x7d,0x55,0x85,0x61,0xb0,0x2c,0x0f,0x7c,0xe4,0xd1,0x4a,0xea,0x15,0x8d,0x31,0x96,0xd9,0xc9,0x8e,0xa3, - 0x80,0x19,0x5b,0xa2,0x93,0xc1,0x10,0x82,0x91,0xb3,0x93,0xca,0xf1,0xad,0xb3,0xb7,0x20,0xbd,0x47,0x2d, - 0x61,0x89,0x09,0x49,0x83,0x9b,0x1f,0xcb,0xe7,0x47,0x24,0xa3,0xeb,0x9b,0x30,0x37,0xbf,0x22,0x4d,0x23, - 0xf8,0x46,0x37,0x15,0xa4,0xf9,0x7a,0x27,0xab,0x2e,0x2b,0xfe,0x26,0xf2,0x2c,0x3d,0x06,0x1b,0x5f,0xc7, - 0xe6,0xa3,0xeb,0xc4,0x52,0x74,0xdd,0x8e,0xe7,0x94,0xf5,0x84,0xd4,0xf9,0x21,0x51,0xa2,0xba,0x81,0x82, - 0x31,0x0f,0x17,0x10,0x5f,0x8f,0x43,0x4a,0xb3,0x8b,0xc7,0x06,0x60,0xde,0x9b,0x42,0x16,0x8d,0xf2,0xcb, - 0x08,0x8c,0x35,0x16,0xb5,0x1b,0xd2,0x5f,0x1b,0x7c,0xa9,0x90,0xcb,0x01,0x5b,0xc0,0x52,0x86,0x84,0x9e, - 0x60,0x96,0xd7,0x15,0x66,0x70,0xa4,0xe4,0x06,0xf8,0x26,0xdb,0x14,0x23,0xcb,0x62,0x79,0x51,0x6e,0x3d, - 0xe1,0x48,0xec,0xc7,0x23,0xdf,0x07,0x41,0x1a,0x56,0xe5,0x18,0x14,0x9e,0x04,0x45,0x3a,0xf6,0x7d,0x70, - 0xc8,0xaa,0xb0,0xe4,0x2e,0x48,0x7a,0x7a,0x17,0xc4,0x75,0x81,0xed,0x7c,0xb8,0x14,0xde,0x6c,0x5e,0xe2, - 0xf6,0xf3,0x37,0x54,0xad,0x74,0xfb,0x67,0x27,0x98,0x45,0x99,0xaf,0x1d,0x8b,0xe1,0x53,0x5d,0x61,0x04, - 0x8e,0x33,0xa4,0x30,0x20,0x23,0x1c,0x32,0x7e,0xde,0x60,0xf0,0x9c,0x61,0xcd,0x54,0x4c,0x60,0xf3,0xe5, - 0xcb,0x3d,0x65,0x74,0x9e,0x6e,0x42,0xd1,0x1a,0xfa,0x5a,0xc0,0x21,0x4b,0x15,0x4e,0x38,0x83,0xa2,0x51, - 0x09,0x7f,0xe2,0xb0,0xce,0x05,0xe7,0x0a,0x26,0xf3,0x50,0x10,0xf7,0x3f,0x89,0xaa,0x6c,0x47,0x33,0x05, - 0x4e,0x28,0xfb,0x99,0x2e,0xa0,0x76,0x65,0xe2,0xf8,0x3e,0xde,0x8c,0x79,0xef,0x38,0x51,0xdb,0xd6,0xf6, - 0xbe,0x7c,0xd1,0xfe,0xa9,0xed,0xee,0xec,0x70,0xe7,0xfc,0x3d,0xee,0x70,0x16,0xac,0xab,0xed,0x0d,0xf2, - 0x82,0x90,0x6a,0x74,0x1e,0xb0,0xa9,0x62,0xe0,0xb1,0x9e,0x49,0x73,0x91,0x77,0xaa,0xef,0xb0,0x4f,0xf0, - 0x76,0xaa,0x33,0x95,0x7a,0x56,0x3a,0x99,0x76,0xc5,0x0b,0xdd,0x31,0xc4,0x29,0xe4,0x3b,0x89,0x71,0xa1, - 0xc4,0x14,0xcc,0xf2,0x43,0xea,0xb1,0xe9,0xd6,0xc4,0x67,0x4a,0x36,0x39,0xf9,0xb3,0xc6,0xaa,0x24,0x7c, - 0xfb,0xc8,0x3e,0x34,0xb2,0xae,0x17,0x38,0x63,0x65,0xfa,0xc7,0xba,0x20,0xc5,0x90,0x9b,0x7f,0x71,0xb9, - 0x2d,0x29,0x2e,0x4c,0x96,0xf9,0xc2,0xd5,0x7e,0x22,0xe1,0xd8,0x45,0x34,0x6d,0x77,0x59,0xa3,0xee,0xcc, - 0x47,0xc8,0x85,0xa3,0x88,0x35,0x93,0x17,0x69,0xa1,0xe1,0x1c,0xb9,0xec,0x30,0x6c,0x68,0xbc,0x24,0x78, - 0xc7,0xbe,0xef,0x40,0xe0,0xf1,0x98,0x57,0x64,0xe2,0xa5,0x50,0xcf,0x44,0x7d,0x86,0xa5,0xe9,0x45,0x6b, - 0x1e,0x9f,0x9f,0xd0,0xa9,0xce,0xa7,0x58,0x5b,0xb6,0x59,0x00,0xd8,0x13,0x2b,0x4c,0x14,0x00,0x8b,0x0b, - 0x5a,0xb2,0x20,0xff,0xfa,0xab,0x56,0x40,0x95,0x49,0xc8,0xb7,0x04,0xfb,0x05,0x25,0x96,0xd9,0x6d,0xb3, - 0x9d,0x15,0xf6,0x20,0x55,0xd7,0x65,0x07,0x8c,0xa1,0xa3,0x89,0x00,0x13,0xce,0x61,0xf7,0x97,0x20,0xae, - 0x8e,0x3b,0xb3,0x58,0x4d,0x96,0x27,0x52,0x26,0xf4,0x64,0x43,0x45,0xde,0x7a,0x5d,0x6c,0x18,0x0a,0x74, - 0x2f,0x84,0x48,0xd6,0x47,0x34,0x87,0x44,0x22,0x3d,0x1b,0x40,0x0b,0x3a,0x24,0xb1,0x57,0xe6,0xe1,0xe4, - 0xca,0x81,0x9e,0x45,0xed,0x64,0x13,0x27,0x33,0x29,0xa2,0xaa,0xc9,0x54,0x2c,0x9e,0x84,0x35,0x4b,0x12, - 0xe8,0x64,0xef,0x97,0x18,0xda,0x4a,0xb6,0x3c,0xcb,0xc3,0x68,0x8d,0x00,0x8a,0x22,0xb7,0x28,0x8e,0xd4, - 0x0c,0x07,0x62,0xa9,0x92,0x1d,0x82,0xdc,0xe7,0xfe,0xb0,0xb8,0xfb,0x63,0x10,0x20,0x85,0x4a,0x3e,0x6c, - 0xca,0x99,0x16,0xdf,0xd0,0x86,0xe0,0x56,0x16,0x9e,0x85,0x9a,0x60,0xb0,0xc9,0xe0,0xf2,0xc2,0x25,0x5d, - 0xc1,0xb7,0xce,0xbc,0x1c,0x31,0x6d,0x06,0x2d,0xbb,0xbb,0xb1,0x6b,0x47,0x2c,0x44,0xf4,0xb4,0xf3,0x63, - 0xfb,0x78,0x7e,0x8f,0xfd,0x40,0xec,0x6a,0x45,0x9d,0xe0,0xf5,0xa5,0x10,0x6e,0x0b,0xbd,0x41,0x53,0x09, - 0x3d,0x29,0x94,0x17,0xde,0x2d,0x16,0x1e,0x86,0x1e,0x46,0x64,0xb9,0xe8,0x5e,0xa9,0x28,0x49,0x92,0x27, - 0x96,0xdc,0x96,0xd3,0x5d,0x39,0xed,0x49,0x0c,0x3a,0x3f,0xe9,0x6c,0xf8,0xaa,0xee,0xe1,0xa5,0x6f,0x47, - 0x71,0xca,0x56,0x92,0xa5,0x3c,0x60,0x13,0x85,0x7c,0x4d,0x8d,0x80,0xd3,0x38,0x67,0x59,0x9f,0xdb,0x40, - 0x24,0x70,0x80,0xa8,0x89,0x9b,0x7c,0xfc,0xb3,0x26,0x16,0xdd,0x6f,0x43,0x8f,0xa1,0x03,0x44,0x41,0x2e, - 0x9e,0x00,0xcb,0x48,0x58,0x86,0x53,0x15,0x5d,0x1b,0x2a,0x6f,0x38,0x4a,0x90,0xaa,0x15,0x13,0xc2,0x17, - 0x13,0xcc,0xc9,0xea,0xec,0x73,0x7d,0x8f,0x31,0x2e,0x49,0xbe,0xae,0x60,0xc8,0x24,0xdd,0x0a,0x95,0x34, - 0x84,0x64,0xb9,0xce,0x91,0xe4,0x78,0x8f,0xd2,0x19,0x34,0xbd,0x55,0x6a,0xef,0x63,0x9e,0x77,0xa1,0xb5, - 0x43,0xbc,0x0a,0x6e,0xc4,0xf2,0x1e,0xb5,0x13,0x8c,0x96,0x2b,0x6d,0x09,0x86,0xf7,0xa8,0x24,0x6c,0x11, - 0xc3,0xcb,0x95,0x0e,0x23,0x96,0x77,0xa9,0x0d,0x57,0x44,0xc0,0x30,0x5c,0x88,0x80,0xe2,0x06,0x6d,0x8d, - 0x86,0x2b,0x36,0x3a,0x66,0x9f,0x36,0x65,0x77,0x8b,0xfc,0x71,0x8d,0xd7,0x22,0x96,0x25,0x0d,0x98,0xda, - 0x86,0xf1,0xa4,0x4e,0x8f,0x31,0xf9,0x86,0xbc,0xb8,0x2c,0xf6,0xfc,0x06,0xa3,0x95,0xec,0xf5,0xe5,0xb6, - 0x89,0x9b,0x94,0xdf,0xb2,0xe3,0x5b,0x01,0x46,0x2e,0xc0,0x73,0x2d,0xba,0xf4,0x43,0x2a,0x4b,0xca,0x71, - 0x7c,0x84,0xc0,0xe6,0x05,0xa6,0xa2,0x2b,0xca,0x2f,0x71,0xc0,0x34,0x95,0xf5,0xad,0x18,0x5a,0xd5,0x8c, - 0xcf,0x20,0xa4,0x81,0xd2,0x05,0x2c,0x85,0x29,0x5d,0x5e,0x88,0x52,0x8f,0xee,0x84,0xec,0x3d,0x0b,0x41, - 0xc6,0xd5,0x4d,0x5e,0x47,0x47,0x48,0xa2,0x37,0xad,0x09,0x55,0x43,0x31,0xce,0x30,0x1d,0xe7,0x29,0x1b, - 0x1f,0xd3,0xdb,0xc2,0x5b,0xdc,0xa5,0x8d,0x6e,0xd7,0x17,0x7d,0xd1,0xd2,0x56,0xd7,0x95,0x3c,0xef,0x6c, - 0x76,0xa5,0xd4,0x8a,0x6e,0x45,0x32,0xad,0xd9,0xf0,0xe6,0x34,0xbe,0x17,0x42,0x23,0xc4,0xcc,0x63,0xea, - 0x9d,0x5e,0x03,0xd3,0x82,0x50,0x06,0xa4,0xd2,0xf2,0x46,0x4e,0x5a,0xd1,0xf4,0x16,0x71,0xad,0xd7,0xf6, - 0x16,0xea,0x2f,0x6f,0x7c,0xa3,0xa9,0x7f,0x73,0xeb,0x9b,0xc8,0x7f,0x6b,0xf3,0x9b,0x53,0xf0,0x7b,0xb5, - 0xbf,0xae,0x1a,0xcf,0xdf,0xb1,0x01,0xce,0xe4,0x49,0x69,0x0b,0x2c,0xad,0x7f,0xdf,0x26,0x58,0xc6,0xd8, - 0xb1,0xf0,0xf8,0x86,0x34,0xc0,0x4f,0x8e,0x05,0x04,0x7e,0x90,0xfc,0x9f,0x00,0x79,0x05,0x07,0x61,0x92, - 0xb3,0xcf,0x68,0x2b,0xc3,0x4b,0x9c,0xa3,0x94,0xab,0x2e,0x5d,0x07,0x18,0x75,0x1d,0x7c,0x26,0xc2,0xf9, - 0x83,0xb2,0xbc,0xc3,0x12,0x8e,0x0c,0xd6,0xa8,0x93,0x2c,0x87,0xa7,0x68,0x2e,0x05,0x99,0xf0,0x2c,0xec, - 0x09,0x0a,0xda,0xfa,0x1c,0x9c,0x9e,0xf2,0x1d,0x38,0xef,0x6d,0xf4,0x73,0xca,0x46,0x7e,0xd0,0xf0,0x67, - 0xde,0x52,0x2d,0x05,0xbb,0xed,0x9c,0x96,0x9a,0xcf,0x4a,0xbc,0x7b,0x1b,0x94,0xed,0x1d,0xfe,0xdf,0x62, - 0x94,0xb7,0x18,0xd2,0x95,0x7f,0x5c,0x93,0x91,0xa9,0x21,0x65,0xf0,0xfe,0xd2,0x8d,0xc6,0xf2,0xb3,0xb7, - 0xcc,0x91,0xf9,0xb2,0xa6,0xa4,0xae,0x3e,0xd6,0x49,0x1b,0x12,0xf5,0x78,0x7d,0xbd,0x66,0x44,0x91,0x50, - 0x9e,0x2a,0x65,0x97,0x8e,0x62,0x9e,0xd2,0x35,0xc3,0xe6,0x0a,0x0a,0x10,0x29,0xb2,0x17,0x42,0x5e,0x79, - 0xee,0xbd,0x1a,0x5d,0x74,0xf0,0x56,0x8a,0x4c,0x79,0x0e,0xf5,0x6e,0x64,0x8a,0xec,0x02,0x32,0xa5,0x81, - 0x21,0x04,0x99,0x85,0xe2,0x6c,0xbc,0x7c,0x0d,0xa1,0xf0,0x8d,0xca,0x06,0x45,0xc8,0xa7,0xc7,0xf4,0x39, - 0x0d,0x99,0xd0,0xfb,0x50,0x30,0xf3,0x0c,0x96,0x80,0x4d,0x68,0xe6,0xe3,0x42,0x3c,0x31,0xad,0x1c,0x53, - 0x22,0x2d,0x70,0xa5,0x57,0x45,0xd8,0x52,0xea,0x4a,0x7c,0xab,0xef,0xa2,0x69,0x1b,0xc1,0x4a,0x45,0x65, - 0xb7,0x98,0x0b,0xbf,0xfb,0xde,0x72,0xa1,0x85,0x9b,0xaa,0x56,0xe9,0x70,0x2c,0x97,0x08,0x92,0x75,0x30, - 0x0a,0x8a,0xb4,0xa1,0x80,0x55,0x29,0xcc,0xc2,0x78,0x9d,0xfb,0x8d,0x82,0x62,0x8f,0xa2,0x95,0x2e,0xe0, - 0x87,0xce,0x79,0xaf,0x65,0x43,0x31,0x1c,0x7b,0x90,0xba,0x80,0xbc,0x14,0x06,0x64,0x42,0x5d,0x2b,0x2c, - 0x53,0x5d,0xc5,0xc1,0xa9,0xd0,0xff,0x47,0xd8,0x16,0xa0,0x70,0x06,0xe6,0x45,0x98,0x23,0xd2,0x3a,0x80, - 0x63,0x2d,0x85,0x68,0x13,0xe2,0xb7,0x40,0x5d,0x38,0xa6,0xb7,0x7d,0x42,0xf9,0x4b,0x53,0x45,0x88,0x63, - 0xda,0x2a,0xc8,0xc7,0x81,0x03,0x0c,0x68,0xfb,0x8e,0xc9,0xd7,0xef,0x12,0x25,0xfd,0x94,0x87,0x3f,0xcb, - 0xe3,0xd3,0x4c,0x6c,0x17,0xce,0x33,0xa5,0xae,0x4c,0xcb,0xbf,0xf4,0x92,0x98,0x3c,0xc1,0x2d,0x59,0x0e, - 0xc3,0x80,0x3f,0xd8,0x6f,0x21,0xec,0xce,0x00,0x86,0x51,0x44,0x0b,0x99,0xec,0xd3,0x5a,0xf9,0xe0,0x77, - 0x12,0xf1,0xe5,0xb7,0xea,0xea,0x5d,0x9b,0x20,0x27,0xd2,0x13,0x73,0xb7,0xf8,0xc8,0x9f,0xd7,0x8f,0xa9, - 0xeb,0xa4,0x33,0xfa,0xd8,0xb7,0x78,0x8d,0x12,0xaf,0xd7,0x44,0x4f,0x7f,0x99,0x1b,0x72,0x44,0xd1,0xb4, - 0xae,0x79,0x06,0x32,0x94,0x0e,0x5d,0xe1,0x5c,0x8f,0x06,0x79,0xbf,0xfe,0x99,0x1e,0xb9,0x31,0x78,0x43, - 0x88,0xa7,0x4a,0x63,0x99,0xe2,0x96,0x84,0x75,0x8a,0x4f,0xaa,0x25,0x4d,0xcb,0xbc,0x1e,0x3d,0x6f,0x57, - 0x20,0x63,0xb7,0xba,0xc0,0x72,0x4c,0x5a,0xef,0x8c,0x43,0xd5,0x55,0x64,0x3f,0x35,0xa4,0x22,0x70,0x00, - 0x2d,0xb0,0xdc,0x01,0x74,0x9d,0x09,0x73,0xe1,0x05,0x53,0x42,0xe3,0xef,0x6d,0x42,0x79,0x03,0x48,0x31, - 0x11,0xbd,0x07,0xb4,0xca,0x84,0x8c,0xbc,0x9c,0x89,0xfc,0xeb,0x40,0x65,0xcd,0x80,0xe3,0xc7,0x6f,0x95, - 0xc6,0x6f,0x24,0x71,0xda,0x56,0xfc,0x28,0x6d,0x11,0x54,0xc4,0xbf,0x16,0xb2,0x44,0x77,0x02,0x2f,0x19, - 0x3a,0xd3,0x0a,0x77,0x59,0x0b,0xbb,0xab,0xfc,0x56,0x8a,0x40,0x80,0x0d,0xbb,0x93,0x68,0x56,0x2b,0x8f, - 0x20,0xb1,0x44,0x4c,0xa8,0xe5,0xf0,0x87,0x82,0xb7,0x70,0xb3,0xb5,0x90,0xfc,0x01,0xf2,0x48,0x3e,0xfb, - 0xd5,0x7e,0x15,0x79,0x9d,0x66,0xa3,0xda,0xcf,0x5b,0x8b,0xc7,0xd7,0x0b,0xff,0x44,0xcb,0xe2,0x2b,0x0f, - 0x29,0x8a,0x0a,0x9b,0x27,0x37,0xb4,0x68,0x7e,0x38,0xaa,0x16,0xdb,0x67,0x84,0xf7,0x00,0xe0,0x7a,0x56, - 0x21,0x10,0xb6,0x72,0x10,0xaa,0x7d,0x59,0xbb,0x0b,0x40,0xc4,0xa4,0xb5,0x61,0x24,0xba,0x96,0x02,0x01, - 0x41,0x6c,0x31,0x07,0xa5,0x7f,0xdf,0x6d,0x60,0xb6,0xcc,0xe2,0x61,0xa3,0xc8,0x27,0x2a,0x79,0x6d,0x48, - 0x19,0x9d,0x4b,0x61,0x05,0x33,0x57,0xd8,0x2d,0x05,0x55,0xef,0x2c,0x05,0x55,0xef,0x7c,0x03,0x28,0xa6, - 0x73,0x25,0x28,0x6e,0x37,0x03,0x6a,0xe6,0x56,0x65,0xc3,0xbf,0x80,0x27,0xa1,0xac,0x09,0x25,0xd5,0x54, - 0x8a,0x42,0x31,0x96,0x03,0xd1,0xc2,0xf0,0x35,0x84,0x9e,0x31,0x2f,0x80,0x91,0xd0,0xd6,0x06,0x92,0x6a, - 0x5b,0x02,0x45,0x31,0xb9,0x98,0xed,0x2e,0x08,0x96,0x65,0x3b,0x27,0x57,0xfb,0xed,0x2b,0xb8,0x80,0x37, - 0xa5,0xac,0x53,0x1b,0x15,0x3d,0x65,0x48,0x55,0x53,0x5a,0xf9,0x8e,0x70,0x81,0xdb,0x5e,0xb2,0x27,0xfc, - 0x53,0x75,0x77,0x99,0x2e,0x79,0xf1,0xfd,0x5e,0x7e,0x4e,0x3e,0x41,0x6f,0xe5,0x47,0xe5,0xd1,0x0b,0xd4, - 0xca,0x0e,0x26,0x98,0x8b,0xb3,0x43,0x39,0xfb,0x31,0x56,0xdf,0xcc,0x8e,0x3e,0xf3,0x2f,0x66,0xc7,0x8d, - 0xf0,0x9d,0x24,0x8b,0xf7,0xb3,0xf3,0x22,0xc9,0x7b,0xd9,0x0b,0xe7,0x8f,0xd1,0xcf,0x41,0x1c,0xe0,0x59, - 0x21,0xb0,0x98,0x3f,0x9e,0xc1,0x14,0xc8,0x41,0xfd,0x8c,0xed,0x58,0x88,0xef,0xc0,0x8a,0xe3,0x5b,0x9b, - 0x7a,0x5b,0xfe,0xe6,0x04,0xfd,0xcc,0xdc,0x52,0xa9,0x54,0xf4,0x8f,0x9f,0x59,0xd3,0x87,0x69,0x35,0x08, - 0x36,0x3f,0x2a,0xbf,0x1e,0x91,0xbf,0x1b,0xd9,0x16,0x3f,0x97,0xf9,0x2f,0x83,0x55,0x73,0xdc,0x44,0x33, - 0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0x69,0x5b,0xe3,0x38,0x12,0xfe,0x2b,0x6e, + 0xcf,0xee,0x42,0x6f,0x37,0xe1,0x6c,0xa6,0x61,0x81,0x9d,0x9c,0x10,0x48,0x42,0x2e,0xce,0x2f,0xfb,0x28, + 0xb6,0x62,0x0b,0x7c,0x21,0x29,0x09,0x99,0x99,0xfe,0xef,0xab,0xc3,0x87,0xec,0xd8,0x49,0x60,0x7b,0x77, + 0x7a,0x9e,0x67,0xf9,0x40,0x62,0xd5,0xf5,0xaa,0x5c,0x55,0x2a,0xc9,0xce,0xc9,0x87,0xda,0x75,0x75,0xf8, + 0xd0,0xad,0x6b,0x36,0x75,0x9d,0xb3,0x93,0xf0,0x3f,0x04,0xe6,0xd9,0x89,0x0b,0x29,0xd0,0x0c,0x1b,0x60, + 0x02,0xe9,0xa9,0x7e,0x33,0x6c,0x6c,0x7d,0xd5,0xcf,0x4e,0x28,0xa2,0x0e,0x3c,0x3b,0xd9,0x0e,0x3f,0x05, + 0x93,0x07,0x5c,0x78,0xaa,0x53,0x1b,0xba,0x70,0xcb,0xf0,0x1d,0x1f,0xeb,0x9a,0xe1,0x7b,0x14,0x7a,0x4c, + 0xee,0xa7,0x1d,0xf1,0xa7,0xa7,0x58,0xa7,0x08,0xce,0x02,0x1f,0x53,0x85,0x6f,0x86,0x4c,0x6a,0x9f,0x9a, + 0x70,0x8a,0x0c,0xb8,0x25,0x2e,0x3e,0x23,0x0f,0x51,0x04,0x9c,0x2d,0x62,0x00,0x07,0x9e,0xee,0x32,0x15, + 0x0e,0xf2,0x9e,0x35,0x0c,0x9d,0x53,0x9d,0xd0,0xb9,0x03,0x89,0x0d,0x21,0xd3,0x61,0x63,0x38,0x3e,0xd5, + 0x47,0x13,0xcf,0x74,0x60,0xc9,0x20,0x84,0x31,0x12,0x03,0xa3,0x80,0x6a,0x04,0x1b,0x31,0xe1,0x89,0x8f, + 0x6f,0x4b,0x02,0xfb,0x22,0xe7,0x38,0xf2,0xcd,0xf9,0xd9,0x89,0x89,0xa6,0x1a,0x32,0x4f,0x75,0x10,0x04, + 0xba,0xbc,0x9a,0x6e,0x19,0x8e,0x0f,0x9e,0xe5,0x85,0xe1,0x00,0x42,0x4e,0x75,0xcf,0xa7,0x68,0x8c,0x0c, + 0x40,0x91,0xef,0x55,0x19,0x6c,0x80,0x3c,0x88,0xf5,0x42,0x16,0x5d,0x3b,0x0e,0x47,0x7f,0xd3,0x20,0xc6, + 0x3e,0x3e,0xd6,0x54,0xb2,0xf6,0xe1,0x54,0xf3,0x26,0x8e,0xa3,0xfd,0xed,0x6f,0xa9,0xf1,0x92,0xe0,0xd5, + 0xbe,0xe9,0x0c,0x03,0x1a,0xa7,0x55,0x46,0x32,0xba,0xf6,0x8b,0xe1,0x20,0xe3,0xb9,0x14,0x60,0x38,0x15, + 0xde,0xb3,0x91,0x09,0x3b,0xaa,0x71,0xe6,0x82,0x00,0x78,0x11,0x2e,0x17,0x12,0x02,0x2c,0xa8,0x9f,0xfd, + 0xf6,0x5b,0xda,0x58,0x48,0xd0,0xbe,0x7d,0x63,0xae,0x61,0x02,0xcc,0x31,0x6c,0x3a,0xd1,0xff,0xc8,0x2f, + 0x46,0xfe,0x6c,0xb9,0x0b,0xc5,0x18,0x72,0x2d,0xe9,0x6a,0x13,0x50,0x70,0x8c,0x5c,0xa6,0x71,0x3b,0xf0, + 0xac,0x7f,0x8c,0x00,0x81,0x87,0x07,0x9f,0xd1,0x6d,0xe5,0xba,0x3f,0xdb,0xb9,0x3a,0xb7,0xfc,0x32,0xfb, + 0xeb,0x0c,0x6e,0xec,0xfa,0x8d,0xc5,0xbe,0xd5,0xf8,0x65,0x79,0x56,0x2d,0x3f,0xb0,0x8f,0xca,0x7d,0x79, + 0xea,0x5e,0xf0,0x81,0xf3,0xfb,0x7e,0xe3,0xee,0xa2,0x3f,0x1c,0xed,0x3d,0xee,0x98,0x7b,0x8d,0xf9,0x63, + 0xaf,0x52,0x79,0x3c,0x3f,0x42,0x8f,0x83,0xca,0xe5,0xe8,0xae,0xe1,0x3d,0xde,0x5e,0x3a,0x0f,0x77,0xfd, + 0x2f,0x86,0xe1,0x38,0x5d,0x2e,0x70,0x5f,0xb9,0xec,0xd7,0x1b,0x37,0xb0,0x83,0xc9,0x9d,0x59,0xef,0x58, + 0x4f,0xe5,0x5e,0xcb,0x78,0xa8,0x18,0xe5,0xae,0x51,0xae,0x9a,0xbd,0xce,0x41,0xb9,0xb3,0xd7,0xae,0x1e, + 0x58,0x7d,0xf2,0x70,0x79,0x54,0xef,0x98,0xe5,0xee,0x43,0xb9,0x06,0xca,0x35,0x18,0x98,0x37,0x76,0x7b, + 0xf7,0xa5,0xf1,0x34,0xc1,0x56,0x70,0x34,0x30,0xda,0x17,0x96,0xf9,0xf3,0xee,0xfe,0xed,0xfe,0x98,0xde, + 0x04,0x5f,0xe0,0x85,0xd5,0x6e,0xec,0x62,0x7c,0x5e,0x07,0x93,0xc3,0xdb,0x8b,0xda,0xde,0x45,0x7b,0x74, + 0xf1,0xe5,0xe5,0xf2,0xba,0x75,0x81,0xc1,0xa7,0xf1,0xf3,0xaf,0x23,0xf2,0xd0,0x27,0x76,0xfb,0x6b,0xd0, + 0x1a,0x5a,0x37,0x4d,0x6b,0x60,0x4d,0x27,0xed,0xb6,0xff,0x30,0xfb,0x84,0xda,0x0f,0x43,0x7c,0xd8,0xb3, + 0x3b,0x0f,0x6d,0xdc,0x41,0x9d,0xf9,0xac,0xd9,0x72,0xe6,0xb7,0x57,0xa6,0x31,0x9f,0x77,0x89,0x6b,0xf4, + 0xc9,0xfc,0xe6,0xcb,0xce,0xb3,0x75,0x41,0x7b,0xbd,0xc9,0x5e,0xd9,0xec,0x5c,0x36,0x82,0xda,0x73,0xf9, + 0xea,0xa0,0xb9,0xdd,0x6a,0xde,0xb5,0x47,0x7b,0x65,0xd2,0xac,0x18,0x2f,0x3b,0xa8,0x7f,0x0e,0x7b,0xe7, + 0xdd,0xe1,0xe3,0xf8,0xf6,0xb0,0x57,0xdf,0xf9,0x64,0xd5,0xce,0x1b,0x7b,0xd8,0x27,0xe7,0x75,0xab,0xdd, + 0x7b,0x6d,0x96,0x6d,0xef,0xb1,0x8c,0xba,0x9d,0xaf,0x07,0x93,0xa0,0x3f,0xde,0xd9,0xbe,0x76,0x02,0xd2, + 0xaa,0x56,0x82,0xfd,0xf9,0xcb,0x8e,0x61,0x5b,0xb4,0x7a,0x73,0xf3,0x88,0xfb,0xb3,0xc3,0x5e,0xed,0x7a, + 0xbf,0x7e,0x77,0x31,0x78,0x69,0x1c,0x51,0x80,0x1f,0xc1,0xe0,0xea,0xf2,0x1e,0x5e,0xd6,0xcc,0x51,0xcf, + 0x21,0xf5,0x9d,0xab,0xda,0xe1,0x65,0x67,0xfb,0xca,0xef,0x93,0x73,0xfb,0xf5,0xfe,0xaa,0xea,0x54,0xaf, + 0x2e,0x2e,0x9b,0xe3,0xe7,0xa1,0x3d,0x6b,0xdf,0xd9,0xe5,0x43,0xb3,0x32,0xf0,0x9d,0x3e,0x7a,0x7a,0xbe, + 0xbc,0x36,0x77,0x1f,0x6f,0xa6,0x47,0xf3,0xde,0xd1,0x75,0xf0,0x32,0xba,0x08,0x10,0xb8,0xb9,0x05,0xf5, + 0xd1,0x63,0xfd,0x67,0xda,0x6c,0x3e,0xf9,0x95,0xab,0xfb,0x39,0xf1,0xc9,0xae,0x71,0x70,0xfb,0x15,0x8e, + 0x5a,0x75,0x73,0x34,0xdd,0x1b,0x19,0x6d,0x52,0xff,0xd9,0x7a,0x9a,0x54,0xcc,0xe9,0x7d,0x7f,0x70,0x79, + 0xd0,0xf8,0xb4,0x3d,0x7b,0x69,0xde,0xdf,0xe3,0xe6,0xf9,0xcc,0xbd,0xdf,0xff,0x75,0x06,0x8c,0x56,0xcd, + 0x86,0x9d,0xeb,0xa3,0xdd,0xeb,0xa7,0x56,0xef,0xca,0xdc,0x3d,0xb8,0x6d,0xd7,0xaa,0xde,0x83,0x55,0x7d, + 0xbd,0x7d,0x6a,0xee,0x77,0x86,0x70,0xd7,0x1d,0xf8,0xdd,0xda,0xc1,0xd1,0xeb,0xc1,0x00,0xb3,0xe0,0x38, + 0x7a,0xe9,0x7a,0x07,0xd0,0x9f,0x56,0xdb,0x22,0x7a,0xea,0x4e,0x63,0xf8,0x3c,0x98,0xf4,0xdc,0x6a,0x95, + 0x45,0xa2,0xbd,0xcb,0x43,0xfc,0x2f,0x74,0x73,0x43,0xd4,0xa7,0x8d,0x8f,0x22,0xb2,0xd9,0xe8,0x89,0xbd, + 0xc7,0x29,0x53,0x88,0x09,0x8f,0x7b,0x32,0x27,0x14,0xba,0xcd,0x1a,0xcb,0xa8,0x30,0x0d,0xff,0x29,0xa4, + 0xa2,0x71,0x26,0xf8,0x49,0xdb,0x38,0xd6,0x36,0xd8,0xc7,0x82,0x0c,0x1b,0xde,0x90,0x7a,0xf7,0x52,0xf9, + 0x30,0x63,0x79,0x45,0x28,0xa0,0x13,0x92,0xce,0x13,0x96,0x3e,0x1e,0x34,0xc2,0xb4,0x54,0xc6,0x91,0x67, + 0xf2,0x3c,0xe4,0xe5,0xf2,0x98,0x67,0xce,0x96,0x14,0x96,0x8a,0x06,0xe2,0x7b,0x09,0x04,0x25,0xe8,0x81, + 0x91,0x03,0x4d,0x86,0x70,0x23,0xd4,0x04,0xcd,0x0d,0x0e,0xc2,0x44,0x24,0x19,0xd0,0xc3,0xa4,0x0d,0xa7, + 0xaf,0xaa,0x30,0x0c,0x96,0xe5,0x81,0x8f,0x3c,0x5a,0x4a,0xbc,0xa2,0x31,0xc6,0x22,0x3b,0xe9,0x71,0x14, + 0x30,0x63,0x4b,0x74,0x32,0x18,0x42,0x30,0x74,0x76,0x5c,0x39,0xde,0x3b,0x7b,0x0b,0xd2,0x3b,0xd4,0x10, + 0x96,0x98,0x90,0x34,0xb8,0xf9,0xb1,0x78,0x7e,0x44,0x32,0xba,0xbe,0x09,0x33,0xf3,0xcb,0xd3,0x34,0x84, + 0xaf,0x74,0x53,0x41,0x9a,0xad,0x77,0xb2,0xea,0xb2,0xe2,0x6f,0x22,0xcf,0xd2,0x23,0xb0,0xd1,0x75,0x64, + 0x3e,0xbc,0x8e,0x2d,0x85,0xd7,0xcd,0x68,0x4e,0x69,0x4f,0x48,0x9d,0x1f,0x62,0x25,0xaa,0x1b,0x28,0x18, + 0xf1,0x70,0x01,0xd1,0xf5,0x68,0x42,0x69,0x7a,0xf1,0xd8,0x00,0xcc,0x7b,0x53,0xc8,0xa2,0x51,0x7e,0x19, + 0x82,0x91,0xc6,0xa2,0x76,0x43,0xfa,0x6b,0x83,0x2f,0x15,0x72,0x39,0x60,0x0b,0x58,0xc2,0x10,0xd3,0x63, + 0xcc,0xf2,0xba,0xc4,0x0c,0x0e,0x95,0xdc,0x00,0xef,0xb2,0x4d,0x31,0xb2,0x2c,0x96,0x17,0xc5,0xd6,0x63, + 0x8e,0xd8,0x7e,0x34,0xf2,0x7d,0x10,0x24,0x61,0x55,0x8c,0x41,0xe1,0x89,0x51,0x24,0x63,0xdf,0x07,0x87, + 0xac,0x0a,0x4b,0xee,0x82,0xa4,0x27,0x77,0x41,0x5c,0xe7,0xd8,0xce,0x86,0x4b,0xee,0xcd,0xe6,0x25,0x6e, + 0x3f,0x7b,0x43,0xd5,0x4a,0xb7,0x2f,0x54,0x9c,0x9d,0x60,0x16,0x6a,0xbe,0x76,0x2c,0x68,0xa7,0xba,0xc2, + 0x0d,0x1c,0x67,0x40,0x61,0x40,0x86,0x78,0xc2,0x84,0x78,0x97,0xc1,0x13,0x87,0x75,0x54,0x11,0x81,0x4d, + 0x9a,0xaf,0xf9,0x94,0xd1,0x79,0xce,0x09,0x45,0x0a,0xba,0x35,0x54,0x37,0x80,0x43,0x96,0xea,0x1e,0x73, + 0x86,0x3c,0xe5,0x91,0xfb,0x89,0xc3,0xfa,0x19,0x9c,0x29,0xa3,0xcc,0x6f,0x41,0xd4,0x15,0xc5,0x0a,0xd3, + 0x7d,0xce,0x14,0x38,0x13,0xd9,0xe5,0xb4,0x01,0xb5,0x4b,0x63,0xc7,0xf7,0xf1,0x66,0xc4,0x7b,0xcb,0x89, + 0xda,0xb6,0xb6,0xf7,0xe5,0x8b,0xf6,0x77,0x6d,0x77,0x67,0x87,0xbb,0xec,0xaf,0x51,0xdf,0xb3,0x60,0x5d, + 0x6d,0x7a,0x90,0x17,0x4c,0xa8,0x46,0xe7,0x01,0x9b,0x30,0x06,0x1e,0xeb,0xa4,0x34,0x17,0x79,0xa7,0xfa, + 0x0e,0xfb,0x04,0xaf,0xa7,0x3a,0x53,0xa9,0xa7,0xa5,0xe3,0xc9,0x97,0xbc,0x89,0x3b,0x82,0x38,0x81,0x7c, + 0x2b,0x31,0x2e,0x14,0x9e,0x9c,0x59,0x7e,0x48,0xfc,0x36,0xdd,0x1a,0xfb,0x4c,0xc9,0x26,0x27,0x7f,0xd6, + 0x58,0xed,0x84,0xaf,0x1f,0xd9,0x87,0x46,0xd6,0xf5,0x02,0x67,0x2c,0x4d,0xff,0x58,0x17,0x24,0x18,0x32, + 0xf3,0xcf,0x2f,0xc2,0x05,0x25,0x87,0xc9,0x32,0x5f,0xb8,0xda,0x2f,0x64,0x32,0x72,0x11,0x4d,0x9a,0x60, + 0xd6,0xbe,0x3b,0xf3,0x21,0x72,0xe1,0x30,0x64,0x4d,0x65,0x4b,0x52,0x7e,0x38,0x47,0x26,0x67,0x0c,0x1b, + 0x1a,0xcf,0x31,0xde,0x91,0xef,0x3b,0x10,0x78,0x3c,0x09,0x14,0x99,0x68,0x81,0xd4,0x53,0xb1,0x9f,0x62, + 0xa9,0x7b,0xe1,0x4a,0xc8,0xe7,0x27,0x74,0xaa,0xf3,0xc9,0xd7,0x96,0x6e,0x21,0x00,0xf6,0xc4,0xba,0x13, + 0x06,0xc0,0xe2,0x32,0x17,0x2f,0xd3,0xbf,0xff,0xae,0xe5,0x50,0x65,0x2a,0xf2,0x8d,0xc2,0x7e,0x4e,0xe1, + 0x65,0x76,0x9b,0x6c,0xbf,0x85,0x3d,0x48,0xd5,0xd5,0xda,0x01,0x23,0xe8,0x68,0x22,0xc0,0x84,0x73,0xd8, + 0xfd,0x25,0x88,0xab,0xe3,0xce,0xcc,0x57,0x93,0xe6,0x09,0x95,0x09,0x3d,0xe9,0x50,0x91,0xb7,0x5e,0x17, + 0xdb,0x88,0x1c,0xdd,0x0b,0x21,0x92,0xf6,0x11,0xcd,0x20,0x39,0xb1,0x0f,0xce,0xfa,0xd0,0x82,0x0e,0x61, + 0xb7,0xed,0xa0,0xd8,0xb7,0xf1,0x95,0x03,0x3d,0x8b,0xda,0xf1,0xa6,0x4e,0xe6,0x50,0x48,0x55,0xd3,0x28, + 0x5f,0x3c,0x0e,0x68,0x96,0x1e,0xd0,0x51,0x57,0x03,0x19,0x9a,0xc7,0x91,0x5c,0x7c,0x53,0xbe,0xa5,0x6f, + 0xa7,0x90,0xdb,0x8a,0xf7,0x49,0xcb,0xa3,0x6c,0x8d,0xf8,0x0a,0x03,0x3b,0x2f,0xcc,0xd4,0x02,0x00,0xc4, + 0xfa,0x26,0xdb,0x0a,0xb9,0x39,0xfe,0x69,0x71,0xcb,0xc8,0x20,0x40,0x0a,0x95,0x74,0xd9,0x94,0xee,0xc8, + 0xbf,0xdf,0x35,0xc1,0xad,0xac,0x56,0x0b,0x25,0xc3,0x60,0x93,0xc1,0xc5,0x75,0x4d,0xba,0x82,0xef,0xb7, + 0x79,0xb5,0x62,0xda,0x0c,0x5a,0x74,0xf3,0x23,0xff,0x0f,0x59,0x04,0xe9,0x49,0xbb,0xc8,0x36,0xff,0x3c, + 0x04,0xfc,0x40,0x6c,0x85,0x45,0x19,0xe1,0xe5,0x27,0x17,0x6e,0x03,0xbd,0x42,0x53,0x89,0x4c,0x29,0x94, + 0x15,0xde,0xcd,0x17,0x1e,0x4c,0x3c,0x8c,0xc8,0x72,0xd1,0xbd,0x42,0x51,0x12,0xe7,0x56,0x24,0xb9,0x2d, + 0xa7,0xbb,0x72,0xda,0xe3,0x08,0x74,0x76,0xd2,0xe9,0x18,0x57,0xdd,0xc3,0x2b,0xe3,0x8e,0xe2,0x94,0xad, + 0x38,0x89,0x79,0x54,0xc7,0x0a,0xf9,0xc2,0x1b,0x02,0xa7,0x51,0x4a,0xb3,0xe6,0xb8,0x86,0x48,0xe0,0x00, + 0x51,0x32,0x37,0xf9,0xf8,0x67,0x4d,0xac,0xcc,0xef,0x43,0x8f,0xa1,0x03,0x44,0xbd,0xce,0x9f,0x00,0xcb, + 0x59,0x58,0x84,0x53,0x15,0x5d,0x1b,0x2a,0x6f,0x50,0x0a,0x90,0xaa,0x05,0x15,0xc2,0x67,0x13,0xcc,0xc9, + 0xea,0xec,0x73,0x7d,0x8f,0x31,0x2e,0x49,0xbe,0xb6,0x60,0x48,0x25,0xdd,0x0a,0x95,0x74,0x02,0xc9,0x72, + 0x9d,0x43,0xc9,0xf1,0x16,0xa5,0x33,0x68,0x7a,0xab,0xd4,0xde,0x45,0x3c,0x6f,0x42,0x6b,0x4f,0xf0,0x2a, + 0xb8,0x21,0xcb,0x5b,0xd4,0x8e,0x31,0x5a,0xae,0xb4,0x21,0x18,0xde,0xa2,0x92,0xb0,0x35,0x0e,0x2f,0x57, + 0x3a,0x08,0x59,0xde,0xa4,0x76,0xb2,0x22,0x02,0x06,0x93,0x85,0x08,0xc8,0xef,0xdf,0xd6,0xe8,0xc7,0x22, + 0xa3,0x23,0xf6,0x69,0x53,0x76,0xb7,0xc8,0x1f,0xd7,0x97,0x2d,0x62,0x59,0xd2,0x9f,0xa9,0x5d,0x1a,0x4f, + 0xea,0xe4,0xec,0x93,0xef,0xe2,0xf3,0xcb,0x62,0xc7,0xaf,0x31,0x5a,0xc1,0x01,0x81,0xdc,0x6b,0x71,0x93, + 0xf2,0x9b,0x76,0x1c,0x9d,0x28,0x30,0xc4,0x60,0x2a,0xda,0xa1,0xec,0xe2,0x05,0x4c,0x53,0x59,0xb9,0xf2, + 0x8d,0x96,0xcd,0xe8,0x48,0x42,0xea,0x2d,0x5c,0x9a,0x12,0x00,0xd2,0x99,0xa9,0xe1,0xad,0x00,0x23,0x17, + 0x60,0x16,0x16,0xd2,0xc7,0xb2,0xe9,0xd4,0xf3,0x40,0x46,0x75,0x4b,0x5e,0x87,0x27,0x4a,0xa2,0x29,0xad, + 0x08,0x55,0x03,0x31,0xce,0x30,0x1d,0x67,0x29,0x1b,0x1f,0x13,0x87,0xf3,0xde,0x76,0x69,0x87,0xdb,0xf6, + 0x45,0x43,0xb4,0xb4,0xc7,0x75,0x25,0xcf,0x1b,0xbb,0x5c,0x29,0xb5,0xa2,0x0f,0x91,0x4c,0x6b,0x76,0xba, + 0x19,0x8d,0x6f,0x85,0x50,0x9b,0x60,0xe6,0x31,0xf5,0x4e,0xaf,0x81,0x69,0x41,0x28,0x05,0x52,0xe9,0x75, + 0x43,0x27,0xad,0xe8,0x76,0xf3,0xb8,0xd6,0xeb,0x77,0x73,0xf5,0x17,0x77,0xbc,0xe1,0xd4,0xdf,0xd1,0xf3, + 0xc6,0x92,0xef,0xed,0x7a,0x33,0x0a,0x7e,0xa8,0xbe,0xd7,0x55,0xc3,0xfd,0x3b,0x76,0xbe,0xa9,0x34,0x2a, + 0xec,0x7d,0xa5,0xf5,0xef,0xdb,0xfd,0xca,0x10,0x3c,0x16,0xb7,0x65,0x43,0x1a,0xe0,0xe7,0xcc,0x02,0x02, + 0x3f,0x76,0xfe,0x57,0x80,0xbc,0x9c,0x63,0x33,0xc9,0xd9,0x65,0xb4,0x95,0xd1,0x27,0x4e,0x59,0x8a,0x55, + 0x17,0x2e,0x00,0x8c,0xba,0x0e,0x3e,0x13,0xe1,0xec,0xb1,0x5a,0xd6,0x61,0x31,0x47,0x0a,0x6b,0xd8,0x42, + 0x16,0xc3,0x53,0x34,0x17,0x82,0x8c,0x79,0x16,0x36,0x03,0x39,0xfd,0x7c,0x06,0x4e,0x47,0xf9,0x0e,0x9c, + 0xb7,0x76,0xf8,0x19,0x65,0x43,0x3f,0xa8,0xf9,0x33,0x6f,0xa9,0x96,0x9c,0x5d,0x78,0x46,0x4b,0xc5,0x67, + 0x2b,0x80,0x7b,0x13,0x14,0x6d,0x1a,0xfe,0xdf,0x5b,0x14,0xf7,0x16,0xd2,0x95,0xff,0x8d,0xee,0x22,0x55, + 0x1d,0x8a,0x0c,0xff,0xa9,0x3b,0x8c,0xe5,0xa7,0x6d,0xa9,0xa3,0xf3,0x65,0xdd,0x48,0x55,0x7d,0xbc,0x93, + 0x74,0x22,0xea,0x31,0xfb,0x7a,0x5d,0x88,0x22,0xa1,0x3c,0x5d,0x4a,0x2f,0x0a,0xf9,0x3c,0x85,0xab,0x81, + 0xcd,0x15,0xe4,0x20,0x52,0x64,0x2f,0x84,0xbc,0xf2,0xfc,0x7b,0x35,0xba,0xf0,0xa8,0xad,0x10,0x99,0xf2, + 0x3c,0xea,0xcd,0xc8,0x14,0xd9,0x05,0x64,0x4a,0xe7,0x42,0x08,0x32,0x73,0xc5,0xd9,0x78,0xf1,0xea,0x40, + 0xe1,0x2b,0x95,0x9d,0x89,0x90,0x4f,0x8e,0xe7,0x33,0x1a,0x52,0xa1,0xf7,0x21,0x67,0xe6,0x29,0x2c,0x01, + 0x9b,0xd0,0xcc,0xc7,0xb9,0x78,0x22,0x5a,0x31,0xa6,0x58,0x5a,0xe0,0x4a,0xae,0xf2,0xb0,0x25,0xd4,0x95, + 0xf8,0x56,0xdf,0x45,0xd3,0x36,0x82,0x95,0x8a,0x8a,0x6e,0x31,0x17,0xe6,0x0f,0x38,0xc2,0xbb,0xc9,0xd3, + 0x63,0x8b,0x17,0x4e,0xec,0x3b,0x6f,0xbc,0xe1,0x5c,0xd3,0xc2,0x9d,0x56,0x8b,0xf2,0x64,0x24,0x57,0x04, + 0x92,0xf6,0x3a,0x0a,0xf2,0xb4,0xa1,0x80,0x95,0x2e,0xcc,0x62,0x7b,0x9d,0x20,0x40,0x41,0xbe,0x9b,0xd1, + 0x4a,0xbf,0xf0,0xb3,0xe7,0xac,0x2b,0xd3,0xf1,0x39,0x19,0x79,0x90,0xba,0x80,0x3c,0xe7,0x46,0x69,0x4c, + 0x5d,0x2b,0x56,0x13,0x5d,0xf9,0x11,0xab,0xd0,0xff,0x43,0xd8,0x16,0xa0,0x70,0x06,0xe6,0x79,0x98,0x43, + 0xd2,0x3a,0x80,0x23,0x2d,0xb9,0x68,0x63,0xe2,0x7b,0xa0,0x2e,0x9c,0xd6,0xdb,0x3e,0xa1,0xfc,0x8d,0xaa, + 0x3c,0xc4,0x11,0x6d,0x15,0xe4,0xe3,0xc0,0x01,0x06,0xb4,0x7d,0xc7,0xe4,0xcb,0x75,0x81,0x92,0x6e,0xc2, + 0xc3,0xe3,0x9e,0x4f,0x33,0xb6,0x9d,0x3b,0xcf,0x84,0xba,0x32,0x57,0xff,0xd4,0xeb,0x64,0xfc,0x78,0xb7, + 0x60,0x8d,0x9c,0x04,0xfc,0xa9,0x7f,0x03,0x61,0x77,0x06,0x30,0x0c,0x23,0x5a,0xc8,0xa4,0x1f,0xe5,0xca, + 0xa7,0xc2,0xe3,0x90,0x2f,0xbb,0x71,0x57,0xef,0xda,0x18,0x39,0xa1,0x9e,0x88,0xbb,0xc1,0x47,0x7e,0x5c, + 0x3f,0x26,0xae,0x93,0xce,0xe8,0x62,0xdf,0xe2,0x35,0x4a,0xbc,0x7b,0x13,0x3e,0x0a,0x66,0x6e,0xc8,0x10, + 0x45,0x8f,0xba,0xe6,0x89,0xc8,0x40,0x3a,0x74,0x85,0x73,0x3d,0x1a,0x64,0xfd,0xfa,0x23,0x3d,0x79,0x63, + 0xf0,0x06,0x10,0x4f,0x95,0x6e,0x33,0xc1,0x2d,0x09,0xeb,0x14,0x9f,0x44,0x4b,0x92,0x96,0x59,0x3d,0x7a, + 0xd6,0xae,0x40,0xc6,0x6e,0x75,0x8e,0xe5,0x88,0xb4,0xde,0x89,0x87,0xaa,0x2b,0xcf,0x7e,0x62,0x48,0x45, + 0xe0,0x00,0x9a,0x63,0xb9,0x05,0xe8,0x3a,0x13,0xe6,0xc2,0x0b,0xa6,0x84,0xc6,0xff,0xb5,0x09,0xe5,0xf5, + 0x20,0xc5,0x44,0xf8,0x92,0xd0,0x2a,0x13,0x32,0xf2,0x32,0x26,0xb2,0xef,0x0a,0x15,0x35,0x03,0x8e,0x1f, + 0xbd,0x72,0x1a,0xbd,0xae,0xc4,0x69,0x5b,0xd1,0x23,0xb3,0x45,0x50,0x21,0xff,0x5a,0xc8,0x62,0xdd,0x31, + 0xbc,0x78,0xe8,0x4c,0x8b,0x36,0x55,0xd9,0x1d,0x14,0x81,0x00,0x1b,0x76,0x2b,0x96,0x55,0x6b,0x8b,0x20, + 0xb1,0x54,0x8b,0xa9,0xc5,0x00,0x07,0x82,0x37,0x77,0x8f,0xb5,0x90,0xde,0x01,0xf2,0x48,0x36,0xbf,0xd5, + 0x36,0x15,0x79,0xad,0x7a,0xad,0xdc,0xcd,0x5a,0x8b,0xc6,0xd7,0x0b,0xf0,0x58,0xcb,0xe2,0xbb,0x0d,0x09, + 0x8a,0x12,0x9b,0x27,0x37,0xb4,0x68,0x7e,0x30,0x2c,0xe7,0xdb,0x67,0x84,0xb7,0x00,0xe0,0x7a,0x56,0x21, + 0x10,0xb6,0x32,0x10,0xca,0x5d,0x59,0x9d,0x73,0x40,0x44,0xa4,0xb5,0x61,0xc4,0xba,0x96,0x02,0x01,0x41, + 0x64,0x31,0x03,0xa5,0x7b,0xd7,0xae,0x61,0xb6,0x90,0xe2,0x41,0x2d,0xcf,0x27,0x2a,0x79,0x6d,0x48,0x29, + 0x9d,0x4b,0x61,0x05,0x33,0x57,0xd8,0x2d,0x04,0x55,0x6d,0x2d,0x05,0x55,0x6d,0xbd,0x03,0x14,0xd3,0xb9, + 0x12,0x14,0xb7,0x9b,0x02,0x35,0x73,0xcb,0xb2,0xa5,0x5f,0xc0,0x13,0x53,0xd6,0x84,0x92,0x68,0x2a,0x44, + 0xa1,0x18,0xcb,0x80,0x68,0x60,0xf8,0x32,0x81,0x9e,0x31,0xcf,0x81,0x11,0xd3,0xd6,0x06,0x92,0x68,0x5b, + 0x02,0x45,0x31,0xb9,0x98,0xed,0x2e,0x08,0x96,0x65,0x3b,0x27,0x97,0xbb,0xcd,0x2b,0xb8,0x80,0x37,0xa1, + 0xac,0x53,0xfd,0x14,0x3d,0x45,0x48,0x55,0x53,0x5a,0xf1,0x9e,0x6f,0x81,0xdb,0x5e,0xb2,0xeb,0xfb,0xa1, + 0xfa,0xb7,0x54,0x1f,0xbc,0xf8,0x7a,0x2f,0x3f,0xf8,0x1e,0xa3,0xd7,0xe2,0xb3,0xef,0xf0,0xfd,0x69,0x65, + 0x8f,0x12,0xcc,0xc5,0x61,0xa0,0x9c,0xfd,0x08,0xab,0x2f,0x66,0x87,0x9f,0xd9,0xf7,0xb2,0xa3,0x56,0xf7, + 0x56,0x92,0xc5,0xeb,0xd9,0x59,0x91,0xf8,0xb5,0xec,0x85,0x03,0xc5,0xf0,0xd7,0x20,0x0e,0xf0,0xac,0x09, + 0xb0,0x98,0x3f,0x9e,0xc0,0x14,0xc8,0x41,0xfd,0x8c,0xed,0x49,0x88,0xef,0xc0,0x92,0xe3,0x5b,0x9b,0x7a, + 0x53,0xfe,0xe4,0x04,0xfd,0xca,0xdc,0x52,0x2a,0x95,0xf4,0x8f,0x9f,0x59,0x5b,0x87,0x69,0x39,0x08,0x36, + 0x3f,0x2a,0x3f,0x1e,0x91,0x3f,0x1b,0xd9,0x16,0xbf,0x96,0xf9,0x37,0xde,0x76,0xab,0x9a,0x43,0x33,0x00, + 0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index b3b98e4..d0c5ddc 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -5,2298 +5,2311 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x77,0xdb,0x46,0xb2,0x2e,0xfa,0x57, - 0x24,0x1c,0x6f,0x1a,0x18,0xb5,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0xb6,0x6c,0xc7,0x4e,0xfc,0x1a, - 0x5b,0x79,0xcc,0x28,0xda,0x5a,0x10,0x09,0x4a,0x88,0x49,0x80,0x01,0x40,0xc9,0x8a,0xc8,0xf3,0xdb,0x6f, - 0x7d,0x55,0xfd,0x02,0x08,0x39,0xc9,0xac,0xbd,0xee,0xf2,0xb2,0x08,0x74,0x37,0xfa,0x59,0x5d,0x5d,0xef, - 0xde,0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x0d,0xca,0xf3,0x5f,0xb3,0x49,0x13,0x24, - 0x49,0x73,0xb3,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0x3d,0x18,0x6c,0xe5,0x2c,0xca,0xe9,0x6a, - 0x9e,0x8d,0xe5,0x67,0xa8,0xcb,0x25,0x4d,0x18,0xc5,0x81,0xa9,0xd3,0x15,0x9e,0x66,0xb3,0xbc,0xc8,0x06, - 0x03,0xf9,0x1d,0xa6,0x8b,0xe9,0x58,0x1e,0xc3,0x93,0x53,0x6a,0x37,0xbe,0xab,0xdd,0xb1,0xfe,0x1d,0xa6, - 0x9f,0xf2,0x52,0x6a,0xcf,0xdc,0xf3,0x26,0x6c,0x2e,0xf3,0x5a,0xd9,0x21,0x44,0xb7,0x55,0xd6,0xac,0xaa, - 0x62,0xc7,0x0d,0x2a,0xba,0x35,0xcf,0x3b,0x4d,0x58,0x45,0xb7,0xf9,0x2c,0x2c,0x4e,0xaa,0xd3,0x48,0x17, - 0xc4,0xb3,0xe9,0xfb,0xe8,0x2a,0xad,0x76,0xf2,0x04,0x49,0xc9,0xad,0x4e,0x8b,0x6f,0x37,0x2a,0x9f,0xc6, - 0x95,0x9a,0x97,0xe9,0x34,0x9b,0xc6,0xbb,0x87,0x9b,0x91,0xfe,0x34,0xc3,0xa7,0x93,0x74,0x3e,0x0f,0x73, - 0x53,0x83,0xca,0x95,0x7b,0x6e,0x22,0x7a,0x91,0xcf,0x92,0xdd,0x03,0x97,0xb1,0x41,0x33,0x45,0x72,0x6b, - 0x2b,0x6a,0x86,0x8b,0x84,0x26,0x7f,0x38,0x49,0x0a,0xfa,0xbb,0x4c,0x82,0x40,0x35,0xe1,0x01,0x0d,0xee, - 0xc4,0x5f,0x1b,0x55,0x44,0xb7,0x6e,0x9a,0x8b,0xf0,0x30,0xda,0xa8,0x6e,0x7e,0xb0,0xaa,0xb3,0x9d,0xba, - 0xa9,0x72,0x9a,0xc9,0x91,0x1d,0x77,0x85,0x59,0x40,0xa3,0x4d,0x52,0x64,0xd7,0x3b,0x29,0xbd,0xaa,0x22, - 0x29,0xc3,0x74,0xb8,0xac,0xca,0xa6,0xc4,0x84,0x0f,0xab,0xec,0xb7,0x55,0x56,0x37,0xd4,0x69,0xd3,0x2b, - 0xf4,0xb7,0xc9,0x8a,0x69,0x58,0x28,0xaf,0xa0,0x8c,0xca,0xe6,0xd0,0x5b,0xb1,0xd1,0xd3,0x16,0x3e,0x8c, - 0x54,0x49,0x3f,0x5f,0x44,0x2a,0xa5,0x9f,0xaf,0x22,0x85,0x6e,0xfe,0x3d,0x52,0x93,0xa4,0x0a,0xeb,0x68, - 0x34,0x19,0x3e,0xe6,0x75,0x4b,0xd5,0x64,0x38,0xa9,0xb2,0xb4,0xc9,0x12,0x7f,0x99,0x74,0xb3,0x15,0xcd, - 0xe6,0x22,0xab,0x2e,0xb2,0xb0,0x56,0x59,0x44,0x63,0x9c,0x0c,0x8f,0xd2,0x62,0x92,0xcd,0xd1,0x00,0x55, - 0x6d,0x5e,0x8f,0xcb,0x8f,0x59,0x81,0xb4,0x2f,0x91,0x96,0xd7,0xae,0xd0,0x01,0x12,0x68,0x59,0xfa,0x6a, - 0x7f,0x57,0x95,0x8b,0xbc,0xce,0x90,0x4d,0xa9,0xa8,0xbc,0x5e,0x52,0x57,0xa6,0xf8,0x8e,0x3a,0xec,0xe6, - 0x77,0xe2,0x9e,0x87,0x04,0xa8,0xe9,0x6a,0xde,0x24,0x93,0xbf,0x34,0xe1,0xd2,0x62,0x70,0x22,0x80,0xbd, - 0xf3,0xb8,0xaa,0xd2,0x9b,0x53,0x82,0xef,0x64,0x2e,0x40,0x43,0xcd,0xdb,0x0f,0x72,0xaf,0x8b,0xc5,0x6a, - 0x3e,0xdf,0x4d,0x92,0xac,0x67,0xc7,0x65,0xee,0x8b,0xb2,0xa7,0x89,0xe7,0x3a,0xf3,0xae,0x56,0x52,0xd9, - 0xe2,0xd8,0x01,0xb6,0x8d,0xab,0x32,0x9f,0xee,0x1c,0xe0,0x39,0xa2,0x74,0xd3,0xe2,0xae,0x6d,0x71,0x30, - 0x08,0xb3,0xe4,0x24,0x3b,0x8d,0x14,0x06,0x15,0xcd,0xca,0x2a,0x14,0xf0,0x25,0x80,0x4e,0xb2,0xe1,0x3c, - 0x2b,0x2e,0x9a,0xcb,0x51,0xf1,0x28,0x1f,0x15,0x7b,0x7b,0x51,0x23,0x8d,0xa2,0x7a,0x95,0x9d,0x14,0xa7, - 0xaa,0xa0,0x35,0x1c,0x65,0x73,0x9a,0x24,0xf3,0x65,0xb9,0x93,0xd3,0xd6,0x89,0xde,0x72,0x43,0x1e,0x00, - 0x5e,0xa6,0xf5,0xdb,0xeb,0x82,0xd6,0x67,0x99,0x55,0xcd,0x8d,0xee,0xbc,0x2a,0xa3,0xc1,0xa0,0x5d,0x69, - 0x79,0xaa,0x4a,0xaa,0x94,0x81,0xae,0x16,0x68,0xa3,0x7d,0x13,0x12,0x14,0xcc,0x93,0xad,0x4a,0x9b,0xf2, - 0x03,0xad,0x4d,0x71,0x31,0x72,0x0b,0x7b,0x9b,0xd7,0xbc,0x14,0xb4,0xa5,0xf5,0xd3,0x93,0xd5,0x6c,0x96, - 0x55,0xf1,0x36,0xb4,0xb4,0xd7,0x4e,0x8a,0x75,0xe6,0x96,0xea,0xd0,0x9f,0x4f,0xe8,0xf1,0x79,0x59,0x2d, - 0x9e,0xa6,0x4d,0xda,0x57,0xd7,0xaa,0x10,0x7c,0x37,0x75,0x93,0x6b,0x8a,0x0f,0x06,0x19,0x4d,0x4a,0xdd, - 0x00,0x82,0xbd,0xe4,0x4d,0xbb,0x83,0x3f,0xe6,0xd9,0xf5,0x9f,0xac,0xd8,0xfb,0x6a,0x30,0xf0,0x5e,0x68, - 0x9b,0xa0,0x96,0xf1,0x76,0x12,0xd5,0x17,0xd3,0x5a,0x67,0xc3,0x73,0xfd,0x95,0x79,0xf2,0x3b,0xe6,0x7d, - 0x86,0xbe,0xc9,0xd4,0xf6,0x75,0xa9,0xe6,0x1c,0x1f,0x6e,0xa9,0xf8,0x9b,0xd5,0xe2,0xbc,0x7f,0x9a,0x0b, - 0xce,0xe9,0x14,0x97,0xb5,0x8c,0x09,0xa1,0xd6,0x3f,0x98,0x11,0xf6,0x7c,0xbc,0x23,0x00,0x4c,0x8b,0xc2, - 0x5f,0xd1,0xbc,0x65,0x9f,0x5b,0x49,0xe4,0x6f,0x2f,0xe1,0xf3,0x7c,0xfe,0xd9,0xaf,0x90,0xdf,0xb3,0xf0, - 0xf3,0xf2,0xfc,0x73,0x5f,0x21,0xbf,0xa7,0x2d,0xfd,0x41,0x5c,0xca,0x14,0x66,0xe9,0xa2,0x6f,0x58,0xc0, - 0x08,0x83,0x01,0xed,0xf2,0xe1,0x32,0x5f,0xca,0x97,0x3f,0xbc,0x7f,0xf5,0x21,0x4b,0xab,0xc9,0xe5,0xbb, - 0xb4,0x4a,0x17,0xf5,0x9f,0x84,0x85,0xce,0x57,0x1d,0x58,0xeb,0xe4,0xca,0xb2,0xa6,0xc5,0x34,0xad,0xa6, - 0x4f,0xaa,0xf2,0xba,0xce,0xaa,0x67,0xc5,0x55,0xbc,0x75,0xbe,0x86,0x5e,0x4b,0x76,0xd9,0x8a,0xf4,0x2a, - 0xbf,0x48,0x9b,0xb2,0x5a,0xaf,0x83,0xf7,0x59,0x3a,0x69,0xde,0xa4,0x4d,0x7e,0x95,0x51,0x57,0x12,0x9b, - 0x85,0xbd,0x39,0x5d,0x4d,0x1a,0x1a,0x5b,0x5f,0x67,0xaf,0xf3,0x62,0x5a,0x5e,0xf7,0xe7,0x4d,0xcb,0xc9, - 0x6a,0x91,0x15,0x0d,0x21,0xe1,0xb2,0x7a,0x96,0x4e,0x2e,0xe3,0x54,0xf1,0x41,0x61,0xbb,0xb7,0x93,0x85, - 0xad,0xd3,0xbe,0x51,0x55,0x0f,0x41,0x83,0xe3,0xbd,0x07,0xb7,0x36,0x63,0x3e,0xf7,0x33,0xa6,0x0e,0x40, - 0x91,0xf0,0x6b,0xb3,0x71,0x18,0x8f,0x28,0x81,0x8a,0xd1,0x5e,0x5a,0x5d,0x70,0x4f,0x6a,0x83,0xfe,0x2a, - 0x42,0x7f,0x15,0xa1,0xbf,0x34,0xb4,0x59,0x52,0x89,0x39,0x4b,0x8b,0x8d,0x92,0x23,0x33,0xee,0x1e,0x20, - 0xba,0x40,0x4a,0x9d,0xb5,0x59,0xdc,0x6f,0x50,0x17,0x49,0x41,0x1d,0xdd,0xa6,0xa5,0x9a,0x71,0x1d,0xe2, - 0xe3,0xb8,0xd9,0xd0,0x91,0xb5,0x51,0xb4,0xdb,0x7a,0x61,0x08,0xa7,0xfa,0x72,0x9e,0x4e,0xb2,0xf0,0xc1, - 0xff,0xfc,0x52,0xff,0xed,0x81,0x0a,0x82,0xc8,0x25,0x51,0xca,0x3d,0x4e,0xda,0x6c,0xda,0xe7,0x5a,0xe7, - 0x54,0x73,0xa8,0xb3,0x5d,0xa8,0x4b,0x69,0xd1,0xd4,0xdb,0xa9,0x02,0x99,0xc1,0xd8,0x22,0xec,0xce,0x55, - 0x84,0x39,0xa4,0x09,0x2b,0xec,0xdc,0xd1,0xbc,0xf1,0x54,0xfb,0x53,0x67,0x49,0xac,0x61,0xba,0x5c,0xce, - 0x6f,0x78,0xb4,0xdb,0xdd,0xb4,0x4b,0xed,0x0d,0x7a,0x77,0x37,0x1b,0x4e,0x4a,0x02,0xf0,0x8a,0xa0,0xac, - 0xac,0x7a,0xe7,0xaf,0x55,0x62,0x68,0x30,0x38,0x70,0x5e,0x5f,0x3a,0xf6,0x6d,0xdf,0x1c,0x74,0x0e,0x6c, - 0x9c,0x94,0x48,0x5d,0xaf,0xc3,0x86,0xa8,0xb9,0xbe,0x65,0x1b,0x82,0xd2,0x78,0x4e,0x14,0x61,0xf3,0xea, - 0x59,0xff,0xc2,0x0e,0xeb,0x79,0x3e,0xa1,0x9a,0x08,0x06,0xe4,0x31,0x3c,0x50,0x07,0x51,0x44,0x95,0x62, - 0x5c,0x67,0xa6,0x4b,0x11,0x53,0xaa,0xcd,0xe6,0x2f,0xd1,0x23,0xa0,0x94,0x0d,0x29,0x53,0x83,0xde,0xc4, - 0x7b,0x5e,0x34,0x59,0x35,0xc9,0x96,0x34,0x60,0x3a,0x1a,0x35,0x11,0x18,0x33,0x95,0xa8,0xaa,0xac,0x5e, - 0xd2,0x7c,0x64,0xf2,0xba,0xb1,0x64,0xde,0xdf,0x85,0xcc,0x7b,0x28,0x64,0xde,0xe1,0x7f,0x0b,0x9d,0x77, - 0xf8,0x0f,0x82,0xf6,0x6d,0x82,0xb2,0x35,0x61,0xdb,0x07,0x03,0x93,0x17,0xa5,0x26,0xf8,0x6e,0x57,0xd5, - 0x3c,0x76,0x60,0x70,0x70,0xba,0x51,0xee,0xed,0xf0,0x34,0x8a,0x94,0x57,0x38,0x57,0xad,0x01,0xa9,0xdb, - 0x45,0xd6,0x5c,0x96,0xd3,0x38,0xb8,0xc8,0x9a,0x60,0x03,0xd2,0x71,0x28,0x29,0x44,0xa5,0xc8,0x03,0x51, - 0x03,0xaf,0xca,0xeb,0xac,0x3a,0x4a,0x6b,0x42,0x14,0x32,0x85,0xc9,0x49,0xad,0xe4,0x04,0x21,0x5a,0x25, - 0x31,0xd4,0x21,0x8d,0xbc,0x9c,0x5f,0x65,0xd4,0xe5,0x11,0x60,0x7a,0x6b,0xa6,0xcc,0xe0,0x86,0x1a,0x13, - 0x85,0xfe,0x20,0x9b,0xe1,0xaa,0xa8,0x2f,0xf3,0x59,0x43,0xb8,0x7b,0xb6,0x9a,0xcf,0xf2,0xf9,0x3c,0x9b, - 0x2a,0x54,0x0a,0x84,0x93,0x4d,0x23,0xda,0xb4,0x7d,0x35,0xca,0x64,0xdf,0x51,0xe5,0x72,0x55,0x5f,0xde, - 0x5d,0xdf,0xa8,0x31,0xbb,0x29,0xa2,0xbd,0x37,0x6c,0x2e,0x33,0x06,0x20,0xee,0x04,0x35,0x66,0x9e,0x7c, - 0x74,0x54,0xda,0x86,0x4e,0x82,0x69,0x36,0xcf,0x9a,0x2c,0x50,0x3c,0x75,0x2a,0xb8,0x24,0x28,0xa5,0x9f, - 0x72,0x89,0xe6,0xeb,0xe0,0x54,0xb5,0x60,0xde,0x2d,0x31,0x51,0x85,0x89,0x87,0xb3,0x1c,0x32,0xe3,0xd1, - 0xe9,0x29,0x0a,0xcd,0x7a,0x15,0xeb,0x35,0x21,0x50,0xb3,0x4a,0x99,0xc2,0x5a,0x13,0xfe,0xa2,0x6d,0x1d, - 0xb5,0x3a,0xb3,0x2c,0x6b,0x74,0x62,0xb9,0xe2,0xbf,0x69,0x33,0xb9,0xfc,0xf3,0x3d,0x00,0xde,0xfc,0x5c, - 0x1f,0xaa,0xbe,0x3e,0xa8,0x29,0x28,0xb6,0x42,0x77,0xc5,0xed,0xf4,0xea,0x2f,0xec,0x2e,0x60,0xa3,0xdd, - 0x7c,0xe8,0x91,0x2a,0x7c,0x7c,0x77,0x52,0x4e,0x82,0xa3,0x92,0xd6,0xbc,0x68,0xf6,0x8f,0xa9,0xf3,0xc1, - 0x69,0x04,0xe8,0xef,0x26,0x26,0x4d,0xd4,0x65,0xa8,0xfe,0x1b,0x3b,0xed,0xb6,0x5d,0x2e,0x0e,0x80,0x19, - 0xf3,0x49,0x8a,0x2e,0x3c,0xf8,0xb4,0x7f,0x7d,0x7d,0xbd,0x4f,0x93,0xb8,0xd8,0xa7,0x31,0x65,0xc5,0xa4, - 0x24,0xa6,0x93,0x76,0x01,0xed,0xe9,0x74,0x9a,0x2e,0x1b,0x9f,0xee,0x12,0x56,0x30,0x1b,0xdd,0x4d,0x32, - 0xfc,0xfc,0xfa,0xd5,0x8b,0xa6,0x59,0xbe,0x97,0xd9,0x1b,0x67,0xd4,0x85,0x7f,0x10,0x87,0xde,0x53,0x92, - 0x56,0x62,0x92,0xd5,0x35,0xef,0x62,0x14,0xc2,0x71,0x04,0x88,0xab,0xd2,0xa2,0x46,0x6f,0x74,0x15,0xf1, - 0x49,0xef,0xd1,0x51,0xd2,0x9a,0xb5,0x47,0x05,0xde,0xd2,0x91,0xd1,0x8c,0x4d,0x91,0xe0,0x11,0x9e,0x36, - 0xad,0xf3,0x2a,0x94,0x94,0x7d,0x05,0xc5,0xe6,0x8a,0x12,0x21,0x46,0x2f,0xe3,0x2c,0xee,0x54,0xa6,0x29, - 0xdf,0xb1,0x21,0x76,0x39,0xbf,0x43,0x12,0x21,0x3f,0xac,0xd0,0xd3,0x3f,0x9c,0xf0,0xd1,0xe4,0x32,0xad, - 0xea,0xac,0x49,0x56,0xcd,0x6c,0xff,0x1f,0x01,0x80,0xc9,0x30,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0xfb, - 0xeb,0xfc,0xb5,0x2e,0x8b,0xad,0x2a,0xbe,0xfb,0xf0,0xf6,0xcd,0x50,0xd0,0x66,0x3e,0xbb,0x01,0x0b,0x16, - 0x67,0x9b,0x53,0x7f,0x86,0x35,0x92,0x3e,0xf1,0xf7,0x08,0x58,0xb9,0x2d,0x5c,0x1b,0x35,0xd5,0xcd,0x6d, - 0x96,0x70,0x8d,0x4b,0xb4,0x82,0x93,0x6d,0x82,0x1d,0x86,0x4f,0x36,0xe6,0xc8,0x45,0xed,0xf9,0x22,0x2b, - 0x57,0x4d,0x7c,0xa0,0x3e,0xd5,0xd5,0xec,0xa8,0x2c,0x3f,0xe6,0xd9,0x9b,0x74,0x91,0xc5,0xc1,0xcf,0x1f, - 0xde,0x3f,0xdf,0x3f,0x7e,0xfb,0xfd,0xb3,0x37,0x01,0xe7,0xbd,0x20,0x5c,0x91,0x55,0x3a,0x6f,0xdf,0xcf, - 0x5d,0xa4,0x9f,0xf4,0xd2,0xbe,0x62,0xd4,0x14,0xef,0x1f,0xaa,0xab,0x74,0x9e,0xd3,0x6e,0xcb,0x88,0xc4, - 0x6c,0x56,0x7d,0x04,0xec,0x4e,0xf6,0x4d,0xf2,0xf0,0xe0,0x80,0x8e,0xe2,0x47,0x5f,0x1c,0x1c,0x6c,0x36, - 0xa3,0x7a,0x78,0xc9,0x2d,0x10,0x20,0x4f,0xca,0xc5,0x82,0xc8,0xe6,0xdb,0xc7,0x13,0xe0,0xcc,0x78,0x6b, - 0xea,0xd4,0x4e,0x43,0x34,0xd6,0x03,0xa2,0x6e,0x72,0x7a,0xfe,0xdb,0x83,0xbf,0x05,0x74,0x3e,0xe6,0x7f, - 0x80,0xe6,0xda,0xa8,0xc5,0xb6,0x06,0xc4,0x72,0x0b,0x74,0x90,0xff,0x15,0xcc,0xd4,0xfa,0xdc,0x48,0x31, - 0xd2,0xa8,0x85,0x55,0xea,0x3f,0xc0,0x2a,0xd8,0x9b,0x15,0x6f,0xfd,0xbb,0x09,0x2f,0xdb,0xa7,0xcc,0xd5, - 0x25,0xb8,0x8f,0x48,0xed,0x66,0x30,0xa8,0x08,0xec,0x7e,0x58,0x2e,0xcd,0x49,0x47,0x1c,0x48,0xd3,0x4e, - 0x61,0xbc,0xd3,0x10,0x79,0xa9,0x64,0x4e,0x58,0x94,0x45,0xfd,0xfc,0x23,0x82,0xc2,0x75,0x4e,0x01,0x3d, - 0x7d,0x2d,0xe8,0xe9,0xd0,0x50,0x02,0x5f,0x68,0x4a,0xe0,0x4b,0x61,0xc9,0x0f,0x0f,0xc0,0x93,0x7f,0x8e, - 0xcc,0x97,0xdf,0xe1,0x79,0x53,0xa6,0xad,0x97,0xe1,0x39,0x3d,0x87,0x92,0x40,0x7b,0x98,0xaa,0xfa,0xaa, - 0x7f,0x3a,0x1c,0x0d,0x46,0x24,0x8a,0x3e,0xbd,0x43,0xef,0x44,0x58,0x09,0xb2,0x9b,0x11,0x0d,0x00,0x2c, - 0xaf,0x40,0x0c,0xe8,0x35,0x1a,0x55,0x3e,0xa6,0x99,0x45,0x10,0x4d,0xf2,0x5c,0x4c,0xbb,0x18,0x99,0x87, - 0xbd,0x64,0x9a,0xb6,0x8d,0x19,0xd5,0x65,0x12,0x94,0x05,0x88,0xba,0x1b,0x62,0xa8,0x9a,0x8c,0xf6,0x6e, - 0x71,0x41,0x00,0x76,0x95,0xec,0x1e,0x8e,0xb0,0x05,0x7b,0x98,0x24,0x19,0x14,0xd1,0x73,0x7a,0xb8,0x3f, - 0x3f,0x2d,0x17,0x04,0xb0,0xba,0x46,0xe2,0x9c,0xae,0xf3,0xe6,0xf2,0xa8,0xca,0xa6,0xd4,0x7e,0x9e,0xce, - 0xeb,0x20,0x2f,0x76,0x96,0xeb,0x35,0xa1,0xa1,0x21,0x21,0x1a,0x50,0x97,0xd2,0x93,0xde,0xcf,0xa5,0x43, - 0x10,0x39,0x72,0x27,0x0e,0xd4,0x72,0x58,0x16,0x84,0xa3,0x2f,0x88,0xba,0xf0,0xa6,0x8d,0x36,0x3b,0xe7, - 0xe8,0x6d,0xde,0xca,0x00,0xac,0xa6,0x2b,0xa2,0xd3,0x79,0xe2,0x16,0x89,0xbc,0x0d,0x09,0x0a,0xaa,0x82, - 0x76,0x39,0x75,0x30,0x50,0x17,0x26,0x75,0x99,0xd6,0xf5,0x75,0x59,0x4d,0x91,0x3a,0x9a,0x0e,0x1f,0x53, - 0x5a,0x59,0xe5,0xbf,0xf3,0x9e,0x4c,0x82,0x27,0x69,0x9d,0x4f,0x76,0x82,0xbd,0x79,0xb8,0xd8,0xa3,0xf3, - 0x6a,0xef,0x22,0xda,0xd0,0xa4,0x50,0xc3,0x4b,0x22,0x4f,0x3c,0xa2,0xcc,0x03,0x4c,0x55,0xca,0x38,0xa9, - 0x13,0x4b,0xc6,0xbe,0xf6,0xe1,0x43,0x56,0xd1,0x74,0xe4,0xbf,0x13,0xf1,0xab,0x76,0x09,0xb0,0x96,0x43, - 0xd3,0xfb,0xcc,0x3c,0xa9,0xe5,0xc9,0xe5,0xa9,0x3f,0x18,0xb4,0x46,0xa0,0xfe,0x25,0x6d,0x80,0x25,0xd3, - 0xde,0x37,0x40,0x3c,0x34,0x86,0x2b,0xec,0x00,0x08,0xbd,0x96,0xc3,0x9a,0x51,0xd1,0x7a,0xbd,0xb4,0x14, - 0x18,0xe1,0xff,0xc1,0xe0,0x40,0x7f,0x63,0x93,0x88,0x5a,0x9b,0x66,0x9f,0xde,0xd2,0xa2,0xce,0x20,0x2c, - 0x08,0x88,0x28,0xbf,0x15,0x5e,0x07,0xe8,0xe4,0xf1,0x7c,0x6e,0x10,0xb1,0x60,0x44,0x59,0xb7,0x71,0x4a, - 0xc3,0xed,0xcd,0xc6,0x79,0xc0,0x02,0xad,0x2a,0xb9,0x65,0xfa,0x23,0xb3,0x8d,0x01,0xe8,0x88,0x3b,0x00, - 0x32,0x03,0xeb,0xdc,0xce,0x18,0xbb,0x4e,0xc5,0xee,0xf1,0x98,0xca,0x2a,0x19,0x49,0x7c,0xf8,0xf0,0xe1, - 0x17,0x89,0x1b,0xd9,0xf8,0xe1,0xc1,0x97,0xb1,0x79,0xd1,0x65,0x50,0x7c,0xab,0x5c,0xf0,0xa6,0xdc,0xd1, - 0x70,0x1f,0xd8,0x0f,0xb8,0x62,0xbd,0x61,0xe2,0x42,0x11,0x7b,0x34,0xcb,0x2f,0x88,0x70,0x32,0x8c,0xc2, - 0x72,0x33,0xca,0xb1,0xcd,0x08,0xf9,0x28,0x82,0x4b,0x1a,0xd0,0x46,0x40,0x2b,0xab,0xaa,0xb2,0xf2,0xd7, - 0x62,0x15,0x4e,0xc2,0xe0,0x4d,0xd6,0x10,0xb8,0x7c,0xdc,0x79,0x86,0xdc,0x40,0x65,0x8a,0xa7,0x60,0x19, - 0xd9,0x8f,0xef,0x02,0x4b,0xfe,0x5a,0xa7,0xef,0xd0,0x2e,0x0a,0xf6,0xec,0xaa,0xef,0x05,0x8b,0x7a,0x27, - 0xfb,0x34,0xc9,0x32,0x90,0x3c,0x54,0x67,0xf0,0xec,0xe8,0xed,0x9b,0x37,0x8f,0x9f,0xbc,0x7d,0x7f,0xfc, - 0xec,0x69,0xd0,0xaa,0xbd,0x1a,0xf6,0x89,0x37,0x42,0xbd,0x94,0x37,0xc0,0x59,0xc4,0xdc,0x9c,0x27,0x04, - 0x84,0x9d,0x6d,0xe8,0x76,0x60,0x04,0x3e,0xb1,0x7d,0x2c,0x8e,0x6f,0x18,0xba,0xc2,0x6e,0x7a,0x14,0x0b, - 0x6b,0x31,0x3a,0x27,0x70,0x9b,0x9e,0x48,0xb6,0x3b,0x31,0x4f,0x93,0x73,0xde,0x11,0x01,0x9d,0xf7,0x7a, - 0x03,0x4b,0x26,0xc3,0x0e,0xd0,0xb8,0xc1,0xf3,0xd3,0x0e,0xe3,0x6b,0x65,0x5e,0x33,0x02,0x94,0x89,0x46, - 0x56,0x40,0x30,0x81,0xc6,0xf5,0x1e,0x9f,0x33,0xb6,0x68,0xad,0x39,0xc5,0xba,0x76,0xda,0xa2,0xd5,0xcb, - 0xe4,0x84,0xea,0x8c,0x98,0xba,0xbc,0xec,0xa6,0x25,0xd8,0x79,0x6d,0x80,0x64,0xa2,0x62,0xd9,0x4a,0xea, - 0x80,0xac,0x26,0x31,0x44,0xf0,0x1c,0xe0,0xa4,0xde,0x06,0xeb,0xa8,0xb9,0xa4,0xe5,0x20,0x8e,0xb6,0x97, - 0x5b,0x2f,0x8b,0xa7,0xe5,0x35,0xa3,0xb5,0x77,0x1a,0x97,0x0d,0x06,0xcb,0x61,0x3a,0x9d,0x3e,0xbb,0x02, - 0x79,0x91,0xd7,0x34,0x7e,0x1a,0x49,0x60,0x30,0x1d,0x41,0x41,0xcf,0x37,0x51,0x1f,0x4f,0x8e,0x82,0x3f, - 0x2c,0xbb,0x55,0xaf,0x38,0xc5,0x3d,0xfd,0x61,0x5b,0xed,0x2a,0x30,0x47,0x13,0xa7,0xa4,0x60,0xc1,0x82, - 0x7b,0x05,0xfb,0xc2,0x5c,0x26,0xb3,0x69,0xfe,0x59,0xb6,0xe4,0x39,0x4f,0xcf,0xe9,0x90,0x23,0x54,0xb8, - 0x82,0x9a,0x46,0x20,0x17,0x0b,0xe4,0xaf,0x79,0x38,0x93,0x64,0x85,0xf5,0xa4,0x93,0x72,0xf6,0x17,0xce, - 0x6e,0x3a,0x95,0xef,0xa0,0x2c,0xf0,0x89,0xe6,0x3c,0x86,0xb2,0xd3,0x87,0x6d,0x82,0x6d,0x54,0x68,0xb4, - 0x40,0x9c,0xcd,0x60,0xb0,0x9b,0x87,0xe6,0x3d,0x1a,0x37,0x44,0xce,0x06,0x1a,0xb0,0x76,0x66,0x29,0xa1, - 0xc8,0xe9,0x0e,0x80,0x67,0x47,0x0a,0xec,0x80,0x3e,0xa6,0x5d,0x6b,0x3e,0x50,0xa6,0x05,0xc1,0x00,0x85, - 0x55,0x3f,0x15,0xa0,0x6f,0xc3,0xe2,0xcf,0x8f,0xe6,0xf0,0xee,0xd1,0xa8,0x5c,0x95,0x32,0xa2,0x94,0x8f, - 0x4c,0xc6,0x3a,0xe0,0xe9,0xad,0xa6,0x29,0xb5,0xc5,0xfe,0x13,0x11,0x18,0xf8,0x4d,0x95,0x7b,0xd2,0x36, - 0x19,0x52,0x42,0x19,0x20,0xb0,0x86,0x18,0x73,0x52,0xc8,0x86,0x11,0x59,0x48,0xe5,0x6d,0x9e,0x24,0x27, - 0x5e,0xe9,0x3f,0x50,0x28,0xed,0x08,0xb3,0xf1,0xc3,0xfb,0x97,0x47,0xe5,0x82,0x6a,0x22,0xa8,0xa4,0x4c, - 0x27,0xd6,0xfb,0xaf,0x2f,0x0f,0x1e,0x5c,0xe4,0x2a,0xf8,0xbf,0xbe,0xac,0xef,0xbf,0xbe,0x78,0xcc,0x89, - 0x71,0x2b,0xf1,0xe1,0x97,0x0f,0x2e,0x54,0x70,0xaf,0x9d,0x76,0xc4,0x05,0x55,0x3b,0xf1,0x00,0x05,0xf7, - 0x5a,0x69,0x5f,0x3d,0xe1,0x82,0x27,0xed,0xc4,0xa7,0x9c,0x78,0x1a,0xf8,0x3c,0xec,0x67,0xc0,0x8d,0x30, - 0xc2,0x6e,0x63,0x54,0xb1,0x19,0xaf,0x6a,0x09,0xca,0xa9,0x88,0x40,0x58,0x36,0x5a,0x75,0x44,0x09,0x7d, - 0x8c,0x59,0x13,0x51,0xa9,0xc6,0x63,0xb1,0xb8,0xb4,0x5e,0xf0,0x93,0xd3,0x91,0xa3,0xdd,0x9b,0xce,0xe2, - 0xf6,0xa9,0xbf,0x68,0xc9,0x2c,0x77,0xc8,0xcc,0x7b,0xd8,0xec,0x25,0xc1,0xc9,0xa9,0xe6,0x49,0x4d,0x3a, - 0x11,0x60,0x5a,0x1f,0x96,0xf7,0x91,0xe1,0xe0,0xbd,0x86,0xa2,0x86,0x60,0xc6,0x12,0xd4,0x49,0xf9,0xf2, - 0xc3,0x5b,0xd3,0xc5,0x36,0x13,0xc8,0x7c,0xf3,0x36,0x87,0x07,0x7d,0x2b,0xe4,0x3d,0x84,0x9c,0xa3,0xbd, - 0x20,0x09,0xf6,0x58,0xf5,0x06,0x01,0x05,0x08,0xee,0x74,0xf8,0x6b,0x99,0x17,0x61,0x30,0xa0,0x49,0x36, - 0x8c,0x34,0x2a,0xda,0x4b,0xc2,0xfd,0x43,0xe8,0x41,0x1c,0xa9,0x32,0x0e,0xa2,0x31,0xfd,0x89,0x51,0x76, - 0xaf,0x8c,0xfe,0x18,0xe0,0x5a,0x04,0xfe,0x49,0x90,0x82,0x9a,0x0d,0x52,0x9f,0xac,0xa3,0x77,0x73,0xe0, - 0x88,0xc8,0xc9,0x4b,0xe0,0x13,0x48,0x05,0x59,0x93,0x5e,0xe0,0xe7,0xd3,0x32,0x27,0x60,0xa7,0xa7,0x19, - 0x21,0x3c,0x30,0x5c,0xc2,0x3f,0xe5,0xb3,0xfd,0x45,0x39,0xcd,0x67,0x79,0x36,0xdd,0xaf,0x73,0x42,0x8b, - 0x92,0xb6,0x2a,0xb6,0x52,0xe7,0x69,0xdd,0xd8,0xb2,0x78,0x2f,0x27,0xa6,0x0f,0xc4,0x5d,0x82,0xfb,0xbe, - 0xa6,0x83,0x1c,0x2d,0x10,0x4a,0xfd,0x74,0xb3,0xdf,0xed,0x68,0x95,0x11,0x4f,0x4f,0xc7,0x29,0x9e,0xe8, - 0x98,0xda,0x4f,0x67,0x0d,0xbf,0x81,0x98,0xdd,0xa7,0xb1,0x11,0xa5,0x73,0x7a,0x07,0x5b,0xc1,0xc2,0x41, - 0xda,0xe0,0x25,0x24,0x2f,0x4e,0xe3,0x4f,0x5c,0xbb,0x5b,0xf5,0x61,0x4d,0x0c,0x68,0x13,0x06,0xbf,0x14, - 0x04,0x23,0x1d,0xee,0xbb,0xf4,0x97,0x81,0x76,0x9d,0xa2,0xcd,0x3f,0x84,0x9c,0x1e,0x9f,0xad,0xce,0x69, - 0xbe,0xc3,0x03,0x42,0x3b,0x51,0xfb,0xac,0x56,0xc5,0x56,0xa9,0x72,0xef,0x90,0x00,0x42,0x0e,0xcf,0x94, - 0x8e,0x70,0x16,0x2a,0xe9,0x8a,0x9b,0xe8,0x9b,0xe4,0x40,0xef,0x9e,0x11,0x32,0x13,0x90,0x12,0xfb,0x13, - 0x26,0x40,0x98,0x14,0x18,0xf3,0x37,0x63,0xfc,0x89,0x4f,0x4e,0x23,0x60,0x28,0x9a,0xc2,0xf0,0xa4,0x38, - 0x8d,0x62,0x9b,0xb3,0x17,0x28,0xa0,0xe6,0xb8,0x00,0xc3,0x9b,0x52,0xc6,0x9f,0x87,0x12,0x6f,0xf6,0xee, - 0xa2,0xad,0xc6,0xbe,0x82,0xc0,0x29,0x6a,0xac,0x45,0x42,0x66,0x85,0x92,0xbc,0x03,0x69,0x00,0x8f,0x1b, - 0x6a,0xe7,0x7c,0x45,0x3b,0x28,0xb8,0xa4,0x25,0x0c,0x60,0x64,0xd0,0x10,0x3f,0x8d,0x17,0x6c,0xbb,0x3b, - 0x8a,0xdc,0xe2,0x29,0x96,0x62,0x8a,0x45,0x84,0x93,0x72,0x4e,0xef,0xe6,0x71,0xec,0x1e,0x1d,0xc6,0x8a, - 0x45,0x05,0x12,0x13,0x57,0x03,0xf0,0xc4,0xe7,0xf4,0xa3,0x6a,0xc6,0x33,0x31,0xda,0xc2,0xc3,0xd8,0x3c, - 0xf8,0x0a,0x95,0xb1,0xfb,0x32,0xad,0x51,0x16,0x3f,0x63,0xf9,0xf1,0xca,0xfd,0x9f,0x56,0x03,0xe0,0xa1, - 0x74,0x23,0x78,0x54,0x98,0x3b,0xf4,0x91,0x7e,0xd4,0x32,0x6d,0x2e,0x39,0x3f,0x78,0x80,0xc5,0xa3,0x54, - 0x9d,0x30,0x84,0x50,0xe8,0x31,0x4c,0x42,0xc6,0x2e,0x11,0xa5,0xf6,0xdc,0xab,0x88,0xe7,0x69,0xad,0x92, - 0x07,0xe1,0xa2,0xce,0xb3,0x35,0x4d,0x10,0xc8,0xb6,0xe8,0x41,0x3e,0x6c,0x20,0x03,0x75,0x2a,0x38,0x80, - 0xff,0x63,0x40,0x3f,0x36,0xb9,0xd1,0xaa,0x69,0x8b,0x8c,0x67,0xf3,0x0c,0x6f,0x61,0x90,0x06,0xf6,0x9c, - 0xa4,0x35,0xd2,0xbc,0xf8,0xd0,0xec,0x40,0xbd,0x16,0x4e,0xfa,0x60,0x28,0x07,0x81,0x02,0xc6,0x75,0x05, - 0xa1,0x3f,0xfa,0x13,0x17,0xce,0xa0,0xc4,0xcc,0x3f,0x53,0xa9,0xe6,0x05,0x10,0x8d,0xf9,0xe0,0x44,0x3c, - 0x6c,0x36,0x84,0x27,0xb7,0x54,0x8e,0xbb,0x07,0x9f,0x3f,0xa3,0x3d,0x65,0x90,0xd6,0x75,0x2c,0x88,0x14, - 0xa3,0x5d,0x9e,0x04,0xd2,0xa1,0x1d,0xa0,0x29,0xe2,0x95,0xeb,0x9d,0x94,0xfa,0x52,0x30,0x69,0xb3,0x83, - 0x99,0x4d,0x27,0x40,0x0b,0x1b,0x81,0xea,0xe0,0xf1,0x93,0xa3,0xa7,0xcf,0x9e,0x7f,0xfb,0xe2,0xe5,0x77, - 0xdf,0xbf,0x7a,0xfd,0xe6,0xed,0xbb,0x7f,0xbe,0xff,0x70,0xfc,0xc3,0x8f,0x3f,0xfd,0xfc,0xaf,0x7f,0xa7, - 0xe7,0x13,0x62,0xe7,0x2f,0x2e,0xf3,0x5f,0x3f,0xce,0x17,0x45,0xb9,0xfc,0xad,0xaa,0x9b,0xd5,0xd5,0xf5, - 0xa7,0x9b,0xdf,0x0f,0x0e,0x1f,0x7e,0xf1,0xe5,0x57,0x7f,0xff,0xef,0x7f,0x7c,0xbd,0xf7,0x20,0x09,0x46, - 0x85,0x93,0x50,0x3b,0xc2,0x43,0x79,0xa9,0x42,0x1a,0x7c,0xd5,0x4a,0xc2,0x22,0x26,0xc1,0x4b,0xe9,0xd7, - 0x91,0xe9,0x96,0xe1,0x94,0x7a,0x91,0x94,0xd1,0xb7,0x35,0x20,0x61,0x12,0x3d,0xed,0x19,0x84,0x31,0x04, - 0x6d,0x75,0x72,0x00,0xc3,0x9b,0x51,0x69,0xa1,0x67,0x5d,0xe3,0xf4,0x9a,0x24,0x74,0xa2,0xa8,0xfa,0xbf, - 0x88,0x70,0x4a,0xf7,0x92,0x89,0xc9,0xfd,0xfb,0x17,0x83,0xe6,0x9b,0x6f,0xfe,0xb1,0x4f,0x19,0x7f,0xfb, - 0x47,0xc4,0xe8,0x26,0xcc,0x13,0xf9,0xf8,0x88,0x7a,0x4b,0x45,0xea,0xbd,0x64,0xf8,0xdf,0x5f,0x45,0xd1, - 0x37,0x0f,0xbf,0xfa,0x4a,0x13,0xec,0x18,0x5d,0x31,0x6a,0x92,0xe6,0xd1,0xa3,0x7f,0xac,0x73,0x73,0x1c, - 0xfd,0x2f,0x23,0x90,0xdb,0xeb,0x2a,0x6f,0x69,0xf5,0x0d,0xd5,0x46,0xc8,0xea,0x56,0xcc,0x40,0xe8,0xb4, - 0xaf,0xb5,0x8e,0x84,0x0f,0xcc,0x1e,0x1a,0x89,0xa8,0x05,0xe6,0xff,0xc4,0x0c,0x81,0x00,0x73,0x30,0xd0, - 0x9f,0x98,0x93,0x8a,0xbe,0xc3,0x78,0xf8,0xec,0x2e,0x80,0x99,0xbf,0x7d,0x7d,0x6c,0xa5,0xb7,0xca,0x83, - 0xec,0xdc,0xfb,0x16,0xfb,0x8f,0x3e,0xcc,0x5b,0x05,0x4a,0xaf,0xc0,0x94,0x05,0x34,0x54,0xa4,0x84,0xe0, - 0x82,0x80,0x3c,0x75,0x79,0x75,0x36,0x59,0x55,0x90,0x7a,0xbb,0x5d,0xc8,0xb8,0x3b,0xa9,0xf5,0x19,0x3f, - 0xda,0xa1,0x43,0x5e,0x81,0xb9,0x8c,0xb7,0x4e,0xa7,0xa4,0xf3,0xd1,0x70,0xc1,0x7c,0x16,0x86,0xf0,0x3e, - 0xbb,0x78,0xf6,0x69,0x19,0x06,0xe1,0xff,0xac,0x47,0xbf,0xfc,0x52,0xff,0x2d,0x0a,0x69,0x4a,0x88,0x7c, - 0x4b,0xc2,0x93,0xff,0x19,0x9d,0xfe,0x2d,0x0a,0x9c,0x2a,0xa8,0x21,0xfe,0x70,0x7b,0xae,0x4e,0xbe,0x38, - 0x15,0xf9,0x04,0x1a,0x5f,0x94,0x57,0x6d,0xeb,0x08,0xde,0x5d,0xbc,0x28,0xb4,0x16,0x04,0x6a,0x98,0xb1, - 0x61,0x51,0x5e,0x87,0xd1,0xfe,0x3f,0xfe,0xfe,0x65,0xf6,0x15,0x51,0xd3,0x71,0x77,0xd1,0x20,0x73,0x6a, - 0x8f,0xa3,0xa5,0x3f,0xdd,0x6e,0x87,0x3e,0xf8,0x0b,0xe4,0xb1,0xee,0xd4,0x25,0x81,0xcf,0x1c,0xd2,0xe2, - 0x93,0x53,0x9f,0x00,0xf5,0xf5,0x92,0x54,0x41,0xbf,0x22,0xbb,0x55,0x81,0x2c,0xd0,0xad,0xd5,0xb7,0xb1, - 0xcc,0x43,0xf4,0x6d,0xac,0x75,0x6f,0x17,0x16,0x4a,0x68,0xff,0x10,0x12,0x06,0xd7,0x12,0x97,0x4f,0xb6, - 0x26,0xce,0x7c,0x45,0x44,0x24,0x88,0xcc,0x4e,0x92,0xe6,0xf7,0x5a,0x15,0x69,0x8a,0x23,0x69,0x53,0x99, - 0x96,0xb8,0xf5,0x6b,0xf0,0x8c,0x08,0x2c,0x99,0xdb,0x10,0x03,0x4a,0xaf,0xc4,0x22,0xfe,0x87,0xda,0x2d, - 0xd8,0x1d,0x7e,0x86,0x9f,0x65,0x54,0xf0,0x72,0xa6,0xb9,0xbf,0x6c,0x1a,0x6e,0x29,0xb0,0x0e,0xbf,0x16, - 0x09,0x31,0x4c,0xf3,0xac,0x4d,0x20,0xbd,0x1e,0x42,0x40,0x4c,0xbf,0x77,0xf0,0x08,0xb4,0x34,0x40,0x67, - 0xd9,0xf0,0x3c,0xd5,0x62,0xb9,0xdd,0x89,0x96,0xc2,0x30,0x83,0x45,0x0f,0xc9,0x3c,0xb4,0xd9,0x4a,0x0b, - 0x68,0x94,0x95,0xf1,0x3a,0x69,0x2f,0x2b,0xfe,0x44,0x08,0x9c,0x40,0xc6,0xc8,0xd2,0x60,0x9b,0x0b,0x45, - 0x4d,0x47,0x65,0xe5,0xd7,0x62,0x44,0xf9,0x36,0x65,0x28,0xba,0x08,0x5d,0xa9,0x15,0xfa,0x6b,0x91,0xe6, - 0x69,0x3b,0x1d,0x6f,0xd1,0x1f,0x2a,0x22,0x54,0x9f,0x7a,0x01,0xa4,0x35,0x1a,0xf2,0xf5,0x0c,0xb4,0xae, - 0x46,0x68,0x6f,0x5b,0x6e,0x4e,0x37,0x66,0x43,0x53,0x27,0xb5,0xc6,0x6f,0xbd,0xae,0xcd,0x63,0x04,0x0e, - 0xb1,0x2d,0x6e,0x70,0x70,0xcf,0x73,0xdc,0x98,0xa9,0x91,0x07,0x7a,0xef,0x9d,0x1a,0x61,0x5d,0xa9,0xf8, - 0x46,0xf5,0xd4,0x94,0xd2,0x33,0x9d,0x30,0x52,0x21,0xec,0xf6,0x0c,0xaf,0x0b,0x38,0x77,0x1a,0x6e,0xdb, - 0x52,0x2b,0x45,0x79,0xef,0x9f,0x6b,0x9b,0xd6,0xd7,0xa9,0xe9,0x99,0x8f,0x6a,0xfe,0x92,0xe6,0xe2,0x33, - 0xdc,0xa8,0x99,0x10,0xbb,0x54,0x45,0x8b,0xc2,0x81,0x8a,0x13,0x08,0x63,0xb3,0xcd,0x48,0xfd,0x09,0x79, - 0x81,0xa5,0x63,0xc2,0xdd,0x6c,0xbd,0x86,0x35,0xc7,0xd9,0xd1,0xe3,0x37,0x47,0xcf,0x5e,0x9d,0x9d,0xfd, - 0x07,0xd2,0x07,0x53,0xdb,0x83,0xff,0x09,0x4f,0xd2,0xfd,0xdf,0x4f,0xf1,0xe7,0x97,0xe9,0x2f,0x7b,0xbf, - 0xec,0xff,0x32,0x3c,0xfd,0x5b,0x1c,0x8d,0x7f,0x79,0xf0,0xcb,0x03,0x43,0xfa,0x65,0xff,0x91,0x78,0xc3, - 0x21,0xc6,0xb1,0x67,0x48,0xf4,0xcb,0x83,0x3d,0x21,0x99,0xf7,0x40,0x7f,0x36,0x3e,0x41,0xfc,0x60,0x4f, - 0x48,0xdd,0x3f,0x98,0x9c,0xb6,0xd5,0x4e,0x8b,0x52,0xcb,0x36,0x45,0x8f,0xf1,0x66,0xb2,0x75,0x64,0x04, - 0x62,0xec,0x1b,0xec,0x85,0xfe,0xe7,0xc4,0xe8,0x12,0x1f,0xe3,0xa7,0xc4,0xb0,0x6e,0x6a,0x51,0x59,0x6e, - 0xd2,0xa1,0x1e,0xf1,0xcc,0xa9,0xff,0x12,0x3a,0x84,0x20,0xd3,0xca,0x12,0x77,0x3d,0x05,0xab,0x25,0x8a, - 0x20,0xd4,0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb3,0x58,0xd5,0xcd,0xce,0x79,0xb6,0x93, - 0x5a,0x9b,0xa9,0x61,0xa0,0xcd,0x50,0x46,0xdc,0x6b,0x2d,0x18,0x4c,0x7a,0x95,0x59,0x98,0x2b,0x9a,0x20, - 0xf9,0xa0,0x48,0xf0,0xc1,0xa8,0x9d,0x0d,0x29,0x5a,0x5a,0x03,0x2d,0x85,0xe6,0x91,0xab,0xca,0x79,0x3f, - 0xda,0x34,0x88,0x11,0x1c,0x82,0xfe,0xa2,0x7d,0x3a,0x76,0x71,0x79,0x47,0x9d,0xa2,0xad,0x2a,0xb8,0x1a, - 0x2d,0xb2,0x75,0x29,0x38,0xb4,0xea,0x72,0x55,0x4d,0x32,0xff,0x2b,0xdf,0xd8,0xe0,0xb6,0xc1,0x81,0xc1, - 0xf6,0x44,0x55,0x0b,0x15,0x65,0x09,0x0e,0x55,0x39,0x54,0x18,0x7e,0xee,0x3c,0xa8,0xfe,0xc2,0xde,0xd8, - 0xe9,0x41,0x51,0xc6,0xa0,0x8c,0xc5,0x8e,0x0d,0x6c,0xca,0xa0,0xf7,0xec,0xb6,0x70,0xb7,0x0f,0x44,0x8f, - 0x32,0xf3,0x7f,0xc9,0x0d,0xa2,0x81,0x63,0xc3,0x8f,0xab,0xac,0xdf,0xad,0xa1,0x1f,0x18,0xb3,0x5e,0x3b, - 0xd8,0xf5,0x1a,0xa3,0x63,0x8b,0x58,0xcf,0x18,0xb2,0x5b,0x52,0x64,0x5e,0x46,0x12,0xb6,0x69,0xef,0x4a, - 0xc3,0x72,0xb5,0x2b,0xf1,0xcd,0xda,0xb7,0xac,0x0b,0xd6,0xeb,0x6d,0x3b,0x5e,0x4a,0xab,0x6f,0x16,0xe7, - 0xe5,0xbc,0x9d,0x76,0x5e,0x96,0xf3,0x2c,0x2d,0x7a,0xed,0xda,0xff,0x77,0x2c,0xe1,0x45,0xc2,0xc6,0xc6, - 0xb7,0x8b,0xa2,0xd7,0x10,0xde,0x10,0xd1,0x6c,0x08,0xc1,0x36,0x79,0xa1,0x65,0xa0,0x1c,0x71,0xfc,0x4d, - 0x72,0x30,0x18,0xbc,0x26,0x12,0x7f,0x38,0x9b,0x97,0xb0,0x04,0x63,0x65,0x3a,0x71,0xac,0xf5,0xf3,0xbc, - 0x60,0xfa,0xd7,0xab,0xb5,0xee,0x74,0x9d,0x7a,0x3e,0x0e,0x82,0x1e,0xcf,0x96,0x71,0x57,0xe4,0x27,0x52, - 0xf0,0x87,0x51,0x6c,0xbb,0xe0,0x6a,0x9d,0xf4,0xf6,0xd5,0x49,0xb1,0x89,0xa3,0x49,0xdf,0x50,0xc7,0xc6, - 0x19,0x11,0xa6,0xf6,0xab,0xb9,0xb6,0x90,0xb4,0x16,0x99,0xda,0x34,0x5e,0xb8,0xfc,0x50,0xb4,0x07,0x55, - 0x62,0x65,0x58,0x0a,0x62,0xce,0xe4,0x60,0x94,0x3f,0xaa,0x8c,0x29,0x59,0x2e,0x86,0x99,0x27,0xf9,0xe9, - 0x29,0xe1,0x4a,0xc7,0x2f,0xf4,0x69,0xdf,0x4f,0xb2,0xb6,0x20,0xeb,0x74,0xd3,0x67,0xdc,0x41,0xc5,0x4e, - 0x37,0xae,0x8f,0x2b,0xeb,0x8e,0x60,0xfc,0x08,0x8c,0x4a,0x35,0xf3,0x44,0x5c,0x2c,0x0e,0xfe,0x66,0xff, - 0xd0,0x4a,0x89,0xb9,0xcb,0x74,0xe2,0x14,0xea,0x30,0xf2,0x6a,0x9b,0xb5,0xce,0xac,0x73,0xb3,0xea,0xd8, - 0xe4,0xb6,0xcc,0xd4,0xcd,0x65,0xcf,0x7c,0x8c,0xba,0x68,0xc3,0xb3,0x68,0x3b,0x29,0x4e,0x61,0xd8,0x49, - 0x3f,0xb0,0x10,0x8e,0xfc,0x86,0x97,0x5b,0xc6,0xa8,0x5a,0x1a,0x52,0xf5,0x18,0x0a,0x6b,0x0a,0x63,0x5c, - 0x7d,0x73,0x38,0x76,0xc6,0xad,0xb6,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xcd,0xb3,0x95,0xf3,0x16,0xc3, - 0x33,0xa9,0xc8,0x7a,0x5e,0xa8,0xc2,0x75,0xe4,0x52,0x3a,0x42,0xdc,0xf8,0x7a,0x7d,0x30,0x72,0x4b,0x6f, - 0xca,0xee,0x37,0xb4,0xe2,0xce,0x32,0xb7,0x88,0x46,0xc5,0xfe,0xfe,0x28,0xaa,0x78,0x50,0x27,0xc5,0x5e, - 0x63,0xcd,0x6e,0x2b,0x57,0xe9,0x55,0x07,0x90,0xe0,0xbd,0xd1,0x44,0xf0,0xed,0x48,0x30,0x1b,0x56,0x32, - 0xea,0xbe,0x58,0xb4,0x44,0x13,0xb0,0x9a,0x2e,0x08,0xb0,0x8a,0x47,0xce,0x59,0x84,0x00,0x0b,0x15,0x0c, - 0x06,0x57,0xd0,0x3e,0x42,0x18,0x69,0xa1,0xcb,0x55,0x73,0x61,0xce,0x61,0x97,0x74,0xe3,0x00,0x06,0xdb, - 0x30,0x32,0x58,0x4a,0x1f,0x89,0x7c,0xce,0x55,0xf4,0x23,0x40,0xb3,0x4b,0x07,0xe1,0x6e,0x65,0x0a,0x11, - 0xd7,0xb2,0x5b,0x0d,0x06,0x76,0x83,0x51,0x05,0xfa,0x99,0x4a,0x43,0x87,0xc9,0xba,0x87,0x84,0xa7,0xc6, - 0x13,0xf7,0x13,0xdb,0xd2,0x4e,0x92,0xba,0xcb,0xc1,0x20,0x75,0x00,0xa9,0xd7,0x04,0xf2,0x2b,0x79,0x04, - 0x87,0x94,0x5d,0x65,0xd5,0x8d,0x77,0x3e,0x7b,0x04,0x26,0x8f,0x03,0xc3,0xde,0x48,0x65,0xeb,0xb5,0xa9, - 0x6c,0xf7,0x70,0x24,0x02,0x0d,0x0d,0x9e,0x1f,0xb3,0x1b,0x60,0x15,0xe2,0x96,0xfc,0x04,0x67,0x57,0x5e, - 0xbb,0xb6,0x27,0xb6,0xed,0xba,0xdb,0x76,0xab,0x65,0x78,0xe5,0xe8,0xc6,0x9d,0xf1,0x97,0x69,0xdd,0x03, - 0xeb,0xf3,0x2e,0x06,0xd9,0x5a,0x43,0xea,0xba,0xa9,0x2f,0xb2,0xee,0x74,0xba,0x67,0xc4,0x0b,0xdb,0x9a, - 0xce,0xdc,0xae,0xa3,0xf1,0x6d,0x9b,0x8d,0x37,0x6c,0x32,0xcd,0xe4,0x98,0xde,0x10,0x38,0xfc,0xdc,0x9e, - 0xf0,0x37,0xdb,0xb5,0xab,0x0b,0xa2,0x9e,0x20,0xf2,0x05,0x54,0x07,0x76,0x5e,0xbe,0xf8,0x3b,0x56,0x63, - 0xbd,0xfe,0xfa,0x2b,0xfc,0xba,0xcf,0x8f,0x8d,0xde,0x2e,0xba,0xd5,0x13,0x2a,0xa7,0xaf,0x71,0x3b,0xe2, - 0x6c,0xaa,0x7f,0xbe,0xca,0xe2,0x42,0x65,0x74,0xa0,0x65,0x55,0x7a,0x3e,0xcf,0xe2,0xdd,0xdd,0x4a,0x41, - 0xa2,0x21,0x2f,0x07,0xda,0x12,0x62,0xa5,0x33,0x0f,0x36,0x1e,0x92,0xf9,0xe8,0x9d,0x47,0x3d,0x0a,0xe7, - 0xc1,0xe0,0x41,0xc1,0x7e,0x11,0xac,0x13,0x7d,0xa0,0x29,0x74,0xdf,0x50,0xd0,0x55,0x75,0xd4,0xb1,0x70, - 0xca,0x68,0x2d,0xf8,0xf0,0x56,0xed,0x1f,0x77,0x72,0xb9,0x6f,0x3f,0x69,0x53,0x01,0x8d,0x02,0x26,0x46, - 0xb8,0xf3,0x56,0xcc,0x7a,0x35,0x2a,0x80,0x05,0xe5,0xb0,0x49,0x2f,0x94,0x65,0x89,0x27,0x97,0xf9,0x7c, - 0x5a,0x65,0x05,0x98,0x2f,0x58,0x7f,0x10,0x24,0xcf,0x17,0x8a,0x95,0x9b,0xfc,0x8e,0x8c,0xb4,0xbe,0x29, - 0x26,0xcf,0x53,0x98,0xc9,0xdf,0x38,0x75,0xea,0xb0,0x00,0xc3,0x8d,0xaa,0x45,0x92,0xd7,0xe4,0x13,0x60, - 0x72,0xfd,0x48,0xa9,0x04,0xbc,0x94,0x40,0x7f,0xb9,0xc4,0x11,0xb1,0xb6,0xd4,0x1f,0x2e,0xa2,0x9f,0x29, - 0x7d,0x56,0x1c,0x49,0x43,0x94,0x6e,0x9f,0x39,0x5d,0x77,0x9c,0xd3,0xed,0x20,0xe8,0xf9,0xc3,0x84,0xd6, - 0xee,0xe5,0x94,0xd3,0xf5,0xb3,0xd4,0x3f,0xa7,0xf1,0xb2,0xe7,0x65,0x23,0xea,0x58,0x3d,0x30,0x7a,0xa9, - 0xec,0x4b,0xf2,0xd8,0xcb,0x81,0x61,0x51,0x04,0xe5,0x6d,0xe1,0x17,0x2e,0xfc,0xc2,0x45,0xbb,0x30,0xe1, - 0x1b,0x37,0xe3,0x8f,0xbb,0x3b,0xc6,0x22,0xe9,0x36,0xda,0xd5,0x07,0x6d,0xc1,0x27,0x2c,0xce,0xd7,0x84, - 0xd6,0x8a,0x7e,0x3c,0x7f,0x11,0xaf,0xd6,0x0f,0x16,0xe9,0x89,0x4b,0xd0,0x6e,0xd8,0x72,0xe0,0x21,0xe6, - 0x5e,0x2f,0xb2,0xdd,0x59,0x10,0xca,0x9d,0x9d,0x95,0xe7,0x67,0x67,0x01,0x1b,0xab,0xc8,0xb3,0xff,0x51, - 0x5d,0x8d,0xd1,0x3b,0xc9,0x88,0x53,0x22,0xdb,0x2f,0xcb,0xd5,0x7c,0x4a,0xb3,0x4d,0x88,0x83,0x66,0x6b, - 0xf7,0xfb,0x82,0x8d,0x04,0xbb,0xd8,0x70,0xbd,0x06,0xb1,0x45,0x39,0x7a,0xf3,0xe4,0xf5,0x33,0x78,0xb5, - 0xd4,0xf9,0x39,0x5b,0xdb,0xd2,0x87,0xec,0xa4,0x40,0x54,0x2c,0xe6,0x8d,0x07,0x5d,0xb3,0xee,0x12,0x4b, - 0xc0,0xf3,0x7a,0xb5,0x38,0x2a,0x57,0x45,0xb3,0xb7,0x47,0x07,0x97,0x1b,0xe3,0x3d,0x5f,0x9d,0x2e,0x88, - 0x18,0xdf,0xfe,0xab,0x20,0xf4,0xab,0x9b,0xba,0xc8,0x1a,0xcf,0x3d,0xf0,0x69,0x56,0x4f,0xaa,0x1c,0x96, - 0xf3,0x3c,0x3b,0x8c,0xee,0x53,0x42,0xf7,0x87,0x44,0x2e,0xa6,0x43,0x7f,0x73,0x1a,0x09,0x71,0x4a,0x18, - 0x1b,0x95,0x10,0x2a,0xe5,0xc7,0x9a,0x1e,0xe7,0xc9,0x6e,0x4e,0x47,0x02,0x4e,0xc2,0xcf,0x60,0x03,0x1f, - 0x0b,0x6c,0x6d,0x7c,0x45,0x55,0x76,0x4d,0xab,0x9b,0xa4,0x1e,0xd7,0x86,0xe8,0x74,0xea,0x8f,0x7f,0x15, - 0xb4,0xd1,0x2a,0x2a,0x4f,0x73,0x53,0x52,0x4b,0x4b,0x58,0x6e,0x44,0x6a,0x4e,0xaf,0x73,0xbc,0xba,0xa4, - 0xee,0x89,0x33,0x18,0x78,0x14,0x7f,0x0b,0xc2,0xf4,0xfe,0x17,0xb7,0xa4,0xa6,0xeb,0x8e,0x44,0x4b,0xd0, - 0xc0,0xb0,0x13,0x13,0x2f,0x6b,0xed,0x9e,0x3e,0xd7,0x22,0x64,0xe3,0x6c,0x84,0x01,0xa1,0x39,0x0b,0x7b, - 0x6a,0x7f,0x94,0x8d,0x21,0x6f,0xda,0xc3,0x84,0x02,0xa7,0x5a,0xaf,0x9b,0x5d,0x36,0x41,0xdd,0xc5,0x73, - 0x38,0x19,0x4f,0x1c,0x1d,0x16,0x53,0x77,0xec,0x9c,0x37,0xb0,0xfa,0x2f,0xca,0x06,0xf4,0x2f,0x5b,0xde, - 0x7b,0xe0,0xf0,0xd6,0x33,0x0f,0xe8,0x82,0x20,0xad,0x5d,0xe8,0x8e,0x1b,0x7b,0xf6,0x32,0x8d,0xbe,0x48, - 0x3f,0x59,0x52,0x52,0xb1,0x04,0x4f,0x93,0x8a,0x8d,0x3a,0xa4,0xea,0x54,0x01,0x38,0x69,0xd8,0xff,0x14, - 0xfb,0x88,0x9f,0xba,0x2e,0xa3,0xae,0x6a,0x31,0x90,0x2d,0xb4,0xe8,0xc8,0xec,0x16,0xe7,0x99,0x24,0x80, - 0xbe,0x5e,0x57,0xb0,0xd4,0xd2,0x70,0x3d,0x2e,0xe2,0x6a,0x1c,0xde,0x23,0x04,0xc3,0x67,0x08,0x8f,0x82, - 0x90,0x11,0xe6,0xda,0x8c,0x15,0x84,0x9d,0xb1,0xbe,0x2d,0x3c,0x7c,0xfd,0xcc,0xee,0xf3,0x3b,0x86,0xec, - 0x8f,0xc6,0x33,0x75,0x70,0x1b,0x79,0xe4,0xfa,0xe4,0xef,0xb5,0xf5,0x5a,0x48,0x63,0xd8,0xa0,0x19,0x6b, - 0xdf,0xe6,0x54,0xd0,0x9c,0xdf,0x31,0x7f,0x05,0xde,0xd9,0xce,0xf8,0xe6,0x19,0x16,0xee,0xb0,0x51,0xdd, - 0xd6,0xd4,0x34,0x09,0x34,0x4e,0xa3,0xfa,0x51,0x6a,0xa0,0xb0,0x06,0x76,0x03,0x61,0x99,0xa4,0x27,0xf5, - 0xe9,0x29,0x00,0x14,0xb4,0xc2,0x8c,0x49,0xa1,0x71,0x19,0x56,0xec,0xdf,0x08,0x5d,0xca,0xbb,0x10,0x1b, - 0x3f,0xc6,0xb2,0x17,0xf4,0xd0,0x43,0x53,0xfe,0xda,0x11,0xd1,0x15,0xe3,0xce,0x9e,0xab,0x92,0x5e,0x3f, - 0x39,0xe3,0x3a,0xcc,0xce,0x72,0xd4,0x83,0xbe,0x03,0x79,0x9c,0x79,0x85,0x32,0x47,0xa2,0xeb,0x5e,0xe5, - 0x9b,0xb8,0x19,0x67,0x7e,0x7b,0xc6,0x95,0x3c,0xfc,0x5c,0x93,0x4c,0xc3,0xe0,0x0f,0x1a,0xfe,0x5c,0xb3, - 0x5e,0x41,0x62,0xfb,0xe2,0x26,0xf6,0x86,0xfd,0xb4,0x2b,0x87,0x1b,0x67,0x46,0x85,0x4f,0xdb,0xa9,0x8b, - 0x26,0xc6,0x4d,0x0c,0x3d,0xbf,0xf7,0xfd,0x4b,0x47,0xee,0x88,0xc0,0xa7,0xcd,0xf5,0x68,0x49,0x81,0xa7, - 0x0b,0xba,0x82,0x5b,0x15,0xc6,0x6c,0xab,0x78,0x65,0x66,0xde,0x93,0x02,0xd8,0xea,0x26,0x15,0xa1,0x17, - 0x82,0xaf,0x6a,0x34,0x87,0x07,0x1f,0x1d,0x50,0xec,0xf6,0x88,0x3f,0x68,0xb4,0xcf,0x9a,0x0f,0xd8,0x8f, - 0x38,0x94,0xa1,0xf6,0x2e,0xea,0x8a,0x5e,0x0c,0x44,0xd3,0x7e,0x5c,0xd6,0x62,0x09,0x24,0xeb,0xcb,0x00, - 0x77,0xbb,0x19,0x6d,0xed,0x8f,0x42,0x9c,0xd2,0xe9,0x88,0xb5,0xe8,0x0f,0x5c,0x4d,0x57,0x40,0x11,0x4a, - 0x5c,0x07,0xec,0x82,0xf4,0xe4,0xba,0x20,0xb8,0x3b,0x4d,0x6e,0x91,0x25,0x6a,0x2e,0x67,0x69,0x54,0x9a, - 0x1a,0xf9,0xdc,0x00,0x8a,0x28,0x22,0x7c,0x5b,0x9f,0x2a,0xfe,0xb0,0xa6,0x0f,0x01,0xb6,0xe3,0x3c,0x96, - 0xef,0xf3,0xcd,0x48,0xf7,0x37,0x49,0x37,0x40,0x99,0x77,0x0c,0x29,0x2f,0x30,0xf7,0xfe,0x98,0x6c,0xe2, - 0xe7,0x06,0x26,0x33,0xcd,0x04,0x83,0xcf,0x99,0x13,0xd7,0xc6,0x9c,0xf9,0x2d,0x8c,0x6b,0x62,0x3c,0x6f, - 0xfa,0x87,0x90,0xca,0x10,0xf4,0x31,0x58,0x9c,0xa4,0xc4,0xb3,0xd1,0x1f,0x1a,0x43,0x1d,0xd1,0x7a,0xcb, - 0xf7,0x29,0xa1,0xf8,0x28,0x96,0xe7,0x7a,0xb3,0xe9,0x0e,0xc3,0x0c,0x82,0x0e,0xc8,0xbc,0xa2,0xfe,0x12, - 0xf5,0xaa,0x17,0xc7,0xb4,0x52,0x79,0xad,0xc8,0x4c,0x8f,0x7a,0x16,0x3f,0x07,0x59,0xc0,0xd1,0x35,0x60, - 0xe0,0x1f,0xe7,0x6a,0xb5,0x84,0x75,0x21,0x4d,0x61,0x04,0xa5,0xbf,0x8e,0xbf,0xd1,0xe8,0xf0,0x12,0xdc, - 0x44,0xce,0x36,0x52,0x80,0xc2,0x1c,0xc6,0x81,0xaa,0x19,0x2e,0xf2,0x4f,0x44,0xca,0xb8,0xf1,0xd1,0xd9, - 0x57,0x27,0x26,0xd9,0x4c,0x51,0xfa,0xa8,0x1e,0xa5,0xe0,0x33,0xf9,0x53,0x93,0x4b,0xe3,0xa6,0x4a,0xb8, - 0x99,0x09,0x9d,0x44,0x34,0xeb,0xa8,0x65,0x22,0x11,0x09,0xe8,0x21,0x72,0xef,0x4d,0x04,0x44,0x35,0x21, - 0x92,0x87,0xd3,0xf5,0x0e,0x99,0xbb,0x8d,0xf1,0xdc,0xed,0xad,0x3e,0x6f,0x1b,0x3b,0x17,0x40,0xb6,0x18, - 0x08,0x0d,0x05,0x03,0x30,0x52,0x1b,0xf0,0xce,0x42,0xe9,0x5c,0x83,0x41,0x33,0x25,0x4a,0xaf,0x44,0x29, - 0x25,0xd2,0xe4,0xb8,0x08,0x4b,0x27,0x9d,0xa0,0x52,0x29,0x41,0x1f,0x8d,0x25,0xce,0x59,0x2c,0x81,0x92, - 0xf8,0x9b,0xfa,0xc2,0x95,0x37,0xdd,0xad,0xdf,0x9c,0x64,0xa7,0xaa,0x4c,0x76,0x69,0xd5,0x14,0xf3,0xb5, - 0x90,0xc6,0xa0,0xd9,0xf7,0xe1,0x13,0x91,0xc7,0xa9,0x7c,0xc8,0x27,0x20,0xe8,0x13,0x3a,0x1f,0xd1,0x50, - 0xa0,0xdd,0x2b,0x83,0x68,0x9c,0x12,0xf3,0x16,0xbf,0xd7,0x42,0x32,0x53,0x14,0x86,0xff,0xbb,0xac,0xd2, - 0x4e,0xe9,0xe7,0x48,0xfb,0xbf,0xa6,0x09,0x13,0xd2,0x56,0x22,0x99,0x46,0xb7,0x69,0x9f,0xe9,0xdf,0x0c, - 0x1e,0x50,0xb6,0x05,0xb3,0x29,0x1a,0xe3,0xd3,0x69,0xcf,0x01,0x10,0xb1,0xf7,0x34,0xc2,0x90,0x9d,0x26, - 0x51,0x13,0x9c,0xc8,0xb3,0x27,0x5b,0x04,0x0c,0x56,0xd4,0x39,0x3c,0xe3,0x1c,0x4a,0x1d,0x7b,0xcf,0x7d, - 0x22,0x5a,0xf8,0x0c,0x3f,0x77,0xc2,0xfd,0xe4,0x75,0xd8,0xc8,0x60,0xc7,0x95,0xa5,0x76,0x2a,0x02,0x57, - 0xa0,0xa4,0x2c,0xd2,0xfc,0x7a,0x97,0x86,0x1e,0x75,0x13,0xc0,0x87,0x7c,0x08,0x53,0x9a,0xf8,0x6e,0x46, - 0xed,0xcc,0x26,0xec,0xea,0xbd,0xf6,0xec,0xa3,0x30,0x7a,0xc7,0x1d,0x6a,0x2d,0x3f,0x3b,0x74,0xdb,0xe2, - 0xe1,0x2f,0xd7,0x7b,0xd1,0x03,0x0f,0x8f,0x37,0x27,0x87,0x34,0xb6,0xc0,0x55,0xf8,0xde,0x1d,0xe8,0xdd, - 0x63,0xc3,0x00,0xdc,0x6b,0x91,0x6e,0xbe,0x36,0x5e,0xaf,0x26,0xcc,0x47,0xe5,0x08,0xcb,0xe2,0x51,0x65, - 0x38,0xff,0xd7,0x2c,0x0c,0x33,0x1f,0x38,0x51,0x8c,0x95,0x24,0xd8,0xa6,0x7f,0xf2,0x56,0xbc,0x71,0x08, - 0x23,0xa1,0xf5,0x4d,0xaa,0xe1,0xbd,0x65,0x4a,0xcc,0x54,0x33,0x72,0x06,0x44,0x76,0x29,0xd9,0x87,0xe0, - 0x28,0x5d,0x52,0x85,0xd9,0x94,0x71,0x81,0xfd,0xba,0x24,0x84,0x58,0x3e,0xca,0x4d,0xbf,0x4a,0x84,0x1e, - 0xa9,0x6e,0x78,0x78,0x30,0x81,0xc4,0x8e,0x90,0xb5,0xaa,0x94,0x34,0xae,0x3b,0xe8,0x24,0x1e,0x4f,0xa8, - 0x57,0x95,0x0a,0x5a,0x6d,0xec,0x5c,0x96,0xe5,0x47,0xf8,0xc3,0x3f,0xd1,0x5d,0x76,0x83,0x78,0xe2,0x0d, - 0xe2,0x59,0x21,0x5d,0x7b,0x21,0x3a,0x77,0x6e,0x59,0xcf,0x61,0x27,0xcb,0x0f,0x5c,0x22,0x15,0xda,0xf6, - 0x7f,0x34,0x52,0xdf,0x40,0x9b,0x5a,0xfb,0xdf,0x51,0x1f,0x7e,0xdc,0xea,0xc2,0x8f,0x5e,0x17,0x76,0x9f, - 0x42,0x9e,0xf5,0xb2,0xa0,0xfd,0xd7,0xe3,0x63,0x04,0x2f,0x76,0xda,0xd1,0x5a,0x43,0x93,0x8d,0xf4,0xbb, - 0x34,0xd1,0x12,0x2e,0xff,0x40,0xe4,0xcc,0xb2,0x4a,0xb4,0xd8,0x29,0x4b,0xa6,0x95,0x71,0x3b,0x8f,0x46, - 0x53,0x23,0x09,0x4e,0x9c,0x30,0xb1,0xa1,0xe7,0xc6,0x49,0x81,0x1a,0x96,0xe4,0x35,0xa7,0xa1,0x57,0xe5, - 0x0b,0xef,0xd4,0xc3,0xa2,0x51,0x35,0x6c,0x4b,0xd1,0x56,0x24,0x69,0x67,0x44,0x2b,0xe0,0xb4,0xf3,0x22, - 0xd0,0x12,0x14,0x74,0x04,0x1c,0xe7,0x13,0xac,0x06,0x9f,0x6a,0x05,0xfb,0xc4,0x43,0x55,0xb3,0x04,0x5f, - 0x81,0x3e,0x1f,0xa8,0xcb,0x6a,0xbc,0xaa,0xc2,0x28,0x9e,0x57,0x30,0xd0,0xd9,0xcd,0xfa,0xf5,0x33,0x5a, - 0x93,0x16,0x79,0x72,0x94,0x3e,0xe5,0x5a,0x01,0xe5,0x9a,0x1b,0xc6,0xef,0x48,0xb3,0x05,0xc0,0x77,0x29, - 0x4b,0x8a,0x94,0x77,0x48,0x05,0x43,0x62,0x41,0x21,0x7d,0x04,0x23,0x6c,0x39,0xe4,0xe7,0x55,0xf9,0x3b, - 0xdc,0xb1,0xc5,0xa6,0xaa,0xd1,0xb4,0xba,0x39,0x8f,0x1b,0x9f,0x1d,0xcb,0x19,0xca,0x0b,0x58,0x10,0xd2, - 0xe1,0x6c,0x0c,0x3b,0x0b,0x78,0x1f,0xd0,0x3b,0x5c,0x45,0x52,0x4d,0xeb,0x34,0x2d,0x5a,0x87,0x3a,0xc7, - 0x24,0x97,0x17,0x69,0xa7,0x4a,0xc2,0xb2,0x43,0x9f,0x47,0x5b,0xdf,0x94,0xf4,0xd5,0x29,0x47,0x56,0x88, - 0x68,0xd6,0xcf,0xab,0x88,0xfe,0x0f,0x27,0x74,0x14,0x54,0xfe,0x82,0xfe,0x16,0xb6,0x63,0x68,0x69,0x95, - 0x9e,0x13,0x6e,0x2b,0x10,0x06,0xb3,0x82,0x8f,0xeb,0xdd,0x2d,0x1a,0xc6,0x8a,0xae,0x3d,0xc5,0x9b,0x93, - 0xed,0x8d,0x1c,0x3e,0x28,0x34,0xe8,0xf5,0x2a,0x22,0x20,0x26,0xf1,0x6b,0xc8,0xac,0x4c,0x9c,0x9b,0x46, - 0x38,0x03,0xd7,0xe3,0xef,0x43,0x2d,0x4c,0xb0,0xf6,0xff,0xaa,0x56,0x74,0xe0,0x73,0x63,0xa9,0x9c,0xee, - 0x34,0xf5,0xa0,0x06,0x26,0x4c,0x11,0x11,0x2d,0x70,0x56,0x01,0x39,0x67,0x21,0xdb,0xc8,0x65,0x74,0xe4, - 0x8f,0xe9,0x6f,0x8d,0xba,0x71,0x1e,0x4a,0xe9,0xe4,0x37,0x2c,0x8b,0xaa,0x88,0x5f,0x67,0xe3,0xcd,0x5a, - 0xcd,0x87,0x44,0x8d,0x67,0x0a,0x01,0x5e,0x18,0x85,0xd0,0x13,0x7c,0xe2,0x88,0x3e,0xe2,0x27,0x98,0xa9, - 0x47,0x51,0x5c,0xd3,0x29,0x32,0xa1,0x5a,0x26,0xdc,0x55,0xa2,0xf6,0x51,0xd7,0x24,0x8a,0x5c,0x7f,0x0a, - 0x5e,0x8f,0x14,0xe4,0x69,0x1e,0x86,0xba,0x37,0x91,0xb4,0x22,0x1d,0x34,0x2d,0x78,0x0b,0xf3,0x5d,0xa8, - 0x87,0xe8,0xe9,0xb5,0xa2,0xdb,0xb2,0x5f,0x88,0xaa,0x56,0x32,0x1a,0xa2,0x1d,0x36,0x55,0x5b,0x80,0x04, - 0x81,0x18,0xe1,0x5d,0xc8,0xff,0x86,0xc0,0x80,0x30,0xe1,0x70,0x6f,0x44,0x25,0x45,0xfa,0x94,0x83,0x3d, - 0x21,0xad,0xc3,0x88,0xa7,0xa7,0xa6,0xd9,0x40,0x8f,0xe3,0x46,0xc6,0x05,0x29,0x03,0x3d,0xb1,0xa5,0xcc, - 0x94,0x66,0xaf,0xa6,0x11,0x22,0x5d,0x76,0x7f,0x4a,0xb3,0x80,0x0f,0x26,0x8a,0x3e,0x51,0xb5,0x2e,0x86, - 0x4d,0xcc,0x02,0xb0,0xda,0x8d,0xea,0x5b,0xe6,0x02,0xf5,0xc8,0xb0,0x63,0x00,0x44,0x42,0x2d,0x80,0x9a, - 0x71,0xec,0x39,0xc2,0xa3,0x00,0xec,0xcb,0xf5,0x5a,0xf3,0xb5,0xfc,0x4a,0x67,0x90,0x2e,0x9c,0x77,0x0b, - 0xe7,0xed,0xc2,0x39,0x0a,0x6f,0xb6,0x0f,0xac,0x9f,0x3d,0xa9,0xab,0x58,0xe9,0xb3,0x80,0x96,0x30,0x12, - 0x36,0xb6,0x36,0xb1,0x37,0x22,0x4b,0xf7,0xd9,0xbf,0x7d,0x66,0x2d,0x04,0x53,0x9e,0xd5,0xaf,0x59,0x29, - 0xbc,0x5e,0x7f,0x8b,0x40,0x2e,0xf2,0x02,0x9d,0x64,0x76,0xf2,0x81,0xd5,0xa2,0xf6,0x5c,0x3f,0x4e,0x2f, - 0x24,0x1a,0x00,0x1c,0x55,0x85,0xfa,0xa1,0x6d,0x00,0x0f,0x02,0x43,0x0c,0x83,0xea,0xf0,0x38,0xbb,0x7f, - 0xb5,0xc2,0xbc,0xd8,0xde,0x80,0x56,0xf0,0x85,0xb3,0xee,0x83,0x7f,0x6a,0xbb,0x85,0xae,0x70,0x21,0xfa, - 0x8c,0x80,0xdf,0x70,0x29,0xa0,0x55,0x79,0x25,0x2a,0x76,0x8b,0x80,0xf8,0xb4,0x23,0x4d,0xa6,0x4d,0xf3, - 0x2f,0xca,0xb5,0x13,0x5e,0x79,0x94,0x68,0x96,0x99,0x83,0xab,0x18,0xdf,0xe0,0x78,0x27,0xb8,0x13,0x79, - 0x90,0xbc,0x75,0x74,0x74,0x8d,0x64,0xde,0x72,0xe6,0x6c,0xd6,0xc9,0x2d,0x6c,0x65,0x37,0xd4,0x31,0xc5, - 0x3b,0x5d,0xcc,0xad,0x28,0x99,0xc8,0x5a,0x4a,0x15,0x9a,0xcf,0xd3,0x5a,0x67,0x3e,0x1f,0x26,0x9c,0xd6, - 0xae,0x3b,0x0e,0x3c,0x0c,0xd4,0x0a,0x69,0x66,0x84,0x68,0x5a,0x1e,0xc9,0x9c,0x6d,0x9a,0x94,0xbc,0x31, - 0x50,0x05,0x4b,0x11,0xd3,0xa6,0xa9,0x6a,0xfb,0x40,0x08,0xac,0x6c,0xac,0x1f,0xb1,0x9f,0xa8,0x4a,0x23, - 0x3f,0x17,0x7b,0xbc,0xd2,0xc9,0xb6,0x77,0x59,0x51,0x01,0xe9,0xa5,0xe8,0x8c,0x53,0xfe,0x20,0x0a,0x0b, - 0x03,0x08,0x6c,0xce,0x61,0x42,0xd0,0x9d,0x9c,0x12,0x5a,0xe0,0x1d,0x55,0x7a,0x32,0xa0,0x5a,0x7f,0xc5, - 0xe8,0xac,0x86,0xa6,0x12,0x3f,0x28,0x3c,0x0a,0x9a,0x6c,0xb1,0x9c,0x13,0x93,0x05,0xb8,0x2b,0x21,0xea, - 0x1f,0x4f,0xb8,0x02,0x8d,0x26,0x26,0xe8,0x9a,0x16,0x69,0xaf,0xd7,0xf4,0x45,0x3c,0x31,0xf5,0x6f,0x6c, - 0xec,0xa3,0xb9,0xe0,0xa8,0xe2,0x64,0x7e,0xaa,0x75,0x4b,0x79,0xe6,0x1c,0xa6,0x91,0xec,0x22,0x8b,0x38, - 0x4d,0x7e,0x76,0x17,0x8c,0xee,0xb6,0x81,0x94,0x88,0x98,0x1d,0xde,0x15,0xbc,0xc7,0x3c,0xc5,0x7e,0xe6, - 0x29,0x34,0x35,0xaf,0x76,0x07,0xa4,0x76,0xa0,0x1a,0x94,0xe9,0x18,0x9f,0x8b,0x72,0x2a,0x26,0xde,0x87, - 0x9e,0x70,0x10,0xb2,0xa6,0xf3,0x94,0x66,0xbf,0x47,0xe3,0x98,0x66,0x46,0x73,0x39,0xca,0xf4,0x5e,0xd4, - 0xd4,0x69,0x34,0x8a,0x58,0x4b,0x7d,0x96,0x17,0x29,0x73,0xbf,0x9f,0xa3,0x77,0xeb,0xcc,0xd2,0xda,0x46, - 0xbb,0x7d,0x26,0x6c,0xf3,0x4b,0xfd,0x35,0xd1,0x5b,0x8a,0x1b,0x33,0x54,0xa9,0x61,0xdc,0xb7,0x4a,0x1a, - 0x1a,0xa0,0xdd,0xba,0x33,0xf0,0xf0,0x7a,0x74,0xeb,0xbd,0x80,0xa0,0xeb,0xce,0xd6,0x3d,0xb3,0xca,0xfe, - 0xbc,0xa1,0xaf,0x2e,0x87,0x35,0xb1,0xbc,0x39,0x03,0xae,0x87,0xa0,0x66,0x1a,0xf8,0x62,0xc1,0x49,0xd6, - 0x16,0x69,0x18,0x52,0x5d,0xb3,0xb8,0x9e,0x38,0x80,0xf7,0x52,0xd1,0xdd,0x4b,0xa0,0xf9,0x0a,0x1b,0x35, - 0xd3,0x46,0x9f,0x28,0x40,0xf6,0x15,0x20,0x91,0xf7,0x02,0x43,0x83,0xd3,0x68,0x88,0x0c,0x7a,0x41,0x2f, - 0xec,0x78,0xc9,0x2c,0x60,0xb6,0x80,0xa9,0x02,0x0a,0xc4,0xc1,0x9e,0x8f,0x15,0xe6,0x08,0xfc,0xf5,0x18, - 0x34,0xa1,0xd0,0xb1,0xaa,0xe1,0xe1,0x1f,0xc3,0x1e,0xa9,0x6a,0x7c,0x25,0xac,0x6f,0x09,0x94,0x4f,0xf7, - 0x89,0x40,0x9b,0x12,0x4d,0xf9,0x01,0x31,0xa9,0x3e,0x54,0x8f,0x8e,0x2d,0xcd,0xf1,0x81,0xbb,0x9b,0x10, - 0x10,0x1c,0x57,0x27,0x1f,0xaa,0xd3,0x88,0x0a,0xaa,0xa3,0x8a,0xc5,0xb6,0x4c,0x7f,0x0c,0xab,0x55,0x11, - 0x1a,0x63,0xac,0x8f,0x95,0xa5,0x5d,0xaa,0xe4,0xd8,0xbe,0x50,0x2d,0x89,0xad,0x12,0x85,0x0c,0x3d,0x4d, - 0x35,0x41,0x2f,0xfe,0xa9,0x4a,0xd0,0xe9,0xc3,0x96,0xa4,0xe5,0x0f,0x48,0x6d,0x7f,0x91,0x0f,0x14,0xd6, - 0x0f,0xc2,0xdc,0x5d,0x44,0x0b,0x2d,0xa2,0x3b,0x2a,0x72,0x95,0x80,0xf2,0x33,0xab,0x87,0xef,0x40,0x75, - 0x5d,0x2d,0x46,0xd5,0xf0,0xec,0x1a,0x2b,0x91,0x55,0x04,0x54,0x05,0xe4,0xd9,0x67,0x39,0x9d,0x5d,0x2b, - 0x42,0x50,0xd3,0xc1,0x80,0x86,0x42,0x9c,0x92,0x88,0x6a,0x18,0x1e,0x08,0xd3,0xab,0xef,0xa8,0xd8,0x33, - 0xe0,0xa5,0xab,0xa6,0x2c,0xe1,0x2d,0xfc,0x1d,0xb1,0x3e,0xbc,0x3e,0xb3,0x39,0xa1,0x8f,0xc0,0x5b,0x9d, - 0x95,0xc5,0xd9,0xcf,0x2a,0xa8,0x60,0xb6,0xed,0xf9,0xd8,0x8a,0x8c,0xfa,0x43,0x00,0xb8,0x51,0x54,0xa8, - 0xce,0xb6,0xed,0xa6,0x25,0x1b,0x51,0xfe,0xee,0xd2,0xd5,0x14,0xf4,0xa9,0xd7,0xec,0xcc,0x36,0x2b,0x10, - 0xc9,0x4a,0xad,0x3e,0xa9,0x54,0x31,0x0e,0x75,0xc7,0xaa,0xf1,0x94,0x0d,0xb1,0x0a,0xd3,0x89,0x8b,0x28, - 0x36,0x79,0x05,0xfe,0x8e,0x2b,0x50,0x00,0x08,0x68,0x47,0x20,0x4c,0xf3,0x65,0xca,0x23,0x2f,0xbe,0x30, - 0x5f,0x15,0xf8,0x3b,0xe6,0xbf,0xf1,0x45,0x74,0x67,0x7f,0x9b,0x76,0x7f,0xa7,0x3e,0xbe,0xdc,0x52,0x29, - 0xb1,0x9d,0xdd,0x19,0xce,0xdd,0x15,0xad,0xc2,0x4f,0xb2,0x5a,0x34,0xed,0xfd,0xe9,0x5a,0xb4,0x63,0x65, - 0xf7,0x2c,0xb8,0x6b,0x6e,0x60,0x93,0x9b,0x41,0x33,0x01,0xe9,0x6f,0xa4,0x3c,0x8d,0x54,0xe3,0x74,0x41, - 0x8d,0xe8,0x2e,0x7c,0x0b,0x97,0xcc,0x09,0x93,0x6c,0xe8,0x1e,0x28,0x89,0x20,0x75,0x55,0x88,0x38,0xa5, - 0xcd,0xcf,0x23,0xb5,0x2d,0x07,0x63,0x4d,0x20,0x63,0x64,0xda,0x34,0xf7,0xae,0xc5,0x17,0x5c,0xc4,0xc3, - 0xce,0x72,0xc5,0xa1,0xcc,0xec,0x8f,0x8d,0x96,0xbe,0x2d,0xc6,0xef,0xb3,0xd9,0x1c,0x39,0xe5,0x75,0xf1, - 0xbd,0x98,0x48,0x0c,0x67,0xf9,0xbc,0xc9,0xaa,0x3e,0x03,0xe7,0x3f,0xa3,0x41,0x1c,0x3a,0x2d,0xdf,0x26, - 0x8a,0x3b,0xd6,0x17,0x3d,0xfc,0xc8,0xad,0x93,0x44,0x80,0x80,0x25,0xca,0x00,0x91,0x49,0x87,0x10,0xa0, - 0x42,0x1a,0x39,0xaa,0x47,0x3c,0x9a,0x9a,0x45,0x4d,0x57,0xf9,0x14,0xfb,0x88,0x29,0x7d,0x2f,0x85,0x08, - 0x22,0xfa,0x26,0xf1,0x52,0x20,0x9c,0x3d,0xa7,0xc1,0x7e,0xdc,0x10,0x9b,0x60,0x0e,0x1f,0xf0,0x7d,0xbb, - 0xb0,0x3d,0x34,0x92,0x32,0x48,0x2b,0xe9,0x43,0x81,0x8c,0x89,0x34,0x6c,0x44,0x66,0x5c,0x63,0x0f,0x8c, - 0x5b,0x45,0x1c,0x41,0xeb,0x64,0x63,0xed,0x89,0xbc,0x45,0x46,0xb8,0xb3,0x16,0x8b,0x0b,0x9e,0x69,0x5b, - 0x2a,0xcd,0x32,0xbf,0xed,0xd0,0x42,0x5a,0x04,0x6f,0xb5,0xdc,0xd6,0xa2,0x4b,0x95,0x84,0xee,0x52,0x87, - 0x82,0xca,0x47,0x29,0x8b,0x6b,0x2a,0x74,0x94,0x36,0x37,0xc7,0x73,0x75,0xd2,0xf7,0x6d,0x1b,0xc2,0xed, - 0xaa,0xb9,0x4e,0xaa,0x28,0xf3,0x2b,0x2a,0xf7,0x0e,0xfd,0x7a,0x72,0x43,0xda,0x6e,0x99,0xd2,0xf8,0x55, - 0xd5,0x9d,0x5e,0xd6,0xdd,0x5e,0x4e,0x92,0x1a,0x1d,0xb4,0x9d,0x9d,0x10,0xc7,0xa8,0x9c,0x2c,0x56,0x53, - 0xc4,0x8c,0x2e,0x7f,0x44,0x6c,0x00,0x0e,0x90,0xe0,0x29,0xef,0x17,0xde,0xce,0x61,0xf9,0x16,0x35,0xc4, - 0x3b,0xf6,0x5e,0x0d,0x4b,0x85,0xe9,0x07,0x22,0xda,0xcc,0x66,0x2d,0x11,0xbb,0x8d,0x69,0xd9,0x8a,0xf7, - 0xcc,0x55,0x78,0x15,0xe2,0x25,0x62,0xb9,0x77,0x9e,0x60,0xcb,0xad,0xd7,0x8d,0xef,0xe4,0xac,0xab,0x32, - 0x95,0xa4,0x50,0x6e,0x0c,0xcf,0x08,0x68,0xa6,0x59,0xc5,0xdc,0x15,0xbe,0x23,0xca,0xb2,0x31,0xd1,0x72, - 0xa1,0xf3,0x43,0x71,0x6b,0x3f,0x34,0x96,0x2a,0x3a,0xce,0x7f,0x96,0x66,0x54,0xb7,0x28,0x1d,0x23,0x2e, - 0x68,0x4b,0x2b,0x74,0xe1,0xe3,0xaa,0xe7,0x62,0x16,0x6c,0x88,0x01,0x15,0xc8,0x56,0x44,0x68,0x04,0xea, - 0xf0,0x63,0x8f,0x24,0xbc,0xe9,0x4e,0x47,0x42,0x47,0x08,0x2d,0x0c,0xec,0x77,0x80,0xe0,0x89,0xb0,0xb1, - 0x66,0x8d,0xe3,0x36,0xdc,0xe5,0xd1,0x98,0xbd,0x9b,0x9d,0xf7,0x2b,0x31,0x44,0x39,0x24,0xbb,0x71,0x35, - 0x3e,0x2a,0x68,0x21,0x40,0x48,0xc7,0x5d,0xe2,0xff,0xdc,0xb6,0xa8,0xd9,0xc9,0x02,0x1c,0x36,0x38,0xca, - 0x6d,0x95,0x37,0xcd,0xf9,0x02,0x59,0x23,0x2d,0x32,0x70,0x47,0x50,0x2e,0x32,0xfe,0xc9,0x9c,0x78,0x7b, - 0x76,0xcd,0xe4,0x3d,0x70,0x23,0xcc,0x1c,0xbd,0xdc,0xa0,0x48,0x44,0x50,0xee,0x93,0xe4,0x99,0xe1,0x0e, - 0xf4,0x03,0x0b,0x91,0x47,0x29,0xf4,0xe2,0x34,0x6a,0x18,0x83,0xff,0x50,0xf3,0x71,0x40,0xe8,0xb0,0xa6, - 0xf9,0x1d,0x13,0xeb,0x57,0x2e,0x90,0x50,0x43,0x04,0x61,0x5f,0xc0,0x80,0xc7,0xba,0x0e,0xce,0xe0,0x27, - 0xa4,0x6e,0x72,0x60,0x94,0x14,0x12,0x77,0x30,0xd1,0xc2,0xd1,0x96,0x10,0x60,0x84,0x08,0x4a,0xc1,0x85, - 0xcb,0x82,0x19,0xf8,0x13,0x7d,0x7e,0x13,0xe1,0x94,0x9f,0xb6,0xce,0x56,0x7c,0xc5,0xa2,0x2f,0x4b,0x31, - 0x4e,0x84,0xda,0xaf,0x89,0xcb,0x77,0x41,0xc1,0x9c,0x35,0x57,0x8b,0x06,0x94,0xe3,0xa7,0x66,0x0b,0x9f, - 0xe3,0x2a,0xcb,0xd0,0xc3,0xad,0x34,0x30,0x22,0xd8,0x77,0x80,0x51,0xc3,0x20,0xd2,0x39,0xda,0x74,0x96, - 0xb8,0x8a,0xc6,0x8f,0xe9,0x4f,0xfc,0x09,0x7f,0xc2,0xe3,0x2c,0x94,0x4f,0x92,0x16,0x74,0x0d,0xa5,0xde, - 0xf7,0x0c,0xe3,0xcf,0x0b,0xc0,0xbd,0xd3,0xa3,0x1a,0xd8,0x7f,0x07,0x77,0x70,0x11,0xaf,0xb2,0x66,0x15, - 0xf6,0x30,0xf2,0xdd,0xd9,0x59,0xb0,0x97,0xa9,0xdd,0xc3,0xa8,0x75,0xfe,0x5c,0x5b,0x52,0x41,0x77,0xef, - 0x38,0xd3,0x46,0x34,0xc4,0xab,0xe2,0x93,0x66,0x2f,0x2c,0xc6,0xc1,0x19,0xbc,0xa4,0x83,0x40,0x02,0x10, - 0x79,0x53,0x72,0x9c,0x79,0xa2,0xd9,0x3b,0x19,0x6c,0x89,0x7b,0xea,0xf8,0x4b,0x26,0xe8,0x38,0x14,0xad, - 0x46,0xa7,0xce,0x91,0x80,0x93,0x3f,0x66,0x5a,0x9d,0xba,0x87,0x86,0x2b,0x2b,0xde,0xfb,0x68,0x5a,0xf3, - 0x4c,0xce,0x6c,0x07,0x9c,0xbd,0x95,0x18,0xd4,0xc1,0xe4,0x0a,0x36,0x5c,0x79,0xfd,0x96,0x86,0x92,0x78, - 0x7b,0xf1,0xc8,0x63,0x53,0xa0,0x88,0x6f,0x22,0x47,0xd7,0x97,0xf2,0x67,0xcc,0x08,0x08,0x4f,0x51,0xec, - 0xf1,0x5f,0x95,0x48,0xd0,0x3c,0x5d,0x1f,0xa1,0x4e,0x48,0x20,0x47,0xac,0xdb,0xcb,0xc7,0x27,0xa7,0x46, - 0x4b,0x9d,0x6b,0x7f,0xf2,0x6d,0x30,0xfa,0x94,0x89,0x5f,0xd9,0x59,0x99,0x5c,0x67,0xd4,0xc6,0x59,0xc1, - 0x21,0xd7,0xcf,0x20,0x1f,0xa3,0x9f,0x79,0x72,0xc5,0xa9,0x4d,0xb2,0xe0,0xdf,0xdf,0x92,0x1b,0xfc,0xe4, - 0xc9,0x39,0x7e,0x16,0xc9,0x19,0xa7,0xce,0x92,0x0b,0xfe,0xfd,0x98,0xdc,0xf0,0xef,0x79,0x72,0xce,0xbf, - 0x57,0xc9,0x11,0x7e,0x68,0xbc,0x88,0xb8,0x71,0xb6,0x4a,0x4a,0x4e,0xbe,0x48,0x8e,0xbc,0x1e,0x3c,0x96, - 0x49,0xf3,0xc5,0x84,0xc4,0x20,0x6b,0x30,0x13,0x87,0x0c,0xf6,0x54,0xd2,0x91,0x52,0x45,0xc3,0xdb,0xc8, - 0x8b,0xb5,0x08,0xab,0x74,0x26,0x9f,0xd4,0x89,0x8e,0x49,0x3a,0xd7,0x51,0x62,0xea,0x44,0xb6,0xe1,0x55, - 0x61,0x02,0x7e,0xe2,0x24,0x62,0x23,0x36,0xa2,0x78,0x52,0xfd,0x4e,0x5b,0x5f,0xb2,0x19,0x8f,0xf7,0x10, - 0xc7,0x55,0xc6,0x96,0x08,0x9b,0xb6,0x69,0xa8,0x26,0x8a,0x72,0x71,0xa5,0x4b,0x85,0x06,0x44,0xdc,0x15, - 0xf8,0xd4,0xed,0x4e,0x46,0x13,0xe3,0x5c,0x68,0x76,0x4e,0x92,0x2a,0xef,0xbc,0x48,0x5c,0x93,0x61,0xa4, - 0xb6,0xce,0x24,0x58,0x86,0xbb,0x37,0x0c,0x01,0x51,0x29,0xce,0x6a,0xb1,0xaf,0x1b,0x6b,0xaa,0x73,0x2b, - 0x1c,0x8a,0x91,0x96,0xbc,0xe5,0xe8,0xfd,0x1a,0xf1,0x3a,0x03,0x83,0x92,0x4d,0x9f,0x9c,0xc9,0x9e,0xab, - 0x51,0x79,0x12,0x91,0x84,0xc6,0x54,0x6e,0xe2,0xbb,0xdb,0x30,0x74,0x5d,0xbb,0x11,0x8f,0x96,0xf9,0x90, - 0xdd,0x61,0xb5,0xcc,0xba,0x56,0xb1,0x5c,0xf6,0xac,0xcf,0x30,0xbf,0x9a,0xe0,0x11,0xed,0x4a,0x16,0x1a, - 0xab,0xba,0x39,0xf5,0xd1,0xa2,0x9e,0x33,0x38,0x1a,0xb2,0x22,0x4a,0x9f,0xfb,0xc9,0xdc,0x48,0xe7,0xa8, - 0x7c,0x9f,0x95,0x87,0x9e,0x90,0x15,0x33,0xf0,0x90,0x9b,0xe5,0x53,0x7c,0xb8,0x22,0xb8,0xb1,0xca,0xcb, - 0xd0,0x8b,0x93,0x55,0x89,0x53,0x33,0xce,0x29,0x2a,0xcd,0xfa,0x1a,0x16,0x3f,0xea,0x67,0x78,0xe8,0x3a, - 0x19,0x9b,0x4b,0xd3,0xd2,0x39,0x13,0xb7,0x76,0xea,0x95,0x31,0x49,0x23,0x5d,0x27,0xe2,0x14,0x11,0xb2, - 0xd1,0xb5,0xea,0xb7,0x4e,0xbd,0x5e,0x2a,0x0b,0xcb,0x44,0xe2,0xc7,0x6b,0x53,0x47,0x46,0x73,0xe1,0x92, - 0x12,0x11,0xa4,0x13,0xbe,0x99,0xfb,0xd0,0x6b,0x26,0x3f,0x23,0xd2,0xaa,0x71,0xa4,0x55,0xf6,0x88,0x48, - 0x18,0x88,0x1e,0x80,0xb9,0xef,0x51,0xa1,0x49,0xf6,0x03,0x1f,0x4d,0x61,0xb4,0x51,0xab,0xe4,0xac,0xa5, - 0x94,0x71,0xfd,0x4f,0x20,0x5e,0x2d,0x09,0xd8,0xd7,0xeb,0x79,0xc8,0x2e,0x3b,0x9d,0xa2,0xed,0x49,0x62, - 0xaa,0x4c,0x82,0x90,0xa1,0x5f,0x21,0xc7,0x4e,0x99,0x26,0x55,0xb8,0x52,0x33,0xe7,0x3a,0x11,0xf2,0x6a, - 0xf4,0xb9,0xe9,0xb0,0xb7,0xe4,0x38,0xf3,0xe7,0x74,0x30,0x90,0x54,0xae,0x22,0x6e,0xc2,0xa9,0x93,0x82, - 0x46,0xbd,0xd1,0x9c,0xbd,0x02,0xfc,0x21,0x0c,0xb0,0x3a,0x49,0x5c,0x97,0x42,0x5d,0x66,0xad,0xfd,0x51, - 0xd0,0x98,0x75,0x06,0xec,0x02,0xb8,0x98,0x5b,0xbe,0xf6,0xea,0x71,0x51,0xfd,0x8e,0x69,0x02,0x60,0x4d, - 0x89,0x2b,0x98,0xa7,0x37,0x63,0x5b,0x90,0xa6,0x22,0x26,0x9e,0xf4,0x58,0x02,0xa7,0xf9,0x1a,0xb9,0xce, - 0x40,0x33,0x0f,0xf8,0x42,0xff,0x73,0x99,0x49,0xa5,0x6b,0x5e,0xaf,0x1f,0x1e,0x1c,0xe8,0x8e,0xe9,0x68, - 0x6c,0x70,0x7c,0xff,0x33,0x2d,0xc8,0x15,0x14,0x5c,0x95,0xf9,0x32,0x02,0x26,0xdb,0x3d,0x54,0xb6,0xbd, - 0x71,0x6b,0x84,0xb1,0xfb,0x7e,0xe3,0x60,0xcf,0x68,0x17,0x36,0x34,0x93,0x73,0xda,0x3a,0x4e,0x04,0xdd, - 0x45,0x1b,0x9e,0x69,0x69,0x15,0x3a,0x8c,0xd4,0x92,0x44,0x12,0xae,0xd7,0x09,0xaf,0x33,0xc2,0xfc,0x12, - 0x99,0xaf,0x51,0xba,0x31,0x04,0xc0,0xd3,0x78,0x3f,0x26,0xbc,0x9f,0x5e,0x10,0x45,0x4c,0x88,0x8a,0x5a, - 0x36,0xc8,0x63,0x54,0x26,0x25,0x53,0xf0,0xcf,0x80,0x41,0x14,0x07,0x1e,0x26,0xd2,0x76,0xee,0x59,0x70, - 0x7a,0x4c,0x16,0x02,0x53,0x23,0x17,0x14,0x22,0x3f,0xf0,0x19,0x43,0xa4,0x25,0xf3,0xdf,0x01,0x0b,0xa3, - 0x3b,0x05,0x32,0xc8,0xc2,0xa8,0x44,0x5e,0xc0,0x4d,0x78,0x14,0x16,0x72,0x2c,0xb1,0x88,0x78,0x69,0x88, - 0xc5,0x88,0xb5,0x1d,0xfa,0x0b,0xae,0x4b,0x5b,0x9a,0x14,0x43,0xed,0x1c,0x28,0x44,0xe1,0x88,0xfa,0x47, - 0xc4,0x5f,0x34,0xc6,0xdf,0xe4,0xc4,0x7c,0x01,0x6a,0xea,0x3c,0x9d,0x7c,0xb4,0x87,0x38,0x17,0x8a,0xb9, - 0x50,0xb7,0xcc,0x86,0x56,0xd5,0x90,0xfd,0xa5,0x10,0xce,0x33,0x87,0x03,0x5a,0x11,0xb8,0x6c,0x41,0x67, - 0xdb,0xb5,0x8b,0xe8,0xa8,0x06,0x9f,0xd0,0xac,0xd1,0x41,0x26,0xc4,0x2d,0xbc,0xc2,0x5d,0xb1,0x26,0x84, - 0x19,0x4e,0x13,0xce,0x1d,0x2d,0xb5,0x62,0xc2,0xd7,0x04,0xf7,0x24,0xf2,0x7f,0x15,0x8d,0xbe,0xa5,0xd3, - 0x60,0xae,0x68,0x43,0x81,0x3c,0x5b,0xaf,0xf1,0x3a,0x91,0xd7,0x43,0x4b,0xc7,0xd6,0x9b,0x0d,0x04,0xe7, - 0x1a,0x17,0x9a,0x0e,0x99,0x0e,0xa7,0xf3,0x3e,0xe8,0x69,0x6b,0x12,0x71,0xa4,0xeb,0x01,0xeb,0x3e,0xa7, - 0xed,0x9e,0x46,0x2d,0xa1,0xf9,0x84,0xf0,0xdc,0xfc,0x34,0x79,0x13,0xce,0xa9,0x33,0x4c,0x0a,0x68,0x2a, - 0x0e,0xe8,0x8a,0xc7,0x4a,0xb0,0xf1,0x01,0x07,0x99,0x79,0x55,0xc8,0xe1,0x1a,0x5d,0x8e,0xbc,0xf2,0xf4, - 0xae,0x84,0x7d,0xc5,0x91,0x45,0x53,0xce,0x26,0x28,0x84,0x0a,0xd3,0xa1,0x10,0xbe,0x9e,0xc1,0xc1,0x8a, - 0xce,0x4e,0xb5,0x72,0x66,0x43,0x5b,0x3a,0xbf,0x99,0x7f,0xe2,0xaa,0x99,0x67,0x61,0x9f,0xc2,0x91,0x93, - 0x55,0x19,0x21,0x95,0xc2,0x26,0x20,0xa8,0x91,0x07,0x86,0x2f,0xce,0x4c,0xa4,0x0c,0xed,0xda,0x19,0x6c, - 0x61,0x66,0xb2,0x09,0xa4,0x93,0x53,0x10,0x52,0x2c,0xb5,0xc6,0x2f,0xbd,0x88,0xc7,0xc3,0xdb,0x42,0xf9, - 0xd3,0x9e,0x22,0xc0,0x11,0x6d,0x3c,0x0d,0x02,0x4b,0x2a,0xc7,0xbc,0x69,0x89,0x79,0x5d,0x32,0xa9,0xc0, - 0x0d,0x2d,0xa3,0xcd,0xae,0x8f,0xe9,0x33,0xa3,0xa5,0xcc,0xac,0x82,0xb2,0x63,0xa0,0xf0,0xb4,0xf2,0xc5, - 0xa6,0x9a,0xac,0x7d,0x5a,0x89,0xc4,0x53,0xbe,0x82,0x66,0x20,0x4f,0x7e,0x85,0xf3,0xd3,0xc8,0xa6,0x24, - 0xd5,0xd8,0x47,0x1b,0xdb,0xd2,0x38,0x0b,0x0b,0x99,0x7d,0x84,0x67,0xad,0x7e,0x24,0xe0,0xca,0x89,0x3e, - 0x21,0xb4,0xc0,0x50,0x86,0x66,0x2f,0x3d,0xb8,0x97,0xf8,0xa9,0x13,0xab,0x2a,0x11,0xf7,0x8b,0xe0,0x6a, - 0x95,0xed,0xdb,0x53,0x61,0x9f,0x28,0x7d,0x50,0x09,0x7b,0xe1,0xe5,0x38,0xa0,0x97,0x4b,0xe6,0x37,0x4a, - 0xd5,0xeb,0xf6,0x91,0xaa,0xdb,0x23,0x42,0x5b,0x84,0x8c,0xac,0xd5,0x53,0x3c,0x53,0x96,0xfa,0x8c,0xa7, - 0x8c,0xa4,0x26,0x0e,0x6b,0x11,0x1f,0xbf,0x82,0xcf,0xab,0xb3,0xb4,0x46,0x1c,0x7d,0x8d,0xbd,0x88,0x84, - 0x32,0xca,0xcb,0x36,0x0f,0x93,0xb2,0x11,0x5c,0x0a,0xb3,0x86,0x70,0x92,0x00,0xee,0x53,0x22,0xf8,0xa5, - 0x0f,0x11,0xad,0xe8,0x5c,0x32,0x5e,0x55,0x9e,0xfc,0x39,0x6f,0x11,0x54,0x0d,0x7d,0x0d,0x82,0x23,0x35, - 0xd6,0x0f,0x56,0xfb,0x06,0x54,0xdc,0x2a,0x90,0xb3,0xbe,0x1d,0x51,0xce,0xc0,0xb7,0x11,0x37,0xeb,0x97, - 0x6c,0xf7,0xab,0xee,0x3f,0x76,0x71,0x71,0x00,0x20,0x37,0x85,0xe4,0x83,0x60,0xc3,0x27,0x64,0x09,0xa5, - 0x8b,0xa0,0x2c,0x96,0xeb,0x05,0xac,0xff,0x14,0xee,0x8c,0xa2,0x23,0xf3,0x55,0x35,0x26,0xca,0x26,0x9c, - 0x27,0x75,0x34,0x3e,0x39,0xa2,0x91,0x9d,0x76,0xac,0x6c,0xe7,0x2e,0x9e,0x15,0x91,0x0f,0x2e,0x02,0x0d, - 0xa6,0x0f,0xc8,0x06,0x91,0x68,0x44,0xec,0x04,0x5b,0xe8,0xd2,0xb7,0x85,0xce,0x68,0x8e,0xca,0x93,0xfa, - 0x34,0xea,0xf3,0x80,0x25,0xb2,0x86,0xa8,0xc2,0xd9,0x09,0x51,0x50,0x36,0x9a,0xc8,0x69,0xc7,0x2c,0x7f, - 0x12,0x8d,0x8d,0x93,0xd7,0x37,0x07,0x34,0xc2,0x9f,0x43,0xaa,0x31,0x0f,0x27,0x0a,0x76,0x27,0xec,0x91, - 0x4f,0x7c,0x22,0x11,0x68,0x34,0x32,0x9a,0x99,0x9f,0x09,0x27,0x62,0x97,0x03,0xfd,0x1c,0x85,0x2b,0xd6, - 0xad,0xed,0x4d,0x28,0x4f,0x34,0xd9,0xb8,0xf9,0x4a,0xdf,0x0a,0x40,0x7b,0xdf,0x53,0x08,0xce,0x68,0xcd, - 0xa2,0x18,0x46,0x8f,0x63,0x54,0x31,0xee,0x54,0x80,0x48,0x56,0x62,0xce,0x20,0x5f,0x85,0x47,0xc0,0x79, - 0xf1,0xcf,0xf4,0x57,0xda,0xec,0x7e,0x20,0xcd,0xc5,0x84,0x70,0x4b,0x2b,0x26,0xe3,0xb5,0x9e,0x40,0x19, - 0xc9,0xc4,0xc6,0x04,0x6c,0xaa,0xac,0x3f,0x83,0x12,0x73,0xad,0xc4,0x7d,0x5f,0x01,0x94,0x83,0xbd,0x54, - 0x06,0x46,0x7f,0xcf,0x02,0xd3,0x59,0x34,0xea,0x70,0xdb,0x86,0xd6,0x45,0x8b,0x7e,0x62,0x2c,0xe3,0xcb, - 0x8a,0x6d,0x36,0xfe,0xa4,0x5a,0x65,0x9b,0x69,0x27,0x44,0x61,0x41,0x54,0xb2,0xfc,0xd0,0x4d,0x38,0x14, - 0xf5,0x64,0x9d,0x9c,0xaa,0xcc,0xb3,0x57,0x87,0x79,0x08,0x6f,0x7b,0x86,0x85,0x51,0x9f,0x5d,0xa8,0x3e, - 0x47,0xa6,0xa3,0x59,0x92,0x0f,0xef,0x5d,0x15,0x74,0x9c,0x22,0x00,0x96,0x3c,0x0d,0x8b,0x9a,0x85,0x43, - 0x17,0x44,0x42,0xa5,0x17,0x88,0x11,0x5b,0x2f,0x11,0x5c,0x81,0xb0,0xcc,0x0a,0xa2,0xb2,0xbc,0x7e,0x9f, - 0xd5,0x59,0x45,0x24,0x10,0x65,0x53,0xea,0x58,0xe3,0x10,0xca,0x62,0xdf,0xe0,0x77,0xf3,0xb4,0x41,0xb0, - 0x0c,0xfd,0x31,0xbe,0xc3,0x26,0x6c,0x63,0x8d,0x9c,0x89,0xd7,0xe4,0x79,0x98,0x7b,0x22,0x3b,0x8b,0x80, - 0xea,0x00,0xb4,0xe6,0x98,0x78,0xa2,0x29,0x7d,0x9b,0xe3,0x90,0x89,0x62,0xdd,0x4c,0xd9,0x5b,0x9b,0x68, - 0x2f,0x57,0x09,0x7d,0x52,0xca,0x27,0x9e,0x7c,0x94,0xe0,0x21,0x9c,0x79,0xfe,0x2b,0x55,0x98,0x5b,0x16, - 0x27,0x87,0xc3,0x58,0x49,0x6c,0x53,0x59,0x65,0xf9,0x45,0xf1,0xd6,0xb8,0x49,0xd3,0xc4,0x10,0x64,0x30, - 0x16,0x30,0x88,0x8e,0x45,0x99,0x0d,0x7d,0x61,0x50,0x99,0x67,0xa2,0xcd,0x71,0xae,0x5c,0x8e,0xdd,0x72, - 0x8f,0x26,0xbc,0xed,0x34,0x1b,0xe7,0x0a,0xd0,0x16,0x24,0xca,0x67,0xae,0xa1,0x8f,0xd8,0xb2,0xf9,0x90, - 0x0d,0x18,0x0a,0x41,0x71,0xb4,0xfb,0xb9,0x87,0x9b,0x8d,0x10,0xe7,0x2b,0x1a,0x3e,0xec,0xa1,0x3c,0x94, - 0xe6,0x39,0x6d,0xf8,0x81,0xec,0xac,0xec,0x80,0xb5,0xb5,0xf5,0x6a,0x99,0x55,0xe6,0xec,0x41,0x39,0x9d, - 0xc2,0xc4,0x07,0x5b,0xa4,0xf2,0xbb,0x31,0xa0,0xb8,0x6d,0xbf,0x27,0xc6,0xef,0xa4,0x6b,0x84,0x8d,0x08, - 0x6f,0x8e,0x04,0xc1,0x69,0x26,0x1c,0xa8,0xf1,0x88,0x03,0xd1,0x58,0x67,0xe9,0x3c,0x33,0x29,0xf6,0x68, - 0x2c,0x8d,0x12,0xbf,0x3c,0xdd,0x15,0x13,0x49,0x48,0x08,0xd8,0xf7,0x12,0x01,0x6a,0x1a,0xc8,0xb8,0x7b, - 0x8c,0x74,0xb7,0xe4,0x59,0x9a,0x78,0x25,0x44,0x57,0x24,0x5d,0x21,0xea,0xb8,0x88,0x59,0xe5,0xbe,0x65, - 0x1e,0x27,0xbe,0x09,0xb6,0x2f,0xa2,0x51,0xc9,0x7c,0x8d,0x4a,0xd8,0x38,0xc9,0x2e,0x08,0xce,0x6f,0x92, - 0x03,0x5a,0x93,0x76,0xda,0xa3,0x03,0x2c,0x90,0x0e,0xf4,0x85,0x04,0xe7,0x2f,0xe7,0xf6,0x60,0x61,0x24, - 0xf6,0x0a,0x63,0xf4,0x9c,0xf9,0x37,0xec,0x35,0x0f,0xaf,0xe3,0xee,0xa4,0xd1,0xc9,0x15,0x7a,0x0b,0x98, - 0xbc,0x82,0x36,0xba,0x5d,0x46,0x5b,0x63,0x71,0x24,0x1b,0xb7,0x59,0x4e,0x1a,0x4e,0x3d,0x4d,0x10,0x62, - 0x65,0xdb,0xa2,0xe0,0x5d,0x66,0x43,0x9c,0x9c,0x21,0x5e,0x40,0xcb,0xf6,0xf2,0xd7,0x96,0x7d,0x04,0xbb, - 0x28,0xe2,0x34,0xef,0x90,0x0b,0xec,0x9d,0xe9,0x7d,0xf5,0x34,0x6b,0x51,0x26,0xdd,0xd5,0x19,0xfb,0xae, - 0xf3,0xdf,0xec,0x1f,0xc6,0xdb,0xba,0x9a,0xb1,0xef,0xf4,0xdf,0x29,0x0d,0x55,0x9d,0xda,0x0d,0x6d,0x1c, - 0x05,0x09,0x24,0x76,0x0a,0x8c,0x6f,0xe2,0x28,0x14,0x12,0x01,0x9b,0xdd,0x56,0x1b,0x8d,0xee,0x3c,0xb1, - 0xe2,0xcb,0x8e,0x89,0x00,0xab,0x49,0x19,0x4e,0xa1,0x80,0x61,0xf0,0x3c,0x63,0x5c,0xd7,0x85,0x4b,0x13, - 0xa8,0x17,0x66,0xef,0x6c,0xe9,0xa8,0xf9,0x82,0x5f,0x21,0x29,0xdb,0xb2,0x37,0x1a,0xd5,0x10,0x20,0x33, - 0x09,0xf0,0x0a,0xb4,0x58,0xc9,0x0c,0x9e,0x4f,0xda,0xbc,0xda,0xd2,0x35,0xb0,0x25,0xfe,0x6e,0xce,0x1e, - 0x5b,0x8c,0x62,0xe0,0xb0,0x86,0x5f,0xdc,0x12,0x62,0x5b,0x78,0xa9,0xc9,0xe4,0xe1,0xbd,0x29,0x0d,0xb1, - 0x2a,0xe1,0xb2,0x95,0x59,0xbd,0xff,0x8a,0xef,0xbc,0xf4,0xbc,0x00,0x32,0xdf,0xb3,0xfb,0x56,0x84,0xcc, - 0x47,0xd0,0x13,0xc4,0x6f,0x78,0xcf,0xbb,0x04,0x55,0xf8,0x6f,0x74,0x00,0x73,0x29,0x98,0x96,0xf1,0x13, - 0x11,0x1c,0xfa,0x09,0xc1,0x91,0xf1,0x7b,0x1a,0xeb,0x07,0xdf,0xac,0xbf,0xbd,0xfc,0xd9,0xb8,0x19,0x67, - 0x7b,0x01,0xc2,0xde,0xc4,0x59,0x0c,0xce,0xd0,0xb3,0xf9,0x7e,0xed,0x03,0xd8,0x16,0xa0,0xf4,0x1d,0x8e, - 0x34,0x59,0x08,0x1d,0x48,0xbb,0x53,0x95,0x4e,0x65,0x97,0x3f,0x2a,0x79,0x87,0x12,0xa1,0x9b,0xa0,0x4e, - 0x6c,0x3c,0x90,0x5e,0x7c,0xb1,0x1b,0x04,0x04,0xf8,0xbf,0x97,0x50,0x2f,0x22,0x45,0xbf,0x85,0xb7,0x2b, - 0x59,0x49,0xd3,0x6d,0x4d,0xd0,0x65,0x10,0x8c,0x5a,0xe2,0xb9,0x4c,0xc7,0x04,0x08,0x1b,0x1d,0x7a,0x17, - 0xd5,0x35,0x7e,0x75,0xbc,0x81,0x7b,0x01,0xba,0x6d,0xea,0xee,0x0f,0x3b,0xe5,0xd6,0x83,0xfa,0xea,0x22, - 0x88,0x83,0x45,0xda,0x5c,0xb2,0xa1,0xd1,0x58,0x1e,0xb7,0xb4,0x45,0x3f,0x65,0x26,0xba,0xcf,0xb6,0x86, - 0xd3,0xd4,0x68,0xa3,0xee,0xfd,0xb6,0xca,0xaa,0x9b,0x0f,0x19,0xf4,0xd0,0xa5,0xdc,0x43,0x73,0x57,0x2c, - 0xcd,0x69,0x7e,0x15,0xf4,0xa9,0x52,0x9e,0x74,0xf6,0x0a,0xdb,0x5c,0x56,0xd9,0xac,0xe3,0x23,0x64,0x3c, - 0xaf,0x73,0xdf,0x8d,0xdb,0x80,0x29,0x30,0x04,0x1c,0xb4,0x4b,0x58,0xce,0xd3,0xb7,0xf5,0xa8,0xab,0x56, - 0x29,0xd9,0x1a,0x6a,0xc5,0xbf,0x38,0xfc,0xf1,0x8b,0x43,0x16,0x07,0x2c,0x1e,0x35,0x21,0x1f,0xbb,0xf6, - 0x5f,0x16,0xcf,0xcb,0xaa,0xb7,0x16,0xfc,0xb5,0x28,0x23,0x27,0x7c,0x3c,0x18,0x70,0x12,0x63,0x64,0x53, - 0x37,0xc1,0x87,0x3c,0xe4,0x1e,0xe0,0xfe,0x28,0x42,0x6c,0x17,0x63,0x0b,0x34,0x1e,0x8e,0x7a,0xfa,0x65, - 0x21,0x93,0xec,0x47,0x7d,0xf4,0xfb,0xfe,0xe1,0xac,0xf3,0x73,0xc6,0x63,0x8d,0x36,0x4e,0xe5,0x48,0x2c, - 0x44,0x11,0xf0,0x73,0x57,0xbe,0x82,0x25,0x14,0x19,0x09,0x9f,0xb4,0x40,0xa1,0xad,0x60,0x11,0x15,0xbc, - 0x11,0xc3,0x4a,0xcf,0xb9,0x08,0x43,0x13,0xc7,0x90,0x57,0xac,0xab,0x83,0xae,0x96,0xfd,0xca,0x3e,0x53, - 0xc6,0x8a,0x12,0x61,0x5d,0xb7,0x5e,0xcf,0x73,0x76,0x68,0xa4,0x1f,0xe2,0x06,0x79,0xc0,0xa0,0x2b,0x30, - 0x9a,0xc7,0x90,0x2a,0xbd,0x43,0xa8,0xac,0xcb,0x72,0x4e,0x9c,0x3a,0xd7,0xd0,0x92,0x3d,0x61,0x9c,0x7e, - 0x02,0x28,0xe3,0x76,0x8a,0x96,0xc9,0xf9,0xf6,0xfb,0x99,0x08,0x28,0xac,0x76,0x59,0x9c,0xe4,0xb0,0xb1, - 0x72,0x22,0x21,0xf2,0x47,0x49,0x35,0xda,0xdb,0xcb,0x69,0xeb,0xc2,0x82,0x31,0x3f,0xd5,0x84,0x76,0x98, - 0xe2,0xb0,0x77,0x9e,0x96,0x9e,0xe7,0xc9,0x0b,0x0d,0x93,0x3a,0x46,0x9e,0xe7,0xf0,0xb5,0x5e,0x37,0xdd, - 0xa4,0xf6,0xbc,0x1b,0x48,0x16,0x6e,0x38,0x41,0x8c,0x8e,0x29,0xbc,0xf6,0x1a,0x79,0xa8,0x93,0xdf,0xb3, - 0xed,0x5a,0x5d,0x64,0x01,0x70,0x60,0x54,0x62,0xab,0x11,0x5c,0x8c,0x6c,0x4a,0xcc,0x89,0xec,0x20,0x52, - 0x58,0x33,0x59,0x85,0x48,0x58,0xaa,0xa4,0x16,0x6e,0x7e,0x82,0x9f,0x6a,0x4c,0xb3,0x46,0x53,0xfc,0x23, - 0x04,0x5f,0x89,0x71,0xc4,0xfd,0x0d,0x8c,0xae,0xd6,0x81,0x06,0x0a,0x77,0x1e,0xa8,0x1c,0x46,0x13,0x38, - 0x09,0xe8,0xc7,0xed,0x2b,0x91,0x45,0x4f,0x07,0x83,0x95,0x01,0x6a,0xe2,0x5d,0xe4,0x6b,0xf8,0xac,0xf5, - 0x7d,0x9b,0x17,0x44,0x93,0xf3,0x37,0x73,0xfb,0x0d,0xb6,0xf0,0xbc,0x15,0xd5,0x66,0xd6,0x27,0x1b,0x17, - 0xe3,0xbc,0xb9,0x6f,0x92,0x47,0x6d,0xcd,0x31,0x8e,0xc0,0x54,0x2b,0x4d,0x6e,0x46,0xe5,0xf8,0x3b,0xf8, - 0x4b,0x49,0x72,0x00,0x19,0xf4,0x2c,0x64,0xa7,0x80,0x95,0x8d,0xfc,0xc1,0x05,0x10,0x47,0x50,0x87,0x0f, - 0xbc,0xb3,0xc5,0x55,0xa7,0xc5,0x15,0xb7,0xd8,0x9d,0x04,0xdd,0x32,0xb3,0xe1,0x76,0xbe,0xeb,0x68,0xc2, - 0x5e,0x67,0xf4,0x15,0x4f,0x7b,0xb0,0x2a,0x64,0x62,0x32,0xfa,0x07,0x41,0x6c,0xdb,0x60,0xf7,0xf7,0x16, - 0x8e,0xeb,0x8b,0xba,0xd3,0x31,0xc7,0xd5,0xdb,0x73,0x24,0x66,0x1f,0x5b,0x2a,0xd3,0x30,0x67,0x53,0xdc, - 0x68,0xa8,0xe3,0x82,0xb3,0x4e,0x3c,0x77,0x6f,0xc9,0x55,0x1e,0xa9,0xe2,0x84,0xe0,0x9d,0x60,0x70,0x58, - 0xa5,0xd7,0x6f,0x98,0x8c,0x2a,0x99,0x9c,0xda,0x0b,0x86,0xc1,0x9e,0x6f,0x0f,0x52,0xfa,0xd5,0x40,0x56, - 0x20,0x61,0x57,0x87,0x41,0x14,0xd1,0xfe,0x90,0x65,0x26,0x4e,0xa9,0xf1,0x38,0x25,0x07,0x98,0x74,0x50, - 0x72,0xad,0x91,0x8e,0x5b,0xbf,0x6d,0x02,0xfb,0x5b,0xb6,0x2d,0x7d,0xce,0x04,0x74,0xf8,0x47,0xdb,0x4d, - 0x96,0x6c,0x18,0x59,0x86,0x85,0x84,0xda,0xd0,0xe5,0xb5,0x71,0x64,0x05,0xe3,0xc8,0x4a,0x2e,0x4c,0xe0, - 0x63,0xc0,0xf5,0x80,0xaf,0x41,0x91,0x71,0x81,0x02,0x70,0xc6,0x93,0x9e,0x2b,0x44,0x16,0x7a,0x14,0xd0, - 0xb6,0xe1,0x36,0xcf,0x7e,0xd8,0x30,0xd6,0x12,0xd7,0xa9,0x36,0x11,0x9a,0x17,0x97,0x59,0x95,0x73,0xbc, - 0x6d,0x9a,0xa1,0x2c,0x14,0x64,0x68,0x91,0x60,0x66,0x3c,0x05,0x24,0x41,0x33,0x07,0xcc,0x27,0x51,0x63, - 0x18,0xcd,0x24,0xf1,0x3f,0x61,0xe1,0xf8,0x3c,0xa9,0x3a,0x49,0xcc,0x8f,0x69,0xd1,0x10,0xc2,0x21,0xb4, - 0x0a,0x24,0xac,0x85,0x9e,0x6b,0x77,0x09,0xa6,0x16,0xe7,0x51,0x9a,0xcc,0x41,0xe1,0x4f,0x84,0x99,0x49, - 0x09,0xf4,0x21,0x29,0x05,0xdf,0x36,0x0a,0xdf,0x14,0xeb,0xf5,0x7b,0x18,0x74,0x68,0xe9,0x37,0xc4,0x15, - 0xf2,0xa4,0x8b,0x19,0x01,0xbb,0xce,0xf7,0x2a,0x9e,0x44,0xd8,0x7d,0x25,0xdb,0xe2,0x37,0x40,0xe2,0x63, - 0x04,0xb7,0x43,0x60,0x5a,0x1b,0x71,0xfc,0xcd,0x87,0x30,0xcb,0x55,0x81,0xcc,0x28,0xfe,0x17,0x7d,0x17, - 0x21,0xd0,0x66,0xa7,0x10,0x32,0xbd,0x55,0xf8,0xce,0x37,0x10,0xf8,0x67,0xc5,0x4e,0x77,0x39,0x07,0xc8, - 0xde,0xfa,0x90,0x45,0x25,0x49,0x40,0x94,0x76,0x79,0x3d,0xa3,0xfd,0x51,0xd3,0x5e,0xc9,0x8a,0x40,0xc2, - 0x8e,0x05,0xcf,0x5e,0x3f,0x79,0xf6,0x54,0xdb,0x4a,0x0b,0x8f,0x3f,0x0e,0x9a,0x8a,0xc6,0x12,0x43,0xc9, - 0xdf,0x0a,0x8c,0xce,0x5e,0x6f,0xd6,0x1e,0xea,0x5f,0x95,0x0e,0x21,0xd0,0x2e,0xc2,0xbd,0x20,0xaa,0x71, - 0x96,0x52,0x39,0xd4,0x5b,0x8c,0xf5,0x73,0x2c,0xf5,0xba,0x1a,0x9a,0xfc,0x33,0xdd,0xb6,0x93,0xd2,0xe0, - 0xfe,0x8e,0x56,0x2b,0x92,0xd5,0x58,0xf3,0x05,0xaa,0x8a,0x2b,0x89,0xfa,0xc6,0x2e,0xf6,0x33,0x54,0xe4, - 0x0d,0xfc,0xdb,0x5e,0xc3,0x6b,0xe2,0xf8,0xd9,0xcf,0xc7,0x8f,0xdf,0x3f,0x7b,0xdc,0x1a,0x35,0xa5,0x2f, - 0xdd,0x59,0xaa,0x67,0x87,0x63,0x6a,0xe6,0xd9,0xf2,0xd2,0x90,0x4e,0xbe,0x2d,0x60,0x43,0xc4,0x77,0xb9, - 0x7c,0x49,0x44,0xc4,0x34,0x27,0xdc,0x03,0xcb,0x9a,0xf4,0x22,0x15,0xe4,0xa8,0x4c,0x57,0x3a,0x77,0xbc, - 0x08,0x05,0x01,0x4b,0x91,0x51,0xd6,0x73,0x05,0x8c,0xcd,0x56,0xa6,0xe1,0x64,0xf7,0x60,0xd3,0xb3,0x0c, - 0x1e,0x24,0x7c,0xdb,0xd9,0x8f,0x86,0x74,0xe3,0xe0,0x3b,0xa9,0xde,0x2b,0xb2,0x29,0x33,0xc8,0xbf,0x3d, - 0x86,0x01,0xbb,0xad,0xd4,0xbc,0x02,0xcb,0x2d,0x20,0x97,0x05,0x73,0xd4,0x2d,0x94,0xea,0x42,0x91,0xd5, - 0xad,0xf4,0xd2,0xfa,0xe6,0x4e,0x34,0xf8,0x51,0x10,0x52,0x1d,0xb1,0x78,0xa5,0x4b,0x5e,0x46,0x23,0x60, - 0xdc,0x3e,0xf6,0x48,0xb8,0x38,0xbe,0xe4,0x72,0xca,0xde,0xb8,0x04,0xb6,0xcf,0x33,0x4d,0x90,0x31,0xec, - 0xb1,0x25,0xbd,0x10,0x4d,0xd6,0x8c,0x9e,0x83,0x65,0xf8,0xe5,0x0b,0xa5,0xc9,0x39,0xa7,0x92,0x4b,0x5a, - 0x8c,0x12,0xcf,0x8a,0xf0,0x45,0x0d,0x6f,0x36,0x48,0x09,0xc7,0x6f,0x20,0x6c,0x7a,0xcd,0xfa,0x23,0x22, - 0xfe,0x47,0x1a,0xeb,0xb0,0x65,0x32,0x84,0x41,0x67,0x1c,0x37,0x36,0xc7,0x98,0xb9,0x92,0x8c,0xc8,0x62, - 0x96,0x50,0x86,0x75,0xf2,0x06,0x28,0xe0,0x75,0xc6,0x12,0x44,0x05,0xd7,0xac,0x1c,0x06,0x98,0xd9,0x15, - 0x17,0xec,0xb9,0x83,0x40,0xac,0xbe,0x54,0x8d,0x53,0xdf,0x15,0x4c,0x6a,0x7f,0x59,0x7f,0xce,0xb6,0x9c, - 0xe4,0x42,0xb6,0xcb,0xf2,0x1c,0x36,0x32,0x6d,0x16,0x7e,0x49,0xb8,0x5d,0x2e,0x79,0xa0,0xf6,0x2f,0x93, - 0x7c,0xef,0x70,0xe3,0x91,0x4d,0x8c,0x3a,0x77,0x0f,0x45,0x15,0x3a,0xc7,0x9f,0x15,0x5b,0x88,0x13,0x4b, - 0x36,0xa5,0xff,0x4b,0xfa,0x6f,0x1c,0x32,0x7b,0x84,0x28,0xd8,0x5c,0x6c,0x92,0x9b,0xf9,0x71,0xb1,0xe8, - 0x44,0xac,0xa3,0x2f,0xbe,0x16,0xdb,0xee,0xaf,0x1f,0xd2,0x90,0x45,0x3e,0xba,0x7b,0xe8,0xf6,0xe4,0x24, - 0xfa,0xe2,0xcb,0x4e,0x81,0x49,0xab,0xc0,0x3c,0xfa,0xfa,0xef,0x9d,0x02,0xf3,0x56,0x81,0x55,0xf4,0xe5, - 0x7f,0x77,0x0a,0xac,0x5a,0x05,0x0e,0x1f,0x7e,0x09,0x8e,0x71,0xbd,0xa6,0x07,0xde,0xcc,0x7e,0x17,0xf7, - 0x0e,0xa3,0xfe,0x8c,0x7d,0x64,0xcc,0x88,0xb9,0x5a,0xaf,0x97,0xd1,0x6d,0x7d,0x9d,0x6b,0x8f,0x81,0x49, - 0x4a,0xb5,0x7e,0xf1,0x65,0x0c,0xc3,0x03,0x31,0x9a,0x1d,0x49,0xd2,0xd7,0x71,0xdd,0x49,0xfa,0xfa,0xef, - 0xf1,0xbc,0x93,0xf4,0xe5,0x41,0xbc,0xdc,0xdb,0x6b,0xa5,0x1c,0xc6,0xcb,0xfd,0xfd,0xd6,0x67,0x87,0xf1, - 0xb4,0x5d,0xe6,0xeb,0x2f,0xe2,0x69,0xbb,0xcc,0xe1,0xc3,0x2f,0xe2,0x59,0xbb,0xd0,0xe1,0xc3,0xaf,0xe2, - 0xd9,0xfe,0x3e,0x28,0x33,0x99,0x10,0xb7,0xe7,0xae,0x12,0x1a,0x8e,0x5a,0x68,0x96,0x6b,0x74,0xc5,0xe1, - 0x25,0xc5,0xf9,0x25,0x5c,0x24,0xf6,0x9e,0x87,0x2b,0x88,0x55,0xf6,0xf7,0xa3,0xd1,0x62,0x30,0x38,0xd7, - 0x31,0x7c,0x17,0x11,0x6b,0x08,0x60,0xe8,0x2f,0x02,0x57,0x6b,0x3f,0x52,0x8e,0x43,0x86,0x22,0x66,0xd9, - 0xcd,0xa5,0xd1,0x0e,0xc4,0xe2,0x46,0x54,0x2c,0x5e,0xf9,0xde,0x82,0x31,0xdc,0xe4,0x2f,0xc1,0xe5,0xe0, - 0x12,0x10,0x07,0x5f,0xa9,0x0f,0x5f,0x65,0xd2,0x43,0xef,0x27,0x4e,0x72,0x17,0x84,0x81,0x08,0x38,0x1f, - 0x99,0x7b,0x49,0xee,0x9f,0x51,0xea,0x7d,0x22,0x4e,0xee,0x07,0x51,0x78,0x9f,0xa3,0xd0,0x07,0xa3,0x76, - 0x96,0xed,0x4b,0x11,0xb9,0x52,0x2a,0xb0,0x19,0x05,0xc1,0xc6,0x06,0xb2,0x65,0x5f,0xe2,0x57,0x7a,0x8e, - 0x77,0xbc,0xf9,0xda,0x4e,0xce,0xc1,0xc9,0x8f,0x2b,0x44,0x58,0x63,0x93,0xa8,0xea,0x14,0x81,0x81,0x7d, - 0xd9,0xdb,0xbf,0xba,0x62,0x14,0x44,0xcf,0x5f,0xb6,0x4d,0x4f,0x5c,0x18,0xa0,0xcd,0xb6,0x75,0xb9,0x57, - 0x60,0x13,0xc5,0x27,0x9e,0x35,0xd1,0x3f,0xed,0x59,0x1f,0x66,0x56,0x3b,0x6f,0x02,0x84,0x38,0x6c,0x70, - 0xcb,0x77,0x78,0x34,0x4a,0xc7,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0xc4,0xf7,0x25,0xca,0x1a,0xaf,0xb2, - 0xae,0x05,0xe8,0x5f,0xad,0xac,0x69,0x9c,0x95,0x20,0xd7,0xf0,0x3a,0x5d,0x4a,0x1c,0x22,0xfd,0x8e,0xa3, - 0xed,0x8e,0x0a,0x3d,0x0f,0xbc,0xc6,0xd1,0xb4,0xd0,0x84,0x02,0xbf,0xb3,0x5e,0xdb,0x78,0xa8,0xba,0x38, - 0x43,0x95,0x75,0x8b,0x6d,0x92,0x60,0x17,0x2e,0x3b,0x84,0xec,0x61,0x52,0xe9,0x17,0x61,0x07,0x5a,0xca, - 0xff,0x7f,0x3a,0x5f,0xfb,0xcf,0xfa,0x45,0x8c,0x4b,0x2d,0x95,0x1a,0x70,0x29,0xc2,0xc9,0xf0,0x0d,0x97, - 0x63,0x1f,0x86,0x25,0xf9,0xc5,0x65,0x33,0x0e,0x29,0x5f,0x13,0xc9,0x8b,0xac,0x58,0x05,0xca,0x56,0xc0, - 0xf9,0x51,0x5c,0x0d,0x17,0xf9,0x74,0x3a,0x67,0x21,0x6e,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96,0x81,0x31, - 0xf8,0x1d,0x55,0x5a,0x4d,0x3d,0x76,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x7e,0x02, - 0xab,0xc5,0x63,0x14,0xcb,0x5c,0x81,0xcc,0x66,0x69,0xcb,0x3d,0x13,0x58,0x70,0x33,0xc2,0x45,0xad,0x57, - 0x90,0x9d,0xd5,0x1e,0xe7,0xa2,0xaf,0x75,0x9f,0x24,0xb8,0x94,0x67,0xb4,0xa5,0xfb,0xcb,0xc7,0x13,0x7b, - 0xb3,0x78,0x6d,0xdd,0xf4,0x6a,0xb9,0xc8,0x27,0x99,0x50,0xfe,0x49,0xad,0x26,0xa7,0xf1,0xc9,0x44,0xd5, - 0xa7,0x71,0xdd,0x0b,0x02,0x95,0x05,0x01,0xa1,0x90,0x20,0x92,0xc6,0xad,0x60,0x7b,0x08,0xdc,0x2e,0x2f, - 0x57,0xfb,0x1c,0x9b,0x05,0x49,0xbc,0x93,0x39,0x06,0xaf,0x09,0xa3,0x89,0x83,0x4e,0x54,0x18,0xe2,0x05, - 0x63,0x08,0x19,0xfe,0xd4,0xff,0x20,0x37,0x1f,0x74,0x42,0xdd,0xe6,0xfe,0xa9,0x99,0xb7,0x7b,0xe3,0xbe, - 0x66,0xc9,0x8c,0x07,0xa2,0x7e,0x24,0x1c,0x0f,0x56,0xb5,0xd5,0x7e,0xde,0xb5,0xda,0x87,0x6e,0x09,0x4e, - 0x11,0x7c,0xa5,0x0a,0x02,0x85,0xde,0xe6,0x26,0x76,0x56,0x89,0xd8,0x59,0xe2,0x62,0x61,0xd8,0x35,0xeb, - 0xc7,0xd8,0x6a,0xd2,0xb7,0xe2,0x2f,0x3b,0xb3,0x26,0x56,0xfa,0x79,0x12,0xdc,0xbb,0x77,0x45,0xc8,0x8c, - 0x11,0x28,0x08,0x87,0x24,0x08,0xb5,0xb8,0x90,0x32,0x76,0xa8,0xe5,0x9d,0xfb,0x32,0xf2,0xfb,0x63,0xa4, - 0x18,0x44,0x8b,0xe7,0x08,0xb2,0xd2,0xa1,0x38,0x3b,0xc8,0xa7,0x67,0xc4,0x77,0xee,0xe5,0x40,0x8f,0x9a, - 0x9f,0x4c,0x10,0xe5,0x09,0xe1,0xb0,0xb4,0xf1,0x8f,0x01,0x1f,0xc2,0xb1,0xe0,0xf5,0x22,0xe2,0xb8,0x3f, - 0x2d,0x71,0xdd,0x20,0x75,0x31,0xbe,0xaf,0x71,0xec,0x7d,0x65,0x4c,0x73,0x5c,0x68,0x93,0x9d,0x10,0x0d, - 0xee,0xdc,0x06,0x7b,0xe5,0x5e,0xb0,0x09,0xbc,0x05,0x48,0x1b,0x1f,0x8d,0xfb,0xc8,0x8d,0xa6,0xf0,0x49, - 0xe5,0x02,0x18,0x7a,0x97,0x59,0x9d,0x04,0xd1,0xa3,0x03,0x48,0x1d,0x71,0x3b,0xd7,0x4b,0x93,0x7a,0x4a, - 0xa9,0x4f,0x2a,0x1b,0xa5,0x37,0x7c,0xc1,0x1f,0xfb,0x25,0xc0,0x53,0x7f,0xb3,0x7f,0x38,0xbe,0xa5,0x5e, - 0xc7,0xee,0xfc,0x79,0x41,0x14,0x1b,0xb1,0xe2,0x3c,0x00,0x93,0xfa,0xa2,0x22,0x8c,0x8f,0xc1,0x6c,0x62, - 0x29,0xcd,0x25,0x38,0x4e,0x13,0x13,0x3e,0x3f,0x82,0x64,0xa5,0x16,0x7e,0xaf,0x92,0xdf,0x20,0x22,0xd8, - 0x9d,0xe0,0x8c,0x8b,0xe6,0x4d,0xf8,0x43,0x95,0xd4,0x50,0x69,0x8f,0x57,0x78,0x8e,0xe2,0xaf,0xc1,0xd2, - 0xfe,0x50,0xf9,0x62,0x2a,0x23,0x7f,0x16,0x0f,0x49,0xaa,0xe2,0x45,0x65,0x2a,0xe0,0xc0,0xb2,0xf8,0x5e, - 0xcd,0xa1,0xaa,0x89,0x56,0x1c,0x67,0xd9,0x90,0x2f,0x5c,0x17,0xe1,0x0e,0x04,0x2f,0xfc,0xfa,0x0b,0xfd, - 0xbc,0xbf,0xcf,0xa6,0x76,0x34,0x87,0xbf,0x71,0x4d,0x02,0x5a,0x1b,0x34,0x6e,0x62,0x9e,0xb7,0xc7,0xfb, - 0xbb,0x1e,0xaf,0x49,0xf9,0x9d,0xc6,0xaa,0x7e,0xab,0xa0,0x6e,0x74,0x9a,0x64,0xed,0xde,0xc9,0xbe,0x11, - 0x63,0xb9,0xd1,0xa6,0x89,0x83,0x7b,0x44,0x97,0x86,0xb8,0x43,0x91,0x6a,0xd4,0x77,0x76,0xa1,0x80,0x3c, - 0x32,0x44,0x78,0x4e,0xa8,0x8d,0xb3,0x1f,0xfe,0xb1,0xf2,0x09,0xaa,0xbd,0xbd,0x17,0xbe,0xe9,0xfb,0xc4, - 0x2b,0xf8,0xa2,0xfa,0x26,0x79,0xe2,0xc1,0xfd,0xdc,0x8f,0x1a,0xce,0xe4,0x61,0xb6,0x5e,0x33,0x1d,0xe9, - 0x09,0xb1,0x79,0x92,0x7c,0x67,0x43,0x99,0x4d,0x76,0xa0,0xe5,0xb5,0x80,0x5f,0xc6,0x28,0x1a,0x79,0x8e, - 0x79,0x8d,0x2f,0x15,0x69,0x10,0xa9,0xa2,0x89,0x86,0x67,0xb8,0x2e,0xf2,0x38,0xad,0x61,0xd8,0x53,0xba, - 0x37,0x5f,0x6a,0x76,0xe9,0x3c,0x3c,0x93,0xf2,0x8e,0x78,0x12,0xba,0xb7,0x97,0xec,0x57,0x49,0x67,0x33, - 0xdf,0xc5,0xd8,0xb4,0xc8,0x16,0xb7,0x91,0xbf,0xaf,0xba,0xe1,0x68,0x77,0xf2,0xd0,0x5d,0x0f,0xd8,0xdf, - 0x04,0xe1,0x0b,0xde,0x98,0xe2,0xc3,0xb6,0x41,0x08,0x63,0xc4,0x25,0x50,0xdf,0x57,0xdb,0x3c,0x22,0x5a, - 0xfb,0xa1,0x18,0xdf,0xea,0x73,0x10,0x96,0x3a,0x72,0x96,0x21,0xac,0x9c,0xc6,0xf7,0x1e,0x25,0x33,0x6d, - 0x9c,0xce,0x2a,0xa4,0x53,0xf5,0xfb,0x2a,0xea,0xe5,0x4c,0x11,0xd1,0xca,0x9b,0xaf,0xb6,0x33,0xc0,0xb2, - 0x09,0x4d,0x54,0xaa,0x5d,0x2b,0xb0,0x29,0xc1,0xe6,0xef,0x5a,0x71,0x0d,0x6e,0x01,0xb0,0x3c,0xa8,0x4e, - 0x61,0xa4,0x56,0x26,0x85,0xff,0x3e,0xfa,0xbe,0xd2,0x4c,0x6a,0x07,0x39,0x50,0x47,0x4f,0xce,0xa0,0x07, - 0xd2,0xb8,0xe3,0x4d,0x31,0x0e,0xf4,0xf5,0xd7,0xb1,0xb1,0x4e,0xe4,0x20,0xd1,0xce,0x17,0x80,0x3f,0xe0, - 0x70,0xcf,0xec,0x67,0xee,0xae,0x1e,0xa7,0xe4,0x0d,0xb2,0xaf,0x73,0x89,0x81,0x30,0x94,0x8a,0x5a,0x9f, - 0x5e,0xe3,0x53,0x9d,0xd1,0xf9,0x1c,0x9f,0x6d,0xc0,0xe3,0x7c,0xcf,0x2a,0xfa,0x59,0xa3,0xa6,0x08,0x18, - 0x6b,0x65,0xc6,0xdf,0xdb,0x90,0x00,0x9e,0xc3,0x61,0xdf,0x1c,0x19,0x87,0x9b,0xd6,0x4c,0xd9,0x44,0x5f, - 0xc4,0x2e,0x53,0x52,0x27,0x9d,0x0f,0xdb,0xd2,0x2d,0x3f,0xf5,0x2e,0x01,0x97,0xf5,0xf1,0x69,0xc9,0xb8, - 0x72,0x91,0xb3,0x42,0x14,0x95,0xeb,0x88,0x75,0xf9,0x69,0x12,0x04,0x5e,0xee,0x5c,0xdf,0x32,0x88,0x12, - 0x8a,0xef,0x8a,0x36,0x77,0x37,0x6b,0xf7,0xa4,0xbc,0x20,0x40,0x79,0x71,0xfc,0xfa,0x15,0x27,0x70,0xe9, - 0xaa,0x3f,0x04,0xae,0x67,0x02,0x55,0x52,0xd9,0x1a,0x6d,0x62,0xf2,0xf2,0x62,0x95,0x8d,0x80,0xf3,0x52, - 0x29,0xfa,0x06,0x4e,0x5a,0x56,0xd4,0x9c,0x6a,0xc0,0x3c,0x42,0x56,0xe8,0x17,0x81,0xf9,0x11,0x5f,0x6b, - 0x2c,0x52,0x36,0x69,0x3e,0x1d,0x9e,0xf1,0x6b,0x52,0x6a,0x2b,0x46,0x88,0xc8,0x10,0x1d,0xdf,0xde,0x98, - 0x35,0x9a,0x26,0x2b,0xb5,0x1b,0xce,0x92,0x34,0x12,0x69,0x43,0x4d,0xe9,0xb0,0xce,0x7e,0xfb,0xee,0xf8, - 0xe5,0xdb,0x37,0xa8,0x67,0x66,0xc4,0x3f,0xc4,0x10,0xf6,0xb0,0x21,0x84,0x1b,0xd8,0xc1,0xdc,0x5d,0x8c, - 0x25,0x8e,0xd2,0x5a,0x0f,0xc7,0xd7,0x1c,0xd8,0x38,0x43,0xde,0xf1,0x9f,0x59,0x31,0x61,0xb3,0x09,0x67, - 0x6a,0x1a,0xb5,0xaa,0xf7,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x6b,0x43,0xb6,0x89,0xf9,0x5a,0x1e,0x69, - 0x93,0x96,0x79,0xfa,0xfb,0x8d,0x0b,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x1b,0x82,0x68,0x22,0xae,0x6a,0x13, - 0x1d,0xf4,0x2d,0x67,0xaa,0xc0,0xd9,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68,0x3a,0x0a,0x92,0xb1,0x90, - 0xfe,0x31,0x48,0x48,0x6f,0x92,0x95,0xb6,0xbf,0x61,0x10,0x29,0xe5,0x16,0x40,0x2a,0xe3,0xf9,0x75,0x36, - 0xee,0xcc,0x5b,0x34,0xac,0x92,0xbe,0x99,0x7b,0x46,0x4b,0x5a,0xd6,0xf2,0x01,0xa9,0xe3,0xab,0xb0,0xf5, - 0xce,0xb1,0x13,0x3c,0x6f,0xc6,0xe6,0x73,0x0a,0xe5,0xc5,0x1d,0xda,0xd9,0xa3,0xbc,0x13,0xbb,0xe4,0xa2, - 0x69,0xcb,0xc0,0x58,0x60,0x54,0x76,0x64,0x5f,0xb9,0xdf,0x8f,0x48,0x74,0x61,0xb5,0x7d,0x2e,0xb7,0x72, - 0x4b,0x9d,0x1b,0x79,0x11,0x7f,0xf4,0x3e,0x9d,0x27,0xad,0xe2,0x6a,0x05,0x83,0xd4,0xb2,0x5a,0xf0,0x75, - 0xf2,0x53,0x4e,0x83,0x82,0xa0,0x96,0x07,0xda,0x87,0xb3,0x64,0xbe,0x5e,0xaf,0xd4,0x14,0xf3,0xa5,0x37, - 0xaa,0x54,0xce,0x5b,0x59,0xa7,0x74,0x6a,0x48,0x60,0x04,0xaf,0x77,0xb8,0xf8,0x4d,0x4d,0xa3,0x78,0x3a, - 0x12,0xc3,0xd6,0x36,0xb4,0xfa,0xda,0x76,0xa6,0x23,0xb3,0x51,0x8f,0x80,0xed,0x2f,0x09,0xde,0xae,0xac, - 0x26,0x34,0x82,0x7d,0x0b,0x3b,0x8b,0x49,0x72,0xd6,0x4d,0x76,0x8e,0xcb,0x19,0xcc,0xd5,0x87,0x26,0xfe, - 0x5a,0xd9,0xaa,0xad,0xec,0x7e,0xe6,0x54,0xfa,0x95,0xd4,0xc1,0xa1,0x31,0x67,0x84,0xa4,0x96,0xb0,0x69, - 0x1c,0x0c,0x3e,0xc0,0x12,0xb1,0x56,0x06,0x4b,0x71,0xf6,0x32,0x0a,0xd3,0x84,0xf3,0x09,0x78,0x67,0xf4, - 0x6b,0x8b,0xe9,0x58,0x27,0xc0,0x00,0xa9,0xcf,0x12,0xdc,0x34,0xbe,0x57,0x1a,0x47,0x0a,0xd5,0x72,0x0c, - 0x89,0xc0,0xc1,0xc2,0x38,0x36,0x21,0xf4,0x84,0x0e,0x3b,0x01,0x53,0x96,0x8d,0xb6,0x6b,0x79,0xf0,0x4b, - 0xbd,0xf7,0x20,0xb2,0x97,0x38,0xf5,0x78,0x84,0x7b,0xf5,0x70,0x70,0x2d,0x04,0x16,0x8b,0xb7,0x13,0xfd, - 0x20,0xbb,0xd0,0xb0,0x50,0xfb,0x17,0x3d,0xa2,0xc1,0x48,0x5b,0x5f,0xee,0xe0,0xe6,0x47,0xaf,0x53,0xac, - 0x91,0x09,0x58,0x49,0x9e,0xf5,0xcb,0x14,0xc3,0x82,0xb8,0x2c,0x33,0x40,0x3f,0xf6,0xfe,0xff,0xef,0xb3, - 0x20,0xc8,0x7c,0x7b,0x22,0x6c,0xba,0xf2,0x53,0xe5,0x10,0x00,0x13,0xd0,0x15,0xe1,0x9b,0x29,0x91,0xa9, - 0x73,0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0x31,0xd3,0xe6,0x4d,0x65,0x05,0x5b,0xb0,0x11,0xbc,0xa3,0xed, - 0x6d,0x53,0x95,0xc2,0x70,0x01,0xe2,0x06,0x4d,0x42,0x29,0xd1,0x3b,0xc7,0x7c,0x8f,0xc6,0x5d,0xdd,0xf4, - 0xe6,0xfc,0xac,0xd1,0xa4,0x8d,0xb6,0x00,0xd9,0xba,0xb5,0xc5,0x20,0x51,0x7b,0x1d,0x30,0xb3,0xc0,0x34, - 0x2d,0x90,0x1a,0xe3,0x26,0x8b,0x77,0x79,0x98,0x69,0xab,0xad,0xe0,0x2a,0x40,0x00,0xcc,0x90,0x95,0xc5, - 0x8d,0x46,0xe1,0x3d,0xb8,0xf1,0x1d,0xe3,0xc6,0x2d,0xf2,0xe4,0x9a,0xfb,0xf2,0x3e,0xf7,0x1d,0x68,0xde, - 0xa3,0xa8,0x2f,0x88,0x39,0x6e,0xda,0xd6,0x23,0xdb,0x32,0x6f,0x96,0x42,0x6c,0x27,0x73,0x5c,0xa0,0xc2, - 0xb3,0xfc,0x02,0x84,0xc2,0x81,0x04,0xf2,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xff,0x52,0xdd,0x54,0x5f,0x6d, - 0x83,0xc1,0xaa,0xb7,0x15,0x04,0xe0,0xd6,0x70,0xec,0x39,0x9d,0x76,0x38,0xe9,0x4f,0x52,0x40,0xe1,0x18, - 0xd0,0x26,0x17,0x95,0x71,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7,0x82,0x95,0x2a,0x98,0xd0, - 0x2b,0x75,0x02,0xc3,0x8b,0xa7,0xf9,0xf8,0x79,0x1e,0xbf,0xce,0x09,0xe3,0x77,0x7c,0xd0,0xfa,0x15,0x3b, - 0xb5,0x5a,0xc1,0x6e,0x9d,0xfd,0xcd,0xda,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd,0xde,0xde,0xe4,0x1b,0x68, - 0x16,0xe1,0x6e,0x36,0xea,0x77,0x6a,0x9a,0x3c,0xd2,0xf9,0x0a,0xd7,0x34,0xab,0x1e,0x25,0x11,0x9a,0xf2, - 0x9c,0x5e,0xfd,0x25,0x23,0x68,0xd7,0xb7,0xea,0x52,0x93,0x47,0x3a,0x80,0x07,0x9f,0x25,0x12,0x73,0xa2, - 0x3a,0x79,0x95,0xef,0x05,0x4f,0xe1,0x68,0x15,0x9c,0x5a,0x93,0x3d,0x58,0x45,0x95,0x26,0x6f,0x55,0xc9, - 0x55,0xd7,0xed,0xec,0x34,0x81,0xdc,0x1c,0xae,0x09,0x35,0x15,0x7c,0x73,0x47,0x25,0x13,0x93,0xd7,0x5f, - 0xc9,0x1c,0x95,0xc0,0xd8,0x95,0xe6,0xe8,0x00,0xea,0x07,0x77,0x1b,0x30,0x4f,0x78,0xca,0x26,0xe8,0x05, - 0x3d,0x52,0x81,0x94,0x0a,0x18,0x5b,0x77,0xa2,0x18,0x60,0x81,0x9d,0x8f,0xe7,0xba,0xc4,0x4b,0x94,0x98, - 0x53,0x89,0x89,0x2d,0x31,0x4b,0x28,0x3d,0x5c,0xb9,0xa8,0xed,0x29,0x68,0xdf,0x6f,0x0e,0xa8,0xd6,0xf9, - 0xf8,0x69,0x1e,0xbf,0xcc,0x99,0xdb,0x8f,0xc6,0x85,0x34,0x66,0xea,0x8e,0x4d,0x15,0xf1,0x81,0xd2,0xc1, - 0x9b,0x95,0x86,0x96,0x78,0xa5,0x2c,0xac,0xc4,0x33,0x5c,0xc9,0x7c,0x6c,0xae,0x0e,0x8c,0xa5,0x96,0xc1, - 0xe0,0x27,0x2d,0x4b,0x97,0xd9,0x33,0x91,0x40,0x82,0x53,0x1f,0x0d,0x3c,0x6e,0xdc,0x21,0x3d,0x32,0xf2, - 0x8f,0x47,0x36,0xde,0x62,0x94,0x25,0x36,0x04,0xb7,0x23,0xa2,0xcc,0x38,0x5a,0x97,0x8b,0xb5,0x25,0xca, - 0xbe,0x77,0xf9,0x07,0x58,0x4e,0xee,0x7d,0x68,0x24,0x50,0xd5,0xc6,0xdf,0x69,0x1f,0x7c,0x12,0xeb,0x30, - 0xfb,0xe2,0x6f,0xfa,0xba,0x5a,0x27,0x40,0xd8,0x3f,0xf4,0xcb,0xdf,0xf3,0x68,0x29,0x90,0x50,0x44,0xef, - 0xc0,0xad,0x0b,0xf7,0x04,0xa5,0x44,0x9c,0x9f,0xb3,0x33,0x85,0x7d,0xd3,0xd7,0x76,0xce,0x25,0xf2,0x9e, - 0x4b,0x0f,0x8d,0x0c,0x34,0x39,0x6b,0x0c,0x37,0xe4,0x36,0x74,0x64,0x7d,0xb5,0xd8,0xe6,0x92,0x3e,0x23, - 0x08,0xcf,0x2a,0xae,0xfc,0x90,0xa3,0x8a,0x81,0x20,0xc1,0x8d,0x77,0x8e,0xb6,0x41,0x44,0x32,0x42,0x8c, - 0x0a,0xfe,0xb3,0xbc,0xb1,0x09,0x48,0x86,0xf2,0x19,0xab,0xf2,0x66,0xe6,0xf5,0xb8,0x94,0x84,0xa9,0x49, - 0x78,0xcc,0x34,0xbb,0x24,0x2e,0x29,0x91,0xa6,0x34,0x4b,0xf5,0x57,0x97,0xf6,0xdd,0x7c,0x76,0x65,0x53, - 0xfc,0xef,0x16,0x94,0x7a,0x9e,0xc1,0xae,0xfc,0x19,0xaa,0x54,0x17,0xa6,0x72,0x75,0x83,0xf2,0xb8,0x06, - 0x5e,0x32,0xce,0x6d,0xaf,0xcc,0xc4,0xa8,0x6b,0xfb,0xed,0x63,0xae,0x57,0x1d,0xdb,0x26,0xd4,0x47,0xf3, - 0xb5,0xce,0x3a,0x72,0xfd,0xb3,0xdf,0x7f,0xa2,0xb4,0xa9,0xde,0x53,0xea,0x71,0x72,0x5d,0xa9,0x0f,0xf4, - 0x47,0x1b,0xf8,0x8f,0x3e,0x10,0x05,0x64,0x49,0xae,0xc7,0x49,0xf8,0x21,0x31,0xaf,0x91,0xe1,0x58,0x79, - 0x25,0xee,0x25,0xbb,0x8f,0xbd,0x20,0x4c,0xc4,0x91,0xb2,0xf5,0x7f,0x59,0x82,0x0e,0x44,0x7c,0x61,0x2c, - 0xc9,0xbd,0xf5,0xfa,0x18,0x87,0x27,0xad,0xc1,0xb1,0x80,0xc0,0xdb,0xe4,0xde,0x60,0xb0,0x1c,0x2f,0x69, - 0x37,0x3c,0xc3,0xe3,0xd5,0xf8,0x2a,0x9e,0xaa,0x77,0x78,0xbc,0x1c,0x5f,0xd2,0xbe,0xf8,0x35,0xb9,0x37, - 0xbe,0x5e,0xaf,0x17,0xf1,0x42,0x3d,0x45,0x6a,0x8f,0xff,0xcc,0xf1,0xf8,0x38,0xbe,0x50,0x2f,0xa9,0xe0, - 0xc7,0xf5,0xfa,0x26,0xbe,0x51,0xaf,0xe8,0xf1,0x68,0xbd,0x3e,0x8f,0xcf,0xd5,0x73,0xe2,0x5b,0xf2,0xf0, - 0x53,0x34,0xfe,0x24,0xd3,0x16,0x7f,0x8a,0xd4,0x9b,0x84,0x0f,0xc2,0x9a,0x15,0xf6,0xea,0x75,0xf2,0xae, - 0x09,0x9f,0x46,0xea,0x7d,0xe2,0xe0,0xc4,0xf7,0xd4,0x8d,0x6e,0xdf,0x10,0x48,0xd2,0x81,0x52,0xaa,0x77, - 0x91,0xe2,0xdf,0x67,0x74,0x54,0xbe,0x77,0xa0,0x39,0x0e,0xa9,0x04,0x67,0xbc,0x8d,0xd4,0xab,0xc1,0xe0, - 0x15,0x5b,0x5a,0xbc,0x1c,0x0c,0x5e,0xc2,0x9f,0xc1,0xab,0x55,0x07,0x6e,0xd7,0xf0,0x5a,0x5f,0x96,0x34, - 0xb0,0xef,0x68,0x3b,0x38,0x13,0x29,0xd7,0xa8,0x11,0x1a,0xc9,0x5c,0x83,0x4f,0x55,0x3a,0xb4,0xf2,0x19, - 0xc2,0x1e,0x31,0xab,0xe9,0x9e,0x4f,0x58,0xb0,0x76,0x3a,0xe2,0xc0,0x48,0x62,0x98,0x58,0x88,0x61,0x62, - 0x83,0x1d,0x66,0xf7,0x4d,0xf7,0x3d,0x8c,0xd4,0xd3,0xc1,0xe0,0x29,0x75,0xfd,0x3d,0xcc,0xa6,0x7e,0x1d, - 0x0c,0x7e,0x45,0x9f,0x31,0xe2,0x63,0x3d,0xa0,0x63,0x19,0xb1,0xba,0x6e,0x1d,0x24,0xc7,0xfe,0x7c,0xbc, - 0x6d,0x4d,0xc7,0x7a,0xfd,0x9a,0xce,0xf1,0x67,0x4d,0xf8,0x3c,0x1a,0x7b,0xa7,0xd0,0x7b,0xf5,0x3c,0x8a, - 0x8f,0x50,0x7c,0x4e,0x8d,0x01,0x89,0x28,0x6f,0x22,0xc4,0x2a,0xb7,0xf2,0xfb,0x43,0xdd,0xe0,0xaa,0xde, - 0x87,0x6d,0x0f,0x30,0x8d,0x40,0x9c,0xb0,0x9b,0xba,0x73,0xe4,0x37,0x1f,0xb6,0x26,0x38,0x24,0xce,0xd3, - 0x4d,0xa2,0x9d,0x31,0xe8,0xba,0xfb,0xd2,0xc5,0x1f,0x55,0xa6,0x33,0x29,0x22,0x75,0x49,0x80,0x88,0x40, - 0xab,0xd7,0x32,0x25,0x29,0x3c,0x2c,0xf8,0x77,0xd9,0x33,0x25,0x29,0xf1,0x50,0x98,0x12,0x2e,0xd5,0xea, - 0xd3,0xb1,0x4c,0xc9,0xc7,0xd6,0x94,0x1c,0xa9,0x8f,0x3c,0x25,0xa9,0x5a,0xa9,0x23,0x99,0x92,0x2b,0x50, - 0x66,0x29,0xbd,0xa9,0x6b,0xfe,0xe8,0x08,0x74,0xb6,0x36,0x34,0xd7,0xb8,0x32,0xf5,0xd1,0x99,0xf7,0xd6, - 0xc6,0x95,0x2e,0xdd,0xe0,0xca,0xfa,0x6e,0x5c,0x29,0x51,0x64,0xe5,0x2e,0x1a,0x8b,0x1a,0x0d,0x03,0x25, - 0xda,0xd8,0x5d,0x6e,0xd8,0x20,0x69,0xe3,0xa4,0x52,0x33,0xce,0x5c,0x25,0x12,0x2b,0x86,0x90,0x24,0xe4, - 0x2d,0xa9,0xc1,0x6a,0x53,0xf3,0x6a,0x90,0xdf,0xd2,0x24,0xf8,0xb8,0xef,0x92,0x12,0x05,0x7f,0xbd,0x42, - 0x16,0x61,0x48,0x5d,0x88,0xb0,0x62,0x2d,0xd8,0x4b,0x32,0x2e,0x6c,0xed,0x16,0x77,0xdd,0x50,0x12,0x7b, - 0x76,0x4b,0x89,0x73,0xbc,0x1a,0x54,0x76,0x2d,0xdb,0x7c,0x2e,0xdb,0xfc,0x18,0xdb,0xfc,0x8a,0x56,0x87, - 0x11,0xc2,0x79,0x34,0x3e,0x97,0xba,0xe2,0xf3,0x88,0xb1,0xa2,0x19,0x5a,0x7b,0xeb,0xfb,0x20,0x02,0x11, - 0x52,0x0f,0xc0,0xf0,0x1a,0xf4,0xa4,0x5b,0x18,0xe2,0x20,0x60,0xd7,0x82,0x43,0x1c,0x80,0x2c,0xa3,0x16, - 0x84,0x8c,0xc3,0x6b,0xc6,0x21,0x0c,0x39,0x54,0xe7,0x05,0x1b,0x8a,0x84,0xd8,0x10,0x8b,0xc1,0x60,0x81, - 0x37,0xe5,0x75,0x52,0x63,0x92,0x9b,0xf1,0x0d,0x6d,0xd7,0xb8,0x0c,0x7d,0x82,0xe0,0x99,0x77,0x22,0x6f, - 0x47,0xa7,0xa2,0xd9,0x90,0x0b,0x18,0x7d,0xed,0xf2,0x3b,0xc4,0xac,0x65,0x56,0xc2,0x05,0x40,0xd6,0x21, - 0xb6,0x61,0x4e,0x8c,0x50,0xc9,0x5e,0x00,0xa9,0x31,0x15,0xdf,0x0a,0x84,0x53,0x9d,0x1c,0x9c,0xc6,0x08, - 0x83,0x63,0xaf,0xfc,0x83,0x33,0x8c,0xa6,0x9f,0xbe,0xf1,0x34,0x7a,0xbf,0x6a,0x7a,0x65,0x17,0xea,0xfb, - 0xc6,0xc7,0x00,0xf7,0xf8,0x66,0x64,0xe7,0x38,0x62,0x49,0xef,0x97,0xe6,0x49,0x39,0x53,0xb9,0x7e,0xfa, - 0xd6,0x96,0xdc,0xa8,0x03,0xaf,0xaa,0x97,0x1d,0x2a,0xbe,0xf1,0x24,0x63,0x8b,0xd5,0xbc,0xc9,0x97,0xf3, - 0x4c,0xe8,0xf5,0xf5,0xba,0x3b,0x32,0x2f,0x72,0x1a,0x9b,0xba,0xc0,0x79,0xcb,0x3a,0xde,0x74,0x7d,0xb7, - 0xe0,0x07,0xe2,0x72,0x71,0x05,0x47,0x1e,0x95,0xc9,0x39,0xb1,0x7f,0xcf,0x61,0x05,0x04,0x7e,0x57,0xe1, - 0x2a,0xa7,0x39,0x5f,0xcc,0x4e,0x13,0x50,0x32,0xf8,0x98,0x84,0xc4,0x0b,0x08,0x76,0x13,0xf2,0x27,0x5e, - 0x04,0x61,0x70,0x5d,0xa0,0xab,0x74,0x61,0x56,0x54,0xc9,0x39,0xd6,0x4d,0x4d,0xe0,0xd6,0x97,0x33,0x37, - 0xd5,0x4e,0xdf,0x6f,0xdd,0x40,0xf9,0xaa,0x69,0x5f,0xd7,0xd2,0xbd,0x86,0xcf,0x66,0xed,0xde,0x84,0x62, - 0x58,0xeb,0xf9,0x91,0xf8,0x50,0x26,0xa2,0x52,0x8e,0xf3,0x86,0xcb,0x0a,0x44,0xed,0xa7,0xc5,0x8f,0x9e, - 0x2b,0x48,0x23,0xce,0xd0,0xc2,0xb3,0x38,0x99,0x29,0x8c,0xd0,0x9c,0x0f,0xc8,0x1d,0x85,0x78,0x90,0xdb, - 0x5f,0x1e,0xaa,0xf7,0x8d,0xcd,0x50,0x5a,0x90,0xef,0xd3,0x9b,0xef,0x5b,0x4c,0x67,0xd7,0xe1,0xe1,0x8a, - 0xdd,0x1d,0x20,0x75,0x16,0xb5,0x78,0x20,0x7c,0x66,0xde,0x48,0x4e,0xa3,0x08,0x93,0x72,0xec,0xa4,0xe1, - 0x34,0xaf,0xd9,0x46,0x59,0x32,0x7c,0xf5,0xc5,0x4f,0xde,0x4c,0xec,0xde,0xe1,0xf0,0x20,0x92,0xaa,0xac, - 0x8b,0x7c,0xc7,0x59,0xfc,0x13,0xfb,0xd3,0xdc,0x25,0x33,0xf3,0x5c,0x2f,0x3c,0xa9,0x28,0x93,0x01,0x5b, - 0x86,0xb1,0x66,0x15,0x71,0xc6,0xb7,0x4c,0x62,0x8d,0xdb,0xfa,0x98,0xea,0xf8,0x27,0xbc,0xc1,0xac,0x4b, - 0xa2,0x2f,0xe4,0xfc,0xd1,0x6b,0x80,0xaf,0xc0,0x74,0xd1,0x52,0xdb,0x81,0x94,0x0a,0x77,0x65,0x45,0x84, - 0x20,0x4a,0x6c,0xde,0x3c,0xd2,0xb1,0x95,0x08,0xfd,0x31,0x2a,0x34,0xfc,0x64,0xc7,0x9b,0x2f,0xa7,0x2f, - 0xae,0x71,0x39,0xc8,0x29,0xfb,0xf3,0xf5,0xc4,0xb4,0xfd,0xc1,0x49,0x92,0x1e,0xfc,0x32,0xdd,0xff,0x98, - 0x65,0xcb,0xfd,0x74,0x4e,0x87,0xc5,0x3d,0x7d,0xf3,0x20,0xd3,0x37,0x2e,0x50,0x76,0x18,0xb8,0x22,0x81, - 0xba,0xe5,0xae,0xc5,0xcd,0xd6,0xec,0xb8,0x3e,0xfb,0x40,0xfc,0x42,0x03,0x1b,0x93,0x44,0xac,0x1c,0x38, - 0xe7,0x9b,0x30,0xdd,0x2b,0xdb,0x5a,0xf2,0xbb,0x3e,0x4d,0x6d,0xbe,0x3d,0x5d,0x3d,0xd3,0x71,0x5d,0x9d, - 0x88,0x5b,0xb3,0xeb,0x77,0x25,0xc2,0x12,0xa1,0x34,0x01,0xe7,0x13,0x22,0x8c,0x39,0x34,0xc8,0x3c,0xa7, - 0x4f,0xdf,0xe3,0x1e,0x78,0x3f,0x66,0xbd,0xbf,0xbc,0x52,0x01,0x81,0xb8,0xb2,0x4e,0x36,0x52,0x9b,0xbe, - 0xda,0x62,0xd6,0xec,0x17,0xfc,0xc3,0x77,0xa8,0x35,0xe5,0x92,0x5e,0xe9,0x2f,0x30,0x58,0xb5,0x5e,0xe7, - 0xb6,0x0b,0x18,0xc2,0xd4,0x68,0x20,0x4b,0xdd,0x15,0x16,0x0c,0x8f,0x4a,0x77,0x51,0x3d,0x11,0x99,0x3f, - 0x65,0xe7,0x1f,0xf3,0xc6,0xf2,0x9f,0x49,0xc0,0x99,0x08,0xa8,0x17,0x06,0x7b,0xd5,0x5e,0xb0,0xfc,0xa4, - 0x58,0xd5,0xbf,0xfc,0x14,0x05,0xaa,0xf4,0x00,0xd8,0xf0,0xe2,0x49,0x70,0x50,0xfb,0x7a,0xfa,0xef,0x5b, - 0xbb,0xae,0x19,0x3f,0x2b,0xe3,0xb7,0xa5,0x93,0xe0,0x1b,0xa9,0x58,0xd1,0xd2,0xd2,0xe9,0xec,0x7b,0x25, - 0x6e,0xdd,0xf5,0xc3,0xc6,0x5b,0xec,0xad,0x15,0xd4,0xcc,0x48,0x1f,0x72,0xac,0x80,0x4c,0x59,0xe3,0x8a, - 0xb8,0x51,0xc6,0x1c,0xa2,0x75,0x97,0x6f,0xf7,0x66,0x57,0xe5,0xcc,0x04,0xec,0xfd,0x20,0x3a,0xde,0xb2, - 0x76,0x8d,0xc4,0xa3,0x84,0x21,0x71,0x8e,0x5c,0x4d,0xa4,0x04,0xb2,0xfd,0xa0,0x2a,0x27,0xfe,0x05,0x36, - 0xdf,0x9a,0x83,0x6d,0x5b,0x75,0xcf,0x56,0x2c,0x04,0xa8,0x37,0x84,0x5f,0xe4,0x6e,0x47,0x0e,0x73,0x06, - 0xdf,0x03,0xcf,0xf2,0x29,0x13,0xd7,0xa2,0x5d,0xdf,0xb8,0x49,0x9b,0x33,0xdc,0x55,0x65,0x95,0xcd,0x6c, - 0x95,0xf4,0xcc,0x91,0xd3,0x8c,0x3f,0x54,0x4b,0x52,0xe4,0x19,0xd1,0x8e,0x0a,0x09,0xf5,0x69,0xaf,0x9a, - 0x29,0x20,0x73,0x75,0xee,0x46,0x10,0x51,0xea,0x40,0x9e,0x36,0x56,0x34,0xa8,0x50,0xf4,0xb5,0xa3,0x54, - 0x0d,0x10,0xee,0xc2,0xda,0x39,0xc3,0x5a,0x9b,0xde,0xa1,0xef,0xd2,0xdd,0xc3,0x7c,0x06,0x9e,0x54,0xba, - 0x69,0x47,0xf7,0xe6,0xaf,0x60,0x05,0x25,0x86,0x3c,0x1c,0xf6,0x20,0xe0,0x5b,0xf0,0xa8,0x1a,0x0e,0xb9, - 0x85,0x40,0xda,0x3a,0x93,0x92,0xf6,0x75,0x09,0xa2,0x32,0xec,0x37,0x7e,0xb2,0x1c,0x84,0xee,0x5b,0x13, - 0xed,0xb8,0xb2,0x45,0x81,0xdf,0x6d,0xa9,0x63,0x91,0x9d,0xdd,0x0f,0x82,0xfb,0x6c,0x48,0x7e,0xdf,0x06, - 0x2c,0xbd,0x4f,0x8b,0xbc,0xdd,0x53,0x20,0x72,0x5b,0x3b,0xbd,0xb8,0x5a,0x15,0x5f,0xb0,0xdc,0x9d,0x20, - 0x19,0x71,0x68,0xd6,0x2a,0xaf,0x4d,0x17,0x2d,0x72,0xa2,0x2e,0x2a,0x6d,0x7e,0x24,0x45,0x8a,0x79,0x5e, - 0x64,0xfb,0xb6,0x65,0x29,0x2e,0xa9,0xc7,0x3a,0x91,0x2d,0x2a,0x3b,0x57,0xde,0x10,0x1c,0x2f,0x4a,0xdf, - 0x43,0x26,0x4b,0x16,0x70,0x68,0x63,0x80,0xa4,0x9e,0x8e,0xb6,0x61,0x52,0x79,0xe6,0xbb,0x4c,0xd1,0x58, - 0x98,0xe3,0x8a,0x1b,0xda,0x27,0x85,0x15,0x80,0x8d,0x9a,0x47,0x85,0x89,0x3c,0x50,0x25,0xf0,0x5b,0x6a, - 0x64,0xb3,0xa8,0x52,0x9e,0x85,0x9c,0x7a,0x59,0x6a,0x71,0x95,0x96,0xfa,0x5f,0xa6,0xf5,0x93,0x9c,0x91, - 0x1e,0x0c,0x5c,0x55,0xe8,0xdf,0xa9,0x64,0xe1,0x58,0xdf,0x0f,0xf4,0x93,0x44,0xb9,0xf1,0xc3,0xde,0xbb, - 0xfb,0x32,0xba,0x2a,0x01,0x8e,0x02,0x69,0x24,0x4c,0x87,0x11,0xae,0xfb,0x86,0xe1,0x04,0xae,0xe4,0x8a, - 0xf4,0xe5,0x10,0x06,0xc5,0xfc,0x54,0x42,0xc3,0x43,0x0c,0xaa,0xeb,0x9b,0x9f,0xfd,0x9e,0xb3,0x69,0x18, - 0x3f,0x73,0xf0,0x01,0xb6,0x64,0x96,0xa8,0xa4,0x38,0x30,0xc4,0xe8,0xf8,0x40,0x69,0xe5,0x74,0xb3,0x98, - 0x07,0x12,0xff,0xec,0x1a,0xf1,0x3b,0xa5,0x29,0x4f,0x71,0xcd,0x34,0xfa,0x84,0xa6,0x65,0xce,0x39,0x52, - 0x08,0xf4,0xde,0x4d,0x31,0x19,0x0c,0xd8,0x0e,0xd1,0x45,0xb5,0xe4,0x5c,0x85,0x68,0x45,0x2a,0xb8,0xc7, - 0x96,0x77,0x01,0xdb,0x77,0x43,0x97,0xef,0x20,0x64,0x30,0x38,0x2b,0xed,0x85,0xb7,0x06,0xbd,0x09,0xb3, - 0x45,0x44,0x37,0x9b,0x6e,0x22,0xd6,0x56,0xcc,0xc0,0x58,0xf9,0x01,0x65,0x9f,0xf6,0x0f,0xf8,0xa9,0x0c, - 0xb8,0xd0,0xe5,0x69,0xf9,0x77,0xfd,0xcb,0x19,0xe7,0x49,0x6b,0xf6,0x5e,0xca,0xec,0xe9,0x35,0x7a,0xcd, - 0x61,0x1d,0x68,0x70,0xf3,0x93,0xc3,0xd3,0xd1,0x4a,0xcf,0xb4,0x95,0xf3,0x59,0xbf,0xae,0xbd,0x43,0x8c, - 0x64,0x9a,0x54,0xc4,0xf0,0xe5,0xc4,0xdf,0x95,0xc4,0xd3,0xad,0x20,0xe3,0x52,0x61,0x38,0x4b,0xb2,0xa8, - 0xe5,0xa3,0x87,0x38,0x3d,0xf6,0x75,0xcb,0x44,0x74,0xaa,0xb4,0x47,0x54,0xbc,0xd4,0xb6,0x9d,0x97,0xb0, - 0x6c,0x89,0xaf,0x94,0x35,0x43,0x8c,0x17,0x1b,0x0e,0xb2,0x61,0x6c,0x07,0x79,0x02,0xf4,0x7c,0x74,0x8c, - 0xf9,0x4a,0xbe,0x75,0xc7,0x9f,0xdd,0x60,0x01,0x21,0x36,0x56,0xb5,0xfa,0xec,0x54,0x0f,0x06,0x7a,0xae, - 0x8d,0x97,0x89,0x56,0x5b,0xab,0xa5,0xba,0x54,0xd4,0x99,0x4d,0x8b,0x9f,0xfa,0xd9,0x9d,0xe6,0x0c,0xd4, - 0x89,0xb1,0x54,0x24,0x48,0x0e,0xa2,0x3e,0xf3,0x35,0x63,0x97,0x2c,0x13,0xfd,0x4a,0x87,0x7c,0x32,0xfc, - 0x0a,0x2b,0x71,0xe9,0xdb,0xa4,0x38,0x79,0x78,0xaa,0xf5,0x47,0x86,0xe2,0xa2,0xa5,0xd0,0x29,0x76,0xd5, - 0xde,0x18,0xa0,0xce,0x75,0x7d,0xcf,0x5d,0x04,0xe0,0x72,0x8c,0x38,0x4e,0xf3,0x3c,0xad,0x29,0xd7,0x7c, - 0xf0,0x5c,0x3e,0xa8,0x86,0x39,0xd1,0x34,0x29,0xd1,0x8e,0x87,0x49,0xe9,0xea,0x55,0x25,0xb5,0xca,0x16, - 0x18,0x26,0xfb,0x61,0x52,0xba,0x8e,0x20,0xf8,0x8a,0xa9,0x51,0x55,0x7c,0x2d,0x5e,0xc1,0x31,0x0b,0xda, - 0x8e,0x24,0xff,0xb6,0x2a,0x99,0x7c,0x76,0x54,0x12,0x56,0x60,0xba,0x8c,0x79,0x14,0x3f,0x81,0x43,0xaf, - 0xb6,0x93,0x8c,0x9e,0xc7,0xb3,0x86,0xf6,0x85,0xce,0xdf,0x35,0xed,0x55,0xe3,0x73,0xd3,0x44,0xb7,0xcf, - 0x8c,0xb0,0xd2,0xb3,0x77,0xee,0x32,0x83,0xe3,0xc0,0x44,0x7b,0x8a,0x6f,0x83,0x38,0x28,0xf1,0xe3,0x02, - 0x3f,0xe8,0xbb,0xf6,0xf6,0x12,0x18,0xfc,0xe5,0x7b,0xf7,0x83,0xf8,0xfe,0x5e,0x86,0x78,0x41,0xec,0x56, - 0x0e,0xbb,0x6f,0x77,0x9f,0xb4,0x27,0xf2,0x66,0xc3,0x45,0x67,0x16,0x5d,0x58,0xaa,0xd6,0xde,0x4f,0x6a, - 0x25,0x99,0xc4,0xb7,0x6e,0x82,0xed,0xc0,0xd5,0xf6,0xa2,0xb3,0xe0,0x04,0xa6,0xe5,0x6d,0xe1,0xbc,0xd3, - 0x89,0xea,0xeb,0x48,0x8c,0x27,0xa0,0x82,0x66,0xf2,0x34,0xd0,0x27,0xdf,0x77,0xa5,0x21,0x9a,0xc5,0x71, - 0x8c,0x68,0x9f,0xef,0x3b,0x49,0x0c,0xa0,0xce,0xa8,0xd7,0x58,0x39,0x04,0x44,0xe8,0xe1,0x4f,0x6a,0x7c, - 0x57,0x59,0x84,0xc4,0x61,0x29,0xbd,0xc2,0xf4,0xed,0xbf,0x39,0x44,0x50,0xb9,0x97,0xf0,0x83,0xfa,0xb6, - 0x64,0xad,0x79,0x6a,0x8c,0x7d,0x5d,0xa0,0xec,0xec,0x53,0x2a,0xd1,0x52,0x6a,0x13,0x08,0xdc,0xab,0x69, - 0x44,0x15,0xfc,0x5c,0x86,0x27,0xc1,0xa4,0xa9,0xe6,0x34,0x08,0xb6,0x1a,0xa6,0xdf,0x74,0x8e,0xbf,0x8b, - 0xac,0x49,0x83,0xd3,0xbb,0x6d,0xda,0x77,0x27,0x4c,0x32,0xde,0x61,0x12,0xaf,0xd1,0xeb,0x30,0x80,0x99, - 0xfe,0xf7,0x44,0x84,0xd9,0xc9,0x5a,0xaf,0xc1,0x2b,0x8a,0x39,0x8a,0xed,0xb0,0x71,0x31,0xb6,0x96,0x43, - 0x61,0xbe,0x47,0x58,0x1e,0x56,0x1e,0xf7,0xcf,0x57,0x4d,0x53,0x16,0xf7,0x31,0x0d,0x52,0x29,0xc2,0x0a, - 0xec,0xa5,0xdc,0x70,0x53,0x98,0x6a,0x29,0x8d,0x16,0xc1,0xaa,0xfe,0xe8,0x80,0x1f,0x61,0x3b,0x4a,0x4d, - 0xa5,0x17,0x77,0x33,0xd4,0x95,0xdc,0x82,0xba,0x0e,0x8b,0xb1,0x5e,0x93,0xbd,0xc0,0x64,0x04,0x71,0x35, - 0x66,0xf3,0x59,0x93,0x11,0xb9,0x1c,0xb3,0x80,0x0c,0x69,0xa6,0xad,0xf5,0xba,0x32,0xb5,0xc4,0x7d,0xcd, - 0xd8,0x8a,0x7c,0xe8,0x6c,0xbc,0xf3,0x98,0xc3,0xf2,0xbc,0xe4,0xe3,0xe1,0xf0,0x20,0xf2,0x63,0xf2,0x9b, - 0x69,0xd4,0xe1,0xaf,0x89,0x70,0xa4,0xea,0x34,0x9c,0x7d,0x5b,0xba,0x50,0xc9,0xc1,0xd9,0xc7,0xb0,0x5d, - 0x94,0x98,0x87,0x0e,0x22,0xce,0x78,0xe3,0x74,0x53,0x0b,0xa4,0xba,0x4f,0x7d,0xf3,0xd0,0xa2,0x65,0x38, - 0x85,0xf0,0x3e,0xff,0x44,0x04,0x60,0x63,0xb2,0x2a,0xc1,0xe4,0xe2,0x00,0x26,0x86,0x1c,0x44,0xd6,0xee, - 0x0f,0x68,0xf1,0xc7,0x95,0xd8,0x45,0xc5,0xf7,0xcf,0x26,0x3a,0xb8,0xc1,0x7d,0x9e,0x36,0xd5,0x89,0xcd, - 0x1c,0x17,0xdd,0x68,0xcd,0x1e,0x02,0xab,0xdc,0x1e,0x36,0x36,0x47,0x50,0x6f,0x30,0xc1,0x2e,0xaf,0xef, - 0xaa,0x72,0x92,0xd5,0x75,0x36,0x35,0x4b,0xaf,0x0d,0x68,0x24,0xbe,0x8e,0xf8,0x11,0xec,0xca,0xc3,0x56, - 0xd1,0xd4,0x2f,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x56,0xc1,0xb6,0x61,0xa8,0x17,0x2c,0x04,0xa5,0xd9,0xa5, - 0x86,0x71,0x31,0xbb,0x00,0x58,0x74,0x3e,0xc6,0x6c,0x7b,0xef,0x31,0xed,0xec,0xda,0x2b,0xf0,0xb0,0x53, - 0xe0,0x21,0x7c,0xd4,0x2c,0xbb,0xe6,0x77,0x83,0xc9,0xa1,0xb3,0x79,0xa8,0x6d,0xbf,0x1d,0xc1,0x0b,0x63, - 0xed,0x14,0x41,0xaf,0xbc,0xa9,0xd7,0x53,0x46,0x53,0x4d,0x6b,0xe9,0x8d,0x2f,0x9f,0xf1,0xf0,0xf2,0xd9, - 0xd6,0xe8,0x6a,0x37,0x0d,0x8e,0x00,0xdf,0xed,0x10,0xe0,0x42,0xb8,0xf7,0x71,0x20,0x3d,0x73,0xe4,0xec, - 0x0d,0x0c,0x73,0xb2,0x5e,0x7b,0x94,0x3e,0x61,0xc4,0x79,0x61,0x74,0xfa,0xc1,0x19,0xdb,0x2b,0xef,0x85, - 0x15,0xcf,0x47,0x25,0xb1,0xec,0x5c,0x60,0xf4,0xe0,0x16,0x93,0x24,0xc1,0xd1,0xef,0x70,0xbf,0xb9,0x2e, - 0xb4,0x4d,0x05,0x8d,0x3a,0x46,0x69,0x11,0x82,0xb5,0xd0,0xf3,0x26,0xe0,0xd5,0xb1,0xc6,0xfb,0xda,0x85, - 0x21,0x30,0x3b,0x68,0x17,0xb7,0x99,0xa6,0xb4,0x95,0xe1,0x29,0x4e,0xb8,0x87,0x79,0x04,0x87,0x41,0xd0, - 0x35,0x04,0xca,0x92,0xb7,0xb0,0x84,0x4d,0x92,0x29,0xc3,0xdb,0x2a,0xa5,0xb1,0xb0,0x75,0xb5,0xcc,0x25, - 0x8f,0x5f,0x26,0xde,0x05,0x80,0xf5,0xc9,0x8f,0xb6,0x68,0xb4,0xcd,0x6e,0x8c,0x51,0x6f,0x3c,0x67,0x7d, - 0x30,0x44,0x61,0x76,0x93,0xd3,0x4e,0xd2,0x6e,0x4f,0x13,0x51,0x16,0xb7,0x66,0x4d,0x37,0xef,0x1a,0x54, - 0xdc,0x15,0x4b,0x67,0x82,0x07,0x67,0x8a,0x6d,0x6c,0xa2,0xa0,0xd9,0x45,0xe8,0x32,0x3c,0xb6,0x07,0xe8, - 0x27,0x7a,0x50,0x24,0x68,0xfd,0x3e,0x26,0x97,0xd6,0x7c,0x2f,0xa0,0xa7,0x56,0xd3,0x61,0xce,0x2f,0xb9, - 0xed,0x47,0xfb,0x12,0xce,0xc6,0x89,0x3e,0xdc,0xf5,0x09,0xc4,0xdb,0x14,0x89,0x9f,0x73,0x52,0x9e,0x32, - 0xce,0x70,0x4e,0xf2,0xfa,0x41,0x43,0x0b,0x4c,0x66,0xb8,0xe7,0x1e,0x92,0xda,0xba,0xb0,0xa7,0x83,0x16, - 0xb0,0x77,0x9a,0x2e,0x86,0x91,0x73,0xa7,0x17,0x73,0xb9,0xed,0x13,0x20,0x22,0xfc,0x82,0x66,0x3c,0xdc, - 0xfe,0xde,0x44,0xdf,0x8b,0xf6,0x2c,0x5e,0x92,0x78,0x28,0x81,0x12,0x4f,0x6b,0x3b,0x0d,0xd6,0x8b,0xc2, - 0xc7,0x64,0x2d,0x6c,0x24,0x31,0xd8,0xff,0xd4,0xf6,0x6c,0xb5,0xe5,0x0b,0x18,0x82,0x80,0x25,0x2c,0x5a, - 0x67,0x5c,0x8d,0xb4,0x29,0x2f,0x64,0x0c,0xb7,0xc4,0x8b,0x03,0xb3,0x1b,0x87,0x16,0xeb,0x68,0x6b,0xcf, - 0xaf,0x71,0x40,0x44,0xb8,0x37,0x72,0xf6,0xaa,0x43,0x17,0x5f,0x4e,0xf7,0xf6,0xf8,0xb5,0xc0,0x58,0x62, - 0x5d,0x60,0xd3,0x46,0xb4,0x9e,0x3b,0xc1,0x76,0xf4,0xed,0xd6,0x80,0x30,0x50,0x47,0x9d,0x85,0xd6,0xb8, - 0xdf,0xd3,0x2a,0xba,0x3d,0x5d,0x8d,0x2b,0x39,0x3f,0x64,0xb6,0xc6,0xa9,0x3e,0x4e,0xf4,0xb1,0xc2,0xf7, - 0x9d,0x18,0x51,0x8d,0xbd,0x0d,0x99,0x00,0xe4,0x8c,0x28,0xd0,0x40,0xdb,0x29,0x34,0x26,0x7a,0xa1,0xa3, - 0x2f,0xb2,0x4f,0x4b,0x3e,0xdc,0x53,0xf1,0x8f,0x88,0xc6,0xb4,0xad,0x89,0xf1,0x3c,0x9f,0x97,0x93,0x8f, - 0x1a,0x7b,0xd8,0x8e,0xd1,0x22,0x7a,0x99,0x9b,0x0e,0xd1,0x6c,0xc9,0xdd,0xee,0x3d,0x35,0x93,0x16,0x0a, - 0x24,0xf4,0xa5,0xaa,0xa4,0x1f,0x39,0x76,0xef,0xc9,0xbe,0xd5,0x61,0x2d,0xb4,0x83,0xaf,0x17,0x45,0x22, - 0x3e,0x09,0xd8,0xd9,0xd7,0x04,0xbc,0xe8,0xbb,0x37,0xeb,0xb6,0x34,0x61,0xf6,0xb5,0xf4,0x71,0xde,0xba, - 0x8a,0xfb,0x44,0xa2,0x5b,0x9c,0x8e,0xc0,0x28,0x53,0x99,0xdd,0x39,0x62,0x65,0xd3,0xde,0xb8,0x4e,0x2b, - 0xdc,0x1d,0x92,0x8a,0x33,0xef,0x81,0xaa,0x89,0xec,0x16,0x46,0x90,0x88,0x6f,0x1d,0x12,0xe3,0x7e,0x60, - 0x79,0x42,0x4e,0xd4,0x2f,0x70,0xbf,0xd9,0x0b,0x4b,0xc1,0xb7,0x04,0xfb,0x42,0x03,0xe1,0x58,0xb2,0xb4, - 0x93,0xef,0x7f,0xb4,0x45,0x7c,0xe8,0x62,0x91,0xa0,0x90,0x72,0x48,0x67,0xcc,0xf8,0x3e,0xf3,0x9a,0xdc, - 0x0a,0x3d,0xa0,0x05,0x93,0x6b,0x09,0x57,0x6a,0xc9,0x71,0xa2,0x3d,0x95,0x3a,0x5a,0x59,0xf6,0xe1,0x46, - 0xb9,0xc8,0x4a,0x93,0x71,0xdd,0x66,0x19,0x4e,0x6d,0x84,0x27,0x8d,0xba,0xf9,0x62,0x95,0xbd,0xa4,0x02, - 0xe4,0x47,0x4a,0x0b,0x08,0x91,0x02,0x61,0x22,0x1f,0x2f,0xe2,0x4f,0x13,0x48,0x48,0x80,0x99,0xce,0xa4, - 0x27,0xce,0xa4,0x5f,0x2f,0x93,0x77,0xaa,0x2b,0xc1,0xaf,0x31,0x50,0x84,0x94,0x58,0xb2,0x27,0x24,0x32, - 0xe9,0xc9,0x4b,0xf7,0xb8,0x65,0xe4,0xde,0x87,0xd8,0x95,0x7d,0x9f,0x80,0x7c,0x69,0x31,0xee,0x3b,0x51, - 0x94,0x38,0xe0,0x8a,0x52,0xef,0xdb,0xac,0x70,0xd8,0x89,0x7d,0x71,0xe9,0x63,0x3f,0x8b,0xd8,0xa7,0x30, - 0xd3,0xa8,0x44,0x9f,0xaf,0xdc,0x3a,0x3f,0x13,0x0b,0xb6,0x37,0x2b,0x4c,0x8e,0x9e,0x37,0xa5,0xbd,0x52, - 0x75,0x41,0xe3,0x8b,0x60,0xcb,0x4a,0xd4,0x61,0x5b,0x56,0xdc,0x19,0xa5,0x30,0x98,0x3e,0x9d,0xa0,0x76, - 0x0f,0x0d,0xa4,0x99,0xc9,0xf1,0x3d,0x23,0xbd,0xf2,0x7e,0xb2,0x62,0xdc,0xdd,0xfa,0xca,0x91,0x22,0x42, - 0x03,0x1a,0xd1,0xa0,0xee,0x1e,0x5f,0x44,0x13,0xec,0xf9,0xe5,0xec,0x97,0x2e,0xc0,0xab,0x14,0x66,0xad, - 0xa1,0x97,0x8a,0x2b,0x99,0xb4,0x40,0x54,0x12,0xe2,0xb3,0x15,0x31,0x47,0xad,0x50,0x30,0xe9,0x5d,0xfc, - 0xce,0x4e,0x17,0xb1,0xd9,0x8c,0x42,0x53,0x96,0x45,0x8b,0xa4,0x73,0xb1,0xce,0x5a,0x04,0x65,0xa1,0x09, - 0xca,0xc2,0x12,0x94,0x45,0x87,0xa0,0x2c,0xba,0x04,0x65,0xd1,0x21,0x28,0x8b,0x5e,0x82,0xb2,0xf8,0xcf, - 0x09,0x4a,0x33,0x20,0x4d,0x51,0xca,0x4b,0x1c,0xdc,0xca,0x6e,0xc0,0xfc,0xce,0x8a,0xd8,0xab,0x41,0x3b, - 0x6b,0x14,0x6e,0x71,0xa2,0x56,0x7d,0x61,0x4b,0xca,0xcb,0x26,0x33,0x63,0xea,0xf4,0x8c,0xff,0xec,0x05, - 0x84,0x91,0xc3,0x39,0x07,0x51,0x8e,0x5a,0x17,0x57,0x03,0x3b,0xbb,0xb7,0xb8,0xaf,0x08,0x0e,0x07,0xbe, - 0xfe,0x95,0xba,0xba,0x61,0x4a,0x2c,0xc5,0x7d,0xf6,0x75,0x97,0x53,0xa7,0x83,0x3d,0x02,0x48,0xe8,0xb8, - 0xe9,0x0c,0x39,0xfc,0x1c,0x1b,0xef,0xc9,0xbd,0xcc,0x8f,0x8c,0x4e,0x43,0x74,0x0e,0x93,0x36,0xcb,0x24, - 0xed,0x05,0x6d,0x1c,0x67,0xc3,0xb0,0xdb,0x44,0xbb,0x3b,0xda,0x44,0x96,0x31,0xc8,0x6b,0x9b,0xff,0xd9, - 0x80,0x6e,0x26,0x12,0xe9,0x01,0x87,0xff,0x39,0x94,0x38,0x84,0x6c,0x3f,0xa7,0x61,0xa5,0xe0,0x88,0x3f, - 0xa5,0x09,0x76,0xa8,0x89,0xc4,0x76,0x1b,0xb1,0x61,0xd3,0x3c,0xc1,0x07,0x2d,0xba,0x8e,0x04,0x8e,0x8e, - 0x75,0xd9,0xb1,0x13,0x64,0x77,0xe9,0x9d,0x3b,0x98,0xfc,0x56,0xa5,0xc2,0xe0,0xb6,0x67,0x1a,0x8e,0xa4, - 0x84,0x68,0x09,0xab,0x96,0x32,0xcf,0x25,0x6f,0xc7,0x8d,0xf6,0xbe,0xb0,0xd0,0xe9,0x59,0x6d,0x3f,0x50, - 0xf7,0x1e,0xa8,0x40,0x93,0xec,0xd9,0xf0,0xba,0x4a,0x97,0x4f,0x8d,0xcf,0x81,0x7b,0x85,0xcd,0x84,0xce, - 0xb5,0x6a,0x4f,0xaf,0x88,0x4d,0xe3,0x72,0x5e,0xb0,0xa5,0x79,0x4f,0xa8,0x7f,0x37,0xd7,0x12,0x8c,0xdc, - 0x0f,0xc8,0x95,0x26,0xa5,0xb7,0x00,0xa5,0xe7,0xd9,0xc4,0xbb,0xba,0xc5,0x2f,0xa5,0x62,0xfd,0x25,0xec, - 0x91,0x79,0x37,0xbe,0xae,0xc4,0x57,0x10,0x1a,0x0b,0x53,0xc3,0x1c,0xd0,0xc6,0xed,0x84,0x11,0xf7,0x74, - 0x0b,0xaa,0x27,0xa6,0x95,0x8d,0x4f,0x59,0xd9,0xee,0xe4,0x1a,0x1e,0x10,0x57,0x03,0x97,0x4b,0x21,0x44, - 0xa5,0x4f,0xa2,0xc0,0xfb,0xa3,0x4d,0xb2,0x94,0x8b,0xac,0x0f,0x79,0xad,0x80,0xc9,0x35,0x99,0x13,0x81, - 0x62,0x7c,0xa8,0xa9,0x45,0x76,0x5a,0xfa,0x8f,0xab,0x6d,0xfc,0x5a,0x79,0x75,0x0e,0x23,0xef,0x5a,0xb9, - 0xb0,0x64,0xfb,0xd7,0x9b,0xf3,0xec,0xc8,0xb2,0x48,0x31,0xc7,0xe9,0xed,0xba,0x6e,0x19,0x53,0x57,0xe1, - 0x39,0x69,0xcc,0x63,0x4d,0x8b,0xc6,0x5f,0xd8,0x24,0x28,0x89,0x6d,0x04,0xc0,0x31,0x9c,0xc3,0x15,0x88, - 0xc1,0x2d,0xf2,0xa0,0x92,0x58,0xd3,0xec,0x43,0x1d,0x07,0x67,0x57,0x20,0xf0,0x1f,0x42,0xc3,0x50,0x40, - 0x4a,0xce,0x95,0x17,0xde,0xde,0x8d,0xa7,0x45,0xd8,0x15,0x99,0x48,0x0d,0x11,0xd7,0x31,0xd2,0x66,0xda, - 0x46,0x75,0x02,0xc1,0x61,0x79,0xd7,0x21,0x31,0xe9,0x95,0x1b,0xee,0x85,0x35,0x63,0xee,0x1a,0xd4,0x8a, - 0x27,0xfc,0x58,0xf9,0x9f,0x5a,0xcd,0x21,0x8b,0x06,0x08,0xed,0xf5,0xa8,0xca,0xda,0x8c,0xb9,0xe7,0x4b, - 0xdb,0xd1,0xc9,0xd2,0xb9,0xf1,0x07,0x17,0x39,0x37,0x22,0x7a,0xad,0x0c,0xf5,0x17,0xdf,0xdf,0x9b,0x22, - 0x44,0xa1,0x91,0x7e,0xa9,0xc0,0xdd,0xac,0xee,0x51,0x53,0x9e,0x93,0x6a,0x2b,0xfa,0x85,0xdb,0xdc,0xbf, - 0xac,0x1e,0x1e,0x3c,0xfc,0xc7,0x83,0x0b,0x15,0xfc,0x22,0x8f,0x41,0xd4,0xc9,0xfc,0xda,0x65,0x7e,0xed, - 0x5f,0x10,0xba,0xd4,0xb0,0x00,0xef,0x3d,0x03,0x42,0xd9,0xf5,0xce,0x73,0x37,0xcb,0xee,0xa2,0x58,0xdb, - 0x37,0xd1,0x6a,0x64,0x55,0x05,0x0d,0x32,0x61,0xe5,0x18,0xce,0xbe,0x17,0xbe,0x8f,0xa7,0xd7,0xcf,0xf0, - 0xa8,0x4c,0x8e,0xca,0x3f,0x88,0xd0,0x89,0x60,0xb8,0x5a,0xf7,0x94,0x64,0xe3,0xfb,0x8f,0xd2,0x9d,0x4b, - 0x28,0x81,0x83,0x5f,0x8a,0xe0,0xc1,0x37,0xf7,0xe3,0xfb,0x8f,0xa8,0x14,0x61,0x0d,0xfd,0xae,0x8e,0x4a, - 0x57,0xde,0x79,0xe1,0x0c,0xfe,0xcf,0xe1,0xc1,0x28,0x88,0xbe,0x39,0x60,0x44,0x78,0x65,0x43,0xde,0xcd, - 0xaa,0x2c,0xfb,0x3d,0x0b,0x11,0x69,0x79,0x61,0x13,0x5d,0x54,0x71,0x73,0x11,0xb8,0xba,0x28,0x92,0xb9, - 0x88,0x61,0x94,0xa5,0x14,0x03,0x36,0x9a,0xb9,0xe1,0x1c,0x3a,0x9a,0x15,0xf5,0x4a,0x71,0x09,0xa7,0xae, - 0x55,0x50,0x87,0xaa,0xf3,0x9e,0x9a,0x2f,0xd3,0xda,0xbb,0xf6,0x52,0x9d,0x15,0xc9,0x83,0xfd,0xf0,0x97, - 0xeb,0x88,0xd6,0xe2,0xba,0x48,0xa6,0xbd,0x21,0x4d,0xec,0xba,0x9d,0xf9,0x26,0x05,0xbe,0x6d,0xd3,0x18, - 0x86,0x12,0x3f,0x2c,0x97,0xb0,0x9c,0xae,0x89,0x55,0x42,0x04,0x56,0x98,0xbc,0x1e,0xdf,0x59,0xa5,0x8e, - 0x6d,0x73,0x10,0xb5,0x3f,0xdc,0x73,0x7a,0x47,0xfa,0xfc,0x23,0xf5,0xee,0x97,0x27,0xe1,0xc9,0xe3,0xfd, - 0x7f,0x9f,0xa2,0x87,0x47,0x7f,0xd8,0xc3,0x8f,0x85,0x0a,0xf6,0xef,0x1d,0x06,0xa8,0xf6,0x55,0x79,0x6d, - 0xaa,0xa5,0xba,0x3e,0x6d,0xcb,0x64,0xac,0x02,0x5e,0x3d,0x6e,0xeb,0x8b,0x6c,0x2c,0x17,0xf5,0x81,0xf8, - 0x3a,0x10,0xd5,0xfb,0x1c,0x67,0xbd,0xda,0x37,0x97,0x29,0x06,0xea,0x5e,0x91,0x9c,0x04,0xde,0x9a,0x38, - 0x1e,0x2e,0x30,0x57,0x1e,0x06,0xa7,0xea,0x2d,0x4a,0x89,0xfd,0xe5,0x11,0xc3,0x18,0x65,0x0a,0xb0,0x51, - 0x15,0x3a,0x83,0x8d,0xba,0x21,0x87,0x17,0xe3,0x6e,0x9b,0xfe,0x83,0x0e,0x4f,0x69,0xef,0xda,0x35,0x19, - 0x4f,0x25,0x12,0x31,0xda,0x94,0x27,0xce,0x73,0x77,0x34,0x23,0xdd,0x7f,0x93,0x1b,0x84,0xc4,0xe7,0x7c, - 0x4a,0x9d,0x7a,0x56,0x24,0xb7,0x42,0x4c,0xbc,0xce,0x88,0x70,0x26,0x50,0xa3,0x82,0x17,0x39,0x31,0x9f, - 0x7d,0x37,0xac,0xd6,0xf9,0x1c,0x86,0x19,0x44,0xd7,0x13,0x14,0x4d,0x57,0x3c,0x49,0xc7,0xf9,0x12,0x09, - 0xe6,0xba,0x5f,0xce,0xcc,0x2a,0x88,0x76,0x60,0x5f,0x85,0x57,0x6e,0xf3,0x85,0xdc,0x03,0xcb,0xde,0x1b, - 0x0a,0xd4,0x7d,0x2b,0x21,0xbf,0x28,0x68,0x30,0x53,0xbd,0xeb,0x88,0x1e,0x39,0x55,0xe6,0xf2,0xc7,0xde, - 0x8e,0xb4,0xc2,0xdd,0xc7,0x9f,0x0a,0x2f,0x01,0xae,0x5c,0x92,0xf2,0x43,0xf1,0xb1,0x28,0xaf,0x0b,0x5d, - 0x29,0xd2,0x3a,0xd1,0xf3,0xe3,0x0b,0xd5,0x17,0x1c,0x3f,0x7e,0x5c,0x28,0xef,0x12,0x46,0x7c,0x78,0x36, - 0xcf,0x67,0xd9,0xe4,0x66,0x32,0xcf,0x70,0xef,0x34,0xf5,0xa9,0xd8,0xa8,0x77,0x04,0x91,0x27,0xff,0xf3, - 0xcb,0xf5,0xf0,0xde,0xe9,0x03,0xf5,0x2b,0x64,0x65,0x67,0xbc,0xb7,0xce,0xce,0x88,0x1c,0xbb,0xdd,0xa8, - 0xa7,0x94,0xe4,0xc8,0x54,0x7b,0x85,0x9f,0x78,0xf6,0xa8,0x97,0xfd,0xb9,0x3f,0xfd,0xfc,0xac,0xb8,0xca, - 0xab,0xb2,0xd0,0xf7,0xa1,0xef,0xb6,0x12,0x20,0xc9,0xe3,0x9e,0xaa,0x57,0x45,0xf2,0xb2,0x18,0x0c,0xfa, - 0x73,0xdb,0x00,0xaf,0x9e,0x17,0xc9,0x53,0x2a,0xab,0x5d,0x8a,0x8a,0xf4,0x2a,0xbf,0x00,0xa7,0x30,0x5c, - 0xd1,0x84,0x3d,0xbe,0xe0,0x0b,0xa7,0x5a,0xe5,0xdf,0x14,0xc9,0x73,0x2a,0xff,0x60,0x51,0xe7,0xd9,0x9a, - 0x70,0xcf,0x94,0x8a,0x68,0x9b,0xb0,0xe7,0x45,0xa4,0x5e,0x4b,0xf6,0x73,0xcf,0xa3,0x11,0x25,0x77,0xbe, - 0x1e,0x1e,0x00,0xbb,0xa9,0xf7,0xdb,0xf9,0xd9,0xf4,0x22,0x7b,0xc0,0x99,0x3f,0x6d,0x67,0x12,0x1c,0x54, - 0x74,0xce,0x21,0x9b,0x4e,0x33,0xf3,0x86,0x2b,0x37,0x0a,0xf5,0x44,0x77,0x25,0x5f,0x5e,0xd2,0xde,0x5a, - 0xe7,0xcb,0x74,0x4a,0x7f,0x4a,0xfa,0x53,0xd6,0xae,0x4b,0x70,0x6a,0x2f,0x6b,0xfd,0xc9,0x8f,0x45,0x12, - 0xf2,0x37,0x93,0xcb,0x8a,0x48,0x94,0x5f,0x1e,0xfc,0x32,0xdd,0xf3,0x7a,0x7f,0xbb,0x19,0xf2,0x4d,0xc3, - 0x91,0xfa,0x01,0x4a,0x6c,0x50,0x55,0x4f,0x0b,0x8e,0xb2,0x09,0xac,0xfc,0x82,0xed,0x21,0xfa,0xaf,0x65, - 0x7e,0x41,0xf8,0x44,0xc7,0x68,0x08,0xd4,0x2d,0xae,0x75,0xf6,0x28,0x61,0x54,0x76,0xb0,0x21,0xdc,0xa2, - 0x67,0x79,0x3b,0x26,0x20,0x7a,0xb0,0x6f,0xbf,0x67,0xa8,0x7f,0x51,0x44,0x9e,0xdb,0x39,0xda,0xff,0xbd, - 0x50,0xbf,0x15,0xea,0x7b,0x0f,0x05,0x75,0x68,0x01,0x1a,0xe3,0xef,0x30,0xac,0xf9,0x9d,0xda,0xc3,0xa2, - 0xf6,0xc1,0xd0,0xc5,0xbc,0x3c,0x4f,0xe7,0xa0,0x49,0x19,0x51,0x61,0x5e,0x24,0x09,0xb8,0x1f,0xbc,0xe0, - 0x30,0x2b,0xae,0x86,0x3f,0xfe,0xf0,0xec,0xec,0xd9,0x9b,0x1f,0x23,0xf5,0x3b,0xc1,0xf2,0x77,0x2d,0x10, - 0x39,0x3b,0x43,0xe6,0xd3,0x67,0x3f,0x1e,0xbf,0x7d,0xfb,0xea,0xc3,0xd9,0xb7,0xaf,0xde,0x3e,0x79,0xfc, - 0xea,0xec,0xc5,0xdb,0xb7,0xdf,0x9f,0x9d,0xa9,0x6f,0xfb,0x01,0xf7,0xc3,0xcd,0xe2,0xbc,0xa4,0x46,0x3f, - 0x86,0xf2,0x14,0xf5,0xf7,0x4d,0x5f,0xcf,0x8c,0x72,0x9d,0x9b,0x9a,0xa3,0xd1,0x6f,0x77,0xd4,0x9c,0x71, - 0x71,0xfa,0x89,0xc6,0x1f,0xda,0xb3,0xee,0xf1,0xdf,0x3a,0x98,0x3e,0x2e,0xd9,0xee,0x41,0x18,0x36,0xc4, - 0x76,0xfb,0xf8,0xeb,0xc1,0xf4,0xbb,0x1c,0xb4,0x45,0x57,0x05,0x65,0xa7,0xf2,0xbf,0xa1,0x65,0x6d,0x7d, - 0xe3,0x15,0xc4,0xfa,0xb7,0xca,0x12,0xb2,0x48,0x2b,0x7f,0x21,0x3f,0xdb,0x41,0x95,0x6d,0xb4,0xa9,0xc1, - 0xcf,0x45,0x72,0xa1,0xfe,0x0d,0x86,0xe0,0x5f,0xc5,0xd6,0xe7,0xf9,0x34,0xf9,0x37,0xd1,0x6d,0xfa,0x5a, - 0xc8,0xd5,0x39,0xd4,0xf8,0x9b,0xd1,0xbf,0x8a,0x76,0x1f,0x3f,0xac,0xce,0x7b,0xba,0x49,0xa5,0x75,0xbc, - 0x41,0x6a,0xae,0xf5,0x89,0xb8,0x42,0x76,0xbf,0x5a,0x85,0xf6,0x3b,0xb5,0xf5,0x89,0x5c,0x0a,0xee,0xf7, - 0xcf,0xbb,0x33,0xdc,0x3e,0xa2,0x33,0x4f,0xb3,0xa5,0xc8,0xdb,0x3b,0x35,0x14,0x65,0x43,0x84,0x75,0xff, - 0xbd,0x80,0xae,0xc3,0x56,0xe0,0xca,0x76,0x52,0x59,0xd7,0x4e,0x8a,0x2f,0xbe,0x5f,0xd9,0x5b,0x02,0x6d, - 0xc3,0x6c,0xb8,0xcf,0xd3,0xf9,0xcf,0x02,0x91,0xa1,0xb3,0xaa,0x73,0xe4,0x3b,0xa3,0x2c,0x3d,0x3d,0x70, - 0xe6,0xd1,0x17,0x7a,0xf2,0x75,0x56,0xdd,0xfb,0x3c,0xf5,0x4d,0x9d,0x7c,0x29,0x96,0xbe,0xdb,0x33,0x9b, - 0x2f,0xcc,0xc5,0x9e,0x45,0x6d,0x6e,0x24,0x91,0xaf,0xf4,0xed,0x59,0xa5,0xbc,0xba,0xeb,0xb4,0xfc,0x42, - 0xee,0x5a,0xad,0x76,0xaa,0xb9,0x03,0xd3,0x4f,0x65,0x33,0x46,0x18,0x1c,0x83,0xca,0xd3,0x4d,0xb4,0x0d, - 0x6f,0xcd,0x25,0x9e,0x5b,0x26,0xce,0xad,0x7a,0xf4,0x75,0xa4,0x7e,0x52,0x95,0xc2,0x81,0x43,0xdf,0x43, - 0x6a,0xaf,0x88,0xb5,0x09,0xce,0xb3,0x8c,0xb5,0x2a,0x92,0x68,0x22,0xb0,0xbb,0x62,0x47,0x73,0x6a,0x74, - 0xea,0x25,0xf0,0xad,0xb2,0xe6,0xb5,0x15,0xce,0xbc,0xf6,0xd2,0xf8,0x36,0x3d,0xbf,0x37,0xdb,0xf1,0xd0, - 0x61,0x6a,0xa4,0x9a,0x2a,0xb9,0xe5,0xa5,0x88,0x11,0xce,0x6f,0x96,0x5f,0xac,0xf8,0x46,0xf6,0x18,0x48, - 0x77,0xd4,0xe8,0x90,0x25,0xb0,0xfe,0xed,0xc1,0x9c,0xfd,0xd3,0xb2,0x51,0x7d,0x68,0x9e,0x28,0x9f,0x30, - 0xab,0x1c,0x94,0x52,0xc3,0x5a,0xaf,0xd7,0xb9,0x70,0xc5,0x60,0x63,0xbe,0x9e,0x83,0x23,0xb0,0x08,0x9b, - 0x25,0x17,0xe2,0x38,0x93,0x3a,0x5e,0x75,0x44,0xe5,0xf1,0x26,0x8d,0x86,0xba,0x51,0x55,0x95,0x74,0x2e, - 0x10,0x52,0x79,0xd5,0x41,0x0d,0x15,0x35,0x7e,0x12,0x60,0xcf,0x06,0x88,0xde,0xbd,0xf4,0xec,0x35,0x74, - 0xbc,0x37,0xa4,0x70,0xfc,0x32,0x3c,0x94,0x70,0x6d,0x0b,0x2a,0x38,0x17,0xd4,0x19,0xcc,0x38,0x7a,0xcc, - 0xf9,0xb4,0x31,0x60,0x05,0x33,0x82,0xe3,0x30,0xaf,0x54,0xd6,0x1f,0x0b,0xfc,0x04,0x17,0xa2,0xd9,0xd0, - 0x46,0x56,0x26,0xb1,0xbf,0x3f,0x8a,0xf8,0x2e,0x5f,0x9b,0x65,0x6d,0xd2,0x11,0x14,0x5f,0xbb,0xb9,0x62, - 0xc6,0xe1,0x45,0xa2,0xef,0x21,0x97,0xe0,0x17,0x23,0x1d,0xa1,0x33,0x93,0x08,0x9d,0x32,0xac,0x98,0x1f, - 0xcd,0x60,0x62,0x84,0xa6,0x77,0x01,0x33,0xcd,0xd0,0x90,0xac,0x11,0xc1,0x43,0x8b,0xca,0x73,0xc8,0x63, - 0xca,0x73,0x3e,0xe3,0xcc,0x45,0xe0,0x2a,0x05,0x5e,0xd2,0x98,0x05,0xf6,0x54,0xe0,0x3c,0xc4,0x28,0xdb, - 0x4e,0x2d,0xc1,0x88,0xc7,0xf5,0x30,0x2d,0x48,0xd3,0x40,0x9f,0x12,0x84,0xd5,0x97,0xe5,0x6a,0x3e,0xa5, - 0xbd,0x4a,0x33,0xd8,0x00,0xb6,0x54,0x5d,0x6d,0x23,0x52,0x09,0xaf,0x62,0x70,0x45,0xb6,0xe4,0x35,0xff, - 0x97,0xc6,0x0f,0x57,0x0b,0x76,0x34,0x26,0x6c,0x75,0x1c,0xca,0x45,0xd1,0x34,0xf4,0x40,0x5f,0x36,0xbd, - 0x15,0x19,0x25,0x0c,0x7f,0x6d,0x4b,0x84,0x24,0x06,0xa3,0xa5,0x24,0x93,0x66,0x13,0x77,0xb3,0xbd,0x5b, - 0xa3,0x7b,0x35,0x42,0xda,0xe1,0x17,0xeb,0x72,0x2c,0xda,0x1e,0x84,0xad,0x26,0xda,0x24,0x04,0x84,0xa9, - 0xb2,0xd2,0x97,0xfa,0xb6,0xe6,0x2e,0x43,0x38,0x50,0xa4,0x5e,0xa7,0xf3,0x8f,0x38,0x20,0x46,0xb5,0xb7, - 0x0b,0x38,0xf5,0x8e,0x4b,0xb3,0x7c,0x49,0x79,0x16,0x69,0x19,0x43,0xe3,0xcb,0x18,0xee,0xa1,0xe7,0x08, - 0x08,0x4f,0xc8,0x9a,0x7e,0xa8,0x2f,0xaa,0x55,0xb9,0xdf,0x91,0xbb,0x6e,0xe6,0xea,0xc3,0xfd,0x1f,0xe4, - 0x3a,0x2e,0xb9,0xfd,0x78,0x52,0xe1,0x1a,0xac,0x5e,0x56,0x66,0x34,0x91,0xc0,0x2c,0x77,0x30,0x7d,0x3b, - 0xc5,0xf8,0x57,0x9d,0x12,0x37,0xbe,0xdf,0xab,0xa5,0x40,0x9a,0x71,0x16,0xff,0x2a,0x52,0x1c,0xe2,0xe2, - 0x7a,0xb7,0xd5,0x04,0x1b,0x2a,0x79,0x4a,0x04,0xe0,0xbd,0xbb,0x0b,0xec,0x05,0x75,0x70,0x9a,0xbc,0xa4, - 0x42,0xd4,0x23,0xa6,0x42,0xb7,0x0e,0x25,0xd1,0x15,0x13,0x5e,0xf9,0x91,0xcd,0xa7,0xed,0x5d,0x7a,0x8d, - 0x49,0x6a,0x6c,0x92,0xb5,0x6f,0xdb,0x69,0x23,0x8d,0x6c,0xbd,0xee,0x09,0x9f,0xdf,0x68,0x33,0x46,0x22, - 0x6f,0xaf,0x60,0x53,0x17,0xb5,0xfd,0x45,0x1a,0x23,0xf9,0x84,0xb7,0x08,0x94,0x22,0x70,0x1a,0x49,0x89, - 0x01,0xe9,0x5e,0xf8,0xc7,0x7a,0xc4,0x93,0xf4,0x34,0xe2,0x3b,0x94,0x92,0x74,0x9c,0x1a,0xa7,0xf7,0x3a, - 0xea,0xdc,0x88,0x57,0x47,0x63,0xe2,0xe4,0xea,0x53,0xbb,0x63,0x37,0x18,0xb7,0x84,0x3b,0xa5,0x87,0x45, - 0xd6,0x5c,0x96,0x53,0x7e,0x94,0xeb,0xae,0xf1,0x34,0xd1,0xd1,0x0e,0xfa,0x27,0x66,0x7b,0x38,0x7d,0xd7, - 0x06,0x18,0x82,0x99,0x87,0xa9,0x1a,0x98,0x48,0xe6,0x6c,0xf1,0x60,0xda,0xbf,0x22,0x96,0x26,0xf9,0x55, - 0xd4,0xa5,0x95,0x5a,0x55,0x6a,0xd6,0x55,0xd6,0x76,0x69,0x6e,0x40,0x00,0xe1,0xec,0x29,0x2e,0xb7,0x22, - 0xde,0x17,0xe7,0x1a,0xc7,0x91,0x63,0xf3,0x99,0x1e,0x9a,0x95,0xa8,0x3c,0x1b,0x50,0x1c,0xc4,0xab,0xff, - 0x1e,0x45,0xab,0x16,0x59,0xe8,0xe7,0x85,0x3f,0x20,0xa2,0xb8,0x31,0xe4,0x73,0x15,0x5b,0xb7,0xc2,0xd7, - 0x44,0xbe,0xa7,0x17,0xd9,0xd1,0x65,0x5a,0x14,0xd9,0x7c,0xbd,0xde,0xfd,0x18,0xb6,0x93,0x40,0x77,0x9b, - 0x3b,0x9a,0xda,0x39,0x84,0xd6,0xea,0xa6,0x5a,0xe1,0x0c,0xe6,0x6b,0x9b,0xda,0xb9,0x56,0xce,0x14,0xf6, - 0xf4,0xcf,0x38,0x00,0xfe,0x00,0x67,0x3f,0x67,0x5b,0x72,0x55,0x31,0xea,0x6b,0x57,0xa4,0x16,0x55,0x72, - 0x45,0xd3,0x4c,0x87,0xd1,0xc3,0x91,0x7e,0x38,0x1c,0x82,0x43,0xe5,0x52,0xc9,0x0f,0xaa,0x5d,0xfd,0x02, - 0x45,0xea,0x46,0x57,0x02,0x61,0xcf,0xe6,0x8e,0x49,0x25,0x9c,0xbd,0xc8,0x6b,0x9e,0x4f,0xfd,0xa8,0x2d, - 0x7c,0x2f,0xaa,0x44,0x27,0x98,0x8b,0x80,0x89,0x94,0x9e,0xb7,0x5a,0xb9,0xa8,0xe4,0x56,0xe5,0x1f,0x22, - 0xe2,0x29,0x5b,0x4e,0x8d,0x17,0x26,0x6c,0x32,0x7d,0xb0,0xaa,0x18,0x28,0x6e,0x2a,0x75,0x2e,0x43,0x23, - 0x66,0xec,0xac,0xea,0x08,0x9a,0xb4,0x38,0x75,0x10,0xd8,0x80,0xd4,0x2c,0xbc,0x22,0x0c,0x15,0xfc,0x3f, - 0xb6,0x5a,0xcf,0x00,0x2e,0x56,0x76,0x15,0x67,0x91,0x57,0xa8,0x42,0xb8,0x5b,0x29,0x54,0xdc,0x55,0xc8, - 0xd8,0xda,0xb1,0x3a,0x3e,0x4b,0xaa,0x56,0x39,0x05,0xc3,0x08,0x08,0x36,0xb7,0xe2,0x06,0x36,0xcc,0x7e, - 0x56,0x72,0x1b,0xd5,0x31,0x43,0xea,0x47,0xfe,0x7b,0xc4,0xc1,0xa4,0x3e,0x31,0xd4,0x3e,0xe6,0xbf,0x1f, - 0x70,0x76,0xdc,0xc3,0x9f,0xb7,0x7d,0x74,0xb1,0x39,0xe7,0x16,0x88,0xff,0xce,0x9e,0x11,0x67,0x8c,0xad, - 0x88,0x16,0x93,0x73,0xcc,0x25,0x18,0x9b,0x61,0x4e,0xae,0xc6,0xa1,0x3e,0x13,0xe9,0x50,0xdc,0xdd,0xad, - 0xf8,0x41,0x0e,0x1b,0xc8,0x1a,0x38,0x09,0x0f,0x92,0x84,0x78,0x68,0x9c,0x84,0x07,0xcd,0xd0,0x10,0xe5, - 0xc7,0x49,0x78,0xd0,0x07,0x12,0x57,0xe6,0xea,0x70,0x9f,0x7a,0x5f,0x68,0x2a,0x73,0x72,0x6e,0xa8,0x74, - 0x62,0x93,0xf6,0xf6,0xee,0xe9,0x86,0x24,0xd6,0x9b,0xa5,0x5e,0xa7,0x39,0x9d,0xfb,0xae,0x1e,0x7b,0x8c, - 0x83,0x95,0xd2,0xc4,0x7c,0x76,0xfd,0xd4,0x7f,0xa7,0xcc,0x97,0x84,0xa8,0x34,0x40,0x78,0x45,0xba,0xa9, - 0x4e,0x83,0x00,0x71,0x7b,0x4f,0x04,0x85,0x66,0xcc,0xe5,0x88,0x06,0x69,0x30,0x96,0x38,0xf4,0x5f,0x3b, - 0x3e,0x3f,0xbb,0xef,0x0a,0x11,0x5b,0x18,0x30,0x87,0xc3,0x9a,0x0e,0xc4,0x32,0x0c,0xdc,0x15,0x97,0x3d, - 0x07,0x66,0xcf,0x21,0xdc,0x42,0x9f,0xa3,0x2c,0xd1,0x67,0xb1,0xbb,0x7b,0x6a,0xc3,0xae,0x57,0x5e,0x7f, - 0x70,0xff,0x5f,0x5f,0xef,0x22,0x38,0xee,0x2b,0x8f,0x12,0xb2,0x53,0x69,0x4c,0xcc,0xcc,0x67,0x08,0x8f, - 0xf3,0xd6,0x3f,0xe9,0x3b,0xf4,0xb9,0x7c,0xaa,0x3c,0xc6,0xf1,0x9f,0x3a,0xd6,0x90,0x4d,0x8a,0x3c,0x96, - 0x4e,0x2e,0xab,0x66,0x28,0x4d,0x34,0x80,0x72,0x58,0xbf,0x26,0xf1,0xfa,0xa9,0xaf,0xa2,0x53,0x56,0xb4, - 0x62,0x8c,0xc1,0x0d,0x04,0x45,0xcd,0x65,0x55,0x5e,0xd3,0x01,0xf2,0x13,0x6b,0xb5,0xef,0xcb,0x67,0x3b, - 0x34,0x75,0x3b,0x1a,0xa6,0x77,0x10,0x31,0xb7,0xbd,0x9c,0xb0,0x48,0x89,0x36,0x84,0x8f,0xa8,0xf2,0x9b, - 0x5b,0x0b,0x97,0x83,0xc1,0xef,0x61,0xab,0x8b,0xe8,0x7f,0xb9,0x0c,0xf5,0xf4,0x40,0x02,0x50,0xac,0x96, - 0x80,0x25,0x17,0xad,0x8f,0x8e,0x91,0xd6,0x9c,0x08,0x87,0xdc,0xe3,0xb0,0x93,0x11,0x14,0x8f,0xda,0xc0, - 0x06,0x99,0x45,0x08,0x93,0xb8,0xb0,0x93,0x2e,0x51,0xc9,0x5a,0xd0,0x6b,0x58,0x7d,0x1f,0x84,0xed,0xf7, - 0x46,0x4a,0x20,0x1b,0x37,0xea,0x74,0xc9,0xeb,0xf7,0x67,0xd8,0x73,0x6c,0x19,0x03,0x61,0x19,0xf8,0x02, - 0xdd,0x6f,0x9b,0x09,0x16,0xa3,0xaf,0xff,0x34,0x2e,0x5c,0xd6,0xe0,0xa4,0x0e,0x5a,0x3c,0xa0,0x5d,0x33, - 0x5c,0x77,0x47,0xfe,0xee,0x6b,0xd7,0xb4,0xb5,0x0b,0x3b,0x09,0x22,0x7d,0x09,0x23,0xe5,0x2a,0xac,0xbd, - 0x9d,0xee,0x4f,0x54,0x7b,0xcf,0x17,0xed,0x49,0x34,0x11,0x30,0x3b,0x33,0x24,0x12,0x87,0x2d,0xe9,0x0c, - 0x6f,0x02,0x0f,0xc9,0xec,0xea,0xbd,0x00,0x2c,0x25,0xe9,0xd5,0x8a,0x0a,0xc7,0x77,0x2c,0xb6,0x8e,0x72, - 0x9d,0x24,0x47,0xb8,0x90,0x9a,0xe1,0x96,0x9f,0x80,0xba,0x1e,0xb7,0x4c,0xff,0x8e,0x2b,0x6b,0x8d,0x38, - 0x2a,0xbe,0xf9,0x50,0x0d,0x06,0xc7,0x15,0x5f,0xc0,0x36,0xfd,0x86,0x6b,0x8a,0x0a,0x5a,0x10,0x2a,0xa4, - 0x63,0x5b,0x17,0x7b,0x87,0xea,0x00,0x32,0x1c,0x3e,0xe8,0x8e,0xcd,0x3d,0x99,0xd1,0xe8,0x13,0x76,0x39, - 0x4e,0x86,0x03,0xf5,0x22,0x44,0x8c,0x44,0x60,0x01,0x91,0xd5,0xb4,0xc6,0x4b,0xdd,0xf6,0x07,0x0b,0x63, - 0x75,0x87,0x59,0x4d,0x0c,0x15,0xb7,0xed,0xd9,0xd6,0x68,0x57,0xcb,0xd1,0x18,0x49,0xac,0xd7,0x39,0x5f, - 0x84,0x67,0xb7,0x4e,0x0b,0x5a,0xc4,0x07,0xd4,0xd4,0xda,0xe2,0xaf,0x64,0xcb,0x56,0x7a,0xd3,0x4d,0xce, - 0x65,0x7f,0xeb,0xed,0xcf,0xb6,0xae,0x4e,0x84,0xfa,0x53,0x98,0x19,0x26,0x4c,0xdd,0x37,0x96,0x1a,0x7f, - 0x6a,0x67,0xcb,0xc5,0xeb,0x77,0xb6,0xb0,0xe9,0x4c,0x47,0x86,0x2e,0xf6,0x01,0x80,0x87,0x10,0x79,0x22, - 0xfc,0x13,0x07,0x62,0x8c,0x56,0x2d,0xdb,0x22,0xb4,0x3f,0xda,0x61,0xfe,0xd6,0xd2,0x9f,0x87,0xdd,0xa5, - 0x6a,0x08,0xee,0xa7,0xe5,0xf5,0x67,0xd7,0x4b,0x0f,0x0e,0x61,0x84,0x9e,0x64,0x44,0xf3,0x3d,0x35,0xba, - 0xa3,0xf5,0x7a,0x15,0xda,0x4c,0x73,0xc4,0x0b,0xf3,0x3a,0xfa,0x4b,0x9d,0xeb,0xec,0xed,0x51,0xeb,0x20, - 0x3e,0xdc,0x08,0xcf,0xf6,0x8c,0x08,0x93,0xac,0x58,0x2d,0x32,0x23,0xcb,0x51,0x1d,0xd9,0x0e,0x14,0x36, - 0xf1,0x85,0xaa,0xf1,0x77,0xa3,0xde,0x51,0x71,0xec,0x30,0x30,0xe6,0xa3,0x4f,0x59,0xf8,0xd8,0x93,0xb6, - 0x0a,0x97,0xff,0x2b,0x95,0x40,0x50,0x01,0x9f,0x67,0xd6,0x14,0x0d,0x1f,0x7f,0xfd,0x31,0x03,0x7a,0x82, - 0x02,0xe4,0xb5,0x9d,0x92,0xa8,0x2f,0x6c,0x40,0xd2,0x6a,0xc0,0x5d,0xf6,0x9d,0xdc,0x9e,0xb1,0x9c,0x47, - 0x4a,0x63,0x04,0xda,0x97,0xf9,0xba,0x52,0xda,0x61,0xff,0xc7,0x82,0x55,0xd2,0xe6,0xf5,0xd9,0x7c,0x11, - 0x57,0xc2,0xb1,0x11,0xa9,0x99,0xcd,0xf0,0x9e,0xcb,0xfb,0x86,0xdd,0x45,0xd9,0xc1,0xbc,0x6d,0xdf,0xe3, - 0x62,0x84,0xc8,0xc5,0x35,0xda,0xb0,0x27,0x99,0xe8,0x07,0x55,0x77,0x6d,0x79,0x28,0xab,0x93,0x42,0x98, - 0x11,0x92,0xaa,0x6d,0xff,0x7d,0x44,0x34,0x20,0xd6,0x0d,0x7e,0x76,0xd1,0xf0,0x1e,0x2b,0x22,0x43,0x90, - 0xaa,0x19,0x75,0x4c,0x0b,0xea,0xbc,0x0b,0x9b,0x74,0xff,0x10,0x1a,0xe0,0xf1,0xdc,0xe2,0x02,0x44,0x10, - 0xfd,0x15,0x40,0x99,0x71,0x28,0x87,0xb0,0x54,0x25,0x6d,0x22,0x65,0xde,0xe3,0x36,0xb3,0x65,0x5c,0xf2, - 0xb6,0x02,0x2d,0xec,0xf6,0x91,0xa6,0x52,0xff,0xee,0x6e,0x98,0x63,0xed,0x4c,0xe4,0x84,0xe1,0x99,0x0c, - 0xfd,0x48,0x8b,0x6b,0xd7,0x6b,0x13,0x9e,0xd5,0x99,0xf6,0x71,0x79,0xef,0x9d,0x6f,0x5a,0xd0,0x76,0x91, - 0xae,0x1e,0x6f,0x95,0x92,0x8a,0x28,0x5d,0x09,0xcf,0xc5,0x8f,0x67,0xfa,0x52,0xee,0xd0,0x3c,0x1a,0x71, - 0x2a,0x5f,0xf4,0x74,0x57,0x57,0x92,0x1c,0x99,0x72,0x31,0x87,0xb9,0xe1,0xa8,0x7d,0xcd,0xd9,0x15,0xee, - 0xd9,0xb8,0x37,0x37,0xe6,0x4b,0xb8,0x45,0x80,0x92,0x1a,0x18,0xb7,0xd8,0x4a,0xc5,0xe4,0xf2,0x36,0xad, - 0x86,0x2d,0x21,0x95,0x31,0x0f,0x16,0xe6,0x1d,0x41,0x71,0x50,0x8e,0x5d,0x4e,0xbc,0x21,0x51,0x1a,0x54, - 0x2c,0x08,0x8f,0x8d,0x48,0x88,0xa3,0xc9,0x23,0xbb,0x75,0x27,0xee,0x22,0xec,0xfa,0x64,0x42,0x3c,0x3f, - 0xee,0x68,0x7f,0x13,0xce,0x55,0xb7,0x6d,0xb9,0xf1,0x6f,0xbb,0xfd,0x83,0xad,0x92,0x4f,0x59,0x7c,0xbe, - 0x71,0xd6,0xcd,0xab,0x64,0x7b,0x82,0x5d,0xdc,0x8a,0xcf,0xe4,0xe1,0xc2,0x22,0xb9,0xc7,0x72,0x15,0x6d, - 0x4a,0x9e,0xf8,0x7b,0xb0,0x6c,0xa0,0x89,0xc4,0xbd,0x8b,0x5e,0x28,0x6f,0xca,0xa0,0x69,0x98,0x68,0x45, - 0x39,0x7b,0xd1,0x37,0x3d,0xdb,0xb6,0x67,0x2b,0x2b,0x2f,0xcc,0x06,0x3d,0xdb,0x55,0x00,0xc4,0xb9,0x08, - 0x1e,0x1b,0x25,0xa1,0xc3,0x7a,0x8f,0x6e,0x73,0xff,0x5e,0xd1,0x57,0xff,0xa8,0x68,0x45,0x6b,0x0b,0xfd, - 0x57,0xcc,0x1e,0x47,0x67,0xb0,0x0a,0x7f,0x36,0x70,0x6b,0x6f,0x29,0xbe,0x58,0xda,0x7d,0x33,0xe6,0x7b, - 0x9c,0x2a,0x5c,0x1b,0x6d,0xf1,0x29,0x31,0x7a,0x72,0xa4,0x57,0x51,0x14,0xd7,0xa8,0x70,0xf7,0x40,0x07, - 0xa3,0xaa,0x36,0x4a,0x5b,0x06,0xdc,0xd1,0xf5,0x6e,0x77,0x9b,0x16,0xf6,0x63,0xb7,0xd1,0x76,0x7f,0xac, - 0xbc,0x52,0xac,0x5e,0x05,0xb5,0x86,0x85,0x74,0x53,0x2c,0x1f,0x5e,0x16,0x8e,0xe7,0x4a,0x11,0x23,0x96, - 0xe9,0x3d,0xdb,0xe3,0x08,0x01,0x35,0xbd,0xfe,0x1f,0x8c,0x3c,0x99,0xe6,0xa8,0x22,0xc6,0xe5,0x5e,0xf7, - 0xce,0x76,0x48,0x36,0x71,0x03,0xa8,0xcd,0xc0,0x4d,0x8f,0xa3,0x09,0x7a,0xd0,0xb2,0x70,0x90,0xb0,0xfb, - 0x34,0xfa,0xb8,0xf1,0xae,0x69,0x06,0xf2,0x79,0x5a,0xb5,0x44,0x95,0xbf,0xd2,0x9e,0x7d,0x59,0x25,0x87, - 0xea,0x55,0x95,0x3c,0x54,0xcf,0xd1,0xf0,0x3b,0x5f,0x7b,0xc7,0xb7,0x72,0x6f,0xcb,0x7e,0xcf,0x56,0xc4, - 0x5a,0x3e,0xaf,0x8c,0x06,0x8e,0xa6,0xea,0xc7,0x15,0x0f,0x53,0x22,0xc6,0x79,0xc8,0x7f,0xdc,0x87,0xe4, - 0x1c,0xac,0x77,0x24,0x57,0x0c,0x44,0x46,0x3c,0x63,0xcd,0x3b,0x39,0x0c,0x89,0x8f,0x91,0x46,0x26,0x62, - 0x04,0xa5,0xcb,0x83,0x2a,0xba,0x28,0xcb,0x26,0xd0,0x51,0xe2,0x3e,0xa7,0x17,0xe4,0xc8,0x09,0x83,0x64, - 0x79,0xd2,0x62,0xb4,0x9e,0xeb,0x1f,0xbd,0x6d,0x91,0xe4,0xad,0x2d,0xb2,0xb5,0x4b,0x73,0x6f,0xd7,0x14, - 0xdb,0xe8,0xcf,0xee,0x22,0x64,0xda,0x76,0x8e,0xd3,0x0b,0xb9,0xd3,0x57,0x35,0xfa,0xd8,0xe2,0x50,0xb3, - 0xfa,0x28,0x33,0x69,0x6a,0xcb,0x51,0x30,0xd9,0x72,0xcc,0x89,0x84,0x66,0x25,0xf4,0x24,0xd4,0xf6,0x3d, - 0x77,0x59,0xfb,0xb3,0x2c,0x34,0xfa,0x38,0x33,0xb9,0xb4,0xc1,0x38,0x94,0xb7,0x88,0x2c,0x64,0x15,0xa5, - 0xad,0x77,0x55,0xf9,0x49,0x04,0x03,0x3a,0xb9,0xce,0xe6,0x33,0x79,0xef,0xdb,0x3a,0xf6,0xe2,0xcf,0xc2, - 0x2e,0x06,0x53,0xf0,0x08,0x85,0x69,0x43,0x01,0xe9,0x70,0xa1,0x85,0xc3,0x71,0x26,0x67,0x30,0xa0,0x44, - 0x13,0xef,0x11,0xb6,0xb0,0xe6,0xa5,0xf0,0xa0,0xdf,0xa8,0x6b,0x33,0x93,0xcb,0x57,0x32,0xdd,0xab,0xca, - 0x92,0x9e,0xc6,0x85,0x3c,0x11,0x31,0x91,0xb9,0x6f,0x58,0xdb,0x29,0x17,0x3e,0x43,0xec,0xe3,0xc9,0x6e, - 0x98,0xc6,0xc8,0xbc,0x8d,0x67,0x12,0xba,0x9b,0xf6,0x90,0x4b,0x39,0x24,0xa5,0xdf,0x2d,0x52,0xb0,0x29, - 0x6d,0xe2,0x11,0x84,0x9d,0x96,0x04,0xf9,0xf3,0x45,0x25,0xf5,0x7d,0x47,0x7d,0x96,0x3c,0x94,0x4b,0x4c, - 0x21,0xac,0x6a,0xd8,0x5e,0x22,0xd1,0xd1,0xd0,0x9a,0xcf,0x1e,0x19,0x98,0x3c,0xb9,0xa7,0xeb,0x8e,0x06, - 0xe5,0xcc,0x36,0xe3,0x13,0x78,0x39,0xae,0xb2,0xac,0x76,0x7a,0xe1,0xce,0x12,0xda,0x83,0xbe,0xbd,0xe1, - 0x68,0x07,0x16,0x58,0x29,0x13,0x81,0xd3,0x3f,0x80,0x9a,0x2e,0xa8,0xcb,0x85,0x8f,0x3e,0x89,0x91,0xf0, - 0xd1,0x7e,0x36,0x69,0x99,0x7b,0x2b,0xff,0xba,0xeb,0xb7,0xde,0x45,0xb0,0x88,0x10,0xb1,0xe1,0xb5,0xf4, - 0x6d,0x10,0xff,0xec,0xb7,0x07,0x5a,0x13,0x92,0x4b,0x8f,0x39,0x64,0x3e,0x54,0x2f,0x81,0xd0,0x1e,0x01, - 0x44,0x79,0xb9,0x47,0x72,0x48,0xc0,0x2d,0x29,0x61,0xf7,0x6f,0xa0,0x9a,0xad,0xe9,0x76,0xa5,0xcd,0x6c, - 0x4f,0x64,0x5b,0xa9,0xb6,0x39,0x5b,0x4f,0x50,0x96,0xe4,0x32,0xf3,0x89,0x2b,0x91,0xf3,0x43,0xf9,0x00, - 0x1f,0x97,0x1e,0x5a,0x46,0xf9,0x28,0xba,0xe9,0x89,0x51,0x4e,0xc7,0xcd,0x3d,0x26,0x08,0x1a,0x09,0x90, - 0xab,0x7a,0x08,0x92,0xbb,0x80,0xc2,0xf0,0x33,0x70,0xb4,0xef,0x42,0xc0,0xa8,0x31,0x1e,0x2f,0x9f,0x47, - 0xdb,0x0e,0x11,0x32,0x12,0xa9,0x2c,0xc9,0xa5,0xe3,0xf5,0xf7,0x50,0x5d,0xd8,0x90,0x25,0x82,0x0e,0x99, - 0x0d,0xbe,0xd5,0xe5,0x52,0xbb,0xae,0xd9,0xa6,0x4b,0xdc,0x4b,0xc5,0x7b,0xbf,0x34,0xe1,0x77,0xdf,0xc0, - 0x70,0x9a,0xc6,0x4d,0x73,0x77,0x2f,0xe4,0x78,0x22,0x91,0x62,0xcd,0x0d,0x61,0xb3,0x55,0xc6,0xaa,0x46, - 0xee,0x47,0x00,0x52,0xbb,0x13,0x47,0x20,0x4a,0xe1,0x6e,0xdf,0x33,0x53,0xec,0xfc,0xa4,0x49,0x4b,0x98, - 0x65,0x8b,0x46,0xa6,0x3b,0x07,0xdd,0xd1,0xbb,0x80,0x38,0x52,0x3b,0xdf,0xe6,0x22,0x82,0x0b,0xac,0xca, - 0xf8,0x22,0x5e,0x86,0xa2,0xef,0x93,0x3b,0x9f,0x4d,0xbd,0x68,0x02,0x50,0x39,0xfe,0x1c,0x36,0x15,0xb8, - 0x2d,0x43,0xa4,0x9d,0xb1,0xd6,0xae,0x57,0x8c,0xda,0xee,0xa1,0x67,0x1e,0x9c,0x69,0xf6,0xbd,0x25,0x18, - 0xd0,0x79,0x2c,0x1f,0x50,0x6c,0xc4,0x19,0xe2,0x9a,0xad,0xdb,0x8d,0x5c,0xd2,0x43,0xe7,0x06,0xdf,0xf1, - 0x0c,0xb9,0x1a,0x5f,0xca,0xe6,0x04,0x2d,0x6d,0x78,0xe4,0xf5,0xee,0x90,0xc5,0x79,0xe2,0x43,0xb8,0x1e, - 0xaa,0xb2,0x11,0x19,0x47,0xb9,0x15,0x8d,0xa5,0x49,0x71,0x92,0x9f,0xc2,0xd5,0x6c,0x46,0x2b,0x88,0x3b, - 0x5a,0xaf,0xf9,0xa6,0x56,0xbd,0x7c,0xe8,0x56,0x80,0x7b,0xb2,0x3f,0x08,0x05,0x03,0x0e,0x2c,0xfe,0x10, - 0x9a,0x69,0x20,0xf8,0xc2,0x7e,0x6d,0xac,0x8a,0xec,0x2e,0x50,0x3d,0x33,0x05,0x7e,0x32,0xf0,0xde,0x87, - 0x77,0xab,0xe4,0x7b,0x84,0x4a,0x6f,0x45,0xdf,0x68,0x0c,0x77,0xd5,0xe0,0xee,0x98,0xde,0x99,0x2f,0xc7, - 0x65,0x5c,0x42,0xb6,0x31,0x82,0xe4,0x08,0xe3,0x61,0x01,0xf8,0x5b,0xf8,0x6d,0xd2,0x96,0xb8,0x50,0x17, - 0xc4,0xa6,0x13,0x11,0x9b,0x6b,0xd0,0x9c,0x61,0x6c,0x39,0xb3,0x7f,0x0c,0x0a,0xa6,0x6f,0x11,0xfb,0x78, - 0x51,0xff,0x60,0xd3,0xc2,0x0f,0xbb,0xa2,0xe0,0xbc,0xc3,0x3d,0xc2,0xeb,0x5e,0xc5,0x50,0xb6,0x1d,0xc6, - 0xa3,0xf2,0xef,0x82,0x83,0x7b,0x5c,0xe5,0xfb,0xc4,0x2d,0x85,0x8f,0xa8,0xf8,0xa6,0x48,0xe6,0x5e,0x4d, - 0x8a,0xe9,0x9a,0x98,0x05,0xf6,0xe1,0x8e,0x2d,0x18,0xd5,0x3a,0x44,0x1d,0x0f,0xec,0x4c,0xbf,0x4e,0xfb, - 0x41,0xb5,0x11,0x88,0x04,0x94,0x6d,0x23,0x50,0x63,0x00,0xac,0x29,0x11,0xdb,0x02,0x5c,0x94,0x24,0x45, - 0x38,0xf0,0x6e,0x2e,0x9d,0x13,0xdb,0x3d,0xc4,0x6d,0x42,0x9f,0xb3,0x81,0x61,0x40,0xda,0x8c,0x6c,0xdc, - 0xa7,0xe2,0xb3,0x85,0x19,0xbc,0xfb,0xad,0x64,0x6e,0x42,0x8f,0x54,0xa6,0xe3,0x43,0x40,0x97,0xf6,0xc7, - 0x9f,0x29,0xac,0xd1,0x54,0x11,0xb5,0xac,0xe5,0xee,0xb1,0x61,0x5c,0x3b,0x49,0x2e,0x72,0x4a,0x9e,0xb5, - 0x53,0xfb,0x14,0xe7,0x72,0xe7,0x91,0x8b,0xe4,0x82,0xc5,0x15,0x9a,0x50,0xee,0x97,0xc6,0x75,0x10,0x72, - 0x8d,0xbb,0x28,0xa2,0x0e,0x4c,0xc8,0x55,0x81,0x5d,0xbf,0xa8,0xf5,0x9d,0xcb,0x9d,0x02,0xb7,0x71,0x32, - 0x41,0x65,0xfc,0x21,0x7c,0xb3,0x99,0xca,0x4a,0xdd,0x38,0x84,0x72,0xf8,0xae,0x2f,0x40,0x59,0xf2,0xe0, - 0x7f,0x70,0x09,0x7b,0xfc,0x60,0xd4,0x1a,0x4e,0xd9,0x32,0x46,0x97,0x91,0x74,0xed,0x44,0xa2,0xb6,0xcd, - 0x47,0xd6,0xb5,0xf9,0xd0,0xd0,0x41,0x15,0xc0,0x17,0x58,0x8b,0x67,0x04,0x66,0x34,0xed,0x75,0x92,0x9d, - 0x1a,0xad,0x81,0x4b,0xf1,0x82,0x40,0x15,0xd8,0x90,0x5a,0xdb,0x04,0x4e,0x8e,0x0b,0xb6,0x09,0x33,0xab, - 0x98,0x64,0xf8,0x68,0xdb,0x3a,0xde,0x2b,0x3b,0x42,0xb1,0xc6,0x33,0xce,0x94,0x19,0xba,0x57,0xce,0x66, - 0x3c,0x40,0x65,0xac,0x84,0x2a,0xef,0xea,0xb4,0x8d,0xde,0xd9,0x54,0xb3,0xe7,0xbd,0x48,0x94,0xb5,0xaa, - 0x64,0x60,0xf8,0xb0,0xea,0x36,0x3a,0x9b,0x75,0xda,0x04,0x2b,0xda,0x35,0x5a,0x8a,0x5a,0x50,0xfd,0x19, - 0x52,0x94,0x1b,0xef,0x9b,0xfd,0x8e,0x97,0xd6,0x76,0x50,0x43,0x99,0x7e,0x8c,0x0f,0xc7,0x5e,0xd3,0x9e, - 0x28,0x41,0x48,0x9d,0xa9,0x6f,0x5f,0x5a,0x61,0x5a,0x76,0x26,0x1d,0xdd,0x95,0x92,0x8b,0x03,0x74,0xb1, - 0xc6,0xc2,0x43,0xe9,0x5f,0x72,0x99,0xe2,0xa4,0xa1,0xec,0xb0,0x4c,0x72,0x58,0x68,0xc0,0x6e,0x01,0xd7, - 0x17,0xcd,0x8a,0xce,0x55,0x97,0xe9,0xd6,0x55,0x97,0x3d,0x2b,0x9a,0x2d,0x3a,0xfc,0xaf,0x93,0xd7,0x33, - 0xc7,0xd3,0x1e,0x4b,0x01,0x07,0x32,0x73,0xe8,0x7d,0x73,0x38,0x06,0x44,0xc5,0x85,0xc7,0xd7,0x5f,0x86, - 0x76,0x5d,0xa8,0x75,0x02,0xe2,0x03,0xf6,0x78,0x35,0x18,0xfa,0x51,0xc9,0x58,0x9a,0x6f,0xe9,0x22,0x14, - 0x6d,0xec,0xc8,0x80,0x9d,0xad,0x83,0xcf,0x4f,0x21,0x91,0x7d,0xea,0x3e,0xb7,0xbb,0x73,0x29,0xee,0x03, - 0x2c,0xdd,0x87,0x93,0xb4,0xc8,0xf1,0x9d,0x92,0x4d,0x36,0x61,0xf8,0xba,0x4a,0xe8,0xd7,0xe7,0xeb,0xbb, - 0xaa,0x1b,0x21,0x20,0x34,0x33,0xaf,0x59,0x9e,0xc1,0xa0,0x43,0xe1,0x6a,0xff,0x0b,0x13,0xe7,0x50,0x16, - 0x3c,0x9b,0x2b,0xad,0x8f,0x16,0x7e,0x83,0x06,0x75,0x5d,0x8d,0xae,0x2b,0x9f,0x85,0x14,0x9e,0x82,0xd8, - 0x88,0xb1,0xf9,0xc6,0x98,0xc4,0xb1,0x24,0xf4,0xec,0x8c,0x76,0x41,0x16,0x69,0x3d,0x70,0x4f,0xae,0x6d, - 0x89,0x63,0x72,0x1c,0x76,0x4e,0x09,0x8f,0xb7,0xef,0x64,0x08,0x77,0xdf,0x3d,0x55,0x7c,0xc1,0x40,0x5f, - 0x79,0x13,0x43,0xbb,0x4a,0x72,0xbe,0x1d,0x91,0xf8,0xf5,0xb3,0xab,0x55,0x76,0x76,0x96,0xb8,0x1d,0x82, - 0xde,0x18,0x0c,0x41,0x8f,0xb6,0x84,0xc7,0x4f,0xdf,0xd3,0x72,0x52,0x79,0x91,0x36,0xcd,0x9b,0x4c,0x88, - 0x56,0x0d,0xe9,0x3c,0x27,0x58,0x6d,0xa5,0xda,0xe9,0xb8,0xc7,0xe7,0xdd,0x6b,0x5f,0xcb,0xe1,0x4b,0xfb, - 0xb6,0xb4,0x30,0x86,0xd2,0xd7,0x6d,0x9a,0x57,0xcf,0x4e,0xb8,0x5d,0x97,0x96,0x13,0x75,0x34,0x26,0xbb, - 0x06,0x28,0xda,0x5c,0x6e,0x74,0xdb,0x81,0x0d,0xe3,0x82,0x13,0xa9,0xfe,0x0f,0xdc,0xcd,0x94,0xfe,0xe8, - 0x46,0xbb,0xac,0x7b,0xe8,0xd1,0xc0,0xb4,0x57,0xc6,0x88,0x0b,0xa0,0x99,0xf1,0xb8,0xfc,0x96,0xf8,0xe2, - 0x8e,0xe1,0xba,0x33,0x69,0xe4,0x2c,0xe9,0x5a,0x45,0xac,0x14,0xb8,0xb1,0x0a,0x1c,0x9b,0x05,0xc3,0x6a, - 0xaf,0x06,0x47,0x40,0x68,0x73,0x4e,0xd3,0x9a,0x97,0x64,0x8c,0x1f,0xf7,0xf7,0xed,0x54,0xf8,0xb3,0xa0, - 0xfa,0x60,0x5b,0x6f,0x1d,0x81,0x2f,0x3b,0xb3,0xce,0x99,0xc9,0x82,0x30,0x61,0xd7,0xcf,0x03,0xa0,0x0f, - 0xa2,0x6d,0x78,0x6a,0xc9,0xea,0xc5,0xdc,0x7e,0xa3,0x3e,0x65,0x61,0xf8,0xa6,0x83,0x1d,0x22,0xf5,0xa6, - 0x05,0x18,0x05,0xb1,0xfc,0xc7,0xf9,0xa4,0x6d,0xfa,0xa8,0x51,0xcc,0x0b,0xad,0x6c,0x24,0x68,0x6a,0x7d, - 0xa4,0x65,0x02,0x3e,0x30,0xb9,0xd5,0x57,0x5b,0x82,0x23,0x2d,0xe6,0xda,0x12,0xf4,0xb1,0x56,0xc2,0x61, - 0xa4,0xa8,0x45,0xa8,0x1b,0x29,0x84,0x73,0x66,0x96,0x77,0xb0,0x17,0xb8,0x85,0xc5,0xb8,0xa6,0x11,0xf6, - 0x3f,0x39,0x38,0x1d,0x0c,0xf0,0x17,0x0a,0x9c,0xc8,0x13,0xa1,0x83,0x74,0x7f,0x4c,0x4c,0x25,0x24,0xc5, - 0x9b,0x8e,0xd4,0xa2,0xb2,0x1a,0x8a,0x96,0xfa,0x44,0xf4,0x14,0x5a,0x1f,0x22,0x7c,0x29,0x1b,0x60,0x20, - 0x60,0x81,0xd0,0xb8,0x2d,0x51,0xda,0x96,0x24,0xc3,0x33,0xc9,0xf8,0x89,0x2f,0x47,0x0d,0xa4,0x34,0xdf, - 0x4c,0x64,0xa4,0x36,0x06,0x85,0xa7,0x34,0x50,0x11,0x49,0x23,0x9a,0x3e,0xb8,0x0d,0x6a,0xa6,0x0a,0x39, - 0xce,0xa7,0x51,0xbb,0x28,0x4d,0xcd,0xbe,0xa9,0x68,0x47,0xab,0xf7,0x55,0x72,0xa2,0x7d,0x25,0xdf,0x67, - 0x17,0xcf,0x3e,0x2d,0xc5,0xde,0xf6,0x54,0xfd,0x54,0x25,0xb7,0xdf,0x1b,0xf1,0x75,0xac,0xc3,0x9c,0xf8, - 0xd1,0xac,0xcd,0x26,0x63,0x85,0x9d,0x44,0xba,0xc8,0x8b,0xc9,0x7c,0x35,0xcd,0xe2,0xf7,0x84,0x9f,0x3f, - 0xd9,0xc7,0x45,0xfa,0x29,0x36,0x6d,0xc8,0xfd,0x3b,0xa7,0x30,0x2a,0x64,0x1a,0x3e,0xee,0xa2,0xa1,0x49, - 0x4a,0x1b,0xe9,0x4e,0x4a,0x83,0x79,0x4a,0x78,0x6f,0x28,0x0b,0xec,0x2d,0xd7,0x16,0xa3,0x6d,0x65,0xce, - 0xc7,0x56,0x17,0xbd,0x32,0x12,0x4d,0xbc,0xa9,0xcc,0x55,0x45,0x70,0xc8,0x5b,0xd7,0x75,0xdd,0x07,0xda, - 0x97,0x7a,0x67,0x39,0x59,0x92,0x05,0xe4,0xa7,0x5a,0x92,0x06,0xd1,0xd3,0xa7,0xbf,0xf2,0xe5,0xae,0xfb, - 0x72,0xa3,0xb6,0x23,0x0e,0xf8,0x38,0x8f,0x21,0x6e,0xa8,0x63,0x81,0xd1,0x26,0xf8,0xa7,0x98,0x0a,0xb3, - 0x47,0xc3,0x96,0xe4,0xd9,0x0f,0xc8,0xf9,0x2b,0x2e,0x4a,0x50,0x9a,0x7c,0xd2,0x03,0x83,0xa1,0xb9,0x28, - 0xf1,0xf9,0x95,0xef,0xca,0x24,0xc0,0xde,0x25,0x18,0x41,0x97,0x72,0x04,0x83,0x20,0xc8,0x27,0x18,0x1e, - 0x0c,0x9e,0xe2,0x62,0x6f,0x17,0xd9,0xbf,0x31,0x41,0x82,0xdc,0x14,0x6a,0x63,0x10,0x4c,0xa1,0x9a,0x18, - 0x31,0x06,0x5f,0xaf,0x5c,0x48,0x74,0xf7,0x49,0x3e,0xdd,0x0b,0x25,0x62,0x45,0x10,0xc7,0x88,0xb5,0xc1, - 0x81,0x59,0x02,0xa8,0x18,0x10,0x62,0x29,0x3d,0x99,0x9c,0x8e,0x7b,0xb5,0x4d,0xc8,0xe9,0x51,0x38,0xad, - 0xe4,0xf6,0x2c,0x6d,0xa1,0x33,0x41,0x94,0x65,0x94,0x24,0x5a,0xd7,0x26,0xc9,0xb2,0x12,0xb4,0x0d,0x06, - 0x06,0x47,0x7f,0x63,0x03,0x06,0x9a,0x3c,0xda,0xcd,0xaf,0x40,0xcc,0xe1,0x5e,0x55,0xd5,0x22,0x38,0x22, - 0x23,0x6a,0x71,0x5a,0x1b,0x48,0x7b,0xcc,0x24,0xd0,0xc1,0x33,0x18,0x64,0xf4,0x15,0xf1,0x2a,0x3d,0x11, - 0x8b,0x3f,0xc7,0x47,0x3e,0x2b,0xee,0xe4,0x08,0x89,0x99,0x65,0xed,0x3d,0x33,0x82,0xd9,0x70,0xd5,0xe4, - 0xf3,0xe4,0x16,0x9e,0x9e,0xf1,0xcf,0x84,0x37,0x3e,0x35,0x04,0x20,0x88,0x26,0x0b,0xdb,0x6c,0xbd,0xd2, - 0xf1,0x2b,0x25,0x95,0xbc,0x17,0x0d,0x4e,0x16,0xdf,0x03,0x11,0x6a,0x38,0x41,0x8f,0xfd,0xb3,0x88,0xf8, - 0x85,0xb2,0x97,0x3e,0xf4,0xee,0xac,0x3e,0xeb,0x6b,0x16,0x61,0x99,0x9b,0x22,0x1a,0x31,0xc2,0xee,0x73, - 0xc1,0x8a,0x5c,0xdd,0xc3,0xb3,0xf3,0xb4,0x06,0xdd,0x86,0x6b,0x4f,0x4d,0x9a,0x5d,0xc9,0x9a,0x30,0x0a, - 0x0f,0xb1,0xce,0xee,0xa0,0x90,0x21,0x64,0xa7,0xd5,0xc6,0x85,0x23,0xef,0xe6,0xab,0x8b,0x9c,0xe3,0xaf, - 0xf6,0x67,0xf0,0x9d,0x7b,0x1c,0x1a,0xd4,0x78,0x44,0x66,0xb8,0xbd,0xa2,0xc5,0x1a,0x08,0xd5,0xd9,0x26, - 0xa1,0x1d,0x9b,0xa4,0xbd,0x27,0xb4,0x68,0xa1,0x47,0x06,0x81,0x18,0x24,0xdc,0xe8,0xd8,0x3e,0x69,0x02, - 0x9b,0xa3,0x6b,0xf5,0x7d,0x01,0x6d,0x96,0x77,0x65,0x19,0x73,0x6d,0xbe,0x41,0x19,0xd6,0x69,0x91,0x7f, - 0xca,0x7b,0x9d,0xa5,0x79,0xa0,0x4e,0x09,0xe3,0xbf,0x2a,0xfb,0x7d,0x5b,0x38,0x4b,0x9b,0x2c,0x39,0xd0, - 0x52,0xd9,0x43,0x62,0x90,0x05,0x5e,0x5a,0x95,0x67,0x09,0x2b,0x6e,0x3c,0x12,0x1c,0xc2,0x79,0x7c,0x29, - 0x17,0xef,0x62,0xb3,0xca,0xbd,0x86,0x78,0x62,0x39,0x1e,0x30,0x03,0x14,0x85,0xc6,0x00,0xdd,0xf8,0xaa, - 0xe0,0xc4,0x94,0xeb,0x18,0x6d,0x28,0x15,0x89,0xb2,0x9d,0xf6,0x68,0xfc,0xa0,0x08,0x64,0x8f,0x08,0x1d, - 0x30,0x20,0x75,0x87,0x7d,0x17,0x8c,0x3c,0x4a,0x22,0xf2,0x75,0x4e,0x49,0x8a,0x78,0xd5,0x34,0x44,0xdc, - 0x10,0x9f,0x7a,0x53,0x53,0xf8,0xf3,0x42,0xa7,0xed,0x6a,0x09,0x3d,0x8d,0x2b,0xb2,0x2d,0x94,0x76,0xd2, - 0xa8,0xcf,0xca,0x64,0x21,0x53,0xf4,0xa5,0x2e,0x67,0x56,0xea,0xb2,0xc1,0x5d,0x27,0x69,0x0b,0xa8,0xbb, - 0xd2,0xc4,0xed,0x36,0x4c,0xa9,0x6e,0x33,0xb3,0x76,0x33,0x46,0x2c,0x2f,0x4d,0xe8,0x35,0x2c,0xf4,0x03, - 0xa5,0x08,0xc4,0x14,0xf2,0x4b,0xef,0xd8,0x40,0x05,0xfe,0xde,0xe5,0x35,0x91,0x32,0xef,0xcb,0x31,0x67, - 0x95,0xdc,0xe0,0xb2,0xbd,0x19,0xd9,0x0d,0xc1,0xce,0x9e,0xf1,0x86,0x73,0x33,0x6b,0x3a,0x62,0x72,0x32, - 0xbe,0x18,0x26,0xa5,0x1d,0x68,0xdd,0xef,0x70,0x29,0x6f,0xea,0xb4,0xae,0x39,0x3b,0x38,0x11,0x71,0xb1, - 0x91,0x63,0xea,0xce,0xee,0xa1,0x67,0x9d,0x48,0x3e,0xd6,0xa7,0x24,0xf4,0x22,0x02,0x88,0x9f,0x58,0x19, - 0x16,0x1c,0x10,0x85,0x41,0x2d,0x29,0x34,0x04,0x5a,0x6b,0xd6,0x16,0xea,0xd1,0x7d,0xe6,0x48,0x36,0x5e, - 0x38,0x01,0xa9,0xa8,0x67,0xc3,0x32,0xb7,0x96,0xdc,0x22,0xba,0x65,0x5c,0x28,0x1d,0xfb,0xbc,0xd8,0x18, - 0x57,0x1f,0x8d,0xfc,0xc4,0x03,0x05,0x16,0x85,0x05,0x7b,0xbb,0xf4,0xe6,0x6d,0xb4,0xcb,0x54,0x21,0x2c, - 0x74,0x3f,0xb6,0x7f,0xd7,0x96,0xe9,0xe5,0xf5,0x07,0xf1,0x35,0x16,0xc7,0xe8,0xef,0xd1,0xf2,0x9f,0xfa, - 0xb0,0xae,0x2b,0xed,0x1a,0xb9,0xed,0x53,0xed,0x63,0x93,0x36,0x4b,0x29,0x04,0xbd,0xfb,0x16,0x96,0xef, - 0x54,0x31,0xfc,0xde,0x72,0xd8,0x5e,0x3f,0x1c,0x7e,0x35,0x3c,0xfc,0x42,0xc2,0xb4,0x3c,0xa9,0xd4,0x8f, - 0x95,0xfa,0xa1,0x52,0x2f,0x2a,0xf5,0x7b,0xa5,0x7e,0xab,0xd4,0xf7,0x95,0xfa,0xae,0x52,0xdf,0x56,0x1c, - 0x4e,0x83,0xef,0x7d,0xd6,0x77,0xbe,0xaa,0x9f,0x39,0x8d,0xef,0xb6,0x51,0xa8,0x97,0xc8,0xcc,0x54,0xc9, - 0x04,0x29,0xb9,0xdf,0x07,0xe4,0xe1,0x05,0x4c,0x07,0xa9,0xf4,0xbf,0xbb,0xb6,0xf3,0x36,0x44,0x92,0xbd, - 0xdf,0x9c,0x96,0xe5,0xe7,0x8a,0x45,0x6a,0x81,0x44,0x34,0x86,0xe3,0x45,0x83,0xa0,0x2d,0xfa,0xb6,0x20, - 0x5d,0x28,0x90,0x46,0x78,0x7d,0x29,0x97,0xe8,0x92,0xc9,0x47,0x97,0x29,0x97,0xed,0xe8,0x3c,0x1b,0x47, - 0x1d,0x39,0x10,0x3b,0x97,0x9c,0xb3,0x51,0xff,0xe2,0xce,0x4f,0xe4,0xb2,0xf7,0x6c,0x9a,0x37,0x30,0xa2, - 0x53,0xd3,0x2a,0xbd,0xb8,0xe0,0xa7,0x7a,0x99,0xcd,0xe7,0x5c,0x33,0xf5,0xfd,0x9f,0x5c,0x98,0x0e,0x82, - 0xf2,0x7a,0x46,0x08,0xbe,0x26,0x0c,0x46,0x4c,0x25,0xbb,0x64,0xaa,0x74,0xd5,0x94,0xb3,0x72,0xb2,0xaa, - 0xf9,0x69,0x39,0x4f,0x6f,0x94,0xee,0x10,0x07,0x1e,0xa1,0xa3,0x1a,0x76,0x7a,0x44,0xb2,0xce,0x6b,0x3a, - 0xbf,0x69,0xee,0xaa,0x4c,0x19,0xd2,0x4e,0xff,0x9a,0xf2,0xfa,0x95,0xfb,0x6c,0x5e,0xcc,0xd0,0xf1,0x4e, - 0x9c,0xcf,0x34,0xaf,0xd1,0xbd,0xa9,0xca,0x0a,0xf9,0x45,0x04,0x83,0xa2,0xa4,0x29,0xcc,0x01,0xc4,0xea, - 0x32,0x9f,0x4e,0xa9,0x6b,0x38,0x1c,0x9b,0xac,0x5a,0xe4,0x05,0x12,0x09,0xa2,0xaa,0x46,0xe5,0xf5,0x22, - 0x5d,0xaa,0xbc,0xc9,0x16,0x12,0xe9,0x64,0x5e,0x96,0x4b,0x65,0xae,0x99,0x52,0xd2,0x68,0x51,0x22,0x54, - 0x8b,0x42,0x78,0x89,0x3a,0xff,0x9d,0x50,0x54,0x59,0x5f,0xa6,0x60,0x38,0x5d,0x0b,0x45,0x89,0xe8,0x51, - 0xb4,0xce,0xd4,0xcc,0x32,0x25,0x6c,0x44,0x9b,0xf6,0x53,0xde,0x10,0x49,0x9b,0x4e,0xcb,0x62,0x8e,0xa8, - 0x2a,0xbf,0xad,0x68,0x0b,0x4e,0x95,0x76,0xad,0x9c,0x2a,0x61,0x8b,0x08,0x26,0xd2,0xc5,0x9c,0x80,0x41, - 0xd9,0x31,0xc1,0x07,0x93,0x67,0xdb,0x5e,0xec,0xc2,0xb1,0x41,0x69,0xee,0x29,0x13,0x30,0x8f,0xc0,0x12, - 0x1c,0x2b,0x5e,0x5d,0xe5,0x75,0x4e,0x25,0x11,0x23,0x2c,0x4f,0x82,0xcb,0xa6,0x59,0xc6,0x0f,0x1e,0x5c, - 0x5f,0x5f,0x0f,0xaf,0xbf,0x18,0x96,0xd5,0xc5,0x83,0xc3,0xaf,0xbf,0xfe,0xfa,0xc1,0xa7,0x79,0x5e,0x7c, - 0x24,0x8a,0x2a,0xef,0x39,0x67,0x83,0xb8,0xe5,0x82,0xf2,0x15,0xa0,0x4c,0xca,0x73,0xb2,0x09,0xd1,0xf3, - 0x15,0x11,0xf6,0x45,0xdf,0xf7,0x3b,0x0d,0x6c,0x72,0xad,0x77,0xc9,0xdf,0x95,0x11,0x6c,0x72,0xcc,0x16, - 0x55,0xf5,0x7e,0x23,0x04,0x32,0x01,0xe2,0xee,0xa1,0x80,0x5d,0x9e,0x27,0xb7,0xf5,0x15,0x11,0xc4,0xdb, - 0x23,0x78,0x78,0x70,0x70,0xf0,0x80,0xf2,0x02,0xe2,0x9b,0x9a,0xcb,0xbe,0x12,0x34,0xc6,0x7f,0x3c,0xc0, - 0x1d,0xa9,0xfc,0xe7,0xf5,0x2b,0x6a,0xb6,0xcc,0x01,0x99,0x97,0xcd,0x62,0xae,0xce,0xcb,0xe9,0x8d,0x02, - 0x36,0x54,0x97,0xb4,0x14,0x0a,0x43,0x53,0x88,0x50,0xae,0x64,0xd7,0x36,0x79,0x43,0x7f,0xd3,0xe9,0x14, - 0xfb,0x51,0xa5,0x55,0x93,0x4f,0xf0,0x5e,0xd3,0x9e,0x20,0x20,0x2a,0x71,0x8b,0x27,0xbe,0xc3,0xcf,0xa1, - 0xba,0x7c,0xa8,0x2e,0xbf,0x50,0x97,0x5f,0xaa,0xcb,0xaf,0xd4,0xe5,0xdf,0xd5,0xe5,0x45,0x55,0xae,0x96, - 0xaa,0x48,0xaf,0x68,0xed,0x78,0x8c,0x04,0x88,0x57,0x6a,0x4a,0x50,0x39,0x57,0xd3,0x46,0x11,0x1d,0x0b, - 0x0f,0x1b,0xa4,0xb3,0x41,0x6a,0xa6,0x96,0xf9,0x04,0x0e,0x37,0xea,0xb2,0x52,0xf9,0xe2,0x82,0x3a,0x43, - 0x83,0xa2,0x43,0xac,0x9c,0xab,0x25,0x0c,0x1b,0xd5,0x6a,0xae,0x52,0x75,0x4e,0xac,0xe4,0x79,0xa5,0xce, - 0xa7,0x39,0xfd,0x2f,0x15,0x3d,0x4e,0x08,0x3c,0x39,0x0a,0x91,0xe2,0xcb,0xec,0xa7,0x33,0xa2,0x85,0x17, - 0x2a,0x57,0x1f,0xcf,0xa7,0x54,0x41,0xf5,0x51,0xfd,0xa6,0xaa,0xa5,0x22,0x60,0xae,0x9a,0x89,0xaa,0x56, - 0xe7,0x37,0x44,0xc9,0xd7,0xe9,0x62,0xa9,0x08,0xb6,0x89,0xf0,0xaa,0x97,0x29,0xa1,0x1e,0xda,0x6b,0xc4, - 0x70,0xd6,0xab,0x73,0xfa,0xbf,0xe4,0x7b,0x6d,0xd5,0x4a,0x11,0x72,0x53,0xd7,0xe7,0x10,0xa2,0x13,0x92, - 0x4a,0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x64,0x3f,0x2a,0x46,0x0c,0xd4,0xd2,0x39,0x81,0x9d,0x78,0x83, - 0xc1,0x12,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x41,0x26,0x69,0x71,0x95,0x52,0x4b,0x93,0x2a,0x5f,0x36, - 0xd8,0x14,0xf2,0x40,0x24,0x37,0x0c,0xdd,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65,0xb2,0x34,0x60,0xf3, - 0x5a,0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x52,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xa6,0x04,0x34,0x67,0xd9,0x7c, - 0x4a,0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x53,0xed,0xf3,0xec,0x02,0xb4,0xc0,0x02,0x9b,0x19, - 0xa8,0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15,0x13,0x0a,0x48,0x73, - 0x60,0x9d,0x3c,0x9d,0x97,0x17,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b,0x9a,0xd0,0x1b,0xa5, - 0x31,0xa0,0xca,0x44,0xe8,0xa0,0xb0,0xdf,0xcb,0x6b,0x65,0x42,0x67,0x29,0x0e,0x4e,0xf6,0xdb,0xaa,0x04, - 0x1a,0x99,0x55,0xa0,0xfa,0x1a,0x40,0x0b,0x84,0x10,0x0c,0x7a,0x04,0xb0,0x2a,0x2d,0xf2,0x05,0xca,0x4e, - 0xf2,0x6a,0xc2,0xe7,0x43,0xbe,0x5c,0x12,0x80,0xaa,0xc9,0xaa,0xa2,0x1d,0x0e,0xcc,0x05,0xd4,0x57,0x4f, - 0xa8,0x11,0xca,0x22,0x00,0x95,0x28,0x3f,0x34,0xdc,0xa2,0xd9,0x9f,0xa5,0x13,0x00,0x60,0x95,0xe5,0x17, - 0x85,0x1c,0x82,0xea,0x42,0x5d,0xcc,0x6f,0x96,0x97,0x04,0x39,0xe9,0x45,0x06,0x40,0xce,0x78,0xf1,0x33, - 0x48,0x14,0x6a,0x02,0xea,0xbc,0xc6,0x2d,0x6b,0xfb,0x52,0x88,0x5b,0xa2,0x3f,0x54,0x21,0x21,0xa4,0x72, - 0x7e,0x73,0x51,0xca,0x2f,0x7f,0x07,0x52,0x40,0x89,0x2b,0xb5,0xaa,0x39,0xd4,0x06,0xcf,0x0f,0xff,0xe1, - 0x2f,0x1b,0x86,0x19,0x10,0x55,0x57,0x79,0x76,0x2d,0x11,0xa2,0xea,0xde,0xbd,0x5c,0x8a,0x4d,0x7e,0xca, - 0xf7,0x87,0xd3,0x58,0x7b,0x39,0xaa,0x39,0x4f,0x8a,0xd8,0x37,0xb2,0xc4,0x83,0x1d,0xce,0xae,0xcb,0x8a, - 0xd1,0x5f,0x45,0xbd,0xc8,0x68,0x23,0xa0,0x13,0x73,0xb5,0xaa,0x10,0x3d,0x7b,0x95,0x77,0x43,0x5b,0xb5, - 0xa4,0x40,0xbd,0xd6,0xbf,0x77,0x84,0xdf,0xb2,0x17,0x29,0xeb,0x03,0x93,0x23,0x94,0x8f,0x8b,0x38,0x6c, - 0xb4,0x21,0x6d,0xe3,0x19,0xd2,0x0e,0x06,0x36,0x5e,0x9a,0x9f,0x6c,0x2f,0x1e,0x84,0x55,0x4c,0xfb,0x22, - 0x78,0x93,0x83,0x88,0x4b,0xe6,0x31,0xe2,0x4b,0x0d,0x5b,0xdd,0x78,0xf3,0xa1,0xd3,0x67,0x3d,0x7f,0xfd, - 0x9d,0x7e,0xf3,0x21,0xcc,0x73,0x84,0xa0,0x6c,0x6c,0x3d,0xc7,0x34,0x7b,0xb8,0xb3,0x32,0xee,0x59,0x84, - 0x4e,0x25,0xa6,0xa8,0x2c,0x09,0x27,0xe9,0xb8,0x01,0x7f,0xe2,0x63,0x5d,0x92,0xbf,0x15,0x7b,0xd5,0x27, - 0x2c,0xa2,0xde,0xf2,0x21,0x67,0x3e,0xd0,0x66,0x87,0x72,0x91,0xa3,0xd8,0xec,0xb3,0x31,0x53,0x67,0xbc, - 0x26,0x42,0x08,0xe7,0xe1,0x82,0x10,0x85,0xbb,0x8d,0x8b,0x69,0x7f,0x59,0x2f,0x8f,0xcb,0xba,0x3b,0x3b, - 0xfb,0x86,0x90,0x79,0x77,0x7a,0xd2,0x41,0x45,0xc3,0xff,0x40,0xc7,0x22,0xed,0x86,0xfe,0xc2,0x5e,0x81, - 0x0d,0x2e,0x26,0xe3,0x80,0x4d,0xbd,0x25,0x75,0xe6,0x06,0xee,0x03,0x98,0xd5,0x23,0xc1,0x0b,0x5b,0xdd, - 0x6d,0x5c,0x5e,0xd2,0x70,0x69,0x0b,0x21,0x3d,0xf3,0xd6,0x02,0x20,0x9e,0x37,0x5c,0x8a,0x43,0x67,0xa0, - 0xac,0x40,0xa7,0xf6,0x27,0x19,0xcf,0x80,0xa6,0xc7,0xbb,0x2d,0x33,0x8c,0x12,0x75,0xe2,0x00,0xf6,0xff, - 0x6b,0xef,0xdd,0xd7,0xdb,0x36,0x96,0x7d,0xc1,0x57,0xa1,0xb0,0x7d,0x64,0x20,0x84,0x28,0xc9,0x76,0xb2, - 0x12,0xd0,0x30,0x97,0x2f,0x71,0xe2,0x24,0xbe,0xec,0x58,0x71,0x56,0x22,0x31,0xda,0x10,0x09,0x4a,0xb0, - 0x28,0x80,0x0b,0x00,0x25,0x3b,0x22,0x1f,0xe8,0xfc,0x3b,0x8f,0x70,0x9e,0x6c,0xea,0x57,0xd5,0xdd,0x68, - 0x5c,0x28,0xd9,0xc9,0x39,0x7b,0x66,0xbe,0x6f,0xe2,0x2f,0x22,0xd0,0xe8,0x7b,0x57,0x57,0x57,0x55,0xd7, - 0x45,0x3c,0x0b,0x3f,0x81,0x5c,0x0d,0xdb,0x96,0x8b,0x7b,0xdd,0x1a,0xbc,0x3a,0xd3,0x9a,0x3e,0x27,0xca, - 0xed,0x84,0xeb,0x10,0x15,0xbd,0xf6,0x11,0xd9,0x65,0x91,0xc0,0x27,0x99,0xf6,0x33,0xa6,0x15,0x64,0x8d, - 0x07,0x31,0xf6,0x13,0x81,0x25,0xad,0x3c,0x87,0x39,0x63,0xa2,0xb5,0xcc,0x38,0xbe,0x8f,0x75,0xaf,0xbf, - 0x8f,0x3b,0xdb,0xff,0x1e,0xed,0x4f,0x13,0xb4,0x7f,0xd9,0x8d,0x39,0x2e,0xa8,0x0b,0xb3,0x84,0x2a,0x1d, - 0xfb,0xa7,0x55,0xc5,0x3f,0x9a,0x8a,0x7f,0xa4,0xb5,0xf9,0x58,0x7d,0xf8,0xce,0x7c,0xf8,0x8e,0x3e,0x9c, - 0x24,0xe1,0xee,0xe1,0xd1,0x95,0x37,0xe8,0x1f,0xed,0x1c,0xdf,0x39,0x1a,0x8f,0x77,0xfd,0x63,0xc4,0x0d, - 0x38,0x26,0x1e,0xe3,0x8a,0x1f,0x26,0x8e,0x7f,0x50,0x95,0xa6,0xc3,0x4b,0x95,0x5e,0xd0,0x22,0x9e,0x57, - 0x1f,0xce,0xcc,0x87,0x33,0xfa,0xf0,0x34,0xe9,0xb4,0xe6,0xe5,0x80,0x75,0xbb,0x81,0x3b,0xe8,0x7b,0xbb, - 0x55,0x38,0x06,0x31,0xb6,0xdc,0x1d,0xba,0xa3,0xad,0xc3,0x3f,0xdc,0xf1,0x17,0x47,0x9e,0xb7,0x7b,0xda, - 0xa1,0x94,0x26,0xf6,0x9a,0x71,0xe5,0xc6,0x55,0x0a,0x42,0x99,0xc0,0xdc,0x88,0xe2,0x32,0xe2,0x10,0xb1, - 0x5b,0x55,0x30,0x9f,0x71,0x98,0x57,0x81,0x7f,0x18,0x88,0x4a,0x78,0xa6,0xa3,0x51,0xff,0xb1,0xb3,0xb3, - 0xeb,0x3f,0xa6,0x87,0xa3,0xe2,0x8b,0xad,0xe4,0x02,0xf6,0xd3,0x51,0x5a,0xde,0xd9,0xf5,0xdf,0x26,0x5d, - 0x5a,0x0f,0x1f,0x54,0xe8,0x7a,0x02,0x94,0x58,0x62,0x0e,0x02,0x46,0x0d,0xbf,0x55,0xda,0xd6,0x1a,0x8f, - 0x55,0xde,0x74,0x63,0x5e,0xe3,0x3d,0xef,0x71,0xc2,0x91,0x8a,0x1c,0xd3,0x01,0xa7,0x16,0x54,0xe0,0x75, - 0xe2,0x8a,0x77,0xfa,0xfa,0x65,0x79,0x5a,0xd3,0xc1,0xe9,0xba,0xe1,0x55,0xed,0x82,0xc3,0x66,0x6d,0x28, - 0x09,0x22,0x65,0x25,0x12,0x3c,0xdd,0x01,0xec,0x4a,0xa8,0x44,0x02,0xcf,0x97,0xd9,0x9f,0xc0,0xcf,0x05, - 0x5c,0xe8,0x35,0x57,0x8f,0x3a,0xf0,0x43,0x1e,0xfe,0x90,0xdf,0xe2,0xbf,0x51,0xaa,0x37,0xbe,0xf8,0xb6, - 0xd8,0xfe,0x1a,0x01,0x24,0xe0,0xa1,0x94,0x25,0xec,0x3f,0xe8,0xb8,0x7c,0xbd,0xd8,0xba,0x2c,0xfb,0x14, - 0xdf,0x84,0xca,0xe3,0xc5,0x9d,0xa4,0xc3,0xad,0xe6,0x9d,0xe4,0x30,0x1d,0xf7,0x59,0x2d,0x38,0xaf,0xb7, - 0x92,0x63,0xc5,0xbf,0xad,0xa0,0xf4,0xd4,0x40,0xe9,0x29,0x41,0xe9,0x9b,0xe6,0x38,0x95,0x45,0x78,0xcc, - 0xa1,0x30,0xc1,0xac,0x06,0xc4,0xae,0xef,0xf0,0xab,0xe3,0xf3,0x8f,0x8a,0xfc,0x5c,0xa5,0xef,0x94,0x99, - 0xfa,0x64,0xc5,0x80,0xb6,0x3e,0x8b,0xc4,0xd5,0xf1,0xab,0x30,0xd2,0xfc,0x91,0x5f,0x55,0xaa,0x5d,0x27, - 0x27,0x70,0x9d,0xcd,0xb8,0xd2,0xd6,0x67,0x55,0x27,0xc6,0xf6,0x3e,0x61,0x8f,0x62,0x88,0x08,0xfd,0x2c, - 0x51,0x71,0x2e,0xd9,0x73,0xac,0xe3,0xbf,0xa0,0x77,0x21,0xb0,0xf8,0xf5,0xa7,0xc6,0xe7,0xe7,0xb5,0x77, - 0x3a,0x49,0x1c,0xff,0x55,0xbd,0xc4,0x4b,0xfb,0x15,0x19,0x86,0xef,0x71,0x01,0x60,0xbc,0x35,0x28,0x37, - 0x66,0xe0,0x51,0xad,0x6a,0x2c,0xf2,0xc0,0x64,0xb8,0x62,0x20,0x6b,0x64,0x73,0xd1,0x23,0x2b,0x52,0xa7, - 0xd5,0xaf,0xab,0x46,0xea,0xb7,0x29,0x6e,0x28,0xdb,0x0d,0xdb,0xbd,0xdb,0xdc,0x6e,0x3d,0x97,0xfb,0xca, - 0x34,0xfb,0xb8,0x3e,0xd6,0xab,0x7a,0x22,0x37,0x2a,0x32,0x9a,0x9f,0x31,0xcb,0x23,0x55,0x2d,0xd8,0x54, - 0xda,0xdd,0x26,0xdf,0x73,0x10,0xb7,0x37,0x7e,0x1c,0x40,0x5e,0xe4,0x4a,0x0e,0x18,0x8e,0x68,0xa7,0x08, - 0x9d,0x07,0x2a,0xee,0xcd,0x7f,0x05,0x5a,0x3a,0x71,0x4d,0xf4,0x8e,0x15,0xf1,0x28,0x9e,0xeb,0xaf,0xee, - 0x78,0xbb,0xfe,0x13,0x0b,0x3d,0xb5,0x02,0x3c,0x08,0x95,0xf7,0xc1,0x3a,0xeb,0x41,0xdb,0x95,0x2c,0x11, - 0xfb,0x50,0xa3,0x2e,0xa0,0xe2,0x6a,0x45,0xd0,0xe0,0x58,0x70,0x89,0x98,0xd8,0x49,0x48,0x9b,0x9a,0x47, - 0xaa,0xc8,0xb7,0x8d,0xc4,0x38,0xa7,0x56,0xb6,0x94,0xf3,0x95,0x45,0xeb,0x88,0x08,0xad,0x8c,0x9c,0x3a, - 0xa3,0x00,0x7b,0xf0,0x25,0x64,0xae,0x4a,0x54,0x91,0x30,0x1a,0x40,0x5f,0x8b,0xbe,0xc9,0x0b,0xe4,0xc0, - 0xc8,0x88,0x63,0x77,0x9f,0x1b,0xf2,0xbb,0x2b,0x33,0x31,0x3c,0xd0,0x23,0xc2,0x0f,0x2e,0x9c,0x72,0xb4, - 0x2d,0x12,0x6d,0x1d,0x9e,0x78,0x18,0x75,0x98,0xe2,0x48,0x94,0xeb,0x8e,0x2f,0xfa,0xd6,0xbc,0x74,0x33, - 0xfa,0x8c,0x61,0x72,0x2f,0xb3,0xd0,0x0e,0x19,0xab,0xf4,0x96,0x24,0x16,0xcb,0xf9,0x40,0x93,0x00,0x1a, - 0x4d,0xf5,0xfb,0x99,0x57,0xa5,0x22,0x0a,0x0b,0x31,0xad,0x11,0xc2,0x32,0xb3,0x9c,0x3f,0xd2,0x1a,0x42, - 0x13,0x68,0xa8,0xe0,0xf2,0x98,0xfa,0xbc,0x36,0x73,0xec,0x6f,0x49,0xe8,0x04,0x79,0xd3,0x93,0x2b,0x53, - 0xee,0xcf,0x2c,0xef,0xda,0xfe,0x99,0x38,0x26,0xa6,0xb5,0x3e,0xf3,0x46,0x2e,0xd7,0x04,0xe9,0x7b,0x31, - 0xfa,0xd0,0x22,0x9b,0x91,0xec,0x9f,0x79,0x41,0xe3,0x8b,0x7b,0x06,0xe9,0xf8,0x02,0xb2,0xd8,0x25,0x35, - 0x39,0xc3,0xa4,0x96,0x3c,0xa9,0x53,0x99,0xe1,0x09,0x3c,0xbd,0x70,0x17,0xa9,0x2b,0x41,0xea,0x5a,0x3e, - 0xa1,0x4d,0x93,0x1f,0x9a,0x24,0xb2,0xf8,0x73,0x6e,0x94,0x6d,0x64,0xae,0x88,0xf1,0xae,0xdc,0x96,0x47, - 0xe1,0x42,0x54,0xf7,0x4a,0x6d,0x2c,0xa5,0x42,0xd3,0x0b,0x94,0x8a,0xd0,0x17,0xb3,0xaa,0xaf,0x54,0xfc, - 0xce,0x6c,0x9d,0xa9,0xa1,0x36,0x93,0x90,0x79,0x6b,0x83,0x02,0x94,0x83,0x66,0xec,0x4b,0x6a,0x2a,0x5a, - 0x72,0x0b,0x76,0xe6,0xc4,0x44,0xa4,0xe7,0x1b,0x13,0x12,0x3b,0x56,0x89,0xd2,0x7b,0xbd,0xd6,0xca,0x7e, - 0x1c,0x56,0xde,0xda,0x9a,0x22,0x65,0xfe,0x50,0xe7,0x11,0xa4,0x0c,0xad,0x8d,0x4d,0xde,0xc7,0x1c,0x90, - 0xd5,0xd4,0xbc,0xb4,0xe8,0x92,0x56,0x8c,0xbd,0x66,0xec,0x0a,0x03,0x87,0x89,0x17,0xb9,0xac,0x71,0x9c, - 0xaa,0xb9,0xe5,0x2b,0x27,0xe8,0x1b,0x32,0x71,0x90,0xeb,0xd9,0x47,0x97,0x6a,0x8d,0x73,0xe6,0xd6,0x5a, - 0x29,0x37,0x36,0xb1,0x76,0xd8,0x6d,0xb9,0xc4,0xd6,0x3e,0x32,0x86,0x5d,0x86,0x6f,0x5e,0xa7,0x79,0xa0, - 0xda,0x6a,0x95,0xc9,0xad,0xc4,0xbf,0xb2,0x9c,0x5e,0xcb,0xd2,0xd7,0x2d,0xd8,0xce,0x55,0xa7,0xaa,0x41, - 0xe6,0x9e,0x4e,0x23,0x2a,0x07,0x5b,0x8d,0xd1,0xdf,0x95,0x36,0xf0,0x55,0x98,0x86,0xd6,0xe2,0x4a,0x65, - 0xa3,0x37,0xfd,0x28,0xd9,0x7d,0x7c,0x4b,0x34,0x44,0x75,0x2d,0xec,0xc2,0x60,0x5a,0x41,0x61,0xd0,0x06, - 0x37,0xee,0x04,0x3d,0xef,0x43,0x9d,0x79,0x51,0x73,0x0d,0x32,0x4f,0x26,0xba,0x1a,0x42,0x8c,0x68,0x42, - 0x28,0x5f,0x59,0x58,0x02,0xbf,0xb0,0x95,0x92,0xb9,0xa6,0x28,0x54,0xbd,0x58,0x96,0x4d,0x15,0xfb,0x55, - 0xe4,0x21,0x20,0xfb,0xf0,0x0a,0x01,0x3e,0x53,0x76,0x68,0xae,0x2a,0xd6,0xaf,0xc6,0x45,0xe2,0x5f,0x6b, - 0xc8,0x72,0xee,0x6d,0xfb,0x77,0x54,0xcb,0x9d,0x3f,0x0c,0x13,0x5e,0x83,0xc8,0xe5,0x68,0x39,0x99,0x5f, - 0x0f,0x62,0x74,0x69,0x26,0x0e,0xc5,0x6a,0x27,0x47,0x22,0x80,0x8b,0x3e,0x25,0xd5,0x79,0x80,0x0e,0x2a, - 0xa6,0x08,0x03,0xaa,0x1c,0x9f,0x9d,0xeb,0xe4,0x6a,0xe5,0x53,0xcf,0x24,0x72,0xa4,0x60,0xaf,0x5a,0x9c, - 0x2a,0x40,0xbc,0x0a,0xf1,0xc3,0xfe,0xff,0x9b,0xb6,0x8f,0xe8,0x38,0xee,0xa1,0x6d,0xd3,0xc7,0xaa,0xef, - 0x17,0xf5,0x13,0xa5,0x1a,0xab,0xb1,0x39,0xc8,0xc7,0xc3,0x52,0x3c,0x77,0xd1,0x0f,0x43,0xef,0xc8,0x3d, - 0xc5,0x15,0xdd,0x25,0xce,0xc5,0x00,0xd1,0x8e,0xa0,0x1b,0x64,0xe3,0xb3,0x53,0xa3,0x8a,0x8c,0x23,0x7a, - 0xb5,0xd2,0x88,0xcd,0x33,0xe1,0x8a,0xc2,0x73,0x75,0x6a,0x9b,0x50,0xb4,0x43,0x35,0x4f,0xde,0xc8,0xb2, - 0xa2,0xed,0x87,0x49,0x90,0xde,0xa4,0x18,0x4c,0x64,0xd3,0xce,0x8e,0x55,0x00,0xd7,0x64,0xb1,0x71,0x96, - 0x62,0x7d,0x08,0x69,0x51,0xd7,0xae,0x3e,0x89,0x68,0x33,0xe4,0x5d,0xdb,0x95,0x57,0x07,0x40,0xa7,0x14, - 0x21,0xf8,0x55,0x9f,0x90,0xa7,0x88,0x9d,0xe1,0xf9,0x7a,0x8b,0xd6,0xfa,0xaf,0xb6,0xa8,0xa4,0x61,0x8b, - 0x72,0x4c,0x32,0x69,0xc5,0xde,0xa1,0xa5,0x0a,0xdb,0x8b,0x6c,0x9e,0x0e,0x57,0x05,0xb5,0x6f,0xde,0x42, - 0x99,0x74,0xd0,0x5a,0x1e,0xa8,0x39,0x83,0x7c,0x29,0x24,0x3a,0x17,0xc1,0x7a,0xa2,0xa3,0x72,0x26,0x8c, - 0xd3,0x73,0xfc,0x65,0x9d,0x17,0xc4,0x7d,0x6d,0x79,0xbf,0xf4,0x68,0x1f,0x26,0x35,0xff,0x99,0xda,0xc7, - 0xd5,0xd4,0x1b,0x1d,0xbb,0xb9,0xcc,0x07,0x22,0x13,0x27,0x9d,0xbe,0x33,0xf7,0x0c,0xf3,0x47,0x54,0x99, - 0xf1,0xef,0xc9,0x40,0x9b,0xdb,0xaf,0x09,0xbb,0x18,0x0d,0x25,0x6c,0x18,0x0e,0x2c,0xce,0x2d,0x5e,0x3d, - 0x09,0x00,0xe4,0xf5,0x35,0x93,0x37,0x5e,0xd2,0xa1,0xeb,0x92,0x77,0x60,0xd4,0x2a,0xd8,0xb1,0xbf,0xa4, - 0xd1,0xf2,0xa6,0x2a,0xdd,0x25,0xcf,0xe2,0x3c,0x5c,0x56,0x53,0x3a,0x0f,0xe7,0xc6,0x59,0x00,0x25,0xcc, - 0x31,0x67,0x42,0xe0,0x4e,0xc3,0xbc,0x22,0x25,0x16,0x96,0x2d,0xa9,0x6c,0x22,0xd4,0x35,0xc3,0x1e,0x65, - 0xd8,0x9f,0xd3,0xc2,0xce,0x69,0x61,0x85,0x93,0xaa,0x16,0x76,0xee,0xe9,0xb4,0xc3,0xf9,0x58,0xea,0xee, - 0xe8,0x80,0xe4,0x30,0xcd,0xaf,0x63,0x37,0x91,0x23,0x64,0x54,0xba,0x53,0xce,0xb5,0xf0,0x46,0x53,0x5a, - 0xc0,0x85,0x45,0xcd,0x69,0x3f,0xb2,0x45,0x75,0x02,0x4c,0x7c,0x1a,0x2e,0xd1,0x40,0x7b,0xfe,0x94,0xfe, - 0x5f,0x84,0x95,0xab,0x16,0xff,0x32,0x84,0x04,0xc0,0x3f,0xa5,0x9f,0xc5,0xd8,0x3f,0x31,0xaa,0xdb,0xf4, - 0xe9,0x38,0x4c,0xf0,0xe9,0x8a,0x7e,0x4e,0xc6,0xfe,0x41,0xb8,0x55,0x0c,0x67,0x0f,0xd1,0xd4,0xf4,0x61, - 0x78,0x42,0x67,0x93,0x7b,0xe9,0x8d,0x50,0xbc,0xdf,0x9f,0x8d,0x83,0xd8,0xa5,0x3d,0x8c,0x5a,0x76,0x76, - 0x16,0xe3,0xe0,0x1d,0x7d,0xf4,0x8f,0x69,0x53,0x7f,0xc4,0x2f,0x88,0x33,0x9d,0x91,0x6b,0xed,0xf7,0xa7, - 0x63,0x0f,0x99,0x4e,0xfd,0x2b,0xce,0x44,0xbf,0xc8,0xa4,0xcb,0x73,0x9b,0x3b,0x3b,0x27,0x92,0xe9,0x52, - 0x65,0xba,0x94,0x4c,0x07,0x2d,0x3a,0x20,0xf5,0x2f,0xd5,0xb9,0x6b,0x89,0xe2,0xdc,0x53,0x41,0x21,0x55, - 0xcb,0xb5,0x4a,0x4f,0x55,0xf7,0x4e,0xa5,0x7b,0x5d,0x95,0x72,0x05,0x52,0xb5,0xd5,0xb5,0xaa,0xff,0x6e, - 0x2c,0xce,0x2e,0x26,0xe1,0x2f,0x31,0xad,0xcf,0xcc,0x5f,0xc0,0x54,0xde,0x05,0x41,0x7f,0xcc,0x31,0x4c, - 0x47,0x93,0x43,0x7e,0x18,0x77,0x38,0xff,0xa8,0xe2,0x12,0xce,0x88,0x16,0x4e,0x38,0x0a,0xa1,0x41,0x8f, - 0xd9,0x58,0xf3,0x08,0xdb,0xdb,0xef,0x40,0xe7,0x44,0x86,0x82,0xcf,0x88,0xc6,0x3d,0xa6,0x2a,0xf6,0xd0, - 0xda,0x28,0xa2,0xe7,0xcc,0x57,0xe3,0xe7,0x71,0x2d,0xa9,0x9f,0xf3,0xb1,0x1a,0xdc,0x52,0x06,0x87,0x14, - 0xed,0xd1,0xb6,0x6b,0xa0,0x4b,0x6b,0xa0,0x5e,0x50,0xaf,0xb3,0x1a,0xef,0x70,0xf6,0x68,0x01,0x25,0x7a, - 0x1a,0x22,0x01,0x44,0x7f,0x7f,0xec,0x49,0x74,0x46,0x79,0x51,0x9b,0x7e,0xea,0x9f,0x60,0xe3,0x4f,0x1f, - 0x9d,0x6c,0x6f,0x5f,0xb8,0x7b,0xbe,0x4c,0xcb,0xda,0x9d,0x70,0xb8,0x6c,0x00,0x65,0xc0,0x40,0x0b,0x0a, - 0xaf,0x22,0xa1,0xea,0xe2,0x50,0xca,0x8c,0x73,0xfa,0x8c,0x7e,0x99,0xec,0x5a,0x60,0xb0,0x15,0x58,0x82, - 0x28,0x06,0xf8,0x8f,0x50,0xff,0x94,0xbe,0x4d,0xab,0x30,0x88,0xc1,0xad,0xd5,0x06,0xf2,0x7d,0x8b,0xa3, - 0xd6,0xf0,0xd9,0xde,0x91,0x4f,0xed,0x32,0x7f,0x33,0x66,0xc8,0x8a,0xb2,0x8e,0x1a,0xd6,0xd6,0x51,0x75, - 0x22,0x5c,0x08,0xa3,0x57,0x30,0x9e,0x28,0x65,0x82,0x51,0x7b,0xfa,0xa9,0x8b,0xb2,0xce,0xeb,0x64,0x8f, - 0x30,0x4a,0xb9,0xcd,0x1f,0xe5,0x04,0x1c,0x15,0xf6,0x57,0x2b,0xe9,0xe6,0xec,0x4f,0xd5,0x74,0xe0,0xb8, - 0xc1,0x78,0xfa,0x13,0xc4,0x6c,0x8a,0x4e,0xfd,0xb9,0x72,0xf7,0x41,0xb8,0x20,0xaf,0x47,0x1b,0x0a,0xb3, - 0xd5,0x0a,0xd1,0xdd,0x81,0xf4,0xfc,0x5c,0x48,0x7b,0x5f,0x10,0xb2,0xe6,0x5b,0xe4,0xe0,0xb2,0xf1,0xbe, - 0x81,0xca,0xae,0x63,0x02,0xea,0xd5,0x84,0xeb,0x19,0x90,0xe7,0xea,0xa8,0xa7,0xa9,0xeb,0x66,0x60,0x73, - 0xb1,0x24,0xa4,0xc4,0x0e,0xac,0xed,0x59,0xfc,0x2b,0xe6,0xd5,0x54,0x3b,0xf1,0x14,0x41,0x30,0xf3,0x3c, - 0xe6,0xc4,0xcf,0xa2,0x82,0x09,0x71,0x50,0xdd,0x85,0xcb,0x89,0xdc,0xaa,0x69,0x50,0xc7,0x8d,0xb3,0x7a, - 0xa0,0xa2,0xa2,0x48,0x55,0x11,0x53,0x7e,0x55,0xa2,0x09,0xc2,0xc1,0x07,0x87,0x5e,0x97,0x05,0xc6,0x06, - 0x2e,0x72,0x96,0xe4,0x45,0xc9,0x2d,0x12,0x9a,0xd9,0x1b,0x5e,0x3e,0x9c,0xe9,0xb5,0xba,0xd4,0x0e,0xee, - 0xce,0x56,0xab,0xad,0x63,0xe2,0x17,0x67,0x87,0x97,0x63,0xc5,0x99,0x2e,0x60,0x52,0x2e,0xac,0xec,0x59, - 0x78,0x56,0xbb,0x3f,0x40,0x89,0xc5,0x6a,0x75,0x56,0x6f,0x98,0xb8,0x18,0x6c,0xa4,0xc4,0xd3,0xb3,0x29, - 0xeb,0x7a,0x61,0xbb,0x5a,0x39,0x85,0x34,0x6f,0x8e,0x11,0x6f,0x3d,0x26,0x5c,0xec,0x5d,0x5f,0xa0,0x93, - 0x53,0x39,0x5b,0xa4,0xb1,0xad,0x0b,0x2c,0x30,0x6b,0x96,0xc0,0x4d,0x9c,0x7a,0xd4,0xce,0x26,0x85,0xa8, - 0xd8,0xe2,0xf0,0x5e,0xbc,0x31,0x14,0x81,0xa5,0xde,0xf5,0xb5,0xd7,0x96,0x04,0x8b,0xb9,0xf2,0x0f,0xfc, - 0x73,0x08,0xa9,0x9f,0x22,0xd2,0x7c,0x36,0x5d,0xce,0xe3,0xc2,0xff,0x40,0xcf,0xa0,0x71,0x5e,0x2b,0xed, - 0xaf,0x2b,0x9a,0x93,0xab,0x87,0x8b,0xa4,0x02,0xe0,0x2b,0x26,0x2b,0xcf,0x0f,0x17,0xc9,0xe1,0xd5,0x18, - 0xd6,0x5e,0x74,0xae,0xec,0x0d,0x0f,0x1e,0x3e,0xad,0xb2,0x1c,0x10,0x79,0xf1,0xf4,0xf0,0x60,0xac,0xf2, - 0xd0,0x4a,0xe9,0xec,0xc2,0x5f,0xd8,0xdf,0xf8,0x40,0x7e,0xcc,0x7a,0x23,0xb8,0x57,0x13,0xad,0x19,0x15, - 0x4a,0xec,0xa9,0xf5,0xfc,0x96,0x85,0xad,0x84,0x8a,0x3b,0x9c,0x14,0xaa,0xd3,0xd2,0xa7,0x43,0x52,0xf9, - 0x64,0xe2,0xd3,0x5b,0xbc,0xc4,0x20,0x8c,0x08,0x8c,0xb3,0x01,0x5d,0x30,0xe7,0x5c,0xb2,0xff,0x10,0x17, - 0x88,0x0e,0xf9,0x2b,0x7a,0x62,0x11,0x62,0x73,0x60,0xf0,0x07,0xec,0xfb,0x89,0x17,0x92,0xb1,0x37,0x16, - 0xc0,0x13,0x9a,0x6b,0xea,0xab,0xa0,0xe8,0x68,0x67,0xc1,0xad,0x49,0x3c,0x35,0x5d,0x0e,0x4a,0xee,0x04, - 0xc3,0x15,0x3f,0xf1,0x96,0xf5,0xb3,0x34,0x75,0x57,0x4b,0x87,0x05,0x37,0x7c,0x7c,0xba,0x19,0x65,0x39, - 0x96,0xfa,0xcd,0x46,0x39,0xe1,0x2e,0xe2,0x7b,0x3e,0x7c,0x1d,0x42,0x99,0x5f,0x5d,0xc7,0x7c,0xd0,0x97, - 0x50,0xee,0xeb,0x46,0x14,0x1a,0xb9,0xa6,0x51,0x92,0x43,0xff,0xb5,0xd8,0xbf,0x9d,0x09,0x31,0x48,0xc7, - 0x5f,0x4d,0x50,0x76,0xc6,0x03,0x94,0x79,0x38,0x1b,0x1c,0x8b,0xc0,0xf6,0x44,0xce,0x83,0xd3,0xc6,0x39, - 0x7c,0x06,0xd5,0x5f,0x22,0x5c,0x34,0xfe,0xd3,0x00,0x7b,0x15,0xea,0x34,0x82,0x01,0x50,0x4c,0xc3,0xab, - 0x61,0x75,0x2e,0x3e,0x25,0xb0,0x78,0xda,0xc5,0xbb,0x3c,0xb5,0x78,0x97,0xa7,0x63,0xf7,0x8a,0x7b,0x72, - 0x25,0x8e,0xef,0xb9,0xab,0x07,0x55,0x25,0x8f,0xa9,0x92,0xc7,0x1d,0x9c,0xef,0xe3,0x8a,0xf3,0x7d,0xcc, - 0x9c,0xef,0x95,0x40,0xd2,0xdb,0xf0,0xaa,0x85,0x5b,0x51,0xfd,0xdb,0x01,0xeb,0x08,0x57,0x26,0x0f,0x77, - 0xc2,0xfd,0xe1,0x9d,0x87,0x6f,0x89,0x45,0x34,0xf6,0x2a,0x77,0xe0,0xfe,0x19,0x09,0x87,0x77,0xc6,0x9a, - 0xf6,0x7e,0x12,0xa3,0x7f,0x57,0x54,0xab,0x0a,0x75,0x0b,0xdf,0xae,0x7c,0x6e,0x81,0xe5,0xdb,0xf3,0xf7, - 0xd4,0x81,0x45,0xfc,0x0f,0x5c,0x02,0xe7,0x95,0xb5,0x98,0xac,0xdf,0xd2,0xf3,0x79,0x4c,0xbc,0x14,0xaf, - 0x41,0xfa,0x9b,0x7c,0xee,0xb5,0xda,0x68,0xc1,0x32,0xf1,0xd5,0xfe,0x0b,0x0e,0x4f,0x13,0xff,0x63,0xe2, - 0x1f,0x24,0xfe,0x79,0xe2,0x7f,0x9b,0xf8,0xcf,0xd2,0x91,0x96,0xe6,0xbf,0x2f,0x7d,0x2d,0x58,0xc3,0xb3, - 0xc0,0x53,0xe3,0xfa,0x6f,0x4b,0xe2,0x7a,0x89,0x95,0xc5,0x59,0x76,0x35,0x7a,0x5d,0x4a,0x74,0x33,0xb8, - 0xcd,0x5c,0x07,0xd7,0xeb,0xb1,0x76,0xac,0x7c,0x91,0xc0,0x8b,0xf9,0xcb,0x94,0x68,0x41,0x7d,0xc9,0xd1, - 0x0e,0x2f,0x22,0xf7,0xe3,0x54,0xfb,0xe4,0x2c,0x4a,0x4f,0x63,0xc7,0x36,0x4f,0x15,0x4d,0xfc,0xaa,0x30, - 0x4b,0xe9,0x95,0x70,0x6d,0xc8,0xaa,0xbe,0x97,0x2a,0x2a,0xe2,0xcf,0xe8,0x83,0xd2,0x37,0xd3,0xae,0xd3, - 0xdf,0x25,0x70,0xaa,0x86,0xd5,0x89,0xa7,0x8d,0x0b,0x51,0x08,0x91,0xf4,0xcd,0xbc,0x09,0xeb,0x28,0x3c, - 0xc9,0xf6,0xf6,0x16,0xff,0x12,0x23,0xa6,0xd4,0x2c,0x47,0x3f,0xc0,0xd1,0x91,0x39,0xcc,0x6b,0x3d,0x7c, - 0x67,0xb1,0x14,0x62,0xd4,0x35,0x55,0xa2,0xa4,0xb5,0x17,0x3c,0x2b,0xe5,0xd9,0xf6,0xf6,0x64,0x6a,0x25, - 0x7c,0x81,0xc0,0x6b,0xda,0xfe,0x44,0x2b,0x7d,0x3e,0x2f,0x21,0x03,0x73,0xb4,0xe6,0x88,0xe9,0x1d,0x9d, - 0xbb,0x89,0x2b,0xb1,0xe3,0x3c,0x4f,0x79,0xf2,0x7a,0xa9,0x23,0xc7,0x86,0x65,0x15,0x45,0xd6,0xb7,0x9e, - 0xd9,0xaf,0x23,0xab,0x16,0xb7,0xe7,0x5d,0x4f,0xf7,0x4b,0xea,0xd6,0xaf,0xe9,0xa6,0x4c,0x18,0x9b,0x48, - 0x65,0x09,0x45,0xc2,0x4b,0xff,0x2b,0x1e,0xc5,0x8d,0x39,0xf9,0xe6,0x83,0xaa,0x45,0xc4,0x1d,0xee,0xa9, - 0x2c,0x12,0xf0,0x10,0xee,0x84,0x9b,0xf3,0xd5,0xba,0xab,0xe6,0xa0,0xed,0xf5,0xb5,0xf1,0xae,0x5b,0x73, - 0x39,0xd4,0x77,0x96,0x66,0x46,0x45,0x9b,0xfa,0xf6,0xf9,0x1d,0x26,0xcd,0x18,0x80,0x95,0x6a,0xc4,0x16, - 0x54,0xcb,0xd9,0x89,0xe5,0x5a,0x66,0x59,0xab,0x57,0x8c,0x4a,0x31,0x9f,0xde,0x18,0x3e,0xf0,0x27,0x74, - 0x10,0x00,0x1f,0xa8,0x9c,0x7c,0x39,0x4e,0x34,0xce,0x3b,0xbc,0x6c,0x6f,0xd3,0x77,0xf5,0x01,0x98,0x5e, - 0x43,0xac,0x5a,0x05,0xf6,0xd4,0xf8,0x0b,0xc1,0xab,0x04,0xf6,0x7c,0x97,0xf8,0xd8,0x59,0x81,0xa8,0xc5, - 0x36,0xe7,0x47,0x59,0x1c,0xeb,0xca,0x10,0x0b,0xf0,0x57,0xbe,0x1a,0x55,0xaa,0x25,0xe2,0x42,0xc5,0x12, - 0xa8,0x73,0x80,0xfa,0x63,0x9a,0x99,0x3c,0x39,0x85,0x27,0xd8,0x67,0x49,0x01,0xe5,0xc8,0xd0,0x49,0x69, - 0x1d,0x94,0xce,0x1d,0xdf,0xa9,0x4e,0xe5,0x03,0xc2,0xc5,0x37,0x92,0xe0,0xfc,0x21,0x19,0xb9,0x69,0xb5, - 0xed,0x71,0xc4,0xdd,0xa1,0x66,0xed,0xdd,0xd0,0x28,0x14,0x66,0x6b,0xcf,0x6b,0xd6,0x14,0xe6,0xa3,0x2c, - 0x90,0x96,0x3b,0xf5,0x0b,0x5a,0x23,0x1c,0xe6,0x8d,0x99,0x74,0x6f,0x1d,0x70,0xab,0xa3,0xf9,0xe8,0xb6, - 0xae,0x76,0x4d,0x10,0xad,0xe5,0xeb,0x5b,0x8a,0xa9,0x81,0x74,0x0e,0xb3,0xab,0x4a,0x35,0x72,0xa8,0x56, - 0xa4,0x1d,0x8b,0xab,0x18,0x02,0xde,0x8d,0xb7,0xf7,0x8f,0xa1,0xe6,0x7b,0x82,0x1a,0x36,0x0c,0x53,0xd6, - 0x5d,0x10,0x34,0x47,0x79,0xf0,0x24,0xcb,0xe0,0x0c,0xd7,0x9f,0x14,0x85,0x79,0x06,0x70,0xe9,0x6c,0x40, - 0x24,0xfa,0xd9,0xba,0x9d,0x55,0x29,0xd6,0xdd,0xaa,0x9d,0x47,0xdf,0xab,0xda,0xb9,0x1a,0x69,0xad,0x8b, - 0x5b,0x3b,0x6f,0x47,0xba,0x74,0xb7,0x23,0x69,0x63,0xde,0x46,0x83,0xd3,0x65,0xce,0xf7,0x82,0xc1,0xa1, - 0xd8,0xb5,0xf9,0x2a,0x5d,0x14,0x3b,0xc6,0x6b,0xff,0x4f,0x3d,0x41,0xb5,0xcb,0x5a,0xb1,0x96,0xfb,0x3e, - 0xa9,0x99,0xd0,0x35,0x6d,0xc1,0x5a,0xc6,0xe3,0x6d,0x9b,0x30,0xe5,0x39,0x8b,0x05,0xab,0x72,0x4b,0xdf, - 0x1d,0xdc,0x8f,0x51,0xf8,0x6f,0x90,0x10,0x12,0xd8,0xda,0x31,0x5b,0x95,0x89,0x18,0xd6,0x06,0x6a,0x07, - 0x2a,0x7e,0xab,0x5d,0x87,0x08,0xfe,0x43,0xcd,0x11,0x0e,0xbd,0xca,0x7d,0xa5,0x75,0x69,0x66,0xe8,0x6e, - 0xdb,0x76,0xb4,0x12,0x08,0x28,0xfb,0xb1,0x27,0x25,0x3c,0xf3,0xb0,0xb7,0x81,0xea,0x93,0xf6,0xb2,0xca, - 0x14,0x1a,0xcd,0x9d,0xfe,0xf2,0x0b,0x50,0x54,0xa6,0x23,0xc0,0x3a,0xc7,0xc7,0x55,0x73,0x3b,0x4e,0xdf, - 0xb8,0x95,0xeb,0x3b,0x3b,0xce,0x30,0x62,0x31,0x9c,0x28,0xd9,0xf2,0xf3,0x28,0xb2,0x02,0x9c,0x16,0x7d, - 0x1c,0x10,0x78,0x74,0x82,0xa2,0xcf,0xb2,0xdc,0x20,0x77,0x23,0x91,0x7f,0xe0,0x02,0x5a,0xdd,0x7d,0x48, - 0x8a,0x31,0x28,0x2a,0xbc,0x11,0xa7,0x70,0x19,0xfc,0xf2,0x5f,0x09,0x9b,0x11,0xba,0x72,0x81,0x08,0xfb, - 0xca,0x81,0x72,0x34,0x43,0x53,0x5b,0x75,0x31,0x7c,0xa7,0x2d,0x8b,0xe6,0x35,0x63,0xf7,0x25,0x26,0x41, - 0xa2,0x4c,0x48,0x41,0x2b,0xec,0x3c,0xae,0x53,0x1b,0x49,0x9b,0x10,0xbe,0x03,0xdc,0x22,0xc8,0x13,0xd0, - 0xc5,0xc7,0x45,0x54,0xc3,0x3a,0x9e,0xbf,0xdc,0xde,0x5e,0x2a,0x1c,0xe5,0x9e,0x85,0x91,0x7f,0x11,0x2e, - 0xfd,0x0b,0x0c,0x81,0x30,0xda,0x19,0x7e,0x57,0xab,0x0b,0xcc,0x05,0xbf,0x0a,0x7d,0xb7,0xf5,0x1b,0x4b, - 0x13,0xdc,0xad,0x65,0x97,0xcf,0xd7,0xae,0x54,0xed,0xd2,0xb3,0x62,0xc1,0x05,0xb0,0x66,0xe1,0xb2,0x09, - 0x24,0x62,0x30,0x32,0xe1,0xb1,0x3b,0xd9,0xb2,0xdc,0x49,0x58,0x73,0x3f,0xa9,0x3b,0x6f,0x50,0x50,0x00, - 0xbc,0xf9,0x83,0x3b,0xf3,0x9d,0x68,0x46,0x50,0xfd,0x93,0xa8,0x57,0xd8,0xa6,0xa2,0x56,0x4e,0xc4,0x4b, - 0xaf,0xfb,0xb1,0x5c,0x7b,0xbe,0x06,0x1f,0x34,0x96,0xa4,0x3b,0x99,0x98,0x02,0x88,0xc0,0xe3,0x37,0xb7, - 0x12,0x56,0x89,0x5b,0xb3,0xa9,0xbf,0xb0,0xcd,0xf6,0xe0,0x1f,0x78,0xf8,0x03,0xa4,0x31,0xdc,0xfc,0xb7, - 0xa2,0x31,0xb2,0xf0,0x7c,0x4e,0x13,0x8c,0x85,0xd1,0xc3,0x20,0x4d,0xa5,0xcf,0xa0,0x11,0x46,0x68,0xb1, - 0xd9,0x55,0x5a,0xb2,0x69,0x18,0xaf,0x2b,0xb2,0x39,0x13,0xa6,0xc5,0xbf,0x20,0xf4,0xf9,0xef,0x04,0x93, - 0x02,0x78,0x54,0x78,0x83,0x2f,0xf4,0x2d,0x04,0x03,0x0c,0xeb,0x0d,0xc5,0xa4,0xaf,0xf7,0x6f,0xe6,0x62, - 0xc5,0x9f,0xfb,0x8f,0x84,0x57,0x2a,0x85,0x8a,0xe0,0x4f,0xa2,0xa8,0xcd,0xdb,0x77,0x50,0x0e,0x0e,0xae, - 0x05,0xc9,0xfc,0x3b,0xe9,0x42,0x2c,0x0d,0xcb,0x76,0xc6,0x0f,0xb6,0x91,0x88,0x2c,0x9d,0x04,0xca,0x5d, - 0x44,0x29,0x82,0xe0,0x76,0xbb,0x43,0xe2,0x42,0x8b,0x3c,0xbe,0x34,0x8e,0x0b,0xc5,0x48,0x54,0x0b,0x9f, - 0x93,0x2e,0xb4,0xc5,0x1e,0x55,0xb3,0x7a,0x4e,0xf0,0xd9,0x51,0xb5,0x6b,0x0a,0x62,0x8b,0x8a,0x87,0x86, - 0x2b,0x2f,0xb4,0xe8,0x71,0x12,0x26,0x87,0xc5,0x78,0x38,0x91,0xf8,0xd1,0xe8,0xc5,0x56,0x38,0x11,0xe1, - 0x3b,0x38,0x03,0xb5,0x93,0x27,0xf5,0x9d,0x4c,0xc8,0xe3,0x12,0x37,0x22,0x0e,0x60,0x3b,0x33,0xd6,0xa2, - 0xe9,0x21,0xe7,0x1b,0x87,0x13,0x9f,0x4a,0xa8,0xed,0x3c,0xe9,0xde,0xce,0x91,0x07,0xb9,0x87,0xe5,0x4d, - 0x7c,0x8e,0x0e,0x2f,0xf1,0x67,0x46,0x5d,0x9d,0x55,0x12,0xb0,0x99,0xee,0xea,0x34,0xcc,0x0f,0x67,0xe3, - 0xe1,0xb4,0xb5,0x0f,0x22,0x5f,0xa5,0x11,0xcd,0x1a,0x4e,0x99,0xdc,0x3f,0x8d,0xcb,0x27,0xd9,0x92,0xc5, - 0x6c,0x4f,0xe7,0x09,0x01,0xd8,0xcf,0x34,0xd7,0xf0,0xc3,0x7e,0x38,0xe5,0x2e,0x8e,0xe6,0xd2,0xeb,0xa9, - 0x17,0x2c,0xf5,0xd3,0x5a,0x59,0xe0,0x2e,0xca,0x90,0x75,0x2a,0x21,0x87,0xd4,0x56,0xd2,0xc2,0x3b,0x4d, - 0xc3,0xa5,0x89,0x54,0xa0,0x73,0x64,0x74,0xfa,0xdb,0xde,0x39,0x5a,0xf6,0xd7,0xdd,0x9e,0x06,0x4c,0x5b, - 0xd0,0xe2,0x60,0x39,0x98,0xe5,0xa8,0xc3,0x7c,0xd4,0x34,0xd5,0x74,0x83,0x45,0xb3,0x0d,0x28,0x7e,0xa9, - 0xcf,0x1e,0x05,0xf2,0xc6,0x3f,0x3f,0x1b,0x78,0x39,0x97,0x88,0xf8,0xbc,0xc3,0xca,0x96,0x43,0xcd,0x17, - 0x2b,0x4b,0xa6,0xb3,0xa8,0x78,0x49,0xe9,0x6e,0xac,0x0c,0xf4,0xfd,0x52,0xc8,0x65,0xad,0x62,0xf8,0x3d, - 0xb3,0x09,0xfa,0xed,0xcf,0xda,0xdb,0xbf,0xb5,0xc3,0x7f,0x38,0xef,0x98,0x13,0xaa,0x34,0x0c,0x1e,0x74, - 0xf3,0x07,0xd9,0x6c,0x56,0xc4,0xe5,0xf7,0x71,0x72,0x7a,0x56,0x5a,0xa5,0x9a,0x4a,0x8b,0xb2,0x7e,0x3c, - 0xc7,0x95,0x0b,0x31,0xf4,0x04,0xb6,0x95,0x4c,0x3b,0x0d,0x0f,0x40,0xbc,0xc1,0xf9,0xd9,0xc0,0xe8,0xfd, - 0x84,0xf9,0xc0,0x52,0x90,0x52,0x29,0x15,0x60,0x3c,0x53,0xc4,0x04,0x07,0x9d,0x6e,0x73,0x39,0xcf,0x13, - 0x78,0x02,0xe5,0xe9,0xaa,0x22,0x0e,0xf6,0x20,0xf2,0xb9,0x26,0xfa,0x78,0x6b,0xd7,0x34,0x73,0x47,0x05, - 0xee,0x94,0xa8,0x41,0x3a,0x5e,0x97,0xc7,0x5e,0x74,0x05,0x30,0x5a,0x15,0xb3,0xce,0x83,0xae,0x9b,0xe1, - 0xe4,0x5c,0xba,0xcf,0x66,0xea,0x60,0x9c,0x94,0x8b,0xb6,0xe0,0x5a,0x4d,0x7e,0x83,0x2f,0xc7,0xa1,0xfe, - 0x3e,0x31,0x22,0xc1,0xea,0x54,0x57,0xd9,0xeb,0x48,0x5e,0x25,0x0e,0xf5,0xcc,0x4d,0x70,0x61,0xc6,0x52, - 0x1b,0x8f,0xd6,0xda,0x3a,0xe9,0x19,0x30,0x70,0x32,0x76,0xa5,0x76,0xae,0xce,0x49,0x29,0xba,0x50,0x9e, - 0xff,0x51,0x2d,0x40,0xda,0x49,0x35,0x1b,0xa7,0x18,0x35,0xe5,0x88,0x54,0x73,0x76,0x1f,0x44,0x11,0xd5, - 0xb6,0xa5,0xa3,0xac,0x35,0x8d,0x2b,0x0d,0x47,0x6a,0x30,0x21,0x8b,0xc5,0xcc,0xca,0xae,0x61,0x25,0xfe, - 0x86,0x2f,0xec,0x67,0xc9,0xe9,0xc0,0x8a,0x8c,0x1b,0xfe,0x9e,0xfb,0xd5,0x87,0x5a,0x4c,0xde,0xb0,0x48, - 0x3a,0x3f,0x41,0xa8,0x16,0x7e,0x67,0x17,0x6b,0xc4,0xe4,0x0d,0x7f,0x8e,0x6b,0x05,0xeb,0x41,0x7c,0x5b, - 0x31,0x52,0x9e,0x55,0x14,0x1b,0x56,0xaa,0x80,0x29,0x43,0x6d,0xed,0x40,0xf0,0xd5,0x25,0x6f,0x0a,0xd5, - 0x42,0x45,0x5f,0xaf,0x25,0xbf,0x28,0xeb,0xe3,0xdb,0x2c,0x11,0xd8,0x9a,0x5a,0x61,0xe3,0x1d,0x07,0xa6, - 0xda,0x23,0x2e,0xce,0x0e,0xcc,0x2b,0x8b,0x5f,0xa3,0xec,0x07,0xc9,0x76,0x7d,0x10,0xf0,0x85,0xbc,0x31, - 0xab,0x36,0x92,0x90,0x3a,0x77,0xdb,0xa5,0xd5,0x96,0x28,0xed,0x80,0x4d,0x6b,0xff,0x12,0x86,0x95,0xc6, - 0x85,0xa2,0xa1,0xba,0x88,0x19,0xf6,0xea,0xdf,0x2c,0x23,0xf6,0x1f,0x13,0xb6,0x9a,0xb4,0x5c,0x97,0x68, - 0x84,0x09,0xa5,0xc2,0x27,0x49,0x70,0x5a,0xff,0x2c,0xae,0xe8,0xba,0x23,0x65,0xb5,0x15,0xe5,0xd9,0x7b, - 0x8f,0xed,0x1b,0x5c,0x0e,0x6f,0xe6,0xc9,0x1a,0x69,0x61,0x9a,0xb3,0xef,0x97,0xb8,0x1e,0x06,0xbb,0x32, - 0x71,0xd7,0x1e,0x06,0x6b,0x1c,0xa4,0xf2,0xe4,0x54,0x39,0x1d,0x71,0xc5,0x74,0xe3,0xd4,0xe8,0x0f,0xf9, - 0x88,0xf0,0xeb,0x2b,0x8b,0xb5,0xca,0x29,0x4c,0xdc,0xf6,0xc0,0x1d,0xd7,0x3d,0x70,0x6b,0x87,0xc2,0x50, - 0x83,0xa2,0xa9,0xf8,0x15,0xaa,0x54,0xda,0xf9,0x3d,0xf4,0xf9,0xdf,0x54,0x1e,0x09,0x5c,0xab,0x4f,0xdf, - 0x42,0x29,0x44,0xc2,0x60,0x6f,0x6f,0xff,0x90,0xe2,0xff,0x01,0xdc,0x68,0x81,0x6e,0x83,0x2a,0xf3,0x1b, - 0xd8,0x65,0xec,0xc9,0xc6,0xfc,0x21,0xf1,0xbf,0x83,0x32,0xe5,0xf5,0xd1,0xb5,0xeb,0x8e,0x82,0xc1,0xea, - 0x28,0xf5,0xfa,0x23,0xef,0x68,0x7d,0xb4,0xde,0x3d,0xf5,0xff,0x05,0xed,0xf7,0x9d,0xc1,0x17,0xfd,0xd1, - 0x1f,0x77,0xae,0xd7,0xae,0xb7,0x3a,0x3c,0x1a,0x1f,0xed,0x1e,0x1d,0x8d,0xe9,0xdb,0xef,0xdd,0x2a,0xec, - 0x7c,0x84,0x68,0xed,0xed,0x7f,0x25,0xbe,0x73,0x74,0x74,0x67,0xdb,0x61,0xf3,0x65,0x28,0x9a,0xb7,0xbf, - 0xd8,0xb3,0x2b,0xfe,0x52,0xdc,0xb2,0xef,0xa8,0xce,0x48,0x6f,0x9c,0x7e,0xea,0x3b,0xa7,0x90,0x04,0xfa, - 0xbf,0xc1,0xcc,0x8f,0xc5,0xfb,0xf0,0x69,0x1a,0x1c,0x3a,0x96,0xdc,0xdf,0x19,0xfb,0x06,0x65,0x37,0xcc, - 0x3c,0xd8,0xb9,0xd6,0x00,0x5e,0x20,0x14,0x8a,0x4c,0x44,0x5e,0x23,0x06,0xb7,0x43,0x11,0x6c,0x59,0x55, - 0x85,0x3f,0xbc,0x7d,0xfd,0x8a,0x12,0x00,0xd8,0x88,0xe1,0x98,0x6a,0x37,0xe6,0x61,0x6e,0x15,0x84,0xa3, - 0x5c,0x88,0x52,0xa0,0x14,0x83,0x84,0x27,0x09,0x13,0x1c,0x61,0x8e,0xe5,0x8f,0x53,0xb8,0x67,0xed,0xe0, - 0x3e,0x1d,0xc7,0x52,0xed,0xaf,0x9a,0xc4,0x65,0x59,0x3f,0xb4,0xc7,0x13,0x38,0xfd,0x5a,0x8e,0xbe,0xe3, - 0xc3,0x4a,0xb3,0xd6,0x96,0x2a,0x35,0x31,0xf9,0xed,0x8f,0x52,0xa0,0x24,0xba,0xf8,0x3f,0xbb,0xa7,0x8d, - 0xaf,0x48,0x3e,0x7f,0xda,0x18,0xfd,0x37,0xa6,0x8d,0xab,0x6a,0x4e,0xdb,0xd3,0x04,0x33,0x57,0x9f,0x3a, - 0x29,0x6c,0x4d,0x1d,0x27,0xfc,0xd5,0xa9,0xe3,0x66,0x6b,0x53,0xc7,0x29,0xd6,0xd4,0xf1,0xbb,0x9e,0x3a, - 0xbb,0x2d,0x53,0x0a,0xf9,0x5d,0x29,0x50,0x7d,0xed,0xc3,0xea,0x40,0x26,0x2f,0xce,0xf8,0xb2,0x09,0x96, - 0x7f,0x6c,0x05,0x0a,0x73,0xca,0x6c,0xae,0xac,0x1a,0xc5,0x74,0x4f,0x59,0x63,0x8a,0x85,0x61,0x52,0x30, - 0x66,0xc6,0xd5,0x13,0x0d,0xc5,0xb2,0x17,0xad,0x99,0x3e,0x8a,0x81,0xe4,0xd5,0x09,0xdc,0x0e,0x95,0x99, - 0xd8,0x4c,0x2b,0x0b,0x47,0x98,0x7f,0x96,0x30,0xed,0xd4,0x62,0xce,0x05,0x9b,0x38,0xc2,0x3c,0x90,0x0d, - 0x1d,0xc5,0xf4,0x31,0x57,0x35,0x61,0x73,0x49,0x0f,0x3b,0x4d,0x50,0xa5,0xcb,0x95,0xb1,0x21,0x5b,0x4c, - 0x76,0x1a,0x56,0xa2,0xd9,0xba,0x65,0x23,0xdb,0xa2,0x2a,0x43,0x54,0x6d,0x49,0xd9,0xb2,0x48,0x55,0x36, - 0xae,0x6c,0x62,0xd9,0x61,0xe1,0x8a,0xbe,0x6a,0xfb,0x57,0x69,0x87,0x26,0x8b,0xed,0x6a,0x95,0x0d,0x26, - 0x4c,0x58,0xb5,0xf1,0x24,0x4f,0x53,0xd3,0x1c,0x53,0xa6,0x4d,0xcc,0x53,0xd5,0xe4,0x89,0x21,0x85,0x36, - 0xb5,0xac,0xac,0x40,0x1b,0x53,0xc4,0x96,0xb9,0x34,0x51,0x3c,0xd7,0x50,0x03,0xcc,0xc2,0xdd,0x3f,0x8e, - 0x8a,0x2f,0xdc,0x43,0xfa,0xeb,0xdc,0x7d,0xf8,0xe8,0x68,0x37,0x1c,0xf7,0x3d,0xc2,0x35,0x48,0x0c,0x3d, - 0xfc,0x1d,0x05,0x0e,0x7d,0x76,0xc6,0x5f,0x10,0xda,0x59,0xdd,0xa5,0xc7,0xbb,0xf4,0x78,0xb7,0xbf,0x52, - 0x65,0xc2,0x87,0x8f,0xfe,0x8b,0x8a,0x78,0xde,0x68,0xd7,0x4f,0xb2,0xd0,0x39,0x8c,0x76,0xfe,0x7c,0xbc, - 0xf3,0xfb,0xf1,0xf8,0xf0,0xe8,0xe8,0xea,0xe8,0x68,0xe7,0xe8,0x68,0x30,0xfe,0xc2,0xf1,0x33,0xfa,0x04, - 0x1c,0xe6,0xf4,0x93,0xac,0x4f,0x98,0x2e,0xf0,0x46,0xf2,0xe8,0x39,0x7e,0x94,0x85,0x16,0xb2,0x73,0xfe, - 0x78,0xe8,0xf4,0xb3,0x8c,0x38,0x34,0xdd,0xb9,0xa3,0xdd,0x91,0xf7,0x68,0x97,0xd6,0xa5,0x91,0xed,0xe8, - 0x68,0x17,0x39,0xfb,0xce,0xe1,0x1f,0x8f,0xc6,0x5f,0x3c,0xa2,0xf1,0xcc,0x51,0xe4,0xe1,0xd6,0xb3,0xd7, - 0x4f,0x0f,0x7e,0x7b,0xf3,0x6d,0x0f,0xe9,0xfd,0x47,0xbb,0x89,0xbf,0x94,0x74,0x58,0xf0,0xcc,0xe4,0xf1, - 0xe8,0x70,0xd7,0x5f,0x64,0xb8,0x3b,0x76,0x3e,0x38,0x06,0x0b,0xef,0x7e,0x70,0x07,0x34,0x90,0x53,0xbf, - 0xbe,0xe5,0x29,0xa3,0x03,0xe6,0xbe,0x54,0x57,0x2f,0x67,0x99,0x7f,0x99,0x11,0x2b,0xed,0x9f,0x66,0xfe, - 0xc7,0x8c,0x20,0xc8,0x3f,0xce,0xfc,0xab,0xcc,0x3f,0xc8,0xfc,0xf3,0xcc,0x7f,0x9a,0xf9,0x1f,0x32,0xff, - 0x31,0x83,0xa0,0xb2,0xdf,0x55,0x86,0xd1,0xfa,0xd6,0x83,0x0f,0xc1,0xb7,0x19,0x6e,0x8e,0xef,0xd0,0x5f, - 0x67,0x7b,0x5e,0x0e,0x9d,0xc0,0x79,0x48,0x9b,0x72,0xfb,0x94,0x1f,0x1f,0xe1,0x11,0xf0,0x49,0x2f,0x77, - 0x9d,0xbb,0xf4,0x12,0x5d,0x2c,0xf0,0x61,0x1b,0x1f,0xfe,0x63,0x7f,0x0f,0xcf,0x47,0x29,0xbf,0x7c,0xc3, - 0xcf,0xa5,0xb3,0xf6,0x5f,0xd3,0xd8,0xb6,0x69,0x92,0x89,0x01,0x3e,0x2d,0x57,0x28,0xbe,0xa2,0x62,0xde, - 0x90,0x06,0xf4,0x6d,0xe7,0xa7,0x15,0xd5,0xb4,0xfa,0x8f,0x6f,0x38,0xc7,0x1b,0xee,0x30,0x34,0x1f,0xea, - 0xfd,0x7c,0x9f,0x75,0x93,0x16,0x84,0x65,0xde,0x64,0xe2,0x43,0xe1,0x88,0xe5,0x2c,0x25,0x3c,0x17,0xf9, - 0xcf,0x30,0xbf,0xff,0x5c,0xfd,0x71,0xb9,0x93,0xa5,0xc1,0xae,0xff,0x02,0xaf,0x97,0x3b,0x2b,0x24,0xd1, - 0xeb,0x4f,0xf4,0xea,0x0e,0xbe,0xa0,0x03,0xb5,0xe8,0x53,0x6f,0x92,0x74,0x95,0xcd,0xf8,0x79,0xf0,0x85, - 0xb7,0xeb,0x3f,0xa7,0xaf,0x3e,0xc1,0x95,0x4f,0xc7,0xed,0x98,0xa0,0x8c,0x72,0xd8,0xaf,0xde,0xe8,0xce, - 0xae,0xff,0x8a,0xa1,0xc2,0x5d,0x1d,0x79,0x77,0xa8,0xd3,0x2f,0x33,0x36,0x0f,0xfb,0x82,0x5e,0xfc,0x9f, - 0xf1,0x25,0x40,0xcb,0x2c,0x7a,0xde,0xf5,0x7f,0xa5,0x84,0xa3,0xc1,0xe1,0x1f,0x83,0x71,0x9f,0xb2,0x3e, - 0xc9,0x3a,0x8d,0x77,0xdc,0x1f,0x92,0xf0,0x87,0xe4,0x16,0x43,0x25,0xaf,0xd2,0x86,0x08,0x63,0xff,0x87, - 0xc4,0x36,0x4e,0xa4,0x43,0xf8,0x1d,0x5a,0xfe,0x70,0x31,0x4f,0x8b,0xe0,0xd5,0xdb,0xa3,0x69,0x7f,0xd7, - 0xff,0x05,0x29,0xfc,0x4c,0xfd,0xf8,0x3e,0x0b,0x0f,0x7f,0x4b,0xe8,0xcc,0xf1,0xaf,0x69,0x7a,0x0f,0x6e, - 0x38,0x5b,0x44,0x96,0xa4,0xbd,0x4a,0xc8,0xd5,0x90,0x66,0x61,0xf8,0x72,0xff,0x65,0xb4,0x60,0x91,0xec, - 0xa1,0x73,0xb9,0xc3,0x97,0x29,0xce,0x18,0xd2,0x59,0xbc,0xf2,0xa0,0x41,0x10,0x3a,0xe3,0xd5,0x8a,0x52, - 0xd4,0xb3,0x56,0x0d,0x55,0xa7,0x0d,0x27,0xc2,0x73,0x97,0x9c,0x5c,0x97,0x3b,0xc9,0x4c,0x96,0x39,0x0b, - 0x93,0x91,0x43,0x75,0xd1,0xae,0xc4,0xa6,0x0c,0x88,0x45,0x8c,0x42,0xa1,0xc9,0x75,0x56,0x5c,0xe7,0x2a, - 0xbb,0xe5,0x5a,0x9a,0xa9,0x63,0x12,0xfe,0xc6,0x14,0xf9,0xbf,0x4a,0xf6,0x95,0xc5,0xda,0x46,0xdc,0xa0, - 0x2f,0xae,0x33,0x4e,0xb2,0x0f,0xd4,0xf6,0x77,0x48,0x87,0xd2,0x3e,0x68,0xd8,0x09,0x21,0x68,0x45,0xee, - 0x0d,0x92,0x19,0xe1,0x08,0xa7,0x9f,0x53,0xfb,0x34,0xfc,0xbb,0xba,0xc8,0x5d,0xda,0xe4,0xfe,0xef,0x28, - 0x74,0x1d,0x7f,0x58,0x04,0xc8,0x27,0xf8,0x3b,0x98,0xa8,0xfd,0x38,0x57,0xed,0x52,0xa7,0xe6,0xe8,0x14, - 0xcd,0xae,0x74,0xa8,0xe4,0x04,0xd5,0x85,0x3c,0x9a,0x26,0x99,0xb4,0x3f,0x47,0xfb,0x55,0x95,0x76,0xab, - 0x9c,0x8b,0x9b,0x94,0x36,0xe6,0xaa,0x8d,0xa5,0x6a,0x43,0xfb,0x2c,0x2a,0xdd,0x65,0xb3,0x29,0x4a,0x90, - 0x49,0x87,0xf1,0xc3,0x77,0x78,0xaf,0xb5,0x92,0xa8,0x1a,0x97,0x70,0x8f,0x3f,0x9a,0x0c,0x30,0x75,0x08, - 0x45,0x07,0x4a,0x47,0xde,0x68,0x02,0xe0,0x84,0x1a,0x9c,0xdd,0xd8,0xff,0x93,0x30,0x03,0x15,0x23,0x8e, - 0x01,0x60,0x07,0xf9,0xbd,0xbe,0xe1,0xfe,0x3e,0xf3,0x2b,0x56,0x22,0x50,0x97,0x6a,0xb7,0x5d,0xa3,0xd9, - 0x77,0xa8,0x99,0xc0,0x16,0x7b,0xf7,0xd3,0x60,0xc5,0x77,0xaf,0xe2,0xde,0xd0,0xf0,0x22,0x46,0x86,0x5e, - 0x2a,0x65,0x2e,0x5f,0x85,0xd6,0xad,0xee,0x2f,0x33,0x6f,0xab,0xbb,0xe5,0xbb,0xac,0x22,0x70,0x47,0x7b, - 0xe0,0x78,0x17,0xcd,0x7b,0x61,0xaf,0x11,0x59,0x5d,0x5d,0x29,0xc8,0x25,0xe6,0x1d,0x76,0x20,0xab,0x22, - 0x36,0x9a,0x0b,0x4d,0x53,0x79,0x56,0x99,0xc7,0x0f,0x74,0xa5,0x6b,0x0f,0x77,0xa0,0xae,0x9d,0x07,0xad, - 0x5e,0x72,0x5b,0xce,0xb1,0xb8,0x7b,0x81,0x4a,0x50,0xd6,0x1b,0x51,0x31,0x49,0xe8,0x05,0xf4,0xa8,0xae, - 0xde,0xa4,0xc2,0xbb,0x7d,0x97,0x63,0x30,0x88,0x1d,0xfd,0xc8,0x39,0x4e,0x5d,0xfa,0x8e,0x3d,0x40,0x3f, - 0x10,0x12,0x11,0x08,0x38,0xc3,0xd4,0xbe,0xd1,0x84,0x02,0x7d,0xdf,0xe9,0x39,0xfd,0xa8,0x44,0xa8,0x9b, - 0x7a,0xdf,0xf5,0xa5,0x2a,0x35,0x5a,0x9f,0x80,0xa0,0xfe,0x4e,0xf8,0xd2,0xf1,0x0c,0x57,0xc4,0x66,0x3b, - 0x95,0x4d,0x68,0x85,0x07,0x32,0xc2,0xb0,0x66,0xfb,0xd0,0x7b,0xb4,0x69,0xca,0xad,0x41,0xd0,0x12,0xcb, - 0x7e,0x97,0x39,0xf0,0x56,0x2b,0x07,0xed,0x60,0x4f,0x2b,0x3c,0x90,0x2f,0xe3,0x9d,0xea,0x23,0x5e,0x1d, - 0xda,0xd6,0xf2,0x71,0x16,0x61,0x57,0x57,0x5f,0xf9,0xdd,0x19,0xfe,0x67,0x2c,0x33,0x20,0x4e,0x70,0x7c, - 0xa7,0x6e,0x4a,0xe2,0xf4,0x89,0x4d,0xf1,0x46,0xc7,0x89,0x3c,0xf9,0xb4,0x85,0xfa,0xcc,0x87,0x3b,0x7d, - 0x57,0xea,0x47,0xdf,0x47,0x4e,0xa0,0x72,0xd2,0xf4,0x06,0xc7,0xff,0x36,0x99,0x23,0x24,0x11,0x93,0x57, - 0x9f,0x66,0x47,0xa0,0x28,0x0a,0x25,0xdb,0x1d,0x70,0xaf,0xb5,0xc9,0xa6,0xa4,0x49,0x88,0xe4,0x81,0xea, - 0xd7,0xc8,0x95,0xba,0xd0,0x0c,0x71,0x08,0x1d,0xc6,0xb0,0x54,0x9d,0x42,0x8a,0x77,0xee,0x5c,0x52,0xc5, - 0xae,0x2c,0xb9,0xf4,0xd7,0x09,0x32,0x8f,0x1b,0x4a,0x42,0x1a,0x09,0x65,0xa5,0xc7,0x4b,0xae,0xc4,0x6e, - 0xc4,0xbb,0xa6,0x0c,0x0f,0xf7,0x18,0x5d,0x52,0xbf,0xa8,0x03,0x26,0xdc,0xf6,0x21,0xe5,0x1f,0x7b,0xa2, - 0xfb,0x82,0x5c,0x34,0x01,0xb5,0x6c,0xda,0xfd,0x0b,0x7d,0xf2,0x74,0x99,0x2a,0x9d,0x52,0xfb,0xfb,0xd0, - 0x23,0x90,0xf2,0x06,0xbe,0xee,0x4c,0x18,0x0e,0x9d,0x4f,0x83,0x16,0xc1,0x74,0x7f,0x13,0x54,0x5a,0xcb, - 0x6d,0x2d,0x96,0x4b,0x65,0x5a,0x93,0x86,0xd0,0x0d,0xf5,0xd5,0xe3,0xce,0x67,0x9f,0x02,0xe2,0x00,0x41, - 0x4b,0x27,0x64,0x23,0x56,0x69,0xe0,0x2b,0xc2,0x6b,0xec,0x3f,0x1e,0xa7,0x97,0x44,0x0d,0x86,0xdf,0x6d, - 0x35,0x2e,0x04,0x40,0x82,0x1d,0x37,0x1d,0x4b,0x5b,0x32,0x2b,0xe8,0x14,0x74,0xfb,0xfc,0x79,0x98,0x8d, - 0x74,0x2f,0x03,0xf5,0x01,0x3a,0x68,0x04,0xbd,0x81,0xea,0x95,0xbf,0x0c,0x1b,0xdb,0x5a,0xe6,0x67,0x08, - 0x74,0xdd,0xfd,0x4d,0x59,0x8d,0xc3,0x63,0x89,0xe4,0xe1,0x09,0x5a,0xf2,0xcc,0x0c,0xe5,0xce,0x8a,0x67, - 0x64,0xe9,0x0d,0x27,0x94,0x81,0x4e,0x3b,0x80,0x55,0xad,0x1e,0xa5,0x67,0x62,0x2e,0x29,0x87,0x4e,0x7f, - 0xe6,0xf9,0xb2,0x12,0xd2,0xbe,0xef,0xe8,0xfd,0xa3,0x66,0x7b,0xee,0xcf,0x2a,0xc9,0x8a,0x5b,0xac,0x56, - 0x50,0x98,0x96,0x75,0x38,0x99,0x2f,0xe9,0x74,0x72,0xea,0x57,0x57,0x8e,0x36,0x17,0xac,0x16,0x62,0xeb, - 0xdb,0xb4,0x2e,0x26,0x24,0x4c,0xda,0x89,0xfb,0xcd,0x2d,0x2c,0xd3,0x88,0x2d,0xc6,0xf8,0x52,0x34,0x18, - 0xa4,0xbb,0x16,0x89,0x04,0xe0,0x29,0xd0,0x6d,0xc9,0xc1,0x9d,0x5f,0x33,0xcf,0x73,0x73,0x15,0x86,0xe8, - 0xea,0xac,0x60,0x4d,0x8c,0xe5,0x1b,0xa2,0xa7,0xa2,0x2e,0x97,0x14,0x20,0x64,0x95,0x03,0x2e,0x08,0x2b, - 0x89,0x2b,0x42,0xbe,0x98,0xa8,0xf6,0x4a,0x4e,0x1a,0xfc,0x9e,0xc3,0xe1,0xce,0x93,0xf8,0xa7,0x78,0x56, - 0xbe,0x5e,0xc4,0x29,0xb2,0x94,0x99,0x5f,0x9b,0x8a,0xa0,0x48,0xfc,0x86,0x2c,0x34,0xf8,0x39,0xf6,0x2d, - 0xe1,0xc1,0xf7,0x19,0xf1,0x0f,0xd3,0xe5,0xa4,0x5b,0xe5,0x86,0x63,0x39,0xf2,0x2e,0xd7,0x01,0xb2,0x74, - 0xc8,0x3f,0x8f,0x3d,0x42,0x0c,0xde,0x67,0x09,0x81,0x89,0x8f,0x19,0xf9,0x77,0x37,0x89,0xda,0x83,0xa3, - 0x17,0x40,0x3b,0x9f,0xd9,0x80,0x7f,0x48,0xd6,0x7d,0xbd,0x13,0x7c,0xe2,0x5d,0x92,0x54,0xb9,0xf3,0xf0, - 0xcd,0xc5,0x98,0x44,0x17,0xea,0xbb,0xf1,0x08,0x3b,0x36,0x86,0x67,0x54,0x08,0x8c,0x7e,0x34,0x2c,0xdf, - 0xd1,0xd5,0x9d,0xe3,0x71,0x7f,0x75,0x44,0x14,0xb6,0x37,0xfe,0x62,0x74,0xe4,0x81,0xdd,0x0b,0x1f,0xad, - 0xfe,0xd0,0x3d,0xa0,0xd7,0x23,0x77,0xd7,0xff,0x41,0x95,0x38,0x24,0xb6,0x8e,0x98,0xbb,0xe3,0x3b,0x63, - 0x14,0x1d,0x83,0x33,0x24,0xea,0xba,0x91,0xb8,0x3a,0x3a,0xbc,0x4b,0xf4,0xfd,0xdd,0x31,0x3d,0x38,0xf4, - 0xe0,0xe0,0x81,0xc8,0x60,0xfc,0x34,0xf3,0x8e,0xbd,0x2f,0xa8,0x5a,0xa2,0xdc,0xbf,0x03,0xa9,0x53,0x4c, - 0x82,0x7b,0xff,0x80,0x33,0xa3,0xe0,0x1b,0x51,0xb3,0x08,0xf6,0xef,0xfb,0x32,0xdf,0xf7,0xef,0xf9,0xcb, - 0x45,0x70,0xff,0x6b,0xe2,0x90,0x67,0x65,0x70,0xff,0x1f,0x7e,0x8e,0xdb,0x93,0xe0,0xfe,0x37,0x3e,0xbc, - 0x60,0x07,0x0f,0xf6,0x7c,0xb9,0xc0,0x0c,0x0e,0xbf,0xf6,0x1f,0x7c,0x45,0x4c,0xc8,0xbf,0xb2,0x2e,0xbf, - 0x5c,0x40,0x39,0x7d,0x00,0x8f,0xe5,0x33,0x6b,0x48,0x6c,0xd3,0xef,0x19,0x84,0x41,0x04,0x0f,0x7a,0x53, - 0xe3,0x05,0x00,0x12,0x9d,0x46,0x22,0x42,0x1c,0x42,0xa3,0x82,0xbf,0x99,0x3c,0xea,0xfd,0x99,0x5c,0x38, - 0x72,0x16,0xc4,0x25,0x0b,0xfe,0x95,0xb9,0x75,0xdc,0xd0,0x23,0x8c,0xd3,0x53,0x29,0x93,0x65,0x8e,0x45, - 0x3a,0xe0,0x0f,0xb4,0x81,0x27,0x65,0x3e,0xe7,0x12,0x5b,0x3a,0x03,0x25,0xfc,0x08,0x0d,0x5d,0x9f,0x7d, - 0x87,0xd6,0xbe,0x71,0x8a,0x7c,0x8c,0xe6,0xf5,0x4f,0xf4,0x2e,0x1f,0x20,0x2f,0xa8,0x7d,0x41,0x82,0x7c, - 0xe2,0xb9,0xc3,0xa7,0xbb,0xe2,0x15,0xea,0x2e,0x08,0x23,0xc9,0xd5,0xdb,0xde,0xd6,0x3d,0x94,0x6f,0xdc, - 0xe7,0x3d,0xd4,0x97,0x4c,0xa7,0xf3,0xf8,0xb3,0x8a,0xed,0x43,0xae,0xc0,0xeb,0xf3,0x39,0xa5,0xee,0x01, - 0xfe,0x7f,0xa3,0x85,0x20,0xae,0xb1,0xe9,0x8f,0x05,0x6e,0xe0,0xaa,0xa8,0x76,0x1d,0x0b,0x7b,0x7c,0x2a, - 0x0b,0xeb,0xd7,0x30,0xc4,0x1a,0xde,0x4a,0xd2,0xb6,0x1f,0x1c,0x54,0xc7,0xe1,0xf3,0x2a,0x6b,0xa1,0xaa, - 0xa6,0x13,0xaa,0x29,0xa5,0x9a,0xee,0x42,0xfe,0x45,0xfb,0xad,0x0f,0xe6,0xbb,0xaa,0x15,0x67,0x9f,0x45, - 0x49,0xc3,0xd1,0x51,0xa5,0x8e,0x88,0xcb,0xb0,0x91,0x90,0x3a,0x81,0xa2,0x99,0xbc,0x1b,0xb2,0x73,0xf4, - 0x69,0xc7,0x57,0xf9,0x1d,0x4f,0xf5,0x79,0x32,0xcf,0xa2,0x73,0xc4,0xd5,0xfd,0xcf,0xac,0xed,0xf5,0x34, - 0x33,0xce,0x32,0xf9,0x15,0x92,0x48,0x3a,0x13,0xf1,0xb3,0x5a,0xfd,0xae,0x12,0x8d,0xf0,0xb2,0x08,0x7f, - 0x83,0x18,0x5e,0x2b,0xa6,0x3b,0xe6,0xc3,0x53,0xe2,0x18,0xb4,0x07,0x77,0xdc,0x33,0x7e,0x17,0xa7,0x88, - 0xe0,0x57,0xcf,0xad,0xa4,0x8e,0x26,0x9f,0xe1,0x38,0xc2,0x4b,0x97,0x15,0x2d,0x7e,0xcb,0xd8,0x34,0xda, - 0xa4,0x7b,0x26,0x7a,0x57,0x0d,0x81,0xae,0x56,0x1f,0xd2,0xa1,0xf2,0x8d,0xfc,0xf1,0x24,0x36,0x81,0x18, - 0x3b,0x16,0x72,0xcb,0x98,0xf1,0x2a,0xff,0x98,0xe9,0x24,0x7e,0x01,0x6b,0x2d,0x7e,0x6b,0x06,0x1c,0x84, - 0x8f,0xee,0x38,0x0a,0x5d,0x5b,0x28,0x74,0x74,0x74,0xe2,0xf4,0x9d,0x29,0xe1,0xf0,0x19,0x04,0x70,0x04, - 0xf4,0x25,0x02,0xea,0xd2,0x24,0x7f,0x64,0xc7,0x6c,0x13,0x08,0xff,0x70,0xec,0xf9,0x57,0x49,0x79,0xe6, - 0x47,0x57,0x51,0x52,0xfa,0x6c,0x18,0xe0,0xb3,0x0f,0x74,0xa5,0x3c,0xcf,0xd7,0x40,0x3e,0x3b,0x2e,0xf5, - 0x39,0x2e,0xbd,0x7f,0x45,0x68,0x35,0xf6,0x3f,0x42,0xea,0xa7,0x90,0x8d,0x4f,0xcc,0x59,0x06,0x6f,0x87, - 0xec,0x89,0xc5,0x97,0x11,0x68,0x0f,0x60,0xda,0xef,0xa2,0xb8,0x0b,0x25,0x36,0x46,0x42,0xd4,0xb3,0x13, - 0xb4,0x24,0x5d,0xc2,0x75,0xcf,0xc9,0xf2,0xf4,0x14,0x62,0x42,0x35,0x0b,0x55,0xd0,0x15,0x47,0xf9,0xa9, - 0xc1,0x99,0xa0,0x4e,0x07,0x1a,0xd6,0x0a,0x43,0xf3,0xfa,0x3c,0x42,0x09,0x12,0xdc,0x18,0xb3,0x74,0x4a, - 0xfc,0x8e,0xb2,0x02,0x7b,0x67,0x3d,0x84,0xd2,0x81,0xf0,0x8f,0x8e,0x08,0xe5,0xd3,0x9f,0xaa,0xd6,0xc6, - 0x07,0x6a,0xc3,0xfd,0xd0,0x94,0xfc,0x88,0x28,0x62,0xa3,0xd5,0x28,0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7, - 0xe1,0xd6,0xbe,0xe7,0x9f,0x64,0x6a,0x3d,0xd9,0x40,0x0c,0x12,0x6e,0x2b,0x62,0xcb,0x30,0x7d,0xf8,0x31, - 0xb3,0x9d,0xb3,0x7c,0xcc,0xd8,0x0e,0x17,0x37,0x39,0x67,0x59,0x58,0x56,0x50,0x7d,0x82,0x37,0x7d,0xd6, - 0x03,0x9c,0xfc,0x63,0xa4,0x58,0x27,0x39,0x27,0x5e,0x21,0xb1,0x71,0x54,0xf3,0x87,0x8b,0x0c,0xa0,0x5d, - 0x76,0x6c,0x84,0x57,0xb2,0x11,0x4e,0x9b,0x19,0x9a,0x62,0x1a,0xca,0xf3,0xb1,0x95,0x27,0x2b,0xca,0x66, - 0xa6,0x4b,0x74,0x81,0x56,0x22,0xb9,0x48,0x4a,0x04,0x44,0x54,0x46,0xb9,0x44,0x9e,0xb2,0xf2,0xc9,0xd6, - 0x3e,0xeb,0x7a,0x22,0xc6,0x39,0x76,0xc7,0xaf,0x67,0x94,0x8b,0xbb,0xe9,0x63,0xbe,0x40,0xa7,0xee,0xb7, - 0x2c,0x33,0x9a,0x93,0x4c,0x6f,0xcb,0x3e,0x6e,0xf0,0xa0,0xd6,0xba,0x3c,0x91,0xbb,0x05,0xd7,0xb6,0x9a, - 0xce,0xb5,0x1f,0x01,0xd6,0xbf,0xf3,0x8b,0x2a,0x7e,0xbd,0x68,0xf2,0x2d,0x3d,0x75,0xf7,0x86,0xeb,0x86, - 0x1c,0xaf,0xb2,0x62,0x8d,0x0b,0x59,0x4a,0x66,0x55,0xff,0x24,0x8c,0xaa,0xa0,0xf6,0xc9,0xa3,0x90,0xb8, - 0x9e,0x08,0xa1,0x60,0xe6,0x3a,0x2b,0x36,0x39,0x8d,0xab,0x40,0x48,0x35,0x4d,0x53,0x86,0x7c,0xed,0x8b, - 0xdc,0x96,0x01,0xa6,0x5d,0xd1,0xe4,0x51,0x98,0x0c,0x27,0x54,0xa0,0x1c,0xb0,0x97,0x15,0xfe,0x61,0x7f, - 0xeb,0x2c,0x99,0x40,0xff,0x87,0x3a,0x7b,0x88,0x09,0x4c,0xb8,0xd9,0x9d,0x7d,0xfe,0xce,0xdc,0x91,0x73, - 0x92,0x83,0xc2,0x2b,0x46,0x4c,0x58,0xe5,0xec,0xb4,0x9e,0x1f,0x68,0xfc,0x34,0xdd,0x5b,0x7b,0xe2,0x19, - 0xc1,0x59,0x70,0x2e,0x8e,0x83,0xdb,0x99,0x6f,0x9f,0xf3,0xf9,0xb5,0x8e,0xc8,0x0c,0xd2,0xa4,0x6a,0xe7, - 0x08,0xf0,0x74,0x82,0x45,0x84,0x32,0x7a,0x25,0x95,0xa1,0x25,0x2b,0x07,0x15,0x7d,0xc9,0xd0,0x36,0xc7, - 0x8d,0x73,0x83,0xaa,0xe4,0x0f,0x4b,0x9a,0x94,0x78,0xc8,0x42,0xbe,0x84,0x10,0x38,0xb1,0x24,0x8f,0x33, - 0x37,0x33,0xea,0x6c,0xb0,0x4b,0xcd,0x1a,0x77,0xe2,0x8b,0xf0,0x6d,0x76,0x38,0x45,0x88,0x28,0xfe,0xad, - 0xc9,0xbf,0x89,0x80,0x3b,0x2a,0x8e,0x8e,0xde,0x12,0xe9,0xe6,0xb9,0x0f,0x77,0x9d,0xfe,0x54,0x0b,0xc2, - 0x3d,0xda,0xf1,0x09,0x78,0x69,0x58,0x67,0x69,0xd1,0xf6,0xc2,0x96,0x69,0x33,0x78,0x68,0x48,0x33,0x96, - 0xb0,0x3e,0xf5,0x67,0xca,0xfc,0x9f,0xf2,0x3b,0x89,0x89,0xe3,0xd8,0xc8,0x61,0xe5,0x80,0x6a,0x17,0x62, - 0x74,0x6a,0xbb,0x90,0x96,0x77,0x76,0x1e,0xed,0x9e,0x12,0x8b,0x41,0xa7,0xbe,0x9d,0xe5,0xe8,0xf0,0xe9, - 0xb3,0xc7,0x07,0x8f,0x8f,0x0e,0xab,0x9c,0xe3,0xb1,0xc9,0x09,0xa1,0xb2,0x3b,0xf5,0xc5,0xed,0x32,0xf4, - 0x59,0x94,0xcf,0x26,0x0e,0xa3,0x77,0x16,0xc9,0x41,0xc9,0x0f,0x50,0x82,0x70,0x20,0x7f,0x21,0x98,0xd7, - 0x3a,0x3a,0x3b,0x67,0xba,0xbf,0x71,0x78,0xe6,0xe7,0x54,0xd1,0x72,0x67,0x86,0x48,0xd4,0xc6,0x0e,0xe9, - 0x32,0xb4,0x94,0x01,0x1e,0x8a,0x0c,0x00,0x6a,0x98,0x97,0x3c,0xf9,0xcb,0x4c,0x47,0xd4,0xd2,0x16,0x64, - 0xb6,0xea,0xc0,0xce,0xd1,0x87,0xfb,0xb1,0x14,0xb9,0x60,0xf0,0x2d,0x55,0x78,0x46,0x44,0xaa,0x50,0x2a, - 0x88,0x2a,0x3c,0x82,0x72,0x58,0x52,0xed,0xc2,0x07,0x3e,0x6c,0x6d,0x53,0xf7,0xa2,0x7f,0x9f,0x58,0x3c, - 0x85,0xea,0xd7,0xd0,0xeb,0x9a,0x35,0xda,0x3c,0xb5,0xdb,0x1c,0x3f,0x92,0xf6,0x4e,0xb9,0xbd,0xd4,0x3d, - 0xed,0xdf,0xb3,0x8b,0x23,0x3f,0x34,0xa4,0xd9,0x3d,0xad,0x3b,0x17,0x95,0xc3,0x8f,0xc8,0xf8,0x11,0x77, - 0xcb,0x3a,0xa0,0xa1,0x29,0x80,0xfc,0x27,0x26,0xff,0x44,0xf2,0x9f,0x48,0xbb,0xc7,0xe1,0x72,0x98,0xba, - 0x27,0x56,0x39,0x9a,0xc0,0x93,0xc3,0xfd,0xb1,0x7f,0xcc,0x6c,0xa9,0x5d,0xc7,0x55,0x33,0x56,0x4a,0x69, - 0x2a,0x8d,0xa4,0x52,0x13,0xf9,0xef,0x5a,0x7b,0xfc,0x2b,0x51,0x15,0x73,0x1e,0x01,0x36,0x0b,0x76,0x59, - 0xb0,0x5c,0x53,0x93,0xa5,0xdd,0x55,0x6b,0x57,0x0d,0xb7,0xb0,0x19,0x54,0xb5,0x45,0xc6,0xc6,0x1f,0x99, - 0x49,0xc8,0x29,0x61,0xe8,0xa5,0x6e,0x56,0xeb,0xb0,0xf2,0x1f,0xa9,0x03,0x71,0x62,0x3f,0x55,0x36,0x98, - 0x4b,0xec,0xc5,0xb7,0x74,0x8a,0x13,0xda,0x40,0x67,0x52,0x37,0xa9,0x17,0x86,0xef,0xf3,0xa5,0x9f,0xaf, - 0xd7,0xae,0x58,0x4d,0x79,0xd7,0xad,0x50,0x0b,0x69,0x68,0xdc,0x14,0xb2,0xd5,0x45,0x55,0x27,0x73,0xff, - 0x82,0x51,0x68,0xff,0xa6,0xe2,0x3a,0x3c,0xa7,0x5e,0xf8,0x73,0x7e,0xcc,0xc4,0x01,0x74,0xce,0x17,0xe4, - 0x7a,0x98,0xcb,0x70,0xc2,0xde,0x1a,0xb6,0xb6,0x12,0xf6,0xc1,0x23,0xdd,0x57,0x30,0x3c,0xe5,0x4d,0x2d, - 0x92,0xa9,0x19,0x76,0xfc,0xde,0x70,0xf1,0x70,0x36,0x5c,0x68,0x25,0xbf,0x33,0x5d,0xe0,0x70,0x31,0x1e, - 0x2e,0xa8,0xd1,0x1d,0x58,0xcb,0x9d,0x61,0x4c,0x1a,0x80,0xee,0x3a,0xce,0x5d,0xcc,0x1b,0xdf,0x51,0x9d, - 0x1d,0xde,0x1f,0x6f,0x6f,0x2b,0x85,0x4e,0xbc,0xf8,0x2a,0xf9,0x81,0x9d,0xfc,0xc0,0x24,0x7f,0x69,0x27, - 0x7f,0xa9,0xac,0x09,0x2f,0xb9,0x9a,0xd5,0x0a,0x19,0xf1,0xf7,0x4b,0xfa,0xeb,0x38,0xfe,0x45,0xe8,0x44, - 0xda,0xc5,0x35,0xdc,0x37,0x4b,0x0d,0xfb,0xe3,0x91,0xde,0x23,0xcf,0x62,0xb8,0xd4,0x7d,0x15,0x5f,0xc1, - 0x25,0x6a,0xf1,0x3c,0xcb,0xbf,0xa7,0x5c,0x41,0xf7,0xd7,0xe1,0x94,0x46,0xa4,0x74,0xd7,0x51,0x89,0xcf, - 0x24,0x76,0xf0,0x63,0xe9,0x5e,0xd2,0x36,0x5a,0xaf,0x97,0xac,0xfa,0xcc,0x8b,0xcc,0x0a,0xac,0x84,0x59, - 0xed,0x13,0x27,0x48,0x1b,0xb8,0x52,0xa0,0x6e,0x0a,0x8f,0xf4,0x21,0xc7,0x45,0x68,0x20,0xfb,0x14,0xb6, - 0x64,0x7c,0xe5,0x4d,0x6f,0xf0,0x68,0x93,0x4e,0xbd,0x35,0x2d,0x3f,0x70,0x51,0xe6,0xc7,0xec,0x7a,0x61, - 0xbf,0xb9,0xef,0x0e,0xb4,0xc9,0xf8,0xb9,0x7e,0x78,0xaa,0x1e,0x00,0x3b,0x97,0xe6,0x7c,0x3b,0x37,0x8e, - 0x9d,0x2f,0x3d,0x02,0xe9,0x89,0xda,0xee,0xe7,0x70,0xe3,0x6a,0x3d,0x2f,0xad,0xe7,0x99,0xf5,0xec,0x3e, - 0x0d,0xcf,0x6d,0x8c,0xe5,0x13,0x2e,0x7c,0xb8,0x47,0xa0,0x7f,0xd9,0x0f,0x9f,0xfa,0xb5,0xca,0x0f,0x6a, - 0xe7,0xfe,0x9e,0x7f,0x09,0x84,0x73,0xe9,0xad,0x2f,0x59,0x1c,0x49,0x5f,0x09,0x2b,0xc2,0x72,0xdc,0x60, - 0xd2,0x83,0x0a,0x99,0x1e,0xb0,0x8e,0x69,0x2c,0x6a,0xca,0x2d,0x54,0x1b,0x6b,0x13,0xd9,0x75,0xee,0xb2, - 0x8c,0x48,0xa2,0x84,0x9c,0x65,0xbe,0x75,0x0d,0x51,0x3b,0xfd,0x2c,0xc9,0x8a,0x7d,0x0c,0x76,0x08,0x55, - 0x5a,0x27,0xa2,0xdf,0x05,0x12,0x1b,0x20,0xa5,0x33,0xef,0xcd,0xc0,0xa5,0xbe,0xfa,0x2d,0xd4,0x1d,0x18, - 0xcc,0x5d,0x28,0xf4,0x64,0x1d,0x8b,0x11,0xac,0x5f,0x65,0xc7,0x8a,0x80,0xb4,0x58,0xad,0xae,0x70,0xc7, - 0x39,0x7c,0x05,0x90,0x87,0xcb,0x6c,0x9a,0xbb,0x25,0x54,0xe1,0x6b,0xdc,0x4b,0xa5,0xec,0x4c,0x48,0x4f, - 0x48,0xdb,0xd8,0xa6,0x6c,0xb5,0xf0,0x12,0xf1,0x51,0xdf,0x65,0x5a,0x77,0x32,0x55,0x3a,0x93,0xf2,0x14, - 0xca,0x8f,0x39,0x44,0x7f,0xc9,0x7c,0x59,0x46,0xde,0x01,0xa0,0x45,0x4c,0x0c,0x3d,0x28,0x97,0x2b,0x79, - 0xe2,0x0f,0x25,0x77,0x3b,0xa1,0x03,0x12,0x12,0x45,0xea,0x31,0xe8,0xb9,0x2d,0xe5,0x40,0x9f,0x3d,0x2a, - 0x4e,0xc3,0x99,0x27,0xca,0xcc,0xfa,0x3a,0x1a,0xc9,0x53,0x51,0xbe,0x9e,0xd6,0xe5,0xa9,0x34,0x48,0x88, - 0xed,0x76,0xdf,0x47,0x97,0x91,0x9d,0xb7,0x96,0x89,0xfa,0x8c,0x18,0xb5,0x1e,0x37,0x48,0x43,0x3f,0x61, - 0x4f,0xf0,0x1c,0x88,0x52,0x4f,0xc4,0x54,0xe1,0xb1,0x53,0x43,0xe0,0x03,0x9f,0xcd,0xc2,0xd3,0x8c,0xf6, - 0xbc,0x3b,0x23,0x92,0x96,0xe0,0x9f,0x15,0x03,0x69,0xfc,0x17,0xe1,0xcc,0x37,0x17,0x8d,0x17,0xb8,0x54, - 0x83,0xec,0x0e,0xd5,0x5f,0x80,0x54,0x66,0x53,0x83,0x59,0xc5,0x57,0xec,0x79,0xcc,0x58,0xcc,0x2c,0xc6, - 0x02,0x37,0x92,0x9d,0xd1,0x8b,0x8d,0xb0,0xcc,0xb8,0xbb,0xb4,0xa3,0x34,0x9a,0x5b,0x55,0x0b,0x05,0x97, - 0xda,0x0f,0x4d,0xc9,0x11,0x3c,0xe1,0xa5,0x47,0xe1,0x28,0xab,0x36,0x4a,0x94,0xb8,0x24,0x82,0xb2,0x1a, - 0x4a,0x3e,0x8d,0x8c,0x12,0x96,0x74,0xad,0x3d,0x6a,0xd2,0x38,0x58,0xd7,0x8e,0x85,0x76,0x12,0x15,0x7b, - 0xe6,0x05,0xb3,0xea,0x2e,0x94,0xbe,0xfe,0x0b,0xc6,0xfc,0x1d,0x91,0x4a,0xad,0x3b,0x5b,0x75,0xfe,0xc6, - 0xb8,0x34,0x2d,0x71,0xc9,0x18,0xcb,0x25,0x63,0xa9,0x2e,0x19,0xe3,0xb5,0x32,0xb2,0xee,0xb8,0xc2,0x15, - 0x5d,0x66,0x75,0xfd,0xa8,0x63,0x27,0x36,0x2f,0x74,0xb5,0x36,0x93,0xba,0x97,0x84,0x43,0x5d,0x74,0xea, - 0xd2,0x5e,0xac,0x4b,0x14,0x00,0x93,0xce,0x55,0x5e,0x32,0xbf,0xce,0xab,0xf1,0x5d,0xc9,0x8b,0x4c,0x73, - 0x39,0xd2,0x10,0xb0,0x5a,0xe5,0xd4,0x57,0x86,0x19,0xa9,0x92,0x20,0x80,0x9f,0xa8,0x28,0x75,0x3f,0x97, - 0xee,0xeb,0x8f,0x6a,0x14,0xb3,0xb5,0x17,0xe4,0xd4,0x22,0xed,0xc6,0x2d,0x0b,0xd6,0x60,0x22,0xd4,0xaa, - 0x66,0xeb,0x66,0x5e,0xd5,0xde,0xa5,0x66,0x73,0x72,0x7c,0x3d,0x6d,0x81,0x1e,0x73,0x68,0x3d,0x00,0xb8, - 0x96,0xdc,0x52,0x02,0x82,0xc2,0x66,0x0b,0x98,0xfe,0xba,0x95,0x93,0x1b,0x9e,0x9b,0x94,0x87,0xf3,0x3b, - 0x0e,0x16,0xee,0x7a,0x5c,0xef,0x3a,0x2c,0x32,0x68,0xc2,0x8c,0x8c,0x7d,0x36,0x80,0x85,0x02,0x3b,0xfd, - 0xe2,0x28,0xe2,0xb2,0xfc,0xfb,0xa2,0x4f,0x12,0xca,0x57,0x91,0x0b,0xae,0x56,0x77,0x1d,0x25,0x3f,0x70, - 0xee,0x0e,0xa9,0xd9,0x5a,0xb0,0xb7,0xfa,0x3b,0x9b,0x11,0x1c,0x9e,0x8d,0xc3,0x99,0x18,0x5b,0x57,0x7d, - 0x14,0xbc,0x31,0xe3,0xad,0x23,0x61,0xd9,0x12,0x39,0xda,0xfd,0x8b,0xe1,0x7c,0x94,0x02,0xe8,0x88,0xf2, - 0x9a,0xf9,0x99,0xce,0x88,0x38,0x63,0x69,0x87,0x5e,0x7d,0x76,0x98,0x19,0xb6,0x6d,0xec,0x97,0x96,0x7b, - 0xac,0xc3,0x96,0x4f,0x2c,0xca,0x81,0xe0,0xcb,0xf7,0xa1,0x0d,0xa2,0x11,0x4a,0xcf,0x91,0x37,0x76,0xa7, - 0xb0,0x35,0x81,0xa6,0x75,0xd5,0x47,0x4c,0xad,0x6f,0xea,0x0f,0xf7,0x89,0xdc,0xaa,0xb7,0x97,0x8a,0xc3, - 0x6d,0x1c,0x50,0x35,0x29,0xbf,0x0e,0x2e,0xf6,0x2a,0xb5,0xaf,0x8e,0xc4,0xa3,0x09,0x10,0x5b,0x52,0xe1, - 0xac,0x45,0xe5,0x8e,0x03,0xa6,0xdd,0x9e,0xd9,0x4d,0x35,0xe7,0x1f,0x71,0x38,0x41,0xe0,0x47,0xb9,0xc2, - 0x19,0xb9,0x08,0xb5,0xe9,0x54,0x5c,0x50,0xae,0x6d,0x55,0x18,0xad,0xea,0x84,0x51,0x1c,0x3c,0xc9,0xd8, - 0xad,0x1f,0xbb,0x3c,0x97,0x5e,0x8f,0x68,0xc4,0x10,0xe7,0x29,0x8f,0x6f,0x5b,0x05,0xcf,0xc1,0x16,0xfb, - 0xee,0x73,0x9b,0xd2,0x13,0x81,0xd2,0xcb,0x6c,0xf4,0x7b,0xe2,0x5e,0x66,0x5e,0xf0,0x5d,0xc2,0xdc,0x7a, - 0xc5,0x2c,0x18,0xe7,0x6f,0xbe,0xc5,0x82,0xd2,0x9f,0x09,0x5c,0xf8,0x46,0x45,0xf9,0x02,0x44,0x03,0x10, - 0x16,0xc7,0xf3,0x89,0x27,0x38,0xac,0xbc,0x6b,0x5a,0xd9,0x5c,0xe8,0x09,0xef,0x11,0xae,0x9a,0x34,0xb1, - 0x6c,0x08,0x89,0x09,0xac,0x74,0x7d,0x45,0x5e,0x35,0xf0,0x57,0xa6,0x35,0x14,0xe7,0xe1,0xbf,0x62,0xd7, - 0x76,0x87,0x3c,0x54,0x05,0xe4,0x32,0x66,0x2e,0x97,0x50,0xaa,0xee,0x6b,0xe7,0x9f,0x27,0xa2,0x29,0xe8, - 0x40,0x67,0x82,0x3a,0x98,0xf4,0xf3,0x8a,0xf2,0xd6,0xa7,0xd7,0xe4,0x61,0x65,0x6a,0xd1,0xd1,0xad,0x1b, - 0x3b,0xc5,0xfb,0x0c,0x1a,0x7d,0x30,0x48,0x8a,0x94,0x48,0xab,0xcf,0xea,0x82,0xe7,0x71,0x5a,0x04,0xc5, - 0x9a,0x23,0x03,0x79,0xa3,0x52,0x93,0x8d,0xb0,0x02,0xbd,0xe7,0x5b,0xa5,0x30,0x49,0xfa,0x45,0x17,0x03, - 0x21,0x89,0x07,0xb9,0xd3,0xa2,0x7d,0x1b,0x08,0xcc,0xc6,0xd5,0x9a,0x1a,0x30,0x3e,0x2c,0x2b,0xd8,0x64, - 0x90,0x86,0xd2,0xb8,0xd5,0xd8,0x7d,0x53,0x89,0xd0,0x8f,0x39,0x1b,0x84,0xb7,0xdc,0xc4,0x37,0xb7,0x69, - 0xbd,0xb0,0x6f,0x6c,0xdd,0x82,0xad,0x3d,0x36,0x8f,0x20,0x76,0xc5,0xd5,0xb0,0x89,0x38,0xc6,0x4a,0x90, - 0x04,0x69,0xf0,0x45,0xf2,0x67,0xcc,0x72,0x1c,0x36,0x85,0xf2,0x21,0xd3,0x39,0xc8,0xc2,0x7f,0x67,0xc0, - 0x13,0xd6,0x75,0x13,0x68,0x89,0x73,0xdc,0x92,0xb6,0x64,0xb3,0xe6,0x9c,0x81,0x09,0x8f,0xb8,0x92,0x51, - 0x25,0x43,0x3a,0x5b,0x4b,0xff,0x1e,0x35,0x35,0x51,0x9b,0xd9,0xc5,0xce,0x96,0x17,0x62,0x67,0xdc,0xad, - 0x89,0x3a,0x96,0x27,0xb0,0x4c,0x50,0x8a,0xa2,0xd4,0x18,0x54,0x74,0xf0,0x77,0x86,0xc8,0x5f,0xa7,0xa9, - 0xcb,0xc6,0x54,0x60,0x80,0xce,0x33,0xf3,0xdc,0x36,0x01,0x35,0x06,0xa0,0xac,0x06,0xa5,0xe3,0x42,0x28, - 0xaf,0xd0,0xc6,0x75,0x10,0x17,0xaf,0x59,0x12,0xa0,0x99,0xca,0x3e,0xd4,0xf8,0x8c,0x21,0x60,0xa2,0x16, - 0x95,0x51,0x19,0xc2,0x08,0x52,0xc2,0x00,0x81,0x62,0x3e,0xd2,0x04,0x79,0xf8,0xcf,0xdf,0x37,0x78,0x4a, - 0xac,0x16,0xa8,0x7b,0xa5,0x22,0x2b,0x1c,0xe0,0x63,0x8e,0x0a,0x54,0x19,0x82,0xe1,0x45,0x63,0x95,0x43, - 0x27,0x49,0x41,0x69,0xee,0x98,0x7e,0x6a,0xab,0x05,0x5b,0xc6,0xc9,0xf1,0x43,0x9b,0x7e,0x03,0x75,0x78, - 0x6a,0x6d,0x1f,0x5b,0xe1,0x53,0x22,0x0f,0xe1,0x77,0xc5,0xd7,0x4b,0x07,0x83,0x25,0xbd,0x16,0x5b,0xfb, - 0x4c,0xbc,0x13,0x9d,0x3d,0x7b,0x9a,0xd1,0x44,0xf3,0x3d,0x40,0x15,0x70,0x9a,0x50,0x67,0x14,0xd6,0x3f, - 0xea,0xf6,0xb2,0x87,0x51,0xe5,0x59,0xab,0x68,0x64,0x82,0x27,0x25,0x3e,0xb0,0xa8,0x65,0x58,0xc5,0x6d, - 0x68,0x99,0x81,0x79,0xb2,0x26,0x3a,0xb4,0x06,0x2e,0xca,0x9f,0x41,0x63,0x1e,0x4d,0x51,0x6c,0x8e,0x4c, - 0xbc,0xff,0x99,0xb4,0x17,0x29,0xd1,0xe6,0x86,0x41,0xa3,0x04,0x61,0x40,0x6a,0x53,0x44,0xd9,0x05,0xc0, - 0x1b,0xe9,0xab,0xd5,0xfd,0x5a,0x32,0xbb,0x6d,0x67,0x97,0x11,0x0a,0xbb,0x80,0x35,0x33,0x2d,0xc1,0x1f, - 0x31,0x13,0x38,0x16,0x48,0x4b,0xda,0xbe,0x5f,0xd5,0xd1,0x88,0xe1,0xde,0x5e,0x2e,0x1d,0xcc,0x1d,0xc2, - 0x5f,0xcb,0xd5,0xa3,0x9f,0x82,0xa1,0x2f,0x19,0xf8,0x86,0x7f,0x6f,0x61,0x62,0x77,0xc3,0x9a,0x70,0x18, - 0x03,0xb8,0x85,0xda,0x37,0x4a,0xe3,0x2c,0x4c,0x4e,0x53,0x36,0x3c,0x52,0xb2,0xe2,0x6b,0x3a,0x06,0x88, - 0x3b,0x56,0x46,0x98,0x99,0x0e,0x5d,0xdb,0xb8,0x2e,0xa1,0x0f,0x8d,0x94,0x75,0x3d,0xd8,0x9f,0x59,0xd7, - 0xd2,0xb5,0x14,0x2e,0xea,0x46,0x99,0x31,0x34,0x07,0xd9,0xb4,0x52,0xdc,0x01,0xe5,0x72,0x03,0x55,0x3f, - 0xd3,0xdc,0x72,0x94,0x05,0x89,0xa7,0x1d,0xa1,0xae,0x51,0x59,0xaa,0xe5,0xe6,0xec,0xc8,0x47,0x3d,0x87, - 0xd5,0x75,0x13,0xdf,0x87,0xeb,0x8b,0x72,0x93,0x19,0xc2,0xb4,0x9a,0xf9,0x32,0x7c,0x46,0xda,0xf7,0x50, - 0x8d,0xde,0x59,0x1f,0x57,0x2b,0x31,0x20,0xb5,0xcb,0x5b,0x22,0x19,0x44,0xb1,0xed,0xa5,0x9e,0xa3,0x1a, - 0xc2,0x46,0xa7,0x23,0xbc,0x8a,0xe8,0xa6,0x53,0xe8,0xf8,0x8b,0xe0,0x11,0x3f,0x1a,0x8b,0x2b,0xa0,0x22, - 0xfc,0x90,0x71,0xf8,0x73,0x2d,0xa7,0x2f,0x06,0x71,0x9e,0x67,0xc4,0x42,0x24,0xb4,0x77,0xca,0x64,0x51, - 0x84,0x99,0x5f,0x28,0x24,0x74,0x0d,0x6d,0x8e,0x64,0x1e,0x07,0xa5,0xaf,0x9e,0x0e,0xb2,0xe7,0x6a,0xaa, - 0x8a,0x0e,0x6d,0xfe,0x0e,0x03,0xd8,0xd6,0x75,0x80,0xf2,0xa1,0x40,0xf8,0x9e,0xef,0xe0,0x88,0x2f,0xe4, - 0x25,0x50,0x77,0x52,0xbd,0xbc,0x32,0x4e,0xc8,0xe0,0xe6,0xcc,0x5c,0x45,0x8c,0x94,0x51,0x92,0x9d,0xe6, - 0xf5,0xe9,0x40,0x64,0xd8,0x85,0xe7,0x34,0xcd,0x5e,0xc2,0xf1,0x9e,0x58,0xd3,0xc3,0x2d,0x5e,0x0e,0x65, - 0x4f,0x58,0x55,0x63,0xc5,0xcd,0x98,0x95,0x7d,0xd0,0x02,0x51,0x17,0x15,0xb8,0x4d,0x2a,0xe4,0x51,0x5d, - 0xd1,0x45,0xcd,0x94,0xba,0xbe,0x5e,0xa5,0xe1,0xb0,0x00,0xec,0x4c,0xa0,0x9f,0x80,0xf6,0x43,0x82,0x4d, - 0x5c,0x69,0xac,0x3d,0xf7,0xcf,0xcc,0x1b,0xb4,0x27,0x8f,0xb2,0x45,0xe1,0xd6,0x16,0x3c,0xd9,0x9f,0xa5, - 0x2e,0xae,0x9a,0x52,0xfb,0x1d,0x1e,0x9f,0xa2,0x4e,0x6b,0x1c,0x36,0x19,0x32,0x56,0x77,0x40,0x3d,0x46, - 0xc7,0x84,0xda,0x4e,0xa2,0xb0,0xc3,0xb2,0x4a,0x67,0xbf,0xdd,0xe8,0x0a,0xb8,0x8f,0x8d,0x93,0xb8,0x19, - 0xa8,0x93,0xd6,0x6c,0x3f,0x89,0xbe,0xb4,0x93,0xf4,0x83,0x8e,0xc2,0xdc,0x8e,0x2c,0x5a,0x0b,0x39,0xce, - 0x6e,0x0d,0x52,0x35,0xdd,0x7a,0x7b,0x82,0x52,0x94,0xf3,0x87,0xb7,0xa3,0xc7,0xca,0x99,0xbc,0xd2,0x55, - 0x0c,0xc2,0xdc,0x73,0xfe,0x43,0x48,0x56,0x13,0x35,0x81,0x09,0x86,0x3c,0x82,0x58,0xc1,0xb8,0xe2,0xda, - 0xb2,0x3c,0x77,0xd9,0x5d,0xc9,0x99,0x94,0xd4,0x93,0x24,0x5c,0x2c,0x97,0x6f,0x99,0xac,0x66,0xcb,0xb2, - 0xe6,0x31,0xae,0x67,0x25,0xdd,0x6c,0xc5,0x27,0x5a,0xd6,0x66,0x5d,0x1a,0xee,0xa4,0x2b,0xe3,0x4d,0x66, - 0xfe,0xed,0x35,0xc3,0x34,0xcb,0xc8,0xd5,0x69,0x1a,0xc3,0x8d,0xde,0x75,0xb7,0x70,0x29,0xba,0x51,0x90, - 0x94,0x22,0x8e,0x95,0xde,0x1a,0x41,0x6a,0xed,0x13,0x4d,0xc2,0x21,0x55,0x3f,0xae,0x55,0xa4,0x77,0x90, - 0x54,0x6a,0x07,0x40,0xf5,0xac,0x01,0xee,0x43,0xbd,0x5e,0x84,0x15,0xd2,0xf6,0xee,0x30,0x26,0xfb,0x49, - 0x24,0x3a,0xb0,0x62,0xde,0xa6,0x6d,0xd9,0x14,0xdc,0xd3,0x98,0xe8,0x6d,0xed,0x35,0x8c,0x12,0x1c,0x89, - 0x1f,0x66,0x05,0x87,0xe5,0xfb,0x68,0xb0,0x1b,0xcb,0x54,0xa2,0x3b,0x4e,0x09,0x8b,0xa9,0x8f,0x82,0xe8, - 0x46,0xf2,0x33,0x50,0x59,0xc3,0xd2,0xed,0x0c,0x33,0x2b,0xa5,0x21,0x17,0xc6,0xef,0x20,0xba,0x98,0x8e, - 0xe4,0x91,0x36,0x25,0xf1,0xb9,0xef,0x96,0xf1,0x8b,0xfd,0xaf,0x53,0x94,0x5e,0x37,0x82,0x50,0x53,0xb7, - 0x96,0x04,0x20,0x00,0x41,0xea,0xda,0xd0,0xa2,0x15,0xa4,0xcf,0x1d,0x3d,0xc3,0x5d,0x7b,0xc6,0x36,0x4b, - 0xea,0x89,0x51,0x98,0xeb,0x1c,0x5e,0x2e,0xe3,0x9d,0x84,0xda,0x19,0xf7,0x9c,0x3e,0xdc,0x6c,0x6f,0x6f, - 0xd7,0x32,0xf0,0x91,0x3e,0x39,0xb7,0x1d,0x6d,0x97,0x8d,0x80,0x78,0xc2,0x74,0xb5,0x27,0xaa,0x2a,0x61, - 0xe3,0xa0,0x4b,0xe5,0x4c,0x09,0xfb,0xf6,0xa2,0x76,0x9d,0xda,0x88,0xb2,0x87,0x30,0x7b,0x26,0xb6,0x84, - 0x55,0x59,0x62,0xc7,0x07,0x17,0x51,0xa0,0xb9,0xd4,0x37,0xc4,0x1f,0x24,0x0e,0x10,0x04,0x56,0x9f,0x40, - 0xf6,0xa9,0xdd,0x0c,0x35,0xbe,0x84,0x7f,0xf4,0x5e,0x60,0xc1,0x84,0xe6,0x2c,0x4b,0x36,0x48,0x27,0xb2, - 0xb6,0xae,0xd0,0xca,0x89,0xa3,0x84,0x4d,0x0d,0x83,0xd6,0xf6,0x8f,0x39,0xd4,0x3c,0x1c,0x26,0x23,0x5b, - 0x70,0xcf,0xaa,0x90,0x45,0x82,0x37,0x66,0xf7,0x5d,0xb4,0xb9,0xdf,0xd5,0x26,0x25,0x02,0x8f,0x24,0xa1, - 0x3c,0xfa,0xd7,0x44,0xb1,0x44,0x74,0xd8,0xe5,0x62,0x9f,0x54,0x04,0x89,0xe5,0x0d,0x34,0xab,0x8c,0xb8, - 0xb1,0x22,0xaa,0x51,0x03,0x03,0x71,0x4d,0x25,0x4b,0xcb,0xe6,0x94,0xfa,0xc2,0xca,0xb2,0x89,0x3c,0xdc, - 0x60,0xe7,0x1a,0x87,0x08,0x54,0x38,0x88,0x4e,0x20,0xc6,0xf6,0x31,0xc6,0x72,0x04,0x57,0xde,0xde,0x28, - 0x7d,0xb4,0x3f,0xda,0x0f,0xf6,0x82,0xfd,0x20,0x1e,0x71,0x9e,0x8b,0x04,0x45,0xef,0x79,0xc1,0x9e,0x0e, - 0xa7,0x0a,0xbf,0x5b,0xea,0x7e,0x68,0x3c,0x4a,0x59,0x0a,0xc4,0x9c,0x56,0x60,0xad,0x6d,0x64,0x41,0x01, - 0xb3,0xa6,0x1c,0xf6,0xbb,0xc9,0xa5,0xd6,0xdc,0xbe,0x17,0xb6,0xd0,0xc9,0x02,0x05,0x5f,0x53,0x55,0x42, - 0x4e,0x11,0x13,0xf3,0xb0,0x05,0x26,0x89,0xa6,0xd7,0x33,0x09,0xc7,0x83,0xcb,0x06,0x1d,0xad,0x24,0xd3, - 0x6e,0x29,0x42,0x13,0x53,0x43,0x5d,0x49,0xa0,0x31,0xa6,0x6c,0x32,0x6f,0x42,0x18,0x67,0x1e,0x46,0xfe, - 0xa9,0x00,0x35,0xfc,0x34,0xb2,0xf7,0xd1,0x0c,0xa4,0xcc,0x88,0xa9,0x9a,0x82,0x89,0x1b,0x9f,0x53,0x02, - 0x4e,0xe1,0x47,0x45,0xeb,0xfb,0x06,0x04,0xf3,0x7a,0x88,0x02,0x26,0x0e,0x97,0xec,0x60,0x1b,0x4e,0x9e, - 0x95,0x3b,0x38,0x93,0x65,0x5e,0xb9,0xf7,0x5d,0xb2,0xba,0x2f,0x44,0x7e,0x1d,0x32,0x8f,0x52,0xbb,0x3a, - 0xab,0x2c,0x18,0x8f,0x05,0x82,0xd8,0x2b,0xda,0x1d,0xec,0xfc,0x81,0x24,0xac,0x55,0x3d,0x16,0x36,0xe1, - 0x0b,0x6c,0x48,0x4a,0x70,0xae,0x55,0xa6,0xe6,0x8a,0xa3,0x72,0xd9,0x31,0x24,0x3c,0x05,0xf2,0xa1,0x99, - 0x10,0xa5,0x9e,0xe9,0x4c,0x10,0x25,0xd2,0x0c,0x2a,0x72,0x28,0xf5,0x2a,0xef,0x3c,0x94,0xbb,0xcc,0x3f, - 0xaa,0x19,0x6d,0xc6,0x4f,0x22,0x2a,0xa8,0x9e,0x24,0x75,0x13,0x89,0x58,0x18,0xd8,0xd5,0xea,0x0a,0xa1, - 0xb9,0x51,0x87,0x94,0x50,0x58,0x4e,0x33,0x05,0x76,0x34,0x62,0x70,0x50,0x39,0x47,0x66,0x96,0xca,0x56, - 0xab,0xa2,0x62,0x6d,0x45,0x65,0xc2,0xe6,0x5f,0x53,0xf8,0xfa,0xb1,0x13,0x2a,0x32,0x74,0x52,0xb5,0x3d, - 0x37,0x6d,0x4f,0x5a,0x6d,0x5b,0x2d,0x03,0xce,0xb5,0x2b,0xb8,0x35,0xeb,0x3e,0x55,0x6a,0x70,0xc4,0x3d, - 0xaf,0x89,0x0a,0x17,0xd3,0x91,0xd4,0xf8,0x26,0x03,0xd7,0x5e,0x69,0x46,0xe8,0xc5,0x58,0xda,0xec,0x42, - 0xda,0x5c,0xd5,0x7c,0xb4,0x45,0x84,0x05,0xaf,0x26,0xc4,0xde,0xae,0x93,0x66,0x25,0x9d,0x54,0x49,0x51, - 0xf6,0xd4,0x31,0xd2,0x4b,0x94,0xa7,0x1f,0x00,0x2e,0xa5,0x99,0x77,0x07,0x2a,0xc7,0xec,0x61,0xba,0x5e, - 0xa8,0x5e,0x00,0x74,0x41,0x4f,0x35,0x2a,0x25,0xec,0xc0,0x12,0xa5,0x40,0xa2,0xec,0xa4,0x16,0x39,0x88, - 0x8f,0x26,0x90,0x61,0x13,0x0f,0x8e,0xca,0x30,0x46,0xd0,0x12,0xde,0x37,0x2c,0x7f,0x28,0xcf,0x7c,0x68, - 0xa0,0x0b,0x50,0xf2,0xc5,0x30,0xed,0x5b,0xa2,0x01,0xae,0xf1,0x89,0x88,0x7c,0x83,0x00,0x91,0x0c,0xf4, - 0x47,0xd4,0xb6,0x48,0xff,0x89,0x36,0xc8,0xa4,0x02,0xe2,0x0f,0x74,0x05,0xb4,0x45,0xb9,0x02,0xbd,0xf4, - 0xab,0xd5,0x84,0x23,0xcb,0xe8,0xa8,0x2d,0x89,0x99,0xcb,0x72,0x70,0x7c,0x59,0x2a,0x19,0xaa,0x0e,0x89, - 0xe7,0x2e,0x69,0xa5,0x79,0x5e,0xbd,0x41,0xa9,0x02,0x98,0x2c,0x7d,0xda,0xc0,0x9a,0x8b,0x6a,0x6f,0xba, - 0xdc,0xa2,0xe1,0xd9,0xcb,0xaa,0x89,0x1c,0x4f,0x43,0x6c,0xc6,0x05,0x81,0x6f,0xf9,0x12,0x18,0x5e,0x65, - 0x2b,0x59,0x08,0x45,0xb4,0x90,0xc7,0x24,0x98,0xde,0xab,0xf3,0xda,0x4e,0x15,0x4b,0x29,0x45,0x24,0xba, - 0x8e,0x0e,0xd0,0xdb,0xfb,0x2f,0x8c,0xfd,0xbf,0xb0,0x5e,0x97,0x3b,0x65,0xaf,0x8a,0x9b,0xad,0xc4,0xe3, - 0x6a,0x85,0x8b,0xe5,0x02,0x64,0x49,0x4f,0xcc,0x74,0xc4,0x52,0xad,0x16,0xd0,0x83,0xb7,0x7c,0x75,0xf2, - 0x0a,0x8f,0x87,0x27,0xb5,0x6b,0x1c,0x5a,0x38,0xc7,0x68,0x21,0x82,0xda,0x85,0xa6,0x23,0x53,0xbc,0x43, - 0x51,0xcc,0xc3,0x16,0x80,0x0e,0x60,0xef,0x9b,0xfd,0x40,0x7e,0xef,0xcb,0xef,0x83,0xaf,0xe4,0xf7,0xfe, - 0x03,0xf5,0xfb,0x8d,0x4a,0xff,0x3a,0x30,0x01,0xc8,0xa4,0xc0,0x97,0x2a,0x83,0x2a,0xf0,0xe0,0xcb,0x40, - 0xab,0x17,0x4f,0xa1,0xea,0x2e,0xb9,0xee,0xdf,0x53,0xd5,0xcb,0xcf,0xfe,0x9e,0xfa,0x55,0xad,0xed,0x7f, - 0xa5,0x12,0xbe,0xfa,0xf2,0xde,0x3f,0x54,0x9e,0xaf,0xef,0xe9,0x42,0xf4,0x74,0x5f,0x57,0x7a,0x55,0x38, - 0xe6,0xe2,0xef,0x51,0xf8,0xcd,0x3f,0x88,0x65,0x79,0x18,0xee,0xdf,0xbb,0xb7,0x5a,0xd1,0xeb,0x57,0x5f, - 0xf2,0xeb,0x37,0x7b,0x23,0xd5,0x78,0x40,0x89,0x0f,0xbe,0xe1,0xc4,0x2f,0xff,0x31,0x72,0xc4,0x10,0xc2, - 0x09,0x1c,0xbe,0xf6,0xe9,0x08,0x48,0x82,0x69,0x92,0xb3,0x4e,0xc1,0x85,0xeb,0xec,0x39,0x5b,0x56,0xf0, - 0xe2,0x3d,0xc8,0xd0,0x92,0xe2,0x55,0xf4,0x4a,0x82,0xb2,0x11,0xc2,0x2d,0xfd,0xe7,0x3a,0x5a,0x5d,0xe7, - 0x9d,0x5b,0x7d,0xda,0x75,0xdf,0x4d,0xa5,0xea,0x93,0x51,0xe6,0xd9,0xa7,0x16,0xee,0x3f,0x80,0x58,0x67, - 0x7b,0xfb,0xfe,0x37,0xf8,0x1d,0xe1,0xae,0x4d,0xa9,0x04,0xf9,0xf4,0x1d,0xac,0x60,0xe0,0x7c,0xe1,0xf4, - 0x4b,0x1d,0x00,0x5d,0xfc,0x5b,0x5d,0x6a,0x5c,0x58,0x71,0x65,0xda,0xf7,0x06,0x34,0x15,0x0e,0x85,0xec, - 0xeb,0x29,0x4f,0x79,0x8e,0x7f,0xda,0xce,0x7f,0x16,0x15,0xaf,0xaf,0x52,0x1d,0x68,0xcf,0xff,0x18,0x76, - 0x11,0xa8,0x2f,0xd2,0x72,0x6e,0x05,0x0b,0xc3,0xeb,0xe0,0x19,0x22,0xdb,0x24,0x17,0x31,0x31,0x0f,0x17, - 0x51,0xe9,0x9f,0x7c,0x72,0x41,0xf1,0xe2,0xa7,0x8a,0x1d,0x87,0xd7,0xe2,0x58,0xe3,0x69,0x23,0x48,0x65, - 0xcd,0xa7,0x91,0xcd,0x00,0xc6,0x03,0xec,0xb6,0x50,0x7e,0xf8,0x1e,0xf1,0xf8,0x18,0x8f,0xa3,0xeb,0x75, - 0xa0,0x23,0x12,0x31,0x4e,0xb8,0x36,0x99,0x0d,0xba,0xa4,0x1e,0xbd,0x54,0xe9,0x52,0xc8,0xd3,0xc7,0x1d, - 0x02,0x2d,0x0e,0x75,0x6a,0xa7,0xd3,0x9b,0x92,0xa8,0x85,0xd2,0xb7,0x08,0x9f,0x98,0x8d,0x09,0xec,0xc3, - 0xa8,0xec,0x88,0xc0,0x28,0x21,0x4d,0x51,0x29,0xfb,0x0e,0xfe,0x89,0x91,0xc4,0xcb,0xb8,0x28,0xa2,0x53, - 0x9c,0xe1,0xa5,0x9c,0x7d,0xea,0xf8,0xa1,0x66,0xc4,0xe3,0xd4,0xb1,0x35,0x46,0xbf,0x4a,0xf9,0x15,0xb9, - 0x62,0xe5,0x11,0x4c,0xba,0x7a,0x85,0x24,0x1c,0x22,0xd0,0x54,0x76,0x3d,0x2b,0x33,0xeb,0x48,0x4c,0xf2, - 0xe4,0x24,0xc6,0xa7,0xa7,0x30,0xf5,0x61,0x3d,0x49,0x66,0xda,0x24,0x9b,0xce,0x21,0xce,0xe0,0xd6,0x55, - 0x3c,0x0e,0x35,0x85,0x22,0x0b,0xe7,0x15,0xc8,0xb3,0xac,0xd4,0x41,0xee,0xf1,0x2c,0x48,0xaf,0x9d,0x52, - 0x9b,0x6b,0xbe,0x3e,0xe5,0xbe,0x20,0x43,0xd8,0xcc,0xab,0x56,0x6a,0x30,0x23,0xfa,0xec,0x84,0x18,0x19, - 0x99,0x9c,0x56,0xb6,0xc6,0x77,0x5d,0xaa,0x20,0xc6,0x30,0x15,0xfd,0xd3,0x39,0x1b,0x29,0xfc,0x0a,0x41, - 0x5c,0xab,0x70,0x67,0x36,0x76,0xd4,0x5b,0x87,0x80,0xfc,0x56,0x08,0xc8,0x41,0x2f,0xb6,0x21,0xc0,0x2c, - 0x2f,0xaf,0x69,0x11,0xe6,0xdd,0x8b,0x89,0x0b,0xf6,0x97,0x7a,0x62,0xff,0xdb,0xd6,0xd4,0xb7,0x0e,0x0b, - 0x35,0x6d,0x1f,0x53,0xbe,0xe6,0x33,0x2f,0x7c,0xba,0x8b,0x5f,0x40,0x9e,0xdf,0x5a,0x87,0xee,0x54,0x1d, - 0x92,0xd9,0x77,0xb5,0x65,0x5e,0xef,0x6f,0xc0,0xc5,0xc8,0xb5,0x26,0xa6,0x05,0x15,0x7f,0x63,0xb8,0xe0, - 0xcd,0xe5,0x96,0x04,0x97,0xac,0x2a,0xc0,0x82,0xea,0x51,0xfd,0xbd,0x09,0xa7,0xb5,0x6d,0x67,0x67,0xfc, - 0x5b,0xdd,0xd1,0x7e,0xe0,0x9e,0x35,0xc3,0xd4,0x6a,0x47,0x70,0xd2,0x35,0xb7,0x55,0xb8,0xd6,0xa3,0xc1, - 0x32,0xbd,0xa9,0x65,0x25,0xf8,0x6c,0xd5,0xd1,0x01,0x65,0xb5,0x6a,0x55,0x9a,0xdb,0xa8,0xc1,0xfa,0xa4, - 0x6b,0xa8,0x01,0x46,0x37,0xb8,0x34,0x6b,0xa9,0x7d,0xb4,0x7b,0x22,0x61,0xe3,0xd6,0x6b,0xff,0x4a,0x7b, - 0x6d,0x45,0x6a,0xe5,0xcd,0x31,0x9a,0xc3,0xd0,0x5b,0x1c,0x2b,0xb2,0xd6,0xdb,0xb5,0xed,0xc9,0x56,0x69, - 0x05,0x04,0xe2,0x32,0x71,0xcd,0x11,0xc9,0xeb,0x39,0x34,0xc5,0x85,0x8b,0x43,0x4d,0x8f,0xda,0x19,0xd6, - 0x3e,0xdf,0x86,0x17,0x2a,0xf1,0x90,0xa9,0x3d,0xe3,0x4c,0x76,0xdd,0xf2,0xe4,0x58,0x23,0xed,0xb9,0x5b, - 0x90,0x4f,0x48,0xf8,0x0c,0x44,0x91,0xad,0xac,0xcd,0xf0,0xdd,0x02,0x1c,0x89,0xa7,0xe1,0x66,0x22,0xd8, - 0xbf,0xd5,0x75,0xac,0x0a,0x0b,0x17,0xca,0x8f,0x09,0xbf,0x4b,0xf4,0xbc,0xe5,0xc8,0x55,0x04,0xf0,0xb9, - 0x10,0xd2,0x88,0xe6,0xa1,0x08,0xe9,0x39,0x04,0xd4,0x4b,0x7c,0xe0,0xb1,0xb1,0x41,0xe8,0xac,0xc1,0xae, - 0x2d,0xbd,0xd1,0x52,0x07,0xfd,0xdd,0x0b,0xec,0x73,0x6b,0xe9,0x99,0x74,0xd6,0xc0,0x6e,0xf0,0x4c,0xb6, - 0x3f,0x3e,0x6c,0xa3,0x2a,0x80,0x79,0x45,0xf2,0x58,0x41,0xcd,0xb9,0x0b,0x9a,0xea,0xa9,0xe2,0x9e,0x6f, - 0x6f,0x3b,0x7c,0x99,0xb8,0x5e,0x57,0x22,0xfd,0xed,0xed,0xcc,0xb4,0x4c,0x4c,0xe9,0x94,0x6a,0x77,0x9d, - 0x17,0xb3,0x9e,0x8c,0xa2,0x87,0xd9,0xee,0x25,0x45,0x0f,0x4e,0x66,0x7a,0x74,0x06,0xf4,0x78,0xae,0x7b, - 0xb1,0x88,0x4c,0x8b,0x1e,0xcc,0x1f,0x7a,0x67,0xd1,0x65,0x2c,0x05,0x24,0x3f,0x65,0x1e,0x10,0x17,0xd4, - 0x31,0xf6,0x36,0x4e,0x07,0x5b,0x30,0x27,0x06,0x10,0xce,0x43,0x9b,0x33,0xd2,0x75,0x02,0xcc,0xe1,0xf9, - 0x6c,0x49,0x7f,0xa0,0x62,0xb9,0xa1,0x3e,0xe1,0xed,0xa7,0x23,0x07,0xe6,0x53,0xcd,0x69,0x09,0x28,0xb5, - 0x1c,0xce,0x21,0xfc,0x82,0x38,0x53,0x79,0xfd,0xf7,0x13,0x3f,0x1a,0x24,0xae,0xc4,0x9e,0xc0,0xd6,0x38, - 0x08,0x5b,0x88,0x62,0x42,0x2d,0xd1,0xe1,0xd2,0x71,0x41,0xb2,0x1e,0x1e,0x58,0xf4,0x5c,0x02,0xbb,0xc1, - 0x45,0x06,0x79,0xb8,0x2d,0x27,0xaa,0xdc,0x21,0x58,0xb5,0xc1,0xb5,0x9c,0x66,0x52,0xa1,0x85,0x77,0xa3, - 0x46,0x1f,0x31,0x7e,0x8e,0x63,0xab,0xf5,0x19,0x79,0xf3,0x61,0xda,0xef,0xb3,0x7c,0xc6,0xb9,0x56,0xfe, - 0x5f,0x73,0x5c,0x2b,0x58,0xd7,0xfa,0xac,0x9e,0xe2,0x28,0x5d,0xb1,0x1c,0x97,0xf9,0xa8,0x4b,0x58,0x52, - 0x7a,0x10,0x1b,0x0b,0x55,0x8f,0xb3,0x66,0x1d,0x96,0xa1,0x97,0xf5,0xc3,0xc4,0x37,0xc9,0x22,0x93,0x38, - 0x17,0xba,0x3b,0xf3,0x46,0x0e,0x3b,0x1b,0x0d,0x9e,0x56,0x09,0x40,0x26,0x53,0xa2,0xf4,0x97,0xe2,0x94, - 0xce,0x19,0xea,0x2e,0x48,0xb3,0x99,0x78,0xc4,0x8e,0xd6,0xa2,0x25,0xef,0xfc,0x0f,0xee,0xeb,0x88,0xfa, - 0x0c,0xc2,0x9c,0x56,0x04,0x22,0x3f,0x6a,0xd2,0x0b,0xf0,0x57,0x73,0x1c,0xb7,0x8e,0xa4,0x5c,0x33,0xfb, - 0x58,0x9f,0xd5,0x30,0xaf,0x89,0xaa,0xd3,0x8a,0xf9,0xf4,0x25,0xf8,0x74,0x53,0xb6,0xa2,0x87,0xc3,0x2c, - 0x45,0x7b,0x24,0x98,0x5b,0xfd,0xc2,0xb6,0xe1,0xba,0x77,0x3c,0x75,0xc3,0xa4,0xb9,0x28,0x11,0x0d,0x28, - 0x19,0x6b,0x86,0x2f,0x52,0xf7,0xd2,0xe0,0xac,0xa4,0xff,0x81,0xe2,0x68,0x23,0xc5,0x9c,0x8b,0xd6,0x2b, - 0xf3,0x6d,0xaa,0x23,0x2a,0x43,0x7a,0xc8,0x94,0x0e,0xd1,0xed,0x3a,0xaf,0xbf,0xbf,0xe7,0x8d,0x6b,0x05, - 0x74,0x6f,0xe5,0x57,0xd4,0xc2,0x4d,0x71,0x55,0x8a,0x68,0xdc,0xa4,0xdf,0x37,0x93,0xba,0xe6,0x70,0x77, - 0x6b,0x5e,0xd4,0xf3,0x70,0xf7,0x0f,0xf7,0x68,0xea,0xf5,0x77,0xfd,0xa7,0xfc,0x78,0x85,0xc7,0x0f,0x34, - 0x4d,0x8f,0xc3,0x7d,0xff,0x6d,0x78,0xcf,0xbf,0x13,0xde,0xf7,0x5f,0xd3,0xfb,0xb7,0xe1,0x03,0xff,0x4d, - 0xf8,0xa5,0xff,0x3e,0xfc,0xca,0x7f,0x16,0xfe,0xc3,0x7f,0x11,0x7e,0xed,0xff,0x04,0x86,0xfe,0xa7,0xc3, - 0xd7,0xe3,0xf0,0xfa,0xaa,0x08,0xe8,0xd7,0x67,0x36,0x30,0x38,0xbc,0xef,0x7f,0x18,0xfb,0xce,0xa1,0x13, - 0x1c,0x7e,0x3b,0xf6,0xe9,0x90,0x0f,0x0e,0x9f,0x8d,0xd7,0xfe,0x4f,0x87,0xfb,0x2a,0xe7,0x3e,0x7d,0x1d, - 0xd0,0xd7,0x7b,0x9d,0xb9,0xee,0xa9,0x5c,0xf7,0xea,0xf5,0xed,0xa9,0x5f,0xe1,0x2a,0xe5,0x05,0xd9,0xef, - 0x53,0xf6,0xdb,0xf2,0xf9,0xdc,0xaa,0xff,0x58,0xb7,0xcb,0x4f,0xdc,0x32,0x9e,0xa4,0x6d,0x7a,0x42,0x75, - 0xdf,0x52,0x75,0xce,0x5d,0xfa,0xf4,0x06,0xe5,0xee,0x3a,0x77,0x83,0xc3,0xf7,0xd5,0x70,0xfc,0xb7,0xf4, - 0x34,0x76,0x50,0xd9,0x1d,0x29,0xf8,0x82,0xed,0xf9,0xf0,0x49,0xba,0xf3,0x46,0x97,0x47,0x42,0x2d,0xc7, - 0x1b,0x95,0xe3,0x3d,0xe5,0xe0,0x7a,0x5b,0x39,0xd0,0x90,0x2c,0xcc,0x73,0xb6,0x79,0x26,0x52,0x2d,0x5f, - 0xc6,0x2b,0xb6,0xe5,0x5c,0xed,0x8c,0x0e,0x8f,0xa6,0x83,0x71,0x7f,0x75,0x97,0x7d,0x60,0xdd,0x5d,0x39, - 0xec,0x16,0xcb,0xf1,0x28,0x1f,0x1c,0x13,0x6d,0x40,0x5b,0xdd,0x58,0xeb,0x95,0x85,0xb5,0x18,0xca,0xde, - 0xd0,0xa1,0xd6,0x96,0x50,0xd9,0x18,0xcb,0x42,0x58,0x25,0xf4,0x33,0x3a,0xe4,0x59,0x3a,0xec,0x5d,0x84, - 0x50,0x3e,0xd8,0x70,0xf3,0x70,0x67,0x9f,0x8e,0xc6,0xd7,0x1c,0xf7,0xee,0x0c,0xe0,0x82,0x3d,0x73,0x76, - 0xf8,0x78,0x5c,0x33,0xee,0xd0,0xe7,0x54,0xca,0xba,0x3c,0x02,0xbd,0x70,0x51,0x28,0x1f,0x60,0xab,0x7f, - 0xf8,0xa1,0xa3,0x04,0x24,0xb5,0xa3,0x34,0xcc,0x83,0xb4,0x4f,0x84,0x3f,0x65,0x7a,0x5b,0xcb,0x84,0x42, - 0x44,0x19,0xcd,0x08,0xf6,0xe9,0xdb,0x9d,0xda,0x37,0x68,0x44,0x3e,0xda,0xf3,0x66,0x3b,0x3b,0xd4,0xbd, - 0x6f,0x7d,0xc9,0x6a,0xee,0x22,0xd1,0xdb,0x2d,0x5c,0x7d,0xb8,0x69,0xb8,0x60,0x97,0x79,0x46,0x2c,0x8a, - 0xbe,0x43,0x1d,0x73,0xa8,0x64,0xe0,0x4b,0x76,0x18,0x3f,0xef,0xf7,0xe1,0x3f,0x91,0x95,0x85,0xe0,0x73, - 0x71,0x8e,0x1b,0x8b,0xad,0x06,0x3f,0xcd,0x1f,0xfa,0xfb,0x8c,0xad,0x97,0x54,0xf9,0x1b,0x3a,0x95,0xef, - 0xb2,0x5a,0xd7,0x6a,0x85,0xf7,0xf7,0xdb,0xdb,0x04,0x16,0x78,0x37,0xbe,0xbb,0xa9,0x5a,0xc2,0xd6,0x54, - 0x71,0xbf,0x54,0x7d,0x44,0x84,0x65,0xd7,0x53,0x56,0x5c,0x53,0x88,0xc5,0x40,0xe7,0x14,0xe1,0x4f,0x87, - 0xcb,0xb1,0x47,0x78,0x67,0xb5,0x2a,0x58,0x11,0x74,0xb5,0x7a,0x01,0xd9,0xf2,0x0b,0xad,0x15,0xc4,0x6d, - 0xc2,0x8e,0xc5,0x77,0xa3,0xf0,0xec,0x30,0xa3,0x3d,0x38,0x96,0x7b,0xd8,0x0c,0x1b,0x2d,0x0f,0xcd,0x94, - 0xe6,0xa3,0x32,0xc8,0x65,0xf8,0xc4,0xff,0x78,0xb5,0x0a,0xc2,0xf0,0x99,0x71,0x8e,0x2a,0xca,0x6e,0x86, - 0x20,0xd5,0x30,0x12,0xc2,0xff,0x30,0xc8,0xae,0xb5,0x6f,0x03,0xd9,0x69,0x5c,0x02,0xc4,0x58,0x90,0xdb, - 0x38,0x1b,0x21,0x23,0x2f,0x2b,0x07,0xad,0xd5,0x25,0x8c,0xf6,0xbe,0xad,0xe1,0x13,0x1e,0x6b,0x79,0xdc, - 0x79,0x83,0xc2,0x40,0x78,0x37,0x74,0x5d,0xbb,0xd3,0xae,0xd5,0x64,0x59,0xfb,0x54,0xa6,0x66,0x84,0xa4, - 0x95,0x0b,0xee,0x6c,0xa8,0x1d,0x6f,0x47,0x87,0xf9,0x61,0x31,0xb6,0x2e,0x3b,0xa0,0x6c,0xe6,0x5d,0x8b, - 0x1b,0x2a,0x65,0x9b,0x10,0x85,0x13,0xbf,0xa8,0x90,0x69,0x24,0xbb,0xf5,0xe5,0x86,0x9d,0x33,0xac,0xf8, - 0x3f,0x70,0xe3,0xd0,0x96,0x35,0xb7,0x4b,0x42,0x3c,0xae,0x56,0x4e,0x9c,0xee,0xfc,0xf2,0xd6,0x61,0x79, - 0x6e,0x9d,0xd7,0xae,0xbe,0xb1,0x45,0x92,0x62,0x71,0x99,0xbc,0x54,0x61,0xcc,0x2d,0x19,0x90,0xa4,0xc3, - 0x8a,0x32,0xb5,0x44,0x3c,0x9c,0x3a,0x54,0xae,0xac,0x2f,0xe4,0x82,0x4f,0xde,0x66,0xfc,0x9d,0xc8,0x95, - 0x90,0x15,0xd8,0xe4,0x79,0xb5,0x02,0xa3,0x7c,0xa0,0xb2,0x5c,0x24,0x05,0x5c,0x81,0xa0,0x6d,0x79,0x12, - 0x81,0xa7,0xf6,0x2e,0x0d,0xa1,0x42,0xcc,0xb2,0x85,0x5a,0x3a,0xb8,0xda,0xd0,0xe2,0x7b,0x85,0xe5,0xdd, - 0xda,0x92,0x27,0xdd,0xba,0x1a,0x28,0xeb,0x43,0x59,0x99,0xed,0x74,0x29,0x64,0xa7,0xe8,0x16,0x3a,0x65, - 0x0f,0x06,0x89,0xc4,0xdd,0x52,0x07,0x22,0x71,0xb7,0x36,0x7c,0x52,0xf5,0xd6,0x27,0x14,0x37,0xef,0x20, - 0xec,0xe5,0x9b,0x3d,0xa9,0xf5,0x2f,0xe0,0x06,0x58,0xbe,0xf0,0xaa,0xaa,0x26,0xaa,0xdc,0x05,0x10,0x12, - 0x94,0x64,0xbe,0x3f,0x68,0x40,0xbe,0xc2,0x2a,0xee,0x16,0xd4,0x19,0xd3,0xd5,0x2a,0x77,0x4b,0xa9,0xb0, - 0xb6,0x5d,0x24,0x9c,0xb6,0x36,0x4a,0x3f,0x86,0xd3,0xd8,0x77,0x2f,0x5d,0x7d,0xdf,0x99,0xfa,0x75,0xa8, - 0x09,0xe0,0xbe,0x51,0x40,0x85,0xc8,0xae,0x06,0x90,0x04,0x91,0x5f,0x03,0x8f,0xa0,0x20,0x8a,0xcc,0xff, - 0x39,0xbc,0xbe,0xbc,0x08,0xae,0xd7,0x55,0x41,0x7a,0x6e,0x96,0xa4,0xa4,0x7a,0xd1,0xeb,0x8a,0xc3,0x5b, - 0x37,0xfb,0x80,0xba,0x04,0x66,0xf8,0xa3,0x9e,0x36,0xbc,0x74,0xae,0x00,0x7d,0x58,0xeb,0xc3,0xe5,0xa5, - 0xed,0x7a,0x58,0x06,0xdb,0xb1,0xbd,0xce,0xb4,0x2f,0x68,0xa9,0x6f,0xd8,0x78,0x87,0xf4,0xa5,0x02,0x7b, - 0x5a,0x1d,0xa2,0x21,0xb1,0x30,0x50,0x8d,0xf5,0x9b,0x79,0xcb,0xb5,0x6f,0x37,0xda,0xc9,0xee,0xb7,0x7d, - 0x21,0xd4,0x17,0xba,0x52,0x37,0xb3,0xab,0xda,0x20,0x3b,0xa8,0x55,0xd6,0x30,0x1c,0x60,0x6e,0xcf,0x0e, - 0x61,0x92,0x5a,0xb6,0x9a,0x25,0x23,0xc0,0xf4,0xd1,0xce,0xbe,0x27,0xf7,0xd3,0x13,0xc8,0x31,0xa1,0x20, - 0xe9,0x76,0xf4,0xc9,0x6f,0x76,0xa7,0x26,0xdb,0x6a,0x9a,0x57,0x8a,0xec,0xaf,0xe6,0x12,0x9c,0x26,0x6f, - 0x70,0x87,0x0b,0xb9,0xce,0x1d,0x54,0x5d,0x0b,0x51,0x61,0x1b,0x34,0x34,0x26,0xc3,0xb6,0x6f,0x38,0xeb, - 0x74,0x8a,0xdc,0x2c,0x42,0x8c,0x20,0x3b,0x41,0x6f,0x26,0xb6,0x02,0x5f,0xac,0xfd,0xeb,0x69,0x1c,0x2f, - 0x44,0x35,0xb9,0x3d,0x3a,0x25,0xc6,0xac,0x1f,0xf5,0x5b,0x15,0x6a,0xa2,0x8d,0x56,0xe1,0xaf,0xd6,0x89, - 0x13,0xeb,0x58,0x26,0x17,0xf5,0x79,0x60,0x01,0x99,0x35,0x19,0x02,0xf8,0xd6,0x6c,0xb0,0x67,0x8f,0x3b, - 0xc4,0xfe,0xc2,0x8a,0x45,0x7f,0x65,0xbf,0xfc,0x8d,0xfe,0xfb,0xd7,0xc9,0x05,0x91,0xea,0x09,0xe4,0xed, - 0x32,0x84,0x9f,0x51,0x31,0xed,0x77,0xbb,0xcf,0x8d,0x45,0x40,0x26,0xbd,0x37,0x37,0x64,0x8d,0x14,0x00, - 0xd0,0x57,0x25,0xe0,0x2e,0xd8,0x03,0xf8,0xcf,0xcd,0x73,0xe2,0xf6,0xf2,0xf5,0xcb,0x05,0x5d,0x4d,0x6d, - 0xf3,0xdf,0x5e,0x89,0x7d,0xd1,0xa0,0xab,0x90,0x79,0xb9,0x65,0xac,0xfa,0xd2,0xbd,0xca,0x5f,0xc4,0x65, - 0xc7,0xee,0xc3,0x6a,0x60,0xbe,0xf5,0x5b,0x35,0xed,0x31,0x37,0x56,0xc7,0x48,0xb7,0x35,0x5a,0xcf,0xdd, - 0x51,0xfe,0x53,0x3b,0x51,0x2f,0xa6,0x3b,0xa3,0x90,0xe1,0x8d,0xbd,0x50,0x79,0xec,0xec,0xdd,0x8d,0x9a, - 0x73,0x99,0xbb,0xa9,0x71,0xeb,0x8d,0x75,0x9b,0x5c,0xf5,0x22,0xdd,0xf5,0x5b,0xa4,0x01,0xb2,0x77,0x22, - 0xec,0x1b,0x5b,0xeb,0x2c,0xb1,0xb9,0xaa,0xee,0x5e,0x74,0x9f,0xf2,0x71,0x7d,0xcb,0xdb,0xe0,0x7e,0xd3, - 0xf2,0xea,0xcd,0xd3,0x2e,0xdd,0x00,0xf6,0x9b,0x2a,0x69,0x6c,0xa4,0x76,0x5d,0x35,0x98,0xbf,0xa9,0xa6, - 0xda,0x5e,0x6a,0xd4,0x03,0xe5,0x32,0xe5,0xd5,0xa9,0xa6,0x6b,0x44,0xcc,0x55,0x62,0x6a,0x82,0x81,0xb7, - 0x92,0xe3,0x2b,0x68,0x50,0x42,0x7f,0x0d,0x39,0x72,0x21,0xcf,0x64,0xd9,0x21,0x0a,0x27,0x63,0x18,0x6e, - 0x04,0x69,0xa3,0xb1,0xa4,0x78,0x6e,0x53,0x62,0x1d,0x2e,0x71,0x62,0x44,0x6c,0x74,0x2d,0x94,0xa9,0x1a, - 0xaa,0x91,0x70,0xcd,0x5a,0xbb,0xc5,0x60,0xa5,0xe6,0x0d,0x15,0x4e,0x6e,0x61,0xdf,0x49,0x58,0x91,0x54, - 0x75,0x0a,0xa8,0x54,0x71,0x77,0xeb,0x64,0xff,0xc4,0xb0,0x0c,0x13,0x31,0x18,0x62,0x55,0x4c,0x1d,0x91, - 0x78,0x8b,0x15,0x08,0xec,0x36,0x2c,0xed,0x54,0x7d,0x49,0x8a,0x48,0xe1,0xc4,0x35,0xd5,0xf2,0xad,0x35, - 0x1b,0xd8,0xd2,0x13,0x9b,0xd4,0xaa,0x9b,0x87,0x13,0xcd,0x07,0xcc,0x2b,0xeb,0xe9,0x7f,0x06,0x8e,0xc7, - 0x5e,0x4a,0x5c,0x1d,0x18,0x0b,0x0e,0xc7,0x79,0xf8,0x73,0x35,0x7c,0x98,0x8b,0xea,0x10,0x2d,0x1c,0xa1, - 0x60,0xce,0xc9,0xc1,0xbc,0x31,0x8f,0x28,0xd8,0x84,0x01,0x3b,0xa4,0x74,0x98,0xfa,0xd0,0x71,0x16,0x5f, - 0x05,0xbb,0xee,0x3f,0x83,0xc3,0xa3,0xab,0xa3,0x9d,0xe3,0xd5,0x60,0xdc,0xf7,0x76,0x4f,0x2b,0x6d,0xf3, - 0x09,0x34,0x1f,0x0a,0xf0,0xa9,0x45,0xe3,0xca,0x99,0xe7,0x4a,0xd4,0x3d,0x8a,0xc3,0x09,0xe2,0xfd,0xcc, - 0x95,0x75,0xb7,0x7b,0x8f,0x38,0x67,0x7d,0x2f,0x56,0xad,0x27,0xf7,0x62,0x49,0xbd,0x70,0xf2,0xe8,0x4a, - 0x09,0xf1,0xd4,0x2c,0x11,0xe1,0x59,0x25,0x0a,0x35,0x1e,0x28,0x3f,0x0d,0x52,0x4b,0x0d,0xd6,0x60,0xf1, - 0x67,0x1d,0xcd,0x0c,0x5a,0xec,0xea,0xa8,0xf7,0x2d,0x14,0xda,0x21,0x72,0x13,0x4b,0xef,0x78,0xda,0x63, - 0x15,0x77,0xe5,0xc3,0x70,0x1a,0x56,0x05,0x86,0xb3,0x70,0xaa,0xc2,0xa6,0x70,0xdf,0xa6,0x8d,0xe3,0x0f, - 0x51,0xc9,0x45,0x44,0x3f,0x6d,0x5e,0x63,0x2e,0xd5,0x44,0x12,0x43,0xe7,0xea,0x61,0x5a,0x3b,0xcf,0x45, - 0x8e,0x19,0x14,0x8d,0x46,0x91,0x31,0x89,0x9e,0xfb,0x33,0x2f,0x88,0x2a,0xd6,0xaf,0xbe,0x58,0x4a,0xd1, - 0xb6,0xbe,0x5c,0x75,0xc1,0x6f,0x85,0x78,0xeb,0x33,0x6a,0x02,0xb1,0x54,0x5a,0x40,0x61,0x39,0xca,0x95, - 0x85,0x19,0xe2,0xa5,0x37,0xda,0x32,0x43,0x6e,0x61,0x08,0xbd,0xc1,0xec,0xed,0x64,0x37,0x56,0xfa,0xb0, - 0x2a,0x35,0xf9,0x8c,0x04,0x9a,0x00,0x61,0x94,0xbb,0x5d,0x25,0x52,0x1f,0xf2,0x59,0x53,0x42,0x05,0x9c, - 0x9f,0x04,0x93,0x66,0x9f,0x5a,0x90,0x5a,0x51,0x88,0xca,0xff,0x50,0x53,0xcd,0x70,0xe7,0xc1,0x30,0xda, - 0xd9,0xe9,0x3d,0xda,0x1b,0x7a,0x50,0xfd,0xb3,0x54,0x52,0xa3,0xfe,0x03,0xe6,0xc3,0xb7,0x8c,0x6a,0x8d, - 0xa3,0xae,0x5f,0x12,0x85,0xda,0x94,0x3b,0x84,0x0c,0x96,0x7e,0x85,0x61,0xa6,0x4b,0x13,0x8d,0xae,0x82, - 0x8a,0xd4,0x57,0x5c,0x67,0xf3,0x26,0x1b,0x50,0xac,0x26,0xdc,0x67,0x29,0x43,0x74,0x51,0x6c,0x86,0xd7, - 0xf9,0xe7,0xc3,0xab,0xd2,0x69,0x59,0x5a,0x20,0x5b,0x53,0x96,0x8a,0x8d,0xb2,0x54,0x66,0xd9,0xd7,0xb7, - 0x60,0x71,0xe2,0xc3,0xcb,0x66,0xae,0xfc,0x40,0xd7,0xa7,0xbd,0x8e,0xb3,0x1b,0xd7,0x06,0xad,0xf9,0xde, - 0x87,0xfe,0x2f,0xcf,0x77,0xd9,0x50,0x01,0x86,0x58,0x4a,0x75,0x57,0xa0,0xd5,0xa3,0x29,0x54,0x3d,0xcd, - 0xf9,0x08,0x41,0xb7,0xd4,0x6e,0xea,0xa0,0x34,0xd9,0x28,0xdb,0x0c,0xa7,0xd4,0xe6,0x42,0xcd,0x83,0xa1, - 0x03,0x9b,0x69,0xed,0xb8,0xf6,0xb2,0x95,0x9b,0x97,0x0d,0x78,0x46,0x87,0x62,0xef,0x5a,0xac,0xec,0xaf, - 0x2e,0x96,0x4d,0xef,0x27,0x72,0x66,0xdd,0xb0,0x32,0xb4,0x9b,0x68,0x5b,0xe4,0x0d,0x3e,0xa4,0x39,0xca, - 0xea,0xb2,0x71,0xd4,0x3e,0x52,0x4a,0x56,0xef,0xb3,0x66,0xd7,0x5c,0xd7,0x72,0xe1,0x4d,0x53,0x0d,0x89, - 0x40,0xe0,0x38,0xcd,0x3d,0x38,0xe9,0x9c,0x60,0x63,0x75,0x24,0xe6,0xbb,0x2d,0xb0,0xf8,0x72,0x58,0x28, - 0xb0,0x88,0x0e,0x0b,0x1b,0x2c,0x8a,0xfe,0x97,0x95,0xc6,0xde,0xa8,0x92,0x8a,0x25,0xac,0x78,0xbd,0xef, - 0xf9,0x99,0xab,0x70,0x86,0x05,0x2e,0x13,0xa1,0x38,0xa8,0x6d,0x03,0x0f,0x11,0x1d,0x79,0x09,0x77,0x58, - 0xce,0xf9,0x06,0x0c,0xd7,0x7b,0x6d,0x2b,0x2d,0x1f,0x42,0x32,0xd9,0xea,0xef,0xbd,0x61,0xae,0xfa,0xcb, - 0xfe,0x11,0xaa,0xfe,0xe6,0xfd,0x7b,0x06,0x8c,0x13,0xd3,0xaf,0x89,0xea,0x58,0xf2,0xa9,0x70,0xec,0x97, - 0xa6,0xe7,0x3a,0xd0,0x4c,0xd2,0x9c,0xe9,0x26,0xea,0xb5,0x4c,0xa5,0xc5,0x42,0xad,0xd5,0xeb,0xfb,0xc3, - 0x4c,0xf5,0x3a,0x87,0x8d,0x51,0xd5,0xeb,0xac,0x7f,0x5f,0x5f,0xb1,0x35,0xb0,0x5b,0xee,0x55,0x98,0xad, - 0x0e,0xa0,0x2c,0x4d,0xc2,0x15,0xcf,0xb8,0xc5,0xe4,0x37,0xba,0xd6,0xa0,0x3e,0xe5,0x08,0xbf,0x65,0x12, - 0xca,0x46,0x95,0xf4,0xb5,0xa6,0x3b,0xd5,0x41,0x28,0x1a,0xde,0xcf,0xa2,0xb6,0x09,0xc1,0x41,0xfe,0xd8, - 0xa8,0xac,0xd8,0x5c,0x19,0xfb,0xe0,0xed,0xa8,0xa5,0x29,0xa1,0x69,0x6b,0x73,0x7d,0x4a,0x25,0x67,0x83, - 0x65,0x99,0xcc,0x07,0xe2,0x13,0x71,0x63,0x6f,0xbb,0x06,0x5f,0x67,0x12,0x6e,0x19,0x7d,0x83,0x4d,0xd8, - 0x38,0x09,0x1b,0x2b,0xad,0x0d,0xa0,0x5d,0x5b,0xe7,0x64,0xfc,0xe5,0xca,0x36,0x4c,0x4a,0xf7,0x20,0x5a, - 0x73,0x23,0x9a,0x26,0xc9,0x9f,0xa6,0xfd,0x0e,0x82,0x44,0x13,0xab,0x25,0x3c,0x62,0x13,0xc0,0x02,0x69, - 0x13,0x95,0x5e,0x78,0x90,0x77,0xc2,0xd8,0x94,0x2f,0x11,0x84,0x98,0xc5,0x77,0xb8,0x04,0xb3,0x3f,0xb6, - 0xb9,0x04,0xa4,0xc3,0xba,0xa0,0xef,0x1c,0x1f,0x23,0x52,0x82,0x3e,0x60,0xdb,0x02,0xdc,0xc3,0xb9,0xc1, - 0x5f,0xf0,0xe7,0x74,0x63,0x46,0x16,0x13,0x76,0x68,0x57,0xba,0x11,0x94,0x8e,0xfd,0xa5,0xe2,0x9b,0x5b, - 0x32,0xbe,0xe3,0x69,0x0b,0x15,0x30,0xf7,0x61,0x3a,0xbe,0xa1,0x5a,0x51,0x58,0x94,0x1a,0xed,0xeb,0x8e, - 0xd6,0x9c,0x56,0x07,0x41,0xe3,0x28,0xdc,0x2c,0xb1,0xf1,0xd3,0xcd,0x67,0x63,0xfe,0xbf,0xe3,0x6c,0x14, - 0x17,0x85,0xa5,0x39,0x1b,0x73,0x98,0xf8,0xd7,0xe7,0x65,0xda,0x49,0x9a,0x6c,0xc2,0xe9,0xfb,0x9b,0x71, - 0xfa,0xfe,0x58,0x1b,0x56,0x58,0x68,0x2b,0x6b,0x99,0x29,0x69,0xfb,0x87,0x51,0x4b,0x97,0x1e,0x86,0xda, - 0x23,0x89,0xfe,0x8c,0x4b,0x7e,0x18,0x16,0x71,0xd4,0x12,0x78,0x87,0xe0,0xda,0xf8,0x38,0xb3,0xde,0x11, - 0x97,0x94,0x5e,0x38,0xea,0xaa,0x2b,0x05,0x39,0xe0,0xaa,0x98,0x2f,0xa5,0x37,0x98,0x2f,0xa5,0x62,0xbe, - 0x24,0x65,0x3c,0xbf,0xe3,0xfb,0xfe,0x58,0xb5,0xc6,0x56,0x4b,0x0a,0x1e,0x11,0xdc,0x9e,0x23,0x97,0x36, - 0x10,0x8f,0x2d,0x51,0xb8,0x05,0xed,0xd4,0x64,0x0a,0x1b,0x91,0xce,0x86,0x0a,0x6b,0x58,0xa2,0x59,0x53, - 0x27,0xc2,0xf9,0x4b,0x15,0x6d,0x40,0x36,0x5d,0x5d,0xdf,0x8c,0x6a,0xa4,0xe5,0xff,0x47,0x11,0x4d,0xf3, - 0x36,0x68,0x03,0x9a,0xe9,0xc8,0x56,0x21,0x19,0x7b,0x02,0x6f,0x45,0x31,0xe9,0x27,0xa2,0x98,0x5a,0xa5, - 0xb7,0x22,0x18,0xc9,0x7d,0x3b,0x7a,0x69,0xc8,0x72,0xff,0x8f,0x23,0x97,0xf4,0x76,0xe4,0xd2,0xed,0x5a, - 0xe9,0xff,0x47,0x2e,0x1d,0xc8,0x25,0x35,0xc8,0x45,0x69,0x82,0x88,0xa1,0x80,0x12,0x01,0x25,0x44,0xf0, - 0x59,0x13,0xeb,0xff,0xec,0xd1,0x3c,0x47,0x97,0x51,0x32,0x8f,0x4e,0x92,0x79,0x82,0xef,0xe1,0x75,0xfd, - 0xbc,0x0c,0x3e,0xd6,0x6e,0x02,0x83,0x13,0x2c,0x0d,0x6b,0xf4,0xce,0xe7,0x76,0xdc,0x5e,0xf8,0x62,0x38, - 0x0b,0x09,0x0a,0x2f,0x09,0xf6,0x29,0x69,0x7b,0x5b,0x01,0xdc,0x99,0x4e,0xd1,0x26,0x96,0x03,0xc7,0xe3, - 0x11,0xc5,0xba,0x1a,0x09,0xc9,0xd4,0xd5,0xdf,0x8f,0x54,0xba,0xea,0xad,0x73,0x47,0xf4,0x57,0xaf,0x09, - 0x4a,0x83,0x4d,0x02,0x57,0x64,0x81,0x13,0x9b,0x34,0x3c,0xdb,0x50,0x65,0x5a,0xab,0xb2,0x6c,0xd7,0xd7, - 0xbe,0x1f,0xb3,0x6f,0x7e,0xfe,0x77,0x80,0x5f,0xac,0xf4,0x56,0xb5,0x45,0x76,0xc5,0x4f,0x11,0xdb,0x42, - 0x5c,0xa8,0x31,0xfb,0x6a,0xd2,0xea,0xb1,0xcd,0xab,0xac,0xd7,0x95,0x55,0xc4,0xcd,0x63,0x9c,0x7c,0xde, - 0x20,0x5b,0x0c,0x4e,0xd2,0xc5,0x96,0x25,0x86,0xc1,0x49,0xec,0x61,0x26,0x60,0xcb,0x84,0xcb,0x6f,0x0c, - 0x33,0xb3,0xd8,0xb3,0x0c,0xe3,0x34,0xd6,0x69,0x59,0x6b,0x9c,0x7e,0x6a,0x46,0x9a,0x7f,0xce,0x48,0xe3, - 0xcf,0x1f,0xa9,0xf2,0x97,0x58,0xef,0x6b,0xce,0xcc,0x53,0xe9,0x1b,0xbd,0xdf,0xbc,0xc5,0x3b,0x7e,0x7a, - 0xaf,0xa6,0xff,0xbd,0x30,0x66,0x78,0xe2,0x58,0xdb,0xec,0x4d,0x2d,0xe8,0xea,0xe0,0x76,0x3f,0x75,0x1c, - 0x1d,0x7b,0xef,0xbf,0x77,0x1c,0xe9,0xed,0xe3,0x80,0xcd,0xf5,0x87,0x24,0x75,0x8f,0xf1,0x68,0x8c,0xff, - 0x5c,0x07,0xfb,0x9c,0x23,0x34,0x4c,0x54,0x54,0x77,0x76,0x1c,0x76,0x56,0xc5,0x1f,0x73,0xaf,0xc4,0xcd, - 0xe2,0x95,0xd2,0xda,0xa1,0xfe,0x1a,0xd5,0x01,0x31,0x8a,0x7a,0x09,0x52,0xe8,0x6d,0x99,0x53,0xe1,0x53, - 0xc2,0x94,0xc3,0x5c,0xec,0xa3,0xf2,0x81,0x8a,0x26,0x0e,0xcc,0xa8,0x70,0x5d,0xe8,0xfc,0x63,0x70,0x7f, - 0x70,0xdf,0xf1,0xbb,0x4c,0xb5,0x24,0xd2,0xf3,0xf6,0xb6,0x8a,0xf8,0xfc,0x0e,0x31,0x68,0xaa,0xe7,0xc1, - 0xb2,0x88,0xdd,0x97,0x84,0x98,0x95,0xfa,0x90,0xb1,0x76,0xb9,0x8e,0xd3,0xe0,0x9a,0xa3,0x6a,0x06,0xce, - 0xdb,0x32,0x4a,0xf2,0xc2,0xf1,0x8b,0x8f,0x45,0x19,0x5f,0xbc,0x78,0x46,0x29,0xfc,0xd4,0x7b,0xf1,0xcc, - 0xf1,0x67,0x49,0x7e,0x71,0x15,0xe5,0xf1,0x3b,0xe9,0x4b,0xe0,0x3c,0x57,0x09,0x3d,0xd5,0xbb,0xa0,0xe7, - 0xf8,0x93,0x6c,0xf1,0x51,0x22,0x67,0x38,0x4f,0xf5,0x63,0xef,0x7f,0xfd,0xcf,0xde,0xbd,0xbd,0xfd,0x7f, - 0xf4,0x5e,0x46,0xf9,0x79,0xef,0x32,0x4a,0x7b,0x3f,0xc7,0x69,0x71,0x95,0x2d,0xa7,0xb4,0xad,0xe6,0x59, - 0x04,0x8f,0x5b,0x81,0xf3,0x66,0x1e,0xc3,0x70,0x90,0xa3,0x19,0xf4,0x54,0x6a,0x4f,0x26,0x4a,0x85,0x7c, - 0x1f,0x0c,0x06,0x8e,0x9f,0xc7,0x27,0x74,0xbc,0xbf,0x89,0x53,0x29,0x75,0x70,0x16,0xf7,0xa4,0xb7,0x34, - 0xfe,0xf9,0xbc,0x77,0x12,0xf7,0x24,0x47,0x3c,0xf5,0x7b,0x0b,0xa9,0x32,0x8f,0x67,0x79,0x5c,0x9c,0x31, - 0x26,0xef,0x2d,0x68,0xd0,0xbd,0x68,0x46,0xa4,0x14,0x75,0x7d,0x4a,0x63,0xe5,0xa5,0x7f,0xc2,0x51,0x3c, - 0x02,0xe7,0x31,0x5e,0x6a,0x69,0x6f,0xa3,0x4b,0x6e,0x48,0x7e,0xb9,0x0b,0x57,0xc9,0x2c,0xa1,0x99,0x2a, - 0x97,0x45,0x70,0x1d,0x4d,0xe0,0xf1,0x72,0x91,0x25,0x69,0x69,0x66,0xf1,0xf1,0x1b,0xcc,0xc4,0x34,0x29, - 0xa2,0x13,0x3a,0x84,0x02,0xe7,0x99,0x7a,0x22,0xf2,0x83,0xdd,0x67,0x64,0x29,0xc2,0xdd,0x99,0xec,0xbf, - 0x26,0xcf,0x93,0x0d,0x05,0xfc,0x04,0x91,0x4b,0x9c,0x17,0x53,0xdc,0x02,0xa7,0xd9,0xdb,0xb7,0xbc,0x24, - 0xf4,0xb7,0x07,0x5b,0xd3,0x59,0x46,0x50,0x40,0x8b,0x35,0x89,0x52,0x44,0xa4,0x80,0xed,0x06,0x15,0x7e, - 0x4b,0xaf,0xbd,0x89,0x7e,0xc7,0x8a,0xa4,0x29,0x41,0xeb,0x73,0x3a,0x8d,0xf1,0x59,0x7e,0x7b,0x65,0xd6, - 0x53,0x1f,0x4c,0x0e,0xea,0xd7,0x4f,0x59,0xc1,0x0b,0xa7,0xdf,0x69,0x1d,0x8a,0x92,0x7b,0xa6,0xf2,0xa8, - 0xde,0x99,0x37,0x04,0xfb,0x28,0xd4,0x54,0x94,0xd1,0xc9,0x81,0x01,0x23,0x4a,0x71,0x7c,0x35,0xc0,0xa7, - 0x12,0x31,0xa6,0x57,0xa8,0x64,0x3a,0x9b,0xdf,0x96,0xf1,0xa2,0x38,0xc8,0x97,0xc8,0x1c,0x97,0x3d,0xdc, - 0x15,0x20,0x6c,0xfd,0x47,0x1a,0x53,0xce,0x86,0x02,0x05,0x32,0x54,0x59,0x9f,0x43,0x7b,0xb5,0x99,0x17, - 0xbe,0xda,0x2e,0x93,0xe9,0x12,0x51,0x29,0x68,0x6e,0x89,0x90,0x41,0x34,0x8a,0x5a,0x4f,0x0e,0x54,0x1a, - 0xfa,0x72,0x11,0xeb,0x44,0x7a,0x94,0x84,0x17,0xb8,0xa3,0x48,0x09,0xf5,0x68,0xe8,0xa3,0x69,0x85,0xfd, - 0x4b,0x54,0xf6,0xf0,0xb9,0xa7,0xab,0xec,0x29,0x9b,0x94,0x5e,0x94,0x72,0xfb,0x28,0xd3,0xab,0xa6,0x6d, - 0x20,0xb5,0xbd,0xca,0x38,0xc4,0xb1,0xf3,0x2a,0x6b,0x94,0x56,0x5b,0xb5,0xf7,0x31,0x2e,0x25,0xe7,0xb7, - 0xa9,0x5a,0x69,0x79,0xa8,0x67,0x57,0x7d,0x85,0x10,0x9b,0x7d,0x69,0xa1,0xbb,0x18,0x89,0x7e,0x97,0xdc, - 0x49,0xda,0xbb,0x20,0x80,0x4f,0x8a,0x98,0xfa,0x31,0x55,0x85,0x1e,0x4f,0xa9,0x4e,0xfa,0x23,0x6f,0xcf, - 0x24,0xa0,0x90,0x23,0xbf,0xba,0x5a,0x6e,0xa4,0xd1,0x01,0x55,0xe0,0x79,0xf2,0x21,0x9e,0x4a,0x73,0xfc, - 0xc8,0x2d,0xc9,0xa7,0xb7,0xcb,0x34,0x4f,0x78,0x09,0xe4,0xc1,0xa4,0x16,0x98,0x3d,0xf9,0xd5,0x93,0x7c, - 0xa1,0xe6,0x58,0xfa,0x98,0x2e,0xcb,0x58,0x75,0xef,0x25,0xf5,0x34,0xfa,0x18,0x38,0xf2,0xab,0xb2,0x2f, - 0xe3,0x82,0x13,0xd5,0x83,0xa4,0xfe,0x1a,0x4f,0x53,0x95,0x6e,0x1e,0x55,0xfe,0xb3,0x65,0xae,0x0a,0xa8, - 0x27,0xd5,0xf7,0x3c,0xe1,0x54,0xf9,0x55,0xdd,0x23,0x78,0xcb,0x39,0x55,0x3f,0x99,0x6e,0x4b,0xea,0x52, - 0xfa,0x71,0x91,0xc9,0x3c,0x33,0x74,0xbc,0xe4,0x17,0x9d,0x68,0xad,0xa9,0x24,0x6c,0x58,0x55,0xf9,0xd8, - 0x5c,0xd7,0x46,0x91,0x46,0xb6,0x67,0x4b,0x90,0xde,0x07,0xd5,0xaa,0xd0,0xda,0xe1,0x58,0xa1,0x83,0xa0, - 0x87,0xe0,0x42,0xbd,0x64,0xd6,0x8b,0x6a,0xb0,0x01,0x5b,0x9a,0x68,0x9e,0xc7,0xd1,0xf4,0x63,0x2f,0x12, - 0xf3,0x73,0xdd,0xf9,0xcf,0x05,0x17,0x5d,0x6c,0x03,0x38,0xc8,0xe7,0x0a,0x9e,0xe4,0xbd,0x09,0x51,0x92, - 0xfa,0x26,0x21,0xcc,0xf9,0xdd,0x9b,0x17,0xaf,0x7b,0x0b,0x6a,0xc6,0x95,0x8e,0xf5,0xce,0x08,0xf5,0x7b, - 0xa6,0xa0,0x9c,0x98,0x40,0xb1,0x6f,0xaf,0xe2,0x78,0x41,0x1b,0x29,0xb9,0x88,0xec,0x89,0x36,0x39,0x5e, - 0x59,0xcf,0xd1,0x1c,0x33,0x9f,0xc6,0x54,0xa9,0xc6,0x09,0x3d,0xec,0x4d,0x20,0xfd,0xe8,0x42,0xf6,0x4d, - 0xbb,0x8d,0x83,0x6c,0xf1,0x0c,0x31,0xb5,0x1c,0x7a,0xe8,0x21,0xba,0x56,0x2b,0xc7,0x93,0x8c,0x50,0xfb, - 0xc5,0x2f,0x8b,0xc0,0x91,0xa7,0xde,0x72,0xe1,0xac,0x2d,0x3c,0x68,0xa3,0x90,0x0a,0x1b,0x56,0x08,0xad, - 0x42,0x90,0x7c,0xe3,0x17,0x97,0xbc,0xb8,0xf6,0x59,0xa0,0x21,0x40,0xd2,0x7a,0x9c,0x58,0xcb,0xf1,0x3d, - 0xe7,0x7a,0x3c,0x9f,0x67,0x57,0x85,0x60,0x3d,0xe5,0x53,0xc0,0xc2,0x2b,0xbd,0x59,0x4e,0x7d,0xfb,0x98, - 0x2d,0x73,0x02,0xb6,0xcb,0x64,0x12,0x03,0x6d,0xf3,0x29,0x26,0x07,0xb5,0xf2,0x88,0xc4,0xc5,0x6b,0x27, - 0x65,0x6f,0xb1,0xcc,0x17,0x59,0x11,0x17,0x83,0x1e,0x0e,0x48,0x95,0xbb,0x9e,0x05,0xa0,0x24,0x2c,0x1a, - 0xd5,0x40,0xef,0x67,0x65,0xb9,0x08,0x76,0x77,0xf7,0xbf,0xb9,0x37,0xd8,0xff,0xea,0xeb,0xc1,0xfe,0xe0, - 0xc1,0x6e,0xef,0xea,0x8c,0xa0,0x90,0xda,0xef,0xe1,0x94,0x37,0x48,0x1f,0xbd,0x48,0x4a,0xaa,0x9a,0x99, - 0x8c,0xb2,0x97,0xcd,0x08,0x4e,0x8b,0x5e,0x91,0xc1,0xc7,0x4c,0xd1,0x53,0x67,0x1c,0x3a,0x17,0xa3,0x15, - 0xdd,0x2c,0x4e,0x64,0xfa,0x4c,0x05,0x28,0x91,0x7d,0x25,0xc4,0x13,0xa4,0x02,0x36,0xa3,0xf4,0x23,0x9d, - 0xfc,0x1f,0x07,0xbd,0xdf,0xa8,0x31,0x1c,0x60,0xd1,0x9c,0x5e,0x8b,0x9e,0xe1,0xc0,0x7a,0x42,0x2b,0xf5, - 0x20,0x24,0x40,0x6f,0x4f,0x3e,0xf6,0xa0,0x2c,0x09,0x1a,0x01,0xd0,0x60,0x4f,0x73,0x4f,0x85,0xe4,0x5a, - 0xa6,0x65,0x32,0xe7,0xaf,0x3f,0x7d,0xfb,0xac,0x37,0x07,0x25,0x52,0xd0,0x42,0x13,0xb2,0xb6,0x4f,0x61, - 0xbd,0x50,0x76,0xaf,0x6b,0x39,0x64,0xa1,0xd4,0x92,0x77,0xcd,0x3e,0xcd,0x06,0x2f,0x11,0x01,0x5a,0x0f, - 0x67,0x79,0x2f,0x67,0x8f,0x61,0x83,0x9e,0x3a,0x53,0x38,0x10,0x1c,0xf7,0x03,0x27,0x37,0x51,0x25,0x51, - 0x41,0xc4,0x4f,0x3e,0xa5,0x41,0x4f,0x89,0xac,0xcd,0xe9,0x4b,0x73,0xf9,0x4e,0x62,0x02,0x0b,0x74,0xb4, - 0x48,0xa6,0x72,0xe0,0x3b,0xbe,0x2e,0x46,0x67,0x95,0x7a,0xa2,0x83,0xf9,0x6c,0x42,0x30,0xfc,0x0b,0x35, - 0xf2,0xec,0xfb,0xa7,0x6f,0xe4,0x5d,0x01,0xd6,0x92,0xc0,0x1a,0xae,0xba,0x70,0x38,0xd2,0xb4,0x17,0xc9, - 0x69,0x5a,0xe0,0xf8,0x7a,0xf1,0xa6,0xa7,0x62,0xca,0x77,0x03,0x93,0x2c,0x01,0x91,0xe7,0x27,0x34,0x2d, - 0x58,0x14,0x9a,0x50,0xca,0x78,0x8e,0x4d,0x2b,0x0b,0x81,0x99,0x9d,0xa3,0x3c,0x00,0x03,0x26,0x4d,0x04, - 0x26,0xb4,0x29,0xe9,0xed,0x2e,0x41,0xc9,0x34,0x03,0x99,0x44,0x94,0xcb,0x42,0x35,0x43,0xe4,0x8b,0x69, - 0x92,0x46,0xb4,0x3c,0xa1,0xb3,0xf3,0x22,0x2a,0xce,0x81,0x7e,0xf1,0xdc,0xc3,0x8b,0xe3,0x9f,0x12,0xd6, - 0xbb,0x02,0x52,0xfe,0x4e,0x1e,0x1c,0xff,0x8c,0x68,0x0f,0xb1,0x2f,0xfd,0x5e,0x3d,0x55,0x69,0x6f,0x2a, - 0x7f,0xc8,0xc0,0x46,0x62,0x52,0x4a,0x35,0x4d,0x4c,0x4b,0x6b,0x45,0xc4,0xd6,0xe8,0x12,0x4e,0x21,0x4a, - 0xaa,0x5c,0x58,0xa4,0x40,0x0f,0x2a,0x9d,0x67,0x79,0x96,0x12,0xd5,0xc5,0xb3,0xef,0xbe,0x3a,0x78,0x43, - 0x58,0x85,0x90,0x59,0xa1,0xb2,0x7d,0x4f,0xa4,0x22,0x53,0xba,0x94,0x96,0x21,0xb0,0xe6,0x45,0xb4,0xd0, - 0xdf,0xbe,0xcb,0xb2,0x53,0x82,0x82,0x97,0x94,0xd2,0x7b,0xfc,0xe6,0x45,0x45,0x27,0xab,0xef,0x86,0x4a, - 0x16,0xfe,0x80,0x5b,0x7f,0x0b,0xe7,0xb5,0xd4,0x73,0x6a,0xa8,0xc7,0x8e,0x6c,0x73,0x4e,0x66,0x72,0xe4, - 0x12,0x48,0xef,0x67,0x45,0xb2,0x26,0x2a,0xa5,0xe7,0x56,0x67,0xa9,0xc7,0x79,0x7f,0x8a,0x68,0x95,0xe9, - 0x4f,0x52,0x32,0x19,0x8d,0x14,0x90,0xa9,0x3f,0x65,0xe9,0xa9,0x95,0x44,0x4c,0xa6,0x60,0xdd,0xef,0x68, - 0xa2,0xe7,0x2a,0x77,0x6f,0x97,0xe8,0x3a,0x95,0x4d,0x50,0xcc,0x5c,0xe5,0xab,0x15,0x7a,0x1b,0x47,0xf9, - 0xe4,0x0c,0x44,0x17,0x7e,0x79,0x3e,0x68,0x23,0x11,0x71,0x4b,0xa7,0x14,0xef,0xb6,0x37,0xbc,0xdb,0x84, - 0xaa,0xe3,0x3d,0xc6,0xe8,0xbf,0x4f,0x0c,0xca,0xa5,0xa7,0xb3,0xbf,0x3d,0x78,0x2c,0xf4,0x20,0x26,0xf6, - 0x25,0x30,0xc2,0x0d,0xf9,0x1f,0xbf,0xd1,0x74,0xb8,0xda,0x94,0xb5,0x86,0xd4,0xb6,0xb6,0xcf,0x18,0xda, - 0x25,0x52,0xf2,0xcd,0xaf,0x2f,0x9f,0xe5,0x94,0x92,0xbf,0x7d,0x46,0xed,0xbd,0x79,0xfa,0xf8,0x9b,0xaf, - 0xbe,0xfe,0xb2,0x47,0xa9,0xbd,0x29,0x27,0xf7,0x28,0x5d,0x4a,0x42,0x37,0xb8,0x59,0xe6,0xe9,0x4f,0xdd, - 0x65,0x9e,0xfe,0x24,0x65,0x26,0x70,0x64,0x8a,0x42,0x57,0x17,0x8f,0x35,0x50,0x77,0xe4,0x7f,0xf1,0xbf, - 0xfe,0xaf,0xa7,0x15,0xa4,0x53,0xe6,0xe7,0x20,0x1b,0xe3,0x74,0xf2,0xb1,0x33,0xfb,0x4c,0x7f,0x15,0x70, - 0x22,0xd8,0xf9,0x31,0xfe,0xd8,0x82,0x27,0xda,0x79,0xb5,0x0c,0x67,0xbc,0xbd,0x7f,0x8e,0xc5,0x89,0xdf, - 0x14,0xe8,0x73,0xd6,0x5b,0x16,0x8c,0x08,0x6d,0x2a,0x72,0xd0,0x23,0xb4,0x30,0xe5,0xa3,0x61,0x9e,0x65, - 0xe7,0xf8,0xbe,0x5c,0x30,0x16,0x52,0x01,0x1c,0x39,0xfb,0x9f,0x74,0xb8,0x0e,0x08,0x6b,0xd1,0xe9,0x4a, - 0x18,0xe5,0xbc,0x87,0x88,0x72,0x04,0xe0,0x40,0x14,0xaa,0x6d,0x1f,0xf3,0xde,0x53,0x9d,0xba,0x60,0x76, - 0x0e,0xc2,0xd8,0x92,0x60,0x5b,0xd0,0x1e,0x8f,0xa2,0xa0,0xe3,0xe0,0x67,0x62,0x5f,0x0b,0xa0,0x3a,0x39, - 0xcd,0x68,0x78,0xb1,0xae,0x04,0x87,0xb6,0x3a,0x5f,0xb4,0xff,0x3b,0x3a,0xd0,0x08,0xc9,0x2d,0xd0,0xd3, - 0x53,0xae,0x1c,0x2c,0xf3,0x2e,0xe3,0xc4,0x48,0x13,0x41,0x49,0x79,0x97,0x30,0x76,0x21,0x07,0x1c,0xba, - 0xae,0x27,0x65,0x40,0xdb,0x9b,0x45,0xbf,0xc1,0x35,0x38,0x45,0xc3,0x91,0x3e,0x85,0x6b,0x44,0x3e,0x5b, - 0x90,0x4c,0xbb,0x47,0x64,0xd7,0x80,0xbd,0xe8,0x04,0xe3,0x2a,0x0d,0xbb,0x28,0x9c,0x67,0x75,0x92,0xb7, - 0x0a,0x5b,0xc7,0x30,0xd1,0xb6,0x25,0xbc,0x42,0x4b,0x19,0xc1,0x22,0xad,0xfc,0x8a,0x0b,0xad,0xe7,0xb5, - 0x88,0xbb,0xa2,0x55,0xa2,0x46,0xd9,0xd5,0xcb,0xbd,0xb4,0xa9,0xb3,0x76,0xc9,0x3a,0x5d,0x69,0x95,0x65, - 0xc6,0xb5,0x7b,0x50,0x05,0xcc,0xac,0x3b,0x07,0xc5,0x85,0xda,0xa3,0xe2,0x02,0xad,0x51,0x09,0x16,0xc3, - 0x39,0xa7,0x58,0x60,0xab,0x44,0x1e,0x53,0x8f,0x68,0x5d,0xe5,0x18,0xd4,0xec,0xde,0x72,0x81,0x3e,0x6b, - 0x34,0x48,0x7b,0x1b,0x0b,0xd7,0xe3,0x60,0x84,0x3d,0xf9,0x06,0xe0,0xd4,0x58,0x53,0xb7,0xc0,0x6c,0x9f, - 0x5d,0x39,0xf7,0x92,0x6f,0x29,0x40,0x07,0x8a,0x83,0x25,0x1c,0x28,0x8c,0x9d,0x2a,0x44,0x67,0xcf,0x54, - 0x76,0x0e,0x98,0xd7,0xc8,0x8d,0x06,0x4f,0x87,0x66,0x92,0x46,0xcc,0x8f,0x70,0x75,0x9b,0x96,0x87,0x87, - 0xbe,0x61,0x79,0xb8,0xe0,0xe6,0xf5,0xe1,0xa2,0x9b,0xd6,0x87,0xb8,0xe5,0x74,0x6e,0x18,0x7f,0xa2,0xd1, - 0x17,0x2d,0x59,0xcb,0xa7,0x09,0x5b,0xe2,0xbf,0x27,0x6b,0xf9,0x96,0xc8,0xba,0xec,0x34,0x4e,0x4f,0xe6, - 0xc9,0x79,0xef,0x34,0xa6,0x73,0x9f,0x68,0xb3,0x93,0xf8,0xcf,0xe4,0xb4,0x77,0xc1,0x07,0xc5,0x94,0x32, - 0x5c,0xb2,0x1c,0xc1,0x90,0x25,0x71,0x97,0xf8,0xe5,0x7b,0xca,0x5d,0xa8,0x6e,0x83,0x24,0x21,0x62,0x70, - 0x91,0x26,0xf1,0xf2,0x8a,0x7e,0x4f,0x63,0x09,0x53,0x84,0x1e,0xa3,0xd3,0x44,0x1b,0xc4,0x7f,0xc6,0x10, - 0xc0,0xd0,0x1a,0xf4,0x52,0xea,0x4a,0x9c,0x36,0xc4,0x2f,0x07,0x59,0x0c,0x32,0xa7,0x91,0xae,0x45,0x30, - 0x4f,0x4c,0x07,0xb3,0x45,0x31,0x8f,0xa2,0xf4,0x2f,0x49,0x63,0x7e,0x49,0x4a,0xea,0xd9,0xe4,0x2c,0x3a, - 0x8f,0xe7,0x9f,0x2e,0x92,0xa9,0x97,0x52,0x72,0x99,0xb7,0xd4,0x89,0x05,0x9c,0x90,0x4c,0x9b,0xd2,0x99, - 0x84,0x3a,0x79,0x1a,0x5f,0x12,0xab,0x85,0xb1,0x74,0x49,0x68,0xa2,0x19,0x41,0x46,0x96,0xb6,0x05,0x34, - 0x3f,0xd2,0xc7,0xd3,0x18,0xf3,0x1f,0xe7,0x2a,0x1a,0x01,0x11,0x36,0xe7,0xa8,0xa7,0x29,0xa8,0x79,0x57, - 0xe5,0xa0,0xcc,0xf3,0x2c,0x47,0xa6,0xba,0xb0,0xe6,0x15,0x7a,0x82,0x9a,0xa4,0x2b,0x9f,0x22,0xae,0xf9, - 0x7e,0x99,0x4c,0x93,0xd3,0x78,0x83,0xb8,0x86,0x38,0x16,0xec,0x8a,0x18,0x10,0x82,0xf5,0x9c,0xcf,0x40, - 0xe5,0x2b,0x99,0x4c,0x9c,0x94,0x2d,0x99,0xcd,0x81,0xe4,0xd5,0xc2,0x9a,0x38,0x9e,0xb3,0xe7,0x96,0x98, - 0xea,0x49,0x3f,0x4f,0x6a,0xf3,0x7e,0xda,0x94,0xda,0xfc,0xc4,0xb0,0xd0,0x23,0x7c,0xd1,0xbb,0xcc,0x70, - 0x46,0x50,0x9e,0x8a,0x41,0x8f,0xe3,0x4a,0x5a,0x73,0x59,0x9b,0xaa,0x18,0x6e,0xf8,0x92,0xa2,0x25,0xb7, - 0x39,0x95,0x99,0xaf,0x57,0x73,0x1a,0x1b,0x0e,0x26,0xce,0xa7,0x0d,0x01,0xce,0x41,0x2d,0x2b,0x0d,0x4c, - 0x40,0x24,0x4e,0x6f,0x96,0xe2,0xc4,0xd2,0x46,0x9d,0x2b,0xd7,0x85,0x98,0xeb,0xa6,0xad,0x70,0x99,0xc5, - 0xa7,0x3a,0x4d,0x73,0xde,0xb4,0xe4,0x57,0x54,0x32,0xce,0xab,0x16,0xea,0x1c,0x3c,0x24,0x08,0xf1,0xac, - 0x25,0xcf,0x79,0x17,0x15,0xa5,0x34,0xda,0x90,0xe7,0xfc,0x8e,0xf3,0x78,0x71,0x9e,0x5d,0x14,0x65,0x5d, - 0xa6,0xc3,0x1f,0xa0,0x8e,0x7c,0x1a,0x41,0xb9,0xd5,0x16,0xed,0xe8,0x9e,0x83,0x1c,0x4d,0x1b,0xa2,0x1d, - 0xda,0x96,0xd3,0xe8,0xb4,0x21,0xdb,0x79,0x46,0x13,0x63,0x52,0x6d,0xd9,0x4e,0x16,0x5b,0x1f,0x2a,0xd1, - 0xce,0x33,0x6e,0xd8,0x7c,0xd0,0xb2,0x9d,0x77,0x39,0x35,0xad,0x13,0x2b,0xe1,0xce,0xef,0x84,0xd1,0xab, - 0xcc,0x5a,0xb8,0xf3,0x7b,0x26,0x1d,0xa9,0x09,0x77,0x9e,0xc4,0x57,0xf1,0x29,0x2b,0xeb,0x36,0xc5,0x3b, - 0x6a,0xe9,0x4f,0x54,0x86,0xcd,0xcb,0xdf,0x90,0xf4,0x3c,0x69,0x15,0xa8,0x01,0xc1,0x6d,0x02,0x9f,0xd7, - 0x74,0x46,0x59,0x05,0x88,0xef,0x25,0xb8,0x85,0x08,0xb4,0xd7,0x04,0x44,0x26,0x8b,0xe2,0x19,0x81,0xed, - 0x6d,0x32,0x9f,0x8d,0xc0,0xd5,0x2d,0xf3,0xd1,0x10,0x63,0x89,0x7c,0x2c,0xe0,0xab,0x0b,0x7e,0x6a,0xe0, - 0xb7,0x51,0xfa,0x43,0xbd,0x3c,0x23,0x9a,0xae,0x4b,0xfa,0xf3,0x58,0xe4,0x3e,0xf1,0xad,0x62,0x9f,0xef, - 0x30,0x7e,0x88,0x7d,0x0c,0xb6,0x39,0x8d,0xe7,0xc9,0xfb,0x73,0x0c,0x2d,0xe9,0xa8,0xda,0x08,0x7d,0x9e, - 0x64,0x10,0x9d,0xa5,0x51,0x94,0xd3,0x62,0xa6,0xb1,0x35,0xf0,0x2e,0xf1,0x8f,0xe4,0x50,0xd9,0x51,0x72, - 0xa3,0x1c,0xa8,0x42,0xb6,0x06,0x53,0x5a,0xf8,0xd7,0x3e,0x28,0x1b,0x92,0xa0,0xc7,0xb6,0x6c,0xa2,0x06, - 0x1c,0x56,0x36,0x21,0xeb,0x69,0xf7,0x9c,0x13,0xa5,0x0c,0xa6,0x38,0x93,0xe1,0xf6,0x88,0x3b,0xc3,0x4c, - 0x88,0x6c,0xa8,0x22,0xe0,0x62,0x1c,0xcf,0xd1,0x8c,0xbf,0xd1,0x51,0x19,0xe5,0x11,0xe1,0x40,0x1e,0x05, - 0x1f,0xb2,0x20,0x2d,0x8c,0x7c,0x22,0x96,0xf3,0x03,0x55,0x4d,0x63,0x2b,0xd5,0xc0,0x35,0x22,0x45,0xf4, - 0x9e,0xd5,0x4b,0x11,0xa7,0x4f,0x59,0x68,0x06,0x23,0x5e,0xed,0xde,0x65,0x12,0x75,0x8a,0x88,0xe8,0x3b, - 0xb5,0xfc,0xde,0xee,0xd9,0x59,0x7c,0x82,0xd3,0xef,0x02,0x83,0x19,0xf4,0xde,0xca,0x78,0xa5,0x5f,0x90, - 0xe2,0x10,0xd5,0x97,0xa0,0xaf,0x3c,0x4e,0xbb,0x0f,0x7e,0x8f,0x90,0xc7,0x29,0x1d,0xf2,0xea,0x68,0x91, - 0x63,0xf4,0x84,0x08,0xca,0x64,0x9e,0x9c,0x4e,0x81,0xb0,0x7b,0x3f,0xc4,0xbd,0xf3,0x25,0xcd,0xa3,0x55, - 0x5b,0xd6,0xd8,0x42,0x53,0x9c,0x04,0x38,0x15,0x0c,0xff,0x28,0x53,0x7f,0x9e,0x52,0x22,0x8d,0x69,0x9a, - 0x2f,0xcf,0x31,0x1d,0x65,0x56,0xa2,0xeb,0x53,0x91,0x0f,0x45,0x38,0x76,0x69,0x12,0x9b,0xe2,0x21,0x6b, - 0x8d,0x41,0x79,0x30,0x65,0xab,0x8e,0x63,0x2b,0x9f,0x2c,0x9f,0xca,0xdb,0x5e,0x02,0x54,0x4e,0x53,0x14, - 0xd3,0xb1,0xda,0x90,0x11,0xbd,0x5b,0xce,0x7b,0x67,0x09,0x53,0x02,0xb4,0xc5,0x31,0x23,0x4c,0x40,0x50, - 0xb6,0xab,0x68,0x72,0x56,0x5e,0x81,0x64,0xa5,0xd1,0xf9,0x48,0xb1,0xf0,0x10,0xcb,0x87,0xcb,0x25,0x4f, - 0x6b,0x8f,0xc0,0x36,0xc7,0x81,0xcd,0xd3,0x51,0x6c,0x14,0x1b,0xfd,0x6a,0x2a,0xd4,0x82,0xa3,0xef,0xe2, - 0x93,0x7c,0x49,0x14,0x60,0x25,0x3c,0x3a,0xab,0x09,0x8f,0x68,0x4e,0x19,0xc0,0x58,0x80,0x43,0x5c,0x2d, - 0x4d,0x59,0x4c,0xdb,0xff,0x4f,0xc0,0x5c,0x94,0xb6,0x86,0x49,0x8c,0x24,0x01,0x20,0x15,0x4a,0xde,0xa7, - 0x0c,0xbb,0x57,0xc9,0x1c,0xc3,0xb6,0xd6,0x0a,0xc5,0xa0,0x99,0x4f,0x03,0xa2,0x3f,0x7f,0x26,0xef,0xf1, - 0xfd,0x2a,0xa6,0x61,0x5f,0x01,0x76,0xe9,0xe5,0x22,0x8e,0x15,0x25,0x7a,0x02,0x47,0x5c,0x6d,0x41,0x52, - 0x1e,0x6f,0x16,0x23,0x41,0x8e,0x72,0xbb,0x20,0x29,0xba,0xd8,0x20,0x48,0x7a,0x0b,0x52,0x8e,0xfa,0x31, - 0xd5,0xa2,0x24,0xb4,0xb5,0x51,0x90,0xd4,0x94,0x24,0xbd,0x9f,0xd6,0x25,0x49,0xf1,0x4d,0x82,0xa4,0x08, - 0x26,0x0a,0xb4,0x0f,0x08,0xae,0x18,0x41,0xfd,0x05,0x79,0xd2,0x49,0xf2,0xfe,0x2a,0xce,0x19,0x12,0x3f, - 0x45,0xa4,0xf4,0x4e,0xa8,0xf0,0x2e,0x91,0x52,0x6a,0x89,0x94,0x9e,0x10,0x78,0x4d,0xcb,0xf8,0x94,0x10, - 0xca,0xd4,0x12,0x2b,0xe1,0x62,0xdd,0x4e,0x34,0xfc,0x96,0x9d,0x1f,0x82,0xa5,0x2a,0x23,0x2d,0xf9,0x59, - 0x84,0x0d,0x49,0xdb,0xee,0x24,0x2a,0x08,0xa1,0x80,0xa3,0x10,0x6e,0x2c,0xee,0x94,0x34,0xfd,0x9e,0xc5, - 0x3c,0x9c,0xbf,0x2e,0x69,0xb2,0x18,0xcf,0x5b,0x24,0x4c,0xb5,0x9a,0x6d,0xf4,0xc1,0x68,0xc2,0x3e,0xca, - 0x88,0xc8,0x3f,0xfd,0xef,0x90,0x32,0x9d,0xcf,0xb3,0xff,0x77,0x09,0x99,0x1e,0x03,0x1b,0xe7,0xcc,0x0b, - 0x12,0xac,0x11,0x46,0x17,0x6c,0x71,0xc9,0x5b,0xbf,0x4e,0x24,0xd3,0xd6,0x67,0xee,0x4f,0xe5,0x29,0xd5, - 0x59,0x73,0xa6,0x58,0x09,0xe4,0x85,0xa8,0x49,0x8e,0x94,0x05,0xa0,0x82,0x4a,0x10,0xf0,0x96,0x8c,0xbd, - 0xff,0x14,0xec,0x67,0x24,0x4e,0x17,0xc0,0x05,0xaa,0x8b,0x94,0x9d,0xf3,0x4d,0xa9,0x55,0x48,0x97,0xce, - 0x51,0xaf,0x92,0x39,0x15,0x5a,0xe8,0x24,0x28,0x11,0x34,0x02,0x0e,0x60,0x33,0x24,0x40,0xde,0xa7,0x89, - 0x9d,0x80,0xd1,0x58,0xa4,0xa8,0x90,0x30,0x73,0x13,0x7a,0xc0,0xc0,0xfb,0xd3,0xdb,0x85,0x4f,0x60,0xdc, - 0x14,0x2f,0x6c,0x04,0x4f,0xea,0x0c,0x53,0x3b,0xa1,0x2d,0x73,0x42,0x19,0x8b,0x35,0x51,0x8c,0x11,0x23, - 0x85,0x8e,0x92,0x5a,0x46,0x63,0xb5,0x74,0x5b,0x91,0xba,0x84,0x03,0x05,0x6b,0x34,0xe5,0x2d,0xa5,0x9b, - 0x62,0x0e,0x94,0x6f,0x52,0xc8,0x37,0xd5,0xd1,0x12,0x47,0x7d,0xc2,0x78,0x99,0xb3,0x6f,0x08,0xa5,0x6e, - 0x1b,0xb0,0x2a,0xd3,0x96,0x4d,0xa1,0xa0,0x8d,0x13,0xea,0xdd,0x6b,0x4a,0xa6,0x9e,0xb3,0x88,0x10,0xf4, - 0x6d,0x5a,0x54,0xe8,0x95,0x01,0x7e,0x83,0x78,0x8a,0x27,0x14,0x27,0xe0,0x0d,0xbd,0x6a,0x4a,0xa8,0x7e, - 0xac,0xb0,0xa0,0x25,0x92,0x4a,0x35,0xb5,0xb3,0xb0,0xa6,0xee,0x2f,0xac,0x9e,0x3d,0x7d,0x7f,0x79,0xf9, - 0xa4,0x92,0xf5,0x7a,0x5d,0x45,0x3f,0x61,0x59,0xce,0xe3,0xc5,0xc2,0xf5,0xae,0xa1,0x4d,0x54,0xe9,0x37, - 0x39,0x93,0xb3,0x78,0x72,0xee,0xf8,0xd7,0x3a,0x8a,0x4f,0x70,0xf7,0x21,0xb1,0xfa,0xbd,0xc9,0x9c,0x28, - 0x8f,0x50,0x7d,0xed,0x05,0xea,0xf5,0xba,0xc7,0x09,0xc4,0x77,0x28,0x17,0xe9,0x6b,0xa7,0xf7,0x4f,0xda, - 0xaa,0xb8,0xa6,0x0d,0x9d,0x33,0x3a,0x7f,0xe7,0x31,0x21,0x20,0x90,0xf2,0xf4,0x61,0x32,0x4f,0x26,0xe7, - 0x3a,0xf9,0x29,0x5e,0x9c,0x1e,0x9d,0xc2,0x6c,0x27,0x1d,0x3a,0x7b,0xce,0xa3,0x5a,0x4b,0x59,0x5a,0xe6, - 0xd9,0xbc,0x9e,0xc8,0x61,0x76,0x28,0x69,0x97,0xd2,0xf4,0x5f,0xeb,0xf3,0x3c,0x3a,0x89,0xa9,0xc4,0xf5, - 0x75,0x8f,0x49,0xfa,0xde,0x7a,0x6d,0xe7,0xbc,0x6b,0xbc,0x98,0xf2,0xd1,0xab,0xfc,0x93,0x8a,0xeb,0x40, - 0xf1,0x26,0xf8,0x24,0x23,0xa4,0x12,0xa5,0xc6,0xab,0x29,0xa2,0x0e,0xf8,0x4a,0x6f,0x2b,0xb8,0xb6,0xfa, - 0xdd,0x72,0x1c,0xcb,0xb5,0x84,0x5b,0xd5,0xb3,0x68,0xda,0xde,0x21,0xe4,0x41,0x73,0x9a,0xa4,0x0b,0x5c, - 0x33,0x55,0x5f,0xe1,0xbf,0xcc,0x9e,0x9c,0x5a,0xe8,0xad,0xfb,0xf7,0xe0,0xb1,0x88,0x66,0x11,0x8e,0xc9, - 0xb5,0x33,0x2d,0xab,0x71,0x68,0x3e,0x22,0xca,0x21,0x68,0x46,0x6d,0x76,0xa8,0xb4,0x1f,0x1b,0x6b,0x49, - 0xd8,0x3e,0xc9,0x36,0xae,0xa5,0x7c,0xdd,0xbc,0x96,0x61,0xd8,0x4b,0xa6,0xff,0x9f,0x5d,0x51,0x89,0x5c, - 0x33,0xe5,0xdf,0xcf,0x5a,0x44,0x7e,0x4c,0xa6,0xb7,0x2d,0xe0,0x5a,0x69,0xde,0xc5,0xac,0xbf,0xaf,0x22, - 0x47,0x54,0x2e,0x98,0xa2,0xcb,0x84,0x48,0xd7,0x2c,0x1f,0xcc,0xe9,0xd8,0x5d,0x46,0xa7,0x71,0xd3,0x1f, - 0x92,0xc3,0x84,0xa2,0xf6,0xae,0x64,0xbc,0x51,0x78,0x43,0x55,0x9d,0x7b,0x1d,0x13,0x99,0xf7,0x1f,0xb4, - 0xf3,0x89,0x68,0xa6,0xaa,0x83,0xd8,0x67,0x6f,0x45,0xd7,0x29,0xa1,0x81,0x59,0xa2,0xd0,0x0f,0x8f,0x52, - 0x0b,0x82,0xb7,0xf6,0xfc,0x42,0x84,0xab,0x5b,0xfb,0xea,0x49,0x10,0x1b,0xbd,0xaa,0x3c,0x2f,0x08,0x53, - 0x4f,0xd0,0xaf,0xc0,0x59,0x69,0x8c,0xf9,0x26,0xcf,0x4e,0x99,0x40,0xa1,0x6c,0x72,0x6c,0x1e,0x44,0x27, - 0x88,0xda,0x23,0x02,0x43,0xad,0x0e,0x78,0x5d,0x89,0xb6,0x55,0x65,0x2c,0xb0,0xd5,0x9f,0xed,0xc4,0x75, - 0x5d,0x8c,0xbb,0x08,0xae,0x63,0x25,0x9e,0xa0,0x26,0x12,0x62,0x55,0xf6,0x06,0xfc,0xaf,0x92,0xd7,0xd6, - 0x72,0x28,0x99,0xe6,0x5e,0x3d,0xeb,0x5a,0xa1,0x5e,0x6a,0xc3,0x60,0x5f,0xc4,0x4d,0xac,0x24,0x8e,0x10, - 0x9b,0xd8,0xf5,0x94,0x75,0x89,0x8a,0xd8,0x71,0xea,0xec,0xf0,0x46,0x27,0x82,0x84,0x5a,0x99,0x78,0x93, - 0x6c,0x67,0x43,0x7d,0xd3,0x78,0x4e,0xdc,0x49,0xab,0xea,0xba,0xd8,0xc1,0xb0,0x2c,0x9c,0xcf,0x16,0x27, - 0x60,0xc9,0x4a,0x33,0x16,0xe6,0xf4,0x38,0x8f,0xe1,0xf3,0xa4,0x11,0xf0,0x77,0x5b,0x3c,0x1f,0xfc,0x6e, - 0xf1,0x4b,0xfc,0xae,0x99,0x24,0x81,0x75,0xcd,0xe0,0x54,0x6c,0x84,0x98,0x07,0x5b,0xec,0xc3,0x97,0x3e, - 0xa1,0x03,0x05,0x3c,0x04,0x2e,0xd2,0x24,0x1d,0x1d,0x44,0x03,0xc5,0x53,0xa2,0xd4,0xe5,0x4b,0x3c,0x05, - 0x15,0x2e,0x7d,0x5e,0x28,0x4a,0x5b,0xb2,0x5e,0x5d,0x80,0x66,0x36,0xcf,0x44,0x0b,0x4b,0xd3,0x16,0xb5, - 0xab,0x3f,0x56,0x04,0x2d,0xa7,0xd8,0x64,0x2b,0x2d,0xbf,0x96,0x2e,0x63,0x74,0xfa,0x99,0xfd,0x7b,0x04, - 0x98,0x18,0x7c,0x80,0xcb,0x48,0x73,0xd8,0x82,0x7d,0x52,0x42,0x50,0xfe,0x92,0xc7,0xb8,0x05,0xbf,0x8c, - 0x75,0x02,0x4d,0x3b,0xfb,0xb4,0x6c,0x05,0x8d,0x56,0xce,0xf7,0xca,0x81,0xbd,0x7b,0x50,0x4a,0x85,0xb8, - 0x32,0x51,0xe0,0x18,0x93,0xc0,0xe9,0xb3,0xeb,0xf0,0xa3,0xa3,0xdd,0xf3,0x29,0xdd,0x5b,0xdd,0x17,0x78, - 0xcd,0x38,0xd3,0x8e,0x31,0xf6,0x25,0x34,0x79,0x39,0x30,0xdb,0xc7,0x84,0x13,0xcd,0xcb,0x9f,0x1a,0x3b, - 0x0f,0xc6,0xb4,0x83,0x26,0x6d,0xc3,0x89,0xea,0x7e,0x82,0x27,0x81,0xfd,0x82,0xc1,0xe6,0x01,0x91,0x41, - 0xad,0xbd,0x2c,0x7d,0xde,0xda,0x1f,0x36,0x54,0xef,0xd9,0xc0,0x78,0x6f,0x98,0x3d,0xdc,0x7f,0xf0,0x80, - 0x7e,0xfa,0xe1,0xfe,0x97,0x9e,0xf2,0xfa,0x9a,0x89,0xdb,0x8f,0x2c,0xdc,0xb9,0x87,0x4f,0x0f,0xc3,0x7b, - 0x26,0x47,0x62,0x72,0x94,0x83,0x6a,0x66,0xc3,0x9c,0xda,0xac,0x4d,0x6d,0x98,0x50,0x8a,0x45,0x1e,0xbb, - 0xde,0xa0,0x3c,0x8b,0x53,0xdb,0x7b,0x97,0x7c,0xaf,0xa8,0xc3,0x8d,0x59,0x84,0x0a,0xdc,0xf8,0xd9,0x26, - 0x92,0x36,0x66,0xaa,0x93,0x42,0x9b,0x9b,0xc2,0x8c,0x75,0x7e,0x2d,0xca,0x6c,0xd1,0xb9,0x30,0x0a,0x8b, - 0xd1,0x0c,0xaf,0x3d,0xeb,0x5f,0x75,0x80,0x14,0x67,0xd9,0xd5,0x2b,0x1b,0x05,0x77,0x86,0x92,0x02,0xb0, - 0xa5,0x35,0x60,0x0b,0xaf,0x15,0x8e,0x27,0x44,0x2e,0xfc,0x46,0xb9,0x56,0x71,0xeb,0xd3,0x36,0x54,0x6e, - 0x6f,0x4f,0x88,0x12,0xc9,0xf1,0x4c,0x54,0xac,0xdb,0x91,0x03,0x81,0x44,0xdb,0xc0,0x5c,0xc4,0xa5,0x2e, - 0x63,0x8d,0xb7,0xd1,0x13,0x41,0x07,0x1b,0xb6,0xc2,0xda,0xff,0x32,0xbe,0x0f,0xfa,0x24,0x99,0xc6,0xdd, - 0xe3,0x54,0xa7,0x65,0x47,0x95,0x3c,0x9a,0xd6,0x47,0x35,0x20,0xb7,0x36,0xa2,0xee,0x5c,0xca,0x40,0xa9, - 0xbb,0x67,0x86,0x68,0x22,0xfc,0xc1,0xb7,0xce,0x0d,0xa7,0xf0,0x9a,0x29,0x9c,0x67,0x88,0xa2,0xa5,0xcc, - 0xdb,0x1c,0x87,0x03,0x91,0x13,0x4a,0x22,0xa2,0xa8,0x88,0x47,0xce,0xf7,0x07,0x07,0x6f,0x7a,0xfa,0xb5, - 0x87,0xb0,0x8b,0x3d,0xa7,0x5f,0x65,0x18,0xa8,0xc3,0x07,0x29,0xcc,0x95,0x8e,0xa0,0x2c,0xaa,0xbf,0x3a, - 0x81,0x09,0x2c,0x21,0x3d,0x6d,0x42,0x03,0xbc,0xc6,0xbb,0xa5,0xd7,0x77,0x8e,0xd2,0xa3,0xd4,0xe9,0xe7, - 0x3e,0x07,0x1d,0xb0,0x19,0xcb,0x1b,0xcd,0x22,0xa2,0x0f,0x49,0xc6,0x9e,0xd4,0x5c,0x67,0x37,0x5a,0x24, - 0xbb,0xea,0x70,0x75,0x9a,0x20,0xdc,0x15,0x6c,0xb1,0x54,0x0e,0xe1,0xa9,0x0b,0xda,0xbe,0x40,0x92,0x08, - 0x7e,0x07,0x2a,0x04,0xc6,0xa0,0x3e,0x81,0x03,0x50,0x6a,0x70,0x4f,0xc7,0x00,0x69,0x6f,0x70,0xc7,0x53, - 0xdd,0xb6,0xd8,0xbd,0xcf,0xea,0x79,0x75,0xfc,0x7d,0x6e,0xe7,0xab,0x92,0x7f,0xa5,0xff,0x96,0x7e,0xa7, - 0x1e,0x82,0x62,0x3b,0x3f,0xab,0xfb,0x4a,0xab,0xe4,0x33,0xbb,0x2e,0xa5,0xfe,0x4a,0xb7,0x95,0x2e,0x9b, - 0xee,0x72,0x8d,0x53,0xfc,0xac,0x8e,0x6b,0x22,0x64,0x97,0x95,0xbd,0x3b,0xfa,0x0f,0x27,0x56,0xdd,0x43, - 0xd0,0xc8,0xcb,0x90,0x43,0x92,0x3c,0x50,0xaf,0xab,0x55,0x9b,0x04,0x52,0x39,0xea,0xa9,0xab,0xd5,0x5e, - 0x8d,0x16,0x6a,0x7b,0xe9,0x32,0xc5,0x24,0x93,0x67,0x47,0xbc,0x1e,0xe6,0x0f,0x1b,0x9f,0x4d,0xd8,0x6b, - 0x3b,0x42,0x79,0x2d,0xc7,0x61,0x3e,0x26,0x6c,0x6b,0xf2,0x8b,0x7f,0xf8,0x13,0xd6,0xa0,0x48,0x41,0x8b, - 0x24,0x83,0xea,0xc5,0xea,0x1d,0x02,0xcb,0xd2,0x37,0xeb,0x0d,0x1f,0xf5,0xe8,0x93,0xda,0xc0,0xcd,0xe9, - 0x58,0x2f,0xf0,0x68,0x6f,0xb4,0x87,0x14,0x35,0x6c,0xfb,0xd0,0x6c,0x65,0x34,0xd9,0x88,0xb6,0xb9,0x90, - 0x0b,0x56,0x77,0x7f,0x3b,0xa1,0xa1,0x7c,0x2c,0x5e,0xcf,0x7e,0x8d,0xe3,0x73,0xef,0x11,0xf5,0x4d,0xdd, - 0xb2,0xba,0xf7,0x5a,0x9f,0xae,0xcc,0x55,0xab,0xfb,0xa0,0x5d,0x4e,0x5f,0xb7,0xba,0x5f,0xb7,0xbe,0xcd, - 0xe4,0xc6,0xd5,0xdd,0xff,0xaa,0xf5,0xa9,0xd0,0xf7,0xae,0xee,0xfd,0x76,0x83,0x85,0x5c,0xbe,0xba,0x5f, - 0xb5,0x9a,0x83,0xd7,0xfe,0x6a,0xc2,0x31,0xae,0x10,0x06,0x95,0x9f,0x0e,0xf0,0x36,0x84,0x1b,0xb0,0x6f, - 0x48,0x38,0xfe,0x1a,0xe0,0x0b,0x51,0xff,0xb9,0x5b,0xd7,0x8c,0x45,0x8a,0xff,0x95,0x3d,0x5c,0xef,0x7d, - 0x85,0x7e,0x98,0x8c,0xfd,0x3c,0xec,0xc3,0xe6,0x32,0xdd,0x9b,0xb7,0x6b,0x27,0x79,0xb6,0x11,0xdd,0x16, - 0x42,0x43,0x80,0xcf,0xe2,0xc8,0x06,0xec,0x65,0x6b,0x6f,0x18,0xe9,0x4d,0xa5,0xf6,0x52,0xa4,0xf7,0x52, - 0xa1,0x46,0x0a,0xe3,0x78,0x76,0xf0,0x9d,0x8f,0x88,0x8a,0x08,0x8a,0x2d,0x7a,0xe2,0xe0,0x6a,0x08,0x65, - 0x9d,0xd5,0x22,0x37,0x14,0x88,0x4b,0xdd,0x0f,0x8b,0x35,0x0e,0xcb,0x98,0xe3,0x8b,0xc7,0x83,0x1a,0xf1, - 0x2e,0xa1,0x4f,0x67,0xf3,0x0c,0x81,0x24,0x76,0x75,0x4c,0x11,0xcf,0xca,0xc6,0xd0,0xb2,0x6e,0x49,0x14, - 0xbb,0x67,0x29,0x56,0x04,0x30,0x07,0x65,0x91,0x47,0x8c,0x52,0x66,0x6d,0x41,0xbc,0x55,0xfb,0xcc,0xf1, - 0x2b,0x9e,0xcb,0x3e,0x51,0x06,0x3a,0xb5,0xc6,0x84,0xd5,0x72,0x58,0x1f,0x0c,0x6b,0x56,0xcb,0xa0,0x12, - 0x85,0x59,0xab,0x7f,0xa1,0x94,0x8a,0x73,0xab,0x7d,0xd2,0xa9,0xc2,0xca,0xd5,0x3e,0x21,0x05,0x9c,0x5d, - 0x2d,0x31,0x59,0xd8,0x4c,0x5e,0xbd,0x15,0x93,0x6e,0xf8,0xbe,0xda,0x77,0x95,0xb8,0x6e,0x82,0x0f,0xe2, - 0x5f,0x7d,0x22,0x34,0x37,0x96,0x85,0x40,0xb9,0x45,0x42,0x57,0x0b,0x41,0x84,0xb2,0x5e,0xc9,0xee,0x93, - 0xd6,0xf0,0x5e,0x66,0x15,0xcb,0x9b,0x56,0x51,0x2b,0x74,0x96,0xea,0x38,0x6d,0xb6,0x9d,0x32,0xfd,0xde, - 0x45,0x77,0x39,0x35,0x75,0x36,0x6c,0x40,0x3d,0xde,0xb2,0x73,0xbc,0x65,0x6d,0xbc,0xe6,0x08,0xee,0x62, - 0x17,0x6a,0x63,0xed,0x64,0xeb,0x36,0xc2,0xae,0xe2,0x28,0x88,0xcf,0x3b,0x8d,0x69,0x4b,0x9a,0x04,0x43, - 0xb0,0x6b,0xae,0xdc,0x6e,0x52,0x85,0x0a,0xa9,0x97,0xee,0xf7,0xfd,0x7a,0x82,0x8a,0x1c,0xb9,0x1f,0x98, - 0x64,0xd3,0x9d,0xd0,0xd9,0x75,0xac,0xa8,0x20,0xbd,0x7b,0x9d,0x79,0x76,0x6a,0x79,0xee,0x77,0xe6,0x39, - 0x3a,0xaa,0x65,0x7a,0xd0,0x99,0x69,0xe5,0xf8,0xcd,0x91,0xae,0xd7,0xfe,0xbd,0x2f,0xf7,0x78,0xba,0xda, - 0xbc,0x96,0x3d,0x5b,0xcc,0x17,0x98,0x49,0x50,0x4e,0x17,0xaa,0x29,0xa2,0x1a,0x08,0x33,0x6a,0x56,0x19, - 0xf7,0x8b,0x42,0xa1,0x77,0xf9,0x73,0xae,0xc4,0x4e,0x7a,0x9b,0xea,0x43,0x5c,0x3b,0x0d,0xb4,0xf5,0xe9, - 0x1c,0x13,0x82,0x73,0x43,0x59,0xe1,0x05,0xd4,0x2c,0xab,0xf8,0x98,0xf7,0x74,0x1c,0x4c,0xbd,0xe5,0x08, - 0xd2,0x86,0x6a,0x19,0xd4,0x04,0xf1,0x8f,0x09,0xc2,0x29,0x4e,0x2d,0xf4,0x0c,0xd7,0x0b,0xa3,0x0f,0x12, - 0x75,0x33,0xd0,0x32,0xe7,0xae,0x7e,0xae,0xbb,0xa7,0xe0,0x20,0xfe,0x50,0xfe,0xb5,0x69,0xe8,0xf1,0x76, - 0x69,0x67,0x83,0xf2,0x83,0x16,0x43,0x4c,0x1d,0xef,0x33,0xe7,0xe7,0x13,0xea,0x86,0xa6,0x25,0xd5,0xab, - 0xe6,0xeb,0x13,0x0a,0x88,0x22,0xa6,0x2e,0x72,0xef,0x53,0x8a,0xd4,0xf4,0x33,0x75,0x49,0x3d,0xf3,0xbd, - 0x4d,0x63,0x49,0x16,0x1a,0xbe,0x3f,0xa1,0x89,0x9a,0x92,0xa7,0x6e,0xe2,0xcb,0xcf,0x28,0x99,0x88,0xd2, - 0xa7,0x2e,0xda,0x5c,0xfe,0xdb,0xd6,0xa7,0x02,0x0d,0x84,0xa7,0x6a,0x5d,0x94,0xdd,0x7c,0x8c,0x8e,0x2c, - 0x21,0x41,0xdc,0x92,0x44,0x31,0xfb,0x1f,0x6c,0x66,0xe7,0x76,0x95,0x5c,0xf8,0x33,0xe9,0xab,0x6a,0x2c, - 0x9f,0x4b,0x5a,0x35,0x3b,0xd8,0x85,0xa1,0x6f,0x1f,0x11,0xa8,0x8d,0xc6,0x05,0x61,0xf7,0x31,0xc5,0x9b, - 0x48,0xcd,0x94,0x8d,0xfa,0xf7,0x58,0x6a,0x67,0xcb,0xcb,0x43,0x15,0xae,0x9d,0x2f,0x00,0xe0,0xf8,0x04, - 0xca,0x87,0x43,0xf6,0x3e,0x00,0x5f,0x46,0xce,0x2c,0x81,0x9d,0xb7,0x91,0x2c,0xd2,0x64,0x7e,0x2b,0x91, - 0xd2,0x9e,0x7c,0x7c,0xc1,0x9f,0xa5,0x1f,0xcf,0x91,0x8d,0x03,0xd2,0xc5,0x05,0x5c,0x9e,0x28,0xc1,0x05, - 0x8b,0xb3,0x69,0x40,0xc1,0xfd,0xaf,0xe2,0x07,0x7e,0x96,0xfe,0x52,0x97,0xd5,0xd7,0xbc,0x63,0x37,0x3b, - 0xc6,0xe4,0x57,0x0e,0x7b,0x72,0x77,0x7f,0x6f,0xef,0x0b,0xc1,0xcc,0xf1,0x74,0x17,0xe1,0x68,0xcb,0x08, - 0xd1,0xfe,0x86,0xad,0x63,0xb7,0xba,0x12,0x85,0x9f,0xd6,0xff,0xf3,0x67,0x6e,0x7d,0x31,0xba,0x8f,0xdd, - 0xc6,0xb0,0x2c,0x59,0x28,0x9e,0x6f,0x9d,0x59,0x9a,0x55,0x2a,0x47,0x30,0x8c,0xd5,0x5f,0x8b,0x3c,0x59, - 0xc9,0x55,0x6f,0x3b,0xad,0x11,0x91,0xb3,0x43,0x1c,0x0b,0x56,0x50,0x42,0x98,0x34,0x24,0xb2,0xc2,0xfe, - 0x37,0xc5,0xb4,0xdd,0xd2,0x38,0x0d,0xa1,0x4a,0x3a,0x49,0xc7,0xe4,0xde,0x9e,0xe7,0xad,0x6b,0x57,0xd1, - 0xdd,0xdd,0xe3,0x40,0x10,0x56,0x2b,0x80,0xca,0x8e,0x66,0x71,0x8d,0xd1,0x2d,0x4c,0xde,0xb3,0x48,0xf0, - 0x76,0x48,0x39,0x8e,0x26,0xc7,0xb3,0xa4,0xd9,0x84,0x94,0xd8,0x84,0x7a,0xd8,0xb6,0x06,0xa5,0xbf,0xf6, - 0x86,0x9a,0x0b,0x28,0xc5,0x49,0xb6,0x66,0xe3,0x51,0xf9,0xc6,0x3a,0xf3,0x7e,0xa8,0x52,0x0f,0xd3,0xb1, - 0xdc,0xa8,0x0d,0x6f,0xe0,0x21,0xf2,0xdd,0x7a,0x1d,0xde,0x5a,0xc4,0x00,0x2a,0x78,0xd4,0xc6,0x66,0x94, - 0x78,0xbb,0xd9,0x14,0xfa,0xbc,0x41,0xd6,0xde,0xa6,0x46,0xc5,0x73,0xc1,0x75,0x43,0xf0,0xb1,0x1f,0xdf, - 0x97,0x7b,0x46,0x44,0x55,0xff,0x1b,0x94,0xb6,0xb5,0xe6,0x37,0x51,0xd9,0x6a,0xb5,0x21,0x93,0x6e,0x2a, - 0x20,0x6c,0x06,0x64,0xc9,0x20,0x90,0xd9,0xbc,0x39,0xab,0x28,0x6f,0xc6,0xf1,0x50,0xab,0x29,0x82,0xdd, - 0x5d,0xdc,0xce,0x28,0x4d,0x1a,0x1a,0x7c,0xc1,0xda,0x34,0x48,0xe3,0xa9,0x38,0x8d,0x33,0x88,0x4b,0x77, - 0xdf,0x17,0xcc,0x60,0x89,0x77,0xe4,0xe0,0x5a,0xeb,0xf3,0x55,0x4d,0xfa,0xe7,0x31,0x78,0x12,0x21,0xdf, - 0x07,0xd5,0x8d,0xcf,0xba,0x35,0x53,0x9b,0x59,0x5a,0xec,0x5c,0x3a,0x0f,0x0b,0x38,0x97,0xaf,0x25,0x98, - 0x00,0x95,0x46,0xd6,0x5e,0xfb,0x0c,0xd7,0x59,0xd4,0xd1,0x8b,0xb8,0xcc,0x3f,0x9a,0x0e,0x0d,0x4d,0x67, - 0xe6,0x51,0x09,0x7f,0x5a,0x51,0xe9,0x57,0x49,0x84,0x4d,0x52,0xfc,0xfd,0x64,0xf9,0x45,0x7d,0x05,0x36, - 0xac,0x5b,0x7b,0xc6,0x2d,0x46,0xe9,0x13,0xe4,0x7b,0xec,0xea,0xda,0x9c,0x43,0x16,0xdf,0x3b,0xac,0xb6, - 0xad,0x91,0xd4,0x35,0x64,0x31,0x9a,0xda,0x6b,0x8a,0xeb,0x9a,0xd9,0xea,0x9f,0xeb,0x77,0xa3,0x7a,0x53, - 0x35,0x4b,0xd4,0x65,0x72,0xa9,0x96,0x23,0xe4,0xe1,0xa6,0xac,0xb4,0xed,0x86,0xe5,0x0d,0xc2,0xb9,0xdc, - 0x12,0xce,0xd5,0x24,0x73,0xb9,0x2d,0x3f,0x33,0x62,0xb9,0xbc,0x1a,0x1c,0x86,0x94,0x37,0x84,0x6c,0x79, - 0xed,0xe2,0x8a,0x3e,0x1b,0xc1,0x9d,0x5f,0x09,0xb0,0x02,0x37,0x1f,0x88,0x04,0x6e,0xb4,0x1f,0xec,0x79, - 0x2b,0x84,0xfd,0x14,0xb1,0xdb,0xe8,0x9e,0x7a,0x37,0xb2,0xb6,0xd1,0x03,0x9d,0x43,0x09,0xd8,0x46,0x5f, - 0xab,0x04,0x91,0xaa,0x8d,0xf6,0xbf,0x52,0xef,0x5a,0x94,0x36,0xba,0xaf,0x2b,0x11,0xf9,0xd9,0xe8,0x2b, - 0x54,0x41,0x5b,0xb7,0x85,0x5c,0xea,0xc2,0x5a,0xbf,0xfc,0xbb,0x2c,0x7b,0x43,0xa8,0x76,0x33,0xd3,0x4e, - 0x27,0x22,0x6d,0x5d,0xfb,0x8a,0xbb,0x79,0xc3,0xb3,0x61,0xe9,0x5b,0x2b,0x58,0x17,0xa8,0x56,0x12,0x54, - 0xc2,0x31,0x95,0xd8,0xf4,0xcb,0x07,0x0d,0xf1,0xa8,0x11,0x82,0x6e,0x55,0x42,0xcf,0x2d,0x5b,0xc8,0xb9, - 0x65,0x09,0x35,0xb7,0x8c,0x10,0x73,0xcb,0x92,0x59,0x6e,0x19,0x11,0xa5,0xc4,0xcd,0x91,0x88,0xc7,0x9d, - 0x43,0x8a,0x6f,0x1e,0x93,0x0a,0x9c,0x14,0x23,0x70,0x52,0xa7,0xb6,0xd5,0xdf,0x93,0x4c,0x35,0x85,0x93, - 0x7e,0x4b,0xe0,0xf8,0x77,0x97,0xbe,0x25,0x7c,0xbc,0x5d,0x62,0x33,0xad,0x4b,0x2c,0x37,0x2f,0xbf,0xf4, - 0xf0,0x46,0x00,0xb0,0x96,0x7c,0x91,0xa4,0xc1,0x3d,0x7f,0x6a,0x8c,0x44,0xac,0x95,0xd9,0xd0,0x5e,0x6b, - 0x6d,0x9a,0x0d,0xd6,0x56,0x07,0xce,0x6d,0x13,0x4a,0x89,0x18,0xdc,0x3b,0xaf,0x5f,0x1d,0x67,0x88,0x80, - 0xe3,0x12,0x73,0x23,0xed,0x87,0x4e,0xdf,0xd1,0x64,0xb5,0x45,0x55,0xc4,0xbb,0x5f,0xed,0x79,0x7e,0x22, - 0x49,0xd1,0x49,0x41,0xfd,0xf8,0x1f,0x5f,0xed,0x69,0x99,0x2c,0x02,0x48,0xf6,0x9d,0xc0,0xf1,0x93,0x87, - 0xfb,0xba,0x9a,0x3d,0xc7,0xf3,0x53,0x44,0xa3,0x5d,0xfb,0x1c,0xf5,0x89,0x0e,0x3f,0xad,0xbf,0xa0,0x14, - 0x8b,0xda,0xb3,0x68,0x53,0x9d,0x20,0xf6,0xa0,0x54,0xce,0xb1,0xb0,0xeb,0xea,0x0e,0x9f,0x5f,0xbe,0xf8, - 0xbc,0x76,0x55,0x84,0x2c,0xab,0x7d,0xa3,0xea,0x63,0x2f,0x44,0x97,0x9a,0x43,0xe8,0xfc,0x87,0xd3,0x8f, - 0xa1,0xf1,0xb4,0xfe,0xbf,0x01,0x67,0x4f,0x1e,0x0e,0xea,0x0d,0x02,0x00}; + 0x24,0x1c,0x6f,0x19,0x18,0xb6,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0x7e,0x26,0x4e,0xfc,0x8a,0x2d, + 0x3b,0xc9,0x28,0x1a,0x2d,0x88,0x04,0x25,0xc4,0x24,0xc0,0x00,0xa0,0x64,0x45,0xe4,0xf9,0xed,0xb7,0xbe, + 0xaa,0x7e,0x01,0x84,0x9c,0x64,0xaf,0xbd,0xee,0xf2,0xb2,0x08,0x74,0x37,0xfa,0x59,0x5d,0x5d,0xef,0xde, + 0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x09,0xca,0xb3,0xdf,0xb2,0x49,0x13,0x24,0x49, + 0x73,0xbd,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0xbd,0xb7,0xb7,0x95,0xb3,0x28,0xa7,0xab,0x79, + 0x36,0x96,0x9f,0xa1,0x2e,0x97,0x34,0x61,0x14,0x07,0xa6,0x4e,0x57,0x78,0x9a,0xcd,0xf2,0x22,0xdb,0xdb, + 0x93,0xdf,0x61,0xba,0x98,0x8e,0xe5,0x31,0x3c,0x3e,0xa1,0x76,0xe3,0xdb,0xda,0x1d,0xeb,0xdf,0x61,0xfa, + 0x29,0x2f,0xa5,0xf6,0xcc,0x3d,0x6f,0xc2,0xe6,0x22,0xaf,0x95,0x1d,0x42,0x74,0x53,0x65,0xcd,0xaa,0x2a, + 0x76,0xdc,0xa0,0xa2,0x1b,0xf3,0xbc,0xd3,0x84,0x55,0x74,0x93,0xcf,0xc2,0xe2,0xb8,0x3a,0x89,0x74,0x41, + 0x3c,0x9b,0xbe,0x8f,0x2e,0xd3,0x6a,0x27,0x4f,0x90,0x94,0xdc,0xe8,0xb4,0xf8,0x66,0xa3,0xf2,0x69,0x5c, + 0xa9,0x79,0x99,0x4e,0xb3,0x69,0xbc,0x7b,0xb8,0x19,0xe9,0x4f,0x33,0x7c,0x3a,0x49,0xe7,0xf3,0x30,0x37, + 0x35,0xa8,0x5c,0xb9,0xe7,0x26,0xa2,0x17,0xf9,0x2c,0xd9,0x3d,0x70,0x19,0x1b,0x34,0x53,0x24,0x37,0xb6, + 0xa2,0x66,0xb8,0x48,0x68,0xf2,0x87,0x93,0xa4,0xa0,0xbf,0xcb,0x24,0x08,0x54,0x13,0x1e,0xd0,0xe0,0x8e, + 0xfd,0xb5,0x51,0x45,0x74,0xe3,0xa6,0xb9,0x08,0x0f,0xa3,0x8d,0xea,0xe6,0x07,0xab,0x3a,0xdb,0xa9,0x9b, + 0x2a,0xa7,0x99,0x1c,0xd9,0x71,0x57,0x98,0x05,0x34,0xda,0x24,0x45,0x76,0xb5,0x93,0xd2,0xab,0x2a,0x92, + 0x32,0x4c,0x87,0xcb,0xaa,0x6c,0x4a,0x4c,0xf8,0xb0,0xca,0x7e,0x5f,0x65,0x75,0x43,0x9d,0x36,0xbd,0x42, + 0x7f,0x9b,0xac,0x98,0x86,0x85,0xf2,0x0a,0xca,0xa8,0x6c,0x0e,0xbd,0x15,0x1b,0x3d,0x6d,0xe1,0xfd,0x48, + 0x95,0xf4,0xf3,0x45,0xa4,0x52,0xfa,0xf9,0x2a,0x52,0xe8,0xe6,0x3f,0x23,0x35,0x49,0xaa,0xb0,0x8e,0x46, + 0x93,0xe1,0x43,0x5e,0xb7,0x54,0x4d,0x86,0x93,0x2a,0x4b,0x9b,0x2c,0xf1,0x97,0x49,0x37,0x5b,0xd1,0x6c, + 0x2e,0xb2,0xea,0x3c,0x0b,0x6b,0x95,0x45,0x34,0xc6,0xc9,0xf0,0x71,0x5a,0x4c,0xb2,0x39,0x1a,0xa0,0xaa, + 0xcd,0xeb,0x51,0xf9,0x31,0x2b,0x90,0xf6,0x25,0xd2,0xf2,0xda,0x15,0x3a,0x40,0x02,0x2d,0x4b,0x5f,0xed, + 0x6f,0xaa,0x72,0x91,0xd7,0x19,0xb2,0x29,0x15,0x95,0xd7,0x4b,0xea,0xca,0x14,0xdf,0x51,0x87,0xdd,0xfc, + 0x4e,0xdc,0xf3,0x90,0x00,0x35,0x5d,0xcd,0x9b,0x64,0xf2,0xb7,0x26,0x5c,0x5a,0x0c,0x8e,0x05,0xb0,0x77, + 0x1e,0x56,0x55,0x7a,0x7d,0x42,0xf0,0x9d,0xcc,0x05,0x68,0xa8,0x79,0xfb,0x41,0xee,0x75,0xb1,0x58,0xcd, + 0xe7,0xbb,0x49,0x92,0xf5,0xec,0xb8,0xcc,0x7d,0x51,0xf6,0x34,0xf1,0x4c,0x67,0xde,0xd6,0x4a,0x2a,0x5b, + 0x1c,0x3b,0xc0,0xb6,0x71,0x59,0xe6,0xd3,0x9d,0x03,0x3c,0x47,0x94,0x6e,0x5a,0xdc,0xb5,0x2d,0xee,0xed, + 0x85,0x59,0x72,0x9c,0x9d,0x44,0x0a,0x83,0x8a,0x66,0x65,0x15,0x0a,0xf8,0x12,0x40,0x27,0xd9,0x70,0x9e, + 0x15,0xe7,0xcd,0xc5,0xa8,0x78,0x90,0x8f,0x8a,0xc1,0x20,0x6a,0xa4,0x51,0x54,0xaf,0xb2,0xe3,0xe2,0x44, + 0x15,0xb4,0x86,0xa3,0x6c,0x4e,0x93,0x64,0xbe,0x2c,0x77,0x72,0xda,0x3a,0xd1,0x6b,0x6e,0xc8,0x03,0xc0, + 0x8b,0xb4,0x7e,0x7d,0x55,0xd0,0xfa,0x2c,0xb3,0xaa,0xb9,0xd6,0x9d,0x57,0x65,0xb4,0xb7,0xd7,0xae,0xb4, + 0x3c,0x51,0x25,0x55,0xca,0x40,0x57,0x0b,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0xe6,0xc9,0x56,0xa5,0x4d,0xf9, + 0x8e,0xd6,0xa6,0x38,0x1f,0xb9,0x85,0xbd,0xc9,0x6b,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xd1,0x6a,0x36,0xcb, + 0xaa,0x78,0x1b,0x5a,0xda,0x6b,0x27,0xc5,0x3a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xac,0xac,0x16, + 0x4f,0xd2,0x26,0xed,0xab,0x6b,0x55,0x08,0xbe,0x9b,0xba,0xc9,0x35,0xc5,0xf7,0xf6,0x32,0x9a,0x94,0xba, + 0x01,0x04,0x7b,0xc9,0x9b,0x76,0x07,0x3f,0xe4,0xd9,0xd5,0x5f,0xac,0xd8,0xfb,0x6a,0x6f,0xcf,0x7b,0xa1, + 0x6d,0x82,0x5a,0xc6,0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x9d,0x0d,0xcf,0xf4,0x57,0xe6,0xc9,0xef,0x98,0xf7, + 0x19,0xfa,0x26,0x53,0xdb,0xd7,0xa5,0x9a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x56,0x8b,0xb3,0xfe,0x69,0x2e, + 0x38,0xa7,0x53,0x5c,0xd6,0x32,0x26,0x84,0x5a,0xbf,0x37,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85, + 0xbf,0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0x67,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1, + 0xe7,0xe5,0xd9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80, + 0x11,0xf6,0xf6,0x68,0x97,0x0f,0x97,0xf9,0x52,0xbe,0x7c,0xff,0xf6,0xc5,0xbb,0x2c,0xad,0x26,0x17,0x6f, + 0xd2,0x2a,0x5d,0xd4,0x7f,0x11,0x16,0x3a,0x5f,0x75,0x60,0xad,0x93,0x2b,0xcb,0x9a,0x16,0xd3,0xb4,0x9a, + 0x3e,0xaa,0xca,0xab,0x3a,0xab,0x9e,0x16,0x97,0xf1,0xd6,0xf9,0x1a,0x7a,0x2d,0xd9,0x65,0x2b,0xd2,0xcb, + 0xfc,0x3c,0x6d,0xca,0x6a,0xbd,0x0e,0xde,0x66,0xe9,0xa4,0x79,0x95,0x36,0xf9,0x65,0x46,0x5d,0x49,0x6c, + 0x16,0xf6,0xe6,0x74,0x35,0x69,0x68,0x6c,0x7d,0x9d,0xbd,0xca,0x8b,0x69,0x79,0xd5,0x9f,0x37,0x2d,0x27, + 0xab,0x45,0x56,0x34,0x84,0x84,0xcb,0xea,0x69,0x3a,0xb9,0x88,0x53,0xc5,0x07,0x85,0xed,0xde,0x4e,0x16, + 0xb6,0x4e,0xfb,0x46,0x55,0x3d,0x04,0x0d,0x8e,0xf7,0x1e,0xdc,0xda,0x8c,0xf9,0xdc,0xcf,0x98,0x3a,0x00, + 0x45,0xc2,0xaf,0xcd,0xc6,0x61,0x3c,0xa2,0x04,0x2a,0x46,0x7b,0x69,0x75,0xce,0x3d,0xa9,0x0d,0xfa,0xab, + 0x08,0xfd,0x55,0x84,0xfe,0xd2,0xd0,0x66,0x49,0x25,0xe6,0x2c,0x2d,0x36,0x4a,0x8e,0xcc,0xb8,0x7b,0x80, + 0xe8,0x02,0x29,0x75,0xd6,0x66,0x71,0xbf,0x41,0x5d,0x24,0x05,0x75,0x74,0x9b,0x96,0x6a,0xc6,0x75,0x88, + 0x8f,0xe3,0x66,0x43,0x47,0xd6,0x46,0xd1,0x6e,0xeb,0x85,0x21,0x9c,0xea,0xcb,0x79,0x3a,0xc9,0xc2,0x7b, + 0xff,0xf9,0xb5,0xfe,0xc7,0x3d,0x15,0x04,0x91,0x4b,0xa2,0x94,0x3b,0x9c,0xb4,0xd9,0xb4,0xcf,0xb5,0xce, + 0xa9,0xe6,0x50,0x67,0xbb,0x50,0x97,0xd2,0xa2,0xa9,0xb7,0x53,0x05,0x32,0x83,0xb1,0x45,0xd8,0x9d,0xab, + 0x08,0x73,0x48,0x13,0x56,0xd8,0xb9,0xa3,0x79,0xe3,0xa9,0xf6,0xa7,0xce,0x92,0x58,0xc3,0x74,0xb9,0x9c, + 0x5f,0xf3,0x68,0xb7,0xbb,0x69,0x97,0xda,0x1b,0xf4,0xee,0x6e,0x36,0x9c,0x94,0x04,0xe0,0x15,0x41,0x59, + 0x59,0xf5,0xce,0x5f,0xab,0xc4,0xd0,0x60,0x70,0xe0,0xbc,0xbe,0x74,0xec,0xdb,0xbe,0x39,0xe8,0x1c,0xd8, + 0x38,0x29,0x91,0x4a,0xc0,0xbf,0xd5,0x62,0xd8,0xd0,0xf1,0x3a,0x04,0x9d,0xf1,0x8c,0xe8,0xc1,0xe6,0xc5, + 0xd3,0xfe,0x65,0x1d,0xd6,0xf3,0x7c,0x42,0xf5,0x10,0x04,0xc8,0x63,0x78,0xa0,0x0e,0x22,0xaa,0x11,0x83, + 0x3a,0x35,0xfd,0x89,0x98,0x4c,0x6d,0x36,0x7f,0x8b,0x18,0x01,0x99,0x6c,0xe8,0x98,0x1a,0xc4,0x26,0xde, + 0xf3,0xa2,0xc9,0xaa,0x49,0xb6,0xa4,0xd1,0xd2,0xb9,0xa8,0x29,0xc0,0x98,0x49,0x44,0x55,0x65,0xf5,0x92, + 0x26,0x23,0x93,0xd7,0x8d,0xa5,0xf1,0xfe,0x29,0x34,0xde,0x7d,0xa1,0xf1,0x0e,0xff,0x5b,0x88,0xbc,0xc3, + 0x7f,0x11,0xa8,0x6f,0x53,0x93,0xad,0xd9,0xda,0x3e,0x15,0x98,0xb6,0x28,0x35,0xb5,0x77,0xb3,0xaa,0xe6, + 0xb1,0x83,0x81,0x83,0x93,0x8d,0x72,0x6f,0x87,0x27,0x51,0xa4,0xbc,0xc2,0xb9,0x6a,0x0d,0x48,0xdd,0x2c, + 0xb2,0xe6,0xa2,0x9c,0xc6,0xc1,0x79,0xd6,0x04,0x1b,0xd0,0x8d,0x43,0x49,0x21,0x12,0x45,0x1e,0x88,0x14, + 0x78,0x51,0x5e,0x65,0xd5,0xe3,0xb4,0x26,0x2c,0x21,0x53,0x98,0x1c,0xd7,0x4a,0x8e,0x0f,0x22,0x54,0x12, + 0x43,0x1a,0xd2,0xc8,0xcb,0xf9,0x65,0x46,0x5d,0x1e,0x01,0xa0,0xb7,0x66,0xca,0x0c,0x6e,0xa8,0xd1,0x50, + 0xe8,0x0f,0xb2,0x19,0xae,0x8a,0xfa,0x22,0x9f,0x35,0x84,0xb8,0x67,0xab,0xf9,0x2c,0x9f,0xcf,0xb3,0xa9, + 0x42,0xa5,0xc0,0x36,0xd9,0x34,0xa2,0x1d,0xdb,0x57,0xa3,0x4c,0xf6,0x2d,0x55,0x2e,0x57,0xf5,0xc5,0xed, + 0xf5,0x8d,0x1a,0xb3,0x95,0x22,0xda,0x78,0xc3,0xe6,0x22,0x63,0xf8,0xe1,0x4e,0x50,0x63,0xe6,0xc9,0xc7, + 0x45,0xa5,0x6d,0xe8,0x38,0x98,0x66,0xf3,0xac,0xc9,0x02,0xc5,0x53,0xa7,0x82,0x0b,0x02,0x52,0xfa,0x29, + 0x97,0x68,0xbe,0x0e,0x4e,0x54,0x0b,0xe0,0xdd,0x12,0x13,0x49,0x98,0x78,0x08,0xcb,0x61,0x32,0x1e,0x9d, + 0x9e,0xa2,0xd0,0xac,0x57,0xb1,0x5e,0x13,0xf6,0x34,0xab,0x94,0x29,0xac,0x35,0x21,0x2f,0xda,0xd3,0x51, + 0xab,0x33,0xcb,0xb2,0x46,0x27,0x96,0x2b,0xfe,0x9b,0x36,0x93,0x8b,0xbf,0xde,0x03,0x20,0xcd,0xcf,0xf5, + 0xa1,0xea,0xeb,0x83,0x9a,0x82,0x5c,0x2b,0x74,0x57,0xdc,0x36,0xaf,0xfe,0xc6,0xee,0x02,0x2a,0xda,0x2d, + 0x87,0x1e,0x9d,0x22,0x67,0x77,0x3b,0xe5,0x38,0x78,0x5c,0xd2,0x9a,0x17,0xcd,0xfe,0x11,0x75,0x3e,0x38, + 0x89,0x00,0xfd,0xdd,0xc4,0xa4,0x11,0xc2,0x36,0xf7,0x37,0x19,0xef,0xb1,0x9b,0x76,0xc9,0x38,0x00,0x62, + 0xcc,0x27,0x29,0x3a,0x71,0xef,0xd3,0xfe,0xd5,0xd5,0xd5,0x3e,0x4d,0xe3,0x62,0x9f,0x46,0x95,0x15,0x93, + 0x92,0x78,0x4e,0xda,0x07,0x93,0xe4,0x26,0x9d,0xa6,0x4b,0x82,0xb4,0x38,0xec,0x3b,0x52,0x7f,0x7e,0xf9, + 0xe2,0xbb,0xa6,0x59,0xbe,0x95,0x99,0x1a,0x63,0x7f,0xff,0x8b,0x58,0xf1,0x9e,0x92,0x34,0xeb,0x93,0xac, + 0x26,0xea,0x21,0x94,0x42,0xc4,0x04,0x12,0x6c,0x55,0x69,0x51,0xa3,0x55,0x5d,0x41,0x7c,0xdc,0x7b,0x42, + 0xe0,0x6c,0x6b,0xf7,0x1e,0x8b,0xee,0xa8,0x65,0x46,0x9a,0x48,0xf0,0xe8,0x4b,0x9b,0xd6,0x79,0x15,0x82, + 0xc9,0xbe,0x82,0x30,0x73,0x45,0x89,0xde,0xa2,0x97,0x71,0x16,0x77,0x2a,0xd3,0x04,0xee,0xd8,0xd0,0xb4, + 0x9c,0xdf,0xa1,0x7c,0x90,0x1f,0x56,0xe8,0xe9,0x9f,0x4e,0xec,0x68,0x72,0x91,0x56,0x75,0xd6,0x24,0xab, + 0x66,0xb6,0xff,0xaf,0x00,0x60,0x63,0xf8,0x0c,0xda,0x66,0x5c,0xb9,0x10,0xaf,0xfd,0x75,0xfe,0x56,0x97, + 0xc5,0x56,0x15,0xdf,0xbf,0x7b,0xfd,0x6a,0x28,0x08,0x32,0x9f,0x5d,0x83,0xd3,0x8a,0xb3,0xcd,0x89,0x3f, + 0xc3,0x1a,0x1d,0x1f,0xfb,0xbb,0x01,0x1c,0xdb,0x16,0x56,0x8d,0x9a,0xea,0xfa,0x26,0x4b,0xb8,0xc6,0x25, + 0x5a,0xc1,0x01,0x36,0xc1,0x5e,0xc2,0x27,0x1b,0x73,0xb2,0xa2,0xf6,0x7c,0x91,0x95,0xab,0x26,0x3e,0x50, + 0x9f,0xea,0x6a,0xf6,0xb8,0x2c,0x3f,0xe6,0xd9,0xab,0x74,0x91,0xc5,0xc1,0xcf,0xef,0xde,0x3e,0xdb,0x3f, + 0x7a,0xfd,0xc3,0xd3,0x57,0x01,0xe7,0x7d,0x47,0x58,0x21,0xab,0x74,0xde,0xbe,0x9f,0xbb,0x48,0x3f,0xe9, + 0xa5,0x7d,0xc1,0x48,0x28,0xde,0x3f,0x54,0x97,0xe9,0x3c,0xa7,0x7d,0x95,0x11,0x25,0xd9,0xac,0xfa,0xe8, + 0xd4,0x9d,0xec,0x9b,0xe4,0xfe,0xc1,0x01,0x9d,0xb8,0x0f,0xbe,0x38,0x38,0xd8,0x6c,0x46,0x93,0xe1,0x05, + 0xb7,0x40,0x70,0x3e,0x29,0x17,0x0b,0xa2,0x8e,0x6f,0x1e,0x4e,0x80,0x1d,0xe3,0xad,0xa9,0x53,0x3b,0x0d, + 0x91,0x52,0xf7,0x88,0x88,0xc9,0xe9,0xf9,0x1f,0xf7,0xfe,0x11,0x6c,0xfe,0x1c,0xa1,0xb5,0x91,0x88,0x6d, + 0x0d,0x28,0xe4,0xe6,0x6f,0xe3,0xa0,0xd6,0xe7,0x06,0xbb,0xd4,0x51,0x0b,0x7f,0xfc,0x99,0xa8,0x00,0x9b, + 0xbc,0xe2,0x2d,0x7e,0x3b,0x7d,0x65,0xfb,0x94,0xb9,0xba,0x04,0xcb,0x11,0x45,0xdd,0xec,0xed,0x55,0x04, + 0x76,0xef,0x97,0x4b,0x73,0xa6,0x11,0xa3,0xd1,0xb4,0x53,0x18,0xc3,0x34,0x44,0x45,0x2a,0x99,0x13,0x96, + 0x58,0x51,0x3f,0xff,0x8c,0x74,0x70,0x9d,0x53,0xd8,0xed,0x5f,0xcb,0x91,0x7f,0x68,0xce,0xfc,0x2f,0xf4, + 0x99,0xff,0xa5,0x70,0xde,0x87,0x07,0x60,0xbd,0x3f,0x47,0xcd,0xcb,0xef,0xf0,0xac,0x29,0xd3,0xd6,0xcb, + 0xf0,0x8c,0x9e,0x43,0x49,0xa0,0x3d,0x4c,0x55,0x7d,0xd5,0x3f,0x1d,0x8e,0xd4,0x22,0x62,0x44,0x9f,0xd3, + 0xa1,0x87,0xfb,0x57,0x22,0xde,0x9a,0xd1,0x69,0x0f,0x7c,0xae,0x70,0xec,0xeb,0x35,0x1a,0x55,0x3e,0xa6, + 0x99,0x45,0x90,0x40,0xf2,0x5c,0x4c,0xbb,0xb8,0x97,0x87,0xbd,0x64,0xd2,0xb5,0x8d,0x17,0xd5,0x45,0x12, + 0x94,0x05,0xa8,0xb7,0x6b,0xe2,0x9b,0x9a,0x8c,0xf6,0x6e,0x71,0x4e,0x00,0x76,0x99,0xec,0x1e,0x8e,0xb0, + 0x05,0x7b,0x78,0x21,0x19,0x14,0x51,0x6e,0x7a,0xb8,0x3f,0x3f,0x29,0x17,0x04,0xb0,0xba,0x46,0xa2,0x11, + 0xaf,0xf2,0xe6,0xe2,0x71,0x95,0x4d,0xa9,0xfd,0x3c,0x9d,0xd7,0x41,0x5e,0xec,0x2c,0xd7,0x6b,0x42,0x43, + 0x43,0x42,0x34,0x34,0x19,0xa1,0xf4,0xa4,0xf7,0x73,0xe9,0x10,0x24,0x8b,0xdc,0x89,0x03,0xb5,0x1c,0x96, + 0x05,0x61,0xe8,0x73,0xa2,0x23,0xbc,0x69,0xa3,0xcd,0xce,0x39,0x7a,0x9b,0xb7,0x32,0x00,0xab,0xe9,0x8a, + 0xc8,0x71,0x9e,0xb8,0x45,0x22,0x6f,0x43,0x82,0x82,0xaa,0xa0,0x5d,0x4e,0x1d,0x0c,0xd4,0xb9,0x49,0x5d, + 0xa6,0x75,0x7d,0x55,0x56,0x53,0xa4,0x8e,0xa6,0xc3,0x87,0x94,0x56,0x56,0xf9,0x1f,0xbc,0x27,0x93,0xe0, + 0x51,0x5a,0xe7,0x93,0x9d,0x60,0x30,0x0f,0x17,0x03,0x3a,0x97,0x06,0xe7,0xd1,0x86,0x26,0x85,0x1a,0x5e, + 0x12,0x21,0xe2,0x91,0x5f,0x1e,0x60,0xaa,0x52,0xc6,0x49,0x9d,0x58,0x32,0xf6,0xb5,0x0f,0xef,0xb2,0x8a, + 0xa6,0x23,0xff,0x83,0xc8,0x5c,0xb5,0x4b,0x80,0xb5,0x1c,0x9a,0xde,0x67,0xe6,0x49,0x2d,0x8f,0x2f,0x4e, + 0xfc,0xc1,0xa0,0x35,0x02,0xf5,0x2f,0x69,0x03,0x2c,0x99,0xc8,0xbe,0x06,0xe2,0xa1,0x31,0x5c,0x62,0x07, + 0x40,0xb6,0xb5,0x1c,0xd6,0x8c,0x8a,0xd6,0xeb,0xa5,0xa5,0xb5,0x08,0xff,0xef,0xed,0x1d,0xe8,0x6f,0x6c, + 0x12,0xd1,0x65,0xd3,0xec,0xd3,0x6b,0x5a,0xd4,0x19,0x64,0x02,0x41,0x14,0xc9,0x0c,0xd1,0x38,0x09,0x9d, + 0x3c,0x9c,0xcf,0x0d,0x22,0x16,0x8c,0x28,0xeb,0x36,0x4e,0x69,0xb8,0xbd,0xd9,0x38,0x0f,0x58,0x6e,0x55, + 0x25,0x37,0x4c,0x69,0x64,0xb6,0x31,0x00,0x1d,0xb1,0x01,0x40,0x66,0xe0,0x90,0xdb,0x19,0x63,0xd7,0xa9, + 0xd8,0x3d,0x1e,0x51,0x59,0x25,0x23,0x89,0x0f,0xef,0xdf,0xff,0x22,0x71,0x23,0x1b,0xdf,0x3f,0xf8,0x32, + 0x36,0x2f,0xba,0x0c,0x8a,0x6f,0x95,0x0b,0x5e,0x95,0x3b,0x1a,0xee,0x03,0xfb,0x01,0x57,0xac,0x37,0x4c, + 0x5c,0x28,0xe2,0x82,0x66,0xf9,0x39,0x91,0x48,0x86,0x25,0x58,0x6e,0x46,0x39,0xb6,0x19,0x21,0x1f,0x45, + 0x70,0x49,0x03,0xda,0x08,0x68,0x65,0x55,0x55,0x56,0xfe,0x5a,0xac,0xc2,0x49,0x18,0xbc,0xca,0x1a,0x02, + 0x97,0x8f,0x3b,0x4f,0x91,0x1b,0xa8,0x4c,0xf1,0x14,0x2c,0x23,0xfb,0xf1,0x6d,0x60,0xc9,0x5f,0xeb,0xf4, + 0x1d,0xda,0x45,0xc1,0xc0,0xae,0xfa,0x20,0x58,0xd4,0x3b,0xd9,0xa7,0x49,0x96,0x81,0xb4,0xa1,0x3a,0x83, + 0xa7,0x8f,0x5f,0xbf,0x7a,0xf5,0xf0,0xd1,0xeb,0xb7,0x47,0x4f,0x9f,0x04,0xad,0xda,0xab,0x61,0x9f,0x14, + 0x23,0xd4,0x4b,0x79,0x0d,0x9c,0x45,0x6c,0xcc,0x59,0x42,0x40,0xd8,0xd9,0x86,0x6e,0x07,0x46,0x60,0x07, + 0xdb,0xc7,0xe2,0xf8,0x9a,0xa1,0x2b,0xec,0xa6,0x47,0xb1,0x30,0x11,0xa3,0x33,0x02,0xb7,0xe9,0xb1,0x64, + 0xbb,0x13,0xf3,0x24,0x39,0xe3,0x1d,0x11,0xd0,0x79,0xaf,0x37,0xb0,0x64,0x32,0xec,0x00,0x8d,0x1b,0x3c, + 0x3f,0xed,0xf0,0xb7,0x56,0xb4,0x35,0x23,0x40,0x99,0x68,0x64,0x05,0x04,0x13,0x68,0x5c,0xef,0x71,0x34, + 0x63,0x8b,0xd6,0x9a,0x13,0xac,0x6b,0xa7,0x2d,0x5a,0xbd,0x4c,0x4e,0xa8,0xce,0x88,0xa9,0xcb,0xcb,0x6e, + 0x5a,0x82,0x9d,0xd7,0x06,0x48,0x26,0x2a,0x96,0xad,0xa4,0x0e,0xc8,0x6a,0x12,0x43,0xe4,0xcb,0x01,0x4e, + 0xea,0x6d,0xb0,0x8e,0x9a,0x0b,0x5a,0x0e,0xe2,0x5d,0x7b,0x99,0xf2,0xb2,0x78,0x52,0x5e,0x31,0x5a,0x7b, + 0xa3,0x71,0xd9,0xde,0xde,0x72,0x98,0x4e,0xa7,0x4f,0x2f,0x41,0x5e,0xe4,0x35,0x8d,0x9f,0x46,0x12,0x18, + 0x4c,0x47,0x50,0xd0,0xf3,0x4d,0xa4,0x6e,0xa9,0xfc,0xfd,0xb2,0x5b,0xf5,0x8a,0x53,0xdc,0xd3,0x9f,0xb6, + 0xd5,0xae,0x02,0x73,0x34,0x71,0xba,0x08,0x96,0x1f,0xb8,0x57,0x30,0x2a,0xcc,0x4f,0x32,0x43,0xe6,0x9f, + 0x65,0x4b,0x9e,0xf3,0xf4,0x8c,0x0e,0x39,0x42,0x85,0x2b,0x68,0x63,0x04,0x72,0xb1,0x40,0xfe,0x9a,0x87, + 0x33,0x49,0x56,0x58,0x4f,0x3a,0x29,0x67,0x7f,0xe3,0xec,0xa6,0x53,0xf9,0x16,0xca,0x02,0x9f,0x68,0x6e, + 0x7e,0x28,0x3b,0x7d,0xd8,0x26,0xd8,0x46,0x85,0x46,0x0b,0x7b,0x7b,0xf9,0xde,0xde,0x6e,0x1e,0x9a,0xf7, + 0x68,0xdc,0x10,0x39,0x1b,0x68,0xc0,0xda,0x99,0xa5,0x84,0x22,0xa7,0x3b,0x00,0x9e,0x1d,0x29,0xb0,0x03, + 0xfa,0x98,0x76,0xad,0xf9,0x40,0x99,0x16,0x04,0x03,0x14,0x56,0xcb,0x54,0x80,0xbe,0x0d,0x8b,0xbf,0x3e, + 0x9a,0xc3,0xdb,0x47,0xa3,0x88,0x59,0x92,0x11,0xa5,0x7c,0x64,0x32,0xd6,0x01,0xf7,0x6e,0x15,0x4a,0xa9, + 0x2d,0xf6,0x3f,0x91,0x74,0x81,0xb3,0x24,0x6e,0xc7,0x09,0xd5,0x64,0x48,0x09,0x65,0x80,0xc0,0x1a,0x62, + 0xcc,0x49,0x21,0x1b,0x46,0xa4,0x1e,0x95,0xb7,0x79,0x92,0x5c,0x65,0x7f,0x4f,0x54,0x63,0xda,0x61,0x66, + 0xe3,0xfd,0xdb,0xe7,0x8f,0xcb,0x05,0xd5,0x44,0x50,0x19,0x66,0x9e,0xf4,0xee,0xbf,0xbe,0x3c,0xb8,0x77, + 0x9e,0xab,0xe0,0xff,0xfa,0x22,0xbd,0xff,0xfa,0xe2,0x21,0x27,0xc6,0xad,0xc4,0xfb,0x5f,0xde,0x3b,0x57, + 0xc1,0x9d,0x76,0xda,0x63,0x2e,0xa8,0xda,0x89,0x07,0x28,0x38,0x68,0xa5,0x7d,0xf5,0x88,0x0b,0x1e,0xb7, + 0x13,0x9f,0x70,0xe2,0x49,0x10,0x79,0xba,0xbf,0xcf,0x80,0x1b,0x61,0x84,0xdd,0xc6,0x68,0x5c,0x33,0x5e, + 0xd5,0x12,0x94,0x53,0x11,0x81,0xb0,0x6c,0xb4,0x86,0x88,0x12,0xf2,0x1e,0xc6,0xac,0x89,0xa8,0x54,0xe3, + 0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xf1,0xc9,0x28,0xb7,0xf8,0xb3,0xe9,0x2c,0x6e,0x9f,0x96,0x0b,0x1c,0xac, + 0xe1,0x0e,0x99,0x4d,0x0f,0x9b,0x41,0x12,0x1c,0xd3,0x50,0x94,0x9f,0x4e,0x04,0x98,0x56,0x7b,0xe5,0x7d, + 0x64,0x38,0x78,0xaf,0xa1,0x68,0x1b,0x98,0xb1,0x04,0x75,0x52,0x3e,0x7f,0xf7,0xda,0x74,0x31,0xce,0x7d, + 0x26,0x90,0xe5,0x5c,0xdb,0x1c,0x1e,0xd4,0xaa,0x90,0xec,0x10,0x72,0x8e,0x06,0x41,0x12,0x0c,0x58,0xc3, + 0x06,0x51,0x04,0x08,0xee,0x74,0xf8,0x5b,0x99,0x17,0x61,0xb0,0x47,0x93,0xac,0x67,0xae,0x44,0x45,0x83, + 0x24,0xdc,0x3f,0x84,0xba,0xc3,0x91,0x2a,0xe3,0x20,0x1a,0xd3,0x9f,0x18,0x65,0x07,0x65,0xf4,0xe7,0x00, + 0xd7,0x22,0xf0,0x8f,0x83,0x14,0xd4,0x6c,0x90,0xfa,0x64,0x1d,0xbd,0x9b,0x03,0x47,0x84,0x4b,0x5e,0x02, + 0x9f,0x40,0x2a,0xc8,0x9a,0xf4,0x1c,0x3f,0x9f,0x96,0x39,0x01,0x3b,0x3d,0xcd,0x08,0xe1,0x81,0xe1,0x12, + 0xfe,0x29,0x9f,0xed,0x2f,0xca,0x69,0x3e,0xcb,0xb3,0xe9,0x7e,0x9d,0x13,0x5a,0x94,0xb4,0x55,0xb1,0x95, + 0x3a,0x4f,0xeb,0xc6,0x96,0xc5,0x7b,0x39,0x31,0x7d,0x20,0xee,0x12,0xdc,0xf7,0x15,0x1d,0xe4,0x68,0x81, + 0x50,0xea,0xa7,0xeb,0xfd,0x6e,0x47,0xab,0x8c,0x78,0x7a,0x3a,0x4e,0xf1,0x44,0xc7,0xd4,0x7e,0x3a,0x6b, + 0xf8,0x0d,0xc4,0xec,0x3e,0x8d,0x8d,0x28,0x9d,0x93,0x5b,0xd8,0x0a,0x16,0x03,0xd2,0x06,0x2f,0x89,0xb3, + 0x71,0xfa,0xf8,0x8c,0xb8,0x76,0xb7,0xea,0xc3,0x9a,0x18,0xd0,0x26,0x0c,0x7e,0x2d,0x08,0x46,0x3a,0xdc, + 0x77,0xe9,0x2f,0x03,0xed,0x3a,0x45,0x9b,0x7f,0x08,0x71,0x3c,0x3e,0x5b,0x9d,0xd1,0x7c,0x87,0x07,0x84, + 0x76,0xa2,0xf6,0x59,0xad,0x8a,0xad,0x52,0xe5,0xe0,0x90,0x00,0x42,0x0e,0xcf,0x94,0x8e,0x70,0x42,0xbd, + 0xb6,0xe2,0x26,0xfa,0x26,0x39,0xd0,0xbb,0x67,0x84,0xcc,0x04,0xa4,0xc4,0xfe,0x84,0x09,0x10,0x26,0x05, + 0xc6,0xfc,0xcd,0x18,0x7f,0xe2,0xe3,0x93,0x08,0x18,0x8a,0xa6,0x30,0x3c,0x2e,0x4e,0xa2,0xd8,0xe6,0x0c, + 0x02,0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xeb,0x50,0xe2,0xcd,0xde,0x6d,0xb4,0xd5,0xd8,0xd7, + 0x03,0x38,0x7d,0x8c,0x35,0x3c,0xc8,0xac,0xf8,0x91,0x77,0x20,0x0d,0xe0,0x61,0x43,0xed,0x9c,0xad,0x68, + 0x07,0x05,0x17,0xb4,0x84,0x01,0x6c,0x09,0x9a,0x24,0x1f,0xe2,0x05,0xdb,0xee,0x96,0x22,0x37,0x78,0x8a, + 0xa5,0x98,0x62,0x61,0xe0,0xa4,0x9c,0xd3,0xbb,0x79,0x1c,0xbb,0x47,0x87,0xb1,0x62,0xd1,0x74,0xc4,0xc4, + 0xd5,0x00,0x3c,0xf1,0x39,0xfd,0xa8,0x9a,0xf1,0x4c,0x8c,0xb6,0xf0,0x30,0x36,0x0f,0xbe,0xde,0x64,0xec, + 0xbe,0x4c,0x6b,0x94,0xc5,0xcf,0x58,0x7e,0xbc,0x72,0xff,0xa7,0xd5,0x00,0x78,0x28,0xdd,0x08,0x1e,0x15, + 0xe6,0x0e,0x7d,0xa4,0x1f,0xb5,0x4c,0x9b,0x0b,0xce,0x0f,0xee,0x61,0xf1,0x28,0x55,0x27,0x0c,0x21,0x14, + 0x7a,0x08,0xcb,0x8f,0xb1,0x4b,0x44,0xa9,0x81,0x7b,0x15,0x41,0x3c,0xad,0x55,0x72,0x2f,0x5c,0xd4,0x79, + 0xb6,0xa6,0x09,0x02,0xd9,0x16,0xdd,0xcb,0x87,0x0d,0xa4,0x9d,0x4e,0xd3,0x06,0xf0,0x7f,0x08,0xe8,0xc7, + 0x26,0x37,0xca,0x33,0x6d,0x78,0xf1,0x74,0x9e,0xe1,0x2d,0x0c,0xd2,0xc0,0x9e,0x93,0xb4,0x46,0x9a,0x17, + 0x1f,0x9a,0x1d,0xa8,0xd7,0xc2,0x49,0x1f,0x0c,0xe5,0x20,0x50,0xc0,0xb8,0xae,0x20,0xf4,0x47,0x7f,0xe2, + 0xc2,0xd9,0x8d,0x98,0xf9,0x67,0x2a,0xd5,0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86,0xf0,0xe4, + 0x96,0x66,0x71,0xf7,0xe0,0xf3,0x67,0xb4,0xa7,0xf3,0xd1,0x5a,0x8d,0x05,0x91,0x62,0xb4,0xcb,0x93,0x40, + 0x3a,0xb4,0x03,0x34,0x45,0xbc,0x72,0xbd,0x93,0x52,0x5f,0x0a,0x26,0x6d,0x76,0x30,0xb3,0xe9,0x04,0x68, + 0x61,0x23,0x50,0x1d,0x3c,0x7c,0xf4,0xf8,0xc9,0xd3,0x67,0xdf,0x7e,0xf7,0xfc,0xfb,0x1f,0x5e,0xbc,0x7c, + 0xf5,0xfa,0xcd,0x8f,0x6f,0xdf,0x1d,0xbd,0xff,0xf0,0xd3,0xcf,0xbf,0xfc,0x3b,0x3d,0x9b,0x10,0x3b,0x7f, + 0x7e,0x91,0xff,0xf6,0x71,0xbe,0x28,0xca,0xe5,0xef,0x55,0xdd,0xac,0x2e,0xaf,0x3e,0x5d,0xff,0x71,0x70, + 0x78,0xff,0x8b,0x2f,0xbf,0xfa,0xe7,0x7f,0xff,0xeb,0xeb,0xc1,0xbd,0x24,0x18,0x15,0x4e,0x16,0xed,0x08, + 0x0f,0xe5,0xa5,0x0a,0x69,0xf0,0x55,0x2b,0x09,0x8b,0x98,0x04,0xcf,0xa5,0x5f,0x8f,0x4d,0xb7,0x0c,0xa7, + 0xd4,0x8b,0xa4,0x8c,0x5a,0xad,0x01,0x09,0x93,0xe8,0x69,0xcf,0x20,0x8c,0x21,0x68,0xab,0x93,0x03,0xd8, + 0xd7,0x8c,0x4a,0x0b,0x3d,0xeb,0x1a,0xa7,0xd7,0x24,0xa1,0x13,0x45,0xd5,0xff,0x45,0x84,0x53,0x3a,0x48, + 0x26,0x26,0xf7,0x9f,0x5f,0xec,0x35,0xdf,0x7c,0xf3,0xaf,0x7d,0xca,0xf8,0xc7,0xbf,0x22,0x46,0x37,0x61, + 0x9e,0xc8,0xc7,0x8f,0xa9,0xb7,0x54,0xa4,0x1e,0x24,0xc3,0xff,0xfe,0x2a,0x8a,0xbe,0xb9,0xff,0xd5,0x57, + 0x9a,0x60,0xc7,0xe8,0x8a,0x51,0x93,0x34,0x0f,0x1e,0xfc,0x6b,0x9d,0x9b,0xe3,0xe8,0x7f,0x19,0x81,0xdc, + 0x5c,0x55,0x79,0x4b,0x79,0x6f,0xa8,0x36,0x42,0x56,0x37,0x62,0xed,0x41,0xa7,0x7d,0xad,0xb5,0x21,0x7c, + 0x60,0xf6,0xd0,0x48,0x44,0x2d,0x30,0xff,0x27,0xd6,0x06,0x04,0x98,0x7b,0x7b,0xfa,0x13,0x73,0x52,0xd1, + 0x77,0x18,0x0f,0x9f,0xdd,0x05,0x30,0xf3,0xb7,0x2f,0x8f,0xac,0xf4,0x56,0x79,0x90,0x9d,0x7b,0xdf,0x62, + 0xff,0xd1,0x87,0x79,0xab,0x40,0xe9,0x15,0x98,0xb2,0x80,0x86,0x8a,0x94,0x10,0x5c,0x10,0x90,0xa7,0x2e, + 0xaf,0xce,0x26,0xab,0x0a,0x52,0x6f,0xb7,0x0b,0x19,0x77,0x27,0xb5,0x3e,0xe3,0x47,0x3b,0x74,0xc8,0x2b, + 0x30,0x97,0xf1,0xd6,0xe9,0x94,0x74,0x3e,0x1a,0x2e,0x98,0xcf,0xc2,0x10,0xde,0x66,0xe7,0x4f,0x3f,0x2d, + 0xc3,0x20,0xfc,0xcf,0x7a,0xf4,0xeb,0xaf,0xf5,0x3f,0xa2,0x90,0xa6,0x84,0xc8,0xb7,0x24,0x3c,0xfe,0xcf, + 0xe8,0xe4,0x1f,0x51,0xe0,0x94,0x3e,0x0d,0xf1,0x87,0xdb,0x73,0x75,0xfc,0xc5,0x89,0xc8,0x27,0xd0,0xf8, + 0xa2,0xbc,0x6c,0x1b,0x41,0xf0,0xee,0xe2,0x45,0xa1,0xb5,0x20,0x50,0xc3,0x8c,0x0d,0x8b,0xf2,0x2a,0x8c, + 0xf6,0xff,0xf5,0xcf,0x2f,0xb3,0xaf,0x88,0x9a,0x8e,0xbb,0x8b,0x06,0x99,0x53,0x7b,0x1c,0x2d,0x35,0xe9, + 0x76,0x3b,0xf4,0xc1,0xdf,0x20,0x8f,0x75,0xa7,0x2e,0x08,0x7c,0xe6,0x90,0x16,0x1f,0x9f,0xf8,0x04,0xa8, + 0xaf,0x81,0xa4,0x0a,0xfa,0xf5,0xd5,0xad,0x0a,0x64,0x81,0x6e,0xac,0x66,0x8d,0x65,0x1e,0xa2,0x59,0x63, + 0xe5,0x7a,0xbb,0xb0,0x50,0x42,0xfb,0x87,0x90,0x30,0xb8,0x96,0xb8,0x7c,0xb2,0x35,0x71,0xe6,0x2b,0x22, + 0x22,0x41,0x64,0x76,0x92,0x34,0xbf,0xd7,0xaa,0x48,0x53,0x1c,0x49,0x9b,0xca,0xb4,0xc4,0xad,0x5f,0x83, + 0x67,0x2b,0x60,0xc9,0xdc,0x86,0x18,0x50,0x7a,0x25,0x16,0xf1,0x7f,0xa8,0xc7,0x82,0x79,0xe1,0x67,0xf8, + 0x59,0x46,0x05,0xcf,0x67,0x9a,0xfb,0xcb,0xa6,0x61,0xd4,0x35,0xfc,0x3b,0xfc,0x5a,0x24,0xc4,0xb0,0xc0, + 0xb3,0xa6,0x7f,0xf4,0x7a,0x08,0x01,0x31,0xfd,0xde,0xc2,0x23,0x78,0xa6,0x7f,0x19,0xd8,0xa8,0xb3,0x54, + 0x4b,0xe7,0x76,0x27,0x5a,0x18,0xc3,0x7c,0x16,0x3d,0x24,0xf3,0xd0,0x66,0x2b,0x2d,0xa7,0x51,0x56,0xd4, + 0xeb,0x84,0xbe,0xac,0xe9,0x13,0x59,0x70,0x02,0x51,0x23,0x0b,0x85,0x6d,0x2e,0xf4,0x35,0x1d,0xcd,0x95, + 0x5f,0x8b,0x31,0x3f,0xb4,0x29,0x43,0x51,0x49,0xe8,0x4a,0xad,0xec,0x5f,0x4b,0x36,0x4f,0xda,0xe9,0x78, + 0xf3,0x99,0x86,0xdb,0x14,0xac,0x3d,0x5a,0x06,0x50,0xd8,0x68,0xc8,0x57,0x37,0xd0,0xf2,0x1a,0xd9,0xbd, + 0x6d,0xb9,0x39,0xd9,0x40,0x19,0x3e,0xd4,0xaa,0xbd,0xf5,0xba,0x36,0x8f,0x11,0x58,0xc4,0xb6,0xbc,0xa1, + 0x69,0xcf,0x6e,0x63,0x26,0x45,0x1e,0xe8,0xbd,0x77,0x52,0x84,0x77,0xa5,0xe2,0x1b,0xd5,0x53,0x53,0x4a, + 0xcf,0x74,0xc4,0x48,0x85,0xb0,0xcf,0x33,0xcc,0x2e,0x00,0xdd,0x29,0xb3,0x6d,0x4b,0xad,0x14,0xe5,0xbd, + 0x7f,0xae,0x6d,0x5a,0x59,0xa7,0x91,0x67,0x46,0xaa,0xf9,0x5b,0xaa,0x8b,0xcf,0xb0,0xa3,0x66,0x42,0xec, + 0x22,0x15,0x2d,0x12,0x87,0x4e,0x73,0xc6,0x18,0x9b,0x6d,0x4e,0xea,0x2f,0x08,0x0c,0x2c,0x21,0x13,0xee, + 0x66,0xeb,0x35,0x0c,0x37,0x4e,0x1f,0x3f,0x7c,0xf5,0xf8,0xe9,0x8b,0xd3,0xd3,0xff,0x81,0xf8,0xc1,0xd4, + 0x76,0xef,0x3f,0xe1,0x71,0xba,0xff,0xc7,0x09,0xfe,0xfc,0x3a,0xfd,0x75,0xf0,0xeb,0xfe,0xaf,0xc3,0x93, + 0x7f,0xc4,0xd1,0xf8,0xd7,0x7b,0xbf,0xde,0x33,0xb4,0x5f,0xf6,0x3f,0x92,0x6f,0x38,0xcc,0x38,0xf6,0x0c, + 0x86,0x7e,0xbd,0x37,0x10,0x9a,0x79,0x00,0x02,0xb4,0xf1,0x29,0xe2,0x7b,0x03,0xa1,0x75,0xff,0x64,0x72, + 0xda,0xd6,0x39,0x2d,0x52,0x2d,0xdb,0x14,0x3d,0x46,0x9a,0xc9,0xd6,0x99,0x11,0x88,0x51,0x6f,0x30,0x08, + 0xfd,0xcf,0x89,0xd3,0x25,0x46,0xc6,0x4f,0x89,0x61,0xc5,0xd4,0x22,0xb3,0xdc,0xa4,0x43,0x3f,0xe2,0x99, + 0x4d,0xff,0x2d,0x7c,0x08,0x49,0xa6,0x15,0x26,0xee,0x7a,0x1a,0x56,0x4b,0x15,0x41,0xaa,0x29,0x02,0x27, + 0x22,0x2f,0xe8,0x98,0x27,0xc2,0x7b,0x67,0xb1,0xaa,0x9b,0x9d,0xb3,0x6c,0x27,0xb5,0xb6,0x51,0xc3,0x40, + 0x5b,0x9c,0x8c,0xb8,0xd7,0x5a,0x32,0x98,0xf4,0x6a,0xb3,0x30,0x57,0x34,0x41,0xf2,0x41,0x91,0xe0,0x83, + 0x51,0x3b,0x1b,0x62,0xb4,0xb4,0x06,0x42,0x0a,0xcd,0x23,0x57,0x95,0xf3,0x7e,0xb4,0x69,0x90,0x23,0x38, + 0x0c,0xfd,0x45,0xfb,0x78,0xec,0x22,0xf3,0x8e,0x3e,0x45,0x1b,0x50,0x70,0x35,0x5a,0x66,0xeb,0x52,0x70, + 0x6a,0xd5,0xe5,0xaa,0x9a,0x64,0xfe,0x57,0x68,0xc9,0x30,0x79,0x37,0x0d,0x4e,0x0c,0x36,0x1d,0xaa,0x5a, + 0xa8,0x28,0x4b,0x70,0xaa,0xca,0xa9,0xc2,0xf0,0x73,0xeb,0x49,0xf5,0x37,0xf6,0xc6,0x4e,0x0f,0x8a,0x32, + 0x86,0x63,0x2c,0x77,0x6c,0x60,0x3b,0x06,0xc5,0x67,0xb7,0x85,0xdb,0x7d,0x1d,0x7a,0xb4,0x99,0xff,0x4b, + 0xee,0x0e,0x0d,0x1c,0x18,0x3e,0xac,0xb2,0x7e,0xf7,0x85,0x7e,0x60,0xcc,0x7a,0xed,0x5d,0xd7,0x6b,0x8c, + 0x8e,0x2d,0x5f,0x3d,0xa3,0xc7,0x6e,0x49,0x11,0x7a,0x19,0x51,0xd8,0xa6,0xbd,0x2b,0x0d,0xcf,0xd5,0xae, + 0xc4,0x37,0x5f,0xdf,0x32,0x2f,0x58,0xaf,0xb7,0xed,0x75,0x29,0xad,0xbe,0x5e,0x9c,0x95,0xf3,0x76,0xda, + 0x59,0x59,0xce,0xb3,0xb4,0xe8,0xb5,0x5f,0xff,0xdf,0xb1,0x78,0x17,0x11,0x1b,0x1b,0xd9,0x5e,0x14,0xbd, + 0x06,0xef,0x86,0x8a,0x66,0x4b,0x08,0xb6,0xbe,0x0b,0x2d,0x07,0xe5,0xa8,0xe3,0x6f,0x92,0x83,0xbd,0xbd, + 0x97,0x44,0xe3,0x0f,0x67,0xf3,0x12,0x46,0x5f,0xac,0x4d,0x27,0x96,0xb5,0x7e,0x96,0x17,0x4c,0x00,0x7b, + 0xb5,0xd6,0x9d,0xae,0x53,0xcf,0xc7,0x41,0xd0,0xe3,0xc1,0x32,0xee,0xca,0xfc,0x44,0x0c,0x7e,0x3f,0x8a, + 0x6d,0x17,0x5c,0xad,0x93,0xde,0xbe,0x3a,0x31,0x36,0xb1,0x34,0xe9,0x2b,0xea,0xd8,0x38,0x23,0xca,0xd4, + 0x7e,0x35,0xd7,0x96,0x90,0xd6,0xf2,0x52,0x9b,0xc0,0x0b,0x9b,0x1f,0x8a,0xfa,0xa0,0x4a,0xac,0x10,0x4b, + 0x41,0xce,0x99,0x1c,0x8c,0xf2,0x07,0x95,0xb1,0x1a,0xcb,0xc5,0x00,0xf3,0x38,0x3f,0x39,0x21,0x5c,0xe9, + 0x18,0x86,0x3e,0xf5,0xfb,0x71,0xd6,0x96,0x64,0x9d,0x6c,0xfa,0xac,0x3b,0xa8,0xd8,0xc9,0xc6,0xf5,0x71, + 0x65,0xdd,0x0e,0x8c,0xbf,0x80,0xd1,0xa9,0x66,0x9e,0x8c,0x8b,0xe5,0xc1,0xdf,0xec,0x1f,0x5a,0x31,0x31, + 0x77,0x99,0x4e,0x9c,0x42,0x1d,0x46,0x5e,0x6d,0xb3,0xd6,0x99,0x75,0x6e,0x56,0x1d,0x9b,0xdc,0x96,0x99, + 0xba,0xb9,0xec,0x99,0x8f,0x51,0x17,0x6d,0x78,0xc6,0x6b,0xc7,0x05,0xd1,0x73,0x21,0x7e,0x60,0x09,0x1c, + 0xf9,0x0d,0x2f,0xb7,0x8c,0x4e,0xb5,0x38,0xa4,0xea,0x31,0x08,0xd6,0x14,0xc6,0xb8,0xfa,0xe6,0x70,0xec, + 0x8c,0x58,0x6d,0x39,0xe0,0x00,0xee,0x37,0x9b,0xf1,0x9a,0x67,0x2b,0xe8,0x2d,0x86,0xa7,0x52,0x91,0xf5, + 0xb0,0x50,0x85,0xeb,0xc8,0x85,0x74,0x84,0xd8,0xf1,0xf5,0xfa,0x60,0xe4,0x96,0xde,0x94,0xdd,0x6f,0x68, + 0xc5,0x9d,0x05,0x6e,0x11,0x8d,0x8a,0xfd,0xfd,0x51,0x54,0xf1,0xa0,0x8e,0x8b,0x41,0x63,0xcd,0x6b,0x2b, + 0x57,0xe9,0x65,0x07,0x90,0xe0,0xa5,0xd1,0x44,0xf0,0xe1,0x48,0x30,0x1b,0x56,0x34,0xea,0xbe,0x58,0xb4, + 0x64,0x13,0xb0,0x8e,0x2e,0x08,0xb0,0x8a,0x07,0xce,0x29,0x84,0x00,0x0b,0x15,0xec,0xed,0x5d,0x42,0xfd, + 0x08,0x69,0xa4,0x85,0x2e,0x57,0xcd,0xb9,0x39,0x87,0x5d,0xd2,0xb5,0x03,0x18,0x6c,0xc3,0xc8,0x60,0x29, + 0x7d,0x24,0xf2,0x39,0x57,0xd1,0x8f,0x00,0xcd,0x2e,0x1d,0x84,0xbb,0x95,0x29,0x44,0x6c,0xcb,0x6e,0xb5, + 0xb7,0x67,0x37,0x18,0x55,0xa0,0x9f,0xa9,0x34,0x94,0x98,0xac,0x7c,0x48,0x78,0x6a,0x3c,0x79,0x3f,0xf1, + 0x2d,0xed,0x24,0xa9,0xbb,0xdc,0xdb,0x4b,0x1d,0x40,0xea,0x35,0x81,0x00,0x4b,0x1e,0xc1,0x22,0x65,0x97, + 0x59,0x75,0xed,0x9d,0xcf,0x1e,0x81,0xc9,0xe3,0xc0,0xb0,0x37,0x52,0xd9,0x7a,0x6d,0x2a,0xdb,0x3d,0x1c, + 0x89,0x44,0x43,0x83,0xe7,0xc7,0xec,0x1a,0x58,0x85,0xd8,0x25,0x3f,0xc1,0xd9,0x8f,0xd7,0xae,0xed,0x89, + 0x6d,0xbb,0xee,0xb6,0xdd,0x6a,0x19,0xde,0x37,0xba,0x71,0x67,0xfd,0x65,0x5a,0xf7,0xc0,0xfa,0xac,0x8b, + 0x41,0xb6,0xd6,0x90,0xba,0x6e,0xea,0x8b,0xac,0xdb,0x9c,0xee,0x19,0x31,0xc3,0xb6,0xa6,0x53,0xb7,0xeb, + 0x68,0x7c,0xdb,0xe6,0xe1,0x0d,0x76,0x96,0x90,0x63,0x7a,0x43,0xe0,0xf0,0x73,0x7b,0xc2,0xdf,0x6c,0x57, + 0x46,0xf3,0x16,0xdd,0xe8,0x19,0x91,0xe3,0xd3,0xf8,0x07,0x71,0x36,0x35,0x36,0x5f,0x65,0x71,0xa1,0x32, + 0x3a,0x91,0xb2,0x2a,0x3d,0x9b,0x67,0xf1,0xee,0x6e,0xa5,0x20,0x93,0x90,0x97,0x03,0x6d,0xcb,0xb0,0xd2, + 0x99,0x07,0x1b,0x0f,0x4b,0x1c,0x79,0x07,0x4a,0x8f,0xca,0x78,0x6f,0xef,0x5e,0xc1,0x0e,0x0c,0xac,0xd5, + 0xbc,0xa7,0x49,0x6c,0xdf,0xd4,0xcf,0x55,0xf5,0xb1,0x63,0xa3,0xf4,0x4b,0x11,0xca,0xe9,0xab,0xda,0x3f, + 0xee,0xe8,0x71,0xdf,0x3e,0xd6,0xca,0x7e,0xbd,0x87,0x27,0x46,0x3c,0xf3,0x5a,0x4c,0x70,0xf5,0x5e,0xfe, + 0x05,0xb6,0x34,0x4d,0x7a,0xae,0x2c,0x37,0x3b,0xb9,0xc8,0xe7,0xd3,0x2a,0x2b,0xc0,0x3d,0xc1,0x7e,0x83, + 0x40,0x71,0xbe,0x50,0xac,0x9e,0xe4,0x77,0x64,0xa4,0xf5,0x75,0x31,0x79,0x96,0xc2,0x9e,0xfd,0xda,0x29, + 0x44,0x87,0x05,0x78,0x65,0x54,0x2d,0xb2,0xb8,0x26,0x9f,0x00,0x15,0xeb,0x47,0x4a,0x25,0xe8,0xa3,0x04, + 0xfa,0xcb,0x25,0x1e,0x13,0x57,0x4a,0xfd,0xe1,0x22,0xfa,0x99,0xd2,0x67,0xc5,0x63,0x69,0x88,0xd2,0xed, + 0x33,0xa7,0xeb,0x8e,0x73,0xba,0x1d,0x04,0x3d,0xbf,0x9b,0xd0,0xda,0x3d,0x9f,0x72,0xba,0x7e,0x96,0xfa, + 0xe7,0x34,0x5e,0x76,0x91,0x6c,0x44,0xa1,0xaa,0x07,0x46,0x2f,0x95,0x7d,0x49,0x3e,0x79,0x39,0x30,0x0d, + 0x8a,0xa0,0x7e,0x2d,0xfc,0xc2,0x85,0x5f,0xb8,0x68,0x17,0x26,0x84,0xe1,0x66,0xfc,0x53,0x17,0xe4,0x2d, + 0x96,0x6d,0xe3,0x4d,0x7d,0x52,0x16,0x7c,0x44,0xe2,0x80,0x4c,0x68,0xad,0xe8,0xc7,0x73,0xec,0xf0,0x6a, + 0x7d,0xe8,0xad,0x23,0xb6,0xbb,0x78,0xf0,0xec,0x86,0x2d,0x7f,0x9b,0x5f,0x0a,0xbb,0x85,0x70,0x90,0x05, + 0xa7,0xa7,0xe5,0xd9,0xe9,0x69,0xc0,0xd6,0x26,0xf2,0xec,0x97,0x2e,0xab,0x31,0x3a,0x27,0x19,0x71,0x4e, + 0x64,0xf7,0x45,0xb9,0x9a,0x4f,0x69,0xb2,0x69,0xe3,0xd3,0x64,0xed,0xfe,0x51,0xb0,0x95,0x5f,0x17,0x9b, + 0xad,0xd7,0x20,0x96,0x28,0x47,0xef,0x9d,0xbc,0x7e,0x0a,0xef,0x93,0x3a,0x3f,0x63,0x73,0x59,0xfa,0x90, + 0xfd,0x09,0x88,0x0a,0xc5,0xb4,0xf1,0x98,0x59,0x65,0xce,0xec,0x3c,0x4f,0xeb,0xe5,0xe2,0x71,0xb9,0x2a, + 0x9a,0xc1,0xc0,0x3f,0x78,0xde,0xf9,0xea,0x70,0xc1,0xa3,0x6c,0x2d,0x57,0x10,0xf6,0xd4,0x2d,0x9d,0x67, + 0x8d,0xe7,0xc5,0xf7,0x24,0xab,0x27,0x55,0x0e,0x1b,0x77,0x9e,0x1b,0xc6,0xd6,0x29,0x61,0xeb,0x43,0xa2, + 0xf6,0xd2,0xa1,0xbf,0x35,0x8d,0x84,0x37,0x25,0x84,0x8b,0x4a,0x08,0x13,0xf2,0x63,0x4d,0x8f,0xf3,0x64, + 0x37,0xdf,0xdb,0x7b,0x88,0x83,0xec,0x33,0xb8,0xc0,0xc7,0x01,0x5b,0xdb,0x5e,0x51,0x95,0xbe,0xcc,0x51, + 0xb0,0x54,0x3d,0xae,0x0d,0xcd,0xe8,0xd4,0x17,0x3f,0x17,0xb4,0xcd,0x2a,0x2a,0x4f,0x53,0x53,0x52,0x4b, + 0x4b,0x58,0x5e,0x44,0x6a,0x4e,0xaf,0x73,0xbc,0xba,0xa4,0xee,0x81,0xb1,0xb7,0xe7,0x11,0xec,0x2d,0xf8, + 0xd2,0xbb,0x5f,0xbc,0x87,0x9a,0xae,0xd7,0x10,0xad,0x40,0x03,0xc3,0x4c,0xcc,0xbb,0x2c,0xb5,0x7b,0xfa, + 0x5c,0x8b,0x90,0x6d,0xb3,0x11,0x05,0x84,0xde,0x2c,0xab,0xa9,0xfd,0x51,0x36,0x86,0x3a,0x69,0x0f,0x13, + 0x0a,0x98,0x6a,0xbd,0x6e,0x76,0xd9,0x84,0x74,0x17,0xcf,0xe1,0x64,0x3c,0x71,0x64,0x54,0x4c,0xdd,0xb1, + 0x73,0xde,0xc0,0x36,0xb6,0x28,0x1b,0x90,0xaf,0x6c,0x23,0xef,0xe1,0xe8,0x3b,0x9e,0x7a,0xbf,0x0b,0x81, + 0xb4,0x76,0xa1,0x3b,0x2d,0xec,0xd1,0xc9,0x24,0xf6,0x22,0xfd,0x64,0x29,0x41,0xc5,0xa2,0x37,0x4d,0xe9, + 0x35,0xea,0x90,0xaa,0x53,0xbc,0x7b,0x1a,0x76,0x13,0xc5,0xfe,0xe1,0xa7,0xae,0x67,0xa7,0xab,0x5a,0x0c, + 0x5c,0x0b,0x2d,0xf9,0x31,0x9b,0xc5,0x39,0x10,0x09,0x9c,0xaf,0xd7,0x15,0x2c,0xad,0x34,0x58,0x8f,0x8b, + 0xb8,0x1a,0x87,0xef,0x08,0xbd,0xf0,0x09,0xc2,0xa3,0x20,0x54,0x84,0xb9,0x36,0x63,0x05,0x5d,0x66,0xac, + 0x67,0x0b,0x0f,0x5b,0xbf,0xb6,0xb4,0xc9,0x2d,0x43,0xf6,0x47,0xe3,0x99,0x2a,0xb8,0x7d,0x3c,0x72,0x7d, + 0xf2,0xb7,0xda,0x7a,0x2d,0x94,0x2d,0x6c,0xc8,0x8c,0xb5,0x6e,0x73,0x22,0x48,0xce,0xef,0x98,0xbf,0x02, + 0x4f,0x6d,0x67,0x7c,0xf3,0x0a,0x0b,0x77,0xd8,0xa8,0x6e,0x6b,0x6a,0x92,0x02,0x1a,0xa3,0x51,0xfd,0x20, + 0x35,0x50,0x58,0x03,0xb7,0x81,0x2e,0x4c,0xd2,0xe3,0xfa,0xe4,0x04,0x00,0x8a,0xa3,0x7e,0xc6,0x94,0xcc, + 0xb8,0x0c,0x2b,0x76,0x43,0x84,0x2e,0xe4,0x69,0x88,0x8d,0x1f,0x63,0xd9,0x0b,0x7a,0xe8,0x21,0x09,0xdf, + 0x74,0x24,0x6c,0xc5,0xb8,0xb3,0xe7,0xaa,0xa4,0xd7,0x9d,0xcd,0x78,0xf8,0xb2,0x4f,0x1b,0xf5,0xa0,0xef, + 0x38,0x1e,0x67,0x5e,0xa1,0xcc,0x51,0xd8,0xba,0x57,0xf9,0x26,0x6e,0xc6,0x99,0xdf,0x9e,0x2e,0xf1,0x34, + 0xfc,0x5c,0x93,0x4c,0x82,0xe0,0x0f,0x1a,0xfe,0x5c,0xb3,0x5e,0x41,0xe2,0xda,0xe2,0x26,0xf6,0x86,0xfd, + 0xa4,0x2b,0x46,0x1b,0x67,0x46,0x05,0x4f,0xdb,0xa9,0x8b,0x26,0xc6,0x4d,0x0c,0x3d,0xbd,0xf7,0xfd,0x6f, + 0x8e,0xd8,0x11,0x79,0x4d,0x9b,0x69,0xd1,0x8c,0xbe,0xa7,0xcb,0xb9,0x84,0x03,0x14,0xc6,0x6c,0xab,0x78, + 0x6e,0x66,0xde,0x63,0xe2,0x6d,0x75,0x69,0x45,0xe8,0x65,0xbd,0x9e,0x57,0xa3,0x39,0x1c,0xed,0xe8,0x60, + 0x62,0xef,0x44,0xfc,0x41,0xa3,0x7d,0xd6,0x78,0xc0,0x7e,0xc4,0x60,0x0c,0xb5,0x1f,0x50,0x57,0x72,0x62, + 0x20,0x9a,0xf6,0xe3,0xb2,0x16,0x4b,0x1e,0x59,0x5f,0x06,0xb8,0x9b,0xcd,0x68,0x6b,0x7f,0x14,0xe2,0x3b, + 0x4e,0x07,0xac,0x45,0x7f,0x60,0x4a,0xba,0xf2,0x85,0x50,0xc2,0x2f,0x60,0x17,0xa4,0xc7,0x67,0x05,0xc1, + 0xdd,0x49,0x72,0x83,0x2c,0x51,0x53,0x39,0x4b,0xa1,0xd2,0xd4,0xc8,0xe7,0x06,0x50,0x44,0x11,0xe1,0xdb, + 0xfa,0x44,0xf1,0x87,0x35,0x7d,0x08,0xb0,0x1d,0xe7,0xb1,0x7c,0x9f,0x6f,0x46,0xba,0xbf,0x49,0xba,0x01, + 0xca,0xbc,0x65,0x48,0x79,0x81,0xb9,0xf7,0xc7,0x64,0x13,0x3f,0x37,0x30,0x99,0x69,0x26,0x17,0x7c,0xc6, + 0x9a,0x98,0x2e,0x66,0xac,0x6f,0x60,0x1c,0x13,0xe3,0x79,0xd3,0x3f,0x84,0x54,0x86,0xa0,0x8f,0xc1,0xe2, + 0x38,0x25,0x96,0x8b,0xfe,0xd0,0x18,0xea,0x88,0xd6,0x5b,0xbe,0x4f,0x09,0xc5,0x47,0xb1,0x3c,0xd7,0x9b, + 0x4d,0x77,0x18,0x66,0x10,0x74,0x40,0xe6,0x15,0xf5,0x97,0x68,0x57,0xbd,0x38,0xa6,0x95,0xca,0x6b,0x45, + 0x66,0x7a,0xd4,0xb3,0xf8,0x39,0xa8,0x02,0x0e,0x82,0x01,0x03,0xfd,0x38,0x57,0xab,0x25,0xac,0x03,0x69, + 0x0a,0x23,0x28,0xed,0x75,0x98,0x8c,0x46,0x47,0x81,0xe0,0x26,0x72,0xb6,0x71,0x02,0x14,0xe6,0x30,0xee, + 0x53,0xcd,0x70,0x91,0x7f,0x22,0x4a,0xc6,0x8d,0x8f,0xce,0xbe,0x3a,0x31,0xc9,0x66,0x8a,0xd2,0x07,0xf5, + 0x28,0x05,0x9b,0xc8,0x9f,0x9a,0x5c,0x1a,0x37,0x55,0xc2,0xcd,0x4c,0xe8,0x24,0xa2,0x59,0x47,0x2d,0x13, + 0x09,0x1c,0x40,0x0f,0x91,0x7b,0x6f,0x22,0x20,0xaa,0x09,0x51,0x3c,0x9c,0xae,0x77,0xc8,0xdc,0x6d,0x8c, + 0x17,0x6e,0x6f,0xf5,0x79,0xcb,0xd8,0xb9,0x00,0xb2,0xc5,0x40,0x68,0x28,0xca,0xd1,0x68,0x39,0x58,0x5f, + 0xa1,0x74,0xce,0xc0,0x5f,0x99,0x12,0xa5,0x57,0xa2,0x94,0x12,0x69,0x72,0x5a,0x84,0xa5,0x13,0x2e,0x50, + 0xa9,0x94,0xa0,0x8f,0xc6,0x12,0xe7,0x2c,0x55,0x40,0x49,0xfc,0x4d,0x7d,0xd9,0xc8,0xb3,0xee,0xd6,0x6f, + 0x8e,0xb3,0x13,0x55,0x26,0xbb,0xb4,0x6a,0x8a,0xd9,0x52,0x08,0x53,0xd0,0xec,0xcb,0xf0,0x91,0x88,0xd3, + 0x54,0x3e,0xe4,0x13,0x10,0xf4,0x09,0x9d,0x8f,0x68,0x28,0xd0,0x8e,0x90,0x41,0x34,0x4e,0x89,0xf7,0x8a, + 0x5f,0x6a,0x19,0x97,0x29,0x0a,0xc3,0xfd,0x5d,0x56,0x49,0xa7,0xf4,0x73,0x24,0x6e,0xaa,0x61,0x9a,0x30, + 0x19,0x6d,0x05,0x8a,0x69,0x74,0x93,0xf6,0x99,0xee,0xcd,0xe0,0xc1,0x64,0x5b,0x30,0x9b,0xa2,0x31,0xde, + 0x97,0xf6,0x1c,0x00,0x0d,0x7b,0x47,0x23,0x0c,0xd9,0x69,0x12,0xdc,0xc0,0x49,0x2c,0x7b,0xb2,0x45,0x3e, + 0x60,0x25,0x95,0xc3,0x53,0xce,0xa1,0xd4,0xb1,0xf7,0xdc,0x27,0x61,0x85,0x6b,0xef,0x33,0x27,0x9b,0x4f, + 0x5e,0x85,0x8d,0x0c,0x76,0x5c,0x59,0x6a,0xa7,0x22,0x70,0x05,0x4a,0xca,0x22,0xcd,0x6e,0x77,0x49,0xe8, + 0x51,0x37,0x01,0x5c,0xc8,0xc3,0x30,0x25,0xd2,0xbf,0x9b,0x51,0x3b,0xb3,0x07,0xbb,0x7a,0xaf,0x3c,0xfb, + 0x26,0x8c,0xde,0xf1,0x86,0x5a,0x4b,0xcf,0x7e,0xd7,0xb6,0x78,0xf8,0xeb,0xd5,0x20,0xba,0xe7,0xe1,0xf1, + 0xe6,0xf8,0x90,0xc6,0x16,0xb8,0x0a,0x5f,0xba,0x03,0xbd,0x7b,0x6c,0x18,0x80,0x7b,0x25,0xc2,0xc9,0x57, + 0xc6,0x3f,0xd5,0x44,0xe3,0xa8,0x1c,0x61,0x59,0x3c,0xa8,0x0c,0xe3,0xfe,0x8a,0x65,0x59,0xe6,0x03,0x27, + 0x49,0xb1,0x82,0x00,0xdb,0xf4,0x5b,0x6f,0xc5,0x1b,0x87,0x30,0x12,0x5a,0xdf,0xa4,0x1a,0xde,0x59,0xa6, + 0xc4,0x4a,0x35,0x23,0x67,0x00,0x64,0x97,0x92,0x7d,0x00,0x1e,0xa7,0x4b,0xaa,0x30,0x9b,0x32,0x2e,0xb0, + 0x5f,0x97,0x84,0x10,0xcb,0x07,0xb9,0xe9,0x57,0x89,0x08,0x21,0xd5,0x35,0x0f,0x0f,0x26,0x8c,0xd8,0x11, + 0xb2,0x56,0x95,0x92,0xc6,0x75,0x07,0x9d,0xc0,0xe2,0x11,0xf5,0xaa,0x52,0x41,0xab,0x8d,0x9d,0x8b,0xb2, + 0xfc,0x08,0xb7,0xf5,0x47,0xba,0xcb,0x6e,0x10,0x8f,0xbc,0x41,0xdc,0x29,0xa4,0x6b,0xdf,0x89,0xce,0x9c, + 0x5b,0xd6,0x73,0xd8,0xc9,0xf2,0xe3,0x8b,0x48,0x85,0xb6,0xfd,0x9f,0x8c,0xd0,0x36,0xd0,0xa6,0xd2,0xfe, + 0x77,0xd4,0x87,0x9f,0xb6,0xba,0xf0,0x93,0xd7,0x85,0xdd,0x37,0x10,0x47,0x3d,0x29,0x68,0xff,0xf5,0xf8, + 0x08,0xc1,0xd9,0x9c,0x76,0xb4,0x56,0xb0,0x64,0x23,0xfd,0x2e,0x4d,0xb4,0x64,0xc3,0x1f,0x60,0x54,0x57, + 0x25,0x5a,0x6a,0x94,0x25,0xab,0xca,0xf8,0x87,0x47,0xa3,0x95,0x11,0xe4,0x26,0x4e,0x16,0xd8,0xd0,0x73, + 0xe3,0x84,0x38,0x0d,0x0b,0xe2,0x9a,0x93,0xd0,0xab,0xf2,0x7d,0x87,0x5b,0xa5,0x6a,0xd8,0x16,0xa2,0xad, + 0x07,0xd2,0xce,0x84,0x56,0x3e,0x69,0xe7,0x45,0xa0,0x25,0x28,0xe8,0x08,0x38,0xca,0x27,0x58,0x0d,0x3e, + 0xd5,0x0a,0x76,0x5e,0x67,0x4d,0x0b,0xf8,0x0a,0xf4,0xf9,0x40,0x4d,0xab,0xf1,0xa4,0x0a,0xa3,0xb8,0xae, + 0x60,0x60,0xb3,0x9b,0xf5,0xab,0x57,0xb4,0x22,0x2c,0xf2,0xa4,0x28,0x7d,0xba,0xb1,0x02,0xba,0x31,0x37, + 0x8c,0xef,0x90,0x66,0x0b,0x80,0xef,0x52,0x96,0x14,0x29,0x6f,0x11,0xea,0x85,0xc4,0x82,0x42,0x78,0x08, + 0x3e,0xd8,0x32,0xc8,0xcf,0xaa,0xf2,0x0f,0x38,0x4e,0x8b,0x4d,0x54,0xa3,0x69,0x75,0x73,0x1e,0x37,0x3e, + 0x3b,0x96,0x33,0x94,0x17,0xb0,0x00,0xa4,0xc3,0xd9,0x18,0x66,0x16,0xf0,0x1e,0x80,0x1b,0x20,0x2c,0x38, + 0x35,0xad,0xd3,0xb4,0x68,0x1d,0xea,0x1c,0x93,0x5c,0x5e,0x40,0x9c,0x2a,0x09,0xcb,0x0e,0x7d,0x1e,0x6d, + 0x7d,0x53,0xd2,0x57,0x27,0x1c,0x00,0x21,0xa2,0x59,0x3f,0xaf,0x22,0xfa,0x3f,0x9c,0xd0,0x51,0x50,0xf9, + 0x0b,0xfa,0x47,0xd8,0x0e,0x75,0xa5,0x35,0x72,0x4e,0x36,0xad,0x40,0x18,0xcc,0x0a,0x3e,0xae,0x77,0xb7, + 0x68,0x18,0x2b,0x79,0xf6,0xf4,0x66,0x4e,0x34,0x37,0x72,0xf8,0xa0,0xd0,0xa0,0xd7,0xab,0x47,0x80,0x90, + 0xc4,0xaf,0x21,0xb3,0x22,0x6d,0x6e,0x1a,0x81,0x07,0x5c,0x8f,0x7f,0x0f,0xb5,0x30,0xc1,0xda,0xef,0xab, + 0x5a,0xd1,0x81,0xcf,0x8d,0xa5,0x72,0xba,0xd3,0xd4,0x83,0x1a,0x98,0x30,0x45,0x44,0xb4,0xc0,0x75,0x05, + 0xe4,0x0c,0x77,0x4b,0x58,0x68,0xd3,0x91,0x3f,0xa6,0xbf,0x35,0xea,0xc6,0x79,0x28,0xa5,0x93,0x3f,0xb0, + 0x2c,0xaa,0x22,0x7e,0x9d,0x8d,0x2f,0x6b,0x35,0x1f,0x12,0x35,0x9e,0x29,0xc4,0x61,0x61,0x14,0x42,0x4f, + 0xf0,0x69,0x23,0xfa,0x88,0x9f,0x60,0x66,0x1e,0x11,0x7c,0xd2,0x29,0x32,0xa1,0x5a,0x26,0xdc,0x55,0xa2, + 0xf6,0x51,0xd7,0x24,0x8a,0x5c,0x7f,0x0a,0x5e,0x8f,0x14,0xe4,0x69,0x1e,0x86,0xba,0x37,0x91,0xb4,0x22, + 0x1d,0x34,0x2d,0x78,0x0b,0xf3,0x43,0xa8,0x87,0xe8,0xa9,0xa5,0xa2,0x9b,0xb2,0x5f,0x06,0xaa,0x56,0x32, + 0x1a,0xa2,0x1d,0x36,0x55,0x5b,0x70,0x04,0x71,0x18,0xe1,0x5d,0x48,0xff,0x86,0xc0,0x80,0xb0,0xc0,0x70, + 0x6f,0x44,0x25,0x45,0xfa,0x94,0x83,0x3d,0x20,0xad,0xc3,0x88,0xa7,0xa7,0xa6,0xd9,0x40,0x8f,0xe3,0x46, + 0xc6,0x05,0x29,0x03,0x3d,0xb1,0x89,0xcb,0x94,0x66,0xaf,0xa6,0x11,0x22,0x5d,0x76,0x7f,0x4a,0xb3,0x80, + 0x0f,0x26,0x8a,0x3e,0x51,0xb5,0x2e,0x86,0x4d,0xcc,0xe2,0xaf,0xda,0x8d,0xea,0x7b,0xe6,0x02,0xf5,0xc8, + 0xb0,0x63,0x00,0x44,0x42,0x2d,0x80,0x9a,0x71,0xec,0x39,0xa2,0x98,0x00,0xec,0xcb,0xf5,0x5a,0xf3,0xb5, + 0xfc,0x4a,0x67,0x90,0x2e,0x9c,0x77,0x0b,0xe7,0xed,0xc2,0x39,0x0a,0x6f,0xb6,0x0f,0xac,0x6f,0x3d,0x99, + 0xab,0x58,0xd9,0xb3,0x78,0x96,0x30,0x12,0x36,0xb6,0x36,0x91,0x37,0x02,0x4b,0xf7,0xd9,0xcf,0x3e,0xb3, + 0x16,0x82,0x29,0xcf,0xea,0x97,0xac,0xd3,0x5d,0xaf,0x7f,0x40,0xbc,0x15,0x79,0x81,0x4a,0x31,0x3b,0x7e, + 0xc7,0x5a,0x4d,0x7b,0xae,0x1f,0xa5,0xe7,0xe2,0xb7,0x0f,0x47,0x53,0xa1,0x7e,0x68,0x1b,0xc0,0x03,0xc0, + 0x10,0xc3,0xa0,0x3a,0x3c,0xce,0xee,0xdf,0xad,0x68,0x2c,0xb6,0x37,0xa0,0x15,0x7c,0xd1,0xac,0xfb,0xe0, + 0x17,0x6d,0x76,0xd0,0x15,0x2e,0x44,0x9f,0x91,0xcf,0x1b,0x2e,0x05,0xb4,0x2a,0xaf,0x44,0xc5,0x6e,0x0d, + 0x10,0x9e,0x76,0x64,0xc9,0xb4,0x69,0xfe,0x4d,0xb9,0x76,0xc2,0x2b,0x8f,0x12,0xfd,0xd1,0x9c,0x5b,0xc5, + 0x78,0x81,0xd3,0x9d,0xc0,0x4e,0xc4,0x41,0xf2,0xd6,0xd1,0xb0,0x65,0x92,0x79,0xc3,0x99,0xb3,0x59,0x27, + 0x97,0x2d,0x06,0xb9,0xb2,0x05,0xf5,0x4b,0xf1,0x46,0x67,0x33,0xa9,0x1f,0x55,0x46,0x44,0x2d,0x25,0x0a, + 0xc5,0xe7,0x69,0xa3,0x33,0x9f,0x0b,0x13,0x3e,0x6b,0xd7,0x1d,0x06,0x1e,0xfe,0x69,0xc5,0x1d,0x33,0x22, + 0x34,0x2d,0x8d,0x64,0xbe,0x36,0x4d,0x4a,0xde,0x16,0xa8,0x82,0x65,0x88,0x69,0xd3,0x54,0xb5,0x7d,0x20, + 0xf4,0x55,0x36,0xd6,0x0b,0xd8,0x4f,0x54,0xa5,0x91,0x9d,0x8b,0x35,0x5d,0xe9,0xe4,0xda,0x48,0x58,0xaf, + 0x21,0xbb,0x14,0x85,0x6f,0xca,0x1f,0x44,0x61,0x61,0xc0,0x80,0x6d,0x31,0x4c,0x9c,0xb8,0xe3,0x13,0x42, + 0x0a,0xbc,0x9f,0x4a,0x4f,0x02,0x54,0xeb,0xaf,0x18,0x99,0xd5,0x50,0x33,0xe2,0x07,0x85,0x47,0x41,0x93, + 0x2d,0x96,0x73,0x62,0xb1,0x00,0x75,0x25,0xc4,0xfc,0xe3,0x09,0x57,0xa0,0x91,0xc4,0x04,0x5d,0xd3,0xe2, + 0xec,0xf5,0x9a,0xbe,0x88,0x27,0xa6,0xfe,0x8d,0x0d,0x50,0x34,0x17,0x0c,0x55,0x1c,0xcf,0x4f,0xb4,0x62, + 0xa8,0xca,0x9c,0xbb,0x33,0x92,0x5d,0x04,0x10,0x27,0x25,0xc8,0x6e,0x83,0xd0,0xdd,0x36,0x88,0x12,0x09, + 0xb3,0xc3,0x7b,0x82,0x77,0x98,0xa7,0xc7,0xcf,0x3c,0x6d,0xa4,0xe6,0xd4,0x6e,0x81,0xd3,0x0e,0x4c,0x83, + 0x2e,0x1d,0xe3,0x73,0xd1,0x2c,0xc5,0xc4,0xf9,0xd0,0x13,0x8e,0x41,0x56,0x53,0x9e,0xd0,0xec,0xf7,0xa8, + 0x0b,0xcb,0xcc,0xa8,0x1d,0x47,0x99,0xde,0x89,0x9a,0x36,0x8d,0x46,0x11,0xab,0x98,0x4f,0xf3,0x22,0x65, + 0xde,0xf7,0x73,0xd4,0x6e,0x9a,0x59,0x4a,0xdb,0xa8,0xa6,0x4f,0x85,0x69,0x7e,0xae,0xbf,0x26,0x6a,0x4b, + 0x71,0x63,0x86,0x26,0x35,0x6c,0xfb,0x56,0x49,0x43,0x01,0xb4,0x5b,0x77,0xd6,0x19,0x5e,0x8f,0x6e,0xbc, + 0x17,0x90,0x73,0xdd,0xd9,0xba,0x63,0x56,0xd9,0x9f,0x37,0xf4,0xd5,0xe5,0xb0,0x1a,0xb5,0x66,0x93,0x5c, + 0xae,0x87,0xa0,0x66,0x1a,0xf8,0x42,0xc1,0x3a,0x6b,0x0b,0x34,0x0c,0xa1,0xae,0x19,0x5c,0x4f,0x18,0xc0, + 0x7b,0xa9,0xe8,0xee,0x25,0x50,0x7c,0x85,0x0d,0x6d,0x69,0x63,0x47,0x14,0x20,0xfa,0x0a,0x10,0xc8,0x83, + 0xc0,0x50,0xe0,0x34,0x1a,0x22,0x82,0xbe,0xa3,0x17,0x76,0x9b,0x64,0x06,0x30,0x5b,0xc0,0xce,0x00,0x05, + 0xe2,0x60,0xe0,0x23,0x05,0xd0,0x0c,0x42,0x93,0xa8,0x86,0x07,0xfe,0x98,0xa9,0xc3,0x53,0x18,0x13,0x55, + 0x8d,0xaf,0x41,0xf5,0xcd,0x78,0xf2,0xe9,0x3e,0x91,0x67,0x53,0xa2,0x28,0x3f,0x21,0x70,0xd4,0xa7,0xea, + 0xc1,0xa9,0xa5,0x38,0x3e,0x71,0x77,0x13,0x02,0x82,0xd3,0xea,0xf8,0x53,0x75,0x12,0x51,0x41,0x75,0x54, + 0xb1,0xd0,0x96,0xa9,0x8f,0x61,0xb5,0x2a,0x42,0x63,0x49,0x75,0x55,0x59,0xca,0xa5,0x4a,0x4e,0xed,0x0b, + 0xd5,0x92,0xd8,0x2a,0x51,0xc8,0x50,0xd3,0x54,0x13,0x94,0xda,0x1f,0xab,0x04,0x1d,0x3d,0x6c,0xc9,0x59, + 0xfe,0x84,0xd0,0xf6,0x17,0xf9,0x40,0x61,0xfd,0x20,0xca,0xdd,0x45,0x48,0xcf,0x22,0xba,0xa5,0x22,0x57, + 0x09,0xe8,0x3e,0xb3,0x7a,0xf8,0x0e,0x34,0xd7,0xe5,0x62,0x54,0x0d,0x4f,0xaf,0xb0,0x12,0x59,0x45,0x40, + 0x55,0x40,0x9a,0x7d,0x9a,0xd3,0xc9,0xb5,0x22,0x04,0x35,0xdd,0xdb,0xa3,0x55,0x27,0x3e,0x49,0x04,0x35, + 0x0c,0x0f,0x84,0xe7,0xd5,0xef,0x54,0xec,0x0e,0xf0,0xd2,0x65,0x53,0x96,0xf0,0xf5,0xfd,0x9d,0x18,0x1f, + 0x5e,0x9f,0xd9,0x9c,0xd0,0x47,0xe0,0xad,0xce,0xdc,0xa2,0xec,0x3b,0x15,0x14,0x30,0xdb,0xc6,0x78,0x6c, + 0x02,0x46,0xfd,0x21,0x00,0xdc,0x28,0x2a,0x54,0x67,0xdb,0x56,0xcf,0x92,0x8d,0x50,0x7c,0xb7,0x69,0x6a, + 0x0a,0xfa,0xd4,0x6b,0x76,0x65,0x9b,0x15,0x88,0x64,0x8d,0x56,0x9f,0x4c,0xaa,0x18,0x87,0xba,0x63,0xd5, + 0x78,0xc6,0x56,0x54,0x85,0xe9,0xc4,0x79,0x14,0x9b,0xbc,0x02,0x7f,0xc7,0x15,0xce,0x7f,0x44,0x9d,0x23, + 0x10,0xa6,0xf9,0x32,0xe5,0x91,0x17,0x9f,0x9b,0xaf,0x0a,0xfc,0x1d,0xf3,0xdf,0xf8,0x3c,0xba,0xb5,0xbf, + 0x4d,0xbb,0xbf,0x33,0x1f,0x5f,0x6e,0x29,0x94,0xd8,0x48,0xee,0x14,0xa7,0xee,0x8a,0x56,0xe1,0x27,0x59, + 0x2d,0x9a,0xf6,0xfe,0x74,0x2d,0xd8,0xb1,0x92,0x7b,0x16,0xdb,0x35,0xd7,0x30,0xa8,0xcd,0xa0,0x97,0x80, + 0xec,0x37,0x52,0x9e,0x3e,0xaa,0x71,0x9a,0xa0,0x46,0x34,0x17,0xde,0xb6,0x9f,0x66,0x4e,0x94,0x64,0xfc, + 0x05,0x59,0x45,0x04,0x99,0xab,0x42,0x64,0x28,0x6d,0x3c,0x1e,0xa9,0x6d,0x29,0x18,0xab,0x01,0x19,0x23, + 0xd3,0xa6,0xb9,0x73,0x25,0x9e,0xdc,0x22,0x1c,0x76,0xf6,0x2f,0x0e,0x65,0x66,0x7f,0x6e,0x71,0xf4,0x43, + 0x31,0x7e,0x9b,0xcd,0xe6,0xc8,0x29,0xaf,0x8a,0x1f,0xc4,0xbe,0x61,0x38,0xcb,0xe7,0x4d,0x56,0xf5,0x59, + 0x27,0xff,0x15,0xfd,0xe1,0xd0,0xe9,0xf8,0x36,0x51,0xdc,0x31,0x9d,0xe8,0xe1,0x46,0x6e,0x9c,0x1c,0x02, + 0xe4,0x2b,0x51,0x06,0x08,0x1f,0x3a,0x84,0xf8,0x14,0xb2,0xc8,0x51,0x3d,0xe2,0xd1,0xd4,0x2c,0x68,0xba, + 0xcc,0xa7,0xd8,0x47,0x4c,0xe7,0x7b,0x29,0x44,0x0f,0xd1,0x37,0x89,0x97,0x02,0xd1,0xec,0x19,0x0d,0xf6, + 0xe3,0x86,0x98,0x04,0x73,0xf8,0x80,0xeb,0xdb,0x85,0xe1,0xa0,0x91,0x93,0x41,0x56,0x49,0x1f,0x0a,0x64, + 0x4c,0xa4,0x61,0x23,0x30,0xe3,0x1a,0x7b,0x60,0xdc,0xaa,0xe1,0x08,0x5a,0x27,0x1b,0x6b,0x0c,0xe4,0x2d, + 0xf2,0x45,0x26,0x06,0x26,0x96,0xc1,0x05,0xc7,0xb4,0x2d,0x93,0x66,0x89,0xdf,0x76,0x60,0x20,0x2d,0x80, + 0xb7,0x1a,0x6e,0x6b,0x8e,0xa5,0x4a,0x42,0x77,0xa9,0x43,0x41,0xe5,0x83,0x94,0x85,0x35,0x15,0x3a,0x4a, + 0x9b,0x9b,0x83,0xae,0x3a,0xd9,0xfb,0xb6,0x01,0xe0,0x76,0xd5,0x5c,0x27,0x55,0x94,0xf9,0x15,0x95,0x83, + 0x43,0xbf,0x9e,0xdc,0x10,0xb6,0x5b,0x76,0x30,0x7e,0x55,0x75,0xa7,0x97,0x75,0xb7,0x97,0x93,0xa4,0x46, + 0x07,0x6d,0x67,0x27,0xc4,0x2f,0x2a,0x27,0x89,0xd5,0xf4,0x30,0xa3,0xcb,0x0f,0xf0,0xec,0xe7,0xf0,0x06, + 0xbe,0xe9,0x93,0xb7,0x73,0x4c,0xf0,0x2d,0xde,0xb1,0x77,0x6a,0x58,0x29,0x4c,0xdf,0x11,0xd1,0x66,0x36, + 0x6b,0x89,0x18,0x6b,0x4c,0xca,0x56,0xbc,0x67,0x2e,0xc3,0xcb,0x10,0x2f,0x11,0x4b,0xbd,0xf3,0x04,0x5b, + 0x6e,0xbd,0x6e,0x7c,0x17,0x65,0x5d,0x95,0xa9,0x24,0x85,0x6a,0x63,0x78,0x4a,0x40,0x33,0xcd,0x2a,0xe6, + 0xad,0xf0,0x1d,0x51,0x96,0x8d,0x09,0x69,0x0b,0x8d,0x1f,0x8a,0x5b,0xe3,0x9f,0xb1,0x54,0xd1,0x71,0xdd, + 0xb3,0x34,0xa3,0xba,0x41,0xe9,0x18,0xc1,0x3b,0x5b,0x3a,0xa1,0x85,0x8f,0xab,0x5e,0x88,0x4d,0xaf,0x21, + 0x06,0x54,0x20,0x5b,0x11,0x81,0x0d,0xa8,0xc3,0x8f,0x3d,0x92,0xf0,0xbc,0x3b,0x1d,0x09,0x1d,0x21,0xb4, + 0x30,0x70,0x0f,0x03,0x82,0x27,0xc2,0xc6,0xda,0x24,0x8e,0xdb,0x70,0x97,0x47,0x63,0xf6,0x4d,0x76,0xbe, + 0xab,0xc4,0x0e,0xe5,0x90,0xeb,0xc6,0xd5,0xf8,0xa8,0xa0,0x85,0x00,0x21,0x1d,0x77,0x89,0xff,0x6b,0xdb, + 0xa2,0x66,0x26,0x0b,0xf0,0xd7,0xe0,0x27,0xb7,0x15,0xde,0x34,0xe7,0x0b,0x64,0x8d,0xb4,0xc0,0xc0,0x1d, + 0x41,0xb9,0x48,0xf8,0x27,0x73,0xe2,0xec,0xd9,0xb1,0x92,0xf7,0xc0,0xb5,0xb0,0x72,0xf4,0xb2,0x40,0x91, + 0x88,0xa0,0xdc,0x27,0xc9,0x33,0xc3,0x1d,0xe8,0x07,0x16,0x21,0x8f,0x52,0x68,0xc5,0x69,0xd4,0xb0,0xe4, + 0x7e,0x5f,0xf3,0x71,0x40,0xe8,0xb0,0xa6,0xf9,0x1d,0x13,0xe3,0x57,0x2e,0x90,0x50,0x43,0x00,0x61,0x5f, + 0xc0,0x7e,0xc7,0xba,0x0e,0xce,0xe0,0x27,0xa4,0x6e,0x72,0x60,0x94,0x14,0xf2,0x76,0xb0,0xd0,0xc2,0xcf, + 0x96,0x10,0x5f,0x84,0x08,0x29,0xc1,0x85,0xcb,0x82,0xd9,0xf7,0x63,0x7d,0x7e,0x13,0xe1,0x94,0x9f,0xb4, + 0xce,0x56,0x7c,0xc5,0x82,0x2f,0x4b,0x31,0x4e,0x84,0xda,0xaf,0x89,0xc7,0x77,0x21,0xbd,0x9c,0x51,0x57, + 0x8b,0x06,0x94,0xe3,0xa7,0x66,0xeb,0x9e,0xa3,0x2a,0xcb,0xd0,0xc3,0xad,0x34,0x30,0x22,0xd8,0x77,0x80, + 0x51,0xc3,0x1e,0xd2,0x39,0xda,0x74,0x96,0xb8,0x8a,0xc6,0x9f,0xe8,0x4f,0xfc,0x18,0x7f,0xc2,0xab,0x2c, + 0x94,0x4f,0x92,0x16,0x74,0x0d,0xa5,0xde,0xb7,0x0c,0xe3,0xcf,0x0a,0xc0,0xbd,0xd3,0xa2,0x1a,0xd8,0x7f, + 0x03,0x67,0x6e,0x11,0xae,0xb2,0x5e,0x15,0xc6,0x30,0xf2,0xdd,0xe9,0x69,0x30,0xc8,0xd4,0xee,0x61,0xd4, + 0x3a,0x7f,0x4e,0x2d,0xa9,0xa0,0xbb,0x77,0x95,0x69,0x0b,0x1a,0x62,0x55,0xf1,0x49,0x33,0x08,0x8b,0x71, + 0x70,0x0a,0x1f,0xe7,0x20,0x90,0xf0,0x41,0xde,0x94,0x5c,0x65,0x9e,0x60,0xf6,0x56,0xf6,0x5a,0x82,0x93, + 0x3a,0xfe,0x92,0x09,0x3a,0x8e,0x17,0xab,0xd1,0xa9,0xf3,0x02,0xe0,0xe4,0xa3,0x4c,0x2b,0x53,0x07,0x68, + 0xb8,0xb2,0xc2,0xbd,0x23,0xd3,0x9a,0x67,0x6e,0x66,0x3b,0xe0,0x6c,0xad,0xc4,0x1a,0x0e,0xe6,0x56,0xb0, + 0xdf,0xca,0xeb,0xd7,0x34,0x94,0xc4,0xdb,0x8b,0x1f,0x3d,0x36,0x05,0x6a,0xf8,0x26,0x72,0x74,0x7d,0x29, + 0x7f,0xc6,0x8c,0x80,0xf0,0x14,0xc5,0x1e,0xff,0x55,0x89,0xfc,0xcc,0xd3,0xf4,0x11,0xea,0x84,0xfc,0x71, + 0xc4,0x9a,0xbd,0x7c,0x7c,0x7c,0x62,0x74,0xd4,0xb9,0xf6,0x06,0xdf,0x06,0xa3,0xc7,0x99,0x78,0x85,0x9d, + 0x96,0xc9,0x69,0x46,0x6d,0x9c,0x16,0x1c,0x17,0xfd,0x14,0xd2,0x31,0xfa,0x99,0x27,0x17,0x9c,0xda,0x24, + 0x97,0xfc,0xfb,0x7b,0x72,0x8d,0x9f,0x3c,0x39,0xc3,0xcf,0x22,0x39,0xe3,0xd4,0x59,0xb2,0xe0,0xdf,0x8f, + 0xc9,0x39,0xff,0x9e,0x25,0xd7,0xfc,0x7b,0x99,0x7c,0xc4,0x0f,0x71,0x70,0x88,0x97,0x71,0xba,0x4a,0x72, + 0x4e,0x3e,0x4f,0x3e,0x7a,0x3d,0xf8,0x24,0x93,0xe6,0x0b,0x09,0x89,0x41,0xd6,0x60,0x26,0xde,0x14,0xec, + 0x66,0xa4,0x23,0x9a,0x8a,0x7e,0xb7,0x91,0x17,0x6b,0x0d,0x56,0xe9,0x4c,0x3e,0xa9,0x13,0x1d,0x3b,0x74, + 0xae,0x63,0xbc,0xd4,0x89,0x6c,0xc3,0x65,0x61,0x02,0x73,0xe2,0x24,0x62,0x03,0x36,0xa2,0x78,0x52,0xfd, + 0xce,0xe1,0x0e,0x91,0xcd,0x78,0xbc,0x87,0x38,0x2e,0x32,0xb6,0x43,0xd8,0xb4,0xed,0x3a,0x35,0x51,0x94, + 0x8b,0x23,0x5c,0x2a,0x34,0x20,0xa2,0xa6,0xc0,0x23,0x6e,0x77,0x32,0x9a,0x18,0xd7,0x40,0xb3,0x73,0x92, + 0x54,0x79,0xe7,0x45,0xe2,0x9a,0x0c,0x23,0xb5,0x75,0x26,0xc1,0xac,0xdb,0xbd,0x61,0x08,0x88,0x29,0x71, + 0x5a,0x8b,0x6d,0xdd,0x58,0x53,0x9d,0x5b,0xc1,0x4c,0x8c,0xb4,0xe4,0x0e,0x87,0xd8,0xd7,0x88,0xd7,0x99, + 0x17,0x94,0x6c,0xf8,0xe4,0xcc,0xf5,0x5c,0x8d,0xca,0x93,0x88,0x24,0x34,0xa6,0x72,0x13,0xdf,0xde,0x86, + 0x51,0xb5,0xb4,0x1b,0xf1,0x68,0x99,0x87,0xd9,0x2d,0x26,0xc7,0xac,0x69,0x15,0xb3,0x63,0xcf,0xf6,0x0c, + 0xf3,0xab,0x09,0x1e,0xd1,0xad,0x64,0x90,0x64,0xf1,0x50,0xe6,0xd4,0x47,0x8b,0x7a,0x4e,0xe1,0x1f,0x28, + 0xf6,0x77,0x72,0xee,0x27,0x73,0x23,0x9b,0xa3,0xf2,0x7d,0x36,0x1e,0x7a,0x42,0x56,0xcc,0xc0,0x43,0x6a, + 0x96,0x4f,0x23,0x4f,0x6b,0x19,0x7a,0x01,0xae,0x2a,0xf1,0x46,0xc6,0x11,0x45,0x05,0x59,0x51,0xc3,0x72, + 0x47,0xfd,0x0c,0xd7,0x5a,0x27,0x5c,0x73,0x69,0x5a,0x2c,0x67,0x42,0xcb,0x4e,0xbd,0x32,0x26,0x69,0xa4, + 0xeb,0x44,0x80,0x21,0xc2,0x33,0xba,0x56,0xfd,0xd6,0xa9,0xd7,0x4b,0x65,0x39,0x99,0x88,0xfa,0x78,0x59, + 0xea,0xc8,0xa8,0x2c,0x5c,0x52,0x22,0x12,0x74,0x42,0x35,0x73,0x1f,0x70,0xcd,0xbc,0x67,0x44,0x55,0x35, + 0x8e,0xaa,0xca,0x1e,0x10,0xf5,0x42,0x68,0x8f,0x91,0xf6,0x1d,0x2a,0x34,0xc9,0xde,0xf3,0xa9,0x14,0x46, + 0x1b,0xb5,0x4a,0x4e,0x5b,0xda,0x18,0xd7,0xff,0x04,0x72,0xd5,0x92,0xe0,0x7c,0xbd,0x9e,0x87,0xac,0x00, + 0xea,0x14,0x6d,0x4f,0x12,0x13,0x64,0x12,0x3d,0x0c,0xfd,0x0a,0x39,0xe8,0xc9,0x34,0xa9,0xc2,0x95,0x9a, + 0x39,0x97,0x87,0x10,0x0b,0xd1,0x67,0xbf,0x33,0x65,0x2f,0xc7,0x71,0xe6,0xcf,0xe9,0xde,0x9e,0xa4,0x72, + 0x15,0x71,0x13,0x4e,0x9d,0xf8,0x33,0xea,0x8d,0xb7,0xec,0x15,0xe0,0x0f,0x61,0x79,0xd5,0x49,0xe2,0xba, + 0x14,0xea,0x32,0x6b,0xed,0x8f,0x82,0xc6,0xac,0x33,0x60,0x10,0xc0,0xc5,0xdc,0xf2,0xb5,0x57,0x8f,0x8b, + 0xea,0x77,0x4c,0x13,0x00,0x6b,0x4a,0x0c,0xc1,0x3c,0xbd,0x1e,0xdb,0x82,0x34,0x15,0x31,0xb1,0xa3,0x47, + 0x12,0xf1,0xcc,0x57,0xc5,0x75,0x06,0x9a,0x79,0xc0,0x17,0xfa,0x9f,0xcb,0x4c,0x2a,0x5d,0xf3,0x7a,0x7d, + 0xff,0xe0,0x40,0x77,0x4c,0x87,0x51,0x83,0xc7,0xfa,0x5f,0x69,0x41,0xae,0x88,0xe0,0xaa,0xcc,0x97,0x11, + 0x90,0xd8,0xee,0xa1,0xb2,0xed,0x8d,0x5b,0x23,0x8c,0xdd,0xf7,0x1b,0x07,0x7b,0x46,0xad,0xb0,0x09,0x57, + 0x84,0x86,0xe7,0xb4,0x79,0x2c,0x1c,0x5f,0x26,0x2b,0xb5,0x48,0x4a,0x75,0x4e,0x38,0xef,0x9a,0x0e,0x94, + 0x33,0x3a,0x5b,0xae,0xe8,0x30,0x20,0x4c,0x77,0xd5,0x12,0x3d,0x26,0x97,0x26,0xe1,0x65,0x46,0xa8,0x5e, + 0x02,0xe9,0x2d,0x94,0x6e,0x82,0x38,0x7a,0x83,0xe8,0xe3,0x6b,0xd5,0xa4,0xe7,0xf1,0xd9,0x46,0x5d,0x8d, + 0xca,0xa4,0x64,0x32,0xfd,0x35,0xd0,0x84,0xe2,0x28,0xc0,0x44,0xbf,0xce,0x3d,0x23,0x4d,0x8f,0x93,0x42, + 0x94,0x68,0xe4,0x82,0x0c,0xe4,0x07,0x3e,0x48,0x88,0x7e,0x64,0x26,0x3b,0x60,0x89,0x73,0xa7,0x40,0x06, + 0x81,0x17,0x95,0xc8,0x0b,0xb8,0xf0,0x8e,0xc2,0x42,0xce,0x1e,0x96,0x03,0x2f,0x0d,0x45,0x18,0xb1,0x42, + 0x43,0x7f,0xc1,0x75,0x69,0x63,0x92,0x62,0xa8,0xdd,0xf7,0x84,0xf2,0x1b,0x51,0xff,0x88,0xc2,0x8b,0xc6, + 0xf8,0x9b,0x1c,0x9b,0x2f,0x40,0x32,0x9d,0xa5,0x93,0x8f,0xf6,0xa4,0xe6,0x42,0x31,0x17,0xea,0x96,0xd9, + 0xd0,0xfa,0x19,0xda,0xbe,0x14,0xea,0x78,0xe6,0x76,0x7b,0x2b,0x48,0x96,0x2d,0xe8,0xcc,0xb7,0x08,0x99, + 0xa6,0x16,0x73,0xdc,0x20,0x70,0x70,0x21,0x14,0x2c,0x1c,0xb7,0x5d,0xb1,0x26,0x84,0xa5,0x4d,0x13,0xce, + 0x1d,0xc1,0xb4,0x62,0xea,0xd6,0xc4,0xdf,0x24,0x1a,0x7f,0x15,0x8d,0xbe,0x27,0x94,0x3f,0x57,0xb4,0x75, + 0x40,0x83,0xad,0xd7,0x78,0x9d,0xc8,0xeb,0xa1,0x25,0x56,0xeb,0xcd,0x06,0xd2,0x71,0x8d,0xf5,0x4c,0x87, + 0x4c,0x87,0xd3,0xb9,0x33,0x93,0xf6,0x96,0xab,0x4d,0x07,0x64,0x76,0xc0,0xba,0xcf,0x69,0xbb,0xa7,0x51, + 0x4b,0x32,0x3e,0x21,0x8c,0x36,0x3f,0x49,0x9e,0x85,0x73,0xea,0x0c,0x9f,0xf7,0x9a,0x54,0x03,0x62,0xe2, + 0xb1,0x12,0x6c,0x3c,0xc4,0x69,0x65,0x5e,0x15,0x72,0xb8,0x46,0x97,0x23,0xaf,0x3c,0xbd,0x2b,0xe6,0x51, + 0x3f,0xe1,0x5c,0xa2,0x29,0x67,0x2b,0x13,0x42,0x7a,0xe9,0x50,0xa8,0x5b,0xcf,0xa6,0x60,0x45,0x07,0xa4, + 0x5a,0x39,0xcb,0xa0,0x2d,0xb5,0xde,0xcc,0x3f,0x56,0xd5,0xcc,0x33,0xa1,0x4f,0xe1,0x6a,0xc9,0xfa,0x8a, + 0x90,0x4a,0x01,0xf0,0xa1,0x55,0x17,0x92,0x07,0xf0,0xc5,0x99,0x89,0x94,0xa1,0xfd,0x39,0x83,0xb9,0xcb, + 0x4c,0x8e,0x49,0xe9,0xe4,0x14,0xd4,0x12,0x8b,0xa6,0xf1,0x4b,0x2f,0xe2,0xd2,0xf0,0xba,0x50,0xfe,0xb4, + 0xa7,0x88,0x41,0x44,0x9b,0x4d,0x83,0xc0,0x92,0xca,0x31,0x03,0x5a,0x62,0x5e,0x97,0x4c,0x0f,0x70,0x43, + 0xcb,0x68,0xb3,0xeb,0xe3,0xf4,0xcc,0x28,0x22,0x33,0xab,0x83,0xec,0xd8,0x20,0xbc,0xa8,0x7c,0xd9,0xa8, + 0xa6,0x5d,0x5f,0x54,0x22,0xd6,0x94,0xaf,0x20,0xfe,0xcf,0x93,0xe7,0x70,0x4f,0x1a,0xd9,0x14,0x48,0xf9, + 0xfa,0x04,0xc2,0x1e,0x44,0x6b,0x58,0xc8,0xec,0x23,0x7c,0x5f,0xf5,0x23,0x01,0x57,0x4e,0x44,0x08,0x71, + 0xc3,0x0c,0x65,0x68,0xf6,0xc2,0x83,0x7b,0x09,0x71,0x3a,0xb1,0xfa,0x10,0xf1,0xaf,0x08,0x2e,0x57,0xd9, + 0xbe,0xc5,0xff,0xfb,0x44,0xce,0x83,0x14,0x18,0x84,0x17,0xe3,0x80,0x5e,0x2e,0x98,0xa9,0x28,0x55,0xaf, + 0x5f,0x47,0xaa,0x6e,0x1e,0x13,0xaa,0x8a,0x2b,0x65,0x0d,0x9b,0xe2,0x99,0xb2,0x24,0x66,0x3c,0x65,0xc4, + 0x34,0x71,0x98,0x8a,0x98,0xf5,0x55,0x24,0xc1,0x7c,0x2e,0xd5,0x42,0x9d,0xab,0x6b,0x75,0xa6,0xae,0x3c, + 0xdb,0x6a,0xc4,0xb8,0xd7,0xe4,0x0e,0x91,0x4d,0x46,0x5d,0xd9,0xe6,0x5b,0x52,0x36,0x7b,0x4b,0x61,0xc8, + 0x10,0x4e,0x12,0x6c,0x83,0x94,0x88,0x7c,0xe9,0x52,0x44,0x0b,0x3c,0x97,0x8c,0x57,0x95,0x27,0x73,0xce, + 0x5b,0x44,0x54,0x43,0x5f,0x83,0xd2,0x48,0x8d,0xbd,0x83,0x55,0xc5,0x12,0x1a,0x1e,0xb5,0x0a,0xe4,0xac, + 0x61,0x47,0x5c,0x32,0xf0,0x6a,0xc4,0xc1,0xfa,0x25,0x79,0x97,0xf1,0x16,0x9f,0x8e,0x3a,0x9d,0xac,0xfb, + 0x0f,0x5f,0x44,0xf8,0x07,0x54,0xa7,0x10,0x7d,0x10,0xdc,0xf8,0x94,0x2c,0xa1,0x78,0x91,0x94,0xc5,0x72, + 0x0f,0x80,0xf5,0x7e,0xc2,0xcd,0x4e,0x30,0x65,0xaa,0xc6,0x44,0xdf,0x84,0xf3,0xa4,0x8e,0xc6,0xc7,0x1f, + 0x69,0x98,0x27,0x1d,0x23,0xdb,0xb9,0x0b,0x47,0x45,0x44,0x84,0x0b,0x20,0x83,0xb9,0x44,0x2f,0x11,0x48, + 0x46,0xe4,0x4e,0x30,0x85,0x2e,0x7d,0x53,0xe8,0x8c,0x26,0xac,0x3c,0xae,0x4f,0xa2,0x3e,0xff,0x55,0x22, + 0x6e,0xe8,0x1c,0x9b,0x1d,0x13,0x1d,0x65,0x83,0x81,0x9c,0x74,0xac,0xf2,0x27,0xd1,0xd8,0xb8,0x68,0x7d, + 0x73,0x40,0x23,0xfc,0x36,0xa4,0x1a,0xf3,0x70,0xa2,0x60,0x76,0xc2,0xfe,0xf4,0xc4,0x28,0x12,0x99,0x46, + 0x23,0xa3,0x99,0xf9,0x96,0xf0,0x25,0x30,0x00,0x50,0xd3,0xc7,0x70,0xc5,0xca,0xb5,0xc1,0x84,0xf2,0x44, + 0x91,0x8d,0xfb,0xa9,0x74,0xf8,0x7e,0xc2,0x0b,0x9e,0x46,0x70,0x46,0x0b,0x18,0xc5,0xb0,0x79,0x1c,0xa3, + 0x8a,0x71,0xa7,0x02,0x04,0xa2,0x12,0x6b,0x06,0xf9,0x2a,0xfc,0x08,0x7c,0x18,0x7f,0x4b,0x7f,0xa5,0xcd, + 0xee,0x07,0xd2,0x5c,0x4c,0xc8,0xb8,0xb4,0x72,0x32,0x5e,0xf8,0x09,0xb4,0x91,0x4c,0x72,0x4c,0xc0,0xa7, + 0x0a,0x30,0x30,0x5c,0x31,0xdb,0x4a,0xec,0xf7,0x25,0xc0,0x3c,0x18,0xa4,0x32,0x30,0xfa,0x7b,0x1a,0x98, + 0xce,0xa2,0x51,0x87,0xf7,0x36,0xb4,0x2e,0x5a,0xf6,0x13,0x63,0x19,0x9f,0x55,0x6c,0xb2,0xf1,0x17,0xf5, + 0x2a,0xdb,0x5c,0x3b,0x21,0x11,0x0b,0xaf,0x92,0xe5,0x47,0x5e,0xc2,0x81,0xa9,0x27,0xeb,0xf8,0x44,0x65, + 0x9e,0xb9,0x3a,0x5b,0x87,0x6c,0x89,0x47,0xcb,0x68,0x1c,0xce,0x92,0x7c,0x78,0xe7,0xb2,0xa0,0x83,0x15, + 0xd1,0xaa,0xe4,0x69,0x58,0xd4,0x2c,0x0b,0x3a,0x27,0xb2,0x29,0x3d,0x47,0x40,0xd7,0x7a,0x89,0x40,0x08, + 0x84,0x6f,0x56,0x90,0x8c,0xe5,0xf5,0xdb,0xac,0xce,0x2a,0x22,0x7b,0x28,0x9b,0x52,0xc7,0x1a,0x9b,0x50, + 0x16,0xfb,0xf1,0xbe,0x99,0xa7,0x0d,0x02,0x5b,0xe8,0x8f,0xf1,0x1d,0xf6,0x5f,0x1b,0x7f,0xe4,0x4c,0xb0, + 0x26,0x2f,0xc2,0xdc,0x93,0xd0,0x59,0x54,0x54,0x07,0xa0,0x2f,0xc7,0xc4,0x02,0x4d,0xe9,0xdb,0x1c,0xc7, + 0x4d,0x14,0xeb,0x66,0xca,0xde,0xda,0xa2,0x78,0x95,0x50,0xf1,0x52,0x8a,0x7b,0xa2,0xd0,0x15,0x46,0xe9, + 0x39,0xaa,0x54,0x61,0x6e,0x59,0x9a,0x1c,0x7e,0x61,0x25,0x71,0x48,0x65,0x95,0xe5,0xe7,0xc5,0x6b,0xe3, + 0xce,0x4c,0x93,0x42,0x30,0xc0,0x9b,0xdf,0xa0,0x3b,0x96,0x5a,0x36,0xf4,0x85,0x41,0x68,0x9e,0x2d,0x36, + 0x07,0xa4,0x72,0x39,0x76,0x73,0x3d,0x98,0xf0,0x06,0xd3,0x1c,0x9b,0x2b,0x40,0x9b,0x8d,0xe8,0x9f,0xb9, + 0x86,0x33,0xe2,0xc0,0xe6,0x43,0xb6,0x54,0x28,0x04,0xb3,0xd1,0x3e,0xe7,0x1e,0x12,0x26,0x67,0x62,0x7c, + 0x15,0xc5,0x40,0x39,0x1b,0x0f,0x93,0x79,0xde,0x19,0x7e,0xc4,0x39,0x2b,0x26,0x60,0xc5,0x6c,0xbd,0x5a, + 0x66,0x95,0x39,0x81,0x50,0x4e,0xa7,0x30,0x09,0xc2,0xa6,0xa7,0xfc,0x6e,0x2c,0x25,0x6e,0xda,0xef,0x89, + 0x71,0x30,0xe9,0x5a,0x5b,0x23,0x14,0x9b,0x23,0x44,0x70,0xa6,0x09,0xb3,0x69,0x1c,0xdf,0x40,0x3a,0xd6, + 0x59,0x4a,0x2c,0xbf,0x4e,0xb1,0x07,0x64,0x69,0xf4,0xf5,0xe5,0xc9,0xae,0xd8,0x42,0x42,0x18,0xc0,0x3e, + 0x92,0x08,0x21,0xd3,0x40,0x9c,0xdd,0x63,0x8d,0xbb,0x25,0xba,0xd2,0x24,0x2c,0xa1,0xb4,0x22,0xe9,0xca, + 0x4b,0xc7,0x45,0xcc,0xda,0xf5,0x2d,0x3b,0x38,0x71,0x42,0xb0,0x7d,0x11,0xe5,0x49,0xe6,0x2b,0x4f,0xc2, + 0xc6,0x09,0x71,0x41,0x76,0x7e,0x93,0x1c,0xd0,0x9a,0xb4,0xd3,0x1e,0x1c,0x60,0x81,0x74,0x44,0x2e,0x24, + 0x38,0xb7,0x38,0xb7,0xdb,0x0a,0x23,0x9c,0x57,0x18,0xa3,0xe7,0x74,0xbf,0x61,0xef,0x76,0x78,0x07,0x77, + 0x27,0x8d,0x0e,0xac,0xd0,0x5b,0xc0,0xe4,0x39,0x14,0xcf,0xed,0x32,0xda,0xec,0x8a,0x23,0xce,0xb8,0x8d, + 0x72,0xdc,0x70,0xea,0x49,0x82,0x50,0x28,0xdb,0xc6,0x03,0x4f,0x33,0x1b,0x8a,0xe4,0x14,0x7e,0xfd,0x2d, + 0x23,0xcb,0x37,0x2d,0x53,0x08,0xf6,0x44,0xc4,0x99,0xde,0x21,0x1a,0xd8,0x09,0xd3,0xfb,0xea,0x49,0xd6, + 0xa2,0x4f,0xba,0xab,0x33,0xf6,0x5d,0xdc,0xbf,0xd9,0x3f,0x8c,0xb7,0xd5,0x32,0x63,0xdf,0x39,0xbf,0x53, + 0x1a,0x5a,0x39,0xb5,0x1b,0xda,0x78,0x07,0x12,0xf1,0xeb,0x04,0xb8,0xdd,0xc4,0x3b,0x28,0x24,0x54,0x35, + 0x7b,0xa7,0x36,0x5a,0x2e,0xee,0x49,0x10,0x7f,0xeb,0x58,0x03,0xb0,0x46,0x94,0xe1,0x14,0xba,0x16,0x06, + 0xcf,0x53,0xc6,0x73,0x5d,0xb8,0x34,0x11,0x75,0x61,0xdf,0xce,0x26,0x8d,0x9a,0x3b,0x78,0x03,0xa1,0xd8, + 0x96,0x61,0xd1,0xa8,0x86,0xac,0x98,0x0f,0xfb,0xe7,0xa0,0xc8,0x4a,0x76,0x12,0xdc,0x78,0xe2,0x9e,0xe7, + 0x5b,0x6a,0x05,0x36,0xb9,0xdf,0xcd,0xd9,0x35,0x8b,0x51,0x0c,0x3c,0xd3,0xf0,0xbb,0x5e,0xe7,0xae,0x85, + 0xe7,0x9a,0x58,0x1e,0xde,0x99,0xd2,0x10,0xab,0x12,0xbe,0x59,0x99,0x55,0xf1,0xaf,0xf8,0x0e,0x4a,0xcf, + 0xdc,0x3f,0xf3,0x3d,0xb0,0x6f,0x44,0x9e,0xfc,0x18,0x2a,0x81,0xf8,0x19,0xef,0x79,0x97,0xa0,0x0a,0xff, + 0x8d,0x8e,0x5a,0x2e,0x05,0x1b,0x32,0x7e,0x22,0xd2,0x42,0x3f,0x21,0x8a,0x31,0x7e,0x4f,0x62,0xfd,0xe0, + 0xdb,0xef,0xb7,0x97,0x3f,0x1b,0x37,0xe3,0x6c,0x10,0x20,0x3c,0x4d,0x9c,0xc5,0xe0,0x0f,0x3d,0xe3,0xee, + 0x57,0x3e,0x80,0x6d,0x01,0x4a,0xdf,0x31,0x48,0x93,0x85,0x18,0x7f,0xb4,0x3b,0x55,0xe9,0xb4,0x73,0xf9, + 0x83,0x92,0x77,0x28,0x91,0xbb,0x09,0xea,0xc4,0xc6,0x03,0x91,0xc5,0x17,0xad,0x41,0x20,0x80,0xff,0x83, + 0x84,0x7a,0x11,0x29,0xfa,0x2d,0xbc,0x5d,0xc9,0xfa,0x98,0x6e,0x6b,0x82,0x2e,0x83,0x60,0xd4,0x92,0xc4, + 0x65,0xda,0x77,0x3f,0x6c,0x74,0x8c,0x5c,0x54,0xd7,0xf8,0xd5,0xf1,0x06,0xee,0x05,0xe8,0xb6,0x4d,0xbb, + 0x3f,0xec,0x39,0xb7,0x1e,0xd4,0x97,0xe7,0x41,0x1c,0x2c,0xd2,0xe6,0x82,0x6d,0x8a,0xc6,0xf2,0xb8,0xa5, + 0x18,0x7a,0xeb,0x7d,0xda,0xd3,0x8e,0x8d,0x8c,0xf7,0xfb,0x2a,0xab,0xae,0xdf,0x65,0xd0,0x36,0x97,0x72, + 0x57,0xcc,0x6d,0xf1,0x2e,0xa7,0xf9,0x65,0xd0,0xb2,0xd0,0x7b,0xd4,0xd9,0x1f,0x6c,0x50,0x59,0x65,0xb3, + 0x8e,0x03,0x90,0x71,0xaa,0xce,0x7d,0x0f,0x6d,0x03,0x9a,0xc0,0x0a,0xf0,0xbd,0x2e,0x61,0x16,0x4f,0xdf, + 0xd6,0xa3,0xae,0xd6,0xa4,0x64,0x63,0xa7,0x15,0xff,0xe2,0xb0,0xc7,0x2f,0x0e,0x56,0x1c,0xaa,0x78,0xd4, + 0x34,0x7b,0xec,0xda,0x7f,0x5e,0x3c,0x2b,0xab,0xde,0x5a,0xf0,0xd7,0xa2,0x89,0x9c,0x70,0xf0,0xde,0x1e, + 0x27,0x31,0x16,0x36,0x75,0x13,0x4c,0xc8,0x43,0xee,0x01,0xeb,0x4f,0x22,0xa3,0x76,0xf1,0xaf,0x40,0xc1, + 0xe1,0x78,0xa7,0x5f,0x16,0x24,0xc9,0x1e,0xd4,0xc7,0xbd,0xef,0xfa,0xcd,0x2a,0x3d,0x67,0x1b,0xd6,0x68, + 0xcb,0x53,0x8e,0x92,0x42,0x54,0x00,0x3f,0x77,0x25,0x2b,0x50,0xc6,0x89,0x74,0x84,0x4f,0x57,0xa0,0xcd, + 0x56,0x20,0x87,0x0a,0xae,0x86,0x61,0xa5,0xe7,0x5c,0x04,0x9e,0x89,0x63,0xc5,0x2b,0x56,0xc5,0x41,0x15, + 0xcb,0x4e,0x63,0x9f,0x29,0x63,0xc5,0x85,0x30,0x9e,0xa3,0xa5,0xcf,0xd9,0x5b,0x91,0x7e,0x88,0x0f,0xe4, + 0x01,0x83,0x96,0xc0,0x68,0x1e,0x42,0x86,0xf4,0x06,0x61,0xac,0x2e,0xca,0x39,0xf1,0xe8,0x5c,0x43,0x4b, + 0xd2,0x84,0x71,0xfa,0x09,0xa0,0x7b,0xdb,0x29,0x5a,0xee,0xe6,0x1b,0xe7,0x67,0x22,0x9a,0xb0,0xca,0x63, + 0xf1,0x80,0xc3,0x66,0xca,0x89,0x6c,0xc8,0x1f,0x24,0xd5,0x68,0x30,0xc8,0x69,0xbb,0xc2,0x40,0x31,0x3f, + 0xd1,0x64,0x74,0x98,0xe2,0x80,0x77,0x6e,0x94,0x9e,0x5b,0xc9,0x7b,0x0d,0x93,0x3a,0x72,0x9d,0xe7,0xcd, + 0xb5,0x5e,0x37,0xdd,0xa4,0xf6,0xbc,0x1b,0x48,0x16,0x3e,0x38,0x41,0xfc,0x8c,0x4b,0xb8,0xe4,0x35,0xf2, + 0x50,0x27,0xdf,0x65,0xdb,0xb5,0xba,0xa0,0x01,0xe0,0xaf,0xa8,0xc4,0x56,0x23,0xb8,0x9c,0xd8,0x94,0x98, + 0x13,0xa9,0x41,0xa4,0xaf,0x66,0xa1,0x0a,0x91,0xad,0x54,0x49,0x2d,0x7c,0xfc,0x04,0x3f,0xd5,0x98,0x66, + 0x8d,0xa6,0xf8,0x03,0x44,0x5e,0x89,0xf1,0xb2,0xfd,0x03,0x3c,0xad,0x56,0x71,0x06,0x0a,0x17,0x12,0xa8, + 0x1c,0x36,0x11,0xc0,0xfe,0xf4,0xe3,0xf6,0x95,0xc8,0x9b,0xa7,0x7b,0x7b,0x2b,0x03,0xd4,0xc4,0x99,0xc8, + 0xd7,0x70,0x48,0xeb,0xfb,0x36,0x2f,0x88,0x06,0xe7,0x6f,0xe6,0xf6,0x1b,0x6c,0xe1,0x79,0x2b,0xe2,0xcc, + 0xac,0x4f,0xfe,0x2d,0xb6,0x77,0x73,0xdf,0xe2,0x8e,0xda,0x9a,0x63,0x1c,0x81,0xa9,0x56,0x9a,0xdc,0x8c, + 0xca,0xf1,0x0f,0x70,0x86,0x92,0xe4,0x00,0x72,0xe6,0x59,0xc8,0x16,0xff,0x2b,0x1b,0x95,0x83,0x0b,0x20, + 0xba,0x9f,0x0e,0xea,0x77,0x6b,0x8b,0xab,0x4e,0x8b,0x2b,0x6e,0xb1,0x3b,0x09,0xba,0x65,0xe6,0xb8,0xed, + 0x7c,0xd7,0xd1,0x84,0x5d,0xca,0xe8,0x2b,0x9e,0xf6,0x60,0x55,0xc8,0xc4,0x64,0xf4,0x0f,0xc2,0xd6,0xb6, + 0x39,0xee,0x77,0xd9,0x36,0x64,0xf4,0xc5,0xc5,0x69,0xd9,0xdc,0x96,0xb2,0xbc,0xdb,0x66,0x9c,0xa1,0x98, + 0x1a,0x47,0x43,0x1d,0xb2,0x9b,0x15,0xde,0x95,0x7b,0x4b,0xae,0xa1,0x1a,0x3a,0x26,0xe0,0xa7,0x96,0x86, + 0x55,0x7a,0xf5,0x8a,0x09,0xa7,0x9c,0x09,0xa8,0x41,0x30,0x0c,0x06,0xbe,0xb1,0x47,0xee,0x57,0x03,0x39, + 0x80,0x44,0x44,0x1d,0x06,0x51,0x74,0x42,0x15,0xc0,0x29,0x7b,0x46,0x7c,0x51,0xe3,0xf1,0x45,0x0e,0x2c, + 0x03,0xca,0x47,0xad,0x4e,0x77,0xe5,0xf9,0x43,0x38,0xa3,0x02,0x1b,0xad,0x20,0x13,0x90,0xe1,0x1f,0x6d, + 0x0e,0x59,0xb2,0xbd,0x63,0x19,0x16,0x12,0x3d,0x43,0x97,0xd7,0x36,0x8f,0x15,0x6c,0x1e,0x2b,0xb9,0xc5, + 0x80,0xd1,0xbf,0x6b,0x9b,0xef,0x26,0x91,0x11,0xe1,0xb4,0x77,0x36,0x91,0x9e,0x7f,0x43,0x16,0x7a,0xd4, + 0xce,0xb6,0x35,0x36,0xcf,0x77,0xd8,0x30,0xb6,0x12,0x7f,0xa8,0x36,0xc1,0x99,0x17,0x17,0x59,0x95,0x73, + 0x10,0x6c,0x9a,0x9b,0x2c,0x14,0x24,0x68,0x91,0x5f,0x66,0xcc,0xff,0x25,0x41,0x33,0x02,0xcc,0x13,0x51, + 0x63,0x18,0xcd,0x24,0xf1,0x3f,0x61,0x71,0xf8,0x3c,0xa9,0x3a,0x49,0xcc,0x7b,0x69,0xe9,0x0f,0x62,0x1c, + 0xb4,0x0a,0x24,0xac,0x5c,0x9e,0x6b,0x1f,0x08,0xa6,0x0c,0xe7,0x51,0x9a,0xcc,0x41,0xcd,0x4f,0x84,0x71, + 0x49,0x09,0xe4,0x21,0x1b,0x05,0x8f,0x36,0x0a,0x5f,0x14,0xeb,0xf5,0x2b,0xd8,0x69,0x68,0x79,0x37,0x84, + 0x10,0xf2,0xa4,0x8b,0x19,0x91,0xba,0xce,0xf7,0x2a,0x9e,0x44,0xd8,0x75,0x25,0x1b,0xd8,0xe7,0x40,0xde, + 0x63,0x04,0x9c,0x43,0xb4,0x58,0x1b,0x06,0xfc,0xd5,0xbb,0xb0,0x22,0xe0,0x45,0x26,0x31,0xcc,0xf8,0x41, + 0xf0,0xcb,0x4e,0x21,0x64,0x7a,0xab,0xf0,0x83,0xaf,0xf7,0x2f,0xd8,0xef,0x27,0xcd,0x39,0x6a,0xf5,0xd6, + 0x87,0x2c,0x00,0x49,0x02,0xa2,0xaa,0xcb,0xab,0x19,0xed,0x88,0x9a,0x76,0x47,0x56,0x04,0x12,0x0a,0x2c, + 0x78,0xfa,0xf2,0xd1,0xd3,0x27,0xda,0x04,0x5a,0x78,0xf9,0x71,0xd0,0x54,0x34,0x96,0x18,0xba,0xfb,0x56, + 0xb4,0x72,0x76,0x65,0xb3,0x66,0x4e,0x4d,0xae,0xe3,0x02,0xb4,0x8b,0x70,0x2f,0x70,0x5b,0x68,0x4a,0xe5, + 0x50,0x6f,0x31,0xd6,0xcf,0xb1,0xd4,0xeb,0x19,0x4a,0x7d,0xae,0xdb,0x76,0x52,0x1a,0x5c,0xaa,0xd1,0x6a, + 0x45,0xb2,0x1a,0x6b,0x95,0x00,0x3a,0x9e,0x0d,0x6b,0xfa,0xc6,0x2e,0x66,0x31,0x54,0xe4,0x05,0x9c,0xd6, + 0x9e,0xc1,0x15,0xe2,0xe8,0xe9,0xcf,0x47,0x0f,0xdf,0x3e,0x7d,0xd8,0x1a,0x35,0xa5,0x2f,0xdd,0x19,0xaa, + 0x67,0x87,0xe3,0x5c,0xe6,0xd9,0xf2,0xc2,0x90,0x4c,0xbe,0x89,0x5f,0x43,0x84,0x76,0xb9,0x7c,0x4e,0xc4, + 0xc3,0x34,0x27,0x6c,0x03,0x83,0x99,0xf4,0x3c,0x15,0xa4,0xa8,0x4c,0x57,0x3a,0x17,0xaf,0x08,0xe5,0x00, + 0x03,0x90,0x51,0xd6,0x73,0x2f,0x8b,0xcd,0x56,0xa6,0xe1,0x64,0xf7,0x60,0xd3,0xb3,0x0c,0x1e,0x24,0x7c, + 0xdf,0xd9,0x8f,0x86,0x64,0xe3,0x78,0x3a,0xa9,0xde,0x2b,0xb2,0x29,0x33,0x48,0xbc,0x3d,0xe6,0x00,0xbb, + 0xad,0xd4,0x7c,0x01,0xcb,0x28,0x20,0x7a,0x05,0x23,0xd4,0x2d,0x94,0xea,0x42,0x91,0xd5,0xa6,0xf4,0xd2, + 0xf5,0xe6,0xa2,0x32,0x78,0x47,0x10,0x49,0x39,0x62,0x51,0x4a,0x97,0xac,0x8c,0x46,0x11,0x21,0xd1,0x3e, + 0x56,0x48,0x38,0xb6,0x88,0x0f,0x3f,0x76,0xb1,0x25,0xb0,0x7d,0x91,0x69,0x42,0x8c,0x61,0x8f,0x0d,0xe4, + 0x85,0x58,0xb2,0xd6,0xf1,0x1c,0x01,0xc3,0x2f,0x5f,0x28,0x4d,0xc6,0x39,0xfc,0x99,0xb4,0x98,0x22,0x9e, + 0x15,0xe1,0x81,0x1a,0xde,0x6c,0x90,0xfd,0x8d,0x9f,0x41,0xb0,0xf4,0x8a,0x35,0x46,0x44,0xe8,0x8f,0x34, + 0xd6,0x61,0x83,0x63,0x08,0x7e,0x4e,0x39,0x96,0x6b,0x8e,0x31,0x73,0x25,0x19,0x91,0xc3,0x2c,0x77,0x0c, + 0xeb,0xe4,0x19,0x50,0xc0,0xab,0x8c,0xe5,0x82,0x0a,0xfe,0x56,0x39,0xec,0x2a,0xb3,0x4b,0x2e,0xd8,0x73, + 0x31,0x80,0x18,0x73,0xa9,0x1a,0xa7,0xbd,0x2b,0x98,0xd4,0xfe,0xb2,0x7e,0x9b,0x6d,0x79,0xbe,0x85,0x6c, + 0x6e,0xe5,0xf9,0x61,0x64,0xda,0xda,0xfb,0x9c,0x70,0xbb,0xdc,0xbc,0x40,0xed,0x9f,0x27,0xf9,0xe0,0x70, + 0xe3,0x1d,0x8a,0x46,0xdc,0x4e,0xd4,0x0d,0xec,0xbd,0xf1,0x67,0x8a,0x3f,0x4b,0xfc,0x81,0x45,0xf8,0x25, + 0xfd,0x5f,0xd0,0xff,0x73,0xed,0x6b,0xd9,0x23,0x36,0x21,0xf0,0x11,0x7b,0xdb,0xcc,0x8f,0xa9,0x9e,0x43, + 0x6e,0xf5,0xc5,0xd7,0x62,0xb8,0xfd,0xf5,0x7d,0x1a,0x38,0x98,0x34,0x34,0xe3,0x76,0xe6,0x2c,0xfa,0xe2, + 0xcb,0x4e,0x81,0x59,0xab,0xc0,0x34,0xfa,0xfa,0x9f,0x9d,0x02,0xd3,0x56,0x81,0x65,0xf4,0xe5,0x7f,0x77, + 0x0a,0x2c,0x5b,0x05,0x0e,0xef,0x7f,0x09,0x1e,0x71,0xbd,0xa6,0x07,0xde,0xd2,0x7e,0x17,0x07,0x87,0x51, + 0x7f,0xc6,0x3e,0x32,0x2e,0xd6,0xeb,0xcb,0xf5,0x7a,0x11,0xdd,0xd4,0x57,0xb9,0x76,0x07,0x98,0xa4,0x54, + 0xeb,0x17,0x5f,0xc6,0x33,0x84,0x0d,0x64,0x8b,0xd8,0x91,0x24,0x7d,0x1d,0xaf,0x3a,0x49,0x5f,0xff,0x33, + 0x9e,0x76,0x92,0xbe,0x3c,0x88,0x17,0x83,0x41,0x2b,0xe5,0x30,0x5e,0xec,0xef,0xb7,0x3e,0x3b,0x8c,0x2f, + 0xdb,0x65,0xbe,0xfe,0x22,0xbe,0x6c,0x97,0x39,0xbc,0xff,0x45,0x7c,0xd1,0x2e,0x74,0x78,0xff,0xab,0xf8, + 0x62,0x7f,0x1f,0x74,0x99,0x4c,0x88,0xdb,0x79,0xd7,0x09,0x0d,0x47,0x9d,0x69,0x86,0x6b,0x74,0xcd,0x81, + 0x1f,0xc5,0xb3,0x25,0x3c,0x4b,0xec,0x15,0x0c,0xd7,0xb4,0x25,0xae,0xf7,0xf7,0x23,0x5c,0xe9,0x75,0xa4, + 0xa3,0xeb,0x9e,0xc9,0xad,0x7c,0xb0,0xe2,0x17,0x5f,0x10,0x6b,0x21,0x52,0x8e,0x43,0x86,0x25,0x66,0xd2, + 0xcd,0xc5,0xcd,0x0e,0xd0,0xe2,0x46,0x74,0x29,0x5e,0xf9,0xde,0x82,0x31,0x3c,0xe0,0xcf,0xc1,0xe3,0xe0, + 0x7e,0x0e,0x07,0x5f,0xa9,0x0f,0x5f,0x90,0xd0,0x4e,0x12,0x98,0x12,0x1a,0x69,0xef,0x9c,0x4e,0x58,0x7b, + 0x07,0x49,0x08,0x1d,0x55,0x32,0x7f,0x70,0x30,0xbe,0x7b,0x4a,0xaf,0x77,0x07,0x93,0xc1,0xdd,0x20,0x0a, + 0xef,0x42,0x30,0x1f,0x05,0xb1,0x49,0xb4,0x8d,0xcf,0x23,0x97,0xaf,0x02,0x9b,0x31,0x27,0x60,0xe8,0xa1, + 0xa9,0x7e,0xe6,0xad,0xd6,0xf6,0x53,0x0e,0x8e,0x3f,0xac,0x10,0x22,0x8d,0xed,0x9a,0xaa,0x13,0x84,0xe6, + 0xf5,0xa5,0x6a,0xff,0xee,0x0a,0x48,0x10,0xc0,0x7e,0xd9,0x36,0x22,0x71,0x91,0x7c,0x36,0xdb,0x26,0xe2, + 0x5e,0x81,0x4d,0x14,0x1f,0x7b,0x26,0x41,0xbf,0xd8,0x93,0x3d,0xcc,0xac,0xf6,0xdd,0xc4,0xf8,0x70,0x7b, + 0xff,0x86,0xaf,0xd1,0x68,0x94,0x0e,0x16,0xc7,0x97,0xa0,0xf1,0xed,0xa1,0x89,0xef,0x10,0xf4,0xa3,0x5f, + 0x59,0xd7,0x8c,0xf3,0xef,0x56,0x96,0x35,0xce,0xd4,0x8f,0x6b,0x78,0x99,0x2e,0x25,0x94,0x90,0x7e,0xc7, + 0x41,0x76,0x4b,0x85,0x9e,0x17,0x5d,0xe3,0x28,0x58,0xab,0xf5,0x1e,0x01,0xa7,0xb3,0xf6,0xda,0xb8,0x9a, + 0xba,0x80,0x41,0x95,0xf5,0x6f,0x6d,0x92,0x60,0x17,0xde,0x37,0x84,0xe0,0x61,0x1d,0xe9,0x17,0x61,0x4f, + 0x58,0xca,0xff,0x7f,0x3a,0x5f,0x3b,0xc2,0xfa,0x45,0x8c,0x6f,0x2c,0x95,0xda,0xe3,0x52,0x84,0x87,0xe1, + 0xe4,0x2d,0x47,0x3d,0x0c,0x45,0xf2,0xf3,0x8b,0x66,0x1c,0x52,0xbe,0x26,0x8c,0x17,0x59,0xb1,0x0a,0x94, + 0xad,0x80,0xf3,0xa3,0x98,0x98,0x82,0x7c,0x3a,0x9d,0xb3,0x90,0x36,0x09,0x16,0xe5,0xaa,0xce,0x56,0xcb, + 0x80,0x2f,0x59,0x10,0x35,0xf4,0xd8,0xb5,0x29,0x09,0x6c,0x84,0x2e,0x8f,0x7c,0xe0,0xcb,0x22,0xf8,0x09, + 0xac,0xf6,0x8e,0x51,0x2c,0x73,0x05,0x32,0x9b,0xa5,0xcd,0xef,0x4c,0x64,0xc0,0xcd,0x08,0x77,0xa5,0x2e, + 0x21,0x15,0xab,0x3d,0x0e,0x45,0xdf,0xa1,0x8e,0x7d,0x44,0x5c,0xc0,0x96,0xfe,0x2e,0x1f,0x4f,0xec,0x35, + 0xde,0xb5,0xf5,0xb5,0xab,0xe5,0x2e,0x9d,0x64,0x42,0xf9,0xc7,0x74,0x4e,0x9c,0xc4,0xc7,0x13,0x55,0x9f, + 0xc4,0x75,0x2f,0x08,0x14,0x16,0x04,0x84,0x1e,0xaa,0xf0,0x1e,0xb0,0x4b,0xd4,0x7a,0x2d,0x2f,0x97,0xfb, + 0x1c,0x5e,0x05,0x49,0x2c,0x6d,0xe2,0x28,0xb8,0x26,0x90,0x25,0x8e,0x35,0x51,0x4e,0x88,0x2b,0x8b,0x25, + 0x5b,0x1a,0x1b,0x4a,0x4d,0x3e,0xc8,0xcd,0x07,0x9d,0x60,0xb3,0xb9,0x7f,0x46,0x56,0xed,0xde,0xb8,0xaf, + 0x59,0xfe,0xe2,0x81,0xa8,0x1f,0xcc,0xc6,0x83,0x55,0x6d,0x7a,0x9f,0x77,0x4d,0xef,0x41,0x9b,0xc2,0xb3, + 0x81,0x6f,0x35,0x41,0xa8,0xce,0x9b,0xdc,0x84,0xbf,0x2a,0x11,0xfe,0x4a,0xfc,0x24,0x8c,0x9a,0xdd,0x3a, + 0x23,0xb6,0x9a,0xf4,0x4d,0xf1,0xf3,0xce,0xac,0x89,0xa9,0x7d,0x9e,0x04,0x77,0xee,0x5c,0x06,0x23,0xb9, + 0x34,0x89,0xef,0xa0,0x0e,0x42,0x2d,0x05,0xa4,0x8c,0x1d,0x6a,0x79,0xe7,0xae,0x8c,0xfc,0xee,0x18,0x29, + 0x06,0xa1,0xe2,0x39,0x0a,0x18,0xde,0xd8,0x63,0x41,0x3e,0x3d,0x25,0xfe,0x72,0x90,0x03,0x1f,0x46,0xda, + 0x1c,0xa7,0x6c,0x42,0x58,0x78,0x8e,0xb4,0x71,0x8f,0x01,0x1f,0xc2,0xa6,0xe0,0xec,0x22,0xe2,0xab,0x3f, + 0x2d,0x71,0xe3,0x1f,0x75,0x31,0xbe,0x4b,0xf8,0xb3,0x21,0xa4,0x79,0x57,0x19,0xd3,0x1b,0x17,0x9d,0x64, + 0x27,0x44,0x83,0x3b,0x37,0xc1,0xa0,0x1c,0x04,0x9b,0xc0,0x5b,0x80,0xb2,0xf1,0xc5,0x8c,0x3e,0x72,0xa3, + 0x29,0xfc,0xae,0x72,0x11,0x08,0xbd,0xfb,0xa4,0x8e,0x83,0xe8,0xc1,0x01,0x64,0x8b,0xb8,0x20,0xeb,0xb9, + 0x49,0x3d,0xa1,0xd4,0xef,0x2a,0x1b,0x27,0x37,0xfc,0x81,0x3f,0xf6,0x4b,0x80,0x77,0xfe,0x66,0xff,0x70, + 0x7c,0x43,0xbd,0x8e,0xdd,0x39,0xf3,0x03,0xd1,0x67,0xc4,0x72,0xf3,0x00,0x4c,0xea,0x0f,0x15,0x21,0x7a, + 0x0c,0x66,0x13,0x4b,0x69,0x2e,0xc1,0xa1,0x96,0x98,0xc0,0xf9,0x03,0x04,0x2a,0xb5,0xf0,0x7d,0x95,0x7c, + 0x0b,0xd3,0xe8,0xdd,0x1a,0x67,0x59,0x34,0x69,0xc2,0xdf,0xab,0x24,0x85,0x5a,0x7a,0x3c,0xc7,0x73,0x14, + 0x7f,0x0d,0x06,0xf6,0xf7,0xca,0x17,0x46,0x19,0xc9,0xb2,0xb8,0x39,0x52,0x15,0x3f,0x54,0xa6,0x02,0x0e, + 0xed,0x8a,0xef,0x15,0x5f,0x90,0x16,0xcd,0x39,0xd2,0xb1,0x21,0x53,0xb8,0x2e,0xc2,0x1a,0x08,0x3f,0xf8, + 0xf5,0x17,0xfa,0x79,0x7f,0x9f,0x8d,0xe6,0x68,0x0e,0xbf,0xe5,0x9a,0x04,0xb4,0x36,0x68,0xdc,0x44,0x1d, + 0x6f,0x8f,0xf7,0x7b,0x3d,0x5e,0x93,0xf2,0x3d,0x8d,0x55,0x7d,0x5b,0x41,0x91,0xe8,0x04,0x06,0xda,0x47, + 0x93,0x1d,0x1c,0xc6,0x72,0xa9,0x4c,0x13,0x07,0x77,0x88,0x0a,0x0d,0x71,0x8d,0x21,0xd5,0xa8,0xaf,0xcd, + 0x42,0x01,0x79,0x64,0x88,0xf0,0x3c,0x49,0x1b,0x67,0x04,0xfc,0x47,0xe5,0x13,0x4e,0x83,0xc1,0x0f,0xbe, + 0xfd,0x7a,0xed,0x15,0xfc,0xa1,0xfa,0x26,0xf9,0xce,0x83,0xfb,0x89,0x1f,0xb7,0x9b,0xc9,0xc0,0x6c,0xbd, + 0x66,0x7a,0xd1,0x13,0x55,0xf3,0x24,0xf9,0x1e,0x83,0x32,0x9b,0xec,0x05,0xcb,0x6b,0x01,0xe7,0x8a,0x51, + 0x34,0xf2,0xbc,0xeb,0x9a,0x2d,0x19,0x88,0xa1,0x71,0x47,0x4d,0x42,0xbc,0x7e,0x13,0x0d,0x4f,0x71,0x7f, + 0xe3,0x51,0x5a,0xc3,0x8c,0x67,0xee,0xde,0x7c,0x49,0xd9,0x14,0x46,0x9a,0x3a,0xf4,0xc8,0xfc,0x96,0x00, + 0x11,0xba,0xef,0x53,0x76,0x95,0xa4,0x93,0x9a,0x2f,0x47,0x2c,0x93,0x06,0x18,0x1d,0x02,0x09,0x22,0x5a, + 0x7e,0xae,0x94,0xf3,0x18,0xdc,0x81,0x37,0xa8,0x0e,0xfc,0x5d,0xf6,0xd7,0x49,0xb0,0x44,0xfc,0x86,0xca, + 0x44,0xc7,0x1b,0xa9,0x9f,0xab,0x6d,0x46,0x10,0xc3,0xfb,0xa9,0x18,0xdf,0xe8,0x83,0x0f,0x06,0x38,0x72, + 0x78,0x21,0x20,0x5c,0xcb,0x71,0xaf,0x71,0xea,0xa7,0x90,0x0e,0xd0,0x9f,0xab,0xa8,0x97,0xf1,0x44,0x14, + 0x2a,0x6f,0x4a,0xda,0x26,0xfc,0xd3,0x26,0x34,0x91,0xa4,0x76,0xad,0x3c,0xa6,0x04,0x17,0xbf,0x6b,0xa5, + 0x31,0x08,0xbc,0x6f,0x59,0x4c,0x9d,0xc2,0x58,0xac,0x4c,0x0a,0xff,0x7d,0xf4,0x73,0xa5,0x79,0xd0,0x0e, + 0x36,0xa0,0x8e,0x1e,0x7f,0x84,0x4a,0xc7,0x58,0x4b,0x15,0xe3,0x40,0x5f,0x39,0x1d,0x1b,0x73,0x43,0x8e, + 0xcb,0xec,0x2c,0xf8,0xf9,0x03,0x8e,0xb0,0xcc,0xde,0xe1,0xee,0xba,0x6f,0x4a,0xde,0x20,0xfb,0x71,0x2e, + 0x71,0x0b,0x86,0x52,0x51,0xeb,0xd3,0xc7,0xf8,0x54,0x67,0x74,0x3e,0xc7,0x67,0x1b,0x30,0x2f,0xbf,0xb3, + 0xb6,0x7d,0xd5,0xa8,0x19,0x42,0xbc,0x5a,0x51,0xf0,0xcf,0xd6,0x91,0xdf,0x73,0x13,0xec,0x9b,0x23,0xe3, + 0x26,0xd3,0x9a,0x29,0x9b,0xe8,0x4b,0xce,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0x78,0xe5,0xa7,0xde,0x26, + 0xbf,0xb2,0x9e,0x39,0x2d,0x11,0x56,0x2e,0xe2,0x53,0x48,0x9a,0x72,0x1d,0x65,0x2e,0x3f,0x49,0x82,0xc0, + 0xcb,0x9d,0xeb,0x9b,0xfd,0x50,0x42,0xf1,0xfd,0xcc,0xe6,0xbe,0x64,0xed,0x54,0x94,0x17,0x04,0x28,0xdf, + 0x1d,0xbd,0x7c,0xc1,0x09,0x5c,0xba,0xea,0x0f,0x5a,0xeb,0xd9,0x2d,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc, + 0xbc,0x58,0x65,0x23,0x20,0xb9,0x54,0x8a,0xbe,0x82,0x6b,0x95,0x95,0x20,0xa7,0x1a,0x30,0x1f,0x23,0x2b, + 0xf4,0x8b,0xc0,0x66,0x88,0xaf,0x12,0x16,0x21,0x9a,0x34,0x9f,0x0e,0x4f,0xf9,0x35,0x29,0xb5,0x59,0x22, + 0x24,0x60,0x08,0x48,0x6f,0x6f,0xa9,0x1a,0x4d,0x93,0x95,0xda,0x25,0x6e,0x32,0x8d,0x44,0x98,0x50,0x53, + 0x3a,0x0c,0xab,0x5f,0xbf,0x39,0x7a,0xfe,0xfa,0x15,0xea,0x99,0x19,0xe9,0xce,0x7a,0xdd,0xa3,0x4d,0xc0, + 0xf6,0x67,0xb7,0x70,0x77,0x19,0x95,0xb8,0x37,0x6b,0xbd,0x1a,0xdf,0x2c,0x60,0x63,0x03,0x79,0xe7,0x7d, + 0x66,0xa5,0x80,0xcd,0x26,0x9c,0xa9,0x69,0xd4,0xaa,0xde,0xd3,0xaf,0x89,0x86,0x40,0xb4,0xd1,0x2f,0x0d, + 0x9d,0x26,0x06,0x68,0x79,0xa4,0xad,0x53,0xe6,0xe9,0x1f,0xd7,0x2e,0x7e,0xb6,0x18,0xac,0xf0,0xb1,0x6e, + 0x28,0xa0,0x89,0x38,0x98,0x4d,0x74,0xa0,0xb6,0x9c,0xc9,0x00,0x67,0x36,0x2f,0x44,0x01,0xfb,0x05,0xcb, + 0xa3,0xe9,0x28,0x68,0xc4,0x42,0xfa,0xc7,0x20,0x21,0xbd,0x49,0x56,0x3a,0xa8,0x11,0x83,0x48,0x29,0xc6, + 0x7a,0x54,0xc6,0xf3,0xc6,0x6c,0xdc,0x21,0x77,0xd9,0xb0,0x76,0xf9,0x7a,0xee,0x59,0x1a,0x69,0x51,0xca, + 0x3b,0xa4,0x8e,0x2f,0xc3,0xd6,0x3b,0x47,0x3c,0xf0,0x7c,0x10,0x9b,0xcf,0xe9,0x86,0x17,0xb7,0x28,0x5a, + 0xdf,0xe5,0x9d,0x78,0x23,0x8b,0xa6,0x2d,0xe2,0x62,0x79,0x50,0xd9,0x11,0x6d,0xe5,0x7e,0x3f,0x22,0x51, + 0x71,0xd5,0xf6,0xb9,0xdc,0xca,0x2d,0x75,0x6e,0xe4,0x45,0xe9,0xd1,0xfb,0x74,0x9e,0xb4,0x8a,0xab,0x15, + 0x2c,0x4c,0xcb,0x6a,0xc1,0x57,0xb8,0x4f,0x39,0x6d,0xbd,0xd6,0xdf,0xf3,0x16,0x9e,0x25,0xf3,0xf5,0x7a, + 0xa5,0xa6,0x98,0x2f,0xbd,0x51,0xa5,0x72,0xde,0xca,0x3a,0xa5,0x53,0x43,0x02,0xfb,0x75,0xbd,0xc3,0xc5, + 0xdb,0x69,0x1a,0xc5,0xd3,0x91,0x58,0xaa,0xb6,0xa1,0xd5,0x57,0x9c,0x33,0xe1,0x98,0x8d,0x7a,0xe4,0x67, + 0x7f,0x4b,0xae,0x76,0x61,0x15,0x9c,0x70,0x0a,0x09,0xd9,0xc5,0x4b,0x92,0xb3,0x6e,0xb2,0x73,0x37,0xce, + 0x60,0x7f,0x3e,0x34,0x31,0xd3,0xca,0x56,0x6d,0x65,0xf7,0x33,0xa7,0x9d,0xaf,0xa4,0x0e,0x0e,0x67,0x39, + 0x23,0x24,0xb5,0x84,0x21,0xe2,0xde,0xde,0x53,0x98,0x0f,0xd6,0xca,0x60,0x29,0xce,0x5e,0x46,0x61,0x9a, + 0x70,0x3e,0x01,0xef,0x8c,0x7e,0x6d,0x31,0x1d,0xa1,0x04,0x18,0x20,0xf5,0x79,0x80,0xf3,0xc6,0xf7,0x25, + 0xe3,0xe8,0x9e,0x5a,0x40,0x21,0x71,0x33,0x58,0xd6,0xc6,0x76,0x7f,0xce,0xf2,0x07,0x4a,0x7f,0x90,0x92, + 0x8d,0x36,0x51,0xb9,0xf7,0x6b,0x3d,0xb8,0x17,0xd9,0x7b,0x93,0x7a,0xfc,0xb8,0xbd,0x7a,0x38,0x20,0x16, + 0x82,0x81,0xc5,0xdb,0x89,0x7e,0x60,0x5c,0x28,0x50,0xa8,0xfd,0xf3,0x1e,0xc9,0x5f,0xa4,0x4d,0x26,0x77, + 0x70,0xdb,0xa2,0xd7,0x29,0x56,0xb8,0x04,0xac,0xfb,0xce,0xfa,0x45,0x86,0x61,0x41,0x6c,0x95,0x19,0xa0, + 0x37,0x0b,0xd7,0xff,0xbf,0xcf,0x82,0x20,0xf3,0xed,0x89,0xb0,0xe9,0xca,0x4f,0x95,0x43,0x00,0x54,0x7f, + 0x57,0x42,0x6f,0xa6,0x44,0xa6,0xce,0x89,0x92,0xff,0xd2,0xf4,0xc1,0x90,0xc4,0x4c,0x9b,0x37,0x95,0x15, + 0xcc,0xba,0x46,0xf0,0x69,0xb6,0x17,0x3c,0x55,0x0a,0xc3,0x05,0x88,0x1b,0x34,0x09,0x9d,0x43,0xef,0x1c, + 0xf3,0xd5,0x15,0xb7,0x75,0xd3,0xbf,0x62,0xa0,0xd1,0xa4,0x8d,0xbe,0x52,0x69,0xeb,0xa2,0x14,0x83,0x44, + 0xed,0x15,0xbc,0xcc,0xf3,0xd2,0xb4,0x40,0x28,0x8c,0xcb,0x23,0x9e,0xe7,0x61,0xa6,0x0d,0xb0,0x82,0x4b, + 0x48,0x10,0xf8,0x46,0x09,0xc4,0xbc,0xbe,0xd5,0x38,0xe4,0x39,0xe3,0xc6,0x2d,0xf2,0xe4,0x94,0xfb,0xf2, + 0x21,0xf7,0x7d,0x5f,0x3e,0xa0,0xa8,0x2f,0x79,0xb9,0x6a,0xda,0x46,0x21,0xdb,0x22,0x6d,0x16,0x3b,0x6c, + 0x27,0x73,0x34,0x9f,0xc2,0x33,0xe2,0x02,0x84,0xc2,0x23,0x04,0x02,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xaf, + 0x50,0xdd,0x54,0x5f,0x6d,0x7b,0x7b,0xab,0xde,0x56,0x10,0x34,0x5b,0xc3,0xb1,0xe7,0x2a,0xda,0x61,0x9d, + 0x1f,0x4b,0x01,0x85,0x63,0x40,0x5b,0x52,0x54,0xc6,0x97,0x87,0xe9,0x2c,0xc8,0xc9,0x38,0xf2,0x34,0x9f, + 0x0b,0x56,0x8c,0x60,0x02,0xa6,0xd4,0x09,0xec,0x29,0x9e,0xe5,0xe3,0xb7,0x79,0xfc,0x53,0x4e,0x18,0xbf, + 0xe3,0x3e,0xd6,0xaf,0xb7,0xa9,0xd5,0x0a,0x96,0xe7,0xec,0x2a,0xd6,0x56,0x01,0x49,0x10,0x0b,0x61,0xe6, + 0x06,0x83,0xc9,0x37,0x50,0x1c,0xc2,0x53,0x6c,0xd4,0xef,0x8f,0x34,0x79,0xa0,0xf3,0x15,0xae,0x46,0x56, + 0x3d,0x3a,0x20,0x34,0xe5,0xb9,0xaa,0x36,0x2d,0x1d,0x77,0xa2,0x6f,0xb2,0xa5,0x26,0x1f,0xeb,0xb0,0x1b, + 0x7c,0x96,0x48,0xa4,0x88,0xea,0xf8,0x25,0xf1,0xff,0x4f,0xe0,0x23,0x15,0x9c,0x58,0xeb,0xbb,0x1d,0x96, + 0x9d,0xea,0xbc,0x55,0x25,0xd7,0x4b,0xb7,0xb3,0xd3,0xe4,0x53,0xc3,0xe1,0x5f,0xc1,0xd2,0x1c,0x3f,0xba, + 0xa5,0x92,0x89,0xc9,0xeb,0xaf,0x64,0x8e,0x4a,0xc0,0xd3,0xd0,0x1c,0x1d,0xd0,0x89,0xe8,0xee,0xdc,0x91, + 0x09,0x4f,0xd9,0x6e,0xbc,0xa0,0x47,0x2a,0x90,0x52,0x01,0x63,0xa0,0x4e,0x14,0x03,0xac,0xdf,0xf3,0xf1, + 0x5c,0x97,0x78,0x85,0x12,0x73,0x2a,0x31,0xb1,0x25,0x66,0x09,0xa5,0x87,0x2b,0x17,0x69,0x3d,0x05,0xed, + 0xfb,0xcd,0x01,0xd5,0x3a,0x1f,0x3f,0xcb,0xe3,0x57,0x39,0xb3,0xf7,0xd1,0xb8,0x90,0xc6,0x4c,0xdd,0xb1, + 0xa9,0x22,0x3e,0x50,0x3a,0xe0,0xb2,0xd2,0xd0,0x12,0xaf,0x94,0x85,0x95,0x78,0x86,0x6b,0x90,0x8f,0xcc, + 0x6d,0x7d,0xb1,0xd4,0xb2,0xb7,0xf7,0x5e,0x0b,0xc9,0x65,0xf6,0x4c,0xfc,0x8e,0xe0,0xc4,0x47,0x03,0x9f, + 0x1a,0x77,0x48,0x8f,0x8c,0xc0,0xe3,0x81,0x8d,0x91,0x18,0x65,0x89,0x0d,0x9b,0xed,0x88,0x28,0x33,0x8e, + 0xd6,0x7d,0x5e,0x6d,0x11,0xb2,0xef,0x13,0xfe,0x10,0x46,0x90,0x83,0x87,0x8d,0x84,0x97,0xda,0xf8,0x3b, + 0xed,0xa1,0x4f,0x62,0x1d,0x66,0x5f,0xfc,0x43,0x5f,0x11,0xeb,0x24,0x06,0xfb,0x87,0x7e,0xf9,0x77,0x1e, + 0x2d,0x05,0x12,0x8a,0xe8,0x1d,0xf8,0x69,0xe1,0x6a,0x9e,0x94,0x88,0xf3,0x33,0x76,0x87,0xb0,0x6f,0xfa, + 0xaa,0xcc,0xb9,0x44,0xcb,0x73,0xe9,0xa1,0x09,0x55,0x90,0x9c,0x35,0x86,0x1b,0x72,0x1b,0x3a,0xb2,0xce, + 0x57,0x6c,0x3e,0x49,0x9f,0x11,0x84,0x67,0x15,0x57,0x7e,0xc8,0xb1,0xc0,0x40,0x90,0xe0,0x92,0x39,0x47, + 0xdb,0x20,0x8e,0x18,0x21,0x46,0x05,0xaf,0x57,0xde,0xd8,0x04,0x24,0x43,0xf9,0x8c,0x35,0x75,0x33,0xf3, + 0x7a,0x54,0x4a,0xc2,0xd4,0x24,0x3c,0x64,0x9a,0x5d,0x12,0x97,0x94,0x48,0x53,0x9a,0xa5,0xfa,0xab,0x0b, + 0xfb,0x6e,0x3e,0xbb,0xb4,0x29,0xfe,0x77,0x0b,0x4a,0x3d,0xcb,0x60,0x22,0xfe,0x14,0x55,0xc2,0x7b,0x4f, + 0x2a,0x57,0xd7,0x28,0x8f,0xab,0xd7,0x25,0xe3,0xcc,0xf6,0xca,0x4c,0x8c,0xba,0xb2,0xdf,0x3e,0xe4,0x7a, + 0xd5,0x91,0x6d,0x42,0x7d,0x34,0x5f,0xeb,0xac,0xc7,0xae,0x7f,0xf6,0xfb,0x4f,0x94,0x36,0xd5,0x7b,0x4a, + 0x3d,0x4c,0xce,0x2a,0xf5,0x8e,0xfe,0x68,0x3b,0xfd,0xd1,0xbb,0xbd,0xbd,0x77,0x96,0xe4,0x7a,0x98,0x84, + 0xef,0x12,0xf3,0x1a,0x19,0x8e,0x95,0x57,0xe2,0x4e,0xb2,0xfb,0xd0,0x0b,0x9d,0x44,0x1c,0x29,0x1b,0xf1, + 0x97,0x25,0xe8,0x40,0x8e,0x09,0x4c,0x4b,0x72,0x67,0xbd,0x3e,0xc2,0xe1,0x49,0x6b,0x70,0x24,0x20,0xf0, + 0x3a,0xb9,0xb3,0xb7,0xb7,0x1c,0x2f,0x69,0x37,0x3c,0xc5,0xe3,0xe5,0xf8,0x32,0x9e,0xaa,0x37,0x78,0xbc, + 0x18,0x5f,0xd0,0xbe,0x78,0x92,0xdc,0x19,0x5f,0xad,0xd7,0x8b,0x78,0xa1,0x7e,0x43,0x6a,0x8f,0xd3,0xcb, + 0xd1,0xf8,0x28,0x3e,0x57,0xcf,0xa9,0xe0,0xc7,0xf5,0xfa,0x3a,0xbe,0x56,0x2f,0xe8,0xf1,0xf1,0x7a,0x7d, + 0x16,0x9f,0xa9,0x67,0xc4,0xb7,0xe4,0xe1,0xa7,0x68,0xfc,0x49,0xa6,0x2d,0xfe,0x14,0xa9,0x57,0x09,0x1f, + 0x84,0x35,0xeb,0xe3,0xd5,0xcb,0xe4,0x69,0x13,0xfe,0x16,0xa9,0xb7,0x89,0x83,0x13,0xdf,0xc9,0x36,0xba, + 0x79,0x45,0x20,0x49,0x07,0x4a,0xa9,0xde,0x44,0x8a,0x7f,0x9f,0xd2,0x51,0xf9,0xd6,0x81,0xe6,0x38,0xa4, + 0x12,0x9c,0xf1,0x3a,0x52,0x2f,0xf6,0xf6,0x5e,0xb0,0x21,0xc5,0xf3,0xbd,0xbd,0xe7,0x70,0x4b,0xf0,0x6a, + 0xd5,0xc1,0xd6,0x35,0xbc,0xd6,0x17,0x25,0x0d,0xec,0x07,0xda,0x0e,0xce,0xf2,0xc9,0x35,0x2a,0x72,0x21, + 0x43,0xed,0x82,0x4f,0x55,0x3a,0x1c,0xf2,0x29,0x82,0x15,0x31,0xab,0xe9,0x9e,0x8f,0x59,0x92,0x76,0x32, + 0xe2,0x70,0x46,0x62,0x6f,0x58,0x88,0xbd,0x61,0x83,0x1d,0x66,0xf7,0x4d,0xf7,0x3d,0x8c,0xd4,0x6f,0x7b, + 0x7b,0xbf,0x51,0xd7,0xdf,0x42,0x16,0xf4,0x64,0x6f,0xef,0x09,0xfa,0x8c,0x11,0x5f,0xe9,0x01,0x5d,0xc9, + 0x88,0xd5,0x69,0xeb,0x20,0xb9,0xf2,0xe7,0xe3,0x75,0x6b,0x3a,0xd6,0xeb,0x97,0x74,0x8e,0xbf,0x6e,0xc2, + 0x67,0xd1,0xd8,0x3b,0x85,0xde,0xaa,0x67,0x51,0xfc,0x11,0xc5,0xe7,0xd4,0x18,0x90,0x88,0xf2,0x26,0x42, + 0x0c,0x6c,0x2b,0xbf,0x3f,0xd4,0x0d,0xae,0xea,0x6d,0xd8,0xb2,0x78,0xbe,0xa3,0x11,0x88,0x13,0x02,0x53, + 0x77,0x1e,0xfb,0xcd,0x87,0xad,0x09,0x0e,0x89,0xf3,0x74,0x93,0x68,0x67,0x0c,0xaa,0xec,0xbe,0x74,0x71, + 0x30,0x95,0xe9,0x4c,0x8a,0x48,0x5d,0x10,0x20,0x22,0x38,0xea,0x95,0x4c,0x49,0x0a,0x67,0x09,0xfe,0x5d, + 0xf6,0x4c,0x49,0x4a,0x3c,0x14,0xa6,0x84,0x4b,0xb5,0xfa,0x74,0x24,0x53,0xf2,0xb1,0x35,0x25,0x8f,0xd5, + 0x47,0x9e,0x92,0x54,0xad,0xd4,0x63,0x99,0x92,0x4b,0x50,0x66,0x29,0xbd,0xa9,0x2b,0xfe,0xe8,0x31,0xe8, + 0x6c,0x6d,0x33,0xae,0x71,0x65,0xea,0xa3,0x33,0xef,0xad,0x8d,0x2b,0x5d,0xba,0xc1,0x95,0xf5,0xed,0xb8, + 0x52,0x22,0xbf,0xca,0xfd,0x31,0x16,0x35,0x1a,0x06,0x4a,0xd4,0xac,0xbb,0xdc,0xb0,0x41,0xd2,0xc6,0xdf, + 0xa4,0x66,0x9c,0xb9,0x4a,0x24,0xc2,0x0b,0x21,0x49,0xc8,0x5b,0x52,0x83,0xd5,0xa6,0xe6,0xd5,0x20,0xbf, + 0xa5,0x49,0xf0,0x71,0xdf,0x05,0x25,0x0a,0xfe,0x7a,0x81,0x2c,0xc2,0x90,0xba,0x10,0x61,0xc5,0x5a,0xb0, + 0x97,0x64,0x9c,0xdb,0xda,0x2d,0xee,0xba,0xa6,0x24,0x76,0xca,0x96,0x12,0x67,0x78,0x35,0xa8,0xec,0x4a, + 0xb6,0xf9,0x5c,0xb6,0xf9,0x11,0xb6,0xf9,0x65,0x44,0x18,0x11,0x08,0xe1,0x2c,0x1a,0x9f,0x49,0x5d,0xf1, + 0x59,0xc4,0x58,0xd1,0x0c,0xad,0xbd,0xf5,0x7d,0x10,0x81,0x08,0xa9,0x07,0x60,0x78,0x0d,0x7a,0xd2,0x2d, + 0x0c,0x71,0xe8,0xae,0x2b,0xc1,0x21,0x0e,0x40,0x96,0x51,0x0b,0x42,0xc6,0xe1,0x15,0xe3,0x10,0x86,0x1c, + 0xaa,0xf3,0x9c,0xed,0x40,0x42,0x6c,0x88,0xc5,0xde,0xde,0x02,0x6f,0xca,0xeb,0xa4,0xc6,0x24,0xd7,0xe3, + 0x6b,0xda,0xae,0x71,0x19,0xfa,0x04,0xc1,0x6b,0xef,0x44,0xde,0x8e,0x29,0x45,0xb3,0x21,0x77,0x1e,0xfa, + 0xea,0xe4,0xa7,0x88,0x33,0xcb,0xac,0x84,0x0b,0x5a,0xac,0xc3,0x62,0xc3,0x4a,0x18,0xe1,0x8d,0xbd,0xb0, + 0x4f,0x63,0x2a,0xbe,0x15,0xbe,0xa6,0x3a,0x3e,0x38,0x89,0x11,0xbc,0xc6,0xde,0xb2,0x07,0xbf,0x16,0x4d, + 0x3f,0x7d,0xe3,0xa9,0xf0,0xde,0x68,0x7a,0x65,0x17,0x7a,0xf9,0xc6,0xc7,0x00,0xef,0xf8,0x32,0x62,0xe7, + 0x03,0x62,0x49,0xef,0xdf,0xcc,0x93,0x72,0x96,0x70,0xfd,0xf4,0xad,0x2d,0xb9,0x51,0x07,0x5e,0x55,0xbf, + 0x75,0xa8,0xf8,0xc6,0x93,0x8c,0x2d,0x56,0xf3,0x26,0x5f,0xce,0x33,0xa1,0xd7,0xd7,0xeb,0xee,0xc8,0xbc, + 0x78,0x67,0x6c,0x04,0x08,0x3f,0x2c,0xeb,0x43,0xd3,0x75,0xc3,0x82,0x29,0x98,0xcb,0xc5,0xb5,0x19,0x79, + 0x54,0x26,0x67,0xc4,0xfe,0xbd,0x80,0x91,0x0f,0xf8,0x5d,0x85,0xeb,0x97,0xe6,0x7c,0x19,0x3a,0x84,0xf4, + 0x0c,0x3e,0x26,0x21,0xf1,0xc2,0x78,0x5d,0x87,0xfc,0x89,0x17,0xf5,0x17,0x5c,0x17,0xe8,0x2a,0x5d,0x98, + 0x35,0x53,0x72,0x8e,0x75,0x53,0x93,0x1a,0x76,0xba,0xcc,0x4d,0xb5,0xd3,0xf7,0x5b,0x97,0x3e,0x3e,0x6f, + 0xda,0x57,0xac,0x74,0x6f,0xbe,0xb3,0x59,0xbb,0xd7,0xa1,0xd8,0xcb,0x7a,0x2e,0x21,0x3e,0x94,0x89,0xa8, + 0x94,0xa3,0xb3,0xe1,0x82,0x01,0xd1,0xf3,0x69,0xf1,0xa3,0xe7,0xd5,0xd1,0x88,0x77,0xb3,0xf0,0x2c,0x4e, + 0x66,0x0a,0x1b,0x33,0xe7,0xce,0x71,0x4b,0x21,0x1e,0xe4,0xf6,0x97,0x87,0xea,0x65,0x63,0x33,0x94,0x16, + 0xe4,0xfb,0xf4,0xe6,0xcb,0x16,0xd3,0xd9,0x75,0x60,0xb8,0x64,0xf7,0x05,0x48,0x9d,0x45,0x0f,0x1e,0x08, + 0x9f,0x99,0x37,0x92,0xd3,0x28,0xc2,0xa4,0x1c,0xf1,0x68,0x38,0xcd,0x6b,0x36,0x3d,0x96,0x0c,0x5f,0x7d, + 0xf1,0xd6,0x9b,0x89,0xdd,0x5b,0xfc,0x18,0x44,0x52,0x95,0x75,0x91,0xef,0x38,0x8b,0xdf,0xb2,0x6b,0xcc, + 0x6d,0x32,0x33,0xcf,0xa3,0xc2,0x93,0x8a,0x32,0x19,0xb0,0x65,0xf7,0x6a,0x56,0x11,0x67,0x7c,0xcb,0xe2, + 0xd5,0xf8,0xa1,0x8f,0xa9,0x8e,0x5f,0xe0,0xd8,0x65,0xbd,0x0b,0x7d,0x21,0xe7,0x4f,0x5e,0x03,0x7c,0xeb, + 0xa4,0x8b,0x71,0xda,0x0e,0x7f,0x54,0xb8,0x6b,0x26,0x22,0x84,0x3e,0xe2,0xf8,0xc0,0xfa,0xf6,0x12,0xda, + 0xfc,0x82,0x0a,0x0d,0x3f,0xd9,0x71,0xcc,0xcb,0xe9,0x8b,0x33,0x5c,0xe8,0x71,0xc2,0xae,0x79,0x3d,0x91, + 0x68,0x3f,0x38,0x49,0xd2,0xbd,0x5f,0xa7,0xfb,0x1f,0xb3,0x6c,0xb9,0x9f,0xce,0xe9,0xb0,0xb8,0xa3,0xef, + 0x0a,0x64,0xfa,0xc6,0x79,0x54,0x87,0x81,0x2b,0x12,0xa8,0x1b,0xee,0x5a,0xdc,0x6c,0xcd,0x8e,0xeb,0xb3, + 0x0f,0xc4,0xef,0x35,0xb0,0x31,0x49,0xc4,0xca,0x81,0x33,0xbe,0x7c,0xd2,0xbd,0xb2,0x29,0x25,0xbf,0xeb, + 0xd3,0xd4,0xe6,0xdb,0xd3,0xd5,0xb3,0x08,0xd7,0xd5,0x89,0xb8,0x35,0xbb,0x7a,0x53,0x22,0x98,0x10,0x4a, + 0x13,0x70,0x3e,0x22,0xc2,0x98,0xa3,0x7a,0xcc,0x73,0xfa,0xf4,0x2d,0xae,0x5e,0xf7,0xe3,0xcc,0xfb,0xcb, + 0x2b,0x15,0x10,0x88,0x2b,0xeb,0x3b,0x23,0xb5,0xe9,0xeb,0x28,0x66,0xcd,0x7e,0xc1,0x3f,0x7c,0xef,0x59, + 0x53,0x2e,0xe9,0x95,0xfe,0x02,0x83,0x55,0xeb,0x75,0x6e,0xbb,0x80,0x21,0x4c,0x8d,0x92,0xb1,0xd4,0x5d, + 0x61,0xc1,0xf0,0xa8,0x74,0x77,0xc3,0x13,0x91,0xf9,0x53,0x76,0xf6,0x31,0x6f,0x2c,0xff,0x99,0x04,0x9c, + 0x89,0x30,0x78,0x61,0x30,0xa8,0x06,0xc1,0xf2,0x93,0x62,0xdd,0xfe,0xf2,0x53,0x14,0xa8,0xd2,0x03,0x60, + 0xc3,0x8b,0x27,0xc1,0x41,0xed,0x2b,0xe6,0x7f,0xb7,0x08,0x57,0x2b,0x91,0x99,0xf7,0x3d,0x64,0x7f,0xfd, + 0x4c,0x59,0x03,0x88,0xb8,0x51,0xc6,0x64,0xa1,0x75,0xe3,0x6d,0xf7,0xfe,0x53,0xe5,0x54,0xf9,0xf6,0x1a, + 0x0e,0x1d,0xd8,0x58,0x3b,0x26,0xe2,0x51,0x42,0x81,0x38,0x37,0xaa,0x26,0x52,0x02,0x8c,0xc4,0x74,0xdb, + 0x10,0x01,0xc7,0xfe,0x3d,0x31,0x3f,0xb4,0xc5,0x1b,0xc6,0x5a,0x71,0x14,0xd6,0x09,0x6d,0x72,0xe8,0x58, + 0x09,0xba,0xae,0x03,0xad,0xbf,0x80,0x5f,0x4f,0xed,0x99,0x26,0x65,0xe2,0xe1,0xb3,0xeb,0x5b,0x1f,0x69, + 0x7b,0x83,0xb0,0x44,0x05,0x39,0x2a,0xa8,0xb2,0x99,0x54,0x90,0xc3,0x01,0x29,0x29,0x55,0x6e,0x1d,0x91, + 0x6e,0x71,0xd2,0xce,0x47,0x8d,0x84,0xd0,0xb4,0x17,0xb8,0x34,0x90,0x8a,0x3a,0x3f,0x1f,0x88,0x57,0x75, + 0x80,0x4c,0x1b,0x83,0x99,0x7d,0xd9,0xdb,0x2a,0xcf,0x00,0xd1,0x25,0xac,0x91,0x31,0x4c,0xa5,0xe9,0x1d, + 0xda,0xa8,0x84,0xcd,0x68,0x02,0x4c,0x5d,0xe0,0xc9,0x8c,0x9b,0x76,0xc4,0x6c,0xfe,0x0a,0xe6,0x48,0x62, + 0x57,0xc3,0x91,0x04,0x02,0xbe,0x57,0x8e,0xaa,0xe1,0x30,0x56,0x08,0x4e,0xad,0x33,0x29,0x69,0x5f,0x97, + 0x20,0x1a,0xc0,0x7e,0xe3,0x27,0xcb,0x31,0xe5,0xbe,0x35,0x11,0x84,0x0b,0x5b,0x14,0xd8,0xd7,0x96,0x3a, + 0x12,0xc9,0xd6,0xdd,0x20,0xb8,0xcb,0x56,0xdc,0x77,0x6d,0x10,0xd0,0xbb,0xb4,0x9e,0xdb,0x3d,0x05,0x9a, + 0xb5,0xb5,0xaf,0xd7,0x6c,0x79,0x26,0xb5,0x2a,0xbe,0x71,0x18,0x32,0x2a,0x18,0x91,0x36,0xec,0xfd,0x19, + 0xe4,0xb5,0x74,0xa9,0x70,0xa8,0x22,0x41,0xbc,0x49,0x31,0x17,0x6a,0x84,0x2b,0x9b,0xe7,0x45,0xb6,0x6f, + 0x5b,0x92,0xe2,0x92,0x7a,0xa4,0x13,0x61,0xb8,0xe8,0xa2,0x07,0x26,0x07,0xa3,0xc9,0x83,0x33,0x1b,0xf9, + 0x60,0xc2,0x77,0x30,0x9d,0x95,0xc7,0x93,0x13,0x86,0x33,0xea,0xe2,0xa8,0x15,0xe9,0x43,0xbb,0x3a,0x77, + 0xed,0x64,0x11,0xf0,0x41,0x2d,0xd5,0x85,0x6f,0x2b,0xc4,0x8d,0x34,0xb4,0x15,0x8a,0xe4,0xc2,0x3a,0xf0, + 0x3f,0x28,0x8c,0x13,0x7f,0x95,0xe4,0xc9,0x05,0x62,0x24,0xf3,0xad,0x09,0xa5,0x3c,0x0b,0x91,0xf3,0xaa, + 0xd4,0x42,0x24,0x2d,0x8b,0xbf,0x48,0xeb,0x47,0x39,0xa3,0xa2,0x1a,0x8c,0x42,0x98,0x26,0x5b,0x5d,0x4a, + 0x2a,0x7d,0xd3,0xce,0x7b,0x09,0x26,0xe3,0x87,0x90,0x77,0x37,0x4f,0x74,0x05,0xf5,0x1c,0x51,0xd1,0xc8, + 0x7d,0x0e,0x23,0xdc,0x7b,0x0d,0x8b,0x05,0x5c,0x6e,0x15,0xe9,0x6b,0x16,0x8c,0x38,0xfc,0x7d,0x09,0xbd, + 0x4b,0xa4,0x3e,0xb8,0xbe,0xf9,0xd9,0x1f,0x38,0x9b,0x86,0xf1,0x2d,0x7b,0xf6,0xd7,0x38,0xe7,0x25,0xc2, + 0x27,0xd0,0x38,0xdb,0x3c,0x53,0xcf,0xb5,0xca,0xb8,0x59,0xcc,0x03,0x09,0x28,0x76,0x86,0x58,0x98,0xd2, + 0x94,0xa7,0x4e,0x66,0xca,0x79,0x42,0xd3,0x32,0xe7,0x1c,0x29,0x04,0x2a,0xec,0xba,0x98,0xd0,0x59,0xc9, + 0xd0,0x67,0x23,0x44,0x72,0xae,0x2a,0xc1,0xa6,0x06,0x77,0xd8,0x00,0x2e,0x60,0xa3,0x6a,0x68,0xd8,0x1d, + 0xa4,0xec,0xed,0x7d,0x2c,0xed,0xc5,0xb1,0x06,0x83,0x09,0x0b,0x44,0xa4,0x30,0x5b,0x50,0x22,0x78,0x55, + 0xfc,0xa3,0x79,0xb2,0x54,0xdd,0xb3,0xfe,0x01,0x3f,0x93,0x01,0x73,0x67,0x24,0x20,0xdb,0xae,0x7f,0xcd, + 0xe1,0x65,0xd2,0x9a,0xbd,0x57,0x32,0x7b,0x7a,0x8d,0x7e,0xa2,0x19,0x5a,0x24,0x60,0x1c,0x8f,0x0f,0x4f, + 0x46,0x0b,0x3d,0xd3,0x56,0xfa,0x16,0x2e,0x34,0xb8,0x0c,0x0e,0x31,0x92,0x79,0x52,0x11,0xbf,0x96,0x43, + 0xfe,0x49,0xfc,0xd9,0x02,0x12,0x2b,0x85,0x58,0x1a,0x59,0xd4,0x72,0x88,0x0b,0x27,0xde,0xeb,0x96,0xa5, + 0xe6,0x5c,0x69,0x07,0xa4,0x78,0xa5,0x4d,0x2c,0x67,0xb0,0x30,0x89,0xa7,0xca,0x5a,0x03,0xc6,0xcb,0x0d, + 0xe2,0x6c,0x58,0x13,0x3e,0x9e,0x00,0x3d,0x1f,0x1d,0x9b,0xba,0x92,0xef,0xaf,0xf1,0x67,0x37,0x58,0x40, + 0xb4,0x8c,0x55,0xad,0x3e,0x3b,0xd5,0x7b,0x7b,0x7a,0xae,0xb5,0x6b,0xc7,0xa6,0xc5,0xd5,0x7c,0xef,0xce, + 0x54,0x06,0xe2,0xc4,0x18,0x08,0x12,0xe4,0x06,0x51,0x9f,0xd5,0x98,0xa4,0x34,0x7a,0x62,0x5f,0xea,0x48, + 0x4a,0x86,0x6b,0x60,0x55,0x2a,0x7d,0x9b,0x14,0xc7,0xf7,0x4f,0xb4,0x16,0xc7,0xd0,0x3d,0x34,0xf5,0x3a, + 0xc5,0xae,0xd2,0x23,0x03,0xc4,0xb9,0xae,0xef,0xad,0x8b,0x9e,0x5b,0x8e,0x11,0x1e,0x69,0x9e,0xa7,0x75, + 0x92,0xdb,0x0f,0xde,0xca,0x07,0xd5,0x30,0x27,0xca,0x22,0x25,0x0a,0xee,0x30,0x29,0x5d,0xbd,0xaa,0xa4, + 0x56,0xd9,0x0e,0xc2,0x64,0xdf,0x4f,0x4a,0xd7,0x11,0xc4,0x2d,0x31,0x35,0xaa,0x8a,0x2f,0x94,0x2b,0x38, + 0x08,0x40,0xdb,0x5b,0xe3,0x5b,0xab,0x18,0xc9,0x67,0x8f,0x4b,0xc2,0x02,0x4c,0x1d,0x31,0xa7,0xe0,0x27, + 0x70,0xd8,0xd2,0x76,0x92,0xd1,0xb6,0x78,0x76,0xcb,0xbe,0xe8,0xf7,0xf7,0xa6,0xbd,0x4a,0x7c,0x1a,0x9a, + 0xc8,0xf0,0x99,0x11,0x19,0x7a,0x16,0xcc,0x5d,0x96,0x6c,0x1c,0x98,0x20,0x4a,0xf1,0x4d,0x10,0x07,0x25, + 0x7e,0x5c,0x24,0x05,0x7d,0x4b,0xdd,0x20,0x81,0x9d,0x5d,0x3e,0xb8,0x1b,0xc4,0x77,0x07,0xbf,0x40,0x69, + 0xc0,0x7e,0xda,0xb0,0xb2,0x76,0xf7,0x30,0x7b,0x82,0x67,0xb6,0x17,0x74,0xa6,0xcd,0x8e,0xb6,0xb4,0x37, + 0x7b,0x06,0x1e,0xf7,0xb8,0x09,0xb6,0x83,0x3e,0xdb,0x2b,0xc2,0x82,0xe3,0x60,0xd0,0x15,0x91,0xdb,0xd1, + 0xeb,0x9a,0xad,0xa3,0x9d,0x82,0x7e,0xf0,0x24,0xd0,0x27,0xdc,0xbf,0x4b,0x43,0xba,0x8a,0x77,0x16,0x91, + 0x33,0x3f,0x77,0x92,0x18,0x40,0x9d,0x2d,0xad,0xb1,0x35,0x08,0x88,0xdc,0xc2,0x9f,0xd4,0x38,0x86,0xb2, + 0x20,0x87,0x43,0x3a,0x7a,0x85,0x81,0xd6,0x71,0xcd,0x68,0x54,0x0e,0x12,0x7e,0x50,0xbf,0x94,0xac,0xbb, + 0x4e,0x8d,0x8d,0xad,0x0b,0x32,0x9d,0x7d,0x4a,0x25,0xfc,0x48,0x6d,0x82,0x68,0x7b,0x35,0x8d,0xa8,0x82, + 0x1f,0xcb,0xf0,0x38,0x98,0x34,0xd5,0x9c,0x06,0xc1,0xc6,0xba,0xf4,0x9b,0xce,0xf1,0x77,0x91,0x35,0x69, + 0x70,0x72,0xbb,0x29,0xf9,0xee,0xe4,0x38,0x83,0xad,0x79,0xbf,0x25,0xba,0x46,0xa7,0xc3,0x60,0x90,0x0d, + 0x82,0x1f,0x88,0xaa,0xb2,0x93,0xb5,0x5e,0x83,0x63,0x13,0xa3,0x10,0xdb,0x61,0xe3,0xbf,0x6b,0xed,0x77, + 0xc2,0x7c,0x40,0x58,0x1d,0xb6,0x16,0x77,0xcf,0x56,0x4d,0x53,0x16,0x77,0x31,0x0d,0x52,0x29,0xfc,0xf4, + 0x07,0x29,0x37,0xfc,0x63,0x63,0xaa,0xa5,0x34,0x5a,0x04,0xab,0x80,0xa3,0x83,0x7d,0x84,0xed,0x28,0x35, + 0x95,0x5e,0xcc,0xca,0x50,0x57,0x72,0x03,0x1a,0x37,0x2c,0xc6,0x7a,0x4d,0x06,0x81,0xc9,0x08,0xe2,0x6a, + 0xcc,0x56,0xab,0x26,0x23,0x72,0x39,0x66,0x01,0x19,0xd2,0x4c,0x5b,0x44,0x16,0x99,0x5a,0xe2,0xbe,0x66, + 0x6c,0x45,0x3e,0x74,0xfe,0xe8,0xb1,0x00,0x1c,0xe3,0xe6,0x39,0x53,0x46,0x87,0x07,0x91,0x1f,0xcf,0xde, + 0x4c,0xa3,0x0e,0x1d,0x4d,0xc4,0x21,0x55,0xa7,0xe1,0x8c,0x56,0xdd,0x86,0x19,0x0e,0x4e,0x3f,0x86,0xed, + 0xa2,0x44,0xc2,0x77,0x10,0x6f,0xc6,0x1b,0xa7,0x9b,0x5a,0x20,0xd5,0x7d,0xea,0x5b,0x65,0x66,0x2d,0xf3, + 0x25,0xc4,0xca,0x29,0x70,0x3b,0xaf,0xb1,0x14,0x95,0x18,0x6d,0x71,0x00,0x43,0x3f,0x0e,0xc0,0x6a,0xf7, + 0x07,0x74,0xe9,0xe3,0x46,0xac,0x93,0xe2,0xbb,0xa7,0x13,0x1d,0x32,0xe0,0x2e,0x4f,0x9b,0xea,0xc4,0x35, + 0x8e,0x8b,0x6e,0xa4,0x63,0x0f,0x81,0x35,0x85,0x8b,0x97,0x6f,0x8a,0x95,0xa5,0xf8,0xca,0xc9,0xeb,0x9b, + 0xaa,0x9c,0x64,0x75,0x9d,0x4d,0xed,0xd2,0x17,0xd6,0xb8,0x3b,0xd3,0x86,0xfb,0xbb,0xf2,0xb0,0x55,0xb4, + 0xf2,0x8b,0xd2,0x7e,0xe3,0x92,0xf4,0xbb,0x5d,0x67,0x82,0x70,0x1f,0x0d,0xdf,0xf4,0x31,0x43,0xa4,0x4a, + 0x84,0xf6,0x03,0xf6,0x65,0xe7,0x2e,0x8b,0xc0,0xc7,0x98,0x5f,0xef,0x3d,0xa6,0xbd,0x5c,0x7b,0x05,0xee, + 0x77,0x0a,0xdc,0x47,0x81,0xa2,0xd5,0x22,0x53,0x3a,0xa7,0xf3,0x50,0x5b,0x57,0x3b,0x22,0x1f,0xe6,0xd0, + 0x29,0x7b,0xa0,0xb8,0x59,0x6e,0x38,0x84,0x1b,0x66,0x35,0xd2,0xc8,0xe7,0x36,0xda,0x52,0xe9,0x00,0x69, + 0x32,0xd4,0x7c,0xc6,0x23,0xcd,0x67,0x5b,0x03,0x2d,0xdd,0x8c,0x38,0x9a,0x7b,0xb7,0x43,0x73,0x0b,0xad, + 0xde,0xc7,0x74,0x18,0x03,0x56,0x9a,0xae,0x25,0x4d,0xd7,0x45,0x32,0xb5,0x5c,0xc8,0x7a,0xed,0x91,0xf4, + 0x90,0xfa,0x16,0xe1,0x14,0x52,0x75,0x62,0x3f,0x4f,0x61,0x27,0x7c,0x31,0x08,0x2f,0x79,0x7a,0x2e,0x39, + 0x46,0xdc,0x39,0x7d,0xaa,0xa3,0x8a,0x07,0xb4,0x85,0xf4,0xcb,0x6d,0x6e,0x2f,0x67,0x85,0x36,0x6d,0xa0, + 0xb9,0x88,0xe1,0x54,0x2c,0xb2,0xa8,0x16,0x7e,0x26,0xc8,0xbb,0x36,0x95,0xc2,0x68,0x5e,0xbb,0x0e,0x04, + 0x27,0x6a,0xf7,0x9c,0xa6,0xe3,0x9a,0x7d,0xb3,0xc2,0x05,0xa1,0x1d,0x66,0x0b,0x02,0x16,0xcc,0xca,0x7b, + 0x30,0x38,0x8f,0xd4,0xb5,0xbc,0x85,0xe7,0x30,0x0a,0x32,0x65,0x78,0x47,0x5d,0xd3,0x28,0x60,0xcf,0xcc, + 0x4b,0x70,0x26,0x53,0xec,0xc2,0xa6,0x4e,0xfc,0x68,0x17,0x44,0x90,0x41,0xd7,0xd8,0xc0,0x86,0xab,0xc3, + 0x5b,0x8c,0x51,0x63,0x4c,0xd3,0x82,0x65,0x83,0x14,0xea,0x8c,0x66,0x86,0xb6,0xce,0x60,0xc2,0x8d,0xa4, + 0x9c,0x11,0x0d,0xc2,0x19,0xcf,0xd2,0x2c,0x66,0xa3,0x14,0x6a,0xd4,0x92,0x8d,0xa7,0x89,0xe6,0x55,0xc7, + 0x3a,0x3e,0x58,0x2a,0x8b,0x89,0x80,0xa0,0xb7,0xb5,0x85,0x43,0x19,0x3c,0x8d,0xb4,0x75,0x17,0x53,0x47, + 0xeb,0x38,0x08,0xe8,0x29,0x3c,0xe5,0x86,0x4e,0xb9,0xa1,0xf0,0x8a,0x5f,0xae,0x4c,0xab,0xf6,0xc2,0xa4, + 0x23,0x62,0x82,0x8e,0x1e,0x34,0x4e,0xbe,0x60,0x85,0xa4,0x47,0xc4,0xaa,0x9c,0x25,0x7e,0xce,0xf1,0x11, + 0x18,0xa3,0x33,0x8b,0xed,0xcf,0x6c,0x1c,0xcb,0x42,0x33,0x4c,0x81,0xf4,0xdc,0xc3,0x41,0x45,0xf7,0x2e, + 0x9b,0xce,0xae,0xc7,0x7e,0x69,0xba,0x08,0x44,0x8e,0x95,0x5e,0xc4,0xa4,0x11,0x0a,0xc0,0x01,0xc1,0xd2, + 0x17,0x34,0xbf,0xe1,0xf6,0xf7,0x26,0x2e,0x5d,0x34,0xb0,0x68,0x47,0x62,0x89,0x04,0x4a,0xbc,0x95,0xed, + 0x34,0x58,0xe7,0x10,0x1f,0x51,0xb5,0x90,0x8d,0x84,0x27,0xff,0x4b,0x5b,0xae,0xd5,0x96,0xef,0xe9,0x1a, + 0x04,0x2c,0x13,0xd1,0x8a,0xd9,0x6a,0xa4,0xed,0x65,0x21,0x26,0xb8,0x29,0x12,0x8e,0x41,0x62,0xdc,0x44, + 0xac,0xb3,0xaa,0x3d,0x9e,0xc6,0xc1,0x69,0x19,0x7a,0x23,0x57,0x38,0x91,0xd0,0xc5,0xe7,0xd3,0xc1,0x80, + 0x5f,0x0b,0xf6,0x6b,0xd3,0x05,0x36,0x6d,0x3c,0xea,0xb9,0x5f,0x6c,0x07,0xa6,0x6e,0x0d,0x08,0x03,0xf5, + 0x2c,0xd3,0xad,0xc9,0xbc,0xa7,0xba,0x73,0x3b,0xb6,0x1a,0x57,0x72,0x3c,0xc8,0x6c,0x8d,0x2b,0x7d,0x5a, + 0xe8,0x53,0x83,0xaf,0x02,0x31,0xf2,0x15,0x7b,0x4d,0x30,0x01,0xc8,0x29,0x11,0x98,0x81,0x36,0x06,0x68, + 0x4c,0x5c,0x3f,0x47,0x3e,0x64,0x9f,0x96,0x7c,0x76,0xa7,0xe2,0x75,0x10,0x8d,0x09,0x6d,0x12,0x1f,0x79, + 0x36,0x2f,0x27,0x1f,0x35,0x6e,0xb0,0x1d,0xa3,0x45,0xf4,0x32,0x37,0x1d,0x9a,0xd8,0x52,0xb3,0xdd,0x2b, + 0x5c,0xd2,0x6e,0x88,0x90,0x84,0x10,0x14,0x9d,0x08,0x7d,0x26,0xbf,0xd9,0xd6,0x25,0xd2,0xfa,0xd6,0x11, + 0x8d,0xa4,0x13,0x2f,0x0e,0x43,0x7c,0x1c,0x70,0x6c,0xe0,0x91,0x5c,0x03,0xd2,0x7b,0xad,0xd4,0x4d,0x69, + 0xa2,0xd0,0x6b,0x31,0xdf,0xbc,0x75,0x4f,0xf5,0x71,0x29,0x02,0xb2,0x11,0x78,0x5f,0x2a,0xb3,0x3b,0x47, + 0x3c,0x69,0xda,0x1f,0x57,0x69,0x85,0xab,0x35,0x52,0x0e,0x65,0x49,0xcb,0x54,0x13,0x65,0x2d,0xbc,0x1d, + 0xd1,0xd7,0xf2,0x11,0x11,0xd9,0x96,0xcd,0xe3,0x44,0xfd,0x02,0xc7,0x96,0x41,0x58,0x0a,0x46,0x25,0xf8, + 0x17,0x32,0x07,0xc7,0x91,0x25,0x8f,0x7c,0xcf,0x9e,0x2d,0xfa,0x42,0x17,0x8b,0x04,0x8d,0x94,0x43,0x3a, + 0x3b,0xc6,0x77,0x99,0x7d,0xe4,0x56,0xe8,0x01,0x2d,0x98,0x5c,0x4b,0x9b,0x52,0x4b,0x8e,0xb9,0xec,0xa9, + 0xd4,0x91,0xc3,0xb2,0x17,0x37,0x84,0xe3,0x0d,0xe4,0x4e,0xc6,0x75,0x9b,0x2b,0x38,0xb1,0x51,0x91,0x24, + 0xaa,0xc7,0xc8,0x90,0x85,0x80,0xfe,0x48,0x69,0xc9,0x1e,0x93,0x9c,0x70,0x76,0x01,0x16,0x14,0x4f,0x95, + 0x40,0x5c,0xeb,0x67,0x3a,0x93,0x9e,0x38,0x93,0x7e,0xbd,0x4c,0xde,0xad,0xae,0x04,0xbf,0xc6,0x40,0x13, + 0x52,0x62,0xc9,0xde,0x85,0xc8,0xa4,0x27,0x2f,0xdd,0x63,0x80,0x91,0x7b,0x17,0xc2,0x52,0xf6,0x2a,0x02, + 0x02,0xa6,0xc5,0xb8,0xeb,0x24,0x4d,0x29,0x21,0xd9,0xf4,0x81,0x68,0xcf,0xbe,0xcd,0x8a,0x67,0xde,0xdd, + 0xdf,0x90,0x07,0x0d,0x12,0x3f,0xeb,0x38,0x3d,0x09,0x33,0x8d,0x4e,0xf4,0x09,0xca,0xad,0xf3,0x33,0x71, + 0x59,0x83,0x79,0x61,0x72,0xf4,0xbc,0x29,0xed,0xef,0xa9,0x0b,0x1a,0xa3,0x7f,0x5b,0x56,0xe2,0xf5,0xda, + 0xb2,0xe2,0x28,0x28,0x85,0xc1,0xd7,0xe9,0x04,0xb5,0x7b,0x68,0x20,0xcd,0x4c,0x8e,0xef,0x73,0xe8,0x95, + 0xf7,0x93,0x15,0xe3,0xef,0xd6,0x57,0x8e,0xc4,0x10,0x32,0xcf,0x48,0xf9,0x74,0xf7,0xf8,0x9e,0x96,0x60, + 0xe0,0x97,0xb3,0x5f,0xba,0xf0,0xa7,0x52,0x18,0xc2,0x3f,0x3f,0x95,0x89,0xb8,0xc0,0x4b,0x88,0x4f,0x57, + 0xc4,0xff,0xb4,0x82,0xa9,0x14,0xb7,0xb1,0x34,0x3b,0x5d,0xe4,0xe6,0xee,0x2d,0xd0,0xc4,0x63,0x9b,0x94, + 0x1b,0x87,0x39,0xbb,0xee,0x54,0xb4,0xcf,0x21,0x21,0x66,0x63,0x57,0xda,0xe2,0xa5,0x26,0x1d,0x61,0xf7, + 0xdd,0x26,0x1d,0xcb,0x36,0xe9,0xb8,0xf2,0x0a,0xdc,0xef,0x14,0x60,0xd2,0xb1,0xbc,0x8d,0x74,0xac,0x3b, + 0xa4,0xe3,0x64,0x30,0x1f,0xac,0x5a,0xa4,0xa3,0x0e,0x8d,0x2b,0xb4,0x23,0xed,0xa1,0x1b,0x01,0x7c,0x4c, + 0xe5,0xac,0x88,0xbd,0x4f,0xb5,0x03,0x44,0xe1,0xd6,0x21,0x6a,0x55,0x14,0xb6,0x64,0xb3,0x6c,0x86,0x32, + 0x26,0x0a,0x77,0xc6,0x7f,0x06,0x01,0x21,0xe0,0xb0,0x16,0x32,0xb5,0x75,0x81,0x33,0x90,0xb1,0x7b,0x8b, + 0xfb,0x8a,0xc4,0x9a,0xbc,0x45,0x1f,0x37,0x82,0xf3,0x5b,0xb4,0x2d,0xf6,0x32,0xae,0x4d,0x01,0x76,0x6e, + 0x73,0xe2,0x74,0xb2,0x47,0x80,0x07,0x1d,0x6e,0x9c,0xc1,0x86,0x9f,0x63,0xe3,0x94,0x38,0xc8,0xfc,0x80, + 0xe2,0x34,0x68,0xe7,0x87,0x68,0xb3,0x4c,0xd2,0x20,0x68,0x23,0x38,0x1b,0xbd,0xdc,0x26,0xda,0xad,0xd1, + 0xa6,0xb2,0xb6,0xa2,0x57,0x34,0xbe,0xb7,0x86,0x0d,0xdd,0x79,0xc0,0x31,0x74,0x0e,0x25,0x70,0x1f,0x5b, + 0xa9,0x69,0xd7,0xd1,0x82,0xc3,0xe6,0x94,0x26,0x3a,0xa0,0xe6,0xf4,0xda,0x6d,0xc4,0x86,0x0d,0xf3,0x04, + 0x1b,0xc4,0x3a,0xe8,0x00,0xda,0xe8,0x58,0x97,0xdd,0x3a,0x46,0x76,0x97,0xe0,0xb9,0x85,0x89,0x6f,0x55, + 0x2a,0x0c,0x6c,0x7b,0xa6,0xe1,0x9f,0x49,0x58,0xb6,0xe1,0xd8,0x85,0x98,0x67,0x76,0x81,0xb7,0x98,0x38, + 0xf7,0xe4,0x5d,0xf7,0xd4,0x9d,0x7b,0x2a,0xd0,0x94,0x78,0x36,0xbc,0xaa,0xd2,0xa5,0x5c,0x6d,0x0f,0xc5, + 0x89,0x7d,0x85,0xa7,0x8a,0xce,0xb5,0x4a,0x45,0xaf,0x88,0x4d,0xe3,0x72,0xde,0x3d,0x4d,0xb5,0x25,0x4e, + 0xfc,0x48,0x45,0x66,0x8e,0x25,0x76,0xb7,0x1f,0xc5,0x2a,0x4d,0x4a,0x6f,0xe2,0x4b,0xcf,0x6f,0x88,0xb7, + 0x72,0x8b,0xf9,0x49,0xc5,0xb6,0x4a,0x78,0x1d,0xf3,0x6e,0x5c,0x47,0xab,0xf5,0xba,0x29,0xa2,0x30,0x55, + 0x8d,0xb1,0xbb,0x29,0x3a,0x51,0xb7,0xdb,0x17,0xcc,0x6f,0x5d,0x8d,0x63,0x03,0x39,0x56,0xb6,0x3b,0xb9, + 0x86,0x03,0x7a,0x9d,0xe0,0xc2,0x25,0x04,0x7e,0xf2,0x69,0x13,0xf8,0x56,0xb4,0x69,0x95,0x72,0x91,0xf5, + 0x61,0xac,0x09,0xd0,0xb7,0xa6,0x6f,0x22,0x90,0x8a,0xf7,0x35,0x99,0xc8,0x2e,0x41,0xff,0xe3,0x6a,0x1b, + 0xbf,0x56,0x36,0xa2,0x3d,0x8c,0xbc,0xab,0xd6,0xc2,0x92,0xad,0x4b,0xaf,0xcf,0xb2,0xc7,0x96,0x0b,0x8a, + 0x39,0xa0,0x6d,0xd7,0x31,0xca,0x18,0x92,0x0a,0x03,0x49,0x63,0x1e,0x6b,0x22,0x34,0xfe,0xc2,0x26,0x41, + 0x05,0x6b,0xc3,0xe6,0x8d,0xe1,0x6b,0xad,0x40,0x05,0x6e,0xd1,0x04,0x95,0x84,0x5f,0x66,0x97,0xe4,0x38, + 0x38,0xbd,0x04,0x65,0x7f,0x1f,0x9a,0x82,0x02,0xd2,0x6e,0xae,0xbc,0xf0,0xf6,0x2c,0x61,0x9f,0xb0,0x2b, + 0x0a,0x91,0x1a,0xa2,0xc8,0x32,0x73,0x04,0x4e,0x46,0x05,0x02,0x81,0x60,0x79,0xdb,0xc9,0x30,0xe9,0x95, + 0x07,0x12,0xe6,0x63,0xac,0x5d,0x83,0x44,0xf1,0x84,0x1a,0x13,0xff,0x53,0xab,0xf5,0x63,0xc9,0x03,0x21, + 0xc0,0x1e,0x55,0x57,0x9b,0xcb,0xf6,0x9c,0x59,0x3b,0xaa,0x44,0x48,0x13,0x3e,0x7f,0xb5,0x71,0x23,0x22, + 0xd5,0xca,0x90,0x7c,0xf1,0xdd,0xc1,0x0a,0x71,0xfd,0x8c,0x54,0x4b,0x05,0xee,0xae,0x71,0x8f,0x84,0xf2, + 0xbc,0x61,0x5b,0xc1,0x24,0xdc,0xe6,0xfe,0x75,0x75,0xff,0xe0,0xfe,0xbf,0xee,0x9d,0xab,0xe0,0x57,0x79, + 0x0c,0xa2,0x4e,0xe6,0xd7,0x2e,0xf3,0x6b,0xff,0xd2,0xcc,0x99,0x86,0x05,0xf8,0xc6,0x79,0xb1,0xe4,0x9f, + 0xb9,0x59,0x76,0x97,0xa7,0xda,0xbe,0x89,0x76,0x22,0xab,0x2a,0x28,0x7b,0x09,0x1b,0xc7,0xf0,0x96,0x3d, + 0xf7,0x6f,0x72,0xf4,0xfa,0x19,0xbe,0x2b,0x93,0x77,0xe5,0x9f,0xc4,0xb3,0x44,0xd4,0x58,0xad,0x43,0x4a, + 0xb2,0xf1,0xdd,0x07,0xe9,0xce,0x05,0x14,0xb8,0xc1,0xaf,0x45,0x70,0xef,0x9b,0xbb,0xf1,0xdd,0x07,0x54, + 0x8a,0xb0,0x86,0x7e,0x57,0xef,0x4a,0x57,0xde,0xf9,0xb8,0xec,0xfd,0x9f,0xc3,0x83,0x51,0x10,0x7d,0x73, + 0xc0,0x46,0x7c,0x4b,0x7b,0xaf,0xe3,0xac,0xca,0xb2,0x3f,0xb2,0x10,0x21,0x89,0x2f,0x6c,0xa2,0x0b,0xb4, + 0x6d,0xae,0xc6,0x56,0x97,0x45,0x32,0x17,0x99,0x8a,0xb2,0xe4,0x61,0xc0,0xc2,0x80,0x05,0xe7,0xd0,0x21, + 0xad,0xa8,0x57,0x8a,0x4b,0x38,0x75,0xab,0x82,0x7a,0x53,0x9d,0xf7,0xd4,0x7c,0x91,0xd6,0xde,0x55,0x90, + 0xea,0xba,0x48,0xee,0xed,0x87,0xbf,0x5e,0x45,0xb4,0x16,0x67,0x45,0x32,0xed,0x8d,0x10,0x62,0xd7,0xed, + 0xba,0x50,0xbd,0xdb,0xb5,0x19,0xc3,0x0c,0xe1,0xfd,0x72,0x09,0xbb,0xe4,0x9a,0x78,0x24,0x84,0x2a,0x85, + 0x41,0xe9,0xe9,0xad,0x55,0xea,0x90,0x30,0x07,0x51,0xfb,0xc3,0x81,0xd3,0x1f,0xd2,0xe7,0x57,0xd4,0xbb, + 0x5f,0x1f,0x85,0xc7,0x0f,0xf7,0xff,0x7d,0x82,0x1e,0x1e,0xfd,0x69,0x0f,0xaf,0x0a,0x15,0xec,0xdf,0x39, + 0x0c,0x50,0xed,0x8b,0xf2,0xca,0x54,0x4b,0x75,0x7d,0x2c,0x5a,0x0c,0x99,0xb3,0x4d,0xd8,0x3d,0xdc,0xa8, + 0xc7,0x6d,0x3d,0x90,0x0d,0x8d,0xa2,0x3e,0x11,0xab,0x0d,0x4a,0x7a,0x9f,0x83,0x91,0x57,0xfb,0xe6,0x82, + 0xc1,0x40,0x3d,0x2c,0x92,0xe3,0xc0,0x5b,0x13,0xc7,0xb8,0x05,0xe6,0x1a,0xc0,0xe0,0x44,0xbd,0x43,0x29, + 0xb1,0x6e,0x7c,0xcc,0x30,0x46,0x99,0x02,0x6c,0x54,0x85,0xce,0x60,0x93,0x69,0xc8,0xd7,0xc5,0x74,0xda, + 0xa6,0xbf,0xd7,0x31,0x1d,0xed,0xfd,0xb3,0x26,0xe3,0x89,0x84,0xec,0x45,0x9b,0xf2,0xc4,0x79,0xee,0xde, + 0x62,0xa4,0xfb,0x6f,0x72,0xb5,0x8e,0xf8,0x72,0x43,0xbc,0x75,0xa7,0x48,0x6e,0x84,0x88,0x78,0x89,0x9b, + 0xe8,0x09,0xd4,0xa8,0xe0,0x79,0x4e,0x1c,0x67,0xdf,0xad,0xa3,0x75,0x3e,0x87,0x0d,0x05,0x22,0x36,0x55, + 0xe5,0x74,0xc5,0x93,0x74,0x94,0x2f,0x91,0x60,0xae,0xc0,0xe5,0xcc,0xac,0x82,0x4c,0x07,0xd6,0x4b,0x78, + 0xe5,0x36,0xbf,0x93,0xbb,0x51,0xd9,0x37,0x42,0x81,0xa4,0x6f,0x25,0xe4,0xe7,0x05,0x0d,0x66,0xaa,0x77, + 0x1d,0xd1,0x21,0x27,0xca,0x5c,0x88,0xd8,0xdb,0x91,0x56,0x4c,0xf8,0xf8,0x63,0xe1,0x25,0xc0,0x51,0x4a, + 0x52,0xde,0x17,0x1f,0x8b,0xf2,0xaa,0xd0,0x95,0x22,0xad,0x13,0x62,0x3e,0x3e,0x57,0x7d,0x11,0xe4,0xe3, + 0xc7,0x85,0xf2,0x2e,0x26,0xc4,0x87,0xa7,0xf3,0x7c,0x96,0x4d,0xae,0x27,0xf3,0x0c,0x77,0x31,0xd7,0xf1, + 0xbb,0x62,0xa3,0x5e,0x13,0x44,0x1e,0xff,0xe7,0xd7,0xab,0xe1,0x9d,0x93,0x7b,0xea,0x69,0x81,0x48,0xfd, + 0xbc,0xb7,0x4e,0x4f,0x89,0x0c,0xbb,0xd9,0xa8,0x37,0x94,0xe4,0x08,0x56,0x7b,0xad,0x9d,0xf8,0xcd,0xa8, + 0x27,0xfd,0xb9,0x3f,0xfd,0xfc,0xb4,0xb8,0xcc,0xab,0xb2,0xd0,0x77,0x84,0xef,0xb6,0x12,0x20,0xc2,0xe3, + 0x9e,0xaa,0xdf,0x8a,0xe4,0x49,0xb1,0xb7,0xd7,0x9f,0xdb,0x06,0x78,0xf5,0xbc,0x48,0xde,0x50,0x59,0xed, + 0xb0,0x53,0xa4,0x97,0xf9,0x39,0xb8,0x84,0xe1,0x8a,0x26,0xec,0xe1,0x39,0xdf,0xc4,0xd4,0x2a,0xff,0xa2, + 0x48,0x9e,0x53,0xf9,0x7b,0x8b,0x3a,0xcf,0xd6,0x84,0x7b,0xa6,0x54,0x44,0x5b,0x5c,0x3d,0x2f,0x22,0xf5, + 0x4c,0xb2,0x9f,0x7b,0xfe,0x82,0x28,0xb9,0xf3,0xf5,0xf0,0x00,0xd8,0x4d,0xbd,0xda,0xce,0xcf,0xa6,0xe7, + 0xd9,0x3d,0xce,0x7c,0xb9,0x9d,0x49,0x70,0x50,0xd1,0x39,0x87,0x6c,0x3a,0xcd,0xcc,0x1b,0x1d,0x68,0xbf, + 0x15,0xea,0xad,0xee,0x4a,0xbe,0xbc,0xa0,0xbd,0xb5,0xce,0x97,0xe9,0x94,0xfe,0x94,0xf4,0xa7,0xac,0x5d, + 0x97,0xe0,0x32,0x5e,0xd6,0xfa,0x93,0x47,0x45,0x12,0xf2,0x37,0x93,0x8b,0x8a,0x48,0x94,0x5f,0xef,0xfd, + 0x3a,0x1d,0x78,0xbd,0xbf,0xd9,0x0c,0xf9,0xf6,0xdd,0x48,0xfd,0x04,0x65,0x34,0xa8,0xaa,0x37,0x05,0x87, + 0xa8,0x04,0x56,0xfe,0xc0,0x76,0x0d,0xfd,0x57,0x15,0x7f,0x20,0x7c,0xa2,0x63,0x1f,0x04,0xea,0x06,0x57, + 0x1d,0x7b,0x14,0x30,0x2a,0x3b,0xd8,0x00,0x4f,0xc9,0x2c,0x6f,0x07,0xd4,0x43,0x0f,0xf6,0xed,0xf7,0x0c, + 0xf5,0x1f,0x8a,0xc8,0x73,0xea,0x46,0xfb,0xef,0x0b,0xf5,0x5d,0xa1,0xfe,0xf0,0x50,0x50,0x87,0x16,0xa0, + 0x31,0xbe,0x87,0x61,0xcc,0x7b,0x6a,0x0f,0x8b,0xda,0x07,0x43,0xe7,0xf3,0xf2,0x2c,0x9d,0x83,0x26,0x65, + 0x44,0x85,0x79,0x91,0x24,0xe0,0x7e,0xb0,0x83,0xc3,0xac,0xb8,0x1c,0x7e,0x78,0xff,0xf4,0xf4,0xe9,0xab, + 0x0f,0x91,0x7a,0x4f,0xb0,0xfc,0x7b,0x0b,0x44,0x4e,0x4f,0x91,0xf9,0xe4,0xe9,0x87,0xa3,0xd7,0xaf,0x5f, + 0xbc,0x3b,0xfd,0xf6,0xc5,0xeb,0x47,0x0f,0x5f,0x9c,0x7e,0xf7,0xfa,0xf5,0x0f,0xa7,0xa7,0xea,0x87,0x7e, + 0xc0,0x7d,0x77,0xbd,0x38,0x2b,0xa9,0xd1,0xa3,0x50,0x9e,0xa2,0xfe,0xbe,0xe9,0x2b,0x8b,0x51,0xae,0x73, + 0x7b,0x71,0x34,0xfa,0xee,0x96,0x9a,0x33,0x2e,0x4e,0x3f,0xb8,0xa1,0xa1,0x35,0xeb,0xad,0x58,0x17,0x72, + 0x95,0x5f,0xd6,0xf4,0x45,0x5e,0xb5,0xd1,0xf2,0xdb,0xc7,0x5f,0x0f,0xa6,0xdf,0xe5,0x18,0x28,0xba,0x2a, + 0x28,0x31,0x95,0xff,0x0d,0x2d,0x6b,0xeb,0x1b,0xaf,0x20,0xd6,0xbf,0x55,0x96,0x90,0x45,0x5a,0xf9,0x0b, + 0xf9,0xd9,0x0e,0xaa,0x6c,0xa3,0x4d,0x08,0xbe,0x2f,0x92,0x73,0xf5,0x2d,0x18,0x82,0x9f,0x8b,0xad,0xcf, + 0xf3,0x69,0xf2,0x2d,0xd1,0x6d,0xfa,0xaa,0xc4,0xd5,0x19,0xd4,0xf3,0x9b,0xd1,0xcf,0x45,0xbb,0x8f,0xef, + 0x56,0x67,0x3d,0xdd,0xa4,0xd2,0x3a,0x58,0x1f,0x35,0xd7,0xfa,0x44,0x1c,0x0d,0xbb,0x5f,0xad,0x42,0xfb, + 0x9d,0xda,0xfa,0x44,0x2e,0xca,0xf6,0xfb,0xe7,0xdd,0xa3,0x6d,0x1f,0xd1,0x99,0x27,0xd9,0x52,0x04,0xed, + 0x9d,0x1a,0x8a,0xb2,0x21,0xc2,0xba,0xff,0xc2,0x3c,0xd7,0x61,0x2b,0x69,0x65,0x7b,0xa7,0xac,0x6b,0xef, + 0xc4,0x97,0xc1,0xaf,0xec,0xf5,0x79,0xb6,0x61,0x36,0x8b,0xe7,0xe9,0xfc,0x77,0x81,0x70,0xca,0xbf,0x74, + 0x8f,0x7c,0xa7,0x0c,0xd3,0xd3,0x03,0x57,0x19,0x7d,0xc9,0x25,0xdf,0xfe,0xd4,0xbd,0xe3,0x52,0xdf,0x5e, + 0xc9,0x77,0x48,0xe9,0xfb,0x2e,0xb3,0xf9,0xc2,0x5c,0x76,0x59,0xd4,0xe6,0xea,0x0e,0xf9,0x4a,0x5f,0x36, + 0x55,0xca,0xab,0xbb,0x7d,0xca,0x2f,0xe4,0x6e,0xa1,0x6a,0xa7,0x9a,0x7b,0x21,0xfd,0x54,0xbe,0xc1,0x14, + 0xe6,0xbc,0xa0,0xf2,0x74,0x13,0x6d,0xb3,0x56,0x73,0xb1,0xe5,0x96,0x01,0x71,0xab,0x1e,0x7d,0x45,0xa7, + 0x9f,0x54,0xa5,0x70,0x8f,0xd0,0x77,0x73,0xda,0x6b,0x53,0x6d,0x82,0xf3,0xdb,0x62,0x75,0x8a,0x24,0x9a, + 0xb0,0xe5,0xae,0xd8,0xe3,0x39,0x35,0x3a,0xf5,0x12,0xf8,0xa6,0x55,0xf3,0xda,0x8a,0x01,0x5e,0x7b,0x69, + 0x7c,0xe1,0x9c,0xdf,0x9b,0xed,0x20,0xe2,0x30,0x19,0x52,0x3f,0x12,0x62,0xe6,0xa5,0x88,0x11,0x1d,0x6f, + 0x96,0x9f,0xaf,0xf8,0x96,0xf2,0x18,0x48,0x77,0xf4,0x63,0x21,0xcb,0xc4,0x37,0xd4,0x6f,0x63,0xce,0xfe, + 0x69,0xd9,0xf4,0xde,0x48,0x4f,0x94,0x4f,0xf8,0x8b,0x07,0xa5,0xd4,0xb0,0xec,0xca,0xac,0x73,0x33,0x89, + 0xc1,0xc6,0x7c,0x8f,0x05,0xc7,0x37,0x11,0x36,0x4b,0x6e,0x8d,0x71,0xa6,0x71,0xbc,0xea,0x88,0x79,0xe3, + 0x4d,0x1a,0x0d,0x75,0xa3,0x9a,0x2a,0xe9,0xdc,0xa9,0xa3,0x8a,0xaa,0x83,0x1a,0x9a,0x2a,0x1a,0x1d,0x07, + 0xd8,0xb3,0x01,0x42,0x5e,0x2f,0x3d,0x3b,0x0c,0x1d,0x3e,0x0d,0x29,0x1c,0x0e,0x0c,0x0f,0x25,0x1c,0xc7, + 0x82,0x0a,0xa6,0xfb,0x75,0x06,0xf3,0x8c,0x1e,0xb3,0x3c,0xe9,0x65,0x53,0xc1,0x3c,0xe0,0x2a,0x2c,0x2a, + 0x95,0xf5,0x07,0xd0,0x3e,0xc6,0xfd,0x61,0x36,0x54,0x90,0x95,0x49,0xec,0xef,0x8f,0x22,0xbe,0xdf,0xd6, + 0x66,0x59,0x8b,0x6f,0x44,0x92,0xd7,0x4e,0xa4,0x98,0x71,0xf8,0x68,0xe8,0xbb,0xb9,0x25,0xb4,0xc4,0x48, + 0x07,0xb6,0xcc,0x24,0xb0,0xa5,0x0c,0x2b,0xe6,0x47,0x33,0x98,0x18,0xf1,0xdc,0x5d,0x9c,0x49,0x33,0x34, + 0x24,0x6b,0x44,0x70,0xdf,0x89,0x8f,0x20,0x8f,0x29,0xcf,0xf8,0x8c,0x33,0x97,0x63,0xab,0x14,0x78,0x49, + 0x63,0x16,0xd8,0x49,0x81,0xf3,0x10,0xdf,0x15,0x3b,0xb5,0x04,0x23,0x1e,0xd7,0xc3,0xb4,0x20,0x4d,0x03, + 0x91,0x94,0x55,0x72,0x53,0x5f,0x94,0xab,0xf9,0x94,0xf6,0x2a,0xcd,0x60,0x03,0xd8,0x52,0x1d,0xcb,0x5c, + 0x1e,0x8e,0x04,0x2f,0x31,0xb8,0x22,0x5b,0xf2,0x9a,0xff,0xac,0xf1,0xc3,0xe5,0x82,0xdd,0x78,0x09,0x5b, + 0x5d,0xe9,0xcb,0x93,0x69,0xe8,0x81,0xbe,0x80,0x79,0x2b,0xee,0x48,0x18,0x3e,0x6d,0x4b,0x84,0x24,0xa4, + 0xa1,0xa5,0x24,0x93,0x66,0x13,0x77,0xb3,0xbd,0x9b,0x94,0x7b,0xd5,0x40,0xda,0x9d,0x16,0xeb,0x72,0x25, + 0x2a,0x1e,0xc4,0x7c,0x26,0xda,0x04,0x22,0xd1,0x4a,0x55,0x95,0xbe,0xe8,0xb6,0x35,0x77,0x19,0xa2,0x68, + 0x22,0xf5,0x2a,0x9d,0x7f,0x0c,0x39,0x12,0x7b,0xe5,0xe1,0x6a,0xa4,0xde,0x62,0xa2,0xdc,0xb9,0x58,0x5e, + 0x64,0x0c,0x8d,0x2f,0x63,0x78,0x87,0x9e,0x23,0x8a,0x3a,0x21,0x6b,0xfa,0x39,0x81,0xcb,0xb9,0x5f,0xb9, + 0xdf,0x91,0xdb,0x2e,0xab,0xea,0xc3,0xfd,0x0f,0xe5,0x86,0x2a,0xb9,0x11,0x98,0x8e,0xda,0x3b,0x46,0x1e, + 0xda,0x61,0x65,0x46,0xa9,0x84,0x3d,0xb9,0x85,0xe9,0xdb,0x29,0xc6,0x6f,0x74,0x4a,0xdc,0xf8,0x5e,0xa5, + 0x96,0x02,0x69,0xc6,0x59,0xfc,0x46,0xa4,0x38,0xc4,0xc5,0xf5,0x6e,0xab,0x14,0x1b,0x2a,0x79,0x42,0x04, + 0xe0,0xc3,0xdb,0x0b,0x0c,0x82,0x3a,0x38,0x49,0x7e,0xa3,0x42,0xd4,0x23,0xa6,0x42,0xb7,0x0e,0x25,0x51, + 0x12,0x13,0x5e,0x79,0xc4,0xe6,0xcf,0xf6,0xae,0xb9,0xc6,0x24,0x35,0x36,0xc9,0xda,0xad,0xed,0xb4,0x91, + 0x46,0xb6,0x5e,0xf7,0x44,0x9b,0x6f,0xb4,0x79,0x22,0x91,0xb7,0x97,0xb0,0x95,0x8b,0xda,0xde,0x18,0x8d, + 0x91,0x7c,0xc2,0x17,0x43,0xd5,0x09,0x60,0x66,0x94,0x12,0x03,0xd2,0xbd,0x10,0x8f,0x95,0x87,0xc7,0xe9, + 0x49,0xc4,0x97,0x0d,0x25,0xe9,0x38,0x35,0x2e,0xe5,0x75,0xd4,0xb9,0x24,0xae,0x8e,0xc6,0xc4,0xc9,0xd5, + 0x27,0x76,0xc7,0x6e,0x30,0x6e,0x89,0x1e,0x4a,0x0f,0x8b,0xac,0xb9,0x28,0xa7,0xfc,0x28,0x57,0x40,0xe3, + 0x69,0xa2,0x63,0x09,0xf4,0x4f,0xcc,0xf6,0x70,0xfa,0xa2,0xec,0x1b,0x82,0x99,0x87,0xa9,0x1a,0x98,0x3e, + 0xe6,0x1c,0xa8,0xc1,0xb4,0x7f,0x49,0x2c,0x4d,0xf2,0x46,0x24,0xb2,0x95,0x9a,0x54,0x6a,0x5e,0x75,0x34, + 0xb4,0x5d,0x9a,0x1b,0x10,0x40,0x38,0x7b,0x85,0x5b,0xa0,0xd4,0x8c,0x43,0xb0,0x71,0x20,0x36,0xb6,0x85, + 0xe9,0xa1,0x59,0x89,0xca,0xb3,0xd1,0xb8,0x41,0xbc,0xfa,0xef,0x51,0x34,0x69,0x91,0x85,0x7e,0x5e,0xf8, + 0x01,0xe1,0xb8,0x8d,0x81,0x9e,0xab,0xd8,0x3a,0xed,0xbd,0x24,0xf2,0x3d,0x3d,0xcf,0x1e,0x5f,0xa4,0x45, + 0x91,0xcd,0xd7,0xeb,0xdd,0xa3,0xb0,0x9d,0x04,0xba,0xdb,0x5c,0x66,0xd4,0xce,0x21,0xb4,0x56,0x37,0xd5, + 0x0a,0x67,0x30,0xdf,0x6f,0xd4,0xce,0xb5,0x72,0xa6,0xb0,0xa7,0x7f,0xc6,0xbd,0xee,0x03,0x5c,0xe9,0x9c, + 0x51,0xc9,0xb2,0x62,0xd4,0xd7,0xae,0x48,0x5d,0x54,0xc9,0x92,0xa6,0x99,0x0e,0xa3,0xfb,0x23,0xfd,0x70, + 0x38,0x04,0x87,0xca,0xa5,0x92,0x0f,0xaa,0x5d,0xfd,0x05,0x8a,0xd4,0x8d,0xae,0x04,0xc2,0x9e,0xcd,0x2d, + 0x93,0x4a,0x38,0x7b,0x91,0xd7,0x3c,0x9f,0xfa,0x51,0x5b,0xee,0x5e,0x56,0x89,0x4e,0x30,0x37,0xe4,0x12, + 0x29,0x5d,0xb7,0x5a,0xb9,0xac,0xe4,0xba,0x61,0xe2,0x77,0xde,0x16,0x2d,0x97,0xc1,0x73,0x13,0x6d,0x98, + 0x3e,0x98,0x54,0x0c,0x14,0x8b,0x4a,0x9d,0xcb,0xd0,0x88,0x19,0xbb,0xae,0x3a,0x82,0x26,0x2d,0x4e,0xdd, + 0x0b,0x6c,0x1c,0x67,0x16,0x5e,0x11,0x86,0x0a,0xfe,0x1f,0x5b,0x9f,0x67,0x00,0x17,0x2b,0xbb,0x8a,0xb3, + 0xc8,0x2b,0x54,0x21,0x6e,0xac,0x14,0x2a,0x6e,0x2b,0x64,0x6c,0xe8,0x58,0x07,0x9f,0x25,0x55,0xab,0x9c, + 0x82,0x45,0x04,0x04,0x9b,0x5b,0xf1,0xf8,0x1a,0xb0,0x9f,0x67,0x95,0x5c,0xdb,0x74,0xca,0x90,0x7a,0xc5, + 0x7f,0x8f,0x38,0x54,0xd3,0x47,0x86,0xda,0xc7,0xfc,0xf7,0x13,0xce,0x8e,0x87,0xf8,0xf3,0xae,0xea,0xa1, + 0x8b,0xcd,0x39,0xb7,0x40,0xf0,0x74,0xf6,0xc2,0x38,0x65,0x6c,0x45,0x34,0x90,0x9c,0x63,0x2e,0xc1,0xd8, + 0x02,0x73,0x72,0x35,0x0e,0xf5,0x99,0x48,0x87,0xe2,0xee,0x6e,0xc5,0x0f,0x72,0xd8,0x40,0xd6,0xc0,0x49, + 0x78,0xd0,0xf7,0xc3,0xa7,0x7f,0x5c,0x73,0x12,0x1e,0x34,0x43,0x43,0x94,0x1f,0x27,0xe1,0x41,0x1f,0x48, + 0x5c,0x99,0xab,0xc3,0x7d,0xea,0x7d,0xa1,0xa9,0xcc,0xc9,0x99,0xa1,0xd2,0x89,0x4d,0x1a,0x0c,0x1e,0xea, + 0x86,0x24,0x92,0x9a,0xa5,0x5e,0xa7,0x39,0x9d,0xfb,0xae,0x1e,0x7b,0x8c,0x83,0x95,0xd2,0xc4,0x7c,0x76, + 0xf5,0xc4,0x7f,0xa7,0xcc,0xe7,0x84,0xa8,0x34,0x40,0x78,0x45,0xba,0xa9,0x4e,0x83,0x00,0x71,0x7b,0x4f, + 0x7c,0x82,0x46,0xee,0x8c,0x27,0x1a,0xa4,0xc1,0x58,0xe2,0xd0,0x7f,0xed,0xf8,0xec,0xec,0xbe,0x2e,0x44, + 0x6c,0x61,0xc0,0x1c,0xee,0x60,0x3a,0xcc,0xc9,0x30,0x70,0xb7,0x3e,0xf6,0x1c,0x98,0x3d,0x87,0x70,0x0b, + 0x7d,0x8e,0xb2,0x44,0x9f,0xc5,0xee,0x1a,0xb9,0x0d,0x7b,0x49,0x79,0xfd,0xc1,0x45,0x79,0x7d,0xbd,0x8b, + 0xe0,0x16,0xaf,0x3c,0x4a,0xc8,0x4e,0xa5,0xb1,0x2d,0x33,0x9f,0x21,0xf8,0xcc,0x3b,0xff,0xa4,0xef,0xd0, + 0xe7,0x4c,0x57,0x8f,0xa4,0x02,0xe5,0xb1,0x8f,0xff,0xd6,0xf1,0x7c,0x6c,0x52,0xe4,0x31,0x76,0x72,0xc3, + 0x33,0x6e,0x05,0xd4,0x40,0xca,0x81,0xf3,0x9a,0xc4,0xeb,0xab,0xbe,0xb7,0x4d,0x59,0xf1,0x8a,0x31,0xf4, + 0x36,0x50,0x14,0x35,0x17,0x55,0x79,0x45,0x87,0xc8,0x5b,0x56,0xd6,0xdf,0x95,0xcf,0x76,0x68,0xfa,0x76, + 0x34,0x5c,0xef,0x20,0x08,0x6d,0x7b,0x49,0x61,0x8a,0x12,0x6d,0x08,0x27,0x51,0xe5,0xd7,0x37,0x16,0x36, + 0xf7,0xf6,0xbe,0x0b,0x5b,0x1d,0x44,0xef,0xcb,0x65,0xa8,0xa7,0x08,0x52,0x80,0x62,0xb5,0x04,0x3c,0xb9, + 0x78,0x78,0x74,0x94,0xb4,0xe6,0x45,0xb8,0xe4,0x1e,0xe7,0x9b,0x8c,0x20,0x79,0xd4,0x06,0x38,0xc8,0x2d, + 0x42,0xd8,0xc3,0x85,0x9d,0x74,0x89,0xfb,0xd5,0x82,0x60,0xc3,0xee,0xfb,0x60,0x6c,0xbf,0x37,0x92,0x02, + 0xd9,0xbc,0x51,0xa7,0x4b,0x5e,0xbf,0x3f,0xc3,0xa2,0x63,0xdb,0xd8,0x7b,0xed,0xc1,0x1b,0x18,0xfe,0xc2, + 0x64,0x82,0xcd,0xe8,0xeb,0x3f,0x8d,0x0b,0xb7,0x1d,0x38,0xc9,0x83,0x16,0x11,0x68,0xb7,0x0b,0xd7,0xdd, + 0x91,0xbf,0x03,0xdb,0x35,0x6d,0xed,0xc4,0x4e,0x82,0x48,0x60,0xc2,0x48,0xb9,0x0a,0x6b,0x6f,0xb7,0xfb, + 0x13,0xd5,0xde,0xf7,0x45,0x7b,0x12,0x4d,0x8c,0xc9,0xce,0x0c,0x89,0xd4,0x61,0x4b,0x42,0xc3,0x1b,0xc1, + 0x43,0x34,0xbb,0x7a,0x3f,0x00,0x53,0x49,0x7a,0xb5,0xa2,0xc2,0xf1,0x2d,0x8b,0xad,0x03,0x47,0x27,0xc9, + 0x11,0xee,0x70,0x66,0xb8,0xe5,0x27,0xa0,0xaf,0xc7,0x2d,0xbb,0xbf,0xd3,0xca,0x9a,0x22,0x8e,0x8a,0x6f, + 0x3e,0x55,0x7b,0x7b,0xa7,0x15,0xdf,0x5c,0x36,0xfd,0x86,0x6b,0x8a,0x0a,0x5a,0x10,0x2a,0xa4,0xc3,0x45, + 0x17,0x83,0x43,0x75,0x00,0x39,0x0e,0x1f,0x76,0xa7,0xe6,0x52,0xc9,0x68,0xf4,0x11,0x3b,0x1d,0xa7,0xc3, + 0x81,0x7a,0x1f,0x4e,0x32,0x76,0x90,0xd3,0xf2,0x9a,0xd6,0x78,0xa9,0xdb,0xfe,0x60,0x61,0x88,0xee,0xb0, + 0xab,0x89,0x52,0xe2,0xb6,0x3e,0x1b,0x19,0xed,0x6a,0x59,0x1a,0x23,0x8a,0xf5,0x3a,0xe7,0xab,0xe3,0xec, + 0xd6,0x69,0x41,0x8b,0xb8,0x6c,0x9a,0x5a,0x5b,0x3c,0x96,0x6c,0xd9,0x4a,0x6f,0xba,0xc9,0x99,0xec,0x6f, + 0xbd,0xfd,0x15,0xd3,0xe5,0x56,0x8c,0xfa,0x36,0xcc,0x0c,0x23,0xa6,0xee,0x1a,0x2b,0x8d,0xbf,0xb4,0xb3, + 0xe5,0xae,0xf2,0x5b,0x5b,0xd8,0x74,0xa6,0x23,0x43,0x17,0xfb,0x00,0xc0,0x43,0x8a,0x3c,0x11,0xfe,0xa9, + 0x03,0x51,0x46,0xab,0x96,0x6d,0x31,0xda,0x9f,0xed,0x30,0x7f,0x6b,0xe9,0xcf,0xc3,0xee,0x52,0x35,0x04, + 0xf7,0xd3,0xf2,0xea,0xb3,0xeb,0xa5,0x07,0x87,0x40,0x3d,0x8f,0x32,0xa2,0xfb,0x9e,0x18,0xfd,0xd1,0x7a, + 0xbd,0x0a,0x6d,0xa6,0x39,0xe6,0x85,0x81,0x1d,0xfd,0xad,0xce,0x75,0xf6,0xf6,0xa8,0x75,0x18,0x1f,0x6e, + 0x84,0x6f,0xbb,0x43,0xc4,0x49,0x56,0xac,0x16,0x99,0x91,0xe7,0xa8,0x8e,0x7c,0x07,0x4a,0x9b,0xf8,0x5c, + 0xd5,0xf8,0xbb,0x51,0xaf,0xa9,0x38,0x76,0x18,0x98,0xf3,0xd1,0xe3,0x2c,0xfc,0xe4,0x49,0x5c,0x85,0xd3, + 0x7f,0x5a,0xa9,0x37,0x95,0x7a,0x52,0xa9,0xdf,0x2a,0xf5,0x9c,0x4a,0xc3,0x85,0xdf,0xe7,0xa1,0x35,0x85, + 0xc3,0xc7,0x61,0xbf,0x87,0x7e,0x8f,0x0b,0x7e,0x5e,0xdb,0xe9,0x89,0xfa,0x9c,0xf4,0x93,0x50,0xa2,0x30, + 0xdf,0x9c,0xb2,0x98,0x47,0x32,0xd1,0x79,0xed,0x75,0x7c,0x56,0x29,0xed,0x0d,0xff,0x01,0xce,0xfc,0x71, + 0x6a,0x5e,0x9f,0xce,0x17,0x71,0x25,0x0c,0x1b,0xd1,0x6c,0xd9,0x0c,0xef,0xb9,0xbc,0x6f,0x70,0x0d,0x85, + 0x78,0x6f,0xb7,0xcd,0x7a,0x94,0xb9,0xed,0x45,0x1b,0xf2,0x24,0x13,0xfd,0xa0,0xea,0xae,0xed,0x0e,0x65, + 0x75,0x52,0x08,0x1b,0x12,0xc1,0xb2,0x7d,0xc1,0x28,0xc7,0x09,0xc0,0xc5,0xcd,0xd1,0xf0,0x0e,0x6b,0x1f, + 0x43,0xd0,0xa7,0x19,0x75,0x47,0x4b,0xe7,0xbc,0x2b,0x8e,0xb4,0x4f,0x39,0xbc,0xed,0x1f,0xce,0xed,0xe6, + 0x47,0x50,0xce,0xe7,0x80,0xc2,0x8c,0xa3,0x23,0x84,0x25,0xae,0x89,0xb7,0xf1,0x4c,0x37,0xca,0x64,0xc4, + 0x6d,0x56,0xcb,0x38,0xda,0x6d,0x05,0x31,0xd8,0xed,0x23,0x4c,0xa5,0xa1,0xdd,0xdd,0x30,0xc7,0x4a,0x99, + 0xa8,0x04,0xc3,0x53,0x99,0x80,0xc7,0x5a,0x58,0xbb,0x5e,0x9b,0xd0,0xa7,0xce,0x9a,0x8f,0xcb,0x7b,0xef, + 0x7c,0x6d,0x81,0x36,0x85,0x74,0xf5,0x78,0x8b,0x94,0x54,0x44,0xe7,0x4a,0xe8,0x2b,0x7e,0x3c,0xd5,0xf7, + 0x56,0x87,0xe6,0xd1,0x08,0x53,0xf9,0x8e,0xa4,0xdb,0xba,0x92,0xe4,0xc8,0x94,0x5b,0x2e,0xcc,0xe5,0x40, + 0xed,0x1b,0xc2,0x96,0xb8,0xb4,0xe2,0x8e,0xbd,0xca,0x1e,0x21,0xf9,0x29,0xa9,0x81,0x69,0x8b,0xad,0x54, + 0xac,0x2c,0x6f,0xf2,0x6a,0xd8,0x12,0x51,0x19,0x8b,0x60,0x61,0xdd,0x11,0x70,0x06,0xe5,0x54,0x9d,0xb4, + 0x86,0x44,0x69,0x50,0xb0,0x20,0xf4,0xb4,0x12,0xbf,0xe4,0xda,0x77,0x4b,0x36,0xf1,0x7b,0x8e,0x27,0xc4, + 0xf1,0xe3,0xd2,0xf2,0x67,0xe1,0x5c,0x75,0xdb,0x96,0x4b,0xf2,0xb6,0xdb,0x3f,0xd8,0x2a,0xf9,0x84,0x85, + 0xe7,0x1b,0x67,0xd0,0xbc,0x4a,0xb6,0x27,0xd8,0xc5,0x84,0xf8,0x4c,0x1e,0xce,0x61,0xb9,0xfa,0x71,0x15, + 0x6d,0x4a,0x9e,0xf8,0x3b,0x35,0x5f,0x5f,0x5f,0xc0,0x42,0xd1,0x0b,0x93,0x4d,0x19,0x34,0x0d,0x13,0xad, + 0x26,0x47,0x9c,0x24,0xff,0xd2,0x62,0xbb,0x49,0x7b,0x36,0xae,0xf2,0x42,0x58,0xd0,0xb3,0x5d,0x05,0x40, + 0x9c,0x8b,0x8e,0xb1,0x51,0x12,0x96,0x6b,0xfb,0xd0,0x96,0x7b,0x88,0xf4,0xe5,0x75,0x55,0x5f,0x0b,0xa3, + 0xaa,0x15,0x0b,0x2d,0xf4,0x5f,0xd9,0xdc,0x9a,0x23,0x82,0x1a,0x85,0x3f,0x1b,0xb8,0xb5,0x77,0x17,0xbb, + 0x9a,0xbb,0x6f,0xc6,0x21,0xdc,0x57,0x23,0xdc,0xaf,0x6c,0x71,0x29,0x31,0x7a,0xc6,0x27,0x33,0x8a,0x53, + 0x54,0xb8,0x7b,0x00,0x8a,0x4e,0xdb,0x04,0xf4,0xd2,0x1a,0xdb,0x1d,0x6d,0x5a,0x78,0x8e,0x1d,0x41,0xdb, + 0x3d,0xb1,0x92,0x4a,0x31,0x72,0x15,0x24,0x1a,0xb2,0x54,0x6a,0x78,0x2a,0x36,0x0f,0xcf,0x0b,0xc7,0x6d, + 0x95,0x88,0xbd,0xca,0x54,0x9e,0xed,0x6b,0x84,0x40,0x95,0x5e,0xcf,0x0f,0x46,0x9e,0x34,0x73,0x54,0x11, + 0xcb,0x72,0xa7,0x7b,0xad,0x39,0x64,0x9a,0xb8,0x30,0xd3,0x66,0x1c,0x57,0x27,0xc4,0xdd,0xa3,0x07,0x2d, + 0xdb,0x06,0x26,0x5b,0x30,0xee,0xb8,0xf1,0x6e,0x32,0xa6,0x54,0xf5,0xa2,0x6a,0x09,0x29,0x9f,0xd3,0x7e, + 0x7d,0x56,0x25,0x87,0xea,0x55,0x95,0xdc,0x57,0x2f,0xd1,0xf0,0x53,0x5f,0x6f,0xc7,0x17,0x57,0x6f,0xd3, + 0xe2,0x82,0x81,0xe4,0x10,0x3b,0x5d,0x11,0x83,0xf9,0xb2,0x32,0x7a,0x38,0x9a,0xb6,0x0f,0x2b,0x1e,0xb2, + 0x44,0x65,0xf3,0xce,0x80,0x71,0x1f,0xb2,0x73,0x30,0xdf,0x91,0x5f,0x31,0x28,0x19,0x21,0x8d,0x35,0xee, + 0xe4,0x50,0x1f,0x3e,0x66,0x1a,0x15,0x06,0xf5,0x98,0xe0,0x0f,0xaa,0xe8,0xa2,0x2e,0x9b,0x40,0x27,0x8a, + 0xfb,0x9c,0x5e,0x90,0x23,0x07,0x0d,0x92,0xe5,0x49,0x0b,0xd3,0x7a,0x6e,0x50,0xf4,0xb6,0x47,0x92,0xb7, + 0xb6,0xca,0xd6,0x6e,0xcd,0xbd,0xdd,0x53,0x6c,0xa3,0x41,0xbb,0x9b,0x90,0x69,0xdb,0x39,0x4a,0xcf,0xe5, + 0x3a,0x5c,0xd5,0xe8,0x43,0x8c,0xc1,0x5d,0x1f,0x6c,0x26,0x4d,0x6d,0xb9,0x01,0x26,0x5b,0x7e,0x39,0x91, + 0x50,0xad,0x84,0xa6,0x84,0xde,0xbe,0xe3,0xee,0x36,0x7f,0x9d,0x85,0x46,0x2b,0x67,0x26,0x97,0xb6,0x19, + 0x87,0xcb,0x16,0xc1,0x85,0xac,0xa2,0xb4,0xf5,0xa6,0x2a,0x3f,0x89,0x78,0x40,0x27,0xd7,0xd9,0x7c,0x26, + 0xef,0x7d,0xdb,0xc8,0xde,0x9a,0x59,0xd8,0xc5,0x60,0x1a,0x1e,0xe1,0x26,0x6d,0xb8,0x1d,0x1d,0x92,0xb3, + 0x70,0xb8,0xce,0xe4,0xec,0xed,0x51,0xa2,0x89,0xa9,0x88,0x88,0xc0,0xe6,0xa5,0xf0,0x76,0x82,0x51,0xda, + 0x66,0x26,0x97,0xef,0x39,0xba,0x53,0x95,0x25,0x3d,0x8d,0x0b,0x79,0x8a,0x33,0xa4,0x59,0x75,0xe5,0xf1, + 0x09,0x17,0xc9,0x66,0xb8,0xb5,0xc7,0x13,0xd8,0x88,0x78,0x28,0xf3,0x36,0xa1,0x49,0xe8,0x6e,0xe0,0x43, + 0x2e,0xe5,0x50,0x95,0x7e,0xb7,0x08,0xc2,0xa6,0xb4,0xc9,0x47,0x90,0x76,0x5a,0x1e,0xe4,0xcf,0x17,0x95, + 0xd4,0x97,0x08,0xf5,0xd9,0xf3,0x50,0x2e,0xb1,0x85,0xb0,0xad,0x61,0xab,0x89,0x44,0x47,0x1c,0x6b,0x3e, + 0x7b,0x74,0x40,0x1f,0x2a,0x97,0x5f,0xdd,0xd2,0xa0,0x9c,0xdd,0x66,0x7c,0x02,0x2f,0x47,0x55,0x96,0xd5, + 0x4e,0x3b,0xdc,0x59,0x42,0x7b,0xe0,0xb7,0x37,0x1c,0xed,0xc0,0x02,0x2b,0x65,0xa2,0x5c,0xfa,0x07,0x51, + 0xd3,0x05,0x75,0xb9,0x33,0xd1,0x27,0x35,0x12,0x3e,0xe2,0x4f,0x27,0x2d,0x63,0x6f,0xe5,0xdf,0x14,0x7d, + 0xc7,0xbb,0x4b,0x15,0xf1,0x1e,0x36,0xbc,0x96,0xbe,0x25,0xe2,0x5f,0xfd,0xf6,0x40,0xeb,0x43,0x72,0xe9, + 0x31,0x87,0xa5,0x87,0x02,0x26,0x10,0x1a,0x24,0x80,0x40,0x2f,0xf7,0x48,0x0f,0x09,0x6a,0x25,0x25,0xec, + 0xfe,0x0d,0x54,0xb3,0x35,0xdd,0xae,0xb4,0x99,0xed,0x5a,0xb6,0x95,0x6a,0x1b,0xb5,0x45,0x2a,0xcc,0x93, + 0x65,0x16,0x86,0x5a,0x58,0xe8,0x16,0x50,0xa4,0xfc,0x4a,0xe2,0x72,0xf4,0x90,0x32,0xaa,0x75,0x6d,0x6d, + 0x4f,0xf8,0x6f,0x5a,0xd5,0x77,0x21,0x34,0x96,0x39,0xb1,0x17,0x30,0xe4,0xeb,0xa1,0x47,0xb6,0x80,0xc0, + 0x70,0x30,0x70,0x9b,0xef,0xae,0xf8,0xa8,0x31,0xce,0x2d,0x9f,0x47,0xd3,0x0e,0xf1,0x31,0xd2,0xa8,0x2c, + 0xa9,0xa5,0x63,0xe0,0xf7,0x50,0x5b,0xd8,0x80,0x25,0x02,0x03,0x99,0x0d,0xbd,0xd5,0xd7,0x52,0x7b,0xaa, + 0xd9,0xa6,0x4b,0x5c,0xee,0xc4,0x7b,0xbd,0x34,0x21,0x6d,0x9f,0xc1,0x5c,0x9a,0x96,0x96,0x78,0x1b,0x8c, + 0x1c,0x4e,0x19,0x8a,0xf5,0x35,0x84,0xbd,0xe6,0x1c,0xd6,0x46,0xfa,0x11,0x80,0xd6,0xee,0x44,0x05,0x88, + 0x52,0x38,0xcf,0xf7,0x4c,0x11,0xfb,0x39,0x69,0x92,0x12,0xc6,0xd8,0xa2,0x87,0xe9,0xce,0x41,0x77,0xf4, + 0xed,0xcb,0xeb,0x1b,0xbe,0xbc,0x3e,0x11,0x51,0x05,0x24,0x89,0xe3,0xf3,0x78,0x19,0x8a,0x96,0x4f,0xae, + 0x47,0x36,0xf5,0xa2,0x09,0x40,0xe1,0xf8,0x73,0xd8,0x53,0xe0,0xb4,0x0c,0x91,0x76,0xca,0xba,0xba,0x5e, + 0xe1,0x69,0xbb,0x87,0x9e,0x51,0x70,0xa6,0x19,0xf6,0x96,0x28,0x40,0xe7,0xb1,0x44,0x40,0xb1,0xe9,0x66, + 0x88,0xbb,0xaa,0x6e,0x58,0xd4,0xc9,0xe7,0x04,0x5f,0x88,0x0c,0x49,0x1a,0xdf,0x6c,0xe6,0xdf,0x6d,0xe0, + 0x83,0x22,0xc7,0xf8,0xde,0x22,0x88,0xd3,0xc4,0x67,0x1c,0xf4,0x60,0x95,0x91,0xc9,0x44,0xa3,0xd4,0x8a, + 0xc3,0x10,0xc9,0x3a,0x3d,0x19,0xd1,0xc6,0x9b,0x11,0xd9,0x8a,0xf0,0x9a,0x5f,0xfc,0x53,0x6c,0xcf,0xc3, + 0x7a,0x10,0x04,0x91,0x7f,0xa5,0xd1,0x01,0x08,0xa6,0xaf,0xbf,0x4a,0xf8,0x12,0x49,0xbd,0xc2,0xe8,0x39, + 0xae,0xe8,0xdc,0x3c,0x14,0x02,0x07,0xa1,0x4d,0xe2,0x87,0xa1,0x99,0x29,0x02,0x41,0x80,0x7d,0x63,0x75, + 0x67,0xb7,0x41,0xf3,0xa9,0x29,0xf0,0x93,0xd9,0x12,0x7d,0xa8,0xb8,0x4a,0xfe,0x40,0x84,0xf2,0x56,0xb8, + 0x8d,0xc6,0x30,0x5e,0x0d,0xae,0x6c,0xe9,0x5d,0x9c,0x72,0x5c,0xc6,0x25,0x04,0x1e,0x23,0x88,0x93,0x0a, + 0xdc,0xe8,0x01,0x46,0xf3,0x1d,0x3c,0x39,0x69,0xd7,0x9c,0xab,0x73,0xe2,0xdd,0xe1,0x96,0xa1,0xa1,0x77, + 0x85,0xb1,0x21,0xd0,0xb7,0xb8,0xdd,0xd9,0xce,0x47,0xec,0xf1,0x45,0xfd,0x83,0xb1,0x0b,0x3f,0xec,0x8a, + 0xe6,0xf3,0x16,0xbf,0x09,0xaf,0x7b,0x15,0x03,0xe2,0x76,0xdc,0x8e,0xca,0xbf,0x73,0x0d,0xf7,0x3d,0x9a, + 0x45,0xe2,0xfb,0x1e,0xa7,0xfa,0x76,0x79,0x04,0x0f,0x11,0x0e,0xd7,0xa4,0x98,0xae,0x89,0xbd,0xa0,0xc1, + 0x7a,0x58,0xb6,0xa6,0x8b,0xda,0xb4,0x52,0x31,0x12,0x52,0x58,0xbf,0x4d,0xfb,0xe6,0x09,0xe7,0xb5,0xc0, + 0x6a,0x14,0x17,0x1e,0x0e,0x35,0x96,0xc0,0x9a,0x18,0xb1,0x35,0xc3,0x47,0x49,0x52,0x84,0x2b,0xef,0xe6, + 0xd2,0x51,0xb1,0xbd,0xb1,0x70,0x69,0xcf,0xe7,0x8c,0x61,0x18,0x70,0x36,0x23,0x1b,0xc8,0xa9,0xf8,0x6c, + 0x61,0x86,0xf7,0x7e,0x73,0x99,0xeb,0xd0,0xa3,0x9c,0xe9,0x04,0x11,0x50,0xa5,0x0d,0xf3,0x57,0x0a,0x6b, + 0xcc,0x55,0x44,0x2d,0xb3,0x39,0x5c,0x0d,0x96,0xdc,0x69,0x27,0xc9,0x7d,0x49,0xc9,0xeb,0x76,0x6a,0x9f, + 0x06,0x5d,0xae,0x16,0x72,0xa1,0x5a,0xb0,0x98,0x42,0x16,0xca,0x2d,0xcd,0xb8,0x75,0x41,0xae,0x41,0x17, + 0x8d,0xd4,0x81,0x89,0x6c,0x2a,0xb0,0xea,0x17,0xb5,0xfe,0x7b,0xb9,0xd3,0xe4,0x36,0x4e,0x30,0xa8,0x8c, + 0x63,0x84,0x6f,0x3f,0x53,0x59,0xd1,0x1b,0x47,0x2a,0x0e,0x9f,0x52,0xf6,0x6f,0x55,0x72,0xef,0x3f,0xb8, + 0xbb,0x3c,0xbe,0xa7,0xc2,0x27,0x55,0x42,0x69,0xfe,0x28,0xca,0xa2,0xa3,0x7b,0xde,0x82,0xdf,0xcc,0xc1, + 0xef,0x6d,0x01,0xf0,0x04,0x28,0x0a,0x0e,0xca,0xae,0xf4,0xe5,0x1f,0x02,0x2a,0x9a,0xea,0xa2,0x03,0xd3, + 0x68,0x0c,0x5c,0x8a,0x17,0xcc,0xa9,0x41,0x3f,0x8d,0xba,0x09,0x50,0xcc,0x25,0xdb,0x34,0x99,0xd5,0x4c, + 0x32,0x5c,0x6c,0xd4,0x93,0xaa,0x3d,0x8e,0x49,0xd6,0x19,0x89,0x73,0xd4,0xe7,0xa9,0xb9,0x53,0xce,0x66, + 0xec,0xc0,0xad,0x8c,0x9d,0x50,0xe5,0x5d,0x46,0xb6,0xd1,0x5b,0x98,0xaa,0x76,0x53,0x3f,0x23,0xaa,0x5a, + 0x55,0x32,0x34,0x7c,0x58,0x6d,0xb5,0x3a,0x9b,0x6d,0x4f,0xdf,0x6e,0xd7,0x6e,0x29,0x6a,0xc1,0xf3,0x67, + 0xe8,0x50,0x6e,0xbd,0x6f,0x01,0x6e,0xfe,0xda,0x0a,0x60,0x80,0x7a,0x09,0xfc,0xa9,0x12,0xd4,0xd3,0x99, + 0xfd,0xf6,0xad,0x10,0xa6,0x65,0x67,0xd5,0xd1,0x5d,0x2c,0x89,0xcc,0xaf,0x8b,0x35,0x16,0x24,0x4a,0xff, + 0xda,0x48,0x3e,0x74,0x28,0x3b,0x2c,0x93,0x1c,0x46,0x1a,0x30,0x5d,0xc0,0xfd,0x40,0xb3,0xa2,0x73,0x79, + 0x64,0xba,0x75,0x79,0x64,0xdf,0x9a,0x66,0x8b,0x3e,0x4e,0x58,0x98,0x21,0xf0,0x3b,0xed,0xc1,0x14,0x70, + 0x22,0x33,0x7c,0xfb,0x37,0x87,0x63,0x78,0xe5,0xc4,0x85,0xc7,0xe1,0x5f,0x84,0x76,0x61,0xa8,0x79,0x3a, + 0x54,0x0f,0x38,0x58,0x8a,0x41,0xc6,0x0f,0x4a,0x46,0xc8,0x7c,0x0f,0x16,0x61,0x63,0x63,0x4b,0x06,0x44, + 0x6c,0x9d,0x7c,0xde,0x86,0x05,0xed,0xce,0xbb,0xdc,0xee,0xce,0x85,0xb8,0x10,0xb0,0x74,0x1f,0xde,0xd1, + 0x22,0xc7,0xf7,0x94,0x6c,0xe1,0x9b,0xee,0x76,0x3b,0xed,0x6a,0x6d,0x84,0x92,0xd0,0x5c,0xbc,0xe6,0x75, + 0x60,0x1f,0xd0,0x22,0x6d,0xb5,0xfb,0x85,0x09,0x53,0x28,0x8b,0x9d,0xcd,0x95,0x56,0x47,0x0b,0xa3,0x41, + 0xe3,0x39,0xc3,0xad,0x89,0x3e,0xef,0x28,0xcc,0x04,0xf1,0x0f,0x63,0xf3,0x8d,0xb1,0x88,0x63,0x51,0xe8, + 0xe9,0x29,0xc8,0xd9,0x48,0xab,0x81,0x7b,0x72,0x6d,0x4b,0x1c,0x8b,0xe3,0xb0,0x73,0x36,0x78,0x4c,0x7d, + 0x27,0x43,0xd8,0xfa,0xee,0x59,0xe2,0x4b,0x04,0xfa,0xca,0xeb,0x00,0xd5,0x34,0x84,0x9c,0x6f,0x17,0x24, + 0x46,0xfd,0xf4,0x72,0x95,0x9d,0x9e,0x26,0x6e,0x77,0xa0,0x37,0x06,0x3f,0xd0,0xa3,0x2d,0xe1,0x31,0xd2, + 0x77,0xb4,0xa0,0x54,0x5e,0xa4,0x4d,0xf3,0x26,0x13,0xa2,0xb5,0x42,0x3a,0xcf,0x49,0x56,0x5b,0xa9,0x76, + 0x3a,0xee,0xf0,0x29,0xf7,0xa6,0x05,0x99,0x9e,0xb8,0x6f,0x4b,0x01,0x63,0x48,0x7e,0xdd,0xa6,0x79,0xf5, + 0xcc,0x84,0xdb,0x75,0x69,0x61,0x51,0x47,0x59,0xb2,0x6b,0x80,0xa2,0xcd,0xde,0xc2,0x1e,0xa6,0x05,0x1b, + 0xc6,0x03,0x27,0x52,0xfd,0x1f,0xb8,0x9b,0x1d,0xfd,0xd1,0x8d,0x76,0x59,0xd5,0xd0,0xa3,0x7c,0x69,0xaf, + 0x8c,0x91,0x13,0x40,0x29,0xe3,0xb1,0xf7,0x2d,0xb9,0xc5,0x2d,0xc3,0x75,0x27,0xd1,0xc8,0x19,0xd2,0xb5, + 0x8a,0x58,0x31,0x70,0x63,0x75,0x37,0x36,0x0b,0x76,0xd5,0x5e,0x0d,0x8e,0x6c,0xd0,0xd6,0x9c,0xa6,0x35, + 0x2f,0xc9,0xd8,0x3e,0xee,0xef,0xdb,0xa9,0xf0,0x67,0x41,0xf5,0xc1,0xb6,0xde,0x3a,0xda,0xbd,0xc8,0xcc, + 0xac,0xf3,0x65,0xb2,0x20,0x4c,0x98,0xf5,0xf3,0x00,0xe8,0x83,0x68,0x1b,0x9e,0x5a,0xc2,0x7a,0xb1,0xb6, + 0xdf,0xa8,0xc7,0xc4,0xa1,0x3e,0xed,0x60,0x87,0x48,0x3d,0x6d,0x01,0x46,0x41,0xbc,0xfe,0x51,0x3e,0x69, + 0x5b,0x3e,0x6a,0xec,0xf2,0x5e,0xeb,0x19,0x09,0x9a,0x5a,0x1f,0x69,0x61,0xc0,0x96,0x99,0x83,0xf2,0xd0, + 0xa6,0x15,0x38,0x54,0x89,0x11,0x75,0x29,0x2f,0x60,0xb2,0xc8,0xf8,0x38,0x0a,0x9c,0xc3,0x49,0x51,0xdb, + 0x5c,0x4f,0x0b,0x20,0x8c,0xd5,0x9e,0x79,0x87,0xd5,0x1e,0x82,0xf3,0x1b,0xdf,0xb4,0xf5,0x3a,0x3d,0x3e, + 0x40,0xf4,0x37,0xfa,0x0b,0x65,0x8e,0x10,0xa8,0xb6,0x6c,0x82,0xdb,0x6b,0x58,0x54,0xdc,0xb4,0x05,0x16, + 0xb9,0xb9,0xa1,0xad,0xad,0x41,0x81,0x5e,0xc2,0xec,0xe1,0x9c,0xed,0x2e,0xb2,0x44,0x5b,0x5b,0x34,0x2d, + 0xf9,0x19,0x8a,0xb5,0xc4,0x17,0x5b,0x28,0x3c,0x90,0xd2,0xf0,0x8c,0x4f,0x0c,0x06,0xb0,0xc6,0x28,0x34, + 0x44,0x91,0x49,0x13,0xc1,0xfc,0x4b,0x01,0x49,0x74,0x92,0x55,0x61,0xe4,0xa2,0x07,0x42,0xab,0x22,0xf4, + 0xeb,0xdb,0x4a,0x3d,0xaa,0xd4,0x4f,0x95,0xfa,0x50,0x25,0xc7,0xda,0x53,0xf2,0x6d,0x76,0xfe,0xf4,0xd3, + 0x52,0xac,0x6d,0x4f,0xd4,0xfb,0x2a,0xb9,0xf9,0xc1,0x88,0xb0,0x63,0x1d,0xd9,0xc4,0x8f,0x14,0x6d,0xf6, + 0x18,0xeb,0xeb,0x24,0xb8,0x45,0x5e,0x4c,0xe6,0xab,0x69,0x16,0x7f,0x20,0xf4,0xfc,0xc9,0x3e,0x2e,0xd2, + 0x4f,0xb1,0x69,0x43,0xee,0xb6,0x39,0xd9,0x28,0x4d,0xb8,0xc7,0x5d,0x2c,0x34,0x49,0x69,0x1f,0xdd,0x4a, + 0x64,0x30,0x67,0x09,0xdf,0x0d,0x65,0x61,0xbd,0xe5,0xd8,0x62,0xf4,0xac,0xbc,0xd8,0xb6,0xba,0xe8,0xb9, + 0x91,0x64,0xe2,0x4d,0x65,0xae,0x2a,0x02,0x43,0xde,0xb9,0xae,0xeb,0x3e,0xcc,0xfe,0xa6,0x37,0x96,0x93, + 0x21,0x59,0x38,0x7e,0xa2,0x25,0x68,0x10,0x39,0x7d,0xfa,0x3b,0x5f,0xee,0xba,0x2f,0x37,0x6a,0x3b,0xce, + 0x80,0x8f,0xf2,0x18,0xdc,0x86,0x3a,0xc0,0x17,0x6d,0x84,0x5f,0xc4,0x50,0x98,0xfd,0x19,0xb6,0x24,0xce, + 0x7e,0x98,0xcd,0x37,0xb8,0x84,0x40,0x69,0xca,0x49,0x0f,0x0c,0x66,0xe6,0xa2,0xbe,0xe7,0x57,0xbe,0x87, + 0x92,0xa0,0x7a,0x97,0xd8,0x4e,0x74,0x29,0x87,0x7c,0x89,0x48,0x9e,0xbd,0x3d,0x42,0x88,0x4f,0x70,0x4b, + 0xb6,0x8b,0x9a,0xdf,0x98,0xd8,0x40,0x6e,0x0a,0xb5,0x19,0x08,0xa6,0x50,0x4d,0x8c,0x38,0x83,0xef,0x2a, + 0x2e,0x24,0x72,0xfa,0x24,0x9f,0x0e,0x42,0x89,0x5c,0x11,0xc4,0x31,0x02,0xb4,0x71,0x2c,0x96,0x00,0x6a, + 0x06,0x44,0x56,0x4a,0x8f,0x27,0x27,0xe3,0x5e,0x6d,0x13,0x72,0x7a,0x14,0x4e,0x2b,0xb9,0x99,0x4a,0xdb, + 0xe6,0x4c,0x10,0x23,0x19,0x25,0x89,0xce,0xb5,0x49,0xb2,0xac,0x04,0x6d,0x44,0x88,0x18,0x72,0xca,0x86, + 0x01,0x34,0x79,0xb4,0x95,0x9f,0x83,0x8e,0xc3,0x9d,0xa5,0xaa,0x45,0x6f,0x44,0x46,0xe4,0xe2,0x34,0x37, + 0x90,0xfa,0x98,0x49,0xa0,0x73,0x67,0x6f,0x2f,0xa3,0xaf,0x88,0x41,0x19,0xbd,0x05,0x0a,0x54,0xe1,0x4f, + 0x30,0x11,0x8c,0x6e,0xe1,0x02,0xef,0x14,0xb7,0x31,0x7f,0xb4,0xf9,0x02,0x51,0xd7,0x07,0xb4,0x05,0x23, + 0xf5,0x96,0x0e,0xd9,0x26,0x9f,0x27,0x37,0x70,0xf0,0x8c,0xbf,0x2f,0x08,0xa4,0x1a,0x82,0x8c,0xf8,0x52, + 0x2d,0x60,0x92,0xad,0x97,0x38,0x7e,0xae,0xa4,0x9e,0xb7,0xa2,0xbe,0xc9,0xe2,0x77,0x1b,0x7c,0x2a,0x8c, + 0xdf,0x5b,0x98,0x0d,0x6a,0x76,0x8f,0x9e,0x2d,0x0e,0x7e,0x8f,0xb7,0x7e,0xb5,0x89,0x6c,0xab,0x5b,0x0c, + 0xaf,0xdd,0x57,0xc6,0x00,0xbb,0xcf,0xfd,0x2a,0xf2,0x6a,0x1f,0x9e,0x9e,0xa5,0x75,0x96,0xd0,0xe0,0x2e, + 0x43,0x2f,0xd5,0x2e,0x65,0x4d,0x28,0x45,0xc6,0x5a,0x67,0xb7,0x50,0xc7,0x10,0xaf,0xd3,0x7a,0xe3,0x3a, + 0x8f,0x37,0xf3,0xd5,0x79,0xce,0x71,0x55,0xfb,0x33,0xf8,0x46,0x3b,0x46,0xf6,0xc6,0x23,0x32,0xc3,0xdd, + 0x10,0x2d,0xbe,0x40,0xc8,0xce,0x36,0xf9,0xec,0x98,0x24,0xed,0x3d,0xa1,0xe5,0x13,0x3d,0x32,0x07,0xc4, + 0x1e,0xe1,0x46,0xc7,0xf6,0x49,0x13,0xd7,0x1c,0x56,0xab,0xef,0x0b,0xe8,0xb1,0xbc,0x0b,0xc1,0x98,0x67, + 0xf3,0x8d,0xc9,0x78,0xc1,0x16,0xf9,0xa7,0xbc,0xd7,0x5b,0x9a,0x47,0xea,0xf4,0x2f,0xfe,0xab,0xb2,0x15, + 0xb4,0xe5,0xb4,0xb4,0xcf,0x92,0x03,0x2d,0xa0,0x3d,0x1c,0x65,0x43,0x81,0x9c,0x56,0xe5,0x59,0xc2,0x3a, + 0x1b,0x8f,0x08,0xe7,0x03,0x94,0xbe,0x94,0x7b,0x6d,0xb1,0x5f,0xe5,0xda,0x40,0x3c,0xb1,0x48,0x0f,0xc8, + 0x01,0xfa,0x42,0x63,0x81,0x6e,0x9c,0x55,0x10,0xff,0x43,0x6e,0x3b,0xb4,0x31,0x54,0x24,0x5c,0x76,0x3b, + 0x02,0xb6,0x59,0xb1,0xbc,0x61,0x97,0x08,0x1d,0x31,0x20,0x75,0xc7,0x7d,0x17,0x96,0x3c,0x5a,0x22,0xf2, + 0xd5,0x4d,0x49,0x8a,0xc0,0xd3,0x34,0x44,0xdc,0xb8,0x9e,0x7a,0x53,0x53,0xf8,0xf3,0x42,0xa7,0xed,0x6a, + 0x09,0x15,0x8d,0x2b,0xb2,0x2d,0x9f,0x76,0xc2,0xd3,0xcf,0x8a,0x67,0x21,0x3b,0xf4,0xa5,0x2d,0xa7,0x56, + 0xda,0xb2,0xc1,0x55,0x22,0x69,0x0b,0xac,0xbb,0x52,0xc3,0xed,0x36,0x4c,0xa9,0x6e,0x33,0xab,0x76,0x33, + 0x05,0x3b,0x7a,0x98,0x26,0xf4,0x1a,0x16,0xfa,0x81,0x52,0x04,0x62,0x0a,0xf9,0xa5,0x77,0xec,0xa0,0x02, + 0x7f,0x6f,0x75,0x9b,0x60,0xce,0x97,0x83,0xc9,0x2a,0xb9,0x20,0x65,0x7b,0x3b,0xb2,0x1f,0x82,0x9d,0x3d, + 0xe3,0x0e,0xe7,0x66,0xd6,0x74,0xc4,0xe4,0x64,0x7c,0xef,0x4a,0x4a,0x5b,0xd0,0xfa,0xdf,0xe1,0xce,0xdb, + 0xd4,0x29,0x5c,0x73,0xf6,0x70,0x52,0xe9,0x66,0x43,0x08,0x20,0x22,0x02,0x03,0xc8,0xe0,0x96,0x1e,0x3e, + 0x62,0xcf,0x0f,0x5f,0x3b,0xe3,0x39,0x96,0x84,0x5e,0x58,0x00,0x71,0x16,0x2b,0xc3,0x42,0x82,0xc7,0x17, + 0x1c,0x7d,0x5f,0x43,0xa1,0x35,0x67,0x6d,0xa1,0x20,0xdd,0x6f,0x5c,0xc4,0xe3,0xc7,0x14,0x90,0x8a,0xfa, + 0x64,0x8b,0x1c,0x6e,0xe5,0x06,0x91,0x2b,0xe3,0x42,0xe9,0x40,0xe6,0xc5,0xc6,0xf8,0xfb,0xb4,0xb0,0x20, + 0x4c,0x0a,0x0b,0x76,0x79,0xe9,0xcd,0x83,0x2d,0x79,0x3f,0xce,0x7f,0xda,0x16,0xe2,0xe5,0xf5,0x3b,0xf1, + 0x32,0x16,0x97,0xe8,0x3f,0x8a,0xbf,0xfa,0x61,0x5d,0x57,0xda,0x29,0x72,0xdb,0x9b,0xda,0x47,0x23,0x6d, + 0x6e,0x52,0x68,0x79,0xf7,0x2d,0xfa,0x49,0x15,0xc3,0xe3,0x2d,0x87,0xd5,0xf5,0xfd,0xe1,0x57,0xc3,0xc3, + 0x2f,0x24,0x40,0xcb,0x77,0x95,0xfa,0xa3,0x52,0xbf,0x57,0xea,0x87,0x4a,0x7d,0x5f,0xa9,0x6f,0x2b,0xf5, + 0x73,0xa5,0xfe,0x5d,0xa9,0x5f,0x2a,0x0e,0xa4,0xc1,0xf7,0x29,0xeb,0xbb,0x54,0xd5,0x8f,0x9c,0xc6,0x77, + 0xc6,0x28,0xd4,0x4b,0x54,0x66,0xaa,0x64,0x56,0x94,0xdc,0x9b,0x03,0xd2,0xf0,0x1c,0x06,0x83,0x20,0x59, + 0xf3,0x5b,0x7c,0x89,0xdc,0xbd,0xe1,0xb4,0x16,0x3f,0x56,0x2c,0x4b,0x0b,0x24,0x46,0x31,0x5c,0x2e,0x1a, + 0x84,0x6b,0xd1,0xb7,0xf0,0xe8,0x42,0x81,0x34,0xc2,0x8b,0x4a,0xb9,0x44,0x93,0x4c,0x3e,0xba,0x4c,0xb9, + 0xc4,0x46,0xe7,0xd9,0x48,0xe8,0xc8,0x81,0x80,0xb9,0xe4,0x9c,0x8d,0x6a,0x72,0x74,0x7e,0x22,0x97,0xa8, + 0x67,0xd3,0xbc,0x81,0xe9,0x9c,0x9a,0x56,0xe9,0xf9,0x39,0x3f,0xd5,0xcb,0x6c,0x3e,0xe7,0x9a,0xa9,0xef, + 0x05,0x17,0xa6,0x23,0xa0,0xbc,0x9a,0x11,0x6a,0xaf,0x09,0x75,0x11,0x3f,0xc9,0xce,0x98,0x2a,0x5d,0x35, + 0xe5,0xac,0x9c,0xac,0x6a,0x7e,0x5a,0xce,0xd3,0x6b,0xa5,0x3b,0xc4,0x21,0x47,0xe8,0xb4,0x86,0x75,0x1e, + 0x91,0xab,0xf3,0x9a,0x8e,0x70,0x9a,0xbb,0x2a,0x53,0x86,0xac,0xd3,0xbf,0xa6,0xbc,0x7e,0xe5,0x3e,0x9b, + 0x17,0x33,0x74,0xbc,0x13,0xcb,0x33,0xcd,0x6b,0x74,0x6f,0xaa,0xb2,0x42,0x7e,0x11,0xbb,0xa0,0x28,0x69, + 0x0a,0x73,0x40,0xae,0xba,0xc8,0xa7,0x53,0xea,0x1a,0x8e,0xc5,0x26,0xab,0x16,0x79,0x81,0x44,0x82,0xa8, + 0xaa,0x51,0x79,0xbd,0x48,0x97,0x2a,0x6f,0xb2,0x85,0xc4,0x38,0x99,0x97,0xe5,0x52,0x99,0xeb,0x9b,0x94, + 0x34,0x5a,0x94,0x08,0xd2,0xa2,0x10,0x58,0xa2,0xce,0xff,0x20,0xdc,0x54,0xd6,0x17,0x29,0x78,0x4d,0xd7, + 0x42,0x51,0x22,0x6e,0x14,0xad,0x33,0x35,0xb3,0x4c,0x09,0x0d,0xd1,0x4e,0xfd,0x94,0x37,0x44,0xce,0xa6, + 0xd3,0xb2,0x98,0x23,0x9e,0xca,0xef,0x2b,0xda,0x77,0x53,0xa5,0x9d,0x2a,0xa7,0x4a,0xf8,0x21,0x82,0x89, + 0x74,0x31,0x27,0x60,0x50,0x76,0x4c,0xf0,0xbe,0xe4,0xd9,0xb6,0x17,0xa6,0x70,0x38,0x50,0x9a,0x7b,0xca, + 0x04,0xcc,0x23,0xa4,0x04,0x47,0x7f,0x57,0x97,0x79,0x9d,0x53,0x49,0x04,0x78,0xcf,0x93,0xe0,0xa2,0x69, + 0x96,0xf1,0xbd,0x7b,0x57,0x57,0x57,0xc3,0xab,0x2f,0x86,0x65,0x75,0x7e,0xef,0xf0,0xeb,0xaf,0xbf,0xbe, + 0xf7,0x69,0x9e,0x17,0x1f,0x03,0x95,0xe7,0x3d,0x07,0x6c,0x10,0xb7,0x9c,0x4f,0xbe,0x02,0x94,0x49,0x79, + 0x4e,0x36,0xc1,0x79,0xbe,0x82,0xa7,0x5d,0xdf,0xf7,0x3b,0x39,0x2c,0x71,0xad,0x5f,0xc9,0x3f,0x95,0x91, + 0x67,0x72,0xb4,0x16,0x95,0xf6,0x7e,0x23,0xc4,0x31,0x01,0xe2,0xee,0xa1,0x80,0x5d,0x9d,0x27,0x37,0xf5, + 0x25,0x11,0xc3,0xdb,0x23,0xb8,0x7f,0x70,0x70,0x70,0x8f,0xf2,0x02,0xe2,0x99,0x9a,0x8b,0xbe,0x12,0x34, + 0xc6,0x7f,0xdd,0xc3,0xdd,0xa3,0xfc,0xe7,0xe5,0x0b,0x6a,0x76,0xc2,0x90,0x79,0xd1,0x2c,0xe6,0xea,0xac, + 0x9c,0x5e,0x2b,0xa0,0x40,0x75,0x41,0x4b,0xa1,0x30,0x34,0x85,0x98,0xe3,0x4a,0x76,0x6d,0x93,0x37,0xf4, + 0x37,0x9d,0x4e,0xb1,0x1f,0x55,0x5a,0x35,0xf9,0x04,0xef,0x35,0xed,0x09,0x02,0xa2,0x12,0xb7,0x63,0xe2, + 0x3b,0xfc,0x1c,0xaa,0x8b,0xfb,0xea,0xe2,0x0b,0x75,0xf1,0xa5,0xba,0xf8,0x4a,0x5d,0xfc,0x53,0x5d,0x9c, + 0x57,0xe5,0x6a,0xa9,0x8a,0xf4,0x92,0xd6,0x8e,0xc7,0x48,0x80,0x78,0xa9,0xa6,0x04,0x95,0x73,0x35,0x6d, + 0x14,0x11,0xb3,0xf0,0xad,0x41,0x3a,0x9b,0xa1,0x66,0x6a,0x99,0x4f,0xe0,0x6a,0xa3,0x2e,0x88,0x4b,0x5f, + 0x9c,0x53,0x67,0x68,0x50,0x74,0x7a,0x95,0x73,0xb5,0x84,0x51,0xa3,0x5a,0xcd,0x55,0xaa,0xce,0x88,0x8d, + 0x3c,0xab,0xd4,0xd9,0x34,0xa7,0xff,0xa5,0xa2,0xc7,0x09,0x81,0x27,0xc7,0x1f,0x52,0x7c,0x49,0xfc,0x74, + 0x46,0xe4,0xf0,0x42,0xe5,0xea,0xe3,0xd9,0x94,0x2a,0xa8,0x3e,0xaa,0xdf,0x55,0xb5,0x54,0x04,0xcc,0x55, + 0x33,0x51,0xd5,0xea,0xec,0x9a,0xa8,0xf8,0x3a,0x5d,0x2c,0x15,0xc1,0x36,0x91,0x5c,0xf5,0x32,0x25,0xd4, + 0x43,0x7b,0x8d,0x98,0xcd,0x7a,0x75,0x46,0xff,0x97,0x7c,0x5f,0xac,0xc2,0x3d,0x0b,0x95,0xba,0x3a,0x83, + 0xf0,0x9c,0x90,0x54,0xba,0x9a,0xe6,0xa5,0xc2,0x76,0x00,0x13,0xfb,0x51,0x31,0x62,0xa0,0x96,0xce,0x08, + 0xec,0xc4,0x0f,0x0c,0x46,0xa8,0xe9,0x82,0x00,0x74,0x55,0x11,0xff,0x31,0x49,0x8b,0xcb,0x94,0x5a,0x9a, + 0x54,0xf9,0xb2,0xc1,0xa6,0x90,0x07,0xa2,0xb9,0x61,0xe4,0xa6,0xcc,0xd8,0x27,0x34,0x3c,0xfa,0x2f,0x93, + 0xa5,0x01,0x9b,0xd7,0xa2,0xe1,0xb5,0x69,0xe8,0xe1,0x82,0x5a,0x54,0x82,0xdc,0x78,0x88,0x30,0x1f,0xa0, + 0x39,0xcb,0xe6,0x53,0xa2,0xe4,0x79,0x33,0x2b,0x41,0xa8,0xf3,0xf4,0x8c,0x6a,0x9f,0x67,0xe7,0x20,0x02, + 0x16,0xd8,0xcc,0x40,0xad,0x52,0xb5,0xc6,0xb1,0xe5,0xaa,0x41,0x49,0x83,0x63,0x0d,0xce,0xb5,0xa8,0x98, + 0x50,0x40,0x9a,0x03,0xeb,0xe4,0xe9,0xbc,0x3c,0xa7,0x4a,0x8a,0x15,0xff,0x01,0x0a,0xa0,0xa9,0x59,0xd0, + 0x84,0x5e,0x2b,0x8d,0x01,0x55,0x26,0x32,0x07,0x85,0xfd,0x5e,0x5e,0x29,0x13,0x34,0x4b,0x71,0x58,0xb2, + 0xdf,0x57,0x25,0xd0,0xc8,0xac,0x02,0xb9,0xd7,0x00,0x5a,0x70,0x63,0x30,0x83,0x1e,0x01,0xac,0x4a,0x8b, + 0x7c,0x81,0xb2,0x93,0xbc,0x9a,0xf0,0xf9,0x90,0x2f,0x97,0x04,0xa0,0x6a,0xb2,0xaa,0x68,0x87,0x03,0x73, + 0x01,0xf5,0xd5,0x13,0x6a,0x84,0xb2,0x08,0x40,0x25,0xbe,0x0f,0x0d,0xb7,0x68,0xf6,0x67,0xe9,0x04,0x00, + 0x58,0x65,0xf9,0x79,0x21,0x87,0xa0,0x3a,0x57,0xe7,0xf3,0xeb,0xe5,0x05,0x41,0x4e,0x7a,0x9e,0x01,0x90, + 0x33,0x5e,0xfc,0x0c,0xd2,0x84,0x9a,0x80,0x3a,0xaf,0x71,0x7b,0xd9,0xbe,0x14,0xe2,0x96,0xe8,0x0f,0x55, + 0x48,0x08,0xa9,0x9c,0x5f,0x9f,0x97,0xf2,0xcb,0xdf,0xe1,0xfc,0x57,0xe2,0x44,0xfd,0xff,0xb5,0xf7,0xae, + 0xdb,0x6d,0x1b,0xcb,0xba,0xe8,0xab,0x50,0x98,0xda,0x32,0x10,0x42,0x94,0x64,0x3b,0x99,0x09,0x68,0x98, + 0xd3,0x97,0x5c,0x9c,0xf8,0xb6,0x62,0x25,0x99,0x33,0x12,0xa3,0x05,0x91,0x20,0x85,0x88,0x02,0x38,0x01, + 0x90,0xb2,0x22,0xf2,0x81,0xce,0xdf,0xf3,0x08,0xfb,0xc9,0x4e,0x7d,0x55,0xdd,0x8d,0x06,0x08,0x5a,0x76, + 0xb2,0xd7,0xda,0x67,0xec,0xb1,0x47,0x46,0x2c,0xb0,0xef,0x97,0xea,0xea,0xaa,0xea,0xba,0xf8,0x05,0x3b, + 0xd9,0xe0,0xf5,0xe1,0x7f,0xb8,0x66,0xc9,0x30,0x03,0x6a,0x6a,0x99,0xc4,0xd7,0xe2,0x1b,0x6a,0xd1,0x7a, + 0x96,0x47,0xa2,0x89,0x3f,0xe3,0xb8,0xdc,0x34,0x85,0x56,0x86,0x6a,0xcc,0x8b,0xc2,0x5d,0x48,0xec,0x40, + 0x36,0x35,0xbb,0xce,0x72,0x46,0x7f,0x39,0x8d,0x22,0xa6,0x83,0x80,0x41,0xcc,0xfc,0x45,0x0e,0xa7,0xd8, + 0xf3,0xa4,0xe9,0xd4,0xaa,0x26,0x04,0x6a,0xd5,0xfc,0xdd,0xe2,0x78,0xcb,0x04,0x28,0x56,0x17,0x26,0x3b, + 0x1a,0x1f,0xa4,0x81,0x5b,0x2a,0x25,0xda,0xd2,0x52,0xa2,0xdd,0xdb,0xb3,0xe2,0x23,0x55,0xc9,0x26,0xa0, + 0x1f,0x34,0x61,0xea,0x01,0xd6,0x75,0x0e,0x7c,0x2d,0xe9,0x4f,0x8f,0x83,0x05,0xd6,0x86,0xf1,0xfa,0x5d, + 0x63,0xcc,0xfa,0x55,0xb1,0x75,0xd0,0xaf,0xdf,0xb9,0x05,0x54,0x53,0xd8,0x50,0x58,0x72,0x8e,0x69,0xf5, + 0x10,0x0b,0x32,0x68,0xd9,0x84,0x46,0x23,0xba,0x28,0x6f,0x89,0x24,0x29,0x8f,0x01,0x1f,0x51,0x59,0x95, + 0xe4,0xba,0xa2,0xab,0xfa,0x94,0xa5,0xd3,0x1b,0xd6,0xe3,0xcc,0x01,0x9a,0x6c,0x57,0x02,0x24,0x8a,0xa6, + 0x3e,0x2b,0x30,0x35,0xe6,0xab,0x7d,0x83,0x70,0x1e,0x42,0x7e,0xf8,0x88,0x19,0x9c,0x8e,0xdb,0xcb,0x5a, + 0x79,0x5c,0xb6,0x8a,0x85,0xd9,0x36,0x85,0xd8,0x8a,0x95,0xb9,0xf6,0xc1,0xe8,0xbf,0xa3,0x6b,0x91,0x4e, + 0x43,0x7b,0x61,0xab,0xc0,0x1a,0xd1,0xc3,0xd8,0x55,0x53,0x6b,0x49,0x95,0xb9,0x86,0xd1,0x00,0x56,0xf5, + 0x99,0xe0,0x85,0x8d,0xe1,0x96,0x55,0x5e,0x58,0x72,0x69,0x03,0x21,0x2d,0xeb,0x56,0x03,0x20,0x5e,0x37, + 0x78,0x6c,0xa3,0x3b,0x50,0x76,0xa0,0xd1,0xfa,0xd3,0x98,0x57,0x40,0x11,0xe1,0xcd,0x9e,0x19,0x46,0x89, + 0x3a,0xa9,0x00,0x56,0x1c,0x09,0x3f,0x85,0x4c,0x0d,0xc7,0x96,0xab,0x6f,0xd1,0xe0,0xd5,0x85,0xd6,0x6b, + 0x3a,0xe7,0xca,0xe1,0x84,0xeb,0x10,0x15,0xbd,0xf6,0x11,0xab,0xe5,0x2a,0x81,0x37,0x32,0xed,0x61,0x4c, + 0x2b,0xc8,0x1a,0xdf,0x61,0xec,0x21,0x02,0x5b,0x5a,0xf9,0x0c,0x73,0x86,0xfe,0xb4,0x9a,0xc7,0x4f,0xb1, + 0x1e,0xf5,0x4f,0x71,0x6b,0xff,0x3f,0xa1,0xff,0x65,0x82,0xfe,0x6f,0xda,0x31,0xc7,0x39,0x0d,0xe1,0x22, + 0xa1,0x46,0x87,0xfe,0x59,0xd5,0xf0,0xbf,0x4d,0xc3,0xff,0xa6,0xbd,0xb9,0xae,0x32,0xbe,0x37,0x19,0xdf, + 0x53,0xc6,0x71,0x12,0x1e,0x9c,0x9c,0x5e,0x7b,0xbd,0xee,0xe9,0xfe,0xd9,0xee,0xe9,0x70,0x78,0xe0,0x5f, + 0x26,0xf0,0xae,0x45,0x3c,0xc6,0x33,0xfe,0x18,0x39,0xfe,0xfb,0xaa,0x36,0xdd,0xd9,0xaa,0xf6,0x98,0x36, + 0xf1,0x49,0x95,0x31,0x37,0x19,0x73,0x18,0xdc,0x25,0xad,0x76,0xbc,0x1c,0x55,0xee,0x20,0x70,0x7b,0x5d, + 0xef,0xa0,0x6f,0x20,0x48,0xcc,0x2c,0x0f,0xfa,0xee,0x60,0xe7,0xe4,0x37,0x77,0xf8,0xd9,0xa9,0xe7,0x1d, + 0x4c,0xdb,0x35,0xd2,0x60,0x40,0x50,0x39,0x6e,0x95,0x8a,0xd0,0x1e,0x30,0xef,0xa0,0x10,0xb9,0x9f,0x20, + 0x26,0xaa,0x0a,0xcf,0x33,0x0c,0xf3,0x2a,0x94,0x0f,0x03,0x51,0x49,0xff,0xef,0xd2,0xac,0x7f,0xdb,0xdf, + 0x3f,0xf0,0xdf,0xd0,0xc7,0x69,0xf1,0xd9,0x4e,0x72,0x05,0xcb,0xe9,0x28,0x2d,0x77,0x0f,0xfc,0xaf,0x37, + 0xf9,0x0d,0xea,0x76,0x57,0x85,0x84,0x27,0x40,0x89,0x25,0x96,0x1f,0x60,0xd4,0xf0,0x5b,0xa5,0x6d,0xb2, + 0xf1,0x46,0x95,0x4d,0xb7,0x96,0x35,0x7e,0xf3,0xde,0x24,0x1c,0x7b,0xc8,0x31,0x03,0xb0,0x03,0xc3,0xe5, + 0xe1,0xf3,0xc4,0x15,0x87,0xf4,0xf5,0x37,0xf2,0xb4,0xa6,0x64,0xd3,0xf6,0xae,0xab,0xfa,0x05,0x6b,0x8d, + 0xe7,0x5d,0x19,0x9a,0x9d,0x48,0xf0,0xf4,0x16,0xb0,0x2b,0x21,0x08,0x09,0x3c,0x5f,0x65,0x7f,0x00,0x3f, + 0x13,0x47,0xea,0x3f,0x6f,0xee,0x1e,0x0d,0xe0,0xd7,0x3c,0xfc,0x35,0xbf,0xc3,0x73,0xa3,0x34,0x6f,0xbc, + 0xf0,0xed,0xb0,0xe5,0x35,0x22,0x42,0x40,0x09,0x91,0xa5,0xeb,0xbf,0xea,0x68,0x7a,0x9d,0xd8,0x7a,0x27, + 0xfb,0x18,0xaf,0x84,0xca,0xd7,0xc5,0xdb,0xa4,0xc5,0xa1,0xe6,0xdb,0xe4,0x24,0x1d,0x76,0x59,0x15,0x38, + 0xaf,0xf7,0x92,0x63,0xc7,0x7f,0xaf,0xa0,0xf4,0xca,0x40,0xe9,0x15,0x41,0xe9,0x8b,0xe6,0x3c,0x95,0x2d, + 0x78,0x6c,0xc2,0xcf,0x07,0xc4,0xa3,0xef,0xf3,0x4f,0xc7,0x8f,0xad,0x28,0xf4,0x55,0xfa,0x7e,0x99,0xa9, + 0x2c,0x2b,0xb6,0xb2,0x95,0x2d,0x42,0x57,0xc7,0xaf,0xc2,0x33,0x73,0x26,0xff,0x54,0xa9,0x76,0x9b,0x9c, + 0xc0,0x6d,0x36,0xe3,0x35,0x5b,0xd9,0xaa,0x4d,0xcc,0xed,0x65,0xc2,0xbe,0xc4,0x10,0x69,0xf9,0x9b,0x44, + 0xc5,0x8f,0x64,0x9f,0xb1,0x8e,0xff,0x9a,0x7e,0x0b,0x81,0xc5,0x3f,0x5f,0x35,0xb2,0x7f,0xac,0xfd,0xa6, + 0x9b,0xc4,0xf1,0x9f,0xd6,0x6b,0xfc,0x62,0xff,0x44,0x81,0xfe,0x4b,0x08,0xff,0x8d,0x9f,0x06,0xe5,0xc0, + 0x0c,0x3c,0xaa,0xd5,0x8c,0x45,0x1e,0x98,0x02,0xd7,0x0c,0x64,0x8d,0x62,0x2e,0x46,0x64,0x45,0xc0,0xb4, + 0xc6,0x75,0xdd,0x48,0xfd,0x3a,0xc5,0xe3,0xe4,0x66,0xc7,0xf6,0xe8,0xb6,0xf7,0x5b,0x2f,0xe5,0x3e,0x35, + 0xdd,0x3e,0xa9,0xcf,0xf5,0xba,0x9e,0xc8,0x9d,0x8a,0x16,0xc2,0xcf,0x58,0xe5,0x81,0x6a,0x16,0x6c,0x2a, + 0x9d,0x6e,0x53,0xee,0x1b,0x10,0xb7,0x1f,0xcc,0xec,0x41,0x48,0xe4,0x4a,0x09,0x2f,0xa8,0xdc,0x21,0xb4, + 0x5e,0xa8,0x78,0x32,0xff,0x09,0x68,0xe9,0xdc,0x35,0x01,0x3b,0x56,0xc4,0xa3,0x78,0xae,0xbf,0xda,0xf5, + 0x0e,0xfc,0xef,0x2c,0xf4,0xb4,0x11,0xd3,0x41,0xa8,0xbc,0xf7,0xd6,0x5d,0x0f,0xda,0xae,0x64,0x31,0xd8, + 0xfb,0x1a,0x75,0x01,0x35,0x57,0x2b,0x94,0x02,0x47,0x73,0x13,0x47,0xe4,0x12,0x39,0xa3,0xee,0x8b,0x2a, + 0xf2,0x6d,0x03,0x31,0x2e,0xa9,0x5f,0x43,0xe5,0x7e,0x65,0xa1,0x3a,0x22,0x2d,0x2b,0x03,0xa7,0xd6,0xe8, + 0xba,0x1e,0xbc,0x08,0x99,0x67,0x12,0x55,0x25,0x8c,0x7a,0xd0,0xd7,0xa2,0x3c,0xf9,0x01,0x01,0x30,0x0a, + 0xe2,0xda,0x3d,0xe2,0x8e,0xfc,0xf6,0xc6,0xf4,0x19,0x2f,0x30,0x22,0xc2,0x0f,0x2e,0xdc,0x71,0x6c,0xda, + 0x1e,0xda,0xaa,0x3b,0x71,0x3f,0x6a,0x31,0xc5,0x91,0xe8,0xd1,0x2d,0x39,0xfa,0xc1,0xbc,0x74,0x33,0x65, + 0x1c,0xc8,0xa3,0xcc,0x42,0x3b,0x14,0xab,0x52,0x57,0xca,0x08,0x3d,0x65,0x8f,0x2e,0x7b,0x9a,0x04,0xd0, + 0x68,0xaa,0xdb,0xcd,0xbc,0x2a,0xf5,0x24,0x1b,0xba,0xcb,0x84,0x16,0xb9,0xaf,0x0c,0x0d,0x22,0xad,0x18, + 0x34,0x82,0x72,0x0a,0x5e,0x8d,0x69,0xcc,0x6b,0xb3,0xc6,0xfe,0x8e,0x44,0x4a,0x90,0x5f,0x7a,0x71,0x65, + 0xc9,0xfd,0x89,0xe5,0x57,0x9b,0x83,0x56,0x12,0x29,0x46,0x7b,0x7d,0xe1,0x0d,0x5c,0x6e,0x09,0x62,0xf7, + 0x62,0xf0,0x7e,0x83,0x6c,0x46,0xb2,0x7f,0xe1,0x05,0x8d,0x1c,0xf7,0x02,0x62,0xf1,0x39,0x1e,0x1d,0x16, + 0xd4,0xe5,0x04,0x8b,0x5a,0xf2,0xa2,0x8e,0x65,0x85,0x47,0xf0,0xf1,0xc2,0x43,0xa4,0xa1,0x04,0xa9,0x6b, + 0x79,0x83,0x36,0x5d,0xbe,0x6f,0x92,0xc8,0xe2,0xc9,0xb9,0x51,0xb7,0x51,0xb8,0x22,0xc6,0xdb,0x4a,0x5b, + 0xbe,0x84,0x0b,0x7e,0x43,0xb9,0x2d,0xb5,0xb1,0x94,0x0a,0xf9,0x2e,0x50,0x2a,0x92,0x5e,0xac,0xaa,0x7e, + 0x4c,0xf1,0x5b,0x8b,0xb5,0xa6,0x86,0xda,0x34,0x42,0xd6,0x6d,0x13,0x14,0xa0,0x17,0x34,0x61,0x2f,0x52, + 0x63,0xd1,0x8e,0x9b,0xb3,0x1b,0x27,0x26,0x22,0x3d,0xdf,0x98,0x8d,0x58,0x67,0x6a,0xa4,0x14,0x5b,0x6f, + 0xb5,0x96,0x1f,0x87,0x6b,0xb7,0x8e,0xa6,0x88,0x96,0xdf,0xd7,0x79,0x04,0xa9,0x43,0x7b,0x63,0x93,0xf7, + 0x31,0x87,0x52,0x35,0x2d,0x2f,0x2c,0xba,0x64,0x23,0x6a,0x5e,0x5d,0xfb,0xb6,0xac,0xe0,0x30,0xf1,0x22, + 0x97,0x55,0x8a,0x53,0xb5,0xb6,0xfc,0xd8,0x04,0x45,0x43,0x26,0x0e,0x72,0xbd,0xfa,0x18,0x52,0xad,0x73, + 0x2e,0xbc,0xb1,0x57,0xca,0x81,0x4d,0xac,0x5d,0x75,0x5b,0x7e,0xa4,0xb5,0x77,0x8c,0x7e,0x9b,0xe1,0x9b, + 0xd7,0x6a,0x1a,0xa8,0x8e,0x5a,0x15,0xee,0x5e,0xc2,0x58,0x59,0x6e,0xa4,0x65,0xeb,0xeb,0x16,0x6c,0x97, + 0x6a,0x50,0xd5,0x24,0x73,0x4f,0xa7,0x11,0x95,0x83,0xa3,0xc6,0xe8,0xef,0x5a,0x87,0x73,0x56,0x98,0x86, + 0xf6,0xe2,0x5a,0x15,0xa3,0x5f,0xfa,0x53,0x8a,0xfb,0xc8,0x4b,0x34,0x44,0xb5,0x6d,0xec,0xdc,0x60,0x5a, + 0x41,0x61,0x50,0xf7,0x36,0x8e,0x04,0x3d,0xef,0x7d,0x9d,0x79,0x51,0x6b,0x0d,0x32,0x4f,0x16,0xba,0x9a, + 0x42,0x8c,0x00,0x42,0xa8,0x5f,0x59,0x57,0x02,0xbf,0xb0,0x65,0x92,0x79,0x9b,0x28,0x54,0xbb,0xd8,0x96, + 0x6d,0x0d,0xfb,0x55,0xb0,0x21,0x20,0xfb,0xf0,0x1c,0x21,0x3a,0x53,0x76,0x65,0xae,0x1a,0xd6,0x3f,0x8d, + 0x73,0xc4,0x3f,0xd7,0x51,0xb5,0x08,0x17,0xb6,0x67,0x47,0xb5,0xdd,0xf9,0xa3,0x30,0xe1,0x3d,0x88,0x5c, + 0x0e,0x8e,0x93,0xf9,0xf5,0xb8,0x45,0x4b,0xb3,0x70,0x1c,0xad,0xc7,0xbe,0x39,0x12,0x01,0x5c,0x8c,0x29, + 0xa9,0xee,0x03,0x0c,0x50,0x31,0x45,0x98,0x50,0xe5,0xf2,0xec,0x52,0x27,0x57,0x3b,0x9f,0x7a,0x26,0x91, + 0xa8,0x41,0x15,0x78,0x45,0x36,0xa7,0x0a,0xbc,0xae,0x22,0xfa,0xb0,0xe7,0xff,0xa6,0xed,0x23,0x06,0xbe, + 0x74,0xad,0x70,0x10,0xf9,0xd0,0x1a,0xfb,0x55,0xfd,0x46,0xa9,0xe6,0xaa,0xae,0x41,0x76,0x01,0x57,0x8a, + 0xcf,0x2e,0xfa,0xc3,0xd0,0x3b,0x70,0xa7,0x78,0x9b,0x5b,0xe2,0x5e,0x0c,0x10,0xe0,0x08,0x4a,0x41,0x36, + 0x3e,0x9b,0x0a,0x50,0xcb,0x40,0x61,0xbc,0xa9,0x10,0x9b,0x67,0xa2,0x13,0x85,0x97,0xea,0xd6,0x36,0xc1, + 0x64,0xfb,0x6a,0x9d,0xbc,0x81,0x65,0x41,0xdb,0x0d,0x93,0xa0,0xa9,0xda,0x5c,0x53,0x08,0x26,0xb2,0x69, + 0x7f,0xdf,0xaa,0x80,0xb7,0xb1,0xb8,0x8a,0x30,0x55,0x65,0x84,0xb4,0xa9,0x6b,0x57,0xdf,0x44,0x74,0x18, + 0x5a,0xed,0x6c,0x79,0x77,0x00,0x74,0x4a,0x09,0x82,0x7f,0xea,0x1b,0x72,0x8a,0x68,0x19,0x9e,0xaf,0x8f, + 0x68,0x6d,0xfc,0xea,0x88,0x4a,0x1a,0x8e,0x28,0x16,0xa0,0x2f,0xbd,0xd8,0x27,0xb4,0x54,0x81,0x77,0x51, + 0xcc,0xd3,0x11,0xaa,0xa0,0xe7,0xcd,0x47,0x28,0x93,0x01,0x5a,0xdb,0x03,0xf5,0x66,0x90,0x2f,0x85,0x04, + 0xe4,0x22,0x58,0x4f,0x74,0x9c,0xcd,0x84,0x71,0x7a,0x8e,0x7f,0x59,0xdf,0x05,0x91,0x5c,0x37,0xfc,0x5e, + 0x7a,0x74,0x0e,0x93,0x9a,0xe7,0x4c,0xed,0xdd,0x6a,0xec,0x0d,0xce,0xdc,0x5c,0xd6,0x03,0xb1,0x85,0x93, + 0x56,0xaf,0x99,0x87,0x86,0xf9,0x23,0xaa,0xcc,0x78,0xf6,0x64,0xa0,0xcd,0xed,0x9f,0x09,0x3b,0x17,0x0d, + 0x25,0x52,0x18,0x2e,0x2c,0x2e,0x2d,0xfe,0x3c,0x09,0x00,0xe4,0xe7,0x1b,0x26,0x6f,0xbc,0xa4,0x45,0xcf, + 0x25,0x6f,0xc1,0xa8,0x86,0x5f,0x9c,0x21,0xc2,0xb0,0x1c,0xaa,0xd2,0x5d,0xf0,0x2a,0xce,0xc2,0x45,0xb5, + 0xa4,0xb3,0x70,0x66,0x3c,0x06,0x50,0xc2,0x0c,0x6b,0x26,0x04,0xee,0x18,0x0d,0x6b,0x52,0x62,0x6e,0xd9, + 0x8f,0xca,0x21,0x42,0x5b,0x13,0x9c,0x51,0x86,0xfd,0x19,0x6d,0xec,0x8c,0x36,0x56,0x38,0xa9,0x6a,0x63, + 0x67,0x9e,0x4e,0x3b,0x99,0x0d,0xa5,0xed,0x96,0x01,0x48,0x09,0xd3,0xfd,0x3a,0x76,0x13,0xb9,0x42,0x06, + 0xa5,0x3b,0xe6,0x52,0x73,0x6f,0x30,0x86,0xc3,0x00,0x8b,0x9a,0xd3,0x1e,0x64,0x8b,0xea,0x06,0x50,0x51, + 0x15,0x89,0xfd,0x1d,0xd3,0xff,0xf3,0xb0,0x72,0xd0,0xe2,0x2f,0x43,0x48,0x00,0xfc,0x29,0xfd,0x99,0x0f, + 0xfd,0x73,0xa3,0xb1,0x4d,0x59,0x67,0x61,0x82,0xac,0x6b,0xfa,0x73,0x3e,0xf4,0x8f,0xc3,0x9d,0xa2,0x3f, + 0x79,0x84,0xae,0xc6,0x8f,0xc2,0x73,0xba,0x9b,0xdc,0xa5,0x37,0x40,0xf5,0x6e,0x77,0x32,0x0c,0x62,0x97, + 0xce,0x30,0x5a,0xd9,0xdf,0x9f,0x0f,0x83,0x5f,0x28,0xd3,0x3f,0xa3,0x43,0x7d,0x83,0xbf,0x20,0xce,0x74, + 0x41,0x6e,0xb5,0xdb,0x1d,0x0f,0x3d,0x14,0x9a,0xfa,0xd7,0x5c,0x88,0xfe,0xa2,0x90,0xae,0xcf,0x7d,0xee, + 0xef,0x9f,0x4b,0xa1,0xa5,0x2a,0xb4,0x94,0x42,0xc7,0x1b,0x74,0x40,0xea,0x2f,0xd5,0xbd,0x6b,0x89,0xe2, + 0xdc,0xa9,0xa0,0x90,0xaa,0xe7,0x5a,0xa3,0x53,0x35,0xbc,0xa9,0x0c,0xaf,0xad,0x51,0x6e,0x40,0x9a,0xb6, + 0x86,0x56,0x8d,0xdf,0x8d,0xc5,0xdd,0xc5,0x28,0xfc,0x19,0x96,0xed,0x13,0x7f,0x0e,0x45,0x40,0x17,0x04, + 0xfd,0x19,0x47,0x25,0x1d,0x8c,0x4e,0xf8,0x63,0xd8,0xe2,0xe6,0xc3,0x90,0xda,0xe1,0x84,0x68,0xe1,0xa4, + 0x9f,0x69,0x16,0x1d,0xe8,0x31,0x1b,0x6a,0x1e,0x61,0x6f,0xef,0x17,0xd0,0x39,0x91,0xa1,0xe0,0x33,0xa2, + 0x71,0xcf,0xa8,0x89,0x43,0xf4,0x36,0x88,0xe8,0x3b,0xf3,0xd5,0xfc,0x79,0x5e,0x0b,0x1a,0xe7,0x6c,0xa8, + 0x26,0xb7,0x90,0xc9,0x21,0x45,0xfb,0xb2,0x6d,0x9b,0xe8,0xc2,0x9a,0xa8,0x17,0xd4,0xdb,0xac,0xe6,0xdb, + 0x9f,0x3c,0x9e,0x43,0x75,0x9e,0xa6,0x48,0x00,0xd1,0x3d,0x1a,0x7a,0x12,0x90,0x51,0x7e,0xa8,0x43,0x3f, + 0xf6,0xcf,0x71,0xf0,0xc7,0x8f,0xcf,0xf7,0xf6,0xae,0xdc,0x43,0x5f,0x96,0x65,0xed,0x8e,0x38,0xa2,0x27, + 0x80,0x32,0x60,0xa0,0x05,0x85,0x57,0x91,0x50,0x75,0x71,0x28,0x15,0xc6,0x3d,0x7d,0x41,0x7f,0x99,0xec, + 0x9a,0x63,0xb2,0x15,0x58,0x82,0x28,0x06,0xf8,0x0f,0xd0,0xfe,0x98,0xf2,0xc6,0x55,0xe4,0xc3,0xe0,0xce, + 0x66,0x03,0xc9,0xdf,0xe1,0x78,0x35,0x7c,0xb7,0xb7,0x94,0x53,0xa7,0xcc,0xdf,0x8e,0x19,0xb2,0xa2,0xac, + 0xa3,0x86,0xb5,0x75,0x55,0x9d,0x0b,0x17,0xc2,0xe8,0x15,0x8c,0x27,0x6a,0x99,0xf0,0xd2,0x9e,0xfe,0x6a, + 0xa3,0xac,0xf3,0x3a,0xd9,0x23,0x8c,0x52,0x6e,0xf3,0x47,0x39,0x01,0x47,0x85,0xfd,0xd5,0x4e,0xba,0x39, + 0x7b,0x52,0x35,0x03,0x38,0x6b,0x30,0x9e,0xfe,0x08,0x51,0x9a,0xa2,0x29,0x22,0xab,0x6b,0x7e,0x28,0xaf, + 0xc7,0x19,0x0a,0xb3,0xd5,0x6a,0x46,0x93,0x01,0xd2,0xf3,0x73,0x21,0xed,0x7d,0x41,0xc8,0x9a,0x6f,0x91, + 0x8b,0xcb,0xc6,0xfb,0x06,0x2a,0xdb,0xae,0x09,0x68,0x56,0x13,0xae,0x67,0x40,0x9e,0xa9,0xab,0x9e,0x96, + 0xae,0x9d,0x81,0xcd,0xc5,0x54,0x90,0x12,0x5b,0xb0,0xb6,0x67,0xf1,0xaf,0x58,0x57,0xd3,0xec,0xc8,0x53, + 0x04,0xc1,0xc4,0xe3,0x00,0xd3,0x70,0xe1,0xc5,0x84,0x38,0xa8,0xee,0xc2,0xe5,0x44,0xee,0xd5,0x74,0xa8, + 0xc3,0xc4,0x59,0x23,0x50,0xf1,0x50,0xa4,0xa9,0x88,0x29,0xbf,0x2a,0xd1,0x84,0xdf,0xe0,0x8b,0x43,0xef, + 0xcb,0x1c,0x73,0x03,0x17,0x39,0x49,0xf2,0xa2,0xe4,0x1e,0x09,0xcd,0x1c,0xf6,0x97,0x8f,0x26,0x7a,0xaf, + 0x96,0xda,0xb5,0xdd,0xc5,0x6a,0xb5,0x73,0x46,0xfc,0xe2,0xe4,0x64,0x39,0x54,0x9c,0xe9,0x1c,0x66,0xe4, + 0xc2,0xca,0x5e,0x84,0x17,0xb5,0xf7,0x03,0xd4,0x98,0xaf,0x56,0x17,0xf5,0x8e,0x89,0x8b,0xc1,0x41,0x4a, + 0x3c,0xbd,0x9a,0xb2,0xaf,0x57,0xb6,0x9b,0x95,0x29,0xa4,0x79,0x33,0xcc,0x78,0xe7,0x09,0xe1,0x62,0xef, + 0xf6,0x0a,0x83,0x1c,0xcb,0xdd,0x22,0x9d,0xed,0x5c,0x61,0x83,0x59,0xb3,0x04,0xce,0xe1,0xd4,0xa7,0x76, + 0x33,0x29,0x44,0xc5,0x0e,0x07,0xf4,0xe2,0x83,0xa1,0x08,0x2c,0xf5,0x5b,0x3f,0x7b,0xed,0x48,0x98,0x98, + 0x6b,0xff,0xd8,0xbf,0x84,0x90,0xfa,0x19,0x62,0xc7,0x67,0xe3,0xc5,0x2c,0x2e,0xfc,0xf7,0xf4,0x0d,0x1a, + 0xe7,0x8d,0x52,0xfb,0xba,0xa6,0x35,0xb9,0x7e,0x74,0x95,0x54,0x00,0x7c,0xcd,0x64,0xe5,0xe5,0xc9,0x55, + 0x72,0x72,0x3d,0x1c,0xb2,0x13,0x48,0x8e,0xc5,0xfa,0xac,0x2a,0x72,0x4c,0xe4,0xc5,0xb3,0x93,0xe3,0xa1, + 0x2a,0x43,0x3b,0xa5,0x8b,0x0b,0x7f,0x61,0xe7,0xf1,0x85,0xfc,0x84,0xf5,0x46,0xf0,0xae,0x26,0x5a,0x33, + 0x2a,0x78,0xd8,0x33,0xeb,0xfb,0x1d,0x0b,0x5b,0x09,0x15,0xb7,0xb8,0x27,0x54,0xb7,0x25,0xc2,0xb3,0x29, + 0xef,0x4b,0x7c,0x7b,0x8b,0x87,0x18,0xf8,0x53,0x85,0x81,0x36,0xa0,0x0b,0xf6,0x9a,0x0b,0x2c,0x6a,0xe4, + 0x02,0xd1,0xa1,0xbc,0xe5,0x72,0x34,0xc4,0xe1,0xc0,0xe4,0x8f,0xd9,0xe3,0x13,0x6f,0x24,0x63,0x6f,0x6c, + 0x80,0x27,0x34,0xd7,0xd8,0x57,0x61,0xce,0xd1,0xcf,0x9c,0x7b,0x93,0x08,0x6a,0xba,0x1e,0x5c,0xf0,0x10, + 0x0c,0x57,0xfc,0xc4,0x7b,0x56,0xca,0xd2,0xd4,0x5d,0x2d,0x1d,0x56,0xdc,0xf0,0xee,0xe9,0x66,0x54,0xe4, + 0x4c,0xda,0x37,0x07,0xe5,0x9c,0x87,0x88,0xfc,0xbc,0xff,0x26,0xcc,0xfd,0x5c,0x3f,0xc7,0xbc,0xd7,0x8f, + 0x50,0xee,0x9b,0x46,0xfc,0x19,0x79,0xa6,0x51,0x92,0x43,0xff,0x8d,0xd8,0xbd,0x5d,0x08,0x31,0x48,0xd7, + 0x5f,0x4d,0x50,0x76,0xc1,0x13,0x94,0x75,0xb8,0xe8,0x9d,0x89,0xc0,0xf6,0x5c,0xee,0x83,0x69,0xe3,0x1e, + 0xbe,0x80,0xda,0x2f,0x11,0x2e,0x1a,0xff,0x69,0x80,0xbd,0x0e,0x75,0x1a,0xc1,0x00,0x28,0xa6,0xfe,0x75, + 0xbf,0xba,0x17,0x9f,0x11,0x58,0x3c,0x6b,0xe3,0x5d,0x9e,0x59,0xbc,0xcb,0xb3,0xa1,0x7b,0xcd,0x23,0xb9, + 0x16,0x97,0xf7,0x3c,0xd4,0xe3,0xaa,0x91,0x27,0xd4,0xc8,0x93,0x16,0xce,0xf7,0x49,0xc5,0xf9,0x3e,0x61, + 0xce,0xf7,0x5a,0x20,0xe9,0x5d,0x78,0xbd,0x81,0x5b,0xd1,0xfc,0xbb,0x1e,0xab,0x09,0x57,0xb6,0x0e,0xbb, + 0xe1,0x51,0x7f,0xf7,0xd1,0x3b,0x62,0x11,0x8d,0xa9,0xca,0x2e,0x1c,0x4a,0x23,0xe1,0x64,0x77,0xa8,0x69, + 0xef,0xa7,0x31,0xc6,0x77,0x4d,0xad,0xaa,0xe8,0xb6,0xf0,0xea,0xca,0xf7,0x16,0x58,0xbe,0x43,0xff,0x50, + 0x5d,0x58,0xc4,0xff,0xc0,0x19,0x70,0x5e,0xd9,0x88,0xc9,0xfe,0x2d,0x3c,0x9f,0xe7,0xc4,0x5b,0xf1,0x06, + 0xa4,0xbf,0x29,0xe7,0xde,0xaa,0x83,0x16,0xcc,0x13,0x5f,0x9d,0xbf,0xe0,0xe4,0x8c,0xa6,0x92,0xf8,0xef, + 0x13,0xff,0x49,0xe2,0xff,0x9e,0xf8,0x6f,0xd3,0x81,0x96,0xe6,0xbf,0x2d,0x7d,0x2d,0x58,0xc3,0xb7,0xc0, + 0x53,0xe3,0xf9,0x6f,0x47,0x22,0x7a,0x89,0x79,0xc5,0x45,0x76,0x3d,0xd8,0x2d,0x25,0xae,0x19,0x1c,0x66, + 0xae,0x83,0xdb,0xf5,0x50,0xbb,0x54,0x3e,0x4f,0xe0,0xbf,0xfc,0x9b,0x94,0x68,0x41,0xfd,0xc8,0xb1,0x19, + 0x58,0x44,0xde,0xc7,0xa9,0xf5,0xd1,0x45,0x94,0x4e,0x63,0xc7,0xb6,0x47,0x15,0x2d,0xfc,0xaa,0x32,0x4b, + 0xe9,0x95,0x70,0xad,0xcf,0x4a,0xbe,0x4b,0x15,0x07,0xf1,0x15,0xc6,0xa0,0xf4,0xcd,0xb4,0xd3,0xf4,0x3f, + 0x12,0xb8,0x4f,0xc3,0xee,0xc4,0xe3,0xc6,0x83,0x28,0x84,0x48,0xfa,0x65,0xde,0x84,0x76,0x14,0x9e,0x64, + 0x6f,0x6f,0x87,0xff,0x12,0x23,0xa6,0xf4,0x2b,0x07,0x3f,0xb8,0x88,0x9d,0xa2,0x2f,0xf3,0xda,0x08,0xff, + 0xb0,0x58,0x0a,0xb1,0xe7,0x1a,0x2b,0x51,0xd2,0xda,0x0b,0x9e,0x97,0xf2,0x6d,0x7b,0x7a,0x32,0xad,0x12, + 0xbe,0x40,0xc8,0x35,0x31,0x3f,0x31,0x9a,0xaa,0xfe,0x4b,0xf8,0x40,0x12,0xb5,0x05,0x68,0x8e,0x98,0xd1, + 0xad,0x56,0xe3,0xc4,0x95,0xa8,0x71,0xec,0x80,0x02,0x2d,0xbd,0xd2,0x81,0x62,0xc3,0xb2,0x0a,0x1a,0xeb, + 0x5b,0xdf,0xec,0xcd,0x91,0x75,0x8a,0x37,0xd7,0x5d,0x2f,0xf7,0x6b,0x1a,0xd6,0xab,0x74,0x5b,0x21,0xcc, + 0x4d,0xa4,0xb2,0x84,0x22,0xe1,0x9f,0xff,0x1b,0x9e,0xc5,0x07,0x4b,0xf2,0xcb,0x07,0x35,0x8b,0x58,0x3b, + 0x3c,0x52,0xd9,0x24,0xe0,0x21,0xbc,0x09,0x37,0xd7,0x6b,0xe3,0xad,0x9a,0x63,0xaf,0xd7,0xf7,0xc6,0xbb, + 0xdd,0x58,0xcb,0xbe,0x7e,0xb3,0x34,0x2b,0x2a,0x6a,0xd4,0x77,0xaf,0x6f,0x3f,0x69,0x46,0xff,0xab,0x54, + 0x23,0x76,0xa0,0x54,0xce,0xae,0x2b,0xd7,0xb2,0xca,0x5a,0xbd,0x62,0x50,0x8a,0xbd,0xf4,0xd6,0xc0,0x81, + 0x2f,0x30,0x40,0x00,0x7c,0xa0,0x4a,0xf2,0xe3,0x38,0xd1,0x38,0x3f,0xe3,0xc7,0xde,0x1e,0xe5,0xab,0x0c, + 0x60,0x7a,0x0d,0xb1,0x6a,0x17,0xd8,0x3f,0xe3,0xbf,0x09,0x5e,0x25,0x94,0xe7,0x1f,0x89,0x8f,0x93,0x15, + 0x88,0x2e,0x6c,0x73,0x7d,0x94,0xa5,0xb1,0x6e,0x0c,0x9e,0x18,0x7e,0xe4,0xa7,0x51,0xa5,0x5a,0x22,0x6e, + 0x53,0x2c,0x81,0xba,0x0f,0x7d,0xf1,0x33,0x5a,0x99,0x3c,0x99,0xc2,0xff,0xeb,0xf3,0xa4,0x80,0x72,0x64, + 0xe8,0xa4,0xb4,0x0f,0x4a,0xe7,0x8e,0xdf,0x54,0xc7,0x92,0x81,0x28,0xf0,0x8d,0xa4,0x7e,0x4e,0x9c,0xf6, + 0xc0,0x4d,0xab,0x63,0x8f,0x2b,0xee,0x1d,0x75,0x6b,0x9f,0x86,0x46,0xa5,0x30,0x5b,0x7b,0x5e,0xb3,0xa5, + 0x30,0x1f,0x64,0x81,0xf4,0xdc,0xaa,0x5f,0xb0,0x31,0xc3,0x7e,0xde,0x58,0x49,0xf7,0xce,0x09,0x6f,0x0c, + 0x34,0x1f,0xdc,0x35,0xd4,0xb6,0x05,0xa2,0xbd,0xdc,0xbd,0xa3,0x9a,0x9a,0x48,0xeb,0x34,0xdb,0x9a,0x54, + 0x33,0x87,0x6a,0x45,0xda,0xb2,0xb9,0x8a,0x21,0xe0,0xd3,0x78,0xf7,0xf8,0x18,0x6a,0x7e,0x20,0xa8,0x61, + 0xa3,0x30,0x65,0xd9,0x05,0x41,0x73,0x94,0x07,0x4f,0xb3,0x0c,0x2e,0x70,0xfd,0x51,0x51,0x98,0x6f,0x00, + 0x97,0x2e,0x06,0x44,0xa2,0xbf,0xad,0xd7,0x59,0x95,0x62,0xbd,0xad,0xda,0x65,0xf4,0xbb,0xaa,0x5d,0xaa, + 0x91,0xb6,0xf1,0x70,0x6b,0x97,0x6d,0x49,0x97,0xe1,0xb6,0x24,0x6d,0x2d,0xdb,0xe8,0x70,0xbc,0xc8,0xf9, + 0x5d,0x30,0x38,0x11,0x9b,0x36,0x5f,0xa5,0x8b,0x62,0xc7,0x70,0xed,0x7f,0xaf,0x17,0xa8,0xf6,0x58,0x2b, + 0x96,0x72,0x3f,0x24,0x35,0xf3,0xb9,0xa6,0x1d,0x98,0xe5,0x3c,0x4d,0xac,0xb8,0xb4,0xf5,0x56,0xdd,0x26, + 0x8c,0x59,0x23,0x82,0x4b,0x3c,0x63,0xc9,0x4b,0x7d,0x7b,0x68,0x3f,0x46,0xe3,0xbf,0x42,0x4a,0x48,0xa0, + 0x5b,0x8f,0xd8,0x2a,0x66,0x51,0x78,0x1a,0x2b,0x4c,0xf4,0x56,0xbb,0x0d,0x11,0xfe,0x87,0x9a,0x2b,0xec, + 0x7b,0x95,0x1f,0x4b,0xeb,0xe1,0xcc,0xd0,0xde,0xb6,0xe9,0x68,0xc5,0x16,0xf5,0x45,0x7c,0xf7,0xb4,0x64, + 0xcf,0x3a,0x44,0x7a,0x8e,0xaa,0x2c,0xed,0x5f,0x95,0xa9,0x34,0x5a,0x3f,0x9d,0xf3,0x33,0xd0,0x54,0xe1, + 0xa9,0x88,0xec,0xce,0xd9,0x59,0xd5,0xdd,0xbe,0xd3,0x35,0xee,0xe4,0xba,0xce,0xbe,0xd3,0x1f,0xb1,0x28, + 0x4e,0x14,0x6d,0xf9,0x7b,0x30,0xb2,0xc2,0x9b,0xce,0xba,0xb8,0x24,0xf0,0xe9,0x04,0xb3,0xee,0x88,0x0d, + 0xd1,0x72,0x77,0x24,0x32,0x10,0x3c,0x42,0xab,0xf7,0x0f,0x49,0x31,0xe6,0x44,0x33,0x6f,0xc0,0x29,0x5c, + 0x07,0x7f,0xf9,0xdf,0xbe,0x10,0xde,0x54,0x78,0xcc,0x6e,0x8d,0xd4,0x07,0xac,0x66,0x3c,0x6b,0x45,0xc2, + 0x5f,0xb4,0x5d,0xd1,0xa4,0x66,0xeb,0x3e,0xc6,0x22,0x4c,0x78,0x11,0xa4,0xa2,0x15,0x69,0x7e,0x6f,0x6f, + 0x23,0x69,0x1b,0xd2,0x77,0x80,0x5f,0x04,0x81,0x02,0xc2,0xf8,0xca,0x18,0xd5,0x30,0x8f,0xe7,0x8f,0x89, + 0xfa,0x51,0x78,0xca,0x2d,0xc3,0x11,0x1c,0xb0,0x8c,0x3d,0x4c,0x61,0x47,0x99,0xea,0xc1,0x88,0x87,0xd6, + 0x82,0x7f,0x0a,0x8d,0xb7,0xf3,0x2b,0xcb,0xed,0xdc,0x9d,0x71,0x9b,0x87,0xd7,0xb6,0x54,0xed,0xd2,0xb3, + 0x62,0xc3,0x3d,0xc5,0x6f,0x8c,0x9b,0x40,0x22,0xd6,0x22,0x0b,0x9e,0xbb,0x93,0x2d,0xca,0xfd,0x84,0xb5, + 0xf7,0xa3,0xba,0xdf,0x06,0x05,0x05,0xc0,0x9d,0x3f,0xb8,0x73,0xdf,0x89,0x26,0x04,0xd5,0x2f,0x45,0xc5, + 0xc2,0x36,0x34,0xb7,0x4a,0x1e,0x11,0x15,0x5a,0xf7,0x63,0xb9,0xf6,0x7c,0x0d,0x3e,0xe8,0x2c,0x49,0xf7, + 0x33,0x31,0x07,0x90,0x27,0xf1,0x5f,0xc1,0x99,0x6b,0x3e,0x8b,0x37,0xf4,0xc2,0xbf,0xaa,0xc5,0x56,0x80, + 0x07,0xf6,0x1f,0xdc,0x85,0xea,0xfe,0x6b,0xd1,0x1a,0xb9,0xf2,0x7c,0x4e,0x13,0xac,0x85,0xd9,0xc3,0x1c, + 0x4d,0xa5,0xcf,0xa1,0x15,0x46,0xa8,0xb1,0x39,0x54,0xda,0x32,0xe2,0xc4,0xd7,0x15,0xe9,0x5c,0x00,0x77, + 0x7e,0x9b,0x60,0x35,0x00,0x88,0x0a,0x69,0xf0,0x6b,0xbe,0x85,0x5d,0x80,0x5e,0xbd,0xbe,0x18,0xf4,0x75, + 0xbe,0x65,0x16,0x56,0x1c,0xb8,0xff,0x93,0x90,0x4a,0xa5,0x4d,0x11,0x7c,0x9f,0xf8,0xd5,0xaf,0x6f,0xa1, + 0x19,0x1c,0xdc,0x0a,0x86,0xf9,0x36,0x69,0xc3,0x2a,0x0d,0x8b,0x76,0x46,0x0c,0xb6,0x85,0x88,0xec,0x99, + 0xc4,0xc7,0x9d,0x47,0x29,0x62,0xdf,0xb6,0x3b,0x3b,0xe2,0x4a,0xf3,0x3c,0x5e,0x1a,0x4f,0x85,0x62,0x1d, + 0xaa,0x25,0xcf,0x49,0x1b,0xbe,0x62,0x57,0xaa,0x59,0xbd,0x24,0x98,0xec,0xa8,0x3a,0x2e,0x05,0xf1,0x44, + 0xc5,0x23,0xc3,0x92,0x17,0x5a,0xee,0x38,0x0a,0x93,0x93,0x62,0xd8,0x1f,0x49,0xd8,0x68,0x8c,0x62,0x47, + 0x8e,0xfa,0xde,0x1e,0xd8,0x82,0xf6,0x23,0x4c,0x58,0x63,0x89,0xe7,0x10,0x07,0x40,0x9d,0x19,0x33,0xd1, + 0xf4,0x84,0xcb,0x0d,0x71,0x28,0xee,0x3a,0xc7,0x91,0x07,0xa1,0x87,0xe5,0x40,0x7c,0x86,0x01,0x2f,0x38, + 0x9e,0x09,0x0d,0x75,0x52,0x89,0xbf,0x26,0x7a,0xa8,0xe3,0x30,0x3f,0x99,0x0c,0xfb,0x9b,0x07,0x20,0xf2, + 0x55,0x1a,0x11,0xac,0x74,0x3e,0x40,0xeb,0x4f,0xe3,0xf2,0x69,0xb6,0x60,0x19,0xdb,0xb3,0x59,0x42,0x90, + 0xf5,0x23,0xad,0x35,0x5c,0xaf,0x9f,0x8c,0x79,0x88,0x83,0x99,0x8c,0x7a,0xec,0x05,0x0b,0xfd,0xb5,0x56, + 0xa6,0xb7,0xf3,0x32,0x64,0x85,0x4a,0x08,0x21,0xb5,0x79,0xb4,0x30,0x4e,0xe3,0x70,0x61,0x6c,0xc2,0x75, + 0x89,0x8c,0xae,0x7e,0xdb,0x2b,0xc7,0x86,0xe1,0x75,0xbb,0x87,0x01,0xd3,0x17,0x54,0x38,0x58,0x08,0x66, + 0x39,0xe8,0x30,0x99,0x9a,0xa0,0x1a,0x6f,0x31,0x65,0xb6,0x01,0x45,0x59,0xf4,0xf7,0x0c,0xc8,0x1b,0x97, + 0xfc,0x6c,0xd2,0xe5,0x2c,0x11,0xe8,0x79,0x9f,0x35,0x2d,0xfb,0x9a,0x29,0x56,0x66,0x4c,0x17,0x51,0xf1, + 0x8a,0xd2,0xdd,0x58,0x99,0xe5,0xfb,0xa5,0xd0,0xca,0x5a,0xbf,0xf0,0x27,0xe6,0x11,0xf4,0xaf,0xef,0x6a, + 0xbf,0xfe,0xd0,0x3e,0xfe,0xe1,0xb4,0x63,0x46,0x38,0xd2,0x70,0x77,0x50,0xcc,0xef,0x65,0x93,0x49,0x11, + 0x97,0xdf,0xc5,0xc9,0xf4,0xa2,0xb4,0x6a,0x35,0x35,0x16,0x65,0xff,0x78,0x8d,0x2b,0x07,0x61,0x18,0x09, + 0x2c,0x2a,0x99,0x70,0xea,0x5f,0x83,0x72,0xa3,0xce,0xf2,0x9e,0x51,0xfa,0x09,0xf3,0x9e,0xa5,0x1d,0xa5, + 0x52,0x2a,0xc0,0x78,0xae,0x28,0x09,0x8e,0x35,0xbd,0xc9,0xe2,0xfc,0x98,0xc0,0xf5,0x27,0x2f,0x57,0x15, + 0x68,0xb0,0x03,0x79,0xcf,0x2d,0x11,0xc7,0x3b,0x07,0xa6,0x9b,0x5d,0x15,0xaf,0x53,0x82,0x05,0xe9,0x30, + 0x5d,0x70,0xd4,0x96,0x2a,0xc0,0xd8,0x68,0x98,0x15,0x1e,0x74,0xdb,0x0c,0x27,0xc7,0x32,0x7c,0xb6,0x4f, + 0x07,0xd7,0xa4,0x3c,0xb4,0x05,0xb7,0x6a,0xf1,0x1b,0x4c,0x39,0x6e,0xf3,0x97,0x89,0x91,0x07,0x56,0xd7, + 0xb9,0x2a,0x5e,0xc7,0xee,0x2a,0xb1,0xaf,0x57,0x6e,0x84,0xd7,0x32,0x16,0xd9,0x78,0xb4,0xd7,0xd6,0x15, + 0xcf,0x80,0x81,0x2b,0xb1,0x2d,0xb5,0x75,0x77,0x6e,0x4a,0x51,0x84,0xf2,0xfc,0xa9,0xda,0x80,0xb4,0x95, + 0x64,0x36,0xce,0x30,0x6a,0x9a,0x11,0xa9,0x66,0xeb,0x9e,0x89,0x16,0xaa,0x6d,0x48,0x47,0x45,0x6b,0xea, + 0x56,0x1a,0x8e,0xd4,0x64,0x42,0x96,0x89,0x99,0x9d,0x5d,0xc3,0x3c,0xfc,0x6b,0x7e,0xad,0x9f,0x24,0xd3, + 0x9e,0x15,0x10,0x37,0x8c,0x13,0xbf,0xca,0xa8,0x85,0xe2,0x0d,0x17,0xed,0x59,0x90,0xa8,0x85,0xff,0xca, + 0xad,0xbc,0x46,0x28,0xde,0xf0,0x55,0x5c,0xab,0x58,0x8f,0xdd,0xbb,0x11,0x1a,0xe5,0x6d,0x45,0xaa,0x61, + 0xa7,0x16,0xb0,0x63,0xa8,0xed,0x1d,0x28,0xbd,0xba,0xd8,0x4d,0x50,0xed,0x84,0x5d,0x47,0xea,0x3b,0x13, + 0x3f,0x94,0xcd,0xf1,0x5d,0x66,0x08,0x6c,0x44,0xad,0xb0,0xf1,0xbe,0x03,0x0b,0xed,0x01,0x57,0x67,0xcf, + 0xe5,0x95,0x9d,0xaf,0xd1,0xf4,0x83,0x58,0xbb,0x3e,0x09,0x38,0x42,0xde,0x5a,0xd4,0x58,0x48,0x70,0x9b, + 0x07,0x9b,0xb5,0xd5,0x91,0x28,0xed,0x38,0x4d,0x6b,0x7f,0x09,0xab,0x4a,0xe3,0x43,0xd1,0x90,0x5b,0xc4, + 0x09,0x7b,0xf5,0x3c,0xcb,0x78,0xfd,0x9f,0x09,0x9b,0x4c,0x5a,0x2e,0x4b,0x34,0xc2,0x84,0x46,0xe1,0x77, + 0x49,0x30,0xad,0x67,0x8b,0xe3,0xb9,0xf6,0x00,0x59,0x31,0xd4,0x85,0xa8,0xd6,0x8f,0x50,0x39,0xd2,0x9e, + 0xe2,0x73,0x84,0x0d,0x0a,0x4b,0x10,0x6a,0x7c,0x17,0xb2,0x27,0x1f,0xf8,0xf0,0x35,0x8a,0x1d,0x72,0xa1, + 0xf3,0x79,0x6e,0xa4,0x85,0x71,0xce,0x7e,0x60,0xd2,0x7a,0x44,0x6c,0xf1,0x5a,0xff,0x2e,0xaf,0xf3,0x92, + 0xa9,0x76,0xe7,0xe4,0x1a,0x7f,0xc3,0xb4,0xd1,0x09,0xad,0xcb,0xd4,0x68,0x12,0xd1,0x48,0x08,0xe1,0x0b, + 0x49,0x9d,0x56,0x9e,0x61,0xd2,0x4d,0x2f,0xdc,0x69,0xcd,0x0b,0x77,0xda,0x37,0x5a,0x21,0x6b,0xac,0x87, + 0xf6,0x43,0xe0,0x5a,0xfd,0xef,0x42,0x15,0x44,0xc2,0x5e,0xef,0xed,0xfd,0x3b,0xc5,0xff,0x3d,0xb8,0xcc, + 0x02,0xa5,0x06,0x05,0xe6,0xaf,0x61,0x8d,0x71,0x28,0x27,0xf2,0xd7,0xc4,0xff,0x17,0x54,0x28,0x6f,0x4f, + 0x6f,0x5d,0x77,0x10,0xf4,0x56,0xa7,0xa9,0xd7,0x1d,0x78,0xa7,0xeb,0xd3,0xf5,0xc1,0xd4,0xff,0x0f,0xe8, + 0xbc,0xef,0xf7,0x3e,0xeb,0x0e,0x7e,0xdb,0xbd,0x5d,0xbb,0xde,0xea,0xe4,0x74,0x78,0x7a,0x70,0x7a,0x3a, + 0xa4,0xbc,0x38,0x6b,0x55,0x5c,0xe7,0xbb,0x43,0xeb,0x6c,0xff,0x47,0xe2,0x3b,0xa7,0xa7,0xbb,0x7b,0x58, + 0x28,0xca,0x39,0x6a,0xcb,0x31,0x0e,0x03,0x68,0x25,0xc5,0x43,0x8a,0x5b,0x76,0x1d,0x35,0x18,0x19,0x8d, + 0xd3,0xa5,0x45,0x98,0x42,0xfe,0xe7,0x97,0x59,0x78,0x2b,0x42,0x7d,0x78,0x33,0x0d,0x4e,0x1c,0x4b,0xda, + 0xef,0x0c,0x7d,0x83,0xab,0x1b,0xc6,0x1d,0xec,0x4d,0xab,0x07,0xf7,0x0f,0x0a,0x37,0xe6,0x22,0xa5,0x11, + 0x33,0xdb,0xbe,0x88,0xb3,0xac,0xa6,0xc2,0xef,0xdf,0xbd,0x79,0x4d,0x09,0x80,0x68,0xc4,0x6c,0x4c,0x3d, + 0x8d,0xc0,0x52,0xab,0x22,0x5c,0xe2,0x42,0x80,0x02,0x55,0x18,0x24,0x3c,0x4d,0x98,0xd2,0x08,0x73,0x6c, + 0x75,0x9c,0xc2,0x31,0x6b,0x8b,0x8f,0x73,0xc7,0xb1,0x14,0xfa,0xab,0x2e,0xc1,0x46,0x74,0x43,0x7b,0x3e, + 0x81,0xd3,0xad,0x95,0xe8,0x3a,0x3e,0x8c,0x7c,0x6b,0x7d,0xa9,0x5a,0x23,0x53,0xde,0xce,0x94,0x0a,0x25, + 0x11,0xc4,0x69,0xfb,0xb2,0xf1,0xc3,0xc8,0xa7,0x2f,0x1b,0xe3,0xfd,0xc6,0xb2,0x71,0x53,0xcd,0x65,0x7b, + 0x97,0x60,0xe5,0xea,0x4b,0x27,0x95,0xad,0xa5,0xe3,0x84,0x3f,0xbb,0x74,0xdc,0x6d,0x6d,0xe9,0x38,0xc5, + 0x5a,0x3a,0xfe,0xad,0x97,0xce,0xee,0xcb,0xd4,0x42,0x79,0x57,0x2a,0x54,0xb9,0x5d,0xd8,0x1a,0xc8,0xe2, + 0xe5,0x19,0x3f,0x31,0xc1,0xde,0x8f,0x6d,0x3f,0x61,0x44,0x99,0xcd,0x94,0x2d,0xa3,0x18,0xec,0x29,0x1b, + 0x4c,0xb1,0x2b,0x4c,0x0a,0x46,0xc9,0x78,0x70,0xa2,0xa9,0x58,0x56,0xa2,0x35,0x83,0x47,0x31,0x8b,0xbc, + 0x3e,0x87,0xaf,0xa1,0x24,0x13,0x4b,0x69,0x65,0xd7,0x08,0xa3,0xcf,0x12,0x06,0x9d,0x5a,0xb8,0x39,0x67, + 0xc3,0x46,0x18,0x05,0xb2,0x79,0xa3,0x18,0x3c,0xe6,0xaa,0x25,0xaa,0x9f,0xc9,0x08,0x5b,0x0d,0x4f,0x65, + 0xc8,0x95,0x89,0x21,0xdb,0x49,0xb6,0x9a,0x53,0xa2,0xdb,0xba,0x3d,0x23,0x5b,0xa0,0x2a,0xf3,0x53,0x6d, + 0x3f,0xb9,0x61,0x87,0xaa,0x2c,0x5b,0xd9,0xb0,0xb2,0xc5,0xae,0x15,0x63,0xd5,0x56,0xaf,0xd2,0x0f,0x2d, + 0x16,0x5b,0xd3,0x2a,0xcb,0x4b,0x18,0xae,0x6a,0x93,0x49,0x5e,0xa6,0xa6,0x11,0xa6,0x2c,0x9b,0x18,0xa5, + 0xaa,0xc5,0x13,0xf3,0x09,0x6d,0x60,0x59,0xd9,0x7e,0x36,0x96,0x88,0xed,0x71,0x69,0xa1,0x78,0xad,0x69, + 0x9d,0xa2,0x2c,0x3c,0xf8,0xed,0xb4,0xf8,0xcc,0x3d,0xa1,0x7f,0x9d,0x7b,0x8f,0x1e,0x9f,0x1e,0x84,0xc3, + 0xae,0x47,0xb8,0x06,0x89,0xa1,0x87,0x7f,0x07,0x81,0x43,0xd9,0xce,0xf0,0x33,0x42,0x3b,0xab,0x7b,0xf4, + 0x79,0x8f,0x3e,0xef,0x75,0x57,0xaa,0x4e,0xf8,0xe8,0xf1,0x7f,0x52,0x15,0xcf,0x1b,0x1c,0xd0,0x60,0x42, + 0xe7,0x24,0xda,0xff,0xe3,0xc9,0xfe,0xaf,0x67,0xc3,0x93,0xd3,0xd3,0xeb,0xd3,0xd3,0xfd,0xd3,0xd3,0xde, + 0xf0,0x33,0x87,0x16,0x35,0x64,0x1c,0xe6,0x74,0x8b,0xac,0x4b,0x98,0x2e,0xf0,0x06,0xf2,0xe9,0x39,0xfe, + 0x2c,0x0b,0x2d,0x64,0xe7,0xfc,0xf6,0xc8,0xe9,0x8e,0x32,0xcf,0x5f,0xe8,0xc1,0x9d,0x1e,0x0c,0xbc,0xc7, + 0x07,0xb4,0xa0,0x8d,0x62,0xa7,0xa7,0x07,0x28,0xd9,0x75,0x4e,0x7e,0x7b,0x3c,0xfc,0xec,0x31,0x0c,0x1b, + 0x51,0xe5,0xd1,0xce,0xf3,0x37,0xcf,0x8e,0xff,0xf5,0xf6,0xeb,0x0e,0xd2,0xbb,0x8f,0x0f,0x12,0xff,0x42, + 0xd2,0x61,0xb7,0xb3,0x94,0xcf,0xd3,0x93,0x03,0x62,0x82,0xf1,0x62,0xec,0xbc,0x77,0x0c,0x16,0x3e,0x78, + 0xef,0xf6,0x68,0x22,0x53,0xbf,0x7e,0xe4,0xa9,0xa0,0x03,0x76,0xbe,0x54,0x0f,0x2e,0xd3,0xcc,0xbf,0xc9, + 0x08,0x70,0xfc,0xb3,0xcc,0xbf,0xce,0xfc,0xe3,0xcc,0xbf,0xcc,0xfc,0x67,0x99,0xff,0x3e,0xf3,0x9f,0x64, + 0xfe,0xbb,0xcc,0xdf,0xcd,0xfc,0x37,0x0c,0x82,0xca,0x6a,0x57,0x99,0x43,0xeb,0xb7,0x0e,0xbe,0xf0,0xbe, + 0xce,0xf0,0x5e,0xfc,0x96,0xfe,0x75,0xf6,0x66,0x65,0xdf,0x09,0x9c,0x47,0x74,0x28,0xf7,0xa6,0xfc,0xf9, + 0x18,0x9f,0x80,0x4f,0xfa,0x71,0xcf,0xb9,0x47,0x3f,0xa2,0xab,0x39,0x32,0xf6,0x90,0xf1,0xb7,0xa3,0x43, + 0x7c,0x9f,0xa6,0xfc,0xe3,0x2b,0xfe,0x2e,0x9d,0xb5,0xff,0x9c,0xe6,0xb6,0x47,0x8b,0x4c,0x9c,0xef,0xb4, + 0x5c,0xa1,0xfa,0x8a,0xaa,0x79,0x7d,0x9a,0xd0,0xef,0xad,0x59,0x2b,0x6a,0x69,0xf5,0xb7,0xaf,0xb8,0xc4, + 0x0b,0x1e,0x30,0xf4,0x1d,0xea,0xe3,0x7c,0x99,0x6d,0xa1,0x29,0xf6,0xf6,0x5e,0x64,0xe2,0x39,0xe1,0x94, + 0x25,0x2b,0x25,0x7c,0x15,0xf9,0xdf,0x60,0x7d,0xff,0xb1,0xfa,0x6d,0xb9,0x9f,0xa5,0xc1,0x81,0xff,0x1a, + 0x3f,0x97,0xfb,0x2b,0x24,0xd1,0xcf,0x57,0xf4,0xd3,0xed,0x7d,0x46,0x17,0x6a,0xd1,0xa5,0xd1,0x24,0xe9, + 0x2a,0x9b,0xf0,0x77,0xef,0x33,0xef,0xc0,0xff,0x91,0x72,0x7d,0x82,0x2b,0x9f,0xae,0xdb,0x21,0x41,0x19, + 0x95,0xb0,0x7f,0x7a,0x83,0xdd,0x03,0xff,0x29,0x43,0x85,0xbb,0x3a,0xf5,0x76,0x69,0xd0,0xbf,0x64,0x6c, + 0x14,0xf6,0x19,0xfd,0xf0,0x7f,0x46,0x4e,0x80,0x9e,0x59,0xe0,0x7c,0xe0,0xff,0x44,0x09,0xa7,0xbd,0x93, + 0xdf,0x7a,0xc3,0x2e,0x15,0xfd,0xae,0x79,0x3f,0x2b,0x37,0x31,0xbf,0x26,0xe1,0xaf,0xc9,0x1d,0xe6,0x49, + 0x5e,0xa5,0x03,0x41,0x44,0xd3,0xaf,0x89,0x6d,0x92,0x48,0x97,0xf0,0x1f,0xe8,0xf9,0xfd,0xd5,0x2c,0x2d, + 0x82,0xd7,0xef,0x4e,0xc7,0xdd,0x03,0xff,0xdf,0x48,0xe1,0x6f,0x1a,0xc7,0x0f,0x59,0x78,0x52,0x66,0x74, + 0xe7,0xf8,0xb7,0xb4,0xbc,0xc7,0x1f,0xb8,0x5b,0x44,0x7a,0xa4,0x7d,0x49,0xc8,0x83,0x90,0xe6,0x5d,0xf8, + 0x49,0xff,0x55,0x34,0x67,0x4d,0xc4,0x13,0x67,0xb9,0xcf,0x4f,0x28,0xce,0x10,0x54,0x12,0x7e,0xf2,0xa4, + 0x41,0x09,0x3a,0xc3,0xd5,0x8a,0x52,0xd4,0xb7,0x56,0x08,0x55,0xb7,0x0d,0x27,0x82,0xda,0x92,0x9b,0x6b, + 0xb9,0x9f,0x4c,0x64,0x9b,0xb3,0x30,0x19,0x38,0xd4,0x96,0xd3,0x4d,0x70,0x28,0x03,0xe2,0x0d,0xa3,0x50, + 0x88,0x71,0x5d,0x14,0x8f,0xb8,0x52,0xb8,0xa8,0xa5,0x99,0x36,0x46,0xe1,0x3f,0x99,0x14,0xff,0x1e,0xba, + 0x28,0x7e,0xcc,0x3a,0x46,0xdc,0xa1,0x2f,0x0e,0x33,0xce,0xb3,0xf7,0xd4,0xf7,0x0f,0x48,0x87,0xaa,0x3e, + 0x88,0xd7,0x11,0x21,0x68,0x21,0xed,0x46,0xbd,0x64,0x42,0x38,0xc2,0xe9,0xe6,0xd4,0x3f,0x4d,0xff,0x9e, + 0xae,0x72,0xcf,0xe9,0x66,0xfe,0xb7,0xa8,0x74,0x1b,0xbf,0x9f,0x07,0x28,0x27,0xf8,0x3b,0x18,0xad,0xb5, + 0xbc,0x56,0xfa,0xa5,0x41,0xcd,0x30,0x28,0x5a,0x5d,0x19,0x50,0xcc,0x09,0x6a,0x08,0x79,0x34,0x4e,0x32, + 0xe9,0x7f,0x86,0xfe,0xab,0x26,0xed,0x5e,0xb9,0x14,0x77,0x29,0x7d,0xcc,0x54,0x1f,0x0b,0xdd,0x87,0x52, + 0xf1,0x29,0x21,0x9a,0xab,0x77,0x45,0x09,0xb2,0xe8,0x30,0x79,0xf8,0x01,0xbf,0x6b,0xbd,0x24,0xaa,0xc5, + 0x05,0x02,0x0b,0x0f,0x46,0x3d,0x2c,0x1d,0xc2,0xce,0x15,0x2c,0x4c,0xc5,0x2f,0x5a,0x80,0x82,0xd6,0x05, + 0x2c,0xdd,0xd0,0xff,0x9e,0x30,0x03,0x55,0x23,0x56,0x01,0x60,0x07,0xa9,0xbd,0x7e,0xd7,0xfe,0x21,0xf3, + 0x2b,0x1e,0x22,0x50,0x4f,0x69,0xad,0x4f,0x4b,0x62,0x97,0x23,0xda,0x1c,0x50,0x79,0x64,0xb5,0xb3,0x0b, + 0x7f,0xe9,0x5f,0x99,0x67,0xb5,0x69,0xed,0x4d,0xf5,0x46,0xa0,0xce,0x3f,0xb7,0x00,0x8e,0xdf,0x62,0x25, + 0x00,0x93,0x61,0x4f,0x8c,0xa7,0x26,0x80,0xc1,0x95,0x3f,0xf5,0x7c,0x15,0x64,0xb7,0x7a,0xcf,0xbc,0xf1, + 0x88,0x03,0xf5,0x2f,0xc2,0x2b,0x7f,0x19,0xde,0x63,0x2d,0x81,0x5d,0xed,0x84,0xe3,0xe7,0x68,0xd6,0x09, + 0x3b,0x8d,0xb0,0xea,0xea,0x45,0x41,0xde,0x31,0x77,0xd9,0x73,0xac,0x0a,0xd5,0x68,0xde,0x34,0xcd,0x1c, + 0x33,0x83,0x85,0xb2,0x9e,0x6e,0x74,0xed,0xe1,0x19,0xd4,0xb5,0xcb,0xa0,0xd7,0x25,0xf7,0xe5,0x9c,0x89, + 0xc7,0x17,0x68,0x05,0x65,0x9d,0x01,0x55,0x93,0x84,0x4e,0x40,0x9f,0xea,0xf5,0x4d,0x1a,0xbc,0xd7,0x75, + 0x89,0x12,0x9a,0xf6,0xc4,0x94,0x7e,0xe0,0x9c,0xa5,0x2e,0xe5,0xe3,0x40,0xd0,0x1f,0x88,0x8a,0x08,0x1e, + 0x88,0xa9,0x2f,0x21,0x81,0xd5,0x4f,0xcb,0xcb,0x70,0xd9,0x75,0x3a,0x04,0x33,0xb0,0x84,0x71,0xea,0x63, + 0xd7,0xef,0xaa,0xd4,0x69,0x7d,0x01,0x82,0xfa,0x6f,0x42,0x9e,0x8e,0xd7,0x30,0xac,0xa8,0xa1,0x83,0x1b, + 0x42,0xb4,0xe6,0x14,0xd1,0xef,0x73,0x0f,0x2e,0x92,0x46,0xb4,0xbe,0xb3,0xd0,0x1a,0xb1,0xbf,0xc0,0x49, + 0x2f,0x7c,0xe5,0xe2,0xc6,0x5b,0xad,0x1c,0x34,0xea,0xf8,0x13,0x95,0x0e,0x6f,0x27,0xfb,0x55,0x26,0x7e, + 0x3a,0xfe,0x58,0x65,0x4e,0x22,0x9c,0xe7,0x2a,0x97,0x7f,0x3b,0xfe,0xbf,0x62,0x64,0x6a,0xa7,0x37,0xbe, + 0x53,0x37,0x1d,0xa1,0x4b,0x98,0x0e,0xcf,0xe0,0x2c,0x91,0x2f,0xdf,0xe9,0x2e,0xba,0xcc,0x7a,0x3b,0x5d, + 0x57,0xda,0xa7,0xe1,0x4e,0x06,0x4e,0xa0,0x4a,0xd2,0x5a,0x06,0x67,0xff,0x36,0x85,0x27,0x48,0x82,0x56, + 0x4c,0x29,0x9d,0xc8,0x9a,0x3a,0x02,0x32,0x51,0x28,0xc5,0x76,0xc1,0x9c,0xd6,0x56,0x96,0x92,0x46,0x21, + 0x92,0x7b,0x6a,0x5c,0x03,0x57,0xda,0x42,0x37,0x63,0xfa,0xbb,0x69,0xfc,0x4a,0xcd,0x29,0x74,0xb8,0xbb, + 0xbb,0xa4,0x86,0xdd,0x19,0xef,0xaf,0x8c,0xd7,0x09,0x16,0x1e,0x77,0x94,0x84,0x34,0x13,0x2a,0x4a,0x9f, + 0x4b,0x6e,0xc4,0xee,0x84,0xb8,0xc9,0xdd,0xe4,0xd1,0x21,0x23,0x4a,0x1a,0x17,0x0d,0xc0,0x04,0xd6,0x3e, + 0xa1,0xf2,0x84,0x6e,0x45,0x37,0x8e,0x4a,0xd1,0x02,0xd4,0x8a,0x69,0x77,0x2f,0x94,0xe5,0xe9,0x3a,0x55, + 0x3a,0xa5,0x76,0x8f,0xa0,0x37,0x20,0xf5,0x19,0x98,0x08,0x7d,0xd2,0x24,0x19,0xe8,0x9c,0xbb,0x40,0x43, + 0xb0,0x1b,0xc3,0x85,0x30,0xf6,0x57,0x84,0xd2,0x6d,0xb8,0x88,0xb0,0xc5,0xf9,0x26,0x5c,0xfc,0x8b,0x03, + 0x5b,0x55,0x7b,0xcb,0x3b,0x93,0xf0,0xce,0xb8,0x51,0x98,0xa9,0x15,0x8a,0x78,0x85,0x22,0x8f,0xf7,0x0a, + 0x5b,0x95,0x57,0x5b,0x45,0x23,0x85,0x61,0xda,0x07,0x47,0x08,0x48,0xb3,0x54,0x3d,0x6e,0xbc,0x9d,0x56, + 0x84,0xd5,0x44,0x3b,0xf0,0xb7,0xca,0xb1,0x3c,0x32,0xa8,0x62,0x23,0x0c,0x30,0xbc,0x68,0xab,0x19,0x21, + 0x96,0x11,0xcc,0xb3,0xe9,0x10,0xec,0x64,0xbc,0x04,0x18,0x0e,0x54,0xf6,0xe8,0x48,0xd0,0xc0,0xd5,0xf8, + 0x02,0x95,0x01,0xd5,0xb2,0xc1,0x65,0x12,0xa8,0x51,0xd1,0x41,0x69,0x1c,0x55,0x59,0x99,0x3e,0xf0,0x71, + 0x7b,0x9e,0x32,0x06,0x07,0xe1,0x2c,0x65,0x2a,0xe0,0x91,0x4b,0x62,0x12,0xd2,0x5a,0x94,0x78,0x74,0x1a, + 0x51,0x01,0xba,0xce,0x00,0x3d,0xb5,0x76,0x94,0xfa,0x88,0x79,0x77,0xec,0x13,0xcc,0x7a,0xd8,0x83,0x58, + 0xef,0x8c,0x8f,0xdb,0xa8,0x34,0xeb,0x1c,0x13,0xe6,0x9e,0x54,0x62,0x12,0xb7,0x58,0xad,0xd8,0x96,0x90, + 0xef,0xdf,0xf3,0xd9,0x82,0xae,0x1f,0xa7,0xfe,0x1a,0xe5,0xb0,0x15,0x20,0x90,0xb2,0xd9,0x88,0x9d,0xdd, + 0xb4,0x2e,0x00,0x74,0x2b,0x65,0xd5,0x1a,0x0a,0x37,0x0f,0xab,0x4c,0x04,0x6e,0x70,0xbe,0x4b,0x51,0x4c, + 0x90,0xe1,0x5a,0x34,0x10,0xc0,0xa6,0xc0,0xb0,0xa5,0x04,0x0f,0x7e,0xcd,0x4c,0xcd,0x87,0x9b,0x30,0x54, + 0x55,0x6b,0x03,0x6b,0xe2,0x1c,0xdf,0x12,0xc1,0x14,0xb5,0x79,0x9a,0x00,0xa5,0xaa,0xfc,0x6a,0x41,0x0c, + 0x49,0x6c,0x0f,0xca,0xe5,0x99,0x6f,0x49,0x40,0x83,0x38,0x81,0x1f,0x9d,0xa7,0xf1,0xcb,0x78,0x52,0xbe, + 0x99,0xc7,0x29,0x8a,0x24,0x99,0x5f,0x5b,0x8a,0x60,0x91,0xf8,0x0d,0x29,0x67,0xf0,0x2a,0xf6,0x2d,0xe9, + 0xc0,0x0f,0x19,0x31,0x08,0xe3,0xc5,0xa8,0x5d,0x93,0xa6,0x13,0xeb,0xc3,0xac,0x63,0x5d,0xe9,0x28,0x7e, + 0x1e,0x3b,0x7a,0xe8,0xfd,0x9e,0x25,0x04,0x26,0x3e,0x56,0xe4,0xdb,0x76,0x1a,0xb4,0x03,0xff,0x2d,0x80, + 0x76,0x5c,0xbd,0x0c,0xff,0x90,0x99,0xfb,0xfa,0x24,0xf8,0xc4,0x9c,0x24,0xa9,0xf2,0xd2,0xe1,0x9b,0x27, + 0x2f,0x09,0x14,0xd4,0x75,0xe3,0x01,0xce,0x6a,0x0c,0x67,0xa7,0x90,0x08,0xfd,0xd3,0xf0,0x74,0xa7,0xd7, + 0xbb,0x67,0xc3,0xee,0xea,0x94,0x48,0x68,0x6f,0xf8,0xd9,0xe0,0xd4,0x03,0x3f,0x17,0x3e,0x5e,0xfd,0xa6, + 0x47,0x40,0x3f,0x4f,0xdd,0x03,0xff,0x57,0x55,0xe3,0x84,0xf8,0x36,0xe2,0xde,0xce,0x76,0x87,0xa8,0x3a, + 0x04,0xeb,0x47,0xe4,0x73,0x23,0x71,0x75,0x7a,0x72,0x8f,0x08,0xf8,0x7b,0x43,0xfa,0x70,0xe8,0xc3,0xc1, + 0x07,0xd1,0xb9,0xf8,0xd3,0x2c,0x3b,0xf4,0x3e,0xa3,0x66,0x89,0x34,0xff,0x17,0x68,0x99,0x62,0x14,0xdc, + 0xff,0x3b,0x7c,0x14,0x05,0x5f,0x89,0xf6,0x44,0x70,0xf4,0xc0,0x97,0xf5,0x7e,0x70,0xdf,0x5f,0xcc,0x83, + 0x07,0x5f,0x12,0x0b,0x3c,0x29,0x83,0x07,0x7f,0xf7,0x73,0xbc,0x8b,0x04,0x0f,0xbe,0xf2,0xe1,0xd7,0x3a, + 0x78,0x78,0xe8,0xcb,0xd3,0x64,0x70,0xf2,0xa5,0xff,0xf0,0x0b,0xe2,0x32,0xfe,0x23,0x6b,0x73,0xb7,0x05, + 0x94,0xd3,0x05,0xf0,0x58,0xae,0xb0,0xfa,0xc4,0x17,0xc5,0x11,0xa4,0x3d,0x04,0x0f,0xfa,0x50,0xe3,0x07, + 0x00,0x24,0x9a,0x46,0x22,0x23,0xec,0x43,0x51,0x82,0xf3,0x4c,0x19,0xf5,0xfb,0xb9,0x3c,0x25,0x72,0x11, + 0x84,0x18,0x0b,0xfe,0x23,0x73,0xeb,0xb8,0xa1,0x43,0x18,0xa7,0xa3,0x52,0x46,0x8b,0x1c,0x9b,0x74,0xcc, + 0x19,0x74,0x80,0x47,0x65,0x3e,0xe3,0x1a,0x3b,0xba,0x00,0x25,0xfc,0x00,0xc5,0x5b,0x9f,0x9d,0x81,0xd6, + 0xf2,0x38,0x45,0x32,0xa3,0x59,0x3d,0x8b,0x7e,0x4b,0x06,0x04,0x02,0xb5,0x1c,0x24,0x48,0x16,0xaf,0x1d, + 0xb2,0xee,0x89,0xb3,0xa7,0x7b,0x20,0x76,0xa4,0x54,0x67,0x6f,0x4f,0x8f,0x50,0xf2,0x78,0xcc,0x87,0x68, + 0x2f,0x19,0x8f,0x67,0xf1,0x27,0x55,0x3b,0x62,0x87,0x68,0xd8,0x9f,0x4f,0xa9,0x75,0x1f,0xf0,0x8f,0x07, + 0x4f,0x62,0x0b,0x9b,0x6e,0x56,0xe0,0xdd,0xad,0x0a,0x50,0xd7,0xb2,0xb1,0x67,0x53,0xd9,0x58,0xbf,0x86, + 0x21,0x08,0x41,0x6c,0xa8,0x16,0xe9,0xe6,0x38,0x12,0x5e,0x65,0x04,0x54,0xb5,0x74,0x4e,0x2d,0xa5,0xd4, + 0xd2,0x3d,0x08,0xb8,0xe8,0xbc,0x75,0xc1,0x5d,0x57,0xad,0xe2,0xd6,0xb3,0x08,0x62,0xf8,0x2f,0xaa,0xb4, + 0x0c,0xf1,0xcc,0x35,0x10,0x8a,0x26,0x50,0xa4,0x91,0xf7,0x81,0xe2,0x1c,0x4a,0xda,0xf1,0x55,0x79,0xc7, + 0x53,0x63,0x1e,0xcd,0xb2,0xe8,0x12,0x41,0x72,0xd3,0x16,0x2f,0xa6,0x99,0x71,0x7e,0xc9,0x3f,0x21,0x6a, + 0xa4,0x3b,0x11,0x7f,0x56,0xab,0x7f,0xaa,0x44,0x23,0x9d,0x2c,0xc2,0x5f,0x61,0x63,0xa9,0xf5,0xcd,0x1d, + 0x93,0x81,0x28,0x45,0xda,0x27,0x3b,0x5e,0x10,0xbf,0x8d,0x53,0x04,0xe3,0xab,0x97,0x56,0x62,0x45,0x53, + 0xce,0xb0,0x14,0xe1,0xd2,0x65,0xdd,0x89,0x32,0x62,0x8b,0x67,0x93,0xee,0x99,0xc0,0x5c,0x35,0x04,0xba, + 0x5a,0x5d,0xa6,0x7d,0xe5,0xee,0xf8,0xe6,0x3c,0x36,0x31,0x15,0x5b,0x36,0x72,0xc7,0x58,0xe7,0x2a,0x5f, + 0x97,0xe9,0x28,0x7e,0x01,0x23,0x2c,0xfe,0xd5,0x8c,0x1d,0x08,0xb7,0xdb,0x79,0x14,0xba,0xb6,0xd4,0xe7, + 0xf4,0xf4,0xdc,0xe9,0x3a,0x63,0xc2,0xe1,0x13,0x48,0xd8,0x08,0xe8,0x4b,0xbc,0x39,0xd0,0x22,0xdf,0xb0, + 0xbf,0xb5,0x11,0xa4,0x7b,0xb8,0xf6,0xfc,0xeb,0xa4,0xbc,0xf0,0xa3,0xeb,0x28,0x29,0x7d,0xd6,0xf7,0xf7, + 0xd9,0xb3,0xb9,0xd2,0x89,0xe7,0x07,0x1e,0x9f,0x1d,0x91,0xfa,0x1c,0x64,0xde,0xbf,0x26,0xb4,0x1a,0xfb, + 0x37,0x10,0xeb,0x29,0x64,0xe3,0x13,0xf7,0x95,0xc1,0x89,0x21,0x3b,0x58,0xf1,0x65,0x06,0xda,0xb1,0x97, + 0x76,0xa7,0x28,0xae,0x3f,0x89,0x35,0x91,0x78,0xf3,0xec,0xdb,0x2c,0x49,0x17,0xf0,0xc8,0x73,0xbe,0x98, + 0x4e,0x21,0x07,0x54,0xab,0x50,0xc5,0x50,0x71,0x94,0xfb,0x19,0xdc,0x09,0xea,0x76,0xa0,0x69,0xad,0x30, + 0x35,0xaf,0xcb,0x33,0x94,0x77,0x94,0xc6,0x9c,0x65,0x50,0xe2,0x43,0x94,0xf5,0xd2,0x5b,0xdb,0x21,0x94, + 0x0e,0x84,0x7f,0x7a,0x4a,0x28,0x9f,0xfe,0xa9,0x5a,0x6d,0x64,0x20,0x00,0xdc,0x6e,0x53,0xb4,0x53,0x59, + 0xd8,0x6e,0x35,0x08,0x65,0x2f,0xc0,0x84,0x1b,0x11,0xd8,0x38,0xdc,0x39,0xf2,0xfc,0xe3,0x4c,0xed,0x29, + 0xdb,0x7e,0x41,0x8c,0x6d,0xc5,0x60,0xe9,0xa7,0x8f,0xae,0x33,0xdb,0xef,0xca,0x75,0xc6,0x26,0xb6,0x30, + 0xee,0x9d,0x66,0x61,0x59,0x41,0xf6,0x31,0x7e,0xe9,0xfb,0x1e,0x20,0xe5,0x5f,0x22,0xc5,0xba,0xcd,0x39, + 0xf1,0x19,0x12,0x1b,0xd7,0x35,0x67,0x9c,0x67,0x00,0xef,0xb2,0xe5,0x30,0xbc,0x96,0xc3,0x70,0xd6,0x2c, + 0xd0,0x94,0xc5,0x50,0x99,0xeb,0x8d,0x32,0x59,0x51,0x36,0x0b,0xdd,0x60,0x08,0xb4,0x1b,0xc9,0x55,0x52, + 0x22,0xbe,0xa1,0xe1,0xb4,0x45,0xb5,0x64,0xe7,0x88,0x35,0x9c,0x10,0xb4,0x1c,0x27,0xe4,0x97,0x0b,0x2a, + 0xc5,0xc3,0xf4,0xb1,0x5e,0xa0,0x55,0x8f,0x36,0x8c,0x2e,0x9a,0x8b,0x4c,0xbf,0x16,0xdd,0x90,0xa0,0x0b, + 0x1a,0xab,0x8b,0x73,0x79,0x40,0x70,0x6d,0x83,0xe8,0x5c,0xbb,0x08,0x60,0x83,0x7d,0xbf,0xa8,0x02,0xd2, + 0x8b,0x77,0xd9,0x85,0xa7,0x1e,0xd3,0xf0,0xa6,0x90,0xe3,0xa7,0xec,0x58,0xe3,0xb9,0x95,0x92,0x59,0x8b, + 0x3f,0x09,0xa3,0x2a,0x4a,0x7d,0xf2,0x38,0x3c,0x44,0x2c,0x82,0x64,0xd8,0x9b,0xe9,0xa2,0x38,0xe8,0x34, + 0x2f,0xea,0x67,0x7f,0x5f,0xd3,0x95,0x21,0x3f,0xea,0xa2,0xb4,0x65,0x5b,0x69,0x37,0x34,0x7a,0x1c,0x26, + 0xfd,0x11,0x55,0x28,0x7b,0xec,0x40,0x85,0xff,0xb0,0x1b,0x75,0x16,0x32,0x60,0xfc,0x7d,0x5d,0x3c,0xc4, + 0x02,0x26,0xdc,0xed,0xfe,0x11,0xe7,0x33,0x23,0xe4,0x9c,0xe7,0xa0,0xf2,0x8a,0x01,0x13,0x57,0x39,0xfb, + 0xa2,0xe7,0x0f,0x9a,0x3f,0x2d,0xf7,0xce,0xa1,0x38,0x3d,0x70,0xe6,0x5c,0x8a,0xc3,0x26,0xb4,0x96,0x3b, + 0xe2,0x72,0x7e,0x6d,0x20,0xb2,0x82,0xb4,0xa8,0xda,0xef,0x01,0x84,0x25,0xd8,0x44,0xe8,0x99,0x57,0xa2, + 0x17,0xda,0xb2,0xb2,0x57,0xd1,0x98,0x0c,0x6d,0x33,0xbc,0x27,0x37,0x28,0x4b,0xce,0x58,0xd0,0xa2,0xc4, + 0x7d,0x96,0xe4,0x25,0x84,0xc4,0x89,0x2d,0x79,0x93,0xb9,0xda,0xff,0x86,0x98,0x9c,0x66,0x8d,0x17,0xef, + 0x79,0xf8,0x75,0x76,0x32,0x46,0xdc,0x27,0xfe,0x5b,0x13,0x72,0x13,0x11,0x77,0x5a,0x9c,0x9e,0xbe,0x23, + 0xf2,0xcd,0x73,0x1f,0x1d,0x30,0x63,0x2b,0xd2,0x6e,0x8f,0x4e,0x7d,0x02,0xb6,0x19,0x86,0x57,0x5a,0x7e, + 0x3d,0xb7,0x05,0xd7,0x0c,0x1e,0x1a,0xd2,0x8c,0x91,0xab,0x4f,0xe3,0x19,0x33,0xf7,0xa7,0x5c,0x4a,0x62, + 0xe1,0x10,0x45,0x38,0x0d,0x2b,0xdf,0x52,0x07,0x90,0x95,0x53,0xdf,0x85,0xf4,0xbc,0xbf,0xff,0xf8,0x60, + 0x4a,0x6c,0x06,0xdd,0xfc,0x76,0x91,0xd3,0x93,0x67,0xcf,0x9f,0x1c,0x3f,0x39,0x3d,0xa9,0x4a,0x0e,0x87, + 0xa6,0x24,0x24,0xc7,0xee,0xd8,0x17,0x37,0xca,0xd0,0x56,0x51,0xee,0x98,0x38,0x04,0xde,0x45,0x24,0x97, + 0x25,0x7f,0x40,0xc5,0xc1,0x81,0x5c,0x85,0x60,0x5e,0x6b,0xe0,0xec,0x5f,0xe8,0xf1,0xc6,0xe1,0x85,0x9f, + 0x53,0x43,0x8b,0xfd,0x09,0x02,0x4c,0x1b,0x13,0xa3,0x65,0x68,0x3d,0xf5,0x3f,0x12,0x76,0x1f,0xda,0x95, + 0x4b,0x5e,0xfc,0x8b,0x4c,0x47,0xc9,0xd2,0xc6,0x61,0xb6,0x62,0xc0,0xfe,0xe9,0xfb,0x07,0xb1,0x54,0xb9, + 0x62,0xf0,0x2d,0x55,0xf4,0x45,0x04,0xa0,0x50,0x9a,0x85,0x2a,0xea,0x81,0xf2,0x45,0x52,0x9d,0xc2,0x87, + 0x3e,0xcc,0x68,0x53,0xf7,0xaa,0xfb,0x80,0xd8,0x3c,0x85,0xee,0xd7,0xd0,0xda,0x5a,0x36,0xfa,0x9c,0xda, + 0x7d,0x0e,0x1f,0x4b,0x7f,0x53,0xee,0x2f,0x75,0xa7,0xdd,0xfb,0x76,0x75,0x94,0x87,0xf0,0x8d,0x3d,0xcf, + 0xba,0xf3,0x8c,0xcb,0xde,0xa0,0xe0,0x0d,0x1e,0x90,0x75,0xb4,0x42,0x53,0x01,0xe5,0xcf,0x4d,0xf9,0x89, + 0x94,0x3f,0x97,0x7e,0xcf,0xc2,0x45,0x3f,0x75,0xcf,0xad,0x7a,0xb4,0x80,0xe7,0x27,0x47,0x43,0xff,0x8c, + 0x59,0x53,0xbb,0x8d,0xeb,0x66,0x04,0x94,0xd2,0x34,0x3a,0x93,0x46,0x4b,0x4b,0x96,0x18,0xde,0x6a,0x87, + 0x7e,0x25,0x9a,0x63,0x0e,0x24,0xc0,0x81,0xc1,0x49,0x0b,0x16,0x12,0xda,0x92,0xd0,0x97,0x3d,0xe4,0x1d, + 0xb6,0xd0,0x97,0x26,0x17,0x99,0x04,0x15,0x35,0x09,0x11,0x25,0xf4,0xbd,0xd4,0x4d,0xec,0xc1,0x66,0xca, + 0x2d,0x24,0xeb,0x9f,0x89,0x95,0x9f,0x71,0xcb,0x95,0xf5,0x16,0x38,0x87,0xef,0xe8,0x16,0xbf,0x60,0x07, + 0x6d,0xb0,0xca,0xac,0x57,0x86,0x2f,0xf3,0x85,0x0f,0xcb,0x60,0x31,0x86,0xf2,0x6e,0x77,0x9a,0x2f,0xa7, + 0x29,0x4d,0x66,0xc1,0x5e,0x70,0xd4,0x7c,0xe8,0x58,0xc6,0x56,0xcb,0x2c,0x03,0x10,0x9c,0x42,0x27,0x38, + 0xcb,0xdc,0x09,0x0d,0x3b,0xa7,0x73,0xec,0xcf,0xf8,0x33,0x83,0x40,0x0b,0x29,0x13,0xaf,0xba,0xee,0xe6, + 0xe1,0x88,0x7e,0xaf,0x56,0x3b,0x3b,0x63,0x3e,0x94,0x32,0x09,0x05,0xc5,0x4b,0x3e,0xd6,0x22,0x86,0xa2, + 0x51,0x5e,0x11,0x9a,0xb8,0x7a,0x74,0xd1,0xbf,0xd2,0x4a,0x7c,0x53,0x5d,0xe1,0xe4,0x6a,0xd8,0xbf,0xa2, + 0x4e,0xf7,0x61,0x0a,0x37,0xc5,0xcc,0x34,0x08,0xdd,0x73,0x9c,0x7b,0x58,0x3d,0x7e,0x8a,0x9a,0x9e,0x3c, + 0x18,0xee,0xed,0x29,0x85,0x4d,0xfc,0xf0,0x55,0xf2,0x43,0x3b,0xf9,0xa1,0x49,0xfe,0xdc,0x4e,0xfe,0x5c, + 0x99,0x0a,0xde,0x70,0x33,0xab,0x15,0x0a,0xe2,0xdf,0xcf,0xe9,0x5f,0xc7,0xf1,0xcf,0x43,0x87,0x85,0x34, + 0x34,0x43,0x07,0xbe,0x99,0xa5,0x85,0xa3,0xe1,0x40,0x9f,0x92,0xe7,0x31,0xfc,0xe5,0xbe,0x8e,0xaf,0xe1, + 0xef,0xb4,0xf8,0x26,0xcb,0xbf,0xa3,0x52,0x41,0x7b,0x6e,0x7f,0x49,0x33,0x52,0x8a,0xe9,0x68,0xc4,0x67, + 0x42,0x3b,0x20,0x94,0x70,0x83,0x48,0x5c,0xf0,0x3b,0x30,0xf8,0x3d,0x0b,0x9e,0x67,0x96,0x6b,0xbb,0x85, + 0xdf,0xc2,0x23,0xbf,0xcd,0xd8,0xbd,0xbc,0xb7,0x5e,0x13,0x25,0x00,0xe7,0xfe,0x80,0x0e,0xd6,0x69,0x9d, + 0xf8,0xb5,0x6b,0x2a,0x98,0x34,0x10,0xac,0x80,0xe9,0x12,0xae,0xe9,0xc3,0x09,0xd0,0x4f,0xe3,0x86,0x20, + 0x6a,0xca,0x9f,0xf3,0x63,0x38,0xfd,0x82,0x87,0x9b,0x74,0xec,0xad,0x09,0x6e,0x80,0xc0,0x32,0x3f,0x66, + 0x57,0x0c,0x47,0xcd,0xc3,0x7a,0xac,0x4d,0xc8,0x2f,0xf5,0xc7,0x33,0xf5,0x01,0xa0,0x5b,0x9a,0x4b,0xf1, + 0xd2,0x38,0x7a,0x5e,0xe2,0x2c,0x4c,0x14,0x8e,0xb8,0x84,0x5b,0x57,0xeb,0xfb,0xc2,0xfa,0x5e,0x5a,0xdf, + 0xee,0xb3,0xf0,0xd2,0x46,0x73,0x3e,0x21,0xd0,0x47,0x87,0x74,0x66,0x96,0xdd,0xf0,0x99,0x5f,0x6b,0xfc, + 0xb8,0x46,0x2c,0x1c,0xfa,0x4b,0x60,0xa9,0xa5,0xb7,0x5e,0xb2,0xb8,0x92,0x72,0x09,0x95,0xc2,0x92,0xdc, + 0xa0,0xdf,0xe3,0x0a,0x03,0x1f,0xb3,0xda,0x29,0xfc,0x0a,0x25,0x40,0x86,0x0d,0xfc,0x1c,0x6b,0x93,0xd9, + 0x75,0xee,0xb2,0x70,0x49,0x02,0x87,0x4c,0x33,0xdf,0x7a,0xa0,0xa8,0x5d,0x99,0x96,0x48,0xc6,0xbe,0x3b, + 0x37,0xa5,0x31,0x9b,0xd7,0xa8,0xdf,0x06,0x45,0x5b,0x80,0xab,0xb5,0xec,0x87,0xe1,0x51,0xe5,0xfa,0x1b, + 0xf8,0x3e,0x30,0xe8,0xbe,0x50,0xf8,0xcc,0xba,0x4b,0x23,0x58,0xc3,0xca,0x33,0x10,0xc7,0x5c,0x42,0xa0, + 0x90,0x67,0x78,0xfd,0xec,0xbf,0x84,0x97,0x77,0xb8,0xd0,0xa6,0xb5,0x5b,0x20,0xf2,0x41,0x8d,0xed,0xa9, + 0xf4,0x9f,0x09,0x4b,0x0a,0x3d,0x1c,0xdb,0xe4,0xb0,0x96,0x7a,0x22,0x20,0xea,0x1f,0x99,0x56,0xa7,0x4c, + 0x95,0x1a,0xa5,0x7c,0x85,0xf2,0xc7,0x9c,0x8e,0x7f,0x67,0xbe,0x6c,0x23,0x9f,0x00,0x10,0x30,0x26,0x92, + 0x1e,0xdc,0xc5,0x88,0x20,0xd2,0x7a,0xe9,0xf9,0x77,0xc9,0x13,0x20,0x44,0x8a,0xf1,0x5d,0xd1,0xd8,0x41, + 0x0e,0xee,0x28,0xd7,0xfa,0xec,0x6b,0x71,0x12,0x5e,0x79,0xa2,0xe9,0xac,0x9f,0xac,0x91,0x3c,0x11,0xcd, + 0xec,0x49,0x5d,0x24,0x4b,0xd3,0x85,0xe4,0xef,0xe0,0xf7,0x68,0x19,0xd9,0x65,0x6b,0x85,0x68,0xf4,0x08, + 0x4f,0xeb,0x71,0x87,0xb4,0x08,0xe7,0xec,0x23,0x9e,0x63,0x53,0x1a,0x0b,0x6d,0x5a,0x8d,0xe9,0xa3,0x33, + 0xc3,0x1d,0x4c,0x69,0x39,0xae,0xc2,0xb3,0xec,0x64,0x3a,0x74,0xa1,0x69,0xbb,0x5a,0xb1,0xd3,0x15,0xa8, + 0xeb,0x9a,0x67,0xc8,0x65,0x78,0x85,0x47,0x37,0x88,0xfe,0xd0,0xf4,0x12,0x54,0x36,0x1b,0x1f,0x5c,0x55, + 0x2c,0xc9,0xa1,0xc7,0x3c,0xc9,0x95,0xc5,0x93,0xe0,0xc5,0xb2,0x35,0xae,0xb1,0x91,0xb5,0x19,0x27,0x98, + 0x76,0xc8,0x46,0xf3,0xea,0x6a,0xe1,0xee,0x52,0x7b,0xa7,0x29,0xfb,0x39,0x0d,0x18,0xbe,0x7b,0x14,0x72, + 0xb3,0x5a,0xa3,0x44,0x09,0x53,0x22,0xb8,0xae,0xa1,0x04,0xd4,0x28,0x28,0xd1,0x49,0xd7,0xda,0xcf,0x26, + 0xcd,0x83,0xad,0xa2,0x58,0xe6,0x17,0x72,0x18,0xe1,0x2b,0x2f,0xb8,0xaa,0xde,0x4a,0x29,0xf7,0xfb,0x92, + 0xd2,0x5a,0xe2,0xc9,0x5a,0x6f,0xba,0xea,0xea,0x8e,0xf1,0xa8,0x5a,0xe2,0x11,0x32,0x96,0x47,0xc8,0x52, + 0x3d,0x42,0xc6,0x6b,0x65,0x7a,0xdd,0xf2,0xc4,0x2b,0x4a,0xce,0xea,0x79,0xd2,0xab,0x69,0x3a,0x55,0x0f, + 0xbe,0x5a,0xdb,0x49,0xbd,0x5b,0xc2,0xcd,0x2e,0x06,0x65,0x9a,0xbb,0x90,0xad,0x02,0x87,0xcf,0x0d,0x5e, + 0x30,0xb3,0xcf,0x7b,0xf1,0x43,0xc9,0x1b,0x4c,0x2b,0x39,0xd0,0xbb,0xbf,0x5a,0xe5,0x34,0x52,0x86,0x16, + 0x69,0x90,0x76,0x9f,0xbf,0xa8,0xea,0xb7,0x78,0x6c,0xe0,0xc1,0xeb,0x4c,0x35,0x87,0xab,0xb5,0x17,0xe4, + 0xd4,0x0d,0x9d,0xc8,0x1d,0x0b,0xca,0x60,0x32,0xb4,0xd1,0xcc,0x98,0xca,0xcd,0xb7,0x1c,0x4d,0x73,0x22, + 0x39,0xbe,0x9e,0x36,0x43,0x8f,0x39,0xb4,0x1e,0x60,0x59,0xcb,0x79,0x29,0xa1,0x4f,0x1b,0x93,0xcd,0x61, + 0xff,0xeb,0x56,0x9e,0x6e,0x88,0x84,0xdf,0xdb,0x9b,0xf3,0xf8,0xbf,0xc5,0xbb,0x20,0x8f,0x75,0x5c,0x1f, + 0xeb,0x78,0x5d,0x49,0xe3,0xaf,0x7a,0xb0,0x52,0x60,0xaf,0x5f,0x1c,0x4a,0x5c,0x76,0xfa,0x48,0x5d,0xc9, + 0x92,0x2b,0x12,0xc4,0xd5,0xea,0x9e,0xa3,0x24,0x0d,0xce,0xbd,0x3e,0x75,0x59,0x0b,0xf3,0x56,0xff,0xcd, + 0xa6,0x04,0x27,0x37,0xc3,0xf0,0x4a,0xac,0xad,0xab,0xf1,0x09,0xa2,0xb8,0xe2,0x53,0xa2,0xc2,0xb2,0xf5, + 0x67,0x83,0x14,0x70,0xe5,0xf2,0x3b,0x91,0x2e,0x80,0xe0,0x62,0x69,0x8b,0x4e,0x7d,0x76,0x92,0x19,0xa6, + 0x6e,0xe8,0x97,0x96,0x5f,0xac,0x93,0x0d,0x67,0x58,0x54,0xa2,0x4f,0x77,0xeb,0x83,0x90,0xcd,0x7c,0x04, + 0x5f,0x74,0x1c,0xf9,0xc5,0x7e,0x14,0x76,0x46,0xd0,0xb2,0xae,0xc6,0x86,0xe5,0xf4,0x4d,0xfb,0xe1,0x11, + 0x51,0x05,0xf5,0xfe,0x52,0xf1,0xb4,0x8d,0x9b,0xa8,0xf6,0x0e,0xa0,0x23,0x8a,0xbd,0x4c,0xed,0xc7,0x25, + 0x71,0x65,0x02,0xbc,0x95,0x54,0x28,0x69,0x5e,0xf9,0xe1,0x80,0x4d,0xb7,0x67,0xcc,0xdd,0x6c,0x7f,0x45, + 0x74,0xfd,0x8d,0x10,0xec,0x51,0x1e,0x79,0x06,0x4e,0xc5,0x1e,0x11,0x05,0x9b,0x78,0xda,0x4c,0x85,0x91, + 0x26,0xbb,0x29,0x80,0x2d,0x75,0x1c,0x7c,0x87,0x6b,0x20,0x60,0xeb,0x4c,0x19,0xf3,0x80,0xe6,0x0b,0x71, + 0x1f,0xc6,0x56,0xf0,0xec,0x77,0xd8,0x5d,0x9f,0xdb,0x54,0xce,0x95,0x83,0x75,0x93,0x0d,0xe2,0xcc,0xbd, + 0xc9,0xbc,0xe0,0x5f,0x09,0x73,0xf1,0x15,0x13,0x61,0xfc,0xbd,0xf9,0x16,0x6b,0x4a,0xff,0x8c,0xe0,0xb5, + 0x37,0x2a,0xca,0x17,0xa0,0x0b,0x80,0x8d,0x38,0x76,0x4f,0x3c,0xc2,0x7d,0xe4,0xdd,0xd2,0x9e,0xe6,0x42, + 0x32,0x78,0x8f,0xf1,0x0c,0xa5,0x08,0xe9,0xcc,0xd0,0x0a,0x23,0x18,0xe6,0xfa,0x8a,0x82,0x6a,0x20,0xa7, + 0x4c,0xab,0x27,0xce,0xc2,0x6f,0x63,0xd7,0xf6,0x80,0xdc,0x57,0x15,0xe4,0xa1,0x66,0x26,0x0f,0x54,0xaa, + 0xed,0x5b,0xe7,0x1f,0xe7,0xa2,0x26,0xe8,0x40,0x61,0x82,0x06,0x98,0x74,0x2d,0xaa,0x5c,0x5f,0x50,0xa3, + 0x47,0x95,0x81,0x45,0xcb,0xb0,0x3e,0x38,0x28,0x3e,0x55,0x50,0xe7,0x83,0x19,0x52,0xa4,0xc4,0x5d,0x50, + 0x4a,0x2c,0xb3,0xcb,0x38,0x2d,0x02,0xd8,0x39,0x61,0xd1,0x06,0xa9,0xa6,0x0c,0x61,0xf8,0x79,0xdf,0xb7, + 0x6a,0x31,0x85,0xa2,0x7e,0xe8,0x6a,0x50,0xd4,0xc6,0x87,0xbc,0x77,0x11,0x56,0x0c,0x04,0x5a,0xe3,0x6a, + 0x3f,0x35,0x00,0xa7,0x27,0x16,0x8c,0x33,0x30,0xc3,0xa2,0xcd,0xea,0xec,0x81,0x69,0x44,0x45,0x49,0x66, + 0x1b,0xf0,0x0d,0xcf,0xf0,0xcd,0x83,0x59,0xaf,0xec,0x1b,0xd3,0xb6,0x60,0xe7,0x90,0x8d,0x22,0xfc,0x1c, + 0x5e,0xd5,0x64,0x17,0x10,0xb1,0x58,0x09,0x98,0x20,0x29,0xbe,0x4a,0xfe,0x88,0x59,0xbe,0xc3,0x5a,0xdc, + 0x70,0xad,0xe3,0xbe,0xcf,0xc2,0x6f,0x33,0xa2,0x1c,0xec,0xa7,0x28,0x90,0x0b,0x4f,0x32,0x40,0x45,0x53, + 0x6e,0x6b,0x2e,0x11,0x18,0xee,0x88,0xf7,0x18,0x55,0x33,0xbc,0x0f,0xc2,0x60,0x14,0x96,0x9e,0x3a,0xc5, + 0x2e,0x8e,0xf4,0x88,0x7f,0x10,0x8f,0xe3,0xee,0x8c,0xd4,0x95,0x3b,0x82,0x39,0x82,0x52,0x12,0xa5,0xbe, + 0xa0,0x9e,0x83,0x7f,0x27,0x08,0xf2,0xb5,0x4c,0x5d,0xb6,0xa0,0x02,0x57,0xf4,0x24,0x33,0xdf,0x9b,0x06, + 0x9f,0xc6,0xdc,0x93,0x55,0xa0,0x74,0x24,0x08,0xe5,0x07,0xda,0x38,0x0b,0xe2,0xea,0x35,0xf3,0x01,0x74, + 0x53,0x59,0x83,0x1a,0x2f,0x31,0x04,0x4b,0xd4,0xa3,0xb2,0x24,0x43,0xd0,0x40,0x4a,0xe8,0x21,0x34,0xcc, + 0x0d,0xad,0x8f,0x07,0x68,0x3a,0x32,0xf8,0x49,0x2c,0x15,0x68,0x74,0xda,0x2a,0xd1,0x01,0xfe,0x75,0xb4, + 0x99,0xa2,0x18,0x7f,0xe1,0x87,0xc6,0x26,0x27,0x4e,0x92,0x82,0x94,0xdc,0x37,0xc3,0xd4,0x96,0x0a,0xb6, + 0xe4,0x13,0x36,0x6b,0x1b,0x8e,0x02,0x75,0x18,0x6a,0x91,0xda,0x59,0x05,0x40,0xff,0xc1,0xd1,0x8a,0x9f, + 0xa8,0xe5,0x87,0x91,0x92,0xde,0x89,0x9d,0x23,0xa6,0xce,0x89,0x90,0x9e,0x3c,0xcb,0x68,0x9d,0xf9,0x85, + 0xa0,0x0a,0x34,0x4a,0x28,0x13,0x91,0x45,0xed,0x4c,0xdd,0x5f,0xf6,0x28,0xaa,0x5c,0x69,0x15,0x8d,0x42, + 0x70,0x9d,0xc4,0x97,0x13,0xf5,0x0c,0x4b,0xb8,0x2d,0x3d,0x33,0x28,0x8f,0xd6,0x10,0xd2,0xd8,0xc0,0xa2, + 0x1c,0x18,0x34,0xd6,0xd1,0x54,0x85,0x15,0x45,0x26,0xee,0xfe,0x4c,0xda,0x8b,0x94,0x88,0xef,0x30,0x55, + 0x1c,0x18,0x25,0x08,0x87,0x51,0x5b,0x22,0x2a,0x2e,0xe0,0xdd,0x48,0x5f,0xad,0x1e,0xd4,0x92,0xd9,0x4f, + 0x3b,0xfb,0x88,0x50,0xb8,0x05,0xbc,0x97,0xe9,0x09,0x0e,0x88,0x99,0x76,0xb1,0x00,0x5a,0xd2,0x8e,0xfc, + 0xaa,0x0d,0xb3,0x84,0x44,0xd1,0xf9,0x49,0xcb,0x76,0xe5,0x8f,0x12,0xa6,0xf2,0x20,0x12,0xb6,0x7c,0x3b, + 0xfa,0x29,0x98,0xfc,0x92,0x61,0xaf,0xff,0xd7,0x36,0x26,0x76,0xb7,0xec,0x09,0xc7,0x2d,0x70,0x53,0xa8, + 0x85,0x2b,0x84,0x4c,0x88,0x32,0x75,0x93,0x2a,0x64,0xf9,0x2d,0x5d,0x00,0x81,0x31,0xba,0xcc,0x74,0x80, + 0xda,0xc6,0x23,0x0a,0x65,0x34,0x52,0xd6,0xf5,0x90,0x7e,0x66,0x4f,0x4b,0xd7,0x52,0xc3,0xa8,0x1b,0x61, + 0xc6,0x50,0x18,0x64,0x53,0x4a,0xf1,0xfd,0x93,0xcb,0xbb,0x54,0xfd,0x36,0x73,0xcb,0x41,0x16,0x24,0x9e, + 0xf6,0x7a,0xba,0x46,0x63,0xa9,0x96,0xa4,0xb3,0xd7,0x1e,0xf5,0x1d,0x56,0x8f,0x50,0xfc,0x4a,0xae,0x9f, + 0xcf,0x4d,0x61,0x88,0xd7,0x6a,0x76,0xca,0x70,0x10,0x69,0xbf,0x4e,0x35,0x46,0x67,0x65,0x12,0x46,0x66, + 0x83,0x51,0xbb,0xbe,0x25,0xa2,0x89,0xf0,0x4a,0x99,0x7a,0x8e,0xea,0x08,0x87,0x9c,0x2e,0xee,0x2a,0x66, + 0x9b,0x4e,0xa1,0x8b,0x2f,0x82,0xfb,0xfb,0x68,0x28,0x98,0xbc,0x08,0x77,0x33,0x8e,0x70,0xae,0x25,0xf7, + 0x45,0x2f,0xce,0xf3,0x8c,0x38,0x83,0x84,0xce,0x4d,0x99,0xcc,0x8b,0x30,0xf3,0x0b,0x85,0x7f,0x6e,0xa1, + 0xe3,0x91,0xcc,0xe2,0xa0,0xf4,0xd5,0xd7,0x71,0xf6,0x8d,0x5a,0xaa,0x02,0x82,0x0f,0x6a,0xa8,0xd5,0xca, + 0xb5,0xa6,0x11,0x93,0x60,0x45,0xc5,0x86,0x99,0x48,0x65,0x5e,0x70,0xf5,0x2e,0xd5,0xb1,0x2c,0x10,0xea, + 0x4f,0x11,0x03,0x65,0x72,0x64,0xa7,0x79,0x5d,0x62,0x4d,0x78,0xd3,0xe0,0x14,0x4d,0x6b,0x2f,0xc2,0xa7, + 0x9e,0x72,0xaf,0xc7,0xbb,0xe7,0x83,0x7c,0xa4,0x6b,0x9b,0xf6,0xd7,0xcc,0x50,0x47,0x48,0x46,0x24,0x45, + 0x05,0x5c,0xa3,0x0a,0x4d,0x54,0xcf,0x74,0x51,0x33,0xa5,0xae,0x87,0x57,0x49,0x70,0x26,0xe8,0x6b,0x04, + 0x1d,0x05,0xf4,0x1f,0x16,0x74,0xbb,0x69,0xeb,0x9d,0xb5,0xe7,0x7e,0x9f,0x79,0xbd,0xcd,0xf5,0x22,0xc8, + 0x8b,0xc2,0x9d,0x1d,0x78,0xaa,0x1f,0xa7,0x2e,0xde,0x9b,0x32,0xfb,0x37,0x71,0x13,0x51,0xd4,0x6a,0x77, + 0xc3,0xa6,0x4e,0xc6,0xb0,0x0e,0x98,0xc6,0x28,0x9b,0xd0,0x00,0x8a,0x28,0x6c,0x31,0x9e,0xd2,0xc5,0xef, + 0xb6,0xab,0x02,0xaa,0x63,0xa3,0x2a,0xee,0x06,0x8a,0xa3,0x35,0xf3,0x4e,0x22,0x23,0xed,0x24,0xfd,0xa1, + 0x83,0x2c,0x6f,0xc6,0x0c,0xad,0x45,0x13,0x67,0x97,0x05,0x3a,0xe2,0xb4,0x51,0xdf,0xed,0xe9,0xeb,0x46, + 0xe4,0xa1,0xac,0x6c,0xc9,0xdb,0x5d,0x05,0x16,0xcc,0x3d,0xe7,0x6f,0x42,0x9a,0x9a,0xa8,0x08,0x4c,0x1d, + 0x44,0x11,0xc4,0x04,0xc6,0xd5,0xd6,0x8e,0xe5,0x99,0xcb,0x1e,0x4a,0xce,0x74,0xa3,0x5e,0x24,0xe1,0x47, + 0xb9,0xfe,0x86,0x55,0x6a,0xb6,0x28,0x6b,0x1e,0xe1,0x3a,0x56,0xd2,0x87,0x0d,0xf5,0x44,0x9f,0xda,0xec, + 0x4b,0xc3,0x5d,0x74,0x65,0x9f,0xc9,0x6c,0xbc,0xbd,0x67,0x58,0x66,0x99,0xb9,0xba,0x3c,0x73,0xb8,0xc9, + 0xbb,0x6d,0x15,0x16,0x25,0xd1,0x07,0x05,0x43,0x19,0xe2,0x54,0xe9,0xf3,0x11,0xa4,0xd6,0x61,0xd1,0xf4, + 0x1a,0x52,0xf5,0xe7,0x5a,0x05,0x71,0x87,0x06,0x9a,0x3a,0x06,0xd0,0x41,0x6b,0xc0,0x7c,0x5f,0xef,0x57, + 0x98,0xb1,0x21,0x68,0xe3,0x88,0x54,0xe6,0xf8,0x91,0x8a,0xc3,0x0d,0x27,0x1b,0xfc,0x0c,0x2a,0xf6,0x94, + 0x0c,0xf7,0x34,0x27,0xfa,0xb5,0xf6,0x1a,0xe6,0x07,0x8e,0xc4,0x07,0xb3,0xc2,0xbe,0xf2,0xc3,0x34,0x78, + 0x8b,0x45,0x2a,0xd1,0x1b,0xc7,0x84,0xb8,0x54,0xa6,0xe0,0xb6,0x81,0xfc,0xe9,0xa9,0xa2,0x61,0xe9,0xb6, + 0x06,0x90,0x95,0xda,0x10,0x0d,0xe3,0x6f,0x2f,0xba,0x1a,0x0f,0xe4,0x93,0xa8,0xc1,0x20,0xee,0xfd,0xbc, + 0x88,0x5f,0x1c,0x7d,0x99,0xa2,0xf6,0xba,0x11,0x60,0x9a,0x86,0xb5,0x20,0x00,0x01,0x08,0xd2,0xd0,0xfa, + 0x16,0x69,0x20,0x63,0x6e,0x19,0x19,0x1e,0xdd,0x33,0xb6,0x4e,0x52,0x5f,0x8c,0xc7,0x5c,0xe7,0x64,0xb9, + 0x88,0xf7,0x13,0xea,0x67,0xd8,0x71,0xba,0x70,0xa3,0xbd,0xb7,0x57,0x2b,0xc0,0x37,0xf8,0xe8,0xd2,0x76, + 0xa4,0x5d,0x36,0x02,0xde,0x09,0x87,0xb5,0xb9,0x50,0x55,0x0d,0x1b,0x11,0x2d,0x95,0xb3,0x24,0x9c,0xdb, + 0xab,0xda,0x9b,0x6a,0x23,0x8a,0x1e,0xc2,0xe8,0x99,0xd8,0x11,0x56,0x63,0x89,0x1d,0xfb,0x5b,0x44,0x7b, + 0xe6,0x75,0xdf,0xd0,0x7a,0x10,0x26,0x40,0xb0,0x57,0x65,0x81,0xca,0x53,0xa7,0x19,0xfa,0x7c,0x09,0xff, + 0xd1,0x67,0x81,0x65,0x0e,0x9a,0x85,0x2c,0xd9,0xe6,0x9c,0x88,0xd8,0xba,0x02,0x2b,0x27,0x0e,0x12,0x36, + 0x2a,0x0c,0x36,0x8e,0x7f,0xcc,0x31,0xe4,0xf1,0xdc,0x82,0x62,0xc1,0x7d,0xab,0x41,0x16,0xec,0x7d,0xb0, + 0xb8,0xef,0xa2,0xcf,0xa3,0xb6,0x3e,0x29,0x51,0xbd,0xda,0xf0,0xa7,0x7f,0x4b,0x04,0x4a,0x44,0xf7,0x5b, + 0x2e,0x96,0x48,0x74,0xde,0x2c,0x6f,0x9f,0x59,0x65,0xa7,0x8d,0x1d,0x51,0x9d,0x1a,0x18,0x88,0x6b,0xba, + 0x59,0x46,0xdf,0x80,0x3d,0x37,0x29,0x6d,0x86,0x95,0x65,0x03,0xc9,0x77,0xa5,0x16,0x06,0xd0,0x2a,0x23, + 0x08,0x61,0x2f,0x3a,0xe7,0x27,0xc3,0xec,0xa4,0x0c,0xef,0xb3,0x52,0x27,0x0d,0x2d,0xa5,0x65,0x79,0x7c, + 0x34,0x38,0x0a,0x0e,0x83,0xa3,0x20,0x1d,0x70,0xb9,0xab,0x04,0xee,0x7f,0xef,0x7b,0xc1,0xe1,0x70,0x90, + 0xb1,0x34,0x87,0x79,0xa8,0xc0,0xda,0xc8,0xc8,0xda,0x72,0x66,0x3a,0x39,0x7e,0x77,0x93,0xff,0xac,0xf9, + 0x70,0x2f,0x6c,0xe1,0x91,0xb5,0xef,0xe6,0x52,0x17,0x72,0x89,0xf8,0x93,0x47,0x1b,0x30,0x91,0x68,0x5a, + 0x3c,0x93,0xd8,0x3a,0xfc,0x68,0xa8,0x42,0x8f,0x64,0xda,0xcd,0x44,0x68,0x02,0x64,0xa8,0xf7,0x04,0x74, + 0xc6,0x94,0x4b,0xe6,0x8d,0x08,0xbd,0xcc,0xc2,0xc8,0x9f,0x0a,0x04,0xc3,0xe9,0x22,0xbb,0x12,0xcd,0x40, + 0xaa,0x0c,0x98,0x6a,0x29,0x98,0x78,0xf1,0x39,0x25,0xe0,0x14,0xfe,0x54,0x74,0xbc,0x6f,0xe0,0x2d,0xaf, + 0xc7,0x1b,0x60,0xe2,0x6f,0xc1,0xde,0xb2,0xe1,0xb1,0x59,0xf9,0x76,0x33,0x45,0x66,0x95,0xaf,0x5e,0x1e, + 0xbf,0x1f,0xf5,0x17,0x1c,0xdb,0x81,0xdd,0x01,0x21,0x20,0xb3,0xf1,0x44,0xef,0x67,0xbd,0x33,0x81,0x10, + 0x78,0x40,0xe9,0xed,0xe2,0x64,0xf7,0x24,0xa1,0xf2,0xcb,0xdc,0x81,0x21,0x6f,0x2e,0x3e,0x61,0xb1,0x87, + 0x95,0x9d,0xb8,0x62,0x8d,0x78,0x87,0xe1,0x45,0x52,0x3c,0xf8,0x24,0x44,0x72,0x67,0xba,0x10,0x04,0x7e, + 0xb4,0x5c,0x8a,0xda,0x49,0xbd,0xca,0xa7,0x0e,0x95,0x2e,0xf3,0x1b,0xb5,0x7c,0xcd,0xc8,0x47,0x44,0xe4, + 0xd4,0x93,0xa4,0x6d,0xa2,0xf7,0x0a,0x03,0x95,0x5a,0x1b,0x21,0x34,0x0f,0xe6,0x10,0x04,0x08,0xeb,0x68, + 0x70,0x9f,0x1d,0x3c,0x18,0xac,0x50,0xce,0xc1,0x94,0xa5,0xb1,0xd5,0xaa,0xa8,0x58,0x54,0xd1,0x88,0xb0, + 0xf9,0x50,0x1a,0xc5,0xac,0x96,0x50,0xd1,0x94,0xa3,0xaa,0xef,0x99,0xe9,0x7b,0xb4,0xd1,0xb7,0xd5,0x73, + 0x4a,0x40,0xad,0x9d,0xb8,0xad,0x59,0xbd,0xa9,0xd2,0x74,0x23,0x2e,0x98,0xf8,0x07,0x65,0xe4,0x91,0x1a, + 0xaf,0x62,0xe0,0xbe,0x2b,0xc5,0x87,0x2a,0x2c,0x84,0x45,0xfb,0x1b,0xd7,0x73,0x06,0x52,0x06,0x3b,0x44, + 0x32,0xf0,0x3e,0x42,0x34,0xed,0x3a,0x69,0x56,0xd2,0x1d,0x94,0x14,0x65,0x47,0x5d,0x10,0x9d,0x44,0xf9, + 0xe7,0x01,0x94,0x52,0x9a,0xf9,0xed,0x40,0xab,0x98,0x7d,0x43,0xd7,0x2b,0xd5,0x2b,0xe0,0xc6,0xef,0xa8, + 0x4e,0xa5,0x86,0x1d,0x12,0xa2,0xac,0x81,0x9d,0x18,0xb3,0xd0,0xee,0xc8,0xcc,0x16,0xe1,0x06,0x62,0x23, + 0x78,0x9c,0x79,0x83,0x28,0xcc,0x02,0x71,0x06,0x0a,0x2d,0xf6,0x1e,0x07,0x5e,0x2c,0x80,0x4a,0x18,0x10, + 0x89,0xd4,0xcd,0x7a,0x74,0x3c,0xe9,0x5e,0xbf,0x45,0x56,0x10,0xf9,0x0a,0xa9,0xc1,0x5c,0x74,0x5a,0xc0, + 0xb4,0xc8,0x9f,0x84,0x0b,0xa9,0x37,0xa6,0x0f,0x55,0x6f,0x4e,0x9f,0x28,0xc0,0x7e,0xab,0x56,0xab,0xf1, + 0x6a,0x35,0x07,0x29,0x36,0x91,0xf1,0xf1,0x83,0x8b,0x3f,0xf5,0x6f,0x20,0x57,0x54,0x8b,0x58,0xf6,0xce, + 0x96,0xa5,0x92,0x7e,0xea,0x28,0x76,0xee,0x34,0xbc,0x91,0x05,0xf5,0x7a,0xa5,0x8a,0x39,0x32,0xf5,0x4f, + 0x26,0xc6,0xa3,0xa4,0xbb,0x0c,0xe7,0xfe,0x15,0x6e,0x16,0xf7,0x22,0x84,0x8f,0xa4,0x2b,0xe1,0xab,0x2e, + 0x3c,0x7f,0x49,0x33,0xaa,0x83,0xf1,0x92,0xdd,0xbf,0x2f,0xbd,0xaa,0xd8,0xd2,0x83,0x92,0x02,0x08,0x28, + 0x7d,0x12,0x6f,0x6a,0xe7,0x50,0x11,0x77,0xae,0xa3,0x03,0xe7,0x76,0xfe,0x13,0x13,0xfd,0x4f,0xec,0xc6, + 0x72,0xbf,0xec,0x54,0x41,0xac,0x95,0xd4,0x5a,0xed,0x5f,0xb1,0x98,0x83,0x9c,0xe8,0x88,0xed,0x8c,0xd8, + 0x92,0xd5,0x02,0x6d,0xf0,0x81,0xae,0x6e,0x4c,0x61,0xc7,0xf0,0xa5,0xce,0x84,0x43,0xfb,0xe3,0x18,0x35, + 0x42,0x50,0xa9,0x50,0x55,0x64,0x4a,0xb5,0x2f,0x9a,0x75,0x00,0x70,0x28,0xf1,0x75,0xbe,0x3a,0x0a,0xe4, + 0xef,0x03,0xf9,0xfb,0xf0,0x0b,0xf9,0xfb,0xe0,0xa1,0xfa,0xfb,0x95,0x4a,0xff,0x32,0x30,0x81,0xc1,0xa4, + 0xc2,0xe7,0xaa,0x80,0xaa,0xf0,0xf0,0xf3,0x40,0xeb,0x07,0x8f,0xa1,0xab,0x2e,0xa5,0x1e,0xdc,0x57,0xcd, + 0xcb,0x9f,0xa3,0x43,0xf5,0x57,0xf5,0x76,0xf4,0x85,0x4a,0xf8,0xe2,0xf3,0xfb,0x7f,0x57,0x65,0xbe,0xbc, + 0xaf,0x2b,0xd1,0xd7,0x03,0xdd,0xe8,0x75,0xe1,0x98,0x07,0xb8,0xc7,0xe1,0x57,0x7f,0x27,0x56,0xe3,0x51, + 0x78,0x74,0xff,0xfe,0x6a,0x45,0x3f,0xbf,0xf8,0x9c,0x7f,0x7e,0x75,0x38,0x50,0x9d,0x07,0x94,0xf8,0xf0, + 0x2b,0x4e,0xfc,0xfc,0xef,0x03,0x47,0x2c,0x19,0x9c,0xc0,0xe1,0x87,0x97,0x96,0x40,0x21,0xca,0x57,0x5e, + 0xa8,0x05,0x80,0x3a,0xb8,0xbd,0x73,0xe8,0xec,0x58,0xa1,0x85,0x0f,0x21,0xef,0x4a,0x8a,0xd7,0xd1,0x6b, + 0x09,0x99,0x06,0x89,0xb5,0xff,0x8d,0x7a,0x4f,0xf4,0x06,0x84,0x63,0x89,0x99,0x84,0xd9,0x89,0xbd,0xe2, + 0x9e,0x92,0xa8,0x98,0xa4,0xd2,0xc8,0x37,0xa9,0xb9,0x07,0x0f,0x77,0x58,0x99,0xec,0xc1,0x57,0xf8,0x3b, + 0xc0,0xfb,0xa8,0x52,0xe1,0xf1,0xe1,0x5a,0xdc,0xf9,0xcc,0xe9,0x26,0xca,0x2b,0xae,0xbf,0xd4,0x28,0xad, + 0x62,0x9b,0xb4,0xff,0x0b,0x82,0x62,0xe7,0x44,0xe8,0xb2,0x8e,0x72,0x55,0xe7,0xf8,0xd3,0xcd,0xf2,0x17, + 0x51,0xf1,0xe6,0x3a,0xd5,0x91,0xee,0xe8,0x04,0xb5,0x51,0x90,0x2f,0xd2,0x72,0x66,0x45,0xeb,0xc2,0xcf, + 0xde,0x73,0x84,0x96,0x49,0xae,0x62,0xa2,0xee,0xaf,0xa2,0x12,0xca,0x0b,0x1f,0x59,0x51,0xdc,0xe8,0xa9, + 0x6a,0x67,0xe1,0xad,0x38,0xb2,0x78,0xd6,0x88,0x12,0x59,0xf3,0x2b,0x64,0x73,0x68,0x71,0x0f,0x07,0x2a, + 0x94,0x3f,0xfc,0x64,0x77,0x76,0x86,0xcf,0xc1,0xed,0x3a,0xd0,0x21,0x81,0xf8,0x84,0xdf,0x9a,0xc2,0x06, + 0xeb,0xd1,0x88,0x5e,0xa9,0x74,0xa9,0xe4,0xe9,0x5b,0x0b,0x91,0x0e,0xfb,0x3a,0xb5,0xd5,0xf1,0x4c,0x49, + 0x37,0x7c,0xe9,0x5b,0xc4,0x4a,0xcc,0x6a,0xff,0xf6,0x9d,0x52,0xb6,0x84,0x40,0x94,0x98,0xa2,0x68,0x94, + 0x9d,0xf7,0xbe,0x64,0x3c,0xf0,0x2a,0x2e,0x8a,0x68,0x8a,0xab,0xb8,0x94,0x2b,0x4c,0xdd,0x22,0xd4,0x8d, + 0x78,0x7d,0x3a,0xb3,0xe6,0xe8,0x57,0x29,0xbf,0xa0,0x54,0xac,0xbc,0x72,0xc9,0x50,0xaf,0x91,0x84,0xbb, + 0x00,0x3a,0xc5,0xae,0x67,0x15,0x66,0xa5,0x84,0x51,0x9e,0x9c,0xc7,0xc8,0x7a,0x06,0xa3,0x1c,0x16,0x52, + 0x30,0x57,0x25,0xc5,0x74,0x09,0xf1,0xc4,0xb6,0xae,0x02,0x62,0xa8,0x25,0x14,0xc9,0x34,0xef,0x40,0x9e, + 0x65,0xa5,0x8e,0x32,0x8f,0x6f,0xc1,0x6b,0x9b,0x29,0xb5,0xb5,0xe6,0x97,0x4a,0x1e,0x0b,0x0a,0x84,0xcd, + 0xb2,0x6a,0xa7,0xb0,0x68,0x57,0x1c,0xd5,0x77,0xa3,0x44,0x95,0x65,0xca,0x12,0xfd,0x75,0x4e,0x5c,0x89, + 0x2c,0x64,0x4b,0x85,0x5a,0xbe,0xae,0x55,0x10,0x97,0x97,0x8a,0x46,0xe9,0x8c,0x4d,0x0f,0x7e,0x81,0x20, + 0x6d,0xa3,0x72,0x6b,0x31,0xf6,0xaa,0x5b,0x87,0x96,0xfc,0x4e,0x68,0xc9,0x41,0x0f,0x6e,0x42,0x8b,0x01, + 0x05,0xde,0xff,0x22,0xcc,0xdb,0x37,0x1e,0xef,0xde,0xaf,0xf4,0x26,0xfc,0xb7,0xed,0xbf,0x6f,0xdd,0x20, + 0x6a,0xd9,0x6e,0x52,0x7e,0x9a,0x33,0x3f,0x98,0xea,0x15,0x07,0x7e,0xbc,0xbe,0xb5,0x01,0xed,0x56,0x03, + 0x92,0xd5,0x77,0xb5,0x59,0x5d,0xe7,0x2f,0xc0,0xd0,0xc0,0xb5,0x16,0x66,0x03,0x82,0xfe,0xc2,0x74,0xc1, + 0x68,0xcb,0x03,0x07,0x1e,0x46,0x55,0x34,0x04,0x35,0xa2,0xfa,0xef,0x26,0x4c,0xd7,0x8e,0xa8,0x5d,0xf0, + 0x2f,0x0d,0x47,0xfb,0x6d,0x7b,0xde,0x8c,0x29,0xab,0x1d,0xb7,0xc9,0xd0,0xdc,0x8d,0xca,0xb5,0x11,0xf5, + 0x16,0xe9,0x87,0x7a,0xd6,0xa2,0xcc,0x66,0x1b,0x2d,0x50,0x56,0x6b,0x56,0xa5,0xb9,0x8d,0x16,0xac,0x2c, + 0xdd,0x42,0x0d,0x30,0xda,0xc1,0xa5,0xd9,0x4a,0x2d,0xd3,0x1e,0x89,0xc4,0x78,0x5b,0xaf,0xfd,0x6b,0xed, + 0x62,0x15,0xa9,0x95,0xdb,0xc5,0x68,0x06,0xfb,0x6c,0x71,0x84,0xc8,0x2a,0x69,0xb7,0xb6,0xdb,0x59,0xf5, + 0x82,0x1f,0x88,0x8b,0xc3,0x35,0x87,0x0f,0xaf,0x97,0xd0,0x64,0x18,0x9e,0xfc,0x34,0x21,0x6a,0x17,0x58, + 0xfb,0xfc,0x82,0x5d,0xa8,0xc4,0x13,0xa6,0xfb,0x8c,0xe7,0xd7,0xf5,0x86,0xe7,0xc5,0x1a,0x35,0xcf,0xc3, + 0x82,0xb0,0x41,0x62,0x5d,0x20,0xe4,0x6b,0x65,0x43,0x86,0x7c,0x0b,0x70,0x24,0xf8,0x85,0x9b,0x89,0x60, + 0xfe,0x4e,0x1f,0xaf,0x2a,0x86,0x5b,0x28,0x7f,0x4c,0xac,0x5c,0x22,0xe1,0x8d,0x9b,0xcd,0xac,0x2f,0x02, + 0xf4,0x5c,0x48,0x69,0x84,0xde,0x50,0xa4,0xf4,0x0c,0x22,0xe7,0x05,0x32,0x78,0x6e,0x6c,0xe6,0x39,0x69, + 0x70,0x68,0x0b,0x6f,0xb0,0xd0,0x11,0x7a,0x0f,0x03,0xfb,0x8e,0x5b,0x78,0x26,0x9d,0x75,0xaa,0x1b,0x6c, + 0x92,0xed,0x3f,0x0f,0xc7,0xa8,0x8a,0x36,0x5e,0x69,0xff,0x58,0x11,0xc8,0x79,0x08,0x9a,0xdf,0xa9,0x82, + 0x94,0xef,0xed,0x39,0xfc,0x10,0xb8,0x5e,0x57,0x81,0x12,0xf6,0xf6,0x32,0xd3,0x33,0xf1,0xa1,0x63,0x6a, + 0xdd,0x75,0x5e,0x4c,0x3a,0x32,0x8b,0x0e,0x56,0xbb,0x93,0x14,0x1d,0xf8,0x86,0xe9,0xd0,0x1d,0xd0,0xe1, + 0xb5,0xee,0xa8,0x58,0xf7,0x45,0x07,0x06,0x0d,0x9d,0x8b,0x68,0x19,0x4b,0x05,0x29,0x4f,0x85,0x7b,0x78, + 0xa3,0xdd,0x9c,0xfb,0x26,0x4e,0x87,0x74,0x65,0x46,0x3c,0x1f,0xbc,0x7c,0x36,0x57,0xa4,0xed,0x06,0x98, + 0xc1,0x53,0xd9,0x82,0x75,0x27,0x89,0x33,0x6f,0x6f,0x4f,0x44,0x19,0xe3,0x81,0x03,0xa3,0xa8,0xe6,0xb2, + 0x04,0x94,0x5a,0xf6,0x67,0x90,0x64,0x41,0x36,0xa9,0x5c,0xf4,0xfb,0x89,0x1f,0xf5,0x12,0x57,0x02,0x45, + 0xe0,0x68,0x1c,0x87,0x1b,0x88,0x62,0x44,0x3d,0xd1,0xe5,0xd2,0xf2,0xd6,0xb1,0xee,0x1f,0x5b,0xb4,0x5f, + 0x02,0x6b,0xc0,0x79,0x06,0xe1,0xb6,0x2d,0x67,0xaf,0x1c,0x64,0x5b,0xad,0xc1,0x15,0x9c,0xe6,0x4b,0xa1, + 0x22,0xf7,0x41,0x75,0x3b,0x3f,0x87,0x8b,0x24,0x4b,0xe7,0x4e,0x0b,0x8f,0xe3,0x93,0xb4,0xdb,0x65,0xf9, + 0x8b,0x73,0xeb,0x88,0xd6,0x63,0x8e,0x37,0x02,0xeb,0x41,0x9e,0x55,0x4a,0x1c,0xa5,0xc2,0x95,0xe3,0xd1, + 0x02,0x6d,0x89,0xf0,0x86,0x3e,0xc4,0x6a,0x42,0xb5,0xe3,0xac,0x59,0xef,0xa4,0xef,0x65,0x5d,0xa2,0xbb, + 0x4d,0xb2,0x88,0x21,0x2e,0x85,0x0c,0xcf,0xbc,0x81,0xc3,0xce,0x41,0x83,0x67,0x55,0x02,0x90,0xc9,0x98, + 0xc8,0xff,0x85,0x38,0x91,0x73,0xfa,0x7a,0x08,0xd2,0x6d,0x26,0xee,0xab,0xa3,0xb5,0xe8,0xbd,0x3b,0xff, + 0x83,0xc7,0x3a,0xa0,0x31,0x83,0xf8,0xa7,0x1d,0x01,0xa5,0x4f,0x5d,0x7a,0x01,0xfe,0xd5,0x6c,0xc8,0x9d, + 0x33,0x29,0x21,0x4d,0xf7,0x1b,0xab,0x1a,0xe6,0x35,0xb9,0xb3,0x59,0x7c,0x5a,0x49,0x89,0x14,0xdd,0x14, + 0xa7,0xe8,0xe9,0x70,0x44,0xb9,0xcd,0x99,0x60,0x6d,0xf5,0x0f,0xe8,0x51,0x9b,0xb7,0x27,0x5e,0xba,0x7e, + 0xd2,0xdc,0x94,0x88,0x26,0x94,0x0c,0x35,0x17,0x18,0xa9,0x37,0x65,0xb0,0x5b,0x32,0xfe,0x20,0x57,0x71, + 0x4f,0x95,0xc6,0x9c,0xa8,0xa4,0x32,0x33,0xa7,0x06,0xa2,0x0a,0xa4,0x27,0x4c,0xe9,0x10,0x8d,0xaf,0xcb, + 0xfa,0x47,0x87,0xde,0xb0,0x56,0x41,0x8f,0x56,0xfe,0x8a,0x9a,0xb7,0xa9,0xae,0x6a,0x11,0x3d,0x9c,0x74, + 0xbb,0x66,0x51,0xd7,0x1c,0x9b,0x4e,0x5e,0xac,0x2e,0xc3,0x83,0xdf,0xdc,0xd3,0xb1,0xd7,0x3d,0xf0,0x9f, + 0xf1,0xe7,0x35,0x3e,0xdf,0xd3,0x32,0x3d,0x09,0x8f,0xfc,0x77,0xe1,0x7d,0x7f,0x37,0x7c,0xe0,0xbf,0xa1, + 0xdf,0x5f,0x87,0x0f,0xfd,0xb7,0xe1,0xe7,0xfe,0xf3,0xf0,0x0b,0xff,0xf7,0xf0,0xef,0xfe,0x8b,0xf0,0x4b, + 0xff,0x25,0x9e,0xd9,0x5e,0x9e,0xbc,0x19,0x86,0xb7,0xd7,0x45,0x40,0x7f,0x7d,0xe6,0x0d,0x83,0x93,0x07, + 0xfe,0xfb,0xa1,0xef,0x9c,0x38,0xc1,0xc9,0xd7,0x43,0x9f,0x2e,0xf9,0xe0,0xe4,0xf7,0xe1,0xda,0x7f,0x79, + 0x72,0xa4,0x4a,0x1e,0x51,0x6e,0x8f,0x72,0xef,0xb7,0x96,0xba,0xaf,0x4a,0xdd,0xaf,0xb7,0x77,0xa8,0xfe, + 0x0a,0xab,0x29,0x3f,0x50,0xfc,0x01,0x15,0xbf,0xab,0x9c,0xcf,0xbd,0xfa,0x4f,0x74,0xbf,0xfc,0xc5,0x3d, + 0xe3,0x4b,0xfa,0xa6,0x2f,0x34,0xf7,0x35,0x35,0xe7,0xdc,0xa3,0xac,0xb7,0xa8,0x77,0xcf,0xb9,0x17,0x9c, + 0x3c,0xaf,0xa6,0xe3,0xbf,0xa3,0xaf,0xa1,0x83,0xc6,0x76,0xa5,0xe2,0x0b,0xb6,0xd2,0x43,0x96,0x0c,0xe7, + 0xad,0xae,0x8f,0x84,0x5a,0x89,0xb7,0xaa,0xc4,0x73,0x2a,0xc1,0xed,0x6e,0x94,0x40,0x47,0xb2,0x31,0xdf, + 0xb0,0x25,0x33,0x91,0x6a,0xf9,0x22,0x5e,0xb1,0x85,0xe6,0x6a,0x7f,0x70,0x72,0x3a,0xee,0x0d,0xbb,0xab, + 0x7b,0xec,0xba,0xea,0xde,0xca,0x61,0x6f,0x56,0x8e,0x47,0xe5,0x76,0x0f,0xfc,0xd7,0x5b,0xd0,0x56,0x3b, + 0xd6,0x7a,0x6d,0x61,0x2d,0x86,0xb2,0xb7,0x74,0xa9,0xd5,0x50,0x90,0xe5,0xed,0x58,0x1a,0xb2,0x10,0x56, + 0x09,0xdd,0x8a,0xcd,0xd2,0x3a,0x16,0xa6,0x08,0xb7,0x70,0xe0,0x66,0xe1,0xfe,0x11,0x5d,0x8d,0x6f,0x38, + 0x48,0xdd,0x05,0xc0,0x05,0x67,0xe6,0xe2,0xe4,0xc9,0xb0,0x66,0xae,0xa1,0xef,0xa9,0x94,0xd5,0x70,0x04, + 0x7a,0xe1,0x59,0x50,0x32,0x60,0x81,0x7f,0xf2,0xbe,0xa5,0x06,0x74,0x99,0x06,0x69,0x98,0x07,0x69,0x97, + 0x08,0x7f,0x2a,0xf4,0xae,0x56,0x08,0x95,0x88,0x32,0x9a,0x10,0xec,0x53,0xde,0x6e,0x2d,0x0f,0xa2,0xae, + 0xc7,0x87,0xde,0x64,0x7f,0x9f,0x86,0xf7,0xb5,0x2f,0x45,0xcd,0xc3,0x22,0x46,0xbb,0x83,0x77,0x0c,0x37, + 0x0d,0xe7,0xec,0xe9,0xce,0x48,0x42,0x31,0x76,0xa8,0x4d,0xf6,0x95,0x8c,0x7b,0xc1,0x9e,0xdd,0x67,0xdd, + 0x2e,0xdc,0x1e,0xb2,0x9e,0x0f,0x5c,0x25,0xce,0xf0,0xfc,0xb0,0xd3,0xe0,0xbd,0x39,0xa3,0x7b,0xc4,0xd8, + 0x7a,0x41,0x8d,0xbf,0xa5,0x5b,0xf9,0x1e,0x6b,0x14,0xae,0x56,0xf8,0xfd,0x7c,0x6f,0x8f,0xc0,0x02,0xbf, + 0x35,0x8a,0x41,0xb3,0x84,0xad,0xa9,0xe1,0x6e,0xa9,0xc6,0x88,0x70,0xc8,0xae,0xa7,0xec,0xb2,0xc6,0x50, + 0xe3,0x05,0x9d,0x53,0x84,0x2f,0x4f,0x16,0x43,0x8f,0xf0,0xce,0x6a,0x55,0xb0,0xc2,0xe6,0x6a,0xf5,0x02, + 0xe2,0xe4,0x17,0x5a,0xa3,0x87,0xfb,0x84,0xa3,0x7a,0xdf,0x8d,0xc2,0x8b,0x93,0x8c,0xce,0xe0,0x50,0xe4, + 0x2b,0x66,0x2d,0xe9,0x3b,0xa3,0x43,0xe7,0x0d,0xca,0x20,0x97,0xe9,0x13,0xff,0xe3,0xd5,0x1a,0x08,0xc3, + 0xdf,0xf5,0xd8,0x46,0xa2,0xa6,0x66,0x08,0x52,0x0d,0x23,0x21,0xfc,0x05,0x83,0xec,0x5a,0xfb,0x36,0x90, + 0x4d,0xe3,0x12,0x20,0xc6,0xb2,0xdb,0xc6,0xdd,0x08,0xb1,0x78,0x59,0x39,0x54,0xad,0x5e,0x54,0x72,0xed, + 0x0d,0xdb,0x40,0x28,0x7c,0xcc,0xe2,0xed,0x94,0x2e,0xa7,0xa6,0x04,0x7c,0x6f,0xef,0xd0,0x12,0x76,0xd7, + 0xda,0xaa,0x14,0x59,0xb4,0x7f,0x6c,0x04,0xc2,0x56,0x2e,0xb3,0xb3,0xbe,0x76,0x94,0x1d,0x9d,0xc0,0x55, + 0xb6,0xf5,0x98,0x01,0x3d,0x31,0xef,0x56,0xbc,0x47,0x29,0xc3,0x81,0x28,0x1c,0xf9,0x45,0x85,0x4c,0x23, + 0x39,0xad,0xaf,0xb6,0x9c,0x9c,0x7e,0xc5,0xff,0x81,0x73,0x87,0x66,0xab,0x71,0xe1,0x2b,0xc4,0xe3,0x6a, + 0xe5,0xc4,0xe9,0xfe,0x4f,0xef,0x1c,0x16,0x8d,0xd5,0x79,0xed,0x2a,0x0f,0x8f,0x4a,0x9a,0xc5,0x65,0xf2, + 0x52,0xc5,0x1c,0xb7,0xe4,0x45,0x92,0x0e,0xbb,0xc8,0xd4,0x12,0x07,0x71,0x6a,0x5f,0xb9,0x9e,0xbe,0x92, + 0xd7,0x3a,0xf9,0x55,0x89,0x08,0xe2,0x4a,0x26,0xb0,0x5a,0x81,0x51,0x3e,0x56,0x45,0xae,0x92,0x02,0x0e, + 0x3e,0xd0,0xb7,0x7c,0x89,0x14,0x54,0x7b,0x83,0x86,0x00,0x22,0x66,0x39,0x44,0x2d,0x1d,0x5c,0x6d,0x68, + 0xf1,0xbd,0xc2,0xf2,0xee,0xec,0xc8,0x97,0xee,0x5d,0x4d,0x94,0x75,0x99,0xac,0xc2,0x76,0xba,0x54,0xb2, + 0x53,0x74,0x0f,0xad,0xb2,0x07,0x83,0x44,0xe2,0x76,0xa9,0x03,0x91,0xb8,0x3b,0x5b,0xb2,0x54,0xbb,0xf5, + 0x05,0xc5,0x33,0x3a,0x08,0x7b,0xc9,0xb3,0x17,0xb5,0x9e,0x03,0x6e,0x80,0xe5,0x0b,0xaf,0xab,0x66,0xa2, + 0xca,0x09,0x00,0x21,0x41,0x49,0xe6,0x27,0x83,0x06,0xe4,0x2b,0xac,0xe2,0xee,0x40,0x13,0x31,0x5d,0xad, + 0x72,0xb7,0x94,0x06,0x6b,0xc7,0x45,0x62,0x5f,0x6b,0x53,0xf3,0x33,0xf8,0x7a,0xfd,0xf9,0x95,0xab,0x1f, + 0x2f,0x53,0xbf,0x0e,0x35,0x01,0xbc,0x2e,0x0a,0xa8,0x10,0xd9,0xd5,0x00,0x92,0x20,0xf2,0x6b,0xe0,0x11, + 0x40,0x77,0xc5,0xff,0x31,0xbc,0x5d,0x5e,0x05,0xb7,0xeb,0xaa,0x22,0x7d,0x37,0x6b,0x52,0x52,0xbd,0xea, + 0x6d,0xc5,0xe1,0xad,0x9b,0x63,0x40,0x5b,0x02,0x33,0x9c,0xa9,0x97,0x0d,0x3f,0x5a,0x77,0x80,0x32,0xd6, + 0xfa,0x72,0x79,0x65,0xbb,0x0a,0x96,0xc9,0xb6,0x1c,0xaf,0x0b,0xed,0xbb,0x59,0xda,0xeb,0x37,0x7e,0x43, + 0xfa,0x52,0x81,0x3d,0xed,0x0e,0xd1,0x90,0xd8,0x18,0x28,0xb5,0xfa,0xcd,0xb2,0xe5,0xda,0xb7,0x3b,0x6d, + 0x65,0xf7,0x37,0x3d,0x1c,0xd4,0x37,0xba,0x52,0x17,0xb3,0x9b,0xda,0x22,0x3b,0xa8,0x35,0xb6,0x53,0x67, + 0x61,0x98,0xdb,0xb3,0x63,0x8d,0xa4,0x96,0xf5,0x65,0xc9,0xe8,0x2f,0x7d,0xbc,0x7f,0xe4,0xc9,0x33,0xf3, + 0x08,0x32,0x4f,0x28,0x37,0xba,0x2d,0x63,0xf2,0x9b,0xc3,0xa9,0xc9,0xb6,0x9a,0x06,0x93,0x22,0xfb,0xab, + 0xb9,0xf0,0xa6,0xc5,0xeb,0xed,0x72,0x25,0xd7,0xd9,0x45,0xd3,0xb5,0x58,0x12,0xb6,0xe1,0x41,0x63,0x31, + 0x6c,0x3b,0x84,0x8b,0x56,0x5f,0xc6,0xcd,0x2a,0xc4,0x08,0xb2,0xd3,0xf2,0x66,0xe2,0x46,0x84,0x8a,0xb5, + 0x7f,0x3b,0x8e,0xe3,0xb9,0x28,0x15,0x6f,0xce,0x4e,0x89,0x31,0xeb,0x57,0xfd,0x4e,0x85,0x9a,0xe8,0xa0, + 0x55,0xf8,0x6b,0xe3,0xc6,0x89,0x75,0xd0,0x91,0xab,0xfa,0x3a,0xb0,0x80,0xcc,0x5a,0x0c,0x01,0x7c,0x6b, + 0x35,0xd8,0x5f,0xc7,0x2e,0xb1,0xbf,0x30,0x2e,0xd1,0xb9,0xec,0x47,0xbf,0x31,0x7e,0xff,0x36,0xb9,0x22, + 0x52,0x3d,0x81,0x6c,0x5e,0xa6,0xf0,0x23,0x1a,0xa6,0xf3,0x6e,0x8f,0xb9,0xb1,0x09,0x28,0xa4,0xcf,0xe6, + 0x96,0xa2,0x91,0x02,0x00,0xca,0x55,0xc2,0xf0,0x82,0x3d,0x76,0xff,0xd8,0xbc,0x27,0xee,0xae,0x5f,0x7f, + 0x88,0xd0,0xcd,0xd4,0x0e,0xff,0xdd,0x8d,0xd8,0x8f,0x12,0xba,0x09,0x59,0x97,0x3b,0xe6,0xaa,0x5f,0xf6, + 0xaa,0xf2,0x45,0x5c,0xb6,0x9c,0x3e,0xec,0x06,0xd6,0x5b,0xff,0xaa,0x96,0x3d,0xe6,0xce,0xea,0x18,0xe9, + 0xae,0x4e,0xeb,0xa5,0x5b,0xea,0x7f,0xec,0x20,0xea,0xd5,0xf4,0x60,0x14,0x32,0xfc,0xe0,0x28,0x54,0x19, + 0xbb,0x78,0x7b,0xa7,0xe6,0x5e,0xe6,0x61,0x6a,0xdc,0xfa,0xc1,0xb6,0x4d,0xa9,0x7a,0x95,0xf6,0xf6,0x2d, + 0xd2,0x00,0xc5,0x5b,0x11,0xf6,0x07,0x7b,0x6b,0xad,0xb1,0xbd,0xa9,0xf6,0x51,0xb4,0xdf,0xf2,0x71,0xfd, + 0xc8,0xdb,0xe0,0xfe,0xa1,0xed,0xd5,0x87,0x67,0xb3,0x76,0x03,0xd8,0x3f,0xd4,0x48,0xe3,0x20,0x6d,0xb6, + 0x55,0x83,0xf9,0x0f,0xb5,0x54,0x3b,0x4b,0x8d,0x76,0xa0,0x29,0xa6,0x7c,0x35,0xd5,0x74,0x35,0x11,0xd2, + 0xca,0xb4,0x94,0x43,0x54,0x21,0x50,0xa7,0xa0,0x41,0x09,0xfd,0x35,0xe4,0xc8,0x53,0x3c,0x93,0x65,0x27, + 0xac,0x85,0x3b,0x84,0xc9,0x45,0x90,0x36,0x3a,0x4b,0x8a,0x6f,0x6c,0x4a,0xac,0xc5,0xd1,0x4d,0x8c,0xf0, + 0x8a,0xae,0x85,0x32,0x55,0x47,0x35,0x12,0xae,0xd9,0x6a,0xbb,0x18,0xac,0xd4,0xbc,0xa1,0xc2,0xc9,0x1b, + 0xd8,0x17,0xfa,0x10,0x15,0x51,0x55,0xa7,0x81,0x4a,0x15,0x26,0xb7,0x4e,0xf6,0xcf,0x0c,0xd3,0x30,0x63, + 0xbe,0x80,0x63,0xe8,0xb2,0xd6,0x29,0x61,0xe4,0x5a,0xfb,0x96,0x9a,0xa9,0x7e,0x4c,0x85,0x51,0x08,0x71, + 0x4c,0xb5,0x72,0x6b,0xcd,0x02,0x6e,0x28,0x7c,0xcd,0x6a,0xcd,0x8d,0xc2,0x99,0x31,0x06,0xaa,0xcc,0x9a, + 0xff,0x11,0x38,0x1e,0xfb,0x1c,0x41,0xd3,0x22,0x89,0x4f,0xd2,0x4b,0x9e,0xfa,0x48,0x4d,0x1d,0x16,0x9c, + 0x3a,0x9c,0x0a,0x07,0x10,0x18,0x71,0x72,0x30,0x6a,0xac,0x21,0x2a,0x36,0xf7,0xdf,0x8e,0xfd,0x1c,0xa6, + 0x3e,0x34,0x96,0xc5,0xfb,0xc0,0x81,0xfb,0x8f,0xe0,0xe4,0xf4,0xfa,0x74,0xff,0x6c,0xd5,0x1b,0x76,0xbd, + 0x83,0x69,0xa5,0x29,0x3e,0x82,0x2a,0x44,0x01,0x1e,0xb5,0x68,0x3c,0x4d,0x73,0x98,0x65,0xb1,0x90,0x2a, + 0x4e,0x46,0x88,0xcd,0x33,0x53,0x66,0xd7,0xee,0xfd,0x2a,0xfc,0x96,0xb5,0x97,0x3c,0x8a,0x05,0x8d,0xc2, + 0xc9,0xa3,0x6b,0x25,0xc0,0x53,0xab,0x44,0x44,0x67,0x95,0x28,0x94,0x78,0xa0,0xbc,0x2e,0x48,0x2b,0x35, + 0x38,0x83,0xb7,0x01,0xeb,0x5a,0x66,0xb0,0x62,0xe7,0x45,0x9d,0xaf,0xa1,0x8c,0x0e,0x71,0x9b,0x98,0x60, + 0xc7,0xe3,0x0e,0xab,0xa7,0x2b,0xaf,0x84,0xe3,0xb0,0xaa,0xd0,0x9f,0x84,0x63,0x15,0xe2,0x84,0xc7,0x36, + 0x6e,0x5c,0x7d,0x08,0x1f,0x2e,0xe2,0xf9,0x71,0xf3,0x09,0x73,0xa1,0x16,0x92,0x98,0x39,0x57,0x4f,0xd3, + 0x3a,0x75,0x6e,0xcc,0x1e,0x66,0x73,0xc4,0x61,0x37,0xb6,0xca,0x33,0x7f,0xe2,0x05,0x51,0xc5,0xf6,0xd5, + 0x37,0x4b,0x6b,0x98,0xb7,0x7a,0x82,0x6c,0x20,0xd5,0x5e,0x7d,0x45,0x4d,0xd0,0x94,0x4a,0xfb,0x27,0x2c, + 0x07,0xb9,0xb2,0x0b,0x43,0x60,0xf3,0x46,0x5f,0x66,0xca,0x1b,0xd8,0x41,0x1f,0x2e,0xe1,0x66,0x37,0xb7, + 0xaf,0xf4,0x61,0xf9,0x69,0xca,0x19,0xe9,0x33,0x01,0xc2,0x20,0x77,0xdb,0x6a,0xa4,0x3e,0x64,0xb3,0xa6, + 0x86,0x8a,0x0c,0x3f,0xda,0x00,0xd6,0x0d,0x4c,0x65,0xc5,0x7d,0x52,0xde,0x84,0x9a,0x2a,0x84,0xfb,0x0f, + 0xfb,0xd1,0xfe,0x7e,0xe7,0xf1,0x61,0xdf,0x83,0x5a,0x9f,0xa5,0x5b,0x1a,0x75,0x1f,0x32,0x0f,0xbe,0x63, + 0x74,0x6d,0x44,0x5a,0x0d,0x91,0x52,0xa2,0x10,0x9b,0xf2,0x54,0x00,0x3f,0x16,0xe1,0xc8,0xb0,0xd2,0x04, + 0x9d,0x6a,0x12,0x15,0x5c,0xa4,0xbe,0x62,0x4c,0x9b,0xef,0xd8,0x80,0x63,0xb5,0xe4,0xf0,0xe0,0xcc,0x0a, + 0xa0,0xdb,0x21,0x76,0xf1,0xe9,0x10,0xab,0x14,0x5c,0x0a,0x0b,0x68,0x2b,0x25,0xa9,0x82,0xd0,0xb2,0x51, + 0x92,0xca,0x2c,0xd3,0xf7,0x0d,0x68,0x9c,0xf9,0x0c,0xb1,0x0d,0x5a,0xb7,0x8e,0xab,0x1b,0xcf,0x05,0x1b, + 0x6b,0x7d,0x04,0x25,0x5e,0x5e,0xeb,0xb2,0xa1,0xc7,0x0b,0x71,0x94,0x1a,0x68,0xae,0xa2,0xa7,0x9c,0xe9, + 0x31,0xe6,0x7c,0x75,0x60,0x40,0xea,0x24,0xb5,0x50,0x98,0x6c,0x27,0x6d,0x26,0x52,0xea,0x90,0x10,0xcd, + 0x0b,0xa1,0x05,0x93,0x69,0xfd,0xd1,0xcd,0x0d,0x2b,0xb7,0x6f,0x18,0x70,0x8c,0x8e,0x97,0xde,0xb6,0x4d, + 0xd9,0x9f,0xdd,0x26,0x9b,0xce,0x4f,0x94,0xdd,0xca,0xf6,0x3d,0xa1,0x93,0x44,0x47,0xa2,0xb9,0x27,0xcd, + 0x59,0x56,0x8f,0x8c,0x83,0xcd,0xeb,0xa4,0x64,0x3b,0x5a,0x6b,0x75,0xcd,0x33,0x2d,0x57,0xde,0xb6,0xd4, + 0x90,0x04,0x04,0x8e,0xd3,0x3c,0x7f,0xa3,0xd6,0x05,0x36,0xd6,0x42,0x62,0x70,0xbb,0x01,0x16,0x9f,0xf7, + 0x0b,0x05,0x16,0xd1,0x49,0x61,0x83,0x45,0xd1,0xfd,0xdc,0xc8,0x7a,0x69,0xf0,0x46,0x40,0x93,0xb0,0xf6, + 0x34,0x6c,0x57,0x5c,0x85,0x2f,0x2c,0x70,0x19,0x09,0xa5,0x41,0x7d,0x1b,0x78,0x88,0x3c,0x84,0xc7,0xc1, + 0x80,0xe5,0x7e,0x6f,0xc0,0x70,0x7d,0xd4,0xb6,0x32,0x32,0x8d,0x37,0xdf,0x1c,0xef,0xfd,0x7e,0xae,0xc6, + 0xcb,0xee,0x0a,0xaa,0xf1,0xe6,0xdd,0xfb,0x06,0x8c,0x13,0x33,0xae,0x91,0x1a,0x58,0xf2,0xb1,0x70,0xec, + 0x97,0x66,0xe4,0x3a,0x2e,0x4c,0xd2,0x5c,0xe9,0x26,0xda,0xb5,0x8c,0x9b,0xc5,0xb2,0x6c,0x63,0xd4,0x0f, + 0xfa,0x99,0x1a,0x35,0x5b,0x0b,0x55,0xa3,0xce,0xba,0x0f,0xf4,0xd3,0x5a,0x03,0xaf,0xe5,0x5e,0x85,0xd3, + 0xea,0x00,0xca,0x52,0x24,0x3c,0xed,0x0c,0x37,0x98,0xfb,0xc6,0xd0,0x1a,0x54,0xa7,0x5c,0xdf,0x77,0x2c, + 0x42,0xd9,0x68,0x92,0x72,0x6b,0xfa,0x55,0x2d,0x04,0xa2,0xe1,0xf9,0x2c,0x2a,0x9b,0x50,0x1b,0xe4,0x8e, + 0x8d,0xc6,0x8a,0xed,0x8d,0xb1,0x47,0xdd,0x96,0x56,0x9a,0x92,0x99,0x4d,0x8d,0xaf,0x8f,0x69,0xe4,0xa2, + 0xb7,0x28,0x93,0x59,0x4f,0x3c,0x1c,0x6e,0x1d,0x6d,0xdb,0xe4,0xeb,0xcc,0xc1,0x1d,0xb3,0x6f,0xb0,0x07, + 0x5b,0x17,0x61,0x6b,0xa3,0xb5,0x09,0x6c,0xb6,0xd6,0xba,0x18,0x7f,0xba,0xb1,0x2d,0x8b,0xd2,0x3e,0x89, + 0x8d,0xb5,0x11,0x0d,0x93,0xe4,0x0f,0xd3,0x7f,0x0b,0x31,0x62,0x22,0xe5,0xc2,0xbf,0x35,0x01,0x2c,0x90, + 0x36,0x51,0xe8,0x85,0x07,0x39,0x27,0x0c,0x44,0xf9,0xf1,0x80,0xf3,0xc2,0x74,0x08,0xd7,0x5e,0x76,0xd6, + 0x06,0x6f,0x10,0x22,0x1d,0x36,0x03,0x5d,0xe7,0xec,0x0c,0x61,0x0d,0xf4,0x5d,0xbf,0x29,0xb6,0x3d,0x99, + 0x19,0xec,0xb5,0x58,0xad,0xdc,0x0f,0x16,0x64,0xe1,0x60,0x8b,0xfe,0xa5,0x1b,0xf9,0xb0,0xe3,0x5f,0x28, + 0x6e,0x79,0x43,0xb2,0x77,0x36,0xde,0x40,0x04,0xcc,0x77,0x98,0x81,0x6f,0x69,0x56,0x54,0x1a,0xa5,0xc5, + 0xbe,0x4d,0x20,0x36,0x57,0xb4,0xba,0x06,0x1a,0x17,0xe1,0x76,0x39,0x8d,0x9f,0x6e,0xbf,0x19,0xf3,0xff, + 0x15,0x37,0xa3,0xb8,0x1a,0x2c,0xcd,0xcd,0x98,0xc3,0x24,0xbf,0xbe,0x2e,0xe3,0x56,0xc2,0x64,0x1b,0x46, + 0x3f,0xda,0x8e,0xd1,0x8f,0x86,0xda,0x82,0xc2,0x42,0x5a,0xd9,0x86,0xa5,0x51,0xe5,0xac,0xa2,0x69,0x16, + 0x04,0xd3,0xea,0x01,0xec,0x53,0x0e,0x87,0x78,0xda,0x87,0x6d,0x10,0x87,0x18,0x81,0x37,0x07,0x65,0xc4, + 0x01,0x7b,0x9b,0xea,0x37,0xa2,0x87,0xd2,0x0f,0x8e,0x8d,0xea,0x4a,0x45,0x0e,0x8b,0x2a,0x16,0x48,0xe9, + 0x07,0x2c,0x90,0x52,0xb1,0x40,0x92,0x3a,0x9e,0xdf,0x92,0x7f,0x34,0x54,0xbd,0xb1,0xe1,0x91,0x82,0x47, + 0xc4,0x9f,0xe7,0xf8,0xa2,0x0d,0xb4,0x63,0xcb,0x11,0xee,0x40,0x3a,0x35,0x49,0xc2,0x56,0x94,0xb3,0xa5, + 0xc1,0x1a,0x8e,0x68,0xb6,0xd4,0x8a,0x6e,0xfe,0x54,0x43,0x5b,0x50,0x4d,0xdb,0xd0,0xb7,0x23,0x1a,0xe9, + 0xf9,0x7f,0x23,0x9a,0x69,0xbe,0x00,0x6d,0x41,0x32,0x2d,0xc5,0x2a,0x14,0x63,0x2f,0xdf,0x9d,0x08,0x26, + 0xfd,0x48,0x04,0x53,0x6b,0xf4,0x4e,0xf4,0x22,0xa5,0xef,0x46,0x2e,0x0d,0xf9,0xed,0x7f,0x39,0x6a,0x49, + 0xef,0x46,0x2d,0xe9,0xff,0x45,0x2d,0x1f,0x8b,0x5a,0x52,0x83,0x5a,0x94,0xf6,0x87,0x18,0x12,0x28,0xd1, + 0x4f,0x42,0xc4,0x9e,0xb5,0xb0,0xfe,0x8f,0x1e,0xad,0x73,0xb4,0x8c,0x92,0x59,0x74,0x9e,0xcc,0x12,0xe4, + 0x87,0xb7,0xf5,0xdb,0x32,0xb8,0xa9,0xbd,0xfe,0x05,0xe7,0xd8,0x1a,0xd6,0xe2,0x9d,0xcd,0xec,0xd8,0xba, + 0x5a,0x07,0xaf,0xef,0x5e,0xc0,0xe3,0xca,0x92,0x4e,0x00,0x65,0xec,0xed,0x29,0xb0,0xbb,0xd0,0x29,0xda, + 0x46,0xb2,0xe7,0x78,0x3c,0xaf,0x58,0x37,0x26,0x31,0x94,0xda,0x46,0x7d,0x43,0xb5,0xab,0x31,0x3b,0xbb, + 0xa2,0xb9,0x7a,0x4b,0xb0,0x1a,0x6c,0x13,0xb5,0xa2,0x08,0x1c,0xcf,0xa4,0xe1,0xc5,0x96,0x26,0xd3,0x5a, + 0x93,0xe5,0x66,0x7b,0x9b,0x2f,0x63,0xf6,0x9b,0xcf,0xff,0x0a,0x20,0x8c,0x95,0xc6,0xaa,0x6a,0x3e,0xa9, + 0x38,0x2a,0x62,0x5c,0x88,0x0f,0xd5,0x00,0x9a,0x34,0xa9,0xf5,0xd8,0xe6,0x56,0xd6,0xeb,0xca,0x76,0xe2, + 0xc3,0x73,0x1c,0x7d,0xda,0x24,0x37,0x58,0x9c,0xa4,0x8d,0x31,0x4b,0x0c,0x8b,0x93,0xd8,0xd3,0x4c,0xc0, + 0x98,0x29,0xa7,0x1f,0xf5,0x69,0x66,0x16,0x83,0x96,0x61,0x9e,0xc6,0xa2,0x2d,0xdb,0x98,0xa7,0x9f,0x9a, + 0x99,0xe6,0x9f,0x32,0xd3,0xf8,0xd3,0x67,0xaa,0xdc,0x18,0xd6,0xc7,0x9a,0x33,0xfb,0x54,0xfa,0x46,0xe3, + 0x37,0xdf,0xe0,0x1e,0x3f,0x7e,0x54,0xe3,0xff,0x5e,0x18,0x33,0x5c,0x71,0xac,0xed,0xf4,0xc6,0x16,0x74, + 0xb5,0xf0,0xbb,0x1f,0x3b,0x8f,0x96,0xb3,0xf7,0xdf,0x3b,0x8f,0xf4,0xee,0x79,0xc0,0x74,0xfa,0x7d,0x92, + 0xba,0x67,0xf8,0x34,0xb6,0x80,0xae,0x83,0x73,0xce,0x11,0x17,0x46,0x2a,0xfe,0x3a,0x3b,0xfb,0xba,0xa8, + 0xc2,0x82,0xb9,0xd7,0xe2,0xf7,0xf0,0x5a,0x5f,0xa2,0x46,0x65,0x40,0x0c,0xa7,0x5e,0x81,0x18,0x7a,0x57, + 0xe6,0x54,0x75,0x4a,0xd8,0xb2,0x9f,0x8b,0x0d,0x55,0xde,0x53,0x51,0xbf,0x81,0x1d,0x15,0xa6,0x0b,0x9d, + 0xbf,0xf7,0x1e,0xf4,0x1e,0x3a,0x7e,0x9b,0x39,0x97,0x44,0x64,0xde,0xdb,0x53,0x91,0x99,0x7f,0x46,0x44, + 0x99,0xea,0xbb,0xb7,0x28,0x62,0xf7,0x15,0x21,0x67,0xa5,0x36,0x64,0xac,0x5c,0x6e,0xe3,0x34,0xb8,0xe5, + 0x20,0x98,0x81,0xf3,0xae,0x8c,0x92,0xbc,0x70,0xfc,0xe2,0xa6,0x28,0xe3,0xab,0x17,0xcf,0x29,0x85,0xbf, + 0x3a,0x2f,0x9e,0x3b,0xfe,0x24,0xc9,0xaf,0xae,0xa3,0x3c,0xfe,0x59,0xc6,0x12,0x38,0xdf,0xa8,0x84,0x8e, + 0x1a,0x5d,0xd0,0x41,0x48,0xcb,0xf9,0x8d,0xc4,0xc1,0x70,0x9e,0xe9,0xcf,0xce,0xff,0xfc,0x7f,0x3a,0xf7, + 0x0f,0x8f,0xfe,0xde,0x79,0x15,0xe5,0x97,0x9d,0x65,0x94,0x76,0x7e,0x8c,0xd3,0xe2,0x3a,0x5b,0x8c,0x63, + 0xc4,0xb9,0x8c,0xe0,0x24,0x2b,0x70,0xde,0xce,0x62,0x58,0x11,0x72,0x6c,0x82,0x8e,0x4a,0xed,0xc8,0x42, + 0xa9,0xd0,0xec,0xbd,0x5e,0xcf,0xf1,0xf3,0xf8,0x9c,0xae,0xf8,0xb7,0x71,0x2a,0xb5,0x8e,0x2f,0xe2,0x8e, + 0x8c,0x96,0xe6,0x3f,0x9b,0x75,0xce,0xe3,0x8e,0x94,0x88,0xc7,0x7e,0x67,0x2e,0x4d,0xe6,0xf1,0x24,0x8f, + 0x8b,0x0b,0xc6,0xe3,0x9d,0x39,0x4d,0xba,0x13,0x4d,0x88,0x9c,0xa2,0xa1,0x8f,0x69,0xae,0xbc,0xf1,0x4f, + 0x39,0x26,0x47,0xe0,0x3c,0xc1,0x8f,0x5a,0xda,0xbb,0x68,0xc9,0x1d,0xc9,0x5f,0x1e,0xc2,0x75,0x32,0x49, + 0x68,0xa5,0xca,0x45,0x11,0xdc,0x46,0x23,0x38,0xa0,0x9c,0x67,0x49,0x5a,0x9a,0x55,0x7c,0xf2,0x16,0x2b, + 0x31,0x4e,0x8a,0xe8,0x9c,0xae,0xa0,0xc0,0x79,0xae,0xbe,0x88,0x04,0x61,0x1f,0x18,0x59,0x8a,0xe8,0x74, + 0xa6,0xf8,0x2f,0xc9,0x37,0xc9,0x96,0x0a,0x7e,0x82,0x38,0x24,0xce,0x8b,0x31,0x5e,0x7f,0xd3,0xec,0xdd, + 0x3b,0xde,0x12,0xfa,0xb7,0x03,0xc3,0xd3,0x49,0x46,0x50,0x40,0x9b,0x35,0x8a,0x52,0xc4,0x97,0x80,0xcd, + 0x06,0x55,0x7e,0x47,0x3f,0x3b,0x23,0xfd,0x1b,0x3b,0x92,0xa6,0x04,0xab,0xdf,0xd0,0x8d,0x8c,0x6c,0xf9, + 0xdb,0x29,0xb3,0x8e,0xca,0x30,0x25,0x68,0x5c,0x2f,0xb3,0x82,0x37,0x4e,0xff,0xa6,0x7d,0x28,0x4a,0x1e, + 0x99,0x2a,0xa3,0x46,0x67,0x7e,0x21,0x74,0x47,0xa1,0x96,0xa2,0x8c,0xce,0x8f,0x0d,0x18,0x51,0x8a,0xe3, + 0xab,0x09,0x3e,0x93,0xf8,0x2f,0x9d,0x42,0x25,0xd3,0xcd,0xfc,0xae,0x8c,0xe7,0xc5,0x71,0xbe,0x40,0xe1, + 0xb8,0xec,0xe0,0x9d,0x00,0xe1,0xe5,0x6f,0x68,0x4e,0x39,0x1b,0x08,0x14,0x28,0x50,0x15,0xfd,0x06,0x5a, + 0xab,0xcd,0xb2,0x70,0xaf,0xb6,0x4c,0xc6,0x0b,0xc4,0x98,0xa0,0xb5,0x25,0x62,0x06,0xb1,0x25,0x6a,0x23, + 0x39,0x56,0x69,0x18,0xcb,0x55,0xac,0x13,0xe9,0x53,0x12,0x5e,0xe0,0x7d,0x22,0x25,0xc4,0xa3,0xa1,0x8f, + 0x96,0x15,0x76,0x2f,0x51,0xd9,0x41,0x76,0x47,0x37,0xd9,0x51,0xb6,0x28,0x9d,0x28,0xe5,0xfe,0x51,0xa7, + 0x53,0x2d,0x5b,0x4f,0x5a,0x7b,0x9d,0x71,0x44,0x62,0xe7,0x75,0xd6,0xa8,0xad,0x8e,0x6a,0xe7,0x26,0x2e, + 0xa5,0xe4,0xd7,0xa9,0xda,0x69,0xf9,0xa8,0x17,0x57,0x63,0x85,0x10,0x9b,0xfd,0x5f,0x61,0xb8,0x98,0x89, + 0xfe,0x2d,0xa5,0x93,0xb4,0x73,0x45,0x00,0x9f,0x14,0x31,0x8d,0x63,0xac,0x2a,0x3d,0x19,0x53,0x9b,0xf4, + 0x8f,0xfc,0x7a,0x2e,0xe1,0x81,0x1c,0xf9,0xab,0x9b,0xe5,0x4e,0x1a,0x03,0x50,0x15,0xbe,0x49,0xde,0xc7, + 0x63,0xe9,0x8e,0x3f,0xb9,0x27,0xc9,0x7a,0xb7,0x48,0xf3,0x84,0xb7,0x40,0x3e,0x4c,0x6a,0x81,0xd5,0x93, + 0xbf,0x7a,0x91,0xaf,0xd4,0x1a,0xcb,0x18,0xd3,0x45,0x19,0xab,0xe1,0xbd,0xa2,0x91,0x46,0x37,0x81,0x23, + 0x7f,0x55,0xf1,0x45,0x5c,0x70,0xa2,0xfa,0x90,0xd4,0x5f,0xe2,0x71,0xaa,0xd2,0xcd,0xa7,0x2a,0x7f,0xb1, + 0xc8,0x55,0x05,0xf5,0xa5,0xc6,0x9e,0x27,0x9c,0x2a,0x7f,0xd5,0xf0,0x08,0xde,0x72,0x4e,0xd5,0x5f,0x66, + 0xd8,0x92,0xba,0x90,0x71,0x5c,0x65,0xb2,0xce,0x0c,0x1d,0xaf,0xf8,0x87,0x4e,0xb4,0xf6,0x54,0x12,0xb6, + 0xec,0xaa,0x64,0x36,0xf7,0xb5,0x51,0xa5,0x51,0xec,0xf9,0x02,0xe4,0xf7,0x71,0xb5,0x2b,0xb4,0x77,0xb8, + 0x54,0xe8,0x22,0xe8,0x20,0x54,0x50,0x27,0x99,0x74,0xa2,0x1a,0x6c,0xc0,0x86,0x26,0x9a,0xe5,0x71,0x34, + 0xbe,0xe9,0x44,0x62,0x8b,0xae,0x07,0xff,0xa9,0xe0,0xa2,0xab,0x6d,0x01,0x07,0xc9,0xae,0xe0,0x49,0x7e, + 0x37,0x21,0x4a,0x52,0xdf,0x26,0x84,0x39,0xbf,0x7d,0xfb,0xe2,0x4d,0x67,0x4e,0xdd,0xb8,0x32,0xb0,0xce, + 0x05,0xa1,0x7e,0xcf,0x54,0x94,0xfb,0x12,0x28,0xf6,0xdd,0x75,0x1c,0xcf,0xe9,0x20,0x25,0x57,0x91,0xbd, + 0xd0,0xa6,0xc4,0x6b,0xeb,0x3b,0x9a,0x61,0xe5,0xd3,0x98,0x1a,0xd5,0x38,0xa1,0x83,0xb3,0x09,0xa4,0x1f, + 0x5d,0xc9,0xb9,0xd9,0xec,0xe3,0x38,0x9b,0x3f,0x47,0x84,0x2c,0x87,0x3e,0x3a,0x88,0x95,0xb5,0x51,0xe2, + 0x69,0x46,0xa8,0xfd,0xea,0xa7,0x79,0xe0,0xc8,0x57,0x67,0x31,0x77,0xd6,0x16,0x1e,0xb4,0x51,0x48,0x85, + 0x0d,0x2b,0x84,0x56,0x21,0x48,0x7e,0xeb,0x8b,0x4b,0xde,0x5c,0xfb,0x2e,0xd0,0x10,0x20,0x69,0x1d,0x4e, + 0xac,0x95,0xf8,0x8e,0x4b,0x3d,0x99,0xcd,0xb2,0xeb,0x42,0xb0,0x9e,0x72,0x30,0x60,0xe1,0x95,0xce,0x24, + 0xa7,0xb1,0xdd,0x64,0x8b,0x9c,0x80,0x6d,0x99,0x8c,0x62,0xa0,0x6d,0xbe,0xc5,0xe4,0xa2,0x56,0x6e,0x8d, + 0xb8,0x7a,0xed,0xa6,0xec,0xcc,0x17,0xf9,0x3c,0x2b,0xe2,0xa2,0xd7,0xc1,0x05,0xa9,0x4a,0xd7,0x8b,0x00, + 0x94,0x84,0x4d,0xa3,0x16,0xe8,0xf7,0x45,0x59,0xce,0x83,0x83,0x83,0xa3,0xaf,0xee,0xf7,0x8e,0xbe,0xf8, + 0xb2,0x77,0xd4,0x7b,0x78,0xd0,0xb9,0xbe,0x20,0x28,0xa4,0xfe,0x3b,0xb8,0xe5,0x0d,0xd2,0xc7,0x28,0x92, + 0x92,0x9a,0x66,0x16,0xa3,0xec,0x64,0x13,0x82,0xd3,0xa2,0x53,0x64,0xf0,0x1d,0x53,0x74,0xd4,0x1d,0x87, + 0xc1,0xc5,0xe8,0x45,0x77,0x8b,0x1b,0x99,0xb2,0xa9,0x02,0x25,0xb2,0xe3,0x84,0x78,0x84,0x54,0xc0,0x66, + 0x94,0xde,0xd0,0xcd,0x7f,0xd3,0xeb,0xfc,0x8b,0x3a,0xc3,0x05,0x16,0xcd,0xe8,0x67,0xd1,0x31,0xfc,0x57, + 0x47,0x68,0xa5,0x0e,0x04,0x05,0x18,0xed,0xf9,0x4d,0x07,0x4a,0x92,0xa0,0x11,0x00,0x0d,0xf6,0x32,0x77, + 0x54,0x80,0xad,0x45,0x5a,0x26,0x33,0xce,0x7d,0xf9,0xf5,0xf3,0xce,0x0c,0x94,0x48,0x41,0x1b,0x4d,0xc8, + 0xda,0xbe,0x85,0xf5,0x46,0xd9,0xa3,0xae,0x95,0x90,0x8d,0x52,0x5b,0xde,0xb6,0xfa,0xb4,0x1a,0xbc,0x45, + 0x04,0x68,0x1d,0xdc,0xe5,0x9d,0x9c,0xdd,0x7e,0xf5,0x3a,0xea,0x4e,0xe1,0xb0,0x6e,0x3c,0x0e,0xdc,0xdc, + 0x44,0x95,0x44,0x05,0x11,0x3f,0xf9,0x98,0x26,0x3d,0x26,0xa2,0x36,0xa7,0x9c,0xe6,0xf6,0x9d,0xc7,0x04, + 0x16,0x18,0x68,0x91,0x8c,0xe5,0xc2,0x77,0x7c,0x5d,0x8d,0xee,0x2a,0xf5,0x45,0x17,0xf3,0xc5,0x88,0x60, + 0xf8,0x27,0xea,0xe4,0xf9,0x77,0xcf,0xde,0xca,0x6f,0x05,0x58,0x0b,0x02,0x6b,0xf8,0xdb,0xc2,0xe5,0x48, + 0xcb,0x5e,0x24,0xd3,0xb4,0xc0,0xf5,0xf5,0xe2,0x6d,0x47,0x85,0x80,0x6f,0x07,0x26,0xd9,0x02,0x22,0xce, + 0xcf,0x69,0x59,0xb0,0x29,0xb4,0xa0,0x54,0xf0,0x12,0x87,0x56,0x36,0x02,0x2b,0x3b,0x43,0x7d,0x00,0x06, + 0x4c,0x99,0x08,0x4c,0xe8,0x50,0xd2,0xaf,0x7b,0x04,0x25,0xe3,0x0c,0x64,0x12,0x51,0x2e,0x73,0xd5,0x0d, + 0x91,0x2f,0xa6,0x4b,0x9a,0xd1,0xe2,0x9c,0xee,0xce,0xab,0xa8,0xb8,0x04,0xfa,0xc5,0x77,0x07,0x3f,0x1c, + 0x7f,0x4a,0x58,0xef,0x1a,0x48,0xf9,0x5b,0xf9,0x70,0xfc,0x0b,0xa2,0x3d,0xc4,0xae,0xf4,0x3b,0xf5,0x55, + 0xa5,0xbd,0xad,0x7c,0x17,0x03,0x1b,0x89,0x29,0x29,0xb5,0x34,0x32,0x3d,0xad,0x15,0x11,0x5b,0xa3,0x4b, + 0x38,0x85,0x28,0xa9,0x72,0x6e,0x91,0x02,0x1d,0xa8,0x72,0x5e,0xe4,0x59,0x4a,0x54,0x17,0xaf,0xbe,0xfb, + 0xfa,0xf8,0x2d,0x61,0x15,0x42,0x66,0x85,0x2a,0xf6,0x1d,0x91,0x8a,0x4c,0xe9,0x52,0x5a,0x86,0x30,0x99, + 0x57,0xd1,0x5c,0xe7,0x7d,0x9b,0x65,0x53,0x82,0x82,0x57,0x94,0xd2,0x79,0xf2,0xf6,0x45,0x45,0x27,0xab, + 0x7c,0x43,0x25,0x0b,0x77,0xc0,0xbd,0xbf,0x83,0xbb,0x59,0x1a,0x39,0x75,0xd4,0x61,0xd7,0xb3,0x39,0x27, + 0x33,0x39,0xb2,0x04,0xd2,0xfb,0x51,0x91,0xac,0x89,0x4a,0xe9,0xb8,0xd5,0x5d,0xea,0x71,0xd9,0x97,0x11, + 0xed,0x32,0xfd,0x93,0x94,0x4c,0x46,0x23,0x05,0x64,0xea,0xcb,0x2c,0x9d,0x5a,0x49,0xc4,0x62,0x0a,0xd6, + 0xfd,0x96,0x16,0x7a,0xa6,0x4a,0x77,0x0e,0x88,0xae,0x53,0xc5,0x04,0xc5,0xcc,0x54,0xb9,0x5a,0xa5,0x77, + 0x71,0x94,0x8f,0x2e,0x40,0x74,0xe1,0x2f,0xaf,0x07,0x1d,0x24,0x22,0x6e,0xe9,0x96,0xe2,0xd3,0xf6,0x96, + 0x4f,0x9b,0x50,0x75,0x7c,0xc6,0x18,0xfd,0x77,0x1f,0xf4,0x1e,0x2c,0x3d,0x5d,0xfc,0xdd,0xf1,0x13,0xa1, + 0x07,0xb1,0xb0,0xaf,0x80,0x11,0x3e,0x50,0xfe,0xc9,0x5b,0x4d,0x87,0xab,0x43,0x59,0xeb,0x48,0x1d,0x6b, + 0xfb,0x8e,0xa1,0x53,0x22,0x35,0xdf,0xfe,0xf2,0xea,0x79,0x4e,0x29,0xf9,0xbb,0xe7,0xd4,0xdf,0xdb,0x67, + 0x4f,0xbe,0xfa,0xe2,0xcb,0xcf,0x3b,0x94,0xda,0x19,0x73,0x72,0x87,0xd2,0xa5,0x26,0x74,0x82,0x9b,0x75, + 0x9e,0xbd,0x6c,0xaf,0xf3,0xec,0xa5,0xd4,0x19,0xc1,0xf9,0x28,0x2a,0x5d,0x5f,0x3d,0xd1,0x40,0xdd,0x52, + 0xfe,0xc5,0xff,0xfc,0x7f,0x9f,0x55,0x90,0x4e,0x85,0xbf,0x01,0xd9,0x18,0xa7,0xa3,0x9b,0xd6,0xe2,0x13, + 0x9d,0x2b,0xe0,0x44,0xb0,0xf3,0x43,0x7c,0xb3,0x01,0x4f,0x74,0xf2,0x6a,0x05,0x2e,0xf8,0x78,0xff,0x18, + 0x8b,0x27,0xbe,0x31,0xd0,0xe7,0xa4,0xb3,0x28,0x18,0x11,0xda,0x54,0x64,0xaf,0x43,0x68,0x61,0xcc,0x57, + 0xc3,0x2c,0xcb,0x2e,0x91,0xbf,0x98,0x33,0x16,0x52,0xe1,0x18,0xb9,0xf8,0x1f,0x74,0xb9,0xf6,0x08,0x6b, + 0xd1,0xed,0x4a,0x18,0xe5,0xb2,0x83,0xf8,0x70,0x04,0xe0,0x40,0x14,0xaa,0x6f,0x1f,0xeb,0xde,0x51,0x83, + 0xba,0x62,0x76,0x0e,0x02,0xd9,0x92,0x60,0x5b,0xd0,0x1e,0xcf,0xa2,0xa0,0xeb,0xe0,0x47,0x62,0x5f,0x0b, + 0xa0,0x3a,0xb9,0xcd,0x68,0x7a,0xb1,0x6e,0x04,0x97,0xb6,0xba,0x5f,0xb4,0x13,0x3b,0xba,0xd0,0x08,0xc9, + 0xcd,0x31,0xd2,0x29,0x37,0x0e,0x86,0xf9,0x80,0x71,0x62,0xa4,0x89,0xa0,0xa4,0xbc,0x47,0x18,0xbb,0x90, + 0x0b,0x0e,0x43,0xd7,0x8b,0xd2,0x43,0xfc,0x4a,0x88,0x7f,0x83,0x5b,0x70,0x8a,0x86,0x23,0x7d,0x06,0xff, + 0x86,0x7c,0xb7,0x20,0x99,0x4e,0x8f,0xc8,0xaf,0x01,0x7b,0xd1,0x39,0xe6,0x55,0x1a,0x76,0x51,0x38,0xcf, + 0xea,0x26,0xdf,0xa8,0x6c,0x5d,0xc3,0x44,0xdb,0x96,0x70,0xe4,0x2c,0x75,0x04,0x8b,0x6c,0x94,0x57,0x5c, + 0x68,0xbd,0xac,0x45,0xdc,0x15,0x1b,0x35,0x6a,0x94,0x5d,0xbd,0xde,0x2b,0x9b,0x3a,0xdb,0xac,0x59,0xa7, + 0x2b,0xad,0xba,0xcc,0xb8,0xb6,0x4f,0xaa,0x80,0x79,0x75,0xeb,0xa4,0xb8,0xd2,0xe6,0xac,0xb8,0xc2,0xc6, + 0xac,0x04,0x8b,0xe1,0x9e,0x53,0x2c,0xb0,0x55,0x23,0x8f,0x69,0x44,0xb4,0xaf,0x72,0x0d,0x6a,0x76,0x6f, + 0x31,0xc7,0x98,0x35,0x1a,0xa4,0xb3,0x8d,0x8d,0xeb,0x70,0x68,0xc1,0x8e,0xe4,0x01,0x38,0x35,0xd6,0xd4, + 0x3d,0x30,0xdb,0x67,0x37,0xce,0xa3,0xe4,0x97,0x0a,0xd0,0x81,0xe2,0x6d,0x09,0x17,0x0a,0x63,0xa7,0x0a, + 0xd1,0xd9,0x2b,0x95,0x5d,0x02,0xe6,0x35,0x72,0xa3,0xc9,0xd3,0xa5,0x99,0xa4,0x11,0xf3,0x23,0xdc,0xdc, + 0xb6,0xed,0xe1,0xa9,0x6f,0xd9,0x1e,0xae,0xb8,0x7d,0x7f,0xb8,0xea,0xb6,0xfd,0x21,0x6e,0x39,0x9d,0x19, + 0xc6,0x9f,0x68,0xf4,0xf9,0x86,0xac,0xe5,0xe3,0x84,0x2d,0xf1,0x5f,0x93,0xb5,0x7c,0x4d,0x64,0x5d,0x36, + 0x8d,0xd3,0xf3,0x59,0x72,0xd9,0x99,0xc6,0x74,0xef,0x13,0x6d,0x76,0x1e,0xff,0x91,0x4c,0x3b,0x57,0x7c, + 0x51,0x8c,0xa9,0xc0,0x92,0xe5,0x08,0x86,0x2c,0x89,0xdb,0xc4,0x2f,0xdf,0x51,0xe9,0x42,0x0d,0x1b,0x24, + 0x09,0x11,0x83,0xf3,0x34,0x89,0x17,0xd7,0xf4,0x77,0x1a,0x4b,0xec,0x20,0x8c,0x18,0x83,0x26,0xda,0x20, + 0xfe,0x23,0x86,0x00,0x86,0xf6,0xa0,0x93,0xd2,0x50,0xe2,0xb4,0x21,0x7e,0x39,0xce,0x62,0x90,0x39,0x8d, + 0x74,0x2d,0x82,0x79,0x6a,0x06,0x98,0xcd,0x8b,0x59,0x14,0xa5,0x7f,0x4a,0x1a,0xf3,0x53,0x52,0xd2,0xc8, + 0x46,0x17,0xd1,0x65,0x3c,0xfb,0x78,0x91,0x4c,0xbd,0x96,0x92,0xcb,0xbc,0xa3,0x41,0xcc,0xe1,0x7c,0x64, + 0xdc,0x94,0xce,0x24,0x34,0xc8,0x69,0xbc,0x24,0x56,0x0b,0x73,0x69,0x93,0xd0,0x44,0x13,0x82,0x8c,0x2c, + 0xdd,0x14,0xd0,0xfc,0x40,0x99,0xd3,0x18,0xeb,0x1f,0xe7,0x2a,0x7e,0x00,0x11,0x36,0x97,0x68,0xa7,0x29, + 0xa8,0xf9,0xb9,0x2a,0x41,0x85,0x67,0x59,0x8e,0x42,0x75,0x61,0xcd,0x6b,0x8c,0x04,0x2d,0xc9,0x50,0x3e, + 0x46,0x5c,0xf3,0xdd,0x22,0x19,0x27,0xd3,0x78,0x8b,0xb8,0x86,0x38,0x16,0x9c,0x8a,0x18,0x10,0x82,0xfd, + 0x9c,0x4d,0x40,0xe5,0x2b,0x99,0x4c,0x9c,0x94,0x1b,0x32,0x9b,0x63,0x29,0xab,0x85,0x35,0x71,0x3c,0x63, + 0x8f,0x2d,0x31,0xb5,0x93,0x7e,0x9a,0xd4,0xe6,0xf7,0x71,0x53,0x6a,0xf3,0x92,0x61,0xa1,0x43,0xf8,0xa2, + 0xb3,0xcc,0x70,0x47,0x50,0x99,0x8a,0x41,0x8f,0xe3,0x4a,0x5a,0xb3,0xac,0x2d,0x55,0x0c,0x8f,0x7b,0x49, + 0xb1,0x21,0xb7,0x99,0xca,0xca,0xd7,0x9b,0x99,0xc6,0x86,0x83,0x89,0xf3,0x71,0x43,0x80,0x73,0x5c,0x2b, + 0x4a,0x13,0x13,0x10,0x89,0xd3,0x0f,0x4b,0x71,0x62,0xe9,0xa3,0xce,0x95,0xeb,0x4a,0xcc,0x75,0xd3,0x51, + 0x58,0x66,0xf1,0x54,0xa7,0x69,0xce,0x9b,0xb6,0xfc,0x9a,0x6a,0xc6,0x79,0xd5,0x43,0x9d,0x83,0x87,0x04, + 0x21,0x9e,0x6c,0xc8,0x73,0x7e,0x8e,0x8a,0x52,0x3a,0x6d,0xc8,0x73,0x7e,0xc5,0x7d,0x3c,0xbf,0xcc,0xae, + 0x8a,0xb2,0x2e,0xd3,0xe1,0x0c,0xa8,0x22,0x4f,0x23,0xa8,0xb5,0xda,0xa2,0x1d,0x3d,0x72,0x90,0xa3,0x69, + 0x43,0xb4,0x43,0xc7,0x72,0x1c,0x4d,0x1b,0xb2,0x9d,0xe7,0xb4,0x30,0x26,0xd5,0x96,0xed,0x64,0xb1,0x95, + 0x51,0x89,0x76,0x9e,0x73,0xc7,0x26,0x43,0xcb,0x76,0x7e,0xce,0xa9,0x6b,0x9d,0x58,0x09,0x77,0x7e,0x25, + 0x8c,0x5e,0x15,0xd6,0xc2,0x9d,0x5f,0x33,0x19,0x48,0x4d,0xb8,0xf3,0x34,0xbe,0x8e,0xa7,0xac,0xa6,0xdb, + 0x14,0xef,0xa8,0xad,0x3f,0x57,0x05,0xb6,0x6f,0x7f,0x43,0xd2,0xf3,0x74,0xa3,0x42,0x0d,0x08,0xee,0x12, + 0xf8,0xbc,0xa1,0x3b,0xca,0xaa,0x40,0x7c,0x2f,0xc1,0x2d,0x44,0xa0,0x9d,0x26,0x20,0x32,0x59,0x14,0x4f, + 0x08,0x6c,0xef,0x92,0xf9,0x6c,0x05,0xae,0x76,0x99,0x8f,0x86,0x18,0x4b,0xe4,0x63,0x01,0x5f,0x5d,0xf0, + 0x53,0x03,0xbf,0xad,0xd2,0x1f,0x1a,0xe5,0x05,0xd1,0x74,0x6d,0xd2,0x9f,0x27,0x22,0xf7,0x89,0xef,0x14, + 0xfb,0x7c,0x8b,0xf9,0x43,0xec,0x63,0xb0,0xcd,0x34,0x9e,0x25,0xbf,0x5f,0x62,0x6a,0x49,0x4b,0xd3,0x46, + 0xe8,0xf3,0x34,0x83,0xe8,0x2c,0x8d,0xa2,0x9c,0x36,0x33,0x8d,0xad,0x89,0xb7,0x89,0x7f,0xa4,0x84,0x2a, + 0x8e,0x9a,0x5b,0xe5,0x40,0x15,0xb2,0x35,0x98,0xd2,0xc2,0xbf,0xf6,0x45,0xd9,0x90,0x04,0x3d,0xb1,0x65, + 0x13,0x35,0xe0,0xb0,0x8a,0x09,0x59,0x4f,0xa7,0xe7,0x92,0x28,0x65,0x30,0xc5,0x99,0x4c,0xb7,0x43,0xdc, + 0x19,0x56,0x42,0x64,0x43,0x15,0x01,0x17,0xe3,0x7a,0x8e,0x26,0x9c,0x47,0x57,0x65,0x94,0x47,0x84,0x03, + 0x79,0x16,0x7c,0xc9,0x82,0xb4,0x30,0xf2,0x89,0x58,0xee,0x0f,0x34,0x35,0x8e,0xad,0x54,0x03,0xd7,0x88, + 0xee,0xd0,0x79,0x5e,0xaf,0x45,0x9c,0x3e,0x15,0xa1,0x15,0x8c,0x78,0xb7,0x3b,0xcb,0x24,0x6a,0x15,0x11, + 0x51,0x3e,0xf5,0xfc,0xbb,0x3d,0xb2,0x8b,0xf8,0x1c,0xb7,0xdf,0x15,0x26,0xd3,0xeb,0xbc,0x93,0xf9,0xca, + 0xb8,0x20,0xc5,0x21,0xaa,0x2f,0xc1,0x58,0x79,0x9e,0xf6,0x18,0xfc,0x0e,0x21,0x8f,0x29,0x5d,0xf2,0xea, + 0x6a,0x91,0x6b,0xf4,0x9c,0x08,0xca,0x64,0x96,0x4c,0xc7,0x40,0xd8,0x9d,0xef,0xe3,0xce,0xe5,0x82,0xd6, + 0xd1,0x6a,0x2d,0x6b,0x1c,0xa1,0x31,0x6e,0x02,0xdc,0x0a,0x86,0x7f,0x94,0xa5,0xbf,0x4c,0x29,0x91,0xe6, + 0x34,0xce,0x17,0x97,0x58,0x8e,0x32,0x2b,0x31,0xf4,0xb1,0xc8,0x87,0x22,0x5c,0xbb,0xb4,0x88,0x4d,0xf1, + 0x90,0xb5,0xc7,0xa0,0x3c,0x98,0xb2,0x55,0xd7,0xb1,0x55,0x4e,0xb6,0x4f,0x95,0xdd,0xdc,0x02,0x34,0x4e, + 0x4b,0x14,0xd3,0xb5,0xda,0x90,0x11,0xfd,0xbc,0x98,0x75,0x2e,0x12,0xa6,0x04,0xe8,0x88,0x63,0x45,0x98, + 0x80,0xa0,0x62,0xd7,0xd1,0xe8,0xa2,0xbc,0x06,0xc9,0x4a,0xb3,0xf3,0x91,0x62,0xe1,0x21,0x96,0x0f,0x97, + 0x0b,0x5e,0xd6,0x0e,0x81,0x6d,0x8e,0x0b,0x9b,0x97,0xa3,0xd8,0x2a,0x36,0xfa,0xc5,0x34,0xa8,0x05,0x47, + 0xdf,0xc6,0xe7,0xf9,0x82,0x28,0xc0,0x4a,0x78,0x74,0x51,0x13,0x1e,0xd1,0x9a,0x32,0x80,0xb1,0x00,0x87, + 0xb8,0x5a,0x5a,0xb2,0x98,0x8e,0xff,0x1f,0x80,0xb9,0x28,0xdd,0x98,0x26,0x31,0x92,0x04,0x80,0x54,0x29, + 0xf9,0x3d,0x65,0xd8,0xbd,0x4e,0x66,0x98,0xb6,0xb5,0x57,0xa8,0x06,0xcd,0x7c,0x9a,0x10,0xfd,0xf3,0x47, + 0xf2,0x3b,0xf2,0xaf,0x63,0x9a,0xf6,0x35,0x60,0x97,0x7e,0x5c,0xc5,0xb1,0xa2,0x44,0xcf,0xe1,0x80,0x6b, + 0x53,0x90,0x94,0xc7,0xdb,0xc5,0x48,0x90,0xa3,0xdc,0x2d,0x48,0x8a,0xae,0xb6,0x08,0x92,0xde,0x81,0x94, + 0xa3,0x71,0x8c,0xb5,0x28,0x09,0x7d,0x6d,0x15,0x24,0x35,0x25,0x49,0xbf,0x8f,0xeb,0x92,0xa4,0xf8,0x43, + 0x82,0xa4,0x08,0x26,0x0a,0x74,0x0e,0x08,0xae,0x18,0x41,0xfd,0x09,0x79,0xd2,0x79,0xf2,0xfb,0x75,0x9c, + 0x33,0x24,0x7e,0x8c,0x48,0xe9,0x67,0xa1,0xc2,0xdb,0x44,0x4a,0xa9,0x25,0x52,0x7a,0x4a,0xe0,0x35,0x2e, + 0xe3,0x29,0x21,0x94,0xb1,0x25,0x56,0xc2,0xb3,0xba,0x9d,0x68,0xf8,0x2d,0xbb,0x3c,0x04,0x4b,0x55,0x41, + 0xda,0xf2,0x8b,0x08,0x07,0x92,0x8e,0xdd,0x79,0x54,0x10,0x42,0x01,0x47,0x21,0xdc,0x58,0xdc,0x2a,0x69, + 0xfa,0x35,0x8b,0x79,0x3a,0x7f,0x5e,0xd2,0x64,0x31,0x9e,0x77,0x48,0x98,0x6a,0x2d,0xdb,0xe8,0x83,0xd1, + 0x84,0x7d,0x95,0x11,0x91,0x3f,0xfd,0xef,0x90,0x32,0x5d,0xce,0xb2,0xff,0x7f,0x09,0x99,0x9e,0x00,0x1b, + 0xe7,0xcc,0x0b,0x12,0xac,0x11,0x46,0x17,0x6c,0xb1,0xe4,0xa3,0x5f,0x27,0x92,0xe9,0xe8,0x33,0xf7,0xa7, + 0xca,0x94,0xea,0xae,0xb9,0x50,0xac,0x04,0xca,0x42,0xd4,0x24,0x57,0xca,0x1c,0x50,0x41,0x35,0x08,0x78, + 0x4b,0xc6,0xde,0x7f,0x08,0xf6,0x33,0x12,0xa7,0x2b,0xe0,0x02,0x35,0x44,0x2a,0xce,0xe5,0xc6,0xd4,0x2b, + 0xa4,0x4b,0x97,0x68,0x57,0xc9,0x9c,0x0a,0x2d,0x74,0x12,0x94,0x08,0x1a,0x01,0x17,0xb0,0x99,0x12,0x20, + 0xef,0xe3,0xc4,0x4e,0xc0,0x68,0x2c,0x52,0x54,0x48,0x98,0xb9,0x09,0x3d,0x61,0xe0,0xfd,0xf1,0xdd,0xc2, + 0x27,0x30,0x6e,0x8a,0x17,0x36,0x82,0x27,0x75,0x87,0xa9,0x93,0xb0,0x29,0x73,0x42,0x1d,0x8b,0x35,0x51, + 0x8c,0x11,0x23,0x85,0x96,0x9a,0x5a,0x46,0x63,0xf5,0x74,0x57,0x95,0xba,0x84,0x03,0x15,0x6b,0x34,0xe5, + 0x1d,0xb5,0x9b,0x62,0x0e,0xd4,0x6f,0x52,0xc8,0x1f,0x6a,0x63,0x43,0x1c,0xf5,0x11,0xf3,0x65,0xce,0xbe, + 0x21,0x94,0xba,0x6b,0xc2,0xaa,0xce,0xa6,0x6c,0x0a,0x15,0x6d,0x9c,0x50,0x1f,0x5e,0x53,0x32,0xf5,0x0d, + 0x8b,0x08,0x41,0xdf,0xa6,0x45,0x85,0x5e,0x19,0xe0,0xb7,0x88,0xa7,0x78,0x41,0x71,0x03,0x7e,0x60,0x54, + 0x4d,0x09,0xd5,0x0f,0x15,0x16,0xb4,0x44,0x52,0xa9,0xa6,0x76,0xe6,0xd6,0xd2,0xfd,0x89,0xdd,0xb3,0x97, + 0xef,0x4f,0x6f,0x9f,0x34,0xb2,0x5e,0xaf,0xab,0x10,0x26,0x2c,0xcb,0x79,0x32,0x9f,0xbb,0xde,0x2d,0xb4, + 0x89,0x2a,0xed,0x26,0x67,0x74,0x11,0x8f,0x2e,0x1d,0xff,0x56,0x87,0xe2,0x09,0xee,0x3d,0x22,0x56,0xbf, + 0x33,0x9a,0x11,0xe5,0x11,0xaa,0xdc,0x4e,0xa0,0x7e,0xde,0x76,0x38,0x81,0xf8,0x0e,0x91,0xe0,0xf9,0x1d, + 0x23,0x63,0x31,0x5f,0x9d,0xb5,0xd3,0xf9,0x07,0x1d,0x5f,0x3c,0xdd,0x86,0xce,0x05,0xdd,0xc9,0xb3,0x98, + 0x90,0x12,0xc8,0x7b,0xca,0x18,0xcd,0x92,0xd1,0xa5,0x4e,0x7e,0x86,0x1f,0x4e,0x87,0x6e,0x66,0xb6,0x9b, + 0x0e,0x9d,0x43,0xe7,0x71,0xad,0xf7,0x2c,0x2d,0xf3,0x6c,0x56,0x4f,0xe4,0xf8,0x39,0x94,0x74,0x40,0x69, + 0xfa,0x5f,0x2b,0x7b,0x16,0x9d,0xc7,0x54,0xe3,0xf6,0xb6,0xc3,0x64,0x7e,0x67,0xbd,0xb6,0x4b,0xde,0x33, + 0x1e,0x4d,0xf9,0x3a,0x56,0xbe,0x4a,0xc5,0x8d,0xa0,0x78,0x16,0x7c,0x9a,0x11,0xa2,0x89,0x52,0xe3,0xe1, + 0x74,0xe7,0x68,0x5d,0x09,0x92,0xb6,0x16,0x81,0xc3,0x1c,0x56,0xf7,0x0a,0x6e,0xad,0xa9,0x6d,0xf8,0x99, + 0xd5,0x0d,0xc1,0x69,0x1a,0x7e,0x73,0xc7,0xe1,0x4e,0xf5,0x2d,0x4a,0xbb,0xbb,0x84,0x83,0x68,0x6b,0x92, + 0x74,0x8e,0xd7,0xaa,0x2a,0x17,0xbe,0x33,0x6a,0x0b,0x5a,0x0b,0xc2,0xf8,0xe0,0x3e,0x3c,0x1e,0xd1,0xca, + 0xc3,0xf5,0xb9,0x76,0xc6,0x65,0x8d,0x06,0xfa,0x93,0x08,0x70,0x08,0xda,0x53,0x9b,0x2f,0x2a,0x1d,0xca, + 0x06,0x4c,0xd0,0xad,0x91,0x64,0x5b,0x61,0x42,0x72,0xb7,0xc2,0x44,0x27,0x0c,0x3b,0xc9,0xf8,0xff,0x28, + 0xc8,0x90,0xd0,0x36,0x63,0xf9,0xfb,0x5f,0x0c,0x0c,0xfc,0x49,0xeb,0xf7,0xbf,0x05,0x10,0x94,0xe7,0x1b, + 0x88,0xe9,0x55,0x18,0x8c,0xca,0xb9,0x54,0xb4,0x4c,0x88,0x38,0xcf,0xf2,0xde,0x8c,0x08,0x8b,0x45,0x34, + 0x8d,0x9b,0x9e,0x9e,0x1c,0x26,0x85,0xb5,0xdf,0x28,0xe3,0x67,0xc3,0xeb,0xab,0xe6,0xdc,0xdb,0x98,0x08, + 0xd9,0xbf,0x11,0x6e,0x23,0xb6,0x80,0x9a,0x0e,0x62,0x9f,0xfd,0x30,0xdd,0xa6,0x84,0xe8,0x26,0x89,0x42, + 0xb0,0xbc,0xc6,0x5a,0xd4,0xbd,0x73,0xe8,0x17,0x22,0x3e,0xde,0x39,0x52,0x5f,0x82,0xba,0xe9,0xa7,0x2a, + 0xf3,0x82,0xee,0xa2,0x11,0xc6,0x15,0x38,0x2b,0x7d,0x27,0xbc,0xcd,0xb3,0x29,0x93,0x60,0x54,0x4c,0x08, + 0x83,0xe3,0xe8,0x1c,0xc1,0x85,0x44,0x24,0xaa,0x15,0x1e,0x6f,0x2b,0xe1,0xbd,0x6a,0x8c,0x45,0xd2,0x3a, + 0xdb,0x4e,0x5c,0xd7,0x05,0xd5,0xf3,0xe0,0x36,0x56,0x02,0x18,0xea,0x22,0x21,0x66,0xec,0xb0,0xc7,0xff, + 0x55,0x12,0xe9,0x5a,0x09,0x25,0xb5,0x3d,0xac,0x17,0x5d,0xab,0xcb,0x85,0xfa,0x30,0xf7,0x0b,0xa2,0x39, + 0x56,0x32,0x55,0x08,0x86,0xec,0x76,0xca,0xba,0xcc,0x48,0x2c,0x55,0x75,0x71,0xf8,0xd9,0x13,0x51,0x49, + 0xad,0x4e,0xbc,0x4d,0x7a,0xb5,0xa5,0xbd,0x71,0x3c,0x23,0xfe,0x6b,0xa3,0xe9,0xba,0x60,0xc5,0x30,0x65, + 0x5c,0xce,0x16,0x98,0x60,0xcb,0x4a,0x33,0x17,0xe6,0x65,0xb9,0x8c,0xe1,0x64,0xa5,0x13,0x70,0xb0,0x3b, + 0xbc,0x1e,0xfc,0xdb,0xe2,0x08,0xf9,0xb7,0x66,0x03,0xd9,0x11,0x87,0x61,0xe1,0x2a,0x46,0x49,0x0c,0xa0, + 0x2d,0x06,0xe9,0x73,0x9f,0x10,0x95,0x02,0x1e,0x02,0x17,0xe9,0x92,0x2e,0x47,0xa2,0xf2,0xe2,0x31,0xf1, + 0x22,0x92,0x13,0x8f,0xc1,0x67,0xc8,0x98,0xe7,0x8a,0x97,0x90,0xa2,0xd7,0x57,0xe0,0x0a,0xcc,0x37,0x51, + 0xfb,0xd2,0xb5,0x45,0xcf,0xeb,0xcc,0x8a,0x64,0xe7,0x14,0x9b,0x30,0xa7,0xed,0xd7,0xf2,0x73,0xcc,0x4e, + 0x7f,0xb3,0xdf,0x92,0x00,0x0b,0x83,0x0c,0x38,0xc3,0x34,0xe4,0x04,0x18,0x44,0x25,0xe6,0xe5,0x9c,0x3c, + 0xc6,0x3b,0xff,0x32,0xd6,0x09,0xb4,0xec,0xec,0xad,0x73,0x23,0x84,0xb5,0x72,0x2b,0x58,0xf6,0xec,0xd3, + 0x83,0x5a,0x2a,0x12,0x97,0x09,0x56,0xc7,0xf8,0x0c,0xee,0xac,0x5d,0x87,0x3f,0x1d,0xed,0x78,0x50,0x69, + 0x17,0xeb,0xb1,0xc0,0x27,0xc8,0x85,0x76,0xfb,0x71,0x24,0xb1,0xd0,0xcb,0x9e,0x39,0x3e,0x26,0xc8,0x69, + 0x5e,0xbe,0x6c,0x9c,0x3c,0x98,0x0b,0xf7,0x9a,0xd4,0x1b,0x27,0x2a,0x14,0xc7,0x8b,0xc0,0x1e,0xcf,0x60, + 0xd3,0x81,0x78,0xa5,0xd6,0x59,0x96,0x31,0xef,0x1c,0xf5,0x1b,0xa6,0x05,0x6c,0x42,0x7d,0xd8,0xcf,0x1e, + 0x1d,0x3d,0x7c,0x48,0x7f,0xba,0xe1,0xd1,0xe7,0x9e,0xf2,0x67,0x9b,0x89,0x53,0x93,0x2c,0xdc,0xbf,0x8f, + 0xac,0x47,0xe1,0x7d,0x53,0x22,0x31,0x25,0xca,0x5e,0xb5,0xb2,0x61,0x4e,0x7d,0xd6,0x96,0x36,0x4c,0x28, + 0xc5,0x62,0x00,0x5c,0xaf,0x57,0x5e,0xc4,0xa9,0xed,0x97,0x4c,0xf2,0x2b,0xfa,0x77,0x6b,0x11,0xa1,0x73, + 0xb7,0x66,0xdb,0x64,0xe0,0xd6,0x42,0x75,0x62,0x6f,0x7b,0x57,0x58,0xb1,0xd6,0xdc,0xa2,0xcc,0xe6,0xad, + 0x1b,0xa3,0xb0,0x18,0xad,0xf0,0xda,0xb3,0xfe,0xab,0xee,0xa8,0xe2,0x22,0xbb,0x7e,0x6d,0xa3,0xe0,0x36, + 0x47,0xda,0x0c,0x6c,0x69,0x0d,0xd8,0xc2,0x5b,0x85,0xe3,0x09,0x91,0x0b,0x47,0x55,0xae,0x7d,0xf1,0x85, + 0x9a,0x6e,0x42,0xe5,0xde,0xde,0x88,0xee,0xc9,0x1c,0xdf,0x44,0xa7,0xbb,0x2d,0x25,0x10,0xe2,0x74,0x13, + 0x98,0x8b,0xb8,0xd4,0x75,0xac,0xf9,0x36,0x46,0x22,0xe8,0x60,0xcb,0x51,0x58,0xfb,0x9f,0xc7,0x0f,0x70, + 0x61,0x26,0xe3,0xb8,0x7d,0x9e,0xea,0x42,0x6e,0x69,0x92,0x67,0xb3,0x91,0xa9,0x26,0xe4,0xd6,0x66,0xd4, + 0x5e,0x4a,0x99,0x61,0xb5,0x8f,0xcc,0xdc,0xe2,0x84,0x3f,0xf8,0x5d,0xbd,0xe1,0xee,0x5e,0xb3,0xbd,0xb3, + 0x0c,0x21,0xc1,0x94,0xfd,0x81,0xe3,0x70,0x70,0x74,0x42,0x49,0x44,0xae,0x15,0xf1,0xc0,0xf9,0xee,0xf8, + 0xf8,0x6d,0x47,0xff,0xec,0x20,0x3a,0x64,0xc7,0xe9,0x56,0x05,0x7a,0xea,0xf2,0x41,0x0a,0xf3,0xdd,0x03, + 0xa8,0xc3,0xea,0x5c,0x27,0x30,0x21,0x33,0x64,0xa4,0x4d,0x68,0x80,0x3f,0x7c,0xb7,0xf4,0xba,0xce,0x69, + 0x7a,0x9a,0x3a,0xdd,0xdc,0xe7,0x70,0x0a,0x36,0xeb,0xfc,0x41,0xb3,0x8f,0xe8,0x7d,0x92,0xb1,0x8f,0x38, + 0xd7,0x39,0x88,0xe6,0xc9,0x81,0xba,0x5c,0x9d,0x26,0x08,0xb7,0xc5,0x84,0x2c,0x95,0xab,0x7b,0x1a,0x82, + 0xb6,0xa0,0x90,0x24,0x82,0xdf,0x9e,0x0a,0xee,0xd1,0xab,0x2f,0x60,0x0f,0xf4,0x22,0x1c,0xef,0x31,0x40, + 0xda,0x07,0xdc,0xf1,0xd4,0xb0,0x2d,0x86,0xf6,0x93,0x46,0x5e,0x5d,0x7f,0x9f,0x3a,0xf8,0xaa,0xe6,0x9f, + 0x19,0xbf,0xa5,0xc1,0xaa,0xa7,0xa0,0x18,0xeb,0x4f,0x1a,0xbe,0xd2,0x9b,0xf9,0xc4,0xa1,0x4b,0xad,0x3f, + 0x33,0x6c,0xa5,0xad,0xa7,0x87,0x5c,0xe3,0x85,0x3f,0x69,0xe0,0x9a,0x08,0x39,0x60,0x75,0xf6,0x96,0xf1, + 0xc3,0x45,0x57,0xfb,0x14,0x34,0xf2,0x32,0xe4,0x90,0x24,0xf7,0xd4,0xcf,0xd5,0x6a,0x93,0x04,0x52,0x25, + 0xea,0xa9,0xab,0xd5,0x61,0x8d,0x16,0xda,0xf4,0x3e,0x66,0xaa,0x49,0x21,0xcf,0x8e,0xc3,0xdd,0xcf,0x1f, + 0x35,0xb2,0x4d,0x30,0x6e,0x3b,0x6e,0x7a,0xad,0xc4,0x49,0x3e,0x24,0x6c,0x6b,0xca,0x8b,0xe7,0xfb,0x73, + 0xd6,0x11,0x49,0x41,0x8b,0x24,0xbd,0xea,0x87,0x35,0x3a,0xc4,0xbf,0xa5,0x3c,0xeb,0x17,0x32,0xf5,0xec, + 0x93,0xda,0xc4,0xcd,0xed,0x58,0xaf,0xf0,0xf8,0x70,0x70,0x88,0x14,0x35,0x6d,0xfb,0xd2,0xdc,0x28,0x68, + 0x8a,0x11,0x6d,0x73,0x25,0x4f,0xc8,0xee,0xd1,0x5e,0x42,0x53,0xb9,0x29,0xde,0x4c,0x7e,0x89,0xe3,0x4b, + 0xef,0x31,0x8d,0x4d,0xbd,0x23,0xbb,0xf7,0x37,0xb2,0xae,0xcd,0x63,0xb2,0xfb,0x70,0xb3,0x9e,0x7e,0x50, + 0x76,0xbf,0xdc,0xc8,0x9b,0xc8,0x9b,0xb2,0x7b,0xf4,0xc5,0x46,0x56,0xa1,0x5f,0x96,0xdd,0x07,0x9b,0x1d, + 0x16,0xf2,0xbc,0xec,0x7e,0xb1,0xd1,0x1d,0xe2,0x11,0x54,0x0b,0x8e,0x79,0x85,0x30,0x18,0xfd,0x78,0x80, + 0xb7,0x21,0xdc,0x80,0x7d,0x43,0x86,0xf3,0xe7,0x00,0x5f,0x88,0xfa,0x4f,0x3d,0xba,0x66,0x2e,0x52,0xfd, + 0xcf,0x9c,0xe1,0xfa,0xe8,0x2b,0xf4,0xc3,0x64,0xec,0xa7,0x61,0x1f,0x36,0x08,0x6a,0x3f,0xbc,0x6d,0x27, + 0xc9,0xb3,0x8d,0x04,0x77,0x10,0xf4,0x02,0x7c,0x16,0xc7,0x6c,0x60,0x1f,0x62,0x87,0xfd,0x48,0x1f,0x2a, + 0x75,0x96,0x22,0x7d,0x96,0x0a,0x35,0x53,0x38,0x00,0x60,0xd7,0xe5,0xf9,0x80,0xa8,0x88,0xa0,0xd8,0xa1, + 0x2f,0x98,0x66,0x87,0x1c,0x71,0xbb,0x16,0x93,0x82,0x98,0x54,0x3f,0xe9,0x86,0xc5,0x1a,0x97,0x65,0xcc, + 0x91,0xcf,0xe3,0x5e,0x8d,0x78,0x97,0x28,0xad,0x93,0x59,0x86,0x10,0x19,0x07,0x3a,0x5a,0x8a,0x67,0x15, + 0x63,0x68,0x59,0x6f,0xc8,0x4c,0xdb,0x57,0x29,0x56,0x04,0x30,0x87,0x9b,0x91,0x4f,0xcc,0x52,0x56,0x6d, + 0x4e,0xbc,0xd5,0xe6,0x9d,0xe3,0x57,0x3c,0x97,0x7d,0xa3,0xf4,0x74,0x6a,0x8d,0x09,0xab,0x95,0xb0,0x32, + 0x0c,0x6b,0x56,0x2b,0xa0,0x12,0x85,0x59,0xab,0xe7,0x50,0x4a,0xc5,0xb9,0xd5,0xb2,0x74,0xaa,0xb0,0x72, + 0xb5,0x2c,0xa4,0x80,0xb3,0xab,0x25,0x26,0x73,0x9b,0xc9,0xab,0xf7,0x62,0xd2,0x0d,0xdf,0x57,0xcb,0x57, + 0x89,0xeb,0x26,0xf8,0x20,0xb2,0xd7,0x47,0x42,0x73,0x63,0x5b,0x08,0x94,0x37,0x48,0xe8,0x6a,0x23,0x88, + 0x50,0xd6,0x3b,0xd9,0x7e,0xd3,0x1a,0xde,0xcb,0xec,0x62,0xf9,0xa1,0x5d,0xd4,0x2a,0xab,0xa5,0xba,0x4e, + 0x9b,0x7d,0xa7,0x4c,0xbf,0xb7,0xd1,0x5d,0x4e,0x4d,0x61,0x0f,0x07,0x50,0xcf,0xb7,0x6c,0x9d,0x6f,0x59, + 0x9b,0xaf,0xb9,0x82,0xdb,0xd8,0x85,0xda,0x5c,0x5b,0xd9,0xba,0xad,0xb0,0xab,0x38,0x0a,0xe2,0xf3,0xa6, + 0x31,0x1d,0x49,0x93,0x60,0x08,0x76,0xcd,0x95,0xdb,0x5d,0xaa,0x20,0x28,0xf5,0xda,0xdd,0xae,0x5f,0x4f, + 0x50,0x81,0x32,0x8f,0x02,0x93,0x6c,0x86,0x13,0x3a,0x07,0x8e,0x15,0xef,0xa4,0x73,0xbf,0xb5,0xcc,0x7e, + 0xad,0xcc,0x83,0xd6,0x32,0xa7,0xa7,0xb5,0x42,0x0f,0x5b,0x0b,0xad,0x1c,0xbf,0x39,0xd3,0xf5,0xda,0xbf, + 0xff,0xf9,0x21,0x2f,0xd7,0x26,0xaf,0x65,0xaf,0x16,0xf3,0x05,0x66,0x11,0x94,0x6b,0x89,0x6a,0x89,0xa8, + 0x05,0xc2,0x8c,0x9a,0x55,0xc6,0x0b,0xaa,0x50,0xe8,0x6d,0x9e,0xaa,0x2b,0xb1,0x93,0x3e,0xa6,0xfa,0x12, + 0xd7,0x2e,0x11,0x6d,0x8d,0x41,0xc7,0x44,0x1c,0xdd,0x52,0x57,0x78,0x01,0xb5,0xca,0x2a,0x1c,0xe8,0x7d, + 0x1d,0xf6,0x53,0x1f,0x39,0x82,0xb4,0xbe,0xda,0x06,0xb5,0x40,0xfc,0xc7,0xc4,0x1c,0x15,0xd7,0x1d,0x7a, + 0x85,0xeb,0x95,0x31,0x06,0x09,0x32,0x1a,0x68,0x89,0x68,0xdb,0x38,0xd7,0xed,0x4b,0x70,0x1c,0xbf,0x2f, + 0xff,0xdc,0x32,0x74,0xf8,0xb8,0x6c,0x16,0x83,0x7a,0x87,0x91,0xb4,0x3a,0xde,0x27,0xae,0xcf,0x47,0xb4, + 0x0d,0x5d,0x52,0x6a,0x57,0xad,0xd7,0x47,0x54,0x10,0x55,0x53,0x5d,0xe5,0xfe,0xc7,0x54,0xa9,0x69,0xa0, + 0xea,0x9a,0x7a,0xe5,0x3b,0xdb,0xe6,0x92,0xcc,0x35,0x7c,0x7f,0x44,0x17,0x35,0x35,0x56,0xdd,0xc5,0xe7, + 0x9f,0x50,0x33,0x11,0xb5,0x56,0x5d,0xb5,0xb9,0xfd,0x77,0xed,0x4f,0x05,0x1a,0x08,0xbc,0xb5,0xf1,0x14, + 0xf8,0xe1,0x6b,0x74,0x60,0x09,0x09,0xe2,0x0d,0x49,0x14,0xb3,0xff,0xc1,0x76,0x76,0xee,0x40,0xc9,0x85, + 0x3f,0x91,0xbe,0xaa,0xe6,0xf2,0xa9,0xa4,0x55,0x73,0x80,0x6d,0x18,0xfa,0xee,0x19,0x81,0xda,0x68,0x3c, + 0x81,0xb6,0x5f,0x53,0x7c,0x88,0xd4,0x4a,0xd9,0xa8,0xff,0x90,0xa5,0x76,0xb6,0xbc,0x3c,0x3c,0x54,0xa2, + 0x41,0x48,0xec,0xe1,0xde,0x05,0xea,0x95,0x7d,0xf6,0xae,0x00,0x7f,0x4d,0xce,0x24,0x81,0x25,0xbb,0x91, + 0x2c,0xd2,0x62,0x7e,0x2d,0x31,0xe0,0x9e,0xde,0xbc,0xe0,0x6c,0x19,0xc7,0x37,0x28,0xc6,0xa1,0xf6,0xe2, + 0x02,0x2e,0x5d,0x94,0xe0,0x82,0xc5,0xd9,0x34,0xa1,0xe0,0xc1,0x17,0xf1,0x43,0x3f,0x4b,0x7f,0xaa,0xcb, + 0xea,0x6b,0x7e,0xbf,0x9b,0x03,0x63,0xf2,0x2b,0x87,0xc5,0xbc,0x7b,0x74,0x78,0xf8,0x99,0x60,0xe6,0x78, + 0x7c,0x80,0xa0,0xbc,0x65,0x84,0x38,0x86,0xfd,0x8d,0x6b,0xb7,0x7a,0xf4,0x85,0x17,0xda,0xff,0xfa,0x3b, + 0xb7,0xbe,0x19,0xed,0xd7,0x6e,0x63,0x5a,0x96,0x2c,0x14,0xdf,0x77,0xae,0x2c,0xad,0x2a,0xd5,0x23,0x18, + 0xc6,0xee,0xaf,0x45,0x9e,0xac,0xe4,0xaa,0x77,0xdd,0xd6,0x88,0x35,0xda,0x22,0x8e,0x05,0x2b,0x28,0xc1, + 0x59,0x1a,0x12,0x59,0x61,0xff,0x9b,0x62,0xda,0x76,0x69,0x9c,0x86,0x50,0x25,0x9d,0xa4,0x6b,0xf2,0xf0, + 0xd0,0xf3,0xd6,0xb5,0xc7,0xf6,0xf6,0xe1,0x71,0x88,0x0b,0xab,0x17,0x40,0x65,0x4b,0xb7,0x78,0xc6,0x68, + 0x17,0x26,0x1f,0x5a,0x24,0xf8,0x66,0xb0,0x3c,0x8e,0x93,0xc7,0xab,0xa4,0xd9,0x84,0x94,0xd8,0x84,0x7a, + 0x40,0xba,0x06,0xa5,0xbf,0xf6,0xfa,0x9a,0x0b,0x28,0xc5,0x05,0xb8,0x66,0xe3,0xd1,0xf8,0xd6,0x36,0xf3, + 0x6e,0xa8,0x52,0x4f,0xd2,0xa1,0x3c,0xd2,0xf5,0x3f,0xc0,0x43,0xe4,0x07,0xf5,0x36,0x24,0xea,0x74,0xa2, + 0xc3,0x62,0x6d,0xed,0x46,0x89,0xb7,0x9b,0x5d,0x61,0xcc,0x5b,0x64,0xed,0x9b,0xd4,0xa8,0xf8,0x66,0xb8, + 0x6d,0x08,0x3e,0x8e,0xe2,0x07,0xf2,0xda,0x59,0x04,0xc9,0x5f,0xa1,0xb4,0xad,0x3d,0xff,0x10,0x95,0xad, + 0x76,0x1b,0x32,0xe9,0xa6,0x8a,0xc5,0x76,0x40,0x96,0x02,0x02,0x99,0xcd,0x97,0xb3,0x8a,0xf2,0x66,0x1c, + 0x0f,0xc5,0xa1,0x22,0x38,0x38,0xc0,0xeb,0x8c,0xd2,0x15,0xa2,0xc9,0x17,0xac,0x2f,0x84,0x34,0x5e,0x8a, + 0x69,0x9c,0x41,0x5c,0x7a,0xf0,0x7b,0xc1,0x0c,0x96,0x78,0x7e,0x0e,0x6e,0xb5,0xc6,0x62,0xd5,0xa5,0x7f, + 0x19,0x83,0x27,0x11,0xf2,0xbd,0x57,0xbd,0xf8,0xac,0x37,0x56,0x6a,0x3b,0x4b,0x8b,0x93,0x4b,0xf7,0x61, + 0x01,0xb7,0xf9,0xb5,0x04,0x13,0x7a,0xd3,0xc8,0xda,0x6b,0xd9,0x70,0x10,0x46,0x03,0xbd,0x8a,0xcb,0xfc, + 0xc6,0x0c,0xa8,0x6f,0x06,0x33,0x8b,0x4a,0x78,0x0d,0x8b,0x4a,0xbf,0x4a,0x22,0x6c,0x92,0xe2,0xdf,0x8f, + 0x96,0x5f,0xd4,0x77,0x60,0xcb,0xbe,0x6d,0xae,0xb8,0xc5,0x28,0x7d,0x84,0x7c,0x8f,0x1d,0x79,0x9b,0x7b, + 0xc8,0xe2,0x7b,0xfb,0xd5,0xb1,0x35,0x92,0xba,0x86,0x2c,0x46,0x53,0x7b,0x4d,0x71,0x5d,0xb3,0x58,0x3d, + 0xbb,0xfe,0x36,0xaa,0x0f,0x55,0xb3,0x46,0x5d,0x26,0x97,0x6a,0x39,0x42,0x1e,0x6e,0x2b,0x4a,0xc7,0xae, + 0x5f,0x7e,0x40,0x38,0x97,0x5b,0xc2,0xb9,0x9a,0x64,0x2e,0xb7,0xe5,0x67,0x46,0x2c,0x97,0x57,0x93,0xc3, + 0x94,0xf2,0x86,0x90,0x2d,0xaf,0x3d,0x5c,0x51,0xb6,0x11,0xdc,0xf9,0x95,0x00,0x2b,0x70,0xf3,0x9e,0x48, + 0xe0,0x06,0x47,0xc1,0xa1,0xb7,0x42,0x40,0x53,0x11,0xbb,0x0d,0xee,0xab,0xdf,0x46,0xd6,0x36,0x78,0xa8, + 0x4b,0x28,0x01,0xdb,0xe0,0x4b,0x95,0x20,0x52,0xb5,0xc1,0xd1,0x17,0xea,0xb7,0x16,0xa5,0x0d,0x1e,0xe8, + 0x46,0x44,0x7e,0x36,0xf8,0x02,0x4d,0xd0,0xd1,0xdd,0x40,0x2e,0x75,0x61,0xad,0x5f,0xfe,0x55,0x96,0xbd, + 0x21,0x54,0xfb,0x30,0xd3,0x4e,0x37,0x22,0x1d,0x5d,0xfb,0x89,0xbb,0xf9,0xc2,0xb3,0x65,0xeb,0x37,0x76, + 0xb0,0x2e,0x50,0xad,0x24,0xa8,0x84,0x63,0x2a,0xb1,0xe9,0xe7,0x0f,0x1b,0xe2,0x51,0x23,0x04,0xdd,0xa9, + 0x84,0x9e,0x3b,0xb6,0x90,0x73,0xc7,0x12,0x6a,0xee,0x18,0x21,0xe6,0x8e,0x25,0xb3,0xdc,0x31,0x22,0x4a, + 0x89,0x08,0x24,0xb1,0x9c,0x5b,0xa7,0x14,0x7f,0x78,0x4e,0x2a,0x24,0x54,0x8c,0x90,0x50,0xad,0xfa,0x64, + 0x7f,0x4d,0x32,0xd5,0x14,0x4e,0xfa,0x1b,0x02,0xc7,0xbf,0xba,0xf5,0x1b,0xc2,0xc7,0xbb,0x25,0x36,0xe3, + 0xba,0xc4,0x72,0xfb,0xf6,0xcb,0x08,0x3f,0x08,0x00,0xd6,0x96,0xcf,0x93,0x34,0xb8,0xef,0x8f,0x8d,0x19, + 0x8c,0xb5,0x33,0x5b,0xfa,0xdb,0xd8,0x9b,0x66,0x87,0xb5,0xdd,0x81,0x03,0xdf,0x84,0x52,0x22,0x06,0xf7, + 0xd6,0xe7,0x57,0xc7,0xe9,0x23,0x94,0xba,0x44,0x14,0x49,0xbb,0xa1,0xd3,0x75,0x34,0x59,0x6d,0x51,0x15, + 0xf1,0xc1,0x17,0x87,0x9e,0x9f,0x48,0x52,0x74,0x5e,0xd0,0x38,0xfe,0xc7,0x17,0x87,0x5a,0x26,0x8b,0xd0, + 0x98,0x5d,0x27,0x70,0xfc,0xe4,0xd1,0x91,0x6e,0xe6,0xd0,0xf1,0xfc,0x14,0x71,0x76,0xd7,0x3e,0xc7,0xb3, + 0xa2,0xcb,0x4f,0xeb,0x2f,0x28,0xdd,0xa5,0xcd,0x55,0xb4,0xa9,0x4e,0x10,0x7b,0x50,0x9b,0xe7,0x28,0xdf, + 0x75,0x75,0x87,0x4f,0xaf,0x5f,0x7c,0x5a,0xbf,0x2a,0xf6,0x97,0xd5,0xbf,0x51,0xf5,0xb1,0x37,0xa2,0x4d, + 0xcd,0x21,0x74,0xfe,0xe6,0x74,0x63,0x68,0x3c,0xad,0xff,0x3f,0x23,0x8b,0xf9,0xf8,0x24,0x0d,0x02,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 05738ef..86d3619 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 27; +const uint8_t VersionMetadata = 29; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+27"; -const char VersionCommitDate[] = "2018-01-22"; +const char VersionFullSemVer[] = "2.0.0-beta.1+29"; +const char VersionCommitDate[] = "2018-01-23"; #endif diff --git a/web/app.js b/web/app.js index 2ee05e4..c7e9410 100644 --- a/web/app.js +++ b/web/app.js @@ -2,18 +2,23 @@ function startApp() { // TODO support for disable checkboxes Vue.component('check', { - template: '
{{ title }}
', + template: '
{{ title }}
', props: { title: String, value: { type: Boolean, default: false + }, + disabled: { + type: Boolean, + default: false } }, methods: { handleClick: function() { + if (this.disabled) return; this.value = !this.value; this.$emit('input', this.value); }, @@ -31,18 +36,32 @@ function startApp() Vue.component('radio', { - template: '
{{ title }}
', + template: '
{{ title }}
', props: { title: String, value: null, - id: null + id: null, + disabled: { + type: Boolean, + default: false + } }, methods: { handleClick: function() { + if (this.disabled) return; this.value = this.id; this.$emit('input', this.value); + }, + + handleKeyDown: function(event) + { + if (event.keyCode == 32) + { + this.handleClick(); + event.preventDefault(); + } } } }); diff --git a/web/dist/bundle.css b/web/dist/bundle.css index 96c5fd6..2fd806e 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -html{box-sizing:border-box;font-size:62.5%}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,h3{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active{border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}.button{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer}.button.focus,.button:focus,.button:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active{color:#ccc;background:#282828}a.button{line-height:3rem;text-decoration:none}.tabs{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:5px;left:5px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}input,textarea{color:#fff}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background-color:#282828;font-size:1.2rem;padding:.5rem}input[disabled]{cursor:not-allowed;color:grey;background-color:#262626}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background-color:#302f28;color:#fff}.panel .panel-header input[type=checkbox]{margin-left:.5em;margin-top:.5em;margin-bottom:.5em}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header a,.panel .panel-header label{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background-color:#242422;padding:2rem}select{background:#202020;color:#fff}select:focus{background-image:none}.inline{display:inline-block;width:auto}.weekdays .label{width:8em} \ No newline at end of file +html{box-sizing:border-box;font-size:62.5%}*,:after,:before{box-sizing:inherit}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,button,h3,input[type=submit],select{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active,button.active,button:active,input[type=number],input[type=password],input[type=submit].active,input[type=submit]:active,input[type=text],textarea{border:1px solid #111;border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}.button,button,input[type=submit]{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer;line-height:3rem}.button.focus,.button:focus,.button:hover,button.focus,button:focus,button:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active,button.active,button:active,input[type=submit].active,input[type=submit]:active{color:#ccc;background:#282828}.button-primary,input[type=submit]{background:#2265a1}.button-primary.focus,.button-primary:focus,.button-primary:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{background:#2672b6}a.button{text-decoration:none}.tabs{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.check.disabled,.radio.disabled{cursor:not-allowed}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:5px;left:5px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}.form-control{margin-top:1em}input[type=number],input[type=password],input[type=text],textarea{background:#404040;color:#fff;padding:.5em;width:100%}select{background:#404040;color:#fff;padding:.5em}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background:#282828;font-size:1.2rem;padding:.5rem}h4{font-size:1.4rem}input[disabled]{cursor:not-allowed;color:grey;background:#262626}label{display:block;margin-top:1em;margin-bottom:.5em}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slidercontainer{margin-top:1rem}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background:#404040;color:#fff}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header .label,.panel .panel-header a{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background:#303030;padding:2rem}.panel.active .panel-header{background:#3b4a58;color:#fff}.inline{display:inline-block;width:auto}.weekdays{margin-top:1rem}.weekdays .label{width:8em} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 65612d2..4945cfe 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(u)&&(f[l]=C(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=C(u.text+c):""!==c&&f.push(C(c)):X(c)&&X(u)?f[l]=C(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function je(e){return e&&(e.Ctor.options.name||e.tag)}function De(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=je(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=qr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){qr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,qr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Br}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=Kr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),Kr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||Kr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Kr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),K(i,o,ft,dt,r.context),Kr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?Ci(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Si(c,s,"");for(s in p)(a=p[s])!==f[s]&&Si(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function Ct(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Di?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=Di,u=a,f=o.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?Di:Ii:null)?n===Di?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Di&&Wi.test(r[Li+"Property"])}}function At(e,t){for(;e.length1}function jt(e,t){!0!==t.data.show&&$t(t)}function Dt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Wt(e){return!e.componentInstance||e.data&&e.data.transition?e:Wt(e.componentInstance._vnode)}function Bt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Bt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function qt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function Kt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',Co.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,Cn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),xn=function(e,t,n){return!1},An=function(e){return e},Sn="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:xn,isReservedAttr:xn,isUnknownElement:xn,getTagNamespace:g,parsePlatformTagName:An,mustUseProp:xn,_lifecycleHooks:On},Pn=/[^\w.$]/,jn="__proto__"in{},Dn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=Dn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Wn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Bn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(Dn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,qn,Kn=function(){return void 0===zn&&(zn=!Dn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Dn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);qn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tSr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);xr||(xr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){W(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};xe(Ae.prototype);var jr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;jr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Wr),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:Kn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Br,Vr,Ur,Hr,zr,qr,Kr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){Be(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Be(e,!0),Be(t))},destroy:function(e){Be(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:Ke,update:Ke},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},Ci=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),xi=/^--/,Ai=/\s*!important$/,Si=function(e,t,n){if(xi.test(t))e.style.setProperty(t,n);else if(Ai.test(n))e.style.setProperty(t,n.replace(Ai,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Ui),v(Pe.options.components,Ki),Pe.prototype.__patch__=Dn?Bi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&Dn?We(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(Ci(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),lo=/^]+>/i,uo=/^/g,"$1").replace(//g,"$1")),jo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(uo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(lo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),l(n)&&o===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(co.test(k)||ao.test(k)||uo.test(k)||fo.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||wo(e);Nn&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Xe(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===j&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(u===D)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,o,a,s)),s?this._render(l,a,s):l},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(o))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1}},methods:{handleClick:function(){this.value=!this.value,this.$emit("input",this.value)},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null},methods:{handleClick:function(){this.value=this.id,this.$emit("input",this.value)}}});var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(e){c.headers[e]={}}),o.forEach(["post","put","patch"],function(e){c.headers[e]=o.merge(s)}),e.exports=c},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){return r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]}),(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===hn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return gn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):G(c)&&G(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Fr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Ee(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function De(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==hn.call(n))&&e.test(t));var n}function je(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Pe(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Le(e,n){return{staticClass:Fe(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Fe(e,t){return e?t?e+" "+t:e:t||""}function Ne(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(b=e.charAt(y));y--);b&&Ti.test(b)||(p=!0)}}else void 0===o?(g=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==g&&t(),a)for(i=0;i-1?{exp:e.slice(0,Kr),key:'"'+e.slice(Kr+1)+'"'}:{exp:e,key:null};for(zr=e,Kr=Jr=Gr=0;!st();)ct(qr=at())?lt(qr):91===qr&&function(e){var t=1;for(Jr=Kr;!st();)if(e=at(),ct(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){Gr=Kr;break}}(qr);return{exp:e.slice(0,Jr),key:e.slice(Jr+1,Gr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function at(){return zr.charCodeAt(++Kr)}function st(){return Kr>=Hr}function ct(e){return 34===e||39===e}function lt(e){for(var t=e;!st()&&(e=at())!==t;);}function ut(e,t,n,r,i){var o,a,s,c,l;t=(l=t)._withTask||(l._withTask=function(){dr=!0;var e=l.apply(null,arguments);return dr=!1,e}),n&&(o=t,a=e,s=r,c=Xr,t=function e(){null!==o.apply(null,arguments)&&ft(a,e,s,c)}),Xr.addEventListener(e,t,Wn?{capture:r,passive:i}:r)}function ft(e,t,n,r){(r||Xr).removeEventListener(e,t._withTask||t,n)}function dt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(e){if(t(e[ki])){var n=Ln?"change":"input";e[n]=[].concat(e[ki],e[n]||[]),delete e[ki]}t(e[Ci])&&(e.change=[].concat(e[Ci],e.change||[]),delete e[Ci])}(i),q(i,o,ut,ft,r.context),Xr=void 0}}function pt(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function ht(e){var t=vt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function vt(e){return Array.isArray(e)?m(e):"string"==typeof e?Si(e):e}function mt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=vt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ht(i.data))&&v(r,n);(n=ht(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=ht(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ei(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ei(c,s,null==a?"":a)}}function gt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function bt(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Ii(e.name||"v")),v(t,e),t}return"string"==typeof e?Ii(e):void 0}}function _t(e){Vi(function(){Vi(e)})}function wt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),gt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),yt(e,t)}function kt(e,t,n){var r=Ct(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Wi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=Fi,u=a,f=o.length):t===Ni?l>0&&(n=Ni,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Fi&&Ui.test(r[Mi+"Property"])}}function xt(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&St(t)}function Dt(e,t,n){jt(e,t,n),(Ln||Nn)&&setTimeout(function(){jt(e,t,n)},0)}function jt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Lt(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Lt(e){return"_value"in e?e._value:e.value}function Ft(e){e.target.composing=!0}function Nt(e){e.target.composing&&(e.target.composing=!1,Mt(e.target,"input"))}function Mt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Rt(e){return!e.componentInstance||e.data&&e.data.transition?e:Rt(e.componentInstance._vnode)}function Bt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Bt(Y(t.children)):e}function Wt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[bn(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ht(e){e.data.newPos=e.elm.getBoundingClientRect()}function zt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',So.innerHTML.indexOf(" ")>0}var pn=Object.freeze({}),hn=Object.prototype.toString,vn=l("slot,component",!0),mn=l("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,bn=d(function(e){return e.replace(yn,function(e,t){return t?t.toUpperCase():""})}),_n=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),wn=/\B([A-Z])/g,Tn=d(function(e){return e.replace(wn,"-$1").toLowerCase()}),kn=function(e,t,n){return!1},Cn=function(e){return e},xn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],$n={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:kn,isReservedAttr:kn,isUnknownElement:kn,getTagNamespace:g,parsePlatformTagName:Cn,mustUseProp:kn,_lifecycleHooks:Sn},On=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,Dn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,jn=Dn&&WXEnvironment.platform.toLowerCase(),In=Pn&&window.navigator.userAgent.toLowerCase(),Ln=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===jn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===jn,Bn=(In&&/chrome\/\d+/.test(In),{}.watch),Wn=!1;if(Pn)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Wn=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Un,Hn,zn=function(){return void 0===Un&&(Un=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Un},qn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Hn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(e){this.subs.push(e)},Xn.prototype.removeSub=function(e){u(this.subs,e)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;txr&&_r[n].id>e.id;)n--;_r.splice(n+1,0,e)}else _r.push(e);kr||(kr=!0,U(ce))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){R(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var $r={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};Ce(xe.prototype);var Er,Pr,Dr,jr,Ir={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=(a=e,s={_isComponent:!0,parent:br,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Ir.prepatch(o,o)}var a,s,c},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==pn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||pn,e.$listeners=n||pn,t&&e.$options.props){ir.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};Rr=Ee,(Wr={}).get=function(){return $n},Object.defineProperty(Rr,"config",Wr),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=$,Rr.delete=O,Rr.nextTick=U,Rr.options=Object.create(null),An.forEach(function(e){Rr.options[e+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Ur),Rr.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},Rr.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)ue(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Br=Rr,An.forEach(function(e){Br[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}),Object.defineProperty(Ee.prototype,"$isServer",{get:zn}),Object.defineProperty(Ee.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Ee.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=l("style,class"),Qr=l("input,textarea,option,select,progress"),ei=function(e,t,n){return"value"===n&&Qr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ti=l("contenteditable,draggable,spellcheck"),ni=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},oi=function(e){return ii(e)?e.slice(6,e.length):""},ai=function(e){return null==e||!1===e},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),li=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),ui=function(e){return ci(e)||li(e)},fi=Object.create(null),di=l("text,number,password,search,email,tel,url"),pi=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(si[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),hi={create:function(e,t){Be(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Be(e,!0),Be(t))},destroy:function(e){Be(e,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ue,update:Ue,destroy:function(e){Ue(e,vi)}},yi=Object.create(null),bi=[hi,gi],_i={create:qe,update:qe},wi={create:Je,update:Je},Ti=/[\w).+\-_$\]]/,ki="__r",Ci="__c",xi={create:dt,update:dt},Ai={create:pt,update:pt},Si=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),$i=/^--/,Oi=/\s*!important$/,Ei=function(e,t,n){if($i.test(t))e.style.setProperty(t,n);else if(Oi.test(n))e.style.setProperty(t,n.replace(Oi,""),"important");else{var r=Di(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:fi[e]=/HTMLUnknownElement/.test(t.toString())},v(Ee.options.directives,qi),v(Ee.options.components,Xi),Ee.prototype.__patch__=Pn?Hi:g,Ee.prototype.$mount=function(e,t){return e=e&&Pn?Re(e):void 0,r=e,i=t,(n=this).$el=r,n.$options.render||(n.$options.render=er),se(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,se(n,"mounted")),n;var n,r,i},Ee.nextTick(function(){$n.devtools&&qn&&qn.emit("init",Ee)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,eo=d(function(e){var t=e[0].replace(Qi,"\\$&"),n=e[1].replace(Qi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),to={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=rt(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=nt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},no={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=rt(e,"style");n&&(e.staticStyle=JSON.stringify(Si(n)));var r=nt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ro=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",lo=new RegExp("^<"+co),uo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Lo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ho.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(vo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(po);if(y){n(y[0].length);continue}var b=e.match(fo);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(lo);if(t){var r,i,o={tagName:t[1],attrs:[],start:u};for(n(t[0].length);!(r=e.match(uo))&&(i=e.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=u,o}}();if(w){!function(e){var n,i,u,f=e.tagName,d=e.unarySlash;s&&("p"===o&&oo(f)&&r(o),l(f)&&o===f&&r(f));for(var p=c(f)||!!d,h=e.attrs.length,v=new Array(h),m=0;m=0){for(k=e.slice(v);!(fo.test(k)||lo.test(k)||ho.test(k)||vo.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:go,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||Co(e);Ln&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Ge(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t,n,r,i=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(r=i,F.test(r)?(n=(t=i).charCodeAt(0))!==t.charCodeAt(t.length-1)||34!==n&&39!==n?t:t.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.formatter=this.$root.$i18n.formatter,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===D&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?t:r,!1===a()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c,l=this._path.getPathValue(t,i);if(Array.isArray(l))return l;if(r(l)){if(!n(t))return null;if("string"!=typeof(c=t[i]))return null}else{if("string"!=typeof l)return null;c=l}return c.indexOf("@:")>=0&&(c=this._link(e,t,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s,c=i.apply(void 0,o),l=c.locale||t,u=this._translate(n,l,this.fallbackLocale,e,r,"string",c.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[e].concat(o))}return this._warnDefault(l,e,u,r)},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){var n;(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}});var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index e9cc28c..f9811a8 100644 --- a/web/index.html +++ b/web/index.html @@ -50,8 +50,8 @@ -->

{{ $t('status.title') }}

- - +
+
/g,"$1").replace(//g,"$1")),Lo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ho.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(vo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(po);if(y){n(y[0].length);continue}var b=e.match(fo);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(lo);if(t){var r,i,o={tagName:t[1],attrs:[],start:u};for(n(t[0].length);!(r=e.match(uo))&&(i=e.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=u,o}}();if(w){!function(e){var n,i,u,f=e.tagName,d=e.unarySlash;s&&("p"===o&&oo(f)&&r(o),l(f)&&o===f&&r(f));for(var p=c(f)||!!d,h=e.attrs.length,v=new Array(h),m=0;m=0){for(k=e.slice(v);!(fo.test(k)||lo.test(k)||ho.test(k)||vo.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:go,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||Co(e);Ln&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Ge(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t,n,r,i=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(r=i,F.test(r)?(n=(t=i).charCodeAt(0))!==t.charCodeAt(t.length-1)||34!==n&&39!==n?t:t.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.formatter=this.$root.$i18n.formatter,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===D&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?t:r,!1===a()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c,l=this._path.getPathValue(t,i);if(Array.isArray(l))return l;if(r(l)){if(!n(t))return null;if("string"!=typeof(c=t[i]))return null}else{if("string"!=typeof l)return null;c=l}return c.indexOf("@:")>=0&&(c=this._link(e,t,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s,c=i.apply(void 0,o),l=c.locale||t,u=this._translate(n,l,this.fallbackLocale,e,r,"string",c.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[e].concat(o))}return this._warnDefault(l,e,u,r)},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){var n;(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}});var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(e){c.headers[e]={}}),o.forEach(["post","put","patch"],function(e){c.headers[e]=o.merge(s)}),e.exports=c},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){return r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]}),(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===hn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return gn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):G(c)&&G(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Fr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Ee(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function De(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==hn.call(n))&&e.test(t));var n}function je(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Pe(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Le(e,n){return{staticClass:Fe(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Fe(e,t){return e?t?e+" "+t:e:t||""}function Ne(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(b=e.charAt(y));y--);b&&Ti.test(b)||(p=!0)}}else void 0===o?(g=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==g&&t(),a)for(i=0;i-1?{exp:e.slice(0,Kr),key:'"'+e.slice(Kr+1)+'"'}:{exp:e,key:null};for(zr=e,Kr=Jr=Gr=0;!st();)ct(qr=at())?lt(qr):91===qr&&function(e){var t=1;for(Jr=Kr;!st();)if(e=at(),ct(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){Gr=Kr;break}}(qr);return{exp:e.slice(0,Jr),key:e.slice(Jr+1,Gr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function at(){return zr.charCodeAt(++Kr)}function st(){return Kr>=Hr}function ct(e){return 34===e||39===e}function lt(e){for(var t=e;!st()&&(e=at())!==t;);}function ut(e,t,n,r,i){var o,a,s,c,l;t=(l=t)._withTask||(l._withTask=function(){dr=!0;var e=l.apply(null,arguments);return dr=!1,e}),n&&(o=t,a=e,s=r,c=Xr,t=function e(){null!==o.apply(null,arguments)&&ft(a,e,s,c)}),Xr.addEventListener(e,t,Wn?{capture:r,passive:i}:r)}function ft(e,t,n,r){(r||Xr).removeEventListener(e,t._withTask||t,n)}function dt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(e){if(t(e[ki])){var n=Ln?"change":"input";e[n]=[].concat(e[ki],e[n]||[]),delete e[ki]}t(e[Ci])&&(e.change=[].concat(e[Ci],e.change||[]),delete e[Ci])}(i),q(i,o,ut,ft,r.context),Xr=void 0}}function pt(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function ht(e){var t=vt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function vt(e){return Array.isArray(e)?m(e):"string"==typeof e?Si(e):e}function mt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=vt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ht(i.data))&&v(r,n);(n=ht(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=ht(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ei(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ei(c,s,null==a?"":a)}}function gt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function bt(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Ii(e.name||"v")),v(t,e),t}return"string"==typeof e?Ii(e):void 0}}function _t(e){Vi(function(){Vi(e)})}function wt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),gt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),yt(e,t)}function kt(e,t,n){var r=Ct(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Wi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=Fi,u=a,f=o.length):t===Ni?l>0&&(n=Ni,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Fi&&Ui.test(r[Mi+"Property"])}}function xt(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&St(t)}function Dt(e,t,n){jt(e,t,n),(Ln||Nn)&&setTimeout(function(){jt(e,t,n)},0)}function jt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Lt(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Lt(e){return"_value"in e?e._value:e.value}function Ft(e){e.target.composing=!0}function Nt(e){e.target.composing&&(e.target.composing=!1,Mt(e.target,"input"))}function Mt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Rt(e){return!e.componentInstance||e.data&&e.data.transition?e:Rt(e.componentInstance._vnode)}function Bt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Bt(Y(t.children)):e}function Wt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[bn(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ht(e){e.data.newPos=e.elm.getBoundingClientRect()}function zt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',So.innerHTML.indexOf(" ")>0}var pn=Object.freeze({}),hn=Object.prototype.toString,vn=l("slot,component",!0),mn=l("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,bn=d(function(e){return e.replace(yn,function(e,t){return t?t.toUpperCase():""})}),_n=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),wn=/\B([A-Z])/g,Tn=d(function(e){return e.replace(wn,"-$1").toLowerCase()}),kn=function(e,t,n){return!1},Cn=function(e){return e},xn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],$n={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:kn,isReservedAttr:kn,isUnknownElement:kn,getTagNamespace:g,parsePlatformTagName:Cn,mustUseProp:kn,_lifecycleHooks:Sn},On=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,Dn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,jn=Dn&&WXEnvironment.platform.toLowerCase(),In=Pn&&window.navigator.userAgent.toLowerCase(),Ln=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===jn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===jn,Bn=(In&&/chrome\/\d+/.test(In),{}.watch),Wn=!1;if(Pn)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Wn=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Un,Hn,zn=function(){return void 0===Un&&(Un=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Un},qn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Hn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(e){this.subs.push(e)},Xn.prototype.removeSub=function(e){u(this.subs,e)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;txr&&_r[n].id>e.id;)n--;_r.splice(n+1,0,e)}else _r.push(e);kr||(kr=!0,U(ce))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){R(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var $r={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};Ce(xe.prototype);var Er,Pr,Dr,jr,Ir={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=(a=e,s={_isComponent:!0,parent:br,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Ir.prepatch(o,o)}var a,s,c},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==pn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||pn,e.$listeners=n||pn,t&&e.$options.props){ir.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};Rr=Ee,(Wr={}).get=function(){return $n},Object.defineProperty(Rr,"config",Wr),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=$,Rr.delete=O,Rr.nextTick=U,Rr.options=Object.create(null),An.forEach(function(e){Rr.options[e+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Ur),Rr.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},Rr.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)ue(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Br=Rr,An.forEach(function(e){Br[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}),Object.defineProperty(Ee.prototype,"$isServer",{get:zn}),Object.defineProperty(Ee.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Ee.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=l("style,class"),Qr=l("input,textarea,option,select,progress"),ei=function(e,t,n){return"value"===n&&Qr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ti=l("contenteditable,draggable,spellcheck"),ni=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},oi=function(e){return ii(e)?e.slice(6,e.length):""},ai=function(e){return null==e||!1===e},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),li=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),ui=function(e){return ci(e)||li(e)},fi=Object.create(null),di=l("text,number,password,search,email,tel,url"),pi=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(si[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),hi={create:function(e,t){Be(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Be(e,!0),Be(t))},destroy:function(e){Be(e,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ue,update:Ue,destroy:function(e){Ue(e,vi)}},yi=Object.create(null),bi=[hi,gi],_i={create:qe,update:qe},wi={create:Je,update:Je},Ti=/[\w).+\-_$\]]/,ki="__r",Ci="__c",xi={create:dt,update:dt},Ai={create:pt,update:pt},Si=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),$i=/^--/,Oi=/\s*!important$/,Ei=function(e,t,n){if($i.test(t))e.style.setProperty(t,n);else if(Oi.test(n))e.style.setProperty(t,n.replace(Oi,""),"important");else{var r=Di(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:fi[e]=/HTMLUnknownElement/.test(t.toString())},v(Ee.options.directives,qi),v(Ee.options.components,Xi),Ee.prototype.__patch__=Pn?Hi:g,Ee.prototype.$mount=function(e,t){return e=e&&Pn?Re(e):void 0,r=e,i=t,(n=this).$el=r,n.$options.render||(n.$options.render=er),se(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,se(n,"mounted")),n;var n,r,i},Ee.nextTick(function(){$n.devtools&&qn&&qn.emit("init",Ee)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,eo=d(function(e){var t=e[0].replace(Qi,"\\$&"),n=e[1].replace(Qi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),to={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=rt(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=nt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},no={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=rt(e,"style");n&&(e.staticStyle=JSON.stringify(Si(n)));var r=nt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ro=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",lo=new RegExp("^<"+co),uo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Lo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ho.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(vo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(po);if(y){n(y[0].length);continue}var b=e.match(fo);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(lo);if(t){var r,i,o={tagName:t[1],attrs:[],start:u};for(n(t[0].length);!(r=e.match(uo))&&(i=e.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=u,o}}();if(w){!function(e){var n,i,u,f=e.tagName,d=e.unarySlash;s&&("p"===o&&oo(f)&&r(o),l(f)&&o===f&&r(f));for(var p=c(f)||!!d,h=e.attrs.length,v=new Array(h),m=0;m=0){for(k=e.slice(v);!(fo.test(k)||lo.test(k)||ho.test(k)||vo.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:go,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||Co(e);Ln&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Ge(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t,n,r,i=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(r=i,F.test(r)?(n=(t=i).charCodeAt(0))!==t.charCodeAt(t.length-1)||34!==n&&39!==n?t:t.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.formatter=this.$root.$i18n.formatter,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===D&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?t:r,!1===a()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c,l=this._path.getPathValue(t,i);if(Array.isArray(l))return l;if(r(l)){if(!n(t))return null;if("string"!=typeof(c=t[i]))return null}else{if("string"!=typeof l)return null;c=l}return c.indexOf("@:")>=0&&(c=this._link(e,t,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s,c=i.apply(void 0,o),l=c.locale||t,u=this._translate(n,l,this.fallbackLocale,e,r,"string",c.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[e].concat(o))}return this._warnDefault(l,e,u,r)},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){var n;(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}});var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index f9811a8..389fcd6 100644 --- a/web/index.html +++ b/web/index.html @@ -53,18 +53,6 @@
- -
{{ Math.floor(allStepsValue / 255 * 100) }}% @@ -271,7 +259,7 @@ System tab --> -
+

{{ $t('system.firmwareTitle') }}

@@ -285,7 +273,7 @@
-
+

{{ $t('system.ntpTitle') }}

@@ -359,7 +347,6 @@
From b7d7d5e18c90e066651485eed54c887f16fe583d Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Sun, 28 Jan 2018 20:03:47 +0100 Subject: [PATCH 31/43] Added start of calibration wizard --- web/app.js | 43 +++++++++++++++- web/dist/bundle.css | 2 +- web/index.html | 120 ++++++++++++++++++++++++++++++++------------ web/lang.js | 30 +++++++++-- web/site.scss | 44 ++++++++++++++-- 5 files changed, 200 insertions(+), 39 deletions(-) diff --git a/web/app.js b/web/app.js index 708477c..434a351 100644 --- a/web/app.js +++ b/web/app.js @@ -158,7 +158,9 @@ function startApp() location: '', fixedTimes: [], - relativeTimes: [] + relativeTimes: [], + + calibration: null }, created: function() @@ -785,6 +787,45 @@ function startApp() result += minutes; return result; + }, + + startCalibration: function() + { + var self = this; + self.calibration = { + wizardStep: 0, + stepCount: self.steps.length, + steps: [] + }; + + // TODO load step settings + }, + + stopCalibration: function() + { + this.calibration = null; + }, + + applyCalibration: function() + { + var self = this; + + // TODO applyCalibration + self.stopCalibration(); + }, + + hasNextCalibrationStep: function() + { + return this.calibration.wizardStep < 1; + }, + + nextCalibrationStep: function() + { + var self = this; + self.calibration.wizardStep++; + + if (self.calibration.wizardStep == 2) + self.applyCalibration(); } }, diff --git a/web/dist/bundle.css b/web/dist/bundle.css index 2fd806e..e4ddc12 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -html{box-sizing:border-box;font-size:62.5%}*,:after,:before{box-sizing:inherit}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,button,h3,input[type=submit],select{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active,button.active,button:active,input[type=number],input[type=password],input[type=submit].active,input[type=submit]:active,input[type=text],textarea{border:1px solid #111;border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}.button,button,input[type=submit]{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer;line-height:3rem}.button.focus,.button:focus,.button:hover,button.focus,button:focus,button:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active,button.active,button:active,input[type=submit].active,input[type=submit]:active{color:#ccc;background:#282828}.button-primary,input[type=submit]{background:#2265a1}.button-primary.focus,.button-primary:focus,.button-primary:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{background:#2672b6}a.button{text-decoration:none}.tabs{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.check.disabled,.radio.disabled{cursor:not-allowed}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:5px;left:5px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}.form-control{margin-top:1em}input[type=number],input[type=password],input[type=text],textarea{background:#404040;color:#fff;padding:.5em;width:100%}select{background:#404040;color:#fff;padding:.5em}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background:#282828;font-size:1.2rem;padding:.5rem}h4{font-size:1.4rem}input[disabled]{cursor:not-allowed;color:grey;background:#262626}label{display:block;margin-top:1em;margin-bottom:.5em}.label-inline{margin-right:2rem}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slidercontainer{margin-top:1rem}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background:#404040;color:#fff}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header .label,.panel .panel-header a{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background:#303030;padding:2rem}.panel.active .panel-header{background:#3b4a58;color:#fff}.inline{display:inline-block;width:auto}.weekdays{margin-top:1rem}.weekdays .label{width:8em} \ No newline at end of file +html{box-sizing:border-box;font-size:62.5%}*,:after,:before{box-sizing:inherit}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,button,h3,input[type=submit],select{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active,button.active,button:active,input[type=number],input[type=password],input[type=submit].active,input[type=submit]:active,input[type=text],textarea{border:1px solid #111;border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}.button,button,input[type=submit]{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer;line-height:3rem}.button.focus,.button:focus,.button:hover,button.focus,button:focus,button:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active,button.active,button:active,input[type=submit].active,input[type=submit]:active{color:#ccc;background:#282828}.button-primary,input[type=submit]{background:#2265a1}.button-primary.focus,.button-primary:focus,.button-primary:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{background:#2672b6}a.button{text-decoration:none}.navigation{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.check.disabled,.radio.disabled{cursor:not-allowed}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:4px;left:4px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}.form-control{margin-top:1em}input[type=number],input[type=password],input[type=text],textarea{background:#404040;color:#fff;padding:.5em;width:100%}select{background:#404040;color:#fff;padding:.5em}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background:#282828;font-size:1.2rem;padding:.5rem}h4{font-size:1.4rem}input[disabled]{cursor:not-allowed;color:grey;background:#262626}label{display:block;margin-top:1em;margin-bottom:.5em}.label-inline{margin-right:2rem}@media screen and (min-width:768px){.horizontal label{display:inline-block}.horizontal input[type=number],.horizontal input[type=password],.horizontal input[type=text],.horizontal textarea{display:inline-block;float:right;width:50%}.horizontal:after{clear:both}}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slidercontainer{margin-top:1rem}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background:#404040;color:#fff}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header .label,.panel .panel-header a{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background:#303030;padding:2rem}.panel.active .panel-header{background:#3b4a58;color:#fff}.inline{display:inline-block;width:auto}.weekdays{margin-top:1rem}.weekdays .label{width:8em}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 389fcd6..59f45eb 100644 --- a/web/index.html +++ b/web/index.html @@ -37,8 +37,8 @@ {{ $t('loading') }} {{ loadingIndicator }}
- @@ -248,7 +248,7 @@
- +
@@ -265,7 +265,7 @@
- +
@@ -273,6 +273,14 @@
+

{{ $t('system.calibrateTitle') }}

+ + {{ $t('system.calibrateHint') }} + + +

{{ $t('system.ntpTitle') }}

@@ -280,20 +288,30 @@ {{ $t('triggers.timeInternet') }}
- - +
+ + +
- - +
+ + +
- - +
+ + +
- - +
+ + +
- - +
+ + +
@@ -303,26 +321,40 @@

{{ $t('system.pinsTitle') }}

- - +
+ + +
- - +
+ + +
- - +
+ + +
- - +
+ + +
- - +
+ + +
- - +
+ + +
- - +
+ + +

{{ $t('system.mapsTitle') }}

@@ -331,12 +363,38 @@ {{ $t('system.mapsAPIKeyhint') }}
- +
+ +
+ + +

{{ $t('calibration.title') }}

+ +
+ + +
+ +
+ step 2 +
+ + +
+
diff --git a/web/lang.js b/web/lang.js index 5dc8ad1..406e836 100644 --- a/web/lang.js +++ b/web/lang.js @@ -109,6 +109,10 @@ var messages = { pinsTitle: 'Hardware pinout', mapsTitle: 'Google Maps API', firmwareTitle: 'Firmware update', + calibrateTitle: 'Calibrate', + + calibrateButton: 'Calibrate steps', + calibrateHint: 'Use the button below to configure the number of steps, and to adjust the brightness of each individual step', ntpServer: 'NTP server', ntpInterval: 'Refresh interval (in minutes)', @@ -143,6 +147,14 @@ var messages = { searchLocation: 'Could not look up location coordinates', applyTimeTriggers: 'Could not save time trigger settings', applyMotionTriggers: 'Could not save motion trigger settings' + }, + + calibration: { + title: 'Calibration wizard', + backButton: 'Back', + stepCount: 'Number of steps', + nextButton: 'Next', + applyButton: 'Apply' } }, @@ -232,16 +244,16 @@ var messages = { title: 'Verbinding configuratie', accesspoint: 'Access point inschakelen', - accesspointhint: 'Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.', + accesspointHint: 'Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.', stationmode: 'Verbinding met WiFi maken', - stationmodehint: 'Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.', + stationmodeHint: 'Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.', ssid: 'SSID', password: 'Wachtwoord', dhcp: 'Gebruik DHCP', - dhcphint: 'Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.', + dhcpHint: 'Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.', ipaddress: 'IP adres', subnetmask: 'Subnet masker', @@ -256,6 +268,10 @@ var messages = { pinsTitle: 'Hardware aansluitingen', mapsTitle: 'Google Maps API', firmwareTitle: 'Firmware bijwerken', + calibrateTitle: 'Kalibratie', + + calibrateButton: 'Kalibreer treden', + calibrateHint: 'Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen', ntpServer: 'NTP server', ntpInterval: 'Ververs interval (in minuten)', @@ -290,6 +306,14 @@ var messages = { searchLocation: 'Kan locatie coordinaten niet bepalen', applyTimeTriggers: 'Kan tijd trigger instellingen niet opslaan', applyMotionTriggers: 'Kan beweging trigger instellingen niet opslaan' + }, + + calibration: { + title: 'Kalibratie wizard', + backButton: 'Terug', + stepCount: 'Aantal treden', + nextButton: 'Volgende', + applyButton: 'Toepassen' } } } \ No newline at end of file diff --git a/web/site.scss b/web/site.scss index b9651cf..4e5ad9f 100644 --- a/web/site.scss +++ b/web/site.scss @@ -165,11 +165,14 @@ a.button } -.tabs +.navigation { clear: both; margin-top: 3rem; +} +.tabs +{ &>.button { margin-left: -1px; @@ -304,8 +307,8 @@ a.button { color: black; position: absolute; - top: 5px; - left: 5px; + top: 4px; + left: 4px; width: 6px; height: 6px; } @@ -418,6 +421,30 @@ label } + +@media #{$mediumScreen} +{ + .horizontal + { + label + { + display: inline-block; + } + + input[type=text], input[type=number], input[type=password], textarea + { + display: inline-block; + float: right; + width: 50%; + } + + &:after + { + clear: both; + } + } +} + .hint { display: block; @@ -600,4 +627,15 @@ label { width: 8em; } +} + + +.fade-enter-active, .fade-leave-active +{ + transition: opacity .5s; +} + +.fade-enter, .fade-leave-to +{ + opacity: 0; } \ No newline at end of file From 1a131c96bf6aa405537d91e6d47856f7f85411cb Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Wed, 31 Jan 2018 21:03:08 +0100 Subject: [PATCH 32/43] Added #15: GET API for changing values --- API.md | 23 + src/assets/css.h | 179 +- src/assets/html.h | 315 +-- src/assets/js.h | 4616 +++++++++++++++++++++--------------------- src/assets/version.h | 6 +- src/main.triggers.h | 19 +- src/server/api.cpp | 52 + src/stairs.cpp | 18 + src/stairs.h | 1 + web/dist/bundle.js | 2 +- 10 files changed, 2663 insertions(+), 2568 deletions(-) diff --git a/API.md b/API.md index a37ddc6..661c98f 100644 --- a/API.md +++ b/API.md @@ -1,5 +1,6 @@ # API +- [GET /api/apply](#get-apiapply) - [GET /api/version](#get-apiversion) - [GET /api/connection/status](#get-apiconnectionstatus) - [GET /api/connection](#get-apiconnection) @@ -14,6 +15,28 @@ - [POST /api/triggers/motion](#post-apitriggersmotion) - [POST /api/firmware](#post-apifirmware) + +## GET /api/set + +Intended for integration into scripts or home automation systems, like Domoticz, where it's often easier to perform GET calls than it is to post JSON data. + +The following query parameters are supported: + +| Parameter name | Description | +| -------------- | - | +| value | Brightness value from 0 to 255. Applied to all steps. | +| percent | Percentage value from 0 to 100. Same behaviour as value. | +| time | Optional. Transition time in milliseconds. | +| from | Optional. Where to start the fade. Can be either 'top' or 'bottom'. If omitted or any other value, all steps change brightness at the same time. | + +Either value or percent is required. + +*Example request* + +```http://192.168.4.1/api/set?percent=50&time=1000&from=top``` + + + ## GET /api/version Returns the unique identifier of the chip and the version of the firmware. diff --git a/src/assets/css.h b/src/assets/css.h index 1ad9748..dc0b926 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -4,92 +4,97 @@ #include const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xad,0x58,0xdb,0x6e,0xa3,0x38,0x18,0x7e,0x15,0xa4, - 0x6a,0xa5,0xe9,0x0a,0x10,0x49,0x4a,0x9a,0x82,0x66,0xb5,0xab,0x7d,0x87,0xbd,0x19,0xe5,0xc2,0x80,0x09, - 0x56,0x09,0x46,0xb6,0xd3,0xb4,0x83,0x78,0xf7,0xfd,0x6d,0x63,0x62,0x83,0xdb,0xe9,0x8c,0x46,0x28,0x07, - 0x7c,0xf8,0xcf,0x87,0xcf,0x6e,0xc4,0xb9,0x1d,0x0a,0xfa,0x1a,0x71,0xf2,0x9d,0x74,0xa7,0xac,0xa0,0xac, - 0xc2,0x2c,0x82,0x91,0xbc,0xa6,0x9d,0x90,0xc3,0x38,0xdb,0x6f,0xe3,0xf4,0x8f,0xf1,0xcf,0x30,0x43,0xb5, - 0xc0,0x2c,0xcc,0x0a,0x5c,0x53,0x86,0xed,0x6d,0xa4,0x6b,0x30,0x23,0x62,0x2c,0x68,0xf5,0x36,0x14,0xa8, - 0x7c,0x3e,0x31,0x7a,0xe9,0xaa,0xa8,0xa4,0x2d,0x65,0xd9,0x5d,0x92,0x24,0xf9,0xf4,0xb7,0xae,0x6b,0x4d, - 0xb9,0x46,0x67,0xd2,0xbe,0x65,0xff,0x61,0x56,0xa1,0x0e,0x85,0xff,0x30,0x82,0xda,0x90,0xa3,0x8e,0x47, - 0x1c,0x48,0xd5,0x16,0xfb,0x4d,0xbc,0xc3,0x67,0xfd,0x7e,0xc5,0xe4,0xd4,0x88,0x6c,0x07,0xf4,0x5a,0x2c, - 0x40,0x98,0x88,0xf7,0xa8,0x94,0x12,0xc4,0xc9,0x06,0x16,0xb5,0xa4,0xc3,0x51,0xa3,0x17,0xc1,0xb6,0xbc, - 0x47,0x55,0x05,0xb3,0xa0,0x8f,0x10,0xf4,0x9c,0xed,0x18,0x3e,0x8f,0x7f,0x9f,0x71,0x45,0x50,0xc0,0x4b, - 0x86,0x71,0x17,0xa0,0xae,0x0a,0xbe,0x9c,0x49,0x17,0x5d,0x49,0x25,0x9a,0xec,0x71,0x7f,0xe8,0x5f,0xef, - 0x07,0xa5,0x87,0xd9,0x2c,0x68,0xaf,0x77,0x8e,0x68,0x10,0xf8,0x55,0x44,0x15,0x2e,0x29,0x43,0x82,0xd0, - 0x2e,0xeb,0x68,0x87,0xc7,0x6f,0x2f,0x51,0xd9,0x52,0xf4,0x7c,0x1c,0x2a,0xc2,0xfb,0x16,0xbd,0xe9,0xe1, - 0xbb,0x12,0x44,0x46,0x20,0x11,0xb3,0x4c,0x92,0xdd,0x6d,0x13,0xf9,0xe4,0x67,0xc4,0x4e,0xc0,0x56,0x12, - 0xdf,0x02,0x71,0x23,0x6a,0xb6,0x91,0x2f,0xca,0xb4,0x0d,0xaa,0xe8,0x35,0x4b,0x82,0x24,0x48,0x93,0xfe, - 0x35,0xb8,0xab,0xcb,0x7a,0x5f,0xd6,0xb9,0x76,0x51,0xc6,0x69,0x4b,0xaa,0x60,0x23,0x27,0xc0,0xbc,0x9f, - 0xd2,0xca,0x12,0xc8,0x1a,0x37,0x92,0xb4,0xb8,0x16,0x19,0xba,0x08,0x6a,0x06,0x98,0x32,0xa3,0x1c,0x19, - 0xc7,0xb8,0xc1,0x08,0xb8,0x0e,0x3d,0xe5,0x44,0x29,0xce,0x70,0x0b,0x16,0x78,0xc1,0x66,0x26,0x20,0xe7, - 0xd3,0x50,0x83,0x15,0x44,0x26,0x09,0xb9,0x34,0x36,0xef,0xd9,0x1d,0xbd,0xce,0x12,0x3e,0x4a,0x09,0x0d, - 0xb1,0xf8,0x4a,0x6a,0xc2,0x05,0x12,0x17,0x3e,0x94,0x2d,0x46,0x0c,0x02,0x53,0x34,0xb6,0xcd,0xb4,0x43, - 0x3e,0xa3,0xb5,0x8f,0xe6,0xac,0x06,0x2a,0xc0,0x8e,0x17,0x81,0x73,0x2d,0x68,0x92,0x4b,0xda,0xc9,0xac, - 0xaf,0xbd,0x29,0x88,0x49,0x57,0x91,0x12,0x09,0xca,0x66,0x3f,0x93,0x4e,0x45,0x5c,0xd1,0xd2,0xf2,0x39, - 0xd7,0x5c,0x95,0xff,0x4c,0x08,0x6a,0x5f,0xaa,0x94,0x62,0xa8,0x22,0x17,0x9e,0xa5,0xc9,0x1f,0xae,0x6d, - 0xe2,0x54,0x6a,0xf2,0x31,0xbf,0x6f,0x15,0x12,0x28,0xd2,0xc3,0x5f,0xc1,0x89,0x1d,0x2e,0x05,0xae,0x8e, - 0x9e,0x4c,0xdb,0x3d,0xed,0x7f,0x86,0x16,0xe8,0x61,0x93,0x5b,0x46,0xd6,0x89,0xe1,0xb7,0x5f,0x10,0x0d, - 0xc2,0xd8,0x27,0x5b,0xfd,0xb4,0xfb,0x19,0x62,0x98,0x31,0xca,0x7c,0x74,0x4a,0x08,0xf7,0xb8,0xb8,0x40, - 0x46,0x77,0x61,0x5c,0x36,0xb8,0x7c,0x0e,0x62,0x19,0xd9,0x8c,0xb6,0x61,0xdc,0x51,0x01,0x94,0x4b,0x95, - 0x9d,0x61,0xdc,0xa3,0x0e,0xb7,0x81,0xfe,0x89,0x64,0x52,0x2f,0x86,0xb4,0x34,0x61,0x2c,0x9d,0x43,0x2d, - 0x2a,0x57,0xc4,0x3a,0xd0,0x22,0x9c,0xb8,0x34,0xbb,0x90,0x74,0xfd,0x45,0x7c,0x13,0x6f,0x3d,0xfe,0xca, - 0x2f,0xc5,0x99,0x88,0x63,0xc8,0x71,0x0b,0xca,0x1a,0xab,0x49,0x7b,0x69,0xcb,0xdd,0x6d,0x36,0x9b,0x85, - 0xd7,0x77,0x90,0x66,0x56,0x4e,0x93,0x8e,0x63,0x01,0x79,0x2d,0xf7,0xb0,0x53,0x81,0xbe,0x6c,0xd3,0x34, - 0x34,0x9f,0x78,0x73,0x1f,0x9a,0x05,0x91,0x5c,0xb1,0x33,0xab,0x92,0x50,0x3e,0xf1,0xee,0x36,0x9f,0xbc, - 0x4b,0x24,0x39,0xdc,0x87,0x7a,0x6e,0xbb,0xd8,0xbe,0x49,0xef,0x8d,0xf9,0x62,0x54,0xca,0x1c,0x0e,0xa7, - 0xd7,0x6c,0x7a,0x75,0x27,0xdd,0x39,0xcb,0x0e,0xdd,0xe5,0x5c,0x60,0x76,0xb4,0x87,0x7a,0xc4,0xf9,0x15, - 0x34,0x3f,0x7a,0xec,0x15,0xaf,0x29,0x4c,0x33,0x1e,0xda,0xb2,0xce,0x1e,0x43,0xf9,0x8d,0x18,0x46,0x1f, - 0xdb,0xf8,0xd6,0x64,0xd4,0xb0,0x99,0xf3,0x5a,0x7b,0x69,0x8c,0x6d,0x6a,0xcc,0xe4,0x35,0xe1,0x1c,0x67, - 0xd3,0xcf,0x5a,0x76,0x7f,0x29,0x30,0xc5,0x1c,0x48,0x03,0x47,0xd3,0xfb,0xaa,0xaa,0xca,0xed,0x4e,0xf0, - 0x90,0xc8,0x27,0x2f,0x2f,0x8c,0xc3,0x74,0x4f,0x49,0x07,0x1d,0xcd,0xe9,0x61,0xaa,0xca,0x19,0x67,0xd5, - 0xb4,0xbc,0xf0,0xd9,0x57,0xee,0x5b,0x43,0x5f,0x20,0x8e,0x9d,0x85,0xce,0x3a,0x67,0x99,0xc7,0x37,0x7a, - 0x95,0xc7,0x35,0xef,0x4e,0x28,0x52,0xc3,0x3b,0x9a,0xa5,0x89,0x7c,0x72,0x7a,0x11,0x52,0x9b,0x2c,0xf9, - 0x3d,0x01,0xf7,0xd9,0x40,0x32,0x52,0x95,0x65,0xe9,0x48,0xb5,0x3d,0xc8,0xc7,0xc8,0x12,0xf5,0x8c,0x40, - 0x25,0x7e,0xf3,0x39,0xd5,0xd9,0xb5,0xdd,0xa7,0x68,0xb3,0xdc,0xe5,0x7a,0xc3,0x8c,0x66,0xfe,0xd1,0xdf, - 0x6e,0x76,0x47,0xbe,0xfd,0xe3,0xb6,0xd8,0x8f,0x68,0x62,0xea,0x87,0x28,0xb1,0x80,0x4e,0xf7,0x51,0x2b, - 0x55,0x0b,0xfe,0x32,0x34,0x6c,0x48,0x20,0x6b,0xd0,0xa2,0x9c,0x25,0xee,0xf2,0xac,0x26,0x8c,0x8b,0xa8, - 0x6c,0x48,0x5b,0x39,0x5b,0x93,0x75,0x19,0x54,0x25,0x0b,0x7e,0x17,0x14,0x5a,0x34,0x13,0x58,0xb0,0x52, - 0xe5,0x4f,0x6d,0x5c,0x32,0x95,0x26,0x5a,0x03,0x92,0xfc,0x7b,0x04,0xfd,0x04,0xbf,0x66,0xe0,0x32,0x30, - 0x15,0x87,0xb9,0x29,0x1e,0x64,0x37,0xb3,0x60,0xe5,0xa1,0x17,0xb9,0xb2,0x15,0x6a,0xc9,0xa9,0xcb,0x4a, - 0xac,0xb2,0x6f,0x01,0xcb,0x46,0xa7,0xa1,0xfc,0x3b,0xe3,0xa7,0x99,0x6d,0x4d,0x5e,0x71,0x95,0xcf,0x28, - 0xce,0x30,0xdf,0xef,0xf7,0x9f,0x03,0x27,0x7e,0xf2,0x7a,0x4d,0xaa,0x8a,0x87,0xb2,0x24,0xc0,0x86,0xd1, - 0x95,0xc5,0x8d,0x81,0xa7,0x47,0x54,0x1c,0x96,0xb0,0x71,0x93,0x4c,0xe8,0xd0,0x06,0xdf,0x8b,0x6a,0x63, - 0x2a,0x55,0x9c,0x82,0xf4,0x93,0xf2,0x13,0x5a,0xd6,0xb0,0x74,0x05,0xf8,0x7e,0x5a,0xad,0x41,0x87,0xd1, - 0x5a,0x85,0x20,0x3e,0x63,0xce,0xd1,0x09,0x0f,0xd7,0x86,0x08,0xac,0xb0,0x3c,0xce,0x7a,0x86,0xdd,0x65, - 0xb1,0x42,0x02,0x8e,0xbe,0x4f,0x8f,0x3b,0xb4,0x83,0x4c,0x56,0xdd,0x7f,0x6a,0xdf,0xfe,0x4a,0xbc,0x50, - 0xf7,0xc2,0xe5,0x99,0x41,0x35,0x6e,0x95,0x18,0xb9,0xcd,0xb9,0xa3,0x57,0x86,0xfa,0x71,0x85,0x29,0x5c, - 0x74,0x30,0x78,0x4a,0xf8,0x47,0x78,0x70,0x0f,0x3e,0x34,0x78,0x50,0xfe,0xf7,0x40,0xe8,0x89,0x61,0x8b, - 0x0a,0x7c,0x63,0xa7,0xde,0xfc,0x4a,0xd9,0x39,0xa6,0x1c,0x07,0x81,0x2e,0xc0,0x5a,0xed,0x14,0xcb,0x10, - 0x8e,0x13,0x51,0xfd,0x8d,0xab,0xa5,0x36,0xab,0x71,0x47,0xab,0x7d,0x22,0x1f,0x43,0x02,0x44,0x40,0x45, - 0x8b,0x2b,0xb3,0xd5,0xbc,0x0f,0x93,0x6d,0xc1,0x57,0xc0,0xb7,0xa5,0x57,0x5c,0x8d,0x2b,0x24,0xe5,0xbe, - 0x4b,0xac,0xa7,0xce,0x43,0x4b,0x4c,0xbc,0xdc,0x68,0x16,0x5a,0x07,0xc8,0x35,0x66,0x97,0x59,0x97,0xce, - 0x19,0x02,0x7f,0xb4,0xc5,0x2d,0x83,0xef,0x65,0xa1,0xf1,0x2b,0x3c,0x8b,0x62,0xe9,0xad,0x1a,0x86,0x9d, - 0x43,0x9b,0x05,0x5c,0x90,0xd0,0xc9,0x8d,0x0e,0x43,0xe6,0x07,0xd2,0x3d,0xf8,0xa4,0x53,0x65,0xd0,0xef, - 0x26,0xd7,0x50,0x13,0x24,0x5f,0x43,0x94,0xc3,0xbd,0xa9,0xb0,0x9a,0xb8,0xcc,0xfa,0xad,0x86,0x39,0xb9, - 0x60,0x70,0x98,0x86,0x83,0xfa,0x39,0x63,0x14,0x10,0x35,0xfe,0x12,0x3d,0xa4,0x15,0x3e,0xdd,0xdb,0x1a, - 0x2a,0x7c,0x99,0xb8,0x88,0xc8,0x01,0x44,0x96,0xde,0x92,0x54,0x64,0xa2,0xc5,0x2a,0x93,0x70,0xee,0x1e, - 0x7f,0x01,0x15,0x2e,0x11,0x9e,0x07,0x17,0xdd,0x8a,0x96,0x53,0xa5,0xa6,0xbc,0x4a,0x20,0x6a,0x0c,0x04, - 0xff,0xf4,0x66,0x5b,0x52,0xb0,0xcf,0x09,0x1f,0x1d,0x55,0xd8,0xaa,0x08,0xaa,0xa3,0x6b,0xb3,0x19,0x6e, - 0x7d,0x63,0x7b,0x5b,0x04,0x8d,0xb0,0xd9,0x4e,0x31,0xca,0x49,0x0b,0x59,0xe8,0x5c,0x5b,0x2c,0x56,0xee, - 0xec,0x3e,0xb4,0xc6,0x25,0xeb,0xad,0x37,0xc1,0x95,0x10,0x0f,0x83,0xbd,0xe2,0x81,0xcd,0xda,0x98,0x84, - 0x3c,0x7a,0x32,0x32,0x7f,0x8f,0xe7,0x5e,0x3e,0xa3,0x5b,0x64,0x9c,0xea,0x32,0xf9,0x76,0x61,0x0f,0x65, - 0x44,0x5d,0x9b,0x22,0x5d,0x93,0x06,0xe7,0x38,0xab,0x9b,0x66,0x03,0xd5,0x76,0x41,0xd5,0x6d,0xbc,0x96, - 0x54,0x0b,0x7b,0x4f,0xe7,0xe1,0x96,0x22,0xa9,0xfb,0xb0,0xc0,0x29,0xeb,0x8e,0x3d,0xc6,0x00,0x8d,0x68, - 0x2f,0x73,0x8f,0x3b,0xe0,0x23,0xb5,0xb0,0x33,0x1f,0x7c,0xfb,0x20,0xa7,0x00,0x20,0x0c,0xab,0x96,0xcf, - 0x05,0xee,0x1d,0x52,0x3b,0x2b,0x2e,0xd8,0x0c,0xcc,0x7d,0x95,0x5c,0x6e,0x0d,0x26,0xca,0xb7,0xdb,0x16, - 0x67,0xeb,0x83,0x61,0x11,0xc4,0x2f,0xa8,0xbd,0xe0,0x1f,0x5c,0x46,0xc4,0x2a,0x28,0x6f,0xf6,0x1a,0xdf, - 0xa3,0x6e,0x02,0xd8,0x2c,0x18,0xa2,0x2b,0x2e,0x9e,0x09,0x68,0xdd,0xf7,0x00,0xfb,0x50,0xa7,0x3a,0x9c, - 0x6c,0x79,0x73,0xfe,0x98,0x42,0xa4,0x6c,0xbe,0xc0,0x6a,0x70,0x34,0x52,0x83,0xeb,0xd4,0xb2,0x50,0xbd, - 0xe6,0x94,0x65,0x86,0x95,0x7e,0x8f,0x44,0x03,0x45,0xe0,0x5d,0xfe,0x7e,0x79,0xb6,0xd6,0xbd,0xc9,0xd6, - 0x7f,0x6f,0x62,0xcb,0x32,0x5d,0x86,0xb9,0xed,0xdd,0x12,0xe8,0x4c,0xbf,0x47,0x2a,0xc1,0x27,0x61,0x7e, - 0x27,0x93,0xe9,0x76,0xc0,0x83,0x48,0x7e,0x08,0xa7,0x56,0xbe,0xea,0xa8,0xbc,0xf3,0xb0,0x2b,0x83,0x27, - 0x52,0x15,0x6e,0xb7,0xd0,0xfb,0xa8,0xaf,0x2f,0x06,0x1f,0x5e,0x33,0x27,0xcf,0xd1,0x77,0xd3,0x31,0xac, - 0xf1,0xf8,0x84,0xc9,0xf3,0xf9,0xe6,0x57,0xd2,0x32,0xed,0xc4,0xd5,0xe7,0xc3,0x32,0xeb,0xe5,0x17,0xe8, - 0xfa,0x62,0xd5,0xad,0x4f,0x5e,0xc0,0x7a,0x89,0xa9,0x83,0x9f,0x4c,0x66,0x7d,0xcf,0xa8,0xb2,0x64,0xf4, - 0xf3,0x35,0x58,0xca,0x37,0x67,0xac,0xed,0x91,0x5a,0xdf,0x5f,0x2f,0x0e,0x20,0xf3,0x11,0xc4,0x31,0xc0, - 0x2e,0x91,0xcf,0x6c,0x20,0x5d,0x39,0x14,0x95,0xe9,0x7c,0xba,0xb4,0xbc,0xbd,0xb7,0x78,0x40,0xe9,0xc1, - 0x31,0xde,0x54,0x4b,0x3f,0x00,0x92,0xea,0x22,0x36,0xbe,0x62,0xfc,0x5c,0xa1,0x37,0xbe,0xce,0x7a,0x33, - 0x63,0x90,0xa3,0xde,0x75,0x80,0xa9,0xff,0x01,0x2a,0xd5,0x64,0x08,0xe5,0x17,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xad,0x59,0xdb,0x6e,0xa3,0x38,0x18,0x7e,0x15,0xa4, + 0x6a,0xa5,0xe9,0x0a,0x10,0x21,0x25,0x4d,0x41,0xb3,0xda,0xd5,0xbe,0xc3,0xde,0x8c,0x72,0x61,0xc0,0x04, + 0xab,0x04,0x23,0xe3,0x34,0xcd,0x20,0xde,0x7d,0x7f,0xdb,0x98,0xd8,0xe0,0x74,0x3a,0xa3,0x11,0x6a,0x12, + 0x7c,0xf8,0xcf,0x87,0xcf,0x6e,0xcd,0x4f,0xcd,0x90,0xd3,0xf7,0xa0,0x27,0xdf,0x49,0x7b,0x4c,0x73,0xca, + 0x4a,0xcc,0x02,0x18,0xc9,0x2a,0xda,0x72,0x31,0x8c,0xd3,0x5d,0x1c,0x26,0x7f,0x8c,0x7f,0xfa,0x29,0xaa, + 0x38,0x66,0x7e,0x9a,0xe3,0x8a,0x32,0x6c,0x6e,0x23,0x6d,0x8d,0x19,0xe1,0x63,0x4e,0xcb,0xeb,0x90,0xa3, + 0xe2,0xf5,0xc8,0xe8,0xb9,0x2d,0x83,0x82,0x36,0x94,0xa5,0x0f,0x51,0x14,0x65,0xd3,0xcf,0xaa,0xaa,0x14, + 0xe5,0x0a,0x9d,0x48,0x73,0x4d,0xff,0xc3,0xac,0x44,0x2d,0xf2,0xff,0x61,0x04,0x35,0x7e,0x8f,0xda,0x3e, + 0xe8,0x81,0x54,0x65,0xb0,0xdf,0x84,0x5b,0x7c,0x52,0xef,0x17,0x4c,0x8e,0x35,0x4f,0xb7,0x40,0xaf,0xc1, + 0x1c,0x84,0x09,0xfa,0x0e,0x15,0x42,0x82,0x30,0xda,0xc0,0xa2,0x86,0xb4,0x38,0xa8,0xd5,0x22,0xd8,0x96, + 0x75,0xa8,0x2c,0x61,0x16,0xf4,0xe1,0x9c,0x9e,0xd2,0x2d,0xc3,0xa7,0xf1,0xef,0x13,0x2e,0x09,0xf2,0xfa, + 0x82,0x61,0xdc,0x7a,0xa8,0x2d,0xbd,0x2f,0x27,0xd2,0x06,0x17,0x52,0xf2,0x3a,0x7d,0xde,0xed,0xbb,0xf7, + 0xc7,0x41,0xea,0xa1,0x37,0x73,0xda,0xa9,0x9d,0x23,0x1a,0x38,0x7e,0xe7,0x41,0x89,0x0b,0xca,0x10,0x27, + 0xb4,0x4d,0x5b,0xda,0xe2,0xf1,0xdb,0x5b,0x50,0x34,0x14,0xbd,0x1e,0x86,0x92,0xf4,0x5d,0x83,0xae,0x6a, + 0xf8,0xa1,0x00,0x91,0x11,0x48,0xc4,0x0c,0x93,0xa4,0x0f,0x71,0x24,0x9e,0xec,0x84,0xd8,0x11,0xd8,0x0a, + 0xe2,0x31,0x10,0xd7,0xa2,0xa6,0x1b,0xf1,0x22,0x4d,0x5b,0xa3,0x92,0x5e,0xd2,0xc8,0x8b,0xbc,0x24,0xea, + 0xde,0xbd,0x87,0xaa,0xa8,0x76,0x45,0x95,0x29,0x17,0xa5,0x3d,0x6d,0x48,0xe9,0x6d,0xc4,0x04,0x98,0xf7, + 0x53,0x5a,0x19,0x02,0x19,0xe3,0x5a,0x92,0x06,0x57,0x3c,0x45,0x67,0x4e,0xf5,0x00,0x93,0x66,0x14,0x23, + 0xe3,0x18,0xd6,0x18,0x01,0xd7,0xa1,0xa3,0x3d,0x91,0x8a,0x33,0xdc,0x80,0x05,0xde,0xb0,0x9e,0xf1,0xc8, + 0xe9,0x38,0x54,0x60,0x05,0x9e,0x0a,0x42,0x36,0x8d,0xcd,0x3d,0xbb,0xa3,0xf7,0x59,0xc2,0x67,0x21,0xa1, + 0x26,0x16,0x5e,0x48,0x45,0x7a,0x8e,0xf8,0xb9,0x1f,0x8a,0x06,0x23,0x06,0x81,0xc9,0x6b,0xd3,0x66,0xca, + 0x21,0x9f,0xd1,0xda,0x45,0x73,0x56,0x03,0xe5,0x60,0xc7,0x33,0xc7,0x99,0x12,0x34,0xca,0x04,0xed,0x68, + 0xd6,0xd7,0xdc,0xe4,0x85,0xa4,0x2d,0x49,0x81,0x38,0x65,0xb3,0x9f,0x49,0x2b,0x23,0x2e,0x6f,0x68,0xf1, + 0x9a,0x29,0xae,0xd2,0x7f,0x3a,0x04,0x95,0x2f,0x65,0x4a,0x31,0x54,0x92,0x73,0x9f,0x26,0xd1,0x1f,0xb6, + 0x6d,0xc2,0x44,0x68,0xf2,0x31,0xbf,0x6f,0x25,0xe2,0x28,0x50,0xc3,0x5f,0xc1,0x89,0x2d,0x2e,0x38,0x2e, + 0x0f,0x8e,0x4c,0xdb,0xbe,0xec,0x7e,0x86,0x16,0xe8,0x61,0x92,0x5b,0x46,0xd6,0x91,0xe1,0xeb,0x2f,0x88, + 0x06,0x61,0xec,0x92,0xad,0x7a,0xd9,0xfe,0x0c,0x31,0xcc,0x18,0x65,0x2e,0x3a,0x05,0x84,0x7b,0x98,0x9f, + 0x21,0xa3,0x5b,0x3f,0x2c,0x6a,0x5c,0xbc,0x7a,0xa1,0x88,0x6c,0x46,0x1b,0x3f,0x6c,0x29,0x07,0xca,0x85, + 0xcc,0x4e,0x3f,0xec,0x50,0x8b,0x1b,0x4f,0x7d,0x05,0x22,0xa9,0x17,0x43,0x4a,0x1a,0x3f,0x14,0xce,0xa1, + 0x06,0x95,0x0b,0x62,0x2d,0x68,0xe1,0x4f,0x5c,0xea,0xad,0x4f,0xda,0xee,0xcc,0xbf,0xf1,0x6b,0x87,0xbf, + 0xf6,0xe7,0xfc,0x44,0xf8,0xc1,0xef,0x71,0x03,0xca,0x6a,0xab,0x09,0x7b,0x29,0xcb,0x3d,0x6c,0x36,0x9b, + 0x85,0xd7,0xb7,0x90,0x66,0x46,0x4e,0x93,0xb6,0xc7,0x1c,0xf2,0x5a,0xec,0x61,0xc7,0x1c,0x7d,0x89,0x93, + 0xc4,0xd7,0x7f,0xe1,0xe6,0xd1,0xd7,0x0b,0x02,0xb1,0x62,0xab,0x57,0x45,0xbe,0x78,0xc2,0xed,0x6d,0x3e, + 0xba,0x4b,0x24,0xda,0x3f,0xfa,0x6a,0x2e,0x5e,0x6c,0xdf,0x24,0x8f,0xda,0x7c,0x21,0x2a,0x44,0x0e,0xfb, + 0xd3,0x6b,0x3a,0xbd,0xda,0x93,0xf6,0x9c,0x61,0x87,0xf6,0x7c,0xca,0x31,0x3b,0x98,0x43,0x1d,0xea,0xfb, + 0x0b,0x68,0x7e,0x70,0xd8,0x2b,0x5c,0x53,0x98,0x66,0x1c,0xb4,0x45,0x9d,0x3d,0xf8,0xe2,0x13,0x31,0x8c, + 0x3e,0xb6,0xf1,0xad,0xc9,0xc8,0x61,0x3d,0xe7,0xb4,0xf6,0xd2,0x18,0x71,0xa2,0xcd,0xe4,0x34,0xe1,0x1c, + 0x67,0xd3,0xd7,0x5a,0x76,0x77,0x29,0xd0,0xc5,0x1c,0x48,0x03,0x47,0xdd,0xfb,0xca,0xb2,0xcc,0xcc,0x4e, + 0xf0,0x14,0x89,0x27,0x2b,0xce,0xac,0x87,0xe9,0x8e,0x92,0x16,0x3a,0x9a,0xd5,0xc3,0x64,0x95,0xd3,0xce, + 0xaa,0x68,0x71,0xee,0x67,0x5f,0xd9,0x6f,0x35,0x7d,0x83,0x38,0xb6,0x16,0x5a,0xeb,0xac,0x65,0x0e,0xdf, + 0xa8,0x55,0x0e,0xd7,0xdc,0x9d,0x90,0xa4,0x86,0x3b,0x9a,0x25,0x91,0x78,0x32,0x7a,0xe6,0x42,0x9b,0x34, + 0xfa,0x3d,0x01,0xf7,0xd9,0x40,0xd2,0x52,0x15,0x45,0x61,0x49,0x15,0xef,0xc5,0xa3,0x65,0x09,0x3a,0x46, + 0xa0,0x12,0x5f,0x5d,0x4e,0xb5,0x76,0xc5,0xbb,0x04,0x6d,0x96,0xbb,0x6c,0x6f,0xe8,0xd1,0xd4,0x3d,0xfa, + 0xdb,0xcd,0x6e,0xc9,0xb7,0x7b,0x8e,0xf3,0xdd,0x88,0x26,0xa6,0x6e,0x88,0x12,0xb6,0xe8,0x8d,0x1c,0xe5, + 0xc0,0x47,0x0d,0x35,0xe4,0xd0,0x10,0xff,0xd2,0x94,0x4c,0x60,0x20,0x2a,0xd1,0xa2,0xa8,0x45,0xf6,0xf2, + 0xb4,0x22,0xac,0xe7,0x41,0x51,0x93,0xa6,0xb4,0xb6,0x46,0xeb,0x62,0x28,0x0b,0x17,0x7c,0x2f,0x28,0x34, + 0x68,0x26,0xb0,0x60,0x25,0x8b,0xa0,0xdc,0xb8,0x64,0x2a,0x0c,0xb5,0x86,0x25,0xd9,0xf7,0x00,0xba,0x0a, + 0x7e,0x4f,0xc1,0x71,0x60,0xb0,0x5e,0xea,0x2d,0xa3,0x42,0xf4,0x34,0x03,0x5c,0xee,0x3b,0x9e,0x49,0x8b, + 0xa1,0x86,0x1c,0xdb,0xb4,0xc0,0x32,0x07,0x17,0xe0,0x6c,0xb4,0xda,0xca,0xbf,0x33,0x8a,0x9a,0xd9,0x56, + 0xe4,0x1d,0x97,0xd9,0x8c,0xe5,0x34,0xf3,0xdd,0x6e,0xf7,0x39,0x88,0xe2,0x26,0xaf,0xd6,0x24,0xb2,0x84, + 0x48,0x4b,0x02,0x78,0x18,0x6d,0x59,0xec,0x48,0x78,0x79,0x46,0xf9,0x7e,0x09,0x1e,0x37,0xd1,0x84,0x11, + 0x4d,0x08,0xbe,0xa8,0x39,0xba,0x5e,0x85,0x09,0x48,0x3f,0x29,0x3f,0x61,0x66,0x05,0x4e,0x57,0xb0,0xef, + 0xa7,0xd5,0x1a,0x54,0x18,0xad,0x55,0xf0,0xc2,0x13,0xee,0x7b,0x74,0xc4,0xc3,0xa5,0x26,0x1c,0x4b,0x44, + 0x8f,0xd3,0x8e,0x61,0x7b,0x59,0x28,0xf1,0x80,0xa5,0xef,0xcb,0xf3,0x16,0x6d,0x21,0x9f,0x25,0x06,0x98, + 0x9a,0xb8,0xbb,0x1e,0x2f,0xd4,0x3d,0xf7,0xe2,0xe4,0x20,0xdb,0xb7,0x4c,0x8f,0xcc,0xe4,0xdc,0xd2,0x0b, + 0x43,0xdd,0xb8,0x42,0x16,0x36,0x46,0x18,0x1c,0x85,0xfc,0x23,0x54,0xb8,0x03,0x1f,0x6a,0x54,0x28,0x7e, + 0x3b,0x80,0xf4,0xc4,0xb0,0x41,0x39,0xbe,0xb1,0x93,0x6f,0x6e,0xa5,0xcc,0x1c,0x93,0x8e,0x83,0x40,0xe7, + 0x60,0xad,0x66,0x8a,0x65,0x08,0xc7,0x89,0xa8,0xfa,0xc4,0xe5,0x52,0x9b,0xd5,0xb8,0xa5,0xd5,0x2e,0x12, + 0x8f,0x26,0x01,0x22,0xa0,0xbc,0xc1,0xa5,0xde,0xaa,0xdf,0x87,0xc9,0xb6,0xe0,0x2b,0xe0,0xdb,0xd0,0x0b, + 0x2e,0xc7,0x15,0x9e,0xb2,0xdf,0x05,0xe2,0x93,0xa7,0xa2,0x25,0x32,0x5e,0x6e,0xd4,0x0b,0x8d,0x63,0xe4, + 0x1a,0xb9,0x8b,0xac,0x7b,0xd2,0x19,0x22,0x7e,0x28,0x8b,0x1b,0x06,0xdf,0x89,0x42,0xe3,0x56,0x78,0x16, + 0xc5,0xd0,0x5b,0xb6,0x0d,0x33,0x87,0x36,0x0b,0xd0,0x20,0x00,0x94,0x1d,0x1d,0x9a,0x8c,0x5b,0xba,0xe4, + 0x43,0xe9,0x64,0x19,0x74,0xbb,0xc9,0x36,0xd4,0x04,0xcc,0xd7,0x40,0x65,0xff,0xa8,0x2b,0xac,0x22,0x2e, + 0xb2,0x3e,0x56,0x60,0x27,0xe3,0x0c,0x8e,0xd4,0x70,0x5c,0x3f,0xa5,0x8c,0x02,0xae,0xc6,0x5f,0x82,0xa7, + 0xa4,0xc4,0xc7,0x47,0x53,0x43,0x89,0x32,0x23,0x1b,0x17,0x59,0xb0,0xc8,0xd0,0x5b,0x90,0x0a,0x74,0xb4, + 0x18,0x65,0x12,0x4e,0xdf,0xe3,0x2f,0x60,0xc3,0x25,0xce,0x73,0xa0,0xa3,0x5b,0xd1,0xb2,0xaa,0xd4,0x94, + 0x57,0x11,0x44,0x8d,0x06,0xe2,0x9f,0xde,0x6c,0x4a,0x0a,0xf6,0x39,0xe2,0x83,0xa5,0x0a,0x5b,0x15,0x41, + 0x79,0x80,0xad,0x37,0xc3,0xad,0x6f,0xc4,0xb7,0x45,0xd0,0x08,0xeb,0x78,0x8a,0xd1,0x9e,0x34,0x90,0x85, + 0xd6,0xe5,0xc5,0x62,0xe5,0xd6,0xec,0x43,0x6b,0x74,0xb2,0xde,0x7a,0x13,0x5c,0x0a,0xf1,0x34,0x98,0x2b, + 0x9e,0xd8,0xac,0x8d,0x4e,0xc8,0x83,0x23,0x23,0xb3,0x7b,0x3c,0x77,0xe2,0x19,0xed,0x22,0x63,0x55,0x97, + 0xc9,0xb7,0x0b,0x7b,0x48,0x23,0xaa,0xda,0x14,0xa8,0x9a,0x34,0x58,0x87,0xda,0xf8,0xb3,0x17,0x2d,0x61, + 0x4d,0x19,0xf9,0x2e,0x3a,0x5e,0xe3,0xdd,0x2f,0x75,0xa3,0xb9,0xcc,0x11,0x65,0x77,0xa6,0x6f,0x11,0x77, + 0x67,0x81,0x8a,0x3e,0x73,0x72,0x8e,0x44,0x67,0xc5,0x55,0xf7,0x1b,0x52,0xc5,0x29,0xfe,0x64,0xd1,0xba, + 0xed,0x57,0x37,0x64,0x06,0xc2,0x12,0x37,0x09,0xd0,0x73,0x16,0xb6,0xb5,0xe1,0x87,0xe1,0x9b,0x45,0xd4, + 0x4d,0x77,0x03,0xc0,0x55,0x44,0xc0,0xb0,0x40,0x6b,0x6b,0xdc,0x32,0x86,0x00,0x13,0x69,0x27,0x2a,0x50, + 0x6f,0x41,0xb0,0xc4,0x38,0x47,0xf4,0x83,0x6b,0x1f,0x54,0x16,0x80,0x49,0xc3,0x0a,0xf8,0xf4,0x1c,0x77, + 0x16,0xa9,0xad,0x91,0x1d,0x6c,0x3e,0xa4,0xb8,0xfa,0x99,0xd8,0xea,0x4d,0x94,0x6f,0x37,0x4f,0xd6,0xd6, + 0x27,0xcd,0xc2,0x0b,0xdf,0x50,0x73,0xc6,0x3f,0xb8,0x98,0x09,0x65,0x6a,0xde,0xec,0x35,0xde,0xa3,0xae, + 0xd3,0x58,0x2f,0x18,0x82,0x0b,0xce,0x5f,0x09,0x68,0xdd,0x75,0xe0,0x1a,0xd4,0xca,0x3e,0x2f,0x1a,0xff, + 0x5c,0x45,0x74,0x39,0x96,0x36,0x5f,0x20,0x56,0x38,0x26,0xca,0xc1,0x75,0x81,0x31,0x4e,0x38,0x8a,0x53, + 0x9a,0x6a,0x56,0xea,0x3d,0xe0,0x35,0x04,0xe9,0x5d,0xfe,0x6e,0x79,0x62,0xe3,0x0e,0x29,0x76,0xdf,0x21, + 0x99,0xb2,0x4c,0x17,0x83,0x36,0xc8,0x31,0x04,0x3a,0xd1,0xef,0x81,0x2c,0x73,0x93,0x30,0xbf,0x93,0xc9, + 0x74,0x53,0xe2,0xc0,0x65,0x3f,0x04,0x95,0x2b,0x5f,0xb5,0x54,0xdc,0xff,0x98,0xf5,0xd1,0x11,0xa9,0x32, + 0xb7,0xcc,0x0c,0x53,0x57,0x39,0x83,0x0b,0xb5,0xea,0x53,0xf8,0xe8,0xba,0xf5,0x19,0xd6,0xa7,0x92,0xe9, + 0x64,0x92,0xcd,0xb7,0xe0,0x82,0x96,0x6e,0xaa,0xb6,0x3e,0x1f,0x36,0x1b,0x27,0xbf,0xa9,0xbe,0x19,0xd5, + 0xfb,0xb3,0x35,0xd2,0x45,0x4c,0x1e,0x82,0x45,0x32,0x1b,0x35,0x69,0x74,0xf3,0xd5,0x88,0xd2,0x35,0xa7, + 0xad,0xed,0x90,0x5a,0xdd,0xe5,0x2f,0x8e,0x61,0xf3,0x41,0xcc,0x32,0xc0,0x36,0x12,0xcf,0x6c,0x20,0x55, + 0x39,0x24,0x95,0xe9,0xac,0xbe,0xb4,0xbc,0xb9,0x37,0x7f,0x42,0xc9,0xde,0x32,0xde,0xd4,0x51,0x3e,0x80, + 0xd3,0xf2,0x52,0x3a,0xbc,0x60,0xfc,0x5a,0xa2,0x6b,0xbf,0xce,0x7a,0x3d,0xa3,0xf1,0xb3,0xda,0xb5,0x17, + 0x53,0x15,0x48,0x10,0xc8,0x58,0x0a,0xf4,0x65,0x84,0x1c,0x82,0x80,0x7a,0xc3,0xd3,0xd0,0x20,0x51,0x93, + 0x2a,0x44,0x54,0xfc,0x83,0x81,0x5f,0xbd,0x30,0xe9,0xcd,0xcd,0xd6,0x2e,0x4e,0x87,0x69,0x19,0xc4,0xda, + 0xff,0x0e,0x82,0xfc,0x69,0x53,0x19,0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index f2f656d..b58f1ee 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,158 +4,167 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0x69,0x5b,0xe3,0x38,0x12,0xfe,0x2b,0x6e, - 0xcf,0xee,0x42,0x6f,0x37,0xe1,0x6c,0xa6,0x61,0x81,0x9d,0x9c,0x10,0x48,0x42,0x2e,0xce,0x2f,0xfb,0x28, - 0xb6,0x62,0x0b,0x7c,0x21,0x29,0x09,0x99,0x99,0xfe,0xef,0xab,0xc3,0x87,0xec,0xd8,0x49,0x60,0x7b,0x77, - 0x7a,0x9e,0x67,0xf9,0x40,0x62,0xd5,0xf5,0xaa,0x5c,0x55,0x2a,0xc9,0xce,0xc9,0x87,0xda,0x75,0x75,0xf8, - 0xd0,0xad,0x6b,0x36,0x75,0x9d,0xb3,0x93,0xf0,0x3f,0x04,0xe6,0xd9,0x89,0x0b,0x29,0xd0,0x0c,0x1b,0x60, - 0x02,0xe9,0xa9,0x7e,0x33,0x6c,0x6c,0x7d,0xd5,0xcf,0x4e,0x28,0xa2,0x0e,0x3c,0x3b,0xd9,0x0e,0x3f,0x05, - 0x93,0x07,0x5c,0x78,0xaa,0x53,0x1b,0xba,0x70,0xcb,0xf0,0x1d,0x1f,0xeb,0x9a,0xe1,0x7b,0x14,0x7a,0x4c, - 0xee,0xa7,0x1d,0xf1,0xa7,0xa7,0x58,0xa7,0x08,0xce,0x02,0x1f,0x53,0x85,0x6f,0x86,0x4c,0x6a,0x9f,0x9a, - 0x70,0x8a,0x0c,0xb8,0x25,0x2e,0x3e,0x23,0x0f,0x51,0x04,0x9c,0x2d,0x62,0x00,0x07,0x9e,0xee,0x32,0x15, - 0x0e,0xf2,0x9e,0x35,0x0c,0x9d,0x53,0x9d,0xd0,0xb9,0x03,0x89,0x0d,0x21,0xd3,0x61,0x63,0x38,0x3e,0xd5, - 0x47,0x13,0xcf,0x74,0x60,0xc9,0x20,0x84,0x31,0x12,0x03,0xa3,0x80,0x6a,0x04,0x1b,0x31,0xe1,0x89,0x8f, - 0x6f,0x4b,0x02,0xfb,0x22,0xe7,0x38,0xf2,0xcd,0xf9,0xd9,0x89,0x89,0xa6,0x1a,0x32,0x4f,0x75,0x10,0x04, - 0xba,0xbc,0x9a,0x6e,0x19,0x8e,0x0f,0x9e,0xe5,0x85,0xe1,0x00,0x42,0x4e,0x75,0xcf,0xa7,0x68,0x8c,0x0c, - 0x40,0x91,0xef,0x55,0x19,0x6c,0x80,0x3c,0x88,0xf5,0x42,0x16,0x5d,0x3b,0x0e,0x47,0x7f,0xd3,0x20,0xc6, - 0x3e,0x3e,0xd6,0x54,0xb2,0xf6,0xe1,0x54,0xf3,0x26,0x8e,0xa3,0xfd,0xed,0x6f,0xa9,0xf1,0x92,0xe0,0xd5, - 0xbe,0xe9,0x0c,0x03,0x1a,0xa7,0x55,0x46,0x32,0xba,0xf6,0x8b,0xe1,0x20,0xe3,0xb9,0x14,0x60,0x38,0x15, - 0xde,0xb3,0x91,0x09,0x3b,0xaa,0x71,0xe6,0x82,0x00,0x78,0x11,0x2e,0x17,0x12,0x02,0x2c,0xa8,0x9f,0xfd, - 0xf6,0x5b,0xda,0x58,0x48,0xd0,0xbe,0x7d,0x63,0xae,0x61,0x02,0xcc,0x31,0x6c,0x3a,0xd1,0xff,0xc8,0x2f, - 0x46,0xfe,0x6c,0xb9,0x0b,0xc5,0x18,0x72,0x2d,0xe9,0x6a,0x13,0x50,0x70,0x8c,0x5c,0xa6,0x71,0x3b,0xf0, - 0xac,0x7f,0x8c,0x00,0x81,0x87,0x07,0x9f,0xd1,0x6d,0xe5,0xba,0x3f,0xdb,0xb9,0x3a,0xb7,0xfc,0x32,0xfb, - 0xeb,0x0c,0x6e,0xec,0xfa,0x8d,0xc5,0xbe,0xd5,0xf8,0x65,0x79,0x56,0x2d,0x3f,0xb0,0x8f,0xca,0x7d,0x79, - 0xea,0x5e,0xf0,0x81,0xf3,0xfb,0x7e,0xe3,0xee,0xa2,0x3f,0x1c,0xed,0x3d,0xee,0x98,0x7b,0x8d,0xf9,0x63, - 0xaf,0x52,0x79,0x3c,0x3f,0x42,0x8f,0x83,0xca,0xe5,0xe8,0xae,0xe1,0x3d,0xde,0x5e,0x3a,0x0f,0x77,0xfd, - 0x2f,0x86,0xe1,0x38,0x5d,0x2e,0x70,0x5f,0xb9,0xec,0xd7,0x1b,0x37,0xb0,0x83,0xc9,0x9d,0x59,0xef,0x58, - 0x4f,0xe5,0x5e,0xcb,0x78,0xa8,0x18,0xe5,0xae,0x51,0xae,0x9a,0xbd,0xce,0x41,0xb9,0xb3,0xd7,0xae,0x1e, - 0x58,0x7d,0xf2,0x70,0x79,0x54,0xef,0x98,0xe5,0xee,0x43,0xb9,0x06,0xca,0x35,0x18,0x98,0x37,0x76,0x7b, - 0xf7,0xa5,0xf1,0x34,0xc1,0x56,0x70,0x34,0x30,0xda,0x17,0x96,0xf9,0xf3,0xee,0xfe,0xed,0xfe,0x98,0xde, - 0x04,0x5f,0xe0,0x85,0xd5,0x6e,0xec,0x62,0x7c,0x5e,0x07,0x93,0xc3,0xdb,0x8b,0xda,0xde,0x45,0x7b,0x74, - 0xf1,0xe5,0xe5,0xf2,0xba,0x75,0x81,0xc1,0xa7,0xf1,0xf3,0xaf,0x23,0xf2,0xd0,0x27,0x76,0xfb,0x6b,0xd0, - 0x1a,0x5a,0x37,0x4d,0x6b,0x60,0x4d,0x27,0xed,0xb6,0xff,0x30,0xfb,0x84,0xda,0x0f,0x43,0x7c,0xd8,0xb3, - 0x3b,0x0f,0x6d,0xdc,0x41,0x9d,0xf9,0xac,0xd9,0x72,0xe6,0xb7,0x57,0xa6,0x31,0x9f,0x77,0x89,0x6b,0xf4, - 0xc9,0xfc,0xe6,0xcb,0xce,0xb3,0x75,0x41,0x7b,0xbd,0xc9,0x5e,0xd9,0xec,0x5c,0x36,0x82,0xda,0x73,0xf9, - 0xea,0xa0,0xb9,0xdd,0x6a,0xde,0xb5,0x47,0x7b,0x65,0xd2,0xac,0x18,0x2f,0x3b,0xa8,0x7f,0x0e,0x7b,0xe7, - 0xdd,0xe1,0xe3,0xf8,0xf6,0xb0,0x57,0xdf,0xf9,0x64,0xd5,0xce,0x1b,0x7b,0xd8,0x27,0xe7,0x75,0xab,0xdd, - 0x7b,0x6d,0x96,0x6d,0xef,0xb1,0x8c,0xba,0x9d,0xaf,0x07,0x93,0xa0,0x3f,0xde,0xd9,0xbe,0x76,0x02,0xd2, - 0xaa,0x56,0x82,0xfd,0xf9,0xcb,0x8e,0x61,0x5b,0xb4,0x7a,0x73,0xf3,0x88,0xfb,0xb3,0xc3,0x5e,0xed,0x7a, - 0xbf,0x7e,0x77,0x31,0x78,0x69,0x1c,0x51,0x80,0x1f,0xc1,0xe0,0xea,0xf2,0x1e,0x5e,0xd6,0xcc,0x51,0xcf, - 0x21,0xf5,0x9d,0xab,0xda,0xe1,0x65,0x67,0xfb,0xca,0xef,0x93,0x73,0xfb,0xf5,0xfe,0xaa,0xea,0x54,0xaf, - 0x2e,0x2e,0x9b,0xe3,0xe7,0xa1,0x3d,0x6b,0xdf,0xd9,0xe5,0x43,0xb3,0x32,0xf0,0x9d,0x3e,0x7a,0x7a,0xbe, - 0xbc,0x36,0x77,0x1f,0x6f,0xa6,0x47,0xf3,0xde,0xd1,0x75,0xf0,0x32,0xba,0x08,0x10,0xb8,0xb9,0x05,0xf5, - 0xd1,0x63,0xfd,0x67,0xda,0x6c,0x3e,0xf9,0x95,0xab,0xfb,0x39,0xf1,0xc9,0xae,0x71,0x70,0xfb,0x15,0x8e, - 0x5a,0x75,0x73,0x34,0xdd,0x1b,0x19,0x6d,0x52,0xff,0xd9,0x7a,0x9a,0x54,0xcc,0xe9,0x7d,0x7f,0x70,0x79, - 0xd0,0xf8,0xb4,0x3d,0x7b,0x69,0xde,0xdf,0xe3,0xe6,0xf9,0xcc,0xbd,0xdf,0xff,0x75,0x06,0x8c,0x56,0xcd, - 0x86,0x9d,0xeb,0xa3,0xdd,0xeb,0xa7,0x56,0xef,0xca,0xdc,0x3d,0xb8,0x6d,0xd7,0xaa,0xde,0x83,0x55,0x7d, - 0xbd,0x7d,0x6a,0xee,0x77,0x86,0x70,0xd7,0x1d,0xf8,0xdd,0xda,0xc1,0xd1,0xeb,0xc1,0x00,0xb3,0xe0,0x38, - 0x7a,0xe9,0x7a,0x07,0xd0,0x9f,0x56,0xdb,0x22,0x7a,0xea,0x4e,0x63,0xf8,0x3c,0x98,0xf4,0xdc,0x6a,0x95, - 0x45,0xa2,0xbd,0xcb,0x43,0xfc,0x2f,0x74,0x73,0x43,0xd4,0xa7,0x8d,0x8f,0x22,0xb2,0xd9,0xe8,0x89,0xbd, - 0xc7,0x29,0x53,0x88,0x09,0x8f,0x7b,0x32,0x27,0x14,0xba,0xcd,0x1a,0xcb,0xa8,0x30,0x0d,0xff,0x29,0xa4, - 0xa2,0x71,0x26,0xf8,0x49,0xdb,0x38,0xd6,0x36,0xd8,0xc7,0x82,0x0c,0x1b,0xde,0x90,0x7a,0xf7,0x52,0xf9, - 0x30,0x63,0x79,0x45,0x28,0xa0,0x13,0x92,0xce,0x13,0x96,0x3e,0x1e,0x34,0xc2,0xb4,0x54,0xc6,0x91,0x67, - 0xf2,0x3c,0xe4,0xe5,0xf2,0x98,0x67,0xce,0x96,0x14,0x96,0x8a,0x06,0xe2,0x7b,0x09,0x04,0x25,0xe8,0x81, - 0x91,0x03,0x4d,0x86,0x70,0x23,0xd4,0x04,0xcd,0x0d,0x0e,0xc2,0x44,0x24,0x19,0xd0,0xc3,0xa4,0x0d,0xa7, - 0xaf,0xaa,0x30,0x0c,0x96,0xe5,0x81,0x8f,0x3c,0x5a,0x4a,0xbc,0xa2,0x31,0xc6,0x22,0x3b,0xe9,0x71,0x14, - 0x30,0x63,0x4b,0x74,0x32,0x18,0x42,0x30,0x74,0x76,0x5c,0x39,0xde,0x3b,0x7b,0x0b,0xd2,0x3b,0xd4,0x10, - 0x96,0x98,0x90,0x34,0xb8,0xf9,0xb1,0x78,0x7e,0x44,0x32,0xba,0xbe,0x09,0x33,0xf3,0xcb,0xd3,0x34,0x84, - 0xaf,0x74,0x53,0x41,0x9a,0xad,0x77,0xb2,0xea,0xb2,0xe2,0x6f,0x22,0xcf,0xd2,0x23,0xb0,0xd1,0x75,0x64, - 0x3e,0xbc,0x8e,0x2d,0x85,0xd7,0xcd,0x68,0x4e,0x69,0x4f,0x48,0x9d,0x1f,0x62,0x25,0xaa,0x1b,0x28,0x18, - 0xf1,0x70,0x01,0xd1,0xf5,0x68,0x42,0x69,0x7a,0xf1,0xd8,0x00,0xcc,0x7b,0x53,0xc8,0xa2,0x51,0x7e,0x19, - 0x82,0x91,0xc6,0xa2,0x76,0x43,0xfa,0x6b,0x83,0x2f,0x15,0x72,0x39,0x60,0x0b,0x58,0xc2,0x10,0xd3,0x63, - 0xcc,0xf2,0xba,0xc4,0x0c,0x0e,0x95,0xdc,0x00,0xef,0xb2,0x4d,0x31,0xb2,0x2c,0x96,0x17,0xc5,0xd6,0x63, - 0x8e,0xd8,0x7e,0x34,0xf2,0x7d,0x10,0x24,0x61,0x55,0x8c,0x41,0xe1,0x89,0x51,0x24,0x63,0xdf,0x07,0x87, - 0xac,0x0a,0x4b,0xee,0x82,0xa4,0x27,0x77,0x41,0x5c,0xe7,0xd8,0xce,0x86,0x4b,0xee,0xcd,0xe6,0x25,0x6e, - 0x3f,0x7b,0x43,0xd5,0x4a,0xb7,0x2f,0x54,0x9c,0x9d,0x60,0x16,0x6a,0xbe,0x76,0x2c,0x68,0xa7,0xba,0xc2, - 0x0d,0x1c,0x67,0x40,0x61,0x40,0x86,0x78,0xc2,0x84,0x78,0x97,0xc1,0x13,0x87,0x75,0x54,0x11,0x81,0x4d, - 0x9a,0xaf,0xf9,0x94,0xd1,0x79,0xce,0x09,0x45,0x0a,0xba,0x35,0x54,0x37,0x80,0x43,0x96,0xea,0x1e,0x73, - 0x86,0x3c,0xe5,0x91,0xfb,0x89,0xc3,0xfa,0x19,0x9c,0x29,0xa3,0xcc,0x6f,0x41,0xd4,0x15,0xc5,0x0a,0xd3, - 0x7d,0xce,0x14,0x38,0x13,0xd9,0xe5,0xb4,0x01,0xb5,0x4b,0x63,0xc7,0xf7,0xf1,0x66,0xc4,0x7b,0xcb,0x89, - 0xda,0xb6,0xb6,0xf7,0xe5,0x8b,0xf6,0x77,0x6d,0x77,0x67,0x87,0xbb,0xec,0xaf,0x51,0xdf,0xb3,0x60,0x5d, - 0x6d,0x7a,0x90,0x17,0x4c,0xa8,0x46,0xe7,0x01,0x9b,0x30,0x06,0x1e,0xeb,0xa4,0x34,0x17,0x79,0xa7,0xfa, - 0x0e,0xfb,0x04,0xaf,0xa7,0x3a,0x53,0xa9,0xa7,0xa5,0xe3,0xc9,0x97,0xbc,0x89,0x3b,0x82,0x38,0x81,0x7c, - 0x2b,0x31,0x2e,0x14,0x9e,0x9c,0x59,0x7e,0x48,0xfc,0x36,0xdd,0x1a,0xfb,0x4c,0xc9,0x26,0x27,0x7f,0xd6, - 0x58,0xed,0x84,0xaf,0x1f,0xd9,0x87,0x46,0xd6,0xf5,0x02,0x67,0x2c,0x4d,0xff,0x58,0x17,0x24,0x18,0x32, - 0xf3,0xcf,0x2f,0xc2,0x05,0x25,0x87,0xc9,0x32,0x5f,0xb8,0xda,0x2f,0x64,0x32,0x72,0x11,0x4d,0x9a,0x60, - 0xd6,0xbe,0x3b,0xf3,0x21,0x72,0xe1,0x30,0x64,0x4d,0x65,0x4b,0x52,0x7e,0x38,0x47,0x26,0x67,0x0c,0x1b, - 0x1a,0xcf,0x31,0xde,0x91,0xef,0x3b,0x10,0x78,0x3c,0x09,0x14,0x99,0x68,0x81,0xd4,0x53,0xb1,0x9f,0x62, - 0xa9,0x7b,0xe1,0x4a,0xc8,0xe7,0x27,0x74,0xaa,0xf3,0xc9,0xd7,0x96,0x6e,0x21,0x00,0xf6,0xc4,0xba,0x13, - 0x06,0xc0,0xe2,0x32,0x17,0x2f,0xd3,0xbf,0xff,0xae,0xe5,0x50,0x65,0x2a,0xf2,0x8d,0xc2,0x7e,0x4e,0xe1, - 0x65,0x76,0x9b,0x6c,0xbf,0x85,0x3d,0x48,0xd5,0xd5,0xda,0x01,0x23,0xe8,0x68,0x22,0xc0,0x84,0x73,0xd8, - 0xfd,0x25,0x88,0xab,0xe3,0xce,0xcc,0x57,0x93,0xe6,0x09,0x95,0x09,0x3d,0xe9,0x50,0x91,0xb7,0x5e,0x17, - 0xdb,0x88,0x1c,0xdd,0x0b,0x21,0x92,0xf6,0x11,0xcd,0x20,0x39,0xb1,0x0f,0xce,0xfa,0xd0,0x82,0x0e,0x61, - 0xb7,0xed,0xa0,0xd8,0xb7,0xf1,0x95,0x03,0x3d,0x8b,0xda,0xf1,0xa6,0x4e,0xe6,0x50,0x48,0x55,0xd3,0x28, - 0x5f,0x3c,0x0e,0x68,0x96,0x1e,0xd0,0x51,0x57,0x03,0x19,0x9a,0xc7,0x91,0x5c,0x7c,0x53,0xbe,0xa5,0x6f, - 0xa7,0x90,0xdb,0x8a,0xf7,0x49,0xcb,0xa3,0x6c,0x8d,0xf8,0x0a,0x03,0x3b,0x2f,0xcc,0xd4,0x02,0x00,0xc4, - 0xfa,0x26,0xdb,0x0a,0xb9,0x39,0xfe,0x69,0x71,0xcb,0xc8,0x20,0x40,0x0a,0x95,0x74,0xd9,0x94,0xee,0xc8, - 0xbf,0xdf,0x35,0xc1,0xad,0xac,0x56,0x0b,0x25,0xc3,0x60,0x93,0xc1,0xc5,0x75,0x4d,0xba,0x82,0xef,0xb7, - 0x79,0xb5,0x62,0xda,0x0c,0x5a,0x74,0xf3,0x23,0xff,0x0f,0x59,0x04,0xe9,0x49,0xbb,0xc8,0x36,0xff,0x3c, - 0x04,0xfc,0x40,0x6c,0x85,0x45,0x19,0xe1,0xe5,0x27,0x17,0x6e,0x03,0xbd,0x42,0x53,0x89,0x4c,0x29,0x94, - 0x15,0xde,0xcd,0x17,0x1e,0x4c,0x3c,0x8c,0xc8,0x72,0xd1,0xbd,0x42,0x51,0x12,0xe7,0x56,0x24,0xb9,0x2d, - 0xa7,0xbb,0x72,0xda,0xe3,0x08,0x74,0x76,0xd2,0xe9,0x18,0x57,0xdd,0xc3,0x2b,0xe3,0x8e,0xe2,0x94,0xad, - 0x38,0x89,0x79,0x54,0xc7,0x0a,0xf9,0xc2,0x1b,0x02,0xa7,0x51,0x4a,0xb3,0xe6,0xb8,0x86,0x48,0xe0,0x00, - 0x51,0x32,0x37,0xf9,0xf8,0x67,0x4d,0xac,0xcc,0xef,0x43,0x8f,0xa1,0x03,0x44,0xbd,0xce,0x9f,0x00,0xcb, - 0x59,0x58,0x84,0x53,0x15,0x5d,0x1b,0x2a,0x6f,0x50,0x0a,0x90,0xaa,0x05,0x15,0xc2,0x67,0x13,0xcc,0xc9, - 0xea,0xec,0x73,0x7d,0x8f,0x31,0x2e,0x49,0xbe,0xb6,0x60,0x48,0x25,0xdd,0x0a,0x95,0x74,0x02,0xc9,0x72, - 0x9d,0x43,0xc9,0xf1,0x16,0xa5,0x33,0x68,0x7a,0xab,0xd4,0xde,0x45,0x3c,0x6f,0x42,0x6b,0x4f,0xf0,0x2a, - 0xb8,0x21,0xcb,0x5b,0xd4,0x8e,0x31,0x5a,0xae,0xb4,0x21,0x18,0xde,0xa2,0x92,0xb0,0x35,0x0e,0x2f,0x57, - 0x3a,0x08,0x59,0xde,0xa4,0x76,0xb2,0x22,0x02,0x06,0x93,0x85,0x08,0xc8,0xef,0xdf,0xd6,0xe8,0xc7,0x22, - 0xa3,0x23,0xf6,0x69,0x53,0x76,0xb7,0xc8,0x1f,0xd7,0x97,0x2d,0x62,0x59,0xd2,0x9f,0xa9,0x5d,0x1a,0x4f, - 0xea,0xe4,0xec,0x93,0xef,0xe2,0xf3,0xcb,0x62,0xc7,0xaf,0x31,0x5a,0xc1,0x01,0x81,0xdc,0x6b,0x71,0x93, - 0xf2,0x9b,0x76,0x1c,0x9d,0x28,0x30,0xc4,0x60,0x2a,0xda,0xa1,0xec,0xe2,0x05,0x4c,0x53,0x59,0xb9,0xf2, - 0x8d,0x96,0xcd,0xe8,0x48,0x42,0xea,0x2d,0x5c,0x9a,0x12,0x00,0xd2,0x99,0xa9,0xe1,0xad,0x00,0x23,0x17, - 0x60,0x16,0x16,0xd2,0xc7,0xb2,0xe9,0xd4,0xf3,0x40,0x46,0x75,0x4b,0x5e,0x87,0x27,0x4a,0xa2,0x29,0xad, - 0x08,0x55,0x03,0x31,0xce,0x30,0x1d,0x67,0x29,0x1b,0x1f,0x13,0x87,0xf3,0xde,0x76,0x69,0x87,0xdb,0xf6, - 0x45,0x43,0xb4,0xb4,0xc7,0x75,0x25,0xcf,0x1b,0xbb,0x5c,0x29,0xb5,0xa2,0x0f,0x91,0x4c,0x6b,0x76,0xba, - 0x19,0x8d,0x6f,0x85,0x50,0x9b,0x60,0xe6,0x31,0xf5,0x4e,0xaf,0x81,0x69,0x41,0x28,0x05,0x52,0xe9,0x75, - 0x43,0x27,0xad,0xe8,0x76,0xf3,0xb8,0xd6,0xeb,0x77,0x73,0xf5,0x17,0x77,0xbc,0xe1,0xd4,0xdf,0xd1,0xf3, - 0xc6,0x92,0xef,0xed,0x7a,0x33,0x0a,0x7e,0xa8,0xbe,0xd7,0x55,0xc3,0xfd,0x3b,0x76,0xbe,0xa9,0x34,0x2a, - 0xec,0x7d,0xa5,0xf5,0xef,0xdb,0xfd,0xca,0x10,0x3c,0x16,0xb7,0x65,0x43,0x1a,0xe0,0xe7,0xcc,0x02,0x02, - 0x3f,0x76,0xfe,0x57,0x80,0xbc,0x9c,0x63,0x33,0xc9,0xd9,0x65,0xb4,0x95,0xd1,0x27,0x4e,0x59,0x8a,0x55, - 0x17,0x2e,0x00,0x8c,0xba,0x0e,0x3e,0x13,0xe1,0xec,0xb1,0x5a,0xd6,0x61,0x31,0x47,0x0a,0x6b,0xd8,0x42, - 0x16,0xc3,0x53,0x34,0x17,0x82,0x8c,0x79,0x16,0x36,0x03,0x39,0xfd,0x7c,0x06,0x4e,0x47,0xf9,0x0e,0x9c, - 0xb7,0x76,0xf8,0x19,0x65,0x43,0x3f,0xa8,0xf9,0x33,0x6f,0xa9,0x96,0x9c,0x5d,0x78,0x46,0x4b,0xc5,0x67, - 0x2b,0x80,0x7b,0x13,0x14,0x6d,0x1a,0xfe,0xdf,0x5b,0x14,0xf7,0x16,0xd2,0x95,0xff,0x8d,0xee,0x22,0x55, - 0x1d,0x8a,0x0c,0xff,0xa9,0x3b,0x8c,0xe5,0xa7,0x6d,0xa9,0xa3,0xf3,0x65,0xdd,0x48,0x55,0x7d,0xbc,0x93, - 0x74,0x22,0xea,0x31,0xfb,0x7a,0x5d,0x88,0x22,0xa1,0x3c,0x5d,0x4a,0x2f,0x0a,0xf9,0x3c,0x85,0xab,0x81, - 0xcd,0x15,0xe4,0x20,0x52,0x64,0x2f,0x84,0xbc,0xf2,0xfc,0x7b,0x35,0xba,0xf0,0xa8,0xad,0x10,0x99,0xf2, - 0x3c,0xea,0xcd,0xc8,0x14,0xd9,0x05,0x64,0x4a,0xe7,0x42,0x08,0x32,0x73,0xc5,0xd9,0x78,0xf1,0xea,0x40, - 0xe1,0x2b,0x95,0x9d,0x89,0x90,0x4f,0x8e,0xe7,0x33,0x1a,0x52,0xa1,0xf7,0x21,0x67,0xe6,0x29,0x2c,0x01, - 0x9b,0xd0,0xcc,0xc7,0xb9,0x78,0x22,0x5a,0x31,0xa6,0x58,0x5a,0xe0,0x4a,0xae,0xf2,0xb0,0x25,0xd4,0x95, - 0xf8,0x56,0xdf,0x45,0xd3,0x36,0x82,0x95,0x8a,0x8a,0x6e,0x31,0x17,0xe6,0x0f,0x38,0xc2,0xbb,0xc9,0xd3, - 0x63,0x8b,0x17,0x4e,0xec,0x3b,0x6f,0xbc,0xe1,0x5c,0xd3,0xc2,0x9d,0x56,0x8b,0xf2,0x64,0x24,0x57,0x04, - 0x92,0xf6,0x3a,0x0a,0xf2,0xb4,0xa1,0x80,0x95,0x2e,0xcc,0x62,0x7b,0x9d,0x20,0x40,0x41,0xbe,0x9b,0xd1, - 0x4a,0xbf,0xf0,0xb3,0xe7,0xac,0x2b,0xd3,0xf1,0x39,0x19,0x79,0x90,0xba,0x80,0x3c,0xe7,0x46,0x69,0x4c, - 0x5d,0x2b,0x56,0x13,0x5d,0xf9,0x11,0xab,0xd0,0xff,0x43,0xd8,0x16,0xa0,0x70,0x06,0xe6,0x79,0x98,0x43, - 0xd2,0x3a,0x80,0x23,0x2d,0xb9,0x68,0x63,0xe2,0x7b,0xa0,0x2e,0x9c,0xd6,0xdb,0x3e,0xa1,0xfc,0x8d,0xaa, - 0x3c,0xc4,0x11,0x6d,0x15,0xe4,0xe3,0xc0,0x01,0x06,0xb4,0x7d,0xc7,0xe4,0xcb,0x75,0x81,0x92,0x6e,0xc2, - 0xc3,0xe3,0x9e,0x4f,0x33,0xb6,0x9d,0x3b,0xcf,0x84,0xba,0x32,0x57,0xff,0xd4,0xeb,0x64,0xfc,0x78,0xb7, - 0x60,0x8d,0x9c,0x04,0xfc,0xa9,0x7f,0x03,0x61,0x77,0x06,0x30,0x0c,0x23,0x5a,0xc8,0xa4,0x1f,0xe5,0xca, - 0xa7,0xc2,0xe3,0x90,0x2f,0xbb,0x71,0x57,0xef,0xda,0x18,0x39,0xa1,0x9e,0x88,0xbb,0xc1,0x47,0x7e,0x5c, - 0x3f,0x26,0xae,0x93,0xce,0xe8,0x62,0xdf,0xe2,0x35,0x4a,0xbc,0x7b,0x13,0x3e,0x0a,0x66,0x6e,0xc8,0x10, - 0x45,0x8f,0xba,0xe6,0x89,0xc8,0x40,0x3a,0x74,0x85,0x73,0x3d,0x1a,0x64,0xfd,0xfa,0x23,0x3d,0x79,0x63, - 0xf0,0x06,0x10,0x4f,0x95,0x6e,0x33,0xc1,0x2d,0x09,0xeb,0x14,0x9f,0x44,0x4b,0x92,0x96,0x59,0x3d,0x7a, - 0xd6,0xae,0x40,0xc6,0x6e,0x75,0x8e,0xe5,0x88,0xb4,0xde,0x89,0x87,0xaa,0x2b,0xcf,0x7e,0x62,0x48,0x45, - 0xe0,0x00,0x9a,0x63,0xb9,0x05,0xe8,0x3a,0x13,0xe6,0xc2,0x0b,0xa6,0x84,0xc6,0xff,0xb5,0x09,0xe5,0xf5, - 0x20,0xc5,0x44,0xf8,0x92,0xd0,0x2a,0x13,0x32,0xf2,0x32,0x26,0xb2,0xef,0x0a,0x15,0x35,0x03,0x8e,0x1f, - 0xbd,0x72,0x1a,0xbd,0xae,0xc4,0x69,0x5b,0xd1,0x23,0xb3,0x45,0x50,0x21,0xff,0x5a,0xc8,0x62,0xdd,0x31, - 0xbc,0x78,0xe8,0x4c,0x8b,0x36,0x55,0xd9,0x1d,0x14,0x81,0x00,0x1b,0x76,0x2b,0x96,0x55,0x6b,0x8b,0x20, - 0xb1,0x54,0x8b,0xa9,0xc5,0x00,0x07,0x82,0x37,0x77,0x8f,0xb5,0x90,0xde,0x01,0xf2,0x48,0x36,0xbf,0xd5, - 0x36,0x15,0x79,0xad,0x7a,0xad,0xdc,0xcd,0x5a,0x8b,0xc6,0xd7,0x0b,0xf0,0x58,0xcb,0xe2,0xbb,0x0d,0x09, - 0x8a,0x12,0x9b,0x27,0x37,0xb4,0x68,0x7e,0x30,0x2c,0xe7,0xdb,0x67,0x84,0xb7,0x00,0xe0,0x7a,0x56,0x21, - 0x10,0xb6,0x32,0x10,0xca,0x5d,0x59,0x9d,0x73,0x40,0x44,0xa4,0xb5,0x61,0xc4,0xba,0x96,0x02,0x01,0x41, - 0x64,0x31,0x03,0xa5,0x7b,0xd7,0xae,0x61,0xb6,0x90,0xe2,0x41,0x2d,0xcf,0x27,0x2a,0x79,0x6d,0x48,0x29, - 0x9d,0x4b,0x61,0x05,0x33,0x57,0xd8,0x2d,0x04,0x55,0x6d,0x2d,0x05,0x55,0x6d,0xbd,0x03,0x14,0xd3,0xb9, - 0x12,0x14,0xb7,0x9b,0x02,0x35,0x73,0xcb,0xb2,0xa5,0x5f,0xc0,0x13,0x53,0xd6,0x84,0x92,0x68,0x2a,0x44, - 0xa1,0x18,0xcb,0x80,0x68,0x60,0xf8,0x32,0x81,0x9e,0x31,0xcf,0x81,0x11,0xd3,0xd6,0x06,0x92,0x68,0x5b, - 0x02,0x45,0x31,0xb9,0x98,0xed,0x2e,0x08,0x96,0x65,0x3b,0x27,0x97,0xbb,0xcd,0x2b,0xb8,0x80,0x37,0xa1, - 0xac,0x53,0xfd,0x14,0x3d,0x45,0x48,0x55,0x53,0x5a,0xf1,0x9e,0x6f,0x81,0xdb,0x5e,0xb2,0xeb,0xfb,0xa1, - 0xfa,0xb7,0x54,0x1f,0xbc,0xf8,0x7a,0x2f,0x3f,0xf8,0x1e,0xa3,0xd7,0xe2,0xb3,0xef,0xf0,0xfd,0x69,0x65, - 0x8f,0x12,0xcc,0xc5,0x61,0xa0,0x9c,0xfd,0x08,0xab,0x2f,0x66,0x87,0x9f,0xd9,0xf7,0xb2,0xa3,0x56,0xf7, - 0x56,0x92,0xc5,0xeb,0xd9,0x59,0x91,0xf8,0xb5,0xec,0x85,0x03,0xc5,0xf0,0xd7,0x20,0x0e,0xf0,0xac,0x09, - 0xb0,0x98,0x3f,0x9e,0xc0,0x14,0xc8,0x41,0xfd,0x8c,0xed,0x49,0x88,0xef,0xc0,0x92,0xe3,0x5b,0x9b,0x7a, - 0x53,0xfe,0xe4,0x04,0xfd,0xca,0xdc,0x52,0x2a,0x95,0xf4,0x8f,0x9f,0x59,0x5b,0x87,0x69,0x39,0x08,0x36, - 0x3f,0x2a,0x3f,0x1e,0x91,0x3f,0x1b,0xd9,0x16,0xbf,0x96,0xf9,0x37,0xde,0x76,0xab,0x9a,0x43,0x33,0x00, - 0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0xd9,0x76,0xdb,0x38,0x12,0xfd,0x15,0x46, + 0x3d,0x13,0x3b,0x93,0x78,0x77,0xdc,0xb1,0xdb,0x72,0xb7,0x56,0x5b,0xb6,0x24,0x6b,0xf3,0xfa,0x32,0x07, + 0x24,0x21,0x12,0x36,0x37,0x83,0xa4,0x64,0xa5,0x3b,0xff,0x3e,0x58,0xb8,0x80,0x9b,0x44,0x79,0x32,0x27, + 0x9d,0x73,0x26,0x0f,0x91,0xc9,0xaa,0xba,0xb8,0x28,0x14,0x0a,0x05,0x90,0x3c,0x7d,0xd7,0xbc,0x6e,0x4c, + 0x1e,0x06,0x2d,0x49,0xf7,0x4c,0xe3,0xec,0x34,0xf8,0x1f,0x02,0xf5,0xec,0xd4,0x84,0x1e,0x90,0x14,0x1d, + 0x60,0x17,0x7a,0xd5,0xca,0xcd,0xa4,0xbd,0xf5,0xa5,0x72,0x76,0xea,0x21,0xcf,0x80,0x67,0xa7,0x3b,0xc1, + 0x2f,0x53,0xb2,0x80,0x09,0xab,0x15,0x4f,0x87,0x26,0xdc,0x52,0x6c,0xc3,0xc6,0x15,0x49,0xb1,0x2d,0x0f, + 0x5a,0xc4,0xee,0x97,0x5d,0xf6,0xaf,0x92,0x50,0x9d,0x21,0x38,0x77,0x6c,0xec,0x09,0x7a,0x73,0xa4,0x7a, + 0x7a,0x55,0x85,0x33,0xa4,0xc0,0x2d,0x76,0xf1,0x09,0x59,0xc8,0x43,0xc0,0xd8,0x72,0x15,0x60,0xc0,0xea, + 0x1e,0x81,0x30,0x90,0xf5,0x2c,0x61,0x68,0x54,0x2b,0xae,0xb7,0x30,0xa0,0xab,0x43,0x48,0x30,0x74,0x0c, + 0xa7,0xd5,0x8a,0xec,0x5b,0xaa,0x01,0xb7,0x15,0xd7,0x25,0x8a,0xae,0x82,0x91,0xe3,0x49,0x2e,0x56,0x22, + 0xc1,0x13,0xbd,0xbf,0xc3,0x05,0xe4,0x0f,0xde,0x47,0xd9,0x56,0x17,0x67,0xa7,0x2a,0x9a,0x49,0x48,0xad, + 0x56,0x80,0xe3,0x54,0xf8,0xd5,0x6c,0x4b,0x31,0x6c,0xf0,0xcc,0x2f,0x14,0x03,0xb8,0x6e,0xb5,0x62,0xd9, + 0x1e,0x9a,0x22,0x05,0x78,0xc8,0xb6,0x1a,0x84,0x36,0x40,0x16,0xc4,0x95,0x42,0x95,0x8a,0x74,0x12,0xdc, + 0xfd,0x53,0x82,0x18,0xdb,0xf8,0x44,0x12,0xc5,0xd2,0xbb,0xaa,0x64,0xf9,0x86,0x21,0xbd,0x7f,0x9f,0xb8, + 0xbf,0xcd,0x74,0xa5,0x6f,0x15,0xc2,0x01,0x4d,0x93,0x90,0xa1,0x4d,0x45,0xfa,0x43,0x31,0x90,0xf2,0xbc, + 0xed,0x60,0x38,0x63,0xde,0xd3,0x91,0x0a,0xfb,0x62,0xe3,0xc4,0x05,0x0e,0xb0,0x42,0x5e,0x26,0x74,0x5d, + 0xa0,0xc1,0xca,0xd9,0x9f,0x7f,0x26,0x1b,0x0b,0x04,0xd2,0xb7,0x6f,0xc4,0x35,0xc4,0x80,0x38,0x86,0x74, + 0x27,0xfc,0x3f,0xf4,0x8b,0x92,0xdf,0x5b,0xea,0x42,0x76,0x0f,0x99,0x1a,0x77,0xb5,0x0a,0x3c,0x70,0x82, + 0x4c,0x82,0xb8,0xe3,0x58,0xda,0x6f,0x32,0x70,0xe1,0xd1,0xe1,0x27,0x74,0x5b,0xbf,0x1e,0xcd,0x77,0xaf, + 0xce,0x35,0xbb,0x46,0xfe,0xf5,0xc7,0x37,0x7a,0xeb,0x46,0x23,0x7f,0x35,0xe9,0x65,0x6d,0xde,0xa8,0x3d, + 0x90,0x9f,0xfa,0x7d,0x6d,0x66,0x5e,0xd0,0x1b,0xe7,0xf7,0xa3,0xf6,0xdd,0xc5,0x68,0x22,0xef,0x3f,0xee, + 0xaa,0xfb,0xed,0xc5,0xe3,0xb0,0x5e,0x7f,0x3c,0x3f,0x46,0x8f,0xe3,0xfa,0xa5,0x7c,0xd7,0xb6,0x1e,0x6f, + 0x2f,0x8d,0x87,0xbb,0xd1,0x67,0x45,0x31,0x8c,0x01,0x35,0xb8,0xaf,0x5f,0x8e,0x5a,0xed,0x1b,0xd8,0xc7, + 0xee,0x9d,0xda,0xea,0x6b,0x4f,0xb5,0x61,0x57,0x79,0xa8,0x2b,0xb5,0x81,0x52,0x6b,0xa8,0xc3,0xfe,0x61, + 0xad,0xbf,0xdf,0x6b,0x1c,0x6a,0x23,0xf7,0xe1,0xf2,0xb8,0xd5,0x57,0x6b,0x83,0x87,0x5a,0x13,0xd4,0x9a, + 0xd0,0x51,0x6f,0xf4,0xde,0xde,0x4b,0xfb,0xc9,0xc7,0x9a,0x73,0x3c,0x56,0x7a,0x17,0x9a,0xfa,0xeb,0xde, + 0xc1,0xed,0xc1,0xd4,0xbb,0x71,0x3e,0xc3,0x0b,0xad,0xd7,0xde,0xc3,0xf8,0xbc,0x05,0xfc,0xa3,0xdb,0x8b, + 0xe6,0xfe,0x45,0x4f,0xbe,0xf8,0xfc,0x72,0x79,0xdd,0xbd,0xc0,0xe0,0xe3,0xf4,0xf9,0xab,0xec,0x3e,0x8c, + 0x5c,0xbd,0xf7,0xc5,0xe9,0x4e,0xb4,0x9b,0x8e,0x36,0xd6,0x66,0x7e,0xaf,0x67,0x3f,0xcc,0x3f,0xa2,0xde, + 0xc3,0x04,0x1f,0x0d,0xf5,0xfe,0x43,0x0f,0xf7,0x51,0x7f,0x31,0xef,0x74,0x8d,0xc5,0xed,0x95,0xaa,0x2c, + 0x16,0x03,0xd7,0x54,0x46,0xee,0xe2,0xe6,0xf3,0xee,0xb3,0x76,0xe1,0x0d,0x87,0xfe,0x7e,0x4d,0xed,0x5f, + 0xb6,0x9d,0xe6,0x73,0xed,0xea,0xb0,0xb3,0xd3,0xed,0xdc,0xf5,0xe4,0xfd,0x9a,0xdb,0xa9,0x2b,0x2f,0xbb, + 0x68,0x74,0x0e,0x87,0xe7,0x83,0xc9,0xe3,0xf4,0xf6,0x68,0xd8,0xda,0xfd,0xa8,0x35,0xcf,0xdb,0xfb,0xd8, + 0x76,0xcf,0x5b,0x5a,0x6f,0xf8,0xda,0xa9,0xe9,0xd6,0x63,0x0d,0x0d,0xfa,0x5f,0x0e,0x7d,0x67,0x34,0xdd, + 0xdd,0xb9,0x36,0x1c,0xb7,0xdb,0xa8,0x3b,0x07,0x8b,0x97,0x5d,0x45,0xd7,0xbc,0xc6,0xcd,0xcd,0x23,0x1e, + 0xcd,0x8f,0x86,0xcd,0xeb,0x83,0xd6,0xdd,0xc5,0xf8,0xa5,0x7d,0xec,0x01,0xfc,0x08,0xc6,0x57,0x97,0xf7, + 0xf0,0xb2,0xa9,0xca,0x43,0xc3,0x6d,0xed,0x5e,0x35,0x8f,0x2e,0xfb,0x3b,0x57,0xf6,0xc8,0x3d,0xd7,0x5f, + 0xef,0xaf,0x1a,0x46,0xe3,0xea,0xe2,0xb2,0x33,0x7d,0x9e,0xe8,0xf3,0xde,0x9d,0x5e,0x3b,0x52,0xeb,0x63, + 0xdb,0x18,0xa1,0xa7,0xe7,0xcb,0x6b,0x75,0xef,0xf1,0x66,0x76,0xbc,0x18,0x1e,0x5f,0x3b,0x2f,0xf2,0x85, + 0x83,0xc0,0xcd,0x2d,0x68,0xc9,0x8f,0xad,0x5f,0xbd,0x4e,0xe7,0xc9,0xae,0x5f,0xdd,0x2f,0x5c,0xdb,0xdd, + 0x53,0x0e,0x6f,0xbf,0x40,0xb9,0xdb,0x52,0xe5,0xd9,0xbe,0xac,0xf4,0xdc,0xd6,0xaf,0xda,0x93,0x5f,0x57, + 0x67,0xf7,0xa3,0xf1,0xe5,0x61,0xfb,0xe3,0xce,0xfc,0xa5,0x73,0x7f,0x8f,0x3b,0xe7,0x73,0xf3,0xfe,0xe0, + 0xeb,0x1c,0x28,0xdd,0xa6,0x0e,0xfb,0xd7,0xc7,0x7b,0xd7,0x4f,0xdd,0xe1,0x95,0xba,0x77,0x78,0xdb,0x6b, + 0x36,0xac,0x07,0xad,0xf1,0x7a,0xfb,0xd4,0x39,0xe8,0x4f,0xe0,0x9e,0x39,0xb6,0x07,0xcd,0xc3,0xe3,0xd7, + 0xc3,0x31,0x26,0xc1,0x71,0xfc,0x32,0xb0,0x0e,0xa1,0x3d,0x6b,0xf4,0x58,0xf4,0xb4,0x8c,0xf6,0xe4,0x79, + 0xec,0x0f,0xcd,0x46,0x83,0x44,0xa2,0xbe,0x47,0x43,0xfc,0x1f,0xde,0xe6,0x06,0xcb,0x4f,0x1b,0x1f,0x58, + 0x64,0x93,0xbb,0xa7,0xfa,0x3e,0x95,0xcc,0x20,0x76,0x69,0xdc,0xbb,0x0b,0xd7,0x83,0x66,0xa7,0x49,0x66, + 0x54,0x30,0x0d,0x7f,0x67,0x56,0xe1,0x7d,0x62,0xf8,0x51,0xda,0x38,0x91,0x36,0xc8,0x4f,0xc6,0x86,0xdc, + 0xde,0xe0,0xb8,0xfb,0x89,0xf9,0x30,0x27,0xf3,0xca,0xf5,0x80,0xe7,0xbb,0xc9,0x79,0x42,0xa6,0x8f,0x05, + 0x95,0x60,0x5a,0x0a,0xf7,0x91,0xa5,0xd2,0x79,0x48,0xd3,0xe5,0x09,0x9d,0x39,0x5b,0xdc,0x98,0x03,0x8d, + 0xd9,0xdf,0xdb,0xc0,0xd9,0x86,0x16,0x90,0x0d,0xa8,0x12,0x86,0x1b,0x01,0x12,0x54,0x37,0x28,0x09,0x15, + 0xb9,0xf1,0x8d,0x4a,0x30,0x69,0x83,0xee,0x8b,0x10,0x8a,0x42,0x66,0xb9,0x63,0x23,0xcb,0xdb,0x8e,0xbd, + 0x22,0x11,0xc5,0xa2,0x76,0x92,0xf7,0x91,0x43,0x1a,0x5b,0x82,0x49,0x68,0x30,0xc3,0xc0,0xd9,0x51,0xe6, + 0x78,0x6b,0xef,0x35,0xe8,0xdd,0xa1,0x36,0x6b,0x89,0x18,0xf1,0x06,0x37,0x3f,0x14,0xf7,0xcf,0xe5,0x8a, + 0xa6,0xad,0xc2,0x54,0xff,0xf2,0x90,0x26,0xf0,0xd5,0xdb,0x14,0x98,0xa6,0xf3,0x1d,0xcf,0xba,0x24,0xf9, + 0xab,0xc8,0xd2,0x2a,0x21,0xd9,0xf0,0x3a,0x6c,0x3e,0xb8,0x8e,0x5a,0x0a,0xae,0x3b,0x61,0x9f,0x92,0x9e, + 0xe0,0x98,0xef,0x02,0x25,0x9a,0xf1,0xc9,0x8a,0x86,0x64,0xcc,0x93,0x7a,0x35,0x08,0xc1,0xd4,0x52,0x02, + 0x66,0x48,0xe3,0x0a,0x1e,0x90,0x69,0x44,0x81,0x50,0x24,0xfb,0x9e,0x97,0x5c,0x5f,0x36,0x00,0x71,0xf0, + 0x0c,0x92,0x80,0xe5,0x7f,0x4c,0x80,0x4c,0x60,0xa5,0x0d,0xee,0xd2,0x0d,0xba,0x9a,0xf0,0x15,0x83,0xac, + 0x71,0xb1,0x42,0x24,0x8f,0xba,0xc5,0xaf,0xb7,0x49,0x83,0x13,0x61,0xfa,0x80,0x37,0xb5,0xed,0x61,0xa4, + 0x69,0x64,0xea,0x14,0xb7,0x1e,0x69,0x44,0xed,0x87,0x77,0xbe,0x0f,0x83,0x38,0xf2,0x8a,0x39,0x08,0x3a, + 0x11,0x8b,0xf8,0xde,0xf7,0xe1,0xc1,0x13,0xc7,0x92,0x51,0xe0,0xf2,0x78,0x14,0xd8,0x75,0x4e,0xdb,0xe9, + 0x88,0xca,0x1d,0x6c,0x9a,0x05,0x0f,0xd2,0x03,0x2a,0x26,0xc3,0x03,0x06,0x71,0x76,0x8a,0x49,0x34,0xda, + 0xd2,0x09,0x93,0x55,0x2b,0x82,0x36,0x30,0x8c,0xb1,0x07,0x1d,0x77,0x82,0x7d,0x62,0x44,0x0b,0x11,0x3a, + 0xb7,0x48,0xd1,0x15,0x0a,0x48,0xa7,0x69,0x59,0xe0,0x11,0x39,0x9d,0x96,0x0c,0x48,0x60,0x57,0x02,0xba, + 0x0d,0x0c,0x77,0x29,0xf6,0x94,0x2a,0xe4,0x81,0x87,0xee,0x77,0x0d,0x52,0xf2,0xe0,0x54,0xa6,0x25,0x7e, + 0x73,0xc2,0xc2,0x29,0x02,0x4c,0x96,0x42,0x33,0x60,0xf8,0xbc,0x10,0xea,0x01,0x4f,0xdf,0x9e,0x1a,0xb6, + 0x8d,0x37,0x43,0xdd,0x5b,0x2a,0x94,0x76,0xa4,0xfd,0xcf,0x9f,0xa5,0x7f,0x49,0x7b,0xbb,0xbb,0xd4,0x65, + 0xff,0x0c,0x4b,0xa3,0x4c,0xeb,0x62,0x5d,0x84,0x2c,0xc7,0xf7,0x24,0x6f,0xe1,0x90,0x0e,0x63,0x60,0x91, + 0x62,0x4b,0x32,0x91,0x55,0xad,0xec,0x92,0x5f,0xf0,0x5a,0xad,0x10,0xc8,0x4a,0xd2,0x3a,0xea,0xfc,0xb6, + 0xe5,0x9b,0x32,0xc4,0x31,0xe5,0x5b,0xce,0x31,0x93,0x9b,0x72,0x7a,0xf9,0x2e,0xf6,0xdb,0x6c,0x6b,0x6a, + 0x13,0x90,0x4d,0x2a,0xfe,0x24,0x91,0xf4,0x0a,0x5f,0x3f,0x90,0x1f,0xc9,0x2d,0xeb,0x05,0xaa,0xb8,0x3d, + 0xfb,0xb1,0x2e,0x88,0x39,0xa4,0xfa,0x9f,0x9f,0xa7,0x0b,0x52,0x0e,0xb1,0x25,0xbe,0x30,0xa5,0x3f,0x5c, + 0x5f,0x36,0x91,0x17,0xd7,0xc9,0xa4,0xc2,0x37,0x16,0x13,0x64,0xc2,0x49,0xa0,0x9a,0x98,0x2d,0x71,0xfa, + 0xa1,0x1a,0xa9,0x39,0xa3,0xe8,0x50,0x79,0x8e,0xf8,0xca,0xb6,0x6d,0x40,0x60,0xd1,0x49,0x20,0xd8,0x84, + 0x6b,0x68,0x25,0x11,0xfb,0x09,0x95,0x96,0x15,0x2c,0x96,0xb4,0x7f,0x0c,0x53,0xec,0x4f,0x3e,0x5a,0xb2, + 0xca,0x00,0xd8,0x62,0x4b,0x53,0x10,0x00,0xd9,0x95,0x30,0x5a,0xc9,0xff,0xfa,0x4b,0xca,0x91,0xf2,0xa9, + 0x48,0xf7,0x12,0x07,0x39,0x89,0x97,0xb4,0xdb,0x21,0x5b,0x32,0x6c,0x41,0x4f,0x5c,0xd0,0x0d,0x20,0x43, + 0x43,0x62,0x01,0xc6,0x9c,0x43,0xc6,0xd7,0x45,0x14,0x8e,0x3a,0x33,0x1f,0x26,0xa9,0x13,0x80,0x31,0x9c, + 0x64,0xa8,0xf0,0xa1,0xaf,0xb0,0x9d,0x46,0x0e,0x76,0x26,0x44,0x92,0x3e,0xf2,0x52,0x4c,0x4e,0xf5,0xc3, + 0xb3,0x11,0xd4,0xa0,0xe1,0x92,0x61,0x3b,0x2c,0xf6,0x6d,0x74,0x65,0x40,0x4b,0xf3,0xf4,0x68,0xdf,0xc7, + 0xe7,0x50,0x20,0x15,0xa7,0x51,0xbe,0x79,0x14,0xd0,0x64,0x7a,0x40,0x43,0x5c,0x0d,0x78,0x68,0x9e,0x84, + 0x76,0xd1,0xa0,0x7c,0x4b,0x0e,0x27,0xb3,0xdb,0x8a,0xb6,0x52,0xcb,0xa3,0xac,0x44,0x7c,0x05,0x81,0x9d, + 0x17,0x66,0x62,0x02,0x00,0x6c,0x7d,0xe3,0x65,0x05,0xdf,0x3f,0xff,0x92,0xdd,0x55,0x12,0x0a,0xd0,0x83, + 0xc2,0x74,0xd9,0xe4,0xee,0xc8,0x1f,0xef,0x26,0xd3,0x16,0x56,0xab,0x4c,0xca,0x50,0x48,0x67,0x70,0x71, + 0x5e,0xe3,0xae,0xa0,0x5b,0x72,0x9a,0xad,0x08,0x9a,0xe2,0x15,0x0d,0x7e,0xe8,0xff,0x09,0x89,0xa0,0x4a, + 0x5c,0x51,0x1a,0x24,0x13,0x11,0x5b,0xdb,0x61,0x75,0x13,0x4b,0x23,0x34,0xfd,0xe4,0xd2,0x6d,0xa3,0x57, + 0xa8,0x0a,0x91,0xc9,0x8d,0xd2,0xc6,0x7b,0xf9,0xc6,0x63,0xdf,0xc2,0xc8,0x5d,0x6e,0xba,0x5f,0x68,0xea, + 0x46,0x73,0x2b,0xb4,0xdc,0xe1,0xdd,0x5d,0xd9,0xed,0x69,0x48,0x3a,0xdd,0xe9,0x64,0x8c,0x8b,0xee,0xa1, + 0x99,0x71,0x57,0x70,0xca,0x56,0x34,0x89,0x69,0x54,0x47,0x80,0x74,0xe1,0x0d,0x88,0x7b,0xe1,0x94,0x26, + 0xf5,0x73,0x13,0xb9,0x8e,0x01,0x58,0xca,0xdc,0xa4,0xf7,0x3f,0x49,0x6c,0x65,0x7e,0x1b,0x7b,0x0c,0x0d, + 0xc0,0xf2,0x75,0x7e,0x07,0xc8,0x9c,0x85,0x45,0x3c,0x45,0xd3,0xd2,0x54,0x69,0x81,0x52,0xc0,0x54,0x4c, + 0xa8,0x10,0x3e,0xab,0x60,0xe1,0xae,0x9e,0x7d,0xa6,0x6d,0x11,0xc5,0x25,0x93,0xaf,0xc7,0x14,0x12,0x93, + 0x6e,0x05,0xa4,0xe7,0x43,0x77,0x39,0xe6,0x84,0x6b,0xac,0x03,0x3a,0x87,0xaa,0xb5,0x0a,0xf6,0x2e,0xd4, + 0x59,0x8b,0xad,0xee,0xe3,0x55,0x74,0x03,0x95,0x75,0x60,0xa7,0x18,0x2d,0x07,0x6d,0x33,0x85,0x75,0x20, + 0x5d,0xb2,0xc6,0xe1,0xe5,0xa0,0xe3,0x40,0x65,0x2d,0x58,0x7f,0x45,0x04,0x8c,0xfd,0x4c,0x04,0xe4,0xd7, + 0x6f,0x25,0xea,0xb1,0xb0,0x51,0x99,0xfc,0xea,0x1e,0x19,0x2d,0xf7,0xc7,0xd5,0x65,0x59,0x2e,0x4b,0xea, + 0x33,0xb1,0x4a,0xa3,0x93,0x3a,0x3e,0x1e,0xa5,0x1b,0xfd,0xfc,0xb4,0xd8,0xb7,0x9b,0x44,0x56,0x70,0x86, + 0xc0,0xf7,0x5a,0xb4,0x49,0xfe,0x97,0x74,0x12,0x1e,0x3a,0x10,0xc6,0x64,0xa3,0x4c,0xcb,0xa1,0xf4,0xe2, + 0x05,0x54,0x55,0x58,0xb9,0xf2,0x1b,0xad,0xa9,0xe1,0xa9,0x05,0xc7,0x2d,0x5c,0x9a,0x62,0x02,0xa2,0x33, + 0x79,0x75,0x59,0xc9,0x63,0x13,0x26,0x28,0x7e,0x1d,0x9c,0x2e,0xb1,0xea,0xb3,0xce,0xa0,0xc6,0xec,0x3e, + 0x69,0xfc,0x24,0x2d,0xd9,0xf8,0x10,0x7b,0x96,0x16,0xb1,0x4b,0x4b,0xd9,0x9e,0xcd,0x2a,0x9f,0xa5,0xc5, + 0xac,0xc9,0x75,0xd6,0x2c,0x67,0xb9,0xd5,0x8a,0x82,0x83,0x2b,0x95,0x2c,0x69,0x53,0x88,0xeb,0x52,0x68, + 0xfa,0x98,0x78,0x4c,0x1c,0xd2,0x12,0x9c,0x32,0x46,0x09,0x92,0x42,0x51,0x1b,0x38,0x69,0x45,0x59,0x9b, + 0xa7,0x55,0xae,0xb0,0xcd,0xc5,0x2f,0x2e,0x6d,0x83,0xae,0xbf,0xa1,0xb8,0x8d,0x2c,0xdf,0x5a,0xde,0xa6, + 0x00,0xfe,0x56,0x05,0xae,0x29,0x86,0xfb,0x77,0x2c,0x71,0x13,0xd3,0xa8,0xb0,0xc8,0xe5,0xad,0x7f,0xdf, + 0x32,0x97,0x87,0xe0,0x09,0x1b,0x96,0x0d,0xde,0x00,0x3d,0x73,0x66,0x14,0xe8,0x11,0xf4,0xbf,0x1d,0x64, + 0xe5,0x9c,0x8f,0x71,0xcd,0x01,0x91,0xad,0x8c,0x3e,0x76,0x9c,0x52,0x0c,0x5d,0x98,0xe9,0x89,0xb4,0x0c, + 0x3f,0x15,0xe1,0xf4,0xf9,0x59,0xda,0x61,0x91,0x46,0x82,0x6b,0x50,0x2b,0x16,0xd3,0x13,0x90,0x0b,0x49, + 0x46,0x3a,0x99,0xaa,0x3f,0xa7,0x70,0x4f,0xd1,0xe9,0x0b,0x7f,0x03,0x63,0xdd,0x52,0x3e,0x05,0x36,0xb1, + 0x9d,0xa6,0x3d,0xb7,0x96,0xa2,0xe4,0x6c,0xb7,0x53,0x28,0x75,0x9b,0xac,0x00,0xe6,0x8d,0x53,0xb4,0x3b, + 0xf8,0x7f,0x11,0x51,0x5c,0x44,0x70,0x57,0xfe,0x2f,0xca,0x88,0x44,0x76,0x28,0x6a,0xf8,0xe7,0x28,0x25, + 0x96,0x9f,0x9f,0x25,0x0e,0xc3,0x97,0x95,0x1d,0x0d,0xf1,0x99,0x4e,0x5c,0x72,0x88,0x07,0xe7,0xe5,0xca, + 0x0d,0xc1,0x42,0x78,0xa4,0x94,0xcc,0xfe,0xf9,0x3a,0x85,0x69,0x5f,0xa7,0x00,0x39,0x8c,0x04,0xdb,0x0b, + 0x66,0x2f,0x3c,0xf4,0x5e,0xcd,0x2e,0x38,0x3c,0x2b,0x64,0x26,0x3c,0x84,0x5a,0x9b,0x99,0x60,0x9b,0x61, + 0x26,0x94,0x28,0xae,0x8b,0xd4,0x5c,0x73,0x72,0xbf,0x78,0x19,0xf0,0xe0,0xab,0xc7,0x4b,0x10,0x66,0x1f, + 0x1f,0xb8,0xa7,0x10,0x12,0xa1,0xf7,0x2e,0xa7,0xe7,0x09,0x2e,0x0e,0xe9,0xd0,0xdc,0xc6,0xb9,0x7c,0x42, + 0x59,0x31,0xa7,0xc8,0x9a,0xf1,0x8a,0xaf,0xf2,0xb8,0xc5,0xd2,0x95,0xfc,0x56,0x8f,0xa2,0xaa,0x2b,0xce, + 0x4a,0xa0,0xa2,0x21,0xa6,0xc6,0xf4,0x91,0x45,0x30,0x9a,0x74,0x7a,0x6c,0xd1,0x0c,0x89,0x6d,0x63,0xcd, + 0x01,0xa7,0x48,0x99,0x91,0x16,0xb3,0xaf,0x2f,0xf3,0xd4,0xef,0x26,0xbd,0x8e,0x9c,0x3c,0x34,0xe4,0x90, + 0x1c,0x85,0x49,0x6c,0x97,0x09,0x02,0xe4,0xe4,0xbb,0x19,0xad,0xf4,0x0b,0x3d,0x4d,0x4e,0xbb,0x32,0x19, + 0x9f,0xbe,0x6c,0x41,0xcf,0x04,0xee,0x73,0x6e,0x94,0x46,0xd2,0x52,0xb1,0x1a,0x63,0xe5,0x47,0xac,0x20, + 0xff,0x2f,0x69,0x6b,0xc0,0x83,0x73,0xb2,0xa7,0xcf,0xe1,0x1c,0x88,0xca,0x10,0x0e,0x51,0x72,0xd9,0x46, + 0xc2,0xb7,0x50,0xcd,0x9c,0xbf,0xeb,0xb6,0xeb,0xd1,0xd7,0xa8,0xf2,0x18,0x87,0xb2,0x55,0x94,0x4f,0x1c, + 0x03,0x28,0x50,0xb7,0x0d,0x95,0xae,0xcb,0x05,0x20,0x83,0x58,0x87,0xc6,0x3d,0xed,0x66,0xd4,0x76,0x6e, + 0x3f,0x63,0xe9,0xca,0xb9,0xfa,0x73,0x2c,0x88,0xd1,0x93,0xd9,0x82,0xc5,0xd0,0x77,0xe8,0x33,0xfd,0x36, + 0xc2,0xe6,0x1c,0x60,0x98,0x7c,0xf2,0xca,0x1f,0xe2,0x4e,0x03,0x59,0x7a,0xfb,0x2d,0x76,0x75,0x8a,0x0c, + 0xc8,0xdd,0x1b,0x6a,0xb7,0xe9,0x9d,0xbf,0x81,0x93,0x62,0xbf,0xf0,0x9e,0x0e,0xb0,0xad,0xd1,0x4c,0xc3, + 0x5e,0x9b,0x09,0x1e,0xd1,0x92,0xfe,0xa6,0x84,0xac,0xa4,0x14,0x9d,0x9c,0xf1,0x4a,0xf8,0xfa,0x43,0xc6, + 0x2d,0x85,0xd9,0x33,0x6d,0xb8,0x2c,0x7d,0xc6,0xbe,0x4a,0x3d,0xac,0x97,0xf8,0xcf,0x96,0x83,0x91,0x09, + 0xf0,0x22,0x5b,0xec,0x91,0xf8,0xc4,0x5e,0x23,0x7e,0x37,0xa3,0xb0,0xf9,0xd0,0x53,0xc9,0x27,0xf3,0x4b, + 0x2a,0xa6,0x31,0x03,0xc8,0x8b,0x10,0xcb,0x73,0xd2,0x5e,0xf8,0xe1,0x4f,0xfb,0xc4,0x97,0xfc,0x6c,0x8c, + 0xbe,0xd2,0x7d,0x80,0x91,0x4c,0x9b,0x84,0xf6,0x18,0xe2,0x99,0x50,0x10,0xc7,0xfd,0xe1,0x82,0x32,0x69, + 0x33,0x46,0x89,0x13,0x4a,0x1a,0xa7,0x92,0x53,0x44,0x2f,0x61,0xc5,0xfa,0x33,0xa3,0x82,0x0c,0xaf,0x50, + 0x54,0xee,0xc8,0x46,0xc4,0xca,0x63,0x17,0x37,0x54,0x9e,0x9f,0x01,0x32,0x21,0x4d,0x90,0xba,0xc0,0x2b, + 0xe3,0x2c,0x6a,0x9c,0x21,0xc2,0x10,0x7f,0x26,0x02,0xc2,0x5b,0x54,0x02,0x81,0xe0,0x5d,0xaa,0x55,0x04, + 0xf8,0x4c,0x48,0x11,0xa0,0x88,0x39,0xa7,0xec,0x05,0x45,0x94,0x61,0x87,0xef,0xe7,0x86,0xef,0x76,0x51, + 0xd9,0x56,0xf8,0xf0,0x30,0x4b,0x2d,0xd0,0x2f,0xc5,0x2f,0xc2,0x8e,0x48,0x46,0xb7,0xce,0xa4,0x70,0xd7, + 0x99,0xc9,0x3a,0x10,0x60,0x45,0xef,0x46,0xb6,0x62,0x36,0x67,0x22,0x92,0x00,0x22,0x69,0x31,0xc1,0x31, + 0xd3,0xcd,0xdd,0x84,0x66,0x92,0x8e,0x83,0x2c,0x77,0x49,0xd6,0x29,0x1a,0x3c,0x62,0xd6,0x6d,0x35,0x6b, + 0x83,0x34,0x8b,0xf0,0x7e,0xb9,0x89,0x15,0xa1,0x64,0xdf,0xfe,0x88,0xd9,0x6d,0x93,0xfe,0xd3,0x86,0xca, + 0x47,0x16,0x87,0x1d,0x4f,0x6a,0xf9,0xec,0x88,0x60,0x1d,0x7a,0x14,0x67,0x15,0x3f,0xd6,0xd6,0x5a,0x04, + 0x6b,0x03,0xbe,0x72,0xe4,0x50,0x0c,0x45,0xa5,0x49,0x46,0x58,0x4b,0x69,0x02,0x27,0x6c,0x71,0x2d,0xa2, + 0x83,0xbb,0x5e,0x13,0x93,0x4a,0x08,0x8f,0x9b,0x79,0xfe,0x14,0xc5,0xa5,0x09,0x27,0x30,0x97,0x92,0x76, + 0xe6,0x26,0x6b,0xf7,0x8d,0x94,0x1b,0xdd,0xa5,0x94,0x1b,0xdd,0x37,0x50,0x26,0x98,0x2b,0x29,0xd3,0x76, + 0xd7,0xa0,0x3c,0x37,0x6b,0x7c,0xe3,0x96,0x61,0x1b,0x49,0x4a,0x12,0x8d,0x91,0x0a,0x39,0x0a,0x8d,0xad, + 0x45,0xb1,0x8d,0xe1,0x8b,0x0f,0x2d,0x65,0x91,0x43,0x32,0x92,0x95,0xa6,0x19,0xa3,0x2d,0x21,0x2a,0x34, + 0x59,0x94,0xbf,0x4c,0xe0,0x64,0xf2,0x97,0xf8,0x34,0x87,0x88,0x6b,0x83,0xce,0x15,0xcc,0xb0,0x8e,0x25, + 0x65,0xf2,0xb9,0x80,0x53,0xc4,0x57,0x6c,0x4a,0x5a,0x59,0xbf,0xc6,0xda,0x7a,0xa9,0x02,0xf6,0x87,0xed, + 0x88,0xca,0xbe,0xbc,0xfc,0x6e,0xc5,0xcb,0xcb,0x79,0xef,0x2d,0x67,0xab,0x6e,0xdb,0x49,0x14,0xdd,0xef, + 0x0d,0xf0,0xe2,0xdb,0xbf,0x49,0xe1,0xfe,0x36,0x96,0x6d,0xcb,0x40,0x79,0xce,0x2f,0xbe,0x85,0x63,0x48, + 0x41,0x3f,0xe7,0xcd,0xd7,0x55,0x41,0x4f,0x4f,0xd6,0x1b,0xb6,0x2f,0x1e,0xdd,0x08,0x80,0x91,0xb4,0x5c, + 0xcc,0xc7,0x60,0x99,0x00,0xca,0x45,0xcd,0xd9,0x7a,0x89,0x7a,0x73,0xf4,0x15,0x60,0x95,0xbe,0xf0,0x29, + 0x9d,0x55,0xa5,0xbd,0xca,0x19,0x35,0x94,0xf6,0x97,0x9d,0x32,0xaf,0xbb,0x07,0xb2,0x48,0xf4,0x0b,0xa3, + 0x31,0x66,0xcf,0x19,0xb8,0x23,0x74,0xe0,0xf6,0xb3,0xd2,0xcd,0x0f,0xec,0xd3,0x04,0x81,0x25,0x85,0x08, + 0x06,0x89,0x7e,0xa7,0x20,0x8a,0x12,0xa1,0x97,0x1c,0xc0,0xec,0x97,0x03,0xf4,0x39,0xda,0x14,0xbd,0x16, + 0x3f,0x4a,0x0b,0x3e,0xcd,0x10,0x4e,0x42,0x9c,0x05,0x7b,0xb6,0xc0,0xb1,0x65,0x2c,0x7e,0xf3,0x11,0xfc, + 0xa6,0x3f,0xf9,0x08,0xf7,0xdc,0xb7,0x5c,0xcc,0xbe,0xfc,0x48,0x9b,0x44,0x5f,0x7c,0x64,0x9e,0x4f,0x04, + 0x1f,0x9a,0x19,0xc0,0xd2,0x7c,0xa0,0x91,0xc1,0x7f,0x02,0x33,0xc0,0x6f,0xd2,0xc1,0x21,0xdb,0xc9,0x9a, + 0x43,0x3c,0x24,0x7c,0x78,0xc6,0x3f,0x39,0xdb,0x61,0x5f,0xda,0xfd,0x07,0x28,0x74,0xc5,0xb2,0x7f,0x37, + 0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index d0c5ddc..6fc0bb7 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -5,2311 +5,2315 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x77,0xdb,0x46,0xb2,0x2e,0xfa,0x57, - 0x24,0x1c,0x6f,0x19,0x18,0xb6,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0x7e,0x26,0x4e,0xfc,0x8a,0x2d, - 0x3b,0xc9,0x28,0x1a,0x2d,0x88,0x04,0x25,0xc4,0x24,0xc0,0x00,0xa0,0x64,0x45,0xe4,0xf9,0xed,0xb7,0xbe, - 0xaa,0x7e,0x01,0x84,0x9c,0x64,0xaf,0xbd,0xee,0xf2,0xb2,0x08,0x74,0x37,0xfa,0x59,0x5d,0x5d,0xef,0xde, - 0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x09,0xca,0xb3,0xdf,0xb2,0x49,0x13,0x24,0x49, - 0x73,0xbd,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0xbd,0xb7,0xb7,0x95,0xb3,0x28,0xa7,0xab,0x79, - 0x36,0x96,0x9f,0xa1,0x2e,0x97,0x34,0x61,0x14,0x07,0xa6,0x4e,0x57,0x78,0x9a,0xcd,0xf2,0x22,0xdb,0xdb, - 0x93,0xdf,0x61,0xba,0x98,0x8e,0xe5,0x31,0x3c,0x3e,0xa1,0x76,0xe3,0xdb,0xda,0x1d,0xeb,0xdf,0x61,0xfa, - 0x29,0x2f,0xa5,0xf6,0xcc,0x3d,0x6f,0xc2,0xe6,0x22,0xaf,0x95,0x1d,0x42,0x74,0x53,0x65,0xcd,0xaa,0x2a, - 0x76,0xdc,0xa0,0xa2,0x1b,0xf3,0xbc,0xd3,0x84,0x55,0x74,0x93,0xcf,0xc2,0xe2,0xb8,0x3a,0x89,0x74,0x41, - 0x3c,0x9b,0xbe,0x8f,0x2e,0xd3,0x6a,0x27,0x4f,0x90,0x94,0xdc,0xe8,0xb4,0xf8,0x66,0xa3,0xf2,0x69,0x5c, - 0xa9,0x79,0x99,0x4e,0xb3,0x69,0xbc,0x7b,0xb8,0x19,0xe9,0x4f,0x33,0x7c,0x3a,0x49,0xe7,0xf3,0x30,0x37, - 0x35,0xa8,0x5c,0xb9,0xe7,0x26,0xa2,0x17,0xf9,0x2c,0xd9,0x3d,0x70,0x19,0x1b,0x34,0x53,0x24,0x37,0xb6, - 0xa2,0x66,0xb8,0x48,0x68,0xf2,0x87,0x93,0xa4,0xa0,0xbf,0xcb,0x24,0x08,0x54,0x13,0x1e,0xd0,0xe0,0x8e, - 0xfd,0xb5,0x51,0x45,0x74,0xe3,0xa6,0xb9,0x08,0x0f,0xa3,0x8d,0xea,0xe6,0x07,0xab,0x3a,0xdb,0xa9,0x9b, - 0x2a,0xa7,0x99,0x1c,0xd9,0x71,0x57,0x98,0x05,0x34,0xda,0x24,0x45,0x76,0xb5,0x93,0xd2,0xab,0x2a,0x92, - 0x32,0x4c,0x87,0xcb,0xaa,0x6c,0x4a,0x4c,0xf8,0xb0,0xca,0x7e,0x5f,0x65,0x75,0x43,0x9d,0x36,0xbd,0x42, - 0x7f,0x9b,0xac,0x98,0x86,0x85,0xf2,0x0a,0xca,0xa8,0x6c,0x0e,0xbd,0x15,0x1b,0x3d,0x6d,0xe1,0xfd,0x48, - 0x95,0xf4,0xf3,0x45,0xa4,0x52,0xfa,0xf9,0x2a,0x52,0xe8,0xe6,0x3f,0x23,0x35,0x49,0xaa,0xb0,0x8e,0x46, - 0x93,0xe1,0x43,0x5e,0xb7,0x54,0x4d,0x86,0x93,0x2a,0x4b,0x9b,0x2c,0xf1,0x97,0x49,0x37,0x5b,0xd1,0x6c, - 0x2e,0xb2,0xea,0x3c,0x0b,0x6b,0x95,0x45,0x34,0xc6,0xc9,0xf0,0x71,0x5a,0x4c,0xb2,0x39,0x1a,0xa0,0xaa, - 0xcd,0xeb,0x51,0xf9,0x31,0x2b,0x90,0xf6,0x25,0xd2,0xf2,0xda,0x15,0x3a,0x40,0x02,0x2d,0x4b,0x5f,0xed, - 0x6f,0xaa,0x72,0x91,0xd7,0x19,0xb2,0x29,0x15,0x95,0xd7,0x4b,0xea,0xca,0x14,0xdf,0x51,0x87,0xdd,0xfc, - 0x4e,0xdc,0xf3,0x90,0x00,0x35,0x5d,0xcd,0x9b,0x64,0xf2,0xb7,0x26,0x5c,0x5a,0x0c,0x8e,0x05,0xb0,0x77, - 0x1e,0x56,0x55,0x7a,0x7d,0x42,0xf0,0x9d,0xcc,0x05,0x68,0xa8,0x79,0xfb,0x41,0xee,0x75,0xb1,0x58,0xcd, - 0xe7,0xbb,0x49,0x92,0xf5,0xec,0xb8,0xcc,0x7d,0x51,0xf6,0x34,0xf1,0x4c,0x67,0xde,0xd6,0x4a,0x2a,0x5b, - 0x1c,0x3b,0xc0,0xb6,0x71,0x59,0xe6,0xd3,0x9d,0x03,0x3c,0x47,0x94,0x6e,0x5a,0xdc,0xb5,0x2d,0xee,0xed, - 0x85,0x59,0x72,0x9c,0x9d,0x44,0x0a,0x83,0x8a,0x66,0x65,0x15,0x0a,0xf8,0x12,0x40,0x27,0xd9,0x70,0x9e, - 0x15,0xe7,0xcd,0xc5,0xa8,0x78,0x90,0x8f,0x8a,0xc1,0x20,0x6a,0xa4,0x51,0x54,0xaf,0xb2,0xe3,0xe2,0x44, - 0x15,0xb4,0x86,0xa3,0x6c,0x4e,0x93,0x64,0xbe,0x2c,0x77,0x72,0xda,0x3a,0xd1,0x6b,0x6e,0xc8,0x03,0xc0, - 0x8b,0xb4,0x7e,0x7d,0x55,0xd0,0xfa,0x2c,0xb3,0xaa,0xb9,0xd6,0x9d,0x57,0x65,0xb4,0xb7,0xd7,0xae,0xb4, - 0x3c,0x51,0x25,0x55,0xca,0x40,0x57,0x0b,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0xe6,0xc9,0x56,0xa5,0x4d,0xf9, - 0x8e,0xd6,0xa6,0x38,0x1f,0xb9,0x85,0xbd,0xc9,0x6b,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xd1,0x6a,0x36,0xcb, - 0xaa,0x78,0x1b,0x5a,0xda,0x6b,0x27,0xc5,0x3a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xac,0xac,0x16, - 0x4f,0xd2,0x26,0xed,0xab,0x6b,0x55,0x08,0xbe,0x9b,0xba,0xc9,0x35,0xc5,0xf7,0xf6,0x32,0x9a,0x94,0xba, - 0x01,0x04,0x7b,0xc9,0x9b,0x76,0x07,0x3f,0xe4,0xd9,0xd5,0x5f,0xac,0xd8,0xfb,0x6a,0x6f,0xcf,0x7b,0xa1, - 0x6d,0x82,0x5a,0xc6,0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x9d,0x0d,0xcf,0xf4,0x57,0xe6,0xc9,0xef,0x98,0xf7, - 0x19,0xfa,0x26,0x53,0xdb,0xd7,0xa5,0x9a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x56,0x8b,0xb3,0xfe,0x69,0x2e, - 0x38,0xa7,0x53,0x5c,0xd6,0x32,0x26,0x84,0x5a,0xbf,0x37,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85, - 0xbf,0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0x67,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1, - 0xe7,0xe5,0xd9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80, - 0x11,0xf6,0xf6,0x68,0x97,0x0f,0x97,0xf9,0x52,0xbe,0x7c,0xff,0xf6,0xc5,0xbb,0x2c,0xad,0x26,0x17,0x6f, - 0xd2,0x2a,0x5d,0xd4,0x7f,0x11,0x16,0x3a,0x5f,0x75,0x60,0xad,0x93,0x2b,0xcb,0x9a,0x16,0xd3,0xb4,0x9a, - 0x3e,0xaa,0xca,0xab,0x3a,0xab,0x9e,0x16,0x97,0xf1,0xd6,0xf9,0x1a,0x7a,0x2d,0xd9,0x65,0x2b,0xd2,0xcb, - 0xfc,0x3c,0x6d,0xca,0x6a,0xbd,0x0e,0xde,0x66,0xe9,0xa4,0x79,0x95,0x36,0xf9,0x65,0x46,0x5d,0x49,0x6c, - 0x16,0xf6,0xe6,0x74,0x35,0x69,0x68,0x6c,0x7d,0x9d,0xbd,0xca,0x8b,0x69,0x79,0xd5,0x9f,0x37,0x2d,0x27, - 0xab,0x45,0x56,0x34,0x84,0x84,0xcb,0xea,0x69,0x3a,0xb9,0x88,0x53,0xc5,0x07,0x85,0xed,0xde,0x4e,0x16, - 0xb6,0x4e,0xfb,0x46,0x55,0x3d,0x04,0x0d,0x8e,0xf7,0x1e,0xdc,0xda,0x8c,0xf9,0xdc,0xcf,0x98,0x3a,0x00, - 0x45,0xc2,0xaf,0xcd,0xc6,0x61,0x3c,0xa2,0x04,0x2a,0x46,0x7b,0x69,0x75,0xce,0x3d,0xa9,0x0d,0xfa,0xab, - 0x08,0xfd,0x55,0x84,0xfe,0xd2,0xd0,0x66,0x49,0x25,0xe6,0x2c,0x2d,0x36,0x4a,0x8e,0xcc,0xb8,0x7b,0x80, - 0xe8,0x02,0x29,0x75,0xd6,0x66,0x71,0xbf,0x41,0x5d,0x24,0x05,0x75,0x74,0x9b,0x96,0x6a,0xc6,0x75,0x88, - 0x8f,0xe3,0x66,0x43,0x47,0xd6,0x46,0xd1,0x6e,0xeb,0x85,0x21,0x9c,0xea,0xcb,0x79,0x3a,0xc9,0xc2,0x7b, - 0xff,0xf9,0xb5,0xfe,0xc7,0x3d,0x15,0x04,0x91,0x4b,0xa2,0x94,0x3b,0x9c,0xb4,0xd9,0xb4,0xcf,0xb5,0xce, - 0xa9,0xe6,0x50,0x67,0xbb,0x50,0x97,0xd2,0xa2,0xa9,0xb7,0x53,0x05,0x32,0x83,0xb1,0x45,0xd8,0x9d,0xab, - 0x08,0x73,0x48,0x13,0x56,0xd8,0xb9,0xa3,0x79,0xe3,0xa9,0xf6,0xa7,0xce,0x92,0x58,0xc3,0x74,0xb9,0x9c, - 0x5f,0xf3,0x68,0xb7,0xbb,0x69,0x97,0xda,0x1b,0xf4,0xee,0x6e,0x36,0x9c,0x94,0x04,0xe0,0x15,0x41,0x59, - 0x59,0xf5,0xce,0x5f,0xab,0xc4,0xd0,0x60,0x70,0xe0,0xbc,0xbe,0x74,0xec,0xdb,0xbe,0x39,0xe8,0x1c,0xd8, - 0x38,0x29,0x91,0x4a,0xc0,0xbf,0xd5,0x62,0xd8,0xd0,0xf1,0x3a,0x04,0x9d,0xf1,0x8c,0xe8,0xc1,0xe6,0xc5, - 0xd3,0xfe,0x65,0x1d,0xd6,0xf3,0x7c,0x42,0xf5,0x10,0x04,0xc8,0x63,0x78,0xa0,0x0e,0x22,0xaa,0x11,0x83, - 0x3a,0x35,0xfd,0x89,0x98,0x4c,0x6d,0x36,0x7f,0x8b,0x18,0x01,0x99,0x6c,0xe8,0x98,0x1a,0xc4,0x26,0xde, - 0xf3,0xa2,0xc9,0xaa,0x49,0xb6,0xa4,0xd1,0xd2,0xb9,0xa8,0x29,0xc0,0x98,0x49,0x44,0x55,0x65,0xf5,0x92, - 0x26,0x23,0x93,0xd7,0x8d,0xa5,0xf1,0xfe,0x29,0x34,0xde,0x7d,0xa1,0xf1,0x0e,0xff,0x5b,0x88,0xbc,0xc3, - 0x7f,0x11,0xa8,0x6f,0x53,0x93,0xad,0xd9,0xda,0x3e,0x15,0x98,0xb6,0x28,0x35,0xb5,0x77,0xb3,0xaa,0xe6, - 0xb1,0x83,0x81,0x83,0x93,0x8d,0x72,0x6f,0x87,0x27,0x51,0xa4,0xbc,0xc2,0xb9,0x6a,0x0d,0x48,0xdd,0x2c, - 0xb2,0xe6,0xa2,0x9c,0xc6,0xc1,0x79,0xd6,0x04,0x1b,0xd0,0x8d,0x43,0x49,0x21,0x12,0x45,0x1e,0x88,0x14, - 0x78,0x51,0x5e,0x65,0xd5,0xe3,0xb4,0x26,0x2c,0x21,0x53,0x98,0x1c,0xd7,0x4a,0x8e,0x0f,0x22,0x54,0x12, - 0x43,0x1a,0xd2,0xc8,0xcb,0xf9,0x65,0x46,0x5d,0x1e,0x01,0xa0,0xb7,0x66,0xca,0x0c,0x6e,0xa8,0xd1,0x50, - 0xe8,0x0f,0xb2,0x19,0xae,0x8a,0xfa,0x22,0x9f,0x35,0x84,0xb8,0x67,0xab,0xf9,0x2c,0x9f,0xcf,0xb3,0xa9, - 0x42,0xa5,0xc0,0x36,0xd9,0x34,0xa2,0x1d,0xdb,0x57,0xa3,0x4c,0xf6,0x2d,0x55,0x2e,0x57,0xf5,0xc5,0xed, - 0xf5,0x8d,0x1a,0xb3,0x95,0x22,0xda,0x78,0xc3,0xe6,0x22,0x63,0xf8,0xe1,0x4e,0x50,0x63,0xe6,0xc9,0xc7, - 0x45,0xa5,0x6d,0xe8,0x38,0x98,0x66,0xf3,0xac,0xc9,0x02,0xc5,0x53,0xa7,0x82,0x0b,0x02,0x52,0xfa,0x29, - 0x97,0x68,0xbe,0x0e,0x4e,0x54,0x0b,0xe0,0xdd,0x12,0x13,0x49,0x98,0x78,0x08,0xcb,0x61,0x32,0x1e,0x9d, - 0x9e,0xa2,0xd0,0xac,0x57,0xb1,0x5e,0x13,0xf6,0x34,0xab,0x94,0x29,0xac,0x35,0x21,0x2f,0xda,0xd3,0x51, - 0xab,0x33,0xcb,0xb2,0x46,0x27,0x96,0x2b,0xfe,0x9b,0x36,0x93,0x8b,0xbf,0xde,0x03,0x20,0xcd,0xcf,0xf5, - 0xa1,0xea,0xeb,0x83,0x9a,0x82,0x5c,0x2b,0x74,0x57,0xdc,0x36,0xaf,0xfe,0xc6,0xee,0x02,0x2a,0xda,0x2d, - 0x87,0x1e,0x9d,0x22,0x67,0x77,0x3b,0xe5,0x38,0x78,0x5c,0xd2,0x9a,0x17,0xcd,0xfe,0x11,0x75,0x3e,0x38, - 0x89,0x00,0xfd,0xdd,0xc4,0xa4,0x11,0xc2,0x36,0xf7,0x37,0x19,0xef,0xb1,0x9b,0x76,0xc9,0x38,0x00,0x62, - 0xcc,0x27,0x29,0x3a,0x71,0xef,0xd3,0xfe,0xd5,0xd5,0xd5,0x3e,0x4d,0xe3,0x62,0x9f,0x46,0x95,0x15,0x93, - 0x92,0x78,0x4e,0xda,0x07,0x93,0xe4,0x26,0x9d,0xa6,0x4b,0x82,0xb4,0x38,0xec,0x3b,0x52,0x7f,0x7e,0xf9, - 0xe2,0xbb,0xa6,0x59,0xbe,0x95,0x99,0x1a,0x63,0x7f,0xff,0x8b,0x58,0xf1,0x9e,0x92,0x34,0xeb,0x93,0xac, - 0x26,0xea,0x21,0x94,0x42,0xc4,0x04,0x12,0x6c,0x55,0x69,0x51,0xa3,0x55,0x5d,0x41,0x7c,0xdc,0x7b,0x42, - 0xe0,0x6c,0x6b,0xf7,0x1e,0x8b,0xee,0xa8,0x65,0x46,0x9a,0x48,0xf0,0xe8,0x4b,0x9b,0xd6,0x79,0x15,0x82, - 0xc9,0xbe,0x82,0x30,0x73,0x45,0x89,0xde,0xa2,0x97,0x71,0x16,0x77,0x2a,0xd3,0x04,0xee,0xd8,0xd0,0xb4, - 0x9c,0xdf,0xa1,0x7c,0x90,0x1f,0x56,0xe8,0xe9,0x9f,0x4e,0xec,0x68,0x72,0x91,0x56,0x75,0xd6,0x24,0xab, - 0x66,0xb6,0xff,0xaf,0x00,0x60,0x63,0xf8,0x0c,0xda,0x66,0x5c,0xb9,0x10,0xaf,0xfd,0x75,0xfe,0x56,0x97, - 0xc5,0x56,0x15,0xdf,0xbf,0x7b,0xfd,0x6a,0x28,0x08,0x32,0x9f,0x5d,0x83,0xd3,0x8a,0xb3,0xcd,0x89,0x3f, - 0xc3,0x1a,0x1d,0x1f,0xfb,0xbb,0x01,0x1c,0xdb,0x16,0x56,0x8d,0x9a,0xea,0xfa,0x26,0x4b,0xb8,0xc6,0x25, - 0x5a,0xc1,0x01,0x36,0xc1,0x5e,0xc2,0x27,0x1b,0x73,0xb2,0xa2,0xf6,0x7c,0x91,0x95,0xab,0x26,0x3e,0x50, - 0x9f,0xea,0x6a,0xf6,0xb8,0x2c,0x3f,0xe6,0xd9,0xab,0x74,0x91,0xc5,0xc1,0xcf,0xef,0xde,0x3e,0xdb,0x3f, - 0x7a,0xfd,0xc3,0xd3,0x57,0x01,0xe7,0x7d,0x47,0x58,0x21,0xab,0x74,0xde,0xbe,0x9f,0xbb,0x48,0x3f,0xe9, - 0xa5,0x7d,0xc1,0x48,0x28,0xde,0x3f,0x54,0x97,0xe9,0x3c,0xa7,0x7d,0x95,0x11,0x25,0xd9,0xac,0xfa,0xe8, - 0xd4,0x9d,0xec,0x9b,0xe4,0xfe,0xc1,0x01,0x9d,0xb8,0x0f,0xbe,0x38,0x38,0xd8,0x6c,0x46,0x93,0xe1,0x05, - 0xb7,0x40,0x70,0x3e,0x29,0x17,0x0b,0xa2,0x8e,0x6f,0x1e,0x4e,0x80,0x1d,0xe3,0xad,0xa9,0x53,0x3b,0x0d, - 0x91,0x52,0xf7,0x88,0x88,0xc9,0xe9,0xf9,0x1f,0xf7,0xfe,0x11,0x6c,0xfe,0x1c,0xa1,0xb5,0x91,0x88,0x6d, - 0x0d,0x28,0xe4,0xe6,0x6f,0xe3,0xa0,0xd6,0xe7,0x06,0xbb,0xd4,0x51,0x0b,0x7f,0xfc,0x99,0xa8,0x00,0x9b, - 0xbc,0xe2,0x2d,0x7e,0x3b,0x7d,0x65,0xfb,0x94,0xb9,0xba,0x04,0xcb,0x11,0x45,0xdd,0xec,0xed,0x55,0x04, - 0x76,0xef,0x97,0x4b,0x73,0xa6,0x11,0xa3,0xd1,0xb4,0x53,0x18,0xc3,0x34,0x44,0x45,0x2a,0x99,0x13,0x96, - 0x58,0x51,0x3f,0xff,0x8c,0x74,0x70,0x9d,0x53,0xd8,0xed,0x5f,0xcb,0x91,0x7f,0x68,0xce,0xfc,0x2f,0xf4, - 0x99,0xff,0xa5,0x70,0xde,0x87,0x07,0x60,0xbd,0x3f,0x47,0xcd,0xcb,0xef,0xf0,0xac,0x29,0xd3,0xd6,0xcb, - 0xf0,0x8c,0x9e,0x43,0x49,0xa0,0x3d,0x4c,0x55,0x7d,0xd5,0x3f,0x1d,0x8e,0xd4,0x22,0x62,0x44,0x9f,0xd3, - 0xa1,0x87,0xfb,0x57,0x22,0xde,0x9a,0xd1,0x69,0x0f,0x7c,0xae,0x70,0xec,0xeb,0x35,0x1a,0x55,0x3e,0xa6, - 0x99,0x45,0x90,0x40,0xf2,0x5c,0x4c,0xbb,0xb8,0x97,0x87,0xbd,0x64,0xd2,0xb5,0x8d,0x17,0xd5,0x45,0x12, - 0x94,0x05,0xa8,0xb7,0x6b,0xe2,0x9b,0x9a,0x8c,0xf6,0x6e,0x71,0x4e,0x00,0x76,0x99,0xec,0x1e,0x8e,0xb0, - 0x05,0x7b,0x78,0x21,0x19,0x14,0x51,0x6e,0x7a,0xb8,0x3f,0x3f,0x29,0x17,0x04,0xb0,0xba,0x46,0xa2,0x11, - 0xaf,0xf2,0xe6,0xe2,0x71,0x95,0x4d,0xa9,0xfd,0x3c,0x9d,0xd7,0x41,0x5e,0xec,0x2c,0xd7,0x6b,0x42,0x43, - 0x43,0x42,0x34,0x34,0x19,0xa1,0xf4,0xa4,0xf7,0x73,0xe9,0x10,0x24,0x8b,0xdc,0x89,0x03,0xb5,0x1c,0x96, - 0x05,0x61,0xe8,0x73,0xa2,0x23,0xbc,0x69,0xa3,0xcd,0xce,0x39,0x7a,0x9b,0xb7,0x32,0x00,0xab,0xe9,0x8a, - 0xc8,0x71,0x9e,0xb8,0x45,0x22,0x6f,0x43,0x82,0x82,0xaa,0xa0,0x5d,0x4e,0x1d,0x0c,0xd4,0xb9,0x49,0x5d, - 0xa6,0x75,0x7d,0x55,0x56,0x53,0xa4,0x8e,0xa6,0xc3,0x87,0x94,0x56,0x56,0xf9,0x1f,0xbc,0x27,0x93,0xe0, - 0x51,0x5a,0xe7,0x93,0x9d,0x60,0x30,0x0f,0x17,0x03,0x3a,0x97,0x06,0xe7,0xd1,0x86,0x26,0x85,0x1a,0x5e, - 0x12,0x21,0xe2,0x91,0x5f,0x1e,0x60,0xaa,0x52,0xc6,0x49,0x9d,0x58,0x32,0xf6,0xb5,0x0f,0xef,0xb2,0x8a, - 0xa6,0x23,0xff,0x83,0xc8,0x5c,0xb5,0x4b,0x80,0xb5,0x1c,0x9a,0xde,0x67,0xe6,0x49,0x2d,0x8f,0x2f,0x4e, - 0xfc,0xc1,0xa0,0x35,0x02,0xf5,0x2f,0x69,0x03,0x2c,0x99,0xc8,0xbe,0x06,0xe2,0xa1,0x31,0x5c,0x62,0x07, - 0x40,0xb6,0xb5,0x1c,0xd6,0x8c,0x8a,0xd6,0xeb,0xa5,0xa5,0xb5,0x08,0xff,0xef,0xed,0x1d,0xe8,0x6f,0x6c, - 0x12,0xd1,0x65,0xd3,0xec,0xd3,0x6b,0x5a,0xd4,0x19,0x64,0x02,0x41,0x14,0xc9,0x0c,0xd1,0x38,0x09,0x9d, - 0x3c,0x9c,0xcf,0x0d,0x22,0x16,0x8c,0x28,0xeb,0x36,0x4e,0x69,0xb8,0xbd,0xd9,0x38,0x0f,0x58,0x6e,0x55, - 0x25,0x37,0x4c,0x69,0x64,0xb6,0x31,0x00,0x1d,0xb1,0x01,0x40,0x66,0xe0,0x90,0xdb,0x19,0x63,0xd7,0xa9, - 0xd8,0x3d,0x1e,0x51,0x59,0x25,0x23,0x89,0x0f,0xef,0xdf,0xff,0x22,0x71,0x23,0x1b,0xdf,0x3f,0xf8,0x32, - 0x36,0x2f,0xba,0x0c,0x8a,0x6f,0x95,0x0b,0x5e,0x95,0x3b,0x1a,0xee,0x03,0xfb,0x01,0x57,0xac,0x37,0x4c, - 0x5c,0x28,0xe2,0x82,0x66,0xf9,0x39,0x91,0x48,0x86,0x25,0x58,0x6e,0x46,0x39,0xb6,0x19,0x21,0x1f,0x45, - 0x70,0x49,0x03,0xda,0x08,0x68,0x65,0x55,0x55,0x56,0xfe,0x5a,0xac,0xc2,0x49,0x18,0xbc,0xca,0x1a,0x02, - 0x97,0x8f,0x3b,0x4f,0x91,0x1b,0xa8,0x4c,0xf1,0x14,0x2c,0x23,0xfb,0xf1,0x6d,0x60,0xc9,0x5f,0xeb,0xf4, - 0x1d,0xda,0x45,0xc1,0xc0,0xae,0xfa,0x20,0x58,0xd4,0x3b,0xd9,0xa7,0x49,0x96,0x81,0xb4,0xa1,0x3a,0x83, - 0xa7,0x8f,0x5f,0xbf,0x7a,0xf5,0xf0,0xd1,0xeb,0xb7,0x47,0x4f,0x9f,0x04,0xad,0xda,0xab,0x61,0x9f,0x14, - 0x23,0xd4,0x4b,0x79,0x0d,0x9c,0x45,0x6c,0xcc,0x59,0x42,0x40,0xd8,0xd9,0x86,0x6e,0x07,0x46,0x60,0x07, - 0xdb,0xc7,0xe2,0xf8,0x9a,0xa1,0x2b,0xec,0xa6,0x47,0xb1,0x30,0x11,0xa3,0x33,0x02,0xb7,0xe9,0xb1,0x64, - 0xbb,0x13,0xf3,0x24,0x39,0xe3,0x1d,0x11,0xd0,0x79,0xaf,0x37,0xb0,0x64,0x32,0xec,0x00,0x8d,0x1b,0x3c, - 0x3f,0xed,0xf0,0xb7,0x56,0xb4,0x35,0x23,0x40,0x99,0x68,0x64,0x05,0x04,0x13,0x68,0x5c,0xef,0x71,0x34, - 0x63,0x8b,0xd6,0x9a,0x13,0xac,0x6b,0xa7,0x2d,0x5a,0xbd,0x4c,0x4e,0xa8,0xce,0x88,0xa9,0xcb,0xcb,0x6e, - 0x5a,0x82,0x9d,0xd7,0x06,0x48,0x26,0x2a,0x96,0xad,0xa4,0x0e,0xc8,0x6a,0x12,0x43,0xe4,0xcb,0x01,0x4e, - 0xea,0x6d,0xb0,0x8e,0x9a,0x0b,0x5a,0x0e,0xe2,0x5d,0x7b,0x99,0xf2,0xb2,0x78,0x52,0x5e,0x31,0x5a,0x7b, - 0xa3,0x71,0xd9,0xde,0xde,0x72,0x98,0x4e,0xa7,0x4f,0x2f,0x41,0x5e,0xe4,0x35,0x8d,0x9f,0x46,0x12,0x18, - 0x4c,0x47,0x50,0xd0,0xf3,0x4d,0xa4,0x6e,0xa9,0xfc,0xfd,0xb2,0x5b,0xf5,0x8a,0x53,0xdc,0xd3,0x9f,0xb6, - 0xd5,0xae,0x02,0x73,0x34,0x71,0xba,0x08,0x96,0x1f,0xb8,0x57,0x30,0x2a,0xcc,0x4f,0x32,0x43,0xe6,0x9f, - 0x65,0x4b,0x9e,0xf3,0xf4,0x8c,0x0e,0x39,0x42,0x85,0x2b,0x68,0x63,0x04,0x72,0xb1,0x40,0xfe,0x9a,0x87, - 0x33,0x49,0x56,0x58,0x4f,0x3a,0x29,0x67,0x7f,0xe3,0xec,0xa6,0x53,0xf9,0x16,0xca,0x02,0x9f,0x68,0x6e, - 0x7e,0x28,0x3b,0x7d,0xd8,0x26,0xd8,0x46,0x85,0x46,0x0b,0x7b,0x7b,0xf9,0xde,0xde,0x6e,0x1e,0x9a,0xf7, - 0x68,0xdc,0x10,0x39,0x1b,0x68,0xc0,0xda,0x99,0xa5,0x84,0x22,0xa7,0x3b,0x00,0x9e,0x1d,0x29,0xb0,0x03, - 0xfa,0x98,0x76,0xad,0xf9,0x40,0x99,0x16,0x04,0x03,0x14,0x56,0xcb,0x54,0x80,0xbe,0x0d,0x8b,0xbf,0x3e, - 0x9a,0xc3,0xdb,0x47,0xa3,0x88,0x59,0x92,0x11,0xa5,0x7c,0x64,0x32,0xd6,0x01,0xf7,0x6e,0x15,0x4a,0xa9, - 0x2d,0xf6,0x3f,0x91,0x74,0x81,0xb3,0x24,0x6e,0xc7,0x09,0xd5,0x64,0x48,0x09,0x65,0x80,0xc0,0x1a,0x62, - 0xcc,0x49,0x21,0x1b,0x46,0xa4,0x1e,0x95,0xb7,0x79,0x92,0x5c,0x65,0x7f,0x4f,0x54,0x63,0xda,0x61,0x66, - 0xe3,0xfd,0xdb,0xe7,0x8f,0xcb,0x05,0xd5,0x44,0x50,0x19,0x66,0x9e,0xf4,0xee,0xbf,0xbe,0x3c,0xb8,0x77, - 0x9e,0xab,0xe0,0xff,0xfa,0x22,0xbd,0xff,0xfa,0xe2,0x21,0x27,0xc6,0xad,0xc4,0xfb,0x5f,0xde,0x3b,0x57, - 0xc1,0x9d,0x76,0xda,0x63,0x2e,0xa8,0xda,0x89,0x07,0x28,0x38,0x68,0xa5,0x7d,0xf5,0x88,0x0b,0x1e,0xb7, - 0x13,0x9f,0x70,0xe2,0x49,0x10,0x79,0xba,0xbf,0xcf,0x80,0x1b,0x61,0x84,0xdd,0xc6,0x68,0x5c,0x33,0x5e, - 0xd5,0x12,0x94,0x53,0x11,0x81,0xb0,0x6c,0xb4,0x86,0x88,0x12,0xf2,0x1e,0xc6,0xac,0x89,0xa8,0x54,0xe3, - 0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xf1,0xc9,0x28,0xb7,0xf8,0xb3,0xe9,0x2c,0x6e,0x9f,0x96,0x0b,0x1c,0xac, - 0xe1,0x0e,0x99,0x4d,0x0f,0x9b,0x41,0x12,0x1c,0xd3,0x50,0x94,0x9f,0x4e,0x04,0x98,0x56,0x7b,0xe5,0x7d, - 0x64,0x38,0x78,0xaf,0xa1,0x68,0x1b,0x98,0xb1,0x04,0x75,0x52,0x3e,0x7f,0xf7,0xda,0x74,0x31,0xce,0x7d, - 0x26,0x90,0xe5,0x5c,0xdb,0x1c,0x1e,0xd4,0xaa,0x90,0xec,0x10,0x72,0x8e,0x06,0x41,0x12,0x0c,0x58,0xc3, - 0x06,0x51,0x04,0x08,0xee,0x74,0xf8,0x5b,0x99,0x17,0x61,0xb0,0x47,0x93,0xac,0x67,0xae,0x44,0x45,0x83, - 0x24,0xdc,0x3f,0x84,0xba,0xc3,0x91,0x2a,0xe3,0x20,0x1a,0xd3,0x9f,0x18,0x65,0x07,0x65,0xf4,0xe7,0x00, - 0xd7,0x22,0xf0,0x8f,0x83,0x14,0xd4,0x6c,0x90,0xfa,0x64,0x1d,0xbd,0x9b,0x03,0x47,0x84,0x4b,0x5e,0x02, - 0x9f,0x40,0x2a,0xc8,0x9a,0xf4,0x1c,0x3f,0x9f,0x96,0x39,0x01,0x3b,0x3d,0xcd,0x08,0xe1,0x81,0xe1,0x12, - 0xfe,0x29,0x9f,0xed,0x2f,0xca,0x69,0x3e,0xcb,0xb3,0xe9,0x7e,0x9d,0x13,0x5a,0x94,0xb4,0x55,0xb1,0x95, - 0x3a,0x4f,0xeb,0xc6,0x96,0xc5,0x7b,0x39,0x31,0x7d,0x20,0xee,0x12,0xdc,0xf7,0x15,0x1d,0xe4,0x68,0x81, - 0x50,0xea,0xa7,0xeb,0xfd,0x6e,0x47,0xab,0x8c,0x78,0x7a,0x3a,0x4e,0xf1,0x44,0xc7,0xd4,0x7e,0x3a,0x6b, - 0xf8,0x0d,0xc4,0xec,0x3e,0x8d,0x8d,0x28,0x9d,0x93,0x5b,0xd8,0x0a,0x16,0x03,0xd2,0x06,0x2f,0x89,0xb3, - 0x71,0xfa,0xf8,0x8c,0xb8,0x76,0xb7,0xea,0xc3,0x9a,0x18,0xd0,0x26,0x0c,0x7e,0x2d,0x08,0x46,0x3a,0xdc, - 0x77,0xe9,0x2f,0x03,0xed,0x3a,0x45,0x9b,0x7f,0x08,0x71,0x3c,0x3e,0x5b,0x9d,0xd1,0x7c,0x87,0x07,0x84, - 0x76,0xa2,0xf6,0x59,0xad,0x8a,0xad,0x52,0xe5,0xe0,0x90,0x00,0x42,0x0e,0xcf,0x94,0x8e,0x70,0x42,0xbd, - 0xb6,0xe2,0x26,0xfa,0x26,0x39,0xd0,0xbb,0x67,0x84,0xcc,0x04,0xa4,0xc4,0xfe,0x84,0x09,0x10,0x26,0x05, - 0xc6,0xfc,0xcd,0x18,0x7f,0xe2,0xe3,0x93,0x08,0x18,0x8a,0xa6,0x30,0x3c,0x2e,0x4e,0xa2,0xd8,0xe6,0x0c, - 0x02,0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xeb,0x50,0xe2,0xcd,0xde,0x6d,0xb4,0xd5,0xd8,0xd7, - 0x03,0x38,0x7d,0x8c,0x35,0x3c,0xc8,0xac,0xf8,0x91,0x77,0x20,0x0d,0xe0,0x61,0x43,0xed,0x9c,0xad,0x68, - 0x07,0x05,0x17,0xb4,0x84,0x01,0x6c,0x09,0x9a,0x24,0x1f,0xe2,0x05,0xdb,0xee,0x96,0x22,0x37,0x78,0x8a, - 0xa5,0x98,0x62,0x61,0xe0,0xa4,0x9c,0xd3,0xbb,0x79,0x1c,0xbb,0x47,0x87,0xb1,0x62,0xd1,0x74,0xc4,0xc4, - 0xd5,0x00,0x3c,0xf1,0x39,0xfd,0xa8,0x9a,0xf1,0x4c,0x8c,0xb6,0xf0,0x30,0x36,0x0f,0xbe,0xde,0x64,0xec, - 0xbe,0x4c,0x6b,0x94,0xc5,0xcf,0x58,0x7e,0xbc,0x72,0xff,0xa7,0xd5,0x00,0x78,0x28,0xdd,0x08,0x1e,0x15, - 0xe6,0x0e,0x7d,0xa4,0x1f,0xb5,0x4c,0x9b,0x0b,0xce,0x0f,0xee,0x61,0xf1,0x28,0x55,0x27,0x0c,0x21,0x14, - 0x7a,0x08,0xcb,0x8f,0xb1,0x4b,0x44,0xa9,0x81,0x7b,0x15,0x41,0x3c,0xad,0x55,0x72,0x2f,0x5c,0xd4,0x79, - 0xb6,0xa6,0x09,0x02,0xd9,0x16,0xdd,0xcb,0x87,0x0d,0xa4,0x9d,0x4e,0xd3,0x06,0xf0,0x7f,0x08,0xe8,0xc7, - 0x26,0x37,0xca,0x33,0x6d,0x78,0xf1,0x74,0x9e,0xe1,0x2d,0x0c,0xd2,0xc0,0x9e,0x93,0xb4,0x46,0x9a,0x17, - 0x1f,0x9a,0x1d,0xa8,0xd7,0xc2,0x49,0x1f,0x0c,0xe5,0x20,0x50,0xc0,0xb8,0xae,0x20,0xf4,0x47,0x7f,0xe2, - 0xc2,0xd9,0x8d,0x98,0xf9,0x67,0x2a,0xd5,0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86,0xf0,0xe4, - 0x96,0x66,0x71,0xf7,0xe0,0xf3,0x67,0xb4,0xa7,0xf3,0xd1,0x5a,0x8d,0x05,0x91,0x62,0xb4,0xcb,0x93,0x40, - 0x3a,0xb4,0x03,0x34,0x45,0xbc,0x72,0xbd,0x93,0x52,0x5f,0x0a,0x26,0x6d,0x76,0x30,0xb3,0xe9,0x04,0x68, - 0x61,0x23,0x50,0x1d,0x3c,0x7c,0xf4,0xf8,0xc9,0xd3,0x67,0xdf,0x7e,0xf7,0xfc,0xfb,0x1f,0x5e,0xbc,0x7c, - 0xf5,0xfa,0xcd,0x8f,0x6f,0xdf,0x1d,0xbd,0xff,0xf0,0xd3,0xcf,0xbf,0xfc,0x3b,0x3d,0x9b,0x10,0x3b,0x7f, - 0x7e,0x91,0xff,0xf6,0x71,0xbe,0x28,0xca,0xe5,0xef,0x55,0xdd,0xac,0x2e,0xaf,0x3e,0x5d,0xff,0x71,0x70, - 0x78,0xff,0x8b,0x2f,0xbf,0xfa,0xe7,0x7f,0xff,0xeb,0xeb,0xc1,0xbd,0x24,0x18,0x15,0x4e,0x16,0xed,0x08, - 0x0f,0xe5,0xa5,0x0a,0x69,0xf0,0x55,0x2b,0x09,0x8b,0x98,0x04,0xcf,0xa5,0x5f,0x8f,0x4d,0xb7,0x0c,0xa7, - 0xd4,0x8b,0xa4,0x8c,0x5a,0xad,0x01,0x09,0x93,0xe8,0x69,0xcf,0x20,0x8c,0x21,0x68,0xab,0x93,0x03,0xd8, - 0xd7,0x8c,0x4a,0x0b,0x3d,0xeb,0x1a,0xa7,0xd7,0x24,0xa1,0x13,0x45,0xd5,0xff,0x45,0x84,0x53,0x3a,0x48, - 0x26,0x26,0xf7,0x9f,0x5f,0xec,0x35,0xdf,0x7c,0xf3,0xaf,0x7d,0xca,0xf8,0xc7,0xbf,0x22,0x46,0x37,0x61, - 0x9e,0xc8,0xc7,0x8f,0xa9,0xb7,0x54,0xa4,0x1e,0x24,0xc3,0xff,0xfe,0x2a,0x8a,0xbe,0xb9,0xff,0xd5,0x57, - 0x9a,0x60,0xc7,0xe8,0x8a,0x51,0x93,0x34,0x0f,0x1e,0xfc,0x6b,0x9d,0x9b,0xe3,0xe8,0x7f,0x19,0x81,0xdc, - 0x5c,0x55,0x79,0x4b,0x79,0x6f,0xa8,0x36,0x42,0x56,0x37,0x62,0xed,0x41,0xa7,0x7d,0xad,0xb5,0x21,0x7c, - 0x60,0xf6,0xd0,0x48,0x44,0x2d,0x30,0xff,0x27,0xd6,0x06,0x04,0x98,0x7b,0x7b,0xfa,0x13,0x73,0x52,0xd1, - 0x77,0x18,0x0f,0x9f,0xdd,0x05,0x30,0xf3,0xb7,0x2f,0x8f,0xac,0xf4,0x56,0x79,0x90,0x9d,0x7b,0xdf,0x62, - 0xff,0xd1,0x87,0x79,0xab,0x40,0xe9,0x15,0x98,0xb2,0x80,0x86,0x8a,0x94,0x10,0x5c,0x10,0x90,0xa7,0x2e, - 0xaf,0xce,0x26,0xab,0x0a,0x52,0x6f,0xb7,0x0b,0x19,0x77,0x27,0xb5,0x3e,0xe3,0x47,0x3b,0x74,0xc8,0x2b, - 0x30,0x97,0xf1,0xd6,0xe9,0x94,0x74,0x3e,0x1a,0x2e,0x98,0xcf,0xc2,0x10,0xde,0x66,0xe7,0x4f,0x3f,0x2d, - 0xc3,0x20,0xfc,0xcf,0x7a,0xf4,0xeb,0xaf,0xf5,0x3f,0xa2,0x90,0xa6,0x84,0xc8,0xb7,0x24,0x3c,0xfe,0xcf, - 0xe8,0xe4,0x1f,0x51,0xe0,0x94,0x3e,0x0d,0xf1,0x87,0xdb,0x73,0x75,0xfc,0xc5,0x89,0xc8,0x27,0xd0,0xf8, - 0xa2,0xbc,0x6c,0x1b,0x41,0xf0,0xee,0xe2,0x45,0xa1,0xb5,0x20,0x50,0xc3,0x8c,0x0d,0x8b,0xf2,0x2a,0x8c, - 0xf6,0xff,0xf5,0xcf,0x2f,0xb3,0xaf,0x88,0x9a,0x8e,0xbb,0x8b,0x06,0x99,0x53,0x7b,0x1c,0x2d,0x35,0xe9, - 0x76,0x3b,0xf4,0xc1,0xdf,0x20,0x8f,0x75,0xa7,0x2e,0x08,0x7c,0xe6,0x90,0x16,0x1f,0x9f,0xf8,0x04,0xa8, - 0xaf,0x81,0xa4,0x0a,0xfa,0xf5,0xd5,0xad,0x0a,0x64,0x81,0x6e,0xac,0x66,0x8d,0x65,0x1e,0xa2,0x59,0x63, - 0xe5,0x7a,0xbb,0xb0,0x50,0x42,0xfb,0x87,0x90,0x30,0xb8,0x96,0xb8,0x7c,0xb2,0x35,0x71,0xe6,0x2b,0x22, - 0x22,0x41,0x64,0x76,0x92,0x34,0xbf,0xd7,0xaa,0x48,0x53,0x1c,0x49,0x9b,0xca,0xb4,0xc4,0xad,0x5f,0x83, - 0x67,0x2b,0x60,0xc9,0xdc,0x86,0x18,0x50,0x7a,0x25,0x16,0xf1,0x7f,0xa8,0xc7,0x82,0x79,0xe1,0x67,0xf8, - 0x59,0x46,0x05,0xcf,0x67,0x9a,0xfb,0xcb,0xa6,0x61,0xd4,0x35,0xfc,0x3b,0xfc,0x5a,0x24,0xc4,0xb0,0xc0, - 0xb3,0xa6,0x7f,0xf4,0x7a,0x08,0x01,0x31,0xfd,0xde,0xc2,0x23,0x78,0xa6,0x7f,0x19,0xd8,0xa8,0xb3,0x54, - 0x4b,0xe7,0x76,0x27,0x5a,0x18,0xc3,0x7c,0x16,0x3d,0x24,0xf3,0xd0,0x66,0x2b,0x2d,0xa7,0x51,0x56,0xd4, - 0xeb,0x84,0xbe,0xac,0xe9,0x13,0x59,0x70,0x02,0x51,0x23,0x0b,0x85,0x6d,0x2e,0xf4,0x35,0x1d,0xcd,0x95, - 0x5f,0x8b,0x31,0x3f,0xb4,0x29,0x43,0x51,0x49,0xe8,0x4a,0xad,0xec,0x5f,0x4b,0x36,0x4f,0xda,0xe9,0x78, - 0xf3,0x99,0x86,0xdb,0x14,0xac,0x3d,0x5a,0x06,0x50,0xd8,0x68,0xc8,0x57,0x37,0xd0,0xf2,0x1a,0xd9,0xbd, - 0x6d,0xb9,0x39,0xd9,0x40,0x19,0x3e,0xd4,0xaa,0xbd,0xf5,0xba,0x36,0x8f,0x11,0x58,0xc4,0xb6,0xbc,0xa1, - 0x69,0xcf,0x6e,0x63,0x26,0x45,0x1e,0xe8,0xbd,0x77,0x52,0x84,0x77,0xa5,0xe2,0x1b,0xd5,0x53,0x53,0x4a, - 0xcf,0x74,0xc4,0x48,0x85,0xb0,0xcf,0x33,0xcc,0x2e,0x00,0xdd,0x29,0xb3,0x6d,0x4b,0xad,0x14,0xe5,0xbd, - 0x7f,0xae,0x6d,0x5a,0x59,0xa7,0x91,0x67,0x46,0xaa,0xf9,0x5b,0xaa,0x8b,0xcf,0xb0,0xa3,0x66,0x42,0xec, - 0x22,0x15,0x2d,0x12,0x87,0x4e,0x73,0xc6,0x18,0x9b,0x6d,0x4e,0xea,0x2f,0x08,0x0c,0x2c,0x21,0x13,0xee, - 0x66,0xeb,0x35,0x0c,0x37,0x4e,0x1f,0x3f,0x7c,0xf5,0xf8,0xe9,0x8b,0xd3,0xd3,0xff,0x81,0xf8,0xc1,0xd4, - 0x76,0xef,0x3f,0xe1,0x71,0xba,0xff,0xc7,0x09,0xfe,0xfc,0x3a,0xfd,0x75,0xf0,0xeb,0xfe,0xaf,0xc3,0x93, - 0x7f,0xc4,0xd1,0xf8,0xd7,0x7b,0xbf,0xde,0x33,0xb4,0x5f,0xf6,0x3f,0x92,0x6f,0x38,0xcc,0x38,0xf6,0x0c, - 0x86,0x7e,0xbd,0x37,0x10,0x9a,0x79,0x00,0x02,0xb4,0xf1,0x29,0xe2,0x7b,0x03,0xa1,0x75,0xff,0x64,0x72, - 0xda,0xd6,0x39,0x2d,0x52,0x2d,0xdb,0x14,0x3d,0x46,0x9a,0xc9,0xd6,0x99,0x11,0x88,0x51,0x6f,0x30,0x08, - 0xfd,0xcf,0x89,0xd3,0x25,0x46,0xc6,0x4f,0x89,0x61,0xc5,0xd4,0x22,0xb3,0xdc,0xa4,0x43,0x3f,0xe2,0x99, - 0x4d,0xff,0x2d,0x7c,0x08,0x49,0xa6,0x15,0x26,0xee,0x7a,0x1a,0x56,0x4b,0x15,0x41,0xaa,0x29,0x02,0x27, - 0x22,0x2f,0xe8,0x98,0x27,0xc2,0x7b,0x67,0xb1,0xaa,0x9b,0x9d,0xb3,0x6c,0x27,0xb5,0xb6,0x51,0xc3,0x40, - 0x5b,0x9c,0x8c,0xb8,0xd7,0x5a,0x32,0x98,0xf4,0x6a,0xb3,0x30,0x57,0x34,0x41,0xf2,0x41,0x91,0xe0,0x83, - 0x51,0x3b,0x1b,0x62,0xb4,0xb4,0x06,0x42,0x0a,0xcd,0x23,0x57,0x95,0xf3,0x7e,0xb4,0x69,0x90,0x23,0x38, - 0x0c,0xfd,0x45,0xfb,0x78,0xec,0x22,0xf3,0x8e,0x3e,0x45,0x1b,0x50,0x70,0x35,0x5a,0x66,0xeb,0x52,0x70, - 0x6a,0xd5,0xe5,0xaa,0x9a,0x64,0xfe,0x57,0x68,0xc9,0x30,0x79,0x37,0x0d,0x4e,0x0c,0x36,0x1d,0xaa,0x5a, - 0xa8,0x28,0x4b,0x70,0xaa,0xca,0xa9,0xc2,0xf0,0x73,0xeb,0x49,0xf5,0x37,0xf6,0xc6,0x4e,0x0f,0x8a,0x32, - 0x86,0x63,0x2c,0x77,0x6c,0x60,0x3b,0x06,0xc5,0x67,0xb7,0x85,0xdb,0x7d,0x1d,0x7a,0xb4,0x99,0xff,0x4b, - 0xee,0x0e,0x0d,0x1c,0x18,0x3e,0xac,0xb2,0x7e,0xf7,0x85,0x7e,0x60,0xcc,0x7a,0xed,0x5d,0xd7,0x6b,0x8c, - 0x8e,0x2d,0x5f,0x3d,0xa3,0xc7,0x6e,0x49,0x11,0x7a,0x19,0x51,0xd8,0xa6,0xbd,0x2b,0x0d,0xcf,0xd5,0xae, - 0xc4,0x37,0x5f,0xdf,0x32,0x2f,0x58,0xaf,0xb7,0xed,0x75,0x29,0xad,0xbe,0x5e,0x9c,0x95,0xf3,0x76,0xda, - 0x59,0x59,0xce,0xb3,0xb4,0xe8,0xb5,0x5f,0xff,0xdf,0xb1,0x78,0x17,0x11,0x1b,0x1b,0xd9,0x5e,0x14,0xbd, - 0x06,0xef,0x86,0x8a,0x66,0x4b,0x08,0xb6,0xbe,0x0b,0x2d,0x07,0xe5,0xa8,0xe3,0x6f,0x92,0x83,0xbd,0xbd, - 0x97,0x44,0xe3,0x0f,0x67,0xf3,0x12,0x46,0x5f,0xac,0x4d,0x27,0x96,0xb5,0x7e,0x96,0x17,0x4c,0x00,0x7b, - 0xb5,0xd6,0x9d,0xae,0x53,0xcf,0xc7,0x41,0xd0,0xe3,0xc1,0x32,0xee,0xca,0xfc,0x44,0x0c,0x7e,0x3f,0x8a, - 0x6d,0x17,0x5c,0xad,0x93,0xde,0xbe,0x3a,0x31,0x36,0xb1,0x34,0xe9,0x2b,0xea,0xd8,0x38,0x23,0xca,0xd4, - 0x7e,0x35,0xd7,0x96,0x90,0xd6,0xf2,0x52,0x9b,0xc0,0x0b,0x9b,0x1f,0x8a,0xfa,0xa0,0x4a,0xac,0x10,0x4b, - 0x41,0xce,0x99,0x1c,0x8c,0xf2,0x07,0x95,0xb1,0x1a,0xcb,0xc5,0x00,0xf3,0x38,0x3f,0x39,0x21,0x5c,0xe9, - 0x18,0x86,0x3e,0xf5,0xfb,0x71,0xd6,0x96,0x64,0x9d,0x6c,0xfa,0xac,0x3b,0xa8,0xd8,0xc9,0xc6,0xf5,0x71, - 0x65,0xdd,0x0e,0x8c,0xbf,0x80,0xd1,0xa9,0x66,0x9e,0x8c,0x8b,0xe5,0xc1,0xdf,0xec,0x1f,0x5a,0x31,0x31, - 0x77,0x99,0x4e,0x9c,0x42,0x1d,0x46,0x5e,0x6d,0xb3,0xd6,0x99,0x75,0x6e,0x56,0x1d,0x9b,0xdc,0x96,0x99, - 0xba,0xb9,0xec,0x99,0x8f,0x51,0x17,0x6d,0x78,0xc6,0x6b,0xc7,0x05,0xd1,0x73,0x21,0x7e,0x60,0x09,0x1c, - 0xf9,0x0d,0x2f,0xb7,0x8c,0x4e,0xb5,0x38,0xa4,0xea,0x31,0x08,0xd6,0x14,0xc6,0xb8,0xfa,0xe6,0x70,0xec, - 0x8c,0x58,0x6d,0x39,0xe0,0x00,0xee,0x37,0x9b,0xf1,0x9a,0x67,0x2b,0xe8,0x2d,0x86,0xa7,0x52,0x91,0xf5, - 0xb0,0x50,0x85,0xeb,0xc8,0x85,0x74,0x84,0xd8,0xf1,0xf5,0xfa,0x60,0xe4,0x96,0xde,0x94,0xdd,0x6f,0x68, - 0xc5,0x9d,0x05,0x6e,0x11,0x8d,0x8a,0xfd,0xfd,0x51,0x54,0xf1,0xa0,0x8e,0x8b,0x41,0x63,0xcd,0x6b,0x2b, - 0x57,0xe9,0x65,0x07,0x90,0xe0,0xa5,0xd1,0x44,0xf0,0xe1,0x48,0x30,0x1b,0x56,0x34,0xea,0xbe,0x58,0xb4, - 0x64,0x13,0xb0,0x8e,0x2e,0x08,0xb0,0x8a,0x07,0xce,0x29,0x84,0x00,0x0b,0x15,0xec,0xed,0x5d,0x42,0xfd, - 0x08,0x69,0xa4,0x85,0x2e,0x57,0xcd,0xb9,0x39,0x87,0x5d,0xd2,0xb5,0x03,0x18,0x6c,0xc3,0xc8,0x60,0x29, - 0x7d,0x24,0xf2,0x39,0x57,0xd1,0x8f,0x00,0xcd,0x2e,0x1d,0x84,0xbb,0x95,0x29,0x44,0x6c,0xcb,0x6e,0xb5, - 0xb7,0x67,0x37,0x18,0x55,0xa0,0x9f,0xa9,0x34,0x94,0x98,0xac,0x7c,0x48,0x78,0x6a,0x3c,0x79,0x3f,0xf1, - 0x2d,0xed,0x24,0xa9,0xbb,0xdc,0xdb,0x4b,0x1d,0x40,0xea,0x35,0x81,0x00,0x4b,0x1e,0xc1,0x22,0x65,0x97, - 0x59,0x75,0xed,0x9d,0xcf,0x1e,0x81,0xc9,0xe3,0xc0,0xb0,0x37,0x52,0xd9,0x7a,0x6d,0x2a,0xdb,0x3d,0x1c, - 0x89,0x44,0x43,0x83,0xe7,0xc7,0xec,0x1a,0x58,0x85,0xd8,0x25,0x3f,0xc1,0xd9,0x8f,0xd7,0xae,0xed,0x89, - 0x6d,0xbb,0xee,0xb6,0xdd,0x6a,0x19,0xde,0x37,0xba,0x71,0x67,0xfd,0x65,0x5a,0xf7,0xc0,0xfa,0xac,0x8b, - 0x41,0xb6,0xd6,0x90,0xba,0x6e,0xea,0x8b,0xac,0xdb,0x9c,0xee,0x19,0x31,0xc3,0xb6,0xa6,0x53,0xb7,0xeb, - 0x68,0x7c,0xdb,0xe6,0xe1,0x0d,0x76,0x96,0x90,0x63,0x7a,0x43,0xe0,0xf0,0x73,0x7b,0xc2,0xdf,0x6c,0x57, - 0x46,0xf3,0x16,0xdd,0xe8,0x19,0x91,0xe3,0xd3,0xf8,0x07,0x71,0x36,0x35,0x36,0x5f,0x65,0x71,0xa1,0x32, - 0x3a,0x91,0xb2,0x2a,0x3d,0x9b,0x67,0xf1,0xee,0x6e,0xa5,0x20,0x93,0x90,0x97,0x03,0x6d,0xcb,0xb0,0xd2, - 0x99,0x07,0x1b,0x0f,0x4b,0x1c,0x79,0x07,0x4a,0x8f,0xca,0x78,0x6f,0xef,0x5e,0xc1,0x0e,0x0c,0xac,0xd5, - 0xbc,0xa7,0x49,0x6c,0xdf,0xd4,0xcf,0x55,0xf5,0xb1,0x63,0xa3,0xf4,0x4b,0x11,0xca,0xe9,0xab,0xda,0x3f, - 0xee,0xe8,0x71,0xdf,0x3e,0xd6,0xca,0x7e,0xbd,0x87,0x27,0x46,0x3c,0xf3,0x5a,0x4c,0x70,0xf5,0x5e,0xfe, - 0x05,0xb6,0x34,0x4d,0x7a,0xae,0x2c,0x37,0x3b,0xb9,0xc8,0xe7,0xd3,0x2a,0x2b,0xc0,0x3d,0xc1,0x7e,0x83, - 0x40,0x71,0xbe,0x50,0xac,0x9e,0xe4,0x77,0x64,0xa4,0xf5,0x75,0x31,0x79,0x96,0xc2,0x9e,0xfd,0xda,0x29, - 0x44,0x87,0x05,0x78,0x65,0x54,0x2d,0xb2,0xb8,0x26,0x9f,0x00,0x15,0xeb,0x47,0x4a,0x25,0xe8,0xa3,0x04, - 0xfa,0xcb,0x25,0x1e,0x13,0x57,0x4a,0xfd,0xe1,0x22,0xfa,0x99,0xd2,0x67,0xc5,0x63,0x69,0x88,0xd2,0xed, - 0x33,0xa7,0xeb,0x8e,0x73,0xba,0x1d,0x04,0x3d,0xbf,0x9b,0xd0,0xda,0x3d,0x9f,0x72,0xba,0x7e,0x96,0xfa, - 0xe7,0x34,0x5e,0x76,0x91,0x6c,0x44,0xa1,0xaa,0x07,0x46,0x2f,0x95,0x7d,0x49,0x3e,0x79,0x39,0x30,0x0d, - 0x8a,0xa0,0x7e,0x2d,0xfc,0xc2,0x85,0x5f,0xb8,0x68,0x17,0x26,0x84,0xe1,0x66,0xfc,0x53,0x17,0xe4,0x2d, - 0x96,0x6d,0xe3,0x4d,0x7d,0x52,0x16,0x7c,0x44,0xe2,0x80,0x4c,0x68,0xad,0xe8,0xc7,0x73,0xec,0xf0,0x6a, - 0x7d,0xe8,0xad,0x23,0xb6,0xbb,0x78,0xf0,0xec,0x86,0x2d,0x7f,0x9b,0x5f,0x0a,0xbb,0x85,0x70,0x90,0x05, - 0xa7,0xa7,0xe5,0xd9,0xe9,0x69,0xc0,0xd6,0x26,0xf2,0xec,0x97,0x2e,0xab,0x31,0x3a,0x27,0x19,0x71,0x4e, - 0x64,0xf7,0x45,0xb9,0x9a,0x4f,0x69,0xb2,0x69,0xe3,0xd3,0x64,0xed,0xfe,0x51,0xb0,0x95,0x5f,0x17,0x9b, - 0xad,0xd7,0x20,0x96,0x28,0x47,0xef,0x9d,0xbc,0x7e,0x0a,0xef,0x93,0x3a,0x3f,0x63,0x73,0x59,0xfa,0x90, - 0xfd,0x09,0x88,0x0a,0xc5,0xb4,0xf1,0x98,0x59,0x65,0xce,0xec,0x3c,0x4f,0xeb,0xe5,0xe2,0x71,0xb9,0x2a, - 0x9a,0xc1,0xc0,0x3f,0x78,0xde,0xf9,0xea,0x70,0xc1,0xa3,0x6c,0x2d,0x57,0x10,0xf6,0xd4,0x2d,0x9d,0x67, - 0x8d,0xe7,0xc5,0xf7,0x24,0xab,0x27,0x55,0x0e,0x1b,0x77,0x9e,0x1b,0xc6,0xd6,0x29,0x61,0xeb,0x43,0xa2, - 0xf6,0xd2,0xa1,0xbf,0x35,0x8d,0x84,0x37,0x25,0x84,0x8b,0x4a,0x08,0x13,0xf2,0x63,0x4d,0x8f,0xf3,0x64, - 0x37,0xdf,0xdb,0x7b,0x88,0x83,0xec,0x33,0xb8,0xc0,0xc7,0x01,0x5b,0xdb,0x5e,0x51,0x95,0xbe,0xcc,0x51, - 0xb0,0x54,0x3d,0xae,0x0d,0xcd,0xe8,0xd4,0x17,0x3f,0x17,0xb4,0xcd,0x2a,0x2a,0x4f,0x53,0x53,0x52,0x4b, - 0x4b,0x58,0x5e,0x44,0x6a,0x4e,0xaf,0x73,0xbc,0xba,0xa4,0xee,0x81,0xb1,0xb7,0xe7,0x11,0xec,0x2d,0xf8, - 0xd2,0xbb,0x5f,0xbc,0x87,0x9a,0xae,0xd7,0x10,0xad,0x40,0x03,0xc3,0x4c,0xcc,0xbb,0x2c,0xb5,0x7b,0xfa, - 0x5c,0x8b,0x90,0x6d,0xb3,0x11,0x05,0x84,0xde,0x2c,0xab,0xa9,0xfd,0x51,0x36,0x86,0x3a,0x69,0x0f,0x13, - 0x0a,0x98,0x6a,0xbd,0x6e,0x76,0xd9,0x84,0x74,0x17,0xcf,0xe1,0x64,0x3c,0x71,0x64,0x54,0x4c,0xdd,0xb1, - 0x73,0xde,0xc0,0x36,0xb6,0x28,0x1b,0x90,0xaf,0x6c,0x23,0xef,0xe1,0xe8,0x3b,0x9e,0x7a,0xbf,0x0b,0x81, - 0xb4,0x76,0xa1,0x3b,0x2d,0xec,0xd1,0xc9,0x24,0xf6,0x22,0xfd,0x64,0x29,0x41,0xc5,0xa2,0x37,0x4d,0xe9, - 0x35,0xea,0x90,0xaa,0x53,0xbc,0x7b,0x1a,0x76,0x13,0xc5,0xfe,0xe1,0xa7,0xae,0x67,0xa7,0xab,0x5a,0x0c, - 0x5c,0x0b,0x2d,0xf9,0x31,0x9b,0xc5,0x39,0x10,0x09,0x9c,0xaf,0xd7,0x15,0x2c,0xad,0x34,0x58,0x8f,0x8b, - 0xb8,0x1a,0x87,0xef,0x08,0xbd,0xf0,0x09,0xc2,0xa3,0x20,0x54,0x84,0xb9,0x36,0x63,0x05,0x5d,0x66,0xac, - 0x67,0x0b,0x0f,0x5b,0xbf,0xb6,0xb4,0xc9,0x2d,0x43,0xf6,0x47,0xe3,0x99,0x2a,0xb8,0x7d,0x3c,0x72,0x7d, - 0xf2,0xb7,0xda,0x7a,0x2d,0x94,0x2d,0x6c,0xc8,0x8c,0xb5,0x6e,0x73,0x22,0x48,0xce,0xef,0x98,0xbf,0x02, - 0x4f,0x6d,0x67,0x7c,0xf3,0x0a,0x0b,0x77,0xd8,0xa8,0x6e,0x6b,0x6a,0x92,0x02,0x1a,0xa3,0x51,0xfd,0x20, - 0x35,0x50,0x58,0x03,0xb7,0x81,0x2e,0x4c,0xd2,0xe3,0xfa,0xe4,0x04,0x00,0x8a,0xa3,0x7e,0xc6,0x94,0xcc, - 0xb8,0x0c,0x2b,0x76,0x43,0x84,0x2e,0xe4,0x69,0x88,0x8d,0x1f,0x63,0xd9,0x0b,0x7a,0xe8,0x21,0x09,0xdf, - 0x74,0x24,0x6c,0xc5,0xb8,0xb3,0xe7,0xaa,0xa4,0xd7,0x9d,0xcd,0x78,0xf8,0xb2,0x4f,0x1b,0xf5,0xa0,0xef, - 0x38,0x1e,0x67,0x5e,0xa1,0xcc,0x51,0xd8,0xba,0x57,0xf9,0x26,0x6e,0xc6,0x99,0xdf,0x9e,0x2e,0xf1,0x34, - 0xfc,0x5c,0x93,0x4c,0x82,0xe0,0x0f,0x1a,0xfe,0x5c,0xb3,0x5e,0x41,0xe2,0xda,0xe2,0x26,0xf6,0x86,0xfd, - 0xa4,0x2b,0x46,0x1b,0x67,0x46,0x05,0x4f,0xdb,0xa9,0x8b,0x26,0xc6,0x4d,0x0c,0x3d,0xbd,0xf7,0xfd,0x6f, - 0x8e,0xd8,0x11,0x79,0x4d,0x9b,0x69,0xd1,0x8c,0xbe,0xa7,0xcb,0xb9,0x84,0x03,0x14,0xc6,0x6c,0xab,0x78, - 0x6e,0x66,0xde,0x63,0xe2,0x6d,0x75,0x69,0x45,0xe8,0x65,0xbd,0x9e,0x57,0xa3,0x39,0x1c,0xed,0xe8,0x60, - 0x62,0xef,0x44,0xfc,0x41,0xa3,0x7d,0xd6,0x78,0xc0,0x7e,0xc4,0x60,0x0c,0xb5,0x1f,0x50,0x57,0x72,0x62, - 0x20,0x9a,0xf6,0xe3,0xb2,0x16,0x4b,0x1e,0x59,0x5f,0x06,0xb8,0x9b,0xcd,0x68,0x6b,0x7f,0x14,0xe2,0x3b, - 0x4e,0x07,0xac,0x45,0x7f,0x60,0x4a,0xba,0xf2,0x85,0x50,0xc2,0x2f,0x60,0x17,0xa4,0xc7,0x67,0x05,0xc1, - 0xdd,0x49,0x72,0x83,0x2c,0x51,0x53,0x39,0x4b,0xa1,0xd2,0xd4,0xc8,0xe7,0x06,0x50,0x44,0x11,0xe1,0xdb, - 0xfa,0x44,0xf1,0x87,0x35,0x7d,0x08,0xb0,0x1d,0xe7,0xb1,0x7c,0x9f,0x6f,0x46,0xba,0xbf,0x49,0xba,0x01, - 0xca,0xbc,0x65,0x48,0x79,0x81,0xb9,0xf7,0xc7,0x64,0x13,0x3f,0x37,0x30,0x99,0x69,0x26,0x17,0x7c,0xc6, - 0x9a,0x98,0x2e,0x66,0xac,0x6f,0x60,0x1c,0x13,0xe3,0x79,0xd3,0x3f,0x84,0x54,0x86,0xa0,0x8f,0xc1,0xe2, - 0x38,0x25,0x96,0x8b,0xfe,0xd0,0x18,0xea,0x88,0xd6,0x5b,0xbe,0x4f,0x09,0xc5,0x47,0xb1,0x3c,0xd7,0x9b, - 0x4d,0x77,0x18,0x66,0x10,0x74,0x40,0xe6,0x15,0xf5,0x97,0x68,0x57,0xbd,0x38,0xa6,0x95,0xca,0x6b,0x45, - 0x66,0x7a,0xd4,0xb3,0xf8,0x39,0xa8,0x02,0x0e,0x82,0x01,0x03,0xfd,0x38,0x57,0xab,0x25,0xac,0x03,0x69, - 0x0a,0x23,0x28,0xed,0x75,0x98,0x8c,0x46,0x47,0x81,0xe0,0x26,0x72,0xb6,0x71,0x02,0x14,0xe6,0x30,0xee, - 0x53,0xcd,0x70,0x91,0x7f,0x22,0x4a,0xc6,0x8d,0x8f,0xce,0xbe,0x3a,0x31,0xc9,0x66,0x8a,0xd2,0x07,0xf5, - 0x28,0x05,0x9b,0xc8,0x9f,0x9a,0x5c,0x1a,0x37,0x55,0xc2,0xcd,0x4c,0xe8,0x24,0xa2,0x59,0x47,0x2d,0x13, - 0x09,0x1c,0x40,0x0f,0x91,0x7b,0x6f,0x22,0x20,0xaa,0x09,0x51,0x3c,0x9c,0xae,0x77,0xc8,0xdc,0x6d,0x8c, - 0x17,0x6e,0x6f,0xf5,0x79,0xcb,0xd8,0xb9,0x00,0xb2,0xc5,0x40,0x68,0x28,0xca,0xd1,0x68,0x39,0x58,0x5f, - 0xa1,0x74,0xce,0xc0,0x5f,0x99,0x12,0xa5,0x57,0xa2,0x94,0x12,0x69,0x72,0x5a,0x84,0xa5,0x13,0x2e,0x50, - 0xa9,0x94,0xa0,0x8f,0xc6,0x12,0xe7,0x2c,0x55,0x40,0x49,0xfc,0x4d,0x7d,0xd9,0xc8,0xb3,0xee,0xd6,0x6f, - 0x8e,0xb3,0x13,0x55,0x26,0xbb,0xb4,0x6a,0x8a,0xd9,0x52,0x08,0x53,0xd0,0xec,0xcb,0xf0,0x91,0x88,0xd3, - 0x54,0x3e,0xe4,0x13,0x10,0xf4,0x09,0x9d,0x8f,0x68,0x28,0xd0,0x8e,0x90,0x41,0x34,0x4e,0x89,0xf7,0x8a, - 0x5f,0x6a,0x19,0x97,0x29,0x0a,0xc3,0xfd,0x5d,0x56,0x49,0xa7,0xf4,0x73,0x24,0x6e,0xaa,0x61,0x9a,0x30, - 0x19,0x6d,0x05,0x8a,0x69,0x74,0x93,0xf6,0x99,0xee,0xcd,0xe0,0xc1,0x64,0x5b,0x30,0x9b,0xa2,0x31,0xde, - 0x97,0xf6,0x1c,0x00,0x0d,0x7b,0x47,0x23,0x0c,0xd9,0x69,0x12,0xdc,0xc0,0x49,0x2c,0x7b,0xb2,0x45,0x3e, - 0x60,0x25,0x95,0xc3,0x53,0xce,0xa1,0xd4,0xb1,0xf7,0xdc,0x27,0x61,0x85,0x6b,0xef,0x33,0x27,0x9b,0x4f, - 0x5e,0x85,0x8d,0x0c,0x76,0x5c,0x59,0x6a,0xa7,0x22,0x70,0x05,0x4a,0xca,0x22,0xcd,0x6e,0x77,0x49,0xe8, - 0x51,0x37,0x01,0x5c,0xc8,0xc3,0x30,0x25,0xd2,0xbf,0x9b,0x51,0x3b,0xb3,0x07,0xbb,0x7a,0xaf,0x3c,0xfb, - 0x26,0x8c,0xde,0xf1,0x86,0x5a,0x4b,0xcf,0x7e,0xd7,0xb6,0x78,0xf8,0xeb,0xd5,0x20,0xba,0xe7,0xe1,0xf1, - 0xe6,0xf8,0x90,0xc6,0x16,0xb8,0x0a,0x5f,0xba,0x03,0xbd,0x7b,0x6c,0x18,0x80,0x7b,0x25,0xc2,0xc9,0x57, - 0xc6,0x3f,0xd5,0x44,0xe3,0xa8,0x1c,0x61,0x59,0x3c,0xa8,0x0c,0xe3,0xfe,0x8a,0x65,0x59,0xe6,0x03,0x27, - 0x49,0xb1,0x82,0x00,0xdb,0xf4,0x5b,0x6f,0xc5,0x1b,0x87,0x30,0x12,0x5a,0xdf,0xa4,0x1a,0xde,0x59,0xa6, - 0xc4,0x4a,0x35,0x23,0x67,0x00,0x64,0x97,0x92,0x7d,0x00,0x1e,0xa7,0x4b,0xaa,0x30,0x9b,0x32,0x2e,0xb0, - 0x5f,0x97,0x84,0x10,0xcb,0x07,0xb9,0xe9,0x57,0x89,0x08,0x21,0xd5,0x35,0x0f,0x0f,0x26,0x8c,0xd8,0x11, - 0xb2,0x56,0x95,0x92,0xc6,0x75,0x07,0x9d,0xc0,0xe2,0x11,0xf5,0xaa,0x52,0x41,0xab,0x8d,0x9d,0x8b,0xb2, - 0xfc,0x08,0xb7,0xf5,0x47,0xba,0xcb,0x6e,0x10,0x8f,0xbc,0x41,0xdc,0x29,0xa4,0x6b,0xdf,0x89,0xce,0x9c, - 0x5b,0xd6,0x73,0xd8,0xc9,0xf2,0xe3,0x8b,0x48,0x85,0xb6,0xfd,0x9f,0x8c,0xd0,0x36,0xd0,0xa6,0xd2,0xfe, - 0x77,0xd4,0x87,0x9f,0xb6,0xba,0xf0,0x93,0xd7,0x85,0xdd,0x37,0x10,0x47,0x3d,0x29,0x68,0xff,0xf5,0xf8, - 0x08,0xc1,0xd9,0x9c,0x76,0xb4,0x56,0xb0,0x64,0x23,0xfd,0x2e,0x4d,0xb4,0x64,0xc3,0x1f,0x60,0x54,0x57, - 0x25,0x5a,0x6a,0x94,0x25,0xab,0xca,0xf8,0x87,0x47,0xa3,0x95,0x11,0xe4,0x26,0x4e,0x16,0xd8,0xd0,0x73, - 0xe3,0x84,0x38,0x0d,0x0b,0xe2,0x9a,0x93,0xd0,0xab,0xf2,0x7d,0x87,0x5b,0xa5,0x6a,0xd8,0x16,0xa2,0xad, - 0x07,0xd2,0xce,0x84,0x56,0x3e,0x69,0xe7,0x45,0xa0,0x25,0x28,0xe8,0x08,0x38,0xca,0x27,0x58,0x0d,0x3e, - 0xd5,0x0a,0x76,0x5e,0x67,0x4d,0x0b,0xf8,0x0a,0xf4,0xf9,0x40,0x4d,0xab,0xf1,0xa4,0x0a,0xa3,0xb8,0xae, - 0x60,0x60,0xb3,0x9b,0xf5,0xab,0x57,0xb4,0x22,0x2c,0xf2,0xa4,0x28,0x7d,0xba,0xb1,0x02,0xba,0x31,0x37, - 0x8c,0xef,0x90,0x66,0x0b,0x80,0xef,0x52,0x96,0x14,0x29,0x6f,0x11,0xea,0x85,0xc4,0x82,0x42,0x78,0x08, - 0x3e,0xd8,0x32,0xc8,0xcf,0xaa,0xf2,0x0f,0x38,0x4e,0x8b,0x4d,0x54,0xa3,0x69,0x75,0x73,0x1e,0x37,0x3e, - 0x3b,0x96,0x33,0x94,0x17,0xb0,0x00,0xa4,0xc3,0xd9,0x18,0x66,0x16,0xf0,0x1e,0x80,0x1b,0x20,0x2c,0x38, - 0x35,0xad,0xd3,0xb4,0x68,0x1d,0xea,0x1c,0x93,0x5c,0x5e,0x40,0x9c,0x2a,0x09,0xcb,0x0e,0x7d,0x1e,0x6d, - 0x7d,0x53,0xd2,0x57,0x27,0x1c,0x00,0x21,0xa2,0x59,0x3f,0xaf,0x22,0xfa,0x3f,0x9c,0xd0,0x51,0x50,0xf9, - 0x0b,0xfa,0x47,0xd8,0x0e,0x75,0xa5,0x35,0x72,0x4e,0x36,0xad,0x40,0x18,0xcc,0x0a,0x3e,0xae,0x77,0xb7, - 0x68,0x18,0x2b,0x79,0xf6,0xf4,0x66,0x4e,0x34,0x37,0x72,0xf8,0xa0,0xd0,0xa0,0xd7,0xab,0x47,0x80,0x90, - 0xc4,0xaf,0x21,0xb3,0x22,0x6d,0x6e,0x1a,0x81,0x07,0x5c,0x8f,0x7f,0x0f,0xb5,0x30,0xc1,0xda,0xef,0xab, - 0x5a,0xd1,0x81,0xcf,0x8d,0xa5,0x72,0xba,0xd3,0xd4,0x83,0x1a,0x98,0x30,0x45,0x44,0xb4,0xc0,0x75,0x05, - 0xe4,0x0c,0x77,0x4b,0x58,0x68,0xd3,0x91,0x3f,0xa6,0xbf,0x35,0xea,0xc6,0x79,0x28,0xa5,0x93,0x3f,0xb0, - 0x2c,0xaa,0x22,0x7e,0x9d,0x8d,0x2f,0x6b,0x35,0x1f,0x12,0x35,0x9e,0x29,0xc4,0x61,0x61,0x14,0x42,0x4f, - 0xf0,0x69,0x23,0xfa,0x88,0x9f,0x60,0x66,0x1e,0x11,0x7c,0xd2,0x29,0x32,0xa1,0x5a,0x26,0xdc,0x55,0xa2, - 0xf6,0x51,0xd7,0x24,0x8a,0x5c,0x7f,0x0a,0x5e,0x8f,0x14,0xe4,0x69,0x1e,0x86,0xba,0x37,0x91,0xb4,0x22, - 0x1d,0x34,0x2d,0x78,0x0b,0xf3,0x43,0xa8,0x87,0xe8,0xa9,0xa5,0xa2,0x9b,0xb2,0x5f,0x06,0xaa,0x56,0x32, - 0x1a,0xa2,0x1d,0x36,0x55,0x5b,0x70,0x04,0x71,0x18,0xe1,0x5d,0x48,0xff,0x86,0xc0,0x80,0xb0,0xc0,0x70, - 0x6f,0x44,0x25,0x45,0xfa,0x94,0x83,0x3d,0x20,0xad,0xc3,0x88,0xa7,0xa7,0xa6,0xd9,0x40,0x8f,0xe3,0x46, - 0xc6,0x05,0x29,0x03,0x3d,0xb1,0x89,0xcb,0x94,0x66,0xaf,0xa6,0x11,0x22,0x5d,0x76,0x7f,0x4a,0xb3,0x80, - 0x0f,0x26,0x8a,0x3e,0x51,0xb5,0x2e,0x86,0x4d,0xcc,0xe2,0xaf,0xda,0x8d,0xea,0x7b,0xe6,0x02,0xf5,0xc8, - 0xb0,0x63,0x00,0x44,0x42,0x2d,0x80,0x9a,0x71,0xec,0x39,0xa2,0x98,0x00,0xec,0xcb,0xf5,0x5a,0xf3,0xb5, - 0xfc,0x4a,0x67,0x90,0x2e,0x9c,0x77,0x0b,0xe7,0xed,0xc2,0x39,0x0a,0x6f,0xb6,0x0f,0xac,0x6f,0x3d,0x99, - 0xab,0x58,0xd9,0xb3,0x78,0x96,0x30,0x12,0x36,0xb6,0x36,0x91,0x37,0x02,0x4b,0xf7,0xd9,0xcf,0x3e,0xb3, - 0x16,0x82,0x29,0xcf,0xea,0x97,0xac,0xd3,0x5d,0xaf,0x7f,0x40,0xbc,0x15,0x79,0x81,0x4a,0x31,0x3b,0x7e, - 0xc7,0x5a,0x4d,0x7b,0xae,0x1f,0xa5,0xe7,0xe2,0xb7,0x0f,0x47,0x53,0xa1,0x7e,0x68,0x1b,0xc0,0x03,0xc0, - 0x10,0xc3,0xa0,0x3a,0x3c,0xce,0xee,0xdf,0xad,0x68,0x2c,0xb6,0x37,0xa0,0x15,0x7c,0xd1,0xac,0xfb,0xe0, - 0x17,0x6d,0x76,0xd0,0x15,0x2e,0x44,0x9f,0x91,0xcf,0x1b,0x2e,0x05,0xb4,0x2a,0xaf,0x44,0xc5,0x6e,0x0d, - 0x10,0x9e,0x76,0x64,0xc9,0xb4,0x69,0xfe,0x4d,0xb9,0x76,0xc2,0x2b,0x8f,0x12,0xfd,0xd1,0x9c,0x5b,0xc5, - 0x78,0x81,0xd3,0x9d,0xc0,0x4e,0xc4,0x41,0xf2,0xd6,0xd1,0xb0,0x65,0x92,0x79,0xc3,0x99,0xb3,0x59,0x27, - 0x97,0x2d,0x06,0xb9,0xb2,0x05,0xf5,0x4b,0xf1,0x46,0x67,0x33,0xa9,0x1f,0x55,0x46,0x44,0x2d,0x25,0x0a, - 0xc5,0xe7,0x69,0xa3,0x33,0x9f,0x0b,0x13,0x3e,0x6b,0xd7,0x1d,0x06,0x1e,0xfe,0x69,0xc5,0x1d,0x33,0x22, - 0x34,0x2d,0x8d,0x64,0xbe,0x36,0x4d,0x4a,0xde,0x16,0xa8,0x82,0x65,0x88,0x69,0xd3,0x54,0xb5,0x7d,0x20, - 0xf4,0x55,0x36,0xd6,0x0b,0xd8,0x4f,0x54,0xa5,0x91,0x9d,0x8b,0x35,0x5d,0xe9,0xe4,0xda,0x48,0x58,0xaf, - 0x21,0xbb,0x14,0x85,0x6f,0xca,0x1f,0x44,0x61,0x61,0xc0,0x80,0x6d,0x31,0x4c,0x9c,0xb8,0xe3,0x13,0x42, - 0x0a,0xbc,0x9f,0x4a,0x4f,0x02,0x54,0xeb,0xaf,0x18,0x99,0xd5,0x50,0x33,0xe2,0x07,0x85,0x47,0x41,0x93, - 0x2d,0x96,0x73,0x62,0xb1,0x00,0x75,0x25,0xc4,0xfc,0xe3,0x09,0x57,0xa0,0x91,0xc4,0x04,0x5d,0xd3,0xe2, - 0xec,0xf5,0x9a,0xbe,0x88,0x27,0xa6,0xfe,0x8d,0x0d,0x50,0x34,0x17,0x0c,0x55,0x1c,0xcf,0x4f,0xb4,0x62, - 0xa8,0xca,0x9c,0xbb,0x33,0x92,0x5d,0x04,0x10,0x27,0x25,0xc8,0x6e,0x83,0xd0,0xdd,0x36,0x88,0x12,0x09, - 0xb3,0xc3,0x7b,0x82,0x77,0x98,0xa7,0xc7,0xcf,0x3c,0x6d,0xa4,0xe6,0xd4,0x6e,0x81,0xd3,0x0e,0x4c,0x83, - 0x2e,0x1d,0xe3,0x73,0xd1,0x2c,0xc5,0xc4,0xf9,0xd0,0x13,0x8e,0x41,0x56,0x53,0x9e,0xd0,0xec,0xf7,0xa8, - 0x0b,0xcb,0xcc,0xa8,0x1d,0x47,0x99,0xde,0x89,0x9a,0x36,0x8d,0x46,0x11,0xab,0x98,0x4f,0xf3,0x22,0x65, - 0xde,0xf7,0x73,0xd4,0x6e,0x9a,0x59,0x4a,0xdb,0xa8,0xa6,0x4f,0x85,0x69,0x7e,0xae,0xbf,0x26,0x6a,0x4b, - 0x71,0x63,0x86,0x26,0x35,0x6c,0xfb,0x56,0x49,0x43,0x01,0xb4,0x5b,0x77,0xd6,0x19,0x5e,0x8f,0x6e,0xbc, - 0x17,0x90,0x73,0xdd,0xd9,0xba,0x63,0x56,0xd9,0x9f,0x37,0xf4,0xd5,0xe5,0xb0,0x1a,0xb5,0x66,0x93,0x5c, - 0xae,0x87,0xa0,0x66,0x1a,0xf8,0x42,0xc1,0x3a,0x6b,0x0b,0x34,0x0c,0xa1,0xae,0x19,0x5c,0x4f,0x18,0xc0, - 0x7b,0xa9,0xe8,0xee,0x25,0x50,0x7c,0x85,0x0d,0x6d,0x69,0x63,0x47,0x14,0x20,0xfa,0x0a,0x10,0xc8,0x83, - 0xc0,0x50,0xe0,0x34,0x1a,0x22,0x82,0xbe,0xa3,0x17,0x76,0x9b,0x64,0x06,0x30,0x5b,0xc0,0xce,0x00,0x05, - 0xe2,0x60,0xe0,0x23,0x05,0xd0,0x0c,0x42,0x93,0xa8,0x86,0x07,0xfe,0x98,0xa9,0xc3,0x53,0x18,0x13,0x55, - 0x8d,0xaf,0x41,0xf5,0xcd,0x78,0xf2,0xe9,0x3e,0x91,0x67,0x53,0xa2,0x28,0x3f,0x21,0x70,0xd4,0xa7,0xea, - 0xc1,0xa9,0xa5,0x38,0x3e,0x71,0x77,0x13,0x02,0x82,0xd3,0xea,0xf8,0x53,0x75,0x12,0x51,0x41,0x75,0x54, - 0xb1,0xd0,0x96,0xa9,0x8f,0x61,0xb5,0x2a,0x42,0x63,0x49,0x75,0x55,0x59,0xca,0xa5,0x4a,0x4e,0xed,0x0b, - 0xd5,0x92,0xd8,0x2a,0x51,0xc8,0x50,0xd3,0x54,0x13,0x94,0xda,0x1f,0xab,0x04,0x1d,0x3d,0x6c,0xc9,0x59, - 0xfe,0x84,0xd0,0xf6,0x17,0xf9,0x40,0x61,0xfd,0x20,0xca,0xdd,0x45,0x48,0xcf,0x22,0xba,0xa5,0x22,0x57, - 0x09,0xe8,0x3e,0xb3,0x7a,0xf8,0x0e,0x34,0xd7,0xe5,0x62,0x54,0x0d,0x4f,0xaf,0xb0,0x12,0x59,0x45,0x40, - 0x55,0x40,0x9a,0x7d,0x9a,0xd3,0xc9,0xb5,0x22,0x04,0x35,0xdd,0xdb,0xa3,0x55,0x27,0x3e,0x49,0x04,0x35, - 0x0c,0x0f,0x84,0xe7,0xd5,0xef,0x54,0xec,0x0e,0xf0,0xd2,0x65,0x53,0x96,0xf0,0xf5,0xfd,0x9d,0x18,0x1f, - 0x5e,0x9f,0xd9,0x9c,0xd0,0x47,0xe0,0xad,0xce,0xdc,0xa2,0xec,0x3b,0x15,0x14,0x30,0xdb,0xc6,0x78,0x6c, - 0x02,0x46,0xfd,0x21,0x00,0xdc,0x28,0x2a,0x54,0x67,0xdb,0x56,0xcf,0x92,0x8d,0x50,0x7c,0xb7,0x69,0x6a, - 0x0a,0xfa,0xd4,0x6b,0x76,0x65,0x9b,0x15,0x88,0x64,0x8d,0x56,0x9f,0x4c,0xaa,0x18,0x87,0xba,0x63,0xd5, - 0x78,0xc6,0x56,0x54,0x85,0xe9,0xc4,0x79,0x14,0x9b,0xbc,0x02,0x7f,0xc7,0x15,0xce,0x7f,0x44,0x9d,0x23, - 0x10,0xa6,0xf9,0x32,0xe5,0x91,0x17,0x9f,0x9b,0xaf,0x0a,0xfc,0x1d,0xf3,0xdf,0xf8,0x3c,0xba,0xb5,0xbf, - 0x4d,0xbb,0xbf,0x33,0x1f,0x5f,0x6e,0x29,0x94,0xd8,0x48,0xee,0x14,0xa7,0xee,0x8a,0x56,0xe1,0x27,0x59, - 0x2d,0x9a,0xf6,0xfe,0x74,0x2d,0xd8,0xb1,0x92,0x7b,0x16,0xdb,0x35,0xd7,0x30,0xa8,0xcd,0xa0,0x97,0x80, - 0xec,0x37,0x52,0x9e,0x3e,0xaa,0x71,0x9a,0xa0,0x46,0x34,0x17,0xde,0xb6,0x9f,0x66,0x4e,0x94,0x64,0xfc, - 0x05,0x59,0x45,0x04,0x99,0xab,0x42,0x64,0x28,0x6d,0x3c,0x1e,0xa9,0x6d,0x29,0x18,0xab,0x01,0x19,0x23, - 0xd3,0xa6,0xb9,0x73,0x25,0x9e,0xdc,0x22,0x1c,0x76,0xf6,0x2f,0x0e,0x65,0x66,0x7f,0x6e,0x71,0xf4,0x43, - 0x31,0x7e,0x9b,0xcd,0xe6,0xc8,0x29,0xaf,0x8a,0x1f,0xc4,0xbe,0x61,0x38,0xcb,0xe7,0x4d,0x56,0xf5,0x59, - 0x27,0xff,0x15,0xfd,0xe1,0xd0,0xe9,0xf8,0x36,0x51,0xdc,0x31,0x9d,0xe8,0xe1,0x46,0x6e,0x9c,0x1c,0x02, - 0xe4,0x2b,0x51,0x06,0x08,0x1f,0x3a,0x84,0xf8,0x14,0xb2,0xc8,0x51,0x3d,0xe2,0xd1,0xd4,0x2c,0x68,0xba, - 0xcc,0xa7,0xd8,0x47,0x4c,0xe7,0x7b,0x29,0x44,0x0f,0xd1,0x37,0x89,0x97,0x02,0xd1,0xec,0x19,0x0d,0xf6, - 0xe3,0x86,0x98,0x04,0x73,0xf8,0x80,0xeb,0xdb,0x85,0xe1,0xa0,0x91,0x93,0x41,0x56,0x49,0x1f,0x0a,0x64, - 0x4c,0xa4,0x61,0x23,0x30,0xe3,0x1a,0x7b,0x60,0xdc,0xaa,0xe1,0x08,0x5a,0x27,0x1b,0x6b,0x0c,0xe4,0x2d, - 0xf2,0x45,0x26,0x06,0x26,0x96,0xc1,0x05,0xc7,0xb4,0x2d,0x93,0x66,0x89,0xdf,0x76,0x60,0x20,0x2d,0x80, - 0xb7,0x1a,0x6e,0x6b,0x8e,0xa5,0x4a,0x42,0x77,0xa9,0x43,0x41,0xe5,0x83,0x94,0x85,0x35,0x15,0x3a,0x4a, - 0x9b,0x9b,0x83,0xae,0x3a,0xd9,0xfb,0xb6,0x01,0xe0,0x76,0xd5,0x5c,0x27,0x55,0x94,0xf9,0x15,0x95,0x83, - 0x43,0xbf,0x9e,0xdc,0x10,0xb6,0x5b,0x76,0x30,0x7e,0x55,0x75,0xa7,0x97,0x75,0xb7,0x97,0x93,0xa4,0x46, - 0x07,0x6d,0x67,0x27,0xc4,0x2f,0x2a,0x27,0x89,0xd5,0xf4,0x30,0xa3,0xcb,0x0f,0xf0,0xec,0xe7,0xf0,0x06, - 0xbe,0xe9,0x93,0xb7,0x73,0x4c,0xf0,0x2d,0xde,0xb1,0x77,0x6a,0x58,0x29,0x4c,0xdf,0x11,0xd1,0x66,0x36, - 0x6b,0x89,0x18,0x6b,0x4c,0xca,0x56,0xbc,0x67,0x2e,0xc3,0xcb,0x10,0x2f,0x11,0x4b,0xbd,0xf3,0x04,0x5b, - 0x6e,0xbd,0x6e,0x7c,0x17,0x65,0x5d,0x95,0xa9,0x24,0x85,0x6a,0x63,0x78,0x4a,0x40,0x33,0xcd,0x2a,0xe6, - 0xad,0xf0,0x1d,0x51,0x96,0x8d,0x09,0x69,0x0b,0x8d,0x1f,0x8a,0x5b,0xe3,0x9f,0xb1,0x54,0xd1,0x71,0xdd, - 0xb3,0x34,0xa3,0xba,0x41,0xe9,0x18,0xc1,0x3b,0x5b,0x3a,0xa1,0x85,0x8f,0xab,0x5e,0x88,0x4d,0xaf,0x21, - 0x06,0x54,0x20,0x5b,0x11,0x81,0x0d,0xa8,0xc3,0x8f,0x3d,0x92,0xf0,0xbc,0x3b,0x1d,0x09,0x1d,0x21,0xb4, - 0x30,0x70,0x0f,0x03,0x82,0x27,0xc2,0xc6,0xda,0x24,0x8e,0xdb,0x70,0x97,0x47,0x63,0xf6,0x4d,0x76,0xbe, - 0xab,0xc4,0x0e,0xe5,0x90,0xeb,0xc6,0xd5,0xf8,0xa8,0xa0,0x85,0x00,0x21,0x1d,0x77,0x89,0xff,0x6b,0xdb, - 0xa2,0x66,0x26,0x0b,0xf0,0xd7,0xe0,0x27,0xb7,0x15,0xde,0x34,0xe7,0x0b,0x64,0x8d,0xb4,0xc0,0xc0,0x1d, - 0x41,0xb9,0x48,0xf8,0x27,0x73,0xe2,0xec,0xd9,0xb1,0x92,0xf7,0xc0,0xb5,0xb0,0x72,0xf4,0xb2,0x40,0x91, - 0x88,0xa0,0xdc,0x27,0xc9,0x33,0xc3,0x1d,0xe8,0x07,0x16,0x21,0x8f,0x52,0x68,0xc5,0x69,0xd4,0xb0,0xe4, - 0x7e,0x5f,0xf3,0x71,0x40,0xe8,0xb0,0xa6,0xf9,0x1d,0x13,0xe3,0x57,0x2e,0x90,0x50,0x43,0x00,0x61,0x5f, - 0xc0,0x7e,0xc7,0xba,0x0e,0xce,0xe0,0x27,0xa4,0x6e,0x72,0x60,0x94,0x14,0xf2,0x76,0xb0,0xd0,0xc2,0xcf, - 0x96,0x10,0x5f,0x84,0x08,0x29,0xc1,0x85,0xcb,0x82,0xd9,0xf7,0x63,0x7d,0x7e,0x13,0xe1,0x94,0x9f,0xb4, - 0xce,0x56,0x7c,0xc5,0x82,0x2f,0x4b,0x31,0x4e,0x84,0xda,0xaf,0x89,0xc7,0x77,0x21,0xbd,0x9c,0x51,0x57, - 0x8b,0x06,0x94,0xe3,0xa7,0x66,0xeb,0x9e,0xa3,0x2a,0xcb,0xd0,0xc3,0xad,0x34,0x30,0x22,0xd8,0x77,0x80, - 0x51,0xc3,0x1e,0xd2,0x39,0xda,0x74,0x96,0xb8,0x8a,0xc6,0x9f,0xe8,0x4f,0xfc,0x18,0x7f,0xc2,0xab,0x2c, - 0x94,0x4f,0x92,0x16,0x74,0x0d,0xa5,0xde,0xb7,0x0c,0xe3,0xcf,0x0a,0xc0,0xbd,0xd3,0xa2,0x1a,0xd8,0x7f, - 0x03,0x67,0x6e,0x11,0xae,0xb2,0x5e,0x15,0xc6,0x30,0xf2,0xdd,0xe9,0x69,0x30,0xc8,0xd4,0xee,0x61,0xd4, - 0x3a,0x7f,0x4e,0x2d,0xa9,0xa0,0xbb,0x77,0x95,0x69,0x0b,0x1a,0x62,0x55,0xf1,0x49,0x33,0x08,0x8b,0x71, - 0x70,0x0a,0x1f,0xe7,0x20,0x90,0xf0,0x41,0xde,0x94,0x5c,0x65,0x9e,0x60,0xf6,0x56,0xf6,0x5a,0x82,0x93, - 0x3a,0xfe,0x92,0x09,0x3a,0x8e,0x17,0xab,0xd1,0xa9,0xf3,0x02,0xe0,0xe4,0xa3,0x4c,0x2b,0x53,0x07,0x68, - 0xb8,0xb2,0xc2,0xbd,0x23,0xd3,0x9a,0x67,0x6e,0x66,0x3b,0xe0,0x6c,0xad,0xc4,0x1a,0x0e,0xe6,0x56,0xb0, - 0xdf,0xca,0xeb,0xd7,0x34,0x94,0xc4,0xdb,0x8b,0x1f,0x3d,0x36,0x05,0x6a,0xf8,0x26,0x72,0x74,0x7d,0x29, - 0x7f,0xc6,0x8c,0x80,0xf0,0x14,0xc5,0x1e,0xff,0x55,0x89,0xfc,0xcc,0xd3,0xf4,0x11,0xea,0x84,0xfc,0x71, - 0xc4,0x9a,0xbd,0x7c,0x7c,0x7c,0x62,0x74,0xd4,0xb9,0xf6,0x06,0xdf,0x06,0xa3,0xc7,0x99,0x78,0x85,0x9d, - 0x96,0xc9,0x69,0x46,0x6d,0x9c,0x16,0x1c,0x17,0xfd,0x14,0xd2,0x31,0xfa,0x99,0x27,0x17,0x9c,0xda,0x24, - 0x97,0xfc,0xfb,0x7b,0x72,0x8d,0x9f,0x3c,0x39,0xc3,0xcf,0x22,0x39,0xe3,0xd4,0x59,0xb2,0xe0,0xdf,0x8f, - 0xc9,0x39,0xff,0x9e,0x25,0xd7,0xfc,0x7b,0x99,0x7c,0xc4,0x0f,0x71,0x70,0x88,0x97,0x71,0xba,0x4a,0x72, - 0x4e,0x3e,0x4f,0x3e,0x7a,0x3d,0xf8,0x24,0x93,0xe6,0x0b,0x09,0x89,0x41,0xd6,0x60,0x26,0xde,0x14,0xec, - 0x66,0xa4,0x23,0x9a,0x8a,0x7e,0xb7,0x91,0x17,0x6b,0x0d,0x56,0xe9,0x4c,0x3e,0xa9,0x13,0x1d,0x3b,0x74, - 0xae,0x63,0xbc,0xd4,0x89,0x6c,0xc3,0x65,0x61,0x02,0x73,0xe2,0x24,0x62,0x03,0x36,0xa2,0x78,0x52,0xfd, - 0xce,0xe1,0x0e,0x91,0xcd,0x78,0xbc,0x87,0x38,0x2e,0x32,0xb6,0x43,0xd8,0xb4,0xed,0x3a,0x35,0x51,0x94, - 0x8b,0x23,0x5c,0x2a,0x34,0x20,0xa2,0xa6,0xc0,0x23,0x6e,0x77,0x32,0x9a,0x18,0xd7,0x40,0xb3,0x73,0x92, - 0x54,0x79,0xe7,0x45,0xe2,0x9a,0x0c,0x23,0xb5,0x75,0x26,0xc1,0xac,0xdb,0xbd,0x61,0x08,0x88,0x29,0x71, - 0x5a,0x8b,0x6d,0xdd,0x58,0x53,0x9d,0x5b,0xc1,0x4c,0x8c,0xb4,0xe4,0x0e,0x87,0xd8,0xd7,0x88,0xd7,0x99, - 0x17,0x94,0x6c,0xf8,0xe4,0xcc,0xf5,0x5c,0x8d,0xca,0x93,0x88,0x24,0x34,0xa6,0x72,0x13,0xdf,0xde,0x86, - 0x51,0xb5,0xb4,0x1b,0xf1,0x68,0x99,0x87,0xd9,0x2d,0x26,0xc7,0xac,0x69,0x15,0xb3,0x63,0xcf,0xf6,0x0c, - 0xf3,0xab,0x09,0x1e,0xd1,0xad,0x64,0x90,0x64,0xf1,0x50,0xe6,0xd4,0x47,0x8b,0x7a,0x4e,0xe1,0x1f,0x28, - 0xf6,0x77,0x72,0xee,0x27,0x73,0x23,0x9b,0xa3,0xf2,0x7d,0x36,0x1e,0x7a,0x42,0x56,0xcc,0xc0,0x43,0x6a, - 0x96,0x4f,0x23,0x4f,0x6b,0x19,0x7a,0x01,0xae,0x2a,0xf1,0x46,0xc6,0x11,0x45,0x05,0x59,0x51,0xc3,0x72, - 0x47,0xfd,0x0c,0xd7,0x5a,0x27,0x5c,0x73,0x69,0x5a,0x2c,0x67,0x42,0xcb,0x4e,0xbd,0x32,0x26,0x69,0xa4, - 0xeb,0x44,0x80,0x21,0xc2,0x33,0xba,0x56,0xfd,0xd6,0xa9,0xd7,0x4b,0x65,0x39,0x99,0x88,0xfa,0x78,0x59, - 0xea,0xc8,0xa8,0x2c,0x5c,0x52,0x22,0x12,0x74,0x42,0x35,0x73,0x1f,0x70,0xcd,0xbc,0x67,0x44,0x55,0x35, - 0x8e,0xaa,0xca,0x1e,0x10,0xf5,0x42,0x68,0x8f,0x91,0xf6,0x1d,0x2a,0x34,0xc9,0xde,0xf3,0xa9,0x14,0x46, - 0x1b,0xb5,0x4a,0x4e,0x5b,0xda,0x18,0xd7,0xff,0x04,0x72,0xd5,0x92,0xe0,0x7c,0xbd,0x9e,0x87,0xac,0x00, - 0xea,0x14,0x6d,0x4f,0x12,0x13,0x64,0x12,0x3d,0x0c,0xfd,0x0a,0x39,0xe8,0xc9,0x34,0xa9,0xc2,0x95,0x9a, - 0x39,0x97,0x87,0x10,0x0b,0xd1,0x67,0xbf,0x33,0x65,0x2f,0xc7,0x71,0xe6,0xcf,0xe9,0xde,0x9e,0xa4,0x72, - 0x15,0x71,0x13,0x4e,0x9d,0xf8,0x33,0xea,0x8d,0xb7,0xec,0x15,0xe0,0x0f,0x61,0x79,0xd5,0x49,0xe2,0xba, - 0x14,0xea,0x32,0x6b,0xed,0x8f,0x82,0xc6,0xac,0x33,0x60,0x10,0xc0,0xc5,0xdc,0xf2,0xb5,0x57,0x8f,0x8b, - 0xea,0x77,0x4c,0x13,0x00,0x6b,0x4a,0x0c,0xc1,0x3c,0xbd,0x1e,0xdb,0x82,0x34,0x15,0x31,0xb1,0xa3,0x47, - 0x12,0xf1,0xcc,0x57,0xc5,0x75,0x06,0x9a,0x79,0xc0,0x17,0xfa,0x9f,0xcb,0x4c,0x2a,0x5d,0xf3,0x7a,0x7d, - 0xff,0xe0,0x40,0x77,0x4c,0x87,0x51,0x83,0xc7,0xfa,0x5f,0x69,0x41,0xae,0x88,0xe0,0xaa,0xcc,0x97,0x11, - 0x90,0xd8,0xee,0xa1,0xb2,0xed,0x8d,0x5b,0x23,0x8c,0xdd,0xf7,0x1b,0x07,0x7b,0x46,0xad,0xb0,0x09,0x57, - 0x84,0x86,0xe7,0xb4,0x79,0x2c,0x1c,0x5f,0x26,0x2b,0xb5,0x48,0x4a,0x75,0x4e,0x38,0xef,0x9a,0x0e,0x94, - 0x33,0x3a,0x5b,0xae,0xe8,0x30,0x20,0x4c,0x77,0xd5,0x12,0x3d,0x26,0x97,0x26,0xe1,0x65,0x46,0xa8,0x5e, - 0x02,0xe9,0x2d,0x94,0x6e,0x82,0x38,0x7a,0x83,0xe8,0xe3,0x6b,0xd5,0xa4,0xe7,0xf1,0xd9,0x46,0x5d,0x8d, - 0xca,0xa4,0x64,0x32,0xfd,0x35,0xd0,0x84,0xe2,0x28,0xc0,0x44,0xbf,0xce,0x3d,0x23,0x4d,0x8f,0x93,0x42, - 0x94,0x68,0xe4,0x82,0x0c,0xe4,0x07,0x3e,0x48,0x88,0x7e,0x64,0x26,0x3b,0x60,0x89,0x73,0xa7,0x40,0x06, - 0x81,0x17,0x95,0xc8,0x0b,0xb8,0xf0,0x8e,0xc2,0x42,0xce,0x1e,0x96,0x03,0x2f,0x0d,0x45,0x18,0xb1,0x42, - 0x43,0x7f,0xc1,0x75,0x69,0x63,0x92,0x62,0xa8,0xdd,0xf7,0x84,0xf2,0x1b,0x51,0xff,0x88,0xc2,0x8b,0xc6, - 0xf8,0x9b,0x1c,0x9b,0x2f,0x40,0x32,0x9d,0xa5,0x93,0x8f,0xf6,0xa4,0xe6,0x42,0x31,0x17,0xea,0x96,0xd9, - 0xd0,0xfa,0x19,0xda,0xbe,0x14,0xea,0x78,0xe6,0x76,0x7b,0x2b,0x48,0x96,0x2d,0xe8,0xcc,0xb7,0x08,0x99, - 0xa6,0x16,0x73,0xdc,0x20,0x70,0x70,0x21,0x14,0x2c,0x1c,0xb7,0x5d,0xb1,0x26,0x84,0xa5,0x4d,0x13,0xce, - 0x1d,0xc1,0xb4,0x62,0xea,0xd6,0xc4,0xdf,0x24,0x1a,0x7f,0x15,0x8d,0xbe,0x27,0x94,0x3f,0x57,0xb4,0x75, - 0x40,0x83,0xad,0xd7,0x78,0x9d,0xc8,0xeb,0xa1,0x25,0x56,0xeb,0xcd,0x06,0xd2,0x71,0x8d,0xf5,0x4c,0x87, - 0x4c,0x87,0xd3,0xb9,0x33,0x93,0xf6,0x96,0xab,0x4d,0x07,0x64,0x76,0xc0,0xba,0xcf,0x69,0xbb,0xa7,0x51, - 0x4b,0x32,0x3e,0x21,0x8c,0x36,0x3f,0x49,0x9e,0x85,0x73,0xea,0x0c,0x9f,0xf7,0x9a,0x54,0x03,0x62,0xe2, - 0xb1,0x12,0x6c,0x3c,0xc4,0x69,0x65,0x5e,0x15,0x72,0xb8,0x46,0x97,0x23,0xaf,0x3c,0xbd,0x2b,0xe6,0x51, - 0x3f,0xe1,0x5c,0xa2,0x29,0x67,0x2b,0x13,0x42,0x7a,0xe9,0x50,0xa8,0x5b,0xcf,0xa6,0x60,0x45,0x07,0xa4, - 0x5a,0x39,0xcb,0xa0,0x2d,0xb5,0xde,0xcc,0x3f,0x56,0xd5,0xcc,0x33,0xa1,0x4f,0xe1,0x6a,0xc9,0xfa,0x8a, - 0x90,0x4a,0x01,0xf0,0xa1,0x55,0x17,0x92,0x07,0xf0,0xc5,0x99,0x89,0x94,0xa1,0xfd,0x39,0x83,0xb9,0xcb, - 0x4c,0x8e,0x49,0xe9,0xe4,0x14,0xd4,0x12,0x8b,0xa6,0xf1,0x4b,0x2f,0xe2,0xd2,0xf0,0xba,0x50,0xfe,0xb4, - 0xa7,0x88,0x41,0x44,0x9b,0x4d,0x83,0xc0,0x92,0xca,0x31,0x03,0x5a,0x62,0x5e,0x97,0x4c,0x0f,0x70,0x43, - 0xcb,0x68,0xb3,0xeb,0xe3,0xf4,0xcc,0x28,0x22,0x33,0xab,0x83,0xec,0xd8,0x20,0xbc,0xa8,0x7c,0xd9,0xa8, - 0xa6,0x5d,0x5f,0x54,0x22,0xd6,0x94,0xaf,0x20,0xfe,0xcf,0x93,0xe7,0x70,0x4f,0x1a,0xd9,0x14,0x48,0xf9, - 0xfa,0x04,0xc2,0x1e,0x44,0x6b,0x58,0xc8,0xec,0x23,0x7c,0x5f,0xf5,0x23,0x01,0x57,0x4e,0x44,0x08,0x71, - 0xc3,0x0c,0x65,0x68,0xf6,0xc2,0x83,0x7b,0x09,0x71,0x3a,0xb1,0xfa,0x10,0xf1,0xaf,0x08,0x2e,0x57,0xd9, - 0xbe,0xc5,0xff,0xfb,0x44,0xce,0x83,0x14,0x18,0x84,0x17,0xe3,0x80,0x5e,0x2e,0x98,0xa9,0x28,0x55,0xaf, - 0x5f,0x47,0xaa,0x6e,0x1e,0x13,0xaa,0x8a,0x2b,0x65,0x0d,0x9b,0xe2,0x99,0xb2,0x24,0x66,0x3c,0x65,0xc4, - 0x34,0x71,0x98,0x8a,0x98,0xf5,0x55,0x24,0xc1,0x7c,0x2e,0xd5,0x42,0x9d,0xab,0x6b,0x75,0xa6,0xae,0x3c, - 0xdb,0x6a,0xc4,0xb8,0xd7,0xe4,0x0e,0x91,0x4d,0x46,0x5d,0xd9,0xe6,0x5b,0x52,0x36,0x7b,0x4b,0x61,0xc8, - 0x10,0x4e,0x12,0x6c,0x83,0x94,0x88,0x7c,0xe9,0x52,0x44,0x0b,0x3c,0x97,0x8c,0x57,0x95,0x27,0x73,0xce, - 0x5b,0x44,0x54,0x43,0x5f,0x83,0xd2,0x48,0x8d,0xbd,0x83,0x55,0xc5,0x12,0x1a,0x1e,0xb5,0x0a,0xe4,0xac, - 0x61,0x47,0x5c,0x32,0xf0,0x6a,0xc4,0xc1,0xfa,0x25,0x79,0x97,0xf1,0x16,0x9f,0x8e,0x3a,0x9d,0xac,0xfb, - 0x0f,0x5f,0x44,0xf8,0x07,0x54,0xa7,0x10,0x7d,0x10,0xdc,0xf8,0x94,0x2c,0xa1,0x78,0x91,0x94,0xc5,0x72, - 0x0f,0x80,0xf5,0x7e,0xc2,0xcd,0x4e,0x30,0x65,0xaa,0xc6,0x44,0xdf,0x84,0xf3,0xa4,0x8e,0xc6,0xc7,0x1f, - 0x69,0x98,0x27,0x1d,0x23,0xdb,0xb9,0x0b,0x47,0x45,0x44,0x84,0x0b,0x20,0x83,0xb9,0x44,0x2f,0x11,0x48, - 0x46,0xe4,0x4e,0x30,0x85,0x2e,0x7d,0x53,0xe8,0x8c,0x26,0xac,0x3c,0xae,0x4f,0xa2,0x3e,0xff,0x55,0x22, - 0x6e,0xe8,0x1c,0x9b,0x1d,0x13,0x1d,0x65,0x83,0x81,0x9c,0x74,0xac,0xf2,0x27,0xd1,0xd8,0xb8,0x68,0x7d, - 0x73,0x40,0x23,0xfc,0x36,0xa4,0x1a,0xf3,0x70,0xa2,0x60,0x76,0xc2,0xfe,0xf4,0xc4,0x28,0x12,0x99,0x46, - 0x23,0xa3,0x99,0xf9,0x96,0xf0,0x25,0x30,0x00,0x50,0xd3,0xc7,0x70,0xc5,0xca,0xb5,0xc1,0x84,0xf2,0x44, - 0x91,0x8d,0xfb,0xa9,0x74,0xf8,0x7e,0xc2,0x0b,0x9e,0x46,0x70,0x46,0x0b,0x18,0xc5,0xb0,0x79,0x1c,0xa3, - 0x8a,0x71,0xa7,0x02,0x04,0xa2,0x12,0x6b,0x06,0xf9,0x2a,0xfc,0x08,0x7c,0x18,0x7f,0x4b,0x7f,0xa5,0xcd, - 0xee,0x07,0xd2,0x5c,0x4c,0xc8,0xb8,0xb4,0x72,0x32,0x5e,0xf8,0x09,0xb4,0x91,0x4c,0x72,0x4c,0xc0,0xa7, - 0x0a,0x30,0x30,0x5c,0x31,0xdb,0x4a,0xec,0xf7,0x25,0xc0,0x3c,0x18,0xa4,0x32,0x30,0xfa,0x7b,0x1a,0x98, - 0xce,0xa2,0x51,0x87,0xf7,0x36,0xb4,0x2e,0x5a,0xf6,0x13,0x63,0x19,0x9f,0x55,0x6c,0xb2,0xf1,0x17,0xf5, - 0x2a,0xdb,0x5c,0x3b,0x21,0x11,0x0b,0xaf,0x92,0xe5,0x47,0x5e,0xc2,0x81,0xa9,0x27,0xeb,0xf8,0x44,0x65, - 0x9e,0xb9,0x3a,0x5b,0x87,0x6c,0x89,0x47,0xcb,0x68,0x1c,0xce,0x92,0x7c,0x78,0xe7,0xb2,0xa0,0x83,0x15, - 0xd1,0xaa,0xe4,0x69,0x58,0xd4,0x2c,0x0b,0x3a,0x27,0xb2,0x29,0x3d,0x47,0x40,0xd7,0x7a,0x89,0x40,0x08, - 0x84,0x6f,0x56,0x90,0x8c,0xe5,0xf5,0xdb,0xac,0xce,0x2a,0x22,0x7b,0x28,0x9b,0x52,0xc7,0x1a,0x9b,0x50, - 0x16,0xfb,0xf1,0xbe,0x99,0xa7,0x0d,0x02,0x5b,0xe8,0x8f,0xf1,0x1d,0xf6,0x5f,0x1b,0x7f,0xe4,0x4c,0xb0, - 0x26,0x2f,0xc2,0xdc,0x93,0xd0,0x59,0x54,0x54,0x07,0xa0,0x2f,0xc7,0xc4,0x02,0x4d,0xe9,0xdb,0x1c,0xc7, - 0x4d,0x14,0xeb,0x66,0xca,0xde,0xda,0xa2,0x78,0x95,0x50,0xf1,0x52,0x8a,0x7b,0xa2,0xd0,0x15,0x46,0xe9, - 0x39,0xaa,0x54,0x61,0x6e,0x59,0x9a,0x1c,0x7e,0x61,0x25,0x71,0x48,0x65,0x95,0xe5,0xe7,0xc5,0x6b,0xe3, - 0xce,0x4c,0x93,0x42,0x30,0xc0,0x9b,0xdf,0xa0,0x3b,0x96,0x5a,0x36,0xf4,0x85,0x41,0x68,0x9e,0x2d,0x36, - 0x07,0xa4,0x72,0x39,0x76,0x73,0x3d,0x98,0xf0,0x06,0xd3,0x1c,0x9b,0x2b,0x40,0x9b,0x8d,0xe8,0x9f,0xb9, - 0x86,0x33,0xe2,0xc0,0xe6,0x43,0xb6,0x54,0x28,0x04,0xb3,0xd1,0x3e,0xe7,0x1e,0x12,0x26,0x67,0x62,0x7c, - 0x15,0xc5,0x40,0x39,0x1b,0x0f,0x93,0x79,0xde,0x19,0x7e,0xc4,0x39,0x2b,0x26,0x60,0xc5,0x6c,0xbd,0x5a, - 0x66,0x95,0x39,0x81,0x50,0x4e,0xa7,0x30,0x09,0xc2,0xa6,0xa7,0xfc,0x6e,0x2c,0x25,0x6e,0xda,0xef,0x89, - 0x71,0x30,0xe9,0x5a,0x5b,0x23,0x14,0x9b,0x23,0x44,0x70,0xa6,0x09,0xb3,0x69,0x1c,0xdf,0x40,0x3a,0xd6, - 0x59,0x4a,0x2c,0xbf,0x4e,0xb1,0x07,0x64,0x69,0xf4,0xf5,0xe5,0xc9,0xae,0xd8,0x42,0x42,0x18,0xc0,0x3e, - 0x92,0x08,0x21,0xd3,0x40,0x9c,0xdd,0x63,0x8d,0xbb,0x25,0xba,0xd2,0x24,0x2c,0xa1,0xb4,0x22,0xe9,0xca, - 0x4b,0xc7,0x45,0xcc,0xda,0xf5,0x2d,0x3b,0x38,0x71,0x42,0xb0,0x7d,0x11,0xe5,0x49,0xe6,0x2b,0x4f,0xc2, - 0xc6,0x09,0x71,0x41,0x76,0x7e,0x93,0x1c,0xd0,0x9a,0xb4,0xd3,0x1e,0x1c,0x60,0x81,0x74,0x44,0x2e,0x24, - 0x38,0xb7,0x38,0xb7,0xdb,0x0a,0x23,0x9c,0x57,0x18,0xa3,0xe7,0x74,0xbf,0x61,0xef,0x76,0x78,0x07,0x77, - 0x27,0x8d,0x0e,0xac,0xd0,0x5b,0xc0,0xe4,0x39,0x14,0xcf,0xed,0x32,0xda,0xec,0x8a,0x23,0xce,0xb8,0x8d, - 0x72,0xdc,0x70,0xea,0x49,0x82,0x50,0x28,0xdb,0xc6,0x03,0x4f,0x33,0x1b,0x8a,0xe4,0x14,0x7e,0xfd,0x2d, - 0x23,0xcb,0x37,0x2d,0x53,0x08,0xf6,0x44,0xc4,0x99,0xde,0x21,0x1a,0xd8,0x09,0xd3,0xfb,0xea,0x49,0xd6, - 0xa2,0x4f,0xba,0xab,0x33,0xf6,0x5d,0xdc,0xbf,0xd9,0x3f,0x8c,0xb7,0xd5,0x32,0x63,0xdf,0x39,0xbf,0x53, - 0x1a,0x5a,0x39,0xb5,0x1b,0xda,0x78,0x07,0x12,0xf1,0xeb,0x04,0xb8,0xdd,0xc4,0x3b,0x28,0x24,0x54,0x35, - 0x7b,0xa7,0x36,0x5a,0x2e,0xee,0x49,0x10,0x7f,0xeb,0x58,0x03,0xb0,0x46,0x94,0xe1,0x14,0xba,0x16,0x06, - 0xcf,0x53,0xc6,0x73,0x5d,0xb8,0x34,0x11,0x75,0x61,0xdf,0xce,0x26,0x8d,0x9a,0x3b,0x78,0x03,0xa1,0xd8, - 0x96,0x61,0xd1,0xa8,0x86,0xac,0x98,0x0f,0xfb,0xe7,0xa0,0xc8,0x4a,0x76,0x12,0xdc,0x78,0xe2,0x9e,0xe7, - 0x5b,0x6a,0x05,0x36,0xb9,0xdf,0xcd,0xd9,0x35,0x8b,0x51,0x0c,0x3c,0xd3,0xf0,0xbb,0x5e,0xe7,0xae,0x85, - 0xe7,0x9a,0x58,0x1e,0xde,0x99,0xd2,0x10,0xab,0x12,0xbe,0x59,0x99,0x55,0xf1,0xaf,0xf8,0x0e,0x4a,0xcf, - 0xdc,0x3f,0xf3,0x3d,0xb0,0x6f,0x44,0x9e,0xfc,0x18,0x2a,0x81,0xf8,0x19,0xef,0x79,0x97,0xa0,0x0a,0xff, - 0x8d,0x8e,0x5a,0x2e,0x05,0x1b,0x32,0x7e,0x22,0xd2,0x42,0x3f,0x21,0x8a,0x31,0x7e,0x4f,0x62,0xfd,0xe0, - 0xdb,0xef,0xb7,0x97,0x3f,0x1b,0x37,0xe3,0x6c,0x10,0x20,0x3c,0x4d,0x9c,0xc5,0xe0,0x0f,0x3d,0xe3,0xee, - 0x57,0x3e,0x80,0x6d,0x01,0x4a,0xdf,0x31,0x48,0x93,0x85,0x18,0x7f,0xb4,0x3b,0x55,0xe9,0xb4,0x73,0xf9, - 0x83,0x92,0x77,0x28,0x91,0xbb,0x09,0xea,0xc4,0xc6,0x03,0x91,0xc5,0x17,0xad,0x41,0x20,0x80,0xff,0x83, - 0x84,0x7a,0x11,0x29,0xfa,0x2d,0xbc,0x5d,0xc9,0xfa,0x98,0x6e,0x6b,0x82,0x2e,0x83,0x60,0xd4,0x92,0xc4, - 0x65,0xda,0x77,0x3f,0x6c,0x74,0x8c,0x5c,0x54,0xd7,0xf8,0xd5,0xf1,0x06,0xee,0x05,0xe8,0xb6,0x4d,0xbb, - 0x3f,0xec,0x39,0xb7,0x1e,0xd4,0x97,0xe7,0x41,0x1c,0x2c,0xd2,0xe6,0x82,0x6d,0x8a,0xc6,0xf2,0xb8,0xa5, - 0x18,0x7a,0xeb,0x7d,0xda,0xd3,0x8e,0x8d,0x8c,0xf7,0xfb,0x2a,0xab,0xae,0xdf,0x65,0xd0,0x36,0x97,0x72, - 0x57,0xcc,0x6d,0xf1,0x2e,0xa7,0xf9,0x65,0xd0,0xb2,0xd0,0x7b,0xd4,0xd9,0x1f,0x6c,0x50,0x59,0x65,0xb3, - 0x8e,0x03,0x90,0x71,0xaa,0xce,0x7d,0x0f,0x6d,0x03,0x9a,0xc0,0x0a,0xf0,0xbd,0x2e,0x61,0x16,0x4f,0xdf, - 0xd6,0xa3,0xae,0xd6,0xa4,0x64,0x63,0xa7,0x15,0xff,0xe2,0xb0,0xc7,0x2f,0x0e,0x56,0x1c,0xaa,0x78,0xd4, - 0x34,0x7b,0xec,0xda,0x7f,0x5e,0x3c,0x2b,0xab,0xde,0x5a,0xf0,0xd7,0xa2,0x89,0x9c,0x70,0xf0,0xde,0x1e, - 0x27,0x31,0x16,0x36,0x75,0x13,0x4c,0xc8,0x43,0xee,0x01,0xeb,0x4f,0x22,0xa3,0x76,0xf1,0xaf,0x40,0xc1, - 0xe1,0x78,0xa7,0x5f,0x16,0x24,0xc9,0x1e,0xd4,0xc7,0xbd,0xef,0xfa,0xcd,0x2a,0x3d,0x67,0x1b,0xd6,0x68, - 0xcb,0x53,0x8e,0x92,0x42,0x54,0x00,0x3f,0x77,0x25,0x2b,0x50,0xc6,0x89,0x74,0x84,0x4f,0x57,0xa0,0xcd, - 0x56,0x20,0x87,0x0a,0xae,0x86,0x61,0xa5,0xe7,0x5c,0x04,0x9e,0x89,0x63,0xc5,0x2b,0x56,0xc5,0x41,0x15, - 0xcb,0x4e,0x63,0x9f,0x29,0x63,0xc5,0x85,0x30,0x9e,0xa3,0xa5,0xcf,0xd9,0x5b,0x91,0x7e,0x88,0x0f,0xe4, - 0x01,0x83,0x96,0xc0,0x68,0x1e,0x42,0x86,0xf4,0x06,0x61,0xac,0x2e,0xca,0x39,0xf1,0xe8,0x5c,0x43,0x4b, - 0xd2,0x84,0x71,0xfa,0x09,0xa0,0x7b,0xdb,0x29,0x5a,0xee,0xe6,0x1b,0xe7,0x67,0x22,0x9a,0xb0,0xca,0x63, - 0xf1,0x80,0xc3,0x66,0xca,0x89,0x6c,0xc8,0x1f,0x24,0xd5,0x68,0x30,0xc8,0x69,0xbb,0xc2,0x40,0x31,0x3f, - 0xd1,0x64,0x74,0x98,0xe2,0x80,0x77,0x6e,0x94,0x9e,0x5b,0xc9,0x7b,0x0d,0x93,0x3a,0x72,0x9d,0xe7,0xcd, - 0xb5,0x5e,0x37,0xdd,0xa4,0xf6,0xbc,0x1b,0x48,0x16,0x3e,0x38,0x41,0xfc,0x8c,0x4b,0xb8,0xe4,0x35,0xf2, - 0x50,0x27,0xdf,0x65,0xdb,0xb5,0xba,0xa0,0x01,0xe0,0xaf,0xa8,0xc4,0x56,0x23,0xb8,0x9c,0xd8,0x94,0x98, - 0x13,0xa9,0x41,0xa4,0xaf,0x66,0xa1,0x0a,0x91,0xad,0x54,0x49,0x2d,0x7c,0xfc,0x04,0x3f,0xd5,0x98,0x66, - 0x8d,0xa6,0xf8,0x03,0x44,0x5e,0x89,0xf1,0xb2,0xfd,0x03,0x3c,0xad,0x56,0x71,0x06,0x0a,0x17,0x12,0xa8, - 0x1c,0x36,0x11,0xc0,0xfe,0xf4,0xe3,0xf6,0x95,0xc8,0x9b,0xa7,0x7b,0x7b,0x2b,0x03,0xd4,0xc4,0x99,0xc8, - 0xd7,0x70,0x48,0xeb,0xfb,0x36,0x2f,0x88,0x06,0xe7,0x6f,0xe6,0xf6,0x1b,0x6c,0xe1,0x79,0x2b,0xe2,0xcc, - 0xac,0x4f,0xfe,0x2d,0xb6,0x77,0x73,0xdf,0xe2,0x8e,0xda,0x9a,0x63,0x1c,0x81,0xa9,0x56,0x9a,0xdc,0x8c, - 0xca,0xf1,0x0f,0x70,0x86,0x92,0xe4,0x00,0x72,0xe6,0x59,0xc8,0x16,0xff,0x2b,0x1b,0x95,0x83,0x0b,0x20, - 0xba,0x9f,0x0e,0xea,0x77,0x6b,0x8b,0xab,0x4e,0x8b,0x2b,0x6e,0xb1,0x3b,0x09,0xba,0x65,0xe6,0xb8,0xed, - 0x7c,0xd7,0xd1,0x84,0x5d,0xca,0xe8,0x2b,0x9e,0xf6,0x60,0x55,0xc8,0xc4,0x64,0xf4,0x0f,0xc2,0xd6,0xb6, - 0x39,0xee,0x77,0xd9,0x36,0x64,0xf4,0xc5,0xc5,0x69,0xd9,0xdc,0x96,0xb2,0xbc,0xdb,0x66,0x9c,0xa1,0x98, - 0x1a,0x47,0x43,0x1d,0xb2,0x9b,0x15,0xde,0x95,0x7b,0x4b,0xae,0xa1,0x1a,0x3a,0x26,0xe0,0xa7,0x96,0x86, - 0x55,0x7a,0xf5,0x8a,0x09,0xa7,0x9c,0x09,0xa8,0x41,0x30,0x0c,0x06,0xbe,0xb1,0x47,0xee,0x57,0x03,0x39, - 0x80,0x44,0x44,0x1d,0x06,0x51,0x74,0x42,0x15,0xc0,0x29,0x7b,0x46,0x7c,0x51,0xe3,0xf1,0x45,0x0e,0x2c, - 0x03,0xca,0x47,0xad,0x4e,0x77,0xe5,0xf9,0x43,0x38,0xa3,0x02,0x1b,0xad,0x20,0x13,0x90,0xe1,0x1f,0x6d, - 0x0e,0x59,0xb2,0xbd,0x63,0x19,0x16,0x12,0x3d,0x43,0x97,0xd7,0x36,0x8f,0x15,0x6c,0x1e,0x2b,0xb9,0xc5, - 0x80,0xd1,0xbf,0x6b,0x9b,0xef,0x26,0x91,0x11,0xe1,0xb4,0x77,0x36,0x91,0x9e,0x7f,0x43,0x16,0x7a,0xd4, - 0xce,0xb6,0x35,0x36,0xcf,0x77,0xd8,0x30,0xb6,0x12,0x7f,0xa8,0x36,0xc1,0x99,0x17,0x17,0x59,0x95,0x73, - 0x10,0x6c,0x9a,0x9b,0x2c,0x14,0x24,0x68,0x91,0x5f,0x66,0xcc,0xff,0x25,0x41,0x33,0x02,0xcc,0x13,0x51, - 0x63,0x18,0xcd,0x24,0xf1,0x3f,0x61,0x71,0xf8,0x3c,0xa9,0x3a,0x49,0xcc,0x7b,0x69,0xe9,0x0f,0x62,0x1c, - 0xb4,0x0a,0x24,0xac,0x5c,0x9e,0x6b,0x1f,0x08,0xa6,0x0c,0xe7,0x51,0x9a,0xcc,0x41,0xcd,0x4f,0x84,0x71, - 0x49,0x09,0xe4,0x21,0x1b,0x05,0x8f,0x36,0x0a,0x5f,0x14,0xeb,0xf5,0x2b,0xd8,0x69,0x68,0x79,0x37,0x84, - 0x10,0xf2,0xa4,0x8b,0x19,0x91,0xba,0xce,0xf7,0x2a,0x9e,0x44,0xd8,0x75,0x25,0x1b,0xd8,0xe7,0x40,0xde, - 0x63,0x04,0x9c,0x43,0xb4,0x58,0x1b,0x06,0xfc,0xd5,0xbb,0xb0,0x22,0xe0,0x45,0x26,0x31,0xcc,0xf8,0x41, - 0xf0,0xcb,0x4e,0x21,0x64,0x7a,0xab,0xf0,0x83,0xaf,0xf7,0x2f,0xd8,0xef,0x27,0xcd,0x39,0x6a,0xf5,0xd6, - 0x87,0x2c,0x00,0x49,0x02,0xa2,0xaa,0xcb,0xab,0x19,0xed,0x88,0x9a,0x76,0x47,0x56,0x04,0x12,0x0a,0x2c, - 0x78,0xfa,0xf2,0xd1,0xd3,0x27,0xda,0x04,0x5a,0x78,0xf9,0x71,0xd0,0x54,0x34,0x96,0x18,0xba,0xfb,0x56, - 0xb4,0x72,0x76,0x65,0xb3,0x66,0x4e,0x4d,0xae,0xe3,0x02,0xb4,0x8b,0x70,0x2f,0x70,0x5b,0x68,0x4a,0xe5, - 0x50,0x6f,0x31,0xd6,0xcf,0xb1,0xd4,0xeb,0x19,0x4a,0x7d,0xae,0xdb,0x76,0x52,0x1a,0x5c,0xaa,0xd1,0x6a, - 0x45,0xb2,0x1a,0x6b,0x95,0x00,0x3a,0x9e,0x0d,0x6b,0xfa,0xc6,0x2e,0x66,0x31,0x54,0xe4,0x05,0x9c,0xd6, - 0x9e,0xc1,0x15,0xe2,0xe8,0xe9,0xcf,0x47,0x0f,0xdf,0x3e,0x7d,0xd8,0x1a,0x35,0xa5,0x2f,0xdd,0x19,0xaa, - 0x67,0x87,0xe3,0x5c,0xe6,0xd9,0xf2,0xc2,0x90,0x4c,0xbe,0x89,0x5f,0x43,0x84,0x76,0xb9,0x7c,0x4e,0xc4, - 0xc3,0x34,0x27,0x6c,0x03,0x83,0x99,0xf4,0x3c,0x15,0xa4,0xa8,0x4c,0x57,0x3a,0x17,0xaf,0x08,0xe5,0x00, - 0x03,0x90,0x51,0xd6,0x73,0x2f,0x8b,0xcd,0x56,0xa6,0xe1,0x64,0xf7,0x60,0xd3,0xb3,0x0c,0x1e,0x24,0x7c, - 0xdf,0xd9,0x8f,0x86,0x64,0xe3,0x78,0x3a,0xa9,0xde,0x2b,0xb2,0x29,0x33,0x48,0xbc,0x3d,0xe6,0x00,0xbb, - 0xad,0xd4,0x7c,0x01,0xcb,0x28,0x20,0x7a,0x05,0x23,0xd4,0x2d,0x94,0xea,0x42,0x91,0xd5,0xa6,0xf4,0xd2, - 0xf5,0xe6,0xa2,0x32,0x78,0x47,0x10,0x49,0x39,0x62,0x51,0x4a,0x97,0xac,0x8c,0x46,0x11,0x21,0xd1,0x3e, - 0x56,0x48,0x38,0xb6,0x88,0x0f,0x3f,0x76,0xb1,0x25,0xb0,0x7d,0x91,0x69,0x42,0x8c,0x61,0x8f,0x0d,0xe4, - 0x85,0x58,0xb2,0xd6,0xf1,0x1c,0x01,0xc3,0x2f,0x5f,0x28,0x4d,0xc6,0x39,0xfc,0x99,0xb4,0x98,0x22,0x9e, - 0x15,0xe1,0x81,0x1a,0xde,0x6c,0x90,0xfd,0x8d,0x9f,0x41,0xb0,0xf4,0x8a,0x35,0x46,0x44,0xe8,0x8f,0x34, - 0xd6,0x61,0x83,0x63,0x08,0x7e,0x4e,0x39,0x96,0x6b,0x8e,0x31,0x73,0x25,0x19,0x91,0xc3,0x2c,0x77,0x0c, - 0xeb,0xe4,0x19,0x50,0xc0,0xab,0x8c,0xe5,0x82,0x0a,0xfe,0x56,0x39,0xec,0x2a,0xb3,0x4b,0x2e,0xd8,0x73, - 0x31,0x80,0x18,0x73,0xa9,0x1a,0xa7,0xbd,0x2b,0x98,0xd4,0xfe,0xb2,0x7e,0x9b,0x6d,0x79,0xbe,0x85,0x6c, - 0x6e,0xe5,0xf9,0x61,0x64,0xda,0xda,0xfb,0x9c,0x70,0xbb,0xdc,0xbc,0x40,0xed,0x9f,0x27,0xf9,0xe0,0x70, - 0xe3,0x1d,0x8a,0x46,0xdc,0x4e,0xd4,0x0d,0xec,0xbd,0xf1,0x67,0x8a,0x3f,0x4b,0xfc,0x81,0x45,0xf8,0x25, - 0xfd,0x5f,0xd0,0xff,0x73,0xed,0x6b,0xd9,0x23,0x36,0x21,0xf0,0x11,0x7b,0xdb,0xcc,0x8f,0xa9,0x9e,0x43, - 0x6e,0xf5,0xc5,0xd7,0x62,0xb8,0xfd,0xf5,0x7d,0x1a,0x38,0x98,0x34,0x34,0xe3,0x76,0xe6,0x2c,0xfa,0xe2, - 0xcb,0x4e,0x81,0x59,0xab,0xc0,0x34,0xfa,0xfa,0x9f,0x9d,0x02,0xd3,0x56,0x81,0x65,0xf4,0xe5,0x7f,0x77, - 0x0a,0x2c,0x5b,0x05,0x0e,0xef,0x7f,0x09,0x1e,0x71,0xbd,0xa6,0x07,0xde,0xd2,0x7e,0x17,0x07,0x87,0x51, - 0x7f,0xc6,0x3e,0x32,0x2e,0xd6,0xeb,0xcb,0xf5,0x7a,0x11,0xdd,0xd4,0x57,0xb9,0x76,0x07,0x98,0xa4,0x54, - 0xeb,0x17,0x5f,0xc6,0x33,0x84,0x0d,0x64,0x8b,0xd8,0x91,0x24,0x7d,0x1d,0xaf,0x3a,0x49,0x5f,0xff,0x33, - 0x9e,0x76,0x92,0xbe,0x3c,0x88,0x17,0x83,0x41,0x2b,0xe5,0x30,0x5e,0xec,0xef,0xb7,0x3e,0x3b,0x8c,0x2f, - 0xdb,0x65,0xbe,0xfe,0x22,0xbe,0x6c,0x97,0x39,0xbc,0xff,0x45,0x7c,0xd1,0x2e,0x74,0x78,0xff,0xab,0xf8, - 0x62,0x7f,0x1f,0x74,0x99,0x4c,0x88,0xdb,0x79,0xd7,0x09,0x0d,0x47,0x9d,0x69,0x86,0x6b,0x74,0xcd,0x81, - 0x1f,0xc5,0xb3,0x25,0x3c,0x4b,0xec,0x15,0x0c,0xd7,0xb4,0x25,0xae,0xf7,0xf7,0x23,0x5c,0xe9,0x75,0xa4, - 0xa3,0xeb,0x9e,0xc9,0xad,0x7c,0xb0,0xe2,0x17,0x5f,0x10,0x6b,0x21,0x52,0x8e,0x43,0x86,0x25,0x66,0xd2, - 0xcd,0xc5,0xcd,0x0e,0xd0,0xe2,0x46,0x74,0x29,0x5e,0xf9,0xde,0x82,0x31,0x3c,0xe0,0xcf,0xc1,0xe3,0xe0, - 0x7e,0x0e,0x07,0x5f,0xa9,0x0f,0x5f,0x90,0xd0,0x4e,0x12,0x98,0x12,0x1a,0x69,0xef,0x9c,0x4e,0x58,0x7b, - 0x07,0x49,0x08,0x1d,0x55,0x32,0x7f,0x70,0x30,0xbe,0x7b,0x4a,0xaf,0x77,0x07,0x93,0xc1,0xdd,0x20,0x0a, - 0xef,0x42,0x30,0x1f,0x05,0xb1,0x49,0xb4,0x8d,0xcf,0x23,0x97,0xaf,0x02,0x9b,0x31,0x27,0x60,0xe8,0xa1, - 0xa9,0x7e,0xe6,0xad,0xd6,0xf6,0x53,0x0e,0x8e,0x3f,0xac,0x10,0x22,0x8d,0xed,0x9a,0xaa,0x13,0x84,0xe6, - 0xf5,0xa5,0x6a,0xff,0xee,0x0a,0x48,0x10,0xc0,0x7e,0xd9,0x36,0x22,0x71,0x91,0x7c,0x36,0xdb,0x26,0xe2, - 0x5e,0x81,0x4d,0x14,0x1f,0x7b,0x26,0x41,0xbf,0xd8,0x93,0x3d,0xcc,0xac,0xf6,0xdd,0xc4,0xf8,0x70,0x7b, - 0xff,0x86,0xaf,0xd1,0x68,0x94,0x0e,0x16,0xc7,0x97,0xa0,0xf1,0xed,0xa1,0x89,0xef,0x10,0xf4,0xa3,0x5f, - 0x59,0xd7,0x8c,0xf3,0xef,0x56,0x96,0x35,0xce,0xd4,0x8f,0x6b,0x78,0x99,0x2e,0x25,0x94,0x90,0x7e,0xc7, - 0x41,0x76,0x4b,0x85,0x9e,0x17,0x5d,0xe3,0x28,0x58,0xab,0xf5,0x1e,0x01,0xa7,0xb3,0xf6,0xda,0xb8,0x9a, - 0xba,0x80,0x41,0x95,0xf5,0x6f,0x6d,0x92,0x60,0x17,0xde,0x37,0x84,0xe0,0x61,0x1d,0xe9,0x17,0x61,0x4f, - 0x58,0xca,0xff,0x7f,0x3a,0x5f,0x3b,0xc2,0xfa,0x45,0x8c,0x6f,0x2c,0x95,0xda,0xe3,0x52,0x84,0x87,0xe1, - 0xe4,0x2d,0x47,0x3d,0x0c,0x45,0xf2,0xf3,0x8b,0x66,0x1c,0x52,0xbe,0x26,0x8c,0x17,0x59,0xb1,0x0a,0x94, - 0xad,0x80,0xf3,0xa3,0x98,0x98,0x82,0x7c,0x3a,0x9d,0xb3,0x90,0x36,0x09,0x16,0xe5,0xaa,0xce,0x56,0xcb, - 0x80,0x2f,0x59,0x10,0x35,0xf4,0xd8,0xb5,0x29,0x09,0x6c,0x84,0x2e,0x8f,0x7c,0xe0,0xcb,0x22,0xf8,0x09, - 0xac,0xf6,0x8e,0x51,0x2c,0x73,0x05,0x32,0x9b,0xa5,0xcd,0xef,0x4c,0x64,0xc0,0xcd,0x08,0x77,0xa5,0x2e, - 0x21,0x15,0xab,0x3d,0x0e,0x45,0xdf,0xa1,0x8e,0x7d,0x44,0x5c,0xc0,0x96,0xfe,0x2e,0x1f,0x4f,0xec,0x35, - 0xde,0xb5,0xf5,0xb5,0xab,0xe5,0x2e,0x9d,0x64,0x42,0xf9,0xc7,0x74,0x4e,0x9c,0xc4,0xc7,0x13,0x55,0x9f, - 0xc4,0x75,0x2f,0x08,0x14,0x16,0x04,0x84,0x1e,0xaa,0xf0,0x1e,0xb0,0x4b,0xd4,0x7a,0x2d,0x2f,0x97,0xfb, - 0x1c,0x5e,0x05,0x49,0x2c,0x6d,0xe2,0x28,0xb8,0x26,0x90,0x25,0x8e,0x35,0x51,0x4e,0x88,0x2b,0x8b,0x25, - 0x5b,0x1a,0x1b,0x4a,0x4d,0x3e,0xc8,0xcd,0x07,0x9d,0x60,0xb3,0xb9,0x7f,0x46,0x56,0xed,0xde,0xb8,0xaf, - 0x59,0xfe,0xe2,0x81,0xa8,0x1f,0xcc,0xc6,0x83,0x55,0x6d,0x7a,0x9f,0x77,0x4d,0xef,0x41,0x9b,0xc2,0xb3, - 0x81,0x6f,0x35,0x41,0xa8,0xce,0x9b,0xdc,0x84,0xbf,0x2a,0x11,0xfe,0x4a,0xfc,0x24,0x8c,0x9a,0xdd,0x3a, - 0x23,0xb6,0x9a,0xf4,0x4d,0xf1,0xf3,0xce,0xac,0x89,0xa9,0x7d,0x9e,0x04,0x77,0xee,0x5c,0x06,0x23,0xb9, - 0x34,0x89,0xef,0xa0,0x0e,0x42,0x2d,0x05,0xa4,0x8c,0x1d,0x6a,0x79,0xe7,0xae,0x8c,0xfc,0xee,0x18,0x29, - 0x06,0xa1,0xe2,0x39,0x0a,0x18,0xde,0xd8,0x63,0x41,0x3e,0x3d,0x25,0xfe,0x72,0x90,0x03,0x1f,0x46,0xda, - 0x1c,0xa7,0x6c,0x42,0x58,0x78,0x8e,0xb4,0x71,0x8f,0x01,0x1f,0xc2,0xa6,0xe0,0xec,0x22,0xe2,0xab,0x3f, - 0x2d,0x71,0xe3,0x1f,0x75,0x31,0xbe,0x4b,0xf8,0xb3,0x21,0xa4,0x79,0x57,0x19,0xd3,0x1b,0x17,0x9d,0x64, - 0x27,0x44,0x83,0x3b,0x37,0xc1,0xa0,0x1c,0x04,0x9b,0xc0,0x5b,0x80,0xb2,0xf1,0xc5,0x8c,0x3e,0x72,0xa3, - 0x29,0xfc,0xae,0x72,0x11,0x08,0xbd,0xfb,0xa4,0x8e,0x83,0xe8,0xc1,0x01,0x64,0x8b,0xb8,0x20,0xeb,0xb9, - 0x49,0x3d,0xa1,0xd4,0xef,0x2a,0x1b,0x27,0x37,0xfc,0x81,0x3f,0xf6,0x4b,0x80,0x77,0xfe,0x66,0xff,0x70, - 0x7c,0x43,0xbd,0x8e,0xdd,0x39,0xf3,0x03,0xd1,0x67,0xc4,0x72,0xf3,0x00,0x4c,0xea,0x0f,0x15,0x21,0x7a, - 0x0c,0x66,0x13,0x4b,0x69,0x2e,0xc1,0xa1,0x96,0x98,0xc0,0xf9,0x03,0x04,0x2a,0xb5,0xf0,0x7d,0x95,0x7c, - 0x0b,0xd3,0xe8,0xdd,0x1a,0x67,0x59,0x34,0x69,0xc2,0xdf,0xab,0x24,0x85,0x5a,0x7a,0x3c,0xc7,0x73,0x14, - 0x7f,0x0d,0x06,0xf6,0xf7,0xca,0x17,0x46,0x19,0xc9,0xb2,0xb8,0x39,0x52,0x15,0x3f,0x54,0xa6,0x02,0x0e, - 0xed,0x8a,0xef,0x15,0x5f,0x90,0x16,0xcd,0x39,0xd2,0xb1,0x21,0x53,0xb8,0x2e,0xc2,0x1a,0x08,0x3f,0xf8, - 0xf5,0x17,0xfa,0x79,0x7f,0x9f,0x8d,0xe6,0x68,0x0e,0xbf,0xe5,0x9a,0x04,0xb4,0x36,0x68,0xdc,0x44,0x1d, - 0x6f,0x8f,0xf7,0x7b,0x3d,0x5e,0x93,0xf2,0x3d,0x8d,0x55,0x7d,0x5b,0x41,0x91,0xe8,0x04,0x06,0xda,0x47, - 0x93,0x1d,0x1c,0xc6,0x72,0xa9,0x4c,0x13,0x07,0x77,0x88,0x0a,0x0d,0x71,0x8d,0x21,0xd5,0xa8,0xaf,0xcd, - 0x42,0x01,0x79,0x64,0x88,0xf0,0x3c,0x49,0x1b,0x67,0x04,0xfc,0x47,0xe5,0x13,0x4e,0x83,0xc1,0x0f,0xbe, - 0xfd,0x7a,0xed,0x15,0xfc,0xa1,0xfa,0x26,0xf9,0xce,0x83,0xfb,0x89,0x1f,0xb7,0x9b,0xc9,0xc0,0x6c,0xbd, - 0x66,0x7a,0xd1,0x13,0x55,0xf3,0x24,0xf9,0x1e,0x83,0x32,0x9b,0xec,0x05,0xcb,0x6b,0x01,0xe7,0x8a,0x51, - 0x34,0xf2,0xbc,0xeb,0x9a,0x2d,0x19,0x88,0xa1,0x71,0x47,0x4d,0x42,0xbc,0x7e,0x13,0x0d,0x4f,0x71,0x7f, - 0xe3,0x51,0x5a,0xc3,0x8c,0x67,0xee,0xde,0x7c,0x49,0xd9,0x14,0x46,0x9a,0x3a,0xf4,0xc8,0xfc,0x96,0x00, - 0x11,0xba,0xef,0x53,0x76,0x95,0xa4,0x93,0x9a,0x2f,0x47,0x2c,0x93,0x06,0x18,0x1d,0x02,0x09,0x22,0x5a, - 0x7e,0xae,0x94,0xf3,0x18,0xdc,0x81,0x37,0xa8,0x0e,0xfc,0x5d,0xf6,0xd7,0x49,0xb0,0x44,0xfc,0x86,0xca, - 0x44,0xc7,0x1b,0xa9,0x9f,0xab,0x6d,0x46,0x10,0xc3,0xfb,0xa9,0x18,0xdf,0xe8,0x83,0x0f,0x06,0x38,0x72, - 0x78,0x21,0x20,0x5c,0xcb,0x71,0xaf,0x71,0xea,0xa7,0x90,0x0e,0xd0,0x9f,0xab,0xa8,0x97,0xf1,0x44,0x14, - 0x2a,0x6f,0x4a,0xda,0x26,0xfc,0xd3,0x26,0x34,0x91,0xa4,0x76,0xad,0x3c,0xa6,0x04,0x17,0xbf,0x6b,0xa5, - 0x31,0x08,0xbc,0x6f,0x59,0x4c,0x9d,0xc2,0x58,0xac,0x4c,0x0a,0xff,0x7d,0xf4,0x73,0xa5,0x79,0xd0,0x0e, - 0x36,0xa0,0x8e,0x1e,0x7f,0x84,0x4a,0xc7,0x58,0x4b,0x15,0xe3,0x40,0x5f,0x39,0x1d,0x1b,0x73,0x43,0x8e, - 0xcb,0xec,0x2c,0xf8,0xf9,0x03,0x8e,0xb0,0xcc,0xde,0xe1,0xee,0xba,0x6f,0x4a,0xde,0x20,0xfb,0x71,0x2e, - 0x71,0x0b,0x86,0x52,0x51,0xeb,0xd3,0xc7,0xf8,0x54,0x67,0x74,0x3e,0xc7,0x67,0x1b,0x30,0x2f,0xbf,0xb3, - 0xb6,0x7d,0xd5,0xa8,0x19,0x42,0xbc,0x5a,0x51,0xf0,0xcf,0xd6,0x91,0xdf,0x73,0x13,0xec,0x9b,0x23,0xe3, - 0x26,0xd3,0x9a,0x29,0x9b,0xe8,0x4b,0xce,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0x78,0xe5,0xa7,0xde,0x26, - 0xbf,0xb2,0x9e,0x39,0x2d,0x11,0x56,0x2e,0xe2,0x53,0x48,0x9a,0x72,0x1d,0x65,0x2e,0x3f,0x49,0x82,0xc0, - 0xcb,0x9d,0xeb,0x9b,0xfd,0x50,0x42,0xf1,0xfd,0xcc,0xe6,0xbe,0x64,0xed,0x54,0x94,0x17,0x04,0x28,0xdf, - 0x1d,0xbd,0x7c,0xc1,0x09,0x5c,0xba,0xea,0x0f,0x5a,0xeb,0xd9,0x2d,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc, - 0xbc,0x58,0x65,0x23,0x20,0xb9,0x54,0x8a,0xbe,0x82,0x6b,0x95,0x95,0x20,0xa7,0x1a,0x30,0x1f,0x23,0x2b, - 0xf4,0x8b,0xc0,0x66,0x88,0xaf,0x12,0x16,0x21,0x9a,0x34,0x9f,0x0e,0x4f,0xf9,0x35,0x29,0xb5,0x59,0x22, - 0x24,0x60,0x08,0x48,0x6f,0x6f,0xa9,0x1a,0x4d,0x93,0x95,0xda,0x25,0x6e,0x32,0x8d,0x44,0x98,0x50,0x53, - 0x3a,0x0c,0xab,0x5f,0xbf,0x39,0x7a,0xfe,0xfa,0x15,0xea,0x99,0x19,0xe9,0xce,0x7a,0xdd,0xa3,0x4d,0xc0, - 0xf6,0x67,0xb7,0x70,0x77,0x19,0x95,0xb8,0x37,0x6b,0xbd,0x1a,0xdf,0x2c,0x60,0x63,0x03,0x79,0xe7,0x7d, - 0x66,0xa5,0x80,0xcd,0x26,0x9c,0xa9,0x69,0xd4,0xaa,0xde,0xd3,0xaf,0x89,0x86,0x40,0xb4,0xd1,0x2f,0x0d, - 0x9d,0x26,0x06,0x68,0x79,0xa4,0xad,0x53,0xe6,0xe9,0x1f,0xd7,0x2e,0x7e,0xb6,0x18,0xac,0xf0,0xb1,0x6e, - 0x28,0xa0,0x89,0x38,0x98,0x4d,0x74,0xa0,0xb6,0x9c,0xc9,0x00,0x67,0x36,0x2f,0x44,0x01,0xfb,0x05,0xcb, - 0xa3,0xe9,0x28,0x68,0xc4,0x42,0xfa,0xc7,0x20,0x21,0xbd,0x49,0x56,0x3a,0xa8,0x11,0x83,0x48,0x29,0xc6, - 0x7a,0x54,0xc6,0xf3,0xc6,0x6c,0xdc,0x21,0x77,0xd9,0xb0,0x76,0xf9,0x7a,0xee,0x59,0x1a,0x69,0x51,0xca, - 0x3b,0xa4,0x8e,0x2f,0xc3,0xd6,0x3b,0x47,0x3c,0xf0,0x7c,0x10,0x9b,0xcf,0xe9,0x86,0x17,0xb7,0x28,0x5a, - 0xdf,0xe5,0x9d,0x78,0x23,0x8b,0xa6,0x2d,0xe2,0x62,0x79,0x50,0xd9,0x11,0x6d,0xe5,0x7e,0x3f,0x22,0x51, - 0x71,0xd5,0xf6,0xb9,0xdc,0xca,0x2d,0x75,0x6e,0xe4,0x45,0xe9,0xd1,0xfb,0x74,0x9e,0xb4,0x8a,0xab,0x15, - 0x2c,0x4c,0xcb,0x6a,0xc1,0x57,0xb8,0x4f,0x39,0x6d,0xbd,0xd6,0xdf,0xf3,0x16,0x9e,0x25,0xf3,0xf5,0x7a, - 0xa5,0xa6,0x98,0x2f,0xbd,0x51,0xa5,0x72,0xde,0xca,0x3a,0xa5,0x53,0x43,0x02,0xfb,0x75,0xbd,0xc3,0xc5, - 0xdb,0x69,0x1a,0xc5,0xd3,0x91,0x58,0xaa,0xb6,0xa1,0xd5,0x57,0x9c,0x33,0xe1,0x98,0x8d,0x7a,0xe4,0x67, - 0x7f,0x4b,0xae,0x76,0x61,0x15,0x9c,0x70,0x0a,0x09,0xd9,0xc5,0x4b,0x92,0xb3,0x6e,0xb2,0x73,0x37,0xce, - 0x60,0x7f,0x3e,0x34,0x31,0xd3,0xca,0x56,0x6d,0x65,0xf7,0x33,0xa7,0x9d,0xaf,0xa4,0x0e,0x0e,0x67,0x39, - 0x23,0x24,0xb5,0x84,0x21,0xe2,0xde,0xde,0x53,0x98,0x0f,0xd6,0xca,0x60,0x29,0xce,0x5e,0x46,0x61,0x9a, - 0x70,0x3e,0x01,0xef,0x8c,0x7e,0x6d,0x31,0x1d,0xa1,0x04,0x18,0x20,0xf5,0x79,0x80,0xf3,0xc6,0xf7,0x25, - 0xe3,0xe8,0x9e,0x5a,0x40,0x21,0x71,0x33,0x58,0xd6,0xc6,0x76,0x7f,0xce,0xf2,0x07,0x4a,0x7f,0x90,0x92, - 0x8d,0x36,0x51,0xb9,0xf7,0x6b,0x3d,0xb8,0x17,0xd9,0x7b,0x93,0x7a,0xfc,0xb8,0xbd,0x7a,0x38,0x20,0x16, - 0x82,0x81,0xc5,0xdb,0x89,0x7e,0x60,0x5c,0x28,0x50,0xa8,0xfd,0xf3,0x1e,0xc9,0x5f,0xa4,0x4d,0x26,0x77, - 0x70,0xdb,0xa2,0xd7,0x29,0x56,0xb8,0x04,0xac,0xfb,0xce,0xfa,0x45,0x86,0x61,0x41,0x6c,0x95,0x19,0xa0, - 0x37,0x0b,0xd7,0xff,0xbf,0xcf,0x82,0x20,0xf3,0xed,0x89,0xb0,0xe9,0xca,0x4f,0x95,0x43,0x00,0x54,0x7f, - 0x57,0x42,0x6f,0xa6,0x44,0xa6,0xce,0x89,0x92,0xff,0xd2,0xf4,0xc1,0x90,0xc4,0x4c,0x9b,0x37,0x95,0x15, - 0xcc,0xba,0x46,0xf0,0x69,0xb6,0x17,0x3c,0x55,0x0a,0xc3,0x05,0x88,0x1b,0x34,0x09,0x9d,0x43,0xef,0x1c, - 0xf3,0xd5,0x15,0xb7,0x75,0xd3,0xbf,0x62,0xa0,0xd1,0xa4,0x8d,0xbe,0x52,0x69,0xeb,0xa2,0x14,0x83,0x44, - 0xed,0x15,0xbc,0xcc,0xf3,0xd2,0xb4,0x40,0x28,0x8c,0xcb,0x23,0x9e,0xe7,0x61,0xa6,0x0d,0xb0,0x82,0x4b, - 0x48,0x10,0xf8,0x46,0x09,0xc4,0xbc,0xbe,0xd5,0x38,0xe4,0x39,0xe3,0xc6,0x2d,0xf2,0xe4,0x94,0xfb,0xf2, - 0x21,0xf7,0x7d,0x5f,0x3e,0xa0,0xa8,0x2f,0x79,0xb9,0x6a,0xda,0x46,0x21,0xdb,0x22,0x6d,0x16,0x3b,0x6c, - 0x27,0x73,0x34,0x9f,0xc2,0x33,0xe2,0x02,0x84,0xc2,0x23,0x04,0x02,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xaf, - 0x50,0xdd,0x54,0x5f,0x6d,0x7b,0x7b,0xab,0xde,0x56,0x10,0x34,0x5b,0xc3,0xb1,0xe7,0x2a,0xda,0x61,0x9d, - 0x1f,0x4b,0x01,0x85,0x63,0x40,0x5b,0x52,0x54,0xc6,0x97,0x87,0xe9,0x2c,0xc8,0xc9,0x38,0xf2,0x34,0x9f, - 0x0b,0x56,0x8c,0x60,0x02,0xa6,0xd4,0x09,0xec,0x29,0x9e,0xe5,0xe3,0xb7,0x79,0xfc,0x53,0x4e,0x18,0xbf, - 0xe3,0x3e,0xd6,0xaf,0xb7,0xa9,0xd5,0x0a,0x96,0xe7,0xec,0x2a,0xd6,0x56,0x01,0x49,0x10,0x0b,0x61,0xe6, - 0x06,0x83,0xc9,0x37,0x50,0x1c,0xc2,0x53,0x6c,0xd4,0xef,0x8f,0x34,0x79,0xa0,0xf3,0x15,0xae,0x46,0x56, - 0x3d,0x3a,0x20,0x34,0xe5,0xb9,0xaa,0x36,0x2d,0x1d,0x77,0xa2,0x6f,0xb2,0xa5,0x26,0x1f,0xeb,0xb0,0x1b, - 0x7c,0x96,0x48,0xa4,0x88,0xea,0xf8,0x25,0xf1,0xff,0x4f,0xe0,0x23,0x15,0x9c,0x58,0xeb,0xbb,0x1d,0x96, - 0x9d,0xea,0xbc,0x55,0x25,0xd7,0x4b,0xb7,0xb3,0xd3,0xe4,0x53,0xc3,0xe1,0x5f,0xc1,0xd2,0x1c,0x3f,0xba, - 0xa5,0x92,0x89,0xc9,0xeb,0xaf,0x64,0x8e,0x4a,0xc0,0xd3,0xd0,0x1c,0x1d,0xd0,0x89,0xe8,0xee,0xdc,0x91, - 0x09,0x4f,0xd9,0x6e,0xbc,0xa0,0x47,0x2a,0x90,0x52,0x01,0x63,0xa0,0x4e,0x14,0x03,0xac,0xdf,0xf3,0xf1, - 0x5c,0x97,0x78,0x85,0x12,0x73,0x2a,0x31,0xb1,0x25,0x66,0x09,0xa5,0x87,0x2b,0x17,0x69,0x3d,0x05,0xed, - 0xfb,0xcd,0x01,0xd5,0x3a,0x1f,0x3f,0xcb,0xe3,0x57,0x39,0xb3,0xf7,0xd1,0xb8,0x90,0xc6,0x4c,0xdd,0xb1, - 0xa9,0x22,0x3e,0x50,0x3a,0xe0,0xb2,0xd2,0xd0,0x12,0xaf,0x94,0x85,0x95,0x78,0x86,0x6b,0x90,0x8f,0xcc, - 0x6d,0x7d,0xb1,0xd4,0xb2,0xb7,0xf7,0x5e,0x0b,0xc9,0x65,0xf6,0x4c,0xfc,0x8e,0xe0,0xc4,0x47,0x03,0x9f, - 0x1a,0x77,0x48,0x8f,0x8c,0xc0,0xe3,0x81,0x8d,0x91,0x18,0x65,0x89,0x0d,0x9b,0xed,0x88,0x28,0x33,0x8e, - 0xd6,0x7d,0x5e,0x6d,0x11,0xb2,0xef,0x13,0xfe,0x10,0x46,0x90,0x83,0x87,0x8d,0x84,0x97,0xda,0xf8,0x3b, - 0xed,0xa1,0x4f,0x62,0x1d,0x66,0x5f,0xfc,0x43,0x5f,0x11,0xeb,0x24,0x06,0xfb,0x87,0x7e,0xf9,0x77,0x1e, - 0x2d,0x05,0x12,0x8a,0xe8,0x1d,0xf8,0x69,0xe1,0x6a,0x9e,0x94,0x88,0xf3,0x33,0x76,0x87,0xb0,0x6f,0xfa, - 0xaa,0xcc,0xb9,0x44,0xcb,0x73,0xe9,0xa1,0x09,0x55,0x90,0x9c,0x35,0x86,0x1b,0x72,0x1b,0x3a,0xb2,0xce, - 0x57,0x6c,0x3e,0x49,0x9f,0x11,0x84,0x67,0x15,0x57,0x7e,0xc8,0xb1,0xc0,0x40,0x90,0xe0,0x92,0x39,0x47, - 0xdb,0x20,0x8e,0x18,0x21,0x46,0x05,0xaf,0x57,0xde,0xd8,0x04,0x24,0x43,0xf9,0x8c,0x35,0x75,0x33,0xf3, - 0x7a,0x54,0x4a,0xc2,0xd4,0x24,0x3c,0x64,0x9a,0x5d,0x12,0x97,0x94,0x48,0x53,0x9a,0xa5,0xfa,0xab,0x0b, - 0xfb,0x6e,0x3e,0xbb,0xb4,0x29,0xfe,0x77,0x0b,0x4a,0x3d,0xcb,0x60,0x22,0xfe,0x14,0x55,0xc2,0x7b,0x4f, - 0x2a,0x57,0xd7,0x28,0x8f,0xab,0xd7,0x25,0xe3,0xcc,0xf6,0xca,0x4c,0x8c,0xba,0xb2,0xdf,0x3e,0xe4,0x7a, - 0xd5,0x91,0x6d,0x42,0x7d,0x34,0x5f,0xeb,0xac,0xc7,0xae,0x7f,0xf6,0xfb,0x4f,0x94,0x36,0xd5,0x7b,0x4a, - 0x3d,0x4c,0xce,0x2a,0xf5,0x8e,0xfe,0x68,0x3b,0xfd,0xd1,0xbb,0xbd,0xbd,0x77,0x96,0xe4,0x7a,0x98,0x84, - 0xef,0x12,0xf3,0x1a,0x19,0x8e,0x95,0x57,0xe2,0x4e,0xb2,0xfb,0xd0,0x0b,0x9d,0x44,0x1c,0x29,0x1b,0xf1, - 0x97,0x25,0xe8,0x40,0x8e,0x09,0x4c,0x4b,0x72,0x67,0xbd,0x3e,0xc2,0xe1,0x49,0x6b,0x70,0x24,0x20,0xf0, - 0x3a,0xb9,0xb3,0xb7,0xb7,0x1c,0x2f,0x69,0x37,0x3c,0xc5,0xe3,0xe5,0xf8,0x32,0x9e,0xaa,0x37,0x78,0xbc, - 0x18,0x5f,0xd0,0xbe,0x78,0x92,0xdc,0x19,0x5f,0xad,0xd7,0x8b,0x78,0xa1,0x7e,0x43,0x6a,0x8f,0xd3,0xcb, - 0xd1,0xf8,0x28,0x3e,0x57,0xcf,0xa9,0xe0,0xc7,0xf5,0xfa,0x3a,0xbe,0x56,0x2f,0xe8,0xf1,0xf1,0x7a,0x7d, - 0x16,0x9f,0xa9,0x67,0xc4,0xb7,0xe4,0xe1,0xa7,0x68,0xfc,0x49,0xa6,0x2d,0xfe,0x14,0xa9,0x57,0x09,0x1f, - 0x84,0x35,0xeb,0xe3,0xd5,0xcb,0xe4,0x69,0x13,0xfe,0x16,0xa9,0xb7,0x89,0x83,0x13,0xdf,0xc9,0x36,0xba, - 0x79,0x45,0x20,0x49,0x07,0x4a,0xa9,0xde,0x44,0x8a,0x7f,0x9f,0xd2,0x51,0xf9,0xd6,0x81,0xe6,0x38,0xa4, - 0x12,0x9c,0xf1,0x3a,0x52,0x2f,0xf6,0xf6,0x5e,0xb0,0x21,0xc5,0xf3,0xbd,0xbd,0xe7,0x70,0x4b,0xf0,0x6a, - 0xd5,0xc1,0xd6,0x35,0xbc,0xd6,0x17,0x25,0x0d,0xec,0x07,0xda,0x0e,0xce,0xf2,0xc9,0x35,0x2a,0x72,0x21, - 0x43,0xed,0x82,0x4f,0x55,0x3a,0x1c,0xf2,0x29,0x82,0x15,0x31,0xab,0xe9,0x9e,0x8f,0x59,0x92,0x76,0x32, - 0xe2,0x70,0x46,0x62,0x6f,0x58,0x88,0xbd,0x61,0x83,0x1d,0x66,0xf7,0x4d,0xf7,0x3d,0x8c,0xd4,0x6f,0x7b, - 0x7b,0xbf,0x51,0xd7,0xdf,0x42,0x16,0xf4,0x64,0x6f,0xef,0x09,0xfa,0x8c,0x11,0x5f,0xe9,0x01,0x5d,0xc9, - 0x88,0xd5,0x69,0xeb,0x20,0xb9,0xf2,0xe7,0xe3,0x75,0x6b,0x3a,0xd6,0xeb,0x97,0x74,0x8e,0xbf,0x6e,0xc2, - 0x67,0xd1,0xd8,0x3b,0x85,0xde,0xaa,0x67,0x51,0xfc,0x11,0xc5,0xe7,0xd4,0x18,0x90,0x88,0xf2,0x26,0x42, - 0x0c,0x6c,0x2b,0xbf,0x3f,0xd4,0x0d,0xae,0xea,0x6d,0xd8,0xb2,0x78,0xbe,0xa3,0x11,0x88,0x13,0x02,0x53, - 0x77,0x1e,0xfb,0xcd,0x87,0xad,0x09,0x0e,0x89,0xf3,0x74,0x93,0x68,0x67,0x0c,0xaa,0xec,0xbe,0x74,0x71, - 0x30,0x95,0xe9,0x4c,0x8a,0x48,0x5d,0x10,0x20,0x22,0x38,0xea,0x95,0x4c,0x49,0x0a,0x67,0x09,0xfe,0x5d, - 0xf6,0x4c,0x49,0x4a,0x3c,0x14,0xa6,0x84,0x4b,0xb5,0xfa,0x74,0x24,0x53,0xf2,0xb1,0x35,0x25,0x8f,0xd5, - 0x47,0x9e,0x92,0x54,0xad,0xd4,0x63,0x99,0x92,0x4b,0x50,0x66,0x29,0xbd,0xa9,0x2b,0xfe,0xe8,0x31,0xe8, - 0x6c,0x6d,0x33,0xae,0x71,0x65,0xea,0xa3,0x33,0xef,0xad,0x8d,0x2b,0x5d,0xba,0xc1,0x95,0xf5,0xed,0xb8, - 0x52,0x22,0xbf,0xca,0xfd,0x31,0x16,0x35,0x1a,0x06,0x4a,0xd4,0xac,0xbb,0xdc,0xb0,0x41,0xd2,0xc6,0xdf, - 0xa4,0x66,0x9c,0xb9,0x4a,0x24,0xc2,0x0b,0x21,0x49,0xc8,0x5b,0x52,0x83,0xd5,0xa6,0xe6,0xd5,0x20,0xbf, - 0xa5,0x49,0xf0,0x71,0xdf,0x05,0x25,0x0a,0xfe,0x7a,0x81,0x2c,0xc2,0x90,0xba,0x10,0x61,0xc5,0x5a,0xb0, - 0x97,0x64,0x9c,0xdb,0xda,0x2d,0xee,0xba,0xa6,0x24,0x76,0xca,0x96,0x12,0x67,0x78,0x35,0xa8,0xec,0x4a, - 0xb6,0xf9,0x5c,0xb6,0xf9,0x11,0xb6,0xf9,0x65,0x44,0x18,0x11,0x08,0xe1,0x2c,0x1a,0x9f,0x49,0x5d,0xf1, - 0x59,0xc4,0x58,0xd1,0x0c,0xad,0xbd,0xf5,0x7d,0x10,0x81,0x08,0xa9,0x07,0x60,0x78,0x0d,0x7a,0xd2,0x2d, - 0x0c,0x71,0xe8,0xae,0x2b,0xc1,0x21,0x0e,0x40,0x96,0x51,0x0b,0x42,0xc6,0xe1,0x15,0xe3,0x10,0x86,0x1c, - 0xaa,0xf3,0x9c,0xed,0x40,0x42,0x6c,0x88,0xc5,0xde,0xde,0x02,0x6f,0xca,0xeb,0xa4,0xc6,0x24,0xd7,0xe3, - 0x6b,0xda,0xae,0x71,0x19,0xfa,0x04,0xc1,0x6b,0xef,0x44,0xde,0x8e,0x29,0x45,0xb3,0x21,0x77,0x1e,0xfa, - 0xea,0xe4,0xa7,0x88,0x33,0xcb,0xac,0x84,0x0b,0x5a,0xac,0xc3,0x62,0xc3,0x4a,0x18,0xe1,0x8d,0xbd,0xb0, - 0x4f,0x63,0x2a,0xbe,0x15,0xbe,0xa6,0x3a,0x3e,0x38,0x89,0x11,0xbc,0xc6,0xde,0xb2,0x07,0xbf,0x16,0x4d, - 0x3f,0x7d,0xe3,0xa9,0xf0,0xde,0x68,0x7a,0x65,0x17,0x7a,0xf9,0xc6,0xc7,0x00,0xef,0xf8,0x32,0x62,0xe7, - 0x03,0x62,0x49,0xef,0xdf,0xcc,0x93,0x72,0x96,0x70,0xfd,0xf4,0xad,0x2d,0xb9,0x51,0x07,0x5e,0x55,0xbf, - 0x75,0xa8,0xf8,0xc6,0x93,0x8c,0x2d,0x56,0xf3,0x26,0x5f,0xce,0x33,0xa1,0xd7,0xd7,0xeb,0xee,0xc8,0xbc, - 0x78,0x67,0x6c,0x04,0x08,0x3f,0x2c,0xeb,0x43,0xd3,0x75,0xc3,0x82,0x29,0x98,0xcb,0xc5,0xb5,0x19,0x79, - 0x54,0x26,0x67,0xc4,0xfe,0xbd,0x80,0x91,0x0f,0xf8,0x5d,0x85,0xeb,0x97,0xe6,0x7c,0x19,0x3a,0x84,0xf4, - 0x0c,0x3e,0x26,0x21,0xf1,0xc2,0x78,0x5d,0x87,0xfc,0x89,0x17,0xf5,0x17,0x5c,0x17,0xe8,0x2a,0x5d,0x98, - 0x35,0x53,0x72,0x8e,0x75,0x53,0x93,0x1a,0x76,0xba,0xcc,0x4d,0xb5,0xd3,0xf7,0x5b,0x97,0x3e,0x3e,0x6f, - 0xda,0x57,0xac,0x74,0x6f,0xbe,0xb3,0x59,0xbb,0xd7,0xa1,0xd8,0xcb,0x7a,0x2e,0x21,0x3e,0x94,0x89,0xa8, - 0x94,0xa3,0xb3,0xe1,0x82,0x01,0xd1,0xf3,0x69,0xf1,0xa3,0xe7,0xd5,0xd1,0x88,0x77,0xb3,0xf0,0x2c,0x4e, - 0x66,0x0a,0x1b,0x33,0xe7,0xce,0x71,0x4b,0x21,0x1e,0xe4,0xf6,0x97,0x87,0xea,0x65,0x63,0x33,0x94,0x16, - 0xe4,0xfb,0xf4,0xe6,0xcb,0x16,0xd3,0xd9,0x75,0x60,0xb8,0x64,0xf7,0x05,0x48,0x9d,0x45,0x0f,0x1e,0x08, - 0x9f,0x99,0x37,0x92,0xd3,0x28,0xc2,0xa4,0x1c,0xf1,0x68,0x38,0xcd,0x6b,0x36,0x3d,0x96,0x0c,0x5f,0x7d, - 0xf1,0xd6,0x9b,0x89,0xdd,0x5b,0xfc,0x18,0x44,0x52,0x95,0x75,0x91,0xef,0x38,0x8b,0xdf,0xb2,0x6b,0xcc, - 0x6d,0x32,0x33,0xcf,0xa3,0xc2,0x93,0x8a,0x32,0x19,0xb0,0x65,0xf7,0x6a,0x56,0x11,0x67,0x7c,0xcb,0xe2, - 0xd5,0xf8,0xa1,0x8f,0xa9,0x8e,0x5f,0xe0,0xd8,0x65,0xbd,0x0b,0x7d,0x21,0xe7,0x4f,0x5e,0x03,0x7c,0xeb, - 0xa4,0x8b,0x71,0xda,0x0e,0x7f,0x54,0xb8,0x6b,0x26,0x22,0x84,0x3e,0xe2,0xf8,0xc0,0xfa,0xf6,0x12,0xda, - 0xfc,0x82,0x0a,0x0d,0x3f,0xd9,0x71,0xcc,0xcb,0xe9,0x8b,0x33,0x5c,0xe8,0x71,0xc2,0xae,0x79,0x3d,0x91, - 0x68,0x3f,0x38,0x49,0xd2,0xbd,0x5f,0xa7,0xfb,0x1f,0xb3,0x6c,0xb9,0x9f,0xce,0xe9,0xb0,0xb8,0xa3,0xef, - 0x0a,0x64,0xfa,0xc6,0x79,0x54,0x87,0x81,0x2b,0x12,0xa8,0x1b,0xee,0x5a,0xdc,0x6c,0xcd,0x8e,0xeb,0xb3, - 0x0f,0xc4,0xef,0x35,0xb0,0x31,0x49,0xc4,0xca,0x81,0x33,0xbe,0x7c,0xd2,0xbd,0xb2,0x29,0x25,0xbf,0xeb, - 0xd3,0xd4,0xe6,0xdb,0xd3,0xd5,0xb3,0x08,0xd7,0xd5,0x89,0xb8,0x35,0xbb,0x7a,0x53,0x22,0x98,0x10,0x4a, - 0x13,0x70,0x3e,0x22,0xc2,0x98,0xa3,0x7a,0xcc,0x73,0xfa,0xf4,0x2d,0xae,0x5e,0xf7,0xe3,0xcc,0xfb,0xcb, - 0x2b,0x15,0x10,0x88,0x2b,0xeb,0x3b,0x23,0xb5,0xe9,0xeb,0x28,0x66,0xcd,0x7e,0xc1,0x3f,0x7c,0xef,0x59, - 0x53,0x2e,0xe9,0x95,0xfe,0x02,0x83,0x55,0xeb,0x75,0x6e,0xbb,0x80,0x21,0x4c,0x8d,0x92,0xb1,0xd4,0x5d, - 0x61,0xc1,0xf0,0xa8,0x74,0x77,0xc3,0x13,0x91,0xf9,0x53,0x76,0xf6,0x31,0x6f,0x2c,0xff,0x99,0x04,0x9c, - 0x89,0x30,0x78,0x61,0x30,0xa8,0x06,0xc1,0xf2,0x93,0x62,0xdd,0xfe,0xf2,0x53,0x14,0xa8,0xd2,0x03,0x60, - 0xc3,0x8b,0x27,0xc1,0x41,0xed,0x2b,0xe6,0x7f,0xb7,0x08,0x57,0x2b,0x91,0x99,0xf7,0x3d,0x64,0x7f,0xfd, - 0x4c,0x59,0x03,0x88,0xb8,0x51,0xc6,0x64,0xa1,0x75,0xe3,0x6d,0xf7,0xfe,0x53,0xe5,0x54,0xf9,0xf6,0x1a, - 0x0e,0x1d,0xd8,0x58,0x3b,0x26,0xe2,0x51,0x42,0x81,0x38,0x37,0xaa,0x26,0x52,0x02,0x8c,0xc4,0x74,0xdb, - 0x10,0x01,0xc7,0xfe,0x3d,0x31,0x3f,0xb4,0xc5,0x1b,0xc6,0x5a,0x71,0x14,0xd6,0x09,0x6d,0x72,0xe8,0x58, - 0x09,0xba,0xae,0x03,0xad,0xbf,0x80,0x5f,0x4f,0xed,0x99,0x26,0x65,0xe2,0xe1,0xb3,0xeb,0x5b,0x1f,0x69, - 0x7b,0x83,0xb0,0x44,0x05,0x39,0x2a,0xa8,0xb2,0x99,0x54,0x90,0xc3,0x01,0x29,0x29,0x55,0x6e,0x1d,0x91, - 0x6e,0x71,0xd2,0xce,0x47,0x8d,0x84,0xd0,0xb4,0x17,0xb8,0x34,0x90,0x8a,0x3a,0x3f,0x1f,0x88,0x57,0x75, - 0x80,0x4c,0x1b,0x83,0x99,0x7d,0xd9,0xdb,0x2a,0xcf,0x00,0xd1,0x25,0xac,0x91,0x31,0x4c,0xa5,0xe9,0x1d, - 0xda,0xa8,0x84,0xcd,0x68,0x02,0x4c,0x5d,0xe0,0xc9,0x8c,0x9b,0x76,0xc4,0x6c,0xfe,0x0a,0xe6,0x48,0x62, - 0x57,0xc3,0x91,0x04,0x02,0xbe,0x57,0x8e,0xaa,0xe1,0x30,0x56,0x08,0x4e,0xad,0x33,0x29,0x69,0x5f,0x97, - 0x20,0x1a,0xc0,0x7e,0xe3,0x27,0xcb,0x31,0xe5,0xbe,0x35,0x11,0x84,0x0b,0x5b,0x14,0xd8,0xd7,0x96,0x3a, - 0x12,0xc9,0xd6,0xdd,0x20,0xb8,0xcb,0x56,0xdc,0x77,0x6d,0x10,0xd0,0xbb,0xb4,0x9e,0xdb,0x3d,0x05,0x9a, - 0xb5,0xb5,0xaf,0xd7,0x6c,0x79,0x26,0xb5,0x2a,0xbe,0x71,0x18,0x32,0x2a,0x18,0x91,0x36,0xec,0xfd,0x19, - 0xe4,0xb5,0x74,0xa9,0x70,0xa8,0x22,0x41,0xbc,0x49,0x31,0x17,0x6a,0x84,0x2b,0x9b,0xe7,0x45,0xb6,0x6f, - 0x5b,0x92,0xe2,0x92,0x7a,0xa4,0x13,0x61,0xb8,0xe8,0xa2,0x07,0x26,0x07,0xa3,0xc9,0x83,0x33,0x1b,0xf9, - 0x60,0xc2,0x77,0x30,0x9d,0x95,0xc7,0x93,0x13,0x86,0x33,0xea,0xe2,0xa8,0x15,0xe9,0x43,0xbb,0x3a,0x77, - 0xed,0x64,0x11,0xf0,0x41,0x2d,0xd5,0x85,0x6f,0x2b,0xc4,0x8d,0x34,0xb4,0x15,0x8a,0xe4,0xc2,0x3a,0xf0, - 0x3f,0x28,0x8c,0x13,0x7f,0x95,0xe4,0xc9,0x05,0x62,0x24,0xf3,0xad,0x09,0xa5,0x3c,0x0b,0x91,0xf3,0xaa, - 0xd4,0x42,0x24,0x2d,0x8b,0xbf,0x48,0xeb,0x47,0x39,0xa3,0xa2,0x1a,0x8c,0x42,0x98,0x26,0x5b,0x5d,0x4a, - 0x2a,0x7d,0xd3,0xce,0x7b,0x09,0x26,0xe3,0x87,0x90,0x77,0x37,0x4f,0x74,0x05,0xf5,0x1c,0x51,0xd1,0xc8, - 0x7d,0x0e,0x23,0xdc,0x7b,0x0d,0x8b,0x05,0x5c,0x6e,0x15,0xe9,0x6b,0x16,0x8c,0x38,0xfc,0x7d,0x09,0xbd, - 0x4b,0xa4,0x3e,0xb8,0xbe,0xf9,0xd9,0x1f,0x38,0x9b,0x86,0xf1,0x2d,0x7b,0xf6,0xd7,0x38,0xe7,0x25,0xc2, - 0x27,0xd0,0x38,0xdb,0x3c,0x53,0xcf,0xb5,0xca,0xb8,0x59,0xcc,0x03,0x09,0x28,0x76,0x86,0x58,0x98,0xd2, - 0x94,0xa7,0x4e,0x66,0xca,0x79,0x42,0xd3,0x32,0xe7,0x1c,0x29,0x04,0x2a,0xec,0xba,0x98,0xd0,0x59,0xc9, - 0xd0,0x67,0x23,0x44,0x72,0xae,0x2a,0xc1,0xa6,0x06,0x77,0xd8,0x00,0x2e,0x60,0xa3,0x6a,0x68,0xd8,0x1d, - 0xa4,0xec,0xed,0x7d,0x2c,0xed,0xc5,0xb1,0x06,0x83,0x09,0x0b,0x44,0xa4,0x30,0x5b,0x50,0x22,0x78,0x55, - 0xfc,0xa3,0x79,0xb2,0x54,0xdd,0xb3,0xfe,0x01,0x3f,0x93,0x01,0x73,0x67,0x24,0x20,0xdb,0xae,0x7f,0xcd, - 0xe1,0x65,0xd2,0x9a,0xbd,0x57,0x32,0x7b,0x7a,0x8d,0x7e,0xa2,0x19,0x5a,0x24,0x60,0x1c,0x8f,0x0f,0x4f, - 0x46,0x0b,0x3d,0xd3,0x56,0xfa,0x16,0x2e,0x34,0xb8,0x0c,0x0e,0x31,0x92,0x79,0x52,0x11,0xbf,0x96,0x43, - 0xfe,0x49,0xfc,0xd9,0x02,0x12,0x2b,0x85,0x58,0x1a,0x59,0xd4,0x72,0x88,0x0b,0x27,0xde,0xeb,0x96,0xa5, - 0xe6,0x5c,0x69,0x07,0xa4,0x78,0xa5,0x4d,0x2c,0x67,0xb0,0x30,0x89,0xa7,0xca,0x5a,0x03,0xc6,0xcb,0x0d, - 0xe2,0x6c,0x58,0x13,0x3e,0x9e,0x00,0x3d,0x1f,0x1d,0x9b,0xba,0x92,0xef,0xaf,0xf1,0x67,0x37,0x58,0x40, - 0xb4,0x8c,0x55,0xad,0x3e,0x3b,0xd5,0x7b,0x7b,0x7a,0xae,0xb5,0x6b,0xc7,0xa6,0xc5,0xd5,0x7c,0xef,0xce, - 0x54,0x06,0xe2,0xc4,0x18,0x08,0x12,0xe4,0x06,0x51,0x9f,0xd5,0x98,0xa4,0x34,0x7a,0x62,0x5f,0xea,0x48, - 0x4a,0x86,0x6b,0x60,0x55,0x2a,0x7d,0x9b,0x14,0xc7,0xf7,0x4f,0xb4,0x16,0xc7,0xd0,0x3d,0x34,0xf5,0x3a, - 0xc5,0xae,0xd2,0x23,0x03,0xc4,0xb9,0xae,0xef,0xad,0x8b,0x9e,0x5b,0x8e,0x11,0x1e,0x69,0x9e,0xa7,0x75, - 0x92,0xdb,0x0f,0xde,0xca,0x07,0xd5,0x30,0x27,0xca,0x22,0x25,0x0a,0xee,0x30,0x29,0x5d,0xbd,0xaa,0xa4, - 0x56,0xd9,0x0e,0xc2,0x64,0xdf,0x4f,0x4a,0xd7,0x11,0xc4,0x2d,0x31,0x35,0xaa,0x8a,0x2f,0x94,0x2b,0x38, - 0x08,0x40,0xdb,0x5b,0xe3,0x5b,0xab,0x18,0xc9,0x67,0x8f,0x4b,0xc2,0x02,0x4c,0x1d,0x31,0xa7,0xe0,0x27, - 0x70,0xd8,0xd2,0x76,0x92,0xd1,0xb6,0x78,0x76,0xcb,0xbe,0xe8,0xf7,0xf7,0xa6,0xbd,0x4a,0x7c,0x1a,0x9a, - 0xc8,0xf0,0x99,0x11,0x19,0x7a,0x16,0xcc,0x5d,0x96,0x6c,0x1c,0x98,0x20,0x4a,0xf1,0x4d,0x10,0x07,0x25, - 0x7e,0x5c,0x24,0x05,0x7d,0x4b,0xdd,0x20,0x81,0x9d,0x5d,0x3e,0xb8,0x1b,0xc4,0x77,0x07,0xbf,0x40,0x69, - 0xc0,0x7e,0xda,0xb0,0xb2,0x76,0xf7,0x30,0x7b,0x82,0x67,0xb6,0x17,0x74,0xa6,0xcd,0x8e,0xb6,0xb4,0x37, - 0x7b,0x06,0x1e,0xf7,0xb8,0x09,0xb6,0x83,0x3e,0xdb,0x2b,0xc2,0x82,0xe3,0x60,0xd0,0x15,0x91,0xdb,0xd1, - 0xeb,0x9a,0xad,0xa3,0x9d,0x82,0x7e,0xf0,0x24,0xd0,0x27,0xdc,0xbf,0x4b,0x43,0xba,0x8a,0x77,0x16,0x91, - 0x33,0x3f,0x77,0x92,0x18,0x40,0x9d,0x2d,0xad,0xb1,0x35,0x08,0x88,0xdc,0xc2,0x9f,0xd4,0x38,0x86,0xb2, - 0x20,0x87,0x43,0x3a,0x7a,0x85,0x81,0xd6,0x71,0xcd,0x68,0x54,0x0e,0x12,0x7e,0x50,0xbf,0x94,0xac,0xbb, - 0x4e,0x8d,0x8d,0xad,0x0b,0x32,0x9d,0x7d,0x4a,0x25,0xfc,0x48,0x6d,0x82,0x68,0x7b,0x35,0x8d,0xa8,0x82, - 0x1f,0xcb,0xf0,0x38,0x98,0x34,0xd5,0x9c,0x06,0xc1,0xc6,0xba,0xf4,0x9b,0xce,0xf1,0x77,0x91,0x35,0x69, - 0x70,0x72,0xbb,0x29,0xf9,0xee,0xe4,0x38,0x83,0xad,0x79,0xbf,0x25,0xba,0x46,0xa7,0xc3,0x60,0x90,0x0d, - 0x82,0x1f,0x88,0xaa,0xb2,0x93,0xb5,0x5e,0x83,0x63,0x13,0xa3,0x10,0xdb,0x61,0xe3,0xbf,0x6b,0xed,0x77, - 0xc2,0x7c,0x40,0x58,0x1d,0xb6,0x16,0x77,0xcf,0x56,0x4d,0x53,0x16,0x77,0x31,0x0d,0x52,0x29,0xfc,0xf4, - 0x07,0x29,0x37,0xfc,0x63,0x63,0xaa,0xa5,0x34,0x5a,0x04,0xab,0x80,0xa3,0x83,0x7d,0x84,0xed,0x28,0x35, - 0x95,0x5e,0xcc,0xca,0x50,0x57,0x72,0x03,0x1a,0x37,0x2c,0xc6,0x7a,0x4d,0x06,0x81,0xc9,0x08,0xe2,0x6a, - 0xcc,0x56,0xab,0x26,0x23,0x72,0x39,0x66,0x01,0x19,0xd2,0x4c,0x5b,0x44,0x16,0x99,0x5a,0xe2,0xbe,0x66, - 0x6c,0x45,0x3e,0x74,0xfe,0xe8,0xb1,0x00,0x1c,0xe3,0xe6,0x39,0x53,0x46,0x87,0x07,0x91,0x1f,0xcf,0xde, - 0x4c,0xa3,0x0e,0x1d,0x4d,0xc4,0x21,0x55,0xa7,0xe1,0x8c,0x56,0xdd,0x86,0x19,0x0e,0x4e,0x3f,0x86,0xed, - 0xa2,0x44,0xc2,0x77,0x10,0x6f,0xc6,0x1b,0xa7,0x9b,0x5a,0x20,0xd5,0x7d,0xea,0x5b,0x65,0x66,0x2d,0xf3, - 0x25,0xc4,0xca,0x29,0x70,0x3b,0xaf,0xb1,0x14,0x95,0x18,0x6d,0x71,0x00,0x43,0x3f,0x0e,0xc0,0x6a,0xf7, - 0x07,0x74,0xe9,0xe3,0x46,0xac,0x93,0xe2,0xbb,0xa7,0x13,0x1d,0x32,0xe0,0x2e,0x4f,0x9b,0xea,0xc4,0x35, - 0x8e,0x8b,0x6e,0xa4,0x63,0x0f,0x81,0x35,0x85,0x8b,0x97,0x6f,0x8a,0x95,0xa5,0xf8,0xca,0xc9,0xeb,0x9b, - 0xaa,0x9c,0x64,0x75,0x9d,0x4d,0xed,0xd2,0x17,0xd6,0xb8,0x3b,0xd3,0x86,0xfb,0xbb,0xf2,0xb0,0x55,0xb4, - 0xf2,0x8b,0xd2,0x7e,0xe3,0x92,0xf4,0xbb,0x5d,0x67,0x82,0x70,0x1f,0x0d,0xdf,0xf4,0x31,0x43,0xa4,0x4a, - 0x84,0xf6,0x03,0xf6,0x65,0xe7,0x2e,0x8b,0xc0,0xc7,0x98,0x5f,0xef,0x3d,0xa6,0xbd,0x5c,0x7b,0x05,0xee, - 0x77,0x0a,0xdc,0x47,0x81,0xa2,0xd5,0x22,0x53,0x3a,0xa7,0xf3,0x50,0x5b,0x57,0x3b,0x22,0x1f,0xe6,0xd0, - 0x29,0x7b,0xa0,0xb8,0x59,0x6e,0x38,0x84,0x1b,0x66,0x35,0xd2,0xc8,0xe7,0x36,0xda,0x52,0xe9,0x00,0x69, - 0x32,0xd4,0x7c,0xc6,0x23,0xcd,0x67,0x5b,0x03,0x2d,0xdd,0x8c,0x38,0x9a,0x7b,0xb7,0x43,0x73,0x0b,0xad, - 0xde,0xc7,0x74,0x18,0x03,0x56,0x9a,0xae,0x25,0x4d,0xd7,0x45,0x32,0xb5,0x5c,0xc8,0x7a,0xed,0x91,0xf4, - 0x90,0xfa,0x16,0xe1,0x14,0x52,0x75,0x62,0x3f,0x4f,0x61,0x27,0x7c,0x31,0x08,0x2f,0x79,0x7a,0x2e,0x39, - 0x46,0xdc,0x39,0x7d,0xaa,0xa3,0x8a,0x07,0xb4,0x85,0xf4,0xcb,0x6d,0x6e,0x2f,0x67,0x85,0x36,0x6d,0xa0, - 0xb9,0x88,0xe1,0x54,0x2c,0xb2,0xa8,0x16,0x7e,0x26,0xc8,0xbb,0x36,0x95,0xc2,0x68,0x5e,0xbb,0x0e,0x04, - 0x27,0x6a,0xf7,0x9c,0xa6,0xe3,0x9a,0x7d,0xb3,0xc2,0x05,0xa1,0x1d,0x66,0x0b,0x02,0x16,0xcc,0xca,0x7b, - 0x30,0x38,0x8f,0xd4,0xb5,0xbc,0x85,0xe7,0x30,0x0a,0x32,0x65,0x78,0x47,0x5d,0xd3,0x28,0x60,0xcf,0xcc, - 0x4b,0x70,0x26,0x53,0xec,0xc2,0xa6,0x4e,0xfc,0x68,0x17,0x44,0x90,0x41,0xd7,0xd8,0xc0,0x86,0xab,0xc3, - 0x5b,0x8c,0x51,0x63,0x4c,0xd3,0x82,0x65,0x83,0x14,0xea,0x8c,0x66,0x86,0xb6,0xce,0x60,0xc2,0x8d,0xa4, - 0x9c,0x11,0x0d,0xc2,0x19,0xcf,0xd2,0x2c,0x66,0xa3,0x14,0x6a,0xd4,0x92,0x8d,0xa7,0x89,0xe6,0x55,0xc7, - 0x3a,0x3e,0x58,0x2a,0x8b,0x89,0x80,0xa0,0xb7,0xb5,0x85,0x43,0x19,0x3c,0x8d,0xb4,0x75,0x17,0x53,0x47, - 0xeb,0x38,0x08,0xe8,0x29,0x3c,0xe5,0x86,0x4e,0xb9,0xa1,0xf0,0x8a,0x5f,0xae,0x4c,0xab,0xf6,0xc2,0xa4, - 0x23,0x62,0x82,0x8e,0x1e,0x34,0x4e,0xbe,0x60,0x85,0xa4,0x47,0xc4,0xaa,0x9c,0x25,0x7e,0xce,0xf1,0x11, - 0x18,0xa3,0x33,0x8b,0xed,0xcf,0x6c,0x1c,0xcb,0x42,0x33,0x4c,0x81,0xf4,0xdc,0xc3,0x41,0x45,0xf7,0x2e, - 0x9b,0xce,0xae,0xc7,0x7e,0x69,0xba,0x08,0x44,0x8e,0x95,0x5e,0xc4,0xa4,0x11,0x0a,0xc0,0x01,0xc1,0xd2, - 0x17,0x34,0xbf,0xe1,0xf6,0xf7,0x26,0x2e,0x5d,0x34,0xb0,0x68,0x47,0x62,0x89,0x04,0x4a,0xbc,0x95,0xed, - 0x34,0x58,0xe7,0x10,0x1f,0x51,0xb5,0x90,0x8d,0x84,0x27,0xff,0x4b,0x5b,0xae,0xd5,0x96,0xef,0xe9,0x1a, - 0x04,0x2c,0x13,0xd1,0x8a,0xd9,0x6a,0xa4,0xed,0x65,0x21,0x26,0xb8,0x29,0x12,0x8e,0x41,0x62,0xdc,0x44, - 0xac,0xb3,0xaa,0x3d,0x9e,0xc6,0xc1,0x69,0x19,0x7a,0x23,0x57,0x38,0x91,0xd0,0xc5,0xe7,0xd3,0xc1,0x80, - 0x5f,0x0b,0xf6,0x6b,0xd3,0x05,0x36,0x6d,0x3c,0xea,0xb9,0x5f,0x6c,0x07,0xa6,0x6e,0x0d,0x08,0x03,0xf5, - 0x2c,0xd3,0xad,0xc9,0xbc,0xa7,0xba,0x73,0x3b,0xb6,0x1a,0x57,0x72,0x3c,0xc8,0x6c,0x8d,0x2b,0x7d,0x5a, - 0xe8,0x53,0x83,0xaf,0x02,0x31,0xf2,0x15,0x7b,0x4d,0x30,0x01,0xc8,0x29,0x11,0x98,0x81,0x36,0x06,0x68, - 0x4c,0x5c,0x3f,0x47,0x3e,0x64,0x9f,0x96,0x7c,0x76,0xa7,0xe2,0x75,0x10,0x8d,0x09,0x6d,0x12,0x1f,0x79, - 0x36,0x2f,0x27,0x1f,0x35,0x6e,0xb0,0x1d,0xa3,0x45,0xf4,0x32,0x37,0x1d,0x9a,0xd8,0x52,0xb3,0xdd,0x2b, - 0x5c,0xd2,0x6e,0x88,0x90,0x84,0x10,0x14,0x9d,0x08,0x7d,0x26,0xbf,0xd9,0xd6,0x25,0xd2,0xfa,0xd6,0x11, - 0x8d,0xa4,0x13,0x2f,0x0e,0x43,0x7c,0x1c,0x70,0x6c,0xe0,0x91,0x5c,0x03,0xd2,0x7b,0xad,0xd4,0x4d,0x69, - 0xa2,0xd0,0x6b,0x31,0xdf,0xbc,0x75,0x4f,0xf5,0x71,0x29,0x02,0xb2,0x11,0x78,0x5f,0x2a,0xb3,0x3b,0x47, - 0x3c,0x69,0xda,0x1f,0x57,0x69,0x85,0xab,0x35,0x52,0x0e,0x65,0x49,0xcb,0x54,0x13,0x65,0x2d,0xbc,0x1d, - 0xd1,0xd7,0xf2,0x11,0x11,0xd9,0x96,0xcd,0xe3,0x44,0xfd,0x02,0xc7,0x96,0x41,0x58,0x0a,0x46,0x25,0xf8, - 0x17,0x32,0x07,0xc7,0x91,0x25,0x8f,0x7c,0xcf,0x9e,0x2d,0xfa,0x42,0x17,0x8b,0x04,0x8d,0x94,0x43,0x3a, - 0x3b,0xc6,0x77,0x99,0x7d,0xe4,0x56,0xe8,0x01,0x2d,0x98,0x5c,0x4b,0x9b,0x52,0x4b,0x8e,0xb9,0xec,0xa9, - 0xd4,0x91,0xc3,0xb2,0x17,0x37,0x84,0xe3,0x0d,0xe4,0x4e,0xc6,0x75,0x9b,0x2b,0x38,0xb1,0x51,0x91,0x24, - 0xaa,0xc7,0xc8,0x90,0x85,0x80,0xfe,0x48,0x69,0xc9,0x1e,0x93,0x9c,0x70,0x76,0x01,0x16,0x14,0x4f,0x95, - 0x40,0x5c,0xeb,0x67,0x3a,0x93,0x9e,0x38,0x93,0x7e,0xbd,0x4c,0xde,0xad,0xae,0x04,0xbf,0xc6,0x40,0x13, - 0x52,0x62,0xc9,0xde,0x85,0xc8,0xa4,0x27,0x2f,0xdd,0x63,0x80,0x91,0x7b,0x17,0xc2,0x52,0xf6,0x2a,0x02, - 0x02,0xa6,0xc5,0xb8,0xeb,0x24,0x4d,0x29,0x21,0xd9,0xf4,0x81,0x68,0xcf,0xbe,0xcd,0x8a,0x67,0xde,0xdd, - 0xdf,0x90,0x07,0x0d,0x12,0x3f,0xeb,0x38,0x3d,0x09,0x33,0x8d,0x4e,0xf4,0x09,0xca,0xad,0xf3,0x33,0x71, - 0x59,0x83,0x79,0x61,0x72,0xf4,0xbc,0x29,0xed,0xef,0xa9,0x0b,0x1a,0xa3,0x7f,0x5b,0x56,0xe2,0xf5,0xda, - 0xb2,0xe2,0x28,0x28,0x85,0xc1,0xd7,0xe9,0x04,0xb5,0x7b,0x68,0x20,0xcd,0x4c,0x8e,0xef,0x73,0xe8,0x95, - 0xf7,0x93,0x15,0xe3,0xef,0xd6,0x57,0x8e,0xc4,0x10,0x32,0xcf,0x48,0xf9,0x74,0xf7,0xf8,0x9e,0x96,0x60, - 0xe0,0x97,0xb3,0x5f,0xba,0xf0,0xa7,0x52,0x18,0xc2,0x3f,0x3f,0x95,0x89,0xb8,0xc0,0x4b,0x88,0x4f,0x57, - 0xc4,0xff,0xb4,0x82,0xa9,0x14,0xb7,0xb1,0x34,0x3b,0x5d,0xe4,0xe6,0xee,0x2d,0xd0,0xc4,0x63,0x9b,0x94, - 0x1b,0x87,0x39,0xbb,0xee,0x54,0xb4,0xcf,0x21,0x21,0x66,0x63,0x57,0xda,0xe2,0xa5,0x26,0x1d,0x61,0xf7, - 0xdd,0x26,0x1d,0xcb,0x36,0xe9,0xb8,0xf2,0x0a,0xdc,0xef,0x14,0x60,0xd2,0xb1,0xbc,0x8d,0x74,0xac,0x3b, - 0xa4,0xe3,0x64,0x30,0x1f,0xac,0x5a,0xa4,0xa3,0x0e,0x8d,0x2b,0xb4,0x23,0xed,0xa1,0x1b,0x01,0x7c,0x4c, - 0xe5,0xac,0x88,0xbd,0x4f,0xb5,0x03,0x44,0xe1,0xd6,0x21,0x6a,0x55,0x14,0xb6,0x64,0xb3,0x6c,0x86,0x32, - 0x26,0x0a,0x77,0xc6,0x7f,0x06,0x01,0x21,0xe0,0xb0,0x16,0x32,0xb5,0x75,0x81,0x33,0x90,0xb1,0x7b,0x8b, - 0xfb,0x8a,0xc4,0x9a,0xbc,0x45,0x1f,0x37,0x82,0xf3,0x5b,0xb4,0x2d,0xf6,0x32,0xae,0x4d,0x01,0x76,0x6e, - 0x73,0xe2,0x74,0xb2,0x47,0x80,0x07,0x1d,0x6e,0x9c,0xc1,0x86,0x9f,0x63,0xe3,0x94,0x38,0xc8,0xfc,0x80, - 0xe2,0x34,0x68,0xe7,0x87,0x68,0xb3,0x4c,0xd2,0x20,0x68,0x23,0x38,0x1b,0xbd,0xdc,0x26,0xda,0xad,0xd1, - 0xa6,0xb2,0xb6,0xa2,0x57,0x34,0xbe,0xb7,0x86,0x0d,0xdd,0x79,0xc0,0x31,0x74,0x0e,0x25,0x70,0x1f,0x5b, - 0xa9,0x69,0xd7,0xd1,0x82,0xc3,0xe6,0x94,0x26,0x3a,0xa0,0xe6,0xf4,0xda,0x6d,0xc4,0x86,0x0d,0xf3,0x04, - 0x1b,0xc4,0x3a,0xe8,0x00,0xda,0xe8,0x58,0x97,0xdd,0x3a,0x46,0x76,0x97,0xe0,0xb9,0x85,0x89,0x6f,0x55, - 0x2a,0x0c,0x6c,0x7b,0xa6,0xe1,0x9f,0x49,0x58,0xb6,0xe1,0xd8,0x85,0x98,0x67,0x76,0x81,0xb7,0x98,0x38, - 0xf7,0xe4,0x5d,0xf7,0xd4,0x9d,0x7b,0x2a,0xd0,0x94,0x78,0x36,0xbc,0xaa,0xd2,0xa5,0x5c,0x6d,0x0f,0xc5, - 0x89,0x7d,0x85,0xa7,0x8a,0xce,0xb5,0x4a,0x45,0xaf,0x88,0x4d,0xe3,0x72,0xde,0x3d,0x4d,0xb5,0x25,0x4e, - 0xfc,0x48,0x45,0x66,0x8e,0x25,0x76,0xb7,0x1f,0xc5,0x2a,0x4d,0x4a,0x6f,0xe2,0x4b,0xcf,0x6f,0x88,0xb7, - 0x72,0x8b,0xf9,0x49,0xc5,0xb6,0x4a,0x78,0x1d,0xf3,0x6e,0x5c,0x47,0xab,0xf5,0xba,0x29,0xa2,0x30,0x55, - 0x8d,0xb1,0xbb,0x29,0x3a,0x51,0xb7,0xdb,0x17,0xcc,0x6f,0x5d,0x8d,0x63,0x03,0x39,0x56,0xb6,0x3b,0xb9, - 0x86,0x03,0x7a,0x9d,0xe0,0xc2,0x25,0x04,0x7e,0xf2,0x69,0x13,0xf8,0x56,0xb4,0x69,0x95,0x72,0x91,0xf5, - 0x61,0xac,0x09,0xd0,0xb7,0xa6,0x6f,0x22,0x90,0x8a,0xf7,0x35,0x99,0xc8,0x2e,0x41,0xff,0xe3,0x6a,0x1b, - 0xbf,0x56,0x36,0xa2,0x3d,0x8c,0xbc,0xab,0xd6,0xc2,0x92,0xad,0x4b,0xaf,0xcf,0xb2,0xc7,0x96,0x0b,0x8a, - 0x39,0xa0,0x6d,0xd7,0x31,0xca,0x18,0x92,0x0a,0x03,0x49,0x63,0x1e,0x6b,0x22,0x34,0xfe,0xc2,0x26,0x41, - 0x05,0x6b,0xc3,0xe6,0x8d,0xe1,0x6b,0xad,0x40,0x05,0x6e,0xd1,0x04,0x95,0x84,0x5f,0x66,0x97,0xe4,0x38, - 0x38,0xbd,0x04,0x65,0x7f,0x1f,0x9a,0x82,0x02,0xd2,0x6e,0xae,0xbc,0xf0,0xf6,0x2c,0x61,0x9f,0xb0,0x2b, - 0x0a,0x91,0x1a,0xa2,0xc8,0x32,0x73,0x04,0x4e,0x46,0x05,0x02,0x81,0x60,0x79,0xdb,0xc9,0x30,0xe9,0x95, - 0x07,0x12,0xe6,0x63,0xac,0x5d,0x83,0x44,0xf1,0x84,0x1a,0x13,0xff,0x53,0xab,0xf5,0x63,0xc9,0x03,0x21, - 0xc0,0x1e,0x55,0x57,0x9b,0xcb,0xf6,0x9c,0x59,0x3b,0xaa,0x44,0x48,0x13,0x3e,0x7f,0xb5,0x71,0x23,0x22, - 0xd5,0xca,0x90,0x7c,0xf1,0xdd,0xc1,0x0a,0x71,0xfd,0x8c,0x54,0x4b,0x05,0xee,0xae,0x71,0x8f,0x84,0xf2, - 0xbc,0x61,0x5b,0xc1,0x24,0xdc,0xe6,0xfe,0x75,0x75,0xff,0xe0,0xfe,0xbf,0xee,0x9d,0xab,0xe0,0x57,0x79, - 0x0c,0xa2,0x4e,0xe6,0xd7,0x2e,0xf3,0x6b,0xff,0xd2,0xcc,0x99,0x86,0x05,0xf8,0xc6,0x79,0xb1,0xe4,0x9f, - 0xb9,0x59,0x76,0x97,0xa7,0xda,0xbe,0x89,0x76,0x22,0xab,0x2a,0x28,0x7b,0x09,0x1b,0xc7,0xf0,0x96,0x3d, - 0xf7,0x6f,0x72,0xf4,0xfa,0x19,0xbe,0x2b,0x93,0x77,0xe5,0x9f,0xc4,0xb3,0x44,0xd4,0x58,0xad,0x43,0x4a, - 0xb2,0xf1,0xdd,0x07,0xe9,0xce,0x05,0x14,0xb8,0xc1,0xaf,0x45,0x70,0xef,0x9b,0xbb,0xf1,0xdd,0x07,0x54, - 0x8a,0xb0,0x86,0x7e,0x57,0xef,0x4a,0x57,0xde,0xf9,0xb8,0xec,0xfd,0x9f,0xc3,0x83,0x51,0x10,0x7d,0x73, - 0xc0,0x46,0x7c,0x4b,0x7b,0xaf,0xe3,0xac,0xca,0xb2,0x3f,0xb2,0x10,0x21,0x89,0x2f,0x6c,0xa2,0x0b,0xb4, - 0x6d,0xae,0xc6,0x56,0x97,0x45,0x32,0x17,0x99,0x8a,0xb2,0xe4,0x61,0xc0,0xc2,0x80,0x05,0xe7,0xd0,0x21, - 0xad,0xa8,0x57,0x8a,0x4b,0x38,0x75,0xab,0x82,0x7a,0x53,0x9d,0xf7,0xd4,0x7c,0x91,0xd6,0xde,0x55,0x90, - 0xea,0xba,0x48,0xee,0xed,0x87,0xbf,0x5e,0x45,0xb4,0x16,0x67,0x45,0x32,0xed,0x8d,0x10,0x62,0xd7,0xed, - 0xba,0x50,0xbd,0xdb,0xb5,0x19,0xc3,0x0c,0xe1,0xfd,0x72,0x09,0xbb,0xe4,0x9a,0x78,0x24,0x84,0x2a,0x85, - 0x41,0xe9,0xe9,0xad,0x55,0xea,0x90,0x30,0x07,0x51,0xfb,0xc3,0x81,0xd3,0x1f,0xd2,0xe7,0x57,0xd4,0xbb, - 0x5f,0x1f,0x85,0xc7,0x0f,0xf7,0xff,0x7d,0x82,0x1e,0x1e,0xfd,0x69,0x0f,0xaf,0x0a,0x15,0xec,0xdf,0x39, - 0x0c,0x50,0xed,0x8b,0xf2,0xca,0x54,0x4b,0x75,0x7d,0x2c,0x5a,0x0c,0x99,0xb3,0x4d,0xd8,0x3d,0xdc,0xa8, - 0xc7,0x6d,0x3d,0x90,0x0d,0x8d,0xa2,0x3e,0x11,0xab,0x0d,0x4a,0x7a,0x9f,0x83,0x91,0x57,0xfb,0xe6,0x82, - 0xc1,0x40,0x3d,0x2c,0x92,0xe3,0xc0,0x5b,0x13,0xc7,0xb8,0x05,0xe6,0x1a,0xc0,0xe0,0x44,0xbd,0x43,0x29, - 0xb1,0x6e,0x7c,0xcc,0x30,0x46,0x99,0x02,0x6c,0x54,0x85,0xce,0x60,0x93,0x69,0xc8,0xd7,0xc5,0x74,0xda, - 0xa6,0xbf,0xd7,0x31,0x1d,0xed,0xfd,0xb3,0x26,0xe3,0x89,0x84,0xec,0x45,0x9b,0xf2,0xc4,0x79,0xee,0xde, - 0x62,0xa4,0xfb,0x6f,0x72,0xb5,0x8e,0xf8,0x72,0x43,0xbc,0x75,0xa7,0x48,0x6e,0x84,0x88,0x78,0x89,0x9b, - 0xe8,0x09,0xd4,0xa8,0xe0,0x79,0x4e,0x1c,0x67,0xdf,0xad,0xa3,0x75,0x3e,0x87,0x0d,0x05,0x22,0x36,0x55, - 0xe5,0x74,0xc5,0x93,0x74,0x94,0x2f,0x91,0x60,0xae,0xc0,0xe5,0xcc,0xac,0x82,0x4c,0x07,0xd6,0x4b,0x78, - 0xe5,0x36,0xbf,0x93,0xbb,0x51,0xd9,0x37,0x42,0x81,0xa4,0x6f,0x25,0xe4,0xe7,0x05,0x0d,0x66,0xaa,0x77, - 0x1d,0xd1,0x21,0x27,0xca,0x5c,0x88,0xd8,0xdb,0x91,0x56,0x4c,0xf8,0xf8,0x63,0xe1,0x25,0xc0,0x51,0x4a, - 0x52,0xde,0x17,0x1f,0x8b,0xf2,0xaa,0xd0,0x95,0x22,0xad,0x13,0x62,0x3e,0x3e,0x57,0x7d,0x11,0xe4,0xe3, - 0xc7,0x85,0xf2,0x2e,0x26,0xc4,0x87,0xa7,0xf3,0x7c,0x96,0x4d,0xae,0x27,0xf3,0x0c,0x77,0x31,0xd7,0xf1, - 0xbb,0x62,0xa3,0x5e,0x13,0x44,0x1e,0xff,0xe7,0xd7,0xab,0xe1,0x9d,0x93,0x7b,0xea,0x69,0x81,0x48,0xfd, - 0xbc,0xb7,0x4e,0x4f,0x89,0x0c,0xbb,0xd9,0xa8,0x37,0x94,0xe4,0x08,0x56,0x7b,0xad,0x9d,0xf8,0xcd,0xa8, - 0x27,0xfd,0xb9,0x3f,0xfd,0xfc,0xb4,0xb8,0xcc,0xab,0xb2,0xd0,0x77,0x84,0xef,0xb6,0x12,0x20,0xc2,0xe3, - 0x9e,0xaa,0xdf,0x8a,0xe4,0x49,0xb1,0xb7,0xd7,0x9f,0xdb,0x06,0x78,0xf5,0xbc,0x48,0xde,0x50,0x59,0xed, - 0xb0,0x53,0xa4,0x97,0xf9,0x39,0xb8,0x84,0xe1,0x8a,0x26,0xec,0xe1,0x39,0xdf,0xc4,0xd4,0x2a,0xff,0xa2, - 0x48,0x9e,0x53,0xf9,0x7b,0x8b,0x3a,0xcf,0xd6,0x84,0x7b,0xa6,0x54,0x44,0x5b,0x5c,0x3d,0x2f,0x22,0xf5, - 0x4c,0xb2,0x9f,0x7b,0xfe,0x82,0x28,0xb9,0xf3,0xf5,0xf0,0x00,0xd8,0x4d,0xbd,0xda,0xce,0xcf,0xa6,0xe7, - 0xd9,0x3d,0xce,0x7c,0xb9,0x9d,0x49,0x70,0x50,0xd1,0x39,0x87,0x6c,0x3a,0xcd,0xcc,0x1b,0x1d,0x68,0xbf, - 0x15,0xea,0xad,0xee,0x4a,0xbe,0xbc,0xa0,0xbd,0xb5,0xce,0x97,0xe9,0x94,0xfe,0x94,0xf4,0xa7,0xac,0x5d, - 0x97,0xe0,0x32,0x5e,0xd6,0xfa,0x93,0x47,0x45,0x12,0xf2,0x37,0x93,0x8b,0x8a,0x48,0x94,0x5f,0xef,0xfd, - 0x3a,0x1d,0x78,0xbd,0xbf,0xd9,0x0c,0xf9,0xf6,0xdd,0x48,0xfd,0x04,0x65,0x34,0xa8,0xaa,0x37,0x05,0x87, - 0xa8,0x04,0x56,0xfe,0xc0,0x76,0x0d,0xfd,0x57,0x15,0x7f,0x20,0x7c,0xa2,0x63,0x1f,0x04,0xea,0x06,0x57, - 0x1d,0x7b,0x14,0x30,0x2a,0x3b,0xd8,0x00,0x4f,0xc9,0x2c,0x6f,0x07,0xd4,0x43,0x0f,0xf6,0xed,0xf7,0x0c, - 0xf5,0x1f,0x8a,0xc8,0x73,0xea,0x46,0xfb,0xef,0x0b,0xf5,0x5d,0xa1,0xfe,0xf0,0x50,0x50,0x87,0x16,0xa0, - 0x31,0xbe,0x87,0x61,0xcc,0x7b,0x6a,0x0f,0x8b,0xda,0x07,0x43,0xe7,0xf3,0xf2,0x2c,0x9d,0x83,0x26,0x65, - 0x44,0x85,0x79,0x91,0x24,0xe0,0x7e,0xb0,0x83,0xc3,0xac,0xb8,0x1c,0x7e,0x78,0xff,0xf4,0xf4,0xe9,0xab, - 0x0f,0x91,0x7a,0x4f,0xb0,0xfc,0x7b,0x0b,0x44,0x4e,0x4f,0x91,0xf9,0xe4,0xe9,0x87,0xa3,0xd7,0xaf,0x5f, - 0xbc,0x3b,0xfd,0xf6,0xc5,0xeb,0x47,0x0f,0x5f,0x9c,0x7e,0xf7,0xfa,0xf5,0x0f,0xa7,0xa7,0xea,0x87,0x7e, - 0xc0,0x7d,0x77,0xbd,0x38,0x2b,0xa9,0xd1,0xa3,0x50,0x9e,0xa2,0xfe,0xbe,0xe9,0x2b,0x8b,0x51,0xae,0x73, - 0x7b,0x71,0x34,0xfa,0xee,0x96,0x9a,0x33,0x2e,0x4e,0x3f,0xb8,0xa1,0xa1,0x35,0xeb,0xad,0x58,0x17,0x72, - 0x95,0x5f,0xd6,0xf4,0x45,0x5e,0xb5,0xd1,0xf2,0xdb,0xc7,0x5f,0x0f,0xa6,0xdf,0xe5,0x18,0x28,0xba,0x2a, - 0x28,0x31,0x95,0xff,0x0d,0x2d,0x6b,0xeb,0x1b,0xaf,0x20,0xd6,0xbf,0x55,0x96,0x90,0x45,0x5a,0xf9,0x0b, - 0xf9,0xd9,0x0e,0xaa,0x6c,0xa3,0x4d,0x08,0xbe,0x2f,0x92,0x73,0xf5,0x2d,0x18,0x82,0x9f,0x8b,0xad,0xcf, - 0xf3,0x69,0xf2,0x2d,0xd1,0x6d,0xfa,0xaa,0xc4,0xd5,0x19,0xd4,0xf3,0x9b,0xd1,0xcf,0x45,0xbb,0x8f,0xef, - 0x56,0x67,0x3d,0xdd,0xa4,0xd2,0x3a,0x58,0x1f,0x35,0xd7,0xfa,0x44,0x1c,0x0d,0xbb,0x5f,0xad,0x42,0xfb, - 0x9d,0xda,0xfa,0x44,0x2e,0xca,0xf6,0xfb,0xe7,0xdd,0xa3,0x6d,0x1f,0xd1,0x99,0x27,0xd9,0x52,0x04,0xed, - 0x9d,0x1a,0x8a,0xb2,0x21,0xc2,0xba,0xff,0xc2,0x3c,0xd7,0x61,0x2b,0x69,0x65,0x7b,0xa7,0xac,0x6b,0xef, - 0xc4,0x97,0xc1,0xaf,0xec,0xf5,0x79,0xb6,0x61,0x36,0x8b,0xe7,0xe9,0xfc,0x77,0x81,0x70,0xca,0xbf,0x74, - 0x8f,0x7c,0xa7,0x0c,0xd3,0xd3,0x03,0x57,0x19,0x7d,0xc9,0x25,0xdf,0xfe,0xd4,0xbd,0xe3,0x52,0xdf,0x5e, - 0xc9,0x77,0x48,0xe9,0xfb,0x2e,0xb3,0xf9,0xc2,0x5c,0x76,0x59,0xd4,0xe6,0xea,0x0e,0xf9,0x4a,0x5f,0x36, - 0x55,0xca,0xab,0xbb,0x7d,0xca,0x2f,0xe4,0x6e,0xa1,0x6a,0xa7,0x9a,0x7b,0x21,0xfd,0x54,0xbe,0xc1,0x14, - 0xe6,0xbc,0xa0,0xf2,0x74,0x13,0x6d,0xb3,0x56,0x73,0xb1,0xe5,0x96,0x01,0x71,0xab,0x1e,0x7d,0x45,0xa7, - 0x9f,0x54,0xa5,0x70,0x8f,0xd0,0x77,0x73,0xda,0x6b,0x53,0x6d,0x82,0xf3,0xdb,0x62,0x75,0x8a,0x24,0x9a, - 0xb0,0xe5,0xae,0xd8,0xe3,0x39,0x35,0x3a,0xf5,0x12,0xf8,0xa6,0x55,0xf3,0xda,0x8a,0x01,0x5e,0x7b,0x69, - 0x7c,0xe1,0x9c,0xdf,0x9b,0xed,0x20,0xe2,0x30,0x19,0x52,0x3f,0x12,0x62,0xe6,0xa5,0x88,0x11,0x1d,0x6f, - 0x96,0x9f,0xaf,0xf8,0x96,0xf2,0x18,0x48,0x77,0xf4,0x63,0x21,0xcb,0xc4,0x37,0xd4,0x6f,0x63,0xce,0xfe, - 0x69,0xd9,0xf4,0xde,0x48,0x4f,0x94,0x4f,0xf8,0x8b,0x07,0xa5,0xd4,0xb0,0xec,0xca,0xac,0x73,0x33,0x89, - 0xc1,0xc6,0x7c,0x8f,0x05,0xc7,0x37,0x11,0x36,0x4b,0x6e,0x8d,0x71,0xa6,0x71,0xbc,0xea,0x88,0x79,0xe3, - 0x4d,0x1a,0x0d,0x75,0xa3,0x9a,0x2a,0xe9,0xdc,0xa9,0xa3,0x8a,0xaa,0x83,0x1a,0x9a,0x2a,0x1a,0x1d,0x07, - 0xd8,0xb3,0x01,0x42,0x5e,0x2f,0x3d,0x3b,0x0c,0x1d,0x3e,0x0d,0x29,0x1c,0x0e,0x0c,0x0f,0x25,0x1c,0xc7, - 0x82,0x0a,0xa6,0xfb,0x75,0x06,0xf3,0x8c,0x1e,0xb3,0x3c,0xe9,0x65,0x53,0xc1,0x3c,0xe0,0x2a,0x2c,0x2a, - 0x95,0xf5,0x07,0xd0,0x3e,0xc6,0xfd,0x61,0x36,0x54,0x90,0x95,0x49,0xec,0xef,0x8f,0x22,0xbe,0xdf,0xd6, - 0x66,0x59,0x8b,0x6f,0x44,0x92,0xd7,0x4e,0xa4,0x98,0x71,0xf8,0x68,0xe8,0xbb,0xb9,0x25,0xb4,0xc4,0x48, - 0x07,0xb6,0xcc,0x24,0xb0,0xa5,0x0c,0x2b,0xe6,0x47,0x33,0x98,0x18,0xf1,0xdc,0x5d,0x9c,0x49,0x33,0x34, - 0x24,0x6b,0x44,0x70,0xdf,0x89,0x8f,0x20,0x8f,0x29,0xcf,0xf8,0x8c,0x33,0x97,0x63,0xab,0x14,0x78,0x49, - 0x63,0x16,0xd8,0x49,0x81,0xf3,0x10,0xdf,0x15,0x3b,0xb5,0x04,0x23,0x1e,0xd7,0xc3,0xb4,0x20,0x4d,0x03, - 0x91,0x94,0x55,0x72,0x53,0x5f,0x94,0xab,0xf9,0x94,0xf6,0x2a,0xcd,0x60,0x03,0xd8,0x52,0x1d,0xcb,0x5c, - 0x1e,0x8e,0x04,0x2f,0x31,0xb8,0x22,0x5b,0xf2,0x9a,0xff,0xac,0xf1,0xc3,0xe5,0x82,0xdd,0x78,0x09,0x5b, - 0x5d,0xe9,0xcb,0x93,0x69,0xe8,0x81,0xbe,0x80,0x79,0x2b,0xee,0x48,0x18,0x3e,0x6d,0x4b,0x84,0x24,0xa4, - 0xa1,0xa5,0x24,0x93,0x66,0x13,0x77,0xb3,0xbd,0x9b,0x94,0x7b,0xd5,0x40,0xda,0x9d,0x16,0xeb,0x72,0x25, - 0x2a,0x1e,0xc4,0x7c,0x26,0xda,0x04,0x22,0xd1,0x4a,0x55,0x95,0xbe,0xe8,0xb6,0x35,0x77,0x19,0xa2,0x68, - 0x22,0xf5,0x2a,0x9d,0x7f,0x0c,0x39,0x12,0x7b,0xe5,0xe1,0x6a,0xa4,0xde,0x62,0xa2,0xdc,0xb9,0x58,0x5e, - 0x64,0x0c,0x8d,0x2f,0x63,0x78,0x87,0x9e,0x23,0x8a,0x3a,0x21,0x6b,0xfa,0x39,0x81,0xcb,0xb9,0x5f,0xb9, - 0xdf,0x91,0xdb,0x2e,0xab,0xea,0xc3,0xfd,0x0f,0xe5,0x86,0x2a,0xb9,0x11,0x98,0x8e,0xda,0x3b,0x46,0x1e, - 0xda,0x61,0x65,0x46,0xa9,0x84,0x3d,0xb9,0x85,0xe9,0xdb,0x29,0xc6,0x6f,0x74,0x4a,0xdc,0xf8,0x5e,0xa5, - 0x96,0x02,0x69,0xc6,0x59,0xfc,0x46,0xa4,0x38,0xc4,0xc5,0xf5,0x6e,0xab,0x14,0x1b,0x2a,0x79,0x42,0x04, - 0xe0,0xc3,0xdb,0x0b,0x0c,0x82,0x3a,0x38,0x49,0x7e,0xa3,0x42,0xd4,0x23,0xa6,0x42,0xb7,0x0e,0x25,0x51, - 0x12,0x13,0x5e,0x79,0xc4,0xe6,0xcf,0xf6,0xae,0xb9,0xc6,0x24,0x35,0x36,0xc9,0xda,0xad,0xed,0xb4,0x91, - 0x46,0xb6,0x5e,0xf7,0x44,0x9b,0x6f,0xb4,0x79,0x22,0x91,0xb7,0x97,0xb0,0x95,0x8b,0xda,0xde,0x18,0x8d, - 0x91,0x7c,0xc2,0x17,0x43,0xd5,0x09,0x60,0x66,0x94,0x12,0x03,0xd2,0xbd,0x10,0x8f,0x95,0x87,0xc7,0xe9, - 0x49,0xc4,0x97,0x0d,0x25,0xe9,0x38,0x35,0x2e,0xe5,0x75,0xd4,0xb9,0x24,0xae,0x8e,0xc6,0xc4,0xc9,0xd5, - 0x27,0x76,0xc7,0x6e,0x30,0x6e,0x89,0x1e,0x4a,0x0f,0x8b,0xac,0xb9,0x28,0xa7,0xfc,0x28,0x57,0x40,0xe3, - 0x69,0xa2,0x63,0x09,0xf4,0x4f,0xcc,0xf6,0x70,0xfa,0xa2,0xec,0x1b,0x82,0x99,0x87,0xa9,0x1a,0x98,0x3e, - 0xe6,0x1c,0xa8,0xc1,0xb4,0x7f,0x49,0x2c,0x4d,0xf2,0x46,0x24,0xb2,0x95,0x9a,0x54,0x6a,0x5e,0x75,0x34, - 0xb4,0x5d,0x9a,0x1b,0x10,0x40,0x38,0x7b,0x85,0x5b,0xa0,0xd4,0x8c,0x43,0xb0,0x71,0x20,0x36,0xb6,0x85, - 0xe9,0xa1,0x59,0x89,0xca,0xb3,0xd1,0xb8,0x41,0xbc,0xfa,0xef,0x51,0x34,0x69,0x91,0x85,0x7e,0x5e,0xf8, - 0x01,0xe1,0xb8,0x8d,0x81,0x9e,0xab,0xd8,0x3a,0xed,0xbd,0x24,0xf2,0x3d,0x3d,0xcf,0x1e,0x5f,0xa4,0x45, - 0x91,0xcd,0xd7,0xeb,0xdd,0xa3,0xb0,0x9d,0x04,0xba,0xdb,0x5c,0x66,0xd4,0xce,0x21,0xb4,0x56,0x37,0xd5, - 0x0a,0x67,0x30,0xdf,0x6f,0xd4,0xce,0xb5,0x72,0xa6,0xb0,0xa7,0x7f,0xc6,0xbd,0xee,0x03,0x5c,0xe9,0x9c, - 0x51,0xc9,0xb2,0x62,0xd4,0xd7,0xae,0x48,0x5d,0x54,0xc9,0x92,0xa6,0x99,0x0e,0xa3,0xfb,0x23,0xfd,0x70, - 0x38,0x04,0x87,0xca,0xa5,0x92,0x0f,0xaa,0x5d,0xfd,0x05,0x8a,0xd4,0x8d,0xae,0x04,0xc2,0x9e,0xcd,0x2d, - 0x93,0x4a,0x38,0x7b,0x91,0xd7,0x3c,0x9f,0xfa,0x51,0x5b,0xee,0x5e,0x56,0x89,0x4e,0x30,0x37,0xe4,0x12, - 0x29,0x5d,0xb7,0x5a,0xb9,0xac,0xe4,0xba,0x61,0xe2,0x77,0xde,0x16,0x2d,0x97,0xc1,0x73,0x13,0x6d,0x98, - 0x3e,0x98,0x54,0x0c,0x14,0x8b,0x4a,0x9d,0xcb,0xd0,0x88,0x19,0xbb,0xae,0x3a,0x82,0x26,0x2d,0x4e,0xdd, - 0x0b,0x6c,0x1c,0x67,0x16,0x5e,0x11,0x86,0x0a,0xfe,0x1f,0x5b,0x9f,0x67,0x00,0x17,0x2b,0xbb,0x8a,0xb3, - 0xc8,0x2b,0x54,0x21,0x6e,0xac,0x14,0x2a,0x6e,0x2b,0x64,0x6c,0xe8,0x58,0x07,0x9f,0x25,0x55,0xab,0x9c, - 0x82,0x45,0x04,0x04,0x9b,0x5b,0xf1,0xf8,0x1a,0xb0,0x9f,0x67,0x95,0x5c,0xdb,0x74,0xca,0x90,0x7a,0xc5, - 0x7f,0x8f,0x38,0x54,0xd3,0x47,0x86,0xda,0xc7,0xfc,0xf7,0x13,0xce,0x8e,0x87,0xf8,0xf3,0xae,0xea,0xa1, - 0x8b,0xcd,0x39,0xb7,0x40,0xf0,0x74,0xf6,0xc2,0x38,0x65,0x6c,0x45,0x34,0x90,0x9c,0x63,0x2e,0xc1,0xd8, - 0x02,0x73,0x72,0x35,0x0e,0xf5,0x99,0x48,0x87,0xe2,0xee,0x6e,0xc5,0x0f,0x72,0xd8,0x40,0xd6,0xc0,0x49, - 0x78,0xd0,0xf7,0xc3,0xa7,0x7f,0x5c,0x73,0x12,0x1e,0x34,0x43,0x43,0x94,0x1f,0x27,0xe1,0x41,0x1f,0x48, - 0x5c,0x99,0xab,0xc3,0x7d,0xea,0x7d,0xa1,0xa9,0xcc,0xc9,0x99,0xa1,0xd2,0x89,0x4d,0x1a,0x0c,0x1e,0xea, - 0x86,0x24,0x92,0x9a,0xa5,0x5e,0xa7,0x39,0x9d,0xfb,0xae,0x1e,0x7b,0x8c,0x83,0x95,0xd2,0xc4,0x7c,0x76, - 0xf5,0xc4,0x7f,0xa7,0xcc,0xe7,0x84,0xa8,0x34,0x40,0x78,0x45,0xba,0xa9,0x4e,0x83,0x00,0x71,0x7b,0x4f, - 0x7c,0x82,0x46,0xee,0x8c,0x27,0x1a,0xa4,0xc1,0x58,0xe2,0xd0,0x7f,0xed,0xf8,0xec,0xec,0xbe,0x2e,0x44, - 0x6c,0x61,0xc0,0x1c,0xee,0x60,0x3a,0xcc,0xc9,0x30,0x70,0xb7,0x3e,0xf6,0x1c,0x98,0x3d,0x87,0x70,0x0b, - 0x7d,0x8e,0xb2,0x44,0x9f,0xc5,0xee,0x1a,0xb9,0x0d,0x7b,0x49,0x79,0xfd,0xc1,0x45,0x79,0x7d,0xbd,0x8b, - 0xe0,0x16,0xaf,0x3c,0x4a,0xc8,0x4e,0xa5,0xb1,0x2d,0x33,0x9f,0x21,0xf8,0xcc,0x3b,0xff,0xa4,0xef,0xd0, - 0xe7,0x4c,0x57,0x8f,0xa4,0x02,0xe5,0xb1,0x8f,0xff,0xd6,0xf1,0x7c,0x6c,0x52,0xe4,0x31,0x76,0x72,0xc3, - 0x33,0x6e,0x05,0xd4,0x40,0xca,0x81,0xf3,0x9a,0xc4,0xeb,0xab,0xbe,0xb7,0x4d,0x59,0xf1,0x8a,0x31,0xf4, - 0x36,0x50,0x14,0x35,0x17,0x55,0x79,0x45,0x87,0xc8,0x5b,0x56,0xd6,0xdf,0x95,0xcf,0x76,0x68,0xfa,0x76, - 0x34,0x5c,0xef,0x20,0x08,0x6d,0x7b,0x49,0x61,0x8a,0x12,0x6d,0x08,0x27,0x51,0xe5,0xd7,0x37,0x16,0x36, - 0xf7,0xf6,0xbe,0x0b,0x5b,0x1d,0x44,0xef,0xcb,0x65,0xa8,0xa7,0x08,0x52,0x80,0x62,0xb5,0x04,0x3c,0xb9, - 0x78,0x78,0x74,0x94,0xb4,0xe6,0x45,0xb8,0xe4,0x1e,0xe7,0x9b,0x8c,0x20,0x79,0xd4,0x06,0x38,0xc8,0x2d, - 0x42,0xd8,0xc3,0x85,0x9d,0x74,0x89,0xfb,0xd5,0x82,0x60,0xc3,0xee,0xfb,0x60,0x6c,0xbf,0x37,0x92,0x02, - 0xd9,0xbc,0x51,0xa7,0x4b,0x5e,0xbf,0x3f,0xc3,0xa2,0x63,0xdb,0xd8,0x7b,0xed,0xc1,0x1b,0x18,0xfe,0xc2, - 0x64,0x82,0xcd,0xe8,0xeb,0x3f,0x8d,0x0b,0xb7,0x1d,0x38,0xc9,0x83,0x16,0x11,0x68,0xb7,0x0b,0xd7,0xdd, - 0x91,0xbf,0x03,0xdb,0x35,0x6d,0xed,0xc4,0x4e,0x82,0x48,0x60,0xc2,0x48,0xb9,0x0a,0x6b,0x6f,0xb7,0xfb, - 0x13,0xd5,0xde,0xf7,0x45,0x7b,0x12,0x4d,0x8c,0xc9,0xce,0x0c,0x89,0xd4,0x61,0x4b,0x42,0xc3,0x1b,0xc1, - 0x43,0x34,0xbb,0x7a,0x3f,0x00,0x53,0x49,0x7a,0xb5,0xa2,0xc2,0xf1,0x2d,0x8b,0xad,0x03,0x47,0x27,0xc9, - 0x11,0xee,0x70,0x66,0xb8,0xe5,0x27,0xa0,0xaf,0xc7,0x2d,0xbb,0xbf,0xd3,0xca,0x9a,0x22,0x8e,0x8a,0x6f, - 0x3e,0x55,0x7b,0x7b,0xa7,0x15,0xdf,0x5c,0x36,0xfd,0x86,0x6b,0x8a,0x0a,0x5a,0x10,0x2a,0xa4,0xc3,0x45, - 0x17,0x83,0x43,0x75,0x00,0x39,0x0e,0x1f,0x76,0xa7,0xe6,0x52,0xc9,0x68,0xf4,0x11,0x3b,0x1d,0xa7,0xc3, - 0x81,0x7a,0x1f,0x4e,0x32,0x76,0x90,0xd3,0xf2,0x9a,0xd6,0x78,0xa9,0xdb,0xfe,0x60,0x61,0x88,0xee,0xb0, - 0xab,0x89,0x52,0xe2,0xb6,0x3e,0x1b,0x19,0xed,0x6a,0x59,0x1a,0x23,0x8a,0xf5,0x3a,0xe7,0xab,0xe3,0xec, - 0xd6,0x69,0x41,0x8b,0xb8,0x6c,0x9a,0x5a,0x5b,0x3c,0x96,0x6c,0xd9,0x4a,0x6f,0xba,0xc9,0x99,0xec,0x6f, - 0xbd,0xfd,0x15,0xd3,0xe5,0x56,0x8c,0xfa,0x36,0xcc,0x0c,0x23,0xa6,0xee,0x1a,0x2b,0x8d,0xbf,0xb4,0xb3, - 0xe5,0xae,0xf2,0x5b,0x5b,0xd8,0x74,0xa6,0x23,0x43,0x17,0xfb,0x00,0xc0,0x43,0x8a,0x3c,0x11,0xfe,0xa9, - 0x03,0x51,0x46,0xab,0x96,0x6d,0x31,0xda,0x9f,0xed,0x30,0x7f,0x6b,0xe9,0xcf,0xc3,0xee,0x52,0x35,0x04, - 0xf7,0xd3,0xf2,0xea,0xb3,0xeb,0xa5,0x07,0x87,0x40,0x3d,0x8f,0x32,0xa2,0xfb,0x9e,0x18,0xfd,0xd1,0x7a, - 0xbd,0x0a,0x6d,0xa6,0x39,0xe6,0x85,0x81,0x1d,0xfd,0xad,0xce,0x75,0xf6,0xf6,0xa8,0x75,0x18,0x1f,0x6e, - 0x84,0x6f,0xbb,0x43,0xc4,0x49,0x56,0xac,0x16,0x99,0x91,0xe7,0xa8,0x8e,0x7c,0x07,0x4a,0x9b,0xf8,0x5c, - 0xd5,0xf8,0xbb,0x51,0xaf,0xa9,0x38,0x76,0x18,0x98,0xf3,0xd1,0xe3,0x2c,0xfc,0xe4,0x49,0x5c,0x85,0xd3, - 0x7f,0x5a,0xa9,0x37,0x95,0x7a,0x52,0xa9,0xdf,0x2a,0xf5,0x9c,0x4a,0xc3,0x85,0xdf,0xe7,0xa1,0x35,0x85, - 0xc3,0xc7,0x61,0xbf,0x87,0x7e,0x8f,0x0b,0x7e,0x5e,0xdb,0xe9,0x89,0xfa,0x9c,0xf4,0x93,0x50,0xa2,0x30, - 0xdf,0x9c,0xb2,0x98,0x47,0x32,0xd1,0x79,0xed,0x75,0x7c,0x56,0x29,0xed,0x0d,0xff,0x01,0xce,0xfc,0x71, - 0x6a,0x5e,0x9f,0xce,0x17,0x71,0x25,0x0c,0x1b,0xd1,0x6c,0xd9,0x0c,0xef,0xb9,0xbc,0x6f,0x70,0x0d,0x85, - 0x78,0x6f,0xb7,0xcd,0x7a,0x94,0xb9,0xed,0x45,0x1b,0xf2,0x24,0x13,0xfd,0xa0,0xea,0xae,0xed,0x0e,0x65, - 0x75,0x52,0x08,0x1b,0x12,0xc1,0xb2,0x7d,0xc1,0x28,0xc7,0x09,0xc0,0xc5,0xcd,0xd1,0xf0,0x0e,0x6b,0x1f, - 0x43,0xd0,0xa7,0x19,0x75,0x47,0x4b,0xe7,0xbc,0x2b,0x8e,0xb4,0x4f,0x39,0xbc,0xed,0x1f,0xce,0xed,0xe6, - 0x47,0x50,0xce,0xe7,0x80,0xc2,0x8c,0xa3,0x23,0x84,0x25,0xae,0x89,0xb7,0xf1,0x4c,0x37,0xca,0x64,0xc4, - 0x6d,0x56,0xcb,0x38,0xda,0x6d,0x05,0x31,0xd8,0xed,0x23,0x4c,0xa5,0xa1,0xdd,0xdd,0x30,0xc7,0x4a,0x99, - 0xa8,0x04,0xc3,0x53,0x99,0x80,0xc7,0x5a,0x58,0xbb,0x5e,0x9b,0xd0,0xa7,0xce,0x9a,0x8f,0xcb,0x7b,0xef, - 0x7c,0x6d,0x81,0x36,0x85,0x74,0xf5,0x78,0x8b,0x94,0x54,0x44,0xe7,0x4a,0xe8,0x2b,0x7e,0x3c,0xd5,0xf7, - 0x56,0x87,0xe6,0xd1,0x08,0x53,0xf9,0x8e,0xa4,0xdb,0xba,0x92,0xe4,0xc8,0x94,0x5b,0x2e,0xcc,0xe5,0x40, - 0xed,0x1b,0xc2,0x96,0xb8,0xb4,0xe2,0x8e,0xbd,0xca,0x1e,0x21,0xf9,0x29,0xa9,0x81,0x69,0x8b,0xad,0x54, - 0xac,0x2c,0x6f,0xf2,0x6a,0xd8,0x12,0x51,0x19,0x8b,0x60,0x61,0xdd,0x11,0x70,0x06,0xe5,0x54,0x9d,0xb4, - 0x86,0x44,0x69,0x50,0xb0,0x20,0xf4,0xb4,0x12,0xbf,0xe4,0xda,0x77,0x4b,0x36,0xf1,0x7b,0x8e,0x27,0xc4, - 0xf1,0xe3,0xd2,0xf2,0x67,0xe1,0x5c,0x75,0xdb,0x96,0x4b,0xf2,0xb6,0xdb,0x3f,0xd8,0x2a,0xf9,0x84,0x85, - 0xe7,0x1b,0x67,0xd0,0xbc,0x4a,0xb6,0x27,0xd8,0xc5,0x84,0xf8,0x4c,0x1e,0xce,0x61,0xb9,0xfa,0x71,0x15, - 0x6d,0x4a,0x9e,0xf8,0x3b,0x35,0x5f,0x5f,0x5f,0xc0,0x42,0xd1,0x0b,0x93,0x4d,0x19,0x34,0x0d,0x13,0xad, - 0x26,0x47,0x9c,0x24,0xff,0xd2,0x62,0xbb,0x49,0x7b,0x36,0xae,0xf2,0x42,0x58,0xd0,0xb3,0x5d,0x05,0x40, - 0x9c,0x8b,0x8e,0xb1,0x51,0x12,0x96,0x6b,0xfb,0xd0,0x96,0x7b,0x88,0xf4,0xe5,0x75,0x55,0x5f,0x0b,0xa3, - 0xaa,0x15,0x0b,0x2d,0xf4,0x5f,0xd9,0xdc,0x9a,0x23,0x82,0x1a,0x85,0x3f,0x1b,0xb8,0xb5,0x77,0x17,0xbb, - 0x9a,0xbb,0x6f,0xc6,0x21,0xdc,0x57,0x23,0xdc,0xaf,0x6c,0x71,0x29,0x31,0x7a,0xc6,0x27,0x33,0x8a,0x53, - 0x54,0xb8,0x7b,0x00,0x8a,0x4e,0xdb,0x04,0xf4,0xd2,0x1a,0xdb,0x1d,0x6d,0x5a,0x78,0x8e,0x1d,0x41,0xdb, - 0x3d,0xb1,0x92,0x4a,0x31,0x72,0x15,0x24,0x1a,0xb2,0x54,0x6a,0x78,0x2a,0x36,0x0f,0xcf,0x0b,0xc7,0x6d, - 0x95,0x88,0xbd,0xca,0x54,0x9e,0xed,0x6b,0x84,0x40,0x95,0x5e,0xcf,0x0f,0x46,0x9e,0x34,0x73,0x54,0x11, - 0xcb,0x72,0xa7,0x7b,0xad,0x39,0x64,0x9a,0xb8,0x30,0xd3,0x66,0x1c,0x57,0x27,0xc4,0xdd,0xa3,0x07,0x2d, - 0xdb,0x06,0x26,0x5b,0x30,0xee,0xb8,0xf1,0x6e,0x32,0xa6,0x54,0xf5,0xa2,0x6a,0x09,0x29,0x9f,0xd3,0x7e, - 0x7d,0x56,0x25,0x87,0xea,0x55,0x95,0xdc,0x57,0x2f,0xd1,0xf0,0x53,0x5f,0x6f,0xc7,0x17,0x57,0x6f,0xd3, - 0xe2,0x82,0x81,0xe4,0x10,0x3b,0x5d,0x11,0x83,0xf9,0xb2,0x32,0x7a,0x38,0x9a,0xb6,0x0f,0x2b,0x1e,0xb2, - 0x44,0x65,0xf3,0xce,0x80,0x71,0x1f,0xb2,0x73,0x30,0xdf,0x91,0x5f,0x31,0x28,0x19,0x21,0x8d,0x35,0xee, - 0xe4,0x50,0x1f,0x3e,0x66,0x1a,0x15,0x06,0xf5,0x98,0xe0,0x0f,0xaa,0xe8,0xa2,0x2e,0x9b,0x40,0x27,0x8a, - 0xfb,0x9c,0x5e,0x90,0x23,0x07,0x0d,0x92,0xe5,0x49,0x0b,0xd3,0x7a,0x6e,0x50,0xf4,0xb6,0x47,0x92,0xb7, - 0xb6,0xca,0xd6,0x6e,0xcd,0xbd,0xdd,0x53,0x6c,0xa3,0x41,0xbb,0x9b,0x90,0x69,0xdb,0x39,0x4a,0xcf,0xe5, - 0x3a,0x5c,0xd5,0xe8,0x43,0x8c,0xc1,0x5d,0x1f,0x6c,0x26,0x4d,0x6d,0xb9,0x01,0x26,0x5b,0x7e,0x39,0x91, - 0x50,0xad,0x84,0xa6,0x84,0xde,0xbe,0xe3,0xee,0x36,0x7f,0x9d,0x85,0x46,0x2b,0x67,0x26,0x97,0xb6,0x19, - 0x87,0xcb,0x16,0xc1,0x85,0xac,0xa2,0xb4,0xf5,0xa6,0x2a,0x3f,0x89,0x78,0x40,0x27,0xd7,0xd9,0x7c,0x26, - 0xef,0x7d,0xdb,0xc8,0xde,0x9a,0x59,0xd8,0xc5,0x60,0x1a,0x1e,0xe1,0x26,0x6d,0xb8,0x1d,0x1d,0x92,0xb3, - 0x70,0xb8,0xce,0xe4,0xec,0xed,0x51,0xa2,0x89,0xa9,0x88,0x88,0xc0,0xe6,0xa5,0xf0,0x76,0x82,0x51,0xda, - 0x66,0x26,0x97,0xef,0x39,0xba,0x53,0x95,0x25,0x3d,0x8d,0x0b,0x79,0x8a,0x33,0xa4,0x59,0x75,0xe5,0xf1, - 0x09,0x17,0xc9,0x66,0xb8,0xb5,0xc7,0x13,0xd8,0x88,0x78,0x28,0xf3,0x36,0xa1,0x49,0xe8,0x6e,0xe0,0x43, - 0x2e,0xe5,0x50,0x95,0x7e,0xb7,0x08,0xc2,0xa6,0xb4,0xc9,0x47,0x90,0x76,0x5a,0x1e,0xe4,0xcf,0x17,0x95, - 0xd4,0x97,0x08,0xf5,0xd9,0xf3,0x50,0x2e,0xb1,0x85,0xb0,0xad,0x61,0xab,0x89,0x44,0x47,0x1c,0x6b,0x3e, - 0x7b,0x74,0x40,0x1f,0x2a,0x97,0x5f,0xdd,0xd2,0xa0,0x9c,0xdd,0x66,0x7c,0x02,0x2f,0x47,0x55,0x96,0xd5, - 0x4e,0x3b,0xdc,0x59,0x42,0x7b,0xe0,0xb7,0x37,0x1c,0xed,0xc0,0x02,0x2b,0x65,0xa2,0x5c,0xfa,0x07,0x51, - 0xd3,0x05,0x75,0xb9,0x33,0xd1,0x27,0x35,0x12,0x3e,0xe2,0x4f,0x27,0x2d,0x63,0x6f,0xe5,0xdf,0x14,0x7d, - 0xc7,0xbb,0x4b,0x15,0xf1,0x1e,0x36,0xbc,0x96,0xbe,0x25,0xe2,0x5f,0xfd,0xf6,0x40,0xeb,0x43,0x72,0xe9, - 0x31,0x87,0xa5,0x87,0x02,0x26,0x10,0x1a,0x24,0x80,0x40,0x2f,0xf7,0x48,0x0f,0x09,0x6a,0x25,0x25,0xec, - 0xfe,0x0d,0x54,0xb3,0x35,0xdd,0xae,0xb4,0x99,0xed,0x5a,0xb6,0x95,0x6a,0x1b,0xb5,0x45,0x2a,0xcc,0x93, - 0x65,0x16,0x86,0x5a,0x58,0xe8,0x16,0x50,0xa4,0xfc,0x4a,0xe2,0x72,0xf4,0x90,0x32,0xaa,0x75,0x6d,0x6d, - 0x4f,0xf8,0x6f,0x5a,0xd5,0x77,0x21,0x34,0x96,0x39,0xb1,0x17,0x30,0xe4,0xeb,0xa1,0x47,0xb6,0x80,0xc0, - 0x70,0x30,0x70,0x9b,0xef,0xae,0xf8,0xa8,0x31,0xce,0x2d,0x9f,0x47,0xd3,0x0e,0xf1,0x31,0xd2,0xa8,0x2c, - 0xa9,0xa5,0x63,0xe0,0xf7,0x50,0x5b,0xd8,0x80,0x25,0x02,0x03,0x99,0x0d,0xbd,0xd5,0xd7,0x52,0x7b,0xaa, - 0xd9,0xa6,0x4b,0x5c,0xee,0xc4,0x7b,0xbd,0x34,0x21,0x6d,0x9f,0xc1,0x5c,0x9a,0x96,0x96,0x78,0x1b,0x8c, - 0x1c,0x4e,0x19,0x8a,0xf5,0x35,0x84,0xbd,0xe6,0x1c,0xd6,0x46,0xfa,0x11,0x80,0xd6,0xee,0x44,0x05,0x88, - 0x52,0x38,0xcf,0xf7,0x4c,0x11,0xfb,0x39,0x69,0x92,0x12,0xc6,0xd8,0xa2,0x87,0xe9,0xce,0x41,0x77,0xf4, - 0xed,0xcb,0xeb,0x1b,0xbe,0xbc,0x3e,0x11,0x51,0x05,0x24,0x89,0xe3,0xf3,0x78,0x19,0x8a,0x96,0x4f,0xae, - 0x47,0x36,0xf5,0xa2,0x09,0x40,0xe1,0xf8,0x73,0xd8,0x53,0xe0,0xb4,0x0c,0x91,0x76,0xca,0xba,0xba,0x5e, - 0xe1,0x69,0xbb,0x87,0x9e,0x51,0x70,0xa6,0x19,0xf6,0x96,0x28,0x40,0xe7,0xb1,0x44,0x40,0xb1,0xe9,0x66, - 0x88,0xbb,0xaa,0x6e,0x58,0xd4,0xc9,0xe7,0x04,0x5f,0x88,0x0c,0x49,0x1a,0xdf,0x6c,0xe6,0xdf,0x6d,0xe0, - 0x83,0x22,0xc7,0xf8,0xde,0x22,0x88,0xd3,0xc4,0x67,0x1c,0xf4,0x60,0x95,0x91,0xc9,0x44,0xa3,0xd4,0x8a, - 0xc3,0x10,0xc9,0x3a,0x3d,0x19,0xd1,0xc6,0x9b,0x11,0xd9,0x8a,0xf0,0x9a,0x5f,0xfc,0x53,0x6c,0xcf,0xc3, - 0x7a,0x10,0x04,0x91,0x7f,0xa5,0xd1,0x01,0x08,0xa6,0xaf,0xbf,0x4a,0xf8,0x12,0x49,0xbd,0xc2,0xe8,0x39, - 0xae,0xe8,0xdc,0x3c,0x14,0x02,0x07,0xa1,0x4d,0xe2,0x87,0xa1,0x99,0x29,0x02,0x41,0x80,0x7d,0x63,0x75, - 0x67,0xb7,0x41,0xf3,0xa9,0x29,0xf0,0x93,0xd9,0x12,0x7d,0xa8,0xb8,0x4a,0xfe,0x40,0x84,0xf2,0x56,0xb8, - 0x8d,0xc6,0x30,0x5e,0x0d,0xae,0x6c,0xe9,0x5d,0x9c,0x72,0x5c,0xc6,0x25,0x04,0x1e,0x23,0x88,0x93,0x0a, - 0xdc,0xe8,0x01,0x46,0xf3,0x1d,0x3c,0x39,0x69,0xd7,0x9c,0xab,0x73,0xe2,0xdd,0xe1,0x96,0xa1,0xa1,0x77, - 0x85,0xb1,0x21,0xd0,0xb7,0xb8,0xdd,0xd9,0xce,0x47,0xec,0xf1,0x45,0xfd,0x83,0xb1,0x0b,0x3f,0xec,0x8a, - 0xe6,0xf3,0x16,0xbf,0x09,0xaf,0x7b,0x15,0x03,0xe2,0x76,0xdc,0x8e,0xca,0xbf,0x73,0x0d,0xf7,0x3d,0x9a, - 0x45,0xe2,0xfb,0x1e,0xa7,0xfa,0x76,0x79,0x04,0x0f,0x11,0x0e,0xd7,0xa4,0x98,0xae,0x89,0xbd,0xa0,0xc1, - 0x7a,0x58,0xb6,0xa6,0x8b,0xda,0xb4,0x52,0x31,0x12,0x52,0x58,0xbf,0x4d,0xfb,0xe6,0x09,0xe7,0xb5,0xc0, - 0x6a,0x14,0x17,0x1e,0x0e,0x35,0x96,0xc0,0x9a,0x18,0xb1,0x35,0xc3,0x47,0x49,0x52,0x84,0x2b,0xef,0xe6, - 0xd2,0x51,0xb1,0xbd,0xb1,0x70,0x69,0xcf,0xe7,0x8c,0x61,0x18,0x70,0x36,0x23,0x1b,0xc8,0xa9,0xf8,0x6c, - 0x61,0x86,0xf7,0x7e,0x73,0x99,0xeb,0xd0,0xa3,0x9c,0xe9,0x04,0x11,0x50,0xa5,0x0d,0xf3,0x57,0x0a,0x6b, - 0xcc,0x55,0x44,0x2d,0xb3,0x39,0x5c,0x0d,0x96,0xdc,0x69,0x27,0xc9,0x7d,0x49,0xc9,0xeb,0x76,0x6a,0x9f, - 0x06,0x5d,0xae,0x16,0x72,0xa1,0x5a,0xb0,0x98,0x42,0x16,0xca,0x2d,0xcd,0xb8,0x75,0x41,0xae,0x41,0x17, - 0x8d,0xd4,0x81,0x89,0x6c,0x2a,0xb0,0xea,0x17,0xb5,0xfe,0x7b,0xb9,0xd3,0xe4,0x36,0x4e,0x30,0xa8,0x8c, - 0x63,0x84,0x6f,0x3f,0x53,0x59,0xd1,0x1b,0x47,0x2a,0x0e,0x9f,0x52,0xf6,0x6f,0x55,0x72,0xef,0x3f,0xb8, - 0xbb,0x3c,0xbe,0xa7,0xc2,0x27,0x55,0x42,0x69,0xfe,0x28,0xca,0xa2,0xa3,0x7b,0xde,0x82,0xdf,0xcc,0xc1, - 0xef,0x6d,0x01,0xf0,0x04,0x28,0x0a,0x0e,0xca,0xae,0xf4,0xe5,0x1f,0x02,0x2a,0x9a,0xea,0xa2,0x03,0xd3, - 0x68,0x0c,0x5c,0x8a,0x17,0xcc,0xa9,0x41,0x3f,0x8d,0xba,0x09,0x50,0xcc,0x25,0xdb,0x34,0x99,0xd5,0x4c, - 0x32,0x5c,0x6c,0xd4,0x93,0xaa,0x3d,0x8e,0x49,0xd6,0x19,0x89,0x73,0xd4,0xe7,0xa9,0xb9,0x53,0xce,0x66, - 0xec,0xc0,0xad,0x8c,0x9d,0x50,0xe5,0x5d,0x46,0xb6,0xd1,0x5b,0x98,0xaa,0x76,0x53,0x3f,0x23,0xaa,0x5a, - 0x55,0x32,0x34,0x7c,0x58,0x6d,0xb5,0x3a,0x9b,0x6d,0x4f,0xdf,0x6e,0xd7,0x6e,0x29,0x6a,0xc1,0xf3,0x67, - 0xe8,0x50,0x6e,0xbd,0x6f,0x01,0x6e,0xfe,0xda,0x0a,0x60,0x80,0x7a,0x09,0xfc,0xa9,0x12,0xd4,0xd3,0x99, - 0xfd,0xf6,0xad,0x10,0xa6,0x65,0x67,0xd5,0xd1,0x5d,0x2c,0x89,0xcc,0xaf,0x8b,0x35,0x16,0x24,0x4a,0xff, - 0xda,0x48,0x3e,0x74,0x28,0x3b,0x2c,0x93,0x1c,0x46,0x1a,0x30,0x5d,0xc0,0xfd,0x40,0xb3,0xa2,0x73,0x79, - 0x64,0xba,0x75,0x79,0x64,0xdf,0x9a,0x66,0x8b,0x3e,0x4e,0x58,0x98,0x21,0xf0,0x3b,0xed,0xc1,0x14,0x70, - 0x22,0x33,0x7c,0xfb,0x37,0x87,0x63,0x78,0xe5,0xc4,0x85,0xc7,0xe1,0x5f,0x84,0x76,0x61,0xa8,0x79,0x3a, - 0x54,0x0f,0x38,0x58,0x8a,0x41,0xc6,0x0f,0x4a,0x46,0xc8,0x7c,0x0f,0x16,0x61,0x63,0x63,0x4b,0x06,0x44, - 0x6c,0x9d,0x7c,0xde,0x86,0x05,0xed,0xce,0xbb,0xdc,0xee,0xce,0x85,0xb8,0x10,0xb0,0x74,0x1f,0xde,0xd1, - 0x22,0xc7,0xf7,0x94,0x6c,0xe1,0x9b,0xee,0x76,0x3b,0xed,0x6a,0x6d,0x84,0x92,0xd0,0x5c,0xbc,0xe6,0x75, - 0x60,0x1f,0xd0,0x22,0x6d,0xb5,0xfb,0x85,0x09,0x53,0x28,0x8b,0x9d,0xcd,0x95,0x56,0x47,0x0b,0xa3,0x41, - 0xe3,0x39,0xc3,0xad,0x89,0x3e,0xef,0x28,0xcc,0x04,0xf1,0x0f,0x63,0xf3,0x8d,0xb1,0x88,0x63,0x51,0xe8, - 0xe9,0x29,0xc8,0xd9,0x48,0xab,0x81,0x7b,0x72,0x6d,0x4b,0x1c,0x8b,0xe3,0xb0,0x73,0x36,0x78,0x4c,0x7d, - 0x27,0x43,0xd8,0xfa,0xee,0x59,0xe2,0x4b,0x04,0xfa,0xca,0xeb,0x00,0xd5,0x34,0x84,0x9c,0x6f,0x17,0x24, - 0x46,0xfd,0xf4,0x72,0x95,0x9d,0x9e,0x26,0x6e,0x77,0xa0,0x37,0x06,0x3f,0xd0,0xa3,0x2d,0xe1,0x31,0xd2, - 0x77,0xb4,0xa0,0x54,0x5e,0xa4,0x4d,0xf3,0x26,0x13,0xa2,0xb5,0x42,0x3a,0xcf,0x49,0x56,0x5b,0xa9,0x76, - 0x3a,0xee,0xf0,0x29,0xf7,0xa6,0x05,0x99,0x9e,0xb8,0x6f,0x4b,0x01,0x63,0x48,0x7e,0xdd,0xa6,0x79,0xf5, - 0xcc,0x84,0xdb,0x75,0x69,0x61,0x51,0x47,0x59,0xb2,0x6b,0x80,0xa2,0xcd,0xde,0xc2,0x1e,0xa6,0x05,0x1b, - 0xc6,0x03,0x27,0x52,0xfd,0x1f,0xb8,0x9b,0x1d,0xfd,0xd1,0x8d,0x76,0x59,0xd5,0xd0,0xa3,0x7c,0x69,0xaf, - 0x8c,0x91,0x13,0x40,0x29,0xe3,0xb1,0xf7,0x2d,0xb9,0xc5,0x2d,0xc3,0x75,0x27,0xd1,0xc8,0x19,0xd2,0xb5, - 0x8a,0x58,0x31,0x70,0x63,0x75,0x37,0x36,0x0b,0x76,0xd5,0x5e,0x0d,0x8e,0x6c,0xd0,0xd6,0x9c,0xa6,0x35, - 0x2f,0xc9,0xd8,0x3e,0xee,0xef,0xdb,0xa9,0xf0,0x67,0x41,0xf5,0xc1,0xb6,0xde,0x3a,0xda,0xbd,0xc8,0xcc, - 0xac,0xf3,0x65,0xb2,0x20,0x4c,0x98,0xf5,0xf3,0x00,0xe8,0x83,0x68,0x1b,0x9e,0x5a,0xc2,0x7a,0xb1,0xb6, - 0xdf,0xa8,0xc7,0xc4,0xa1,0x3e,0xed,0x60,0x87,0x48,0x3d,0x6d,0x01,0x46,0x41,0xbc,0xfe,0x51,0x3e,0x69, - 0x5b,0x3e,0x6a,0xec,0xf2,0x5e,0xeb,0x19,0x09,0x9a,0x5a,0x1f,0x69,0x61,0xc0,0x96,0x99,0x83,0xf2,0xd0, - 0xa6,0x15,0x38,0x54,0x89,0x11,0x75,0x29,0x2f,0x60,0xb2,0xc8,0xf8,0x38,0x0a,0x9c,0xc3,0x49,0x51,0xdb, - 0x5c,0x4f,0x0b,0x20,0x8c,0xd5,0x9e,0x79,0x87,0xd5,0x1e,0x82,0xf3,0x1b,0xdf,0xb4,0xf5,0x3a,0x3d,0x3e, - 0x40,0xf4,0x37,0xfa,0x0b,0x65,0x8e,0x10,0xa8,0xb6,0x6c,0x82,0xdb,0x6b,0x58,0x54,0xdc,0xb4,0x05,0x16, - 0xb9,0xb9,0xa1,0xad,0xad,0x41,0x81,0x5e,0xc2,0xec,0xe1,0x9c,0xed,0x2e,0xb2,0x44,0x5b,0x5b,0x34,0x2d, - 0xf9,0x19,0x8a,0xb5,0xc4,0x17,0x5b,0x28,0x3c,0x90,0xd2,0xf0,0x8c,0x4f,0x0c,0x06,0xb0,0xc6,0x28,0x34, - 0x44,0x91,0x49,0x13,0xc1,0xfc,0x4b,0x01,0x49,0x74,0x92,0x55,0x61,0xe4,0xa2,0x07,0x42,0xab,0x22,0xf4, - 0xeb,0xdb,0x4a,0x3d,0xaa,0xd4,0x4f,0x95,0xfa,0x50,0x25,0xc7,0xda,0x53,0xf2,0x6d,0x76,0xfe,0xf4,0xd3, - 0x52,0xac,0x6d,0x4f,0xd4,0xfb,0x2a,0xb9,0xf9,0xc1,0x88,0xb0,0x63,0x1d,0xd9,0xc4,0x8f,0x14,0x6d,0xf6, - 0x18,0xeb,0xeb,0x24,0xb8,0x45,0x5e,0x4c,0xe6,0xab,0x69,0x16,0x7f,0x20,0xf4,0xfc,0xc9,0x3e,0x2e,0xd2, - 0x4f,0xb1,0x69,0x43,0xee,0xb6,0x39,0xd9,0x28,0x4d,0xb8,0xc7,0x5d,0x2c,0x34,0x49,0x69,0x1f,0xdd,0x4a, - 0x64,0x30,0x67,0x09,0xdf,0x0d,0x65,0x61,0xbd,0xe5,0xd8,0x62,0xf4,0xac,0xbc,0xd8,0xb6,0xba,0xe8,0xb9, - 0x91,0x64,0xe2,0x4d,0x65,0xae,0x2a,0x02,0x43,0xde,0xb9,0xae,0xeb,0x3e,0xcc,0xfe,0xa6,0x37,0x96,0x93, - 0x21,0x59,0x38,0x7e,0xa2,0x25,0x68,0x10,0x39,0x7d,0xfa,0x3b,0x5f,0xee,0xba,0x2f,0x37,0x6a,0x3b,0xce, - 0x80,0x8f,0xf2,0x18,0xdc,0x86,0x3a,0xc0,0x17,0x6d,0x84,0x5f,0xc4,0x50,0x98,0xfd,0x19,0xb6,0x24,0xce, - 0x7e,0x98,0xcd,0x37,0xb8,0x84,0x40,0x69,0xca,0x49,0x0f,0x0c,0x66,0xe6,0xa2,0xbe,0xe7,0x57,0xbe,0x87, - 0x92,0xa0,0x7a,0x97,0xd8,0x4e,0x74,0x29,0x87,0x7c,0x89,0x48,0x9e,0xbd,0x3d,0x42,0x88,0x4f,0x70,0x4b, - 0xb6,0x8b,0x9a,0xdf,0x98,0xd8,0x40,0x6e,0x0a,0xb5,0x19,0x08,0xa6,0x50,0x4d,0x8c,0x38,0x83,0xef,0x2a, - 0x2e,0x24,0x72,0xfa,0x24,0x9f,0x0e,0x42,0x89,0x5c,0x11,0xc4,0x31,0x02,0xb4,0x71,0x2c,0x96,0x00,0x6a, - 0x06,0x44,0x56,0x4a,0x8f,0x27,0x27,0xe3,0x5e,0x6d,0x13,0x72,0x7a,0x14,0x4e,0x2b,0xb9,0x99,0x4a,0xdb, - 0xe6,0x4c,0x10,0x23,0x19,0x25,0x89,0xce,0xb5,0x49,0xb2,0xac,0x04,0x6d,0x44,0x88,0x18,0x72,0xca,0x86, - 0x01,0x34,0x79,0xb4,0x95,0x9f,0x83,0x8e,0xc3,0x9d,0xa5,0xaa,0x45,0x6f,0x44,0x46,0xe4,0xe2,0x34,0x37, - 0x90,0xfa,0x98,0x49,0xa0,0x73,0x67,0x6f,0x2f,0xa3,0xaf,0x88,0x41,0x19,0xbd,0x05,0x0a,0x54,0xe1,0x4f, - 0x30,0x11,0x8c,0x6e,0xe1,0x02,0xef,0x14,0xb7,0x31,0x7f,0xb4,0xf9,0x02,0x51,0xd7,0x07,0xb4,0x05,0x23, - 0xf5,0x96,0x0e,0xd9,0x26,0x9f,0x27,0x37,0x70,0xf0,0x8c,0xbf,0x2f,0x08,0xa4,0x1a,0x82,0x8c,0xf8,0x52, - 0x2d,0x60,0x92,0xad,0x97,0x38,0x7e,0xae,0xa4,0x9e,0xb7,0xa2,0xbe,0xc9,0xe2,0x77,0x1b,0x7c,0x2a,0x8c, - 0xdf,0x5b,0x98,0x0d,0x6a,0x76,0x8f,0x9e,0x2d,0x0e,0x7e,0x8f,0xb7,0x7e,0xb5,0x89,0x6c,0xab,0x5b,0x0c, - 0xaf,0xdd,0x57,0xc6,0x00,0xbb,0xcf,0xfd,0x2a,0xf2,0x6a,0x1f,0x9e,0x9e,0xa5,0x75,0x96,0xd0,0xe0,0x2e, - 0x43,0x2f,0xd5,0x2e,0x65,0x4d,0x28,0x45,0xc6,0x5a,0x67,0xb7,0x50,0xc7,0x10,0xaf,0xd3,0x7a,0xe3,0x3a, - 0x8f,0x37,0xf3,0xd5,0x79,0xce,0x71,0x55,0xfb,0x33,0xf8,0x46,0x3b,0x46,0xf6,0xc6,0x23,0x32,0xc3,0xdd, - 0x10,0x2d,0xbe,0x40,0xc8,0xce,0x36,0xf9,0xec,0x98,0x24,0xed,0x3d,0xa1,0xe5,0x13,0x3d,0x32,0x07,0xc4, - 0x1e,0xe1,0x46,0xc7,0xf6,0x49,0x13,0xd7,0x1c,0x56,0xab,0xef,0x0b,0xe8,0xb1,0xbc,0x0b,0xc1,0x98,0x67, - 0xf3,0x8d,0xc9,0x78,0xc1,0x16,0xf9,0xa7,0xbc,0xd7,0x5b,0x9a,0x47,0xea,0xf4,0x2f,0xfe,0xab,0xb2,0x15, - 0xb4,0xe5,0xb4,0xb4,0xcf,0x92,0x03,0x2d,0xa0,0x3d,0x1c,0x65,0x43,0x81,0x9c,0x56,0xe5,0x59,0xc2,0x3a, - 0x1b,0x8f,0x08,0xe7,0x03,0x94,0xbe,0x94,0x7b,0x6d,0xb1,0x5f,0xe5,0xda,0x40,0x3c,0xb1,0x48,0x0f,0xc8, - 0x01,0xfa,0x42,0x63,0x81,0x6e,0x9c,0x55,0x10,0xff,0x43,0x6e,0x3b,0xb4,0x31,0x54,0x24,0x5c,0x76,0x3b, - 0x02,0xb6,0x59,0xb1,0xbc,0x61,0x97,0x08,0x1d,0x31,0x20,0x75,0xc7,0x7d,0x17,0x96,0x3c,0x5a,0x22,0xf2, - 0xd5,0x4d,0x49,0x8a,0xc0,0xd3,0x34,0x44,0xdc,0xb8,0x9e,0x7a,0x53,0x53,0xf8,0xf3,0x42,0xa7,0xed,0x6a, - 0x09,0x15,0x8d,0x2b,0xb2,0x2d,0x9f,0x76,0xc2,0xd3,0xcf,0x8a,0x67,0x21,0x3b,0xf4,0xa5,0x2d,0xa7,0x56, - 0xda,0xb2,0xc1,0x55,0x22,0x69,0x0b,0xac,0xbb,0x52,0xc3,0xed,0x36,0x4c,0xa9,0x6e,0x33,0xab,0x76,0x33, - 0x05,0x3b,0x7a,0x98,0x26,0xf4,0x1a,0x16,0xfa,0x81,0x52,0x04,0x62,0x0a,0xf9,0xa5,0x77,0xec,0xa0,0x02, - 0x7f,0x6f,0x75,0x9b,0x60,0xce,0x97,0x83,0xc9,0x2a,0xb9,0x20,0x65,0x7b,0x3b,0xb2,0x1f,0x82,0x9d,0x3d, - 0xe3,0x0e,0xe7,0x66,0xd6,0x74,0xc4,0xe4,0x64,0x7c,0xef,0x4a,0x4a,0x5b,0xd0,0xfa,0xdf,0xe1,0xce,0xdb, - 0xd4,0x29,0x5c,0x73,0xf6,0x70,0x52,0xe9,0x66,0x43,0x08,0x20,0x22,0x02,0x03,0xc8,0xe0,0x96,0x1e,0x3e, - 0x62,0xcf,0x0f,0x5f,0x3b,0xe3,0x39,0x96,0x84,0x5e,0x58,0x00,0x71,0x16,0x2b,0xc3,0x42,0x82,0xc7,0x17, - 0x1c,0x7d,0x5f,0x43,0xa1,0x35,0x67,0x6d,0xa1,0x20,0xdd,0x6f,0x5c,0xc4,0xe3,0xc7,0x14,0x90,0x8a,0xfa, - 0x64,0x8b,0x1c,0x6e,0xe5,0x06,0x91,0x2b,0xe3,0x42,0xe9,0x40,0xe6,0xc5,0xc6,0xf8,0xfb,0xb4,0xb0,0x20, - 0x4c,0x0a,0x0b,0x76,0x79,0xe9,0xcd,0x83,0x2d,0x79,0x3f,0xce,0x7f,0xda,0x16,0xe2,0xe5,0xf5,0x3b,0xf1, - 0x32,0x16,0x97,0xe8,0x3f,0x8a,0xbf,0xfa,0x61,0x5d,0x57,0xda,0x29,0x72,0xdb,0x9b,0xda,0x47,0x23,0x6d, - 0x6e,0x52,0x68,0x79,0xf7,0x2d,0xfa,0x49,0x15,0xc3,0xe3,0x2d,0x87,0xd5,0xf5,0xfd,0xe1,0x57,0xc3,0xc3, - 0x2f,0x24,0x40,0xcb,0x77,0x95,0xfa,0xa3,0x52,0xbf,0x57,0xea,0x87,0x4a,0x7d,0x5f,0xa9,0x6f,0x2b,0xf5, - 0x73,0xa5,0xfe,0x5d,0xa9,0x5f,0x2a,0x0e,0xa4,0xc1,0xf7,0x29,0xeb,0xbb,0x54,0xd5,0x8f,0x9c,0xc6,0x77, - 0xc6,0x28,0xd4,0x4b,0x54,0x66,0xaa,0x64,0x56,0x94,0xdc,0x9b,0x03,0xd2,0xf0,0x1c,0x06,0x83,0x20,0x59, - 0xf3,0x5b,0x7c,0x89,0xdc,0xbd,0xe1,0xb4,0x16,0x3f,0x56,0x2c,0x4b,0x0b,0x24,0x46,0x31,0x5c,0x2e,0x1a, - 0x84,0x6b,0xd1,0xb7,0xf0,0xe8,0x42,0x81,0x34,0xc2,0x8b,0x4a,0xb9,0x44,0x93,0x4c,0x3e,0xba,0x4c,0xb9, - 0xc4,0x46,0xe7,0xd9,0x48,0xe8,0xc8,0x81,0x80,0xb9,0xe4,0x9c,0x8d,0x6a,0x72,0x74,0x7e,0x22,0x97,0xa8, - 0x67,0xd3,0xbc,0x81,0xe9,0x9c,0x9a,0x56,0xe9,0xf9,0x39,0x3f,0xd5,0xcb,0x6c,0x3e,0xe7,0x9a,0xa9,0xef, - 0x05,0x17,0xa6,0x23,0xa0,0xbc,0x9a,0x11,0x6a,0xaf,0x09,0x75,0x11,0x3f,0xc9,0xce,0x98,0x2a,0x5d,0x35, - 0xe5,0xac,0x9c,0xac,0x6a,0x7e,0x5a,0xce,0xd3,0x6b,0xa5,0x3b,0xc4,0x21,0x47,0xe8,0xb4,0x86,0x75,0x1e, - 0x91,0xab,0xf3,0x9a,0x8e,0x70,0x9a,0xbb,0x2a,0x53,0x86,0xac,0xd3,0xbf,0xa6,0xbc,0x7e,0xe5,0x3e,0x9b, - 0x17,0x33,0x74,0xbc,0x13,0xcb,0x33,0xcd,0x6b,0x74,0x6f,0xaa,0xb2,0x42,0x7e,0x11,0xbb,0xa0,0x28,0x69, - 0x0a,0x73,0x40,0xae,0xba,0xc8,0xa7,0x53,0xea,0x1a,0x8e,0xc5,0x26,0xab,0x16,0x79,0x81,0x44,0x82,0xa8, - 0xaa,0x51,0x79,0xbd,0x48,0x97,0x2a,0x6f,0xb2,0x85,0xc4,0x38,0x99,0x97,0xe5,0x52,0x99,0xeb,0x9b,0x94, - 0x34,0x5a,0x94,0x08,0xd2,0xa2,0x10,0x58,0xa2,0xce,0xff,0x20,0xdc,0x54,0xd6,0x17,0x29,0x78,0x4d,0xd7, - 0x42,0x51,0x22,0x6e,0x14,0xad,0x33,0x35,0xb3,0x4c,0x09,0x0d,0xd1,0x4e,0xfd,0x94,0x37,0x44,0xce,0xa6, - 0xd3,0xb2,0x98,0x23,0x9e,0xca,0xef,0x2b,0xda,0x77,0x53,0xa5,0x9d,0x2a,0xa7,0x4a,0xf8,0x21,0x82,0x89, - 0x74,0x31,0x27,0x60,0x50,0x76,0x4c,0xf0,0xbe,0xe4,0xd9,0xb6,0x17,0xa6,0x70,0x38,0x50,0x9a,0x7b,0xca, - 0x04,0xcc,0x23,0xa4,0x04,0x47,0x7f,0x57,0x97,0x79,0x9d,0x53,0x49,0x04,0x78,0xcf,0x93,0xe0,0xa2,0x69, - 0x96,0xf1,0xbd,0x7b,0x57,0x57,0x57,0xc3,0xab,0x2f,0x86,0x65,0x75,0x7e,0xef,0xf0,0xeb,0xaf,0xbf,0xbe, - 0xf7,0x69,0x9e,0x17,0x1f,0x03,0x95,0xe7,0x3d,0x07,0x6c,0x10,0xb7,0x9c,0x4f,0xbe,0x02,0x94,0x49,0x79, - 0x4e,0x36,0xc1,0x79,0xbe,0x82,0xa7,0x5d,0xdf,0xf7,0x3b,0x39,0x2c,0x71,0xad,0x5f,0xc9,0x3f,0x95,0x91, - 0x67,0x72,0xb4,0x16,0x95,0xf6,0x7e,0x23,0xc4,0x31,0x01,0xe2,0xee,0xa1,0x80,0x5d,0x9d,0x27,0x37,0xf5, - 0x25,0x11,0xc3,0xdb,0x23,0xb8,0x7f,0x70,0x70,0x70,0x8f,0xf2,0x02,0xe2,0x99,0x9a,0x8b,0xbe,0x12,0x34, - 0xc6,0x7f,0xdd,0xc3,0xdd,0xa3,0xfc,0xe7,0xe5,0x0b,0x6a,0x76,0xc2,0x90,0x79,0xd1,0x2c,0xe6,0xea,0xac, - 0x9c,0x5e,0x2b,0xa0,0x40,0x75,0x41,0x4b,0xa1,0x30,0x34,0x85,0x98,0xe3,0x4a,0x76,0x6d,0x93,0x37,0xf4, - 0x37,0x9d,0x4e,0xb1,0x1f,0x55,0x5a,0x35,0xf9,0x04,0xef,0x35,0xed,0x09,0x02,0xa2,0x12,0xb7,0x63,0xe2, - 0x3b,0xfc,0x1c,0xaa,0x8b,0xfb,0xea,0xe2,0x0b,0x75,0xf1,0xa5,0xba,0xf8,0x4a,0x5d,0xfc,0x53,0x5d,0x9c, - 0x57,0xe5,0x6a,0xa9,0x8a,0xf4,0x92,0xd6,0x8e,0xc7,0x48,0x80,0x78,0xa9,0xa6,0x04,0x95,0x73,0x35,0x6d, - 0x14,0x11,0xb3,0xf0,0xad,0x41,0x3a,0x9b,0xa1,0x66,0x6a,0x99,0x4f,0xe0,0x6a,0xa3,0x2e,0x88,0x4b,0x5f, - 0x9c,0x53,0x67,0x68,0x50,0x74,0x7a,0x95,0x73,0xb5,0x84,0x51,0xa3,0x5a,0xcd,0x55,0xaa,0xce,0x88,0x8d, - 0x3c,0xab,0xd4,0xd9,0x34,0xa7,0xff,0xa5,0xa2,0xc7,0x09,0x81,0x27,0xc7,0x1f,0x52,0x7c,0x49,0xfc,0x74, - 0x46,0xe4,0xf0,0x42,0xe5,0xea,0xe3,0xd9,0x94,0x2a,0xa8,0x3e,0xaa,0xdf,0x55,0xb5,0x54,0x04,0xcc,0x55, - 0x33,0x51,0xd5,0xea,0xec,0x9a,0xa8,0xf8,0x3a,0x5d,0x2c,0x15,0xc1,0x36,0x91,0x5c,0xf5,0x32,0x25,0xd4, - 0x43,0x7b,0x8d,0x98,0xcd,0x7a,0x75,0x46,0xff,0x97,0x7c,0x5f,0xac,0xc2,0x3d,0x0b,0x95,0xba,0x3a,0x83, - 0xf0,0x9c,0x90,0x54,0xba,0x9a,0xe6,0xa5,0xc2,0x76,0x00,0x13,0xfb,0x51,0x31,0x62,0xa0,0x96,0xce,0x08, - 0xec,0xc4,0x0f,0x0c,0x46,0xa8,0xe9,0x82,0x00,0x74,0x55,0x11,0xff,0x31,0x49,0x8b,0xcb,0x94,0x5a,0x9a, - 0x54,0xf9,0xb2,0xc1,0xa6,0x90,0x07,0xa2,0xb9,0x61,0xe4,0xa6,0xcc,0xd8,0x27,0x34,0x3c,0xfa,0x2f,0x93, - 0xa5,0x01,0x9b,0xd7,0xa2,0xe1,0xb5,0x69,0xe8,0xe1,0x82,0x5a,0x54,0x82,0xdc,0x78,0x88,0x30,0x1f,0xa0, - 0x39,0xcb,0xe6,0x53,0xa2,0xe4,0x79,0x33,0x2b,0x41,0xa8,0xf3,0xf4,0x8c,0x6a,0x9f,0x67,0xe7,0x20,0x02, - 0x16,0xd8,0xcc,0x40,0xad,0x52,0xb5,0xc6,0xb1,0xe5,0xaa,0x41,0x49,0x83,0x63,0x0d,0xce,0xb5,0xa8,0x98, - 0x50,0x40,0x9a,0x03,0xeb,0xe4,0xe9,0xbc,0x3c,0xa7,0x4a,0x8a,0x15,0xff,0x01,0x0a,0xa0,0xa9,0x59,0xd0, - 0x84,0x5e,0x2b,0x8d,0x01,0x55,0x26,0x32,0x07,0x85,0xfd,0x5e,0x5e,0x29,0x13,0x34,0x4b,0x71,0x58,0xb2, - 0xdf,0x57,0x25,0xd0,0xc8,0xac,0x02,0xb9,0xd7,0x00,0x5a,0x70,0x63,0x30,0x83,0x1e,0x01,0xac,0x4a,0x8b, - 0x7c,0x81,0xb2,0x93,0xbc,0x9a,0xf0,0xf9,0x90,0x2f,0x97,0x04,0xa0,0x6a,0xb2,0xaa,0x68,0x87,0x03,0x73, - 0x01,0xf5,0xd5,0x13,0x6a,0x84,0xb2,0x08,0x40,0x25,0xbe,0x0f,0x0d,0xb7,0x68,0xf6,0x67,0xe9,0x04,0x00, - 0x58,0x65,0xf9,0x79,0x21,0x87,0xa0,0x3a,0x57,0xe7,0xf3,0xeb,0xe5,0x05,0x41,0x4e,0x7a,0x9e,0x01,0x90, - 0x33,0x5e,0xfc,0x0c,0xd2,0x84,0x9a,0x80,0x3a,0xaf,0x71,0x7b,0xd9,0xbe,0x14,0xe2,0x96,0xe8,0x0f,0x55, - 0x48,0x08,0xa9,0x9c,0x5f,0x9f,0x97,0xf2,0xcb,0xdf,0xe1,0xfc,0x57,0xe2,0x44,0xfd,0xff,0xb5,0xf7,0xae, - 0xdb,0x6d,0x1b,0xcb,0xba,0xe8,0xab,0x50,0x98,0xda,0x32,0x10,0x42,0x94,0x64,0x3b,0x99,0x09,0x68,0x98, - 0xd3,0x97,0x5c,0x9c,0xf8,0xb6,0x62,0x25,0x99,0x33,0x12,0xa3,0x05,0x91,0x20,0x85,0x88,0x02,0x38,0x01, - 0x90,0xb2,0x22,0xf2,0x81,0xce,0xdf,0xf3,0x08,0xfb,0xc9,0x4e,0x7d,0x55,0xdd,0x8d,0x06,0x08,0x5a,0x76, - 0xb2,0xd7,0xda,0x67,0xec,0xb1,0x47,0x46,0x2c,0xb0,0xef,0x97,0xea,0xea,0xaa,0xea,0xba,0xf8,0x05,0x3b, - 0xd9,0xe0,0xf5,0xe1,0x7f,0xb8,0x66,0xc9,0x30,0x03,0x6a,0x6a,0x99,0xc4,0xd7,0xe2,0x1b,0x6a,0xd1,0x7a, - 0x96,0x47,0xa2,0x89,0x3f,0xe3,0xb8,0xdc,0x34,0x85,0x56,0x86,0x6a,0xcc,0x8b,0xc2,0x5d,0x48,0xec,0x40, - 0x36,0x35,0xbb,0xce,0x72,0x46,0x7f,0x39,0x8d,0x22,0xa6,0x83,0x80,0x41,0xcc,0xfc,0x45,0x0e,0xa7,0xd8, - 0xf3,0xa4,0xe9,0xd4,0xaa,0x26,0x04,0x6a,0xd5,0xfc,0xdd,0xe2,0x78,0xcb,0x04,0x28,0x56,0x17,0x26,0x3b, - 0x1a,0x1f,0xa4,0x81,0x5b,0x2a,0x25,0xda,0xd2,0x52,0xa2,0xdd,0xdb,0xb3,0xe2,0x23,0x55,0xc9,0x26,0xa0, - 0x1f,0x34,0x61,0xea,0x01,0xd6,0x75,0x0e,0x7c,0x2d,0xe9,0x4f,0x8f,0x83,0x05,0xd6,0x86,0xf1,0xfa,0x5d, - 0x63,0xcc,0xfa,0x55,0xb1,0x75,0xd0,0xaf,0xdf,0xb9,0x05,0x54,0x53,0xd8,0x50,0x58,0x72,0x8e,0x69,0xf5, - 0x10,0x0b,0x32,0x68,0xd9,0x84,0x46,0x23,0xba,0x28,0x6f,0x89,0x24,0x29,0x8f,0x01,0x1f,0x51,0x59,0x95, - 0xe4,0xba,0xa2,0xab,0xfa,0x94,0xa5,0xd3,0x1b,0xd6,0xe3,0xcc,0x01,0x9a,0x6c,0x57,0x02,0x24,0x8a,0xa6, - 0x3e,0x2b,0x30,0x35,0xe6,0xab,0x7d,0x83,0x70,0x1e,0x42,0x7e,0xf8,0x88,0x19,0x9c,0x8e,0xdb,0xcb,0x5a, - 0x79,0x5c,0xb6,0x8a,0x85,0xd9,0x36,0x85,0xd8,0x8a,0x95,0xb9,0xf6,0xc1,0xe8,0xbf,0xa3,0x6b,0x91,0x4e, - 0x43,0x7b,0x61,0xab,0xc0,0x1a,0xd1,0xc3,0xd8,0x55,0x53,0x6b,0x49,0x95,0xb9,0x86,0xd1,0x00,0x56,0xf5, - 0x99,0xe0,0x85,0x8d,0xe1,0x96,0x55,0x5e,0x58,0x72,0x69,0x03,0x21,0x2d,0xeb,0x56,0x03,0x20,0x5e,0x37, - 0x78,0x6c,0xa3,0x3b,0x50,0x76,0xa0,0xd1,0xfa,0xd3,0x98,0x57,0x40,0x11,0xe1,0xcd,0x9e,0x19,0x46,0x89, - 0x3a,0xa9,0x00,0x56,0x1c,0x09,0x3f,0x85,0x4c,0x0d,0xc7,0x96,0xab,0x6f,0xd1,0xe0,0xd5,0x85,0xd6,0x6b, - 0x3a,0xe7,0xca,0xe1,0x84,0xeb,0x10,0x15,0xbd,0xf6,0x11,0xab,0xe5,0x2a,0x81,0x37,0x32,0xed,0x61,0x4c, - 0x2b,0xc8,0x1a,0xdf,0x61,0xec,0x21,0x02,0x5b,0x5a,0xf9,0x0c,0x73,0x86,0xfe,0xb4,0x9a,0xc7,0x4f,0xb1, - 0x1e,0xf5,0x4f,0x71,0x6b,0xff,0x3f,0xa1,0xff,0x65,0x82,0xfe,0x6f,0xda,0x31,0xc7,0x39,0x0d,0xe1,0x22, - 0xa1,0x46,0x87,0xfe,0x59,0xd5,0xf0,0xbf,0x4d,0xc3,0xff,0xa6,0xbd,0xb9,0xae,0x32,0xbe,0x37,0x19,0xdf, - 0x53,0xc6,0x71,0x12,0x1e,0x9c,0x9c,0x5e,0x7b,0xbd,0xee,0xe9,0xfe,0xd9,0xee,0xe9,0x70,0x78,0xe0,0x5f, - 0x26,0xf0,0xae,0x45,0x3c,0xc6,0x33,0xfe,0x18,0x39,0xfe,0xfb,0xaa,0x36,0xdd,0xd9,0xaa,0xf6,0x98,0x36, - 0xf1,0x49,0x95,0x31,0x37,0x19,0x73,0x18,0xdc,0x25,0xad,0x76,0xbc,0x1c,0x55,0xee,0x20,0x70,0x7b,0x5d, - 0xef,0xa0,0x6f,0x20,0x48,0xcc,0x2c,0x0f,0xfa,0xee,0x60,0xe7,0xe4,0x37,0x77,0xf8,0xd9,0xa9,0xe7,0x1d, - 0x4c,0xdb,0x35,0xd2,0x60,0x40,0x50,0x39,0x6e,0x95,0x8a,0xd0,0x1e,0x30,0xef,0xa0,0x10,0xb9,0x9f,0x20, - 0x26,0xaa,0x0a,0xcf,0x33,0x0c,0xf3,0x2a,0x94,0x0f,0x03,0x51,0x49,0xff,0xef,0xd2,0xac,0x7f,0xdb,0xdf, - 0x3f,0xf0,0xdf,0xd0,0xc7,0x69,0xf1,0xd9,0x4e,0x72,0x05,0xcb,0xe9,0x28,0x2d,0x77,0x0f,0xfc,0xaf,0x37, - 0xf9,0x0d,0xea,0x76,0x57,0x85,0x84,0x27,0x40,0x89,0x25,0x96,0x1f,0x60,0xd4,0xf0,0x5b,0xa5,0x6d,0xb2, - 0xf1,0x46,0x95,0x4d,0xb7,0x96,0x35,0x7e,0xf3,0xde,0x24,0x1c,0x7b,0xc8,0x31,0x03,0xb0,0x03,0xc3,0xe5, - 0xe1,0xf3,0xc4,0x15,0x87,0xf4,0xf5,0x37,0xf2,0xb4,0xa6,0x64,0xd3,0xf6,0xae,0xab,0xfa,0x05,0x6b,0x8d, - 0xe7,0x5d,0x19,0x9a,0x9d,0x48,0xf0,0xf4,0x16,0xb0,0x2b,0x21,0x08,0x09,0x3c,0x5f,0x65,0x7f,0x00,0x3f, - 0x13,0x47,0xea,0x3f,0x6f,0xee,0x1e,0x0d,0xe0,0xd7,0x3c,0xfc,0x35,0xbf,0xc3,0x73,0xa3,0x34,0x6f,0xbc, - 0xf0,0xed,0xb0,0xe5,0x35,0x22,0x42,0x40,0x09,0x91,0xa5,0xeb,0xbf,0xea,0x68,0x7a,0x9d,0xd8,0x7a,0x27, - 0xfb,0x18,0xaf,0x84,0xca,0xd7,0xc5,0xdb,0xa4,0xc5,0xa1,0xe6,0xdb,0xe4,0x24,0x1d,0x76,0x59,0x15,0x38, - 0xaf,0xf7,0x92,0x63,0xc7,0x7f,0xaf,0xa0,0xf4,0xca,0x40,0xe9,0x15,0x41,0xe9,0x8b,0xe6,0x3c,0x95,0x2d, - 0x78,0x6c,0xc2,0xcf,0x07,0xc4,0xa3,0xef,0xf3,0x4f,0xc7,0x8f,0xad,0x28,0xf4,0x55,0xfa,0x7e,0x99,0xa9, - 0x2c,0x2b,0xb6,0xb2,0x95,0x2d,0x42,0x57,0xc7,0xaf,0xc2,0x33,0x73,0x26,0xff,0x54,0xa9,0x76,0x9b,0x9c, - 0xc0,0x6d,0x36,0xe3,0x35,0x5b,0xd9,0xaa,0x4d,0xcc,0xed,0x65,0xc2,0xbe,0xc4,0x10,0x69,0xf9,0x9b,0x44, - 0xc5,0x8f,0x64,0x9f,0xb1,0x8e,0xff,0x9a,0x7e,0x0b,0x81,0xc5,0x3f,0x5f,0x35,0xb2,0x7f,0xac,0xfd,0xa6, - 0x9b,0xc4,0xf1,0x9f,0xd6,0x6b,0xfc,0x62,0xff,0x44,0x81,0xfe,0x4b,0x08,0xff,0x8d,0x9f,0x06,0xe5,0xc0, - 0x0c,0x3c,0xaa,0xd5,0x8c,0x45,0x1e,0x98,0x02,0xd7,0x0c,0x64,0x8d,0x62,0x2e,0x46,0x64,0x45,0xc0,0xb4, - 0xc6,0x75,0xdd,0x48,0xfd,0x3a,0xc5,0xe3,0xe4,0x66,0xc7,0xf6,0xe8,0xb6,0xf7,0x5b,0x2f,0xe5,0x3e,0x35, - 0xdd,0x3e,0xa9,0xcf,0xf5,0xba,0x9e,0xc8,0x9d,0x8a,0x16,0xc2,0xcf,0x58,0xe5,0x81,0x6a,0x16,0x6c,0x2a, - 0x9d,0x6e,0x53,0xee,0x1b,0x10,0xb7,0x1f,0xcc,0xec,0x41,0x48,0xe4,0x4a,0x09,0x2f,0xa8,0xdc,0x21,0xb4, - 0x5e,0xa8,0x78,0x32,0xff,0x09,0x68,0xe9,0xdc,0x35,0x01,0x3b,0x56,0xc4,0xa3,0x78,0xae,0xbf,0xda,0xf5, - 0x0e,0xfc,0xef,0x2c,0xf4,0xb4,0x11,0xd3,0x41,0xa8,0xbc,0xf7,0xd6,0x5d,0x0f,0xda,0xae,0x64,0x31,0xd8, - 0xfb,0x1a,0x75,0x01,0x35,0x57,0x2b,0x94,0x02,0x47,0x73,0x13,0x47,0xe4,0x12,0x39,0xa3,0xee,0x8b,0x2a, - 0xf2,0x6d,0x03,0x31,0x2e,0xa9,0x5f,0x43,0xe5,0x7e,0x65,0xa1,0x3a,0x22,0x2d,0x2b,0x03,0xa7,0xd6,0xe8, - 0xba,0x1e,0xbc,0x08,0x99,0x67,0x12,0x55,0x25,0x8c,0x7a,0xd0,0xd7,0xa2,0x3c,0xf9,0x01,0x01,0x30,0x0a, - 0xe2,0xda,0x3d,0xe2,0x8e,0xfc,0xf6,0xc6,0xf4,0x19,0x2f,0x30,0x22,0xc2,0x0f,0x2e,0xdc,0x71,0x6c,0xda, - 0x1e,0xda,0xaa,0x3b,0x71,0x3f,0x6a,0x31,0xc5,0x91,0xe8,0xd1,0x2d,0x39,0xfa,0xc1,0xbc,0x74,0x33,0x65, - 0x1c,0xc8,0xa3,0xcc,0x42,0x3b,0x14,0xab,0x52,0x57,0xca,0x08,0x3d,0x65,0x8f,0x2e,0x7b,0x9a,0x04,0xd0, - 0x68,0xaa,0xdb,0xcd,0xbc,0x2a,0xf5,0x24,0x1b,0xba,0xcb,0x84,0x16,0xb9,0xaf,0x0c,0x0d,0x22,0xad,0x18, - 0x34,0x82,0x72,0x0a,0x5e,0x8d,0x69,0xcc,0x6b,0xb3,0xc6,0xfe,0x8e,0x44,0x4a,0x90,0x5f,0x7a,0x71,0x65, - 0xc9,0xfd,0x89,0xe5,0x57,0x9b,0x83,0x56,0x12,0x29,0x46,0x7b,0x7d,0xe1,0x0d,0x5c,0x6e,0x09,0x62,0xf7, - 0x62,0xf0,0x7e,0x83,0x6c,0x46,0xb2,0x7f,0xe1,0x05,0x8d,0x1c,0xf7,0x02,0x62,0xf1,0x39,0x1e,0x1d,0x16, - 0xd4,0xe5,0x04,0x8b,0x5a,0xf2,0xa2,0x8e,0x65,0x85,0x47,0xf0,0xf1,0xc2,0x43,0xa4,0xa1,0x04,0xa9,0x6b, - 0x79,0x83,0x36,0x5d,0xbe,0x6f,0x92,0xc8,0xe2,0xc9,0xb9,0x51,0xb7,0x51,0xb8,0x22,0xc6,0xdb,0x4a,0x5b, - 0xbe,0x84,0x0b,0x7e,0x43,0xb9,0x2d,0xb5,0xb1,0x94,0x0a,0xf9,0x2e,0x50,0x2a,0x92,0x5e,0xac,0xaa,0x7e, - 0x4c,0xf1,0x5b,0x8b,0xb5,0xa6,0x86,0xda,0x34,0x42,0xd6,0x6d,0x13,0x14,0xa0,0x17,0x34,0x61,0x2f,0x52, - 0x63,0xd1,0x8e,0x9b,0xb3,0x1b,0x27,0x26,0x22,0x3d,0xdf,0x98,0x8d,0x58,0x67,0x6a,0xa4,0x14,0x5b,0x6f, - 0xb5,0x96,0x1f,0x87,0x6b,0xb7,0x8e,0xa6,0x88,0x96,0xdf,0xd7,0x79,0x04,0xa9,0x43,0x7b,0x63,0x93,0xf7, - 0x31,0x87,0x52,0x35,0x2d,0x2f,0x2c,0xba,0x64,0x23,0x6a,0x5e,0x5d,0xfb,0xb6,0xac,0xe0,0x30,0xf1,0x22, - 0x97,0x55,0x8a,0x53,0xb5,0xb6,0xfc,0xd8,0x04,0x45,0x43,0x26,0x0e,0x72,0xbd,0xfa,0x18,0x52,0xad,0x73, - 0x2e,0xbc,0xb1,0x57,0xca,0x81,0x4d,0xac,0x5d,0x75,0x5b,0x7e,0xa4,0xb5,0x77,0x8c,0x7e,0x9b,0xe1,0x9b, - 0xd7,0x6a,0x1a,0xa8,0x8e,0x5a,0x15,0xee,0x5e,0xc2,0x58,0x59,0x6e,0xa4,0x65,0xeb,0xeb,0x16,0x6c,0x97, - 0x6a,0x50,0xd5,0x24,0x73,0x4f,0xa7,0x11,0x95,0x83,0xa3,0xc6,0xe8,0xef,0x5a,0x87,0x73,0x56,0x98,0x86, - 0xf6,0xe2,0x5a,0x15,0xa3,0x5f,0xfa,0x53,0x8a,0xfb,0xc8,0x4b,0x34,0x44,0xb5,0x6d,0xec,0xdc,0x60,0x5a, - 0x41,0x61,0x50,0xf7,0x36,0x8e,0x04,0x3d,0xef,0x7d,0x9d,0x79,0x51,0x6b,0x0d,0x32,0x4f,0x16,0xba,0x9a, - 0x42,0x8c,0x00,0x42,0xa8,0x5f,0x59,0x57,0x02,0xbf,0xb0,0x65,0x92,0x79,0x9b,0x28,0x54,0xbb,0xd8,0x96, - 0x6d,0x0d,0xfb,0x55,0xb0,0x21,0x20,0xfb,0xf0,0x1c,0x21,0x3a,0x53,0x76,0x65,0xae,0x1a,0xd6,0x3f,0x8d, - 0x73,0xc4,0x3f,0xd7,0x51,0xb5,0x08,0x17,0xb6,0x67,0x47,0xb5,0xdd,0xf9,0xa3,0x30,0xe1,0x3d,0x88,0x5c, - 0x0e,0x8e,0x93,0xf9,0xf5,0xb8,0x45,0x4b,0xb3,0x70,0x1c,0xad,0xc7,0xbe,0x39,0x12,0x01,0x5c,0x8c,0x29, - 0xa9,0xee,0x03,0x0c,0x50,0x31,0x45,0x98,0x50,0xe5,0xf2,0xec,0x52,0x27,0x57,0x3b,0x9f,0x7a,0x26,0x91, - 0xa8,0x41,0x15,0x78,0x45,0x36,0xa7,0x0a,0xbc,0xae,0x22,0xfa,0xb0,0xe7,0xff,0xa6,0xed,0x23,0x06,0xbe, - 0x74,0xad,0x70,0x10,0xf9,0xd0,0x1a,0xfb,0x55,0xfd,0x46,0xa9,0xe6,0xaa,0xae,0x41,0x76,0x01,0x57,0x8a, - 0xcf,0x2e,0xfa,0xc3,0xd0,0x3b,0x70,0xa7,0x78,0x9b,0x5b,0xe2,0x5e,0x0c,0x10,0xe0,0x08,0x4a,0x41,0x36, - 0x3e,0x9b,0x0a,0x50,0xcb,0x40,0x61,0xbc,0xa9,0x10,0x9b,0x67,0xa2,0x13,0x85,0x97,0xea,0xd6,0x36,0xc1, - 0x64,0xfb,0x6a,0x9d,0xbc,0x81,0x65,0x41,0xdb,0x0d,0x93,0xa0,0xa9,0xda,0x5c,0x53,0x08,0x26,0xb2,0x69, - 0x7f,0xdf,0xaa,0x80,0xb7,0xb1,0xb8,0x8a,0x30,0x55,0x65,0x84,0xb4,0xa9,0x6b,0x57,0xdf,0x44,0x74,0x18, - 0x5a,0xed,0x6c,0x79,0x77,0x00,0x74,0x4a,0x09,0x82,0x7f,0xea,0x1b,0x72,0x8a,0x68,0x19,0x9e,0xaf,0x8f, - 0x68,0x6d,0xfc,0xea,0x88,0x4a,0x1a,0x8e,0x28,0x16,0xa0,0x2f,0xbd,0xd8,0x27,0xb4,0x54,0x81,0x77,0x51, - 0xcc,0xd3,0x11,0xaa,0xa0,0xe7,0xcd,0x47,0x28,0x93,0x01,0x5a,0xdb,0x03,0xf5,0x66,0x90,0x2f,0x85,0x04, - 0xe4,0x22,0x58,0x4f,0x74,0x9c,0xcd,0x84,0x71,0x7a,0x8e,0x7f,0x59,0xdf,0x05,0x91,0x5c,0x37,0xfc,0x5e, - 0x7a,0x74,0x0e,0x93,0x9a,0xe7,0x4c,0xed,0xdd,0x6a,0xec,0x0d,0xce,0xdc,0x5c,0xd6,0x03,0xb1,0x85,0x93, - 0x56,0xaf,0x99,0x87,0x86,0xf9,0x23,0xaa,0xcc,0x78,0xf6,0x64,0xa0,0xcd,0xed,0x9f,0x09,0x3b,0x17,0x0d, - 0x25,0x52,0x18,0x2e,0x2c,0x2e,0x2d,0xfe,0x3c,0x09,0x00,0xe4,0xe7,0x1b,0x26,0x6f,0xbc,0xa4,0x45,0xcf, - 0x25,0x6f,0xc1,0xa8,0x86,0x5f,0x9c,0x21,0xc2,0xb0,0x1c,0xaa,0xd2,0x5d,0xf0,0x2a,0xce,0xc2,0x45,0xb5, - 0xa4,0xb3,0x70,0x66,0x3c,0x06,0x50,0xc2,0x0c,0x6b,0x26,0x04,0xee,0x18,0x0d,0x6b,0x52,0x62,0x6e,0xd9, - 0x8f,0xca,0x21,0x42,0x5b,0x13,0x9c,0x51,0x86,0xfd,0x19,0x6d,0xec,0x8c,0x36,0x56,0x38,0xa9,0x6a,0x63, - 0x67,0x9e,0x4e,0x3b,0x99,0x0d,0xa5,0xed,0x96,0x01,0x48,0x09,0xd3,0xfd,0x3a,0x76,0x13,0xb9,0x42,0x06, - 0xa5,0x3b,0xe6,0x52,0x73,0x6f,0x30,0x86,0xc3,0x00,0x8b,0x9a,0xd3,0x1e,0x64,0x8b,0xea,0x06,0x50,0x51, - 0x15,0x89,0xfd,0x1d,0xd3,0xff,0xf3,0xb0,0x72,0xd0,0xe2,0x2f,0x43,0x48,0x00,0xfc,0x29,0xfd,0x99,0x0f, - 0xfd,0x73,0xa3,0xb1,0x4d,0x59,0x67,0x61,0x82,0xac,0x6b,0xfa,0x73,0x3e,0xf4,0x8f,0xc3,0x9d,0xa2,0x3f, - 0x79,0x84,0xae,0xc6,0x8f,0xc2,0x73,0xba,0x9b,0xdc,0xa5,0x37,0x40,0xf5,0x6e,0x77,0x32,0x0c,0x62,0x97, - 0xce,0x30,0x5a,0xd9,0xdf,0x9f,0x0f,0x83,0x5f,0x28,0xd3,0x3f,0xa3,0x43,0x7d,0x83,0xbf,0x20,0xce,0x74, - 0x41,0x6e,0xb5,0xdb,0x1d,0x0f,0x3d,0x14,0x9a,0xfa,0xd7,0x5c,0x88,0xfe,0xa2,0x90,0xae,0xcf,0x7d,0xee, - 0xef,0x9f,0x4b,0xa1,0xa5,0x2a,0xb4,0x94,0x42,0xc7,0x1b,0x74,0x40,0xea,0x2f,0xd5,0xbd,0x6b,0x89,0xe2, - 0xdc,0xa9,0xa0,0x90,0xaa,0xe7,0x5a,0xa3,0x53,0x35,0xbc,0xa9,0x0c,0xaf,0xad,0x51,0x6e,0x40,0x9a,0xb6, - 0x86,0x56,0x8d,0xdf,0x8d,0xc5,0xdd,0xc5,0x28,0xfc,0x19,0x96,0xed,0x13,0x7f,0x0e,0x45,0x40,0x17,0x04, - 0xfd,0x19,0x47,0x25,0x1d,0x8c,0x4e,0xf8,0x63,0xd8,0xe2,0xe6,0xc3,0x90,0xda,0xe1,0x84,0x68,0xe1,0xa4, - 0x9f,0x69,0x16,0x1d,0xe8,0x31,0x1b,0x6a,0x1e,0x61,0x6f,0xef,0x17,0xd0,0x39,0x91,0xa1,0xe0,0x33,0xa2, - 0x71,0xcf,0xa8,0x89,0x43,0xf4,0x36,0x88,0xe8,0x3b,0xf3,0xd5,0xfc,0x79,0x5e,0x0b,0x1a,0xe7,0x6c,0xa8, - 0x26,0xb7,0x90,0xc9,0x21,0x45,0xfb,0xb2,0x6d,0x9b,0xe8,0xc2,0x9a,0xa8,0x17,0xd4,0xdb,0xac,0xe6,0xdb, - 0x9f,0x3c,0x9e,0x43,0x75,0x9e,0xa6,0x48,0x00,0xd1,0x3d,0x1a,0x7a,0x12,0x90,0x51,0x7e,0xa8,0x43,0x3f, - 0xf6,0xcf,0x71,0xf0,0xc7,0x8f,0xcf,0xf7,0xf6,0xae,0xdc,0x43,0x5f,0x96,0x65,0xed,0x8e,0x38,0xa2,0x27, - 0x80,0x32,0x60,0xa0,0x05,0x85,0x57,0x91,0x50,0x75,0x71,0x28,0x15,0xc6,0x3d,0x7d,0x41,0x7f,0x99,0xec, - 0x9a,0x63,0xb2,0x15,0x58,0x82,0x28,0x06,0xf8,0x0f,0xd0,0xfe,0x98,0xf2,0xc6,0x55,0xe4,0xc3,0xe0,0xce, - 0x66,0x03,0xc9,0xdf,0xe1,0x78,0x35,0x7c,0xb7,0xb7,0x94,0x53,0xa7,0xcc,0xdf,0x8e,0x19,0xb2,0xa2,0xac, - 0xa3,0x86,0xb5,0x75,0x55,0x9d,0x0b,0x17,0xc2,0xe8,0x15,0x8c,0x27,0x6a,0x99,0xf0,0xd2,0x9e,0xfe,0x6a, - 0xa3,0xac,0xf3,0x3a,0xd9,0x23,0x8c,0x52,0x6e,0xf3,0x47,0x39,0x01,0x47,0x85,0xfd,0xd5,0x4e,0xba,0x39, - 0x7b,0x52,0x35,0x03,0x38,0x6b,0x30,0x9e,0xfe,0x08,0x51,0x9a,0xa2,0x29,0x22,0xab,0x6b,0x7e,0x28,0xaf, - 0xc7,0x19,0x0a,0xb3,0xd5,0x6a,0x46,0x93,0x01,0xd2,0xf3,0x73,0x21,0xed,0x7d,0x41,0xc8,0x9a,0x6f,0x91, - 0x8b,0xcb,0xc6,0xfb,0x06,0x2a,0xdb,0xae,0x09,0x68,0x56,0x13,0xae,0x67,0x40,0x9e,0xa9,0xab,0x9e,0x96, - 0xae,0x9d,0x81,0xcd,0xc5,0x54,0x90,0x12,0x5b,0xb0,0xb6,0x67,0xf1,0xaf,0x58,0x57,0xd3,0xec,0xc8,0x53, - 0x04,0xc1,0xc4,0xe3,0x00,0xd3,0x70,0xe1,0xc5,0x84,0x38,0xa8,0xee,0xc2,0xe5,0x44,0xee,0xd5,0x74,0xa8, - 0xc3,0xc4,0x59,0x23,0x50,0xf1,0x50,0xa4,0xa9,0x88,0x29,0xbf,0x2a,0xd1,0x84,0xdf,0xe0,0x8b,0x43,0xef, - 0xcb,0x1c,0x73,0x03,0x17,0x39,0x49,0xf2,0xa2,0xe4,0x1e,0x09,0xcd,0x1c,0xf6,0x97,0x8f,0x26,0x7a,0xaf, - 0x96,0xda,0xb5,0xdd,0xc5,0x6a,0xb5,0x73,0x46,0xfc,0xe2,0xe4,0x64,0x39,0x54,0x9c,0xe9,0x1c,0x66,0xe4, - 0xc2,0xca,0x5e,0x84,0x17,0xb5,0xf7,0x03,0xd4,0x98,0xaf,0x56,0x17,0xf5,0x8e,0x89,0x8b,0xc1,0x41,0x4a, - 0x3c,0xbd,0x9a,0xb2,0xaf,0x57,0xb6,0x9b,0x95,0x29,0xa4,0x79,0x33,0xcc,0x78,0xe7,0x09,0xe1,0x62,0xef, - 0xf6,0x0a,0x83,0x1c,0xcb,0xdd,0x22,0x9d,0xed,0x5c,0x61,0x83,0x59,0xb3,0x04,0xce,0xe1,0xd4,0xa7,0x76, - 0x33,0x29,0x44,0xc5,0x0e,0x07,0xf4,0xe2,0x83,0xa1,0x08,0x2c,0xf5,0x5b,0x3f,0x7b,0xed,0x48,0x98,0x98, - 0x6b,0xff,0xd8,0xbf,0x84,0x90,0xfa,0x19,0x62,0xc7,0x67,0xe3,0xc5,0x2c,0x2e,0xfc,0xf7,0xf4,0x0d,0x1a, - 0xe7,0x8d,0x52,0xfb,0xba,0xa6,0x35,0xb9,0x7e,0x74,0x95,0x54,0x00,0x7c,0xcd,0x64,0xe5,0xe5,0xc9,0x55, - 0x72,0x72,0x3d,0x1c,0xb2,0x13,0x48,0x8e,0xc5,0xfa,0xac,0x2a,0x72,0x4c,0xe4,0xc5,0xb3,0x93,0xe3,0xa1, - 0x2a,0x43,0x3b,0xa5,0x8b,0x0b,0x7f,0x61,0xe7,0xf1,0x85,0xfc,0x84,0xf5,0x46,0xf0,0xae,0x26,0x5a,0x33, - 0x2a,0x78,0xd8,0x33,0xeb,0xfb,0x1d,0x0b,0x5b,0x09,0x15,0xb7,0xb8,0x27,0x54,0xb7,0x25,0xc2,0xb3,0x29, - 0xef,0x4b,0x7c,0x7b,0x8b,0x87,0x18,0xf8,0x53,0x85,0x81,0x36,0xa0,0x0b,0xf6,0x9a,0x0b,0x2c,0x6a,0xe4, - 0x02,0xd1,0xa1,0xbc,0xe5,0x72,0x34,0xc4,0xe1,0xc0,0xe4,0x8f,0xd9,0xe3,0x13,0x6f,0x24,0x63,0x6f,0x6c, - 0x80,0x27,0x34,0xd7,0xd8,0x57,0x61,0xce,0xd1,0xcf,0x9c,0x7b,0x93,0x08,0x6a,0xba,0x1e,0x5c,0xf0,0x10, - 0x0c,0x57,0xfc,0xc4,0x7b,0x56,0xca,0xd2,0xd4,0x5d,0x2d,0x1d,0x56,0xdc,0xf0,0xee,0xe9,0x66,0x54,0xe4, - 0x4c,0xda,0x37,0x07,0xe5,0x9c,0x87,0x88,0xfc,0xbc,0xff,0x26,0xcc,0xfd,0x5c,0x3f,0xc7,0xbc,0xd7,0x8f, - 0x50,0xee,0x9b,0x46,0xfc,0x19,0x79,0xa6,0x51,0x92,0x43,0xff,0x8d,0xd8,0xbd,0x5d,0x08,0x31,0x48,0xd7, - 0x5f,0x4d,0x50,0x76,0xc1,0x13,0x94,0x75,0xb8,0xe8,0x9d,0x89,0xc0,0xf6,0x5c,0xee,0x83,0x69,0xe3,0x1e, - 0xbe,0x80,0xda,0x2f,0x11,0x2e,0x1a,0xff,0x69,0x80,0xbd,0x0e,0x75,0x1a,0xc1,0x00,0x28,0xa6,0xfe,0x75, - 0xbf,0xba,0x17,0x9f,0x11,0x58,0x3c,0x6b,0xe3,0x5d,0x9e,0x59,0xbc,0xcb,0xb3,0xa1,0x7b,0xcd,0x23,0xb9, - 0x16,0x97,0xf7,0x3c,0xd4,0xe3,0xaa,0x91,0x27,0xd4,0xc8,0x93,0x16,0xce,0xf7,0x49,0xc5,0xf9,0x3e,0x61, - 0xce,0xf7,0x5a,0x20,0xe9,0x5d,0x78,0xbd,0x81,0x5b,0xd1,0xfc,0xbb,0x1e,0xab,0x09,0x57,0xb6,0x0e,0xbb, - 0xe1,0x51,0x7f,0xf7,0xd1,0x3b,0x62,0x11,0x8d,0xa9,0xca,0x2e,0x1c,0x4a,0x23,0xe1,0x64,0x77,0xa8,0x69, - 0xef,0xa7,0x31,0xc6,0x77,0x4d,0xad,0xaa,0xe8,0xb6,0xf0,0xea,0xca,0xf7,0x16,0x58,0xbe,0x43,0xff,0x50, - 0x5d,0x58,0xc4,0xff,0xc0,0x19,0x70,0x5e,0xd9,0x88,0xc9,0xfe,0x2d,0x3c,0x9f,0xe7,0xc4,0x5b,0xf1,0x06, - 0xa4,0xbf,0x29,0xe7,0xde,0xaa,0x83,0x16,0xcc,0x13,0x5f,0x9d,0xbf,0xe0,0xe4,0x8c,0xa6,0x92,0xf8,0xef, - 0x13,0xff,0x49,0xe2,0xff,0x9e,0xf8,0x6f,0xd3,0x81,0x96,0xe6,0xbf,0x2d,0x7d,0x2d,0x58,0xc3,0xb7,0xc0, - 0x53,0xe3,0xf9,0x6f,0x47,0x22,0x7a,0x89,0x79,0xc5,0x45,0x76,0x3d,0xd8,0x2d,0x25,0xae,0x19,0x1c,0x66, - 0xae,0x83,0xdb,0xf5,0x50,0xbb,0x54,0x3e,0x4f,0xe0,0xbf,0xfc,0x9b,0x94,0x68,0x41,0xfd,0xc8,0xb1,0x19, - 0x58,0x44,0xde,0xc7,0xa9,0xf5,0xd1,0x45,0x94,0x4e,0x63,0xc7,0xb6,0x47,0x15,0x2d,0xfc,0xaa,0x32,0x4b, - 0xe9,0x95,0x70,0xad,0xcf,0x4a,0xbe,0x4b,0x15,0x07,0xf1,0x15,0xc6,0xa0,0xf4,0xcd,0xb4,0xd3,0xf4,0x3f, - 0x12,0xb8,0x4f,0xc3,0xee,0xc4,0xe3,0xc6,0x83,0x28,0x84,0x48,0xfa,0x65,0xde,0x84,0x76,0x14,0x9e,0x64, - 0x6f,0x6f,0x87,0xff,0x12,0x23,0xa6,0xf4,0x2b,0x07,0x3f,0xb8,0x88,0x9d,0xa2,0x2f,0xf3,0xda,0x08,0xff, - 0xb0,0x58,0x0a,0xb1,0xe7,0x1a,0x2b,0x51,0xd2,0xda,0x0b,0x9e,0x97,0xf2,0x6d,0x7b,0x7a,0x32,0xad,0x12, - 0xbe,0x40,0xc8,0x35,0x31,0x3f,0x31,0x9a,0xaa,0xfe,0x4b,0xf8,0x40,0x12,0xb5,0x05,0x68,0x8e,0x98,0xd1, - 0xad,0x56,0xe3,0xc4,0x95,0xa8,0x71,0xec,0x80,0x02,0x2d,0xbd,0xd2,0x81,0x62,0xc3,0xb2,0x0a,0x1a,0xeb, - 0x5b,0xdf,0xec,0xcd,0x91,0x75,0x8a,0x37,0xd7,0x5d,0x2f,0xf7,0x6b,0x1a,0xd6,0xab,0x74,0x5b,0x21,0xcc, - 0x4d,0xa4,0xb2,0x84,0x22,0xe1,0x9f,0xff,0x1b,0x9e,0xc5,0x07,0x4b,0xf2,0xcb,0x07,0x35,0x8b,0x58,0x3b, - 0x3c,0x52,0xd9,0x24,0xe0,0x21,0xbc,0x09,0x37,0xd7,0x6b,0xe3,0xad,0x9a,0x63,0xaf,0xd7,0xf7,0xc6,0xbb, - 0xdd,0x58,0xcb,0xbe,0x7e,0xb3,0x34,0x2b,0x2a,0x6a,0xd4,0x77,0xaf,0x6f,0x3f,0x69,0x46,0xff,0xab,0x54, - 0x23,0x76,0xa0,0x54,0xce,0xae,0x2b,0xd7,0xb2,0xca,0x5a,0xbd,0x62,0x50,0x8a,0xbd,0xf4,0xd6,0xc0,0x81, - 0x2f,0x30,0x40,0x00,0x7c,0xa0,0x4a,0xf2,0xe3,0x38,0xd1,0x38,0x3f,0xe3,0xc7,0xde,0x1e,0xe5,0xab,0x0c, - 0x60,0x7a,0x0d,0xb1,0x6a,0x17,0xd8,0x3f,0xe3,0xbf,0x09,0x5e,0x25,0x94,0xe7,0x1f,0x89,0x8f,0x93,0x15, - 0x88,0x2e,0x6c,0x73,0x7d,0x94,0xa5,0xb1,0x6e,0x0c,0x9e,0x18,0x7e,0xe4,0xa7,0x51,0xa5,0x5a,0x22,0x6e, - 0x53,0x2c,0x81,0xba,0x0f,0x7d,0xf1,0x33,0x5a,0x99,0x3c,0x99,0xc2,0xff,0xeb,0xf3,0xa4,0x80,0x72,0x64, - 0xe8,0xa4,0xb4,0x0f,0x4a,0xe7,0x8e,0xdf,0x54,0xc7,0x92,0x81,0x28,0xf0,0x8d,0xa4,0x7e,0x4e,0x9c,0xf6, - 0xc0,0x4d,0xab,0x63,0x8f,0x2b,0xee,0x1d,0x75,0x6b,0x9f,0x86,0x46,0xa5,0x30,0x5b,0x7b,0x5e,0xb3,0xa5, - 0x30,0x1f,0x64,0x81,0xf4,0xdc,0xaa,0x5f,0xb0,0x31,0xc3,0x7e,0xde,0x58,0x49,0xf7,0xce,0x09,0x6f,0x0c, - 0x34,0x1f,0xdc,0x35,0xd4,0xb6,0x05,0xa2,0xbd,0xdc,0xbd,0xa3,0x9a,0x9a,0x48,0xeb,0x34,0xdb,0x9a,0x54, - 0x33,0x87,0x6a,0x45,0xda,0xb2,0xb9,0x8a,0x21,0xe0,0xd3,0x78,0xf7,0xf8,0x18,0x6a,0x7e,0x20,0xa8,0x61, - 0xa3,0x30,0x65,0xd9,0x05,0x41,0x73,0x94,0x07,0x4f,0xb3,0x0c,0x2e,0x70,0xfd,0x51,0x51,0x98,0x6f,0x00, - 0x97,0x2e,0x06,0x44,0xa2,0xbf,0xad,0xd7,0x59,0x95,0x62,0xbd,0xad,0xda,0x65,0xf4,0xbb,0xaa,0x5d,0xaa, - 0x91,0xb6,0xf1,0x70,0x6b,0x97,0x6d,0x49,0x97,0xe1,0xb6,0x24,0x6d,0x2d,0xdb,0xe8,0x70,0xbc,0xc8,0xf9, - 0x5d,0x30,0x38,0x11,0x9b,0x36,0x5f,0xa5,0x8b,0x62,0xc7,0x70,0xed,0x7f,0xaf,0x17,0xa8,0xf6,0x58,0x2b, - 0x96,0x72,0x3f,0x24,0x35,0xf3,0xb9,0xa6,0x1d,0x98,0xe5,0x3c,0x4d,0xac,0xb8,0xb4,0xf5,0x56,0xdd,0x26, - 0x8c,0x59,0x23,0x82,0x4b,0x3c,0x63,0xc9,0x4b,0x7d,0x7b,0x68,0x3f,0x46,0xe3,0xbf,0x42,0x4a,0x48,0xa0, - 0x5b,0x8f,0xd8,0x2a,0x66,0x51,0x78,0x1a,0x2b,0x4c,0xf4,0x56,0xbb,0x0d,0x11,0xfe,0x87,0x9a,0x2b,0xec, - 0x7b,0x95,0x1f,0x4b,0xeb,0xe1,0xcc,0xd0,0xde,0xb6,0xe9,0x68,0xc5,0x16,0xf5,0x45,0x7c,0xf7,0xb4,0x64, - 0xcf,0x3a,0x44,0x7a,0x8e,0xaa,0x2c,0xed,0x5f,0x95,0xa9,0x34,0x5a,0x3f,0x9d,0xf3,0x33,0xd0,0x54,0xe1, - 0xa9,0x88,0xec,0xce,0xd9,0x59,0xd5,0xdd,0xbe,0xd3,0x35,0xee,0xe4,0xba,0xce,0xbe,0xd3,0x1f,0xb1,0x28, - 0x4e,0x14,0x6d,0xf9,0x7b,0x30,0xb2,0xc2,0x9b,0xce,0xba,0xb8,0x24,0xf0,0xe9,0x04,0xb3,0xee,0x88,0x0d, - 0xd1,0x72,0x77,0x24,0x32,0x10,0x3c,0x42,0xab,0xf7,0x0f,0x49,0x31,0xe6,0x44,0x33,0x6f,0xc0,0x29,0x5c, - 0x07,0x7f,0xf9,0xdf,0xbe,0x10,0xde,0x54,0x78,0xcc,0x6e,0x8d,0xd4,0x07,0xac,0x66,0x3c,0x6b,0x45,0xc2, - 0x5f,0xb4,0x5d,0xd1,0xa4,0x66,0xeb,0x3e,0xc6,0x22,0x4c,0x78,0x11,0xa4,0xa2,0x15,0x69,0x7e,0x6f,0x6f, - 0x23,0x69,0x1b,0xd2,0x77,0x80,0x5f,0x04,0x81,0x02,0xc2,0xf8,0xca,0x18,0xd5,0x30,0x8f,0xe7,0x8f,0x89, - 0xfa,0x51,0x78,0xca,0x2d,0xc3,0x11,0x1c,0xb0,0x8c,0x3d,0x4c,0x61,0x47,0x99,0xea,0xc1,0x88,0x87,0xd6, - 0x82,0x7f,0x0a,0x8d,0xb7,0xf3,0x2b,0xcb,0xed,0xdc,0x9d,0x71,0x9b,0x87,0xd7,0xb6,0x54,0xed,0xd2,0xb3, - 0x62,0xc3,0x3d,0xc5,0x6f,0x8c,0x9b,0x40,0x22,0xd6,0x22,0x0b,0x9e,0xbb,0x93,0x2d,0xca,0xfd,0x84,0xb5, - 0xf7,0xa3,0xba,0xdf,0x06,0x05,0x05,0xc0,0x9d,0x3f,0xb8,0x73,0xdf,0x89,0x26,0x04,0xd5,0x2f,0x45,0xc5, - 0xc2,0x36,0x34,0xb7,0x4a,0x1e,0x11,0x15,0x5a,0xf7,0x63,0xb9,0xf6,0x7c,0x0d,0x3e,0xe8,0x2c,0x49,0xf7, - 0x33,0x31,0x07,0x90,0x27,0xf1,0x5f,0xc1,0x99,0x6b,0x3e,0x8b,0x37,0xf4,0xc2,0xbf,0xaa,0xc5,0x56,0x80, - 0x07,0xf6,0x1f,0xdc,0x85,0xea,0xfe,0x6b,0xd1,0x1a,0xb9,0xf2,0x7c,0x4e,0x13,0xac,0x85,0xd9,0xc3,0x1c, - 0x4d,0xa5,0xcf,0xa1,0x15,0x46,0xa8,0xb1,0x39,0x54,0xda,0x32,0xe2,0xc4,0xd7,0x15,0xe9,0x5c,0x00,0x77, - 0x7e,0x9b,0x60,0x35,0x00,0x88,0x0a,0x69,0xf0,0x6b,0xbe,0x85,0x5d,0x80,0x5e,0xbd,0xbe,0x18,0xf4,0x75, - 0xbe,0x65,0x16,0x56,0x1c,0xb8,0xff,0x93,0x90,0x4a,0xa5,0x4d,0x11,0x7c,0x9f,0xf8,0xd5,0xaf,0x6f,0xa1, - 0x19,0x1c,0xdc,0x0a,0x86,0xf9,0x36,0x69,0xc3,0x2a,0x0d,0x8b,0x76,0x46,0x0c,0xb6,0x85,0x88,0xec,0x99, - 0xc4,0xc7,0x9d,0x47,0x29,0x62,0xdf,0xb6,0x3b,0x3b,0xe2,0x4a,0xf3,0x3c,0x5e,0x1a,0x4f,0x85,0x62,0x1d, - 0xaa,0x25,0xcf,0x49,0x1b,0xbe,0x62,0x57,0xaa,0x59,0xbd,0x24,0x98,0xec,0xa8,0x3a,0x2e,0x05,0xf1,0x44, - 0xc5,0x23,0xc3,0x92,0x17,0x5a,0xee,0x38,0x0a,0x93,0x93,0x62,0xd8,0x1f,0x49,0xd8,0x68,0x8c,0x62,0x47, - 0x8e,0xfa,0xde,0x1e,0xd8,0x82,0xf6,0x23,0x4c,0x58,0x63,0x89,0xe7,0x10,0x07,0x40,0x9d,0x19,0x33,0xd1, - 0xf4,0x84,0xcb,0x0d,0x71,0x28,0xee,0x3a,0xc7,0x91,0x07,0xa1,0x87,0xe5,0x40,0x7c,0x86,0x01,0x2f,0x38, - 0x9e,0x09,0x0d,0x75,0x52,0x89,0xbf,0x26,0x7a,0xa8,0xe3,0x30,0x3f,0x99,0x0c,0xfb,0x9b,0x07,0x20,0xf2, - 0x55,0x1a,0x11,0xac,0x74,0x3e,0x40,0xeb,0x4f,0xe3,0xf2,0x69,0xb6,0x60,0x19,0xdb,0xb3,0x59,0x42,0x90, - 0xf5,0x23,0xad,0x35,0x5c,0xaf,0x9f,0x8c,0x79,0x88,0x83,0x99,0x8c,0x7a,0xec,0x05,0x0b,0xfd,0xb5,0x56, - 0xa6,0xb7,0xf3,0x32,0x64,0x85,0x4a,0x08,0x21,0xb5,0x79,0xb4,0x30,0x4e,0xe3,0x70,0x61,0x6c,0xc2,0x75, - 0x89,0x8c,0xae,0x7e,0xdb,0x2b,0xc7,0x86,0xe1,0x75,0xbb,0x87,0x01,0xd3,0x17,0x54,0x38,0x58,0x08,0x66, - 0x39,0xe8,0x30,0x99,0x9a,0xa0,0x1a,0x6f,0x31,0x65,0xb6,0x01,0x45,0x59,0xf4,0xf7,0x0c,0xc8,0x1b,0x97, - 0xfc,0x6c,0xd2,0xe5,0x2c,0x11,0xe8,0x79,0x9f,0x35,0x2d,0xfb,0x9a,0x29,0x56,0x66,0x4c,0x17,0x51,0xf1, - 0x8a,0xd2,0xdd,0x58,0x99,0xe5,0xfb,0xa5,0xd0,0xca,0x5a,0xbf,0xf0,0x27,0xe6,0x11,0xf4,0xaf,0xef,0x6a, - 0xbf,0xfe,0xd0,0x3e,0xfe,0xe1,0xb4,0x63,0x46,0x38,0xd2,0x70,0x77,0x50,0xcc,0xef,0x65,0x93,0x49,0x11, - 0x97,0xdf,0xc5,0xc9,0xf4,0xa2,0xb4,0x6a,0x35,0x35,0x16,0x65,0xff,0x78,0x8d,0x2b,0x07,0x61,0x18,0x09, - 0x2c,0x2a,0x99,0x70,0xea,0x5f,0x83,0x72,0xa3,0xce,0xf2,0x9e,0x51,0xfa,0x09,0xf3,0x9e,0xa5,0x1d,0xa5, - 0x52,0x2a,0xc0,0x78,0xae,0x28,0x09,0x8e,0x35,0xbd,0xc9,0xe2,0xfc,0x98,0xc0,0xf5,0x27,0x2f,0x57,0x15, - 0x68,0xb0,0x03,0x79,0xcf,0x2d,0x11,0xc7,0x3b,0x07,0xa6,0x9b,0x5d,0x15,0xaf,0x53,0x82,0x05,0xe9,0x30, - 0x5d,0x70,0xd4,0x96,0x2a,0xc0,0xd8,0x68,0x98,0x15,0x1e,0x74,0xdb,0x0c,0x27,0xc7,0x32,0x7c,0xb6,0x4f, - 0x07,0xd7,0xa4,0x3c,0xb4,0x05,0xb7,0x6a,0xf1,0x1b,0x4c,0x39,0x6e,0xf3,0x97,0x89,0x91,0x07,0x56,0xd7, - 0xb9,0x2a,0x5e,0xc7,0xee,0x2a,0xb1,0xaf,0x57,0x6e,0x84,0xd7,0x32,0x16,0xd9,0x78,0xb4,0xd7,0xd6,0x15, - 0xcf,0x80,0x81,0x2b,0xb1,0x2d,0xb5,0x75,0x77,0x6e,0x4a,0x51,0x84,0xf2,0xfc,0xa9,0xda,0x80,0xb4,0x95, - 0x64,0x36,0xce,0x30,0x6a,0x9a,0x11,0xa9,0x66,0xeb,0x9e,0x89,0x16,0xaa,0x6d,0x48,0x47,0x45,0x6b,0xea, - 0x56,0x1a,0x8e,0xd4,0x64,0x42,0x96,0x89,0x99,0x9d,0x5d,0xc3,0x3c,0xfc,0x6b,0x7e,0xad,0x9f,0x24,0xd3, - 0x9e,0x15,0x10,0x37,0x8c,0x13,0xbf,0xca,0xa8,0x85,0xe2,0x0d,0x17,0xed,0x59,0x90,0xa8,0x85,0xff,0xca, - 0xad,0xbc,0x46,0x28,0xde,0xf0,0x55,0x5c,0xab,0x58,0x8f,0xdd,0xbb,0x11,0x1a,0xe5,0x6d,0x45,0xaa,0x61, - 0xa7,0x16,0xb0,0x63,0xa8,0xed,0x1d,0x28,0xbd,0xba,0xd8,0x4d,0x50,0xed,0x84,0x5d,0x47,0xea,0x3b,0x13, - 0x3f,0x94,0xcd,0xf1,0x5d,0x66,0x08,0x6c,0x44,0xad,0xb0,0xf1,0xbe,0x03,0x0b,0xed,0x01,0x57,0x67,0xcf, - 0xe5,0x95,0x9d,0xaf,0xd1,0xf4,0x83,0x58,0xbb,0x3e,0x09,0x38,0x42,0xde,0x5a,0xd4,0x58,0x48,0x70,0x9b, - 0x07,0x9b,0xb5,0xd5,0x91,0x28,0xed,0x38,0x4d,0x6b,0x7f,0x09,0xab,0x4a,0xe3,0x43,0xd1,0x90,0x5b,0xc4, - 0x09,0x7b,0xf5,0x3c,0xcb,0x78,0xfd,0x9f,0x09,0x9b,0x4c,0x5a,0x2e,0x4b,0x34,0xc2,0x84,0x46,0xe1,0x77, - 0x49,0x30,0xad,0x67,0x8b,0xe3,0xb9,0xf6,0x00,0x59,0x31,0xd4,0x85,0xa8,0xd6,0x8f,0x50,0x39,0xd2,0x9e, - 0xe2,0x73,0x84,0x0d,0x0a,0x4b,0x10,0x6a,0x7c,0x17,0xb2,0x27,0x1f,0xf8,0xf0,0x35,0x8a,0x1d,0x72,0xa1, - 0xf3,0x79,0x6e,0xa4,0x85,0x71,0xce,0x7e,0x60,0xd2,0x7a,0x44,0x6c,0xf1,0x5a,0xff,0x2e,0xaf,0xf3,0x92, - 0xa9,0x76,0xe7,0xe4,0x1a,0x7f,0xc3,0xb4,0xd1,0x09,0xad,0xcb,0xd4,0x68,0x12,0xd1,0x48,0x08,0xe1,0x0b, - 0x49,0x9d,0x56,0x9e,0x61,0xd2,0x4d,0x2f,0xdc,0x69,0xcd,0x0b,0x77,0xda,0x37,0x5a,0x21,0x6b,0xac,0x87, - 0xf6,0x43,0xe0,0x5a,0xfd,0xef,0x42,0x15,0x44,0xc2,0x5e,0xef,0xed,0xfd,0x3b,0xc5,0xff,0x3d,0xb8,0xcc, - 0x02,0xa5,0x06,0x05,0xe6,0xaf,0x61,0x8d,0x71,0x28,0x27,0xf2,0xd7,0xc4,0xff,0x17,0x54,0x28,0x6f,0x4f, - 0x6f,0x5d,0x77,0x10,0xf4,0x56,0xa7,0xa9,0xd7,0x1d,0x78,0xa7,0xeb,0xd3,0xf5,0xc1,0xd4,0xff,0x0f,0xe8, - 0xbc,0xef,0xf7,0x3e,0xeb,0x0e,0x7e,0xdb,0xbd,0x5d,0xbb,0xde,0xea,0xe4,0x74,0x78,0x7a,0x70,0x7a,0x3a, - 0xa4,0xbc,0x38,0x6b,0x55,0x5c,0xe7,0xbb,0x43,0xeb,0x6c,0xff,0x47,0xe2,0x3b,0xa7,0xa7,0xbb,0x7b,0x58, - 0x28,0xca,0x39,0x6a,0xcb,0x31,0x0e,0x03,0x68,0x25,0xc5,0x43,0x8a,0x5b,0x76,0x1d,0x35,0x18,0x19,0x8d, - 0xd3,0xa5,0x45,0x98,0x42,0xfe,0xe7,0x97,0x59,0x78,0x2b,0x42,0x7d,0x78,0x33,0x0d,0x4e,0x1c,0x4b,0xda, - 0xef,0x0c,0x7d,0x83,0xab,0x1b,0xc6,0x1d,0xec,0x4d,0xab,0x07,0xf7,0x0f,0x0a,0x37,0xe6,0x22,0xa5,0x11, - 0x33,0xdb,0xbe,0x88,0xb3,0xac,0xa6,0xc2,0xef,0xdf,0xbd,0x79,0x4d,0x09,0x80,0x68,0xc4,0x6c,0x4c,0x3d, - 0x8d,0xc0,0x52,0xab,0x22,0x5c,0xe2,0x42,0x80,0x02,0x55,0x18,0x24,0x3c,0x4d,0x98,0xd2,0x08,0x73,0x6c, - 0x75,0x9c,0xc2,0x31,0x6b,0x8b,0x8f,0x73,0xc7,0xb1,0x14,0xfa,0xab,0x2e,0xc1,0x46,0x74,0x43,0x7b,0x3e, - 0x81,0xd3,0xad,0x95,0xe8,0x3a,0x3e,0x8c,0x7c,0x6b,0x7d,0xa9,0x5a,0x23,0x53,0xde,0xce,0x94,0x0a,0x25, - 0x11,0xc4,0x69,0xfb,0xb2,0xf1,0xc3,0xc8,0xa7,0x2f,0x1b,0xe3,0xfd,0xc6,0xb2,0x71,0x53,0xcd,0x65,0x7b, - 0x97,0x60,0xe5,0xea,0x4b,0x27,0x95,0xad,0xa5,0xe3,0x84,0x3f,0xbb,0x74,0xdc,0x6d,0x6d,0xe9,0x38,0xc5, - 0x5a,0x3a,0xfe,0xad,0x97,0xce,0xee,0xcb,0xd4,0x42,0x79,0x57,0x2a,0x54,0xb9,0x5d,0xd8,0x1a,0xc8,0xe2, - 0xe5,0x19,0x3f,0x31,0xc1,0xde,0x8f,0x6d,0x3f,0x61,0x44,0x99,0xcd,0x94,0x2d,0xa3,0x18,0xec,0x29,0x1b, - 0x4c,0xb1,0x2b,0x4c,0x0a,0x46,0xc9,0x78,0x70,0xa2,0xa9,0x58,0x56,0xa2,0x35,0x83,0x47,0x31,0x8b,0xbc, - 0x3e,0x87,0xaf,0xa1,0x24,0x13,0x4b,0x69,0x65,0xd7,0x08,0xa3,0xcf,0x12,0x06,0x9d,0x5a,0xb8,0x39,0x67, - 0xc3,0x46,0x18,0x05,0xb2,0x79,0xa3,0x18,0x3c,0xe6,0xaa,0x25,0xaa,0x9f,0xc9,0x08,0x5b,0x0d,0x4f,0x65, - 0xc8,0x95,0x89,0x21,0xdb,0x49,0xb6,0x9a,0x53,0xa2,0xdb,0xba,0x3d,0x23,0x5b,0xa0,0x2a,0xf3,0x53,0x6d, - 0x3f,0xb9,0x61,0x87,0xaa,0x2c,0x5b,0xd9,0xb0,0xb2,0xc5,0xae,0x15,0x63,0xd5,0x56,0xaf,0xd2,0x0f,0x2d, - 0x16,0x5b,0xd3,0x2a,0xcb,0x4b,0x18,0xae,0x6a,0x93,0x49,0x5e,0xa6,0xa6,0x11,0xa6,0x2c,0x9b,0x18,0xa5, - 0xaa,0xc5,0x13,0xf3,0x09,0x6d,0x60,0x59,0xd9,0x7e,0x36,0x96,0x88,0xed,0x71,0x69,0xa1,0x78,0xad,0x69, - 0x9d,0xa2,0x2c,0x3c,0xf8,0xed,0xb4,0xf8,0xcc,0x3d,0xa1,0x7f,0x9d,0x7b,0x8f,0x1e,0x9f,0x1e,0x84,0xc3, - 0xae,0x47,0xb8,0x06,0x89,0xa1,0x87,0x7f,0x07,0x81,0x43,0xd9,0xce,0xf0,0x33,0x42,0x3b,0xab,0x7b,0xf4, - 0x79,0x8f,0x3e,0xef,0x75,0x57,0xaa,0x4e,0xf8,0xe8,0xf1,0x7f,0x52,0x15,0xcf,0x1b,0x1c,0xd0,0x60,0x42, - 0xe7,0x24,0xda,0xff,0xe3,0xc9,0xfe,0xaf,0x67,0xc3,0x93,0xd3,0xd3,0xeb,0xd3,0xd3,0xfd,0xd3,0xd3,0xde, - 0xf0,0x33,0x87,0x16,0x35,0x64,0x1c,0xe6,0x74,0x8b,0xac,0x4b,0x98,0x2e,0xf0,0x06,0xf2,0xe9,0x39,0xfe, - 0x2c,0x0b,0x2d,0x64,0xe7,0xfc,0xf6,0xc8,0xe9,0x8e,0x32,0xcf,0x5f,0xe8,0xc1,0x9d,0x1e,0x0c,0xbc,0xc7, - 0x07,0xb4,0xa0,0x8d,0x62,0xa7,0xa7,0x07,0x28,0xd9,0x75,0x4e,0x7e,0x7b,0x3c,0xfc,0xec,0x31,0x0c,0x1b, - 0x51,0xe5,0xd1,0xce,0xf3,0x37,0xcf,0x8e,0xff,0xf5,0xf6,0xeb,0x0e,0xd2,0xbb,0x8f,0x0f,0x12,0xff,0x42, - 0xd2,0x61,0xb7,0xb3,0x94,0xcf,0xd3,0x93,0x03,0x62,0x82,0xf1,0x62,0xec,0xbc,0x77,0x0c,0x16,0x3e,0x78, - 0xef,0xf6,0x68,0x22,0x53,0xbf,0x7e,0xe4,0xa9,0xa0,0x03,0x76,0xbe,0x54,0x0f,0x2e,0xd3,0xcc,0xbf,0xc9, - 0x08,0x70,0xfc,0xb3,0xcc,0xbf,0xce,0xfc,0xe3,0xcc,0xbf,0xcc,0xfc,0x67,0x99,0xff,0x3e,0xf3,0x9f,0x64, - 0xfe,0xbb,0xcc,0xdf,0xcd,0xfc,0x37,0x0c,0x82,0xca,0x6a,0x57,0x99,0x43,0xeb,0xb7,0x0e,0xbe,0xf0,0xbe, - 0xce,0xf0,0x5e,0xfc,0x96,0xfe,0x75,0xf6,0x66,0x65,0xdf,0x09,0x9c,0x47,0x74,0x28,0xf7,0xa6,0xfc,0xf9, - 0x18,0x9f,0x80,0x4f,0xfa,0x71,0xcf,0xb9,0x47,0x3f,0xa2,0xab,0x39,0x32,0xf6,0x90,0xf1,0xb7,0xa3,0x43, - 0x7c,0x9f,0xa6,0xfc,0xe3,0x2b,0xfe,0x2e,0x9d,0xb5,0xff,0x9c,0xe6,0xb6,0x47,0x8b,0x4c,0x9c,0xef,0xb4, - 0x5c,0xa1,0xfa,0x8a,0xaa,0x79,0x7d,0x9a,0xd0,0xef,0xad,0x59,0x2b,0x6a,0x69,0xf5,0xb7,0xaf,0xb8,0xc4, - 0x0b,0x1e,0x30,0xf4,0x1d,0xea,0xe3,0x7c,0x99,0x6d,0xa1,0x29,0xf6,0xf6,0x5e,0x64,0xe2,0x39,0xe1,0x94, - 0x25,0x2b,0x25,0x7c,0x15,0xf9,0xdf,0x60,0x7d,0xff,0xb1,0xfa,0x6d,0xb9,0x9f,0xa5,0xc1,0x81,0xff,0x1a, - 0x3f,0x97,0xfb,0x2b,0x24,0xd1,0xcf,0x57,0xf4,0xd3,0xed,0x7d,0x46,0x17,0x6a,0xd1,0xa5,0xd1,0x24,0xe9, - 0x2a,0x9b,0xf0,0x77,0xef,0x33,0xef,0xc0,0xff,0x91,0x72,0x7d,0x82,0x2b,0x9f,0xae,0xdb,0x21,0x41,0x19, - 0x95,0xb0,0x7f,0x7a,0x83,0xdd,0x03,0xff,0x29,0x43,0x85,0xbb,0x3a,0xf5,0x76,0x69,0xd0,0xbf,0x64,0x6c, - 0x14,0xf6,0x19,0xfd,0xf0,0x7f,0x46,0x4e,0x80,0x9e,0x59,0xe0,0x7c,0xe0,0xff,0x44,0x09,0xa7,0xbd,0x93, - 0xdf,0x7a,0xc3,0x2e,0x15,0xfd,0xae,0x79,0x3f,0x2b,0x37,0x31,0xbf,0x26,0xe1,0xaf,0xc9,0x1d,0xe6,0x49, - 0x5e,0xa5,0x03,0x41,0x44,0xd3,0xaf,0x89,0x6d,0x92,0x48,0x97,0xf0,0x1f,0xe8,0xf9,0xfd,0xd5,0x2c,0x2d, - 0x82,0xd7,0xef,0x4e,0xc7,0xdd,0x03,0xff,0xdf,0x48,0xe1,0x6f,0x1a,0xc7,0x0f,0x59,0x78,0x52,0x66,0x74, - 0xe7,0xf8,0xb7,0xb4,0xbc,0xc7,0x1f,0xb8,0x5b,0x44,0x7a,0xa4,0x7d,0x49,0xc8,0x83,0x90,0xe6,0x5d,0xf8, - 0x49,0xff,0x55,0x34,0x67,0x4d,0xc4,0x13,0x67,0xb9,0xcf,0x4f,0x28,0xce,0x10,0x54,0x12,0x7e,0xf2,0xa4, - 0x41,0x09,0x3a,0xc3,0xd5,0x8a,0x52,0xd4,0xb7,0x56,0x08,0x55,0xb7,0x0d,0x27,0x82,0xda,0x92,0x9b,0x6b, - 0xb9,0x9f,0x4c,0x64,0x9b,0xb3,0x30,0x19,0x38,0xd4,0x96,0xd3,0x4d,0x70,0x28,0x03,0xe2,0x0d,0xa3,0x50, - 0x88,0x71,0x5d,0x14,0x8f,0xb8,0x52,0xb8,0xa8,0xa5,0x99,0x36,0x46,0xe1,0x3f,0x99,0x14,0xff,0x1e,0xba, - 0x28,0x7e,0xcc,0x3a,0x46,0xdc,0xa1,0x2f,0x0e,0x33,0xce,0xb3,0xf7,0xd4,0xf7,0x0f,0x48,0x87,0xaa,0x3e, - 0x88,0xd7,0x11,0x21,0x68,0x21,0xed,0x46,0xbd,0x64,0x42,0x38,0xc2,0xe9,0xe6,0xd4,0x3f,0x4d,0xff,0x9e, - 0xae,0x72,0xcf,0xe9,0x66,0xfe,0xb7,0xa8,0x74,0x1b,0xbf,0x9f,0x07,0x28,0x27,0xf8,0x3b,0x18,0xad,0xb5, - 0xbc,0x56,0xfa,0xa5,0x41,0xcd,0x30,0x28,0x5a,0x5d,0x19,0x50,0xcc,0x09,0x6a,0x08,0x79,0x34,0x4e,0x32, - 0xe9,0x7f,0x86,0xfe,0xab,0x26,0xed,0x5e,0xb9,0x14,0x77,0x29,0x7d,0xcc,0x54,0x1f,0x0b,0xdd,0x87,0x52, - 0xf1,0x29,0x21,0x9a,0xab,0x77,0x45,0x09,0xb2,0xe8,0x30,0x79,0xf8,0x01,0xbf,0x6b,0xbd,0x24,0xaa,0xc5, - 0x05,0x02,0x0b,0x0f,0x46,0x3d,0x2c,0x1d,0xc2,0xce,0x15,0x2c,0x4c,0xc5,0x2f,0x5a,0x80,0x82,0xd6,0x05, - 0x2c,0xdd,0xd0,0xff,0x9e,0x30,0x03,0x55,0x23,0x56,0x01,0x60,0x07,0xa9,0xbd,0x7e,0xd7,0xfe,0x21,0xf3, - 0x2b,0x1e,0x22,0x50,0x4f,0x69,0xad,0x4f,0x4b,0x62,0x97,0x23,0xda,0x1c,0x50,0x79,0x64,0xb5,0xb3,0x0b, - 0x7f,0xe9,0x5f,0x99,0x67,0xb5,0x69,0xed,0x4d,0xf5,0x46,0xa0,0xce,0x3f,0xb7,0x00,0x8e,0xdf,0x62,0x25, - 0x00,0x93,0x61,0x4f,0x8c,0xa7,0x26,0x80,0xc1,0x95,0x3f,0xf5,0x7c,0x15,0x64,0xb7,0x7a,0xcf,0xbc,0xf1, - 0x88,0x03,0xf5,0x2f,0xc2,0x2b,0x7f,0x19,0xde,0x63,0x2d,0x81,0x5d,0xed,0x84,0xe3,0xe7,0x68,0xd6,0x09, - 0x3b,0x8d,0xb0,0xea,0xea,0x45,0x41,0xde,0x31,0x77,0xd9,0x73,0xac,0x0a,0xd5,0x68,0xde,0x34,0xcd,0x1c, - 0x33,0x83,0x85,0xb2,0x9e,0x6e,0x74,0xed,0xe1,0x19,0xd4,0xb5,0xcb,0xa0,0xd7,0x25,0xf7,0xe5,0x9c,0x89, - 0xc7,0x17,0x68,0x05,0x65,0x9d,0x01,0x55,0x93,0x84,0x4e,0x40,0x9f,0xea,0xf5,0x4d,0x1a,0xbc,0xd7,0x75, - 0x89,0x12,0x9a,0xf6,0xc4,0x94,0x7e,0xe0,0x9c,0xa5,0x2e,0xe5,0xe3,0x40,0xd0,0x1f,0x88,0x8a,0x08,0x1e, - 0x88,0xa9,0x2f,0x21,0x81,0xd5,0x4f,0xcb,0xcb,0x70,0xd9,0x75,0x3a,0x04,0x33,0xb0,0x84,0x71,0xea,0x63, - 0xd7,0xef,0xaa,0xd4,0x69,0x7d,0x01,0x82,0xfa,0x6f,0x42,0x9e,0x8e,0xd7,0x30,0xac,0xa8,0xa1,0x83,0x1b, - 0x42,0xb4,0xe6,0x14,0xd1,0xef,0x73,0x0f,0x2e,0x92,0x46,0xb4,0xbe,0xb3,0xd0,0x1a,0xb1,0xbf,0xc0,0x49, - 0x2f,0x7c,0xe5,0xe2,0xc6,0x5b,0xad,0x1c,0x34,0xea,0xf8,0x13,0x95,0x0e,0x6f,0x27,0xfb,0x55,0x26,0x7e, - 0x3a,0xfe,0x58,0x65,0x4e,0x22,0x9c,0xe7,0x2a,0x97,0x7f,0x3b,0xfe,0xbf,0x62,0x64,0x6a,0xa7,0x37,0xbe, - 0x53,0x37,0x1d,0xa1,0x4b,0x98,0x0e,0xcf,0xe0,0x2c,0x91,0x2f,0xdf,0xe9,0x2e,0xba,0xcc,0x7a,0x3b,0x5d, - 0x57,0xda,0xa7,0xe1,0x4e,0x06,0x4e,0xa0,0x4a,0xd2,0x5a,0x06,0x67,0xff,0x36,0x85,0x27,0x48,0x82,0x56, - 0x4c,0x29,0x9d,0xc8,0x9a,0x3a,0x02,0x32,0x51,0x28,0xc5,0x76,0xc1,0x9c,0xd6,0x56,0x96,0x92,0x46,0x21, - 0x92,0x7b,0x6a,0x5c,0x03,0x57,0xda,0x42,0x37,0x63,0xfa,0xbb,0x69,0xfc,0x4a,0xcd,0x29,0x74,0xb8,0xbb, - 0xbb,0xa4,0x86,0xdd,0x19,0xef,0xaf,0x8c,0xd7,0x09,0x16,0x1e,0x77,0x94,0x84,0x34,0x13,0x2a,0x4a,0x9f, - 0x4b,0x6e,0xc4,0xee,0x84,0xb8,0xc9,0xdd,0xe4,0xd1,0x21,0x23,0x4a,0x1a,0x17,0x0d,0xc0,0x04,0xd6,0x3e, - 0xa1,0xf2,0x84,0x6e,0x45,0x37,0x8e,0x4a,0xd1,0x02,0xd4,0x8a,0x69,0x77,0x2f,0x94,0xe5,0xe9,0x3a,0x55, - 0x3a,0xa5,0x76,0x8f,0xa0,0x37,0x20,0xf5,0x19,0x98,0x08,0x7d,0xd2,0x24,0x19,0xe8,0x9c,0xbb,0x40,0x43, - 0xb0,0x1b,0xc3,0x85,0x30,0xf6,0x57,0x84,0xd2,0x6d,0xb8,0x88,0xb0,0xc5,0xf9,0x26,0x5c,0xfc,0x8b,0x03, - 0x5b,0x55,0x7b,0xcb,0x3b,0x93,0xf0,0xce,0xb8,0x51,0x98,0xa9,0x15,0x8a,0x78,0x85,0x22,0x8f,0xf7,0x0a, - 0x5b,0x95,0x57,0x5b,0x45,0x23,0x85,0x61,0xda,0x07,0x47,0x08,0x48,0xb3,0x54,0x3d,0x6e,0xbc,0x9d,0x56, - 0x84,0xd5,0x44,0x3b,0xf0,0xb7,0xca,0xb1,0x3c,0x32,0xa8,0x62,0x23,0x0c,0x30,0xbc,0x68,0xab,0x19,0x21, - 0x96,0x11,0xcc,0xb3,0xe9,0x10,0xec,0x64,0xbc,0x04,0x18,0x0e,0x54,0xf6,0xe8,0x48,0xd0,0xc0,0xd5,0xf8, - 0x02,0x95,0x01,0xd5,0xb2,0xc1,0x65,0x12,0xa8,0x51,0xd1,0x41,0x69,0x1c,0x55,0x59,0x99,0x3e,0xf0,0x71, - 0x7b,0x9e,0x32,0x06,0x07,0xe1,0x2c,0x65,0x2a,0xe0,0x91,0x4b,0x62,0x12,0xd2,0x5a,0x94,0x78,0x74,0x1a, - 0x51,0x01,0xba,0xce,0x00,0x3d,0xb5,0x76,0x94,0xfa,0x88,0x79,0x77,0xec,0x13,0xcc,0x7a,0xd8,0x83,0x58, - 0xef,0x8c,0x8f,0xdb,0xa8,0x34,0xeb,0x1c,0x13,0xe6,0x9e,0x54,0x62,0x12,0xb7,0x58,0xad,0xd8,0x96,0x90, - 0xef,0xdf,0xf3,0xd9,0x82,0xae,0x1f,0xa7,0xfe,0x1a,0xe5,0xb0,0x15,0x20,0x90,0xb2,0xd9,0x88,0x9d,0xdd, - 0xb4,0x2e,0x00,0x74,0x2b,0x65,0xd5,0x1a,0x0a,0x37,0x0f,0xab,0x4c,0x04,0x6e,0x70,0xbe,0x4b,0x51,0x4c, - 0x90,0xe1,0x5a,0x34,0x10,0xc0,0xa6,0xc0,0xb0,0xa5,0x04,0x0f,0x7e,0xcd,0x4c,0xcd,0x87,0x9b,0x30,0x54, - 0x55,0x6b,0x03,0x6b,0xe2,0x1c,0xdf,0x12,0xc1,0x14,0xb5,0x79,0x9a,0x00,0xa5,0xaa,0xfc,0x6a,0x41,0x0c, - 0x49,0x6c,0x0f,0xca,0xe5,0x99,0x6f,0x49,0x40,0x83,0x38,0x81,0x1f,0x9d,0xa7,0xf1,0xcb,0x78,0x52,0xbe, - 0x99,0xc7,0x29,0x8a,0x24,0x99,0x5f,0x5b,0x8a,0x60,0x91,0xf8,0x0d,0x29,0x67,0xf0,0x2a,0xf6,0x2d,0xe9, - 0xc0,0x0f,0x19,0x31,0x08,0xe3,0xc5,0xa8,0x5d,0x93,0xa6,0x13,0xeb,0xc3,0xac,0x63,0x5d,0xe9,0x28,0x7e, - 0x1e,0x3b,0x7a,0xe8,0xfd,0x9e,0x25,0x04,0x26,0x3e,0x56,0xe4,0xdb,0x76,0x1a,0xb4,0x03,0xff,0x2d,0x80, - 0x76,0x5c,0xbd,0x0c,0xff,0x90,0x99,0xfb,0xfa,0x24,0xf8,0xc4,0x9c,0x24,0xa9,0xf2,0xd2,0xe1,0x9b,0x27, - 0x2f,0x09,0x14,0xd4,0x75,0xe3,0x01,0xce,0x6a,0x0c,0x67,0xa7,0x90,0x08,0xfd,0xd3,0xf0,0x74,0xa7,0xd7, - 0xbb,0x67,0xc3,0xee,0xea,0x94,0x48,0x68,0x6f,0xf8,0xd9,0xe0,0xd4,0x03,0x3f,0x17,0x3e,0x5e,0xfd,0xa6, - 0x47,0x40,0x3f,0x4f,0xdd,0x03,0xff,0x57,0x55,0xe3,0x84,0xf8,0x36,0xe2,0xde,0xce,0x76,0x87,0xa8,0x3a, - 0x04,0xeb,0x47,0xe4,0x73,0x23,0x71,0x75,0x7a,0x72,0x8f,0x08,0xf8,0x7b,0x43,0xfa,0x70,0xe8,0xc3,0xc1, - 0x07,0xd1,0xb9,0xf8,0xd3,0x2c,0x3b,0xf4,0x3e,0xa3,0x66,0x89,0x34,0xff,0x17,0x68,0x99,0x62,0x14,0xdc, - 0xff,0x3b,0x7c,0x14,0x05,0x5f,0x89,0xf6,0x44,0x70,0xf4,0xc0,0x97,0xf5,0x7e,0x70,0xdf,0x5f,0xcc,0x83, - 0x07,0x5f,0x12,0x0b,0x3c,0x29,0x83,0x07,0x7f,0xf7,0x73,0xbc,0x8b,0x04,0x0f,0xbe,0xf2,0xe1,0xd7,0x3a, - 0x78,0x78,0xe8,0xcb,0xd3,0x64,0x70,0xf2,0xa5,0xff,0xf0,0x0b,0xe2,0x32,0xfe,0x23,0x6b,0x73,0xb7,0x05, - 0x94,0xd3,0x05,0xf0,0x58,0xae,0xb0,0xfa,0xc4,0x17,0xc5,0x11,0xa4,0x3d,0x04,0x0f,0xfa,0x50,0xe3,0x07, - 0x00,0x24,0x9a,0x46,0x22,0x23,0xec,0x43,0x51,0x82,0xf3,0x4c,0x19,0xf5,0xfb,0xb9,0x3c,0x25,0x72,0x11, - 0x84,0x18,0x0b,0xfe,0x23,0x73,0xeb,0xb8,0xa1,0x43,0x18,0xa7,0xa3,0x52,0x46,0x8b,0x1c,0x9b,0x74,0xcc, - 0x19,0x74,0x80,0x47,0x65,0x3e,0xe3,0x1a,0x3b,0xba,0x00,0x25,0xfc,0x00,0xc5,0x5b,0x9f,0x9d,0x81,0xd6, - 0xf2,0x38,0x45,0x32,0xa3,0x59,0x3d,0x8b,0x7e,0x4b,0x06,0x04,0x02,0xb5,0x1c,0x24,0x48,0x16,0xaf,0x1d, - 0xb2,0xee,0x89,0xb3,0xa7,0x7b,0x20,0x76,0xa4,0x54,0x67,0x6f,0x4f,0x8f,0x50,0xf2,0x78,0xcc,0x87,0x68, - 0x2f,0x19,0x8f,0x67,0xf1,0x27,0x55,0x3b,0x62,0x87,0x68,0xd8,0x9f,0x4f,0xa9,0x75,0x1f,0xf0,0x8f,0x07, - 0x4f,0x62,0x0b,0x9b,0x6e,0x56,0xe0,0xdd,0xad,0x0a,0x50,0xd7,0xb2,0xb1,0x67,0x53,0xd9,0x58,0xbf,0x86, - 0x21,0x08,0x41,0x6c,0xa8,0x16,0xe9,0xe6,0x38,0x12,0x5e,0x65,0x04,0x54,0xb5,0x74,0x4e,0x2d,0xa5,0xd4, - 0xd2,0x3d,0x08,0xb8,0xe8,0xbc,0x75,0xc1,0x5d,0x57,0xad,0xe2,0xd6,0xb3,0x08,0x62,0xf8,0x2f,0xaa,0xb4, - 0x0c,0xf1,0xcc,0x35,0x10,0x8a,0x26,0x50,0xa4,0x91,0xf7,0x81,0xe2,0x1c,0x4a,0xda,0xf1,0x55,0x79,0xc7, - 0x53,0x63,0x1e,0xcd,0xb2,0xe8,0x12,0x41,0x72,0xd3,0x16,0x2f,0xa6,0x99,0x71,0x7e,0xc9,0x3f,0x21,0x6a, - 0xa4,0x3b,0x11,0x7f,0x56,0xab,0x7f,0xaa,0x44,0x23,0x9d,0x2c,0xc2,0x5f,0x61,0x63,0xa9,0xf5,0xcd,0x1d, - 0x93,0x81,0x28,0x45,0xda,0x27,0x3b,0x5e,0x10,0xbf,0x8d,0x53,0x04,0xe3,0xab,0x97,0x56,0x62,0x45,0x53, - 0xce,0xb0,0x14,0xe1,0xd2,0x65,0xdd,0x89,0x32,0x62,0x8b,0x67,0x93,0xee,0x99,0xc0,0x5c,0x35,0x04,0xba, - 0x5a,0x5d,0xa6,0x7d,0xe5,0xee,0xf8,0xe6,0x3c,0x36,0x31,0x15,0x5b,0x36,0x72,0xc7,0x58,0xe7,0x2a,0x5f, - 0x97,0xe9,0x28,0x7e,0x01,0x23,0x2c,0xfe,0xd5,0x8c,0x1d,0x08,0xb7,0xdb,0x79,0x14,0xba,0xb6,0xd4,0xe7, - 0xf4,0xf4,0xdc,0xe9,0x3a,0x63,0xc2,0xe1,0x13,0x48,0xd8,0x08,0xe8,0x4b,0xbc,0x39,0xd0,0x22,0xdf,0xb0, - 0xbf,0xb5,0x11,0xa4,0x7b,0xb8,0xf6,0xfc,0xeb,0xa4,0xbc,0xf0,0xa3,0xeb,0x28,0x29,0x7d,0xd6,0xf7,0xf7, - 0xd9,0xb3,0xb9,0xd2,0x89,0xe7,0x07,0x1e,0x9f,0x1d,0x91,0xfa,0x1c,0x64,0xde,0xbf,0x26,0xb4,0x1a,0xfb, - 0x37,0x10,0xeb,0x29,0x64,0xe3,0x13,0xf7,0x95,0xc1,0x89,0x21,0x3b,0x58,0xf1,0x65,0x06,0xda,0xb1,0x97, - 0x76,0xa7,0x28,0xae,0x3f,0x89,0x35,0x91,0x78,0xf3,0xec,0xdb,0x2c,0x49,0x17,0xf0,0xc8,0x73,0xbe,0x98, - 0x4e,0x21,0x07,0x54,0xab,0x50,0xc5,0x50,0x71,0x94,0xfb,0x19,0xdc,0x09,0xea,0x76,0xa0,0x69,0xad,0x30, - 0x35,0xaf,0xcb,0x33,0x94,0x77,0x94,0xc6,0x9c,0x65,0x50,0xe2,0x43,0x94,0xf5,0xd2,0x5b,0xdb,0x21,0x94, - 0x0e,0x84,0x7f,0x7a,0x4a,0x28,0x9f,0xfe,0xa9,0x5a,0x6d,0x64,0x20,0x00,0xdc,0x6e,0x53,0xb4,0x53,0x59, - 0xd8,0x6e,0x35,0x08,0x65,0x2f,0xc0,0x84,0x1b,0x11,0xd8,0x38,0xdc,0x39,0xf2,0xfc,0xe3,0x4c,0xed,0x29, - 0xdb,0x7e,0x41,0x8c,0x6d,0xc5,0x60,0xe9,0xa7,0x8f,0xae,0x33,0xdb,0xef,0xca,0x75,0xc6,0x26,0xb6,0x30, - 0xee,0x9d,0x66,0x61,0x59,0x41,0xf6,0x31,0x7e,0xe9,0xfb,0x1e,0x20,0xe5,0x5f,0x22,0xc5,0xba,0xcd,0x39, - 0xf1,0x19,0x12,0x1b,0xd7,0x35,0x67,0x9c,0x67,0x00,0xef,0xb2,0xe5,0x30,0xbc,0x96,0xc3,0x70,0xd6,0x2c, - 0xd0,0x94,0xc5,0x50,0x99,0xeb,0x8d,0x32,0x59,0x51,0x36,0x0b,0xdd,0x60,0x08,0xb4,0x1b,0xc9,0x55,0x52, - 0x22,0xbe,0xa1,0xe1,0xb4,0x45,0xb5,0x64,0xe7,0x88,0x35,0x9c,0x10,0xb4,0x1c,0x27,0xe4,0x97,0x0b,0x2a, - 0xc5,0xc3,0xf4,0xb1,0x5e,0xa0,0x55,0x8f,0x36,0x8c,0x2e,0x9a,0x8b,0x4c,0xbf,0x16,0xdd,0x90,0xa0,0x0b, - 0x1a,0xab,0x8b,0x73,0x79,0x40,0x70,0x6d,0x83,0xe8,0x5c,0xbb,0x08,0x60,0x83,0x7d,0xbf,0xa8,0x02,0xd2, - 0x8b,0x77,0xd9,0x85,0xa7,0x1e,0xd3,0xf0,0xa6,0x90,0xe3,0xa7,0xec,0x58,0xe3,0xb9,0x95,0x92,0x59,0x8b, - 0x3f,0x09,0xa3,0x2a,0x4a,0x7d,0xf2,0x38,0x3c,0x44,0x2c,0x82,0x64,0xd8,0x9b,0xe9,0xa2,0x38,0xe8,0x34, - 0x2f,0xea,0x67,0x7f,0x5f,0xd3,0x95,0x21,0x3f,0xea,0xa2,0xb4,0x65,0x5b,0x69,0x37,0x34,0x7a,0x1c,0x26, - 0xfd,0x11,0x55,0x28,0x7b,0xec,0x40,0x85,0xff,0xb0,0x1b,0x75,0x16,0x32,0x60,0xfc,0x7d,0x5d,0x3c,0xc4, - 0x02,0x26,0xdc,0xed,0xfe,0x11,0xe7,0x33,0x23,0xe4,0x9c,0xe7,0xa0,0xf2,0x8a,0x01,0x13,0x57,0x39,0xfb, - 0xa2,0xe7,0x0f,0x9a,0x3f,0x2d,0xf7,0xce,0xa1,0x38,0x3d,0x70,0xe6,0x5c,0x8a,0xc3,0x26,0xb4,0x96,0x3b, - 0xe2,0x72,0x7e,0x6d,0x20,0xb2,0x82,0xb4,0xa8,0xda,0xef,0x01,0x84,0x25,0xd8,0x44,0xe8,0x99,0x57,0xa2, - 0x17,0xda,0xb2,0xb2,0x57,0xd1,0x98,0x0c,0x6d,0x33,0xbc,0x27,0x37,0x28,0x4b,0xce,0x58,0xd0,0xa2,0xc4, - 0x7d,0x96,0xe4,0x25,0x84,0xc4,0x89,0x2d,0x79,0x93,0xb9,0xda,0xff,0x86,0x98,0x9c,0x66,0x8d,0x17,0xef, - 0x79,0xf8,0x75,0x76,0x32,0x46,0xdc,0x27,0xfe,0x5b,0x13,0x72,0x13,0x11,0x77,0x5a,0x9c,0x9e,0xbe,0x23, - 0xf2,0xcd,0x73,0x1f,0x1d,0x30,0x63,0x2b,0xd2,0x6e,0x8f,0x4e,0x7d,0x02,0xb6,0x19,0x86,0x57,0x5a,0x7e, - 0x3d,0xb7,0x05,0xd7,0x0c,0x1e,0x1a,0xd2,0x8c,0x91,0xab,0x4f,0xe3,0x19,0x33,0xf7,0xa7,0x5c,0x4a,0x62, - 0xe1,0x10,0x45,0x38,0x0d,0x2b,0xdf,0x52,0x07,0x90,0x95,0x53,0xdf,0x85,0xf4,0xbc,0xbf,0xff,0xf8,0x60, - 0x4a,0x6c,0x06,0xdd,0xfc,0x76,0x91,0xd3,0x93,0x67,0xcf,0x9f,0x1c,0x3f,0x39,0x3d,0xa9,0x4a,0x0e,0x87, - 0xa6,0x24,0x24,0xc7,0xee,0xd8,0x17,0x37,0xca,0xd0,0x56,0x51,0xee,0x98,0x38,0x04,0xde,0x45,0x24,0x97, - 0x25,0x7f,0x40,0xc5,0xc1,0x81,0x5c,0x85,0x60,0x5e,0x6b,0xe0,0xec,0x5f,0xe8,0xf1,0xc6,0xe1,0x85,0x9f, - 0x53,0x43,0x8b,0xfd,0x09,0x02,0x4c,0x1b,0x13,0xa3,0x65,0x68,0x3d,0xf5,0x3f,0x12,0x76,0x1f,0xda,0x95, - 0x4b,0x5e,0xfc,0x8b,0x4c,0x47,0xc9,0xd2,0xc6,0x61,0xb6,0x62,0xc0,0xfe,0xe9,0xfb,0x07,0xb1,0x54,0xb9, - 0x62,0xf0,0x2d,0x55,0xf4,0x45,0x04,0xa0,0x50,0x9a,0x85,0x2a,0xea,0x81,0xf2,0x45,0x52,0x9d,0xc2,0x87, - 0x3e,0xcc,0x68,0x53,0xf7,0xaa,0xfb,0x80,0xd8,0x3c,0x85,0xee,0xd7,0xd0,0xda,0x5a,0x36,0xfa,0x9c,0xda, - 0x7d,0x0e,0x1f,0x4b,0x7f,0x53,0xee,0x2f,0x75,0xa7,0xdd,0xfb,0x76,0x75,0x94,0x87,0xf0,0x8d,0x3d,0xcf, - 0xba,0xf3,0x8c,0xcb,0xde,0xa0,0xe0,0x0d,0x1e,0x90,0x75,0xb4,0x42,0x53,0x01,0xe5,0xcf,0x4d,0xf9,0x89, - 0x94,0x3f,0x97,0x7e,0xcf,0xc2,0x45,0x3f,0x75,0xcf,0xad,0x7a,0xb4,0x80,0xe7,0x27,0x47,0x43,0xff,0x8c, - 0x59,0x53,0xbb,0x8d,0xeb,0x66,0x04,0x94,0xd2,0x34,0x3a,0x93,0x46,0x4b,0x4b,0x96,0x18,0xde,0x6a,0x87, - 0x7e,0x25,0x9a,0x63,0x0e,0x24,0xc0,0x81,0xc1,0x49,0x0b,0x16,0x12,0xda,0x92,0xd0,0x97,0x3d,0xe4,0x1d, - 0xb6,0xd0,0x97,0x26,0x17,0x99,0x04,0x15,0x35,0x09,0x11,0x25,0xf4,0xbd,0xd4,0x4d,0xec,0xc1,0x66,0xca, - 0x2d,0x24,0xeb,0x9f,0x89,0x95,0x9f,0x71,0xcb,0x95,0xf5,0x16,0x38,0x87,0xef,0xe8,0x16,0xbf,0x60,0x07, - 0x6d,0xb0,0xca,0xac,0x57,0x86,0x2f,0xf3,0x85,0x0f,0xcb,0x60,0x31,0x86,0xf2,0x6e,0x77,0x9a,0x2f,0xa7, - 0x29,0x4d,0x66,0xc1,0x5e,0x70,0xd4,0x7c,0xe8,0x58,0xc6,0x56,0xcb,0x2c,0x03,0x10,0x9c,0x42,0x27,0x38, - 0xcb,0xdc,0x09,0x0d,0x3b,0xa7,0x73,0xec,0xcf,0xf8,0x33,0x83,0x40,0x0b,0x29,0x13,0xaf,0xba,0xee,0xe6, - 0xe1,0x88,0x7e,0xaf,0x56,0x3b,0x3b,0x63,0x3e,0x94,0x32,0x09,0x05,0xc5,0x4b,0x3e,0xd6,0x22,0x86,0xa2, - 0x51,0x5e,0x11,0x9a,0xb8,0x7a,0x74,0xd1,0xbf,0xd2,0x4a,0x7c,0x53,0x5d,0xe1,0xe4,0x6a,0xd8,0xbf,0xa2, - 0x4e,0xf7,0x61,0x0a,0x37,0xc5,0xcc,0x34,0x08,0xdd,0x73,0x9c,0x7b,0x58,0x3d,0x7e,0x8a,0x9a,0x9e,0x3c, - 0x18,0xee,0xed,0x29,0x85,0x4d,0xfc,0xf0,0x55,0xf2,0x43,0x3b,0xf9,0xa1,0x49,0xfe,0xdc,0x4e,0xfe,0x5c, - 0x99,0x0a,0xde,0x70,0x33,0xab,0x15,0x0a,0xe2,0xdf,0xcf,0xe9,0x5f,0xc7,0xf1,0xcf,0x43,0x87,0x85,0x34, - 0x34,0x43,0x07,0xbe,0x99,0xa5,0x85,0xa3,0xe1,0x40,0x9f,0x92,0xe7,0x31,0xfc,0xe5,0xbe,0x8e,0xaf,0xe1, - 0xef,0xb4,0xf8,0x26,0xcb,0xbf,0xa3,0x52,0x41,0x7b,0x6e,0x7f,0x49,0x33,0x52,0x8a,0xe9,0x68,0xc4,0x67, - 0x42,0x3b,0x20,0x94,0x70,0x83,0x48,0x5c,0xf0,0x3b,0x30,0xf8,0x3d,0x0b,0x9e,0x67,0x96,0x6b,0xbb,0x85, - 0xdf,0xc2,0x23,0xbf,0xcd,0xd8,0xbd,0xbc,0xb7,0x5e,0x13,0x25,0x00,0xe7,0xfe,0x80,0x0e,0xd6,0x69,0x9d, - 0xf8,0xb5,0x6b,0x2a,0x98,0x34,0x10,0xac,0x80,0xe9,0x12,0xae,0xe9,0xc3,0x09,0xd0,0x4f,0xe3,0x86,0x20, - 0x6a,0xca,0x9f,0xf3,0x63,0x38,0xfd,0x82,0x87,0x9b,0x74,0xec,0xad,0x09,0x6e,0x80,0xc0,0x32,0x3f,0x66, - 0x57,0x0c,0x47,0xcd,0xc3,0x7a,0xac,0x4d,0xc8,0x2f,0xf5,0xc7,0x33,0xf5,0x01,0xa0,0x5b,0x9a,0x4b,0xf1, - 0xd2,0x38,0x7a,0x5e,0xe2,0x2c,0x4c,0x14,0x8e,0xb8,0x84,0x5b,0x57,0xeb,0xfb,0xc2,0xfa,0x5e,0x5a,0xdf, - 0xee,0xb3,0xf0,0xd2,0x46,0x73,0x3e,0x21,0xd0,0x47,0x87,0x74,0x66,0x96,0xdd,0xf0,0x99,0x5f,0x6b,0xfc, - 0xb8,0x46,0x2c,0x1c,0xfa,0x4b,0x60,0xa9,0xa5,0xb7,0x5e,0xb2,0xb8,0x92,0x72,0x09,0x95,0xc2,0x92,0xdc, - 0xa0,0xdf,0xe3,0x0a,0x03,0x1f,0xb3,0xda,0x29,0xfc,0x0a,0x25,0x40,0x86,0x0d,0xfc,0x1c,0x6b,0x93,0xd9, - 0x75,0xee,0xb2,0x70,0x49,0x02,0x87,0x4c,0x33,0xdf,0x7a,0xa0,0xa8,0x5d,0x99,0x96,0x48,0xc6,0xbe,0x3b, - 0x37,0xa5,0x31,0x9b,0xd7,0xa8,0xdf,0x06,0x45,0x5b,0x80,0xab,0xb5,0xec,0x87,0xe1,0x51,0xe5,0xfa,0x1b, - 0xf8,0x3e,0x30,0xe8,0xbe,0x50,0xf8,0xcc,0xba,0x4b,0x23,0x58,0xc3,0xca,0x33,0x10,0xc7,0x5c,0x42,0xa0, - 0x90,0x67,0x78,0xfd,0xec,0xbf,0x84,0x97,0x77,0xb8,0xd0,0xa6,0xb5,0x5b,0x20,0xf2,0x41,0x8d,0xed,0xa9, - 0xf4,0x9f,0x09,0x4b,0x0a,0x3d,0x1c,0xdb,0xe4,0xb0,0x96,0x7a,0x22,0x20,0xea,0x1f,0x99,0x56,0xa7,0x4c, - 0x95,0x1a,0xa5,0x7c,0x85,0xf2,0xc7,0x9c,0x8e,0x7f,0x67,0xbe,0x6c,0x23,0x9f,0x00,0x10,0x30,0x26,0x92, - 0x1e,0xdc,0xc5,0x88,0x20,0xd2,0x7a,0xe9,0xf9,0x77,0xc9,0x13,0x20,0x44,0x8a,0xf1,0x5d,0xd1,0xd8,0x41, - 0x0e,0xee,0x28,0xd7,0xfa,0xec,0x6b,0x71,0x12,0x5e,0x79,0xa2,0xe9,0xac,0x9f,0xac,0x91,0x3c,0x11,0xcd, - 0xec,0x49,0x5d,0x24,0x4b,0xd3,0x85,0xe4,0xef,0xe0,0xf7,0x68,0x19,0xd9,0x65,0x6b,0x85,0x68,0xf4,0x08, - 0x4f,0xeb,0x71,0x87,0xb4,0x08,0xe7,0xec,0x23,0x9e,0x63,0x53,0x1a,0x0b,0x6d,0x5a,0x8d,0xe9,0xa3,0x33, - 0xc3,0x1d,0x4c,0x69,0x39,0xae,0xc2,0xb3,0xec,0x64,0x3a,0x74,0xa1,0x69,0xbb,0x5a,0xb1,0xd3,0x15,0xa8, - 0xeb,0x9a,0x67,0xc8,0x65,0x78,0x85,0x47,0x37,0x88,0xfe,0xd0,0xf4,0x12,0x54,0x36,0x1b,0x1f,0x5c,0x55, - 0x2c,0xc9,0xa1,0xc7,0x3c,0xc9,0x95,0xc5,0x93,0xe0,0xc5,0xb2,0x35,0xae,0xb1,0x91,0xb5,0x19,0x27,0x98, - 0x76,0xc8,0x46,0xf3,0xea,0x6a,0xe1,0xee,0x52,0x7b,0xa7,0x29,0xfb,0x39,0x0d,0x18,0xbe,0x7b,0x14,0x72, - 0xb3,0x5a,0xa3,0x44,0x09,0x53,0x22,0xb8,0xae,0xa1,0x04,0xd4,0x28,0x28,0xd1,0x49,0xd7,0xda,0xcf,0x26, - 0xcd,0x83,0xad,0xa2,0x58,0xe6,0x17,0x72,0x18,0xe1,0x2b,0x2f,0xb8,0xaa,0xde,0x4a,0x29,0xf7,0xfb,0x92, - 0xd2,0x5a,0xe2,0xc9,0x5a,0x6f,0xba,0xea,0xea,0x8e,0xf1,0xa8,0x5a,0xe2,0x11,0x32,0x96,0x47,0xc8,0x52, - 0x3d,0x42,0xc6,0x6b,0x65,0x7a,0xdd,0xf2,0xc4,0x2b,0x4a,0xce,0xea,0x79,0xd2,0xab,0x69,0x3a,0x55,0x0f, - 0xbe,0x5a,0xdb,0x49,0xbd,0x5b,0xc2,0xcd,0x2e,0x06,0x65,0x9a,0xbb,0x90,0xad,0x02,0x87,0xcf,0x0d,0x5e, - 0x30,0xb3,0xcf,0x7b,0xf1,0x43,0xc9,0x1b,0x4c,0x2b,0x39,0xd0,0xbb,0xbf,0x5a,0xe5,0x34,0x52,0x86,0x16, - 0x69,0x90,0x76,0x9f,0xbf,0xa8,0xea,0xb7,0x78,0x6c,0xe0,0xc1,0xeb,0x4c,0x35,0x87,0xab,0xb5,0x17,0xe4, - 0xd4,0x0d,0x9d,0xc8,0x1d,0x0b,0xca,0x60,0x32,0xb4,0xd1,0xcc,0x98,0xca,0xcd,0xb7,0x1c,0x4d,0x73,0x22, - 0x39,0xbe,0x9e,0x36,0x43,0x8f,0x39,0xb4,0x1e,0x60,0x59,0xcb,0x79,0x29,0xa1,0x4f,0x1b,0x93,0xcd,0x61, - 0xff,0xeb,0x56,0x9e,0x6e,0x88,0x84,0xdf,0xdb,0x9b,0xf3,0xf8,0xbf,0xc5,0xbb,0x20,0x8f,0x75,0x5c,0x1f, - 0xeb,0x78,0x5d,0x49,0xe3,0xaf,0x7a,0xb0,0x52,0x60,0xaf,0x5f,0x1c,0x4a,0x5c,0x76,0xfa,0x48,0x5d,0xc9, - 0x92,0x2b,0x12,0xc4,0xd5,0xea,0x9e,0xa3,0x24,0x0d,0xce,0xbd,0x3e,0x75,0x59,0x0b,0xf3,0x56,0xff,0xcd, - 0xa6,0x04,0x27,0x37,0xc3,0xf0,0x4a,0xac,0xad,0xab,0xf1,0x09,0xa2,0xb8,0xe2,0x53,0xa2,0xc2,0xb2,0xf5, - 0x67,0x83,0x14,0x70,0xe5,0xf2,0x3b,0x91,0x2e,0x80,0xe0,0x62,0x69,0x8b,0x4e,0x7d,0x76,0x92,0x19,0xa6, - 0x6e,0xe8,0x97,0x96,0x5f,0xac,0x93,0x0d,0x67,0x58,0x54,0xa2,0x4f,0x77,0xeb,0x83,0x90,0xcd,0x7c,0x04, - 0x5f,0x74,0x1c,0xf9,0xc5,0x7e,0x14,0x76,0x46,0xd0,0xb2,0xae,0xc6,0x86,0xe5,0xf4,0x4d,0xfb,0xe1,0x11, - 0x51,0x05,0xf5,0xfe,0x52,0xf1,0xb4,0x8d,0x9b,0xa8,0xf6,0x0e,0xa0,0x23,0x8a,0xbd,0x4c,0xed,0xc7,0x25, - 0x71,0x65,0x02,0xbc,0x95,0x54,0x28,0x69,0x5e,0xf9,0xe1,0x80,0x4d,0xb7,0x67,0xcc,0xdd,0x6c,0x7f,0x45, - 0x74,0xfd,0x8d,0x10,0xec,0x51,0x1e,0x79,0x06,0x4e,0xc5,0x1e,0x11,0x05,0x9b,0x78,0xda,0x4c,0x85,0x91, - 0x26,0xbb,0x29,0x80,0x2d,0x75,0x1c,0x7c,0x87,0x6b,0x20,0x60,0xeb,0x4c,0x19,0xf3,0x80,0xe6,0x0b,0x71, - 0x1f,0xc6,0x56,0xf0,0xec,0x77,0xd8,0x5d,0x9f,0xdb,0x54,0xce,0x95,0x83,0x75,0x93,0x0d,0xe2,0xcc,0xbd, - 0xc9,0xbc,0xe0,0x5f,0x09,0x73,0xf1,0x15,0x13,0x61,0xfc,0xbd,0xf9,0x16,0x6b,0x4a,0xff,0x8c,0xe0,0xb5, - 0x37,0x2a,0xca,0x17,0xa0,0x0b,0x80,0x8d,0x38,0x76,0x4f,0x3c,0xc2,0x7d,0xe4,0xdd,0xd2,0x9e,0xe6,0x42, - 0x32,0x78,0x8f,0xf1,0x0c,0xa5,0x08,0xe9,0xcc,0xd0,0x0a,0x23,0x18,0xe6,0xfa,0x8a,0x82,0x6a,0x20,0xa7, - 0x4c,0xab,0x27,0xce,0xc2,0x6f,0x63,0xd7,0xf6,0x80,0xdc,0x57,0x15,0xe4,0xa1,0x66,0x26,0x0f,0x54,0xaa, - 0xed,0x5b,0xe7,0x1f,0xe7,0xa2,0x26,0xe8,0x40,0x61,0x82,0x06,0x98,0x74,0x2d,0xaa,0x5c,0x5f,0x50,0xa3, - 0x47,0x95,0x81,0x45,0xcb,0xb0,0x3e,0x38,0x28,0x3e,0x55,0x50,0xe7,0x83,0x19,0x52,0xa4,0xc4,0x5d,0x50, - 0x4a,0x2c,0xb3,0xcb,0x38,0x2d,0x02,0xd8,0x39,0x61,0xd1,0x06,0xa9,0xa6,0x0c,0x61,0xf8,0x79,0xdf,0xb7, - 0x6a,0x31,0x85,0xa2,0x7e,0xe8,0x6a,0x50,0xd4,0xc6,0x87,0xbc,0x77,0x11,0x56,0x0c,0x04,0x5a,0xe3,0x6a, - 0x3f,0x35,0x00,0xa7,0x27,0x16,0x8c,0x33,0x30,0xc3,0xa2,0xcd,0xea,0xec,0x81,0x69,0x44,0x45,0x49,0x66, - 0x1b,0xf0,0x0d,0xcf,0xf0,0xcd,0x83,0x59,0xaf,0xec,0x1b,0xd3,0xb6,0x60,0xe7,0x90,0x8d,0x22,0xfc,0x1c, - 0x5e,0xd5,0x64,0x17,0x10,0xb1,0x58,0x09,0x98,0x20,0x29,0xbe,0x4a,0xfe,0x88,0x59,0xbe,0xc3,0x5a,0xdc, - 0x70,0xad,0xe3,0xbe,0xcf,0xc2,0x6f,0x33,0xa2,0x1c,0xec,0xa7,0x28,0x90,0x0b,0x4f,0x32,0x40,0x45,0x53, - 0x6e,0x6b,0x2e,0x11,0x18,0xee,0x88,0xf7,0x18,0x55,0x33,0xbc,0x0f,0xc2,0x60,0x14,0x96,0x9e,0x3a,0xc5, - 0x2e,0x8e,0xf4,0x88,0x7f,0x10,0x8f,0xe3,0xee,0x8c,0xd4,0x95,0x3b,0x82,0x39,0x82,0x52,0x12,0xa5,0xbe, - 0xa0,0x9e,0x83,0x7f,0x27,0x08,0xf2,0xb5,0x4c,0x5d,0xb6,0xa0,0x02,0x57,0xf4,0x24,0x33,0xdf,0x9b,0x06, - 0x9f,0xc6,0xdc,0x93,0x55,0xa0,0x74,0x24,0x08,0xe5,0x07,0xda,0x38,0x0b,0xe2,0xea,0x35,0xf3,0x01,0x74, - 0x53,0x59,0x83,0x1a,0x2f,0x31,0x04,0x4b,0xd4,0xa3,0xb2,0x24,0x43,0xd0,0x40,0x4a,0xe8,0x21,0x34,0xcc, - 0x0d,0xad,0x8f,0x07,0x68,0x3a,0x32,0xf8,0x49,0x2c,0x15,0x68,0x74,0xda,0x2a,0xd1,0x01,0xfe,0x75,0xb4, - 0x99,0xa2,0x18,0x7f,0xe1,0x87,0xc6,0x26,0x27,0x4e,0x92,0x82,0x94,0xdc,0x37,0xc3,0xd4,0x96,0x0a,0xb6, - 0xe4,0x13,0x36,0x6b,0x1b,0x8e,0x02,0x75,0x18,0x6a,0x91,0xda,0x59,0x05,0x40,0xff,0xc1,0xd1,0x8a,0x9f, - 0xa8,0xe5,0x87,0x91,0x92,0xde,0x89,0x9d,0x23,0xa6,0xce,0x89,0x90,0x9e,0x3c,0xcb,0x68,0x9d,0xf9,0x85, - 0xa0,0x0a,0x34,0x4a,0x28,0x13,0x91,0x45,0xed,0x4c,0xdd,0x5f,0xf6,0x28,0xaa,0x5c,0x69,0x15,0x8d,0x42, - 0x70,0x9d,0xc4,0x97,0x13,0xf5,0x0c,0x4b,0xb8,0x2d,0x3d,0x33,0x28,0x8f,0xd6,0x10,0xd2,0xd8,0xc0,0xa2, - 0x1c,0x18,0x34,0xd6,0xd1,0x54,0x85,0x15,0x45,0x26,0xee,0xfe,0x4c,0xda,0x8b,0x94,0x88,0xef,0x30,0x55, - 0x1c,0x18,0x25,0x08,0x87,0x51,0x5b,0x22,0x2a,0x2e,0xe0,0xdd,0x48,0x5f,0xad,0x1e,0xd4,0x92,0xd9,0x4f, - 0x3b,0xfb,0x88,0x50,0xb8,0x05,0xbc,0x97,0xe9,0x09,0x0e,0x88,0x99,0x76,0xb1,0x00,0x5a,0xd2,0x8e,0xfc, - 0xaa,0x0d,0xb3,0x84,0x44,0xd1,0xf9,0x49,0xcb,0x76,0xe5,0x8f,0x12,0xa6,0xf2,0x20,0x12,0xb6,0x7c,0x3b, - 0xfa,0x29,0x98,0xfc,0x92,0x61,0xaf,0xff,0xd7,0x36,0x26,0x76,0xb7,0xec,0x09,0xc7,0x2d,0x70,0x53,0xa8, - 0x85,0x2b,0x84,0x4c,0x88,0x32,0x75,0x93,0x2a,0x64,0xf9,0x2d,0x5d,0x00,0x81,0x31,0xba,0xcc,0x74,0x80, - 0xda,0xc6,0x23,0x0a,0x65,0x34,0x52,0xd6,0xf5,0x90,0x7e,0x66,0x4f,0x4b,0xd7,0x52,0xc3,0xa8,0x1b,0x61, - 0xc6,0x50,0x18,0x64,0x53,0x4a,0xf1,0xfd,0x93,0xcb,0xbb,0x54,0xfd,0x36,0x73,0xcb,0x41,0x16,0x24,0x9e, - 0xf6,0x7a,0xba,0x46,0x63,0xa9,0x96,0xa4,0xb3,0xd7,0x1e,0xf5,0x1d,0x56,0x8f,0x50,0xfc,0x4a,0xae,0x9f, - 0xcf,0x4d,0x61,0x88,0xd7,0x6a,0x76,0xca,0x70,0x10,0x69,0xbf,0x4e,0x35,0x46,0x67,0x65,0x12,0x46,0x66, - 0x83,0x51,0xbb,0xbe,0x25,0xa2,0x89,0xf0,0x4a,0x99,0x7a,0x8e,0xea,0x08,0x87,0x9c,0x2e,0xee,0x2a,0x66, - 0x9b,0x4e,0xa1,0x8b,0x2f,0x82,0xfb,0xfb,0x68,0x28,0x98,0xbc,0x08,0x77,0x33,0x8e,0x70,0xae,0x25,0xf7, - 0x45,0x2f,0xce,0xf3,0x8c,0x38,0x83,0x84,0xce,0x4d,0x99,0xcc,0x8b,0x30,0xf3,0x0b,0x85,0x7f,0x6e,0xa1, - 0xe3,0x91,0xcc,0xe2,0xa0,0xf4,0xd5,0xd7,0x71,0xf6,0x8d,0x5a,0xaa,0x02,0x82,0x0f,0x6a,0xa8,0xd5,0xca, - 0xb5,0xa6,0x11,0x93,0x60,0x45,0xc5,0x86,0x99,0x48,0x65,0x5e,0x70,0xf5,0x2e,0xd5,0xb1,0x2c,0x10,0xea, - 0x4f,0x11,0x03,0x65,0x72,0x64,0xa7,0x79,0x5d,0x62,0x4d,0x78,0xd3,0xe0,0x14,0x4d,0x6b,0x2f,0xc2,0xa7, - 0x9e,0x72,0xaf,0xc7,0xbb,0xe7,0x83,0x7c,0xa4,0x6b,0x9b,0xf6,0xd7,0xcc,0x50,0x47,0x48,0x46,0x24,0x45, - 0x05,0x5c,0xa3,0x0a,0x4d,0x54,0xcf,0x74,0x51,0x33,0xa5,0xae,0x87,0x57,0x49,0x70,0x26,0xe8,0x6b,0x04, - 0x1d,0x05,0xf4,0x1f,0x16,0x74,0xbb,0x69,0xeb,0x9d,0xb5,0xe7,0x7e,0x9f,0x79,0xbd,0xcd,0xf5,0x22,0xc8, - 0x8b,0xc2,0x9d,0x1d,0x78,0xaa,0x1f,0xa7,0x2e,0xde,0x9b,0x32,0xfb,0x37,0x71,0x13,0x51,0xd4,0x6a,0x77, - 0xc3,0xa6,0x4e,0xc6,0xb0,0x0e,0x98,0xc6,0x28,0x9b,0xd0,0x00,0x8a,0x28,0x6c,0x31,0x9e,0xd2,0xc5,0xef, - 0xb6,0xab,0x02,0xaa,0x63,0xa3,0x2a,0xee,0x06,0x8a,0xa3,0x35,0xf3,0x4e,0x22,0x23,0xed,0x24,0xfd,0xa1, - 0x83,0x2c,0x6f,0xc6,0x0c,0xad,0x45,0x13,0x67,0x97,0x05,0x3a,0xe2,0xb4,0x51,0xdf,0xed,0xe9,0xeb,0x46, - 0xe4,0xa1,0xac,0x6c,0xc9,0xdb,0x5d,0x05,0x16,0xcc,0x3d,0xe7,0x6f,0x42,0x9a,0x9a,0xa8,0x08,0x4c,0x1d, - 0x44,0x11,0xc4,0x04,0xc6,0xd5,0xd6,0x8e,0xe5,0x99,0xcb,0x1e,0x4a,0xce,0x74,0xa3,0x5e,0x24,0xe1,0x47, - 0xb9,0xfe,0x86,0x55,0x6a,0xb6,0x28,0x6b,0x1e,0xe1,0x3a,0x56,0xd2,0x87,0x0d,0xf5,0x44,0x9f,0xda,0xec, - 0x4b,0xc3,0x5d,0x74,0x65,0x9f,0xc9,0x6c,0xbc,0xbd,0x67,0x58,0x66,0x99,0xb9,0xba,0x3c,0x73,0xb8,0xc9, - 0xbb,0x6d,0x15,0x16,0x25,0xd1,0x07,0x05,0x43,0x19,0xe2,0x54,0xe9,0xf3,0x11,0xa4,0xd6,0x61,0xd1,0xf4, - 0x1a,0x52,0xf5,0xe7,0x5a,0x05,0x71,0x87,0x06,0x9a,0x3a,0x06,0xd0,0x41,0x6b,0xc0,0x7c,0x5f,0xef,0x57, - 0x98,0xb1,0x21,0x68,0xe3,0x88,0x54,0xe6,0xf8,0x91,0x8a,0xc3,0x0d,0x27,0x1b,0xfc,0x0c,0x2a,0xf6,0x94, - 0x0c,0xf7,0x34,0x27,0xfa,0xb5,0xf6,0x1a,0xe6,0x07,0x8e,0xc4,0x07,0xb3,0xc2,0xbe,0xf2,0xc3,0x34,0x78, - 0x8b,0x45,0x2a,0xd1,0x1b,0xc7,0x84,0xb8,0x54,0xa6,0xe0,0xb6,0x81,0xfc,0xe9,0xa9,0xa2,0x61,0xe9,0xb6, - 0x06,0x90,0x95,0xda,0x10,0x0d,0xe3,0x6f,0x2f,0xba,0x1a,0x0f,0xe4,0x93,0xa8,0xc1,0x20,0xee,0xfd,0xbc, - 0x88,0x5f,0x1c,0x7d,0x99,0xa2,0xf6,0xba,0x11,0x60,0x9a,0x86,0xb5,0x20,0x00,0x01,0x08,0xd2,0xd0,0xfa, - 0x16,0x69,0x20,0x63,0x6e,0x19,0x19,0x1e,0xdd,0x33,0xb6,0x4e,0x52,0x5f,0x8c,0xc7,0x5c,0xe7,0x64,0xb9, - 0x88,0xf7,0x13,0xea,0x67,0xd8,0x71,0xba,0x70,0xa3,0xbd,0xb7,0x57,0x2b,0xc0,0x37,0xf8,0xe8,0xd2,0x76, - 0xa4,0x5d,0x36,0x02,0xde,0x09,0x87,0xb5,0xb9,0x50,0x55,0x0d,0x1b,0x11,0x2d,0x95,0xb3,0x24,0x9c,0xdb, - 0xab,0xda,0x9b,0x6a,0x23,0x8a,0x1e,0xc2,0xe8,0x99,0xd8,0x11,0x56,0x63,0x89,0x1d,0xfb,0x5b,0x44,0x7b, - 0xe6,0x75,0xdf,0xd0,0x7a,0x10,0x26,0x40,0xb0,0x57,0x65,0x81,0xca,0x53,0xa7,0x19,0xfa,0x7c,0x09,0xff, - 0xd1,0x67,0x81,0x65,0x0e,0x9a,0x85,0x2c,0xd9,0xe6,0x9c,0x88,0xd8,0xba,0x02,0x2b,0x27,0x0e,0x12,0x36, - 0x2a,0x0c,0x36,0x8e,0x7f,0xcc,0x31,0xe4,0xf1,0xdc,0x82,0x62,0xc1,0x7d,0xab,0x41,0x16,0xec,0x7d,0xb0, - 0xb8,0xef,0xa2,0xcf,0xa3,0xb6,0x3e,0x29,0x51,0xbd,0xda,0xf0,0xa7,0x7f,0x4b,0x04,0x4a,0x44,0xf7,0x5b, - 0x2e,0x96,0x48,0x74,0xde,0x2c,0x6f,0x9f,0x59,0x65,0xa7,0x8d,0x1d,0x51,0x9d,0x1a,0x18,0x88,0x6b,0xba, - 0x59,0x46,0xdf,0x80,0x3d,0x37,0x29,0x6d,0x86,0x95,0x65,0x03,0xc9,0x77,0xa5,0x16,0x06,0xd0,0x2a,0x23, - 0x08,0x61,0x2f,0x3a,0xe7,0x27,0xc3,0xec,0xa4,0x0c,0xef,0xb3,0x52,0x27,0x0d,0x2d,0xa5,0x65,0x79,0x7c, - 0x34,0x38,0x0a,0x0e,0x83,0xa3,0x20,0x1d,0x70,0xb9,0xab,0x04,0xee,0x7f,0xef,0x7b,0xc1,0xe1,0x70,0x90, - 0xb1,0x34,0x87,0x79,0xa8,0xc0,0xda,0xc8,0xc8,0xda,0x72,0x66,0x3a,0x39,0x7e,0x77,0x93,0xff,0xac,0xf9, - 0x70,0x2f,0x6c,0xe1,0x91,0xb5,0xef,0xe6,0x52,0x17,0x72,0x89,0xf8,0x93,0x47,0x1b,0x30,0x91,0x68,0x5a, - 0x3c,0x93,0xd8,0x3a,0xfc,0x68,0xa8,0x42,0x8f,0x64,0xda,0xcd,0x44,0x68,0x02,0x64,0xa8,0xf7,0x04,0x74, - 0xc6,0x94,0x4b,0xe6,0x8d,0x08,0xbd,0xcc,0xc2,0xc8,0x9f,0x0a,0x04,0xc3,0xe9,0x22,0xbb,0x12,0xcd,0x40, - 0xaa,0x0c,0x98,0x6a,0x29,0x98,0x78,0xf1,0x39,0x25,0xe0,0x14,0xfe,0x54,0x74,0xbc,0x6f,0xe0,0x2d,0xaf, - 0xc7,0x1b,0x60,0xe2,0x6f,0xc1,0xde,0xb2,0xe1,0xb1,0x59,0xf9,0x76,0x33,0x45,0x66,0x95,0xaf,0x5e,0x1e, - 0xbf,0x1f,0xf5,0x17,0x1c,0xdb,0x81,0xdd,0x01,0x21,0x20,0xb3,0xf1,0x44,0xef,0x67,0xbd,0x33,0x81,0x10, - 0x78,0x40,0xe9,0xed,0xe2,0x64,0xf7,0x24,0xa1,0xf2,0xcb,0xdc,0x81,0x21,0x6f,0x2e,0x3e,0x61,0xb1,0x87, - 0x95,0x9d,0xb8,0x62,0x8d,0x78,0x87,0xe1,0x45,0x52,0x3c,0xf8,0x24,0x44,0x72,0x67,0xba,0x10,0x04,0x7e, - 0xb4,0x5c,0x8a,0xda,0x49,0xbd,0xca,0xa7,0x0e,0x95,0x2e,0xf3,0x1b,0xb5,0x7c,0xcd,0xc8,0x47,0x44,0xe4, - 0xd4,0x93,0xa4,0x6d,0xa2,0xf7,0x0a,0x03,0x95,0x5a,0x1b,0x21,0x34,0x0f,0xe6,0x10,0x04,0x08,0xeb,0x68, - 0x70,0x9f,0x1d,0x3c,0x18,0xac,0x50,0xce,0xc1,0x94,0xa5,0xb1,0xd5,0xaa,0xa8,0x58,0x54,0xd1,0x88,0xb0, - 0xf9,0x50,0x1a,0xc5,0xac,0x96,0x50,0xd1,0x94,0xa3,0xaa,0xef,0x99,0xe9,0x7b,0xb4,0xd1,0xb7,0xd5,0x73, - 0x4a,0x40,0xad,0x9d,0xb8,0xad,0x59,0xbd,0xa9,0xd2,0x74,0x23,0x2e,0x98,0xf8,0x07,0x65,0xe4,0x91,0x1a, - 0xaf,0x62,0xe0,0xbe,0x2b,0xc5,0x87,0x2a,0x2c,0x84,0x45,0xfb,0x1b,0xd7,0x73,0x06,0x52,0x06,0x3b,0x44, - 0x32,0xf0,0x3e,0x42,0x34,0xed,0x3a,0x69,0x56,0xd2,0x1d,0x94,0x14,0x65,0x47,0x5d,0x10,0x9d,0x44,0xf9, - 0xe7,0x01,0x94,0x52,0x9a,0xf9,0xed,0x40,0xab,0x98,0x7d,0x43,0xd7,0x2b,0xd5,0x2b,0xe0,0xc6,0xef,0xa8, - 0x4e,0xa5,0x86,0x1d,0x12,0xa2,0xac,0x81,0x9d,0x18,0xb3,0xd0,0xee,0xc8,0xcc,0x16,0xe1,0x06,0x62,0x23, - 0x78,0x9c,0x79,0x83,0x28,0xcc,0x02,0x71,0x06,0x0a,0x2d,0xf6,0x1e,0x07,0x5e,0x2c,0x80,0x4a,0x18,0x10, - 0x89,0xd4,0xcd,0x7a,0x74,0x3c,0xe9,0x5e,0xbf,0x45,0x56,0x10,0xf9,0x0a,0xa9,0xc1,0x5c,0x74,0x5a,0xc0, - 0xb4,0xc8,0x9f,0x84,0x0b,0xa9,0x37,0xa6,0x0f,0x55,0x6f,0x4e,0x9f,0x28,0xc0,0x7e,0xab,0x56,0xab,0xf1, - 0x6a,0x35,0x07,0x29,0x36,0x91,0xf1,0xf1,0x83,0x8b,0x3f,0xf5,0x6f,0x20,0x57,0x54,0x8b,0x58,0xf6,0xce, - 0x96,0xa5,0x92,0x7e,0xea,0x28,0x76,0xee,0x34,0xbc,0x91,0x05,0xf5,0x7a,0xa5,0x8a,0x39,0x32,0xf5,0x4f, - 0x26,0xc6,0xa3,0xa4,0xbb,0x0c,0xe7,0xfe,0x15,0x6e,0x16,0xf7,0x22,0x84,0x8f,0xa4,0x2b,0xe1,0xab,0x2e, - 0x3c,0x7f,0x49,0x33,0xaa,0x83,0xf1,0x92,0xdd,0xbf,0x2f,0xbd,0xaa,0xd8,0xd2,0x83,0x92,0x02,0x08,0x28, - 0x7d,0x12,0x6f,0x6a,0xe7,0x50,0x11,0x77,0xae,0xa3,0x03,0xe7,0x76,0xfe,0x13,0x13,0xfd,0x4f,0xec,0xc6, - 0x72,0xbf,0xec,0x54,0x41,0xac,0x95,0xd4,0x5a,0xed,0x5f,0xb1,0x98,0x83,0x9c,0xe8,0x88,0xed,0x8c,0xd8, - 0x92,0xd5,0x02,0x6d,0xf0,0x81,0xae,0x6e,0x4c,0x61,0xc7,0xf0,0xa5,0xce,0x84,0x43,0xfb,0xe3,0x18,0x35, - 0x42,0x50,0xa9,0x50,0x55,0x64,0x4a,0xb5,0x2f,0x9a,0x75,0x00,0x70,0x28,0xf1,0x75,0xbe,0x3a,0x0a,0xe4, - 0xef,0x03,0xf9,0xfb,0xf0,0x0b,0xf9,0xfb,0xe0,0xa1,0xfa,0xfb,0x95,0x4a,0xff,0x32,0x30,0x81,0xc1,0xa4, - 0xc2,0xe7,0xaa,0x80,0xaa,0xf0,0xf0,0xf3,0x40,0xeb,0x07,0x8f,0xa1,0xab,0x2e,0xa5,0x1e,0xdc,0x57,0xcd, - 0xcb,0x9f,0xa3,0x43,0xf5,0x57,0xf5,0x76,0xf4,0x85,0x4a,0xf8,0xe2,0xf3,0xfb,0x7f,0x57,0x65,0xbe,0xbc, - 0xaf,0x2b,0xd1,0xd7,0x03,0xdd,0xe8,0x75,0xe1,0x98,0x07,0xb8,0xc7,0xe1,0x57,0x7f,0x27,0x56,0xe3,0x51, - 0x78,0x74,0xff,0xfe,0x6a,0x45,0x3f,0xbf,0xf8,0x9c,0x7f,0x7e,0x75,0x38,0x50,0x9d,0x07,0x94,0xf8,0xf0, - 0x2b,0x4e,0xfc,0xfc,0xef,0x03,0x47,0x2c,0x19,0x9c,0xc0,0xe1,0x87,0x97,0x96,0x40,0x21,0xca,0x57,0x5e, - 0xa8,0x05,0x80,0x3a,0xb8,0xbd,0x73,0xe8,0xec,0x58,0xa1,0x85,0x0f,0x21,0xef,0x4a,0x8a,0xd7,0xd1,0x6b, - 0x09,0x99,0x06,0x89,0xb5,0xff,0x8d,0x7a,0x4f,0xf4,0x06,0x84,0x63,0x89,0x99,0x84,0xd9,0x89,0xbd,0xe2, - 0x9e,0x92,0xa8,0x98,0xa4,0xd2,0xc8,0x37,0xa9,0xb9,0x07,0x0f,0x77,0x58,0x99,0xec,0xc1,0x57,0xf8,0x3b, - 0xc0,0xfb,0xa8,0x52,0xe1,0xf1,0xe1,0x5a,0xdc,0xf9,0xcc,0xe9,0x26,0xca,0x2b,0xae,0xbf,0xd4,0x28,0xad, - 0x62,0x9b,0xb4,0xff,0x0b,0x82,0x62,0xe7,0x44,0xe8,0xb2,0x8e,0x72,0x55,0xe7,0xf8,0xd3,0xcd,0xf2,0x17, - 0x51,0xf1,0xe6,0x3a,0xd5,0x91,0xee,0xe8,0x04,0xb5,0x51,0x90,0x2f,0xd2,0x72,0x66,0x45,0xeb,0xc2,0xcf, - 0xde,0x73,0x84,0x96,0x49,0xae,0x62,0xa2,0xee,0xaf,0xa2,0x12,0xca,0x0b,0x1f,0x59,0x51,0xdc,0xe8,0xa9, - 0x6a,0x67,0xe1,0xad,0x38,0xb2,0x78,0xd6,0x88,0x12,0x59,0xf3,0x2b,0x64,0x73,0x68,0x71,0x0f,0x07,0x2a, - 0x94,0x3f,0xfc,0x64,0x77,0x76,0x86,0xcf,0xc1,0xed,0x3a,0xd0,0x21,0x81,0xf8,0x84,0xdf,0x9a,0xc2,0x06, - 0xeb,0xd1,0x88,0x5e,0xa9,0x74,0xa9,0xe4,0xe9,0x5b,0x0b,0x91,0x0e,0xfb,0x3a,0xb5,0xd5,0xf1,0x4c,0x49, - 0x37,0x7c,0xe9,0x5b,0xc4,0x4a,0xcc,0x6a,0xff,0xf6,0x9d,0x52,0xb6,0x84,0x40,0x94,0x98,0xa2,0x68,0x94, - 0x9d,0xf7,0xbe,0x64,0x3c,0xf0,0x2a,0x2e,0x8a,0x68,0x8a,0xab,0xb8,0x94,0x2b,0x4c,0xdd,0x22,0xd4,0x8d, - 0x78,0x7d,0x3a,0xb3,0xe6,0xe8,0x57,0x29,0xbf,0xa0,0x54,0xac,0xbc,0x72,0xc9,0x50,0xaf,0x91,0x84,0xbb, - 0x00,0x3a,0xc5,0xae,0x67,0x15,0x66,0xa5,0x84,0x51,0x9e,0x9c,0xc7,0xc8,0x7a,0x06,0xa3,0x1c,0x16,0x52, - 0x30,0x57,0x25,0xc5,0x74,0x09,0xf1,0xc4,0xb6,0xae,0x02,0x62,0xa8,0x25,0x14,0xc9,0x34,0xef,0x40,0x9e, - 0x65,0xa5,0x8e,0x32,0x8f,0x6f,0xc1,0x6b,0x9b,0x29,0xb5,0xb5,0xe6,0x97,0x4a,0x1e,0x0b,0x0a,0x84,0xcd, - 0xb2,0x6a,0xa7,0xb0,0x68,0x57,0x1c,0xd5,0x77,0xa3,0x44,0x95,0x65,0xca,0x12,0xfd,0x75,0x4e,0x5c,0x89, - 0x2c,0x64,0x4b,0x85,0x5a,0xbe,0xae,0x55,0x10,0x97,0x97,0x8a,0x46,0xe9,0x8c,0x4d,0x0f,0x7e,0x81,0x20, - 0x6d,0xa3,0x72,0x6b,0x31,0xf6,0xaa,0x5b,0x87,0x96,0xfc,0x4e,0x68,0xc9,0x41,0x0f,0x6e,0x42,0x8b,0x01, - 0x05,0xde,0xff,0x22,0xcc,0xdb,0x37,0x1e,0xef,0xde,0xaf,0xf4,0x26,0xfc,0xb7,0xed,0xbf,0x6f,0xdd,0x20, - 0x6a,0xd9,0x6e,0x52,0x7e,0x9a,0x33,0x3f,0x98,0xea,0x15,0x07,0x7e,0xbc,0xbe,0xb5,0x01,0xed,0x56,0x03, - 0x92,0xd5,0x77,0xb5,0x59,0x5d,0xe7,0x2f,0xc0,0xd0,0xc0,0xb5,0x16,0x66,0x03,0x82,0xfe,0xc2,0x74,0xc1, - 0x68,0xcb,0x03,0x07,0x1e,0x46,0x55,0x34,0x04,0x35,0xa2,0xfa,0xef,0x26,0x4c,0xd7,0x8e,0xa8,0x5d,0xf0, - 0x2f,0x0d,0x47,0xfb,0x6d,0x7b,0xde,0x8c,0x29,0xab,0x1d,0xb7,0xc9,0xd0,0xdc,0x8d,0xca,0xb5,0x11,0xf5, - 0x16,0xe9,0x87,0x7a,0xd6,0xa2,0xcc,0x66,0x1b,0x2d,0x50,0x56,0x6b,0x56,0xa5,0xb9,0x8d,0x16,0xac,0x2c, - 0xdd,0x42,0x0d,0x30,0xda,0xc1,0xa5,0xd9,0x4a,0x2d,0xd3,0x1e,0x89,0xc4,0x78,0x5b,0xaf,0xfd,0x6b,0xed, - 0x62,0x15,0xa9,0x95,0xdb,0xc5,0x68,0x06,0xfb,0x6c,0x71,0x84,0xc8,0x2a,0x69,0xb7,0xb6,0xdb,0x59,0xf5, - 0x82,0x1f,0x88,0x8b,0xc3,0x35,0x87,0x0f,0xaf,0x97,0xd0,0x64,0x18,0x9e,0xfc,0x34,0x21,0x6a,0x17,0x58, - 0xfb,0xfc,0x82,0x5d,0xa8,0xc4,0x13,0xa6,0xfb,0x8c,0xe7,0xd7,0xf5,0x86,0xe7,0xc5,0x1a,0x35,0xcf,0xc3, - 0x82,0xb0,0x41,0x62,0x5d,0x20,0xe4,0x6b,0x65,0x43,0x86,0x7c,0x0b,0x70,0x24,0xf8,0x85,0x9b,0x89,0x60, - 0xfe,0x4e,0x1f,0xaf,0x2a,0x86,0x5b,0x28,0x7f,0x4c,0xac,0x5c,0x22,0xe1,0x8d,0x9b,0xcd,0xac,0x2f,0x02, - 0xf4,0x5c,0x48,0x69,0x84,0xde,0x50,0xa4,0xf4,0x0c,0x22,0xe7,0x05,0x32,0x78,0x6e,0x6c,0xe6,0x39,0x69, - 0x70,0x68,0x0b,0x6f,0xb0,0xd0,0x11,0x7a,0x0f,0x03,0xfb,0x8e,0x5b,0x78,0x26,0x9d,0x75,0xaa,0x1b,0x6c, - 0x92,0xed,0x3f,0x0f,0xc7,0xa8,0x8a,0x36,0x5e,0x69,0xff,0x58,0x11,0xc8,0x79,0x08,0x9a,0xdf,0xa9,0x82, - 0x94,0xef,0xed,0x39,0xfc,0x10,0xb8,0x5e,0x57,0x81,0x12,0xf6,0xf6,0x32,0xd3,0x33,0xf1,0xa1,0x63,0x6a, - 0xdd,0x75,0x5e,0x4c,0x3a,0x32,0x8b,0x0e,0x56,0xbb,0x93,0x14,0x1d,0xf8,0x86,0xe9,0xd0,0x1d,0xd0,0xe1, - 0xb5,0xee,0xa8,0x58,0xf7,0x45,0x07,0x06,0x0d,0x9d,0x8b,0x68,0x19,0x4b,0x05,0x29,0x4f,0x85,0x7b,0x78, - 0xa3,0xdd,0x9c,0xfb,0x26,0x4e,0x87,0x74,0x65,0x46,0x3c,0x1f,0xbc,0x7c,0x36,0x57,0xa4,0xed,0x06,0x98, - 0xc1,0x53,0xd9,0x82,0x75,0x27,0x89,0x33,0x6f,0x6f,0x4f,0x44,0x19,0xe3,0x81,0x03,0xa3,0xa8,0xe6,0xb2, - 0x04,0x94,0x5a,0xf6,0x67,0x90,0x64,0x41,0x36,0xa9,0x5c,0xf4,0xfb,0x89,0x1f,0xf5,0x12,0x57,0x02,0x45, - 0xe0,0x68,0x1c,0x87,0x1b,0x88,0x62,0x44,0x3d,0xd1,0xe5,0xd2,0xf2,0xd6,0xb1,0xee,0x1f,0x5b,0xb4,0x5f, - 0x02,0x6b,0xc0,0x79,0x06,0xe1,0xb6,0x2d,0x67,0xaf,0x1c,0x64,0x5b,0xad,0xc1,0x15,0x9c,0xe6,0x4b,0xa1, - 0x22,0xf7,0x41,0x75,0x3b,0x3f,0x87,0x8b,0x24,0x4b,0xe7,0x4e,0x0b,0x8f,0xe3,0x93,0xb4,0xdb,0x65,0xf9, - 0x8b,0x73,0xeb,0x88,0xd6,0x63,0x8e,0x37,0x02,0xeb,0x41,0x9e,0x55,0x4a,0x1c,0xa5,0xc2,0x95,0xe3,0xd1, - 0x02,0x6d,0x89,0xf0,0x86,0x3e,0xc4,0x6a,0x42,0xb5,0xe3,0xac,0x59,0xef,0xa4,0xef,0x65,0x5d,0xa2,0xbb, - 0x4d,0xb2,0x88,0x21,0x2e,0x85,0x0c,0xcf,0xbc,0x81,0xc3,0xce,0x41,0x83,0x67,0x55,0x02,0x90,0xc9,0x98, - 0xc8,0xff,0x85,0x38,0x91,0x73,0xfa,0x7a,0x08,0xd2,0x6d,0x26,0xee,0xab,0xa3,0xb5,0xe8,0xbd,0x3b,0xff, - 0x83,0xc7,0x3a,0xa0,0x31,0x83,0xf8,0xa7,0x1d,0x01,0xa5,0x4f,0x5d,0x7a,0x01,0xfe,0xd5,0x6c,0xc8,0x9d, - 0x33,0x29,0x21,0x4d,0xf7,0x1b,0xab,0x1a,0xe6,0x35,0xb9,0xb3,0x59,0x7c,0x5a,0x49,0x89,0x14,0xdd,0x14, - 0xa7,0xe8,0xe9,0x70,0x44,0xb9,0xcd,0x99,0x60,0x6d,0xf5,0x0f,0xe8,0x51,0x9b,0xb7,0x27,0x5e,0xba,0x7e, - 0xd2,0xdc,0x94,0x88,0x26,0x94,0x0c,0x35,0x17,0x18,0xa9,0x37,0x65,0xb0,0x5b,0x32,0xfe,0x20,0x57,0x71, - 0x4f,0x95,0xc6,0x9c,0xa8,0xa4,0x32,0x33,0xa7,0x06,0xa2,0x0a,0xa4,0x27,0x4c,0xe9,0x10,0x8d,0xaf,0xcb, - 0xfa,0x47,0x87,0xde,0xb0,0x56,0x41,0x8f,0x56,0xfe,0x8a,0x9a,0xb7,0xa9,0xae,0x6a,0x11,0x3d,0x9c,0x74, - 0xbb,0x66,0x51,0xd7,0x1c,0x9b,0x4e,0x5e,0xac,0x2e,0xc3,0x83,0xdf,0xdc,0xd3,0xb1,0xd7,0x3d,0xf0,0x9f, - 0xf1,0xe7,0x35,0x3e,0xdf,0xd3,0x32,0x3d,0x09,0x8f,0xfc,0x77,0xe1,0x7d,0x7f,0x37,0x7c,0xe0,0xbf,0xa1, - 0xdf,0x5f,0x87,0x0f,0xfd,0xb7,0xe1,0xe7,0xfe,0xf3,0xf0,0x0b,0xff,0xf7,0xf0,0xef,0xfe,0x8b,0xf0,0x4b, - 0xff,0x25,0x9e,0xd9,0x5e,0x9e,0xbc,0x19,0x86,0xb7,0xd7,0x45,0x40,0x7f,0x7d,0xe6,0x0d,0x83,0x93,0x07, - 0xfe,0xfb,0xa1,0xef,0x9c,0x38,0xc1,0xc9,0xd7,0x43,0x9f,0x2e,0xf9,0xe0,0xe4,0xf7,0xe1,0xda,0x7f,0x79, - 0x72,0xa4,0x4a,0x1e,0x51,0x6e,0x8f,0x72,0xef,0xb7,0x96,0xba,0xaf,0x4a,0xdd,0xaf,0xb7,0x77,0xa8,0xfe, - 0x0a,0xab,0x29,0x3f,0x50,0xfc,0x01,0x15,0xbf,0xab,0x9c,0xcf,0xbd,0xfa,0x4f,0x74,0xbf,0xfc,0xc5,0x3d, - 0xe3,0x4b,0xfa,0xa6,0x2f,0x34,0xf7,0x35,0x35,0xe7,0xdc,0xa3,0xac,0xb7,0xa8,0x77,0xcf,0xb9,0x17,0x9c, - 0x3c,0xaf,0xa6,0xe3,0xbf,0xa3,0xaf,0xa1,0x83,0xc6,0x76,0xa5,0xe2,0x0b,0xb6,0xd2,0x43,0x96,0x0c,0xe7, - 0xad,0xae,0x8f,0x84,0x5a,0x89,0xb7,0xaa,0xc4,0x73,0x2a,0xc1,0xed,0x6e,0x94,0x40,0x47,0xb2,0x31,0xdf, - 0xb0,0x25,0x33,0x91,0x6a,0xf9,0x22,0x5e,0xb1,0x85,0xe6,0x6a,0x7f,0x70,0x72,0x3a,0xee,0x0d,0xbb,0xab, - 0x7b,0xec,0xba,0xea,0xde,0xca,0x61,0x6f,0x56,0x8e,0x47,0xe5,0x76,0x0f,0xfc,0xd7,0x5b,0xd0,0x56,0x3b, - 0xd6,0x7a,0x6d,0x61,0x2d,0x86,0xb2,0xb7,0x74,0xa9,0xd5,0x50,0x90,0xe5,0xed,0x58,0x1a,0xb2,0x10,0x56, - 0x09,0xdd,0x8a,0xcd,0xd2,0x3a,0x16,0xa6,0x08,0xb7,0x70,0xe0,0x66,0xe1,0xfe,0x11,0x5d,0x8d,0x6f,0x38, - 0x48,0xdd,0x05,0xc0,0x05,0x67,0xe6,0xe2,0xe4,0xc9,0xb0,0x66,0xae,0xa1,0xef,0xa9,0x94,0xd5,0x70,0x04, - 0x7a,0xe1,0x59,0x50,0x32,0x60,0x81,0x7f,0xf2,0xbe,0xa5,0x06,0x74,0x99,0x06,0x69,0x98,0x07,0x69,0x97, - 0x08,0x7f,0x2a,0xf4,0xae,0x56,0x08,0x95,0x88,0x32,0x9a,0x10,0xec,0x53,0xde,0x6e,0x2d,0x0f,0xa2,0xae, - 0xc7,0x87,0xde,0x64,0x7f,0x9f,0x86,0xf7,0xb5,0x2f,0x45,0xcd,0xc3,0x22,0x46,0xbb,0x83,0x77,0x0c,0x37, - 0x0d,0xe7,0xec,0xe9,0xce,0x48,0x42,0x31,0x76,0xa8,0x4d,0xf6,0x95,0x8c,0x7b,0xc1,0x9e,0xdd,0x67,0xdd, - 0x2e,0xdc,0x1e,0xb2,0x9e,0x0f,0x5c,0x25,0xce,0xf0,0xfc,0xb0,0xd3,0xe0,0xbd,0x39,0xa3,0x7b,0xc4,0xd8, - 0x7a,0x41,0x8d,0xbf,0xa5,0x5b,0xf9,0x1e,0x6b,0x14,0xae,0x56,0xf8,0xfd,0x7c,0x6f,0x8f,0xc0,0x02,0xbf, - 0x35,0x8a,0x41,0xb3,0x84,0xad,0xa9,0xe1,0x6e,0xa9,0xc6,0x88,0x70,0xc8,0xae,0xa7,0xec,0xb2,0xc6,0x50, - 0xe3,0x05,0x9d,0x53,0x84,0x2f,0x4f,0x16,0x43,0x8f,0xf0,0xce,0x6a,0x55,0xb0,0xc2,0xe6,0x6a,0xf5,0x02, - 0xe2,0xe4,0x17,0x5a,0xa3,0x87,0xfb,0x84,0xa3,0x7a,0xdf,0x8d,0xc2,0x8b,0x93,0x8c,0xce,0xe0,0x50,0xe4, - 0x2b,0x66,0x2d,0xe9,0x3b,0xa3,0x43,0xe7,0x0d,0xca,0x20,0x97,0xe9,0x13,0xff,0xe3,0xd5,0x1a,0x08,0xc3, - 0xdf,0xf5,0xd8,0x46,0xa2,0xa6,0x66,0x08,0x52,0x0d,0x23,0x21,0xfc,0x05,0x83,0xec,0x5a,0xfb,0x36,0x90, - 0x4d,0xe3,0x12,0x20,0xc6,0xb2,0xdb,0xc6,0xdd,0x08,0xb1,0x78,0x59,0x39,0x54,0xad,0x5e,0x54,0x72,0xed, - 0x0d,0xdb,0x40,0x28,0x7c,0xcc,0xe2,0xed,0x94,0x2e,0xa7,0xa6,0x04,0x7c,0x6f,0xef,0xd0,0x12,0x76,0xd7, - 0xda,0xaa,0x14,0x59,0xb4,0x7f,0x6c,0x04,0xc2,0x56,0x2e,0xb3,0xb3,0xbe,0x76,0x94,0x1d,0x9d,0xc0,0x55, - 0xb6,0xf5,0x98,0x01,0x3d,0x31,0xef,0x56,0xbc,0x47,0x29,0xc3,0x81,0x28,0x1c,0xf9,0x45,0x85,0x4c,0x23, - 0x39,0xad,0xaf,0xb6,0x9c,0x9c,0x7e,0xc5,0xff,0x81,0x73,0x87,0x66,0xab,0x71,0xe1,0x2b,0xc4,0xe3,0x6a, - 0xe5,0xc4,0xe9,0xfe,0x4f,0xef,0x1c,0x16,0x8d,0xd5,0x79,0xed,0x2a,0x0f,0x8f,0x4a,0x9a,0xc5,0x65,0xf2, - 0x52,0xc5,0x1c,0xb7,0xe4,0x45,0x92,0x0e,0xbb,0xc8,0xd4,0x12,0x07,0x71,0x6a,0x5f,0xb9,0x9e,0xbe,0x92, - 0xd7,0x3a,0xf9,0x55,0x89,0x08,0xe2,0x4a,0x26,0xb0,0x5a,0x81,0x51,0x3e,0x56,0x45,0xae,0x92,0x02,0x0e, - 0x3e,0xd0,0xb7,0x7c,0x89,0x14,0x54,0x7b,0x83,0x86,0x00,0x22,0x66,0x39,0x44,0x2d,0x1d,0x5c,0x6d,0x68, - 0xf1,0xbd,0xc2,0xf2,0xee,0xec,0xc8,0x97,0xee,0x5d,0x4d,0x94,0x75,0x99,0xac,0xc2,0x76,0xba,0x54,0xb2, - 0x53,0x74,0x0f,0xad,0xb2,0x07,0x83,0x44,0xe2,0x76,0xa9,0x03,0x91,0xb8,0x3b,0x5b,0xb2,0x54,0xbb,0xf5, - 0x05,0xc5,0x33,0x3a,0x08,0x7b,0xc9,0xb3,0x17,0xb5,0x9e,0x03,0x6e,0x80,0xe5,0x0b,0xaf,0xab,0x66,0xa2, - 0xca,0x09,0x00,0x21,0x41,0x49,0xe6,0x27,0x83,0x06,0xe4,0x2b,0xac,0xe2,0xee,0x40,0x13,0x31,0x5d,0xad, - 0x72,0xb7,0x94,0x06,0x6b,0xc7,0x45,0x62,0x5f,0x6b,0x53,0xf3,0x33,0xf8,0x7a,0xfd,0xf9,0x95,0xab,0x1f, - 0x2f,0x53,0xbf,0x0e,0x35,0x01,0xbc,0x2e,0x0a,0xa8,0x10,0xd9,0xd5,0x00,0x92,0x20,0xf2,0x6b,0xe0,0x11, - 0x40,0x77,0xc5,0xff,0x31,0xbc,0x5d,0x5e,0x05,0xb7,0xeb,0xaa,0x22,0x7d,0x37,0x6b,0x52,0x52,0xbd,0xea, - 0x6d,0xc5,0xe1,0xad,0x9b,0x63,0x40,0x5b,0x02,0x33,0x9c,0xa9,0x97,0x0d,0x3f,0x5a,0x77,0x80,0x32,0xd6, - 0xfa,0x72,0x79,0x65,0xbb,0x0a,0x96,0xc9,0xb6,0x1c,0xaf,0x0b,0xed,0xbb,0x59,0xda,0xeb,0x37,0x7e,0x43, - 0xfa,0x52,0x81,0x3d,0xed,0x0e,0xd1,0x90,0xd8,0x18,0x28,0xb5,0xfa,0xcd,0xb2,0xe5,0xda,0xb7,0x3b,0x6d, - 0x65,0xf7,0x37,0x3d,0x1c,0xd4,0x37,0xba,0x52,0x17,0xb3,0x9b,0xda,0x22,0x3b,0xa8,0x35,0xb6,0x53,0x67, - 0x61,0x98,0xdb,0xb3,0x63,0x8d,0xa4,0x96,0xf5,0x65,0xc9,0xe8,0x2f,0x7d,0xbc,0x7f,0xe4,0xc9,0x33,0xf3, - 0x08,0x32,0x4f,0x28,0x37,0xba,0x2d,0x63,0xf2,0x9b,0xc3,0xa9,0xc9,0xb6,0x9a,0x06,0x93,0x22,0xfb,0xab, - 0xb9,0xf0,0xa6,0xc5,0xeb,0xed,0x72,0x25,0xd7,0xd9,0x45,0xd3,0xb5,0x58,0x12,0xb6,0xe1,0x41,0x63,0x31, - 0x6c,0x3b,0x84,0x8b,0x56,0x5f,0xc6,0xcd,0x2a,0xc4,0x08,0xb2,0xd3,0xf2,0x66,0xe2,0x46,0x84,0x8a,0xb5, - 0x7f,0x3b,0x8e,0xe3,0xb9,0x28,0x15,0x6f,0xce,0x4e,0x89,0x31,0xeb,0x57,0xfd,0x4e,0x85,0x9a,0xe8,0xa0, - 0x55,0xf8,0x6b,0xe3,0xc6,0x89,0x75,0xd0,0x91,0xab,0xfa,0x3a,0xb0,0x80,0xcc,0x5a,0x0c,0x01,0x7c,0x6b, - 0x35,0xd8,0x5f,0xc7,0x2e,0xb1,0xbf,0x30,0x2e,0xd1,0xb9,0xec,0x47,0xbf,0x31,0x7e,0xff,0x36,0xb9,0x22, - 0x52,0x3d,0x81,0x6c,0x5e,0xa6,0xf0,0x23,0x1a,0xa6,0xf3,0x6e,0x8f,0xb9,0xb1,0x09,0x28,0xa4,0xcf,0xe6, - 0x96,0xa2,0x91,0x02,0x00,0xca,0x55,0xc2,0xf0,0x82,0x3d,0x76,0xff,0xd8,0xbc,0x27,0xee,0xae,0x5f,0x7f, - 0x88,0xd0,0xcd,0xd4,0x0e,0xff,0xdd,0x8d,0xd8,0x8f,0x12,0xba,0x09,0x59,0x97,0x3b,0xe6,0xaa,0x5f,0xf6, - 0xaa,0xf2,0x45,0x5c,0xb6,0x9c,0x3e,0xec,0x06,0xd6,0x5b,0xff,0xaa,0x96,0x3d,0xe6,0xce,0xea,0x18,0xe9, - 0xae,0x4e,0xeb,0xa5,0x5b,0xea,0x7f,0xec,0x20,0xea,0xd5,0xf4,0x60,0x14,0x32,0xfc,0xe0,0x28,0x54,0x19, - 0xbb,0x78,0x7b,0xa7,0xe6,0x5e,0xe6,0x61,0x6a,0xdc,0xfa,0xc1,0xb6,0x4d,0xa9,0x7a,0x95,0xf6,0xf6,0x2d, - 0xd2,0x00,0xc5,0x5b,0x11,0xf6,0x07,0x7b,0x6b,0xad,0xb1,0xbd,0xa9,0xf6,0x51,0xb4,0xdf,0xf2,0x71,0xfd, - 0xc8,0xdb,0xe0,0xfe,0xa1,0xed,0xd5,0x87,0x67,0xb3,0x76,0x03,0xd8,0x3f,0xd4,0x48,0xe3,0x20,0x6d,0xb6, - 0x55,0x83,0xf9,0x0f,0xb5,0x54,0x3b,0x4b,0x8d,0x76,0xa0,0x29,0xa6,0x7c,0x35,0xd5,0x74,0x35,0x11,0xd2, - 0xca,0xb4,0x94,0x43,0x54,0x21,0x50,0xa7,0xa0,0x41,0x09,0xfd,0x35,0xe4,0xc8,0x53,0x3c,0x93,0x65,0x27, - 0xac,0x85,0x3b,0x84,0xc9,0x45,0x90,0x36,0x3a,0x4b,0x8a,0x6f,0x6c,0x4a,0xac,0xc5,0xd1,0x4d,0x8c,0xf0, - 0x8a,0xae,0x85,0x32,0x55,0x47,0x35,0x12,0xae,0xd9,0x6a,0xbb,0x18,0xac,0xd4,0xbc,0xa1,0xc2,0xc9,0x1b, - 0xd8,0x17,0xfa,0x10,0x15,0x51,0x55,0xa7,0x81,0x4a,0x15,0x26,0xb7,0x4e,0xf6,0xcf,0x0c,0xd3,0x30,0x63, - 0xbe,0x80,0x63,0xe8,0xb2,0xd6,0x29,0x61,0xe4,0x5a,0xfb,0x96,0x9a,0xa9,0x7e,0x4c,0x85,0x51,0x08,0x71, - 0x4c,0xb5,0x72,0x6b,0xcd,0x02,0x6e,0x28,0x7c,0xcd,0x6a,0xcd,0x8d,0xc2,0x99,0x31,0x06,0xaa,0xcc,0x9a, - 0xff,0x11,0x38,0x1e,0xfb,0x1c,0x41,0xd3,0x22,0x89,0x4f,0xd2,0x4b,0x9e,0xfa,0x48,0x4d,0x1d,0x16,0x9c, - 0x3a,0x9c,0x0a,0x07,0x10,0x18,0x71,0x72,0x30,0x6a,0xac,0x21,0x2a,0x36,0xf7,0xdf,0x8e,0xfd,0x1c,0xa6, - 0x3e,0x34,0x96,0xc5,0xfb,0xc0,0x81,0xfb,0x8f,0xe0,0xe4,0xf4,0xfa,0x74,0xff,0x6c,0xd5,0x1b,0x76,0xbd, - 0x83,0x69,0xa5,0x29,0x3e,0x82,0x2a,0x44,0x01,0x1e,0xb5,0x68,0x3c,0x4d,0x73,0x98,0x65,0xb1,0x90,0x2a, - 0x4e,0x46,0x88,0xcd,0x33,0x53,0x66,0xd7,0xee,0xfd,0x2a,0xfc,0x96,0xb5,0x97,0x3c,0x8a,0x05,0x8d,0xc2, - 0xc9,0xa3,0x6b,0x25,0xc0,0x53,0xab,0x44,0x44,0x67,0x95,0x28,0x94,0x78,0xa0,0xbc,0x2e,0x48,0x2b,0x35, - 0x38,0x83,0xb7,0x01,0xeb,0x5a,0x66,0xb0,0x62,0xe7,0x45,0x9d,0xaf,0xa1,0x8c,0x0e,0x71,0x9b,0x98,0x60, - 0xc7,0xe3,0x0e,0xab,0xa7,0x2b,0xaf,0x84,0xe3,0xb0,0xaa,0xd0,0x9f,0x84,0x63,0x15,0xe2,0x84,0xc7,0x36, - 0x6e,0x5c,0x7d,0x08,0x1f,0x2e,0xe2,0xf9,0x71,0xf3,0x09,0x73,0xa1,0x16,0x92,0x98,0x39,0x57,0x4f,0xd3, - 0x3a,0x75,0x6e,0xcc,0x1e,0x66,0x73,0xc4,0x61,0x37,0xb6,0xca,0x33,0x7f,0xe2,0x05,0x51,0xc5,0xf6,0xd5, - 0x37,0x4b,0x6b,0x98,0xb7,0x7a,0x82,0x6c,0x20,0xd5,0x5e,0x7d,0x45,0x4d,0xd0,0x94,0x4a,0xfb,0x27,0x2c, - 0x07,0xb9,0xb2,0x0b,0x43,0x60,0xf3,0x46,0x5f,0x66,0xca,0x1b,0xd8,0x41,0x1f,0x2e,0xe1,0x66,0x37,0xb7, - 0xaf,0xf4,0x61,0xf9,0x69,0xca,0x19,0xe9,0x33,0x01,0xc2,0x20,0x77,0xdb,0x6a,0xa4,0x3e,0x64,0xb3,0xa6, - 0x86,0x8a,0x0c,0x3f,0xda,0x00,0xd6,0x0d,0x4c,0x65,0xc5,0x7d,0x52,0xde,0x84,0x9a,0x2a,0x84,0xfb,0x0f, - 0xfb,0xd1,0xfe,0x7e,0xe7,0xf1,0x61,0xdf,0x83,0x5a,0x9f,0xa5,0x5b,0x1a,0x75,0x1f,0x32,0x0f,0xbe,0x63, - 0x74,0x6d,0x44,0x5a,0x0d,0x91,0x52,0xa2,0x10,0x9b,0xf2,0x54,0x00,0x3f,0x16,0xe1,0xc8,0xb0,0xd2,0x04, - 0x9d,0x6a,0x12,0x15,0x5c,0xa4,0xbe,0x62,0x4c,0x9b,0xef,0xd8,0x80,0x63,0xb5,0xe4,0xf0,0xe0,0xcc,0x0a, - 0xa0,0xdb,0x21,0x76,0xf1,0xe9,0x10,0xab,0x14,0x5c,0x0a,0x0b,0x68,0x2b,0x25,0xa9,0x82,0xd0,0xb2,0x51, - 0x92,0xca,0x2c,0xd3,0xf7,0x0d,0x68,0x9c,0xf9,0x0c,0xb1,0x0d,0x5a,0xb7,0x8e,0xab,0x1b,0xcf,0x05,0x1b, - 0x6b,0x7d,0x04,0x25,0x5e,0x5e,0xeb,0xb2,0xa1,0xc7,0x0b,0x71,0x94,0x1a,0x68,0xae,0xa2,0xa7,0x9c,0xe9, - 0x31,0xe6,0x7c,0x75,0x60,0x40,0xea,0x24,0xb5,0x50,0x98,0x6c,0x27,0x6d,0x26,0x52,0xea,0x90,0x10,0xcd, - 0x0b,0xa1,0x05,0x93,0x69,0xfd,0xd1,0xcd,0x0d,0x2b,0xb7,0x6f,0x18,0x70,0x8c,0x8e,0x97,0xde,0xb6,0x4d, - 0xd9,0x9f,0xdd,0x26,0x9b,0xce,0x4f,0x94,0xdd,0xca,0xf6,0x3d,0xa1,0x93,0x44,0x47,0xa2,0xb9,0x27,0xcd, - 0x59,0x56,0x8f,0x8c,0x83,0xcd,0xeb,0xa4,0x64,0x3b,0x5a,0x6b,0x75,0xcd,0x33,0x2d,0x57,0xde,0xb6,0xd4, - 0x90,0x04,0x04,0x8e,0xd3,0x3c,0x7f,0xa3,0xd6,0x05,0x36,0xd6,0x42,0x62,0x70,0xbb,0x01,0x16,0x9f,0xf7, - 0x0b,0x05,0x16,0xd1,0x49,0x61,0x83,0x45,0xd1,0xfd,0xdc,0xc8,0x7a,0x69,0xf0,0x46,0x40,0x93,0xb0,0xf6, - 0x34,0x6c,0x57,0x5c,0x85,0x2f,0x2c,0x70,0x19,0x09,0xa5,0x41,0x7d,0x1b,0x78,0x88,0x3c,0x84,0xc7,0xc1, - 0x80,0xe5,0x7e,0x6f,0xc0,0x70,0x7d,0xd4,0xb6,0x32,0x32,0x8d,0x37,0xdf,0x1c,0xef,0xfd,0x7e,0xae,0xc6, - 0xcb,0xee,0x0a,0xaa,0xf1,0xe6,0xdd,0xfb,0x06,0x8c,0x13,0x33,0xae,0x91,0x1a,0x58,0xf2,0xb1,0x70,0xec, - 0x97,0x66,0xe4,0x3a,0x2e,0x4c,0xd2,0x5c,0xe9,0x26,0xda,0xb5,0x8c,0x9b,0xc5,0xb2,0x6c,0x63,0xd4,0x0f, - 0xfa,0x99,0x1a,0x35,0x5b,0x0b,0x55,0xa3,0xce,0xba,0x0f,0xf4,0xd3,0x5a,0x03,0xaf,0xe5,0x5e,0x85,0xd3, - 0xea,0x00,0xca,0x52,0x24,0x3c,0xed,0x0c,0x37,0x98,0xfb,0xc6,0xd0,0x1a,0x54,0xa7,0x5c,0xdf,0x77,0x2c, - 0x42,0xd9,0x68,0x92,0x72,0x6b,0xfa,0x55,0x2d,0x04,0xa2,0xe1,0xf9,0x2c,0x2a,0x9b,0x50,0x1b,0xe4,0x8e, - 0x8d,0xc6,0x8a,0xed,0x8d,0xb1,0x47,0xdd,0x96,0x56,0x9a,0x92,0x99,0x4d,0x8d,0xaf,0x8f,0x69,0xe4,0xa2, - 0xb7,0x28,0x93,0x59,0x4f,0x3c,0x1c,0x6e,0x1d,0x6d,0xdb,0xe4,0xeb,0xcc,0xc1,0x1d,0xb3,0x6f,0xb0,0x07, - 0x5b,0x17,0x61,0x6b,0xa3,0xb5,0x09,0x6c,0xb6,0xd6,0xba,0x18,0x7f,0xba,0xb1,0x2d,0x8b,0xd2,0x3e,0x89, - 0x8d,0xb5,0x11,0x0d,0x93,0xe4,0x0f,0xd3,0x7f,0x0b,0x31,0x62,0x22,0xe5,0xc2,0xbf,0x35,0x01,0x2c,0x90, - 0x36,0x51,0xe8,0x85,0x07,0x39,0x27,0x0c,0x44,0xf9,0xf1,0x80,0xf3,0xc2,0x74,0x08,0xd7,0x5e,0x76,0xd6, - 0x06,0x6f,0x10,0x22,0x1d,0x36,0x03,0x5d,0xe7,0xec,0x0c,0x61,0x0d,0xf4,0x5d,0xbf,0x29,0xb6,0x3d,0x99, - 0x19,0xec,0xb5,0x58,0xad,0xdc,0x0f,0x16,0x64,0xe1,0x60,0x8b,0xfe,0xa5,0x1b,0xf9,0xb0,0xe3,0x5f,0x28, - 0x6e,0x79,0x43,0xb2,0x77,0x36,0xde,0x40,0x04,0xcc,0x77,0x98,0x81,0x6f,0x69,0x56,0x54,0x1a,0xa5,0xc5, - 0xbe,0x4d,0x20,0x36,0x57,0xb4,0xba,0x06,0x1a,0x17,0xe1,0x76,0x39,0x8d,0x9f,0x6e,0xbf,0x19,0xf3,0xff, - 0x15,0x37,0xa3,0xb8,0x1a,0x2c,0xcd,0xcd,0x98,0xc3,0x24,0xbf,0xbe,0x2e,0xe3,0x56,0xc2,0x64,0x1b,0x46, - 0x3f,0xda,0x8e,0xd1,0x8f,0x86,0xda,0x82,0xc2,0x42,0x5a,0xd9,0x86,0xa5,0x51,0xe5,0xac,0xa2,0x69,0x16, - 0x04,0xd3,0xea,0x01,0xec,0x53,0x0e,0x87,0x78,0xda,0x87,0x6d,0x10,0x87,0x18,0x81,0x37,0x07,0x65,0xc4, - 0x01,0x7b,0x9b,0xea,0x37,0xa2,0x87,0xd2,0x0f,0x8e,0x8d,0xea,0x4a,0x45,0x0e,0x8b,0x2a,0x16,0x48,0xe9, - 0x07,0x2c,0x90,0x52,0xb1,0x40,0x92,0x3a,0x9e,0xdf,0x92,0x7f,0x34,0x54,0xbd,0xb1,0xe1,0x91,0x82,0x47, - 0xc4,0x9f,0xe7,0xf8,0xa2,0x0d,0xb4,0x63,0xcb,0x11,0xee,0x40,0x3a,0x35,0x49,0xc2,0x56,0x94,0xb3,0xa5, - 0xc1,0x1a,0x8e,0x68,0xb6,0xd4,0x8a,0x6e,0xfe,0x54,0x43,0x5b,0x50,0x4d,0xdb,0xd0,0xb7,0x23,0x1a,0xe9, - 0xf9,0x7f,0x23,0x9a,0x69,0xbe,0x00,0x6d,0x41,0x32,0x2d,0xc5,0x2a,0x14,0x63,0x2f,0xdf,0x9d,0x08,0x26, - 0xfd,0x48,0x04,0x53,0x6b,0xf4,0x4e,0xf4,0x22,0xa5,0xef,0x46,0x2e,0x0d,0xf9,0xed,0x7f,0x39,0x6a,0x49, - 0xef,0x46,0x2d,0xe9,0xff,0x45,0x2d,0x1f,0x8b,0x5a,0x52,0x83,0x5a,0x94,0xf6,0x87,0x18,0x12,0x28,0xd1, - 0x4f,0x42,0xc4,0x9e,0xb5,0xb0,0xfe,0x8f,0x1e,0xad,0x73,0xb4,0x8c,0x92,0x59,0x74,0x9e,0xcc,0x12,0xe4, - 0x87,0xb7,0xf5,0xdb,0x32,0xb8,0xa9,0xbd,0xfe,0x05,0xe7,0xd8,0x1a,0xd6,0xe2,0x9d,0xcd,0xec,0xd8,0xba, - 0x5a,0x07,0xaf,0xef,0x5e,0xc0,0xe3,0xca,0x92,0x4e,0x00,0x65,0xec,0xed,0x29,0xb0,0xbb,0xd0,0x29,0xda, - 0x46,0xb2,0xe7,0x78,0x3c,0xaf,0x58,0x37,0x26,0x31,0x94,0xda,0x46,0x7d,0x43,0xb5,0xab,0x31,0x3b,0xbb, - 0xa2,0xb9,0x7a,0x4b,0xb0,0x1a,0x6c,0x13,0xb5,0xa2,0x08,0x1c,0xcf,0xa4,0xe1,0xc5,0x96,0x26,0xd3,0x5a, - 0x93,0xe5,0x66,0x7b,0x9b,0x2f,0x63,0xf6,0x9b,0xcf,0xff,0x0a,0x20,0x8c,0x95,0xc6,0xaa,0x6a,0x3e,0xa9, - 0x38,0x2a,0x62,0x5c,0x88,0x0f,0xd5,0x00,0x9a,0x34,0xa9,0xf5,0xd8,0xe6,0x56,0xd6,0xeb,0xca,0x76,0xe2, - 0xc3,0x73,0x1c,0x7d,0xda,0x24,0x37,0x58,0x9c,0xa4,0x8d,0x31,0x4b,0x0c,0x8b,0x93,0xd8,0xd3,0x4c,0xc0, - 0x98,0x29,0xa7,0x1f,0xf5,0x69,0x66,0x16,0x83,0x96,0x61,0x9e,0xc6,0xa2,0x2d,0xdb,0x98,0xa7,0x9f,0x9a, - 0x99,0xe6,0x9f,0x32,0xd3,0xf8,0xd3,0x67,0xaa,0xdc,0x18,0xd6,0xc7,0x9a,0x33,0xfb,0x54,0xfa,0x46,0xe3, - 0x37,0xdf,0xe0,0x1e,0x3f,0x7e,0x54,0xe3,0xff,0x5e,0x18,0x33,0x5c,0x71,0xac,0xed,0xf4,0xc6,0x16,0x74, - 0xb5,0xf0,0xbb,0x1f,0x3b,0x8f,0x96,0xb3,0xf7,0xdf,0x3b,0x8f,0xf4,0xee,0x79,0xc0,0x74,0xfa,0x7d,0x92, - 0xba,0x67,0xf8,0x34,0xb6,0x80,0xae,0x83,0x73,0xce,0x11,0x17,0x46,0x2a,0xfe,0x3a,0x3b,0xfb,0xba,0xa8, - 0xc2,0x82,0xb9,0xd7,0xe2,0xf7,0xf0,0x5a,0x5f,0xa2,0x46,0x65,0x40,0x0c,0xa7,0x5e,0x81,0x18,0x7a,0x57, - 0xe6,0x54,0x75,0x4a,0xd8,0xb2,0x9f,0x8b,0x0d,0x55,0xde,0x53,0x51,0xbf,0x81,0x1d,0x15,0xa6,0x0b,0x9d, - 0xbf,0xf7,0x1e,0xf4,0x1e,0x3a,0x7e,0x9b,0x39,0x97,0x44,0x64,0xde,0xdb,0x53,0x91,0x99,0x7f,0x46,0x44, - 0x99,0xea,0xbb,0xb7,0x28,0x62,0xf7,0x15,0x21,0x67,0xa5,0x36,0x64,0xac,0x5c,0x6e,0xe3,0x34,0xb8,0xe5, - 0x20,0x98,0x81,0xf3,0xae,0x8c,0x92,0xbc,0x70,0xfc,0xe2,0xa6,0x28,0xe3,0xab,0x17,0xcf,0x29,0x85,0xbf, - 0x3a,0x2f,0x9e,0x3b,0xfe,0x24,0xc9,0xaf,0xae,0xa3,0x3c,0xfe,0x59,0xc6,0x12,0x38,0xdf,0xa8,0x84,0x8e, - 0x1a,0x5d,0xd0,0x41,0x48,0xcb,0xf9,0x8d,0xc4,0xc1,0x70,0x9e,0xe9,0xcf,0xce,0xff,0xfc,0x7f,0x3a,0xf7, - 0x0f,0x8f,0xfe,0xde,0x79,0x15,0xe5,0x97,0x9d,0x65,0x94,0x76,0x7e,0x8c,0xd3,0xe2,0x3a,0x5b,0x8c,0x63, - 0xc4,0xb9,0x8c,0xe0,0x24,0x2b,0x70,0xde,0xce,0x62,0x58,0x11,0x72,0x6c,0x82,0x8e,0x4a,0xed,0xc8,0x42, - 0xa9,0xd0,0xec,0xbd,0x5e,0xcf,0xf1,0xf3,0xf8,0x9c,0xae,0xf8,0xb7,0x71,0x2a,0xb5,0x8e,0x2f,0xe2,0x8e, - 0x8c,0x96,0xe6,0x3f,0x9b,0x75,0xce,0xe3,0x8e,0x94,0x88,0xc7,0x7e,0x67,0x2e,0x4d,0xe6,0xf1,0x24,0x8f, - 0x8b,0x0b,0xc6,0xe3,0x9d,0x39,0x4d,0xba,0x13,0x4d,0x88,0x9c,0xa2,0xa1,0x8f,0x69,0xae,0xbc,0xf1,0x4f, - 0x39,0x26,0x47,0xe0,0x3c,0xc1,0x8f,0x5a,0xda,0xbb,0x68,0xc9,0x1d,0xc9,0x5f,0x1e,0xc2,0x75,0x32,0x49, - 0x68,0xa5,0xca,0x45,0x11,0xdc,0x46,0x23,0x38,0xa0,0x9c,0x67,0x49,0x5a,0x9a,0x55,0x7c,0xf2,0x16,0x2b, - 0x31,0x4e,0x8a,0xe8,0x9c,0xae,0xa0,0xc0,0x79,0xae,0xbe,0x88,0x04,0x61,0x1f,0x18,0x59,0x8a,0xe8,0x74, - 0xa6,0xf8,0x2f,0xc9,0x37,0xc9,0x96,0x0a,0x7e,0x82,0x38,0x24,0xce,0x8b,0x31,0x5e,0x7f,0xd3,0xec,0xdd, - 0x3b,0xde,0x12,0xfa,0xb7,0x03,0xc3,0xd3,0x49,0x46,0x50,0x40,0x9b,0x35,0x8a,0x52,0xc4,0x97,0x80,0xcd, - 0x06,0x55,0x7e,0x47,0x3f,0x3b,0x23,0xfd,0x1b,0x3b,0x92,0xa6,0x04,0xab,0xdf,0xd0,0x8d,0x8c,0x6c,0xf9, - 0xdb,0x29,0xb3,0x8e,0xca,0x30,0x25,0x68,0x5c,0x2f,0xb3,0x82,0x37,0x4e,0xff,0xa6,0x7d,0x28,0x4a,0x1e, - 0x99,0x2a,0xa3,0x46,0x67,0x7e,0x21,0x74,0x47,0xa1,0x96,0xa2,0x8c,0xce,0x8f,0x0d,0x18,0x51,0x8a,0xe3, - 0xab,0x09,0x3e,0x93,0xf8,0x2f,0x9d,0x42,0x25,0xd3,0xcd,0xfc,0xae,0x8c,0xe7,0xc5,0x71,0xbe,0x40,0xe1, - 0xb8,0xec,0xe0,0x9d,0x00,0xe1,0xe5,0x6f,0x68,0x4e,0x39,0x1b,0x08,0x14,0x28,0x50,0x15,0xfd,0x06,0x5a, - 0xab,0xcd,0xb2,0x70,0xaf,0xb6,0x4c,0xc6,0x0b,0xc4,0x98,0xa0,0xb5,0x25,0x62,0x06,0xb1,0x25,0x6a,0x23, - 0x39,0x56,0x69,0x18,0xcb,0x55,0xac,0x13,0xe9,0x53,0x12,0x5e,0xe0,0x7d,0x22,0x25,0xc4,0xa3,0xa1,0x8f, - 0x96,0x15,0x76,0x2f,0x51,0xd9,0x41,0x76,0x47,0x37,0xd9,0x51,0xb6,0x28,0x9d,0x28,0xe5,0xfe,0x51,0xa7, - 0x53,0x2d,0x5b,0x4f,0x5a,0x7b,0x9d,0x71,0x44,0x62,0xe7,0x75,0xd6,0xa8,0xad,0x8e,0x6a,0xe7,0x26,0x2e, - 0xa5,0xe4,0xd7,0xa9,0xda,0x69,0xf9,0xa8,0x17,0x57,0x63,0x85,0x10,0x9b,0xfd,0x5f,0x61,0xb8,0x98,0x89, - 0xfe,0x2d,0xa5,0x93,0xb4,0x73,0x45,0x00,0x9f,0x14,0x31,0x8d,0x63,0xac,0x2a,0x3d,0x19,0x53,0x9b,0xf4, - 0x8f,0xfc,0x7a,0x2e,0xe1,0x81,0x1c,0xf9,0xab,0x9b,0xe5,0x4e,0x1a,0x03,0x50,0x15,0xbe,0x49,0xde,0xc7, - 0x63,0xe9,0x8e,0x3f,0xb9,0x27,0xc9,0x7a,0xb7,0x48,0xf3,0x84,0xb7,0x40,0x3e,0x4c,0x6a,0x81,0xd5,0x93, - 0xbf,0x7a,0x91,0xaf,0xd4,0x1a,0xcb,0x18,0xd3,0x45,0x19,0xab,0xe1,0xbd,0xa2,0x91,0x46,0x37,0x81,0x23, - 0x7f,0x55,0xf1,0x45,0x5c,0x70,0xa2,0xfa,0x90,0xd4,0x5f,0xe2,0x71,0xaa,0xd2,0xcd,0xa7,0x2a,0x7f,0xb1, - 0xc8,0x55,0x05,0xf5,0xa5,0xc6,0x9e,0x27,0x9c,0x2a,0x7f,0xd5,0xf0,0x08,0xde,0x72,0x4e,0xd5,0x5f,0x66, - 0xd8,0x92,0xba,0x90,0x71,0x5c,0x65,0xb2,0xce,0x0c,0x1d,0xaf,0xf8,0x87,0x4e,0xb4,0xf6,0x54,0x12,0xb6, - 0xec,0xaa,0x64,0x36,0xf7,0xb5,0x51,0xa5,0x51,0xec,0xf9,0x02,0xe4,0xf7,0x71,0xb5,0x2b,0xb4,0x77,0xb8, - 0x54,0xe8,0x22,0xe8,0x20,0x54,0x50,0x27,0x99,0x74,0xa2,0x1a,0x6c,0xc0,0x86,0x26,0x9a,0xe5,0x71,0x34, - 0xbe,0xe9,0x44,0x62,0x8b,0xae,0x07,0xff,0xa9,0xe0,0xa2,0xab,0x6d,0x01,0x07,0xc9,0xae,0xe0,0x49,0x7e, - 0x37,0x21,0x4a,0x52,0xdf,0x26,0x84,0x39,0xbf,0x7d,0xfb,0xe2,0x4d,0x67,0x4e,0xdd,0xb8,0x32,0xb0,0xce, - 0x05,0xa1,0x7e,0xcf,0x54,0x94,0xfb,0x12,0x28,0xf6,0xdd,0x75,0x1c,0xcf,0xe9,0x20,0x25,0x57,0x91,0xbd, - 0xd0,0xa6,0xc4,0x6b,0xeb,0x3b,0x9a,0x61,0xe5,0xd3,0x98,0x1a,0xd5,0x38,0xa1,0x83,0xb3,0x09,0xa4,0x1f, - 0x5d,0xc9,0xb9,0xd9,0xec,0xe3,0x38,0x9b,0x3f,0x47,0x84,0x2c,0x87,0x3e,0x3a,0x88,0x95,0xb5,0x51,0xe2, - 0x69,0x46,0xa8,0xfd,0xea,0xa7,0x79,0xe0,0xc8,0x57,0x67,0x31,0x77,0xd6,0x16,0x1e,0xb4,0x51,0x48,0x85, - 0x0d,0x2b,0x84,0x56,0x21,0x48,0x7e,0xeb,0x8b,0x4b,0xde,0x5c,0xfb,0x2e,0xd0,0x10,0x20,0x69,0x1d,0x4e, - 0xac,0x95,0xf8,0x8e,0x4b,0x3d,0x99,0xcd,0xb2,0xeb,0x42,0xb0,0x9e,0x72,0x30,0x60,0xe1,0x95,0xce,0x24, - 0xa7,0xb1,0xdd,0x64,0x8b,0x9c,0x80,0x6d,0x99,0x8c,0x62,0xa0,0x6d,0xbe,0xc5,0xe4,0xa2,0x56,0x6e,0x8d, - 0xb8,0x7a,0xed,0xa6,0xec,0xcc,0x17,0xf9,0x3c,0x2b,0xe2,0xa2,0xd7,0xc1,0x05,0xa9,0x4a,0xd7,0x8b,0x00, - 0x94,0x84,0x4d,0xa3,0x16,0xe8,0xf7,0x45,0x59,0xce,0x83,0x83,0x83,0xa3,0xaf,0xee,0xf7,0x8e,0xbe,0xf8, - 0xb2,0x77,0xd4,0x7b,0x78,0xd0,0xb9,0xbe,0x20,0x28,0xa4,0xfe,0x3b,0xb8,0xe5,0x0d,0xd2,0xc7,0x28,0x92, - 0x92,0x9a,0x66,0x16,0xa3,0xec,0x64,0x13,0x82,0xd3,0xa2,0x53,0x64,0xf0,0x1d,0x53,0x74,0xd4,0x1d,0x87, - 0xc1,0xc5,0xe8,0x45,0x77,0x8b,0x1b,0x99,0xb2,0xa9,0x02,0x25,0xb2,0xe3,0x84,0x78,0x84,0x54,0xc0,0x66, - 0x94,0xde,0xd0,0xcd,0x7f,0xd3,0xeb,0xfc,0x8b,0x3a,0xc3,0x05,0x16,0xcd,0xe8,0x67,0xd1,0x31,0xfc,0x57, - 0x47,0x68,0xa5,0x0e,0x04,0x05,0x18,0xed,0xf9,0x4d,0x07,0x4a,0x92,0xa0,0x11,0x00,0x0d,0xf6,0x32,0x77, - 0x54,0x80,0xad,0x45,0x5a,0x26,0x33,0xce,0x7d,0xf9,0xf5,0xf3,0xce,0x0c,0x94,0x48,0x41,0x1b,0x4d,0xc8, - 0xda,0xbe,0x85,0xf5,0x46,0xd9,0xa3,0xae,0x95,0x90,0x8d,0x52,0x5b,0xde,0xb6,0xfa,0xb4,0x1a,0xbc,0x45, - 0x04,0x68,0x1d,0xdc,0xe5,0x9d,0x9c,0xdd,0x7e,0xf5,0x3a,0xea,0x4e,0xe1,0xb0,0x6e,0x3c,0x0e,0xdc,0xdc, - 0x44,0x95,0x44,0x05,0x11,0x3f,0xf9,0x98,0x26,0x3d,0x26,0xa2,0x36,0xa7,0x9c,0xe6,0xf6,0x9d,0xc7,0x04, - 0x16,0x18,0x68,0x91,0x8c,0xe5,0xc2,0x77,0x7c,0x5d,0x8d,0xee,0x2a,0xf5,0x45,0x17,0xf3,0xc5,0x88,0x60, - 0xf8,0x27,0xea,0xe4,0xf9,0x77,0xcf,0xde,0xca,0x6f,0x05,0x58,0x0b,0x02,0x6b,0xf8,0xdb,0xc2,0xe5,0x48, - 0xcb,0x5e,0x24,0xd3,0xb4,0xc0,0xf5,0xf5,0xe2,0x6d,0x47,0x85,0x80,0x6f,0x07,0x26,0xd9,0x02,0x22,0xce, - 0xcf,0x69,0x59,0xb0,0x29,0xb4,0xa0,0x54,0xf0,0x12,0x87,0x56,0x36,0x02,0x2b,0x3b,0x43,0x7d,0x00,0x06, - 0x4c,0x99,0x08,0x4c,0xe8,0x50,0xd2,0xaf,0x7b,0x04,0x25,0xe3,0x0c,0x64,0x12,0x51,0x2e,0x73,0xd5,0x0d, - 0x91,0x2f,0xa6,0x4b,0x9a,0xd1,0xe2,0x9c,0xee,0xce,0xab,0xa8,0xb8,0x04,0xfa,0xc5,0x77,0x07,0x3f,0x1c, - 0x7f,0x4a,0x58,0xef,0x1a,0x48,0xf9,0x5b,0xf9,0x70,0xfc,0x0b,0xa2,0x3d,0xc4,0xae,0xf4,0x3b,0xf5,0x55, - 0xa5,0xbd,0xad,0x7c,0x17,0x03,0x1b,0x89,0x29,0x29,0xb5,0x34,0x32,0x3d,0xad,0x15,0x11,0x5b,0xa3,0x4b, - 0x38,0x85,0x28,0xa9,0x72,0x6e,0x91,0x02,0x1d,0xa8,0x72,0x5e,0xe4,0x59,0x4a,0x54,0x17,0xaf,0xbe,0xfb, - 0xfa,0xf8,0x2d,0x61,0x15,0x42,0x66,0x85,0x2a,0xf6,0x1d,0x91,0x8a,0x4c,0xe9,0x52,0x5a,0x86,0x30,0x99, - 0x57,0xd1,0x5c,0xe7,0x7d,0x9b,0x65,0x53,0x82,0x82,0x57,0x94,0xd2,0x79,0xf2,0xf6,0x45,0x45,0x27,0xab, - 0x7c,0x43,0x25,0x0b,0x77,0xc0,0xbd,0xbf,0x83,0xbb,0x59,0x1a,0x39,0x75,0xd4,0x61,0xd7,0xb3,0x39,0x27, - 0x33,0x39,0xb2,0x04,0xd2,0xfb,0x51,0x91,0xac,0x89,0x4a,0xe9,0xb8,0xd5,0x5d,0xea,0x71,0xd9,0x97,0x11, - 0xed,0x32,0xfd,0x93,0x94,0x4c,0x46,0x23,0x05,0x64,0xea,0xcb,0x2c,0x9d,0x5a,0x49,0xc4,0x62,0x0a,0xd6, - 0xfd,0x96,0x16,0x7a,0xa6,0x4a,0x77,0x0e,0x88,0xae,0x53,0xc5,0x04,0xc5,0xcc,0x54,0xb9,0x5a,0xa5,0x77, - 0x71,0x94,0x8f,0x2e,0x40,0x74,0xe1,0x2f,0xaf,0x07,0x1d,0x24,0x22,0x6e,0xe9,0x96,0xe2,0xd3,0xf6,0x96, - 0x4f,0x9b,0x50,0x75,0x7c,0xc6,0x18,0xfd,0x77,0x1f,0xf4,0x1e,0x2c,0x3d,0x5d,0xfc,0xdd,0xf1,0x13,0xa1, - 0x07,0xb1,0xb0,0xaf,0x80,0x11,0x3e,0x50,0xfe,0xc9,0x5b,0x4d,0x87,0xab,0x43,0x59,0xeb,0x48,0x1d,0x6b, - 0xfb,0x8e,0xa1,0x53,0x22,0x35,0xdf,0xfe,0xf2,0xea,0x79,0x4e,0x29,0xf9,0xbb,0xe7,0xd4,0xdf,0xdb,0x67, - 0x4f,0xbe,0xfa,0xe2,0xcb,0xcf,0x3b,0x94,0xda,0x19,0x73,0x72,0x87,0xd2,0xa5,0x26,0x74,0x82,0x9b,0x75, - 0x9e,0xbd,0x6c,0xaf,0xf3,0xec,0xa5,0xd4,0x19,0xc1,0xf9,0x28,0x2a,0x5d,0x5f,0x3d,0xd1,0x40,0xdd,0x52, - 0xfe,0xc5,0xff,0xfc,0x7f,0x9f,0x55,0x90,0x4e,0x85,0xbf,0x01,0xd9,0x18,0xa7,0xa3,0x9b,0xd6,0xe2,0x13, - 0x9d,0x2b,0xe0,0x44,0xb0,0xf3,0x43,0x7c,0xb3,0x01,0x4f,0x74,0xf2,0x6a,0x05,0x2e,0xf8,0x78,0xff,0x18, - 0x8b,0x27,0xbe,0x31,0xd0,0xe7,0xa4,0xb3,0x28,0x18,0x11,0xda,0x54,0x64,0xaf,0x43,0x68,0x61,0xcc,0x57, - 0xc3,0x2c,0xcb,0x2e,0x91,0xbf,0x98,0x33,0x16,0x52,0xe1,0x18,0xb9,0xf8,0x1f,0x74,0xb9,0xf6,0x08,0x6b, - 0xd1,0xed,0x4a,0x18,0xe5,0xb2,0x83,0xf8,0x70,0x04,0xe0,0x40,0x14,0xaa,0x6f,0x1f,0xeb,0xde,0x51,0x83, - 0xba,0x62,0x76,0x0e,0x02,0xd9,0x92,0x60,0x5b,0xd0,0x1e,0xcf,0xa2,0xa0,0xeb,0xe0,0x47,0x62,0x5f,0x0b, - 0xa0,0x3a,0xb9,0xcd,0x68,0x7a,0xb1,0x6e,0x04,0x97,0xb6,0xba,0x5f,0xb4,0x13,0x3b,0xba,0xd0,0x08,0xc9, - 0xcd,0x31,0xd2,0x29,0x37,0x0e,0x86,0xf9,0x80,0x71,0x62,0xa4,0x89,0xa0,0xa4,0xbc,0x47,0x18,0xbb,0x90, - 0x0b,0x0e,0x43,0xd7,0x8b,0xd2,0x43,0xfc,0x4a,0x88,0x7f,0x83,0x5b,0x70,0x8a,0x86,0x23,0x7d,0x06,0xff, - 0x86,0x7c,0xb7,0x20,0x99,0x4e,0x8f,0xc8,0xaf,0x01,0x7b,0xd1,0x39,0xe6,0x55,0x1a,0x76,0x51,0x38,0xcf, - 0xea,0x26,0xdf,0xa8,0x6c,0x5d,0xc3,0x44,0xdb,0x96,0x70,0xe4,0x2c,0x75,0x04,0x8b,0x6c,0x94,0x57,0x5c, - 0x68,0xbd,0xac,0x45,0xdc,0x15,0x1b,0x35,0x6a,0x94,0x5d,0xbd,0xde,0x2b,0x9b,0x3a,0xdb,0xac,0x59,0xa7, - 0x2b,0xad,0xba,0xcc,0xb8,0xb6,0x4f,0xaa,0x80,0x79,0x75,0xeb,0xa4,0xb8,0xd2,0xe6,0xac,0xb8,0xc2,0xc6, - 0xac,0x04,0x8b,0xe1,0x9e,0x53,0x2c,0xb0,0x55,0x23,0x8f,0x69,0x44,0xb4,0xaf,0x72,0x0d,0x6a,0x76,0x6f, - 0x31,0xc7,0x98,0x35,0x1a,0xa4,0xb3,0x8d,0x8d,0xeb,0x70,0x68,0xc1,0x8e,0xe4,0x01,0x38,0x35,0xd6,0xd4, - 0x3d,0x30,0xdb,0x67,0x37,0xce,0xa3,0xe4,0x97,0x0a,0xd0,0x81,0xe2,0x6d,0x09,0x17,0x0a,0x63,0xa7,0x0a, - 0xd1,0xd9,0x2b,0x95,0x5d,0x02,0xe6,0x35,0x72,0xa3,0xc9,0xd3,0xa5,0x99,0xa4,0x11,0xf3,0x23,0xdc,0xdc, - 0xb6,0xed,0xe1,0xa9,0x6f,0xd9,0x1e,0xae,0xb8,0x7d,0x7f,0xb8,0xea,0xb6,0xfd,0x21,0x6e,0x39,0x9d,0x19, - 0xc6,0x9f,0x68,0xf4,0xf9,0x86,0xac,0xe5,0xe3,0x84,0x2d,0xf1,0x5f,0x93,0xb5,0x7c,0x4d,0x64,0x5d,0x36, - 0x8d,0xd3,0xf3,0x59,0x72,0xd9,0x99,0xc6,0x74,0xef,0x13,0x6d,0x76,0x1e,0xff,0x91,0x4c,0x3b,0x57,0x7c, - 0x51,0x8c,0xa9,0xc0,0x92,0xe5,0x08,0x86,0x2c,0x89,0xdb,0xc4,0x2f,0xdf,0x51,0xe9,0x42,0x0d,0x1b,0x24, - 0x09,0x11,0x83,0xf3,0x34,0x89,0x17,0xd7,0xf4,0x77,0x1a,0x4b,0xec,0x20,0x8c,0x18,0x83,0x26,0xda,0x20, - 0xfe,0x23,0x86,0x00,0x86,0xf6,0xa0,0x93,0xd2,0x50,0xe2,0xb4,0x21,0x7e,0x39,0xce,0x62,0x90,0x39,0x8d, - 0x74,0x2d,0x82,0x79,0x6a,0x06,0x98,0xcd,0x8b,0x59,0x14,0xa5,0x7f,0x4a,0x1a,0xf3,0x53,0x52,0xd2,0xc8, - 0x46,0x17,0xd1,0x65,0x3c,0xfb,0x78,0x91,0x4c,0xbd,0x96,0x92,0xcb,0xbc,0xa3,0x41,0xcc,0xe1,0x7c,0x64, - 0xdc,0x94,0xce,0x24,0x34,0xc8,0x69,0xbc,0x24,0x56,0x0b,0x73,0x69,0x93,0xd0,0x44,0x13,0x82,0x8c,0x2c, - 0xdd,0x14,0xd0,0xfc,0x40,0x99,0xd3,0x18,0xeb,0x1f,0xe7,0x2a,0x7e,0x00,0x11,0x36,0x97,0x68,0xa7,0x29, - 0xa8,0xf9,0xb9,0x2a,0x41,0x85,0x67,0x59,0x8e,0x42,0x75,0x61,0xcd,0x6b,0x8c,0x04,0x2d,0xc9,0x50,0x3e, - 0x46,0x5c,0xf3,0xdd,0x22,0x19,0x27,0xd3,0x78,0x8b,0xb8,0x86,0x38,0x16,0x9c,0x8a,0x18,0x10,0x82,0xfd, - 0x9c,0x4d,0x40,0xe5,0x2b,0x99,0x4c,0x9c,0x94,0x1b,0x32,0x9b,0x63,0x29,0xab,0x85,0x35,0x71,0x3c,0x63, - 0x8f,0x2d,0x31,0xb5,0x93,0x7e,0x9a,0xd4,0xe6,0xf7,0x71,0x53,0x6a,0xf3,0x92,0x61,0xa1,0x43,0xf8,0xa2, - 0xb3,0xcc,0x70,0x47,0x50,0x99,0x8a,0x41,0x8f,0xe3,0x4a,0x5a,0xb3,0xac,0x2d,0x55,0x0c,0x8f,0x7b,0x49, - 0xb1,0x21,0xb7,0x99,0xca,0xca,0xd7,0x9b,0x99,0xc6,0x86,0x83,0x89,0xf3,0x71,0x43,0x80,0x73,0x5c,0x2b, - 0x4a,0x13,0x13,0x10,0x89,0xd3,0x0f,0x4b,0x71,0x62,0xe9,0xa3,0xce,0x95,0xeb,0x4a,0xcc,0x75,0xd3,0x51, - 0x58,0x66,0xf1,0x54,0xa7,0x69,0xce,0x9b,0xb6,0xfc,0x9a,0x6a,0xc6,0x79,0xd5,0x43,0x9d,0x83,0x87,0x04, - 0x21,0x9e,0x6c,0xc8,0x73,0x7e,0x8e,0x8a,0x52,0x3a,0x6d,0xc8,0x73,0x7e,0xc5,0x7d,0x3c,0xbf,0xcc,0xae, - 0x8a,0xb2,0x2e,0xd3,0xe1,0x0c,0xa8,0x22,0x4f,0x23,0xa8,0xb5,0xda,0xa2,0x1d,0x3d,0x72,0x90,0xa3,0x69, - 0x43,0xb4,0x43,0xc7,0x72,0x1c,0x4d,0x1b,0xb2,0x9d,0xe7,0xb4,0x30,0x26,0xd5,0x96,0xed,0x64,0xb1,0x95, - 0x51,0x89,0x76,0x9e,0x73,0xc7,0x26,0x43,0xcb,0x76,0x7e,0xce,0xa9,0x6b,0x9d,0x58,0x09,0x77,0x7e,0x25, - 0x8c,0x5e,0x15,0xd6,0xc2,0x9d,0x5f,0x33,0x19,0x48,0x4d,0xb8,0xf3,0x34,0xbe,0x8e,0xa7,0xac,0xa6,0xdb, - 0x14,0xef,0xa8,0xad,0x3f,0x57,0x05,0xb6,0x6f,0x7f,0x43,0xd2,0xf3,0x74,0xa3,0x42,0x0d,0x08,0xee,0x12, - 0xf8,0xbc,0xa1,0x3b,0xca,0xaa,0x40,0x7c,0x2f,0xc1,0x2d,0x44,0xa0,0x9d,0x26,0x20,0x32,0x59,0x14,0x4f, - 0x08,0x6c,0xef,0x92,0xf9,0x6c,0x05,0xae,0x76,0x99,0x8f,0x86,0x18,0x4b,0xe4,0x63,0x01,0x5f,0x5d,0xf0, - 0x53,0x03,0xbf,0xad,0xd2,0x1f,0x1a,0xe5,0x05,0xd1,0x74,0x6d,0xd2,0x9f,0x27,0x22,0xf7,0x89,0xef,0x14, - 0xfb,0x7c,0x8b,0xf9,0x43,0xec,0x63,0xb0,0xcd,0x34,0x9e,0x25,0xbf,0x5f,0x62,0x6a,0x49,0x4b,0xd3,0x46, - 0xe8,0xf3,0x34,0x83,0xe8,0x2c,0x8d,0xa2,0x9c,0x36,0x33,0x8d,0xad,0x89,0xb7,0x89,0x7f,0xa4,0x84,0x2a, - 0x8e,0x9a,0x5b,0xe5,0x40,0x15,0xb2,0x35,0x98,0xd2,0xc2,0xbf,0xf6,0x45,0xd9,0x90,0x04,0x3d,0xb1,0x65, - 0x13,0x35,0xe0,0xb0,0x8a,0x09,0x59,0x4f,0xa7,0xe7,0x92,0x28,0x65,0x30,0xc5,0x99,0x4c,0xb7,0x43,0xdc, - 0x19,0x56,0x42,0x64,0x43,0x15,0x01,0x17,0xe3,0x7a,0x8e,0x26,0x9c,0x47,0x57,0x65,0x94,0x47,0x84,0x03, - 0x79,0x16,0x7c,0xc9,0x82,0xb4,0x30,0xf2,0x89,0x58,0xee,0x0f,0x34,0x35,0x8e,0xad,0x54,0x03,0xd7,0x88, - 0xee,0xd0,0x79,0x5e,0xaf,0x45,0x9c,0x3e,0x15,0xa1,0x15,0x8c,0x78,0xb7,0x3b,0xcb,0x24,0x6a,0x15,0x11, - 0x51,0x3e,0xf5,0xfc,0xbb,0x3d,0xb2,0x8b,0xf8,0x1c,0xb7,0xdf,0x15,0x26,0xd3,0xeb,0xbc,0x93,0xf9,0xca, - 0xb8,0x20,0xc5,0x21,0xaa,0x2f,0xc1,0x58,0x79,0x9e,0xf6,0x18,0xfc,0x0e,0x21,0x8f,0x29,0x5d,0xf2,0xea, - 0x6a,0x91,0x6b,0xf4,0x9c,0x08,0xca,0x64,0x96,0x4c,0xc7,0x40,0xd8,0x9d,0xef,0xe3,0xce,0xe5,0x82,0xd6, - 0xd1,0x6a,0x2d,0x6b,0x1c,0xa1,0x31,0x6e,0x02,0xdc,0x0a,0x86,0x7f,0x94,0xa5,0xbf,0x4c,0x29,0x91,0xe6, - 0x34,0xce,0x17,0x97,0x58,0x8e,0x32,0x2b,0x31,0xf4,0xb1,0xc8,0x87,0x22,0x5c,0xbb,0xb4,0x88,0x4d,0xf1, - 0x90,0xb5,0xc7,0xa0,0x3c,0x98,0xb2,0x55,0xd7,0xb1,0x55,0x4e,0xb6,0x4f,0x95,0xdd,0xdc,0x02,0x34,0x4e, - 0x4b,0x14,0xd3,0xb5,0xda,0x90,0x11,0xfd,0xbc,0x98,0x75,0x2e,0x12,0xa6,0x04,0xe8,0x88,0x63,0x45,0x98, - 0x80,0xa0,0x62,0xd7,0xd1,0xe8,0xa2,0xbc,0x06,0xc9,0x4a,0xb3,0xf3,0x91,0x62,0xe1,0x21,0x96,0x0f,0x97, - 0x0b,0x5e,0xd6,0x0e,0x81,0x6d,0x8e,0x0b,0x9b,0x97,0xa3,0xd8,0x2a,0x36,0xfa,0xc5,0x34,0xa8,0x05,0x47, - 0xdf,0xc6,0xe7,0xf9,0x82,0x28,0xc0,0x4a,0x78,0x74,0x51,0x13,0x1e,0xd1,0x9a,0x32,0x80,0xb1,0x00,0x87, - 0xb8,0x5a,0x5a,0xb2,0x98,0x8e,0xff,0x1f,0x80,0xb9,0x28,0xdd,0x98,0x26,0x31,0x92,0x04,0x80,0x54,0x29, - 0xf9,0x3d,0x65,0xd8,0xbd,0x4e,0x66,0x98,0xb6,0xb5,0x57,0xa8,0x06,0xcd,0x7c,0x9a,0x10,0xfd,0xf3,0x47, - 0xf2,0x3b,0xf2,0xaf,0x63,0x9a,0xf6,0x35,0x60,0x97,0x7e,0x5c,0xc5,0xb1,0xa2,0x44,0xcf,0xe1,0x80,0x6b, - 0x53,0x90,0x94,0xc7,0xdb,0xc5,0x48,0x90,0xa3,0xdc,0x2d,0x48,0x8a,0xae,0xb6,0x08,0x92,0xde,0x81,0x94, - 0xa3,0x71,0x8c,0xb5,0x28,0x09,0x7d,0x6d,0x15,0x24,0x35,0x25,0x49,0xbf,0x8f,0xeb,0x92,0xa4,0xf8,0x43, - 0x82,0xa4,0x08,0x26,0x0a,0x74,0x0e,0x08,0xae,0x18,0x41,0xfd,0x09,0x79,0xd2,0x79,0xf2,0xfb,0x75,0x9c, - 0x33,0x24,0x7e,0x8c,0x48,0xe9,0x67,0xa1,0xc2,0xdb,0x44,0x4a,0xa9,0x25,0x52,0x7a,0x4a,0xe0,0x35,0x2e, - 0xe3,0x29,0x21,0x94,0xb1,0x25,0x56,0xc2,0xb3,0xba,0x9d,0x68,0xf8,0x2d,0xbb,0x3c,0x04,0x4b,0x55,0x41, - 0xda,0xf2,0x8b,0x08,0x07,0x92,0x8e,0xdd,0x79,0x54,0x10,0x42,0x01,0x47,0x21,0xdc,0x58,0xdc,0x2a,0x69, - 0xfa,0x35,0x8b,0x79,0x3a,0x7f,0x5e,0xd2,0x64,0x31,0x9e,0x77,0x48,0x98,0x6a,0x2d,0xdb,0xe8,0x83,0xd1, - 0x84,0x7d,0x95,0x11,0x91,0x3f,0xfd,0xef,0x90,0x32,0x5d,0xce,0xb2,0xff,0x7f,0x09,0x99,0x9e,0x00,0x1b, - 0xe7,0xcc,0x0b,0x12,0xac,0x11,0x46,0x17,0x6c,0xb1,0xe4,0xa3,0x5f,0x27,0x92,0xe9,0xe8,0x33,0xf7,0xa7, - 0xca,0x94,0xea,0xae,0xb9,0x50,0xac,0x04,0xca,0x42,0xd4,0x24,0x57,0xca,0x1c,0x50,0x41,0x35,0x08,0x78, - 0x4b,0xc6,0xde,0x7f,0x08,0xf6,0x33,0x12,0xa7,0x2b,0xe0,0x02,0x35,0x44,0x2a,0xce,0xe5,0xc6,0xd4,0x2b, - 0xa4,0x4b,0x97,0x68,0x57,0xc9,0x9c,0x0a,0x2d,0x74,0x12,0x94,0x08,0x1a,0x01,0x17,0xb0,0x99,0x12,0x20, - 0xef,0xe3,0xc4,0x4e,0xc0,0x68,0x2c,0x52,0x54,0x48,0x98,0xb9,0x09,0x3d,0x61,0xe0,0xfd,0xf1,0xdd,0xc2, - 0x27,0x30,0x6e,0x8a,0x17,0x36,0x82,0x27,0x75,0x87,0xa9,0x93,0xb0,0x29,0x73,0x42,0x1d,0x8b,0x35,0x51, - 0x8c,0x11,0x23,0x85,0x96,0x9a,0x5a,0x46,0x63,0xf5,0x74,0x57,0x95,0xba,0x84,0x03,0x15,0x6b,0x34,0xe5, - 0x1d,0xb5,0x9b,0x62,0x0e,0xd4,0x6f,0x52,0xc8,0x1f,0x6a,0x63,0x43,0x1c,0xf5,0x11,0xf3,0x65,0xce,0xbe, - 0x21,0x94,0xba,0x6b,0xc2,0xaa,0xce,0xa6,0x6c,0x0a,0x15,0x6d,0x9c,0x50,0x1f,0x5e,0x53,0x32,0xf5,0x0d, - 0x8b,0x08,0x41,0xdf,0xa6,0x45,0x85,0x5e,0x19,0xe0,0xb7,0x88,0xa7,0x78,0x41,0x71,0x03,0x7e,0x60,0x54, - 0x4d,0x09,0xd5,0x0f,0x15,0x16,0xb4,0x44,0x52,0xa9,0xa6,0x76,0xe6,0xd6,0xd2,0xfd,0x89,0xdd,0xb3,0x97, - 0xef,0x4f,0x6f,0x9f,0x34,0xb2,0x5e,0xaf,0xab,0x10,0x26,0x2c,0xcb,0x79,0x32,0x9f,0xbb,0xde,0x2d,0xb4, - 0x89,0x2a,0xed,0x26,0x67,0x74,0x11,0x8f,0x2e,0x1d,0xff,0x56,0x87,0xe2,0x09,0xee,0x3d,0x22,0x56,0xbf, - 0x33,0x9a,0x11,0xe5,0x11,0xaa,0xdc,0x4e,0xa0,0x7e,0xde,0x76,0x38,0x81,0xf8,0x0e,0x91,0xe0,0xf9,0x1d, - 0x23,0x63,0x31,0x5f,0x9d,0xb5,0xd3,0xf9,0x07,0x1d,0x5f,0x3c,0xdd,0x86,0xce,0x05,0xdd,0xc9,0xb3,0x98, - 0x90,0x12,0xc8,0x7b,0xca,0x18,0xcd,0x92,0xd1,0xa5,0x4e,0x7e,0x86,0x1f,0x4e,0x87,0x6e,0x66,0xb6,0x9b, - 0x0e,0x9d,0x43,0xe7,0x71,0xad,0xf7,0x2c,0x2d,0xf3,0x6c,0x56,0x4f,0xe4,0xf8,0x39,0x94,0x74,0x40,0x69, - 0xfa,0x5f,0x2b,0x7b,0x16,0x9d,0xc7,0x54,0xe3,0xf6,0xb6,0xc3,0x64,0x7e,0x67,0xbd,0xb6,0x4b,0xde,0x33, - 0x1e,0x4d,0xf9,0x3a,0x56,0xbe,0x4a,0xc5,0x8d,0xa0,0x78,0x16,0x7c,0x9a,0x11,0xa2,0x89,0x52,0xe3,0xe1, - 0x74,0xe7,0x68,0x5d,0x09,0x92,0xb6,0x16,0x81,0xc3,0x1c,0x56,0xf7,0x0a,0x6e,0xad,0xa9,0x6d,0xf8,0x99, - 0xd5,0x0d,0xc1,0x69,0x1a,0x7e,0x73,0xc7,0xe1,0x4e,0xf5,0x2d,0x4a,0xbb,0xbb,0x84,0x83,0x68,0x6b,0x92, - 0x74,0x8e,0xd7,0xaa,0x2a,0x17,0xbe,0x33,0x6a,0x0b,0x5a,0x0b,0xc2,0xf8,0xe0,0x3e,0x3c,0x1e,0xd1,0xca, - 0xc3,0xf5,0xb9,0x76,0xc6,0x65,0x8d,0x06,0xfa,0x93,0x08,0x70,0x08,0xda,0x53,0x9b,0x2f,0x2a,0x1d,0xca, - 0x06,0x4c,0xd0,0xad,0x91,0x64,0x5b,0x61,0x42,0x72,0xb7,0xc2,0x44,0x27,0x0c,0x3b,0xc9,0xf8,0xff,0x28, - 0xc8,0x90,0xd0,0x36,0x63,0xf9,0xfb,0x5f,0x0c,0x0c,0xfc,0x49,0xeb,0xf7,0xbf,0x05,0x10,0x94,0xe7,0x1b, - 0x88,0xe9,0x55,0x18,0x8c,0xca,0xb9,0x54,0xb4,0x4c,0x88,0x38,0xcf,0xf2,0xde,0x8c,0x08,0x8b,0x45,0x34, - 0x8d,0x9b,0x9e,0x9e,0x1c,0x26,0x85,0xb5,0xdf,0x28,0xe3,0x67,0xc3,0xeb,0xab,0xe6,0xdc,0xdb,0x98,0x08, - 0xd9,0xbf,0x11,0x6e,0x23,0xb6,0x80,0x9a,0x0e,0x62,0x9f,0xfd,0x30,0xdd,0xa6,0x84,0xe8,0x26,0x89,0x42, - 0xb0,0xbc,0xc6,0x5a,0xd4,0xbd,0x73,0xe8,0x17,0x22,0x3e,0xde,0x39,0x52,0x5f,0x82,0xba,0xe9,0xa7,0x2a, - 0xf3,0x82,0xee,0xa2,0x11,0xc6,0x15,0x38,0x2b,0x7d,0x27,0xbc,0xcd,0xb3,0x29,0x93,0x60,0x54,0x4c,0x08, - 0x83,0xe3,0xe8,0x1c,0xc1,0x85,0x44,0x24,0xaa,0x15,0x1e,0x6f,0x2b,0xe1,0xbd,0x6a,0x8c,0x45,0xd2,0x3a, - 0xdb,0x4e,0x5c,0xd7,0x05,0xd5,0xf3,0xe0,0x36,0x56,0x02,0x18,0xea,0x22,0x21,0x66,0xec,0xb0,0xc7,0xff, - 0x55,0x12,0xe9,0x5a,0x09,0x25,0xb5,0x3d,0xac,0x17,0x5d,0xab,0xcb,0x85,0xfa,0x30,0xf7,0x0b,0xa2,0x39, - 0x56,0x32,0x55,0x08,0x86,0xec,0x76,0xca,0xba,0xcc,0x48,0x2c,0x55,0x75,0x71,0xf8,0xd9,0x13,0x51,0x49, - 0xad,0x4e,0xbc,0x4d,0x7a,0xb5,0xa5,0xbd,0x71,0x3c,0x23,0xfe,0x6b,0xa3,0xe9,0xba,0x60,0xc5,0x30,0x65, - 0x5c,0xce,0x16,0x98,0x60,0xcb,0x4a,0x33,0x17,0xe6,0x65,0xb9,0x8c,0xe1,0x64,0xa5,0x13,0x70,0xb0,0x3b, - 0xbc,0x1e,0xfc,0xdb,0xe2,0x08,0xf9,0xb7,0x66,0x03,0xd9,0x11,0x87,0x61,0xe1,0x2a,0x46,0x49,0x0c,0xa0, - 0x2d,0x06,0xe9,0x73,0x9f,0x10,0x95,0x02,0x1e,0x02,0x17,0xe9,0x92,0x2e,0x47,0xa2,0xf2,0xe2,0x31,0xf1, - 0x22,0x92,0x13,0x8f,0xc1,0x67,0xc8,0x98,0xe7,0x8a,0x97,0x90,0xa2,0xd7,0x57,0xe0,0x0a,0xcc,0x37,0x51, - 0xfb,0xd2,0xb5,0x45,0xcf,0xeb,0xcc,0x8a,0x64,0xe7,0x14,0x9b,0x30,0xa7,0xed,0xd7,0xf2,0x73,0xcc,0x4e, - 0x7f,0xb3,0xdf,0x92,0x00,0x0b,0x83,0x0c,0x38,0xc3,0x34,0xe4,0x04,0x18,0x44,0x25,0xe6,0xe5,0x9c,0x3c, - 0xc6,0x3b,0xff,0x32,0xd6,0x09,0xb4,0xec,0xec,0xad,0x73,0x23,0x84,0xb5,0x72,0x2b,0x58,0xf6,0xec,0xd3, - 0x83,0x5a,0x2a,0x12,0x97,0x09,0x56,0xc7,0xf8,0x0c,0xee,0xac,0x5d,0x87,0x3f,0x1d,0xed,0x78,0x50,0x69, - 0x17,0xeb,0xb1,0xc0,0x27,0xc8,0x85,0x76,0xfb,0x71,0x24,0xb1,0xd0,0xcb,0x9e,0x39,0x3e,0x26,0xc8,0x69, - 0x5e,0xbe,0x6c,0x9c,0x3c,0x98,0x0b,0xf7,0x9a,0xd4,0x1b,0x27,0x2a,0x14,0xc7,0x8b,0xc0,0x1e,0xcf,0x60, - 0xd3,0x81,0x78,0xa5,0xd6,0x59,0x96,0x31,0xef,0x1c,0xf5,0x1b,0xa6,0x05,0x6c,0x42,0x7d,0xd8,0xcf,0x1e, - 0x1d,0x3d,0x7c,0x48,0x7f,0xba,0xe1,0xd1,0xe7,0x9e,0xf2,0x67,0x9b,0x89,0x53,0x93,0x2c,0xdc,0xbf,0x8f, - 0xac,0x47,0xe1,0x7d,0x53,0x22,0x31,0x25,0xca,0x5e,0xb5,0xb2,0x61,0x4e,0x7d,0xd6,0x96,0x36,0x4c,0x28, - 0xc5,0x62,0x00,0x5c,0xaf,0x57,0x5e,0xc4,0xa9,0xed,0x97,0x4c,0xf2,0x2b,0xfa,0x77,0x6b,0x11,0xa1,0x73, - 0xb7,0x66,0xdb,0x64,0xe0,0xd6,0x42,0x75,0x62,0x6f,0x7b,0x57,0x58,0xb1,0xd6,0xdc,0xa2,0xcc,0xe6,0xad, - 0x1b,0xa3,0xb0,0x18,0xad,0xf0,0xda,0xb3,0xfe,0xab,0xee,0xa8,0xe2,0x22,0xbb,0x7e,0x6d,0xa3,0xe0,0x36, - 0x47,0xda,0x0c,0x6c,0x69,0x0d,0xd8,0xc2,0x5b,0x85,0xe3,0x09,0x91,0x0b,0x47,0x55,0xae,0x7d,0xf1,0x85, - 0x9a,0x6e,0x42,0xe5,0xde,0xde,0x88,0xee,0xc9,0x1c,0xdf,0x44,0xa7,0xbb,0x2d,0x25,0x10,0xe2,0x74,0x13, - 0x98,0x8b,0xb8,0xd4,0x75,0xac,0xf9,0x36,0x46,0x22,0xe8,0x60,0xcb,0x51,0x58,0xfb,0x9f,0xc7,0x0f,0x70, - 0x61,0x26,0xe3,0xb8,0x7d,0x9e,0xea,0x42,0x6e,0x69,0x92,0x67,0xb3,0x91,0xa9,0x26,0xe4,0xd6,0x66,0xd4, - 0x5e,0x4a,0x99,0x61,0xb5,0x8f,0xcc,0xdc,0xe2,0x84,0x3f,0xf8,0x5d,0xbd,0xe1,0xee,0x5e,0xb3,0xbd,0xb3, - 0x0c,0x21,0xc1,0x94,0xfd,0x81,0xe3,0x70,0x70,0x74,0x42,0x49,0x44,0xae,0x15,0xf1,0xc0,0xf9,0xee,0xf8, - 0xf8,0x6d,0x47,0xff,0xec,0x20,0x3a,0x64,0xc7,0xe9,0x56,0x05,0x7a,0xea,0xf2,0x41,0x0a,0xf3,0xdd,0x03, - 0xa8,0xc3,0xea,0x5c,0x27,0x30,0x21,0x33,0x64,0xa4,0x4d,0x68,0x80,0x3f,0x7c,0xb7,0xf4,0xba,0xce,0x69, - 0x7a,0x9a,0x3a,0xdd,0xdc,0xe7,0x70,0x0a,0x36,0xeb,0xfc,0x41,0xb3,0x8f,0xe8,0x7d,0x92,0xb1,0x8f,0x38, - 0xd7,0x39,0x88,0xe6,0xc9,0x81,0xba,0x5c,0x9d,0x26,0x08,0xb7,0xc5,0x84,0x2c,0x95,0xab,0x7b,0x1a,0x82, - 0xb6,0xa0,0x90,0x24,0x82,0xdf,0x9e,0x0a,0xee,0xd1,0xab,0x2f,0x60,0x0f,0xf4,0x22,0x1c,0xef,0x31,0x40, - 0xda,0x07,0xdc,0xf1,0xd4,0xb0,0x2d,0x86,0xf6,0x93,0x46,0x5e,0x5d,0x7f,0x9f,0x3a,0xf8,0xaa,0xe6,0x9f, - 0x19,0xbf,0xa5,0xc1,0xaa,0xa7,0xa0,0x18,0xeb,0x4f,0x1a,0xbe,0xd2,0x9b,0xf9,0xc4,0xa1,0x4b,0xad,0x3f, - 0x33,0x6c,0xa5,0xad,0xa7,0x87,0x5c,0xe3,0x85,0x3f,0x69,0xe0,0x9a,0x08,0x39,0x60,0x75,0xf6,0x96,0xf1, - 0xc3,0x45,0x57,0xfb,0x14,0x34,0xf2,0x32,0xe4,0x90,0x24,0xf7,0xd4,0xcf,0xd5,0x6a,0x93,0x04,0x52,0x25, - 0xea,0xa9,0xab,0xd5,0x61,0x8d,0x16,0xda,0xf4,0x3e,0x66,0xaa,0x49,0x21,0xcf,0x8e,0xc3,0xdd,0xcf,0x1f, - 0x35,0xb2,0x4d,0x30,0x6e,0x3b,0x6e,0x7a,0xad,0xc4,0x49,0x3e,0x24,0x6c,0x6b,0xca,0x8b,0xe7,0xfb,0x73, - 0xd6,0x11,0x49,0x41,0x8b,0x24,0xbd,0xea,0x87,0x35,0x3a,0xc4,0xbf,0xa5,0x3c,0xeb,0x17,0x32,0xf5,0xec, - 0x93,0xda,0xc4,0xcd,0xed,0x58,0xaf,0xf0,0xf8,0x70,0x70,0x88,0x14,0x35,0x6d,0xfb,0xd2,0xdc,0x28,0x68, - 0x8a,0x11,0x6d,0x73,0x25,0x4f,0xc8,0xee,0xd1,0x5e,0x42,0x53,0xb9,0x29,0xde,0x4c,0x7e,0x89,0xe3,0x4b, - 0xef,0x31,0x8d,0x4d,0xbd,0x23,0xbb,0xf7,0x37,0xb2,0xae,0xcd,0x63,0xb2,0xfb,0x70,0xb3,0x9e,0x7e,0x50, - 0x76,0xbf,0xdc,0xc8,0x9b,0xc8,0x9b,0xb2,0x7b,0xf4,0xc5,0x46,0x56,0xa1,0x5f,0x96,0xdd,0x07,0x9b,0x1d, - 0x16,0xf2,0xbc,0xec,0x7e,0xb1,0xd1,0x1d,0xe2,0x11,0x54,0x0b,0x8e,0x79,0x85,0x30,0x18,0xfd,0x78,0x80, - 0xb7,0x21,0xdc,0x80,0x7d,0x43,0x86,0xf3,0xe7,0x00,0x5f,0x88,0xfa,0x4f,0x3d,0xba,0x66,0x2e,0x52,0xfd, - 0xcf,0x9c,0xe1,0xfa,0xe8,0x2b,0xf4,0xc3,0x64,0xec,0xa7,0x61,0x1f,0x36,0x08,0x6a,0x3f,0xbc,0x6d,0x27, - 0xc9,0xb3,0x8d,0x04,0x77,0x10,0xf4,0x02,0x7c,0x16,0xc7,0x6c,0x60,0x1f,0x62,0x87,0xfd,0x48,0x1f,0x2a, - 0x75,0x96,0x22,0x7d,0x96,0x0a,0x35,0x53,0x38,0x00,0x60,0xd7,0xe5,0xf9,0x80,0xa8,0x88,0xa0,0xd8,0xa1, - 0x2f,0x98,0x66,0x87,0x1c,0x71,0xbb,0x16,0x93,0x82,0x98,0x54,0x3f,0xe9,0x86,0xc5,0x1a,0x97,0x65,0xcc, - 0x91,0xcf,0xe3,0x5e,0x8d,0x78,0x97,0x28,0xad,0x93,0x59,0x86,0x10,0x19,0x07,0x3a,0x5a,0x8a,0x67,0x15, - 0x63,0x68,0x59,0x6f,0xc8,0x4c,0xdb,0x57,0x29,0x56,0x04,0x30,0x87,0x9b,0x91,0x4f,0xcc,0x52,0x56,0x6d, - 0x4e,0xbc,0xd5,0xe6,0x9d,0xe3,0x57,0x3c,0x97,0x7d,0xa3,0xf4,0x74,0x6a,0x8d,0x09,0xab,0x95,0xb0,0x32, - 0x0c,0x6b,0x56,0x2b,0xa0,0x12,0x85,0x59,0xab,0xe7,0x50,0x4a,0xc5,0xb9,0xd5,0xb2,0x74,0xaa,0xb0,0x72, - 0xb5,0x2c,0xa4,0x80,0xb3,0xab,0x25,0x26,0x73,0x9b,0xc9,0xab,0xf7,0x62,0xd2,0x0d,0xdf,0x57,0xcb,0x57, - 0x89,0xeb,0x26,0xf8,0x20,0xb2,0xd7,0x47,0x42,0x73,0x63,0x5b,0x08,0x94,0x37,0x48,0xe8,0x6a,0x23,0x88, - 0x50,0xd6,0x3b,0xd9,0x7e,0xd3,0x1a,0xde,0xcb,0xec,0x62,0xf9,0xa1,0x5d,0xd4,0x2a,0xab,0xa5,0xba,0x4e, - 0x9b,0x7d,0xa7,0x4c,0xbf,0xb7,0xd1,0x5d,0x4e,0x4d,0x61,0x0f,0x07,0x50,0xcf,0xb7,0x6c,0x9d,0x6f,0x59, - 0x9b,0xaf,0xb9,0x82,0xdb,0xd8,0x85,0xda,0x5c,0x5b,0xd9,0xba,0xad,0xb0,0xab,0x38,0x0a,0xe2,0xf3,0xa6, - 0x31,0x1d,0x49,0x93,0x60,0x08,0x76,0xcd,0x95,0xdb,0x5d,0xaa,0x20,0x28,0xf5,0xda,0xdd,0xae,0x5f,0x4f, - 0x50,0x81,0x32,0x8f,0x02,0x93,0x6c,0x86,0x13,0x3a,0x07,0x8e,0x15,0xef,0xa4,0x73,0xbf,0xb5,0xcc,0x7e, - 0xad,0xcc,0x83,0xd6,0x32,0xa7,0xa7,0xb5,0x42,0x0f,0x5b,0x0b,0xad,0x1c,0xbf,0x39,0xd3,0xf5,0xda,0xbf, - 0xff,0xf9,0x21,0x2f,0xd7,0x26,0xaf,0x65,0xaf,0x16,0xf3,0x05,0x66,0x11,0x94,0x6b,0x89,0x6a,0x89,0xa8, - 0x05,0xc2,0x8c,0x9a,0x55,0xc6,0x0b,0xaa,0x50,0xe8,0x6d,0x9e,0xaa,0x2b,0xb1,0x93,0x3e,0xa6,0xfa,0x12, - 0xd7,0x2e,0x11,0x6d,0x8d,0x41,0xc7,0x44,0x1c,0xdd,0x52,0x57,0x78,0x01,0xb5,0xca,0x2a,0x1c,0xe8,0x7d, - 0x1d,0xf6,0x53,0x1f,0x39,0x82,0xb4,0xbe,0xda,0x06,0xb5,0x40,0xfc,0xc7,0xc4,0x1c,0x15,0xd7,0x1d,0x7a, - 0x85,0xeb,0x95,0x31,0x06,0x09,0x32,0x1a,0x68,0x89,0x68,0xdb,0x38,0xd7,0xed,0x4b,0x70,0x1c,0xbf,0x2f, - 0xff,0xdc,0x32,0x74,0xf8,0xb8,0x6c,0x16,0x83,0x7a,0x87,0x91,0xb4,0x3a,0xde,0x27,0xae,0xcf,0x47,0xb4, - 0x0d,0x5d,0x52,0x6a,0x57,0xad,0xd7,0x47,0x54,0x10,0x55,0x53,0x5d,0xe5,0xfe,0xc7,0x54,0xa9,0x69,0xa0, - 0xea,0x9a,0x7a,0xe5,0x3b,0xdb,0xe6,0x92,0xcc,0x35,0x7c,0x7f,0x44,0x17,0x35,0x35,0x56,0xdd,0xc5,0xe7, - 0x9f,0x50,0x33,0x11,0xb5,0x56,0x5d,0xb5,0xb9,0xfd,0x77,0xed,0x4f,0x05,0x1a,0x08,0xbc,0xb5,0xf1,0x14, - 0xf8,0xe1,0x6b,0x74,0x60,0x09,0x09,0xe2,0x0d,0x49,0x14,0xb3,0xff,0xc1,0x76,0x76,0xee,0x40,0xc9,0x85, - 0x3f,0x91,0xbe,0xaa,0xe6,0xf2,0xa9,0xa4,0x55,0x73,0x80,0x6d,0x18,0xfa,0xee,0x19,0x81,0xda,0x68,0x3c, - 0x81,0xb6,0x5f,0x53,0x7c,0x88,0xd4,0x4a,0xd9,0xa8,0xff,0x90,0xa5,0x76,0xb6,0xbc,0x3c,0x3c,0x54,0xa2, - 0x41,0x48,0xec,0xe1,0xde,0x05,0xea,0x95,0x7d,0xf6,0xae,0x00,0x7f,0x4d,0xce,0x24,0x81,0x25,0xbb,0x91, - 0x2c,0xd2,0x62,0x7e,0x2d,0x31,0xe0,0x9e,0xde,0xbc,0xe0,0x6c,0x19,0xc7,0x37,0x28,0xc6,0xa1,0xf6,0xe2, - 0x02,0x2e,0x5d,0x94,0xe0,0x82,0xc5,0xd9,0x34,0xa1,0xe0,0xc1,0x17,0xf1,0x43,0x3f,0x4b,0x7f,0xaa,0xcb, - 0xea,0x6b,0x7e,0xbf,0x9b,0x03,0x63,0xf2,0x2b,0x87,0xc5,0xbc,0x7b,0x74,0x78,0xf8,0x99,0x60,0xe6,0x78, - 0x7c,0x80,0xa0,0xbc,0x65,0x84,0x38,0x86,0xfd,0x8d,0x6b,0xb7,0x7a,0xf4,0x85,0x17,0xda,0xff,0xfa,0x3b, - 0xb7,0xbe,0x19,0xed,0xd7,0x6e,0x63,0x5a,0x96,0x2c,0x14,0xdf,0x77,0xae,0x2c,0xad,0x2a,0xd5,0x23,0x18, - 0xc6,0xee,0xaf,0x45,0x9e,0xac,0xe4,0xaa,0x77,0xdd,0xd6,0x88,0x35,0xda,0x22,0x8e,0x05,0x2b,0x28,0xc1, - 0x59,0x1a,0x12,0x59,0x61,0xff,0x9b,0x62,0xda,0x76,0x69,0x9c,0x86,0x50,0x25,0x9d,0xa4,0x6b,0xf2,0xf0, - 0xd0,0xf3,0xd6,0xb5,0xc7,0xf6,0xf6,0xe1,0x71,0x88,0x0b,0xab,0x17,0x40,0x65,0x4b,0xb7,0x78,0xc6,0x68, - 0x17,0x26,0x1f,0x5a,0x24,0xf8,0x66,0xb0,0x3c,0x8e,0x93,0xc7,0xab,0xa4,0xd9,0x84,0x94,0xd8,0x84,0x7a, - 0x40,0xba,0x06,0xa5,0xbf,0xf6,0xfa,0x9a,0x0b,0x28,0xc5,0x05,0xb8,0x66,0xe3,0xd1,0xf8,0xd6,0x36,0xf3, - 0x6e,0xa8,0x52,0x4f,0xd2,0xa1,0x3c,0xd2,0xf5,0x3f,0xc0,0x43,0xe4,0x07,0xf5,0x36,0x24,0xea,0x74,0xa2, - 0xc3,0x62,0x6d,0xed,0x46,0x89,0xb7,0x9b,0x5d,0x61,0xcc,0x5b,0x64,0xed,0x9b,0xd4,0xa8,0xf8,0x66,0xb8, - 0x6d,0x08,0x3e,0x8e,0xe2,0x07,0xf2,0xda,0x59,0x04,0xc9,0x5f,0xa1,0xb4,0xad,0x3d,0xff,0x10,0x95,0xad, - 0x76,0x1b,0x32,0xe9,0xa6,0x8a,0xc5,0x76,0x40,0x96,0x02,0x02,0x99,0xcd,0x97,0xb3,0x8a,0xf2,0x66,0x1c, - 0x0f,0xc5,0xa1,0x22,0x38,0x38,0xc0,0xeb,0x8c,0xd2,0x15,0xa2,0xc9,0x17,0xac,0x2f,0x84,0x34,0x5e,0x8a, - 0x69,0x9c,0x41,0x5c,0x7a,0xf0,0x7b,0xc1,0x0c,0x96,0x78,0x7e,0x0e,0x6e,0xb5,0xc6,0x62,0xd5,0xa5,0x7f, - 0x19,0x83,0x27,0x11,0xf2,0xbd,0x57,0xbd,0xf8,0xac,0x37,0x56,0x6a,0x3b,0x4b,0x8b,0x93,0x4b,0xf7,0x61, - 0x01,0xb7,0xf9,0xb5,0x04,0x13,0x7a,0xd3,0xc8,0xda,0x6b,0xd9,0x70,0x10,0x46,0x03,0xbd,0x8a,0xcb,0xfc, - 0xc6,0x0c,0xa8,0x6f,0x06,0x33,0x8b,0x4a,0x78,0x0d,0x8b,0x4a,0xbf,0x4a,0x22,0x6c,0x92,0xe2,0xdf,0x8f, - 0x96,0x5f,0xd4,0x77,0x60,0xcb,0xbe,0x6d,0xae,0xb8,0xc5,0x28,0x7d,0x84,0x7c,0x8f,0x1d,0x79,0x9b,0x7b, - 0xc8,0xe2,0x7b,0xfb,0xd5,0xb1,0x35,0x92,0xba,0x86,0x2c,0x46,0x53,0x7b,0x4d,0x71,0x5d,0xb3,0x58,0x3d, - 0xbb,0xfe,0x36,0xaa,0x0f,0x55,0xb3,0x46,0x5d,0x26,0x97,0x6a,0x39,0x42,0x1e,0x6e,0x2b,0x4a,0xc7,0xae, - 0x5f,0x7e,0x40,0x38,0x97,0x5b,0xc2,0xb9,0x9a,0x64,0x2e,0xb7,0xe5,0x67,0x46,0x2c,0x97,0x57,0x93,0xc3, - 0x94,0xf2,0x86,0x90,0x2d,0xaf,0x3d,0x5c,0x51,0xb6,0x11,0xdc,0xf9,0x95,0x00,0x2b,0x70,0xf3,0x9e,0x48, - 0xe0,0x06,0x47,0xc1,0xa1,0xb7,0x42,0x40,0x53,0x11,0xbb,0x0d,0xee,0xab,0xdf,0x46,0xd6,0x36,0x78,0xa8, - 0x4b,0x28,0x01,0xdb,0xe0,0x4b,0x95,0x20,0x52,0xb5,0xc1,0xd1,0x17,0xea,0xb7,0x16,0xa5,0x0d,0x1e,0xe8, - 0x46,0x44,0x7e,0x36,0xf8,0x02,0x4d,0xd0,0xd1,0xdd,0x40,0x2e,0x75,0x61,0xad,0x5f,0xfe,0x55,0x96,0xbd, - 0x21,0x54,0xfb,0x30,0xd3,0x4e,0x37,0x22,0x1d,0x5d,0xfb,0x89,0xbb,0xf9,0xc2,0xb3,0x65,0xeb,0x37,0x76, - 0xb0,0x2e,0x50,0xad,0x24,0xa8,0x84,0x63,0x2a,0xb1,0xe9,0xe7,0x0f,0x1b,0xe2,0x51,0x23,0x04,0xdd,0xa9, - 0x84,0x9e,0x3b,0xb6,0x90,0x73,0xc7,0x12,0x6a,0xee,0x18,0x21,0xe6,0x8e,0x25,0xb3,0xdc,0x31,0x22,0x4a, - 0x89,0x08,0x24,0xb1,0x9c,0x5b,0xa7,0x14,0x7f,0x78,0x4e,0x2a,0x24,0x54,0x8c,0x90,0x50,0xad,0xfa,0x64, - 0x7f,0x4d,0x32,0xd5,0x14,0x4e,0xfa,0x1b,0x02,0xc7,0xbf,0xba,0xf5,0x1b,0xc2,0xc7,0xbb,0x25,0x36,0xe3, - 0xba,0xc4,0x72,0xfb,0xf6,0xcb,0x08,0x3f,0x08,0x00,0xd6,0x96,0xcf,0x93,0x34,0xb8,0xef,0x8f,0x8d,0x19, - 0x8c,0xb5,0x33,0x5b,0xfa,0xdb,0xd8,0x9b,0x66,0x87,0xb5,0xdd,0x81,0x03,0xdf,0x84,0x52,0x22,0x06,0xf7, - 0xd6,0xe7,0x57,0xc7,0xe9,0x23,0x94,0xba,0x44,0x14,0x49,0xbb,0xa1,0xd3,0x75,0x34,0x59,0x6d,0x51,0x15, - 0xf1,0xc1,0x17,0x87,0x9e,0x9f,0x48,0x52,0x74,0x5e,0xd0,0x38,0xfe,0xc7,0x17,0x87,0x5a,0x26,0x8b,0xd0, - 0x98,0x5d,0x27,0x70,0xfc,0xe4,0xd1,0x91,0x6e,0xe6,0xd0,0xf1,0xfc,0x14,0x71,0x76,0xd7,0x3e,0xc7,0xb3, - 0xa2,0xcb,0x4f,0xeb,0x2f,0x28,0xdd,0xa5,0xcd,0x55,0xb4,0xa9,0x4e,0x10,0x7b,0x50,0x9b,0xe7,0x28,0xdf, - 0x75,0x75,0x87,0x4f,0xaf,0x5f,0x7c,0x5a,0xbf,0x2a,0xf6,0x97,0xd5,0xbf,0x51,0xf5,0xb1,0x37,0xa2,0x4d, - 0xcd,0x21,0x74,0xfe,0xe6,0x74,0x63,0x68,0x3c,0xad,0xff,0x3f,0x23,0x8b,0xf9,0xf8,0x24,0x0d,0x02,0x00}; + 0x24,0x1c,0x6f,0x1a,0x18,0xb5,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0xb6,0x6c,0x27,0x4e,0xfc,0x1a, + 0x5b,0x4e,0x32,0xa3,0x68,0x6b,0x41,0x24,0x28,0x21,0x26,0x01,0x06,0x00,0x25,0x2b,0x22,0xcf,0x6f,0xbf, + 0xf5,0x55,0xf5,0x0b,0x20,0xe4,0x24,0xb3,0xf6,0xba,0xcb,0xcb,0x22,0xd0,0xdd,0xe8,0x67,0x75,0x75,0xbd, + 0x7b,0x77,0xb6,0x2a,0x26,0x4d,0x5e,0x16,0x61,0xa6,0x9a,0xe8,0x36,0x28,0xcf,0x7f,0xcd,0x26,0x4d,0x90, + 0x24,0xcd,0xcd,0x32,0x2b,0x67,0x3b,0xd9,0xa7,0x65,0x59,0x35,0xf5,0x60,0xb0,0x95,0xb3,0x28,0xa7,0xab, + 0x79,0x36,0x96,0x9f,0xa1,0x2e,0x97,0x34,0x61,0x14,0x07,0xa6,0x4e,0x57,0x78,0x9a,0xcd,0xf2,0x22,0x1b, + 0x0c,0xe4,0x77,0x98,0x2e,0xa6,0x63,0x79,0x0c,0x4f,0x4e,0xa9,0xdd,0xf8,0xae,0x76,0xc7,0xfa,0x77,0x98, + 0x7e,0xca,0x4b,0xa9,0x3d,0x73,0xcf,0x9b,0xb0,0xb9,0xcc,0x6b,0x65,0x87,0x10,0xdd,0x56,0x59,0xb3,0xaa, + 0x8a,0x1d,0x37,0xa8,0xe8,0xd6,0x3c,0xef,0x34,0x61,0x15,0xdd,0xe6,0xb3,0xb0,0x38,0xa9,0x4e,0x23,0x5d, + 0x10,0xcf,0xa6,0xef,0xa3,0xab,0xb4,0xda,0xc9,0x13,0x24,0x25,0xb7,0x3a,0x2d,0xbe,0xdd,0xa8,0x7c,0x1a, + 0x57,0x6a,0x5e,0xa6,0xd3,0x6c,0x1a,0xef,0x1e,0x6e,0x46,0xfa,0xd3,0x0c,0x9f,0x4e,0xd2,0xf9,0x3c,0xcc, + 0x4d,0x0d,0x2a,0x57,0xee,0xb9,0x89,0xe8,0x45,0x3e,0x4b,0x76,0x0f,0x5c,0xc6,0x06,0xcd,0x14,0xc9,0xad, + 0xad,0xa8,0x19,0x2e,0x12,0x9a,0xfc,0xe1,0x24,0x29,0xe8,0xef,0x32,0x09,0x02,0xd5,0x84,0x07,0x34,0xb8, + 0x13,0x7f,0x6d,0x54,0x11,0xdd,0xba,0x69,0x2e,0xc2,0xc3,0x68,0xa3,0xba,0xf9,0xc1,0xaa,0xce,0x76,0xea, + 0xa6,0xca,0x69,0x26,0x47,0x76,0xdc,0x15,0x66,0x01,0x8d,0x36,0x49,0x91,0x5d,0xef,0xa4,0xf4,0xaa,0x8a, + 0xa4,0x0c,0xd3,0xe1,0xb2,0x2a,0x9b,0x12,0x13,0x3e,0xac,0xb2,0xdf,0x56,0x59,0xdd,0x50,0xa7,0x4d,0xaf, + 0xd0,0xdf,0x26,0x2b,0xa6,0x61,0xa1,0xbc,0x82,0x32,0x2a,0x9b,0x43,0x6f,0xc5,0x46,0x4f,0x5b,0xf8,0x30, + 0x52,0x25,0xfd,0x7c,0x11,0xa9,0x94,0x7e,0xbe,0x8a,0x14,0xba,0xf9,0xf7,0x48,0x4d,0x92,0x2a,0xac,0xa3, + 0xd1,0x64,0xf8,0x98,0xd7,0x2d,0x55,0x93,0xe1,0xa4,0xca,0xd2,0x26,0x4b,0xfc,0x65,0xd2,0xcd,0x56,0x34, + 0x9b,0x8b,0xac,0xba,0xc8,0xc2,0x5a,0x65,0x11,0x8d,0x71,0x32,0x3c,0x4a,0x8b,0x49,0x36,0x47,0x03,0x54, + 0xb5,0x79,0x3d,0x2e,0x3f,0x66,0x05,0xd2,0xbe,0x44,0x5a,0x5e,0xbb,0x42,0x07,0x48,0xa0,0x65,0xe9,0xab, + 0xfd,0x6d,0x55,0x2e,0xf2,0x3a,0x43,0x36,0xa5,0xa2,0xf2,0x7a,0x49,0x5d,0x99,0xe2,0x3b,0xea,0xb0,0x9b, + 0xdf,0x89,0x7b,0x1e,0x12,0xa0,0xa6,0xab,0x79,0x93,0x4c,0xfe,0xd2,0x84,0x4b,0x8b,0xc1,0x89,0x00,0xf6, + 0xce,0xe3,0xaa,0x4a,0x6f,0x4e,0x09,0xbe,0x93,0xb9,0x00,0x0d,0x35,0x6f,0x3f,0xc8,0xbd,0x2e,0x16,0xab, + 0xf9,0x7c,0x37,0x49,0xb2,0x9e,0x1d,0x97,0xb9,0x2f,0xca,0x9e,0x26,0x9e,0xeb,0xcc,0xbb,0x5a,0x49,0x65, + 0x8b,0x63,0x07,0xd8,0x36,0xae,0xca,0x7c,0xba,0x73,0x80,0xe7,0x88,0xd2,0x4d,0x8b,0xbb,0xb6,0xc5,0xc1, + 0x20,0xcc,0x92,0x93,0xec,0x34,0x52,0x18,0x54,0x34,0x2b,0xab,0x50,0xc0,0x97,0x00,0x3a,0xc9,0x86,0xf3, + 0xac,0xb8,0x68,0x2e,0x47,0xc5,0xa3,0x7c,0x54,0xec,0xed,0x45,0x8d,0x34,0x8a,0xea,0x55,0x76,0x52,0x9c, + 0xaa,0x82,0xd6,0x70,0x94,0xcd,0x69,0x92,0xcc,0x97,0xe5,0x4e,0x4e,0x5b,0x27,0x7a,0xc3,0x0d,0x79,0x00, + 0x78,0x99,0xd6,0x6f,0xae,0x0b,0x5a,0x9f,0x65,0x56,0x35,0x37,0xba,0xf3,0xaa,0x8c,0x06,0x83,0x76,0xa5, + 0xe5,0xa9,0x2a,0xa9,0x52,0x06,0xba,0x5a,0xa0,0x8d,0xf6,0x4d,0x48,0x50,0x30,0x4f,0xb6,0x2a,0x6d,0xca, + 0xf7,0xb4,0x36,0xc5,0xc5,0xc8,0x2d,0xec,0x6d,0x5e,0xf3,0x52,0xd0,0x96,0xd6,0x4f,0x4f,0x56,0xb3,0x59, + 0x56,0xc5,0xdb,0xd0,0xd2,0x5e,0x3b,0x29,0xd6,0x99,0x5b,0xaa,0x43,0x7f,0x3e,0xa1,0xc7,0xe7,0x65,0xb5, + 0x78,0x9a,0x36,0x69,0x5f,0x5d,0xab,0x42,0xf0,0xdd,0xd4,0x4d,0xae,0x29,0x3e,0x18,0x64,0x34,0x29,0x75, + 0x03,0x08,0xf6,0x92,0x37,0xed,0x0e,0xfe,0x98,0x67,0xd7,0x7f,0xb2,0x62,0xef,0xab,0xc1,0xc0,0x7b,0xa1, + 0x6d,0x82,0x5a,0xc6,0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x9d,0x0d,0xcf,0xf5,0x57,0xe6,0xc9,0xef,0x98,0xf7, + 0x19,0xfa,0x26,0x53,0xdb,0xd7,0xa5,0x9a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x57,0x8b,0xf3,0xfe,0x69,0x2e, + 0x38,0xa7,0x53,0x5c,0xd6,0x32,0x26,0x84,0x5a,0x7f,0x30,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85, + 0xbf,0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0xe7,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1, + 0xe7,0xe5,0xf9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80, + 0x11,0x06,0x03,0xda,0xe5,0xc3,0x65,0xbe,0x94,0x2f,0x3f,0xbc,0x7b,0xf9,0x3e,0x4b,0xab,0xc9,0xe5,0xdb, + 0xb4,0x4a,0x17,0xf5,0x9f,0x84,0x85,0xce,0x57,0x1d,0x58,0xeb,0xe4,0xca,0xb2,0xa6,0xc5,0x34,0xad,0xa6, + 0x4f,0xaa,0xf2,0xba,0xce,0xaa,0x67,0xc5,0x55,0xbc,0x75,0xbe,0x86,0x5e,0x4b,0x76,0xd9,0x8a,0xf4,0x2a, + 0xbf,0x48,0x9b,0xb2,0x5a,0xaf,0x83,0x77,0x59,0x3a,0x69,0x5e,0xa7,0x4d,0x7e,0x95,0x51,0x57,0x12,0x9b, + 0x85,0xbd,0x39,0x5d,0x4d,0x1a,0x1a,0x5b,0x5f,0x67,0xaf,0xf3,0x62,0x5a,0x5e,0xf7,0xe7,0x4d,0xcb,0xc9, + 0x6a,0x91,0x15,0x0d,0x21,0xe1,0xb2,0x7a,0x96,0x4e,0x2e,0xe3,0x54,0xf1,0x41,0x61,0xbb,0xb7,0x93,0x85, + 0xad,0xd3,0xbe,0x51,0x55,0x0f,0x41,0x83,0xe3,0xbd,0x07,0xb7,0x36,0x63,0x3e,0xf7,0x33,0xa6,0x0e,0x40, + 0x91,0xf0,0x6b,0xb3,0x71,0x18,0x8f,0x28,0x81,0x8a,0xd1,0x5e,0x5a,0x5d,0x70,0x4f,0x6a,0x83,0xfe,0x2a, + 0x42,0x7f,0x15,0xa1,0xbf,0x34,0xb4,0x59,0x52,0x89,0x39,0x4b,0x8b,0x8d,0x92,0x23,0x33,0xee,0x1e,0x20, + 0xba,0x40,0x4a,0x9d,0xb5,0x59,0xdc,0x6f,0x50,0x17,0x49,0x41,0x1d,0xdd,0xa6,0xa5,0x9a,0x71,0x1d,0xe2, + 0xe3,0xb8,0xd9,0xd0,0x91,0xb5,0x51,0xb4,0xdb,0x7a,0x61,0x08,0xa7,0xfa,0x72,0x9e,0x4e,0xb2,0xf0,0xc1, + 0xff,0xfc,0x52,0xff,0xed,0x81,0x0a,0x82,0xc8,0x25,0x51,0xca,0x3d,0x4e,0xda,0x6c,0xda,0xe7,0x5a,0xe7, + 0x54,0x73,0xa8,0xb3,0x5d,0xa8,0x4b,0x69,0xd1,0xd4,0xdb,0xa9,0x02,0x99,0xc1,0xd8,0x22,0xec,0xce,0x55, + 0x84,0x39,0xa4,0x09,0x2b,0xec,0xdc,0xd1,0xbc,0xf1,0x54,0xfb,0x53,0x67,0x49,0xac,0x61,0xba,0x5c,0xce, + 0x6f,0x78,0xb4,0xdb,0xdd,0xb4,0x4b,0xed,0x0d,0x7a,0x77,0x37,0x1b,0x4e,0x4a,0x02,0xf0,0x8a,0xa0,0xac, + 0xac,0x7a,0xe7,0xaf,0x55,0x62,0x68,0x30,0x38,0x70,0x5e,0x5f,0x3a,0xf6,0x6d,0xdf,0x1c,0x74,0x0e,0x6c, + 0x9c,0x94,0x48,0x5d,0xaf,0xc3,0x86,0xa8,0xb9,0xbe,0x65,0x1b,0x82,0xd2,0x78,0x4e,0x14,0x61,0xf3,0xf2, + 0x59,0xff,0xc2,0x0e,0xeb,0x79,0x3e,0xa1,0x9a,0x08,0x06,0xe4,0x31,0x3c,0x50,0x07,0x51,0x44,0x95,0x62, + 0x5c,0x67,0xa6,0x4b,0x11,0x53,0xaa,0xcd,0xe6,0x2f,0xd1,0x23,0xa0,0x94,0x0d,0x29,0x53,0x83,0xde,0xc4, + 0x7b,0x5e,0x34,0x59,0x35,0xc9,0x96,0x34,0x60,0x3a,0x1a,0x35,0x11,0x18,0x33,0x95,0xa8,0xaa,0xac,0x5e, + 0xd2,0x7c,0x64,0xf2,0xba,0xb1,0x64,0xde,0xdf,0x85,0xcc,0x7b,0x28,0x64,0xde,0xe1,0x7f,0x0b,0x9d,0x77, + 0xf8,0x0f,0x82,0xf6,0x6d,0x82,0xb2,0x35,0x61,0xdb,0x07,0x03,0x93,0x17,0xa5,0x26,0xf8,0x6e,0x57,0xd5, + 0x3c,0x76,0x60,0x70,0x70,0xba,0x51,0xee,0xed,0xf0,0x34,0x8a,0x94,0x57,0x38,0x57,0xad,0x01,0xa9,0xdb, + 0x45,0xd6,0x5c,0x96,0xd3,0x38,0xb8,0xc8,0x9a,0x60,0x03,0xd2,0x71,0x28,0x29,0x44,0xa5,0xc8,0x03,0x51, + 0x03,0x2f,0xcb,0xeb,0xac,0x3a,0x4a,0x6b,0x42,0x14,0x32,0x85,0xc9,0x49,0xad,0xe4,0x04,0x21,0x5a,0x25, + 0x31,0xd4,0x21,0x8d,0xbc,0x9c,0x5f,0x65,0xd4,0xe5,0x11,0x60,0x7a,0x6b,0xa6,0xcc,0xe0,0x86,0x1a,0x13, + 0x85,0xfe,0x20,0x9b,0xe1,0xaa,0xa8,0x2f,0xf3,0x59,0x43,0xb8,0x7b,0xb6,0x9a,0xcf,0xf2,0xf9,0x3c,0x9b, + 0x2a,0x54,0x0a,0x84,0x93,0x4d,0x23,0xda,0xb4,0x7d,0x35,0xca,0x64,0xdf,0x51,0xe5,0x72,0x55,0x5f,0xde, + 0x5d,0xdf,0xa8,0x31,0xbb,0x29,0xa2,0xbd,0x37,0x6c,0x2e,0x33,0x06,0x20,0xee,0x04,0x35,0x66,0x9e,0x7c, + 0x74,0x54,0xda,0x86,0x4e,0x82,0x69,0x36,0xcf,0x9a,0x2c,0x50,0x3c,0x75,0x2a,0xb8,0x24,0x28,0xa5,0x9f, + 0x72,0x89,0xe6,0xeb,0xe0,0x54,0xb5,0x60,0xde,0x2d,0x31,0x51,0x85,0x89,0x87,0xb3,0x1c,0x32,0xe3,0xd1, + 0xe9,0x29,0x0a,0xcd,0x7a,0x15,0xeb,0x35,0x21,0x50,0xb3,0x4a,0x99,0xc2,0x5a,0x13,0xfe,0xa2,0x6d,0x1d, + 0xb5,0x3a,0xb3,0x2c,0x6b,0x74,0x62,0xb9,0xe2,0xbf,0x69,0x33,0xb9,0xfc,0xf3,0x3d,0x00,0xde,0xfc,0x5c, + 0x1f,0xaa,0xbe,0x3e,0xa8,0x29,0x28,0xb6,0x42,0x77,0xc5,0xed,0xf4,0xea,0x2f,0xec,0x2e,0x60,0xa3,0xdd, + 0x7c,0xe8,0x91,0x2a,0x7c,0x7c,0x77,0x52,0x4e,0x82,0xa3,0x92,0xd6,0xbc,0x68,0xf6,0x8f,0xa9,0xf3,0xc1, + 0x69,0x04,0xe8,0xef,0x26,0x26,0x4d,0xd4,0x65,0xa8,0xfe,0x1b,0x3b,0xed,0xb6,0x5d,0x2e,0x0e,0x80,0x19, + 0xf3,0x49,0x8a,0x2e,0x3c,0xf8,0xb4,0x7f,0x7d,0x7d,0xbd,0x4f,0x93,0xb8,0xd8,0xa7,0x31,0x65,0xc5,0xa4, + 0x24,0xa6,0x93,0x76,0x01,0xed,0xe9,0x74,0x9a,0x2e,0x1b,0x9f,0xee,0x12,0x56,0x30,0x1b,0xdd,0x4d,0x32, + 0xfc,0xfc,0xea,0xe5,0x77,0x4d,0xb3,0x7c,0x27,0xb3,0x37,0xce,0xa8,0x0b,0xff,0x20,0x0e,0xbd,0xa7,0x24, + 0xad,0xc4,0x24,0xab,0x6b,0xde,0xc5,0x28,0x84,0xe3,0x08,0x10,0x57,0xa5,0x45,0x8d,0xde,0xe8,0x2a,0xe2, + 0x93,0xde,0xa3,0xa3,0xa4,0x35,0x6b,0x8f,0x0a,0xbc,0xa5,0x23,0xa3,0x19,0x9b,0x22,0xc1,0x23,0x3c,0x6d, + 0x5a,0xe7,0x55,0x28,0x29,0xfb,0x0a,0x8a,0xcd,0x15,0x25,0x42,0x8c,0x5e,0xc6,0x59,0xdc,0xa9,0x4c,0x53, + 0xbe,0x63,0x43,0xec,0x72,0x7e,0x87,0x24,0x42,0x7e,0x58,0xa1,0xa7,0x7f,0x38,0xe1,0xa3,0xc9,0x65,0x5a, + 0xd5,0x59,0x93,0xac,0x9a,0xd9,0xfe,0x3f,0x02,0x00,0x93,0x61,0x40,0x68,0xf3,0x71,0xe5,0x42,0xd5,0xf6, + 0xd7,0xf9,0x6b,0x5d,0x16,0x5b,0x55,0x7c,0xff,0xfe,0xcd,0xeb,0xa1,0xa0,0xcd,0x7c,0x76,0x03,0x16,0x2c, + 0xce,0x36,0xa7,0xfe,0x0c,0x6b,0x24,0x7d,0xe2,0xef,0x11,0xb0,0x72,0x5b,0xb8,0x36,0x6a,0xaa,0x9b,0xdb, + 0x2c,0xe1,0x1a,0x97,0x68,0x05,0x27,0xdb,0x04,0x3b,0x0c,0x9f,0x6c,0xcc,0x91,0x8b,0xda,0xf3,0x45,0x56, + 0xae,0x9a,0xf8,0x40,0x7d,0xaa,0xab,0xd9,0x51,0x59,0x7e,0xcc,0xb3,0xd7,0xe9,0x22,0x8b,0x83,0x9f,0xdf, + 0xbf,0x7b,0xbe,0x7f,0xfc,0xe6,0x87,0x67,0xaf,0x03,0xce,0xfb,0x8e,0x70,0x45,0x56,0xe9,0xbc,0x7d,0x3f, + 0x77,0x91,0x7e,0xd2,0x4b,0xfb,0x92,0x51,0x53,0xbc,0x7f,0xa8,0xae,0xd2,0x79,0x4e,0xbb,0x2d,0x23,0x12, + 0xb3,0x59,0xf5,0x11,0xb0,0x3b,0xd9,0x37,0xc9,0xc3,0x83,0x03,0x3a,0x8a,0x1f,0x7d,0x71,0x70,0xb0,0xd9, + 0x8c,0xea,0xe1,0x25,0xb7,0x40,0x80,0x3c,0x29,0x17,0x0b,0x22,0x9b,0x6f,0x1f,0x4f,0x80,0x33,0xe3,0xad, + 0xa9,0x53,0x3b,0x0d,0xd1,0x58,0x0f,0x88,0xba,0xc9,0xe9,0xf9,0x6f,0x0f,0xfe,0x16,0xd0,0xf9,0x98,0xff, + 0x01,0x9a,0x6b,0xa3,0x16,0xdb,0x1a,0x10,0xcb,0x2d,0xd0,0x41,0xfe,0x57,0x30,0x53,0xeb,0x73,0x23,0xc5, + 0x48,0xa3,0x16,0x56,0xa9,0xff,0x00,0xab,0x60,0x6f,0x56,0xbc,0xf5,0xef,0x26,0xbc,0x6c,0x9f,0x32,0x57, + 0x97,0xe0,0x3e,0x22,0xb5,0x9b,0xc1,0xa0,0x22,0xb0,0xfb,0xb0,0x5c,0x9a,0x93,0x8e,0x38,0x90,0xa6,0x9d, + 0xc2,0x78,0xa7,0x21,0xf2,0x52,0xc9,0x9c,0xb0,0x28,0x8b,0xfa,0xf9,0x47,0x04,0x85,0xeb,0x9c,0x02,0x7a, + 0xfa,0x5a,0xd0,0xd3,0xa1,0xa1,0x04,0xbe,0xd0,0x94,0xc0,0x97,0xc2,0x92,0x1f,0x1e,0x80,0x27,0xff,0x1c, + 0x99,0x2f,0xbf,0xc3,0xf3,0xa6,0x4c,0x5b,0x2f,0xc3,0x73,0x7a,0x0e,0x25,0x81,0xf6,0x30,0x55,0xf5,0x55, + 0xff,0x74,0x38,0x1a,0x8c,0x48,0x14,0x7d,0x7a,0x87,0xde,0x89,0xb0,0x12,0x64,0x37,0x23,0x1a,0x00,0x58, + 0x5e,0x81,0x18,0xd0,0x6b,0x34,0xaa,0x7c,0x4c,0x33,0x8b,0x20,0x9a,0xe4,0xb9,0x98,0x76,0x31,0x32,0x0f, + 0x7b,0xc9,0x34,0x6d,0x1b,0x33,0xaa,0xcb,0x24,0x28,0x0b,0x10,0x75,0x37,0xc4,0x50,0x35,0x19,0xed,0xdd, + 0xe2,0x82,0x00,0xec,0x2a,0xd9,0x3d,0x1c,0x61,0x0b,0xf6,0x30,0x49,0x32,0x28,0xa2,0xe7,0xf4,0x70,0x7f, + 0x7e,0x5a,0x2e,0x08,0x60,0x75,0x8d,0xc4,0x39,0x5d,0xe7,0xcd,0xe5,0x51,0x95,0x4d,0xa9,0xfd,0x3c,0x9d, + 0xd7,0x41,0x5e,0xec,0x2c,0xd7,0x6b,0x42,0x43,0x43,0x42,0x34,0xa0,0x2e,0xa5,0x27,0xbd,0x9f,0x4b,0x87, + 0x20,0x72,0xe4,0x4e,0x1c,0xa8,0xe5,0xb0,0x2c,0x08,0x47,0x5f,0x10,0x75,0xe1,0x4d,0x1b,0x6d,0x76,0xce, + 0xd1,0xdb,0xbc,0x95,0x01,0x58,0x4d,0x57,0x44,0xa7,0xf3,0xc4,0x2d,0x12,0x79,0x1b,0x12,0x14,0x54,0x05, + 0xed,0x72,0xea,0x60,0xa0,0x2e,0x4c,0xea,0x32,0xad,0xeb,0xeb,0xb2,0x9a,0x22,0x75,0x34,0x1d,0x3e,0xa6, + 0xb4,0xb2,0xca,0x7f,0xe7,0x3d,0x99,0x04,0x4f,0xd2,0x3a,0x9f,0xec,0x04,0x7b,0xf3,0x70,0xb1,0x47,0xe7, + 0xd5,0xde,0x45,0xb4,0xa1,0x49,0xa1,0x86,0x97,0x44,0x9e,0x78,0x44,0x99,0x07,0x98,0xaa,0x94,0x71,0x52, + 0x27,0x96,0x8c,0x7d,0xed,0xc3,0xfb,0xac,0xa2,0xe9,0xc8,0x7f,0x27,0xe2,0x57,0xed,0x12,0x60,0x2d,0x87, + 0xa6,0xf7,0x99,0x79,0x52,0xcb,0x93,0xcb,0x53,0x7f,0x30,0x68,0x8d,0x40,0xfd,0x4b,0xda,0x00,0x4b,0xa6, + 0xbd,0x6f,0x80,0x78,0x68,0x0c,0x57,0xd8,0x01,0x10,0x7a,0x2d,0x87,0x35,0xa3,0xa2,0xf5,0x7a,0x69,0x29, + 0x30,0xc2,0xff,0x83,0xc1,0x81,0xfe,0xc6,0x26,0x11,0xb5,0x36,0xcd,0x3e,0xbd,0xa1,0x45,0x9d,0x41,0x58, + 0x10,0x10,0x51,0x7e,0x2b,0xbc,0x0e,0xd0,0xc9,0xe3,0xf9,0xdc,0x20,0x62,0xc1,0x88,0xb2,0x6e,0xe3,0x94, + 0x86,0xdb,0x9b,0x8d,0xf3,0x80,0x05,0x5a,0x55,0x72,0xcb,0xf4,0x47,0x66,0x1b,0x03,0xd0,0x11,0x77,0x00, + 0x64,0x06,0xd6,0xb9,0x9d,0x31,0x76,0x9d,0x8a,0xdd,0xe3,0x31,0x95,0x55,0x32,0x92,0xf8,0xf0,0xe1,0xc3, + 0x2f,0x12,0x37,0xb2,0xf1,0xc3,0x83,0x2f,0x63,0xf3,0xa2,0xcb,0xa0,0xf8,0x56,0xb9,0xe0,0x75,0xb9,0xa3, + 0xe1,0x3e,0xb0,0x1f,0x70,0xc5,0x7a,0xc3,0xc4,0x85,0x22,0xf6,0x68,0x96,0x5f,0x10,0xe1,0x64,0x18,0x85, + 0xe5,0x66,0x94,0x63,0x9b,0x11,0xf2,0x51,0x04,0x97,0x34,0xa0,0x8d,0x80,0x56,0x56,0x55,0x65,0xe5,0xaf, + 0xc5,0x2a,0x9c,0x84,0xc1,0xeb,0xac,0x21,0x70,0xf9,0xb8,0xf3,0x0c,0xb9,0x81,0xca,0x14,0x4f,0xc1,0x32, + 0xb2,0x1f,0xdf,0x05,0x96,0xfc,0xb5,0x4e,0xdf,0xa1,0x5d,0x14,0xec,0xd9,0x55,0xdf,0x0b,0x16,0xf5,0x4e, + 0xf6,0x69,0x92,0x65,0x20,0x79,0xa8,0xce,0xe0,0xd9,0xd1,0x9b,0xd7,0xaf,0x1f,0x3f,0x79,0xf3,0xee,0xf8, + 0xd9,0xd3,0xa0,0x55,0x7b,0x35,0xec,0x13,0x6f,0x84,0x7a,0x29,0x6f,0x80,0xb3,0x88,0xb9,0x39,0x4f,0x08, + 0x08,0x3b,0xdb,0xd0,0xed,0xc0,0x08,0x7c,0x62,0xfb,0x58,0x1c,0xdf,0x30,0x74,0x85,0xdd,0xf4,0x28,0x16, + 0xd6,0x62,0x74,0x4e,0xe0,0x36,0x3d,0x91,0x6c,0x77,0x62,0x9e,0x26,0xe7,0xbc,0x23,0x02,0x3a,0xef,0xf5, + 0x06,0x96,0x4c,0x86,0x1d,0xa0,0x71,0x83,0xe7,0xa7,0x1d,0xc6,0xd7,0xca,0xbc,0x66,0x04,0x28,0x13,0x8d, + 0xac,0x80,0x60,0x02,0x8d,0xeb,0x3d,0x3e,0x67,0x6c,0xd1,0x5a,0x73,0x8a,0x75,0xed,0xb4,0x45,0xab,0x97, + 0xc9,0x09,0xd5,0x19,0x31,0x75,0x79,0xd9,0x4d,0x4b,0xb0,0xf3,0xda,0x00,0xc9,0x44,0xc5,0xb2,0x95,0xd4, + 0x01,0x59,0x4d,0x62,0x88,0xe0,0x39,0xc0,0x49,0xbd,0x0d,0xd6,0x51,0x73,0x49,0xcb,0x41,0x1c,0x6d,0x2f, + 0xb7,0x5e,0x16,0x4f,0xcb,0x6b,0x46,0x6b,0x6f,0x35,0x2e,0x1b,0x0c,0x96,0xc3,0x74,0x3a,0x7d,0x76,0x05, + 0xf2,0x22,0xaf,0x69,0xfc,0x34,0x92,0xc0,0x60,0x3a,0x82,0x82,0x9e,0x6f,0xa2,0x3e,0x9e,0x1c,0x05,0x3f, + 0x2c,0xbb,0x55,0xaf,0x38,0xc5,0x3d,0xfd,0x61,0x5b,0xed,0x2a,0x30,0x47,0x13,0xa7,0xa4,0x60,0xc1,0x82, + 0x7b,0x05,0xfb,0xc2,0x5c,0x26,0xb3,0x69,0xfe,0x59,0xb6,0xe4,0x39,0x4f,0xcf,0xe9,0x90,0x23,0x54,0xb8, + 0x82,0x9a,0x46,0x20,0x17,0x0b,0xe4,0xaf,0x79,0x38,0x93,0x64,0x85,0xf5,0xa4,0x93,0x72,0xf6,0x17,0xce, + 0x6e,0x3a,0x95,0xef,0xa0,0x2c,0xf0,0x89,0xe6,0x3c,0x86,0xb2,0xd3,0x87,0x6d,0x82,0x6d,0x54,0x68,0xb4, + 0x40,0x9c,0xcd,0x60,0xb0,0x9b,0x87,0xe6,0x3d,0x1a,0x37,0x44,0xce,0x06,0x1a,0xb0,0x76,0x66,0x29,0xa1, + 0xc8,0xe9,0x0e,0x80,0x67,0x47,0x0a,0xec,0x80,0x3e,0xa6,0x5d,0x6b,0x3e,0x50,0xa6,0x05,0xc1,0x00,0x85, + 0x55,0x3f,0x15,0xa0,0x6f,0xc3,0xe2,0xcf,0x8f,0xe6,0xf0,0xee,0xd1,0xa8,0x5c,0x95,0x32,0xa2,0x94,0x8f, + 0x4c,0xc6,0x3a,0xe0,0xe9,0xad,0xa6,0x29,0xb5,0xc5,0xfe,0x13,0x11,0x18,0xf8,0x4d,0x95,0x7b,0xd2,0x36, + 0x19,0x52,0x42,0x19,0x20,0xb0,0x86,0x18,0x73,0x52,0xc8,0x86,0x11,0x59,0x48,0xe5,0x6d,0x9e,0x24,0x27, + 0x5e,0xe9,0x3f,0x50,0x28,0xed,0x08,0xb3,0xf1,0xe1,0xdd,0x8b,0xa3,0x72,0x41,0x35,0x11,0x54,0x52,0xa6, + 0x13,0xeb,0xfd,0xd7,0x97,0x07,0x0f,0x2e,0x72,0x15,0xfc,0x5f,0x5f,0xd6,0xf7,0x5f,0x5f,0x3c,0xe6,0xc4, + 0xb8,0x95,0xf8,0xf0,0xcb,0x07,0x17,0x2a,0xb8,0xd7,0x4e,0x3b,0xe2,0x82,0xaa,0x9d,0x78,0x80,0x82,0x7b, + 0xad,0xb4,0xaf,0x9e,0x70,0xc1,0x93,0x76,0xe2,0x53,0x4e,0x3c,0x0d,0x7c,0x1e,0xf6,0x33,0xe0,0x46,0x18, + 0x61,0xb7,0x31,0xaa,0xd8,0x8c,0x57,0xb5,0x04,0xe5,0x54,0x44,0x20,0x2c,0x1b,0xad,0x3a,0xa2,0x84,0x3e, + 0xc6,0xac,0x89,0xa8,0x54,0xe3,0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xc9,0xe9,0xc8,0xd1,0xee,0x4d,0x67,0x71, + 0xfb,0xd4,0x5f,0xb4,0x64,0x96,0x3b,0x64,0xe6,0x3d,0x6c,0xf6,0x92,0xe0,0xe4,0x54,0xf3,0xa4,0x26,0x9d, + 0x08,0x30,0xad,0x0f,0xcb,0xfb,0xc8,0x70,0xf0,0x5e,0x43,0x51,0x43,0x30,0x63,0x09,0xea,0xa4,0x7c,0xf1, + 0xfe,0x8d,0xe9,0x62,0x9b,0x09,0x64,0xbe,0x79,0x9b,0xc3,0x83,0xbe,0x15,0xf2,0x1e,0x42,0xce,0xd1,0x5e, + 0x90,0x04,0x7b,0xac,0x7a,0x83,0x80,0x02,0x04,0x77,0x3a,0xfc,0xb5,0xcc,0x8b,0x30,0x18,0xd0,0x24,0x1b, + 0x46,0x1a,0x15,0xed,0x25,0xe1,0xfe,0x21,0xf4,0x20,0x8e,0x54,0x19,0x07,0xd1,0x98,0xfe,0xc4,0x28,0xbb, + 0x57,0x46,0x7f,0x0c,0x70,0x2d,0x02,0xff,0x24,0x48,0x41,0xcd,0x06,0xa9,0x4f,0xd6,0xd1,0xbb,0x39,0x70, + 0x44,0xe4,0xe4,0x25,0xf0,0x09,0xa4,0x82,0xac,0x49,0x2f,0xf0,0xf3,0x69,0x99,0x13,0xb0,0xd3,0xd3,0x8c, + 0x10,0x1e,0x18,0x2e,0xe1,0x9f,0xf2,0xd9,0xfe,0xa2,0x9c,0xe6,0xb3,0x3c,0x9b,0xee,0xd7,0x39,0xa1,0x45, + 0x49,0x5b,0x15,0x5b,0xa9,0xf3,0xb4,0x6e,0x6c,0x59,0xbc,0x97,0x13,0xd3,0x07,0xe2,0x2e,0xc1,0x7d,0x5f, + 0xd3,0x41,0x8e,0x16,0x08,0xa5,0x7e,0xba,0xd9,0xef,0x76,0xb4,0xca,0x88,0xa7,0xa7,0xe3,0x14,0x4f,0x74, + 0x4c,0xed,0xa7,0xb3,0x86,0xdf,0x40,0xcc,0xee,0xd3,0xd8,0x88,0xd2,0x39,0xbd,0x83,0xad,0x60,0xe1,0x20, + 0x6d,0xf0,0x12,0x92,0x17,0xa7,0xf1,0x27,0xae,0xdd,0xad,0xfa,0xb0,0x26,0x06,0xb4,0x09,0x83,0x5f,0x0a, + 0x82,0x91,0x0e,0xf7,0x5d,0xfa,0xcb,0x40,0xbb,0x4e,0xd1,0xe6,0x1f,0x42,0x4e,0x8f,0xcf,0x56,0xe7,0x34, + 0xdf,0xe1,0x01,0xa1,0x9d,0xa8,0x7d,0x56,0xab,0x62,0xab,0x54,0xb9,0x77,0x48,0x00,0x21,0x87,0x67,0x4a, + 0x47,0x38,0x0b,0x95,0x74,0xc5,0x4d,0xf4,0x4d,0x72,0xa0,0x77,0xcf,0x08,0x99,0x09,0x48,0x89,0xfd,0x09, + 0x13,0x20,0x4c,0x0a,0x8c,0xf9,0x9b,0x31,0xfe,0xc4,0x27,0xa7,0x11,0x30,0x14,0x4d,0x61,0x78,0x52,0x9c, + 0x46,0xb1,0xcd,0xd9,0x0b,0x14,0x50,0x73,0x5c,0x80,0xe1,0x4d,0x29,0xe3,0xcf,0x43,0x89,0x37,0x7b,0x77, + 0xd1,0x56,0x63,0x5f,0x41,0xe0,0x14,0x35,0xd6,0x22,0x21,0xb3,0x42,0x49,0xde,0x81,0x34,0x80,0xc7,0x0d, + 0xb5,0x73,0xbe,0xa2,0x1d,0x14,0x5c,0xd2,0x12,0x06,0x30,0x32,0x68,0x88,0x9f,0xc6,0x0b,0xb6,0xdd,0x1d, + 0x45,0x6e,0xf1,0x14,0x4b,0x31,0xc5,0x22,0xc2,0x49,0x39,0xa7,0x77,0xf3,0x38,0x76,0x8f,0x0e,0x63,0xc5, + 0xa2,0x02,0x89,0x89,0xab,0x01,0x78,0xe2,0x73,0xfa,0x51,0x35,0xe3,0x99,0x18,0x6d,0xe1,0x61,0x6c,0x1e, + 0x7c,0x85,0xca,0xd8,0x7d,0x99,0xd6,0x28,0x8b,0x9f,0xb1,0xfc,0x78,0xe5,0xfe,0x4f,0xab,0x01,0xf0,0x50, + 0xba,0x11,0x3c,0x2a,0xcc,0x1d,0xfa,0x48,0x3f,0x6a,0x99,0x36,0x97,0x9c,0x1f,0x3c,0xc0,0xe2,0x51,0xaa, + 0x4e,0x18,0x42,0x28,0xf4,0x18,0x26,0x21,0x63,0x97,0x88,0x52,0x7b,0xee,0x55,0xc4,0xf3,0xb4,0x56,0xc9, + 0x83,0x70,0x51,0xe7,0xd9,0x9a,0x26,0x08,0x64,0x5b,0xf4,0x20,0x1f,0x36,0x90,0x81,0x3a,0x15,0x1c,0xc0, + 0xff,0x31,0xa0,0x1f,0x9b,0xdc,0x68,0xd5,0xb4,0x45,0xc6,0xb3,0x79,0x86,0xb7,0x30,0x48,0x03,0x7b,0x4e, + 0xd2,0x1a,0x69,0x5e,0x7c,0x68,0x76,0xa0,0x5e,0x0b,0x27,0x7d,0x30,0x94,0x83,0x40,0x01,0xe3,0xba,0x82, + 0xd0,0x1f,0xfd,0x89,0x0b,0x67,0x50,0x62,0xe6,0x9f,0xa9,0x54,0xf3,0x02,0x88,0xc6,0x7c,0x70,0x22,0x1e, + 0x36,0x1b,0xc2,0x93,0x5b,0x2a,0xc7,0xdd,0x83,0xcf,0x9f,0xd1,0x9e,0x32,0x48,0xeb,0x3a,0x16,0x44,0x8a, + 0xd1,0x2e,0x4f,0x02,0xe9,0xd0,0x0e,0xd0,0x14,0xf1,0xca,0xf5,0x4e,0x4a,0x7d,0x29,0x98,0xb4,0xd9,0xc1, + 0xcc,0xa6,0x13,0xa0,0x85,0x8d,0x40,0x75,0xf0,0xf8,0xc9,0xd1,0xd3,0x67,0xcf,0xbf,0xfd,0xee,0xc5,0xf7, + 0x3f,0xbc,0x7c,0xf5,0xfa,0xcd,0xdb,0x7f,0xbe,0x7b,0x7f,0xfc,0xe1,0xc7,0x9f,0x7e,0xfe,0xd7,0xbf,0xd3, + 0xf3,0x09,0xb1,0xf3,0x17,0x97,0xf9,0xaf,0x1f,0xe7,0x8b,0xa2,0x5c,0xfe,0x56,0xd5,0xcd,0xea,0xea,0xfa, + 0xd3,0xcd,0xef,0x07,0x87,0x0f,0xbf,0xf8,0xf2,0xab,0xbf,0xff,0xf7,0x3f,0xbe,0xde,0x7b,0x90,0x04,0xa3, + 0xc2,0x49,0xa8,0x1d,0xe1,0xa1,0xbc,0x54,0x21,0x0d,0xbe,0x6a,0x25,0x61,0x11,0x93,0xe0,0x85,0xf4,0xeb, + 0xc8,0x74,0xcb,0x70,0x4a,0xbd,0x48,0xca,0xe8,0xdb,0x1a,0x90,0x30,0x89,0x9e,0xf6,0x0c,0xc2,0x18,0x82, + 0xb6,0x3a,0x39,0x80,0xe1,0xcd,0xa8,0xb4,0xd0,0xb3,0xae,0x71,0x7a,0x4d,0x12,0x3a,0x51,0x54,0xfd,0x5f, + 0x44,0x38,0xa5,0x7b,0xc9,0xc4,0xe4,0xfe,0xfd,0x8b,0x41,0xf3,0xcd,0x37,0xff,0xd8,0xa7,0x8c,0xbf,0xfd, + 0x23,0x62,0x74,0x13,0xe6,0x89,0x7c,0x7c,0x44,0xbd,0xa5,0x22,0xf5,0x5e,0x32,0xfc,0xef,0xaf,0xa2,0xe8, + 0x9b,0x87,0x5f,0x7d,0xa5,0x09,0x76,0x8c,0xae,0x18,0x35,0x49,0xf3,0xe8,0xd1,0x3f,0xd6,0xb9,0x39,0x8e, + 0xfe,0x97,0x11,0xc8,0xed,0x75,0x95,0xb7,0xb4,0xfa,0x86,0x6a,0x23,0x64,0x75,0x2b,0x66,0x20,0x74,0xda, + 0xd7,0x5a,0x47,0xc2,0x07,0x66,0x0f,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0x39,0x18,0xe8, + 0x4f,0xcc,0x49,0x45,0xdf,0x61,0x3c,0x7c,0x76,0x17,0xc0,0xcc,0xdf,0xbe,0x3a,0xb6,0xd2,0x5b,0xe5,0x41, + 0x76,0xee,0x7d,0x8b,0xfd,0x47,0x1f,0xe6,0xad,0x02,0xa5,0x57,0x60,0xca,0x02,0x1a,0x2a,0x52,0x42,0x70, + 0x41,0x40,0x9e,0xba,0xbc,0x3a,0x9b,0xac,0x2a,0x48,0xbd,0xdd,0x2e,0x64,0xdc,0x9d,0xd4,0xfa,0x8c,0x1f, + 0xed,0xd0,0x21,0xaf,0xc0,0x5c,0xc6,0x5b,0xa7,0x53,0xd2,0xf9,0x68,0xb8,0x60,0x3e,0x0b,0x43,0x78,0x97, + 0x5d,0x3c,0xfb,0xb4,0x0c,0x83,0xf0,0x7f,0xd6,0xa3,0x5f,0x7e,0xa9,0xff,0x16,0x85,0x34,0x25,0x44,0xbe, + 0x25,0xe1,0xc9,0xff,0x8c,0x4e,0xff,0x16,0x05,0x4e,0x15,0xd4,0x10,0x7f,0xb8,0x3d,0x57,0x27,0x5f,0x9c, + 0x8a,0x7c,0x02,0x8d,0x2f,0xca,0xab,0xb6,0x75,0x04,0xef,0x2e,0x5e,0x14,0x5a,0x0b,0x02,0x35,0xcc,0xd8, + 0xb0,0x28,0xaf,0xc3,0x68,0xff,0x1f,0x7f,0xff,0x32,0xfb,0x8a,0xa8,0xe9,0xb8,0xbb,0x68,0x90,0x39,0xb5, + 0xc7,0xd1,0xd2,0x9f,0x6e,0xb7,0x43,0x1f,0xfc,0x05,0xf2,0x58,0x77,0xea,0x92,0xc0,0x67,0x0e,0x69,0xf1, + 0xc9,0xa9,0x4f,0x80,0xfa,0x7a,0x49,0xaa,0xa0,0x5f,0x91,0xdd,0xaa,0x40,0x16,0xe8,0xd6,0xea,0xdb,0x58, + 0xe6,0x21,0xfa,0x36,0xd6,0xba,0xb7,0x0b,0x0b,0x25,0xb4,0x7f,0x08,0x09,0x83,0x6b,0x89,0xcb,0x27,0x5b, + 0x13,0x67,0xbe,0x22,0x22,0x12,0x44,0x66,0x27,0x49,0xf3,0x7b,0xad,0x8a,0x34,0xc5,0x91,0xb4,0xa9,0x4c, + 0x4b,0xdc,0xfa,0x35,0x78,0x46,0x04,0x96,0xcc,0x6d,0x88,0x01,0xa5,0x57,0x62,0x11,0xff,0x43,0xed,0x16, + 0xec,0x0e,0x3f,0xc3,0xcf,0x32,0x2a,0x78,0x31,0xd3,0xdc,0x5f,0x36,0x0d,0xb7,0x14,0x58,0x87,0x5f,0x8b, + 0x84,0x18,0xa6,0x79,0xd6,0x26,0x90,0x5e,0x0f,0x21,0x20,0xa6,0xdf,0x3b,0x78,0x04,0x5a,0x1a,0xa0,0xb3, + 0x6c,0x78,0x9e,0x6a,0xb1,0xdc,0xee,0x44,0x4b,0x61,0x98,0xc1,0xa2,0x87,0x64,0x1e,0xda,0x6c,0xa5,0x05, + 0x34,0xca,0xca,0x78,0x9d,0xb4,0x97,0x15,0x7f,0x22,0x04,0x4e,0x20,0x63,0x64,0x69,0xb0,0xcd,0x85,0xa2, + 0xa6,0xa3,0xb2,0xf2,0x6b,0x31,0xa2,0x7c,0x9b,0x32,0x14,0x5d,0x84,0xae,0xd4,0x0a,0xfd,0xb5,0x48,0xf3, + 0xb4,0x9d,0x8e,0xb7,0xe8,0x0f,0x15,0x11,0xaa,0x4f,0xbd,0x00,0xd2,0x1a,0x0d,0xf9,0x7a,0x06,0x5a,0x57, + 0x23,0xb4,0xb7,0x2d,0x37,0xa7,0x1b,0xb3,0xa1,0xa9,0x93,0x5a,0xe3,0xb7,0x5e,0xd7,0xe6,0x31,0x02,0x87, + 0xd8,0x16,0x37,0x38,0xb8,0xe7,0x39,0x6e,0xcc,0xd4,0xc8,0x03,0xbd,0xf7,0x4e,0x8d,0xb0,0xae,0x54,0x7c, + 0xa3,0x7a,0x6a,0x4a,0xe9,0x99,0x4e,0x18,0xa9,0x10,0x76,0x7b,0x86,0xd7,0x05,0x9c,0x3b,0x0d,0xb7,0x6d, + 0xa9,0x95,0xa2,0xbc,0xf7,0xcf,0xb5,0x4d,0xeb,0xeb,0xd4,0xf4,0xcc,0x47,0x35,0x7f,0x49,0x73,0xf1,0x19, + 0x6e,0xd4,0x4c,0x88,0x5d,0xaa,0xa2,0x45,0xe1,0x40,0xc5,0x09,0x84,0xb1,0xd9,0x66,0xa4,0xfe,0x84,0xbc, + 0xc0,0xd2,0x31,0xe1,0x6e,0xb6,0x5e,0xc3,0x9a,0xe3,0xec,0xe8,0xf1,0xeb,0xa3,0x67,0x2f,0xcf,0xce,0xfe, + 0x03,0xe9,0x83,0xa9,0xed,0xc1,0xff,0x84,0x27,0xe9,0xfe,0xef,0xa7,0xf8,0xf3,0xcb,0xf4,0x97,0xbd,0x5f, + 0xf6,0x7f,0x19,0x9e,0xfe,0x2d,0x8e,0xc6,0xbf,0x3c,0xf8,0xe5,0x81,0x21,0xfd,0xb2,0xff,0x48,0xbc,0xe1, + 0x10,0xe3,0xd8,0x33,0x24,0xfa,0xe5,0xc1,0x9e,0x90,0xcc,0x7b,0xa0,0x3f,0x1b,0x9f,0x20,0x7e,0xb0,0x27, + 0xa4,0xee,0x1f,0x4c,0x4e,0xdb,0x6a,0xa7,0x45,0xa9,0x65,0x9b,0xa2,0xc7,0x78,0x33,0xd9,0x3a,0x32,0x02, + 0x31,0xf6,0x0d,0xf6,0x42,0xff,0x73,0x62,0x74,0x89,0x8f,0xf1,0x53,0x62,0x58,0x37,0xb5,0xa8,0x2c,0x37, + 0xe9,0x50,0x8f,0x78,0xe6,0xd4,0x7f,0x09,0x1d,0x42,0x90,0x69,0x65,0x89,0xbb,0x9e,0x82,0xd5,0x12,0x45, + 0x10,0x6a,0x8a,0xbc,0x89,0xa8,0x0b,0x3a,0xe5,0x89,0xee,0xde,0x59,0xac,0xea,0x66,0xe7,0x3c,0xdb,0x49, + 0xad,0xcd,0xd4,0x30,0xd0,0x66,0x28,0x23,0xee,0xb5,0x16,0x0c,0x26,0xbd,0xca,0x2c,0xcc,0x15,0x4d,0x90, + 0x7c,0x50,0x24,0xf8,0x60,0xd4,0xce,0x86,0x14,0x2d,0xad,0x81,0x96,0x42,0xf3,0xc8,0x55,0xe5,0xbc,0x1f, + 0x6d,0x1a,0xc4,0x08,0x0e,0x41,0x7f,0xd1,0x3e,0x1d,0xbb,0xb8,0xbc,0xa3,0x4e,0xd1,0x56,0x15,0x5c,0x8d, + 0x16,0xd9,0xba,0x14,0x1c,0x5a,0x75,0xb9,0xaa,0x26,0x99,0xff,0x95,0x6f,0x6c,0x70,0xdb,0xe0,0xc0,0x60, + 0x7b,0xa2,0xaa,0x85,0x8a,0xb2,0x04,0x87,0xaa,0x1c,0x2a,0x0c,0x3f,0x77,0x1e,0x54,0x7f,0x61,0x6f,0xec, + 0xf4,0xa0,0x28,0x63,0x50,0xc6,0x62,0xc7,0x06,0x36,0x65,0xd0,0x7b,0x76,0x5b,0xb8,0xdb,0x07,0xa2,0x47, + 0x99,0xf9,0xbf,0xe4,0x06,0xd1,0xc0,0xb1,0xe1,0xc7,0x55,0xd6,0xef,0xd6,0xd0,0x0f,0x8c,0x59,0xaf,0x1d, + 0xec,0x7a,0x8d,0xd1,0xb1,0x45,0xac,0x67,0x0c,0xd9,0x2d,0x29,0x32,0x2f,0x23,0x09,0xdb,0xb4,0x77,0xa5, + 0x61,0xb9,0xda,0x95,0xf8,0x66,0xed,0x5b,0xd6,0x05,0xeb,0xf5,0xb6,0x1d,0x2f,0xa5,0xd5,0x37,0x8b,0xf3, + 0x72,0xde,0x4e,0x3b,0x2f,0xcb,0x79,0x96,0x16,0xbd,0x76,0xed,0xff,0x3b,0x96,0xf0,0x22,0x61,0x63,0xe3, + 0xdb,0x45,0xd1,0x6b,0x08,0x6f,0x88,0x68,0x36,0x84,0x60,0x9b,0xbc,0xd0,0x32,0x50,0x8e,0x38,0xfe,0x26, + 0x39,0x18,0x0c,0x5e,0x11,0x89,0x3f,0x9c,0xcd,0x4b,0x58,0x82,0xb1,0x32,0x9d,0x38,0xd6,0xfa,0x79,0x5e, + 0x30,0xfd,0xeb,0xd5,0x5a,0x77,0xba,0x4e,0x3d,0x1f,0x07,0x41,0x8f,0x67,0xcb,0xb8,0x2b,0xf2,0x13,0x29, + 0xf8,0xc3,0x28,0xb6,0x5d,0x70,0xb5,0x4e,0x7a,0xfb,0xea,0xa4,0xd8,0xc4,0xd1,0xa4,0xaf,0xa9,0x63,0xe3, + 0x8c,0x08,0x53,0xfb,0xd5,0x5c,0x5b,0x48,0x5a,0x8b,0x4c,0x6d,0x1a,0x2f,0x5c,0x7e,0x28,0xda,0x83,0x2a, + 0xb1,0x32,0x2c,0x05,0x31,0x67,0x72,0x30,0xca,0x1f,0x55,0xc6,0x94,0x2c,0x17,0xc3,0xcc,0x93,0xfc,0xf4, + 0x94,0x70,0xa5,0xe3,0x17,0xfa,0xb4,0xef,0x27,0x59,0x5b,0x90,0x75,0xba,0xe9,0x33,0xee,0xa0,0x62,0xa7, + 0x1b,0xd7,0xc7,0x95,0x75,0x47,0x30,0x7e,0x04,0x46,0xa5,0x9a,0x79,0x22,0x2e,0x16,0x07,0x7f,0xb3,0x7f, + 0x68,0xa5,0xc4,0xdc,0x65,0x3a,0x71,0x0a,0x75,0x18,0x79,0xb5,0xcd,0x5a,0x67,0xd6,0xb9,0x59,0x75,0x6c, + 0x72,0x5b,0x66,0xea,0xe6,0xb2,0x67,0x3e,0x46,0x5d,0xb4,0xe1,0x59,0xb4,0x9d,0x14,0xa7,0x30,0xec,0xa4, + 0x1f,0x58,0x08,0x47,0x7e,0xc3,0xcb,0x2d,0x63,0x54,0x2d,0x0d,0xa9,0x7a,0x0c,0x85,0x35,0x85,0x31,0xae, + 0xbe,0x39,0x1c,0x3b,0xe3,0x56,0x5b,0x0e,0x38,0x80,0xfb,0xcd,0xe6,0xbd,0xe6,0xd9,0xca,0x79,0x8b,0xe1, + 0x99,0x54,0x64,0x3d,0x2f,0x54,0xe1,0x3a,0x72,0x29,0x1d,0x21,0x6e,0x7c,0xbd,0x3e,0x18,0xb9,0xa5,0x37, + 0x65,0xf7,0x1b,0x5a,0x71,0x67,0x99,0x5b,0x44,0xa3,0x62,0x7f,0x7f,0x14,0x55,0x3c,0xa8,0x93,0x62,0xaf, + 0xb1,0x66,0xb7,0x95,0xab,0xf4,0xaa,0x03,0x48,0xf0,0xde,0x68,0x22,0xf8,0x76,0x24,0x98,0x0d,0x2b,0x19, + 0x75,0x5f,0x2c,0x5a,0xa2,0x09,0x58,0x4d,0x17,0x04,0x58,0xc5,0x23,0xe7,0x2c,0x42,0x80,0x85,0x0a,0x06, + 0x83,0x2b,0x68,0x1f,0x21,0x8c,0xb4,0xd0,0xe5,0xaa,0xb9,0x30,0xe7,0xb0,0x4b,0xba,0x71,0x00,0x83,0x6d, + 0x18,0x19,0x2c,0xa5,0x8f,0x44,0x3e,0xe7,0x2a,0xfa,0x11,0xa0,0xd9,0xa5,0x83,0x70,0xb7,0x32,0x85,0x88, + 0x6b,0xd9,0xad,0x06,0x03,0xbb,0xc1,0xa8,0x02,0xfd,0x4c,0xa5,0xa1,0xc3,0x64,0xdd,0x43,0xc2,0x53,0xe3, + 0x89,0xfb,0x89,0x6d,0x69,0x27,0x49,0xdd,0xe5,0x60,0x90,0x3a,0x80,0xd4,0x6b,0x02,0xf9,0x95,0x3c,0x82, + 0x43,0xca,0xae,0xb2,0xea,0xc6,0x3b,0x9f,0x3d,0x02,0x93,0xc7,0x81,0x61,0x6f,0xa4,0xb2,0xf5,0xda,0x54, + 0xb6,0x7b,0x38,0x12,0x81,0x86,0x06,0xcf,0x8f,0xd9,0x0d,0xb0,0x0a,0x71,0x4b,0x7e,0x82,0xb3,0x2b,0xaf, + 0x5d,0xdb,0x13,0xdb,0x76,0xdd,0x6d,0xbb,0xd5,0x32,0xbc,0x72,0x74,0xe3,0xce,0xf8,0xcb,0xb4,0xee,0x81, + 0xf5,0x79,0x17,0x83,0x6c,0xad,0x21,0x75,0xdd,0xd4,0x17,0x59,0x77,0x3a,0xdd,0x33,0xe2,0x85,0x6d,0x4d, + 0x67,0x6e,0xd7,0xd1,0xf8,0xb6,0xcd,0xc6,0x1b,0x36,0x99,0x66,0x72,0x4c,0x6f,0x08,0x1c,0x7e,0x6e,0x4f, + 0xf8,0x9b,0xed,0xda,0xd5,0x05,0x51,0x4f,0x10,0xf9,0x02,0xaa,0x03,0x3b,0x2f,0x5f,0xfc,0x1d,0xab,0xb1, + 0x5e,0x7f,0xfd,0x15,0x7e,0xdd,0xe7,0xc7,0x46,0x6f,0x17,0xdd,0xea,0x09,0x95,0xd3,0xd7,0xb8,0x1d,0x71, + 0x36,0xd5,0x3f,0x5f,0x65,0x71,0xa1,0x32,0x3a,0xd0,0xb2,0x2a,0x3d,0x9f,0x67,0xf1,0xee,0x6e,0xa5,0x20, + 0xd1,0x90,0x97,0x03,0x6d,0x09,0xb1,0xd2,0x99,0x07,0x1b,0x0f,0xc9,0x7c,0xf4,0xce,0xa3,0x1e,0x85,0xf3, + 0x60,0xf0,0xa0,0x60,0xbf,0x08,0xd6,0x89,0x3e,0xd0,0x14,0xba,0x6f,0x28,0xe8,0xaa,0x3a,0xea,0x58,0x38, + 0x65,0xb4,0x16,0x7c,0x78,0xab,0xf6,0x8f,0x3b,0xb9,0xdc,0xb7,0x9f,0xb4,0xa9,0x80,0x46,0x01,0x13,0x23, + 0xdc,0x79,0x23,0x66,0xbd,0x1a,0x15,0xc0,0x82,0x72,0xd8,0xa4,0x17,0xca,0xb2,0xc4,0x93,0xcb,0x7c,0x3e, + 0xad,0xb2,0x02,0xcc,0x17,0xac,0x3f,0x08,0x92,0xe7,0x0b,0xc5,0xca,0x4d,0x7e,0x47,0x46,0x5a,0xdf,0x14, + 0x93,0xe7,0x29,0xcc,0xe4,0x6f,0x9c,0x3a,0x75,0x58,0x80,0xe1,0x46,0xd5,0x22,0xc9,0x6b,0xf2,0x09,0x30, + 0xb9,0x7e,0xa4,0x54,0x02,0x5e,0x4a,0xa0,0xbf,0x5c,0xe2,0x88,0x58,0x5b,0xea,0x0f,0x17,0xd1,0xcf,0x94, + 0x3e,0x2b,0x8e,0xa4,0x21,0x4a,0xb7,0xcf,0x9c,0xae,0x3b,0xce,0xe9,0x76,0x10,0xf4,0xfc,0x7e,0x42,0x6b, + 0xf7,0x62,0xca,0xe9,0xfa,0x59,0xea,0x9f,0xd3,0x78,0xd9,0xf3,0xb2,0x11,0x75,0xac,0x1e,0x18,0xbd,0x54, + 0xf6,0x25,0x79,0xef,0xe5,0xc0,0xb0,0x28,0x82,0xf2,0xb6,0xf0,0x0b,0x17,0x7e,0xe1,0xa2,0x5d,0x98,0xf0, + 0x8d,0x9b,0xf1,0xf7,0xdd,0x1d,0x63,0x91,0x74,0x1b,0xed,0xea,0x83,0xb6,0xe0,0x13,0x16,0xe7,0x6b,0x42, + 0x6b,0x45,0x3f,0x9e,0xbf,0x88,0x57,0xeb,0x63,0x8b,0xf4,0xc4,0x25,0x68,0x37,0x6c,0x39,0xf0,0x10,0x73, + 0xaf,0x17,0xd9,0xee,0x2c,0x08,0xe5,0xce,0xce,0xca,0xf3,0xb3,0xb3,0x80,0x8d,0x55,0xe4,0xd9,0xff,0xa8, + 0xae,0xc6,0xe8,0x9d,0x64,0xc4,0x29,0x91,0xed,0x97,0xe5,0x6a,0x3e,0xa5,0xd9,0x26,0xc4,0x41,0xb3,0xb5, + 0xfb,0x5b,0xc1,0x46,0x82,0x5d,0x6c,0xb8,0x5e,0x83,0xd8,0xa2,0x1c,0xbd,0x79,0xf2,0xfa,0x19,0xbc,0x5a, + 0xea,0xfc,0x9c,0xad,0x6d,0xe9,0x43,0x76,0x52,0x20,0x2a,0x16,0xf3,0xc6,0x83,0xae,0x59,0x77,0x89,0x25, + 0xe0,0x79,0xbd,0x5a,0x1c,0x95,0xab,0xa2,0xd9,0xdb,0xa3,0x83,0xcb,0x8d,0xf1,0x9e,0xaf,0x4e,0x17,0x44, + 0x8c,0x6f,0xff,0x55,0x10,0xfa,0xd5,0x4d,0x5d,0x64,0x8d,0xe7,0x1e,0xf8,0x34,0xab,0x27,0x55,0x0e,0xcb, + 0x79,0x9e,0x1d,0x46,0xf7,0x29,0xa1,0xfb,0x43,0x22,0x17,0xd3,0xa1,0xbf,0x39,0x8d,0x84,0x38,0x25,0x8c, + 0x8d,0x4a,0x08,0x95,0xf2,0x63,0x4d,0x8f,0xf3,0x64,0x37,0x1f,0x0c,0x1e,0xe3,0x24,0xfc,0x0c,0x36,0xf0, + 0xb1,0xc0,0xd6,0xc6,0x57,0x54,0x65,0xd7,0xb4,0xba,0x49,0xea,0x71,0x6d,0x88,0x4e,0xa7,0xfe,0xf8,0x57, + 0x41,0x1b,0xad,0xa2,0xf2,0x34,0x37,0x25,0xb5,0xb4,0x84,0xe5,0x46,0xa4,0xe6,0xf4,0x3a,0xc7,0xab,0x4b, + 0xea,0x9e,0x38,0x83,0x81,0x47,0xf1,0xb7,0x20,0x4c,0xef,0x7f,0x71,0x4b,0x6a,0xba,0xee,0x48,0xb4,0x04, + 0x0d,0x0c,0x3b,0x31,0xf1,0xb2,0xd6,0xee,0xe9,0x73,0x2d,0x42,0x36,0xce,0x46,0x18,0x10,0x9a,0xb3,0xb0, + 0xa7,0xf6,0x47,0xd9,0x18,0xf2,0xa6,0x3d,0x4c,0x28,0x70,0xaa,0xf5,0xba,0xd9,0x65,0x13,0xd4,0x5d,0x3c, + 0x87,0x93,0xf1,0xc4,0xd1,0x61,0x31,0x75,0xc7,0xce,0x79,0x03,0xab,0xff,0xa2,0x6c,0x40,0xff,0xb2,0xe5, + 0xbd,0x07,0x0e,0x6f,0x3c,0xf3,0x80,0x2e,0x08,0xd2,0xda,0x85,0xee,0xb8,0xb1,0x67,0x2f,0xd3,0xe8,0x8b, + 0xf4,0x93,0x25,0x25,0x15,0x4b,0xf0,0x34,0xa9,0xd8,0xa8,0x43,0xaa,0x4e,0x15,0x80,0x93,0x86,0xfd,0x4f, + 0xb1,0x8f,0xf8,0xa9,0xeb,0x32,0xea,0xaa,0x16,0x03,0xd9,0x42,0x8b,0x8e,0xcc,0x6e,0x71,0x9e,0x49,0x02, + 0xe8,0xeb,0x75,0x05,0x4b,0x2d,0x0d,0xd7,0xe3,0x22,0xae,0xc6,0xe1,0x3d,0x42,0x30,0x7c,0x86,0xf0,0x28, + 0x08,0x19,0x61,0xae,0xcd,0x58,0x41,0xd8,0x19,0xeb,0xdb,0xc2,0xc3,0xd7,0xcf,0xec,0x3e,0xbf,0x63,0xc8, + 0xfe,0x68,0x3c,0x53,0x07,0xb7,0x91,0x47,0xae,0x4f,0xfe,0x5e,0x5b,0xaf,0x85,0x34,0x86,0x0d,0x9a,0xb1, + 0xf6,0x6d,0x4e,0x05,0xcd,0xf9,0x1d,0xf3,0x57,0xe0,0xad,0xed,0x8c,0x6f,0x9e,0x61,0xe1,0x0e,0x1b,0xd5, + 0x6d,0x4d,0x4d,0x93,0x40,0xe3,0x34,0xaa,0x1f,0xa5,0x06,0x0a,0x6b,0x60,0x37,0x10,0x96,0x49,0x7a,0x52, + 0x9f,0x9e,0x02,0x40,0x41,0x2b,0xcc,0x98,0x14,0x1a,0x97,0x61,0xc5,0xfe,0x8d,0xd0,0xa5,0xbc,0x0d,0xb1, + 0xf1,0x63,0x2c,0x7b,0x41,0x0f,0x3d,0x34,0xe5,0xd3,0x8e,0x88,0xae,0x18,0x77,0xf6,0x5c,0x95,0xf4,0xfa, + 0xc9,0x19,0xd7,0x61,0x76,0x96,0xa3,0x1e,0xf4,0x1d,0xc8,0xe3,0xcc,0x2b,0x94,0x39,0x12,0x5d,0xf7,0x2a, + 0xdf,0xc4,0xcd,0x38,0xf3,0xdb,0x33,0xae,0xe4,0xe1,0xe7,0x9a,0x64,0x1a,0x06,0x7f,0xd0,0xf0,0xe7,0x9a, + 0xf5,0x0a,0x12,0xdb,0x17,0x37,0xb1,0x37,0xec,0x5f,0xbb,0x72,0xb8,0x71,0x66,0x54,0xf8,0xb4,0x9d,0xba, + 0x68,0x62,0xdc,0xc4,0xd0,0xf3,0x7b,0xdf,0xbf,0x70,0xe4,0x8e,0x08,0x7c,0xda,0x5c,0x8f,0x96,0x14,0x78, + 0xba,0xa0,0x2b,0xb8,0x55,0x61,0xcc,0xb6,0x8a,0x97,0x66,0xe6,0x3d,0x29,0x80,0xad,0x6e,0x52,0x11,0x7a, + 0x21,0xf8,0xaa,0x46,0x73,0x78,0xf0,0xd1,0x01,0xc5,0x6e,0x8f,0xf8,0x83,0x46,0xfb,0xac,0xf9,0x80,0xfd, + 0x88,0x43,0x19,0x6a,0xef,0xa2,0xae,0xe8,0xc5,0x40,0x34,0xed,0xc7,0x65,0x2d,0x96,0x40,0xb2,0xbe,0x0c, + 0x70,0xb7,0x9b,0xd1,0xd6,0xfe,0x28,0xc4,0x29,0x9d,0x8e,0x58,0x8b,0xfe,0xc0,0xd5,0x74,0x05,0x14,0xa1, + 0xc4,0x75,0xc0,0x2e,0x48,0x4f,0xae,0x0b,0x82,0xbb,0xd3,0xe4,0x16,0x59,0xa2,0xe6,0x72,0x96,0x46,0xa5, + 0xa9,0x91,0xcf,0x0d,0xa0,0x88,0x22,0xc2,0xb7,0xf5,0xa9,0xe2,0x0f,0x6b,0xfa,0x10,0x60,0x3b,0xce,0x63, + 0xf9,0x3e,0xdf,0x8c,0x74,0x7f,0x93,0x74,0x03,0x94,0x79,0xc7,0x90,0xf2,0x02,0x73,0xef,0x8f,0xc9,0x26, + 0x7e,0x6e,0x60,0x32,0xd3,0x4c,0x30,0xf8,0x9c,0x39,0x71,0x6d,0xcc,0x99,0xdf,0xc2,0xb8,0x26,0xc6,0xf3, + 0xa6,0x7f,0x08,0xa9,0x0c,0x41,0x1f,0x83,0xc5,0x49,0x4a,0x3c,0x1b,0xfd,0xa1,0x31,0xd4,0x11,0xad,0xb7, + 0x7c,0x9f,0x12,0x8a,0x8f,0x62,0x79,0xae,0x37,0x9b,0xee,0x30,0xcc,0x20,0xe8,0x80,0xcc,0x2b,0xea,0x2f, + 0x51,0xaf,0x7a,0x71,0x4c,0x2b,0x95,0xd7,0x8a,0xcc,0xf4,0xa8,0x67,0xf1,0x73,0x90,0x05,0x1c,0x5d,0x03, + 0x06,0xfe,0x71,0xae,0x56,0x4b,0x58,0x17,0xd2,0x14,0x46,0x50,0xfa,0xeb,0xf8,0x1b,0x8d,0x0e,0x2f,0xc1, + 0x4d,0xe4,0x6c,0x23,0x05,0x28,0xcc,0x61,0x1c,0xa8,0x9a,0xe1,0x22,0xff,0x44,0xa4,0x8c,0x1b,0x1f,0x9d, + 0x7d,0x75,0x62,0x92,0xcd,0x14,0xa5,0x8f,0xea,0x51,0x0a,0x3e,0x93,0x3f,0x35,0xb9,0x34,0x6e,0xaa,0x84, + 0x9b,0x99,0xd0,0x49,0x44,0xb3,0x8e,0x5a,0x26,0x12,0x91,0x80,0x1e,0x22,0xf7,0xde,0x44,0x40,0x54,0x13, + 0x22,0x79,0x38,0x5d,0xef,0x90,0xb9,0xdb,0x18,0xcf,0xdd,0xde,0xea,0xf3,0xb6,0xb1,0x73,0x01,0x64,0x8b, + 0x81,0xd0,0x50,0x30,0x00,0x23,0xb5,0x01,0xef,0x2c,0x94,0xce,0x35,0x18,0x34,0x53,0xa2,0xf4,0x4a,0x94, + 0x52,0x22,0x4d,0x8e,0x8b,0xb0,0x74,0xd2,0x09,0x2a,0x95,0x12,0xf4,0xd1,0x58,0xe2,0x9c,0xc5,0x12,0x28, + 0x89,0xbf,0xa9,0x2f,0x5c,0x79,0xdd,0xdd,0xfa,0xcd,0x49,0x76,0xaa,0xca,0x64,0x97,0x56,0x4d,0x31,0x5f, + 0x0b,0x69,0x0c,0x9a,0x7d,0x17,0x3e,0x11,0x79,0x9c,0xca,0x87,0x7c,0x02,0x82,0x3e,0xa1,0xf3,0x11,0x0d, + 0x05,0xda,0xbd,0x32,0x88,0xc6,0x29,0x31,0x6f,0xf1,0x3b,0x2d,0x24,0x33,0x45,0x61,0xf8,0xbf,0xcb,0x2a, + 0xed,0x94,0x7e,0x8e,0xb4,0xff,0x6b,0x9a,0x30,0x21,0x6d,0x25,0x92,0x69,0x74,0x9b,0xf6,0x99,0xfe,0xcd, + 0xe0,0x01,0x65,0x5b,0x30,0x9b,0xa2,0x31,0x3e,0x9d,0xf6,0x1c,0x00,0x11,0x7b,0x4f,0x23,0x0c,0xd9,0x69, + 0x12,0x35,0xc1,0x89,0x3c,0x7b,0xb2,0x45,0xc0,0x60,0x45,0x9d,0xc3,0x33,0xce,0xa1,0xd4,0xb1,0xf7,0xdc, + 0x27,0xa2,0x85,0xcf,0xf0,0x73,0x27,0xdc,0x4f,0x5e,0x85,0x8d,0x0c,0x76,0x5c,0x59,0x6a,0xa7,0x22,0x70, + 0x05,0x4a,0xca,0x22,0xcd,0xaf,0x77,0x69,0xe8,0x51,0x37,0x01,0x7c,0xc8,0xe3,0x30,0xa5,0x89,0xef,0x66, + 0xd4,0xce,0x6c,0xc2,0xae,0xde,0x2b,0xcf,0x3e,0x0a,0xa3,0x77,0xdc,0xa1,0xd6,0xf2,0xb3,0x43,0xb7,0x2d, + 0x1e,0xfe,0x72,0xbd,0x17,0x3d,0xf0,0xf0,0x78,0x73,0x72,0x48,0x63,0x0b,0x5c,0x85,0xef,0xdc,0x81,0xde, + 0x3d,0x36,0x0c,0xc0,0xbd,0x12,0xe9,0xe6,0x2b,0xe3,0xf5,0x6a,0xc2,0x7c,0x54,0x8e,0xb0,0x2c,0x1e,0x55, + 0x86,0xf3,0x7f,0xc5,0xc2,0x30,0xf3,0x81,0x13,0xc5,0x58,0x49,0x82,0x6d,0xfa,0x89,0xb7,0xe2,0x8d,0x43, + 0x18,0x09,0xad,0x6f,0x52,0x0d,0xef,0x2d,0x53,0x62,0xa6,0x9a,0x91,0x33,0x20,0xb2,0x4b,0xc9,0x3e,0x04, + 0x47,0xe9,0x92,0x2a,0xcc,0xa6,0x8c,0x0b,0xec,0xd7,0x25,0x21,0xc4,0xf2,0x51,0x6e,0xfa,0x55,0x22,0xf4, + 0x48,0x75,0xc3,0xc3,0x83,0x09,0x24,0x76,0x84,0xac,0x55,0xa5,0xa4,0x71,0xdd,0x41,0x27,0xf1,0xf8,0x89, + 0x7a,0x55,0xa9,0xa0,0xd5,0xc6,0xce,0x65,0x59,0x7e,0x84,0x3f,0xfc,0x4f,0xba,0xcb,0x6e,0x10,0x3f,0x79, + 0x83,0x78,0x56,0x48,0xd7,0xbe,0x13,0x9d,0x3b,0xb7,0xac,0xe7,0xb0,0x93,0xe5,0x07,0x2e,0x91,0x0a,0x6d, + 0xfb,0x3f,0x1a,0xa9,0x6f,0xa0,0x4d,0xad,0xfd,0xef,0xa8,0x0f,0x3f,0x6e,0x75,0xe1,0x47,0xaf,0x0b,0xbb, + 0xbf,0x42,0x9e,0xf5,0xa2,0xa0,0xfd,0xd7,0xe3,0x63,0x04,0x2f,0x76,0xda,0xd1,0x5a,0x43,0x93,0x8d,0xf4, + 0xbb,0x34,0xd1,0x12,0x2e,0x7f,0x47,0xe4,0xcc,0xb2,0x4a,0xb4,0xd8,0x29,0x4b,0xa6,0x95,0x71,0x3b,0x8f, + 0x46,0x53,0x23,0x09,0x4e,0x9c,0x30,0xb1,0xa1,0xe7,0xc6,0x49,0x81,0x1a,0x96,0xe4,0x35,0xa7,0xa1,0x57, + 0xe5,0x07,0xef,0xd4,0xc3,0xa2,0x51,0x35,0x6c,0x4b,0xd1,0x56,0x24,0x69,0x67,0x44,0x2b,0xe0,0xb4,0xf3, + 0x22,0xd0,0x12,0x14,0x74,0x04,0x1c,0xe7,0x13,0xac,0x06,0x9f,0x6a,0x05,0xfb,0xc4,0x43,0x55,0xb3,0x04, + 0x5f,0x81,0x3e,0x1f,0xa8,0xcb,0x6a,0xbc,0xaa,0xc2,0x28,0x9e,0x57,0x30,0xd0,0xd9,0xcd,0xfa,0xf5,0x33, + 0x5a,0x93,0x16,0x79,0x72,0x94,0x3e,0xe5,0x5a,0x01,0xe5,0x9a,0x1b,0xc6,0xef,0x48,0xb3,0x05,0xc0,0x77, + 0x29,0x4b,0x8a,0x94,0x77,0x48,0x05,0x43,0x62,0x41,0x21,0x7d,0x04,0x23,0x6c,0x39,0xe4,0xe7,0x55,0xf9, + 0x3b,0xdc,0xb1,0xc5,0xa6,0xaa,0xd1,0xb4,0xba,0x39,0x8f,0x1b,0x9f,0x1d,0xcb,0x19,0xca,0x0b,0x58,0x10, + 0xd2,0xe1,0x6c,0x0c,0x3b,0x0b,0x78,0x1f,0xd0,0x3b,0x5c,0x45,0x52,0x4d,0xeb,0x34,0x2d,0x5a,0x87,0x3a, + 0xc7,0x24,0x97,0x17,0x69,0xa7,0x4a,0xc2,0xb2,0x43,0x9f,0x47,0x5b,0xdf,0x94,0xf4,0xd5,0x29,0x47,0x56, + 0x88,0x68,0xd6,0xcf,0xab,0x88,0xfe,0x0f,0x27,0x74,0x14,0x54,0xfe,0x82,0xfe,0x10,0xb6,0x63,0x68,0x69, + 0x95,0x9e,0x13,0x6e,0x2b,0x10,0x06,0xb3,0x82,0x8f,0xeb,0xdd,0x2d,0x1a,0xc6,0x8a,0xae,0x3d,0xc5,0x9b, + 0x93,0xed,0x8d,0x1c,0x3e,0x28,0x34,0xe8,0xf5,0x2a,0x22,0x20,0x26,0xf1,0x6b,0xc8,0xac,0x4c,0x9c,0x9b, + 0x46,0x38,0x03,0xd7,0xe3,0xdf,0x42,0x2d,0x4c,0xb0,0xf6,0xff,0xaa,0x56,0x74,0xe0,0x73,0x63,0xa9,0x9c, + 0xee,0x34,0xf5,0xa0,0x06,0x26,0x4c,0x11,0x11,0x2d,0x70,0x56,0x01,0x39,0x67,0x21,0xdb,0xc8,0x65,0x74, + 0xe4,0x8f,0xe9,0x6f,0x8d,0xba,0x71,0x1e,0x4a,0xe9,0xe4,0x07,0x2c,0x8b,0xaa,0x88,0x5f,0x67,0xe3,0xcd, + 0x5a,0xcd,0x87,0x44,0x8d,0x67,0x0a,0x01,0x5e,0x18,0x85,0xd0,0x13,0x7c,0xe2,0x88,0x3e,0xe2,0x27,0x98, + 0xa9,0x47,0x51,0x5c,0xd3,0x29,0x32,0xa1,0x5a,0x26,0xdc,0x55,0xa2,0xf6,0x51,0xd7,0x24,0x8a,0x5c,0x7f, + 0x0a,0x5e,0x8f,0x14,0xe4,0x69,0x1e,0x86,0xba,0x37,0x91,0xb4,0x22,0x1d,0x34,0x2d,0x78,0x0b,0xf3,0x7d, + 0xa8,0x87,0xe8,0xe9,0xb5,0xa2,0xdb,0xb2,0x5f,0x88,0xaa,0x56,0x32,0x1a,0xa2,0x1d,0x36,0x55,0x5b,0x80, + 0x04,0x81,0x18,0xe1,0x5d,0xc8,0xff,0x86,0xc0,0x80,0x30,0xe1,0x70,0x6f,0x44,0x25,0x45,0xfa,0x94,0x83, + 0x3d,0x21,0xad,0xc3,0x88,0xa7,0xa7,0xa6,0xd9,0x40,0x8f,0xe3,0x46,0xc6,0x05,0x29,0x03,0x3d,0xb1,0xa5, + 0xcc,0x94,0x66,0xaf,0xa6,0x11,0x22,0x5d,0x76,0x7f,0x4a,0xb3,0x80,0x0f,0x26,0x8a,0x3e,0x51,0xb5,0x2e, + 0x86,0x4d,0xcc,0x02,0xb0,0xda,0x8d,0xea,0x5b,0xe6,0x02,0xf5,0xc8,0xb0,0x63,0x00,0x44,0x42,0x2d,0x80, + 0x9a,0x71,0xec,0x39,0xc2,0xa3,0x00,0xec,0xcb,0xf5,0x5a,0xf3,0xb5,0xfc,0x4a,0x67,0x90,0x2e,0x9c,0x77, + 0x0b,0xe7,0xed,0xc2,0x39,0x0a,0x6f,0xb6,0x0f,0xac,0x9f,0x3d,0xa9,0xab,0x58,0xe9,0xb3,0x80,0x96,0x30, + 0x12,0x36,0xb6,0x36,0xb1,0x37,0x22,0x4b,0xf7,0xd9,0xbf,0x7d,0x66,0x2d,0x04,0x53,0x9e,0xd5,0xaf,0x58, + 0x29,0xbc,0x5e,0x7f,0x8b,0x40,0x2e,0xf2,0x02,0x9d,0x64,0x76,0xf2,0x9e,0xd5,0xa2,0xf6,0x5c,0x3f,0x4e, + 0x2f,0x24,0x1a,0x00,0x1c,0x55,0x85,0xfa,0xa1,0x6d,0x00,0x0f,0x02,0x43,0x0c,0x83,0xea,0xf0,0x38,0xbb, + 0x7f,0xb5,0xc2,0xbc,0xd8,0xde,0x80,0x56,0xf0,0x85,0xb3,0xee,0x83,0x7f,0x6a,0xbb,0x85,0xae,0x70,0x21, + 0xfa,0x8c,0x80,0xdf,0x70,0x29,0xa0,0x55,0x79,0x25,0x2a,0x76,0x8b,0x80,0xf8,0xb4,0x23,0x4d,0xa6,0x4d, + 0xf3,0x2f,0xca,0xb5,0x13,0x5e,0x79,0x94,0x68,0x96,0x99,0x83,0xab,0x18,0xdf,0xe0,0x78,0x27,0xb8,0x13, + 0x79,0x90,0xbc,0x75,0x74,0x74,0x8d,0x64,0xde,0x72,0xe6,0x6c,0xd6,0xc9,0x2d,0x6c,0x65,0x37,0xd4,0x31, + 0xc5,0x3b,0x5d,0xcc,0xad,0x28,0x99,0xc8,0x5a,0x4a,0x15,0x9a,0xcf,0xd3,0x5a,0x67,0x3e,0x1f,0x26,0x9c, + 0xd6,0xae,0x3b,0x0e,0x3c,0x0c,0xd4,0x0a,0x69,0x66,0x84,0x68,0x5a,0x1e,0xc9,0x9c,0x6d,0x9a,0x94,0xbc, + 0x31,0x50,0x05,0x4b,0x11,0xd3,0xa6,0xa9,0x6a,0xfb,0x40,0x08,0xac,0x6c,0xac,0x1f,0xb1,0x9f,0xa8,0x4a, + 0x23,0x3f,0x17,0x7b,0xbc,0xd2,0xc9,0xb6,0x77,0x59,0x51,0x01,0xe9,0xa5,0xe8,0x8c,0x53,0xfe,0x20,0x0a, + 0x0b,0x03,0x08,0x6c,0xce,0x61,0x42,0xd0,0x9d,0x9c,0x12,0x5a,0xe0,0x1d,0x55,0x7a,0x32,0xa0,0x5a,0x7f, + 0xc5,0xe8,0xac,0x86,0xa6,0x12,0x3f,0x28,0x3c,0x0a,0x9a,0x6c,0xb1,0x9c,0x13,0x93,0x05,0xb8,0x2b,0x21, + 0xea,0x1f,0x4f,0xb8,0x02,0x8d,0x26,0x26,0xe8,0x9a,0x16,0x69,0xaf,0xd7,0xf4,0x45,0x3c,0x31,0xf5,0x6f, + 0x6c,0xec,0xa3,0xb9,0xe0,0xa8,0xe2,0x64,0x7e,0xaa,0x75,0x4b,0x79,0xe6,0x1c,0xa6,0x91,0xec,0x22,0x8b, + 0x38,0x4d,0x7e,0x76,0x17,0x8c,0xee,0xb6,0x81,0x94,0x88,0x98,0x1d,0xde,0x15,0xbc,0xc7,0x3c,0xc5,0x7e, + 0xe6,0x29,0x34,0x35,0xaf,0x76,0x07,0xa4,0x76,0xa0,0x1a,0x94,0xe9,0x18,0x9f,0x8b,0x72,0x2a,0x26,0xde, + 0x87,0x9e,0x70,0x10,0xb2,0xa6,0xf3,0x94,0x66,0xbf,0x47,0xe3,0x98,0x66,0x46,0x73,0x39,0xca,0xf4,0x5e, + 0xd4,0xd4,0x69,0x34,0x8a,0x58,0x4b,0x7d,0x96,0x17,0x29,0x73,0xbf,0x9f,0xa3,0x77,0xeb,0xcc,0xd2,0xda, + 0x46,0xbb,0x7d,0x26,0x6c,0xf3,0x0b,0xfd,0x35,0xd1,0x5b,0x8a,0x1b,0x33,0x54,0xa9,0x61,0xdc,0xb7,0x4a, + 0x1a,0x1a,0xa0,0xdd,0xba,0x33,0xf0,0xf0,0x7a,0x74,0xeb,0xbd,0x80,0xa0,0xeb,0xce,0xd6,0x3d,0xb3,0xca, + 0xfe,0xbc,0xa1,0xaf,0x2e,0x87,0x35,0xb1,0xbc,0x39,0x03,0xae,0x87,0xa0,0x66,0x1a,0xf8,0x62,0xc1,0x49, + 0xd6,0x16,0x69,0x18,0x52,0x5d,0xb3,0xb8,0x9e,0x38,0x80,0xf7,0x52,0xd1,0xdd,0x4b,0xa0,0xf9,0x0a,0x1b, + 0x35,0xd3,0x46,0x9f,0x28,0x40,0xf6,0x15,0x20,0x91,0xf7,0x02,0x43,0x83,0xd3,0x68,0x88,0x0c,0xfa,0x8e, + 0x5e,0xd8,0xf1,0x92,0x59,0xc0,0x6c,0x01,0x53,0x05,0x14,0x88,0x83,0x3d,0x1f,0x2b,0xcc,0x11,0xf8,0xeb, + 0x3d,0x68,0x42,0xa1,0x63,0x55,0xc3,0xc3,0x3f,0x86,0x3d,0x52,0xd5,0xf8,0x4a,0x58,0xdf,0x12,0x28,0x9f, + 0xee,0x13,0x81,0x36,0xdd,0x40,0xfc,0x4d,0x93,0xf4,0xb8,0x7a,0x74,0x6c,0x69,0x8e,0xc7,0xdc,0xdd,0x84, + 0x80,0xe0,0xb8,0x3a,0x79,0x5c,0x9d,0x46,0x54,0x50,0x1d,0x55,0x2c,0xb6,0x65,0xfa,0x63,0x58,0xad,0x8a, + 0xd0,0x18,0x63,0x7d,0xac,0x2c,0xed,0x52,0x25,0xc7,0xf6,0x85,0x6a,0x49,0x6c,0x95,0x28,0x64,0xe8,0x69, + 0xaa,0x09,0x7a,0xf1,0x4f,0x55,0x82,0x4e,0x1f,0xb6,0x24,0x2d,0x7f,0x40,0x6a,0xfb,0x8b,0x7c,0xa0,0xb0, + 0x7e,0x10,0xe6,0xee,0x22,0x5a,0x68,0x11,0xdd,0x51,0x91,0xab,0x04,0x94,0x9f,0x59,0x3d,0x7c,0x07,0xaa, + 0xeb,0x6a,0x31,0xaa,0x86,0x67,0xd7,0x58,0x89,0xac,0x22,0xa0,0x2a,0x20,0xcf,0x3e,0xcb,0xe9,0xec,0x5a, + 0x11,0x82,0x9a,0x0e,0x06,0x34,0x14,0xe2,0x94,0x44,0x54,0xc3,0xf0,0x40,0x98,0x5e,0x7d,0x4f,0xc5,0x9e, + 0x01,0x2f,0x5d,0x35,0x65,0x09,0x6f,0xe1,0xef,0x89,0xf5,0xe1,0xf5,0x99,0xcd,0x09,0x7d,0x04,0xde,0xea, + 0xac,0x2c,0xce,0x7e,0x56,0x41,0x05,0xb3,0x6d,0xcf,0xc7,0x56,0x64,0xd4,0x1f,0x02,0xc0,0x8d,0xa2,0x42, + 0x75,0xb6,0x6d,0x37,0x2d,0xd9,0x88,0xf2,0x77,0x97,0xae,0xa6,0xa0,0x4f,0xbd,0x66,0x67,0xb6,0x59,0x81, + 0x48,0x56,0x6a,0xf5,0x49,0xa5,0x8a,0x71,0xa8,0x3b,0x56,0x8d,0xa7,0x6c,0x88,0x55,0x98,0x4e,0x5c,0x44, + 0xb1,0xc9,0x2b,0xf0,0x77,0x5c,0x81,0x02,0x40,0x40,0x3b,0x02,0x61,0x9a,0x2f,0x53,0x1e,0x79,0xf1,0x85, + 0xf9,0xaa,0xc0,0xdf,0x31,0xff,0x8d,0x2f,0xa2,0x3b,0xfb,0xdb,0xb4,0xfb,0x3b,0xf5,0xf1,0xe5,0x96,0x4a, + 0x89,0xed,0xec,0xce,0x70,0xee,0xae,0x68,0x15,0x7e,0x92,0xd5,0xa2,0x69,0xef,0x4f,0xd7,0xa2,0x1d,0x2b, + 0xbb,0x67,0xc1,0x5d,0x73,0x03,0x9b,0xdc,0x0c,0x9a,0x09,0x48,0x7f,0x23,0xe5,0x69,0xa4,0x1a,0xa7,0x0b, + 0x6a,0x44,0x77,0xe1,0x5b,0xb8,0x64,0x4e,0x98,0x64,0x43,0xf7,0x40,0x49,0x04,0xa9,0xab,0x42,0xc4,0x29, + 0x6d,0x7e,0x1e,0xa9,0x6d,0x39,0x18,0x6b,0x02,0x19,0x23,0xd3,0xa6,0xb9,0x77,0x2d,0xbe,0xe0,0x22,0x1e, + 0x76,0x96,0x2b,0x0e,0x65,0x66,0x7f,0x6c,0xb4,0xf4,0x6d,0x31,0x7e,0x97,0xcd,0xe6,0xc8,0x29,0xaf,0x8b, + 0x1f,0xc4,0x44,0x62,0x38,0xcb,0xe7,0x4d,0x56,0xf5,0x19,0x38,0xff,0x19,0x0d,0xe2,0xd0,0x69,0xf9,0x36, + 0x51,0xdc,0xb1,0xbe,0xe8,0xe1,0x47,0x6e,0x9d,0x24,0x02,0x04,0x2c,0x51,0x06,0x88,0x4c,0x3a,0x84,0x00, + 0x15,0xd2,0xc8,0x51,0x3d,0xe2,0xd1,0xd4,0x2c,0x6a,0xba,0xca,0xa7,0xd8,0x47,0x4c,0xe9,0x7b,0x29,0x44, + 0x10,0xd1,0x37,0x89,0x97,0x02,0xe1,0xec,0x39,0x0d,0xf6,0xe3,0x86,0xd8,0x04,0x73,0xf8,0x80,0xef,0xdb, + 0x85,0xed,0xa1,0x91,0x94,0x41,0x5a,0x49,0x1f,0x0a,0x64,0x4c,0xa4,0x61,0x23,0x32,0xe3,0x1a,0x7b,0x60, + 0xdc,0x2a,0xe2,0x08,0x5a,0x27,0x1b,0x6b,0x4f,0xe4,0x2d,0x32,0xc2,0x9d,0xb5,0x58,0x5c,0xf0,0x4c,0xdb, + 0x52,0x69,0x96,0xf9,0x6d,0x87,0x16,0xd2,0x22,0x78,0xab,0xe5,0xb6,0x16,0x5d,0xaa,0x24,0x74,0x97,0x3a, + 0x14,0x54,0x3e,0x4a,0x59,0x5c,0x53,0xa1,0xa3,0xb4,0xb9,0x39,0x9e,0xab,0x93,0xbe,0x6f,0xdb,0x10,0x6e, + 0x57,0xcd,0x75,0x52,0x45,0x99,0x5f,0x51,0xb9,0x77,0xe8,0xd7,0x93,0x1b,0xd2,0x76,0xcb,0x94,0xc6,0xaf, + 0xaa,0xee,0xf4,0xb2,0xee,0xf6,0x72,0x92,0xd4,0xe8,0xa0,0xed,0xec,0x84,0x38,0x46,0xe5,0x64,0xb1,0x9a, + 0x22,0x66,0x74,0xf9,0x23,0x62,0x03,0x70,0x80,0x04,0x4f,0x79,0xbf,0xf0,0x76,0x0e,0xcb,0xb7,0xa8,0x21, + 0xde,0xb1,0xf7,0x6a,0x58,0x2a,0x4c,0xdf,0x13,0xd1,0x66,0x36,0x6b,0x89,0xd8,0x6d,0x4c,0xcb,0x56,0xbc, + 0x67,0xae,0xc2,0xab,0x10,0x2f,0x11,0xcb,0xbd,0xf3,0x04,0x5b,0x6e,0xbd,0x6e,0x7c,0x27,0x67,0x5d,0x95, + 0xa9,0x24,0x85,0x72,0x63,0x78,0x46,0x40,0x33,0xcd,0x2a,0xe6,0xae,0xf0,0x1d,0x51,0x96,0x8d,0x89,0x96, + 0x0b,0x9d,0x1f,0x8a,0x5b,0xfb,0xa1,0xb1,0x54,0xd1,0x71,0xfe,0xb3,0x34,0xa3,0xba,0x45,0xe9,0x18,0x71, + 0x41,0x5b,0x5a,0xa1,0x0b,0x1f,0x57,0x3d,0x17,0xb3,0x60,0x43,0x0c,0xa8,0x40,0xb6,0x22,0x42,0x23,0x50, + 0x87,0xdf,0x7b,0x24,0xe1,0x4d,0x77,0x3a,0x12,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f,0x84,0x8d, + 0x35,0x6b,0x1c,0xb7,0xe1,0x2e,0x8f,0xc6,0xec,0xdd,0xec,0xbc,0x5f,0x89,0x21,0xca,0x21,0xd9,0x8d,0xab, + 0xf1,0x51,0x41,0x0b,0x01,0x42,0x3a,0xee,0x12,0xff,0xe7,0xb6,0x45,0xcd,0x4e,0x16,0xe0,0xb0,0xc1,0x51, + 0x6e,0xab,0xbc,0x69,0xce,0x17,0xc8,0x1a,0x69,0x91,0x81,0x3b,0x82,0x72,0x91,0xf1,0x4f,0xe6,0xc4,0xdb, + 0xb3,0x6b,0x26,0xef,0x81,0x1b,0x61,0xe6,0xe8,0xe5,0x06,0x45,0x22,0x82,0x72,0x9f,0x24,0xcf,0x0c,0x77, + 0xa0,0x1f,0x58,0x88,0x3c,0x4a,0xa1,0x17,0xa7,0x51,0xc3,0x18,0xfc,0x43,0xcd,0xc7,0x01,0xa1,0xc3,0x9a, + 0xe6,0x77,0x4c,0xac,0x5f,0xb9,0x40,0x42,0x0d,0x11,0x84,0x7d,0x01,0x03,0x1e,0xeb,0x3a,0x38,0x83,0x9f, + 0x90,0xba,0xc9,0x81,0x51,0x52,0x48,0xdc,0xc1,0x44,0x0b,0x47,0x5b,0x42,0x80,0x11,0x22,0x28,0x05,0x17, + 0x2e,0x0b,0x66,0xe0,0x4f,0xf4,0xf9,0x4d,0x84,0x53,0x7e,0xda,0x3a,0x5b,0xf1,0x15,0x8b,0xbe,0x2c,0xc5, + 0x38,0x11,0x6a,0xbf,0x26,0x2e,0xdf,0x05,0x05,0x73,0xd6,0x5c,0x2d,0x1a,0x50,0x8e,0x9f,0x9a,0x2d,0x7c, + 0x8e,0xab,0x2c,0x43,0x0f,0xb7,0xd2,0xc0,0x88,0x60,0xdf,0x01,0x46,0x0d,0x83,0x48,0xe7,0x68,0xd3,0x59, + 0xe2,0x2a,0x1a,0xbf,0xa7,0x3f,0xf1,0x27,0xfc,0x09,0x8f,0xb3,0x50,0x3e,0x49,0x5a,0xd0,0x35,0x94,0x7a, + 0xdf,0x31,0x8c,0x3f,0x2f,0x00,0xf7,0x4e,0x8f,0x6a,0x60,0xff,0x2d,0xdc,0xc1,0x45,0xbc,0xca,0x9a,0x55, + 0xd8,0xc3,0xc8,0x77,0x67,0x67,0xc1,0x5e,0xa6,0x76,0x0f,0xa3,0xd6,0xf9,0x73,0x6d,0x49,0x05,0xdd,0xbd, + 0xe3,0x4c,0x1b,0xd1,0x10,0xaf,0x8a,0x4f,0x9a,0xbd,0xb0,0x18,0x07,0x67,0xf0,0x92,0x0e,0x02,0x09,0x40, + 0xe4,0x4d,0xc9,0x71,0xe6,0x89,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe3,0x2f,0x99,0xa0,0xe3,0x50,0xb4, + 0x1a,0x9d,0x3a,0x47,0x02,0x4e,0xfe,0x98,0x69,0x75,0xea,0x1e,0x1a,0xae,0xac,0x78,0xef,0xa3,0x69,0xcd, + 0x33,0x39,0xb3,0x1d,0x70,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xd8,0x70,0xe5,0xf5,0x1b,0x1a,0x4a,0xe2, + 0xed,0xc5,0x23,0x8f,0x4d,0x81,0x22,0xbe,0x89,0x1c,0x5d,0x5f,0xca,0x9f,0x31,0x23,0x20,0x3c,0x45,0xb1, + 0xc7,0x7f,0x55,0x22,0x41,0xf3,0x74,0x7d,0x84,0x3a,0x21,0x81,0x1c,0xb1,0x6e,0x2f,0x1f,0x9f,0x9c,0x1a, + 0x2d,0x75,0xae,0xfd,0xc9,0xb7,0xc1,0xe8,0x53,0x26,0x7e,0x65,0x67,0x65,0x72,0x9d,0x51,0x1b,0x67,0x05, + 0x87,0x5c,0x3f,0x83,0x7c,0x8c,0x7e,0xe6,0xc9,0x15,0xa7,0x36,0xc9,0x82,0x7f,0x7f,0x4b,0x6e,0xf0,0x93, + 0x27,0xe7,0xf8,0x59,0x24,0x67,0x9c,0x3a,0x4b,0x2e,0xf8,0xf7,0x63,0x72,0xc3,0xbf,0xe7,0xc9,0x39,0xff, + 0x5e,0x25,0x47,0xf8,0xa1,0xf1,0x22,0xe2,0xc6,0xd9,0x2a,0x29,0x39,0xf9,0x22,0x39,0xf2,0x7a,0xf0,0x5e, + 0x26,0xcd,0x17,0x13,0x12,0x83,0xac,0xc1,0x4c,0x1c,0x32,0xd8,0x53,0x49,0x47,0x4a,0x15,0x0d,0x6f,0x23, + 0x2f,0xd6,0x22,0xac,0xd2,0x99,0x7c,0x52,0x27,0x3a,0x26,0xe9,0x5c,0x47,0x89,0xa9,0x13,0xd9,0x86,0x57, + 0x85,0x09,0xf8,0x89,0x93,0x88,0x8d,0xd8,0x88,0xe2,0x49,0xf5,0x3b,0x6d,0x7d,0xc9,0x66,0x3c,0xde,0x43, + 0x1c,0x57,0x19,0x5b,0x22,0x6c,0xda,0xa6,0xa1,0x9a,0x28,0xca,0xc5,0x95,0x2e,0x15,0x1a,0x10,0x71,0x57, + 0xe0,0x53,0xb7,0x3b,0x19,0x4d,0x8c,0x73,0xa1,0xd9,0x39,0x49,0xaa,0xbc,0xf3,0x22,0x71,0x4d,0x86,0x91, + 0xda,0x3a,0x93,0x60,0x19,0xee,0xde,0x30,0x04,0x44,0xa5,0x38,0xab,0xc5,0xbe,0x6e,0xac,0xa9,0xce,0xad, + 0x70,0x28,0x46,0x5a,0xf2,0x86,0xa3,0xf7,0x6b,0xc4,0xeb,0x0c,0x0c,0x4a,0x36,0x7d,0x72,0x26,0x7b,0xae, + 0x46,0xe5,0x49,0x44,0x12,0x1a,0x53,0xb9,0x89,0xef,0x6e,0xc3,0xd0,0x75,0xed,0x46,0x3c,0x5a,0xe6,0x71, + 0x76,0x87,0xd5,0x32,0xeb,0x5a,0xc5,0x72,0xd9,0xb3,0x3e,0xc3,0xfc,0x6a,0x82,0x47,0xb4,0x2b,0x59,0x68, + 0xac,0xea,0xe6,0xd4,0x47,0x8b,0x7a,0xce,0xe0,0x68,0xc8,0x8a,0x28,0x7d,0xee,0x27,0x73,0x23,0x9d,0xa3, + 0xf2,0x7d,0x56,0x1e,0x7a,0x42,0x56,0xcc,0xc0,0x43,0x6e,0x96,0x4f,0xf1,0xe1,0x8a,0xe0,0xc6,0x2a,0x2f, + 0x43,0x2f,0x4e,0x56,0x25,0x4e,0xcd,0x38,0xa7,0xa8,0x34,0xeb,0x6b,0x58,0xfc,0xa8,0x9f,0xe1,0xa1,0xeb, + 0x64,0x6c,0x2e,0x4d,0x4b,0xe7,0x4c,0xdc,0xda,0xa9,0x57,0xc6,0x24,0x8d,0x74,0x9d,0x88,0x53,0x44,0xc8, + 0x46,0xd7,0xaa,0xdf,0x3a,0xf5,0x7a,0xa9,0x2c,0x2c,0x13,0x89,0x1f,0xaf,0x4d,0x1d,0x19,0xcd,0x85,0x4b, + 0x4a,0x44,0x90,0x4e,0xf8,0x66,0xee,0x43,0xaf,0x99,0xfc,0x8c,0x48,0xab,0xc6,0x91,0x56,0xd9,0x23,0x22, + 0x61,0x20,0x7a,0x00,0xe6,0xbe,0x47,0x85,0x26,0xd9,0x07,0x3e,0x9a,0xc2,0x68,0xa3,0x56,0xc9,0x59,0x4b, + 0x29,0xe3,0xfa,0x9f,0x40,0xbc,0x5a,0x12,0xb0,0xaf,0xd7,0xf3,0x90,0x5d,0x76,0x3a,0x45,0xdb,0x93,0xc4, + 0x54,0x99,0x04,0x21,0x43,0xbf,0x42,0x8e,0x9d,0x32,0x4d,0xaa,0x70,0xa5,0x66,0xce,0x75,0x22,0xe4,0xd5, + 0xe8,0x73,0xd3,0x61,0x6f,0xc9,0x71,0xe6,0xcf,0xe9,0x60,0x20,0xa9,0x5c,0x45,0xdc,0x84,0x53,0x27,0x05, + 0x8d,0x7a,0xa3,0x39,0x7b,0x05,0xf8,0x43,0x18,0x60,0x75,0x92,0xb8,0x2e,0x85,0xba,0xcc,0x5a,0xfb,0xa3, + 0xa0,0x31,0xeb,0x0c,0xd8,0x05,0x70,0x31,0xb7,0x7c,0xed,0xd5,0xe3,0xa2,0xfa,0x1d,0xd3,0x04,0xc0,0x9a, + 0x12,0x57,0x30,0x4f,0x6f,0xc6,0xb6,0x20,0x4d,0x45,0x4c,0x3c,0xe9,0xb1,0x04,0x4e,0xf3,0x35,0x72,0x9d, + 0x81,0x66,0x1e,0xf0,0x85,0xfe,0xe7,0x32,0x93,0x4a,0xd7,0xbc,0x5e,0x3f,0x3c,0x38,0xd0,0x1d,0xd3,0xd1, + 0xd8,0xe0,0xf8,0xfe,0x67,0x5a,0x90,0x2b,0x28,0xb8,0x2a,0xf3,0x65,0x04,0x4c,0xb6,0x7b,0xa8,0x6c,0x7b, + 0xe3,0xd6,0x08,0x63,0xf7,0xfd,0xc6,0xc1,0x9e,0xd1,0x2e,0x6c,0x68,0x26,0xe7,0xb4,0x75,0x9c,0x08,0xba, + 0x8b,0x36,0x3c,0xd3,0xd2,0x2a,0x74,0x18,0xa9,0x25,0x89,0x24,0x5c,0xaf,0x13,0x5e,0x65,0x84,0xf9,0x25, + 0x32,0x5f,0xa3,0x74,0x63,0x08,0x80,0xa7,0xf1,0x7e,0x4c,0x78,0x3f,0xbd,0x20,0x8a,0x98,0x10,0x15,0xb5, + 0x6c,0x90,0xc7,0xa8,0x4c,0x4a,0xa6,0xe0,0x9f,0x01,0x83,0x28,0x0e,0x3c,0x4c,0xa4,0xed,0xdc,0xb3,0xe0, + 0xf4,0x98,0x2c,0x04,0xa6,0x46,0x2e,0x28,0x44,0x7e,0xe0,0x33,0x86,0x48,0x4b,0xe6,0xbf,0x03,0x16,0x46, + 0x77,0x0a,0x64,0x90,0x85,0x51,0x89,0xbc,0x80,0x9b,0xf0,0x28,0x2c,0xe4,0x58,0x62,0x11,0xf1,0xd2,0x10, + 0x8b,0x11,0x6b,0x3b,0xf4,0x17,0x5c,0x97,0xb6,0x34,0x29,0x86,0xda,0x39,0x50,0x88,0xc2,0x11,0xf5,0x8f, + 0x88,0xbf,0x68,0x8c,0xbf,0xc9,0x89,0xf9,0x02,0xd4,0xd4,0x79,0x3a,0xf9,0x68,0x0f,0x71,0x2e,0x14,0x73, + 0xa1,0x6e,0x99,0x0d,0xad,0xaa,0x21,0xfb,0x4b,0x21,0x9c,0x67,0x0e,0x07,0xb4,0x22,0x70,0xd9,0x82,0xce, + 0xb6,0x6b,0x17,0xd1,0x51,0x0d,0x3e,0xa1,0x59,0xa3,0x83,0x4c,0x88,0x5b,0x78,0x85,0xbb,0x62,0x4d,0x08, + 0x33,0x9c,0x26,0x9c,0x3b,0x5a,0x6a,0xc5,0x84,0xaf,0x09,0xee,0x49,0xe4,0xff,0x2a,0x1a,0x7d,0x4b,0xa7, + 0xc1,0x5c,0xd1,0x86,0x02,0x79,0xb6,0x5e,0xe3,0x75,0x22,0xaf,0x87,0x96,0x8e,0xad,0x37,0x1b,0x08,0xce, + 0x35,0x2e,0x34,0x1d,0x32,0x1d,0x4e,0xe7,0x7d,0xd0,0xd3,0xd6,0x24,0xe2,0x48,0xd7,0x03,0xd6,0x7d,0x4e, + 0xdb,0x3d,0x8d,0x5a,0x42,0xf3,0x09,0xe1,0xb9,0xf9,0x69,0xf2,0x3a,0x9c,0x53,0x67,0x98,0x14,0xd0,0x54, + 0x1c,0xd0,0x15,0x8f,0x95,0x60,0xe3,0x31,0x0e,0x32,0xf3,0xaa,0x90,0xc3,0x35,0xba,0x1c,0x79,0xe5,0xe9, + 0x5d,0x31,0xfb,0xfa,0x1e,0x47,0x16,0x4d,0x39,0x9b,0xa0,0x10,0x2a,0x4c,0x87,0x42,0xf8,0x7a,0x06,0x07, + 0x2b,0x3a,0x3b,0xd5,0xca,0x99,0x0d,0x6d,0xe9,0xfc,0x66,0xfe,0x89,0xab,0x66,0x9e,0x85,0x7d,0x0a,0x47, + 0x4e,0x56,0x65,0x84,0x54,0x0a,0x9b,0x80,0xa0,0x46,0x1e,0x18,0xbe,0x38,0x33,0x91,0x32,0xb4,0x6b,0x67, + 0xb0,0x85,0x99,0xc9,0x26,0x90,0x4e,0x4e,0x41,0x48,0xb1,0xd4,0x1a,0xbf,0xf4,0x22,0x1e,0x0f,0x6f,0x0a, + 0xe5,0x4f,0x7b,0x8a,0x00,0x47,0xb4,0xf1,0x34,0x08,0x2c,0xa9,0x1c,0xf3,0xa6,0x25,0xe6,0x75,0xc9,0xa4, + 0x02,0x37,0xb4,0x8c,0x36,0xbb,0x3e,0xa6,0xcf,0x8c,0x96,0x32,0xb3,0x0a,0xca,0x8e,0x81,0xc2,0xaf,0x95, + 0x2f,0x36,0xd5,0x64,0xed,0xaf,0x95,0x48,0x3c,0xe5,0x2b,0x68,0x06,0xf2,0xe4,0x29,0x9c,0x9f,0x46,0x36, + 0x25,0xa9,0xc6,0x3e,0xda,0xd8,0x96,0xc6,0x59,0x58,0xc8,0xec,0x23,0x3c,0x6b,0xf5,0x23,0x01,0x57,0x4e, + 0xf4,0x09,0xa1,0x05,0x86,0x32,0x34,0x7b,0xe9,0xc1,0xbd,0xc4,0x4f,0x9d,0x58,0x55,0x89,0xb8,0x5f,0x04, + 0x57,0xab,0x6c,0xdf,0x9e,0x0a,0xfb,0x44,0xe9,0x83,0x4a,0xd8,0x0b,0x2f,0xc7,0x01,0xbd,0x5c,0x32,0xbf, + 0x51,0xaa,0x5e,0xb7,0x8f,0x54,0xdd,0x1e,0x11,0xda,0x22,0x64,0x64,0xad,0x9e,0xe2,0x99,0xb2,0xd4,0x67, + 0x3c,0x65,0x24,0x35,0x71,0x58,0x8b,0xf8,0xf8,0x15,0x7c,0x5e,0x9d,0xa5,0x35,0xe2,0xe8,0x6b,0xec,0x45, + 0x24,0x94,0x51,0x5e,0xb6,0x79,0x98,0x94,0x8d,0xe0,0x52,0x98,0x35,0x84,0x93,0x04,0x70,0x9f,0x12,0xc1, + 0x2f,0x7d,0x88,0x68,0x45,0xe7,0x92,0xf1,0xb2,0xf2,0xe4,0xcf,0x79,0x8b,0xa0,0x6a,0xe8,0x6b,0x10,0x1c, + 0xa9,0xb1,0x7e,0xb0,0xda,0x37,0xa0,0xe2,0x56,0x81,0x9c,0xf5,0xed,0x88,0x72,0x06,0xbe,0x8d,0xb8,0x59, + 0xbf,0x64,0xbb,0x5f,0x75,0xff,0xb1,0x8b,0x8b,0x03,0x00,0xb9,0x29,0x24,0x1f,0x04,0x1b,0x3e,0x21,0x4b, + 0x28,0x5d,0x04,0x65,0xb1,0x5c,0x2f,0x60,0xfd,0xa7,0x70,0x67,0x14,0x1d,0x99,0x2f,0xab,0x31,0x51,0x36, + 0xe1,0x3c,0xa9,0xa3,0xf1,0xc9,0x11,0x8d,0xec,0xb4,0x63,0x65,0x3b,0x77,0xf1,0xac,0x88,0x7c,0x70,0x11, + 0x68,0x30,0x7d,0x40,0x36,0x88,0x44,0x23,0x62,0x27,0xd8,0x42,0x97,0xbe,0x2d,0x74,0x46,0x73,0x54,0x9e, + 0xd4,0xa7,0x51,0x9f,0x07,0x2c,0x91,0x35,0x44,0x15,0xce,0x4e,0x88,0x82,0xb2,0xd1,0x44,0x4e,0x3b,0x66, + 0xf9,0x93,0x68,0x6c,0x9c,0xbc,0xbe,0x39,0xa0,0x11,0xfe,0x1c,0x52,0x8d,0x79,0x38,0x51,0xb0,0x3b,0x61, + 0x8f,0x7c,0xe2,0x13,0x89,0x40,0xa3,0x91,0xd1,0xcc,0xfc,0x4c,0x38,0x11,0xbb,0x1c,0xe8,0xe7,0x28,0x5c, + 0xb1,0x6e,0x6d,0x6f,0x42,0x79,0xa2,0xc9,0xc6,0xcd,0x57,0xfa,0x56,0x00,0xda,0xfb,0x9e,0x42,0x70,0x46, + 0x6b,0x16,0xc5,0x30,0x7a,0x1c,0xa3,0x8a,0x71,0xa7,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0x3c,0x02, + 0xce,0x8b,0x7f,0xa6,0xbf,0xd2,0x66,0xf7,0x03,0x69,0x2e,0x26,0x84,0x5b,0x5a,0x31,0x19,0xaf,0xf5,0x04, + 0xca,0x48,0x26,0x36,0x26,0x60,0x53,0x65,0xfd,0x19,0x94,0x98,0x6b,0x25,0xee,0xfb,0x0a,0xa0,0x1c,0xec, + 0xa5,0x32,0x30,0xfa,0x7b,0x16,0x98,0xce,0xa2,0x51,0x87,0xdb,0x36,0xb4,0x2e,0x5a,0xf4,0x13,0x63,0x19, + 0x5f,0x54,0x6c,0xb3,0xf1,0x27,0xd5,0x2a,0xdb,0x4c,0x3b,0x21,0x0a,0x0b,0xa2,0x92,0xe5,0x87,0x6e,0xc2, + 0xa1,0xa8,0x27,0xeb,0xe4,0x54,0x65,0x9e,0xbd,0x3a,0xcc,0x43,0x78,0xdb,0x33,0x2c,0x8c,0xfa,0xec,0x42, + 0xf5,0x39,0x32,0x1d,0xcd,0x92,0x7c,0x78,0xef,0xaa,0xa0,0xe3,0x14,0x01,0xb0,0xe4,0x69,0x58,0xd4,0x2c, + 0x1c,0xba,0x20,0x12,0x2a,0xbd,0x40,0x8c,0xd8,0x7a,0x89,0xe0,0x0a,0x84,0x65,0x56,0x10,0x95,0xe5,0xf5, + 0xbb,0xac,0xce,0x2a,0x22,0x81,0x28,0x9b,0x52,0xc7,0x1a,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9d,0xa7,0x0d, + 0x82,0x65,0xe8,0x8f,0xf1,0x1d,0x36,0x61,0x1b,0x6b,0xe4,0x4c,0xbc,0x26,0xcf,0xc3,0xdc,0x13,0xd9,0x59, + 0x04,0x54,0x07,0xa0,0x35,0xc7,0xc4,0x13,0x4d,0xe9,0xdb,0x1c,0x87,0x4c,0x14,0xeb,0x66,0xca,0xde,0xda, + 0x44,0x7b,0xb9,0x4a,0xe8,0x93,0x52,0x3e,0xf1,0xe4,0xa3,0x04,0x0f,0xe1,0xcc,0xf3,0x5f,0xa9,0xc2,0xdc, + 0xb2,0x38,0x39,0x1c,0xc6,0x4a,0x62,0x9b,0xca,0x2a,0xcb,0x2f,0x8a,0x37,0xc6,0x4d,0x9a,0x26,0x86,0x20, + 0x83,0xb1,0x80,0x41,0x74,0x2c,0xca,0x6c,0xe8,0x0b,0x83,0xca,0x3c,0x13,0x6d,0x8e,0x73,0xe5,0x72,0xec, + 0x96,0x7b,0x34,0xe1,0x6d,0xa7,0xd9,0x38,0x57,0x80,0xb6,0x20,0x51,0x3e,0x73,0x0d,0x7d,0xc4,0x96,0xcd, + 0x87,0x6c,0xc0,0x50,0x08,0x8a,0xa3,0xdd,0xcf,0x3d,0xdc,0x6c,0x84,0x38,0x5f,0xd1,0xf0,0x61,0x0f,0xe5, + 0xa1,0x34,0xcf,0x69,0xc3,0x0f,0x64,0x67,0x65,0x07,0xac,0xad,0xad,0x57,0xcb,0xac,0x32,0x67,0x0f,0xca, + 0xe9,0x14,0x26,0x3e,0xd8,0x22,0x95,0xdf,0x8d,0x01,0xc5,0x6d,0xfb,0x3d,0x31,0x7e,0x27,0x5d,0x23,0x6c, + 0x44,0x78,0x73,0x24,0x08,0x4e,0x33,0xe1,0x40,0x8d,0x47,0x1c,0x88,0xc6,0x3a,0x4b,0xe7,0x99,0x49,0xb1, + 0x47,0x63,0x69,0x94,0xf8,0xe5,0xe9,0xae,0x98,0x48,0x42,0x42,0xc0,0xbe,0x97,0x08,0x50,0xd3,0x40,0xc6, + 0xdd,0x63,0xa4,0xbb,0x25,0xcf,0xd2,0xc4,0x2b,0x21,0xba,0x22,0xe9,0x0a,0x51,0xc7,0x45,0xcc,0x2a,0xf7, + 0x2d,0xf3,0x38,0xf1,0x4d,0xb0,0x7d,0x11,0x8d,0x4a,0xe6,0x6b,0x54,0xc2,0xc6,0x49,0x76,0x41,0x70,0x7e, + 0x93,0x1c,0xd0,0x9a,0xb4,0xd3,0x1e,0x1d,0x60,0x81,0x74,0xa0,0x2f,0x24,0x38,0x7f,0x39,0xb7,0x07,0x0b, + 0x23,0xb1,0x57,0x18,0xa3,0xe7,0xcc,0xbf,0x61,0xaf,0x79,0x78,0x1d,0x77,0x27,0x8d,0x4e,0xae,0xd0,0x5b, + 0xc0,0xe4,0x25,0xb4,0xd1,0xed,0x32,0xda,0x1a,0x8b,0x23,0xd9,0xb8,0xcd,0x72,0xd2,0x70,0xea,0x69,0x82, + 0x10,0x2b,0xdb,0x16,0x05,0x6f,0x33,0x1b,0xe2,0xe4,0x0c,0xf1,0x02,0x5a,0xb6,0x97,0x4f,0x5b,0xf6,0x11, + 0xec,0xa2,0x88,0xd3,0xbc,0x43,0x2e,0xb0,0x77,0xa6,0xf7,0xd5,0xaf,0x59,0x8b,0x32,0xe9,0xae,0xce,0xd8, + 0x77,0x9d,0xff,0x66,0xff,0x30,0xde,0xd6,0xd5,0x8c,0x7d,0xa7,0xff,0x4e,0x69,0xa8,0xea,0xd4,0x6e,0x68, + 0xe3,0x28,0x48,0x20,0xb1,0x53,0x60,0x7c,0x13,0x47,0xa1,0x90,0x08,0xd8,0xec,0xb6,0xda,0x68,0x74,0xe7, + 0x89,0x15,0x5f,0x74,0x4c,0x04,0x58,0x4d,0xca,0x70,0x0a,0x05,0x0c,0x83,0xe7,0x19,0xe3,0xba,0x2e,0x5c, + 0x9a,0x40,0xbd,0x30,0x7b,0x67,0x4b,0x47,0xcd,0x17,0x3c,0x85,0xa4,0x6c,0xcb,0xde,0x68,0x54,0x43,0x80, + 0xcc,0x24,0xc0,0x4b,0xd0,0x62,0x25,0x33,0x78,0x3e,0x69,0xf3,0x72,0x4b,0xd7,0xc0,0x96,0xf8,0xbb,0x39, + 0x7b,0x6c,0x31,0x8a,0x81,0xc3,0x1a,0x7e,0x71,0x4b,0x88,0x6d,0xe1,0x85,0x26,0x93,0x87,0xf7,0xa6,0x34, + 0xc4,0xaa,0x84,0xcb,0x56,0x66,0xf5,0xfe,0x2b,0xbe,0xf3,0xd2,0xf3,0x02,0xc8,0x7c,0xcf,0xee,0x5b,0x11, + 0x32,0x1f,0x41,0x4f,0x10,0xbf,0xe6,0x3d,0xef,0x12,0x54,0xe1,0xbf,0xd1,0x01,0xcc,0xa5,0x60,0x5a,0xc6, + 0x4f,0x44,0x70,0xe8,0x27,0x04,0x47,0xc6,0xef,0x69,0xac,0x1f,0x7c,0xb3,0xfe,0xf6,0xf2,0x67,0xe3,0x66, + 0x9c,0xed,0x05,0x08,0x7b,0x13,0x67,0x31,0x38,0x43,0xcf,0xe6,0xfb,0x95,0x0f,0x60,0x5b,0x80,0xd2,0x77, + 0x38,0xd2,0x64,0x21,0x74,0x20,0xed,0x4e,0x55,0x3a,0x95,0x5d,0xfe,0xa8,0xe4,0x1d,0x4a,0x84,0x6e,0x82, + 0x3a,0xb1,0xf1,0x40,0x7a,0xf1,0xc5,0x6e,0x10,0x10,0xe0,0xff,0x5e,0x42,0xbd,0x88,0x14,0xfd,0x16,0xde, + 0xae,0x64,0x25,0x4d,0xb7,0x35,0x41,0x97,0x41,0x30,0x6a,0x89,0xe7,0x32,0x1d,0x13,0x20,0x6c,0x74,0xe8, + 0x5d,0x54,0xd7,0xf8,0xd5,0xf1,0x06,0xee,0x05,0xe8,0xb6,0xa9,0xbb,0x3f,0xec,0x94,0x5b,0x0f,0xea,0xab, + 0x8b,0x20,0x0e,0x16,0x69,0x73,0xc9,0x86,0x46,0x63,0x79,0xdc,0xd2,0x16,0x3d,0xc9,0x4c,0x74,0x9f,0x6d, + 0x0d,0xa7,0xa9,0xd1,0x46,0xdd,0xfb,0x6d,0x95,0x55,0x37,0xef,0x33,0xe8,0xa1,0x4b,0xb9,0x87,0xe6,0xae, + 0x58,0x9a,0xd3,0xfc,0x2a,0xe8,0x53,0xa5,0xfc,0xd4,0xd9,0x2b,0x6c,0x73,0x59,0x65,0xb3,0x8e,0x8f,0x90, + 0xf1,0xbc,0xce,0x7d,0x37,0x6e,0x03,0xa6,0xc0,0x10,0x70,0xd0,0x2e,0x61,0x39,0x4f,0xdf,0xd6,0xa3,0xae, + 0x5a,0xa5,0x64,0x6b,0xa8,0x15,0xff,0xe2,0xf0,0xc7,0x2f,0x0e,0x59,0x1c,0xb0,0x78,0xd4,0x84,0x7c,0xec, + 0xda,0x7f,0x51,0x3c,0x2f,0xab,0xde,0x5a,0xf0,0xd7,0xa2,0x8c,0x9c,0xf0,0xf1,0x60,0xc0,0x49,0x8c,0x91, + 0x4d,0xdd,0x04,0x1f,0xf2,0x90,0x7b,0x80,0xfb,0xa3,0x08,0xb1,0x5d,0x8c,0x2d,0xd0,0x78,0x38,0xea,0xe9, + 0x97,0x85,0x4c,0xb2,0x1f,0xf5,0xd1,0xef,0xfb,0x87,0xb3,0xce,0xcf,0x19,0x8f,0x35,0xda,0x38,0x95,0x23, + 0xb1,0x10,0x45,0xc0,0xcf,0x5d,0xf9,0x0a,0x96,0x50,0x64,0x24,0x7c,0xd2,0x02,0x85,0xb6,0x82,0x45,0x54, + 0xf0,0x46,0x0c,0x2b,0x3d,0xe7,0x22,0x0c,0x4d,0x1c,0x43,0x5e,0xb1,0xae,0x0e,0xba,0x5a,0xf6,0x2b,0xfb, + 0x4c,0x19,0x2b,0x4a,0x84,0x75,0xdd,0x7a,0x3d,0xcf,0xd9,0xa1,0x91,0x7e,0x88,0x1b,0xe4,0x01,0x83,0xae, + 0xc0,0x68,0x1e,0x43,0xaa,0xf4,0x16,0xa1,0xb2,0x2e,0xcb,0x39,0x71,0xea,0x5c,0x43,0x4b,0xf6,0x84,0x71, + 0xfa,0x09,0xa0,0x8c,0xdb,0x29,0x5a,0x26,0xe7,0xdb,0xef,0x67,0x22,0xa0,0xb0,0xda,0x65,0x71,0x92,0xc3, + 0xc6,0xca,0x89,0x84,0xc8,0x1f,0x25,0xd5,0x68,0x6f,0x2f,0xa7,0xad,0x0b,0x0b,0xc6,0xfc,0x54,0x13,0xda, + 0x61,0x8a,0xc3,0xde,0x79,0x5a,0x7a,0x9e,0x27,0x1f,0x34,0x4c,0xea,0x18,0x79,0x9e,0xc3,0xd7,0x7a,0xdd, + 0x74,0x93,0xda,0xf3,0x6e,0x20,0x59,0xb8,0xe1,0x04,0x31,0x3a,0xa6,0xf0,0xda,0x6b,0xe4,0xa1,0x4e,0x7e, + 0xcf,0xb6,0x6b,0x75,0x91,0x05,0xc0,0x81,0x51,0x89,0xad,0x46,0x70,0x31,0xb2,0x29,0x31,0x27,0xb2,0x83, + 0x48,0x61,0xcd,0x64,0x15,0x22,0x61,0xa9,0x92,0x5a,0xb8,0xf9,0x09,0x7e,0xaa,0x31,0xcd,0x1a,0x4d,0xf1, + 0x8f,0x10,0x7c,0x25,0xc6,0x11,0xf7,0x07,0x30,0xba,0x5a,0x07,0x1a,0x28,0xdc,0x79,0xa0,0x72,0x18,0x4d, + 0xe0,0x24,0xa0,0x1f,0xb7,0xaf,0x44,0x16,0x3d,0x1d,0x0c,0x56,0x06,0xa8,0x89,0x77,0x91,0xaf,0xe1,0xb3, + 0xd6,0xf7,0x6d,0x5e,0x10,0x4d,0xce,0xdf,0xcc,0xed,0x37,0xd8,0xc2,0xf3,0x56,0x54,0x9b,0x59,0x9f,0x6c, + 0x5c,0x8c,0xf3,0xe6,0xbe,0x49,0x1e,0xb5,0x35,0xc7,0x38,0x02,0x53,0xad,0x34,0xb9,0x19,0x95,0xe3,0xef, + 0xe1,0x2f,0x25,0xc9,0x01,0x64,0xd0,0xb3,0x90,0x9d,0x02,0x56,0x36,0xf2,0x07,0x17,0x40,0x1c,0x41,0x1d, + 0x3e,0xf0,0xce,0x16,0x57,0x9d,0x16,0x57,0xdc,0x62,0x77,0x12,0x74,0xcb,0xcc,0x86,0xdb,0xf9,0xae,0xa3, + 0x09,0x7b,0x9d,0xd1,0x57,0x3c,0xed,0xc1,0xaa,0x90,0x89,0xc9,0xe8,0x1f,0x04,0xb1,0x6d,0x83,0xdd,0xdf, + 0x5b,0x38,0xae,0x2f,0xea,0x4e,0xc7,0x1c,0x57,0x6f,0xcf,0x91,0x98,0x7d,0x6c,0xa9,0x4c,0xc3,0x9c,0x4d, + 0x71,0xa3,0xa1,0x8e,0x0b,0xce,0x3a,0xf1,0xdc,0xbd,0x25,0x57,0x79,0xa4,0x8a,0x13,0x82,0x77,0x82,0xc1, + 0x61,0x95,0x5e,0xbf,0x66,0x32,0xaa,0x64,0x72,0x6a,0x2f,0x18,0x06,0x7b,0xbe,0x3d,0x48,0xe9,0x57,0x03, + 0x59,0x81,0x84,0x5d,0x1d,0x06,0x51,0x44,0xfb,0x43,0x96,0x99,0x38,0xa5,0xc6,0xe3,0x94,0x1c,0x60,0xd2, + 0x41,0xc9,0xb5,0x46,0x3a,0x6e,0xfd,0xb6,0x09,0xec,0x0f,0xd9,0xb6,0xf4,0x39,0x13,0xd0,0xe1,0x1f,0x6d, + 0x37,0x59,0xb2,0x61,0x64,0x19,0x16,0x12,0x6a,0x43,0x97,0xd7,0xc6,0x91,0x15,0x8c,0x23,0x2b,0xb9,0x30, + 0x81,0x8f,0x01,0xd7,0x03,0xbe,0x06,0x45,0xc6,0x05,0x0a,0xc0,0x19,0x4f,0x7a,0xae,0x10,0x59,0xe8,0x51, + 0x40,0xdb,0x86,0xdb,0x3c,0xfb,0x61,0xc3,0x58,0x4b,0x5c,0xa7,0xda,0x44,0x68,0x5e,0x5c,0x66,0x55,0xce, + 0xf1,0xb6,0x69,0x86,0xb2,0x50,0x90,0xa1,0x45,0x82,0x99,0xf1,0x14,0x90,0x04,0xcd,0x1c,0x30,0x9f,0x44, + 0x8d,0x61,0x34,0x93,0xc4,0xff,0x84,0x85,0xe3,0xf3,0xa4,0xea,0x24,0x31,0x3f,0xa6,0x45,0x43,0x08,0x87, + 0xd0,0x2a,0x90,0xb0,0x16,0x7a,0xae,0xdd,0x25,0x98,0x5a,0x9c,0x47,0x69,0x32,0x07,0x85,0x3f,0x11,0x66, + 0x26,0x25,0xd0,0x87,0xa4,0x14,0x7c,0xdb,0x28,0x7c,0x5d,0xac,0xd7,0xef,0x60,0xd0,0xa1,0xa5,0xdf,0x10, + 0x57,0xc8,0x93,0x2e,0x66,0x04,0xec,0x3a,0xdf,0xab,0x78,0x12,0x61,0xf7,0x95,0x6c,0x8b,0xdf,0x00,0x89, + 0x8f,0x11,0xdc,0x0e,0x81,0x69,0x6d,0xc4,0xf1,0xd7,0xef,0xc3,0x2c,0x57,0x05,0x32,0xa3,0xf8,0x5f,0xf4, + 0x5d,0x84,0x40,0x9b,0x9d,0x42,0xc8,0xf4,0x56,0xe1,0x7b,0xdf,0x40,0xe0,0x9f,0x15,0x3b,0xdd,0xe5,0x1c, + 0x20,0x7b,0xeb,0x43,0x16,0x95,0x24,0x01,0x51,0xda,0xe5,0xf5,0x8c,0xf6,0x47,0x4d,0x7b,0x25,0x2b,0x02, + 0x09,0x3b,0x16,0x3c,0x7b,0xf5,0xe4,0xd9,0x53,0x6d,0x2b,0x2d,0x3c,0xfe,0x38,0x68,0x2a,0x1a,0x4b,0x0c, + 0x25,0x7f,0x2b,0x30,0x3a,0x7b,0xbd,0x59,0x7b,0xa8,0x7f,0x55,0x3a,0x84,0x40,0xbb,0x08,0xf7,0x82,0xa8, + 0xc6,0x59,0x4a,0xe5,0x50,0x6f,0x31,0xd6,0xcf,0xb1,0xd4,0xeb,0x6a,0x68,0xf2,0xcf,0x74,0xdb,0x4e,0x4a, + 0x83,0xfb,0x3b,0x5a,0xad,0x48,0x56,0x63,0xcd,0x17,0xa8,0x2a,0xae,0x24,0xea,0x1b,0xbb,0xd8,0xcf,0x50, + 0x91,0xd7,0xf0,0x6f,0x7b,0x05,0xaf,0x89,0xe3,0x67,0x3f,0x1f,0x3f,0x7e,0xf7,0xec,0x71,0x6b,0xd4,0x94, + 0xbe,0x74,0x67,0xa9,0x9e,0x1d,0x8e,0xa9,0x99,0x67,0xcb,0x4b,0x43,0x3a,0xf9,0xb6,0x80,0x0d,0x11,0xdf, + 0xe5,0xf2,0x05,0x11,0x11,0xd3,0x9c,0x70,0x0f,0x2c,0x6b,0xd2,0x8b,0x54,0x90,0xa3,0x32,0x5d,0xe9,0xdc, + 0xf1,0x22,0x14,0x04,0x2c,0x45,0x46,0x59,0xcf,0x15,0x30,0x36,0x5b,0x99,0x86,0x93,0xdd,0x83,0x4d,0xcf, + 0x32,0x78,0x90,0xf0,0x6d,0x67,0x3f,0x1a,0xd2,0x8d,0x83,0xef,0xa4,0x7a,0xaf,0xc8,0xa6,0xcc,0x20,0xff, + 0xf6,0x18,0x06,0xec,0xb6,0x52,0xf3,0x0a,0x2c,0xb7,0x80,0x5c,0x16,0xcc,0x51,0xb7,0x50,0xaa,0x0b,0x45, + 0x56,0xb7,0xd2,0x4b,0xeb,0x9b,0x3b,0xd1,0xe0,0x47,0x41,0x48,0x75,0xc4,0xe2,0x95,0x2e,0x79,0x19,0x8d, + 0x80,0x71,0xfb,0xd8,0x23,0xe1,0xe2,0xf8,0x92,0xcb,0x29,0x7b,0xe3,0x12,0xd8,0x3e,0xcf,0x34,0x41,0xc6, + 0xb0,0xc7,0x96,0xf4,0x42,0x34,0x59,0x33,0x7a,0x0e,0x96,0xe1,0x97,0x2f,0x94,0x26,0xe7,0x9c,0x4a,0x2e, + 0x69,0x31,0x4a,0x3c,0x2b,0xc2,0x17,0x35,0xbc,0xd9,0x20,0x25,0x1c,0xbf,0x86,0xb0,0xe9,0x15,0xeb,0x8f, + 0x88,0xf8,0x1f,0x69,0xac,0xc3,0x96,0xc9,0x10,0x06,0x9d,0x71,0xdc,0xd8,0x1c,0x63,0xe6,0x4a,0x32,0x22, + 0x8b,0x59,0x42,0x19,0xd6,0xc9,0x6b,0xa0,0x80,0x57,0x19,0x4b,0x10,0x15,0x5c,0xb3,0x72,0x18,0x60,0x66, + 0x57,0x5c,0xb0,0xe7,0x0e,0x02,0xb1,0xfa,0x52,0x35,0x4e,0x7d,0x57,0x30,0xa9,0xfd,0x65,0xfd,0x39,0xdb, + 0x72,0x92,0x0b,0xd9,0x2e,0xcb,0x73,0xd8,0xc8,0xb4,0x59,0xf8,0x25,0xe1,0x76,0xb9,0xe4,0x81,0xda,0xbf, + 0x4c,0xf2,0xbd,0xc3,0x8d,0x47,0x36,0x31,0xea,0xdc,0x3d,0x14,0x55,0xe8,0x1c,0x7f,0x56,0x6c,0x21,0x4e, + 0x2c,0xd9,0x94,0xfe,0x2f,0xe9,0xbf,0x71,0xc8,0xec,0x11,0xa2,0x60,0x73,0xb1,0x49,0x6e,0xe6,0xc7,0xc5, + 0xa2,0x13,0xb1,0x8e,0xbe,0xf8,0x5a,0x6c,0xbb,0xbf,0x7e,0x48,0x43,0x16,0xf9,0xe8,0xee,0xa1,0xdb,0x93, + 0x93,0xe8,0x8b,0x2f,0x3b,0x05,0x26,0xad,0x02,0xf3,0xe8,0xeb,0xbf,0x77,0x0a,0xcc,0x5b,0x05,0x56,0xd1, + 0x97,0xff,0xdd,0x29,0xb0,0x6a,0x15,0x38,0x7c,0xf8,0x25,0x38,0xc6,0xf5,0x9a,0x1e,0x78,0x33,0xfb,0x5d, + 0xdc,0x3b,0x8c,0xfa,0x33,0xf6,0x91,0x31,0x23,0xe6,0x6a,0xbd,0x5e,0x46,0xb7,0xf5,0x75,0xae,0x3d,0x06, + 0x26,0x29,0xd5,0xfa,0xc5,0x97,0x31,0x0c,0x0f,0xc4,0x68,0x76,0x24,0x49,0x5f,0xc7,0x75,0x27,0xe9,0xeb, + 0xbf,0xc7,0xf3,0x4e,0xd2,0x97,0x07,0xf1,0x72,0x6f,0xaf,0x95,0x72,0x18,0x2f,0xf7,0xf7,0x5b,0x9f,0x1d, + 0xc6,0xd3,0x76,0x99,0xaf,0xbf,0x88,0xa7,0xed,0x32,0x87,0x0f,0xbf,0x88,0x67,0xed,0x42,0x87,0x0f,0xbf, + 0x8a,0x67,0xfb,0xfb,0xa0,0xcc,0x64,0x42,0xdc,0x9e,0xbb,0x4a,0x68,0x38,0x6a,0xa1,0x59,0xae,0xd1,0x15, + 0x87,0x97,0x14,0xe7,0x97,0x70,0x91,0xd8,0x7b,0x1e,0xae,0x20,0x56,0xd9,0xdf,0x8f,0x46,0x8b,0xc1,0xe0, + 0x5c,0xc7,0xf0,0x5d,0x44,0xac,0x21,0x80,0xa1,0xbf,0x08,0x5c,0xad,0xfd,0x48,0x39,0x0e,0x19,0x8a,0x98, + 0x65,0x37,0x97,0x46,0x3b,0x10,0x8b,0x1b,0x51,0xb1,0x78,0xe5,0x7b,0x0b,0xc6,0x70,0x93,0xbf,0x04,0x97, + 0x83,0x4b,0x40,0x1c,0x7c,0xa5,0x3e,0x7c,0x95,0x49,0x0f,0xbd,0x9f,0x38,0xc9,0x5d,0x10,0x06,0x22,0xe0, + 0x7c,0x64,0xee,0x25,0xb9,0x7f,0x46,0xa9,0xf7,0x89,0x38,0xb9,0x1f,0x44,0xe1,0x7d,0x8e,0x42,0x1f,0x8c, + 0xda,0x59,0xb6,0x2f,0x45,0xe4,0x4a,0xa9,0xc0,0x66,0x14,0x04,0x1b,0x1b,0xc8,0x96,0x7d,0x89,0x5f,0xe9, + 0x39,0xde,0xf1,0xe6,0x6b,0x3b,0x39,0x07,0x27,0x3f,0xae,0x10,0x61,0x8d,0x4d,0xa2,0xaa,0x53,0x04,0x06, + 0xf6,0x65,0x6f,0xff,0xea,0x8a,0x51,0x10,0x3d,0x7f,0xd9,0x36,0x3d,0x71,0x61,0x80,0x36,0xdb,0xd6,0xe5, + 0x5e,0x81,0x4d,0x14,0x9f,0x78,0xd6,0x44,0xff,0xb4,0x67,0x7d,0x98,0x59,0xed,0xbc,0x09,0x10,0xe2,0xb0, + 0xc1,0x2d,0xdf,0xe1,0xd1,0x28,0x1d,0x6b,0x8e,0x6f,0x60,0xe3,0xab,0x4b,0x13,0xdf,0x97,0x28,0x6b,0xbc, + 0xca,0xba,0x16,0xa0,0x7f,0xb5,0xb2,0xa6,0x71,0x56,0x82,0x5c,0xc3,0xab,0x74,0x29,0x71,0x88,0xf4,0x3b, + 0x8e,0xb6,0x3b,0x2a,0xf4,0x3c,0xf0,0x1a,0x47,0xd3,0x42,0x13,0x0a,0xfc,0xce,0x7a,0x6d,0xe3,0xa1,0xea, + 0xe2,0x0c,0x55,0xd6,0x2d,0xb6,0x49,0x82,0x5d,0xb8,0xec,0x10,0xb2,0x87,0x49,0xa5,0x5f,0x84,0x1d,0x68, + 0x29,0xff,0xff,0xe9,0x7c,0xed,0x3f,0xeb,0x17,0x31,0x2e,0xb5,0x54,0x6a,0xc0,0xa5,0x08,0x27,0xc3,0x37, + 0x5c,0x8e,0x7d,0x18,0x96,0xe4,0x17,0x97,0xcd,0x38,0xa4,0x7c,0x4d,0x24,0x2f,0xb2,0x62,0x15,0x28,0x5b, + 0x01,0xe7,0x47,0x71,0x35,0x5c,0xe4,0xd3,0xe9,0x9c,0x85,0xb8,0x49,0xb0,0x28,0x57,0x75,0xb6,0x5a,0x06, + 0xc6,0xe0,0x77,0x54,0x69,0x35,0xf5,0xd8,0xb5,0x2c,0x09,0x6c,0xbf,0x2e,0x8f,0x4c,0x02,0xc8,0x22,0xf8, + 0x09,0xac,0x16,0x8f,0x51,0x2c,0x73,0x05,0x32,0x9b,0xa5,0x2d,0xf7,0x4c,0x60,0xc1,0xcd,0x08,0x17,0xb5, + 0x5e,0x41,0x76,0x56,0x7b,0x9c,0x8b,0xbe,0xd6,0x7d,0x92,0xe0,0x52,0x9e,0xd1,0x96,0xee,0x2f,0x1f,0x4f, + 0xec,0xcd,0xe2,0xb5,0x75,0xd3,0xab,0xe5,0x22,0x9f,0x64,0x42,0xf9,0x27,0xb5,0x9a,0x9c,0xc6,0x27,0x13, + 0x55,0x9f,0xc6,0x75,0x2f,0x08,0x54,0x16,0x04,0x84,0x42,0x82,0x48,0x1a,0xb7,0x82,0xed,0x21,0x70,0xbb, + 0xbc,0x5c,0xed,0x73,0x6c,0x16,0x24,0xf1,0x4e,0xe6,0x18,0xbc,0x26,0x8c,0x26,0x0e,0x3a,0x51,0x61,0x88, + 0x17,0x8c,0x21,0x64,0xf8,0x53,0xff,0x83,0xdc,0x7c,0xd0,0x09,0x75,0x9b,0xfb,0xa7,0x66,0xde,0xee,0x8d, + 0xfb,0x9a,0x25,0x33,0x1e,0x88,0xfa,0x91,0x70,0x3c,0x58,0xd5,0x56,0xfb,0x79,0xd7,0x6a,0x1f,0xba,0x25, + 0x38,0x45,0xf0,0x95,0x2a,0x08,0x14,0x7a,0x9b,0x9b,0xd8,0x59,0x25,0x62,0x67,0x89,0x8b,0x85,0x61,0xd7, + 0xac,0x1f,0x63,0xab,0x49,0xdf,0x8a,0xbf,0xec,0xcc,0x9a,0x58,0xe9,0xe7,0x49,0x70,0xef,0xde,0x15,0x21, + 0x33,0x46,0xa0,0x20,0x1c,0x92,0x20,0xd4,0xe2,0x42,0xca,0xd8,0xa1,0x96,0x77,0xee,0xcb,0xc8,0xef,0x8f, + 0x91,0x62,0x10,0x2d,0x9e,0x23,0xc8,0x4a,0x87,0xe2,0xec,0x20,0x9f,0x9e,0x11,0xdf,0xb9,0x97,0x03,0x3d, + 0x6a,0x7e,0x32,0x41,0x94,0x27,0x84,0xc3,0xd2,0xc6,0x3f,0x06,0x7c,0x08,0xc7,0x82,0xd7,0x8b,0x88,0xe3, + 0xfe,0xb4,0xc4,0x75,0x83,0xd4,0xc5,0xf8,0xbe,0xc6,0xb1,0xf7,0x95,0x31,0xcd,0x71,0xa1,0x4d,0x76,0x42, + 0x34,0xb8,0x73,0x1b,0xec,0x95,0x7b,0xc1,0x26,0xf0,0x16,0x20,0x6d,0x7c,0x34,0xee,0x23,0x37,0x9a,0xc2, + 0x9f,0x2a,0x17,0xc0,0xd0,0xbb,0xcc,0xea,0x24,0x88,0x1e,0x1d,0x40,0xea,0x88,0xdb,0xb9,0x5e,0x98,0xd4, + 0x53,0x4a,0xfd,0xa9,0xb2,0x51,0x7a,0xc3,0x0f,0xfc,0xb1,0x5f,0x02,0x3c,0xf5,0x37,0xfb,0x87,0xe3,0x5b, + 0xea,0x75,0xec,0xce,0x9f,0x0f,0x44,0xb1,0x11,0x2b,0xce,0x03,0x30,0xa9,0x1f,0x2a,0xc2,0xf8,0x18,0xcc, + 0x26,0x96,0xd2,0x5c,0x82,0xe3,0x34,0x31,0xe1,0xf3,0x23,0x48,0x56,0x6a,0xe1,0xf7,0x2a,0xf9,0x01,0x22, + 0x82,0xdd,0x09,0xce,0xb8,0x68,0xde,0x84,0xdf,0x55,0x49,0x0d,0x95,0xf6,0x78,0x85,0xe7,0x28,0xfe,0x1a, + 0x2c,0xed,0x77,0x95,0x2f,0xa6,0x32,0xf2,0x67,0xf1,0x90,0xa4,0x2a,0x3e,0x54,0xa6,0x02,0x0e,0x2c,0x8b, + 0xef,0xd5,0x1c,0xaa,0x9a,0x68,0xc5,0x71,0x96,0x0d,0xf9,0xc2,0x75,0x11,0xee,0x40,0xf0,0xc2,0xaf,0xbf, + 0xd0,0xcf,0xfb,0xfb,0x6c,0x6a,0x47,0x73,0xf8,0x03,0xd7,0x24,0xa0,0xb5,0x41,0xe3,0x26,0xe6,0x79,0x7b, + 0xbc,0xbf,0xeb,0xf1,0x9a,0x94,0xdf,0x69,0xac,0xea,0x87,0x0a,0xea,0x46,0xa7,0x49,0xd6,0xee,0x9d,0xec, + 0x1b,0x31,0x96,0x1b,0x6d,0x9a,0x38,0xb8,0x47,0x74,0x69,0x88,0x3b,0x14,0xa9,0x46,0x7d,0x67,0x17,0x0a, + 0xc8,0x23,0x43,0x84,0xe7,0x84,0xda,0x38,0xfb,0xe1,0x1f,0x2b,0x9f,0xa0,0xda,0xdb,0xfb,0xe0,0x9b,0xbe, + 0x4f,0xbc,0x82,0x1f,0xaa,0x6f,0x92,0x9f,0x3c,0xb8,0x9f,0xfb,0x51,0xc3,0x99,0x3c,0xcc,0xd6,0x6b,0xa6, + 0x23,0x3d,0x21,0x36,0x4f,0x92,0xef,0x6c,0x28,0xb3,0xc9,0x0e,0xb4,0xbc,0x16,0xf0,0xcb,0x18,0x45,0x23, + 0xcf,0x31,0xaf,0xf1,0xa5,0x22,0x0d,0x22,0x55,0x34,0xd1,0xf0,0x0c,0xd7,0x45,0x1e,0xa7,0x35,0x0c,0x7b, + 0x4a,0xf7,0xe6,0x4b,0xcd,0x2e,0x9d,0x87,0x67,0x52,0xde,0x11,0x4f,0x42,0xf7,0xf6,0x92,0xfd,0x2a,0xe9, + 0x6c,0xe6,0xbb,0x18,0x9b,0x16,0xd9,0xe2,0x36,0xf2,0x6f,0x55,0x37,0x1c,0xed,0x4e,0x1e,0xba,0xeb,0x01, + 0xfb,0x9b,0x20,0x7c,0xc1,0x1b,0x53,0x7c,0xd8,0x36,0x08,0x61,0x8c,0xb8,0x04,0xea,0xb7,0x6a,0x9b,0x47, + 0x44,0x6b,0xdf,0x15,0xe3,0x5b,0x7d,0x0e,0xc2,0x52,0x47,0xce,0x32,0x84,0x95,0xd3,0xf8,0xde,0xa3,0x64, + 0xa6,0x8d,0xd3,0x59,0x85,0x74,0xaa,0xfe,0x56,0x45,0xbd,0x9c,0x29,0x22,0x5a,0x79,0xf3,0xd5,0x76,0x06, + 0x58,0x36,0xa1,0x89,0x4a,0xb5,0x6b,0x05,0x36,0x25,0xd8,0xfc,0x5d,0x2b,0xae,0xc1,0x2d,0x00,0x96,0x07, + 0xd5,0x29,0x8c,0xd4,0xca,0xa4,0xf0,0xdf,0x47,0xbf,0x55,0x9a,0x49,0xed,0x20,0x07,0xea,0xe8,0xc9,0x19, + 0xf4,0x40,0x1a,0x77,0xbc,0x2e,0xc6,0x81,0xbe,0xfe,0x3a,0x36,0xd6,0x89,0x1c,0x24,0xda,0xf9,0x02,0xf0, + 0x07,0x1c,0xee,0x99,0xfd,0xcc,0xdd,0xd5,0xe3,0x94,0xbc,0x41,0xf6,0x75,0x2e,0x31,0x10,0x86,0x52,0x51, + 0xeb,0xd3,0x6b,0x7c,0xaa,0x33,0x3a,0x9f,0xe3,0xb3,0x0d,0x78,0x9c,0xdf,0x58,0x45,0x3f,0x6b,0xd4,0x14, + 0x01,0x63,0xad,0xcc,0xf8,0x37,0x1b,0x12,0xc0,0x73,0x38,0xec,0x9b,0x23,0xe3,0x70,0xd3,0x9a,0x29,0x9b, + 0xe8,0x8b,0xd8,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0xba,0xe5,0xa7,0xde,0x25,0xe0,0xb2,0x3e,0x3e,0x2d, + 0x19,0x57,0x2e,0x72,0x56,0x88,0xa2,0x72,0x1d,0xb1,0x2e,0x3f,0x4d,0x82,0xc0,0xcb,0x9d,0xeb,0x5b,0x06, + 0x51,0x42,0xf1,0x5d,0xd1,0xe6,0xee,0x66,0xed,0x9e,0x94,0x17,0x04,0x28,0xdf,0x1d,0xbf,0x7a,0xc9,0x09, + 0x5c,0xba,0xea,0x0f,0x81,0xeb,0x99,0x40,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc,0xbc,0x58,0x65,0x23,0xe0, + 0xbc,0x54,0x8a,0xbe,0x86,0x93,0x96,0x15,0x35,0xa7,0x1a,0x30,0x8f,0x90,0x15,0xfa,0x45,0x60,0x7e,0xc4, + 0xd7,0x1a,0x8b,0x94,0x4d,0x9a,0x4f,0x87,0x67,0xfc,0x9a,0x94,0xda,0x8a,0x11,0x22,0x32,0x44,0xc7,0xb7, + 0x37,0x66,0x8d,0xa6,0xc9,0x4a,0xed,0x86,0xb3,0x24,0x8d,0x44,0xda,0x50,0x53,0x3a,0xac,0xb3,0xdf,0xbc, + 0x3d,0x7e,0xf1,0xe6,0x35,0xea,0x99,0x19,0xf1,0x0f,0x31,0x84,0x3d,0x6c,0x08,0xe1,0x06,0x76,0x30,0x77, + 0x17,0x63,0x89,0xa3,0xb4,0xd6,0xc3,0xf1,0x35,0x07,0x36,0xce,0x90,0x77,0xfc,0x67,0x56,0x4c,0xd8,0x6c, + 0xc2,0x99,0x9a,0x46,0xad,0xea,0x3d,0x45,0x9c,0xa8,0x12,0x44,0x85,0xfd,0xca,0x90,0x6d,0x62,0xbe,0x96, + 0x47,0xda,0xa4,0x65,0x9e,0xfe,0x7e,0xe3,0x82,0x79,0x8b,0x95,0x0b,0x9f,0xf2,0x86,0x20,0x9a,0x88,0xab, + 0xda,0x44,0x07,0x7d,0xcb,0x99,0x2a,0x70,0xb6,0xf7,0x42,0x23,0xb0,0x87,0xb1,0x3c,0x9a,0x8e,0x82,0x64, + 0x2c,0xa4,0x7f,0x0c,0x12,0xd2,0x9b,0x64,0xa5,0xed,0x6f,0x18,0x44,0x4a,0xb9,0x05,0x90,0xca,0x78,0x7e, + 0x9d,0x8d,0x3b,0xf3,0x16,0x0d,0xab,0xa4,0x6f,0xe6,0x9e,0xd1,0x92,0x96,0xb5,0xbc,0x47,0xea,0xf8,0x2a, + 0x6c,0xbd,0x73,0xec,0x04,0xcf,0x9b,0xb1,0xf9,0x9c,0x42,0x79,0x71,0x87,0x76,0xf6,0x28,0xef,0xc4,0x2e, + 0xb9,0x68,0xda,0x32,0x30,0x16,0x18,0x95,0x1d,0xd9,0x57,0xee,0xf7,0x23,0x12,0x5d,0x58,0x6d,0x9f,0xcb, + 0xad,0xdc,0x52,0xe7,0x46,0x5e,0xc4,0x1f,0xbd,0x4f,0xe7,0x49,0xab,0xb8,0x5a,0xc1,0x20,0xb5,0xac,0x16, + 0x7c,0x9d,0xfc,0x94,0xd3,0xa0,0x20,0xa8,0xe5,0x81,0xf6,0xe1,0x2c,0x99,0xaf,0xd7,0x2b,0x35,0xc5,0x7c, + 0xe9,0x8d,0x2a,0x95,0xf3,0x56,0xd6,0x29,0x9d,0x1a,0x12,0x18,0xc1,0xeb,0x1d,0x2e,0x7e,0x53,0xd3,0x28, + 0x9e,0x8e,0xc4,0xb0,0xb5,0x0d,0xad,0xbe,0xb6,0x9d,0xe9,0xc8,0x6c,0xd4,0x23,0x60,0xfb,0x4b,0x82,0xb7, + 0x2b,0xab,0x09,0x8d,0x60,0xdf,0xc2,0xce,0x62,0x92,0x9c,0x75,0x93,0x9d,0xe3,0x72,0x06,0x73,0xf5,0xa1, + 0x89,0xbf,0x56,0xb6,0x6a,0x2b,0xbb,0x9f,0x39,0x95,0x7e,0x25,0x75,0x70,0x68,0xcc,0x19,0x21,0xa9,0x25, + 0x6c,0x1a,0x07,0x83,0xc7,0xb0,0x44,0xac,0x95,0xc1,0x52,0x9c,0xbd,0x8c,0xc2,0x34,0xe1,0x7c,0x02,0xde, + 0x19,0xfd,0xda,0x62,0x3a,0xd6,0x09,0x30,0x40,0xea,0xb3,0x04,0x37,0x8d,0xef,0x95,0xc6,0x91,0x42,0xb5, + 0x1c,0x43,0x22,0x70,0xb0,0x30,0x8e,0x4d,0x08,0x3d,0xa1,0xc3,0x4e,0xc0,0x94,0x65,0xa3,0xed,0x5a,0x1e, + 0xfc,0x52,0xef,0x3d,0x88,0xec,0x25,0x4e,0x3d,0x1e,0xe1,0x5e,0x3d,0x1c,0x5c,0x0b,0x81,0xc5,0xe2,0xed, + 0x44,0x3f,0xc8,0x2e,0x34,0x2c,0xd4,0xfe,0x45,0x8f,0x68,0x30,0xd2,0xd6,0x97,0x3b,0xb8,0xf9,0xd1,0xeb, + 0x14,0x6b,0x64,0x02,0x56,0x92,0x67,0xfd,0x32,0xc5,0xb0,0x20,0x2e,0xcb,0x0c,0xd0,0x8f,0xbd,0xff,0xff, + 0xfb,0x2c,0x08,0x32,0xdf,0x9e,0x08,0x9b,0xae,0xfc,0x54,0x39,0x04,0xc0,0x04,0x74,0x45,0xf8,0x66,0x4a, + 0x64,0xea,0x9c,0xac,0xf9,0x4f,0x4d,0x1f,0xac,0x4f,0xcc,0xb4,0x79,0x53,0x59,0xc1,0x16,0x6c,0x04,0xef, + 0x68,0x7b,0xdb,0x54,0xa5,0x30,0x5c,0x80,0xb8,0x41,0x93,0x50,0x4a,0xf4,0xce,0x31,0xdf,0xa3,0x71,0x57, + 0x37,0xbd,0x39,0x3f,0x6b,0x34,0x69,0xa3,0x2d,0x40,0xb6,0x6e,0x6d,0x31,0x48,0xd4,0x5e,0x07,0xcc,0x2c, + 0x30,0x4d,0x0b,0xa4,0xc6,0xb8,0xc9,0xe2,0x6d,0x1e,0x66,0xda,0x6a,0x2b,0xb8,0x0a,0x10,0x00,0x33,0x64, + 0x65,0x71,0xa3,0x51,0x78,0x0f,0x6e,0x7c,0xcb,0xb8,0x71,0x8b,0x3c,0xb9,0xe6,0xbe,0xbc,0xcb,0x7d,0x07, + 0x9a,0x77,0x28,0xea,0x0b,0x62,0x8e,0x9b,0xb6,0xf5,0xc8,0xb6,0xcc,0x9b,0xa5,0x10,0xdb,0xc9,0x1c,0x17, + 0xa8,0xf0,0x2c,0xbf,0x00,0xa1,0x70,0x20,0x81,0x3c,0x81,0x56,0x5a,0xef,0x41,0xdf,0xbf,0x54,0x37,0xd5, + 0x57,0xdb,0x60,0xb0,0xea,0x6d,0x05,0x01,0xb8,0x35,0x1c,0x7b,0x4e,0xa7,0x1d,0x4e,0xfa,0x93,0x14,0x50, + 0x38,0x06,0xb4,0xc9,0x45,0x65,0x1c,0x82,0x98,0xce,0x82,0xd8,0x8c,0xa3,0x58,0xf3,0xb9,0x60,0xa5,0x0a, + 0x26,0xf4,0x4a,0x9d,0xc0,0xf0,0xe2,0xd7,0x7c,0xfc,0x3c,0x8f,0x5f,0xe5,0x84,0xf1,0x3b,0x3e,0x68,0xfd, + 0x8a,0x9d,0x5a,0xad,0x60,0xb7,0xce,0xfe,0x66,0x6d,0x1d,0x91,0x84,0xc3,0x10,0xde,0x6e,0x6f,0x6f,0xf2, + 0x0d,0x34,0x8b,0x70,0x37,0x1b,0xf5,0x3b,0x35,0x4d,0x1e,0xe9,0x7c,0x85,0x6b,0x9a,0x55,0x8f,0x92,0x08, + 0x4d,0x79,0x4e,0xaf,0xfe,0x92,0x11,0xb4,0xeb,0x5b,0x75,0xa9,0xc9,0x23,0x1d,0xc0,0x83,0xcf,0x12,0x89, + 0x39,0x51,0x9d,0xbc,0xcc,0xf7,0x82,0xa7,0x70,0xb4,0x0a,0x4e,0xad,0xc9,0x1e,0xac,0xa2,0x4a,0x93,0xb7, + 0xaa,0xe4,0xaa,0xeb,0x76,0x76,0x9a,0xbc,0x6f,0x38,0x94,0x2c,0x94,0xb0,0x27,0xaf,0xef,0xa8,0x64,0x62, + 0xf2,0xfa,0x2b,0x99,0xa3,0x12,0x18,0xbb,0xd2,0x1c,0x1d,0x40,0xfd,0xe0,0x6e,0x03,0xe6,0x09,0x4f,0xd9, + 0x04,0xbd,0xa0,0x47,0x2a,0x90,0x52,0x01,0x63,0xeb,0x4e,0x14,0x03,0x2c,0xb0,0xf3,0xf1,0x5c,0x97,0x78, + 0x81,0x12,0x73,0x2a,0x31,0xb1,0x25,0x66,0x09,0xa5,0x87,0x2b,0x17,0xb5,0x3d,0x05,0xed,0xfb,0xcd,0x01, + 0xd5,0x3a,0x1f,0xff,0x9a,0xc7,0x2f,0x72,0xe6,0xf6,0xa3,0x71,0x21,0x8d,0x99,0xba,0x63,0x53,0x45,0x7c, + 0xa0,0x74,0xf0,0x66,0xa5,0xa1,0x25,0x5e,0x29,0x0b,0x2b,0xf1,0x0c,0x57,0x32,0x1f,0x9b,0xab,0x03,0x63, + 0xa9,0x65,0x30,0x78,0xa2,0x65,0xe9,0x32,0x7b,0x26,0x12,0x48,0x70,0xea,0xa3,0x81,0xf7,0x8d,0x3b,0xa4, + 0x47,0x46,0xfe,0xf1,0xc8,0xc6,0x5b,0x8c,0xb2,0xc4,0x86,0xe0,0x76,0x44,0x94,0x19,0x47,0xeb,0x72,0xb1, + 0xb6,0x44,0xd9,0xf7,0x2e,0x7f,0x0c,0xcb,0xc9,0xbd,0xc7,0x8d,0x04,0xaa,0xda,0xf8,0x3b,0xed,0xb1,0x4f, + 0x62,0x1d,0x66,0x5f,0xfc,0x4d,0x5f,0x57,0xeb,0x04,0x08,0xfb,0x87,0x7e,0xf9,0x7b,0x1e,0x2d,0x05,0x12, + 0x8a,0xe8,0x1d,0xb8,0x75,0xe1,0x9e,0xa0,0x94,0x88,0xf3,0x73,0x76,0xa6,0xb0,0x6f,0xfa,0xda,0xce,0xb9, + 0x44,0xde,0x73,0xe9,0xa1,0x91,0x81,0x26,0x67,0x8d,0xe1,0x86,0xdc,0x86,0x8e,0xac,0xaf,0x16,0xdb,0x5c, + 0xd2,0x67,0x04,0xe1,0x59,0xc5,0x95,0x1f,0x72,0x54,0x31,0x10,0x24,0xb8,0xf1,0xce,0xd1,0x36,0x88,0x48, + 0x46,0x88,0x51,0xc1,0x7f,0x96,0x37,0x36,0x01,0xc9,0x50,0x3e,0x63,0x55,0xde,0xcc,0xbc,0x1e,0x97,0x92, + 0x30,0x35,0x09,0x8f,0x99,0x66,0x97,0xc4,0x25,0x25,0xd2,0x94,0x66,0xa9,0xfe,0xea,0xd2,0xbe,0x9b,0xcf, + 0xae,0x6c,0x8a,0xff,0xdd,0x82,0x52,0xcf,0x33,0xd8,0x95,0x3f,0x43,0x95,0xea,0xc2,0x54,0xae,0x6e,0x50, + 0x1e,0xd7,0xc0,0x4b,0xc6,0xb9,0xed,0x95,0x99,0x18,0x75,0x6d,0xbf,0x7d,0xcc,0xf5,0xaa,0x63,0xdb,0x84, + 0xfa,0x68,0xbe,0xd6,0x59,0x47,0xae,0x7f,0xf6,0xfb,0x4f,0x94,0x36,0xd5,0x7b,0x4a,0xbd,0x4f,0xae,0x2b, + 0xf5,0x98,0xfe,0x68,0x03,0xff,0xd1,0x63,0xa2,0x80,0x2c,0xc9,0xf5,0x3e,0x09,0x1f,0x27,0xe6,0x35,0x32, + 0x1c,0x2b,0xaf,0xc4,0xbd,0x64,0xf7,0xbd,0x17,0x84,0x89,0x38,0x52,0xb6,0xfe,0x2f,0x4b,0xd0,0x81,0x88, + 0x2f,0x8c,0x25,0xb9,0xb7,0x5e,0x1f,0xe3,0xf0,0xa4,0x35,0x38,0x16,0x10,0x78,0x93,0xdc,0x1b,0x0c,0x96, + 0xe3,0x25,0xed,0x86,0x67,0x78,0xbc,0x1a,0x5f,0xc5,0x53,0xf5,0x16,0x8f,0x97,0xe3,0x4b,0xda,0x17,0x4f, + 0x93,0x7b,0xe3,0xeb,0xf5,0x7a,0x11,0x2f,0xd4,0xaf,0x48,0xed,0xf1,0x9f,0x39,0x1e,0x1f,0xc7,0x17,0xea, + 0x05,0x15,0xfc,0xb8,0x5e,0xdf,0xc4,0x37,0xea,0x25,0x3d,0x1e,0xad,0xd7,0xe7,0xf1,0xb9,0x7a,0x4e,0x7c, + 0x4b,0x1e,0x7e,0x8a,0xc6,0x9f,0x64,0xda,0xe2,0x4f,0x91,0x7a,0x9d,0xf0,0x41,0x58,0xb3,0xc2,0x5e,0xbd, + 0x4a,0xde,0x36,0xe1,0xaf,0x91,0x7a,0x97,0x38,0x38,0xf1,0x3d,0x75,0xa3,0xdb,0xd7,0x04,0x92,0x74,0xa0, + 0x94,0xea,0x6d,0xa4,0xf8,0xf7,0x19,0x1d,0x95,0xef,0x1c,0x68,0x8e,0x43,0x2a,0xc1,0x19,0x6f,0x22,0xf5, + 0x72,0x30,0x78,0xc9,0x96,0x16,0x2f,0x06,0x83,0x17,0xf0,0x67,0xf0,0x6a,0xd5,0x81,0xdb,0x35,0xbc,0xd6, + 0x97,0x25,0x0d,0xec,0x7b,0xda,0x0e,0xce,0x44,0xca,0x35,0x6a,0x84,0x46,0x32,0xd7,0xe0,0x53,0x95,0x0e, + 0xad,0x7c,0x86,0xb0,0x47,0xcc,0x6a,0xba,0xe7,0x13,0x16,0xac,0x9d,0x8e,0x38,0x30,0x92,0x18,0x26,0x16, + 0x62,0x98,0xd8,0x60,0x87,0xd9,0x7d,0xd3,0x7d,0x0f,0x23,0xf5,0xeb,0x60,0xf0,0x2b,0x75,0xfd,0x1d,0xcc, + 0xa6,0x9e,0x0e,0x06,0x4f,0xd1,0x67,0x8c,0xf8,0x58,0x0f,0xe8,0x58,0x46,0xac,0xae,0x5b,0x07,0xc9,0xb1, + 0x3f,0x1f,0x6f,0x5a,0xd3,0xb1,0x5e,0xbf,0xa2,0x73,0xfc,0x59,0x13,0x3e,0x8f,0xc6,0xde,0x29,0xf4,0x4e, + 0x3d,0x8f,0xe2,0x23,0x14,0x9f,0x53,0x63,0x40,0x22,0xca,0x9b,0x08,0xb1,0xca,0xad,0xfc,0xfe,0x50,0x37, + 0xb8,0xaa,0x77,0x61,0xdb,0x03,0x4c,0x23,0x10,0x27,0xec,0xa6,0xee,0x1c,0xf9,0xcd,0x87,0xad,0x09,0x0e, + 0x89,0xf3,0x74,0x93,0x68,0x67,0x0c,0xba,0xee,0xbe,0x74,0xf1,0x47,0x95,0xe9,0x4c,0x8a,0x48,0x5d,0x12, + 0x20,0x22,0xd0,0xea,0xb5,0x4c,0x49,0x0a,0x0f,0x0b,0xfe,0x5d,0xf6,0x4c,0x49,0x4a,0x3c,0x14,0xa6,0x84, + 0x4b,0xb5,0xfa,0x74,0x2c,0x53,0xf2,0xb1,0x35,0x25,0x47,0xea,0x23,0x4f,0x49,0xaa,0x56,0xea,0x48,0xa6, + 0xe4,0x0a,0x94,0x59,0x4a,0x6f,0xea,0x9a,0x3f,0x3a,0x02,0x9d,0xad,0x0d,0xcd,0x35,0xae,0x4c,0x7d,0x74, + 0xe6,0xbd,0xb5,0x71,0xa5,0x4b,0x37,0xb8,0xb2,0xbe,0x1b,0x57,0x4a,0x14,0x59,0xb9,0x8b,0xc6,0xa2,0x46, + 0xc3,0x40,0x89,0x36,0x76,0x97,0x1b,0x36,0x48,0xda,0x38,0xa9,0xd4,0x8c,0x33,0x57,0x89,0xc4,0x8a,0x21, + 0x24,0x09,0x79,0x4b,0x6a,0xb0,0xda,0xd4,0xbc,0x1a,0xe4,0xb7,0x34,0x09,0x3e,0xee,0xbb,0xa4,0x44,0xc1, + 0x5f,0x2f,0x91,0x45,0x18,0x52,0x17,0x22,0xac,0x58,0x0b,0xf6,0x92,0x8c,0x0b,0x5b,0xbb,0xc5,0x5d,0x37, + 0x94,0xc4,0x9e,0xdd,0x52,0xe2,0x1c,0xaf,0x06,0x95,0x5d,0xcb,0x36,0x9f,0xcb,0x36,0x3f,0xc6,0x36,0xbf, + 0xa2,0xd5,0x61,0x84,0x70,0x1e,0x8d,0xcf,0xa5,0xae,0xf8,0x3c,0x62,0xac,0x68,0x86,0xd6,0xde,0xfa,0x3e, + 0x88,0x40,0x84,0xd4,0x03,0x30,0xbc,0x06,0x3d,0xe9,0x16,0x86,0x38,0x08,0xd8,0xb5,0xe0,0x10,0x07,0x20, + 0xcb,0xa8,0x05,0x21,0xe3,0xf0,0x9a,0x71,0x08,0x43,0x0e,0xd5,0x79,0xc1,0x86,0x22,0x21,0x36,0xc4,0x62, + 0x30,0x58,0xe0,0x4d,0x79,0x9d,0xd4,0x98,0xe4,0x66,0x7c,0x43,0xdb,0x35,0x2e,0x43,0x9f,0x20,0x78,0xe6, + 0x9d,0xc8,0xdb,0xd1,0xa9,0x68,0x36,0xe4,0x02,0x46,0x5f,0xbb,0xfc,0x16,0x31,0x6b,0x99,0x95,0x70,0x01, + 0x90,0x75,0x88,0x6d,0x98,0x13,0x23,0x54,0xb2,0x17,0x40,0x6a,0x4c,0xc5,0xb7,0x02,0xe1,0x54,0x27,0x07, + 0xa7,0x31,0xc2,0xe0,0xd8,0x2b,0xff,0xe0,0x0c,0xa3,0xe9,0xa7,0x6f,0x3c,0x8d,0xde,0x53,0x4d,0xaf,0xec, + 0x42,0x7d,0xdf,0xf8,0x18,0xe0,0x1e,0xdf,0x8c,0xec,0x1c,0x47,0x2c,0xe9,0xfd,0xc2,0x3c,0x29,0x67,0x2a, + 0xd7,0x4f,0xdf,0xda,0x92,0x1b,0x75,0xe0,0x55,0xf5,0xa2,0x43,0xc5,0x37,0x9e,0x64,0x6c,0xb1,0x9a,0x37, + 0xf9,0x72,0x9e,0x09,0xbd,0xbe,0x5e,0x77,0x47,0xe6,0x45,0x4e,0x63,0x53,0x17,0x38,0x6f,0x59,0xc7,0x9b, + 0xae,0xef,0x16,0xfc,0x40,0x5c,0x2e,0xae,0xe0,0xc8,0xa3,0x32,0x39,0x27,0xf6,0xef,0x39,0xac,0x80,0xc0, + 0xef,0x2a,0x5c,0xe5,0x34,0xe7,0x8b,0xd9,0x69,0x02,0x4a,0x06,0x1f,0x93,0x90,0x78,0x01,0xc1,0x6e,0x42, + 0xfe,0xc4,0x8b,0x20,0x0c,0xae,0x0b,0x74,0x95,0x2e,0xcc,0x8a,0x2a,0x39,0xc7,0xba,0xa9,0x09,0xdc,0xfa, + 0x72,0xe6,0xa6,0xda,0xe9,0xfb,0xad,0x1b,0x28,0x5f,0x36,0xed,0xeb,0x5a,0xba,0xd7,0xf0,0xd9,0xac,0xdd, + 0x9b,0x50,0x0c,0x6b,0x3d,0x3f,0x12,0x1f,0xca,0x44,0x54,0xca,0x71,0xde,0x70,0x59,0x81,0xa8,0xfd,0xb4, + 0xf8,0xd1,0x73,0x05,0x69,0xc4,0x19,0x5a,0x78,0x16,0x27,0x33,0x85,0x11,0x9a,0xf3,0x01,0xb9,0xa3,0x10, + 0x0f,0x72,0xfb,0xcb,0x43,0xf5,0xae,0xb1,0x19,0x4a,0x0b,0xf2,0x7d,0x7a,0xf3,0x5d,0x8b,0xe9,0xec,0x3a, + 0x3c,0x5c,0xb1,0xbb,0x03,0xa4,0xce,0xa2,0x16,0x0f,0x84,0xcf,0xcc,0x1b,0xc9,0x69,0x14,0x61,0x52,0x8e, + 0x9d,0x34,0x9c,0xe6,0x35,0xdb,0x28,0x4b,0x86,0xaf,0xbe,0x78,0xe2,0xcd,0xc4,0xee,0x1d,0x0e,0x0f,0x22, + 0xa9,0xca,0xba,0xc8,0x77,0x9c,0xc5,0x4f,0xd8,0x9f,0xe6,0x2e,0x99,0x99,0xe7,0x7a,0xe1,0x49,0x45,0x99, + 0x0c,0xd8,0x32,0x8c,0x35,0xab,0x88,0x33,0xbe,0x65,0x12,0x6b,0xdc,0xd6,0xc7,0x54,0xc7,0x3f,0xe1,0x0d, + 0x66,0x5d,0x12,0x7d,0x21,0xe7,0x8f,0x5e,0x03,0x7c,0x05,0xa6,0x8b,0x96,0xda,0x0e,0xa4,0x54,0xb8,0x2b, + 0x2b,0x22,0x04,0x51,0x62,0xf3,0xe6,0x91,0x8e,0xad,0x44,0xe8,0x8f,0x51,0xa1,0xe1,0x27,0x3b,0xde,0x7c, + 0x39,0x7d,0x71,0x8d,0xcb,0x41,0x4e,0xd9,0x9f,0xaf,0x27,0xa6,0xed,0x77,0x4e,0x92,0xf4,0xe0,0x97,0xe9, + 0xfe,0xc7,0x2c,0x5b,0xee,0xa7,0x73,0x3a,0x2c,0xee,0xe9,0x9b,0x07,0x99,0xbe,0x71,0x81,0xb2,0xc3,0xc0, + 0x15,0x09,0xd4,0x2d,0x77,0x2d,0x6e,0xb6,0x66,0xc7,0xf5,0xd9,0x07,0xe2,0x0f,0x1a,0xd8,0x98,0x24,0x62, + 0xe5,0xc0,0x39,0xdf,0x84,0xe9,0x5e,0xd9,0xd6,0x92,0xdf,0xf5,0x69,0x6a,0xf3,0xed,0xe9,0xea,0x99,0x8e, + 0xeb,0xea,0x44,0xdc,0x9a,0x5d,0xbf,0x2d,0x11,0x96,0x08,0xa5,0x09,0x38,0x9f,0x10,0x61,0xcc,0xa1,0x41, + 0xe6,0x39,0x7d,0xfa,0x0e,0xf7,0xc0,0xfb,0x31,0xeb,0xfd,0xe5,0x95,0x0a,0x08,0xc4,0x95,0x75,0xb2,0x91, + 0xda,0xf4,0xd5,0x16,0xb3,0x66,0xbf,0xe0,0x1f,0xbe,0x43,0xad,0x29,0x97,0xf4,0x4a,0x7f,0x81,0xc1,0xaa, + 0xf5,0x3a,0xb7,0x5d,0xc0,0x10,0xa6,0x46,0x03,0x59,0xea,0xae,0xb0,0x60,0x78,0x54,0xba,0x8b,0xea,0x89, + 0xc8,0xfc,0x29,0x3b,0xff,0x98,0x37,0x96,0xff,0x4c,0x02,0xce,0x44,0x40,0xbd,0x30,0xd8,0xab,0xf6,0x82, + 0xe5,0x27,0xc5,0xaa,0xfe,0xe5,0xa7,0x28,0x50,0xa5,0x07,0xc0,0x86,0x17,0x4f,0x82,0x83,0xda,0xd7,0xd3, + 0xff,0xd6,0xda,0x75,0xcd,0xf8,0x59,0x19,0xbf,0x29,0x9d,0x04,0xdf,0x48,0xc5,0x8a,0x96,0x96,0x4e,0x67, + 0xdf,0x2b,0x71,0xeb,0xae,0x1f,0x36,0xde,0x62,0x6f,0xad,0xa0,0x66,0x46,0xfa,0x90,0x63,0x05,0x64,0xca, + 0x1a,0x57,0xc4,0x8d,0x32,0xe6,0x10,0xad,0xbb,0x7c,0xbb,0x37,0xbb,0x2a,0x67,0x26,0x60,0xef,0x07,0xd1, + 0xf1,0x96,0xb5,0x6b,0x24,0x1e,0x25,0x0c,0x89,0x73,0xe4,0x6a,0x22,0x25,0x90,0xed,0x07,0x55,0x39,0xf1, + 0x2f,0xb0,0xf9,0xd6,0x1c,0x6c,0xdb,0xaa,0x7b,0xb6,0x62,0x21,0x40,0xbd,0x21,0xfc,0x22,0x77,0x3b,0x72, + 0x98,0x33,0xf8,0x1e,0x78,0x96,0x4f,0x99,0xb8,0x16,0xed,0xfa,0xc6,0x4d,0xda,0x9c,0xe1,0xae,0x2a,0xab, + 0x6c,0x66,0xab,0xa4,0x67,0x8e,0x9c,0x66,0xfc,0xa1,0x5a,0x92,0x22,0xcf,0x88,0x76,0x54,0x48,0xa8,0x4f, + 0x7b,0xd5,0x4c,0x01,0x99,0xab,0x73,0x37,0x82,0x88,0x52,0x07,0xf2,0xb4,0xb1,0xa2,0x41,0x85,0xa2,0xaf, + 0x1d,0xa5,0x6a,0x80,0x70,0x17,0xd6,0xce,0x19,0xd6,0xda,0xf4,0x0e,0x7d,0x97,0xee,0x1e,0xe6,0x33,0xf0, + 0xa4,0xd2,0x4d,0x3b,0xba,0x37,0x7f,0x05,0x2b,0x28,0x31,0xe4,0xe1,0xb0,0x07,0x01,0xdf,0x82,0x47,0xd5, + 0x70,0xc8,0x2d,0x04,0xd2,0xd6,0x99,0x94,0xb4,0xaf,0x4b,0x10,0x95,0x61,0xbf,0xf1,0x93,0xe5,0x20,0x74, + 0xdf,0x9a,0x68,0xc7,0x95,0x2d,0x0a,0xfc,0x6e,0x4b,0x1d,0x8b,0xec,0xec,0x7e,0x10,0xdc,0x67,0x43,0xf2, + 0xfb,0x36,0x60,0xe9,0x7d,0x5a,0xe4,0xed,0x9e,0x02,0x91,0xdb,0xda,0xe9,0xc5,0xd5,0xaa,0xf8,0x82,0xe5, + 0xee,0x04,0xc9,0x88,0x43,0xb3,0x56,0x79,0x6d,0xba,0x68,0x91,0x13,0x75,0x51,0x69,0xf3,0x23,0x29,0x52, + 0xcc,0xf3,0x22,0xdb,0xb7,0x2d,0x4b,0x71,0x49,0x3d,0xd6,0x89,0x6c,0x51,0xd9,0xb9,0xf2,0x86,0xe0,0x78, + 0x51,0xfa,0x1e,0x32,0x59,0xb2,0x80,0x43,0x1b,0x03,0x24,0xf5,0x74,0xb4,0x0d,0x93,0xca,0x33,0xdf,0x65, + 0x8a,0xc6,0xc2,0x1c,0x57,0xdc,0xd0,0x3e,0x29,0xac,0x00,0x6c,0xd4,0x3c,0x2a,0x4c,0xe4,0x81,0x2a,0x81, + 0xdf,0x52,0x23,0x9b,0x45,0x95,0xf2,0x2c,0xe4,0xd4,0x8b,0x52,0x8b,0xab,0xb4,0xd4,0xff,0x32,0xad,0x9f, + 0xe4,0x8c,0xf4,0x60,0xe0,0xaa,0x42,0xff,0x4e,0x25,0x0b,0xc7,0xfa,0x7e,0xa0,0x27,0x12,0xe5,0xc6,0x0f, + 0x7b,0xef,0xee,0xcb,0xe8,0xaa,0x04,0x38,0x0a,0xa4,0x91,0x30,0x1d,0x46,0xb8,0xee,0x1b,0x86,0x13,0xb8, + 0x92,0x2b,0xd2,0x97,0x43,0x18,0x14,0xf3,0xa4,0x84,0x86,0x87,0x18,0x54,0xd7,0x37,0x3f,0xfb,0x1d,0x67, + 0xd3,0x30,0x7e,0xe6,0xe0,0x03,0x6c,0xc9,0x2c,0x51,0x49,0x71,0x60,0x88,0xd1,0xf1,0x81,0xd2,0xca,0xe9, + 0x66,0x31,0x0f,0x24,0xfe,0xd9,0x35,0xe2,0x77,0x4a,0x53,0x9e,0xe2,0x9a,0x69,0xf4,0x09,0x4d,0xcb,0x9c, + 0x73,0xa4,0x10,0xe8,0xbd,0x9b,0x62,0x32,0x18,0xb0,0x1d,0xa2,0x8b,0x6a,0xc9,0xb9,0x0a,0xd1,0x8a,0x54, + 0x70,0x8f,0x2d,0xef,0x02,0xb6,0xef,0x86,0x2e,0xdf,0x41,0xc8,0x60,0x70,0x56,0xda,0x0b,0x6f,0x0d,0x7a, + 0x13,0x66,0x8b,0x88,0x6e,0x36,0xdd,0x44,0xac,0xad,0x98,0x81,0xb1,0xf2,0x03,0xca,0xfe,0xda,0x3f,0xe0, + 0x5f,0x65,0xc0,0x85,0x2e,0x4f,0xcb,0xbf,0xeb,0x5f,0xce,0x38,0x4f,0x5a,0xb3,0xf7,0x42,0x66,0x4f,0xaf, + 0xd1,0x2b,0x0e,0xeb,0x40,0x83,0x9b,0x9f,0x1c,0x9e,0x8e,0x56,0x7a,0xa6,0xad,0x9c,0xcf,0xfa,0x75,0xed, + 0x1d,0x62,0x24,0xd3,0xa4,0x22,0x86,0x2f,0x27,0xfe,0xae,0x24,0x9e,0x6e,0x05,0x19,0x97,0x0a,0xc3,0x59, + 0x92,0x45,0x2d,0x1f,0x3d,0xc4,0xe9,0xb1,0xaf,0x5b,0x26,0xa2,0x53,0xa5,0x3d,0xa2,0xe2,0xa5,0xb6,0xed, + 0xbc,0x84,0x65,0x4b,0x7c,0xa5,0xac,0x19,0x62,0xbc,0xd8,0x70,0x90,0x0d,0x63,0x3b,0xc8,0x13,0xa0,0xe7, + 0xa3,0x63,0xcc,0x57,0xf2,0xad,0x3b,0xfe,0xec,0x06,0x0b,0x08,0xb1,0xb1,0xaa,0xd5,0x67,0xa7,0x7a,0x30, + 0xd0,0x73,0x6d,0xbc,0x4c,0xb4,0xda,0x5a,0x2d,0xd5,0xa5,0xa2,0xce,0x6c,0x5a,0xfc,0xd4,0xcf,0xee,0x34, + 0x67,0xa0,0x4e,0x8c,0xa5,0x22,0x41,0x72,0x10,0xf5,0x99,0xaf,0x19,0xbb,0x64,0x99,0xe8,0x97,0x3a,0xe4, + 0x93,0xe1,0x57,0x58,0x89,0x4b,0xdf,0x26,0xc5,0xc9,0xc3,0x53,0xad,0x3f,0x32,0x14,0x17,0x2d,0x85,0x4e, + 0xb1,0xab,0xf6,0xda,0x00,0x75,0xae,0xeb,0x7b,0xee,0x22,0x00,0x97,0x63,0xc4,0x71,0x9a,0xe7,0x69,0x4d, + 0xb9,0xe6,0x83,0xe7,0xf2,0x41,0x35,0xcc,0x89,0xa6,0x49,0x89,0x76,0x3c,0x4c,0x4a,0x57,0xaf,0x2a,0xa9, + 0x55,0xb6,0xc0,0x30,0xd9,0x0f,0x93,0xd2,0x75,0x04,0xc1,0x57,0x4c,0x8d,0xaa,0xe2,0x6b,0xf1,0x0a,0x8e, + 0x59,0xd0,0x76,0x24,0xf9,0xb7,0x55,0xc9,0xe4,0xb3,0xa3,0x92,0xb0,0x02,0xd3,0x65,0xcc,0xa3,0xf8,0x09, + 0x1c,0x7a,0xb5,0x9d,0x64,0xf4,0x3c,0x9e,0x35,0xb4,0x2f,0x74,0xfe,0xbe,0x69,0xaf,0x1a,0x9f,0x9b,0x26, + 0xba,0x7d,0x66,0x84,0x95,0x9e,0xbd,0x73,0x97,0x19,0x1c,0x07,0x26,0xda,0x53,0x7c,0x1b,0xc4,0x41,0x89, + 0x1f,0x17,0xf8,0x41,0xdf,0xb5,0xb7,0x97,0xc0,0xe0,0x2f,0xdf,0xbb,0x1f,0xc4,0xf7,0xf7,0x32,0xc4,0x0b, + 0x62,0xb7,0x72,0xd8,0x7d,0xbb,0xfb,0xa4,0x3d,0x91,0x37,0x1b,0x2e,0x3a,0xb3,0xe8,0xc2,0x52,0xb5,0xf6, + 0x7e,0x52,0x2b,0xc9,0x24,0xbe,0x75,0x13,0x6c,0x07,0xae,0xb6,0x17,0x9d,0x05,0x27,0x30,0x2d,0x6f,0x0b, + 0xe7,0x9d,0x4e,0x54,0x5f,0x47,0x62,0x3c,0x01,0x15,0x34,0x93,0xa7,0x81,0x3e,0xf9,0xbe,0x2f,0x0d,0xd1, + 0x2c,0x8e,0x63,0x44,0xfb,0xfc,0xd6,0x49,0x62,0x00,0x75,0x46,0xbd,0xc6,0xca,0x21,0x20,0x42,0x0f,0x7f, + 0x52,0xe3,0xbb,0xca,0x22,0x24,0x0e,0x4b,0xe9,0x15,0xa6,0x6f,0xff,0xcd,0x21,0x82,0xca,0xbd,0x84,0x1f, + 0xd4,0xb7,0x25,0x6b,0xcd,0x53,0x63,0xec,0xeb,0x02,0x65,0x67,0x9f,0x52,0x89,0x96,0x52,0x9b,0x40,0xe0, + 0x5e,0x4d,0x23,0xaa,0xe0,0xe7,0x32,0x3c,0x09,0x26,0x4d,0x35,0xa7,0x41,0xb0,0xd5,0x30,0xfd,0xa6,0x73, + 0xfc,0x5d,0x64,0x4d,0x1a,0x9c,0xde,0x6d,0xd3,0xbe,0x3b,0x61,0x92,0xf1,0x0e,0x93,0x78,0x8d,0x5e,0x87, + 0x01,0xcc,0xf4,0x7f,0x20,0x22,0xcc,0x4e,0xd6,0x7a,0x0d,0x5e,0x51,0xcc,0x51,0x6c,0x87,0x8d,0x8b,0xb1, + 0xb5,0x1c,0x0a,0xf3,0x3d,0xc2,0xf2,0xb0,0xf2,0xb8,0x7f,0xbe,0x6a,0x9a,0xb2,0xb8,0x8f,0x69,0x90,0x4a, + 0x11,0x56,0x60,0x2f,0xe5,0x86,0x9b,0xc2,0x54,0x4b,0x69,0xb4,0x08,0x56,0xf5,0x47,0x07,0xfc,0x08,0xdb, + 0x51,0x6a,0x2a,0xbd,0xb8,0x9b,0xa1,0xae,0xe4,0x16,0xd4,0x75,0x58,0x8c,0xf5,0x9a,0xec,0x05,0x26,0x23, + 0x88,0xab,0x31,0x9b,0xcf,0x9a,0x8c,0xc8,0xe5,0x98,0x05,0x64,0x48,0x33,0x6d,0xad,0xd7,0x95,0xa9,0x25, + 0xee,0x6b,0xc6,0x56,0xe4,0x43,0x67,0xe3,0x9d,0xc7,0x1c,0x96,0xe7,0x05,0x1f,0x0f,0x87,0x07,0x91,0x1f, + 0x93,0xdf,0x4c,0xa3,0x0e,0x7f,0x4d,0x84,0x23,0x55,0xa7,0xe1,0xec,0xdb,0xd2,0x85,0x4a,0x0e,0xce,0x3e, + 0x86,0xed,0xa2,0xc4,0x3c,0x74,0x10,0x71,0xc6,0x1b,0xa7,0x9b,0x5a,0x20,0xd5,0x7d,0xea,0x9b,0x87,0x16, + 0x2d,0xc3,0x29,0x84,0xf7,0xf9,0x27,0x22,0x00,0x1b,0x93,0x55,0x09,0x26,0x17,0x07,0x30,0x31,0xe4,0x20, + 0xb2,0x76,0x7f,0x40,0x8b,0x3f,0xae,0xc4,0x2e,0x2a,0xbe,0x7f,0x36,0xd1,0xc1,0x0d,0xee,0xf3,0xb4,0xa9, + 0x4e,0x6c,0xe6,0xb8,0xe8,0x46,0x6b,0xf6,0x10,0x58,0xe5,0xf6,0xb0,0xb1,0x39,0x82,0x7a,0x83,0x09,0x76, + 0x79,0x7d,0x5b,0x95,0x93,0xac,0xae,0xb3,0xa9,0x59,0x7a,0x6d,0x40,0x23,0xf1,0x75,0xc4,0x8f,0x60,0x57, + 0x1e,0xb6,0x8a,0xa6,0x7e,0x51,0xda,0x6f,0x5c,0x92,0x7e,0xb7,0x0a,0xb6,0x0d,0x43,0xbd,0x60,0x21,0x28, + 0xcd,0x2e,0x35,0x8c,0x8b,0xd9,0x05,0xc0,0xa2,0xf3,0x31,0x66,0xdb,0x7b,0x8f,0x69,0x67,0xd7,0x5e,0x81, + 0x87,0x9d,0x02,0x0f,0xe1,0xa3,0x66,0xd9,0x35,0xbf,0x1b,0x4c,0x0e,0x9d,0xcd,0x43,0x6d,0xfb,0xed,0x08, + 0x5e,0x18,0x6b,0xa7,0x08,0x7a,0xe5,0x4d,0xbd,0x9e,0x32,0x9a,0x6a,0x5a,0x4b,0x6f,0x7c,0xf9,0x8c,0x87, + 0x97,0xcf,0xb6,0x46,0x57,0xbb,0x69,0x70,0x04,0xf8,0x6e,0x87,0x00,0x17,0xc2,0xbd,0x8f,0x03,0xe9,0x99, + 0x23,0x67,0x6f,0x60,0x98,0x93,0xf5,0xda,0xa3,0xf4,0x09,0x23,0xce,0x0b,0xa3,0xd3,0x0f,0xce,0xd8,0x5e, + 0x79,0x2f,0xac,0x78,0x3e,0x2a,0x89,0x65,0xe7,0x02,0xa3,0x07,0xb7,0x98,0x24,0x09,0x8e,0x7e,0x87,0xfb, + 0xcd,0x75,0xa1,0x6d,0x2a,0x68,0xd4,0x31,0x4a,0x8b,0x10,0xac,0x85,0x9e,0x37,0x01,0xaf,0x8e,0x35,0xde, + 0xd7,0x2e,0x0c,0x81,0xd9,0x41,0xbb,0xb8,0xcd,0x34,0xa5,0xad,0x0c,0x4f,0x71,0xc2,0x3d,0xcc,0x23,0x38, + 0x0c,0x82,0xae,0x21,0x50,0x96,0xbc,0x85,0x25,0x6c,0x92,0x4c,0x19,0xde,0x56,0x29,0x8d,0x85,0xad,0xab, + 0x65,0x2e,0x79,0xfc,0x32,0xf1,0x2e,0x00,0xac,0x4f,0x7e,0xb4,0x45,0xa3,0x6d,0x76,0x63,0x8c,0x7a,0xe3, + 0x39,0xeb,0x83,0x21,0x0a,0xb3,0x9b,0x9c,0x76,0x92,0x76,0x7b,0x9a,0x88,0xb2,0xb8,0x35,0x6b,0xba,0x79, + 0xd7,0xa0,0xe2,0xae,0x58,0x3a,0x13,0x3c,0x38,0x53,0x6c,0x63,0x13,0x05,0xcd,0x2e,0x42,0x97,0xe1,0xb1, + 0x3d,0x40,0x3f,0xd1,0x83,0x22,0x41,0xeb,0xf7,0x31,0xb9,0xb4,0xe6,0x7b,0x01,0x3d,0xb5,0x9a,0x0e,0x73, + 0x7e,0xc9,0x6d,0x3f,0xda,0x97,0x70,0x36,0x4e,0xf4,0xe1,0xae,0x4f,0x20,0xde,0xa6,0x48,0xfc,0x9c,0x93, + 0xf2,0x94,0x71,0x86,0x73,0x92,0xd7,0x0f,0x1a,0x5a,0x60,0x32,0xc3,0x3d,0xf7,0x90,0xd4,0xd6,0x85,0x3d, + 0x1d,0xb4,0x80,0xbd,0xd3,0x74,0x31,0x8c,0x9c,0x3b,0xbd,0x98,0xcb,0x6d,0x9f,0x00,0x11,0xe1,0x17,0x34, + 0xe3,0xe1,0xf6,0xf7,0x26,0xfa,0x5e,0xb4,0x67,0xf1,0x92,0xc4,0x43,0x09,0x94,0x78,0x5a,0xdb,0x69,0xb0, + 0x5e,0x14,0x3e,0x26,0x6b,0x61,0x23,0x89,0xc1,0xfe,0xa7,0xb6,0x67,0xab,0x2d,0x5f,0xc0,0x10,0x04,0x2c, + 0x61,0xd1,0x3a,0xe3,0x6a,0xa4,0x4d,0x79,0x21,0x63,0xb8,0x25,0x5e,0x1c,0x98,0xdd,0x38,0xb4,0x58,0x47, + 0x5b,0x7b,0x7e,0x8d,0x03,0x22,0xc2,0xbd,0x91,0xb3,0x57,0x1d,0xba,0xf8,0x62,0xba,0xb7,0xc7,0xaf,0x05, + 0xc6,0x12,0xeb,0x02,0x9b,0x36,0xa2,0xf5,0xdc,0x09,0xb6,0xa3,0x6f,0xb7,0x06,0x84,0x81,0x3a,0xea,0x2c, + 0xb4,0xc6,0xfd,0x9e,0x56,0xd1,0xed,0xe9,0x6a,0x5c,0xc9,0xf9,0x21,0xb3,0x35,0x4e,0xf5,0x71,0xa2,0x8f, + 0x15,0xbe,0xef,0xc4,0x88,0x6a,0xec,0x6d,0xc8,0x04,0x20,0x67,0x44,0x81,0x06,0xda,0x4e,0xa1,0x31,0xd1, + 0x0b,0x1d,0x7d,0x91,0x7d,0x5a,0xf2,0xe1,0x9e,0x8a,0x7f,0x44,0x34,0xa6,0x6d,0x4d,0x8c,0xe7,0xf9,0xbc, + 0x9c,0x7c,0xd4,0xd8,0xc3,0x76,0x8c,0x16,0xd1,0xcb,0xdc,0x74,0x88,0x66,0x4b,0xee,0x76,0xef,0xa9,0x99, + 0xb4,0x50,0x20,0xa1,0x2f,0x55,0x25,0xfd,0xc8,0xb1,0x7b,0x4f,0xf6,0xad,0x0e,0x6b,0xa1,0x1d,0x7c,0xbd, + 0x28,0x12,0xf1,0x49,0xc0,0xce,0xbe,0x26,0xe0,0x45,0xdf,0xbd,0x59,0xb7,0xa5,0x09,0xb3,0xaf,0xa5,0x8f, + 0xf3,0xd6,0x55,0xdc,0x27,0x12,0xdd,0xe2,0x74,0x04,0x46,0x99,0xca,0xec,0xce,0x11,0x2b,0x9b,0xf6,0xc6, + 0x75,0x5a,0xe1,0xee,0x90,0x54,0x9c,0x79,0x0f,0x54,0x4d,0x64,0xb7,0x30,0x82,0x44,0x7c,0xeb,0x90,0x18, + 0xf7,0x03,0xcb,0x13,0x72,0xa2,0x7e,0x81,0xfb,0xcd,0x5e,0x58,0x0a,0xbe,0x25,0xd8,0x17,0x1a,0x08,0xc7, + 0x92,0xa5,0x9d,0x7c,0xff,0xa3,0x2d,0xe2,0x43,0x17,0x8b,0x04,0x85,0x94,0x43,0x3a,0x63,0xc6,0xf7,0x99, + 0xd7,0xe4,0x56,0xe8,0x01,0x2d,0x98,0x5c,0x4b,0xb8,0x52,0x4b,0x8e,0x13,0xed,0xa9,0xd4,0xd1,0xca,0xb2, + 0x0f,0x37,0xca,0x45,0x56,0x9a,0x8c,0xeb,0x36,0xcb,0x70,0x6a,0x23,0x3c,0x69,0xd4,0xcd,0x17,0xab,0xec, + 0x25,0x15,0x20,0x3f,0x52,0x5a,0x40,0x88,0x14,0x08,0x13,0xf9,0x78,0x11,0x7f,0x9a,0x40,0x42,0x02,0xcc, + 0x74,0x26,0x3d,0x71,0x26,0xfd,0x7a,0x99,0xbc,0x53,0x5d,0x09,0x7e,0x8d,0x81,0x22,0xa4,0xc4,0x92,0x3d, + 0x21,0x91,0x49,0x4f,0x5e,0xba,0xc7,0x2d,0x23,0xf7,0x3e,0xc4,0xae,0xec,0xfb,0x04,0xe4,0x4b,0x8b,0x71, + 0xdf,0x89,0xa2,0xc4,0x01,0x57,0x94,0x7a,0xdf,0x66,0x85,0xc3,0x4e,0xec,0x8b,0x4b,0x1f,0xfb,0x59,0xc4, + 0x3e,0x85,0x99,0x46,0x25,0xfa,0x7c,0xe5,0xd6,0xf9,0x99,0x58,0xb0,0xbd,0x59,0x61,0x72,0xf4,0xbc,0x29, + 0xed,0x95,0xaa,0x0b,0x1a,0x5f,0x04,0x5b,0x56,0xa2,0x0e,0xdb,0xb2,0xe2,0xce,0x28,0x85,0xc1,0xf4,0xe9, + 0x04,0xb5,0x7b,0x68,0x20,0xcd,0x4c,0x8e,0xef,0x19,0xe9,0x95,0xf7,0x93,0x15,0xe3,0xee,0xd6,0x57,0x8e, + 0x14,0x11,0x1a,0xd0,0x88,0x06,0x75,0xf7,0xf8,0x22,0x9a,0x60,0xcf,0x2f,0x67,0xbf,0x74,0x01,0x5e,0xa5, + 0x30,0x6b,0x0d,0xbd,0x54,0x5c,0xc9,0xa4,0x05,0xa2,0x92,0x10,0x9f,0xad,0x88,0x39,0x6a,0x85,0x82,0x49, + 0xef,0xe2,0x77,0x76,0xba,0x88,0xcd,0x66,0x14,0x9a,0xb2,0x2c,0x5a,0x24,0x9d,0x8b,0x75,0xd6,0x22,0x28, + 0x0b,0x4d,0x50,0x16,0x96,0xa0,0x2c,0x3a,0x04,0x65,0xd1,0x25,0x28,0x8b,0x0e,0x41,0x59,0xf4,0x12,0x94, + 0xc5,0x7f,0x4e,0x50,0x9a,0x01,0x69,0x8a,0x52,0x5e,0xe2,0xe0,0x56,0x76,0x03,0xe6,0x77,0x56,0xc4,0x5e, + 0x0d,0xda,0x59,0xa3,0x70,0x8b,0x13,0xb5,0xea,0x0b,0x5b,0x52,0x5e,0x36,0x99,0x19,0x53,0xa7,0x67,0xfc, + 0x67,0x2f,0x20,0x8c,0x1c,0xce,0x39,0x88,0x72,0xd4,0xba,0xb8,0x1a,0xd8,0xd9,0xbd,0xc5,0x7d,0x45,0x70, + 0x38,0xf0,0xf5,0xaf,0xd4,0xd5,0x0d,0x53,0x62,0x29,0xee,0xb3,0xaf,0xbb,0x9c,0x3a,0x1d,0xec,0x11,0x40, + 0x42,0xc7,0x4d,0x67,0xc8,0xe1,0xe7,0xd8,0x78,0x4f,0xee,0x65,0x7e,0x64,0x74,0x1a,0xa2,0x73,0x98,0xb4, + 0x59,0x26,0x69,0x2f,0x68,0xe3,0x38,0x1b,0x86,0xdd,0x26,0xda,0xdd,0xd1,0x26,0xb2,0x8c,0x41,0x5e,0xdb, + 0xfc,0xcf,0x06,0x74,0x33,0x91,0x48,0x0f,0x38,0xfc,0xcf,0xa1,0xc4,0x21,0x64,0xfb,0x39,0x0d,0x2b,0x05, + 0x47,0xfc,0x29,0x4d,0xb0,0x43,0x4d,0x24,0xb6,0xdb,0x88,0x0d,0x9b,0xe6,0x09,0x3e,0x68,0xd1,0x75,0x24, + 0x70,0x74,0xac,0xcb,0x8e,0x9d,0x20,0xbb,0x4b,0xef,0xdc,0xc1,0xe4,0xb7,0x2a,0x15,0x06,0xb7,0x3d,0xd3, + 0x70,0x24,0x25,0x44,0x4b,0x58,0xb5,0x94,0x79,0x2e,0x79,0x3b,0x6e,0xb4,0xf7,0x85,0x85,0x4e,0xcf,0x6a, + 0xfb,0x81,0xba,0xf7,0x40,0x05,0x9a,0x64,0xcf,0x86,0xd7,0x55,0xba,0x7c,0x6a,0x7c,0x0e,0xdc,0x2b,0x6c, + 0x26,0x74,0xae,0x55,0x7b,0x7a,0x45,0x6c,0x1a,0x97,0xf3,0x82,0x2d,0xcd,0x7b,0x42,0xfd,0xbb,0xb9,0x96, + 0x60,0xe4,0x7e,0x40,0xae,0x34,0x29,0xbd,0x05,0x28,0x3d,0xcf,0x26,0xde,0xd5,0x2d,0x7e,0x29,0x15,0xeb, + 0x2f,0x61,0x8f,0xcc,0xbb,0xf1,0x75,0x25,0xbe,0x82,0xd0,0x58,0x98,0x1a,0xe6,0x80,0x36,0x6e,0x27,0x8c, + 0xb8,0xa7,0x5b,0x50,0x3d,0x31,0xad,0x6c,0x7c,0xca,0xca,0x76,0x27,0xd7,0xf0,0x80,0xb8,0x1a,0xb8,0x5c, + 0x0a,0x21,0x2a,0x7d,0x12,0x05,0xde,0x1f,0x6d,0x92,0xa5,0x5c,0x64,0x7d,0xc8,0x6b,0x05,0x4c,0xae,0xc9, + 0x9c,0x08,0x14,0xe3,0x43,0x4d,0x2d,0xb2,0xd3,0xd2,0x7f,0x5c,0x6d,0xe3,0xd7,0xca,0xab,0x73,0x18,0x79, + 0xd7,0xca,0x85,0x25,0xdb,0xbf,0xde,0x9c,0x67,0x47,0x96,0x45,0x8a,0x39,0x4e,0x6f,0xd7,0x75,0xcb,0x98, + 0xba,0x0a,0xcf,0x49,0x63,0x1e,0x6b,0x5a,0x34,0xfe,0xc2,0x26,0x41,0x49,0x6c,0x23,0x00,0x8e,0xe1,0x1c, + 0xae,0x40,0x0c,0x6e,0x91,0x07,0x95,0xc4,0x9a,0x66,0x1f,0xea,0x38,0x38,0xbb,0x02,0x81,0xff,0x10,0x1a, + 0x86,0x02,0x52,0x72,0xae,0xbc,0xf0,0xf6,0x6e,0x3c,0x2d,0xc2,0xae,0xc8,0x44,0x6a,0x88,0xb8,0x8e,0x91, + 0x36,0xd3,0x36,0xaa,0x13,0x08,0x0e,0xcb,0xbb,0x0e,0x89,0x49,0xaf,0xdc,0x70,0x2f,0xac,0x19,0x73,0xd7, + 0xa0,0x56,0x3c,0xe1,0xc7,0xca,0xff,0xd4,0x6a,0x0e,0x59,0x34,0x40,0x68,0xaf,0x47,0x55,0xd6,0x66,0xcc, + 0x3d,0x5f,0xda,0x8e,0x4e,0x96,0xce,0x8d,0x3f,0xb8,0xc8,0xb9,0x11,0xd1,0x6b,0x65,0xa8,0xbf,0xf8,0xfe, + 0xde,0x14,0x21,0x0a,0x8d,0xf4,0x4b,0x05,0xee,0x66,0x75,0x8f,0x9a,0xf2,0x9c,0x54,0x5b,0xd1,0x2f,0xdc, + 0xe6,0xfe,0x65,0xf5,0xf0,0xe0,0xe1,0x3f,0x1e,0x5c,0xa8,0xe0,0x17,0x79,0x0c,0xa2,0x4e,0xe6,0xd7,0x2e, + 0xf3,0x6b,0xff,0x82,0xd0,0xa5,0x86,0x05,0x78,0xef,0x19,0x10,0xca,0xae,0x77,0x9e,0xbb,0x59,0x76,0x17, + 0xc5,0xda,0xbe,0x89,0x56,0x23,0xab,0x2a,0x68,0x90,0x09,0x2b,0xc7,0x70,0xf6,0xbd,0xf0,0x7d,0x3c,0xbd, + 0x7e,0x86,0x47,0x65,0x72,0x54,0xfe,0x41,0x84,0x4e,0x04,0xc3,0xd5,0xba,0xa7,0x24,0x1b,0xdf,0x7f,0x94, + 0xee,0x5c,0x42,0x09,0x1c,0xfc,0x52,0x04,0x0f,0xbe,0xb9,0x1f,0xdf,0x7f,0x44,0xa5,0x08,0x6b,0xe8,0x77, + 0x75,0x54,0xba,0xf2,0xce,0x0b,0x67,0xf0,0x7f,0x0e,0x0f,0x46,0x41,0xf4,0xcd,0x01,0x23,0xc2,0x2b,0x1b, + 0xf2,0x6e,0x56,0x65,0xd9,0xef,0x59,0x88,0x48,0xcb,0x0b,0x9b,0xe8,0xa2,0x8a,0x9b,0x8b,0xc0,0xd5,0x45, + 0x91,0xcc,0x45,0x0c,0xa3,0x2c,0xa5,0x18,0xb0,0xd1,0xcc,0x0d,0xe7,0xd0,0xd1,0xac,0xa8,0x57,0x8a,0x4b, + 0x38,0x75,0xad,0x82,0x3a,0x54,0x9d,0xf7,0xd4,0x7c,0x99,0xd6,0xde,0xb5,0x97,0xea,0xac,0x48,0x1e,0xec, + 0x87,0xbf,0x5c,0x47,0xb4,0x16,0xd7,0x45,0x32,0xed,0x0d,0x69,0x62,0xd7,0xed,0xcc,0x37,0x29,0xf0,0x6d, + 0x9b,0xc6,0x30,0x94,0xf8,0xb0,0x5c,0xc2,0x72,0xba,0x26,0x56,0x09,0x11,0x58,0x61,0xf2,0x7a,0x7c,0x67, + 0x95,0x3a,0xb6,0xcd,0x41,0xd4,0xfe,0x70,0xcf,0xe9,0x1d,0xe9,0xf3,0x8f,0xd4,0xbb,0x5f,0x9e,0x84,0x27, + 0x8f,0xf7,0xff,0x7d,0x8a,0x1e,0x1e,0xfd,0x61,0x0f,0x3f,0x16,0x2a,0xd8,0xbf,0x77,0x18,0xa0,0xda,0x97, + 0xe5,0xb5,0xa9,0x96,0xea,0xfa,0xb4,0x2d,0x93,0xb1,0x0a,0x78,0xf5,0xbe,0xad,0x2f,0xb2,0xb1,0x5c,0xd4, + 0x63,0xe2,0xeb,0x40,0x54,0xef,0x73,0x9c,0xf5,0x6a,0xdf,0x5c,0xa6,0x18,0xa8,0x7b,0x45,0x72,0x12,0x78, + 0x6b,0xe2,0x78,0xb8,0xc0,0x5c,0x79,0x18,0x9c,0xaa,0x37,0x28,0x25,0xf6,0x97,0x47,0x0c,0x63,0x94,0x29, + 0xc0,0x46,0x55,0xe8,0x0c,0x36,0xea,0x86,0x1c,0x5e,0x8c,0xbb,0x6d,0xfa,0x07,0x1d,0x9e,0xd2,0xde,0xb5, + 0x6b,0x32,0x9e,0x4a,0x24,0x62,0xb4,0x29,0x4f,0x9c,0xe7,0xee,0x68,0x46,0xba,0xff,0x26,0x37,0x08,0x89, + 0xcf,0xf9,0x94,0x3a,0xf5,0xac,0x48,0x6e,0x85,0x98,0x78,0x95,0x11,0xe1,0x4c,0xa0,0x46,0x05,0x2f,0x72, + 0x62,0x3e,0xfb,0x6e,0x58,0xad,0xf3,0x39,0x0c,0x33,0x88,0xae,0x27,0x28,0x9a,0xae,0x78,0x92,0x8e,0xf3, + 0x25,0x12,0xcc,0x75,0xbf,0x9c,0x99,0x55,0x10,0xed,0xc0,0xbe,0x0a,0xaf,0xdc,0xe6,0x77,0x72,0x0f,0x2c, + 0x7b,0x6f,0x28,0x50,0xf7,0xad,0x84,0xfc,0xa2,0xa0,0xc1,0x4c,0xf5,0xae,0x23,0x7a,0xe4,0x54,0x99,0xcb, + 0x1f,0x7b,0x3b,0xd2,0x0a,0x77,0x1f,0x7f,0x2a,0xbc,0x04,0xb8,0x72,0x49,0xca,0x87,0xe2,0x63,0x51,0x5e, + 0x17,0xba,0x52,0xa4,0x75,0xa2,0xe7,0xc7,0x17,0xaa,0x2f,0x38,0x7e,0xfc,0xbe,0x50,0xde,0x25,0x8c,0xf8, + 0xf0,0x6c,0x9e,0xcf,0xb2,0xc9,0xcd,0x64,0x9e,0xe1,0xde,0x69,0xea,0x53,0xb1,0x51,0x6f,0x09,0x22,0x4f, + 0xfe,0xe7,0x97,0xeb,0xe1,0xbd,0xd3,0x07,0xea,0x29,0x64,0x65,0x67,0xbc,0xb7,0xce,0xce,0x88,0x1c,0xbb, + 0xdd,0xa8,0x5f,0x29,0xc9,0x91,0xa9,0xf6,0x0a,0x3f,0xf1,0xec,0x51,0x2f,0xfa,0x73,0x7f,0xfa,0xf9,0x59, + 0x71,0x95,0x57,0x65,0xa1,0xef,0x43,0xdf,0x6d,0x25,0x40,0x92,0xc7,0x3d,0x55,0x2f,0x8b,0xe4,0x45,0x31, + 0x18,0xf4,0xe7,0xb6,0x01,0x5e,0x3d,0x2f,0x92,0x5f,0xa9,0xac,0x76,0x29,0x2a,0xd2,0xab,0xfc,0x02,0x9c, + 0xc2,0x70,0x45,0x13,0xf6,0xf8,0x82,0x2f,0x9c,0x6a,0x95,0x7f,0x5d,0x24,0xcf,0xa9,0xfc,0x83,0x45,0x9d, + 0x67,0x6b,0xc2,0x3d,0x53,0x2a,0xa2,0x6d,0xc2,0x9e,0x17,0x91,0x7a,0x25,0xd9,0xcf,0x3d,0x8f,0x46,0x94, + 0xdc,0xf9,0x7a,0x78,0x00,0xec,0xa6,0xde,0x6d,0xe7,0x67,0xd3,0x8b,0xec,0x01,0x67,0x3e,0xd9,0xce,0x24, + 0x38,0xa8,0xe8,0x9c,0x43,0x36,0x9d,0x66,0xe6,0x0d,0x57,0x6e,0x14,0xea,0x27,0xdd,0x95,0x7c,0x79,0x49, + 0x7b,0x6b,0x9d,0x2f,0xd3,0x29,0xfd,0x29,0xe9,0x4f,0x59,0xbb,0x2e,0xc1,0xa9,0xbd,0xac,0xf5,0x27,0x3f, + 0x16,0x49,0xc8,0xdf,0x4c,0x2e,0x2b,0x22,0x51,0x7e,0x79,0xf0,0xcb,0x74,0xcf,0xeb,0xfd,0xed,0x66,0xc8, + 0x37,0x0d,0x47,0xea,0x3b,0x28,0xb1,0x41,0x55,0xfd,0x5a,0x70,0x94,0x4d,0x60,0xe5,0x0f,0x6c,0x0f,0xd1, + 0x7f,0x2d,0xf3,0x07,0xc2,0x27,0x3a,0x46,0x43,0xa0,0x6e,0x71,0xad,0xb3,0x47,0x09,0xa3,0xb2,0x83,0x0d, + 0xe1,0x16,0x3d,0xcb,0xdb,0x31,0x01,0xd1,0x83,0x7d,0xfb,0x3d,0x43,0xfd,0x87,0x22,0xf2,0xdc,0xce,0xd1, + 0xfe,0xef,0x85,0xfa,0xa1,0x50,0xbf,0x79,0x28,0xa8,0x43,0x0b,0xd0,0x18,0x7f,0x87,0x61,0xcd,0xef,0xd4, + 0x1e,0x16,0xb5,0x0f,0x86,0x2e,0xe6,0xe5,0x79,0x3a,0x07,0x4d,0xca,0x88,0x0a,0xf3,0x22,0x49,0xc0,0xfd, + 0xe0,0x05,0x87,0x59,0x71,0x35,0xfc,0xf1,0xc3,0xb3,0xb3,0x67,0xaf,0x7f,0x8c,0xd4,0xef,0x04,0xcb,0xdf, + 0xb7,0x40,0xe4,0xec,0x0c,0x99,0x4f,0x9f,0xfd,0x78,0xfc,0xe6,0xcd,0xcb,0xf7,0x67,0xdf,0xbe,0x7c,0xf3, + 0xe4,0xf1,0xcb,0xb3,0xef,0xde,0xbc,0xf9,0xe1,0xec,0x4c,0x7d,0xdb,0x0f,0xb8,0xef,0x6f,0x16,0xe7,0x25, + 0x35,0xfa,0x31,0x94,0xa7,0xa8,0xbf,0x6f,0xfa,0x7a,0x66,0x94,0xeb,0xdc,0xd4,0x1c,0x8d,0x7e,0xb8,0xa3, + 0xe6,0x8c,0x8b,0xd3,0x4f,0x34,0x7e,0xdf,0x9e,0x75,0x8f,0xff,0xd6,0xc1,0xf4,0x71,0xc9,0x76,0x0f,0xc2, + 0xb0,0x21,0xb6,0xdb,0xc7,0x5f,0x0f,0xa6,0xdf,0xe5,0xa0,0x2d,0xba,0x2a,0x28,0x3b,0x95,0xff,0x0d,0x2d, + 0x6b,0xeb,0x1b,0xaf,0x20,0xd6,0xbf,0x55,0x96,0x90,0x45,0x5a,0xf9,0x0b,0xf9,0xd9,0x0e,0xaa,0x6c,0xa3, + 0x4d,0x0d,0x7e,0x2e,0x92,0x0b,0xf5,0x6f,0x30,0x04,0xff,0x2a,0xb6,0x3e,0xcf,0xa7,0xc9,0xbf,0x89,0x6e, + 0xd3,0xd7,0x42,0xae,0xce,0xa1,0xc6,0xdf,0x8c,0xfe,0x55,0xb4,0xfb,0xf8,0x7e,0x75,0xde,0xd3,0x4d,0x2a, + 0xad,0xe3,0x0d,0x52,0x73,0xad,0x4f,0xc4,0x15,0xb2,0xfb,0xd5,0x2a,0xb4,0xdf,0xa9,0xad,0x4f,0xe4,0x52, + 0x70,0xbf,0x7f,0xde,0x9d,0xe1,0xf6,0x11,0x9d,0x79,0x9a,0x2d,0x45,0xde,0xde,0xa9,0xa1,0x28,0x1b,0x22, + 0xac,0xfb,0xef,0x05,0x74,0x1d,0xb6,0x02,0x57,0xb6,0x93,0xca,0xba,0x76,0x52,0x7c,0xf1,0xfd,0xca,0xde, + 0x12,0x68,0x1b,0x66,0xc3,0x7d,0x9e,0xce,0x7f,0x16,0x88,0x0c,0x9d,0x55,0x9d,0x23,0xdf,0x19,0x65,0xe9, + 0xe9,0x81,0x33,0x8f,0xbe,0xd0,0x93,0xaf,0xb3,0xea,0xde,0xe7,0xa9,0x6f,0xea,0xe4,0x4b,0xb1,0xf4,0xdd, + 0x9e,0xd9,0x7c,0x61,0x2e,0xf6,0x2c,0x6a,0x73,0x23,0x89,0x7c,0xa5,0x6f,0xcf,0x2a,0xe5,0xd5,0x5d,0xa7, + 0xe5,0x17,0x72,0xd7,0x6a,0xb5,0x53,0xcd,0x1d,0x98,0x7e,0x2a,0x9b,0x31,0xc2,0xe0,0x18,0x54,0x9e,0x6e, + 0xa2,0x6d,0x78,0x6b,0x2e,0xf1,0xdc,0x32,0x71,0x6e,0xd5,0xa3,0xaf,0x23,0xf5,0x93,0xaa,0x14,0x0e,0x1c, + 0xfa,0x1e,0x52,0x7b,0x45,0xac,0x4d,0x70,0x9e,0x65,0xac,0x55,0x91,0x44,0x13,0x81,0xdd,0x15,0x3b,0x9a, + 0x53,0xa3,0x53,0x2f,0x81,0x6f,0x95,0x35,0xaf,0xad,0x70,0xe6,0xb5,0x97,0xc6,0xb7,0xe9,0xf9,0xbd,0xd9, + 0x8e,0x87,0x0e,0x53,0x23,0xd5,0x54,0xc9,0x2d,0x2f,0x45,0x8c,0x70,0x7e,0xb3,0xfc,0x62,0xc5,0x37,0xb2, + 0xc7,0x40,0xba,0xa3,0x46,0x87,0x2c,0x81,0xf5,0x6f,0x0f,0xe6,0xec,0x9f,0x96,0x8d,0xea,0x43,0xf3,0x44, + 0xf9,0x84,0x59,0xe5,0xa0,0x94,0x1a,0xd6,0x7a,0xbd,0xce,0x85,0x2b,0x06,0x1b,0xf3,0xf5,0x1c,0x1c,0x81, + 0x45,0xd8,0x2c,0xb9,0x10,0xc7,0x99,0xd4,0xf1,0xaa,0x23,0x2a,0x8f,0x37,0x69,0x34,0xd4,0x8d,0xaa,0xaa, + 0xa4,0x73,0x81,0x90,0xca,0xab,0x0e,0x6a,0xa8,0xa8,0xf1,0x93,0x00,0x7b,0x36,0x40,0xf4,0xee,0xa5,0x67, + 0xaf,0xa1,0xe3,0xbd,0x21,0x85,0xe3,0x97,0xe1,0xa1,0x84,0x6b,0x5b,0x50,0xc1,0xb9,0xa0,0xce,0x60,0xc6, + 0xd1,0x63,0xce,0xa7,0x8d,0x01,0x2b,0x98,0x11,0x1c,0x87,0x79,0xa5,0xb2,0xfe,0x58,0xe0,0x27,0xb8,0x10, + 0xcd,0x86,0x36,0xb2,0x32,0x89,0xfd,0xfd,0x51,0xc4,0x77,0xf9,0xda,0x2c,0x6b,0x93,0x8e,0xa0,0xf8,0xda, + 0xcd,0x15,0x33,0x0e,0x2f,0x12,0x7d,0x0f,0xb9,0x04,0xbf,0x18,0xe9,0x08,0x9d,0x99,0x44,0xe8,0x94,0x61, + 0xc5,0xfc,0x68,0x06,0x13,0x23,0x34,0xbd,0x0b,0x98,0x69,0x86,0x86,0x64,0x8d,0x08,0x1e,0x5a,0x54,0x9e, + 0x43,0x1e,0x53,0x9e,0xf3,0x19,0x67,0x2e,0x02,0x57,0x29,0xf0,0x92,0xc6,0x2c,0xb0,0xa7,0x02,0xe7,0x21, + 0x46,0xd9,0x76,0x6a,0x09,0x46,0x3c,0xae,0x87,0x69,0x41,0x9a,0x06,0xfa,0x94,0x20,0xac,0xbe,0x2c,0x57, + 0xf3,0x29,0xed,0x55,0x9a,0xc1,0x06,0xb0,0xa5,0xea,0x6a,0x1b,0x91,0x4a,0x78,0x15,0x83,0x2b,0xb2,0x25, + 0xaf,0xf9,0xbf,0x34,0x7e,0xb8,0x5a,0xb0,0xa3,0x31,0x61,0xab,0xe3,0x50,0x2e,0x8a,0xa6,0xa1,0x07,0xfa, + 0xb2,0xe9,0xad,0xc8,0x28,0x61,0xf8,0xb4,0x2d,0x11,0x92,0x18,0x8c,0x96,0x92,0x4c,0x9a,0x4d,0xdc,0xcd, + 0xf6,0x6e,0x8d,0xee,0xd5,0x08,0x69,0x87,0x5f,0xac,0xcb,0xb1,0x68,0x7b,0x10,0xb6,0x9a,0x68,0x93,0x10, + 0x10,0xa6,0xca,0x4a,0x5f,0xea,0xdb,0x9a,0xbb,0x0c,0xe1,0x40,0x91,0x7a,0x9d,0xce,0x3f,0xe2,0x80,0x18, + 0xd5,0xde,0x2e,0xe0,0xd4,0x3b,0x2e,0xcd,0xf2,0x25,0xe5,0x59,0xa4,0x65,0x0c,0x8d,0x2f,0x63,0xb8,0x87, + 0x9e,0x23,0x20,0x3c,0x21,0x6b,0xfa,0xa1,0xbe,0xa8,0x56,0xe5,0x7e,0x47,0xee,0xba,0x99,0xab,0x0f,0xf7, + 0x3f,0x96,0xeb,0xb8,0xe4,0xf6,0xe3,0x49,0x85,0x6b,0xb0,0x7a,0x59,0x99,0xd1,0x44,0x02,0xb3,0xdc,0xc1, + 0xf4,0xed,0x14,0xe3,0xa7,0x3a,0x25,0x6e,0x7c,0xbf,0x57,0x4b,0x81,0x34,0xe3,0x2c,0x7e,0x2a,0x52,0x1c, + 0xe2,0xe2,0x7a,0xb7,0xd5,0x04,0x1b,0x2a,0xf9,0x95,0x08,0xc0,0x7b,0x77,0x17,0xd8,0x0b,0xea,0xe0,0x34, + 0x79,0x41,0x85,0xa8,0x47,0x4c,0x85,0x6e,0x1d,0x4a,0xa2,0x2b,0x26,0xbc,0xf2,0x23,0x9b,0x4f,0xdb,0xbb, + 0xf4,0x1a,0x93,0xd4,0xd8,0x24,0x6b,0xdf,0xb6,0xd3,0x46,0x1a,0xd9,0x7a,0xdd,0x13,0x3e,0xbf,0xd1,0x66, + 0x8c,0x44,0xde,0x5e,0xc1,0xa6,0x2e,0x6a,0xfb,0x8b,0x34,0x46,0xf2,0x09,0x6f,0x11,0x28,0x45,0xe0,0x34, + 0x92,0x12,0x03,0xd2,0xbd,0xf0,0x8f,0xf5,0x88,0x27,0xe9,0x69,0xc4,0x77,0x28,0x25,0xe9,0x38,0x35,0x4e, + 0xef,0x75,0xd4,0xb9,0x11,0xaf,0x8e,0xc6,0xc4,0xc9,0xd5,0xa7,0x76,0xc7,0x6e,0x30,0x6e,0x09,0x77,0x4a, + 0x0f,0x8b,0xac,0xb9,0x2c,0xa7,0xfc,0x28,0xd7,0x5d,0xe3,0x69,0xa2,0xa3,0x1d,0xf4,0x4f,0xcc,0xf6,0x70, + 0xfa,0xae,0x0d,0x30,0x04,0x33,0x0f,0x53,0x35,0x30,0x91,0xcc,0xd9,0xe2,0xc1,0xb4,0x7f,0x45,0x2c,0x4d, + 0xf2,0x54,0xd4,0xa5,0x95,0x5a,0x55,0x6a,0xd6,0x55,0xd6,0x76,0x69,0x6e,0x40,0x00,0xe1,0xec,0x29,0x2e, + 0xb7,0x22,0xde,0x17,0xe7,0x1a,0xc7,0x91,0x63,0xf3,0x99,0x1e,0x9a,0x95,0xa8,0x3c,0x1b,0x50,0x1c,0xc4, + 0xab,0xff,0x1e,0x45,0xab,0x16,0x59,0xe8,0xe7,0x85,0xdf,0x21,0xa2,0xb8,0x31,0xe4,0x73,0x15,0x5b,0xb7, + 0xc2,0x57,0x44,0xbe,0xa7,0x17,0xd9,0xd1,0x65,0x5a,0x14,0xd9,0x7c,0xbd,0xde,0xfd,0x18,0xb6,0x93,0x40, + 0x77,0x9b,0x3b,0x9a,0xda,0x39,0x84,0xd6,0xea,0xa6,0x5a,0xe1,0x0c,0xe6,0x6b,0x9b,0xda,0xb9,0x56,0xce, + 0x14,0xf6,0xf4,0xcf,0x38,0x00,0x7e,0x07,0x67,0x3f,0x67,0x5b,0x72,0x55,0x31,0xea,0x6b,0x57,0xa4,0x16, + 0x55,0x72,0x45,0xd3,0x4c,0x87,0xd1,0xc3,0x91,0x7e,0x38,0x1c,0x82,0x43,0xe5,0x52,0xc9,0x77,0xaa,0x5d, + 0xfd,0x02,0x45,0xea,0x46,0x57,0x02,0x61,0xcf,0xe6,0x8e,0x49,0x25,0x9c,0xbd,0xc8,0x6b,0x9e,0x4f,0xfd, + 0xa8,0x2d,0x7c,0x2f,0xaa,0x44,0x27,0x98,0x8b,0x80,0x89,0x94,0x9e,0xb7,0x5a,0xb9,0xa8,0xe4,0x56,0xe5, + 0xef,0x22,0xe2,0x29,0x5b,0x4e,0x8d,0x17,0x26,0x6c,0x32,0x7d,0xb0,0xaa,0x18,0x28,0x6e,0x2a,0x75,0x2e, + 0x43,0x23,0x66,0xec,0xac,0xea,0x08,0x9a,0xb4,0x38,0x75,0x10,0xd8,0x80,0xd4,0x2c,0xbc,0x22,0x0c,0x15, + 0xfc,0x3f,0xb6,0x5a,0xcf,0x00,0x2e,0x56,0x76,0x15,0x67,0x91,0x57,0xa8,0x42,0xb8,0x5b,0x29,0x54,0xdc, + 0x55,0xc8,0xd8,0xda,0xb1,0x3a,0x3e,0x4b,0xaa,0x56,0x39,0x05,0xc3,0x08,0x08,0x36,0xb7,0xe2,0x06,0x36, + 0xcc,0x7e,0x56,0x72,0x1b,0xd5,0x31,0x43,0xea,0x47,0xfe,0x7b,0xc4,0xc1,0xa4,0x3e,0x31,0xd4,0xbe,0xe7, + 0xbf,0x8f,0x71,0x76,0xdc,0xc3,0x9f,0x37,0x7d,0x74,0xb1,0x39,0xe7,0x16,0x88,0xff,0xce,0x9e,0x11,0x67, + 0x8c,0xad,0x88,0x16,0x93,0x73,0xcc,0x25,0x18,0x9b,0x61,0x4e,0xae,0xc6,0xa1,0x3e,0x13,0xe9,0x50,0xdc, + 0xdd,0xad,0xf8,0x41,0x0e,0x1b,0xc8,0x1a,0x38,0x09,0x0f,0x92,0x84,0x78,0x68,0x9c,0x84,0x07,0xcd,0xd0, + 0x10,0xe5,0xc7,0x49,0x78,0xd0,0x07,0x12,0x57,0xe6,0xea,0x70,0x9f,0x7a,0x5f,0x68,0x2a,0x73,0x72,0x6e, + 0xa8,0x74,0x62,0x93,0xf6,0xf6,0xee,0xe9,0x86,0x24,0xd6,0x9b,0xa5,0x5e,0xa7,0x39,0x9d,0xfb,0xae,0x1e, + 0x7b,0x8c,0x83,0x95,0xd2,0xc4,0x7c,0x76,0xfd,0xd4,0x7f,0xa7,0xcc,0x17,0x84,0xa8,0x34,0x40,0x78,0x45, + 0xba,0xa9,0x4e,0x83,0x00,0x71,0x7b,0x4f,0x04,0x85,0x66,0xcc,0xe5,0x88,0x06,0x69,0x30,0x96,0x38,0xf4, + 0x5f,0x3b,0x3e,0x3f,0xbb,0x6f,0x0b,0x11,0x5b,0x18,0x30,0x87,0xc3,0x9a,0x0e,0xc4,0x32,0x0c,0xdc,0x15, + 0x97,0x3d,0x07,0x66,0xcf,0x21,0xdc,0x42,0x9f,0xa3,0x2c,0xd1,0x67,0xb1,0xbb,0x7b,0x6a,0xc3,0xae,0x57, + 0x5e,0x7f,0x70,0xff,0x5f,0x5f,0xef,0x22,0x38,0xee,0x2b,0x8f,0x12,0xb2,0x53,0x69,0x4c,0xcc,0xcc,0x67, + 0x08,0x8f,0xf3,0xc6,0x3f,0xe9,0x3b,0xf4,0xb9,0x7c,0xaa,0x3c,0xc6,0xf1,0x9f,0x3a,0xd6,0x90,0x4d,0x8a, + 0x3c,0x96,0x4e,0x2e,0xab,0x66,0x28,0x4d,0x34,0x80,0x72,0x58,0xbf,0x26,0xf1,0xfa,0xa9,0xaf,0xa2,0x53, + 0x56,0xb4,0x62,0x8c,0xc1,0x0d,0x04,0x45,0xcd,0x65,0x55,0x5e,0xd3,0x01,0xf2,0x84,0xb5,0xda,0xf7,0xe5, + 0xb3,0x1d,0x9a,0xba,0x1d,0x0d,0xd3,0x3b,0x88,0x98,0xdb,0x5e,0x4e,0x58,0xa4,0x44,0x1b,0xc2,0x47,0x54, + 0xf9,0xcd,0xad,0x85,0xcb,0xc1,0xe0,0xf7,0xb0,0xd5,0x45,0xf4,0xbf,0x5c,0x86,0x7a,0x7a,0x20,0x01,0x28, + 0x56,0x4b,0xc0,0x92,0x8b,0xd6,0x47,0xc7,0x48,0x6b,0x4e,0x84,0x43,0xee,0x71,0xd8,0xc9,0x08,0x8a,0x47, + 0x6d,0x60,0x83,0xcc,0x22,0x84,0x49,0x5c,0xd8,0x49,0x97,0xa8,0x64,0x2d,0xe8,0x35,0xac,0xbe,0x0f,0xc2, + 0xf6,0x7b,0x23,0x25,0x90,0x8d,0x1b,0x75,0xba,0xe4,0xf5,0xfb,0x33,0xec,0x39,0xb6,0x8c,0x81,0xb0,0x0c, + 0x7c,0x81,0xee,0xb7,0xcd,0x04,0x8b,0xd1,0xd7,0x7f,0x1a,0x17,0x2e,0x6b,0x70,0x52,0x07,0x2d,0x1e,0xd0, + 0xae,0x19,0xae,0xbb,0x23,0x7f,0xf7,0xb5,0x6b,0xda,0xda,0x85,0x9d,0x04,0x91,0xbe,0x84,0x91,0x72,0x15, + 0xd6,0xde,0x4e,0xf7,0x27,0xaa,0xbd,0xe7,0x8b,0xf6,0x24,0x9a,0x08,0x98,0x9d,0x19,0x12,0x89,0xc3,0x96, + 0x74,0x86,0x37,0x81,0x87,0x64,0x76,0xf5,0x5e,0x00,0x96,0x92,0xf4,0x6a,0x45,0x85,0xe3,0x3b,0x16,0x5b, + 0x47,0xb9,0x4e,0x92,0x23,0x5c,0x48,0xcd,0x70,0xcb,0x4f,0x40,0x5d,0xef,0x5b,0xa6,0x7f,0xc7,0x95,0xb5, + 0x46,0x1c,0x15,0xdf,0x3c,0xae,0x06,0x83,0xe3,0x8a,0x2f,0x60,0x9b,0x7e,0xc3,0x35,0x45,0x05,0x2d,0x08, + 0x15,0xd2,0xb1,0xad,0x8b,0xbd,0x43,0x75,0x00,0x19,0x0e,0x1f,0x74,0xc7,0xe6,0x9e,0xcc,0x68,0xf4,0x09, + 0xbb,0x1c,0x27,0xc3,0x81,0xfa,0x10,0x22,0x46,0x22,0xb0,0x80,0xc8,0x6a,0x5a,0xe3,0xa5,0x6e,0xfb,0x83, + 0x85,0xb1,0xba,0xc3,0xac,0x26,0x86,0x8a,0xdb,0xf6,0x6c,0x6b,0xb4,0xab,0xe5,0x68,0x8c,0x24,0xd6,0xeb, + 0x9c,0x2f,0xc2,0xb3,0x5b,0xa7,0x05,0x2d,0xe2,0x03,0x6a,0x6a,0x6d,0xf1,0x57,0xb2,0x65,0x2b,0xbd,0xe9, + 0x26,0xe7,0xb2,0xbf,0xf5,0xf6,0x67,0x5b,0x57,0x27,0x42,0x7d,0x12,0x66,0x86,0x09,0x53,0xf7,0x8d,0xa5, + 0xc6,0x9f,0xda,0xd9,0x72,0xf1,0xfa,0x9d,0x2d,0x6c,0x3a,0xd3,0x91,0xa1,0x8b,0x7d,0x00,0xe0,0x21,0x44, + 0x9e,0x08,0xff,0xc4,0x81,0x18,0xa3,0x55,0xcb,0xb6,0x08,0xed,0x8f,0x76,0x98,0xbf,0xb5,0xf4,0xe7,0x61, + 0x77,0xa9,0x1a,0x82,0xfb,0x69,0x79,0xfd,0xd9,0xf5,0xd2,0x83,0x43,0x18,0xa1,0x27,0x19,0xd1,0x7c,0x4f, + 0x8d,0xee,0x68,0xbd,0x5e,0x85,0x36,0xd3,0x1c,0xf1,0xc2,0xbc,0x8e,0xfe,0x52,0xe7,0x3a,0x7b,0x7b,0xd4, + 0x3a,0x88,0x0f,0x37,0xc2,0xb3,0x3d,0x23,0xc2,0x24,0x2b,0x56,0x8b,0xcc,0xc8,0x72,0x54,0x47,0xb6,0x03, + 0x85,0x4d,0x7c,0xa1,0x6a,0xfc,0xdd,0xa8,0xb7,0x54,0x1c,0x3b,0x0c,0x8c,0xf9,0xe8,0x53,0x16,0xbe,0xf7, + 0xa4,0xad,0xc2,0xe5,0x3f,0xa5,0x12,0x08,0x2a,0xe0,0xf3,0xcc,0x9a,0xa2,0xe1,0xe3,0xaf,0x3f,0x66,0x40, + 0x4f,0x50,0x80,0xbc,0xb6,0x53,0x12,0xf5,0x85,0x0d,0x48,0x5a,0x0d,0xb8,0xcb,0xbe,0x93,0xdb,0x33,0x96, + 0xf3,0x48,0x69,0x8c,0x40,0xfb,0x32,0x5f,0x57,0x4a,0x3b,0xec,0xff,0x58,0xb0,0x4a,0xda,0xbc,0x3e,0x9b, + 0x2f,0xe2,0x4a,0x38,0x36,0x22,0x35,0xb3,0x19,0xde,0x73,0x79,0xdf,0xb0,0xbb,0x28,0x3b,0x98,0xb7,0xed, + 0x7b,0x5c,0x8c,0x10,0xb9,0xb8,0x46,0x1b,0xf6,0x24,0x13,0xfd,0xa0,0xea,0xae,0x2d,0x0f,0x65,0x75,0x52, + 0x08,0x33,0x42,0x52,0xb5,0xed,0xbf,0x8f,0x88,0x06,0xc4,0xba,0xc1,0xcf,0x2e,0x1a,0xde,0x63,0x45,0x64, + 0x08,0x52,0x35,0xa3,0x8e,0x69,0x41,0x9d,0x77,0x61,0x93,0xee,0x1f,0x42,0x03,0x3c,0x9e,0x5b,0x5c,0x80, + 0x08,0xa2,0x4f,0x01,0x94,0x19,0x87,0x72,0x08,0x4b,0x55,0xd2,0x26,0x52,0xe6,0x3d,0x6e,0x33,0x5b,0xc6, + 0x25,0x6f,0x2b,0xd0,0xc2,0x6e,0x1f,0x69,0x2a,0xf5,0xef,0xee,0x86,0x39,0xd6,0xce,0x44,0x4e,0x18,0x9e, + 0xc9,0xd0,0x8f,0xb4,0xb8,0x76,0xbd,0x36,0xe1,0x59,0x9d,0x69,0x1f,0x97,0xf7,0xde,0xf9,0xa6,0x05,0x6d, + 0x17,0xe9,0xea,0xf1,0x56,0x29,0xa9,0x88,0xd2,0x95,0xf0,0x5c,0xfc,0x78,0xa6,0x2f,0xe5,0x0e,0xcd,0xa3, + 0x11,0xa7,0xf2,0x45,0x4f,0x77,0x75,0x25,0xc9,0x91,0x29,0x17,0x73,0x98,0x1b,0x8e,0xda,0xd7,0x9c,0x5d, + 0xe1,0x9e,0x8d,0x7b,0x73,0x63,0xbe,0x84,0x5b,0x04,0x28,0xa9,0x81,0x71,0x8b,0xad,0x54,0x4c,0x2e,0x6f, + 0xd3,0x6a,0xd8,0x12,0x52,0x19,0xf3,0x60,0x61,0xde,0x11,0x14,0x07,0xe5,0xd8,0xe5,0xc4,0x1b,0x12,0xa5, + 0x41,0xc5,0x82,0xf0,0xd8,0x88,0x84,0x38,0x9a,0x3c,0xb2,0x5b,0x77,0xe2,0x2e,0xc2,0xae,0x4f,0x26,0xc4, + 0xf3,0xe3,0x8e,0xf6,0xd7,0xe1,0x5c,0x75,0xdb,0x96,0x1b,0xff,0xb6,0xdb,0x3f,0xd8,0x2a,0xf9,0x94,0xc5, + 0xe7,0x1b,0x67,0xdd,0xbc,0x4a,0xb6,0x27,0xd8,0xc5,0xad,0xf8,0x4c,0x1e,0x2e,0x2c,0x92,0x7b,0x2c,0x57, + 0xd1,0xa6,0xe4,0x89,0xbf,0x07,0xcb,0x06,0x9a,0x48,0xdc,0xbb,0xe8,0x85,0xf2,0xa6,0x0c,0x9a,0x86,0x89, + 0x56,0x94,0xb3,0x17,0x7d,0xd3,0xb3,0x6d,0x7b,0xb6,0xb2,0xf2,0xc2,0x6c,0xd0,0xb3,0x5d,0x05,0x40,0x9c, + 0x8b,0xe0,0xb1,0x51,0x12,0x3a,0xac,0xf7,0xe8,0x36,0xf7,0xef,0x15,0x7d,0xf5,0x8f,0x8a,0x56,0xb4,0xb6, + 0xd0,0x7f,0xc5,0xec,0x71,0x74,0x06,0xab,0xf0,0x67,0x03,0xb7,0xf6,0x96,0xe2,0x8b,0xa5,0xdd,0x37,0x63, + 0xbe,0xc7,0xa9,0xc2,0xb5,0xd1,0x16,0x9f,0x12,0xa3,0x27,0x47,0x7a,0x15,0x45,0x71,0x8d,0x0a,0x77,0x0f, + 0x74,0x30,0xaa,0x6a,0xa3,0xb4,0x65,0xc0,0x1d,0x5d,0xef,0x76,0xb7,0x69,0x61,0x3f,0x76,0x1b,0x6d,0xf7, + 0xc7,0xca,0x2b,0xc5,0xea,0x55,0x50,0x6b,0x58,0x48,0x37,0xc5,0xf2,0xe1,0x45,0xe1,0x78,0xae,0x14,0x31, + 0x62,0x99,0xde,0xb3,0x3d,0x8e,0x10,0x50,0xd3,0xeb,0xff,0xc1,0xc8,0x93,0x69,0x8e,0x2a,0x62,0x5c,0xee, + 0x75,0xef,0x6c,0x87,0x64,0x13,0x37,0x80,0xda,0x0c,0xdc,0xf4,0x38,0x9a,0xa0,0x07,0x2d,0x0b,0x07,0x09, + 0xbb,0x4f,0xa3,0x8f,0x1b,0xef,0x9a,0x66,0x20,0x9f,0x5f,0xab,0x96,0xa8,0xf2,0x29,0xed,0xd9,0x17,0x55, + 0x72,0xa8,0x5e,0x56,0xc9,0x43,0xf5,0x1c,0x0d,0xbf,0xf5,0xb5,0x77,0x7c,0x2b,0xf7,0xb6,0xec,0xf7,0x6c, + 0x45,0xac,0xe5,0xf3,0xca,0x68,0xe0,0x68,0xaa,0x7e,0x5c,0xf1,0x30,0x25,0x62,0x9c,0x87,0xfc,0xc7,0x7d, + 0x48,0xce,0xc1,0x7a,0x47,0x72,0xc5,0x40,0x64,0xc4,0x33,0xd6,0xbc,0x93,0xc3,0x90,0xf8,0x18,0x69,0x64, + 0x22,0x46,0x50,0xba,0x3c,0xa8,0xa2,0x8b,0xb2,0x6c,0x02,0x1d,0x25,0xee,0x73,0x7a,0x41,0x8e,0x9c,0x30, + 0x48,0x96,0x27,0x2d,0x46,0xeb,0xb9,0xfe,0xd1,0xdb,0x16,0x49,0xde,0xda,0x22,0x5b,0xbb,0x34,0xf7,0x76, + 0x4d,0xb1,0x8d,0xfe,0xec,0x2e,0x42,0xa6,0x6d,0xe7,0x38,0xbd,0x90,0x3b,0x7d,0x55,0xa3,0x8f,0x2d,0x0e, + 0x35,0xab,0x8f,0x32,0x93,0xa6,0xb6,0x1c,0x05,0x93,0x2d,0xc7,0x9c,0x48,0x68,0x56,0x42,0x4f,0x42,0x6d, + 0xdf,0x73,0x97,0xb5,0x3f,0xcb,0x42,0xa3,0x8f,0x33,0x93,0x4b,0x1b,0x8c,0x43,0x79,0x8b,0xc8,0x42,0x56, + 0x51,0xda,0x7a,0x5b,0x95,0x9f,0x44,0x30,0xa0,0x93,0xeb,0x6c,0x3e,0x93,0xf7,0xbe,0xad,0x63,0x2f,0xfe, + 0x2c,0xec,0x62,0x30,0x05,0x8f,0x50,0x98,0x36,0x14,0x90,0x0e,0x17,0x5a,0x38,0x1c,0x67,0x72,0x06,0x03, + 0x4a,0x34,0xf1,0x1e,0x61,0x0b,0x6b,0x5e,0x0a,0x0f,0xfa,0x8d,0xba,0x36,0x33,0xb9,0x7c,0x25,0xd3,0xbd, + 0xaa,0x2c,0xe9,0x69,0x5c,0xc8,0x13,0x11,0x13,0x99,0xfb,0x86,0xb5,0x9d,0x72,0xe1,0x33,0xc4,0x3e,0x9e, + 0xec,0x86,0x69,0x8c,0xcc,0xdb,0x78,0x26,0xa1,0xbb,0x69,0x0f,0xb9,0x94,0x43,0x52,0xfa,0xdd,0x22,0x05, + 0x9b,0xd2,0x26,0x1e,0x41,0xd8,0x69,0x49,0x90,0x3f,0x5f,0x54,0x52,0xdf,0x77,0xd4,0x67,0xc9,0x43,0xb9, + 0xc4,0x14,0xc2,0xaa,0x86,0xed,0x25,0x12,0x1d,0x0d,0xad,0xf9,0xec,0x91,0x81,0xc9,0x93,0x7b,0xba,0xee, + 0x68,0x50,0xce,0x6c,0x33,0x3e,0x81,0x97,0xe3,0x2a,0xcb,0x6a,0xa7,0x17,0xee,0x2c,0xa1,0x3d,0xe8,0xdb, + 0x1b,0x8e,0x76,0x60,0x81,0x95,0x32,0x11,0x38,0xfd,0x03,0xa8,0xe9,0x82,0xba,0x5c,0xf8,0xe8,0x93,0x18, + 0x09,0x1f,0xed,0x67,0x93,0x96,0xb9,0xb7,0xf2,0xaf,0xbb,0x7e,0xe3,0x5d,0x04,0x8b,0x08,0x11,0x1b,0x5e, + 0x4b,0xdf,0x06,0xf1,0xcf,0x7e,0x7b,0xa0,0x35,0x21,0xb9,0xf4,0x98,0x43,0xe6,0x43,0xf5,0x12,0x08,0xed, + 0x11,0x40,0x94,0x97,0x7b,0x24,0x87,0x04,0xdc,0x92,0x12,0x76,0xff,0x06,0xaa,0xd9,0x9a,0x6e,0x57,0xda, + 0xcc,0xf6,0x44,0xb6,0x95,0x6a,0x9b,0xb3,0xf5,0x04,0x65,0x49,0x2e,0x33,0x9f,0xb8,0x12,0x39,0x3f,0x94, + 0x0f,0xf0,0x71,0xe9,0xa1,0x65,0x94,0x8f,0xa2,0x9b,0x9e,0x18,0xe5,0x74,0xdc,0xdc,0x63,0x82,0xa0,0x91, + 0x00,0xb9,0xaa,0x87,0x20,0xb9,0x0b,0x28,0x0c,0x3f,0x03,0x47,0xfb,0x2e,0x04,0x8c,0x1a,0xe3,0xf1,0xf2, + 0x79,0xb4,0xed,0x10,0x21,0x23,0x91,0xca,0x92,0x5c,0x3a,0x5e,0x7f,0x0f,0xd5,0x85,0x0d,0x59,0x22,0xe8, + 0x90,0xd9,0xe0,0x5b,0x5d,0x2e,0xb5,0xeb,0x9a,0x6d,0xba,0xc4,0xbd,0x54,0xbc,0xf7,0x4b,0x13,0x7e,0xf7, + 0x35,0x0c,0xa7,0x69,0xdc,0x34,0x77,0xf7,0x42,0x8e,0x27,0x12,0x29,0xd6,0xdc,0x10,0x36,0x5b,0x65,0xac, + 0x6a,0xe4,0x7e,0x04,0x20,0xb5,0x3b,0x71,0x04,0xa2,0x14,0xee,0xf6,0x3d,0x33,0xc5,0xce,0x4f,0x9a,0xb4, + 0x84,0x59,0xb6,0x68,0x64,0xba,0x73,0xd0,0x1d,0xbd,0x0b,0x88,0x23,0xb5,0xf3,0x6d,0x2e,0x22,0xb8,0xc0, + 0xaa,0x8c,0x2f,0xe2,0x65,0x28,0xfa,0x3e,0xb9,0xf3,0xd9,0xd4,0x8b,0x26,0x00,0x95,0xe3,0xcf,0x61,0x53, + 0x81,0xdb,0x32,0x44,0xda,0x19,0x6b,0xed,0x7a,0xc5,0xa8,0xed,0x1e,0x7a,0xe6,0xc1,0x99,0x66,0xdf,0x5b, + 0x82,0x01,0x9d,0xc7,0xf2,0x01,0xc5,0x46,0x9c,0x21,0xae,0xd9,0xba,0xdd,0xc8,0x25,0x3d,0x74,0x6e,0xf0, + 0x1d,0xcf,0x90,0xab,0xf1,0xa5,0x6c,0x4e,0xd0,0xd2,0x86,0x47,0x5e,0xef,0x0e,0x59,0x9c,0x27,0x3e,0x84, + 0xeb,0xa1,0x2a,0x1b,0x91,0x71,0x94,0x5b,0xd1,0x58,0x9a,0x14,0x27,0xf9,0x29,0x5c,0xcd,0x66,0xb4,0x82, + 0xb8,0xa3,0xf5,0x9a,0x6f,0x6a,0xd5,0xcb,0x87,0x6e,0x05,0xb8,0x27,0xfb,0xb1,0x50,0x30,0xe0,0xc0,0xe2, + 0xc7,0xa1,0x99,0x06,0x82,0x2f,0xec,0xd7,0xc6,0xaa,0xc8,0xee,0x02,0xd5,0x33,0x53,0xe0,0x27,0x03,0xef, + 0x7d,0x78,0xb7,0x4a,0x7e,0x43,0xa8,0xf4,0x56,0xf4,0x8d,0xc6,0x70,0x57,0x0d,0xee,0x8e,0xe9,0x9d,0xf9, + 0x72,0x5c,0xc6,0x25,0x64,0x1b,0x23,0x48,0x8e,0x30,0x1e,0x16,0x80,0xbf,0x81,0xdf,0x26,0x6d,0x89,0x0b, + 0x75,0x41,0x6c,0x3a,0x11,0xb1,0xb9,0x06,0xcd,0x19,0xc6,0x96,0x33,0xfb,0xc7,0xa0,0x60,0xfa,0x16,0xb1, + 0x8f,0x17,0xf5,0x0f,0x36,0x2d,0xfc,0xb0,0x2b,0x0a,0xce,0x3b,0xdc,0x23,0xbc,0xee,0x55,0x0c,0x65,0xdb, + 0x61,0x3c,0x2a,0xff,0x2e,0x38,0xb8,0xc7,0x55,0xbe,0x4f,0xdc,0x52,0xf8,0x88,0x8a,0x6f,0x8a,0x64,0xee, + 0xd5,0xa4,0x98,0xae,0x89,0x59,0x60,0x1f,0xee,0xd8,0x82,0x51,0xad,0x43,0xd4,0xf1,0xc0,0xce,0xf4,0xeb, + 0xb4,0x1f,0x54,0x1b,0x81,0x48,0x40,0xd9,0x36,0x02,0x35,0x06,0xc0,0x9a,0x12,0xb1,0x2d,0xc0,0x45,0x49, + 0x52,0x84,0x03,0xef,0xe6,0xd2,0x39,0xb1,0xdd,0x43,0xdc,0x26,0xf4,0x39,0x1b,0x18,0x06,0xa4,0xcd,0xc8, + 0xc6,0x7d,0x2a,0x3e,0x5b,0x98,0xc1,0xbb,0xdf,0x4a,0xe6,0x26,0xf4,0x48,0x65,0x3a,0x3e,0x04,0x74,0x69, + 0x7f,0xfc,0x99,0xc2,0x1a,0x4d,0x15,0x51,0xcb,0x5a,0xee,0x1e,0x1b,0xc6,0xb5,0x93,0xe4,0x22,0xa7,0xe4, + 0x59,0x3b,0xb5,0x4f,0x71,0x2e,0x77,0x1e,0xb9,0x48,0x2e,0x58,0x5c,0xa1,0x09,0xe5,0x7e,0x69,0x5c,0x07, + 0x21,0xd7,0xb8,0x8b,0x22,0xea,0xc0,0x84,0x5c,0x15,0xd8,0xf5,0x8b,0x5a,0xdf,0xb9,0xdc,0x29,0x70,0x1b, + 0x27,0x13,0x54,0xc6,0x1f,0xc2,0x37,0x9b,0xa9,0xac,0xd4,0x8d,0x43,0x28,0x87,0x6f,0xfb,0x02,0x94,0x25, + 0x0f,0xfe,0x07,0x97,0xb0,0xc7,0x0f,0x46,0xad,0xe1,0x94,0x2d,0x63,0x74,0x19,0x49,0xd7,0x4e,0x24,0x6a, + 0xdb,0x7c,0x64,0x5d,0x9b,0x0f,0x0d,0x1d,0x54,0x01,0x7c,0x81,0xb5,0x78,0x46,0x60,0x46,0xd3,0x5e,0x27, + 0xd9,0xa9,0xd1,0x1a,0xb8,0x14,0x2f,0x08,0x54,0x81,0x0d,0xa9,0xb5,0x4d,0xe0,0xe4,0xb8,0x60,0x9b,0x30, + 0xb3,0x8a,0x49,0x86,0x8f,0xb6,0xad,0xe3,0xbd,0xb2,0x23,0x14,0x6b,0x3c,0xe3,0x4c,0x99,0xa1,0x7b,0xe5, + 0x6c,0xc6,0x03,0x54,0xc6,0x4a,0xa8,0xf2,0xae,0x4e,0xdb,0xe8,0x9d,0x4d,0x35,0x7b,0xde,0x8b,0x44,0x59, + 0xab,0x4a,0x06,0x86,0x0f,0xab,0x6e,0xa3,0xb3,0x59,0xa7,0x4d,0xb0,0xa2,0x5d,0xa3,0xa5,0xa8,0x05,0xd5, + 0x9f,0x21,0x45,0xb9,0xf1,0xbe,0xd9,0xef,0x78,0x69,0x6d,0x07,0x35,0x94,0xe9,0xc7,0xf8,0x70,0xec,0x35, + 0xed,0x89,0x12,0x84,0xd4,0x99,0xfa,0xf6,0xa5,0x15,0xa6,0x65,0x67,0xd2,0xd1,0x5d,0x29,0xb9,0x38,0x40, + 0x17,0x6b,0x2c,0x3c,0x94,0xfe,0x25,0x97,0x29,0x4e,0x1a,0xca,0x0e,0xcb,0x24,0x87,0x85,0x06,0xec,0x16, + 0x70,0x7d,0xd1,0xac,0xe8,0x5c,0x75,0x99,0x6e,0x5d,0x75,0xd9,0xb3,0xa2,0xd9,0xa2,0xc3,0xff,0x3a,0x79, + 0x3d,0x73,0x3c,0xed,0xb1,0x14,0x70,0x20,0x33,0x87,0xde,0x37,0x87,0x63,0x40,0x54,0x5c,0x78,0x7c,0xfd, + 0x65,0x68,0xd7,0x85,0x5a,0x27,0x20,0x3e,0x60,0x8f,0x57,0x83,0xa1,0x1f,0x95,0x8c,0xa5,0xf9,0x96,0x2e, + 0x42,0xd1,0xc6,0x8e,0x0c,0xd8,0xd9,0x3a,0xf8,0x3c,0x09,0x89,0xec,0x53,0xf7,0xb9,0xdd,0x9d,0x4b,0x71, + 0x1f,0x60,0xe9,0x3e,0x9c,0xa4,0x45,0x8e,0xef,0x94,0x6c,0xb2,0x09,0xc3,0x57,0x55,0x42,0xbf,0x3e,0x5f, + 0xdf,0x55,0xdd,0x08,0x01,0xa1,0x99,0x79,0xcd,0xf2,0x0c,0x06,0x1d,0x0a,0x57,0xfb,0x5f,0x98,0x38,0x87, + 0xb2,0xe0,0xd9,0x5c,0x69,0x7d,0xb4,0xf0,0x1b,0x34,0xa8,0xeb,0x6a,0x74,0x5d,0xf9,0x2c,0xa4,0xf0,0x14, + 0xc4,0x46,0x8c,0xcd,0x37,0xc6,0x24,0x8e,0x25,0xa1,0x67,0x67,0xb4,0x0b,0xb2,0x48,0xeb,0x81,0x7b,0x72, + 0x6d,0x4b,0x1c,0x93,0xe3,0xb0,0x73,0x4a,0x78,0xbc,0x7d,0x27,0x43,0xb8,0xfb,0xee,0xa9,0xe2,0x0b,0x06, + 0xfa,0xca,0x9b,0x18,0xda,0x55,0x92,0xf3,0xed,0x88,0xc4,0xaf,0x9f,0x5d,0xad,0xb2,0xb3,0xb3,0xc4,0xed, + 0x10,0xf4,0xc6,0x60,0x08,0x7a,0xb4,0x25,0x3c,0x7e,0xfa,0x9e,0x96,0x93,0xca,0x8b,0xb4,0x69,0xde,0x64, + 0x42,0xb4,0x6a,0x48,0xe7,0x39,0xc1,0x6a,0x2b,0xd5,0x4e,0xc7,0x3d,0x3e,0xef,0x5e,0xf9,0x5a,0x0e,0x5f, + 0xda,0xb7,0xa5,0x85,0x31,0x94,0xbe,0x6e,0xd3,0xbc,0x7a,0x76,0xc2,0xed,0xba,0xb4,0x9c,0xa8,0xa3,0x31, + 0xd9,0x35,0x40,0xd1,0xe6,0x72,0xa3,0xdb,0x0e,0x6c,0x18,0x17,0x9c,0x48,0xf5,0x7f,0xe0,0x6e,0xa6,0xf4, + 0x47,0x37,0xda,0x65,0xdd,0x43,0x8f,0x06,0xa6,0xbd,0x32,0x46,0x5c,0x00,0xcd,0x8c,0xc7,0xe5,0xb7,0xc4, + 0x17,0x77,0x0c,0xd7,0x9d,0x49,0x23,0x67,0x49,0xd7,0x2a,0x62,0xa5,0xc0,0x8d,0x55,0xe0,0xd8,0x2c,0x18, + 0x56,0x7b,0x35,0x38,0x02,0x42,0x9b,0x73,0x9a,0xd6,0xbc,0x24,0x63,0xfc,0xb8,0xbf,0x6f,0xa7,0xc2,0x9f, + 0x05,0xd5,0x07,0xdb,0x7a,0xeb,0x08,0x7c,0xd9,0x99,0x75,0xce,0x4c,0x16,0x84,0x09,0xbb,0x7e,0x1e,0x00, + 0x7d,0x10,0x6d,0xc3,0x53,0x4b,0x56,0x2f,0xe6,0xf6,0x1b,0xf5,0x29,0x0b,0xc3,0xd7,0x1d,0xec,0x10,0xa9, + 0xd7,0x2d,0xc0,0x28,0x88,0xe5,0x3f,0xce,0x27,0x6d,0xd3,0x47,0x8d,0x62,0x3e,0x68,0x65,0x23,0x41,0x53, + 0xeb,0x23,0x2d,0x13,0xf0,0x81,0xc9,0xad,0xbe,0xda,0x12,0x1c,0x69,0x31,0xd7,0x96,0xa0,0x8f,0xb5,0x12, + 0x0e,0x23,0x45,0x2d,0x42,0xdd,0x48,0x21,0x9c,0x33,0xb3,0xbc,0x83,0xbd,0xc0,0x2d,0x2c,0xc6,0x35,0x8d, + 0xb0,0xff,0xc9,0xc1,0xe9,0x60,0x80,0xbf,0x50,0xe0,0x44,0x9e,0x08,0x1d,0xa4,0xfb,0x7b,0x62,0x2a,0x21, + 0x29,0xde,0x74,0xa4,0x16,0x95,0xd5,0x50,0xb4,0xd4,0x27,0xa2,0xa7,0xd0,0xfa,0x10,0xe1,0x4b,0xd9,0x00, + 0x03,0x01,0x0b,0x84,0xc6,0x6d,0x89,0xd2,0xb6,0x24,0x19,0x9e,0x49,0xc6,0x13,0xbe,0x1c,0x35,0x90,0xd2, + 0x7c,0x33,0x91,0x91,0xda,0x18,0x14,0x9e,0xd2,0x40,0x45,0x24,0x8d,0x68,0xfa,0xe0,0x36,0xa8,0x99,0x2a, + 0xe4,0x38,0x9f,0x46,0xed,0xa2,0x34,0x35,0xfb,0xba,0xa2,0x1d,0xad,0xde,0x55,0xc9,0x89,0xf6,0x95,0x7c, + 0x97,0x5d,0x3c,0xfb,0xb4,0x14,0x7b,0xdb,0x53,0xf5,0xa4,0x4a,0x6e,0x7f,0x30,0xe2,0xeb,0x58,0x87,0x39, + 0xf1,0xa3,0x59,0x9b,0x4d,0xc6,0x0a,0x3b,0x89,0x74,0x91,0x17,0x93,0xf9,0x6a,0x9a,0xc5,0xef,0x08,0x3f, + 0x7f,0xb2,0x8f,0x8b,0xf4,0x53,0x6c,0xda,0x90,0xfb,0x77,0x4e,0x61,0x54,0xc8,0x34,0x7c,0xdc,0x45,0x43, + 0x93,0x94,0x36,0xd2,0x9d,0x94,0x06,0xf3,0x94,0xf0,0xde,0x50,0x16,0xd8,0x5b,0xae,0x2d,0x46,0xdb,0xca, + 0x9c,0x8f,0xad,0x2e,0x7a,0x69,0x24,0x9a,0x78,0x53,0x99,0xab,0x8a,0xe0,0x90,0xb7,0xae,0xeb,0xba,0x0f, + 0xb4,0x2f,0xf4,0xce,0x72,0xb2,0x24,0x0b,0xc8,0xbf,0x6a,0x49,0x1a,0x44,0x4f,0x9f,0xfe,0xca,0x97,0xbb, + 0xee,0xcb,0x8d,0xda,0x8e,0x38,0xe0,0xe3,0x3c,0x86,0xb8,0xa1,0x8e,0x05,0x46,0x9b,0xe0,0x9f,0x62,0x2a, + 0xcc,0x1e,0x0d,0x5b,0x92,0x67,0x3f,0x20,0xe7,0x53,0x5c,0x94,0xa0,0x34,0xf9,0xa4,0x07,0x06,0x43,0x73, + 0x51,0xe2,0xf3,0x2b,0xdf,0x95,0x49,0x80,0xbd,0x4b,0x30,0x82,0x2e,0xe5,0x08,0x06,0x41,0x90,0x4f,0x30, + 0x3c,0x18,0xfc,0x8a,0x8b,0xbd,0x5d,0x64,0xff,0xc6,0x04,0x09,0x72,0x53,0xa8,0x8d,0x41,0x30,0x85,0x6a, + 0x62,0xc4,0x18,0x7c,0xbd,0x72,0x21,0xd1,0xdd,0x27,0xf9,0x74,0x2f,0x94,0x88,0x15,0x41,0x1c,0x23,0xd6, + 0x06,0x07,0x66,0x09,0xa0,0x62,0x40,0x88,0xa5,0xf4,0x64,0x72,0x3a,0xee,0xd5,0x36,0x21,0xa7,0x47,0xe1, + 0xb4,0x92,0xdb,0xb3,0xb4,0x85,0xce,0x04,0x51,0x96,0x51,0x92,0x68,0x5d,0x9b,0x24,0xcb,0x4a,0xd0,0x36, + 0x18,0x18,0x1c,0xfd,0x8d,0x0d,0x18,0x68,0xf2,0x68,0x37,0xbf,0x04,0x31,0x87,0x7b,0x55,0x55,0x8b,0xe0, + 0x88,0x8c,0xa8,0xc5,0x69,0x6d,0x20,0xed,0x31,0x93,0x40,0x07,0xcf,0x60,0x90,0xd1,0x57,0xc4,0xab,0xf4, + 0x44,0x2c,0xfe,0x1c,0x1f,0xf9,0xac,0xb8,0x93,0x23,0x24,0x66,0x96,0xb5,0xf7,0xcc,0x08,0x66,0xc3,0x55, + 0x93,0xcf,0x93,0x5b,0x78,0x7a,0xc6,0x3f,0x13,0xde,0xf8,0xd4,0x10,0x80,0x20,0x9a,0x2c,0x6c,0xb3,0xf5, + 0x4a,0xc7,0x2f,0x95,0x54,0xf2,0x4e,0x34,0x38,0x59,0x7c,0x0f,0x44,0xa8,0xe1,0x04,0x3d,0xf6,0xcf,0x22, + 0xe2,0x0f,0xca,0x5e,0xfa,0xd0,0xbb,0xb3,0xfa,0xac,0xaf,0x59,0x84,0x65,0x6e,0x8a,0x68,0xc4,0x08,0xbb, + 0xcf,0x05,0x2b,0x72,0x75,0x0f,0xcf,0xce,0xd3,0x1a,0x74,0x1b,0xae,0x3d,0x35,0x69,0x76,0x25,0x6b,0xc2, + 0x28,0x3c,0xc4,0x3a,0xbb,0x83,0x42,0x86,0x90,0x9d,0x56,0x1b,0x17,0x8e,0xbc,0x9d,0xaf,0x2e,0x72,0x8e, + 0xbf,0xda,0x9f,0xc1,0x77,0xee,0x71,0x68,0x50,0xe3,0x11,0x99,0xe1,0xf6,0x8a,0x16,0x6b,0x20,0x54,0x67, + 0x9b,0x84,0x76,0x6c,0x92,0xf6,0x9e,0xd0,0xa2,0x85,0x1e,0x19,0x04,0x62,0x90,0x70,0xa3,0x63,0xfb,0xa4, + 0x09,0x6c,0x8e,0xae,0xd5,0xf7,0x05,0xb4,0x59,0xde,0x95,0x65,0xcc,0xb5,0xf9,0x06,0x65,0x58,0xa7,0x45, + 0xfe,0x29,0xef,0x75,0x96,0xe6,0x81,0x3a,0x25,0x8c,0xff,0xaa,0xec,0xf7,0x6d,0xe1,0x2c,0x6d,0xb2,0xe4, + 0x40,0x4b,0x65,0x0f,0x89,0x41,0x16,0x78,0x69,0x55,0x9e,0x25,0xac,0xb8,0xf1,0x48,0x70,0x08,0xe7,0xf1, + 0xa5,0x5c,0xbc,0x8b,0xcd,0x2a,0xf7,0x1a,0xe2,0x89,0xe5,0x78,0xc0,0x0c,0x50,0x14,0x1a,0x03,0x74,0xe3, + 0xab,0x82,0x13,0x53,0xae,0x63,0xb4,0xa1,0x54,0x24,0xca,0x76,0xda,0xa3,0xf1,0x83,0x22,0x90,0x3d,0x22, + 0x74,0xc0,0x80,0xd4,0x1d,0xf6,0x5d,0x30,0xf2,0x28,0x89,0xc8,0xd7,0x39,0x25,0x29,0xe2,0x55,0xd3,0x10, + 0x71,0x43,0x7c,0xea,0x4d,0x4d,0xe1,0xcf,0x0b,0x9d,0xb6,0xab,0x25,0xf4,0x34,0xae,0xc8,0xb6,0x50,0xda, + 0x49,0xa3,0x3e,0x2b,0x93,0x85,0x4c,0xd1,0x97,0xba,0x9c,0x59,0xa9,0xcb,0x06,0x77,0x9d,0xa4,0x2d,0xa0, + 0xee,0x4a,0x13,0xb7,0xdb,0x30,0xa5,0xba,0xcd,0xcc,0xda,0xcd,0x18,0xb1,0xbc,0x34,0xa1,0xd7,0xb0,0xd0, + 0x0f,0x94,0x22,0x10,0x53,0xc8,0x2f,0xbd,0x63,0x03,0x15,0xf8,0x7b,0x97,0xd7,0x44,0xca,0xbc,0x2f,0xc7, + 0x9c,0x55,0x72,0x83,0xcb,0xf6,0x66,0x64,0x37,0x04,0x3b,0x7b,0xc6,0x1b,0xce,0xcd,0xac,0xe9,0x88,0xc9, + 0xc9,0xf8,0x62,0x98,0x94,0x76,0xa0,0x75,0xbf,0xc3,0xa5,0xbc,0xa9,0xd3,0xba,0xe6,0xec,0xe0,0x44,0xc4, + 0xc5,0x46,0x8e,0xa9,0x3b,0xbb,0x87,0x9e,0x75,0x22,0xf9,0x58,0x9f,0x92,0xd0,0x8b,0x08,0x20,0x7e,0x62, + 0x65,0x58,0x70,0x40,0x14,0x06,0xb5,0xa4,0xd0,0x10,0x68,0xad,0x59,0x5b,0xa8,0x47,0xf7,0x99,0x23,0xd9, + 0x78,0xe1,0x04,0xa4,0xa2,0x9e,0x0d,0xcb,0xdc,0x5a,0x72,0x8b,0xe8,0x96,0x71,0xa1,0x74,0xec,0xf3,0x62, + 0x63,0x5c,0x7d,0x34,0xf2,0x13,0x0f,0x14,0x58,0x14,0x16,0xec,0xed,0xd2,0x9b,0xb7,0xd1,0x2e,0x53,0x85, + 0xb0,0xd0,0xfd,0xd8,0xfe,0x6d,0x5b,0xa6,0x97,0xd7,0xef,0xc5,0xd7,0x58,0x1c,0xa3,0x7f,0x43,0xcb,0x7f, + 0xea,0xc3,0xba,0xae,0xb4,0x6b,0xe4,0xb6,0x4f,0xb5,0x8f,0x4d,0xda,0x2c,0xa5,0x10,0xf4,0xee,0x5b,0x58, + 0xbe,0x53,0xc5,0xf0,0x7b,0xcb,0x61,0x7b,0xfd,0x70,0xf8,0xd5,0xf0,0xf0,0x0b,0x09,0xd3,0xf2,0x53,0xa5, + 0x7e,0xac,0xd4,0x77,0x95,0xfa,0x50,0xa9,0xdf,0x2b,0xf5,0x43,0xa5,0x7e,0xab,0xd4,0xf7,0x95,0xfa,0xb6, + 0xe2,0x70,0x1a,0x7c,0xef,0xb3,0xbe,0xf3,0x55,0xfd,0xcc,0x69,0x7c,0xb7,0x8d,0x42,0xbd,0x44,0x66,0xa6, + 0x4a,0x26,0x48,0xc9,0xfd,0x3e,0x20,0x0f,0x2f,0x60,0x3a,0x48,0xa5,0xff,0xdd,0xb5,0x9d,0xb7,0x21,0x92, + 0xec,0xfd,0xe6,0xb4,0x2c,0x3f,0x57,0x2c,0x52,0x0b,0x24,0xa2,0x31,0x1c,0x2f,0x1a,0x04,0x6d,0xd1,0xb7, + 0x05,0xe9,0x42,0x81,0x34,0xc2,0xeb,0x4b,0xb9,0x44,0x97,0x4c,0x3e,0xba,0x4c,0xb9,0x6c,0x47,0xe7,0xd9, + 0x38,0xea,0xc8,0x81,0xd8,0xb9,0xe4,0x9c,0x8d,0xfa,0x17,0x77,0x7e,0x22,0x97,0xbd,0x67,0xd3,0xbc,0x81, + 0x11,0x9d,0x9a,0x56,0xe9,0xc5,0x05,0x3f,0xd5,0xcb,0x6c,0x3e,0xe7,0x9a,0xa9,0xef,0xff,0xe4,0xc2,0x74, + 0x10,0x94,0xd7,0x33,0x42,0xf0,0x35,0x61,0x30,0x62,0x2a,0xd9,0x25,0x53,0xa5,0xab,0xa6,0x9c,0x95,0x93, + 0x55,0xcd,0x4f,0xcb,0x79,0x7a,0xa3,0x74,0x87,0x38,0xf0,0x08,0x1d,0xd5,0xb0,0xd3,0x23,0x92,0x75,0x5e, + 0xd3,0xf9,0x4d,0x73,0x57,0x65,0xca,0x90,0x76,0xfa,0xd7,0x94,0xd7,0xaf,0xdc,0x67,0xf3,0x62,0x86,0x8e, + 0x77,0xe2,0x7c,0xa6,0x79,0x8d,0xee,0x4d,0x55,0x56,0xc8,0x2f,0x22,0x18,0x14,0x25,0x4d,0x61,0x0e,0x20, + 0x56,0x97,0xf9,0x74,0x4a,0x5d,0xc3,0xe1,0xd8,0x64,0xd5,0x22,0x2f,0x90,0x48,0x10,0x55,0x35,0x2a,0xaf, + 0x17,0xe9,0x52,0xe5,0x4d,0xb6,0x90,0x48,0x27,0xf3,0xb2,0x5c,0x2a,0x73,0xcd,0x94,0x92,0x46,0x8b,0x12, + 0xa1,0x5a,0x14,0xc2,0x4b,0xd4,0xf9,0xef,0x84,0xa2,0xca,0xfa,0x32,0x05,0xc3,0xe9,0x5a,0x28,0x4a,0x44, + 0x8f,0xa2,0x75,0xa6,0x66,0x96,0x29,0x61,0x23,0xda,0xb4,0x9f,0xf2,0x86,0x48,0xda,0x74,0x5a,0x16,0x73, + 0x44,0x55,0xf9,0x6d,0x45,0x5b,0x70,0xaa,0xb4,0x6b,0xe5,0x54,0x09,0x5b,0x44,0x30,0x91,0x2e,0xe6,0x04, + 0x0c,0xca,0x8e,0x09,0x3e,0x98,0x3c,0xdb,0xf6,0x62,0x17,0x8e,0x0d,0x4a,0x73,0x4f,0x99,0x80,0x79,0x04, + 0x96,0xe0,0x58,0xf1,0xea,0x2a,0xaf,0x73,0x2a,0x89,0x18,0x61,0x79,0x12,0x5c,0x36,0xcd,0x32,0x7e,0xf0, + 0xe0,0xfa,0xfa,0x7a,0x78,0xfd,0xc5,0xb0,0xac,0x2e,0x1e,0x1c,0x7e,0xfd,0xf5,0xd7,0x0f,0x3e,0xcd,0xf3, + 0xe2,0x23,0x51,0x54,0x79,0xcf,0x39,0x1b,0xc4,0x2d,0x17,0x94,0xaf,0x00,0x65,0x52,0x9e,0x93,0x4d,0x88, + 0x9e,0xaf,0x88,0xb0,0x2f,0xfa,0xbe,0xdf,0x69,0x60,0x93,0x6b,0xbd,0x4b,0xfe,0xae,0x8c,0x60,0x93,0x63, + 0xb6,0xa8,0xaa,0xf7,0x1b,0x21,0x90,0x09,0x10,0x77,0x0f,0x05,0xec,0xf2,0x3c,0xb9,0xad,0xaf,0x88,0x20, + 0xde,0x1e,0xc1,0xc3,0x83,0x83,0x83,0x07,0x94,0x17,0x10,0xdf,0xd4,0x5c,0xf6,0x95,0xa0,0x31,0xfe,0xe3, + 0x01,0xee,0x48,0xe5,0x3f,0xaf,0x5e,0x52,0xb3,0x65,0x0e,0xc8,0xbc,0x6c,0x16,0x73,0x75,0x5e,0x4e,0x6f, + 0x14,0xb0,0xa1,0xba,0xa4,0xa5,0x50,0x18,0x9a,0x42,0x84,0x72,0x25,0xbb,0xb6,0xc9,0x1b,0xfa,0x9b,0x4e, + 0xa7,0xd8,0x8f,0x2a,0xad,0x9a,0x7c,0x82,0xf7,0x9a,0xf6,0x04,0x01,0x51,0x89,0x5b,0x3c,0xf1,0x1d,0x7e, + 0x0e,0xd5,0xe5,0x43,0x75,0xf9,0x85,0xba,0xfc,0x52,0x5d,0x7e,0xa5,0x2e,0xff,0xae,0x2e,0x2f,0xaa,0x72, + 0xb5,0x54,0x45,0x7a,0x45,0x6b,0xc7,0x63,0x24,0x40,0xbc,0x52,0x53,0x82,0xca,0xb9,0x9a,0x36,0x8a,0xe8, + 0x58,0x78,0xd8,0x20,0x9d,0x0d,0x52,0x33,0xb5,0xcc,0x27,0x70,0xb8,0x51,0x97,0x95,0xca,0x17,0x17,0xd4, + 0x19,0x1a,0x14,0x1d,0x62,0xe5,0x5c,0x2d,0x61,0xd8,0xa8,0x56,0x73,0x95,0xaa,0x73,0x62,0x25,0xcf,0x2b, + 0x75,0x3e,0xcd,0xe9,0x7f,0xa9,0xe8,0x71,0x42,0xe0,0xc9,0x51,0x88,0x14,0x5f,0x66,0x3f,0x9d,0x11,0x2d, + 0xbc,0x50,0xb9,0xfa,0x78,0x3e,0xa5,0x0a,0xaa,0x8f,0xea,0x37,0x55,0x2d,0x15,0x01,0x73,0xd5,0x4c,0x54, + 0xb5,0x3a,0xbf,0x21,0x4a,0xbe,0x4e,0x17,0x4b,0x45,0xb0,0x4d,0x84,0x57,0xbd,0x4c,0x09,0xf5,0xd0,0x5e, + 0x23,0x86,0xb3,0x5e,0x9d,0xd3,0xff,0x25,0xdf,0x6b,0xab,0x56,0x8a,0x90,0x9b,0xba,0x3e,0x87,0x10,0x9d, + 0x90,0x54,0xba,0x9a,0xe6,0xa5,0xc2,0x76,0x00,0x23,0xfb,0x51,0x31,0x62,0xa0,0x96,0xce,0x09,0xec,0xc4, + 0x1b,0x0c,0x96,0xa8,0xe9,0x82,0x00,0x74,0x55,0x11,0x0f,0x32,0x49,0x8b,0xab,0x94,0x5a,0x9a,0x54,0xf9, + 0xb2,0xc1,0xa6,0x90,0x07,0x22,0xb9,0x61,0xe8,0xa6,0xcc,0xd8,0x27,0x34,0x3c,0xfa,0x2f,0x93,0xa5,0x01, + 0x9b,0xd7,0xa2,0xe1,0xb5,0x69,0xe8,0xe1,0x92,0x5a,0x54,0x82,0xdc,0x78,0x88,0x30,0x25,0xa0,0x39,0xcb, + 0xe6,0x53,0xa2,0xe3,0x79,0x33,0x2b,0x41,0xa8,0xf3,0xf4,0x9c,0x6a,0x9f,0x67,0x17,0xa0,0x05,0x16,0xd8, + 0xcc,0x40,0xad,0x52,0xb5,0xc6,0xb1,0xe5,0xaa,0x41,0x49,0x83,0x63,0x0d,0xce,0xb5,0xa8,0x98,0x50,0x40, + 0x9a,0x03,0xeb,0xe4,0xe9,0xbc,0xbc,0xa0,0x4a,0x8a,0x15,0xff,0x01,0x0a,0xa0,0xa9,0x59,0xd0,0x84,0xde, + 0x28,0x8d,0x01,0x55,0x26,0x42,0x07,0x85,0xfd,0x5e,0x5e,0x2b,0x13,0x3a,0x4b,0x71,0x70,0xb2,0xdf,0x56, + 0x25,0xd0,0xc8,0xac,0x02,0xd5,0xd7,0x00,0x5a,0x20,0x84,0x60,0xd0,0x23,0x80,0x55,0x69,0x91,0x2f,0x50, + 0x76,0x92,0x57,0x13,0x3e,0x1f,0xf2,0xe5,0x92,0x00,0x54,0x4d,0x56,0x15,0xed,0x70,0x60,0x2e,0xa0,0xbe, + 0x7a,0x42,0x8d,0x50,0x16,0x01,0xa8,0x44,0xf9,0xa1,0xe1,0x16,0xcd,0xfe,0x2c,0x9d,0x00,0x00,0xab,0x2c, + 0xbf,0x28,0xe4,0x10,0x54,0x17,0xea,0x62,0x7e,0xb3,0xbc,0x24,0xc8,0x49,0x2f,0x32,0x00,0x72,0xc6,0x8b, + 0x9f,0x41,0xa2,0x50,0x13,0x50,0xe7,0x35,0x6e,0x59,0xdb,0x97,0x42,0xdc,0x12,0xfd,0xa1,0x0a,0x09,0x21, + 0x95,0xf3,0x9b,0x8b,0x52,0x7e,0xf9,0x3b,0x90,0x02,0x4a,0x5c,0xa9,0x55,0xcd,0xa1,0x36,0x78,0x7e,0xf8, + 0x0f,0x7f,0xd9,0x30,0xcc,0x80,0xa8,0xba,0xca,0xb3,0x6b,0x89,0x10,0x55,0xf7,0xee,0xe5,0x52,0x6c,0xf2, + 0x53,0xbe,0x3f,0x9c,0xc6,0xda,0xcb,0x51,0xcd,0x79,0x52,0xc4,0xbe,0x91,0x25,0x1e,0xec,0x70,0x76,0x5d, + 0x56,0x8c,0xfe,0x2a,0xea,0x45,0x46,0x1b,0x01,0x9d,0x98,0xab,0x55,0x85,0xe8,0xd9,0xab,0xbc,0x1b,0xda, + 0xaa,0x25,0x05,0xea,0xb5,0xfe,0xbd,0x23,0xfc,0x96,0xbd,0x48,0x59,0x1f,0x98,0x1c,0xa1,0x7c,0x5c,0xc4, + 0x61,0xa3,0x0d,0x69,0x1b,0xcf,0x90,0x76,0x30,0xb0,0xf1,0xd2,0xfc,0x64,0x7b,0xf1,0x20,0xac,0x62,0xda, + 0x17,0xc1,0x9b,0x1c,0x44,0x5c,0x32,0x8f,0x11,0x5f,0x6a,0xd8,0xea,0xc6,0xeb,0xf7,0x9d,0x3e,0xeb,0xf9, + 0xeb,0xef,0xf4,0xeb,0xf7,0x61,0x9e,0x23,0x04,0x65,0x63,0xeb,0x39,0xa6,0xd9,0xc3,0x9d,0x95,0x71,0xcf, + 0x22,0x74,0x2a,0x31,0x45,0x65,0x49,0x38,0x49,0xc7,0x0d,0xf8,0x13,0x1f,0xeb,0x92,0xfc,0xad,0xd8,0xab, + 0x3e,0x61,0x11,0xf5,0x96,0x0f,0x39,0xf3,0x81,0x36,0x3b,0x94,0x8b,0x1c,0xc5,0x66,0x9f,0x8d,0x99,0x3a, + 0xe3,0x35,0x11,0x42,0x38,0x0f,0x17,0x84,0x28,0xdc,0x6d,0x5c,0x4c,0xfb,0xcb,0x7a,0x79,0x5c,0xd6,0xdd, + 0xd9,0xd9,0x37,0x84,0xcc,0xbb,0xd3,0x93,0x0e,0x2a,0x1a,0xfe,0x7b,0x3a,0x16,0x69,0x37,0xf4,0x17,0xf6, + 0x0a,0x6c,0x70,0x31,0x19,0x07,0x6c,0xea,0x2d,0xa9,0x33,0x37,0x70,0x1f,0xc0,0xac,0x1e,0x09,0x5e,0xd8, + 0xea,0x6e,0xe3,0xf2,0x92,0x86,0x4b,0x5b,0x08,0xe9,0x99,0xb7,0x16,0x00,0xf1,0xbc,0xe1,0x52,0x1c,0x3a, + 0x03,0x65,0x05,0x3a,0xb5,0xff,0x94,0xf1,0x0c,0x68,0x7a,0xfc,0xff,0x6b,0xef,0xcb,0xd7,0xdb,0x36,0x96, + 0x3d,0x5f,0x85,0xc2,0xf1,0xc8,0x40,0x08,0x51,0x92,0xed,0xe4,0x24,0xa0,0x61,0x1e,0x2f,0x59,0x9c,0xc4, + 0xcb,0x8d,0x15,0xe7,0x24,0x12,0xa3,0x0b,0x91,0xa0,0x04,0x8b,0x02,0x78,0x00,0x50,0xb2,0x23,0xf2,0x81, + 0xe6,0xdf,0x79,0x84,0x79,0xb2,0xa9,0x5f,0x55,0x77,0xa3,0xb1,0x50,0xb2,0x93,0xbb,0xcc,0x37,0xdf,0x9c, + 0x7c,0xc7,0x02,0x7b,0x5f,0xaa,0xab,0xab,0xaa,0x6b,0x69,0xf6,0xcc,0x30,0x4a,0xd4,0x49,0x05,0xb0,0xe2, + 0x59,0xf8,0x17,0xc8,0xd5,0x70,0x6c,0xb9,0xba,0xd7,0xad,0xc1,0xab,0x0b,0xad,0x29,0x3b,0x51,0x6e,0x27, + 0x5c,0x87,0xa8,0xe8,0xb5,0x8f,0xc8,0x2e,0x8b,0x04,0x3e,0xc9,0xb4,0x9f,0x31,0xad,0x20,0x6b,0x3c,0x88, + 0xb1,0x9f,0x08,0x6c,0x69,0xe5,0x39,0xcc,0x19,0x13,0xad,0x65,0xe6,0xf1,0x73,0xac,0x47,0xfd,0x73,0xdc, + 0xd9,0xff,0xcf,0xe8,0x7f,0x9a,0xa0,0xff,0xcb,0x6e,0xcc,0x71,0x41,0x43,0x98,0x25,0xd4,0xe8,0xd8,0x3f, + 0xad,0x1a,0xfe,0x97,0x69,0xf8,0x5f,0xb4,0x37,0x1f,0xaa,0x8c,0x6f,0x4d,0xc6,0xb7,0x94,0x71,0x92,0x84, + 0xbb,0x87,0x47,0x57,0xde,0xa0,0x7f,0xb4,0x73,0x7c,0xe7,0x68,0x3c,0xde,0xf5,0x8f,0x11,0x37,0xe0,0x98, + 0x78,0x8c,0x2b,0xfe,0x98,0x38,0xfe,0x41,0x55,0x9b,0x2e,0x2f,0x55,0x7b,0x41,0x9b,0x78,0x5e,0x65,0x9c, + 0x99,0x8c,0x33,0xca,0x78,0x9a,0x74,0x5a,0xf3,0x72,0xc0,0xba,0xdd,0xc0,0x1d,0xf4,0xbd,0xdd,0x2a,0x1c, + 0x83,0x18,0x5b,0xee,0x0e,0xdd,0xd1,0xd6,0xe1,0xef,0xee,0xf8,0xb3,0x23,0xcf,0xdb,0x3d,0xed,0x50,0x4a, + 0x13,0x7b,0xcd,0xb8,0x72,0xe3,0x2a,0x15,0xa1,0x4c,0x60,0x5e,0x44,0xf1,0x18,0x71,0x88,0xd8,0xad,0x2a, + 0x98,0xcf,0x38,0xcc,0xab,0xc0,0x3f,0x0c,0x44,0x25,0x3c,0xd3,0xd1,0xac,0x7f,0xdf,0xd9,0xd9,0xf5,0xdf, + 0xd0,0xc7,0x51,0xf1,0xd9,0x56,0x72,0x01,0xfb,0xe9,0x28,0x2d,0xef,0xec,0xfa,0x8f,0x93,0x2e,0xad,0x87, + 0xf7,0x2a,0x74,0x3d,0x01,0x4a,0x2c,0x31,0x07,0x01,0xa3,0x86,0xdf,0x2a,0x6d,0x6b,0x8d,0x37,0xaa,0x6c, + 0xba,0xb1,0xac,0xf1,0x9e,0xf7,0x26,0xe1,0x48,0x45,0x8e,0x19,0x80,0x53,0x0b,0x2a,0xf0,0x2a,0x71,0xc5, + 0x3b,0x7d,0xfd,0xb1,0x3c,0xad,0xe9,0xe0,0x74,0xbd,0xf0,0xaa,0x7e,0xc1,0x61,0xb3,0x36,0x94,0x04,0x91, + 0xb2,0x12,0x09,0x9e,0xee,0x00,0x76,0x25,0x54,0x22,0x81,0xe7,0x8b,0xec,0x0f,0xe0,0xe7,0x02,0x2e,0xf4, + 0x9a,0xbb,0x47,0x03,0xf8,0x3e,0x0f,0xbf,0xcf,0x6f,0xf1,0xdf,0x28,0xcd,0x1b,0x5f,0x7c,0x5b,0x6c,0x7f, + 0x8d,0x00,0x12,0xf0,0x50,0xca,0x12,0xf6,0xef,0x75,0x5c,0xbe,0x5e,0x6c,0x3d,0x96,0x7d,0x8c,0x6f,0x42, + 0xe5,0xf1,0xe2,0x4e,0xd2,0xe1,0x56,0xf3,0x4e,0x72,0x98,0x8e,0xfb,0xac,0x16,0x9c,0xd7,0x7b,0xc9,0xb1, + 0xe3,0x5f,0x57,0x50,0x7a,0x6a,0xa0,0xf4,0x94,0xa0,0xf4,0x75,0x73,0x9e,0xca,0x22,0x3c,0xe6,0x50,0x98, + 0x60,0x56,0x03,0x62,0xd7,0x77,0xf8,0xa7,0xe3,0xf3,0x1f,0x15,0xf9,0xb9,0x4a,0xdf,0x29,0x33,0x95,0x65, + 0xc5,0x80,0xb6,0xb2,0x45,0xe2,0xea,0xf8,0x55,0x18,0x69,0xce,0xe4,0x9f,0x2a,0xd5,0x6e,0x93,0x13,0xb8, + 0xcd,0x66,0x5c,0x69,0x2b,0x5b,0xb5,0x89,0xb9,0x3d,0x4b,0xd8,0xa3,0x18,0x22,0x42,0xbf,0x4b,0x54,0x9c, + 0x4b,0xf6,0x1c,0xeb,0xf8,0xcf,0xe9,0xb7,0x10,0x58,0xfc,0xf3,0xc7,0x46,0xf6,0x37,0xb5,0xdf,0x74,0x93, + 0x38,0xfe,0xcb,0x7a,0x8d,0x17,0xf6,0x4f,0x14,0x18,0x3e,0xc3,0x03,0x80,0xf1,0xd6,0xa0,0xdc,0x98,0x81, + 0x47,0xb5,0x9a,0xb1,0xc8,0x03,0x53,0xe0,0x8a,0x81,0xac,0x51,0xcc,0xc5,0x88,0xac,0x48,0x9d,0xd6,0xb8, + 0xae,0x1a,0xa9,0x5f,0xa7,0x78,0xa1,0x6c,0x77,0x6c,0x8f,0x6e,0x73,0xbf,0xf5,0x52,0xee,0x4b,0xd3,0xed, + 0xe3,0xfa,0x5c,0xaf,0xea,0x89,0xdc,0xa9,0xc8,0x68,0x7e,0xc2,0x2a,0x8f,0x54,0xb3,0x60,0x53,0xe9,0x74, + 0x9b,0x72,0xdf,0x80,0xb8,0xbd,0x31,0x73,0x00,0x79,0x91,0x2b,0x25,0x60,0x38,0xa2,0x9d,0x22,0x74,0x5e, + 0xa8,0x78,0x37,0x7f,0x02,0xb4,0x74,0xe2,0x9a,0xe8,0x1d,0x2b,0xe2,0x51,0x3c,0xd7,0x5f,0xdd,0xf1,0x76, + 0xfd,0x5f,0x2c,0xf4,0xd4,0x0a,0xf0,0x20,0x54,0xde,0x7b,0xeb,0xae,0x07,0x6d,0x57,0xb2,0x44,0xec,0x7d, + 0x8d,0xba,0x80,0x8a,0xab,0x15,0x41,0x83,0x63,0xc1,0x25,0x62,0x62,0x27,0x21,0x6d,0x6a,0x1e,0xa9,0x22, + 0xdf,0x36,0x12,0xe3,0x92,0x5a,0xd9,0x52,0xee,0x57,0x16,0xad,0x23,0x22,0xb4,0x32,0x72,0xea,0x8c,0x02, + 0xec,0xc1,0x97,0x90,0x79,0x2a,0x51,0x55,0xc2,0x68,0x00,0x7d,0x2d,0xca,0x93,0x1f,0x90,0x03,0xa3,0x20, + 0xae,0xdd,0x7d,0xee,0xc8,0xef,0x6e,0xcc,0xc4,0xf0,0xc0,0x88,0x08,0x3f,0xb8,0x70,0xca,0xd1,0xb6,0x48, + 0xb4,0x75,0x78,0xe2,0x61,0xd4,0x61,0x8a,0x23,0x51,0xae,0x3b,0x72,0xf4,0xab,0x79,0xe9,0x66,0x94,0x8d, + 0x69,0xf2,0x28,0xb3,0xd0,0x0e,0x19,0xab,0xf4,0x96,0x24,0x16,0xcb,0xf9,0x40,0x93,0x00,0x1a,0x4d,0xf5, + 0xfb,0x99,0x57,0xa5,0x22,0x0a,0x0b,0x31,0xad,0x11,0xc2,0x32,0xb3,0x9c,0x3f,0xd2,0x1a,0x42,0x13,0x68, + 0xa8,0xe0,0xf1,0x98,0xc6,0xbc,0x36,0x6b,0xec,0x6f,0x49,0xe8,0x04,0xf9,0xa5,0x17,0x57,0x96,0xdc,0x9f, + 0x59,0xde,0xb5,0xfd,0x33,0x71,0x4c,0x4c,0x7b,0x7d,0xe6,0x8d,0x5c,0x6e,0x09,0xd2,0xf7,0x62,0xf4,0xbe, + 0x45,0x36,0x23,0xd9,0x3f,0xf3,0x82,0x46,0x8e,0x7b,0x06,0xe9,0xf8,0x02,0xb2,0xd8,0x25,0x75,0x39,0xc3, + 0xa2,0x96,0xbc,0xa8,0x53,0x59,0xe1,0x09,0x3c,0xbd,0xf0,0x10,0x69,0x28,0x41,0xea,0x5a,0x3e,0xa1,0x4d, + 0x97,0xef,0x9b,0x24,0xb2,0xf8,0x73,0x6e,0xd4,0x6d,0x14,0xae,0x88,0xf1,0xae,0xd2,0x96,0x47,0xe1,0x42, + 0x54,0xf7,0x4a,0x6d,0x2c,0xa5,0x42,0xd3,0x0b,0x94,0x8a,0xd0,0x17,0xab,0xaa,0x9f,0x54,0xfc,0xce,0x62, + 0x9d,0xa9,0xa1,0x36,0x93,0x90,0x75,0x6b,0x83,0x02,0x94,0x83,0x66,0xec,0x4b,0x6a,0x2a,0x5a,0x72,0x0b, + 0x76,0xe6,0xc4,0x44,0xa4,0xe7,0x1b,0x13,0x12,0x3b,0x56,0x89,0xd2,0x7b,0xbd,0xd6,0xca,0x7e,0x1c,0x56, + 0xde,0x3a,0x9a,0x22,0x65,0x7e,0x5f,0xe7,0x11,0xa4,0x0e,0xed,0x8d,0x4d,0xde,0xc7,0x1c,0x90,0xd5,0xb4, + 0xbc,0xb4,0xe8,0x92,0x56,0x8c,0xbd,0x66,0xec,0x0a,0x03,0x87,0x89,0x17,0xb9,0xac,0x71,0x9c,0xaa,0xb5, + 0xe5,0x27,0x27,0xe8,0x1b,0x32,0x71,0x90,0xeb,0xd5,0xc7,0x90,0x6a,0x9d,0x73,0xe1,0xd6,0x5e,0x29,0x37, + 0x36,0xb1,0x76,0xd8,0x6d,0xb9,0xc4,0xd6,0x3e,0x32,0x86,0x5d,0x86,0x6f,0x5e,0xa7,0x79,0xa0,0x3a,0x6a, + 0x95,0xc9,0xad,0xc4,0xbf,0xb2,0x9c,0x5e,0xcb,0xd6,0xd7,0x2d,0xd8,0xce,0xd5,0xa0,0xaa,0x49,0xe6,0x9e, + 0x4e,0x23,0x2a,0x07,0x47,0x8d,0xd1,0xdf,0x95,0x36,0xf0,0x55,0x98,0x86,0xf6,0xe2,0x4a,0x15,0xa3,0x5f, + 0xfa,0x53,0x8a,0xfb,0xc8,0x4b,0x34,0x44,0x75,0x6d,0xec,0xc2,0x60,0x5a,0x41,0x61,0xd0,0x06,0x37,0xee, + 0x04,0x3d,0xef,0x7d,0x9d,0x79,0x51,0x6b,0x0d,0x32,0x4f,0x16,0xba,0x9a,0x42,0x8c,0x68,0x42,0xa8,0x5f, + 0x59,0x58,0x02,0xbf,0xb0,0x95,0x92,0x79,0xa6,0x28,0x54,0xbb,0xd8,0x96,0x4d,0x0d,0xfb,0x55,0xe4,0x21, + 0x20,0xfb,0xf0,0x0a,0x01,0x3e,0x53,0x76,0x68,0xae,0x1a,0xd6,0x3f,0x8d,0x8b,0xc4,0x3f,0xd7,0x91,0xe5, + 0xdc,0xdb,0xf6,0xef,0xa8,0xb6,0x3b,0x7f,0x18,0x26,0xbc,0x07,0x91,0xcb,0xd1,0x72,0x32,0xbf,0x1e,0xc4, + 0xe8,0xd2,0x2c,0x1c,0xaa,0xd5,0x6e,0x8e,0x44,0x00,0x17,0x63,0x4a,0xaa,0xfb,0x00,0x03,0x54,0x4c,0x11, + 0x26,0x54,0x39,0x3e,0x3b,0xd7,0xc9,0xd5,0xce,0xa7,0x9e,0x49,0xe4,0x48,0xc1,0x5e,0xb5,0x39,0x55,0x80, + 0x78,0x15,0xe2,0x87,0xfd,0xff,0x37,0x6d,0x1f,0x31,0x70,0xbc,0x43,0xdb,0xa6,0x8f,0xd5,0xd8,0x2f,0xea, + 0x37,0x4a,0x35,0x57,0x63,0x73,0x90,0x8f,0x87,0xa5,0x78,0xee,0xa2,0x3f,0x0c,0xbd,0x23,0xf7,0x14,0x4f, + 0x74,0x97,0xb8,0x17,0x03,0x44,0x3b,0x82,0x6e,0x90,0x8d,0xcf,0x4e,0x8d,0x2a,0x32,0xae,0xe8,0xd5,0x4a, + 0x23,0x36,0xcf,0x84,0x2b,0x0a,0xcf,0xd5,0xad,0x6d,0x42,0xd1,0x0e,0xd5,0x3a,0x79,0x23,0xcb,0x8a,0xb6, + 0x1f,0x26,0x41,0x7a,0x93,0x62,0x30,0x91,0x4d,0x3b,0x3b,0x56,0x05,0x3c,0x93,0xc5,0xc6,0x59,0x8a,0x95, + 0x11,0xd2,0xa6,0xae,0x5d,0x7d,0x13,0xd1,0x61,0xc8,0xbb,0x8e,0x2b,0xef,0x0e,0x80,0x4e,0x29,0x42,0xf0, + 0x4f,0x7d,0x43,0x9e,0x22,0x76,0x86,0xe7,0xeb,0x23,0x5a,0x1b,0xbf,0x3a,0xa2,0x92,0x86,0x23,0xca,0x31, + 0xc9,0xa4,0x17,0xfb,0x84,0x96,0x2a,0x6c,0x2f,0x8a,0x79,0x3a,0x5c,0x15,0xd4,0xbe,0xf9,0x08,0x65,0x32, + 0x40,0x6b,0x7b,0xa0,0xe6,0x0c,0xf2,0xa5,0x90,0xe8,0x5c,0x04,0xeb,0x89,0x8e,0xca,0x99,0x30,0x4e,0xcf, + 0xf1,0x2f,0xeb,0xbc,0x20,0xee,0x6b,0xcb,0xfb,0xa5,0x47,0xe7,0x30,0xa9,0xf9,0xcf,0xd4,0x3e,0xae,0xa6, + 0xde,0xe8,0xd8,0xcd,0x65,0x3d,0x10,0x99,0x38,0xe9,0xf4,0x9d,0xb9,0x67,0x98,0x3f,0xa2,0xca,0x8c,0x7f, + 0x4f,0x06,0xda,0xdc,0xfe,0x99,0xb0,0x8b,0xd1,0x50,0xc2,0x86,0xe1,0xc2,0xe2,0xd2,0xe2,0xd5,0x93,0x00, + 0x40,0x7e,0xbe,0x62,0xf2,0xc6,0x4b,0x3a,0x74,0x5d,0xf2,0x0e,0x8c,0x5a,0x05,0x3b,0xf6,0x97,0x34,0x5b, + 0x3e,0x54,0xa5,0xbb,0xe4,0x55,0x9c,0x87,0xcb,0x6a,0x49,0xe7,0xe1,0xdc,0x38,0x0b,0xa0,0x84,0x39,0xd6, + 0x4c,0x08,0xdc,0x69,0x98,0x57,0xa4,0xc4,0xc2,0xb2,0x25,0x95,0x43,0x84,0xb6,0x66,0x38,0xa3,0x0c,0xfb, + 0x73,0xda,0xd8,0x39,0x6d,0xac,0x70,0x52,0xd5,0xc6,0xce,0x3d,0x9d,0x76,0x38,0x1f,0x4b,0xdb,0x1d,0x03, + 0x90,0x12,0xa6,0xfb,0x75,0xec,0x26,0x72,0x85,0x8c,0x4a,0x77,0xca,0xa5,0x16,0xde,0x68,0x4a,0x1b,0xb8, + 0xb0,0xa8,0x39,0xed,0x47,0xb6,0xa8,0x6e,0x80,0x89,0x4f,0xd3,0x25,0x1a,0x68,0xcf,0x9f,0xd2,0xff,0x17, + 0x61,0xe5,0xaa,0xc5,0xbf,0x0c,0x21,0x01,0xf0,0x4f,0xe9,0xcf,0x62,0xec,0x9f,0x18,0xd5,0x6d,0xca,0x3a, + 0x0e,0x13,0x64,0x5d,0xd1,0x9f,0x93,0xb1,0x7f,0x10,0x6e,0x15,0xc3,0xd9,0x43,0x74,0x35,0x7d,0x18,0x9e, + 0xd0,0xdd,0xe4,0x5e,0x7a,0x23,0x54,0xef,0xf7,0x67,0xe3,0x20,0x76,0xe9,0x0c,0xa3,0x95,0x9d,0x9d,0xc5, + 0x38,0x78,0x4b,0x99,0xfe,0x31,0x1d,0xea,0x0f,0xf8,0x0b,0xe2,0x4c,0x17,0xe4,0x56,0xfb,0xfd,0xe9,0xd8, + 0x43,0xa1,0x53,0xff,0x8a,0x0b,0xd1,0x5f,0x14,0xd2,0xf5,0xb9,0xcf,0x9d,0x9d,0x13,0x29,0x74,0xa9,0x0a, + 0x5d,0x4a,0xa1,0x83,0x16,0x1d,0x90,0xfa,0x97,0xea,0xde,0xb5,0x44,0x71,0xee,0xa9,0xa0,0x90,0xaa,0xe7, + 0x5a,0xa3,0xa7,0x6a,0x78,0xa7,0x32,0xbc,0xae,0x46,0xb9,0x01,0x69,0xda,0x1a,0x5a,0x35,0x7e,0x37,0x16, + 0x67,0x17,0x93,0xf0,0xbb,0x98,0xf6,0x67,0xe6,0x2f,0x60,0x2a,0xef,0x82,0xa0,0x3f,0xe6,0x18,0xa6,0xa3, + 0xc9,0x21,0x7f,0x8c,0x3b,0x9c,0x7f,0x54,0x71,0x09,0x67,0x44,0x0b,0x27,0x1c,0x85,0xd0,0xa0,0xc7,0x6c, + 0xac,0x79,0x84,0xed,0xed,0xb7,0xa0,0x73,0x22,0x43,0xc1,0x67,0x44,0xe3,0x1e,0x53,0x13,0x7b,0xe8,0x6d, + 0x14,0xd1,0x77,0xe6,0xab,0xf9,0xf3,0xbc,0x96,0x34,0xce,0xf9,0x58,0x4d,0x6e,0x29,0x93,0x43,0x8a,0xf6, + 0x68,0xdb,0x35,0xd1,0xa5,0x35,0x51,0x2f,0xa8,0xb7,0x59,0xcd,0x77,0x38,0x7b,0xb4,0x80,0x12,0x3d,0x4d, + 0x91,0x00,0xa2,0xbf,0x3f,0xf6,0x24,0x3a,0xa3,0xfc,0x50,0x87,0x7e,0xea,0x9f,0xe0,0xe0,0x4f,0x1f,0x9d, + 0x6c,0x6f,0x5f,0xb8,0x7b,0xbe,0x2c,0xcb,0xda,0x9d,0x70,0xb8,0x6c,0x00,0x65,0xc0,0x40,0x0b,0x0a,0xaf, + 0x22,0xa1,0xea,0xe2,0x50,0x2a,0x8c,0x7b,0xfa,0x8c,0xfe,0x32,0xd9,0xb5,0xc0,0x64,0x2b,0xb0,0x04,0x51, + 0x0c,0xf0,0x1f,0xa1,0xfd,0x29,0xe5,0x4d,0xab,0x30,0x88,0xc1,0xad,0xcd,0x06,0x92,0xbf,0xc5,0x51,0x6b, + 0xf8,0x6e,0xef,0x28,0xa7,0x4e,0x99,0xbf,0x19,0x33,0x64,0x45,0x59,0x47,0x0d,0x6b,0xeb,0xaa,0x3a,0x11, + 0x2e,0x84,0xd1,0x2b,0x18,0x4f,0xd4,0x32,0xc1,0xa8,0x3d,0xfd,0xd5,0x45,0x59,0xe7,0x75,0xb2,0x47,0x18, + 0xa5,0xdc,0xe6,0x8f,0x72,0x02,0x8e,0x0a,0xfb,0xab,0x9d,0x74,0x73,0xf6,0xa7,0x6a,0x06,0x70,0xdc,0x60, + 0x3c,0xfd,0x09,0x62,0x36,0x45,0xa7,0xfe,0x5c,0xb9,0xfb,0x20,0x5c,0x90,0xd7,0xa3,0x0d,0x85,0xd9,0x6a, + 0x85,0xe8,0xee,0x40,0x7a,0x7e,0x2e,0xa4,0xbd,0x2f,0x08,0x59,0xf3,0x2d,0x72,0x71,0xd9,0x78,0xdf,0x40, + 0x65,0xd7,0x35,0x01,0xf5,0x6a,0xc2,0xf5,0x0c,0xc8,0x73,0x75,0xd5,0xd3,0xd2,0x75,0x33,0xb0,0xb9,0x58, + 0x12,0x52,0x62,0x07,0xd6,0xf6,0x2c,0xfe,0x15,0xeb,0x6a,0x9a,0x9d,0x78,0x8a,0x20,0x98,0x79,0x1e,0x73, + 0xe2,0x67,0x51,0xc1,0x84,0x38,0xa8,0xee,0xc2,0xe5,0x44,0xee,0xd5,0x74,0xa8,0xe3,0xc6,0x59,0x23,0x50, + 0x51,0x51,0xa4,0xa9,0x88,0x29,0xbf,0x2a,0xd1,0x04,0xe1,0xe0,0x8b,0x43,0xef,0xcb,0x02,0x73,0x03,0x17, + 0x39,0x4b,0xf2,0xa2,0xe4,0x1e,0x09,0xcd,0xec,0x0d,0x2f,0x1f,0xce,0xf4,0x5e,0x5d,0x6a,0x07,0x77,0x67, + 0xab,0xd5,0xd6,0x31,0xf1,0x8b,0xb3,0xc3,0xcb,0xb1,0xe2,0x4c,0x17,0x30,0x29,0x17,0x56,0xf6,0x2c,0x3c, + 0xab,0xbd,0x1f,0xa0,0xc6,0x62,0xb5,0x3a,0xab,0x77,0x4c,0x5c,0x0c,0x0e,0x52,0xe2,0xe9,0xd5,0x94,0x7d, + 0xbd,0xb0,0x5d,0xad,0x9c,0x42,0x9a,0x37,0xc7,0x8c,0xb7,0xde,0x10,0x2e,0xf6,0xae,0x2f,0x30,0xc8,0xa9, + 0xdc,0x2d,0xd2,0xd9,0xd6,0x05,0x36,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x7d,0x6a,0x67,0x93,0x42,0x54,0x6c, + 0x71,0x78,0x2f,0x3e,0x18,0x8a,0xc0,0x52,0xbf,0xf5,0xb3,0xd7,0x96,0x04,0x8b,0xb9,0xf2,0x0f,0xfc,0x73, + 0x08,0xa9,0x9f,0x22,0xd2,0x7c,0x36,0x5d,0xce,0xe3,0xc2,0x7f,0x4f,0xdf,0xa0,0x71,0x5e,0x29,0xed,0xaf, + 0x2b,0x5a,0x93,0xab,0x87,0x8b,0xa4,0x02,0xe0,0x2b,0x26,0x2b,0xcf,0x0f,0x17,0xc9,0xe1,0xd5,0x18,0xd6, + 0x5e,0x74,0xaf,0xec,0x0d,0x0f,0x1e,0x3e,0xad,0x8a,0x1c,0x10,0x79,0xf1,0xf4,0xf0,0x60,0xac,0xca,0xd0, + 0x4e,0xe9,0xe2,0xc2,0x5f,0xd8,0x79,0x7c,0x21,0xbf,0x61,0xbd,0x11,0xbc,0xab,0x89,0xd6,0x8c,0x0a,0x25, + 0xf6,0xd4,0xfa,0x7e,0xc3,0xc2,0x56,0x42,0xc5,0x1d,0x4e,0x0a,0xd5,0x6d,0xe9,0xd3,0x25,0xa9,0x7c,0x32, + 0xf1,0xed,0x2d,0x5e,0x62,0x10,0x46,0x04,0xc6,0xd9,0x80,0x2e,0x98,0x73,0x2e,0xd9,0x7f,0x88,0x0b,0x44, + 0x87,0xf2,0x15,0x3d,0xb1,0x08,0x71,0x38,0x30,0xf9,0x03,0xf6,0xfd,0xc4,0x1b,0xc9,0xd8,0x1b,0x1b,0xe0, + 0x09,0xcd,0x35,0xf5,0x55,0x50,0x74,0xf4,0xb3,0xe0,0xde,0x24,0x9e,0x9a,0xae,0x07,0x25,0x77,0x82,0xe1, + 0x8a,0x9f,0x78,0xcc,0xfa,0x59,0x9a,0xba,0xab,0xa5,0xc3,0x82,0x1b,0x3e,0x3e,0xdd,0x8c,0x8a,0x1c,0x4b, + 0xfb,0xe6,0xa0,0x9c,0xf0,0x10,0x91,0x9f,0x0f,0x5f,0x85,0x50,0xe6,0x57,0xcf,0x31,0xef,0xf5,0x23,0x94, + 0xfb,0xaa,0x11,0x85,0x46,0x9e,0x69,0x94,0xe4,0xd0,0x7f,0x25,0xf6,0x6f,0x67,0x42,0x0c,0xd2,0xf5,0x57, + 0x13,0x94,0x9d,0xf1,0x04,0x65,0x1d,0xce,0x06,0xc7,0x22,0xb0,0x3d,0x91,0xfb,0xe0,0xb4,0x71,0x0f,0x9f, + 0x41,0xf5,0x97,0x08,0x17,0x8d,0xff,0x34,0xc0,0x5e,0x85,0x3a,0x8d,0x60,0x00,0x14,0xd3,0xf0,0x6a,0x58, + 0xdd,0x8b,0x4f,0x09,0x2c,0x9e,0x76,0xf1,0x2e,0x4f,0x2d,0xde,0xe5,0xe9,0xd8,0xbd,0xe2,0x91,0x5c,0x89, + 0xe3,0x7b,0x1e,0xea,0x41,0xd5,0xc8,0x1b,0x6a,0xe4,0x4d,0x07,0xe7,0xfb,0xa6,0xe2,0x7c,0xdf,0x30,0xe7, + 0x7b,0x25,0x90,0xf4,0x38,0xbc,0x6a,0xe1,0x56,0x7e,0x51,0x18,0xb0,0x8e,0x70,0x65,0xf2,0x70,0x27,0xdc, + 0x1f,0xde,0x79,0xf8,0x98,0x58,0x44,0x63,0xaf,0x72,0x07,0xee,0x9f,0x91,0x70,0x78,0x67,0xac,0x69,0xef, + 0x5f,0x62,0x8c,0xef,0x8a,0x5a,0x55,0xa1,0x6e,0xe1,0xdb,0x95,0xef,0x2d,0xb0,0x7c,0x7b,0xfe,0x9e,0xba, + 0xb0,0x88,0xff,0x81,0x4b,0xe0,0xbc,0xb2,0x16,0x93,0xfd,0x5b,0x7a,0x3e,0xcf,0x89,0xb7,0xe2,0x15,0x48, + 0x7f,0x53,0xce,0xbd,0x56,0x07,0x2d,0x58,0x26,0xbe,0x3a,0x7f,0xc1,0xe1,0x69,0xe2,0x7f,0x48,0xfc,0x83, + 0xc4,0x3f,0x4f,0xfc,0xaf,0x13,0xff,0x5d,0x3a,0xd2,0xd2,0xfc,0x67,0xa5,0xaf,0x05,0x6b,0xf8,0x16,0x78, + 0x6a,0x3c,0xff,0x6d,0x49,0x5c,0x2f,0xb1,0xb2,0x38,0xcb,0xae,0x46,0xaf,0x4a,0x89,0x6e,0x06,0xb7,0x99, + 0xeb,0xe0,0x7a,0x3d,0xd6,0x8e,0x95,0x2f,0x12,0x78,0x31,0x7f,0x91,0x12,0x2d,0xa8,0x1f,0x39,0xda,0xe1, + 0x45,0xe4,0x7d,0x9c,0x5a,0x9f,0x9c,0x45,0xe9,0x69,0xec,0xd8,0xe6,0xa9,0xa2,0x89,0x5f,0x55,0x66,0x29, + 0xbd,0x12,0xae,0x0d,0x59,0xd5,0xf7,0x52,0x45,0x45,0xfc,0x09,0x63,0x50,0xfa,0x66,0xda,0x75,0xfa,0xdb, + 0x04,0x4e,0xd5,0xb0,0x3b,0xf1,0xb4,0xf1,0x20,0x0a,0x21,0x92,0x7e,0x99,0x37,0x61,0x1d,0x85,0x27,0xd9, + 0xde,0xde,0xe2,0xbf,0xc4,0x88,0x29,0x35,0xcb,0xd1,0xf7,0x70,0x74,0x64,0x2e,0xf3,0xda,0x08,0xdf,0x5a, + 0x2c,0x85,0x18,0x75,0x4d,0x95,0x28,0x69,0xed,0x05,0xef,0x4a,0xf9,0xb6,0xbd,0x3d,0x99,0x56,0x09,0x5f, + 0x20,0xf0,0x9a,0xb6,0x3f,0xd1,0x4a,0x9f,0xdf,0x94,0x90,0x81,0x39,0x5a,0x73,0xc4,0x8c,0x8e,0xee,0xdd, + 0xc4,0x95,0xd8,0x71,0x9e,0xa7,0x3c,0x79,0xbd,0xd0,0x91,0x63,0xc3,0xb2,0x8a,0x22,0xeb,0x5b,0xdf,0xec, + 0xd7,0x91,0x55,0x8b,0xdb,0xeb,0xae,0x97,0xfb,0x05,0x0d,0xeb,0x49,0xba,0xa9,0x10,0xe6,0x26,0x52,0x59, + 0x42,0x91,0xf0,0xd2,0xff,0x92,0x67,0x71,0x63,0x49,0x7e,0xf9,0xa0,0x66,0x11,0x71,0x87,0x47,0x2a,0x9b, + 0x04,0x3c,0x84,0x37,0xe1,0xe6,0x7a,0xb5,0xde,0xaa,0x39,0x68,0x7b,0x7d,0x6f,0xbc,0xeb,0xd6,0x5a,0x0e, + 0xf5,0x9b,0xa5,0x59,0x51,0xd1,0xa6,0xbe,0x7d,0x7d,0x87,0x49,0x33,0x06,0x60,0xa5,0x1a,0xb1,0x05,0xd5, + 0x72,0x76,0x62,0xb9,0x96,0x55,0xd6,0xea,0x15,0xa3,0x52,0xcc,0xa7,0x37,0x86,0x0f,0xfc,0x11,0x03,0x04, + 0xc0,0x07,0xaa,0x24,0x3f,0x8e,0x13,0x8d,0xf3,0x16,0x3f,0xb6,0xb7,0x29,0x5f,0x65,0x00,0xd3,0x6b,0x88, + 0x55,0xbb,0xc0,0x9e,0x1a,0xbf,0x23,0x78,0x95,0xc0,0x9e,0x6f,0x13,0x1f,0x27,0x2b,0x10,0xb5,0xd8,0xe6, + 0xfa,0x28,0x8b,0x63,0xdd,0x18,0x62,0x01,0x3e,0xe1,0xa7,0x51,0xa5,0x5a,0x22,0x2e,0x54,0x2c,0x81,0x3a, + 0x07,0xa8,0x3f,0xa6,0x95,0xc9,0x93,0x53,0x78,0x82,0x7d,0x96,0x14,0x50,0x8e,0x0c,0x9d,0x94,0xf6,0x41, + 0xe9,0xdc,0xf1,0x9b,0xea,0x54,0x32,0x10,0x2e,0xbe,0x91,0x04,0xe7,0x0f,0xc9,0xc8,0x4d,0xab,0x63,0x8f, + 0x2b,0xee,0x0e,0x75,0x6b,0x9f,0x86,0x46,0xa5,0x30,0x5b,0x7b,0x5e,0xb3,0xa5,0x30,0x1f,0x65,0x81,0xf4, + 0xdc,0xa9,0x5f,0xd0,0x9a,0xe1,0x30,0x6f,0xac,0xa4,0x7b,0xeb,0x84,0x5b,0x03,0xcd,0x47,0xb7,0x0d,0xb5, + 0x6b,0x81,0x68,0x2f,0x5f,0xdd,0x52,0x4d,0x4d,0xa4,0x73,0x9a,0x5d,0x4d,0xaa,0x99,0x43,0xb5,0x22,0xed, + 0xd8,0x5c,0xc5,0x10,0xf0,0x69,0xbc,0x7d,0x7c,0x0c,0x35,0x3f,0x13,0xd4,0xb0,0x61,0x98,0xb2,0xee,0x82, + 0xa0,0x39,0xca,0x83,0x27,0x59,0x06,0x67,0xb8,0xfe,0xa4,0x28,0xcc,0x37,0x80,0x4b,0x17,0x03,0x22,0xd1, + 0xdf,0xd6,0xeb,0xac,0x4a,0xb1,0xde,0x56,0xed,0x32,0xfa,0x5d,0xd5,0x2e,0xd5,0x48,0x6b,0x3d,0xdc,0xda, + 0x65,0x3b,0xd2,0x65,0xb8,0x1d,0x49,0x1b,0xcb,0x36,0x3a,0x9c,0x2e,0x73,0x7e,0x17,0x0c,0x0e,0xc5,0xae, + 0xcd,0x57,0xe9,0xa2,0xd8,0x31,0x5e,0xfb,0x7f,0xe8,0x05,0xaa,0x3d,0xd6,0x8a,0xb5,0xdc,0xcf,0x49,0xcd, + 0x84,0xae,0x69,0x0b,0xd6,0x32,0x1e,0x6f,0xdb,0x84,0x29,0xcf,0x59,0x2c,0x58,0x95,0x57,0xfa,0xee,0xe0, + 0x7e,0x8c,0xc2,0x7f,0x85,0x84,0x90,0xc0,0xd6,0x8e,0xd9,0xaa,0x4c,0xc4,0xb0,0x37,0x50,0x3b,0x50,0xf1, + 0x5b,0xed,0x36,0x44,0xf0,0x1f,0x6a,0x8e,0x70,0xe8,0x55,0xee,0x2b,0xad,0x47,0x33,0x43,0x77,0xdb,0xb6, + 0xa3,0x95,0x40,0x40,0xd9,0x8f,0xfd,0x52,0xc2,0x33,0x0f,0x7b,0x1b,0xa8,0xb2,0xb4,0x97,0x55,0xa6,0xd0, + 0x68,0xed,0x74,0xce,0x77,0x40,0x51,0x99,0x8e,0x00,0xeb,0x1c,0x1f,0x57,0xdd,0xed,0x38,0x7d,0xe3,0x56, + 0xae,0xef,0xec,0x38,0xc3,0x88,0xc5,0x70,0xa2,0x64,0xcb,0xdf,0xa3,0xc8,0x0a,0x70,0x5a,0xf4,0x71,0x41, + 0xe0,0xd3,0x09,0x8a,0x3e,0xcb,0x72,0x83,0xdc,0x8d,0x44,0xfe,0x81,0x07,0x68,0xf5,0xf6,0x21,0x29,0xc6, + 0xa0,0xa8,0xf0,0x46,0x9c,0xc2,0x75,0xf0,0x97,0xff,0x95,0xb0,0x19,0xa1,0x2b,0x0f,0x88,0xb0,0xaf,0x1c, + 0x28,0x47,0x33,0xb4,0xb4,0xd5,0x10,0xc3,0xb7,0xda,0xb2,0x68,0x5e,0x33,0x76,0x5f,0x62,0x11,0x24,0xca, + 0x84,0x54,0xb4,0xc2,0xce,0xe3,0x39,0xb5,0x91,0xb4,0x09,0xe1,0x3b,0xc0,0x2d,0x82,0x3c,0x01,0x5d,0x7c, + 0x5d,0x44,0x35,0xac,0xe3,0xf9,0xcb,0xed,0xed,0xa5,0xc2,0x51,0xee,0x59,0x18,0xf9,0x17,0xe1,0xd2,0xbf, + 0xc0,0x14,0x08,0xa3,0x9d,0xe1,0xef,0x6a,0x75,0x81,0xb5,0xe0,0x9f,0x42,0xdf,0x6d,0xfd,0xca,0xd2,0x04, + 0x77,0x6b,0xd9,0xe5,0xf3,0xb5,0x2b,0x55,0xbb,0xf4,0xac,0x58,0x70,0x01,0xac,0x59,0xb8,0x6c,0x02,0x89, + 0x18,0x8c,0x4c,0x78,0xee,0x4e,0xb6,0x2c,0x77,0x12,0xd6,0xdc,0x4f,0xea,0xce,0x1b,0x14,0x14,0x00,0x6f, + 0x7e,0xef,0xce,0x7c,0x27,0x9a,0x11,0x54,0xff,0x28,0xea,0x15,0xb6,0xa9,0xa8,0x55,0x12,0xf1,0xd2,0xeb, + 0x7e,0x2c,0xd7,0x9e,0xaf,0xc1,0x07,0x9d,0x25,0xe9,0x4e,0x26,0xa6,0x00,0x22,0xf0,0xf8,0xd5,0xad,0x84, + 0x55,0xe2,0xd6,0x6c,0xea,0x2f,0x6c,0xb3,0x3d,0xf8,0x07,0x1e,0x7e,0x0f,0x69,0x0c,0x77,0xff,0xb5,0x68, + 0x8c,0x2c,0x3c,0x9f,0xd3,0x04,0x63,0x61,0xf6,0x30,0x48,0x53,0xe9,0x33,0x68,0x84,0x11,0x5a,0x6c,0x0e, + 0x95,0xb6,0x6c,0x1a,0xc6,0xeb,0x8a,0x6c,0xce,0x84,0x69,0xf1,0x2f,0x08,0x7d,0xfe,0x90,0x60,0x51,0x00, + 0x8f,0x0a,0x6f,0xf0,0x83,0xbe,0x85,0x60,0x80,0x61,0xbd,0xa1,0x98,0xf4,0xf5,0x7e,0x60,0x2e,0x56,0xfc, + 0xb9,0xff,0x8b,0xf0,0x4a,0xa5,0x50,0x11,0xfc,0x41,0x14,0xb5,0xf9,0xf5,0x2d,0x94,0x83,0x83,0x6b,0x41, + 0x32,0x3f,0x24,0x5d,0x88,0xa5,0x61,0xd9,0xce,0xf8,0xc1,0x36,0x12,0x91,0xad,0x93,0x40,0xb9,0x8b,0x28, + 0x45,0x10,0xdc,0x6e,0x77,0x48,0x5c,0x69,0x91,0xc7,0x97,0xc6,0x71,0xa1,0x18,0x89,0x6a,0xe1,0x73,0xd2, + 0x85,0xb6,0xd8,0xa3,0x6a,0x56,0x2f,0x09,0x3e,0x3b,0xaa,0x4e,0x4d,0x41,0x6c,0x51,0xf1,0xd0,0x70,0xe5, + 0x85,0x16,0x3d,0x4e,0xc2,0xe4,0xb0,0x18,0x0f,0x27,0x12,0x3f,0x1a,0xa3,0xd8,0x0a,0x27,0x22,0x7c,0x07, + 0x67,0xa0,0x4e,0xf2,0xa4,0x7e,0x92,0x09,0x79,0x5c,0xe2,0x45,0xc4,0x01,0x6c,0x67,0xc6,0x5a,0x34,0x3d, + 0xe4,0x72,0xe3,0x70,0xe2,0x53,0x0d,0x75,0x9c,0x27,0xdd,0xc7,0x39,0xf2,0x20,0xf7,0xb0,0xbc,0x89,0xcf, + 0x31,0xe0,0x25,0xfe,0x99,0xd1,0x50,0x67,0x95,0x04,0x6c,0xa6,0x87,0x3a,0x0d,0xf3,0xc3,0xd9,0x78,0x38, + 0x6d,0x9d,0x83,0xc8,0x57,0x69,0x44,0xb3,0x86,0x53,0x26,0xf7,0x4f,0xe3,0xf2,0x49,0xb6,0x64,0x31,0xdb, + 0xd3,0x79,0x42,0x00,0xf6,0x13,0xad,0x35,0xfc,0xb0,0x1f,0x4e,0x79,0x88,0xa3,0xb9,0x8c,0x7a,0xea,0x05, + 0x4b,0xfd,0xb5,0x56,0x16,0xb8,0x8b,0x32,0x64,0x9d,0x4a,0xc8,0x21,0xb5,0x95,0xb4,0xf0,0x4e,0xd3,0x70, + 0x69,0x22,0x15,0xe8,0x12,0x19,0xdd,0xfe,0xb6,0x77,0x8e,0x96,0xfd,0x75,0xb7,0xa7,0x01,0xd3,0x17,0xb4, + 0x38,0x58,0x0e,0x66,0x39,0xea,0x30,0x99,0x9a,0xa6,0x9a,0x6e,0xb0,0x68,0xb6,0x01,0xc5,0x2f,0xf5,0xdd, + 0xa3,0x40,0xde,0xf8,0xe7,0x67,0x03,0x2f,0xe7,0x12,0x11,0x9f,0x77,0x58,0xd9,0x72,0xa8,0xf9,0x62,0x65, + 0xc9,0x74,0x16,0x15,0x2f,0x28,0xdd,0x8d,0x95,0x81,0xbe,0x5f,0x0a,0xb9,0xac,0x55,0x0c,0x7f,0x66,0x36, + 0x41,0xff,0xfa,0xa3,0xf6,0xeb,0x07,0xed,0xf0,0x1f,0xce,0x3b,0xe6,0x84,0x2a,0x0d,0x83,0x07,0xdd,0xfc, + 0x41,0x36,0x9b,0x15,0x71,0xf9,0x5d,0x9c,0x9c,0x9e,0x95,0x56,0xad,0xa6,0xd2,0xa2,0xec,0x1f,0xaf,0x71, + 0xe5,0x42,0x0c,0x23,0x81,0x6d,0x25,0xd3,0x4e,0xc3,0x03,0x10,0x6f,0x70,0x7e,0x36,0x30,0x7a,0x3f,0x61, + 0x3e,0xb0,0x14,0xa4,0x54,0x4a,0x05,0x18,0xcf,0x14,0x31,0xc1,0x41,0xa7,0xdb,0x5c,0xce,0x37,0x09,0x3c, + 0x81,0xf2,0x72,0x55,0x11,0x07,0x7b,0x10,0xf9,0x5c,0x13,0x7d,0xbc,0xb5,0x6b,0xba,0xb9,0xa3,0x02,0x77, + 0x4a,0xd4,0x20,0x1d,0xaf,0xcb,0x63,0x2f,0xba,0x02,0x18,0xad,0x86,0x59,0xe7,0x41,0xb7,0xcd,0x70,0x72, + 0x2e,0xc3,0x67,0x33,0x75,0x30,0x4e,0xca,0x45,0x5b,0x70,0xad,0x16,0xbf,0xc1,0x97,0xe3,0x52,0x7f,0x96, + 0x18,0x91,0x60,0x75,0xab,0xab,0xe2,0x75,0x24,0xaf,0x12,0x87,0x7a,0xe5,0x26,0x78,0x30,0x63,0xa9,0x8d, + 0x47,0x7b,0x6d,0xdd,0xf4,0x0c,0x18,0xb8,0x19,0xbb,0x52,0x3b,0x77,0xe7,0xa4,0x14,0x5d,0x28,0xcf,0xff, + 0xa0,0x36,0x20,0xed,0xa4,0x9a,0x8d,0x53,0x8c,0x9a,0x72,0x44,0xaa,0x39,0xbb,0xf7,0xa2,0x88,0x6a,0xdb, + 0xd2,0x51,0xd1,0x9a,0xc6,0x95,0x86,0x23,0x35,0x99,0x90,0xc5,0x62,0x66,0x67,0xd7,0xb0,0x12,0x7f,0xcd, + 0x0f,0xf6,0xb3,0xe4,0x74,0x60,0x45,0xc6,0x0d,0x7f,0xcb,0xfd,0x2a,0xa3,0x16,0x93,0x37,0x2c,0x92,0xce, + 0x2c,0x08,0xd5,0xc2,0x6f,0xed,0x6a,0x8d,0x98,0xbc,0xe1,0x4f,0x71,0xad,0x62,0x3d,0x88,0x6f,0x2b,0x46, + 0xca,0xbb,0x8a,0x62,0xc3,0x4e,0x15,0x30,0x65,0xa8,0xed,0x1d,0x08,0xbe,0xba,0xe4,0x4d,0xa1,0x5a,0xa8, + 0xe8,0xeb,0xbd,0xe4,0x1f,0xca,0xfa,0xf8,0x36,0x4b,0x04,0xb6,0xa6,0x56,0xd8,0x78,0xc7,0x81,0xa9,0xf6, + 0x88,0xab,0xb3,0x03,0xf3,0xca,0xe2,0xd7,0x28,0xfb,0x41,0xb2,0x5d,0x9f,0x04,0x7c,0x21,0x6f,0x2c,0xaa, + 0x8d,0x24,0xa4,0xcd,0xdd,0x76,0x6d,0x75,0x24,0x4a,0x3b,0x60,0xd3,0xda,0xbf,0x84,0x61,0xa5,0x71,0xa1, + 0x68,0xa8,0x2e,0x62,0x86,0xbd,0x7a,0x9e,0x65,0xc4,0xfe,0xaf,0x84,0xad,0x26,0x2d,0xd7,0x25,0x1a,0x61, + 0x42,0xa9,0xf0,0x97,0x24,0x38,0xad,0x67,0x8b,0x2b,0xba,0xee,0x48,0x59,0x6d,0x45,0x79,0xf6,0xde,0x63, + 0xfb,0x06,0x97,0xcb,0x9b,0x79,0xb2,0x46,0x5a,0x98,0xe6,0xec,0xfb,0x25,0xae,0x87,0xc1,0xae,0x4c,0xdc, + 0xb5,0x87,0xc1,0x1a,0x07,0xa9,0x3c,0x39,0x55,0x4e,0x47,0x5c,0x31,0xdd,0x38,0x35,0xfa,0x43,0x3e,0x22, + 0xfc,0xfa,0xca,0x62,0xad,0x72,0x0a,0x13,0xb7,0x3d,0x70,0xc7,0x75,0x0f,0xdc,0xda,0xa1,0x30,0xd4,0xa0, + 0x68,0x29,0x9e,0x40,0x95,0x4a,0x3b,0xbf,0x87,0x3e,0xff,0xeb,0xca,0x23,0x81,0x6b,0x8d,0xe9,0x6b,0x28, + 0x85,0x48,0x18,0xec,0xed,0xed,0xef,0x53,0xfc,0x7f,0x00,0x37,0x5a,0xa0,0xdb,0xa0,0xca,0xfc,0x1a,0x76, + 0x19,0x7b,0x72,0x30,0xbf,0x4f,0xfc,0x6f,0xa1,0x4c,0x79,0x7d,0x74,0xed,0xba,0xa3,0x60,0xb0,0x3a,0x4a, + 0xbd,0xfe,0xc8,0x3b,0x5a,0x1f,0xad,0x77,0x4f,0xfd,0x7f,0x42,0xfb,0x7d,0x67,0xf0,0x59,0x7f,0xf4,0xfb, + 0x9d,0xeb,0xb5,0xeb,0xad,0x0e,0x8f,0xc6,0x47,0xbb,0x47,0x47,0x63,0xca,0xfb,0xad,0x5b,0x85,0x9d,0xaf, + 0x10,0xad,0xbd,0xfd,0xcf,0xc4,0x77,0x8e,0x8e,0xee,0x6c,0x3b,0x6c,0xbe,0x0c,0x45,0xf3,0x76,0x8e,0xbd, + 0xba,0xe2,0x2f,0xc5,0x2d,0xfb,0x8e,0x1a,0x8c,0x8c,0xc6,0xe9,0xa7,0xbe,0x73,0x0a,0x49,0xa0,0xff,0x2b, + 0xcc,0xfc,0x58,0xbc,0x0f,0x9f,0xa6,0xc1,0xa1,0x63,0xc9,0xfd,0x9d,0xb1,0x6f,0x50,0x76,0xc3,0xcc,0x83, + 0x9d,0x6b,0x0d,0xe0,0x05,0x42,0xa1,0xc8,0x44,0xe4,0x35,0x62,0x70,0x3b,0x14,0xc1,0x96,0xd5,0x54,0xf8, + 0xfd,0x9b,0x57,0x2f,0x29,0x01,0x80,0x8d,0x18,0x8e,0xa9,0x76,0x63,0x1e,0xe6,0x56,0x45,0x38,0xca,0x85, + 0x28,0x05,0x4a,0x31,0x48,0x78,0x92,0x30,0xc1,0x11,0xe6,0xd8,0xfe,0x38,0x85,0x7b,0xd6,0x0e,0xee,0xd3, + 0x71,0x2c,0xd5,0xfe,0xaa,0x4b,0x3c,0x96,0xf5,0x43,0x7b,0x3e,0x81,0xd3,0xaf,0x95,0xe8,0x3b,0x3e,0xac, + 0x34,0x6b,0x7d,0xa9,0x5a,0x13,0x53,0xde,0xce,0x94,0x0a,0x25,0xd1,0xc5,0xff,0xd6,0xbd,0x6c,0xfc,0x44, + 0xf2,0xe9,0xcb,0xc6,0xe8,0xbf,0xb1,0x6c,0xdc,0x54,0x73,0xd9,0x9e,0x26,0x58,0xb9,0xfa,0xd2,0x49,0x65, + 0x6b,0xe9,0x38,0xe1,0xcf,0x2e,0x1d,0x77,0x5b,0x5b,0x3a,0x4e,0xb1,0x96,0x8e,0x7f,0xeb,0xa5,0xb3,0xfb, + 0x32,0xb5,0x50,0xde,0x95,0x0a,0x55,0x6e,0x1f,0x56,0x07,0xb2,0x78,0x71,0xc6,0x8f,0x4d,0xb0,0xfc,0x63, + 0x2b,0x50,0x98,0x53,0x66,0x73,0x65,0xd5,0x28,0xa6,0x7b,0xca,0x1a,0x53,0x2c,0x0c,0x93,0x82,0x31,0x33, + 0x9e,0x9e,0x68,0x2a,0x96,0xbd,0x68,0xcd,0xf4,0x51,0x0c,0x24,0xaf,0x4e,0xe0,0x76,0xa8,0xcc,0xc4,0x66, + 0x5a,0x59,0x38,0xc2,0xfc,0xb3,0x84,0x69,0xa7,0x16,0x73,0x2e,0xd8,0xc4,0x11,0xe6,0x81,0x6c,0xe8,0x28, + 0xa6,0x8f,0xb9,0x6a,0x09,0x87,0x4b,0x46,0xd8,0x69,0x82,0x2a,0x43,0xae,0x8c,0x0d,0xd9,0x62,0xb2,0xd3, + 0xb0,0x12,0xdd,0xd6,0x2d,0x1b,0xd9,0x16,0x55,0x19,0xa2,0x6a,0x4b,0xca,0x96,0x45,0xaa,0xb2,0x71,0x65, + 0x13,0xcb,0x0e,0x0b,0x57,0x8c,0x55,0xdb,0xbf,0x4a,0x3f,0xb4,0x58,0x6c,0x57,0xab,0x6c,0x30,0x61,0xc2, + 0xaa,0x8d,0x27,0x79,0x99,0x9a,0xe6,0x98,0xb2,0x6c,0x62,0x9e,0xaa,0x16,0x4f,0x0c,0x29,0xb4,0xa9,0x65, + 0x65,0x05,0xda,0x58,0x22,0xb6,0xcc,0xa5,0x85,0xe2,0xb5,0x86,0x1a,0x60,0x16,0xee,0xfe,0x7e,0x54,0x7c, + 0xe6,0x1e,0xd2,0xbf,0xce,0xdd,0x87,0x8f,0x8e,0x76,0xc3,0x71,0xdf,0x23,0x5c,0x83,0xc4,0xd0,0xc3,0xbf, + 0xa3,0xc0,0xa1,0x6c,0x67,0xfc,0x19,0xa1,0x9d,0xd5,0x5d,0xfa,0xbc,0x4b,0x9f,0x77,0xfb,0x2b,0x55,0x27, + 0x7c,0xf8,0xe8,0xdf,0xa9,0x8a,0xe7,0x8d,0x76,0xfd,0x24,0x0b,0x9d,0xc3,0x68,0xe7,0x8f,0xc7,0x3b,0xbf, + 0x1d,0x8f,0x0f,0x8f,0x8e,0xae,0x8e,0x8e,0x76,0x8e,0x8e,0x06,0xe3,0xcf,0x1c,0x3f,0xa3,0x2c,0xe0,0x30, + 0xa7,0x9f,0x64,0x7d,0xc2,0x74,0x81,0x37,0x92,0x4f,0xcf,0xf1,0xa3,0x2c,0xb4,0x90,0x9d,0xf3,0xfb,0x43, + 0xa7,0x9f,0x65,0xc4,0xa1,0xe9,0xc1,0x1d,0xed,0x8e,0xbc,0x47,0xbb,0xb4,0x2f,0x8d,0x62,0x47,0x47,0xbb, + 0x28,0xd9,0x77,0x0e,0x7f,0x7f,0x34,0xfe,0xec,0x11,0xcd,0x67,0x8e,0x2a,0x0f,0xb7,0x9e,0xbd,0x7a,0x7a, + 0xf0,0xeb,0xeb,0xaf,0x7b,0x48,0xef,0x3f,0xda,0x4d,0xfc,0xa5,0xa4,0xc3,0x82,0x67,0x26,0x9f,0x47,0x87, + 0xbb,0xfe,0x22,0xc3,0xdb,0xb1,0xf3,0xde,0x31,0x58,0x78,0xf7,0xbd,0x3b,0xa0,0x89,0x9c,0xfa,0xf5,0x23, + 0x4f,0x05,0x1d,0x30,0xf7,0xa5,0x7a,0x7a,0x39,0xcb,0xfc,0xcb,0x8c,0x58,0x69,0xff,0x34,0xf3,0x3f,0x64, + 0x04,0x41,0xfe,0x71,0xe6,0x5f,0x65,0xfe,0x41,0xe6,0x9f,0x67,0xfe,0xd3,0xcc,0x7f,0x9f,0xf9,0x6f,0x18, + 0x04,0x95,0xfd,0xae,0x32,0x8c,0xd6,0xaf,0x1e,0x7c,0x09,0x3e,0xce,0xf0,0x72,0x7c,0x87,0xfe,0x75,0xb6, + 0xe7,0xe5,0xd0,0x09,0x9c,0x87,0x74,0x28,0xb7,0x4f,0xf9,0xf3,0x11,0x3e,0x01,0x9f,0xf4,0xe3,0xae,0x73, + 0x97,0x7e,0x44,0x17,0x0b,0x64,0x6c,0x23,0xe3,0x6f,0xfb,0x7b,0xf8,0x3e,0x4a,0xf9,0xc7,0x57,0xfc,0x5d, + 0x3a,0x6b,0xff,0x15,0xcd,0x6d,0x9b,0x16,0x99,0x18,0xe0,0xd3,0x72,0x85,0xea,0x2b,0xaa,0xe6,0x0d,0x69, + 0x42,0x5f,0x77,0x66,0xad,0xa8,0xa5,0xd5,0xdf,0xbe,0xe2,0x12,0xaf,0x79,0xc0,0xd0,0x7c,0xa8,0x8f,0xf3, + 0x59,0xd6,0x4d,0x5a,0x10,0x96,0x79,0x9d,0x89,0x0f,0x85,0x23,0x96,0xb3,0x94,0xf0,0x5c,0xe4,0xbf,0xc3, + 0xfa,0xfe,0x63,0xf5,0xfb,0xe5,0x4e,0x96,0x06,0xbb,0xfe,0x73,0xfc,0xbc,0xdc,0x59,0x21,0x89,0x7e,0xfe, + 0x48,0x3f,0xdd,0xc1,0x67,0x74,0xa1,0x16,0x7d,0x1a,0x4d,0x92,0xae,0xb2,0x19,0x7f,0x0f,0x3e,0xf3,0x76, + 0xfd,0x6f,0x28,0xd7,0x27,0xb8,0xf2,0xe9,0xba,0x1d,0x13,0x94,0x51,0x09,0xfb,0xa7,0x37,0xba,0xb3,0xeb, + 0xbf,0x64,0xa8,0x70,0x57,0x47,0xde,0x1d,0x1a,0xf4,0x8b,0x8c,0xcd,0xc3,0x3e,0xa3,0x1f,0xfe,0x4f,0xc8, + 0x09,0xd0,0x33,0x8b,0x9e,0x77,0xfd,0x27,0x94,0x70,0x34,0x38,0xfc,0x7d,0x30,0xee,0x53,0xd1,0x5f,0xb2, + 0x4e,0xe3,0x1d,0xf7,0xfb,0x24,0xfc,0x3e,0xb9,0xc5,0x50,0xc9,0xab,0xb4,0x21,0xc2,0xd8,0xff,0x3e,0xb1, + 0x8d,0x13,0xe9,0x12,0x7e,0x8b,0x9e,0xdf,0x5f,0xcc,0xd3,0x22,0x78,0xf9,0xe6,0x68,0xda,0xdf,0xf5,0xbf, + 0x43,0x0a,0x7f,0xd3,0x38,0x7e,0xce,0xc2,0xc3,0x5f,0x13,0xba,0x73,0xfc,0x6b,0x5a,0xde,0x83,0x1b,0xee, + 0x16,0x91,0x25,0x69,0xaf,0x12,0xf2,0x34,0xa4,0x59,0x18,0x7e,0xdc,0x7f,0x11,0x2d,0x58,0x24,0x7b,0xe8, + 0x5c,0xee,0xf0,0x63,0x8a,0x33,0x86,0x74,0x16,0x3f,0x79,0xd2,0x20,0x08,0x9d,0xf1,0x6a,0x45,0x29,0xea, + 0x5b,0xab,0x86,0xaa,0xdb,0x86,0x13,0xe1,0xb9,0x4b,0x6e,0xae,0xcb,0x9d,0x64,0x26,0xdb,0x9c,0x85,0xc9, + 0xc8,0xa1,0xb6,0xe8,0x54,0xe2,0x50,0x06,0xc4,0x22,0x46,0xa1,0xd0,0xe4,0xba,0x28,0x9e,0x73,0x95,0xdd, + 0x72,0x2d,0xcd,0xb4,0x31,0x09,0x7f,0x65,0x8a,0xfc,0x9f,0x25,0xfb,0xca,0x62,0x6d,0x23,0xee,0xd0,0x17, + 0xd7,0x19,0x27,0xd9,0x7b,0xea,0xfb,0x5b,0xa4,0x43,0x69,0x1f,0x34,0xec,0x84,0x10,0xb4,0x22,0xf7,0x06, + 0xc9,0x8c,0x70,0x84,0xd3,0xcf,0xa9,0x7f,0x9a,0xfe,0x5d,0x5d,0xe5,0x2e,0x1d,0x72,0xff,0x37,0x54,0xba, + 0x8e,0xdf,0x2f,0x02,0x94,0x13,0xfc,0x1d,0x4c,0xd4,0x79,0x9c,0xab,0x7e,0x69,0x50,0x73,0x0c,0x8a,0x56, + 0x57,0x06,0x54,0x72,0x82,0x1a,0x42,0x1e,0x4d,0x93,0x4c,0xfa,0x9f,0xa3,0xff,0xaa,0x49,0xbb,0x57,0x2e, + 0xc5,0x5d,0x4a,0x1f,0x73,0xd5,0xc7,0x52,0xf5,0xa1,0x7d,0x16,0x95,0xee,0xb2,0xd9,0x15,0x25,0xc8,0xa2, + 0xc3,0xf8,0xe1,0x5b,0xfc,0xae,0xf5,0x92,0xa8,0x16,0x97,0x70,0x8f,0x3f,0x9a,0x0c,0xb0,0x74,0x08,0x45, + 0x07,0x4a,0x47,0x7e,0xd1,0x02,0xc0,0x09,0x35,0x38,0xbb,0xb1,0xff,0x07,0x61,0x06,0xaa,0x46,0x1c,0x03, + 0xc0,0x0e,0xf2,0x7b,0xfd,0xc2,0xfd,0x73,0xe6,0x57,0xac,0x44,0xa0,0x1e,0xd5,0x6e,0x7b,0x46,0xb3,0xdf, + 0x50,0x33,0x81,0x2d,0xf6,0xee,0xa7,0xc1,0x8a,0xdf,0x5e,0xc5,0xbd,0xa1,0xe1,0x45,0x8c,0x0c,0xbd,0x54, + 0xca,0x5c,0xbe,0x0a,0xad,0x5b,0xbd,0x5f,0x66,0xde,0x56,0x77,0xcf,0x77,0x59,0x45,0xe0,0x8e,0xf6,0xc0, + 0xf1,0x36,0x9a,0xf7,0xc2,0x5e,0x23,0xb2,0xba,0x7a,0x52,0x90,0x47,0xcc,0x3b,0xec,0x40,0x56,0x45,0x6c, + 0x34,0x0f,0x9a,0xa6,0xf1,0xac,0x32,0x8f,0x1f,0xe8,0x46,0xd7,0x1e,0xde,0x40,0x5d,0xbb,0x0c,0x7a,0xbd, + 0xe4,0xbe,0x9c,0x63,0x71,0xf7,0x02,0x95,0xa0,0xac,0x37,0xa2,0x6a,0x92,0xd0,0x0b,0xe8,0x53,0x3d,0xbd, + 0x49,0x83,0x77,0xfb,0x2e,0xc7,0x60,0x10,0x3b,0xfa,0x91,0x73,0x9c,0xba,0x94,0x8f,0x33,0x40,0x7f,0x20, + 0x24,0x22,0x10,0x70,0x86,0xa9,0xfd,0xa2,0x09,0x05,0xfa,0xbe,0xd3,0x73,0xfa,0x51,0x89,0x50,0x37,0xf5, + 0xb1,0xeb,0x47,0x55,0xea,0xb4,0xbe,0x00,0x41,0xfd,0x37,0xe1,0x4b,0xc7,0x33,0x5c,0x11,0x9b,0xed,0x54, + 0x36,0xa1,0x15,0x1e,0xc8,0x08,0xc3,0x9a,0xe3,0x43,0xbf,0xa3,0x4d,0x4b,0x6e,0x4d,0x82,0xb6,0x58,0xce, + 0xbb,0xac,0x81,0xb7,0x5a,0x39,0xe8,0x07,0x67,0x5a,0xe1,0x81,0x7c,0x19,0xef,0x54,0x99,0xf8,0xe9,0xd0, + 0xb1,0x96,0xcc,0x59,0x84,0x53,0x5d,0xe5,0xf2,0x6f,0x67,0xf8,0x6f,0xb1,0xac,0x80,0x38,0xc1,0xf1,0x9d, + 0xba,0x29,0x89,0xd3,0x27,0x36,0xc5,0x1b,0x1d,0x27,0xf2,0xe5,0xd3,0x11,0xea,0x33,0x1f,0xee,0xf4,0x5d, + 0x69,0x1f,0x63,0x1f,0x39,0x81,0x2a,0x49,0xcb,0x1b,0x1c,0xff,0xcb,0x14,0x8e,0x90,0x44,0x4c,0x5e,0x7d, + 0x99,0x1d,0x81,0xa2,0x28,0x94,0x62,0x77,0xc0,0xbd,0xd6,0x16,0x9b,0x92,0x26,0x21,0x92,0x07,0x6a,0x5c, + 0x23,0x57,0xda,0x42,0x37,0xc4,0x21,0x74,0x18,0xc3,0x52,0x73,0x0a,0x29,0xde,0xb9,0x73,0x49,0x0d,0xbb, + 0xb2,0xe5,0x32,0x5e,0x27,0xc8,0x3c,0xee,0x28,0x09,0x69,0x26,0x54,0x94,0x3e,0x2f,0xb9,0x11,0xbb,0x13, + 0xef,0x9a,0x0a,0x3c,0xdc,0x63,0x74,0x49,0xe3,0xa2,0x01,0x98,0x70,0xdb,0x87,0x54,0x7e,0xec,0x89,0xee, + 0x0b,0x4a,0xd1,0x02,0xd4,0x8a,0x69,0xf7,0x2f,0x94,0xe5,0xe9,0x3a,0x55,0x3a,0xa5,0xf6,0xf7,0xa1,0x47, + 0x20,0xf5,0x0d,0x7c,0xdd,0x99,0x30,0x1c,0x3a,0x1f,0x07,0x2d,0x82,0xe9,0xfe,0x22,0xa8,0xb4,0xb6,0xdb, + 0xda,0x2c,0x97,0xea,0xb4,0x16,0x0d,0xa1,0x1b,0xea,0xbb,0xc7,0x83,0xcf,0x3e,0x06,0xc4,0x01,0x82,0x96, + 0x4e,0xc8,0x46,0xac,0xd2,0xc0,0x57,0x84,0xd7,0xd8,0x7f,0x3c,0x6e,0x2f,0x89,0x1a,0x0c,0xbf,0xdb,0x6a, + 0x5e,0x08,0x80,0x04,0x3b,0x6e,0xba,0x96,0xb6,0x64,0x55,0x30,0x28,0xe8,0xf6,0xf9,0xf3,0x30,0x1b,0xe9, + 0x51,0x06,0x2a,0x03,0x3a,0x68,0x04,0xbd,0x81,0x1a,0x95,0xbf,0x0c,0x1b,0xc7,0x5a,0xd6,0x67,0x08,0x74, + 0xdd,0x9d,0xa7,0xac,0xc6,0xe1,0xb1,0x44,0xca,0xf0,0x02,0x2d,0x79,0x65,0x86,0xf2,0x66,0xc5,0x2b,0xb2, + 0xf4,0x86,0x13,0x2a,0x40,0xb7,0x1d,0xc0,0xaa,0xd6,0x8e,0xd2,0x33,0x31,0x8f,0x94,0x43,0xa7,0x3f,0xf3, + 0x7c,0xd9,0x09,0xe9,0xdf,0x77,0xf4,0xf9,0x51,0xab,0x3d,0xf7,0x67,0x95,0x64,0xc5,0x2d,0x56,0x2b,0x28, + 0x4c,0xcb,0x3e,0x9c,0xcc,0x97,0x74,0x3b,0x39,0xf5,0xa7,0x2b,0x47,0x9b,0x0b,0x56,0x1b,0xb1,0xf5,0x75, + 0x5a,0x17,0x13,0x12,0x26,0xed,0xc4,0xfd,0xe6,0x15,0x96,0x69,0xc4,0x16,0x63,0x7c,0x29,0x1a,0x0c,0x32, + 0x5c,0x8b,0x44,0x02,0xf0,0x14,0x18,0xb6,0x94,0xe0,0xc1,0xaf,0x99,0xe7,0xb9,0xb9,0x09,0x43,0x74,0x75, + 0x36,0xb0,0x26,0xc6,0xf2,0x35,0xd1,0x53,0x51,0x97,0x4b,0x0a,0x10,0xb2,0xca,0x01,0x17,0x84,0x95,0xc4, + 0x15,0xa1,0x5c,0x4c,0x54,0x7b,0x25,0x27,0x0d,0x7e,0xcb,0xe1,0x70,0xe7,0x49,0xfc,0x63,0x3c,0x2b,0x5f, + 0x2d,0xe2,0x14,0x45,0xca,0xcc,0xaf,0x2d,0x45,0x50,0x24,0x7e,0x43,0x16,0x1a,0xfc,0x14,0xfb,0x96,0xf0, + 0xe0,0xe7,0x8c,0xf8,0x87,0xe9,0x72,0xd2,0xad,0x72,0xc3,0xb1,0x1c,0xf9,0x94,0xeb,0x00,0x59,0x3a,0xe4, + 0x9f,0xc7,0x1e,0x21,0x06,0xef,0xb2,0x84,0xc0,0xc4,0xc7,0x8a,0xfc,0xd0,0x4d,0xa2,0xf6,0xe0,0xe8,0x05, + 0xd0,0xce,0x77,0x36,0xe0,0x1f,0x92,0x75,0x5f,0x9f,0x04,0x9f,0x78,0x97,0x24,0x55,0xee,0x3c,0x7c,0xf3, + 0x30,0x26,0xd1,0x85,0xfa,0x6e,0x3c,0xc2,0x89,0x8d,0xe1,0x19,0x15,0x02,0xa3,0x7f,0x19,0x96,0xef,0xe8, + 0xea,0xce,0xf1,0xb8,0xbf,0x3a,0x22,0x0a,0xdb,0x1b,0x7f,0x36,0x3a,0xf2,0xc0,0xee,0x85,0x8f,0x56,0xbf, + 0xeb,0x11,0xd0,0xcf,0x23,0x77,0xd7,0xff,0x5e,0xd5,0x38,0x24,0xb6,0x8e,0x98,0xbb,0xe3,0x3b,0x63,0x54, + 0x1d,0x83,0x33,0x24,0xea,0xba,0x91,0xb8,0x3a,0x3a,0xbc,0x4b,0xf4,0xfd,0xdd,0x31,0x7d,0x38,0xf4,0xe1, + 0xe0,0x83,0xc8,0x60,0xfc,0x69,0x96,0x1d,0x7b,0x9f,0x51,0xb3,0x44,0xb9,0x7f,0x0b,0x52,0xa7,0x98,0x04, + 0xf7,0xfe,0x0e,0x67,0x46,0xc1,0x57,0xa2,0x66,0x11,0xec,0xdf,0xf7,0x65,0xbd,0xef,0xdf,0xf3,0x97,0x8b, + 0xe0,0xfe,0x97,0xc4,0x21,0xcf,0xca,0xe0,0xfe,0xdf,0xfd,0x1c,0xaf,0x27,0xc1,0xfd,0xaf,0x7c,0x78,0xc1, + 0x0e,0x1e,0xec,0xf9,0xf2,0x80,0x19,0x1c,0x7e,0xe9,0x3f,0xf8,0x82,0x98,0x90,0x7f,0x66,0x5d,0x7e,0xb9, + 0x80,0x72,0xfa,0x00,0x1e,0xcb,0x67,0xd6,0x90,0xd8,0xa6,0xdf,0x32,0x08,0x83,0x08,0x1e,0xf4,0xa1,0xc6, + 0x0f,0x00,0x48,0x74,0x1a,0x89,0x08,0x71,0x08,0x8d,0x0a,0xce,0x33,0x65,0xd4,0xef,0x67,0xf2,0xe0,0xc8, + 0x45,0x10,0x97,0x2c,0xf8,0x67,0xe6,0xd6,0x71,0x43,0x8f,0x30,0x4e,0x4f,0xa5,0x4c,0x96,0x39,0x36,0xe9, + 0x80,0x33,0xe8,0x00,0x4f,0xca,0x7c,0xce,0x35,0xb6,0x74,0x01,0x4a,0xf8,0x01,0x1a,0xba,0x3e,0xfb,0x0e, + 0xad,0xe5,0x71,0x8a,0x64,0x46,0xf3,0x7a,0x16,0xfd,0x96,0x0c,0xc8,0x0b,0x6a,0x39,0x48,0x90,0x2c,0x5e, + 0x3b,0x64,0xdd,0x15,0xaf,0x50,0x77,0x41,0x18,0x49,0xa9,0xde,0xf6,0xb6,0x1e,0xa1,0xe4,0xf1,0x98,0xf7, + 0xd0,0x5e,0x32,0x9d,0xce,0xe3,0x4f,0xaa,0xb6,0x0f,0xb9,0x02,0xef,0xcf,0xa7,0xd4,0xba,0x07,0xf8,0xff, + 0x95,0x36,0x82,0xb8,0xc6,0xa6,0x3f,0x16,0xb8,0x81,0xab,0xa2,0xda,0x75,0x6c,0xec,0xf1,0xa9,0x6c,0xac, + 0x5f,0xc3,0x10,0x6b,0x78,0x2b,0x49,0xdb,0x7e,0x70,0xd0,0x1c,0x87,0xcf,0xab,0xac,0x85,0xaa,0x96,0x4e, + 0xa8,0xa5,0x94,0x5a,0xba,0x0b,0xf9,0x17,0x9d,0xb7,0x3e,0x98,0xef,0xaa,0x55,0xdc,0x7d,0x16,0x25,0x0d, + 0x47,0x47,0x95,0x3a,0x22,0x1e,0xc3,0x46,0x42,0xea,0x04,0x8a,0x66,0xf2,0x6e,0x28,0xce,0xd1,0xa7,0x1d, + 0x5f,0x95,0x77,0x3c,0x35,0xe6,0xc9,0x3c,0x8b,0xce,0x11,0x57,0xf7,0xdf,0xb2,0xb6,0xd7,0xd3,0xcc,0x38, + 0xcb,0xe4,0x9f,0x90,0x44,0xd2,0x9d,0x88,0x3f,0xab,0xd5,0x6f,0x2a,0xd1,0x08,0x2f,0x8b,0xf0,0x57,0x88, + 0xe1,0xb5,0x62,0xba,0x63,0x32,0x9e,0x12,0xc7,0xa0,0x3d,0xb8,0xe3,0x9d,0xf1,0xdb,0x38,0x45,0x04,0xbf, + 0x7a,0x69,0x25,0x75,0x34,0xe5,0x0c,0xc7,0x11,0x5e,0xba,0xac,0x68,0xf1,0x6b,0xc6,0xa6,0xd1,0x26,0xdd, + 0x33,0xd1,0xbb,0x6a,0x08,0x74,0xb5,0x7a,0x9f,0x0e,0x95,0x6f,0xe4,0x0f,0x27,0xb1,0x09,0xc4,0xd8,0xb1, + 0x91,0x5b,0xc6,0x8c,0x57,0xf9,0xc7,0x4c,0x27,0xf1,0x73,0x58,0x6b,0xf1,0xaf,0x66,0xc0,0x41,0xf8,0xe8, + 0x8e,0xa3,0xd0,0xb5,0x85,0x42,0x47,0x47,0x27,0x4e,0xdf,0x99,0x12,0x0e,0x9f,0x41,0x00,0x47,0x40,0x5f, + 0x22,0xa0,0x2e,0x2d,0xf2,0x07,0x76,0xcc,0x36,0x81,0xf0,0x0f,0xd7,0x9e,0x7f,0x95,0x94,0x67,0x7e,0x74, + 0x15,0x25,0xa5,0xcf,0x86,0x01,0x3e,0xfb,0x40,0x57,0xca,0xf3,0xfc,0x0c,0xe4,0xb3,0xe3,0x52,0x9f,0xe3, + 0xd2,0xfb,0x57,0x84,0x56,0x63,0xff,0x03,0xa4,0x7e,0x0a,0xd9,0xf8,0xc4,0x9c,0x65,0xf0,0x76,0xc8,0x9e, + 0x58,0x7c,0x99,0x81,0xf6,0x00,0xa6,0xfd,0x2e,0x8a,0xbb,0x50,0x62,0x63,0x24,0x44,0x3d,0x3b,0x41,0x4b, + 0xd2,0x25,0x5c,0xf7,0x9c,0x2c,0x4f,0x4f,0x21,0x26,0x54,0xab,0x50,0x05,0x5d,0x71,0x94,0x9f,0x1a,0xdc, + 0x09,0xea,0x76,0xa0,0x69,0xad,0x30,0x35,0xaf,0xcf,0x33,0x94,0x20,0xc1,0x8d,0x39,0xcb,0xa0,0xc4,0xef, + 0x28,0x2b,0xb0,0x77,0xb6,0x43,0x28,0x1d,0x08,0xff,0xe8,0x88,0x50,0x3e,0xfd,0x53,0xb5,0xda,0xc8,0xa0, + 0x3e,0xdc,0xf7,0x4d,0xc9,0x8f,0x88,0x22,0x36,0x5a,0x8d,0xb2,0xc7,0x60,0xc2,0x8b,0x88,0x7d,0x1c,0x6e, + 0xed,0x7b,0xfe,0x49,0xa6,0xf6,0x93,0x0d,0xc4,0x20,0xe1,0xb6,0x22,0xb6,0x0c,0xd3,0x87,0x1f,0x32,0xdb, + 0x39,0xcb,0x87,0x8c,0xed,0x70,0xf1,0x92,0x73,0x96,0x85,0x65,0x05,0xd5,0x27,0xf8,0xa5,0xef,0x7a,0x80, + 0x93,0x7f,0x8c,0x14,0xeb,0x26,0xe7,0xc4,0x2b,0x24,0x36,0xae,0x6a,0xce,0xb8,0xc8,0x00,0xda,0x65,0xc7, + 0x41,0x78,0x29,0x07,0xe1,0xb4,0x59,0xa0,0x29,0xa6,0xa1,0x32,0x1f,0x5a,0x65,0xb2,0xa2,0x6c,0x16,0xba, + 0xc4,0x10,0x68,0x27,0x92,0x8b,0xa4,0x44,0x40,0x44,0x65,0x94,0x4b,0xe4,0x29,0x2b,0x9f,0x6c,0xed,0xb3, + 0xae,0x27,0x62,0x9c,0xe3,0x74,0xfc,0x72,0x46,0xa5,0x78,0x98,0x3e,0xd6,0x0b,0x74,0xea,0x7e,0xcb,0x32, + 0xa3,0xb9,0xc8,0xf4,0x6b,0xd9,0xc7,0x0b,0x1e,0xd4,0x5a,0x97,0x27,0xf2,0xb6,0xe0,0xda,0x56,0xd3,0xb9, + 0xf6,0x23,0xc0,0xfa,0x77,0x7e,0x51,0xc5,0xaf,0x17,0x4d,0xbe,0xa5,0xa7,0xde,0xde,0xf0,0xdc,0x90,0xe3, + 0xa7,0xec,0x58,0xe3,0x41,0x96,0x92,0x59,0xd5,0x3f,0x09,0xa3,0x2a,0xa8,0x7d,0xf2,0x28,0x24,0xae,0x27, + 0x42,0x28,0x98,0xb9,0x2e,0x8a,0x43,0x4e,0xf3,0x2a,0x10,0x52,0x4d,0xd3,0x94,0x21,0x3f,0xfb,0xa2,0xb4, + 0x65,0x80,0x69,0x37,0x34,0x79,0x14,0x26,0xc3,0x09,0x55,0x28,0x07,0xec,0x65,0x85,0xff,0xb0,0xbf,0x75, + 0x96,0x4c,0x60,0xfc,0x43,0x5d,0x3c,0xc4,0x02,0x26,0xdc,0xed,0xce,0x3e,0xe7,0x33,0x77,0xe4,0x9c,0xe4, + 0xa0,0xf0,0x8a,0x11,0x13,0x56,0x39,0x3b,0xad,0xe7,0x0f,0x9a,0x3f,0x2d,0xf7,0xd6,0x9e,0x78,0x46,0x70, + 0x16,0x5c,0x8a,0xe3,0xe0,0x76,0x96,0xdb,0xe7,0x72,0x7e,0x6d,0x20,0xb2,0x82,0xb4,0xa8,0xda,0x39,0x02, + 0x3c,0x9d,0x60,0x13,0xa1,0x8c,0x5e,0x49,0x65,0x68,0xcb,0xca,0x41,0x45,0x5f,0x32,0xb4,0xcd,0xf1,0xe2, + 0xdc,0xa0,0x2a,0x39,0x63,0x49,0x8b,0x12,0x0f,0x59,0xc8,0x97,0x10,0x02,0x27,0x96,0xe4,0x4d,0xe6,0x66, + 0x46,0x9d,0x0d,0x76,0xa9,0x59,0xe3,0x4d,0x7c,0x11,0x3e,0xce,0x0e,0xa7,0x08,0x11,0xc5,0x7f,0x6b,0xf2, + 0x6f,0x22,0xe0,0x8e,0x8a,0xa3,0xa3,0x37,0x44,0xba,0x79,0xee,0xc3,0x5d,0xa7,0x3f,0xd5,0x82,0x70,0x8f, + 0x4e,0x7c,0x02,0x5e,0x1a,0xd6,0x59,0x5a,0xb4,0xbd,0xb0,0x65,0xda,0x0c,0x1e,0x1a,0xd2,0x8c,0x25,0xac, + 0x4f,0xe3,0x99,0x32,0xff,0xa7,0xfc,0x4e,0x62,0xe1,0x38,0x36,0x72,0x58,0x39,0xa0,0xda,0x85,0x18,0x9d, + 0xfa,0x2e,0xa4,0xe7,0x9d,0x9d,0x47,0xbb,0xa7,0xc4,0x62,0xd0,0xad,0x6f,0x17,0x39,0x3a,0x7c,0xfa,0xec, + 0xf1,0xc1,0xe3,0xa3,0xc3,0xaa,0xe4,0x78,0x6c,0x4a,0x42,0xa8,0xec,0x4e,0x7d,0x71,0xbb,0x0c,0x7d,0x16, + 0xe5,0xb3,0x89,0xc3,0xe8,0x9d,0x45,0x72,0x51,0xf2,0x07,0x94,0x20,0x1c,0xc8,0x5f,0x08,0xe6,0xb5,0x8e, + 0xce,0xce,0x99,0x1e,0x6f,0x1c,0x9e,0xf9,0x39,0x35,0xb4,0xdc,0x99,0x21,0x12,0xb5,0xb1,0x43,0xba,0x0c, + 0x2d,0x65,0x80,0x87,0x22,0x03,0x80,0x1a,0xe6,0x25,0x2f,0xfe,0x32,0xd3,0x11,0xb5,0xb4,0x05,0x99,0xad, + 0x3a,0xb0,0x73,0xf4,0xfe,0x7e,0x2c,0x55,0x2e,0x18,0x7c,0x4b,0x15,0x9e,0x11,0x91,0x2a,0x94,0x0a,0xa2, + 0x0a,0x8f,0xa0,0x1c,0x96,0x54,0xa7,0xf0,0x81,0x0f,0x5b,0xdb,0xd4,0xbd,0xe8,0xdf,0x27,0x16,0x4f,0xa1, + 0xfa,0x35,0xf4,0xba,0x66,0x8d,0x3e,0x4f,0xed,0x3e,0xc7,0x8f,0xa4,0xbf,0x53,0xee,0x2f,0x75,0x4f,0xfb, + 0xf7,0xec,0xea,0x28,0x0f,0x0d,0x69,0x76,0x4f,0xeb,0xce,0x45,0xe5,0xf0,0x03,0x0a,0x7e,0xc0,0xdb,0xb2, + 0x0e,0x68,0x68,0x2a,0xa0,0xfc,0x89,0x29,0x3f,0x91,0xf2,0x27,0xd2,0xef,0x71,0xb8,0x1c,0xa6,0xee,0x89, + 0x55,0x8f,0x16,0xf0,0xe4,0x70,0x7f,0xec,0x1f,0x33,0x5b,0x6a,0xb7,0x71,0xd5,0x8c,0x95,0x52,0x9a,0x46, + 0x23,0x69,0xd4,0x44,0xfe,0xbb,0xd6,0x1e,0xff,0x4a,0x34,0xc5,0x9c,0x47,0x80,0xc3,0x82,0x53,0x16,0x2c, + 0xd7,0xd4,0x65,0x69,0x0f,0xd5,0x3a,0x55,0xc3,0x2d,0x1c,0x06,0xd5,0x6c,0x91,0xb1,0xf1,0x47,0x66,0x12, + 0x72,0x4a,0x18,0x7a,0xa9,0x9b,0xd5,0x06,0xac,0xfc,0x47,0xea,0x40,0x9c,0x38,0x4f,0x95,0x0d,0xe6,0x12, + 0x67,0xf1,0x0d,0xdd,0xe2,0x84,0x36,0x30,0x98,0xd4,0x4d,0xea,0x95,0xe1,0xfb,0x7c,0xe9,0xe7,0xeb,0xb5, + 0x2b,0x56,0x53,0xde,0x75,0x2b,0xd4,0x42,0x1a,0x1a,0x37,0x85,0x6c,0x75,0x51,0xb5,0xc9,0xdc,0xbf,0x60, + 0x14,0x3a,0xbf,0xa9,0xb8,0x0e,0xcf,0x69,0x14,0xfe,0x9c,0x3f,0x33,0x71,0x00,0x9d,0xf3,0x03,0xb9,0x9e, + 0xe6,0x32,0x9c,0xb0,0xb7,0x86,0xad,0xad,0x84,0x7d,0xf0,0xc8,0xf0,0x15,0x0c,0x4f,0xf9,0x50,0x8b,0x64, + 0x6a,0x86,0x13,0xbf,0x37,0x5c,0x3c,0x9c,0x0d,0x17,0x5a,0xc9,0xef,0x4c,0x57,0x38,0x5c,0x8c,0x87,0x0b, + 0xea,0x74,0x07,0xd6,0x72,0x67,0x98,0x93,0x06,0xa0,0xbb,0x8e,0x73,0x17,0xeb,0xc6,0x6f,0x54,0x67,0x87, + 0xf7,0xc7,0xdb,0xdb,0x4a,0xa1,0x13,0x3f,0x7c,0x95,0xfc,0xc0,0x4e,0x7e,0x60,0x92,0x3f,0xb7,0x93,0x3f, + 0x57,0xd6,0x84,0x97,0xdc,0xcc,0x6a,0x85,0x82,0xf8,0xf7,0x73,0xfa,0xd7,0x71,0xfc,0x8b,0xd0,0x89,0xb4, + 0x8b,0x6b,0xb8,0x6f,0x96,0x16,0xf6,0xc7,0x23,0x7d,0x46,0x9e,0xc5,0x70,0xa9,0xfb,0x32,0xbe,0x82,0x4b, + 0xd4,0xe2,0x9b,0x2c,0xff,0x8e,0x4a,0x05,0xdd,0xb9,0xc3,0x29,0xcd,0x48,0xe9,0xae,0xa3,0x11,0x9f,0x49, + 0xec,0xe0,0x5f,0xa5,0x7b,0x49,0xc7,0x68,0xbd,0x5e,0xb2,0xea,0x33,0x6f,0x32,0x2b,0xb0,0x12,0x66,0xb5, + 0x6f,0x9c,0x20,0x6d,0xe0,0x4a,0x81,0xba,0x29,0x3c,0xd2,0x87,0x1c,0x17,0xa1,0x81,0xec,0x53,0xd8,0x92, + 0xf1,0x93,0x37,0xfd,0x82,0x47,0x9b,0x74,0xea,0xad,0x69,0xfb,0x81,0x8b,0x32,0x3f,0x66,0xd7,0x0b,0xfb, + 0xcd,0x73,0x77,0xa0,0x4d,0xc6,0xcf,0xf5,0xc7,0x53,0xf5,0x01,0xd8,0xb9,0x34,0xf7,0xdb,0xb9,0x71,0xec, + 0x7c,0xe9,0x11,0x48,0x4f,0xd4,0x71,0x3f,0x87,0x1b,0x57,0xeb,0x7b,0x69,0x7d,0xcf,0xac,0x6f,0xf7,0x69, + 0x78,0x6e,0x63,0x2c,0x9f,0x70,0xe1,0xc3,0x3d,0x02,0xfd,0xcb,0x7e,0xf8,0xd4,0xaf,0x35,0x7e,0x50,0xbb, + 0xf7,0xf7,0xfc,0x4b,0x20,0x9c,0x4b,0x6f,0x7d,0xc9,0xe2,0x48,0xca,0x25,0xac,0x08,0xcb,0x71,0x83,0x49, + 0x0f,0x2a,0x64,0x7a,0xc0,0x3a,0xa6,0xb1,0xa8,0x29,0xb7,0x50,0x6d,0xac,0x4d,0x64,0xd7,0xb9,0xcb,0x32, + 0x22,0x89,0x12,0x72,0x96,0xf9,0xd6,0x33,0x44,0xed,0xf6,0xb3,0x24,0x2b,0xf6,0x35,0xd8,0x21,0x54,0x69, + 0xdd,0x88,0x7e,0x17,0x48,0x6c,0x80,0x94,0xce,0xb2,0x37,0x03,0x97,0xca,0xf5,0x5b,0xa8,0x3b,0x30,0x98, + 0xbb,0x50,0xe8,0xc9,0xba,0x16,0x23,0x58,0xbf,0xca,0x89,0x15,0x01,0x69,0xb1,0x5a,0x5d,0xe1,0x8d,0x73, + 0xf8,0x12,0x20,0x0f,0x97,0xd9,0xb4,0x76,0x4b,0xa8,0xc2,0xd7,0xb8,0x97,0x4a,0xd9,0x99,0x90,0x9e,0x90, + 0xb6,0xb1,0x4d,0xd9,0x6a,0xe1,0x25,0xe2,0xa3,0xbe,0xcd,0xb4,0xee,0x64,0xaa,0x74,0x26,0xe5,0x2b,0x94, + 0x3f,0xe6,0x12,0xfd,0x2e,0xf3,0x65,0x1b,0xf9,0x04,0x80,0x16,0x31,0x31,0xf4,0xa0,0x5c,0xae,0xe4,0x89, + 0xdf,0x97,0x3c,0xec,0x84,0x2e,0x48,0x48,0x14,0x69,0xc4,0xa0,0xe7,0xb6,0x94,0x03,0x7d,0xf6,0xa8,0x38, + 0x0d,0x67,0x9e,0x28,0x33,0xeb,0xe7,0x68,0x24,0x4f,0x45,0xf9,0x7a,0x5a,0x97,0xa7,0xd2,0x24,0x21,0xb6, + 0xdb,0x7d,0x17,0x5d,0x46,0x76,0xd9,0x5a,0x21,0x1a,0x33,0x62,0xd4,0x7a,0xdc,0x21,0x4d,0xfd,0x84,0x3d, + 0xc1,0x73,0x20,0x4a,0xbd,0x10,0x53,0x85,0xc7,0x4e,0x0d,0x81,0x0f,0x7c,0x36,0x0b,0x4f,0x33,0x3a,0xf3, + 0xee,0x8c,0x48,0x5a,0x82,0x7f,0x56,0x0c,0xa4,0xf9,0x5f,0x84,0x33,0xdf,0x3c,0x34,0x5e,0xe0,0x51,0x0d, + 0xb2,0x3b,0x34,0x7f,0x01,0x52,0x99,0x4d,0x0d,0x66,0x15,0x5f,0xb1,0xe7,0x31,0x63,0x31,0xb3,0x18,0x0b, + 0xbc,0x48,0x76,0x46,0x2f,0x36,0xc2,0x32,0xe3,0xee,0xd2,0x8e,0xd2,0x68,0x5e,0x55,0x2d,0x14,0x5c,0x6a, + 0x3f,0x34,0x25,0x47,0xf0,0x84,0x97,0x1e,0x85,0xa3,0xac,0xd6,0x28,0x51,0xe2,0x92,0x08,0xca,0x6a,0x28, + 0xf9,0x34,0x0a,0x4a,0x58,0xd2,0xb5,0xf6,0xa8,0x49,0xf3,0x60,0x5d,0x3b,0x16,0xda,0x49,0x54,0xec,0x99, + 0x17,0xcc,0xaa,0xb7,0x50,0xca,0xfd,0x27,0x8c,0xf9,0x3b,0x22,0x95,0x5a,0x6f,0xb6,0xea,0xfe,0x8d,0xf1, + 0x68,0x5a,0xe2,0x91,0x31,0x96,0x47,0xc6,0x52,0x3d,0x32,0xc6,0x6b,0x65,0x64,0xdd,0xf1,0x84,0x2b,0xba, + 0xcc,0xea,0xf9,0x51,0xc7,0x4e,0x6c,0x3e,0xe8,0x6a,0x6d,0x26,0xf5,0x2e,0x09,0x87,0xba,0x18,0xd4,0xa5, + 0xbd,0x59,0x97,0xa8,0x00,0x26,0x9d,0x9b,0xbc,0x64,0x7e,0x9d,0x77,0xe3,0xdb,0x92,0x37,0x99,0xd6,0x72, + 0xa4,0x21,0x60,0xb5,0xca,0x69,0xac,0x0c,0x33,0xd2,0x24,0x41,0x00,0x7f,0x51,0x55,0x1a,0x7e,0x2e,0xc3, + 0xd7,0x99,0x6a,0x16,0xb3,0xb5,0x17,0xe4,0xd4,0x23,0x9d,0xc6,0x2d,0x0b,0xd6,0x60,0x22,0xd4,0x6a,0x66, + 0xeb,0x66,0x5e,0xd5,0x3e,0xa5,0xe6,0x70,0x72,0x7c,0x3d,0x6d,0x81,0x1e,0x73,0x68,0x3d,0x00,0xb8,0x96, + 0xdc,0x52,0x02,0x82,0xc2,0x66,0x0b,0x98,0xfe,0xba,0x95,0x93,0x1b,0x5e,0x9b,0x94,0xa7,0xf3,0x1b,0x2e, + 0x16,0x1e,0x7a,0x5c,0x1f,0x3a,0x2c,0x32,0x68,0xc1,0x8c,0x8c,0x7d,0x36,0x80,0x85,0x02,0x3b,0xfd,0xe2, + 0x28,0xe2,0xb2,0xfd,0xfb,0xa2,0x4f,0x12,0x4a,0xae,0xc8,0x05,0x57,0xab,0xbb,0x8e,0x92,0x1f,0x38,0x77, + 0x87,0xd4,0x6d,0x2d,0xd8,0x5b,0xfd,0x37,0x9b,0x11,0x1c,0x9e,0x8d,0xc3,0x99,0x18,0x5b,0x57,0x63,0x14, + 0xbc,0x31,0xe3,0xa3,0x23,0x61,0xd9,0x12,0xb9,0xda,0xfd,0x8b,0xe1,0x7c,0x94,0x02,0xe8,0x88,0xf2,0x9a, + 0xf9,0x99,0x2e,0x88,0x38,0x63,0x69,0x87,0x5e,0x7d,0x76,0x98,0x19,0xb6,0x6d,0xec,0x97,0x96,0x7b,0xac, + 0xc3,0x96,0x4f,0x2c,0x2a,0x81,0xe0,0xcb,0xf7,0xa1,0x0d,0xa2,0x11,0x4a,0xcf,0x91,0x5f,0xec,0x4e,0x61, + 0x6b,0x02,0x4d,0xeb,0x6a,0x8c,0x58,0x5a,0xdf,0xb4,0x1f,0xee,0x13,0xb9,0x55,0xef,0x2f,0x15,0x87,0xdb, + 0xb8,0xa0,0x6a,0x52,0x7e,0x1d,0x5c,0xec,0x65,0x6a,0x3f,0x1d,0x89,0x47,0x13,0x20,0xb6,0xa4,0xc2,0x59, + 0x8b,0xca,0x1d,0x07,0x4c,0xbb,0x3d,0x73,0x9a,0x6a,0xce,0x3f,0xe2,0x70,0x82,0xc0,0x8f,0xf2,0x84,0x33, + 0x72,0x11,0x6a,0xd3,0xa9,0xb8,0xa0,0x5c,0xdb,0xaa,0x30,0x5a,0xd5,0x09,0xa3,0x38,0xf8,0x25,0x63,0xb7, + 0x7e,0xec,0xf2,0x5c,0x46,0x3d,0xa2,0x19,0x43,0x9c,0xa7,0x3c,0xbe,0x6d,0x15,0xbc,0x06,0x5b,0xec,0xbb, + 0xcf,0x6d,0x4a,0x4f,0x04,0x4a,0x2f,0xb3,0xd1,0x6f,0x89,0x7b,0x99,0x79,0xc1,0xb7,0x09,0x73,0xeb,0x15, + 0xb3,0x60,0x9c,0xbf,0xf9,0x16,0x0b,0x4a,0xff,0x4c,0xe0,0xc2,0x37,0x2a,0xca,0xe7,0x20,0x1a,0x80,0xb0, + 0x38,0x9e,0x4f,0x3c,0xc1,0x65,0xe5,0x5d,0xd3,0xce,0xe6,0x42,0x4f,0x78,0x8f,0xf0,0xd4,0xa4,0x89,0x65, + 0x43,0x48,0x4c,0x60,0xa5,0xeb,0x2b,0xf2,0xaa,0x81,0xbf,0x32,0xad,0xa1,0x38,0x0f,0xff,0x19,0xbb,0xb6, + 0x3b,0xe4,0xa1,0xaa,0x20,0x8f,0x31,0x73,0x79,0x84,0x52,0x6d,0x5f,0x3b,0xff,0x38,0x11,0x4d,0x41,0x07, + 0x3a,0x13,0x34,0xc0,0xa4,0x9f,0x57,0x94,0xb7,0xbe,0xbd,0x26,0x0f,0x2b,0x53,0x8b,0x8e,0x61,0xdd,0x38, + 0x28,0x3e,0x67,0xd0,0xe8,0x83,0x41,0x52,0xa4,0x44,0x5a,0x7d,0x56,0x17,0x3c,0x8f,0xd3,0x22,0x28,0xd6, + 0x1c,0x19,0xc8,0x1b,0x95,0x9a,0x6c,0x84,0x15,0xe8,0x3d,0xdf,0xaa,0x85,0x45,0xd2,0x3f,0x74,0x35,0x10, + 0x92,0xf8,0x90,0x37,0x2d,0x3a,0xb7,0x81,0xc0,0x6c,0x5c,0xed,0xa9,0x01,0xe3,0xc3,0xb2,0x82,0x4d,0x06, + 0x69,0x28,0x8d,0x5b,0x9d,0xdd,0x37,0x8d,0x08,0xfd,0x98,0xb3,0x41,0x78,0xcb,0x4d,0x7c,0xf3,0x98,0xd6, + 0x2b,0xfb,0xc6,0xd6,0x2d,0xd8,0xda,0x63,0xf3,0x08,0x62,0x57,0x5c,0x0d,0x9b,0x88,0x63,0xac,0x04,0x49, + 0x90,0x06,0x5f,0x24,0x7f,0xc4,0x2c,0xc7,0x61,0x53,0x28,0x1f,0x32,0x9d,0x83,0x2c,0xfc,0x21,0x03,0x9e, + 0xb0,0x9e,0x9b,0x40,0x4b,0x9c,0xe3,0x95,0xb4,0x25,0x9b,0x35,0xf7,0x0c,0x4c,0x78,0xc4,0x95,0x8c,0xaa, + 0x19,0xd2,0xdd,0x5a,0xfa,0xf7,0xa8,0xab,0x89,0x3a,0xcc,0x2e,0x4e,0xb6,0xfc,0x20,0x76,0xc6,0xdd,0x9a, + 0xa8,0x6b,0x79,0x02,0xcb,0x04,0xa5,0x28,0x4a,0x9d,0x41,0x45,0x07,0xff,0xce,0x10,0xf9,0xeb,0x34,0x75, + 0xd9,0x98,0x0a,0x0c,0xd0,0x79,0x66,0xbe,0xdb,0x26,0xa0,0xc6,0x00,0x94,0xd5,0xa0,0x74,0x5c,0x08,0xe5, + 0x15,0xda,0xb8,0x0e,0xe2,0xea,0x35,0x4b,0x02,0x74,0x53,0xd9,0x87,0x1a,0x9f,0x31,0x04,0x4c,0xd4,0xa3, + 0x32,0x2a,0x43,0x18,0x41,0x4a,0x18,0x20,0x50,0xcc,0x07,0x5a,0x20,0x0f,0xff,0xf3,0xf7,0x0d,0x9e,0x12, + 0xab,0x05,0x1a,0x5e,0xa9,0xc8,0x0a,0x07,0xf8,0x98,0xa3,0x02,0x55,0x86,0x60,0xf8,0xa1,0xb1,0xca,0xa1, + 0x93,0xa4,0xa0,0x34,0x77,0xcc,0x38,0xb5,0xd5,0x82,0x2d,0xe3,0xe4,0xf8,0xa1,0x4d,0xbf,0x81,0x3a,0x3c, + 0xb5,0xb6,0x8f,0xad,0xf0,0x29,0x91,0x87,0xf0,0xbb,0xe2,0xeb,0xad,0x83,0xc1,0x92,0xde,0x8b,0xad,0x7d, + 0x26,0xde,0x89,0xce,0x9e,0x3d,0xcd,0x68,0xa1,0xf9,0x1d,0xa0,0x0a,0x38,0x4d,0xa8,0x33,0x0a,0xeb,0x99, + 0xba,0xbf,0xec,0x61,0x54,0x79,0xd6,0x2a,0x1a,0x85,0xe0,0x49,0x89,0x2f,0x2c,0xea,0x19,0x56,0x71,0x1b, + 0x7a,0x66,0x60,0x9e,0xac,0x89,0x0e,0xad,0x81,0x8b,0xf2,0x67,0xd0,0x58,0x47,0x53,0x15,0x87,0x23,0x13, + 0xef,0x7f,0x26,0xed,0x79,0x4a,0xb4,0xb9,0x61,0xd0,0x28,0x41,0x18,0x90,0xda,0x12,0x51,0x71,0x01,0xf0, + 0x46,0xfa,0x6a,0x75,0xbf,0x96,0xcc,0x6e,0xdb,0xd9,0x65,0x84,0xc2,0x2e,0x60,0xcd,0x4c,0x4f,0xf0,0x47, + 0xcc,0x04,0x8e,0x05,0xd2,0x92,0xb6,0xef,0x57,0x6d,0x34,0x62,0xb8,0xb7,0xb7,0x4b,0x07,0x73,0x87,0xf0, + 0xd7,0x72,0xf5,0xe8,0xa7,0x60,0xe8,0x4b,0x06,0xbe,0xe1,0x5f,0xdb,0x98,0xd8,0xdd,0xb0,0x27,0x1c,0xc6, + 0x00,0x6e,0xa1,0xf6,0x8d,0xd2,0x38,0x0b,0x93,0xd3,0x94,0x0d,0x8f,0x94,0xac,0xf8,0x9a,0xae,0x01,0xe2, + 0x8e,0x95,0x11,0x66,0xa6,0x43,0xd7,0x36,0x9e,0x4b,0x28,0xa3,0x91,0xb2,0xae,0x07,0xfb,0x33,0xfb,0x5a, + 0xba,0x96,0xc2,0x45,0xdd,0x28,0x33,0x86,0xe6,0x20,0x9b,0x56,0x8a,0x3b,0xa0,0x5c,0x5e,0xa0,0xea,0x77, + 0x9a,0x5b,0x8e,0xb2,0x20,0xf1,0xb4,0x23,0xd4,0x35,0x1a,0x4b,0xb5,0xdc,0x9c,0x1d,0xf9,0xa8,0xef,0xb0, + 0x7a,0x6e,0xe2,0xf7,0x70,0xfd,0x50,0x6e,0x0a,0x43,0x98,0x56,0x33,0x5f,0x86,0xcf,0x48,0xfb,0x1d,0xaa, + 0x31,0x3a,0x2b,0x73,0xb5,0x12,0x03,0x52,0xbb,0xbe,0x25,0x92,0x41,0x14,0xdb,0x5e,0xea,0x39,0xaa,0x23, + 0x1c,0x74,0xba,0xc2,0xab,0x88,0x6e,0x3a,0x85,0xae,0xbf,0x08,0x1e,0xf1,0xa3,0xb1,0xb8,0x02,0x2a,0xc2, + 0xf7,0x19,0x87,0x3f,0xd7,0x72,0xfa,0x62,0x10,0xe7,0x79,0x46,0x2c,0x44,0x42,0x67,0xa7,0x4c,0x16,0x45, + 0x98,0xf9,0x85,0x42,0x42,0xd7,0xd0,0xe6,0x48,0xe6,0x71,0x50,0xfa,0xea,0xeb,0x20,0xfb,0x46,0x2d,0x55, + 0xd1,0xa1,0xcd,0xdf,0x61,0x00,0xdb,0x7a,0x0e,0x50,0x3e,0x14,0x08,0xdf,0xf3,0x1b,0x1c,0xf1,0x85,0xbc, + 0x05,0xea,0x4d,0xaa,0x97,0x57,0xc6,0x09,0x19,0xdc,0x9c,0x99,0xa7,0x88,0x91,0x32,0x4a,0xb2,0xd3,0xbc, + 0x3e,0x5d,0x88,0x0c,0xbb,0xf0,0x9c,0xa6,0xd9,0x4b,0x38,0xde,0x13,0x6b,0x7a,0xb8,0xc5,0xcb,0xa1,0xec, + 0x09,0xab,0x6a,0xec,0xb8,0x99,0xb3,0xb2,0x0f,0x5a,0x20,0xea,0xa2,0x02,0xb7,0x49,0x85,0x3c,0xaa,0x27, + 0xba,0xa8,0x99,0x52,0xd7,0xd7,0xab,0x34,0x1c,0x16,0x80,0x9d,0x09,0xf4,0x13,0xd0,0x7f,0x48,0xb0,0x89, + 0x27,0x8d,0xb5,0xe7,0xfe,0x91,0x79,0x83,0xf6,0xe2,0x51,0xb1,0x28,0xdc,0xda,0x82,0x27,0xfb,0xb3,0xd4, + 0xc5,0x53,0x53,0x6a,0xff,0x86,0xc7,0xa7,0xa8,0xd3,0x1a,0x87,0x4d,0x86,0x8c,0xd5,0x1d,0x50,0x8f,0xd1, + 0x31,0xa1,0xbe,0x93,0x28,0xec,0xb0,0xac,0xd2,0xc5,0x6f,0x37,0xba,0x02,0xee,0x63,0xe3,0x24,0xee,0x06, + 0xea,0xa4,0x35,0xdb,0x4f,0xa2,0x2f,0xed,0x24,0xfd,0xa1,0xa3,0x30,0xb7,0x23,0x8b,0xd6,0x42,0x8e,0xb3, + 0x5b,0x83,0x54,0x2d,0xb7,0x3e,0x9e,0xa0,0x14,0xe5,0xfe,0xe1,0xe3,0xe8,0xb1,0x72,0x26,0xef,0x74,0x15, + 0x83,0x30,0xf7,0x9c,0xbf,0x09,0xc9,0x6a,0xa2,0x26,0x30,0xc1,0x90,0x47,0x10,0x2b,0x18,0x57,0x5c,0x5b, + 0x96,0xe7,0x2e,0x7b,0x28,0x39,0x93,0x92,0x7a,0x91,0x84,0x8b,0xe5,0xfa,0x2d,0x93,0xd5,0x6c,0x59,0xd6, + 0x3c,0xc6,0xf5,0xac,0xa4,0x9b,0xad,0xf8,0x44,0xcb,0xda,0xec,0x4b,0xc3,0x9d,0x74,0x65,0xbc,0xc9,0xcc, + 0xbf,0xbd,0x67,0x58,0x66,0x99,0xb9,0xba,0x4d,0x63,0xb8,0xd1,0xbb,0xee,0x16,0x2e,0x45,0x37,0x0a,0x92, + 0x52,0xc4,0xb1,0xd2,0x47,0x23,0x48,0xad,0x73,0xa2,0x49,0x38,0xa4,0xea,0xcf,0xb5,0x8a,0xf4,0x0e,0x92, + 0x4a,0x9d,0x00,0xa8,0x9e,0x35,0xc0,0x7d,0xa8,0xf7,0x8b,0xb0,0x42,0xda,0x3e,0x1d,0xc6,0x64,0x3f,0x89, + 0x44,0x07,0x56,0xcc,0xdb,0xb4,0x2d,0x9b,0x82,0x7b,0x9a,0x13,0xfd,0x5a,0x7b,0x0d,0xa3,0x04,0x47,0xe2, + 0x87,0x59,0xc1,0x61,0xf9,0x3d,0x1a,0xec,0xc6,0x32,0x95,0xe8,0x8e,0x53,0xc2,0x62,0x2a,0x53,0x10,0xdd, + 0x48,0xfe,0x0c,0x54,0xd1,0xb0,0x74,0x3b,0xc3,0xcc,0x4a,0x6d,0xc8,0x85,0xf1,0x77,0x10,0x5d,0x4c,0x47, + 0xf2,0x49,0x87,0x92,0xf8,0xdc,0xb7,0xcb,0xf8,0xf9,0xfe,0x97,0x29,0x6a,0xaf,0x1b,0x41,0xa8,0x69,0x58, + 0x4b,0x02,0x10,0x80,0x20,0x0d,0x6d,0x68,0xd1,0x0a,0x32,0xe6,0x8e,0x91,0xe1,0xad,0x3d,0x63,0x9b,0x25, + 0xf5,0xc5,0x28,0xcc,0x75,0x0e,0x2f,0x97,0xf1,0x4e,0x42,0xfd,0x8c,0x7b,0x4e,0x1f,0x6e,0xb6,0xb7,0xb7, + 0x6b,0x05,0xf8,0x4a,0x9f,0x9c,0xdb,0x8e,0xb6,0xcb,0x46,0x40,0x3c,0x61,0xba,0xda,0x0b,0x55,0xd5,0xb0, + 0x71,0xd0,0xa5,0x72,0xa6,0x84,0x73,0x7b,0x51,0x7b,0x4e,0x6d,0x44,0xd9,0x43,0x98,0x3d,0x13,0x5b,0xc2, + 0x6a,0x2c,0xb1,0xe3,0x83,0x8b,0x28,0xd0,0x3c,0xea,0x1b,0xe2,0x0f,0x12,0x07,0x08,0x02,0xab,0x2c,0x90, + 0x7d,0xea,0x34,0x43,0x8d,0x2f,0xe1,0x3f,0xfa,0x2c,0xb0,0x60,0x42,0x73,0x96,0x25,0x1b,0xa4,0x13,0x59, + 0x5b,0x57,0x68,0xe5,0xc4,0x51,0xc2,0xa6,0x86,0x41,0xeb,0xf8,0xc7,0x1c,0x6a,0x1e,0x0e,0x93,0x51,0x2c, + 0xb8,0x67,0x35,0xc8,0x22,0xc1,0x1b,0x8b,0xfb,0x2e,0xfa,0xdc,0xef,0xea,0x93,0x12,0x81,0x47,0x92,0x50, + 0x3e,0xfd,0x6b,0xa2,0x58,0x22,0xba,0xec,0x72,0xb1,0x4f,0x2a,0x82,0xc4,0xf2,0x06,0x9a,0x55,0x46,0xdc, + 0xd8,0x11,0xd5,0xa9,0x81,0x81,0xb8,0xa6,0x92,0xa5,0x65,0x73,0x4a,0x7d,0x61,0x65,0xd9,0x44,0x1e,0x6e, + 0xb0,0x73,0x8d,0x43,0x04,0x2a,0x1c,0x44,0x27,0x10,0x63,0xfb,0x98,0x63,0x39,0x82,0x2b,0x6f,0x6f,0x94, + 0x3e,0xda,0x1f,0xed,0x07,0x7b,0xc1,0x7e,0x10,0x8f,0xb8,0xcc,0x45,0x82,0xaa,0xf7,0xbc,0x60,0x4f,0x87, + 0x53,0x85,0xdf,0x2d,0xf5,0x3e,0x34,0x1e,0xa5,0x2c,0x05,0x62,0x4e,0x2b,0xb0,0xf6,0x36,0xb2,0xa0,0x80, + 0x59,0x53,0x0e,0xfb,0xdd,0xe4,0x52,0x6b,0x6e,0xdf,0x0b,0x5b,0xe8,0x64,0x81,0x82,0xaf,0xa9,0x2a,0x21, + 0xa7,0x88,0x89,0x79,0xd8,0x02,0x93,0x44,0xd3,0xeb,0x99,0x84,0xe3,0xc1,0x63,0x83,0x8e,0x56,0x92,0x69, + 0xb7,0x14,0xa1,0x89,0xa9,0xa1,0x9e,0x24,0xd0,0x19,0x53,0x36,0x99,0x37,0x21,0x8c,0x33,0x0f,0x23,0xff, + 0x54,0x80,0x1a,0x7e,0x1a,0xd9,0xfb,0x68,0x06,0x52,0x66,0xc4,0x54,0x4d,0xc1,0xc4,0x8d,0xcf,0x29,0x01, + 0xa7,0xf0,0xa7,0xa2,0xf5,0x7d,0x03,0x82,0x79,0x3d,0x44,0x01,0x13,0x87,0x4b,0x76,0xb0,0x0d,0x27,0xcf, + 0xca,0x1d,0x9c,0x29,0x32,0xaf,0xdc,0xfb,0x2e,0x59,0xdd,0x17,0x22,0xbf,0x0e,0x99,0x47,0xa9,0x5d,0x9d, + 0x55,0x16,0x8c,0xc7,0x02,0x41,0xec,0x15,0xed,0x0e,0x4e,0xfe,0x40,0x12,0xd6,0xaa,0x1d,0x0b,0x9b,0xf0, + 0x03,0x36,0x24,0x25,0xb8,0xd7,0x2a,0x53,0x73,0xc5,0x51,0xb9,0xec,0x18,0x12,0x9e,0x02,0xf9,0xd2,0x4c, + 0x88,0x52,0xcf,0x74,0x21,0x88,0x12,0xf1,0xf4,0x2e,0xe4,0x50,0xea,0x55,0xde,0x79,0xa8,0x74,0x99,0x7f, + 0x50,0x2b,0xda,0x8c,0x9f,0x44,0x54,0x50,0x3d,0x49,0xda,0x26,0x12,0xb1,0x30,0xb0,0xab,0xd5,0x15,0x42, + 0xf3,0xa2,0x0e,0x29,0xa1,0xb0,0x9c,0x66,0x09,0xec,0x68,0xc4,0xe0,0xa0,0x72,0x8e,0xcc,0x2c,0x8d,0xad, + 0x56,0x45,0xc5,0xda,0x8a,0xca,0x84,0xcd,0xbf,0xa6,0xf0,0xf5,0x63,0x27,0x54,0x64,0xe8,0xa4,0xea,0x7b, + 0x6e,0xfa,0x9e,0xb4,0xfa,0xb6,0x7a,0x06,0x9c,0x6b,0x57,0x70,0x6b,0xd6,0x7d,0xaa,0xd4,0xe0,0x88,0x7b, + 0x5e,0x13,0x15,0x2e,0xa6,0x23,0xa9,0xf1,0x4d,0x06,0xae,0xbd,0xd2,0x8c,0xd0,0x9b,0xb1,0xb4,0xd9,0x85, + 0xb4,0xb9,0xab,0xf9,0x68,0x8b,0x08,0x0b,0xde,0x4d,0x88,0xbd,0x5d,0x27,0xcd,0x4a,0xba,0xa9,0x92,0xa2, + 0xec,0xa9,0x6b,0xa4,0x97,0x28,0x4f,0x3f,0x00,0x5c,0x4a,0x33,0xbf,0x1d,0xa8,0x1c,0xb3,0x87,0xe9,0x7a, + 0xa5,0x7a,0x05,0xd0,0x05,0x3d,0xd5,0xa9,0xd4,0xb0,0x03,0x4b,0x94,0x02,0x89,0x72,0x92,0x5a,0xe4,0x20, + 0x32,0x4d,0x20,0xc3,0x26,0x1e,0x1c,0x95,0x61,0x8c,0xa0,0x25,0x7c,0x6e,0x58,0xfe,0x50,0x9e,0xf9,0xd0, + 0x40,0x17,0xa0,0xe4,0x87,0x61,0x3a,0xb7,0x44,0x03,0x5c,0x23,0x8b,0x88,0x7c,0x83,0x00,0x91,0x0c,0xf4, + 0x47,0xd4,0xb6,0x48,0xff,0x89,0x36,0xc8,0xa4,0x01,0xe2,0x0f,0x74,0x03,0x74,0x44,0xb9,0x01,0xbd,0xf5, + 0xab,0xd5,0x84,0x23,0xcb,0xe8,0xa8,0x2d,0x89,0x59,0xcb,0x72,0x70,0x7c,0x59,0x2a,0x19,0xaa,0x0e,0x89, + 0xe7,0x2e,0x69,0xa7,0x79,0x5d,0xbd,0x41,0xa9,0x02,0x98,0x2c,0x7d,0x3a,0xc0,0x9a,0x8b,0x6a,0x1f,0xba, + 0xdc,0xa2,0xe1,0xd9,0xcb,0xaa,0x89,0x1c,0x4f,0x53,0x6c,0xc6,0x05,0x81,0x6f,0xf9,0x12,0x18,0x5e,0x15, + 0x2b,0x59,0x08,0x45,0xb4,0x90,0xc7,0x24,0x98,0x3e,0xab,0xf3,0xda,0x49,0x15,0x4b,0x29,0x45,0x24,0xba, + 0x8e,0x0e,0xd0,0xdb,0xfb,0x77,0xcc,0xfd,0xdf,0xb1,0x5f,0x97,0x3b,0x65,0xaf,0x8a,0x9b,0xad,0xc4,0xe3, + 0x6a,0x87,0x8b,0xe5,0x02,0x64,0x49,0x4f,0xcc,0x74,0xc4,0x52,0xad,0x16,0xd0,0x83,0x8f,0x7c,0x75,0xf3, + 0x0a,0x8f,0x87,0x2f,0x75,0x6a,0x1c,0xda,0x38,0xc7,0x68,0x21,0x82,0xda,0x85,0xa6,0x23,0x53,0xbc,0x43, + 0x51,0xcc,0xc3,0x11,0x80,0x0e,0x60,0xef,0xab,0xfd,0x40,0xfe,0xde,0x97,0xbf,0x0f,0xbe,0x90,0xbf,0xf7, + 0x1f,0xa8,0xbf,0x5f,0xa9,0xf4,0x2f,0x03,0x13,0x80,0x4c,0x2a,0x7c,0xae,0x0a,0xa8,0x0a,0x0f,0x3e,0x0f, + 0xb4,0x7a,0xf1,0x14,0xaa,0xee,0x52,0xea,0xfe,0x3d,0xd5,0xbc,0xfc,0xd9,0xdf,0x53,0x7f,0x55,0x6f,0xfb, + 0x5f,0xa8,0x84,0x2f,0x3e,0xbf,0xf7,0x77,0x55,0xe6,0xcb,0x7b,0xba,0x12,0x7d,0xdd,0xd7,0x8d,0x5e,0x15, + 0x8e,0x79,0xf8,0x7b,0x14,0x7e,0xf5,0x77,0x62,0x59,0x1e,0x86,0xfb,0xf7,0xee,0xad,0x56,0xf4,0xf3,0x8b, + 0xcf,0xf9,0xe7,0x57,0x7b,0x23,0xd5,0x79,0x40,0x89,0x0f,0xbe,0xe2,0xc4,0xcf,0xff,0x3e,0x72,0xc4,0x10, + 0xc2,0x09,0x1c,0x7e,0xf6,0xe9,0x08,0x48,0x82,0x65,0x92,0xbb,0x4e,0xc1,0x85,0xeb,0xec,0x39,0x5b,0x56, + 0xf0,0xe2,0x3d,0xc8,0xd0,0x92,0xe2,0x65,0xf4,0x52,0x82,0xb2,0x11,0xc2,0x2d,0xfd,0x6f,0x74,0xb4,0xba, + 0xce,0x37,0xb7,0xfa,0xb2,0xeb,0xb1,0x9b,0x46,0x55,0x96,0x51,0xe6,0xd9,0xa7,0x1e,0xee,0x3f,0x80,0x58, + 0x67,0x7b,0xfb,0xfe,0x57,0xf8,0x3b,0xc2,0x5b,0x9b,0x52,0x09,0xf2,0x29,0x1f,0xac,0x60,0xe0,0x7c,0xe6, + 0xf4,0x4b,0x1d,0x00,0x5d,0xfc,0x5b,0x5d,0x6a,0x5c,0x58,0x71,0x65,0xda,0xf7,0x06,0x34,0x15,0x0e,0x85, + 0xec,0xeb,0x29,0x4f,0x79,0x8e,0x7f,0xda,0x2e,0x7f,0x16,0x15,0xaf,0xae,0x52,0x1d,0x68,0xcf,0xff,0x10, + 0x76,0x11,0xa8,0xcf,0xd3,0x72,0x6e,0x05,0x0b,0xc3,0xcf,0xc1,0x33,0x44,0xb6,0x49,0x2e,0x62,0x62,0x1e, + 0x2e,0xa2,0xd2,0x3f,0xf9,0xe8,0x8a,0xe2,0xc5,0x4f,0x55,0x3b,0x0e,0xaf,0xc5,0xb1,0xc6,0xd3,0x46,0x90, + 0xca,0x9a,0x4f,0x23,0x9b,0x01,0x8c,0x07,0x38,0x6d,0xa1,0xfc,0xe1,0x77,0xc4,0xe3,0x63,0x7c,0x8e,0xae, + 0xd7,0x81,0x8e,0x48,0xc4,0x38,0xe1,0xda,0x14,0x36,0xe8,0x92,0x46,0xf4,0x42,0xa5,0x4b,0x25,0x4f,0x5f, + 0x77,0x08,0xb4,0x38,0xd4,0xa9,0x9d,0x4e,0x6f,0x4a,0xa2,0x16,0x4a,0xdf,0x22,0x7c,0x62,0x36,0x26,0xb0, + 0x2f,0xa3,0xb2,0x23,0x02,0xa3,0x84,0x34,0x45,0xa3,0xec,0x3b,0xf8,0x47,0x46,0x12,0x2f,0xe2,0xa2,0x88, + 0x4e,0x71,0x87,0x97,0x72,0xf7,0xa9,0xeb,0x87,0xba,0x11,0x8f,0x53,0xc7,0xd6,0x1c,0xfd,0x2a,0xe5,0x17, + 0x94,0x8a,0x95,0x47,0x30,0x19,0xea,0x15,0x92,0x70,0x89,0x40,0x53,0xd9,0xf5,0xac,0xc2,0xac,0x23,0x31, + 0xc9,0x93,0x93,0x18,0x59,0x4f,0x61,0xea,0xc3,0x7a,0x92,0xcc,0xb4,0x49,0x31,0x5d,0x42,0x9c,0xc1,0xad, + 0xab,0x78,0x1c,0x6a,0x09,0x45,0x16,0xce,0x3b,0x90,0x67,0x59,0xa9,0x83,0xdc,0xe3,0x5b,0x90,0x5e,0x3b, + 0xa5,0xb6,0xd6,0xfc,0x7c,0xca,0x63,0x41,0x81,0xb0,0x59,0x56,0xed,0xd4,0x60,0x46,0xf4,0xd9,0x09,0x31, + 0x32,0xb2,0x38,0xad,0x62,0x8d,0x7c,0x5d,0xab,0x20,0xc6,0x30,0x15,0xfd,0xd3,0x39,0x1b,0x29,0xfc,0x02, + 0x41,0x5c,0xab,0x72,0x67,0x31,0x76,0xd4,0x5b,0x87,0x80,0xfc,0x56,0x08,0xc8,0x41,0x2f,0xb6,0x21,0xc0, + 0x6c,0x2f,0xef,0x69,0x11,0xe6,0xdd,0x9b,0x89,0x07,0xf6,0x17,0x7a,0x61,0xff,0xcb,0xf6,0xd4,0xb7,0x2e, + 0x0b,0xb5,0x6c,0x1f,0x52,0x7e,0xe6,0x33,0x3f,0xf8,0x76,0x17,0xbf,0x80,0xbc,0xbe,0xb5,0x01,0xdd,0xa9, + 0x06,0x24,0xab,0xef,0x6a,0xcb,0xbc,0xde,0x5f,0x80,0x8b,0x91,0x6b,0x2d,0x4c,0x0b,0x2a,0xfe,0xc2,0x74, + 0xc1,0x9b,0xcb,0x2b,0x09,0x1e,0x59,0x55,0x80,0x05,0x35,0xa2,0xfa,0xef,0x26,0x9c,0xd6,0x8e,0x9d,0x5d, + 0xf0,0x2f,0x0d,0x47,0xfb,0x81,0x7b,0xd6,0x0c,0x53,0xab,0x1d,0xc1,0xc9,0xd0,0xdc,0x56,0xe5,0xda,0x88, + 0x06,0xcb,0xf4,0xa6,0x9e,0x95,0xe0,0xb3,0xd5,0x46,0x07,0x94,0xd5,0x9a,0x55,0x69,0x6e,0xa3,0x05,0x2b, + 0x4b,0xb7,0x50,0x03,0x8c,0x6e,0x70,0x69,0xb6,0x52,0xcb,0xb4,0x47,0x22,0x61,0xe3,0xd6,0x6b,0xff,0x4a, + 0x7b,0x6d,0x45,0x6a,0xe5,0xcd,0x31,0x9a,0xc3,0xd0,0x5b,0x1c,0x2b,0xb2,0xd6,0xdb,0xb5,0xed,0xc9,0x56, + 0x69,0x05,0x04,0xe2,0x32,0x71,0xcd,0x11,0xc9,0xeb,0x25,0x34,0xc5,0x85,0x87,0x43,0x4d,0x8f,0xda,0x05, + 0xd6,0x3e,0xbf,0x86,0x17,0x2a,0xf1,0x90,0xa9,0x3d,0xe3,0x4c,0x76,0xdd,0xf2,0xe4,0x58,0x23,0xed,0x79, + 0x58,0x90,0x4f,0x48,0xf8,0x0c,0x44,0x91,0xad,0xac,0xcd,0x90,0x6f,0x01,0x8e,0xc4,0xd3,0x70,0x33,0x11, + 0xec,0xdf,0xea,0x3a,0x56,0x85,0x85,0x0b,0xe5,0x8f,0x09,0xbf,0x4b,0xf4,0xbc,0xe5,0xc8,0x55,0x04,0xf0, + 0xb9,0x10,0xd2,0x88,0xe6,0xa1,0x08,0xe9,0x39,0x04,0xd4,0x4b,0x64,0xf0,0xdc,0xd8,0x20,0x74,0xd6,0x60, + 0xd7,0x96,0xde,0x68,0xa9,0x83,0xfe,0xee,0x05,0xf6,0xbd,0xb5,0xf4,0x4c,0x3a,0x6b,0x60,0x37,0x78,0x26, + 0xdb,0x1f,0x1f,0x8e,0x51,0x15,0xc0,0xbc,0x22,0x79,0xac,0xa0,0xe6,0x3c,0x04,0x4d,0xf5,0x54,0x71,0xcf, + 0xb7,0xb7,0x1d,0x7e,0x4c,0x5c,0xaf,0x2b,0x91,0xfe,0xf6,0x76,0x66,0x7a,0x26,0xa6,0x74,0x4a,0xad,0xbb, + 0xce,0xf3,0x59,0x4f,0x66,0xd1,0xc3,0x6a,0xf7,0x92,0xa2,0x07,0x27,0x33,0x3d,0xba,0x03,0x7a,0xbc,0xd6, + 0xbd,0x58,0x44,0xa6,0x45,0x0f,0xe6,0x0f,0xbd,0xb3,0xe8,0x32,0x96,0x0a,0x52,0x9e,0x0a,0x0f,0x88,0x0b, + 0xea,0x98,0x7b,0x1b,0xa7,0x83,0x2d,0x98,0x13,0x03,0x08,0xe7,0xa1,0xcd,0x15,0xe9,0xba,0x01,0xe6,0xf0, + 0x7c,0xb6,0xa4,0x7f,0xa0,0x62,0xb9,0xa1,0x3d,0xe1,0xed,0xa7,0x23,0x07,0xe6,0x53,0xcd,0x65,0x09,0x28, + 0xb5,0x1c,0xce,0x21,0xfc,0x82,0x38,0x53,0x79,0xfd,0xf7,0x13,0x3f,0x1a,0x24,0xae,0xc4,0x9e,0xc0,0xd1, + 0x38,0x08,0x5b,0x88,0x62,0x42,0x3d,0xd1,0xe5,0xd2,0xf1,0x40,0xb2,0x1e,0x1e,0x58,0xf4,0x5c,0x02,0xbb, + 0xc1,0x45,0x06,0x79,0xb8,0x2d,0x27,0xaa,0xdc,0x21,0x58,0xad,0xc1,0xb5,0x9c,0x66,0x52,0xa1,0x85,0x77, + 0xa3,0x46,0x1f,0x31,0x7e,0x8e,0x63,0xab,0xf5,0x19,0x79,0xf3,0x61,0xda,0xef,0xb3,0x7c,0xc6,0xb9,0x56, + 0xfe,0x5f,0x73,0x3c,0x2b,0x58,0xcf,0xfa,0xac,0x9e,0xe2,0x28,0x5d,0xb1,0x1c,0x8f,0xf9,0x68,0x4b,0x58, + 0x52,0xfa,0x10,0x1b,0x0b,0xd5,0x8e,0xb3,0x66,0x1d,0x96,0xa1,0x97,0xf5,0xc3,0xc4,0x37,0xc9,0x22,0x93, + 0x38,0x17,0xba,0x3b,0xf3,0x46,0x0e,0x3b,0x1b,0x0d,0x9e,0x56,0x09,0x40,0x26,0x53,0xa2,0xf4,0x97,0xe2, + 0x94,0xce,0x19,0xea,0x21,0x48,0xb7,0x99,0x78,0xc4,0x8e,0xd6,0xa2,0x25,0xef,0xfc,0x0f,0x1e,0xeb,0x88, + 0xc6,0x0c,0xc2,0x9c,0x76,0x04,0x22,0x3f,0xea,0xd2,0x0b,0xf0,0xaf,0xe6,0x38,0x6e,0x9d,0x49,0xb9,0x66, + 0xf6,0xb1,0xbe,0xaa,0x61,0x5e,0x13,0x55,0xa7,0x15,0xf3,0xe9,0x4b,0xf0,0xe9,0xa6,0x6c,0x45,0x4f,0x87, + 0x59,0x8a,0xf6,0x4c,0xb0,0xb6,0xfa,0x07,0xdb,0x86,0xeb,0xd1,0xf1,0xd2,0x0d,0x93,0xe6,0xa6,0x44,0x34, + 0xa1,0x64,0xac,0x19,0xbe,0x48,0xbd,0x4b,0x83,0xb3,0x92,0xf1,0x07,0x8a,0xa3,0x8d,0x14,0x73,0x2e,0x5a, + 0xaf,0xcc,0xb7,0xa9,0x81,0xa8,0x02,0xe9,0x21,0x53,0x3a,0x44,0xb7,0xeb,0xb2,0xfe,0xfe,0x9e,0x37,0xae, + 0x55,0xd0,0xa3,0x95,0xbf,0xa2,0x16,0x6e,0xaa,0xab,0x5a,0x44,0xe3,0x26,0xfd,0xbe,0x59,0xd4,0x35,0x87, + 0xbb,0x5b,0xf3,0xa6,0x9e,0x87,0xbb,0xbf,0xbb,0x47,0x53,0xaf,0xbf,0xeb,0x3f,0xe5,0xcf,0x2b,0x7c,0xbe, + 0xa7,0x65,0x7a,0x13,0xee,0xfb,0x8f,0xc3,0x7b,0xfe,0x9d,0xf0,0xbe,0xff,0x8a,0x7e,0x7f,0x1d,0x3e,0xf0, + 0x5f,0x87,0x9f,0xfb,0xcf,0xc2,0x2f,0xfc,0x77,0xe1,0xdf,0xfd,0xe7,0xe1,0x97,0xfe,0x8f,0x60,0xe8,0x7f, + 0x3c,0x7c,0x35,0x0e,0xaf,0xaf,0x8a,0x80,0xfe,0xfa,0xcc,0x06,0x06,0x87,0xf7,0xfd,0xf7,0x63,0xdf,0x39, + 0x74,0x82,0xc3,0xaf,0xc7,0x3e,0x5d,0xf2,0xc1,0xe1,0xbb,0xf1,0xda,0xff,0xf1,0x70,0x5f,0x95,0xdc,0xa7, + 0xdc,0x01,0xe5,0xde,0xeb,0x2c,0x75,0x4f,0x95,0xba,0x57,0x6f,0x6f,0x4f,0xfd,0x15,0xae,0x52,0x7e,0xa0, + 0xf8,0x7d,0x2a,0x7e,0x5b,0x39,0x9f,0x7b,0xf5,0xdf,0xe8,0x7e,0xf9,0x8b,0x7b,0xc6,0x97,0xf4,0x4d,0x5f, + 0x68,0xee,0x6b,0x6a,0xce,0xb9,0x4b,0x59,0xaf,0x51,0xef,0xae,0x73,0x37,0x38,0x7c,0x56,0x4d,0xc7,0x7f, + 0x4c,0x5f,0x63,0x07,0x8d,0xdd,0x91,0x8a,0xcf,0xd9,0x9e,0x0f,0x59,0x32,0x9c,0xd7,0xba,0x3e,0x12,0x6a, + 0x25,0x5e,0xab,0x12,0xcf,0xa8,0x04,0xb7,0xdb,0x2a,0x81,0x8e,0x64,0x63,0xbe,0x61,0x9b,0x67,0x22,0xd5, + 0xf2,0x65,0xbc,0x62,0x5b,0xce,0xd5,0xce,0xe8,0xf0,0x68,0x3a,0x18,0xf7,0x57,0x77,0xd9,0x07,0xd6,0xdd, + 0x95,0xc3,0x6e,0xb1,0x1c,0x8f,0xca,0xc1,0x31,0xd1,0x06,0xb4,0xd5,0x8d,0xb5,0x5e,0x5a,0x58,0x8b,0xa1, + 0xec,0x35,0x5d,0x6a,0x6d,0x09,0x95,0x8d,0xb1,0x2c,0x84,0x55,0x42,0x3f,0xa3,0x43,0x9e,0xa5,0xc3,0xde, + 0x45,0x08,0xe5,0x83,0x03,0x37,0x0f,0x77,0xf6,0xe9,0x6a,0x7c,0xc5,0x71,0xef,0xce,0x00,0x2e,0x38,0x33, + 0x67,0x87,0x6f,0xc6,0x35,0xe3,0x0e,0x7d,0x4f,0xa5,0xac,0xcb,0x23,0xd0,0x0b,0x17,0x85,0x92,0x01,0x5b, + 0xfd,0xc3,0xf7,0x1d,0x35,0x20,0xa9,0x1d,0xa5,0x61,0x1e,0xa4,0x7d,0x22,0xfc,0xa9,0xd0,0xe3,0x5a,0x21, + 0x54,0x22,0xca,0x68,0x46,0xb0,0x4f,0x79,0x77,0x6a,0x79,0xd0,0x88,0x7c,0xb4,0xe7,0xcd,0x76,0x76,0x68, + 0x78,0x5f,0xfb,0x52,0xd4,0xbc,0x45,0x62,0xb4,0x5b,0x78,0xfa,0x70,0xd3,0x70,0xc1,0x2e,0xf3,0x8c,0x58, + 0x14,0x63,0x87,0x3a,0xe6,0x50,0xc9,0xc0,0x97,0xec,0x30,0x7e,0xde,0xef,0xc3,0x7f,0x22,0x2b,0x0b,0xc1, + 0xe7,0xe2,0x1c,0x2f,0x16,0x5b,0x0d,0x7e,0x9a,0x33,0xfa,0xfb,0x8c,0xad,0x97,0xd4,0xf8,0x6b,0xba,0x95, + 0xef,0xb2,0x5a,0xd7,0x6a,0x85,0xdf,0xcf,0xb6,0xb7,0x09,0x2c,0xf0,0xdb,0xf8,0xee,0xa6,0x66,0x09,0x5b, + 0x53,0xc3,0xfd,0x52,0x8d,0x11,0x11,0x96,0x5d,0x4f,0x59,0x71,0x4d,0x21,0x16,0x03,0x9d,0x53,0x84,0x3f, + 0x1e,0x2e,0xc7,0x1e,0xe1,0x9d,0xd5,0xaa,0x60,0x45,0xd0,0xd5,0xea,0x39,0x64,0xcb,0xcf,0xb5,0x56,0x10, + 0xf7,0x09,0x3b,0x16,0xdf,0x8d,0xc2,0xb3,0xc3,0x8c,0xce,0xe0,0x58,0xde,0x61,0x33,0x1c,0xb4,0x3c,0x34, + 0x4b,0x9a,0x8f,0xca,0x20,0x97,0xe9,0x13,0xff,0xe3,0xd5,0x1a,0x08,0xc3,0x77,0xc6,0x39,0xaa,0x28,0xbb, + 0x19,0x82,0x54,0xc3,0x48,0x08,0xff,0xc3,0x20,0xbb,0xd6,0xbe,0x0d,0x64,0xa7,0x71,0x09,0x10,0x63,0x41, + 0x6e,0xe3,0x6e,0x84,0x8c,0xbc,0xac,0x1c,0xb4,0x56,0x8f,0x30,0xda,0xfb,0xb6,0x86,0x4f,0x78,0xac,0xe5, + 0x79,0xe7,0x0d,0x0a,0x03,0xe1,0xdd,0x30,0x74,0xed,0x4e,0xbb,0xd6,0x92,0x65,0xed,0x53,0x99,0x9a,0x11, + 0x92,0x56,0x2e,0xb8,0xb3,0xa1,0x76,0xbc,0x1d,0x1d,0xe6,0x87,0xc5,0xd8,0x7a,0xec,0x80,0xb2,0x99,0x77, + 0x2d,0x6e,0xa8,0x94,0x6d,0x42,0x14,0x4e,0xfc,0xa2,0x42,0xa6,0x91,0x9c,0xd6,0x17,0x1b,0x4e,0xce,0xb0, + 0xe2,0xff,0xc0,0x8d,0x43,0x5b,0xd6,0xbc,0x2e,0x09,0xf1,0xb8,0x5a,0x39,0x71,0xba,0xf3,0xf3,0x1b,0x87, + 0xe5,0xb9,0x75,0x5e,0xbb,0xca,0x63,0x8b,0x24,0xc5,0xe2,0x32,0x79,0xa9,0xc2,0x98,0x5b,0x32,0x20,0x49, + 0x87,0x15,0x65,0x6a,0x89,0x78,0x38,0x75,0xa8,0x5c,0x59,0x5f,0xc8,0x03,0x9f,0xfc,0x9a,0x71,0x3e,0x91, + 0x2b,0x21,0x2b,0xb0,0xc9,0xf7,0x6a,0x05,0x46,0xf9,0x40,0x15,0xb9,0x48,0x0a,0xb8,0x02,0x41,0xdf,0xf2, + 0x25,0x02,0x4f,0xed,0x5d,0x1a,0x42,0x85,0x98,0x65,0x0b,0xb5,0x74,0x70,0xb5,0xa1,0xc5,0xf7,0x0a,0xcb, + 0xbb,0xb5,0x25,0x5f,0xba,0x77,0x35,0x51,0xd6,0x87,0xb2,0x0a,0xdb,0xe9,0x52,0xc9,0x4e,0xd1,0x3d,0x74, + 0xca,0x1e,0x0c,0x12,0x89,0xbb,0xa5,0x0e,0x44,0xe2,0x6e,0x6d,0xc8,0x52,0xed,0xd6,0x17,0x14,0x2f,0xef, + 0x20,0xec,0x25,0xcf,0x5e,0xd4,0x7a,0x0e,0xb8,0x01,0x96,0x2f,0xbc,0xac,0x9a,0x89,0x2a,0x77,0x01,0x84, + 0x04,0x25,0x99,0xdf,0x0f,0x1a,0x90,0xaf,0xb0,0x8a,0xbb,0x05,0x75,0xc6,0x74,0xb5,0xca,0xdd,0x52,0x1a, + 0xac,0x1d,0x17,0x09,0xa7,0xad,0x8d,0xd2,0x8f,0xe1,0x34,0xf6,0xed,0x0b,0x57,0xbf,0x77,0xa6,0x7e,0x1d, + 0x6a,0x02,0xb8,0x6f,0x14,0x50,0x21,0xb2,0xab,0x01,0x24,0x41,0xe4,0xd7,0xc0,0x23,0x28,0x88,0x22,0xf3, + 0x7f,0x0a,0xaf,0x2f,0x2f,0x82,0xeb,0x75,0x55,0x91,0xbe,0x9b,0x35,0x29,0xa9,0x5e,0xf5,0xba,0xe2,0xf0, + 0xd6,0xcd,0x31,0xa0,0x2d,0x81,0x19,0xce,0xd4,0xcb,0x86,0x1f,0x9d,0x3b,0x40,0x19,0x6b,0x7d,0xb9,0xbc, + 0xb0,0x5d,0x0f,0xcb,0x64,0x3b,0x8e,0xd7,0x99,0xf6,0x05,0x2d,0xed,0x0d,0x1b,0xbf,0x21,0x7d,0xa9,0xc0, + 0x9e,0x76,0x87,0x68,0x48,0x6c,0x0c,0x54,0x63,0xfd,0x66,0xd9,0x72,0xed,0xdb,0x9d,0x76,0xb2,0xfb,0x6d, + 0x5f,0x08,0xf5,0x8d,0xae,0xd4,0xcd,0xec,0xa6,0x36,0xc8,0x0e,0x6a,0x8d,0x35,0x0c,0x07,0x98,0xdb,0xb3, + 0x43,0x98,0xa4,0x96,0xad,0x66,0xc9,0x08,0x30,0x7d,0xb4,0xb3,0xef,0xc9,0xfb,0xf4,0x04,0x72,0x4c,0x28, + 0x48,0xba,0x1d,0x63,0xf2,0x9b,0xc3,0xa9,0xc9,0xb6,0x9a,0xe6,0x95,0x22,0xfb,0xab,0xb9,0x04,0xa7,0xc5, + 0x1b,0xdc,0xe1,0x4a,0xae,0x73,0x07,0x4d,0xd7,0x42,0x54,0xd8,0x06,0x0d,0x8d,0xc5,0xb0,0xed,0x1b,0xce, + 0x3a,0x9d,0x22,0x37,0xab,0x10,0x23,0xc8,0x4e,0xd0,0x9b,0x89,0xad,0xc0,0x17,0x6b,0xff,0x7a,0x1a,0xc7, + 0x0b,0x51,0x4d,0x6e,0xcf,0x4e,0x89,0x31,0xeb,0x57,0xfd,0x56,0x85,0x9a,0xe8,0xa0,0x55,0xf8,0xab,0x75, + 0xe3,0xc4,0x3a,0x96,0xc9,0x45,0x7d,0x1d,0x58,0x40,0x66,0x2d,0x86,0x00,0xbe,0xb5,0x1a,0xec,0xd9,0xe3, + 0x0e,0xb1,0xbf,0xb0,0x62,0xd1,0xb9,0xec,0x97,0xbf,0x31,0x7e,0xff,0x3a,0xb9,0x20,0x52,0x3d,0x81,0xbc, + 0x5d,0xa6,0xf0,0x13,0x1a,0xa6,0xf3,0x6e,0x8f,0xb9,0xb1,0x09,0x28,0xa4,0xcf,0xe6,0x86,0xa2,0x91,0x02, + 0x00,0xca,0x55,0x02,0xee,0x82,0x3d,0x80,0xff,0xd4,0xbc,0x27,0x6e,0xaf,0x5f,0x7f,0x5c,0xd0,0xcd,0xd4, + 0x0e,0xff,0xed,0x8d,0xd8,0x0f,0x0d,0xba,0x09,0x59,0x97,0x5b,0xe6,0xaa,0x1f,0xdd,0xab,0xf2,0x45,0x5c, + 0x76,0x9c,0x3e,0xec,0x06,0xd6,0x5b,0xff,0xaa,0x96,0x3d,0xe6,0xce,0xea,0x18,0xe9,0xb6,0x4e,0xeb,0xa5, + 0x3b,0xea,0x7f,0xec,0x20,0xea,0xd5,0xf4,0x60,0x14,0x32,0xbc,0x71,0x14,0xaa,0x8c,0x5d,0xbc,0xbb,0x53, + 0x73,0x2f,0xf3,0x30,0x35,0x6e,0xbd,0xb1,0x6d,0x53,0xaa,0x5e,0xa5,0xbb,0x7d,0x8b,0x34,0x40,0xf1,0x4e, + 0x84,0x7d,0x63,0x6f,0x9d,0x35,0x36,0x37,0xd5,0x3d,0x8a,0xee,0x5b,0x3e,0xae,0x1f,0x79,0x1b,0xdc,0x6f, + 0xda,0x5e,0x7d,0x78,0xda,0xb5,0x1b,0xc0,0x7e,0x53,0x23,0x8d,0x83,0xd4,0x6e,0xab,0x06,0xf3,0x37,0xb5, + 0x54,0x3b,0x4b,0x8d,0x76,0xa0,0x5c,0xa6,0xbc,0x3a,0xd5,0x74,0x8d,0x88,0xb9,0x4a,0x4c,0x4b,0x30,0xf0, + 0x56,0x72,0x7c,0x05,0x0d,0x4a,0xe8,0xaf,0x21,0x47,0x1e,0xe4,0x99,0x2c,0x3b,0x44,0xe5,0x64,0x0c,0xc3, + 0x8d,0x20,0x6d,0x74,0x96,0x14,0xdf,0xd8,0x94,0x58,0x87,0x4b,0x9c,0x18,0x11,0x1b,0x5d,0x0b,0x65,0xaa, + 0x8e,0x6a,0x24,0x5c,0xb3,0xd5,0x6e,0x31,0x58,0xa9,0x79,0x43,0x85,0x93,0x5b,0xd8,0x77,0x12,0x56,0x24, + 0x55,0x9d,0x02,0x2a,0x55,0xdc,0xdd,0x3a,0xd9,0x3f,0x31,0x2c,0xc3,0x44,0x0c,0x86,0x58,0x15,0x53,0x47, + 0x24,0xde,0x62,0x05,0x02,0xbb,0x0f,0x4b,0x3b,0x55,0x3f,0x92,0x22,0x52,0x38,0x71,0x4d,0xb5,0x72,0x6b, + 0xcd,0x06,0xb6,0xf4,0xc4,0x26,0xb5,0xe6,0xe6,0xe1,0x44,0xf3,0x01,0xf3,0xca,0x7a,0xfa,0x1f,0x81,0xe3, + 0xb1,0x97,0x12,0x57,0x07,0xc6,0x82,0xc3,0x71,0x9e,0xfe,0x5c,0x4d,0x1f,0xe6,0xa2,0x3a,0x44,0x0b,0x47, + 0x28,0x98,0x73,0x72,0x30,0x6f,0xac,0x23,0x2a,0x36,0x61,0xc0,0x0e,0x29,0x1d,0xa6,0x3e,0x74,0x9c,0xc5, + 0x57,0xc1,0xae,0xfb,0x8f,0xe0,0xf0,0xe8,0xea,0x68,0xe7,0x78,0x35,0x18,0xf7,0xbd,0xdd,0xd3,0x4a,0xdb, + 0x7c,0x02,0xcd,0x87,0x02,0x7c,0x6a,0xd1,0x78,0x72,0xe6,0xb5,0x12,0x75,0x8f,0xe2,0x70,0x82,0x78,0x3f, + 0x73,0x65,0xdd,0xed,0xde,0x23,0xce,0x59,0xbf,0x8b,0x55,0xfb,0xc9,0xa3,0x58,0xd2,0x28,0x9c,0x3c,0xba, + 0x52,0x42,0x3c,0xb5,0x4a,0x44,0x78,0x56,0x89,0x42,0x8d,0x07,0xca,0x4f,0x83,0xb4,0x52,0x83,0x35,0x58, + 0xfc,0x59,0x57,0x33,0x83,0x16,0xbb,0x3a,0xea,0x7d,0x0d,0x85,0x76,0x88,0xdc,0xc4,0xd2,0x3b,0x9e,0xf6, + 0x58,0xc5,0x5d,0xf9,0x30,0x9c,0x86,0x55,0x85,0xe1,0x2c,0x9c,0xaa,0xb0,0x29,0x3c,0xb6,0x69,0xe3,0xfa, + 0x43,0x54,0x72,0x11,0xd1,0x4f,0x9b,0xcf,0x98,0x4b,0xb5,0x90,0xc4,0xd0,0xb9,0x7a,0x9a,0xd6,0xc9,0x73, + 0x51,0x62,0x06,0x45,0xa3,0x51,0x64,0x4c,0xa2,0xe7,0xfe,0xcc,0x0b,0xa2,0x8a,0xf5,0xab,0x6f,0x96,0x52, + 0xb4,0xad,0x6f,0x57,0x5d,0xf0,0x5b,0x21,0xde,0xfa,0x8a,0x9a,0x40,0x2c,0x95,0x16,0x50,0x58,0x8e,0x72, + 0x65,0x61,0x86,0x78,0xe9,0x8d,0xbe,0xcc,0x94,0x5b,0x18,0x42,0x1f,0x30,0xfb,0x38,0xd9,0x9d,0x95,0x3e, + 0xac,0x4a,0x4d,0x39,0x23,0x81,0x26,0x40,0x18,0xe5,0x6e,0x57,0x8d,0xd4,0x87,0x7c,0xd6,0xd4,0x50,0x01, + 0xe7,0x27,0xc1,0xa4,0x39,0xa6,0x16,0xa4,0x56,0x14,0xa2,0xf2,0x3f,0xd4,0x54,0x33,0xdc,0x79,0x30,0x8c, + 0x76,0x76,0x7a,0x8f,0xf6,0x86,0x1e,0x54,0xff,0x2c,0x95,0xd4,0xa8,0xff,0x80,0xf9,0xf0,0x2d,0xa3,0x5a, + 0xe3,0xa8,0xe7,0x97,0x44,0xa1,0x36,0xe5,0x0e,0x21,0x83,0xa5,0x5f,0x61,0x98,0xe9,0xd2,0x44,0xa3,0xab, + 0xa0,0x22,0xf5,0x15,0xd7,0xd9,0x7c,0xc9,0x06,0x14,0xab,0x05,0xf7,0x59,0xca,0x10,0x5d,0x14,0x9b,0xe1, + 0x75,0xfe,0xe9,0xf0,0xaa,0x74,0x5a,0x96,0x16,0xc8,0xd6,0x94,0xa5,0x62,0xa3,0x2c,0x95,0x59,0xf6,0xf5, + 0x2d,0x58,0x9c,0xf8,0xf0,0xb2,0x99,0x2b,0x3f,0xd0,0xf5,0x65,0xaf,0xe3,0xec,0xc6,0xb3,0x41,0x6b,0xbd, + 0xf7,0xa1,0xff,0xcb,0xeb,0x5d,0x36,0x54,0x80,0x21,0x96,0x52,0xc3,0x15,0x68,0xf5,0x68,0x09,0xd5,0x48, + 0x73,0xbe,0x42,0x30,0x2c,0x75,0x9a,0x3a,0x28,0x4d,0x36,0xca,0x36,0xd3,0x29,0xb5,0xb9,0x50,0xf3,0x62, + 0xe8,0xc0,0x66,0x5a,0x3b,0xae,0xbd,0x6d,0xe5,0xe6,0x6d,0x03,0x9e,0xd1,0xa1,0xd8,0xbb,0x36,0x2b,0xfb, + 0xb3,0x9b,0x65,0xd3,0xfb,0x89,0xdc,0x59,0x37,0xec,0x0c,0x9d,0x26,0x3a,0x16,0x79,0x83,0x0f,0x69,0xce, + 0xb2,0x7a,0x6c,0x1c,0xb5,0xaf,0x94,0x92,0xd5,0xfb,0xac,0xd5,0x35,0xcf,0xb5,0x5c,0x79,0xd3,0x52,0x43, + 0x22,0x10,0x38,0x4e,0xf3,0x0c,0x4e,0x3a,0x17,0xd8,0x58,0x1d,0x89,0xf9,0x6e,0x0b,0x2c,0x3e,0x1f,0x16, + 0x0a,0x2c,0xa2,0xc3,0xc2,0x06,0x8b,0xa2,0xff,0x79,0xa5,0xb1,0x37,0xaa,0xa4,0x62,0x09,0x2b,0x5e,0xef, + 0x7b,0x7e,0xe6,0x2a,0x9c,0x61,0x81,0xcb,0x44,0x28,0x0e,0xea,0xdb,0xc0,0x43,0x44,0x57,0x5e,0xc2,0x03, + 0x96,0x7b,0xbe,0x01,0xc3,0xf5,0x51,0xdb,0x4a,0xcb,0x87,0x90,0x4c,0xb6,0xc6,0x7b,0x6f,0x98,0xab,0xf1, + 0xb2,0x7f,0x84,0x6a,0xbc,0x79,0xff,0x9e,0x01,0xe3,0xc4,0x8c,0x6b,0xa2,0x06,0x96,0x7c,0x2c,0x1c,0xfb, + 0xa5,0x19,0xb9,0x0e,0x34,0x93,0x34,0x57,0xba,0x89,0x7a,0x2d,0x53,0x69,0xb1,0x50,0x6b,0x8d,0xfa,0xfe, + 0x30,0x53,0xa3,0xce,0x61,0x63,0x54,0x8d,0x3a,0xeb,0xdf,0xd7,0x4f,0x6c,0x0d,0xec,0x96,0x7b,0x15,0x66, + 0xab,0x03,0x28,0x4b,0x93,0xf0,0xc4,0x33,0x6e,0x31,0xf9,0x8d,0xa1,0x35,0xa8,0x4f,0xb9,0xc2,0x6f,0x59, + 0x84,0xb2,0xd1,0x24,0xe5,0xd6,0x74,0xa7,0x3a,0x08,0x45,0xc3,0xfb,0x59,0xd4,0x36,0x21,0x38,0xc8,0x1f, + 0x1b,0x8d,0x15,0x9b,0x1b,0x63,0x1f,0xbc,0x1d,0xad,0x34,0x25,0x34,0x6d,0x6d,0xae,0x8f,0x69,0xe4,0x6c, + 0xb0,0x2c,0x93,0xf9,0x40,0x7c,0x22,0x6e,0x1c,0x6d,0xd7,0xe4,0xeb,0x4c,0xc2,0x2d,0xb3,0x6f,0xb0,0x09, + 0x1b,0x17,0x61,0x63,0xa3,0xb5,0x09,0xb4,0x5b,0xeb,0x5c,0x8c,0x3f,0xdd,0xd8,0x86,0x45,0xe9,0x9e,0x44, + 0x6b,0x6d,0x44,0xd3,0x24,0xf9,0xc3,0xf4,0xdf,0x41,0x90,0x68,0x62,0xb5,0x84,0x47,0x6c,0x02,0x58,0x20, + 0x6d,0xa2,0xd2,0x0b,0x0f,0xf2,0x4e,0x18,0x9b,0xf2,0x23,0x82,0x10,0xb3,0xc8,0x87,0x4b,0x30,0x3b,0xb3, + 0xcd,0x25,0x20,0x1d,0xd6,0x05,0x7d,0xe7,0xf8,0x18,0x91,0x12,0xf4,0x05,0xdb,0x16,0xe0,0x1e,0xce,0x0d, + 0xfe,0x82,0x3f,0xa7,0x1b,0x0b,0xb2,0x98,0xb0,0x43,0xbb,0xd2,0x8d,0xa0,0x74,0xec,0x2f,0x15,0xdf,0xdc, + 0x92,0xf1,0x1d,0x4f,0x5b,0xa8,0x80,0xb9,0x0f,0x33,0xf0,0x0d,0xcd,0x8a,0xc2,0xa2,0xb4,0x68,0x3f,0x77, + 0xb4,0xd6,0xb4,0xba,0x08,0x1a,0x57,0xe1,0x66,0x89,0x8d,0x9f,0x6e,0xbe,0x1b,0xf3,0xff,0x88,0xbb,0x51, + 0x5c,0x14,0x96,0xe6,0x6e,0xcc,0x61,0xe2,0x5f,0x5f,0x97,0x69,0x27,0x69,0xb2,0x09,0xa7,0xef,0x6f,0xc6, + 0xe9,0xfb,0x63,0x6d,0x58,0x61,0xa1,0xad,0xac,0x65,0xa6,0xa4,0xed,0x1f,0x46,0x2d,0x5d,0x7a,0x18,0x6a, + 0x8f,0x24,0xfa,0x33,0x1e,0xf9,0x61,0x58,0xc4,0x51,0x4b,0xe0,0x1d,0x82,0x5b,0xe3,0xeb,0xcc,0xfa,0x8d, + 0xb8,0xa4,0xf4,0x83,0xa3,0xae,0xba,0x52,0x91,0x03,0xae,0x8a,0xf9,0x52,0x7a,0x83,0xf9,0x52,0x2a,0xe6, + 0x4b,0x52,0xc7,0xf3,0x3b,0xf2,0xf7,0xc7,0xaa,0x37,0xb6,0x5a,0x52,0xf0,0x88,0xe0,0xf6,0x1c,0xb9,0xb4, + 0x81,0x78,0x6c,0x89,0xc2,0x2d,0x68,0xa7,0x26,0x53,0xd8,0x88,0x74,0x36,0x34,0x58,0xc3,0x12,0xcd,0x96, + 0x3a,0x11,0xce,0x9f,0x6a,0x68,0x03,0xb2,0xe9,0x1a,0xfa,0x66,0x54,0x23,0x3d,0xff,0xb7,0x22,0x9a,0xe6, + 0x6b,0xd0,0x06,0x34,0xd3,0x51,0xac,0x42,0x32,0xf6,0x02,0xde,0x8a,0x62,0xd2,0x8f,0x44,0x31,0xb5,0x46, + 0x6f,0x45,0x30,0x52,0xfa,0x76,0xf4,0xd2,0x90,0xe5,0xfe,0xa7,0x23,0x97,0xf4,0x76,0xe4,0xd2,0xed,0x5a, + 0xe9,0xff,0x23,0x97,0x0e,0xe4,0x92,0x1a,0xe4,0xa2,0x34,0x41,0xc4,0x50,0x40,0x89,0x80,0x12,0x22,0xf8, + 0xac,0x85,0xf5,0x7f,0xf2,0x68,0x9d,0xa3,0xcb,0x28,0x99,0x47,0x27,0xc9,0x3c,0x41,0x7e,0x78,0x5d,0xbf, + 0x2f,0x83,0x0f,0xb5,0x97,0xc0,0xe0,0x04,0x5b,0xc3,0x1a,0xbd,0xf3,0xb9,0x1d,0xb7,0x17,0xbe,0x18,0xce, + 0x42,0x82,0xc2,0x4b,0x82,0x7d,0x4a,0xda,0xde,0x56,0x00,0x77,0xa6,0x53,0xb4,0x89,0xe5,0xc0,0xf1,0x78, + 0x46,0xb1,0x6e,0x46,0x42,0x32,0x75,0x8d,0xf7,0x03,0xd5,0xae,0x46,0xeb,0xdc,0x11,0xfd,0xd5,0x6b,0x82, + 0xd2,0x60,0x93,0xc0,0x15,0x45,0xe0,0xc4,0x26,0x0d,0xcf,0x36,0x34,0x99,0xd6,0x9a,0x2c,0xdb,0xed,0xb5, + 0xdf,0xc7,0xec,0x97,0x9f,0xff,0x08,0xf0,0x8b,0x95,0xde,0xaa,0xb6,0xc8,0xae,0xf8,0x29,0x62,0x5b,0x88, + 0x0b,0x35,0x66,0x5f,0x4d,0x5a,0x3d,0xb6,0x79,0x95,0xf5,0xba,0xb2,0x8a,0xb8,0x79,0x8e,0x93,0x4f,0x9b, + 0x64,0x8b,0xc1,0x49,0xba,0xd8,0xb2,0xc4,0x30,0x38,0x89,0x3d,0xcd,0x04,0x6c,0x99,0x70,0xf9,0x8d,0x69, + 0x66,0x16,0x7b,0x96,0x61,0x9e,0xc6,0x3a,0x2d,0x6b,0xcd,0xd3,0x4f,0xcd,0x4c,0xf3,0x4f,0x99,0x69,0xfc, + 0xe9,0x33,0x55,0xfe,0x12,0xeb,0x63,0xcd,0x99,0x79,0x2a,0x7d,0xa3,0xf7,0x9b,0xb7,0x78,0xc7,0x8f,0x1f, + 0xd5,0xf4,0xbf,0x16,0xc6,0x0c,0x4f,0x1c,0x6b,0x9b,0xbd,0xa9,0x05,0x5d,0x1d,0xdc,0xee,0xc7,0xce,0xa3, + 0xe3,0xec,0xfd,0xd7,0xce,0x23,0xbd,0x7d,0x1e,0xb0,0xb9,0x7e,0x9f,0xa4,0xee,0x31,0x3e,0x8d,0xf1,0x9f, + 0xeb,0xe0,0x9c,0x73,0x84,0x86,0x89,0x8a,0xea,0xce,0x8e,0xc3,0xce,0xaa,0xf8,0x63,0xee,0x95,0xb8,0x59, + 0xbc,0x52,0x5a,0x3b,0x34,0x5e,0xa3,0x3a,0x20,0x46,0x51,0x2f,0x40,0x0a,0xbd,0x29,0x73,0xaa,0x7c,0x4a, + 0x98,0x72,0x98,0x8b,0x7d,0x54,0x3e,0x50,0xd1,0xc4,0x81,0x19,0x15,0xae,0x0b,0x9d,0xbf,0x0f,0xee,0x0f, + 0xee,0x3b,0x7e,0x97,0xa9,0x96,0x44,0x7a,0xde,0xde,0x56,0x11,0x9f,0xdf,0x22,0x06,0x4d,0xf5,0x3d,0x58, + 0x16,0xb1,0xfb,0x82,0x10,0xb3,0x52,0x1f,0x32,0xd6,0x2e,0xd7,0x71,0x1a,0x5c,0x73,0x54,0xcd,0xc0,0x79, + 0x53,0x46,0x49,0x5e,0x38,0x7e,0xf1,0xa1,0x28,0xe3,0x8b,0xe7,0xcf,0x28,0x85,0xbf,0x7a,0xcf,0x9f,0x39, + 0xfe,0x2c,0xc9,0x2f,0xae,0xa2,0x3c,0x7e,0x2b,0x63,0x09,0x9c,0x6f,0x54,0x42,0x4f,0x8d,0x2e,0xe8,0x39, + 0xfe,0x24,0x5b,0x7c,0x90,0xc8,0x19,0xce,0x53,0xfd,0xd9,0xfb,0xdf,0xff,0xb3,0x77,0x6f,0x6f,0xff,0xef, + 0xbd,0x17,0x51,0x7e,0xde,0xbb,0x8c,0xd2,0xde,0x4f,0x71,0x5a,0x5c,0x65,0xcb,0x29,0x1d,0xab,0x79,0x16, + 0xc1,0xe3,0x56,0xe0,0xbc,0x9e,0xc7,0x30,0x1c,0xe4,0x68,0x06,0x3d,0x95,0xda,0x93,0x85,0x52,0x21,0xdf, + 0x07,0x83,0x81,0xe3,0xe7,0xf1,0x09,0x5d,0xef,0xaf,0xe3,0x54,0x6a,0x1d,0x9c,0xc5,0x3d,0x19,0x2d,0xcd, + 0x7f,0x3e,0xef,0x9d,0xc4,0x3d,0x29,0x11,0x4f,0xfd,0xde,0x42,0x9a,0xcc,0xe3,0x59,0x1e,0x17,0x67,0x8c, + 0xc9,0x7b,0x0b,0x9a,0x74,0x2f,0x9a,0x11,0x29,0x45,0x43,0x9f,0xd2,0x5c,0x79,0xeb,0x9f,0x70,0x14,0x8f, + 0xc0,0x79,0x8c,0x1f,0xb5,0xb4,0x37,0xd1,0x25,0x77,0x24,0x7f,0x79,0x08,0x57,0xc9,0x2c,0xa1,0x95,0x2a, + 0x97,0x45,0x70,0x1d,0x4d,0xe0,0xf1,0x72,0x91,0x25,0x69,0x69,0x56,0xf1,0xf1,0x6b,0xac,0xc4,0x34,0x29, + 0xa2,0x13,0xba,0x84,0x02,0xe7,0x99,0xfa,0x22,0xf2,0x83,0xdd,0x67,0x64,0x29,0xc2,0xdd,0x99,0xe2,0xbf, + 0x24,0xdf,0x24,0x1b,0x2a,0xf8,0x09,0x22,0x97,0x38,0xcf,0xa7,0x78,0x05,0x4e,0xb3,0x37,0x6f,0x78,0x4b, + 0xe8,0xdf,0x1e,0x6c,0x4d,0x67,0x19,0x41,0x01,0x6d,0xd6,0x24,0x4a,0x11,0x91,0x02,0xb6,0x1b,0x54,0xf9, + 0x0d,0xfd,0xec,0x4d,0xf4,0x6f,0xec,0x48,0x9a,0x12,0xb4,0x7e,0x43,0xb7,0x31,0xb2,0xe5,0x6f,0xaf,0xcc, + 0x7a,0x2a,0xc3,0x94,0xa0,0x71,0xfd,0x98,0x15,0xbc,0x71,0xfa,0x37,0xed,0x43,0x51,0xf2,0xc8,0x54,0x19, + 0x35,0x3a,0xf3,0x0b,0xc1,0x3e,0x0a,0xb5,0x14,0x65,0x74,0x72,0x60,0xc0,0x88,0x52,0x1c,0x5f,0x4d,0xf0, + 0xa9,0x44,0x8c,0xe9,0x15,0x2a,0x99,0xee,0xe6,0x37,0x65,0xbc,0x28,0x0e,0xf2,0x25,0x0a,0xc7,0x65,0x0f, + 0x6f,0x05,0x08,0x5b,0xff,0x81,0xe6,0x94,0xb3,0xa1,0x40,0x81,0x02,0x55,0xd1,0x6f,0xa0,0xbd,0xda,0x2c, + 0x0b,0x5f,0x6d,0x97,0xc9,0x74,0x89,0xa8,0x14,0xb4,0xb6,0x44,0xc8,0x20,0x1a,0x45,0x6d,0x24,0x07,0x2a, + 0x0d,0x63,0xb9,0x88,0x75,0x22,0x7d,0x4a,0xc2,0x73,0xbc,0x51,0xa4,0x84,0x7a,0x34,0xf4,0xd1,0xb2,0xc2, + 0xfe,0x25,0x2a,0x7b,0xc8,0xee,0xe9,0x26,0x7b,0xca,0x26,0xa5,0x17,0xa5,0xdc,0x3f,0xea,0xf4,0xaa,0x65, + 0x1b,0x48,0x6b,0x2f,0x33,0x0e,0x71,0xec,0xbc,0xcc,0x1a,0xb5,0xd5,0x51,0xed,0x7d,0x88,0x4b,0x29,0xf9, + 0x75,0xaa,0x76,0x5a,0x3e,0xea,0xc5,0xd5,0x58,0x21,0xc4,0x66,0x5f,0x5a,0x18,0x2e,0x66,0xa2,0x7f,0x4b, + 0xe9,0x24,0xed,0x5d,0x10,0xc0,0x27,0x45,0x4c,0xe3,0x98,0xaa,0x4a,0x8f,0xa7,0xd4,0x26,0xfd,0x23,0xbf, + 0x9e,0x49,0x40,0x21,0x47,0xfe,0xea,0x66,0xb9,0x93,0xc6,0x00,0x54,0x85,0x6f,0x92,0xf7,0xf1,0x54,0xba, + 0xe3,0x4f,0xee,0x49,0xb2,0xde,0x2c,0xd3,0x3c,0xe1,0x2d,0x90,0x0f,0x93,0x5a,0x60,0xf5,0xe4,0xaf,0x5e, + 0xe4,0x0b,0xb5,0xc6,0x32,0xc6,0x74,0x59,0xc6,0x6a,0x78,0x2f,0x68,0xa4,0xd1,0x87,0xc0,0x91,0xbf,0xaa, + 0xf8,0x32,0x2e,0x38,0x51,0x7d,0x48,0xea,0x2f,0xf1,0x34,0x55,0xe9,0xe6,0x53,0x95,0x3f,0x5b,0xe6,0xaa, + 0x82,0xfa,0x52,0x63,0xcf,0x13,0x4e,0x95,0xbf,0x6a,0x78,0x04,0x6f,0x39,0xa7,0xea,0x2f,0x33,0x6c,0x49, + 0x5d,0xca,0x38,0x2e,0x32,0x59,0x67,0x86,0x8e,0x17,0xfc,0x43,0x27,0x5a,0x7b,0x2a,0x09,0x1b,0x76,0x55, + 0x32,0x9b,0xfb,0xda,0xa8,0xd2,0x28,0xf6,0x6c,0x09,0xd2,0xfb,0xa0,0xda,0x15,0xda,0x3b,0x5c,0x2b,0x74, + 0x11,0xf4,0x10,0x5c,0xa8,0x97,0xcc,0x7a,0x51,0x0d,0x36,0x60,0x4b,0x13,0xcd,0xf3,0x38,0x9a,0x7e,0xe8, + 0x45,0x62,0x7e,0xae,0x07,0xff,0xa9,0xe0,0xa2,0xab,0x6d,0x00,0x07,0xc9,0xae,0xe0,0x49,0x7e,0x37,0x21, + 0x4a,0x52,0x5f,0x27,0x84,0x39,0xbf,0x7d,0xfd,0xfc,0x55,0x6f,0x41,0xdd,0xb8,0x32,0xb0,0xde,0x19,0xa1, + 0x7e,0xcf,0x54,0x94,0x1b,0x13,0x28,0xf6,0xcd,0x55,0x1c,0x2f,0xe8,0x20,0x25,0x17,0x91,0xbd,0xd0,0xa6, + 0xc4,0x4b,0xeb,0x3b,0x9a,0x63,0xe5,0xd3,0x98,0x1a,0xd5,0x38,0xa1,0x87,0xb3,0x09,0xa4,0x1f,0x5d,0xc8, + 0xb9,0x69,0xf7,0x71,0x90,0x2d,0x9e,0x21,0xa6,0x96,0x43,0x1f,0x3d,0x44,0xd7,0x6a,0x95,0x78,0x92,0x11, + 0x6a,0xbf,0xf8,0x79,0x11,0x38,0xf2,0xd5,0x5b,0x2e,0x9c,0xb5,0x85,0x07,0x6d,0x14,0x52,0x61,0xc3,0x0a, + 0xa1,0x55,0x08,0x92,0x5f,0xfc,0xe2,0x92,0x37,0xd7,0xbe,0x0b,0x34,0x04,0x48,0x5a,0x8f,0x13,0x6b,0x25, + 0xbe,0xe3,0x52,0x8f,0xe7,0xf3,0xec,0xaa,0x10,0xac,0xa7,0x7c,0x0a,0x58,0x78,0xa5,0x37,0xcb,0x69,0x6c, + 0x1f,0xb2,0x65,0x4e,0xc0,0x76,0x99,0x4c,0x62,0xa0,0x6d,0xbe,0xc5,0xe4,0xa2,0x56,0x1e,0x91,0xb8,0x7a, + 0xed,0xa6,0xec,0x2d,0x96,0xf9,0x22,0x2b,0xe2,0x62,0xd0,0xc3,0x05,0xa9,0x4a,0xd7,0x8b,0x00,0x94,0x84, + 0x45,0xa3,0x16,0xe8,0xf7,0x59,0x59,0x2e,0x82,0xdd,0xdd,0xfd,0xaf,0xee,0x0d,0xf6,0xbf,0xf8,0x72,0xb0, + 0x3f,0x78,0xb0,0xdb,0xbb,0x3a,0x23,0x28,0xa4,0xfe,0x7b,0xb8,0xe5,0x0d,0xd2,0xc7,0x28,0x92,0x92,0x9a, + 0x66,0x26,0xa3,0xec,0x65,0x33,0x82,0xd3,0xa2,0x57,0x64,0xf0,0x31,0x53,0xf4,0xd4,0x1d,0x87,0xc1,0xc5, + 0xe8,0x45,0x77,0x8b,0x1b,0x99,0xb2,0xa9,0x02,0x25,0xb2,0xaf,0x84,0x78,0x82,0x54,0xc0,0x66,0x94,0x7e, + 0xa0,0x9b,0xff,0xc3,0xa0,0xf7,0x2b,0x75,0x86,0x0b,0x2c,0x9a,0xd3,0xcf,0xa2,0x67,0x38,0xb0,0x9e,0xd0, + 0x4a,0x3d,0x08,0x09,0x30,0xda,0x93,0x0f,0x3d,0x28,0x4b,0x82,0x46,0x00,0x34,0xd8,0xcb,0xdc,0x53,0x21, + 0xb9,0x96,0x69,0x99,0xcc,0x39,0xf7,0xc7,0xaf,0x9f,0xf5,0xe6,0xa0,0x44,0x0a,0xda,0x68,0x42,0xd6,0xf6, + 0x2d,0xac,0x37,0xca,0x1e,0x75,0xad,0x84,0x6c,0x94,0xda,0xf2,0xae,0xd5,0xa7,0xd5,0xe0,0x2d,0x22,0x40, + 0xeb,0xe1,0x2e,0xef,0xe5,0xec,0x31,0x6c,0xd0,0x53,0x77,0x0a,0x07,0x82,0xe3,0x71,0xe0,0xe6,0x26,0xaa, + 0x24,0x2a,0x88,0xf8,0xc9,0xa7,0x34,0xe9,0x29,0x91,0xb5,0x39,0xe5,0x34,0xb7,0xef,0x24,0x26,0xb0,0xc0, + 0x40,0x8b,0x64,0x2a,0x17,0xbe,0xe3,0xeb,0x6a,0x74,0x57,0xa9,0x2f,0xba,0x98,0xcf,0x26,0x04,0xc3,0x3f, + 0x53,0x27,0xcf,0xbe,0x7b,0xfa,0x5a,0x7e,0x2b,0xc0,0x5a,0x12,0x58,0xc3,0x55,0x17,0x2e,0x47,0x5a,0xf6, + 0x22,0x39,0x4d,0x0b,0x5c,0x5f,0xcf,0x5f,0xf7,0x54,0x4c,0xf9,0x6e,0x60,0x92,0x2d,0x20,0xf2,0xfc,0x84, + 0x96,0x05,0x9b,0x42,0x0b,0x4a,0x05,0xcf,0x71,0x68,0x65,0x23,0xb0,0xb2,0x73,0xd4,0x07,0x60,0xc0,0xa4, + 0x89,0xc0,0x84,0x0e,0x25,0xfd,0xba,0x4b,0x50,0x32,0xcd,0x40,0x26,0x11,0xe5,0xb2,0x50,0xdd,0x10,0xf9, + 0x62,0xba,0xa4,0x19,0x2d,0x4f,0xe8,0xee,0xbc,0x88,0x8a,0x73,0xa0,0x5f,0x7c,0xf7,0xf0,0xc3,0xf1,0x4f, + 0x09,0xeb,0x5d,0x01,0x29,0x7f,0x2b,0x1f,0x8e,0x7f,0x46,0xb4,0x87,0xd8,0x97,0x7e,0xa7,0xbe,0xaa,0xb4, + 0xd7,0x95,0x3f,0x64,0x60,0x23,0x31,0x29,0xa5,0x96,0x26,0xa6,0xa7,0xb5,0x22,0x62,0x6b,0x74,0x09,0xa7, + 0x10,0x25,0x55,0x2e,0x2c,0x52,0xa0,0x07,0x95,0xce,0xb3,0x3c,0x4b,0x89,0xea,0xe2,0xd5,0x77,0x5f,0x1e, + 0xbc,0x26,0xac,0x42,0xc8,0xac,0x50,0xc5,0xbe,0x23,0x52,0x91,0x29,0x5d,0x4a,0xcb,0x10,0x58,0xf3,0x22, + 0x5a,0xe8,0xbc,0x6f,0xb3,0xec,0x94,0xa0,0xe0,0x05,0xa5,0xf4,0x1e,0xbf,0x7e,0x5e,0xd1,0xc9,0x2a,0xdf, + 0x50,0xc9,0xc2,0x1f,0x10,0xb9,0x15,0xcd,0x93,0x93,0x9c,0xa5,0x21,0x82,0x4d,0xf4,0x6f,0x2b,0x4b,0xd3, + 0xa3,0x26,0x4f,0x13,0x44,0xa6,0x84,0x6c,0xf3,0xcf,0x6c,0xc6,0x1d,0x6b,0x90,0x67,0xb8,0x51,0xb4,0x9d, + 0x9c,0x39,0xce,0x15,0x49,0x0b,0x9d,0x53,0x69,0xc5,0x67,0xc8,0xa3,0x52,0xd1,0xf4,0x1d,0x0c,0x30,0xb9, + 0x01,0xa6,0xd4,0x53,0x6c,0x2b,0x1c,0xc7,0x44,0x93,0x33,0x8b,0xbc,0xe2,0x6a,0xbc,0x6c,0x6f,0xe0,0x75, + 0x97,0x96,0x9c,0x56,0xa8,0xc7,0x1e,0x78,0x73,0x4e,0x66,0x3a,0xea,0x12,0xd8,0xfa,0x27,0x45,0x6b,0x27, + 0x2a,0xa5,0xe7,0x56,0x44,0x80,0xc7,0x65,0x7f,0x8c,0x68,0xdc,0xf4,0x4f,0x52,0x32,0xfd,0x8f,0x14,0xd0, + 0xd7,0x3f,0x66,0xe9,0xa9,0x95,0x44,0xdc,0xb1,0x5c,0x17,0xdf,0x12,0x84,0xcc,0x55,0xe9,0xde,0x2e,0x11, + 0xa4,0xaa,0x98,0xe0,0xc6,0xb9,0x2a,0x57,0xab,0xf4,0x26,0x8e,0xf2,0xc9,0x19,0xa8,0x45,0xfc,0xe5,0x8d, + 0x24,0x0c,0x40,0x54,0x39,0x5d,0xaf,0x8c,0x26,0x5e,0x33,0x9a,0x10,0x72,0x94,0x91,0x03,0xdf,0x5b,0x7d, + 0xe2,0xac,0x2e,0x3d,0x5d,0xfc,0xcd,0xc1,0x63,0x21,0x64,0x01,0x11,0x2f,0x80,0xca,0x6e,0x28,0xff,0xf8, + 0xb5,0xde,0x30,0x85,0x4d,0x6a,0x1d,0xa9,0xcd,0xb1,0x2f,0x47,0xda,0x26,0xa9,0xf9,0xfa,0x97,0x17,0xcf, + 0x72,0x4a,0xc9,0xdf,0x3c,0xa3,0xfe,0x5e,0x3f,0x7d,0xfc,0xd5,0x17,0x5f,0x7e,0xde,0xa3,0xd4,0xde,0x94, + 0x93,0x7b,0x94,0x2e,0x35,0xa1,0xd4,0xdc,0xac,0xf3,0xf4,0xc7,0xee,0x3a,0x4f,0x7f,0x94,0x3a,0x13,0x78, + 0x60,0x45,0xa5,0xab,0x8b,0xc7,0xfa,0x34,0x76,0x94,0x7f,0xfe,0xbf,0xff,0xd7,0xd3,0xea,0x88,0x52,0xe1, + 0x6f,0x40,0xef,0xc6,0xe9,0xe4,0x43,0x67,0xf1,0x99,0xce,0x95,0x73,0x40,0x40,0xff,0x43,0xfc,0xa1,0x75, + 0x10,0x08,0x65,0xd4,0x0a,0x9c,0x31,0xc0,0xfe,0x14,0x8b,0xf7,0xc1,0x29,0xf0,0xfe,0xac,0xb7,0x2c,0x18, + 0x83,0xdb,0xe4,0xef,0xa0,0x47,0x40,0x3d,0xe5,0x3b,0x6d,0x9e,0x65,0xe7,0xc8,0x5f,0x2e,0x18,0x46,0x55, + 0xe4,0x49,0x2e,0xfe,0x07,0x51,0x05,0x03,0x42,0xb7,0x44,0x16,0x10,0x2a,0x3c,0xef,0x21,0x14,0x1e,0x9d, + 0x4c,0x60,0x38,0xd5,0xb7,0x8f,0x75,0xef,0xa9,0x41,0x5d,0x30,0x1f,0x0a,0x29,0x72,0x49,0x67,0x4e,0xf0, + 0x35,0xcf,0xa2,0xa0,0x7b,0xec,0x27,0xe2,0xbb,0x0b,0xe0,0x68,0xb9,0x86,0x69,0x7a,0xb1,0x6e,0x04,0xd4, + 0x86,0xba,0x18,0xb5,0xe3,0x3e,0xba,0x89,0xe9,0x94,0x2d,0x30,0xd2,0x53,0x6e,0x1c,0xbc,0xfe,0x2e,0x1f, + 0xa9,0x48,0x53,0x6f,0x49,0x79,0x97,0xae,0x9a,0x42,0x6e,0x66,0x0c,0x5d,0x2f,0xca,0x80,0xf0,0x12,0xcb, + 0xac,0x83,0x6b,0xb0,0xb8,0x86,0x95,0x7e,0x0a,0x9f,0x8e,0x7c,0x29,0x22,0x99,0x4e,0x8f,0x08,0xdd,0x01, + 0x7b,0xd1,0x09,0xe6,0x55,0x1a,0x3e,0x57,0x58,0xe6,0x8a,0x04,0x69,0x55,0xb6,0xe8,0x07,0x22,0xca,0x4b, + 0xb8,0xb3,0x96,0x3a,0x82,0xfe,0x5a,0xe5,0x15,0xfb,0x5c,0x2f,0x6b,0x51,0xa5,0x45,0xab,0x46,0x8d,0x24, + 0xad,0xd7,0x7b,0x61,0x93,0x95,0xed,0x9a,0x75,0x82,0xd8,0xaa,0xcb,0x1c,0x77,0xf7,0xa4,0x0a,0xd8,0x87, + 0x77,0x4e,0x8a,0x2b,0xb5,0x67,0xc5,0x15,0x5a,0xb3,0x12,0xf4,0x8b,0x0b,0x5a,0xf1,0xee,0x56,0x8d,0x3c, + 0xa6,0x11,0xd1,0xbe,0xca,0xfd,0xad,0xf9,0xd4,0xe5,0x02,0x63,0xd6,0xf8,0x9b,0xce,0x36,0x36,0xae,0xc7, + 0x51,0x14,0x7b,0x92,0x07,0xe0,0xd4,0xe8,0x5e,0xf7,0xc0,0xfc,0xaa,0xdd,0x38,0x8f,0x92,0x9f,0x57,0x80, + 0x46,0xc5,0x33,0x14,0x6e,0x42,0xc6,0x4e,0x15,0xa2,0xb3,0x57,0x2a,0x3b,0x07,0xcc,0x6b,0xe4,0x46,0x93, + 0xa7,0xdb,0x3e,0x49,0x23,0x66,0xa4,0xb8,0xb9,0x4d,0xdb,0xc3,0x53,0xdf,0xb0,0x3d,0x5c,0x71,0xf3,0xfe, + 0x70,0xd5,0x4d,0xfb,0xb3,0x36,0x17,0x8f,0x50,0xc7,0xf5,0x9b,0x0b,0x55,0xae,0x92,0x3f,0x22,0x90,0x24, + 0x20,0xd0,0x34,0x32,0x7c,0x42,0xdf,0xa0,0xa5,0x10,0xb9,0x66,0x89,0xd3,0xff,0xb2,0x7e,0x11,0x11,0xd6, + 0x8e,0xdf,0x97,0xba,0xf4,0x4b,0x36,0xcc,0xee,0x10,0xc7,0xac,0xd7,0x7e,0x3a,0x37,0x9d,0x12,0x67,0xb3, + 0x68,0x49,0xa8,0x3e,0x4e,0x44,0x15,0xff,0x35,0x09,0xd5,0xd7,0x44,0x0c,0x67,0xa7,0x71,0x7a,0x32,0x4f, + 0xce,0x7b,0xa7,0x31,0x51,0x4b,0x44,0xd1,0x9e,0xc4,0x7f,0x24,0xa7,0xbd,0x0b,0xbe,0xa5,0xa6,0x54,0xe0, + 0x92,0xa5,0x2f,0x86,0x98,0x8b,0xbb,0x84,0x56,0xdf,0x51,0xe9,0x42,0x0d,0x1b,0x84,0x1c,0x91,0xd0,0x8b, + 0x34,0x89,0x97,0x57,0xf4,0xf7,0x34,0x96,0xe0,0x4e,0x18,0x31,0x06,0x4d,0x14,0x55,0xfc,0x47,0x0c,0xb1, + 0x15,0x01,0x40,0x2f,0xa5,0xa1,0xc4,0x69,0x63,0x95,0x0e,0xb2,0x18,0xc4,0x61,0x23,0x5d,0x0b,0xae,0x9e, + 0x98,0x01,0x66,0x8b,0x62,0x1e,0x45,0xe9,0x9f,0x92,0x61,0xfd,0x9c,0x94,0x34,0xb2,0xc9,0x59,0x74,0x1e, + 0xcf,0x3f,0x5e,0x90,0x55,0xaf,0xa5,0xa4,0x59,0x6f,0x68,0x10,0x0b,0xb8,0x6e,0x99,0x36,0x65,0x5a,0x09, + 0x0d,0xf2,0x34,0xbe,0x24,0x06,0x15,0x73,0xe9,0x92,0x6b,0x45,0x33,0x02,0xcb,0x2c,0x6d,0x8b,0xb5,0x7e, + 0xa0,0xcc,0xd3,0x18,0xeb,0x1f,0xe7,0x2a,0x86,0x03,0x91,0x83,0xe7,0x68,0xa7,0x29,0xde,0x7a,0x5b,0x95, + 0xa0,0xc2,0xf3,0x2c,0x47,0xa1,0xba,0x88,0xeb,0x25,0x46,0x82,0x96,0x64,0x28,0x1f,0x23,0xe4,0xfa,0x6e, + 0x99,0x4c,0x93,0xd3,0x78,0x83,0x90,0x8b,0xf8,0x3c,0x1c,0xc9,0x18,0x10,0x82,0xfd,0x9c,0xcf,0xc0,0x1b, + 0x29,0x49,0x56,0x9c,0x94,0x2d,0x49,0xd7,0x81,0x94,0xd5,0x34,0x58,0x1c,0xcf,0xd9,0xdf,0x4d,0x4c,0xed, + 0xa4,0x9f,0x26,0xeb,0x7a,0x37,0x6d,0xca,0xba,0x7e,0x64,0x58,0xe8,0x11,0xb2,0xea,0x5d,0x66,0xb8,0xa0, + 0xa8,0x4c,0x25,0xd6,0x88,0xe3,0x4a,0xc6,0x75,0x59,0x5b,0xaa,0x18,0xce,0x0b,0x93,0xa2,0x25,0xed,0x3a, + 0x95,0x95,0xaf,0x37,0x73,0x1a,0x1b,0x1a,0x34,0xce,0xa7,0x0d,0xb1,0xd7,0x41,0xad,0x28,0x4d,0x4c,0x40, + 0x24,0x4e,0x6f,0x96,0x7d,0xc5,0xd2,0x47,0x5d,0x96,0xa1,0x2b,0xb1,0xac,0x82,0x8e,0xc2,0x65,0x16,0x9f, + 0xea,0x34,0x2d,0xaf,0xa0,0x2d,0xbf,0xa2,0x9a,0x71,0x5e,0xf5,0x50,0x97,0x7b,0x40,0xee,0x12,0xcf,0x5a, + 0x52,0xb0,0xb7,0x51,0x51,0x4a,0xa7,0x0d,0x29,0xd8,0x6f,0x20,0x06,0x16,0xe7,0xd9,0x45,0x51,0xd6,0x25, + 0x61,0x9c,0x01,0x25,0xee,0xd3,0x08,0x2a,0xc1,0xb6,0x40,0x4c,0x8f,0x1c,0xb4,0x70,0xda,0x10,0x88,0xd1, + 0xb1,0x9c,0x46,0xa7,0x0d,0x89,0xd8,0x33,0x5a,0x18,0x93,0x6a,0x4b,0xc4,0xb2,0xd8,0xca,0xa8,0x04,0x62, + 0xcf,0xb8,0x63,0x93,0xa1,0x25,0x62,0x6f,0x73,0xea,0x5a,0x27,0x56,0x22,0xb1,0xdf,0xe8,0x3a,0xa9,0x0a, + 0x6b,0x91,0xd8,0x6f,0x99,0x0c,0xa4,0x26,0x12,0x7b,0x12,0x5f,0xc5,0xa7,0xac,0xe2,0xdc,0x14,0x8a,0xa9, + 0xad,0x3f,0x51,0x05,0x36,0x6f,0x7f,0x43,0x3e,0xf6,0xa4,0x55,0xa1,0x06,0x04,0xb7,0x89,0xc9,0x5e,0xd1, + 0x05,0x69,0x55,0xe8,0xd1,0x99,0xe9,0xc5,0x10,0x1c,0xf7,0x9a,0x80,0xc8,0x34,0x59,0x3c,0x23,0xb0,0xbd, + 0x4d,0x52,0xb6,0x11,0xb8,0xba,0x25,0x65,0x1a,0x62,0x2c,0x41,0x99,0x05,0x7c,0x75,0x71,0x59,0x0d,0xfc, + 0x36,0xca,0xcc,0x68,0x94,0x67,0x44,0x50,0x76,0xc9,0xcc,0x1e,0x8b,0xb4,0x2c,0xbe,0x55,0x58,0xf6,0x2d, + 0xe6,0x0f,0x61,0x99,0xc1,0x36,0xa7,0xf1,0x3c,0x79,0x77,0x8e,0xa9,0x25,0x1d,0x4d,0x1b,0x51,0xd9,0x93, + 0x0c,0x02,0xc7,0x34,0x8a,0x72,0xda,0xcc,0x34,0xb6,0x26,0xde,0x25,0x34,0x93,0x12,0xaa,0x38,0x6a,0x6e, + 0x94,0x9e,0x55,0xc8,0xd6,0x60,0x4a,0x0b,0xff,0xda,0x17,0x65,0x43,0x7e,0xf6,0xd8,0x96,0xe8,0xd4,0x80, + 0xa3,0x25,0x44,0xa3,0xd3,0x73,0x4e,0x64,0x3a,0x44,0x09,0x99,0x4c,0xb7,0x47,0xac,0x21,0x56,0x42,0x24, + 0x6a,0x15,0xf5,0x18,0xe3,0x7a,0x8e,0x66,0x9c,0x47,0x57,0x65,0x94,0x47,0x84,0x03,0x79,0x16,0x7c,0xc9, + 0x82,0xb4,0x30,0x52,0x9d,0x58,0xee,0x0f,0x34,0x35,0x8d,0xad,0x54,0x03,0xd7,0x88,0xaf,0xd1,0x7b,0x56, + 0xaf,0x95,0x14,0x28,0x42,0x2b,0x18,0xf1,0x6e,0xf7,0x2e,0x93,0xa8,0x53,0xb0,0x46,0xf9,0xd4,0xf3,0x3b, + 0x7b,0x64,0x67,0xf1,0x09,0x6e,0xbf,0x0b,0x4c,0x66,0xd0,0x7b,0x23,0xf3,0x95,0x71,0x41,0xf6,0x45,0x24, + 0x67,0x82,0xb1,0xf2,0x3c,0xed,0x31,0x10,0x37,0x4f,0xa8,0x86,0x2e,0x79,0x75,0xb5,0xc8,0x35,0x7a,0x42, + 0xd4,0x6c,0x32,0x4f,0x4e,0xa7,0x40,0xd8,0xbd,0xef,0xe3,0xde,0x39,0x11,0x60,0x76,0x6b,0x59,0xe3,0x08, + 0x4d,0x71,0x13,0xe0,0x56,0x30,0xcc,0xab,0x2c,0xfd,0x79,0x4a,0x89,0x34,0xa7,0x69,0xbe,0x3c,0xc7,0x72, + 0x94,0x59,0x89,0xa1,0x4f,0x45,0xaa,0x16,0xe1,0xda,0xa5,0x45,0x6c,0x0a,0xd5,0xac,0x3d,0x06,0xe5,0xc1, + 0x64,0xb5,0xba,0x8e,0x5b,0xa2,0x35,0x55,0xb6,0xbd,0x05,0x68,0x9c,0x96,0x28,0xa6,0x6b,0xb5,0x21,0x59, + 0x7b,0xbb,0x9c,0xf7,0xce,0x12,0xa6,0x04,0xe8,0x88,0x63,0x45,0x98,0x80,0xa0,0x62,0x57,0xd1,0xe4,0xac, + 0xbc,0x02,0xbd,0x4c,0xb3,0xf3,0x91,0x62,0xe1,0x21,0x96,0xaa,0x97,0x4b,0x5e,0xd6,0x1e,0x81,0x6d,0x8e, + 0x0b,0x9b,0x97,0xa3,0xd8,0x28,0x6c,0xfb,0xc5,0x34,0xa8,0xc5,0x6d,0xdf,0xc6,0x27,0xf9,0x92,0x28,0xc0, + 0x4d,0x22,0x37,0x5a,0x53,0x06,0x30,0x16,0x7b,0x11,0x4b,0x4d,0x4b,0x16,0xd3,0xf1,0xff,0x03,0x30,0x17, + 0xa5,0xad,0x69,0x12,0x17,0x4b,0x00,0x48,0x95,0x92,0x77,0x29,0xc3,0xee,0x55,0x32,0xc7,0xb4,0xad,0xbd, + 0x42,0x35,0xd8,0x33,0xd0,0x84,0xe8,0x9f,0x3f,0x92,0x77,0xc8,0xbf,0x8a,0x69,0xda,0x57,0x80,0x5d,0xfa, + 0x71,0x11,0xc7,0x8a,0x12,0x3d,0x81,0xfb,0xb2,0xb6,0xf8,0x2d,0x8f,0x37,0x0b,0xdf,0x20,0xc4,0xb9,0x5d, + 0xfc,0x16,0x5d,0x6c,0x10,0xbf,0xbd,0x01,0x29,0x47,0xe3,0x98,0x6a,0x01,0x1c,0xfa,0xda,0x28,0x7e,0x6b, + 0xca,0xdf,0xde,0x4d,0xeb,0xf2,0xb7,0xf8,0x26,0xf1,0x5b,0x04,0xc3,0x0e,0x3a,0x07,0x04,0x57,0x8c,0xa0, + 0xfe,0x84,0x14,0xee,0x24,0x79,0x77,0x15,0xe7,0x42,0x18,0x36,0x04,0x71,0x3f,0x68,0x76,0xa6,0x4b,0x12, + 0x27,0x99,0x00,0x22,0x41,0xac,0x2d,0x51,0x9c,0x06,0x0b,0x86,0x49,0x02,0x72,0x5a,0x94,0x58,0x4e,0x0f, + 0x61,0x10,0x80,0x28,0xa5,0x94,0x74,0x43,0x95,0x9a,0xb2,0xeb,0x89,0x54,0x0f,0x14,0x1d,0x03,0xaa,0x20, + 0x9a,0xb3,0x18,0xab,0x7a,0x16,0x27,0x53,0x66,0x25,0xe2,0xf9,0xb9,0x42,0xe5,0x0c,0x05,0x65,0xdc,0xd3, + 0xa4,0xfe,0xc7,0x48,0xe3,0xde,0x0a,0x0f,0xd1,0x25,0x8d,0x4b,0x2d,0x69,0xdc,0x13,0x9a,0xd7,0xb4,0x8c, + 0x4f,0x09,0x1d,0x4e,0x2d,0x89,0x1c,0x94,0x29,0xec,0x44,0xc3,0xaa,0xda,0xe5,0x21,0x93,0xab,0x0a,0x12, + 0xc0,0x9e,0x45,0x40,0x27,0x34,0xed,0x93,0xa8,0x20,0x74,0x88,0x49,0x08,0x23,0x1b,0x77,0x0a,0xe9,0x7e, + 0xcb,0x62,0xde,0x8c,0x3f,0x2f,0xa4,0xb3,0x78,0xf6,0x5b,0x84,0x73,0xb5,0x96,0x6d,0xe4,0xc7,0xdb,0x64, + 0x5f,0xc4,0xc4,0xa2,0x9c,0xfe,0x57,0x08,0xe8,0xce,0xe7,0xd9,0xff,0x5d,0xf2,0xb9,0xc7,0xb8,0x4b,0x72, + 0xe6,0x64,0xe9,0xa4,0xd0,0x7d,0x24,0x40,0x7d,0xc9,0x88,0xab,0x4e,0xe2,0x13,0xe2,0x62,0xde,0x55,0x95, + 0x29,0x35,0x00,0x2b,0x46,0x08,0x65,0x21,0xa5,0x93,0x0b,0x71,0x01,0xa8,0xa0,0x1a,0x74,0xf4,0x4a,0xbe, + 0x7b,0xfe,0x10,0xdc,0x6d,0x84,0x75,0x17,0xc0,0x64,0x6a,0x88,0x54,0x9c,0xcb,0x4d,0xa9,0x57,0x08,0xe6, + 0xce,0xd1,0xae,0x12,0xd7,0x15,0x5a,0x5e,0x27,0x08,0x1d,0x14,0x0e,0x8e,0xac,0x99,0x12,0x20,0xef,0xe3, + 0x24,0x76,0xc0,0xc7,0x2c,0x8d,0x55,0x57,0x08,0xf3,0x42,0x7a,0xc2,0xb8,0xb5,0xa6,0xb7,0xcb,0xed,0xc0, + 0x76,0x2a,0x4e,0xde,0xc8,0xec,0xd4,0x0d,0xac,0x4e,0x42,0x5b,0x5c,0x87,0x3a,0x16,0x63,0xa5,0xd8,0x3a, + 0x46,0x69,0x1d,0x35,0xb5,0x78,0xcb,0xea,0xe9,0xb6,0x2a,0x75,0xe1,0x10,0x2a,0xd6,0x28,0xe2,0x5b,0x6a, + 0x37,0x25,0x44,0xa8,0xdf,0xa4,0xef,0x6f,0x6a,0xa3,0x25,0xc9,0xfb,0x88,0xf9,0xb2,0x5c,0xa2,0x21,0xcf, + 0xbb,0x6d,0xc2,0xaa,0x4e,0x5b,0xac,0x87,0x8a,0x36,0x4e,0xa8,0x0f,0xaf,0x29,0xd4,0xfb,0x86,0xa5,0xab, + 0xa0,0xce,0xd3,0xa2,0xba,0x1c,0x18,0xe0,0x37,0x48,0xf6,0x78,0x41,0x71,0x7f,0xdf,0x30,0xaa,0xa6,0x70, + 0xef,0x87,0x0a,0x0b,0x5a,0xd2,0xbc,0x54,0xd3,0x6a,0x0b,0x6b,0xe9,0xfe,0xc4,0xee,0xd9,0xcb,0xf7,0xa7, + 0xb7,0x4f,0x1a,0xe9,0x16,0xf4,0x55,0x37,0x63,0xa7,0x9c,0xef,0x20,0xce,0x97,0xa7,0x35,0x41,0xdf,0x63, + 0xfb,0xae,0xab,0x8b,0xf9,0xde,0x66,0xf3,0x53,0xc8,0xff,0x37,0x0a,0xb1,0xd6,0xeb,0x75,0x15,0x74,0x87, + 0x85,0x61,0x8f,0x17,0x0b,0xd7,0xbb,0x86,0x12,0x5b,0xa5,0x56,0xe7,0x4c,0xce,0x62,0x48,0x17,0xaf,0x75, + 0xf0,0xa8,0xe0,0xee,0xc3,0x69,0x72,0xd9,0x9b,0xcc,0xa9,0x95,0x50,0xe5,0xf6,0x02,0xf5,0xf3,0xba,0xc7, + 0x09,0xc4,0xb8,0x89,0xfc,0xd5,0xef,0x19,0x21,0x95,0xf9,0xea,0xad,0x9d,0xde,0x3f,0x08,0x83,0x40,0x63, + 0x20,0x74,0xce,0xe8,0xfe,0x9e,0xc7,0x84,0x17,0xc1,0x1f,0x51,0xc6,0x64,0x9e,0x4c,0xce,0x75,0xf2,0x53, + 0xfc,0x70,0x7a,0x44,0xda,0xb0,0xc9,0x7e,0xe8,0xec,0x39,0x8f,0x6a,0xbd,0x67,0x69,0x99,0x67,0xf3,0x7a, + 0x22,0x47,0x7c,0xa2,0xa4,0x5d,0x4a,0xd3,0xff,0x5a,0xd9,0xf3,0xe8,0x24,0xa6,0x1a,0xd7,0xd7,0x3d,0x5e, + 0xf4,0xde,0x7a,0x6d,0x97,0xbc,0x6b,0x1c,0xea,0xf2,0x8e,0x28,0x57,0xb9,0xe2,0xc5,0x52,0x1c,0x5b,0x3e, + 0xc9,0x08,0xd7,0x45,0xa9,0x71,0xb0,0xbb,0xb5,0xbf,0xae,0x24,0x71,0x1b,0x8b,0xc0,0x5f,0x13,0x6b,0x19, + 0x06,0xd7,0xd6,0xd4,0x5a,0x6e,0x8e,0x75,0x43,0xf0,0xd9,0x87,0xdf,0xdc,0x71,0xb8,0x55,0x7d,0x8b,0x9e, + 0xf8,0x1d,0x42,0x83,0xb4,0x35,0x49,0xba,0xc0,0x23,0x69,0x95,0x0b,0xd7,0x2d,0xb5,0x05,0xad,0x45,0x8e, + 0xbb,0x7f,0x0f,0x0e,0xb7,0x68,0xe5,0xe1,0x57,0x5f,0xfb,0x82,0xb3,0x46,0x03,0xc5,0x5d,0x04,0xe9,0x04, + 0xf1,0xae,0xad,0x66,0x95,0xf2,0x6e,0x03,0x26,0xe8,0xe2,0x4a,0xb2,0x8d,0x30,0x21,0xb9,0x1b,0x61,0xa2, + 0x17,0x86,0xbd,0x64,0xfa,0xff,0x14,0x64,0x48,0x30,0xa6,0xa9,0xfc,0xfd,0x4f,0x06,0x06,0xfe,0xa4,0xf5, + 0xfb,0x6f,0x01,0x04,0xe5,0x78,0x09,0x8f,0x2c,0x2a,0x24,0x4b,0xe5,0xdb,0x2c,0xba,0x4c,0x88,0xbb,0xc9, + 0xf2,0xc1,0x9c,0x68,0x9b,0x65,0x74,0x1a,0x37,0x1d,0x8d,0x39,0xcc,0x4b,0x68,0xb7,0x65,0xc6,0xcd,0x8b, + 0x37,0x54,0xcd,0xb9,0xd7,0x31,0xd1,0xd2,0x7f,0x23,0x74,0x45,0x7c,0x15,0x35,0x1d,0xc4,0x3e,0xbb,0x01, + 0xbb,0x4e,0x09,0xd7,0xce,0x12,0x85,0xe3,0x79,0x8d,0xf5,0x5b,0xc1,0xd6,0x9e,0x5f,0x88,0xfc,0x7d,0x6b, + 0x5f,0x7d,0xc9,0xed,0x41,0x3f,0x55,0x99,0xe7,0x74,0x1d,0x4e,0x30,0xae,0xc0,0x59,0xe9,0x6b,0xe9,0x75, + 0x9e,0x9d,0x32,0x15,0x48,0xc5,0x84,0x36,0x39,0x88,0x4e,0x10,0x0e,0x4b,0x64,0xca,0x5a,0xcf,0xf6,0xba, + 0x7a,0xfd,0x50,0x8d,0xb1,0x4c,0x5f,0x67,0xdb,0x89,0xeb,0xba,0xa4,0x7f,0x11,0x5c,0xc7,0x4a,0x82,0x45, + 0x5d,0x24,0xc4,0xcd,0xee,0x0d,0xf8,0xbf,0x4a,0xa4,0x5f,0x2b,0xa1,0xc4,0xde,0x7b,0xf5,0xa2,0x6b,0x75, + 0xbf,0x51,0x1f,0xe6,0x8a,0x43,0x40,0xd2,0x4a,0x28,0x0d,0xc9,0x9a,0xdd,0x4e,0x59,0x17,0xba,0x89,0x81, + 0xb4,0x2e,0x0e,0x37,0x8f,0x22,0x6b,0xaa,0xd5,0x89,0x37,0x89,0xff,0x36,0xb4,0x37,0x8d,0xe7,0xc4,0xc0, + 0xb6,0x9a,0xae,0x4b,0xa6,0x0c,0x57,0xcb,0xe5,0x6c,0x89,0x13,0xb6,0xac,0x34,0x73,0x61,0x61,0x00,0x97, + 0x31,0xa2,0x00,0xe9,0x04,0x22,0x80,0x2d,0x5e,0x0f,0xfe,0x6d,0xb1,0xd4,0xfc,0x5b,0xf3,0xd1,0xec,0x03, + 0xc6,0xf0,0xc0,0x15,0xaf,0x26,0x76,0xf7,0x16,0x8f,0xf6,0xb9,0x4f,0x88,0x4a,0x01,0x0f,0x81,0x8b,0x74, + 0x49,0xf7,0x33,0x11,0x9a,0xf1,0x94,0xd8,0x21,0xc9,0x89,0xa7,0x60,0x75,0x64,0xcc,0x0b,0x75,0x65,0x4a, + 0xd1,0xab,0x0b,0x30,0x26,0xe6,0x9b,0x18,0x0e,0xe9,0xda,0x62,0x29,0x74,0x66,0xc5,0x35,0x70,0x8a,0xcd, + 0x1b,0xd0,0xf6,0xeb,0x07,0x08,0xcc,0x4e,0x7f,0xb3,0xe3,0x9c,0x60,0x8f,0x6f,0x76,0x2c,0xa6,0x3f,0x37, + 0x14,0x0d,0x38,0x6c,0x25,0x27,0xe7,0x9c,0x3c,0x86,0x96,0xc6,0x65,0x6c,0x12,0x6c,0x3a,0x42,0x86,0x24, + 0xde,0x63,0x5b,0xe1,0xd9,0x95,0x9b,0xcb,0x72,0x60,0x1f,0x27,0x34,0xa3,0x82,0xc9,0x99,0x78,0x8b,0x8c, + 0xe0,0xe0,0x5e,0xdd,0x75,0xf8,0xd3,0xd1,0x8e,0x30,0x95,0x96,0xbb,0x1e,0x1c,0xfc,0xd3,0x9c,0x69,0x17, + 0x34,0xfb,0x1c,0xe8,0xde,0x2d,0x07,0xe6,0x3c,0x99,0xc0,0xbd,0x79,0xf9,0x63,0xe3,0x28,0xc2,0x6c,0x7d, + 0xd0,0xa4,0x28,0x39,0x51,0xe1,0x3c,0x5e,0x15,0xf6,0xc0,0x07,0xeb,0x22,0xc4,0xe0,0xb5,0x0e,0xb7,0x8c, + 0x79,0x6b,0x7f,0xd8,0x30,0x72,0x61,0x53,0xfe,0xbd,0x61,0xf6,0x70,0xff,0xc1,0x03,0xfa,0xd3,0x0f,0xf7, + 0x3f,0xf7,0x94,0x7f,0xe5,0x4c,0x1c,0xec,0x64,0xe1,0xce,0x3d,0x64,0x3d,0x0c,0xef,0x99,0x12,0x89,0x29, + 0x51,0x0e,0xaa,0xa5,0x0e,0x73,0xea,0xb3,0xb6,0xd6,0x61,0x42,0x29,0x16,0x53,0xe2,0x7a,0x83,0xf2,0x2c, + 0x4e,0x6d,0x3f,0x79,0x92,0x5f,0xd1,0xe4,0x1b,0x8b,0x08,0xed,0xbd,0x31,0xdb,0x26,0x4d,0x37,0x16,0xaa, + 0x13,0xa0,0x9b,0xbb,0xc2,0x8a,0x75,0xe6,0x16,0x65,0xb6,0xe8,0xdc,0x18,0x85,0xd6,0x68,0x85,0xd7,0x9e, + 0xf5,0x5f,0x75,0x69,0x15,0x67,0xd9,0xd5,0x4b,0x1b,0x27,0x77,0x06,0x6d,0x03,0xb0,0xa5,0x35,0x60,0x0b, + 0xaf,0x15,0xd2,0x27,0xcc,0x2e,0x5c,0x5e,0xb9,0xf6,0xc5,0x37,0x6f,0xda,0x86,0xca,0xed,0xed,0x09,0x5d, + 0x9c,0x39,0xbe,0x89,0x77,0x70,0x3b,0x4a,0x20,0x64,0x6f,0x1b,0x98,0x8b,0xb8,0xd4,0x75,0xac,0xf9,0x36, + 0x46,0x22,0xf8,0x61,0xc3,0x51,0x58,0xfb,0x9f,0xc7,0xf7,0x71,0x83,0x26,0xd3,0xb8,0x7b,0x9e,0xea,0x86, + 0xee,0x68,0x92,0x67,0xd3,0xca,0x54,0x13,0x72,0x6b,0x33,0xea,0x2e,0xa5,0x4c,0x01,0xbb,0x47,0x66,0xae, + 0x75,0x42,0x28,0xac,0x26,0xd1,0x08,0xbf,0xa0,0x59,0xf1,0x79,0x86,0x78,0x75,0xca,0x90,0xd4,0x71,0x86, + 0x08,0xc9,0x40,0x38,0x8a,0xe8,0xb7,0x22,0x1e,0x39,0xdf,0x1d,0x1c,0xbc,0xee,0xe9,0x9f,0x3d,0x04,0x38, + 0xed,0x39,0xfd,0xaa,0xc0,0x40,0xdd,0x46,0x48,0x61,0x59,0xc0,0x08,0x6a,0xd9,0x3a,0xd7,0x09,0x4c,0x08, + 0x17,0x19,0x69,0x13,0x1a,0x10,0x9f,0xc1,0x2d,0xbd,0xbe,0x73,0x94,0x1e,0xa5,0x4e,0x3f,0xf7,0x39,0xbc, + 0x87,0xcd,0xce,0xdf,0x68,0x80,0x14,0xbd,0x4f,0x32,0xf6,0x59,0xe8,0x3a,0xbb,0xd1,0x22,0xd9,0x55,0xb7, + 0xad,0xd3,0x04,0xe1,0xae,0xb0,0xa6,0xa5,0x0a,0xbd,0x40,0x43,0xd0,0x96,0x3c,0x92,0x44,0xf0,0x3b,0x50, + 0xc1,0x66,0x06,0xf5,0x05,0x1c,0x80,0x80,0x84,0x23,0x48,0x06,0x48,0xfb,0x80,0x3b,0x9e,0x1a,0xb6,0xc5, + 0x64,0x7f,0xd2,0xc8,0xab,0xfb,0xf0,0x53,0x07,0x5f,0xd5,0xfc,0x33,0xe3,0xb7,0x34,0xa9,0xf5,0x14,0x14, + 0xb3,0xff,0x49,0xc3,0x57,0x6a,0x50,0x9f,0x38,0x74,0xa9,0xf5,0x67,0x86,0xad,0xb4,0x46,0xf5,0x90,0x6b, + 0xfc,0xf9,0x27,0x0d,0x5c,0x53,0x25,0xbb,0x6c,0x56,0xd1,0x31,0x7e,0xb8,0x8b,0xeb,0x9e,0x82,0x46,0x5e, + 0x86,0x3e,0x92,0xe4,0x81,0xfa,0xb9,0x5a,0xb5,0x69,0x22,0x55,0xa2,0x9e,0xba,0x5a,0xed,0xd5,0x88,0xa3, + 0xb6,0x3f,0x3c,0x53,0x4d,0x0a,0x79,0x76,0x6c,0xf9,0x61,0xfe,0xb0,0x91,0x6d,0x02,0xcc,0xeb,0x58,0x9f, + 0x49,0xd8,0x28,0x71,0x98,0x8f,0x09,0xdb,0x9a,0xf2,0x12,0x89,0xa1,0xd2,0x36,0x0d,0x92,0x41,0xf5,0xc3, + 0x1a,0x1d,0x42,0x38,0x53,0x9e,0xf5,0x0b,0x99,0x7a,0xf6,0x49,0x6d,0xe2,0xe6,0x76,0xac,0x57,0x78,0xb4, + 0x37,0xda,0x43,0x8a,0x9a,0xb6,0x7d,0x69,0xb6,0x0a,0x9a,0x62,0x44,0xec,0x5c,0xc8,0xa3,0xbc,0xbb,0xbf, + 0x9d,0xd0,0x54,0x3e,0x14,0xaf,0x66,0xbf,0xc4,0xf1,0xb9,0xf7,0x88,0xc6,0xa6,0x5e,0xe6,0xdd,0x7b,0xad, + 0xac,0x2b,0xf3,0x3c,0xef,0x3e,0x68,0xd7,0xd3,0x4f,0xf4,0xee,0x97,0xad,0xbc,0x99,0xbc,0xd2,0xbb,0xfb, + 0x5f,0xb4,0xb2,0x0a,0xfd,0x56,0xef,0xde,0x6f,0x77,0x58,0xc8,0x83,0xbd,0xfb,0x45,0xab,0x3b,0xc4,0xc7, + 0xa8,0x16,0x1c,0xf3,0x0a,0x61,0xba,0xfc,0xf1,0x00,0x6f,0x43,0xb8,0x01,0xfb,0x86,0x5c,0xe9,0xcf,0x01, + 0xbe,0x50,0xf9,0x9f,0x7a,0x74,0xcd,0x5c,0xa4,0xfa,0x9f,0x39,0xc3,0xf5,0xd1,0x57,0xe8,0x87,0xe9,0xda, + 0x4f,0xc3,0x3e,0xa8,0xb2,0xab,0x94,0xf8,0xba,0xcf,0x70,0xd7,0x81,0xf2,0x6c,0xab,0xd5,0x2d,0xc4,0x62, + 0x01,0xff,0xc5,0xa1,0x44,0xd8,0xad,0xdd,0xde,0x30,0xd2,0x67,0x4b,0x1d,0xa9,0x48,0x1f,0xa9,0x42,0x4d, + 0x18,0xde,0x28,0xd8,0xa3,0x7e,0x3e,0x22,0x62,0x22,0x28,0xb6,0xe8,0x8b,0xa3,0x19,0x22,0x76,0x7c,0x56, + 0x0b,0x95,0x52,0x20,0x10,0x7c,0x3f,0x2c,0xd6,0xb8,0x33,0x69,0xbc,0x61,0x46,0x8c,0x73,0x8d,0xa8,0x97, + 0x58,0xc3,0xb3,0x79,0x86,0xc8,0x2d,0xbb,0x3a,0x88,0x8f,0x67,0x15,0x63,0xa0,0x59,0xb7,0xc4,0xb9,0xdd, + 0x8b,0x15,0x2b,0x3a,0x98,0xa3,0x20,0xc9,0x27,0x66,0x29,0x8b,0xb7,0x20,0x9e,0xab,0x7d,0xf5,0xf8,0x15, + 0x2f,0x66,0x5f,0x2c,0x03,0x9d,0x5a,0x63,0xce,0x6a,0x25,0xac,0x0c,0xc3,0xb2,0xd5,0x0a,0xa8,0x44,0x61, + 0xe2,0xea,0x39,0x94,0x52,0x71,0x74,0xb5,0x2c,0x9d,0x2a,0x2c,0x5e,0x2d,0x0b,0x29,0xe0,0xf8,0x6a,0x89, + 0xc9,0xc2,0x66,0xfe,0xea,0xbd,0x98,0x74,0xc3,0x0f,0xd6,0xf2,0x55,0xe2,0xba,0x09,0x3e,0x08,0x38,0xf7, + 0x91,0x40,0xdd,0xd8,0x16,0x82,0xe8,0x16,0x25,0x5d,0x6d,0x04,0xd1,0xcb,0x7a,0x27,0xbb,0x2f,0x5c,0xc3, + 0x82,0x99,0x5d,0x2c,0x6f,0xda,0x45,0xad,0x88,0x5c,0xaa,0x5b,0xb5,0xd9,0x77,0xca,0x64,0x7c,0x17,0xf9, + 0xe5,0xd4,0x34,0x21,0x71,0x0e,0xf5,0x7c,0xcb,0xce,0xf9,0x96,0xb5,0xf9,0x9a,0x9b,0xb8,0x8b,0x6b,0xa8, + 0xcd,0xb5,0x93,0xbb,0xdb,0x08,0xbb,0x8a,0xb1,0x20,0x76,0xef,0x34,0xa6,0x23,0x69,0x12,0x0c,0xdd,0xae, + 0xb9,0x75,0xbb,0x4b,0x15,0x9b,0xa7,0x5e,0xbb,0xdf,0xf7,0xeb,0x09,0x2a,0x54,0xeb,0x7e,0x60,0x92,0xcd, + 0x70,0x42,0x67,0xd7,0xb1,0xc2,0xf0,0xf4,0xee,0x75,0x96,0xd9,0xa9,0x95,0xb9,0xdf,0x59,0xe6,0xe8,0xa8, + 0x56,0xe8,0x41,0x67,0xa1,0x95,0xe3,0x37,0x67,0xba,0x5e,0xfb,0xf7,0x3e,0xdf,0xe3,0xe5,0x6a,0xb3,0x5c, + 0xf6,0x6a,0x31,0x7b,0x60,0x16,0x41,0x79,0x39,0xa9,0x96,0x88,0x5a,0x20,0x04,0xa9,0x39,0x66,0x3c,0xee, + 0x0a,0xa1,0xde,0xe5,0x40,0xbd,0x12,0x47,0xe9,0x63,0xaa,0xef,0x72,0xed,0xa5,0xd3,0x56,0xc5,0x74,0x4c, + 0xcc,0xdb,0x0d,0x75,0x85,0x25,0x50,0xab,0xac,0x02,0xd2,0xde,0xd3,0x81,0x67,0xf5,0x91,0x23,0x48,0x1b, + 0xaa,0x6d,0x50,0x0b,0xc4,0x7f,0x4c,0xd4,0x5b,0xf1,0x22,0xa3,0x57,0xb8,0x5e,0x19,0x63,0x90,0x30,0xb7, + 0x81,0x96,0x94,0x76,0x8d,0x73,0xdd,0xbd,0x04,0x07,0xf1,0xfb,0xf2,0xcf,0x2d,0x43,0x8f,0x8f,0x4b,0xbb, + 0x18,0xf4,0x66,0x8c,0x04,0xd6,0xf1,0x3e,0x71,0x7d,0x3e,0xa2,0x6d,0x28,0xe9,0x52,0xbb,0x6a,0xbd,0x3e, + 0xa2,0x82,0xe8,0xf0,0xea,0x2a,0xf7,0x3e,0xa6,0x4a,0x4d,0xb5,0x57,0xd7,0xd4,0x2b,0xdf,0xdb,0x34,0x97, + 0x64,0xa1,0xe1,0xfb,0x23,0xba,0xa8,0xe9,0x07,0xeb,0x2e,0x3e,0xff,0x84,0x9a,0x89,0xe8,0x0b,0xeb,0xaa, + 0xcd,0xed,0xbf,0x6d,0x7f,0x2a,0xd0,0x40,0x3c,0xb8,0xd6,0x2b,0xe5,0xcd,0xd7,0xe8,0xc8,0x92,0x15,0xc4, + 0x2d,0x81,0x14,0x4b,0x01,0x82,0xcd,0x5c,0xdd,0xae,0x92,0x17,0x7f,0x22,0x99,0x55,0xcd,0xe5,0x53,0x29, + 0xac,0xe6,0x00,0xbb,0x30,0xf4,0xed,0x33,0x02,0xb5,0xd1,0x78,0x9d,0xed,0xbe,0xa6,0xf8,0x10,0xa9,0x95, + 0xb2,0x51,0xff,0x1e,0x0b,0xef,0x6c,0x39,0x3a,0x91,0x55,0x42,0x71,0x41,0x92,0x0f,0x4f,0x43,0xd0,0x5b, + 0x1d,0xb2,0xbb,0x0f,0x38,0x0f,0x73,0x66,0x09,0x1c,0x2b,0x18,0x01,0x23,0x2d,0xe6,0xd7,0x12,0x9a,0xf0, + 0xc9,0x87,0xe7,0x9c,0x2d,0xe3,0xf8,0x06,0xc5,0x38,0x02,0x64,0x5c,0xc0,0xc7,0x90,0x92,0x5f,0xb0,0x98, + 0x9b,0x26,0x14,0xdc,0xff,0x22,0x7e,0xe0,0x67,0xe9,0xcf,0x75,0x19,0x7e,0xcd,0x1d,0x7d,0x73,0x60,0x4c, + 0x7e,0xe5,0x70,0xe0,0xe0,0xee,0xef,0xed,0x7d,0x26,0x98,0x39,0x9e,0xee,0x22,0xfe,0x73,0x19,0x21,0xbc, + 0xe6,0xb0,0x75,0xed,0x56,0xef,0xd1,0x70,0x8c,0xfc,0x9f,0x7f,0xe7,0xd6,0x37,0xa3,0xfb,0xda,0x6d,0x4c, + 0xcb,0x12,0x89,0xe2,0xfb,0xd6,0x95,0xa5,0x55,0xa5,0x7a,0x04,0xc3,0xd8,0xfd,0xb5,0xc8,0x99,0x95,0x78, + 0xf5,0xb6,0xdb,0x1a,0x21,0x70,0x3b,0xa4,0xb2,0xe0,0x08,0x25,0x66,0x50,0x43,0x30,0x2b,0x52,0x80,0xa6, + 0xb4,0xb6,0x5b,0x28,0xa7,0x21,0x54,0x09,0x29,0xe9,0x9a,0xdc,0xdb,0xf3,0xbc,0x75,0x4d,0x0f,0xa0,0x7b, + 0x78,0x1c,0x79,0xc5,0xea,0x05,0x50,0xd9,0xd1,0x2d,0x9e,0x37,0xba,0x65,0xca,0x7b,0x16,0x09,0xde,0x8e, + 0xe1,0xc8,0xe1,0x1b,0x79,0x95,0x34,0x9b,0x90,0x12,0x9b,0x50,0x8f,0x93,0xd8,0xa0,0xf4,0xd7,0xde,0x50, + 0x73,0x01,0xa5,0x78,0xa5,0xd7,0xdc,0x3c,0x1a,0xdf,0xd8,0x66,0xde,0x0f,0x55,0xea,0x61,0x3a,0x96,0xc7, + 0xbb,0xe1,0x0d,0x3c,0x44,0xbe,0x5b,0x6f,0xc3,0x5b,0x8b,0x34,0x40,0x45,0x6b,0xdb,0xd8,0x8d,0x92,0x72, + 0x37,0xbb,0xc2,0x98,0x37,0x88,0xdc,0xdb,0xd4,0xa8,0xcd,0x91,0xf9,0xd7,0x0d,0x31,0xc8,0x7e,0x7c,0x5f, + 0x1e,0x43,0x8b,0x20,0xf9,0x2b,0x04,0xb7,0xb5,0xf5,0x37,0x11,0xdb,0x6a,0xd3,0x21,0xa1,0x6e,0x2a,0x81, + 0x6c,0x86,0x67,0x29,0x20,0x00,0xda,0x7c,0x58,0xab,0x08,0x70,0x46,0xf5,0x50,0x6d,0x2a,0x82,0xdd,0x5d, + 0x3c,0xde,0x28,0x6d,0x26,0x5a,0x83,0x82,0x35,0x9a,0x90,0xc6,0x2b,0x72,0x1a,0x67,0x10,0x9e,0xee,0xbe, + 0x2b,0x98,0xcf,0x12,0xaf,0xe4,0xc1,0xb5,0xd6,0x08,0xad,0xba,0xf4,0xcf,0x63,0xb0,0x26,0x42,0xc5,0x0f, + 0xaa,0x07,0xa1,0x75,0x6b,0xa5,0x36,0x73,0xb6,0x38,0xc0,0x74,0x2d,0x16,0x08,0xea,0x50,0x4b,0x30,0x81, + 0x61,0x8d,0xe4,0xbd,0x96,0x0d,0x97,0x75,0x34,0xd0,0x8b,0xb8,0xcc,0x3f,0x98,0x01,0x0d,0xcd,0x60,0xe6, + 0x51,0x09,0x3f,0x76,0x51,0xe9,0x57,0x49,0x84,0x54,0x52,0xfc,0xfb,0xd1,0xd2,0x8c,0xfa,0x0e,0x6c,0xd8, + 0xb7,0xf6,0x8a,0x5b,0xfc,0xd2,0x47,0x48,0xfb,0xd8,0xc5,0xbc,0xb9,0x8e,0x2c,0xf6,0x77,0x58,0x9d,0x5e, + 0x23,0xb7,0x6b,0x48,0x66,0x34,0xd1,0xd7,0x14,0xde,0x35,0x8b,0xd5,0xb3,0xeb,0x4f,0xa7,0xfa,0x6c,0x35, + 0x6b,0xd4,0x25,0x74,0xa9,0x16,0x27,0xc0,0x27,0x59,0x77,0x51,0x3a,0x7d,0xc3,0xf2,0x06,0x51,0x5d,0x6e, + 0x89,0xea,0x6a,0x72,0xba,0xdc,0x96,0xa6,0x19,0x21,0x5d,0x5e,0x4d,0x0e,0x53,0xca,0x1b,0x22,0xb7,0xbc, + 0xf6,0x8c,0x45,0xd9,0x46,0x8c,0xe7,0x57,0xe2,0xac,0xc0,0xcd,0x07,0x22,0x8f,0x1b,0xed,0x07,0x7b,0xde, + 0x0a,0xe1,0x76,0x45,0x08,0x37,0xba,0xa7,0x7e,0x1b,0xc9,0xdb,0xe8,0x81,0x2e,0xa1,0xc4,0x6d,0xa3,0x2f, + 0x55,0x82,0xc8,0xd8,0x46,0xfb,0x5f,0xa8,0xdf,0x5a,0xb0,0x36,0xba,0xaf,0x1b,0x11,0x69,0xda,0xe8,0x0b, + 0x34,0x41,0x47,0xb7,0x85,0x63,0xea,0xa2,0x5b,0xbf,0xfc,0xab,0x9c,0x7b,0x43,0xc4,0x76,0x33,0xef,0x4e, + 0x17,0x23,0x1d,0x5d,0xfb,0x05,0xbc,0xf9,0xde,0xb3,0x61,0xeb,0x5b,0x3b,0x58,0x17,0xaf,0x56,0xf2,0x54, + 0xc2,0x31,0x95,0x10,0xf5,0xf3,0x07,0x0d,0x61,0xa9,0x11,0x89,0x6e,0x55,0x22,0xd0,0x2d,0x5b,0xe4,0xb9, + 0x65,0x89,0x38,0xb7,0x8c,0x48,0x73,0xcb,0x92,0x60,0x6e,0x19,0x81,0xa5,0xc4,0xab,0x92,0x48,0xe3,0x9d, + 0x53,0x8a,0x6f,0x9e,0x93,0x0a,0x58,0x16,0x23,0x60,0x59,0xa7,0xc6,0xdb,0x5f,0x13,0x50,0x35,0x45,0x95, + 0x7e,0x4b,0xfc,0xf8,0x57,0xb7,0xbe,0x25,0x8a,0xbc,0x5d,0x70,0x33,0xad,0xcb,0x2f,0x37,0x6f,0xbf,0x8c, + 0xf0,0x46,0x00,0xb0,0xb6,0x7c,0x91,0xa4,0xc1,0x3d,0x7f,0x6a,0xcc,0x8c,0xac,0x9d,0xd9,0xd0,0x5f,0x6b, + 0x6f,0x9a,0x1d,0xd6,0x76,0x07,0x4e,0xa5,0x13,0x4a,0x89,0x18,0xdc,0x3b,0x1f,0x63,0x1d,0x67,0x58,0x6e, + 0x6f,0xc7,0x12,0xeb,0x26,0xed,0x87,0x4e,0xdf,0xd1,0xd4,0xb5,0x45,0x5c,0xc4,0xbb,0x5f,0xec,0x79,0x7e, + 0x22,0x49,0xd1,0x49,0x41,0xe3,0xf8,0x1f,0x5f,0xec,0x69,0x09,0x2d,0x02,0xb7,0xf6,0x9d,0xc0,0xf1,0x93, + 0x87,0xfb,0xba,0x99,0x3d,0xc7,0xf3,0x53,0x44,0x81,0x16,0x49,0x90,0x65,0xa8,0xdc,0x5a,0x3c,0x4b,0x4f, + 0x21,0xbc,0x16,0xed,0x46,0x5c,0xe2,0x4a,0xeb,0x41,0xf4,0x19,0xe5,0x3d,0xd1,0xa2,0x5d,0x8c,0x46,0xc4, + 0x5a,0x84,0x27,0x1f,0xdb,0x81,0xbc,0xe2,0x8a,0xf0,0xee,0x86,0x2a,0x8d,0x26,0x5d,0x7e,0x5e,0x2d,0x60, + 0x20,0x6d,0xa5,0xf2,0x28,0x37,0xf8,0x2b,0xb5,0xfa,0x1c,0x54,0x73,0x7a,0xb8,0xbf,0x66,0x55,0xcc,0x1b, + 0x1a,0xb9,0xa1,0x76,0xbf,0xef,0xdf,0x0b,0xc3,0x1b,0x0a,0xa8,0xa8,0x4e,0xcd,0xd9,0x21,0xd2,0xad,0xcf, + 0x31,0xef,0x88,0x04,0xd1,0x4a,0x26,0x4a,0xc1,0xac,0x0d,0xcb,0x36,0x0b,0x80,0x79,0xc3,0x38,0x04,0x48, + 0xa3,0xa1,0x93,0xf2,0xe9,0xf5,0x8b,0x4f,0xeb,0x57,0xc5,0x07,0xb4,0xfa,0x37,0xfa,0x58,0xf6,0x71,0xe8, + 0x52,0x3d,0x09,0x9d,0xbf,0x39,0xfd,0x18,0x6a,0x69,0xeb,0xff,0x03,0x7e,0x47,0x50,0x18,0xe8,0x12,0x02, + 0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 86d3619..6804604 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 29; +const uint8_t VersionMetadata = 32; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+29"; -const char VersionCommitDate[] = "2018-01-23"; +const char VersionFullSemVer[] = "2.0.0-beta.1+32"; +const char VersionCommitDate[] = "2018-01-31"; #endif diff --git a/src/main.triggers.h b/src/main.triggers.h index 5de4b40..f8ed8b8 100644 --- a/src/main.triggers.h +++ b/src/main.triggers.h @@ -312,26 +312,9 @@ void checkTriggers() _dln("Triggers :: start motion trigger"); if (activeMotionDirection == Nondirectional || motionTriggerSettings->transitionTime() == 0) - { stairs->setAll(activeMotionBrightness, motionTriggerSettings->transitionTime(), 0); - } else - { - // Start sweep - uint8_t stepsCount = stepsSettings->count(); - uint16_t offsetIncrement = stepsCount > 0 ? (motionTriggerSettings->transitionTime() / stepsCount) * 1.5 : 0; - uint16_t offset = activeMotionDirection == TopDown ? 0 : (stepsCount - 1) * offsetIncrement; - - for (uint8_t step = 0; step < stepsCount; step++) - { - stairs->set(step, activeMotionBrightness, motionTriggerSettings->transitionTime(), offset); - - if (activeMotionDirection == TopDown) - offset += offsetIncrement; - else - offset -= offsetIncrement; - } - } + stairs->sweep(activeMotionBrightness, motionTriggerSettings->transitionTime(), activeMotionDirection == TopDown); } else { diff --git a/src/server/api.cpp b/src/server/api.cpp index 8b60e62..0999241 100644 --- a/src/server/api.cpp +++ b/src/server/api.cpp @@ -16,6 +16,56 @@ #include "../settings/triggers/time.h" +void handleSet(AsyncWebServerRequest *request) +{ + _dln("API :: set"); + + AsyncWebParameter* param; + uint8_t value = 0; + + param = request->getParam("value"); + if (param != nullptr) + { + value = param->value().toInt(); + } + else + { + param = request->getParam("percent"); + if (param != nullptr) + { + value = map(param->value().toInt(), 0, 100, 0, 255); + } + else + { + request->send(400); + return; + } + } + + uint16_t time = 0; + uint8_t from = 0; + + param = request->getParam("time"); + if (param != nullptr) + time = param->value().toInt(); + + param = request->getParam("from"); + if (param != nullptr) + { + if (param->value() == "top") + from = 1; + else if (param->value() == "bottom") + from = 2; + } + + + if (from == 0 || time == 0) + stairs->setAll(value, time, 0); + else + stairs->sweep(value, time, from == 1); +} + + void handleGetStepValues(AsyncWebServerRequest *request) { _dln("API :: get steps"); @@ -125,6 +175,8 @@ void handlePostMotionTriggers(AsyncWebServerRequest *request, uint8_t *data, siz void registerAPIRoutes(AsyncWebServer* server) { + server->on("/api/set", HTTP_GET, handleSet); + server->on("/api/steps/values", HTTP_GET, handleGetStepValues); server->on("/api/steps/values", HTTP_POST, devNullRequest, devNullFileUpload, handlePostStepValues); diff --git a/src/stairs.cpp b/src/stairs.cpp index 8ff5b3f..00f7343 100644 --- a/src/stairs.cpp +++ b/src/stairs.cpp @@ -181,6 +181,24 @@ void Stairs::setAll(uint8_t brightness, uint16_t transitionTime, uint16_t startT } +void Stairs::sweep(uint8_t brightness, uint16_t transitionTime, bool topDown) +{ + uint8_t stepsCount = stepsSettings->count(); + uint16_t offsetIncrement = stepsCount > 0 ? (transitionTime / stepsCount) * 1.5 : 0; + uint16_t offset = topDown ? 0 : (stepsCount - 1) * offsetIncrement; + + for (uint8_t step = 0; step < stepsCount; step++) + { + set(step, brightness, transitionTime, offset); + + if (topDown) + offset += offsetIncrement; + else + offset -= offsetIncrement; + } +} + + uint16_t Stairs::getPWMValue(uint8_t step, uint8_t brightness) { //_d("Stairs :: Getting PWM value for step "); _d(step); _d(", brightness "); _dln(brightness); diff --git a/src/stairs.h b/src/stairs.h index decd5ca..5a40995 100644 --- a/src/stairs.h +++ b/src/stairs.h @@ -39,6 +39,7 @@ class Stairs uint8_t get(uint8_t step, bool target = true); void set(uint8_t step, uint8_t brightness, uint16_t transitionTime = 0, uint16_t startTime = 0); void setAll(uint8_t brightness, uint16_t transitionTime = 0, uint16_t startTime = 0); + void sweep(uint8_t brightness, uint16_t transitionTime, bool topDown); }; #endif \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 69ef4ed..24106f5 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},o.forEach(["delete","get","head"],function(e){c.headers[e]={}}),o.forEach(["post","put","patch"],function(e){c.headers[e]=o.merge(s)}),e.exports=c},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){return r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]}),(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===hn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return gn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(G((c=i(c,(a||"")+"_"+s))[0])&&G(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?G(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):G(c)&&G(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Fr&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=I(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Ee(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function De(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==hn.call(n))&&e.test(t));var n}function je(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=Pe(a.componentOptions);s&&!t(s)&&Ie(n,o,r,i)}}}function Ie(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Le(e,n){return{staticClass:Fe(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Fe(e,t){return e?t?e+" "+t:e:t||""}function Ne(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(b=e.charAt(y));y--);b&&Ti.test(b)||(p=!0)}}else void 0===o?(g=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==g&&t(),a)for(i=0;i-1?{exp:e.slice(0,Kr),key:'"'+e.slice(Kr+1)+'"'}:{exp:e,key:null};for(zr=e,Kr=Jr=Gr=0;!st();)ct(qr=at())?lt(qr):91===qr&&function(e){var t=1;for(Jr=Kr;!st();)if(e=at(),ct(e))lt(e);else if(91===e&&t++,93===e&&t--,0===t){Gr=Kr;break}}(qr);return{exp:e.slice(0,Jr),key:e.slice(Jr+1,Gr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function at(){return zr.charCodeAt(++Kr)}function st(){return Kr>=Hr}function ct(e){return 34===e||39===e}function lt(e){for(var t=e;!st()&&(e=at())!==t;);}function ut(e,t,n,r,i){var o,a,s,c,l;t=(l=t)._withTask||(l._withTask=function(){dr=!0;var e=l.apply(null,arguments);return dr=!1,e}),n&&(o=t,a=e,s=r,c=Xr,t=function e(){null!==o.apply(null,arguments)&&ft(a,e,s,c)}),Xr.addEventListener(e,t,Wn?{capture:r,passive:i}:r)}function ft(e,t,n,r){(r||Xr).removeEventListener(e,t._withTask||t,n)}function dt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};Xr=r.elm,function(e){if(t(e[ki])){var n=Ln?"change":"input";e[n]=[].concat(e[ki],e[n]||[]),delete e[ki]}t(e[Ci])&&(e.change=[].concat(e[Ci],e.change||[]),delete e[Ci])}(i),q(i,o,ut,ft,r.context),Xr=void 0}}function pt(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function ht(e){var t=vt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function vt(e){return Array.isArray(e)?m(e):"string"==typeof e?Si(e):e}function mt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=vt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=ht(i.data))&&v(r,n);(n=ht(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=ht(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ei(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ei(c,s,null==a?"":a)}}function gt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function bt(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Ii(e.name||"v")),v(t,e),t}return"string"==typeof e?Ii(e):void 0}}function _t(e){Vi(function(){Vi(e)})}function wt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),gt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),yt(e,t)}function kt(e,t,n){var r=Ct(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Fi?Ri:Wi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=Fi,u=a,f=o.length):t===Ni?l>0&&(n=Ni,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?Fi:Ni:null)?n===Fi?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Fi&&Ui.test(r[Mi+"Property"])}}function xt(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&St(t)}function Dt(e,t,n){jt(e,t,n),(Ln||Nn)&&setTimeout(function(){jt(e,t,n)},0)}function jt(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Lt(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function It(e,t){return t.every(function(t){return!y(t,e)})}function Lt(e){return"_value"in e?e._value:e.value}function Ft(e){e.target.composing=!0}function Nt(e){e.target.composing&&(e.target.composing=!1,Mt(e.target,"input"))}function Mt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Rt(e){return!e.componentInstance||e.data&&e.data.transition?e:Rt(e.componentInstance._vnode)}function Bt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Bt(Y(t.children)):e}function Wt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[bn(o)]=i[o];return t}function Vt(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ht(e){e.data.newPos=e.elm.getBoundingClientRect()}function zt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',So.innerHTML.indexOf(" ")>0}var pn=Object.freeze({}),hn=Object.prototype.toString,vn=l("slot,component",!0),mn=l("key,ref,slot,slot-scope,is"),gn=Object.prototype.hasOwnProperty,yn=/-(\w)/g,bn=d(function(e){return e.replace(yn,function(e,t){return t?t.toUpperCase():""})}),_n=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),wn=/\B([A-Z])/g,Tn=d(function(e){return e.replace(wn,"-$1").toLowerCase()}),kn=function(e,t,n){return!1},Cn=function(e){return e},xn="data-server-rendered",An=["component","directive","filter"],Sn=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],$n={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:kn,isReservedAttr:kn,isUnknownElement:kn,getTagNamespace:g,parsePlatformTagName:Cn,mustUseProp:kn,_lifecycleHooks:Sn},On=/[^\w.$]/,En="__proto__"in{},Pn="undefined"!=typeof window,Dn="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,jn=Dn&&WXEnvironment.platform.toLowerCase(),In=Pn&&window.navigator.userAgent.toLowerCase(),Ln=In&&/msie|trident/.test(In),Fn=In&&In.indexOf("msie 9.0")>0,Nn=In&&In.indexOf("edge/")>0,Mn=In&&In.indexOf("android")>0||"android"===jn,Rn=In&&/iphone|ipad|ipod|ios/.test(In)||"ios"===jn,Bn=(In&&/chrome\/\d+/.test(In),{}.watch),Wn=!1;if(Pn)try{var Vn={};Object.defineProperty(Vn,"passive",{get:function(){Wn=!0}}),window.addEventListener("test-passive",null,Vn)}catch(e){}var Un,Hn,zn=function(){return void 0===Un&&(Un=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),Un},qn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Kn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Hn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Jn=g,Gn=0,Xn=function(){this.id=Gn++,this.subs=[]};Xn.prototype.addSub=function(e){this.subs.push(e)},Xn.prototype.removeSub=function(e){u(this.subs,e)},Xn.prototype.depend=function(){Xn.target&&Xn.target.addDep(this)},Xn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;txr&&_r[n].id>e.id;)n--;_r.splice(n+1,0,e)}else _r.push(e);kr||(kr=!0,U(ce))}}(this)},Sr.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){R(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Sr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Sr.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Sr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var $r={enumerable:!0,configurable:!0,get:g,set:g},Or={lazy:!0};Ce(xe.prototype);var Er,Pr,Dr,jr,Ir={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=(a=e,s={_isComponent:!0,parent:br,_parentVnode:a,_parentElm:r||null,_refElm:i||null},c=a.data.inlineTemplate,t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new a.componentOptions.Ctor(s))).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Ir.prepatch(o,o)}var a,s,c},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==pn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||pn,e.$listeners=n||pn,t&&e.$options.props){ir.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Ie(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};Rr=Ee,(Wr={}).get=function(){return $n},Object.defineProperty(Rr,"config",Wr),Rr.util={warn:Jn,extend:v,mergeOptions:I,defineReactive:S},Rr.set=$,Rr.delete=O,Rr.nextTick=U,Rr.options=Object.create(null),An.forEach(function(e){Rr.options[e+"s"]=Object.create(null)}),Rr.options._base=Rr,v(Rr.options.components,Ur),Rr.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},Rr.mixin=function(e){return this.options=I(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=I(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)le(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)ue(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,An.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(Rr),Br=Rr,An.forEach(function(e){Br[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}),Object.defineProperty(Ee.prototype,"$isServer",{get:zn}),Object.defineProperty(Ee.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Ee.version="2.5.13";var Hr,zr,qr,Kr,Jr,Gr,Xr,Zr,Yr=l("style,class"),Qr=l("input,textarea,option,select,progress"),ei=function(e,t,n){return"value"===n&&Qr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ti=l("contenteditable,draggable,spellcheck"),ni=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ri="http://www.w3.org/1999/xlink",ii=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},oi=function(e){return ii(e)?e.slice(6,e.length):""},ai=function(e){return null==e||!1===e},si={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ci=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),li=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),ui=function(e){return ci(e)||li(e)},fi=Object.create(null),di=l("text,number,password,search,email,tel,url"),pi=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(si[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),hi={create:function(e,t){Be(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Be(e,!0),Be(t))},destroy:function(e){Be(e,!0)}},vi=new Yn("",{},[]),mi=["create","activate","update","remove","destroy"],gi={create:Ue,update:Ue,destroy:function(e){Ue(e,vi)}},yi=Object.create(null),bi=[hi,gi],_i={create:qe,update:qe},wi={create:Je,update:Je},Ti=/[\w).+\-_$\]]/,ki="__r",Ci="__c",xi={create:dt,update:dt},Ai={create:pt,update:pt},Si=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),$i=/^--/,Oi=/\s*!important$/,Ei=function(e,t,n){if($i.test(t))e.style.setProperty(t,n);else if(Oi.test(n))e.style.setProperty(t,n.replace(Oi,""),"important");else{var r=Di(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?fi[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:fi[e]=/HTMLUnknownElement/.test(t.toString())},v(Ee.options.directives,qi),v(Ee.options.components,Xi),Ee.prototype.__patch__=Pn?Hi:g,Ee.prototype.$mount=function(e,t){return e=e&&Pn?Re(e):void 0,r=e,i=t,(n=this).$el=r,n.$options.render||(n.$options.render=er),se(n,"beforeMount"),new Sr(n,function(){n._update(n._render(),i)},g,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,se(n,"mounted")),n;var n,r,i},Ee.nextTick(function(){$n.devtools&&qn&&qn.emit("init",Ee)},0);var Zi,Yi=/\{\{((?:.|\n)+?)\}\}/g,Qi=/[-.*+?^${}()|[\]\/\\]/g,eo=d(function(e){var t=e[0].replace(Qi,"\\$&"),n=e[1].replace(Qi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),to={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=rt(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=nt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},no={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=rt(e,"style");n&&(e.staticStyle=JSON.stringify(Si(n)));var r=nt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ro=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),io=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),oo=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ao=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,so="[a-zA-Z_][\\w\\-\\.]*",co="((?:"+so+"\\:)?"+so+")",lo=new RegExp("^<"+co),uo=/^\s*(\/?)>/,fo=new RegExp("^<\\/"+co+"[^>]*>"),po=/^]+>/i,ho=/^/g,"$1").replace(//g,"$1")),Lo(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ho.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(vo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(po);if(y){n(y[0].length);continue}var b=e.match(fo);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(lo);if(t){var r,i,o={tagName:t[1],attrs:[],start:u};for(n(t[0].length);!(r=e.match(uo))&&(i=e.match(ao));)n(i[0].length),o.attrs.push(i);if(r)return o.unarySlash=r[1],n(r[0].length),o.end=u,o}}();if(w){!function(e){var n,i,u,f=e.tagName,d=e.unarySlash;s&&("p"===o&&oo(f)&&r(o),l(f)&&o===f&&r(f));for(var p=c(f)||!!d,h=e.attrs.length,v=new Array(h),m=0;m=0){for(k=e.slice(v);!(fo.test(k)||lo.test(k)||ho.test(k)||vo.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:go,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||Co(e);Ln&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Ge(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:n?Math.min(n,2):0]?o[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t,n,r,i=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(r=i,F.test(r)?(n=(t=i).charCodeAt(0))!==t.charCodeAt(t.length-1)||34!==n&&39!==n?t:t.slice(1,-1):"*"+i)}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.formatter=this.$root.$i18n.formatter,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[A]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===D&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=void 0===(r=o[2])?t:r,!1===a()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r,i=this.parsePath(n);if(r=i,Array.isArray(r)&&0===r.length)return null;for(var o=i.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c,l=this._path.getPathValue(t,i);if(Array.isArray(l))return l;if(r(l)){if(!n(t))return null;if("string"!=typeof(c=t[i]))return null}else{if("string"!=typeof l)return null;c=l}return c.indexOf("@:")>=0&&(c=this._link(e,t,c,o,a,s)),s?this._render(c,a,s):c},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s,c=i.apply(void 0,o),l=c.locale||t,u=this._translate(n,l,this.fallbackLocale,e,r,"string",c.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(s=this._root).t.apply(s,[e].concat(o))}return this._warnDefault(l,e,u,r)},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(s=i[a=n]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){var n;(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.4","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointhint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodehint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcphint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}});var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[]},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(u)&&(f[l]=C(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=C(u.text+c):""!==c&&f.push(C(c)):X(c)&&X(u)?f[l]=C(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function De(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=De(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Ur),key:'"'+e.slice(Ur+1)+'"'}:{exp:e,key:null};for(Vr=e,Ur=zr=Kr=0;!ct();)lt(Hr=st())?ut(Hr):91===Hr&&function(e){var t=1;for(zr=Ur;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Ur;break}}(Hr);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Ur)}function ct(){return Ur>=Wr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Hn?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,o,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?Ci(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function Ct(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===ji?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=ji,u=a,f=o.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?ji:Ii:null)?n===ji?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===ji&&Bi.test(r[Li+"Property"])}}function St(e,t){for(;e.length1}function Dt(e,t){!0!==t.data.show&&$t(t)}function jt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ht(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',Co.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,Cn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),xn=function(e,t,n){return!1},Sn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:xn,isReservedAttr:xn,isUnknownElement:xn,getTagNamespace:g,parsePlatformTagName:Sn,mustUseProp:xn,_lifecycleHooks:On},Pn=/[^\w.$]/,Dn="__proto__"in{},jn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=jn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Hn=!1;if(jn)try{var Un={};Object.defineProperty(Un,"passive",{get:function(){Hn=!0}}),window.addEventListener("test-passive",null,Un)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!jn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=jn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);Kn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);xr||(xr=!0,U(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};xe(Se.prototype);var Dr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Dr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=U,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:qn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Wr,Vr,Hr,Ur,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:Ue,update:Ue,destroy:function(e){Ue(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},Ci=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),xi=/^--/,Si=/\s*!important$/,Ai=function(e,t,n){if(xi.test(t))e.style.setProperty(t,n);else if(Si.test(n))e.style.setProperty(t,n.replace(Si,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Hi),v(Pe.options.components,qi),Pe.prototype.__patch__=jn?Wi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&jn?Be(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(Ci(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),lo=/^]+>/i,uo=/^/g,"$1").replace(//g,"$1")),Do(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(uo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(lo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),l(n)&&o===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(co.test(k)||ao.test(k)||uo.test(k)||fo.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||wo(e);Nn&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Xe(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[S]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===D&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,o,a,s)),s?this._render(l,a,s):l},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(o))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"},calibration:{title:"Calibration wizard",backButton:"Back",stepCount:"Number of steps",nextButton:"Next",applyButton:"Apply"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"},calibration:{title:"Kalibratie wizard",backButton:"Terug",stepCount:"Aantal treden",nextButton:"Volgende",applyButton:"Toepassen"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}});var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[],calibration:null},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i},startCalibration:function(){this.calibration={wizardStep:0,stepCount:this.steps.length,steps:[]}},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){this.calibration.wizardStep++,2==this.calibration.wizardStep&&this.applyCalibration()}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file From 1bea7ea1576f4f33695e88240ea72b9e54c6eb20 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Wed, 31 Jan 2018 21:08:47 +0100 Subject: [PATCH 33/43] Fixed new set API not returning anything --- src/assets/version.h | 4 ++-- src/server/api.cpp | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/assets/version.h b/src/assets/version.h index 6804604..e6b57ed 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 32; +const uint8_t VersionMetadata = 33; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+32"; +const char VersionFullSemVer[] = "2.0.0-beta.1+33"; const char VersionCommitDate[] = "2018-01-31"; #endif diff --git a/src/server/api.cpp b/src/server/api.cpp index 0999241..058fc8b 100644 --- a/src/server/api.cpp +++ b/src/server/api.cpp @@ -63,6 +63,8 @@ void handleSet(AsyncWebServerRequest *request) stairs->setAll(value, time, 0); else stairs->sweep(value, time, from == 1); + + request->send(200); } From ce26beffec4fbe9b53995cc39c30bb500a87f15a Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Sat, 3 Feb 2018 15:44:44 +0100 Subject: [PATCH 34/43] Fixed #16 - Curve is not working well with actual LED strips Finished calibration page - untested! --- devserver.js | 42 +- src/assets/css.h | 188 +- src/assets/html.h | 327 +-- src/assets/js.h | 4616 ++++++++++++++++++++-------------------- src/assets/version.h | 6 +- src/settings/steps.cpp | 31 +- src/settings/steps.h | 18 +- src/stairs.cpp | 42 +- web/app.js | 151 +- web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 16 +- web/lang.js | 22 +- web/site.scss | 63 +- 14 files changed, 2913 insertions(+), 2613 deletions(-) diff --git a/devserver.js b/devserver.js index 97cff89..973b3b1 100644 --- a/devserver.js +++ b/devserver.js @@ -109,8 +109,28 @@ app.post('/api/system', function(req, res) }); +var steps = { + count: 14, + useCurve: true, + ranges: [ + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 }, + { start: 0, end: 4095 } + ] +}; + -var steps = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; app.get('/api/steps', function(req, res) { @@ -118,12 +138,28 @@ app.get('/api/steps', function(req, res) }); app.post('/api/steps', function(req, res) +{ + steps = req.body; + res.sendStatus(200); +}); + + + + +var stepsValues = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; + +app.get('/api/steps/values', function(req, res) +{ + res.send(stepsValues); +}); + +app.post('/api/steps/values', function(req, res) { var body = req.body; if (body && body.hasOwnProperty('values')) { - for (var i = 0; i < Math.min(steps.length, body.values.length); i++) - steps[i] = parseInt(body.values[i], 10) || 0; + for (var i = 0; i < Math.min(stepsValues.length, body.values.length); i++) + stepsValues[i] = parseInt(body.values[i], 10) || 0; res.sendStatus(200); } diff --git a/src/assets/css.h b/src/assets/css.h index dc0b926..ba66887 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -4,97 +4,101 @@ #include const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xad,0x59,0xdb,0x6e,0xa3,0x38,0x18,0x7e,0x15,0xa4, - 0x6a,0xa5,0xe9,0x0a,0x10,0x21,0x25,0x4d,0x41,0xb3,0xda,0xd5,0xbe,0xc3,0xde,0x8c,0x72,0x61,0xc0,0x04, - 0xab,0x04,0x23,0xe3,0x34,0xcd,0x20,0xde,0x7d,0x7f,0xdb,0x98,0xd8,0xe0,0x74,0x3a,0xa3,0x11,0x6a,0x12, - 0x7c,0xf8,0xcf,0x87,0xcf,0x6e,0xcd,0x4f,0xcd,0x90,0xd3,0xf7,0xa0,0x27,0xdf,0x49,0x7b,0x4c,0x73,0xca, - 0x4a,0xcc,0x02,0x18,0xc9,0x2a,0xda,0x72,0x31,0x8c,0xd3,0x5d,0x1c,0x26,0x7f,0x8c,0x7f,0xfa,0x29,0xaa, - 0x38,0x66,0x7e,0x9a,0xe3,0x8a,0x32,0x6c,0x6e,0x23,0x6d,0x8d,0x19,0xe1,0x63,0x4e,0xcb,0xeb,0x90,0xa3, - 0xe2,0xf5,0xc8,0xe8,0xb9,0x2d,0x83,0x82,0x36,0x94,0xa5,0x0f,0x51,0x14,0x65,0xd3,0xcf,0xaa,0xaa,0x14, - 0xe5,0x0a,0x9d,0x48,0x73,0x4d,0xff,0xc3,0xac,0x44,0x2d,0xf2,0xff,0x61,0x04,0x35,0x7e,0x8f,0xda,0x3e, - 0xe8,0x81,0x54,0x65,0xb0,0xdf,0x84,0x5b,0x7c,0x52,0xef,0x17,0x4c,0x8e,0x35,0x4f,0xb7,0x40,0xaf,0xc1, - 0x1c,0x84,0x09,0xfa,0x0e,0x15,0x42,0x82,0x30,0xda,0xc0,0xa2,0x86,0xb4,0x38,0xa8,0xd5,0x22,0xd8,0x96, - 0x75,0xa8,0x2c,0x61,0x16,0xf4,0xe1,0x9c,0x9e,0xd2,0x2d,0xc3,0xa7,0xf1,0xef,0x13,0x2e,0x09,0xf2,0xfa, - 0x82,0x61,0xdc,0x7a,0xa8,0x2d,0xbd,0x2f,0x27,0xd2,0x06,0x17,0x52,0xf2,0x3a,0x7d,0xde,0xed,0xbb,0xf7, - 0xc7,0x41,0xea,0xa1,0x37,0x73,0xda,0xa9,0x9d,0x23,0x1a,0x38,0x7e,0xe7,0x41,0x89,0x0b,0xca,0x10,0x27, - 0xb4,0x4d,0x5b,0xda,0xe2,0xf1,0xdb,0x5b,0x50,0x34,0x14,0xbd,0x1e,0x86,0x92,0xf4,0x5d,0x83,0xae,0x6a, - 0xf8,0xa1,0x00,0x91,0x11,0x48,0xc4,0x0c,0x93,0xa4,0x0f,0x71,0x24,0x9e,0xec,0x84,0xd8,0x11,0xd8,0x0a, - 0xe2,0x31,0x10,0xd7,0xa2,0xa6,0x1b,0xf1,0x22,0x4d,0x5b,0xa3,0x92,0x5e,0xd2,0xc8,0x8b,0xbc,0x24,0xea, - 0xde,0xbd,0x87,0xaa,0xa8,0x76,0x45,0x95,0x29,0x17,0xa5,0x3d,0x6d,0x48,0xe9,0x6d,0xc4,0x04,0x98,0xf7, - 0x53,0x5a,0x19,0x02,0x19,0xe3,0x5a,0x92,0x06,0x57,0x3c,0x45,0x67,0x4e,0xf5,0x00,0x93,0x66,0x14,0x23, - 0xe3,0x18,0xd6,0x18,0x01,0xd7,0xa1,0xa3,0x3d,0x91,0x8a,0x33,0xdc,0x80,0x05,0xde,0xb0,0x9e,0xf1,0xc8, - 0xe9,0x38,0x54,0x60,0x05,0x9e,0x0a,0x42,0x36,0x8d,0xcd,0x3d,0xbb,0xa3,0xf7,0x59,0xc2,0x67,0x21,0xa1, - 0x26,0x16,0x5e,0x48,0x45,0x7a,0x8e,0xf8,0xb9,0x1f,0x8a,0x06,0x23,0x06,0x81,0xc9,0x6b,0xd3,0x66,0xca, - 0x21,0x9f,0xd1,0xda,0x45,0x73,0x56,0x03,0xe5,0x60,0xc7,0x33,0xc7,0x99,0x12,0x34,0xca,0x04,0xed,0x68, - 0xd6,0xd7,0xdc,0xe4,0x85,0xa4,0x2d,0x49,0x81,0x38,0x65,0xb3,0x9f,0x49,0x2b,0x23,0x2e,0x6f,0x68,0xf1, - 0x9a,0x29,0xae,0xd2,0x7f,0x3a,0x04,0x95,0x2f,0x65,0x4a,0x31,0x54,0x92,0x73,0x9f,0x26,0xd1,0x1f,0xb6, - 0x6d,0xc2,0x44,0x68,0xf2,0x31,0xbf,0x6f,0x25,0xe2,0x28,0x50,0xc3,0x5f,0xc1,0x89,0x2d,0x2e,0x38,0x2e, - 0x0f,0x8e,0x4c,0xdb,0xbe,0xec,0x7e,0x86,0x16,0xe8,0x61,0x92,0x5b,0x46,0xd6,0x91,0xe1,0xeb,0x2f,0x88, - 0x06,0x61,0xec,0x92,0xad,0x7a,0xd9,0xfe,0x0c,0x31,0xcc,0x18,0x65,0x2e,0x3a,0x05,0x84,0x7b,0x98,0x9f, - 0x21,0xa3,0x5b,0x3f,0x2c,0x6a,0x5c,0xbc,0x7a,0xa1,0x88,0x6c,0x46,0x1b,0x3f,0x6c,0x29,0x07,0xca,0x85, - 0xcc,0x4e,0x3f,0xec,0x50,0x8b,0x1b,0x4f,0x7d,0x05,0x22,0xa9,0x17,0x43,0x4a,0x1a,0x3f,0x14,0xce,0xa1, - 0x06,0x95,0x0b,0x62,0x2d,0x68,0xe1,0x4f,0x5c,0xea,0xad,0x4f,0xda,0xee,0xcc,0xbf,0xf1,0x6b,0x87,0xbf, - 0xf6,0xe7,0xfc,0x44,0xf8,0xc1,0xef,0x71,0x03,0xca,0x6a,0xab,0x09,0x7b,0x29,0xcb,0x3d,0x6c,0x36,0x9b, - 0x85,0xd7,0xb7,0x90,0x66,0x46,0x4e,0x93,0xb6,0xc7,0x1c,0xf2,0x5a,0xec,0x61,0xc7,0x1c,0x7d,0x89,0x93, - 0xc4,0xd7,0x7f,0xe1,0xe6,0xd1,0xd7,0x0b,0x02,0xb1,0x62,0xab,0x57,0x45,0xbe,0x78,0xc2,0xed,0x6d,0x3e, - 0xba,0x4b,0x24,0xda,0x3f,0xfa,0x6a,0x2e,0x5e,0x6c,0xdf,0x24,0x8f,0xda,0x7c,0x21,0x2a,0x44,0x0e,0xfb, - 0xd3,0x6b,0x3a,0xbd,0xda,0x93,0xf6,0x9c,0x61,0x87,0xf6,0x7c,0xca,0x31,0x3b,0x98,0x43,0x1d,0xea,0xfb, - 0x0b,0x68,0x7e,0x70,0xd8,0x2b,0x5c,0x53,0x98,0x66,0x1c,0xb4,0x45,0x9d,0x3d,0xf8,0xe2,0x13,0x31,0x8c, - 0x3e,0xb6,0xf1,0xad,0xc9,0xc8,0x61,0x3d,0xe7,0xb4,0xf6,0xd2,0x18,0x71,0xa2,0xcd,0xe4,0x34,0xe1,0x1c, - 0x67,0xd3,0xd7,0x5a,0x76,0x77,0x29,0xd0,0xc5,0x1c,0x48,0x03,0x47,0xdd,0xfb,0xca,0xb2,0xcc,0xcc,0x4e, - 0xf0,0x14,0x89,0x27,0x2b,0xce,0xac,0x87,0xe9,0x8e,0x92,0x16,0x3a,0x9a,0xd5,0xc3,0x64,0x95,0xd3,0xce, - 0xaa,0x68,0x71,0xee,0x67,0x5f,0xd9,0x6f,0x35,0x7d,0x83,0x38,0xb6,0x16,0x5a,0xeb,0xac,0x65,0x0e,0xdf, - 0xa8,0x55,0x0e,0xd7,0xdc,0x9d,0x90,0xa4,0x86,0x3b,0x9a,0x25,0x91,0x78,0x32,0x7a,0xe6,0x42,0x9b,0x34, - 0xfa,0x3d,0x01,0xf7,0xd9,0x40,0xd2,0x52,0x15,0x45,0x61,0x49,0x15,0xef,0xc5,0xa3,0x65,0x09,0x3a,0x46, - 0xa0,0x12,0x5f,0x5d,0x4e,0xb5,0x76,0xc5,0xbb,0x04,0x6d,0x96,0xbb,0x6c,0x6f,0xe8,0xd1,0xd4,0x3d,0xfa, - 0xdb,0xcd,0x6e,0xc9,0xb7,0x7b,0x8e,0xf3,0xdd,0x88,0x26,0xa6,0x6e,0x88,0x12,0xb6,0xe8,0x8d,0x1c,0xe5, - 0xc0,0x47,0x0d,0x35,0xe4,0xd0,0x10,0xff,0xd2,0x94,0x4c,0x60,0x20,0x2a,0xd1,0xa2,0xa8,0x45,0xf6,0xf2, - 0xb4,0x22,0xac,0xe7,0x41,0x51,0x93,0xa6,0xb4,0xb6,0x46,0xeb,0x62,0x28,0x0b,0x17,0x7c,0x2f,0x28,0x34, - 0x68,0x26,0xb0,0x60,0x25,0x8b,0xa0,0xdc,0xb8,0x64,0x2a,0x0c,0xb5,0x86,0x25,0xd9,0xf7,0x00,0xba,0x0a, - 0x7e,0x4f,0xc1,0x71,0x60,0xb0,0x5e,0xea,0x2d,0xa3,0x42,0xf4,0x34,0x03,0x5c,0xee,0x3b,0x9e,0x49,0x8b, - 0xa1,0x86,0x1c,0xdb,0xb4,0xc0,0x32,0x07,0x17,0xe0,0x6c,0xb4,0xda,0xca,0xbf,0x33,0x8a,0x9a,0xd9,0x56, - 0xe4,0x1d,0x97,0xd9,0x8c,0xe5,0x34,0xf3,0xdd,0x6e,0xf7,0x39,0x88,0xe2,0x26,0xaf,0xd6,0x24,0xb2,0x84, - 0x48,0x4b,0x02,0x78,0x18,0x6d,0x59,0xec,0x48,0x78,0x79,0x46,0xf9,0x7e,0x09,0x1e,0x37,0xd1,0x84,0x11, - 0x4d,0x08,0xbe,0xa8,0x39,0xba,0x5e,0x85,0x09,0x48,0x3f,0x29,0x3f,0x61,0x66,0x05,0x4e,0x57,0xb0,0xef, - 0xa7,0xd5,0x1a,0x54,0x18,0xad,0x55,0xf0,0xc2,0x13,0xee,0x7b,0x74,0xc4,0xc3,0xa5,0x26,0x1c,0x4b,0x44, - 0x8f,0xd3,0x8e,0x61,0x7b,0x59,0x28,0xf1,0x80,0xa5,0xef,0xcb,0xf3,0x16,0x6d,0x21,0x9f,0x25,0x06,0x98, - 0x9a,0xb8,0xbb,0x1e,0x2f,0xd4,0x3d,0xf7,0xe2,0xe4,0x20,0xdb,0xb7,0x4c,0x8f,0xcc,0xe4,0xdc,0xd2,0x0b, - 0x43,0xdd,0xb8,0x42,0x16,0x36,0x46,0x18,0x1c,0x85,0xfc,0x23,0x54,0xb8,0x03,0x1f,0x6a,0x54,0x28,0x7e, - 0x3b,0x80,0xf4,0xc4,0xb0,0x41,0x39,0xbe,0xb1,0x93,0x6f,0x6e,0xa5,0xcc,0x1c,0x93,0x8e,0x83,0x40,0xe7, - 0x60,0xad,0x66,0x8a,0x65,0x08,0xc7,0x89,0xa8,0xfa,0xc4,0xe5,0x52,0x9b,0xd5,0xb8,0xa5,0xd5,0x2e,0x12, - 0x8f,0x26,0x01,0x22,0xa0,0xbc,0xc1,0xa5,0xde,0xaa,0xdf,0x87,0xc9,0xb6,0xe0,0x2b,0xe0,0xdb,0xd0,0x0b, - 0x2e,0xc7,0x15,0x9e,0xb2,0xdf,0x05,0xe2,0x93,0xa7,0xa2,0x25,0x32,0x5e,0x6e,0xd4,0x0b,0x8d,0x63,0xe4, - 0x1a,0xb9,0x8b,0xac,0x7b,0xd2,0x19,0x22,0x7e,0x28,0x8b,0x1b,0x06,0xdf,0x89,0x42,0xe3,0x56,0x78,0x16, - 0xc5,0xd0,0x5b,0xb6,0x0d,0x33,0x87,0x36,0x0b,0xd0,0x20,0x00,0x94,0x1d,0x1d,0x9a,0x8c,0x5b,0xba,0xe4, - 0x43,0xe9,0x64,0x19,0x74,0xbb,0xc9,0x36,0xd4,0x04,0xcc,0xd7,0x40,0x65,0xff,0xa8,0x2b,0xac,0x22,0x2e, - 0xb2,0x3e,0x56,0x60,0x27,0xe3,0x0c,0x8e,0xd4,0x70,0x5c,0x3f,0xa5,0x8c,0x02,0xae,0xc6,0x5f,0x82,0xa7, - 0xa4,0xc4,0xc7,0x47,0x53,0x43,0x89,0x32,0x23,0x1b,0x17,0x59,0xb0,0xc8,0xd0,0x5b,0x90,0x0a,0x74,0xb4, - 0x18,0x65,0x12,0x4e,0xdf,0xe3,0x2f,0x60,0xc3,0x25,0xce,0x73,0xa0,0xa3,0x5b,0xd1,0xb2,0xaa,0xd4,0x94, - 0x57,0x11,0x44,0x8d,0x06,0xe2,0x9f,0xde,0x6c,0x4a,0x0a,0xf6,0x39,0xe2,0x83,0xa5,0x0a,0x5b,0x15,0x41, - 0x79,0x80,0xad,0x37,0xc3,0xad,0x6f,0xc4,0xb7,0x45,0xd0,0x08,0xeb,0x78,0x8a,0xd1,0x9e,0x34,0x90,0x85, - 0xd6,0xe5,0xc5,0x62,0xe5,0xd6,0xec,0x43,0x6b,0x74,0xb2,0xde,0x7a,0x13,0x5c,0x0a,0xf1,0x34,0x98,0x2b, - 0x9e,0xd8,0xac,0x8d,0x4e,0xc8,0x83,0x23,0x23,0xb3,0x7b,0x3c,0x77,0xe2,0x19,0xed,0x22,0x63,0x55,0x97, - 0xc9,0xb7,0x0b,0x7b,0x48,0x23,0xaa,0xda,0x14,0xa8,0x9a,0x34,0x58,0x87,0xda,0xf8,0xb3,0x17,0x2d,0x61, - 0x4d,0x19,0xf9,0x2e,0x3a,0x5e,0xe3,0xdd,0x2f,0x75,0xa3,0xb9,0xcc,0x11,0x65,0x77,0xa6,0x6f,0x11,0x77, - 0x67,0x81,0x8a,0x3e,0x73,0x72,0x8e,0x44,0x67,0xc5,0x55,0xf7,0x1b,0x52,0xc5,0x29,0xfe,0x64,0xd1,0xba, - 0xed,0x57,0x37,0x64,0x06,0xc2,0x12,0x37,0x09,0xd0,0x73,0x16,0xb6,0xb5,0xe1,0x87,0xe1,0x9b,0x45,0xd4, - 0x4d,0x77,0x03,0xc0,0x55,0x44,0xc0,0xb0,0x40,0x6b,0x6b,0xdc,0x32,0x86,0x00,0x13,0x69,0x27,0x2a,0x50, - 0x6f,0x41,0xb0,0xc4,0x38,0x47,0xf4,0x83,0x6b,0x1f,0x54,0x16,0x80,0x49,0xc3,0x0a,0xf8,0xf4,0x1c,0x77, - 0x16,0xa9,0xad,0x91,0x1d,0x6c,0x3e,0xa4,0xb8,0xfa,0x99,0xd8,0xea,0x4d,0x94,0x6f,0x37,0x4f,0xd6,0xd6, - 0x27,0xcd,0xc2,0x0b,0xdf,0x50,0x73,0xc6,0x3f,0xb8,0x98,0x09,0x65,0x6a,0xde,0xec,0x35,0xde,0xa3,0xae, - 0xd3,0x58,0x2f,0x18,0x82,0x0b,0xce,0x5f,0x09,0x68,0xdd,0x75,0xe0,0x1a,0xd4,0xca,0x3e,0x2f,0x1a,0xff, - 0x5c,0x45,0x74,0x39,0x96,0x36,0x5f,0x20,0x56,0x38,0x26,0xca,0xc1,0x75,0x81,0x31,0x4e,0x38,0x8a,0x53, - 0x9a,0x6a,0x56,0xea,0x3d,0xe0,0x35,0x04,0xe9,0x5d,0xfe,0x6e,0x79,0x62,0xe3,0x0e,0x29,0x76,0xdf,0x21, - 0x99,0xb2,0x4c,0x17,0x83,0x36,0xc8,0x31,0x04,0x3a,0xd1,0xef,0x81,0x2c,0x73,0x93,0x30,0xbf,0x93,0xc9, - 0x74,0x53,0xe2,0xc0,0x65,0x3f,0x04,0x95,0x2b,0x5f,0xb5,0x54,0xdc,0xff,0x98,0xf5,0xd1,0x11,0xa9,0x32, - 0xb7,0xcc,0x0c,0x53,0x57,0x39,0x83,0x0b,0xb5,0xea,0x53,0xf8,0xe8,0xba,0xf5,0x19,0xd6,0xa7,0x92,0xe9, - 0x64,0x92,0xcd,0xb7,0xe0,0x82,0x96,0x6e,0xaa,0xb6,0x3e,0x1f,0x36,0x1b,0x27,0xbf,0xa9,0xbe,0x19,0xd5, - 0xfb,0xb3,0x35,0xd2,0x45,0x4c,0x1e,0x82,0x45,0x32,0x1b,0x35,0x69,0x74,0xf3,0xd5,0x88,0xd2,0x35,0xa7, - 0xad,0xed,0x90,0x5a,0xdd,0xe5,0x2f,0x8e,0x61,0xf3,0x41,0xcc,0x32,0xc0,0x36,0x12,0xcf,0x6c,0x20,0x55, - 0x39,0x24,0x95,0xe9,0xac,0xbe,0xb4,0xbc,0xb9,0x37,0x7f,0x42,0xc9,0xde,0x32,0xde,0xd4,0x51,0x3e,0x80, - 0xd3,0xf2,0x52,0x3a,0xbc,0x60,0xfc,0x5a,0xa2,0x6b,0xbf,0xce,0x7a,0x3d,0xa3,0xf1,0xb3,0xda,0xb5,0x17, - 0x53,0x15,0x48,0x10,0xc8,0x58,0x0a,0xf4,0x65,0x84,0x1c,0x82,0x80,0x7a,0xc3,0xd3,0xd0,0x20,0x51,0x93, - 0x2a,0x44,0x54,0xfc,0x83,0x81,0x5f,0xbd,0x30,0xe9,0xcd,0xcd,0xd6,0x2e,0x4e,0x87,0x69,0x19,0xc4,0xda, - 0xff,0x0e,0x82,0xfc,0x69,0x53,0x19,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xad,0x59,0xeb,0x6e,0xa3,0x38,0x14,0x7e,0x15,0xa4, + 0x6a,0xa4,0xe9,0x0a,0x10,0xb9,0x90,0xa6,0xa0,0x5d,0xed,0x6a,0xdf,0x61,0xff,0x8c,0xfa,0xc3,0x80,0x09, + 0x56,0x09,0x46,0xc6,0x69,0x9a,0x41,0xbc,0xfb,0x1e,0xdb,0x98,0xd8,0xe0,0x64,0x32,0xa3,0x11,0x6a,0x13, + 0x6c,0x9f,0xab,0xcf,0xe5,0xb3,0x53,0xf1,0x63,0xdd,0x67,0xf4,0x33,0xe8,0xc8,0x77,0xd2,0x1c,0x92,0x8c, + 0xb2,0x02,0xb3,0x00,0x46,0xd2,0x92,0x36,0x5c,0x0c,0xe3,0x64,0xb7,0x0e,0xe3,0x2f,0xc3,0x1f,0x7e,0x82, + 0x4a,0x8e,0x99,0x9f,0x64,0xb8,0xa4,0x0c,0x9b,0x64,0xa4,0xa9,0x30,0x23,0x7c,0xc8,0x68,0x71,0xe9,0x33, + 0x94,0xbf,0x1f,0x18,0x3d,0x35,0x45,0x90,0xd3,0x9a,0xb2,0xe4,0x29,0x8a,0xa2,0x74,0xfc,0x5a,0x96,0xa5, + 0xe2,0x5c,0xa2,0x23,0xa9,0x2f,0xc9,0x7f,0x98,0x15,0xa8,0x41,0xfe,0x3f,0x8c,0xa0,0xda,0xef,0x50,0xd3, + 0x05,0x1d,0xb0,0x2a,0x0d,0xf1,0xab,0x70,0x83,0x8f,0xea,0xfd,0x8c,0xc9,0xa1,0xe2,0xc9,0x06,0xf8,0xd5, + 0x98,0x83,0x32,0x41,0xd7,0xa2,0x5c,0x68,0x10,0x46,0x2b,0x58,0x54,0x93,0x06,0x07,0x95,0x5a,0x04,0x64, + 0x69,0x8b,0x8a,0x02,0x66,0xc1,0x1e,0xce,0xe9,0x31,0xd9,0x30,0x7c,0x1c,0xfe,0x3e,0xe2,0x82,0x20,0xaf, + 0xcb,0x19,0xc6,0x8d,0x87,0x9a,0xc2,0xfb,0x7a,0x24,0x4d,0x70,0x26,0x05,0xaf,0x92,0x97,0xdd,0xbe,0xfd, + 0x7c,0xee,0xa5,0x1d,0x9a,0x98,0xd3,0x56,0x51,0x0e,0xa8,0xe7,0xf8,0x93,0x07,0x05,0xce,0x29,0x43,0x9c, + 0xd0,0x26,0x69,0x68,0x83,0x87,0x6f,0x1f,0x41,0x5e,0x53,0xf4,0xfe,0xd6,0x17,0xa4,0x6b,0x6b,0x74,0x51, + 0xc3,0x4f,0x39,0xa8,0x8c,0x40,0x23,0x66,0xb8,0x24,0x79,0x5a,0x47,0xe2,0x49,0x8f,0x88,0x1d,0x40,0xac, + 0x60,0xbe,0x06,0xe6,0x5a,0xd5,0x64,0x25,0x5e,0xa4,0x6b,0x2b,0x54,0xd0,0x73,0x12,0x79,0x91,0x17,0x47, + 0xed,0xa7,0xf7,0x54,0xe6,0xe5,0x2e,0x2f,0x53,0xb5,0x45,0x49,0x47,0x6b,0x52,0x78,0x2b,0x31,0x01,0xee, + 0x7d,0xc8,0x2a,0x43,0x21,0x63,0x5c,0x6b,0x52,0xe3,0x92,0x27,0xe8,0xc4,0xa9,0x1e,0x60,0xd2,0x8d,0x62, + 0x64,0x18,0xc2,0x0a,0x23,0x90,0xda,0xb7,0xb4,0x23,0xd2,0x70,0x86,0x6b,0xf0,0xc0,0x07,0xd6,0x33,0x1e, + 0x39,0x1e,0xfa,0x12,0xbc,0xc0,0x13,0xc1,0xc8,0xe6,0xb1,0xba,0xe5,0x77,0xf4,0x39,0x69,0xf8,0x22,0x34, + 0xd4,0xcc,0xc2,0x33,0x29,0x49,0xc7,0x11,0x3f,0x75,0x7d,0x5e,0x63,0xc4,0x20,0x30,0x79,0x65,0xfa,0x4c, + 0x6d,0xc8,0x23,0x56,0xbb,0x78,0x4e,0x66,0xa0,0x0c,0xfc,0x78,0xe2,0x38,0x55,0x8a,0x46,0xa9,0xe0,0x1d, + 0x4d,0xf6,0x9a,0x44,0x5e,0x48,0x9a,0x82,0xe4,0x88,0x53,0x36,0xed,0x33,0x69,0x64,0xc4,0x65,0x35,0xcd, + 0xdf,0x53,0x25,0x55,0xee,0x9f,0x0e,0x41,0xb5,0x97,0x32,0xa5,0x18,0x2a,0xc8,0xa9,0x4b,0xe2,0xe8,0x8b, + 0xed,0x9b,0x30,0x16,0x96,0xdc,0x97,0xf7,0xad,0x40,0x1c,0x05,0x6a,0xf8,0x4f,0xd8,0xc4,0x06,0xe7,0x1c, + 0x17,0x6f,0x8e,0x4c,0xdb,0xbc,0xee,0x7e,0x86,0x17,0xd8,0x61,0xb2,0x9b,0x47,0xd6,0x81,0xe1,0xcb,0x2f, + 0xa8,0x06,0x61,0xec,0xd2,0xad,0x7c,0xdd,0xfc,0x0c,0x33,0xcc,0x18,0x65,0x2e,0x3e,0x39,0x84,0x7b,0x98, + 0x9d,0x20,0xa3,0x1b,0x3f,0xcc,0x2b,0x9c,0xbf,0x7b,0xa1,0x88,0x6c,0x46,0x6b,0x3f,0x6c,0x28,0x07,0xce, + 0xb9,0xcc,0x4e,0x3f,0x6c,0x51,0x83,0x6b,0x4f,0x7d,0x04,0x22,0xa9,0x67,0x43,0x4a,0x1b,0x3f,0x14,0x9b, + 0x43,0x0d,0x2e,0x67,0xc4,0x1a,0xb0,0xc2,0x1f,0xa5,0x54,0x1b,0x9f,0x34,0xed,0x89,0x7f,0xe3,0x97,0x16, + 0xff,0xd9,0x9d,0xb2,0x23,0xe1,0x6f,0x7e,0x87,0x6b,0x30,0x56,0x7b,0x4d,0xf8,0x4b,0x79,0xee,0x69,0xb5, + 0x5a,0xcd,0x76,0x7d,0x03,0x69,0x66,0xe4,0x34,0x69,0x3a,0xcc,0x21,0xaf,0x05,0x0d,0x3b,0x64,0xe8,0xeb, + 0x3a,0x8e,0x7d,0xfd,0x17,0xae,0x9e,0x7d,0xbd,0x20,0x10,0x2b,0x36,0x7a,0x55,0xe4,0x8b,0x27,0xdc,0x5c, + 0xe7,0xa3,0x9b,0x4c,0xa2,0xfd,0xb3,0xaf,0xe6,0xd6,0x33,0xf2,0x55,0xfc,0xac,0xdd,0x17,0xa2,0x5c,0xe4, + 0xb0,0x3f,0xbe,0x26,0xe3,0xab,0x3d,0x69,0xcf,0x19,0x7e,0x68,0x4e,0xc7,0x0c,0xb3,0x37,0x73,0xa8,0x45, + 0x5d,0x77,0x06,0xcb,0xdf,0x1c,0xfe,0x0a,0x97,0x1c,0xc6,0x19,0x07,0x6f,0x51,0x67,0xdf,0x7c,0xf1,0x1f, + 0x31,0x8c,0xee,0xfb,0xf8,0xda,0x64,0xe4,0xb0,0x9e,0x73,0x7a,0x7b,0xee,0x8c,0x75,0xac,0xdd,0xe4,0x74, + 0xe1,0x30,0x06,0x80,0xd4,0xac,0x7f,0xa4,0x6f,0x4d,0x91,0x69,0x52,0x5a,0xd6,0xba,0x8b,0x87,0x2e,0xff, + 0xa0,0x0c,0xe8,0xa8,0xbb,0x65,0x51,0x14,0xa9,0xd9,0x3b,0xb6,0x91,0x78,0xd2,0xfc,0xc4,0x3a,0x98,0x6e, + 0x29,0x69,0xa0,0x07,0x5a,0x5d,0x4f,0xd6,0x45,0xbd,0xbd,0x25,0xcd,0x4f,0xdd,0xb4,0xbb,0xf6,0x5b,0x45, + 0x3f,0x20,0xf2,0xad,0x85,0xd6,0x3a,0x6b,0x99,0x63,0x37,0xd5,0x2a,0xc7,0x66,0xde,0x9c,0x90,0xac,0xfa, + 0x1b,0x96,0xc5,0x91,0x78,0x52,0x7a,0xe2,0xc2,0x9a,0x24,0xfa,0x3d,0x21,0xfa,0x68,0xe8,0x69,0xad,0xf2, + 0x3c,0xb7,0xb4,0x5a,0xef,0xc5,0xa3,0x75,0x09,0x5a,0x46,0xa0,0x76,0x5f,0x5c,0x9b,0x6a,0x51,0xad,0x77, + 0x31,0x5a,0xcd,0xa9,0xec,0xdd,0xd0,0xa3,0x89,0x7b,0xf4,0xb7,0xbb,0xdd,0xd2,0x6f,0xf7,0xb2,0xce,0x76, + 0x03,0x1a,0x85,0xba,0x41,0x4d,0xd8,0xa0,0x0f,0x72,0x90,0x03,0xf7,0x5a,0x70,0xc8,0xa1,0x85,0xfe,0xa5, + 0x39,0x99,0x50,0x42,0xd4,0xae,0x59,0x19,0x8c,0xec,0xe5,0x49,0x49,0x58,0xc7,0x83,0xbc,0x22,0x75,0x61, + 0x91,0x46,0xcb,0xf2,0x29,0x4b,0x1d,0x7c,0xce,0x38,0xd4,0x68,0x62,0x30,0x13,0x25,0xcb,0xa6,0x24,0x9c, + 0x0b,0x15,0x8e,0x5a,0x02,0x99,0xf4,0x7b,0x00,0x7d,0x08,0x7f,0x26,0xb0,0x71,0xe0,0xb0,0x4e,0xda,0x2d, + 0xa3,0x42,0x74,0x41,0x03,0x8e,0xee,0x5b,0x9e,0x4a,0x8f,0xa1,0x9a,0x1c,0x9a,0x24,0xc7,0x32,0x07,0x67, + 0x70,0x6e,0xb0,0x1a,0xd1,0xbf,0x13,0xee,0x9a,0xc4,0x96,0xe4,0x13,0x17,0xe9,0x84,0xfe,0xb4,0xf0,0xdd, + 0x6e,0xf7,0x18,0xa8,0x71,0xb3,0x57,0x6b,0x62,0x59,0x42,0xa4,0x27,0x01,0x6e,0x0c,0xb6,0x2e,0x76,0x24, + 0xbc,0xbe,0xa0,0x6c,0x3f,0x87,0x9b,0xab,0x68,0x44,0x95,0x26,0x68,0x9f,0xd5,0x1c,0x5d,0xaf,0xc2,0x18, + 0xb4,0x1f,0x8d,0x1f,0x51,0xb6,0x82,0xb3,0x0b,0xa0,0xf8,0xd3,0x66,0xf5,0x2a,0x8c,0x96,0x26,0x78,0xe1, + 0x11,0x77,0x1d,0x3a,0xe0,0xfe,0x5c,0x11,0x8e,0xe5,0x19,0x00,0x27,0x2d,0xc3,0xf6,0xb2,0x50,0x22,0x08, + 0xcb,0xde,0xd7,0x97,0x0d,0xda,0x40,0x3e,0x4b,0xd4,0x30,0xb6,0x7d,0x77,0x3d,0x9e,0x99,0x7b,0xea,0xc4, + 0x59,0x43,0x36,0x7c,0x99,0x1e,0xa9,0x29,0xb9,0xa1,0x67,0x86,0xda,0x61,0x81,0x45,0x6c,0x54,0xd1,0x3b, + 0x0a,0xf9,0x3d,0x1c,0xb9,0x83,0x3d,0xd4,0x38,0x52,0x7c,0x77,0x40,0xef,0x51,0x60,0x8d,0x32,0x7c,0x15, + 0x27,0xdf,0xdc,0x46,0x99,0x39,0x26,0x37,0x0e,0x02,0x9d,0x83,0xb7,0xea,0x31,0x96,0x21,0x1c,0x47,0xa6, + 0xea,0x3f,0x2e,0xe6,0xd6,0x2c,0xc6,0x2d,0xab,0x76,0x91,0x78,0x34,0x0b,0x50,0x01,0x65,0x35,0x2e,0x34, + 0xa9,0x7e,0xef,0x47,0xdf,0xc2,0x5e,0x81,0xdc,0x9a,0x9e,0x71,0x31,0x2c,0x10,0x98,0xfd,0x2e,0x30,0xa2, + 0x3c,0x47,0xcd,0xb1,0xf4,0x9c,0x50,0x2f,0x34,0x0e,0x9e,0x4b,0xac,0x2f,0xb2,0x6e,0xab,0x33,0x44,0x7c, + 0x51,0x1e,0x37,0x1c,0xbe,0x13,0x85,0xc6,0x6d,0xf0,0xa4,0x8a,0x61,0xb7,0x6c,0x1b,0x66,0x0e,0xad,0x66, + 0x30,0x43,0x40,0x2e,0x3b,0x3a,0x34,0x1b,0xb7,0x76,0xf1,0x5d,0xed,0x64,0x19,0x74,0x6f,0x93,0xed,0xa8, + 0x11,0xca,0x2f,0xa1,0xcd,0xfe,0x59,0x57,0x58,0xc5,0x5c,0x64,0xfd,0x5a,0xc1,0xa3,0x94,0x33,0x00,0x33, + 0x70,0xc0,0x3f,0x26,0x8c,0x02,0x12,0xc7,0x5f,0x83,0x6d,0x5c,0xe0,0xc3,0xb3,0x69,0xa1,0xc4,0xa5,0x91, + 0x8d,0xa4,0x2c,0x20,0x65,0xd8,0x2d,0x58,0x05,0x3a,0x5a,0x8c,0x32,0x09,0xe7,0xf5,0xe1,0x17,0xd0,0xe4, + 0x1c,0x19,0x3a,0xd0,0xd1,0xb5,0x68,0x59,0x55,0x6a,0xcc,0xab,0x08,0xa2,0x46,0x43,0xf7,0x87,0x89,0x4d, + 0x4d,0xc1,0x3f,0x07,0xfc,0x66,0x99,0xc2,0x16,0x45,0x50,0x1e,0x79,0xab,0x55,0x7f,0xed,0x1b,0xeb,0xeb, + 0x22,0x68,0x84,0xd5,0x7a,0x8c,0xd1,0x8e,0xd4,0x90,0x85,0xd6,0x75,0xc7,0x6c,0xe5,0xc6,0xec,0x43,0x4b, + 0x74,0xb2,0x24,0xbd,0x2a,0x2e,0x95,0xd8,0xf6,0xe6,0x8a,0x2d,0x9b,0xac,0xd1,0x09,0xf9,0xe6,0xc8,0xc8, + 0xf4,0x96,0xcc,0x9d,0x78,0x06,0xbb,0xc8,0x58,0xd5,0x45,0x38,0xc4,0xd1,0x15,0xa4,0x17,0x55,0x71,0x0a, + 0x54,0x51,0xea,0xad,0x73,0xf0,0xfa,0xd1,0xbb,0x99,0xb0,0xa2,0x8c,0x7c,0x17,0x2d,0xaf,0x36,0x80,0xc9, + 0x60,0x0c,0x7b,0xb7,0x4b,0xa0,0xb5,0xcc,0x11,0x7d,0x37,0xa6,0xaf,0x91,0x78,0x63,0x81,0x8a,0x4a,0x73, + 0x72,0x8a,0x50,0x67,0x25,0x56,0x37,0x25,0xd2,0xf2,0x31,0x2e,0x65,0x31,0xbb,0xd2,0xab,0xbb,0x36,0xd3, + 0x40,0x98,0x85,0x5e,0x34,0xf3,0xb9,0x0d,0x4b,0x8c,0x3d,0x9b,0x45,0xe3,0x78,0xcb,0x00,0x52,0x45,0x64, + 0xf4,0x33,0x14,0xb7,0xc4,0x33,0x43,0x08,0xf0,0x91,0xb6,0xa2,0x32,0x75,0x16,0x34,0x8b,0x8d,0xf3,0x85, + 0x75,0x37,0xe3,0x62,0x01,0xc5,0x07,0x90,0x54,0xbf,0xc0,0x46,0x1d,0xc7,0xad,0xc5,0x75,0x63,0x24,0x10, + 0x9b,0xce,0x31,0xae,0x96,0x27,0x48,0xbd,0x91,0xf3,0xf5,0x3a,0xcb,0x22,0xdd,0x6a,0x11,0x5e,0xf8,0x81, + 0xea,0x13,0xfe,0xc1,0x6d,0x4f,0x28,0xb3,0xf7,0xea,0xba,0xe1,0x16,0x77,0x9d,0xe9,0x7a,0x41,0x1f,0x9c, + 0x71,0xf6,0x4e,0xc0,0xea,0xb6,0x05,0x37,0xa0,0x46,0x42,0x01,0x81,0x0d,0xa6,0x42,0xa3,0x2b,0xb6,0x74, + 0xff,0x0c,0xd4,0xc2,0xd9,0x53,0x0e,0x2e,0x6b,0x90,0x71,0x08,0x52,0x92,0x92,0x44,0x8b,0x52,0xef,0x01, + 0xaf,0x20,0x5e,0x6f,0xca,0x77,0xeb,0xb3,0x36,0x2e,0xa6,0xd6,0xee,0x8b,0x29,0x53,0x97,0xf1,0xb6,0xd1, + 0xc6,0x41,0x86,0x42,0x47,0xfa,0x3d,0x90,0x95,0x70,0x54,0xe6,0x77,0x0a,0x19,0xaf,0x5f,0x1c,0xd0,0xed, + 0x87,0xb8,0x73,0xb1,0x57,0x0d,0x15,0x97,0x4a,0x66,0x09,0x75,0x44,0xaa,0x8c,0x63,0xab,0x9a,0xc8,0xfb, + 0xa1,0xde,0x05,0x6c,0xf5,0x41,0x7d,0x70,0x5d,0x25,0xf5,0xcb,0x83,0xcb,0x78,0x78,0x49,0xa7,0xab,0x75, + 0xc1,0x4b,0xf7,0x5d,0xdb,0x9e,0xbb,0xfd,0xc8,0x29,0x6f,0x2c,0x75,0x46,0x81,0x7f,0xb4,0x8a,0xba,0x98, + 0xc9,0x73,0xb2,0xc8,0x6b,0xa3,0x3c,0x0d,0x6e,0xb9,0x1a,0x74,0xba,0xe6,0xb4,0xb7,0x1d,0x5a,0xab,0x1f, + 0x08,0x66,0x27,0xb5,0xe9,0xac,0x66,0x39,0x60,0x13,0x89,0x67,0x72,0x90,0xaa,0x1c,0x92,0xcb,0x78,0x9c, + 0x9f,0x7b,0xde,0xa4,0xcd,0xb6,0x28,0xde,0x5b,0xce,0x1b,0x7b,0xce,0x1d,0xc4,0x2d,0x6f,0xba,0xc3,0x33, + 0xc6,0xef,0x05,0xba,0x74,0xcb,0xac,0xd7,0x33,0x1a,0x62,0x2b,0xaa,0xbd,0x98,0x2a,0x41,0x83,0x40,0xc6, + 0x52,0xa0,0xef,0x2b,0xe4,0x10,0x04,0xd4,0x07,0x1e,0x87,0x7a,0x09,0xac,0x54,0x21,0xa2,0xe2,0x57,0x0b, + 0x7e,0xf1,0xc2,0xb8,0x33,0x89,0x2d,0x2a,0x4e,0xfb,0x71,0x99,0x88,0x35,0x99,0x6a,0x56,0x84,0xca,0x11, + 0x28,0x85,0xd0,0x65,0xb8,0xe3,0x38,0x7b,0xc7,0xd0,0xed,0xeb,0x17,0x9b,0xfc,0x91,0x82,0x6a,0xaf,0x7f, + 0xa4,0xb0,0xaa,0xa6,0x63,0x55,0xd6,0x91,0x09,0x6e,0x8a,0x47,0x35,0xbe,0xd1,0x28,0xaf,0x8c,0x6e,0xea, + 0xae,0xf0,0xb3,0xa1,0xba,0x5c,0x7c,0x4b,0xf1,0xf1,0xde,0xe1,0x9e,0xde,0xcb,0x96,0xfc,0x3f,0x72,0x40, + 0x04,0x67,0x3e,0x1b,0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index b58f1ee..72a5cf0 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,167 +4,170 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0xd9,0x76,0xdb,0x38,0x12,0xfd,0x15,0x46, - 0x3d,0x13,0x3b,0x93,0x78,0x77,0xdc,0xb1,0xdb,0x72,0xb7,0x56,0x5b,0xb6,0x24,0x6b,0xf3,0xfa,0x32,0x07, - 0x24,0x21,0x12,0x36,0x37,0x83,0xa4,0x64,0xa5,0x3b,0xff,0x3e,0x58,0xb8,0x80,0x9b,0x44,0x79,0x32,0x27, - 0x9d,0x73,0x26,0x0f,0x91,0xc9,0xaa,0xba,0xb8,0x28,0x14,0x0a,0x05,0x90,0x3c,0x7d,0xd7,0xbc,0x6e,0x4c, - 0x1e,0x06,0x2d,0x49,0xf7,0x4c,0xe3,0xec,0x34,0xf8,0x1f,0x02,0xf5,0xec,0xd4,0x84,0x1e,0x90,0x14,0x1d, - 0x60,0x17,0x7a,0xd5,0xca,0xcd,0xa4,0xbd,0xf5,0xa5,0x72,0x76,0xea,0x21,0xcf,0x80,0x67,0xa7,0x3b,0xc1, - 0x2f,0x53,0xb2,0x80,0x09,0xab,0x15,0x4f,0x87,0x26,0xdc,0x52,0x6c,0xc3,0xc6,0x15,0x49,0xb1,0x2d,0x0f, - 0x5a,0xc4,0xee,0x97,0x5d,0xf6,0xaf,0x92,0x50,0x9d,0x21,0x38,0x77,0x6c,0xec,0x09,0x7a,0x73,0xa4,0x7a, - 0x7a,0x55,0x85,0x33,0xa4,0xc0,0x2d,0x76,0xf1,0x09,0x59,0xc8,0x43,0xc0,0xd8,0x72,0x15,0x60,0xc0,0xea, - 0x1e,0x81,0x30,0x90,0xf5,0x2c,0x61,0x68,0x54,0x2b,0xae,0xb7,0x30,0xa0,0xab,0x43,0x48,0x30,0x74,0x0c, - 0xa7,0xd5,0x8a,0xec,0x5b,0xaa,0x01,0xb7,0x15,0xd7,0x25,0x8a,0xae,0x82,0x91,0xe3,0x49,0x2e,0x56,0x22, - 0xc1,0x13,0xbd,0xbf,0xc3,0x05,0xe4,0x0f,0xde,0x47,0xd9,0x56,0x17,0x67,0xa7,0x2a,0x9a,0x49,0x48,0xad, - 0x56,0x80,0xe3,0x54,0xf8,0xd5,0x6c,0x4b,0x31,0x6c,0xf0,0xcc,0x2f,0x14,0x03,0xb8,0x6e,0xb5,0x62,0xd9, - 0x1e,0x9a,0x22,0x05,0x78,0xc8,0xb6,0x1a,0x84,0x36,0x40,0x16,0xc4,0x95,0x42,0x95,0x8a,0x74,0x12,0xdc, - 0xfd,0x53,0x82,0x18,0xdb,0xf8,0x44,0x12,0xc5,0xd2,0xbb,0xaa,0x64,0xf9,0x86,0x21,0xbd,0x7f,0x9f,0xb8, - 0xbf,0xcd,0x74,0xa5,0x6f,0x15,0xc2,0x01,0x4d,0x93,0x90,0xa1,0x4d,0x45,0xfa,0x43,0x31,0x90,0xf2,0xbc, - 0xed,0x60,0x38,0x63,0xde,0xd3,0x91,0x0a,0xfb,0x62,0xe3,0xc4,0x05,0x0e,0xb0,0x42,0x5e,0x26,0x74,0x5d, - 0xa0,0xc1,0xca,0xd9,0x9f,0x7f,0x26,0x1b,0x0b,0x04,0xd2,0xb7,0x6f,0xc4,0x35,0xc4,0x80,0x38,0x86,0x74, - 0x27,0xfc,0x3f,0xf4,0x8b,0x92,0xdf,0x5b,0xea,0x42,0x76,0x0f,0x99,0x1a,0x77,0xb5,0x0a,0x3c,0x70,0x82, - 0x4c,0x82,0xb8,0xe3,0x58,0xda,0x6f,0x32,0x70,0xe1,0xd1,0xe1,0x27,0x74,0x5b,0xbf,0x1e,0xcd,0x77,0xaf, - 0xce,0x35,0xbb,0x46,0xfe,0xf5,0xc7,0x37,0x7a,0xeb,0x46,0x23,0x7f,0x35,0xe9,0x65,0x6d,0xde,0xa8,0x3d, - 0x90,0x9f,0xfa,0x7d,0x6d,0x66,0x5e,0xd0,0x1b,0xe7,0xf7,0xa3,0xf6,0xdd,0xc5,0x68,0x22,0xef,0x3f,0xee, - 0xaa,0xfb,0xed,0xc5,0xe3,0xb0,0x5e,0x7f,0x3c,0x3f,0x46,0x8f,0xe3,0xfa,0xa5,0x7c,0xd7,0xb6,0x1e,0x6f, - 0x2f,0x8d,0x87,0xbb,0xd1,0x67,0x45,0x31,0x8c,0x01,0x35,0xb8,0xaf,0x5f,0x8e,0x5a,0xed,0x1b,0xd8,0xc7, - 0xee,0x9d,0xda,0xea,0x6b,0x4f,0xb5,0x61,0x57,0x79,0xa8,0x2b,0xb5,0x81,0x52,0x6b,0xa8,0xc3,0xfe,0x61, - 0xad,0xbf,0xdf,0x6b,0x1c,0x6a,0x23,0xf7,0xe1,0xf2,0xb8,0xd5,0x57,0x6b,0x83,0x87,0x5a,0x13,0xd4,0x9a, - 0xd0,0x51,0x6f,0xf4,0xde,0xde,0x4b,0xfb,0xc9,0xc7,0x9a,0x73,0x3c,0x56,0x7a,0x17,0x9a,0xfa,0xeb,0xde, - 0xc1,0xed,0xc1,0xd4,0xbb,0x71,0x3e,0xc3,0x0b,0xad,0xd7,0xde,0xc3,0xf8,0xbc,0x05,0xfc,0xa3,0xdb,0x8b, - 0xe6,0xfe,0x45,0x4f,0xbe,0xf8,0xfc,0x72,0x79,0xdd,0xbd,0xc0,0xe0,0xe3,0xf4,0xf9,0xab,0xec,0x3e,0x8c, - 0x5c,0xbd,0xf7,0xc5,0xe9,0x4e,0xb4,0x9b,0x8e,0x36,0xd6,0x66,0x7e,0xaf,0x67,0x3f,0xcc,0x3f,0xa2,0xde, - 0xc3,0x04,0x1f,0x0d,0xf5,0xfe,0x43,0x0f,0xf7,0x51,0x7f,0x31,0xef,0x74,0x8d,0xc5,0xed,0x95,0xaa,0x2c, - 0x16,0x03,0xd7,0x54,0x46,0xee,0xe2,0xe6,0xf3,0xee,0xb3,0x76,0xe1,0x0d,0x87,0xfe,0x7e,0x4d,0xed,0x5f, - 0xb6,0x9d,0xe6,0x73,0xed,0xea,0xb0,0xb3,0xd3,0xed,0xdc,0xf5,0xe4,0xfd,0x9a,0xdb,0xa9,0x2b,0x2f,0xbb, - 0x68,0x74,0x0e,0x87,0xe7,0x83,0xc9,0xe3,0xf4,0xf6,0x68,0xd8,0xda,0xfd,0xa8,0x35,0xcf,0xdb,0xfb,0xd8, - 0x76,0xcf,0x5b,0x5a,0x6f,0xf8,0xda,0xa9,0xe9,0xd6,0x63,0x0d,0x0d,0xfa,0x5f,0x0e,0x7d,0x67,0x34,0xdd, - 0xdd,0xb9,0x36,0x1c,0xb7,0xdb,0xa8,0x3b,0x07,0x8b,0x97,0x5d,0x45,0xd7,0xbc,0xc6,0xcd,0xcd,0x23,0x1e, - 0xcd,0x8f,0x86,0xcd,0xeb,0x83,0xd6,0xdd,0xc5,0xf8,0xa5,0x7d,0xec,0x01,0xfc,0x08,0xc6,0x57,0x97,0xf7, - 0xf0,0xb2,0xa9,0xca,0x43,0xc3,0x6d,0xed,0x5e,0x35,0x8f,0x2e,0xfb,0x3b,0x57,0xf6,0xc8,0x3d,0xd7,0x5f, - 0xef,0xaf,0x1a,0x46,0xe3,0xea,0xe2,0xb2,0x33,0x7d,0x9e,0xe8,0xf3,0xde,0x9d,0x5e,0x3b,0x52,0xeb,0x63, - 0xdb,0x18,0xa1,0xa7,0xe7,0xcb,0x6b,0x75,0xef,0xf1,0x66,0x76,0xbc,0x18,0x1e,0x5f,0x3b,0x2f,0xf2,0x85, - 0x83,0xc0,0xcd,0x2d,0x68,0xc9,0x8f,0xad,0x5f,0xbd,0x4e,0xe7,0xc9,0xae,0x5f,0xdd,0x2f,0x5c,0xdb,0xdd, - 0x53,0x0e,0x6f,0xbf,0x40,0xb9,0xdb,0x52,0xe5,0xd9,0xbe,0xac,0xf4,0xdc,0xd6,0xaf,0xda,0x93,0x5f,0x57, - 0x67,0xf7,0xa3,0xf1,0xe5,0x61,0xfb,0xe3,0xce,0xfc,0xa5,0x73,0x7f,0x8f,0x3b,0xe7,0x73,0xf3,0xfe,0xe0, - 0xeb,0x1c,0x28,0xdd,0xa6,0x0e,0xfb,0xd7,0xc7,0x7b,0xd7,0x4f,0xdd,0xe1,0x95,0xba,0x77,0x78,0xdb,0x6b, - 0x36,0xac,0x07,0xad,0xf1,0x7a,0xfb,0xd4,0x39,0xe8,0x4f,0xe0,0x9e,0x39,0xb6,0x07,0xcd,0xc3,0xe3,0xd7, - 0xc3,0x31,0x26,0xc1,0x71,0xfc,0x32,0xb0,0x0e,0xa1,0x3d,0x6b,0xf4,0x58,0xf4,0xb4,0x8c,0xf6,0xe4,0x79, - 0xec,0x0f,0xcd,0x46,0x83,0x44,0xa2,0xbe,0x47,0x43,0xfc,0x1f,0xde,0xe6,0x06,0xcb,0x4f,0x1b,0x1f,0x58, - 0x64,0x93,0xbb,0xa7,0xfa,0x3e,0x95,0xcc,0x20,0x76,0x69,0xdc,0xbb,0x0b,0xd7,0x83,0x66,0xa7,0x49,0x66, - 0x54,0x30,0x0d,0x7f,0x67,0x56,0xe1,0x7d,0x62,0xf8,0x51,0xda,0x38,0x91,0x36,0xc8,0x4f,0xc6,0x86,0xdc, - 0xde,0xe0,0xb8,0xfb,0x89,0xf9,0x30,0x27,0xf3,0xca,0xf5,0x80,0xe7,0xbb,0xc9,0x79,0x42,0xa6,0x8f,0x05, - 0x95,0x60,0x5a,0x0a,0xf7,0x91,0xa5,0xd2,0x79,0x48,0xd3,0xe5,0x09,0x9d,0x39,0x5b,0xdc,0x98,0x03,0x8d, - 0xd9,0xdf,0xdb,0xc0,0xd9,0x86,0x16,0x90,0x0d,0xa8,0x12,0x86,0x1b,0x01,0x12,0x54,0x37,0x28,0x09,0x15, - 0xb9,0xf1,0x8d,0x4a,0x30,0x69,0x83,0xee,0x8b,0x10,0x8a,0x42,0x66,0xb9,0x63,0x23,0xcb,0xdb,0x8e,0xbd, - 0x22,0x11,0xc5,0xa2,0x76,0x92,0xf7,0x91,0x43,0x1a,0x5b,0x82,0x49,0x68,0x30,0xc3,0xc0,0xd9,0x51,0xe6, - 0x78,0x6b,0xef,0x35,0xe8,0xdd,0xa1,0x36,0x6b,0x89,0x18,0xf1,0x06,0x37,0x3f,0x14,0xf7,0xcf,0xe5,0x8a, - 0xa6,0xad,0xc2,0x54,0xff,0xf2,0x90,0x26,0xf0,0xd5,0xdb,0x14,0x98,0xa6,0xf3,0x1d,0xcf,0xba,0x24,0xf9, - 0xab,0xc8,0xd2,0x2a,0x21,0xd9,0xf0,0x3a,0x6c,0x3e,0xb8,0x8e,0x5a,0x0a,0xae,0x3b,0x61,0x9f,0x92,0x9e, - 0xe0,0x98,0xef,0x02,0x25,0x9a,0xf1,0xc9,0x8a,0x86,0x64,0xcc,0x93,0x7a,0x35,0x08,0xc1,0xd4,0x52,0x02, - 0x66,0x48,0xe3,0x0a,0x1e,0x90,0x69,0x44,0x81,0x50,0x24,0xfb,0x9e,0x97,0x5c,0x5f,0x36,0x00,0x71,0xf0, - 0x0c,0x92,0x80,0xe5,0x7f,0x4c,0x80,0x4c,0x60,0xa5,0x0d,0xee,0xd2,0x0d,0xba,0x9a,0xf0,0x15,0x83,0xac, - 0x71,0xb1,0x42,0x24,0x8f,0xba,0xc5,0xaf,0xb7,0x49,0x83,0x13,0x61,0xfa,0x80,0x37,0xb5,0xed,0x61,0xa4, - 0x69,0x64,0xea,0x14,0xb7,0x1e,0x69,0x44,0xed,0x87,0x77,0xbe,0x0f,0x83,0x38,0xf2,0x8a,0x39,0x08,0x3a, - 0x11,0x8b,0xf8,0xde,0xf7,0xe1,0xc1,0x13,0xc7,0x92,0x51,0xe0,0xf2,0x78,0x14,0xd8,0x75,0x4e,0xdb,0xe9, - 0x88,0xca,0x1d,0x6c,0x9a,0x05,0x0f,0xd2,0x03,0x2a,0x26,0xc3,0x03,0x06,0x71,0x76,0x8a,0x49,0x34,0xda, - 0xd2,0x09,0x93,0x55,0x2b,0x82,0x36,0x30,0x8c,0xb1,0x07,0x1d,0x77,0x82,0x7d,0x62,0x44,0x0b,0x11,0x3a, - 0xb7,0x48,0xd1,0x15,0x0a,0x48,0xa7,0x69,0x59,0xe0,0x11,0x39,0x9d,0x96,0x0c,0x48,0x60,0x57,0x02,0xba, - 0x0d,0x0c,0x77,0x29,0xf6,0x94,0x2a,0xe4,0x81,0x87,0xee,0x77,0x0d,0x52,0xf2,0xe0,0x54,0xa6,0x25,0x7e, - 0x73,0xc2,0xc2,0x29,0x02,0x4c,0x96,0x42,0x33,0x60,0xf8,0xbc,0x10,0xea,0x01,0x4f,0xdf,0x9e,0x1a,0xb6, - 0x8d,0x37,0x43,0xdd,0x5b,0x2a,0x94,0x76,0xa4,0xfd,0xcf,0x9f,0xa5,0x7f,0x49,0x7b,0xbb,0xbb,0xd4,0x65, - 0xff,0x0c,0x4b,0xa3,0x4c,0xeb,0x62,0x5d,0x84,0x2c,0xc7,0xf7,0x24,0x6f,0xe1,0x90,0x0e,0x63,0x60,0x91, - 0x62,0x4b,0x32,0x91,0x55,0xad,0xec,0x92,0x5f,0xf0,0x5a,0xad,0x10,0xc8,0x4a,0xd2,0x3a,0xea,0xfc,0xb6, - 0xe5,0x9b,0x32,0xc4,0x31,0xe5,0x5b,0xce,0x31,0x93,0x9b,0x72,0x7a,0xf9,0x2e,0xf6,0xdb,0x6c,0x6b,0x6a, - 0x13,0x90,0x4d,0x2a,0xfe,0x24,0x91,0xf4,0x0a,0x5f,0x3f,0x90,0x1f,0xc9,0x2d,0xeb,0x05,0xaa,0xb8,0x3d, - 0xfb,0xb1,0x2e,0x88,0x39,0xa4,0xfa,0x9f,0x9f,0xa7,0x0b,0x52,0x0e,0xb1,0x25,0xbe,0x30,0xa5,0x3f,0x5c, - 0x5f,0x36,0x91,0x17,0xd7,0xc9,0xa4,0xc2,0x37,0x16,0x13,0x64,0xc2,0x49,0xa0,0x9a,0x98,0x2d,0x71,0xfa, - 0xa1,0x1a,0xa9,0x39,0xa3,0xe8,0x50,0x79,0x8e,0xf8,0xca,0xb6,0x6d,0x40,0x60,0xd1,0x49,0x20,0xd8,0x84, - 0x6b,0x68,0x25,0x11,0xfb,0x09,0x95,0x96,0x15,0x2c,0x96,0xb4,0x7f,0x0c,0x53,0xec,0x4f,0x3e,0x5a,0xb2, - 0xca,0x00,0xd8,0x62,0x4b,0x53,0x10,0x00,0xd9,0x95,0x30,0x5a,0xc9,0xff,0xfa,0x4b,0xca,0x91,0xf2,0xa9, - 0x48,0xf7,0x12,0x07,0x39,0x89,0x97,0xb4,0xdb,0x21,0x5b,0x32,0x6c,0x41,0x4f,0x5c,0xd0,0x0d,0x20,0x43, - 0x43,0x62,0x01,0xc6,0x9c,0x43,0xc6,0xd7,0x45,0x14,0x8e,0x3a,0x33,0x1f,0x26,0xa9,0x13,0x80,0x31,0x9c, - 0x64,0xa8,0xf0,0xa1,0xaf,0xb0,0x9d,0x46,0x0e,0x76,0x26,0x44,0x92,0x3e,0xf2,0x52,0x4c,0x4e,0xf5,0xc3, - 0xb3,0x11,0xd4,0xa0,0xe1,0x92,0x61,0x3b,0x2c,0xf6,0x6d,0x74,0x65,0x40,0x4b,0xf3,0xf4,0x68,0xdf,0xc7, - 0xe7,0x50,0x20,0x15,0xa7,0x51,0xbe,0x79,0x14,0xd0,0x64,0x7a,0x40,0x43,0x5c,0x0d,0x78,0x68,0x9e,0x84, - 0x76,0xd1,0xa0,0x7c,0x4b,0x0e,0x27,0xb3,0xdb,0x8a,0xb6,0x52,0xcb,0xa3,0xac,0x44,0x7c,0x05,0x81,0x9d, - 0x17,0x66,0x62,0x02,0x00,0x6c,0x7d,0xe3,0x65,0x05,0xdf,0x3f,0xff,0x92,0xdd,0x55,0x12,0x0a,0xd0,0x83, - 0xc2,0x74,0xd9,0xe4,0xee,0xc8,0x1f,0xef,0x26,0xd3,0x16,0x56,0xab,0x4c,0xca,0x50,0x48,0x67,0x70,0x71, - 0x5e,0xe3,0xae,0xa0,0x5b,0x72,0x9a,0xad,0x08,0x9a,0xe2,0x15,0x0d,0x7e,0xe8,0xff,0x09,0x89,0xa0,0x4a, - 0x5c,0x51,0x1a,0x24,0x13,0x11,0x5b,0xdb,0x61,0x75,0x13,0x4b,0x23,0x34,0xfd,0xe4,0xd2,0x6d,0xa3,0x57, - 0xa8,0x0a,0x91,0xc9,0x8d,0xd2,0xc6,0x7b,0xf9,0xc6,0x63,0xdf,0xc2,0xc8,0x5d,0x6e,0xba,0x5f,0x68,0xea, - 0x46,0x73,0x2b,0xb4,0xdc,0xe1,0xdd,0x5d,0xd9,0xed,0x69,0x48,0x3a,0xdd,0xe9,0x64,0x8c,0x8b,0xee,0xa1, - 0x99,0x71,0x57,0x70,0xca,0x56,0x34,0x89,0x69,0x54,0x47,0x80,0x74,0xe1,0x0d,0x88,0x7b,0xe1,0x94,0x26, - 0xf5,0x73,0x13,0xb9,0x8e,0x01,0x58,0xca,0xdc,0xa4,0xf7,0x3f,0x49,0x6c,0x65,0x7e,0x1b,0x7b,0x0c,0x0d, - 0xc0,0xf2,0x75,0x7e,0x07,0xc8,0x9c,0x85,0x45,0x3c,0x45,0xd3,0xd2,0x54,0x69,0x81,0x52,0xc0,0x54,0x4c, - 0xa8,0x10,0x3e,0xab,0x60,0xe1,0xae,0x9e,0x7d,0xa6,0x6d,0x11,0xc5,0x25,0x93,0xaf,0xc7,0x14,0x12,0x93, - 0x6e,0x05,0xa4,0xe7,0x43,0x77,0x39,0xe6,0x84,0x6b,0xac,0x03,0x3a,0x87,0xaa,0xb5,0x0a,0xf6,0x2e,0xd4, - 0x59,0x8b,0xad,0xee,0xe3,0x55,0x74,0x03,0x95,0x75,0x60,0xa7,0x18,0x2d,0x07,0x6d,0x33,0x85,0x75,0x20, - 0x5d,0xb2,0xc6,0xe1,0xe5,0xa0,0xe3,0x40,0x65,0x2d,0x58,0x7f,0x45,0x04,0x8c,0xfd,0x4c,0x04,0xe4,0xd7, - 0x6f,0x25,0xea,0xb1,0xb0,0x51,0x99,0xfc,0xea,0x1e,0x19,0x2d,0xf7,0xc7,0xd5,0x65,0x59,0x2e,0x4b,0xea, - 0x33,0xb1,0x4a,0xa3,0x93,0x3a,0x3e,0x1e,0xa5,0x1b,0xfd,0xfc,0xb4,0xd8,0xb7,0x9b,0x44,0x56,0x70,0x86, - 0xc0,0xf7,0x5a,0xb4,0x49,0xfe,0x97,0x74,0x12,0x1e,0x3a,0x10,0xc6,0x64,0xa3,0x4c,0xcb,0xa1,0xf4,0xe2, - 0x05,0x54,0x55,0x58,0xb9,0xf2,0x1b,0xad,0xa9,0xe1,0xa9,0x05,0xc7,0x2d,0x5c,0x9a,0x62,0x02,0xa2,0x33, - 0x79,0x75,0x59,0xc9,0x63,0x13,0x26,0x28,0x7e,0x1d,0x9c,0x2e,0xb1,0xea,0xb3,0xce,0xa0,0xc6,0xec,0x3e, - 0x69,0xfc,0x24,0x2d,0xd9,0xf8,0x10,0x7b,0x96,0x16,0xb1,0x4b,0x4b,0xd9,0x9e,0xcd,0x2a,0x9f,0xa5,0xc5, - 0xac,0xc9,0x75,0xd6,0x2c,0x67,0xb9,0xd5,0x8a,0x82,0x83,0x2b,0x95,0x2c,0x69,0x53,0x88,0xeb,0x52,0x68, - 0xfa,0x98,0x78,0x4c,0x1c,0xd2,0x12,0x9c,0x32,0x46,0x09,0x92,0x42,0x51,0x1b,0x38,0x69,0x45,0x59,0x9b, - 0xa7,0x55,0xae,0xb0,0xcd,0xc5,0x2f,0x2e,0x6d,0x83,0xae,0xbf,0xa1,0xb8,0x8d,0x2c,0xdf,0x5a,0xde,0xa6, - 0x00,0xfe,0x56,0x05,0xae,0x29,0x86,0xfb,0x77,0x2c,0x71,0x13,0xd3,0xa8,0xb0,0xc8,0xe5,0xad,0x7f,0xdf, - 0x32,0x97,0x87,0xe0,0x09,0x1b,0x96,0x0d,0xde,0x00,0x3d,0x73,0x66,0x14,0xe8,0x11,0xf4,0xbf,0x1d,0x64, - 0xe5,0x9c,0x8f,0x71,0xcd,0x01,0x91,0xad,0x8c,0x3e,0x76,0x9c,0x52,0x0c,0x5d,0x98,0xe9,0x89,0xb4,0x0c, - 0x3f,0x15,0xe1,0xf4,0xf9,0x59,0xda,0x61,0x91,0x46,0x82,0x6b,0x50,0x2b,0x16,0xd3,0x13,0x90,0x0b,0x49, - 0x46,0x3a,0x99,0xaa,0x3f,0xa7,0x70,0x4f,0xd1,0xe9,0x0b,0x7f,0x03,0x63,0xdd,0x52,0x3e,0x05,0x36,0xb1, - 0x9d,0xa6,0x3d,0xb7,0x96,0xa2,0xe4,0x6c,0xb7,0x53,0x28,0x75,0x9b,0xac,0x00,0xe6,0x8d,0x53,0xb4,0x3b, - 0xf8,0x7f,0x11,0x51,0x5c,0x44,0x70,0x57,0xfe,0x2f,0xca,0x88,0x44,0x76,0x28,0x6a,0xf8,0xe7,0x28,0x25, - 0x96,0x9f,0x9f,0x25,0x0e,0xc3,0x97,0x95,0x1d,0x0d,0xf1,0x99,0x4e,0x5c,0x72,0x88,0x07,0xe7,0xe5,0xca, - 0x0d,0xc1,0x42,0x78,0xa4,0x94,0xcc,0xfe,0xf9,0x3a,0x85,0x69,0x5f,0xa7,0x00,0x39,0x8c,0x04,0xdb,0x0b, - 0x66,0x2f,0x3c,0xf4,0x5e,0xcd,0x2e,0x38,0x3c,0x2b,0x64,0x26,0x3c,0x84,0x5a,0x9b,0x99,0x60,0x9b,0x61, - 0x26,0x94,0x28,0xae,0x8b,0xd4,0x5c,0x73,0x72,0xbf,0x78,0x19,0xf0,0xe0,0xab,0xc7,0x4b,0x10,0x66,0x1f, - 0x1f,0xb8,0xa7,0x10,0x12,0xa1,0xf7,0x2e,0xa7,0xe7,0x09,0x2e,0x0e,0xe9,0xd0,0xdc,0xc6,0xb9,0x7c,0x42, - 0x59,0x31,0xa7,0xc8,0x9a,0xf1,0x8a,0xaf,0xf2,0xb8,0xc5,0xd2,0x95,0xfc,0x56,0x8f,0xa2,0xaa,0x2b,0xce, - 0x4a,0xa0,0xa2,0x21,0xa6,0xc6,0xf4,0x91,0x45,0x30,0x9a,0x74,0x7a,0x6c,0xd1,0x0c,0x89,0x6d,0x63,0xcd, - 0x01,0xa7,0x48,0x99,0x91,0x16,0xb3,0xaf,0x2f,0xf3,0xd4,0xef,0x26,0xbd,0x8e,0x9c,0x3c,0x34,0xe4,0x90, - 0x1c,0x85,0x49,0x6c,0x97,0x09,0x02,0xe4,0xe4,0xbb,0x19,0xad,0xf4,0x0b,0x3d,0x4d,0x4e,0xbb,0x32,0x19, - 0x9f,0xbe,0x6c,0x41,0xcf,0x04,0xee,0x73,0x6e,0x94,0x46,0xd2,0x52,0xb1,0x1a,0x63,0xe5,0x47,0xac,0x20, - 0xff,0x2f,0x69,0x6b,0xc0,0x83,0x73,0xb2,0xa7,0xcf,0xe1,0x1c,0x88,0xca,0x10,0x0e,0x51,0x72,0xd9,0x46, - 0xc2,0xb7,0x50,0xcd,0x9c,0xbf,0xeb,0xb6,0xeb,0xd1,0xd7,0xa8,0xf2,0x18,0x87,0xb2,0x55,0x94,0x4f,0x1c, - 0x03,0x28,0x50,0xb7,0x0d,0x95,0xae,0xcb,0x05,0x20,0x83,0x58,0x87,0xc6,0x3d,0xed,0x66,0xd4,0x76,0x6e, - 0x3f,0x63,0xe9,0xca,0xb9,0xfa,0x73,0x2c,0x88,0xd1,0x93,0xd9,0x82,0xc5,0xd0,0x77,0xe8,0x33,0xfd,0x36, - 0xc2,0xe6,0x1c,0x60,0x98,0x7c,0xf2,0xca,0x1f,0xe2,0x4e,0x03,0x59,0x7a,0xfb,0x2d,0x76,0x75,0x8a,0x0c, - 0xc8,0xdd,0x1b,0x6a,0xb7,0xe9,0x9d,0xbf,0x81,0x93,0x62,0xbf,0xf0,0x9e,0x0e,0xb0,0xad,0xd1,0x4c,0xc3, - 0x5e,0x9b,0x09,0x1e,0xd1,0x92,0xfe,0xa6,0x84,0xac,0xa4,0x14,0x9d,0x9c,0xf1,0x4a,0xf8,0xfa,0x43,0xc6, - 0x2d,0x85,0xd9,0x33,0x6d,0xb8,0x2c,0x7d,0xc6,0xbe,0x4a,0x3d,0xac,0x97,0xf8,0xcf,0x96,0x83,0x91,0x09, - 0xf0,0x22,0x5b,0xec,0x91,0xf8,0xc4,0x5e,0x23,0x7e,0x37,0xa3,0xb0,0xf9,0xd0,0x53,0xc9,0x27,0xf3,0x4b, - 0x2a,0xa6,0x31,0x03,0xc8,0x8b,0x10,0xcb,0x73,0xd2,0x5e,0xf8,0xe1,0x4f,0xfb,0xc4,0x97,0xfc,0x6c,0x8c, - 0xbe,0xd2,0x7d,0x80,0x91,0x4c,0x9b,0x84,0xf6,0x18,0xe2,0x99,0x50,0x10,0xc7,0xfd,0xe1,0x82,0x32,0x69, - 0x33,0x46,0x89,0x13,0x4a,0x1a,0xa7,0x92,0x53,0x44,0x2f,0x61,0xc5,0xfa,0x33,0xa3,0x82,0x0c,0xaf,0x50, - 0x54,0xee,0xc8,0x46,0xc4,0xca,0x63,0x17,0x37,0x54,0x9e,0x9f,0x01,0x32,0x21,0x4d,0x90,0xba,0xc0,0x2b, - 0xe3,0x2c,0x6a,0x9c,0x21,0xc2,0x10,0x7f,0x26,0x02,0xc2,0x5b,0x54,0x02,0x81,0xe0,0x5d,0xaa,0x55,0x04, - 0xf8,0x4c,0x48,0x11,0xa0,0x88,0x39,0xa7,0xec,0x05,0x45,0x94,0x61,0x87,0xef,0xe7,0x86,0xef,0x76,0x51, - 0xd9,0x56,0xf8,0xf0,0x30,0x4b,0x2d,0xd0,0x2f,0xc5,0x2f,0xc2,0x8e,0x48,0x46,0xb7,0xce,0xa4,0x70,0xd7, - 0x99,0xc9,0x3a,0x10,0x60,0x45,0xef,0x46,0xb6,0x62,0x36,0x67,0x22,0x92,0x00,0x22,0x69,0x31,0xc1,0x31, - 0xd3,0xcd,0xdd,0x84,0x66,0x92,0x8e,0x83,0x2c,0x77,0x49,0xd6,0x29,0x1a,0x3c,0x62,0xd6,0x6d,0x35,0x6b, - 0x83,0x34,0x8b,0xf0,0x7e,0xb9,0x89,0x15,0xa1,0x64,0xdf,0xfe,0x88,0xd9,0x6d,0x93,0xfe,0xd3,0x86,0xca, - 0x47,0x16,0x87,0x1d,0x4f,0x6a,0xf9,0xec,0x88,0x60,0x1d,0x7a,0x14,0x67,0x15,0x3f,0xd6,0xd6,0x5a,0x04, - 0x6b,0x03,0xbe,0x72,0xe4,0x50,0x0c,0x45,0xa5,0x49,0x46,0x58,0x4b,0x69,0x02,0x27,0x6c,0x71,0x2d,0xa2, - 0x83,0xbb,0x5e,0x13,0x93,0x4a,0x08,0x8f,0x9b,0x79,0xfe,0x14,0xc5,0xa5,0x09,0x27,0x30,0x97,0x92,0x76, - 0xe6,0x26,0x6b,0xf7,0x8d,0x94,0x1b,0xdd,0xa5,0x94,0x1b,0xdd,0x37,0x50,0x26,0x98,0x2b,0x29,0xd3,0x76, - 0xd7,0xa0,0x3c,0x37,0x6b,0x7c,0xe3,0x96,0x61,0x1b,0x49,0x4a,0x12,0x8d,0x91,0x0a,0x39,0x0a,0x8d,0xad, - 0x45,0xb1,0x8d,0xe1,0x8b,0x0f,0x2d,0x65,0x91,0x43,0x32,0x92,0x95,0xa6,0x19,0xa3,0x2d,0x21,0x2a,0x34, - 0x59,0x94,0xbf,0x4c,0xe0,0x64,0xf2,0x97,0xf8,0x34,0x87,0x88,0x6b,0x83,0xce,0x15,0xcc,0xb0,0x8e,0x25, - 0x65,0xf2,0xb9,0x80,0x53,0xc4,0x57,0x6c,0x4a,0x5a,0x59,0xbf,0xc6,0xda,0x7a,0xa9,0x02,0xf6,0x87,0xed, - 0x88,0xca,0xbe,0xbc,0xfc,0x6e,0xc5,0xcb,0xcb,0x79,0xef,0x2d,0x67,0xab,0x6e,0xdb,0x49,0x14,0xdd,0xef, - 0x0d,0xf0,0xe2,0xdb,0xbf,0x49,0xe1,0xfe,0x36,0x96,0x6d,0xcb,0x40,0x79,0xce,0x2f,0xbe,0x85,0x63,0x48, - 0x41,0x3f,0xe7,0xcd,0xd7,0x55,0x41,0x4f,0x4f,0xd6,0x1b,0xb6,0x2f,0x1e,0xdd,0x08,0x80,0x91,0xb4,0x5c, - 0xcc,0xc7,0x60,0x99,0x00,0xca,0x45,0xcd,0xd9,0x7a,0x89,0x7a,0x73,0xf4,0x15,0x60,0x95,0xbe,0xf0,0x29, - 0x9d,0x55,0xa5,0xbd,0xca,0x19,0x35,0x94,0xf6,0x97,0x9d,0x32,0xaf,0xbb,0x07,0xb2,0x48,0xf4,0x0b,0xa3, - 0x31,0x66,0xcf,0x19,0xb8,0x23,0x74,0xe0,0xf6,0xb3,0xd2,0xcd,0x0f,0xec,0xd3,0x04,0x81,0x25,0x85,0x08, - 0x06,0x89,0x7e,0xa7,0x20,0x8a,0x12,0xa1,0x97,0x1c,0xc0,0xec,0x97,0x03,0xf4,0x39,0xda,0x14,0xbd,0x16, - 0x3f,0x4a,0x0b,0x3e,0xcd,0x10,0x4e,0x42,0x9c,0x05,0x7b,0xb6,0xc0,0xb1,0x65,0x2c,0x7e,0xf3,0x11,0xfc, - 0xa6,0x3f,0xf9,0x08,0xf7,0xdc,0xb7,0x5c,0xcc,0xbe,0xfc,0x48,0x9b,0x44,0x5f,0x7c,0x64,0x9e,0x4f,0x04, - 0x1f,0x9a,0x19,0xc0,0xd2,0x7c,0xa0,0x91,0xc1,0x7f,0x02,0x33,0xc0,0x6f,0xd2,0xc1,0x21,0xdb,0xc9,0x9a, - 0x43,0x3c,0x24,0x7c,0x78,0xc6,0x3f,0x39,0xdb,0x61,0x5f,0xda,0xfd,0x07,0x28,0x74,0xc5,0xb2,0x7f,0x37, - 0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0xe9,0x57,0xe3,0x38,0x12,0xff,0x57,0xdc, + 0x99,0xdd,0x81,0xde,0x1e,0x8e,0x40,0x9a,0x69,0x18,0x60,0x27,0x27,0x04,0x48,0x08,0x49,0x38,0xbf,0xec, + 0x53,0x6c,0xc5,0x16,0xf8,0x42,0xb6,0x13,0xd2,0x33,0xfd,0xbf,0xaf,0x0e,0x1f,0xb2,0x2d,0x27,0x0e,0xdb, + 0xfb,0x7a,0xe7,0xbd,0xed,0x0f,0x1d,0xac,0x3a,0xf4,0x53,0xa9,0xaa,0x54,0x92,0xec,0xe3,0x0f,0xad,0xeb, + 0xe6,0xf8,0x71,0xd0,0x56,0x0c,0xdf,0x32,0x4f,0x8f,0xc3,0xff,0x21,0xd0,0x4e,0x8f,0x2d,0xe8,0x03,0x45, + 0x35,0x00,0xf6,0xa0,0x7f,0x52,0xb9,0x1d,0x77,0xb6,0xbe,0x54,0x4e,0x8f,0x7d,0xe4,0x9b,0xf0,0xf4,0x78, + 0x27,0xfc,0x65,0x4c,0x36,0xb0,0xe0,0x49,0xc5,0x37,0xa0,0x05,0xb7,0x54,0xc7,0x74,0x70,0x45,0x51,0x1d, + 0xdb,0x87,0x36,0x91,0xfb,0x69,0x97,0xfd,0xab,0xa4,0x58,0x67,0x08,0xce,0x5d,0x07,0xfb,0x02,0xdf,0x1c, + 0x69,0xbe,0x71,0xa2,0xc1,0x19,0x52,0xe1,0x16,0x7b,0xf8,0x05,0xd9,0xc8,0x47,0xc0,0xdc,0xf2,0x54,0x60, + 0xc2,0x93,0x2a,0x51,0x61,0x22,0xfb,0x45,0xc1,0xd0,0x3c,0xa9,0x78,0xfe,0xc2,0x84,0x9e,0x01,0x21,0xd1, + 0x61,0x60,0x38,0x3d,0xa9,0x4c,0x02,0x5b,0x33,0xe1,0xb6,0xea,0x79,0x84,0xd1,0x53,0x31,0x72,0x7d,0xc5, + 0xc3,0x6a,0x4c,0x78,0xa6,0xed,0x3b,0x9c,0x40,0xfe,0xe0,0x63,0x9c,0x38,0xda,0xe2,0xf4,0x58,0x43,0x33, + 0x05,0x69,0x27,0x15,0xe0,0xba,0x15,0xfe,0x34,0xdb,0x52,0x4d,0x07,0xbc,0xf0,0x07,0xd5,0x04,0x9e,0x77, + 0x52,0xb1,0x1d,0x1f,0x4d,0x91,0x0a,0x7c,0xe4,0xd8,0x4d,0x02,0x1b,0x20,0x1b,0xe2,0x4a,0x21,0x4b,0x45, + 0x39,0x0a,0x5b,0xff,0x50,0x20,0xc6,0x0e,0x3e,0x52,0x44,0xb2,0xf2,0xe1,0x44,0xb1,0x03,0xd3,0x54,0x7e, + 0xfe,0x39,0xd5,0xbe,0xcd,0x78,0x95,0x6f,0x15,0x82,0x01,0x4d,0xd3,0x2a,0x23,0x99,0x8a,0xf2,0xbb,0x6a, + 0x22,0xf5,0x65,0xdb,0xc5,0x70,0xc6,0xac,0x67,0x20,0x0d,0xf6,0xc5,0xce,0x89,0x09,0x5c,0x60,0x47,0xb8, + 0x2c,0xe8,0x79,0x40,0x87,0x95,0xd3,0x3f,0xfe,0x48,0x77,0x16,0x12,0x94,0x6f,0xdf,0x88,0x69,0x88,0x00, + 0x31,0x0c,0x19,0x4e,0xf4,0x7f,0x64,0x17,0x55,0x3e,0x5a,0x6a,0x42,0xd6,0x86,0x2c,0x9d,0x9b,0x5a,0x03, + 0x3e,0x38,0x42,0x16,0xd1,0xb8,0xe3,0xda,0xfa,0x6f,0x13,0xe0,0xc1,0x83,0xda,0x2f,0xe8,0xae,0x71,0x3d, + 0x9c,0xef,0x5e,0x9e,0xe9,0x4e,0x9d,0xfc,0xeb,0x8f,0x6e,0x8d,0xf6,0xad,0x4e,0xfe,0x6a,0xd1,0xc7,0xfa, + 0xbc,0x59,0x7f,0x24,0x3f,0x8d,0x87,0xfa,0xcc,0x3a,0xa7,0x0d,0x67,0x0f,0xc3,0xce,0xfd,0xf9,0x70,0x3c, + 0xd9,0x7b,0xda,0xd5,0xf6,0x3a,0x8b,0xa7,0x9b,0x46,0xe3,0xe9,0xec,0x10,0x3d,0x8d,0x1a,0x17,0x93,0xfb, + 0x8e,0xfd,0x74,0x77,0x61,0x3e,0xde,0x0f,0x3f,0xab,0xaa,0x69,0x0e,0xa8,0xc0,0x43,0xe3,0x62,0xd8,0xee, + 0xdc,0xc2,0x3e,0xf6,0xee,0xb5,0x76,0x5f,0x7f,0xae,0xdf,0x5c,0xa9,0x8f,0x0d,0xb5,0x3e,0x50,0xeb,0x4d, + 0xed,0xa6,0x5f,0xab,0xf7,0xf7,0x7a,0xcd,0x9a,0x3e,0xf4,0x1e,0x2f,0x0e,0xdb,0x7d,0xad,0x3e,0x78,0xac, + 0xb7,0x40,0xbd,0x05,0x5d,0xed,0xd6,0xe8,0x55,0x5f,0x3b,0xcf,0x01,0xd6,0xdd,0xc3,0x91,0xda,0x3b,0xd7, + 0xb5,0x5f,0xab,0xfb,0x77,0xfb,0x53,0xff,0xd6,0xfd,0x0c,0xcf,0xf5,0x5e,0xa7,0x8a,0xf1,0x59,0x1b,0x04, + 0x07,0x77,0xe7,0xad,0xbd,0xf3,0xde,0xe4,0xfc,0xf3,0xeb,0xc5,0xf5,0xd5,0x39,0x06,0x9f,0xa6,0x2f,0x5f, + 0x27,0xde,0xe3,0xd0,0x33,0x7a,0x5f,0xdc,0xab,0xb1,0x7e,0xdb,0xd5,0x47,0xfa,0x2c,0xe8,0xf5,0x9c,0xc7, + 0xf9,0x27,0xd4,0x7b,0x1c,0xe3,0x83,0x1b,0xa3,0xff,0xd8,0xc3,0x7d,0xd4,0x5f,0xcc,0xbb,0x57,0xe6,0xe2, + 0xee,0x52,0x53,0x17,0x8b,0x81,0x67,0xa9,0x43,0x6f,0x71,0xfb,0x79,0xf7,0x45,0x3f,0xf7,0x6f,0x6e,0x82, + 0xbd,0xba,0xd6,0xbf,0xe8,0xb8,0xad,0x97,0xfa,0x65,0xad,0xbb,0x73,0xd5,0xbd,0xef,0x4d,0xf6,0xea,0x5e, + 0xb7,0xa1,0xbe,0xee,0xa2,0xe1,0x19,0xbc,0x39,0x1b,0x8c,0x9f,0xa6,0x77,0x07,0x37,0xed,0xdd,0x4f,0x7a, + 0xeb,0xac,0xb3,0x87,0x1d,0xef,0xac,0xad,0xf7,0x6e,0xde,0xba,0x75,0xc3,0x7e,0xaa,0xa3,0x41,0xff,0x4b, + 0x2d,0x70,0x87,0xd3,0xdd,0x9d,0x6b,0xd3,0xf5,0xae,0x9a,0x0d,0x77,0x7f,0xf1,0xba,0xab,0x1a,0xba,0xdf, + 0xbc,0xbd,0x7d,0xc2,0xc3,0xf9,0xc1,0x4d,0xeb,0x7a,0xbf,0x7d,0x7f,0x3e,0x7a,0xed,0x1c,0xfa,0x00,0x3f, + 0x81,0xd1,0xe5,0xc5,0x03,0xbc,0x68,0x69,0x93,0x1b,0xd3,0x6b,0xef,0x5e,0xb6,0x0e,0x2e,0xfa,0x3b,0x97, + 0xce,0xd0,0x3b,0x33,0xde,0x1e,0x2e,0x9b,0x66,0xf3,0xf2,0xfc,0xa2,0x3b,0x7d,0x19,0x1b,0xf3,0xde,0xbd, + 0x51,0x3f,0xd0,0x1a,0x23,0xc7,0x1c,0xa2,0xe7,0x97,0x8b,0x6b,0xad,0xfa,0x74,0x3b,0x3b,0x5c,0xdc,0x1c, + 0x5e,0xbb,0xaf,0x93,0x73,0x17,0x81,0xdb,0x3b,0xd0,0x9e,0x3c,0xb5,0x7f,0xf5,0xbb,0xdd,0x67,0xa7,0x71, + 0xf9,0xb0,0xf0,0x1c,0xaf,0xaa,0xd6,0xee,0xbe,0xc0,0xc9,0x55,0x5b,0x9b,0xcc,0xf6,0x26,0x6a,0xcf,0x6b, + 0xff,0xaa,0x3f,0x07,0x0d,0x6d,0xf6,0x30,0x1c,0x5d,0xd4,0x3a,0x9f,0x76,0xe6,0xaf,0xdd,0x87,0x07,0xdc, + 0x3d,0x9b,0x5b,0x0f,0xfb,0x5f,0xe7,0x40,0xbd,0x6a,0x19,0xb0,0x7f,0x7d,0x58,0xbd,0x7e,0xbe,0xba,0xb9, + 0xd4,0xaa,0xb5,0xbb,0x5e,0xab,0x69,0x3f,0xea,0xcd,0xb7,0xbb,0xe7,0xee,0x7e,0x7f,0x0c,0xab,0xd6,0xc8, + 0x19,0xb4,0x6a,0x87,0x6f,0xb5,0x11,0x26,0xce,0x71,0xf8,0x3a,0xb0,0x6b,0xd0,0x99,0x35,0x7b,0xcc,0x7b, + 0xda,0x66,0x67,0xfc,0x32,0x0a,0x6e,0xac,0x66,0x93,0x78,0xa2,0x51,0xa5,0x2e,0xfe,0x37,0x7f,0x73,0x83, + 0xe5,0xa7,0x8d,0x8f,0xcc,0xb3,0x49,0xeb,0xb1,0xb1,0x47,0x29,0x33,0x88,0x3d,0xea,0xf7,0xde,0xc2,0xf3, + 0xa1,0xd5,0x6d,0x91,0x88,0x0a,0xc3,0xf0,0x9f,0x4c,0x2a,0x6a,0x27,0x82,0x9f,0x94,0x8d,0x23,0x65,0x83, + 0xfc,0xe4,0x64,0x48,0xf3,0x06,0xd7,0xbb,0x97,0x8a,0x87,0x39,0x89,0x2b,0xcf,0x07,0x7e,0xe0,0xa5,0xe3, + 0x84,0x84,0x8f,0x0d,0xd5,0x30,0x2c,0x85,0x76,0x64,0x6b,0x34,0x0e,0x69,0xba,0x3c,0xa2,0x91,0xb3,0xc5, + 0x85,0xb9,0xa2,0x11,0xfb,0x7b,0x1b,0xb8,0xdb,0xd0,0x06,0x13,0x13,0x6a,0x04,0xe1,0x46,0xa8,0x09,0x6a, + 0x1b,0x14,0x84,0x86,0xbc,0xa4,0xa1,0x12,0x06,0x6d,0x38,0x7c,0x51,0x85,0xaa,0x92,0x28,0x77,0x1d,0x64, + 0xfb,0xdb,0x89,0x55,0x14,0xc2,0x58,0xd4,0x4f,0xba,0x1d,0xb9,0xa4,0xb3,0x25,0x3a,0x09,0x0c,0x26,0x18, + 0x1a,0x3b,0xce,0x1c,0xef,0x1d,0xbd,0x0e,0xfd,0x7b,0xd4,0x61,0x3d,0x11,0x21,0xde,0xe1,0xe6,0xc7,0xe2, + 0xf1,0x79,0x9c,0xd1,0x72,0x34,0x98,0x19,0x9f,0x4c,0xd3,0x18,0xbe,0xf9,0x9b,0x02,0xd2,0x6c,0xbe,0xe3, + 0x59,0x97,0x24,0x7f,0x0d,0xd9,0x7a,0x25,0x02,0x1b,0x3d,0x47,0xdd,0x87,0xcf,0x71,0x4f,0xe1,0x73,0x37, + 0x1a,0x53,0xda,0x12,0x5c,0xe7,0x87,0x90,0x89,0x66,0x7c,0xb2,0xa2,0xa1,0x09,0xe6,0x49,0xfd,0x24,0x74, + 0xc1,0xcc,0x52,0x02,0x66,0x48,0xe7,0x0c,0x3e,0x98,0x50,0x8f,0x02,0x11,0x69,0x12,0xf8,0x7e,0x7a,0x7d, + 0xd9,0x00,0xc4,0xc0,0x33,0x48,0x1c,0x96,0xff,0x31,0x06,0x13,0xa2,0x56,0xd9,0xe0,0x26,0xdd,0xa0,0xab, + 0x09,0x5f,0x31,0xc8,0x1a,0x97,0x30,0xc4,0xf4,0x78,0x58,0xfc,0x79,0x9b,0x74,0x38,0x16,0xc2,0x07,0xbc, + 0xab,0x6f,0x1f,0x23,0x5d,0x27,0xa1,0x53,0xdc,0x7b,0xcc,0x11,0xf7,0x1f,0xb5,0x7c,0x1f,0x04,0x89,0xe7, + 0x15,0x63,0x10,0x78,0x62,0x14,0x49,0xdb,0xf7,0xc1,0xc1,0x13,0xc7,0x92,0x59,0xe0,0xf4,0x64,0x16,0xd8, + 0xb3,0xa4,0xef,0xac,0x47,0x49,0x27,0x9b,0x66,0xc1,0xfd,0xec,0x84,0x8a,0xc9,0x70,0x9f,0xa9,0x38,0x3d, + 0xc6,0xc4,0x1b,0x1d,0xe5,0x88,0xd1,0x4e,0x2a,0x02,0x37,0x30,0xcd,0x91,0x0f,0x5d,0x6f,0x8c,0x03,0x22, + 0x44,0x0b,0x11,0x1a,0x5b,0xa4,0xe8,0x8a,0x08,0x64,0xd0,0xb4,0x2c,0xf0,0x09,0x9d,0x86,0x25,0x53,0x24, + 0xa0,0x2b,0xa1,0xba,0x03,0x4c,0x6f,0xa9,0xee,0x29,0x65,0x90,0x29,0x8f,0xcc,0xef,0x99,0xa4,0xe4,0xc1, + 0x99,0x4c,0x4b,0xec,0xe6,0x46,0x85,0x53,0xac,0x30,0x5d,0x0a,0xcd,0x80,0x19,0xf0,0x42,0xa8,0x07,0x7c, + 0x63,0x7b,0x6a,0x3a,0x0e,0xde,0x8c,0x78,0xef,0x28,0x51,0xd9,0x51,0xf6,0x3e,0x7f,0x56,0xfe,0xa1,0x54, + 0x77,0x77,0xa9,0xc9,0xfe,0x1e,0x95,0x46,0xb9,0xde,0xc5,0xba,0x08,0xd9,0x6e,0xe0,0x2b,0xfe,0xc2,0x25, + 0x03,0xc6,0xc0,0x26,0xc5,0x96,0x62,0x21,0xfb,0xa4,0xb2,0x4b,0x7e,0xc1,0xdb,0x49,0x85,0xa8,0xac,0xa4, + 0xa5,0xe3,0xc1,0x6f,0xdb,0x81,0x35,0x81,0x38,0x81,0x7c,0xc7,0x31,0xe6,0x72,0x93,0x64,0x94,0x1f,0x12, + 0xbb,0xcd,0xb6,0xa6,0x0e,0x51,0xb2,0x49,0xc9,0xbf,0x28,0x24,0xbd,0xc2,0xb7,0x8f,0xe4,0x47,0xf1,0xca, + 0x5a,0x81,0x32,0x6e,0xcf,0x7e,0xac,0x09,0x12,0x0c,0x99,0xf1,0xcb,0xf3,0x74,0x41,0xca,0x21,0xb2,0xc4, + 0x16,0x96,0xf2,0xbb,0x17,0x4c,0x2c,0xe4,0x27,0x75,0x32,0xa9,0xf0,0xcd,0xc5,0x18,0x59,0x70,0x1c,0xb2, + 0xa6,0xa2,0x25,0x49,0x3f,0x94,0x23,0x13,0x33,0xaa,0x01,0xd5,0x97,0x18,0xef,0xc4,0x71,0x4c,0x08,0x6c, + 0x1a,0x04,0x82,0x4c,0xb4,0x86,0x56,0x52,0xbe,0x9f,0x62,0x69,0xdb,0xe1,0x62,0x49,0xc7,0xc7,0x74,0x8a, + 0xe3,0x91,0x6b,0x4b,0x57,0x19,0x00,0xdb,0x6c,0x69,0x0a,0x1d,0x20,0xbf,0x12,0xc6,0x2b,0xf9,0x9f,0x7f, + 0x2a,0x12,0x2a,0x0f,0x45,0xba,0x97,0xd8,0x97,0x24,0x5e,0xd2,0x6f,0x97,0x6c,0xc9,0xb0,0x0d,0x7d,0x71, + 0x41,0x37,0xc1,0x04,0x9a,0x0a,0x73,0x30,0x66,0x1c,0x32,0xbf,0x1e,0xa2,0xea,0xa8,0x31,0xe5,0x6a,0xd2, + 0x3c,0xa1,0x32,0xa6,0x27,0xed,0x2a,0x7c,0xea,0x2b,0x6c,0xa7,0x21,0xd1,0x9d,0x73,0x91,0xb4,0x8d,0xfc, + 0x0c,0x92,0x63,0xa3,0x76,0x3a,0x84,0x3a,0x34,0x3d,0x32,0x6d,0xb5,0x62,0xdb,0xc6,0x4f,0x26,0xb4,0x75, + 0xdf,0x88,0xf7,0x7d,0x3c,0x86,0x42,0xaa,0x18,0x46,0x72,0xf1,0xd8,0xa1,0x49,0x78,0x40,0x53,0x5c,0x0d, + 0xb8,0x6b,0x1e,0x45,0x72,0xf1,0xa4,0x7c,0x4b,0x4f,0x27,0x93,0xdb,0x8a,0xb7,0x52,0xcb,0xbd,0xac,0x84, + 0x7f,0x85,0x8e,0x2d,0x73,0x33,0x31,0x01,0x00,0xb6,0xbe,0xf1,0xb2,0x82,0xef,0x9f,0x7f,0xca,0xef,0x2a, + 0x09,0x04,0xe8,0x43,0x21,0x5c,0x36,0xb9,0x39,0xe4,0xf3,0xdd,0x62,0xdc,0xc2,0x6a,0x95,0x4b,0x19,0x2a, + 0x19,0x0c,0x2e,0xce,0x6b,0xdc,0x14,0x74,0x4b,0x4e,0xb3,0x15,0xd1,0xa6,0xfa,0x45,0x93,0x1f,0xd9,0x7f, + 0x4c,0x3c,0xa8,0x92,0x54,0x94,0x26,0xc9,0x44,0x44,0xd6,0x71,0x59,0xdd,0xc4,0xd2,0x08,0x4d,0x3f,0x52, + 0xb8,0x1d,0xf4,0x06,0x35,0xc1,0x33,0xb9,0x50,0x56,0xb8,0x2a,0x17,0x1e,0x05,0x36,0x46,0xde,0x72,0xd1, + 0xbd,0x42,0x51,0x2f,0x8e,0xad,0x48,0x72,0x87,0x0f,0x77,0xe5,0xb0,0xa7,0x11,0xe8,0xec,0xa0,0xd3,0x3e, + 0x2e,0x9a,0x87,0x66,0xc6,0x5d,0xc1,0x28,0x5b,0x71,0x10,0x53,0xaf,0x8e,0x15,0xd2,0x85,0x37,0x04,0xee, + 0x47,0x21,0x4d,0xea,0xe7,0x16,0xf2,0x5c,0x13,0xb0,0x94,0xb9,0x49,0xdb,0x7f,0x51,0xd8,0xca,0xfc,0x3e, + 0xf4,0x18,0x9a,0x80,0xe5,0x6b,0xf9,0x00,0x48,0xcc,0xc2,0x22,0x9c,0xa2,0x68,0x69,0xa8,0xb4,0x40,0x29, + 0x40,0x2a,0x26,0x54,0x08,0x5f,0x34,0xb0,0xf0,0x56,0x47,0x9f,0xe5,0xd8,0x84,0x71,0x49,0xf0,0xf5,0x18, + 0x43,0x2a,0xe8,0x56,0xa8,0xf4,0x03,0xe8,0x2d,0xd7,0x39,0xe6,0x1c,0xeb,0x28,0x9d,0x43,0xcd,0x5e,0xa5, + 0xf6,0x3e,0xe2,0x59,0x0b,0xad,0x11,0xe0,0x55,0x70,0x43,0x96,0x75,0xd4,0x4e,0x31,0x5a,0xae,0xb4,0xc3, + 0x18,0xd6,0x51,0xe9,0x91,0x35,0x0e,0x2f,0x57,0x3a,0x0a,0x59,0xd6,0x52,0x1b,0xac,0xf0,0x80,0x51,0x90, + 0xf3,0x00,0x79,0xfd,0x56,0xa2,0x1e,0x8b,0x3a,0x9d,0x90,0x5f,0xc3,0x27,0xb3,0xe5,0xfd,0xb8,0xba,0x2c, + 0x8f,0x65,0x49,0x7d,0x26,0x56,0x69,0x34,0xa8,0x93,0xe3,0x51,0xba,0xd1,0x97,0xa7,0xc5,0xbe,0xd3,0x22, + 0xb4,0x82,0x33,0x04,0xbe,0xd7,0xa2,0x5d,0xf2,0xbf,0x94,0xa3,0xe8,0xd0,0x81,0x20,0x26,0x1b,0x65,0x5a, + 0x0e,0x65,0x17,0x2f,0xa0,0x69,0xc2,0xca,0x25,0xef,0xb4,0xae,0x45,0xa7,0x16,0x5c,0x6f,0xe1,0xd2,0x94, + 0x00,0x10,0x8d,0xc9,0xab,0xcb,0x8a,0x0c,0x4d,0x94,0xa0,0xf8,0x73,0x78,0xba,0xc4,0xaa,0xcf,0x06,0x53, + 0x35,0x62,0xed,0xa4,0xf3,0xa3,0x2c,0x65,0xe3,0x63,0x62,0x59,0x5a,0xc4,0x2e,0x2d,0x65,0x7b,0x0e,0xab, + 0x7c,0x96,0x16,0xb3,0x16,0xe7,0x59,0xb3,0x9c,0xe5,0x52,0x2b,0x0a,0x0e,0xce,0x54,0xb2,0xa4,0xcd,0x68, + 0x5c,0x17,0x42,0x2b,0xc0,0xc4,0x62,0xe2,0x94,0x96,0xc0,0x94,0x13,0x4a,0x81,0x14,0x8a,0xda,0xd0,0x48, + 0x2b,0xca,0x5a,0x19,0x57,0xb9,0xc2,0x56,0xaa,0xbf,0xb8,0xb4,0x0d,0x87,0xfe,0x8e,0xe2,0x36,0x96,0x7c, + 0x6f,0x79,0x9b,0x51,0xf0,0x3f,0x55,0xe0,0x5a,0xa2,0xbb,0x7f,0xc7,0x12,0x37,0x15,0x46,0x85,0x45,0x2e, + 0xef,0xfd,0xfb,0x96,0xb9,0xdc,0x05,0x8f,0xd8,0xb4,0x6c,0xf0,0x0e,0xe8,0x99,0x33,0x83,0x40,0x8f,0xa0, + 0xff,0xe5,0x22,0x5b,0x72,0x3e,0xc6,0x39,0x07,0x84,0xb6,0xd2,0xfb,0xd8,0x71,0x4a,0xb1,0xea,0xc2,0x4c, + 0x4f,0xa8,0x65,0xf0,0x69,0x08,0x67,0xcf,0xcf,0xb2,0x06,0x8b,0x39,0x52,0x58,0xc3,0x5a,0xb1,0x18,0x9e, + 0xa0,0xb9,0x10,0x64,0xcc,0x93,0xab,0xfa,0x25,0x85,0x7b,0x06,0x4e,0x5f,0xf8,0x1b,0x98,0xeb,0x96,0xf2, + 0x19,0x65,0x63,0xc7,0x6d,0x39,0x73,0x7b,0xa9,0x16,0xc9,0x76,0x3b,0xa3,0xa5,0xe1,0x90,0x15,0xc0,0xba, + 0x75,0x8b,0x76,0x07,0xff,0x2f,0x22,0x8a,0x8b,0x08,0x6e,0xca,0xff,0x46,0x19,0x91,0xca,0x0e,0x45,0x1d, + 0xff,0x35,0x4a,0x89,0xe5,0xe7,0x67,0xa9,0xc3,0xf0,0x65,0x65,0x47,0x53,0xbc,0xd3,0x49,0x4a,0x0e,0xf1, + 0xe0,0xbc,0x5c,0xb9,0x21,0x48,0x08,0x57,0x4a,0xe9,0xec,0x2f,0xe7,0x29,0x4c,0xfb,0x06,0x55,0x20,0x41, + 0x24,0xc8,0x9e,0x33,0x79,0xe1,0xd2,0x7b,0x35,0xba,0xf0,0xf0,0xac,0x10,0x99,0x70,0x09,0xb5,0x36,0x32, + 0x41,0x36,0x87,0x4c,0x28,0x51,0x3c,0x0f,0x69,0x52,0x71,0xd2,0x5e,0xbc,0x0c,0xf8,0xf0,0xcd,0xe7,0x25, + 0x08,0x93,0x4f,0x0e,0xdc,0x33,0x1a,0x52,0xae,0xf7,0x41,0x32,0xf2,0x14,0x16,0x97,0x0c,0x68,0xee,0x60, + 0x29,0x9e,0x88,0x56,0x8c,0x29,0x96,0x66,0xb8,0x92,0x27,0x19,0xb6,0x84,0xba,0x12,0xdf,0xea,0x59,0xd4, + 0x0c,0xd5,0x5d,0xa9,0xa8,0x68,0x8a,0xa9,0x30,0xbd,0xb2,0x08,0x67,0x93,0x86,0xc7,0x16,0xcd,0x90,0xd8, + 0x31,0xd7,0x9c,0x70,0xaa,0x29,0x37,0xd3,0x62,0xf6,0x0d,0x26,0x3c,0xf5,0x7b,0x69,0xab,0x23,0x57,0xa6, + 0x0d,0xb9,0x24,0x47,0x61,0xe2,0xdb,0x65,0x9c,0x00,0xb9,0x72,0x33,0xa3,0x95,0x76,0xa1,0xa7,0xc9,0x59, + 0x53,0xa6,0xfd,0x33,0x98,0xd8,0xd0,0xb7,0x80,0xf7,0x22,0xf5,0xd2,0x98,0x5a,0xca,0x57,0x13,0x5d,0x72, + 0x8f,0x15,0xe8,0xff,0x21,0x6c,0x1d,0xf8,0x70,0x4e,0xf6,0xf4,0x12,0xcc,0x21,0xa9,0x0c,0xe0,0x48,0x8b, + 0x14,0x6d,0x4c,0x7c,0x0f,0xd4,0xdc,0xf9,0xbb,0xe1,0x78,0x3e,0x7d,0x8d,0x4a,0x86,0x38,0xa2,0xad,0x82, + 0x7c,0xe4,0x9a,0x40,0x85,0x86,0x63,0x6a,0x74,0x5d,0x2e,0x50,0x32,0x48,0x78,0xa8,0xdf,0xd3,0x61,0xc6, + 0x7d,0x4b,0xc7,0x99,0x50,0x57,0xc6,0xea,0x5f,0x63,0x41,0x8c,0x6f,0x66,0x0b,0x16,0xc3,0xc0,0xa5,0x77, + 0xfa,0x1d,0x84,0xad,0x39,0xc0,0x30,0x7d,0xf3,0xca,0x2f,0x71,0xa7,0x21,0x2d,0xbb,0xfd,0x16,0x87,0x3a, + 0x45,0x26,0xe4,0xe6,0x8d,0xb8,0x3b,0xb4,0xe5,0x7f,0xc0,0x48,0x89,0x5d,0xf8,0x48,0x07,0xd8,0xd1,0x69, + 0xa6,0x61,0xaf,0xcd,0x84,0x57,0xb4,0x64,0xbc,0x19,0x22,0x2b,0x29,0x45,0x23,0xe7,0xac,0x12,0xbd,0xfe, + 0x90,0x33,0x4b,0x61,0xf6,0xcc,0x0a,0x2e,0x4b,0x9f,0x89,0xad,0x32,0x97,0xf5,0x0a,0xff,0xd9,0x72,0x31, + 0xb2,0x00,0x5e,0xe4,0x8b,0x3d,0xe2,0x9f,0xd8,0x6f,0x26,0xef,0x66,0x14,0x76,0x1f,0x59,0x2a,0x7d,0x33, + 0xbf,0xa4,0x62,0x1a,0x31,0x05,0x32,0x0f,0xb1,0x7d,0x37,0x6b,0x85,0x1f,0x7e,0xdb,0x27,0xbe,0xe4,0xe7, + 0x60,0xf4,0x95,0xee,0x03,0xcc,0x74,0xda,0x24,0xb0,0x47,0x10,0xcf,0x84,0x82,0x38,0x19,0x0f,0x27,0x94, + 0x49,0x9b,0x89,0x96,0x24,0xa1,0x64,0xf5,0x54,0x24,0x45,0xf4,0x12,0x54,0x6c,0x3c,0x33,0x4a,0xc8,0xe1, + 0x8a,0x48,0xe5,0x8e,0x6c,0x44,0x5d,0x32,0x74,0x49,0x47,0xe5,0xf1,0x99,0x20,0xe7,0xd2,0x44,0xd3,0x15, + 0xf0,0xcb,0x18,0x8b,0x0a,0xe7,0x80,0x30,0x8d,0x7f,0x25,0x00,0xc2,0x5b,0x54,0x02,0x80,0xf0,0x5d,0xaa, + 0x55,0x00,0x78,0x24,0x64,0x00,0x50,0x8d,0x92,0x53,0xf6,0x82,0x22,0xca,0x74,0xa2,0xf7,0x73,0xa3,0x77, + 0xbb,0x28,0x6d,0x2b,0xba,0x3c,0xcc,0x43,0x0b,0xf9,0x4b,0xe1,0x8b,0x75,0xc7,0x20,0xe3,0xa6,0x53,0x25, + 0xda,0x75,0xe6,0xb2,0x0e,0x04,0x58,0x35,0xae,0x62,0x59,0x31,0x9b,0x33,0x12,0x49,0x00,0x31,0xb5,0x18, + 0xe0,0x88,0xf1,0x4a,0x37,0xa1,0xb9,0xa4,0xe3,0x22,0xdb,0x5b,0x92,0x75,0x8a,0x26,0x8f,0x88,0x5d,0xb5, + 0x5b,0xf5,0x41,0x16,0x45,0xd4,0x5e,0x2e,0xb0,0x62,0x2d,0xf9,0xb7,0x3f,0x12,0x74,0xdb,0x64,0xfc,0xb4, + 0xa3,0xf2,0x9e,0xc5,0xd5,0x8e,0xc6,0x75,0x39,0x3a,0x42,0x58,0x07,0x1e,0xd5,0xb3,0x0a,0x1f,0xeb,0x6b, + 0x2d,0x80,0xf5,0x01,0x5f,0x39,0x24,0x10,0x23,0x52,0x69,0x90,0xb1,0xae,0xa5,0x30,0x81,0x1b,0xf5,0xb8, + 0x16,0xd0,0xc1,0x7d,0xaf,0x85,0x49,0x25,0x84,0x47,0x2d,0x99,0x3d,0x45,0x72,0x69,0xc0,0x29,0x9d,0x4b, + 0x41,0xbb,0x73,0x8b,0xf5,0xfb,0x4e,0xc8,0xcd,0xab,0xa5,0x90,0x9b,0x57,0xef,0x80,0x4c,0x74,0xae,0x84, + 0x4c,0xfb,0x5d,0x03,0xf2,0xdc,0xaa,0xf3,0x8d,0x5b,0x0e,0x6d,0x4c,0x29,0x09,0x34,0xd1,0x54,0x88,0x51, + 0xe8,0x6c,0x2d,0x88,0x1d,0x0c,0x5f,0x03,0x68,0xab,0x0b,0x09,0xc8,0x98,0x56,0x1a,0x66,0xa2,0x6d,0x09, + 0x50,0xa1,0xcb,0xa2,0xfc,0x65,0x01,0x37,0x97,0xbf,0xc4,0xdb,0x1c,0x42,0xae,0x0f,0xba,0x97,0x30,0x87, + 0x3a,0xa1,0x94,0xc9,0xe7,0x82,0x9e,0x22,0xbc,0x62,0x57,0xca,0xca,0xfa,0x35,0xe1,0x36,0x4a,0x15,0xb0, + 0x3f,0x6c,0x47,0x54,0xf6,0xe5,0xe5,0x0f,0x2b,0x5e,0x5e,0x96,0xbd,0xb7,0x9c,0xaf,0xba,0x1d,0x37,0x55, + 0x74,0xff,0x6c,0x82,0xd7,0xc0,0xf9,0x4d,0x89,0xf6,0xb7,0x09,0x6d,0x7b,0x02,0xd4,0x17,0x79,0xf1,0x2d, + 0x1c,0x43,0x0a,0xfc,0x92,0x37,0x5f,0x57,0x39,0x3d,0x3d,0x59,0x6f,0x3a,0x81,0x78,0x74,0x23,0x28,0x54, + 0x29,0xa5,0x9c,0xbf,0x27,0x8a,0x72,0xce,0x93,0xd3,0x18,0x9e,0xa6,0x57,0xc3,0xd3,0xf4,0xea,0x41,0x6a, + 0x9e,0x45,0xf6,0x39,0xfa,0x0a,0xb0,0x46,0xdf,0xf9,0x54,0x4e,0x4f,0x94,0xaa,0x64,0xaf,0xb6,0x9c,0xdb, + 0xa8,0xc9,0x86,0x95,0x7a,0xf5,0x34,0xb2,0x57,0xed,0x87,0xbd,0xf3,0x5a,0x74,0x94,0x27,0x20,0x0e,0x3c, + 0xd8,0x0c,0xc8,0xfe,0x20,0x73,0x5e,0x27,0xe1,0x58,0x7d,0x68,0x27,0xb7,0x09,0x1b,0x92,0x27,0x37,0x46, + 0x38,0xdc,0xa2,0x77,0x6e,0xf3,0x6a,0x2a,0xf4,0xad,0x68,0xf2,0x87,0x50,0xbe,0xf2,0x1b,0x9c,0x1d,0xd6, + 0x5c,0xe2,0xba,0x60,0xdd,0xcd,0xac,0x4d,0xd2,0x98,0x10,0x56,0x23,0xd6,0x1d,0x1f,0xa6,0x01,0xbc,0x7e, + 0x9e,0xba,0xf9,0x91,0x7d,0x63,0x22,0x40,0xa7,0x2a,0xc2,0x68,0xa3,0x1f,0x9c,0xa4,0x1c,0x46,0xcc,0x21, + 0xe9,0x48,0xcc,0x7f,0x02,0x42,0x2f,0x44,0xa7,0xe8,0xad,0xf8,0x4e,0x34,0xfc,0xc6,0x46,0x38,0xd2,0x72, + 0x17,0xec,0x92,0x88,0xeb,0x9e,0x60,0xf1,0xe3,0x9d,0xf0,0x37,0xfb,0xed,0x4e,0x74,0x78,0x72,0xc7,0xc9, + 0xec,0x13,0x9e,0xac,0x48,0xfc,0xe9,0x4e,0xee,0xa2,0x29,0xfc,0x62,0xd0,0x24,0x93,0x11,0x00,0x9d,0x78, + 0xd3,0x33,0x98,0x01,0xde,0x58,0x39,0x65,0xe7,0x02,0x75,0x97,0x58,0x48,0xf8,0x82,0x90,0x7f,0x3b,0xb8, + 0xc3,0x3e,0x99,0xfc,0x37,0x3b,0xd5,0xbc,0x3b,0x48,0x39,0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index 6fc0bb7..dc99d93 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2316 +4,2344 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x77,0xdb,0x46,0xb2,0x2e,0xfa,0x57, - 0x24,0x1c,0x6f,0x1a,0x18,0xb5,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0xb6,0x6c,0x27,0x4e,0xfc,0x1a, - 0x5b,0x4e,0x32,0xa3,0x68,0x6b,0x41,0x24,0x28,0x21,0x26,0x01,0x06,0x00,0x25,0x2b,0x22,0xcf,0x6f,0xbf, - 0xf5,0x55,0xf5,0x0b,0x20,0xe4,0x24,0xb3,0xf6,0xba,0xcb,0xcb,0x22,0xd0,0xdd,0xe8,0x67,0x75,0x75,0xbd, - 0x7b,0x77,0xb6,0x2a,0x26,0x4d,0x5e,0x16,0x61,0xa6,0x9a,0xe8,0x36,0x28,0xcf,0x7f,0xcd,0x26,0x4d,0x90, - 0x24,0xcd,0xcd,0x32,0x2b,0x67,0x3b,0xd9,0xa7,0x65,0x59,0x35,0xf5,0x60,0xb0,0x95,0xb3,0x28,0xa7,0xab, - 0x79,0x36,0x96,0x9f,0xa1,0x2e,0x97,0x34,0x61,0x14,0x07,0xa6,0x4e,0x57,0x78,0x9a,0xcd,0xf2,0x22,0x1b, - 0x0c,0xe4,0x77,0x98,0x2e,0xa6,0x63,0x79,0x0c,0x4f,0x4e,0xa9,0xdd,0xf8,0xae,0x76,0xc7,0xfa,0x77,0x98, - 0x7e,0xca,0x4b,0xa9,0x3d,0x73,0xcf,0x9b,0xb0,0xb9,0xcc,0x6b,0x65,0x87,0x10,0xdd,0x56,0x59,0xb3,0xaa, - 0x8a,0x1d,0x37,0xa8,0xe8,0xd6,0x3c,0xef,0x34,0x61,0x15,0xdd,0xe6,0xb3,0xb0,0x38,0xa9,0x4e,0x23,0x5d, - 0x10,0xcf,0xa6,0xef,0xa3,0xab,0xb4,0xda,0xc9,0x13,0x24,0x25,0xb7,0x3a,0x2d,0xbe,0xdd,0xa8,0x7c,0x1a, - 0x57,0x6a,0x5e,0xa6,0xd3,0x6c,0x1a,0xef,0x1e,0x6e,0x46,0xfa,0xd3,0x0c,0x9f,0x4e,0xd2,0xf9,0x3c,0xcc, - 0x4d,0x0d,0x2a,0x57,0xee,0xb9,0x89,0xe8,0x45,0x3e,0x4b,0x76,0x0f,0x5c,0xc6,0x06,0xcd,0x14,0xc9,0xad, - 0xad,0xa8,0x19,0x2e,0x12,0x9a,0xfc,0xe1,0x24,0x29,0xe8,0xef,0x32,0x09,0x02,0xd5,0x84,0x07,0x34,0xb8, - 0x13,0x7f,0x6d,0x54,0x11,0xdd,0xba,0x69,0x2e,0xc2,0xc3,0x68,0xa3,0xba,0xf9,0xc1,0xaa,0xce,0x76,0xea, - 0xa6,0xca,0x69,0x26,0x47,0x76,0xdc,0x15,0x66,0x01,0x8d,0x36,0x49,0x91,0x5d,0xef,0xa4,0xf4,0xaa,0x8a, - 0xa4,0x0c,0xd3,0xe1,0xb2,0x2a,0x9b,0x12,0x13,0x3e,0xac,0xb2,0xdf,0x56,0x59,0xdd,0x50,0xa7,0x4d,0xaf, - 0xd0,0xdf,0x26,0x2b,0xa6,0x61,0xa1,0xbc,0x82,0x32,0x2a,0x9b,0x43,0x6f,0xc5,0x46,0x4f,0x5b,0xf8,0x30, - 0x52,0x25,0xfd,0x7c,0x11,0xa9,0x94,0x7e,0xbe,0x8a,0x14,0xba,0xf9,0xf7,0x48,0x4d,0x92,0x2a,0xac,0xa3, - 0xd1,0x64,0xf8,0x98,0xd7,0x2d,0x55,0x93,0xe1,0xa4,0xca,0xd2,0x26,0x4b,0xfc,0x65,0xd2,0xcd,0x56,0x34, - 0x9b,0x8b,0xac,0xba,0xc8,0xc2,0x5a,0x65,0x11,0x8d,0x71,0x32,0x3c,0x4a,0x8b,0x49,0x36,0x47,0x03,0x54, - 0xb5,0x79,0x3d,0x2e,0x3f,0x66,0x05,0xd2,0xbe,0x44,0x5a,0x5e,0xbb,0x42,0x07,0x48,0xa0,0x65,0xe9,0xab, - 0xfd,0x6d,0x55,0x2e,0xf2,0x3a,0x43,0x36,0xa5,0xa2,0xf2,0x7a,0x49,0x5d,0x99,0xe2,0x3b,0xea,0xb0,0x9b, - 0xdf,0x89,0x7b,0x1e,0x12,0xa0,0xa6,0xab,0x79,0x93,0x4c,0xfe,0xd2,0x84,0x4b,0x8b,0xc1,0x89,0x00,0xf6, - 0xce,0xe3,0xaa,0x4a,0x6f,0x4e,0x09,0xbe,0x93,0xb9,0x00,0x0d,0x35,0x6f,0x3f,0xc8,0xbd,0x2e,0x16,0xab, - 0xf9,0x7c,0x37,0x49,0xb2,0x9e,0x1d,0x97,0xb9,0x2f,0xca,0x9e,0x26,0x9e,0xeb,0xcc,0xbb,0x5a,0x49,0x65, - 0x8b,0x63,0x07,0xd8,0x36,0xae,0xca,0x7c,0xba,0x73,0x80,0xe7,0x88,0xd2,0x4d,0x8b,0xbb,0xb6,0xc5,0xc1, - 0x20,0xcc,0x92,0x93,0xec,0x34,0x52,0x18,0x54,0x34,0x2b,0xab,0x50,0xc0,0x97,0x00,0x3a,0xc9,0x86,0xf3, - 0xac,0xb8,0x68,0x2e,0x47,0xc5,0xa3,0x7c,0x54,0xec,0xed,0x45,0x8d,0x34,0x8a,0xea,0x55,0x76,0x52,0x9c, - 0xaa,0x82,0xd6,0x70,0x94,0xcd,0x69,0x92,0xcc,0x97,0xe5,0x4e,0x4e,0x5b,0x27,0x7a,0xc3,0x0d,0x79,0x00, - 0x78,0x99,0xd6,0x6f,0xae,0x0b,0x5a,0x9f,0x65,0x56,0x35,0x37,0xba,0xf3,0xaa,0x8c,0x06,0x83,0x76,0xa5, - 0xe5,0xa9,0x2a,0xa9,0x52,0x06,0xba,0x5a,0xa0,0x8d,0xf6,0x4d,0x48,0x50,0x30,0x4f,0xb6,0x2a,0x6d,0xca, - 0xf7,0xb4,0x36,0xc5,0xc5,0xc8,0x2d,0xec,0x6d,0x5e,0xf3,0x52,0xd0,0x96,0xd6,0x4f,0x4f,0x56,0xb3,0x59, - 0x56,0xc5,0xdb,0xd0,0xd2,0x5e,0x3b,0x29,0xd6,0x99,0x5b,0xaa,0x43,0x7f,0x3e,0xa1,0xc7,0xe7,0x65,0xb5, - 0x78,0x9a,0x36,0x69,0x5f,0x5d,0xab,0x42,0xf0,0xdd,0xd4,0x4d,0xae,0x29,0x3e,0x18,0x64,0x34,0x29,0x75, - 0x03,0x08,0xf6,0x92,0x37,0xed,0x0e,0xfe,0x98,0x67,0xd7,0x7f,0xb2,0x62,0xef,0xab,0xc1,0xc0,0x7b,0xa1, - 0x6d,0x82,0x5a,0xc6,0xdb,0x49,0x54,0x5f,0x4c,0x6b,0x9d,0x0d,0xcf,0xf5,0x57,0xe6,0xc9,0xef,0x98,0xf7, - 0x19,0xfa,0x26,0x53,0xdb,0xd7,0xa5,0x9a,0x73,0x7c,0xb8,0xa5,0xe2,0xaf,0x57,0x8b,0xf3,0xfe,0x69,0x2e, - 0x38,0xa7,0x53,0x5c,0xd6,0x32,0x26,0x84,0x5a,0x7f,0x30,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85, - 0xbf,0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0xe7,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1, - 0xe7,0xe5,0xf9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80, - 0x11,0x06,0x03,0xda,0xe5,0xc3,0x65,0xbe,0x94,0x2f,0x3f,0xbc,0x7b,0xf9,0x3e,0x4b,0xab,0xc9,0xe5,0xdb, - 0xb4,0x4a,0x17,0xf5,0x9f,0x84,0x85,0xce,0x57,0x1d,0x58,0xeb,0xe4,0xca,0xb2,0xa6,0xc5,0x34,0xad,0xa6, - 0x4f,0xaa,0xf2,0xba,0xce,0xaa,0x67,0xc5,0x55,0xbc,0x75,0xbe,0x86,0x5e,0x4b,0x76,0xd9,0x8a,0xf4,0x2a, - 0xbf,0x48,0x9b,0xb2,0x5a,0xaf,0x83,0x77,0x59,0x3a,0x69,0x5e,0xa7,0x4d,0x7e,0x95,0x51,0x57,0x12,0x9b, - 0x85,0xbd,0x39,0x5d,0x4d,0x1a,0x1a,0x5b,0x5f,0x67,0xaf,0xf3,0x62,0x5a,0x5e,0xf7,0xe7,0x4d,0xcb,0xc9, - 0x6a,0x91,0x15,0x0d,0x21,0xe1,0xb2,0x7a,0x96,0x4e,0x2e,0xe3,0x54,0xf1,0x41,0x61,0xbb,0xb7,0x93,0x85, - 0xad,0xd3,0xbe,0x51,0x55,0x0f,0x41,0x83,0xe3,0xbd,0x07,0xb7,0x36,0x63,0x3e,0xf7,0x33,0xa6,0x0e,0x40, - 0x91,0xf0,0x6b,0xb3,0x71,0x18,0x8f,0x28,0x81,0x8a,0xd1,0x5e,0x5a,0x5d,0x70,0x4f,0x6a,0x83,0xfe,0x2a, - 0x42,0x7f,0x15,0xa1,0xbf,0x34,0xb4,0x59,0x52,0x89,0x39,0x4b,0x8b,0x8d,0x92,0x23,0x33,0xee,0x1e,0x20, - 0xba,0x40,0x4a,0x9d,0xb5,0x59,0xdc,0x6f,0x50,0x17,0x49,0x41,0x1d,0xdd,0xa6,0xa5,0x9a,0x71,0x1d,0xe2, - 0xe3,0xb8,0xd9,0xd0,0x91,0xb5,0x51,0xb4,0xdb,0x7a,0x61,0x08,0xa7,0xfa,0x72,0x9e,0x4e,0xb2,0xf0,0xc1, - 0xff,0xfc,0x52,0xff,0xed,0x81,0x0a,0x82,0xc8,0x25,0x51,0xca,0x3d,0x4e,0xda,0x6c,0xda,0xe7,0x5a,0xe7, - 0x54,0x73,0xa8,0xb3,0x5d,0xa8,0x4b,0x69,0xd1,0xd4,0xdb,0xa9,0x02,0x99,0xc1,0xd8,0x22,0xec,0xce,0x55, - 0x84,0x39,0xa4,0x09,0x2b,0xec,0xdc,0xd1,0xbc,0xf1,0x54,0xfb,0x53,0x67,0x49,0xac,0x61,0xba,0x5c,0xce, - 0x6f,0x78,0xb4,0xdb,0xdd,0xb4,0x4b,0xed,0x0d,0x7a,0x77,0x37,0x1b,0x4e,0x4a,0x02,0xf0,0x8a,0xa0,0xac, - 0xac,0x7a,0xe7,0xaf,0x55,0x62,0x68,0x30,0x38,0x70,0x5e,0x5f,0x3a,0xf6,0x6d,0xdf,0x1c,0x74,0x0e,0x6c, - 0x9c,0x94,0x48,0x5d,0xaf,0xc3,0x86,0xa8,0xb9,0xbe,0x65,0x1b,0x82,0xd2,0x78,0x4e,0x14,0x61,0xf3,0xf2, - 0x59,0xff,0xc2,0x0e,0xeb,0x79,0x3e,0xa1,0x9a,0x08,0x06,0xe4,0x31,0x3c,0x50,0x07,0x51,0x44,0x95,0x62, - 0x5c,0x67,0xa6,0x4b,0x11,0x53,0xaa,0xcd,0xe6,0x2f,0xd1,0x23,0xa0,0x94,0x0d,0x29,0x53,0x83,0xde,0xc4, - 0x7b,0x5e,0x34,0x59,0x35,0xc9,0x96,0x34,0x60,0x3a,0x1a,0x35,0x11,0x18,0x33,0x95,0xa8,0xaa,0xac,0x5e, - 0xd2,0x7c,0x64,0xf2,0xba,0xb1,0x64,0xde,0xdf,0x85,0xcc,0x7b,0x28,0x64,0xde,0xe1,0x7f,0x0b,0x9d,0x77, - 0xf8,0x0f,0x82,0xf6,0x6d,0x82,0xb2,0x35,0x61,0xdb,0x07,0x03,0x93,0x17,0xa5,0x26,0xf8,0x6e,0x57,0xd5, - 0x3c,0x76,0x60,0x70,0x70,0xba,0x51,0xee,0xed,0xf0,0x34,0x8a,0x94,0x57,0x38,0x57,0xad,0x01,0xa9,0xdb, - 0x45,0xd6,0x5c,0x96,0xd3,0x38,0xb8,0xc8,0x9a,0x60,0x03,0xd2,0x71,0x28,0x29,0x44,0xa5,0xc8,0x03,0x51, - 0x03,0x2f,0xcb,0xeb,0xac,0x3a,0x4a,0x6b,0x42,0x14,0x32,0x85,0xc9,0x49,0xad,0xe4,0x04,0x21,0x5a,0x25, - 0x31,0xd4,0x21,0x8d,0xbc,0x9c,0x5f,0x65,0xd4,0xe5,0x11,0x60,0x7a,0x6b,0xa6,0xcc,0xe0,0x86,0x1a,0x13, - 0x85,0xfe,0x20,0x9b,0xe1,0xaa,0xa8,0x2f,0xf3,0x59,0x43,0xb8,0x7b,0xb6,0x9a,0xcf,0xf2,0xf9,0x3c,0x9b, - 0x2a,0x54,0x0a,0x84,0x93,0x4d,0x23,0xda,0xb4,0x7d,0x35,0xca,0x64,0xdf,0x51,0xe5,0x72,0x55,0x5f,0xde, - 0x5d,0xdf,0xa8,0x31,0xbb,0x29,0xa2,0xbd,0x37,0x6c,0x2e,0x33,0x06,0x20,0xee,0x04,0x35,0x66,0x9e,0x7c, - 0x74,0x54,0xda,0x86,0x4e,0x82,0x69,0x36,0xcf,0x9a,0x2c,0x50,0x3c,0x75,0x2a,0xb8,0x24,0x28,0xa5,0x9f, - 0x72,0x89,0xe6,0xeb,0xe0,0x54,0xb5,0x60,0xde,0x2d,0x31,0x51,0x85,0x89,0x87,0xb3,0x1c,0x32,0xe3,0xd1, - 0xe9,0x29,0x0a,0xcd,0x7a,0x15,0xeb,0x35,0x21,0x50,0xb3,0x4a,0x99,0xc2,0x5a,0x13,0xfe,0xa2,0x6d,0x1d, - 0xb5,0x3a,0xb3,0x2c,0x6b,0x74,0x62,0xb9,0xe2,0xbf,0x69,0x33,0xb9,0xfc,0xf3,0x3d,0x00,0xde,0xfc,0x5c, - 0x1f,0xaa,0xbe,0x3e,0xa8,0x29,0x28,0xb6,0x42,0x77,0xc5,0xed,0xf4,0xea,0x2f,0xec,0x2e,0x60,0xa3,0xdd, - 0x7c,0xe8,0x91,0x2a,0x7c,0x7c,0x77,0x52,0x4e,0x82,0xa3,0x92,0xd6,0xbc,0x68,0xf6,0x8f,0xa9,0xf3,0xc1, - 0x69,0x04,0xe8,0xef,0x26,0x26,0x4d,0xd4,0x65,0xa8,0xfe,0x1b,0x3b,0xed,0xb6,0x5d,0x2e,0x0e,0x80,0x19, - 0xf3,0x49,0x8a,0x2e,0x3c,0xf8,0xb4,0x7f,0x7d,0x7d,0xbd,0x4f,0x93,0xb8,0xd8,0xa7,0x31,0x65,0xc5,0xa4, - 0x24,0xa6,0x93,0x76,0x01,0xed,0xe9,0x74,0x9a,0x2e,0x1b,0x9f,0xee,0x12,0x56,0x30,0x1b,0xdd,0x4d,0x32, - 0xfc,0xfc,0xea,0xe5,0x77,0x4d,0xb3,0x7c,0x27,0xb3,0x37,0xce,0xa8,0x0b,0xff,0x20,0x0e,0xbd,0xa7,0x24, - 0xad,0xc4,0x24,0xab,0x6b,0xde,0xc5,0x28,0x84,0xe3,0x08,0x10,0x57,0xa5,0x45,0x8d,0xde,0xe8,0x2a,0xe2, - 0x93,0xde,0xa3,0xa3,0xa4,0x35,0x6b,0x8f,0x0a,0xbc,0xa5,0x23,0xa3,0x19,0x9b,0x22,0xc1,0x23,0x3c,0x6d, - 0x5a,0xe7,0x55,0x28,0x29,0xfb,0x0a,0x8a,0xcd,0x15,0x25,0x42,0x8c,0x5e,0xc6,0x59,0xdc,0xa9,0x4c,0x53, - 0xbe,0x63,0x43,0xec,0x72,0x7e,0x87,0x24,0x42,0x7e,0x58,0xa1,0xa7,0x7f,0x38,0xe1,0xa3,0xc9,0x65,0x5a, - 0xd5,0x59,0x93,0xac,0x9a,0xd9,0xfe,0x3f,0x02,0x00,0x93,0x61,0x40,0x68,0xf3,0x71,0xe5,0x42,0xd5,0xf6, - 0xd7,0xf9,0x6b,0x5d,0x16,0x5b,0x55,0x7c,0xff,0xfe,0xcd,0xeb,0xa1,0xa0,0xcd,0x7c,0x76,0x03,0x16,0x2c, - 0xce,0x36,0xa7,0xfe,0x0c,0x6b,0x24,0x7d,0xe2,0xef,0x11,0xb0,0x72,0x5b,0xb8,0x36,0x6a,0xaa,0x9b,0xdb, - 0x2c,0xe1,0x1a,0x97,0x68,0x05,0x27,0xdb,0x04,0x3b,0x0c,0x9f,0x6c,0xcc,0x91,0x8b,0xda,0xf3,0x45,0x56, - 0xae,0x9a,0xf8,0x40,0x7d,0xaa,0xab,0xd9,0x51,0x59,0x7e,0xcc,0xb3,0xd7,0xe9,0x22,0x8b,0x83,0x9f,0xdf, - 0xbf,0x7b,0xbe,0x7f,0xfc,0xe6,0x87,0x67,0xaf,0x03,0xce,0xfb,0x8e,0x70,0x45,0x56,0xe9,0xbc,0x7d,0x3f, - 0x77,0x91,0x7e,0xd2,0x4b,0xfb,0x92,0x51,0x53,0xbc,0x7f,0xa8,0xae,0xd2,0x79,0x4e,0xbb,0x2d,0x23,0x12, - 0xb3,0x59,0xf5,0x11,0xb0,0x3b,0xd9,0x37,0xc9,0xc3,0x83,0x03,0x3a,0x8a,0x1f,0x7d,0x71,0x70,0xb0,0xd9, - 0x8c,0xea,0xe1,0x25,0xb7,0x40,0x80,0x3c,0x29,0x17,0x0b,0x22,0x9b,0x6f,0x1f,0x4f,0x80,0x33,0xe3,0xad, - 0xa9,0x53,0x3b,0x0d,0xd1,0x58,0x0f,0x88,0xba,0xc9,0xe9,0xf9,0x6f,0x0f,0xfe,0x16,0xd0,0xf9,0x98,0xff, - 0x01,0x9a,0x6b,0xa3,0x16,0xdb,0x1a,0x10,0xcb,0x2d,0xd0,0x41,0xfe,0x57,0x30,0x53,0xeb,0x73,0x23,0xc5, - 0x48,0xa3,0x16,0x56,0xa9,0xff,0x00,0xab,0x60,0x6f,0x56,0xbc,0xf5,0xef,0x26,0xbc,0x6c,0x9f,0x32,0x57, - 0x97,0xe0,0x3e,0x22,0xb5,0x9b,0xc1,0xa0,0x22,0xb0,0xfb,0xb0,0x5c,0x9a,0x93,0x8e,0x38,0x90,0xa6,0x9d, - 0xc2,0x78,0xa7,0x21,0xf2,0x52,0xc9,0x9c,0xb0,0x28,0x8b,0xfa,0xf9,0x47,0x04,0x85,0xeb,0x9c,0x02,0x7a, - 0xfa,0x5a,0xd0,0xd3,0xa1,0xa1,0x04,0xbe,0xd0,0x94,0xc0,0x97,0xc2,0x92,0x1f,0x1e,0x80,0x27,0xff,0x1c, - 0x99,0x2f,0xbf,0xc3,0xf3,0xa6,0x4c,0x5b,0x2f,0xc3,0x73,0x7a,0x0e,0x25,0x81,0xf6,0x30,0x55,0xf5,0x55, - 0xff,0x74,0x38,0x1a,0x8c,0x48,0x14,0x7d,0x7a,0x87,0xde,0x89,0xb0,0x12,0x64,0x37,0x23,0x1a,0x00,0x58, - 0x5e,0x81,0x18,0xd0,0x6b,0x34,0xaa,0x7c,0x4c,0x33,0x8b,0x20,0x9a,0xe4,0xb9,0x98,0x76,0x31,0x32,0x0f, - 0x7b,0xc9,0x34,0x6d,0x1b,0x33,0xaa,0xcb,0x24,0x28,0x0b,0x10,0x75,0x37,0xc4,0x50,0x35,0x19,0xed,0xdd, - 0xe2,0x82,0x00,0xec,0x2a,0xd9,0x3d,0x1c,0x61,0x0b,0xf6,0x30,0x49,0x32,0x28,0xa2,0xe7,0xf4,0x70,0x7f, - 0x7e,0x5a,0x2e,0x08,0x60,0x75,0x8d,0xc4,0x39,0x5d,0xe7,0xcd,0xe5,0x51,0x95,0x4d,0xa9,0xfd,0x3c,0x9d, - 0xd7,0x41,0x5e,0xec,0x2c,0xd7,0x6b,0x42,0x43,0x43,0x42,0x34,0xa0,0x2e,0xa5,0x27,0xbd,0x9f,0x4b,0x87, - 0x20,0x72,0xe4,0x4e,0x1c,0xa8,0xe5,0xb0,0x2c,0x08,0x47,0x5f,0x10,0x75,0xe1,0x4d,0x1b,0x6d,0x76,0xce, - 0xd1,0xdb,0xbc,0x95,0x01,0x58,0x4d,0x57,0x44,0xa7,0xf3,0xc4,0x2d,0x12,0x79,0x1b,0x12,0x14,0x54,0x05, - 0xed,0x72,0xea,0x60,0xa0,0x2e,0x4c,0xea,0x32,0xad,0xeb,0xeb,0xb2,0x9a,0x22,0x75,0x34,0x1d,0x3e,0xa6, - 0xb4,0xb2,0xca,0x7f,0xe7,0x3d,0x99,0x04,0x4f,0xd2,0x3a,0x9f,0xec,0x04,0x7b,0xf3,0x70,0xb1,0x47,0xe7, - 0xd5,0xde,0x45,0xb4,0xa1,0x49,0xa1,0x86,0x97,0x44,0x9e,0x78,0x44,0x99,0x07,0x98,0xaa,0x94,0x71,0x52, - 0x27,0x96,0x8c,0x7d,0xed,0xc3,0xfb,0xac,0xa2,0xe9,0xc8,0x7f,0x27,0xe2,0x57,0xed,0x12,0x60,0x2d,0x87, - 0xa6,0xf7,0x99,0x79,0x52,0xcb,0x93,0xcb,0x53,0x7f,0x30,0x68,0x8d,0x40,0xfd,0x4b,0xda,0x00,0x4b,0xa6, - 0xbd,0x6f,0x80,0x78,0x68,0x0c,0x57,0xd8,0x01,0x10,0x7a,0x2d,0x87,0x35,0xa3,0xa2,0xf5,0x7a,0x69,0x29, - 0x30,0xc2,0xff,0x83,0xc1,0x81,0xfe,0xc6,0x26,0x11,0xb5,0x36,0xcd,0x3e,0xbd,0xa1,0x45,0x9d,0x41,0x58, - 0x10,0x10,0x51,0x7e,0x2b,0xbc,0x0e,0xd0,0xc9,0xe3,0xf9,0xdc,0x20,0x62,0xc1,0x88,0xb2,0x6e,0xe3,0x94, - 0x86,0xdb,0x9b,0x8d,0xf3,0x80,0x05,0x5a,0x55,0x72,0xcb,0xf4,0x47,0x66,0x1b,0x03,0xd0,0x11,0x77,0x00, - 0x64,0x06,0xd6,0xb9,0x9d,0x31,0x76,0x9d,0x8a,0xdd,0xe3,0x31,0x95,0x55,0x32,0x92,0xf8,0xf0,0xe1,0xc3, - 0x2f,0x12,0x37,0xb2,0xf1,0xc3,0x83,0x2f,0x63,0xf3,0xa2,0xcb,0xa0,0xf8,0x56,0xb9,0xe0,0x75,0xb9,0xa3, - 0xe1,0x3e,0xb0,0x1f,0x70,0xc5,0x7a,0xc3,0xc4,0x85,0x22,0xf6,0x68,0x96,0x5f,0x10,0xe1,0x64,0x18,0x85, - 0xe5,0x66,0x94,0x63,0x9b,0x11,0xf2,0x51,0x04,0x97,0x34,0xa0,0x8d,0x80,0x56,0x56,0x55,0x65,0xe5,0xaf, - 0xc5,0x2a,0x9c,0x84,0xc1,0xeb,0xac,0x21,0x70,0xf9,0xb8,0xf3,0x0c,0xb9,0x81,0xca,0x14,0x4f,0xc1,0x32, - 0xb2,0x1f,0xdf,0x05,0x96,0xfc,0xb5,0x4e,0xdf,0xa1,0x5d,0x14,0xec,0xd9,0x55,0xdf,0x0b,0x16,0xf5,0x4e, - 0xf6,0x69,0x92,0x65,0x20,0x79,0xa8,0xce,0xe0,0xd9,0xd1,0x9b,0xd7,0xaf,0x1f,0x3f,0x79,0xf3,0xee,0xf8, - 0xd9,0xd3,0xa0,0x55,0x7b,0x35,0xec,0x13,0x6f,0x84,0x7a,0x29,0x6f,0x80,0xb3,0x88,0xb9,0x39,0x4f,0x08, - 0x08,0x3b,0xdb,0xd0,0xed,0xc0,0x08,0x7c,0x62,0xfb,0x58,0x1c,0xdf,0x30,0x74,0x85,0xdd,0xf4,0x28,0x16, - 0xd6,0x62,0x74,0x4e,0xe0,0x36,0x3d,0x91,0x6c,0x77,0x62,0x9e,0x26,0xe7,0xbc,0x23,0x02,0x3a,0xef,0xf5, - 0x06,0x96,0x4c,0x86,0x1d,0xa0,0x71,0x83,0xe7,0xa7,0x1d,0xc6,0xd7,0xca,0xbc,0x66,0x04,0x28,0x13,0x8d, - 0xac,0x80,0x60,0x02,0x8d,0xeb,0x3d,0x3e,0x67,0x6c,0xd1,0x5a,0x73,0x8a,0x75,0xed,0xb4,0x45,0xab,0x97, - 0xc9,0x09,0xd5,0x19,0x31,0x75,0x79,0xd9,0x4d,0x4b,0xb0,0xf3,0xda,0x00,0xc9,0x44,0xc5,0xb2,0x95,0xd4, - 0x01,0x59,0x4d,0x62,0x88,0xe0,0x39,0xc0,0x49,0xbd,0x0d,0xd6,0x51,0x73,0x49,0xcb,0x41,0x1c,0x6d,0x2f, - 0xb7,0x5e,0x16,0x4f,0xcb,0x6b,0x46,0x6b,0x6f,0x35,0x2e,0x1b,0x0c,0x96,0xc3,0x74,0x3a,0x7d,0x76,0x05, - 0xf2,0x22,0xaf,0x69,0xfc,0x34,0x92,0xc0,0x60,0x3a,0x82,0x82,0x9e,0x6f,0xa2,0x3e,0x9e,0x1c,0x05,0x3f, - 0x2c,0xbb,0x55,0xaf,0x38,0xc5,0x3d,0xfd,0x61,0x5b,0xed,0x2a,0x30,0x47,0x13,0xa7,0xa4,0x60,0xc1,0x82, - 0x7b,0x05,0xfb,0xc2,0x5c,0x26,0xb3,0x69,0xfe,0x59,0xb6,0xe4,0x39,0x4f,0xcf,0xe9,0x90,0x23,0x54,0xb8, - 0x82,0x9a,0x46,0x20,0x17,0x0b,0xe4,0xaf,0x79,0x38,0x93,0x64,0x85,0xf5,0xa4,0x93,0x72,0xf6,0x17,0xce, - 0x6e,0x3a,0x95,0xef,0xa0,0x2c,0xf0,0x89,0xe6,0x3c,0x86,0xb2,0xd3,0x87,0x6d,0x82,0x6d,0x54,0x68,0xb4, - 0x40,0x9c,0xcd,0x60,0xb0,0x9b,0x87,0xe6,0x3d,0x1a,0x37,0x44,0xce,0x06,0x1a,0xb0,0x76,0x66,0x29,0xa1, - 0xc8,0xe9,0x0e,0x80,0x67,0x47,0x0a,0xec,0x80,0x3e,0xa6,0x5d,0x6b,0x3e,0x50,0xa6,0x05,0xc1,0x00,0x85, - 0x55,0x3f,0x15,0xa0,0x6f,0xc3,0xe2,0xcf,0x8f,0xe6,0xf0,0xee,0xd1,0xa8,0x5c,0x95,0x32,0xa2,0x94,0x8f, - 0x4c,0xc6,0x3a,0xe0,0xe9,0xad,0xa6,0x29,0xb5,0xc5,0xfe,0x13,0x11,0x18,0xf8,0x4d,0x95,0x7b,0xd2,0x36, - 0x19,0x52,0x42,0x19,0x20,0xb0,0x86,0x18,0x73,0x52,0xc8,0x86,0x11,0x59,0x48,0xe5,0x6d,0x9e,0x24,0x27, - 0x5e,0xe9,0x3f,0x50,0x28,0xed,0x08,0xb3,0xf1,0xe1,0xdd,0x8b,0xa3,0x72,0x41,0x35,0x11,0x54,0x52,0xa6, - 0x13,0xeb,0xfd,0xd7,0x97,0x07,0x0f,0x2e,0x72,0x15,0xfc,0x5f,0x5f,0xd6,0xf7,0x5f,0x5f,0x3c,0xe6,0xc4, - 0xb8,0x95,0xf8,0xf0,0xcb,0x07,0x17,0x2a,0xb8,0xd7,0x4e,0x3b,0xe2,0x82,0xaa,0x9d,0x78,0x80,0x82,0x7b, - 0xad,0xb4,0xaf,0x9e,0x70,0xc1,0x93,0x76,0xe2,0x53,0x4e,0x3c,0x0d,0x7c,0x1e,0xf6,0x33,0xe0,0x46,0x18, - 0x61,0xb7,0x31,0xaa,0xd8,0x8c,0x57,0xb5,0x04,0xe5,0x54,0x44,0x20,0x2c,0x1b,0xad,0x3a,0xa2,0x84,0x3e, - 0xc6,0xac,0x89,0xa8,0x54,0xe3,0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xc9,0xe9,0xc8,0xd1,0xee,0x4d,0x67,0x71, - 0xfb,0xd4,0x5f,0xb4,0x64,0x96,0x3b,0x64,0xe6,0x3d,0x6c,0xf6,0x92,0xe0,0xe4,0x54,0xf3,0xa4,0x26,0x9d, - 0x08,0x30,0xad,0x0f,0xcb,0xfb,0xc8,0x70,0xf0,0x5e,0x43,0x51,0x43,0x30,0x63,0x09,0xea,0xa4,0x7c,0xf1, - 0xfe,0x8d,0xe9,0x62,0x9b,0x09,0x64,0xbe,0x79,0x9b,0xc3,0x83,0xbe,0x15,0xf2,0x1e,0x42,0xce,0xd1,0x5e, - 0x90,0x04,0x7b,0xac,0x7a,0x83,0x80,0x02,0x04,0x77,0x3a,0xfc,0xb5,0xcc,0x8b,0x30,0x18,0xd0,0x24,0x1b, - 0x46,0x1a,0x15,0xed,0x25,0xe1,0xfe,0x21,0xf4,0x20,0x8e,0x54,0x19,0x07,0xd1,0x98,0xfe,0xc4,0x28,0xbb, - 0x57,0x46,0x7f,0x0c,0x70,0x2d,0x02,0xff,0x24,0x48,0x41,0xcd,0x06,0xa9,0x4f,0xd6,0xd1,0xbb,0x39,0x70, - 0x44,0xe4,0xe4,0x25,0xf0,0x09,0xa4,0x82,0xac,0x49,0x2f,0xf0,0xf3,0x69,0x99,0x13,0xb0,0xd3,0xd3,0x8c, - 0x10,0x1e,0x18,0x2e,0xe1,0x9f,0xf2,0xd9,0xfe,0xa2,0x9c,0xe6,0xb3,0x3c,0x9b,0xee,0xd7,0x39,0xa1,0x45, - 0x49,0x5b,0x15,0x5b,0xa9,0xf3,0xb4,0x6e,0x6c,0x59,0xbc,0x97,0x13,0xd3,0x07,0xe2,0x2e,0xc1,0x7d,0x5f, - 0xd3,0x41,0x8e,0x16,0x08,0xa5,0x7e,0xba,0xd9,0xef,0x76,0xb4,0xca,0x88,0xa7,0xa7,0xe3,0x14,0x4f,0x74, - 0x4c,0xed,0xa7,0xb3,0x86,0xdf,0x40,0xcc,0xee,0xd3,0xd8,0x88,0xd2,0x39,0xbd,0x83,0xad,0x60,0xe1,0x20, - 0x6d,0xf0,0x12,0x92,0x17,0xa7,0xf1,0x27,0xae,0xdd,0xad,0xfa,0xb0,0x26,0x06,0xb4,0x09,0x83,0x5f,0x0a, - 0x82,0x91,0x0e,0xf7,0x5d,0xfa,0xcb,0x40,0xbb,0x4e,0xd1,0xe6,0x1f,0x42,0x4e,0x8f,0xcf,0x56,0xe7,0x34, - 0xdf,0xe1,0x01,0xa1,0x9d,0xa8,0x7d,0x56,0xab,0x62,0xab,0x54,0xb9,0x77,0x48,0x00,0x21,0x87,0x67,0x4a, - 0x47,0x38,0x0b,0x95,0x74,0xc5,0x4d,0xf4,0x4d,0x72,0xa0,0x77,0xcf,0x08,0x99,0x09,0x48,0x89,0xfd,0x09, - 0x13,0x20,0x4c,0x0a,0x8c,0xf9,0x9b,0x31,0xfe,0xc4,0x27,0xa7,0x11,0x30,0x14,0x4d,0x61,0x78,0x52,0x9c, - 0x46,0xb1,0xcd,0xd9,0x0b,0x14,0x50,0x73,0x5c,0x80,0xe1,0x4d,0x29,0xe3,0xcf,0x43,0x89,0x37,0x7b,0x77, - 0xd1,0x56,0x63,0x5f,0x41,0xe0,0x14,0x35,0xd6,0x22,0x21,0xb3,0x42,0x49,0xde,0x81,0x34,0x80,0xc7,0x0d, - 0xb5,0x73,0xbe,0xa2,0x1d,0x14,0x5c,0xd2,0x12,0x06,0x30,0x32,0x68,0x88,0x9f,0xc6,0x0b,0xb6,0xdd,0x1d, - 0x45,0x6e,0xf1,0x14,0x4b,0x31,0xc5,0x22,0xc2,0x49,0x39,0xa7,0x77,0xf3,0x38,0x76,0x8f,0x0e,0x63,0xc5, - 0xa2,0x02,0x89,0x89,0xab,0x01,0x78,0xe2,0x73,0xfa,0x51,0x35,0xe3,0x99,0x18,0x6d,0xe1,0x61,0x6c,0x1e, - 0x7c,0x85,0xca,0xd8,0x7d,0x99,0xd6,0x28,0x8b,0x9f,0xb1,0xfc,0x78,0xe5,0xfe,0x4f,0xab,0x01,0xf0,0x50, - 0xba,0x11,0x3c,0x2a,0xcc,0x1d,0xfa,0x48,0x3f,0x6a,0x99,0x36,0x97,0x9c,0x1f,0x3c,0xc0,0xe2,0x51,0xaa, - 0x4e,0x18,0x42,0x28,0xf4,0x18,0x26,0x21,0x63,0x97,0x88,0x52,0x7b,0xee,0x55,0xc4,0xf3,0xb4,0x56,0xc9, - 0x83,0x70,0x51,0xe7,0xd9,0x9a,0x26,0x08,0x64,0x5b,0xf4,0x20,0x1f,0x36,0x90,0x81,0x3a,0x15,0x1c,0xc0, - 0xff,0x31,0xa0,0x1f,0x9b,0xdc,0x68,0xd5,0xb4,0x45,0xc6,0xb3,0x79,0x86,0xb7,0x30,0x48,0x03,0x7b,0x4e, - 0xd2,0x1a,0x69,0x5e,0x7c,0x68,0x76,0xa0,0x5e,0x0b,0x27,0x7d,0x30,0x94,0x83,0x40,0x01,0xe3,0xba,0x82, - 0xd0,0x1f,0xfd,0x89,0x0b,0x67,0x50,0x62,0xe6,0x9f,0xa9,0x54,0xf3,0x02,0x88,0xc6,0x7c,0x70,0x22,0x1e, - 0x36,0x1b,0xc2,0x93,0x5b,0x2a,0xc7,0xdd,0x83,0xcf,0x9f,0xd1,0x9e,0x32,0x48,0xeb,0x3a,0x16,0x44,0x8a, - 0xd1,0x2e,0x4f,0x02,0xe9,0xd0,0x0e,0xd0,0x14,0xf1,0xca,0xf5,0x4e,0x4a,0x7d,0x29,0x98,0xb4,0xd9,0xc1, - 0xcc,0xa6,0x13,0xa0,0x85,0x8d,0x40,0x75,0xf0,0xf8,0xc9,0xd1,0xd3,0x67,0xcf,0xbf,0xfd,0xee,0xc5,0xf7, - 0x3f,0xbc,0x7c,0xf5,0xfa,0xcd,0xdb,0x7f,0xbe,0x7b,0x7f,0xfc,0xe1,0xc7,0x9f,0x7e,0xfe,0xd7,0xbf,0xd3, - 0xf3,0x09,0xb1,0xf3,0x17,0x97,0xf9,0xaf,0x1f,0xe7,0x8b,0xa2,0x5c,0xfe,0x56,0xd5,0xcd,0xea,0xea,0xfa, - 0xd3,0xcd,0xef,0x07,0x87,0x0f,0xbf,0xf8,0xf2,0xab,0xbf,0xff,0xf7,0x3f,0xbe,0xde,0x7b,0x90,0x04,0xa3, - 0xc2,0x49,0xa8,0x1d,0xe1,0xa1,0xbc,0x54,0x21,0x0d,0xbe,0x6a,0x25,0x61,0x11,0x93,0xe0,0x85,0xf4,0xeb, - 0xc8,0x74,0xcb,0x70,0x4a,0xbd,0x48,0xca,0xe8,0xdb,0x1a,0x90,0x30,0x89,0x9e,0xf6,0x0c,0xc2,0x18,0x82, - 0xb6,0x3a,0x39,0x80,0xe1,0xcd,0xa8,0xb4,0xd0,0xb3,0xae,0x71,0x7a,0x4d,0x12,0x3a,0x51,0x54,0xfd,0x5f, - 0x44,0x38,0xa5,0x7b,0xc9,0xc4,0xe4,0xfe,0xfd,0x8b,0x41,0xf3,0xcd,0x37,0xff,0xd8,0xa7,0x8c,0xbf,0xfd, - 0x23,0x62,0x74,0x13,0xe6,0x89,0x7c,0x7c,0x44,0xbd,0xa5,0x22,0xf5,0x5e,0x32,0xfc,0xef,0xaf,0xa2,0xe8, - 0x9b,0x87,0x5f,0x7d,0xa5,0x09,0x76,0x8c,0xae,0x18,0x35,0x49,0xf3,0xe8,0xd1,0x3f,0xd6,0xb9,0x39,0x8e, - 0xfe,0x97,0x11,0xc8,0xed,0x75,0x95,0xb7,0xb4,0xfa,0x86,0x6a,0x23,0x64,0x75,0x2b,0x66,0x20,0x74,0xda, - 0xd7,0x5a,0x47,0xc2,0x07,0x66,0x0f,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0x39,0x18,0xe8, - 0x4f,0xcc,0x49,0x45,0xdf,0x61,0x3c,0x7c,0x76,0x17,0xc0,0xcc,0xdf,0xbe,0x3a,0xb6,0xd2,0x5b,0xe5,0x41, - 0x76,0xee,0x7d,0x8b,0xfd,0x47,0x1f,0xe6,0xad,0x02,0xa5,0x57,0x60,0xca,0x02,0x1a,0x2a,0x52,0x42,0x70, - 0x41,0x40,0x9e,0xba,0xbc,0x3a,0x9b,0xac,0x2a,0x48,0xbd,0xdd,0x2e,0x64,0xdc,0x9d,0xd4,0xfa,0x8c,0x1f, - 0xed,0xd0,0x21,0xaf,0xc0,0x5c,0xc6,0x5b,0xa7,0x53,0xd2,0xf9,0x68,0xb8,0x60,0x3e,0x0b,0x43,0x78,0x97, - 0x5d,0x3c,0xfb,0xb4,0x0c,0x83,0xf0,0x7f,0xd6,0xa3,0x5f,0x7e,0xa9,0xff,0x16,0x85,0x34,0x25,0x44,0xbe, - 0x25,0xe1,0xc9,0xff,0x8c,0x4e,0xff,0x16,0x05,0x4e,0x15,0xd4,0x10,0x7f,0xb8,0x3d,0x57,0x27,0x5f,0x9c, - 0x8a,0x7c,0x02,0x8d,0x2f,0xca,0xab,0xb6,0x75,0x04,0xef,0x2e,0x5e,0x14,0x5a,0x0b,0x02,0x35,0xcc,0xd8, - 0xb0,0x28,0xaf,0xc3,0x68,0xff,0x1f,0x7f,0xff,0x32,0xfb,0x8a,0xa8,0xe9,0xb8,0xbb,0x68,0x90,0x39,0xb5, - 0xc7,0xd1,0xd2,0x9f,0x6e,0xb7,0x43,0x1f,0xfc,0x05,0xf2,0x58,0x77,0xea,0x92,0xc0,0x67,0x0e,0x69,0xf1, - 0xc9,0xa9,0x4f,0x80,0xfa,0x7a,0x49,0xaa,0xa0,0x5f,0x91,0xdd,0xaa,0x40,0x16,0xe8,0xd6,0xea,0xdb,0x58, - 0xe6,0x21,0xfa,0x36,0xd6,0xba,0xb7,0x0b,0x0b,0x25,0xb4,0x7f,0x08,0x09,0x83,0x6b,0x89,0xcb,0x27,0x5b, - 0x13,0x67,0xbe,0x22,0x22,0x12,0x44,0x66,0x27,0x49,0xf3,0x7b,0xad,0x8a,0x34,0xc5,0x91,0xb4,0xa9,0x4c, - 0x4b,0xdc,0xfa,0x35,0x78,0x46,0x04,0x96,0xcc,0x6d,0x88,0x01,0xa5,0x57,0x62,0x11,0xff,0x43,0xed,0x16, - 0xec,0x0e,0x3f,0xc3,0xcf,0x32,0x2a,0x78,0x31,0xd3,0xdc,0x5f,0x36,0x0d,0xb7,0x14,0x58,0x87,0x5f,0x8b, - 0x84,0x18,0xa6,0x79,0xd6,0x26,0x90,0x5e,0x0f,0x21,0x20,0xa6,0xdf,0x3b,0x78,0x04,0x5a,0x1a,0xa0,0xb3, - 0x6c,0x78,0x9e,0x6a,0xb1,0xdc,0xee,0x44,0x4b,0x61,0x98,0xc1,0xa2,0x87,0x64,0x1e,0xda,0x6c,0xa5,0x05, - 0x34,0xca,0xca,0x78,0x9d,0xb4,0x97,0x15,0x7f,0x22,0x04,0x4e,0x20,0x63,0x64,0x69,0xb0,0xcd,0x85,0xa2, - 0xa6,0xa3,0xb2,0xf2,0x6b,0x31,0xa2,0x7c,0x9b,0x32,0x14,0x5d,0x84,0xae,0xd4,0x0a,0xfd,0xb5,0x48,0xf3, - 0xb4,0x9d,0x8e,0xb7,0xe8,0x0f,0x15,0x11,0xaa,0x4f,0xbd,0x00,0xd2,0x1a,0x0d,0xf9,0x7a,0x06,0x5a,0x57, - 0x23,0xb4,0xb7,0x2d,0x37,0xa7,0x1b,0xb3,0xa1,0xa9,0x93,0x5a,0xe3,0xb7,0x5e,0xd7,0xe6,0x31,0x02,0x87, - 0xd8,0x16,0x37,0x38,0xb8,0xe7,0x39,0x6e,0xcc,0xd4,0xc8,0x03,0xbd,0xf7,0x4e,0x8d,0xb0,0xae,0x54,0x7c, - 0xa3,0x7a,0x6a,0x4a,0xe9,0x99,0x4e,0x18,0xa9,0x10,0x76,0x7b,0x86,0xd7,0x05,0x9c,0x3b,0x0d,0xb7,0x6d, - 0xa9,0x95,0xa2,0xbc,0xf7,0xcf,0xb5,0x4d,0xeb,0xeb,0xd4,0xf4,0xcc,0x47,0x35,0x7f,0x49,0x73,0xf1,0x19, - 0x6e,0xd4,0x4c,0x88,0x5d,0xaa,0xa2,0x45,0xe1,0x40,0xc5,0x09,0x84,0xb1,0xd9,0x66,0xa4,0xfe,0x84,0xbc, - 0xc0,0xd2,0x31,0xe1,0x6e,0xb6,0x5e,0xc3,0x9a,0xe3,0xec,0xe8,0xf1,0xeb,0xa3,0x67,0x2f,0xcf,0xce,0xfe, - 0x03,0xe9,0x83,0xa9,0xed,0xc1,0xff,0x84,0x27,0xe9,0xfe,0xef,0xa7,0xf8,0xf3,0xcb,0xf4,0x97,0xbd,0x5f, - 0xf6,0x7f,0x19,0x9e,0xfe,0x2d,0x8e,0xc6,0xbf,0x3c,0xf8,0xe5,0x81,0x21,0xfd,0xb2,0xff,0x48,0xbc,0xe1, - 0x10,0xe3,0xd8,0x33,0x24,0xfa,0xe5,0xc1,0x9e,0x90,0xcc,0x7b,0xa0,0x3f,0x1b,0x9f,0x20,0x7e,0xb0,0x27, - 0xa4,0xee,0x1f,0x4c,0x4e,0xdb,0x6a,0xa7,0x45,0xa9,0x65,0x9b,0xa2,0xc7,0x78,0x33,0xd9,0x3a,0x32,0x02, - 0x31,0xf6,0x0d,0xf6,0x42,0xff,0x73,0x62,0x74,0x89,0x8f,0xf1,0x53,0x62,0x58,0x37,0xb5,0xa8,0x2c,0x37, - 0xe9,0x50,0x8f,0x78,0xe6,0xd4,0x7f,0x09,0x1d,0x42,0x90,0x69,0x65,0x89,0xbb,0x9e,0x82,0xd5,0x12,0x45, - 0x10,0x6a,0x8a,0xbc,0x89,0xa8,0x0b,0x3a,0xe5,0x89,0xee,0xde,0x59,0xac,0xea,0x66,0xe7,0x3c,0xdb,0x49, - 0xad,0xcd,0xd4,0x30,0xd0,0x66,0x28,0x23,0xee,0xb5,0x16,0x0c,0x26,0xbd,0xca,0x2c,0xcc,0x15,0x4d,0x90, - 0x7c,0x50,0x24,0xf8,0x60,0xd4,0xce,0x86,0x14,0x2d,0xad,0x81,0x96,0x42,0xf3,0xc8,0x55,0xe5,0xbc,0x1f, - 0x6d,0x1a,0xc4,0x08,0x0e,0x41,0x7f,0xd1,0x3e,0x1d,0xbb,0xb8,0xbc,0xa3,0x4e,0xd1,0x56,0x15,0x5c,0x8d, - 0x16,0xd9,0xba,0x14,0x1c,0x5a,0x75,0xb9,0xaa,0x26,0x99,0xff,0x95,0x6f,0x6c,0x70,0xdb,0xe0,0xc0,0x60, - 0x7b,0xa2,0xaa,0x85,0x8a,0xb2,0x04,0x87,0xaa,0x1c,0x2a,0x0c,0x3f,0x77,0x1e,0x54,0x7f,0x61,0x6f,0xec, - 0xf4,0xa0,0x28,0x63,0x50,0xc6,0x62,0xc7,0x06,0x36,0x65,0xd0,0x7b,0x76,0x5b,0xb8,0xdb,0x07,0xa2,0x47, - 0x99,0xf9,0xbf,0xe4,0x06,0xd1,0xc0,0xb1,0xe1,0xc7,0x55,0xd6,0xef,0xd6,0xd0,0x0f,0x8c,0x59,0xaf,0x1d, - 0xec,0x7a,0x8d,0xd1,0xb1,0x45,0xac,0x67,0x0c,0xd9,0x2d,0x29,0x32,0x2f,0x23,0x09,0xdb,0xb4,0x77,0xa5, - 0x61,0xb9,0xda,0x95,0xf8,0x66,0xed,0x5b,0xd6,0x05,0xeb,0xf5,0xb6,0x1d,0x2f,0xa5,0xd5,0x37,0x8b,0xf3, - 0x72,0xde,0x4e,0x3b,0x2f,0xcb,0x79,0x96,0x16,0xbd,0x76,0xed,0xff,0x3b,0x96,0xf0,0x22,0x61,0x63,0xe3, - 0xdb,0x45,0xd1,0x6b,0x08,0x6f,0x88,0x68,0x36,0x84,0x60,0x9b,0xbc,0xd0,0x32,0x50,0x8e,0x38,0xfe,0x26, - 0x39,0x18,0x0c,0x5e,0x11,0x89,0x3f,0x9c,0xcd,0x4b,0x58,0x82,0xb1,0x32,0x9d,0x38,0xd6,0xfa,0x79,0x5e, - 0x30,0xfd,0xeb,0xd5,0x5a,0x77,0xba,0x4e,0x3d,0x1f,0x07,0x41,0x8f,0x67,0xcb,0xb8,0x2b,0xf2,0x13,0x29, - 0xf8,0xc3,0x28,0xb6,0x5d,0x70,0xb5,0x4e,0x7a,0xfb,0xea,0xa4,0xd8,0xc4,0xd1,0xa4,0xaf,0xa9,0x63,0xe3, - 0x8c,0x08,0x53,0xfb,0xd5,0x5c,0x5b,0x48,0x5a,0x8b,0x4c,0x6d,0x1a,0x2f,0x5c,0x7e,0x28,0xda,0x83,0x2a, - 0xb1,0x32,0x2c,0x05,0x31,0x67,0x72,0x30,0xca,0x1f,0x55,0xc6,0x94,0x2c,0x17,0xc3,0xcc,0x93,0xfc,0xf4, - 0x94,0x70,0xa5,0xe3,0x17,0xfa,0xb4,0xef,0x27,0x59,0x5b,0x90,0x75,0xba,0xe9,0x33,0xee,0xa0,0x62,0xa7, - 0x1b,0xd7,0xc7,0x95,0x75,0x47,0x30,0x7e,0x04,0x46,0xa5,0x9a,0x79,0x22,0x2e,0x16,0x07,0x7f,0xb3,0x7f, - 0x68,0xa5,0xc4,0xdc,0x65,0x3a,0x71,0x0a,0x75,0x18,0x79,0xb5,0xcd,0x5a,0x67,0xd6,0xb9,0x59,0x75,0x6c, - 0x72,0x5b,0x66,0xea,0xe6,0xb2,0x67,0x3e,0x46,0x5d,0xb4,0xe1,0x59,0xb4,0x9d,0x14,0xa7,0x30,0xec,0xa4, - 0x1f,0x58,0x08,0x47,0x7e,0xc3,0xcb,0x2d,0x63,0x54,0x2d,0x0d,0xa9,0x7a,0x0c,0x85,0x35,0x85,0x31,0xae, - 0xbe,0x39,0x1c,0x3b,0xe3,0x56,0x5b,0x0e,0x38,0x80,0xfb,0xcd,0xe6,0xbd,0xe6,0xd9,0xca,0x79,0x8b,0xe1, - 0x99,0x54,0x64,0x3d,0x2f,0x54,0xe1,0x3a,0x72,0x29,0x1d,0x21,0x6e,0x7c,0xbd,0x3e,0x18,0xb9,0xa5,0x37, - 0x65,0xf7,0x1b,0x5a,0x71,0x67,0x99,0x5b,0x44,0xa3,0x62,0x7f,0x7f,0x14,0x55,0x3c,0xa8,0x93,0x62,0xaf, - 0xb1,0x66,0xb7,0x95,0xab,0xf4,0xaa,0x03,0x48,0xf0,0xde,0x68,0x22,0xf8,0x76,0x24,0x98,0x0d,0x2b,0x19, - 0x75,0x5f,0x2c,0x5a,0xa2,0x09,0x58,0x4d,0x17,0x04,0x58,0xc5,0x23,0xe7,0x2c,0x42,0x80,0x85,0x0a,0x06, - 0x83,0x2b,0x68,0x1f,0x21,0x8c,0xb4,0xd0,0xe5,0xaa,0xb9,0x30,0xe7,0xb0,0x4b,0xba,0x71,0x00,0x83,0x6d, - 0x18,0x19,0x2c,0xa5,0x8f,0x44,0x3e,0xe7,0x2a,0xfa,0x11,0xa0,0xd9,0xa5,0x83,0x70,0xb7,0x32,0x85,0x88, - 0x6b,0xd9,0xad,0x06,0x03,0xbb,0xc1,0xa8,0x02,0xfd,0x4c,0xa5,0xa1,0xc3,0x64,0xdd,0x43,0xc2,0x53,0xe3, - 0x89,0xfb,0x89,0x6d,0x69,0x27,0x49,0xdd,0xe5,0x60,0x90,0x3a,0x80,0xd4,0x6b,0x02,0xf9,0x95,0x3c,0x82, - 0x43,0xca,0xae,0xb2,0xea,0xc6,0x3b,0x9f,0x3d,0x02,0x93,0xc7,0x81,0x61,0x6f,0xa4,0xb2,0xf5,0xda,0x54, - 0xb6,0x7b,0x38,0x12,0x81,0x86,0x06,0xcf,0x8f,0xd9,0x0d,0xb0,0x0a,0x71,0x4b,0x7e,0x82,0xb3,0x2b,0xaf, - 0x5d,0xdb,0x13,0xdb,0x76,0xdd,0x6d,0xbb,0xd5,0x32,0xbc,0x72,0x74,0xe3,0xce,0xf8,0xcb,0xb4,0xee,0x81, - 0xf5,0x79,0x17,0x83,0x6c,0xad,0x21,0x75,0xdd,0xd4,0x17,0x59,0x77,0x3a,0xdd,0x33,0xe2,0x85,0x6d,0x4d, - 0x67,0x6e,0xd7,0xd1,0xf8,0xb6,0xcd,0xc6,0x1b,0x36,0x99,0x66,0x72,0x4c,0x6f,0x08,0x1c,0x7e,0x6e,0x4f, - 0xf8,0x9b,0xed,0xda,0xd5,0x05,0x51,0x4f,0x10,0xf9,0x02,0xaa,0x03,0x3b,0x2f,0x5f,0xfc,0x1d,0xab,0xb1, - 0x5e,0x7f,0xfd,0x15,0x7e,0xdd,0xe7,0xc7,0x46,0x6f,0x17,0xdd,0xea,0x09,0x95,0xd3,0xd7,0xb8,0x1d,0x71, - 0x36,0xd5,0x3f,0x5f,0x65,0x71,0xa1,0x32,0x3a,0xd0,0xb2,0x2a,0x3d,0x9f,0x67,0xf1,0xee,0x6e,0xa5,0x20, - 0xd1,0x90,0x97,0x03,0x6d,0x09,0xb1,0xd2,0x99,0x07,0x1b,0x0f,0xc9,0x7c,0xf4,0xce,0xa3,0x1e,0x85,0xf3, - 0x60,0xf0,0xa0,0x60,0xbf,0x08,0xd6,0x89,0x3e,0xd0,0x14,0xba,0x6f,0x28,0xe8,0xaa,0x3a,0xea,0x58,0x38, - 0x65,0xb4,0x16,0x7c,0x78,0xab,0xf6,0x8f,0x3b,0xb9,0xdc,0xb7,0x9f,0xb4,0xa9,0x80,0x46,0x01,0x13,0x23, - 0xdc,0x79,0x23,0x66,0xbd,0x1a,0x15,0xc0,0x82,0x72,0xd8,0xa4,0x17,0xca,0xb2,0xc4,0x93,0xcb,0x7c,0x3e, - 0xad,0xb2,0x02,0xcc,0x17,0xac,0x3f,0x08,0x92,0xe7,0x0b,0xc5,0xca,0x4d,0x7e,0x47,0x46,0x5a,0xdf,0x14, - 0x93,0xe7,0x29,0xcc,0xe4,0x6f,0x9c,0x3a,0x75,0x58,0x80,0xe1,0x46,0xd5,0x22,0xc9,0x6b,0xf2,0x09,0x30, - 0xb9,0x7e,0xa4,0x54,0x02,0x5e,0x4a,0xa0,0xbf,0x5c,0xe2,0x88,0x58,0x5b,0xea,0x0f,0x17,0xd1,0xcf,0x94, - 0x3e,0x2b,0x8e,0xa4,0x21,0x4a,0xb7,0xcf,0x9c,0xae,0x3b,0xce,0xe9,0x76,0x10,0xf4,0xfc,0x7e,0x42,0x6b, - 0xf7,0x62,0xca,0xe9,0xfa,0x59,0xea,0x9f,0xd3,0x78,0xd9,0xf3,0xb2,0x11,0x75,0xac,0x1e,0x18,0xbd,0x54, - 0xf6,0x25,0x79,0xef,0xe5,0xc0,0xb0,0x28,0x82,0xf2,0xb6,0xf0,0x0b,0x17,0x7e,0xe1,0xa2,0x5d,0x98,0xf0, - 0x8d,0x9b,0xf1,0xf7,0xdd,0x1d,0x63,0x91,0x74,0x1b,0xed,0xea,0x83,0xb6,0xe0,0x13,0x16,0xe7,0x6b,0x42, - 0x6b,0x45,0x3f,0x9e,0xbf,0x88,0x57,0xeb,0x63,0x8b,0xf4,0xc4,0x25,0x68,0x37,0x6c,0x39,0xf0,0x10,0x73, - 0xaf,0x17,0xd9,0xee,0x2c,0x08,0xe5,0xce,0xce,0xca,0xf3,0xb3,0xb3,0x80,0x8d,0x55,0xe4,0xd9,0xff,0xa8, - 0xae,0xc6,0xe8,0x9d,0x64,0xc4,0x29,0x91,0xed,0x97,0xe5,0x6a,0x3e,0xa5,0xd9,0x26,0xc4,0x41,0xb3,0xb5, - 0xfb,0x5b,0xc1,0x46,0x82,0x5d,0x6c,0xb8,0x5e,0x83,0xd8,0xa2,0x1c,0xbd,0x79,0xf2,0xfa,0x19,0xbc,0x5a, - 0xea,0xfc,0x9c,0xad,0x6d,0xe9,0x43,0x76,0x52,0x20,0x2a,0x16,0xf3,0xc6,0x83,0xae,0x59,0x77,0x89,0x25, - 0xe0,0x79,0xbd,0x5a,0x1c,0x95,0xab,0xa2,0xd9,0xdb,0xa3,0x83,0xcb,0x8d,0xf1,0x9e,0xaf,0x4e,0x17,0x44, - 0x8c,0x6f,0xff,0x55,0x10,0xfa,0xd5,0x4d,0x5d,0x64,0x8d,0xe7,0x1e,0xf8,0x34,0xab,0x27,0x55,0x0e,0xcb, - 0x79,0x9e,0x1d,0x46,0xf7,0x29,0xa1,0xfb,0x43,0x22,0x17,0xd3,0xa1,0xbf,0x39,0x8d,0x84,0x38,0x25,0x8c, - 0x8d,0x4a,0x08,0x95,0xf2,0x63,0x4d,0x8f,0xf3,0x64,0x37,0x1f,0x0c,0x1e,0xe3,0x24,0xfc,0x0c,0x36,0xf0, - 0xb1,0xc0,0xd6,0xc6,0x57,0x54,0x65,0xd7,0xb4,0xba,0x49,0xea,0x71,0x6d,0x88,0x4e,0xa7,0xfe,0xf8,0x57, - 0x41,0x1b,0xad,0xa2,0xf2,0x34,0x37,0x25,0xb5,0xb4,0x84,0xe5,0x46,0xa4,0xe6,0xf4,0x3a,0xc7,0xab,0x4b, - 0xea,0x9e,0x38,0x83,0x81,0x47,0xf1,0xb7,0x20,0x4c,0xef,0x7f,0x71,0x4b,0x6a,0xba,0xee,0x48,0xb4,0x04, - 0x0d,0x0c,0x3b,0x31,0xf1,0xb2,0xd6,0xee,0xe9,0x73,0x2d,0x42,0x36,0xce,0x46,0x18,0x10,0x9a,0xb3,0xb0, - 0xa7,0xf6,0x47,0xd9,0x18,0xf2,0xa6,0x3d,0x4c,0x28,0x70,0xaa,0xf5,0xba,0xd9,0x65,0x13,0xd4,0x5d,0x3c, - 0x87,0x93,0xf1,0xc4,0xd1,0x61,0x31,0x75,0xc7,0xce,0x79,0x03,0xab,0xff,0xa2,0x6c,0x40,0xff,0xb2,0xe5, - 0xbd,0x07,0x0e,0x6f,0x3c,0xf3,0x80,0x2e,0x08,0xd2,0xda,0x85,0xee,0xb8,0xb1,0x67,0x2f,0xd3,0xe8,0x8b, - 0xf4,0x93,0x25,0x25,0x15,0x4b,0xf0,0x34,0xa9,0xd8,0xa8,0x43,0xaa,0x4e,0x15,0x80,0x93,0x86,0xfd,0x4f, - 0xb1,0x8f,0xf8,0xa9,0xeb,0x32,0xea,0xaa,0x16,0x03,0xd9,0x42,0x8b,0x8e,0xcc,0x6e,0x71,0x9e,0x49,0x02, - 0xe8,0xeb,0x75,0x05,0x4b,0x2d,0x0d,0xd7,0xe3,0x22,0xae,0xc6,0xe1,0x3d,0x42,0x30,0x7c,0x86,0xf0,0x28, - 0x08,0x19,0x61,0xae,0xcd,0x58,0x41,0xd8,0x19,0xeb,0xdb,0xc2,0xc3,0xd7,0xcf,0xec,0x3e,0xbf,0x63,0xc8, - 0xfe,0x68,0x3c,0x53,0x07,0xb7,0x91,0x47,0xae,0x4f,0xfe,0x5e,0x5b,0xaf,0x85,0x34,0x86,0x0d,0x9a,0xb1, - 0xf6,0x6d,0x4e,0x05,0xcd,0xf9,0x1d,0xf3,0x57,0xe0,0xad,0xed,0x8c,0x6f,0x9e,0x61,0xe1,0x0e,0x1b,0xd5, - 0x6d,0x4d,0x4d,0x93,0x40,0xe3,0x34,0xaa,0x1f,0xa5,0x06,0x0a,0x6b,0x60,0x37,0x10,0x96,0x49,0x7a,0x52, - 0x9f,0x9e,0x02,0x40,0x41,0x2b,0xcc,0x98,0x14,0x1a,0x97,0x61,0xc5,0xfe,0x8d,0xd0,0xa5,0xbc,0x0d,0xb1, - 0xf1,0x63,0x2c,0x7b,0x41,0x0f,0x3d,0x34,0xe5,0xd3,0x8e,0x88,0xae,0x18,0x77,0xf6,0x5c,0x95,0xf4,0xfa, - 0xc9,0x19,0xd7,0x61,0x76,0x96,0xa3,0x1e,0xf4,0x1d,0xc8,0xe3,0xcc,0x2b,0x94,0x39,0x12,0x5d,0xf7,0x2a, - 0xdf,0xc4,0xcd,0x38,0xf3,0xdb,0x33,0xae,0xe4,0xe1,0xe7,0x9a,0x64,0x1a,0x06,0x7f,0xd0,0xf0,0xe7,0x9a, - 0xf5,0x0a,0x12,0xdb,0x17,0x37,0xb1,0x37,0xec,0x5f,0xbb,0x72,0xb8,0x71,0x66,0x54,0xf8,0xb4,0x9d,0xba, - 0x68,0x62,0xdc,0xc4,0xd0,0xf3,0x7b,0xdf,0xbf,0x70,0xe4,0x8e,0x08,0x7c,0xda,0x5c,0x8f,0x96,0x14,0x78, - 0xba,0xa0,0x2b,0xb8,0x55,0x61,0xcc,0xb6,0x8a,0x97,0x66,0xe6,0x3d,0x29,0x80,0xad,0x6e,0x52,0x11,0x7a, - 0x21,0xf8,0xaa,0x46,0x73,0x78,0xf0,0xd1,0x01,0xc5,0x6e,0x8f,0xf8,0x83,0x46,0xfb,0xac,0xf9,0x80,0xfd, - 0x88,0x43,0x19,0x6a,0xef,0xa2,0xae,0xe8,0xc5,0x40,0x34,0xed,0xc7,0x65,0x2d,0x96,0x40,0xb2,0xbe,0x0c, - 0x70,0xb7,0x9b,0xd1,0xd6,0xfe,0x28,0xc4,0x29,0x9d,0x8e,0x58,0x8b,0xfe,0xc0,0xd5,0x74,0x05,0x14,0xa1, - 0xc4,0x75,0xc0,0x2e,0x48,0x4f,0xae,0x0b,0x82,0xbb,0xd3,0xe4,0x16,0x59,0xa2,0xe6,0x72,0x96,0x46,0xa5, - 0xa9,0x91,0xcf,0x0d,0xa0,0x88,0x22,0xc2,0xb7,0xf5,0xa9,0xe2,0x0f,0x6b,0xfa,0x10,0x60,0x3b,0xce,0x63, - 0xf9,0x3e,0xdf,0x8c,0x74,0x7f,0x93,0x74,0x03,0x94,0x79,0xc7,0x90,0xf2,0x02,0x73,0xef,0x8f,0xc9,0x26, - 0x7e,0x6e,0x60,0x32,0xd3,0x4c,0x30,0xf8,0x9c,0x39,0x71,0x6d,0xcc,0x99,0xdf,0xc2,0xb8,0x26,0xc6,0xf3, - 0xa6,0x7f,0x08,0xa9,0x0c,0x41,0x1f,0x83,0xc5,0x49,0x4a,0x3c,0x1b,0xfd,0xa1,0x31,0xd4,0x11,0xad,0xb7, - 0x7c,0x9f,0x12,0x8a,0x8f,0x62,0x79,0xae,0x37,0x9b,0xee,0x30,0xcc,0x20,0xe8,0x80,0xcc,0x2b,0xea,0x2f, - 0x51,0xaf,0x7a,0x71,0x4c,0x2b,0x95,0xd7,0x8a,0xcc,0xf4,0xa8,0x67,0xf1,0x73,0x90,0x05,0x1c,0x5d,0x03, - 0x06,0xfe,0x71,0xae,0x56,0x4b,0x58,0x17,0xd2,0x14,0x46,0x50,0xfa,0xeb,0xf8,0x1b,0x8d,0x0e,0x2f,0xc1, - 0x4d,0xe4,0x6c,0x23,0x05,0x28,0xcc,0x61,0x1c,0xa8,0x9a,0xe1,0x22,0xff,0x44,0xa4,0x8c,0x1b,0x1f,0x9d, - 0x7d,0x75,0x62,0x92,0xcd,0x14,0xa5,0x8f,0xea,0x51,0x0a,0x3e,0x93,0x3f,0x35,0xb9,0x34,0x6e,0xaa,0x84, - 0x9b,0x99,0xd0,0x49,0x44,0xb3,0x8e,0x5a,0x26,0x12,0x91,0x80,0x1e,0x22,0xf7,0xde,0x44,0x40,0x54,0x13, - 0x22,0x79,0x38,0x5d,0xef,0x90,0xb9,0xdb,0x18,0xcf,0xdd,0xde,0xea,0xf3,0xb6,0xb1,0x73,0x01,0x64,0x8b, - 0x81,0xd0,0x50,0x30,0x00,0x23,0xb5,0x01,0xef,0x2c,0x94,0xce,0x35,0x18,0x34,0x53,0xa2,0xf4,0x4a,0x94, - 0x52,0x22,0x4d,0x8e,0x8b,0xb0,0x74,0xd2,0x09,0x2a,0x95,0x12,0xf4,0xd1,0x58,0xe2,0x9c,0xc5,0x12,0x28, - 0x89,0xbf,0xa9,0x2f,0x5c,0x79,0xdd,0xdd,0xfa,0xcd,0x49,0x76,0xaa,0xca,0x64,0x97,0x56,0x4d,0x31,0x5f, - 0x0b,0x69,0x0c,0x9a,0x7d,0x17,0x3e,0x11,0x79,0x9c,0xca,0x87,0x7c,0x02,0x82,0x3e,0xa1,0xf3,0x11,0x0d, - 0x05,0xda,0xbd,0x32,0x88,0xc6,0x29,0x31,0x6f,0xf1,0x3b,0x2d,0x24,0x33,0x45,0x61,0xf8,0xbf,0xcb,0x2a, - 0xed,0x94,0x7e,0x8e,0xb4,0xff,0x6b,0x9a,0x30,0x21,0x6d,0x25,0x92,0x69,0x74,0x9b,0xf6,0x99,0xfe,0xcd, - 0xe0,0x01,0x65,0x5b,0x30,0x9b,0xa2,0x31,0x3e,0x9d,0xf6,0x1c,0x00,0x11,0x7b,0x4f,0x23,0x0c,0xd9,0x69, - 0x12,0x35,0xc1,0x89,0x3c,0x7b,0xb2,0x45,0xc0,0x60,0x45,0x9d,0xc3,0x33,0xce,0xa1,0xd4,0xb1,0xf7,0xdc, - 0x27,0xa2,0x85,0xcf,0xf0,0x73,0x27,0xdc,0x4f,0x5e,0x85,0x8d,0x0c,0x76,0x5c,0x59,0x6a,0xa7,0x22,0x70, - 0x05,0x4a,0xca,0x22,0xcd,0xaf,0x77,0x69,0xe8,0x51,0x37,0x01,0x7c,0xc8,0xe3,0x30,0xa5,0x89,0xef,0x66, - 0xd4,0xce,0x6c,0xc2,0xae,0xde,0x2b,0xcf,0x3e,0x0a,0xa3,0x77,0xdc,0xa1,0xd6,0xf2,0xb3,0x43,0xb7,0x2d, - 0x1e,0xfe,0x72,0xbd,0x17,0x3d,0xf0,0xf0,0x78,0x73,0x72,0x48,0x63,0x0b,0x5c,0x85,0xef,0xdc,0x81,0xde, - 0x3d,0x36,0x0c,0xc0,0xbd,0x12,0xe9,0xe6,0x2b,0xe3,0xf5,0x6a,0xc2,0x7c,0x54,0x8e,0xb0,0x2c,0x1e,0x55, - 0x86,0xf3,0x7f,0xc5,0xc2,0x30,0xf3,0x81,0x13,0xc5,0x58,0x49,0x82,0x6d,0xfa,0x89,0xb7,0xe2,0x8d,0x43, - 0x18,0x09,0xad,0x6f,0x52,0x0d,0xef,0x2d,0x53,0x62,0xa6,0x9a,0x91,0x33,0x20,0xb2,0x4b,0xc9,0x3e,0x04, - 0x47,0xe9,0x92,0x2a,0xcc,0xa6,0x8c,0x0b,0xec,0xd7,0x25,0x21,0xc4,0xf2,0x51,0x6e,0xfa,0x55,0x22,0xf4, - 0x48,0x75,0xc3,0xc3,0x83,0x09,0x24,0x76,0x84,0xac,0x55,0xa5,0xa4,0x71,0xdd,0x41,0x27,0xf1,0xf8,0x89, - 0x7a,0x55,0xa9,0xa0,0xd5,0xc6,0xce,0x65,0x59,0x7e,0x84,0x3f,0xfc,0x4f,0xba,0xcb,0x6e,0x10,0x3f,0x79, - 0x83,0x78,0x56,0x48,0xd7,0xbe,0x13,0x9d,0x3b,0xb7,0xac,0xe7,0xb0,0x93,0xe5,0x07,0x2e,0x91,0x0a,0x6d, - 0xfb,0x3f,0x1a,0xa9,0x6f,0xa0,0x4d,0xad,0xfd,0xef,0xa8,0x0f,0x3f,0x6e,0x75,0xe1,0x47,0xaf,0x0b,0xbb, - 0xbf,0x42,0x9e,0xf5,0xa2,0xa0,0xfd,0xd7,0xe3,0x63,0x04,0x2f,0x76,0xda,0xd1,0x5a,0x43,0x93,0x8d,0xf4, - 0xbb,0x34,0xd1,0x12,0x2e,0x7f,0x47,0xe4,0xcc,0xb2,0x4a,0xb4,0xd8,0x29,0x4b,0xa6,0x95,0x71,0x3b,0x8f, - 0x46,0x53,0x23,0x09,0x4e,0x9c,0x30,0xb1,0xa1,0xe7,0xc6,0x49,0x81,0x1a,0x96,0xe4,0x35,0xa7,0xa1,0x57, - 0xe5,0x07,0xef,0xd4,0xc3,0xa2,0x51,0x35,0x6c,0x4b,0xd1,0x56,0x24,0x69,0x67,0x44,0x2b,0xe0,0xb4,0xf3, - 0x22,0xd0,0x12,0x14,0x74,0x04,0x1c,0xe7,0x13,0xac,0x06,0x9f,0x6a,0x05,0xfb,0xc4,0x43,0x55,0xb3,0x04, - 0x5f,0x81,0x3e,0x1f,0xa8,0xcb,0x6a,0xbc,0xaa,0xc2,0x28,0x9e,0x57,0x30,0xd0,0xd9,0xcd,0xfa,0xf5,0x33, - 0x5a,0x93,0x16,0x79,0x72,0x94,0x3e,0xe5,0x5a,0x01,0xe5,0x9a,0x1b,0xc6,0xef,0x48,0xb3,0x05,0xc0,0x77, - 0x29,0x4b,0x8a,0x94,0x77,0x48,0x05,0x43,0x62,0x41,0x21,0x7d,0x04,0x23,0x6c,0x39,0xe4,0xe7,0x55,0xf9, - 0x3b,0xdc,0xb1,0xc5,0xa6,0xaa,0xd1,0xb4,0xba,0x39,0x8f,0x1b,0x9f,0x1d,0xcb,0x19,0xca,0x0b,0x58,0x10, - 0xd2,0xe1,0x6c,0x0c,0x3b,0x0b,0x78,0x1f,0xd0,0x3b,0x5c,0x45,0x52,0x4d,0xeb,0x34,0x2d,0x5a,0x87,0x3a, - 0xc7,0x24,0x97,0x17,0x69,0xa7,0x4a,0xc2,0xb2,0x43,0x9f,0x47,0x5b,0xdf,0x94,0xf4,0xd5,0x29,0x47,0x56, - 0x88,0x68,0xd6,0xcf,0xab,0x88,0xfe,0x0f,0x27,0x74,0x14,0x54,0xfe,0x82,0xfe,0x10,0xb6,0x63,0x68,0x69, - 0x95,0x9e,0x13,0x6e,0x2b,0x10,0x06,0xb3,0x82,0x8f,0xeb,0xdd,0x2d,0x1a,0xc6,0x8a,0xae,0x3d,0xc5,0x9b, - 0x93,0xed,0x8d,0x1c,0x3e,0x28,0x34,0xe8,0xf5,0x2a,0x22,0x20,0x26,0xf1,0x6b,0xc8,0xac,0x4c,0x9c,0x9b, - 0x46,0x38,0x03,0xd7,0xe3,0xdf,0x42,0x2d,0x4c,0xb0,0xf6,0xff,0xaa,0x56,0x74,0xe0,0x73,0x63,0xa9,0x9c, - 0xee,0x34,0xf5,0xa0,0x06,0x26,0x4c,0x11,0x11,0x2d,0x70,0x56,0x01,0x39,0x67,0x21,0xdb,0xc8,0x65,0x74, - 0xe4,0x8f,0xe9,0x6f,0x8d,0xba,0x71,0x1e,0x4a,0xe9,0xe4,0x07,0x2c,0x8b,0xaa,0x88,0x5f,0x67,0xe3,0xcd, - 0x5a,0xcd,0x87,0x44,0x8d,0x67,0x0a,0x01,0x5e,0x18,0x85,0xd0,0x13,0x7c,0xe2,0x88,0x3e,0xe2,0x27,0x98, - 0xa9,0x47,0x51,0x5c,0xd3,0x29,0x32,0xa1,0x5a,0x26,0xdc,0x55,0xa2,0xf6,0x51,0xd7,0x24,0x8a,0x5c,0x7f, - 0x0a,0x5e,0x8f,0x14,0xe4,0x69,0x1e,0x86,0xba,0x37,0x91,0xb4,0x22,0x1d,0x34,0x2d,0x78,0x0b,0xf3,0x7d, - 0xa8,0x87,0xe8,0xe9,0xb5,0xa2,0xdb,0xb2,0x5f,0x88,0xaa,0x56,0x32,0x1a,0xa2,0x1d,0x36,0x55,0x5b,0x80, - 0x04,0x81,0x18,0xe1,0x5d,0xc8,0xff,0x86,0xc0,0x80,0x30,0xe1,0x70,0x6f,0x44,0x25,0x45,0xfa,0x94,0x83, - 0x3d,0x21,0xad,0xc3,0x88,0xa7,0xa7,0xa6,0xd9,0x40,0x8f,0xe3,0x46,0xc6,0x05,0x29,0x03,0x3d,0xb1,0xa5, - 0xcc,0x94,0x66,0xaf,0xa6,0x11,0x22,0x5d,0x76,0x7f,0x4a,0xb3,0x80,0x0f,0x26,0x8a,0x3e,0x51,0xb5,0x2e, - 0x86,0x4d,0xcc,0x02,0xb0,0xda,0x8d,0xea,0x5b,0xe6,0x02,0xf5,0xc8,0xb0,0x63,0x00,0x44,0x42,0x2d,0x80, - 0x9a,0x71,0xec,0x39,0xc2,0xa3,0x00,0xec,0xcb,0xf5,0x5a,0xf3,0xb5,0xfc,0x4a,0x67,0x90,0x2e,0x9c,0x77, - 0x0b,0xe7,0xed,0xc2,0x39,0x0a,0x6f,0xb6,0x0f,0xac,0x9f,0x3d,0xa9,0xab,0x58,0xe9,0xb3,0x80,0x96,0x30, - 0x12,0x36,0xb6,0x36,0xb1,0x37,0x22,0x4b,0xf7,0xd9,0xbf,0x7d,0x66,0x2d,0x04,0x53,0x9e,0xd5,0xaf,0x58, - 0x29,0xbc,0x5e,0x7f,0x8b,0x40,0x2e,0xf2,0x02,0x9d,0x64,0x76,0xf2,0x9e,0xd5,0xa2,0xf6,0x5c,0x3f,0x4e, - 0x2f,0x24,0x1a,0x00,0x1c,0x55,0x85,0xfa,0xa1,0x6d,0x00,0x0f,0x02,0x43,0x0c,0x83,0xea,0xf0,0x38,0xbb, - 0x7f,0xb5,0xc2,0xbc,0xd8,0xde,0x80,0x56,0xf0,0x85,0xb3,0xee,0x83,0x7f,0x6a,0xbb,0x85,0xae,0x70,0x21, - 0xfa,0x8c,0x80,0xdf,0x70,0x29,0xa0,0x55,0x79,0x25,0x2a,0x76,0x8b,0x80,0xf8,0xb4,0x23,0x4d,0xa6,0x4d, - 0xf3,0x2f,0xca,0xb5,0x13,0x5e,0x79,0x94,0x68,0x96,0x99,0x83,0xab,0x18,0xdf,0xe0,0x78,0x27,0xb8,0x13, - 0x79,0x90,0xbc,0x75,0x74,0x74,0x8d,0x64,0xde,0x72,0xe6,0x6c,0xd6,0xc9,0x2d,0x6c,0x65,0x37,0xd4,0x31, - 0xc5,0x3b,0x5d,0xcc,0xad,0x28,0x99,0xc8,0x5a,0x4a,0x15,0x9a,0xcf,0xd3,0x5a,0x67,0x3e,0x1f,0x26,0x9c, - 0xd6,0xae,0x3b,0x0e,0x3c,0x0c,0xd4,0x0a,0x69,0x66,0x84,0x68,0x5a,0x1e,0xc9,0x9c,0x6d,0x9a,0x94,0xbc, - 0x31,0x50,0x05,0x4b,0x11,0xd3,0xa6,0xa9,0x6a,0xfb,0x40,0x08,0xac,0x6c,0xac,0x1f,0xb1,0x9f,0xa8,0x4a, - 0x23,0x3f,0x17,0x7b,0xbc,0xd2,0xc9,0xb6,0x77,0x59,0x51,0x01,0xe9,0xa5,0xe8,0x8c,0x53,0xfe,0x20,0x0a, - 0x0b,0x03,0x08,0x6c,0xce,0x61,0x42,0xd0,0x9d,0x9c,0x12,0x5a,0xe0,0x1d,0x55,0x7a,0x32,0xa0,0x5a,0x7f, - 0xc5,0xe8,0xac,0x86,0xa6,0x12,0x3f,0x28,0x3c,0x0a,0x9a,0x6c,0xb1,0x9c,0x13,0x93,0x05,0xb8,0x2b,0x21, - 0xea,0x1f,0x4f,0xb8,0x02,0x8d,0x26,0x26,0xe8,0x9a,0x16,0x69,0xaf,0xd7,0xf4,0x45,0x3c,0x31,0xf5,0x6f, - 0x6c,0xec,0xa3,0xb9,0xe0,0xa8,0xe2,0x64,0x7e,0xaa,0x75,0x4b,0x79,0xe6,0x1c,0xa6,0x91,0xec,0x22,0x8b, - 0x38,0x4d,0x7e,0x76,0x17,0x8c,0xee,0xb6,0x81,0x94,0x88,0x98,0x1d,0xde,0x15,0xbc,0xc7,0x3c,0xc5,0x7e, - 0xe6,0x29,0x34,0x35,0xaf,0x76,0x07,0xa4,0x76,0xa0,0x1a,0x94,0xe9,0x18,0x9f,0x8b,0x72,0x2a,0x26,0xde, - 0x87,0x9e,0x70,0x10,0xb2,0xa6,0xf3,0x94,0x66,0xbf,0x47,0xe3,0x98,0x66,0x46,0x73,0x39,0xca,0xf4,0x5e, - 0xd4,0xd4,0x69,0x34,0x8a,0x58,0x4b,0x7d,0x96,0x17,0x29,0x73,0xbf,0x9f,0xa3,0x77,0xeb,0xcc,0xd2,0xda, - 0x46,0xbb,0x7d,0x26,0x6c,0xf3,0x0b,0xfd,0x35,0xd1,0x5b,0x8a,0x1b,0x33,0x54,0xa9,0x61,0xdc,0xb7,0x4a, - 0x1a,0x1a,0xa0,0xdd,0xba,0x33,0xf0,0xf0,0x7a,0x74,0xeb,0xbd,0x80,0xa0,0xeb,0xce,0xd6,0x3d,0xb3,0xca, - 0xfe,0xbc,0xa1,0xaf,0x2e,0x87,0x35,0xb1,0xbc,0x39,0x03,0xae,0x87,0xa0,0x66,0x1a,0xf8,0x62,0xc1,0x49, - 0xd6,0x16,0x69,0x18,0x52,0x5d,0xb3,0xb8,0x9e,0x38,0x80,0xf7,0x52,0xd1,0xdd,0x4b,0xa0,0xf9,0x0a,0x1b, - 0x35,0xd3,0x46,0x9f,0x28,0x40,0xf6,0x15,0x20,0x91,0xf7,0x02,0x43,0x83,0xd3,0x68,0x88,0x0c,0xfa,0x8e, - 0x5e,0xd8,0xf1,0x92,0x59,0xc0,0x6c,0x01,0x53,0x05,0x14,0x88,0x83,0x3d,0x1f,0x2b,0xcc,0x11,0xf8,0xeb, - 0x3d,0x68,0x42,0xa1,0x63,0x55,0xc3,0xc3,0x3f,0x86,0x3d,0x52,0xd5,0xf8,0x4a,0x58,0xdf,0x12,0x28,0x9f, - 0xee,0x13,0x81,0x36,0xdd,0x40,0xfc,0x4d,0x93,0xf4,0xb8,0x7a,0x74,0x6c,0x69,0x8e,0xc7,0xdc,0xdd,0x84, - 0x80,0xe0,0xb8,0x3a,0x79,0x5c,0x9d,0x46,0x54,0x50,0x1d,0x55,0x2c,0xb6,0x65,0xfa,0x63,0x58,0xad,0x8a, - 0xd0,0x18,0x63,0x7d,0xac,0x2c,0xed,0x52,0x25,0xc7,0xf6,0x85,0x6a,0x49,0x6c,0x95,0x28,0x64,0xe8,0x69, - 0xaa,0x09,0x7a,0xf1,0x4f,0x55,0x82,0x4e,0x1f,0xb6,0x24,0x2d,0x7f,0x40,0x6a,0xfb,0x8b,0x7c,0xa0,0xb0, - 0x7e,0x10,0xe6,0xee,0x22,0x5a,0x68,0x11,0xdd,0x51,0x91,0xab,0x04,0x94,0x9f,0x59,0x3d,0x7c,0x07,0xaa, - 0xeb,0x6a,0x31,0xaa,0x86,0x67,0xd7,0x58,0x89,0xac,0x22,0xa0,0x2a,0x20,0xcf,0x3e,0xcb,0xe9,0xec,0x5a, - 0x11,0x82,0x9a,0x0e,0x06,0x34,0x14,0xe2,0x94,0x44,0x54,0xc3,0xf0,0x40,0x98,0x5e,0x7d,0x4f,0xc5,0x9e, - 0x01,0x2f,0x5d,0x35,0x65,0x09,0x6f,0xe1,0xef,0x89,0xf5,0xe1,0xf5,0x99,0xcd,0x09,0x7d,0x04,0xde,0xea, - 0xac,0x2c,0xce,0x7e,0x56,0x41,0x05,0xb3,0x6d,0xcf,0xc7,0x56,0x64,0xd4,0x1f,0x02,0xc0,0x8d,0xa2,0x42, - 0x75,0xb6,0x6d,0x37,0x2d,0xd9,0x88,0xf2,0x77,0x97,0xae,0xa6,0xa0,0x4f,0xbd,0x66,0x67,0xb6,0x59,0x81, - 0x48,0x56,0x6a,0xf5,0x49,0xa5,0x8a,0x71,0xa8,0x3b,0x56,0x8d,0xa7,0x6c,0x88,0x55,0x98,0x4e,0x5c,0x44, - 0xb1,0xc9,0x2b,0xf0,0x77,0x5c,0x81,0x02,0x40,0x40,0x3b,0x02,0x61,0x9a,0x2f,0x53,0x1e,0x79,0xf1,0x85, - 0xf9,0xaa,0xc0,0xdf,0x31,0xff,0x8d,0x2f,0xa2,0x3b,0xfb,0xdb,0xb4,0xfb,0x3b,0xf5,0xf1,0xe5,0x96,0x4a, - 0x89,0xed,0xec,0xce,0x70,0xee,0xae,0x68,0x15,0x7e,0x92,0xd5,0xa2,0x69,0xef,0x4f,0xd7,0xa2,0x1d,0x2b, - 0xbb,0x67,0xc1,0x5d,0x73,0x03,0x9b,0xdc,0x0c,0x9a,0x09,0x48,0x7f,0x23,0xe5,0x69,0xa4,0x1a,0xa7,0x0b, - 0x6a,0x44,0x77,0xe1,0x5b,0xb8,0x64,0x4e,0x98,0x64,0x43,0xf7,0x40,0x49,0x04,0xa9,0xab,0x42,0xc4,0x29, - 0x6d,0x7e,0x1e,0xa9,0x6d,0x39,0x18,0x6b,0x02,0x19,0x23,0xd3,0xa6,0xb9,0x77,0x2d,0xbe,0xe0,0x22,0x1e, - 0x76,0x96,0x2b,0x0e,0x65,0x66,0x7f,0x6c,0xb4,0xf4,0x6d,0x31,0x7e,0x97,0xcd,0xe6,0xc8,0x29,0xaf,0x8b, - 0x1f,0xc4,0x44,0x62,0x38,0xcb,0xe7,0x4d,0x56,0xf5,0x19,0x38,0xff,0x19,0x0d,0xe2,0xd0,0x69,0xf9,0x36, - 0x51,0xdc,0xb1,0xbe,0xe8,0xe1,0x47,0x6e,0x9d,0x24,0x02,0x04,0x2c,0x51,0x06,0x88,0x4c,0x3a,0x84,0x00, - 0x15,0xd2,0xc8,0x51,0x3d,0xe2,0xd1,0xd4,0x2c,0x6a,0xba,0xca,0xa7,0xd8,0x47,0x4c,0xe9,0x7b,0x29,0x44, - 0x10,0xd1,0x37,0x89,0x97,0x02,0xe1,0xec,0x39,0x0d,0xf6,0xe3,0x86,0xd8,0x04,0x73,0xf8,0x80,0xef,0xdb, - 0x85,0xed,0xa1,0x91,0x94,0x41,0x5a,0x49,0x1f,0x0a,0x64,0x4c,0xa4,0x61,0x23,0x32,0xe3,0x1a,0x7b,0x60, - 0xdc,0x2a,0xe2,0x08,0x5a,0x27,0x1b,0x6b,0x4f,0xe4,0x2d,0x32,0xc2,0x9d,0xb5,0x58,0x5c,0xf0,0x4c,0xdb, - 0x52,0x69,0x96,0xf9,0x6d,0x87,0x16,0xd2,0x22,0x78,0xab,0xe5,0xb6,0x16,0x5d,0xaa,0x24,0x74,0x97,0x3a, - 0x14,0x54,0x3e,0x4a,0x59,0x5c,0x53,0xa1,0xa3,0xb4,0xb9,0x39,0x9e,0xab,0x93,0xbe,0x6f,0xdb,0x10,0x6e, - 0x57,0xcd,0x75,0x52,0x45,0x99,0x5f,0x51,0xb9,0x77,0xe8,0xd7,0x93,0x1b,0xd2,0x76,0xcb,0x94,0xc6,0xaf, - 0xaa,0xee,0xf4,0xb2,0xee,0xf6,0x72,0x92,0xd4,0xe8,0xa0,0xed,0xec,0x84,0x38,0x46,0xe5,0x64,0xb1,0x9a, - 0x22,0x66,0x74,0xf9,0x23,0x62,0x03,0x70,0x80,0x04,0x4f,0x79,0xbf,0xf0,0x76,0x0e,0xcb,0xb7,0xa8,0x21, - 0xde,0xb1,0xf7,0x6a,0x58,0x2a,0x4c,0xdf,0x13,0xd1,0x66,0x36,0x6b,0x89,0xd8,0x6d,0x4c,0xcb,0x56,0xbc, - 0x67,0xae,0xc2,0xab,0x10,0x2f,0x11,0xcb,0xbd,0xf3,0x04,0x5b,0x6e,0xbd,0x6e,0x7c,0x27,0x67,0x5d,0x95, - 0xa9,0x24,0x85,0x72,0x63,0x78,0x46,0x40,0x33,0xcd,0x2a,0xe6,0xae,0xf0,0x1d,0x51,0x96,0x8d,0x89,0x96, - 0x0b,0x9d,0x1f,0x8a,0x5b,0xfb,0xa1,0xb1,0x54,0xd1,0x71,0xfe,0xb3,0x34,0xa3,0xba,0x45,0xe9,0x18,0x71, - 0x41,0x5b,0x5a,0xa1,0x0b,0x1f,0x57,0x3d,0x17,0xb3,0x60,0x43,0x0c,0xa8,0x40,0xb6,0x22,0x42,0x23,0x50, - 0x87,0xdf,0x7b,0x24,0xe1,0x4d,0x77,0x3a,0x12,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f,0x84,0x8d, - 0x35,0x6b,0x1c,0xb7,0xe1,0x2e,0x8f,0xc6,0xec,0xdd,0xec,0xbc,0x5f,0x89,0x21,0xca,0x21,0xd9,0x8d,0xab, - 0xf1,0x51,0x41,0x0b,0x01,0x42,0x3a,0xee,0x12,0xff,0xe7,0xb6,0x45,0xcd,0x4e,0x16,0xe0,0xb0,0xc1,0x51, - 0x6e,0xab,0xbc,0x69,0xce,0x17,0xc8,0x1a,0x69,0x91,0x81,0x3b,0x82,0x72,0x91,0xf1,0x4f,0xe6,0xc4,0xdb, - 0xb3,0x6b,0x26,0xef,0x81,0x1b,0x61,0xe6,0xe8,0xe5,0x06,0x45,0x22,0x82,0x72,0x9f,0x24,0xcf,0x0c,0x77, - 0xa0,0x1f,0x58,0x88,0x3c,0x4a,0xa1,0x17,0xa7,0x51,0xc3,0x18,0xfc,0x43,0xcd,0xc7,0x01,0xa1,0xc3,0x9a, - 0xe6,0x77,0x4c,0xac,0x5f,0xb9,0x40,0x42,0x0d,0x11,0x84,0x7d,0x01,0x03,0x1e,0xeb,0x3a,0x38,0x83,0x9f, - 0x90,0xba,0xc9,0x81,0x51,0x52,0x48,0xdc,0xc1,0x44,0x0b,0x47,0x5b,0x42,0x80,0x11,0x22,0x28,0x05,0x17, - 0x2e,0x0b,0x66,0xe0,0x4f,0xf4,0xf9,0x4d,0x84,0x53,0x7e,0xda,0x3a,0x5b,0xf1,0x15,0x8b,0xbe,0x2c,0xc5, - 0x38,0x11,0x6a,0xbf,0x26,0x2e,0xdf,0x05,0x05,0x73,0xd6,0x5c,0x2d,0x1a,0x50,0x8e,0x9f,0x9a,0x2d,0x7c, - 0x8e,0xab,0x2c,0x43,0x0f,0xb7,0xd2,0xc0,0x88,0x60,0xdf,0x01,0x46,0x0d,0x83,0x48,0xe7,0x68,0xd3,0x59, - 0xe2,0x2a,0x1a,0xbf,0xa7,0x3f,0xf1,0x27,0xfc,0x09,0x8f,0xb3,0x50,0x3e,0x49,0x5a,0xd0,0x35,0x94,0x7a, - 0xdf,0x31,0x8c,0x3f,0x2f,0x00,0xf7,0x4e,0x8f,0x6a,0x60,0xff,0x2d,0xdc,0xc1,0x45,0xbc,0xca,0x9a,0x55, - 0xd8,0xc3,0xc8,0x77,0x67,0x67,0xc1,0x5e,0xa6,0x76,0x0f,0xa3,0xd6,0xf9,0x73,0x6d,0x49,0x05,0xdd,0xbd, - 0xe3,0x4c,0x1b,0xd1,0x10,0xaf,0x8a,0x4f,0x9a,0xbd,0xb0,0x18,0x07,0x67,0xf0,0x92,0x0e,0x02,0x09,0x40, - 0xe4,0x4d,0xc9,0x71,0xe6,0x89,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe3,0x2f,0x99,0xa0,0xe3,0x50,0xb4, - 0x1a,0x9d,0x3a,0x47,0x02,0x4e,0xfe,0x98,0x69,0x75,0xea,0x1e,0x1a,0xae,0xac,0x78,0xef,0xa3,0x69,0xcd, - 0x33,0x39,0xb3,0x1d,0x70,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xd8,0x70,0xe5,0xf5,0x1b,0x1a,0x4a,0xe2, - 0xed,0xc5,0x23,0x8f,0x4d,0x81,0x22,0xbe,0x89,0x1c,0x5d,0x5f,0xca,0x9f,0x31,0x23,0x20,0x3c,0x45,0xb1, - 0xc7,0x7f,0x55,0x22,0x41,0xf3,0x74,0x7d,0x84,0x3a,0x21,0x81,0x1c,0xb1,0x6e,0x2f,0x1f,0x9f,0x9c,0x1a, - 0x2d,0x75,0xae,0xfd,0xc9,0xb7,0xc1,0xe8,0x53,0x26,0x7e,0x65,0x67,0x65,0x72,0x9d,0x51,0x1b,0x67,0x05, - 0x87,0x5c,0x3f,0x83,0x7c,0x8c,0x7e,0xe6,0xc9,0x15,0xa7,0x36,0xc9,0x82,0x7f,0x7f,0x4b,0x6e,0xf0,0x93, - 0x27,0xe7,0xf8,0x59,0x24,0x67,0x9c,0x3a,0x4b,0x2e,0xf8,0xf7,0x63,0x72,0xc3,0xbf,0xe7,0xc9,0x39,0xff, - 0x5e,0x25,0x47,0xf8,0xa1,0xf1,0x22,0xe2,0xc6,0xd9,0x2a,0x29,0x39,0xf9,0x22,0x39,0xf2,0x7a,0xf0,0x5e, - 0x26,0xcd,0x17,0x13,0x12,0x83,0xac,0xc1,0x4c,0x1c,0x32,0xd8,0x53,0x49,0x47,0x4a,0x15,0x0d,0x6f,0x23, - 0x2f,0xd6,0x22,0xac,0xd2,0x99,0x7c,0x52,0x27,0x3a,0x26,0xe9,0x5c,0x47,0x89,0xa9,0x13,0xd9,0x86,0x57, - 0x85,0x09,0xf8,0x89,0x93,0x88,0x8d,0xd8,0x88,0xe2,0x49,0xf5,0x3b,0x6d,0x7d,0xc9,0x66,0x3c,0xde,0x43, - 0x1c,0x57,0x19,0x5b,0x22,0x6c,0xda,0xa6,0xa1,0x9a,0x28,0xca,0xc5,0x95,0x2e,0x15,0x1a,0x10,0x71,0x57, - 0xe0,0x53,0xb7,0x3b,0x19,0x4d,0x8c,0x73,0xa1,0xd9,0x39,0x49,0xaa,0xbc,0xf3,0x22,0x71,0x4d,0x86,0x91, - 0xda,0x3a,0x93,0x60,0x19,0xee,0xde,0x30,0x04,0x44,0xa5,0x38,0xab,0xc5,0xbe,0x6e,0xac,0xa9,0xce,0xad, - 0x70,0x28,0x46,0x5a,0xf2,0x86,0xa3,0xf7,0x6b,0xc4,0xeb,0x0c,0x0c,0x4a,0x36,0x7d,0x72,0x26,0x7b,0xae, - 0x46,0xe5,0x49,0x44,0x12,0x1a,0x53,0xb9,0x89,0xef,0x6e,0xc3,0xd0,0x75,0xed,0x46,0x3c,0x5a,0xe6,0x71, - 0x76,0x87,0xd5,0x32,0xeb,0x5a,0xc5,0x72,0xd9,0xb3,0x3e,0xc3,0xfc,0x6a,0x82,0x47,0xb4,0x2b,0x59,0x68, - 0xac,0xea,0xe6,0xd4,0x47,0x8b,0x7a,0xce,0xe0,0x68,0xc8,0x8a,0x28,0x7d,0xee,0x27,0x73,0x23,0x9d,0xa3, - 0xf2,0x7d,0x56,0x1e,0x7a,0x42,0x56,0xcc,0xc0,0x43,0x6e,0x96,0x4f,0xf1,0xe1,0x8a,0xe0,0xc6,0x2a,0x2f, - 0x43,0x2f,0x4e,0x56,0x25,0x4e,0xcd,0x38,0xa7,0xa8,0x34,0xeb,0x6b,0x58,0xfc,0xa8,0x9f,0xe1,0xa1,0xeb, - 0x64,0x6c,0x2e,0x4d,0x4b,0xe7,0x4c,0xdc,0xda,0xa9,0x57,0xc6,0x24,0x8d,0x74,0x9d,0x88,0x53,0x44,0xc8, - 0x46,0xd7,0xaa,0xdf,0x3a,0xf5,0x7a,0xa9,0x2c,0x2c,0x13,0x89,0x1f,0xaf,0x4d,0x1d,0x19,0xcd,0x85,0x4b, - 0x4a,0x44,0x90,0x4e,0xf8,0x66,0xee,0x43,0xaf,0x99,0xfc,0x8c,0x48,0xab,0xc6,0x91,0x56,0xd9,0x23,0x22, - 0x61,0x20,0x7a,0x00,0xe6,0xbe,0x47,0x85,0x26,0xd9,0x07,0x3e,0x9a,0xc2,0x68,0xa3,0x56,0xc9,0x59,0x4b, - 0x29,0xe3,0xfa,0x9f,0x40,0xbc,0x5a,0x12,0xb0,0xaf,0xd7,0xf3,0x90,0x5d,0x76,0x3a,0x45,0xdb,0x93,0xc4, - 0x54,0x99,0x04,0x21,0x43,0xbf,0x42,0x8e,0x9d,0x32,0x4d,0xaa,0x70,0xa5,0x66,0xce,0x75,0x22,0xe4,0xd5, - 0xe8,0x73,0xd3,0x61,0x6f,0xc9,0x71,0xe6,0xcf,0xe9,0x60,0x20,0xa9,0x5c,0x45,0xdc,0x84,0x53,0x27,0x05, - 0x8d,0x7a,0xa3,0x39,0x7b,0x05,0xf8,0x43,0x18,0x60,0x75,0x92,0xb8,0x2e,0x85,0xba,0xcc,0x5a,0xfb,0xa3, - 0xa0,0x31,0xeb,0x0c,0xd8,0x05,0x70,0x31,0xb7,0x7c,0xed,0xd5,0xe3,0xa2,0xfa,0x1d,0xd3,0x04,0xc0,0x9a, - 0x12,0x57,0x30,0x4f,0x6f,0xc6,0xb6,0x20,0x4d,0x45,0x4c,0x3c,0xe9,0xb1,0x04,0x4e,0xf3,0x35,0x72,0x9d, - 0x81,0x66,0x1e,0xf0,0x85,0xfe,0xe7,0x32,0x93,0x4a,0xd7,0xbc,0x5e,0x3f,0x3c,0x38,0xd0,0x1d,0xd3,0xd1, - 0xd8,0xe0,0xf8,0xfe,0x67,0x5a,0x90,0x2b,0x28,0xb8,0x2a,0xf3,0x65,0x04,0x4c,0xb6,0x7b,0xa8,0x6c,0x7b, - 0xe3,0xd6,0x08,0x63,0xf7,0xfd,0xc6,0xc1,0x9e,0xd1,0x2e,0x6c,0x68,0x26,0xe7,0xb4,0x75,0x9c,0x08,0xba, - 0x8b,0x36,0x3c,0xd3,0xd2,0x2a,0x74,0x18,0xa9,0x25,0x89,0x24,0x5c,0xaf,0x13,0x5e,0x65,0x84,0xf9,0x25, - 0x32,0x5f,0xa3,0x74,0x63,0x08,0x80,0xa7,0xf1,0x7e,0x4c,0x78,0x3f,0xbd,0x20,0x8a,0x98,0x10,0x15,0xb5, - 0x6c,0x90,0xc7,0xa8,0x4c,0x4a,0xa6,0xe0,0x9f,0x01,0x83,0x28,0x0e,0x3c,0x4c,0xa4,0xed,0xdc,0xb3,0xe0, - 0xf4,0x98,0x2c,0x04,0xa6,0x46,0x2e,0x28,0x44,0x7e,0xe0,0x33,0x86,0x48,0x4b,0xe6,0xbf,0x03,0x16,0x46, - 0x77,0x0a,0x64,0x90,0x85,0x51,0x89,0xbc,0x80,0x9b,0xf0,0x28,0x2c,0xe4,0x58,0x62,0x11,0xf1,0xd2,0x10, - 0x8b,0x11,0x6b,0x3b,0xf4,0x17,0x5c,0x97,0xb6,0x34,0x29,0x86,0xda,0x39,0x50,0x88,0xc2,0x11,0xf5,0x8f, - 0x88,0xbf,0x68,0x8c,0xbf,0xc9,0x89,0xf9,0x02,0xd4,0xd4,0x79,0x3a,0xf9,0x68,0x0f,0x71,0x2e,0x14,0x73, - 0xa1,0x6e,0x99,0x0d,0xad,0xaa,0x21,0xfb,0x4b,0x21,0x9c,0x67,0x0e,0x07,0xb4,0x22,0x70,0xd9,0x82,0xce, - 0xb6,0x6b,0x17,0xd1,0x51,0x0d,0x3e,0xa1,0x59,0xa3,0x83,0x4c,0x88,0x5b,0x78,0x85,0xbb,0x62,0x4d,0x08, - 0x33,0x9c,0x26,0x9c,0x3b,0x5a,0x6a,0xc5,0x84,0xaf,0x09,0xee,0x49,0xe4,0xff,0x2a,0x1a,0x7d,0x4b,0xa7, - 0xc1,0x5c,0xd1,0x86,0x02,0x79,0xb6,0x5e,0xe3,0x75,0x22,0xaf,0x87,0x96,0x8e,0xad,0x37,0x1b,0x08,0xce, - 0x35,0x2e,0x34,0x1d,0x32,0x1d,0x4e,0xe7,0x7d,0xd0,0xd3,0xd6,0x24,0xe2,0x48,0xd7,0x03,0xd6,0x7d,0x4e, - 0xdb,0x3d,0x8d,0x5a,0x42,0xf3,0x09,0xe1,0xb9,0xf9,0x69,0xf2,0x3a,0x9c,0x53,0x67,0x98,0x14,0xd0,0x54, - 0x1c,0xd0,0x15,0x8f,0x95,0x60,0xe3,0x31,0x0e,0x32,0xf3,0xaa,0x90,0xc3,0x35,0xba,0x1c,0x79,0xe5,0xe9, - 0x5d,0x31,0xfb,0xfa,0x1e,0x47,0x16,0x4d,0x39,0x9b,0xa0,0x10,0x2a,0x4c,0x87,0x42,0xf8,0x7a,0x06,0x07, - 0x2b,0x3a,0x3b,0xd5,0xca,0x99,0x0d,0x6d,0xe9,0xfc,0x66,0xfe,0x89,0xab,0x66,0x9e,0x85,0x7d,0x0a,0x47, - 0x4e,0x56,0x65,0x84,0x54,0x0a,0x9b,0x80,0xa0,0x46,0x1e,0x18,0xbe,0x38,0x33,0x91,0x32,0xb4,0x6b,0x67, - 0xb0,0x85,0x99,0xc9,0x26,0x90,0x4e,0x4e,0x41,0x48,0xb1,0xd4,0x1a,0xbf,0xf4,0x22,0x1e,0x0f,0x6f,0x0a, - 0xe5,0x4f,0x7b,0x8a,0x00,0x47,0xb4,0xf1,0x34,0x08,0x2c,0xa9,0x1c,0xf3,0xa6,0x25,0xe6,0x75,0xc9,0xa4, - 0x02,0x37,0xb4,0x8c,0x36,0xbb,0x3e,0xa6,0xcf,0x8c,0x96,0x32,0xb3,0x0a,0xca,0x8e,0x81,0xc2,0xaf,0x95, - 0x2f,0x36,0xd5,0x64,0xed,0xaf,0x95,0x48,0x3c,0xe5,0x2b,0x68,0x06,0xf2,0xe4,0x29,0x9c,0x9f,0x46,0x36, - 0x25,0xa9,0xc6,0x3e,0xda,0xd8,0x96,0xc6,0x59,0x58,0xc8,0xec,0x23,0x3c,0x6b,0xf5,0x23,0x01,0x57,0x4e, - 0xf4,0x09,0xa1,0x05,0x86,0x32,0x34,0x7b,0xe9,0xc1,0xbd,0xc4,0x4f,0x9d,0x58,0x55,0x89,0xb8,0x5f,0x04, - 0x57,0xab,0x6c,0xdf,0x9e,0x0a,0xfb,0x44,0xe9,0x83,0x4a,0xd8,0x0b,0x2f,0xc7,0x01,0xbd,0x5c,0x32,0xbf, - 0x51,0xaa,0x5e,0xb7,0x8f,0x54,0xdd,0x1e,0x11,0xda,0x22,0x64,0x64,0xad,0x9e,0xe2,0x99,0xb2,0xd4,0x67, - 0x3c,0x65,0x24,0x35,0x71,0x58,0x8b,0xf8,0xf8,0x15,0x7c,0x5e,0x9d,0xa5,0x35,0xe2,0xe8,0x6b,0xec,0x45, - 0x24,0x94,0x51,0x5e,0xb6,0x79,0x98,0x94,0x8d,0xe0,0x52,0x98,0x35,0x84,0x93,0x04,0x70,0x9f,0x12,0xc1, - 0x2f,0x7d,0x88,0x68,0x45,0xe7,0x92,0xf1,0xb2,0xf2,0xe4,0xcf,0x79,0x8b,0xa0,0x6a,0xe8,0x6b,0x10,0x1c, - 0xa9,0xb1,0x7e,0xb0,0xda,0x37,0xa0,0xe2,0x56,0x81,0x9c,0xf5,0xed,0x88,0x72,0x06,0xbe,0x8d,0xb8,0x59, - 0xbf,0x64,0xbb,0x5f,0x75,0xff,0xb1,0x8b,0x8b,0x03,0x00,0xb9,0x29,0x24,0x1f,0x04,0x1b,0x3e,0x21,0x4b, - 0x28,0x5d,0x04,0x65,0xb1,0x5c,0x2f,0x60,0xfd,0xa7,0x70,0x67,0x14,0x1d,0x99,0x2f,0xab,0x31,0x51,0x36, - 0xe1,0x3c,0xa9,0xa3,0xf1,0xc9,0x11,0x8d,0xec,0xb4,0x63,0x65,0x3b,0x77,0xf1,0xac,0x88,0x7c,0x70,0x11, - 0x68,0x30,0x7d,0x40,0x36,0x88,0x44,0x23,0x62,0x27,0xd8,0x42,0x97,0xbe,0x2d,0x74,0x46,0x73,0x54,0x9e, - 0xd4,0xa7,0x51,0x9f,0x07,0x2c,0x91,0x35,0x44,0x15,0xce,0x4e,0x88,0x82,0xb2,0xd1,0x44,0x4e,0x3b,0x66, - 0xf9,0x93,0x68,0x6c,0x9c,0xbc,0xbe,0x39,0xa0,0x11,0xfe,0x1c,0x52,0x8d,0x79,0x38,0x51,0xb0,0x3b,0x61, - 0x8f,0x7c,0xe2,0x13,0x89,0x40,0xa3,0x91,0xd1,0xcc,0xfc,0x4c,0x38,0x11,0xbb,0x1c,0xe8,0xe7,0x28,0x5c, - 0xb1,0x6e,0x6d,0x6f,0x42,0x79,0xa2,0xc9,0xc6,0xcd,0x57,0xfa,0x56,0x00,0xda,0xfb,0x9e,0x42,0x70,0x46, - 0x6b,0x16,0xc5,0x30,0x7a,0x1c,0xa3,0x8a,0x71,0xa7,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0x3c,0x02, - 0xce,0x8b,0x7f,0xa6,0xbf,0xd2,0x66,0xf7,0x03,0x69,0x2e,0x26,0x84,0x5b,0x5a,0x31,0x19,0xaf,0xf5,0x04, - 0xca,0x48,0x26,0x36,0x26,0x60,0x53,0x65,0xfd,0x19,0x94,0x98,0x6b,0x25,0xee,0xfb,0x0a,0xa0,0x1c,0xec, - 0xa5,0x32,0x30,0xfa,0x7b,0x16,0x98,0xce,0xa2,0x51,0x87,0xdb,0x36,0xb4,0x2e,0x5a,0xf4,0x13,0x63,0x19, - 0x5f,0x54,0x6c,0xb3,0xf1,0x27,0xd5,0x2a,0xdb,0x4c,0x3b,0x21,0x0a,0x0b,0xa2,0x92,0xe5,0x87,0x6e,0xc2, - 0xa1,0xa8,0x27,0xeb,0xe4,0x54,0x65,0x9e,0xbd,0x3a,0xcc,0x43,0x78,0xdb,0x33,0x2c,0x8c,0xfa,0xec,0x42, - 0xf5,0x39,0x32,0x1d,0xcd,0x92,0x7c,0x78,0xef,0xaa,0xa0,0xe3,0x14,0x01,0xb0,0xe4,0x69,0x58,0xd4,0x2c, - 0x1c,0xba,0x20,0x12,0x2a,0xbd,0x40,0x8c,0xd8,0x7a,0x89,0xe0,0x0a,0x84,0x65,0x56,0x10,0x95,0xe5,0xf5, - 0xbb,0xac,0xce,0x2a,0x22,0x81,0x28,0x9b,0x52,0xc7,0x1a,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9d,0xa7,0x0d, - 0x82,0x65,0xe8,0x8f,0xf1,0x1d,0x36,0x61,0x1b,0x6b,0xe4,0x4c,0xbc,0x26,0xcf,0xc3,0xdc,0x13,0xd9,0x59, - 0x04,0x54,0x07,0xa0,0x35,0xc7,0xc4,0x13,0x4d,0xe9,0xdb,0x1c,0x87,0x4c,0x14,0xeb,0x66,0xca,0xde,0xda, - 0x44,0x7b,0xb9,0x4a,0xe8,0x93,0x52,0x3e,0xf1,0xe4,0xa3,0x04,0x0f,0xe1,0xcc,0xf3,0x5f,0xa9,0xc2,0xdc, - 0xb2,0x38,0x39,0x1c,0xc6,0x4a,0x62,0x9b,0xca,0x2a,0xcb,0x2f,0x8a,0x37,0xc6,0x4d,0x9a,0x26,0x86,0x20, - 0x83,0xb1,0x80,0x41,0x74,0x2c,0xca,0x6c,0xe8,0x0b,0x83,0xca,0x3c,0x13,0x6d,0x8e,0x73,0xe5,0x72,0xec, - 0x96,0x7b,0x34,0xe1,0x6d,0xa7,0xd9,0x38,0x57,0x80,0xb6,0x20,0x51,0x3e,0x73,0x0d,0x7d,0xc4,0x96,0xcd, - 0x87,0x6c,0xc0,0x50,0x08,0x8a,0xa3,0xdd,0xcf,0x3d,0xdc,0x6c,0x84,0x38,0x5f,0xd1,0xf0,0x61,0x0f,0xe5, - 0xa1,0x34,0xcf,0x69,0xc3,0x0f,0x64,0x67,0x65,0x07,0xac,0xad,0xad,0x57,0xcb,0xac,0x32,0x67,0x0f,0xca, - 0xe9,0x14,0x26,0x3e,0xd8,0x22,0x95,0xdf,0x8d,0x01,0xc5,0x6d,0xfb,0x3d,0x31,0x7e,0x27,0x5d,0x23,0x6c, - 0x44,0x78,0x73,0x24,0x08,0x4e,0x33,0xe1,0x40,0x8d,0x47,0x1c,0x88,0xc6,0x3a,0x4b,0xe7,0x99,0x49,0xb1, - 0x47,0x63,0x69,0x94,0xf8,0xe5,0xe9,0xae,0x98,0x48,0x42,0x42,0xc0,0xbe,0x97,0x08,0x50,0xd3,0x40,0xc6, - 0xdd,0x63,0xa4,0xbb,0x25,0xcf,0xd2,0xc4,0x2b,0x21,0xba,0x22,0xe9,0x0a,0x51,0xc7,0x45,0xcc,0x2a,0xf7, - 0x2d,0xf3,0x38,0xf1,0x4d,0xb0,0x7d,0x11,0x8d,0x4a,0xe6,0x6b,0x54,0xc2,0xc6,0x49,0x76,0x41,0x70,0x7e, - 0x93,0x1c,0xd0,0x9a,0xb4,0xd3,0x1e,0x1d,0x60,0x81,0x74,0xa0,0x2f,0x24,0x38,0x7f,0x39,0xb7,0x07,0x0b, - 0x23,0xb1,0x57,0x18,0xa3,0xe7,0xcc,0xbf,0x61,0xaf,0x79,0x78,0x1d,0x77,0x27,0x8d,0x4e,0xae,0xd0,0x5b, - 0xc0,0xe4,0x25,0xb4,0xd1,0xed,0x32,0xda,0x1a,0x8b,0x23,0xd9,0xb8,0xcd,0x72,0xd2,0x70,0xea,0x69,0x82, - 0x10,0x2b,0xdb,0x16,0x05,0x6f,0x33,0x1b,0xe2,0xe4,0x0c,0xf1,0x02,0x5a,0xb6,0x97,0x4f,0x5b,0xf6,0x11, - 0xec,0xa2,0x88,0xd3,0xbc,0x43,0x2e,0xb0,0x77,0xa6,0xf7,0xd5,0xaf,0x59,0x8b,0x32,0xe9,0xae,0xce,0xd8, - 0x77,0x9d,0xff,0x66,0xff,0x30,0xde,0xd6,0xd5,0x8c,0x7d,0xa7,0xff,0x4e,0x69,0xa8,0xea,0xd4,0x6e,0x68, - 0xe3,0x28,0x48,0x20,0xb1,0x53,0x60,0x7c,0x13,0x47,0xa1,0x90,0x08,0xd8,0xec,0xb6,0xda,0x68,0x74,0xe7, - 0x89,0x15,0x5f,0x74,0x4c,0x04,0x58,0x4d,0xca,0x70,0x0a,0x05,0x0c,0x83,0xe7,0x19,0xe3,0xba,0x2e,0x5c, - 0x9a,0x40,0xbd,0x30,0x7b,0x67,0x4b,0x47,0xcd,0x17,0x3c,0x85,0xa4,0x6c,0xcb,0xde,0x68,0x54,0x43,0x80, - 0xcc,0x24,0xc0,0x4b,0xd0,0x62,0x25,0x33,0x78,0x3e,0x69,0xf3,0x72,0x4b,0xd7,0xc0,0x96,0xf8,0xbb,0x39, - 0x7b,0x6c,0x31,0x8a,0x81,0xc3,0x1a,0x7e,0x71,0x4b,0x88,0x6d,0xe1,0x85,0x26,0x93,0x87,0xf7,0xa6,0x34, - 0xc4,0xaa,0x84,0xcb,0x56,0x66,0xf5,0xfe,0x2b,0xbe,0xf3,0xd2,0xf3,0x02,0xc8,0x7c,0xcf,0xee,0x5b,0x11, - 0x32,0x1f,0x41,0x4f,0x10,0xbf,0xe6,0x3d,0xef,0x12,0x54,0xe1,0xbf,0xd1,0x01,0xcc,0xa5,0x60,0x5a,0xc6, - 0x4f,0x44,0x70,0xe8,0x27,0x04,0x47,0xc6,0xef,0x69,0xac,0x1f,0x7c,0xb3,0xfe,0xf6,0xf2,0x67,0xe3,0x66, - 0x9c,0xed,0x05,0x08,0x7b,0x13,0x67,0x31,0x38,0x43,0xcf,0xe6,0xfb,0x95,0x0f,0x60,0x5b,0x80,0xd2,0x77, - 0x38,0xd2,0x64,0x21,0x74,0x20,0xed,0x4e,0x55,0x3a,0x95,0x5d,0xfe,0xa8,0xe4,0x1d,0x4a,0x84,0x6e,0x82, - 0x3a,0xb1,0xf1,0x40,0x7a,0xf1,0xc5,0x6e,0x10,0x10,0xe0,0xff,0x5e,0x42,0xbd,0x88,0x14,0xfd,0x16,0xde, - 0xae,0x64,0x25,0x4d,0xb7,0x35,0x41,0x97,0x41,0x30,0x6a,0x89,0xe7,0x32,0x1d,0x13,0x20,0x6c,0x74,0xe8, - 0x5d,0x54,0xd7,0xf8,0xd5,0xf1,0x06,0xee,0x05,0xe8,0xb6,0xa9,0xbb,0x3f,0xec,0x94,0x5b,0x0f,0xea,0xab, - 0x8b,0x20,0x0e,0x16,0x69,0x73,0xc9,0x86,0x46,0x63,0x79,0xdc,0xd2,0x16,0x3d,0xc9,0x4c,0x74,0x9f,0x6d, - 0x0d,0xa7,0xa9,0xd1,0x46,0xdd,0xfb,0x6d,0x95,0x55,0x37,0xef,0x33,0xe8,0xa1,0x4b,0xb9,0x87,0xe6,0xae, - 0x58,0x9a,0xd3,0xfc,0x2a,0xe8,0x53,0xa5,0xfc,0xd4,0xd9,0x2b,0x6c,0x73,0x59,0x65,0xb3,0x8e,0x8f,0x90, - 0xf1,0xbc,0xce,0x7d,0x37,0x6e,0x03,0xa6,0xc0,0x10,0x70,0xd0,0x2e,0x61,0x39,0x4f,0xdf,0xd6,0xa3,0xae, - 0x5a,0xa5,0x64,0x6b,0xa8,0x15,0xff,0xe2,0xf0,0xc7,0x2f,0x0e,0x59,0x1c,0xb0,0x78,0xd4,0x84,0x7c,0xec, - 0xda,0x7f,0x51,0x3c,0x2f,0xab,0xde,0x5a,0xf0,0xd7,0xa2,0x8c,0x9c,0xf0,0xf1,0x60,0xc0,0x49,0x8c,0x91, - 0x4d,0xdd,0x04,0x1f,0xf2,0x90,0x7b,0x80,0xfb,0xa3,0x08,0xb1,0x5d,0x8c,0x2d,0xd0,0x78,0x38,0xea,0xe9, - 0x97,0x85,0x4c,0xb2,0x1f,0xf5,0xd1,0xef,0xfb,0x87,0xb3,0xce,0xcf,0x19,0x8f,0x35,0xda,0x38,0x95,0x23, - 0xb1,0x10,0x45,0xc0,0xcf,0x5d,0xf9,0x0a,0x96,0x50,0x64,0x24,0x7c,0xd2,0x02,0x85,0xb6,0x82,0x45,0x54, - 0xf0,0x46,0x0c,0x2b,0x3d,0xe7,0x22,0x0c,0x4d,0x1c,0x43,0x5e,0xb1,0xae,0x0e,0xba,0x5a,0xf6,0x2b,0xfb, - 0x4c,0x19,0x2b,0x4a,0x84,0x75,0xdd,0x7a,0x3d,0xcf,0xd9,0xa1,0x91,0x7e,0x88,0x1b,0xe4,0x01,0x83,0xae, - 0xc0,0x68,0x1e,0x43,0xaa,0xf4,0x16,0xa1,0xb2,0x2e,0xcb,0x39,0x71,0xea,0x5c,0x43,0x4b,0xf6,0x84,0x71, - 0xfa,0x09,0xa0,0x8c,0xdb,0x29,0x5a,0x26,0xe7,0xdb,0xef,0x67,0x22,0xa0,0xb0,0xda,0x65,0x71,0x92,0xc3, - 0xc6,0xca,0x89,0x84,0xc8,0x1f,0x25,0xd5,0x68,0x6f,0x2f,0xa7,0xad,0x0b,0x0b,0xc6,0xfc,0x54,0x13,0xda, - 0x61,0x8a,0xc3,0xde,0x79,0x5a,0x7a,0x9e,0x27,0x1f,0x34,0x4c,0xea,0x18,0x79,0x9e,0xc3,0xd7,0x7a,0xdd, - 0x74,0x93,0xda,0xf3,0x6e,0x20,0x59,0xb8,0xe1,0x04,0x31,0x3a,0xa6,0xf0,0xda,0x6b,0xe4,0xa1,0x4e,0x7e, - 0xcf,0xb6,0x6b,0x75,0x91,0x05,0xc0,0x81,0x51,0x89,0xad,0x46,0x70,0x31,0xb2,0x29,0x31,0x27,0xb2,0x83, - 0x48,0x61,0xcd,0x64,0x15,0x22,0x61,0xa9,0x92,0x5a,0xb8,0xf9,0x09,0x7e,0xaa,0x31,0xcd,0x1a,0x4d,0xf1, - 0x8f,0x10,0x7c,0x25,0xc6,0x11,0xf7,0x07,0x30,0xba,0x5a,0x07,0x1a,0x28,0xdc,0x79,0xa0,0x72,0x18,0x4d, - 0xe0,0x24,0xa0,0x1f,0xb7,0xaf,0x44,0x16,0x3d,0x1d,0x0c,0x56,0x06,0xa8,0x89,0x77,0x91,0xaf,0xe1,0xb3, - 0xd6,0xf7,0x6d,0x5e,0x10,0x4d,0xce,0xdf,0xcc,0xed,0x37,0xd8,0xc2,0xf3,0x56,0x54,0x9b,0x59,0x9f,0x6c, - 0x5c,0x8c,0xf3,0xe6,0xbe,0x49,0x1e,0xb5,0x35,0xc7,0x38,0x02,0x53,0xad,0x34,0xb9,0x19,0x95,0xe3,0xef, - 0xe1,0x2f,0x25,0xc9,0x01,0x64,0xd0,0xb3,0x90,0x9d,0x02,0x56,0x36,0xf2,0x07,0x17,0x40,0x1c,0x41,0x1d, - 0x3e,0xf0,0xce,0x16,0x57,0x9d,0x16,0x57,0xdc,0x62,0x77,0x12,0x74,0xcb,0xcc,0x86,0xdb,0xf9,0xae,0xa3, - 0x09,0x7b,0x9d,0xd1,0x57,0x3c,0xed,0xc1,0xaa,0x90,0x89,0xc9,0xe8,0x1f,0x04,0xb1,0x6d,0x83,0xdd,0xdf, - 0x5b,0x38,0xae,0x2f,0xea,0x4e,0xc7,0x1c,0x57,0x6f,0xcf,0x91,0x98,0x7d,0x6c,0xa9,0x4c,0xc3,0x9c,0x4d, - 0x71,0xa3,0xa1,0x8e,0x0b,0xce,0x3a,0xf1,0xdc,0xbd,0x25,0x57,0x79,0xa4,0x8a,0x13,0x82,0x77,0x82,0xc1, - 0x61,0x95,0x5e,0xbf,0x66,0x32,0xaa,0x64,0x72,0x6a,0x2f,0x18,0x06,0x7b,0xbe,0x3d,0x48,0xe9,0x57,0x03, - 0x59,0x81,0x84,0x5d,0x1d,0x06,0x51,0x44,0xfb,0x43,0x96,0x99,0x38,0xa5,0xc6,0xe3,0x94,0x1c,0x60,0xd2, - 0x41,0xc9,0xb5,0x46,0x3a,0x6e,0xfd,0xb6,0x09,0xec,0x0f,0xd9,0xb6,0xf4,0x39,0x13,0xd0,0xe1,0x1f,0x6d, - 0x37,0x59,0xb2,0x61,0x64,0x19,0x16,0x12,0x6a,0x43,0x97,0xd7,0xc6,0x91,0x15,0x8c,0x23,0x2b,0xb9,0x30, - 0x81,0x8f,0x01,0xd7,0x03,0xbe,0x06,0x45,0xc6,0x05,0x0a,0xc0,0x19,0x4f,0x7a,0xae,0x10,0x59,0xe8,0x51, - 0x40,0xdb,0x86,0xdb,0x3c,0xfb,0x61,0xc3,0x58,0x4b,0x5c,0xa7,0xda,0x44,0x68,0x5e,0x5c,0x66,0x55,0xce, - 0xf1,0xb6,0x69,0x86,0xb2,0x50,0x90,0xa1,0x45,0x82,0x99,0xf1,0x14,0x90,0x04,0xcd,0x1c,0x30,0x9f,0x44, - 0x8d,0x61,0x34,0x93,0xc4,0xff,0x84,0x85,0xe3,0xf3,0xa4,0xea,0x24,0x31,0x3f,0xa6,0x45,0x43,0x08,0x87, - 0xd0,0x2a,0x90,0xb0,0x16,0x7a,0xae,0xdd,0x25,0x98,0x5a,0x9c,0x47,0x69,0x32,0x07,0x85,0x3f,0x11,0x66, - 0x26,0x25,0xd0,0x87,0xa4,0x14,0x7c,0xdb,0x28,0x7c,0x5d,0xac,0xd7,0xef,0x60,0xd0,0xa1,0xa5,0xdf,0x10, - 0x57,0xc8,0x93,0x2e,0x66,0x04,0xec,0x3a,0xdf,0xab,0x78,0x12,0x61,0xf7,0x95,0x6c,0x8b,0xdf,0x00,0x89, - 0x8f,0x11,0xdc,0x0e,0x81,0x69,0x6d,0xc4,0xf1,0xd7,0xef,0xc3,0x2c,0x57,0x05,0x32,0xa3,0xf8,0x5f,0xf4, - 0x5d,0x84,0x40,0x9b,0x9d,0x42,0xc8,0xf4,0x56,0xe1,0x7b,0xdf,0x40,0xe0,0x9f,0x15,0x3b,0xdd,0xe5,0x1c, - 0x20,0x7b,0xeb,0x43,0x16,0x95,0x24,0x01,0x51,0xda,0xe5,0xf5,0x8c,0xf6,0x47,0x4d,0x7b,0x25,0x2b,0x02, - 0x09,0x3b,0x16,0x3c,0x7b,0xf5,0xe4,0xd9,0x53,0x6d,0x2b,0x2d,0x3c,0xfe,0x38,0x68,0x2a,0x1a,0x4b,0x0c, - 0x25,0x7f,0x2b,0x30,0x3a,0x7b,0xbd,0x59,0x7b,0xa8,0x7f,0x55,0x3a,0x84,0x40,0xbb,0x08,0xf7,0x82,0xa8, - 0xc6,0x59,0x4a,0xe5,0x50,0x6f,0x31,0xd6,0xcf,0xb1,0xd4,0xeb,0x6a,0x68,0xf2,0xcf,0x74,0xdb,0x4e,0x4a, - 0x83,0xfb,0x3b,0x5a,0xad,0x48,0x56,0x63,0xcd,0x17,0xa8,0x2a,0xae,0x24,0xea,0x1b,0xbb,0xd8,0xcf,0x50, - 0x91,0xd7,0xf0,0x6f,0x7b,0x05,0xaf,0x89,0xe3,0x67,0x3f,0x1f,0x3f,0x7e,0xf7,0xec,0x71,0x6b,0xd4,0x94, - 0xbe,0x74,0x67,0xa9,0x9e,0x1d,0x8e,0xa9,0x99,0x67,0xcb,0x4b,0x43,0x3a,0xf9,0xb6,0x80,0x0d,0x11,0xdf, - 0xe5,0xf2,0x05,0x11,0x11,0xd3,0x9c,0x70,0x0f,0x2c,0x6b,0xd2,0x8b,0x54,0x90,0xa3,0x32,0x5d,0xe9,0xdc, - 0xf1,0x22,0x14,0x04,0x2c,0x45,0x46,0x59,0xcf,0x15,0x30,0x36,0x5b,0x99,0x86,0x93,0xdd,0x83,0x4d,0xcf, - 0x32,0x78,0x90,0xf0,0x6d,0x67,0x3f,0x1a,0xd2,0x8d,0x83,0xef,0xa4,0x7a,0xaf,0xc8,0xa6,0xcc,0x20,0xff, - 0xf6,0x18,0x06,0xec,0xb6,0x52,0xf3,0x0a,0x2c,0xb7,0x80,0x5c,0x16,0xcc,0x51,0xb7,0x50,0xaa,0x0b,0x45, - 0x56,0xb7,0xd2,0x4b,0xeb,0x9b,0x3b,0xd1,0xe0,0x47,0x41,0x48,0x75,0xc4,0xe2,0x95,0x2e,0x79,0x19,0x8d, - 0x80,0x71,0xfb,0xd8,0x23,0xe1,0xe2,0xf8,0x92,0xcb,0x29,0x7b,0xe3,0x12,0xd8,0x3e,0xcf,0x34,0x41,0xc6, - 0xb0,0xc7,0x96,0xf4,0x42,0x34,0x59,0x33,0x7a,0x0e,0x96,0xe1,0x97,0x2f,0x94,0x26,0xe7,0x9c,0x4a,0x2e, - 0x69,0x31,0x4a,0x3c,0x2b,0xc2,0x17,0x35,0xbc,0xd9,0x20,0x25,0x1c,0xbf,0x86,0xb0,0xe9,0x15,0xeb,0x8f, - 0x88,0xf8,0x1f,0x69,0xac,0xc3,0x96,0xc9,0x10,0x06,0x9d,0x71,0xdc,0xd8,0x1c,0x63,0xe6,0x4a,0x32,0x22, - 0x8b,0x59,0x42,0x19,0xd6,0xc9,0x6b,0xa0,0x80,0x57,0x19,0x4b,0x10,0x15,0x5c,0xb3,0x72,0x18,0x60,0x66, - 0x57,0x5c,0xb0,0xe7,0x0e,0x02,0xb1,0xfa,0x52,0x35,0x4e,0x7d,0x57,0x30,0xa9,0xfd,0x65,0xfd,0x39,0xdb, - 0x72,0x92,0x0b,0xd9,0x2e,0xcb,0x73,0xd8,0xc8,0xb4,0x59,0xf8,0x25,0xe1,0x76,0xb9,0xe4,0x81,0xda,0xbf, - 0x4c,0xf2,0xbd,0xc3,0x8d,0x47,0x36,0x31,0xea,0xdc,0x3d,0x14,0x55,0xe8,0x1c,0x7f,0x56,0x6c,0x21,0x4e, - 0x2c,0xd9,0x94,0xfe,0x2f,0xe9,0xbf,0x71,0xc8,0xec,0x11,0xa2,0x60,0x73,0xb1,0x49,0x6e,0xe6,0xc7,0xc5, - 0xa2,0x13,0xb1,0x8e,0xbe,0xf8,0x5a,0x6c,0xbb,0xbf,0x7e,0x48,0x43,0x16,0xf9,0xe8,0xee,0xa1,0xdb,0x93, - 0x93,0xe8,0x8b,0x2f,0x3b,0x05,0x26,0xad,0x02,0xf3,0xe8,0xeb,0xbf,0x77,0x0a,0xcc,0x5b,0x05,0x56,0xd1, - 0x97,0xff,0xdd,0x29,0xb0,0x6a,0x15,0x38,0x7c,0xf8,0x25,0x38,0xc6,0xf5,0x9a,0x1e,0x78,0x33,0xfb,0x5d, - 0xdc,0x3b,0x8c,0xfa,0x33,0xf6,0x91,0x31,0x23,0xe6,0x6a,0xbd,0x5e,0x46,0xb7,0xf5,0x75,0xae,0x3d,0x06, - 0x26,0x29,0xd5,0xfa,0xc5,0x97,0x31,0x0c,0x0f,0xc4,0x68,0x76,0x24,0x49,0x5f,0xc7,0x75,0x27,0xe9,0xeb, - 0xbf,0xc7,0xf3,0x4e,0xd2,0x97,0x07,0xf1,0x72,0x6f,0xaf,0x95,0x72,0x18,0x2f,0xf7,0xf7,0x5b,0x9f,0x1d, - 0xc6,0xd3,0x76,0x99,0xaf,0xbf,0x88,0xa7,0xed,0x32,0x87,0x0f,0xbf,0x88,0x67,0xed,0x42,0x87,0x0f,0xbf, - 0x8a,0x67,0xfb,0xfb,0xa0,0xcc,0x64,0x42,0xdc,0x9e,0xbb,0x4a,0x68,0x38,0x6a,0xa1,0x59,0xae,0xd1,0x15, - 0x87,0x97,0x14,0xe7,0x97,0x70,0x91,0xd8,0x7b,0x1e,0xae,0x20,0x56,0xd9,0xdf,0x8f,0x46,0x8b,0xc1,0xe0, - 0x5c,0xc7,0xf0,0x5d,0x44,0xac,0x21,0x80,0xa1,0xbf,0x08,0x5c,0xad,0xfd,0x48,0x39,0x0e,0x19,0x8a,0x98, - 0x65,0x37,0x97,0x46,0x3b,0x10,0x8b,0x1b,0x51,0xb1,0x78,0xe5,0x7b,0x0b,0xc6,0x70,0x93,0xbf,0x04,0x97, - 0x83,0x4b,0x40,0x1c,0x7c,0xa5,0x3e,0x7c,0x95,0x49,0x0f,0xbd,0x9f,0x38,0xc9,0x5d,0x10,0x06,0x22,0xe0, - 0x7c,0x64,0xee,0x25,0xb9,0x7f,0x46,0xa9,0xf7,0x89,0x38,0xb9,0x1f,0x44,0xe1,0x7d,0x8e,0x42,0x1f,0x8c, - 0xda,0x59,0xb6,0x2f,0x45,0xe4,0x4a,0xa9,0xc0,0x66,0x14,0x04,0x1b,0x1b,0xc8,0x96,0x7d,0x89,0x5f,0xe9, - 0x39,0xde,0xf1,0xe6,0x6b,0x3b,0x39,0x07,0x27,0x3f,0xae,0x10,0x61,0x8d,0x4d,0xa2,0xaa,0x53,0x04,0x06, - 0xf6,0x65,0x6f,0xff,0xea,0x8a,0x51,0x10,0x3d,0x7f,0xd9,0x36,0x3d,0x71,0x61,0x80,0x36,0xdb,0xd6,0xe5, - 0x5e,0x81,0x4d,0x14,0x9f,0x78,0xd6,0x44,0xff,0xb4,0x67,0x7d,0x98,0x59,0xed,0xbc,0x09,0x10,0xe2,0xb0, - 0xc1,0x2d,0xdf,0xe1,0xd1,0x28,0x1d,0x6b,0x8e,0x6f,0x60,0xe3,0xab,0x4b,0x13,0xdf,0x97,0x28,0x6b,0xbc, - 0xca,0xba,0x16,0xa0,0x7f,0xb5,0xb2,0xa6,0x71,0x56,0x82,0x5c,0xc3,0xab,0x74,0x29,0x71,0x88,0xf4,0x3b, - 0x8e,0xb6,0x3b,0x2a,0xf4,0x3c,0xf0,0x1a,0x47,0xd3,0x42,0x13,0x0a,0xfc,0xce,0x7a,0x6d,0xe3,0xa1,0xea, - 0xe2,0x0c,0x55,0xd6,0x2d,0xb6,0x49,0x82,0x5d,0xb8,0xec,0x10,0xb2,0x87,0x49,0xa5,0x5f,0x84,0x1d,0x68, - 0x29,0xff,0xff,0xe9,0x7c,0xed,0x3f,0xeb,0x17,0x31,0x2e,0xb5,0x54,0x6a,0xc0,0xa5,0x08,0x27,0xc3,0x37, - 0x5c,0x8e,0x7d,0x18,0x96,0xe4,0x17,0x97,0xcd,0x38,0xa4,0x7c,0x4d,0x24,0x2f,0xb2,0x62,0x15,0x28,0x5b, - 0x01,0xe7,0x47,0x71,0x35,0x5c,0xe4,0xd3,0xe9,0x9c,0x85,0xb8,0x49,0xb0,0x28,0x57,0x75,0xb6,0x5a,0x06, - 0xc6,0xe0,0x77,0x54,0x69,0x35,0xf5,0xd8,0xb5,0x2c,0x09,0x6c,0xbf,0x2e,0x8f,0x4c,0x02,0xc8,0x22,0xf8, - 0x09,0xac,0x16,0x8f,0x51,0x2c,0x73,0x05,0x32,0x9b,0xa5,0x2d,0xf7,0x4c,0x60,0xc1,0xcd,0x08,0x17,0xb5, - 0x5e,0x41,0x76,0x56,0x7b,0x9c,0x8b,0xbe,0xd6,0x7d,0x92,0xe0,0x52,0x9e,0xd1,0x96,0xee,0x2f,0x1f,0x4f, - 0xec,0xcd,0xe2,0xb5,0x75,0xd3,0xab,0xe5,0x22,0x9f,0x64,0x42,0xf9,0x27,0xb5,0x9a,0x9c,0xc6,0x27,0x13, - 0x55,0x9f,0xc6,0x75,0x2f,0x08,0x54,0x16,0x04,0x84,0x42,0x82,0x48,0x1a,0xb7,0x82,0xed,0x21,0x70,0xbb, - 0xbc,0x5c,0xed,0x73,0x6c,0x16,0x24,0xf1,0x4e,0xe6,0x18,0xbc,0x26,0x8c,0x26,0x0e,0x3a,0x51,0x61,0x88, - 0x17,0x8c,0x21,0x64,0xf8,0x53,0xff,0x83,0xdc,0x7c,0xd0,0x09,0x75,0x9b,0xfb,0xa7,0x66,0xde,0xee,0x8d, - 0xfb,0x9a,0x25,0x33,0x1e,0x88,0xfa,0x91,0x70,0x3c,0x58,0xd5,0x56,0xfb,0x79,0xd7,0x6a,0x1f,0xba,0x25, - 0x38,0x45,0xf0,0x95,0x2a,0x08,0x14,0x7a,0x9b,0x9b,0xd8,0x59,0x25,0x62,0x67,0x89,0x8b,0x85,0x61,0xd7, - 0xac,0x1f,0x63,0xab,0x49,0xdf,0x8a,0xbf,0xec,0xcc,0x9a,0x58,0xe9,0xe7,0x49,0x70,0xef,0xde,0x15,0x21, - 0x33,0x46,0xa0,0x20,0x1c,0x92,0x20,0xd4,0xe2,0x42,0xca,0xd8,0xa1,0x96,0x77,0xee,0xcb,0xc8,0xef,0x8f, - 0x91,0x62,0x10,0x2d,0x9e,0x23,0xc8,0x4a,0x87,0xe2,0xec,0x20,0x9f,0x9e,0x11,0xdf,0xb9,0x97,0x03,0x3d, - 0x6a,0x7e,0x32,0x41,0x94,0x27,0x84,0xc3,0xd2,0xc6,0x3f,0x06,0x7c,0x08,0xc7,0x82,0xd7,0x8b,0x88,0xe3, - 0xfe,0xb4,0xc4,0x75,0x83,0xd4,0xc5,0xf8,0xbe,0xc6,0xb1,0xf7,0x95,0x31,0xcd,0x71,0xa1,0x4d,0x76,0x42, - 0x34,0xb8,0x73,0x1b,0xec,0x95,0x7b,0xc1,0x26,0xf0,0x16,0x20,0x6d,0x7c,0x34,0xee,0x23,0x37,0x9a,0xc2, - 0x9f,0x2a,0x17,0xc0,0xd0,0xbb,0xcc,0xea,0x24,0x88,0x1e,0x1d,0x40,0xea,0x88,0xdb,0xb9,0x5e,0x98,0xd4, - 0x53,0x4a,0xfd,0xa9,0xb2,0x51,0x7a,0xc3,0x0f,0xfc,0xb1,0x5f,0x02,0x3c,0xf5,0x37,0xfb,0x87,0xe3,0x5b, - 0xea,0x75,0xec,0xce,0x9f,0x0f,0x44,0xb1,0x11,0x2b,0xce,0x03,0x30,0xa9,0x1f,0x2a,0xc2,0xf8,0x18,0xcc, - 0x26,0x96,0xd2,0x5c,0x82,0xe3,0x34,0x31,0xe1,0xf3,0x23,0x48,0x56,0x6a,0xe1,0xf7,0x2a,0xf9,0x01,0x22, - 0x82,0xdd,0x09,0xce,0xb8,0x68,0xde,0x84,0xdf,0x55,0x49,0x0d,0x95,0xf6,0x78,0x85,0xe7,0x28,0xfe,0x1a, - 0x2c,0xed,0x77,0x95,0x2f,0xa6,0x32,0xf2,0x67,0xf1,0x90,0xa4,0x2a,0x3e,0x54,0xa6,0x02,0x0e,0x2c,0x8b, - 0xef,0xd5,0x1c,0xaa,0x9a,0x68,0xc5,0x71,0x96,0x0d,0xf9,0xc2,0x75,0x11,0xee,0x40,0xf0,0xc2,0xaf,0xbf, - 0xd0,0xcf,0xfb,0xfb,0x6c,0x6a,0x47,0x73,0xf8,0x03,0xd7,0x24,0xa0,0xb5,0x41,0xe3,0x26,0xe6,0x79,0x7b, - 0xbc,0xbf,0xeb,0xf1,0x9a,0x94,0xdf,0x69,0xac,0xea,0x87,0x0a,0xea,0x46,0xa7,0x49,0xd6,0xee,0x9d,0xec, - 0x1b,0x31,0x96,0x1b,0x6d,0x9a,0x38,0xb8,0x47,0x74,0x69,0x88,0x3b,0x14,0xa9,0x46,0x7d,0x67,0x17,0x0a, - 0xc8,0x23,0x43,0x84,0xe7,0x84,0xda,0x38,0xfb,0xe1,0x1f,0x2b,0x9f,0xa0,0xda,0xdb,0xfb,0xe0,0x9b,0xbe, - 0x4f,0xbc,0x82,0x1f,0xaa,0x6f,0x92,0x9f,0x3c,0xb8,0x9f,0xfb,0x51,0xc3,0x99,0x3c,0xcc,0xd6,0x6b,0xa6, - 0x23,0x3d,0x21,0x36,0x4f,0x92,0xef,0x6c,0x28,0xb3,0xc9,0x0e,0xb4,0xbc,0x16,0xf0,0xcb,0x18,0x45,0x23, - 0xcf,0x31,0xaf,0xf1,0xa5,0x22,0x0d,0x22,0x55,0x34,0xd1,0xf0,0x0c,0xd7,0x45,0x1e,0xa7,0x35,0x0c,0x7b, - 0x4a,0xf7,0xe6,0x4b,0xcd,0x2e,0x9d,0x87,0x67,0x52,0xde,0x11,0x4f,0x42,0xf7,0xf6,0x92,0xfd,0x2a,0xe9, - 0x6c,0xe6,0xbb,0x18,0x9b,0x16,0xd9,0xe2,0x36,0xf2,0x6f,0x55,0x37,0x1c,0xed,0x4e,0x1e,0xba,0xeb,0x01, - 0xfb,0x9b,0x20,0x7c,0xc1,0x1b,0x53,0x7c,0xd8,0x36,0x08,0x61,0x8c,0xb8,0x04,0xea,0xb7,0x6a,0x9b,0x47, - 0x44,0x6b,0xdf,0x15,0xe3,0x5b,0x7d,0x0e,0xc2,0x52,0x47,0xce,0x32,0x84,0x95,0xd3,0xf8,0xde,0xa3,0x64, - 0xa6,0x8d,0xd3,0x59,0x85,0x74,0xaa,0xfe,0x56,0x45,0xbd,0x9c,0x29,0x22,0x5a,0x79,0xf3,0xd5,0x76,0x06, - 0x58,0x36,0xa1,0x89,0x4a,0xb5,0x6b,0x05,0x36,0x25,0xd8,0xfc,0x5d,0x2b,0xae,0xc1,0x2d,0x00,0x96,0x07, - 0xd5,0x29,0x8c,0xd4,0xca,0xa4,0xf0,0xdf,0x47,0xbf,0x55,0x9a,0x49,0xed,0x20,0x07,0xea,0xe8,0xc9,0x19, - 0xf4,0x40,0x1a,0x77,0xbc,0x2e,0xc6,0x81,0xbe,0xfe,0x3a,0x36,0xd6,0x89,0x1c,0x24,0xda,0xf9,0x02,0xf0, - 0x07,0x1c,0xee,0x99,0xfd,0xcc,0xdd,0xd5,0xe3,0x94,0xbc,0x41,0xf6,0x75,0x2e,0x31,0x10,0x86,0x52,0x51, - 0xeb,0xd3,0x6b,0x7c,0xaa,0x33,0x3a,0x9f,0xe3,0xb3,0x0d,0x78,0x9c,0xdf,0x58,0x45,0x3f,0x6b,0xd4,0x14, - 0x01,0x63,0xad,0xcc,0xf8,0x37,0x1b,0x12,0xc0,0x73,0x38,0xec,0x9b,0x23,0xe3,0x70,0xd3,0x9a,0x29,0x9b, - 0xe8,0x8b,0xd8,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0xba,0xe5,0xa7,0xde,0x25,0xe0,0xb2,0x3e,0x3e,0x2d, - 0x19,0x57,0x2e,0x72,0x56,0x88,0xa2,0x72,0x1d,0xb1,0x2e,0x3f,0x4d,0x82,0xc0,0xcb,0x9d,0xeb,0x5b,0x06, - 0x51,0x42,0xf1,0x5d,0xd1,0xe6,0xee,0x66,0xed,0x9e,0x94,0x17,0x04,0x28,0xdf,0x1d,0xbf,0x7a,0xc9,0x09, - 0x5c,0xba,0xea,0x0f,0x81,0xeb,0x99,0x40,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc,0xbc,0x58,0x65,0x23,0xe0, - 0xbc,0x54,0x8a,0xbe,0x86,0x93,0x96,0x15,0x35,0xa7,0x1a,0x30,0x8f,0x90,0x15,0xfa,0x45,0x60,0x7e,0xc4, - 0xd7,0x1a,0x8b,0x94,0x4d,0x9a,0x4f,0x87,0x67,0xfc,0x9a,0x94,0xda,0x8a,0x11,0x22,0x32,0x44,0xc7,0xb7, - 0x37,0x66,0x8d,0xa6,0xc9,0x4a,0xed,0x86,0xb3,0x24,0x8d,0x44,0xda,0x50,0x53,0x3a,0xac,0xb3,0xdf,0xbc, - 0x3d,0x7e,0xf1,0xe6,0x35,0xea,0x99,0x19,0xf1,0x0f,0x31,0x84,0x3d,0x6c,0x08,0xe1,0x06,0x76,0x30,0x77, - 0x17,0x63,0x89,0xa3,0xb4,0xd6,0xc3,0xf1,0x35,0x07,0x36,0xce,0x90,0x77,0xfc,0x67,0x56,0x4c,0xd8,0x6c, - 0xc2,0x99,0x9a,0x46,0xad,0xea,0x3d,0x45,0x9c,0xa8,0x12,0x44,0x85,0xfd,0xca,0x90,0x6d,0x62,0xbe,0x96, - 0x47,0xda,0xa4,0x65,0x9e,0xfe,0x7e,0xe3,0x82,0x79,0x8b,0x95,0x0b,0x9f,0xf2,0x86,0x20,0x9a,0x88,0xab, - 0xda,0x44,0x07,0x7d,0xcb,0x99,0x2a,0x70,0xb6,0xf7,0x42,0x23,0xb0,0x87,0xb1,0x3c,0x9a,0x8e,0x82,0x64, - 0x2c,0xa4,0x7f,0x0c,0x12,0xd2,0x9b,0x64,0xa5,0xed,0x6f,0x18,0x44,0x4a,0xb9,0x05,0x90,0xca,0x78,0x7e, - 0x9d,0x8d,0x3b,0xf3,0x16,0x0d,0xab,0xa4,0x6f,0xe6,0x9e,0xd1,0x92,0x96,0xb5,0xbc,0x47,0xea,0xf8,0x2a, - 0x6c,0xbd,0x73,0xec,0x04,0xcf,0x9b,0xb1,0xf9,0x9c,0x42,0x79,0x71,0x87,0x76,0xf6,0x28,0xef,0xc4,0x2e, - 0xb9,0x68,0xda,0x32,0x30,0x16,0x18,0x95,0x1d,0xd9,0x57,0xee,0xf7,0x23,0x12,0x5d,0x58,0x6d,0x9f,0xcb, - 0xad,0xdc,0x52,0xe7,0x46,0x5e,0xc4,0x1f,0xbd,0x4f,0xe7,0x49,0xab,0xb8,0x5a,0xc1,0x20,0xb5,0xac,0x16, - 0x7c,0x9d,0xfc,0x94,0xd3,0xa0,0x20,0xa8,0xe5,0x81,0xf6,0xe1,0x2c,0x99,0xaf,0xd7,0x2b,0x35,0xc5,0x7c, - 0xe9,0x8d,0x2a,0x95,0xf3,0x56,0xd6,0x29,0x9d,0x1a,0x12,0x18,0xc1,0xeb,0x1d,0x2e,0x7e,0x53,0xd3,0x28, - 0x9e,0x8e,0xc4,0xb0,0xb5,0x0d,0xad,0xbe,0xb6,0x9d,0xe9,0xc8,0x6c,0xd4,0x23,0x60,0xfb,0x4b,0x82,0xb7, - 0x2b,0xab,0x09,0x8d,0x60,0xdf,0xc2,0xce,0x62,0x92,0x9c,0x75,0x93,0x9d,0xe3,0x72,0x06,0x73,0xf5,0xa1, - 0x89,0xbf,0x56,0xb6,0x6a,0x2b,0xbb,0x9f,0x39,0x95,0x7e,0x25,0x75,0x70,0x68,0xcc,0x19,0x21,0xa9,0x25, - 0x6c,0x1a,0x07,0x83,0xc7,0xb0,0x44,0xac,0x95,0xc1,0x52,0x9c,0xbd,0x8c,0xc2,0x34,0xe1,0x7c,0x02,0xde, - 0x19,0xfd,0xda,0x62,0x3a,0xd6,0x09,0x30,0x40,0xea,0xb3,0x04,0x37,0x8d,0xef,0x95,0xc6,0x91,0x42,0xb5, - 0x1c,0x43,0x22,0x70,0xb0,0x30,0x8e,0x4d,0x08,0x3d,0xa1,0xc3,0x4e,0xc0,0x94,0x65,0xa3,0xed,0x5a,0x1e, - 0xfc,0x52,0xef,0x3d,0x88,0xec,0x25,0x4e,0x3d,0x1e,0xe1,0x5e,0x3d,0x1c,0x5c,0x0b,0x81,0xc5,0xe2,0xed, - 0x44,0x3f,0xc8,0x2e,0x34,0x2c,0xd4,0xfe,0x45,0x8f,0x68,0x30,0xd2,0xd6,0x97,0x3b,0xb8,0xf9,0xd1,0xeb, - 0x14,0x6b,0x64,0x02,0x56,0x92,0x67,0xfd,0x32,0xc5,0xb0,0x20,0x2e,0xcb,0x0c,0xd0,0x8f,0xbd,0xff,0xff, - 0xfb,0x2c,0x08,0x32,0xdf,0x9e,0x08,0x9b,0xae,0xfc,0x54,0x39,0x04,0xc0,0x04,0x74,0x45,0xf8,0x66,0x4a, - 0x64,0xea,0x9c,0xac,0xf9,0x4f,0x4d,0x1f,0xac,0x4f,0xcc,0xb4,0x79,0x53,0x59,0xc1,0x16,0x6c,0x04,0xef, - 0x68,0x7b,0xdb,0x54,0xa5,0x30,0x5c,0x80,0xb8,0x41,0x93,0x50,0x4a,0xf4,0xce,0x31,0xdf,0xa3,0x71,0x57, - 0x37,0xbd,0x39,0x3f,0x6b,0x34,0x69,0xa3,0x2d,0x40,0xb6,0x6e,0x6d,0x31,0x48,0xd4,0x5e,0x07,0xcc,0x2c, - 0x30,0x4d,0x0b,0xa4,0xc6,0xb8,0xc9,0xe2,0x6d,0x1e,0x66,0xda,0x6a,0x2b,0xb8,0x0a,0x10,0x00,0x33,0x64, - 0x65,0x71,0xa3,0x51,0x78,0x0f,0x6e,0x7c,0xcb,0xb8,0x71,0x8b,0x3c,0xb9,0xe6,0xbe,0xbc,0xcb,0x7d,0x07, - 0x9a,0x77,0x28,0xea,0x0b,0x62,0x8e,0x9b,0xb6,0xf5,0xc8,0xb6,0xcc,0x9b,0xa5,0x10,0xdb,0xc9,0x1c,0x17, - 0xa8,0xf0,0x2c,0xbf,0x00,0xa1,0x70,0x20,0x81,0x3c,0x81,0x56,0x5a,0xef,0x41,0xdf,0xbf,0x54,0x37,0xd5, - 0x57,0xdb,0x60,0xb0,0xea,0x6d,0x05,0x01,0xb8,0x35,0x1c,0x7b,0x4e,0xa7,0x1d,0x4e,0xfa,0x93,0x14,0x50, - 0x38,0x06,0xb4,0xc9,0x45,0x65,0x1c,0x82,0x98,0xce,0x82,0xd8,0x8c,0xa3,0x58,0xf3,0xb9,0x60,0xa5,0x0a, - 0x26,0xf4,0x4a,0x9d,0xc0,0xf0,0xe2,0xd7,0x7c,0xfc,0x3c,0x8f,0x5f,0xe5,0x84,0xf1,0x3b,0x3e,0x68,0xfd, - 0x8a,0x9d,0x5a,0xad,0x60,0xb7,0xce,0xfe,0x66,0x6d,0x1d,0x91,0x84,0xc3,0x10,0xde,0x6e,0x6f,0x6f,0xf2, - 0x0d,0x34,0x8b,0x70,0x37,0x1b,0xf5,0x3b,0x35,0x4d,0x1e,0xe9,0x7c,0x85,0x6b,0x9a,0x55,0x8f,0x92,0x08, - 0x4d,0x79,0x4e,0xaf,0xfe,0x92,0x11,0xb4,0xeb,0x5b,0x75,0xa9,0xc9,0x23,0x1d,0xc0,0x83,0xcf,0x12,0x89, - 0x39,0x51,0x9d,0xbc,0xcc,0xf7,0x82,0xa7,0x70,0xb4,0x0a,0x4e,0xad,0xc9,0x1e,0xac,0xa2,0x4a,0x93,0xb7, - 0xaa,0xe4,0xaa,0xeb,0x76,0x76,0x9a,0xbc,0x6f,0x38,0x94,0x2c,0x94,0xb0,0x27,0xaf,0xef,0xa8,0x64,0x62, - 0xf2,0xfa,0x2b,0x99,0xa3,0x12,0x18,0xbb,0xd2,0x1c,0x1d,0x40,0xfd,0xe0,0x6e,0x03,0xe6,0x09,0x4f,0xd9, - 0x04,0xbd,0xa0,0x47,0x2a,0x90,0x52,0x01,0x63,0xeb,0x4e,0x14,0x03,0x2c,0xb0,0xf3,0xf1,0x5c,0x97,0x78, - 0x81,0x12,0x73,0x2a,0x31,0xb1,0x25,0x66,0x09,0xa5,0x87,0x2b,0x17,0xb5,0x3d,0x05,0xed,0xfb,0xcd,0x01, - 0xd5,0x3a,0x1f,0xff,0x9a,0xc7,0x2f,0x72,0xe6,0xf6,0xa3,0x71,0x21,0x8d,0x99,0xba,0x63,0x53,0x45,0x7c, - 0xa0,0x74,0xf0,0x66,0xa5,0xa1,0x25,0x5e,0x29,0x0b,0x2b,0xf1,0x0c,0x57,0x32,0x1f,0x9b,0xab,0x03,0x63, - 0xa9,0x65,0x30,0x78,0xa2,0x65,0xe9,0x32,0x7b,0x26,0x12,0x48,0x70,0xea,0xa3,0x81,0xf7,0x8d,0x3b,0xa4, - 0x47,0x46,0xfe,0xf1,0xc8,0xc6,0x5b,0x8c,0xb2,0xc4,0x86,0xe0,0x76,0x44,0x94,0x19,0x47,0xeb,0x72,0xb1, - 0xb6,0x44,0xd9,0xf7,0x2e,0x7f,0x0c,0xcb,0xc9,0xbd,0xc7,0x8d,0x04,0xaa,0xda,0xf8,0x3b,0xed,0xb1,0x4f, - 0x62,0x1d,0x66,0x5f,0xfc,0x4d,0x5f,0x57,0xeb,0x04,0x08,0xfb,0x87,0x7e,0xf9,0x7b,0x1e,0x2d,0x05,0x12, - 0x8a,0xe8,0x1d,0xb8,0x75,0xe1,0x9e,0xa0,0x94,0x88,0xf3,0x73,0x76,0xa6,0xb0,0x6f,0xfa,0xda,0xce,0xb9, - 0x44,0xde,0x73,0xe9,0xa1,0x91,0x81,0x26,0x67,0x8d,0xe1,0x86,0xdc,0x86,0x8e,0xac,0xaf,0x16,0xdb,0x5c, - 0xd2,0x67,0x04,0xe1,0x59,0xc5,0x95,0x1f,0x72,0x54,0x31,0x10,0x24,0xb8,0xf1,0xce,0xd1,0x36,0x88,0x48, - 0x46,0x88,0x51,0xc1,0x7f,0x96,0x37,0x36,0x01,0xc9,0x50,0x3e,0x63,0x55,0xde,0xcc,0xbc,0x1e,0x97,0x92, - 0x30,0x35,0x09,0x8f,0x99,0x66,0x97,0xc4,0x25,0x25,0xd2,0x94,0x66,0xa9,0xfe,0xea,0xd2,0xbe,0x9b,0xcf, - 0xae,0x6c,0x8a,0xff,0xdd,0x82,0x52,0xcf,0x33,0xd8,0x95,0x3f,0x43,0x95,0xea,0xc2,0x54,0xae,0x6e,0x50, - 0x1e,0xd7,0xc0,0x4b,0xc6,0xb9,0xed,0x95,0x99,0x18,0x75,0x6d,0xbf,0x7d,0xcc,0xf5,0xaa,0x63,0xdb,0x84, - 0xfa,0x68,0xbe,0xd6,0x59,0x47,0xae,0x7f,0xf6,0xfb,0x4f,0x94,0x36,0xd5,0x7b,0x4a,0xbd,0x4f,0xae,0x2b, - 0xf5,0x98,0xfe,0x68,0x03,0xff,0xd1,0x63,0xa2,0x80,0x2c,0xc9,0xf5,0x3e,0x09,0x1f,0x27,0xe6,0x35,0x32, - 0x1c,0x2b,0xaf,0xc4,0xbd,0x64,0xf7,0xbd,0x17,0x84,0x89,0x38,0x52,0xb6,0xfe,0x2f,0x4b,0xd0,0x81,0x88, - 0x2f,0x8c,0x25,0xb9,0xb7,0x5e,0x1f,0xe3,0xf0,0xa4,0x35,0x38,0x16,0x10,0x78,0x93,0xdc,0x1b,0x0c,0x96, - 0xe3,0x25,0xed,0x86,0x67,0x78,0xbc,0x1a,0x5f,0xc5,0x53,0xf5,0x16,0x8f,0x97,0xe3,0x4b,0xda,0x17,0x4f, - 0x93,0x7b,0xe3,0xeb,0xf5,0x7a,0x11,0x2f,0xd4,0xaf,0x48,0xed,0xf1,0x9f,0x39,0x1e,0x1f,0xc7,0x17,0xea, - 0x05,0x15,0xfc,0xb8,0x5e,0xdf,0xc4,0x37,0xea,0x25,0x3d,0x1e,0xad,0xd7,0xe7,0xf1,0xb9,0x7a,0x4e,0x7c, - 0x4b,0x1e,0x7e,0x8a,0xc6,0x9f,0x64,0xda,0xe2,0x4f,0x91,0x7a,0x9d,0xf0,0x41,0x58,0xb3,0xc2,0x5e,0xbd, - 0x4a,0xde,0x36,0xe1,0xaf,0x91,0x7a,0x97,0x38,0x38,0xf1,0x3d,0x75,0xa3,0xdb,0xd7,0x04,0x92,0x74,0xa0, - 0x94,0xea,0x6d,0xa4,0xf8,0xf7,0x19,0x1d,0x95,0xef,0x1c,0x68,0x8e,0x43,0x2a,0xc1,0x19,0x6f,0x22,0xf5, - 0x72,0x30,0x78,0xc9,0x96,0x16,0x2f,0x06,0x83,0x17,0xf0,0x67,0xf0,0x6a,0xd5,0x81,0xdb,0x35,0xbc,0xd6, - 0x97,0x25,0x0d,0xec,0x7b,0xda,0x0e,0xce,0x44,0xca,0x35,0x6a,0x84,0x46,0x32,0xd7,0xe0,0x53,0x95,0x0e, - 0xad,0x7c,0x86,0xb0,0x47,0xcc,0x6a,0xba,0xe7,0x13,0x16,0xac,0x9d,0x8e,0x38,0x30,0x92,0x18,0x26,0x16, - 0x62,0x98,0xd8,0x60,0x87,0xd9,0x7d,0xd3,0x7d,0x0f,0x23,0xf5,0xeb,0x60,0xf0,0x2b,0x75,0xfd,0x1d,0xcc, - 0xa6,0x9e,0x0e,0x06,0x4f,0xd1,0x67,0x8c,0xf8,0x58,0x0f,0xe8,0x58,0x46,0xac,0xae,0x5b,0x07,0xc9,0xb1, - 0x3f,0x1f,0x6f,0x5a,0xd3,0xb1,0x5e,0xbf,0xa2,0x73,0xfc,0x59,0x13,0x3e,0x8f,0xc6,0xde,0x29,0xf4,0x4e, - 0x3d,0x8f,0xe2,0x23,0x14,0x9f,0x53,0x63,0x40,0x22,0xca,0x9b,0x08,0xb1,0xca,0xad,0xfc,0xfe,0x50,0x37, - 0xb8,0xaa,0x77,0x61,0xdb,0x03,0x4c,0x23,0x10,0x27,0xec,0xa6,0xee,0x1c,0xf9,0xcd,0x87,0xad,0x09,0x0e, - 0x89,0xf3,0x74,0x93,0x68,0x67,0x0c,0xba,0xee,0xbe,0x74,0xf1,0x47,0x95,0xe9,0x4c,0x8a,0x48,0x5d,0x12, - 0x20,0x22,0xd0,0xea,0xb5,0x4c,0x49,0x0a,0x0f,0x0b,0xfe,0x5d,0xf6,0x4c,0x49,0x4a,0x3c,0x14,0xa6,0x84, - 0x4b,0xb5,0xfa,0x74,0x2c,0x53,0xf2,0xb1,0x35,0x25,0x47,0xea,0x23,0x4f,0x49,0xaa,0x56,0xea,0x48,0xa6, - 0xe4,0x0a,0x94,0x59,0x4a,0x6f,0xea,0x9a,0x3f,0x3a,0x02,0x9d,0xad,0x0d,0xcd,0x35,0xae,0x4c,0x7d,0x74, - 0xe6,0xbd,0xb5,0x71,0xa5,0x4b,0x37,0xb8,0xb2,0xbe,0x1b,0x57,0x4a,0x14,0x59,0xb9,0x8b,0xc6,0xa2,0x46, - 0xc3,0x40,0x89,0x36,0x76,0x97,0x1b,0x36,0x48,0xda,0x38,0xa9,0xd4,0x8c,0x33,0x57,0x89,0xc4,0x8a,0x21, - 0x24,0x09,0x79,0x4b,0x6a,0xb0,0xda,0xd4,0xbc,0x1a,0xe4,0xb7,0x34,0x09,0x3e,0xee,0xbb,0xa4,0x44,0xc1, - 0x5f,0x2f,0x91,0x45,0x18,0x52,0x17,0x22,0xac,0x58,0x0b,0xf6,0x92,0x8c,0x0b,0x5b,0xbb,0xc5,0x5d,0x37, - 0x94,0xc4,0x9e,0xdd,0x52,0xe2,0x1c,0xaf,0x06,0x95,0x5d,0xcb,0x36,0x9f,0xcb,0x36,0x3f,0xc6,0x36,0xbf, - 0xa2,0xd5,0x61,0x84,0x70,0x1e,0x8d,0xcf,0xa5,0xae,0xf8,0x3c,0x62,0xac,0x68,0x86,0xd6,0xde,0xfa,0x3e, - 0x88,0x40,0x84,0xd4,0x03,0x30,0xbc,0x06,0x3d,0xe9,0x16,0x86,0x38,0x08,0xd8,0xb5,0xe0,0x10,0x07,0x20, - 0xcb,0xa8,0x05,0x21,0xe3,0xf0,0x9a,0x71,0x08,0x43,0x0e,0xd5,0x79,0xc1,0x86,0x22,0x21,0x36,0xc4,0x62, - 0x30,0x58,0xe0,0x4d,0x79,0x9d,0xd4,0x98,0xe4,0x66,0x7c,0x43,0xdb,0x35,0x2e,0x43,0x9f,0x20,0x78,0xe6, - 0x9d,0xc8,0xdb,0xd1,0xa9,0x68,0x36,0xe4,0x02,0x46,0x5f,0xbb,0xfc,0x16,0x31,0x6b,0x99,0x95,0x70,0x01, - 0x90,0x75,0x88,0x6d,0x98,0x13,0x23,0x54,0xb2,0x17,0x40,0x6a,0x4c,0xc5,0xb7,0x02,0xe1,0x54,0x27,0x07, - 0xa7,0x31,0xc2,0xe0,0xd8,0x2b,0xff,0xe0,0x0c,0xa3,0xe9,0xa7,0x6f,0x3c,0x8d,0xde,0x53,0x4d,0xaf,0xec, - 0x42,0x7d,0xdf,0xf8,0x18,0xe0,0x1e,0xdf,0x8c,0xec,0x1c,0x47,0x2c,0xe9,0xfd,0xc2,0x3c,0x29,0x67,0x2a, - 0xd7,0x4f,0xdf,0xda,0x92,0x1b,0x75,0xe0,0x55,0xf5,0xa2,0x43,0xc5,0x37,0x9e,0x64,0x6c,0xb1,0x9a,0x37, - 0xf9,0x72,0x9e,0x09,0xbd,0xbe,0x5e,0x77,0x47,0xe6,0x45,0x4e,0x63,0x53,0x17,0x38,0x6f,0x59,0xc7,0x9b, - 0xae,0xef,0x16,0xfc,0x40,0x5c,0x2e,0xae,0xe0,0xc8,0xa3,0x32,0x39,0x27,0xf6,0xef,0x39,0xac,0x80,0xc0, - 0xef,0x2a,0x5c,0xe5,0x34,0xe7,0x8b,0xd9,0x69,0x02,0x4a,0x06,0x1f,0x93,0x90,0x78,0x01,0xc1,0x6e,0x42, - 0xfe,0xc4,0x8b,0x20,0x0c,0xae,0x0b,0x74,0x95,0x2e,0xcc,0x8a,0x2a,0x39,0xc7,0xba,0xa9,0x09,0xdc,0xfa, - 0x72,0xe6,0xa6,0xda,0xe9,0xfb,0xad,0x1b,0x28,0x5f,0x36,0xed,0xeb,0x5a,0xba,0xd7,0xf0,0xd9,0xac,0xdd, - 0x9b,0x50,0x0c,0x6b,0x3d,0x3f,0x12,0x1f,0xca,0x44,0x54,0xca,0x71,0xde,0x70,0x59,0x81,0xa8,0xfd,0xb4, - 0xf8,0xd1,0x73,0x05,0x69,0xc4,0x19,0x5a,0x78,0x16,0x27,0x33,0x85,0x11,0x9a,0xf3,0x01,0xb9,0xa3,0x10, - 0x0f,0x72,0xfb,0xcb,0x43,0xf5,0xae,0xb1,0x19,0x4a,0x0b,0xf2,0x7d,0x7a,0xf3,0x5d,0x8b,0xe9,0xec,0x3a, - 0x3c,0x5c,0xb1,0xbb,0x03,0xa4,0xce,0xa2,0x16,0x0f,0x84,0xcf,0xcc,0x1b,0xc9,0x69,0x14,0x61,0x52,0x8e, - 0x9d,0x34,0x9c,0xe6,0x35,0xdb,0x28,0x4b,0x86,0xaf,0xbe,0x78,0xe2,0xcd,0xc4,0xee,0x1d,0x0e,0x0f,0x22, - 0xa9,0xca,0xba,0xc8,0x77,0x9c,0xc5,0x4f,0xd8,0x9f,0xe6,0x2e,0x99,0x99,0xe7,0x7a,0xe1,0x49,0x45,0x99, - 0x0c,0xd8,0x32,0x8c,0x35,0xab,0x88,0x33,0xbe,0x65,0x12,0x6b,0xdc,0xd6,0xc7,0x54,0xc7,0x3f,0xe1,0x0d, - 0x66,0x5d,0x12,0x7d,0x21,0xe7,0x8f,0x5e,0x03,0x7c,0x05,0xa6,0x8b,0x96,0xda,0x0e,0xa4,0x54,0xb8,0x2b, - 0x2b,0x22,0x04,0x51,0x62,0xf3,0xe6,0x91,0x8e,0xad,0x44,0xe8,0x8f,0x51,0xa1,0xe1,0x27,0x3b,0xde,0x7c, - 0x39,0x7d,0x71,0x8d,0xcb,0x41,0x4e,0xd9,0x9f,0xaf,0x27,0xa6,0xed,0x77,0x4e,0x92,0xf4,0xe0,0x97,0xe9, - 0xfe,0xc7,0x2c,0x5b,0xee,0xa7,0x73,0x3a,0x2c,0xee,0xe9,0x9b,0x07,0x99,0xbe,0x71,0x81,0xb2,0xc3,0xc0, - 0x15,0x09,0xd4,0x2d,0x77,0x2d,0x6e,0xb6,0x66,0xc7,0xf5,0xd9,0x07,0xe2,0x0f,0x1a,0xd8,0x98,0x24,0x62, - 0xe5,0xc0,0x39,0xdf,0x84,0xe9,0x5e,0xd9,0xd6,0x92,0xdf,0xf5,0x69,0x6a,0xf3,0xed,0xe9,0xea,0x99,0x8e, - 0xeb,0xea,0x44,0xdc,0x9a,0x5d,0xbf,0x2d,0x11,0x96,0x08,0xa5,0x09,0x38,0x9f,0x10,0x61,0xcc,0xa1,0x41, - 0xe6,0x39,0x7d,0xfa,0x0e,0xf7,0xc0,0xfb,0x31,0xeb,0xfd,0xe5,0x95,0x0a,0x08,0xc4,0x95,0x75,0xb2,0x91, - 0xda,0xf4,0xd5,0x16,0xb3,0x66,0xbf,0xe0,0x1f,0xbe,0x43,0xad,0x29,0x97,0xf4,0x4a,0x7f,0x81,0xc1,0xaa, - 0xf5,0x3a,0xb7,0x5d,0xc0,0x10,0xa6,0x46,0x03,0x59,0xea,0xae,0xb0,0x60,0x78,0x54,0xba,0x8b,0xea,0x89, - 0xc8,0xfc,0x29,0x3b,0xff,0x98,0x37,0x96,0xff,0x4c,0x02,0xce,0x44,0x40,0xbd,0x30,0xd8,0xab,0xf6,0x82, - 0xe5,0x27,0xc5,0xaa,0xfe,0xe5,0xa7,0x28,0x50,0xa5,0x07,0xc0,0x86,0x17,0x4f,0x82,0x83,0xda,0xd7,0xd3, - 0xff,0xd6,0xda,0x75,0xcd,0xf8,0x59,0x19,0xbf,0x29,0x9d,0x04,0xdf,0x48,0xc5,0x8a,0x96,0x96,0x4e,0x67, - 0xdf,0x2b,0x71,0xeb,0xae,0x1f,0x36,0xde,0x62,0x6f,0xad,0xa0,0x66,0x46,0xfa,0x90,0x63,0x05,0x64,0xca, - 0x1a,0x57,0xc4,0x8d,0x32,0xe6,0x10,0xad,0xbb,0x7c,0xbb,0x37,0xbb,0x2a,0x67,0x26,0x60,0xef,0x07,0xd1, - 0xf1,0x96,0xb5,0x6b,0x24,0x1e,0x25,0x0c,0x89,0x73,0xe4,0x6a,0x22,0x25,0x90,0xed,0x07,0x55,0x39,0xf1, - 0x2f,0xb0,0xf9,0xd6,0x1c,0x6c,0xdb,0xaa,0x7b,0xb6,0x62,0x21,0x40,0xbd,0x21,0xfc,0x22,0x77,0x3b,0x72, - 0x98,0x33,0xf8,0x1e,0x78,0x96,0x4f,0x99,0xb8,0x16,0xed,0xfa,0xc6,0x4d,0xda,0x9c,0xe1,0xae,0x2a,0xab, - 0x6c,0x66,0xab,0xa4,0x67,0x8e,0x9c,0x66,0xfc,0xa1,0x5a,0x92,0x22,0xcf,0x88,0x76,0x54,0x48,0xa8,0x4f, - 0x7b,0xd5,0x4c,0x01,0x99,0xab,0x73,0x37,0x82,0x88,0x52,0x07,0xf2,0xb4,0xb1,0xa2,0x41,0x85,0xa2,0xaf, - 0x1d,0xa5,0x6a,0x80,0x70,0x17,0xd6,0xce,0x19,0xd6,0xda,0xf4,0x0e,0x7d,0x97,0xee,0x1e,0xe6,0x33,0xf0, - 0xa4,0xd2,0x4d,0x3b,0xba,0x37,0x7f,0x05,0x2b,0x28,0x31,0xe4,0xe1,0xb0,0x07,0x01,0xdf,0x82,0x47,0xd5, - 0x70,0xc8,0x2d,0x04,0xd2,0xd6,0x99,0x94,0xb4,0xaf,0x4b,0x10,0x95,0x61,0xbf,0xf1,0x93,0xe5,0x20,0x74, - 0xdf,0x9a,0x68,0xc7,0x95,0x2d,0x0a,0xfc,0x6e,0x4b,0x1d,0x8b,0xec,0xec,0x7e,0x10,0xdc,0x67,0x43,0xf2, - 0xfb,0x36,0x60,0xe9,0x7d,0x5a,0xe4,0xed,0x9e,0x02,0x91,0xdb,0xda,0xe9,0xc5,0xd5,0xaa,0xf8,0x82,0xe5, - 0xee,0x04,0xc9,0x88,0x43,0xb3,0x56,0x79,0x6d,0xba,0x68,0x91,0x13,0x75,0x51,0x69,0xf3,0x23,0x29,0x52, - 0xcc,0xf3,0x22,0xdb,0xb7,0x2d,0x4b,0x71,0x49,0x3d,0xd6,0x89,0x6c,0x51,0xd9,0xb9,0xf2,0x86,0xe0,0x78, - 0x51,0xfa,0x1e,0x32,0x59,0xb2,0x80,0x43,0x1b,0x03,0x24,0xf5,0x74,0xb4,0x0d,0x93,0xca,0x33,0xdf,0x65, - 0x8a,0xc6,0xc2,0x1c,0x57,0xdc,0xd0,0x3e,0x29,0xac,0x00,0x6c,0xd4,0x3c,0x2a,0x4c,0xe4,0x81,0x2a,0x81, - 0xdf,0x52,0x23,0x9b,0x45,0x95,0xf2,0x2c,0xe4,0xd4,0x8b,0x52,0x8b,0xab,0xb4,0xd4,0xff,0x32,0xad,0x9f, - 0xe4,0x8c,0xf4,0x60,0xe0,0xaa,0x42,0xff,0x4e,0x25,0x0b,0xc7,0xfa,0x7e,0xa0,0x27,0x12,0xe5,0xc6,0x0f, - 0x7b,0xef,0xee,0xcb,0xe8,0xaa,0x04,0x38,0x0a,0xa4,0x91,0x30,0x1d,0x46,0xb8,0xee,0x1b,0x86,0x13,0xb8, - 0x92,0x2b,0xd2,0x97,0x43,0x18,0x14,0xf3,0xa4,0x84,0x86,0x87,0x18,0x54,0xd7,0x37,0x3f,0xfb,0x1d,0x67, - 0xd3,0x30,0x7e,0xe6,0xe0,0x03,0x6c,0xc9,0x2c,0x51,0x49,0x71,0x60,0x88,0xd1,0xf1,0x81,0xd2,0xca,0xe9, - 0x66,0x31,0x0f,0x24,0xfe,0xd9,0x35,0xe2,0x77,0x4a,0x53,0x9e,0xe2,0x9a,0x69,0xf4,0x09,0x4d,0xcb,0x9c, - 0x73,0xa4,0x10,0xe8,0xbd,0x9b,0x62,0x32,0x18,0xb0,0x1d,0xa2,0x8b,0x6a,0xc9,0xb9,0x0a,0xd1,0x8a,0x54, - 0x70,0x8f,0x2d,0xef,0x02,0xb6,0xef,0x86,0x2e,0xdf,0x41,0xc8,0x60,0x70,0x56,0xda,0x0b,0x6f,0x0d,0x7a, - 0x13,0x66,0x8b,0x88,0x6e,0x36,0xdd,0x44,0xac,0xad,0x98,0x81,0xb1,0xf2,0x03,0xca,0xfe,0xda,0x3f,0xe0, - 0x5f,0x65,0xc0,0x85,0x2e,0x4f,0xcb,0xbf,0xeb,0x5f,0xce,0x38,0x4f,0x5a,0xb3,0xf7,0x42,0x66,0x4f,0xaf, - 0xd1,0x2b,0x0e,0xeb,0x40,0x83,0x9b,0x9f,0x1c,0x9e,0x8e,0x56,0x7a,0xa6,0xad,0x9c,0xcf,0xfa,0x75,0xed, - 0x1d,0x62,0x24,0xd3,0xa4,0x22,0x86,0x2f,0x27,0xfe,0xae,0x24,0x9e,0x6e,0x05,0x19,0x97,0x0a,0xc3,0x59, - 0x92,0x45,0x2d,0x1f,0x3d,0xc4,0xe9,0xb1,0xaf,0x5b,0x26,0xa2,0x53,0xa5,0x3d,0xa2,0xe2,0xa5,0xb6,0xed, - 0xbc,0x84,0x65,0x4b,0x7c,0xa5,0xac,0x19,0x62,0xbc,0xd8,0x70,0x90,0x0d,0x63,0x3b,0xc8,0x13,0xa0,0xe7, - 0xa3,0x63,0xcc,0x57,0xf2,0xad,0x3b,0xfe,0xec,0x06,0x0b,0x08,0xb1,0xb1,0xaa,0xd5,0x67,0xa7,0x7a,0x30, - 0xd0,0x73,0x6d,0xbc,0x4c,0xb4,0xda,0x5a,0x2d,0xd5,0xa5,0xa2,0xce,0x6c,0x5a,0xfc,0xd4,0xcf,0xee,0x34, - 0x67,0xa0,0x4e,0x8c,0xa5,0x22,0x41,0x72,0x10,0xf5,0x99,0xaf,0x19,0xbb,0x64,0x99,0xe8,0x97,0x3a,0xe4, - 0x93,0xe1,0x57,0x58,0x89,0x4b,0xdf,0x26,0xc5,0xc9,0xc3,0x53,0xad,0x3f,0x32,0x14,0x17,0x2d,0x85,0x4e, - 0xb1,0xab,0xf6,0xda,0x00,0x75,0xae,0xeb,0x7b,0xee,0x22,0x00,0x97,0x63,0xc4,0x71,0x9a,0xe7,0x69,0x4d, - 0xb9,0xe6,0x83,0xe7,0xf2,0x41,0x35,0xcc,0x89,0xa6,0x49,0x89,0x76,0x3c,0x4c,0x4a,0x57,0xaf,0x2a,0xa9, - 0x55,0xb6,0xc0,0x30,0xd9,0x0f,0x93,0xd2,0x75,0x04,0xc1,0x57,0x4c,0x8d,0xaa,0xe2,0x6b,0xf1,0x0a,0x8e, - 0x59,0xd0,0x76,0x24,0xf9,0xb7,0x55,0xc9,0xe4,0xb3,0xa3,0x92,0xb0,0x02,0xd3,0x65,0xcc,0xa3,0xf8,0x09, - 0x1c,0x7a,0xb5,0x9d,0x64,0xf4,0x3c,0x9e,0x35,0xb4,0x2f,0x74,0xfe,0xbe,0x69,0xaf,0x1a,0x9f,0x9b,0x26, - 0xba,0x7d,0x66,0x84,0x95,0x9e,0xbd,0x73,0x97,0x19,0x1c,0x07,0x26,0xda,0x53,0x7c,0x1b,0xc4,0x41,0x89, - 0x1f,0x17,0xf8,0x41,0xdf,0xb5,0xb7,0x97,0xc0,0xe0,0x2f,0xdf,0xbb,0x1f,0xc4,0xf7,0xf7,0x32,0xc4,0x0b, - 0x62,0xb7,0x72,0xd8,0x7d,0xbb,0xfb,0xa4,0x3d,0x91,0x37,0x1b,0x2e,0x3a,0xb3,0xe8,0xc2,0x52,0xb5,0xf6, - 0x7e,0x52,0x2b,0xc9,0x24,0xbe,0x75,0x13,0x6c,0x07,0xae,0xb6,0x17,0x9d,0x05,0x27,0x30,0x2d,0x6f,0x0b, - 0xe7,0x9d,0x4e,0x54,0x5f,0x47,0x62,0x3c,0x01,0x15,0x34,0x93,0xa7,0x81,0x3e,0xf9,0xbe,0x2f,0x0d,0xd1, - 0x2c,0x8e,0x63,0x44,0xfb,0xfc,0xd6,0x49,0x62,0x00,0x75,0x46,0xbd,0xc6,0xca,0x21,0x20,0x42,0x0f,0x7f, - 0x52,0xe3,0xbb,0xca,0x22,0x24,0x0e,0x4b,0xe9,0x15,0xa6,0x6f,0xff,0xcd,0x21,0x82,0xca,0xbd,0x84,0x1f, - 0xd4,0xb7,0x25,0x6b,0xcd,0x53,0x63,0xec,0xeb,0x02,0x65,0x67,0x9f,0x52,0x89,0x96,0x52,0x9b,0x40,0xe0, - 0x5e,0x4d,0x23,0xaa,0xe0,0xe7,0x32,0x3c,0x09,0x26,0x4d,0x35,0xa7,0x41,0xb0,0xd5,0x30,0xfd,0xa6,0x73, - 0xfc,0x5d,0x64,0x4d,0x1a,0x9c,0xde,0x6d,0xd3,0xbe,0x3b,0x61,0x92,0xf1,0x0e,0x93,0x78,0x8d,0x5e,0x87, - 0x01,0xcc,0xf4,0x7f,0x20,0x22,0xcc,0x4e,0xd6,0x7a,0x0d,0x5e,0x51,0xcc,0x51,0x6c,0x87,0x8d,0x8b,0xb1, - 0xb5,0x1c,0x0a,0xf3,0x3d,0xc2,0xf2,0xb0,0xf2,0xb8,0x7f,0xbe,0x6a,0x9a,0xb2,0xb8,0x8f,0x69,0x90,0x4a, - 0x11,0x56,0x60,0x2f,0xe5,0x86,0x9b,0xc2,0x54,0x4b,0x69,0xb4,0x08,0x56,0xf5,0x47,0x07,0xfc,0x08,0xdb, - 0x51,0x6a,0x2a,0xbd,0xb8,0x9b,0xa1,0xae,0xe4,0x16,0xd4,0x75,0x58,0x8c,0xf5,0x9a,0xec,0x05,0x26,0x23, - 0x88,0xab,0x31,0x9b,0xcf,0x9a,0x8c,0xc8,0xe5,0x98,0x05,0x64,0x48,0x33,0x6d,0xad,0xd7,0x95,0xa9,0x25, - 0xee,0x6b,0xc6,0x56,0xe4,0x43,0x67,0xe3,0x9d,0xc7,0x1c,0x96,0xe7,0x05,0x1f,0x0f,0x87,0x07,0x91,0x1f, - 0x93,0xdf,0x4c,0xa3,0x0e,0x7f,0x4d,0x84,0x23,0x55,0xa7,0xe1,0xec,0xdb,0xd2,0x85,0x4a,0x0e,0xce,0x3e, - 0x86,0xed,0xa2,0xc4,0x3c,0x74,0x10,0x71,0xc6,0x1b,0xa7,0x9b,0x5a,0x20,0xd5,0x7d,0xea,0x9b,0x87,0x16, - 0x2d,0xc3,0x29,0x84,0xf7,0xf9,0x27,0x22,0x00,0x1b,0x93,0x55,0x09,0x26,0x17,0x07,0x30,0x31,0xe4,0x20, - 0xb2,0x76,0x7f,0x40,0x8b,0x3f,0xae,0xc4,0x2e,0x2a,0xbe,0x7f,0x36,0xd1,0xc1,0x0d,0xee,0xf3,0xb4,0xa9, - 0x4e,0x6c,0xe6,0xb8,0xe8,0x46,0x6b,0xf6,0x10,0x58,0xe5,0xf6,0xb0,0xb1,0x39,0x82,0x7a,0x83,0x09,0x76, - 0x79,0x7d,0x5b,0x95,0x93,0xac,0xae,0xb3,0xa9,0x59,0x7a,0x6d,0x40,0x23,0xf1,0x75,0xc4,0x8f,0x60,0x57, - 0x1e,0xb6,0x8a,0xa6,0x7e,0x51,0xda,0x6f,0x5c,0x92,0x7e,0xb7,0x0a,0xb6,0x0d,0x43,0xbd,0x60,0x21,0x28, - 0xcd,0x2e,0x35,0x8c,0x8b,0xd9,0x05,0xc0,0xa2,0xf3,0x31,0x66,0xdb,0x7b,0x8f,0x69,0x67,0xd7,0x5e,0x81, - 0x87,0x9d,0x02,0x0f,0xe1,0xa3,0x66,0xd9,0x35,0xbf,0x1b,0x4c,0x0e,0x9d,0xcd,0x43,0x6d,0xfb,0xed,0x08, - 0x5e,0x18,0x6b,0xa7,0x08,0x7a,0xe5,0x4d,0xbd,0x9e,0x32,0x9a,0x6a,0x5a,0x4b,0x6f,0x7c,0xf9,0x8c,0x87, - 0x97,0xcf,0xb6,0x46,0x57,0xbb,0x69,0x70,0x04,0xf8,0x6e,0x87,0x00,0x17,0xc2,0xbd,0x8f,0x03,0xe9,0x99, - 0x23,0x67,0x6f,0x60,0x98,0x93,0xf5,0xda,0xa3,0xf4,0x09,0x23,0xce,0x0b,0xa3,0xd3,0x0f,0xce,0xd8,0x5e, - 0x79,0x2f,0xac,0x78,0x3e,0x2a,0x89,0x65,0xe7,0x02,0xa3,0x07,0xb7,0x98,0x24,0x09,0x8e,0x7e,0x87,0xfb, - 0xcd,0x75,0xa1,0x6d,0x2a,0x68,0xd4,0x31,0x4a,0x8b,0x10,0xac,0x85,0x9e,0x37,0x01,0xaf,0x8e,0x35,0xde, - 0xd7,0x2e,0x0c,0x81,0xd9,0x41,0xbb,0xb8,0xcd,0x34,0xa5,0xad,0x0c,0x4f,0x71,0xc2,0x3d,0xcc,0x23,0x38, - 0x0c,0x82,0xae,0x21,0x50,0x96,0xbc,0x85,0x25,0x6c,0x92,0x4c,0x19,0xde,0x56,0x29,0x8d,0x85,0xad,0xab, - 0x65,0x2e,0x79,0xfc,0x32,0xf1,0x2e,0x00,0xac,0x4f,0x7e,0xb4,0x45,0xa3,0x6d,0x76,0x63,0x8c,0x7a,0xe3, - 0x39,0xeb,0x83,0x21,0x0a,0xb3,0x9b,0x9c,0x76,0x92,0x76,0x7b,0x9a,0x88,0xb2,0xb8,0x35,0x6b,0xba,0x79, - 0xd7,0xa0,0xe2,0xae,0x58,0x3a,0x13,0x3c,0x38,0x53,0x6c,0x63,0x13,0x05,0xcd,0x2e,0x42,0x97,0xe1,0xb1, - 0x3d,0x40,0x3f,0xd1,0x83,0x22,0x41,0xeb,0xf7,0x31,0xb9,0xb4,0xe6,0x7b,0x01,0x3d,0xb5,0x9a,0x0e,0x73, - 0x7e,0xc9,0x6d,0x3f,0xda,0x97,0x70,0x36,0x4e,0xf4,0xe1,0xae,0x4f,0x20,0xde,0xa6,0x48,0xfc,0x9c,0x93, - 0xf2,0x94,0x71,0x86,0x73,0x92,0xd7,0x0f,0x1a,0x5a,0x60,0x32,0xc3,0x3d,0xf7,0x90,0xd4,0xd6,0x85,0x3d, - 0x1d,0xb4,0x80,0xbd,0xd3,0x74,0x31,0x8c,0x9c,0x3b,0xbd,0x98,0xcb,0x6d,0x9f,0x00,0x11,0xe1,0x17,0x34, - 0xe3,0xe1,0xf6,0xf7,0x26,0xfa,0x5e,0xb4,0x67,0xf1,0x92,0xc4,0x43,0x09,0x94,0x78,0x5a,0xdb,0x69,0xb0, - 0x5e,0x14,0x3e,0x26,0x6b,0x61,0x23,0x89,0xc1,0xfe,0xa7,0xb6,0x67,0xab,0x2d,0x5f,0xc0,0x10,0x04,0x2c, - 0x61,0xd1,0x3a,0xe3,0x6a,0xa4,0x4d,0x79,0x21,0x63,0xb8,0x25,0x5e,0x1c,0x98,0xdd,0x38,0xb4,0x58,0x47, - 0x5b,0x7b,0x7e,0x8d,0x03,0x22,0xc2,0xbd,0x91,0xb3,0x57,0x1d,0xba,0xf8,0x62,0xba,0xb7,0xc7,0xaf,0x05, - 0xc6,0x12,0xeb,0x02,0x9b,0x36,0xa2,0xf5,0xdc,0x09,0xb6,0xa3,0x6f,0xb7,0x06,0x84,0x81,0x3a,0xea,0x2c, - 0xb4,0xc6,0xfd,0x9e,0x56,0xd1,0xed,0xe9,0x6a,0x5c,0xc9,0xf9,0x21,0xb3,0x35,0x4e,0xf5,0x71,0xa2,0x8f, - 0x15,0xbe,0xef,0xc4,0x88,0x6a,0xec,0x6d,0xc8,0x04,0x20,0x67,0x44,0x81,0x06,0xda,0x4e,0xa1,0x31,0xd1, - 0x0b,0x1d,0x7d,0x91,0x7d,0x5a,0xf2,0xe1,0x9e,0x8a,0x7f,0x44,0x34,0xa6,0x6d,0x4d,0x8c,0xe7,0xf9,0xbc, - 0x9c,0x7c,0xd4,0xd8,0xc3,0x76,0x8c,0x16,0xd1,0xcb,0xdc,0x74,0x88,0x66,0x4b,0xee,0x76,0xef,0xa9,0x99, - 0xb4,0x50,0x20,0xa1,0x2f,0x55,0x25,0xfd,0xc8,0xb1,0x7b,0x4f,0xf6,0xad,0x0e,0x6b,0xa1,0x1d,0x7c,0xbd, - 0x28,0x12,0xf1,0x49,0xc0,0xce,0xbe,0x26,0xe0,0x45,0xdf,0xbd,0x59,0xb7,0xa5,0x09,0xb3,0xaf,0xa5,0x8f, - 0xf3,0xd6,0x55,0xdc,0x27,0x12,0xdd,0xe2,0x74,0x04,0x46,0x99,0xca,0xec,0xce,0x11,0x2b,0x9b,0xf6,0xc6, - 0x75,0x5a,0xe1,0xee,0x90,0x54,0x9c,0x79,0x0f,0x54,0x4d,0x64,0xb7,0x30,0x82,0x44,0x7c,0xeb,0x90,0x18, - 0xf7,0x03,0xcb,0x13,0x72,0xa2,0x7e,0x81,0xfb,0xcd,0x5e,0x58,0x0a,0xbe,0x25,0xd8,0x17,0x1a,0x08,0xc7, - 0x92,0xa5,0x9d,0x7c,0xff,0xa3,0x2d,0xe2,0x43,0x17,0x8b,0x04,0x85,0x94,0x43,0x3a,0x63,0xc6,0xf7,0x99, - 0xd7,0xe4,0x56,0xe8,0x01,0x2d,0x98,0x5c,0x4b,0xb8,0x52,0x4b,0x8e,0x13,0xed,0xa9,0xd4,0xd1,0xca,0xb2, - 0x0f,0x37,0xca,0x45,0x56,0x9a,0x8c,0xeb,0x36,0xcb,0x70,0x6a,0x23,0x3c,0x69,0xd4,0xcd,0x17,0xab,0xec, - 0x25,0x15,0x20,0x3f,0x52,0x5a,0x40,0x88,0x14,0x08,0x13,0xf9,0x78,0x11,0x7f,0x9a,0x40,0x42,0x02,0xcc, - 0x74,0x26,0x3d,0x71,0x26,0xfd,0x7a,0x99,0xbc,0x53,0x5d,0x09,0x7e,0x8d,0x81,0x22,0xa4,0xc4,0x92,0x3d, - 0x21,0x91,0x49,0x4f,0x5e,0xba,0xc7,0x2d,0x23,0xf7,0x3e,0xc4,0xae,0xec,0xfb,0x04,0xe4,0x4b,0x8b,0x71, - 0xdf,0x89,0xa2,0xc4,0x01,0x57,0x94,0x7a,0xdf,0x66,0x85,0xc3,0x4e,0xec,0x8b,0x4b,0x1f,0xfb,0x59,0xc4, - 0x3e,0x85,0x99,0x46,0x25,0xfa,0x7c,0xe5,0xd6,0xf9,0x99,0x58,0xb0,0xbd,0x59,0x61,0x72,0xf4,0xbc,0x29, - 0xed,0x95,0xaa,0x0b,0x1a,0x5f,0x04,0x5b,0x56,0xa2,0x0e,0xdb,0xb2,0xe2,0xce,0x28,0x85,0xc1,0xf4,0xe9, - 0x04,0xb5,0x7b,0x68,0x20,0xcd,0x4c,0x8e,0xef,0x19,0xe9,0x95,0xf7,0x93,0x15,0xe3,0xee,0xd6,0x57,0x8e, - 0x14,0x11,0x1a,0xd0,0x88,0x06,0x75,0xf7,0xf8,0x22,0x9a,0x60,0xcf,0x2f,0x67,0xbf,0x74,0x01,0x5e,0xa5, - 0x30,0x6b,0x0d,0xbd,0x54,0x5c,0xc9,0xa4,0x05,0xa2,0x92,0x10,0x9f,0xad,0x88,0x39,0x6a,0x85,0x82,0x49, - 0xef,0xe2,0x77,0x76,0xba,0x88,0xcd,0x66,0x14,0x9a,0xb2,0x2c,0x5a,0x24,0x9d,0x8b,0x75,0xd6,0x22,0x28, - 0x0b,0x4d,0x50,0x16,0x96,0xa0,0x2c,0x3a,0x04,0x65,0xd1,0x25,0x28,0x8b,0x0e,0x41,0x59,0xf4,0x12,0x94, - 0xc5,0x7f,0x4e,0x50,0x9a,0x01,0x69,0x8a,0x52,0x5e,0xe2,0xe0,0x56,0x76,0x03,0xe6,0x77,0x56,0xc4,0x5e, - 0x0d,0xda,0x59,0xa3,0x70,0x8b,0x13,0xb5,0xea,0x0b,0x5b,0x52,0x5e,0x36,0x99,0x19,0x53,0xa7,0x67,0xfc, - 0x67,0x2f,0x20,0x8c,0x1c,0xce,0x39,0x88,0x72,0xd4,0xba,0xb8,0x1a,0xd8,0xd9,0xbd,0xc5,0x7d,0x45,0x70, - 0x38,0xf0,0xf5,0xaf,0xd4,0xd5,0x0d,0x53,0x62,0x29,0xee,0xb3,0xaf,0xbb,0x9c,0x3a,0x1d,0xec,0x11,0x40, - 0x42,0xc7,0x4d,0x67,0xc8,0xe1,0xe7,0xd8,0x78,0x4f,0xee,0x65,0x7e,0x64,0x74,0x1a,0xa2,0x73,0x98,0xb4, - 0x59,0x26,0x69,0x2f,0x68,0xe3,0x38,0x1b,0x86,0xdd,0x26,0xda,0xdd,0xd1,0x26,0xb2,0x8c,0x41,0x5e,0xdb, - 0xfc,0xcf,0x06,0x74,0x33,0x91,0x48,0x0f,0x38,0xfc,0xcf,0xa1,0xc4,0x21,0x64,0xfb,0x39,0x0d,0x2b,0x05, - 0x47,0xfc,0x29,0x4d,0xb0,0x43,0x4d,0x24,0xb6,0xdb,0x88,0x0d,0x9b,0xe6,0x09,0x3e,0x68,0xd1,0x75,0x24, - 0x70,0x74,0xac,0xcb,0x8e,0x9d,0x20,0xbb,0x4b,0xef,0xdc,0xc1,0xe4,0xb7,0x2a,0x15,0x06,0xb7,0x3d,0xd3, - 0x70,0x24,0x25,0x44,0x4b,0x58,0xb5,0x94,0x79,0x2e,0x79,0x3b,0x6e,0xb4,0xf7,0x85,0x85,0x4e,0xcf,0x6a, - 0xfb,0x81,0xba,0xf7,0x40,0x05,0x9a,0x64,0xcf,0x86,0xd7,0x55,0xba,0x7c,0x6a,0x7c,0x0e,0xdc,0x2b,0x6c, - 0x26,0x74,0xae,0x55,0x7b,0x7a,0x45,0x6c,0x1a,0x97,0xf3,0x82,0x2d,0xcd,0x7b,0x42,0xfd,0xbb,0xb9,0x96, - 0x60,0xe4,0x7e,0x40,0xae,0x34,0x29,0xbd,0x05,0x28,0x3d,0xcf,0x26,0xde,0xd5,0x2d,0x7e,0x29,0x15,0xeb, - 0x2f,0x61,0x8f,0xcc,0xbb,0xf1,0x75,0x25,0xbe,0x82,0xd0,0x58,0x98,0x1a,0xe6,0x80,0x36,0x6e,0x27,0x8c, - 0xb8,0xa7,0x5b,0x50,0x3d,0x31,0xad,0x6c,0x7c,0xca,0xca,0x76,0x27,0xd7,0xf0,0x80,0xb8,0x1a,0xb8,0x5c, - 0x0a,0x21,0x2a,0x7d,0x12,0x05,0xde,0x1f,0x6d,0x92,0xa5,0x5c,0x64,0x7d,0xc8,0x6b,0x05,0x4c,0xae,0xc9, - 0x9c,0x08,0x14,0xe3,0x43,0x4d,0x2d,0xb2,0xd3,0xd2,0x7f,0x5c,0x6d,0xe3,0xd7,0xca,0xab,0x73,0x18,0x79, - 0xd7,0xca,0x85,0x25,0xdb,0xbf,0xde,0x9c,0x67,0x47,0x96,0x45,0x8a,0x39,0x4e,0x6f,0xd7,0x75,0xcb,0x98, - 0xba,0x0a,0xcf,0x49,0x63,0x1e,0x6b,0x5a,0x34,0xfe,0xc2,0x26,0x41,0x49,0x6c,0x23,0x00,0x8e,0xe1,0x1c, - 0xae,0x40,0x0c,0x6e,0x91,0x07,0x95,0xc4,0x9a,0x66,0x1f,0xea,0x38,0x38,0xbb,0x02,0x81,0xff,0x10,0x1a, - 0x86,0x02,0x52,0x72,0xae,0xbc,0xf0,0xf6,0x6e,0x3c,0x2d,0xc2,0xae,0xc8,0x44,0x6a,0x88,0xb8,0x8e,0x91, - 0x36,0xd3,0x36,0xaa,0x13,0x08,0x0e,0xcb,0xbb,0x0e,0x89,0x49,0xaf,0xdc,0x70,0x2f,0xac,0x19,0x73,0xd7, - 0xa0,0x56,0x3c,0xe1,0xc7,0xca,0xff,0xd4,0x6a,0x0e,0x59,0x34,0x40,0x68,0xaf,0x47,0x55,0xd6,0x66,0xcc, - 0x3d,0x5f,0xda,0x8e,0x4e,0x96,0xce,0x8d,0x3f,0xb8,0xc8,0xb9,0x11,0xd1,0x6b,0x65,0xa8,0xbf,0xf8,0xfe, - 0xde,0x14,0x21,0x0a,0x8d,0xf4,0x4b,0x05,0xee,0x66,0x75,0x8f,0x9a,0xf2,0x9c,0x54,0x5b,0xd1,0x2f,0xdc, - 0xe6,0xfe,0x65,0xf5,0xf0,0xe0,0xe1,0x3f,0x1e,0x5c,0xa8,0xe0,0x17,0x79,0x0c,0xa2,0x4e,0xe6,0xd7,0x2e, - 0xf3,0x6b,0xff,0x82,0xd0,0xa5,0x86,0x05,0x78,0xef,0x19,0x10,0xca,0xae,0x77,0x9e,0xbb,0x59,0x76,0x17, - 0xc5,0xda,0xbe,0x89,0x56,0x23,0xab,0x2a,0x68,0x90,0x09,0x2b,0xc7,0x70,0xf6,0xbd,0xf0,0x7d,0x3c,0xbd, - 0x7e,0x86,0x47,0x65,0x72,0x54,0xfe,0x41,0x84,0x4e,0x04,0xc3,0xd5,0xba,0xa7,0x24,0x1b,0xdf,0x7f,0x94, - 0xee,0x5c,0x42,0x09,0x1c,0xfc,0x52,0x04,0x0f,0xbe,0xb9,0x1f,0xdf,0x7f,0x44,0xa5,0x08,0x6b,0xe8,0x77, - 0x75,0x54,0xba,0xf2,0xce,0x0b,0x67,0xf0,0x7f,0x0e,0x0f,0x46,0x41,0xf4,0xcd,0x01,0x23,0xc2,0x2b,0x1b, - 0xf2,0x6e,0x56,0x65,0xd9,0xef,0x59,0x88,0x48,0xcb,0x0b,0x9b,0xe8,0xa2,0x8a,0x9b,0x8b,0xc0,0xd5,0x45, - 0x91,0xcc,0x45,0x0c,0xa3,0x2c,0xa5,0x18,0xb0,0xd1,0xcc,0x0d,0xe7,0xd0,0xd1,0xac,0xa8,0x57,0x8a,0x4b, - 0x38,0x75,0xad,0x82,0x3a,0x54,0x9d,0xf7,0xd4,0x7c,0x99,0xd6,0xde,0xb5,0x97,0xea,0xac,0x48,0x1e,0xec, - 0x87,0xbf,0x5c,0x47,0xb4,0x16,0xd7,0x45,0x32,0xed,0x0d,0x69,0x62,0xd7,0xed,0xcc,0x37,0x29,0xf0,0x6d, - 0x9b,0xc6,0x30,0x94,0xf8,0xb0,0x5c,0xc2,0x72,0xba,0x26,0x56,0x09,0x11,0x58,0x61,0xf2,0x7a,0x7c,0x67, - 0x95,0x3a,0xb6,0xcd,0x41,0xd4,0xfe,0x70,0xcf,0xe9,0x1d,0xe9,0xf3,0x8f,0xd4,0xbb,0x5f,0x9e,0x84,0x27, - 0x8f,0xf7,0xff,0x7d,0x8a,0x1e,0x1e,0xfd,0x61,0x0f,0x3f,0x16,0x2a,0xd8,0xbf,0x77,0x18,0xa0,0xda,0x97, - 0xe5,0xb5,0xa9,0x96,0xea,0xfa,0xb4,0x2d,0x93,0xb1,0x0a,0x78,0xf5,0xbe,0xad,0x2f,0xb2,0xb1,0x5c,0xd4, - 0x63,0xe2,0xeb,0x40,0x54,0xef,0x73,0x9c,0xf5,0x6a,0xdf,0x5c,0xa6,0x18,0xa8,0x7b,0x45,0x72,0x12,0x78, - 0x6b,0xe2,0x78,0xb8,0xc0,0x5c,0x79,0x18,0x9c,0xaa,0x37,0x28,0x25,0xf6,0x97,0x47,0x0c,0x63,0x94,0x29, - 0xc0,0x46,0x55,0xe8,0x0c,0x36,0xea,0x86,0x1c,0x5e,0x8c,0xbb,0x6d,0xfa,0x07,0x1d,0x9e,0xd2,0xde,0xb5, - 0x6b,0x32,0x9e,0x4a,0x24,0x62,0xb4,0x29,0x4f,0x9c,0xe7,0xee,0x68,0x46,0xba,0xff,0x26,0x37,0x08,0x89, - 0xcf,0xf9,0x94,0x3a,0xf5,0xac,0x48,0x6e,0x85,0x98,0x78,0x95,0x11,0xe1,0x4c,0xa0,0x46,0x05,0x2f,0x72, - 0x62,0x3e,0xfb,0x6e,0x58,0xad,0xf3,0x39,0x0c,0x33,0x88,0xae,0x27,0x28,0x9a,0xae,0x78,0x92,0x8e,0xf3, - 0x25,0x12,0xcc,0x75,0xbf,0x9c,0x99,0x55,0x10,0xed,0xc0,0xbe,0x0a,0xaf,0xdc,0xe6,0x77,0x72,0x0f,0x2c, - 0x7b,0x6f,0x28,0x50,0xf7,0xad,0x84,0xfc,0xa2,0xa0,0xc1,0x4c,0xf5,0xae,0x23,0x7a,0xe4,0x54,0x99,0xcb, - 0x1f,0x7b,0x3b,0xd2,0x0a,0x77,0x1f,0x7f,0x2a,0xbc,0x04,0xb8,0x72,0x49,0xca,0x87,0xe2,0x63,0x51,0x5e, - 0x17,0xba,0x52,0xa4,0x75,0xa2,0xe7,0xc7,0x17,0xaa,0x2f,0x38,0x7e,0xfc,0xbe,0x50,0xde,0x25,0x8c,0xf8, - 0xf0,0x6c,0x9e,0xcf,0xb2,0xc9,0xcd,0x64,0x9e,0xe1,0xde,0x69,0xea,0x53,0xb1,0x51,0x6f,0x09,0x22,0x4f, - 0xfe,0xe7,0x97,0xeb,0xe1,0xbd,0xd3,0x07,0xea,0x29,0x64,0x65,0x67,0xbc,0xb7,0xce,0xce,0x88,0x1c,0xbb, - 0xdd,0xa8,0x5f,0x29,0xc9,0x91,0xa9,0xf6,0x0a,0x3f,0xf1,0xec,0x51,0x2f,0xfa,0x73,0x7f,0xfa,0xf9,0x59, - 0x71,0x95,0x57,0x65,0xa1,0xef,0x43,0xdf,0x6d,0x25,0x40,0x92,0xc7,0x3d,0x55,0x2f,0x8b,0xe4,0x45,0x31, - 0x18,0xf4,0xe7,0xb6,0x01,0x5e,0x3d,0x2f,0x92,0x5f,0xa9,0xac,0x76,0x29,0x2a,0xd2,0xab,0xfc,0x02,0x9c, - 0xc2,0x70,0x45,0x13,0xf6,0xf8,0x82,0x2f,0x9c,0x6a,0x95,0x7f,0x5d,0x24,0xcf,0xa9,0xfc,0x83,0x45,0x9d, - 0x67,0x6b,0xc2,0x3d,0x53,0x2a,0xa2,0x6d,0xc2,0x9e,0x17,0x91,0x7a,0x25,0xd9,0xcf,0x3d,0x8f,0x46,0x94, - 0xdc,0xf9,0x7a,0x78,0x00,0xec,0xa6,0xde,0x6d,0xe7,0x67,0xd3,0x8b,0xec,0x01,0x67,0x3e,0xd9,0xce,0x24, - 0x38,0xa8,0xe8,0x9c,0x43,0x36,0x9d,0x66,0xe6,0x0d,0x57,0x6e,0x14,0xea,0x27,0xdd,0x95,0x7c,0x79,0x49, - 0x7b,0x6b,0x9d,0x2f,0xd3,0x29,0xfd,0x29,0xe9,0x4f,0x59,0xbb,0x2e,0xc1,0xa9,0xbd,0xac,0xf5,0x27,0x3f, - 0x16,0x49,0xc8,0xdf,0x4c,0x2e,0x2b,0x22,0x51,0x7e,0x79,0xf0,0xcb,0x74,0xcf,0xeb,0xfd,0xed,0x66,0xc8, - 0x37,0x0d,0x47,0xea,0x3b,0x28,0xb1,0x41,0x55,0xfd,0x5a,0x70,0x94,0x4d,0x60,0xe5,0x0f,0x6c,0x0f,0xd1, - 0x7f,0x2d,0xf3,0x07,0xc2,0x27,0x3a,0x46,0x43,0xa0,0x6e,0x71,0xad,0xb3,0x47,0x09,0xa3,0xb2,0x83,0x0d, - 0xe1,0x16,0x3d,0xcb,0xdb,0x31,0x01,0xd1,0x83,0x7d,0xfb,0x3d,0x43,0xfd,0x87,0x22,0xf2,0xdc,0xce,0xd1, - 0xfe,0xef,0x85,0xfa,0xa1,0x50,0xbf,0x79,0x28,0xa8,0x43,0x0b,0xd0,0x18,0x7f,0x87,0x61,0xcd,0xef,0xd4, - 0x1e,0x16,0xb5,0x0f,0x86,0x2e,0xe6,0xe5,0x79,0x3a,0x07,0x4d,0xca,0x88,0x0a,0xf3,0x22,0x49,0xc0,0xfd, - 0xe0,0x05,0x87,0x59,0x71,0x35,0xfc,0xf1,0xc3,0xb3,0xb3,0x67,0xaf,0x7f,0x8c,0xd4,0xef,0x04,0xcb,0xdf, - 0xb7,0x40,0xe4,0xec,0x0c,0x99,0x4f,0x9f,0xfd,0x78,0xfc,0xe6,0xcd,0xcb,0xf7,0x67,0xdf,0xbe,0x7c,0xf3, - 0xe4,0xf1,0xcb,0xb3,0xef,0xde,0xbc,0xf9,0xe1,0xec,0x4c,0x7d,0xdb,0x0f,0xb8,0xef,0x6f,0x16,0xe7,0x25, - 0x35,0xfa,0x31,0x94,0xa7,0xa8,0xbf,0x6f,0xfa,0x7a,0x66,0x94,0xeb,0xdc,0xd4,0x1c,0x8d,0x7e,0xb8,0xa3, - 0xe6,0x8c,0x8b,0xd3,0x4f,0x34,0x7e,0xdf,0x9e,0x75,0x8f,0xff,0xd6,0xc1,0xf4,0x71,0xc9,0x76,0x0f,0xc2, - 0xb0,0x21,0xb6,0xdb,0xc7,0x5f,0x0f,0xa6,0xdf,0xe5,0xa0,0x2d,0xba,0x2a,0x28,0x3b,0x95,0xff,0x0d,0x2d, - 0x6b,0xeb,0x1b,0xaf,0x20,0xd6,0xbf,0x55,0x96,0x90,0x45,0x5a,0xf9,0x0b,0xf9,0xd9,0x0e,0xaa,0x6c,0xa3, - 0x4d,0x0d,0x7e,0x2e,0x92,0x0b,0xf5,0x6f,0x30,0x04,0xff,0x2a,0xb6,0x3e,0xcf,0xa7,0xc9,0xbf,0x89,0x6e, - 0xd3,0xd7,0x42,0xae,0xce,0xa1,0xc6,0xdf,0x8c,0xfe,0x55,0xb4,0xfb,0xf8,0x7e,0x75,0xde,0xd3,0x4d,0x2a, - 0xad,0xe3,0x0d,0x52,0x73,0xad,0x4f,0xc4,0x15,0xb2,0xfb,0xd5,0x2a,0xb4,0xdf,0xa9,0xad,0x4f,0xe4,0x52, - 0x70,0xbf,0x7f,0xde,0x9d,0xe1,0xf6,0x11,0x9d,0x79,0x9a,0x2d,0x45,0xde,0xde,0xa9,0xa1,0x28,0x1b,0x22, - 0xac,0xfb,0xef,0x05,0x74,0x1d,0xb6,0x02,0x57,0xb6,0x93,0xca,0xba,0x76,0x52,0x7c,0xf1,0xfd,0xca,0xde, - 0x12,0x68,0x1b,0x66,0xc3,0x7d,0x9e,0xce,0x7f,0x16,0x88,0x0c,0x9d,0x55,0x9d,0x23,0xdf,0x19,0x65,0xe9, - 0xe9,0x81,0x33,0x8f,0xbe,0xd0,0x93,0xaf,0xb3,0xea,0xde,0xe7,0xa9,0x6f,0xea,0xe4,0x4b,0xb1,0xf4,0xdd, - 0x9e,0xd9,0x7c,0x61,0x2e,0xf6,0x2c,0x6a,0x73,0x23,0x89,0x7c,0xa5,0x6f,0xcf,0x2a,0xe5,0xd5,0x5d,0xa7, - 0xe5,0x17,0x72,0xd7,0x6a,0xb5,0x53,0xcd,0x1d,0x98,0x7e,0x2a,0x9b,0x31,0xc2,0xe0,0x18,0x54,0x9e,0x6e, - 0xa2,0x6d,0x78,0x6b,0x2e,0xf1,0xdc,0x32,0x71,0x6e,0xd5,0xa3,0xaf,0x23,0xf5,0x93,0xaa,0x14,0x0e,0x1c, - 0xfa,0x1e,0x52,0x7b,0x45,0xac,0x4d,0x70,0x9e,0x65,0xac,0x55,0x91,0x44,0x13,0x81,0xdd,0x15,0x3b,0x9a, - 0x53,0xa3,0x53,0x2f,0x81,0x6f,0x95,0x35,0xaf,0xad,0x70,0xe6,0xb5,0x97,0xc6,0xb7,0xe9,0xf9,0xbd,0xd9, - 0x8e,0x87,0x0e,0x53,0x23,0xd5,0x54,0xc9,0x2d,0x2f,0x45,0x8c,0x70,0x7e,0xb3,0xfc,0x62,0xc5,0x37,0xb2, - 0xc7,0x40,0xba,0xa3,0x46,0x87,0x2c,0x81,0xf5,0x6f,0x0f,0xe6,0xec,0x9f,0x96,0x8d,0xea,0x43,0xf3,0x44, - 0xf9,0x84,0x59,0xe5,0xa0,0x94,0x1a,0xd6,0x7a,0xbd,0xce,0x85,0x2b,0x06,0x1b,0xf3,0xf5,0x1c,0x1c,0x81, - 0x45,0xd8,0x2c,0xb9,0x10,0xc7,0x99,0xd4,0xf1,0xaa,0x23,0x2a,0x8f,0x37,0x69,0x34,0xd4,0x8d,0xaa,0xaa, - 0xa4,0x73,0x81,0x90,0xca,0xab,0x0e,0x6a,0xa8,0xa8,0xf1,0x93,0x00,0x7b,0x36,0x40,0xf4,0xee,0xa5,0x67, - 0xaf,0xa1,0xe3,0xbd,0x21,0x85,0xe3,0x97,0xe1,0xa1,0x84,0x6b,0x5b,0x50,0xc1,0xb9,0xa0,0xce,0x60,0xc6, - 0xd1,0x63,0xce,0xa7,0x8d,0x01,0x2b,0x98,0x11,0x1c,0x87,0x79,0xa5,0xb2,0xfe,0x58,0xe0,0x27,0xb8,0x10, - 0xcd,0x86,0x36,0xb2,0x32,0x89,0xfd,0xfd,0x51,0xc4,0x77,0xf9,0xda,0x2c,0x6b,0x93,0x8e,0xa0,0xf8,0xda, - 0xcd,0x15,0x33,0x0e,0x2f,0x12,0x7d,0x0f,0xb9,0x04,0xbf,0x18,0xe9,0x08,0x9d,0x99,0x44,0xe8,0x94,0x61, - 0xc5,0xfc,0x68,0x06,0x13,0x23,0x34,0xbd,0x0b,0x98,0x69,0x86,0x86,0x64,0x8d,0x08,0x1e,0x5a,0x54,0x9e, - 0x43,0x1e,0x53,0x9e,0xf3,0x19,0x67,0x2e,0x02,0x57,0x29,0xf0,0x92,0xc6,0x2c,0xb0,0xa7,0x02,0xe7,0x21, - 0x46,0xd9,0x76,0x6a,0x09,0x46,0x3c,0xae,0x87,0x69,0x41,0x9a,0x06,0xfa,0x94,0x20,0xac,0xbe,0x2c,0x57, - 0xf3,0x29,0xed,0x55,0x9a,0xc1,0x06,0xb0,0xa5,0xea,0x6a,0x1b,0x91,0x4a,0x78,0x15,0x83,0x2b,0xb2,0x25, - 0xaf,0xf9,0xbf,0x34,0x7e,0xb8,0x5a,0xb0,0xa3,0x31,0x61,0xab,0xe3,0x50,0x2e,0x8a,0xa6,0xa1,0x07,0xfa, - 0xb2,0xe9,0xad,0xc8,0x28,0x61,0xf8,0xb4,0x2d,0x11,0x92,0x18,0x8c,0x96,0x92,0x4c,0x9a,0x4d,0xdc,0xcd, - 0xf6,0x6e,0x8d,0xee,0xd5,0x08,0x69,0x87,0x5f,0xac,0xcb,0xb1,0x68,0x7b,0x10,0xb6,0x9a,0x68,0x93,0x10, - 0x10,0xa6,0xca,0x4a,0x5f,0xea,0xdb,0x9a,0xbb,0x0c,0xe1,0x40,0x91,0x7a,0x9d,0xce,0x3f,0xe2,0x80,0x18, - 0xd5,0xde,0x2e,0xe0,0xd4,0x3b,0x2e,0xcd,0xf2,0x25,0xe5,0x59,0xa4,0x65,0x0c,0x8d,0x2f,0x63,0xb8,0x87, - 0x9e,0x23,0x20,0x3c,0x21,0x6b,0xfa,0xa1,0xbe,0xa8,0x56,0xe5,0x7e,0x47,0xee,0xba,0x99,0xab,0x0f,0xf7, - 0x3f,0x96,0xeb,0xb8,0xe4,0xf6,0xe3,0x49,0x85,0x6b,0xb0,0x7a,0x59,0x99,0xd1,0x44,0x02,0xb3,0xdc,0xc1, - 0xf4,0xed,0x14,0xe3,0xa7,0x3a,0x25,0x6e,0x7c,0xbf,0x57,0x4b,0x81,0x34,0xe3,0x2c,0x7e,0x2a,0x52,0x1c, - 0xe2,0xe2,0x7a,0xb7,0xd5,0x04,0x1b,0x2a,0xf9,0x95,0x08,0xc0,0x7b,0x77,0x17,0xd8,0x0b,0xea,0xe0,0x34, - 0x79,0x41,0x85,0xa8,0x47,0x4c,0x85,0x6e,0x1d,0x4a,0xa2,0x2b,0x26,0xbc,0xf2,0x23,0x9b,0x4f,0xdb,0xbb, - 0xf4,0x1a,0x93,0xd4,0xd8,0x24,0x6b,0xdf,0xb6,0xd3,0x46,0x1a,0xd9,0x7a,0xdd,0x13,0x3e,0xbf,0xd1,0x66, - 0x8c,0x44,0xde,0x5e,0xc1,0xa6,0x2e,0x6a,0xfb,0x8b,0x34,0x46,0xf2,0x09,0x6f,0x11,0x28,0x45,0xe0,0x34, - 0x92,0x12,0x03,0xd2,0xbd,0xf0,0x8f,0xf5,0x88,0x27,0xe9,0x69,0xc4,0x77,0x28,0x25,0xe9,0x38,0x35,0x4e, - 0xef,0x75,0xd4,0xb9,0x11,0xaf,0x8e,0xc6,0xc4,0xc9,0xd5,0xa7,0x76,0xc7,0x6e,0x30,0x6e,0x09,0x77,0x4a, - 0x0f,0x8b,0xac,0xb9,0x2c,0xa7,0xfc,0x28,0xd7,0x5d,0xe3,0x69,0xa2,0xa3,0x1d,0xf4,0x4f,0xcc,0xf6,0x70, - 0xfa,0xae,0x0d,0x30,0x04,0x33,0x0f,0x53,0x35,0x30,0x91,0xcc,0xd9,0xe2,0xc1,0xb4,0x7f,0x45,0x2c,0x4d, - 0xf2,0x54,0xd4,0xa5,0x95,0x5a,0x55,0x6a,0xd6,0x55,0xd6,0x76,0x69,0x6e,0x40,0x00,0xe1,0xec,0x29,0x2e, - 0xb7,0x22,0xde,0x17,0xe7,0x1a,0xc7,0x91,0x63,0xf3,0x99,0x1e,0x9a,0x95,0xa8,0x3c,0x1b,0x50,0x1c,0xc4, - 0xab,0xff,0x1e,0x45,0xab,0x16,0x59,0xe8,0xe7,0x85,0xdf,0x21,0xa2,0xb8,0x31,0xe4,0x73,0x15,0x5b,0xb7, - 0xc2,0x57,0x44,0xbe,0xa7,0x17,0xd9,0xd1,0x65,0x5a,0x14,0xd9,0x7c,0xbd,0xde,0xfd,0x18,0xb6,0x93,0x40, - 0x77,0x9b,0x3b,0x9a,0xda,0x39,0x84,0xd6,0xea,0xa6,0x5a,0xe1,0x0c,0xe6,0x6b,0x9b,0xda,0xb9,0x56,0xce, - 0x14,0xf6,0xf4,0xcf,0x38,0x00,0x7e,0x07,0x67,0x3f,0x67,0x5b,0x72,0x55,0x31,0xea,0x6b,0x57,0xa4,0x16, - 0x55,0x72,0x45,0xd3,0x4c,0x87,0xd1,0xc3,0x91,0x7e,0x38,0x1c,0x82,0x43,0xe5,0x52,0xc9,0x77,0xaa,0x5d, - 0xfd,0x02,0x45,0xea,0x46,0x57,0x02,0x61,0xcf,0xe6,0x8e,0x49,0x25,0x9c,0xbd,0xc8,0x6b,0x9e,0x4f,0xfd, - 0xa8,0x2d,0x7c,0x2f,0xaa,0x44,0x27,0x98,0x8b,0x80,0x89,0x94,0x9e,0xb7,0x5a,0xb9,0xa8,0xe4,0x56,0xe5, - 0xef,0x22,0xe2,0x29,0x5b,0x4e,0x8d,0x17,0x26,0x6c,0x32,0x7d,0xb0,0xaa,0x18,0x28,0x6e,0x2a,0x75,0x2e, - 0x43,0x23,0x66,0xec,0xac,0xea,0x08,0x9a,0xb4,0x38,0x75,0x10,0xd8,0x80,0xd4,0x2c,0xbc,0x22,0x0c,0x15, - 0xfc,0x3f,0xb6,0x5a,0xcf,0x00,0x2e,0x56,0x76,0x15,0x67,0x91,0x57,0xa8,0x42,0xb8,0x5b,0x29,0x54,0xdc, - 0x55,0xc8,0xd8,0xda,0xb1,0x3a,0x3e,0x4b,0xaa,0x56,0x39,0x05,0xc3,0x08,0x08,0x36,0xb7,0xe2,0x06,0x36, - 0xcc,0x7e,0x56,0x72,0x1b,0xd5,0x31,0x43,0xea,0x47,0xfe,0x7b,0xc4,0xc1,0xa4,0x3e,0x31,0xd4,0xbe,0xe7, - 0xbf,0x8f,0x71,0x76,0xdc,0xc3,0x9f,0x37,0x7d,0x74,0xb1,0x39,0xe7,0x16,0x88,0xff,0xce,0x9e,0x11,0x67, - 0x8c,0xad,0x88,0x16,0x93,0x73,0xcc,0x25,0x18,0x9b,0x61,0x4e,0xae,0xc6,0xa1,0x3e,0x13,0xe9,0x50,0xdc, - 0xdd,0xad,0xf8,0x41,0x0e,0x1b,0xc8,0x1a,0x38,0x09,0x0f,0x92,0x84,0x78,0x68,0x9c,0x84,0x07,0xcd,0xd0, - 0x10,0xe5,0xc7,0x49,0x78,0xd0,0x07,0x12,0x57,0xe6,0xea,0x70,0x9f,0x7a,0x5f,0x68,0x2a,0x73,0x72,0x6e, - 0xa8,0x74,0x62,0x93,0xf6,0xf6,0xee,0xe9,0x86,0x24,0xd6,0x9b,0xa5,0x5e,0xa7,0x39,0x9d,0xfb,0xae,0x1e, - 0x7b,0x8c,0x83,0x95,0xd2,0xc4,0x7c,0x76,0xfd,0xd4,0x7f,0xa7,0xcc,0x17,0x84,0xa8,0x34,0x40,0x78,0x45, - 0xba,0xa9,0x4e,0x83,0x00,0x71,0x7b,0x4f,0x04,0x85,0x66,0xcc,0xe5,0x88,0x06,0x69,0x30,0x96,0x38,0xf4, - 0x5f,0x3b,0x3e,0x3f,0xbb,0x6f,0x0b,0x11,0x5b,0x18,0x30,0x87,0xc3,0x9a,0x0e,0xc4,0x32,0x0c,0xdc,0x15, - 0x97,0x3d,0x07,0x66,0xcf,0x21,0xdc,0x42,0x9f,0xa3,0x2c,0xd1,0x67,0xb1,0xbb,0x7b,0x6a,0xc3,0xae,0x57, - 0x5e,0x7f,0x70,0xff,0x5f,0x5f,0xef,0x22,0x38,0xee,0x2b,0x8f,0x12,0xb2,0x53,0x69,0x4c,0xcc,0xcc,0x67, - 0x08,0x8f,0xf3,0xc6,0x3f,0xe9,0x3b,0xf4,0xb9,0x7c,0xaa,0x3c,0xc6,0xf1,0x9f,0x3a,0xd6,0x90,0x4d,0x8a, - 0x3c,0x96,0x4e,0x2e,0xab,0x66,0x28,0x4d,0x34,0x80,0x72,0x58,0xbf,0x26,0xf1,0xfa,0xa9,0xaf,0xa2,0x53, - 0x56,0xb4,0x62,0x8c,0xc1,0x0d,0x04,0x45,0xcd,0x65,0x55,0x5e,0xd3,0x01,0xf2,0x84,0xb5,0xda,0xf7,0xe5, - 0xb3,0x1d,0x9a,0xba,0x1d,0x0d,0xd3,0x3b,0x88,0x98,0xdb,0x5e,0x4e,0x58,0xa4,0x44,0x1b,0xc2,0x47,0x54, - 0xf9,0xcd,0xad,0x85,0xcb,0xc1,0xe0,0xf7,0xb0,0xd5,0x45,0xf4,0xbf,0x5c,0x86,0x7a,0x7a,0x20,0x01,0x28, - 0x56,0x4b,0xc0,0x92,0x8b,0xd6,0x47,0xc7,0x48,0x6b,0x4e,0x84,0x43,0xee,0x71,0xd8,0xc9,0x08,0x8a,0x47, - 0x6d,0x60,0x83,0xcc,0x22,0x84,0x49,0x5c,0xd8,0x49,0x97,0xa8,0x64,0x2d,0xe8,0x35,0xac,0xbe,0x0f,0xc2, - 0xf6,0x7b,0x23,0x25,0x90,0x8d,0x1b,0x75,0xba,0xe4,0xf5,0xfb,0x33,0xec,0x39,0xb6,0x8c,0x81,0xb0,0x0c, - 0x7c,0x81,0xee,0xb7,0xcd,0x04,0x8b,0xd1,0xd7,0x7f,0x1a,0x17,0x2e,0x6b,0x70,0x52,0x07,0x2d,0x1e,0xd0, - 0xae,0x19,0xae,0xbb,0x23,0x7f,0xf7,0xb5,0x6b,0xda,0xda,0x85,0x9d,0x04,0x91,0xbe,0x84,0x91,0x72,0x15, - 0xd6,0xde,0x4e,0xf7,0x27,0xaa,0xbd,0xe7,0x8b,0xf6,0x24,0x9a,0x08,0x98,0x9d,0x19,0x12,0x89,0xc3,0x96, - 0x74,0x86,0x37,0x81,0x87,0x64,0x76,0xf5,0x5e,0x00,0x96,0x92,0xf4,0x6a,0x45,0x85,0xe3,0x3b,0x16,0x5b, - 0x47,0xb9,0x4e,0x92,0x23,0x5c,0x48,0xcd,0x70,0xcb,0x4f,0x40,0x5d,0xef,0x5b,0xa6,0x7f,0xc7,0x95,0xb5, - 0x46,0x1c,0x15,0xdf,0x3c,0xae,0x06,0x83,0xe3,0x8a,0x2f,0x60,0x9b,0x7e,0xc3,0x35,0x45,0x05,0x2d,0x08, - 0x15,0xd2,0xb1,0xad,0x8b,0xbd,0x43,0x75,0x00,0x19,0x0e,0x1f,0x74,0xc7,0xe6,0x9e,0xcc,0x68,0xf4,0x09, - 0xbb,0x1c,0x27,0xc3,0x81,0xfa,0x10,0x22,0x46,0x22,0xb0,0x80,0xc8,0x6a,0x5a,0xe3,0xa5,0x6e,0xfb,0x83, - 0x85,0xb1,0xba,0xc3,0xac,0x26,0x86,0x8a,0xdb,0xf6,0x6c,0x6b,0xb4,0xab,0xe5,0x68,0x8c,0x24,0xd6,0xeb, - 0x9c,0x2f,0xc2,0xb3,0x5b,0xa7,0x05,0x2d,0xe2,0x03,0x6a,0x6a,0x6d,0xf1,0x57,0xb2,0x65,0x2b,0xbd,0xe9, - 0x26,0xe7,0xb2,0xbf,0xf5,0xf6,0x67,0x5b,0x57,0x27,0x42,0x7d,0x12,0x66,0x86,0x09,0x53,0xf7,0x8d,0xa5, - 0xc6,0x9f,0xda,0xd9,0x72,0xf1,0xfa,0x9d,0x2d,0x6c,0x3a,0xd3,0x91,0xa1,0x8b,0x7d,0x00,0xe0,0x21,0x44, - 0x9e,0x08,0xff,0xc4,0x81,0x18,0xa3,0x55,0xcb,0xb6,0x08,0xed,0x8f,0x76,0x98,0xbf,0xb5,0xf4,0xe7,0x61, - 0x77,0xa9,0x1a,0x82,0xfb,0x69,0x79,0xfd,0xd9,0xf5,0xd2,0x83,0x43,0x18,0xa1,0x27,0x19,0xd1,0x7c,0x4f, - 0x8d,0xee,0x68,0xbd,0x5e,0x85,0x36,0xd3,0x1c,0xf1,0xc2,0xbc,0x8e,0xfe,0x52,0xe7,0x3a,0x7b,0x7b,0xd4, - 0x3a,0x88,0x0f,0x37,0xc2,0xb3,0x3d,0x23,0xc2,0x24,0x2b,0x56,0x8b,0xcc,0xc8,0x72,0x54,0x47,0xb6,0x03, - 0x85,0x4d,0x7c,0xa1,0x6a,0xfc,0xdd,0xa8,0xb7,0x54,0x1c,0x3b,0x0c,0x8c,0xf9,0xe8,0x53,0x16,0xbe,0xf7, - 0xa4,0xad,0xc2,0xe5,0x3f,0xa5,0x12,0x08,0x2a,0xe0,0xf3,0xcc,0x9a,0xa2,0xe1,0xe3,0xaf,0x3f,0x66,0x40, - 0x4f,0x50,0x80,0xbc,0xb6,0x53,0x12,0xf5,0x85,0x0d,0x48,0x5a,0x0d,0xb8,0xcb,0xbe,0x93,0xdb,0x33,0x96, - 0xf3,0x48,0x69,0x8c,0x40,0xfb,0x32,0x5f,0x57,0x4a,0x3b,0xec,0xff,0x58,0xb0,0x4a,0xda,0xbc,0x3e,0x9b, - 0x2f,0xe2,0x4a,0x38,0x36,0x22,0x35,0xb3,0x19,0xde,0x73,0x79,0xdf,0xb0,0xbb,0x28,0x3b,0x98,0xb7,0xed, - 0x7b,0x5c,0x8c,0x10,0xb9,0xb8,0x46,0x1b,0xf6,0x24,0x13,0xfd,0xa0,0xea,0xae,0x2d,0x0f,0x65,0x75,0x52, - 0x08,0x33,0x42,0x52,0xb5,0xed,0xbf,0x8f,0x88,0x06,0xc4,0xba,0xc1,0xcf,0x2e,0x1a,0xde,0x63,0x45,0x64, - 0x08,0x52,0x35,0xa3,0x8e,0x69,0x41,0x9d,0x77,0x61,0x93,0xee,0x1f,0x42,0x03,0x3c,0x9e,0x5b,0x5c,0x80, - 0x08,0xa2,0x4f,0x01,0x94,0x19,0x87,0x72,0x08,0x4b,0x55,0xd2,0x26,0x52,0xe6,0x3d,0x6e,0x33,0x5b,0xc6, - 0x25,0x6f,0x2b,0xd0,0xc2,0x6e,0x1f,0x69,0x2a,0xf5,0xef,0xee,0x86,0x39,0xd6,0xce,0x44,0x4e,0x18,0x9e, - 0xc9,0xd0,0x8f,0xb4,0xb8,0x76,0xbd,0x36,0xe1,0x59,0x9d,0x69,0x1f,0x97,0xf7,0xde,0xf9,0xa6,0x05,0x6d, - 0x17,0xe9,0xea,0xf1,0x56,0x29,0xa9,0x88,0xd2,0x95,0xf0,0x5c,0xfc,0x78,0xa6,0x2f,0xe5,0x0e,0xcd,0xa3, - 0x11,0xa7,0xf2,0x45,0x4f,0x77,0x75,0x25,0xc9,0x91,0x29,0x17,0x73,0x98,0x1b,0x8e,0xda,0xd7,0x9c,0x5d, - 0xe1,0x9e,0x8d,0x7b,0x73,0x63,0xbe,0x84,0x5b,0x04,0x28,0xa9,0x81,0x71,0x8b,0xad,0x54,0x4c,0x2e,0x6f, - 0xd3,0x6a,0xd8,0x12,0x52,0x19,0xf3,0x60,0x61,0xde,0x11,0x14,0x07,0xe5,0xd8,0xe5,0xc4,0x1b,0x12,0xa5, - 0x41,0xc5,0x82,0xf0,0xd8,0x88,0x84,0x38,0x9a,0x3c,0xb2,0x5b,0x77,0xe2,0x2e,0xc2,0xae,0x4f,0x26,0xc4, - 0xf3,0xe3,0x8e,0xf6,0xd7,0xe1,0x5c,0x75,0xdb,0x96,0x1b,0xff,0xb6,0xdb,0x3f,0xd8,0x2a,0xf9,0x94,0xc5, - 0xe7,0x1b,0x67,0xdd,0xbc,0x4a,0xb6,0x27,0xd8,0xc5,0xad,0xf8,0x4c,0x1e,0x2e,0x2c,0x92,0x7b,0x2c,0x57, - 0xd1,0xa6,0xe4,0x89,0xbf,0x07,0xcb,0x06,0x9a,0x48,0xdc,0xbb,0xe8,0x85,0xf2,0xa6,0x0c,0x9a,0x86,0x89, - 0x56,0x94,0xb3,0x17,0x7d,0xd3,0xb3,0x6d,0x7b,0xb6,0xb2,0xf2,0xc2,0x6c,0xd0,0xb3,0x5d,0x05,0x40,0x9c, - 0x8b,0xe0,0xb1,0x51,0x12,0x3a,0xac,0xf7,0xe8,0x36,0xf7,0xef,0x15,0x7d,0xf5,0x8f,0x8a,0x56,0xb4,0xb6, - 0xd0,0x7f,0xc5,0xec,0x71,0x74,0x06,0xab,0xf0,0x67,0x03,0xb7,0xf6,0x96,0xe2,0x8b,0xa5,0xdd,0x37,0x63, - 0xbe,0xc7,0xa9,0xc2,0xb5,0xd1,0x16,0x9f,0x12,0xa3,0x27,0x47,0x7a,0x15,0x45,0x71,0x8d,0x0a,0x77,0x0f, - 0x74,0x30,0xaa,0x6a,0xa3,0xb4,0x65,0xc0,0x1d,0x5d,0xef,0x76,0xb7,0x69,0x61,0x3f,0x76,0x1b,0x6d,0xf7, - 0xc7,0xca,0x2b,0xc5,0xea,0x55,0x50,0x6b,0x58,0x48,0x37,0xc5,0xf2,0xe1,0x45,0xe1,0x78,0xae,0x14,0x31, - 0x62,0x99,0xde,0xb3,0x3d,0x8e,0x10,0x50,0xd3,0xeb,0xff,0xc1,0xc8,0x93,0x69,0x8e,0x2a,0x62,0x5c,0xee, - 0x75,0xef,0x6c,0x87,0x64,0x13,0x37,0x80,0xda,0x0c,0xdc,0xf4,0x38,0x9a,0xa0,0x07,0x2d,0x0b,0x07,0x09, - 0xbb,0x4f,0xa3,0x8f,0x1b,0xef,0x9a,0x66,0x20,0x9f,0x5f,0xab,0x96,0xa8,0xf2,0x29,0xed,0xd9,0x17,0x55, - 0x72,0xa8,0x5e,0x56,0xc9,0x43,0xf5,0x1c,0x0d,0xbf,0xf5,0xb5,0x77,0x7c,0x2b,0xf7,0xb6,0xec,0xf7,0x6c, - 0x45,0xac,0xe5,0xf3,0xca,0x68,0xe0,0x68,0xaa,0x7e,0x5c,0xf1,0x30,0x25,0x62,0x9c,0x87,0xfc,0xc7,0x7d, - 0x48,0xce,0xc1,0x7a,0x47,0x72,0xc5,0x40,0x64,0xc4,0x33,0xd6,0xbc,0x93,0xc3,0x90,0xf8,0x18,0x69,0x64, - 0x22,0x46,0x50,0xba,0x3c,0xa8,0xa2,0x8b,0xb2,0x6c,0x02,0x1d,0x25,0xee,0x73,0x7a,0x41,0x8e,0x9c,0x30, - 0x48,0x96,0x27,0x2d,0x46,0xeb,0xb9,0xfe,0xd1,0xdb,0x16,0x49,0xde,0xda,0x22,0x5b,0xbb,0x34,0xf7,0x76, - 0x4d,0xb1,0x8d,0xfe,0xec,0x2e,0x42,0xa6,0x6d,0xe7,0x38,0xbd,0x90,0x3b,0x7d,0x55,0xa3,0x8f,0x2d,0x0e, - 0x35,0xab,0x8f,0x32,0x93,0xa6,0xb6,0x1c,0x05,0x93,0x2d,0xc7,0x9c,0x48,0x68,0x56,0x42,0x4f,0x42,0x6d, - 0xdf,0x73,0x97,0xb5,0x3f,0xcb,0x42,0xa3,0x8f,0x33,0x93,0x4b,0x1b,0x8c,0x43,0x79,0x8b,0xc8,0x42,0x56, - 0x51,0xda,0x7a,0x5b,0x95,0x9f,0x44,0x30,0xa0,0x93,0xeb,0x6c,0x3e,0x93,0xf7,0xbe,0xad,0x63,0x2f,0xfe, - 0x2c,0xec,0x62,0x30,0x05,0x8f,0x50,0x98,0x36,0x14,0x90,0x0e,0x17,0x5a,0x38,0x1c,0x67,0x72,0x06,0x03, - 0x4a,0x34,0xf1,0x1e,0x61,0x0b,0x6b,0x5e,0x0a,0x0f,0xfa,0x8d,0xba,0x36,0x33,0xb9,0x7c,0x25,0xd3,0xbd, - 0xaa,0x2c,0xe9,0x69,0x5c,0xc8,0x13,0x11,0x13,0x99,0xfb,0x86,0xb5,0x9d,0x72,0xe1,0x33,0xc4,0x3e,0x9e, - 0xec,0x86,0x69,0x8c,0xcc,0xdb,0x78,0x26,0xa1,0xbb,0x69,0x0f,0xb9,0x94,0x43,0x52,0xfa,0xdd,0x22,0x05, - 0x9b,0xd2,0x26,0x1e,0x41,0xd8,0x69,0x49,0x90,0x3f,0x5f,0x54,0x52,0xdf,0x77,0xd4,0x67,0xc9,0x43,0xb9, - 0xc4,0x14,0xc2,0xaa,0x86,0xed,0x25,0x12,0x1d,0x0d,0xad,0xf9,0xec,0x91,0x81,0xc9,0x93,0x7b,0xba,0xee, - 0x68,0x50,0xce,0x6c,0x33,0x3e,0x81,0x97,0xe3,0x2a,0xcb,0x6a,0xa7,0x17,0xee,0x2c,0xa1,0x3d,0xe8,0xdb, + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x73,0xdb,0x46,0xd2,0x2e,0xfc,0x57, + 0x24,0x1c,0xbf,0x34,0xb0,0x1a,0xd1,0x92,0x93,0xec,0x6e,0x40,0x23,0x3c,0xb6,0x6c,0xc7,0x4e,0x7c,0x5b, + 0xdb,0xb9,0xad,0xa2,0x55,0x41,0x24,0x28,0xc1,0x26,0x01,0x06,0x00,0x25,0x2b,0x22,0xcf,0x6f,0xff,0xfa, + 0xe9,0x9e,0x1b,0x40,0xc8,0x49,0xb6,0xde,0xfa,0xca,0x65,0x11,0x98,0x19,0xcc,0xb5,0xa7,0xa7,0xef,0xb3, + 0x3b,0x5b,0x15,0x93,0x26,0x2f,0x8b,0x30,0x53,0x4d,0x74,0x13,0x94,0x67,0x1f,0xb2,0x49,0x13,0x24,0x49, + 0x73,0xbd,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0x3d,0x18,0x6c,0xe5,0x2c,0xca,0xe9,0x6a,0x9e, + 0x8d,0xe5,0x67,0xa8,0xcb,0x25,0x4d,0x18,0xc5,0x81,0xa9,0xd3,0x15,0x9e,0x66,0xb3,0xbc,0xc8,0x06,0x03, + 0xf9,0x1d,0xa6,0x8b,0xe9,0x58,0x1e,0xc3,0xe3,0x13,0x6a,0x37,0xbe,0xad,0xdd,0xb1,0xfe,0x1d,0xa6,0x9f, + 0xf2,0x52,0x6a,0xcf,0xdc,0xf3,0x26,0x6c,0x2e,0xf2,0x5a,0xd9,0x21,0x44,0x37,0x55,0xd6,0xac,0xaa,0x62, + 0xc7,0x0d,0x2a,0xba,0x31,0xcf,0x3b,0x4d,0x58,0x45,0x37,0xf9,0x2c,0x2c,0x8e,0xab,0x93,0x48,0x17,0xc4, + 0xb3,0xe9,0xfb,0xe8,0x32,0xad,0x76,0xf2,0x04,0x49,0xc9,0x8d,0x4e,0x8b,0x6f,0x36,0x2a,0x9f,0xc6,0x95, + 0x9a,0x97,0xe9,0x34,0x9b,0xc6,0xbb,0x87,0x9b,0x91,0xfe,0x34,0xc3,0xa7,0x93,0x74,0x3e,0x0f,0x73,0x53, + 0x83,0xca,0x95,0x7b,0x6e,0x22,0x7a,0x91,0xcf,0x92,0xdd,0x03,0x97,0xb1,0x41,0x33,0x45,0x72,0x63,0x2b, + 0x6a,0x86,0x8b,0x84,0x26,0x7f,0x38,0x49,0x0a,0xfa,0xbb,0x4c,0x82,0x40,0x35,0xe1,0x01,0x0d,0xee,0xd8, + 0x5f,0x1b,0x55,0x44,0x37,0x6e,0x9a,0x8b,0xf0,0x30,0xda,0xa8,0x6e,0x7e,0xb0,0xaa,0xb3,0x9d,0xba,0xa9, + 0x72,0x9a,0xc9,0x91,0x1d,0x77,0x85,0x59,0x40,0xa3,0x4d,0x52,0x64,0x57,0x3b,0x29,0xbd,0xaa,0x22,0x29, + 0xc3,0x74,0xb8,0xac,0xca,0xa6,0xc4,0x84,0x0f,0xab,0xec,0xb7,0x55,0x56,0x37,0xd4,0x69,0xd3,0x2b,0xf4, + 0xb7,0xc9,0x8a,0x69,0x58,0x28,0xaf,0xa0,0x8c,0xca,0xe6,0xd0,0x5b,0xb1,0xd1,0xd3,0x16,0xde,0x8f,0x54, + 0x49,0x3f,0x5f,0x44,0x2a,0xa5,0x9f,0xaf,0x22,0x85,0x6e,0xfe,0x3d,0x52,0x93,0xa4,0x0a,0xeb,0x68,0x34, + 0x19,0x3e,0xe4,0x75,0x4b,0xd5,0x64,0x38,0xa9,0xb2,0xb4,0xc9,0x12,0x7f,0x99,0x74,0xb3,0x15,0xcd,0xe6, + 0x22,0xab,0xce,0xb3,0xb0,0x56,0x59,0x44,0x63,0x9c,0x0c,0x8f,0xd2,0x62,0x92,0xcd,0xd1,0x00,0x55,0x6d, + 0x5e,0xdf,0x97,0x1f,0xb3,0x02,0x69,0x5f,0x22,0x2d,0xaf,0x5d,0xa1,0x03,0x24,0xd0,0xb2,0xf4,0xd5,0xfe, + 0xa6,0x2a,0x17,0x79,0x9d,0x21,0x9b,0x52,0x51,0x79,0xbd,0xa4,0xae,0x4c,0xf1,0x1d,0x75,0xd8,0xcd,0xef, + 0xc4,0x3d,0x0f,0x09,0x50,0xd3,0xd5,0xbc,0x49,0x26,0x7f,0x69,0xc2,0xa5,0xc5,0xe0,0x58,0x00,0x7b,0xe7, + 0x61,0x55,0xa5,0xd7,0x27,0x04,0xdf,0xc9,0x5c,0x80,0x86,0x9a,0xb7,0x1f,0xe4,0x5e,0x17,0x8b,0xd5,0x7c, + 0xbe,0x9b,0x24,0x59,0xcf,0x8e,0xcb,0xdc,0x17,0x65,0x4f,0x13,0x4f,0x75,0xe6,0x6d,0xad,0xa4,0xb2,0xc5, + 0xb1,0x03,0x6c,0x1b,0x97,0x65,0x3e,0xdd,0x39,0xc0,0x73,0x44,0xe9,0xa6,0xc5,0x5d,0xdb,0xe2,0x60,0x10, + 0x66,0xc9,0x71,0x76,0x12,0x29,0x0c,0x2a,0x9a,0x95,0x55,0x28,0xe0,0x4b,0x00,0x9d,0x64,0xc3,0x79,0x56, + 0x9c,0x37,0x17,0xa3,0xe2,0x41,0x3e,0x2a,0xf6,0xf6,0xa2,0x46,0x1a,0x45,0xf5,0x2a,0x3b,0x2e,0x4e,0x54, + 0x41,0x6b,0x38,0xca,0xe6,0x34,0x49,0xe6,0xcb,0x72,0x27,0xa7,0xad,0x13,0xbd,0xe6,0x86,0x3c,0x00,0xbc, + 0x48,0xeb,0xd7,0x57,0x05,0xad,0xcf,0x32,0xab,0x9a,0x6b,0xdd,0x79,0x55,0x46,0x83,0x41,0xbb,0xd2,0xf2, + 0x44,0x95,0x54,0x29,0x03,0x5d,0x2d,0xd0,0x46,0xfb,0x26,0x24,0x28,0x98,0x27,0x5b,0x95,0x36,0xe5,0x3b, + 0x5a,0x9b,0xe2,0x7c,0xe4,0x16,0xf6,0x26,0xaf,0x79,0x29,0x68,0x4b,0xeb,0xa7,0x47,0xab,0xd9,0x2c,0xab, + 0xe2,0x6d,0x68,0x69,0xaf,0x9d,0x14,0xeb,0xcc,0x2d,0xd5,0xa1,0x3f,0x9f,0xd0,0xe3,0xd3,0xb2,0x5a,0x3c, + 0x4e,0x9b,0xb4,0xaf,0xae,0x55,0x21,0xf8,0x6e,0xea,0x26,0xd7,0x14,0x1f,0x0c,0x32,0x9a,0x94,0xba,0x01, + 0x04,0x7b,0xc9,0x9b,0x76,0x07,0x7f,0xcc,0xb3,0xab,0x3f,0x59,0xb1,0xf7,0xd5,0x60,0xe0,0xbd,0xd0,0x36, + 0x41,0x2d,0xe3,0xed,0x24,0xaa,0x2f,0xa6,0xb5,0xce,0x86,0x67,0xfa,0x2b,0xf3,0xe4,0x77,0xcc,0xfb,0x0c, + 0x7d,0x93,0xa9,0xed,0xeb,0x52,0xcd,0x39,0x3e,0xdc,0x52,0xf1,0x57,0xab,0xc5,0x59,0xff,0x34,0x17,0x9c, + 0xd3,0x29,0x2e,0x6b,0x19,0x13,0x42,0xad,0x7f,0x30,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85,0xbf, + 0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0xa7,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1,0xe7, + 0xe5,0xd9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80,0x11, + 0x06,0x03,0xda,0xe5,0xc3,0x65,0xbe,0x94,0x2f,0x7f,0x78,0xfb,0xe2,0x5d,0x96,0x56,0x93,0x8b,0x37,0x69, + 0x95,0x2e,0xea,0x3f,0x09,0x0b,0x9d,0xaf,0x3a,0xb0,0xd6,0xc9,0x95,0x65,0x4d,0x8b,0x69,0x5a,0x4d,0x1f, + 0x55,0xe5,0x55,0x9d,0x55,0x4f,0x8a,0xcb,0x78,0xeb,0x7c,0x0d,0xbd,0x96,0xec,0xb2,0x15,0xe9,0x65,0x7e, + 0x9e,0x36,0x65,0xb5,0x5e,0x07,0x6f,0xb3,0x74,0xd2,0xbc,0x4a,0x9b,0xfc,0x32,0xa3,0xae,0x24,0x36,0x0b, + 0x7b,0x73,0xba,0x9a,0x34,0x34,0xb6,0xbe,0xce,0x5e,0xe5,0xc5,0xb4,0xbc,0xea,0xcf,0x9b,0x96,0x93,0xd5, + 0x22,0x2b,0x1a,0x42,0xc2,0x65,0xf5,0x24,0x9d,0x5c,0xc4,0xa9,0xe2,0x83,0xc2,0x76,0x6f,0x27,0x0b,0x5b, + 0xa7,0x7d,0xa3,0xaa,0x1e,0x82,0x06,0xc7,0x7b,0x0f,0x6e,0x6d,0xc6,0x7c,0xee,0x67,0x4c,0x1d,0x80,0x22, + 0xe1,0xd7,0x66,0xe3,0x30,0x1e,0x51,0x02,0x15,0xa3,0xbd,0xb4,0x3a,0xe7,0x9e,0xd4,0x06,0xfd,0x55,0x84, + 0xfe,0x2a,0x42,0x7f,0x69,0x68,0xb3,0xa4,0x12,0x73,0x96,0x16,0x1b,0x25,0x47,0x66,0xdc,0x3d,0x40,0x74, + 0x81,0x94,0x3a,0x6b,0xb3,0xb8,0xdf,0xa0,0x2e,0x92,0x82,0x3a,0xba,0x4d,0x4b,0x35,0xe3,0x3a,0xc4,0xc7, + 0x71,0xb3,0xa1,0x23,0x6b,0xa3,0x68,0xb7,0xf5,0xc2,0x10,0x4e,0xf5,0xe5,0x3c,0x9d,0x64,0xe1,0xbd,0xff, + 0xfc,0x5a,0xff,0xed,0x9e,0x0a,0x82,0xc8,0x25,0x51,0xca,0x1d,0x4e,0xda,0x6c,0xda,0xe7,0x5a,0xe7,0x54, + 0x73,0xa8,0xb3,0x5d,0xa8,0x4b,0x69,0xd1,0xd4,0xdb,0xa9,0x02,0x99,0xc1,0xd8,0x22,0xec,0xce,0x55,0x84, + 0x39,0xa4,0x09,0x2b,0xec,0xdc,0xd1,0xbc,0xf1,0x54,0xfb,0x53,0x67,0x49,0xac,0x61,0xba,0x5c,0xce,0xaf, + 0x79,0xb4,0xdb,0xdd,0xb4,0x4b,0xed,0x0d,0x7a,0x77,0x37,0x1b,0x4e,0x4a,0x02,0xf0,0x8a,0xa0,0xac,0xac, + 0x7a,0xe7,0xaf,0x55,0x62,0x68,0x30,0x38,0x70,0x5e,0x5f,0x3a,0xf6,0x6d,0xdf,0x1c,0x74,0x0e,0x6c,0x9c, + 0x94,0x48,0x5d,0xaf,0xc3,0x86,0xa8,0xb9,0xbe,0x65,0x1b,0x82,0xd2,0x78,0x4a,0x14,0x61,0xf3,0xe2,0x49, + 0xff,0xc2,0x0e,0xeb,0x79,0x3e,0xa1,0x9a,0x08,0x06,0xe4,0x31,0x3c,0x50,0x07,0x51,0x44,0x95,0x62,0x5c, + 0xa7,0xa6,0x4b,0x11,0x53,0xaa,0xcd,0xe6,0x2f,0xd1,0x23,0xa0,0x94,0x0d,0x29,0x53,0x83,0xde,0xc4,0x7b, + 0x5e,0x34,0x59,0x35,0xc9,0x96,0x34,0x60,0x3a,0x1a,0x35,0x11,0x18,0x33,0x95,0xa8,0xaa,0xac,0x5e,0xd2, + 0x7c,0x64,0xf2,0xba,0xb1,0x64,0xde,0xdf,0x85,0xcc,0xbb,0x2f,0x64,0xde,0xe1,0x3f,0x84,0xce,0x3b,0xfc, + 0x27,0x41,0xfb,0x36,0x41,0xd9,0x9a,0xb0,0xed,0x83,0x81,0xc9,0x8b,0x52,0x13,0x7c,0x37,0xab,0x6a,0x1e, + 0x3b,0x30,0x38,0x38,0xd9,0x28,0xf7,0x76,0x78,0x12,0x45,0xca,0x2b,0x9c,0xab,0xd6,0x80,0xd4,0xcd,0x22, + 0x6b,0x2e,0xca,0x69,0x1c,0x9c,0x67,0x4d,0xb0,0x01,0xe9,0x38,0x94,0x14,0xa2,0x52,0xe4,0x81,0xa8,0x81, + 0x17,0xe5,0x55,0x56,0x1d,0xa5,0x35,0x21,0x0a,0x99,0xc2,0xe4,0xb8,0x56,0x72,0x82,0x10,0xad,0x92,0x18, + 0xea,0x90,0x46,0x5e,0xce,0x2f,0x33,0xea,0xf2,0x08,0x30,0xbd,0x35,0x53,0x66,0x70,0x43,0x8d,0x89,0x42, + 0x7f,0x90,0xcd,0x70,0x55,0xd4,0x17,0xf9,0xac,0x21,0xdc,0x3d,0x5b,0xcd,0x67,0xf9,0x7c,0x9e,0x4d,0x15, + 0x2a,0x05,0xc2,0xc9,0xa6,0x11,0x6d,0xda,0xbe,0x1a,0x65,0xb2,0x6f,0xa9,0x72,0xb9,0xaa,0x2f,0x6e,0xaf, + 0x6f,0xd4,0x98,0xdd,0x14,0xd1,0xde,0x1b,0x36,0x17,0x19,0x03,0x10,0x77,0x82,0x1a,0x33,0x4f,0x3e,0x3a, + 0x2a,0x6d,0x43,0xc7,0xc1,0x34,0x9b,0x67,0x4d,0x16,0x28,0x9e,0x3a,0x15,0x5c,0x10,0x94,0xd2,0x4f,0xb9, + 0x44,0xf3,0x75,0x70,0xa2,0x5a,0x30,0xef,0x96,0x98,0xa8,0xc2,0xc4,0xc3,0x59,0x0e,0x99,0xf1,0xe8,0xf4, + 0x14,0x85,0x66,0xbd,0x8a,0xf5,0x9a,0x10,0xa8,0x59,0xa5,0x4c,0x61,0xad,0x09,0x7f,0xd1,0xb6,0x8e,0x5a, + 0x9d,0x59,0x96,0x35,0x3a,0xb1,0x5c,0xf1,0xdf,0xb4,0x99,0x5c,0xfc,0xf9,0x1e,0x00,0x6f,0x7e,0xae,0x0f, + 0x55,0x5f,0x1f,0xd4,0x14,0x14,0x5b,0xa1,0xbb,0xe2,0x76,0x7a,0xf5,0x17,0x76,0x17,0xb0,0xd1,0x6e,0x3e, + 0xf4,0x48,0x15,0x3e,0xbe,0x3b,0x29,0xc7,0xc1,0x51,0x49,0x6b,0x5e,0x34,0xfb,0xef,0xa9,0xf3,0xc1,0x49, + 0x04,0xe8,0xef,0x26,0x26,0x4d,0xd4,0x65,0xa8,0xfe,0x81,0x9d,0x76,0xd3,0x2e,0x17,0x07,0xc0,0x8c,0xf9, + 0x24,0x45,0x17,0xee,0x7d,0xda,0xbf,0xba,0xba,0xda,0xa7,0x49,0x5c,0xec,0xd3,0x98,0xb2,0x62,0x52,0x12, + 0xd3,0x49,0xbb,0x80,0xf6,0x74,0x3a,0x4d,0x97,0x8d,0x4f,0x77,0x09,0x2b,0x98,0x8d,0x6e,0x27,0x19,0x7e, + 0x7e,0xf9,0xe2,0x59,0xd3,0x2c,0xdf,0xca,0xec,0x8d,0x33,0xea,0xc2,0x3f,0x89,0x43,0xef,0x29,0x49,0x2b, + 0x31,0xc9,0xea,0x9a,0x77,0x31,0x0a,0xe1,0x38,0x02,0xc4,0x55,0x69,0x51,0xa3,0x37,0xba,0x8a,0xf8,0xb8, + 0xf7,0xe8,0x28,0x69,0xcd,0xda,0xa3,0x02,0x6f,0xe9,0xc8,0x68,0xc6,0xa6,0x48,0xf0,0x08,0x4f,0x9b,0xd6, + 0x79,0x15,0x4a,0xca,0xbe,0x82,0x62,0x73,0x45,0x89,0x10,0xa3,0x97,0x71,0x16,0x77,0x2a,0xd3,0x94,0xef, + 0xd8,0x10,0xbb,0x9c,0xdf,0x21,0x89,0x90,0x1f,0x56,0xe8,0xe9,0x1f,0x4e,0xf8,0x68,0x72,0x91,0x56,0x75, + 0xd6,0x24,0xab,0x66,0xb6,0xff,0xcf,0x00,0xc0,0x64,0x18,0x10,0xda,0x7c,0x5c,0xb9,0x50,0xb5,0xfd,0x75, + 0x7e,0xa8,0xcb,0x62,0xab,0x8a,0xef,0xde,0xbd,0x7e,0x35,0x14,0xb4,0x99,0xcf,0xae,0xc1,0x82,0xc5,0xd9, + 0xe6,0xc4,0x9f,0x61,0x8d,0xa4,0x8f,0xfd,0x3d,0x02,0x56,0x6e,0x0b,0xd7,0x46,0x4d,0x75,0x7d,0x93,0x25, + 0x5c,0xe3,0x12,0xad,0xe0,0x64,0x9b,0x60,0x87,0xe1,0x93,0x8d,0x39,0x72,0x51,0x7b,0xbe,0xc8,0xca,0x55, + 0x13,0x1f,0xa8,0x4f,0x75,0x35,0x3b,0x2a,0xcb,0x8f,0x79,0xf6,0x2a,0x5d,0x64,0x71,0xf0,0xf3,0xbb,0xb7, + 0x4f,0xf7,0xdf,0xbf,0xfe,0xfe,0xc9,0xab,0x80,0xf3,0x9e,0x11,0xae,0xc8,0x2a,0x9d,0xb7,0xef,0xe7,0x2e, + 0xd2,0x4f,0x7a,0x69,0x5f,0x30,0x6a,0x8a,0xf7,0x0f,0xd5,0x65,0x3a,0xcf,0x69,0xb7,0x65,0x44,0x62,0x36, + 0xab,0x3e,0x02,0x76,0x27,0xfb,0x26,0xb9,0x7f,0x70,0x40,0x47,0xf1,0x83,0x2f,0x0e,0x0e,0x36,0x9b,0x51, + 0x3d,0xbc,0xe0,0x16,0x08,0x90,0x27,0xe5,0x62,0x41,0x64,0xf3,0xcd,0xc3,0x09,0x70,0x66,0xbc,0x35,0x75, + 0x6a,0xa7,0x21,0x1a,0xeb,0x1e,0x51,0x37,0x39,0x3d,0xff,0xed,0xde,0xdf,0x02,0x3a,0x1f,0xf3,0x3f,0x40, + 0x73,0x6d,0xd4,0x62,0x5b,0x03,0x62,0xb9,0x01,0x3a,0xc8,0xff,0x0a,0x66,0x6a,0x7d,0x6e,0xa4,0x18,0x69, + 0xd4,0xc2,0x2a,0xf5,0x1f,0x60,0x15,0xec,0xcd,0x8a,0xb7,0xfe,0xed,0x84,0x97,0xed,0x53,0xe6,0xea,0x12, + 0xdc,0x47,0xa4,0x76,0x33,0x18,0x54,0x04,0x76,0x3f,0x2c,0x97,0xe6,0xa4,0x23,0x0e,0xa4,0x69,0xa7,0x30, + 0xde,0x69,0x88,0xbc,0x54,0x32,0x27,0x2c,0xca,0xa2,0x7e,0xfe,0x11,0x41,0xe1,0x3a,0xa7,0x80,0x9e,0xbe, + 0x16,0xf4,0x74,0x68,0x28,0x81,0x2f,0x34,0x25,0xf0,0xa5,0xb0,0xe4,0x87,0x07,0xe0,0xc9,0x3f,0x47,0xe6, + 0xcb,0xef,0xf0,0xac,0x29,0xd3,0xd6,0xcb,0xf0,0x8c,0x9e,0x43,0x49,0xa0,0x3d,0x4c,0x55,0x7d,0xd5,0x3f, + 0x1d,0x8e,0x06,0x23,0x12,0x45,0x9f,0xde,0xa1,0x77,0x22,0xac,0x04,0xd9,0xcd,0x88,0x06,0x00,0x96,0x57, + 0x20,0x06,0xf4,0x1a,0x8d,0x2a,0x1f,0xd3,0xcc,0x22,0x88,0x26,0x79,0x2e,0xa6,0x5d,0x8c,0xcc,0xc3,0x5e, + 0x32,0x4d,0xdb,0xc6,0x8c,0xea,0x22,0x09,0xca,0x02,0x44,0xdd,0x35,0x31,0x54,0x4d,0x46,0x7b,0xb7,0x38, + 0x27,0x00,0xbb,0x4c,0x76,0x0f,0x47,0xd8,0x82,0x3d,0x4c,0x92,0x0c,0x8a,0xe8,0x39,0x3d,0xdc,0x9f,0x1f, + 0x97,0x0b,0x02,0x58,0x5d,0x23,0x71,0x4e,0x57,0x79,0x73,0x71,0x54,0x65,0x53,0x6a,0x3f,0x4f,0xe7,0x75, + 0x90,0x17,0x3b,0xcb,0xf5,0x9a,0xd0,0xd0,0x90,0x10,0x0d,0xa8,0x4b,0xe9,0x49,0xef,0xe7,0xd2,0x21,0x88, + 0x1c,0xb9,0x13,0x07,0x6a,0x39,0x2c,0x0b,0xc2,0xd1,0xe7,0x44,0x5d,0x78,0xd3,0x46,0x9b,0x9d,0x73,0xf4, + 0x36,0x6f,0x65,0x00,0x56,0xd3,0x15,0xd1,0xe9,0x3c,0x71,0x8b,0x44,0xde,0x86,0x04,0x05,0x55,0x41,0xbb, + 0x9c,0x3a,0x18,0xa8,0x73,0x93,0xba,0x4c,0xeb,0xfa,0xaa,0xac,0xa6,0x48,0x1d,0x4d,0x87,0x0f,0x29,0xad, + 0xac,0xf2,0xdf,0x79,0x4f,0x26,0xc1,0xa3,0xb4,0xce,0x27,0x3b,0xc1,0xde,0x3c,0x5c,0xec,0xd1,0x79,0xb5, + 0x77,0x1e,0x6d,0x68,0x52,0xa8,0xe1,0x25,0x91,0x27,0x1e,0x51,0xe6,0x01,0xa6,0x2a,0x65,0x9c,0xd4,0x89, + 0x25,0x63,0x5f,0xfb,0xf0,0x2e,0xab,0x68,0x3a,0xf2,0xdf,0x89,0xf8,0x55,0xbb,0x04,0x58,0xcb,0xa1,0xe9, + 0x7d,0x66,0x9e,0xd4,0xf2,0xf8,0xe2,0xc4,0x1f,0x0c,0x5a,0x23,0x50,0xff,0x92,0x36,0xc0,0x92,0x69,0xef, + 0x6b,0x20,0x1e,0x1a,0xc3,0x25,0x76,0x00,0x84,0x5e,0xcb,0x61,0xcd,0xa8,0x68,0xbd,0x5e,0x5a,0x0a,0x8c, + 0xf0,0xff,0x60,0x70,0xa0,0xbf,0xb1,0x49,0x44,0xad,0x4d,0xb3,0x4f,0xaf,0x69,0x51,0x67,0x10,0x16,0x04, + 0x44,0x94,0xdf,0x08,0xaf,0x03,0x74,0xf2,0x70,0x3e,0x37,0x88,0x58,0x30,0xa2,0xac,0xdb,0x38,0xa5,0xe1, + 0xf6,0x66,0xe3,0x3c,0x60,0x81,0x56,0x95,0xdc,0x30,0xfd,0x91,0xd9,0xc6,0x00,0x74,0xc4,0x1d,0x00,0x99, + 0x81,0x75,0x6e,0x67,0x8c,0x5d,0xa7,0x62,0xf7,0xf8,0x9e,0xca,0x2a,0x19,0x49,0x7c,0x78,0xff,0xfe,0x17, + 0x89,0x1b,0xd9,0xf8,0xfe,0xc1,0x97,0xb1,0x79,0xd1,0x65,0x50,0x7c,0xab,0x5c,0xf0,0xaa,0xdc,0xd1,0x70, + 0x1f,0xd8,0x0f,0xb8,0x62,0xbd,0x61,0xe2,0x42,0x11,0x7b,0x34,0xcb,0xcf,0x89,0x70,0x32,0x8c,0xc2,0x72, + 0x33,0xca,0xb1,0xcd,0x08,0xf9,0x28,0x82,0x4b,0x1a,0xd0,0x46,0x40,0x2b,0xab,0xaa,0xb2,0xf2,0xd7,0x62, + 0x15,0x4e,0xc2,0xe0,0x55,0xd6,0x10,0xb8,0x7c,0xdc,0x79,0x82,0xdc,0x40,0x65,0x8a,0xa7,0x60,0x19,0xd9, + 0x8f,0x6f,0x03,0x4b,0xfe,0x5a,0xa7,0xef,0xd0,0x2e,0x0a,0xf6,0xec,0xaa,0xef,0x05,0x8b,0x7a,0x27,0xfb, + 0x34,0xc9,0x32,0x90,0x3c,0x54,0x67,0xf0,0xe4,0xe8,0xf5,0xab,0x57,0x0f,0x1f,0xbd,0x7e,0xfb,0xfe,0xc9, + 0xe3,0xa0,0x55,0x7b,0x35,0xec,0x13,0x6f,0x84,0x7a,0x29,0xaf,0x81,0xb3,0x88,0xb9,0x39,0x4b,0x08,0x08, + 0x3b,0xdb,0xd0,0xed,0xc0,0x08,0x7c,0x62,0xfb,0x58,0x1c,0x5f,0x33,0x74,0x85,0xdd,0xf4,0x28,0x16,0xd6, + 0x62,0x74,0x46,0xe0,0x36,0x3d,0x96,0x6c,0x77,0x62,0x9e,0x24,0x67,0xbc,0x23,0x02,0x3a,0xef,0xf5,0x06, + 0x96,0x4c,0x86,0x1d,0xa0,0x71,0x83,0xe7,0xa7,0x1d,0xc6,0xd7,0xca,0xbc,0x66,0x04,0x28,0x13,0x8d,0xac, + 0x80,0x60,0x02,0x8d,0xeb,0x3d,0x3e,0x67,0x6c,0xd1,0x5a,0x73,0x82,0x75,0xed,0xb4,0x45,0xab,0x97,0xc9, + 0x09,0xd5,0x19,0x31,0x75,0x79,0xd9,0x4d,0x4b,0xb0,0xf3,0xda,0x00,0xc9,0x44,0xc5,0xb2,0x95,0xd4,0x01, + 0x59,0x4d,0x62,0x88,0xe0,0x39,0xc0,0x49,0xbd,0x0d,0xd6,0x51,0x73,0x41,0xcb,0x41,0x1c,0x6d,0x2f,0xb7, + 0x5e,0x16,0x8f,0xcb,0x2b,0x46,0x6b,0x6f,0x34,0x2e,0x1b,0x0c,0x96,0xc3,0x74,0x3a,0x7d,0x72,0x09,0xf2, + 0x22,0xaf,0x69,0xfc,0x34,0x92,0xc0,0x60,0x3a,0x82,0x82,0x9e,0x6f,0xa2,0x3e,0x9e,0x1c,0x05,0x7f,0x58, + 0x76,0xab,0x5e,0x71,0x8a,0x7b,0xfa,0xc3,0xb6,0xda,0x55,0x60,0x8e,0x26,0x4e,0x49,0xc1,0x82,0x05,0xf7, + 0x0a,0xf6,0x85,0xb9,0x4c,0x66,0xd3,0xfc,0xb3,0x6c,0xc9,0x73,0x9e,0x9e,0xd1,0x21,0x47,0xa8,0x70,0x05, + 0x35,0x8d,0x40,0x2e,0x16,0xc8,0x5f,0xf3,0x70,0x26,0xc9,0x0a,0xeb,0x49,0x27,0xe5,0xec,0x2f,0x9c,0xdd, + 0x74,0x2a,0xdf,0x42,0x59,0xe0,0x13,0xcd,0x79,0x0c,0x65,0xa7,0x0f,0xdb,0x04,0xdb,0xa8,0xd0,0x68,0x81, + 0x38,0x9b,0xc1,0x60,0x37,0x0f,0xcd,0x7b,0x34,0x6e,0x88,0x9c,0x0d,0x34,0x60,0xed,0xcc,0x52,0x42,0x91, + 0xd3,0x1d,0x00,0xcf,0x8e,0x14,0xd8,0x01,0x7d,0x4c,0xbb,0xd6,0x7c,0xa0,0x4c,0x0b,0x82,0x01,0x0a,0xab, + 0x7e,0x2a,0x40,0xdf,0x86,0xc5,0x9f,0x1f,0xcd,0xe1,0xed,0xa3,0x51,0xb9,0x2a,0x65,0x44,0x29,0x1f,0x99, + 0x8c,0x75,0xc0,0xd3,0x5b,0x4d,0x53,0x6a,0x8b,0xfd,0x37,0x22,0x30,0xf0,0x9b,0x2a,0xf7,0xa4,0x6d,0x32, + 0xa4,0x84,0x32,0x40,0x60,0x0d,0x31,0xe6,0xa4,0x90,0x0d,0x23,0xb2,0x90,0xca,0xdb,0x3c,0x49,0x4e,0xbc, + 0xd2,0x7f,0xa1,0x50,0xda,0x11,0x66,0xe3,0x87,0xb7,0xcf,0x8f,0xca,0x05,0xd5,0x44,0x50,0x49,0x99,0x4e, + 0xac,0xf7,0x3f,0x5f,0x1e,0xdc,0x3b,0xcf,0x55,0xf0,0x7f,0x7d,0x59,0xdf,0xff,0x7c,0xf1,0x90,0x13,0xe3, + 0x56,0xe2,0xfd,0x2f,0xef,0x9d,0xab,0xe0,0x4e,0x3b,0xed,0x88,0x0b,0xaa,0x76,0xe2,0x01,0x0a,0xee,0xb5, + 0xd2,0xbe,0x7a,0xc4,0x05,0x8f,0xdb,0x89,0x8f,0x39,0xf1,0x24,0xf0,0x79,0xd8,0xcf,0x80,0x1b,0x61,0x84, + 0xdd,0xc6,0xa8,0x62,0x33,0x5e,0xd5,0x12,0x94,0x53,0x11,0x81,0xb0,0x6c,0xb4,0xea,0x88,0x12,0xfa,0x18, + 0xb3,0x26,0xa2,0x52,0x8d,0xc7,0x62,0x71,0x69,0xbd,0xe0,0xc7,0x27,0x23,0x47,0xbb,0x37,0x9d,0xc5,0xed, + 0x53,0x7f,0xd1,0x92,0x59,0xee,0x90,0x99,0xf7,0xb0,0xd9,0x4b,0x82,0xe3,0x13,0xcd,0x93,0x9a,0x74,0x22, + 0xc0,0xb4,0x3e,0x2c,0xef,0x23,0xc3,0xc1,0x7b,0x0d,0x45,0x0d,0xc1,0x8c,0x25,0xa8,0x93,0xf2,0xf9,0xbb, + 0xd7,0xa6,0x8b,0x6d,0x26,0x90,0xf9,0xe6,0x6d,0x0e,0x0f,0xfa,0x56,0xc8,0x7b,0x08,0x39,0x47,0x7b,0x41, + 0x12,0xec,0xb1,0xea,0x0d,0x02,0x0a,0x10,0xdc,0xe9,0xf0,0x43,0x99,0x17,0x61,0x30,0xa0,0x49,0x36,0x8c, + 0x34,0x2a,0xda,0x4b,0xc2,0xfd,0x43,0xe8,0x41,0x1c,0xa9,0x32,0x0e,0xa2,0x31,0xfd,0x89,0x51,0x76,0xaf, + 0x8c,0xfe,0x18,0xe0,0x5a,0x04,0xfe,0x71,0x90,0x82,0x9a,0x0d,0x52,0x9f,0xac,0xa3,0x77,0x73,0xe0,0x88, + 0xc8,0xc9,0x4b,0xe0,0x13,0x48,0x05,0x59,0x93,0x9e,0xe3,0xe7,0xd3,0x32,0x27,0x60,0xa7,0xa7,0x19,0x21, + 0x3c,0x30,0x5c,0xc2,0x3f,0xe5,0xb3,0xfd,0x45,0x39,0xcd,0x67,0x79,0x36,0xdd,0xaf,0x73,0x42,0x8b,0x92, + 0xb6,0x2a,0xb6,0x52,0xe7,0x69,0xdd,0xd8,0xb2,0x78,0x2f,0x27,0xa6,0x0f,0xc4,0x5d,0x82,0xfb,0xbe,0xa2, + 0x83,0x1c,0x2d,0x10,0x4a,0xfd,0x74,0xbd,0xdf,0xed,0x68,0x95,0x11,0x4f,0x4f,0xc7,0x29,0x9e,0xe8,0x98, + 0xda,0x4f,0x67,0x0d,0xbf,0x81,0x98,0xdd,0xa7,0xb1,0x11,0xa5,0x73,0x72,0x0b,0x5b,0xc1,0xc2,0x41,0xda, + 0xe0,0x25,0x24,0x2f,0x4e,0xe3,0x4f,0x5c,0xbb,0x5b,0xf5,0x61,0x4d,0x0c,0x68,0x13,0x06,0xbf,0x16,0x04, + 0x23,0x1d,0xee,0xbb,0xf4,0x97,0x81,0x76,0x9d,0xa2,0xcd,0x3f,0x84,0x9c,0x1e,0x9f,0xad,0xce,0x68,0xbe, + 0xc3,0x03,0x42,0x3b,0x51,0xfb,0xac,0x56,0xc5,0x56,0xa9,0x72,0xef,0x90,0x00,0x42,0x0e,0xcf,0x94,0x8e, + 0x70,0x16,0x2a,0xe9,0x8a,0x9b,0xe8,0x9b,0xe4,0x40,0xef,0x9e,0x11,0x32,0x13,0x90,0x12,0xfb,0x13,0x26, + 0x40,0x98,0x14,0x18,0xf3,0x37,0x63,0xfc,0x89,0x8f,0x4f,0x22,0x60,0x28,0x9a,0xc2,0xf0,0xb8,0x38,0x89, + 0x62,0x9b,0xb3,0x17,0x28,0xa0,0xe6,0xb8,0x00,0xc3,0x9b,0x52,0xc6,0x9f,0x87,0x12,0x6f,0xf6,0x6e,0xa3, + 0xad,0xc6,0xbe,0x82,0xc0,0x29,0x6a,0xac,0x45,0x42,0x66,0x85,0x92,0xbc,0x03,0x69,0x00,0x0f,0x1b,0x6a, + 0xe7,0x6c,0x45,0x3b,0x28,0xb8,0xa0,0x25,0x0c,0x60,0x64,0xd0,0x10,0x3f,0x8d,0x17,0x6c,0xbb,0x5b,0x8a, + 0xdc,0xe0,0x29,0x96,0x62,0x8a,0x45,0x84,0x93,0x72,0x4e,0xef,0xe6,0x71,0xec,0x1e,0x1d,0xc6,0x8a,0x45, + 0x05,0x12,0x13,0x57,0x03,0xf0,0xc4,0xe7,0xf4,0xa3,0x6a,0xc6,0x33,0x31,0xda,0xc2,0xc3,0xd8,0x3c,0xf8, + 0x0a,0x95,0xb1,0xfb,0x32,0xad,0x51,0x16,0x3f,0x63,0xf9,0xf1,0xca,0xfd,0x9f,0x56,0x03,0xe0,0xa1,0x74, + 0x23,0x78,0x54,0x98,0x3b,0xf4,0x91,0x7e,0xd4,0x32,0x6d,0x2e,0x38,0x3f,0xb8,0x87,0xc5,0xa3,0x54,0x9d, + 0x30,0x84,0x50,0xe8,0x21,0x4c,0x42,0xc6,0x2e,0x11,0xa5,0xf6,0xdc,0xab,0x88,0xe7,0x69,0xad,0x92,0x7b, + 0xe1,0xa2,0xce,0xb3,0x35,0x4d,0x10,0xc8,0xb6,0xe8,0x5e,0x3e,0x6c,0x20,0x03,0x75,0x2a,0x38,0x80,0xff, + 0x43,0x40,0x3f,0x36,0xb9,0xd1,0xaa,0x69,0x8b,0x8c,0x27,0xf3,0x0c,0x6f,0x61,0x90,0x06,0xf6,0x9c,0xa4, + 0x35,0xd2,0xbc,0xf8,0xd0,0xec,0x40,0xbd,0x16,0x4e,0xfa,0x60,0x28,0x07,0x81,0x02,0xc6,0x75,0x05,0xa1, + 0x3f,0xfa,0x13,0x17,0xce,0xa0,0xc4,0xcc,0x3f,0x53,0xa9,0xe6,0x05,0x10,0x8d,0xf9,0xe0,0x44,0x3c,0x6c, + 0x36,0x84,0x27,0xb7,0x54,0x8e,0xbb,0x07,0x9f,0x3f,0xa3,0x3d,0x65,0x90,0xd6,0x75,0x2c,0x88,0x14,0xa3, + 0x5d,0x9e,0x04,0xd2,0xa1,0x1d,0xa0,0x29,0xe2,0x95,0xeb,0x9d,0x94,0xfa,0x52,0x30,0x69,0xb3,0x83,0x99, + 0x4d,0x27,0x40,0x0b,0x1b,0x81,0xea,0xe0,0xe1,0xa3,0xa3,0xc7,0x4f,0x9e,0x7e,0xfb,0xec,0xf9,0x77,0xdf, + 0xbf,0x78,0xf9,0xea,0xf5,0x9b,0x7f,0xbd,0x7d,0xf7,0xfe,0x87,0x1f,0x7f,0xfa,0xf9,0x97,0x7f,0xa7,0x67, + 0x13,0x62,0xe7,0xcf,0x2f,0xf2,0x0f,0x1f,0xe7,0x8b,0xa2,0x5c,0xfe,0x56,0xd5,0xcd,0xea,0xf2,0xea,0xd3, + 0xf5,0xef,0x07,0x87,0xf7,0xbf,0xf8,0xf2,0xab,0xbf,0xff,0xe3,0x9f,0x5f,0xef,0xdd,0x4b,0x82,0x51,0xe1, + 0x24,0xd4,0x8e,0xf0,0x50,0x5e,0xaa,0x90,0x06,0x5f,0xb5,0x92,0xb0,0x88,0x49,0xf0,0x5c,0xfa,0x75,0x64, + 0xba,0x65,0x38,0xa5,0x5e,0x24,0x65,0xf4,0x6d,0x0d,0x48,0x98,0x44,0x4f,0x7b,0x06,0x61,0x0c,0x41,0x5b, + 0x9d,0x1c,0xc0,0xf0,0x66,0x54,0x5a,0xe8,0x59,0xd7,0x38,0xbd,0x26,0x09,0x9d,0x28,0xaa,0xfe,0x1f,0x22, + 0x9c,0xd2,0xbd,0x64,0x62,0x72,0xff,0xfe,0xc5,0xa0,0xf9,0xe6,0x9b,0x7f,0xee,0x53,0xc6,0xdf,0xfe,0x19, + 0x31,0xba,0x09,0xf3,0x44,0x3e,0x3e,0xa2,0xde,0x52,0x91,0x7a,0x2f,0x19,0xfe,0xe3,0xab,0x28,0xfa,0xe6, + 0xfe,0x57,0x5f,0x69,0x82,0x1d,0xa3,0x2b,0x46,0x4d,0xd2,0x3c,0x78,0xf0,0xcf,0x75,0x6e,0x8e,0xa3,0xff, + 0x65,0x04,0x72,0x73,0x55,0xe5,0x2d,0xad,0xbe,0xa1,0xda,0x08,0x59,0xdd,0x88,0x19,0x08,0x9d,0xf6,0xb5, + 0xd6,0x91,0xf0,0x81,0xd9,0x43,0x23,0x11,0xb5,0xc0,0xfc,0x9f,0x98,0x21,0x10,0x60,0x0e,0x06,0xfa,0x13, + 0x73,0x52,0xd1,0x77,0x18,0x0f,0x9f,0xdd,0x05,0x30,0xf3,0xb7,0x2f,0xdf,0x5b,0xe9,0xad,0xf2,0x20,0x3b, + 0xf7,0xbe,0xc5,0xfe,0xa3,0x0f,0xf3,0x56,0x81,0xd2,0x2b,0x30,0x65,0x01,0x0d,0x15,0x29,0x21,0xb8,0x20, + 0x20,0x4f,0x5d,0x5e,0x9d,0x4d,0x56,0x15,0xa4,0xde,0x6e,0x17,0x32,0xee,0x4e,0x6a,0x7d,0xc6,0x8f,0x76, + 0xe8,0x90,0x57,0x60,0x2e,0xe3,0xad,0xd3,0x29,0xe9,0x7c,0x34,0x5c,0x30,0x9f,0x85,0x21,0xbc,0xcd,0xce, + 0x9f,0x7c,0x5a,0x86,0x41,0xf8,0x9f,0xf5,0xe8,0xd7,0x5f,0xeb,0xbf,0x45,0x21,0x4d,0x09,0x91,0x6f,0x49, + 0x78,0xfc,0x9f,0xd1,0xc9,0xdf,0xa2,0xc0,0xa9,0x82,0x1a,0xe2,0x0f,0xb7,0xe7,0xea,0xf8,0x8b,0x13,0x91, + 0x4f,0xa0,0xf1,0x45,0x79,0xd9,0xb6,0x8e,0xe0,0xdd,0xc5,0x8b,0x42,0x6b,0x41,0xa0,0x86,0x19,0x1b,0x16, + 0xe5,0x55,0x18,0xed,0xff,0xf3,0xef,0x5f,0x66,0x5f,0x11,0x35,0x1d,0x77,0x17,0x0d,0x32,0xa7,0xf6,0x38, + 0x5a,0xfa,0xd3,0xed,0x76,0xe8,0x83,0xbf,0x40,0x1e,0xeb,0x4e,0x5d,0x10,0xf8,0xcc,0x21,0x2d,0x3e,0x3e, + 0xf1,0x09,0x50,0x5f,0x2f,0x49,0x15,0xf4,0x2b,0xb2,0x5b,0x15,0xc8,0x02,0xdd,0x58,0x7d,0x1b,0xcb,0x3c, + 0x44,0xdf,0xc6,0x5a,0xf7,0x76,0x61,0xa1,0x84,0xf6,0x0f,0x21,0x61,0x70,0x2d,0x71,0xf9,0x64,0x6b,0xe2, + 0xcc,0x57,0x44,0x44,0x82,0xc8,0xec,0x24,0x69,0x7e,0xaf,0x55,0x91,0xa6,0x38,0x92,0x36,0x95,0x69,0x89, + 0x5b,0xbf,0x06,0xcf,0x88,0xc0,0x92,0xb9,0x0d,0x31,0xa0,0xf4,0x4a,0x2c,0xe2,0x7f,0xa9,0xdd,0x82,0xdd, + 0xe1,0x67,0xf8,0x59,0x46,0x05,0xcf,0x67,0x9a,0xfb,0xcb,0xa6,0xe1,0x96,0x02,0xeb,0xf0,0x6b,0x91,0x10, + 0xc3,0x34,0xcf,0xda,0x04,0xd2,0xeb,0x21,0x04,0xc4,0xf4,0x7b,0x0b,0x8f,0x40,0x4b,0x03,0x74,0x96,0x0d, + 0xcf,0x52,0x2d,0x96,0xdb,0x9d,0x68,0x29,0x0c,0x33,0x58,0xf4,0x90,0xcc,0x43,0x9b,0xad,0xb4,0x80,0x46, + 0x59,0x19,0xaf,0x93,0xf6,0xb2,0xe2,0x4f,0x84,0xc0,0x09,0x64,0x8c,0x2c,0x0d,0xb6,0xb9,0x50,0xd4,0x74, + 0x54,0x56,0x7e,0x2d,0x46,0x94,0x6f,0x53,0x86,0xa2,0x8b,0xd0,0x95,0x5a,0xa1,0xbf,0x16,0x69,0x9e,0xb4, + 0xd3,0xf1,0x16,0xfd,0xa1,0x22,0x42,0xf5,0xa9,0x17,0x40,0x5a,0xa3,0x21,0x5f,0xcf,0x40,0xeb,0x6a,0x84, + 0xf6,0xb6,0xe5,0xe6,0x64,0x63,0x36,0x34,0x75,0x52,0x6b,0xfc,0xd6,0xeb,0xda,0x3c,0x46,0xe0,0x10,0xdb, + 0xe2,0x06,0x07,0xf7,0x3c,0xc7,0x8d,0x99,0x1a,0x79,0xa0,0xf7,0xde,0xa9,0x11,0xd6,0x95,0x8a,0x6f,0x54, + 0x4f,0x4d,0x29,0x3d,0xd3,0x09,0x23,0x15,0xc2,0x6e,0xcf,0xf0,0xba,0x80,0x73,0xa7,0xe1,0xb6,0x2d,0xb5, + 0x52,0x94,0xf7,0xfe,0xb9,0xb6,0x69,0x7d,0x9d,0x9a,0x9e,0xf9,0xa8,0xe6,0x2f,0x69,0x2e,0x3e,0xc3,0x8d, + 0x9a,0x09,0xb1,0x4b,0x55,0xb4,0x28,0x1c,0xa8,0x38,0x81,0x30,0x36,0xdb,0x8c,0xd4,0x9f,0x90,0x17,0x58, + 0x3a,0x26,0xdc,0xcd,0xd6,0x6b,0x58,0x73,0x9c,0x1e,0x3d,0x7c,0x75,0xf4,0xe4,0xc5,0xe9,0xe9,0x7f,0x21, + 0x7d,0x30,0xb5,0xdd,0xfb,0x4f,0x78,0x9c,0xee,0xff,0x7e,0x82,0x3f,0xbf,0x4e,0x7f,0xdd,0xfb,0x75,0xff, + 0xd7,0xe1,0xc9,0xdf,0xe2,0x68,0xfc,0xeb,0xbd,0x5f,0xef,0x19,0xd2,0x2f,0xfb,0xaf,0xc4,0x1b,0x0e,0x31, + 0x8e,0x3d,0x43,0xa2,0x5f,0xef,0xed,0x09,0xc9,0xbc,0x07,0xfa,0xb3,0xf1,0x09,0xe2,0x7b,0x7b,0x42,0xea, + 0xfe,0xc1,0xe4,0xb4,0xad,0x76,0x5a,0x94,0x5a,0xb6,0x29,0x7a,0x8c,0x37,0x93,0xad,0x23,0x23,0x10,0x63, + 0xdf,0x60,0x2f,0xf4,0x3f,0x27,0x46,0x97,0xf8,0x18,0x3f,0x25,0x86,0x75,0x53,0x8b,0xca,0x72,0x93,0x0e, + 0xf5,0x88,0x67,0x4e,0xfd,0x97,0xd0,0x21,0x04,0x99,0x56,0x96,0xb8,0xeb,0x29,0x58,0x2d,0x51,0x04,0xa1, + 0xa6,0xc8,0x9b,0x88,0xba,0xa0,0x53,0x9e,0xe8,0xee,0x9d,0xc5,0xaa,0x6e,0x76,0xce,0xb2,0x9d,0xd4,0xda, + 0x4c,0x0d,0x03,0x6d,0x86,0x32,0xe2,0x5e,0x6b,0xc1,0x60,0xd2,0xab,0xcc,0xc2,0x5c,0xd1,0x04,0xc9,0x07, + 0x45,0x82,0x0f,0x46,0xed,0x6c,0x48,0xd1,0xd2,0x1a,0x68,0x29,0x34,0x8f,0x5c,0x55,0xce,0xfb,0xd1,0xa6, + 0x41,0x8c,0xe0,0x10,0xf4,0x17,0xed,0xd3,0xb1,0x8b,0xcb,0x3b,0xea,0x14,0x6d,0x55,0xc1,0xd5,0x68,0x91, + 0xad,0x4b,0xc1,0xa1,0x55,0x97,0xab,0x6a,0x92,0xf9,0x5f,0xf9,0xc6,0x06,0x37,0x0d,0x0e,0x0c,0xb6,0x27, + 0xaa,0x5a,0xa8,0x28,0x4b,0x70,0xa8,0xca,0xa1,0xc2,0xf0,0x73,0xeb,0x41,0xf5,0x17,0xf6,0xc6,0x4e,0x0f, + 0x8a,0x32,0x06,0x65,0x2c,0x76,0x6c,0x60,0x53,0x06,0xbd,0x67,0xb7,0x85,0xdb,0x7d,0x20,0x7a,0x94,0x99, + 0xff,0x4b,0x6e,0x10,0x0d,0x1c,0x1b,0x7e,0x5c,0x65,0xfd,0x6e,0x0d,0xfd,0xc0,0x98,0xf5,0xda,0xc1,0xae, + 0xd7,0x18,0x1d,0x5b,0xc4,0x7a,0xc6,0x90,0xdd,0x92,0x22,0xf3,0x32,0x92,0xb0,0x4d,0x7b,0x57,0x1a,0x96, + 0xab,0x5d,0x89,0x6f,0xd6,0xbe,0x65,0x5d,0xb0,0x5e,0x6f,0xdb,0xf1,0x52,0x5a,0x7d,0xbd,0x38,0x2b,0xe7, + 0xed,0xb4,0xb3,0xb2,0x9c,0x67,0x69,0xd1,0x6b,0xd7,0xfe,0xbf,0x63,0x09,0x2f,0x12,0x36,0x36,0xbe,0x5d, + 0x14,0xbd,0x86,0xf0,0x86,0x88,0x66,0x43,0x08,0xb6,0xc9,0x0b,0x2d,0x03,0xe5,0x88,0xe3,0x6f,0x92,0x83, + 0xc1,0xe0,0x25,0x91,0xf8,0xc3,0xd9,0xbc,0x84,0x25,0x18,0x2b,0xd3,0x89,0x63,0xad,0x9f,0xe6,0x05,0xd3, + 0xbf,0x5e,0xad,0x75,0xa7,0xeb,0xd4,0xf3,0x71,0x10,0xf4,0x78,0xb6,0x8c,0xbb,0x22,0x3f,0x91,0x82,0xdf, + 0x8f,0x62,0xdb,0x05,0x57,0xeb,0xa4,0xb7,0xaf,0x4e,0x8a,0x4d,0x1c,0x4d,0xfa,0x8a,0x3a,0x36,0xce,0x88, + 0x30,0xb5,0x5f,0xcd,0xb5,0x85,0xa4,0xb5,0xc8,0xd4,0xa6,0xf1,0xc2,0xe5,0x87,0xa2,0x3d,0xa8,0x12,0x2b, + 0xc3,0x52,0x10,0x73,0x26,0x07,0xa3,0xfc,0x41,0x65,0x4c,0xc9,0x72,0x31,0xcc,0x3c,0xce,0x4f,0x4e,0x08, + 0x57,0x3a,0x7e,0xa1,0x4f,0xfb,0x7e,0x9c,0xb5,0x05,0x59,0x27,0x9b,0x3e,0xe3,0x0e,0x2a,0x76,0xb2,0x71, + 0x7d,0x5c,0x59,0x77,0x04,0xe3,0x47,0x60,0x54,0xaa,0x99,0x27,0xe2,0x62,0x71,0xf0,0x37,0xfb,0x87,0x56, + 0x4a,0xcc,0x5d,0xa6,0x13,0xa7,0x50,0x87,0x91,0x57,0xdb,0xac,0x75,0x66,0x9d,0x99,0x55,0xc7,0x26,0xb7, + 0x65,0xa6,0x6e,0x2e,0x7b,0xe6,0x63,0xd4,0x45,0x1b,0x9e,0x45,0xdb,0x71,0x71,0x02,0xc3,0x4e,0xfa,0x81, + 0x85,0x70,0xe4,0x37,0xbc,0xdc,0x32,0x46,0xd5,0xd2,0x90,0xaa,0xc7,0x50,0x58,0x53,0x18,0xe3,0xea,0x9b, + 0xc3,0xb1,0x33,0x6e,0xb5,0xe5,0x80,0x03,0xb8,0xdf,0x6c,0xde,0x6b,0x9e,0xad,0x9c,0xb7,0x18,0x9e,0x4a, + 0x45,0xd6,0xf3,0x42,0x15,0xae,0x23,0x17,0xd2,0x11,0xe2,0xc6,0xd7,0xeb,0x83,0x91,0x5b,0x7a,0x53,0x76, + 0xbf,0xa1,0x15,0x77,0x96,0xb9,0x45,0x34,0x2a,0xf6,0xf7,0x47,0x51,0xc5,0x83,0x3a,0x2e,0xf6,0x1a,0x6b, + 0x76,0x5b,0xb9,0x4a,0x2f,0x3b,0x80,0x04,0xef,0x8d,0x26,0x82,0x6f,0x47,0x82,0xd9,0xb0,0x92,0x51,0xf7, + 0xc5,0xa2,0x25,0x9a,0x80,0xd5,0x74,0x41,0x80,0x55,0x3c,0x70,0xce,0x22,0x04,0x58,0xa8,0x60,0x30,0xb8, + 0x84,0xf6,0x11,0xc2,0x48,0x0b,0x5d,0xae,0x9a,0x73,0x73,0x0e,0xbb,0xa4,0x6b,0x07,0x30,0xd8,0x86,0x91, + 0xc1,0x52,0xfa,0x48,0xe4,0x73,0xae,0xa2,0x1f,0x01,0x9a,0x5d,0x3a,0x08,0x77,0x2b,0x53,0x88,0xb8,0x96, + 0xdd,0x6a,0x30,0xb0,0x1b,0x8c,0x2a,0xd0,0xcf,0x54,0x1a,0x3a,0x4c,0xd6,0x3d,0x24,0x3c,0x35,0x9e,0xb8, + 0x9f,0xd8,0x96,0x76,0x92,0xd4,0x5d,0x0e,0x06,0xa9,0x03,0x48,0xbd,0x26,0x90,0x5f,0xc9,0x23,0x38,0xa4, + 0xec,0x32,0xab,0xae,0xbd,0xf3,0xd9,0x23,0x30,0x79,0x1c,0x18,0xf6,0x46,0x2a,0x5b,0xaf,0x4d,0x65,0xbb, + 0x87,0x23,0x11,0x68,0x68,0xf0,0xfc,0x98,0x5d,0x03,0xab,0x10,0xb7,0xe4,0x27,0x38,0xbb,0xf2,0xda,0xb5, + 0x3d,0xb1,0x6d,0xd7,0xdd,0xb6,0x5b,0x2d,0xc3,0x2b,0x47,0x37,0xee,0x8c,0xbf,0x4c,0xeb,0x1e,0x58,0x9f, + 0x75,0x31,0xc8,0xd6,0x1a,0x52,0xd7,0x4d,0x7d,0x91,0x75,0xa7,0xd3,0x3d,0x23,0x5e,0xd8,0xd6,0x74,0xea, + 0x76,0x1d,0x8d,0x6f,0xdb,0x6c,0xbc,0x61,0x93,0x69,0x26,0xc7,0xf4,0x86,0xc0,0xe1,0xe7,0xf6,0x84,0xbf, + 0xd9,0xae,0x5c,0x5d,0x10,0xf5,0x04,0x91,0x2f,0xa0,0x3a,0xb0,0xf3,0xf2,0xc5,0xdf,0xb1,0x1a,0xeb,0xf5, + 0xd7,0x5f,0xe1,0xd7,0x7d,0x7e,0x64,0xf4,0x76,0xd1,0x8d,0x9e,0x50,0x39,0x7d,0x8d,0xdb,0x11,0x67,0x53, + 0xfd,0xf3,0x55,0x16,0x17,0x2a,0xa3,0x03,0x2d,0xab,0xd2,0xb3,0x79,0x16,0xef,0xee,0x56,0x0a,0x12,0x0d, + 0x79,0x39,0xd0,0x96,0x10,0x2b,0x9d,0x79,0xb0,0xf1,0x90,0xcc,0x7b,0xef,0x3c,0xea,0x51,0x38,0x0f,0x06, + 0xf7,0x0a,0xf6,0x8b,0x60,0x9d,0xe8,0x3d,0x4d,0xa1,0xfb,0x86,0x82,0xae,0xaa,0x8f,0x1d,0x0b,0xa7,0x8c, + 0xd6,0x82,0x0f,0x6f,0xd5,0xfe,0x71,0x27,0x97,0xfb,0xf6,0x93,0x36,0x15,0xd0,0x28,0x60,0x62,0x84,0x3b, + 0xaf,0xc5,0xac,0x57,0xa3,0x02,0x58,0x50,0x0e,0x9b,0xf4,0x5c,0x59,0x96,0x78,0x72,0x91,0xcf,0xa7,0x55, + 0x56,0x80,0xf9,0x82,0xf5,0x07,0x41,0xf2,0x7c,0xa1,0x58,0xb9,0xc9,0xef,0xc8,0x48,0xeb,0xeb,0x62,0xf2, + 0x34,0x85,0x99,0xfc,0xb5,0x53,0xa7,0x0e,0x0b,0x30,0xdc,0xa8,0x5a,0x24,0x79,0x4d,0x3e,0x01,0x26,0xd7, + 0x8f,0x94,0x4a,0xc0,0x4b,0x09,0xf4,0x97,0x4b,0x1c,0x11,0x6b,0x4b,0xfd,0xe1,0x22,0xfa,0x99,0xd2,0x67, + 0xc5,0x91,0x34,0x44,0xe9,0xf6,0x99,0xd3,0x75,0xc7,0x39,0xdd,0x0e,0x82,0x9e,0xdf,0x4d,0x68,0xed,0x9e, + 0x4f,0x39,0x5d,0x3f,0x4b,0xfd,0x73,0x1a,0x2f,0x7b,0x5e,0x36,0xa2,0x8e,0xd5,0x03,0xa3,0x97,0xca,0xbe, + 0x24,0xef,0xbc,0x1c,0x18,0x16,0x45,0x50,0xde,0x16,0x7e,0xe1,0xc2,0x2f,0x5c,0xb4,0x0b,0x13,0xbe,0x71, + 0x33,0xfe,0xae,0xbb,0x63,0x2c,0x92,0x6e,0xa3,0x5d,0x7d,0xd0,0x16,0x7c,0xc2,0xe2,0x7c,0x4d,0x68,0xad, + 0xe8,0xc7,0xf3,0x17,0xf1,0x6a,0x7d,0x68,0x91,0x9e,0xb8,0x04,0xed,0x86,0x2d,0x07,0x1e,0x62,0xee,0xf5, + 0x22,0xdb,0x9d,0x05,0xa1,0xdc,0xe9,0x69,0x79,0x76,0x7a,0x1a,0xb0,0xb1,0x8a,0x3c,0xfb,0x1f,0xd5,0xd5, + 0x18,0xbd,0x93,0x8c,0x38,0x25,0xb2,0xfd,0xa2,0x5c,0xcd,0xa7,0x34,0xdb,0x84,0x38,0x68,0xb6,0x76,0x7f, + 0x2b,0xd8,0x48,0xb0,0x8b,0x0d,0xd7,0x6b,0x10,0x5b,0x94,0xa3,0x37,0x4f,0x5e,0x3f,0x81,0x57,0x4b,0x9d, + 0x9f,0xb1,0xb5,0x2d,0x7d,0xc8,0x4e,0x0a,0x44,0xc5,0x62,0xde,0x78,0xd0,0x35,0xeb,0x2e,0xb1,0x04,0x3c, + 0xaf,0x97,0x8b,0xa3,0x72,0x55,0x34,0x7b,0x7b,0x74,0x70,0xb9,0x31,0xde,0xf1,0xd5,0xe9,0x82,0x88,0xf1, + 0xed,0x2f,0x05,0xa1,0x5f,0xdd,0xd4,0x79,0xd6,0x78,0xee,0x81,0x8f,0xb3,0x7a,0x52,0xe5,0xb0,0x9c,0xe7, + 0xd9,0x61,0x74,0x9f,0x12,0xba,0x3f,0x24,0x72,0x31,0x1d,0xfa,0x9b,0xd3,0x48,0x88,0x53,0xc2,0xd8,0xa8, + 0x84,0x50,0x29,0x3f,0xd6,0xf4,0x38,0x4f,0x76,0xf3,0xc1,0xe0,0x21,0x4e,0xc2,0xcf,0x60,0x03,0x1f,0x0b, + 0x6c,0x6d,0x7c,0x45,0x55,0x76,0x4d,0xab,0x9b,0xa4,0x1e,0xd7,0x86,0xe8,0x74,0xea,0x8f,0x5f,0x0a,0xda, + 0x68,0x15,0x95,0xa7,0xb9,0x29,0xa9,0xa5,0x25,0x2c,0x37,0x22,0x35,0xa7,0xd7,0x39,0x5e,0x5d,0x52,0xf7, + 0xc4,0x19,0x0c,0x3c,0x8a,0xbf,0x05,0x61,0x7a,0xff,0x8b,0x5b,0x52,0xd3,0x75,0x47,0xa2,0x25,0x68,0x60, + 0xd8,0x89,0x89,0x97,0xb5,0x76,0x4f,0x9f,0x6b,0x11,0xb2,0x71,0x36,0xc2,0x80,0xd0,0x9c,0x85,0x3d,0xb5, + 0x3f,0xca,0xc6,0x90,0x37,0xed,0x61,0x42,0x81,0x53,0xad,0xd7,0xcd,0x2e,0x9b,0xa0,0xee,0xe2,0x39,0x9c, + 0x8c,0x27,0x8e,0x0e,0x8b,0xa9,0x3b,0x76,0xce,0x1b,0x58,0xfd,0x17,0x65,0x03,0xfa,0x97,0x2d,0xef,0x3d, + 0x70,0x78,0xed,0x99,0x07,0x74,0x41,0x90,0xd6,0x2e,0x74,0xc7,0x8d,0x3d,0x7b,0x99,0x46,0x5f,0xa4,0x9f, + 0x2c,0x29,0xa9,0x58,0x82,0xa7,0x49,0xc5,0x46,0x1d,0x52,0x75,0xaa,0x00,0x9c,0x34,0xec,0x7f,0x8a,0x7d, + 0xc4,0x4f,0x5d,0x97,0x51,0x57,0xb5,0x18,0xc8,0x16,0x5a,0x74,0x64,0x76,0x8b,0xf3,0x4c,0x12,0x40,0x5f, + 0xaf,0x2b,0x58,0x6a,0x69,0xb8,0x1e,0x17,0x71,0x35,0x0e,0xef,0x10,0x82,0xe1,0x33,0x84,0x47,0x41,0xc8, + 0x08,0x73,0x6d,0xc6,0x0a,0xc2,0xce,0x58,0xdf,0x16,0x1e,0xbe,0x7e,0x62,0xf7,0xf9,0x2d,0x43,0xf6,0x47, + 0xe3,0x99,0x3a,0xb8,0x8d,0x3c,0x72,0x7d,0xf2,0xf7,0xda,0x7a,0x2d,0xa4,0x31,0x6c,0xd0,0x8c,0xb5,0x6f, + 0x73,0x22,0x68,0xce,0xef,0x98,0xbf,0x02,0x6f,0x6c,0x67,0x7c,0xf3,0x0c,0x0b,0x77,0xd8,0xa8,0x6e,0x6b, + 0x6a,0x9a,0x04,0x1a,0xa7,0x51,0xfd,0x20,0x35,0x50,0x58,0x03,0xbb,0x81,0xb0,0x4c,0xd2,0xe3,0xfa,0xe4, + 0x04,0x00,0x0a,0x5a,0x61,0xc6,0xa4,0xd0,0xb8,0x0c,0x2b,0xf6,0x6f,0x84,0x2e,0xe5,0x4d,0x88,0x8d,0x1f, + 0x63,0xd9,0x0b,0x7a,0xe8,0xa1,0x29,0x1f,0x77,0x44,0x74,0xc5,0xb8,0xb3,0xe7,0xaa,0xa4,0xd7,0x4f,0xce, + 0xb8,0x0e,0xb3,0xb3,0x1c,0xf5,0xa0,0xef,0x40,0x1e,0x67,0x5e,0xa1,0xcc,0x91,0xe8,0xba,0x57,0xf9,0x26, + 0x6e,0xc6,0x99,0xdf,0x9e,0x71,0x25,0x0f,0x3f,0xd7,0x24,0xd3,0x30,0xf8,0x83,0x86,0x3f,0xd7,0xac,0x57, + 0x90,0xd8,0xbe,0xb8,0x89,0xbd,0x61,0x7f,0xe8,0xca,0xe1,0xc6,0x99,0x51,0xe1,0xd3,0x76,0xea,0xa2,0x89, + 0x71,0x13,0x43,0xcf,0xef,0x7d,0xff,0xdc,0x91,0x3b,0x22,0xf0,0x69,0x73,0x3d,0x5a,0x52,0xe0,0xe9,0x82, + 0x2e,0xe1,0x56,0x85,0x31,0xdb,0x2a,0x5e,0x98,0x99,0xf7,0xa4,0x00,0xb6,0xba,0x49,0x45,0xe8,0x85,0xe0, + 0xab,0x1a,0xcd,0xe1,0xc1,0x47,0x07,0x14,0xbb,0x3d,0xe2,0x0f,0x1a,0xed,0xb3,0xe6,0x03,0xf6,0x23,0x0e, + 0x65,0xa8,0xbd,0x8b,0xba,0xa2,0x17,0x03,0xd1,0xb4,0x1f,0x97,0xb5,0x58,0x02,0xc9,0xfa,0x32,0xc0,0xdd, + 0x6c,0x46,0x5b,0xfb,0xa3,0x10,0xa7,0x74,0x3a,0x62,0x2d,0xfa,0x03,0x57,0xd3,0x15,0x50,0x84,0x12,0xd7, + 0x01,0xbb,0x20,0x3d,0xbe,0x2a,0x08,0xee,0x4e,0x92,0x1b,0x64,0x89,0x9a,0xcb,0x59,0x1a,0x95,0xa6,0x46, + 0x3e,0x37,0x80,0x22,0x8a,0x08,0xdf,0xd6,0x27,0x8a,0x3f,0xac,0xe9,0x43,0x80,0xed,0x38,0x8f,0xe5,0xfb, + 0x7c,0x33,0xd2,0xfd,0x4d,0xd2,0x0d,0x50,0xe6,0x2d,0x43,0xca,0x0b,0xcc,0xbd,0x3f,0x26,0x9b,0xf8,0xb9, + 0x81,0xc9,0x4c,0x33,0xc1,0xe0,0x73,0xe6,0xc4,0xb5,0x31,0x67,0x7e,0x03,0xe3,0x9a,0x18,0xcf,0x9b,0xfe, + 0x21,0xa4,0x32,0x04,0x7d,0x0c,0x16,0xc7,0x29,0xf1,0x6c,0xf4,0x87,0xc6,0x50,0x47,0xb4,0xde,0xf2,0x7d, + 0x4a,0x28,0x3e,0x8a,0xe5,0xb9,0xde,0x6c,0xba,0xc3,0x30,0x83,0xa0,0x03,0x32,0xaf,0xa8,0xbf,0x44,0xbd, + 0xea,0xc5,0x31,0xad,0x54,0x5e,0x2b,0x32,0xd3,0xa3,0x9e,0xc5,0xcf,0x41,0x16,0x70,0x74,0x0d,0x18,0xf8, + 0xc7,0xb9,0x5a,0x2d,0x61,0x5d,0x48,0x53,0x18,0x41,0xe9,0xaf,0xe3,0x6f,0x34,0x3a,0xbc,0x04,0x37,0x91, + 0xb3,0x8d,0x14,0xa0,0x30,0x87,0x71,0xa0,0x6a,0x86,0x8b,0xfc,0x13,0x91,0x32,0x6e,0x7c,0x74,0xf6,0xd5, + 0x89,0x49,0x36,0x53,0x94,0x3e,0xa8,0x47,0x29,0xf8,0x4c,0xfe,0xd4,0xe4,0xd2,0xb8,0xa9,0x12,0x6e,0x66, + 0x42,0x27,0x11,0xcd,0x3a,0x6a,0x99,0x48,0x44,0x02,0x7a,0x88,0xdc,0x7b,0x13,0x01,0x51,0x4d,0x88,0xe4, + 0xe1,0x74,0xbd,0x43,0xe6,0x6e,0x63,0x3c,0x75,0x7b,0xab,0xcf,0xdb,0xc6,0xce,0x05,0x90,0x2d,0x06,0x42, + 0x43,0xc1,0x00,0x8c,0xd4,0x06,0xbc,0xb3,0x50,0x3a,0x57,0x60,0xd0,0x4c,0x89,0xd2,0x2b,0x51,0x4a,0x89, + 0x34,0x39,0x2a,0xc2,0xd2,0x49,0x27,0xa8,0x54,0x4a,0xd0,0x47,0x63,0x89,0x73,0x16,0x4b,0xa0,0x24,0xfe, + 0xa6,0xbe,0x70,0xe5,0x55,0x77,0xeb,0x37,0xc7,0xd9,0x89,0x2a,0x93,0x5d,0x5a,0x35,0xc5,0x7c,0x2d,0xa4, + 0x31,0x68,0xf6,0x6d,0xf8,0x48,0xe4,0x71,0x2a,0x1f,0xf2,0x09,0x08,0xfa,0x84,0xce,0x47,0x34,0x14,0x68, + 0xf7,0xca,0x20,0x1a,0xa7,0xc4,0xbc,0xc5,0x6f,0xb5,0x90,0xcc,0x14,0x85,0xe1,0xff,0x2e,0xab,0xb4,0x53, + 0xfa,0xf9,0xa8,0xfd,0x5f,0xd3,0x84,0x09,0x69,0x2b,0x91,0x4c,0xa3,0x9b,0xb4,0xcf,0xf4,0x6f,0x06,0x0f, + 0x28,0xdb,0x82,0xd9,0x14,0x8d,0xf1,0xe9,0xb4,0xe7,0x00,0x88,0xd8,0x3b,0x1a,0x61,0xc8,0x4e,0x93,0xa8, + 0x09,0x4e,0xe4,0xd9,0x93,0x2d,0x02,0x06,0x2b,0xea,0x1c,0x9e,0x72,0x0e,0xa5,0x8e,0xbd,0xe7,0x3e,0x11, + 0x2d,0x7c,0x86,0x9f,0x3a,0xe1,0x7e,0xf2,0x32,0x6c,0x64,0xb0,0xe3,0xca,0x52,0x3b,0x15,0x81,0x2b,0x50, + 0x52,0x16,0x69,0x7e,0xbd,0x4b,0x43,0x8f,0xba,0x09,0xe0,0x43,0x1e,0x86,0x29,0x4d,0x7c,0x37,0xa3,0x76, + 0x66,0x13,0x76,0xf5,0x5e,0x7a,0xf6,0x51,0x18,0xbd,0xe3,0x0e,0xb5,0x96,0x9f,0x1d,0xba,0x6d,0xf1,0xf0, + 0xd7,0xab,0xbd,0xe8,0x9e,0x87,0xc7,0x9b,0xe3,0x43,0x1a,0x5b,0xe0,0x2a,0x7c,0xeb,0x0e,0xf4,0xee,0xb1, + 0x61,0x00,0xee,0xa5,0x48,0x37,0x5f,0x1a,0xaf,0x57,0x13,0xe6,0xa3,0x72,0x84,0x65,0xf1,0xa0,0x32,0x9c, + 0xff,0x4b,0x16,0x86,0x99,0x0f,0x9c,0x28,0xc6,0x4a,0x12,0x6c,0xd3,0x8f,0xbc,0x15,0x6f,0x1c,0xc2,0x48, + 0x68,0x7d,0x93,0x6a,0x78,0x67,0x99,0x12,0x33,0xd5,0x8c,0x9c,0x01,0x91,0x5d,0x4a,0xf6,0x21,0x38,0x4a, + 0x97,0x54,0x61,0x36,0x65,0x5c,0x60,0xbf,0x2e,0x09,0x21,0x96,0x0f,0x72,0xd3,0xaf,0x12,0xa1,0x47,0xaa, + 0x6b,0x1e,0x1e,0x4c,0x20,0xb1,0x23,0x64,0xad,0x2a,0x25,0x8d,0xeb,0x0e,0x3a,0x89,0xc7,0x8f,0xd4,0xab, + 0x4a,0x05,0xad,0x36,0x76,0x2e,0xca,0xf2,0x23,0xfc,0xe1,0x7f,0xd4,0x5d,0x76,0x83,0xf8,0xd1,0x1b,0xc4, + 0x93,0x42,0xba,0xf6,0x4c,0x74,0xee,0xdc,0xb2,0x9e,0xc3,0x4e,0x96,0x1f,0xb8,0x44,0x2a,0xb4,0xed,0xff, + 0x64,0xa4,0xbe,0x81,0x36,0xb5,0xf6,0xbf,0xa3,0x3e,0xfc,0xb4,0xd5,0x85,0x9f,0xbc,0x2e,0xec,0x7e,0x80, + 0x3c,0xeb,0x79,0x41,0xfb,0xaf,0xc7,0xc7,0x08,0x5e,0xec,0xb4,0xa3,0xb5,0x86,0x26,0x1b,0xe9,0x77,0x69, + 0xa2,0x25,0x5c,0xfe,0x81,0xc8,0x99,0x65,0x95,0x68,0xb1,0x53,0x96,0x4c,0x2b,0xe3,0x76,0x1e,0x8d,0xa6, + 0x46,0x12,0x9c,0x38,0x61,0x62,0x43,0xcf,0x8d,0x93,0x02,0x35,0x2c,0xc9,0x6b,0x4e,0x42,0xaf,0xca,0x67, + 0xde,0xa9,0x87,0x45,0xa3,0x6a,0xd8,0x96,0xa2,0xad,0x48,0xd2,0xce,0x88,0x56,0xc0,0x69,0xe7,0x45,0xa0, + 0x25,0x28,0xe8,0x08,0x78,0x9f,0x4f,0xb0,0x1a,0x7c,0xaa,0x15,0xec,0x13,0x0f,0x55,0xcd,0x12,0x7c,0x05, + 0xfa,0x7c,0xa0,0x2e,0xaa,0xf1,0xaa,0x0a,0xa3,0x78,0x5e,0xc1,0x40,0x67,0x37,0xeb,0xd7,0xcf,0x68,0x4d, + 0x5a,0xe4,0xc9,0x51,0xfa,0x94,0x6b,0x05,0x94,0x6b,0x6e,0x18,0xbf,0x23,0xcd,0x16,0x00,0xdf,0xa5,0x2c, + 0x29,0x52,0xde,0x22,0x15,0x0c,0x89,0x05,0x85,0xf4,0x11,0x8c,0xb0,0xe5,0x90,0x9f,0x56,0xe5,0xef,0x70, + 0xc7,0x16,0x9b,0xaa,0x46,0xd3,0xea,0xe6,0x3c,0x6e,0x7c,0x76,0x2c,0x67,0x28,0x2f,0x60,0x41,0x48,0x87, + 0xb3,0x31,0xec,0x2c,0xe0,0x7d,0x40,0xef,0x70,0x15,0x49,0x35,0xad,0xd3,0xb4,0x68,0x1d,0xea,0x1c,0x93, + 0x5c,0x5e,0xa4,0x9d,0x2a,0x09,0xcb,0x0e,0x7d,0x1e,0x6d,0x7d,0x53,0xd2,0x57,0x27,0x1c,0x59,0x21,0xa2, + 0x59,0x3f,0xab,0x22,0xfa,0x3f,0x9c,0xd0,0x51,0x50,0xf9,0x0b,0xfa,0x7d,0xd8,0x8e,0xa1,0xa5,0x55,0x7a, + 0x4e,0xb8,0xad,0x40,0x18,0xcc,0x0a,0x3e,0xae,0x77,0xb7,0x68,0x18,0x2b,0xba,0xf6,0x14,0x6f,0x4e,0xb6, + 0x37,0x72,0xf8,0xa0,0xd0,0xa0,0xd7,0xab,0x88,0x80,0x98,0xc4,0xaf,0x21,0xb3,0x32,0x71,0x6e,0x1a,0xe1, + 0x0c,0x5c,0x8f,0x7f,0x0b,0xb5,0x30,0xc1,0xda,0xff,0xab,0x5a,0xd1,0x81,0xcf,0x8d,0xa5,0x72,0xba,0xd3, + 0xd4,0x83,0x1a,0x98,0x30,0x45,0x44,0xb4,0xc0,0x69,0x05,0xe4,0x9c,0x85,0x6c,0x23,0x97,0xd1,0x91,0x3f, + 0xa6,0xbf,0x35,0xea,0xc6,0x79,0x28,0xa5,0x93,0xef,0xb1,0x2c,0xaa,0x22,0x7e,0x9d,0x8d,0x37,0x6b,0x35, + 0x1f,0x12,0x35,0x9e,0x29,0x04,0x78,0x61,0x14,0x42,0x4f,0xf0,0x89,0x23,0xfa,0x88,0x9f,0x60,0xa6,0x1e, + 0x45,0x71,0x4d,0xa7,0xc8,0x84,0x6a,0x99,0x70,0x57,0x89,0xda,0x47,0x5d,0x93,0x28,0x72,0xfd,0x29,0x78, + 0x3d,0x52,0x90,0xa7,0x79,0x18,0xea,0xde,0x44,0xd2,0x8a,0x74,0xd0,0xb4,0xe0,0x2d,0xcc,0x77,0xa1,0x1e, + 0xa2,0xa7,0xd7,0x8a,0x6e,0xca,0x7e,0x21,0xaa,0x5a,0xc9,0x68,0x88,0x76,0xd8,0x54,0x6d,0x01,0x12,0x04, + 0x62,0x84,0x77,0x21,0xff,0x1b,0x02,0x03,0xc2,0x84,0xc3,0xbd,0x11,0x95,0x14,0xe9,0x53,0x0e,0xf6,0x84, + 0xb4,0x0e,0x23,0x9e,0x9e,0x9a,0x66,0x03,0x3d,0x8e,0x1b,0x19,0x17,0xa4,0x0c,0xf4,0xc4,0x96,0x32,0x53, + 0x9a,0xbd,0x9a,0x46,0x88,0x74,0xd9,0xfd,0x29,0xcd,0x02,0x3e,0x98,0x28,0xfa,0x44,0xd5,0xba,0x18,0x36, + 0x31,0x0b,0xc0,0x6a,0x37,0xaa,0x6f,0x99,0x0b,0xd4,0x23,0xc3,0x8e,0x01,0x10,0x09,0xb5,0x00,0x6a,0xc6, + 0xb1,0xe7,0x08,0x8f,0x02,0xb0,0x2f,0xd7,0x6b,0xcd,0xd7,0xf2,0x2b,0x9d,0x41,0xba,0x70,0xde,0x2d,0x9c, + 0xb7,0x0b,0xe7,0x28,0xbc,0xd9,0x3e,0xb0,0x7e,0xf6,0xa4,0xae,0x62,0xa5,0xcf,0x02,0x5a,0xc2,0x48,0xd8, + 0xd8,0xda,0xc4,0xde,0x88,0x2c,0xdd,0x67,0xff,0xf6,0x99,0xb5,0x10,0x4c,0x79,0x56,0xbf,0x64,0xa5,0xf0, + 0x7a,0xfd,0x2d,0x02,0xb9,0xc8,0x0b,0x74,0x92,0xd9,0xf1,0x3b,0x56,0x8b,0xda,0x73,0xfd,0x7d,0x7a,0x2e, + 0xd1,0x00,0xe0,0xa8,0x2a,0xd4,0x0f,0x6d,0x03,0x78,0x10,0x18,0x62,0x18,0x54,0x87,0xc7,0xd9,0xfd,0xd2, + 0x0a,0xf3,0x62,0x7b,0x03,0x5a,0xc1,0x17,0xce,0xba,0x0f,0xfe,0xa5,0xed,0x16,0xba,0xc2,0x85,0xe8,0x33, + 0x02,0x7e,0xc3,0xa5,0x80,0x56,0xe5,0x95,0xa8,0xd8,0x2d,0x02,0xe2,0xd3,0x8e,0x34,0x99,0x36,0xcd,0x2f, + 0x94,0x6b,0x27,0xbc,0xf2,0x28,0xd1,0x2c,0x33,0x07,0x57,0x31,0xbe,0xc6,0xf1,0x4e,0x70,0x27,0xf2,0x20, + 0x79,0xeb,0xe8,0xe8,0x1a,0xc9,0xbc,0xe1,0xcc,0xd9,0xac,0x93,0x5b,0xd8,0xca,0xae,0xa9,0x63,0x8a,0x77, + 0xba,0x98,0x5b,0x51,0x32,0x91,0xb5,0x94,0x2a,0x34,0x9f,0xa7,0xb5,0xce,0x7c,0x3e,0x4c,0x38,0xad,0x5d, + 0x77,0x1c,0x78,0x18,0xa8,0x15,0xd2,0xcc,0x08,0xd1,0xb4,0x3c,0x92,0x39,0xdb,0x34,0x29,0x79,0x63,0xa0, + 0x0a,0x96,0x22,0xa6,0x4d,0x53,0xd5,0xf6,0x81,0x10,0x58,0xd9,0x58,0x3f,0x62,0x3f,0x51,0x95,0x46,0x7e, + 0x2e,0xf6,0x78,0xa5,0x93,0x6d,0xef,0xb2,0xa2,0x02,0xd2,0x4b,0xd1,0x19,0xa7,0xfc,0x41,0x14,0x16,0x06, + 0x10,0xd8,0x9c,0xc3,0x84,0xa0,0x3b,0x3e,0x21,0xb4,0xc0,0x3b,0xaa,0xf4,0x64,0x40,0xb5,0xfe,0x8a,0xd1, + 0x59,0x0d,0x4d,0x25,0x7e,0x50,0x78,0x14,0x34,0xd9,0x62,0x39,0x27,0x26,0x0b,0x70,0x57,0x42,0xd4,0x3f, + 0x9e,0x70,0x05,0x1a,0x4d,0x4c,0xd0,0x35,0x2d,0xd2,0x5e,0xaf,0xe9,0x8b,0x78,0x62,0xea,0xdf,0xd8,0xd8, + 0x47,0x73,0xc1,0x51,0xc5,0xf1,0xfc,0x44,0xeb,0x96,0xf2,0xcc,0x39,0x4c,0x23,0xd9,0x45,0x16,0x71,0x9a, + 0xfc,0xec,0x36,0x18,0xdd,0x6d,0x03,0x29,0x11,0x31,0x3b,0xbc,0x2b,0x78,0x8f,0x79,0x8a,0xfd,0xcc,0x53, + 0x68,0x6a,0x5e,0xed,0x16,0x48,0xed,0x40,0x35,0x28,0xd3,0x31,0x3e,0x17,0xe5,0x54,0x4c,0xbc,0x0f,0x3d, + 0xe1,0x20,0x64,0x4d,0xe7,0x09,0xcd,0x7e,0x8f,0xc6,0x31,0xcd,0x8c,0xe6,0x72,0x94,0xe9,0xbd,0xa8,0xa9, + 0xd3,0x68,0x14,0xb1,0x96,0xfa,0x34,0x2f,0x52,0xe6,0x7e,0x3f,0x47,0xef,0xd6,0x99,0xa5,0xb5,0x8d,0x76, + 0xfb,0x54,0xd8,0xe6,0xe7,0xfa,0x6b,0xa2,0xb7,0x14,0x37,0x66,0xa8,0x52,0xc3,0xb8,0x6f,0x95,0x34,0x34, + 0x40,0xbb,0x75,0x67,0xe0,0xe1,0xf5,0xe8,0xc6,0x7b,0x01,0x41,0xd7,0x9d,0xad,0x3b,0x66,0x95,0xfd,0x79, + 0x43,0x5f,0x5d,0x0e,0x6b,0x62,0x79,0x73,0x06,0x5c,0x0f,0x41,0xcd,0x34,0xf0,0xc5,0x82,0x93,0xac,0x2d, + 0xd2,0x30,0xa4,0xba,0x66,0x71,0x3d,0x71,0x00,0xef,0xa5,0xa2,0xbb,0x97,0x40,0xf3,0x15,0x36,0x6a,0xa6, + 0x8d,0x3e,0x51,0x80,0xec,0x2b,0x40,0x22,0xef,0x05,0x86,0x06,0xa7,0xd1,0x10,0x19,0xf4,0x8c,0x5e,0xd8, + 0xf1,0x92,0x59,0xc0,0x6c,0x01,0x53,0x05,0x14,0x88,0x83,0x3d,0x1f,0x2b,0xcc,0x11,0xf8,0xeb,0x1d,0x68, + 0x42,0xa1,0x63,0x55,0xc3,0xc3,0x3f,0x82,0x3d,0x52,0xd5,0xf8,0x4a,0x58,0xdf,0x12,0x28,0x9f,0xee,0x13, + 0x81,0x36,0xdd,0x40,0xfc,0x4d,0x93,0xf4,0xb0,0x7a,0x70,0x64,0x69,0x8e,0x87,0xdc,0xdd,0x84,0x80,0xe0, + 0xa8,0x3a,0x7e,0x58,0x9d,0x44,0x54,0x50,0x7d,0xac,0x58,0x6c,0xcb,0xf4,0xc7,0xb0,0x5a,0x15,0xa1,0x31, + 0xc6,0x7a,0x5f,0x59,0xda,0xa5,0x4a,0x8e,0xec,0x0b,0xd5,0x92,0xd8,0x2a,0x51,0xc8,0xd0,0xd3,0x54,0x13, + 0xf4,0xe2,0x9f,0xaa,0x04,0x9d,0x3e,0x6c,0x49,0x5a,0xfe,0x80,0xd4,0xf6,0x17,0xf9,0x40,0x61,0xfd,0x20, + 0xcc,0xdd,0x45,0xb4,0xd0,0x22,0xba,0xa5,0x22,0x57,0x09,0x28,0x3f,0xb3,0x7a,0xf8,0x0e,0x54,0xd7,0xe5, + 0x62,0x54,0x0d,0x4f,0xaf,0xb0,0x12,0x59,0x45,0x40,0x55,0x40,0x9e,0x7d,0x9a,0xd3,0xd9,0xb5,0x22,0x04, + 0x35,0x1d,0x0c,0x68,0x28,0xc4,0x29,0x89,0xa8,0x86,0xe1,0x81,0x30,0xbd,0xfa,0x8e,0x8a,0x3d,0x01,0x5e, + 0xba,0x6c,0xca,0x12,0xde,0xc2,0xdf,0x11,0xeb,0xc3,0xeb,0x33,0x9b,0x13,0xfa,0x08,0xbc,0xd5,0x59,0x59, + 0x9c,0xfd,0xa4,0x82,0x0a,0x66,0xdb,0x9e,0x8f,0xad,0xc8,0xa8,0x3f,0x04,0x80,0x1b,0x45,0x85,0xea,0x6c, + 0xdb,0x6e,0x5a,0xb2,0x11,0xe5,0xef,0x36,0x5d,0x4d,0x41,0x9f,0x7a,0xcd,0xce,0x6c,0xb3,0x02,0x91,0xac, + 0xd4,0xea,0x93,0x4a,0x15,0xe3,0x50,0x77,0xac,0x1a,0x4f,0xd9,0x10,0xab,0x30,0x9d,0x38,0x8f,0x62,0x93, + 0x57,0xe0,0xef,0xb8,0x02,0x05,0x80,0x80,0x76,0x04,0xc2,0x34,0x5f,0xa6,0x3c,0xf2,0xe2,0x73,0xf3,0x55, + 0x81,0xbf,0x63,0xfe,0x1b,0x9f,0x47,0xb7,0xf6,0xb7,0x69,0xf7,0x77,0xea,0xe3,0xcb,0x2d,0x95,0x12,0xdb, + 0xd9,0x9d,0xe2,0xdc,0x5d,0xd1,0x2a,0xfc,0x24,0xab,0x45,0xd3,0xde,0x9f,0xae,0x45,0x3b,0x56,0x76,0xcf, + 0x82,0xbb,0xe6,0x1a,0x36,0xb9,0x19,0x34,0x13,0x90,0xfe,0x46,0xca,0xd3,0x48,0x35,0x4e,0x17,0xd4,0x88, + 0xee,0xc2,0xb7,0x70,0xc9,0x9c,0x30,0xc9,0x86,0xee,0x81,0x92,0x08,0x52,0x57,0x85,0x88,0x53,0xda,0xfc, + 0x3c,0x52,0xdb,0x72,0x30,0xd6,0x04,0x32,0x46,0xa6,0x4d,0x73,0xe7,0x4a,0x7c,0xc1,0x45,0x3c,0xec,0x2c, + 0x57,0x1c,0xca,0xcc,0xfe,0xd8,0x68,0xe9,0xdb,0x62,0xfc,0x36,0x9b,0xcd,0x91,0x53,0x5e,0x15,0xdf,0x8b, + 0x89,0xc4,0x70,0x96,0xcf,0x9b,0xac,0xea,0x33,0x70,0xfe,0x33,0x1a,0xc4,0xa1,0xd3,0xf2,0x6d,0xa2,0xb8, + 0x63,0x7d,0xd1,0xc3,0x8f,0xdc,0x38,0x49,0x04,0x08,0x58,0xa2,0x0c,0x10,0x99,0x74,0x08,0x01,0x2a,0xa4, + 0x91,0xa3,0x7a,0xc4,0xa3,0xa9,0x59,0xd4,0x74,0x99,0x4f,0xb1,0x8f,0x98,0xd2,0xf7,0x52,0x88,0x20,0xa2, + 0x6f,0x12,0x2f,0x05,0xc2,0xd9,0x33,0x1a,0xec,0xc7,0x0d,0xb1,0x09,0xe6,0xf0,0x01,0xdf,0xb7,0x0b,0xdb, + 0x43,0x23,0x29,0x83,0xb4,0x92,0x3e,0x14,0xc8,0x98,0x48,0xc3,0x46,0x64,0xc6,0x35,0xf6,0xc0,0xb8,0x55, + 0xc4,0x11,0xb4,0x4e,0x36,0xd6,0x9e,0xc8,0x5b,0x64,0x84,0x3b,0x6b,0xb1,0xb8,0xe0,0x99,0xb6,0xa5,0xd2, + 0x2c,0xf3,0xdb,0x0e,0x2d,0xa4,0x45,0xf0,0x56,0xcb,0x6d,0x2d,0xba,0x54,0x49,0xe8,0x2e,0x75,0x28,0xa8, + 0x7c,0x90,0xb2,0xb8,0xa6,0x42,0x47,0x69,0x73,0x73,0x3c,0x57,0x27,0x7d,0xdf,0xb6,0x21,0xdc,0xae,0x9a, + 0xeb,0xa4,0x8a,0x32,0xbf,0xa2,0x72,0xef,0xd0,0xaf,0x27,0x37,0xa4,0xed,0x96,0x29,0x8d,0x5f,0x55,0xdd, + 0xe9,0x65,0xdd,0xed,0xe5,0x24,0xa9,0xd1,0x41,0xdb,0xd9,0x09,0x71,0x8c,0xca,0xc9,0x62,0x35,0x45,0xcc, + 0xe8,0xf2,0x47,0xc4,0x06,0xe0,0x00,0x09,0x9e,0xf2,0x7e,0xe1,0xed,0x1c,0x96,0x6f,0x51,0x43,0xbc,0x63, + 0xef,0xd4,0xb0,0x54,0x98,0xbe,0x23,0xa2,0xcd,0x6c,0xd6,0x12,0xb1,0xdb,0x98,0x96,0xad,0x78,0xcf,0x5c, + 0x86,0x97,0x21,0x5e,0x22,0x96,0x7b,0xe7,0x09,0xb6,0xdc,0x7a,0xdd,0xf8,0x4e,0xce,0xba,0x2a,0x53,0x49, + 0x0a,0xe5,0xc6,0xf0,0x94,0x80,0x66,0x9a,0x55,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0x1b,0x13,0x2d,0x17,0x3a, + 0x3f,0x14,0xb7,0xf6,0x43,0x63,0xa9,0xa2,0xe3,0xfc,0x67,0x69,0x46,0x75,0x83,0xd2,0x31,0xe2,0x82,0xb6, + 0xb4,0x42,0xe7,0x3e,0xae,0x7a,0x2a,0x66,0xc1,0x86,0x18,0x50,0x81,0x6c,0x45,0x84,0x46,0xa0,0x0e,0xbf, + 0xf3,0x48,0xc2,0xeb,0xee,0x74,0x24,0x74,0x84,0xd0,0xc2,0xc0,0x7e,0x07,0x08,0x9e,0x08,0x1b,0x6b,0xd6, + 0x38,0x6e,0xc3,0x5d,0x1e,0x8d,0xd9,0xbb,0xd9,0x79,0xbf,0x12,0x43,0x94,0x43,0xb2,0x1b,0x57,0xe3,0x8f, + 0x05,0x2d,0x04,0x08,0xe9,0xb8,0x4b,0xfc,0x9f,0xd9,0x16,0x35,0x3b,0x59,0x80,0xc3,0x06,0x47,0xb9,0xad, + 0xf2,0xa6,0x39,0x5f,0x20,0x6b,0xa4,0x45,0x06,0xee,0x08,0xca,0x45,0xc6,0x3f,0x99,0x13,0x6f,0xcf,0xae, + 0x99,0xbc,0x07,0xae,0x85,0x99,0xa3,0x97,0x6b,0x14,0x89,0x08,0xca,0x7d,0x92,0x3c,0x33,0xdc,0x81,0x7e, + 0x60,0x21,0xf2,0x28,0x85,0x5e,0x9c,0x46,0x0d,0x63,0xf0,0x1f,0x6a,0x3e,0x0e,0x08,0x1d,0xd6,0x34,0xbf, + 0x63,0x62,0xfd,0xca,0x05,0x12,0x6a,0x88,0x20,0xec,0x0b,0x18,0xf0,0x58,0xd7,0xc1,0x19,0xfc,0x84,0xd4, + 0x4d,0x0e,0x8c,0x92,0x42,0xe2,0x0e,0x26,0x5a,0x38,0xda,0x12,0x02,0x8c,0x10,0x41,0x29,0xb8,0x70,0x59, + 0x30,0x03,0x7f,0xac,0xcf,0x6f,0x22,0x9c,0xf2,0x93,0xd6,0xd9,0x8a,0xaf,0x58,0xf4,0x65,0x29,0xc6,0x89, + 0x50,0xfb,0x35,0x71,0xf9,0x2e,0x28,0x98,0xb3,0xe6,0x6a,0xd1,0x80,0x72,0xfc,0xd4,0x6c,0xe1,0xf3,0xbe, + 0xca,0x32,0xf4,0x70,0x2b,0x0d,0x8c,0x08,0xf6,0x1d,0x60,0xd4,0x30,0x88,0x74,0x8e,0x36,0x9d,0x25,0xae, + 0xa2,0xf1,0x3b,0xfa,0x13,0x7f,0xc2,0x9f,0xf0,0x28,0x0b,0xe5,0x93,0xa4,0x05,0x5d,0x43,0xa9,0xf7,0x2d, + 0xc3,0xf8,0xd3,0x02,0x70,0xef,0xf4,0xa8,0x06,0xf6,0xdf,0xc0,0x1d,0x5c,0xc4,0xab,0xac,0x59,0x85,0x3d, + 0x8c,0x7c,0x77,0x7a,0x1a,0xec,0x65,0x6a,0xf7,0x30,0x6a,0x9d,0x3f,0x57,0x96,0x54,0xd0,0xdd,0x3b,0xca, + 0xb4,0x11,0x0d,0xf1,0xaa,0xf8,0xa4,0xd9,0x0b,0x8b,0x71,0x70,0x0a,0x2f,0xe9,0x20,0x90,0x00,0x44,0xde, + 0x94,0x1c,0x65,0x9e,0x68,0xf6,0x56,0x06,0x5b,0xe2,0x9e,0x3a,0xfe,0x92,0x09,0x3a,0x0e,0x45,0xab,0xd1, + 0xa9,0x73,0x24,0xe0,0xe4,0xf7,0x99,0x56,0xa7,0xee,0xa1,0xe1,0xca,0x8a,0xf7,0xde,0x9b,0xd6,0x3c,0x93, + 0x33,0xdb,0x01,0x67,0x6f,0x25,0x06,0x75,0x30,0xb9,0x82,0x0d,0x57,0x5e,0xbf,0xa6,0xa1,0x24,0xde,0x5e, + 0xfc,0xe8,0xb1,0x29,0x50,0xc4,0x37,0x91,0xa3,0xeb,0x4b,0xf9,0x33,0x66,0x04,0x84,0xa7,0x28,0xf6,0xf8, + 0xaf,0x4a,0x24,0x68,0x9e,0xae,0x8f,0x50,0x27,0x24,0x90,0x23,0xd6,0xed,0xe5,0xe3,0xe3,0x13,0xa3,0xa5, + 0xce,0xb5,0x3f,0xf9,0x36,0x18,0x7d,0xca,0xc4,0xaf,0xec,0xb4,0x4c,0xae,0x32,0x6a,0xe3,0xb4,0xe0,0x90, + 0xeb,0xa7,0x90,0x8f,0xd1,0xcf,0x3c,0xb9,0xe4,0xd4,0x26,0x59,0xf0,0xef,0x6f,0xc9,0x35,0x7e,0xf2,0xe4, + 0x0c,0x3f,0x8b,0xe4,0x94,0x53,0x67,0xc9,0x39,0xff,0x7e,0x4c,0xae,0xf9,0xf7,0x2c,0x39,0xe3,0xdf,0xcb, + 0xe4,0x23,0x7e,0x68,0xbc,0x88,0xb8,0x71,0xba,0x4a,0x4a,0x4e,0x3e,0x4f,0x3e,0x7a,0x3d,0x78,0x27,0x93, + 0xe6,0x8b,0x09,0x89,0x41,0xd6,0x60,0x26,0x0e,0x19,0xec,0xa9,0xa4,0x23,0xa5,0x8a,0x86,0xb7,0x91,0x17, + 0x6b,0x11,0x56,0xe9,0x4c,0x3e,0xa9,0x13,0x1d,0x93,0x74,0xae,0xa3,0xc4,0xd4,0x89,0x6c,0xc3,0xcb,0xc2, + 0x04,0xfc,0xc4,0x49,0xc4,0x46,0x6c,0x44,0xf1,0xa4,0xfa,0x9d,0xb6,0xbe,0x64,0x33,0x1e,0xef,0x21,0x8e, + 0xab,0x8c,0x2d,0x11,0x36,0x6d,0xd3,0x50,0x4d,0x14,0xe5,0xe2,0x4a,0x97,0x0a,0x0d,0x88,0xb8,0x2b,0xf0, + 0xa9,0xdb,0x9d,0x8c,0x26,0xc6,0xb9,0xd0,0xec,0x9c,0x24,0x55,0xde,0x79,0x91,0xb8,0x26,0xc3,0x48,0x6d, + 0x9d,0x49,0xb0,0x0c,0x77,0x6f,0x18,0x02,0xa2,0x52,0x9c,0xd6,0x62,0x5f,0x37,0xd6,0x54,0xe7,0x56,0x38, + 0x14,0x23,0x2d,0x79,0xcd,0xd1,0xfb,0x35,0xe2,0x75,0x06,0x06,0x25,0x9b,0x3e,0x39,0x93,0x3d,0x57,0xa3, + 0xf2,0x24,0x22,0x09,0x8d,0xa9,0xdc,0xc4,0xb7,0xb7,0x61,0xe8,0xba,0x76,0x23,0x1e,0x2d,0xf3,0x30,0xbb, + 0xc5,0x6a,0x99,0x75,0xad,0x62,0xb9,0xec,0x59,0x9f,0x61,0x7e,0x35,0xc1,0x23,0xda,0x95,0x2c,0x34,0x56, + 0x75,0x73,0xea,0xa3,0x45,0x3d,0xa7,0x70,0x34,0x64,0x45,0x94,0x3e,0xf7,0x93,0xb9,0x91,0xce,0x51,0xf9, + 0x3e,0x2b,0x0f,0x3d,0x21,0x2b,0x66,0xe0,0x21,0x37,0xcb,0xa7,0xf8,0x70,0x45,0x70,0x63,0x95,0x97,0xa1, + 0x17,0x27,0xab,0x12,0xa7,0x66,0x9c,0x53,0x54,0x9a,0xf5,0x35,0x2c,0x7e,0xd4,0xcf,0xf0,0xd0,0x75,0x32, + 0x36,0x97,0xa6,0xa5,0x73,0x26,0x6e,0xed,0xd4,0x2b,0x63,0x92,0x46,0xba,0x4e,0xc4,0x29,0x22,0x64,0xa3, + 0x6b,0xd5,0x6f,0x9d,0x7a,0xbd,0x54,0x16,0x96,0x89,0xc4,0x8f,0xd7,0xa6,0x8e,0x8c,0xe6,0xc2,0x25,0x25, + 0x22,0x48,0x27,0x7c,0x33,0xf7,0xa1,0xd7,0x4c,0x7e,0x46,0xa4,0x55,0xe3,0x48,0xab,0xec,0x01,0x91,0x30, + 0x10,0x3d,0x00,0x73,0xdf,0xa1,0x42,0x93,0xec,0x07,0x3e,0x9a,0xc2,0x68,0xa3,0x56,0xc9,0x69,0x4b,0x29, + 0xe3,0xfa,0x9f,0x40,0xbc,0x5a,0x12,0xb0,0xaf,0xd7,0xf3,0x90,0x5d,0x76,0x3a,0x45,0xdb,0x93,0xc4,0x54, + 0x99,0x04,0x21,0x43,0xbf,0x42,0x8e,0x9d,0x32,0x4d,0xaa,0x70,0xa5,0x66,0xce,0x75,0x22,0xe4,0xd5,0xe8, + 0x73,0xd3,0x61,0x6f,0xc9,0x71,0xe6,0xcf,0xe9,0x60,0x20,0xa9,0x5c,0x45,0xdc,0x84,0x53,0x27,0x05,0x8d, + 0x7a,0xa3,0x39,0x7b,0x05,0xf8,0x43,0x18,0x60,0x75,0x92,0xb8,0x2e,0x85,0xba,0xcc,0x5a,0xfb,0xa3,0xa0, + 0x31,0xeb,0x0c,0xd8,0x05,0x70,0x31,0xb7,0x7c,0xed,0xd5,0xe3,0xa2,0xfa,0x1d,0xd3,0x04,0xc0,0x9a,0x12, + 0x57,0x30,0x4f,0xaf,0xc7,0xb6,0x20,0x4d,0x45,0x4c,0x3c,0xe9,0x7b,0x09,0x9c,0xe6,0x6b,0xe4,0x3a,0x03, + 0xcd,0x3c,0xe0,0x0b,0xfd,0xcf,0x65,0x26,0x95,0xae,0x79,0xbd,0xbe,0x7f,0x70,0xa0,0x3b,0xa6,0xa3,0xb1, + 0xc1,0xf1,0xfd,0xcf,0xb4,0x20,0x57,0x50,0x70,0x55,0xe6,0xcb,0x08,0x98,0x6c,0xf7,0x50,0xd9,0xf6,0xc6, + 0xad,0x11,0xc6,0xee,0xfb,0x8d,0x83,0x3d,0xa3,0x5d,0xd8,0xd0,0x4c,0xce,0x69,0xeb,0x38,0x11,0x74,0x17, + 0x6d,0x78,0xa6,0xa5,0x55,0xe8,0x30,0x52,0x4b,0x12,0x49,0xb8,0x5e,0x27,0xbc,0xcc,0x08,0xf3,0x4b,0x64, + 0xbe,0x46,0xe9,0xc6,0x10,0x00,0x4f,0xe3,0xfd,0x98,0xf0,0x7e,0x7a,0x4e,0x14,0x31,0x21,0x2a,0x6a,0xd9, + 0x20,0x8f,0x51,0x99,0x94,0x4c,0xc1,0x3f,0x01,0x06,0x51,0x1c,0x78,0x98,0x48,0xdb,0xb9,0x67,0xc1,0xe9, + 0x31,0x59,0x08,0x4c,0x8d,0x5c,0x50,0x88,0xfc,0xc0,0x67,0x0c,0x91,0x96,0xcc,0x7f,0x07,0x2c,0x8c,0xee, + 0x14,0xc8,0x20,0x0b,0xa3,0x12,0x79,0x01,0x37,0xe1,0x51,0x58,0xc8,0xb1,0xc4,0x22,0xe2,0xa5,0x21,0x16, + 0x23,0xd6,0x76,0xe8,0x2f,0xb8,0x2e,0x6d,0x69,0x52,0x0c,0xb5,0x73,0xa0,0x10,0x85,0x23,0xea,0x1f,0x11, + 0x7f,0xd1,0x18,0x7f,0x93,0x63,0xf3,0x05,0xa8,0xa9,0xb3,0x74,0xf2,0xd1,0x1e,0xe2,0x5c,0x28,0xe6,0x42, + 0xdd,0x32,0x1b,0x5a,0x55,0x43,0xf6,0x97,0x42,0x38,0xcf,0x1c,0x0e,0x68,0x45,0xe0,0xb2,0x05,0x9d,0x6d, + 0xd7,0x2e,0xa2,0xa3,0x1a,0x7c,0x42,0xb3,0x46,0x07,0x99,0x10,0xb7,0xf0,0x0a,0x77,0xc5,0x9a,0x10,0x66, + 0x38,0x4d,0x38,0x77,0xb4,0xd4,0x8a,0x09,0x5f,0x13,0xdc,0x93,0xc8,0xff,0x55,0x34,0xfa,0x96,0x4e,0x83, + 0xb9,0xa2,0x0d,0x05,0xf2,0x6c,0xbd,0xc6,0xeb,0x44,0x5e,0x0f,0x2d,0x1d,0x5b,0x6f,0x36,0x10,0x9c,0x6b, + 0x5c,0x68,0x3a,0x64,0x3a,0x9c,0xce,0xfb,0xa0,0xa7,0xad,0x49,0xc4,0x91,0xae,0x07,0xac,0xfb,0x9c,0xb6, + 0x7b,0x1a,0xb5,0x84,0xe6,0x13,0xc2,0x73,0xf3,0x93,0xe4,0x55,0x38,0xa7,0xce,0x30,0x29,0xa0,0xa9,0x38, + 0xa0,0x2b,0x1e,0x2b,0xc1,0xc6,0x43,0x1c,0x64,0xe6,0x55,0x21,0x87,0x6b,0x74,0x39,0xf2,0xca,0xd3,0xbb, + 0x62,0xf6,0xf5,0x1d,0x8e,0x2c,0x9a,0x72,0x36,0x41,0x21,0x54,0x98,0x0e,0x85,0xf0,0xf5,0x0c,0x0e,0x56, + 0x74,0x76,0xaa,0x95,0x33,0x1b,0xda,0xd2,0xf9,0xcd,0xfc,0x13,0x57,0xcd,0x3c,0x0b,0xfb,0x14,0x8e,0x9c, + 0xac,0xca,0x08,0xa9,0x14,0x36,0x01,0x41,0x8d,0x3c,0x30,0x7c,0x71,0x66,0x22,0x65,0x68,0xd7,0xce,0x60, + 0x0b,0x33,0x93,0x4d,0x20,0x9d,0x9c,0x82,0x90,0x62,0xa9,0x35,0x7e,0xe9,0x45,0x3c,0x1e,0x5e,0x17,0xca, + 0x9f,0xf6,0x14,0x01,0x8e,0x68,0xe3,0x69,0x10,0x58,0x52,0x39,0xe6,0x4d,0x4b,0xcc,0xeb,0x92,0x49,0x05, + 0x6e,0x68,0x19,0x6d,0x76,0x7d,0x4c,0x9f,0x19,0x2d,0x65,0x66,0x15,0x94,0x1d,0x03,0x85,0x0f,0x95,0x2f, + 0x36,0xd5,0x64,0xed,0x87,0x4a,0x24,0x9e,0xf2,0x15,0x34,0x03,0x79,0xf2,0x18,0xce,0x4f,0x23,0x9b,0x92, + 0x54,0x63,0x1f,0x6d,0x6c,0x4b,0xe3,0x2c,0x2c,0x64,0xf6,0x11,0x9e,0xb5,0xfa,0x91,0x80,0x2b,0x27,0xfa, + 0x84,0xd0,0x02,0x43,0x19,0x9a,0xbd,0xf0,0xe0,0x5e,0xe2,0xa7,0x4e,0xac,0xaa,0x44,0xdc,0x2f,0x82,0xcb, + 0x55,0xb6,0x6f,0x4f,0x85,0x7d,0xa2,0xf4,0x41,0x25,0xec,0x85,0x17,0xe3,0x80,0x5e,0x2e,0x98,0xdf,0x28, + 0x55,0xaf,0xdb,0x47,0xaa,0x6e,0x8e,0x08,0x6d,0x11,0x32,0xb2,0x56,0x4f,0xf1,0x4c,0x59,0xea,0x33,0x9e, + 0x32,0x92,0x9a,0x38,0xac,0x45,0x7c,0xfc,0x0a,0x3e,0xaf,0xce,0xd2,0x1a,0x71,0xf4,0x35,0xf6,0x22,0x12, + 0xca,0x28,0x2f,0xdb,0x3c,0x4c,0xca,0x46,0x70,0x29,0xcc,0x1a,0xc2,0x49,0x02,0xb8,0x4f,0x89,0xe0,0x97, + 0x3e,0x44,0xb4,0xa2,0x73,0xc9,0x78,0x51,0x79,0xf2,0xe7,0xbc,0x45,0x50,0x35,0xf4,0x35,0x08,0x8e,0xd4, + 0x58,0x3f,0x58,0xed,0x1b,0x50,0x71,0xab,0x40,0xce,0xfa,0x76,0x44,0x39,0x03,0xdf,0x46,0xdc,0xac,0x5f, + 0xb2,0xdd,0xaf,0xba,0xff,0xd8,0xc5,0xc5,0x01,0x80,0xdc,0x14,0x92,0x0f,0x82,0x0d,0x9f,0x90,0x25,0x94, + 0x2e,0x82,0xb2,0x58,0xae,0x17,0xb0,0xfe,0x53,0xb8,0x33,0x8a,0x8e,0xcc,0x17,0xd5,0x98,0x28,0x9b,0x70, + 0x9e,0xd4,0xd1,0xf8,0xf8,0x23,0x8d,0xec,0xa4,0x63,0x65,0x3b,0x77,0xf1,0xac,0x88,0x7c,0x70,0x11,0x68, + 0x30,0x7d,0x40,0x36,0x88,0x44,0x23,0x62,0x27,0xd8,0x42,0x97,0xbe,0x2d,0x74,0x46,0x73,0x54,0x1e,0xd7, + 0x27,0x51,0x9f,0x07,0x2c,0x91,0x35,0x44,0x15,0xce,0x8e,0x89,0x82,0xb2,0xd1,0x44,0x4e,0x3a,0x66,0xf9, + 0x93,0x68,0x6c,0x9c,0xbc,0xbe,0x39,0xa0,0x11,0xfe,0x1c,0x52,0x8d,0x79,0x38,0x51,0xb0,0x3b,0x61,0x8f, + 0x7c,0xe2,0x13,0x89,0x40,0xa3,0x91,0xd1,0xcc,0xfc,0x4c,0x38,0x11,0xbb,0x1c,0xe8,0xe7,0x63,0xb8,0x62, + 0xdd,0xda,0xde,0x84,0xf2,0x44,0x93,0x8d,0x9b,0xaf,0xf4,0xad,0x00,0xb4,0xf7,0x3d,0x85,0xe0,0x8c,0xd6, + 0x2c,0x8a,0x61,0xf4,0x38,0x46,0x15,0xe3,0x4e,0x05,0x88,0x64,0x25,0xe6,0x0c,0xf2,0x55,0xf8,0x11,0x38, + 0x2f,0xfe,0x99,0xfe,0x4a,0x9b,0xdd,0x0f,0xa4,0xb9,0x98,0x10,0x6e,0x69,0xc5,0x64,0xbc,0xd6,0x13,0x28, + 0x23,0x99,0xd8,0x98,0x80,0x4d,0x95,0xf5,0x67,0x50,0x62,0xae,0x95,0xb8,0xef,0x4b,0x80,0x72,0xb0,0x97, + 0xca,0xc0,0xe8,0xef,0x69,0x60,0x3a,0x8b,0x46,0x1d,0x6e,0xdb,0xd0,0xba,0x68,0xd1,0x4f,0x8c,0x65,0x7c, + 0x5e,0xb1,0xcd,0xc6,0x9f,0x54,0xab,0x6c,0x33,0xed,0x84,0x28,0x2c,0x88,0x4a,0x96,0x1f,0xba,0x09,0x87, + 0xa2,0x9e,0xac,0xe3,0x13,0x95,0x79,0xf6,0xea,0x30,0x0f,0xe1,0x6d,0xcf,0xb0,0x30,0xea,0xb3,0x0b,0xd5, + 0xe7,0xc8,0x74,0x34,0x4b,0xf2,0xe1,0x9d,0xcb,0x82,0x8e,0x53,0x04,0xc0,0x92,0xa7,0x61,0x51,0xb3,0x70, + 0xe8,0x9c,0x48,0xa8,0xf4,0x1c,0x31,0x62,0xeb,0x25,0x82,0x2b,0x10,0x96,0x59,0x41,0x54,0x96,0xd7,0x6f, + 0xb3,0x3a,0xab,0x88,0x04,0xa2,0x6c,0x4a,0x1d,0x6b,0x1c,0x42,0x59,0xec,0x1b,0xfc,0x66,0x9e,0x36,0x08, + 0x96,0xa1,0x3f,0xc6,0x77,0xd8,0x84,0x6d,0xac,0x91,0x33,0xf1,0x9a,0x3c,0x0d,0x73,0x4f,0x64,0x67,0x11, + 0x50,0x1d,0x80,0xd6,0x1c,0x13,0x4f,0x34,0xa5,0x6f,0x73,0x1c,0x32,0x51,0xac,0x9b,0x29,0x7b,0x6b,0x13, + 0xed,0xe5,0x2a,0xa1,0x4f,0x4a,0xf9,0xc4,0x93,0x8f,0x12,0x3c,0x84,0x33,0xcf,0x7f,0xa5,0x0a,0x73,0xcb, + 0xe2,0xe4,0x70,0x18,0x2b,0x89,0x6d,0x2a,0xab,0x2c,0x3f,0x2f,0x5e,0x1b,0x37,0x69,0x9a,0x18,0x82,0x0c, + 0xc6,0x02,0x06,0xd1,0xb1,0x28,0xb3,0xa1,0x2f,0x0c,0x2a,0xf3,0x4c,0xb4,0x39,0xce,0x95,0xcb,0xb1,0x5b, + 0xee,0xc1,0x84,0xb7,0x9d,0x66,0xe3,0x5c,0x01,0xda,0x82,0x44,0xf9,0xcc,0x35,0xf4,0x11,0x5b,0x36,0x1f, + 0xb2,0x01,0x43,0x21,0x28,0x8e,0x76,0x3f,0xf7,0x70,0xb3,0x11,0xe2,0x7c,0x45,0xc3,0x87,0x3d,0x94,0x87, + 0xd2,0x3c,0xa7,0x0d,0x3f,0x90,0x9d,0x95,0x1d,0xb0,0xb6,0xb6,0x5e,0x2d,0xb3,0xca,0x9c,0x3d,0x28,0xa7, + 0x53,0x98,0xf8,0x60,0x8b,0x54,0x7e,0x37,0x06,0x14,0x37,0xed,0xf7,0xc4,0xf8,0x9d,0x74,0x8d,0xb0,0x11, + 0xe1,0xcd,0x91,0x20,0x38,0xcd,0x84,0x03,0x35,0x1e,0x71,0x20,0x1a,0xeb,0x2c,0x9d,0x67,0x26,0xc5,0x1e, + 0x8d,0xa5,0x51,0xe2,0x97,0x27,0xbb,0x62,0x22,0x09,0x09,0x01,0xfb,0x5e,0x22,0x40,0x4d,0x03,0x19,0x77, + 0x8f,0x91,0xee,0x96,0x3c,0x4b,0x13,0xaf,0x84,0xe8,0x8a,0xa4,0x2b,0x44,0x1d,0x17,0x31,0xab,0xdc,0xb7, + 0xcc,0xe3,0xc4,0x37,0xc1,0xf6,0x45,0x34,0x2a,0x99,0xaf,0x51,0x09,0x1b,0x27,0xd9,0x05,0xc1,0xf9,0x4d, + 0x72,0x40,0x6b,0xd2,0x4e,0x7b,0x70,0x80,0x05,0xd2,0x81,0xbe,0x90,0xe0,0xfc,0xe5,0xdc,0x1e,0x2c,0x8c, + 0xc4,0x5e,0x61,0x8c,0x9e,0x33,0xff,0x86,0xbd,0xe6,0xe1,0x75,0xdc,0x9d,0x34,0x3a,0xb9,0x42,0x6f,0x01, + 0x93,0x17,0xd0,0x46,0xb7,0xcb,0x68,0x6b,0x2c,0x8e,0x64,0xe3,0x36,0xcb,0x71,0xc3,0xa9,0x27,0x09,0x42, + 0xac,0x6c,0x5b,0x14,0xbc,0xc9,0x6c,0x88,0x93,0x53,0xc4,0x0b,0x68,0xd9,0x5e,0x3e,0x6e,0xd9,0x47,0xb0, + 0x8b,0x22,0x4e,0xf3,0x0e,0xb9,0xc0,0xde,0x99,0xde,0x57,0x1f,0xb2,0x16,0x65,0xd2,0x5d,0x9d,0xb1,0xef, + 0x3a,0xff,0xcd,0xfe,0x61,0xbc,0xad,0xab,0x19,0xfb,0x4e,0xff,0x9d,0xd2,0x50,0xd5,0xa9,0xdd,0xd0,0xc6, + 0x51,0x90,0x40,0x62,0x27,0xc0,0xf8,0x26,0x8e,0x42,0x21,0x11,0xb0,0xd9,0x6d,0xb5,0xd1,0xe8,0xce,0x13, + 0x2b,0x3e,0xef,0x98,0x08,0xb0,0x9a,0x94,0xe1,0x14,0x0a,0x18,0x06,0xcf,0x53,0xc6,0x75,0x5d,0xb8,0x34, + 0x81,0x7a,0x61,0xf6,0xce,0x96,0x8e,0x9a,0x2f,0x78,0x0c,0x49,0xd9,0x96,0xbd,0xd1,0xa8,0x86,0x00,0x99, + 0x49,0x80,0x17,0xa0,0xc5,0x4a,0x66,0xf0,0x7c,0xd2,0xe6,0xc5,0x96,0xae,0x81,0x2d,0xf1,0x77,0x73,0xf6, + 0xd8,0x62,0x14,0x03,0x87,0x35,0xfc,0xe2,0x96,0x10,0xdb,0xc2,0x73,0x4d,0x26,0x0f,0xef,0x4c,0x69,0x88, + 0x55,0x09,0x97,0xad,0xcc,0xea,0xfd,0x57,0x7c,0xe7,0xa5,0xe7,0x05,0x90,0xf9,0x9e,0xdd,0x37,0x22,0x64, + 0x3e,0x82,0x9e,0x20,0x7e,0xc5,0x7b,0xde,0x25,0xa8,0xc2,0x7f,0xa3,0x03,0x98,0x4b,0xc1,0xb4,0x8c,0x9f, + 0x88,0xe0,0xd0,0x4f,0x08,0x8e,0x8c,0xdf,0x93,0x58,0x3f,0xf8,0x66,0xfd,0xed,0xe5,0xcf,0xc6,0xcd,0x38, + 0xdb,0x0b,0x10,0xf6,0x26,0xce,0x62,0x70,0x86,0x9e,0xcd,0xf7,0x4b,0x1f,0xc0,0xb6,0x00,0xa5,0xef,0x70, + 0xa4,0xc9,0x42,0xe8,0x40,0xda,0x9d,0xaa,0x74,0x2a,0xbb,0xfc,0x41,0xc9,0x3b,0x94,0x08,0xdd,0x04,0x75, + 0x62,0xe3,0x81,0xf4,0xe2,0x8b,0xdd,0x20,0x20,0xc0,0xff,0xbd,0x84,0x7a,0x11,0x29,0xfa,0x2d,0xbc,0x5d, + 0xc9,0x4a,0x9a,0x6e,0x6b,0x82,0x2e,0x83,0x60,0xd4,0x12,0xcf,0x65,0x3a,0x26,0x40,0xd8,0xe8,0xd0,0xbb, + 0xa8,0xae,0xf1,0xab,0xe3,0x0d,0xdc,0x0b,0xd0,0x6d,0x53,0x77,0x7f,0xd8,0x29,0xb7,0x1e,0xd4,0x97,0xe7, + 0x41,0x1c,0x2c,0xd2,0xe6,0x82,0x0d,0x8d,0xc6,0xf2,0xb8,0xa5,0x2d,0x7a,0x94,0x99,0xe8,0x3e,0xdb,0x1a, + 0x4e,0x53,0xa3,0x8d,0xba,0xf7,0xdb,0x2a,0xab,0xae,0xdf,0x65,0xd0,0x43,0x97,0x72,0x0f,0xcd,0x6d,0xb1, + 0x34,0xa7,0xf9,0x65,0xd0,0xa7,0x4a,0xf9,0xb1,0xb3,0x57,0xd8,0xe6,0xb2,0xca,0x66,0x1d,0x1f,0x21,0xe3, + 0x79,0x9d,0xfb,0x6e,0xdc,0x06,0x4c,0x81,0x21,0xe0,0xa0,0x5d,0xc2,0x72,0x9e,0xbe,0xad,0x47,0x5d,0xb5, + 0x4a,0xc9,0xd6,0x50,0x2b,0xfe,0xc5,0xe1,0x8f,0x5f,0x1c,0xb2,0x38,0x60,0xf1,0xa8,0x09,0xf9,0xd8,0xb5, + 0xff,0xbc,0x78,0x5a,0x56,0xbd,0xb5,0xe0,0xaf,0x45,0x19,0x39,0xe1,0xe3,0xc1,0x80,0x93,0x18,0x23,0x9b, + 0xba,0x09,0x3e,0xe4,0x21,0xf7,0x00,0xf7,0x27,0x11,0x62,0xbb,0x18,0x5b,0xa0,0xf1,0x70,0xd4,0xd3,0x2f, + 0x0b,0x99,0x64,0x3f,0xea,0xa3,0xdf,0xf7,0x0f,0x67,0x9d,0x9f,0x33,0x1e,0x6b,0xb4,0x71,0x2a,0x47,0x62, + 0x21,0x8a,0x80,0x9f,0xbb,0xf2,0x15,0x2c,0xa1,0xc8,0x48,0xf8,0xa4,0x05,0x0a,0x6d,0x05,0x8b,0xa8,0xe0, + 0x8d,0x18,0x56,0x7a,0xce,0x45,0x18,0x9a,0x38,0x86,0xbc,0x62,0x5d,0x1d,0x74,0xb5,0xec,0x57,0xf6,0x99, + 0x32,0x56,0x94,0x08,0xeb,0xba,0xf5,0x7a,0x9e,0xb3,0x43,0x23,0xfd,0x10,0x37,0xc8,0x03,0x06,0x5d,0x81, + 0xd1,0x3c,0x84,0x54,0xe9,0x0d,0x42,0x65,0x5d,0x94,0x73,0xe2,0xd4,0xb9,0x86,0x96,0xec,0x09,0xe3,0xf4, + 0x13,0x40,0x19,0xb7,0x53,0xb4,0x4c,0xce,0xb7,0xdf,0xcf,0x44,0x40,0x61,0xb5,0xcb,0xe2,0x24,0x87,0x8d, + 0x95,0x13,0x09,0x91,0x3f,0x48,0xaa,0xd1,0xde,0x5e,0x4e,0x5b,0x17,0x16,0x8c,0xf9,0x89,0x26,0xb4,0xc3, + 0x14,0x87,0xbd,0xf3,0xb4,0xf4,0x3c,0x4f,0x9e,0x69,0x98,0xd4,0x31,0xf2,0x3c,0x87,0xaf,0xf5,0xba,0xe9, + 0x26,0xb5,0xe7,0xdd,0x40,0xb2,0x70,0xc3,0x09,0x62,0x74,0x4c,0xe1,0xb5,0xd7,0xc8,0x43,0x9d,0xfc,0x9e, + 0x6d,0xd7,0xea,0x22,0x0b,0x80,0x03,0xa3,0x12,0x5b,0x8d,0xe0,0x62,0x64,0x53,0x62,0x4e,0x64,0x07,0x91, + 0xc2,0x9a,0xc9,0x2a,0x44,0xc2,0x52,0x25,0xb5,0x70,0xf3,0x13,0xfc,0x54,0x63,0x9a,0x35,0x9a,0xe2,0x1f, + 0x21,0xf8,0x4a,0x8c,0x23,0xee,0xf7,0x60,0x74,0xb5,0x0e,0x34,0x50,0xb8,0xf3,0x40,0xe5,0x30,0x9a,0xc0, + 0x49,0x40,0x3f,0x6e,0x5f,0x89,0x2c,0x7a,0x3a,0x18,0xac,0x0c,0x50,0x13,0xef,0x22,0x5f,0xc3,0x67,0xad, + 0xef,0xdb,0xbc,0x20,0x9a,0x9c,0xbf,0x99,0xdb,0x6f,0xb0,0x85,0xe7,0xad,0xa8,0x36,0xb3,0x3e,0xd9,0xb8, + 0x18,0xe7,0xcd,0x7d,0x93,0x3c,0x6a,0x6b,0x8e,0x71,0x04,0xa6,0x5a,0x69,0x72,0x33,0x2a,0xc7,0xdf,0xc1, + 0x5f,0x4a,0x92,0x03,0xc8,0xa0,0x67,0x21,0x3b,0x05,0xac,0x6c,0xe4,0x0f,0x2e,0x80,0x38,0x82,0x3a,0x7c, + 0xe0,0xad,0x2d,0xae,0x3a,0x2d,0xae,0xb8,0xc5,0xee,0x24,0xe8,0x96,0x99,0x0d,0xb7,0xf3,0x5d,0x47,0x13, + 0xf6,0x3a,0xa3,0xaf,0x78,0xda,0x83,0x55,0x21,0x13,0x93,0xd1,0x3f,0x08,0x62,0xdb,0x06,0xbb,0xbf,0xb7, + 0x70,0x5c,0x5f,0xd4,0x9d,0x8e,0x39,0xae,0xde,0x9e,0x23,0x31,0xfb,0xd8,0x52,0x99,0x86,0x39,0x9b,0xe2, + 0x46,0x43,0x1d,0x17,0x9c,0x75,0xe2,0xb9,0x7b,0x4b,0x2e,0xf3,0x48,0x15,0xc7,0x04,0xef,0x04,0x83,0xc3, + 0x2a,0xbd,0x7a,0xc5,0x64,0x54,0xc9,0xe4,0xd4,0x5e,0x30,0x0c,0xf6,0x7c,0x7b,0x90,0xd2,0xaf,0x06,0xb2, + 0x02,0x09,0xbb,0x3a,0x0c,0xa2,0x88,0xf6,0x87,0x2c,0x33,0x71,0x4a,0x8d,0xc7,0x29,0x39,0xc0,0xa4,0x83, + 0x92,0x6b,0x8d,0x74,0xdc,0xfa,0x6d,0x13,0xd8,0xef,0xb3,0x6d,0xe9,0x73,0x26,0xa0,0xc3,0x3f,0xda,0x6e, + 0xb2,0x64,0xc3,0xc8,0x32,0x2c,0x24,0xd4,0x86,0x2e,0xaf,0x8d,0x23,0x2b,0x18,0x47,0x56,0x72,0x61,0x02, + 0x1f,0x03,0xae,0x07,0x7c,0x0d,0x8a,0x8c,0x0b,0x14,0x80,0x33,0x9e,0xf4,0x5c,0x21,0xb2,0xd0,0xa3,0x80, + 0xb6,0x0d,0xb7,0x79,0xf6,0xc3,0x86,0xb1,0x96,0xb8,0x4e,0xb5,0x89,0xd0,0xbc,0xb8,0xc8,0xaa,0x9c,0xe3, + 0x6d,0xd3,0x0c,0x65,0xa1,0x20,0x43,0x8b,0x04,0x33,0xe3,0x29,0x20,0x09,0x9a,0x39,0x60,0x3e,0x89,0x1a, + 0xc3,0x68,0x26,0x89,0xff,0x09,0x0b,0xc7,0xe7,0x49,0xd5,0x49,0x62,0x7e,0x4c,0x8b,0x86,0x10,0x0e,0xa1, + 0x55,0x20,0x61,0x2d,0xf4,0x5c,0xbb,0x4b,0x30,0xb5,0x38,0x8f,0xd2,0x64,0x0e,0x0a,0x7f,0x22,0xcc,0x4c, + 0x4a,0xa0,0x0f,0x49,0x29,0xf8,0xb6,0x51,0xf8,0xaa,0x58,0xaf,0xdf,0xc2,0xa0,0x43,0x4b,0xbf,0x21,0xae, + 0x90,0x27,0x5d,0xcc,0x08,0xd8,0x75,0xbe,0x57,0xf1,0x24,0xc2,0xee,0x2b,0xd9,0x16,0xbf,0x01,0x12,0x1f, + 0x23,0xb8,0x1d,0x02,0xd3,0xda,0x88,0xe3,0xaf,0xde,0x85,0x59,0xae,0x0a,0x64,0x46,0xf1,0x2f,0xf4,0x5d, + 0x84,0x40,0x9b,0x9d,0x42,0xc8,0xf4,0x56,0xe1,0x3b,0xdf,0x40,0xe0,0x5f,0x15,0x3b,0xdd,0xe5,0x1c,0x20, + 0x7b,0xeb,0x43,0x16,0x95,0x24,0x01,0x51,0xda,0xe5,0xd5,0x8c,0xf6,0x47,0x4d,0x7b,0x25,0x2b,0x02,0x09, + 0x3b,0x16,0x3c,0x79,0xf9,0xe8,0xc9,0x63,0x6d,0x2b,0x2d,0x3c,0xfe,0x38,0x68,0x2a,0x1a,0x4b,0x0c,0x25, + 0x7f,0x2b,0x30,0x3a,0x7b,0xbd,0x59,0x7b,0xa8,0x5f,0x2a,0x1d,0x42,0xa0,0x5d,0x84,0x7b,0x41,0x54,0xe3, + 0x2c,0xa5,0x72,0xa8,0xb7,0x18,0xeb,0xe7,0x58,0xea,0x75,0x35,0x34,0xf9,0x67,0xba,0x6d,0x27,0xa5,0xc1, + 0xfd,0x1d,0xad,0x56,0x24,0xab,0xb1,0xe6,0x0b,0x54,0x15,0x57,0x12,0xf5,0x8d,0x5d,0xec,0x67,0xa8,0xc8, + 0x2b,0xf8,0xb7,0xbd,0x84,0xd7,0xc4,0xfb,0x27,0x3f,0xbf,0x7f,0xf8,0xf6,0xc9,0xc3,0xd6,0xa8,0x29,0x7d, + 0xe9,0xce,0x52,0x3d,0x3b,0x1c,0x53,0x33,0xcf,0x96,0x17,0x86,0x74,0xf2,0x6d,0x01,0x1b,0x22,0xbe,0xcb, + 0xe5,0x73,0x22,0x22,0xa6,0x39,0xe1,0x1e,0x58,0xd6,0xa4,0xe7,0xa9,0x20,0x47,0x65,0xba,0xd2,0xb9,0xe3, + 0x45,0x28,0x08,0x58,0x8a,0x8c,0xb2,0x9e,0x2b,0x60,0x6c,0xb6,0x32,0x0d,0x27,0xbb,0x07,0x9b,0x9e,0x65, + 0xf0,0x20,0xe1,0xdb,0xce,0x7e,0x34,0xa4,0x1b,0x07,0xdf,0x49,0xf5,0x5e,0x91,0x4d,0x99,0x41,0xfe,0xed, + 0x31,0x0c,0xd8,0x6d,0xa5,0xe6,0x15,0x58,0x6e,0x01,0xb9,0x2c,0x98,0xa3,0x6e,0xa1,0x54,0x17,0x8a,0xac, + 0x6e,0xa5,0x97,0xd6,0x37,0x77,0xa2,0xc1,0x8f,0x82,0x90,0xea,0x88,0xc5,0x2b,0x5d,0xf2,0x32,0x1a,0x01, + 0xe3,0xf6,0xb1,0x47,0xc2,0xc5,0xf1,0x25,0x97,0x53,0xf6,0xc6,0x25,0xb0,0x7d,0x9a,0x69,0x82,0x8c,0x61, + 0x8f,0x2d,0xe9,0x85,0x68,0xb2,0x66,0xf4,0x1c,0x2c,0xc3,0x2f,0x5f,0x28,0x4d,0xce,0x39,0x95,0x5c,0xd2, + 0x62,0x94,0x78,0x56,0x84,0x2f,0x6a,0x78,0xb3,0x41,0x4a,0x38,0x7e,0x05,0x61,0xd3,0x4b,0xd6,0x1f,0x11, + 0xf1,0x3f,0xd2,0x58,0x87,0x2d,0x93,0x21,0x0c,0x3a,0xe5,0xb8,0xb1,0x39,0xc6,0xcc,0x95,0x64,0x44,0x16, + 0xb3,0x84,0x32,0xac,0x93,0x57,0x40,0x01,0x2f,0x33,0x96,0x20,0x2a,0xb8,0x66,0xe5,0x30,0xc0,0xcc,0x2e, + 0xb9,0x60,0xcf,0x1d,0x04,0x62,0xf5,0xa5,0x6a,0x9c,0xfa,0xae,0x60,0x52,0xfb,0xcb,0xfa,0x73,0xb6,0xe5, + 0x24,0x17,0xb2,0x5d,0x96,0xe7,0xb0,0x91,0x69,0xb3,0xf0,0x0b,0xc2,0xed,0x72,0xc9,0x03,0xb5,0x7f,0x91, + 0xe4,0x7b,0x87,0x1b,0x8f,0x6c,0x62,0xd4,0xb9,0x7b,0x28,0xaa,0xd0,0x39,0xfe,0xac,0xd8,0x42,0x9c,0x58, + 0xb2,0x29,0xfd,0x5f,0xd2,0x7f,0xe3,0x90,0xd9,0x23,0x44,0xc1,0xe6,0x62,0x93,0xdc,0xcc,0x8f,0x8b,0x45, + 0x27,0x62,0x1d,0x7d,0xf1,0xb5,0xd8,0x76,0x7f,0x7d,0x9f,0x86,0x2c,0xf2,0xd1,0xdd,0x43,0xb7,0x27,0x27, + 0xd1,0x17,0x5f,0x76,0x0a,0x4c,0x5a,0x05,0xe6,0xd1,0xd7,0x7f,0xef,0x14,0x98,0xb7,0x0a,0xac,0xa2,0x2f, + 0xff,0xd1,0x29,0xb0,0x6a,0x15,0x38,0xbc,0xff,0x25,0x38,0xc6,0xf5,0x9a,0x1e,0x78,0x33,0xfb,0x5d,0xdc, + 0x3b,0x8c,0xfa,0x33,0xf6,0x91,0x31,0x23,0xe6,0x6a,0xbd,0x5e,0x46,0x37,0xf5,0x55,0xae,0x3d,0x06,0x26, + 0x29,0xd5,0xfa,0xc5,0x97,0x31,0x0c,0x0f,0xc4,0x68,0x76,0x24,0x49,0x5f,0xc7,0x75,0x27,0xe9,0xeb,0xbf, + 0xc7,0xf3,0x4e,0xd2,0x97,0x07,0xf1,0x72,0x6f,0xaf,0x95,0x72,0x18,0x2f,0xf7,0xf7,0x5b,0x9f,0x1d,0xc6, + 0xd3,0x76,0x99,0xaf,0xbf,0x88,0xa7,0xed,0x32,0x87,0xf7,0xbf,0x88,0x67,0xed,0x42,0x87,0xf7,0xbf,0x8a, + 0x67,0xfb,0xfb,0xa0,0xcc,0x64,0x42,0xdc,0x9e,0xbb,0x4c,0x68,0x38,0x6a,0xa1,0x59,0xae,0xd1,0x25,0x87, + 0x97,0x14,0xe7,0x97,0x70,0x91,0xd8,0x7b,0x1e,0x2e,0x21,0x56,0xd9,0xdf,0x8f,0x46,0x8b,0xc1,0xe0,0x4c, + 0xc7,0xf0,0x5d,0x44,0xac,0x21,0x80,0xa1,0xbf,0x08,0x5c,0xad,0xfd,0x48,0x39,0x0e,0x19,0x8a,0x98,0x65, + 0x37,0x97,0x46,0x3b,0x10,0x8b,0x1b,0x51,0xb1,0x78,0xe5,0x7b,0x0b,0xc6,0x70,0x93,0xbf,0x00,0x97,0x83, + 0x4b,0x40,0x1c,0x7c,0xa5,0x3e,0x7c,0x95,0x49,0x0f,0xbd,0x9f,0x38,0xc9,0x5d,0x10,0x06,0x22,0xe0,0x7c, + 0x60,0xee,0x25,0xb9,0x7b,0x4a,0xa9,0x77,0x89,0x38,0xb9,0x1b,0x44,0xe1,0x5d,0x8e,0x42,0x1f,0x8c,0xda, + 0x59,0xb6,0x2f,0x45,0xe4,0x4a,0xa9,0xc0,0x66,0x14,0x04,0x1b,0x1b,0xc8,0x96,0x7d,0x89,0x5f,0xe9,0x39, + 0xde,0xf1,0xe6,0x6b,0x3b,0x39,0x07,0xc7,0x3f,0xae,0x10,0x61,0x8d,0x4d,0xa2,0xaa,0x13,0x04,0x06,0xf6, + 0x65,0x6f,0xbf,0x74,0xc5,0x28,0x88,0x9e,0xbf,0x6c,0x9b,0x9e,0xb8,0x30,0x40,0x9b,0x6d,0xeb,0x72,0xaf, + 0xc0,0x26,0x8a,0x8f,0x3d,0x6b,0xa2,0x7f,0xd9,0xb3,0x3e,0xcc,0xac,0x76,0xde,0x04,0x08,0x71,0xd8,0xe0, + 0x86,0xef,0xf0,0x68,0x94,0x8e,0x35,0xc7,0x37,0xb0,0xf1,0xd5,0xa5,0x89,0xef,0x4b,0x94,0x35,0x5e,0x65, + 0x5d,0x0b,0xd0,0xbf,0x5a,0x59,0xd3,0x38,0x2b,0x41,0xae,0xe1,0x65,0xba,0x94,0x38,0x44,0xfa,0x1d,0x47, + 0xdb,0x2d,0x15,0x7a,0x1e,0x78,0x8d,0xa3,0x69,0xa1,0x09,0x05,0x7e,0x67,0xbd,0xb6,0xf1,0x50,0x75,0x71, + 0x86,0x2a,0xeb,0x16,0xdb,0x24,0xc1,0x2e,0x5c,0x76,0x08,0xd9,0xc3,0xa4,0xd2,0x2f,0xc2,0x0e,0xb4,0x94, + 0xff,0xff,0x74,0xbe,0xf6,0x9f,0xf5,0x8b,0x18,0x97,0x5a,0x2a,0x35,0xe0,0x52,0x84,0x93,0xe1,0x1b,0x2e, + 0xc7,0x3e,0x0c,0x4b,0xf2,0xf3,0x8b,0x66,0x1c,0x52,0xbe,0x26,0x92,0x17,0x59,0xb1,0x0a,0x94,0xad,0x80, + 0xf3,0xa3,0xb8,0x1a,0x2e,0xf2,0xe9,0x74,0xce,0x42,0xdc,0x24,0x58,0x94,0xab,0x3a,0x5b,0x2d,0x03,0x63, + 0xf0,0x3b,0xaa,0xb4,0x9a,0x7a,0xec,0x5a,0x96,0x04,0xb6,0x5f,0x97,0x47,0x26,0x01,0x64,0x11,0xfc,0x04, + 0x56,0x8b,0xc7,0x28,0x96,0xb9,0x02,0x99,0xcd,0xd2,0x96,0x7b,0x26,0xb0,0xe0,0x66,0x84,0x8b,0x5a,0x2f, + 0x21,0x3b,0xab,0x3d,0xce,0x45,0x5f,0xeb,0x3e,0x49,0x70,0x29,0xcf,0x68,0x4b,0xf7,0x97,0x8f,0x27,0xf6, + 0x66,0xf1,0xda,0xba,0xe9,0xd5,0x72,0x91,0x4f,0x32,0xa1,0xfc,0xe3,0x5a,0x4d,0x4e,0xe2,0xe3,0x89,0xaa, + 0x4f,0xe2,0xba,0x17,0x04,0x2a,0x0b,0x02,0x42,0x21,0x41,0x24,0x8d,0x5b,0xc1,0xf6,0x10,0xb8,0x5d,0x5e, + 0x2e,0xf7,0x39,0x36,0x0b,0x92,0x78,0x27,0x73,0x0c,0x5e,0x13,0x46,0x13,0x07,0x9d,0xa8,0x30,0xc4,0x0b, + 0xc6,0x10,0x32,0xfc,0xa9,0xff,0x41,0x6e,0x3e,0xe8,0x84,0xba,0xcd,0xfd,0x53,0x33,0x6f,0xf7,0xc6,0x7d, + 0xcd,0x92,0x19,0x0f,0x44,0xfd,0x48,0x38,0x1e,0xac,0x6a,0xab,0xfd,0xbc,0x6b,0xb5,0x0f,0xdd,0x12,0x9c, + 0x22,0xf8,0x4a,0x15,0x04,0x0a,0xbd,0xc9,0x4d,0xec,0xac,0x12,0xb1,0xb3,0xc4,0xc5,0xc2,0xb0,0x6b,0xd6, + 0x8f,0xb1,0xd5,0xa4,0x6f,0xc5,0x5f,0x76,0x66,0x4d,0xac,0xf4,0xf3,0x24,0xb8,0x73,0xe7,0x92,0x90,0x19, + 0x23,0x50,0x10,0x0e,0x49,0x10,0x6a,0x71,0x21,0x65,0xec,0x50,0xcb,0x3b,0x77,0x65,0xe4,0x77,0xc7,0x48, + 0x31,0x88,0x16,0xcf,0x11,0x64,0xa5,0x43,0x71,0x76,0x90,0x4f,0x4f,0x89,0xef,0xdc,0xcb,0x81,0x1e,0x35, + 0x3f,0x99,0x20,0xca,0x13,0xc2,0x61,0x69,0xe3,0x1f,0x03,0x3e,0x84,0x63,0xc1,0xeb,0x45,0xc4,0x71,0x7f, + 0x5a,0xe2,0xba,0x41,0xea,0x62,0x7c,0x57,0xe3,0xd8,0xbb,0xca,0x98,0xe6,0xb8,0xd0,0x26,0x3b,0x21,0x1a, + 0xdc,0xb9,0x09,0xf6,0xca,0xbd,0x60,0x13,0x78,0x0b,0x90,0x36,0x3e,0x1a,0xf7,0x91,0x1b,0x4d,0xe1,0x8f, + 0x95,0x0b,0x60,0xe8,0x5d,0x66,0x75,0x1c,0x44,0x0f,0x0e,0x20,0x75,0xc4,0xed,0x5c,0xcf,0x4d,0xea,0x09, + 0xa5,0xfe,0x58,0xd9,0x28,0xbd,0xe1,0x33,0xfe,0xd8,0x2f,0x01,0x9e,0xfa,0x9b,0xfd,0xc3,0xf1,0x0d,0xf5, + 0x3a,0x76,0xe7,0xcf,0x33,0xa2,0xd8,0x88,0x15,0xe7,0x01,0x98,0xd4,0x67,0x15,0x61,0x7c,0x0c,0x66,0x13, + 0x4b,0x69,0x2e,0xc1,0x71,0x9a,0x98,0xf0,0xf9,0x09,0x24,0x2b,0xb5,0xf0,0x7b,0x95,0x7c,0x0f,0x11,0xc1, + 0xee,0x04,0x67,0x5c,0x34,0x6f,0xc2,0x1f,0xaa,0xa4,0x86,0x4a,0x7b,0xbc,0xc2,0x73,0x14,0x7f,0x0d,0x96, + 0xf6,0x87,0xca,0x17,0x53,0x19,0xf9,0xb3,0x78,0x48,0x52,0x15,0xcf,0x2a,0x53,0x01,0x07,0x96,0xc5,0xf7, + 0x6a,0x0e,0x55,0x4d,0xb4,0xe2,0x38,0xcb,0x86,0x7c,0xe1,0xba,0x08,0x77,0x20,0x78,0xe1,0xd7,0x5f,0xe8, + 0xe7,0xfd,0x7d,0x36,0xb5,0xa3,0x39,0xfc,0x9e,0x6b,0x12,0xd0,0xda,0xa0,0x71,0x13,0xf3,0xbc,0x3d,0xde, + 0xdf,0xf5,0x78,0x4d,0xca,0xef,0x34,0x56,0xf5,0x7d,0x05,0x75,0xa3,0xd3,0x24,0x6b,0xf7,0x4e,0xf6,0x8d, + 0x18,0xcb,0x8d,0x36,0x4d,0x1c,0xdc,0x21,0xba,0x34,0xc4,0x1d,0x8a,0x54,0xa3,0xbe,0xb3,0x0b,0x05,0xe4, + 0x91,0x21,0xc2,0x73,0x42,0x6d,0x9c,0xfd,0xf0,0x4f,0x95,0x4f,0x50,0xed,0xed,0x3d,0xf3,0x4d,0xdf,0x27, + 0x5e,0xc1,0x67,0xd5,0x37,0xc9,0x8f,0x1e,0xdc,0xcf,0xfd,0xa8,0xe1,0x4c,0x1e,0x66,0xeb,0x35,0xd3,0x91, + 0x9e,0x10,0x9b,0x27,0xc9,0x77,0x36,0x94,0xd9,0x64,0x07,0x5a,0x5e,0x0b,0xf8,0x65,0x8c,0xa2,0x91,0xe7, + 0x98,0xd7,0xf8,0x52,0x91,0x06,0x91,0x2a,0x9a,0x68,0x78,0x8a,0xeb,0x22,0xdf,0xa7,0x35,0x0c,0x7b,0x4a, + 0xf7,0xe6,0x4b,0xcd,0x2e,0x9c,0x87,0x67,0x52,0xde,0x12,0x4f,0x42,0xf7,0xf6,0x82,0xfd,0x2a,0xe9,0x6c, + 0xe6,0xbb,0x18,0x9b,0x16,0xd9,0xe2,0x36,0xf2,0x6f,0x55,0x37,0x1c,0xed,0x4e,0x1e,0xba,0xeb,0x01,0xfb, + 0x9b,0x20,0x7c,0xc1,0x1b,0x53,0x7c,0xd8,0x36,0x08,0x61,0x8c,0xb8,0x04,0xea,0xb7,0x6a,0x9b,0x47,0x44, + 0x6b,0x3f,0x14,0xe3,0x1b,0x7d,0x0e,0xc2,0x52,0x47,0xce,0x32,0x84,0x95,0xd3,0xf8,0xde,0xa3,0x64,0xa6, + 0x8d,0xd3,0x59,0x85,0x74,0xaa,0xfe,0x56,0x45,0xbd,0x9c,0x29,0x22,0x5a,0x79,0xf3,0xd5,0x76,0x06,0x58, + 0x36,0xa1,0x89,0x4a,0xb5,0x6b,0x05,0x36,0x25,0xd8,0xfc,0x5d,0x2b,0xae,0xc1,0x2d,0x00,0x96,0x07,0xd5, + 0x29,0x8c,0xd4,0xca,0xa4,0xf0,0xdf,0x47,0xbf,0x55,0x9a,0x49,0xed,0x20,0x07,0xea,0xe8,0xf1,0x29,0xf4, + 0x40,0x1a,0x77,0xbc,0x2a,0xc6,0x81,0xbe,0xfe,0x3a,0x36,0xd6,0x89,0x1c,0x24,0xda,0xf9,0x02,0xf0,0x07, + 0x1c,0xee,0x99,0xfd,0xcc,0xdd,0xd5,0xe3,0x94,0xbc,0x41,0xf6,0x55,0x2e,0x31,0x10,0x86,0x52,0x51,0xeb, + 0xd3,0x2b,0x7c,0xaa,0x33,0x3a,0x9f,0xe3,0xb3,0x0d,0x78,0x9c,0xdf,0x58,0x45,0x3f,0x6b,0xd4,0x14,0x01, + 0x63,0xad,0xcc,0xf8,0x37,0x1b,0x12,0xc0,0x73,0x38,0xec,0x9b,0x23,0xe3,0x70,0xd3,0x9a,0x29,0x9b,0xe8, + 0x8b,0xd8,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0xba,0xe5,0xa7,0xde,0x26,0xe0,0xb2,0x3e,0x3e,0x2d,0x19, + 0x57,0x2e,0x72,0x56,0x88,0xa2,0x72,0x1d,0xb1,0x2e,0x3f,0x49,0x82,0xc0,0xcb,0x9d,0xeb,0x5b,0x06,0x51, + 0x42,0xf1,0x5d,0xd1,0xe6,0xee,0x66,0xed,0x9e,0x94,0x17,0x04,0x28,0xcf,0xde,0xbf,0x7c,0xc1,0x09,0x5c, + 0xba,0xea,0x0f,0x81,0xeb,0x99,0x40,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc,0xbc,0x58,0x65,0x23,0xe0,0xbc, + 0x54,0x8a,0xbe,0x82,0x93,0x96,0x15,0x35,0xa7,0x1a,0x30,0x8f,0x90,0x15,0xfa,0x45,0x60,0x7e,0xc4,0xd7, + 0x1a,0x8b,0x94,0x4d,0x9a,0x4f,0x87,0xa7,0xfc,0x9a,0x94,0xda,0x8a,0x11,0x22,0x32,0x44,0xc7,0xb7,0x37, + 0x66,0x8d,0xa6,0xc9,0x4a,0xed,0x86,0xb3,0x24,0x8d,0x44,0xda,0x50,0x53,0x3a,0xac,0xb3,0x5f,0xbf,0x79, + 0xff,0xfc,0xf5,0x2b,0xd4,0x33,0x33,0xe2,0x1f,0x62,0x08,0x7b,0xd8,0x10,0xc2,0x0d,0xec,0x60,0xee,0x2e, + 0xc6,0x12,0x47,0x69,0xad,0x87,0xe3,0x6b,0x0e,0x6c,0x9c,0x21,0xef,0xf8,0xcf,0xac,0x98,0xb0,0xd9,0x84, + 0x33,0x35,0x8d,0x5a,0xd5,0x7b,0x8a,0x38,0x51,0x25,0x88,0x0a,0xfb,0xa5,0x21,0xdb,0xc4,0x7c,0x2d,0x8f, + 0xb4,0x49,0xcb,0x3c,0xfd,0xfd,0xda,0x05,0xf3,0x16,0x2b,0x17,0x3e,0xe5,0x0d,0x41,0x34,0x11,0x57,0xb5, + 0x89,0x0e,0xfa,0x96,0x33,0x55,0xe0,0x6c,0xef,0x85,0x46,0x60,0x0f,0x63,0x79,0x34,0x1d,0x05,0xc9,0x58, + 0x48,0xff,0x18,0x24,0xa4,0x37,0xc9,0x4a,0xdb,0xdf,0x30,0x88,0x94,0x72,0x0b,0x20,0x95,0xf1,0xfc,0x3a, + 0x1b,0x77,0xe6,0x2d,0x1a,0x56,0x49,0x5f,0xcf,0x3d,0xa3,0x25,0x2d,0x6b,0x79,0x87,0xd4,0xf1,0x65,0xd8, + 0x7a,0xe7,0xd8,0x09,0x9e,0x37,0x63,0xf3,0x39,0x85,0xf2,0xe2,0x16,0xed,0xec,0xc7,0xbc,0x13,0xbb,0xe4, + 0xbc,0x69,0xcb,0xc0,0x58,0x60,0x54,0x76,0x64,0x5f,0xb9,0xdf,0x8f,0x48,0x74,0x61,0xb5,0x7d,0x2e,0xb7, + 0x72,0x4b,0x9d,0x1b,0x79,0x11,0x7f,0xf4,0x3e,0x9d,0x27,0xad,0xe2,0x6a,0x05,0x83,0xd4,0xb2,0x5a,0xf0, + 0x75,0xf2,0x53,0x4e,0x83,0x82,0xa0,0x96,0x07,0xda,0x87,0xb3,0x64,0xbe,0x5e,0xaf,0xd4,0x14,0xf3,0xa5, + 0x37,0xaa,0x54,0xce,0x5b,0x59,0xa7,0x74,0x6a,0x48,0x60,0x04,0xaf,0x77,0xb8,0xf8,0x4d,0x4d,0xa3,0x78, + 0x3a,0x12,0xc3,0xd6,0x36,0xb4,0xfa,0xda,0x76,0xa6,0x23,0xb3,0x51,0x8f,0x80,0xed,0x2f,0x09,0xde,0x2e, + 0xad,0x26,0x34,0x82,0x7d,0x0b,0x3b,0x8b,0x49,0x72,0xd6,0x4d,0x76,0x8e,0xcb,0x19,0xcc,0xd5,0x87,0x26, + 0xfe,0x5a,0xd9,0xaa,0xad,0xec,0x7e,0xe6,0x54,0xfa,0x95,0xd4,0xc1,0xa1,0x31,0x67,0x84,0xa4,0x96,0xb0, + 0x69,0x1c,0x0c,0x1e,0xc2,0x12,0xb1,0x56,0x06,0x4b,0x71,0xf6,0x32,0x0a,0xd3,0x84,0xf3,0x09,0x78,0x67, + 0xf4,0x6b,0x8b,0xe9,0x58,0x27,0xc0,0x00,0xa9,0xcf,0x12,0x5c,0x37,0xbe,0x57,0x1a,0x47,0x0a,0xd5,0x72, + 0x0c,0x89,0xc0,0xc1,0xc2,0x38,0x36,0x21,0xf4,0x84,0x0e,0x3b,0x01,0x53,0x96,0x8d,0xb6,0x6b,0xb9,0xf7, + 0x6b,0xbd,0x77,0x2f,0xb2,0x97,0x38,0xf5,0x78,0x84,0x7b,0xf5,0x70,0x70,0x2d,0x04,0x16,0x8b,0xb7,0x13, + 0xfd,0x20,0xbb,0xd0,0xb0,0x50,0xfb,0xe7,0x3d,0xa2,0xc1,0x48,0x5b,0x5f,0xee,0xe0,0xe6,0x47,0xaf,0x53, + 0xac,0x91,0x09,0x58,0x49,0x9e,0xf5,0xcb,0x14,0xc3,0x82,0xb8,0x2c,0x33,0x40,0x3f,0xf6,0xfe,0xff,0xef, + 0xb3,0x20,0xc8,0x7c,0x7b,0x22,0x6c,0xba,0xf2,0x53,0xe5,0x10,0x00,0x13,0xd0,0x15,0xe1,0x9b,0x29,0x91, + 0xa9,0x73,0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0x31,0xd3,0xe6,0x4d,0x65,0x05,0x5b,0xb0,0x11,0xbc,0xa3, + 0xed,0x6d,0x53,0x95,0xc2,0x70,0x01,0xe2,0x06,0x4d,0x42,0x29,0xd1,0x3b,0xc7,0x7c,0x8f,0xc6,0x6d,0xdd, + 0xf4,0xe6,0xfc,0xb4,0xd1,0xa4,0x8d,0xb6,0x00,0xd9,0xba,0xb5,0xc5,0x20,0x51,0x7b,0x1d,0x30,0xb3,0xc0, + 0x34,0x2d,0x90,0x1a,0xe3,0x26,0x8b,0x37,0x79,0x98,0x69,0xab,0xad,0xe0,0x32,0x40,0x00,0xcc,0x90,0x95, + 0xc5,0x8d,0x46,0xe1,0x3d,0xb8,0xf1,0x0d,0xe3,0xc6,0x2d,0xf2,0xe4,0x8a,0xfb,0xf2,0x36,0xf7,0x1d,0x68, + 0xde,0xa2,0xa8,0x2f,0x88,0x39,0x6a,0xda,0xd6,0x23,0xdb,0x32,0x6f,0x96,0x42,0x6c,0x27,0x73,0x5c,0xa0, + 0xc2,0xb3,0xfc,0x02,0x84,0xc2,0x81,0x04,0xf2,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xff,0x52,0xdd,0x54,0x5f, + 0x6d,0x83,0xc1,0xaa,0xb7,0x15,0x04,0xe0,0xd6,0x70,0xec,0x39,0x9d,0x76,0x38,0xe9,0x4f,0x52,0x40,0xe1, + 0x18,0xd0,0x26,0x17,0x95,0x71,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7,0x82,0x95,0x2a,0x98, + 0xd0,0x2b,0x75,0x02,0xc3,0x8b,0x0f,0xf9,0xf8,0x69,0x1e,0xbf,0xcc,0x09,0xe3,0x77,0x7c,0xd0,0xfa,0x15, + 0x3b,0xb5,0x5a,0xc1,0x6e,0x9d,0xfd,0xcd,0xda,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd,0xde,0xde,0xe4,0x1b, + 0x68,0x16,0xe1,0x6e,0x36,0xea,0x77,0x6a,0x9a,0x3c,0xd0,0xf9,0x0a,0xd7,0x34,0xab,0x1e,0x25,0x11,0x9a, + 0xf2,0x9c,0x5e,0xfd,0x25,0x23,0x68,0xd7,0xb7,0xea,0x52,0x93,0x47,0x3a,0x80,0x07,0x9f,0x25,0x12,0x73, + 0xa2,0x3a,0x7e,0x91,0xef,0x05,0x8f,0xe1,0x68,0x15,0x9c,0x58,0x93,0x3d,0x58,0x45,0x95,0x26,0x6f,0x55, + 0xc9,0x55,0xd7,0xed,0xec,0x34,0x79,0xd7,0x70,0x28,0x59,0x28,0x61,0x8f,0x5f,0xdd,0x52,0xc9,0xc4,0xe4, + 0xf5,0x57,0x32,0x47,0x25,0x30,0x76,0xa5,0x39,0x3a,0x80,0xfa,0xc1,0xdd,0x06,0xcc,0x13,0x9e,0xb2,0x09, + 0x7a,0x41,0x8f,0x54,0x20,0xa5,0x02,0xc6,0xd6,0x9d,0x28,0x06,0x58,0x60,0xe7,0xe3,0xb9,0x2e,0xf1,0x1c, + 0x25,0xe6,0x54,0x62,0x62,0x4b,0xcc,0x12,0x4a,0x0f,0x57,0x2e,0x6a,0x7b,0x0a,0xda,0xf7,0x9b,0x03,0xaa, + 0x75,0x3e,0xfe,0x90,0xc7,0xcf,0x73,0xe6,0xf6,0xa3,0x71,0x21,0x8d,0x99,0xba,0x63,0x53,0x45,0x7c,0xa0, + 0x74,0xf0,0x66,0xa5,0xa1,0x25,0x5e,0x29,0x0b,0x2b,0xf1,0x0c,0x57,0x32,0xbf,0x37,0x57,0x07,0xc6,0x52, + 0xcb,0x60,0xf0,0x48,0xcb,0xd2,0x65,0xf6,0x4c,0x24,0x90,0xe0,0xc4,0x47,0x03,0xef,0x1a,0x77,0x48,0x8f, + 0x8c,0xfc,0xe3,0x81,0x8d,0xb7,0x18,0x65,0x89,0x0d,0xc1,0xed,0x88,0x28,0x33,0x8e,0xd6,0xe5,0x62,0x6d, + 0x89,0xb2,0xef,0x5d,0xfe,0x10,0x96,0x93,0x7b,0x0f,0x1b,0x09,0x54,0xb5,0xf1,0x77,0xda,0x43,0x9f,0xc4, + 0x3a,0xcc,0xbe,0xf8,0x9b,0xbe,0xae,0xd6,0x09,0x10,0xf6,0x0f,0xfd,0xf2,0x77,0x3c,0x5a,0x0a,0x24,0x14, + 0xd1,0x3b,0x70,0xeb,0xc2,0x3d,0x41,0x29,0x11,0xe7,0x67,0xec,0x4c,0x61,0xdf,0xf4,0xb5,0x9d,0x73,0x89, + 0xbc,0xe7,0xd2,0x43,0x23,0x03,0x4d,0x4e,0x1b,0xc3,0x0d,0xb9,0x0d,0x1d,0x59,0x5f,0x2d,0xb6,0xb9,0xa4, + 0xcf,0x08,0xc2,0xb3,0x8a,0x2b,0x3f,0xe4,0xa8,0x62,0x20,0x48,0x70,0xe3,0x9d,0xa3,0x6d,0x10,0x91,0x8c, + 0x10,0xa3,0x82,0xff,0x2c,0x6f,0x6c,0x02,0x92,0xa1,0x7c,0xc6,0xaa,0xbc,0x99,0x79,0x7d,0x5f,0x4a,0xc2, + 0xd4,0x24,0x3c,0x64,0x9a,0x5d,0x12,0x97,0x94,0x48,0x53,0x9a,0xa5,0xfa,0xab,0x0b,0xfb,0x6e,0x3e,0xbb, + 0xb4,0x29,0xfe,0x77,0x0b,0x4a,0x3d,0xcb,0x60,0x57,0xfe,0x04,0x55,0xaa,0x73,0x53,0xb9,0xba,0x46,0x79, + 0x5c,0x03,0x2f,0x19,0x67,0xb6,0x57,0x66,0x62,0xd4,0x95,0xfd,0xf6,0x21,0xd7,0xab,0x8e,0x6c,0x13,0xea, + 0xbd,0xf9,0x5a,0x67,0x7d,0x74,0xfd,0xb3,0xdf,0x7f,0xa2,0xb4,0xa9,0xde,0x53,0xea,0x5d,0x72,0x55,0xa9, + 0x87,0xf4,0x47,0x1b,0xf8,0x8f,0x1e,0x12,0x05,0x64,0x49,0xae,0x77,0x49,0xf8,0x30,0x31,0xaf,0x91,0xe1, + 0x58,0x79,0x25,0xee,0x24,0xbb,0xef,0xbc,0x20,0x4c,0xc4,0x91,0xb2,0xf5,0x7f,0x59,0x82,0x0e,0x44,0x7c, + 0x61,0x2c,0xc9,0x9d,0xf5,0xfa,0x08,0x87,0x27,0xad,0xc1,0x91,0x80,0xc0,0xeb,0xe4,0xce,0x60,0xb0,0x1c, + 0x2f,0x69,0x37,0x3c,0xc1,0xe3,0xe5,0xf8,0x32,0x9e,0xaa,0x37,0x78,0xbc,0x18,0x5f,0xd0,0xbe,0x78,0x9c, + 0xdc,0x19,0x5f,0xad,0xd7,0x8b,0x78,0xa1,0x3e,0x20,0xb5,0xc7,0x7f,0xe6,0x68,0x7c,0x14,0x9f,0xab,0xe7, + 0x54,0xf0,0xfd,0x7a,0x7d,0x1d,0x5f,0xab,0x17,0xf4,0xf8,0x71,0xbd,0x3e,0x8b,0xcf,0xd4,0x53,0xe2,0x5b, + 0xf2,0xf0,0x53,0x34,0xfe,0x24,0xd3,0x16,0x7f,0x8a,0xd4,0xab,0x84,0x0f,0xc2,0x9a,0x15,0xf6,0xea,0x65, + 0xf2,0xa6,0x09,0x3f,0x44,0xea,0x6d,0xe2,0xe0,0xc4,0xf7,0xd4,0x8d,0x6e,0x5e,0x11,0x48,0xd2,0x81,0x52, + 0xaa,0x37,0x91,0xe2,0xdf,0x27,0x74,0x54,0xbe,0x75,0xa0,0x39,0x0e,0xa9,0x04,0x67,0xbc,0x8e,0xd4,0x8b, + 0xc1,0xe0,0x05,0x5b,0x5a,0x3c,0x1f,0x0c,0x9e,0xc3,0x9f,0xc1,0xab,0x55,0x07,0x6e,0xd7,0xf0,0x5a,0x5f, + 0x94,0x34,0xb0,0xef,0x68,0x3b,0x38,0x13,0x29,0xd7,0xa8,0x11,0x1a,0xc9,0x5c,0x83,0x4f,0x55,0x3a,0xb4, + 0xf2,0x29,0xc2,0x1e,0x31,0xab,0xe9,0x9e,0x8f,0x59,0xb0,0x76,0x32,0xe2,0xc0,0x48,0x62,0x98,0x58,0x88, + 0x61,0x62,0x83,0x1d,0x66,0xf7,0x4d,0xf7,0x3d,0x8c,0xd4,0x87,0xc1,0xe0,0x03,0x75,0xfd,0x2d,0xcc,0xa6, + 0x1e,0x0f,0x06,0x8f,0xd1,0x67,0x8c,0xf8,0x48,0x0f,0xe8,0x48,0x46,0xac,0xae,0x5a,0x07,0xc9,0x91,0x3f, + 0x1f,0xaf,0x5b,0xd3,0xb1,0x5e,0xbf,0xa4,0x73,0xfc,0x49,0x13,0x3e,0x8d,0xc6,0xde,0x29,0xf4,0x56,0x3d, + 0x8d,0xe2,0x8f,0x28,0x3e,0xa7,0xc6,0x80,0x44,0x94,0x37,0x11,0x62,0x95,0x5b,0xf9,0xfd,0xa1,0x6e,0x70, + 0x55,0x6f,0xc3,0xb6,0x07,0x98,0x46,0x20,0x4e,0xd8,0x4d,0xdd,0xf9,0xe8,0x37,0x1f,0xb6,0x26,0x38,0x24, + 0xce,0xd3,0x4d,0xa2,0x9d,0x31,0xe8,0xba,0xfb,0xd2,0xc5,0x1f,0x55,0xa6,0x33,0x29,0x22,0x75,0x41,0x80, + 0x88,0x40,0xab,0x57,0x32,0x25,0x29,0x3c,0x2c,0xf8,0x77,0xd9,0x33,0x25,0x29,0xf1,0x50,0x98,0x12,0x2e, + 0xd5,0xea,0xd3,0x91,0x4c,0xc9,0xfb,0xd6,0x94,0x7c,0x54,0xef,0x79,0x4a,0x52,0xb5,0x52,0x1f,0x65,0x4a, + 0x2e,0x41,0x99,0xa5,0xf4,0xa6,0xae,0xf8,0xa3,0x8f,0xa0,0xb3,0xb5,0xa1,0xb9,0xc6,0x95,0xa9,0x8f,0xce, + 0xbc,0xb7,0x36,0xae,0x74,0xe9,0x06,0x57,0xd6,0xb7,0xe3,0x4a,0x89,0x22,0x2b,0x77,0xd1,0x58,0xd4,0x68, + 0x18,0x28,0xd1,0xc6,0xee,0x72,0xc3,0x06,0x49,0x1b,0x27,0x95,0x9a,0x71,0xe6,0x2a,0x91,0x58,0x31,0x84, + 0x24,0x21,0x6f,0x49,0x0d,0x56,0x9b,0x9a,0x57,0x83,0xfc,0x96,0x26,0xc1,0xc7,0x7d,0x17,0x94,0x28,0xf8, + 0xeb,0x05,0xb2,0x08,0x43,0xea,0x42,0x84,0x15,0x6b,0xc1,0x5e,0x92,0x71,0x6e,0x6b,0xb7,0xb8,0xeb,0x9a, + 0x92,0xd8,0xb3,0x5b,0x4a,0x9c,0xe1,0xd5,0xa0,0xb2,0x2b,0xd9,0xe6,0x73,0xd9,0xe6,0x47,0xd8,0xe6,0x97, + 0xb4,0x3a,0x8c,0x10,0xce,0xa2,0xf1,0x99,0xd4,0x15,0x9f,0x45,0x8c,0x15,0xcd,0xd0,0xda,0x5b,0xdf,0x07, + 0x11,0x88,0x90,0x7a,0x00,0x86,0xd7,0xa0,0x27,0xdd,0xc2,0x10,0x07,0x01,0xbb,0x12,0x1c,0xe2,0x00,0x64, + 0x19,0xb5,0x20,0x64,0x1c,0x5e,0x31,0x0e,0x61,0xc8,0xa1,0x3a,0xcf,0xd9,0x50,0x24,0xc4,0x86,0x58,0x0c, + 0x06,0x0b,0xbc,0x29,0xaf,0x93,0x1a,0x93,0x5c,0x8f,0xaf,0x69,0xbb,0xc6,0x65,0xe8,0x13,0x04,0x4f,0xbc, + 0x13,0x79,0x3b,0x3a,0x15,0xcd,0x86,0x5c,0xc0,0xe8,0x6b,0x97,0xdf,0x20,0x66,0x2d,0xb3,0x12,0x2e,0x00, + 0xb2,0x0e,0xb1,0x0d,0x73,0x62,0x84,0x4a,0xf6,0x02,0x48,0x8d,0xa9,0xf8,0x56,0x20,0x9c,0xea,0xf8,0xe0, + 0x24,0x46,0x18,0x1c,0x7b,0xe5,0x1f,0x9c,0x61,0x34,0xfd,0xf4,0x8d,0xa7,0xd1,0x7b,0xac,0xe9,0x95,0x5d, + 0xa8,0xef,0x1b,0x1f,0x03,0xdc,0xe1,0x9b,0x91,0x9d,0xe3,0x88,0x25,0xbd,0x9f,0x9b,0x27,0xe5,0x4c,0xe5, + 0xfa,0xe9,0x5b,0x5b,0x72,0xa3,0x0e,0xbc,0xaa,0x9e,0x77,0xa8,0xf8,0xc6,0x93,0x8c,0x2d,0x56,0xf3,0x26, + 0x5f,0xce,0x33,0xa1,0xd7,0xd7,0xeb,0xee,0xc8,0xbc,0xc8,0x69,0x6c,0xea,0x02,0xe7,0x2d,0xeb,0x78,0xd3, + 0xf5,0xdd,0x82,0x1f,0x88,0xcb,0xc5,0x15,0x1c,0x79,0x54,0x26,0x67,0xc4,0xfe,0x3d,0x85,0x15,0x10,0xf8, + 0x5d,0x85,0xab,0x9c,0xe6,0x7c,0x31,0x3b,0x4d,0x40,0xc9,0xe0,0x63,0x12,0x12,0x2f,0x20,0xd8,0x75,0xc8, + 0x9f,0x78,0x11,0x84,0xc1,0x75,0x81,0xae,0xd2,0x85,0x59,0x51,0x25,0xe7,0x58,0x37,0x35,0x81,0x5b,0x5f, + 0xce,0xdc,0x54,0x3b,0x7d,0xbf,0x75,0x03,0xe5,0x8b,0xa6,0x7d,0x5d,0x4b,0xf7,0x1a,0x3e,0x9b,0xb5,0x7b, + 0x1d,0x8a,0x61,0xad,0xe7,0x47,0xe2,0x43,0x99,0x88,0x4a,0x39,0xce,0x1b,0x2e,0x2b,0x10,0xb5,0x9f,0x16, + 0x3f,0x7a,0xae,0x20,0x8d,0x38,0x43,0x0b,0xcf,0xe2,0x64,0xa6,0x30,0x42,0x73,0x3e,0x20,0xb7,0x14,0xe2, + 0x41,0x6e,0x7f,0x79,0xa8,0xde,0x36,0x36,0x43,0x69,0x41,0xbe,0x4f,0x6f,0xbe,0x6d,0x31,0x9d,0x5d,0x87, + 0x87,0x4b,0x76,0x77,0x80,0xd4,0x59,0xd4,0xe2,0x81,0xf0,0x99,0x79,0x23,0x39,0x8d,0x22,0x4c,0xca,0xb1, + 0x93,0x86,0xd3,0xbc,0x66,0x1b,0x65,0xc9,0xf0,0xd5,0x17,0x8f,0xbc,0x99,0xd8,0xbd,0xc5,0xe1,0x41,0x24, + 0x55,0x59,0x17,0xf9,0x8e,0xb3,0xf8,0x11,0xfb,0xd3,0xdc,0x26,0x33,0xf3,0x5c,0x2f,0x3c,0xa9,0x28,0x93, + 0x01,0x5b,0x86,0xb1,0x66,0x15,0x71,0xc6,0xb7,0x4c,0x62,0x8d,0xdb,0xfa,0x98,0xea,0xf8,0x17,0xbc,0xc1, + 0xac,0x4b,0xa2,0x2f,0xe4,0xfc,0xc9,0x6b,0x80,0xaf,0xc0,0x74,0xd1,0x52,0xdb,0x81,0x94,0x0a,0x77,0x65, + 0x45,0x84,0x20,0x4a,0x6c,0xde,0x3c,0xd2,0xb1,0x95,0x08,0xfd,0x31,0x2a,0x34,0xfc,0x64,0xc7,0x9b,0x2f, + 0xa7,0x2f,0xae,0x70,0x39,0xc8,0x09,0xfb,0xf3,0xf5,0xc4,0xb4,0xfd,0xc1,0x49,0x92,0xee,0xfd,0x3a,0xdd, + 0xff,0x98,0x65,0xcb,0xfd,0x74,0x4e,0x87,0xc5,0x1d,0x7d,0xf3,0x20,0xd3,0x37,0x2e,0x50,0x76,0x18,0xb8, + 0x22,0x81,0xba,0xe1,0xae,0xc5,0xcd,0xd6,0xec,0xb8,0x3e,0xfb,0x40,0xfc,0x4c,0x03,0x1b,0x93,0x44,0xac, + 0x1c,0x38,0xe3,0x9b,0x30,0xdd,0x2b,0xdb,0x5a,0xf2,0xbb,0x3e,0x4d,0x6d,0xbe,0x3d,0x5d,0x3d,0xd3,0x71, + 0x5d,0x9d,0x88,0x5b,0xb3,0xab,0x37,0x25,0xc2,0x12,0xa1,0x34,0x01,0xe7,0x23,0x22,0x8c,0x39,0x34,0xc8, + 0x3c,0xa7,0x4f,0xdf,0xe2,0x1e,0x78,0x3f,0x66,0xbd,0xbf,0xbc,0x52,0x01,0x81,0xb8,0xb2,0x4e,0x36,0x52, + 0x9b,0xbe,0xda,0x62,0xd6,0xec,0x17,0xfc,0xc3,0x77,0xa8,0x35,0xe5,0x92,0x5e,0xe9,0x2f,0x30,0x58,0xb5, + 0x5e,0xe7,0xb6,0x0b,0x18,0xc2,0xd4,0x68,0x20,0x4b,0xdd,0x15,0x16,0x0c,0x8f,0x4a,0x77,0x51,0x3d,0x11, + 0x99,0x3f,0x65,0x67,0x1f,0xf3,0xc6,0xf2,0x9f,0x49,0xc0,0x99,0x08,0xa8,0x17,0x06,0x7b,0xd5,0x5e,0xb0, + 0xfc,0xa4,0x58,0xd5,0xbf,0xfc,0x14,0x05,0xaa,0xf4,0x00,0xd8,0xf0,0xe2,0x49,0x70,0x50,0xfb,0x7a,0xfa, + 0xdf,0x5a,0xbb,0xae,0x19,0x3f,0x29,0xe3,0xd7,0xa5,0x93,0xe0,0x1b,0xa9,0x58,0xd1,0xd2,0xd2,0xe9,0xec, + 0x3b,0x25,0x6e,0xdd,0xf5,0xc3,0xc6,0x5b,0xec,0xad,0x15,0xd4,0xcc,0x48,0x1f,0x72,0xac,0x80,0x4c,0x59, + 0xe3,0x8a,0xb8,0x51,0xc6,0x1c,0xa2,0x75,0x97,0x6f,0xf7,0x66,0x57,0xe5,0xcc,0x04,0xec,0xfd,0x20,0x3a, + 0xde,0xb2,0x76,0x8d,0xc4,0xa3,0x84,0x21,0x71,0x8e,0x5c,0x4d,0xa4,0x04,0xb2,0xfd,0xa0,0x2a,0xc7,0xfe, + 0x05,0x36,0xdf,0x9a,0x83,0x6d,0x5b,0x75,0xcf,0x56,0x2c,0x04,0xa8,0xd7,0x84,0x5f,0xe4,0x6e,0x47,0x0e, + 0x73,0x06,0xdf,0x03,0xcf,0xf2,0x29,0x13,0xd7,0xa2,0x5d,0xdf,0xb8,0x49,0x9b,0x33,0xdc,0x56,0x65,0x95, + 0xcd,0x6c,0x95,0xf4,0xcc,0x91,0xd3,0x8c,0x3f,0x54,0x4b,0x52,0xe4,0x19,0xd1,0x8e,0x0a,0x09,0xf5,0x69, + 0xaf,0x9a,0x29,0x20,0x73,0x75,0xee,0x46,0x10,0x51,0xea,0x40,0x9e,0x36,0x56,0x34,0xa8,0x50,0xf4,0xb5, + 0xa3,0x54,0x0d,0x10,0xee,0xc2,0xda,0x39,0xc3,0x5a,0x9b,0xde,0xa1,0xef,0xd2,0xdd,0xc3,0x7c,0x06,0x9e, + 0x54,0xba,0x69,0x47,0xf7,0xe6,0xaf,0x60,0x05,0x25,0x86,0x3c,0x1c,0xf6,0x20,0xe0,0x5b,0xf0,0xa8,0x1a, + 0x0e,0xb9,0x85,0x40,0xda,0x3a,0x93,0x92,0xf6,0x75,0x09,0xa2,0x32,0xec,0x37,0x7e,0xb2,0x1c,0x84,0xee, + 0x5b,0x13,0xed,0xb8,0xb2,0x45,0x81,0xdf,0x6d,0xa9,0xf7,0x22,0x3b,0xbb,0x1b,0x04,0x77,0xd9,0x90,0xfc, + 0xae,0x0d,0x58,0x7a,0x97,0x16,0x79,0xbb,0xa7,0x40,0xe4,0xb6,0x76,0x7a,0x71,0xb5,0x2a,0xbe,0x60,0xb9, + 0x3b,0x41,0x32,0xe2,0xd0,0xac,0x55,0x5e,0x9b,0x2e,0x5a,0xe4,0x44,0x5d,0x54,0xda,0xfc,0x48,0x8a,0x14, + 0xf3,0xbc,0xc8,0xf6,0x6d,0xcb,0x52,0x5c,0x52,0xdf,0xeb,0x44,0xb6,0xa8,0xec,0x5c,0x79,0x43,0x70,0xbc, + 0x28,0x7d,0x0f,0x99,0x2c,0x59,0xc0,0xa1,0x8d,0x01,0x92,0x7a,0x3a,0xda,0x86,0x49,0xe5,0x99,0xef,0x32, + 0x45,0x63,0x61,0x8e,0x2b,0x6e,0x68,0x9f,0x14,0x56,0x00,0x36,0x6a,0x1e,0x14,0x26,0xf2,0x40,0x95,0xc0, + 0x6f,0xa9,0x91,0xcd,0xa2,0x4a,0x79,0x16,0x72,0xea,0x79,0xa9,0xc5,0x55,0x5a,0xea,0x7f,0x91,0xd6,0x8f, + 0x72,0x46,0x7a,0x30,0x70,0x55,0xa1,0x7f,0xa7,0x92,0x85,0x63,0x7d,0x3f,0xd0,0x23,0x89,0x72,0xe3,0x87, + 0xbd,0x77,0xf7,0x65,0x74,0x55,0x02,0x1c,0x05,0xd2,0x48,0x98,0x0e,0x23,0x5c,0xf7,0x0d,0xc3,0x09,0x5c, + 0xc9,0x15,0xe9,0xcb,0x21,0x0c,0x8a,0x79,0x54,0x42,0xc3,0x43,0x0c,0xaa,0xeb,0x9b,0x9f,0xfd,0x96,0xb3, + 0x69,0x18,0x3f,0x73,0xf0,0x01,0xb6,0x64,0x96,0xa8,0xa4,0x38,0x30,0xc4,0xe8,0xf8,0x40,0x69,0xe5,0x74, + 0xb3,0x98,0x07,0x12,0xff,0xec,0x0a,0xf1,0x3b,0xa5,0x29,0x4f,0x71,0xcd,0x34,0xfa,0x84,0xa6,0x65,0xce, + 0x39,0x52,0x08,0xf4,0xde,0x75,0x31,0x19,0x0c,0xd8,0x0e,0xd1,0x45,0xb5,0xe4,0x5c,0x85,0x68,0x45,0x2a, + 0xb8,0xc3,0x96,0x77,0x01,0xdb,0x77,0x43,0x97,0xef,0x20,0x64,0x30,0x38,0x2d,0xed,0x85,0xb7,0x06,0xbd, + 0x09,0xb3,0x45,0x44,0x37,0x9b,0x6e,0x22,0xd6,0x56,0xcc,0xc0,0x58,0xf9,0x01,0x65,0x3f,0xf4,0x0f,0xf8, + 0x83,0x0c,0xb8,0xd0,0xe5,0x69,0xf9,0x77,0xfd,0xcb,0x19,0xe7,0x49,0x6b,0xf6,0x9e,0xcb,0xec,0xe9,0x35, + 0x7a,0xc9,0x61,0x1d,0x68,0x70,0xf3,0xe3,0xc3,0x93,0xd1,0x4a,0xcf,0xb4,0x95,0xf3,0x59,0xbf,0xae,0xbd, + 0x43,0x8c,0x64,0x9a,0x54,0xc4,0xf0,0xe5,0xc4,0xdf,0x95,0xc4,0xd3,0xad,0x20,0xe3,0x52,0x61,0x38,0x4b, + 0xb2,0xa8,0xe5,0xa3,0x87,0x38,0x3d,0xf6,0x75,0xcb,0x44,0x74,0xaa,0xb4,0x47,0x54,0xbc,0xd4,0xb6,0x9d, + 0x17,0xb0,0x6c,0x89,0x2f,0x95,0x35,0x43,0x8c,0x17,0x1b,0x0e,0xb2,0x61,0x6c,0x07,0x79,0x02,0xf4,0x7c, + 0x74,0x8c,0xf9,0x4a,0xbe,0x75,0xc7,0x9f,0xdd,0x60,0x01,0x21,0x36,0x56,0xb5,0xfa,0xec,0x54,0x0f,0x06, + 0x7a,0xae,0x8d,0x97,0x89,0x56,0x5b,0xab,0xa5,0xba,0x50,0xd4,0x99,0x4d,0x8b,0x9f,0xfa,0xd9,0x9d,0xe6, + 0x0c,0xd4,0x89,0xb1,0x54,0x24,0x48,0x0e,0xa2,0x3e,0xf3,0x35,0x63,0x97,0x2c,0x13,0xfd,0x42,0x87,0x7c, + 0x32,0xfc,0x0a,0x2b,0x71,0xe9,0xdb,0xa4,0x38,0xbe,0x7f,0xa2,0xf5,0x47,0x86,0xe2,0xa2,0xa5,0xd0,0x29, + 0x76,0xd5,0x5e,0x19,0xa0,0xce,0x75,0x7d,0x4f,0x5d,0x04,0xe0,0x72,0x8c,0x38,0x4e,0xf3,0x3c,0xad,0x29, + 0xd7,0x7c,0xf0,0x54,0x3e,0xa8,0x86,0x39,0xd1,0x34,0x29,0xd1,0x8e,0x87,0x49,0xe9,0xea,0x55,0x25,0xb5, + 0xca,0x16,0x18,0x26,0xfb,0x7e,0x52,0xba,0x8e,0x20,0xf8,0x8a,0xa9,0x51,0x55,0x7c,0x2d,0x5e,0xc1,0x31, + 0x0b,0xda,0x8e,0x24,0xff,0xb6,0x2a,0x99,0x7c,0x76,0x54,0x12,0x56,0x60,0xba,0x8c,0x79,0x14,0x3f,0x81, + 0x43,0xaf,0xb6,0x93,0x8c,0x9e,0xc7,0xb3,0x86,0xf6,0x85,0xce,0xdf,0x35,0xed,0x55,0xe3,0x73,0xd3,0x44, + 0xb7,0xcf,0x8c,0xb0,0xd2,0xb3,0x77,0xee,0x32,0x83,0xe3,0xc0,0x44,0x7b,0x8a,0x6f,0x82,0x38,0x28,0xf1, + 0xe3,0x02,0x3f,0xe8,0xbb,0xf6,0xf6,0x12,0x18,0xfc,0xe5,0x7b,0x77,0x83,0xf8,0xee,0x5e,0x86,0x78,0x41, + 0xec,0x56,0x0e,0xbb,0x6f,0x77,0x9f,0xb4,0x27,0xf2,0x66,0xc3,0x45,0x67,0x16,0x5d,0x58,0xaa,0xd6,0xde, + 0x4f,0x6a,0x25,0x99,0xc4,0xb7,0x6e,0x82,0xed,0xc0,0xd5,0xf6,0xa2,0xb3,0xe0,0x18,0xa6,0xe5,0x6d,0xe1, + 0xbc,0xd3,0x89,0xea,0xeb,0x48,0x8c,0x27,0xa0,0x82,0x66,0xf2,0x24,0xd0,0x27,0xdf,0x77,0xa5,0x21,0x9a, + 0xc5,0x71,0x8c,0x68,0x9f,0xdf,0x3a,0x49,0x0c,0xa0,0xce,0xa8,0xd7,0x58,0x39,0x04,0x44,0xe8,0xe1,0x4f, + 0x6a,0x7c,0x57,0x59,0x84,0xc4,0x61,0x29,0xbd,0xc2,0xf4,0xed,0xbf,0x39,0x44,0x50,0xb9,0x97,0xf0,0x83, + 0xfa,0xb6,0x64,0xad,0x79,0x6a,0x8c,0x7d,0x5d,0xa0,0xec,0xec,0x53,0x2a,0xd1,0x52,0x6a,0x13,0x08,0xdc, + 0xab,0x69,0x44,0x15,0xfc,0x5c,0x86,0xc7,0xc1,0xa4,0xa9,0xe6,0x34,0x08,0xb6,0x1a,0xa6,0xdf,0x74,0x8e, + 0xbf,0x8b,0xac,0x49,0x83,0x93,0xdb,0x6d,0xda,0x77,0x27,0x4c,0x32,0xde,0x62,0x12,0xaf,0xd1,0xeb,0x30, + 0x80,0x99,0xfe,0xf7,0x44,0x84,0xd9,0xc9,0x5a,0xaf,0xc1,0x2b,0x8a,0x39,0x8a,0xed,0xb0,0x71,0x31,0xb6, + 0x96,0x43,0x61,0xbe,0x47,0x58,0x1e,0x56,0x1e,0x77,0xcf,0x56,0x4d,0x53,0x16,0x77,0x31,0x0d,0x52,0x29, + 0xc2,0x0a,0xec,0xa5,0xdc,0x70,0x53,0x98,0x6a,0x29,0x8d,0x16,0xc1,0xaa,0xfe,0xe8,0x80,0x1f,0x61,0x3b, + 0x4a,0x4d,0xa5,0x17,0x77,0x33,0xd4,0x95,0xdc,0x80,0xba,0x0e,0x8b,0xb1,0x5e,0x93,0xbd,0xc0,0x64,0x04, + 0x71,0x35,0x66,0xf3,0x59,0x93,0x11,0xb9,0x1c,0xb3,0x80,0x0c,0x69,0xa6,0xad,0xf5,0xba,0x32,0xb5,0xc4, + 0x7d,0xcd,0xd8,0x8a,0x7c,0xe8,0x6c,0xbc,0xf3,0x98,0xc3,0xf2,0x3c,0xe7,0xe3,0xe1,0xf0,0x20,0xf2,0x63, + 0xf2,0x9b,0x69,0xd4,0xe1,0xaf,0x89,0x70,0xa4,0xea,0x34,0x9c,0x7d,0x5b,0xba,0x50,0xc9,0xc1,0xe9,0xc7, + 0xb0,0x5d,0x94,0x98,0x87,0x0e,0x22,0xce,0x78,0xe3,0x74,0x53,0x0b,0xa4,0xba,0x4f,0x7d,0xf3,0xd0,0xa2, + 0x65,0x38,0x85,0xf0,0x3e,0xff,0x42,0x04,0x60,0x63,0xb2,0x2a,0xc1,0xe4,0xe2,0x00,0x26,0x86,0x1c,0x44, + 0xd6,0xee,0x0f,0x68,0xf1,0xc7,0x95,0xd8,0x45,0xc5,0x77,0x4f,0x27,0x3a,0xb8,0xc1,0x5d,0x9e,0x36,0xd5, + 0x89,0xcd,0x1c,0x17,0xdd,0x68,0xcd,0x1e,0x02,0xab,0xdc,0x1e,0x36,0x36,0x47,0x50,0x6f,0x30,0xc1,0x2e, + 0xaf,0x6f,0xaa,0x72,0x92,0xd5,0x75,0x36,0x35,0x4b,0xaf,0x0d,0x68,0x24,0xbe,0x8e,0xf8,0x11,0xec,0xca, + 0xc3,0x56,0xd1,0xd4,0x2f,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x56,0xc1,0xb6,0x61,0xa8,0x17,0x2c,0x04,0xa5, + 0xd9,0xa5,0x86,0x71,0x31,0xbb,0x00,0x58,0x74,0x3e,0xc6,0x6c,0x7b,0xef,0x31,0xed,0xec,0xda,0x2b,0x70, + 0xbf,0x53,0xe0,0x3e,0x7c,0xd4,0x2c,0xbb,0xe6,0x77,0x83,0xc9,0xa1,0xd3,0x79,0xa8,0x6d,0xbf,0x1d,0xc1, + 0x0b,0x63,0xed,0x14,0x41,0xaf,0xbc,0xa9,0xd7,0x53,0x46,0x53,0x4d,0x6b,0xe9,0x8d,0x2f,0x9f,0xf1,0xf0, + 0xf2,0xd9,0xd6,0xe8,0x6a,0x37,0x0d,0x8e,0x00,0xdf,0xed,0x10,0xe0,0x42,0xb8,0xf7,0x71,0x20,0x3d,0x73, + 0xe4,0xec,0x0d,0x0c,0x73,0xb2,0x5e,0x7b,0x94,0x3e,0x61,0xc4,0x79,0x61,0x74,0xfa,0xc1,0x29,0xdb,0x2b, + 0xef,0x85,0x15,0xcf,0x47,0x25,0xb1,0xec,0x5c,0x60,0xf4,0xe0,0x06,0x93,0x24,0xc1,0xd1,0x6f,0x71,0xbf, + 0xb9,0x2a,0xb4,0x4d,0x05,0x8d,0x3a,0x46,0x69,0x11,0x82,0xb5,0xd0,0xf3,0x26,0xe0,0xd5,0xb1,0xc6,0xfb, + 0xda,0x85,0x21,0x30,0x3b,0x68,0x17,0xb7,0x99,0xa6,0xb4,0x95,0xe1,0x29,0x4e,0xb8,0x87,0x79,0x04,0x87, + 0x41,0xd0,0x35,0x04,0xca,0x92,0xb7,0xb0,0x84,0x4d,0x92,0x29,0xc3,0xdb,0x2a,0xa5,0xb1,0xb0,0x75,0xb5, + 0xcc,0x25,0x8f,0x5f,0x26,0xde,0x05,0x80,0xf5,0xc9,0x8f,0xb6,0x68,0xb4,0xcd,0x6e,0x8c,0x51,0x6f,0x3c, + 0x67,0x7d,0x30,0x44,0x61,0x76,0x93,0xd3,0x4e,0xd2,0x6e,0x4f,0x13,0x51,0x16,0xb7,0x66,0x4d,0x37,0xef, + 0x1a,0x54,0xdc,0x15,0x4b,0x67,0x82,0x07,0x67,0x8a,0x6d,0x6c,0xa2,0xa0,0xd9,0x45,0xe8,0x32,0x3c,0xb6, + 0x07,0xe8,0x27,0x7a,0x50,0x24,0x68,0xfd,0x2e,0x26,0x97,0xd6,0x7c,0x2f,0xa0,0xa7,0x56,0xd3,0x61,0xce, + 0x2f,0xb9,0xed,0x47,0xfb,0x12,0xce,0xc6,0x89,0x3e,0xdc,0xf5,0x09,0xc4,0xdb,0x14,0x89,0x9f,0x73,0x5c, + 0x9e,0x30,0xce,0x70,0x4e,0xf2,0xfa,0x41,0x43,0x0b,0x4c,0x66,0xb8,0xe7,0x1e,0x92,0xda,0xba,0xb0,0xa7, + 0x83,0x16,0xb0,0x77,0x9a,0x2e,0x86,0x91,0x73,0xa7,0x17,0x73,0xb9,0xed,0x13,0x20,0x22,0xfc,0x82,0x66, + 0x3c,0xdc,0xfe,0xde,0x44,0xdf,0x8b,0xf6,0x2c,0x5e,0x92,0x78,0x28,0x81,0x12,0x4f,0x6b,0x3b,0x0d,0xd6, + 0x8b,0xc2,0xc7,0x64,0x2d,0x6c,0x24,0x31,0xd8,0xff,0xd4,0xf6,0x6c,0xb5,0xe5,0x0b,0x18,0x82,0x80,0x25, + 0x2c,0x5a,0x67,0x5c,0x8d,0xb4,0x29,0x2f,0x64,0x0c,0x37,0xc4,0x8b,0x03,0xb3,0x1b,0x87,0x16,0xeb,0x68, + 0x6b,0xcf,0xaf,0x71,0x40,0x44,0xb8,0x37,0x72,0xf6,0xaa,0x43,0x17,0x9f,0x4f,0xf7,0xf6,0xf8,0xb5,0xc0, + 0x58,0x62,0x5d,0x60,0xd3,0x46,0xb4,0x9e,0x3b,0xc1,0x76,0xf4,0xed,0xd6,0x80,0x30,0x50,0x47,0x9d,0x85, + 0xd6,0xb8,0xdf,0xd3,0x2a,0xba,0x3d,0x5d,0x8d,0x2b,0x39,0x3f,0x64,0xb6,0xc6,0xa9,0x3e,0x4e,0xf4,0xb1, + 0xc2,0xf7,0x9d,0x18,0x51,0x8d,0xbd,0x0d,0x99,0x00,0xe4,0x94,0x28,0xd0,0x40,0xdb,0x29,0x34,0x26,0x7a, + 0xa1,0xa3,0x2f,0xb2,0x4f,0x4b,0x3e,0xdc,0x53,0xf1,0x8f,0x88,0xc6,0xb4,0xad,0x89,0xf1,0x3c,0x9b,0x97, + 0x93,0x8f,0x1a,0x7b,0xd8,0x8e,0xd1,0x22,0x7a,0x99,0x9b,0x0e,0xd1,0x6c,0xc9,0xdd,0xee,0x3d,0x35,0x93, + 0x16,0x0a,0x24,0xf4,0xa5,0xaa,0xa4,0x1f,0x39,0x76,0xef,0xc9,0xbe,0xd1,0x61,0x2d,0xb4,0x83,0xaf,0x17, + 0x45,0x22,0x3e,0x0e,0xd8,0xd9,0xd7,0x04,0xbc,0xe8,0xbb,0x37,0xeb,0xa6,0x34,0x61,0xf6,0xb5,0xf4,0x71, + 0xde,0xba,0x8a,0xfb,0x58,0xa2,0x5b,0x9c,0x8c,0xc0,0x28,0x53,0x99,0xdd,0x39,0x62,0x65,0xd3,0xde,0xb8, + 0x4a,0x2b,0xdc,0x1d,0x92,0x8a,0x33,0xef,0x81,0xaa,0x89,0xec,0x16,0x46,0x90,0x88,0x6f,0x1d,0x12,0xe3, + 0x6e,0x60,0x79,0x42,0x4e,0xd4,0x2f,0x70,0xbf,0xd9,0x0b,0x4b,0xc1,0xb7,0x04,0xfb,0x42,0x03,0xe1,0x58, + 0xb2,0xb4,0x93,0xef,0x7f,0xb4,0x45,0x7c,0xe8,0x62,0x91,0xa0,0x90,0x72,0x48,0x67,0xcc,0xf8,0x2e,0xf3, + 0x9a,0xdc,0x0a,0x3d,0xa0,0x05,0x93,0x6b,0x09,0x57,0x6a,0xc9,0x71,0xa2,0x3d,0x95,0x3a,0x5a,0x59,0xf6, + 0xe1,0x46,0xb9,0xc8,0x4a,0x93,0x71,0xdd,0x66,0x19,0x4e,0x6c,0x84,0x27,0x8d,0xba,0xf9,0x62,0x95,0xbd, + 0xa4,0x02,0xe4,0x47,0x4a,0x0b,0x08,0x91,0x02,0x61,0x22,0x1f,0x2f,0xe2,0x4f,0x13,0x48,0x48,0x80,0x99, + 0xce,0xa4,0x27,0xce,0xa4,0x5f,0x2f,0x93,0x77,0xaa,0x2b,0xc1,0xaf,0x31,0x50,0x84,0x94,0x58,0xb2,0x27, + 0x24,0x32,0xe9,0xc9,0x4b,0xf7,0xb8,0x65,0xe4,0xde,0x85,0xd8,0x95,0x7d,0x9f,0x80,0x7c,0x69,0x31,0xee, + 0x3a,0x51,0x94,0x38,0xe0,0x8a,0x52,0xef,0xdb,0xac,0x70,0xd8,0x89,0x7d,0x71,0xe9,0x63,0x3f,0x8b,0xd8, + 0xa7,0x30,0xd3,0xa8,0x44,0x9f,0xaf,0xdc,0x3a,0x3f,0x13,0x0b,0xb6,0x37,0x2b,0x4c,0x8e,0x9e,0x37,0xa5, + 0xbd,0x52,0x75,0x41,0xe3,0x8b,0x60,0xcb,0x4a,0xd4,0x61,0x5b,0x56,0xdc,0x19,0xa5,0x30,0x98,0x3e,0x9d, + 0xa0,0x76,0x0f,0x0d,0xa4,0x99,0xc9,0xf1,0x3d,0x23,0xbd,0xf2,0x7e,0xb2,0x62,0xdc,0xdd,0xfa,0xca,0x91, + 0x22,0x42,0x03,0x1a,0xd1,0xa0,0xee,0x1e,0x5f,0x44,0x13,0xec,0xf9,0xe5,0xec,0x97,0x2e,0xc0,0xab,0x14, + 0x66,0xad,0xa1,0x97,0x8a,0x2b,0x99,0xb4,0x40,0x54,0x12,0xe2,0xd3,0x15,0x31,0x47,0xad,0x50,0x30,0xe9, + 0x6d,0xfc,0xce,0x4e,0x17,0xb1,0xd9,0x8c,0x42,0x53,0x96,0x45,0x8b,0xa4,0x73,0xb1,0xce,0x5a,0x04,0x65, + 0xa1,0x09,0xca,0xc2,0x12,0x94,0x45,0x87,0xa0,0x2c,0xba,0x04,0x65,0xd1,0x21,0x28,0x8b,0x5e,0x82,0xb2, + 0xf8,0xef,0x09,0x4a,0x33,0x20,0x4d,0x51,0xca,0x4b,0x1c,0xdc,0xc8,0x6e,0xc0,0xfc,0xce,0x8a,0xd8,0xab, + 0x41,0x3b,0x6b,0x14,0x6e,0x71,0xa2,0x56,0x7d,0x61,0x4b,0xca,0xcb,0x26,0x33,0x63,0xea,0xf4,0x8c,0xff, + 0xec,0x05,0x84,0x91,0xc3,0x39,0x07,0x51,0x8e,0x5a,0x17,0x57,0x03,0x3b,0xbb,0xb7,0xb8,0xaf,0x08,0x0e, + 0x07,0xbe,0xfe,0x95,0xba,0xba,0x61,0x4a,0x2c,0xc5,0x7d,0xf6,0x75,0x97,0x53,0xa7,0x83,0x3d,0x02,0x48, + 0xe8,0xb8,0xe9,0x0c,0x39,0xfc,0x1c,0x1b,0xef,0xc9,0xbd,0xcc,0x8f,0x8c,0x4e,0x43,0x74,0x0e,0x93,0x36, + 0xcb,0x24,0xed,0x05,0x6d,0x1c,0x67,0xc3,0xb0,0xdb,0x44,0xbb,0x3b,0xda,0x44,0x96,0x31,0xc8,0x6b,0x9b, + 0xff,0xd9,0x80,0x6e,0x26,0x12,0xe9,0x01,0x87,0xff,0x39,0x94,0x38,0x84,0x6c,0x3f,0xa7,0x61,0xa5,0xe0, + 0x88,0x3f,0xa5,0x09,0x76,0xa8,0x89,0xc4,0x76,0x1b,0xb1,0x61,0xd3,0x3c,0xc1,0x07,0x2d,0xba,0x8e,0x04, + 0x8e,0x8e,0x75,0xd9,0xb1,0x63,0x64,0x77,0xe9,0x9d,0x5b,0x98,0xfc,0x56,0xa5,0xc2,0xe0,0xb6,0x67,0x1a, + 0x8e,0xa4,0x84,0x68,0x09,0xab,0x96,0x32,0xcf,0x25,0x6f,0xc7,0x8d,0xf6,0xbe,0xb0,0xd0,0xe9,0x59,0x6d, + 0xdf,0x53,0x77,0xee,0xa9,0x40,0x93,0xec,0xd9,0xf0,0xaa,0x4a,0x97,0x8f,0x8d,0xcf,0x81,0x7b,0x85,0xcd, + 0x84,0xce,0xb5,0x6a,0x4f,0xaf,0x88,0x4d,0xe3,0x72,0x5e,0xb0,0xa5,0x79,0x4f,0xa8,0x7f,0x37,0xd7,0x12, + 0x8c,0xdc,0x0f,0xc8,0x95,0x26,0xa5,0xb7,0x00,0xa5,0xe7,0xd9,0xc4,0xbb,0xba,0xc5,0x2f,0xa5,0x62,0xfd, + 0x25,0xec,0x91,0x79,0x37,0xbe,0xae,0xc4,0x57,0x10,0x1a,0x0b,0x53,0xc3,0x1c,0xd0,0xc6,0xed,0x84,0x11, + 0xf7,0x74,0x0b,0xaa,0x27,0xa6,0x95,0x8d,0x4f,0x59,0xd9,0xee,0xe4,0x1a,0x1e,0x10,0x57,0x03,0x97,0x4b, + 0x21,0x44,0xa5,0x4f,0xa2,0xc0,0xfb,0xa3,0x4d,0xb2,0x94,0x8b,0xac,0x0f,0x79,0xad,0x80,0xc9,0x35,0x99, + 0x13,0x81,0x62,0xbc,0xaf,0xa9,0x45,0x76,0x5a,0xfa,0xaf,0xab,0x6d,0xfc,0x5a,0x79,0x75,0x0e,0x23,0xef, + 0x5a,0xb9,0xb0,0x64,0xfb,0xd7,0xeb,0xb3,0xec,0xc8,0xb2,0x48,0x31,0xc7,0xe9,0xed,0xba,0x6e,0x19,0x53, + 0x57,0xe1,0x39,0x69,0xcc,0x63,0x4d,0x8b,0xc6,0x5f,0xd8,0x24,0x28,0x89,0x6d,0x04,0xc0,0x31,0x9c,0xc3, + 0x15,0x88,0xc1,0x2d,0xf2,0xa0,0x92,0x58,0xd3,0xec,0x43,0x1d,0x07,0xa7,0x97,0x20,0xf0,0xef,0x43,0xc3, + 0x50,0x40,0x4a,0xce,0x95,0x17,0xde,0xde,0x8d,0xa7,0x45,0xd8,0x15,0x99,0x48,0x0d,0x11,0xd7,0x31,0xd2, + 0x66,0xda,0x46,0x75,0x02,0xc1,0x61,0x79,0xdb,0x21,0x31,0xe9,0x95,0x1b,0xee,0x85,0x35,0x63,0xee,0x1a, + 0xd4,0x8a,0x27,0xfc,0x58,0xf9,0x9f,0x5a,0xcd,0x21,0x8b,0x06,0x08,0xed,0xf5,0xa8,0xca,0xda,0x8c,0xb9, + 0xe7,0x4b,0xdb,0xd1,0xc9,0xd2,0xb9,0xf1,0x07,0x17,0x39,0x37,0x22,0x7a,0xad,0x0c,0xf5,0x17,0xdf,0xdd, + 0x9b,0x22,0x44,0xa1,0x91,0x7e,0xa9,0xc0,0xdd,0xac,0xee,0x51,0x53,0x9e,0x93,0x6a,0x2b,0xfa,0x85,0xdb, + 0xdc,0xbf,0xae,0xee,0x1f,0xdc,0xff,0xe7,0xbd,0x73,0x15,0xfc,0x2a,0x8f,0x41,0xd4,0xc9,0xfc,0xda,0x65, + 0x7e,0xed,0x5f,0x10,0xba,0xd4,0xb0,0x00,0xef,0x3d,0x03,0x42,0xd9,0xd5,0xce,0x53,0x37,0xcb,0xee,0xa2, + 0x58,0xdb,0x37,0xd1,0x6a,0x64,0x55,0x05,0x0d,0x32,0x61,0xe5,0x18,0xce,0xbe,0xe7,0xbe,0x8f,0xa7,0xd7, + 0xcf,0xf0,0x63,0x99,0x7c,0x2c,0xff,0x20,0x42,0x27,0x82,0xe1,0x6a,0xdd,0x53,0x92,0x8d,0xef,0x3e,0x48, + 0x77,0x2e,0xa0,0x04,0x0e,0x7e,0x2d,0x82,0x7b,0xdf,0xdc,0x8d,0xef,0x3e,0xa0,0x52,0x84,0x35,0xf4,0xbb, + 0xfa,0x58,0xba,0xf2,0xce,0x0b,0x67,0xf0,0x7f,0x0e,0x0f,0x46,0x41,0xf4,0xcd,0x01,0x23,0xc2,0x4b,0x1b, + 0xf2,0x6e,0x56,0x65,0xd9,0xef,0x59,0x88,0x48,0xcb,0x0b,0x9b,0xe8,0xa2,0x8a,0x9b,0x8b,0xc0,0xd5,0x79, + 0x91,0xcc,0x45,0x0c,0xa3,0x2c,0xa5,0x18,0xb0,0xd1,0xcc,0x35,0xe7,0xd0,0xd1,0xac,0xa8,0x57,0x8a,0x4b, + 0x38,0x75,0xad,0x82,0x3a,0x54,0x9d,0xf5,0xd4,0x7c,0x91,0xd6,0xde,0xb5,0x97,0xea,0xb4,0x48,0xee,0xed, + 0x87,0xbf,0x5e,0x45,0xb4,0x16,0x57,0x45,0x32,0xed,0x0d,0x69,0x62,0xd7,0xed,0xd4,0x37,0x29,0xf0,0x6d, + 0x9b,0xc6,0x30,0x94,0xf8,0x61,0xb9,0x84,0xe5,0x74,0x4d,0xac,0x12,0x22,0xb0,0xc2,0xe4,0xf5,0xe8,0xd6, + 0x2a,0x75,0x6c,0x9b,0x83,0xa8,0xfd,0xe1,0x9e,0xd3,0x3b,0xd2,0xe7,0xef,0xa9,0x77,0xbf,0x3e,0x0a,0x8f, + 0x1f,0xee,0xff,0xfb,0x04,0x3d,0xfc,0xf8,0x87,0x3d,0x7c,0x5f,0xa8,0x60,0xff,0xce,0x61,0x80,0x6a,0x5f, + 0x94,0x57,0xa6,0x5a,0xaa,0xeb,0xd3,0xb6,0x4c,0xc6,0x2a,0xe0,0xd5,0xbb,0xb6,0xbe,0xc8,0xc6,0x72,0x51, + 0x0f,0x89,0xaf,0x03,0x51,0xbd,0xcf,0x71,0xd6,0xab,0x7d,0x73,0x99,0x62,0xa0,0xee,0x14,0xc9,0x71,0xe0, + 0xad,0x89,0xe3,0xe1,0x02,0x73,0xe5,0x61,0x70,0xa2,0x5e,0xa3,0x94,0xd8,0x5f,0x1e,0x31,0x8c,0x51,0xa6, + 0x00,0x1b,0x55,0xa1,0x33,0xd8,0xa8,0x1b,0x72,0x78,0x31,0xee,0xb6,0xe9,0x3f,0xe8,0xf0,0x94,0xf6,0xae, + 0x5d,0x93,0xf1,0x58,0x22,0x11,0xa3,0x4d,0x79,0xe2,0x3c,0x77,0x47,0x33,0xd2,0xfd,0x37,0xb9,0x41,0x48, + 0x7c,0xce,0xa7,0xd4,0xa9,0x27,0x45,0x72,0x23,0xc4,0xc4,0xcb,0x8c,0x08,0x67,0x02,0x35,0x2a,0x78,0x9e, + 0x13,0xf3,0xd9,0x77,0xc3,0x6a,0x9d,0xcf,0x61,0x98,0x41,0x74,0x3d,0x41,0xd1,0x74,0xc5,0x93,0xf4,0x3e, + 0x5f,0x22,0xc1,0x5c,0xf7,0xcb,0x99,0x59,0x05,0xd1,0x0e,0xec,0xab,0xf0,0xca,0x6d,0x3e,0x93,0x7b,0x60, + 0xd9,0x7b,0x43,0x81,0xba,0x6f,0x25,0xe4,0xe7,0x05,0x0d,0x66,0xaa,0x77,0x1d,0xd1,0x23,0x27,0xca,0x5c, + 0xfe,0xd8,0xdb,0x91,0x56,0xb8,0xfb,0xf8,0x53,0xe1,0x25,0xc0,0x95,0x4b,0x52,0x7e,0x28,0x3e,0x16,0xe5, + 0x55,0xa1,0x2b,0x45,0x5a,0x27,0x7a,0x7e,0x7c,0xae,0xfa,0x82,0xe3,0xc7,0xef,0x0a,0xe5,0x5d,0xc2,0x88, + 0x0f,0x4f,0xe7,0xf9,0x2c,0x9b,0x5c,0x4f,0xe6,0x19,0xee,0x9d,0xa6,0x3e,0x15,0x1b,0xf5,0x86,0x20,0xf2, + 0xf8,0x3f,0xbf,0x5e,0x0d,0xef,0x9c,0xdc,0x53,0x8f,0x21,0x2b,0x3b,0xe5,0xbd,0x75,0x7a,0x4a,0xe4,0xd8, + 0xcd,0x46,0x7d,0xa0,0x24,0x47,0xa6,0xda,0x2b,0xfc,0xc4,0xb3,0x47,0x3d,0xef,0xcf,0xfd,0xe9,0xe7,0x27, + 0xc5,0x65,0x5e,0x95,0x85,0xbe,0x0f,0x7d,0xb7,0x95,0x00,0x49,0x1e,0xf7,0x54,0xbd,0x28,0x92,0xe7,0xc5, + 0x60,0xd0,0x9f,0xdb,0x06,0x78,0xf5,0xb4,0x48,0x3e,0x50,0x59,0xed,0x52,0x54,0xa4,0x97,0xf9,0x39,0x38, + 0x85,0xe1,0x8a,0x26,0xec,0xe1,0x39,0x5f,0x38,0xd5,0x2a,0xff,0xaa,0x48,0x9e,0x52,0xf9,0x7b,0x8b,0x3a, + 0xcf,0xd6,0x84,0x7b,0xa6,0x54,0x44,0xdb,0x84,0x3d,0x2d,0x22,0xf5,0x52,0xb2,0x9f,0x7a,0x1e,0x8d,0x28, + 0xb9,0xf3,0xf5,0xf0,0x00,0xd8,0x4d,0xbd,0xdd,0xce,0xcf,0xa6,0xe7,0xd9,0x3d,0xce,0x7c,0xb4,0x9d,0x49, + 0x70,0x50,0xd1,0x39,0x87,0x6c,0x3a,0xcd,0xcc,0x1b,0xae,0xdc,0x28,0xd4,0x8f,0xba,0x2b,0xf9,0xf2,0x82, + 0xf6,0xd6,0x3a,0x5f,0xa6,0x53,0xfa,0x53,0xd2,0x9f,0xb2,0x76,0x5d,0x82,0x53,0x7b,0x59,0xeb,0x4f,0x7e, + 0x2a,0x92,0x90,0xbf,0x99,0x5c,0x54,0x44,0xa2,0xfc,0x7a,0xef,0xd7,0xe9,0x9e,0xd7,0xfb,0x9b,0xcd,0x90, + 0x6f,0x1a,0x8e,0xd4,0x0f,0x50,0x62,0x83,0xaa,0xfa,0x50,0x70,0x94,0x4d,0x60,0xe5,0x67,0x6c,0x0f,0xd1, + 0x7f,0x2d,0xf3,0x33,0xc2,0x27,0x3a,0x46,0x43,0xa0,0x6e,0x70,0xad,0xb3,0x47,0x09,0xa3,0xb2,0x83,0x0d, + 0xe1,0x16,0x3d,0xcb,0xdb,0x31,0x01,0xd1,0x83,0x7d,0xfb,0x3d,0x43,0xfd,0xb3,0x22,0xf2,0xdc,0xce,0xd1, + 0xfe,0xef,0x85,0xfa,0xbe,0x50,0xbf,0x79,0x28,0xa8,0x43,0x0b,0xd0,0x18,0x7f,0x87,0x61,0xcd,0xef,0xd4, + 0x1e,0x16,0xb5,0x0f,0x86,0xce,0xe7,0xe5,0x59,0x3a,0x07,0x4d,0xca,0x88,0x0a,0xf3,0x22,0x49,0xc0,0xfd, + 0xe0,0x05,0x87,0x59,0x71,0x39,0xfc,0xf1,0x87,0x27,0xa7,0x4f,0x5e,0xfd,0x18,0xa9,0xdf,0x09,0x96,0xbf, + 0x6b,0x81,0xc8,0xe9,0x29,0x32,0x1f,0x3f,0xf9,0xf1,0xfd,0xeb,0xd7,0x2f,0xde,0x9d,0x7e,0xfb,0xe2,0xf5, + 0xa3,0x87,0x2f,0x4e,0x9f,0xbd,0x7e,0xfd,0xfd,0xe9,0xa9,0xfa,0xb6,0x1f,0x70,0xdf,0x5d,0x2f,0xce,0x4a, + 0x6a,0xf4,0x7d,0x28,0x4f,0x51,0x7f,0xdf,0xf4,0xf5,0xcc,0x28,0xd7,0xb9,0xa9,0x39,0x1a,0x7d,0x7f,0x4b, + 0xcd,0x19,0x17,0xa7,0x9f,0x68,0xfc,0xae,0x3d,0xeb,0x1e,0xff,0xad,0x83,0xe9,0xe3,0x92,0xed,0x1e,0x84, + 0x61,0x43,0x6c,0xb7,0x8f,0xbf,0x1e,0x4c,0xbf,0xcb,0x41,0x5b,0x74,0x55,0x50,0x76,0x2a,0xff,0x1b,0x5a, + 0xd6,0xd6,0x37,0x5e,0x41,0xac,0x7f,0xab,0x2c,0x21,0x8b,0xb4,0xf2,0x17,0xf2,0xb3,0x1d,0x54,0xd9,0x46, + 0x9b,0x1a,0xfc,0x5c,0x24,0xe7,0xea,0xdf,0x60,0x08,0x7e,0x29,0xb6,0x3e,0xcf,0xa7,0xc9,0xbf,0x89,0x6e, + 0xd3,0xd7,0x42,0xae,0xce,0xa0,0xc6,0xdf,0x8c,0x7e,0x29,0xda,0x7d,0x7c,0xb7,0x3a,0xeb,0xe9,0x26,0x95, + 0xd6,0xf1,0x06,0xa9,0xb9,0xd6,0x27,0xe2,0x0a,0xd9,0xfd,0x6a,0x15,0xda,0xef,0xd4,0xd6,0x27,0x72,0x29, + 0xb8,0xdf,0x3f,0xef,0xce,0x70,0xfb,0x88,0xce,0x3c,0xce,0x96,0x22,0x6f,0xef,0xd4,0x50,0x94,0x0d,0x11, + 0xd6,0xfd,0xf7,0x02,0xba,0x0e,0x5b,0x81,0x2b,0xdb,0x49,0x65,0x5d,0x3b,0x29,0xbe,0xf8,0x7e,0x65,0x6f, + 0x09,0xb4,0x0d,0xb3,0xe1,0x3e,0x4f,0xe7,0xbf,0x0a,0x44,0x86,0xce,0xaa,0xce,0x91,0xef,0x8c,0xb2,0xf4, + 0xf4,0xc0,0x99,0x47,0x5f,0xe8,0xc9,0xd7,0x59,0x75,0xef,0xf3,0xd4,0x37,0x75,0xf2,0xa5,0x58,0xfa,0x6e, + 0xcf,0x6c,0xbe,0x30,0x17,0x7b,0x16,0xb5,0xb9,0x91,0x44,0xbe,0xd2,0xb7,0x67,0x95,0xf2,0xea,0xae,0xd3, + 0xf2,0x0b,0xb9,0x6b,0xb5,0xda,0xa9,0xe6,0x0e,0x4c,0x3f,0x95,0xcd,0x18,0x61,0x70,0x0c,0x2a,0x4f,0x37, + 0xd1,0x36,0xbc,0x35,0x97,0x78,0x6e,0x99,0x38,0xb7,0xea,0xd1,0xd7,0x91,0xfa,0x49,0x55,0x0a,0x07,0x0e, + 0x7d,0x0f,0xa9,0xbd,0x22,0xd6,0x26,0x38,0xcf,0x32,0xd6,0xaa,0x48,0xa2,0x89,0xc0,0xee,0x8a,0x1d,0xcd, + 0xa9,0xd1,0xa9,0x97,0xc0,0xb7,0xca,0x9a,0xd7,0x56,0x38,0xf3,0xda,0x4b,0xe3,0xdb,0xf4,0xfc,0xde,0x6c, + 0xc7,0x43,0x87,0xa9,0x91,0x6a,0xaa,0xe4,0x86,0x97,0x22,0x46,0x38,0xbf,0x59,0x7e,0xbe,0xe2,0x1b,0xd9, + 0x63,0x20,0xdd,0x51,0xa3,0x43,0x96,0xc0,0xfa,0xb7,0x07,0x73,0xf6,0x4f,0xcb,0x46,0xf5,0xa1,0x79,0xa2, + 0x7c,0xc2,0xac,0x72,0x50,0x4a,0x0d,0x6b,0xbd,0x5e,0xe7,0xc2,0x15,0x83,0x8d,0xf9,0x7a,0x0e,0x8e,0xc0, + 0x22,0x6c,0x96,0x5c,0x88,0xe3,0x4c,0xea,0x78,0xd5,0x11,0x95,0xc7,0x9b,0x34,0x1a,0xea,0x46,0x55,0x55, + 0xd2,0xb9,0x40,0x48,0xe5,0x55,0x07,0x35,0x54,0xd4,0xf8,0x71,0x80,0x3d,0x1b,0x20,0x7a,0xf7,0xd2,0xb3, + 0xd7,0xd0,0xf1,0xde,0x90,0xc2,0xf1,0xcb,0xf0,0x50,0xc2,0xb5,0x2d,0xa8,0xe0,0x5c,0x50,0x67,0x30,0xe3, + 0xe8,0x31,0xe7,0xd3,0xc6,0x80,0x15,0xcc,0x08,0x8e,0xc2,0xbc,0x52,0x59,0x7f,0x2c,0xf0,0x63,0x5c,0x88, + 0x66,0x43,0x1b,0x59,0x99,0xc4,0xfe,0xfe,0x28,0xe2,0xbb,0x7c,0x6d,0x96,0xb5,0x49,0x47,0x50,0x7c,0xed, + 0xe6,0x8a,0x19,0x87,0x17,0x89,0xbe,0x87,0x5c,0x82,0x5f,0x8c,0x74,0x84,0xce,0x4c,0x22,0x74,0xca,0xb0, + 0x62,0x7e,0x34,0x83,0x89,0x11,0x9a,0xde,0x05,0xcc,0x34,0x43,0x43,0xb2,0x46,0x04,0xf7,0x2d,0x2a,0xcf, + 0x21,0x8f,0x29,0xcf,0xf8,0x8c,0x33,0x17,0x81,0xab,0x14,0x78,0x49,0x63,0x16,0xd8,0x53,0x81,0xf3,0x10, + 0xa3,0x6c,0x3b,0xb5,0x04,0x23,0x1e,0xd7,0xc3,0xb4,0x20,0x4d,0x03,0x7d,0x4a,0x10,0x56,0x5f,0x94,0xab, + 0xf9,0x94,0xf6,0x2a,0xcd,0x60,0x03,0xd8,0x52,0x75,0xb5,0x8d,0x48,0x25,0xbc,0x8a,0xc1,0x15,0xd9,0x92, + 0xd7,0xfc,0x17,0x8d,0x1f,0x2e,0x17,0xec,0x68,0x4c,0xd8,0xea,0x28,0x94,0x8b,0xa2,0x69,0xe8,0x81,0xbe, + 0x6c,0x7a,0x2b,0x32,0x4a,0x18,0x3e,0x6e,0x4b,0x84,0x24,0x06,0xa3,0xa5,0x24,0x93,0x66,0x13,0x77,0xb3, + 0xbd,0x5b,0xa3,0x7b,0x35,0x42,0xda,0xe1,0x17,0xeb,0x72,0x24,0xda,0x1e,0x84,0xad,0x26,0xda,0x24,0x04, + 0x84,0xa9,0xb2,0xd2,0x97,0xfa,0xb6,0xe6,0x2e,0x43,0x38,0x50,0xa4,0x5e,0xa5,0xf3,0x8f,0x38,0x20,0x46, + 0xb5,0xb7,0x0b,0x38,0xf5,0x96,0x4b,0xb3,0x7c,0x49,0x79,0x16,0x69,0x19,0x43,0xe3,0xcb,0x18,0xee,0xa0, + 0xe7,0x08,0x08,0x4f,0xc8,0x9a,0x7e,0xa8,0x2f,0xaa,0x55,0xb9,0xdf,0x91,0xdb,0x6e,0xe6,0xea,0xc3,0xfd, + 0x0f,0xe5,0x3a,0x2e,0xb9,0xfd,0x78,0x52,0xe1,0x1a,0xac,0x5e,0x56,0x66,0x34,0x91,0xc0,0x2c,0xb7,0x30, + 0x7d,0x3b,0xc5,0xf8,0xb1,0x4e,0x89,0x1b,0xdf,0xef,0xd5,0x52,0x20,0xcd,0x38,0x8b,0x1f,0x8b,0x14,0x87, + 0xb8,0xb8,0xde,0x6d,0x35,0xc1,0x86,0x4a,0x3e,0x10,0x01,0x78,0xe7,0xf6,0x02,0x7b,0x41,0x1d,0x9c,0x24, + 0xcf,0xa9,0x10,0xf5,0x88,0xa9,0xd0,0xad,0x43,0x49,0x74,0xc5,0x84,0x57,0x7e,0x62,0xf3,0x69,0x7b,0x97, + 0x5e,0x63,0x92,0x1a,0x9b,0x64,0xed,0xdb,0x76,0xda,0x48,0x23,0x5b,0xaf,0x7b,0xc2,0xe7,0x37,0xda,0x8c, + 0x91,0xc8,0xdb,0x4b,0xd8,0xd4,0x45,0x6d,0x7f,0x91,0xc6,0x48,0x3e,0xe1,0x2d,0x02,0xa5,0x08,0x9c,0x46, + 0x52,0x62,0x40,0xba,0x17,0xfe,0xb1,0x1e,0xf1,0x38,0x3d,0x89,0xf8,0x0e,0xa5,0x24,0x1d,0xa7,0xc6,0xe9, + 0xbd,0x8e,0x3a,0x37,0xe2,0xd5,0xd1,0x98,0x38,0xb9,0xfa,0xc4,0xee,0xd8,0x0d,0xc6,0x2d,0xe1,0x4e,0xe9, + 0x61,0x91,0x35,0x17,0xe5,0x94,0x1f,0xe5,0xba,0x6b,0x3c,0x4d,0x74,0xb4,0x83,0xfe,0x89,0xd9,0x1e,0x4e, + 0xdf,0xb5,0x01,0x86,0x60,0xe6,0x61,0xaa,0x06,0x26,0x92,0x39,0x5b,0x3c,0x98,0xf6,0x2f,0x89,0xa5,0x49, + 0x1e,0x8b,0xba,0xb4,0x52,0xab,0x4a,0xcd,0xba,0xca,0xda,0x2e,0xcd,0x0d,0x08,0x20,0x9c,0x3d,0xc5,0xe5, + 0x56,0xc4,0xfb,0xe2,0x5c,0xe3,0x38,0x72,0x6c,0x3e,0xd3,0x43,0xb3,0x12,0x95,0x67,0x03,0x8a,0x83,0x78, + 0xf5,0xdf,0xa3,0x68,0xd5,0x22,0x0b,0xfd,0xbc,0xf0,0x07,0x44,0x14,0x37,0x86,0x7c,0xae,0x62,0xeb,0x56, + 0xf8,0x92,0xc8,0xf7,0xf4,0x3c,0x3b,0xba,0x48,0x8b,0x22,0x9b,0xaf,0xd7,0xbb,0xef,0xc3,0x76,0x12,0xe8, + 0x6e,0x73,0x47,0x53,0x3b,0x87,0xd0,0x5a,0xdd,0x54,0x2b,0x9c,0xc1,0x7c,0x6d,0x53,0x3b,0xd7,0xca,0x99, + 0xc2,0x9e,0xfe,0x19,0x07,0xc0,0x1f,0xe0,0xec,0xe7,0x6c,0x4b,0x2e,0x2b,0x46,0x7d,0xed,0x8a,0xd4,0xa2, + 0x4a,0x2e,0x69,0x9a,0xe9,0x30,0xba,0x3f,0xd2,0x0f,0x87,0x43,0x70,0xa8,0x5c,0x2a,0xf9,0x41,0xb5,0xab, + 0x5f,0xa0,0x48,0xdd,0xe8,0x4a,0x20,0xec,0xd9,0xdc,0x32,0xa9,0x84,0xb3,0x17,0x79,0xcd,0xf3,0xa9,0x1f, + 0xb5,0x85,0xef,0x79,0x95,0xe8,0x04,0x73,0x11,0x30,0x91,0xd2,0xf3,0x56,0x2b,0xe7,0x95,0xdc,0xaa,0xfc, + 0x43,0x44,0x3c,0x65,0xcb,0xa9,0xf1,0xdc,0x84,0x4d,0xa6,0x0f,0x56,0x15,0x03,0xc5,0x75,0xa5,0xce,0x64, + 0x68,0xc4,0x8c,0x9d,0x56,0x1d,0x41,0x93,0x16,0xa7,0x0e,0x02,0x1b,0x90,0x9a,0x85,0x57,0x84,0xa1,0x82, + 0xff,0xc7,0x56,0xeb,0x19,0xc0,0xc5,0xca,0xae,0xe2,0x2c,0xf2,0x0a,0x55,0x08,0x77,0x2b,0x85,0x8a,0xdb, + 0x0a,0x19,0x5b,0x3b,0x56,0xc7,0x67,0x49,0xd5,0x2a,0xa7,0x60,0x18,0x01,0xc1,0xe6,0x56,0xdc,0xc0,0x86, + 0xd9,0xcf,0x4a,0x6e,0xa3,0x3a,0x62,0x48,0x7d,0xcf,0x7f,0x3f,0x72,0x30,0xa9,0x4f,0x0c,0xb5,0xef,0xf8, + 0xef,0x43,0x9c,0x1d,0x77,0xf0,0xe7,0x75,0x1f,0x5d,0x6c,0xce,0xb9,0x05,0xe2,0xbf,0xb3,0x67,0xc4,0x29, + 0x63,0x2b,0xa2,0xc5,0xe4,0x1c,0x73,0x09,0xc6,0x66,0x98,0x93,0xab,0x71,0xa8,0xcf,0x44,0x3a,0x14,0x77, + 0x77,0x2b,0x7e,0x90,0xc3,0x06,0xb2,0x06,0x4e,0xc2,0x83,0x24,0x21,0x1e,0x1a,0x27,0xe1,0x41,0x33,0x34, + 0x44,0xf9,0x71,0x12,0x1e,0xf4,0x81,0xc4,0x95,0xb9,0x3a,0xdc,0xa7,0xde,0x17,0x9a,0xca,0x9c,0x9c,0x19, + 0x2a,0x9d,0xd8,0xa4,0xbd,0xbd,0x3b,0xba,0x21,0x89,0xf5,0x66,0xa9,0xd7,0x69,0x4e,0xe7,0xbe,0xab,0xc7, + 0x1e,0xe3,0x60,0xa5,0x34,0x31,0x9f,0x5d,0x3d,0xf6,0xdf,0x29,0xf3,0x39,0x21,0x2a,0x0d,0x10,0x5e,0x91, + 0x6e,0xaa,0xd3,0x20,0x40,0xdc,0xde,0x13,0x41,0xa1,0x19,0x73,0x39,0xa2,0x41,0x1a,0x8c,0x25,0x0e,0xfd, + 0xd7,0x8e,0xcf,0xcf,0xee,0x9b,0x42,0xc4,0x16,0x06,0xcc,0xe1,0xb0,0xa6,0x03,0xb1,0x0c,0x03,0x77,0xc5, + 0x65,0xcf,0x81,0xd9,0x73,0x08,0xb7,0xd0,0xe7,0x28,0x4b,0xf4,0x59,0xec,0xee,0x9e,0xda,0xb0,0xeb,0x95, + 0xd7,0x1f,0xdc,0xff,0xd7,0xd7,0xbb,0x08,0x8e,0xfb,0xca,0xa3,0x84,0xec,0x54,0x1a,0x13,0x33,0xf3,0x19, + 0xc2,0xe3,0xbc,0xf6,0x4f,0xfa,0x0e,0x7d,0x2e,0x9f,0x2a,0x8f,0x71,0xfc,0x97,0x8e,0x35,0x64,0x93,0x22, + 0x8f,0xa5,0x93,0xcb,0xaa,0x19,0x4a,0x13,0x0d,0xa0,0x1c,0xd6,0xaf,0x49,0xbc,0x7e,0xea,0xab,0xe8,0x94, + 0x15,0xad,0x18,0x63,0x70,0x03,0x41,0x51,0x73,0x51,0x95,0x57,0x74,0x80,0x3c,0x62,0xad,0xf6,0x5d,0xf9, + 0x6c,0x87,0xa6,0x6e,0x47,0xc3,0xf4,0x0e,0x22,0xe6,0xb6,0x97,0x13,0x16,0x29,0xd1,0x86,0xf0,0x11,0x55, + 0x7e,0x7d,0x63,0xe1,0x72,0x30,0xf8,0x3d,0x6c,0x75,0x11,0xfd,0x2f,0x97,0xa1,0x9e,0x1e,0x48,0x00,0x8a, + 0xd5,0x12,0xb0,0xe4,0xa2,0xf5,0xd1,0x31,0xd2,0x9a,0x13,0xe1,0x90,0x7b,0x1c,0x76,0x32,0x82,0xe2,0x51, + 0x1b,0xd8,0x20,0xb3,0x08,0x61,0x12,0x17,0x76,0xd2,0x25,0x2a,0x59,0x0b,0x7a,0x0d,0xab,0xef,0x83,0xb0, + 0xfd,0xde,0x48,0x09,0x64,0xe3,0x46,0x9d,0x2e,0x79,0xfd,0xfe,0x0c,0x7b,0x8e,0x2d,0x63,0x20,0x2c,0x03, + 0x5f,0xa0,0xfb,0x6d,0x33,0xc1,0x62,0xf4,0xf5,0x9f,0xc6,0x85,0xcb,0x1a,0x9c,0xd4,0x41,0x8b,0x07,0xb4, + 0x6b,0x86,0xeb,0xee,0xc8,0xdf,0x7d,0xed,0x9a,0xb6,0x76,0x61,0x27,0x41,0xa4,0x2f,0x61,0xa4,0x5c,0x85, + 0xb5,0xb7,0xd3,0xfd,0x89,0x6a,0xef,0xf9,0xa2,0x3d,0x89,0x26,0x02,0x66,0x67,0x86,0x44,0xe2,0xb0,0x25, + 0x9d,0xe1,0x4d,0xe0,0x21,0x99,0x5d,0xbd,0x17,0x80,0xa5,0x24,0xbd,0x5a,0x51,0xe1,0xf8,0x96,0xc5,0xd6, + 0x51,0xae,0x93,0xe4,0x23,0x2e,0xa4,0x66,0xb8,0xe5,0x27,0xa0,0xae,0x77,0x2d,0xd3,0xbf,0xa3,0xca,0x5a, + 0x23,0x8e,0x8a,0x6f,0x1e,0x56,0x83,0xc1,0x51,0xc5,0x17,0xb0,0x4d,0xbf,0xe1,0x9a,0xa2,0x82,0x16,0x84, + 0x0a,0xe9,0xd8,0xd6,0xc5,0xde,0xa1,0x3a,0x80,0x0c,0x87,0x0f,0xba,0x23,0x73,0x4f,0x66,0x34,0xfa,0x84, + 0x5d,0x8e,0x93,0xe1,0x40,0x3d,0x0b,0x11,0x23,0x11,0x58,0x40,0x64,0x35,0xad,0xf1,0x52,0xb7,0xfd,0xc1, + 0xc2,0x58,0xdd,0x61,0x56,0x13,0x43,0xc5,0x6d,0x7b,0xb6,0x35,0xda,0xd5,0x72,0x34,0x46,0x12,0xeb,0x75, + 0xce,0x17,0xe1,0xd9,0xad,0xd3,0x82,0x16,0xf1,0x01,0x35,0xb5,0xb6,0xf8,0x2b,0xd9,0xb2,0x95,0xde,0x74, + 0x93,0x33,0xd9,0xdf,0x7a,0xfb,0xb3,0xad,0xab,0x13,0xa1,0x3e,0x0a,0x33,0xc3,0x84,0xa9,0xbb,0xc6,0x52, + 0xe3,0x4f,0xed,0x6c,0xb9,0x78,0xfd,0xd6,0x16,0x36,0x9d,0xe9,0xc8,0xd0,0xc5,0x3e,0x00,0xf0,0x10,0x22, + 0x4f,0x84,0x7f,0xe2,0x40,0x8c,0xd1,0xaa,0x65,0x5b,0x84,0xf6,0x47,0x3b,0xcc,0xdf,0x5a,0xfa,0xf3,0xb0, + 0xbb,0x54,0x0d,0xc1,0xfd,0xb4,0xbc,0xfa,0xec,0x7a,0xe9,0xc1,0x21,0x8c,0xd0,0xa3,0x8c,0x68,0xbe,0xc7, + 0x46,0x77,0xb4,0x5e,0xaf,0x42,0x9b,0x69,0x8e,0x78,0x61,0x5e,0x47,0x7f,0xa9,0x73,0x9d,0xbd,0x3d,0x6a, + 0x1d,0xc4,0x87,0x1b,0xe1,0xd9,0x9e,0x10,0x61,0x92,0x15,0xab,0x45,0x66,0x64,0x39,0xaa,0x23,0xdb,0x81, + 0xc2,0x26,0x3e,0x57,0x35,0xfe,0x6e,0xd4,0x1b,0x2a,0x8e,0x1d,0x06,0xc6,0x7c,0xf4,0x29,0x0b,0xdf,0x79, + 0xd2,0x56,0xe1,0xf2,0x1f,0x53,0x09,0x04,0x15,0xf0,0x79,0x66,0x4d,0xd1,0xf0,0xf1,0xd7,0x1f,0x33,0xa0, + 0x27,0x28,0x40,0x5e,0xdb,0x29,0x89,0xfa,0xc2,0x06,0x24,0xad,0x06,0xdc,0x65,0xdf,0xc9,0xcd,0x29,0xcb, + 0x79,0xa4,0x34,0x46,0xa0,0x7d,0x99,0xaf,0x2a,0xa5,0x1d,0xf6,0x7f,0x2c,0x58,0x25,0x6d,0x5e,0x9f,0xcc, + 0x17,0x71,0x25,0x1c,0x1b,0x91,0x9a,0xd9,0x0c,0xef,0xb9,0xbc,0x6f,0xd8,0x5d,0x94,0x1d,0xcc,0xdb,0xf6, + 0x3d,0x2e,0x46,0x88,0x5c,0x5c,0xa3,0x0d,0x7b,0x92,0x89,0x7e,0x50,0x75,0xd7,0x96,0x87,0xb2,0x3a,0x29, + 0x84,0x19,0x21,0xa9,0xda,0xf6,0xdf,0x47,0x44,0x03,0x62,0xdd,0xe0,0x67,0x17,0x0d,0xef,0xb0,0x22,0x32, + 0x04,0xa9,0x9a,0x51,0xc7,0xb4,0xa0,0xce,0xbb,0xb0,0x49,0xf7,0x0f,0xa1,0x01,0x1e,0xce,0x2d,0x2e,0x40, + 0x04,0xd1,0xc7,0x00,0xca,0x8c,0x43,0x39,0x84,0xa5,0x2a,0x69,0x13,0x29,0xf3,0x1e,0xb7,0x99,0x2d,0xe3, + 0x92,0xb7,0x15,0x68,0x61,0xb7,0x8f,0x34,0x95,0xfa,0x77,0x77,0xc3,0x1c,0x6b,0x67,0x22,0x27,0x0c,0x4f, + 0x65,0xe8,0x47,0x5a,0x5c,0xbb,0x5e,0x9b,0xf0,0xac,0xce,0xb4,0x8f,0xcb,0x7b,0xef,0x7c,0xd3,0x82,0xb6, + 0x8b,0x74,0xf5,0x78,0xab,0x94,0x54,0x44,0xe9,0x4a,0x78,0x2e,0x7e,0x3c,0xd5,0x97,0x72,0x87,0xe6,0xd1, + 0x88,0x53,0xf9,0xa2,0xa7,0xdb,0xba,0x92,0xe4,0xc8,0x94,0x8b,0x39,0xcc,0x0d,0x47,0xed,0x6b,0xce,0x2e, + 0x71,0xcf,0xc6,0x9d,0xb9,0x31,0x5f,0xc2,0x2d,0x02,0x94,0xd4,0xc0,0xb8,0xc5,0x56,0x2a,0x26,0x97,0x37, + 0x69,0x35,0x6c,0x09,0xa9,0x8c,0x79,0xb0,0x30,0xef,0x08,0x8a,0x83,0x72,0xec,0x72,0xe2,0x0d,0x89,0xd2, + 0xa0,0x62,0x41,0x78,0x6c,0x44,0x42,0x1c,0x4d,0x1e,0xd8,0xad,0x3b,0x71,0x17,0x61,0xd7,0xc7,0x13,0xe2, + 0xf9,0x71,0x47,0xfb,0xab,0x70,0xae,0xba,0x6d,0xcb,0x8d,0x7f,0xdb,0xed,0x1f,0x6c,0x95,0x7c,0xcc,0xe2, + 0xf3,0x8d,0xb3,0x6e,0x5e,0x25,0xdb,0x13,0xec,0xe2,0x56,0x7c,0x26,0x0f,0x17,0x16,0xc9,0x3d,0x96,0xab, + 0x68,0x53,0xf2,0xc4,0xdf,0x81,0x65,0x03,0x4d,0x24,0xee,0x5d,0xf4,0x42,0x79,0x53,0x06,0x4d,0xc3,0x44, + 0x2b,0xca,0xd9,0x8b,0xbe,0xe9,0xd9,0xb6,0x3d,0x5b,0x59,0x79,0x61,0x36,0xe8,0xd9,0xae,0x02,0x20,0xce, + 0x45,0xf0,0xd8,0x28,0x09,0x1d,0xd6,0x7b,0x74,0x9b,0xfb,0xf7,0x8a,0xbe,0xfa,0x47,0x45,0x2b,0x5a,0x5b, + 0xe8,0xbf,0x62,0xf6,0x38,0x3a,0x83,0x55,0xf8,0xb3,0x81,0x5b,0x7b,0x4b,0xf1,0xc5,0xd2,0xee,0x9b,0x31, + 0xdf,0xe3,0x54,0xe1,0xda,0x68,0x8b,0x4f,0x89,0xd1,0x93,0x23,0xbd,0x8a,0xa2,0xb8,0x46,0x85,0xbb,0x07, + 0x3a,0x18,0x55,0xb5,0x51,0xda,0x32,0xe0,0x96,0xae,0x77,0xbb,0xdb,0xb4,0xb0,0x1f,0xbb,0x8d,0xb6,0xfb, + 0x63,0xe5,0x95,0x62,0xf5,0x2a,0xa8,0x35,0x2c,0xa4,0x9b,0x62,0xf9,0xf0,0xbc,0x70,0x3c,0x57,0x8a,0x18, + 0xb1,0x4c,0xef,0xd9,0x1e,0x47,0x08,0xa8,0xe9,0xf5,0xff,0x60,0xe4,0xc9,0x34,0x47,0x15,0x31,0x2e,0x77, + 0xba,0x77,0xb6,0x43,0xb2,0x89,0x1b,0x40,0x6d,0x06,0x6e,0x7a,0x1c,0x4d,0xd0,0x83,0x96,0x85,0x83,0x84, + 0xdd,0xa7,0xd1,0xc7,0x8d,0x77,0x4d,0x33,0x90,0xcf,0x87,0xaa,0x25,0xaa,0x7c,0x4c,0x7b,0xf6,0x79,0x95, + 0x1c,0xaa,0x17,0x55,0x72,0x5f,0x3d,0x45,0xc3,0x6f,0x7c,0xed,0x1d,0xdf,0xca,0xbd,0x2d,0xfb,0x3d,0x5d, + 0x11,0x6b,0xf9,0xb4,0x32,0x1a,0x38,0x9a,0xaa,0x1f,0x57,0x3c,0x4c,0x89,0x18,0xe7,0x21,0xff,0x71,0x1f, + 0x92,0x73,0xb0,0xde,0x91,0x5c,0x31,0x10,0x19,0xf1,0x8c,0x35,0xef,0xe4,0x30,0x24,0x3e,0x46,0x1a,0x99, + 0x88,0x11,0x94,0x2e,0x0f,0xaa,0xe8,0xa2,0x2c,0x9b,0x40,0x47,0x89,0xfb,0x9c,0x5e,0x90,0x23,0x27,0x0c, + 0x92,0xe5,0x49,0x8b,0xd1,0x7a,0xae,0x7f,0xf4,0xb6,0x45,0x92,0xb7,0xb6,0xc8,0xd6,0x2e,0xcd,0xbd,0x5d, + 0x53,0x6c,0xa3,0x3f,0xbb,0x8b,0x90,0x69,0xdb,0x79,0x9f,0x9e,0xcb,0x9d,0xbe,0xaa,0xd1,0xc7,0x16,0x87, + 0x9a,0xd5,0x47,0x99,0x49,0x53,0x5b,0x8e,0x82,0xc9,0x96,0x63,0x4e,0x24,0x34,0x2b,0xa1,0x27,0xa1,0xb6, + 0xef,0xb8,0xcb,0xda,0x9f,0x64,0xa1,0xd1,0xc7,0x99,0xc9,0xa5,0x0d,0xc6,0xa1,0xbc,0x45,0x64,0x21,0xab, + 0x28,0x6d,0xbd,0xa9,0xca,0x4f,0x22,0x18,0xd0,0xc9,0x75,0x36,0x9f,0xc9,0x7b,0xdf,0xd6,0xb1,0x17,0x7f, + 0x16,0x76,0x31,0x98,0x82,0x47,0x28,0x4c,0x1b,0x0a,0x48,0x87,0x0b,0x2d,0x1c,0x8e,0x33,0x39,0x83,0x01, + 0x25,0x9a,0x78,0x8f,0xb0,0x85,0x35,0x2f,0x85,0x07,0xfd,0x46,0x5d,0x9b,0x99,0x5c,0xbe,0x92,0xe9,0x4e, + 0x55,0x96,0xf4,0x34,0x2e,0xe4,0x89,0x88,0x89,0xcc,0x7d,0xc3,0xda,0x4e,0xb9,0xf0,0x19,0x62,0x1f,0x4f, + 0x76,0xc3,0x34,0x46,0xe6,0x6d,0x3c,0x93,0xd0,0xdd,0xb4,0x87,0x5c,0xca,0x21,0x29,0xfd,0x6e,0x91,0x82, + 0x4d,0x69,0x13,0x8f,0x20,0xec,0xb4,0x24,0xc8,0x9f,0x2f,0x2a,0xa9,0xef,0x3b,0xea,0xb3,0xe4,0xa1,0x5c, + 0x62,0x0a,0x61,0x55,0xc3,0xf6,0x12,0x89,0x8e,0x86,0xd6,0x7c,0xf6,0xc8,0xc0,0xe4,0xc9,0x3d,0x5d,0xb7, + 0x34,0x28,0x67,0xb6,0x19,0x9f,0xc0,0xcb,0xfb,0x2a,0xcb,0x6a,0xa7,0x17,0xee,0x2c,0xa1,0x3d,0xe8,0xdb, 0x1b,0x8e,0x76,0x60,0x81,0x95,0x32,0x11,0x38,0xfd,0x03,0xa8,0xe9,0x82,0xba,0x5c,0xf8,0xe8,0x93,0x18, - 0x09,0x1f,0xed,0x67,0x93,0x96,0xb9,0xb7,0xf2,0xaf,0xbb,0x7e,0xe3,0x5d,0x04,0x8b,0x08,0x11,0x1b,0x5e, + 0x09,0x1f,0xed,0xa7,0x93,0x96,0xb9,0xb7,0xf2,0xaf,0xbb,0x7e,0xed,0x5d,0x04,0x8b,0x08,0x11,0x1b,0x5e, 0x4b,0xdf,0x06,0xf1,0xcf,0x7e,0x7b,0xa0,0x35,0x21,0xb9,0xf4,0x98,0x43,0xe6,0x43,0xf5,0x12,0x08,0xed, 0x11,0x40,0x94,0x97,0x7b,0x24,0x87,0x04,0xdc,0x92,0x12,0x76,0xff,0x06,0xaa,0xd9,0x9a,0x6e,0x57,0xda, - 0xcc,0xf6,0x44,0xb6,0x95,0x6a,0x9b,0xb3,0xf5,0x04,0x65,0x49,0x2e,0x33,0x9f,0xb8,0x12,0x39,0x3f,0x94, - 0x0f,0xf0,0x71,0xe9,0xa1,0x65,0x94,0x8f,0xa2,0x9b,0x9e,0x18,0xe5,0x74,0xdc,0xdc,0x63,0x82,0xa0,0x91, - 0x00,0xb9,0xaa,0x87,0x20,0xb9,0x0b,0x28,0x0c,0x3f,0x03,0x47,0xfb,0x2e,0x04,0x8c,0x1a,0xe3,0xf1,0xf2, + 0xcc,0xf6,0x44,0xb6,0x95,0x6a,0x9b,0xb3,0xf5,0x04,0x65,0x49,0x2e,0x32,0x9f,0xb8,0x12,0x39,0x3f,0x94, + 0x0f,0xf0,0x71,0xe9,0xa1,0x65,0x94,0x8f,0xa2,0x9b,0x9e,0x18,0xe5,0x74,0xdc,0xdc,0x61,0x82,0xa0,0x91, + 0x00,0xb9,0xaa,0x87,0x20,0xb9,0x0d,0x28,0x0c,0x3f,0x03,0x47,0xfb,0x2e,0x04,0x8c,0x1a,0xe3,0xf1,0xf2, 0x79,0xb4,0xed,0x10,0x21,0x23,0x91,0xca,0x92,0x5c,0x3a,0x5e,0x7f,0x0f,0xd5,0x85,0x0d,0x59,0x22,0xe8, 0x90,0xd9,0xe0,0x5b,0x5d,0x2e,0xb5,0xeb,0x9a,0x6d,0xba,0xc4,0xbd,0x54,0xbc,0xf7,0x4b,0x13,0x7e,0xf7, - 0x35,0x0c,0xa7,0x69,0xdc,0x34,0x77,0xf7,0x42,0x8e,0x27,0x12,0x29,0xd6,0xdc,0x10,0x36,0x5b,0x65,0xac, + 0x15,0x0c,0xa7,0x69,0xdc,0x34,0x77,0x77,0x42,0x8e,0x27,0x12,0x29,0xd6,0xdc,0x10,0x36,0x5b,0x65,0xac, 0x6a,0xe4,0x7e,0x04,0x20,0xb5,0x3b,0x71,0x04,0xa2,0x14,0xee,0xf6,0x3d,0x33,0xc5,0xce,0x4f,0x9a,0xb4, 0x84,0x59,0xb6,0x68,0x64,0xba,0x73,0xd0,0x1d,0xbd,0x0b,0x88,0x23,0xb5,0xf3,0x6d,0x2e,0x22,0xb8,0xc0, - 0xaa,0x8c,0x2f,0xe2,0x65,0x28,0xfa,0x3e,0xb9,0xf3,0xd9,0xd4,0x8b,0x26,0x00,0x95,0xe3,0xcf,0x61,0x53, - 0x81,0xdb,0x32,0x44,0xda,0x19,0x6b,0xed,0x7a,0xc5,0xa8,0xed,0x1e,0x7a,0xe6,0xc1,0x99,0x66,0xdf,0x5b, - 0x82,0x01,0x9d,0xc7,0xf2,0x01,0xc5,0x46,0x9c,0x21,0xae,0xd9,0xba,0xdd,0xc8,0x25,0x3d,0x74,0x6e,0xf0, + 0xaa,0x8c,0xcf,0xe3,0x65,0x28,0xfa,0x3e,0xb9,0xf3,0xd9,0xd4,0x8b,0x26,0x00,0x95,0xe3,0xcf,0x61,0x53, + 0x81,0xdb,0x32,0x44,0xda,0x29,0x6b,0xed,0x7a,0xc5,0xa8,0xed,0x1e,0x7a,0xe6,0xc1,0x99,0x66,0xdf,0x5b, + 0x82,0x01,0x9d,0xc7,0xf2,0x01,0xc5,0x46,0x9c,0x21,0xae,0xd9,0xba,0xd9,0xc8,0x25,0x3d,0x74,0x6e,0xf0, 0x1d,0xcf,0x90,0xab,0xf1,0xa5,0x6c,0x4e,0xd0,0xd2,0x86,0x47,0x5e,0xef,0x0e,0x59,0x9c,0x27,0x3e,0x84, - 0xeb,0xa1,0x2a,0x1b,0x91,0x71,0x94,0x5b,0xd1,0x58,0x9a,0x14,0x27,0xf9,0x29,0x5c,0xcd,0x66,0xb4,0x82, - 0xb8,0xa3,0xf5,0x9a,0x6f,0x6a,0xd5,0xcb,0x87,0x6e,0x05,0xb8,0x27,0xfb,0xb1,0x50,0x30,0xe0,0xc0,0xe2, - 0xc7,0xa1,0x99,0x06,0x82,0x2f,0xec,0xd7,0xc6,0xaa,0xc8,0xee,0x02,0xd5,0x33,0x53,0xe0,0x27,0x03,0xef, + 0xeb,0xa1,0x2a,0x1b,0x91,0x71,0x94,0x5b,0xd1,0x58,0x9a,0x14,0xc7,0xf9,0x09,0x5c,0xcd,0x66,0xb4,0x82, + 0xb8,0xa3,0xf5,0x8a,0x6f,0x6a,0xd5,0xcb,0x87,0x6e,0x05,0xb8,0x27,0xfb,0xa1,0x50,0x30,0xe0,0xc0,0xe2, + 0x87,0xa1,0x99,0x06,0x82,0x2f,0xec,0xd7,0xc6,0xaa,0xc8,0x6e,0x03,0xd5,0x53,0x53,0xe0,0x27,0x03,0xef, 0x7d,0x78,0xb7,0x4a,0x7e,0x43,0xa8,0xf4,0x56,0xf4,0x8d,0xc6,0x70,0x57,0x0d,0xee,0x8e,0xe9,0x9d,0xf9, - 0x72,0x5c,0xc6,0x25,0x64,0x1b,0x23,0x48,0x8e,0x30,0x1e,0x16,0x80,0xbf,0x81,0xdf,0x26,0x6d,0x89,0x0b, - 0x75,0x41,0x6c,0x3a,0x11,0xb1,0xb9,0x06,0xcd,0x19,0xc6,0x96,0x33,0xfb,0xc7,0xa0,0x60,0xfa,0x16,0xb1, - 0x8f,0x17,0xf5,0x0f,0x36,0x2d,0xfc,0xb0,0x2b,0x0a,0xce,0x3b,0xdc,0x23,0xbc,0xee,0x55,0x0c,0x65,0xdb, + 0x72,0x5c,0xc6,0x25,0x64,0x1b,0x23,0x48,0x8e,0x30,0x1e,0x16,0x80,0xbf,0x86,0xdf,0x26,0x6d,0x89,0x73, + 0x75,0x4e,0x6c,0x3a,0x11,0xb1,0xb9,0x06,0xcd,0x19,0xc6,0x96,0x33,0xfb,0xc7,0xa0,0x60,0xfa,0x16,0xb1, + 0x8f,0x17,0xf5,0x0f,0x36,0x2d,0xfc,0xb0,0x2b,0x0a,0xce,0x5b,0xdc,0x23,0xbc,0xee,0x55,0x0c,0x65,0xdb, 0x61,0x3c,0x2a,0xff,0x2e,0x38,0xb8,0xc7,0x55,0xbe,0x4f,0xdc,0x52,0xf8,0x88,0x8a,0x6f,0x8a,0x64,0xee, - 0xd5,0xa4,0x98,0xae,0x89,0x59,0x60,0x1f,0xee,0xd8,0x82,0x51,0xad,0x43,0xd4,0xf1,0xc0,0xce,0xf4,0xeb, + 0xd5,0xa4,0x98,0xae,0x89,0x59,0x60,0x1f,0xee,0xd8,0x82,0x51,0xad,0x43,0xd4,0xf1,0xc0,0x4e,0xf5,0xeb, 0xb4,0x1f,0x54,0x1b,0x81,0x48,0x40,0xd9,0x36,0x02,0x35,0x06,0xc0,0x9a,0x12,0xb1,0x2d,0xc0,0x45,0x49, 0x52,0x84,0x03,0xef,0xe6,0xd2,0x39,0xb1,0xdd,0x43,0xdc,0x26,0xf4,0x39,0x1b,0x18,0x06,0xa4,0xcd,0xc8, - 0xc6,0x7d,0x2a,0x3e,0x5b,0x98,0xc1,0xbb,0xdf,0x4a,0xe6,0x26,0xf4,0x48,0x65,0x3a,0x3e,0x04,0x74,0x69, - 0x7f,0xfc,0x99,0xc2,0x1a,0x4d,0x15,0x51,0xcb,0x5a,0xee,0x1e,0x1b,0xc6,0xb5,0x93,0xe4,0x22,0xa7,0xe4, - 0x59,0x3b,0xb5,0x4f,0x71,0x2e,0x77,0x1e,0xb9,0x48,0x2e,0x58,0x5c,0xa1,0x09,0xe5,0x7e,0x69,0x5c,0x07, + 0xc6,0x7d,0x2a,0x3e,0x5b,0x98,0xc1,0xbb,0xdf,0x4a,0xe6,0x3a,0xf4,0x48,0x65,0x3a,0x3e,0x04,0x74,0x69, + 0x7f,0xfc,0x99,0xc2,0x1a,0x4d,0x15,0x51,0xcb,0x5a,0xee,0x0e,0x1b,0xc6,0xb5,0x93,0xe4,0x22,0xa7,0xe4, + 0x49,0x3b,0xb5,0x4f,0x71,0x2e,0x77,0x1e,0xb9,0x48,0x2e,0x58,0x5c,0xa1,0x09,0xe5,0x7e,0x69,0x5c,0x07, 0x21,0xd7,0xb8,0x8b,0x22,0xea,0xc0,0x84,0x5c,0x15,0xd8,0xf5,0x8b,0x5a,0xdf,0xb9,0xdc,0x29,0x70,0x1b, - 0x27,0x13,0x54,0xc6,0x1f,0xc2,0x37,0x9b,0xa9,0xac,0xd4,0x8d,0x43,0x28,0x87,0x6f,0xfb,0x02,0x94,0x25, - 0x0f,0xfe,0x07,0x97,0xb0,0xc7,0x0f,0x46,0xad,0xe1,0x94,0x2d,0x63,0x74,0x19,0x49,0xd7,0x4e,0x24,0x6a, - 0xdb,0x7c,0x64,0x5d,0x9b,0x0f,0x0d,0x1d,0x54,0x01,0x7c,0x81,0xb5,0x78,0x46,0x60,0x46,0xd3,0x5e,0x27, - 0xd9,0xa9,0xd1,0x1a,0xb8,0x14,0x2f,0x08,0x54,0x81,0x0d,0xa9,0xb5,0x4d,0xe0,0xe4,0xb8,0x60,0x9b,0x30, - 0xb3,0x8a,0x49,0x86,0x8f,0xb6,0xad,0xe3,0xbd,0xb2,0x23,0x14,0x6b,0x3c,0xe3,0x4c,0x99,0xa1,0x7b,0xe5, - 0x6c,0xc6,0x03,0x54,0xc6,0x4a,0xa8,0xf2,0xae,0x4e,0xdb,0xe8,0x9d,0x4d,0x35,0x7b,0xde,0x8b,0x44,0x59, - 0xab,0x4a,0x06,0x86,0x0f,0xab,0x6e,0xa3,0xb3,0x59,0xa7,0x4d,0xb0,0xa2,0x5d,0xa3,0xa5,0xa8,0x05,0xd5, - 0x9f,0x21,0x45,0xb9,0xf1,0xbe,0xd9,0xef,0x78,0x69,0x6d,0x07,0x35,0x94,0xe9,0xc7,0xf8,0x70,0xec,0x35, - 0xed,0x89,0x12,0x84,0xd4,0x99,0xfa,0xf6,0xa5,0x15,0xa6,0x65,0x67,0xd2,0xd1,0x5d,0x29,0xb9,0x38,0x40, - 0x17,0x6b,0x2c,0x3c,0x94,0xfe,0x25,0x97,0x29,0x4e,0x1a,0xca,0x0e,0xcb,0x24,0x87,0x85,0x06,0xec,0x16, - 0x70,0x7d,0xd1,0xac,0xe8,0x5c,0x75,0x99,0x6e,0x5d,0x75,0xd9,0xb3,0xa2,0xd9,0xa2,0xc3,0xff,0x3a,0x79, - 0x3d,0x73,0x3c,0xed,0xb1,0x14,0x70,0x20,0x33,0x87,0xde,0x37,0x87,0x63,0x40,0x54,0x5c,0x78,0x7c,0xfd, - 0x65,0x68,0xd7,0x85,0x5a,0x27,0x20,0x3e,0x60,0x8f,0x57,0x83,0xa1,0x1f,0x95,0x8c,0xa5,0xf9,0x96,0x2e, - 0x42,0xd1,0xc6,0x8e,0x0c,0xd8,0xd9,0x3a,0xf8,0x3c,0x09,0x89,0xec,0x53,0xf7,0xb9,0xdd,0x9d,0x4b,0x71, - 0x1f,0x60,0xe9,0x3e,0x9c,0xa4,0x45,0x8e,0xef,0x94,0x6c,0xb2,0x09,0xc3,0x57,0x55,0x42,0xbf,0x3e,0x5f, - 0xdf,0x55,0xdd,0x08,0x01,0xa1,0x99,0x79,0xcd,0xf2,0x0c,0x06,0x1d,0x0a,0x57,0xfb,0x5f,0x98,0x38,0x87, - 0xb2,0xe0,0xd9,0x5c,0x69,0x7d,0xb4,0xf0,0x1b,0x34,0xa8,0xeb,0x6a,0x74,0x5d,0xf9,0x2c,0xa4,0xf0,0x14, - 0xc4,0x46,0x8c,0xcd,0x37,0xc6,0x24,0x8e,0x25,0xa1,0x67,0x67,0xb4,0x0b,0xb2,0x48,0xeb,0x81,0x7b,0x72, - 0x6d,0x4b,0x1c,0x93,0xe3,0xb0,0x73,0x4a,0x78,0xbc,0x7d,0x27,0x43,0xb8,0xfb,0xee,0xa9,0xe2,0x0b,0x06, - 0xfa,0xca,0x9b,0x18,0xda,0x55,0x92,0xf3,0xed,0x88,0xc4,0xaf,0x9f,0x5d,0xad,0xb2,0xb3,0xb3,0xc4,0xed, - 0x10,0xf4,0xc6,0x60,0x08,0x7a,0xb4,0x25,0x3c,0x7e,0xfa,0x9e,0x96,0x93,0xca,0x8b,0xb4,0x69,0xde,0x64, - 0x42,0xb4,0x6a,0x48,0xe7,0x39,0xc1,0x6a,0x2b,0xd5,0x4e,0xc7,0x3d,0x3e,0xef,0x5e,0xf9,0x5a,0x0e,0x5f, - 0xda,0xb7,0xa5,0x85,0x31,0x94,0xbe,0x6e,0xd3,0xbc,0x7a,0x76,0xc2,0xed,0xba,0xb4,0x9c,0xa8,0xa3,0x31, - 0xd9,0x35,0x40,0xd1,0xe6,0x72,0xa3,0xdb,0x0e,0x6c,0x18,0x17,0x9c,0x48,0xf5,0x7f,0xe0,0x6e,0xa6,0xf4, - 0x47,0x37,0xda,0x65,0xdd,0x43,0x8f,0x06,0xa6,0xbd,0x32,0x46,0x5c,0x00,0xcd,0x8c,0xc7,0xe5,0xb7,0xc4, - 0x17,0x77,0x0c,0xd7,0x9d,0x49,0x23,0x67,0x49,0xd7,0x2a,0x62,0xa5,0xc0,0x8d,0x55,0xe0,0xd8,0x2c,0x18, - 0x56,0x7b,0x35,0x38,0x02,0x42,0x9b,0x73,0x9a,0xd6,0xbc,0x24,0x63,0xfc,0xb8,0xbf,0x6f,0xa7,0xc2,0x9f, - 0x05,0xd5,0x07,0xdb,0x7a,0xeb,0x08,0x7c,0xd9,0x99,0x75,0xce,0x4c,0x16,0x84,0x09,0xbb,0x7e,0x1e,0x00, - 0x7d,0x10,0x6d,0xc3,0x53,0x4b,0x56,0x2f,0xe6,0xf6,0x1b,0xf5,0x29,0x0b,0xc3,0xd7,0x1d,0xec,0x10,0xa9, - 0xd7,0x2d,0xc0,0x28,0x88,0xe5,0x3f,0xce,0x27,0x6d,0xd3,0x47,0x8d,0x62,0x3e,0x68,0x65,0x23,0x41,0x53, + 0x27,0x13,0x54,0xc6,0x1f,0xc2,0x37,0x9b,0xa9,0xac,0xd4,0x8d,0x43,0x28,0x87,0x6f,0xfa,0x02,0x94,0x25, + 0xf7,0xfe,0x83,0x4b,0xd8,0xe3,0x7b,0xa3,0xd6,0x70,0xca,0x96,0x31,0xba,0x8c,0xa4,0x6b,0x27,0x12,0xb5, + 0x6d,0x3e,0xb2,0xae,0xcd,0x87,0x86,0x0e,0xaa,0x00,0xbe,0xc0,0x5a,0x3c,0x23,0x30,0xa3,0x69,0xaf,0xe3, + 0xec,0xc4,0x68,0x0d,0x5c,0x8a,0x17,0x04,0xaa,0xc0,0x86,0xd4,0xda,0x26,0x70,0x72,0x5c,0xb0,0x4d,0x98, + 0x59,0xc5,0x24,0xc3,0x47,0xdb,0xd6,0xf1,0x4e,0xd9,0x11,0x8a,0x35,0x9e,0x71,0xa6,0xcc,0xd0,0x9d,0x72, + 0x36,0xe3,0x01,0x2a,0x63,0x25,0x54,0x79,0x57,0xa7,0x6d,0xf4,0xce,0xa6,0x9a,0x3d,0xef,0x45,0xa2,0xac, + 0x55,0x25,0x03,0xc3,0x87,0x55,0xb7,0xd1,0xd9,0xac,0xd3,0x26,0x58,0xd1,0xae,0xd1,0x52,0xd4,0x82,0xea, + 0xcf,0x90,0xa2,0xdc,0x78,0xdf,0xec,0x77,0xbc,0xb4,0xb6,0x83,0x1a,0xca,0xf4,0x63,0x7c,0x38,0xf6,0x9a, + 0xf6,0x44,0x09,0x42,0xea,0x4c,0x7d,0xfb,0xd2,0x0a,0xd3,0xb2,0x33,0xe9,0xe8,0xae,0x94,0x5c,0x1c,0xa0, + 0x8b,0x35,0x16,0x1e,0x4a,0xff,0x92,0xcb,0x14,0x27,0x0d,0x65,0x87,0x65,0x92,0xc3,0x42,0x03,0x76,0x0b, + 0xb8,0xbe,0x68,0x56,0x74,0xae,0xba,0x4c,0xb7,0xae,0xba,0xec,0x59,0xd1,0x6c,0xd1,0xe1,0x7f,0x9d,0xbc, + 0x9e,0x39,0x9e,0xf6,0x58,0x0a,0x38,0x90,0x99,0x43,0xef,0x9b,0xc3,0x31,0x20,0x2a,0x2e,0x3c,0xbe,0xfe, + 0x22,0xb4,0xeb,0x42,0xad,0x13,0x10,0x1f,0xb0,0xc7,0xab,0xc1,0xd0,0x0f,0x4a,0xc6,0xd2,0x7c,0x4b,0x17, + 0xa1,0x68,0x63,0x47,0x06,0xec,0x6c,0x1d,0x7c,0x1e,0x85,0x44,0xf6,0xa9,0xbb,0xdc,0xee,0xce,0x85,0xb8, + 0x0f,0xb0,0x74,0x1f,0x4e,0xd2,0x22,0xc7,0x77,0x4a,0x36,0xd9,0x84,0xe1,0xcb,0x2a,0xa1,0x5f,0x9f,0xaf, + 0xef,0xaa,0x6e,0x84,0x80,0xd0,0xcc,0xbc,0x66,0x79,0x06,0x83,0x0e,0x85,0xab,0xfd,0x2f,0x4c,0x9c,0x43, + 0x59,0xf0,0x6c,0xae,0xb4,0x3e,0x5a,0xf8,0x0d,0x1a,0xd4,0x55,0x35,0xba,0xaa,0x7c,0x16,0x52,0x78,0x0a, + 0x62,0x23,0xc6,0xe6,0x1b,0x63,0x12,0xc7,0x92,0xd0,0xd3,0x53,0xda,0x05,0x59,0xa4,0xf5,0xc0,0x3d,0xb9, + 0xb6,0x25,0x8e,0xc9,0x71,0xd8,0x39,0x25,0x3c,0xde,0xbe,0x93,0x21,0xdc,0x7d,0xf7,0x54,0xf1,0x05,0x03, + 0x7d,0xe5,0x4d,0x0c,0xed,0x2a,0xc9,0xf9,0x76,0x44,0xe2,0xd7,0x4f,0x2f,0x57,0xd9,0xe9,0x69,0xe2,0x76, + 0x08,0x7a,0x63,0x30,0x04,0x3d,0xda,0x12,0x1e,0x3f,0x7d,0x47,0xcb,0x49,0xe5,0x45,0xda,0x34,0x6f,0x32, + 0x21,0x5a,0x35,0xa4,0xf3,0x9c,0x60,0xb5,0x95,0x6a,0xa7,0xe3,0x0e,0x9f,0x77,0x2f,0x7d,0x2d,0x87,0x2f, + 0xed,0xdb,0xd2,0xc2,0x18,0x4a,0x5f,0xb7,0x69,0x5e,0x3d,0x3b,0xe1,0x76,0x5d,0x5a,0x4e,0xd4,0xd1,0x98, + 0xec,0x1a,0xa0,0x68,0x73,0xb9,0xd1,0x4d,0x07,0x36,0x8c,0x0b,0x4e,0xa4,0xfa,0x3f,0x70,0x37,0x53,0xfa, + 0xa3,0x1b,0xed,0xb2,0xee,0xa1,0x47,0x03,0xd3,0x5e,0x19,0x23,0x2e,0x80,0x66,0xc6,0xe3,0xf2,0x5b,0xe2, + 0x8b,0x5b,0x86,0xeb,0xce,0xa4,0x91,0xb3,0xa4,0x6b,0x15,0xb1,0x52,0xe0,0xc6,0x2a,0x70,0x6c,0x16,0x0c, + 0xab,0xbd,0x1a,0x1c,0x01,0xa1,0xcd,0x39,0x4d,0x6b,0x5e,0x92,0x31,0x7e,0xdc,0xdf,0xb7,0x53,0xe1,0xcf, + 0x82,0xea,0x83,0x6d,0xbd,0x75,0x04,0xbe,0xec,0xcc,0x3a,0x67,0x26,0x0b,0xc2,0x84,0x5d,0x3f,0x0f,0x80, + 0x3e,0x88,0xb6,0xe1,0xa9,0x25,0xab,0x17,0x73,0xfb,0x8d,0xfa,0x94,0x85,0xe1,0xab,0x0e,0x76,0x88,0xd4, + 0xab,0x16,0x60,0x14,0xc4,0xf2,0xbf,0xcf,0x27,0x6d,0xd3,0x47,0x8d,0x62,0x9e,0x69,0x65,0x23,0x41,0x53, 0xeb,0x23,0x2d,0x13,0xf0,0x81,0xc9,0xad,0xbe,0xda,0x12,0x1c,0x69,0x31,0xd7,0x96,0xa0,0x8f,0xb5,0x12, 0x0e,0x23,0x45,0x2d,0x42,0xdd,0x48,0x21,0x9c,0x33,0xb3,0xbc,0x83,0xbd,0xc0,0x2d,0x2c,0xc6,0x35,0x8d, - 0xb0,0xff,0xc9,0xc1,0xe9,0x60,0x80,0xbf,0x50,0xe0,0x44,0x9e,0x08,0x1d,0xa4,0xfb,0x7b,0x62,0x2a,0x21, + 0xb0,0xff,0xf1,0xc1,0xc9,0x60,0x80,0xbf,0x50,0xe0,0x44,0x9e,0x08,0x1d,0xa4,0xfb,0x3b,0x62,0x2a,0x21, 0x29,0xde,0x74,0xa4,0x16,0x95,0xd5,0x50,0xb4,0xd4,0x27,0xa2,0xa7,0xd0,0xfa,0x10,0xe1,0x4b,0xd9,0x00, - 0x03,0x01,0x0b,0x84,0xc6,0x6d,0x89,0xd2,0xb6,0x24,0x19,0x9e,0x49,0xc6,0x13,0xbe,0x1c,0x35,0x90,0xd2, + 0x03,0x01,0x0b,0x84,0xc6,0x6d,0x89,0xd2,0xb6,0x24,0x19,0x9e,0x49,0xc6,0x23,0xbe,0x1c,0x35,0x90,0xd2, 0x7c,0x33,0x91,0x91,0xda,0x18,0x14,0x9e,0xd2,0x40,0x45,0x24,0x8d,0x68,0xfa,0xe0,0x36,0xa8,0x99,0x2a, - 0xe4,0x38,0x9f,0x46,0xed,0xa2,0x34,0x35,0xfb,0xba,0xa2,0x1d,0xad,0xde,0x55,0xc9,0x89,0xf6,0x95,0x7c, - 0x97,0x5d,0x3c,0xfb,0xb4,0x14,0x7b,0xdb,0x53,0xf5,0xa4,0x4a,0x6e,0x7f,0x30,0xe2,0xeb,0x58,0x87,0x39, - 0xf1,0xa3,0x59,0x9b,0x4d,0xc6,0x0a,0x3b,0x89,0x74,0x91,0x17,0x93,0xf9,0x6a,0x9a,0xc5,0xef,0x08,0x3f, - 0x7f,0xb2,0x8f,0x8b,0xf4,0x53,0x6c,0xda,0x90,0xfb,0x77,0x4e,0x61,0x54,0xc8,0x34,0x7c,0xdc,0x45,0x43, - 0x93,0x94,0x36,0xd2,0x9d,0x94,0x06,0xf3,0x94,0xf0,0xde,0x50,0x16,0xd8,0x5b,0xae,0x2d,0x46,0xdb,0xca, - 0x9c,0x8f,0xad,0x2e,0x7a,0x69,0x24,0x9a,0x78,0x53,0x99,0xab,0x8a,0xe0,0x90,0xb7,0xae,0xeb,0xba,0x0f, - 0xb4,0x2f,0xf4,0xce,0x72,0xb2,0x24,0x0b,0xc8,0xbf,0x6a,0x49,0x1a,0x44,0x4f,0x9f,0xfe,0xca,0x97,0xbb, - 0xee,0xcb,0x8d,0xda,0x8e,0x38,0xe0,0xe3,0x3c,0x86,0xb8,0xa1,0x8e,0x05,0x46,0x9b,0xe0,0x9f,0x62,0x2a, - 0xcc,0x1e,0x0d,0x5b,0x92,0x67,0x3f,0x20,0xe7,0x53,0x5c,0x94,0xa0,0x34,0xf9,0xa4,0x07,0x06,0x43,0x73, - 0x51,0xe2,0xf3,0x2b,0xdf,0x95,0x49,0x80,0xbd,0x4b,0x30,0x82,0x2e,0xe5,0x08,0x06,0x41,0x90,0x4f,0x30, - 0x3c,0x18,0xfc,0x8a,0x8b,0xbd,0x5d,0x64,0xff,0xc6,0x04,0x09,0x72,0x53,0xa8,0x8d,0x41,0x30,0x85,0x6a, - 0x62,0xc4,0x18,0x7c,0xbd,0x72,0x21,0xd1,0xdd,0x27,0xf9,0x74,0x2f,0x94,0x88,0x15,0x41,0x1c,0x23,0xd6, - 0x06,0x07,0x66,0x09,0xa0,0x62,0x40,0x88,0xa5,0xf4,0x64,0x72,0x3a,0xee,0xd5,0x36,0x21,0xa7,0x47,0xe1, - 0xb4,0x92,0xdb,0xb3,0xb4,0x85,0xce,0x04,0x51,0x96,0x51,0x92,0x68,0x5d,0x9b,0x24,0xcb,0x4a,0xd0,0x36, - 0x18,0x18,0x1c,0xfd,0x8d,0x0d,0x18,0x68,0xf2,0x68,0x37,0xbf,0x04,0x31,0x87,0x7b,0x55,0x55,0x8b,0xe0, - 0x88,0x8c,0xa8,0xc5,0x69,0x6d,0x20,0xed,0x31,0x93,0x40,0x07,0xcf,0x60,0x90,0xd1,0x57,0xc4,0xab,0xf4, - 0x44,0x2c,0xfe,0x1c,0x1f,0xf9,0xac,0xb8,0x93,0x23,0x24,0x66,0x96,0xb5,0xf7,0xcc,0x08,0x66,0xc3,0x55, - 0x93,0xcf,0x93,0x5b,0x78,0x7a,0xc6,0x3f,0x13,0xde,0xf8,0xd4,0x10,0x80,0x20,0x9a,0x2c,0x6c,0xb3,0xf5, - 0x4a,0xc7,0x2f,0x95,0x54,0xf2,0x4e,0x34,0x38,0x59,0x7c,0x0f,0x44,0xa8,0xe1,0x04,0x3d,0xf6,0xcf,0x22, - 0xe2,0x0f,0xca,0x5e,0xfa,0xd0,0xbb,0xb3,0xfa,0xac,0xaf,0x59,0x84,0x65,0x6e,0x8a,0x68,0xc4,0x08,0xbb, - 0xcf,0x05,0x2b,0x72,0x75,0x0f,0xcf,0xce,0xd3,0x1a,0x74,0x1b,0xae,0x3d,0x35,0x69,0x76,0x25,0x6b,0xc2, - 0x28,0x3c,0xc4,0x3a,0xbb,0x83,0x42,0x86,0x90,0x9d,0x56,0x1b,0x17,0x8e,0xbc,0x9d,0xaf,0x2e,0x72,0x8e, - 0xbf,0xda,0x9f,0xc1,0x77,0xee,0x71,0x68,0x50,0xe3,0x11,0x99,0xe1,0xf6,0x8a,0x16,0x6b,0x20,0x54,0x67, - 0x9b,0x84,0x76,0x6c,0x92,0xf6,0x9e,0xd0,0xa2,0x85,0x1e,0x19,0x04,0x62,0x90,0x70,0xa3,0x63,0xfb,0xa4, - 0x09,0x6c,0x8e,0xae,0xd5,0xf7,0x05,0xb4,0x59,0xde,0x95,0x65,0xcc,0xb5,0xf9,0x06,0x65,0x58,0xa7,0x45, - 0xfe,0x29,0xef,0x75,0x96,0xe6,0x81,0x3a,0x25,0x8c,0xff,0xaa,0xec,0xf7,0x6d,0xe1,0x2c,0x6d,0xb2,0xe4, - 0x40,0x4b,0x65,0x0f,0x89,0x41,0x16,0x78,0x69,0x55,0x9e,0x25,0xac,0xb8,0xf1,0x48,0x70,0x08,0xe7,0xf1, - 0xa5,0x5c,0xbc,0x8b,0xcd,0x2a,0xf7,0x1a,0xe2,0x89,0xe5,0x78,0xc0,0x0c,0x50,0x14,0x1a,0x03,0x74,0xe3, - 0xab,0x82,0x13,0x53,0xae,0x63,0xb4,0xa1,0x54,0x24,0xca,0x76,0xda,0xa3,0xf1,0x83,0x22,0x90,0x3d,0x22, - 0x74,0xc0,0x80,0xd4,0x1d,0xf6,0x5d,0x30,0xf2,0x28,0x89,0xc8,0xd7,0x39,0x25,0x29,0xe2,0x55,0xd3,0x10, - 0x71,0x43,0x7c,0xea,0x4d,0x4d,0xe1,0xcf,0x0b,0x9d,0xb6,0xab,0x25,0xf4,0x34,0xae,0xc8,0xb6,0x50,0xda, - 0x49,0xa3,0x3e,0x2b,0x93,0x85,0x4c,0xd1,0x97,0xba,0x9c,0x59,0xa9,0xcb,0x06,0x77,0x9d,0xa4,0x2d,0xa0, - 0xee,0x4a,0x13,0xb7,0xdb,0x30,0xa5,0xba,0xcd,0xcc,0xda,0xcd,0x18,0xb1,0xbc,0x34,0xa1,0xd7,0xb0,0xd0, - 0x0f,0x94,0x22,0x10,0x53,0xc8,0x2f,0xbd,0x63,0x03,0x15,0xf8,0x7b,0x97,0xd7,0x44,0xca,0xbc,0x2f,0xc7, - 0x9c,0x55,0x72,0x83,0xcb,0xf6,0x66,0x64,0x37,0x04,0x3b,0x7b,0xc6,0x1b,0xce,0xcd,0xac,0xe9,0x88,0xc9, - 0xc9,0xf8,0x62,0x98,0x94,0x76,0xa0,0x75,0xbf,0xc3,0xa5,0xbc,0xa9,0xd3,0xba,0xe6,0xec,0xe0,0x44,0xc4, - 0xc5,0x46,0x8e,0xa9,0x3b,0xbb,0x87,0x9e,0x75,0x22,0xf9,0x58,0x9f,0x92,0xd0,0x8b,0x08,0x20,0x7e,0x62, - 0x65,0x58,0x70,0x40,0x14,0x06,0xb5,0xa4,0xd0,0x10,0x68,0xad,0x59,0x5b,0xa8,0x47,0xf7,0x99,0x23,0xd9, - 0x78,0xe1,0x04,0xa4,0xa2,0x9e,0x0d,0xcb,0xdc,0x5a,0x72,0x8b,0xe8,0x96,0x71,0xa1,0x74,0xec,0xf3,0x62, - 0x63,0x5c,0x7d,0x34,0xf2,0x13,0x0f,0x14,0x58,0x14,0x16,0xec,0xed,0xd2,0x9b,0xb7,0xd1,0x2e,0x53,0x85, - 0xb0,0xd0,0xfd,0xd8,0xfe,0x6d,0x5b,0xa6,0x97,0xd7,0xef,0xc5,0xd7,0x58,0x1c,0xa3,0x7f,0x43,0xcb,0x7f, - 0xea,0xc3,0xba,0xae,0xb4,0x6b,0xe4,0xb6,0x4f,0xb5,0x8f,0x4d,0xda,0x2c,0xa5,0x10,0xf4,0xee,0x5b,0x58, - 0xbe,0x53,0xc5,0xf0,0x7b,0xcb,0x61,0x7b,0xfd,0x70,0xf8,0xd5,0xf0,0xf0,0x0b,0x09,0xd3,0xf2,0x53,0xa5, - 0x7e,0xac,0xd4,0x77,0x95,0xfa,0x50,0xa9,0xdf,0x2b,0xf5,0x43,0xa5,0x7e,0xab,0xd4,0xf7,0x95,0xfa,0xb6, - 0xe2,0x70,0x1a,0x7c,0xef,0xb3,0xbe,0xf3,0x55,0xfd,0xcc,0x69,0x7c,0xb7,0x8d,0x42,0xbd,0x44,0x66,0xa6, - 0x4a,0x26,0x48,0xc9,0xfd,0x3e,0x20,0x0f,0x2f,0x60,0x3a,0x48,0xa5,0xff,0xdd,0xb5,0x9d,0xb7,0x21,0x92, - 0xec,0xfd,0xe6,0xb4,0x2c,0x3f,0x57,0x2c,0x52,0x0b,0x24,0xa2,0x31,0x1c,0x2f,0x1a,0x04,0x6d,0xd1,0xb7, - 0x05,0xe9,0x42,0x81,0x34,0xc2,0xeb,0x4b,0xb9,0x44,0x97,0x4c,0x3e,0xba,0x4c,0xb9,0x6c,0x47,0xe7,0xd9, - 0x38,0xea,0xc8,0x81,0xd8,0xb9,0xe4,0x9c,0x8d,0xfa,0x17,0x77,0x7e,0x22,0x97,0xbd,0x67,0xd3,0xbc,0x81, - 0x11,0x9d,0x9a,0x56,0xe9,0xc5,0x05,0x3f,0xd5,0xcb,0x6c,0x3e,0xe7,0x9a,0xa9,0xef,0xff,0xe4,0xc2,0x74, - 0x10,0x94,0xd7,0x33,0x42,0xf0,0x35,0x61,0x30,0x62,0x2a,0xd9,0x25,0x53,0xa5,0xab,0xa6,0x9c,0x95,0x93, - 0x55,0xcd,0x4f,0xcb,0x79,0x7a,0xa3,0x74,0x87,0x38,0xf0,0x08,0x1d,0xd5,0xb0,0xd3,0x23,0x92,0x75,0x5e, - 0xd3,0xf9,0x4d,0x73,0x57,0x65,0xca,0x90,0x76,0xfa,0xd7,0x94,0xd7,0xaf,0xdc,0x67,0xf3,0x62,0x86,0x8e, - 0x77,0xe2,0x7c,0xa6,0x79,0x8d,0xee,0x4d,0x55,0x56,0xc8,0x2f,0x22,0x18,0x14,0x25,0x4d,0x61,0x0e,0x20, - 0x56,0x97,0xf9,0x74,0x4a,0x5d,0xc3,0xe1,0xd8,0x64,0xd5,0x22,0x2f,0x90,0x48,0x10,0x55,0x35,0x2a,0xaf, - 0x17,0xe9,0x52,0xe5,0x4d,0xb6,0x90,0x48,0x27,0xf3,0xb2,0x5c,0x2a,0x73,0xcd,0x94,0x92,0x46,0x8b,0x12, - 0xa1,0x5a,0x14,0xc2,0x4b,0xd4,0xf9,0xef,0x84,0xa2,0xca,0xfa,0x32,0x05,0xc3,0xe9,0x5a,0x28,0x4a,0x44, - 0x8f,0xa2,0x75,0xa6,0x66,0x96,0x29,0x61,0x23,0xda,0xb4,0x9f,0xf2,0x86,0x48,0xda,0x74,0x5a,0x16,0x73, - 0x44,0x55,0xf9,0x6d,0x45,0x5b,0x70,0xaa,0xb4,0x6b,0xe5,0x54,0x09,0x5b,0x44,0x30,0x91,0x2e,0xe6,0x04, - 0x0c,0xca,0x8e,0x09,0x3e,0x98,0x3c,0xdb,0xf6,0x62,0x17,0x8e,0x0d,0x4a,0x73,0x4f,0x99,0x80,0x79,0x04, - 0x96,0xe0,0x58,0xf1,0xea,0x2a,0xaf,0x73,0x2a,0x89,0x18,0x61,0x79,0x12,0x5c,0x36,0xcd,0x32,0x7e,0xf0, - 0xe0,0xfa,0xfa,0x7a,0x78,0xfd,0xc5,0xb0,0xac,0x2e,0x1e,0x1c,0x7e,0xfd,0xf5,0xd7,0x0f,0x3e,0xcd,0xf3, - 0xe2,0x23,0x51,0x54,0x79,0xcf,0x39,0x1b,0xc4,0x2d,0x17,0x94,0xaf,0x00,0x65,0x52,0x9e,0x93,0x4d,0x88, - 0x9e,0xaf,0x88,0xb0,0x2f,0xfa,0xbe,0xdf,0x69,0x60,0x93,0x6b,0xbd,0x4b,0xfe,0xae,0x8c,0x60,0x93,0x63, - 0xb6,0xa8,0xaa,0xf7,0x1b,0x21,0x90,0x09,0x10,0x77,0x0f,0x05,0xec,0xf2,0x3c,0xb9,0xad,0xaf,0x88,0x20, - 0xde,0x1e,0xc1,0xc3,0x83,0x83,0x83,0x07,0x94,0x17,0x10,0xdf,0xd4,0x5c,0xf6,0x95,0xa0,0x31,0xfe,0xe3, - 0x01,0xee,0x48,0xe5,0x3f,0xaf,0x5e,0x52,0xb3,0x65,0x0e,0xc8,0xbc,0x6c,0x16,0x73,0x75,0x5e,0x4e,0x6f, - 0x14,0xb0,0xa1,0xba,0xa4,0xa5,0x50,0x18,0x9a,0x42,0x84,0x72,0x25,0xbb,0xb6,0xc9,0x1b,0xfa,0x9b,0x4e, - 0xa7,0xd8,0x8f,0x2a,0xad,0x9a,0x7c,0x82,0xf7,0x9a,0xf6,0x04,0x01,0x51,0x89,0x5b,0x3c,0xf1,0x1d,0x7e, - 0x0e,0xd5,0xe5,0x43,0x75,0xf9,0x85,0xba,0xfc,0x52,0x5d,0x7e,0xa5,0x2e,0xff,0xae,0x2e,0x2f,0xaa,0x72, - 0xb5,0x54,0x45,0x7a,0x45,0x6b,0xc7,0x63,0x24,0x40,0xbc,0x52,0x53,0x82,0xca,0xb9,0x9a,0x36,0x8a,0xe8, - 0x58,0x78,0xd8,0x20,0x9d,0x0d,0x52,0x33,0xb5,0xcc,0x27,0x70,0xb8,0x51,0x97,0x95,0xca,0x17,0x17,0xd4, - 0x19,0x1a,0x14,0x1d,0x62,0xe5,0x5c,0x2d,0x61,0xd8,0xa8,0x56,0x73,0x95,0xaa,0x73,0x62,0x25,0xcf,0x2b, - 0x75,0x3e,0xcd,0xe9,0x7f,0xa9,0xe8,0x71,0x42,0xe0,0xc9,0x51,0x88,0x14,0x5f,0x66,0x3f,0x9d,0x11,0x2d, - 0xbc,0x50,0xb9,0xfa,0x78,0x3e,0xa5,0x0a,0xaa,0x8f,0xea,0x37,0x55,0x2d,0x15,0x01,0x73,0xd5,0x4c,0x54, - 0xb5,0x3a,0xbf,0x21,0x4a,0xbe,0x4e,0x17,0x4b,0x45,0xb0,0x4d,0x84,0x57,0xbd,0x4c,0x09,0xf5,0xd0,0x5e, - 0x23,0x86,0xb3,0x5e,0x9d,0xd3,0xff,0x25,0xdf,0x6b,0xab,0x56,0x8a,0x90,0x9b,0xba,0x3e,0x87,0x10,0x9d, - 0x90,0x54,0xba,0x9a,0xe6,0xa5,0xc2,0x76,0x00,0x23,0xfb,0x51,0x31,0x62,0xa0,0x96,0xce,0x09,0xec,0xc4, - 0x1b,0x0c,0x96,0xa8,0xe9,0x82,0x00,0x74,0x55,0x11,0x0f,0x32,0x49,0x8b,0xab,0x94,0x5a,0x9a,0x54,0xf9, - 0xb2,0xc1,0xa6,0x90,0x07,0x22,0xb9,0x61,0xe8,0xa6,0xcc,0xd8,0x27,0x34,0x3c,0xfa,0x2f,0x93,0xa5,0x01, - 0x9b,0xd7,0xa2,0xe1,0xb5,0x69,0xe8,0xe1,0x92,0x5a,0x54,0x82,0xdc,0x78,0x88,0x30,0x25,0xa0,0x39,0xcb, - 0xe6,0x53,0xa2,0xe3,0x79,0x33,0x2b,0x41,0xa8,0xf3,0xf4,0x9c,0x6a,0x9f,0x67,0x17,0xa0,0x05,0x16,0xd8, - 0xcc,0x40,0xad,0x52,0xb5,0xc6,0xb1,0xe5,0xaa,0x41,0x49,0x83,0x63,0x0d,0xce,0xb5,0xa8,0x98,0x50,0x40, - 0x9a,0x03,0xeb,0xe4,0xe9,0xbc,0xbc,0xa0,0x4a,0x8a,0x15,0xff,0x01,0x0a,0xa0,0xa9,0x59,0xd0,0x84,0xde, - 0x28,0x8d,0x01,0x55,0x26,0x42,0x07,0x85,0xfd,0x5e,0x5e,0x2b,0x13,0x3a,0x4b,0x71,0x70,0xb2,0xdf,0x56, - 0x25,0xd0,0xc8,0xac,0x02,0xd5,0xd7,0x00,0x5a,0x20,0x84,0x60,0xd0,0x23,0x80,0x55,0x69,0x91,0x2f,0x50, - 0x76,0x92,0x57,0x13,0x3e,0x1f,0xf2,0xe5,0x92,0x00,0x54,0x4d,0x56,0x15,0xed,0x70,0x60,0x2e,0xa0,0xbe, - 0x7a,0x42,0x8d,0x50,0x16,0x01,0xa8,0x44,0xf9,0xa1,0xe1,0x16,0xcd,0xfe,0x2c,0x9d,0x00,0x00,0xab,0x2c, - 0xbf,0x28,0xe4,0x10,0x54,0x17,0xea,0x62,0x7e,0xb3,0xbc,0x24,0xc8,0x49,0x2f,0x32,0x00,0x72,0xc6,0x8b, - 0x9f,0x41,0xa2,0x50,0x13,0x50,0xe7,0x35,0x6e,0x59,0xdb,0x97,0x42,0xdc,0x12,0xfd,0xa1,0x0a,0x09,0x21, - 0x95,0xf3,0x9b,0x8b,0x52,0x7e,0xf9,0x3b,0x90,0x02,0x4a,0x5c,0xa9,0x55,0xcd,0xa1,0x36,0x78,0x7e,0xf8, - 0x0f,0x7f,0xd9,0x30,0xcc,0x80,0xa8,0xba,0xca,0xb3,0x6b,0x89,0x10,0x55,0xf7,0xee,0xe5,0x52,0x6c,0xf2, - 0x53,0xbe,0x3f,0x9c,0xc6,0xda,0xcb,0x51,0xcd,0x79,0x52,0xc4,0xbe,0x91,0x25,0x1e,0xec,0x70,0x76,0x5d, - 0x56,0x8c,0xfe,0x2a,0xea,0x45,0x46,0x1b,0x01,0x9d,0x98,0xab,0x55,0x85,0xe8,0xd9,0xab,0xbc,0x1b,0xda, - 0xaa,0x25,0x05,0xea,0xb5,0xfe,0xbd,0x23,0xfc,0x96,0xbd,0x48,0x59,0x1f,0x98,0x1c,0xa1,0x7c,0x5c,0xc4, - 0x61,0xa3,0x0d,0x69,0x1b,0xcf,0x90,0x76,0x30,0xb0,0xf1,0xd2,0xfc,0x64,0x7b,0xf1,0x20,0xac,0x62,0xda, - 0x17,0xc1,0x9b,0x1c,0x44,0x5c,0x32,0x8f,0x11,0x5f,0x6a,0xd8,0xea,0xc6,0xeb,0xf7,0x9d,0x3e,0xeb,0xf9, - 0xeb,0xef,0xf4,0xeb,0xf7,0x61,0x9e,0x23,0x04,0x65,0x63,0xeb,0x39,0xa6,0xd9,0xc3,0x9d,0x95,0x71,0xcf, - 0x22,0x74,0x2a,0x31,0x45,0x65,0x49,0x38,0x49,0xc7,0x0d,0xf8,0x13,0x1f,0xeb,0x92,0xfc,0xad,0xd8,0xab, - 0x3e,0x61,0x11,0xf5,0x96,0x0f,0x39,0xf3,0x81,0x36,0x3b,0x94,0x8b,0x1c,0xc5,0x66,0x9f,0x8d,0x99,0x3a, - 0xe3,0x35,0x11,0x42,0x38,0x0f,0x17,0x84,0x28,0xdc,0x6d,0x5c,0x4c,0xfb,0xcb,0x7a,0x79,0x5c,0xd6,0xdd, - 0xd9,0xd9,0x37,0x84,0xcc,0xbb,0xd3,0x93,0x0e,0x2a,0x1a,0xfe,0x7b,0x3a,0x16,0x69,0x37,0xf4,0x17,0xf6, - 0x0a,0x6c,0x70,0x31,0x19,0x07,0x6c,0xea,0x2d,0xa9,0x33,0x37,0x70,0x1f,0xc0,0xac,0x1e,0x09,0x5e,0xd8, - 0xea,0x6e,0xe3,0xf2,0x92,0x86,0x4b,0x5b,0x08,0xe9,0x99,0xb7,0x16,0x00,0xf1,0xbc,0xe1,0x52,0x1c,0x3a, - 0x03,0x65,0x05,0x3a,0xb5,0xff,0x94,0xf1,0x0c,0x68,0x7a,0xfc,0xff,0x6b,0xef,0xcb,0xd7,0xdb,0x36,0x96, - 0x3d,0x5f,0x85,0xc2,0xf1,0xc8,0x40,0x08,0x51,0x92,0xed,0xe4,0x24,0xa0,0x61,0x1e,0x2f,0x59,0x9c,0xc4, - 0xcb,0x8d,0x15,0xe7,0x24,0x12,0xa3,0x0b,0x91,0xa0,0x04,0x8b,0x02,0x78,0x00,0x50,0xb2,0x23,0xf2,0x81, - 0xe6,0xdf,0x79,0x84,0x79,0xb2,0xa9,0x5f,0x55,0x77,0xa3,0xb1,0x50,0xb2,0x93,0xbb,0xcc,0x37,0xdf,0x9c, - 0x7c,0xc7,0x02,0x7b,0x5f,0xaa,0xab,0xab,0xaa,0x6b,0x69,0xf6,0xcc,0x30,0x4a,0xd4,0x49,0x05,0xb0,0xe2, - 0x59,0xf8,0x17,0xc8,0xd5,0x70,0x6c,0xb9,0xba,0xd7,0xad,0xc1,0xab,0x0b,0xad,0x29,0x3b,0x51,0x6e,0x27, - 0x5c,0x87,0xa8,0xe8,0xb5,0x8f,0xc8,0x2e,0x8b,0x04,0x3e,0xc9,0xb4,0x9f,0x31,0xad,0x20,0x6b,0x3c,0x88, - 0xb1,0x9f,0x08,0x6c,0x69,0xe5,0x39,0xcc,0x19,0x13,0xad,0x65,0xe6,0xf1,0x73,0xac,0x47,0xfd,0x73,0xdc, - 0xd9,0xff,0xcf,0xe8,0x7f,0x9a,0xa0,0xff,0xcb,0x6e,0xcc,0x71,0x41,0x43,0x98,0x25,0xd4,0xe8,0xd8,0x3f, - 0xad,0x1a,0xfe,0x97,0x69,0xf8,0x5f,0xb4,0x37,0x1f,0xaa,0x8c,0x6f,0x4d,0xc6,0xb7,0x94,0x71,0x92,0x84, - 0xbb,0x87,0x47,0x57,0xde,0xa0,0x7f,0xb4,0x73,0x7c,0xe7,0x68,0x3c,0xde,0xf5,0x8f,0x11,0x37,0xe0,0x98, - 0x78,0x8c,0x2b,0xfe,0x98,0x38,0xfe,0x41,0x55,0x9b,0x2e,0x2f,0x55,0x7b,0x41,0x9b,0x78,0x5e,0x65,0x9c, - 0x99,0x8c,0x33,0xca,0x78,0x9a,0x74,0x5a,0xf3,0x72,0xc0,0xba,0xdd,0xc0,0x1d,0xf4,0xbd,0xdd,0x2a,0x1c, - 0x83,0x18,0x5b,0xee,0x0e,0xdd,0xd1,0xd6,0xe1,0xef,0xee,0xf8,0xb3,0x23,0xcf,0xdb,0x3d,0xed,0x50,0x4a, - 0x13,0x7b,0xcd,0xb8,0x72,0xe3,0x2a,0x15,0xa1,0x4c,0x60,0x5e,0x44,0xf1,0x18,0x71,0x88,0xd8,0xad,0x2a, - 0x98,0xcf,0x38,0xcc,0xab,0xc0,0x3f,0x0c,0x44,0x25,0x3c,0xd3,0xd1,0xac,0x7f,0xdf,0xd9,0xd9,0xf5,0xdf, - 0xd0,0xc7,0x51,0xf1,0xd9,0x56,0x72,0x01,0xfb,0xe9,0x28,0x2d,0xef,0xec,0xfa,0x8f,0x93,0x2e,0xad,0x87, - 0xf7,0x2a,0x74,0x3d,0x01,0x4a,0x2c,0x31,0x07,0x01,0xa3,0x86,0xdf,0x2a,0x6d,0x6b,0x8d,0x37,0xaa,0x6c, - 0xba,0xb1,0xac,0xf1,0x9e,0xf7,0x26,0xe1,0x48,0x45,0x8e,0x19,0x80,0x53,0x0b,0x2a,0xf0,0x2a,0x71,0xc5, - 0x3b,0x7d,0xfd,0xb1,0x3c,0xad,0xe9,0xe0,0x74,0xbd,0xf0,0xaa,0x7e,0xc1,0x61,0xb3,0x36,0x94,0x04,0x91, - 0xb2,0x12,0x09,0x9e,0xee,0x00,0x76,0x25,0x54,0x22,0x81,0xe7,0x8b,0xec,0x0f,0xe0,0xe7,0x02,0x2e,0xf4, - 0x9a,0xbb,0x47,0x03,0xf8,0x3e,0x0f,0xbf,0xcf,0x6f,0xf1,0xdf,0x28,0xcd,0x1b,0x5f,0x7c,0x5b,0x6c,0x7f, - 0x8d,0x00,0x12,0xf0,0x50,0xca,0x12,0xf6,0xef,0x75,0x5c,0xbe,0x5e,0x6c,0x3d,0x96,0x7d,0x8c,0x6f,0x42, - 0xe5,0xf1,0xe2,0x4e,0xd2,0xe1,0x56,0xf3,0x4e,0x72,0x98,0x8e,0xfb,0xac,0x16,0x9c,0xd7,0x7b,0xc9,0xb1, - 0xe3,0x5f,0x57,0x50,0x7a,0x6a,0xa0,0xf4,0x94,0xa0,0xf4,0x75,0x73,0x9e,0xca,0x22,0x3c,0xe6,0x50,0x98, - 0x60,0x56,0x03,0x62,0xd7,0x77,0xf8,0xa7,0xe3,0xf3,0x1f,0x15,0xf9,0xb9,0x4a,0xdf,0x29,0x33,0x95,0x65, - 0xc5,0x80,0xb6,0xb2,0x45,0xe2,0xea,0xf8,0x55,0x18,0x69,0xce,0xe4,0x9f,0x2a,0xd5,0x6e,0x93,0x13,0xb8, - 0xcd,0x66,0x5c,0x69,0x2b,0x5b,0xb5,0x89,0xb9,0x3d,0x4b,0xd8,0xa3,0x18,0x22,0x42,0xbf,0x4b,0x54,0x9c, - 0x4b,0xf6,0x1c,0xeb,0xf8,0xcf,0xe9,0xb7,0x10,0x58,0xfc,0xf3,0xc7,0x46,0xf6,0x37,0xb5,0xdf,0x74,0x93, - 0x38,0xfe,0xcb,0x7a,0x8d,0x17,0xf6,0x4f,0x14,0x18,0x3e,0xc3,0x03,0x80,0xf1,0xd6,0xa0,0xdc,0x98,0x81, - 0x47,0xb5,0x9a,0xb1,0xc8,0x03,0x53,0xe0,0x8a,0x81,0xac,0x51,0xcc,0xc5,0x88,0xac,0x48,0x9d,0xd6,0xb8, - 0xae,0x1a,0xa9,0x5f,0xa7,0x78,0xa1,0x6c,0x77,0x6c,0x8f,0x6e,0x73,0xbf,0xf5,0x52,0xee,0x4b,0xd3,0xed, - 0xe3,0xfa,0x5c,0xaf,0xea,0x89,0xdc,0xa9,0xc8,0x68,0x7e,0xc2,0x2a,0x8f,0x54,0xb3,0x60,0x53,0xe9,0x74, - 0x9b,0x72,0xdf,0x80,0xb8,0xbd,0x31,0x73,0x00,0x79,0x91,0x2b,0x25,0x60,0x38,0xa2,0x9d,0x22,0x74,0x5e, - 0xa8,0x78,0x37,0x7f,0x02,0xb4,0x74,0xe2,0x9a,0xe8,0x1d,0x2b,0xe2,0x51,0x3c,0xd7,0x5f,0xdd,0xf1,0x76, - 0xfd,0x5f,0x2c,0xf4,0xd4,0x0a,0xf0,0x20,0x54,0xde,0x7b,0xeb,0xae,0x07,0x6d,0x57,0xb2,0x44,0xec,0x7d, - 0x8d,0xba,0x80,0x8a,0xab,0x15,0x41,0x83,0x63,0xc1,0x25,0x62,0x62,0x27,0x21,0x6d,0x6a,0x1e,0xa9,0x22, - 0xdf,0x36,0x12,0xe3,0x92,0x5a,0xd9,0x52,0xee,0x57,0x16,0xad,0x23,0x22,0xb4,0x32,0x72,0xea,0x8c,0x02, - 0xec,0xc1,0x97,0x90,0x79,0x2a,0x51,0x55,0xc2,0x68,0x00,0x7d,0x2d,0xca,0x93,0x1f,0x90,0x03,0xa3,0x20, - 0xae,0xdd,0x7d,0xee,0xc8,0xef,0x6e,0xcc,0xc4,0xf0,0xc0,0x88,0x08,0x3f,0xb8,0x70,0xca,0xd1,0xb6,0x48, - 0xb4,0x75,0x78,0xe2,0x61,0xd4,0x61,0x8a,0x23,0x51,0xae,0x3b,0x72,0xf4,0xab,0x79,0xe9,0x66,0x94,0x8d, - 0x69,0xf2,0x28,0xb3,0xd0,0x0e,0x19,0xab,0xf4,0x96,0x24,0x16,0xcb,0xf9,0x40,0x93,0x00,0x1a,0x4d,0xf5, - 0xfb,0x99,0x57,0xa5,0x22,0x0a,0x0b,0x31,0xad,0x11,0xc2,0x32,0xb3,0x9c,0x3f,0xd2,0x1a,0x42,0x13,0x68, - 0xa8,0xe0,0xf1,0x98,0xc6,0xbc,0x36,0x6b,0xec,0x6f,0x49,0xe8,0x04,0xf9,0xa5,0x17,0x57,0x96,0xdc,0x9f, - 0x59,0xde,0xb5,0xfd,0x33,0x71,0x4c,0x4c,0x7b,0x7d,0xe6,0x8d,0x5c,0x6e,0x09,0xd2,0xf7,0x62,0xf4,0xbe, - 0x45,0x36,0x23,0xd9,0x3f,0xf3,0x82,0x46,0x8e,0x7b,0x06,0xe9,0xf8,0x02,0xb2,0xd8,0x25,0x75,0x39,0xc3, - 0xa2,0x96,0xbc,0xa8,0x53,0x59,0xe1,0x09,0x3c,0xbd,0xf0,0x10,0x69,0x28,0x41,0xea,0x5a,0x3e,0xa1,0x4d, - 0x97,0xef,0x9b,0x24,0xb2,0xf8,0x73,0x6e,0xd4,0x6d,0x14,0xae,0x88,0xf1,0xae,0xd2,0x96,0x47,0xe1,0x42, - 0x54,0xf7,0x4a,0x6d,0x2c,0xa5,0x42,0xd3,0x0b,0x94,0x8a,0xd0,0x17,0xab,0xaa,0x9f,0x54,0xfc,0xce,0x62, - 0x9d,0xa9,0xa1,0x36,0x93,0x90,0x75,0x6b,0x83,0x02,0x94,0x83,0x66,0xec,0x4b,0x6a,0x2a,0x5a,0x72,0x0b, - 0x76,0xe6,0xc4,0x44,0xa4,0xe7,0x1b,0x13,0x12,0x3b,0x56,0x89,0xd2,0x7b,0xbd,0xd6,0xca,0x7e,0x1c,0x56, - 0xde,0x3a,0x9a,0x22,0x65,0x7e,0x5f,0xe7,0x11,0xa4,0x0e,0xed,0x8d,0x4d,0xde,0xc7,0x1c,0x90,0xd5,0xb4, - 0xbc,0xb4,0xe8,0x92,0x56,0x8c,0xbd,0x66,0xec,0x0a,0x03,0x87,0x89,0x17,0xb9,0xac,0x71,0x9c,0xaa,0xb5, - 0xe5,0x27,0x27,0xe8,0x1b,0x32,0x71,0x90,0xeb,0xd5,0xc7,0x90,0x6a,0x9d,0x73,0xe1,0xd6,0x5e,0x29,0x37, - 0x36,0xb1,0x76,0xd8,0x6d,0xb9,0xc4,0xd6,0x3e,0x32,0x86,0x5d,0x86,0x6f,0x5e,0xa7,0x79,0xa0,0x3a,0x6a, - 0x95,0xc9,0xad,0xc4,0xbf,0xb2,0x9c,0x5e,0xcb,0xd6,0xd7,0x2d,0xd8,0xce,0xd5,0xa0,0xaa,0x49,0xe6,0x9e, - 0x4e,0x23,0x2a,0x07,0x47,0x8d,0xd1,0xdf,0x95,0x36,0xf0,0x55,0x98,0x86,0xf6,0xe2,0x4a,0x15,0xa3,0x5f, - 0xfa,0x53,0x8a,0xfb,0xc8,0x4b,0x34,0x44,0x75,0x6d,0xec,0xc2,0x60,0x5a,0x41,0x61,0xd0,0x06,0x37,0xee, - 0x04,0x3d,0xef,0x7d,0x9d,0x79,0x51,0x6b,0x0d,0x32,0x4f,0x16,0xba,0x9a,0x42,0x8c,0x68,0x42,0xa8,0x5f, - 0x59,0x58,0x02,0xbf,0xb0,0x95,0x92,0x79,0xa6,0x28,0x54,0xbb,0xd8,0x96,0x4d,0x0d,0xfb,0x55,0xe4,0x21, - 0x20,0xfb,0xf0,0x0a,0x01,0x3e,0x53,0x76,0x68,0xae,0x1a,0xd6,0x3f,0x8d,0x8b,0xc4,0x3f,0xd7,0x91,0xe5, - 0xdc,0xdb,0xf6,0xef,0xa8,0xb6,0x3b,0x7f,0x18,0x26,0xbc,0x07,0x91,0xcb,0xd1,0x72,0x32,0xbf,0x1e,0xc4, - 0xe8,0xd2,0x2c,0x1c,0xaa,0xd5,0x6e,0x8e,0x44,0x00,0x17,0x63,0x4a,0xaa,0xfb,0x00,0x03,0x54,0x4c,0x11, - 0x26,0x54,0x39,0x3e,0x3b,0xd7,0xc9,0xd5,0xce,0xa7,0x9e,0x49,0xe4,0x48,0xc1,0x5e,0xb5,0x39,0x55,0x80, - 0x78,0x15,0xe2,0x87,0xfd,0xff,0x37,0x6d,0x1f,0x31,0x70,0xbc,0x43,0xdb,0xa6,0x8f,0xd5,0xd8,0x2f,0xea, - 0x37,0x4a,0x35,0x57,0x63,0x73,0x90,0x8f,0x87,0xa5,0x78,0xee,0xa2,0x3f,0x0c,0xbd,0x23,0xf7,0x14,0x4f, - 0x74,0x97,0xb8,0x17,0x03,0x44,0x3b,0x82,0x6e,0x90,0x8d,0xcf,0x4e,0x8d,0x2a,0x32,0xae,0xe8,0xd5,0x4a, - 0x23,0x36,0xcf,0x84,0x2b,0x0a,0xcf,0xd5,0xad,0x6d,0x42,0xd1,0x0e,0xd5,0x3a,0x79,0x23,0xcb,0x8a,0xb6, - 0x1f,0x26,0x41,0x7a,0x93,0x62,0x30,0x91,0x4d,0x3b,0x3b,0x56,0x05,0x3c,0x93,0xc5,0xc6,0x59,0x8a,0x95, - 0x11,0xd2,0xa6,0xae,0x5d,0x7d,0x13,0xd1,0x61,0xc8,0xbb,0x8e,0x2b,0xef,0x0e,0x80,0x4e,0x29,0x42,0xf0, - 0x4f,0x7d,0x43,0x9e,0x22,0x76,0x86,0xe7,0xeb,0x23,0x5a,0x1b,0xbf,0x3a,0xa2,0x92,0x86,0x23,0xca,0x31, - 0xc9,0xa4,0x17,0xfb,0x84,0x96,0x2a,0x6c,0x2f,0x8a,0x79,0x3a,0x5c,0x15,0xd4,0xbe,0xf9,0x08,0x65,0x32, - 0x40,0x6b,0x7b,0xa0,0xe6,0x0c,0xf2,0xa5,0x90,0xe8,0x5c,0x04,0xeb,0x89,0x8e,0xca,0x99,0x30,0x4e,0xcf, - 0xf1,0x2f,0xeb,0xbc,0x20,0xee,0x6b,0xcb,0xfb,0xa5,0x47,0xe7,0x30,0xa9,0xf9,0xcf,0xd4,0x3e,0xae,0xa6, - 0xde,0xe8,0xd8,0xcd,0x65,0x3d,0x10,0x99,0x38,0xe9,0xf4,0x9d,0xb9,0x67,0x98,0x3f,0xa2,0xca,0x8c,0x7f, - 0x4f,0x06,0xda,0xdc,0xfe,0x99,0xb0,0x8b,0xd1,0x50,0xc2,0x86,0xe1,0xc2,0xe2,0xd2,0xe2,0xd5,0x93,0x00, - 0x40,0x7e,0xbe,0x62,0xf2,0xc6,0x4b,0x3a,0x74,0x5d,0xf2,0x0e,0x8c,0x5a,0x05,0x3b,0xf6,0x97,0x34,0x5b, - 0x3e,0x54,0xa5,0xbb,0xe4,0x55,0x9c,0x87,0xcb,0x6a,0x49,0xe7,0xe1,0xdc,0x38,0x0b,0xa0,0x84,0x39,0xd6, - 0x4c,0x08,0xdc,0x69,0x98,0x57,0xa4,0xc4,0xc2,0xb2,0x25,0x95,0x43,0x84,0xb6,0x66,0x38,0xa3,0x0c,0xfb, - 0x73,0xda,0xd8,0x39,0x6d,0xac,0x70,0x52,0xd5,0xc6,0xce,0x3d,0x9d,0x76,0x38,0x1f,0x4b,0xdb,0x1d,0x03, - 0x90,0x12,0xa6,0xfb,0x75,0xec,0x26,0x72,0x85,0x8c,0x4a,0x77,0xca,0xa5,0x16,0xde,0x68,0x4a,0x1b,0xb8, - 0xb0,0xa8,0x39,0xed,0x47,0xb6,0xa8,0x6e,0x80,0x89,0x4f,0xd3,0x25,0x1a,0x68,0xcf,0x9f,0xd2,0xff,0x17, - 0x61,0xe5,0xaa,0xc5,0xbf,0x0c,0x21,0x01,0xf0,0x4f,0xe9,0xcf,0x62,0xec,0x9f,0x18,0xd5,0x6d,0xca,0x3a, - 0x0e,0x13,0x64,0x5d,0xd1,0x9f,0x93,0xb1,0x7f,0x10,0x6e,0x15,0xc3,0xd9,0x43,0x74,0x35,0x7d,0x18,0x9e, - 0xd0,0xdd,0xe4,0x5e,0x7a,0x23,0x54,0xef,0xf7,0x67,0xe3,0x20,0x76,0xe9,0x0c,0xa3,0x95,0x9d,0x9d,0xc5, - 0x38,0x78,0x4b,0x99,0xfe,0x31,0x1d,0xea,0x0f,0xf8,0x0b,0xe2,0x4c,0x17,0xe4,0x56,0xfb,0xfd,0xe9,0xd8, - 0x43,0xa1,0x53,0xff,0x8a,0x0b,0xd1,0x5f,0x14,0xd2,0xf5,0xb9,0xcf,0x9d,0x9d,0x13,0x29,0x74,0xa9,0x0a, - 0x5d,0x4a,0xa1,0x83,0x16,0x1d,0x90,0xfa,0x97,0xea,0xde,0xb5,0x44,0x71,0xee,0xa9,0xa0,0x90,0xaa,0xe7, - 0x5a,0xa3,0xa7,0x6a,0x78,0xa7,0x32,0xbc,0xae,0x46,0xb9,0x01,0x69,0xda,0x1a,0x5a,0x35,0x7e,0x37,0x16, - 0x67,0x17,0x93,0xf0,0xbb,0x98,0xf6,0x67,0xe6,0x2f,0x60,0x2a,0xef,0x82,0xa0,0x3f,0xe6,0x18,0xa6,0xa3, - 0xc9,0x21,0x7f,0x8c,0x3b,0x9c,0x7f,0x54,0x71,0x09,0x67,0x44,0x0b,0x27,0x1c,0x85,0xd0,0xa0,0xc7,0x6c, - 0xac,0x79,0x84,0xed,0xed,0xb7,0xa0,0x73,0x22,0x43,0xc1,0x67,0x44,0xe3,0x1e,0x53,0x13,0x7b,0xe8,0x6d, - 0x14,0xd1,0x77,0xe6,0xab,0xf9,0xf3,0xbc,0x96,0x34,0xce,0xf9,0x58,0x4d,0x6e,0x29,0x93,0x43,0x8a,0xf6, - 0x68,0xdb,0x35,0xd1,0xa5,0x35,0x51,0x2f,0xa8,0xb7,0x59,0xcd,0x77,0x38,0x7b,0xb4,0x80,0x12,0x3d,0x4d, - 0x91,0x00,0xa2,0xbf,0x3f,0xf6,0x24,0x3a,0xa3,0xfc,0x50,0x87,0x7e,0xea,0x9f,0xe0,0xe0,0x4f,0x1f,0x9d, - 0x6c,0x6f,0x5f,0xb8,0x7b,0xbe,0x2c,0xcb,0xda,0x9d,0x70,0xb8,0x6c,0x00,0x65,0xc0,0x40,0x0b,0x0a,0xaf, - 0x22,0xa1,0xea,0xe2,0x50,0x2a,0x8c,0x7b,0xfa,0x8c,0xfe,0x32,0xd9,0xb5,0xc0,0x64,0x2b,0xb0,0x04,0x51, - 0x0c,0xf0,0x1f,0xa1,0xfd,0x29,0xe5,0x4d,0xab,0x30,0x88,0xc1,0xad,0xcd,0x06,0x92,0xbf,0xc5,0x51,0x6b, - 0xf8,0x6e,0xef,0x28,0xa7,0x4e,0x99,0xbf,0x19,0x33,0x64,0x45,0x59,0x47,0x0d,0x6b,0xeb,0xaa,0x3a,0x11, - 0x2e,0x84,0xd1,0x2b,0x18,0x4f,0xd4,0x32,0xc1,0xa8,0x3d,0xfd,0xd5,0x45,0x59,0xe7,0x75,0xb2,0x47,0x18, - 0xa5,0xdc,0xe6,0x8f,0x72,0x02,0x8e,0x0a,0xfb,0xab,0x9d,0x74,0x73,0xf6,0xa7,0x6a,0x06,0x70,0xdc,0x60, - 0x3c,0xfd,0x09,0x62,0x36,0x45,0xa7,0xfe,0x5c,0xb9,0xfb,0x20,0x5c,0x90,0xd7,0xa3,0x0d,0x85,0xd9,0x6a, - 0x85,0xe8,0xee,0x40,0x7a,0x7e,0x2e,0xa4,0xbd,0x2f,0x08,0x59,0xf3,0x2d,0x72,0x71,0xd9,0x78,0xdf,0x40, - 0x65,0xd7,0x35,0x01,0xf5,0x6a,0xc2,0xf5,0x0c,0xc8,0x73,0x75,0xd5,0xd3,0xd2,0x75,0x33,0xb0,0xb9,0x58, - 0x12,0x52,0x62,0x07,0xd6,0xf6,0x2c,0xfe,0x15,0xeb,0x6a,0x9a,0x9d,0x78,0x8a,0x20,0x98,0x79,0x1e,0x73, - 0xe2,0x67,0x51,0xc1,0x84,0x38,0xa8,0xee,0xc2,0xe5,0x44,0xee,0xd5,0x74,0xa8,0xe3,0xc6,0x59,0x23,0x50, - 0x51,0x51,0xa4,0xa9,0x88,0x29,0xbf,0x2a,0xd1,0x04,0xe1,0xe0,0x8b,0x43,0xef,0xcb,0x02,0x73,0x03,0x17, - 0x39,0x4b,0xf2,0xa2,0xe4,0x1e,0x09,0xcd,0xec,0x0d,0x2f,0x1f,0xce,0xf4,0x5e,0x5d,0x6a,0x07,0x77,0x67, - 0xab,0xd5,0xd6,0x31,0xf1,0x8b,0xb3,0xc3,0xcb,0xb1,0xe2,0x4c,0x17,0x30,0x29,0x17,0x56,0xf6,0x2c,0x3c, - 0xab,0xbd,0x1f,0xa0,0xc6,0x62,0xb5,0x3a,0xab,0x77,0x4c,0x5c,0x0c,0x0e,0x52,0xe2,0xe9,0xd5,0x94,0x7d, - 0xbd,0xb0,0x5d,0xad,0x9c,0x42,0x9a,0x37,0xc7,0x8c,0xb7,0xde,0x10,0x2e,0xf6,0xae,0x2f,0x30,0xc8,0xa9, - 0xdc,0x2d,0xd2,0xd9,0xd6,0x05,0x36,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x7d,0x6a,0x67,0x93,0x42,0x54,0x6c, - 0x71,0x78,0x2f,0x3e,0x18,0x8a,0xc0,0x52,0xbf,0xf5,0xb3,0xd7,0x96,0x04,0x8b,0xb9,0xf2,0x0f,0xfc,0x73, - 0x08,0xa9,0x9f,0x22,0xd2,0x7c,0x36,0x5d,0xce,0xe3,0xc2,0x7f,0x4f,0xdf,0xa0,0x71,0x5e,0x29,0xed,0xaf, - 0x2b,0x5a,0x93,0xab,0x87,0x8b,0xa4,0x02,0xe0,0x2b,0x26,0x2b,0xcf,0x0f,0x17,0xc9,0xe1,0xd5,0x18,0xd6, - 0x5e,0x74,0xaf,0xec,0x0d,0x0f,0x1e,0x3e,0xad,0x8a,0x1c,0x10,0x79,0xf1,0xf4,0xf0,0x60,0xac,0xca,0xd0, - 0x4e,0xe9,0xe2,0xc2,0x5f,0xd8,0x79,0x7c,0x21,0xbf,0x61,0xbd,0x11,0xbc,0xab,0x89,0xd6,0x8c,0x0a,0x25, - 0xf6,0xd4,0xfa,0x7e,0xc3,0xc2,0x56,0x42,0xc5,0x1d,0x4e,0x0a,0xd5,0x6d,0xe9,0xd3,0x25,0xa9,0x7c,0x32, - 0xf1,0xed,0x2d,0x5e,0x62,0x10,0x46,0x04,0xc6,0xd9,0x80,0x2e,0x98,0x73,0x2e,0xd9,0x7f,0x88,0x0b,0x44, - 0x87,0xf2,0x15,0x3d,0xb1,0x08,0x71,0x38,0x30,0xf9,0x03,0xf6,0xfd,0xc4,0x1b,0xc9,0xd8,0x1b,0x1b,0xe0, - 0x09,0xcd,0x35,0xf5,0x55,0x50,0x74,0xf4,0xb3,0xe0,0xde,0x24,0x9e,0x9a,0xae,0x07,0x25,0x77,0x82,0xe1, - 0x8a,0x9f,0x78,0xcc,0xfa,0x59,0x9a,0xba,0xab,0xa5,0xc3,0x82,0x1b,0x3e,0x3e,0xdd,0x8c,0x8a,0x1c,0x4b, - 0xfb,0xe6,0xa0,0x9c,0xf0,0x10,0x91,0x9f,0x0f,0x5f,0x85,0x50,0xe6,0x57,0xcf,0x31,0xef,0xf5,0x23,0x94, - 0xfb,0xaa,0x11,0x85,0x46,0x9e,0x69,0x94,0xe4,0xd0,0x7f,0x25,0xf6,0x6f,0x67,0x42,0x0c,0xd2,0xf5,0x57, - 0x13,0x94,0x9d,0xf1,0x04,0x65,0x1d,0xce,0x06,0xc7,0x22,0xb0,0x3d,0x91,0xfb,0xe0,0xb4,0x71,0x0f,0x9f, - 0x41,0xf5,0x97,0x08,0x17,0x8d,0xff,0x34,0xc0,0x5e,0x85,0x3a,0x8d,0x60,0x00,0x14,0xd3,0xf0,0x6a,0x58, - 0xdd,0x8b,0x4f,0x09,0x2c,0x9e,0x76,0xf1,0x2e,0x4f,0x2d,0xde,0xe5,0xe9,0xd8,0xbd,0xe2,0x91,0x5c,0x89, - 0xe3,0x7b,0x1e,0xea,0x41,0xd5,0xc8,0x1b,0x6a,0xe4,0x4d,0x07,0xe7,0xfb,0xa6,0xe2,0x7c,0xdf,0x30,0xe7, - 0x7b,0x25,0x90,0xf4,0x38,0xbc,0x6a,0xe1,0x56,0x7e,0x51,0x18,0xb0,0x8e,0x70,0x65,0xf2,0x70,0x27,0xdc, - 0x1f,0xde,0x79,0xf8,0x98,0x58,0x44,0x63,0xaf,0x72,0x07,0xee,0x9f,0x91,0x70,0x78,0x67,0xac,0x69,0xef, - 0x5f,0x62,0x8c,0xef,0x8a,0x5a,0x55,0xa1,0x6e,0xe1,0xdb,0x95,0xef,0x2d,0xb0,0x7c,0x7b,0xfe,0x9e,0xba, - 0xb0,0x88,0xff,0x81,0x4b,0xe0,0xbc,0xb2,0x16,0x93,0xfd,0x5b,0x7a,0x3e,0xcf,0x89,0xb7,0xe2,0x15,0x48, - 0x7f,0x53,0xce,0xbd,0x56,0x07,0x2d,0x58,0x26,0xbe,0x3a,0x7f,0xc1,0xe1,0x69,0xe2,0x7f,0x48,0xfc,0x83, - 0xc4,0x3f,0x4f,0xfc,0xaf,0x13,0xff,0x5d,0x3a,0xd2,0xd2,0xfc,0x67,0xa5,0xaf,0x05,0x6b,0xf8,0x16,0x78, - 0x6a,0x3c,0xff,0x6d,0x49,0x5c,0x2f,0xb1,0xb2,0x38,0xcb,0xae,0x46,0xaf,0x4a,0x89,0x6e,0x06,0xb7,0x99, - 0xeb,0xe0,0x7a,0x3d,0xd6,0x8e,0x95,0x2f,0x12,0x78,0x31,0x7f,0x91,0x12,0x2d,0xa8,0x1f,0x39,0xda,0xe1, - 0x45,0xe4,0x7d,0x9c,0x5a,0x9f,0x9c,0x45,0xe9,0x69,0xec,0xd8,0xe6,0xa9,0xa2,0x89,0x5f,0x55,0x66,0x29, - 0xbd,0x12,0xae,0x0d,0x59,0xd5,0xf7,0x52,0x45,0x45,0xfc,0x09,0x63,0x50,0xfa,0x66,0xda,0x75,0xfa,0xdb, - 0x04,0x4e,0xd5,0xb0,0x3b,0xf1,0xb4,0xf1,0x20,0x0a,0x21,0x92,0x7e,0x99,0x37,0x61,0x1d,0x85,0x27,0xd9, - 0xde,0xde,0xe2,0xbf,0xc4,0x88,0x29,0x35,0xcb,0xd1,0xf7,0x70,0x74,0x64,0x2e,0xf3,0xda,0x08,0xdf,0x5a, - 0x2c,0x85,0x18,0x75,0x4d,0x95,0x28,0x69,0xed,0x05,0xef,0x4a,0xf9,0xb6,0xbd,0x3d,0x99,0x56,0x09,0x5f, - 0x20,0xf0,0x9a,0xb6,0x3f,0xd1,0x4a,0x9f,0xdf,0x94,0x90,0x81,0x39,0x5a,0x73,0xc4,0x8c,0x8e,0xee,0xdd, - 0xc4,0x95,0xd8,0x71,0x9e,0xa7,0x3c,0x79,0xbd,0xd0,0x91,0x63,0xc3,0xb2,0x8a,0x22,0xeb,0x5b,0xdf,0xec, - 0xd7,0x91,0x55,0x8b,0xdb,0xeb,0xae,0x97,0xfb,0x05,0x0d,0xeb,0x49,0xba,0xa9,0x10,0xe6,0x26,0x52,0x59, - 0x42,0x91,0xf0,0xd2,0xff,0x92,0x67,0x71,0x63,0x49,0x7e,0xf9,0xa0,0x66,0x11,0x71,0x87,0x47,0x2a,0x9b, - 0x04,0x3c,0x84,0x37,0xe1,0xe6,0x7a,0xb5,0xde,0xaa,0x39,0x68,0x7b,0x7d,0x6f,0xbc,0xeb,0xd6,0x5a,0x0e, - 0xf5,0x9b,0xa5,0x59,0x51,0xd1,0xa6,0xbe,0x7d,0x7d,0x87,0x49,0x33,0x06,0x60,0xa5,0x1a,0xb1,0x05,0xd5, - 0x72,0x76,0x62,0xb9,0x96,0x55,0xd6,0xea,0x15,0xa3,0x52,0xcc,0xa7,0x37,0x86,0x0f,0xfc,0x11,0x03,0x04, - 0xc0,0x07,0xaa,0x24,0x3f,0x8e,0x13,0x8d,0xf3,0x16,0x3f,0xb6,0xb7,0x29,0x5f,0x65,0x00,0xd3,0x6b,0x88, - 0x55,0xbb,0xc0,0x9e,0x1a,0xbf,0x23,0x78,0x95,0xc0,0x9e,0x6f,0x13,0x1f,0x27,0x2b,0x10,0xb5,0xd8,0xe6, - 0xfa,0x28,0x8b,0x63,0xdd,0x18,0x62,0x01,0x3e,0xe1,0xa7,0x51,0xa5,0x5a,0x22,0x2e,0x54,0x2c,0x81,0x3a, - 0x07,0xa8,0x3f,0xa6,0x95,0xc9,0x93,0x53,0x78,0x82,0x7d,0x96,0x14,0x50,0x8e,0x0c,0x9d,0x94,0xf6,0x41, - 0xe9,0xdc,0xf1,0x9b,0xea,0x54,0x32,0x10,0x2e,0xbe,0x91,0x04,0xe7,0x0f,0xc9,0xc8,0x4d,0xab,0x63,0x8f, - 0x2b,0xee,0x0e,0x75,0x6b,0x9f,0x86,0x46,0xa5,0x30,0x5b,0x7b,0x5e,0xb3,0xa5,0x30,0x1f,0x65,0x81,0xf4, - 0xdc,0xa9,0x5f,0xd0,0x9a,0xe1,0x30,0x6f,0xac,0xa4,0x7b,0xeb,0x84,0x5b,0x03,0xcd,0x47,0xb7,0x0d,0xb5, - 0x6b,0x81,0x68,0x2f,0x5f,0xdd,0x52,0x4d,0x4d,0xa4,0x73,0x9a,0x5d,0x4d,0xaa,0x99,0x43,0xb5,0x22,0xed, - 0xd8,0x5c,0xc5,0x10,0xf0,0x69,0xbc,0x7d,0x7c,0x0c,0x35,0x3f,0x13,0xd4,0xb0,0x61,0x98,0xb2,0xee,0x82, - 0xa0,0x39,0xca,0x83,0x27,0x59,0x06,0x67,0xb8,0xfe,0xa4,0x28,0xcc,0x37,0x80,0x4b,0x17,0x03,0x22,0xd1, - 0xdf,0xd6,0xeb,0xac,0x4a,0xb1,0xde,0x56,0xed,0x32,0xfa,0x5d,0xd5,0x2e,0xd5,0x48,0x6b,0x3d,0xdc,0xda, - 0x65,0x3b,0xd2,0x65,0xb8,0x1d,0x49,0x1b,0xcb,0x36,0x3a,0x9c,0x2e,0x73,0x7e,0x17,0x0c,0x0e,0xc5,0xae, - 0xcd,0x57,0xe9,0xa2,0xd8,0x31,0x5e,0xfb,0x7f,0xe8,0x05,0xaa,0x3d,0xd6,0x8a,0xb5,0xdc,0xcf,0x49,0xcd, - 0x84,0xae,0x69,0x0b,0xd6,0x32,0x1e,0x6f,0xdb,0x84,0x29,0xcf,0x59,0x2c,0x58,0x95,0x57,0xfa,0xee,0xe0, - 0x7e,0x8c,0xc2,0x7f,0x85,0x84,0x90,0xc0,0xd6,0x8e,0xd9,0xaa,0x4c,0xc4,0xb0,0x37,0x50,0x3b,0x50,0xf1, - 0x5b,0xed,0x36,0x44,0xf0,0x1f,0x6a,0x8e,0x70,0xe8,0x55,0xee,0x2b,0xad,0x47,0x33,0x43,0x77,0xdb,0xb6, - 0xa3,0x95,0x40,0x40,0xd9,0x8f,0xfd,0x52,0xc2,0x33,0x0f,0x7b,0x1b,0xa8,0xb2,0xb4,0x97,0x55,0xa6,0xd0, - 0x68,0xed,0x74,0xce,0x77,0x40,0x51,0x99,0x8e,0x00,0xeb,0x1c,0x1f,0x57,0xdd,0xed,0x38,0x7d,0xe3,0x56, - 0xae,0xef,0xec,0x38,0xc3,0x88,0xc5,0x70,0xa2,0x64,0xcb,0xdf,0xa3,0xc8,0x0a,0x70,0x5a,0xf4,0x71,0x41, - 0xe0,0xd3,0x09,0x8a,0x3e,0xcb,0x72,0x83,0xdc,0x8d,0x44,0xfe,0x81,0x07,0x68,0xf5,0xf6,0x21,0x29,0xc6, - 0xa0,0xa8,0xf0,0x46,0x9c,0xc2,0x75,0xf0,0x97,0xff,0x95,0xb0,0x19,0xa1,0x2b,0x0f,0x88,0xb0,0xaf,0x1c, - 0x28,0x47,0x33,0xb4,0xb4,0xd5,0x10,0xc3,0xb7,0xda,0xb2,0x68,0x5e,0x33,0x76,0x5f,0x62,0x11,0x24,0xca, - 0x84,0x54,0xb4,0xc2,0xce,0xe3,0x39,0xb5,0x91,0xb4,0x09,0xe1,0x3b,0xc0,0x2d,0x82,0x3c,0x01,0x5d,0x7c, - 0x5d,0x44,0x35,0xac,0xe3,0xf9,0xcb,0xed,0xed,0xa5,0xc2,0x51,0xee,0x59,0x18,0xf9,0x17,0xe1,0xd2,0xbf, - 0xc0,0x14,0x08,0xa3,0x9d,0xe1,0xef,0x6a,0x75,0x81,0xb5,0xe0,0x9f,0x42,0xdf,0x6d,0xfd,0xca,0xd2,0x04, - 0x77,0x6b,0xd9,0xe5,0xf3,0xb5,0x2b,0x55,0xbb,0xf4,0xac,0x58,0x70,0x01,0xac,0x59,0xb8,0x6c,0x02,0x89, - 0x18,0x8c,0x4c,0x78,0xee,0x4e,0xb6,0x2c,0x77,0x12,0xd6,0xdc,0x4f,0xea,0xce,0x1b,0x14,0x14,0x00,0x6f, - 0x7e,0xef,0xce,0x7c,0x27,0x9a,0x11,0x54,0xff,0x28,0xea,0x15,0xb6,0xa9,0xa8,0x55,0x12,0xf1,0xd2,0xeb, - 0x7e,0x2c,0xd7,0x9e,0xaf,0xc1,0x07,0x9d,0x25,0xe9,0x4e,0x26,0xa6,0x00,0x22,0xf0,0xf8,0xd5,0xad,0x84, - 0x55,0xe2,0xd6,0x6c,0xea,0x2f,0x6c,0xb3,0x3d,0xf8,0x07,0x1e,0x7e,0x0f,0x69,0x0c,0x77,0xff,0xb5,0x68, - 0x8c,0x2c,0x3c,0x9f,0xd3,0x04,0x63,0x61,0xf6,0x30,0x48,0x53,0xe9,0x33,0x68,0x84,0x11,0x5a,0x6c,0x0e, - 0x95,0xb6,0x6c,0x1a,0xc6,0xeb,0x8a,0x6c,0xce,0x84,0x69,0xf1,0x2f,0x08,0x7d,0xfe,0x90,0x60,0x51,0x00, - 0x8f,0x0a,0x6f,0xf0,0x83,0xbe,0x85,0x60,0x80,0x61,0xbd,0xa1,0x98,0xf4,0xf5,0x7e,0x60,0x2e,0x56,0xfc, - 0xb9,0xff,0x8b,0xf0,0x4a,0xa5,0x50,0x11,0xfc,0x41,0x14,0xb5,0xf9,0xf5,0x2d,0x94,0x83,0x83,0x6b,0x41, - 0x32,0x3f,0x24,0x5d,0x88,0xa5,0x61,0xd9,0xce,0xf8,0xc1,0x36,0x12,0x91,0xad,0x93,0x40,0xb9,0x8b,0x28, - 0x45,0x10,0xdc,0x6e,0x77,0x48,0x5c,0x69,0x91,0xc7,0x97,0xc6,0x71,0xa1,0x18,0x89,0x6a,0xe1,0x73,0xd2, - 0x85,0xb6,0xd8,0xa3,0x6a,0x56,0x2f,0x09,0x3e,0x3b,0xaa,0x4e,0x4d,0x41,0x6c,0x51,0xf1,0xd0,0x70,0xe5, - 0x85,0x16,0x3d,0x4e,0xc2,0xe4,0xb0,0x18,0x0f,0x27,0x12,0x3f,0x1a,0xa3,0xd8,0x0a,0x27,0x22,0x7c,0x07, - 0x67,0xa0,0x4e,0xf2,0xa4,0x7e,0x92,0x09,0x79,0x5c,0xe2,0x45,0xc4,0x01,0x6c,0x67,0xc6,0x5a,0x34,0x3d, - 0xe4,0x72,0xe3,0x70,0xe2,0x53,0x0d,0x75,0x9c,0x27,0xdd,0xc7,0x39,0xf2,0x20,0xf7,0xb0,0xbc,0x89,0xcf, - 0x31,0xe0,0x25,0xfe,0x99,0xd1,0x50,0x67,0x95,0x04,0x6c,0xa6,0x87,0x3a,0x0d,0xf3,0xc3,0xd9,0x78,0x38, - 0x6d,0x9d,0x83,0xc8,0x57,0x69,0x44,0xb3,0x86,0x53,0x26,0xf7,0x4f,0xe3,0xf2,0x49,0xb6,0x64,0x31,0xdb, - 0xd3,0x79,0x42,0x00,0xf6,0x13,0xad,0x35,0xfc,0xb0,0x1f,0x4e,0x79,0x88,0xa3,0xb9,0x8c,0x7a,0xea,0x05, - 0x4b,0xfd,0xb5,0x56,0x16,0xb8,0x8b,0x32,0x64,0x9d,0x4a,0xc8,0x21,0xb5,0x95,0xb4,0xf0,0x4e,0xd3,0x70, - 0x69,0x22,0x15,0xe8,0x12,0x19,0xdd,0xfe,0xb6,0x77,0x8e,0x96,0xfd,0x75,0xb7,0xa7,0x01,0xd3,0x17,0xb4, - 0x38,0x58,0x0e,0x66,0x39,0xea,0x30,0x99,0x9a,0xa6,0x9a,0x6e,0xb0,0x68,0xb6,0x01,0xc5,0x2f,0xf5,0xdd, - 0xa3,0x40,0xde,0xf8,0xe7,0x67,0x03,0x2f,0xe7,0x12,0x11,0x9f,0x77,0x58,0xd9,0x72,0xa8,0xf9,0x62,0x65, - 0xc9,0x74,0x16,0x15,0x2f,0x28,0xdd,0x8d,0x95,0x81,0xbe,0x5f,0x0a,0xb9,0xac,0x55,0x0c,0x7f,0x66,0x36, - 0x41,0xff,0xfa,0xa3,0xf6,0xeb,0x07,0xed,0xf0,0x1f,0xce,0x3b,0xe6,0x84,0x2a,0x0d,0x83,0x07,0xdd,0xfc, - 0x41,0x36,0x9b,0x15,0x71,0xf9,0x5d,0x9c,0x9c,0x9e,0x95,0x56,0xad,0xa6,0xd2,0xa2,0xec,0x1f,0xaf,0x71, - 0xe5,0x42,0x0c,0x23,0x81,0x6d,0x25,0xd3,0x4e,0xc3,0x03,0x10,0x6f,0x70,0x7e,0x36,0x30,0x7a,0x3f,0x61, - 0x3e,0xb0,0x14,0xa4,0x54,0x4a,0x05,0x18,0xcf,0x14,0x31,0xc1,0x41,0xa7,0xdb,0x5c,0xce,0x37,0x09,0x3c, - 0x81,0xf2,0x72,0x55,0x11,0x07,0x7b,0x10,0xf9,0x5c,0x13,0x7d,0xbc,0xb5,0x6b,0xba,0xb9,0xa3,0x02,0x77, - 0x4a,0xd4,0x20,0x1d,0xaf,0xcb,0x63,0x2f,0xba,0x02,0x18,0xad,0x86,0x59,0xe7,0x41,0xb7,0xcd,0x70,0x72, - 0x2e,0xc3,0x67,0x33,0x75,0x30,0x4e,0xca,0x45,0x5b,0x70,0xad,0x16,0xbf,0xc1,0x97,0xe3,0x52,0x7f,0x96, - 0x18,0x91,0x60,0x75,0xab,0xab,0xe2,0x75,0x24,0xaf,0x12,0x87,0x7a,0xe5,0x26,0x78,0x30,0x63,0xa9,0x8d, - 0x47,0x7b,0x6d,0xdd,0xf4,0x0c,0x18,0xb8,0x19,0xbb,0x52,0x3b,0x77,0xe7,0xa4,0x14,0x5d,0x28,0xcf,0xff, - 0xa0,0x36,0x20,0xed,0xa4,0x9a,0x8d,0x53,0x8c,0x9a,0x72,0x44,0xaa,0x39,0xbb,0xf7,0xa2,0x88,0x6a,0xdb, - 0xd2,0x51,0xd1,0x9a,0xc6,0x95,0x86,0x23,0x35,0x99,0x90,0xc5,0x62,0x66,0x67,0xd7,0xb0,0x12,0x7f,0xcd, - 0x0f,0xf6,0xb3,0xe4,0x74,0x60,0x45,0xc6,0x0d,0x7f,0xcb,0xfd,0x2a,0xa3,0x16,0x93,0x37,0x2c,0x92,0xce, - 0x2c,0x08,0xd5,0xc2,0x6f,0xed,0x6a,0x8d,0x98,0xbc,0xe1,0x4f,0x71,0xad,0x62,0x3d,0x88,0x6f,0x2b,0x46, - 0xca,0xbb,0x8a,0x62,0xc3,0x4e,0x15,0x30,0x65,0xa8,0xed,0x1d,0x08,0xbe,0xba,0xe4,0x4d,0xa1,0x5a,0xa8, - 0xe8,0xeb,0xbd,0xe4,0x1f,0xca,0xfa,0xf8,0x36,0x4b,0x04,0xb6,0xa6,0x56,0xd8,0x78,0xc7,0x81,0xa9,0xf6, - 0x88,0xab,0xb3,0x03,0xf3,0xca,0xe2,0xd7,0x28,0xfb,0x41,0xb2,0x5d,0x9f,0x04,0x7c,0x21,0x6f,0x2c,0xaa, - 0x8d,0x24,0xa4,0xcd,0xdd,0x76,0x6d,0x75,0x24,0x4a,0x3b,0x60,0xd3,0xda,0xbf,0x84,0x61,0xa5,0x71,0xa1, - 0x68,0xa8,0x2e,0x62,0x86,0xbd,0x7a,0x9e,0x65,0xc4,0xfe,0xaf,0x84,0xad,0x26,0x2d,0xd7,0x25,0x1a,0x61, - 0x42,0xa9,0xf0,0x97,0x24,0x38,0xad,0x67,0x8b,0x2b,0xba,0xee,0x48,0x59,0x6d,0x45,0x79,0xf6,0xde,0x63, - 0xfb,0x06,0x97,0xcb,0x9b,0x79,0xb2,0x46,0x5a,0x98,0xe6,0xec,0xfb,0x25,0xae,0x87,0xc1,0xae,0x4c,0xdc, - 0xb5,0x87,0xc1,0x1a,0x07,0xa9,0x3c,0x39,0x55,0x4e,0x47,0x5c,0x31,0xdd,0x38,0x35,0xfa,0x43,0x3e,0x22, - 0xfc,0xfa,0xca,0x62,0xad,0x72,0x0a,0x13,0xb7,0x3d,0x70,0xc7,0x75,0x0f,0xdc,0xda,0xa1,0x30,0xd4,0xa0, - 0x68,0x29,0x9e,0x40,0x95,0x4a,0x3b,0xbf,0x87,0x3e,0xff,0xeb,0xca,0x23,0x81,0x6b,0x8d,0xe9,0x6b,0x28, - 0x85,0x48,0x18,0xec,0xed,0xed,0xef,0x53,0xfc,0x7f,0x00,0x37,0x5a,0xa0,0xdb,0xa0,0xca,0xfc,0x1a,0x76, - 0x19,0x7b,0x72,0x30,0xbf,0x4f,0xfc,0x6f,0xa1,0x4c,0x79,0x7d,0x74,0xed,0xba,0xa3,0x60,0xb0,0x3a,0x4a, - 0xbd,0xfe,0xc8,0x3b,0x5a,0x1f,0xad,0x77,0x4f,0xfd,0x7f,0x42,0xfb,0x7d,0x67,0xf0,0x59,0x7f,0xf4,0xfb, - 0x9d,0xeb,0xb5,0xeb,0xad,0x0e,0x8f,0xc6,0x47,0xbb,0x47,0x47,0x63,0xca,0xfb,0xad,0x5b,0x85,0x9d,0xaf, - 0x10,0xad,0xbd,0xfd,0xcf,0xc4,0x77,0x8e,0x8e,0xee,0x6c,0x3b,0x6c,0xbe,0x0c,0x45,0xf3,0x76,0x8e,0xbd, - 0xba,0xe2,0x2f,0xc5,0x2d,0xfb,0x8e,0x1a,0x8c,0x8c,0xc6,0xe9,0xa7,0xbe,0x73,0x0a,0x49,0xa0,0xff,0x2b, - 0xcc,0xfc,0x58,0xbc,0x0f,0x9f,0xa6,0xc1,0xa1,0x63,0xc9,0xfd,0x9d,0xb1,0x6f,0x50,0x76,0xc3,0xcc,0x83, - 0x9d,0x6b,0x0d,0xe0,0x05,0x42,0xa1,0xc8,0x44,0xe4,0x35,0x62,0x70,0x3b,0x14,0xc1,0x96,0xd5,0x54,0xf8, - 0xfd,0x9b,0x57,0x2f,0x29,0x01,0x80,0x8d,0x18,0x8e,0xa9,0x76,0x63,0x1e,0xe6,0x56,0x45,0x38,0xca,0x85, - 0x28,0x05,0x4a,0x31,0x48,0x78,0x92,0x30,0xc1,0x11,0xe6,0xd8,0xfe,0x38,0x85,0x7b,0xd6,0x0e,0xee,0xd3, - 0x71,0x2c,0xd5,0xfe,0xaa,0x4b,0x3c,0x96,0xf5,0x43,0x7b,0x3e,0x81,0xd3,0xaf,0x95,0xe8,0x3b,0x3e,0xac, - 0x34,0x6b,0x7d,0xa9,0x5a,0x13,0x53,0xde,0xce,0x94,0x0a,0x25,0xd1,0xc5,0xff,0xd6,0xbd,0x6c,0xfc,0x44, - 0xf2,0xe9,0xcb,0xc6,0xe8,0xbf,0xb1,0x6c,0xdc,0x54,0x73,0xd9,0x9e,0x26,0x58,0xb9,0xfa,0xd2,0x49,0x65, - 0x6b,0xe9,0x38,0xe1,0xcf,0x2e,0x1d,0x77,0x5b,0x5b,0x3a,0x4e,0xb1,0x96,0x8e,0x7f,0xeb,0xa5,0xb3,0xfb, - 0x32,0xb5,0x50,0xde,0x95,0x0a,0x55,0x6e,0x1f,0x56,0x07,0xb2,0x78,0x71,0xc6,0x8f,0x4d,0xb0,0xfc,0x63, - 0x2b,0x50,0x98,0x53,0x66,0x73,0x65,0xd5,0x28,0xa6,0x7b,0xca,0x1a,0x53,0x2c,0x0c,0x93,0x82,0x31,0x33, - 0x9e,0x9e,0x68,0x2a,0x96,0xbd,0x68,0xcd,0xf4,0x51,0x0c,0x24,0xaf,0x4e,0xe0,0x76,0xa8,0xcc,0xc4,0x66, - 0x5a,0x59,0x38,0xc2,0xfc,0xb3,0x84,0x69,0xa7,0x16,0x73,0x2e,0xd8,0xc4,0x11,0xe6,0x81,0x6c,0xe8,0x28, - 0xa6,0x8f,0xb9,0x6a,0x09,0x87,0x4b,0x46,0xd8,0x69,0x82,0x2a,0x43,0xae,0x8c,0x0d,0xd9,0x62,0xb2,0xd3, - 0xb0,0x12,0xdd,0xd6,0x2d,0x1b,0xd9,0x16,0x55,0x19,0xa2,0x6a,0x4b,0xca,0x96,0x45,0xaa,0xb2,0x71,0x65, - 0x13,0xcb,0x0e,0x0b,0x57,0x8c,0x55,0xdb,0xbf,0x4a,0x3f,0xb4,0x58,0x6c,0x57,0xab,0x6c,0x30,0x61,0xc2, - 0xaa,0x8d,0x27,0x79,0x99,0x9a,0xe6,0x98,0xb2,0x6c,0x62,0x9e,0xaa,0x16,0x4f,0x0c,0x29,0xb4,0xa9,0x65, - 0x65,0x05,0xda,0x58,0x22,0xb6,0xcc,0xa5,0x85,0xe2,0xb5,0x86,0x1a,0x60,0x16,0xee,0xfe,0x7e,0x54,0x7c, - 0xe6,0x1e,0xd2,0xbf,0xce,0xdd,0x87,0x8f,0x8e,0x76,0xc3,0x71,0xdf,0x23,0x5c,0x83,0xc4,0xd0,0xc3,0xbf, - 0xa3,0xc0,0xa1,0x6c,0x67,0xfc,0x19,0xa1,0x9d,0xd5,0x5d,0xfa,0xbc,0x4b,0x9f,0x77,0xfb,0x2b,0x55,0x27, - 0x7c,0xf8,0xe8,0xdf,0xa9,0x8a,0xe7,0x8d,0x76,0xfd,0x24,0x0b,0x9d,0xc3,0x68,0xe7,0x8f,0xc7,0x3b,0xbf, - 0x1d,0x8f,0x0f,0x8f,0x8e,0xae,0x8e,0x8e,0x76,0x8e,0x8e,0x06,0xe3,0xcf,0x1c,0x3f,0xa3,0x2c,0xe0,0x30, - 0xa7,0x9f,0x64,0x7d,0xc2,0x74,0x81,0x37,0x92,0x4f,0xcf,0xf1,0xa3,0x2c,0xb4,0x90,0x9d,0xf3,0xfb,0x43, - 0xa7,0x9f,0x65,0xc4,0xa1,0xe9,0xc1,0x1d,0xed,0x8e,0xbc,0x47,0xbb,0xb4,0x2f,0x8d,0x62,0x47,0x47,0xbb, - 0x28,0xd9,0x77,0x0e,0x7f,0x7f,0x34,0xfe,0xec,0x11,0xcd,0x67,0x8e,0x2a,0x0f,0xb7,0x9e,0xbd,0x7a,0x7a, - 0xf0,0xeb,0xeb,0xaf,0x7b,0x48,0xef,0x3f,0xda,0x4d,0xfc,0xa5,0xa4,0xc3,0x82,0x67,0x26,0x9f,0x47,0x87, - 0xbb,0xfe,0x22,0xc3,0xdb,0xb1,0xf3,0xde,0x31,0x58,0x78,0xf7,0xbd,0x3b,0xa0,0x89,0x9c,0xfa,0xf5,0x23, - 0x4f,0x05,0x1d,0x30,0xf7,0xa5,0x7a,0x7a,0x39,0xcb,0xfc,0xcb,0x8c,0x58,0x69,0xff,0x34,0xf3,0x3f,0x64, - 0x04,0x41,0xfe,0x71,0xe6,0x5f,0x65,0xfe,0x41,0xe6,0x9f,0x67,0xfe,0xd3,0xcc,0x7f,0x9f,0xf9,0x6f,0x18, - 0x04,0x95,0xfd,0xae,0x32,0x8c,0xd6,0xaf,0x1e,0x7c,0x09,0x3e,0xce,0xf0,0x72,0x7c,0x87,0xfe,0x75,0xb6, - 0xe7,0xe5,0xd0,0x09,0x9c,0x87,0x74,0x28,0xb7,0x4f,0xf9,0xf3,0x11,0x3e,0x01,0x9f,0xf4,0xe3,0xae,0x73, - 0x97,0x7e,0x44,0x17,0x0b,0x64,0x6c,0x23,0xe3,0x6f,0xfb,0x7b,0xf8,0x3e,0x4a,0xf9,0xc7,0x57,0xfc,0x5d, - 0x3a,0x6b,0xff,0x15,0xcd,0x6d,0x9b,0x16,0x99,0x18,0xe0,0xd3,0x72,0x85,0xea,0x2b,0xaa,0xe6,0x0d,0x69, - 0x42,0x5f,0x77,0x66,0xad,0xa8,0xa5,0xd5,0xdf,0xbe,0xe2,0x12,0xaf,0x79,0xc0,0xd0,0x7c,0xa8,0x8f,0xf3, - 0x59,0xd6,0x4d,0x5a,0x10,0x96,0x79,0x9d,0x89,0x0f,0x85,0x23,0x96,0xb3,0x94,0xf0,0x5c,0xe4,0xbf,0xc3, - 0xfa,0xfe,0x63,0xf5,0xfb,0xe5,0x4e,0x96,0x06,0xbb,0xfe,0x73,0xfc,0xbc,0xdc,0x59,0x21,0x89,0x7e,0xfe, - 0x48,0x3f,0xdd,0xc1,0x67,0x74,0xa1,0x16,0x7d,0x1a,0x4d,0x92,0xae,0xb2,0x19,0x7f,0x0f,0x3e,0xf3,0x76, - 0xfd,0x6f,0x28,0xd7,0x27,0xb8,0xf2,0xe9,0xba,0x1d,0x13,0x94,0x51,0x09,0xfb,0xa7,0x37,0xba,0xb3,0xeb, - 0xbf,0x64,0xa8,0x70,0x57,0x47,0xde,0x1d,0x1a,0xf4,0x8b,0x8c,0xcd,0xc3,0x3e,0xa3,0x1f,0xfe,0x4f,0xc8, - 0x09,0xd0,0x33,0x8b,0x9e,0x77,0xfd,0x27,0x94,0x70,0x34,0x38,0xfc,0x7d,0x30,0xee,0x53,0xd1,0x5f,0xb2, - 0x4e,0xe3,0x1d,0xf7,0xfb,0x24,0xfc,0x3e,0xb9,0xc5,0x50,0xc9,0xab,0xb4,0x21,0xc2,0xd8,0xff,0x3e,0xb1, - 0x8d,0x13,0xe9,0x12,0x7e,0x8b,0x9e,0xdf,0x5f,0xcc,0xd3,0x22,0x78,0xf9,0xe6,0x68,0xda,0xdf,0xf5,0xbf, - 0x43,0x0a,0x7f,0xd3,0x38,0x7e,0xce,0xc2,0xc3,0x5f,0x13,0xba,0x73,0xfc,0x6b,0x5a,0xde,0x83,0x1b,0xee, - 0x16,0x91,0x25,0x69,0xaf,0x12,0xf2,0x34,0xa4,0x59,0x18,0x7e,0xdc,0x7f,0x11,0x2d,0x58,0x24,0x7b,0xe8, - 0x5c,0xee,0xf0,0x63,0x8a,0x33,0x86,0x74,0x16,0x3f,0x79,0xd2,0x20,0x08,0x9d,0xf1,0x6a,0x45,0x29,0xea, - 0x5b,0xab,0x86,0xaa,0xdb,0x86,0x13,0xe1,0xb9,0x4b,0x6e,0xae,0xcb,0x9d,0x64,0x26,0xdb,0x9c,0x85,0xc9, - 0xc8,0xa1,0xb6,0xe8,0x54,0xe2,0x50,0x06,0xc4,0x22,0x46,0xa1,0xd0,0xe4,0xba,0x28,0x9e,0x73,0x95,0xdd, - 0x72,0x2d,0xcd,0xb4,0x31,0x09,0x7f,0x65,0x8a,0xfc,0x9f,0x25,0xfb,0xca,0x62,0x6d,0x23,0xee,0xd0,0x17, - 0xd7,0x19,0x27,0xd9,0x7b,0xea,0xfb,0x5b,0xa4,0x43,0x69,0x1f,0x34,0xec,0x84,0x10,0xb4,0x22,0xf7,0x06, - 0xc9,0x8c,0x70,0x84,0xd3,0xcf,0xa9,0x7f,0x9a,0xfe,0x5d,0x5d,0xe5,0x2e,0x1d,0x72,0xff,0x37,0x54,0xba, - 0x8e,0xdf,0x2f,0x02,0x94,0x13,0xfc,0x1d,0x4c,0xd4,0x79,0x9c,0xab,0x7e,0x69,0x50,0x73,0x0c,0x8a,0x56, - 0x57,0x06,0x54,0x72,0x82,0x1a,0x42,0x1e,0x4d,0x93,0x4c,0xfa,0x9f,0xa3,0xff,0xaa,0x49,0xbb,0x57,0x2e, - 0xc5,0x5d,0x4a,0x1f,0x73,0xd5,0xc7,0x52,0xf5,0xa1,0x7d,0x16,0x95,0xee,0xb2,0xd9,0x15,0x25,0xc8,0xa2, - 0xc3,0xf8,0xe1,0x5b,0xfc,0xae,0xf5,0x92,0xa8,0x16,0x97,0x70,0x8f,0x3f,0x9a,0x0c,0xb0,0x74,0x08,0x45, - 0x07,0x4a,0x47,0x7e,0xd1,0x02,0xc0,0x09,0x35,0x38,0xbb,0xb1,0xff,0x07,0x61,0x06,0xaa,0x46,0x1c,0x03, - 0xc0,0x0e,0xf2,0x7b,0xfd,0xc2,0xfd,0x73,0xe6,0x57,0xac,0x44,0xa0,0x1e,0xd5,0x6e,0x7b,0x46,0xb3,0xdf, - 0x50,0x33,0x81,0x2d,0xf6,0xee,0xa7,0xc1,0x8a,0xdf,0x5e,0xc5,0xbd,0xa1,0xe1,0x45,0x8c,0x0c,0xbd,0x54, - 0xca,0x5c,0xbe,0x0a,0xad,0x5b,0xbd,0x5f,0x66,0xde,0x56,0x77,0xcf,0x77,0x59,0x45,0xe0,0x8e,0xf6,0xc0, - 0xf1,0x36,0x9a,0xf7,0xc2,0x5e,0x23,0xb2,0xba,0x7a,0x52,0x90,0x47,0xcc,0x3b,0xec,0x40,0x56,0x45,0x6c, - 0x34,0x0f,0x9a,0xa6,0xf1,0xac,0x32,0x8f,0x1f,0xe8,0x46,0xd7,0x1e,0xde,0x40,0x5d,0xbb,0x0c,0x7a,0xbd, - 0xe4,0xbe,0x9c,0x63,0x71,0xf7,0x02,0x95,0xa0,0xac,0x37,0xa2,0x6a,0x92,0xd0,0x0b,0xe8,0x53,0x3d,0xbd, - 0x49,0x83,0x77,0xfb,0x2e,0xc7,0x60,0x10,0x3b,0xfa,0x91,0x73,0x9c,0xba,0x94,0x8f,0x33,0x40,0x7f,0x20, - 0x24,0x22,0x10,0x70,0x86,0xa9,0xfd,0xa2,0x09,0x05,0xfa,0xbe,0xd3,0x73,0xfa,0x51,0x89,0x50,0x37,0xf5, - 0xb1,0xeb,0x47,0x55,0xea,0xb4,0xbe,0x00,0x41,0xfd,0x37,0xe1,0x4b,0xc7,0x33,0x5c,0x11,0x9b,0xed,0x54, - 0x36,0xa1,0x15,0x1e,0xc8,0x08,0xc3,0x9a,0xe3,0x43,0xbf,0xa3,0x4d,0x4b,0x6e,0x4d,0x82,0xb6,0x58,0xce, - 0xbb,0xac,0x81,0xb7,0x5a,0x39,0xe8,0x07,0x67,0x5a,0xe1,0x81,0x7c,0x19,0xef,0x54,0x99,0xf8,0xe9,0xd0, - 0xb1,0x96,0xcc,0x59,0x84,0x53,0x5d,0xe5,0xf2,0x6f,0x67,0xf8,0x6f,0xb1,0xac,0x80,0x38,0xc1,0xf1,0x9d, - 0xba,0x29,0x89,0xd3,0x27,0x36,0xc5,0x1b,0x1d,0x27,0xf2,0xe5,0xd3,0x11,0xea,0x33,0x1f,0xee,0xf4,0x5d, - 0x69,0x1f,0x63,0x1f,0x39,0x81,0x2a,0x49,0xcb,0x1b,0x1c,0xff,0xcb,0x14,0x8e,0x90,0x44,0x4c,0x5e,0x7d, - 0x99,0x1d,0x81,0xa2,0x28,0x94,0x62,0x77,0xc0,0xbd,0xd6,0x16,0x9b,0x92,0x26,0x21,0x92,0x07,0x6a,0x5c, - 0x23,0x57,0xda,0x42,0x37,0xc4,0x21,0x74,0x18,0xc3,0x52,0x73,0x0a,0x29,0xde,0xb9,0x73,0x49,0x0d,0xbb, - 0xb2,0xe5,0x32,0x5e,0x27,0xc8,0x3c,0xee,0x28,0x09,0x69,0x26,0x54,0x94,0x3e,0x2f,0xb9,0x11,0xbb,0x13, - 0xef,0x9a,0x0a,0x3c,0xdc,0x63,0x74,0x49,0xe3,0xa2,0x01,0x98,0x70,0xdb,0x87,0x54,0x7e,0xec,0x89,0xee, - 0x0b,0x4a,0xd1,0x02,0xd4,0x8a,0x69,0xf7,0x2f,0x94,0xe5,0xe9,0x3a,0x55,0x3a,0xa5,0xf6,0xf7,0xa1,0x47, - 0x20,0xf5,0x0d,0x7c,0xdd,0x99,0x30,0x1c,0x3a,0x1f,0x07,0x2d,0x82,0xe9,0xfe,0x22,0xa8,0xb4,0xb6,0xdb, - 0xda,0x2c,0x97,0xea,0xb4,0x16,0x0d,0xa1,0x1b,0xea,0xbb,0xc7,0x83,0xcf,0x3e,0x06,0xc4,0x01,0x82,0x96, - 0x4e,0xc8,0x46,0xac,0xd2,0xc0,0x57,0x84,0xd7,0xd8,0x7f,0x3c,0x6e,0x2f,0x89,0x1a,0x0c,0xbf,0xdb,0x6a, - 0x5e,0x08,0x80,0x04,0x3b,0x6e,0xba,0x96,0xb6,0x64,0x55,0x30,0x28,0xe8,0xf6,0xf9,0xf3,0x30,0x1b,0xe9, - 0x51,0x06,0x2a,0x03,0x3a,0x68,0x04,0xbd,0x81,0x1a,0x95,0xbf,0x0c,0x1b,0xc7,0x5a,0xd6,0x67,0x08,0x74, - 0xdd,0x9d,0xa7,0xac,0xc6,0xe1,0xb1,0x44,0xca,0xf0,0x02,0x2d,0x79,0x65,0x86,0xf2,0x66,0xc5,0x2b,0xb2, - 0xf4,0x86,0x13,0x2a,0x40,0xb7,0x1d,0xc0,0xaa,0xd6,0x8e,0xd2,0x33,0x31,0x8f,0x94,0x43,0xa7,0x3f,0xf3, - 0x7c,0xd9,0x09,0xe9,0xdf,0x77,0xf4,0xf9,0x51,0xab,0x3d,0xf7,0x67,0x95,0x64,0xc5,0x2d,0x56,0x2b,0x28, - 0x4c,0xcb,0x3e,0x9c,0xcc,0x97,0x74,0x3b,0x39,0xf5,0xa7,0x2b,0x47,0x9b,0x0b,0x56,0x1b,0xb1,0xf5,0x75, - 0x5a,0x17,0x13,0x12,0x26,0xed,0xc4,0xfd,0xe6,0x15,0x96,0x69,0xc4,0x16,0x63,0x7c,0x29,0x1a,0x0c,0x32, - 0x5c,0x8b,0x44,0x02,0xf0,0x14,0x18,0xb6,0x94,0xe0,0xc1,0xaf,0x99,0xe7,0xb9,0xb9,0x09,0x43,0x74,0x75, - 0x36,0xb0,0x26,0xc6,0xf2,0x35,0xd1,0x53,0x51,0x97,0x4b,0x0a,0x10,0xb2,0xca,0x01,0x17,0x84,0x95,0xc4, - 0x15,0xa1,0x5c,0x4c,0x54,0x7b,0x25,0x27,0x0d,0x7e,0xcb,0xe1,0x70,0xe7,0x49,0xfc,0x63,0x3c,0x2b,0x5f, - 0x2d,0xe2,0x14,0x45,0xca,0xcc,0xaf,0x2d,0x45,0x50,0x24,0x7e,0x43,0x16,0x1a,0xfc,0x14,0xfb,0x96,0xf0, - 0xe0,0xe7,0x8c,0xf8,0x87,0xe9,0x72,0xd2,0xad,0x72,0xc3,0xb1,0x1c,0xf9,0x94,0xeb,0x00,0x59,0x3a,0xe4, - 0x9f,0xc7,0x1e,0x21,0x06,0xef,0xb2,0x84,0xc0,0xc4,0xc7,0x8a,0xfc,0xd0,0x4d,0xa2,0xf6,0xe0,0xe8,0x05, - 0xd0,0xce,0x77,0x36,0xe0,0x1f,0x92,0x75,0x5f,0x9f,0x04,0x9f,0x78,0x97,0x24,0x55,0xee,0x3c,0x7c,0xf3, - 0x30,0x26,0xd1,0x85,0xfa,0x6e,0x3c,0xc2,0x89,0x8d,0xe1,0x19,0x15,0x02,0xa3,0x7f,0x19,0x96,0xef,0xe8, - 0xea,0xce,0xf1,0xb8,0xbf,0x3a,0x22,0x0a,0xdb,0x1b,0x7f,0x36,0x3a,0xf2,0xc0,0xee,0x85,0x8f,0x56,0xbf, - 0xeb,0x11,0xd0,0xcf,0x23,0x77,0xd7,0xff,0x5e,0xd5,0x38,0x24,0xb6,0x8e,0x98,0xbb,0xe3,0x3b,0x63,0x54, - 0x1d,0x83,0x33,0x24,0xea,0xba,0x91,0xb8,0x3a,0x3a,0xbc,0x4b,0xf4,0xfd,0xdd,0x31,0x7d,0x38,0xf4,0xe1, - 0xe0,0x83,0xc8,0x60,0xfc,0x69,0x96,0x1d,0x7b,0x9f,0x51,0xb3,0x44,0xb9,0x7f,0x0b,0x52,0xa7,0x98,0x04, - 0xf7,0xfe,0x0e,0x67,0x46,0xc1,0x57,0xa2,0x66,0x11,0xec,0xdf,0xf7,0x65,0xbd,0xef,0xdf,0xf3,0x97,0x8b, - 0xe0,0xfe,0x97,0xc4,0x21,0xcf,0xca,0xe0,0xfe,0xdf,0xfd,0x1c,0xaf,0x27,0xc1,0xfd,0xaf,0x7c,0x78,0xc1, - 0x0e,0x1e,0xec,0xf9,0xf2,0x80,0x19,0x1c,0x7e,0xe9,0x3f,0xf8,0x82,0x98,0x90,0x7f,0x66,0x5d,0x7e,0xb9, - 0x80,0x72,0xfa,0x00,0x1e,0xcb,0x67,0xd6,0x90,0xd8,0xa6,0xdf,0x32,0x08,0x83,0x08,0x1e,0xf4,0xa1,0xc6, - 0x0f,0x00,0x48,0x74,0x1a,0x89,0x08,0x71,0x08,0x8d,0x0a,0xce,0x33,0x65,0xd4,0xef,0x67,0xf2,0xe0,0xc8, - 0x45,0x10,0x97,0x2c,0xf8,0x67,0xe6,0xd6,0x71,0x43,0x8f,0x30,0x4e,0x4f,0xa5,0x4c,0x96,0x39,0x36,0xe9, - 0x80,0x33,0xe8,0x00,0x4f,0xca,0x7c,0xce,0x35,0xb6,0x74,0x01,0x4a,0xf8,0x01,0x1a,0xba,0x3e,0xfb,0x0e, - 0xad,0xe5,0x71,0x8a,0x64,0x46,0xf3,0x7a,0x16,0xfd,0x96,0x0c,0xc8,0x0b,0x6a,0x39,0x48,0x90,0x2c,0x5e, - 0x3b,0x64,0xdd,0x15,0xaf,0x50,0x77,0x41,0x18,0x49,0xa9,0xde,0xf6,0xb6,0x1e,0xa1,0xe4,0xf1,0x98,0xf7, - 0xd0,0x5e,0x32,0x9d,0xce,0xe3,0x4f,0xaa,0xb6,0x0f,0xb9,0x02,0xef,0xcf,0xa7,0xd4,0xba,0x07,0xf8,0xff, - 0x95,0x36,0x82,0xb8,0xc6,0xa6,0x3f,0x16,0xb8,0x81,0xab,0xa2,0xda,0x75,0x6c,0xec,0xf1,0xa9,0x6c,0xac, - 0x5f,0xc3,0x10,0x6b,0x78,0x2b,0x49,0xdb,0x7e,0x70,0xd0,0x1c,0x87,0xcf,0xab,0xac,0x85,0xaa,0x96,0x4e, - 0xa8,0xa5,0x94,0x5a,0xba,0x0b,0xf9,0x17,0x9d,0xb7,0x3e,0x98,0xef,0xaa,0x55,0xdc,0x7d,0x16,0x25,0x0d, - 0x47,0x47,0x95,0x3a,0x22,0x1e,0xc3,0x46,0x42,0xea,0x04,0x8a,0x66,0xf2,0x6e,0x28,0xce,0xd1,0xa7,0x1d, - 0x5f,0x95,0x77,0x3c,0x35,0xe6,0xc9,0x3c,0x8b,0xce,0x11,0x57,0xf7,0xdf,0xb2,0xb6,0xd7,0xd3,0xcc,0x38, - 0xcb,0xe4,0x9f,0x90,0x44,0xd2,0x9d,0x88,0x3f,0xab,0xd5,0x6f,0x2a,0xd1,0x08,0x2f,0x8b,0xf0,0x57,0x88, - 0xe1,0xb5,0x62,0xba,0x63,0x32,0x9e,0x12,0xc7,0xa0,0x3d,0xb8,0xe3,0x9d,0xf1,0xdb,0x38,0x45,0x04,0xbf, - 0x7a,0x69,0x25,0x75,0x34,0xe5,0x0c,0xc7,0x11,0x5e,0xba,0xac,0x68,0xf1,0x6b,0xc6,0xa6,0xd1,0x26,0xdd, - 0x33,0xd1,0xbb,0x6a,0x08,0x74,0xb5,0x7a,0x9f,0x0e,0x95,0x6f,0xe4,0x0f,0x27,0xb1,0x09,0xc4,0xd8,0xb1, - 0x91,0x5b,0xc6,0x8c,0x57,0xf9,0xc7,0x4c,0x27,0xf1,0x73,0x58,0x6b,0xf1,0xaf,0x66,0xc0,0x41,0xf8,0xe8, - 0x8e,0xa3,0xd0,0xb5,0x85,0x42,0x47,0x47,0x27,0x4e,0xdf,0x99,0x12,0x0e,0x9f,0x41,0x00,0x47,0x40,0x5f, - 0x22,0xa0,0x2e,0x2d,0xf2,0x07,0x76,0xcc,0x36,0x81,0xf0,0x0f,0xd7,0x9e,0x7f,0x95,0x94,0x67,0x7e,0x74, - 0x15,0x25,0xa5,0xcf,0x86,0x01,0x3e,0xfb,0x40,0x57,0xca,0xf3,0xfc,0x0c,0xe4,0xb3,0xe3,0x52,0x9f,0xe3, - 0xd2,0xfb,0x57,0x84,0x56,0x63,0xff,0x03,0xa4,0x7e,0x0a,0xd9,0xf8,0xc4,0x9c,0x65,0xf0,0x76,0xc8,0x9e, - 0x58,0x7c,0x99,0x81,0xf6,0x00,0xa6,0xfd,0x2e,0x8a,0xbb,0x50,0x62,0x63,0x24,0x44,0x3d,0x3b,0x41,0x4b, - 0xd2,0x25,0x5c,0xf7,0x9c,0x2c,0x4f,0x4f,0x21,0x26,0x54,0xab,0x50,0x05,0x5d,0x71,0x94,0x9f,0x1a,0xdc, - 0x09,0xea,0x76,0xa0,0x69,0xad,0x30,0x35,0xaf,0xcf,0x33,0x94,0x20,0xc1,0x8d,0x39,0xcb,0xa0,0xc4,0xef, - 0x28,0x2b,0xb0,0x77,0xb6,0x43,0x28,0x1d,0x08,0xff,0xe8,0x88,0x50,0x3e,0xfd,0x53,0xb5,0xda,0xc8,0xa0, - 0x3e,0xdc,0xf7,0x4d,0xc9,0x8f,0x88,0x22,0x36,0x5a,0x8d,0xb2,0xc7,0x60,0xc2,0x8b,0x88,0x7d,0x1c,0x6e, - 0xed,0x7b,0xfe,0x49,0xa6,0xf6,0x93,0x0d,0xc4,0x20,0xe1,0xb6,0x22,0xb6,0x0c,0xd3,0x87,0x1f,0x32,0xdb, - 0x39,0xcb,0x87,0x8c,0xed,0x70,0xf1,0x92,0x73,0x96,0x85,0x65,0x05,0xd5,0x27,0xf8,0xa5,0xef,0x7a,0x80, - 0x93,0x7f,0x8c,0x14,0xeb,0x26,0xe7,0xc4,0x2b,0x24,0x36,0xae,0x6a,0xce,0xb8,0xc8,0x00,0xda,0x65,0xc7, - 0x41,0x78,0x29,0x07,0xe1,0xb4,0x59,0xa0,0x29,0xa6,0xa1,0x32,0x1f,0x5a,0x65,0xb2,0xa2,0x6c,0x16,0xba, - 0xc4,0x10,0x68,0x27,0x92,0x8b,0xa4,0x44,0x40,0x44,0x65,0x94,0x4b,0xe4,0x29,0x2b,0x9f,0x6c,0xed,0xb3, - 0xae,0x27,0x62,0x9c,0xe3,0x74,0xfc,0x72,0x46,0xa5,0x78,0x98,0x3e,0xd6,0x0b,0x74,0xea,0x7e,0xcb,0x32, - 0xa3,0xb9,0xc8,0xf4,0x6b,0xd9,0xc7,0x0b,0x1e,0xd4,0x5a,0x97,0x27,0xf2,0xb6,0xe0,0xda,0x56,0xd3,0xb9, - 0xf6,0x23,0xc0,0xfa,0x77,0x7e,0x51,0xc5,0xaf,0x17,0x4d,0xbe,0xa5,0xa7,0xde,0xde,0xf0,0xdc,0x90,0xe3, - 0xa7,0xec,0x58,0xe3,0x41,0x96,0x92,0x59,0xd5,0x3f,0x09,0xa3,0x2a,0xa8,0x7d,0xf2,0x28,0x24,0xae,0x27, - 0x42,0x28,0x98,0xb9,0x2e,0x8a,0x43,0x4e,0xf3,0x2a,0x10,0x52,0x4d,0xd3,0x94,0x21,0x3f,0xfb,0xa2,0xb4, - 0x65,0x80,0x69,0x37,0x34,0x79,0x14,0x26,0xc3,0x09,0x55,0x28,0x07,0xec,0x65,0x85,0xff,0xb0,0xbf,0x75, - 0x96,0x4c,0x60,0xfc,0x43,0x5d,0x3c,0xc4,0x02,0x26,0xdc,0xed,0xce,0x3e,0xe7,0x33,0x77,0xe4,0x9c,0xe4, - 0xa0,0xf0,0x8a,0x11,0x13,0x56,0x39,0x3b,0xad,0xe7,0x0f,0x9a,0x3f,0x2d,0xf7,0xd6,0x9e,0x78,0x46,0x70, - 0x16,0x5c,0x8a,0xe3,0xe0,0x76,0x96,0xdb,0xe7,0x72,0x7e,0x6d,0x20,0xb2,0x82,0xb4,0xa8,0xda,0x39,0x02, - 0x3c,0x9d,0x60,0x13,0xa1,0x8c,0x5e,0x49,0x65,0x68,0xcb,0xca,0x41,0x45,0x5f,0x32,0xb4,0xcd,0xf1,0xe2, - 0xdc,0xa0,0x2a,0x39,0x63,0x49,0x8b,0x12,0x0f,0x59,0xc8,0x97,0x10,0x02,0x27,0x96,0xe4,0x4d,0xe6,0x66, - 0x46,0x9d,0x0d,0x76,0xa9,0x59,0xe3,0x4d,0x7c,0x11,0x3e,0xce,0x0e,0xa7,0x08,0x11,0xc5,0x7f,0x6b,0xf2, - 0x6f,0x22,0xe0,0x8e,0x8a,0xa3,0xa3,0x37,0x44,0xba,0x79,0xee,0xc3,0x5d,0xa7,0x3f,0xd5,0x82,0x70,0x8f, - 0x4e,0x7c,0x02,0x5e,0x1a,0xd6,0x59,0x5a,0xb4,0xbd,0xb0,0x65,0xda,0x0c,0x1e,0x1a,0xd2,0x8c,0x25,0xac, - 0x4f,0xe3,0x99,0x32,0xff,0xa7,0xfc,0x4e,0x62,0xe1,0x38,0x36,0x72,0x58,0x39,0xa0,0xda,0x85,0x18,0x9d, - 0xfa,0x2e,0xa4,0xe7,0x9d,0x9d,0x47,0xbb,0xa7,0xc4,0x62,0xd0,0xad,0x6f,0x17,0x39,0x3a,0x7c,0xfa,0xec, - 0xf1,0xc1,0xe3,0xa3,0xc3,0xaa,0xe4,0x78,0x6c,0x4a,0x42,0xa8,0xec,0x4e,0x7d,0x71,0xbb,0x0c,0x7d,0x16, - 0xe5,0xb3,0x89,0xc3,0xe8,0x9d,0x45,0x72,0x51,0xf2,0x07,0x94,0x20,0x1c,0xc8,0x5f,0x08,0xe6,0xb5,0x8e, - 0xce,0xce,0x99,0x1e,0x6f,0x1c,0x9e,0xf9,0x39,0x35,0xb4,0xdc,0x99,0x21,0x12,0xb5,0xb1,0x43,0xba,0x0c, - 0x2d,0x65,0x80,0x87,0x22,0x03,0x80,0x1a,0xe6,0x25,0x2f,0xfe,0x32,0xd3,0x11,0xb5,0xb4,0x05,0x99,0xad, - 0x3a,0xb0,0x73,0xf4,0xfe,0x7e,0x2c,0x55,0x2e,0x18,0x7c,0x4b,0x15,0x9e,0x11,0x91,0x2a,0x94,0x0a,0xa2, - 0x0a,0x8f,0xa0,0x1c,0x96,0x54,0xa7,0xf0,0x81,0x0f,0x5b,0xdb,0xd4,0xbd,0xe8,0xdf,0x27,0x16,0x4f,0xa1, - 0xfa,0x35,0xf4,0xba,0x66,0x8d,0x3e,0x4f,0xed,0x3e,0xc7,0x8f,0xa4,0xbf,0x53,0xee,0x2f,0x75,0x4f,0xfb, - 0xf7,0xec,0xea,0x28,0x0f,0x0d,0x69,0x76,0x4f,0xeb,0xce,0x45,0xe5,0xf0,0x03,0x0a,0x7e,0xc0,0xdb,0xb2, - 0x0e,0x68,0x68,0x2a,0xa0,0xfc,0x89,0x29,0x3f,0x91,0xf2,0x27,0xd2,0xef,0x71,0xb8,0x1c,0xa6,0xee,0x89, - 0x55,0x8f,0x16,0xf0,0xe4,0x70,0x7f,0xec,0x1f,0x33,0x5b,0x6a,0xb7,0x71,0xd5,0x8c,0x95,0x52,0x9a,0x46, - 0x23,0x69,0xd4,0x44,0xfe,0xbb,0xd6,0x1e,0xff,0x4a,0x34,0xc5,0x9c,0x47,0x80,0xc3,0x82,0x53,0x16,0x2c, - 0xd7,0xd4,0x65,0x69,0x0f,0xd5,0x3a,0x55,0xc3,0x2d,0x1c,0x06,0xd5,0x6c,0x91,0xb1,0xf1,0x47,0x66,0x12, - 0x72,0x4a,0x18,0x7a,0xa9,0x9b,0xd5,0x06,0xac,0xfc,0x47,0xea,0x40,0x9c,0x38,0x4f,0x95,0x0d,0xe6,0x12, - 0x67,0xf1,0x0d,0xdd,0xe2,0x84,0x36,0x30,0x98,0xd4,0x4d,0xea,0x95,0xe1,0xfb,0x7c,0xe9,0xe7,0xeb,0xb5, - 0x2b,0x56,0x53,0xde,0x75,0x2b,0xd4,0x42,0x1a,0x1a,0x37,0x85,0x6c,0x75,0x51,0xb5,0xc9,0xdc,0xbf,0x60, - 0x14,0x3a,0xbf,0xa9,0xb8,0x0e,0xcf,0x69,0x14,0xfe,0x9c,0x3f,0x33,0x71,0x00,0x9d,0xf3,0x03,0xb9,0x9e, - 0xe6,0x32,0x9c,0xb0,0xb7,0x86,0xad,0xad,0x84,0x7d,0xf0,0xc8,0xf0,0x15,0x0c,0x4f,0xf9,0x50,0x8b,0x64, - 0x6a,0x86,0x13,0xbf,0x37,0x5c,0x3c,0x9c,0x0d,0x17,0x5a,0xc9,0xef,0x4c,0x57,0x38,0x5c,0x8c,0x87,0x0b, - 0xea,0x74,0x07,0xd6,0x72,0x67,0x98,0x93,0x06,0xa0,0xbb,0x8e,0x73,0x17,0xeb,0xc6,0x6f,0x54,0x67,0x87, - 0xf7,0xc7,0xdb,0xdb,0x4a,0xa1,0x13,0x3f,0x7c,0x95,0xfc,0xc0,0x4e,0x7e,0x60,0x92,0x3f,0xb7,0x93,0x3f, - 0x57,0xd6,0x84,0x97,0xdc,0xcc,0x6a,0x85,0x82,0xf8,0xf7,0x73,0xfa,0xd7,0x71,0xfc,0x8b,0xd0,0x89,0xb4, - 0x8b,0x6b,0xb8,0x6f,0x96,0x16,0xf6,0xc7,0x23,0x7d,0x46,0x9e,0xc5,0x70,0xa9,0xfb,0x32,0xbe,0x82,0x4b, - 0xd4,0xe2,0x9b,0x2c,0xff,0x8e,0x4a,0x05,0xdd,0xb9,0xc3,0x29,0xcd,0x48,0xe9,0xae,0xa3,0x11,0x9f,0x49, - 0xec,0xe0,0x5f,0xa5,0x7b,0x49,0xc7,0x68,0xbd,0x5e,0xb2,0xea,0x33,0x6f,0x32,0x2b,0xb0,0x12,0x66,0xb5, - 0x6f,0x9c,0x20,0x6d,0xe0,0x4a,0x81,0xba,0x29,0x3c,0xd2,0x87,0x1c,0x17,0xa1,0x81,0xec,0x53,0xd8,0x92, - 0xf1,0x93,0x37,0xfd,0x82,0x47,0x9b,0x74,0xea,0xad,0x69,0xfb,0x81,0x8b,0x32,0x3f,0x66,0xd7,0x0b,0xfb, - 0xcd,0x73,0x77,0xa0,0x4d,0xc6,0xcf,0xf5,0xc7,0x53,0xf5,0x01,0xd8,0xb9,0x34,0xf7,0xdb,0xb9,0x71,0xec, - 0x7c,0xe9,0x11,0x48,0x4f,0xd4,0x71,0x3f,0x87,0x1b,0x57,0xeb,0x7b,0x69,0x7d,0xcf,0xac,0x6f,0xf7,0x69, - 0x78,0x6e,0x63,0x2c,0x9f,0x70,0xe1,0xc3,0x3d,0x02,0xfd,0xcb,0x7e,0xf8,0xd4,0xaf,0x35,0x7e,0x50,0xbb, - 0xf7,0xf7,0xfc,0x4b,0x20,0x9c,0x4b,0x6f,0x7d,0xc9,0xe2,0x48,0xca,0x25,0xac,0x08,0xcb,0x71,0x83,0x49, - 0x0f,0x2a,0x64,0x7a,0xc0,0x3a,0xa6,0xb1,0xa8,0x29,0xb7,0x50,0x6d,0xac,0x4d,0x64,0xd7,0xb9,0xcb,0x32, - 0x22,0x89,0x12,0x72,0x96,0xf9,0xd6,0x33,0x44,0xed,0xf6,0xb3,0x24,0x2b,0xf6,0x35,0xd8,0x21,0x54,0x69, - 0xdd,0x88,0x7e,0x17,0x48,0x6c,0x80,0x94,0xce,0xb2,0x37,0x03,0x97,0xca,0xf5,0x5b,0xa8,0x3b,0x30,0x98, - 0xbb,0x50,0xe8,0xc9,0xba,0x16,0x23,0x58,0xbf,0xca,0x89,0x15,0x01,0x69,0xb1,0x5a,0x5d,0xe1,0x8d,0x73, - 0xf8,0x12,0x20,0x0f,0x97,0xd9,0xb4,0x76,0x4b,0xa8,0xc2,0xd7,0xb8,0x97,0x4a,0xd9,0x99,0x90,0x9e,0x90, - 0xb6,0xb1,0x4d,0xd9,0x6a,0xe1,0x25,0xe2,0xa3,0xbe,0xcd,0xb4,0xee,0x64,0xaa,0x74,0x26,0xe5,0x2b,0x94, - 0x3f,0xe6,0x12,0xfd,0x2e,0xf3,0x65,0x1b,0xf9,0x04,0x80,0x16,0x31,0x31,0xf4,0xa0,0x5c,0xae,0xe4,0x89, - 0xdf,0x97,0x3c,0xec,0x84,0x2e,0x48,0x48,0x14,0x69,0xc4,0xa0,0xe7,0xb6,0x94,0x03,0x7d,0xf6,0xa8,0x38, - 0x0d,0x67,0x9e,0x28,0x33,0xeb,0xe7,0x68,0x24,0x4f,0x45,0xf9,0x7a,0x5a,0x97,0xa7,0xd2,0x24,0x21,0xb6, - 0xdb,0x7d,0x17,0x5d,0x46,0x76,0xd9,0x5a,0x21,0x1a,0x33,0x62,0xd4,0x7a,0xdc,0x21,0x4d,0xfd,0x84,0x3d, - 0xc1,0x73,0x20,0x4a,0xbd,0x10,0x53,0x85,0xc7,0x4e,0x0d,0x81,0x0f,0x7c,0x36,0x0b,0x4f,0x33,0x3a,0xf3, - 0xee,0x8c,0x48,0x5a,0x82,0x7f,0x56,0x0c,0xa4,0xf9,0x5f,0x84,0x33,0xdf,0x3c,0x34,0x5e,0xe0,0x51,0x0d, - 0xb2,0x3b,0x34,0x7f,0x01,0x52,0x99,0x4d,0x0d,0x66,0x15,0x5f,0xb1,0xe7,0x31,0x63,0x31,0xb3,0x18,0x0b, - 0xbc,0x48,0x76,0x46,0x2f,0x36,0xc2,0x32,0xe3,0xee,0xd2,0x8e,0xd2,0x68,0x5e,0x55,0x2d,0x14,0x5c,0x6a, - 0x3f,0x34,0x25,0x47,0xf0,0x84,0x97,0x1e,0x85,0xa3,0xac,0xd6,0x28,0x51,0xe2,0x92,0x08,0xca,0x6a,0x28, - 0xf9,0x34,0x0a,0x4a,0x58,0xd2,0xb5,0xf6,0xa8,0x49,0xf3,0x60,0x5d,0x3b,0x16,0xda,0x49,0x54,0xec,0x99, - 0x17,0xcc,0xaa,0xb7,0x50,0xca,0xfd,0x27,0x8c,0xf9,0x3b,0x22,0x95,0x5a,0x6f,0xb6,0xea,0xfe,0x8d,0xf1, - 0x68,0x5a,0xe2,0x91,0x31,0x96,0x47,0xc6,0x52,0x3d,0x32,0xc6,0x6b,0x65,0x64,0xdd,0xf1,0x84,0x2b,0xba, - 0xcc,0xea,0xf9,0x51,0xc7,0x4e,0x6c,0x3e,0xe8,0x6a,0x6d,0x26,0xf5,0x2e,0x09,0x87,0xba,0x18,0xd4,0xa5, - 0xbd,0x59,0x97,0xa8,0x00,0x26,0x9d,0x9b,0xbc,0x64,0x7e,0x9d,0x77,0xe3,0xdb,0x92,0x37,0x99,0xd6,0x72, - 0xa4,0x21,0x60,0xb5,0xca,0x69,0xac,0x0c,0x33,0xd2,0x24,0x41,0x00,0x7f,0x51,0x55,0x1a,0x7e,0x2e,0xc3, - 0xd7,0x99,0x6a,0x16,0xb3,0xb5,0x17,0xe4,0xd4,0x23,0x9d,0xc6,0x2d,0x0b,0xd6,0x60,0x22,0xd4,0x6a,0x66, - 0xeb,0x66,0x5e,0xd5,0x3e,0xa5,0xe6,0x70,0x72,0x7c,0x3d,0x6d,0x81,0x1e,0x73,0x68,0x3d,0x00,0xb8,0x96, - 0xdc,0x52,0x02,0x82,0xc2,0x66,0x0b,0x98,0xfe,0xba,0x95,0x93,0x1b,0x5e,0x9b,0x94,0xa7,0xf3,0x1b,0x2e, - 0x16,0x1e,0x7a,0x5c,0x1f,0x3a,0x2c,0x32,0x68,0xc1,0x8c,0x8c,0x7d,0x36,0x80,0x85,0x02,0x3b,0xfd,0xe2, - 0x28,0xe2,0xb2,0xfd,0xfb,0xa2,0x4f,0x12,0x4a,0xae,0xc8,0x05,0x57,0xab,0xbb,0x8e,0x92,0x1f,0x38,0x77, - 0x87,0xd4,0x6d,0x2d,0xd8,0x5b,0xfd,0x37,0x9b,0x11,0x1c,0x9e,0x8d,0xc3,0x99,0x18,0x5b,0x57,0x63,0x14, - 0xbc,0x31,0xe3,0xa3,0x23,0x61,0xd9,0x12,0xb9,0xda,0xfd,0x8b,0xe1,0x7c,0x94,0x02,0xe8,0x88,0xf2,0x9a, - 0xf9,0x99,0x2e,0x88,0x38,0x63,0x69,0x87,0x5e,0x7d,0x76,0x98,0x19,0xb6,0x6d,0xec,0x97,0x96,0x7b,0xac, - 0xc3,0x96,0x4f,0x2c,0x2a,0x81,0xe0,0xcb,0xf7,0xa1,0x0d,0xa2,0x11,0x4a,0xcf,0x91,0x5f,0xec,0x4e,0x61, - 0x6b,0x02,0x4d,0xeb,0x6a,0x8c,0x58,0x5a,0xdf,0xb4,0x1f,0xee,0x13,0xb9,0x55,0xef,0x2f,0x15,0x87,0xdb, - 0xb8,0xa0,0x6a,0x52,0x7e,0x1d,0x5c,0xec,0x65,0x6a,0x3f,0x1d,0x89,0x47,0x13,0x20,0xb6,0xa4,0xc2,0x59, - 0x8b,0xca,0x1d,0x07,0x4c,0xbb,0x3d,0x73,0x9a,0x6a,0xce,0x3f,0xe2,0x70,0x82,0xc0,0x8f,0xf2,0x84,0x33, - 0x72,0x11,0x6a,0xd3,0xa9,0xb8,0xa0,0x5c,0xdb,0xaa,0x30,0x5a,0xd5,0x09,0xa3,0x38,0xf8,0x25,0x63,0xb7, - 0x7e,0xec,0xf2,0x5c,0x46,0x3d,0xa2,0x19,0x43,0x9c,0xa7,0x3c,0xbe,0x6d,0x15,0xbc,0x06,0x5b,0xec,0xbb, - 0xcf,0x6d,0x4a,0x4f,0x04,0x4a,0x2f,0xb3,0xd1,0x6f,0x89,0x7b,0x99,0x79,0xc1,0xb7,0x09,0x73,0xeb,0x15, - 0xb3,0x60,0x9c,0xbf,0xf9,0x16,0x0b,0x4a,0xff,0x4c,0xe0,0xc2,0x37,0x2a,0xca,0xe7,0x20,0x1a,0x80,0xb0, - 0x38,0x9e,0x4f,0x3c,0xc1,0x65,0xe5,0x5d,0xd3,0xce,0xe6,0x42,0x4f,0x78,0x8f,0xf0,0xd4,0xa4,0x89,0x65, - 0x43,0x48,0x4c,0x60,0xa5,0xeb,0x2b,0xf2,0xaa,0x81,0xbf,0x32,0xad,0xa1,0x38,0x0f,0xff,0x19,0xbb,0xb6, - 0x3b,0xe4,0xa1,0xaa,0x20,0x8f,0x31,0x73,0x79,0x84,0x52,0x6d,0x5f,0x3b,0xff,0x38,0x11,0x4d,0x41,0x07, - 0x3a,0x13,0x34,0xc0,0xa4,0x9f,0x57,0x94,0xb7,0xbe,0xbd,0x26,0x0f,0x2b,0x53,0x8b,0x8e,0x61,0xdd,0x38, - 0x28,0x3e,0x67,0xd0,0xe8,0x83,0x41,0x52,0xa4,0x44,0x5a,0x7d,0x56,0x17,0x3c,0x8f,0xd3,0x22,0x28,0xd6, - 0x1c,0x19,0xc8,0x1b,0x95,0x9a,0x6c,0x84,0x15,0xe8,0x3d,0xdf,0xaa,0x85,0x45,0xd2,0x3f,0x74,0x35,0x10, - 0x92,0xf8,0x90,0x37,0x2d,0x3a,0xb7,0x81,0xc0,0x6c,0x5c,0xed,0xa9,0x01,0xe3,0xc3,0xb2,0x82,0x4d,0x06, - 0x69,0x28,0x8d,0x5b,0x9d,0xdd,0x37,0x8d,0x08,0xfd,0x98,0xb3,0x41,0x78,0xcb,0x4d,0x7c,0xf3,0x98,0xd6, - 0x2b,0xfb,0xc6,0xd6,0x2d,0xd8,0xda,0x63,0xf3,0x08,0x62,0x57,0x5c,0x0d,0x9b,0x88,0x63,0xac,0x04,0x49, - 0x90,0x06,0x5f,0x24,0x7f,0xc4,0x2c,0xc7,0x61,0x53,0x28,0x1f,0x32,0x9d,0x83,0x2c,0xfc,0x21,0x03,0x9e, - 0xb0,0x9e,0x9b,0x40,0x4b,0x9c,0xe3,0x95,0xb4,0x25,0x9b,0x35,0xf7,0x0c,0x4c,0x78,0xc4,0x95,0x8c,0xaa, - 0x19,0xd2,0xdd,0x5a,0xfa,0xf7,0xa8,0xab,0x89,0x3a,0xcc,0x2e,0x4e,0xb6,0xfc,0x20,0x76,0xc6,0xdd,0x9a, - 0xa8,0x6b,0x79,0x02,0xcb,0x04,0xa5,0x28,0x4a,0x9d,0x41,0x45,0x07,0xff,0xce,0x10,0xf9,0xeb,0x34,0x75, - 0xd9,0x98,0x0a,0x0c,0xd0,0x79,0x66,0xbe,0xdb,0x26,0xa0,0xc6,0x00,0x94,0xd5,0xa0,0x74,0x5c,0x08,0xe5, - 0x15,0xda,0xb8,0x0e,0xe2,0xea,0x35,0x4b,0x02,0x74,0x53,0xd9,0x87,0x1a,0x9f,0x31,0x04,0x4c,0xd4,0xa3, - 0x32,0x2a,0x43,0x18,0x41,0x4a,0x18,0x20,0x50,0xcc,0x07,0x5a,0x20,0x0f,0xff,0xf3,0xf7,0x0d,0x9e,0x12, - 0xab,0x05,0x1a,0x5e,0xa9,0xc8,0x0a,0x07,0xf8,0x98,0xa3,0x02,0x55,0x86,0x60,0xf8,0xa1,0xb1,0xca,0xa1, - 0x93,0xa4,0xa0,0x34,0x77,0xcc,0x38,0xb5,0xd5,0x82,0x2d,0xe3,0xe4,0xf8,0xa1,0x4d,0xbf,0x81,0x3a,0x3c, - 0xb5,0xb6,0x8f,0xad,0xf0,0x29,0x91,0x87,0xf0,0xbb,0xe2,0xeb,0xad,0x83,0xc1,0x92,0xde,0x8b,0xad,0x7d, - 0x26,0xde,0x89,0xce,0x9e,0x3d,0xcd,0x68,0xa1,0xf9,0x1d,0xa0,0x0a,0x38,0x4d,0xa8,0x33,0x0a,0xeb,0x99, - 0xba,0xbf,0xec,0x61,0x54,0x79,0xd6,0x2a,0x1a,0x85,0xe0,0x49,0x89,0x2f,0x2c,0xea,0x19,0x56,0x71,0x1b, - 0x7a,0x66,0x60,0x9e,0xac,0x89,0x0e,0xad,0x81,0x8b,0xf2,0x67,0xd0,0x58,0x47,0x53,0x15,0x87,0x23,0x13, - 0xef,0x7f,0x26,0xed,0x79,0x4a,0xb4,0xb9,0x61,0xd0,0x28,0x41,0x18,0x90,0xda,0x12,0x51,0x71,0x01,0xf0, - 0x46,0xfa,0x6a,0x75,0xbf,0x96,0xcc,0x6e,0xdb,0xd9,0x65,0x84,0xc2,0x2e,0x60,0xcd,0x4c,0x4f,0xf0,0x47, - 0xcc,0x04,0x8e,0x05,0xd2,0x92,0xb6,0xef,0x57,0x6d,0x34,0x62,0xb8,0xb7,0xb7,0x4b,0x07,0x73,0x87,0xf0, - 0xd7,0x72,0xf5,0xe8,0xa7,0x60,0xe8,0x4b,0x06,0xbe,0xe1,0x5f,0xdb,0x98,0xd8,0xdd,0xb0,0x27,0x1c,0xc6, - 0x00,0x6e,0xa1,0xf6,0x8d,0xd2,0x38,0x0b,0x93,0xd3,0x94,0x0d,0x8f,0x94,0xac,0xf8,0x9a,0xae,0x01,0xe2, - 0x8e,0x95,0x11,0x66,0xa6,0x43,0xd7,0x36,0x9e,0x4b,0x28,0xa3,0x91,0xb2,0xae,0x07,0xfb,0x33,0xfb,0x5a, - 0xba,0x96,0xc2,0x45,0xdd,0x28,0x33,0x86,0xe6,0x20,0x9b,0x56,0x8a,0x3b,0xa0,0x5c,0x5e,0xa0,0xea,0x77, - 0x9a,0x5b,0x8e,0xb2,0x20,0xf1,0xb4,0x23,0xd4,0x35,0x1a,0x4b,0xb5,0xdc,0x9c,0x1d,0xf9,0xa8,0xef,0xb0, - 0x7a,0x6e,0xe2,0xf7,0x70,0xfd,0x50,0x6e,0x0a,0x43,0x98,0x56,0x33,0x5f,0x86,0xcf,0x48,0xfb,0x1d,0xaa, - 0x31,0x3a,0x2b,0x73,0xb5,0x12,0x03,0x52,0xbb,0xbe,0x25,0x92,0x41,0x14,0xdb,0x5e,0xea,0x39,0xaa,0x23, - 0x1c,0x74,0xba,0xc2,0xab,0x88,0x6e,0x3a,0x85,0xae,0xbf,0x08,0x1e,0xf1,0xa3,0xb1,0xb8,0x02,0x2a,0xc2, - 0xf7,0x19,0x87,0x3f,0xd7,0x72,0xfa,0x62,0x10,0xe7,0x79,0x46,0x2c,0x44,0x42,0x67,0xa7,0x4c,0x16,0x45, - 0x98,0xf9,0x85,0x42,0x42,0xd7,0xd0,0xe6,0x48,0xe6,0x71,0x50,0xfa,0xea,0xeb,0x20,0xfb,0x46,0x2d,0x55, - 0xd1,0xa1,0xcd,0xdf,0x61,0x00,0xdb,0x7a,0x0e,0x50,0x3e,0x14,0x08,0xdf,0xf3,0x1b,0x1c,0xf1,0x85,0xbc, - 0x05,0xea,0x4d,0xaa,0x97,0x57,0xc6,0x09,0x19,0xdc,0x9c,0x99,0xa7,0x88,0x91,0x32,0x4a,0xb2,0xd3,0xbc, - 0x3e,0x5d,0x88,0x0c,0xbb,0xf0,0x9c,0xa6,0xd9,0x4b,0x38,0xde,0x13,0x6b,0x7a,0xb8,0xc5,0xcb,0xa1,0xec, - 0x09,0xab,0x6a,0xec,0xb8,0x99,0xb3,0xb2,0x0f,0x5a,0x20,0xea,0xa2,0x02,0xb7,0x49,0x85,0x3c,0xaa,0x27, - 0xba,0xa8,0x99,0x52,0xd7,0xd7,0xab,0x34,0x1c,0x16,0x80,0x9d,0x09,0xf4,0x13,0xd0,0x7f,0x48,0xb0,0x89, - 0x27,0x8d,0xb5,0xe7,0xfe,0x91,0x79,0x83,0xf6,0xe2,0x51,0xb1,0x28,0xdc,0xda,0x82,0x27,0xfb,0xb3,0xd4, - 0xc5,0x53,0x53,0x6a,0xff,0x86,0xc7,0xa7,0xa8,0xd3,0x1a,0x87,0x4d,0x86,0x8c,0xd5,0x1d,0x50,0x8f,0xd1, - 0x31,0xa1,0xbe,0x93,0x28,0xec,0xb0,0xac,0xd2,0xc5,0x6f,0x37,0xba,0x02,0xee,0x63,0xe3,0x24,0xee,0x06, - 0xea,0xa4,0x35,0xdb,0x4f,0xa2,0x2f,0xed,0x24,0xfd,0xa1,0xa3,0x30,0xb7,0x23,0x8b,0xd6,0x42,0x8e,0xb3, - 0x5b,0x83,0x54,0x2d,0xb7,0x3e,0x9e,0xa0,0x14,0xe5,0xfe,0xe1,0xe3,0xe8,0xb1,0x72,0x26,0xef,0x74,0x15, - 0x83,0x30,0xf7,0x9c,0xbf,0x09,0xc9,0x6a,0xa2,0x26,0x30,0xc1,0x90,0x47,0x10,0x2b,0x18,0x57,0x5c,0x5b, - 0x96,0xe7,0x2e,0x7b,0x28,0x39,0x93,0x92,0x7a,0x91,0x84,0x8b,0xe5,0xfa,0x2d,0x93,0xd5,0x6c,0x59,0xd6, - 0x3c,0xc6,0xf5,0xac,0xa4,0x9b,0xad,0xf8,0x44,0xcb,0xda,0xec,0x4b,0xc3,0x9d,0x74,0x65,0xbc,0xc9,0xcc, - 0xbf,0xbd,0x67,0x58,0x66,0x99,0xb9,0xba,0x4d,0x63,0xb8,0xd1,0xbb,0xee,0x16,0x2e,0x45,0x37,0x0a,0x92, - 0x52,0xc4,0xb1,0xd2,0x47,0x23,0x48,0xad,0x73,0xa2,0x49,0x38,0xa4,0xea,0xcf,0xb5,0x8a,0xf4,0x0e,0x92, - 0x4a,0x9d,0x00,0xa8,0x9e,0x35,0xc0,0x7d,0xa8,0xf7,0x8b,0xb0,0x42,0xda,0x3e,0x1d,0xc6,0x64,0x3f,0x89, - 0x44,0x07,0x56,0xcc,0xdb,0xb4,0x2d,0x9b,0x82,0x7b,0x9a,0x13,0xfd,0x5a,0x7b,0x0d,0xa3,0x04,0x47,0xe2, - 0x87,0x59,0xc1,0x61,0xf9,0x3d,0x1a,0xec,0xc6,0x32,0x95,0xe8,0x8e,0x53,0xc2,0x62,0x2a,0x53,0x10,0xdd, - 0x48,0xfe,0x0c,0x54,0xd1,0xb0,0x74,0x3b,0xc3,0xcc,0x4a,0x6d,0xc8,0x85,0xf1,0x77,0x10,0x5d,0x4c,0x47, - 0xf2,0x49,0x87,0x92,0xf8,0xdc,0xb7,0xcb,0xf8,0xf9,0xfe,0x97,0x29,0x6a,0xaf,0x1b,0x41,0xa8,0x69,0x58, - 0x4b,0x02,0x10,0x80,0x20,0x0d,0x6d,0x68,0xd1,0x0a,0x32,0xe6,0x8e,0x91,0xe1,0xad,0x3d,0x63,0x9b,0x25, - 0xf5,0xc5,0x28,0xcc,0x75,0x0e,0x2f,0x97,0xf1,0x4e,0x42,0xfd,0x8c,0x7b,0x4e,0x1f,0x6e,0xb6,0xb7,0xb7, - 0x6b,0x05,0xf8,0x4a,0x9f,0x9c,0xdb,0x8e,0xb6,0xcb,0x46,0x40,0x3c,0x61,0xba,0xda,0x0b,0x55,0xd5,0xb0, - 0x71,0xd0,0xa5,0x72,0xa6,0x84,0x73,0x7b,0x51,0x7b,0x4e,0x6d,0x44,0xd9,0x43,0x98,0x3d,0x13,0x5b,0xc2, - 0x6a,0x2c,0xb1,0xe3,0x83,0x8b,0x28,0xd0,0x3c,0xea,0x1b,0xe2,0x0f,0x12,0x07,0x08,0x02,0xab,0x2c,0x90, - 0x7d,0xea,0x34,0x43,0x8d,0x2f,0xe1,0x3f,0xfa,0x2c,0xb0,0x60,0x42,0x73,0x96,0x25,0x1b,0xa4,0x13,0x59, - 0x5b,0x57,0x68,0xe5,0xc4,0x51,0xc2,0xa6,0x86,0x41,0xeb,0xf8,0xc7,0x1c,0x6a,0x1e,0x0e,0x93,0x51,0x2c, - 0xb8,0x67,0x35,0xc8,0x22,0xc1,0x1b,0x8b,0xfb,0x2e,0xfa,0xdc,0xef,0xea,0x93,0x12,0x81,0x47,0x92,0x50, - 0x3e,0xfd,0x6b,0xa2,0x58,0x22,0xba,0xec,0x72,0xb1,0x4f,0x2a,0x82,0xc4,0xf2,0x06,0x9a,0x55,0x46,0xdc, - 0xd8,0x11,0xd5,0xa9,0x81,0x81,0xb8,0xa6,0x92,0xa5,0x65,0x73,0x4a,0x7d,0x61,0x65,0xd9,0x44,0x1e,0x6e, - 0xb0,0x73,0x8d,0x43,0x04,0x2a,0x1c,0x44,0x27,0x10,0x63,0xfb,0x98,0x63,0x39,0x82,0x2b,0x6f,0x6f,0x94, - 0x3e,0xda,0x1f,0xed,0x07,0x7b,0xc1,0x7e,0x10,0x8f,0xb8,0xcc,0x45,0x82,0xaa,0xf7,0xbc,0x60,0x4f,0x87, - 0x53,0x85,0xdf,0x2d,0xf5,0x3e,0x34,0x1e,0xa5,0x2c,0x05,0x62,0x4e,0x2b,0xb0,0xf6,0x36,0xb2,0xa0,0x80, - 0x59,0x53,0x0e,0xfb,0xdd,0xe4,0x52,0x6b,0x6e,0xdf,0x0b,0x5b,0xe8,0x64,0x81,0x82,0xaf,0xa9,0x2a,0x21, - 0xa7,0x88,0x89,0x79,0xd8,0x02,0x93,0x44,0xd3,0xeb,0x99,0x84,0xe3,0xc1,0x63,0x83,0x8e,0x56,0x92,0x69, - 0xb7,0x14,0xa1,0x89,0xa9,0xa1,0x9e,0x24,0xd0,0x19,0x53,0x36,0x99,0x37,0x21,0x8c,0x33,0x0f,0x23,0xff, - 0x54,0x80,0x1a,0x7e,0x1a,0xd9,0xfb,0x68,0x06,0x52,0x66,0xc4,0x54,0x4d,0xc1,0xc4,0x8d,0xcf,0x29,0x01, - 0xa7,0xf0,0xa7,0xa2,0xf5,0x7d,0x03,0x82,0x79,0x3d,0x44,0x01,0x13,0x87,0x4b,0x76,0xb0,0x0d,0x27,0xcf, - 0xca,0x1d,0x9c,0x29,0x32,0xaf,0xdc,0xfb,0x2e,0x59,0xdd,0x17,0x22,0xbf,0x0e,0x99,0x47,0xa9,0x5d,0x9d, - 0x55,0x16,0x8c,0xc7,0x02,0x41,0xec,0x15,0xed,0x0e,0x4e,0xfe,0x40,0x12,0xd6,0xaa,0x1d,0x0b,0x9b,0xf0, - 0x03,0x36,0x24,0x25,0xb8,0xd7,0x2a,0x53,0x73,0xc5,0x51,0xb9,0xec,0x18,0x12,0x9e,0x02,0xf9,0xd2,0x4c, - 0x88,0x52,0xcf,0x74,0x21,0x88,0x12,0xf1,0xf4,0x2e,0xe4,0x50,0xea,0x55,0xde,0x79,0xa8,0x74,0x99,0x7f, - 0x50,0x2b,0xda,0x8c,0x9f,0x44,0x54,0x50,0x3d,0x49,0xda,0x26,0x12,0xb1,0x30,0xb0,0xab,0xd5,0x15,0x42, - 0xf3,0xa2,0x0e,0x29,0xa1,0xb0,0x9c,0x66,0x09,0xec,0x68,0xc4,0xe0,0xa0,0x72,0x8e,0xcc,0x2c,0x8d,0xad, - 0x56,0x45,0xc5,0xda,0x8a,0xca,0x84,0xcd,0xbf,0xa6,0xf0,0xf5,0x63,0x27,0x54,0x64,0xe8,0xa4,0xea,0x7b, - 0x6e,0xfa,0x9e,0xb4,0xfa,0xb6,0x7a,0x06,0x9c,0x6b,0x57,0x70,0x6b,0xd6,0x7d,0xaa,0xd4,0xe0,0x88,0x7b, - 0x5e,0x13,0x15,0x2e,0xa6,0x23,0xa9,0xf1,0x4d,0x06,0xae,0xbd,0xd2,0x8c,0xd0,0x9b,0xb1,0xb4,0xd9,0x85, - 0xb4,0xb9,0xab,0xf9,0x68,0x8b,0x08,0x0b,0xde,0x4d,0x88,0xbd,0x5d,0x27,0xcd,0x4a,0xba,0xa9,0x92,0xa2, - 0xec,0xa9,0x6b,0xa4,0x97,0x28,0x4f,0x3f,0x00,0x5c,0x4a,0x33,0xbf,0x1d,0xa8,0x1c,0xb3,0x87,0xe9,0x7a, - 0xa5,0x7a,0x05,0xd0,0x05,0x3d,0xd5,0xa9,0xd4,0xb0,0x03,0x4b,0x94,0x02,0x89,0x72,0x92,0x5a,0xe4,0x20, - 0x32,0x4d,0x20,0xc3,0x26,0x1e,0x1c,0x95,0x61,0x8c,0xa0,0x25,0x7c,0x6e,0x58,0xfe,0x50,0x9e,0xf9,0xd0, - 0x40,0x17,0xa0,0xe4,0x87,0x61,0x3a,0xb7,0x44,0x03,0x5c,0x23,0x8b,0x88,0x7c,0x83,0x00,0x91,0x0c,0xf4, - 0x47,0xd4,0xb6,0x48,0xff,0x89,0x36,0xc8,0xa4,0x01,0xe2,0x0f,0x74,0x03,0x74,0x44,0xb9,0x01,0xbd,0xf5, - 0xab,0xd5,0x84,0x23,0xcb,0xe8,0xa8,0x2d,0x89,0x59,0xcb,0x72,0x70,0x7c,0x59,0x2a,0x19,0xaa,0x0e,0x89, - 0xe7,0x2e,0x69,0xa7,0x79,0x5d,0xbd,0x41,0xa9,0x02,0x98,0x2c,0x7d,0x3a,0xc0,0x9a,0x8b,0x6a,0x1f,0xba, - 0xdc,0xa2,0xe1,0xd9,0xcb,0xaa,0x89,0x1c,0x4f,0x53,0x6c,0xc6,0x05,0x81,0x6f,0xf9,0x12,0x18,0x5e,0x15, - 0x2b,0x59,0x08,0x45,0xb4,0x90,0xc7,0x24,0x98,0x3e,0xab,0xf3,0xda,0x49,0x15,0x4b,0x29,0x45,0x24,0xba, - 0x8e,0x0e,0xd0,0xdb,0xfb,0x77,0xcc,0xfd,0xdf,0xb1,0x5f,0x97,0x3b,0x65,0xaf,0x8a,0x9b,0xad,0xc4,0xe3, - 0x6a,0x87,0x8b,0xe5,0x02,0x64,0x49,0x4f,0xcc,0x74,0xc4,0x52,0xad,0x16,0xd0,0x83,0x8f,0x7c,0x75,0xf3, - 0x0a,0x8f,0x87,0x2f,0x75,0x6a,0x1c,0xda,0x38,0xc7,0x68,0x21,0x82,0xda,0x85,0xa6,0x23,0x53,0xbc,0x43, - 0x51,0xcc,0xc3,0x11,0x80,0x0e,0x60,0xef,0xab,0xfd,0x40,0xfe,0xde,0x97,0xbf,0x0f,0xbe,0x90,0xbf,0xf7, - 0x1f,0xa8,0xbf,0x5f,0xa9,0xf4,0x2f,0x03,0x13,0x80,0x4c,0x2a,0x7c,0xae,0x0a,0xa8,0x0a,0x0f,0x3e,0x0f, - 0xb4,0x7a,0xf1,0x14,0xaa,0xee,0x52,0xea,0xfe,0x3d,0xd5,0xbc,0xfc,0xd9,0xdf,0x53,0x7f,0x55,0x6f,0xfb, - 0x5f,0xa8,0x84,0x2f,0x3e,0xbf,0xf7,0x77,0x55,0xe6,0xcb,0x7b,0xba,0x12,0x7d,0xdd,0xd7,0x8d,0x5e,0x15, - 0x8e,0x79,0xf8,0x7b,0x14,0x7e,0xf5,0x77,0x62,0x59,0x1e,0x86,0xfb,0xf7,0xee,0xad,0x56,0xf4,0xf3,0x8b, - 0xcf,0xf9,0xe7,0x57,0x7b,0x23,0xd5,0x79,0x40,0x89,0x0f,0xbe,0xe2,0xc4,0xcf,0xff,0x3e,0x72,0xc4,0x10, - 0xc2,0x09,0x1c,0x7e,0xf6,0xe9,0x08,0x48,0x82,0x65,0x92,0xbb,0x4e,0xc1,0x85,0xeb,0xec,0x39,0x5b,0x56, - 0xf0,0xe2,0x3d,0xc8,0xd0,0x92,0xe2,0x65,0xf4,0x52,0x82,0xb2,0x11,0xc2,0x2d,0xfd,0x6f,0x74,0xb4,0xba, - 0xce,0x37,0xb7,0xfa,0xb2,0xeb,0xb1,0x9b,0x46,0x55,0x96,0x51,0xe6,0xd9,0xa7,0x1e,0xee,0x3f,0x80,0x58, - 0x67,0x7b,0xfb,0xfe,0x57,0xf8,0x3b,0xc2,0x5b,0x9b,0x52,0x09,0xf2,0x29,0x1f,0xac,0x60,0xe0,0x7c,0xe6, - 0xf4,0x4b,0x1d,0x00,0x5d,0xfc,0x5b,0x5d,0x6a,0x5c,0x58,0x71,0x65,0xda,0xf7,0x06,0x34,0x15,0x0e,0x85, - 0xec,0xeb,0x29,0x4f,0x79,0x8e,0x7f,0xda,0x2e,0x7f,0x16,0x15,0xaf,0xae,0x52,0x1d,0x68,0xcf,0xff,0x10, - 0x76,0x11,0xa8,0xcf,0xd3,0x72,0x6e,0x05,0x0b,0xc3,0xcf,0xc1,0x33,0x44,0xb6,0x49,0x2e,0x62,0x62,0x1e, - 0x2e,0xa2,0xd2,0x3f,0xf9,0xe8,0x8a,0xe2,0xc5,0x4f,0x55,0x3b,0x0e,0xaf,0xc5,0xb1,0xc6,0xd3,0x46,0x90, - 0xca,0x9a,0x4f,0x23,0x9b,0x01,0x8c,0x07,0x38,0x6d,0xa1,0xfc,0xe1,0x77,0xc4,0xe3,0x63,0x7c,0x8e,0xae, - 0xd7,0x81,0x8e,0x48,0xc4,0x38,0xe1,0xda,0x14,0x36,0xe8,0x92,0x46,0xf4,0x42,0xa5,0x4b,0x25,0x4f,0x5f, - 0x77,0x08,0xb4,0x38,0xd4,0xa9,0x9d,0x4e,0x6f,0x4a,0xa2,0x16,0x4a,0xdf,0x22,0x7c,0x62,0x36,0x26,0xb0, - 0x2f,0xa3,0xb2,0x23,0x02,0xa3,0x84,0x34,0x45,0xa3,0xec,0x3b,0xf8,0x47,0x46,0x12,0x2f,0xe2,0xa2,0x88, - 0x4e,0x71,0x87,0x97,0x72,0xf7,0xa9,0xeb,0x87,0xba,0x11,0x8f,0x53,0xc7,0xd6,0x1c,0xfd,0x2a,0xe5,0x17, - 0x94,0x8a,0x95,0x47,0x30,0x19,0xea,0x15,0x92,0x70,0x89,0x40,0x53,0xd9,0xf5,0xac,0xc2,0xac,0x23,0x31, - 0xc9,0x93,0x93,0x18,0x59,0x4f,0x61,0xea,0xc3,0x7a,0x92,0xcc,0xb4,0x49,0x31,0x5d,0x42,0x9c,0xc1,0xad, - 0xab,0x78,0x1c,0x6a,0x09,0x45,0x16,0xce,0x3b,0x90,0x67,0x59,0xa9,0x83,0xdc,0xe3,0x5b,0x90,0x5e,0x3b, - 0xa5,0xb6,0xd6,0xfc,0x7c,0xca,0x63,0x41,0x81,0xb0,0x59,0x56,0xed,0xd4,0x60,0x46,0xf4,0xd9,0x09,0x31, - 0x32,0xb2,0x38,0xad,0x62,0x8d,0x7c,0x5d,0xab,0x20,0xc6,0x30,0x15,0xfd,0xd3,0x39,0x1b,0x29,0xfc,0x02, - 0x41,0x5c,0xab,0x72,0x67,0x31,0x76,0xd4,0x5b,0x87,0x80,0xfc,0x56,0x08,0xc8,0x41,0x2f,0xb6,0x21,0xc0, - 0x6c,0x2f,0xef,0x69,0x11,0xe6,0xdd,0x9b,0x89,0x07,0xf6,0x17,0x7a,0x61,0xff,0xcb,0xf6,0xd4,0xb7,0x2e, - 0x0b,0xb5,0x6c,0x1f,0x52,0x7e,0xe6,0x33,0x3f,0xf8,0x76,0x17,0xbf,0x80,0xbc,0xbe,0xb5,0x01,0xdd,0xa9, - 0x06,0x24,0xab,0xef,0x6a,0xcb,0xbc,0xde,0x5f,0x80,0x8b,0x91,0x6b,0x2d,0x4c,0x0b,0x2a,0xfe,0xc2,0x74, - 0xc1,0x9b,0xcb,0x2b,0x09,0x1e,0x59,0x55,0x80,0x05,0x35,0xa2,0xfa,0xef,0x26,0x9c,0xd6,0x8e,0x9d,0x5d, - 0xf0,0x2f,0x0d,0x47,0xfb,0x81,0x7b,0xd6,0x0c,0x53,0xab,0x1d,0xc1,0xc9,0xd0,0xdc,0x56,0xe5,0xda,0x88, - 0x06,0xcb,0xf4,0xa6,0x9e,0x95,0xe0,0xb3,0xd5,0x46,0x07,0x94,0xd5,0x9a,0x55,0x69,0x6e,0xa3,0x05,0x2b, - 0x4b,0xb7,0x50,0x03,0x8c,0x6e,0x70,0x69,0xb6,0x52,0xcb,0xb4,0x47,0x22,0x61,0xe3,0xd6,0x6b,0xff,0x4a, - 0x7b,0x6d,0x45,0x6a,0xe5,0xcd,0x31,0x9a,0xc3,0xd0,0x5b,0x1c,0x2b,0xb2,0xd6,0xdb,0xb5,0xed,0xc9,0x56, - 0x69,0x05,0x04,0xe2,0x32,0x71,0xcd,0x11,0xc9,0xeb,0x25,0x34,0xc5,0x85,0x87,0x43,0x4d,0x8f,0xda,0x05, - 0xd6,0x3e,0xbf,0x86,0x17,0x2a,0xf1,0x90,0xa9,0x3d,0xe3,0x4c,0x76,0xdd,0xf2,0xe4,0x58,0x23,0xed,0x79, - 0x58,0x90,0x4f,0x48,0xf8,0x0c,0x44,0x91,0xad,0xac,0xcd,0x90,0x6f,0x01,0x8e,0xc4,0xd3,0x70,0x33,0x11, - 0xec,0xdf,0xea,0x3a,0x56,0x85,0x85,0x0b,0xe5,0x8f,0x09,0xbf,0x4b,0xf4,0xbc,0xe5,0xc8,0x55,0x04,0xf0, - 0xb9,0x10,0xd2,0x88,0xe6,0xa1,0x08,0xe9,0x39,0x04,0xd4,0x4b,0x64,0xf0,0xdc,0xd8,0x20,0x74,0xd6,0x60, - 0xd7,0x96,0xde,0x68,0xa9,0x83,0xfe,0xee,0x05,0xf6,0xbd,0xb5,0xf4,0x4c,0x3a,0x6b,0x60,0x37,0x78,0x26, - 0xdb,0x1f,0x1f,0x8e,0x51,0x15,0xc0,0xbc,0x22,0x79,0xac,0xa0,0xe6,0x3c,0x04,0x4d,0xf5,0x54,0x71,0xcf, - 0xb7,0xb7,0x1d,0x7e,0x4c,0x5c,0xaf,0x2b,0x91,0xfe,0xf6,0x76,0x66,0x7a,0x26,0xa6,0x74,0x4a,0xad,0xbb, - 0xce,0xf3,0x59,0x4f,0x66,0xd1,0xc3,0x6a,0xf7,0x92,0xa2,0x07,0x27,0x33,0x3d,0xba,0x03,0x7a,0xbc,0xd6, - 0xbd,0x58,0x44,0xa6,0x45,0x0f,0xe6,0x0f,0xbd,0xb3,0xe8,0x32,0x96,0x0a,0x52,0x9e,0x0a,0x0f,0x88,0x0b, - 0xea,0x98,0x7b,0x1b,0xa7,0x83,0x2d,0x98,0x13,0x03,0x08,0xe7,0xa1,0xcd,0x15,0xe9,0xba,0x01,0xe6,0xf0, - 0x7c,0xb6,0xa4,0x7f,0xa0,0x62,0xb9,0xa1,0x3d,0xe1,0xed,0xa7,0x23,0x07,0xe6,0x53,0xcd,0x65,0x09,0x28, - 0xb5,0x1c,0xce,0x21,0xfc,0x82,0x38,0x53,0x79,0xfd,0xf7,0x13,0x3f,0x1a,0x24,0xae,0xc4,0x9e,0xc0,0xd1, - 0x38,0x08,0x5b,0x88,0x62,0x42,0x3d,0xd1,0xe5,0xd2,0xf1,0x40,0xb2,0x1e,0x1e,0x58,0xf4,0x5c,0x02,0xbb, - 0xc1,0x45,0x06,0x79,0xb8,0x2d,0x27,0xaa,0xdc,0x21,0x58,0xad,0xc1,0xb5,0x9c,0x66,0x52,0xa1,0x85,0x77, - 0xa3,0x46,0x1f,0x31,0x7e,0x8e,0x63,0xab,0xf5,0x19,0x79,0xf3,0x61,0xda,0xef,0xb3,0x7c,0xc6,0xb9,0x56, - 0xfe,0x5f,0x73,0x3c,0x2b,0x58,0xcf,0xfa,0xac,0x9e,0xe2,0x28,0x5d,0xb1,0x1c,0x8f,0xf9,0x68,0x4b,0x58, - 0x52,0xfa,0x10,0x1b,0x0b,0xd5,0x8e,0xb3,0x66,0x1d,0x96,0xa1,0x97,0xf5,0xc3,0xc4,0x37,0xc9,0x22,0x93, - 0x38,0x17,0xba,0x3b,0xf3,0x46,0x0e,0x3b,0x1b,0x0d,0x9e,0x56,0x09,0x40,0x26,0x53,0xa2,0xf4,0x97,0xe2, - 0x94,0xce,0x19,0xea,0x21,0x48,0xb7,0x99,0x78,0xc4,0x8e,0xd6,0xa2,0x25,0xef,0xfc,0x0f,0x1e,0xeb,0x88, - 0xc6,0x0c,0xc2,0x9c,0x76,0x04,0x22,0x3f,0xea,0xd2,0x0b,0xf0,0xaf,0xe6,0x38,0x6e,0x9d,0x49,0xb9,0x66, - 0xf6,0xb1,0xbe,0xaa,0x61,0x5e,0x13,0x55,0xa7,0x15,0xf3,0xe9,0x4b,0xf0,0xe9,0xa6,0x6c,0x45,0x4f,0x87, - 0x59,0x8a,0xf6,0x4c,0xb0,0xb6,0xfa,0x07,0xdb,0x86,0xeb,0xd1,0xf1,0xd2,0x0d,0x93,0xe6,0xa6,0x44,0x34, - 0xa1,0x64,0xac,0x19,0xbe,0x48,0xbd,0x4b,0x83,0xb3,0x92,0xf1,0x07,0x8a,0xa3,0x8d,0x14,0x73,0x2e,0x5a, - 0xaf,0xcc,0xb7,0xa9,0x81,0xa8,0x02,0xe9,0x21,0x53,0x3a,0x44,0xb7,0xeb,0xb2,0xfe,0xfe,0x9e,0x37,0xae, - 0x55,0xd0,0xa3,0x95,0xbf,0xa2,0x16,0x6e,0xaa,0xab,0x5a,0x44,0xe3,0x26,0xfd,0xbe,0x59,0xd4,0x35,0x87, - 0xbb,0x5b,0xf3,0xa6,0x9e,0x87,0xbb,0xbf,0xbb,0x47,0x53,0xaf,0xbf,0xeb,0x3f,0xe5,0xcf,0x2b,0x7c,0xbe, - 0xa7,0x65,0x7a,0x13,0xee,0xfb,0x8f,0xc3,0x7b,0xfe,0x9d,0xf0,0xbe,0xff,0x8a,0x7e,0x7f,0x1d,0x3e,0xf0, - 0x5f,0x87,0x9f,0xfb,0xcf,0xc2,0x2f,0xfc,0x77,0xe1,0xdf,0xfd,0xe7,0xe1,0x97,0xfe,0x8f,0x60,0xe8,0x7f, - 0x3c,0x7c,0x35,0x0e,0xaf,0xaf,0x8a,0x80,0xfe,0xfa,0xcc,0x06,0x06,0x87,0xf7,0xfd,0xf7,0x63,0xdf,0x39, - 0x74,0x82,0xc3,0xaf,0xc7,0x3e,0x5d,0xf2,0xc1,0xe1,0xbb,0xf1,0xda,0xff,0xf1,0x70,0x5f,0x95,0xdc,0xa7, - 0xdc,0x01,0xe5,0xde,0xeb,0x2c,0x75,0x4f,0x95,0xba,0x57,0x6f,0x6f,0x4f,0xfd,0x15,0xae,0x52,0x7e,0xa0, - 0xf8,0x7d,0x2a,0x7e,0x5b,0x39,0x9f,0x7b,0xf5,0xdf,0xe8,0x7e,0xf9,0x8b,0x7b,0xc6,0x97,0xf4,0x4d,0x5f, - 0x68,0xee,0x6b,0x6a,0xce,0xb9,0x4b,0x59,0xaf,0x51,0xef,0xae,0x73,0x37,0x38,0x7c,0x56,0x4d,0xc7,0x7f, - 0x4c,0x5f,0x63,0x07,0x8d,0xdd,0x91,0x8a,0xcf,0xd9,0x9e,0x0f,0x59,0x32,0x9c,0xd7,0xba,0x3e,0x12,0x6a, - 0x25,0x5e,0xab,0x12,0xcf,0xa8,0x04,0xb7,0xdb,0x2a,0x81,0x8e,0x64,0x63,0xbe,0x61,0x9b,0x67,0x22,0xd5, - 0xf2,0x65,0xbc,0x62,0x5b,0xce,0xd5,0xce,0xe8,0xf0,0x68,0x3a,0x18,0xf7,0x57,0x77,0xd9,0x07,0xd6,0xdd, - 0x95,0xc3,0x6e,0xb1,0x1c,0x8f,0xca,0xc1,0x31,0xd1,0x06,0xb4,0xd5,0x8d,0xb5,0x5e,0x5a,0x58,0x8b,0xa1, - 0xec,0x35,0x5d,0x6a,0x6d,0x09,0x95,0x8d,0xb1,0x2c,0x84,0x55,0x42,0x3f,0xa3,0x43,0x9e,0xa5,0xc3,0xde, - 0x45,0x08,0xe5,0x83,0x03,0x37,0x0f,0x77,0xf6,0xe9,0x6a,0x7c,0xc5,0x71,0xef,0xce,0x00,0x2e,0x38,0x33, - 0x67,0x87,0x6f,0xc6,0x35,0xe3,0x0e,0x7d,0x4f,0xa5,0xac,0xcb,0x23,0xd0,0x0b,0x17,0x85,0x92,0x01,0x5b, - 0xfd,0xc3,0xf7,0x1d,0x35,0x20,0xa9,0x1d,0xa5,0x61,0x1e,0xa4,0x7d,0x22,0xfc,0xa9,0xd0,0xe3,0x5a,0x21, - 0x54,0x22,0xca,0x68,0x46,0xb0,0x4f,0x79,0x77,0x6a,0x79,0xd0,0x88,0x7c,0xb4,0xe7,0xcd,0x76,0x76,0x68, - 0x78,0x5f,0xfb,0x52,0xd4,0xbc,0x45,0x62,0xb4,0x5b,0x78,0xfa,0x70,0xd3,0x70,0xc1,0x2e,0xf3,0x8c,0x58, - 0x14,0x63,0x87,0x3a,0xe6,0x50,0xc9,0xc0,0x97,0xec,0x30,0x7e,0xde,0xef,0xc3,0x7f,0x22,0x2b,0x0b,0xc1, - 0xe7,0xe2,0x1c,0x2f,0x16,0x5b,0x0d,0x7e,0x9a,0x33,0xfa,0xfb,0x8c,0xad,0x97,0xd4,0xf8,0x6b,0xba,0x95, - 0xef,0xb2,0x5a,0xd7,0x6a,0x85,0xdf,0xcf,0xb6,0xb7,0x09,0x2c,0xf0,0xdb,0xf8,0xee,0xa6,0x66,0x09,0x5b, - 0x53,0xc3,0xfd,0x52,0x8d,0x11,0x11,0x96,0x5d,0x4f,0x59,0x71,0x4d,0x21,0x16,0x03,0x9d,0x53,0x84,0x3f, - 0x1e,0x2e,0xc7,0x1e,0xe1,0x9d,0xd5,0xaa,0x60,0x45,0xd0,0xd5,0xea,0x39,0x64,0xcb,0xcf,0xb5,0x56,0x10, - 0xf7,0x09,0x3b,0x16,0xdf,0x8d,0xc2,0xb3,0xc3,0x8c,0xce,0xe0,0x58,0xde,0x61,0x33,0x1c,0xb4,0x3c,0x34, - 0x4b,0x9a,0x8f,0xca,0x20,0x97,0xe9,0x13,0xff,0xe3,0xd5,0x1a,0x08,0xc3,0x77,0xc6,0x39,0xaa,0x28,0xbb, - 0x19,0x82,0x54,0xc3,0x48,0x08,0xff,0xc3,0x20,0xbb,0xd6,0xbe,0x0d,0x64,0xa7,0x71,0x09,0x10,0x63,0x41, - 0x6e,0xe3,0x6e,0x84,0x8c,0xbc,0xac,0x1c,0xb4,0x56,0x8f,0x30,0xda,0xfb,0xb6,0x86,0x4f,0x78,0xac,0xe5, - 0x79,0xe7,0x0d,0x0a,0x03,0xe1,0xdd,0x30,0x74,0xed,0x4e,0xbb,0xd6,0x92,0x65,0xed,0x53,0x99,0x9a,0x11, - 0x92,0x56,0x2e,0xb8,0xb3,0xa1,0x76,0xbc,0x1d,0x1d,0xe6,0x87,0xc5,0xd8,0x7a,0xec,0x80,0xb2,0x99,0x77, - 0x2d,0x6e,0xa8,0x94,0x6d,0x42,0x14,0x4e,0xfc,0xa2,0x42,0xa6,0x91,0x9c,0xd6,0x17,0x1b,0x4e,0xce,0xb0, - 0xe2,0xff,0xc0,0x8d,0x43,0x5b,0xd6,0xbc,0x2e,0x09,0xf1,0xb8,0x5a,0x39,0x71,0xba,0xf3,0xf3,0x1b,0x87, - 0xe5,0xb9,0x75,0x5e,0xbb,0xca,0x63,0x8b,0x24,0xc5,0xe2,0x32,0x79,0xa9,0xc2,0x98,0x5b,0x32,0x20,0x49, - 0x87,0x15,0x65,0x6a,0x89,0x78,0x38,0x75,0xa8,0x5c,0x59,0x5f,0xc8,0x03,0x9f,0xfc,0x9a,0x71,0x3e,0x91, - 0x2b,0x21,0x2b,0xb0,0xc9,0xf7,0x6a,0x05,0x46,0xf9,0x40,0x15,0xb9,0x48,0x0a,0xb8,0x02,0x41,0xdf,0xf2, - 0x25,0x02,0x4f,0xed,0x5d,0x1a,0x42,0x85,0x98,0x65,0x0b,0xb5,0x74,0x70,0xb5,0xa1,0xc5,0xf7,0x0a,0xcb, - 0xbb,0xb5,0x25,0x5f,0xba,0x77,0x35,0x51,0xd6,0x87,0xb2,0x0a,0xdb,0xe9,0x52,0xc9,0x4e,0xd1,0x3d,0x74, - 0xca,0x1e,0x0c,0x12,0x89,0xbb,0xa5,0x0e,0x44,0xe2,0x6e,0x6d,0xc8,0x52,0xed,0xd6,0x17,0x14,0x2f,0xef, - 0x20,0xec,0x25,0xcf,0x5e,0xd4,0x7a,0x0e,0xb8,0x01,0x96,0x2f,0xbc,0xac,0x9a,0x89,0x2a,0x77,0x01,0x84, - 0x04,0x25,0x99,0xdf,0x0f,0x1a,0x90,0xaf,0xb0,0x8a,0xbb,0x05,0x75,0xc6,0x74,0xb5,0xca,0xdd,0x52,0x1a, - 0xac,0x1d,0x17,0x09,0xa7,0xad,0x8d,0xd2,0x8f,0xe1,0x34,0xf6,0xed,0x0b,0x57,0xbf,0x77,0xa6,0x7e,0x1d, - 0x6a,0x02,0xb8,0x6f,0x14,0x50,0x21,0xb2,0xab,0x01,0x24,0x41,0xe4,0xd7,0xc0,0x23,0x28,0x88,0x22,0xf3, - 0x7f,0x0a,0xaf,0x2f,0x2f,0x82,0xeb,0x75,0x55,0x91,0xbe,0x9b,0x35,0x29,0xa9,0x5e,0xf5,0xba,0xe2,0xf0, - 0xd6,0xcd,0x31,0xa0,0x2d,0x81,0x19,0xce,0xd4,0xcb,0x86,0x1f,0x9d,0x3b,0x40,0x19,0x6b,0x7d,0xb9,0xbc, - 0xb0,0x5d,0x0f,0xcb,0x64,0x3b,0x8e,0xd7,0x99,0xf6,0x05,0x2d,0xed,0x0d,0x1b,0xbf,0x21,0x7d,0xa9,0xc0, - 0x9e,0x76,0x87,0x68,0x48,0x6c,0x0c,0x54,0x63,0xfd,0x66,0xd9,0x72,0xed,0xdb,0x9d,0x76,0xb2,0xfb,0x6d, - 0x5f,0x08,0xf5,0x8d,0xae,0xd4,0xcd,0xec,0xa6,0x36,0xc8,0x0e,0x6a,0x8d,0x35,0x0c,0x07,0x98,0xdb,0xb3, - 0x43,0x98,0xa4,0x96,0xad,0x66,0xc9,0x08,0x30,0x7d,0xb4,0xb3,0xef,0xc9,0xfb,0xf4,0x04,0x72,0x4c,0x28, - 0x48,0xba,0x1d,0x63,0xf2,0x9b,0xc3,0xa9,0xc9,0xb6,0x9a,0xe6,0x95,0x22,0xfb,0xab,0xb9,0x04,0xa7,0xc5, - 0x1b,0xdc,0xe1,0x4a,0xae,0x73,0x07,0x4d,0xd7,0x42,0x54,0xd8,0x06,0x0d,0x8d,0xc5,0xb0,0xed,0x1b,0xce, - 0x3a,0x9d,0x22,0x37,0xab,0x10,0x23,0xc8,0x4e,0xd0,0x9b,0x89,0xad,0xc0,0x17,0x6b,0xff,0x7a,0x1a,0xc7, - 0x0b,0x51,0x4d,0x6e,0xcf,0x4e,0x89,0x31,0xeb,0x57,0xfd,0x56,0x85,0x9a,0xe8,0xa0,0x55,0xf8,0xab,0x75, - 0xe3,0xc4,0x3a,0x96,0xc9,0x45,0x7d,0x1d,0x58,0x40,0x66,0x2d,0x86,0x00,0xbe,0xb5,0x1a,0xec,0xd9,0xe3, - 0x0e,0xb1,0xbf,0xb0,0x62,0xd1,0xb9,0xec,0x97,0xbf,0x31,0x7e,0xff,0x3a,0xb9,0x20,0x52,0x3d,0x81,0xbc, - 0x5d,0xa6,0xf0,0x13,0x1a,0xa6,0xf3,0x6e,0x8f,0xb9,0xb1,0x09,0x28,0xa4,0xcf,0xe6,0x86,0xa2,0x91,0x02, - 0x00,0xca,0x55,0x02,0xee,0x82,0x3d,0x80,0xff,0xd4,0xbc,0x27,0x6e,0xaf,0x5f,0x7f,0x5c,0xd0,0xcd,0xd4, - 0x0e,0xff,0xed,0x8d,0xd8,0x0f,0x0d,0xba,0x09,0x59,0x97,0x5b,0xe6,0xaa,0x1f,0xdd,0xab,0xf2,0x45,0x5c, - 0x76,0x9c,0x3e,0xec,0x06,0xd6,0x5b,0xff,0xaa,0x96,0x3d,0xe6,0xce,0xea,0x18,0xe9,0xb6,0x4e,0xeb,0xa5, - 0x3b,0xea,0x7f,0xec,0x20,0xea,0xd5,0xf4,0x60,0x14,0x32,0xbc,0x71,0x14,0xaa,0x8c,0x5d,0xbc,0xbb,0x53, - 0x73,0x2f,0xf3,0x30,0x35,0x6e,0xbd,0xb1,0x6d,0x53,0xaa,0x5e,0xa5,0xbb,0x7d,0x8b,0x34,0x40,0xf1,0x4e, - 0x84,0x7d,0x63,0x6f,0x9d,0x35,0x36,0x37,0xd5,0x3d,0x8a,0xee,0x5b,0x3e,0xae,0x1f,0x79,0x1b,0xdc,0x6f, - 0xda,0x5e,0x7d,0x78,0xda,0xb5,0x1b,0xc0,0x7e,0x53,0x23,0x8d,0x83,0xd4,0x6e,0xab,0x06,0xf3,0x37,0xb5, - 0x54,0x3b,0x4b,0x8d,0x76,0xa0,0x5c,0xa6,0xbc,0x3a,0xd5,0x74,0x8d,0x88,0xb9,0x4a,0x4c,0x4b,0x30,0xf0, - 0x56,0x72,0x7c,0x05,0x0d,0x4a,0xe8,0xaf,0x21,0x47,0x1e,0xe4,0x99,0x2c,0x3b,0x44,0xe5,0x64,0x0c,0xc3, - 0x8d,0x20,0x6d,0x74,0x96,0x14,0xdf,0xd8,0x94,0x58,0x87,0x4b,0x9c,0x18,0x11,0x1b,0x5d,0x0b,0x65,0xaa, - 0x8e,0x6a,0x24,0x5c,0xb3,0xd5,0x6e,0x31,0x58,0xa9,0x79,0x43,0x85,0x93,0x5b,0xd8,0x77,0x12,0x56,0x24, - 0x55,0x9d,0x02,0x2a,0x55,0xdc,0xdd,0x3a,0xd9,0x3f,0x31,0x2c,0xc3,0x44,0x0c,0x86,0x58,0x15,0x53,0x47, - 0x24,0xde,0x62,0x05,0x02,0xbb,0x0f,0x4b,0x3b,0x55,0x3f,0x92,0x22,0x52,0x38,0x71,0x4d,0xb5,0x72,0x6b, - 0xcd,0x06,0xb6,0xf4,0xc4,0x26,0xb5,0xe6,0xe6,0xe1,0x44,0xf3,0x01,0xf3,0xca,0x7a,0xfa,0x1f,0x81,0xe3, - 0xb1,0x97,0x12,0x57,0x07,0xc6,0x82,0xc3,0x71,0x9e,0xfe,0x5c,0x4d,0x1f,0xe6,0xa2,0x3a,0x44,0x0b,0x47, - 0x28,0x98,0x73,0x72,0x30,0x6f,0xac,0x23,0x2a,0x36,0x61,0xc0,0x0e,0x29,0x1d,0xa6,0x3e,0x74,0x9c,0xc5, - 0x57,0xc1,0xae,0xfb,0x8f,0xe0,0xf0,0xe8,0xea,0x68,0xe7,0x78,0x35,0x18,0xf7,0xbd,0xdd,0xd3,0x4a,0xdb, - 0x7c,0x02,0xcd,0x87,0x02,0x7c,0x6a,0xd1,0x78,0x72,0xe6,0xb5,0x12,0x75,0x8f,0xe2,0x70,0x82,0x78,0x3f, - 0x73,0x65,0xdd,0xed,0xde,0x23,0xce,0x59,0xbf,0x8b,0x55,0xfb,0xc9,0xa3,0x58,0xd2,0x28,0x9c,0x3c,0xba, - 0x52,0x42,0x3c,0xb5,0x4a,0x44,0x78,0x56,0x89,0x42,0x8d,0x07,0xca,0x4f,0x83,0xb4,0x52,0x83,0x35,0x58, - 0xfc,0x59,0x57,0x33,0x83,0x16,0xbb,0x3a,0xea,0x7d,0x0d,0x85,0x76,0x88,0xdc,0xc4,0xd2,0x3b,0x9e,0xf6, - 0x58,0xc5,0x5d,0xf9,0x30,0x9c,0x86,0x55,0x85,0xe1,0x2c,0x9c,0xaa,0xb0,0x29,0x3c,0xb6,0x69,0xe3,0xfa, - 0x43,0x54,0x72,0x11,0xd1,0x4f,0x9b,0xcf,0x98,0x4b,0xb5,0x90,0xc4,0xd0,0xb9,0x7a,0x9a,0xd6,0xc9,0x73, - 0x51,0x62,0x06,0x45,0xa3,0x51,0x64,0x4c,0xa2,0xe7,0xfe,0xcc,0x0b,0xa2,0x8a,0xf5,0xab,0x6f,0x96,0x52, - 0xb4,0xad,0x6f,0x57,0x5d,0xf0,0x5b,0x21,0xde,0xfa,0x8a,0x9a,0x40,0x2c,0x95,0x16,0x50,0x58,0x8e,0x72, - 0x65,0x61,0x86,0x78,0xe9,0x8d,0xbe,0xcc,0x94,0x5b,0x18,0x42,0x1f,0x30,0xfb,0x38,0xd9,0x9d,0x95,0x3e, - 0xac,0x4a,0x4d,0x39,0x23,0x81,0x26,0x40,0x18,0xe5,0x6e,0x57,0x8d,0xd4,0x87,0x7c,0xd6,0xd4,0x50,0x01, - 0xe7,0x27,0xc1,0xa4,0x39,0xa6,0x16,0xa4,0x56,0x14,0xa2,0xf2,0x3f,0xd4,0x54,0x33,0xdc,0x79,0x30,0x8c, - 0x76,0x76,0x7a,0x8f,0xf6,0x86,0x1e,0x54,0xff,0x2c,0x95,0xd4,0xa8,0xff,0x80,0xf9,0xf0,0x2d,0xa3,0x5a, - 0xe3,0xa8,0xe7,0x97,0x44,0xa1,0x36,0xe5,0x0e,0x21,0x83,0xa5,0x5f,0x61,0x98,0xe9,0xd2,0x44,0xa3,0xab, - 0xa0,0x22,0xf5,0x15,0xd7,0xd9,0x7c,0xc9,0x06,0x14,0xab,0x05,0xf7,0x59,0xca,0x10,0x5d,0x14,0x9b,0xe1, - 0x75,0xfe,0xe9,0xf0,0xaa,0x74,0x5a,0x96,0x16,0xc8,0xd6,0x94,0xa5,0x62,0xa3,0x2c,0x95,0x59,0xf6,0xf5, - 0x2d,0x58,0x9c,0xf8,0xf0,0xb2,0x99,0x2b,0x3f,0xd0,0xf5,0x65,0xaf,0xe3,0xec,0xc6,0xb3,0x41,0x6b,0xbd, - 0xf7,0xa1,0xff,0xcb,0xeb,0x5d,0x36,0x54,0x80,0x21,0x96,0x52,0xc3,0x15,0x68,0xf5,0x68,0x09,0xd5,0x48, - 0x73,0xbe,0x42,0x30,0x2c,0x75,0x9a,0x3a,0x28,0x4d,0x36,0xca,0x36,0xd3,0x29,0xb5,0xb9,0x50,0xf3,0x62, - 0xe8,0xc0,0x66,0x5a,0x3b,0xae,0xbd,0x6d,0xe5,0xe6,0x6d,0x03,0x9e,0xd1,0xa1,0xd8,0xbb,0x36,0x2b,0xfb, - 0xb3,0x9b,0x65,0xd3,0xfb,0x89,0xdc,0x59,0x37,0xec,0x0c,0x9d,0x26,0x3a,0x16,0x79,0x83,0x0f,0x69,0xce, - 0xb2,0x7a,0x6c,0x1c,0xb5,0xaf,0x94,0x92,0xd5,0xfb,0xac,0xd5,0x35,0xcf,0xb5,0x5c,0x79,0xd3,0x52,0x43, - 0x22,0x10,0x38,0x4e,0xf3,0x0c,0x4e,0x3a,0x17,0xd8,0x58,0x1d,0x89,0xf9,0x6e,0x0b,0x2c,0x3e,0x1f,0x16, - 0x0a,0x2c,0xa2,0xc3,0xc2,0x06,0x8b,0xa2,0xff,0x79,0xa5,0xb1,0x37,0xaa,0xa4,0x62,0x09,0x2b,0x5e,0xef, - 0x7b,0x7e,0xe6,0x2a,0x9c,0x61,0x81,0xcb,0x44,0x28,0x0e,0xea,0xdb,0xc0,0x43,0x44,0x57,0x5e,0xc2,0x03, - 0x96,0x7b,0xbe,0x01,0xc3,0xf5,0x51,0xdb,0x4a,0xcb,0x87,0x90,0x4c,0xb6,0xc6,0x7b,0x6f,0x98,0xab,0xf1, - 0xb2,0x7f,0x84,0x6a,0xbc,0x79,0xff,0x9e,0x01,0xe3,0xc4,0x8c,0x6b,0xa2,0x06,0x96,0x7c,0x2c,0x1c,0xfb, - 0xa5,0x19,0xb9,0x0e,0x34,0x93,0x34,0x57,0xba,0x89,0x7a,0x2d,0x53,0x69,0xb1,0x50,0x6b,0x8d,0xfa,0xfe, - 0x30,0x53,0xa3,0xce,0x61,0x63,0x54,0x8d,0x3a,0xeb,0xdf,0xd7,0x4f,0x6c,0x0d,0xec,0x96,0x7b,0x15,0x66, - 0xab,0x03,0x28,0x4b,0x93,0xf0,0xc4,0x33,0x6e,0x31,0xf9,0x8d,0xa1,0x35,0xa8,0x4f,0xb9,0xc2,0x6f,0x59, - 0x84,0xb2,0xd1,0x24,0xe5,0xd6,0x74,0xa7,0x3a,0x08,0x45,0xc3,0xfb,0x59,0xd4,0x36,0x21,0x38,0xc8,0x1f, - 0x1b,0x8d,0x15,0x9b,0x1b,0x63,0x1f,0xbc,0x1d,0xad,0x34,0x25,0x34,0x6d,0x6d,0xae,0x8f,0x69,0xe4,0x6c, - 0xb0,0x2c,0x93,0xf9,0x40,0x7c,0x22,0x6e,0x1c,0x6d,0xd7,0xe4,0xeb,0x4c,0xc2,0x2d,0xb3,0x6f,0xb0,0x09, - 0x1b,0x17,0x61,0x63,0xa3,0xb5,0x09,0xb4,0x5b,0xeb,0x5c,0x8c,0x3f,0xdd,0xd8,0x86,0x45,0xe9,0x9e,0x44, - 0x6b,0x6d,0x44,0xd3,0x24,0xf9,0xc3,0xf4,0xdf,0x41,0x90,0x68,0x62,0xb5,0x84,0x47,0x6c,0x02,0x58,0x20, - 0x6d,0xa2,0xd2,0x0b,0x0f,0xf2,0x4e,0x18,0x9b,0xf2,0x23,0x82,0x10,0xb3,0xc8,0x87,0x4b,0x30,0x3b,0xb3, - 0xcd,0x25,0x20,0x1d,0xd6,0x05,0x7d,0xe7,0xf8,0x18,0x91,0x12,0xf4,0x05,0xdb,0x16,0xe0,0x1e,0xce,0x0d, - 0xfe,0x82,0x3f,0xa7,0x1b,0x0b,0xb2,0x98,0xb0,0x43,0xbb,0xd2,0x8d,0xa0,0x74,0xec,0x2f,0x15,0xdf,0xdc, - 0x92,0xf1,0x1d,0x4f,0x5b,0xa8,0x80,0xb9,0x0f,0x33,0xf0,0x0d,0xcd,0x8a,0xc2,0xa2,0xb4,0x68,0x3f,0x77, - 0xb4,0xd6,0xb4,0xba,0x08,0x1a,0x57,0xe1,0x66,0x89,0x8d,0x9f,0x6e,0xbe,0x1b,0xf3,0xff,0x88,0xbb,0x51, - 0x5c,0x14,0x96,0xe6,0x6e,0xcc,0x61,0xe2,0x5f,0x5f,0x97,0x69,0x27,0x69,0xb2,0x09,0xa7,0xef,0x6f,0xc6, - 0xe9,0xfb,0x63,0x6d,0x58,0x61,0xa1,0xad,0xac,0x65,0xa6,0xa4,0xed,0x1f,0x46,0x2d,0x5d,0x7a,0x18,0x6a, - 0x8f,0x24,0xfa,0x33,0x1e,0xf9,0x61,0x58,0xc4,0x51,0x4b,0xe0,0x1d,0x82,0x5b,0xe3,0xeb,0xcc,0xfa,0x8d, - 0xb8,0xa4,0xf4,0x83,0xa3,0xae,0xba,0x52,0x91,0x03,0xae,0x8a,0xf9,0x52,0x7a,0x83,0xf9,0x52,0x2a,0xe6, - 0x4b,0x52,0xc7,0xf3,0x3b,0xf2,0xf7,0xc7,0xaa,0x37,0xb6,0x5a,0x52,0xf0,0x88,0xe0,0xf6,0x1c,0xb9,0xb4, - 0x81,0x78,0x6c,0x89,0xc2,0x2d,0x68,0xa7,0x26,0x53,0xd8,0x88,0x74,0x36,0x34,0x58,0xc3,0x12,0xcd,0x96, - 0x3a,0x11,0xce,0x9f,0x6a,0x68,0x03,0xb2,0xe9,0x1a,0xfa,0x66,0x54,0x23,0x3d,0xff,0xb7,0x22,0x9a,0xe6, - 0x6b,0xd0,0x06,0x34,0xd3,0x51,0xac,0x42,0x32,0xf6,0x02,0xde,0x8a,0x62,0xd2,0x8f,0x44,0x31,0xb5,0x46, - 0x6f,0x45,0x30,0x52,0xfa,0x76,0xf4,0xd2,0x90,0xe5,0xfe,0xa7,0x23,0x97,0xf4,0x76,0xe4,0xd2,0xed,0x5a, - 0xe9,0xff,0x23,0x97,0x0e,0xe4,0x92,0x1a,0xe4,0xa2,0x34,0x41,0xc4,0x50,0x40,0x89,0x80,0x12,0x22,0xf8, - 0xac,0x85,0xf5,0x7f,0xf2,0x68,0x9d,0xa3,0xcb,0x28,0x99,0x47,0x27,0xc9,0x3c,0x41,0x7e,0x78,0x5d,0xbf, - 0x2f,0x83,0x0f,0xb5,0x97,0xc0,0xe0,0x04,0x5b,0xc3,0x1a,0xbd,0xf3,0xb9,0x1d,0xb7,0x17,0xbe,0x18,0xce, - 0x42,0x82,0xc2,0x4b,0x82,0x7d,0x4a,0xda,0xde,0x56,0x00,0x77,0xa6,0x53,0xb4,0x89,0xe5,0xc0,0xf1,0x78, - 0x46,0xb1,0x6e,0x46,0x42,0x32,0x75,0x8d,0xf7,0x03,0xd5,0xae,0x46,0xeb,0xdc,0x11,0xfd,0xd5,0x6b,0x82, - 0xd2,0x60,0x93,0xc0,0x15,0x45,0xe0,0xc4,0x26,0x0d,0xcf,0x36,0x34,0x99,0xd6,0x9a,0x2c,0xdb,0xed,0xb5, - 0xdf,0xc7,0xec,0x97,0x9f,0xff,0x08,0xf0,0x8b,0x95,0xde,0xaa,0xb6,0xc8,0xae,0xf8,0x29,0x62,0x5b,0x88, - 0x0b,0x35,0x66,0x5f,0x4d,0x5a,0x3d,0xb6,0x79,0x95,0xf5,0xba,0xb2,0x8a,0xb8,0x79,0x8e,0x93,0x4f,0x9b, - 0x64,0x8b,0xc1,0x49,0xba,0xd8,0xb2,0xc4,0x30,0x38,0x89,0x3d,0xcd,0x04,0x6c,0x99,0x70,0xf9,0x8d,0x69, - 0x66,0x16,0x7b,0x96,0x61,0x9e,0xc6,0x3a,0x2d,0x6b,0xcd,0xd3,0x4f,0xcd,0x4c,0xf3,0x4f,0x99,0x69,0xfc, - 0xe9,0x33,0x55,0xfe,0x12,0xeb,0x63,0xcd,0x99,0x79,0x2a,0x7d,0xa3,0xf7,0x9b,0xb7,0x78,0xc7,0x8f,0x1f, - 0xd5,0xf4,0xbf,0x16,0xc6,0x0c,0x4f,0x1c,0x6b,0x9b,0xbd,0xa9,0x05,0x5d,0x1d,0xdc,0xee,0xc7,0xce,0xa3, - 0xe3,0xec,0xfd,0xd7,0xce,0x23,0xbd,0x7d,0x1e,0xb0,0xb9,0x7e,0x9f,0xa4,0xee,0x31,0x3e,0x8d,0xf1,0x9f, - 0xeb,0xe0,0x9c,0x73,0x84,0x86,0x89,0x8a,0xea,0xce,0x8e,0xc3,0xce,0xaa,0xf8,0x63,0xee,0x95,0xb8,0x59, - 0xbc,0x52,0x5a,0x3b,0x34,0x5e,0xa3,0x3a,0x20,0x46,0x51,0x2f,0x40,0x0a,0xbd,0x29,0x73,0xaa,0x7c,0x4a, - 0x98,0x72,0x98,0x8b,0x7d,0x54,0x3e,0x50,0xd1,0xc4,0x81,0x19,0x15,0xae,0x0b,0x9d,0xbf,0x0f,0xee,0x0f, - 0xee,0x3b,0x7e,0x97,0xa9,0x96,0x44,0x7a,0xde,0xde,0x56,0x11,0x9f,0xdf,0x22,0x06,0x4d,0xf5,0x3d,0x58, - 0x16,0xb1,0xfb,0x82,0x10,0xb3,0x52,0x1f,0x32,0xd6,0x2e,0xd7,0x71,0x1a,0x5c,0x73,0x54,0xcd,0xc0,0x79, - 0x53,0x46,0x49,0x5e,0x38,0x7e,0xf1,0xa1,0x28,0xe3,0x8b,0xe7,0xcf,0x28,0x85,0xbf,0x7a,0xcf,0x9f,0x39, - 0xfe,0x2c,0xc9,0x2f,0xae,0xa2,0x3c,0x7e,0x2b,0x63,0x09,0x9c,0x6f,0x54,0x42,0x4f,0x8d,0x2e,0xe8,0x39, - 0xfe,0x24,0x5b,0x7c,0x90,0xc8,0x19,0xce,0x53,0xfd,0xd9,0xfb,0xdf,0xff,0xb3,0x77,0x6f,0x6f,0xff,0xef, - 0xbd,0x17,0x51,0x7e,0xde,0xbb,0x8c,0xd2,0xde,0x4f,0x71,0x5a,0x5c,0x65,0xcb,0x29,0x1d,0xab,0x79,0x16, - 0xc1,0xe3,0x56,0xe0,0xbc,0x9e,0xc7,0x30,0x1c,0xe4,0x68,0x06,0x3d,0x95,0xda,0x93,0x85,0x52,0x21,0xdf, - 0x07,0x83,0x81,0xe3,0xe7,0xf1,0x09,0x5d,0xef,0xaf,0xe3,0x54,0x6a,0x1d,0x9c,0xc5,0x3d,0x19,0x2d,0xcd, - 0x7f,0x3e,0xef,0x9d,0xc4,0x3d,0x29,0x11,0x4f,0xfd,0xde,0x42,0x9a,0xcc,0xe3,0x59,0x1e,0x17,0x67,0x8c, - 0xc9,0x7b,0x0b,0x9a,0x74,0x2f,0x9a,0x11,0x29,0x45,0x43,0x9f,0xd2,0x5c,0x79,0xeb,0x9f,0x70,0x14,0x8f, - 0xc0,0x79,0x8c,0x1f,0xb5,0xb4,0x37,0xd1,0x25,0x77,0x24,0x7f,0x79,0x08,0x57,0xc9,0x2c,0xa1,0x95,0x2a, - 0x97,0x45,0x70,0x1d,0x4d,0xe0,0xf1,0x72,0x91,0x25,0x69,0x69,0x56,0xf1,0xf1,0x6b,0xac,0xc4,0x34,0x29, - 0xa2,0x13,0xba,0x84,0x02,0xe7,0x99,0xfa,0x22,0xf2,0x83,0xdd,0x67,0x64,0x29,0xc2,0xdd,0x99,0xe2,0xbf, - 0x24,0xdf,0x24,0x1b,0x2a,0xf8,0x09,0x22,0x97,0x38,0xcf,0xa7,0x78,0x05,0x4e,0xb3,0x37,0x6f,0x78,0x4b, - 0xe8,0xdf,0x1e,0x6c,0x4d,0x67,0x19,0x41,0x01,0x6d,0xd6,0x24,0x4a,0x11,0x91,0x02,0xb6,0x1b,0x54,0xf9, - 0x0d,0xfd,0xec,0x4d,0xf4,0x6f,0xec,0x48,0x9a,0x12,0xb4,0x7e,0x43,0xb7,0x31,0xb2,0xe5,0x6f,0xaf,0xcc, - 0x7a,0x2a,0xc3,0x94,0xa0,0x71,0xfd,0x98,0x15,0xbc,0x71,0xfa,0x37,0xed,0x43,0x51,0xf2,0xc8,0x54,0x19, - 0x35,0x3a,0xf3,0x0b,0xc1,0x3e,0x0a,0xb5,0x14,0x65,0x74,0x72,0x60,0xc0,0x88,0x52,0x1c,0x5f,0x4d,0xf0, - 0xa9,0x44,0x8c,0xe9,0x15,0x2a,0x99,0xee,0xe6,0x37,0x65,0xbc,0x28,0x0e,0xf2,0x25,0x0a,0xc7,0x65,0x0f, - 0x6f,0x05,0x08,0x5b,0xff,0x81,0xe6,0x94,0xb3,0xa1,0x40,0x81,0x02,0x55,0xd1,0x6f,0xa0,0xbd,0xda,0x2c, - 0x0b,0x5f,0x6d,0x97,0xc9,0x74,0x89,0xa8,0x14,0xb4,0xb6,0x44,0xc8,0x20,0x1a,0x45,0x6d,0x24,0x07,0x2a, - 0x0d,0x63,0xb9,0x88,0x75,0x22,0x7d,0x4a,0xc2,0x73,0xbc,0x51,0xa4,0x84,0x7a,0x34,0xf4,0xd1,0xb2,0xc2, - 0xfe,0x25,0x2a,0x7b,0xc8,0xee,0xe9,0x26,0x7b,0xca,0x26,0xa5,0x17,0xa5,0xdc,0x3f,0xea,0xf4,0xaa,0x65, - 0x1b,0x48,0x6b,0x2f,0x33,0x0e,0x71,0xec,0xbc,0xcc,0x1a,0xb5,0xd5,0x51,0xed,0x7d,0x88,0x4b,0x29,0xf9, - 0x75,0xaa,0x76,0x5a,0x3e,0xea,0xc5,0xd5,0x58,0x21,0xc4,0x66,0x5f,0x5a,0x18,0x2e,0x66,0xa2,0x7f,0x4b, - 0xe9,0x24,0xed,0x5d,0x10,0xc0,0x27,0x45,0x4c,0xe3,0x98,0xaa,0x4a,0x8f,0xa7,0xd4,0x26,0xfd,0x23,0xbf, - 0x9e,0x49,0x40,0x21,0x47,0xfe,0xea,0x66,0xb9,0x93,0xc6,0x00,0x54,0x85,0x6f,0x92,0xf7,0xf1,0x54,0xba, - 0xe3,0x4f,0xee,0x49,0xb2,0xde,0x2c,0xd3,0x3c,0xe1,0x2d,0x90,0x0f,0x93,0x5a,0x60,0xf5,0xe4,0xaf,0x5e, - 0xe4,0x0b,0xb5,0xc6,0x32,0xc6,0x74,0x59,0xc6,0x6a,0x78,0x2f,0x68,0xa4,0xd1,0x87,0xc0,0x91,0xbf,0xaa, - 0xf8,0x32,0x2e,0x38,0x51,0x7d,0x48,0xea,0x2f,0xf1,0x34,0x55,0xe9,0xe6,0x53,0x95,0x3f,0x5b,0xe6,0xaa, - 0x82,0xfa,0x52,0x63,0xcf,0x13,0x4e,0x95,0xbf,0x6a,0x78,0x04,0x6f,0x39,0xa7,0xea,0x2f,0x33,0x6c,0x49, - 0x5d,0xca,0x38,0x2e,0x32,0x59,0x67,0x86,0x8e,0x17,0xfc,0x43,0x27,0x5a,0x7b,0x2a,0x09,0x1b,0x76,0x55, - 0x32,0x9b,0xfb,0xda,0xa8,0xd2,0x28,0xf6,0x6c,0x09,0xd2,0xfb,0xa0,0xda,0x15,0xda,0x3b,0x5c,0x2b,0x74, - 0x11,0xf4,0x10,0x5c,0xa8,0x97,0xcc,0x7a,0x51,0x0d,0x36,0x60,0x4b,0x13,0xcd,0xf3,0x38,0x9a,0x7e,0xe8, - 0x45,0x62,0x7e,0xae,0x07,0xff,0xa9,0xe0,0xa2,0xab,0x6d,0x00,0x07,0xc9,0xae,0xe0,0x49,0x7e,0x37,0x21, - 0x4a,0x52,0x5f,0x27,0x84,0x39,0xbf,0x7d,0xfd,0xfc,0x55,0x6f,0x41,0xdd,0xb8,0x32,0xb0,0xde,0x19,0xa1, - 0x7e,0xcf,0x54,0x94,0x1b,0x13,0x28,0xf6,0xcd,0x55,0x1c,0x2f,0xe8,0x20,0x25,0x17,0x91,0xbd,0xd0,0xa6, - 0xc4,0x4b,0xeb,0x3b,0x9a,0x63,0xe5,0xd3,0x98,0x1a,0xd5,0x38,0xa1,0x87,0xb3,0x09,0xa4,0x1f,0x5d,0xc8, - 0xb9,0x69,0xf7,0x71,0x90,0x2d,0x9e,0x21,0xa6,0x96,0x43,0x1f,0x3d,0x44,0xd7,0x6a,0x95,0x78,0x92,0x11, - 0x6a,0xbf,0xf8,0x79,0x11,0x38,0xf2,0xd5,0x5b,0x2e,0x9c,0xb5,0x85,0x07,0x6d,0x14,0x52,0x61,0xc3,0x0a, - 0xa1,0x55,0x08,0x92,0x5f,0xfc,0xe2,0x92,0x37,0xd7,0xbe,0x0b,0x34,0x04,0x48,0x5a,0x8f,0x13,0x6b,0x25, - 0xbe,0xe3,0x52,0x8f,0xe7,0xf3,0xec,0xaa,0x10,0xac,0xa7,0x7c,0x0a,0x58,0x78,0xa5,0x37,0xcb,0x69,0x6c, - 0x1f,0xb2,0x65,0x4e,0xc0,0x76,0x99,0x4c,0x62,0xa0,0x6d,0xbe,0xc5,0xe4,0xa2,0x56,0x1e,0x91,0xb8,0x7a, - 0xed,0xa6,0xec,0x2d,0x96,0xf9,0x22,0x2b,0xe2,0x62,0xd0,0xc3,0x05,0xa9,0x4a,0xd7,0x8b,0x00,0x94,0x84, - 0x45,0xa3,0x16,0xe8,0xf7,0x59,0x59,0x2e,0x82,0xdd,0xdd,0xfd,0xaf,0xee,0x0d,0xf6,0xbf,0xf8,0x72,0xb0, - 0x3f,0x78,0xb0,0xdb,0xbb,0x3a,0x23,0x28,0xa4,0xfe,0x7b,0xb8,0xe5,0x0d,0xd2,0xc7,0x28,0x92,0x92,0x9a, - 0x66,0x26,0xa3,0xec,0x65,0x33,0x82,0xd3,0xa2,0x57,0x64,0xf0,0x31,0x53,0xf4,0xd4,0x1d,0x87,0xc1,0xc5, - 0xe8,0x45,0x77,0x8b,0x1b,0x99,0xb2,0xa9,0x02,0x25,0xb2,0xaf,0x84,0x78,0x82,0x54,0xc0,0x66,0x94,0x7e, - 0xa0,0x9b,0xff,0xc3,0xa0,0xf7,0x2b,0x75,0x86,0x0b,0x2c,0x9a,0xd3,0xcf,0xa2,0x67,0x38,0xb0,0x9e,0xd0, - 0x4a,0x3d,0x08,0x09,0x30,0xda,0x93,0x0f,0x3d,0x28,0x4b,0x82,0x46,0x00,0x34,0xd8,0xcb,0xdc,0x53,0x21, - 0xb9,0x96,0x69,0x99,0xcc,0x39,0xf7,0xc7,0xaf,0x9f,0xf5,0xe6,0xa0,0x44,0x0a,0xda,0x68,0x42,0xd6,0xf6, - 0x2d,0xac,0x37,0xca,0x1e,0x75,0xad,0x84,0x6c,0x94,0xda,0xf2,0xae,0xd5,0xa7,0xd5,0xe0,0x2d,0x22,0x40, - 0xeb,0xe1,0x2e,0xef,0xe5,0xec,0x31,0x6c,0xd0,0x53,0x77,0x0a,0x07,0x82,0xe3,0x71,0xe0,0xe6,0x26,0xaa, - 0x24,0x2a,0x88,0xf8,0xc9,0xa7,0x34,0xe9,0x29,0x91,0xb5,0x39,0xe5,0x34,0xb7,0xef,0x24,0x26,0xb0,0xc0, - 0x40,0x8b,0x64,0x2a,0x17,0xbe,0xe3,0xeb,0x6a,0x74,0x57,0xa9,0x2f,0xba,0x98,0xcf,0x26,0x04,0xc3,0x3f, - 0x53,0x27,0xcf,0xbe,0x7b,0xfa,0x5a,0x7e,0x2b,0xc0,0x5a,0x12,0x58,0xc3,0x55,0x17,0x2e,0x47,0x5a,0xf6, - 0x22,0x39,0x4d,0x0b,0x5c,0x5f,0xcf,0x5f,0xf7,0x54,0x4c,0xf9,0x6e,0x60,0x92,0x2d,0x20,0xf2,0xfc,0x84, - 0x96,0x05,0x9b,0x42,0x0b,0x4a,0x05,0xcf,0x71,0x68,0x65,0x23,0xb0,0xb2,0x73,0xd4,0x07,0x60,0xc0,0xa4, - 0x89,0xc0,0x84,0x0e,0x25,0xfd,0xba,0x4b,0x50,0x32,0xcd,0x40,0x26,0x11,0xe5,0xb2,0x50,0xdd,0x10,0xf9, - 0x62,0xba,0xa4,0x19,0x2d,0x4f,0xe8,0xee,0xbc,0x88,0x8a,0x73,0xa0,0x5f,0x7c,0xf7,0xf0,0xc3,0xf1,0x4f, - 0x09,0xeb,0x5d,0x01,0x29,0x7f,0x2b,0x1f,0x8e,0x7f,0x46,0xb4,0x87,0xd8,0x97,0x7e,0xa7,0xbe,0xaa,0xb4, - 0xd7,0x95,0x3f,0x64,0x60,0x23,0x31,0x29,0xa5,0x96,0x26,0xa6,0xa7,0xb5,0x22,0x62,0x6b,0x74,0x09,0xa7, - 0x10,0x25,0x55,0x2e,0x2c,0x52,0xa0,0x07,0x95,0xce,0xb3,0x3c,0x4b,0x89,0xea,0xe2,0xd5,0x77,0x5f,0x1e, - 0xbc,0x26,0xac,0x42,0xc8,0xac,0x50,0xc5,0xbe,0x23,0x52,0x91,0x29,0x5d,0x4a,0xcb,0x10,0x58,0xf3,0x22, - 0x5a,0xe8,0xbc,0x6f,0xb3,0xec,0x94,0xa0,0xe0,0x05,0xa5,0xf4,0x1e,0xbf,0x7e,0x5e,0xd1,0xc9,0x2a,0xdf, - 0x50,0xc9,0xc2,0x1f,0x10,0xb9,0x15,0xcd,0x93,0x93,0x9c,0xa5,0x21,0x82,0x4d,0xf4,0x6f,0x2b,0x4b,0xd3, - 0xa3,0x26,0x4f,0x13,0x44,0xa6,0x84,0x6c,0xf3,0xcf,0x6c,0xc6,0x1d,0x6b,0x90,0x67,0xb8,0x51,0xb4,0x9d, - 0x9c,0x39,0xce,0x15,0x49,0x0b,0x9d,0x53,0x69,0xc5,0x67,0xc8,0xa3,0x52,0xd1,0xf4,0x1d,0x0c,0x30,0xb9, - 0x01,0xa6,0xd4,0x53,0x6c,0x2b,0x1c,0xc7,0x44,0x93,0x33,0x8b,0xbc,0xe2,0x6a,0xbc,0x6c,0x6f,0xe0,0x75, - 0x97,0x96,0x9c,0x56,0xa8,0xc7,0x1e,0x78,0x73,0x4e,0x66,0x3a,0xea,0x12,0xd8,0xfa,0x27,0x45,0x6b,0x27, - 0x2a,0xa5,0xe7,0x56,0x44,0x80,0xc7,0x65,0x7f,0x8c,0x68,0xdc,0xf4,0x4f,0x52,0x32,0xfd,0x8f,0x14,0xd0, - 0xd7,0x3f,0x66,0xe9,0xa9,0x95,0x44,0xdc,0xb1,0x5c,0x17,0xdf,0x12,0x84,0xcc,0x55,0xe9,0xde,0x2e,0x11, - 0xa4,0xaa,0x98,0xe0,0xc6,0xb9,0x2a,0x57,0xab,0xf4,0x26,0x8e,0xf2,0xc9,0x19,0xa8,0x45,0xfc,0xe5,0x8d, - 0x24,0x0c,0x40,0x54,0x39,0x5d,0xaf,0x8c,0x26,0x5e,0x33,0x9a,0x10,0x72,0x94,0x91,0x03,0xdf,0x5b,0x7d, - 0xe2,0xac,0x2e,0x3d,0x5d,0xfc,0xcd,0xc1,0x63,0x21,0x64,0x01,0x11,0x2f,0x80,0xca,0x6e,0x28,0xff,0xf8, - 0xb5,0xde,0x30,0x85,0x4d,0x6a,0x1d,0xa9,0xcd,0xb1,0x2f,0x47,0xda,0x26,0xa9,0xf9,0xfa,0x97,0x17,0xcf, - 0x72,0x4a,0xc9,0xdf,0x3c,0xa3,0xfe,0x5e,0x3f,0x7d,0xfc,0xd5,0x17,0x5f,0x7e,0xde,0xa3,0xd4,0xde,0x94, - 0x93,0x7b,0x94,0x2e,0x35,0xa1,0xd4,0xdc,0xac,0xf3,0xf4,0xc7,0xee,0x3a,0x4f,0x7f,0x94,0x3a,0x13,0x78, - 0x60,0x45,0xa5,0xab,0x8b,0xc7,0xfa,0x34,0x76,0x94,0x7f,0xfe,0xbf,0xff,0xd7,0xd3,0xea,0x88,0x52,0xe1, - 0x6f,0x40,0xef,0xc6,0xe9,0xe4,0x43,0x67,0xf1,0x99,0xce,0x95,0x73,0x40,0x40,0xff,0x43,0xfc,0xa1,0x75, - 0x10,0x08,0x65,0xd4,0x0a,0x9c,0x31,0xc0,0xfe,0x14,0x8b,0xf7,0xc1,0x29,0xf0,0xfe,0xac,0xb7,0x2c,0x18, - 0x83,0xdb,0xe4,0xef,0xa0,0x47,0x40,0x3d,0xe5,0x3b,0x6d,0x9e,0x65,0xe7,0xc8,0x5f,0x2e,0x18,0x46,0x55, - 0xe4,0x49,0x2e,0xfe,0x07,0x51,0x05,0x03,0x42,0xb7,0x44,0x16,0x10,0x2a,0x3c,0xef,0x21,0x14,0x1e,0x9d, - 0x4c,0x60,0x38,0xd5,0xb7,0x8f,0x75,0xef,0xa9,0x41,0x5d,0x30,0x1f,0x0a,0x29,0x72,0x49,0x67,0x4e,0xf0, - 0x35,0xcf,0xa2,0xa0,0x7b,0xec,0x27,0xe2,0xbb,0x0b,0xe0,0x68,0xb9,0x86,0x69,0x7a,0xb1,0x6e,0x04,0xd4, - 0x86,0xba,0x18,0xb5,0xe3,0x3e,0xba,0x89,0xe9,0x94,0x2d,0x30,0xd2,0x53,0x6e,0x1c,0xbc,0xfe,0x2e,0x1f, - 0xa9,0x48,0x53,0x6f,0x49,0x79,0x97,0xae,0x9a,0x42,0x6e,0x66,0x0c,0x5d,0x2f,0xca,0x80,0xf0,0x12,0xcb, - 0xac,0x83,0x6b,0xb0,0xb8,0x86,0x95,0x7e,0x0a,0x9f,0x8e,0x7c,0x29,0x22,0x99,0x4e,0x8f,0x08,0xdd,0x01, - 0x7b,0xd1,0x09,0xe6,0x55,0x1a,0x3e,0x57,0x58,0xe6,0x8a,0x04,0x69,0x55,0xb6,0xe8,0x07,0x22,0xca,0x4b, - 0xb8,0xb3,0x96,0x3a,0x82,0xfe,0x5a,0xe5,0x15,0xfb,0x5c,0x2f,0x6b,0x51,0xa5,0x45,0xab,0x46,0x8d,0x24, - 0xad,0xd7,0x7b,0x61,0x93,0x95,0xed,0x9a,0x75,0x82,0xd8,0xaa,0xcb,0x1c,0x77,0xf7,0xa4,0x0a,0xd8,0x87, - 0x77,0x4e,0x8a,0x2b,0xb5,0x67,0xc5,0x15,0x5a,0xb3,0x12,0xf4,0x8b,0x0b,0x5a,0xf1,0xee,0x56,0x8d,0x3c, - 0xa6,0x11,0xd1,0xbe,0xca,0xfd,0xad,0xf9,0xd4,0xe5,0x02,0x63,0xd6,0xf8,0x9b,0xce,0x36,0x36,0xae,0xc7, - 0x51,0x14,0x7b,0x92,0x07,0xe0,0xd4,0xe8,0x5e,0xf7,0xc0,0xfc,0xaa,0xdd,0x38,0x8f,0x92,0x9f,0x57,0x80, - 0x46,0xc5,0x33,0x14,0x6e,0x42,0xc6,0x4e,0x15,0xa2,0xb3,0x57,0x2a,0x3b,0x07,0xcc,0x6b,0xe4,0x46,0x93, - 0xa7,0xdb,0x3e,0x49,0x23,0x66,0xa4,0xb8,0xb9,0x4d,0xdb,0xc3,0x53,0xdf,0xb0,0x3d,0x5c,0x71,0xf3,0xfe, - 0x70,0xd5,0x4d,0xfb,0xb3,0x36,0x17,0x8f,0x50,0xc7,0xf5,0x9b,0x0b,0x55,0xae,0x92,0x3f,0x22,0x90,0x24, - 0x20,0xd0,0x34,0x32,0x7c,0x42,0xdf,0xa0,0xa5,0x10,0xb9,0x66,0x89,0xd3,0xff,0xb2,0x7e,0x11,0x11,0xd6, - 0x8e,0xdf,0x97,0xba,0xf4,0x4b,0x36,0xcc,0xee,0x10,0xc7,0xac,0xd7,0x7e,0x3a,0x37,0x9d,0x12,0x67,0xb3, - 0x68,0x49,0xa8,0x3e,0x4e,0x44,0x15,0xff,0x35,0x09,0xd5,0xd7,0x44,0x0c,0x67,0xa7,0x71,0x7a,0x32,0x4f, - 0xce,0x7b,0xa7,0x31,0x51,0x4b,0x44,0xd1,0x9e,0xc4,0x7f,0x24,0xa7,0xbd,0x0b,0xbe,0xa5,0xa6,0x54,0xe0, - 0x92,0xa5,0x2f,0x86,0x98,0x8b,0xbb,0x84,0x56,0xdf,0x51,0xe9,0x42,0x0d,0x1b,0x84,0x1c,0x91,0xd0,0x8b, - 0x34,0x89,0x97,0x57,0xf4,0xf7,0x34,0x96,0xe0,0x4e,0x18,0x31,0x06,0x4d,0x14,0x55,0xfc,0x47,0x0c,0xb1, - 0x15,0x01,0x40,0x2f,0xa5,0xa1,0xc4,0x69,0x63,0x95,0x0e,0xb2,0x18,0xc4,0x61,0x23,0x5d,0x0b,0xae,0x9e, - 0x98,0x01,0x66,0x8b,0x62,0x1e,0x45,0xe9,0x9f,0x92,0x61,0xfd,0x9c,0x94,0x34,0xb2,0xc9,0x59,0x74,0x1e, - 0xcf,0x3f,0x5e,0x90,0x55,0xaf,0xa5,0xa4,0x59,0x6f,0x68,0x10,0x0b,0xb8,0x6e,0x99,0x36,0x65,0x5a,0x09, - 0x0d,0xf2,0x34,0xbe,0x24,0x06,0x15,0x73,0xe9,0x92,0x6b,0x45,0x33,0x02,0xcb,0x2c,0x6d,0x8b,0xb5,0x7e, - 0xa0,0xcc,0xd3,0x18,0xeb,0x1f,0xe7,0x2a,0x86,0x03,0x91,0x83,0xe7,0x68,0xa7,0x29,0xde,0x7a,0x5b,0x95, - 0xa0,0xc2,0xf3,0x2c,0x47,0xa1,0xba,0x88,0xeb,0x25,0x46,0x82,0x96,0x64,0x28,0x1f,0x23,0xe4,0xfa,0x6e, - 0x99,0x4c,0x93,0xd3,0x78,0x83,0x90,0x8b,0xf8,0x3c,0x1c,0xc9,0x18,0x10,0x82,0xfd,0x9c,0xcf,0xc0,0x1b, - 0x29,0x49,0x56,0x9c,0x94,0x2d,0x49,0xd7,0x81,0x94,0xd5,0x34,0x58,0x1c,0xcf,0xd9,0xdf,0x4d,0x4c,0xed, - 0xa4,0x9f,0x26,0xeb,0x7a,0x37,0x6d,0xca,0xba,0x7e,0x64,0x58,0xe8,0x11,0xb2,0xea,0x5d,0x66,0xb8,0xa0, - 0xa8,0x4c,0x25,0xd6,0x88,0xe3,0x4a,0xc6,0x75,0x59,0x5b,0xaa,0x18,0xce,0x0b,0x93,0xa2,0x25,0xed,0x3a, - 0x95,0x95,0xaf,0x37,0x73,0x1a,0x1b,0x1a,0x34,0xce,0xa7,0x0d,0xb1,0xd7,0x41,0xad,0x28,0x4d,0x4c,0x40, - 0x24,0x4e,0x6f,0x96,0x7d,0xc5,0xd2,0x47,0x5d,0x96,0xa1,0x2b,0xb1,0xac,0x82,0x8e,0xc2,0x65,0x16,0x9f, - 0xea,0x34,0x2d,0xaf,0xa0,0x2d,0xbf,0xa2,0x9a,0x71,0x5e,0xf5,0x50,0x97,0x7b,0x40,0xee,0x12,0xcf,0x5a, - 0x52,0xb0,0xb7,0x51,0x51,0x4a,0xa7,0x0d,0x29,0xd8,0x6f,0x20,0x06,0x16,0xe7,0xd9,0x45,0x51,0xd6,0x25, - 0x61,0x9c,0x01,0x25,0xee,0xd3,0x08,0x2a,0xc1,0xb6,0x40,0x4c,0x8f,0x1c,0xb4,0x70,0xda,0x10,0x88,0xd1, - 0xb1,0x9c,0x46,0xa7,0x0d,0x89,0xd8,0x33,0x5a,0x18,0x93,0x6a,0x4b,0xc4,0xb2,0xd8,0xca,0xa8,0x04,0x62, - 0xcf,0xb8,0x63,0x93,0xa1,0x25,0x62,0x6f,0x73,0xea,0x5a,0x27,0x56,0x22,0xb1,0xdf,0xe8,0x3a,0xa9,0x0a, - 0x6b,0x91,0xd8,0x6f,0x99,0x0c,0xa4,0x26,0x12,0x7b,0x12,0x5f,0xc5,0xa7,0xac,0xe2,0xdc,0x14,0x8a,0xa9, - 0xad,0x3f,0x51,0x05,0x36,0x6f,0x7f,0x43,0x3e,0xf6,0xa4,0x55,0xa1,0x06,0x04,0xb7,0x89,0xc9,0x5e,0xd1, - 0x05,0x69,0x55,0xe8,0xd1,0x99,0xe9,0xc5,0x10,0x1c,0xf7,0x9a,0x80,0xc8,0x34,0x59,0x3c,0x23,0xb0,0xbd, - 0x4d,0x52,0xb6,0x11,0xb8,0xba,0x25,0x65,0x1a,0x62,0x2c,0x41,0x99,0x05,0x7c,0x75,0x71,0x59,0x0d,0xfc, - 0x36,0xca,0xcc,0x68,0x94,0x67,0x44,0x50,0x76,0xc9,0xcc,0x1e,0x8b,0xb4,0x2c,0xbe,0x55,0x58,0xf6,0x2d, - 0xe6,0x0f,0x61,0x99,0xc1,0x36,0xa7,0xf1,0x3c,0x79,0x77,0x8e,0xa9,0x25,0x1d,0x4d,0x1b,0x51,0xd9,0x93, - 0x0c,0x02,0xc7,0x34,0x8a,0x72,0xda,0xcc,0x34,0xb6,0x26,0xde,0x25,0x34,0x93,0x12,0xaa,0x38,0x6a,0x6e, - 0x94,0x9e,0x55,0xc8,0xd6,0x60,0x4a,0x0b,0xff,0xda,0x17,0x65,0x43,0x7e,0xf6,0xd8,0x96,0xe8,0xd4,0x80, - 0xa3,0x25,0x44,0xa3,0xd3,0x73,0x4e,0x64,0x3a,0x44,0x09,0x99,0x4c,0xb7,0x47,0xac,0x21,0x56,0x42,0x24, - 0x6a,0x15,0xf5,0x18,0xe3,0x7a,0x8e,0x66,0x9c,0x47,0x57,0x65,0x94,0x47,0x84,0x03,0x79,0x16,0x7c,0xc9, - 0x82,0xb4,0x30,0x52,0x9d,0x58,0xee,0x0f,0x34,0x35,0x8d,0xad,0x54,0x03,0xd7,0x88,0xaf,0xd1,0x7b,0x56, - 0xaf,0x95,0x14,0x28,0x42,0x2b,0x18,0xf1,0x6e,0xf7,0x2e,0x93,0xa8,0x53,0xb0,0x46,0xf9,0xd4,0xf3,0x3b, - 0x7b,0x64,0x67,0xf1,0x09,0x6e,0xbf,0x0b,0x4c,0x66,0xd0,0x7b,0x23,0xf3,0x95,0x71,0x41,0xf6,0x45,0x24, - 0x67,0x82,0xb1,0xf2,0x3c,0xed,0x31,0x10,0x37,0x4f,0xa8,0x86,0x2e,0x79,0x75,0xb5,0xc8,0x35,0x7a,0x42, - 0xd4,0x6c,0x32,0x4f,0x4e,0xa7,0x40,0xd8,0xbd,0xef,0xe3,0xde,0x39,0x11,0x60,0x76,0x6b,0x59,0xe3,0x08, - 0x4d,0x71,0x13,0xe0,0x56,0x30,0xcc,0xab,0x2c,0xfd,0x79,0x4a,0x89,0x34,0xa7,0x69,0xbe,0x3c,0xc7,0x72, - 0x94,0x59,0x89,0xa1,0x4f,0x45,0xaa,0x16,0xe1,0xda,0xa5,0x45,0x6c,0x0a,0xd5,0xac,0x3d,0x06,0xe5,0xc1, - 0x64,0xb5,0xba,0x8e,0x5b,0xa2,0x35,0x55,0xb6,0xbd,0x05,0x68,0x9c,0x96,0x28,0xa6,0x6b,0xb5,0x21,0x59, - 0x7b,0xbb,0x9c,0xf7,0xce,0x12,0xa6,0x04,0xe8,0x88,0x63,0x45,0x98,0x80,0xa0,0x62,0x57,0xd1,0xe4,0xac, - 0xbc,0x02,0xbd,0x4c,0xb3,0xf3,0x91,0x62,0xe1,0x21,0x96,0xaa,0x97,0x4b,0x5e,0xd6,0x1e,0x81,0x6d,0x8e, - 0x0b,0x9b,0x97,0xa3,0xd8,0x28,0x6c,0xfb,0xc5,0x34,0xa8,0xc5,0x6d,0xdf,0xc6,0x27,0xf9,0x92,0x28,0xc0, - 0x4d,0x22,0x37,0x5a,0x53,0x06,0x30,0x16,0x7b,0x11,0x4b,0x4d,0x4b,0x16,0xd3,0xf1,0xff,0x03,0x30,0x17, - 0xa5,0xad,0x69,0x12,0x17,0x4b,0x00,0x48,0x95,0x92,0x77,0x29,0xc3,0xee,0x55,0x32,0xc7,0xb4,0xad,0xbd, - 0x42,0x35,0xd8,0x33,0xd0,0x84,0xe8,0x9f,0x3f,0x92,0x77,0xc8,0xbf,0x8a,0x69,0xda,0x57,0x80,0x5d,0xfa, - 0x71,0x11,0xc7,0x8a,0x12,0x3d,0x81,0xfb,0xb2,0xb6,0xf8,0x2d,0x8f,0x37,0x0b,0xdf,0x20,0xc4,0xb9,0x5d, - 0xfc,0x16,0x5d,0x6c,0x10,0xbf,0xbd,0x01,0x29,0x47,0xe3,0x98,0x6a,0x01,0x1c,0xfa,0xda,0x28,0x7e,0x6b, - 0xca,0xdf,0xde,0x4d,0xeb,0xf2,0xb7,0xf8,0x26,0xf1,0x5b,0x04,0xc3,0x0e,0x3a,0x07,0x04,0x57,0x8c,0xa0, - 0xfe,0x84,0x14,0xee,0x24,0x79,0x77,0x15,0xe7,0x42,0x18,0x36,0x04,0x71,0x3f,0x68,0x76,0xa6,0x4b,0x12, - 0x27,0x99,0x00,0x22,0x41,0xac,0x2d,0x51,0x9c,0x06,0x0b,0x86,0x49,0x02,0x72,0x5a,0x94,0x58,0x4e,0x0f, - 0x61,0x10,0x80,0x28,0xa5,0x94,0x74,0x43,0x95,0x9a,0xb2,0xeb,0x89,0x54,0x0f,0x14,0x1d,0x03,0xaa,0x20, - 0x9a,0xb3,0x18,0xab,0x7a,0x16,0x27,0x53,0x66,0x25,0xe2,0xf9,0xb9,0x42,0xe5,0x0c,0x05,0x65,0xdc,0xd3, - 0xa4,0xfe,0xc7,0x48,0xe3,0xde,0x0a,0x0f,0xd1,0x25,0x8d,0x4b,0x2d,0x69,0xdc,0x13,0x9a,0xd7,0xb4,0x8c, - 0x4f,0x09,0x1d,0x4e,0x2d,0x89,0x1c,0x94,0x29,0xec,0x44,0xc3,0xaa,0xda,0xe5,0x21,0x93,0xab,0x0a,0x12, - 0xc0,0x9e,0x45,0x40,0x27,0x34,0xed,0x93,0xa8,0x20,0x74,0x88,0x49,0x08,0x23,0x1b,0x77,0x0a,0xe9,0x7e, - 0xcb,0x62,0xde,0x8c,0x3f,0x2f,0xa4,0xb3,0x78,0xf6,0x5b,0x84,0x73,0xb5,0x96,0x6d,0xe4,0xc7,0xdb,0x64, - 0x5f,0xc4,0xc4,0xa2,0x9c,0xfe,0x57,0x08,0xe8,0xce,0xe7,0xd9,0xff,0x5d,0xf2,0xb9,0xc7,0xb8,0x4b,0x72, - 0xe6,0x64,0xe9,0xa4,0xd0,0x7d,0x24,0x40,0x7d,0xc9,0x88,0xab,0x4e,0xe2,0x13,0xe2,0x62,0xde,0x55,0x95, - 0x29,0x35,0x00,0x2b,0x46,0x08,0x65,0x21,0xa5,0x93,0x0b,0x71,0x01,0xa8,0xa0,0x1a,0x74,0xf4,0x4a,0xbe, - 0x7b,0xfe,0x10,0xdc,0x6d,0x84,0x75,0x17,0xc0,0x64,0x6a,0x88,0x54,0x9c,0xcb,0x4d,0xa9,0x57,0x08,0xe6, - 0xce,0xd1,0xae,0x12,0xd7,0x15,0x5a,0x5e,0x27,0x08,0x1d,0x14,0x0e,0x8e,0xac,0x99,0x12,0x20,0xef,0xe3, - 0x24,0x76,0xc0,0xc7,0x2c,0x8d,0x55,0x57,0x08,0xf3,0x42,0x7a,0xc2,0xb8,0xb5,0xa6,0xb7,0xcb,0xed,0xc0, - 0x76,0x2a,0x4e,0xde,0xc8,0xec,0xd4,0x0d,0xac,0x4e,0x42,0x5b,0x5c,0x87,0x3a,0x16,0x63,0xa5,0xd8,0x3a, - 0x46,0x69,0x1d,0x35,0xb5,0x78,0xcb,0xea,0xe9,0xb6,0x2a,0x75,0xe1,0x10,0x2a,0xd6,0x28,0xe2,0x5b,0x6a, - 0x37,0x25,0x44,0xa8,0xdf,0xa4,0xef,0x6f,0x6a,0xa3,0x25,0xc9,0xfb,0x88,0xf9,0xb2,0x5c,0xa2,0x21,0xcf, - 0xbb,0x6d,0xc2,0xaa,0x4e,0x5b,0xac,0x87,0x8a,0x36,0x4e,0xa8,0x0f,0xaf,0x29,0xd4,0xfb,0x86,0xa5,0xab, - 0xa0,0xce,0xd3,0xa2,0xba,0x1c,0x18,0xe0,0x37,0x48,0xf6,0x78,0x41,0x71,0x7f,0xdf,0x30,0xaa,0xa6,0x70, - 0xef,0x87,0x0a,0x0b,0x5a,0xd2,0xbc,0x54,0xd3,0x6a,0x0b,0x6b,0xe9,0xfe,0xc4,0xee,0xd9,0xcb,0xf7,0xa7, - 0xb7,0x4f,0x1a,0xe9,0x16,0xf4,0x55,0x37,0x63,0xa7,0x9c,0xef,0x20,0xce,0x97,0xa7,0x35,0x41,0xdf,0x63, - 0xfb,0xae,0xab,0x8b,0xf9,0xde,0x66,0xf3,0x53,0xc8,0xff,0x37,0x0a,0xb1,0xd6,0xeb,0x75,0x15,0x74,0x87, - 0x85,0x61,0x8f,0x17,0x0b,0xd7,0xbb,0x86,0x12,0x5b,0xa5,0x56,0xe7,0x4c,0xce,0x62,0x48,0x17,0xaf,0x75, - 0xf0,0xa8,0xe0,0xee,0xc3,0x69,0x72,0xd9,0x9b,0xcc,0xa9,0x95,0x50,0xe5,0xf6,0x02,0xf5,0xf3,0xba,0xc7, - 0x09,0xc4,0xb8,0x89,0xfc,0xd5,0xef,0x19,0x21,0x95,0xf9,0xea,0xad,0x9d,0xde,0x3f,0x08,0x83,0x40,0x63, - 0x20,0x74,0xce,0xe8,0xfe,0x9e,0xc7,0x84,0x17,0xc1,0x1f,0x51,0xc6,0x64,0x9e,0x4c,0xce,0x75,0xf2,0x53, - 0xfc,0x70,0x7a,0x44,0xda,0xb0,0xc9,0x7e,0xe8,0xec,0x39,0x8f,0x6a,0xbd,0x67,0x69,0x99,0x67,0xf3,0x7a, - 0x22,0x47,0x7c,0xa2,0xa4,0x5d,0x4a,0xd3,0xff,0x5a,0xd9,0xf3,0xe8,0x24,0xa6,0x1a,0xd7,0xd7,0x3d,0x5e, - 0xf4,0xde,0x7a,0x6d,0x97,0xbc,0x6b,0x1c,0xea,0xf2,0x8e,0x28,0x57,0xb9,0xe2,0xc5,0x52,0x1c,0x5b,0x3e, - 0xc9,0x08,0xd7,0x45,0xa9,0x71,0xb0,0xbb,0xb5,0xbf,0xae,0x24,0x71,0x1b,0x8b,0xc0,0x5f,0x13,0x6b,0x19, - 0x06,0xd7,0xd6,0xd4,0x5a,0x6e,0x8e,0x75,0x43,0xf0,0xd9,0x87,0xdf,0xdc,0x71,0xb8,0x55,0x7d,0x8b,0x9e, - 0xf8,0x1d,0x42,0x83,0xb4,0x35,0x49,0xba,0xc0,0x23,0x69,0x95,0x0b,0xd7,0x2d,0xb5,0x05,0xad,0x45,0x8e, - 0xbb,0x7f,0x0f,0x0e,0xb7,0x68,0xe5,0xe1,0x57,0x5f,0xfb,0x82,0xb3,0x46,0x03,0xc5,0x5d,0x04,0xe9,0x04, - 0xf1,0xae,0xad,0x66,0x95,0xf2,0x6e,0x03,0x26,0xe8,0xe2,0x4a,0xb2,0x8d,0x30,0x21,0xb9,0x1b,0x61,0xa2, - 0x17,0x86,0xbd,0x64,0xfa,0xff,0x14,0x64,0x48,0x30,0xa6,0xa9,0xfc,0xfd,0x4f,0x06,0x06,0xfe,0xa4,0xf5, - 0xfb,0x6f,0x01,0x04,0xe5,0x78,0x09,0x8f,0x2c,0x2a,0x24,0x4b,0xe5,0xdb,0x2c,0xba,0x4c,0x88,0xbb,0xc9, - 0xf2,0xc1,0x9c,0x68,0x9b,0x65,0x74,0x1a,0x37,0x1d,0x8d,0x39,0xcc,0x4b,0x68,0xb7,0x65,0xc6,0xcd,0x8b, - 0x37,0x54,0xcd,0xb9,0xd7,0x31,0xd1,0xd2,0x7f,0x23,0x74,0x45,0x7c,0x15,0x35,0x1d,0xc4,0x3e,0xbb,0x01, - 0xbb,0x4e,0x09,0xd7,0xce,0x12,0x85,0xe3,0x79,0x8d,0xf5,0x5b,0xc1,0xd6,0x9e,0x5f,0x88,0xfc,0x7d,0x6b, - 0x5f,0x7d,0xc9,0xed,0x41,0x3f,0x55,0x99,0xe7,0x74,0x1d,0x4e,0x30,0xae,0xc0,0x59,0xe9,0x6b,0xe9,0x75, - 0x9e,0x9d,0x32,0x15,0x48,0xc5,0x84,0x36,0x39,0x88,0x4e,0x10,0x0e,0x4b,0x64,0xca,0x5a,0xcf,0xf6,0xba, - 0x7a,0xfd,0x50,0x8d,0xb1,0x4c,0x5f,0x67,0xdb,0x89,0xeb,0xba,0xa4,0x7f,0x11,0x5c,0xc7,0x4a,0x82,0x45, - 0x5d,0x24,0xc4,0xcd,0xee,0x0d,0xf8,0xbf,0x4a,0xa4,0x5f,0x2b,0xa1,0xc4,0xde,0x7b,0xf5,0xa2,0x6b,0x75, - 0xbf,0x51,0x1f,0xe6,0x8a,0x43,0x40,0xd2,0x4a,0x28,0x0d,0xc9,0x9a,0xdd,0x4e,0x59,0x17,0xba,0x89,0x81, - 0xb4,0x2e,0x0e,0x37,0x8f,0x22,0x6b,0xaa,0xd5,0x89,0x37,0x89,0xff,0x36,0xb4,0x37,0x8d,0xe7,0xc4,0xc0, - 0xb6,0x9a,0xae,0x4b,0xa6,0x0c,0x57,0xcb,0xe5,0x6c,0x89,0x13,0xb6,0xac,0x34,0x73,0x61,0x61,0x00,0x97, - 0x31,0xa2,0x00,0xe9,0x04,0x22,0x80,0x2d,0x5e,0x0f,0xfe,0x6d,0xb1,0xd4,0xfc,0x5b,0xf3,0xd1,0xec,0x03, - 0xc6,0xf0,0xc0,0x15,0xaf,0x26,0x76,0xf7,0x16,0x8f,0xf6,0xb9,0x4f,0x88,0x4a,0x01,0x0f,0x81,0x8b,0x74, - 0x49,0xf7,0x33,0x11,0x9a,0xf1,0x94,0xd8,0x21,0xc9,0x89,0xa7,0x60,0x75,0x64,0xcc,0x0b,0x75,0x65,0x4a, - 0xd1,0xab,0x0b,0x30,0x26,0xe6,0x9b,0x18,0x0e,0xe9,0xda,0x62,0x29,0x74,0x66,0xc5,0x35,0x70,0x8a,0xcd, - 0x1b,0xd0,0xf6,0xeb,0x07,0x08,0xcc,0x4e,0x7f,0xb3,0xe3,0x9c,0x60,0x8f,0x6f,0x76,0x2c,0xa6,0x3f,0x37, - 0x14,0x0d,0x38,0x6c,0x25,0x27,0xe7,0x9c,0x3c,0x86,0x96,0xc6,0x65,0x6c,0x12,0x6c,0x3a,0x42,0x86,0x24, - 0xde,0x63,0x5b,0xe1,0xd9,0x95,0x9b,0xcb,0x72,0x60,0x1f,0x27,0x34,0xa3,0x82,0xc9,0x99,0x78,0x8b,0x8c, - 0xe0,0xe0,0x5e,0xdd,0x75,0xf8,0xd3,0xd1,0x8e,0x30,0x95,0x96,0xbb,0x1e,0x1c,0xfc,0xd3,0x9c,0x69,0x17, - 0x34,0xfb,0x1c,0xe8,0xde,0x2d,0x07,0xe6,0x3c,0x99,0xc0,0xbd,0x79,0xf9,0x63,0xe3,0x28,0xc2,0x6c,0x7d, - 0xd0,0xa4,0x28,0x39,0x51,0xe1,0x3c,0x5e,0x15,0xf6,0xc0,0x07,0xeb,0x22,0xc4,0xe0,0xb5,0x0e,0xb7,0x8c, - 0x79,0x6b,0x7f,0xd8,0x30,0x72,0x61,0x53,0xfe,0xbd,0x61,0xf6,0x70,0xff,0xc1,0x03,0xfa,0xd3,0x0f,0xf7, - 0x3f,0xf7,0x94,0x7f,0xe5,0x4c,0x1c,0xec,0x64,0xe1,0xce,0x3d,0x64,0x3d,0x0c,0xef,0x99,0x12,0x89,0x29, - 0x51,0x0e,0xaa,0xa5,0x0e,0x73,0xea,0xb3,0xb6,0xd6,0x61,0x42,0x29,0x16,0x53,0xe2,0x7a,0x83,0xf2,0x2c, - 0x4e,0x6d,0x3f,0x79,0x92,0x5f,0xd1,0xe4,0x1b,0x8b,0x08,0xed,0xbd,0x31,0xdb,0x26,0x4d,0x37,0x16,0xaa, - 0x13,0xa0,0x9b,0xbb,0xc2,0x8a,0x75,0xe6,0x16,0x65,0xb6,0xe8,0xdc,0x18,0x85,0xd6,0x68,0x85,0xd7,0x9e, - 0xf5,0x5f,0x75,0x69,0x15,0x67,0xd9,0xd5,0x4b,0x1b,0x27,0x77,0x06,0x6d,0x03,0xb0,0xa5,0x35,0x60,0x0b, - 0xaf,0x15,0xd2,0x27,0xcc,0x2e,0x5c,0x5e,0xb9,0xf6,0xc5,0x37,0x6f,0xda,0x86,0xca,0xed,0xed,0x09,0x5d, - 0x9c,0x39,0xbe,0x89,0x77,0x70,0x3b,0x4a,0x20,0x64,0x6f,0x1b,0x98,0x8b,0xb8,0xd4,0x75,0xac,0xf9,0x36, - 0x46,0x22,0xf8,0x61,0xc3,0x51,0x58,0xfb,0x9f,0xc7,0xf7,0x71,0x83,0x26,0xd3,0xb8,0x7b,0x9e,0xea,0x86, - 0xee,0x68,0x92,0x67,0xd3,0xca,0x54,0x13,0x72,0x6b,0x33,0xea,0x2e,0xa5,0x4c,0x01,0xbb,0x47,0x66,0xae, - 0x75,0x42,0x28,0xac,0x26,0xd1,0x08,0xbf,0xa0,0x59,0xf1,0x79,0x86,0x78,0x75,0xca,0x90,0xd4,0x71,0x86, - 0x08,0xc9,0x40,0x38,0x8a,0xe8,0xb7,0x22,0x1e,0x39,0xdf,0x1d,0x1c,0xbc,0xee,0xe9,0x9f,0x3d,0x04,0x38, - 0xed,0x39,0xfd,0xaa,0xc0,0x40,0xdd,0x46,0x48,0x61,0x59,0xc0,0x08,0x6a,0xd9,0x3a,0xd7,0x09,0x4c,0x08, - 0x17,0x19,0x69,0x13,0x1a,0x10,0x9f,0xc1,0x2d,0xbd,0xbe,0x73,0x94,0x1e,0xa5,0x4e,0x3f,0xf7,0x39,0xbc, - 0x87,0xcd,0xce,0xdf,0x68,0x80,0x14,0xbd,0x4f,0x32,0xf6,0x59,0xe8,0x3a,0xbb,0xd1,0x22,0xd9,0x55,0xb7, - 0xad,0xd3,0x04,0xe1,0xae,0xb0,0xa6,0xa5,0x0a,0xbd,0x40,0x43,0xd0,0x96,0x3c,0x92,0x44,0xf0,0x3b,0x50, - 0xc1,0x66,0x06,0xf5,0x05,0x1c,0x80,0x80,0x84,0x23,0x48,0x06,0x48,0xfb,0x80,0x3b,0x9e,0x1a,0xb6,0xc5, - 0x64,0x7f,0xd2,0xc8,0xab,0xfb,0xf0,0x53,0x07,0x5f,0xd5,0xfc,0x33,0xe3,0xb7,0x34,0xa9,0xf5,0x14,0x14, - 0xb3,0xff,0x49,0xc3,0x57,0x6a,0x50,0x9f,0x38,0x74,0xa9,0xf5,0x67,0x86,0xad,0xb4,0x46,0xf5,0x90,0x6b, - 0xfc,0xf9,0x27,0x0d,0x5c,0x53,0x25,0xbb,0x6c,0x56,0xd1,0x31,0x7e,0xb8,0x8b,0xeb,0x9e,0x82,0x46,0x5e, - 0x86,0x3e,0x92,0xe4,0x81,0xfa,0xb9,0x5a,0xb5,0x69,0x22,0x55,0xa2,0x9e,0xba,0x5a,0xed,0xd5,0x88,0xa3, - 0xb6,0x3f,0x3c,0x53,0x4d,0x0a,0x79,0x76,0x6c,0xf9,0x61,0xfe,0xb0,0x91,0x6d,0x02,0xcc,0xeb,0x58,0x9f, - 0x49,0xd8,0x28,0x71,0x98,0x8f,0x09,0xdb,0x9a,0xf2,0x12,0x89,0xa1,0xd2,0x36,0x0d,0x92,0x41,0xf5,0xc3, - 0x1a,0x1d,0x42,0x38,0x53,0x9e,0xf5,0x0b,0x99,0x7a,0xf6,0x49,0x6d,0xe2,0xe6,0x76,0xac,0x57,0x78,0xb4, - 0x37,0xda,0x43,0x8a,0x9a,0xb6,0x7d,0x69,0xb6,0x0a,0x9a,0x62,0x44,0xec,0x5c,0xc8,0xa3,0xbc,0xbb,0xbf, - 0x9d,0xd0,0x54,0x3e,0x14,0xaf,0x66,0xbf,0xc4,0xf1,0xb9,0xf7,0x88,0xc6,0xa6,0x5e,0xe6,0xdd,0x7b,0xad, - 0xac,0x2b,0xf3,0x3c,0xef,0x3e,0x68,0xd7,0xd3,0x4f,0xf4,0xee,0x97,0xad,0xbc,0x99,0xbc,0xd2,0xbb,0xfb, - 0x5f,0xb4,0xb2,0x0a,0xfd,0x56,0xef,0xde,0x6f,0x77,0x58,0xc8,0x83,0xbd,0xfb,0x45,0xab,0x3b,0xc4,0xc7, - 0xa8,0x16,0x1c,0xf3,0x0a,0x61,0xba,0xfc,0xf1,0x00,0x6f,0x43,0xb8,0x01,0xfb,0x86,0x5c,0xe9,0xcf,0x01, - 0xbe,0x50,0xf9,0x9f,0x7a,0x74,0xcd,0x5c,0xa4,0xfa,0x9f,0x39,0xc3,0xf5,0xd1,0x57,0xe8,0x87,0xe9,0xda, - 0x4f,0xc3,0x3e,0xa8,0xb2,0xab,0x94,0xf8,0xba,0xcf,0x70,0xd7,0x81,0xf2,0x6c,0xab,0xd5,0x2d,0xc4,0x62, - 0x01,0xff,0xc5,0xa1,0x44,0xd8,0xad,0xdd,0xde,0x30,0xd2,0x67,0x4b,0x1d,0xa9,0x48,0x1f,0xa9,0x42,0x4d, - 0x18,0xde,0x28,0xd8,0xa3,0x7e,0x3e,0x22,0x62,0x22,0x28,0xb6,0xe8,0x8b,0xa3,0x19,0x22,0x76,0x7c,0x56, - 0x0b,0x95,0x52,0x20,0x10,0x7c,0x3f,0x2c,0xd6,0xb8,0x33,0x69,0xbc,0x61,0x46,0x8c,0x73,0x8d,0xa8,0x97, - 0x58,0xc3,0xb3,0x79,0x86,0xc8,0x2d,0xbb,0x3a,0x88,0x8f,0x67,0x15,0x63,0xa0,0x59,0xb7,0xc4,0xb9,0xdd, - 0x8b,0x15,0x2b,0x3a,0x98,0xa3,0x20,0xc9,0x27,0x66,0x29,0x8b,0xb7,0x20,0x9e,0xab,0x7d,0xf5,0xf8,0x15, - 0x2f,0x66,0x5f,0x2c,0x03,0x9d,0x5a,0x63,0xce,0x6a,0x25,0xac,0x0c,0xc3,0xb2,0xd5,0x0a,0xa8,0x44,0x61, - 0xe2,0xea,0x39,0x94,0x52,0x71,0x74,0xb5,0x2c,0x9d,0x2a,0x2c,0x5e,0x2d,0x0b,0x29,0xe0,0xf8,0x6a,0x89, - 0xc9,0xc2,0x66,0xfe,0xea,0xbd,0x98,0x74,0xc3,0x0f,0xd6,0xf2,0x55,0xe2,0xba,0x09,0x3e,0x08,0x38,0xf7, - 0x91,0x40,0xdd,0xd8,0x16,0x82,0xe8,0x16,0x25,0x5d,0x6d,0x04,0xd1,0xcb,0x7a,0x27,0xbb,0x2f,0x5c,0xc3, - 0x82,0x99,0x5d,0x2c,0x6f,0xda,0x45,0xad,0x88,0x5c,0xaa,0x5b,0xb5,0xd9,0x77,0xca,0x64,0x7c,0x17,0xf9, - 0xe5,0xd4,0x34,0x21,0x71,0x0e,0xf5,0x7c,0xcb,0xce,0xf9,0x96,0xb5,0xf9,0x9a,0x9b,0xb8,0x8b,0x6b,0xa8, - 0xcd,0xb5,0x93,0xbb,0xdb,0x08,0xbb,0x8a,0xb1,0x20,0x76,0xef,0x34,0xa6,0x23,0x69,0x12,0x0c,0xdd,0xae, - 0xb9,0x75,0xbb,0x4b,0x15,0x9b,0xa7,0x5e,0xbb,0xdf,0xf7,0xeb,0x09,0x2a,0x54,0xeb,0x7e,0x60,0x92,0xcd, - 0x70,0x42,0x67,0xd7,0xb1,0xc2,0xf0,0xf4,0xee,0x75,0x96,0xd9,0xa9,0x95,0xb9,0xdf,0x59,0xe6,0xe8,0xa8, - 0x56,0xe8,0x41,0x67,0xa1,0x95,0xe3,0x37,0x67,0xba,0x5e,0xfb,0xf7,0x3e,0xdf,0xe3,0xe5,0x6a,0xb3,0x5c, - 0xf6,0x6a,0x31,0x7b,0x60,0x16,0x41,0x79,0x39,0xa9,0x96,0x88,0x5a,0x20,0x04,0xa9,0x39,0x66,0x3c,0xee, - 0x0a,0xa1,0xde,0xe5,0x40,0xbd,0x12,0x47,0xe9,0x63,0xaa,0xef,0x72,0xed,0xa5,0xd3,0x56,0xc5,0x74,0x4c, - 0xcc,0xdb,0x0d,0x75,0x85,0x25,0x50,0xab,0xac,0x02,0xd2,0xde,0xd3,0x81,0x67,0xf5,0x91,0x23,0x48,0x1b, - 0xaa,0x6d,0x50,0x0b,0xc4,0x7f,0x4c,0xd4,0x5b,0xf1,0x22,0xa3,0x57,0xb8,0x5e,0x19,0x63,0x90,0x30,0xb7, - 0x81,0x96,0x94,0x76,0x8d,0x73,0xdd,0xbd,0x04,0x07,0xf1,0xfb,0xf2,0xcf,0x2d,0x43,0x8f,0x8f,0x4b,0xbb, - 0x18,0xf4,0x66,0x8c,0x04,0xd6,0xf1,0x3e,0x71,0x7d,0x3e,0xa2,0x6d,0x28,0xe9,0x52,0xbb,0x6a,0xbd,0x3e, - 0xa2,0x82,0xe8,0xf0,0xea,0x2a,0xf7,0x3e,0xa6,0x4a,0x4d,0xb5,0x57,0xd7,0xd4,0x2b,0xdf,0xdb,0x34,0x97, - 0x64,0xa1,0xe1,0xfb,0x23,0xba,0xa8,0xe9,0x07,0xeb,0x2e,0x3e,0xff,0x84,0x9a,0x89,0xe8,0x0b,0xeb,0xaa, - 0xcd,0xed,0xbf,0x6d,0x7f,0x2a,0xd0,0x40,0x3c,0xb8,0xd6,0x2b,0xe5,0xcd,0xd7,0xe8,0xc8,0x92,0x15,0xc4, - 0x2d,0x81,0x14,0x4b,0x01,0x82,0xcd,0x5c,0xdd,0xae,0x92,0x17,0x7f,0x22,0x99,0x55,0xcd,0xe5,0x53,0x29, - 0xac,0xe6,0x00,0xbb,0x30,0xf4,0xed,0x33,0x02,0xb5,0xd1,0x78,0x9d,0xed,0xbe,0xa6,0xf8,0x10,0xa9,0x95, - 0xb2,0x51,0xff,0x1e,0x0b,0xef,0x6c,0x39,0x3a,0x91,0x55,0x42,0x71,0x41,0x92,0x0f,0x4f,0x43,0xd0,0x5b, - 0x1d,0xb2,0xbb,0x0f,0x38,0x0f,0x73,0x66,0x09,0x1c,0x2b,0x18,0x01,0x23,0x2d,0xe6,0xd7,0x12,0x9a,0xf0, - 0xc9,0x87,0xe7,0x9c,0x2d,0xe3,0xf8,0x06,0xc5,0x38,0x02,0x64,0x5c,0xc0,0xc7,0x90,0x92,0x5f,0xb0,0x98, - 0x9b,0x26,0x14,0xdc,0xff,0x22,0x7e,0xe0,0x67,0xe9,0xcf,0x75,0x19,0x7e,0xcd,0x1d,0x7d,0x73,0x60,0x4c, - 0x7e,0xe5,0x70,0xe0,0xe0,0xee,0xef,0xed,0x7d,0x26,0x98,0x39,0x9e,0xee,0x22,0xfe,0x73,0x19,0x21,0xbc, - 0xe6,0xb0,0x75,0xed,0x56,0xef,0xd1,0x70,0x8c,0xfc,0x9f,0x7f,0xe7,0xd6,0x37,0xa3,0xfb,0xda,0x6d,0x4c, - 0xcb,0x12,0x89,0xe2,0xfb,0xd6,0x95,0xa5,0x55,0xa5,0x7a,0x04,0xc3,0xd8,0xfd,0xb5,0xc8,0x99,0x95,0x78, - 0xf5,0xb6,0xdb,0x1a,0x21,0x70,0x3b,0xa4,0xb2,0xe0,0x08,0x25,0x66,0x50,0x43,0x30,0x2b,0x52,0x80,0xa6, - 0xb4,0xb6,0x5b,0x28,0xa7,0x21,0x54,0x09,0x29,0xe9,0x9a,0xdc,0xdb,0xf3,0xbc,0x75,0x4d,0x0f,0xa0,0x7b, - 0x78,0x1c,0x79,0xc5,0xea,0x05,0x50,0xd9,0xd1,0x2d,0x9e,0x37,0xba,0x65,0xca,0x7b,0x16,0x09,0xde,0x8e, - 0xe1,0xc8,0xe1,0x1b,0x79,0x95,0x34,0x9b,0x90,0x12,0x9b,0x50,0x8f,0x93,0xd8,0xa0,0xf4,0xd7,0xde,0x50, - 0x73,0x01,0xa5,0x78,0xa5,0xd7,0xdc,0x3c,0x1a,0xdf,0xd8,0x66,0xde,0x0f,0x55,0xea,0x61,0x3a,0x96,0xc7, - 0xbb,0xe1,0x0d,0x3c,0x44,0xbe,0x5b,0x6f,0xc3,0x5b,0x8b,0x34,0x40,0x45,0x6b,0xdb,0xd8,0x8d,0x92,0x72, - 0x37,0xbb,0xc2,0x98,0x37,0x88,0xdc,0xdb,0xd4,0xa8,0xcd,0x91,0xf9,0xd7,0x0d,0x31,0xc8,0x7e,0x7c,0x5f, - 0x1e,0x43,0x8b,0x20,0xf9,0x2b,0x04,0xb7,0xb5,0xf5,0x37,0x11,0xdb,0x6a,0xd3,0x21,0xa1,0x6e,0x2a,0x81, - 0x6c,0x86,0x67,0x29,0x20,0x00,0xda,0x7c,0x58,0xab,0x08,0x70,0x46,0xf5,0x50,0x6d,0x2a,0x82,0xdd,0x5d, - 0x3c,0xde,0x28,0x6d,0x26,0x5a,0x83,0x82,0x35,0x9a,0x90,0xc6,0x2b,0x72,0x1a,0x67,0x10,0x9e,0xee,0xbe, - 0x2b,0x98,0xcf,0x12,0xaf,0xe4,0xc1,0xb5,0xd6,0x08,0xad,0xba,0xf4,0xcf,0x63,0xb0,0x26,0x42,0xc5,0x0f, - 0xaa,0x07,0xa1,0x75,0x6b,0xa5,0x36,0x73,0xb6,0x38,0xc0,0x74,0x2d,0x16,0x08,0xea,0x50,0x4b,0x30,0x81, - 0x61,0x8d,0xe4,0xbd,0x96,0x0d,0x97,0x75,0x34,0xd0,0x8b,0xb8,0xcc,0x3f,0x98,0x01,0x0d,0xcd,0x60,0xe6, - 0x51,0x09,0x3f,0x76,0x51,0xe9,0x57,0x49,0x84,0x54,0x52,0xfc,0xfb,0xd1,0xd2,0x8c,0xfa,0x0e,0x6c,0xd8, - 0xb7,0xf6,0x8a,0x5b,0xfc,0xd2,0x47,0x48,0xfb,0xd8,0xc5,0xbc,0xb9,0x8e,0x2c,0xf6,0x77,0x58,0x9d,0x5e, - 0x23,0xb7,0x6b,0x48,0x66,0x34,0xd1,0xd7,0x14,0xde,0x35,0x8b,0xd5,0xb3,0xeb,0x4f,0xa7,0xfa,0x6c,0x35, - 0x6b,0xd4,0x25,0x74,0xa9,0x16,0x27,0xc0,0x27,0x59,0x77,0x51,0x3a,0x7d,0xc3,0xf2,0x06,0x51,0x5d,0x6e, - 0x89,0xea,0x6a,0x72,0xba,0xdc,0x96,0xa6,0x19,0x21,0x5d,0x5e,0x4d,0x0e,0x53,0xca,0x1b,0x22,0xb7,0xbc, - 0xf6,0x8c,0x45,0xd9,0x46,0x8c,0xe7,0x57,0xe2,0xac,0xc0,0xcd,0x07,0x22,0x8f,0x1b,0xed,0x07,0x7b,0xde, - 0x0a,0xe1,0x76,0x45,0x08,0x37,0xba,0xa7,0x7e,0x1b,0xc9,0xdb,0xe8,0x81,0x2e,0xa1,0xc4,0x6d,0xa3,0x2f, - 0x55,0x82,0xc8,0xd8,0x46,0xfb,0x5f,0xa8,0xdf,0x5a,0xb0,0x36,0xba,0xaf,0x1b,0x11,0x69,0xda,0xe8,0x0b, - 0x34,0x41,0x47,0xb7,0x85,0x63,0xea,0xa2,0x5b,0xbf,0xfc,0xab,0x9c,0x7b,0x43,0xc4,0x76,0x33,0xef,0x4e, - 0x17,0x23,0x1d,0x5d,0xfb,0x05,0xbc,0xf9,0xde,0xb3,0x61,0xeb,0x5b,0x3b,0x58,0x17,0xaf,0x56,0xf2,0x54, - 0xc2,0x31,0x95,0x10,0xf5,0xf3,0x07,0x0d,0x61,0xa9,0x11,0x89,0x6e,0x55,0x22,0xd0,0x2d,0x5b,0xe4,0xb9, - 0x65,0x89,0x38,0xb7,0x8c,0x48,0x73,0xcb,0x92,0x60,0x6e,0x19,0x81,0xa5,0xc4,0xab,0x92,0x48,0xe3,0x9d, - 0x53,0x8a,0x6f,0x9e,0x93,0x0a,0x58,0x16,0x23,0x60,0x59,0xa7,0xc6,0xdb,0x5f,0x13,0x50,0x35,0x45,0x95, - 0x7e,0x4b,0xfc,0xf8,0x57,0xb7,0xbe,0x25,0x8a,0xbc,0x5d,0x70,0x33,0xad,0xcb,0x2f,0x37,0x6f,0xbf,0x8c, - 0xf0,0x46,0x00,0xb0,0xb6,0x7c,0x91,0xa4,0xc1,0x3d,0x7f,0x6a,0xcc,0x8c,0xac,0x9d,0xd9,0xd0,0x5f,0x6b, - 0x6f,0x9a,0x1d,0xd6,0x76,0x07,0x4e,0xa5,0x13,0x4a,0x89,0x18,0xdc,0x3b,0x1f,0x63,0x1d,0x67,0x58,0x6e, - 0x6f,0xc7,0x12,0xeb,0x26,0xed,0x87,0x4e,0xdf,0xd1,0xd4,0xb5,0x45,0x5c,0xc4,0xbb,0x5f,0xec,0x79,0x7e, - 0x22,0x49,0xd1,0x49,0x41,0xe3,0xf8,0x1f,0x5f,0xec,0x69,0x09,0x2d,0x02,0xb7,0xf6,0x9d,0xc0,0xf1,0x93, - 0x87,0xfb,0xba,0x99,0x3d,0xc7,0xf3,0x53,0x44,0x81,0x16,0x49,0x90,0x65,0xa8,0xdc,0x5a,0x3c,0x4b,0x4f, - 0x21,0xbc,0x16,0xed,0x46,0x5c,0xe2,0x4a,0xeb,0x41,0xf4,0x19,0xe5,0x3d,0xd1,0xa2,0x5d,0x8c,0x46,0xc4, - 0x5a,0x84,0x27,0x1f,0xdb,0x81,0xbc,0xe2,0x8a,0xf0,0xee,0x86,0x2a,0x8d,0x26,0x5d,0x7e,0x5e,0x2d,0x60, - 0x20,0x6d,0xa5,0xf2,0x28,0x37,0xf8,0x2b,0xb5,0xfa,0x1c,0x54,0x73,0x7a,0xb8,0xbf,0x66,0x55,0xcc,0x1b, - 0x1a,0xb9,0xa1,0x76,0xbf,0xef,0xdf,0x0b,0xc3,0x1b,0x0a,0xa8,0xa8,0x4e,0xcd,0xd9,0x21,0xd2,0xad,0xcf, - 0x31,0xef,0x88,0x04,0xd1,0x4a,0x26,0x4a,0xc1,0xac,0x0d,0xcb,0x36,0x0b,0x80,0x79,0xc3,0x38,0x04,0x48, - 0xa3,0xa1,0x93,0xf2,0xe9,0xf5,0x8b,0x4f,0xeb,0x57,0xc5,0x07,0xb4,0xfa,0x37,0xfa,0x58,0xf6,0x71,0xe8, - 0x52,0x3d,0x09,0x9d,0xbf,0x39,0xfd,0x18,0x6a,0x69,0xeb,0xff,0x03,0x7e,0x47,0x50,0x18,0xe8,0x12,0x02, - 0x00}; + 0xe4,0x38,0x9f,0x46,0xed,0xa2,0x34,0x35,0xfb,0xaa,0xa2,0x1d,0xad,0xde,0x56,0xc9,0xb1,0xf6,0x95,0x7c, + 0x9b,0x9d,0x3f,0xf9,0xb4,0x14,0x7b,0xdb,0x13,0xf5,0xa8,0x4a,0x6e,0xbe,0x37,0xe2,0xeb,0x58,0x87,0x39, + 0xf1,0xa3,0x59,0x9b,0x4d,0xc6,0x0a,0x3b,0x89,0x74,0x91,0x17,0x93,0xf9,0x6a,0x9a,0xc5,0x6f,0x09,0x3f, + 0x7f,0xb2,0x8f,0x8b,0xf4,0x53,0x6c,0xda,0x90,0xfb,0x77,0x4e,0x60,0x54,0xc8,0x34,0x7c,0xdc,0x45,0x43, + 0x93,0x94,0x36,0xd2,0xad,0x94,0x06,0xf3,0x94,0xf0,0xde,0x50,0x16,0xd8,0x5b,0xae,0x2d,0x46,0xdb,0xca, + 0x9c,0x8f,0xad,0x2e,0x7a,0x61,0x24,0x9a,0x78,0x53,0x99,0xab,0x8a,0xe0,0x90,0xb7,0xae,0xeb,0xba,0x0f, + 0xb4,0xcf,0xf5,0xce,0x72,0xb2,0x24,0x0b,0xc8,0x1f,0xb4,0x24,0x0d,0xa2,0xa7,0x4f,0x7f,0xe5,0xcb,0x5d, + 0xf7,0xe5,0x46,0x6d,0x47,0x1c,0xf0,0x71,0x1e,0x43,0xdc,0x50,0xc7,0x02,0xa3,0x4d,0xf0,0x2f,0x31,0x15, + 0x66,0x8f,0x86,0x2d,0xc9,0xb3,0x1f,0x90,0xf3,0x31,0x2e,0x4a,0x50,0x9a,0x7c,0xd2,0x03,0x83,0xa1,0xb9, + 0x28,0xf1,0xf9,0x95,0xef,0xca,0x24,0xc0,0xde,0x25,0x18,0x41,0x97,0x72,0x04,0x83,0x20,0xc8,0x27,0x18, + 0x1e,0x0c,0x3e,0xe0,0x62,0x6f,0x17,0xd9,0xbf,0x31,0x41,0x82,0xdc,0x14,0x6a,0x63,0x10,0x4c,0xa1,0x9a, + 0x18,0x31,0x06,0x5f,0xaf,0x5c,0x48,0x74,0xf7,0x49,0x3e,0xdd,0x0b,0x25,0x62,0x45,0x10,0xc7,0x88,0xb5, + 0xc1,0x81,0x59,0x02,0xa8,0x18,0x10,0x62,0x29,0x3d,0x9e,0x9c,0x8c,0x7b,0xb5,0x4d,0xc8,0xe9,0x51,0x38, + 0xad,0xe4,0xf6,0x2c,0x6d,0xa1,0x33,0x41,0x94,0x65,0x94,0x24,0x5a,0xd7,0x26,0xc9,0xb2,0x12,0xb4,0x0d, + 0x06,0x06,0x47,0x7f,0x63,0x03,0x06,0x9a,0x3c,0xda,0xcd,0x2f,0x40,0xcc,0xe1,0x5e,0x55,0xd5,0x22,0x38, + 0x22,0x23,0x6a,0x71,0x5a,0x1b,0x48,0x7b,0xcc,0x24,0xd0,0xc1,0x33,0x18,0x64,0xf4,0x15,0xf1,0x2a,0x3d, + 0x11,0x8b,0x3f,0xc7,0x47,0x3e,0x29,0x6e,0xe5,0x08,0x89,0x99,0x65,0xed,0x3d,0x33,0x82,0xd9,0x70,0xd5, + 0xe4,0xf3,0xe4,0x06,0x9e,0x9e,0xf1,0xcf,0x84,0x37,0x3e,0x35,0x04,0x20,0x88,0x26,0x0b,0xdb,0x6c,0xbd, + 0xd2,0xf1,0x0b,0x25,0x95,0xbc,0x15,0x0d,0x4e,0x16,0xdf,0x01,0x11,0x6a,0x38,0x41,0x8f,0xfd,0xb3,0x88, + 0xf8,0x99,0xb2,0x97,0x3e,0xf4,0xee,0xac,0x3e,0xeb,0x6b,0x16,0x61,0x99,0x9b,0x22,0x1a,0x31,0xc2,0xee, + 0x73,0xc1,0x8a,0x5c,0xdd,0xc3,0xd3,0xb3,0xb4,0x06,0xdd,0x86,0x6b,0x4f,0x4d,0x9a,0x5d,0xc9,0x9a,0x30, + 0x0a,0x0f,0xb1,0xce,0x6e,0xa1,0x90,0x21,0x64,0xa7,0xd5,0xc6,0x85,0x23,0x6f,0xe6,0xab,0xf3,0x9c,0xe3, + 0xaf,0xf6,0x67,0xf0,0x9d,0x7b,0x1c,0x1a,0xd4,0x78,0x44,0x66,0xb8,0xbd,0xa2,0xc5,0x1a,0x08,0xd5,0xd9, + 0x26,0xa1,0x1d,0x9b,0xa4,0xbd,0x27,0xb4,0x68,0xa1,0x47,0x06,0x81,0x18,0x24,0xdc,0xe8,0xd8,0x3e,0x69, + 0x02,0x9b,0xa3,0x6b,0xf5,0x7d,0x01,0x6d,0x96,0x77,0x65,0x19,0x73,0x6d,0xbe,0x41,0x19,0xd6,0x69,0x91, + 0x7f,0xca,0x7b,0x9d,0xa5,0x79,0xa0,0x4e,0x09,0xe3,0xbf,0x2a,0xfb,0x7d,0x5b,0x38,0x4b,0x9b,0x2c,0x39, + 0xd0,0x52,0xd9,0x43,0x62,0x90,0x05,0x5e,0x5a,0x95,0x67,0x09,0x2b,0x6e,0x3c,0x12,0x1c,0xc2,0x79,0x7c, + 0x29,0x17,0xef,0x62,0xb3,0xca,0xbd,0x86,0x78,0x62,0x39,0x1e,0x30,0x03,0x14,0x85,0xc6,0x00,0xdd,0xf8, + 0xaa,0xe0,0xc4,0x94,0xeb,0x18,0x6d,0x28,0x15,0x89,0xb2,0x9d,0xf6,0x68,0xfc,0xa0,0x08,0x64,0x8f,0x08, + 0x1d,0x30,0x20,0x75,0x87,0x7d,0x17,0x8c,0x3c,0x4a,0x22,0xf2,0x75,0x4e,0x49,0x8a,0x78,0xd5,0x34,0x44, + 0xdc,0x10,0x9f,0x7a,0x53,0x53,0xf8,0xf3,0x42,0xa7,0xed,0x6a,0x09,0x3d,0x8d,0x2b,0xb2,0x2d,0x94,0x76, + 0xd2,0xa8,0xcf,0xca,0x64,0x21,0x53,0xf4,0xa5,0x2e,0xa7,0x56,0xea,0xb2,0xc1,0x5d,0x27,0x69,0x0b,0xa8, + 0xbb,0xd2,0xc4,0xed,0x36,0x4c,0xa9,0x6e,0x33,0xb3,0x76,0x33,0x46,0x2c,0x2f,0x4d,0xe8,0x35,0x2c,0xf4, + 0x03,0xa5,0x08,0xc4,0x14,0xf2,0x4b,0xef,0xd8,0x40,0x05,0xfe,0xde,0xe6,0x35,0x91,0x32,0xef,0xcb,0x31, + 0x67,0x95,0xdc,0xe0,0xb2,0xbd,0x19,0xd9,0x0d,0xc1,0xce,0x9e,0xf1,0x86,0x73,0x33,0x6b,0x3a,0x62,0x72, + 0x32,0xbe,0x18,0x26,0xa5,0x1d,0x68,0xdd,0xef,0x70,0x29,0x6f,0xea,0xb4,0xae,0x39,0x3b,0x38,0x11,0x71, + 0xb1,0x91,0x63,0xea,0xd6,0xee,0xa1,0x67,0x9d,0x48,0x3e,0xd6,0xa7,0x24,0xf4,0x22,0x02,0x88,0x9f,0x58, + 0x19,0x16,0x1c,0x10,0x85,0x41,0x2d,0x29,0x34,0x04,0x5a,0x6b,0xd6,0x16,0xea,0xd1,0x7d,0xe6,0x48,0x36, + 0x5e,0x38,0x01,0xa9,0xa8,0x67,0xc3,0x32,0xb7,0x96,0xdc,0x20,0xba,0x65,0x5c,0x28,0x1d,0xfb,0xbc,0xd8, + 0x18,0x57,0x1f,0x8d,0xfc,0xc4,0x03,0x05,0x16,0x85,0x05,0x7b,0xbb,0xf4,0xe6,0x6d,0xb4,0xcb,0x54,0x21, + 0x2c,0x74,0x3f,0xb6,0x7f,0xd3,0x96,0xe9,0xe5,0xf5,0x3b,0xf1,0x35,0x16,0xc7,0xe8,0xdf,0xd0,0xf2,0x9f, + 0xfa,0xb0,0xae,0x2b,0xed,0x1a,0xb9,0xed,0x53,0xed,0x63,0x93,0x36,0x4b,0x29,0x04,0xbd,0xfb,0x16,0x96, + 0xef,0x54,0x31,0xfc,0xde,0x72,0xd8,0x5e,0xdf,0x1f,0x7e,0x35,0x3c,0xfc,0x42,0xc2,0xb4,0xfc,0x58,0xa9, + 0x9f,0x2a,0xf5,0x43,0xa5,0x9e,0x55,0xea,0xf7,0x4a,0x7d,0x5f,0xa9,0xdf,0x2a,0xf5,0x5d,0xa5,0xbe,0xad, + 0x38,0x9c,0x06,0xdf,0xfb,0xac,0xef,0x7c,0x55,0x3f,0x73,0x1a,0xdf,0x6d,0xa3,0x50,0x2f,0x91,0x99,0xa9, + 0x92,0x09,0x52,0x72,0xbf,0x0f,0xc8,0xc3,0x73,0x98,0x0e,0x52,0xe9,0x7f,0x77,0x6d,0xe7,0x6d,0x88,0x24, + 0x7b,0xbf,0x39,0x2d,0xcb,0xcf,0x15,0x8b,0xd4,0x02,0x89,0x68,0x0c,0xc7,0x8b,0x06,0x41,0x5b,0xf4,0x6d, + 0x41,0xba,0x50,0x20,0x8d,0xf0,0xfa,0x52,0x2e,0xd1,0x25,0x93,0x8f,0x2e,0x53,0x2e,0xdb,0xd1,0x79,0x36, + 0x8e,0x3a,0x72,0x20,0x76,0x2e,0x39,0x67,0xa3,0x7e,0xe1,0xce,0x4f,0xe4,0xb2,0xf7,0x6c,0x9a,0x37,0x30, + 0xa2,0x53,0xd3,0x2a,0x3d,0x3f,0xe7,0xa7,0x7a,0x99,0xcd,0xe7,0x5c,0x33,0xf5,0xfd,0x5f,0x5c,0x98,0x0e, + 0x82,0xf2,0x6a,0x46,0x08,0xbe,0x26,0x0c,0x46,0x4c,0x25,0xbb,0x64,0xaa,0x74,0xd5,0x94,0xb3,0x72,0xb2, + 0xaa,0xf9,0x69,0x39,0x4f,0xaf,0x95,0xee,0x10,0x07,0x1e,0xa1,0xa3,0x1a,0x76,0x7a,0x44,0xb2,0xce,0x6b, + 0x3a,0xbf,0x69,0xee,0xaa,0x4c,0x19,0xd2,0x4e,0xff,0x9a,0xf2,0xfa,0x95,0xfb,0x6c,0x5e,0xcc,0xd0,0xf1, + 0x4e,0x9c,0xcf,0x34,0xaf,0xd1,0xbd,0xa9,0xca,0x0a,0xf9,0x45,0x04,0x83,0xa2,0xa4,0x29,0xcc,0x01,0xc4, + 0xea,0x22,0x9f,0x4e,0xa9,0x6b,0x38,0x1c,0x9b,0xac,0x5a,0xe4,0x05,0x12,0x09,0xa2,0xaa,0x46,0xe5,0xf5, + 0x22,0x5d,0xaa,0xbc,0xc9,0x16,0x12,0xe9,0x64,0x5e,0x96,0x4b,0x65,0xae,0x99,0x52,0xd2,0x68,0x51,0x22, + 0x54,0x8b,0x42,0x78,0x89,0x3a,0xff,0x9d,0x50,0x54,0x59,0x5f,0xa4,0x60,0x38,0x5d,0x0b,0x45,0x89,0xe8, + 0x51,0xb4,0xce,0xd4,0xcc,0x32,0x25,0x6c,0x44,0x9b,0xf6,0x53,0xde,0x10,0x49,0x9b,0x4e,0xcb,0x62,0x8e, + 0xa8,0x2a,0xbf,0xad,0x68,0x0b,0x4e,0x95,0x76,0xad,0x9c,0x2a,0x61,0x8b,0x08,0x26,0xd2,0xc5,0x9c,0x80, + 0x41,0xd9,0x31,0xc1,0x07,0x93,0x67,0xdb,0x5e,0xec,0xc2,0xb1,0x41,0x69,0xee,0x29,0x13,0x30,0x8f,0xc0, + 0x12,0x1c,0x2b,0x5e,0x5d,0xe6,0x75,0x4e,0x25,0x11,0x23,0x2c,0x4f,0x82,0x8b,0xa6,0x59,0xc6,0xf7,0xee, + 0x5d,0x5d,0x5d,0x0d,0xaf,0xbe,0x18,0x96,0xd5,0xf9,0xbd,0xc3,0xaf,0xbf,0xfe,0xfa,0xde,0xa7,0x79,0x5e, + 0x7c,0x24,0x8a,0x2a,0xef,0x39,0x67,0x83,0xb8,0xe5,0x82,0xf2,0x15,0xa0,0x4c,0xca,0x73,0xb2,0x09,0xd1, + 0xf3,0x15,0x11,0xf6,0x45,0xdf,0xf7,0x3b,0x0d,0x6c,0x72,0xad,0x77,0xc9,0xdf,0x95,0x11,0x6c,0x72,0xcc, + 0x16,0x55,0xf5,0x7e,0x23,0x04,0x32,0x01,0xe2,0xee,0xa1,0x80,0x5d,0x9e,0x27,0x37,0xf5,0x25,0x11,0xc4, + 0xdb,0x23,0xb8,0x7f,0x70,0x70,0x70,0x8f,0xf2,0x02,0xe2,0x9b,0x9a,0x8b,0xbe,0x12,0x34,0xc6,0x7f,0xde, + 0xc3,0x1d,0xa9,0xfc,0xe7,0xe5,0x0b,0x6a,0xb6,0xcc,0x01,0x99,0x17,0xcd,0x62,0xae,0xce,0xca,0xe9,0xb5, + 0x02,0x36,0x54,0x17,0xb4,0x14,0x0a,0x43,0x53,0x88,0x50,0xae,0x64,0xd7,0x36,0x79,0x43,0x7f,0xd3,0xe9, + 0x14,0xfb,0x51,0xa5,0x55,0x93,0x4f,0xf0,0x5e,0xd3,0x9e,0x20,0x20,0x2a,0x71,0x8b,0x27,0xbe,0xc3,0xcf, + 0xa1,0xba,0xb8,0xaf,0x2e,0xbe,0x50,0x17,0x5f,0xaa,0x8b,0xaf,0xd4,0xc5,0xdf,0xd5,0xc5,0x79,0x55,0xae, + 0x96,0xaa,0x48,0x2f,0x69,0xed,0x78,0x8c,0x04,0x88,0x97,0x6a,0x4a,0x50,0x39,0x57,0xd3,0x46,0x11,0x1d, + 0x0b,0x0f,0x1b,0xa4,0xb3,0x41,0x6a,0xa6,0x96,0xf9,0x04,0x0e,0x37,0xea,0xa2,0x52,0xf9,0xe2,0x9c,0x3a, + 0x43,0x83,0xa2,0x43,0xac,0x9c,0xab,0x25,0x0c,0x1b,0xd5,0x6a,0xae,0x52,0x75,0x46,0xac,0xe4,0x59,0xa5, + 0xce,0xa6,0x39,0xfd,0x2f,0x15,0x3d,0x4e,0x08,0x3c,0x39,0x0a,0x91,0xe2,0xcb,0xec,0xa7,0x33,0xa2,0x85, + 0x17,0x2a,0x57,0x1f,0xcf,0xa6,0x54,0x41,0xf5,0x51,0xfd,0xa6,0xaa,0xa5,0x22,0x60,0xae,0x9a,0x89,0xaa, + 0x56,0x67,0xd7,0x44,0xc9,0xd7,0xe9,0x62,0xa9,0x08,0xb6,0x89,0xf0,0xaa,0x97,0x29,0xa1,0x1e,0xda,0x6b, + 0xc4,0x70,0xd6,0xab,0x33,0xfa,0xbf,0xe4,0x7b,0x6d,0xd5,0x4a,0x11,0x72,0x53,0x57,0x67,0x10,0xa2,0x13, + 0x92,0x4a,0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x64,0x3f,0x2a,0x46,0x0c,0xd4,0xd2,0x19,0x81,0x9d,0x78, + 0x83,0xc1,0x12,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x41,0x26,0x69,0x71,0x99,0x52,0x4b,0x93,0x2a,0x5f, + 0x36,0xd8,0x14,0xf2,0x40,0x24,0x37,0x0c,0xdd,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65,0xb2,0x34,0x60, + 0xf3,0x5a,0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x50,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xa6,0x04,0x34,0x67,0xd9, + 0x7c,0x4a,0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x51,0xed,0xf3,0xec,0x1c,0xb4,0xc0,0x02,0x9b, + 0x19,0xa8,0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15,0x13,0x0a,0x48, + 0x73,0x60,0x9d,0x3c,0x9d,0x97,0xe7,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b,0x9a,0xd0,0x6b, + 0xa5,0x31,0xa0,0xca,0x44,0xe8,0xa0,0xb0,0xdf,0xcb,0x2b,0x65,0x42,0x67,0x29,0x0e,0x4e,0xf6,0xdb,0xaa, + 0x04,0x1a,0x99,0x55,0xa0,0xfa,0x1a,0x40,0x0b,0x84,0x10,0x0c,0x7a,0x04,0xb0,0x2a,0x2d,0xf2,0x05,0xca, + 0x4e,0xf2,0x6a,0xc2,0xe7,0x43,0xbe,0x5c,0x12,0x80,0xaa,0xc9,0xaa,0xa2,0x1d,0x0e,0xcc,0x05,0xd4,0x57, + 0x4f,0xa8,0x11,0xca,0x22,0x00,0x95,0x28,0x3f,0x34,0xdc,0xa2,0xd9,0x9f,0xa5,0x13,0x00,0x60,0x95,0xe5, + 0xe7,0x85,0x1c,0x82,0xea,0x5c,0x9d,0xcf,0xaf,0x97,0x17,0x04,0x39,0xe9,0x79,0x06,0x40,0xce,0x78,0xf1, + 0x33,0x48,0x14,0x6a,0x02,0xea,0xbc,0xc6,0x2d,0x6b,0xfb,0x52,0x88,0x5b,0xa2,0x3f,0x54,0x21,0x21,0xa4, + 0x72,0x7e,0x7d,0x5e,0xca,0x2f,0x7f,0x07,0x52,0x40,0x89,0x2b,0xb5,0xaa,0x39,0xd4,0x06,0xcf,0x0f,0xff, + 0xe1,0x2f,0x1b,0x86,0x19,0x10,0x55,0x97,0x79,0x76,0x25,0x11,0xa2,0xea,0xde,0xbd,0x5c,0x8a,0x4d,0x7e, + 0xca,0xf7,0x87,0xd3,0x58,0x7b,0x39,0xaa,0x39,0x4f,0x8a,0xd8,0x37,0xb2,0xc4,0x83,0x1d,0xce,0xae,0xca, + 0x8a,0xd1,0x5f,0x45,0xbd,0xc8,0x68,0x23,0xa0,0x13,0x73,0xb5,0xaa,0x10,0x3d,0x7b,0x95,0x77,0x43,0x5b, + 0xb5,0xa4,0x40,0xbd,0xd6,0xbf,0xb7,0x84,0xdf,0xb2,0x17,0x29,0xeb,0x03,0x93,0x23,0x94,0x8f,0x8b,0x38, + 0x6c,0xb4,0x21,0x6d,0xe3,0x19,0xd2,0x0e,0x06,0x36,0x5e,0x9a,0x9f,0x6c,0x2f,0x1e,0x84,0x55,0x4c,0xfb, + 0x22,0x78,0x93,0x83,0x88,0x4b,0xe6,0x31,0xe2,0x4b,0x0d,0x5b,0xdd,0x78,0xf5,0xae,0xd3,0x67,0x3d,0x7f, + 0xfd,0x9d,0x7e,0xf5,0x2e,0xcc,0x73,0x84,0xa0,0x6c,0x6c,0x3d,0xef,0x69,0xf6,0x70,0x67,0x65,0xdc,0xb3, + 0x08,0x9d,0x4a,0x4c,0x51,0x59,0x12,0x4e,0xd2,0x71,0x03,0xfe,0xc4,0xc7,0xba,0x24,0x7f,0x2b,0xf6,0xaa, + 0x8f,0x58,0x44,0xbd,0xe5,0x43,0xce,0x7c,0xa0,0xcd,0x0e,0xe5,0x22,0x47,0xb1,0xd9,0x67,0x63,0xa6,0xce, + 0x78,0x4d,0x84,0x10,0xce,0xc3,0x05,0x21,0x0a,0x77,0x1b,0x17,0xd3,0xfe,0xb2,0x5e,0x1e,0x97,0x75,0x77, + 0x76,0xf6,0x0d,0x21,0xf3,0xee,0xf4,0xa4,0x83,0x8a,0x86,0xff,0x8e,0x8e,0x45,0xda,0x0d,0xfd,0x85,0xbd, + 0x02,0x1b,0x5c,0x4c,0xc6,0x01,0x9b,0x7a,0x4b,0xea,0xcc,0x0d,0xdc,0x07,0x30,0xab,0x47,0x82,0x17,0xb6, + 0xba,0xdb,0xb8,0xbc,0xa4,0xe1,0xd2,0x16,0x42,0x7a,0xe6,0xad,0x05,0x40,0x3c,0x6f,0xb8,0x14,0x87,0xce, + 0x40,0x59,0x81,0x4e,0xed,0x3f,0x66,0x3c,0x03,0x9a,0x1e,0xff,0xff,0xda,0x7b,0xf7,0xf5,0xb6,0x8d,0x64, + 0x5f,0xf4,0x55,0x28,0x8c,0xb7,0x0c,0x84,0x10,0x25,0xf9,0x92,0x49,0x40,0xc3,0x1c,0x47,0xce,0xc5,0x89, + 0x6f,0x2b,0x56,0x92,0x49,0x24,0x8e,0x16,0x44,0x82,0x12,0x22,0x0a,0xe0,0x00,0xa0,0x64,0x47,0xe4,0x03, + 0x9d,0x7f,0xcf,0x23,0xec,0x27,0x3b,0xf5,0xab,0xea,0x6e,0x34,0x2e,0x94,0xec,0x64,0xaf,0x75,0xf6,0xb7, + 0xbf,0x3d,0xf9,0xc6,0x22,0xfa,0x7e,0xa9,0xae,0xae,0xaa,0xae,0x4b,0xb3,0x67,0x86,0x51,0xa2,0x4e,0x2a, + 0x80,0x15,0xcf,0xc2,0x3f,0x43,0xae,0x86,0x63,0xcb,0xd5,0xbd,0x6e,0x0d,0x5e,0x5d,0x68,0x4d,0xd9,0x89, + 0x72,0x3b,0xe1,0x3a,0x44,0x45,0xaf,0x7d,0x44,0x76,0x59,0x24,0xf0,0x49,0xa6,0xfd,0x8c,0x69,0x05,0x59, + 0xe3,0x41,0x8c,0xfd,0x44,0x60,0x4b,0x2b,0xcf,0x61,0xce,0x98,0x68,0x2d,0x33,0x8f,0xef,0x62,0x3d,0xea, + 0xef,0xe2,0xce,0xfe,0xbf,0x43,0xff,0xd3,0x04,0xfd,0x5f,0x75,0x63,0x8e,0x4b,0x1a,0xc2,0x2c,0xa1,0x46, + 0xc7,0xfe,0x59,0xd5,0xf0,0xbf,0x4d,0xc3,0xff,0xa6,0xbd,0xf9,0x50,0x65,0x7c,0x6b,0x32,0xbe,0xa5,0x8c, + 0xd3,0x24,0xdc,0x3d,0x3a,0xbe,0xf6,0x06,0xfd,0xe3,0x9d,0x93,0x7b,0xc7,0xe3,0xf1,0xae,0x7f,0x82,0xb8, + 0x01,0x27,0xc4,0x63,0x5c,0xf3,0x8f,0x89,0xe3,0x1f,0x54,0xb5,0xe9,0xf2,0x52,0xb5,0x17,0xb4,0x89,0x87, + 0x55,0xc6,0xb9,0xc9,0x38,0xa7,0x8c,0x8b,0xa4,0xd3,0x9a,0x97,0x03,0xd6,0xed,0x06,0xee,0xa0,0xef,0xed, + 0x56,0xe1,0x18,0xc4,0xd8,0x72,0x77,0xe8,0x8e,0xb6,0x8e,0xfe,0xe5,0x8e,0x3f,0x3b,0xf6,0xbc,0xdd,0xb3, + 0x0e,0xa5,0x34,0xb1,0xd7,0x8c,0x2b,0x37,0xae,0x52,0x11,0xca,0x04,0xe6,0x45,0x14,0x8f,0x11,0x47,0x88, + 0xdd,0xaa,0x82,0xf9,0x8c,0xc3,0xbc,0x0a,0xfc,0xc3,0x40,0x54,0xc2,0x33,0x1d,0xcd,0xfa,0x5f,0x3b,0x3b, + 0xbb,0xfe,0x3b,0xfa,0x71,0x5c,0x7c,0xb6,0x95,0x5c,0xc2,0x7e,0x3a,0x4a,0xcb,0x7b,0xbb,0xfe,0xb3,0xa4, + 0x4b,0xeb,0xe1,0xbd,0x0a,0x5d,0x4f,0x80,0x12,0x4b,0xcc,0x41,0xc0,0xa8,0xe1,0xb7,0x4a,0xdb,0x5a,0xe3, + 0x9d,0x2a,0x9b,0x6e,0x2c,0x6b,0xbc,0xe7,0xbd,0x4b,0x38,0x52,0x91,0x63,0x06,0xe0,0xd4,0x82,0x0a,0xbc, + 0x49,0x5c,0xf1,0x4e,0x5f,0x7f,0x2c,0x4f,0x6b,0x3a,0x38,0x5d,0x2f,0xbc,0xaa,0x5f,0x70,0xd8,0xac,0x0d, + 0x25,0x41,0xa4,0xac,0x44,0x82,0xa7,0x7b,0x80,0x5d,0x09,0x95,0x48,0xe0,0xf9,0x2a,0xfb,0x03,0xf8,0xb9, + 0x80,0x0b,0xbd,0xe6,0xee,0xd1,0x00,0xbe,0xcf,0xc3,0xef,0xf3,0x3b,0xfc,0x37,0x4a,0xf3,0xc6,0x17,0xdf, + 0x16,0xdb,0x5f,0x23,0x80,0x04,0x3c,0x94,0xb2,0x84,0xfd,0x7b,0x1d,0x97,0xaf,0x17,0x5b,0x8f,0x65,0x1f, + 0xe3,0x9b,0x50,0x79,0xbc,0xb8,0x97,0x74,0xb8,0xd5,0xbc,0x97,0x1c,0xa5,0xe3,0x3e,0xab,0x05,0xe7,0xf5, + 0x5e,0x72,0xec,0xf8,0xd7,0x15,0x94,0x9e,0x19,0x28,0x3d,0x23,0x28,0x7d,0xdb,0x9c,0xa7,0xb2,0x08,0x8f, + 0x39,0x14,0x26,0x98,0xd5,0x80,0xd8,0xf5,0x1d,0xfe,0x74,0x7c,0xfe,0xa3,0x22,0x3f,0x57,0xe9,0x3b,0x65, + 0xa6,0xb2,0xac,0x18,0xd0,0x56,0xb6,0x48,0x5c,0x1d,0xbf,0x0a,0x23,0xcd,0x99,0xfc,0xa9,0x52,0xed,0x36, + 0x39,0x81,0xdb,0x6c,0xc6,0x95,0xb6,0xb2,0x55,0x9b,0x98,0xdb,0xf3,0x84,0x3d,0x8a,0x21,0x22,0xf4,0xef, + 0x89,0x8a,0x73,0xc9,0x9e,0x63,0x1d,0xff,0x05,0x7d,0x0b,0x81,0xc5,0x9f,0x2f,0x1b,0xd9,0xdf,0xd4,0xbe, + 0xe9,0x26,0x71,0xfc,0xd7,0xf5,0x1a,0xaf,0xec,0x4f,0x14,0x18,0x3e,0xc7,0x03,0x80,0xf1,0xd6,0xa0,0xdc, + 0x98,0x81,0x47,0xb5,0x9a,0xb1,0xc8,0x03,0x53,0xe0,0x9a,0x81,0xac,0x51,0xcc,0xc5,0x88,0xac,0x48,0x9d, + 0xd6,0xb8,0xae,0x1b,0xa9,0x5f,0xa7,0x78,0xa1,0x6c,0x77,0x6c,0x8f,0x6e,0x73,0xbf,0xf5,0x52,0xee,0x6b, + 0xd3,0xed,0xb3,0xfa,0x5c,0xaf,0xeb,0x89,0xdc,0xa9,0xc8,0x68,0x7e,0xc4,0x2a,0x8f,0x54,0xb3,0x60,0x53, + 0xe9,0x74,0x9b,0x72,0xdf,0x80,0xb8,0xbd,0x35,0x73,0x00,0x79,0x91,0x2b,0x25,0x60,0x38,0xa2,0x9d,0x22, + 0x74,0x5e,0xa8,0x78,0x37,0xff,0x0a,0x68,0xe9,0xd4,0x35,0xd1,0x3b,0x56,0xc4,0xa3,0x78,0xae,0xbf,0xba, + 0xe7,0xed,0xfa,0x3f,0x5b,0xe8,0xa9,0x15,0xe0,0x41,0xa8,0xbc,0xf7,0xd6,0x5d,0x0f,0xda,0xae,0x64,0x89, + 0xd8,0xfb,0x1a,0x75,0x01,0x15,0x57,0x2b,0x82,0x06,0xc7,0x82,0x4b,0xc4,0xc4,0x4e,0x42,0xda,0xd4,0x3c, + 0x52,0x45,0xbe,0x6d,0x24,0xc6,0x25,0xb5,0xb2,0xa5,0xdc,0xaf,0x2c,0x5a,0x47,0x44,0x68,0x65,0xe4,0xd4, + 0x19,0x05,0xd8,0x83,0x2f,0x21,0xf3,0x54,0xa2,0xaa,0x84,0xd1,0x00,0xfa,0x5a,0x94,0x27,0x1f,0x90,0x03, + 0xa3,0x20,0xae,0xdd,0x7d,0xee,0xc8,0xef,0x6e,0xcc,0xc4,0xf0,0xc0,0x88,0x08,0x3f,0xb8,0x70,0xca,0xd1, + 0xb6,0x48,0xb4,0x75,0x78,0xe2,0x61,0xd4,0x61,0x8a,0x23,0x51,0xae,0x3b,0x72,0xf4,0xab,0x79,0xe9,0x66, + 0x94,0x8d,0x69,0xf2,0x28,0xb3,0xd0,0x0e,0x19,0xab,0xf4,0x96,0x24,0x16,0xcb,0xe1,0x40,0x93,0x00,0x1a, + 0x4d,0xf5,0xfb,0x99,0x57,0xa5,0x22,0x0a,0x0b,0x31,0xad,0x11,0xc2,0x32,0xb3,0x9c,0x3f,0xd2,0x1a,0x42, + 0x13,0x68,0xa8,0xe0,0xf1,0x98,0xc6,0xbc,0x36,0x6b,0xec,0x6f,0x49,0xe8,0x04,0xf9,0xd2,0x8b,0x2b,0x4b, + 0xee,0xcf,0x2c,0xef,0xda,0xfe,0xb9,0x38,0x26,0xa6,0xbd,0x3e,0xf7,0x46,0x2e,0xb7,0x04,0xe9,0x7b,0x31, + 0x7a,0xdf,0x22,0x9b,0x91,0xec,0x9f,0x7b,0x41,0x23,0xc7,0x3d,0x87,0x74,0x7c,0x01,0x59,0xec,0x92,0xba, + 0x9c,0x61,0x51,0x4b,0x5e,0xd4,0xa9,0xac,0xf0,0x04,0x9e,0x5e,0x78,0x88,0x34,0x94,0x20,0x75,0x2d,0x9f, + 0xd0,0xa6,0xcb,0xf7,0x4d,0x12,0x59,0xfc,0x39,0x37,0xea,0x36,0x0a,0x57,0xc4,0x78,0x57,0x69,0xcb,0xa3, + 0x70,0x21,0xaa,0x7b,0xa5,0x36,0x96,0x52,0xa1,0xe9,0x05,0x4a,0x45,0xe8,0x8b,0x55,0xd5,0x4f,0x2a,0x7e, + 0x67,0xb1,0xce,0xd4,0x50,0x9b,0x49,0xc8,0xba,0xb5,0x41,0x01,0xca,0x41,0x33,0xf6,0x25,0x35,0x15,0x2d, + 0xb9,0x05,0x3b,0x73,0x62,0x22,0xd2,0xf3,0x8d,0x09,0x89,0x1d,0xab,0x44,0xe9,0xbd,0xde,0x68,0x65,0x3f, + 0x0e,0x2b,0x6f,0x1d,0x4d,0x91,0x32,0xbf,0xaf,0xf3,0x08,0x52,0x87,0xf6,0xc6,0x26,0xef,0x63,0x0e,0xc8, + 0x6a,0x5a,0x5e,0x5a,0x74,0x49,0x2b,0xc6,0x5e,0x33,0x76,0x85,0x81,0xc3,0xc4,0x8b,0x5c,0xd6,0x38,0x4e, + 0xd5,0xda,0xf2,0x93,0x13,0xf4,0x0d,0x99,0x38,0xc8,0xf5,0xea,0x63,0x48,0xb5,0xce,0xb9,0x70,0x6b,0xaf, + 0x94,0x1b,0x9b,0x58,0x3b,0xec,0xb6,0x5c,0x62,0x6b,0x1f,0x19,0xc3,0x2e,0xc3,0x37,0xaf,0xd3,0x3c,0x50, + 0x1d,0xb5,0xca,0xe4,0x56,0xe2,0x5f,0x59,0x4e,0xaf,0x65,0xeb,0xeb,0x16,0x6c,0x87,0x6a,0x50,0xd5,0x24, + 0x73,0x4f,0xa7,0x11,0x95,0x83,0xa3,0xc6,0xe8,0xef,0x5a,0x1b,0xf8,0x2a,0x4c,0x43,0x7b,0x71,0xad,0x8a, + 0xd1,0x97,0xfe,0x29,0xc5,0x7d,0xe4,0x25,0x1a,0xa2,0xba,0x36,0x76,0x61,0x30,0xad,0xa0,0x30,0x68,0x83, + 0x1b,0x77,0x82,0x9e,0xf7,0xbe,0xce,0xbc,0xa8,0xb5,0x06,0x99,0x27,0x0b,0x5d,0x4d,0x21,0x46,0x34,0x21, + 0xd4,0xaf,0x2c,0x2c,0x81,0x5f,0xd8,0x4a,0xc9,0x3c,0x53,0x14,0xaa,0x5d,0x6c,0xcb,0xa6,0x86,0xfd,0x2a, + 0xf2,0x10,0x90,0x7d,0x78,0x8d,0x00,0x9f,0x29,0x3b,0x34,0x57,0x0d,0xeb,0x4f,0xe3,0x22,0xf1,0xcf,0x75, + 0x64,0x39,0xf7,0xb6,0xfd,0x3b,0xaa,0xed,0xce,0x9f,0x84,0x09,0xef,0x41,0xe4,0x72,0xb4,0x9c,0xcc,0xaf, + 0x07,0x31,0xba,0x32,0x0b,0x87,0x6a,0xb5,0x9b,0x23,0x11,0xc0,0xc5,0x98,0x92,0xea,0x3e,0xc0,0x00,0x15, + 0x53,0x84,0x09,0x55,0x8e,0xcf,0x0e,0x75,0x72,0xb5,0xf3,0xa9,0x67,0x12,0x39,0x52,0xb0,0x57,0x6d,0x4e, + 0x15,0x20,0x5e,0x85,0xf8,0x61,0xff,0xff,0x4d,0xdb,0x47,0x0c,0x1c,0xef,0xd0,0xb6,0xe9,0x63,0x35,0xf6, + 0xcb,0xfa,0x8d,0x52,0xcd,0xd5,0xd8,0x1c,0xe4,0xe3,0x61,0x29,0x9e,0xbb,0xe8,0x0f,0x43,0xef,0xc8,0x3d, + 0xc3,0x13,0xdd,0x15,0xee,0xc5,0x00,0xd1,0x8e,0xa0,0x1b,0x64,0xe3,0xb3,0x33,0xa3,0x8a,0x8c,0x2b,0x7a, + 0xb5,0xd2,0x88,0xcd,0x33,0xe1,0x8a,0xc2,0x43,0x75,0x6b,0x9b,0x50,0xb4,0x43,0xb5,0x4e,0xde,0xc8,0xb2, + 0xa2,0xed,0x87,0x49,0x90,0xde,0xa6,0x18,0x4c,0x64,0xd3,0xce,0x8e,0x55,0x01,0xcf,0x64,0xb1,0x71,0x96, + 0x62,0x65,0x84,0xb4,0xa9,0x6b,0x57,0xdf,0x44,0x74,0x18,0xf2,0xae,0xe3,0xca,0xbb,0x03,0xa0,0x53,0x8a, + 0x10,0xfc,0xa9,0x6f,0xc8,0x33,0xc4,0xce,0xf0,0x7c,0x7d,0x44,0x6b,0xe3,0x57,0x47,0x54,0xd2,0x70,0x44, + 0x39,0x26,0x99,0xf4,0x62,0x9f,0xd0,0x52,0x85,0xed,0x45,0x31,0x4f,0x87,0xab,0x82,0xda,0x37,0x1f,0xa1, + 0x4c,0x06,0x68,0x6d,0x0f,0xd4,0x9c,0x41,0xbe,0x14,0x12,0x9d,0x8b,0x60,0x3d,0xd1,0x51,0x39,0x13,0xc6, + 0xe9,0x39,0xfe,0x65,0x9d,0x17,0xc4,0x7d,0x6d,0x79,0xbf,0xf4,0xe8,0x1c,0x26,0x35,0xff,0x99,0xda,0xc7, + 0xd5,0xd4,0x1b,0x9d,0xb8,0xb9,0xac,0x07,0x22,0x13,0x27,0x9d,0xbe,0x33,0xf7,0x0c,0xf3,0x47,0x54,0x99, + 0xf1,0xef,0xc9,0x40,0x9b,0xdb,0x9f,0x09,0xbb,0x18,0x0d,0x25,0x6c,0x18,0x2e,0x2c,0x2e,0x2d,0x5e,0x3d, + 0x09,0x00,0xe4,0xf3,0x0d,0x93,0x37,0x5e,0xd2,0xa1,0xeb,0x92,0x77,0x60,0xd4,0x2a,0xd8,0xb1,0xbf,0xa4, + 0xd9,0xf2,0xa1,0x2a,0xdd,0x25,0xaf,0xe2,0x3c,0x5c,0x56,0x4b,0x3a,0x0f,0xe7,0xc6,0x59,0x00,0x25,0xcc, + 0xb1,0x66,0x42,0xe0,0x4e,0xc3,0xbc,0x22,0x25,0x16,0x96,0x2d,0xa9,0x1c,0x22,0xb4,0x35,0xc3,0x19,0x65, + 0xd8,0x9f,0xd3,0xc6,0xce,0x69,0x63,0x85,0x93,0xaa,0x36,0x76,0xee,0xe9,0xb4,0xa3,0xf9,0x58,0xda,0xee, + 0x18,0x80,0x94,0x30,0xdd,0xaf,0x63,0x37,0x91,0x2b,0x64,0x54,0xba,0x53,0x2e,0xb5,0xf0,0x46,0x53,0xda, + 0xc0,0x85,0x45,0xcd,0x69,0x3f,0xb2,0x45,0x75,0x03,0x4c,0x7c,0x9a,0x2e,0xd1,0x40,0x7b,0xfe,0x94,0xfe, + 0xbf,0x08,0x2b,0x57,0x2d,0xfe,0x55,0x08,0x09,0x80,0x7f,0x46,0x7f,0x16,0x63,0xff,0xd4,0xa8,0x6e,0x53, + 0xd6,0x49,0x98,0x20,0xeb,0x9a,0xfe,0x9c,0x8e,0xfd,0x83,0x70,0xab,0x18,0xce,0x9e,0xa0,0xab,0xe9,0x93, + 0xf0,0x94,0xee,0x26,0xf7,0xca,0x1b,0xa1,0x7a,0xbf,0x3f,0x1b,0x07,0xb1,0x4b,0x67,0x18,0xad,0xec,0xec, + 0x2c,0xc6,0xc1,0x2f,0x94,0xe9,0x9f,0xd0,0xa1,0xfe,0x80,0xbf,0x20,0xce,0x74,0x41,0x6e,0xb5,0xdf,0x9f, + 0x8e,0x3d,0x14,0x3a,0xf3,0xaf,0xb9,0x10,0xfd,0x45,0x21,0x5d,0x9f,0xfb,0xdc,0xd9,0x39,0x95,0x42,0x57, + 0xaa,0xd0,0x95,0x14,0x3a,0x68,0xd1,0x01,0xa9,0x7f,0xa5,0xee,0x5d,0x4b,0x14,0xe7,0x9e,0x09,0x0a,0xa9, + 0x7a,0xae,0x35,0x7a,0xa6,0x86,0x77,0x26,0xc3,0xeb,0x6a,0x94,0x1b,0x90,0xa6,0xad,0xa1,0x55,0xe3,0x77, + 0x63,0x71,0x76,0x31,0x09,0x7f,0x8a,0x69,0x7f,0x66,0xfe,0x02,0xa6,0xf2,0x2e,0x08,0xfa,0x13,0x8e,0x61, + 0x3a,0x9a,0x1c,0xf1,0x8f,0x71,0x87,0xf3,0x8f,0x2a,0x2e,0xe1,0x8c,0x68,0xe1,0x84,0xa3,0x10,0x1a,0xf4, + 0x98,0x8d,0x35,0x8f,0xb0,0xbd,0xfd,0x0b,0xe8,0x9c,0xc8,0x50,0xf0,0x19,0xd1,0xb8,0x27,0xd4,0xc4,0x1e, + 0x7a,0x1b,0x45,0xf4,0x3b,0xf3,0xd5,0xfc,0x79,0x5e,0x4b,0x1a,0xe7,0x7c,0xac,0x26,0xb7,0x94,0xc9,0x21, + 0x45,0x7b,0xb4,0xed,0x9a,0xe8,0xd2,0x9a,0xa8,0x17,0xd4,0xdb,0xac,0xe6,0x3b,0x9c,0x3d,0x5d,0x40,0x89, + 0x9e,0xa6,0x48,0x00,0xd1,0xdf,0x1f,0x7b,0x12,0x9d,0x51,0x3e,0xd4,0xa1,0x9f,0xfa,0xa7,0x38,0xf8,0xd3, + 0xa7,0xa7,0xdb,0xdb,0x97,0xee,0x9e,0x2f,0xcb,0xb2,0x76,0x27,0x1c,0x2e,0x1b,0x40,0x19,0x30,0xd0,0x82, + 0xc2,0xab,0x48,0xa8,0xba,0x38,0x94,0x0a,0xe3,0x9e,0x3e,0xa7,0xbf,0x4c,0x76,0x2d,0x30,0xd9,0x0a,0x2c, + 0x41,0x14,0x03,0xfc,0x47,0x68,0x7f,0x4a,0x79,0xd3,0x2a,0x0c,0x62,0x70,0x67,0xb3,0x81,0xe4,0x6f,0x71, + 0xd4,0x1a,0xbe,0xdb,0x3b,0xca,0xa9,0x53,0xe6,0x6f,0xc6,0x0c,0x59,0x51,0xd6,0x51,0xc3,0xda,0xba,0xaa, + 0x4e,0x85,0x0b,0x61,0xf4,0x0a,0xc6,0x13,0xb5,0x4c,0x30,0x6a,0x4f,0xff,0xea,0xa2,0xac,0xf3,0x3a,0xd9, + 0x23,0x8c,0x52,0x6e,0xf3,0x47,0x39,0x01,0x47,0x85,0xfd,0xd5,0x4e,0xba,0x39,0xfb,0x53,0x35,0x03,0x38, + 0x69,0x30,0x9e,0xfe,0x04,0x31,0x9b,0xa2,0x33,0x7f,0xae,0xdc,0x7d,0x10,0x2e,0xc8,0xeb,0xd1,0x86,0xc2, + 0x6c,0xb5,0x42,0x74,0x77,0x20,0x3d,0x3f,0x17,0xd2,0xde,0x17,0x84,0xac,0xf9,0x16,0xb9,0xb8,0x6c,0xbc, + 0x6f,0xa0,0xb2,0xeb,0x9a,0x80,0x7a,0x35,0xe1,0x7a,0x06,0xe4,0xb9,0xba,0xea,0x69,0xe9,0xba,0x19,0xd8, + 0x5c,0x2c,0x09,0x29,0xb1,0x03,0x6b,0x7b,0x16,0xff,0x8a,0x75,0x35,0xcd,0x4e,0x3c,0x45,0x10,0xcc,0x3c, + 0x8f,0x39,0xf1,0xf3,0xa8,0x60,0x42,0x1c,0x54,0x77,0xe1,0x72,0x22,0xf7,0x6a,0x3a,0xd4,0x71,0xe3,0xac, + 0x11,0xa8,0xa8,0x28,0xd2,0x54,0xc4,0x94,0x5f,0x95,0x68,0x82,0x70,0xf0,0xc5,0xa1,0xf7,0x65,0x81,0xb9, + 0x81,0x8b,0x9c,0x25,0x79,0x51,0x72,0x8f,0x84,0x66,0xf6,0x86,0x57,0x4f,0x66,0x7a,0xaf,0xae,0xb4,0x83, + 0xbb,0xf3,0xd5,0x6a,0xeb,0x84,0xf8,0xc5,0xd9,0xd1,0xd5,0x58,0x71,0xa6,0x0b,0x98,0x94,0x0b,0x2b,0x7b, + 0x1e,0x9e,0xd7,0xde,0x0f,0x50,0x63,0xb1,0x5a,0x9d,0xd7,0x3b,0x26,0x2e,0x06,0x07,0x29,0xf1,0xf4,0x6a, + 0xca,0xbe,0x5e,0xda,0xae,0x56,0xce,0x20,0xcd,0x9b,0x63,0xc6,0x5b,0xef,0x08,0x17,0x7b,0x37,0x97,0x18, + 0xe4,0x54,0xee,0x16,0xe9,0x6c,0xeb,0x12,0x1b,0xcc,0x9a,0x25,0x70,0x13,0xa7,0x7e,0x6a,0x67,0x93,0x42, + 0x54,0x6c,0x71,0x78,0x2f,0x3e,0x18,0x8a,0xc0,0x52,0xdf,0xfa,0xd9,0x6b,0x4b,0x82,0xc5,0x5c,0xfb,0x07, + 0xfe,0x21,0x84,0xd4,0x17,0x88,0x34,0x9f,0x4d,0x97,0xf3,0xb8,0xf0,0xdf,0xd3,0x6f,0xd0,0x38,0x6f,0x94, + 0xf6,0xd7,0x35,0xad,0xc9,0xf5,0x93,0x45,0x52,0x01,0xf0,0x35,0x93,0x95,0x87,0x47,0x8b,0xe4,0xe8,0x7a, + 0x0c,0x6b,0x2f,0xba,0x57,0xf6,0x86,0x07,0x4f,0x2e,0xaa,0x22,0x07,0x44,0x5e,0x5c,0x1c,0x1d,0x8c,0x55, + 0x19,0xda,0x29,0x5d,0x5c,0xf8,0x0b,0x3b,0x8f,0x2f,0xe4,0x77,0xac,0x37,0x82,0x77,0x35,0xd1,0x9a,0x51, + 0xa1,0xc4,0x0e,0xac,0xdf,0xef,0x58,0xd8,0x4a,0xa8,0xb8,0xc3,0x49,0xa1,0xba,0x2d,0x7d,0xba,0x24,0x95, + 0x4f,0x26,0xbe,0xbd,0xc5,0x4b,0x0c,0xc2,0x88,0xc0,0x38,0x1b,0xd0,0x05,0x73,0xce,0x25,0xfb,0x0f,0x71, + 0x81,0xe8,0x50,0xbe,0xa2,0x27,0x16,0x21,0x0e,0x07,0x26,0x7f,0xc8,0xbe,0x9f,0x78,0x23,0x19,0x7b,0x63, + 0x03,0x3c,0xa1,0xb9,0xa6,0xbe,0x0a,0x8a,0x8e,0x7e,0x16,0xdc,0x9b,0xc4,0x53,0xd3,0xf5,0xa0,0xe4,0x4e, + 0x30,0x5c,0xf1,0x13,0xcf,0x58,0x3f,0x4b,0x53,0x77,0xb5,0x74,0x58,0x70,0xc3,0xc7,0xa7,0x9b,0x51,0x91, + 0x13,0x69,0xdf,0x1c,0x94,0x53,0x1e,0x22,0xf2,0xf3,0xe1,0x9b,0x10,0xca,0xfc,0xea,0x39,0xe6,0xbd,0x7e, + 0x84,0x72,0xdf,0x34,0xa2,0xd0,0xc8,0x33,0x8d,0x92,0x1c,0xfa,0x6f,0xc4,0xfe,0xed,0x5c,0x88,0x41,0xba, + 0xfe,0x6a,0x82,0xb2,0x73,0x9e,0xa0,0xac,0xc3,0xf9,0xe0,0x44,0x04,0xb6,0xa7,0x72,0x1f,0x9c,0x35,0xee, + 0xe1,0x73,0xa8,0xfe,0x12,0xe1,0xa2,0xf1,0x9f,0x06,0xd8,0xeb,0x50,0xa7,0x11,0x0c,0x80,0x62,0x1a,0x5e, + 0x0f,0xab,0x7b,0xf1,0x82,0xc0,0xe2,0xa2,0x8b,0x77,0xb9,0xb0,0x78,0x97,0x8b,0xb1,0x7b,0xcd,0x23,0xb9, + 0x16,0xc7,0xf7,0x3c,0xd4,0x83,0xaa,0x91,0x77,0xd4,0xc8,0xbb,0x0e,0xce,0xf7,0x5d,0xc5,0xf9,0xbe,0x63, + 0xce,0xf7,0x5a,0x20,0xe9,0x59,0x78,0xdd,0xc2,0xad,0xfc,0xa2,0x30,0x60,0x1d,0xe1,0xca,0xe4,0xe1,0x5e, + 0xb8,0x3f,0xbc,0xf7,0xe4,0x19,0xb1,0x88,0xc6,0x5e,0xe5,0x1e,0xdc,0x3f,0x23,0xe1,0xe8,0xde,0x58,0xd3, + 0xde,0x3f,0xc7,0x18,0xdf,0x35,0xb5,0xaa,0x42,0xdd,0xc2,0xb7,0x2b,0xdf,0x5b,0x60,0xf9,0xf6,0xfc,0x3d, + 0x75,0x61,0x11,0xff,0x03,0x97,0xc0,0x79,0x65,0x2d,0x26,0xfb,0xb7,0xf4,0x7c,0x9e,0x13,0x6f,0xc5,0x1b, + 0x90,0xfe,0xa6,0x9c,0x7b,0xa3,0x0e,0x5a,0xb0,0x4c,0x7c,0x75,0xfe,0x82,0xa3,0xb3,0xc4,0xff,0x90,0xf8, + 0x07,0x89,0x7f,0x98,0xf8,0x5f,0x27,0xfe,0xef,0xe9,0x48,0x4b,0xf3,0x9f,0x97,0xbe,0x16,0xac,0xe1,0xb7, + 0xc0,0x53,0xe3,0xf9,0x6f,0x4b,0xe2,0x7a,0x89,0x95,0xc5,0x79,0x76,0x3d,0x7a,0x53,0x4a,0x74,0x33,0xb8, + 0xcd,0x5c,0x07,0x37,0xeb,0xb1,0x76,0xac,0x7c,0x99,0xc0,0x8b,0xf9,0xab,0x94,0x68,0x41,0xfd,0xc8,0xd1, + 0x0e,0x2f,0x22,0xef,0xe3,0xd4,0xfa,0xe4,0x3c,0x4a,0xcf,0x62,0xc7,0x36,0x4f,0x15,0x4d,0xfc,0xaa,0x32, + 0x4b,0xe9,0x95,0x70,0x6d,0xc8,0xaa,0xbe,0x57,0x2a,0x2a,0xe2,0x8f,0x18,0x83,0xd2,0x37,0xd3,0xae,0xd3, + 0x7f,0x49,0xe0,0x54,0x0d,0xbb,0x13,0x4f,0x1b,0x0f,0xa2,0x10,0x22,0xe9,0x97,0x79,0x13,0xd6,0x51,0x78, + 0x92,0xed,0xed,0x2d,0xfe,0x4b,0x8c,0x98,0x52,0xb3,0x1c,0x7d,0x0f,0x47,0x47,0xe6,0x32,0xaf,0x8d,0xf0, + 0x17,0x8b,0xa5,0x10,0xa3,0xae,0xa9,0x12,0x25,0xad,0xbd,0xe0,0xf7,0x52,0x7e,0xdb,0xde,0x9e,0x4c,0xab, + 0x84,0x2f,0x10,0x78,0x4d,0xdb,0x9f,0x68,0xa5,0xcf,0x6f,0x4a,0xc8,0xc0,0x1c,0xad,0x39,0x62,0x46,0x47, + 0xf7,0x6e,0xe2,0x4a,0xec,0x38,0xcf,0x53,0x9e,0xbc,0x5e,0xe9,0xc8,0xb1,0x61,0x59,0x45,0x91,0xf5,0xad, + 0xdf,0xec,0xd7,0x91,0x55,0x8b,0xdb,0xeb,0xae,0x97,0xfb,0x15,0x0d,0xeb,0xab,0x74,0x53,0x21,0xcc,0x4d, + 0xa4,0xb2,0x84,0x22,0xe1,0xa5,0xff,0x35,0xcf,0xe2,0xd6,0x92,0xfc,0xf2,0x41,0xcd,0x22,0xe2,0x0e,0x8f, + 0x54,0x36,0x09,0x78,0x08,0x6f,0xc2,0xcd,0xf5,0x6a,0xbd,0x55,0x73,0xd0,0xf6,0xfa,0xde,0x78,0x37,0xad, + 0xb5,0x1c,0xea,0x37,0x4b,0xb3,0xa2,0xa2,0x4d,0x7d,0xf7,0xfa,0x0e,0x93,0x66,0x0c,0xc0,0x4a,0x35,0x62, + 0x0b,0xaa,0xe5,0xec,0xc4,0x72,0x2d,0xab,0xac,0xd5,0x2b,0x46,0xa5,0x98,0x4f,0x6f,0x0c,0x1f,0xf8,0x12, + 0x03,0x04,0xc0,0x07,0xaa,0x24,0x3f,0x8e,0x13,0x8d,0xf3,0x33,0x3e,0xb6,0xb7,0x29,0x5f,0x65,0x00,0xd3, + 0x6b,0x88,0x55,0xbb,0xc0,0x9e,0x1a,0x7f,0x22,0x78,0x95,0xc0,0x9e,0xbf,0x24,0x3e,0x4e,0x56,0x20,0x6a, + 0xb1,0xcd,0xf5,0x51,0x16,0xc7,0xba,0x31,0xc4,0x02,0xfc,0x8a,0x9f,0x46,0x95,0x6a,0x89,0xb8,0x50,0xb1, + 0x04,0xea,0x1c,0xa0,0xfe,0x84,0x56,0x26,0x4f,0xce,0xe0,0x09,0xf6,0x79,0x52,0x40,0x39,0x32,0x74,0x52, + 0xda,0x07,0xa5,0x73,0xc7,0x6f,0xaa,0x53,0xc9,0x40,0xb8,0xf8,0x46,0x12,0x9c,0x3f,0x24,0x23,0x37,0xad, + 0x8e,0x3d,0xae,0xb8,0x7b,0xd4,0xad,0x7d,0x1a,0x1a,0x95,0xc2,0x6c,0xed,0x79,0xcd,0x96,0xc2,0x7c,0x94, + 0x05,0xd2,0x73,0xa7,0x7e,0x41,0x6b,0x86,0xc3,0xbc,0xb1,0x92,0xee,0x9d,0x13,0x6e,0x0d,0x34,0x1f,0xdd, + 0x35,0xd4,0xae,0x05,0xa2,0xbd,0x7c,0x73,0x47,0x35,0x35,0x91,0xce,0x69,0x76,0x35,0xa9,0x66,0x0e,0xd5, + 0x8a,0xb4,0x63,0x73,0x15,0x43,0xc0,0xa7,0xf1,0xee,0xf1,0x31,0xd4,0x7c,0x47,0x50,0xc3,0x86,0x61,0xca, + 0xba,0x0b,0x82,0xe6,0x28,0x0f,0xbe,0xca,0x32,0x38,0xc3,0xf5,0x27,0x45,0x61,0x7e,0x03,0xb8,0x74,0x31, + 0x20,0x12,0xfd,0xdb,0x7a,0x9d,0x55,0x29,0xd6,0xdb,0xaa,0x5d,0x46,0xbf,0xab,0xda,0xa5,0x1a,0x69,0xad, + 0x87,0x5b,0xbb,0x6c,0x47,0xba,0x0c,0xb7,0x23,0x69,0x63,0xd9,0x46,0x87,0xd3,0x65,0xce,0xef,0x82,0xc1, + 0x91,0xd8,0xb5,0xf9,0x2a,0x5d,0x14,0x3b,0xc6,0x6b,0xff,0x0f,0xbd,0x40,0xb5,0xc7,0x5a,0xb1,0x96,0xfb, + 0x2e,0xa9,0x99,0xd0,0x35,0x6d,0xc1,0x5a,0xc6,0xe3,0x6d,0x9b,0x30,0xe5,0x39,0x8b,0x05,0xab,0xf2,0x4a, + 0xdf,0x1d,0xdc,0x8f,0x51,0xf8,0xaf,0x90,0x10,0x12,0xd8,0xda,0x31,0x5b,0x95,0x89,0x18,0xf6,0x06,0x6a, + 0x07,0x2a,0x7e,0xab,0xdd,0x86,0x08,0xfe,0x43,0xcd,0x11,0x0e,0xbd,0xca,0x7d,0xa5,0xf5,0x68,0x66,0xe8, + 0x6e,0xdb,0x76,0xb4,0x12,0x08,0x28,0xfb,0xb1,0x9f,0x4b,0x78,0xe6,0x61,0x6f,0x03,0x55,0x96,0xf6,0xb2, + 0xca,0x14,0x1a,0xad,0x9d,0xce,0xf9,0x09,0x28,0x2a,0xd3,0x11,0x60,0x9d,0x93,0x93,0xaa,0xbb,0x1d,0xa7, + 0x6f,0xdc,0xca,0xf5,0x9d,0x1d,0x67,0x18,0xb1,0x18,0x4e,0x94,0x6c,0xf9,0xf7,0x28,0xb2,0x02,0x9c,0x16, + 0x7d,0x5c,0x10,0xf8,0xe9,0x04,0x45,0x9f,0x65,0xb9,0x41,0xee,0x46,0x22,0xff,0xc0,0x03,0xb4,0x7a,0xfb, + 0x90,0x14,0x63,0x50,0x54,0x78,0x23,0x4e,0xe1,0x3a,0xf8,0xcb,0xff,0x4a,0xd8,0x8c,0xd0,0x95,0x07,0x44, + 0xd8,0x57,0x0e,0x94,0xa3,0x19,0x5a,0xda,0x6a,0x88,0xe1,0x2f,0xda,0xb2,0x68,0x5e,0x33,0x76,0x5f,0x62, + 0x11,0x24,0xca,0x84,0x54,0xb4,0xc2,0xce,0xe3,0x39,0xb5,0x91,0xb4,0x09,0xe1,0x3b,0xc0,0x2d,0x82,0x3c, + 0x01,0x5d,0x7c,0x5d,0x44,0x35,0xac,0xe3,0xf9,0xcb,0xed,0xed,0xa5,0xc2,0x51,0xee,0x79,0x18,0xf9,0x97, + 0xe1,0xd2,0xbf,0xc4,0x14,0x08,0xa3,0x9d,0xe3,0xef,0x6a,0x75,0x89,0xb5,0xe0,0x4f,0xa1,0xef,0xb6,0x7e, + 0x65,0x69,0x82,0xbb,0xb5,0xec,0xf2,0xf9,0xda,0x95,0xaa,0x5d,0x7a,0x56,0x2c,0xb8,0x00,0xd6,0x2c,0x5c, + 0x36,0x81,0x44,0x0c,0x46,0x26,0x3c,0x77,0x27,0x5b,0x96,0x3b,0x09,0x6b,0xee,0x27,0x75,0xe7,0x0d,0x0a, + 0x0a,0x80,0x37,0xbf,0x77,0x67,0xbe,0x13,0xcd,0x08,0xaa,0x5f,0x8a,0x7a,0x85,0x6d,0x2a,0x6a,0x95,0x44, + 0xbc,0xf4,0xba,0x1f,0xcb,0xb5,0xe7,0x6b,0xf0,0x41,0x67,0x49,0xba,0x93,0x89,0x29,0x80,0x08,0x3c,0x7e, + 0x75,0x2b,0x61,0x95,0xb8,0x35,0x9b,0xfa,0x0b,0xdb,0x6c,0x0f,0xfe,0x81,0x87,0xdf,0x43,0x1a,0xc3,0xdd, + 0x7f,0x2d,0x1a,0x23,0x0b,0xcf,0xe7,0x34,0xc1,0x58,0x98,0x3d,0x0c,0xd2,0x54,0xfa,0x0c,0x1a,0x61,0x84, + 0x16,0x9b,0x43,0xa5,0x2d,0x9b,0x86,0xf1,0xba,0x22,0x9b,0x33,0x61,0x5a,0xfc,0x4b,0x42,0x9f,0x3f,0x24, + 0x58,0x14,0xc0,0xa3,0xc2,0x1b,0xfc,0xa0,0x6f,0x21,0x18,0x60,0x58,0x6f,0x28,0x26,0x7d,0xbd,0x1f,0x98, + 0x8b,0x15,0x7f,0xee,0xff,0x26,0xbc,0x52,0x29,0x54,0x04,0x7f,0x10,0x39,0x6d,0xbe,0xbe,0x85,0x72,0x70, + 0x70,0x23,0x48,0xe6,0x87,0xa4,0x0b,0xb1,0x34,0x2c,0xdb,0x19,0x3f,0xd8,0x46,0x22,0xb2,0x75,0x12,0x28, + 0x77,0x11,0xa5,0x08,0x82,0xdb,0xed,0x0e,0x89,0x2b,0x2d,0xf2,0xf8,0xca,0x38,0x2e,0x14,0x23,0x51,0x2d, + 0x7c,0x4e,0xba,0xd0,0x16,0x7b,0x54,0xcd,0xea,0x25,0xc1,0x67,0x47,0xd5,0xa9,0x29,0x88,0x2d,0x2a,0x9e, + 0x18,0xae,0xbc,0xd0,0xa2,0xc7,0x49,0x98,0x1c,0x15,0xe3,0xe1,0x44,0xe2,0x47,0x63,0x14,0x5b,0xe1,0x44, + 0x84,0xef,0xe0,0x0c,0xd4,0x49,0x9e,0xd4,0x4f,0x32,0x21,0x8f,0x2b,0xbc,0x88,0x38,0x80,0xed,0xcc,0x58, + 0x8b,0xa6,0x47,0x5c,0x6e,0x1c,0x4e,0x7c,0xaa,0xa1,0x8e,0xf3,0xa4,0xfb,0x38,0x47,0x1e,0xe4,0x1e,0x96, + 0x37,0xf1,0x39,0x06,0xbc,0xc4,0x3f,0x33,0x1a,0xea,0xac,0x92,0x80,0xcd,0xf4,0x50,0xa7,0x61,0x7e,0x34, + 0x1b,0x0f,0xa7,0xad,0x73,0x10,0xf9,0x2a,0x8d,0x68,0xd6,0x70,0xca,0xe4,0xfe,0x59,0x5c,0x7e,0x95,0x2d, + 0x59,0xcc,0x76,0x30,0x4f,0x08,0xc0,0x7e,0xa4,0xb5,0x86,0x1f,0xf6,0xa3,0x29,0x0f,0x71,0x34,0x97,0x51, + 0x4f,0xbd,0x60,0xa9,0x7f,0xad,0x95,0x05,0xee,0xa2,0x0c,0x59,0xa7,0x12,0x72,0x48,0x6d,0x25,0x2d,0xbc, + 0xd3,0x34,0x5c,0x9a,0x48,0x05,0xba,0x44,0x46,0xb7,0xbf,0xed,0x9d,0xa3,0x65,0x7f,0xdd,0xed,0x69,0xc0, + 0xf4,0x05,0x2d,0x0e,0x96,0x83,0x59,0x8e,0x3a,0x4c,0xa6,0xa6,0xa9,0xa6,0x1b,0x2c,0x9a,0x6d,0x40,0xf1, + 0x4b,0x7d,0xf7,0x28,0x90,0x37,0xfe,0xf9,0xd9,0xc0,0xcb,0xb9,0x42,0xc4,0xe7,0x1d,0x56,0xb6,0x1c,0x6a, + 0xbe,0x58,0x59,0x32,0x9d,0x47,0xc5,0x2b,0x4a,0x77,0x63,0x65,0xa0,0xef,0x97,0x42,0x2e,0x6b,0x15,0xc3, + 0xef,0x98,0x4d,0xd0,0x5f,0x7f,0xd4,0xbe,0x7e,0xd0,0x0e,0xff,0xe1,0xbc,0x63,0x4e,0xa8,0xd2,0x30,0x78, + 0xd0,0xcd,0x1f,0x64,0xb3,0x59,0x11,0x97,0xdf,0xc5,0xc9,0xd9,0x79,0x69,0xd5,0x6a,0x2a,0x2d,0xca,0xfe, + 0xf1,0x1a,0x57,0x2e,0xc4,0x30,0x12,0xd8,0x56,0x32,0xed,0x34,0x3c,0x00,0xf1,0x06,0xe7,0x67,0x03,0xa3, + 0xf7,0x13,0xe6,0x03,0x4b,0x41,0x4a,0xa5,0x54,0x80,0xf1,0x5c,0x11,0x13,0x1c,0x74,0xba,0xcd,0xe5,0x7c, + 0x93,0xc0,0x13,0x28,0x2f,0x57,0x15,0x71,0xb0,0x07,0x91,0xcf,0x0d,0xd1,0xc7,0x5b,0xbb,0xa6,0x9b,0x7b, + 0x2a,0x70,0xa7,0x44,0x0d,0xd2,0xf1,0xba,0x3c,0xf6,0xa2,0x2b,0x80,0xd1,0x6a,0x98,0x75,0x1e,0x74,0xdb, + 0x0c,0x27,0x87,0x32,0x7c,0x36,0x53,0x07,0xe3,0xa4,0x5c,0xb4,0x05,0x37,0x6a,0xf1,0x1b,0x7c,0x39,0x2e, + 0xf5,0xe7,0x89,0x11,0x09,0x56,0xb7,0xba,0x2a,0x5e,0x47,0xf2,0x2a,0x71,0xa8,0x57,0x6e,0x82,0x07,0x33, + 0x96,0xda,0x78,0xb4,0xd7,0xd6,0x4d,0xcf,0x80,0x81,0x9b,0xb1,0x2b,0xb5,0x73,0x77,0x4e,0x4b,0xd1,0x85, + 0xf2,0xfc,0x0f,0x6a,0x03,0xd2,0x4e,0xaa,0xd9,0x38,0xc5,0xa8,0x29,0x47,0xa4,0x9a,0xb3,0x7b,0x2f,0x8a, + 0xa8,0xb6,0x2d,0x1d,0x15,0xad,0x69,0x5c,0x69,0x38,0x52,0x93,0x09,0x59,0x2c,0x66,0x76,0x76,0x0d,0x2b, + 0xf1,0xb7,0xfc,0x60,0x3f,0x4b,0xce,0x06,0x56,0x64,0xdc,0xf0,0xb7,0xdc,0xaf,0x32,0x6a,0x31,0x79,0xc3, + 0x22,0xe9,0xcc,0x82,0x50,0x2d,0xfc,0xd6,0xae,0xd6,0x88,0xc9,0x1b,0xfe,0x18,0xd7,0x2a,0xd6,0x83,0xf8, + 0xb6,0x62,0xa4,0xfc,0x5e,0x51,0x6c,0xd8,0xa9,0x02,0xa6,0x0c,0xb5,0xbd,0x03,0xc1,0x57,0x97,0xbc,0x29, + 0x54,0x0b,0x15,0x7d,0xbd,0x97,0xfc,0xa1,0xac,0x8f,0xef,0xb2,0x44,0x60,0x6b,0x6a,0x85,0x8d,0x77,0x1c, + 0x98,0x6a,0x8f,0xb8,0x3a,0x3b,0x30,0xaf,0x2c,0x7e,0x8d,0xb2,0x1f,0x24,0xdb,0xf5,0x49,0xc0,0x17,0xf2, + 0xc6,0xa2,0xda,0x48,0x42,0xda,0xdc,0x6d,0xd7,0x56,0x47,0xa2,0xb4,0x03,0x36,0xad,0xfd,0x2b,0x18,0x56, + 0x1a,0x17,0x8a,0x86,0xea,0x22,0x66,0xd8,0xab,0xe7,0x59,0x46,0xec,0xff,0x4e,0xd8,0x6a,0xd2,0x72,0x5d, + 0xa2,0x11,0x26,0x94,0x0a,0x7f,0x4e,0x82,0xb3,0x7a,0xb6,0xb8,0xa2,0xeb,0x8e,0x94,0xd5,0x56,0x94,0x67, + 0xef,0x3d,0xb6,0x6f,0x70,0xb9,0xbc,0x99,0x27,0x6b,0xa4,0x85,0x69,0xce,0xbe,0x5f,0xe2,0x7a,0x18,0xec, + 0xca,0xc4,0x5d,0x7b,0x18,0xac,0x71,0x90,0xca,0x93,0x53,0xe5,0x74,0xc4,0x15,0xd3,0x8d,0x33,0xa3,0x3f, + 0xe4,0x23,0xc2,0xaf,0xaf,0x2c,0xd6,0x2a,0xa7,0x30,0x71,0xdb,0x03,0x77,0x5c,0xf7,0xc0,0xad,0x1d,0x0a, + 0x43,0x0d,0x8a,0x96,0xe2,0x2b,0xa8,0x52,0x69,0xe7,0xf7,0xd0,0xe7,0x7f,0x5b,0x79,0x24,0x70,0xad,0x31, + 0x7d,0x0d,0xa5,0x10,0x09,0x83,0xbd,0xbd,0xfd,0x7d,0x8a,0xff,0x0f,0xe0,0x46,0x0b,0x74,0x1b,0x54,0x99, + 0xdf,0xc2,0x2e,0x63,0x4f,0x0e,0xe6,0xf7,0x89,0xff,0x2d,0x94,0x29,0x6f,0x8e,0x6f,0x5c,0x77,0x14,0x0c, + 0x56,0xc7,0xa9,0xd7,0x1f,0x79,0xc7,0xeb,0xe3,0xf5,0xee,0x99,0xff,0x4f,0x68,0xbf,0xef,0x0c,0x3e,0xeb, + 0x8f,0xfe,0x75,0xef,0x66,0xed,0x7a,0xab,0xa3,0xe3,0xf1,0xf1,0xee,0xf1,0xf1,0x98,0xf2,0x7e,0xeb,0x56, + 0x61,0xe7,0x2b,0x44,0x6b,0x6f,0xff,0x33,0xf1,0x9d,0xe3,0xe3,0x7b,0xdb,0x0e,0x9b,0x2f,0x43,0xd1,0xbc, + 0x9d,0x63,0xaf,0xae,0xf8,0x4b,0x71,0xcb,0xbe,0xa3,0x06,0x23,0xa3,0x71,0xfa,0xa9,0xef,0x9c,0x41,0x12, + 0xe8,0xff,0x0a,0x33,0x3f,0x16,0xef,0xc3,0xa7,0x69,0x70,0xe4,0x58,0x72,0x7f,0x67,0xec,0x1b,0x94,0xdd, + 0x30,0xf3,0x60,0xe7,0x5a,0x03,0x78,0x81,0x50,0x28,0x32,0x11,0x79,0x8d,0x18,0xdc,0x0e,0x45,0xb0,0x65, + 0x35,0x15,0x7e,0xff,0xee,0xcd,0x6b,0x4a,0x00,0x60,0x23,0x86,0x63,0xaa,0xdd,0x98,0x87,0xb9,0x55,0x11, + 0x8e,0x72,0x21,0x4a,0x81,0x52,0x0c,0x12,0xbe,0x4a,0x98,0xe0,0x08,0x73,0x6c,0x7f,0x9c,0xc2,0x3d,0x6b, + 0x07,0xf7,0xe9,0x38,0x96,0x6a,0x7f,0xd5,0x25,0x1e,0xcb,0xfa,0xa1,0x3d,0x9f,0xc0,0xe9,0xd7,0x4a,0xf4, + 0x1d,0x1f,0x56,0x9a,0xb5,0xbe,0x54,0xad,0x89,0x29,0x6f,0x67,0x4a,0x85,0x92,0xe8,0xe2,0xff,0xe8,0x5e, + 0x36,0x7e,0x22,0xf9,0xf4,0x65,0x63,0xf4,0xdf,0x58,0x36,0x6e,0xaa,0xb9,0x6c,0x17,0x09,0x56,0xae,0xbe, + 0x74,0x52,0xd9,0x5a,0x3a,0x4e,0xf8,0xb3,0x4b,0xc7,0xdd,0xd6,0x96,0x8e,0x53,0xac,0xa5,0xe3,0x6f,0xbd, + 0x74,0x76,0x5f,0xa6,0x16,0xca,0xbb,0x52,0xa1,0xca,0xed,0xc3,0xea,0x40,0x16,0x2f,0xce,0xf8,0xb1,0x09, + 0x96,0x7f,0x6c,0x05,0x0a,0x73,0xca,0x6c,0xae,0xac,0x1a,0xc5,0x74,0x4f,0x59,0x63,0x8a,0x85,0x61,0x52, + 0x30,0x66,0xc6,0xd3,0x13,0x4d,0xc5,0xb2,0x17,0xad,0x99,0x3e,0x8a,0x81,0xe4,0xf5,0x29,0xdc,0x0e,0x95, + 0x99,0xd8,0x4c,0x2b,0x0b,0x47,0x98,0x7f,0x96,0x30,0xed,0xd4,0x62,0xce,0x05,0x9b,0x38,0xc2,0x3c,0x90, + 0x0d,0x1d,0xc5,0xf4,0x31,0x57,0x2d,0xe1,0x70,0xc9,0x08,0x3b,0x4d,0x50,0x65,0xc8,0x95,0xb1,0x21,0x5b, + 0x4c,0x76,0x1a,0x56,0xa2,0xdb,0xba,0x65,0x23,0xdb,0xa2,0x2a,0x43,0x54,0x6d,0x49,0xd9,0xb2,0x48,0x55, + 0x36,0xae,0x6c,0x62,0xd9,0x61,0xe1,0x8a,0xb1,0x6a,0xfb,0x57,0xe9,0x87,0x16,0x8b,0xed,0x6a,0x95,0x0d, + 0x26,0x4c,0x58,0xb5,0xf1,0x24,0x2f,0x53,0xd3,0x1c,0x53,0x96,0x4d,0xcc,0x53,0xd5,0xe2,0x89,0x21,0x85, + 0x36,0xb5,0xac,0xac,0x40,0x1b,0x4b,0xc4,0x96,0xb9,0xb4,0x50,0xbc,0xd6,0x50,0x03,0xcc,0xc2,0xdd,0x7f, + 0x1d,0x17,0x9f,0xb9,0x47,0xf4,0xaf,0x73,0xff,0xc9,0xd3,0xe3,0xdd,0x70,0xdc,0xf7,0x08,0xd7,0x20,0x31, + 0xf4,0xf0,0xef,0x28,0x70,0x28,0xdb,0x19,0x7f,0x46,0x68,0x67,0x75,0x9f,0x7e,0xde,0xa7,0x9f,0xf7,0xfb, + 0x2b,0x55,0x27,0x7c,0xf2,0xf4,0x3f,0xa9,0x8a,0xe7,0x8d,0x76,0xfd,0x24,0x0b,0x9d,0xa3,0x68,0xe7,0x8f, + 0x67,0x3b,0xbf,0x9d,0x8c,0x8f,0x8e,0x8f,0xaf,0x8f,0x8f,0x77,0x8e,0x8f,0x07,0xe3,0xcf,0x1c,0x3f,0xa3, + 0x2c,0xe0,0x30,0xa7,0x9f,0x64,0x7d,0xc2,0x74,0x81,0x37,0x92,0x9f,0x9e,0xe3,0x47,0x59,0x68,0x21,0x3b, + 0xe7,0x5f,0x4f,0x9c,0x7e,0x96,0x11,0x87,0xa6,0x07,0x77,0xbc,0x3b,0xf2,0x9e,0xee,0xd2,0xbe,0x34,0x8a, + 0x1d,0x1f,0xef,0xa2,0x64,0xdf,0x39,0xfa,0xd7,0xd3,0xf1,0x67,0x4f,0x69,0x3e,0x73,0x54,0x79,0xb2,0xf5, + 0xfc,0xcd,0xc1,0xe1,0xaf,0x6f,0xbf,0xee,0x21,0xbd,0xff,0x74,0x37,0xf1,0x97,0x92,0x0e,0x0b,0x9e,0x99, + 0xfc,0x3c,0x3e,0xda,0xf5,0x17,0x19,0xde,0x8e,0x9d,0xf7,0x8e,0xc1,0xc2,0xbb,0xef,0xdd,0x01,0x4d,0xe4, + 0xcc,0xaf,0x1f,0x79,0x2a,0xe8,0x80,0xb9,0x2f,0xd5,0xd3,0xcb,0x79,0xe6,0x5f,0x65,0xc4,0x4a,0xfb,0x67, + 0x99,0xff,0x21,0x23,0x08,0xf2,0x4f,0x32,0xff,0x3a,0xf3,0x0f,0x32,0xff,0x30,0xf3,0x2f,0x32,0xff,0x7d, + 0xe6,0xbf,0x63,0x10,0x54,0xf6,0xbb,0xca,0x30,0x5a,0xbf,0x7a,0xf0,0x25,0xf8,0x2c,0xc3,0xcb,0xf1,0x3d, + 0xfa,0xd7,0xd9,0x9e,0x97,0x43,0x27,0x70,0x9e,0xd0,0xa1,0xdc,0x3e,0xe3,0x9f,0x4f,0xf1,0x13,0xf0,0x49, + 0x1f,0xf7,0x9d,0xfb,0xf4,0x11,0x5d,0x2e,0x90,0xb1,0x8d,0x8c,0xbf,0xed,0xef,0xe1,0xf7,0x71,0xca,0x1f, + 0x5f,0xf2,0xef,0xd2,0x59,0xfb,0x6f,0x68,0x6e,0xdb,0xb4,0xc8,0xc4,0x00,0x9f,0x95,0x2b,0x54,0x5f,0x51, + 0x35,0x6f,0x48,0x13,0xfa,0xba,0x33,0x6b,0x45,0x2d,0xad,0xfe,0xf6,0x25,0x97,0x78,0xcb,0x03,0x86,0xe6, + 0x43,0x7d,0x9c,0xcf,0xb3,0x6e,0xd2,0x82,0xb0,0xcc,0xdb,0x4c,0x7c,0x28,0x1c,0xb3,0x9c,0xa5,0x84,0xe7, + 0x22,0xff,0x77,0xac,0xef,0x3f,0x56,0xff,0xba,0xda,0xc9,0xd2,0x60,0xd7,0x7f,0x81,0xcf,0xab,0x9d,0x15, + 0x92,0xe8,0xf3,0x25,0x7d,0xba,0x83,0xcf,0xe8,0x42,0x2d,0xfa,0x34,0x9a,0x24,0x5d,0x65,0x33,0xfe,0x3d, + 0xf8,0xcc,0xdb,0xf5,0xbf,0xa1,0x5c,0x9f,0xe0,0xca,0xa7,0xeb,0x76,0x4c,0x50,0x46,0x25,0xec,0x4f,0x6f, + 0x74,0x6f,0xd7,0x7f,0xcd,0x50,0xe1,0xae,0x8e,0xbd,0x7b,0x34,0xe8,0x57,0x19,0x9b,0x87,0x7d,0x46,0x1f, + 0xfe,0x8f,0xc8,0x09,0xd0,0x33,0x8b,0x9e,0x77,0xfd,0xaf,0x28,0xe1,0x78,0x70,0xf4,0xaf,0xc1,0xb8,0x4f, + 0x45,0x7f,0xce,0x3a,0x8d,0x77,0xdc,0xef,0x93,0xf0,0xfb,0xe4,0x0e,0x43,0x25,0xaf,0xd2,0x86,0x08,0x63, + 0xff,0xfb,0xc4,0x36,0x4e,0xa4,0x4b,0xf8,0x17,0xf4,0xfc,0xfe,0x72,0x9e,0x16,0xc1,0xeb,0x77,0xc7,0xd3, + 0xfe,0xae,0xff,0x13,0x52,0xf8,0x37,0x8d,0xe3,0xbb,0x2c,0x3c,0xfa,0x35,0xa1,0x3b,0xc7,0xbf,0xa1,0xe5, + 0x3d,0xbc,0xe5,0x6e,0x11,0x59,0x92,0xf6,0x2a,0x21,0x4f,0x43,0x9a,0x85,0xe1,0xc7,0xfd,0x57,0xd1,0x82, + 0x45,0xb2,0x47,0xce,0xd5,0x0e,0x3f,0xa6,0x38,0x63,0x48,0x67,0xf1,0xc9,0x93,0x06,0x41,0xe8,0x8c,0x57, + 0x2b,0x4a,0x51,0xbf,0xb5,0x6a,0xa8,0xba,0x6d,0x38,0x11,0x9e,0xbb,0xe4,0xe6,0xba,0xda,0x49,0x66,0xb2, + 0xcd,0x59,0x98,0x8c,0x1c,0x6a,0x8b,0x4e,0x25,0x0e,0x65,0x40,0x2c,0x62,0x14,0x0a,0x4d,0xae,0x8b,0xe2, + 0x39,0x57,0xd9,0x2d,0xd7,0xd2,0x4c,0x1b,0x93,0xf0,0x57,0xa6,0xc8,0xff,0x59,0xb2,0xaf,0x2c,0xd6,0x36, + 0xe2,0x0e,0x7d,0x71,0x9d,0x71,0x9a,0xbd,0xa7,0xbe,0xbf,0x45,0x3a,0x94,0xf6,0x41,0xc3,0x4e,0x08,0x41, + 0x2b,0x72,0x6f,0x90,0xcc,0x08,0x47,0x38,0xfd,0x9c,0xfa,0xa7,0xe9,0xdf,0xd7,0x55,0xee,0xd3,0x21,0xf7, + 0x7f,0x43,0xa5,0x9b,0xf8,0xfd,0x22,0x40,0x39,0xc1,0xdf,0xc1,0x44,0x9d,0xc7,0xb9,0xea,0x97,0x06,0x35, + 0xc7,0xa0,0x68,0x75,0x65,0x40,0x25,0x27,0xa8,0x21,0xe4,0xd1,0x34,0xc9,0xa4,0xff,0x39,0xfa,0xaf,0x9a, + 0xb4,0x7b,0xe5,0x52,0xdc,0xa5,0xf4,0x31,0x57,0x7d,0x2c,0x55,0x1f,0xda,0x67,0x51,0xe9,0x2e,0x9b,0x5d, + 0x51,0x82,0x2c,0x3a,0x8c,0x1f,0xbe,0xc5,0x77,0xad,0x97,0x44,0xb5,0xb8,0x84,0x7b,0xfc,0xd1,0x64,0x80, + 0xa5,0x43,0x28,0x3a,0x50,0x3a,0xf2,0x45,0x0b,0x00,0x27,0xd4,0xe0,0xec,0xc6,0xfe,0x1f,0x84,0x19,0xa8, + 0x1a,0x71,0x0c,0x00,0x3b,0xc8,0xef,0xf5,0x0b,0xf7,0x77,0x99,0x5f,0xb1,0x12,0x81,0x7a,0x54,0xbb,0xeb, + 0x19,0xcd,0x7e,0x43,0xcd,0x04,0xb6,0xd8,0xbb,0x9f,0x06,0x2b,0x7e,0x7b,0x15,0xf7,0x86,0x86,0x17,0x31, + 0x32,0xf4,0x52,0x29,0x73,0xf9,0x2a,0xb4,0x6e,0xf5,0x7e,0x99,0x79,0x5b,0xdd,0x3d,0xdf,0x67,0x15,0x81, + 0x7b,0xda,0x03,0xc7,0xcf,0xd1,0xbc,0x17,0xf6,0x1a,0x91,0xd5,0xd5,0x93,0x82,0x3c,0x62,0xde,0x63,0x07, + 0xb2,0x2a,0x62,0xa3,0x79,0xd0,0x34,0x8d,0x67,0x95,0x79,0xfc,0x40,0x37,0xba,0xf6,0xf0,0x06,0xea,0xda, + 0x65,0xd0,0xeb,0x15,0xf7,0xe5,0x9c,0x88,0xbb,0x17,0xa8,0x04,0x65,0xbd,0x11,0x55,0x93,0x84,0x5e,0x40, + 0x3f,0xd5,0xd3,0x9b,0x34,0x78,0xbf,0xef,0x72,0x0c,0x06,0xb1,0xa3,0x1f,0x39,0x27,0xa9,0x4b,0xf9,0x38, + 0x03,0xf4,0x07,0x42,0x22,0x02,0x01,0x67,0x98,0xda,0x2f,0x9a,0x50,0xa0,0xef,0x3b,0x3d,0xa7,0x1f,0x95, + 0x08,0x75,0x53,0x1f,0xbb,0x7e,0x54,0xa5,0x4e,0xeb,0x0b,0x10,0xd4,0xbf,0x09,0x5f,0x3a,0x9e,0xe1,0x8a, + 0xd8,0x6c,0xa7,0xb2,0x09,0xad,0xf0,0x40,0x46,0x18,0xd6,0x1c,0x1f,0xfa,0x8e,0x36,0x2d,0xb9,0x35,0x09, + 0xda,0x62,0x39,0xef,0xb2,0x06,0xde,0x6a,0xe5,0xa0,0x1f,0x9c,0x69,0x85,0x07,0xf2,0x65,0xbc,0x53,0x65, + 0xe2,0xd3,0xa1,0x63,0x2d,0x99,0xb3,0x08,0xa7,0xba,0xca,0xe5,0x6f,0x67,0xf8,0x1f,0xb1,0xac,0x80,0x38, + 0xc1,0xf1,0x9d,0xba,0x29,0x89,0xd3,0x27,0x36,0xc5,0x1b,0x9d,0x24,0xf2,0xcb,0xa7,0x23,0xd4,0x67,0x3e, + 0xdc,0xe9,0xbb,0xd2,0x3e,0xc6,0x3e,0x72,0x02,0x55,0x92,0x96,0x37,0x38,0xf9,0xb7,0x29,0x1c,0x21,0x89, + 0x98,0xbc,0xfa,0x32,0x3b,0x02,0x45,0x51,0x28,0xc5,0xee,0x81,0x7b,0xad,0x2d,0x36,0x25,0x4d,0x42,0x24, + 0x0f,0xd4,0xb8,0x46,0xae,0xb4,0x85,0x6e,0x88,0x43,0xe8,0x30,0x86,0xa5,0xe6,0x14,0x52,0xbc,0x77,0xef, + 0x8a,0x1a,0x76,0x65,0xcb,0x65,0xbc,0x4e,0x90,0x79,0xdc,0x51,0x12,0xd2,0x4c,0xa8,0x28,0xfd,0xbc,0xe2, + 0x46,0xec,0x4e,0xbc,0x1b,0x2a,0xf0,0x64,0x8f,0xd1,0x25,0x8d,0x8b,0x06,0x60,0xc2,0x6d,0x1f,0x51,0xf9, + 0xb1,0x27,0xba,0x2f,0x28,0x45,0x0b,0x50,0x2b,0xa6,0xdd,0xbf,0x50,0x96,0xa7,0xeb,0x54,0xe9,0x94,0xda, + 0xdf,0x87,0x1e,0x81,0xd4,0x37,0xf0,0x75,0x6f,0xc2,0x70,0xe8,0x7c,0x1c,0xb4,0x08,0xa6,0xfb,0x8b,0xa0, + 0xd2,0xda,0x6e,0x6b,0xb3,0x5c,0xaa,0xd3,0x5a,0x34,0x84,0x6e,0xa8,0xef,0x1e,0x0f,0x3e,0xfb,0x18,0x10, + 0x07,0x08,0x5a,0x3a,0x21,0x1b,0xb1,0x4a,0x03,0x5f,0x11,0x5e,0x63,0xff,0xf1,0xb8,0xbd,0x24,0x6a,0x30, + 0xfc,0x6e,0xab,0x79,0x21,0x00,0x12,0xec,0xb8,0xe9,0x5a,0xda,0x92,0x55,0xc1,0xa0,0xa0,0xdb,0xe7,0xcf, + 0xc3,0x6c,0xa4,0x47,0x19,0xa8,0x0c,0xe8,0xa0,0x11,0xf4,0x06,0x6a,0x54,0xfe,0x32,0x6c,0x1c,0x6b,0x59, + 0x9f,0x21,0xd0,0x75,0x77,0x9e,0xb2,0x1a,0x87,0xc7,0x12,0x29,0xc3,0x0b,0xb4,0xe4,0x95,0x19,0xca,0x9b, + 0x15,0xaf,0xc8,0xd2,0x1b,0x4e,0xa8,0x00,0xdd,0x76,0x00,0xab,0x5a,0x3b,0x4a,0xcf,0xc4,0x3c,0x52,0x0e, + 0x9d,0xfe,0xcc,0xf3,0x65,0x27,0xa4,0x7f,0xdf,0xd1,0xe7,0x47,0xad,0xf6,0xdc,0x9f,0x55,0x92,0x15,0xb7, + 0x58,0xad,0xa0,0x30,0x2d,0xfb,0x70,0x3a,0x5f,0xd2,0xed,0xe4,0xd4,0x9f,0xae,0x1c,0x6d,0x2e,0x58,0x6d, + 0xc4,0xd6,0xd7,0x69,0x5d,0x4c,0x48,0x98,0xb4,0x13,0xf7,0x9b,0x57,0x58,0xa6,0x11,0x5b,0x8c,0xf1,0x95, + 0x68,0x30,0xc8,0x70,0x2d,0x12,0x09,0xc0,0x53,0x60,0xd8,0x52,0x82,0x07,0xbf,0x66,0x9e,0xe7,0xf6,0x26, + 0x0c,0xd1,0xd5,0xd9,0xc0,0x9a,0x18,0xcb,0xb7,0x44,0x4f,0x45,0x5d,0x2e,0x29,0x40,0xc8,0x2a,0x07,0x5c, + 0x10,0x56,0x12,0x57,0x84,0x72,0x31,0x51,0xed,0x95,0x9c,0x34,0xf8,0x2d,0x87,0xc3,0x9d,0xaf,0xe2,0x97, + 0xf1,0xac,0x7c,0xb3,0x88,0x53,0x14,0x29,0x33,0xbf,0xb6,0x14,0x41,0x91,0xf8,0x0d,0x59,0x68,0xf0,0x63, + 0xec,0x5b,0xc2,0x83,0xef,0x32,0xe2,0x1f,0xa6,0xcb,0x49,0xb7,0xca,0x0d,0xc7,0x72,0xe4,0x53,0xae,0x03, + 0x64,0xe9,0x90,0x7f,0x1e,0x7b,0x84,0x18,0xfc,0x9e,0x25,0x04,0x26,0x3e,0x56,0xe4,0x87,0x6e,0x12,0xb5, + 0x07,0x47,0x2f,0x80,0x76,0xbe,0xb3,0x01,0xff,0x90,0xac,0xfb,0xfa,0x24,0xf8,0xc4,0xbb,0x24,0xa9,0x72, + 0xe7,0xe1,0x9b,0x87,0x31,0x89,0x2e,0xd4,0x77,0xe3,0x11,0x4e,0x6c,0x0c,0xcf,0xa8,0x10,0x18,0xfd,0xdb, + 0xb0,0x7c,0xc7,0xd7,0xf7,0x4e,0xc6,0xfd,0xd5,0x31,0x51,0xd8,0xde,0xf8,0xb3,0xd1,0xb1,0x07,0x76,0x2f, + 0x7c,0xba,0xfa,0x97,0x1e,0x01,0x7d,0x1e,0xbb,0xbb,0xfe,0xf7,0xaa,0xc6,0x11,0xb1,0x75,0xc4,0xdc,0x9d, + 0xdc,0x1b,0xa3,0xea,0x18,0x9c,0x21,0x51,0xd7,0x8d,0xc4,0xd5,0xf1,0xd1,0x7d,0xa2,0xef,0xef,0x8f,0xe9, + 0x87,0x43,0x3f,0x1c,0xfc,0x20,0x32,0x18,0x7f,0x9a,0x65,0xc7,0xde,0x67,0xd4,0x2c,0x51,0xee,0xdf,0x82, + 0xd4,0x29,0x26,0xc1,0x83,0xbf,0xc3,0x99,0x51,0xf0,0xa5,0xa8,0x59,0x04,0xfb,0x0f,0x7d,0x59,0xef,0x87, + 0x0f,0xfc,0xe5,0x22,0x78,0xf8,0x05,0x71,0xc8,0xb3,0x32,0x78,0xf8,0x77,0x3f,0xc7,0xeb,0x49,0xf0,0xf0, + 0x4b,0x1f,0x5e,0xb0,0x83,0x47,0x7b,0xbe,0x3c,0x60,0x06,0x47,0x5f,0xf8,0x8f,0x3e,0x27,0x26,0xe4,0x9f, + 0x59,0x97,0x5f,0x2e,0xa0,0x9c,0x3e,0x80,0xc7,0xf2,0x99,0x35,0x24,0xb6,0xe9,0xb7,0x0c,0xc2,0x20,0x82, + 0x07,0x7d,0xa8,0xf1,0x01,0x00,0x89,0xce,0x22,0x11,0x21,0x0e,0xa1,0x51,0xc1,0x79,0xa6,0x8c,0xfa,0x7e, + 0x2e,0x0f,0x8e,0x5c,0x04,0x71,0xc9,0x82,0x7f,0x66,0x6e,0x1d,0x37,0xf4,0x08,0xe3,0xf4,0x54,0xca,0x64, + 0x99,0x63,0x93,0x0e,0x39,0x83,0x0e,0xf0,0xa4,0xcc,0xe7,0x5c,0x63,0x4b,0x17,0xa0,0x84,0x1f,0xa0,0xa1, + 0xeb,0xb3,0xef,0xd0,0x5a,0x1e,0xa7,0x48,0x66,0x34,0xaf,0x67,0xd1,0xb7,0x64,0x40,0x5e,0x50,0xcb,0x41, + 0x82,0x64,0xf1,0xda,0x21,0xeb,0xbe,0x78,0x85,0xba,0x0f,0xc2,0x48,0x4a,0xf5,0xb6,0xb7,0xf5,0x08,0x25, + 0x8f,0xc7,0xbc,0x87,0xf6,0x92,0xe9,0x74,0x1e,0x7f,0x52,0xb5,0x7d,0xc8,0x15,0x78,0x7f,0x3e,0xa5,0xd6, + 0x03,0xc0,0xff,0xaf,0xb4,0x11,0xc4,0x35,0x36,0xfd,0xb1,0xc0,0x0d,0x5c,0x15,0xd5,0xae,0x63,0x63,0x4f, + 0xce,0x64,0x63,0xfd,0x1a,0x86,0x58,0xc3,0x5b,0x49,0xda,0xf6,0x83,0x83,0xe6,0x38,0x7c,0x5e,0x65,0x2d, + 0x54,0xb5,0x74,0x4a,0x2d,0xa5,0xd4,0xd2,0x7d,0xc8,0xbf,0xe8,0xbc,0xf5,0xc1,0x7c,0x57,0xad,0xe2,0xee, + 0xb3,0x28,0x69,0x38,0x3a,0xaa,0xd4,0x11,0xf1,0x18,0x36,0x12,0x52,0x27,0x50,0x34,0x93,0x77,0x4b,0x71, + 0x8e,0x3e,0xed,0xf8,0xaa,0xbc,0xe3,0xa9,0x31,0x4f,0xe6,0x59,0x74,0x81,0xb8,0xba,0xff,0x91,0xb5,0xbd, + 0x9e,0x66,0xc6,0x59,0x26,0x7f,0x42,0x12,0x49,0x77,0x22,0xfe,0xac,0x56,0xbf,0xa9,0x44,0x23,0xbc,0x2c, + 0xc2,0x5f,0x21,0x86,0xd7,0x8a,0xe9,0x8e,0xc9,0x38,0x20,0x8e,0x41,0x7b,0x70,0xc7,0x3b,0xe3,0xb7,0x71, + 0x8a,0x08,0x7e,0xf5,0xd2,0x4a,0xea,0x68,0xca,0x19,0x8e,0x23,0xbc,0x72,0x59,0xd1,0xe2,0xd7,0x8c,0x4d, + 0xa3,0x4d,0xba,0x67,0xa2,0x77,0xd5,0x10,0xe8,0x6a,0xf5,0x3e,0x1d,0x2a,0xdf,0xc8,0x1f,0x4e,0x63,0x13, + 0x88,0xb1,0x63,0x23,0xb7,0x8c,0x19,0xaf,0xf2,0x8f,0x99,0x4e,0xe2,0x17,0xb0,0xd6,0xe2,0xaf,0x66,0xc0, + 0x41,0xf8,0xe8,0x8e,0xa3,0xd0,0xb5,0x85,0x42,0xc7,0xc7,0xa7,0x4e,0xdf,0x99,0x12,0x0e,0x9f,0x41,0x00, + 0x47,0x40,0x5f,0x22,0xa0,0x2e,0x2d,0xf2,0x07,0x76,0xcc,0x36,0x81,0xf0,0x0f,0xd7,0x9e,0x7f,0x9d,0x94, + 0xe7,0x7e,0x74,0x1d,0x25,0xa5,0xcf,0x86,0x01,0x3e,0xfb,0x40,0x57,0xca,0xf3,0xfc,0x0c,0xe4,0xb3,0xe3, + 0x52,0x9f,0xe3,0xd2,0xfb,0xd7,0x84,0x56,0x63,0xff,0x03,0xa4,0x7e,0x0a,0xd9,0xf8,0xc4,0x9c,0x65,0xf0, + 0x76,0xc8,0x9e,0x58,0x7c,0x99,0x81,0xf6,0x00,0xa6,0xfd,0x2e,0x8a,0xbb,0x50,0x62,0x63,0x24,0x44,0x3d, + 0x3b,0x41,0x4b,0xd2,0x25,0x5c,0xf7,0x9c,0x2e,0xcf,0xce,0x20,0x26,0x54,0xab,0x50,0x05,0x5d,0x71,0x94, + 0x9f,0x1a,0xdc,0x09,0xea,0x76,0xa0,0x69,0xad,0x30,0x35,0xaf,0xcf,0x33,0x94,0x20,0xc1,0x8d,0x39,0xcb, + 0xa0,0xc4,0xef,0x28,0x2b,0xb0,0x77,0xb6,0x43,0x28,0x1d,0x08,0xff,0xf8,0x98,0x50,0x3e,0xfd,0x53,0xb5, + 0xda,0xc8,0xa0,0x3e,0xdc,0xf7,0x4d,0xc9,0x8f,0x88,0x22,0x36,0x5a,0x8d,0xb2,0xc7,0x60,0xc2,0x8b,0x88, + 0x7d,0x1c,0x6e,0xed,0x7b,0xfe,0x69,0xa6,0xf6,0x93,0x0d,0xc4,0x20,0xe1,0xb6,0x22,0xb6,0x0c,0xd3,0x27, + 0x1f,0x32,0xdb,0x39,0xcb,0x87,0x8c,0xed,0x70,0xf1,0x92,0x73,0x9e,0x85,0x65,0x05,0xd5,0xa7,0xf8,0xd2, + 0x77,0x3d,0xc0,0xc9,0x3f,0x41,0x8a,0x75,0x93,0x73,0xe2,0x35,0x12,0x1b,0x57,0x35,0x67,0x5c,0x66,0x00, + 0xed,0xb2,0xe3,0x20,0xbc,0x96,0x83,0x70,0xd6,0x2c,0xd0,0x14,0xd3,0x50,0x99,0x0f,0xad,0x32,0x59,0x51, + 0x36,0x0b,0x5d,0x61,0x08,0xb4,0x13,0xc9,0x65,0x52,0x22,0x20,0xa2,0x32,0xca,0x25,0xf2,0x94,0x95,0x4f, + 0xb6,0xf6,0x59,0xd7,0x13,0x31,0xce,0x71,0x3a,0x7e,0x39,0xa7,0x52,0x3c,0x4c,0x1f,0xeb,0x05,0x3a,0x75, + 0xbf,0x65,0x99,0xd1,0x5c,0x64,0xfa,0x5a,0xf6,0xf1,0x82,0x07,0xb5,0xd6,0xe5,0xa9,0xbc,0x2d,0xb8,0xb6, + 0xd5,0x74,0xae,0xfd,0x08,0xb0,0xfe,0x9d,0x5f,0x54,0xf1,0xeb,0x45,0x93,0x6f,0xe9,0xa9,0xb7,0x37,0x3c, + 0x37,0xe4,0xf8,0x94,0x1d,0x6b,0x3c,0xc8,0x52,0x32,0xab,0xfa,0x27,0x61,0x54,0x05,0xb5,0x4f,0x9e,0x86, + 0xc4,0xf5,0x44,0x08,0x05,0x33,0xd7,0x45,0x71,0xc8,0x69,0x5e,0x05,0x42,0xaa,0x69,0x9a,0x32,0xe4,0x67, + 0x5f,0x94,0xb6,0x0c,0x30,0xed,0x86,0x26,0x4f,0xc3,0x64,0x38,0xa1,0x0a,0xe5,0x80,0xbd,0xac,0xf0,0x1f, + 0xf6,0xb7,0xce,0x92,0x09,0x8c,0x7f,0xa8,0x8b,0x87,0x58,0xc0,0x84,0xbb,0xdd,0xd9,0xe7,0x7c,0xe6,0x8e, + 0x9c,0xd3,0x1c,0x14,0x5e,0x31,0x62,0xc2,0x2a,0x67,0xa7,0xf5,0xfc,0x83,0xe6,0x4f,0xcb,0xbd,0xb5,0x27, + 0x9e,0x11,0x9c,0x05,0x97,0xe2,0x38,0xb8,0x9d,0xe5,0xf6,0xb9,0x9c,0x5f,0x1b,0x88,0xac,0x20,0x2d,0xaa, + 0x76,0x8e,0x00,0x4f,0x27,0xd8,0x44,0x28,0xa3,0x57,0x52,0x19,0xda,0xb2,0x72,0x50,0xd1,0x97,0x0c,0x6d, + 0x73,0xbc,0x38,0x37,0xa8,0x4a,0xce,0x58,0xd2,0xa2,0xc4,0x43,0x16,0xf2,0x25,0x84,0xc0,0x89,0x25,0x79, + 0x97,0xb9,0x99,0x51,0x67,0x83,0x5d,0x6a,0xd6,0x78,0x13,0x5f,0x84,0xcf,0xb2,0xa3,0x29,0x42,0x44,0xf1, + 0xdf,0x9a,0xfc,0x9b,0x08,0xb8,0xe3,0xe2,0xf8,0xf8,0x1d,0x91,0x6e,0x9e,0xfb,0x64,0xd7,0xe9,0x4f,0xb5, + 0x20,0xdc,0xa3,0x13,0x9f,0x80,0x97,0x86,0x75,0x96,0x16,0x6d,0x2f,0x6c,0x99,0x36,0x83,0x87,0x86,0x34, + 0x63,0x09,0xeb,0xd3,0x78,0xa6,0xcc,0xff,0x29,0xbf,0x93,0x58,0x38,0x8e,0x8d,0x1c,0x56,0x0e,0xa8,0x76, + 0x21,0x46,0xa7,0xbe,0x0b,0xe9,0x79,0x67,0xe7,0xe9,0xee,0x19,0xb1,0x18,0x74,0xeb,0xdb,0x45,0x8e,0x8f, + 0x0e,0x9e,0x3f,0x3b,0x7c,0x76,0x7c,0x54,0x95,0x1c,0x8f,0x4d,0x49,0x08,0x95,0xdd,0xa9,0x2f,0x6e,0x97, + 0xa1,0xcf,0xa2,0x7c,0x36,0x71,0x18,0xbd,0xf3,0x48,0x2e,0x4a,0xfe,0x01,0x25,0x08,0x07,0xf2,0x17,0x82, + 0x79,0xad,0xa3,0xb3,0x73,0xae,0xc7,0x1b,0x87,0xe7,0x7e,0x4e,0x0d,0x2d,0x77,0x66,0x88,0x44,0x6d,0xec, + 0x90,0xae,0x42,0x4b,0x19,0xe0,0x89,0xc8,0x00,0xa0,0x86,0x79,0xc5,0x8b,0xbf,0xcc,0x74,0x44,0x2d,0x6d, + 0x41,0x66,0xab,0x0e,0xec,0x1c,0xbf,0x7f,0x18,0x4b,0x95,0x4b,0x06,0xdf,0x52,0x85,0x67,0x44,0xa4,0x0a, + 0xa5,0x82,0xa8,0xc2,0x23,0x28,0x87,0x25,0xd5,0x29,0x7c,0xe4,0xc3,0xd6,0x36,0x75,0x2f,0xfb,0x0f,0x89, + 0xc5,0x53,0xa8,0x7e,0x0d,0xbd,0xae,0x59,0xa3,0xcf,0x33,0xbb,0xcf,0xf1,0x53,0xe9,0xef,0x8c,0xfb,0x4b, + 0xdd,0xb3,0xfe,0x03,0xbb,0x3a,0xca,0x43,0x43,0x9a,0xdd,0xd3,0xba,0x73,0x51,0x39,0xfc,0x80,0x82,0x1f, + 0xf0,0xb6,0xac,0x03,0x1a,0x9a,0x0a,0x28,0x7f,0x6a,0xca,0x4f,0xa4,0xfc,0xa9,0xf4,0x7b,0x12,0x2e,0x87, + 0xa9,0x7b,0x6a,0xd5,0xa3,0x05,0x3c,0x3d,0xda,0x1f,0xfb,0x27,0xcc,0x96,0xda,0x6d,0x5c,0x37,0x63,0xa5, + 0x94,0xa6,0xd1,0x48,0x1a,0x35,0x91,0xff,0x6e,0xb4,0xc7,0xbf,0x12,0x4d,0x31,0xe7,0x11,0xe0,0xb0,0xe0, + 0x94,0x05,0xcb,0x35,0x75,0x59,0xda,0x43,0xb5,0x4e,0xd5,0x70,0x0b,0x87,0x41,0x35,0x5b,0x64,0x6c,0xfc, + 0x91,0x99,0x84,0x9c,0x12,0x86,0x5e,0xea,0x66,0xb5,0x01,0x2b,0xff,0x91,0x3a,0x10,0x27,0xce,0x53,0x65, + 0x83,0xb9,0xc4,0x59,0x7c,0x47,0xb7,0x38,0xa1,0x0d,0x0c,0x26,0x75,0x93,0x7a,0x65,0xf8,0x3e,0x5f,0xfa, + 0xf9,0x7a,0xed,0x8a,0xd5,0x94,0x77,0xd3,0x0a,0xb5,0x90,0x86,0xc6,0x4d,0x21,0x5b,0x5d,0x54,0x6d,0x32, + 0xf7,0x2f,0x18,0x85,0xce,0x6f,0x2a,0xae,0xc3,0x73,0x1a,0x85,0x3f,0xe7,0x9f,0x99,0x38,0x80,0xce,0xf9, + 0x81,0x5c,0x4f,0x73,0x19,0x4e,0xd8,0x5b,0xc3,0xd6,0x56,0xc2,0x3e,0x78,0x64,0xf8,0x0a,0x86,0xa7,0x7c, + 0xa8,0x45,0x32,0x35,0xc3,0x89,0xdf,0x1b,0x2e,0x9e,0xcc,0x86,0x0b,0xad,0xe4,0x77,0xae,0x2b,0x1c,0x2d, + 0xc6,0xc3,0x05,0x75,0xba,0x03,0x6b,0xb9,0x73,0xcc,0x49,0x03,0xd0,0x7d,0xc7,0xb9,0x8f,0x75,0xe3,0x37, + 0xaa,0xf3,0xa3,0x87,0xe3,0xed,0x6d,0xa5,0xd0,0x89,0x0f,0x5f,0x25,0x3f,0xb2,0x93,0x1f,0x99,0xe4,0xc7, + 0x76,0xf2,0x63,0x65,0x4d,0x78,0xc5,0xcd,0xac,0x56,0x28,0x88,0x7f,0x1f,0xd3,0xbf,0x8e,0xe3,0x5f,0x86, + 0x4e,0xa4,0x5d,0x5c,0xc3,0x7d,0xb3,0xb4,0xb0,0x3f,0x1e,0xe9,0x33,0xf2,0x3c,0x86,0x4b,0xdd,0xd7,0xf1, + 0x35,0x5c,0xa2,0x16,0xdf,0x64,0xf9,0x77,0x54,0x2a,0xe8,0xce,0x1d,0x4e,0x69,0x46,0x4a,0x77,0x1d,0x8d, + 0xf8,0x4c,0x62,0x07,0xff,0x2e,0xdd,0x2b,0x3a,0x46,0xeb,0xf5,0x92,0x55,0x9f,0x79,0x93,0x59,0x81,0x95, + 0x30,0xab,0x7d,0xe3,0x04,0x69,0x03,0x57,0x0a,0xd4,0x4d,0xe1,0x91,0x3e,0xe4,0xb8,0x08,0x0d,0x64,0x9f, + 0xc2,0x96,0x8c,0x9f,0xbc,0xe9,0x0b,0x1e,0x6d,0xd2,0xa9,0xb7,0xa6,0xed,0x07,0x2e,0xca,0xfc,0x98,0x5d, + 0x2f,0xec,0x37,0xcf,0xdd,0x81,0x36,0x19,0x3f,0xd4,0x3f,0x2e,0xd4,0x0f,0xc0,0xce,0x95,0xb9,0xdf,0x0e, + 0x8d,0x63,0xe7,0x2b,0x8f,0x40,0x7a,0xa2,0x8e,0xfb,0x21,0xdc,0xb8,0x5a,0xbf,0x97,0xd6,0xef,0x99,0xf5, + 0xdb,0xbd,0x08,0x0f,0x6d,0x8c,0xe5,0x13,0x2e,0x7c,0xb2,0x47,0xa0,0x7f,0xd5,0x0f,0x2f,0xfc,0x5a,0xe3, + 0x07,0xb5,0x7b,0x7f,0xcf,0xbf,0x02,0xc2,0xb9,0xf2,0xd6,0x57,0x2c,0x8e,0xa4,0x5c,0xc2,0x8a,0xb0,0x1c, + 0x37,0x98,0xf4,0xa0,0x42,0xa6,0x07,0xac,0x63,0x1a,0x8b,0x9a,0x72,0x0b,0xd5,0xc6,0xda,0x44,0x76,0x9d, + 0xbb,0x2c,0x23,0x92,0x28,0x21,0xe7,0x99,0x6f,0x3d,0x43,0xd4,0x6e,0x3f,0x4b,0xb2,0x62,0x5f,0x83,0x1d, + 0x42,0x95,0xd6,0x8d,0xe8,0x77,0x81,0xc4,0x06,0x48,0xe9,0x2c,0x7b,0x3b,0x70,0xa9,0x5c,0xbf,0x85,0xba, + 0x03,0x83,0xb9,0x0b,0x85,0x9e,0xac,0x6b,0x31,0x82,0xf5,0xab,0x9c,0x58,0x11,0x90,0x16,0xab,0xd5,0x35, + 0xde,0x38,0x87,0xaf,0x01,0xf2,0x70,0x99,0x4d,0x6b,0xb7,0x84,0x2a,0x7c,0x8d,0x7b,0xa9,0x94,0x9d,0x09, + 0xe9,0x09,0x69,0x1b,0xdb,0x94,0xad,0x16,0x5e,0x22,0x3e,0xea,0x2f,0x99,0xd6,0x9d,0x4c,0x95,0xce,0xa4, + 0xfc,0x0a,0xe5,0x8f,0xb9,0x44,0x7f,0xca,0x7c,0xd9,0x46,0x3e,0x01,0xa0,0x45,0x4c,0x0c,0x3d,0x28,0x97, + 0x2b,0x79,0xe2,0xf7,0x25,0x0f,0x3b,0xa1,0x0b,0x12,0x12,0x45,0x1a,0x31,0xe8,0xb9,0x2d,0xe5,0x40,0x9f, + 0x3d,0x2a,0x4e,0xc3,0x99,0x27,0xca,0xcc,0xfa,0x39,0x1a,0xc9,0x53,0x51,0xbe,0x9e,0xd6,0xe5,0xa9,0x34, + 0x49,0x88,0xed,0x76,0x7f,0x8f,0xae,0x22,0xbb,0x6c,0xad,0x10,0x8d,0x19,0x31,0x6a,0x3d,0xee,0x90,0xa6, + 0x7e,0xca,0x9e,0xe0,0x39,0x10,0xa5,0x5e,0x88,0xa9,0xc2,0x63,0x67,0x86,0xc0,0x07,0x3e,0x9b,0x85,0x67, + 0x19,0x9d,0x79,0x77,0x46,0x24,0x2d,0xc1,0x3f,0x2b,0x06,0xd2,0xfc,0x2f,0xc3,0x99,0x6f,0x1e,0x1a,0x2f, + 0xf1,0xa8,0x06,0xd9,0x1d,0x9a,0xbf,0x04,0xa9,0xcc,0xa6,0x06,0xb3,0x8a,0xaf,0xd8,0xf3,0x98,0xb1,0x98, + 0x59,0x8c,0x05,0x5e,0x24,0x3b,0xa3,0x17,0x1b,0x61,0x99,0x71,0x77,0x69,0x47,0x69,0x34,0xaf,0xaa,0x16, + 0x0a,0x2e,0xb5,0x1f,0x9a,0x92,0x23,0x78,0xc2,0x4b,0x8f,0xc2,0x51,0x56,0x6b,0x94,0x28,0x71,0x49,0x04, + 0x65,0x35,0x94,0x7c,0x1a,0x05,0x25,0x2c,0xe9,0x5a,0x7b,0xd4,0xa4,0x79,0xb0,0xae,0x1d,0x0b,0xed,0x24, + 0x2a,0xf6,0xcc,0x0b,0x66,0xd5,0x5b,0x28,0xe5,0xfe,0x13,0xc6,0xfc,0x1d,0x91,0x4a,0xad,0x37,0x5b,0x75, + 0xff,0xc6,0x78,0x34,0x2d,0xf1,0xc8,0x18,0xcb,0x23,0x63,0xa9,0x1e,0x19,0xe3,0xb5,0x32,0xb2,0xee,0x78, + 0xc2,0x15,0x5d,0x66,0xf5,0xfc,0xa8,0x63,0x27,0x36,0x1f,0x74,0xb5,0x36,0x93,0x7a,0x97,0x84,0x43,0x5d, + 0x0c,0xea,0xca,0xde,0xac,0x2b,0x54,0x00,0x93,0xce,0x4d,0x5e,0x31,0xbf,0xce,0xbb,0xf1,0x6d,0xc9,0x9b, + 0x4c,0x6b,0x39,0xd2,0x10,0xb0,0x5a,0xe5,0x34,0x56,0x86,0x19,0x69,0x92,0x20,0x80,0x7f,0x51,0x55,0x1a, + 0x7e,0x2e,0xc3,0xd7,0x99,0x6a,0x16,0xb3,0xb5,0x17,0xe4,0xd4,0x23,0x9d,0xc6,0x2d,0x0b,0xd6,0x60,0x22, + 0xd4,0x6a,0x66,0xeb,0x76,0x5e,0xd5,0x3e,0xa5,0xe6,0x70,0x72,0x7c,0x3d,0x6d,0x81,0x1e,0x73,0x68,0x3d, + 0x00,0xb8,0x96,0xdc,0x52,0x02,0x82,0xc2,0x66,0x0b,0x98,0xfe,0xba,0x95,0x93,0x1b,0x5e,0x9b,0x94,0xa7, + 0xf3,0x1b,0x2e,0x16,0x1e,0x7a,0x5c,0x1f,0x3a,0x2c,0x32,0x68,0xc1,0x8c,0x8c,0x7d,0x36,0x80,0x85,0x02, + 0x3b,0xfd,0xe2,0x28,0xe2,0xb2,0xfd,0xfb,0xa2,0x4f,0x12,0x4a,0xae,0xc8,0x05,0x57,0xab,0xfb,0x8e,0x92, + 0x1f,0x38,0xf7,0x87,0xd4,0x6d,0x2d,0xd8,0x5b,0xfd,0x9b,0xcd,0x08,0x8e,0xce,0xc7,0xe1,0x4c,0x8c,0xad, + 0xab,0x31,0x0a,0xde,0x98,0xf1,0xd1,0x91,0xb0,0x6c,0x89,0x5c,0xed,0xfe,0xe5,0x70,0x3e,0x4a,0x01,0x74, + 0x44,0x79,0xcd,0xfc,0x4c,0x17,0x44,0x9c,0xb1,0xb4,0x43,0xaf,0x3e,0x3b,0xca,0x0c,0xdb,0x36,0xf6,0x4b, + 0xcb,0x3d,0xd6,0x51,0xcb,0x27,0x16,0x95,0x40,0xf0,0xe5,0x87,0xd0,0x06,0xd1,0x08,0xa5,0xe7,0xc8,0x17, + 0xbb,0x53,0xd8,0x9a,0x40,0xd3,0xba,0x1a,0x23,0x96,0xd6,0x37,0xed,0x87,0xfb,0x44,0x6e,0xd5,0xfb,0x4b, + 0xc5,0xe1,0x36,0x2e,0xa8,0x9a,0x94,0x5f,0x07,0x17,0x7b,0x9d,0xda,0x4f,0x47,0xe2,0xd1,0x04,0x88,0x2d, + 0xa9,0x70,0xd6,0xa2,0x72,0xc7,0x01,0xd3,0x6e,0xcf,0x9c,0xa6,0x9a,0xf3,0x8f,0x38,0x9c,0x20,0xf0,0xa3, + 0x3c,0xe1,0x8c,0x5c,0x84,0xda,0x74,0x2a,0x2e,0x28,0xd7,0xb6,0x2a,0x8c,0x56,0x75,0xc2,0x28,0x0e,0x7e, + 0xce,0xd8,0xad,0x1f,0xbb,0x3c,0x97,0x51,0x8f,0x68,0xc6,0x10,0xe7,0x29,0x8f,0x6f,0x5b,0x05,0xaf,0xc1, + 0x16,0xfb,0xee,0x73,0x9b,0xd2,0x13,0x81,0xd2,0xab,0x6c,0xf4,0x5b,0xe2,0x5e,0x65,0x5e,0xf0,0x6d,0xc2, + 0xdc,0x7a,0xc5,0x2c,0x18,0xe7,0x6f,0xbe,0xc5,0x82,0xd2,0x3f,0x13,0xb8,0xf0,0x8d,0x8a,0xf2,0x05,0x88, + 0x06,0x20,0x2c,0x8e,0xe7,0x13,0x4f,0x70,0x59,0x79,0x37,0xb4,0xb3,0xb9,0xd0,0x13,0xde,0x53,0x3c,0x35, + 0x69,0x62,0xd9,0x10,0x12,0x13,0x58,0xe9,0xfa,0x8a,0xbc,0x6a,0xe0,0xaf,0x4c,0x6b,0x28,0xce,0xc3,0x7f, + 0xc6,0xae,0xed,0x0e,0x79,0xa8,0x2a,0xc8,0x63,0xcc,0x5c,0x1e,0xa1,0x54,0xdb,0x37,0xce,0x3f,0x4e,0x45, + 0x53,0xd0,0x81,0xce,0x04,0x0d,0x30,0xe9,0xe7,0x15,0xe5,0xad,0x6f,0xaf,0xc9,0x93,0xca,0xd4,0xa2,0x63, + 0x58,0xb7,0x0e,0x8a,0xcf,0x19,0x34,0xfa,0x60,0x90,0x14,0x29,0x91,0x56,0x9f,0xd5,0x05,0x2f,0xe2,0xb4, + 0x08,0x8a,0x35,0x47,0x06,0xf2,0x46,0xa5,0x26,0x1b,0x61,0x05,0xfa,0xc0,0xb7,0x6a,0x61,0x91,0xf4,0x87, + 0xae,0x06,0x42,0x12,0x3f,0xe4,0x4d,0x8b,0xce,0x6d,0x20,0x30,0x1b,0x57,0x7b,0x6a,0xc0,0xf8,0xa8,0xac, + 0x60,0x93,0x41,0x1a,0x4a,0xe3,0x56,0x67,0x0f,0x4d,0x23,0x42,0x3f,0xe6,0x6c,0x10,0xde,0x72,0x13,0xdf, + 0x3c,0xa6,0xf5,0xca,0xbe,0xb1,0x75,0x0b,0xb6,0xf6,0xd8,0x3c,0x82,0xd8,0x15,0x57,0xc3,0x26,0xe2,0x18, + 0x2b,0x41,0x12,0xa4,0xc1,0x97,0xc9,0x1f,0x31,0xcb,0x71,0xd8,0x14,0xca,0x87,0x4c,0xe7,0x20,0x0b,0x7f, + 0xc8,0x80,0x27,0xac,0xe7,0x26,0xd0,0x12,0x87,0x78,0x25,0x6d,0xc9,0x66,0xcd,0x3d,0x03,0x13,0x1e,0x71, + 0x25,0xa3,0x6a,0x86,0x74,0xb7,0x96,0xfe,0x03,0xea,0x6a,0xa2,0x0e,0xb3,0x8b,0x93,0x2d,0x1f,0xc4,0xce, + 0xb8,0x5b,0x13,0x75,0x2d,0x4f,0x60,0x99,0xa0,0x14,0x45,0xa9,0x33,0xa8,0xe8,0xe0,0xdf,0x19,0x22,0x7f, + 0x9d,0xa5,0x2e,0x1b,0x53,0x81,0x01,0x3a,0xcc,0xcc,0xef,0xb6,0x09,0xa8,0x31,0x00,0x65,0x35,0x28,0x1d, + 0x17,0x42,0x79,0x85,0x36,0xae,0x83,0xb8,0x7a,0xcd,0x92,0x00,0xdd,0x54,0xf6,0xa1,0xc6,0x67,0x0c,0x01, + 0x13,0xf5,0xa8,0x8c,0xca,0x10,0x46,0x90,0x12,0x06,0x08,0x14,0xf3,0x81,0x16,0xc8,0xc3,0xff,0xfc,0x7d, + 0x83,0xa7,0xc4,0x6a,0x81,0x86,0x57,0x2a,0xb2,0xc2,0x01,0x3e,0xe6,0xa8,0x40,0x95,0x21,0x18,0x3e,0x34, + 0x56,0x39,0x72,0x92,0x14,0x94,0xe6,0x8e,0x19,0xa7,0xb6,0x5a,0xb0,0x65,0x9c,0x1c,0x3f,0xb4,0xe9,0x37, + 0x50,0x87,0xa7,0xd6,0xf6,0xb1,0x15,0x3e,0x25,0xf2,0x10,0x7e,0x57,0x7c,0xbd,0x75,0x30,0x58,0xd2,0x7b, + 0xb1,0xb5,0xcf,0xc4,0x3b,0xd1,0xd9,0xb3,0x83,0x8c,0x16,0x9a,0xdf,0x01,0xaa,0x80,0xd3,0x84,0x3a,0xa3, + 0xb0,0x9e,0xa9,0xfb,0xcb,0x9e,0x44,0x95,0x67,0xad,0xa2,0x51,0x08,0x9e,0x94,0xf8,0xc2,0xa2,0x9e,0x61, + 0x15,0xb7,0xa1,0x67,0x06,0xe6,0xc9,0x9a,0xe8,0xd0,0x1a,0xb8,0x28,0x7f,0x06,0x8d,0x75,0x34,0x55,0x71, + 0x38,0x32,0xf1,0xfe,0x67,0xd2,0x5e,0xa4,0x44,0x9b,0x1b,0x06,0x8d,0x12,0x84,0x01,0xa9,0x2d,0x11,0x15, + 0x17,0x00,0x6f,0xa4,0xaf,0x56,0x0f,0x6b,0xc9,0xec,0xb6,0x9d,0x5d,0x46,0x28,0xec,0x02,0xd6,0xcc,0xf4, + 0x04,0x7f,0xc4,0x4c,0xe0,0x58,0x20,0x2d,0x69,0xfb,0x7e,0xd5,0x46,0x23,0x86,0x7b,0x7b,0xbb,0x74,0x30, + 0x77,0x08,0x7f,0x2d,0x57,0x8f,0x7e,0x0a,0x86,0xbe,0x64,0xe0,0x1b,0xfe,0xb5,0x8d,0x89,0xdd,0x0d,0x7b, + 0xc2,0x61,0x0c,0xe0,0x16,0x6a,0xdf,0x28,0x8d,0xb3,0x30,0x39,0x4d,0xd9,0xf0,0x48,0xc9,0x8a,0x6f,0xe8, + 0x1a,0x20,0xee,0x58,0x19,0x61,0x66,0x3a,0x74,0x6d,0xe3,0xb9,0x84,0x32,0x1a,0x29,0xeb,0x7a,0xb0,0x3f, + 0xb3,0xaf,0xa5,0x6b,0x29,0x5c,0xd4,0x8d,0x32,0x63,0x68,0x0e,0xb2,0x69,0xa5,0xb8,0x03,0xca,0xe5,0x05, + 0xaa,0x7e,0xa7,0xb9,0xe5,0x28,0x0b,0x12,0x4f,0x3b,0x42,0x5d,0xa3,0xb1,0x54,0xcb,0xcd,0xd9,0x91,0x8f, + 0xfa,0x1d,0x56,0xcf,0x4d,0xfc,0x1e,0xae,0x1f,0xca,0x4d,0x61,0x08,0xd3,0x6a,0xe6,0xcb,0xf0,0x19,0x69, + 0xbf,0x43,0x35,0x46,0x67,0x65,0xae,0x56,0x62,0x40,0x6a,0xd7,0xb7,0x44,0x32,0x88,0x62,0xdb,0x4b,0x3d, + 0x47,0x75,0x84,0x83,0x4e,0x57,0x78,0x15,0xd1,0x4d,0xa7,0xd0,0xf5,0x17,0xc1,0x23,0x7e,0x34,0x16,0x57, + 0x40,0x45,0xf8,0x3e,0xe3,0xf0,0xe7,0x5a,0x4e,0x5f,0x0c,0xe2,0x3c,0xcf,0x88,0x85,0x48,0xe8,0xec,0x94, + 0xc9,0xa2,0x08,0x33,0xbf,0x50,0x48,0xe8,0x06,0xda,0x1c,0xc9,0x3c,0x0e,0x4a,0x5f,0xfd,0x3a,0xcc,0xbe, + 0x51,0x4b,0x55,0x74,0x68,0xf3,0x77,0x18,0xc0,0xb6,0x9e,0x03,0x94,0x0f,0x05,0xc2,0xf7,0xfc,0x06,0x47, + 0x7c,0x21,0x6f,0x81,0x7a,0x93,0xea,0xe5,0x95,0x71,0x42,0x06,0x37,0x67,0xe6,0x29,0x62,0xa4,0x8c,0x92, + 0xec,0x34,0xaf,0x4f,0x17,0x22,0xc3,0x2e,0x3c,0xa7,0x69,0xf6,0x12,0x8e,0xf7,0xc4,0x9a,0x1e,0x6e,0xf1, + 0x72,0x28,0x7b,0xc2,0xaa,0x1a,0x3b,0x6e,0xe6,0xac,0xec,0x83,0x16,0x88,0xba,0xa8,0xc0,0x6d,0x52,0x21, + 0x8f,0xea,0x89,0x2e,0x6a,0xa6,0xd4,0xf5,0xf5,0x2a,0x0d,0x87,0x05,0x60,0x67,0x02,0xfd,0x04,0xf4,0x1f, + 0x12,0x6c,0xe2,0x49,0x63,0xed,0xb9,0x7f,0x64,0xde,0xa0,0xbd,0x78,0x54,0x2c,0x0a,0xb7,0xb6,0xe0,0xc9, + 0xfe,0x3c,0x75,0xf1,0xd4,0x94,0xda,0xdf,0xf0,0xf8,0x14,0x75,0x5a,0xe3,0xb0,0xc9,0x90,0xb1,0xba,0x03, + 0xea,0x31,0x3a,0x26,0xd4,0x77,0x12,0x85,0x1d,0x96,0x55,0xba,0xf8,0xdd,0x46,0x57,0xc0,0x7d,0x6c,0x9c, + 0xc4,0xdd,0x40,0x9d,0xb4,0x66,0xfb,0x49,0xf4,0xa5,0x9d,0xa4,0x7f,0xe8,0x28,0xcc,0xed,0xc8,0xa2,0xb5, + 0x90,0xe3,0xec,0xd6,0x20,0x55,0xcb,0xad,0x8f,0x27,0x28,0x45,0xb9,0x7f,0xf8,0x38,0x7a,0xac,0x9c,0xc9, + 0x3b,0x5d,0xc5,0x20,0xcc,0x3d,0xe7,0x6f,0x42,0xb2,0x9a,0xa8,0x09,0x4c,0x30,0xe4,0x11,0xc4,0x0a,0xc6, + 0x15,0xd7,0x96,0xe5,0xb9,0xcb,0x1e,0x4a,0xce,0xa4,0xa4,0x5e,0x24,0xe1,0x62,0xb9,0x7e,0xcb,0x64,0x35, + 0x5b,0x96,0x35,0x8f,0x71,0x3d,0x2b,0xe9,0x76,0x2b,0x3e,0xd1,0xb2,0x36,0xfb,0xd2,0x70,0x27,0x5d,0x19, + 0x6f,0x32,0xf3,0x6f,0xef,0x19,0x96,0x59,0x66,0xae,0x6e,0xd3,0x18,0x6e,0xf4,0x6e,0xba,0x85,0x4b,0xd1, + 0xad,0x82,0xa4,0x14,0x71,0xac,0xf4,0xd1,0x08,0x52,0xeb,0x9c,0x68,0x12,0x0e,0xa9,0xfa,0xe7,0x5a,0x45, + 0x7a,0x07,0x49,0xa5,0x4e,0x00,0x54,0xcf,0x1a,0xe0,0x3e,0xd4,0xfb,0x45,0x58,0x21,0x6d,0x9f,0x0e,0x63, + 0xb2,0x9f,0x44,0xa2,0x03,0x2b,0xe6,0x6d,0xda,0x96,0x4d,0xc1,0x3d,0xcd,0x89,0xbe,0xd6,0x5e,0xc3,0x28, + 0xc1,0x91,0xf8,0x61,0x56,0x70,0x58,0x7e,0x8f,0x06,0xbb,0xb1,0x4c,0x25,0xba,0xe3,0x94,0xb0,0x98,0xca, + 0x14,0x44,0x37,0x92,0x3f,0x03,0x55,0x34,0x2c,0xdd,0xce,0x30,0xb3,0x52,0x1b,0x72,0x61,0xfc,0x1d,0x44, + 0x97,0xd3,0x91,0xfc,0xa4,0x43,0x49,0x7c,0xee,0xcf,0xcb,0xf8,0xc5,0xfe,0x17,0x29,0x6a,0xaf,0x1b,0x41, + 0xa8,0x69,0x58,0x4b,0x02,0x10,0x80,0x20,0x0d,0x6d,0x68,0xd1,0x0a,0x32,0xe6,0x8e,0x91,0xe1,0xad,0x3d, + 0x63,0x9b,0x25,0xf5,0x8b,0x51,0x98,0xeb,0x1c,0x5d,0x2d,0xe3,0x9d,0x84,0xfa,0x19,0xf7,0x9c,0x3e,0xdc, + 0x6c,0x6f,0x6f,0xd7,0x0a,0xf0,0x95,0x3e,0xb9,0xb0,0x1d,0x6d,0x97,0x8d,0x80,0x78,0xc2,0x74,0xb5,0x17, + 0xaa,0xaa,0x61,0xe3,0xa0,0x2b,0xe5,0x4c,0x09,0xe7,0xf6,0xb2,0xf6,0x9c,0xda,0x88,0xb2,0x87,0x30,0x7b, + 0x26,0xb6,0x84,0xd5,0x58,0x62,0xc7,0x07,0x17,0x51,0xa0,0x79,0xd4,0x37,0xc4,0x1f,0x24,0x0e,0x10,0x04, + 0x56,0x59,0x20,0xfb,0xd4,0x69,0x86,0x1a,0x5f,0xc2,0x7f,0xf4,0x59,0x60,0xc1,0x84,0xe6,0x2c,0x4b,0x36, + 0x48,0x27,0xb2,0xb6,0xae,0xd0,0xca,0x89,0xa3,0x84,0x4d,0x0d,0x83,0xd6,0xf1,0x8f,0x39,0xd4,0x3c,0x1c, + 0x26,0xa3,0x58,0xf0,0xc0,0x6a,0x90,0x45,0x82,0xb7,0x16,0xf7,0x5d,0xf4,0xb9,0xdf,0xd5,0x27,0x25,0x02, + 0x8f,0x24,0xa1,0xfc,0xf4,0x6f,0x88,0x62,0x89,0xe8,0xb2,0xcb,0xc5,0x3e,0xa9,0x08,0x12,0xcb,0x1b,0x68, + 0x56,0x19,0x71,0x63,0x47,0x54,0xa7,0x06,0x06,0xe2,0x9a,0x4a,0x96,0x96,0xcd,0x29,0xf5,0x85,0x95,0x65, + 0x13,0x79,0xb4,0xc1,0xce,0x35,0x0e,0x11,0xa8,0x70,0x10,0x9d,0x42,0x8c,0xed,0x63,0x8e,0xe5,0x08,0xae, + 0xbc,0xbd,0x51,0xfa,0x74,0x7f,0xb4,0x1f,0xec,0x05,0xfb,0x41,0x3c,0xe2,0x32,0x97,0x09,0xaa,0x3e,0xf0, + 0x82,0x3d,0x1d,0x4e,0x15,0x7e,0xb7,0xd4,0xfb,0xd0,0x78,0x94,0xb2,0x14,0x88,0x39,0xad,0xc0,0xda,0xdb, + 0xc8,0x82,0x02,0x66,0x4d,0x39,0xec,0x77,0x93,0x4b,0xad,0xb9,0x7d,0x2f,0x6c,0xa1,0x93,0x05,0x0a,0xbe, + 0xa6,0xaa,0x84,0x9c,0x22,0x26,0xe6,0x49,0x0b,0x4c,0x12,0x4d,0xaf,0x67,0x12,0x8e,0x07,0x8f,0x0d,0x3a, + 0x5a,0x49,0xa6,0xdd,0x52,0x84,0x26,0xa6,0x86,0x7a,0x92,0x40,0x67,0x4c,0xd9,0x64,0xde,0x84,0x30,0xce, + 0x3c,0x8c,0xfc,0x33,0x01,0x6a,0xf8,0x69,0x64,0xef,0xa3,0x19,0x48,0x99,0x11,0x53,0x35,0x05,0x13,0x37, + 0x3e,0xa7,0x04,0x9c,0xc2,0x3f,0x15,0xad,0xef,0x1b,0x10,0xcc,0xeb,0x21,0x0a,0x98,0x38,0x5c,0xb2,0x83, + 0x6d,0x38,0x79,0x56,0xee,0xe0,0x4c,0x91,0x79,0xe5,0xde,0x77,0xc9,0xea,0xbe,0x10,0xf9,0x75,0xc8,0x3c, + 0x4a,0xed,0xea,0xac,0xb2,0x60,0x3c,0x11,0x08,0x62,0xaf,0x68,0xf7,0x70,0xf2,0x07,0x92,0xb0,0x56,0xed, + 0x58,0xd8,0x84,0x1f,0xb0,0x21,0x29,0xc1,0xbd,0x56,0x99,0x9a,0x2b,0x8e,0xca,0x65,0xc7,0x90,0xf0,0x14, + 0xc8,0x97,0x66,0x42,0x94,0x7a,0xa6,0x0b,0x41,0x94,0x88,0xa7,0x77,0x21,0x87,0x52,0xaf,0xf2,0xce,0x43, + 0xa5,0xcb,0xfc,0x83,0x5a,0xd1,0x66,0xfc,0x24,0xa2,0x82,0xea,0x49,0xd2,0x36,0x91,0x88,0x85,0x81,0x5d, + 0xad,0xae,0x10,0x9a,0x17,0x75,0x48,0x09,0x85,0xe5,0x34,0x4b,0x60,0x47,0x23,0x06,0x07,0x95,0x73,0x64, + 0x66,0x69,0x6c,0xb5,0x2a,0x2a,0xd6,0x56,0x54,0x26,0x6c,0xfe,0x35,0x85,0xaf,0x1f,0x3b,0xa1,0x22,0x43, + 0x27,0x55,0xdf,0x73,0xd3,0xf7,0xa4,0xd5,0xb7,0xd5,0x33,0xe0,0x5c,0xbb,0x82,0x5b,0xb3,0xee,0x53,0xa5, + 0x06,0x47,0xdc,0xf3,0x9a,0xa8,0x70,0x31,0x1d,0x49,0x8d,0x6f,0x32,0x70,0xed,0x95,0x66,0x84,0xde,0x8c, + 0xa5,0xcd,0x2e,0xa4,0xcd,0x5d,0xcd,0x47,0x5b,0x44,0x58,0xf0,0x6e,0x42,0xec,0xed,0x3a,0x69,0x56,0xd2, + 0x4d,0x95,0x14,0x65,0x4f,0x5d,0x23,0xbd,0x44,0x79,0xfa,0x01,0xe0,0x52,0x9a,0xf9,0x76,0xa0,0x72,0xcc, + 0x1e,0xa6,0xeb,0x95,0xea,0x15,0x40,0x17,0xf4,0x54,0xa7,0x52,0xc3,0x0e,0x2c,0x51,0x0a,0x24,0xca,0x49, + 0x6a,0x91,0x83,0xc8,0x34,0x81,0x0c,0x9b,0x78,0x70,0x54,0x86,0x31,0x82,0x96,0xf0,0xb9,0x61,0xf9,0x43, + 0x79,0xee,0x43,0x03,0x5d,0x80,0x92,0x1f,0x86,0xe9,0xdc,0x12,0x0d,0x70,0x83,0x2c,0x22,0xf2,0x0d,0x02, + 0x44,0x32,0xd0,0x1f,0x51,0xdb,0x22,0xfd,0x27,0xda,0x20,0x93,0x06,0x88,0x3f,0xd0,0x0d,0xd0,0x11,0xe5, + 0x06,0xf4,0xd6,0xaf,0x56,0x13,0x8e,0x2c,0xa3,0xa3,0xb6,0x24,0x66,0x2d,0xcb,0xc1,0xc9,0x55,0xa9,0x64, + 0xa8,0x3a,0x24,0x9e,0xbb,0xa4,0x9d,0xe6,0x75,0xf5,0x06,0xa5,0x0a,0x60,0xb2,0xf4,0xe9,0x00,0x6b,0x2e, + 0xaa,0x7d,0xe8,0x72,0x8b,0x86,0x67,0x2f,0xab,0x26,0x72,0x3c,0x4d,0xb1,0x19,0x17,0x04,0xbe,0xe5,0x4b, + 0x60,0x78,0x55,0xac,0x64,0x21,0x14,0xd1,0x42,0x1e,0x93,0x60,0xfa,0xac,0xce,0x6b,0x27,0x55,0x2c,0xa5, + 0x14,0x91,0xe8,0x3a,0x3a,0x40,0x6f,0xef,0x3f,0x31,0xf7,0xff,0xc4,0x7e,0x5d,0xed,0x94,0xbd,0x2a,0x6e, + 0xb6,0x12,0x8f,0xab,0x1d,0x2e,0x96,0x0b,0x90,0x25,0x3d,0x31,0xd3,0x11,0x4b,0xb5,0x5a,0x40,0x0f,0x3e, + 0xf2,0xd5,0xcd,0x2b,0x3c,0x1e,0x7e,0xa9,0x53,0xe3,0xd0,0xc6,0x39,0x46,0x0b,0x11,0xd4,0x2e,0x34,0x1d, + 0x99,0xe2,0x1d,0x8a,0x62,0x1e,0x8e,0x00,0x74,0x00,0x7b,0x5f,0xee,0x07,0xf2,0xf7,0xa1,0xfc,0x7d,0xf4, + 0xb9,0xfc,0x7d,0xf8,0x48,0xfd,0xfd,0x52,0xa5,0x7f,0x11,0x98,0x00,0x64,0x52,0xe1,0xb1,0x2a,0xa0,0x2a, + 0x3c,0x7a,0x1c,0x68,0xf5,0xe2,0x29,0x54,0xdd,0xa5,0xd4,0xc3,0x07,0xaa,0x79,0xf9,0xb3,0xbf,0xa7,0xfe, + 0xaa,0xde,0xf6,0x3f,0x57,0x09,0x9f,0x3f,0x7e,0xf0,0x77,0x55,0xe6,0x8b,0x07,0xba,0x12,0xfd,0x7a,0xa8, + 0x1b,0xbd,0x2e,0x1c,0xf3,0xf0,0xf7,0x34,0xfc,0xf2,0xef,0xc4,0xb2,0x3c,0x09,0xf7,0x1f,0x3c,0x58,0xad, + 0xe8,0xf3,0xf3,0xc7,0xfc,0xf9,0xe5,0xde,0x48,0x75,0x1e,0x50,0xe2,0xa3,0x2f,0x39,0xf1,0xf1,0xdf,0x47, + 0x8e,0x18,0x42,0x38,0x81,0xc3,0xcf,0x3e,0x1d,0x01,0x49,0xb0,0x4c,0x72,0xd7,0x29,0xb8,0x70,0x9d,0x3d, + 0x67,0xcb,0x0a,0x5e,0xbc,0x07,0x19,0x5a,0x52,0xbc,0x8e,0x5e,0x4b,0x50,0x36,0x42,0xb8,0xa5,0xff,0x8d, + 0x8e,0x56,0xd7,0xf9,0xe6,0x56,0x5f,0x76,0x3d,0x76,0xd3,0xa8,0xca,0x32,0xca,0x3c,0xfb,0xd4,0xc3,0xc3, + 0x47,0x10,0xeb,0x6c,0x6f,0x3f,0xfc,0x12,0x7f,0x47,0x78,0x6b,0x53,0x2a,0x41,0x3e,0xe5,0x83,0x15,0x0c, + 0x9c,0xcf,0x9c,0x7e,0xa9,0x03,0xa0,0x8b,0x7f,0xab,0x2b,0x8d,0x0b,0x2b,0xae,0x4c,0xfb,0xde,0x80,0xa6, + 0xc2,0x91,0x90,0x7d,0x3d,0xe5,0x29,0xcf,0xf1,0xcf,0xda,0xe5,0xcf,0xa3,0xe2,0xcd,0x75,0xaa,0x03,0xed, + 0xf9,0x1f,0xc2,0x2e,0x02,0xf5,0x45,0x5a,0xce,0xad,0x60,0x61,0xf8,0x1c,0x3c,0x47,0x64,0x9b,0xe4,0x32, + 0x26,0xe6,0xe1,0x32,0x2a,0xfd,0xd3,0x8f,0xae,0x28,0x5e,0xfc,0x54,0xb5,0x93,0xf0,0x46,0x1c,0x6b,0x1c, + 0x34,0x82,0x54,0xd6,0x7c,0x1a,0xd9,0x0c,0x60,0x3c,0xc0,0x69,0x0b,0xe5,0x0f,0xbf,0x23,0x9e,0x9c,0xe0, + 0xe7,0xe8,0x66,0x1d,0xe8,0x88,0x44,0x8c,0x13,0x6e,0x4c,0x61,0x83,0x2e,0x69,0x44,0xaf,0x54,0xba,0x54, + 0xf2,0xf4,0x75,0x87,0x40,0x8b,0x43,0x9d,0xda,0xe9,0xf4,0xa6,0x24,0x6a,0xa1,0xf4,0x2d,0xc2,0x27,0x66, + 0x63,0x02,0xfb,0x32,0x2a,0x3b,0x22,0x30,0x4a,0x48,0x53,0x34,0xca,0xbe,0x83,0x5f,0x32,0x92,0x78,0x15, + 0x17,0x45,0x74,0x86,0x3b,0xbc,0x94,0xbb,0x4f,0x5d,0x3f,0xd4,0x8d,0x78,0x9c,0x3a,0xb1,0xe6,0xe8,0x57, + 0x29,0xbf,0xa0,0x54,0xac,0x3c,0x82,0xc9,0x50,0xaf,0x91,0x84,0x4b,0x04,0x9a,0xca,0xae,0x67,0x15,0x66, + 0x1d,0x89,0x49,0x9e,0x9c,0xc6,0xc8,0x3a,0x80,0xa9,0x0f,0xeb,0x49,0x32,0xd3,0x26,0xc5,0x74,0x09,0x71, + 0x06,0xb7,0xae,0xe2,0x71,0xa8,0x25,0x14,0x59,0x38,0xef,0x40,0x9e,0x65,0xa5,0x0e,0x72,0x8f,0xdf,0x82, + 0xf4,0xda,0x29,0xb5,0xb5,0xe6,0xe7,0x53,0x1e,0x0b,0x0a,0x84,0xcd,0xb2,0x6a,0xa7,0x06,0x33,0xa2,0xcf, + 0x4e,0x89,0x91,0x91,0xc5,0x69,0x15,0x6b,0xe4,0xeb,0x5a,0x05,0x31,0x86,0xa9,0xe8,0x9f,0xce,0xd9,0x48, + 0xe1,0x17,0x08,0xe2,0x5a,0x95,0x3b,0x8b,0xb1,0xa3,0xde,0x3a,0x04,0xe4,0x77,0x42,0x40,0x0e,0x7a,0xb1, + 0x0d,0x01,0x66,0x7b,0x79,0x4f,0x8b,0x30,0xef,0xde,0x4c,0x3c,0xb0,0xbf,0xd2,0x0b,0xfb,0xdf,0xb6,0xa7, + 0xbe,0x75,0x59,0xa8,0x65,0xfb,0x90,0xf2,0x33,0x9f,0xf9,0xe0,0xdb,0x5d,0xfc,0x02,0xf2,0xfa,0xd6,0x06, + 0x74,0xaf,0x1a,0x90,0xac,0xbe,0xab,0x2d,0xf3,0x7a,0x7f,0x01,0x2e,0x46,0xae,0xb5,0x30,0x2d,0xa8,0xf8, + 0x0b,0xd3,0x05,0x6f,0x2e,0xaf,0x24,0x78,0x64,0x55,0x01,0x16,0xd4,0x88,0xea,0xdf,0x4d,0x38,0xad,0x1d, + 0x3b,0xbb,0xe0,0x5f,0x1a,0x8e,0xf6,0x03,0xf7,0xbc,0x19,0xa6,0x56,0x3b,0x82,0x93,0xa1,0xb9,0xad,0xca, + 0xb5,0x11,0x0d,0x96,0xe9,0x6d,0x3d,0x2b,0xc1,0x67,0xab,0x8d,0x0e,0x28,0xab,0x35,0xab,0xd2,0xdc,0x46, + 0x0b,0x56,0x96,0x6e,0xa1,0x06,0x18,0xdd,0xe0,0xd2,0x6c,0xa5,0x96,0x69,0x8f,0x44,0xc2,0xc6,0xad,0xd7, + 0xfe,0xb5,0xf6,0xda,0x8a,0xd4,0xca,0x9b,0x63,0x34,0x87,0xa1,0xb7,0x38,0x56,0x64,0xad,0xb7,0x1b,0xdb, + 0x93,0xad,0xd2,0x0a,0x08,0xc4,0x65,0xe2,0x9a,0x23,0x92,0xd7,0x4b,0x68,0x8a,0x0b,0x0f,0x87,0x9a,0x1e, + 0xb5,0x0b,0xac,0x7d,0x7e,0x0d,0x2f,0x54,0xe2,0x11,0x53,0x7b,0xc6,0x99,0xec,0xba,0xe5,0xc9,0xb1,0x46, + 0xda,0xf3,0xb0,0x20,0x9f,0x90,0xf0,0x19,0x88,0x22,0x5b,0x59,0x9b,0x21,0xdf,0x02,0x1c,0x89,0xa7,0xe1, + 0x66,0x22,0xd8,0xbf,0xd3,0x75,0xac,0x0a,0x0b,0x17,0xca,0x1f,0x13,0x7e,0x97,0xe8,0x79,0xcb,0x91,0xab, + 0x08,0xe0,0x73,0x21,0xa4,0x11,0xcd,0x43,0x11,0xd2,0x73,0x08,0xa8,0x97,0xc8,0xe0,0xb9,0xb1,0x41,0xe8, + 0xac,0xc1,0xae,0x2d,0xbd,0xd1,0x52,0x07,0xfd,0xdd,0x0b,0xec,0x7b,0x6b,0xe9,0x99,0x74,0xd6,0xc0,0x6e, + 0xf0,0x4c,0xb6,0x3f,0x3e,0x1c,0xa3,0x2a,0x80,0x79,0x45,0xf2,0x58,0x41,0xcd,0x79,0x08,0x9a,0xea,0xa9, + 0xe2,0x9e,0x6f,0x6f,0x3b,0xfc,0x98,0xb8,0x5e,0x57,0x22,0xfd,0xed,0xed,0xcc,0xf4,0x4c,0x4c,0xe9,0x94, + 0x5a,0x77,0x9d,0x17,0xb3,0x9e,0xcc,0xa2,0x87,0xd5,0xee,0x25,0x45,0x0f,0x4e,0x66,0x7a,0x74,0x07,0xf4, + 0x78,0xad,0x7b,0xb1,0x88,0x4c,0x8b,0x1e,0xcc,0x1f,0x7a,0xe7,0xd1,0x55,0x2c,0x15,0xa4,0x3c,0x15,0x1e, + 0x10,0x17,0xd4,0x31,0xf7,0x36,0x4e,0x07,0x5b,0x30,0x27,0x06,0x10,0xce,0x43,0x9b,0x2b,0xd2,0x75,0x03, + 0xcc,0xe1,0xf9,0x6c,0x49,0xff,0x40,0xc5,0x72,0x43,0x7b,0xc2,0xdb,0x4f,0x47,0x0e,0xcc,0xa7,0x9a,0xcb, + 0x12,0x50,0x6a,0x39,0x9c,0x43,0xf8,0x05,0x71,0xa6,0xf2,0xfa,0xef,0x27,0x7e,0x34,0x48,0x5c,0x89,0x3d, + 0x81,0xa3,0x71,0x10,0xb6,0x10,0xc5,0x84,0x7a,0xa2,0xcb,0xa5,0xe3,0x81,0x64,0x3d,0x3c,0xb0,0xe8,0xb9, + 0x04,0x76,0x83,0x8b,0x0c,0xf2,0x70,0x5b,0x4e,0x54,0xb9,0x43,0xb0,0x5a,0x83,0x6b,0x39,0xcd,0xa4,0x42, + 0x0b,0xef,0x56,0x8d,0x3e,0x62,0xfc,0x1c,0xc7,0x56,0xeb,0x33,0xf2,0xe6,0xa3,0xb4,0xdf,0x67,0xf9,0x8c, + 0x73,0xa3,0xfc,0xbf,0xe6,0x78,0x56,0xb0,0x9e,0xf5,0x59,0x3d,0xc5,0x51,0xba,0x62,0x39,0x1e,0xf3,0xd1, + 0x96,0xb0,0xa4,0xf4,0x43,0x6c,0x2c,0x54,0x3b,0xce,0x9a,0x75,0x58,0x86,0x5e,0xd6,0x0f,0x13,0xdf,0x24, + 0x8b,0x4c,0xe2,0x50,0xe8,0xee,0xcc,0x1b,0x39,0xec,0x6c,0x34,0xb8,0xa8,0x12,0x80,0x4c,0xa6,0x44,0xe9, + 0x2f,0xc5,0x29,0x9d,0x33,0xd4,0x43,0x90,0x6e,0x33,0xf1,0x88,0x1d,0xad,0x45,0x4b,0xde,0xf9,0x1f,0x3c, + 0xd6,0x11,0x8d,0x19,0x84,0x39,0xed,0x08,0x44,0x7e,0xd4,0xa5,0x17,0xe0,0x5f,0xcd,0x71,0xdc,0x39,0x93, + 0x72,0xcd,0xec,0x63,0x7d,0x55,0xc3,0xbc,0x26,0xaa,0x4e,0x2b,0xe6,0xd3,0x97,0xe0,0xd3,0x4d,0xd9,0x8a, + 0x9e,0x0e,0xb3,0x14,0xed,0x99,0x60,0x6d,0xf5,0x07,0xdb,0x86,0xeb,0xd1,0xf1,0xd2,0x0d,0x93,0xe6,0xa6, + 0x44,0x34,0xa1,0x64,0xac,0x19,0xbe,0x48,0xbd,0x4b,0x83,0xb3,0x92,0xf1,0x07,0x8a,0xa3,0x8d,0x14,0x73, + 0x2e,0x5a,0xaf,0xcc,0xb7,0xa9,0x81,0xa8,0x02,0xe9,0x11,0x53,0x3a,0x44,0xb7,0xeb,0xb2,0xfe,0xfe,0x9e, + 0x37,0xae,0x55,0xd0,0xa3,0x95,0xbf,0xa2,0x16,0x6e,0xaa,0xab,0x5a,0x44,0xe3,0x26,0xfd,0xbe,0x59,0xd4, + 0x35,0x87,0xbb,0x5b,0xf3,0xa6,0x1e,0x86,0xbb,0xff,0x72,0x8f,0xa7,0x5e,0x7f,0xd7,0xbf,0xe0,0x9f,0xd7, + 0xf8,0xf9,0x9e,0x96,0xe9,0x5d,0xb8,0xef,0x3f,0x0b,0x1f,0xf8,0xf7,0xc2,0x87,0xfe,0x1b,0xfa,0xfe,0x3a, + 0x7c,0xe4,0xbf,0x0d,0x1f,0xfb,0xcf,0xc3,0xcf,0xfd,0xdf,0xc3,0xbf,0xfb,0x2f,0xc2,0x2f,0xfc,0x97,0x60, + 0xe8,0x5f,0x1e,0xbd,0x19,0x87,0x37,0xd7,0x45,0x40,0x7f,0x7d,0x66,0x03,0x83,0xa3,0x87,0xfe,0xfb,0xb1, + 0xef,0x1c,0x39,0xc1,0xd1,0xd7,0x63,0x9f,0x2e,0xf9,0xe0,0xe8,0xf7,0xf1,0xda,0x7f,0x79,0xb4,0xaf,0x4a, + 0xee,0x53,0xee,0x80,0x72,0x1f,0x74,0x96,0x7a,0xa0,0x4a,0x3d,0xa8,0xb7,0xb7,0xa7,0xfe,0x0a,0x57,0x29, + 0x1f,0x28,0xfe,0x90,0x8a,0xdf,0x55,0xce,0xe7,0x5e,0xfd,0x77,0xba,0x5f,0xfe,0xc5,0x3d,0xe3,0x97,0xf4, + 0x4d,0xbf,0xd0,0xdc,0xd7,0xd4,0x9c,0x73,0x9f,0xb2,0xde,0xa2,0xde,0x7d,0xe7,0x7e,0x70,0xf4,0xbc,0x9a, + 0x8e,0xff,0x8c,0x7e,0x8d,0x1d,0x34,0x76,0x4f,0x2a,0xbe,0x60,0x7b,0x3e,0x64,0xc9,0x70,0xde,0xea,0xfa, + 0x48,0xa8,0x95,0x78,0xab,0x4a,0x3c,0xa7,0x12,0xdc,0x6e,0xab,0x04,0x3a,0x92,0x8d,0xf9,0x86,0x6d,0x9e, + 0x89,0x54,0xcb,0x97,0xf1,0x8a,0x6d,0x39,0x57,0x3b,0xa3,0xa3,0xe3,0xe9,0x60,0xdc,0x5f,0xdd,0x67,0x1f, + 0x58,0xf7,0x57,0x0e,0xbb,0xc5,0x72,0x3c,0x2a,0x07,0xc7,0x44,0x1b,0xd0,0x56,0x37,0xd6,0x7a,0x6d,0x61, + 0x2d,0x86,0xb2,0xb7,0x74,0xa9,0xb5,0x25,0x54,0x36,0xc6,0xb2,0x10,0x56,0x09,0xfd,0x8c,0x0e,0x79,0x96, + 0x0e,0x7b,0x17,0x21,0x94,0x0f,0x0e,0xdc,0x3c,0xdc,0xd9,0xa7,0xab,0xf1,0x0d,0xc7,0xbd,0x3b,0x07,0xb8, + 0xe0,0xcc,0x9c,0x1f,0xbd,0x1b,0xd7,0x8c,0x3b,0xf4,0x3d,0x95,0xb2,0x2e,0x8f,0x40,0x2f,0x5c,0x14,0x4a, + 0x06,0x6c,0xf5,0x8f,0xde,0x77,0xd4,0x80,0xa4,0x76,0x94,0x86,0x79,0x90,0xf6,0x89,0xf0,0xa7,0x42,0xcf, + 0x6a,0x85,0x50,0x89,0x28,0xa3,0x19,0xc1,0x3e,0xe5,0xdd,0xab,0xe5,0x41,0x23,0xf2,0xe9,0x9e,0x37,0xdb, + 0xd9,0xa1,0xe1,0x7d,0xed,0x4b,0x51,0xf3,0x16,0x89,0xd1,0x6e,0xe1,0xe9,0xc3,0x4d,0xc3,0x05,0xbb,0xcc, + 0x33,0x62,0x51,0x8c,0x1d,0xea,0x98,0x43,0x25,0x03,0x5f,0xb2,0xc3,0xf8,0x79,0xbf,0x0f,0xff,0x89,0xac, + 0x2c,0x04,0x9f,0x8b,0x73,0xbc,0x58,0x6c,0x35,0xf8,0x69,0xce,0xe8,0xef,0x33,0xb6,0x5e,0x52,0xe3,0x6f, + 0xe9,0x56,0xbe,0xcf,0x6a,0x5d,0xab,0x15,0xbe,0x9f,0x6f,0x6f,0x13,0x58,0xe0,0xdb,0xf8,0xee,0xa6,0x66, + 0x09,0x5b,0x53,0xc3,0xfd,0x52,0x8d,0x11,0x11,0x96,0x5d,0x4f,0x59,0x71,0x4d,0x21,0x16,0x03,0x9d,0x53, + 0x84,0x2f,0x8f,0x96,0x63,0x8f,0xf0,0xce,0x6a,0x55,0xb0,0x22,0xe8,0x6a,0xf5,0x02,0xb2,0xe5,0x17,0x5a, + 0x2b,0x88,0xfb,0x84,0x1d,0x8b,0xef,0x46,0xe1,0xf9,0x51,0x46,0x67,0x70,0x2c,0xef,0xb0,0x19,0x0e,0x5a, + 0x1e,0x9a,0x25,0xcd,0x47,0x65,0x90,0xcb,0xf4,0x89,0xff,0xf1,0x6a,0x0d,0x84,0xe1,0xef,0xc6,0x39,0xaa, + 0x28,0xbb,0x19,0x82,0x54,0xc3,0x48,0x08,0xff,0xc3,0x20,0xbb,0xd6,0xbe,0x0d,0x64,0x67,0x71,0x09,0x10, + 0x63,0x41,0x6e,0xe3,0x6e,0x84,0x8c,0xbc,0xac,0x1c,0xb4,0x56,0x8f,0x30,0xda,0xfb,0xb6,0x86,0x4f,0x78, + 0xac,0xe5,0x79,0xe7,0x0d,0x0a,0x03,0xe1,0xdd,0x30,0x74,0xed,0x4e,0xbb,0xd6,0x92,0x65,0xed,0x53,0x99, + 0x9a,0x11,0x92,0x56,0x2e,0xb8,0xb3,0xa1,0x76,0xbc,0x1d,0x1d,0xe5,0x47,0xc5,0xd8,0x7a,0xec,0x80,0xb2, + 0x99,0x77,0x23,0x6e,0xa8,0x94,0x6d,0x42,0x14,0x4e,0xfc,0xa2,0x42,0xa6,0x91,0x9c,0xd6,0x57,0x1b,0x4e, + 0xce,0xb0,0xe2,0xff,0xc0,0x8d,0x43,0x5b,0xd6,0xbc,0x2e,0x09,0xf1,0xb8,0x5a,0x39,0x71,0xba,0xf3,0xd3, + 0x3b,0x87,0xe5,0xb9,0x75,0x5e,0xbb,0xca,0x63,0x8b,0x24,0xc5,0xe2,0x32,0x79,0xa9,0xc2,0x98,0x5b,0x32, + 0x20,0x49,0x87,0x15,0x65,0x6a,0x89,0x78,0x38,0x75,0xa8,0x5c,0x59,0x5f,0xca,0x03,0x9f,0x7c,0xcd,0x38, + 0x9f,0xc8,0x95,0x90,0x15,0xd8,0xe4,0xf7,0x6a,0x05,0x46,0xf9,0x40,0x15,0xb9,0x4c,0x0a,0xb8,0x02,0x41, + 0xdf,0xf2,0x4b,0x04,0x9e,0xda,0xbb,0x34,0x84,0x0a,0x31,0xcb,0x16,0x6a,0xe9,0xe0,0x6a,0x43,0x8b,0xef, + 0x15,0x96,0x77,0x6b,0x4b,0x7e,0xe9,0xde,0xd5,0x44,0x59,0x1f,0xca,0x2a,0x6c,0xa7,0x4b,0x25,0x3b,0x45, + 0xf7,0xd0,0x29,0x7b,0x30,0x48,0x24,0xee,0x96,0x3a,0x10,0x89,0xbb,0xb5,0x21,0x4b,0xb5,0x5b,0x5f,0x50, + 0xbc,0xbc,0x83,0xb0,0x97,0x3c,0x7b,0x51,0xeb,0x39,0xe0,0x06,0x58,0xbe,0xf0,0xba,0x6a,0x26,0xaa,0xdc, + 0x05,0x10,0x12,0x94,0x64,0x7e,0x3f,0x68,0x40,0xbe,0xc2,0x2a,0xee,0x16,0xd4,0x19,0xd3,0xd5,0x2a,0x77, + 0x4b,0x69,0xb0,0x76,0x5c,0x24,0x9c,0xb6,0x36,0x4a,0x3f,0x81,0xd3,0xd8,0x9f,0x5f,0xb9,0xfa,0xbd,0x33, + 0xf5,0xeb,0x50,0x13,0xc0,0x7d,0xa3,0x80,0x0a,0x91,0x5d,0x0d,0x20,0x09,0x22,0xbf,0x06,0x1e,0x41,0x41, + 0x14,0x99,0xff,0x63,0x78,0x73,0x75,0x19,0xdc,0xac,0xab,0x8a,0xf4,0xbb,0x59,0x93,0x92,0xea,0x55,0x6f, + 0x2a,0x0e,0x6f,0xdd,0x1c,0x03,0xda,0x12,0x98,0xe1,0x4c,0xbd,0x6c,0xf8,0xe8,0xdc,0x01,0xca,0x58,0xeb, + 0xcb,0xe5,0x95,0xed,0x7a,0x58,0x26,0xdb,0x71,0xbc,0xce,0xb5,0x2f,0x68,0x69,0x6f,0xd8,0xf8,0x86,0xf4, + 0xa5,0x02,0x7b,0xda,0x1d,0xa2,0x21,0xb1,0x31,0x50,0x8d,0xf5,0x9b,0x65,0xcb,0xb5,0x6f,0x77,0xda,0xc9, + 0xee,0xb7,0x7d,0x21,0xd4,0x37,0xba,0x52,0x37,0xb3,0x9b,0xda,0x20,0x3b,0xa8,0x35,0xd6,0x30,0x1c,0x60, + 0x6e,0xcf,0x0e,0x61,0x92,0x5a,0xb6,0x9a,0x25,0x23,0xc0,0xf4,0xe9,0xce,0xbe,0x27,0xef,0xd3,0x13,0xc8, + 0x31,0xa1,0x20,0xe9,0x76,0x8c,0xc9,0x6f,0x0e,0xa7,0x26,0xdb,0x6a,0x9a,0x57,0x8a,0xec,0xaf,0xe6,0x12, + 0x9c,0x16,0x6f,0x70,0x8f,0x2b,0xb9,0xce,0x3d,0x34,0x5d,0x0b,0x51,0x61,0x1b,0x34,0x34,0x16,0xc3,0xb6, + 0x6f,0x38,0xef,0x74,0x8a,0xdc,0xac,0x42,0x8c,0x20,0x3b,0x41,0x6f,0x26,0xb6,0x02,0x5f,0xac,0xfd,0x9b, + 0x69,0x1c,0x2f,0x44,0x35,0xb9,0x3d,0x3b,0x25,0xc6,0xac,0x5f,0xf5,0x5b,0x15,0x6a,0xa2,0x83,0x56,0xe1, + 0xaf,0xd6,0x8d,0x13,0xeb,0x58,0x26,0x97,0xf5,0x75,0x60,0x01,0x99,0xb5,0x18,0x02,0xf8,0xd6,0x6a,0xb0, + 0x67,0x8f,0x7b,0xc4,0xfe,0xc2,0x8a,0x45,0xe7,0xb2,0x5f,0xfe,0xc6,0xf8,0xfd,0x9b,0xe4,0x92,0x48,0xf5, + 0x04,0xf2,0x76,0x99,0xc2,0x8f,0x68,0x98,0xce,0xbb,0x3d,0xe6,0xc6,0x26,0xa0,0x90,0x3e,0x9b,0x1b,0x8a, + 0x46,0x0a,0x00,0x28,0x57,0x09,0xb8,0x0b,0xf6,0x00,0xfe,0x63,0xf3,0x9e,0xb8,0xbb,0x7e,0xfd,0x71,0x41, + 0x37,0x53,0x3b,0xfc,0x77,0x37,0x62,0x3f,0x34,0xe8,0x26,0x64,0x5d,0xee,0x98,0xab,0x7e,0x74,0xaf,0xca, + 0x17,0x71,0xd9,0x71,0xfa,0xb0,0x1b,0x58,0x6f,0xfd,0x55,0x2d,0x7b,0xcc,0x9d,0xd5,0x31,0xd2,0x5d,0x9d, + 0xd6,0x4b,0x77,0xd4,0xff,0xd8,0x41,0xd4,0xab,0xe9,0xc1,0x28,0x64,0x78,0xeb,0x28,0x54,0x19,0xbb,0x78, + 0x77,0xa7,0xe6,0x5e,0xe6,0x61,0x6a,0xdc,0x7a,0x6b,0xdb,0xa6,0x54,0xbd,0x4a,0x77,0xfb,0x16,0x69,0x80, + 0xe2,0x9d,0x08,0xfb,0xd6,0xde,0x3a,0x6b,0x6c,0x6e,0xaa,0x7b,0x14,0xdd,0xb7,0x7c,0x5c,0x3f,0xf2,0x36, + 0xb8,0xdf,0xb6,0xbd,0xfa,0xf0,0xb4,0x6b,0x37,0x80,0xfd,0xb6,0x46,0x1a,0x07,0xa9,0xdd,0x56,0x0d,0xe6, + 0x6f,0x6b,0xa9,0x76,0x96,0x1a,0xed,0x40,0xb9,0x4c,0x79,0x75,0xaa,0xe9,0x1a,0x11,0x73,0x95,0x98,0x96, + 0x60,0xe0,0xad,0xe4,0xf8,0x0a,0x1a,0x94,0xd0,0x5f,0x43,0x8e,0x3c,0xc8,0x33,0x59,0x76,0x84,0xca,0xc9, + 0x18,0x86,0x1b,0x41,0xda,0xe8,0x2c,0x29,0xbe,0xb1,0x29,0xb1,0x0e,0x97,0x38,0x31,0x22,0x36,0xba,0x16, + 0xca,0x54,0x1d,0xd5,0x48,0xb8,0x66,0xab,0xdd,0x62,0xb0,0x52,0xf3,0x86,0x0a,0x27,0xb7,0xb0,0xef,0x24, + 0xac,0x48,0xaa,0x3a,0x05,0x54,0xaa,0xb8,0xbb,0x75,0xb2,0x7f,0x62,0x58,0x86,0x89,0x18,0x0c,0xb1,0x2a, + 0xa6,0x8e,0x48,0xbc,0xc5,0x0a,0x04,0x76,0x1f,0x96,0x76,0xaa,0x7e,0x24,0x45,0xa4,0x70,0xe2,0x9a,0x6a, + 0xe5,0xd6,0x9a,0x0d,0x6c,0xe9,0x89,0x4d,0x6a,0xcd,0xcd,0xc3,0x89,0xe6,0x03,0xe6,0x95,0xf5,0xf4,0x3f, + 0x02,0xc7,0x63,0x2f,0x25,0xae,0x0e,0x8c,0x05,0x87,0xe3,0x3c,0xfd,0xb9,0x9a,0x3e,0xcc,0x45,0x75,0x88, + 0x16,0x8e,0x50,0x30,0xe7,0xe4,0x60,0xde,0x58,0x47,0x54,0x6c,0xc2,0x80,0x1d,0x52,0x3a,0x4c,0x7d,0xe8, + 0x38,0x8b,0xaf,0x82,0x5d,0xf7,0x1f,0xc1,0xd1,0xf1,0xf5,0xf1,0xce,0xc9,0x6a,0x30,0xee,0x7b,0xbb,0x67, + 0x95,0xb6,0xf9,0x04,0x9a,0x0f,0x05,0xf8,0xd4,0xa2,0xf1,0xe4,0xcc,0x6b,0x25,0xea,0x1e,0xc5,0xd1,0x04, + 0xf1,0x7e,0xe6,0xca,0xba,0xdb,0x7d,0x40,0x9c,0xb3,0x7e,0x17,0xab,0xf6,0x93,0x47,0xb1,0xa4,0x51,0x38, + 0x79,0x74,0xad,0x84,0x78,0x6a,0x95,0x88,0xf0,0xac,0x12,0x85,0x1a,0x0f,0x94,0x9f,0x06,0x69,0xa5,0x06, + 0x6b,0xb0,0xf8,0xb3,0xae,0x66,0x06,0x2d,0x76,0x75,0xd4,0xfb,0x1a,0x0a,0xed,0x10,0xb9,0x89,0xa5,0x77, + 0x3c,0xed,0xb1,0x8a,0xbb,0xf2,0x61,0x38,0x0d,0xab,0x0a,0xc3,0x59,0x38,0x55,0x61,0x53,0x78,0x6c,0xd3, + 0xc6,0xf5,0x87,0xa8,0xe4,0x22,0xa2,0x9f,0x36,0x9f,0x31,0x97,0x6a,0x21,0x89,0xa1,0x73,0xf5,0x34,0xad, + 0x93,0xe7,0xa2,0xc4,0x0c,0x8a,0x46,0xa3,0xc8,0x98,0x44,0xcf,0xfd,0x99,0x17,0x44,0x15,0xeb,0x57,0xdf, + 0x2c,0xa5,0x68,0x5b,0xdf,0xae,0xba,0xe0,0xb7,0x42,0xbc,0xf5,0x15,0x35,0x81,0x58,0x2a,0x2d,0xa0,0xb0, + 0x1c,0xe5,0xca,0xc2,0x0c,0xf1,0xd2,0x1b,0x7d,0x99,0x29,0xb7,0x30,0x84,0x3e,0x60,0xf6,0x71,0xb2,0x3b, + 0x2b,0x7d,0x58,0x95,0x9a,0x72,0x46,0x02,0x4d,0x80,0x30,0xca,0xdd,0xae,0x1a,0xa9,0x0f,0xf9,0xac,0xa9, + 0xa1,0x02,0xce,0x4f,0x82,0x49,0x73,0x4c,0x2d,0x48,0xad,0x28,0x44,0xe5,0x7f,0xa8,0xa9,0x66,0xb8,0xf3, + 0x68,0x18,0xed,0xec,0xf4,0x9e,0xee,0x0d,0x3d,0xa8,0xfe,0x59,0x2a,0xa9,0x51,0xff,0x11,0xf3,0xe1,0x5b, + 0x46,0xb5,0xc6,0x51,0xcf,0x2f,0x89,0x42,0x6d,0xca,0x1d,0x42,0x06,0x4b,0xbf,0xc2,0x30,0xd3,0xa5,0x89, + 0x46,0x57,0x41,0x45,0xea,0x2b,0xae,0xb3,0xf9,0x92,0x0d,0x28,0x56,0x0b,0xee,0xb3,0x94,0x21,0xba,0x2c, + 0x36,0xc3,0xeb,0xfc,0xd3,0xe1,0x55,0xe9,0xb4,0x2c,0x2d,0x90,0xad,0x29,0x4b,0xc5,0x46,0x59,0x2a,0xb3, + 0xec,0xeb,0x5b,0xb0,0x38,0xf1,0xe1,0x65,0x33,0x57,0x7e,0xa0,0xeb,0xcb,0x5e,0xc7,0xd9,0x8d,0x67,0x83, + 0xd6,0x7a,0xef,0x43,0xff,0x97,0xd7,0xbb,0x6c,0xa8,0x00,0x43,0x2c,0xa5,0x86,0x2b,0xd0,0xea,0xd1,0x12, + 0xaa,0x91,0xe6,0x7c,0x85,0x60,0x58,0xea,0x34,0x75,0x50,0x9a,0x6c,0x94,0x6d,0xa6,0x53,0x6a,0x73,0xa1, + 0xe6,0xc5,0xd0,0x81,0xcd,0xb4,0x76,0x5c,0x7b,0xdb,0xca,0xcd,0xdb,0x06,0x3c,0xa3,0x43,0xb1,0x77,0x6d, + 0x56,0xf6,0x67,0x37,0xcb,0xa6,0xf7,0x13,0xb9,0xb3,0x6e,0xd9,0x19,0x3a,0x4d,0x74,0x2c,0xf2,0x06,0x1f, + 0xd2,0x9c,0x65,0xf5,0xd8,0x38,0x6a,0x5f,0x29,0x25,0xab,0xf7,0x59,0xab,0x6b,0x9e,0x6b,0xb9,0xf2,0xa6, + 0xa5,0x86,0x44,0x20,0x70,0x9c,0xe6,0x19,0x9c,0x74,0x2e,0xb0,0xb1,0x3a,0x12,0xf3,0xdd,0x16,0x58,0x3c, + 0x1e,0x16,0x0a,0x2c,0xa2,0xa3,0xc2,0x06,0x8b,0xa2,0xff,0xb8,0xd2,0xd8,0x1b,0x55,0x52,0xb1,0x84,0x15, + 0xaf,0xf7,0x3d,0x3f,0x73,0x15,0xce,0xb0,0xc0,0x65,0x22,0x14,0x07,0xf5,0x6d,0xe0,0x21,0xa2,0x2b,0x2f, + 0xe1,0x01,0xcb,0x3d,0xdf,0x80,0xe1,0xfa,0xa8,0x6d,0xa5,0xe5,0x23,0x48,0x26,0x5b,0xe3,0x7d,0x30,0xcc, + 0xd5,0x78,0xd9,0x3f,0x42,0x35,0xde,0xbc,0xff,0xc0,0x80,0x71,0x62,0xc6,0x35,0x51,0x03,0x4b,0x3e,0x16, + 0x8e,0xfd,0xd2,0x8c,0x5c,0x07,0x9a,0x49,0x9a,0x2b,0xdd,0x44,0xbd,0x96,0xa9,0xb4,0x58,0xa8,0xb5,0x46, + 0xfd,0x70,0x98,0xa9,0x51,0xe7,0xb0,0x31,0xaa,0x46,0x9d,0xf5,0x1f,0xea,0x27,0xb6,0x06,0x76,0xcb,0xbd, + 0x0a,0xb3,0xd5,0x01,0x94,0xa5,0x49,0x78,0xe2,0x19,0xb7,0x98,0xfc,0xc6,0xd0,0x1a,0xd4,0xa7,0x5c,0xe1, + 0x77,0x2c,0x42,0xd9,0x68,0x92,0x72,0x6b,0xba,0x53,0x1d,0x84,0xa2,0xe1,0xfd,0x2c,0x6a,0x9b,0x10,0x1c, + 0xe4,0x8f,0x8d,0xc6,0x8a,0xcd,0x8d,0xb1,0x0f,0xde,0x8e,0x56,0x9a,0x12,0x9a,0xb6,0x36,0xd7,0xc7,0x34, + 0x72,0x3e,0x58,0x96,0xc9,0x7c,0x20,0x3e,0x11,0x37,0x8e,0xb6,0x6b,0xf2,0x75,0x26,0xe1,0x8e,0xd9,0x37, + 0xd8,0x84,0x8d,0x8b,0xb0,0xb1,0xd1,0xda,0x04,0xda,0xad,0x75,0x2e,0xc6,0x9f,0x6e,0x6c,0xc3,0xa2,0x74, + 0x4f,0xa2,0xb5,0x36,0xa2,0x69,0x92,0xfc,0x61,0xfa,0xef,0x20,0x48,0x34,0xb1,0x5a,0xc2,0x23,0x36,0x01, + 0x2c,0x90,0x36,0x51,0xe9,0x85,0x07,0x79,0x27,0x8c,0x4d,0xf9,0x11,0x41,0x88,0x59,0xe4,0xc3,0x25,0x98, + 0x9d,0xd9,0xe6,0x12,0x90,0x0e,0xeb,0x82,0xbe,0x73,0x72,0x82,0x48,0x09,0xfa,0x82,0x6d,0x0b,0x70,0x8f, + 0xe6,0x06,0x7f,0xc1,0x9f,0xd3,0xad,0x05,0x59,0x4c,0xd8,0xa1,0x5d,0xe9,0x46,0x50,0x3a,0xf6,0x97,0x8a, + 0x6f,0x6e,0xc9,0xf8,0x4e,0xa6,0x2d,0x54,0xc0,0xdc,0x87,0x19,0xf8,0x86,0x66,0x45,0x61,0x51,0x5a,0xb4, + 0x9f,0x3b,0x5a,0x6b,0x5a,0x5d,0x04,0x8d,0xab,0x70,0xb3,0xc4,0xc6,0x4f,0x37,0xdf,0x8d,0xf9,0xff,0x8a, + 0xbb,0x51,0x5c,0x14,0x96,0xe6,0x6e,0xcc,0x61,0xe2,0x5f,0x5f,0x97,0x69,0x27,0x69,0xb2,0x09,0xa7,0xef, + 0x6f,0xc6,0xe9,0xfb,0x63,0x6d,0x58,0x61,0xa1,0xad,0xac,0x65,0xa6,0xa4,0xed,0x1f,0x46,0x2d,0x5d,0x7a, + 0x18,0x6a,0x8f,0x24,0xfa,0x33,0x1e,0xf9,0x61,0x58,0xc4,0x51,0x4b,0xe0,0x1d,0x82,0x5b,0xe3,0xeb,0xcc, + 0xfa,0x46,0x5c,0x52,0xfa,0xe0,0xa8,0xab,0xae,0x54,0xe4,0x80,0xab,0x62,0xbe,0x94,0xde,0x62,0xbe,0x94, + 0x8a,0xf9,0x92,0xd4,0xf1,0xfc,0x8e,0xfc,0xfd,0xb1,0xea,0x8d,0xad,0x96,0x14,0x3c,0x22,0xb8,0x3d,0x47, + 0x2e,0x6d,0x20,0x1e,0x5b,0xa2,0x70,0x07,0xda,0xa9,0xc9,0x14,0x36,0x22,0x9d,0x0d,0x0d,0xd6,0xb0,0x44, + 0xb3,0xa5,0x4e,0x84,0xf3,0xa7,0x1a,0xda,0x80,0x6c,0xba,0x86,0xbe,0x19,0xd5,0x48,0xcf,0xff,0xbf,0x22, + 0x9a,0xe6,0x6b,0xd0,0x06,0x34,0xd3,0x51,0xac,0x42,0x32,0xf6,0x02,0xde,0x89,0x62,0xd2,0x8f,0x44,0x31, + 0xb5,0x46,0xef,0x44,0x30,0x52,0xfa,0x6e,0xf4,0xd2,0x90,0xe5,0xfe,0x97,0x23,0x97,0xf4,0x6e,0xe4,0xd2, + 0xed,0x5a,0xe9,0xff,0x22,0x97,0x0e,0xe4,0x92,0x1a,0xe4,0xa2,0x34,0x41,0xc4,0x50,0x40,0x89,0x80,0x12, + 0x22,0xf8,0xac,0x85,0xf5,0x7f,0xf4,0x68,0x9d,0xa3,0xab,0x28,0x99,0x47,0xa7,0xc9,0x3c,0x41,0x7e,0x78, + 0x53,0xbf,0x2f,0x83,0x0f,0xb5,0x97,0xc0,0xe0,0x14,0x5b,0xc3,0x1a,0xbd,0xf3,0xb9,0x1d,0xb7,0x17,0xbe, + 0x18,0xce,0x43,0x82,0xc2,0x2b,0x82,0x7d,0x4a,0xda,0xde,0x56,0x00,0x77,0xae,0x53,0xb4,0x89,0xe5,0xc0, + 0xf1,0x78,0x46,0xb1,0x6e,0x46,0x42,0x32,0x75,0x8d,0xf7,0x03,0xd5,0xae,0x46,0xeb,0xdc,0x13,0xfd,0xd5, + 0x1b,0x82,0xd2,0x60,0x93,0xc0,0x15,0x45,0xe0,0xc4,0x26,0x0d,0xcf,0x37,0x34,0x99,0xd6,0x9a,0x2c,0xdb, + 0xed,0xb5,0xdf,0xc7,0xec,0x97,0x9f,0xff,0x15,0xe0,0x17,0x2b,0xbd,0x55,0x6d,0x91,0x5d,0xf1,0x53,0xc4, + 0xb6,0x10,0x17,0x6a,0xcc,0xbe,0x9a,0xb4,0x7a,0x6c,0xf3,0x2a,0xeb,0x75,0x65,0x15,0x71,0xfb,0x1c,0x27, + 0x9f,0x36,0xc9,0x16,0x83,0x93,0x74,0xb1,0x65,0x89,0x61,0x70,0x12,0x7b,0x9a,0x09,0xd8,0x32,0xe1,0xf2, + 0x1b,0xd3,0xcc,0x2c,0xf6,0x2c,0xc3,0x3c,0x8d,0x75,0x5a,0xd6,0x9a,0xa7,0x9f,0x9a,0x99,0xe6,0x9f,0x32, + 0xd3,0xf8,0xd3,0x67,0xaa,0xfc,0x25,0xd6,0xc7,0x9a,0x33,0xf3,0x54,0xfa,0x46,0xef,0x37,0x6f,0xf1,0x8e, + 0x1f,0x3f,0xaa,0xe9,0x7f,0x2f,0x8c,0x19,0x9e,0x38,0xd6,0x36,0x7b,0x53,0x0b,0xba,0x3a,0xb8,0xdd,0x8f, + 0x9d,0x47,0xc7,0xd9,0xfb,0xef,0x9d,0x47,0x7a,0xf7,0x3c,0x60,0x73,0xfd,0x3e,0x49,0xdd,0x13,0xfc,0x34, + 0xc6,0x7f,0xae,0x83,0x73,0xce,0x11,0x1a,0x26,0x2a,0xaa,0x3b,0x3b,0x0e,0x3b,0xaf,0xe2,0x8f,0xb9,0xd7, + 0xe2,0x66,0xf1,0x5a,0x69,0xed,0xd0,0x78,0x8d,0xea,0x80,0x18,0x45,0xbd,0x02,0x29,0xf4,0xae,0xcc,0xa9, + 0xf2,0x19,0x61,0xca,0x61,0x2e,0xf6,0x51,0xf9,0x40,0x45,0x13,0x07,0x66,0x54,0xb8,0x2e,0x74,0xfe,0x3e, + 0x78,0x38,0x78,0xe8,0xf8,0x5d,0xa6,0x5a,0x12,0xe9,0x79,0x7b,0x5b,0x45,0x7c,0xfe,0x19,0x31,0x68,0xaa, + 0xdf,0x83,0x65,0x11,0xbb,0xaf,0x08,0x31,0x2b,0xf5,0x21,0x63,0xed,0x72,0x13,0xa7,0xc1,0x0d,0x47,0xd5, + 0x0c,0x9c,0x77,0x65,0x94,0xe4,0x85,0xe3,0x17,0x1f,0x8a,0x32,0xbe,0x7c,0xf1,0x9c,0x52,0xf8,0x57,0xef, + 0xc5,0x73,0xc7,0x9f,0x25,0xf9,0xe5,0x75,0x94,0xc7,0x3f,0xcb,0x58,0x02,0xe7,0x1b,0x95,0xd0,0x53,0xa3, + 0x0b,0x7a,0x8e,0x3f,0xc9,0x16,0x1f,0x24,0x72,0x86,0x73,0xa0,0x7f,0xf6,0xfe,0xe7,0xff,0xd3,0x7b,0xb0, + 0xb7,0xff,0xf7,0xde,0xab,0x28,0xbf,0xe8,0x5d,0x45,0x69,0xef,0xc7,0x38,0x2d,0xae,0xb3,0xe5,0x94,0x8e, + 0xd5,0x3c,0x8b,0xe0,0x71,0x2b,0x70,0xde,0xce,0x63,0x18,0x0e,0x72,0x34,0x83,0x9e,0x4a,0xed,0xc9,0x42, + 0xa9,0x90,0xef,0x83,0xc1,0xc0,0xf1,0xf3,0xf8,0x94,0xae,0xf7,0xb7,0x71,0x2a,0xb5,0x0e,0xcf,0xe3,0x9e, + 0x8c,0x96,0xe6,0x3f,0x9f,0xf7,0x4e,0xe3,0x9e,0x94,0x88,0xa7,0x7e,0x6f,0x21,0x4d,0xe6,0xf1,0x2c,0x8f, + 0x8b,0x73,0xc6,0xe4,0xbd,0x05,0x4d,0xba,0x17,0xcd,0x88,0x94,0xa2,0xa1,0x4f,0x69,0xae,0xbc,0xf5,0x5f, + 0x71,0x14,0x8f,0xc0,0x79,0x86,0x8f,0x5a,0xda,0xbb,0xe8,0x8a,0x3b,0x92,0xbf,0x3c,0x84,0xeb,0x64,0x96, + 0xd0,0x4a,0x95,0xcb,0x22,0xb8,0x89,0x26,0xf0,0x78,0xb9,0xc8,0x92,0xb4,0x34,0xab,0xf8,0xec,0x2d,0x56, + 0x62,0x9a,0x14,0xd1,0x29,0x5d,0x42,0x81,0xf3,0x5c,0xfd,0x22,0xf2,0x83,0xdd,0x67,0x64,0x29,0xc2,0xdd, + 0x99,0xe2,0xbf,0x24,0xdf,0x24,0x1b,0x2a,0xf8,0x09,0x22,0x97,0x38,0x2f,0xa6,0x78,0x05,0x4e,0xb3,0x77, + 0xef,0x78,0x4b,0xe8,0xdf,0x1e,0x6c,0x4d,0x67,0x19,0x41,0x01,0x6d,0xd6,0x24,0x4a,0x11,0x91,0x02,0xb6, + 0x1b,0x54,0xf9,0x1d,0x7d,0xf6,0x26,0xfa,0x1b,0x3b,0x92,0xa6,0x04,0xad,0xdf,0xd0,0x6d,0x8c,0x6c,0xf9, + 0xdb,0x2b,0xb3,0x9e,0xca,0x30,0x25,0x68,0x5c,0x2f,0xb3,0x82,0x37,0x4e,0x7f,0xd3,0x3e,0x14,0x25,0x8f, + 0x4c,0x95,0x51,0xa3,0x33,0x5f,0x08,0xf6,0x51,0xa8,0xa5,0x28,0xa3,0xd3,0x43,0x03,0x46,0x94,0xe2,0xf8, + 0x6a,0x82,0x07,0x12,0x31,0xa6,0x57,0xa8,0x64,0xba,0x9b,0xdf,0x95,0xf1,0xa2,0x38,0xcc,0x97,0x28,0x1c, + 0x97,0x3d,0xbc,0x15,0x20,0x6c,0xfd,0x07,0x9a,0x53,0xce,0x86,0x02,0x05,0x0a,0x54,0x45,0xbf,0x81,0xf6, + 0x6a,0xb3,0x2c,0x7c,0xb5,0x5d,0x25,0xd3,0x25,0xa2,0x52,0xd0,0xda,0x12,0x21,0x83,0x68,0x14,0xb5,0x91, + 0x1c,0xaa,0x34,0x8c,0xe5,0x32,0xd6,0x89,0xf4,0x53,0x12,0x5e,0xe0,0x8d,0x22,0x25,0xd4,0xa3,0xa1,0x8f, + 0x96,0x15,0xf6,0x2f,0x51,0xd9,0x43,0x76,0x4f,0x37,0xd9,0x53,0x36,0x29,0xbd,0x28,0xe5,0xfe,0x51,0xa7, + 0x57,0x2d,0xdb,0x40,0x5a,0x7b,0x9d,0x71,0x88,0x63,0xe7,0x75,0xd6,0xa8,0xad,0x8e,0x6a,0xef,0x43,0x5c, + 0x4a,0xc9,0xaf,0x53,0xb5,0xd3,0xf2,0xa3,0x5e,0x5c,0x8d,0x15,0x42,0x6c,0xf6,0xa5,0x85,0xe1,0x62,0x26, + 0xfa,0x5b,0x4a,0x27,0x69,0xef,0x92,0x00,0x3e,0x29,0x62,0x1a,0xc7,0x54,0x55,0x7a,0x36,0xa5,0x36,0xe9, + 0x1f,0xf9,0x7a,0x2e,0x01,0x85,0x1c,0xf9,0xab,0x9b,0xe5,0x4e,0x1a,0x03,0x50,0x15,0xbe,0x49,0xde,0xc7, + 0x53,0xe9,0x8e,0x7f,0x72,0x4f,0x92,0xf5,0x6e,0x99,0xe6,0x09,0x6f,0x81,0xfc,0x30,0xa9,0x05,0x56,0x4f, + 0xfe,0xea,0x45,0xbe,0x54,0x6b,0x2c,0x63,0x4c,0x97,0x65,0xac,0x86,0xf7,0x8a,0x46,0x1a,0x7d,0x08,0x1c, + 0xf9,0xab,0x8a,0x2f,0xe3,0x82,0x13,0xd5,0x0f,0x49,0xfd,0x25,0x9e,0xa6,0x2a,0xdd,0xfc,0x54,0xe5,0xcf, + 0x97,0xb9,0xaa,0xa0,0x7e,0xa9,0xb1,0xe7,0x09,0xa7,0xca,0x5f,0x35,0x3c,0x82,0xb7,0x9c,0x53,0xf5,0x2f, + 0x33,0x6c,0x49,0x5d,0xca,0x38,0x2e,0x33,0x59,0x67,0x86,0x8e,0x57,0xfc,0xa1,0x13,0xad,0x3d,0x95,0x84, + 0x0d,0xbb,0x2a,0x99,0xcd,0x7d,0x6d,0x54,0x69,0x14,0x7b,0xbe,0x04,0xe9,0x7d,0x58,0xed,0x0a,0xed,0x1d, + 0xae,0x15,0xba,0x08,0x7a,0x08,0x2e,0xd4,0x4b,0x66,0xbd,0xa8,0x06,0x1b,0xb0,0xa5,0x89,0xe6,0x79,0x1c, + 0x4d,0x3f,0xf4,0x22,0x31,0x3f,0xd7,0x83,0xff,0x54,0x70,0xd1,0xd5,0x36,0x80,0x83,0x64,0x57,0xf0,0x24, + 0xdf,0x4d,0x88,0x92,0xd4,0xb7,0x09,0x61,0xce,0x6f,0xdf,0xbe,0x78,0xd3,0x5b,0x50,0x37,0xae,0x0c,0xac, + 0x77,0x4e,0xa8,0xdf,0x33,0x15,0xe5,0xc6,0x04,0x8a,0x7d,0x77,0x1d,0xc7,0x0b,0x3a,0x48,0xc9,0x65,0x64, + 0x2f,0xb4,0x29,0xf1,0xda,0xfa,0x1d,0xcd,0xb1,0xf2,0x69,0x4c,0x8d,0x6a,0x9c,0xd0,0xc3,0xd9,0x04,0xd2, + 0x8f,0x2e,0xe5,0xdc,0xb4,0xfb,0x38,0xcc,0x16,0xcf,0x11,0x53,0xcb,0xa1,0x1f,0x3d,0x44,0xd7,0x6a,0x95, + 0xf8,0x2a,0x23,0xd4,0x7e,0xf9,0xd3,0x22,0x70,0xe4,0x57,0x6f,0xb9,0x70,0xd6,0x16,0x1e,0xb4,0x51,0x48, + 0x85,0x0d,0x2b,0x84,0x56,0x21,0x48,0x7e,0xf1,0x8b,0x4b,0xde,0x5c,0xfb,0x2e,0xd0,0x10,0x20,0x69,0x3d, + 0x4e,0xac,0x95,0xf8,0x8e,0x4b,0x3d,0x9b,0xcf,0xb3,0xeb,0x42,0xb0,0x9e,0xf2,0x29,0x60,0xe1,0x95,0xde, + 0x2c,0xa7,0xb1,0x7d,0xc8,0x96,0x39,0x01,0xdb,0x55,0x32,0x89,0x81,0xb6,0xf9,0x16,0x93,0x8b,0x5a,0x79, + 0x44,0xe2,0xea,0xb5,0x9b,0xb2,0xb7,0x58,0xe6,0x8b,0xac,0x88,0x8b,0x41,0x0f,0x17,0xa4,0x2a,0x5d,0x2f, + 0x02,0x50,0x12,0x16,0x8d,0x5a,0xa0,0xef,0xf3,0xb2,0x5c,0x04,0xbb,0xbb,0xfb,0x5f,0x3e,0x18,0xec,0x7f, + 0xfe,0xc5,0x60,0x7f,0xf0,0x68,0xb7,0x77,0x7d,0x4e,0x50,0x48,0xfd,0xf7,0x70,0xcb,0x1b,0xa4,0x8f,0x51, + 0x24,0x25,0x35,0xcd,0x4c,0x46,0xd9,0xcb,0x66,0x04,0xa7,0x45,0xaf,0xc8,0xe0,0x63,0xa6,0xe8,0xa9,0x3b, + 0x0e,0x83,0x8b,0xd1,0x8b,0xee,0x16,0x37,0x32,0x65,0x53,0x05,0x4a,0x64,0x5f,0x09,0xf1,0x04,0xa9,0x80, + 0xcd,0x28,0xfd,0x40,0x37,0xff,0x87,0x41,0xef,0x57,0xea,0x0c,0x17,0x58,0x34,0xa7,0xcf,0xa2,0x67,0x38, + 0xb0,0x9e,0xd0,0x4a,0x3d,0x08,0x09,0x30,0xda,0xd3,0x0f,0x3d,0x28,0x4b,0x82,0x46,0x00,0x34,0xd8,0xcb, + 0xdc,0x53,0x21,0xb9,0x96,0x69,0x99,0xcc,0x39,0xf7,0xe5,0xd7,0xcf,0x7b,0x73,0x50,0x22,0x05,0x6d,0x34, + 0x21,0x6b,0xfb,0x16,0xd6,0x1b,0x65,0x8f,0xba,0x56,0x42,0x36,0x4a,0x6d,0x79,0xd7,0xea,0xd3,0x6a,0xf0, + 0x16,0x11,0xa0,0xf5,0x70,0x97,0xf7,0x72,0xf6,0x18,0x36,0xe8,0xa9,0x3b,0x85,0x03,0xc1,0xf1,0x38,0x70, + 0x73,0x13,0x55,0x12,0x15,0x44,0xfc,0xe4,0x53,0x9a,0xf4,0x94,0xc8,0xda,0x9c,0x72,0x9a,0xdb,0x77,0x1a, + 0x13,0x58,0x60,0xa0,0x45,0x32,0x95,0x0b,0xdf,0xf1,0x75,0x35,0xba,0xab,0xd4,0x2f,0xba,0x98,0xcf,0x27, + 0x04,0xc3,0x3f,0x51,0x27,0xcf,0xbf,0x3b,0x78,0x2b,0xdf,0x0a,0xb0,0x96,0x04,0xd6,0x70,0xd5,0x85,0xcb, + 0x91,0x96,0xbd,0x48,0xce,0xd2,0x02,0xd7,0xd7,0x8b,0xb7,0x3d,0x15,0x53,0xbe,0x1b,0x98,0x64,0x0b,0x88, + 0x3c,0x3f,0xa5,0x65,0xc1,0xa6,0xd0,0x82,0x52,0xc1,0x0b,0x1c,0x5a,0xd9,0x08,0xac,0xec,0x1c,0xf5,0x01, + 0x18,0x30,0x69,0x22,0x30,0xa1,0x43,0x49,0x5f,0xf7,0x09,0x4a,0xa6,0x19,0xc8,0x24,0xa2,0x5c,0x16,0xaa, + 0x1b,0x22,0x5f,0x4c,0x97,0x34,0xa3,0xe5,0x29,0xdd,0x9d,0x97,0x51,0x71,0x01,0xf4,0x8b,0xdf,0x3d,0x7c, + 0x38,0xfe,0x19,0x61,0xbd,0x6b,0x20,0xe5,0x6f,0xe5,0x87,0xe3,0x9f,0x13,0xed,0x21,0xf6,0xa5,0xdf,0xa9, + 0x5f,0x55,0xda,0xdb,0xca,0x1f,0x32,0xb0,0x91,0x98,0x94,0x52,0x4b,0x13,0xd3,0xd3,0x5a,0x11,0xb1,0x35, + 0xba,0x84,0x53,0x88,0x92,0x2a,0x17,0x16,0x29,0xd0,0x83,0x4a,0xe7,0x79,0x9e,0xa5,0x44,0x75,0xf1,0xea, + 0xbb,0xaf,0x0f,0xdf,0x12,0x56,0x21,0x64,0x56,0xa8,0x62,0xdf,0x11,0xa9,0xc8,0x94,0x2e,0xa5,0x65,0x08, + 0xac,0x79,0x19,0x2d,0x74,0xde,0xb7,0x59,0x76,0x46,0x50,0xf0,0x8a,0x52,0x7a,0xcf,0xde,0xbe,0xa8,0xe8, + 0x64,0x95,0x6f,0xa8,0x64,0xe1,0x0f,0x88,0xdc,0x8a,0xe6,0xc9,0x69,0xce,0xd2,0x10,0xc1,0x26,0xfa,0xdb, + 0xca,0xd2,0xf4,0xa8,0xc9,0xd3,0x04,0x91,0x29,0x21,0xdb,0xfc,0x13,0x9b,0x71,0xc7,0x1a,0xe4,0x19,0x6e, + 0x14,0x6d,0x27,0x67,0x8e,0x73,0x45,0xd2,0x42,0xe7,0x54,0x5a,0xf1,0x19,0xf2,0xa8,0x54,0x34,0xfd,0x1d, + 0x06,0x98,0xdc,0x00,0x53,0xea,0x29,0xb6,0x15,0x8e,0x63,0xa2,0xc9,0xb9,0x45,0x5e,0x71,0x35,0x5e,0xb6, + 0x77,0xf0,0xba,0x4b,0x4b,0x4e,0x2b,0xd4,0x63,0x0f,0xbc,0x39,0x27,0x33,0x1d,0x75,0x05,0x6c,0xfd,0xa3, + 0xa2,0xb5,0x13,0x95,0xd2,0x73,0x2b,0x22,0xc0,0xe3,0xb2,0x2f,0x23,0x1a,0x37,0xfd,0x93,0x94,0x4c,0xff, + 0x23,0x05,0xf4,0xf5,0xcb,0x2c,0x3d,0xb3,0x92,0x88,0x3b,0x96,0xeb,0xe2,0x5b,0x82,0x90,0xb9,0x2a,0xdd, + 0xdb,0x25,0x82,0x54,0x15,0x13,0xdc,0x38,0x57,0xe5,0x6a,0x95,0xde,0xc5,0x51,0x3e,0x39,0x07,0xb5,0x88, + 0xbf,0xbc,0x91,0x84,0x01,0x88,0x2a,0xa7,0xeb,0x95,0xd1,0xc4,0x5b,0x46,0x13,0x42,0x8e,0x32,0x72,0xe0, + 0x7b,0xab,0x4f,0x9c,0xd5,0x95,0xa7,0x8b,0xbf,0x3b,0x7c,0x26,0x84,0x2c,0x20,0xe2,0x15,0x50,0xd9,0x2d, + 0xe5,0x9f,0xbd,0xd5,0x1b,0xa6,0xb0,0x49,0xad,0x23,0xb5,0x39,0xf6,0xe5,0x48,0xdb,0x24,0x35,0xdf,0xfe, + 0xf2,0xea,0x79,0x4e,0x29,0xf9,0xbb,0xe7,0xd4,0xdf,0xdb,0x83,0x67,0x5f,0x7e,0xfe,0xc5,0xe3,0x1e,0xa5, + 0xf6,0xa6,0x9c,0xdc,0xa3,0x74,0xa9,0x09,0xa5,0xe6,0x66,0x9d,0x83,0x97,0xdd,0x75,0x0e,0x5e,0x4a,0x9d, + 0x09,0x3c,0xb0,0xa2,0xd2,0xf5,0xe5,0x33,0x7d,0x1a,0x3b,0xca,0xbf,0xf8,0x9f,0xff,0xef,0x41,0x75,0x44, + 0xa9,0xf0,0x37,0xa0,0x77,0xe3,0x74,0xf2,0xa1,0xb3,0xf8,0x4c,0xe7,0xca,0x39,0x20,0xa0,0xff,0x21,0xfe, + 0xd0,0x3a,0x08,0x84,0x32,0x6a,0x05,0xce,0x19,0x60,0x7f,0x8c,0xc5,0xfb,0xe0,0x14,0x78,0x7f,0xd6,0x5b, + 0x16,0x8c,0xc1,0x6d,0xf2,0x77,0xd0,0x23,0xa0,0x9e,0xf2,0x9d,0x36,0xcf,0xb2,0x0b,0xe4,0x2f,0x17,0x0c, + 0xa3,0x2a,0xf2,0x24,0x17,0xff,0x83,0xa8,0x82,0x01,0xa1,0x5b,0x22,0x0b,0x08,0x15,0x5e,0xf4,0x10,0x0a, + 0x8f,0x4e,0x26,0x30,0x9c,0xea,0xdb,0xc7,0xba,0xf7,0xd4,0xa0,0x2e,0x99,0x0f,0x85,0x14,0xb9,0xa4,0x33, + 0x27,0xf8,0x9a,0x67,0x51,0xd0,0x3d,0xf6,0x23,0xf1,0xdd,0x05,0x70,0xb4,0x5c,0xc3,0x34,0xbd,0x58,0x37, + 0x02,0x6a,0x43,0x5d,0x8c,0xda,0x71,0x1f,0xdd,0xc4,0x74,0xca,0x16,0x18,0xe9,0x19,0x37,0x0e,0x5e,0x7f, + 0x97,0x8f,0x54,0xa4,0xa9,0xb7,0xa4,0xbc,0x4f,0x57,0x4d,0x21,0x37,0x33,0x86,0xae,0x17,0x65,0x40,0x78, + 0x89,0x65,0xd6,0xc1,0x0d,0x58,0x5c,0xc3,0x4a,0x1f,0xc0,0xa7,0x23,0x5f,0x8a,0x48,0xa6,0xd3,0x23,0x42, + 0x77,0xc0,0x5e,0x74,0x8a,0x79,0x95,0x86,0xcf,0x15,0x96,0xb9,0x22,0x41,0x5a,0x95,0x2d,0xfa,0x81,0x88, + 0xf2,0x12,0xee,0xac,0xa5,0x8e,0xa0,0xbf,0x56,0x79,0xc5,0x3e,0xd7,0xcb,0x5a,0x54,0x69,0xd1,0xaa,0x51, + 0x23,0x49,0xeb,0xf5,0x5e,0xd9,0x64,0x65,0xbb,0x66,0x9d,0x20,0xb6,0xea,0x32,0xc7,0xdd,0x3d,0xa9,0x02, + 0xf6,0xe1,0x9d,0x93,0xe2,0x4a,0xed,0x59,0x71,0x85,0xd6,0xac,0x04,0xfd,0xe2,0x82,0x56,0xbc,0xbb,0x55, + 0x23,0x8f,0x69,0x44,0xb4,0xaf,0x72,0x7f,0x6b,0x3e,0x75,0xb9,0xc0,0x98,0x35,0xfe,0xa6,0xb3,0x8d,0x8d, + 0xeb,0x71,0x14,0xc5,0x9e,0xe4,0x01,0x38,0x35,0xba,0xd7,0x3d,0x30,0xbf,0x6a,0x37,0xce,0xa3,0xe4,0xe7, + 0x15,0xa0,0x51,0xf1,0x0c,0x85,0x9b,0x90,0xb1,0x53,0x85,0xe8,0xec,0x95,0xca,0x2e,0x00,0xf3,0x1a,0xb9, + 0xd1,0xe4,0xe9,0xb6,0x4f,0xd2,0x88,0x19,0x29,0x6e,0x6e,0xd3,0xf6,0xf0,0xd4,0x37,0x6c,0x0f,0x57,0xdc, + 0xbc,0x3f,0x5c,0x75,0xe3,0xfe,0x30,0xfc,0x34,0x67,0x26,0xe0,0xa6,0x6e,0xa4,0xfa,0xd6,0xc8,0x5a,0x1c, + 0x54,0x79,0xed,0x1d,0xed,0xaa,0xb7,0xf6,0xad,0x64,0x23,0x21,0xb1,0x9a,0xa1,0x83,0xfe,0x47,0x04,0xd2, + 0x07,0x84,0xa0,0x46,0xba,0x5f,0xd1,0x6f,0x88,0x31,0x96,0xc0,0x30,0xaf,0xeb,0x97,0x1d,0xdd,0x0c,0xf1, + 0xfb,0x52,0x97,0x7c,0xcd,0xc6,0xdf,0x35,0x91,0x8f,0x16,0x9d,0x54,0xc2,0x06,0x56,0x17,0x26,0xb2,0x65, + 0x93,0x50,0x82,0x63,0x6d,0xd3,0x42,0xbc,0x22,0x14,0xbb,0x4b,0x44,0xc7,0x7b,0xb5,0xa7,0xbd,0x05,0x96, + 0x8c,0xaf,0x4a,0x3a,0xfb,0x07,0x4b,0xba,0x1e,0xe5,0x86,0x9e,0x67,0x67,0x51,0x4e,0x08,0xea,0x32,0x99, + 0x00,0x89,0x5d,0x09,0x5e,0xa8,0x04,0x19,0x6e,0x6e,0x61,0x45,0x64,0xd1,0x1d,0x53,0x70,0x20,0xd5,0x74, + 0x6e,0x16,0x81,0x38,0xba,0x45,0x4b,0x32,0xf7,0x71,0xa2,0xb9,0xf8,0xaf,0x49,0xe6,0xbe,0x26,0x26,0x20, + 0x3b,0x8b,0xd3,0xd3,0x79,0x72,0xd1,0x3b,0x8b,0x89,0x4a,0x24,0x4a,0xfe,0x34,0xfe,0x23,0x39,0xeb,0x5d, + 0xf2,0xed,0x3c,0xa5,0x02,0x57,0x2c,0x75,0x32,0x44,0x6c,0xdc,0x25,0xac,0xfb,0x8e,0x4a,0x17,0x6a,0xd8, + 0x20,0x60,0x89,0x75,0x58,0xa4,0x49,0xbc,0xbc,0xa6,0xbf,0xb4,0xa2,0x1c,0xd4,0x0a,0x23,0xc6,0xa0,0x89, + 0x92,0x8c,0xff,0x88,0x21,0xae,0x23,0xc0,0xef,0xa5,0x34,0x94,0x38,0x6d,0xec,0xdc,0x61,0x16,0x83,0x28, + 0x6e,0xa4,0x6b,0x81,0xdd,0x57,0x66,0x80,0xd9,0xa2,0x98,0x47,0x51,0xfa,0xa7,0x64,0x77,0x3f,0x25,0x25, + 0x8d,0x6c,0x72,0x1e,0x5d,0xc4,0xf3,0x8f,0x17,0xe0,0xd5,0x6b,0x29,0x29,0xde,0x3b,0x1a,0xc4,0x02,0x2e, + 0x6b,0xa6,0x4d,0x59,0x5e,0x42,0x83,0x3c,0x8b,0xaf,0x88,0x31,0xc7,0x5c,0xba,0xe4,0x79,0xd1,0x8c,0x8e, + 0x63,0x96,0xb6,0xc5,0x79,0x3f,0x50,0xe6,0x59,0x8c,0xf5,0x8f,0x73,0x15,0xbb,0x82,0x20,0xf2,0x02,0xed, + 0x34,0xc5,0x7a,0x3f,0x57,0x25,0xa8,0xf0,0x3c,0xcb,0x51,0xa8,0x2e,0xda,0x7b,0x8d,0x91,0xa0,0x25,0x19, + 0xca,0xc7,0x08,0xf7,0xbe,0x5b,0x26,0xd3,0xe4,0x2c,0xde,0x20,0xdc,0x23,0xfe,0x16,0xa8,0x28,0x06,0x84, + 0x60,0x3f,0xe7,0x33,0xf0,0x84,0x0a,0xf0,0xe3,0xa4,0x6c,0x49,0xf8,0x0e,0xa5,0xac,0xa6,0x3d,0xe3,0x78, + 0xce,0x7e,0x7e,0x62,0x6a,0x27,0xfd,0x34,0x19,0xdf,0xef,0xd3,0xa6,0x8c,0xef,0x25,0xc3,0x42,0x8f,0x10, + 0x53,0xef,0x2a,0xc3,0xc5,0x4c,0x65,0x2a,0x71,0x4e,0x1c,0x57,0xb2,0xbd,0xab,0xda,0x52,0xc5,0x70,0xda, + 0x98,0x14,0x2d,0x29,0xdf,0x99,0xac,0x7c,0xbd,0x99,0xb3,0xd8,0xd0,0xde,0x71,0x3e,0x6d,0x88,0xfb,0x0e, + 0x6b,0x45,0x69,0x62,0x02,0x22,0x71,0x7a,0xbb,0xcc,0x2f,0x96,0x3e,0xea,0x32,0x1c,0x5d,0x89,0x65,0x34, + 0x74,0x14,0xae,0xb2,0xf8,0x4c,0xa7,0x69,0x39,0x0d,0x6d,0xf9,0x35,0xd5,0x8c,0xf3,0xaa,0x87,0xba,0xbc, + 0x07,0xf2,0xa6,0x78,0xd6,0x92,0xfe,0xfd,0x1c,0x15,0xa5,0x74,0xda,0x90,0xfe,0xfd,0x06,0x22,0x68,0x71, + 0x91,0x5d,0x16,0x65,0x5d,0x02,0xc8,0x19,0x50,0x5e,0x3f,0x8b,0xa0,0x0a,0x6d,0x0b,0x02,0xf5,0xc8,0xc1, + 0x03,0xa4,0x0d,0x41,0x20,0x1d,0xcb,0x69,0x74,0xd6,0x90,0x04,0x3e,0xa7,0x85,0x31,0xa9,0xb6,0x24,0x30, + 0x8b,0xad,0x8c,0x4a,0x10,0xf8,0x9c,0x3b,0x36,0x19,0x5a,0x12,0xf8,0x73,0x4e,0x5d,0xeb,0xc4,0x4a,0x14, + 0xf8,0x1b,0xdd,0x4b,0x55,0x61,0x2d,0x0a,0xfc,0x2d,0x93,0x81,0xd4,0x44,0x81,0x5f,0xc5,0xd7,0xf1,0x19, + 0xab,0x76,0x37,0x85,0x81,0x6a,0xeb,0x4f,0x55,0x81,0xcd,0xdb,0xdf,0x90,0x0b,0x7e,0xd5,0xaa,0x50,0x03, + 0x82,0xbb,0xc4,0x83,0x6f,0x88,0x30,0xb0,0x2a,0xd0,0xa5,0x44,0x70,0x8b,0xbb,0xa9,0xd7,0x04,0x44,0xa6, + 0x45,0xe3,0x19,0x81,0xed,0x5d,0x12,0xc2,0x8d,0xc0,0xd5,0x2d,0x21,0xd4,0x10,0x63,0x09,0x08,0x2d,0xe0, + 0xab,0x8b,0x09,0x6b,0xe0,0xb7,0x51,0x56,0x48,0xa3,0x3c,0x27,0x42,0xba,0x4b,0x56,0xf8,0x4c,0xa4,0x84, + 0xf1,0x9d,0x42,0xc2,0x6f,0x31,0x7f,0x08,0x09,0x0d,0xb6,0x39,0x8b,0xe7,0xc9,0xef,0x17,0x98,0x5a,0xd2, + 0xd1,0xb4,0x11,0x11,0x7e,0x95,0x41,0xd0,0x9a,0x46,0x51,0x4e,0x9b,0x99,0xc6,0xd6,0xc4,0xbb,0x84,0x85, + 0x52,0x42,0x15,0x47,0xcd,0x8d,0x52,0xc3,0x0a,0xd9,0x1a,0x4c,0x69,0xe1,0x5f,0xfb,0xa2,0x6c,0xc8,0x0d, + 0x9f,0xd9,0x92,0xac,0x1a,0x70,0xb4,0x84,0x87,0x74,0x7a,0x2e,0x88,0x3d,0x81,0x08,0x25,0x93,0xe9,0xf6, + 0x88,0x25,0xc6,0x4a,0x88,0x24,0xb1,0xa2,0x9a,0x63,0x5c,0xcf,0xd1,0x8c,0xf3,0xe8,0xaa,0x8c,0xf2,0x88, + 0x70,0x20,0xcf,0x82,0x2f,0x59,0x90,0x16,0x46,0x9a,0x15,0xcb,0xfd,0x81,0xa6,0xa6,0xb1,0x95,0x6a,0xe0, + 0x1a,0x71,0x45,0x7a,0xcf,0xeb,0xb5,0x92,0x02,0x45,0x68,0x05,0x23,0xde,0xed,0xde,0x55,0x12,0x75,0x0a, + 0x14,0x29,0x9f,0x7a,0xfe,0xdd,0x1e,0xd9,0x79,0x7c,0x8a,0xdb,0xef,0x12,0x93,0x19,0xf4,0xde,0xc9,0x7c, + 0x65,0x5c,0x90,0xf9,0x11,0xa9,0x9d,0x60,0xac,0x3c,0x4f,0x7b,0x0c,0x7e,0x2f,0x02,0x1d,0xf6,0x47,0xa2, + 0xae,0x16,0xb9,0x46,0x4f,0x89,0x8a,0x4f,0xe6,0xc9,0xd9,0x14,0x08,0xbb,0xf7,0x7d,0xdc,0xbb,0x20,0xa2, + 0xd0,0x6e,0x2d,0x6b,0x1c,0xa1,0x29,0x6e,0x02,0xdc,0x0a,0x86,0x69,0x97,0xa5,0xbf,0x48,0x29,0x91,0xe6, + 0x34,0xcd,0x97,0x17,0x58,0x8e,0x32,0x2b,0x31,0xf4,0xa9,0x48,0x13,0x23,0x5c,0xbb,0xb4,0x88,0x4d,0x61, + 0xa2,0xb5,0xc7,0xa0,0x3c,0x98,0x9d,0x50,0xd7,0x71,0x4b,0xa4,0xa8,0xca,0xb6,0xb7,0x00,0x8d,0xd3,0x12, + 0xc5,0x74,0xad,0x36,0x24,0x8a,0x3f,0x2f,0xe7,0xbd,0xf3,0x84,0x29,0x01,0x3a,0xe2,0x58,0x11,0x26,0x20, + 0xa8,0xd8,0x75,0x34,0x39,0x2f,0xaf,0xc1,0x27,0xd0,0xec,0x7c,0xa4,0x58,0x78,0x88,0x5f,0x13,0xca,0x25, + 0x2f,0x6b,0x8f,0xc0,0x36,0xc7,0x85,0xcd,0xcb,0x51,0x6c,0x14,0x32,0xfe,0x62,0x1a,0xd4,0x62,0xc6,0x6f, + 0xe3,0xd3,0x7c,0x49,0x14,0xe0,0x26,0x51,0x23,0xad,0x29,0x03,0x18,0x8b,0xfb,0xf2,0x18,0xf2,0xc5,0x98, + 0x8e,0xff,0x1f,0x80,0xb9,0x28,0x6d,0x4d,0x93,0xb8,0x77,0x02,0x40,0xaa,0x94,0xfc,0x9e,0x32,0xec,0x5e, + 0x27,0x73,0x4c,0xdb,0xda,0x2b,0x54,0x83,0x1d,0x07,0x4d,0x88,0xfe,0xf9,0x23,0xf9,0x1d,0xf9,0xd7,0x31, + 0x4d,0xfb,0x1a,0xb0,0x4b,0x1f,0x97,0x71,0xac,0x28,0xd1,0x53,0xb8,0x6d,0x6b,0x8b,0x1d,0xf3,0x78,0xb3, + 0xd0,0x11,0xc2,0xab,0xbb,0xc5,0x8e,0xd1,0xe5,0x06,0xb1,0xe3,0x3b,0x90,0x72,0x34,0x8e,0xa9,0x16,0x3c, + 0xa2,0xaf,0x8d,0x62,0xc7,0xa6,0xdc,0xf1,0xf7,0x69,0x5d,0xee,0x18,0xdf,0x26,0x76,0x8c,0x60,0xd0,0x42, + 0xe7,0x80,0xe0,0x8a,0x11,0xd4,0x9f,0x90,0x3e,0x9e,0x26,0xbf,0x5f,0xc7,0xb9,0x10,0x86,0x0d,0x01,0xe4, + 0x0f,0x9a,0xbd,0xea,0x92,0x40,0x4a,0x26,0x80,0x48,0x10,0x6b,0x4b,0x04,0xa9,0xc1,0x82,0x61,0x92,0x80, + 0x9c,0x16,0x25,0x96,0xd3,0x43,0x18,0x04,0x20,0x4a,0x29,0x25,0xdd,0x50,0xa5,0xa6,0xec,0x7a,0x22,0xcd, + 0x04,0x45,0xc7,0x80,0x2a,0x88,0xe6,0x3c,0xc6,0xaa,0x9e,0xc7,0xc9,0x94,0x59,0x89,0x78,0x7e,0xa1,0x50, + 0x39,0x43,0x41,0x19,0xf7,0x34,0xa9,0xff,0x31,0x52,0xc8,0x9f,0x85,0x87,0xe8,0x92,0x42,0xa6,0x96,0x14, + 0xf2,0x2b,0x9a,0xd7,0xb4,0x8c,0xcf,0x08,0x1d,0x4e,0x2d,0x49,0x24,0x94,0x48,0xec,0x44,0xc3,0xa2,0xdb, + 0xe5,0x21,0x8b,0xac,0x0a,0x12,0xc0,0x9e,0x47,0x40,0x27,0x34,0xed,0xd3,0xa8,0x20,0x74,0x88,0x49,0x08, + 0x03,0x1f,0x77,0x0a,0x27,0x7f,0xcb,0x62,0xde,0x8c,0x3f,0x2f,0x9c,0xb4,0x64,0x15,0x77,0x08,0x25,0x6b, + 0x2d,0xdb,0xc8,0x8f,0xb7,0xc9,0xbe,0x88,0x89,0x45,0x39,0xfb,0xef,0x10,0x4c,0x5e,0xcc,0xb3,0xff,0xbd, + 0xe4,0x92,0xcf,0x70,0x97,0xe4,0xcc,0xc9,0xd2,0x49,0xa1,0xfb,0x48,0x80,0xfa,0x8a,0x11,0x57,0x9d,0xc4, + 0x27,0xc4,0xc5,0xbc,0xab,0x2a,0x53,0x6a,0x00,0x56,0x8c,0x10,0xca,0x42,0x3a,0x29,0x17,0xe2,0x02,0x50, + 0x41,0x35,0xe8,0xe8,0x95,0x7c,0xf7,0xfc,0x21,0xb8,0xdb,0x08,0x29,0x2f,0x81,0xc9,0xd4,0x10,0xa9,0x38, + 0x97,0x9b,0x52,0xaf,0x10,0x48,0x5e,0xa0,0x5d,0x25,0xa6,0x2c,0xb4,0x9c,0x52,0x10,0x3a,0x28,0x1c,0x1c, + 0x59,0x33,0x25,0x40,0xde,0xc7,0x49,0x2a,0x81,0x8f,0x59,0x0a,0xad,0xae,0x10,0xe6,0x85,0xf4,0x84,0x71, + 0x6b,0x4d,0xef,0x96,0x57,0x82,0xed,0x54,0x9c,0xbc,0x91,0x55,0xaa,0x1b,0x58,0x9d,0x84,0xb6,0x98,0x12, + 0x75,0x2c,0xc6,0x4a,0xb1,0x75,0x8c,0xd2,0x3a,0x6a,0x6a,0xb1,0x9e,0xd5,0xd3,0x5d,0x55,0xea,0x42,0x31, + 0x54,0xac,0x51,0xc4,0x77,0xd4,0x6e,0x4a,0xc6,0x50,0xbf,0x49,0xdf,0xdf,0xd6,0x46,0x4b,0x82,0xf9,0x11, + 0xf3,0x65,0xb9,0x44,0x43,0x8e,0x79,0xd7,0x84,0x55,0x9d,0xb6,0x38,0x13,0x15,0x6d,0x9c,0x50,0x1f,0x5e, + 0x53,0x98,0xf9,0x0d,0x4b,0x95,0x41,0x9d,0xa7,0x45,0x75,0x39,0x30,0xc0,0x6f,0x90,0x68,0xf2,0x82,0xe2, + 0xfe,0xbe,0x65,0x54,0x4d,0xa1,0xe6,0x0f,0x15,0x16,0xb4,0xa4,0x98,0xa9,0xa6,0xd5,0x16,0xd6,0xd2,0xfd, + 0x89,0xdd,0xb3,0x97,0xef,0x4f,0x6f,0x9f,0x6a,0xc4,0x12,0x70,0xa2,0xea,0x85,0xb9,0x13,0x6f,0xdb,0xf3, + 0x0e,0x29,0xe7,0x47,0x54,0x96,0x1e,0xbb,0x45,0x9d,0xd5,0x5d,0xdc,0x29,0xe9,0x3c,0x8c,0xf3,0xe5,0x99, + 0x11,0x75,0x3e,0xb3,0x6f,0xd6,0xba,0xa0,0xf3,0xe7,0x6c,0x7e,0x06,0x79,0x62,0x43,0x64,0x46,0xc9,0x65, + 0x96,0x89,0x28,0xad,0x5b,0xda,0x19,0x27,0x0a,0x23,0x58,0xcc,0x54,0x97,0xc8,0x13,0x14,0x18,0xb0,0xe5, + 0x42,0x53,0x06,0xb6,0xd0,0x53,0xd3,0x04,0x4a,0xf0,0x79,0x09,0xda,0x30,0x56,0xa2,0x4f,0x6e,0xdc,0x12, + 0x01,0xd1,0xdd,0x53,0xe1,0x5e,0xce,0xd4,0xd2,0xcf,0x75,0x15,0x7b,0x89,0x65,0x83,0xcf,0x16,0x0b,0xd7, + 0xbb,0x81,0x2e,0x63,0xa5,0x5d,0xe9,0x50,0xc3,0x10,0xfe,0xde,0xe8,0x18,0x62,0xc1,0xfd,0x27,0xd3,0xe4, + 0xaa,0x37,0x99,0x13,0xb9,0x10,0xaa,0xdc,0x5e,0xa0,0x3e,0x6f,0x7a,0x9c,0x40,0x7c,0xac,0x88,0x6c,0xfd, + 0x9e,0x91,0xd9,0x99,0x5f,0xbd,0xb5,0xd3,0xfb,0x07,0x21,0x54,0x28,0x8e,0x84,0xce,0x39,0x91,0x33,0xf3, + 0x98,0xae,0x09,0xb0,0x8b,0x94,0x31,0x99,0x27,0x93,0x0b,0x9d,0x7c,0x80,0x0f,0xa7,0x47,0x94,0x1e,0x7b, + 0x6e,0x08,0x9d,0x3d,0xe7,0x69,0xad,0xf7,0x2c,0x2d,0xf3,0x6c,0x5e,0x4f,0xe4,0xc0,0x5f,0x94,0xb4,0x4b, + 0x69,0xfa,0x5f,0x2b,0x7b,0x1e,0x9d,0xc6,0x54,0xe3,0xe6,0xa6,0xc7,0x10,0xd1,0x5b,0xaf,0xed,0x92,0xf7, + 0x8d,0x5f,0x65,0x06,0x17,0xe5,0x31,0x59,0x9c,0x99,0x8a,0x7f,0xd3,0xaf,0x32,0x42,0xfd,0x51,0x6a,0xfc, + 0x2c,0x6f,0xed,0xaf,0x2b,0xc1,0xe4,0xc6,0x22,0x70,0xdb,0xc5,0xca,0xa6,0xc1,0x8d,0x35,0xb5,0x96,0xb7, + 0x6b,0xdd,0x10,0x5c,0x37,0xe2,0x9b,0x3b,0x0e,0xb7,0xaa,0xdf,0x62,0x2e,0x70,0x8f,0x6e,0x05,0xda,0x9a, + 0x24,0x5d,0xe0,0xad,0xbc,0xca,0x85,0x07,0x9f,0xda,0x82,0xd6,0x02,0x08,0x3e,0x7c,0x00,0xbf,0x6b,0xb4, + 0xf2,0x08,0xaf,0xa0,0x5d,0x02,0x5a,0xa3,0x81,0xfe,0x36,0x62,0xb5,0x82,0x97,0xd1,0xc6,0xd3,0x4a,0x87, + 0xbb,0x01,0x13,0x04,0x4b,0x49,0xb6,0x11,0x26,0x24,0x77,0x23,0x4c,0xf4,0xc2,0xb0,0x97,0x4c,0xff,0x8f, + 0x82,0x0c,0x89,0xc9,0x35,0x95,0xbf,0xff,0xc5,0xc0,0xc0,0x3f,0x69,0xfd,0xfe,0x37,0x01,0x04,0xc2,0x2c, + 0x2d,0x40,0xa8,0xad,0x2a,0x63,0x16,0x5a,0x74,0xb8,0x23,0xd7,0x69,0x3c,0x46,0x5e,0x69,0xfe,0x35,0xe0, + 0x32,0xbc,0xde,0x28,0x55,0xaf,0x3e,0x4f,0x88,0x9c,0xc3,0x76,0x46,0x89,0xec,0x1e,0x4f,0x96,0x23,0xbf, + 0x84,0xaa,0x7f,0x70,0x1e,0x80,0x00,0xe0,0xcd,0xd0,0x79,0xb4,0xf7,0xe5,0x23,0xa7,0x5e,0xdd,0xe9,0x5d, + 0xed,0x40,0x2e,0x30,0x57,0x56,0x6c,0x6a,0x04,0x03,0x3d,0xb6,0x0d,0x00,0x41,0xf8,0xfd,0x8e,0x81,0x53, + 0x89,0xbf,0x3a,0xec,0xfd,0x6a,0xd8,0x8f,0x3f,0x72,0xd8,0x32,0x2e,0x7b,0xd0,0x35,0x08,0x3d,0x52,0xc3, + 0x1c,0xfb,0x1c,0x7f,0x32,0x9e,0xb6,0x20,0x4b,0x07,0x6b,0x0a,0x6f,0x78,0x05,0x82,0x0a,0x70,0x64,0x49, + 0x38,0xc8,0xbb,0x95,0x48,0x9f,0x70,0x47,0x0f,0x17,0x36,0x81,0x72,0x16,0xad,0x20,0x37,0xaf,0x01,0x96, + 0xaa,0xbe,0x15,0xd6,0x7a,0x91,0xc4,0x91,0xfa,0xfb,0x94,0x9b,0xe3,0xb8,0x17,0xf4,0x37,0x54,0xa9,0xfd, + 0xfd,0x2e,0x80,0x46,0xd4,0x74,0x2e,0xd6,0x6c,0x91,0x5b,0xe0,0x3f,0x4f,0x54,0x03,0xdc,0x20,0xff,0x0a, + 0x39,0x7d,0x67,0x53,0x83,0x7e,0xc7,0xd8,0xf4,0x28,0xfc,0x56,0x2f,0xd2,0x18,0x61,0x78,0xe5,0xcd,0x6e, + 0xad,0xb4,0xfb,0x63,0xb6,0x11,0x54,0xd1,0xa9,0x2a,0x37,0x8f,0xd1,0x55,0x72,0x16,0x95,0x59,0x3e,0x98, + 0xd3,0x0e,0x2f,0xa3,0xb3,0xb8,0xe9,0x73,0xd1,0x61,0xf1,0x82,0xf6,0xe0,0x68,0x3c,0x5e,0x79,0x43,0xd5, + 0x9c,0x7b,0x13,0x13,0x7b,0xfd,0x37,0xa2,0x29,0x1c,0x1f,0x56,0x0a,0x41,0xec,0xb3,0x47,0xc4,0x9b,0x94, + 0xc8,0xaf,0x59,0xa2,0xc8,0x3e,0xc6,0x33,0xfa,0xf9,0x70,0x6b,0xcf,0x2f,0xe4,0x49,0x6e,0x6b,0x5f,0xfd, + 0x12,0x3a,0x8b,0x3e,0x55,0x99,0x17,0x44,0x21,0x4f,0x30,0xae,0xc0,0x59,0x69,0x4a,0xf5,0x6d,0x9e,0x9d, + 0x31,0x63,0x68,0x6a,0xd9,0x64,0x16,0x25,0x0a,0x0f,0x73,0x18,0x9d,0x22,0x5c,0xa0,0xbc,0x3d,0x69,0x3b, + 0x84,0x9b,0xea,0x95,0x54,0xf5,0xc0,0x6f,0x7f,0x3a,0xdb,0x4e,0x5c,0xd7,0x5f,0x04,0x17,0xc1,0x4d,0xac, + 0x24,0xdd,0xd4,0x45,0xb2,0x08,0x9c,0xbd,0x01,0xff,0x57,0x3d,0xfd,0xd5,0x4a,0xa8,0xe7,0xb1,0xbd,0x7a, + 0xd1,0xb5,0xa2,0x83,0xa9,0x0f,0x43,0x0a,0x23,0x60,0x73,0xf5,0x78,0x05,0x09,0xbc,0xdd,0x4e,0x59,0x17, + 0xce,0x8b,0x03,0x09,0x5d,0x1c,0x6e,0x70,0x45,0x26,0x5d,0xab,0x13,0x6f,0x7a,0x26,0xd8,0xd0,0x1e,0x1d, + 0xd4,0xe8,0x43,0xbb,0xe9,0xba,0x04,0xdb,0x48,0xbf,0xb8,0x9c,0x2d,0x99,0xc6,0x3e,0x96,0x66,0x2e,0x2c, + 0x34,0xe4,0x32,0x46,0x64,0x28,0x9d,0x40,0x54,0xb8,0xc5,0xeb,0xc1,0xdf,0x96,0xe8,0x8d,0xbf,0xb5,0xbc, + 0x8d,0x7d,0x64,0x19,0x59,0x59,0x25,0xd3,0x11,0xbf,0x24,0x96,0x2c,0xe7,0xb1,0x4f,0x88,0x5b,0x41,0x14, + 0xc1,0x90,0x74,0x49,0x54,0x35,0x31,0xa4,0xf1,0xf4,0xd9,0x5b,0x95,0x13,0x4f,0x21,0x12,0x91,0x31,0x2f, + 0x14,0xb1,0x2b,0x45,0xaf,0x2f,0x21,0xc0,0x30,0xbf,0x0f,0x5e,0xaa,0xae,0x2d,0xd1,0x83,0xce,0xac,0xa4, + 0x0b,0x9c,0x62,0xcb,0x10,0x68,0xfb,0x35,0xbd,0x8c,0xd9,0xd5,0x69,0x67,0x2c,0x0c,0x32,0xe0,0xab,0xda, + 0x70,0x3e,0x90,0xc4,0xa9,0xf7,0x34,0xce,0xc9,0x63,0x68,0xb1,0x5d,0xc5,0x26,0xc1,0xa6,0xfe,0x65,0x48, + 0xe2,0x5d,0x7b,0xda,0xb4,0x83,0x52,0x6e,0x80,0xcb,0x81,0x7d,0xc6,0xd0,0x8c,0x0a,0xb6,0x69,0xe2,0xd1, + 0xf2,0xcd,0x8f,0xf0,0x13,0xae,0xc3,0x3f,0x1d,0xed,0x28,0x58,0x59,0x01,0xe9,0xc1,0xc1,0x7f,0xd7,0xb9, + 0x76,0xd1,0xb5,0x4f,0x67,0x9b,0x43,0x9b,0x9b,0xf3,0x64,0x02,0x9b,0xe7,0xe5,0xcb,0xc6,0xf9,0x84,0x5b, + 0x8f,0x41,0x93,0xf3,0xe4,0x44,0x45,0x0c,0xf0,0xaa,0xb0,0x87,0x52,0x58,0x5f,0x22,0x46,0xb9,0x75,0xe2, + 0x65,0xcc,0x56,0xaa,0x75,0xa2,0x75,0xde,0xb0,0x61,0x20,0xc8,0x6e,0x50,0xf6,0x86,0xd9,0x93,0xfd,0x47, + 0x8f,0xe8,0x4f,0x3f,0xdc,0x7f,0xec,0x29,0xdf,0xf4,0x99,0x38,0x27,0xcb,0xc2,0x9d,0x07,0xc8,0x7a,0x12, + 0x3e,0x30,0x25,0x12,0x53,0xa2,0x1c,0x54,0xdb,0x10,0xe6,0xd4,0x73,0x6d,0x1f,0xc2,0x84,0x52,0x2c,0xc1, + 0x86,0xeb,0x0d,0xca,0xf3,0x38,0xb5,0x7d,0x8c,0x4a,0x7e,0xc5,0xd7,0x6f,0x2c,0x22,0xfc,0xfb,0xc6,0x6c, + 0x9b,0xbd,0xdd,0x58,0xa8,0xce,0xc4,0x6e,0xee,0x0a,0xab,0xd9,0x99,0x5b,0x94,0xd9,0xa2,0x73,0xd3,0x14, + 0xca,0xa3,0x15,0x5e,0x7b,0xd6,0x7f,0x15,0xa5,0x57,0x9c,0x67,0xd7,0xaf,0x6d,0x24,0xde,0x19,0xf0,0x12, + 0x80,0x98,0xd6,0x00,0x31,0xbc,0x51,0xb7,0x04,0x5d,0x05,0x22,0x29,0x2a,0xd7,0xbe,0xf8,0x35,0x4f,0xdb, + 0x10,0xbb,0xbd,0x3d,0x21,0x6a,0x33,0xc7,0xef,0x6c,0x89,0x28,0xe9,0xad,0x12,0x08,0x77,0xde,0x06,0xf4, + 0x22,0x2e,0x75,0x1d,0x6b,0xbe,0x8d,0x91,0x08,0xee,0xd8,0x70,0x4c,0xd6,0xfe,0xe3,0xf8,0x21,0xc8,0x4e, + 0xa2,0x5c,0xba,0xe7,0xa9,0x88,0x8f,0x8e,0x26,0x79,0x36,0xad,0x4c,0x35,0x21,0xb7,0x36,0xa3,0xee,0x52, + 0xea,0x56,0xef,0x1e,0x99,0xa1,0x85,0x09,0xd9,0xb0,0x8a,0x59,0x23,0x74,0x8d,0x16,0xe7,0x11,0x33,0x0d, + 0xe7,0xe5,0x72,0x38,0x1c,0x67,0x88,0x70,0x36,0x84,0xbf,0x88,0xd6,0x2d,0xe2,0x91,0xf3,0xdd,0xe1,0xe1, + 0xdb,0x9e,0xfe,0xec,0x21,0x38,0x74,0xcf,0xe9,0x57,0x05,0x06,0xea,0xa6,0x42,0x0a,0xcb,0x13,0x47,0x30, + 0x69,0xd1,0xb9,0x4e,0x60,0xc2,0x5f,0xc9,0x48,0x9b,0xd0,0x80,0xd8,0x36,0x6e,0xe9,0xf5,0x9d,0xe3,0xf4, + 0x38,0x75,0xfa,0xb9,0xcf,0xa1,0x91,0x6c,0x91,0xe0,0xad,0xc6,0x9b,0xd1,0xfb,0x24,0x63,0x7f,0xaf,0xae, + 0xb3,0x1b,0x2d,0x92,0x5d,0x75,0x13,0x3b,0x4d,0x10,0xee,0x0a,0x09,0x5d,0xaa,0xb0,0x35,0x34,0x04,0x6d, + 0x05,0x29,0x49,0x04,0xbf,0x03,0x15,0xa8,0x6b,0x50,0x5f,0xc0,0x01,0xb8,0x2e,0x38,0xd1,0x65,0x80,0xb4, + 0x0f,0xb8,0xe3,0xa9,0x61,0x5b,0x82,0xba,0x4f,0x1a,0x79,0x75,0x57,0x7e,0xea,0xe0,0xab,0x9a,0x7f,0x66, + 0xfc,0x96,0x15,0x8a,0x9e,0x82,0x12,0x18,0x7e,0xd2,0xf0,0x95,0x0a,0xe9,0x27,0x0e,0x5d,0x6a,0xfd,0x99, + 0x61,0x2b,0x8d,0x7b,0x3d,0xe4,0x9a,0x8c,0xef,0x93,0x06,0xae,0x29,0x96,0x5d,0x36,0x49,0xeb,0x18,0x3f, + 0x5c,0x6d,0x76,0x4f,0x41,0x23,0x2f,0x43,0x3b,0x49,0xf2,0x40,0x7d,0xae,0x56,0x6d,0x7a,0x49,0x95,0xa8, + 0xa7,0xae,0x56,0x7b,0x35,0xc2,0xa9,0xed,0x4b,0xd4,0x54,0x93,0x42,0x9e,0x57,0x5d,0x66,0x7b,0xc3,0xfc, + 0x49,0x23,0x5b,0x3b,0xb8,0xce,0x75,0x9c,0xe4,0x24,0x6c,0x94,0x38,0xca,0xc7,0x84,0x6d,0x4d,0x79,0x89, + 0x62,0x53,0x69,0xea,0x07,0xc9,0xa0,0xfa,0xb0,0x46,0x77,0x08,0xbe,0x3e,0x19,0x58,0x5f,0xc8,0xd4,0xb3, + 0x4f,0x6a,0x13,0x37,0xb7,0x63,0xbd,0xc2,0xd3,0xbd,0xd1,0x1e,0x52,0xd4,0xb4,0xed,0x4b,0xb3,0x55,0xd0, + 0x14,0x23,0x42,0xe8,0x52,0x14,0x7b,0xdc,0xfd,0xed,0x84,0xa6,0xf2,0xa1,0x78,0x33,0xfb,0x25,0x8e,0x2f, + 0xbc,0xa7,0x34,0x36,0xa5,0xdd,0xe3,0x3e,0x68,0x65,0x5d,0x1b,0x15,0x1f,0xf7,0x51,0xbb,0x9e,0x56,0xf3, + 0x71,0xbf,0x68,0xe5,0xcd,0x44,0xd3,0xc7,0xdd,0xff,0xbc,0x95,0x55,0x68,0x7d,0x1f,0xf7,0x61,0xbb,0xc3, + 0x42,0x94,0x7e,0xdc,0xcf,0x5b,0xdd,0x21,0xb6,0x50,0xb5,0xe0,0x98,0x57,0x08,0xb7,0x0f,0x1f,0x0f,0xf0, + 0x36,0x84,0x1b,0xb0,0x6f,0xc8,0xa6,0xff,0x1c,0xe0,0x0b,0x07,0xf0,0xa9,0x47,0xd7,0xcc,0x45,0xaa,0xff, + 0x99,0x33,0x5c,0x1f,0x7d,0x85,0x7e,0x98,0xe6,0xfd,0x34,0xec,0x83,0x2a,0xbb,0x4a,0x01,0xba,0xfb,0x0c, + 0x77,0x1d,0x28,0xcf,0xb6,0xf8,0xdf,0x42,0x1c,0x2b,0xf0,0x66,0x1c,0x86,0x89,0x5d,0x82,0xee,0x0d,0x23, + 0x7d,0xb6,0xd4,0x91,0x8a,0xf4,0x91,0x2a,0xd4,0x84,0xe1,0xc9,0x87,0xa3,0x91,0xe4,0x23,0x22,0x26,0x82, + 0x62,0x8b,0x7e,0x71,0x24,0xd8,0x2d,0x38,0x20,0xac,0x85,0x99,0x22,0x6e,0xd7,0x4f,0xfa,0x61,0xb1,0xc6, + 0x9d,0x49,0xe3,0x0d,0x33,0x3f,0x1e,0xd4,0x08,0x7e,0x89,0xd3,0x3e,0x9b,0x67,0x88,0x7a,0xb5,0xab,0x03, + 0xa0,0x79,0x56,0x31,0x06,0x9a,0x75,0xeb,0x49,0xa8,0x7b,0xb1,0x62,0x45,0x0d,0x73,0x04,0x39,0xf9,0x89, + 0x59,0xca,0xe2,0x2d,0x88,0x1f,0x6b,0x5f,0x3d,0x7e,0xc5,0xa7,0xd9,0x17,0xcb,0x40,0xa7,0xd6,0x18,0xb7, + 0x5a,0x09,0x2b,0xc3,0xb0,0x73,0xb5,0x02,0x2a,0x51,0x18,0xbc,0x7a,0x0e,0xa5,0x54,0xdc,0x5e,0x2d,0x4b, + 0xa7,0x0a,0xfb,0x57,0xcb,0x42,0x0a,0xb8,0xc1,0x5a,0x62,0xb2,0xb0,0x19,0xc3,0x7a,0x2f,0x26,0xdd,0xf0, + 0x8a,0xb5,0x7c,0x95,0xb8,0x6e,0x82,0x0f,0x82,0x75,0x7e,0x24,0x50,0x37,0xb6,0x85,0x20,0xba,0x45,0x49, + 0x57,0x1b,0x41,0xf4,0xb2,0xde,0xc9,0xee,0x0b,0xd7,0xb0,0x67,0x66,0x17,0xcb,0xdb,0x76,0x51,0x1b,0x71, + 0x94,0xea,0x56,0x6d,0xf6,0x9d,0x32,0x19,0xdf,0x45,0x7e,0x39,0x35,0x6d,0x6a,0x9c,0x43,0x3d,0xdf,0xb2, + 0x73,0xbe,0x65,0x6d,0xbe,0xe6,0x26,0xee,0xe2,0x1a,0x6a,0x73,0xed,0xe4,0xfc,0x36,0xc2,0xae,0x62,0x2c, + 0x88,0x15,0x3c,0x8b,0xe9,0x48,0x9a,0x04,0x43,0xb7,0x6b,0x4e,0xde,0xee,0x52,0xc5,0x35,0xab,0xd7,0xee, + 0xf7,0xfd,0x7a,0x82,0x0a,0x73,0xbd,0x1f,0x98,0x64,0x33,0x9c,0xd0,0xd9,0x75,0xac,0x10,0x66,0xbd,0x07, + 0x9d,0x65,0x76,0x6a,0x65,0x1e,0x76,0x96,0x39,0x3e,0xae,0x15,0x7a,0xd4,0x59,0x68,0xe5,0xf8,0xcd,0x99, + 0xae,0xd7,0xfe,0x83,0xc7,0x7b,0xbc,0x5c,0x6d,0x96,0xcb,0x5e,0x2d,0x66,0x0f,0xcc,0x22,0x28,0x0f,0x51, + 0xd5,0x12,0x51,0x0b,0x84,0x20,0x35,0x37,0x0d,0x05,0x11,0x21,0xd4,0xbb,0x82,0x4f,0x54,0xa2,0x2a,0x7d, + 0x4c,0xf5,0x5d,0xae,0x3d,0x1c,0xdb,0xea,0xdc,0x8e,0x89,0x17,0xbe,0xa1,0xae,0xb0,0x04,0x6a,0x95,0x55, + 0x30,0xef,0x07,0x3a,0x68,0xb7,0x3e,0x72,0x04,0x69,0x43,0xb5,0x0d,0x6a,0x81,0xf8,0x8f,0x89,0x18,0x2e, + 0x1e,0xb8,0xf4,0x0a,0xd7,0x2b,0x63,0x0c,0x12,0x22,0x3c,0xd0,0xcf,0x0b,0x5d,0xe3,0x5c,0x77,0x2f,0xc1, + 0x61,0xfc,0xbe,0xfc,0x73,0xcb,0xd0,0xe3,0xe3,0xd2,0x2e,0x06,0x61,0xb5,0x79,0xb6,0x70,0xbc,0x4f,0x5c, + 0x9f,0x8f,0x68,0x1b,0x8a,0xfe,0xd4,0xae,0x5a,0xaf,0x8f,0xa8,0x20,0x76,0x00,0xba,0xca,0x83,0x8f,0xa9, + 0x52,0x33,0x0f,0xd0,0x35,0xf5,0xca,0xf7,0x36,0xcd,0x25,0x59,0x68,0xf8,0xfe,0x88,0x2e,0x6a,0x36,0x06, + 0xba,0x8b,0xc7,0x9f,0x50,0x33,0x11,0x9b,0x03,0x5d,0xb5,0xb9,0xfd,0x77,0xed,0x4f,0x05,0x1a,0x88,0xa5, + 0xd9,0xd2,0x74,0xb8,0xfd,0x1a,0x1d,0x59,0xb2,0x82,0xb8,0x25,0xac,0x62,0x29,0x40,0xb0,0x99,0xab,0xdb, + 0x55,0xb2,0xe4,0x4f,0x24,0xb3,0xaa,0xb9,0x7c,0x2a,0x85,0xd5,0x1c,0x60,0x17,0x86,0xbe,0x7b,0x46,0xa0, + 0x36,0x1a,0x1a,0x1e,0xdd,0xd7,0x14,0x1f,0x22,0xb5,0x52,0x36,0xea,0xdf,0x63,0xc1,0x9e,0x2d,0x78,0x27, + 0xb2,0x4a,0x28,0x2e,0x88,0xfe,0xe1,0xa5,0x0d,0xba,0xef,0x43,0x76,0x95,0x04,0xc7,0x8b,0xce,0x2c,0x81, + 0x53,0x1a,0x23,0x7c,0xa4,0xc5,0xfc,0x5a,0xc2,0xba,0x7e,0xf5,0xe1,0x05,0x67,0xcb,0x38,0xbe,0x41,0x31, + 0x8e,0x9e,0x1b,0x17,0xf0,0xcf,0xa6,0xe4,0x17,0x2c,0x02,0xa7,0x09,0x05,0x0f,0x3f,0x8f,0x1f,0xf9,0x59, + 0xfa,0x53,0x5d,0xe8,0x5f,0x0b,0xe5,0xd1,0x1c,0x18,0x93,0x5f,0x39,0x9c,0xdf,0xb8,0xfb,0x7b,0x7b,0x9f, + 0x09,0x66,0x8e,0xa7,0xbb,0x04,0x55,0x59,0x19,0x21,0x34,0xf1,0xb0,0x75,0xed,0x56,0x3a,0x2d,0x70,0x2a, + 0xff,0x5f,0x7f,0xe7,0xd6,0x37,0xa3,0xfb,0xda,0x6d,0x4c,0xcb,0x12,0x8c,0xe2,0xf7,0x9d,0x2b,0x4b,0xab, + 0x4a,0xf5,0x08,0x86,0xb1,0xfb,0x6b,0x91,0x41,0x2b,0xd1,0xeb,0x5d,0xb7,0x35,0xc2,0x87,0x77,0x48,0x6c, + 0xc1,0x11,0x4a,0xbc,0xb5,0x86,0xd0,0x56,0xa4,0x00,0x4d,0x49,0x6e,0xb7,0x50,0x4e,0x43,0xa8,0x12,0x52, + 0xd2,0x35,0xb9,0xb7,0xe7,0x79,0xeb,0x9a,0x2e,0x51,0xf7,0xf0,0x38,0x6a,0x95,0xd5,0xcb,0x5f,0xef,0xd5, + 0xaf,0xd5,0x07,0x94,0x77,0x34,0x88,0xa7,0x94,0x6e,0xf9,0xf5,0x9e,0x45,0xd2,0xb7,0xe3,0xe9,0x72,0x28, + 0x5d,0x5e,0x75,0xcd,0x76,0xa4,0xc4,0x76,0xd4,0x63,0xd6,0x36,0x38,0x87,0xb5,0x37,0xd4,0x5c,0x45,0x29, + 0x11,0x42,0xb4,0x74,0x00,0x8d,0x6f,0x6c,0x33,0xef,0x87,0x2a,0xf5,0x28,0x1d,0xcb,0x9b,0xe7,0xf0,0x16, + 0x9e,0x24,0xdf,0xad,0xb7,0xe1,0xad,0x45,0xba,0xa0,0x22,0x67,0x6e,0xec,0x46,0x49,0xcd,0x9b,0x5d,0x61, + 0xcc,0x1b,0xc4,0xfb,0x6d,0xea,0xd6,0xe6,0xf0,0xfc,0x9b,0x86,0x58,0x65,0x3f,0x7e,0x28,0x1a,0x09,0x45, + 0x90,0xfc,0x15,0x02,0xde,0xda,0xea,0xdb,0x88,0x77,0xb5,0xe9,0x90,0x78,0x37,0x15,0xd3,0x36,0x9f,0x0f, + 0x29,0x20,0xa0,0xd7,0x7c,0xc4,0xab,0x08,0x7a,0xbe,0x3a,0xa0,0x6e,0x59,0x04,0xbb,0xbb,0x78,0x28,0x52, + 0x1a,0x96,0xb4,0x06,0x05,0x6b,0x59,0x22,0x8d,0x57,0xe4,0x2c,0xce,0x20,0x8c,0xdd,0xfd,0xbd,0x60,0xbe, + 0x4d,0x22,0x44,0x04,0x37,0x5a,0x4b,0xbd,0xea,0xd2,0xbf,0x88,0xc1,0xea,0x08,0x57,0x30,0xa8,0x1e,0x9f, + 0xd6,0xad,0x95,0xda,0xcc,0x29,0x03,0x21,0xd0,0x35,0x5b,0x20,0xc0,0x4e,0x2d,0xc1,0x04,0xe9,0x36,0x92, + 0xfc,0x5a,0x36,0xdc,0x87,0xd2,0x40,0x2f,0xe3,0x32,0xff,0x60,0x06,0x34,0x34,0x83,0x99,0x47,0x25,0x7c, + 0x8a,0x46,0xa5,0x5f,0x25,0x11,0x92,0x4a,0xf1,0xef,0x47,0x4b,0x47,0xea,0x3b,0xb0,0x61,0xdf,0xda,0x2b, + 0x6e,0xf1,0x5f,0x1f,0x21,0x3d,0xe4,0x70,0x1f,0xe6,0x7a,0xb3,0xd8,0xe9,0x61,0x75,0x7a,0x8d,0x1c,0xb0, + 0x21,0xe9,0xd1,0x44,0x64,0x53,0x18,0xd8,0x2c,0x56,0xcf,0xae,0x3f,0xd3,0xea,0xb3,0xd5,0xac,0x51,0x97, + 0xf8,0xa5,0x5a,0x3c,0x01,0xff,0x90,0xdd,0x45,0xe9,0xf4,0x0d,0xcb,0x5b,0x44,0x7f,0xb9,0x25,0xfa,0xab, + 0xc9,0xfd,0x72,0x5b,0x3a,0x67,0x84,0x7e,0x79,0x35,0x39,0x4c,0x29,0x6f,0x88,0xf0,0xf2,0xda,0xb3,0x18, + 0x65,0x1b,0xb1,0xa0,0x5f,0x89,0xc7,0x02,0x37,0x1f,0x88,0x7c,0x6f,0xb4,0x1f,0xec,0x79,0x2b,0x84,0x3e, + 0x17,0xa1,0xde,0xe8,0x81,0xfa,0x36,0x92,0xbc,0xd1,0x23,0x5d,0x42,0x89,0xef,0x46,0x5f,0xa8,0x04,0x91, + 0xd9,0x8d,0xf6,0x3f,0x57,0xdf,0x5a,0x50,0x37,0x7a,0xa8,0x1b,0x11,0xe9,0xdc,0xe8,0x73,0x34,0x41,0x47, + 0xb7,0x85,0x63,0xea,0xa2,0x60,0xbf,0xfc,0xab,0x92,0x80,0x86,0xc8,0xee,0x76,0x59,0x00,0x5d,0xb4,0x74, + 0x74,0xed,0xd7,0xf6,0xe6,0xfb,0xd1,0x86,0xad,0x6f,0xed,0x60,0x5d,0x5c,0x5b,0xc9,0x67,0x09,0xc7,0x54, + 0x42,0xd9,0xc7,0x8f,0x1a,0xc2,0x57,0x23,0x62,0xdd,0xaa,0x44,0xaa,0x5b,0xb6,0x08,0x75,0xcb,0x12,0x99, + 0x6e,0x19,0x11,0xe9,0x96,0x25,0x11,0xdd,0x32,0x02,0x50,0x89,0x1d,0x38,0x65,0x6b,0xbd,0xce,0x29,0xc5, + 0xb7,0xcf,0x49,0x05,0x8f,0x8c,0x11,0x3c,0xb2,0x53,0x0b,0xf7,0xaf,0x09,0xbc,0x9a,0xa2,0x4f,0xbf,0x25, + 0xce,0xfc,0xab,0x5b,0xdf,0x12,0x6d,0xde,0x2d,0x08,0x9a,0xd6,0xe5,0xa1,0x9b,0xb7,0x5f,0x46,0x78,0x2b, + 0x00,0x58,0x5b,0xbe,0x48,0xd2,0xe0,0x81,0x3f,0x35,0xa6,0x8f,0xd6,0xce,0x6c,0xe8,0xaf,0xb5,0x37,0xcd, + 0x0e,0x6b,0xbb,0x03,0x07,0xff,0x09,0xa5,0x44,0x0c,0xee,0x9d,0x8f,0xbb,0x8e,0x33,0x2c,0xb7,0xb7,0x63, + 0x89,0x3b,0x96,0xf6,0x43,0xa7,0xef,0x68,0x6a,0xdd,0x22,0x2e,0xe2,0xdd,0xcf,0xf7,0x3c,0x3f,0x91,0xa4, + 0xe8,0xb4,0xa0,0x71,0xfc,0x8f,0xcf,0xf7,0xb4,0xc4,0x17,0x41,0xb4,0xfb,0x4e,0xe0,0xf8,0xc9,0x93,0x7d, + 0xdd,0xcc,0x9e,0xe3,0xf9,0xf4,0x37,0x51,0x92,0x25,0x5b,0x8d,0xa7,0x1b,0x3e,0x3a,0xc5,0xc6,0x9f,0xfc, + 0xdc,0x56,0x75,0x13,0xde,0x88,0x2a,0x35,0xe8,0x01,0x5a,0x75,0x51,0x9e,0x56,0x17,0x20,0x7f,0x54,0x9a, + 0xcb,0x2a,0x55,0x7f,0x6b,0xbd,0x67,0x7d,0x5b,0xf2,0xd7,0xfa,0xd3,0x5e,0xc0,0x14,0x95,0x22,0x82,0xa2, + 0x0d,0x93,0xe7,0x8d,0xb4,0x47,0x2c,0x2f,0xd6,0x22,0xa8,0xbc,0xa5,0x4a,0xa3,0x49,0x97,0x9f,0x92,0x0b, + 0x38,0xb9,0xb0,0x52,0x79,0xda,0x1b,0xfc,0x5a,0x5b,0x7d,0x0e,0xaa,0x45,0x7a,0xb2,0xbf,0x66,0x65,0xf2, + 0x5b,0x1a,0xa1,0x8b,0x76,0x2f,0x0c,0x6f,0x69,0xc3,0xd3,0xde,0xdd,0xed,0x6c,0x5e,0xed,0x27,0xfb,0xa3, + 0xee,0x8c,0x70,0x3f,0xe8,0xce,0x78,0xba,0xff,0xb9,0x56,0x03,0xed,0xa8,0xf4,0xb9,0x7a,0x5d,0xb7,0xb3, + 0x64,0xa7,0x34,0xd5,0xd3,0x5d,0xd3,0xdb,0x54,0x4b,0x1d,0x9c,0x0d,0xb5,0x38,0xc0,0x3b,0xbc,0x74,0xb8, + 0xc3,0xdb,0xbb,0x7d,0xd2,0xdd,0xc0,0x70,0x63,0xbf,0x82,0x21,0x44,0xe5,0x71,0x8f,0x75,0x1c,0xa1,0x74, + 0x49,0x3c,0xc3,0x2d,0xcb,0xdc,0xef,0xfb,0x0f,0x6e,0xdd,0x07,0x15,0x6a,0xb1,0x09,0x4a,0x00,0x15,0xab, + 0xc2,0x47,0xf2,0x8d,0x56,0x03,0x12,0xaf,0x9b,0xb9,0xc5,0x89,0x9d,0x5a,0xe3,0x20,0x9b,0x0a,0x3e,0x16, + 0x47,0xd7,0xd2,0xfd,0xb9,0x9d,0xaf,0x6b,0x0c,0xbd,0xc6,0x53,0xde,0x8d,0x51,0x44,0x83,0xa3,0x3e,0xd4, + 0xee,0xb1,0xfc,0x19,0x9e,0xb3,0x6b,0x6c,0x7e,0x47,0xdb,0x36,0xff,0xd9,0xa1,0xfa,0xb4,0x81,0x9b,0x22, + 0xa6,0x41,0x30,0x56,0xdc,0x86,0xa5,0x0a,0x71,0xd5,0x33,0x9b,0xf8,0x2b,0xee,0x00,0xb7,0xbf,0xce,0x80, + 0x59,0x73,0xb8,0xed,0xea,0xac,0xad,0x00,0xdf,0xa2,0x46,0x57,0xd7,0xe8,0xd4,0xb5,0xd5,0x75,0x0d,0x86, + 0xab,0x38,0x4e,0x2c,0x2e,0x6c,0x66,0x41,0xb7,0x34,0x54,0xf0,0x3e,0xbd,0x7e,0xf1,0x69,0xfd,0x2a,0x05, + 0x5b,0xab,0x7f,0xa3,0x7e,0x6a,0x2f,0x60,0x97,0xa6,0x5d,0xe8,0xfc,0xcd,0xe9,0xc7,0x0d,0x73,0x9f,0x4d, + 0xfd,0xb6,0xcf,0xa4,0xd5,0x3b,0xd4,0x7b,0xd7,0xff,0x1f,0xde,0x0b,0x8e,0xc6,0x3b,0x1d,0x02,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index e6b57ed..eb2fafa 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 33; +const uint8_t VersionMetadata = 34; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+33"; -const char VersionCommitDate[] = "2018-01-31"; +const char VersionFullSemVer[] = "2.0.0-beta.1+34"; +const char VersionCommitDate[] = "2018-02-03"; #endif diff --git a/src/settings/steps.cpp b/src/settings/steps.cpp index 55fcd76..9200c30 100644 --- a/src/settings/steps.cpp +++ b/src/settings/steps.cpp @@ -12,21 +12,29 @@ StepsSettings::StepsSettings() { for (uint8_t i = 0; i < MaxStepCount; i++) - mCurveShift[i] = 0; + { + mRange[i].start = 0; + mRange[i].end = 4095; + } } void StepsSettings::toJson(Print &print) { - DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(16) + JSON_OBJECT_SIZE(3)); + DynamicJsonBuffer jsonBuffer(JSON_ARRAY_SIZE(16) + JSON_OBJECT_SIZE(3) + JSON_OBJECT_SIZE(2)); JsonObject& root = jsonBuffer.createObject(); root["count"] = count(); root["useCurve"] = useCurve(); - JsonArray& jsonCurveShift = root.createNestedArray("curveShift"); + JsonArray& jsonRanges = root.createNestedArray("ranges"); for (uint8_t step = 0; step < MaxStepCount; step++) - jsonCurveShift.add(curveShift(step)); + { + JsonObject& jsonRange = jsonBuffer.createObject(); + jsonRange["start"] = rangeStart(step); + jsonRange["end"] = rangeEnd(step); + jsonRanges.add(jsonRange); + } root.printTo(print); } @@ -57,18 +65,23 @@ bool StepsSettings::fromJson(char* data, bool* changed) } - JsonArray& jsonCurveShift = root["curveShift"]; - uint8_t stepCount = jsonCurveShift.size(); + JsonArray& jsonRanges = root["ranges"]; + uint8_t stepCount = jsonRanges.size(); if (stepCount >= MaxStepCount) stepCount = MaxStepCount - 1; for (uint8_t step = 0; step < stepCount; step++) { - uint16_t value = jsonCurveShift[step]; + JsonObject& jsonRange = jsonRanges[step]; - if (value != curveShift(step)) + uint16_t start = jsonRange["start"]; + uint16_t end = jsonRange["end"]; + + if (start != rangeStart(step) || end != rangeEnd(step)) { - curveShift(step, value); + rangeStart(step, start); + rangeEnd(step, end); + if (changed != nullptr) *changed = true; } diff --git a/src/settings/steps.h b/src/settings/steps.h index 7b83a51..6d16b54 100644 --- a/src/settings/steps.h +++ b/src/settings/steps.h @@ -14,12 +14,21 @@ #define MaxStepCount 16 + +struct StepRange +{ + uint16_t start; + uint16_t end; +}; + + + class StepsSettings : public AbstractJsonSettings { private: uint8_t mCount = MaxStepCount; bool mUseCurve = true; - uint16_t mCurveShift[MaxStepCount]; + StepRange mRange[MaxStepCount]; protected: virtual const char* getFilename() { return StepsSettingsFile; }; @@ -38,8 +47,11 @@ class StepsSettings : public AbstractJsonSettings bool useCurve() { return mUseCurve; } void useCurve(bool value) { mUseCurve = value; } - uint16_t curveShift(uint8_t step) { return step < MaxStepCount ? mCurveShift[step] : 0; } - uint16_t curveShift(uint8_t step, uint16_t value) { if (step < MaxStepCount) mCurveShift[step] = value; } + uint16_t rangeStart(uint8_t step) { return step < MaxStepCount ? mRange[step].start : 0; } + uint16_t rangeStart(uint8_t step, uint16_t value) { if (step < MaxStepCount) mRange[step].start = value; } + + uint16_t rangeEnd(uint8_t step) { return step < MaxStepCount ? mRange[step].end : 0; } + uint16_t rangeEnd(uint8_t step, uint16_t value) { if (step < MaxStepCount) mRange[step].end = value; } }; #endif \ No newline at end of file diff --git a/src/stairs.cpp b/src/stairs.cpp index 00f7343..0f97475 100644 --- a/src/stairs.cpp +++ b/src/stairs.cpp @@ -6,27 +6,8 @@ -const uint16_t PWMCurve[] = -{ - 0, 10, 11, 12, 12, 13, 13, 14, 15, 16, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 35, 36, 38, 40, 42, 44, - 46, 48, 51, 53, 56, 58, 61, 64, 67, 70, 74, 77, 81, 85, 89, 93, - 97, 102, 107, 112, 117, 123, 129, 135, 141, 148, 155, 162, 169, 177, 186, 194, - 203, 213, 222, 233, 243, 254, 266, 278, 291, 304, 318, 332, 347, 362, 378, 395, - 412, 430, 449, 468, 488, 509, 531, 553, 576, 600, 625, 651, 677, 704, 733, 762, - 792, 823, 854, 887, 920, 955, 990, 1026, 1063, 1101, 1140, 1180, 1220, 1261, 1303, 1346, - 1389, 1433, 1478, 1523, 1569, 1615, 1662, 1709, 1757, 1805, 1853, 1901, 1950, 1999, 2048, 2096, - 2145, 2194, 2242, 2290, 2338, 2386, 2433, 2480, 2526, 2572, 2617, 2662, 2706, 2749, 2792, 2834, - 2875, 2915, 2955, 2994, 3032, 3069, 3105, 3140, 3175, 3208, 3241, 3272, 3303, 3333, 3362, 3391, - 3418, 3444, 3470, 3495, 3519, 3542, 3564, 3586, 3607, 3627, 3646, 3665, 3683, 3700, 3717, 3733, - 3748, 3763, 3777, 3791, 3804, 3817, 3829, 3841, 3852, 3862, 3873, 3882, 3892, 3901, 3909, 3918, - 3926, 3933, 3940, 3947, 3954, 3960, 3966, 3972, 3978, 3983, 3988, 3993, 3998, 4002, 4006, 4010, - 4014, 4018, 4021, 4025, 4028, 4031, 4034, 4037, 4039, 4042, 4044, 4047, 4049, 4051, 4053, 4055, - 4057, 4059, 4060, 4062, 4063, 4065, 4066, 4068, 4069, 4070, 4071, 4072, 4073, 4074, 4075, 4076, - 4077, 4078, 4079, 4079, 4080, 4081, 4082, 4082, 4083, 4083, 4084, 4084, 4085, 4085, 4090, 4095 -}; - -const float LinearFactor = 4095.0f / 255.0f; +const static float CurveFactor = log10(2) / log10(4095); +const static float LinearFactor = 4095.0f / 255.0f; void Stairs::init(PCA9685* pwmDriver) @@ -67,6 +48,16 @@ inline void Stairs::applyCurrentValue(uint8_t step) void Stairs::tick() { + if (stepsSettingsChanged) + { + // Re-apply all values in case the PWM value changed + for (uint8_t step = 0; step < stepsSettings->count(); step++) + applyCurrentValue(step); + + stepsSettingsChanged = false; + } + + if (!mTick) return; uint32_t elapsedTime = mLastTransitionTime != 0 ? currentTime - mLastTransitionTime : 0; @@ -209,15 +200,20 @@ uint16_t Stairs::getPWMValue(uint8_t step, uint8_t brightness) } uint16_t pwmValue; + uint16_t rangeStart = stepsSettings->rangeStart(step); + uint16_t rangeEnd = stepsSettings->rangeEnd(step); + if (stepsSettings->useCurve()) { //_dln("Stairs :: Using curve"); - pwmValue = PWMCurve[brightness] + stepsSettings->curveShift(step); + float factor = ((rangeEnd - rangeStart) + 1) * CurveFactor; + brightness = pow(2, ((brightness * LinearFactor) / factor)) - 1 + rangeStart; } else { //_dln("Stairs :: Not using curve"); - pwmValue = brightness * LinearFactor; + float factor = ((rangeEnd - rangeStart) + 1) * LinearFactor; + pwmValue = (brightness * factor) + rangeStart; } //_d("Stairs :: Output: "); _dln(pwmValue); diff --git a/web/app.js b/web/app.js index 434a351..9c71bce 100644 --- a/web/app.js +++ b/web/app.js @@ -65,6 +65,59 @@ function startApp() } }); + + Vue.component('range', { + template: '
' + + '
' + + '{{ value.start }}' + + '
' + + '' + + '
' + + '
' + + + '
' + + '{{ value.end }}' + + '
' + + '' + + '
' + + '
' + + '
', + props: ['value'], + + mounted: function() + { + this.oldValue = { start: this.value.start, end: this.value.end }; + }, + + watch: { + value: { + handler: function(newValue) + { + if (newValue.start != this.oldValue.start) + { + if (newValue.start > newValue.end) + { + newValue.end = newValue.start + 1; + this.$emit('input', newValue); + } + } + else if (newValue.end != this.oldValue.end) + { + if (newValue.end < newValue.start) + { + newValue.start = newValue.end - 1; + this.$emit('input', newValue); + } + } + + this.oldValue.start = newValue.start; + this.oldValue.end = newValue.end; + }, + deep: true + } + } + }); + var i18n = new VueI18n({ locale: navigator.language, fallbackLocale: 'en', @@ -84,6 +137,7 @@ function startApp() savingSteps: false, loadingIndicator: '|', uploadProgress: false, + savingCalibration: false, activeTab: 'status', @@ -179,6 +233,7 @@ function startApp() self.disableStepsChanged = false; self.savingStepsTimer = false; + self.savingCalibrationTimer = false; var fixedTimes = []; var relativeTimes = []; @@ -599,6 +654,9 @@ function startApp() { var self = this; + if (self.savingSteps) + self.savingStepsTimer = setTimeout(function() { self.updateSteps(); }, 200); + self.savingSteps = true; self.savingStepsTimer = false; @@ -792,13 +850,21 @@ function startApp() startCalibration: function() { var self = this; - self.calibration = { - wizardStep: 0, - stepCount: self.steps.length, - steps: [] - }; - // TODO load step settings + axios.get('/api/steps') + .then(function(response) + { + if (typeof response.data == 'object') + { + self.calibration = { + wizardStep: 0, + count: response.data.count, + useCurve: response.data.useCurve, + ranges: response.data.ranges + }; + } + }) + .catch(self.handleAPIError.bind(self, 'error.loadSteps')); }, stopCalibration: function() @@ -808,10 +874,8 @@ function startApp() applyCalibration: function() { - var self = this; - - // TODO applyCalibration - self.stopCalibration(); + // All the changes are already applied + this.stopCalibration(); }, hasNextCalibrationStep: function() @@ -822,11 +886,69 @@ function startApp() nextCalibrationStep: function() { var self = this; - self.calibration.wizardStep++; + if (self.calibration.wizardStep == 0) + { + if (self.calibration.count < 1) + self.calibration.count = 1; + else if (self.calibration.count > 16) + self.calibration.count = 16; + + // Update ranges with possible new count + if (self.calibration.ranges.length > self.calibration.count) + { + self.calibration.ranges.splice(self.calibration.count); + } + else + { + while (self.calibration.ranges.length < self.calibration.count) + self.calibration.ranges.push({ start: 0, end: 4095 }); + } + } + + self.calibration.wizardStep++; if (self.calibration.wizardStep == 2) self.applyCalibration(); - } + }, + + calibrationChanged: function() + { + var self = this; + if (self.loadingCalibration || self.calibration === null) return; + + if (self.savingCalibrationTimer === false) + self.savingCalibrationTimer = setTimeout(function() { self.updateCalibration(); }, 200); + }, + + updateCalibration: function() + { + var self = this; + + if (self.calibration === null) + return; + + if (self.savingCalibration) + self.savingStepsTimer = setTimeout(function() { self.updateCalibration(); }, 200); + + + self.savingCalibration = true; + self.savingCalibrationTimer = false; + + + axios.post('/api/steps', { + count: self.calibration.count, + useCurve: self.calibration.useCurve, + ranges: self.calibration.ranges + }) + .then(function(response) + { + }) + .catch(self.handleAPIError.bind(self, 'error.updateCalibration')) + .then(function() + { + self.savingCalibration = false; + }); + }, }, watch: { @@ -850,6 +972,11 @@ function startApp() activeTab: function(newValue) { window.location.hash = '#' + newValue; + }, + + calibration: { + handler: function() { this.calibrationChanged(); }, + deep: true } } }); diff --git a/web/dist/bundle.css b/web/dist/bundle.css index e4ddc12..a2ca75e 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -html{box-sizing:border-box;font-size:62.5%}*,:after,:before{box-sizing:inherit}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,button,h3,input[type=submit],select{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active,button.active,button:active,input[type=number],input[type=password],input[type=submit].active,input[type=submit]:active,input[type=text],textarea{border:1px solid #111;border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}.button,button,input[type=submit]{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer;line-height:3rem}.button.focus,.button:focus,.button:hover,button.focus,button:focus,button:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active,button.active,button:active,input[type=submit].active,input[type=submit]:active{color:#ccc;background:#282828}.button-primary,input[type=submit]{background:#2265a1}.button-primary.focus,.button-primary:focus,.button-primary:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{background:#2672b6}a.button{text-decoration:none}.navigation{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.check.disabled,.radio.disabled{cursor:not-allowed}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:4px;left:4px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}.form-control{margin-top:1em}input[type=number],input[type=password],input[type=text],textarea{background:#404040;color:#fff;padding:.5em;width:100%}select{background:#404040;color:#fff;padding:.5em}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background:#282828;font-size:1.2rem;padding:.5rem}h4{font-size:1.4rem}input[disabled]{cursor:not-allowed;color:grey;background:#262626}label{display:block;margin-top:1em;margin-bottom:.5em}.label-inline{margin-right:2rem}@media screen and (min-width:768px){.horizontal label{display:inline-block}.horizontal input[type=number],.horizontal input[type=password],.horizontal input[type=text],.horizontal textarea{display:inline-block;float:right;width:50%}.horizontal:after{clear:both}}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slidercontainer{margin-top:1rem}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background:#404040;color:#fff}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header .label,.panel .panel-header a{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background:#303030;padding:2rem}.panel.active .panel-header{background:#3b4a58;color:#fff}.inline{display:inline-block;width:auto}.weekdays{margin-top:1rem}.weekdays .label{width:8em}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0} \ No newline at end of file +html{box-sizing:border-box;font-size:62.5%}*,:after,:before{box-sizing:inherit}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,button,h3,input[type=submit],select{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active,button.active,button:active,input[type=number],input[type=password],input[type=submit].active,input[type=submit]:active,input[type=text],textarea{border:1px solid #111;border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}button,input{font-family:Verdana,Arial,sans-serif}.button,button,input[type=submit]{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer;line-height:3rem}.button.focus,.button:focus,.button:hover,button.focus,button:focus,button:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active,button.active,button:active,input[type=submit].active,input[type=submit]:active{color:#ccc;background:#282828}.button-primary,input[type=submit]{background:#2265a1}.button-primary.focus,.button-primary:focus,.button-primary:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{background:#2672b6}a.button{text-decoration:none}.navigation{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.check.disabled,.radio.disabled{cursor:not-allowed}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:4px;left:4px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}.form-control{margin-top:1em}input[type=number],input[type=password],input[type=text],textarea{background:#404040;color:#fff;padding:.5em;width:100%}select{background:#404040;color:#fff;padding:.5em}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background:#282828;font-size:1.2rem;padding:.5rem}h4{font-size:1.4rem}input[disabled]{cursor:not-allowed;color:grey;background:#262626}label{display:block;margin-top:.5em;margin-bottom:.5em}.label-inline{margin-right:2rem}@media screen and (min-width:768px){.horizontal{clear:both}.horizontal label{display:inline-block}.horizontal input[type=number],.horizontal input[type=password],.horizontal input[type=text],.horizontal textarea{display:inline-block;float:right;width:50%}.horizontal:after{clear:both}}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{clear:both;text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slidercontainer{margin-top:1rem}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background:#404040;color:#fff}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header .label,.panel .panel-header a{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background:#303030;padding:2rem}.panel.active .panel-header{background:#3b4a58;color:#fff}.inline{display:inline-block;width:auto}.weekdays{margin-top:1rem}.weekdays .label{width:8em}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0}.range{clear:both}.range .start{position:relative;display:inline-block;width:49%}.range .start .slidercontainer{margin-right:4em}.range .start .value{position:absolute;right:0;top:1.5rem;color:grey}.range .end{position:relative;display:inline-block;float:right;width:50%}.range .end .slidercontainer{margin-left:4em}.range .end .value{position:absolute;left:0;top:1.5rem;color:grey}.range:after{clear:both} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 24106f5..6a87140 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(u)&&(f[l]=C(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=C(u.text+c):""!==c&&f.push(C(c)):X(c)&&X(u)?f[l]=C(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function De(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=De(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Ur),key:'"'+e.slice(Ur+1)+'"'}:{exp:e,key:null};for(Vr=e,Ur=zr=Kr=0;!ct();)lt(Hr=st())?ut(Hr):91===Hr&&function(e){var t=1;for(zr=Ur;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Ur;break}}(Hr);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Ur)}function ct(){return Ur>=Wr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Hn?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,o,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?Ci(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function Ct(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===ji?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=ji,u=a,f=o.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?ji:Ii:null)?n===ji?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===ji&&Bi.test(r[Li+"Property"])}}function St(e,t){for(;e.length1}function Dt(e,t){!0!==t.data.show&&$t(t)}function jt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ht(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ut(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',Co.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,Cn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),xn=function(e,t,n){return!1},Sn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:xn,isReservedAttr:xn,isUnknownElement:xn,getTagNamespace:g,parsePlatformTagName:Sn,mustUseProp:xn,_lifecycleHooks:On},Pn=/[^\w.$]/,Dn="__proto__"in{},jn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=jn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Hn=!1;if(jn)try{var Un={};Object.defineProperty(Un,"passive",{get:function(){Hn=!0}}),window.addEventListener("test-passive",null,Un)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!jn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=jn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);Kn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);xr||(xr=!0,U(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};xe(Se.prototype);var Dr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Dr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=U,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:qn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Wr,Vr,Hr,Ur,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:Ue,update:Ue,destroy:function(e){Ue(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},Ci=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),xi=/^--/,Si=/\s*!important$/,Ai=function(e,t,n){if(xi.test(t))e.style.setProperty(t,n);else if(Si.test(n))e.style.setProperty(t,n.replace(Si,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Hi),v(Pe.options.components,qi),Pe.prototype.__patch__=jn?Wi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&jn?Be(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(Ci(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),lo=/^]+>/i,uo=/^/g,"$1").replace(//g,"$1")),Do(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(uo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(lo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),l(n)&&o===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(co.test(k)||ao.test(k)||uo.test(k)||fo.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||wo(e);Nn&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Xe(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[S]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===D&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,o,a,s)),s?this._render(l,a,s):l},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(o))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings"},calibration:{title:"Calibration wizard",backButton:"Back",stepCount:"Number of steps",nextButton:"Next",applyButton:"Apply"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan"},calibration:{title:"Kalibratie wizard",backButton:"Terug",stepCount:"Aantal treden",nextButton:"Volgende",applyButton:"Toepassen"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}});var e=new VueI18n({locale:navigator.language,fallbackLocale:"en",messages:messages});new Vue({el:"#app",i18n:e,data:{notification:null,loading:!0,saving:!1,savingSteps:!1,loadingIndicator:"|",uploadProgress:!1,activeTab:"status",version:{systemID:"loading...",version:"loading..."},wifiStatus:{ap:{enabled:!1,ip:"0.0.0.0"},station:{enabled:!1,status:0,ip:"0.0.0.0"}},searchingLocation:!1,triggers:{time:{enabled:!1,transitionTime:null,triggers:[]},motion:{enabled:!1,enabledDuringTimeTrigger:!1,transitionTime:null,delay:null,triggers:[]}},connection:{hostname:null,accesspoint:!0,station:!1,ssid:null,password:null,dhcp:!0,ip:null,subnetmask:null,gateway:null},system:{ntpServer:null,ntpInterval:5,lat:null,lng:null,pins:{ledAP:null,ledSTA:null,apButton:null,pwmSDA:null,pwmSCL:null},pwmAddress:null,pwmFrequency:null,mapsAPIKey:""},allSteps:!0,allStepsValue:0,steps:[],location:"",fixedTimes:[],relativeTimes:[],calibration:null},created:function(){var t=this;t.notificationTimer=null,document.title=e.t("title");var n=window.location.hash.substr(1);n&&(t.activeTab=n),t.startLoadingIndicator(),t.updateWiFiStatus(),t.disableStepsChanged=!1,t.savingStepsTimer=!1;for(var r=[],i=[],o=0;o<1440;o+=15)r.push(o);for(o=-240;o<=240;o+=15)i.push(o);t.fixedTimes=r,t.relativeTimes=i,t.loadVersion().then(function(){t.loadConnection().then(function(){t.loadSystem().then(function(){t.loadTimeTriggers().then(function(){t.loadMotionTriggers().then(function(){t.loadSteps().then(function(){t.stopLoadingIndicator(),t.loading=!1})})})})})})},methods:{showNotification:function(e,t){var n=this;n.notification={message:e,error:t},null!=n.notificationTimer&&clearTimeout(n.notificationTimer),n.notificationTimer=setTimeout(function(){n.notification=null,n.notificationTimer=null},5e3)},hideNotification:function(){this.notification=null,null!=this.notificationTimer&&(clearTimeout(this.notificationTimer),this.notificationTimer=null)},handleAPIError:function(t,n){console.log(n);var r="";r=n.response?"HTTP response code "+n.response.status:n.request?"No response":n.message,this.showNotification(e.t(t)+"\n\n"+r,!0)},loadVersion:function(){var e=this;return axios.get("/api/version").then(function(t){"object"==typeof t.data&&(e.version=t.data)}).catch(e.handleAPIError.bind(e,"error.loadVersion"))},loadConnection:function(){var e=this;return axios.get("/api/connection").then(function(t){"object"==typeof t.data&&(e.connection=t.data)}).catch(e.handleAPIError.bind(e,"error.loadConnection"))},loadSystem:function(){var e=this;return axios.get("/api/system").then(function(t){"object"==typeof t.data&&(e.system=t.data)}).catch(e.handleAPIError.bind(e,"error.loadSystem"))},loadTimeTriggers:function(){var e=this;return axios.get("/api/triggers/time").then(function(t){if("object"==typeof t.data){var n={enabled:t.data.enabled||!1,transitionTime:t.data.transitionTime||0,triggers:[]};if(Array.isArray(t.data.triggers))for(var r=0;r0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i},startCalibration:function(){this.calibration={wizardStep:0,stepCount:this.steps.length,steps:[]}},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){this.calibration.wizardStep++,2==this.calibration.wizardStep&&this.applyCalibration()}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):X(c)&&X(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function De(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=De(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Wr=e,Hr=zr=Kr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Wr.charCodeAt(++Hr)}function ct(){return Hr>=Vr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,o,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?ki(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Ct(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function kt(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===ji?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=ji,u=a,f=o.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?ji:Ii:null)?n===ji?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===ji&&Bi.test(r[Li+"Property"])}}function St(e,t){for(;e.length1}function Dt(e,t){!0!==t.data.show&&$t(t)}function jt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Vt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Vt(Q(t.children)):e}function Wt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Cn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),Tn=/\B([A-Z])/g,kn=d(function(e){return e.replace(Tn,"-$1").toLowerCase()}),xn=function(e,t,n){return!1},Sn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:xn,isReservedAttr:xn,isUnknownElement:xn,getTagNamespace:g,parsePlatformTagName:Sn,mustUseProp:xn,_lifecycleHooks:On},Pn=/[^\w.$]/,Dn="__proto__"in{},jn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=jn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Vn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Wn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(jn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!jn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=jn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Kn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Cr[n].id>e.id;)n--;Cr.splice(n+1,0,e)}else Cr.push(e);xr||(xr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};xe(Se.prototype);var Dr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Dr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:qn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Vr,Wr,Ur,Hr,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){Ve(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Ve(e,!0),Ve(t))},destroy:function(e){Ve(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ci={create:pt,update:pt},Ti={create:ht,update:ht},ki=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),xi=/^--/,Si=/\s*!important$/,Ai=function(e,t,n){if(xi.test(t))e.style.setProperty(t,n);else if(Si.test(n))e.style.setProperty(t,n.replace(Si,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Ui),v(Pe.options.components,qi),Pe.prototype.__patch__=jn?Vi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&jn?Be(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(ki(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),lo=/^]+>/i,uo=/^/g,"$1").replace(//g,"$1")),Do(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(uo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(lo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),l(n)&&o===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(T=e.slice(v);!(co.test(T)||ao.test(T)||uo.test(T)||fo.test(T)||(k=T.indexOf("<",1))<0);)v+=k,T=e.slice(v);C=e.substring(0,v),n(v)}v<0&&(C=e,e=""),t.chars&&C&&t.chars(C)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||wo(e);Nn&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Xe(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},C=function(){this._caches=Object.create(null)};C.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[S]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===D&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,o,a,s)),s?this._render(l,a,s):l},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(o))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings",loadSteps:"Could not load calibration settings",updateCalibration:"Could not save calibration settings"},calibration:{title:"Calibration wizard",backButton:"Back",count:"Number of steps",nextButton:"Next",applyButton:"Complete",allStepsValue:"Intensity for all steps",ranges:"Min / max values per step",useCurve:"Use logarithmic curve for intensity (recommended for LEDs)"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan",loadSteps:"Kan kalibratie instellingen niet ophalen",updateCalibration:"Kan kalibratie instellingen niet opslaan"},calibration:{title:"Kalibratie wizard",backButton:"Terug",count:"Aantal treden",nextButton:"Volgende",applyButton:"Voltooien",allStepsValue:"Intensiteit voor alle treden",ranges:"Min / max waarden per trede",useCurve:"Gebruik logaritmische curve voor intensiteit (aangeraden voor LEDs)"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("range",{template:'
{{ value.start }}
{{ value.end }}
',props:["value"],mounted:function(){this.oldValue={start:this.value.start,end:this.value.end}},watch:{value:{handler:function(e){e.start!=this.oldValue.start?e.start>e.end&&(e.end=e.start+1,this.$emit("input",e)):e.end!=this.oldValue.end&&e.end0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i},startCalibration:function(){var e=this;axios.get("/api/steps").then(function(t){"object"==typeof t.data&&(e.calibration={wizardStep:0,count:t.data.count,useCurve:t.data.useCurve,ranges:t.data.ranges})}).catch(e.handleAPIError.bind(e,"error.loadSteps"))},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){if(0==this.calibration.wizardStep)if(this.calibration.count<1?this.calibration.count=1:this.calibration.count>16&&(this.calibration.count=16),this.calibration.ranges.length>this.calibration.count)this.calibration.ranges.splice(this.calibration.count);else for(;this.calibration.ranges.length{{ $t('calibration.title') }}
- - + +
- step 2 +

{{ $t('calibration.allStepsValue') }}

+
+ +
+ + + +

{{ $t('calibration.ranges') }}

+
+ +
diff --git a/web/lang.js b/web/lang.js index 406e836..2a322e7 100644 --- a/web/lang.js +++ b/web/lang.js @@ -146,15 +146,20 @@ var messages = { updateSteps: 'Could not apply new step values', searchLocation: 'Could not look up location coordinates', applyTimeTriggers: 'Could not save time trigger settings', - applyMotionTriggers: 'Could not save motion trigger settings' + applyMotionTriggers: 'Could not save motion trigger settings', + loadSteps: 'Could not load calibration settings', + updateCalibration: 'Could not save calibration settings' }, calibration: { title: 'Calibration wizard', backButton: 'Back', - stepCount: 'Number of steps', + count: 'Number of steps', nextButton: 'Next', - applyButton: 'Apply' + applyButton: 'Complete', + allStepsValue: 'Intensity for all steps', + ranges: 'Min / max values per step', + useCurve: 'Use logarithmic curve for intensity (recommended for LEDs)' } }, @@ -305,15 +310,20 @@ var messages = { updateSteps: 'Kan trap instellingen niet opslaan', searchLocation: 'Kan locatie coordinaten niet bepalen', applyTimeTriggers: 'Kan tijd trigger instellingen niet opslaan', - applyMotionTriggers: 'Kan beweging trigger instellingen niet opslaan' + applyMotionTriggers: 'Kan beweging trigger instellingen niet opslaan', + loadSteps: 'Kan kalibratie instellingen niet ophalen', + updateCalibration: 'Kan kalibratie instellingen niet opslaan' }, calibration: { title: 'Kalibratie wizard', backButton: 'Terug', - stepCount: 'Aantal treden', + count: 'Aantal treden', nextButton: 'Volgende', - applyButton: 'Toepassen' + applyButton: 'Voltooien', + allStepsValue: 'Intensiteit voor alle treden', + ranges: 'Min / max waarden per trede', + useCurve: 'Gebruik logaritmische curve voor intensiteit (aangeraden voor LEDs)' } } } \ No newline at end of file diff --git a/web/site.scss b/web/site.scss index 4e5ad9f..cc7f5b3 100644 --- a/web/site.scss +++ b/web/site.scss @@ -122,6 +122,12 @@ a } +button, input +{ + font-family: 'Verdana', 'Arial', sans-serif; +} + + button, .button, input[type=submit] { @extend %outset; @@ -409,7 +415,7 @@ input[disabled] label { display: block; - margin-top: 1em; + margin-top: .5em; margin-bottom: .5em; } @@ -426,6 +432,8 @@ label { .horizontal { + clear: both; + label { display: inline-block; @@ -469,6 +477,7 @@ label .buttons { + clear: both; text-align: center; } @@ -638,4 +647,56 @@ label .fade-enter, .fade-leave-to { opacity: 0; +} + + +.range +{ + clear: both; + + .start + { + position: relative; + display: inline-block; + width: 49%; + + .slidercontainer + { + margin-right: 4em; + } + + .value + { + position: absolute; + right: 0; + top: 1.5rem; + color: $sliderValueColor; + } + } + + .end + { + position: relative; + display: inline-block; + float: right; + width: 50%; + + .slidercontainer + { + margin-left: 4em; + } + + .value + { + position: absolute; + left: 0; + top: 1.5rem; + color: $sliderValueColor; + } + } + + &:after + { + clear: both; + } } \ No newline at end of file From 5d314e7525334812f203be1b2899345a7b50f0fd Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Sat, 3 Feb 2018 16:23:01 +0100 Subject: [PATCH 35/43] Fixed PWM values being off --- src/assets/version.h | 4 ++-- src/config.h | 2 +- src/stairs.cpp | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/assets/version.h b/src/assets/version.h index eb2fafa..d43e9d3 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 34; +const uint8_t VersionMetadata = 35; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+34"; +const char VersionFullSemVer[] = "2.0.0-beta.1+35"; const char VersionCommitDate[] = "2018-02-03"; #endif diff --git a/src/config.h b/src/config.h index a807777..45b689b 100644 --- a/src/config.h +++ b/src/config.h @@ -4,7 +4,7 @@ #include -#define SerialDebug +//#define SerialDebug #ifdef SerialDebug static const uint32_t SerialDebugBaudrate = 115200; diff --git a/src/stairs.cpp b/src/stairs.cpp index 0f97475..3b99c5f 100644 --- a/src/stairs.cpp +++ b/src/stairs.cpp @@ -207,12 +207,12 @@ uint16_t Stairs::getPWMValue(uint8_t step, uint8_t brightness) { //_dln("Stairs :: Using curve"); float factor = ((rangeEnd - rangeStart) + 1) * CurveFactor; - brightness = pow(2, ((brightness * LinearFactor) / factor)) - 1 + rangeStart; + pwmValue = pow(2, ((brightness * LinearFactor) / factor)) - 1 + rangeStart; } else { //_dln("Stairs :: Not using curve"); - float factor = ((rangeEnd - rangeStart) + 1) * LinearFactor; + float factor = ((rangeEnd - rangeStart) + 1) / 255.0f; pwmValue = (brightness * factor) + rangeStart; } From b10fd6951c14947eaf78159f42290140306e0d15 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Mon, 12 Feb 2018 20:59:26 +0100 Subject: [PATCH 36/43] Fixed #18: Time triggers fail if the time is earlier than the first trigger of a day --- src/settings/triggers/time.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/settings/triggers/time.cpp b/src/settings/triggers/time.cpp index 3d8d186..7d90d1c 100644 --- a/src/settings/triggers/time.cpp +++ b/src/settings/triggers/time.cpp @@ -188,6 +188,10 @@ TimeTrigger* TimeTriggerSettings::getActiveTrigger(tmElements_t &time) dayOfWeek = Sunday; else dayOfWeek = (DayOfWeek)((uint8_t)dayOfWeek / 2); + + // Set the comparison time to the end of the day, so the last + // trigger for that day will match + dayTime = 24 * 60; } while (dayOfWeek != startDayOfWeek); return nullptr; From 77f4cf79d3df5a997cc178e21270f494bb1e1d58 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Mon, 12 Feb 2018 21:01:12 +0100 Subject: [PATCH 37/43] Removed unused modified HTTPClient Decreased AP button time Added pinout print to be included in the box --- docs/Pinout.ai | 4889 ++++++++++++++++++++++++++++ src/ESP8266HTTPClient-h4xx0red.cpp | 1146 ------- src/ESP8266HTTPClient-h4xx0red.h | 249 -- src/config.h | 4 +- 4 files changed, 4891 insertions(+), 1397 deletions(-) create mode 100644 docs/Pinout.ai delete mode 100644 src/ESP8266HTTPClient-h4xx0red.cpp delete mode 100644 src/ESP8266HTTPClient-h4xx0red.h diff --git a/docs/Pinout.ai b/docs/Pinout.ai new file mode 100644 index 0000000..7747f9e --- /dev/null +++ b/docs/Pinout.ai @@ -0,0 +1,4889 @@ +%PDF-1.5 % +1 0 obj <>/OCGs[7 0 R 40 0 R 72 0 R 104 0 R 136 0 R 168 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + Pinout + + + + + 2018-02-06T21:17:43+01:00 + 2018-02-06T21:17:43+01:00 + 2018-02-04T21:59:43+02:00 + Adobe Illustrator CS6 (Windows) + + + + 256 + 148 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAlAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq8 j8j/AJaeQ/MH+JNR1rRLa+vm8xawjXEqksVS8cKNiOmKsm/5Un+VH/UsWX/AN/XFXf8AKk/yo/6l iy/4Bv64q7/lSf5Uf9SxZf8AAN/XFXf8qT/Kj/qWLL/gG/rirv8AlSf5Uf8AUsWX/AN/XFXf8qT/ ACo/6liy/wCAb+uKu/5Un+VH/UsWX/AN/XFXf8qT/Kj/AKliy/4Bv64q7/lSf5Uf9SxZf8A39cVd /wAqT/Kj/qWLL/gG/rirv+VJ/lR/1LFl/wAA39cVd/ypP8qP+pYsv+Ab+uKqH5Q6dY6ZYeZNPsIV t7K11++it4E2VEURgKPlirPcVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirCfyp/wCO f5j/APAl1n/qNfFWbYq870f8zPN2s2P1/TPIt3dWTSzwxzrf6egY28zwP8Mssbj44yN1/DfFVum/ md5x1G71G0tfId5JNpc4trxRqGnjhI0ayhTylUH4JAfhJHvXFUw/xn+YP/lvr3/uI6Z/1XxVNfI/ mybzPpd1eT6c+lz2d7c6fPaSyRzMJLV/Tf446p9oEbE9OpGKph5k1lNE8u6prTxGdNMtJ7xoQeJc W8TSFQxBpy40rirFbXz558urWG5h/L+9aKdFkjYajpoqrgMDvMD0PcYqjPLPnnVtU8z3Pl7VfL0+ h3dvZR6gDNc29xyjllaFafV2kAq0bftdunSqqZed/NH+F/LVzrQtGv2gkt4ktEdY2drm4jt1Advh G8td8VSb/Gf5g/8Alvr3/uI6Z/1XxVGeUPOuoa5rGsaRqWhy6JfaRHaSyRTTwXBdbz1eJBgLoKeh /N3xVlWKsL/LL/pq/wDwI9Q/5l4qzTFXYq801X/nIT8vNM1S8025N8bmxnltZzHaSOnqQSGN+LDY jkp3yJnEcy349LlmLjGUh5AlF+V/zx8jeZdetND003n169LiD1rZ4kJjieZgXbYfBG2IkDyKMuny Y/riY+8U9AyTS7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FWE/lT/xz/Mf/gS6z/1GvirNsVYT+TP/ AJL60/5jdU/7qdzirX5f/wDKU+ff+2zF/wB0+2xVm+KvJfJX5heVvLp8x6dq0t1Dd/4h1eXhHYX0 6lJLxyrCSCCRDUe+Kq/nz81/JOo+RvMWn2dxeSXd5pl5b28Z0zUUDSS27ogLPbqq1Y9WIGKvQfLJ r5b0k0IrZ25oQQf7peoO4xVgmueadG8t/nDc3ertPFb3Hl60ihkhtbm6Bdb26Yqfq8cvHY98VS38 y/zL8o635Rm0zTJrua9mu9OaONtO1CIERahBK/xywIgoiE7n8cVev4qwny3/AOTX87f8wWi/8Ru8 VZtirC/yy/6av/wI9Q/5l4qzTFXYq+J/Ov8AymnmL/tr6l/1HTZrdT9b2/YH+L/5x/Qn35Jf+TV8 uf8AGa6/7p11lmk5lxPaT6Ye8/oe2+edb89QeaJv0TZX76Ha2b2cstugKG6uoJHWVVB9VjFJ9XCs ilVq9SMz3k1dH866R+Xcl3qEty+oC+sJ4oo/Vu7qKyNzai4R6J6jkqJmYcSQrce2Ksf1vXfMd7rX ma50+fVY7UQJJo8SQalETEbW3LtHGYBFUOZftEPXoMVZJY6jrieW7b1Zrz6hc63HbQXt4Hgu/wBG vKAjSF1jlX1JP3YLANxYd6HFUrGpeaLTVNZlM95cMmoQmwaUXVvBylv/AE1sliuFSOYNbSfbiqoA 5daHFD1bAl2KuxV2KuxV2KuxV2KuxVhP5U/8c/zH/wCBLrP/AFGvirNsVYT+TP8A5L60/wCY3VP+ 6nc4q1+X/wDylPn3/tsxf90+2xVm+KuxV2KuxV2KuxV2KsJ8t/8Ak1/O3/MFov8AxG7xVm2KsL/L L/pq/wDwI9Q/5l4qzTFXYq+S9U8naVqnmXzJd3MlyJW1vVF4xzMigLeyjZRmo1uqOOdARO3UO30X HwbTnHfoaTf8t/K2naP+aflSa0knZpZ7xGWWVpFoNOuTWh75ZoNQchNgCu5r1/FQuUpe82931n8x fLGjahJp+oTPDcRswYFPh4rbG5L8unHiONf5ts2brEvuPzc8swIHaG7ZRFNNMQkX7pbaWSKX1KyC hVoW2FcNKyC88z6ZaT3MEvMva2B1SQqoINuCw+E13b4DtgVj035oeVprWH65Z3QtLpJpZjLCkkcd vbtEsk83F3AjDTpvv8sNKyPUNc0e0u5YrxgpsLY6hcXDqPTt4qtGrMx6NIBIFp1Ct9IVS0PzZpWs i1NqJUF7am9tfWQpziST0pAAdw0bFOYPTkv0KpzirsVdirsVdirsVdirsVYT+VP/ABz/ADH/AOBL rP8A1GvirNsVULKxsrG3FtZW8VrbqzusMKLGgaRi7kKoAqzsWPiTXFXW9jY20txNb28UMt24lupI 0VGlkChA8hABZuKgVPYYqr4q7FXYq7FXYq7FXYqoRWNlFdz3kVvFHd3KolzcqiiSRYq+mHcDkwTm 3GvSpxVXxVhf5Zf9NX/4Eeof8y8VZpirsVfHev8Ant9H82eZrH9H+uE1vU2EvrcK8ryU/Z4N+vNf qdD4suLir4Odp9VwRqrTr8qfOLa7+a/laA2X1YRS3j8/V9Sv+4+4FKcEyek0fhE73bDU6jxANqe+ eafyx8veZdSl1C/eZJ5raG0cRFFHpw3AuK7q3xPT02P8hpma4ilP+VPlq4GqfWDJNJqcN7C0kgiY w/pCeW4keGqfC6tcEKfACtcVRmteRk1K+FzFql1Yq9j+jLqGFbdlmtiWPFjLFIyn4juhGKpOPyg0 82ttayatdm3hhmtLiOKKygFxaXDQtJBJ6UCbE2y1daOd/ixVOdZ8j2Wratd3F0z/AFLULe1ju0il mgmE2nzvNbSJJEy7AzPyHiFOKrdA8jWui3ummCaSWy0ezuLWxE7vLOXvJklnaR2NKD0UCADx9sVZ RirsVdirsVdirsVdirsVYT+VP/HP8x/+BLrP/Ua+Ks2xV2KuxV2KuxV2KuxV2KuxV2KuxV2KsL/L L/pq/wDwI9Q/5l4qzTFXYq+E/P8Av5+80U/6vGo/9RkuAtgZD+Qe35v+XK/z3f8A1AXGIRJ9C+aN E82SedI7yz0/6/DLJa/VrxpCsdpbICLlRxuLdo5CfjH7qRX+y2wyTBhtl5I8/wBmNKi1fTrvWtLs 4dL9W0iuIhKwFrfNcRMXmjBMF1cqvLl9kLStMVex+VLTVbPyxpNpq0vrapb2kMd7LXlymWMBzy/a +Lv3wKmuKuxV2KuxV2KuxV2KuxV2KuxV2KsJ/Kn/AI5/mP8A8CXWf+o18VZtirsVdirsVdirsVdi rsVdirsVdirsVYX+WX/TV/8AgR6h/wAy8VVPzV1jWdK8qCfR7w2F9NfWNqt2sccpRLm6jhchJldC eLnqMhknwxMu4JiLKRfoj8w/+p8vP+kDTP8Asnzk/wDRPL+YPn+xy/yo73iVwdSutX1g3sthc3MG pXlvJcyaLorSSmKdkMsjNZsS7kcmNeubbJ2oYiJ4fqiJfN2Wg7HGeBkZVUq5Mj/LF7i2/Mzy5GFs SlzLdRyGLStLtpABY3Eg4TW1rDKu6b8W3Gx2zI0WtOYkEVTT2n2YNMIkS4rfS+bF07sVdirsVdir sVdirsVdirsVdirsVdirsVYT+VP/ABz/ADH/AOBLrP8A1GvirNsVdirsVdirsVdirsVdirsVdirs VdirC/yy/wCmr/8AAj1D/mXiqz84re9m8nKbO0uL6WDUdOuHt7SJ55jHDeRySFY4wzNRVJ2GV5om UCB1BTE0Uj/x7H/1LvmL/uD3v/VPOI/0Oan+j8/2Od+Yi8iXTvMjajq9wfLetrHealeXUFdLvamK edpEJpEafC3TN5l7NymMAK9MIj4h23ZnauLDjMZXZkT9zIvy60rXz+ZPlueXRNUtba2munuLm6sL q3hRWsLiNeUksaKKu4A365l9n6SeIky6uP2x2jj1EYiF7XzfR2bR0TsVdirsVdirsVdirsVdirsV dirsVdirsVYT+VP/ABz/ADH/AOBLrP8A1GvirNsVdirsVdirsVdirsVdirsVdirsVdirC/yy/wCm r/8AAj1D/mXirNMVSt725HmiKxD/AOitZSTNHQf3iyooatK9GPfFV3me6u7Py3q13ZEi8t7O4lti q82EqRMyUQhuR5AbU3xV1h5j0m/uBb2skjSkFgGgmjFB1+J0VfxxVjmt+fbnT/MklgEgisbWW1tZ ZJluWklnvF5RqjQpJHEOiqZdmb4ajrhVi+j/AJyeYNYk0yxttPtbTUrxLI3H1oyelG15b3d0COJr waG1iZT25mtaYq9K8sa0Nc8uaZrIiMH6RtYbn0SalPVQPxr3pXrgVM8VdirsVdirsVdirsVdirsV dirsVYT+VP8Axz/Mf/gS6z/1GvirNsVdirsVdirsVdirsVdirsVdirsVdirC/wAsv+mr/wDAj1D/ AJl4qzTFUkk/5TWD/tmy/wDJ+PFU7xV2Kse1weRhrdtNrMNk+s21tNdWkk8SvOlvBvK6MVLALyr9 9O+KpZNb/lRqOhjUp7LT59Jha1sjJLbCkbRkQ2sTIyck4/WqJUbK/wDKcVZNcarounac1zLcwW9h bQ+oWDKEWFIy4Khe3poSKdhiq208w6FdtMttfwSG3lSCWki7SyIsiJudyyuCKdcVRcV3aSvIkU0c jw7SqrBim5HxAHbdT18MVShvPHlZZbeI36+pdxfWLZeEhMkdGZStF3LqhKDqw+zXFU5t7iC5gjuI JFlgmRZIpUNVZGFVYEdQQcVX4q7FUIdY0gSXEZvrcSWY5XaeqlYh4yCvwfTiqpHf2MnoCO4if6yp e24up9RFoSyUPxAchUjFVEa3oxtkuhf2xtpJPRjnEyem0vTgGrQtt064q1Jr2hxLO8mo2qJauIrl mmjAicmgSQk/C23Q4qjI5I5Y1kjYPG4DI6kFWUioII6g4qwv8qf+Of5j/wDAl1n/AKjXxVm2KuxV 2KuxV2KuxV2KuxV2KuxV2KuxVhf5Zf8ATV/+BHqH/MvFWaYqlupeXdI1K5jubyFnniQxpIkssRCM QxH7tkruO+Kob/Bvl/8A3zN/0k3P/VTG1RNh5c0mwuBcWsciygFQWnmkFD1+F3ZfwxVivmr8sbrX tdn1pdaktbgxpbW1uIkeFbf0ZYZVetJGZvrUpBV1G4qDQHFUXc/lxaL5Ml8vWE4WWe4tbu4u7tXu RNNaywSVkRnBKslssfHlsuKsen/JW6mtRYnWY1s5YiLkLatz9Y2l3a8oj63FIwL4kIQT8IHLDaq9 5+UNzdR3Stf2im9dnmAs2IX1rGOymMf74UZPSDwN+wS1a1rjapppX5Zx2Fzq0633xatDqMM7pFxk rf3T3COz8vjaJX4b/h0wK0nlzza8+h308lq1totqoGhyRs7G7jjMZljuFmROTLtGzoQoavHlhVkf lXR5dG8u6fpcsglltYVSV1JK8+rBagHiCaLt0wKmuKuxV5dL+VmrpLDrTSW+qawL+W7uNOnYQWkk E8zztB6qwyOxWX0XDOrf3YUADCrr/wDLfzTd6sdVZ7CGM29zYrpFn6lsI4J7WdGMV0AwRpbqb1G/ 0evQktxAxVLrP8pfOFte6ddre2zTpL9anZpKR28nOEFVgjt44pxJbW0cRPGOhqwHbG1dF+U3mhdK eFltRf3DoVuRdyVtnjhlUSClsBNF6tzK4gYL1FXP7LavYIkEcaRilEAUUAA2FOg2GBWF/lT/AMc/ zH/4Eus/9Rr4qzbFXYq7FXYq7FXYq7FXYq7FXYq7FXYqwv8ALL/pq/8AwI9Q/wCZeKs0xV2KuxV2 KuxV2KuxV2KuxV2KuxV2KuxVCSavpMUs8Mt7BHNbIJLmNpUDRoaUZwTVRuNzircuraVFcpbS3sEd zI/pRwNKiuzgKeCqTUtR1NPcYqwf8w/NPm6w80aRovl+4tLUXtpdXU813bvcb28kKKqhZIaV9Y4q xvW/N35s6Vot/qZ1bSZRYW01yYhp8qlhDGX41+smleNMVet6PdS3mkWN3LT1bi3ilk47Dk6BjT6T irFPyp/45/mP/wACXWf+o18VZtirsVdirsVdirsVdirsVdirsVdirsVYX+WX/TV/+BHqH/MvFWaY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq8p1D8svNVy+p2avYNp9yL0rcS8WnuDe3ZuQJSbYzRmNW9 M0nZWCr8I7FUuk/J7zXFc30MclneWt4by2t724lkE9rbTJYJbzgek5e4hjsSv2hVqNy64qr/AJta 9pOjfmH5dutSnMEH6Mv05BHkPJ5rcrtGrH9g9saVifm78x/Jt55U1q0t79nuLiwuYoUNvcKC7wsq jk0YUbnqTjRTT3nyu6v5Z0h1NVaytyp9jEpwIY5+VP8Axz/Mf/gS6z/1GvirNsVdirsVdirsVdir sVdirsVdirsVdirC/wAsv+mr/wDAj1D/AJl4qzTFXYq7FVO4uIbe3luJm4Qwo0kjmpoqipO3gBir Cl/O78rmUMuuKysKqwguSCD4fusPCVaH54flaZTENcUyBQxX6vddCSAf7r2wHZbVB+dX5YllX9Nq CxCisFyBVjQbmLxxRbNsUuxV2KuxV5RqX5ja3Y63rNhJqFuximEcfpLFNHY231yKCS5uFDrcRtDB Nzb1U9NiKhuIoSqc+V/PVtL5pk0S68x2OqQSWUEum3SCKBrmd7m5jkWOjlZiqxIP3e3tgVfqHmrz CmiXmrW8kcfo6/Fpv1eWKvG1F/HYtwIKnnJy9Tk1djsO+FUtvfP1+l/5p/RusW2oxaDH9YNmiQiY Swyj1LVEDNI6emfTeQj+8I4nYrirEf8AnI3/AJSfy7/zA3v/ACet8y9D/efBv0/1PINX/wCOTe/8 w8v/ABA5tM30S9xc2f0l9k+Wv+Uc0r/mDt/+TS5z7q2NflT/AMc/zH/4Eus/9Rr4qzbFXYq7FXYq 7FXYq7FXYq7FXYq7FXYqwb8vZGitfOMq/aTX9SZa+ICHFWHWv5g+eU8vaLf6lfC0OqrNNavNFbRv cImkvd1WMc/3YukVEbZmDbjdcKsg0Dzp5ol8j6lqF64OoxXtvZW/qRxieFbs28fq3EcRMXwG4MqU 2MfEnviqY675y1vRNa1u2aL9IQWmnWFxpsMFvLJJ6t1PPAzT+iJGKBoebFEFF6Dl1CpZpfm/V9V8 t2pvWacatoWpTzn6u0Hpz2Mixl+LAMFmW4pvt8Ap1OFXzhpH/HJsv+MEX/EBnUaf+7j/AFR9zhT+ oozSv+Ozd/8AMNB/ycmzm/aD6o+79bre1P7kf1v0JhqP+8jf6yf8TGaTTf3gdf2Z/fx+P3F7v5j8 0+brfzdq1tZTeloumWgnvJnjhEMCPaTyeqZnPL1PXSMKvEqV5VzbvXoDyT588zat5vtbGa7W40qa KKs7JAIpHOmQXciRPFR/XE0/LiRx9MNT4lxVPrnzVr/6Ht9UheONbnzFHpkltNCecdoNSGnlUIYU dghkLMD9qg6DAqQ6d+Y+vzPr0lzIBc6ZMssemwiFxHBHeG2a3noPWjllTdeW5PxD4fhwoZOn5laB LC9zbWd7cxvcpZQyRQA/WJG509MlhWnpnZqNv03xpKM0nzp5V1XVrLTrFhJdXFguo2rGPiBAW4cK ndJBXePqBgVqTzH5Y0w3156UiRz6nDY3E6Ru8ct65jgBHHkF4HijOQBVabnFULf+afKb3t/YX1lM r6bJDPdmSHihUTgLcHerRxycXqw/ygCBXCryz/nJa2ebzP5d43EsB+pXhrGV7TQfzK3Wv4Zl6LHx zqyNujGUzEWHjWp6fMmm3bG+uHCwyEoxjoaIdjRAaZss2kAgTxS5HqwGqmTT7U8rrx8s6QvItxsr ccm6mkS7nNC2sc/Kn/jn+Y//AAJdZ/6jXxVm2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVhf5Zf9NX/4 Eeof8y8VZiYYTxqinh9ioG3bbwxVC6xFZPpN6l5bNd2skTi4tY0MjyqVoUVF3ZiNhiqU2vnXR5vL R162gupraNmgeFY+c4aJyjBiW40Ug1Yvx964qgtQ1nyvquhX99YzKL7UNLkiiYgpcCI2v1pU4uPg pHOrnbuK4VfJGl6dK+m2ji+uEDQxkIpioKoNhVCaZucWImA9UuQ6uXHSwItln5beRrbzD5l1G1u9 Uv4Vgs4ZVkt3hV2LSyLxblE4oO22cx7TauWmESPXf87fv9zXPRY5HhIsc2W+dfyj0vR/LN3qMGta rLLbmErHNLblDymRfiCQI37XjnP9mdsZM2eMDGABvkDfI+bCXZ+HGOKMQCPIPdbzzNptv5gtdBuI J/rGoBlhm9ImBisbyFOff4EYnbiOhNds61rUI/N2grrkuiypJaXUBT0mmi4RuWdYF9NvdpFReQHK vw1GKplpKaRLbtfaaI3t9Qf600se6SOQq+oO24Qbjr164qrXOn2V1w9eFZPTlSdQenqxbxsQPtFS ARXoQD1AxVhtx+VFjJqU2qRavewak88dxBdIlnyjMbO4Df6P++3kNGm5sBsD1qbVEaL+VPlzR9Tt NTs57367ZyBo5HuGZWjFt9WMTxf3RVh8Zbhz5b8sCoxPJkT6fqGlXEpFhc6ouq27RGkob60l86Py DDe4Run7JpsRiqE1f8u4r6XWZjfSzS65GLO49cRKsVm0gaWOP0Y43duNVRpWYqKb0FCq8x/5yQa4 /wAU+XVht3nP1G82QoNjNBv8bINqfjl+DVRwy4pcmnPKMY3I0HkGrfpD9FXnPT5kX0JeTl7cgDga k8ZSdvYZlT7ZxTiYjrs4mPPiMgBMXb7L8rsW8s6QxUqTZW5KnqKxLsaZrnYsc/Kn/jn+Y/8AwJdZ /wCo18VZtirsVdirsVdirsVdirsVdirsVdirsVYX+WX/AE1f/gR6h/zLxVmmKqV5btcWs0CzPbtK jIJ4uPqJyFOSc1dajtVSMVYzbeQI7TQJNFtdWuooJSzysIbFlaWSUyyN6LW7QhWrx4BAtO1d8VQt 55G0XQ9Lv9RsvXkmtNCfTIY5HDgxwxUD7gfvGWNFJrSijbCr5p0Py55sm0XT5YNDupoJLaF4pVe2 CujRgqw5TKaEb7jNjj1wjECuQcuOoAFUnXk3X9V8mea79tQ0G6kmubCACBZLZWVfWlo5PqlaEgjr XbOc9oscdVGNy4KPXfvbsAnln6I3sn/nP81ZNX8t3enL5eu7czmIes8tsyrxmRtwshP7OaPs3s2G PPGQyCVXtR7i26nTZowJlAgPctW8oJqOvW2stqNxDNZI4soo1t+MUrxPD6qu0TSn4ZW+BnKE0JU0 zrXUoG//AC30/ULvU7q91C6nm1G2Nqj0t42gXmkodGiijLukkKMhk5caUFBXFWT2Flb2Njb2VsvG 3tYkhhXwSNQqj7hiqvirsVdirBYdN1e1/Me81mHS7s6ebVoJn9WKk8sssAjkjDXDclRFkqrqnAD4 a8qYVSSHQfPtq+t3Oh20+n/WbqFLa2uJYiSsqTwzzUE06t6TTRTCRmDvwoV2AxVIPz5Th5q8uIWL 8dOvRybqaTW25p3zE1n0fF1na39wfeHl+vf8cPUf+YWb/k2c1+L6x73nNJ/fQ/rD731n5a/5RzSv +YO3/wCTS5untmNflT/xz/Mf/gS6z/1GvirNsVdirsVdirsVdirsVdirsVdirsVdirC/yy/6av8A 8CPUP+ZeKs0xVI/Othqt/wCWby10vkbuQxExI4iaWFJkaeFXJAUywq8YJI69R1xV5Zq3lD8xrvST JpdhJpb21hq0VnYJMEEgu3gRInRrq6CO0TSuvGTiHUH4a4VTTRvL/mWym165vLKeygFtrZvrmaaO SO8NxcCSxMaJJIf3MKuOTKpFeO+KoPyN/wAoT5f/AO2bZ/8AJhMCsK89f8p3J/2y7X/qIus1HbH0 R970Xs5/ey/q/pSHVP8AeJ/9ZP8Aia5rOzv7+P46O87Z/wAVn8PvD3nXtH80Hz9bX9vp/wBftXuL Mw3jyER2lrHtdKAtxAySE/GP3Ugk+y22dW8Cwiw8jefrOHSY9X0+51fTbWCxee1jnhafcyvc27c5 ow7RyuWDcqcWAr8OKvYPJ9lqtj5X0uz1Vy+oQW6JcEv6hBA2VpP2yooC3frgVOMVdirsVdirsVYL +ZP/ACqL17D/AB99R9bjJ+j/AK7yrxqvqcKe/GuKsM/6xR/7Uv8Aw+KvZ7H6p9St/qdPqnpp9X4/ Z9PiOFPbjiryXXf+hZ/03qH6Y/RH6X+szfpH1efqfWfUPrc6ftc61xVBf9Yo/wDal/4fFXf9Yo/9 qX/h8Vd/1ij/ANqX/h8Vd/1ij/2pf+HxV3/WKP8A2pf+HxV3/WKP/al/4fFXf9Yo/wDal/4fFXf9 Yo/9qX/h8Vd/1ij/ANqX/h8Vd/1ij/2pf+HxV3/WKP8A2pf+HxV3/WKP/al/4fFXpH5f/wCBP0Cf 8E/Vv0N671+qV9P1qLz696UxVkuKuxV2KqN99U+pXH1yn1T03+scvs+nxPOvtxxV4x/1ij/2pf8A h8VWf9Ynesf+OPz4j/fvGlT/ALGv44qr2/8A0Kv68fofob1+a+lx5151+Gn04Ve04FdirsVdir// 2Q== + + + + + + uuid:13df4b20-76cd-42c5-8a71-c526ac9b27f7 + xmp.did:7584D951EE09E8119356D43371B34B1A + uuid:5D20892493BFDB11914A8590D31508C8 + proof:pdf + + uuid:ba5dc92b-6d0a-484a-ab90-b9370a4a0965 + xmp.did:0980117407206811822A897E387FE54C + uuid:5D20892493BFDB11914A8590D31508C8 + proof:pdf + + + + + saved + xmp.iid:7584D951EE09E8119356D43371B34B1A + 2018-02-04T21:59:41+01:00 + Adobe Illustrator CS6 (Windows) + / + + + + + + Document + Print + + + False + False + 1 + + 6.000047 + 4.000135 + Centimeters + + + + + ClearSans + Clear Sans + Regular + TrueType + Version 1.00 + False + ClearSans-Regular.ttf + + + ClearSans-Italic + Clear Sans + Italic + TrueType + Version 1.00 + False + ClearSans-Italic.ttf + + + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + White + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 0.000000 + + + Black + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 100.000000 + + + CMYK Red + CMYK + PROCESS + 0.000000 + 100.000000 + 100.000000 + 0.000000 + + + CMYK Yellow + CMYK + PROCESS + 0.000000 + 0.000000 + 100.000000 + 0.000000 + + + CMYK Green + CMYK + PROCESS + 100.000000 + 0.000000 + 100.000000 + 0.000000 + + + CMYK Cyan + CMYK + PROCESS + 100.000000 + 0.000000 + 0.000000 + 0.000000 + + + CMYK Blue + CMYK + PROCESS + 100.000000 + 100.000000 + 0.000000 + 0.000000 + + + CMYK Magenta + CMYK + PROCESS + 0.000000 + 100.000000 + 0.000000 + 0.000000 + + + C=15 M=100 Y=90 K=10 + CMYK + PROCESS + 14.999998 + 100.000000 + 90.000000 + 10.000002 + + + C=0 M=90 Y=85 K=0 + CMYK + PROCESS + 0.000000 + 90.000000 + 85.000000 + 0.000000 + + + C=0 M=80 Y=95 K=0 + CMYK + PROCESS + 0.000000 + 80.000000 + 95.000000 + 0.000000 + + + C=0 M=50 Y=100 K=0 + CMYK + PROCESS + 0.000000 + 50.000000 + 100.000000 + 0.000000 + + + C=0 M=35 Y=85 K=0 + CMYK + PROCESS + 0.000000 + 35.000004 + 85.000000 + 0.000000 + + + C=5 M=0 Y=90 K=0 + CMYK + PROCESS + 5.000001 + 0.000000 + 90.000000 + 0.000000 + + + C=20 M=0 Y=100 K=0 + CMYK + PROCESS + 19.999998 + 0.000000 + 100.000000 + 0.000000 + + + C=50 M=0 Y=100 K=0 + CMYK + PROCESS + 50.000000 + 0.000000 + 100.000000 + 0.000000 + + + C=75 M=0 Y=100 K=0 + CMYK + PROCESS + 75.000000 + 0.000000 + 100.000000 + 0.000000 + + + C=85 M=10 Y=100 K=10 + CMYK + PROCESS + 85.000000 + 10.000002 + 100.000000 + 10.000002 + + + C=90 M=30 Y=95 K=30 + CMYK + PROCESS + 90.000000 + 30.000002 + 95.000000 + 30.000002 + + + C=75 M=0 Y=75 K=0 + CMYK + PROCESS + 75.000000 + 0.000000 + 75.000000 + 0.000000 + + + C=80 M=10 Y=45 K=0 + CMYK + PROCESS + 80.000000 + 10.000002 + 45.000000 + 0.000000 + + + C=70 M=15 Y=0 K=0 + CMYK + PROCESS + 70.000000 + 14.999998 + 0.000000 + 0.000000 + + + C=85 M=50 Y=0 K=0 + CMYK + PROCESS + 85.000000 + 50.000000 + 0.000000 + 0.000000 + + + C=100 M=95 Y=5 K=0 + CMYK + PROCESS + 100.000000 + 95.000000 + 5.000001 + 0.000000 + + + C=100 M=100 Y=25 K=25 + CMYK + PROCESS + 100.000000 + 100.000000 + 25.000000 + 25.000000 + + + C=75 M=100 Y=0 K=0 + CMYK + PROCESS + 75.000000 + 100.000000 + 0.000000 + 0.000000 + + + C=50 M=100 Y=0 K=0 + CMYK + PROCESS + 50.000000 + 100.000000 + 0.000000 + 0.000000 + + + C=35 M=100 Y=35 K=10 + CMYK + PROCESS + 35.000004 + 100.000000 + 35.000004 + 10.000002 + + + C=10 M=100 Y=50 K=0 + CMYK + PROCESS + 10.000002 + 100.000000 + 50.000000 + 0.000000 + + + C=0 M=95 Y=20 K=0 + CMYK + PROCESS + 0.000000 + 95.000000 + 19.999998 + 0.000000 + + + C=25 M=25 Y=40 K=0 + CMYK + PROCESS + 25.000000 + 25.000000 + 39.999996 + 0.000000 + + + C=40 M=45 Y=50 K=5 + CMYK + PROCESS + 39.999996 + 45.000000 + 50.000000 + 5.000001 + + + C=50 M=50 Y=60 K=25 + CMYK + PROCESS + 50.000000 + 50.000000 + 60.000004 + 25.000000 + + + C=55 M=60 Y=65 K=40 + CMYK + PROCESS + 55.000000 + 60.000004 + 65.000000 + 39.999996 + + + C=25 M=40 Y=65 K=0 + CMYK + PROCESS + 25.000000 + 39.999996 + 65.000000 + 0.000000 + + + C=30 M=50 Y=75 K=10 + CMYK + PROCESS + 30.000002 + 50.000000 + 75.000000 + 10.000002 + + + C=35 M=60 Y=80 K=25 + CMYK + PROCESS + 35.000004 + 60.000004 + 80.000000 + 25.000000 + + + C=40 M=65 Y=90 K=35 + CMYK + PROCESS + 39.999996 + 65.000000 + 90.000000 + 35.000004 + + + C=40 M=70 Y=100 K=50 + CMYK + PROCESS + 39.999996 + 70.000000 + 100.000000 + 50.000000 + + + C=50 M=70 Y=80 K=70 + CMYK + PROCESS + 50.000000 + 70.000000 + 80.000000 + 70.000000 + + + + + + Grays + 1 + + + + C=0 M=0 Y=0 K=100 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 100.000000 + + + C=0 M=0 Y=0 K=90 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 89.999405 + + + C=0 M=0 Y=0 K=80 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 79.998795 + + + C=0 M=0 Y=0 K=70 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 69.999702 + + + C=0 M=0 Y=0 K=60 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 59.999104 + + + C=0 M=0 Y=0 K=50 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 50.000000 + + + C=0 M=0 Y=0 K=40 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 39.999401 + + + C=0 M=0 Y=0 K=30 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 29.998802 + + + C=0 M=0 Y=0 K=20 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 19.999701 + + + C=0 M=0 Y=0 K=10 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 9.999103 + + + C=0 M=0 Y=0 K=5 + CMYK + PROCESS + 0.000000 + 0.000000 + 0.000000 + 4.998803 + + + + + + Brights + 1 + + + + C=0 M=100 Y=100 K=0 + CMYK + PROCESS + 0.000000 + 100.000000 + 100.000000 + 0.000000 + + + C=0 M=75 Y=100 K=0 + CMYK + PROCESS + 0.000000 + 75.000000 + 100.000000 + 0.000000 + + + C=0 M=10 Y=95 K=0 + CMYK + PROCESS + 0.000000 + 10.000002 + 95.000000 + 0.000000 + + + C=85 M=10 Y=100 K=0 + CMYK + PROCESS + 85.000000 + 10.000002 + 100.000000 + 0.000000 + + + C=100 M=90 Y=0 K=0 + CMYK + PROCESS + 100.000000 + 90.000000 + 0.000000 + 0.000000 + + + C=60 M=90 Y=0 K=0 + CMYK + PROCESS + 60.000004 + 90.000000 + 0.003099 + 0.003099 + + + + + + + + + Adobe PDF library 10.01 + + + + + + + + + + + + + + + + + + + + + + + + + +endstream endobj 3 0 obj <> endobj 9 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/Thumb 174 0 R/TrimBox[0.0 0.0 170.08 113.39]/Type/Page>> endobj 170 0 obj <>stream +HVN1+8iAB#. $V6I1e >"$&6mfDTQ 9o8@ +endstream endobj 174 0 obj <>stream +8;VGLgC4-*#Qks!^[=;olc::SN7#XYl<1phZNSc5@=UGRD/9Lnl&mCZ<<&[8adeXM +2k]&HP"CS]0TfX)3RQk\&IHQc,jPu?9[0"^H]i"A82@A)~> +endstream endobj 175 0 obj [/Indexed/DeviceRGB 255 176 0 R] endobj 176 0 obj <>stream +8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 +b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` +E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn +6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( +l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> +endstream endobj 168 0 obj <> endobj 177 0 obj [/View/Design] endobj 178 0 obj <>>> endobj 166 0 obj <> endobj 167 0 obj <> endobj 180 0 obj <> endobj 181 0 obj <>stream +HU{T͝QV]^ +;;D(T,Q H]|*JX4&F͂hmX_mIilZsSĞ67+w~"-Ȝ|˴$ QUxI/tmD1e+7<|y!Ѿj=NFS}$?h=Wװr:Zo!W3?M7<룗@l@XzmCxq$`+~Mu ̓{&Dأ10 L HS0 Ñ#R1IAh(c b# db"&a20b*!ӑǐYG +@l\IP(T)< *KnxlKhn887;xp?{ T>8S,~_^Tc9ۃ8z`g~vp]Zv}Z|]gc%mPU첐~>Ee{ EPHVd-58 +9 gt1bxN`v`/=xGP%]F|( ^қF.5R9apHP!̬lkgzM4D(ψωY<$~fZjڕbq O|"9|&/|o%%H$d&HK6f ےl#llli6ZfE(L1+%QIVF*teT6Y٭R+?U(Eʟ<{mWt[m Fk%v{%,`+bwMmk v FbJp vtkkb.?}RK?8bbKcy v!ٵ(ʱ~vk.]-;WGa5|$/18=Z﫽;zWVzϞ[=_|q7w5օBkCkBC5;4T Ƅ̡=':<ڹs_Ϊɝ:%k򤉙2Ə;ƮmH눔Ò,C 63 :$2B\tՔj e Wͥ%*⭒dz2]}VjTb5نlvI**9XC5)s=^ulS-Wz# +dUBR3ý5"̩SP6 -h,w.׃@nfS + +U$Rug8WF@,43vC*$TUH*!/;)^vG"*;hj.V/w* mbI h6![Qy0"D>d)*Źn۔=LwϨ{x6u]}vBplIp/q.qDZM|JCp^RVH!$2ʀA+UJ7:u[g2MDӚ" +n*UU io^YHwϹ;so#--LcW05~ZɆ6щiv٘JSZMebX/džk43&kuExT.id&W{jڏ#>XlQhk=i&eĘJk|&C{o>>\O ;t ?˪+ߘ"V +^Bk5]l[sNi>skڌaqh?tnXtExo6-F[5LS-U҉N` M*x>0ʬSiNqmO4i:! 24* j6 ڃZ-h4ZVIz]499ZZDk +f+**\V&@u{uqVR^|']'u?PX99snmb8q^:o;{\;$ "%Gˠ>h.يiIVVaK +TjI%F%Y-HsYl. +B!R_T[il +cUZIU'w#u`K܎p]~^ai ߬|Iklׯ Y^Ǟ)\Q n?y5TAjfќ'&h*/,4xz;4Z~lm(KcmvoeOWWRJgZ"W_s/T:O^h7=@[a]vE0y[W uFoꯇn}PkTixã?{~J'7T^=p<g,'ܻjfX AV@3%TVlL@ 6UV֋ܥɴ: Ru!(tA@CTٳ! /Mq)|5@UEmǯvرGc?{v-ϦzgC_[c׻;Lޡ꽏Lko|3l:{S[V ݁hgIMCZO|#*<* U{(!D4x](80 vPz Zd'iNR39 +TTd +1x>4B~ +:VUQs3U'h뢜 LOs~?^ICҋ)U^i8"P%I^&L*pt3U&q R(Y``\ ឺ:].qX vכǿ :1vK~7aPH4ctm6sz `0xVd*{!`*IƑ%R+ +c h,.K 3'wNjѰzώvSoM,d}o >zXMq-{}{ԼZF(K &p&SJWAL +eaF*Tr"@D2D-H*jVVˉs\1wj;okZԹH߆ÿքSYZe[ն :rghefW*WWE߮NxgT } +$w3@ hE+p?Ed!Sb9xZx;Syӑ,"Y2 s ƵqBsYބq7(#@c 0'pA t/=eו1"|*_n@0(MB ;`L @K7&rC 8{,1 +8Y&Nsv! 7^K.s^pFF(7&qD!wAq4P8>^xKz2!_"w9!Hf`yR|o"ee-[U i:M(gq$aPDŽap `_JKvs!t|C$:6A?eqQYaP rM9qXș㗌DRPRRAG4 1bP.(glx7)v6>!~/fZc:R֘KpbC0jr4<е- +aP+Vfy8dvJ\JXHQ,B*AscEuRRvIZNkRȵwf5aW}93w眙)^ٞ٦Ve:ecᚻ>\l}D)ˢ6dׂ[`|+XB%wxoWGa? AwKU0ȿ +I_ ^}mL, .]&Y{ k| +̆86흵Cl*N aNdAٗW8)dN)$M٧9J9.H9Dd~=^>϶eP׏Wxsϴ'H3cԭvQ@:H+cQ\C.ǼtJ9=>,ʻԥG,}<هQwP}K|cئU<[ĽIsϘ}s mmй zeZl웦"n`kcmܯ>-kNtL|5𞕢m=Ti!1A\ j5UXO|T@FLڗ3KODž#b'B4g),砚A=4+=i=7>#}܍l:z[pp3 i8Z򹾻 *qWqƢxeqbZ<.~oS!ČgK"P9KU'dEf$@]hA{W jߦQ_ 5M;o' \.J6c_f$\y9n~ȋ uw / hܐ*"fy8t'6҉nQ1:"AԷ!67CHS,Iո&a%jA^AM-O`h6L r[xhź_j+D-ol|Ǎl칍.};#ȞD6Etdx,?1{YO?p_/79ݺQW$+0<jvy쇼UJoNëTx)-)VݟQ|8ckq 033i_J=)銪$ <Y՜ evsYbn50 s37^34SMTL2Z%+;HZ+֪g٪Ԧ7%GQk/Jj/ʠ캎Y)'}?'I"+5yt_`u[ڭ*Yx`?oZZ74XBVYCW !Y0L75f/F" +PH/Z` +endstream endobj 179 0 obj <> endobj 182 0 obj <>stream +HUkTT*:c@T"A%"b;Fgda|QE1 F FR\%lf;^vЈA.b2^k>*T +|CV~lV +5&޸IT%-{V*$TC0+ه]Mbheq#⧦eϧ7[x +O6ǧB^71?[)I"٤ iT/mcX`[-666fͶymU2-@aY(J2\d*|eRlSv(>rRҪ)K/ϔ?fgddTfTgn':5 +Tωubm#vģ&fbćrnȧ|]ʏ}K{%4[z/;g`WnҬc NUen ;!E+r!FFDD8#c{^y՞]=zVz*zL{/A7vv57k᪰',( + +:;Ouy`ݝ;yP[|\LTxPݍ7.h~iUvIH{_kNi' sZE[Uk^mʵm6SqgmI+MOfo5ї0Wgt!;L_ݖsf*r|`iOM͝2I9'i;f eldž[`n@~1& RTP,KodHJrvgz1vIjrn5K**% +.rjR'.I\s$ɪ2~sD^S-eQe.}sI\MsKMtuv0KŜ(TsXEv+vb! ٪*$BJ A=,8}髡!;HCx +ڢE0O y- RuN}Ԃ r!,Iw-g#@aw:~QF-h-Ƴ,>]RE/9@T +uxq"RQ4<~Иqizh ߧO@4l26Ԩ_3P= )z闝w$$ʃ`ЩC}2.ZPaPaԀN,{U0)thUl'c?EM[dk,.w9 {9\nZo\\֧R'}Qx~ w&OEʓkTe"O0X$'=_.sl1N7n@ZV-GEXMX/O{kw|eg= Zƫ6 |7^ w÷]@Bq(u#U$-P'H0 iEaQN(pTB $q['ERhk!567;˴Z޻gمڬHjh.p5`m +<[}k_?Cru +i(fq PcV0e$f=c&$.όCIBF45s߳lfknfp\hz4w(s]ݺ 53ជ7f%[ԬᚁQ + + +fPw eygQP]zm1s' *>97˓ϋ56DnS޵蔁w-^ZD(K¬ƙ <,!6@ 0dL~@h+yW`c\ =B&cIhBT9"f2͢Œ')ned&Q!vDSX,u;\Jy®0ab&.@.?o 2^/1_̬*TdE0#gTWuVR" + \w Ԯօk5` TC"v>jA4; he7PZu*ƾN3H|zV(+%eL.య|]팶|q-3•8칗? ~ s_`4(,*r\dE j~~p+,rNU"4Ey1 帧bQ_T" + {EcJV +ʊ/"Jh#oKrvq~N[5%j-W7jڰU%ifz[ C&IZ`, *FuG,%:{. xK1JW'h[oCwmu>nL=NUf +x`6&=R"CZ mb)<! „#zGw\iؿ`?y11%~gX|mn? Hlc:B[ f&+>cV;#(0 Z +-P*K.:aК/,C7y):P\wsdpO+h/+Y3d_UGǛX-ӯVX,(M&E7r[0̢"`DB&Yᆕ*hլŠ\X#a  җ7wGfz-`U@3@g"*5hDL=O#4ɯd5!3VdX ݀-Ac r񳙻ЋtVvKR7nps{k7TZ7WOMwmzL'\>Vv$KʹZ +6tEsemi^vw KӔ~Gjn󷟯:snXKP2I6# 9C:AAAf:!$엚ǩv<<6"ƊFlƒf<`/+ UXP6&|SvbTP0Y"h8?ldy<OT9Ӣt=s^#E9>Y]Wǫ^z%w8RfI&;؄-ج$7?8qݥ> N8O(#Gfqi& + ?8 ^yyȡ.n░[!X$,yڛDS1̭C"2n]/GA”X (J"pN'pPNNfNYrXciC~PdNw^܎w^ڷt\wؑ>ivvX^UaV%-ي63&8yD]޻2 DE[ U vOH21d֚iK%3,!%5K 5u)ݭ鲆mFci.K-n\f;oT[/}Ms.Qw&brZQR:b_qW{K>Y8Esek5EM^۴볲^fdY-f+z2P.%}-Z|Jp64~n=Uw*{gp`]sPyO-W;\s׃wuW<%G *7ڕtHOtMNjфBXS5+i2WO&&rr%*[GU1bR8#ѐhe GE>MND|aX])V:-y+jMIC^LybMJ9{tS-Tz isҵDi&Sȹ1?Qq؏T7VuTuVUC^ݎg"/W|w뇁j*ySR5[A ZOJ`[i[K}[?빯o+,.,GwaohvO N6;N qnƞQiϴ/%4Mm[Br J]'a"Y?9Xu$բƒU7UmNkmX43*M+:R!lunpvUE,{nZ)l;qtXuvR9_Jm5q^AZ)3#A +Ne͘|[uVOvt2]_g!hXPjU}*hYU />Hr|:(Y:mͣOGtZˢ!^;KMsKUmbA1xIJpD; ~FRV*q=tD ?Ԫc,иOb~G; }[T%Q<&E;;MJ}bn^jWPl)xR4f\n9?| +TmI*D8_k4W-MugaY9x}G,eԩ9 {܇m'}h^6G>CŹ\6eI0~O,9,ΡIJ^QEes b)Yv`#qK|O +Hƾqˀg~W2cU}O`_tf2| `x.2|=1"*xM~GN<%9|rL6Y|elR% D r9.96VeĬ-g1'}9a^m~{b/sO2}-f?[볾y?1ǀ{sµ1:mb ڈRQ J!Oǀ*p}vq_9I@k2,E+OoT_Iow'uX{jbDn`505Xl2 ]{d7a;<5C$|RVq1g=zsØwJ]q8"|6E-~b7S th~?~u}J\#ǔ9-0ւ9e^ahel6:~_뇎7}^rJM4m&d3oviJ}Nu Q1SV#T*5~U)&B5m}ld׳#f%ֆ&֡9k ToC_Ssn` ,֤>Q\ys&4&хjrMh9fC#)ݕ,j:-9>ǟϠeM}9'iRs^O`-7EV\%$cp`~Mi=D'O~ĶMFi4)d~Uu iK*]R5eV&قllbH8 ҿ[9p.C pB|vAEE\z{{XWgCG3iFZ\iC8 + FTħDO`E><b!b1"oF pr'*[p {^g8 +i +8#ξxKC#?~gm6y߱;B~-"m{vzʗ:Mm5Mm_؂J-/y/r@5|ڳ[--~bѸV_S]ӰkUE.qrdM&2edC-jiӢkR7P{@OVQY߄5Lj" ]Lvt,2k zPqo>2^iOTsP (NTL5qe.ޓ{+[=N~#?3~wD߀9{ݴ&7;vϴnmuxlムr&*O=>S>e{;waK|^NXA.ȑ,dR y%U3L8?H=z*9q2&GbB4<N&Ym^fƵZZd-%$jqd*% ^+Rٓ((n?d:"twѪ aK{l+樂$HTޫ+ʴhVj(x:UDUΔcùY]_ggbR3ꝸR+He# )%COY +endstream endobj 173 0 obj <> endobj 172 0 obj [/ICCBased 183 0 R] endobj 183 0 obj <>stream +HuTKtKKJI,t(݋4K%ҹH4J#Ғ(H +wqyy~3̙g<3Y9El +@ ]!O-@\+BVKK :OX~WCaiHKL0qY `5ck +X]x= 8 XĿ׽>.f#aPn D^{y8  dp H st:Y׬cxc IV?S!:_9[YbQP~+rA +ShHht^ '0߅™kYXY9Yqqpl'WzEE$%D>,^|t*K)%/`\ҫ:&D [7dplDa5|mb4,yy{e5 3⚅,t+whlA   m k +xYUH&%Ȥ +qO'Mz3KT@v[NUnn^\o]abTrtlmE]e~U+jאZ:zaqi5};CS[\_ۆwCaQ1;>L$Lz}4:%8M7l̎Χ/}XT^]X>\Ym[n!ycskkƶʷ;v{pIs0Xݯ3s󝋒&$WWW*)!$$%!e$cHNOAKIMEq ƕ;KLw@YX;ؚ8^+DspfKOTCPpJ%D=++O%$*8IZ\Z^UK_wL"dx]}>9=;s_G8/̹N!Gz[<=2|B}PQzlH0Wc(Een|Pds::5&89yFT"od䳔i/ZK^&gd:fgQl kJХeJ*+篍kj5U[ZUh0|em6]B@`PpH?QM1Msψ*iϛ.Z [JYZ)X-]R޸Ѻپw?@?5 ǖ'vNg +W3gLC#u!MMMEvAms˔FVNA̝GLwA̬,llؿsݛnͽ+!B²" 'R&k?3?4+:6oT\ұڿ6VʝoF?LT;:>::>:;eqvx^sawݥʕ'_EFO\DKLtAnFF)F|ԭ6\`@z?m+F;LwiAhy͖)Mgw~_ @ZH_XA,"F)%/*9aZ:Q,\B^_AU񡒀2 +*'[j o5[uR1uh`fm$1xJgBdrltlyyEe$feg-g#`dGbwj0TOC9; ܨݿxz6zx8IP=A!.aAxۑϊ}bG-ޒēx`G/Ԝq_O?0"۬խЮ˯ǰı²µŶȷ͸ӹۺ 0@RfzƏǦȾ *GcЀџҿ'LsٛFsM6+1MZ:{T?~ò~i~L}~cbA~Dad~ty~W~O>~\/~|~`Cx}%H}1X}%z}K} {N}׋<_~7A~-ψ||Dz|+E|[s|z} ^}wO@}-~ċ {Gu{Dz{]Ĭ{f{Zx|[]|ϕM?}R<}Ǝz]YzHħz|z={LNw{\|=>|v|ېI8z/r z;bz'sMzd6zɬqv{D[{0> |;|yyaIy?yazYvzݮ[{^=c{ФI{R*y߄yfUy`VyyuKzZi{ <{z%zȎ~+~}͇}W0}3}HtЄ}Zk}=~zɇ}!~Єd*s}Y<9wpSwuuVrUW؈|;,뇔{RsѲ;:8q)PCV:4.8Ȅ2񡂡?Up Vu9S c bփR.ՁNn U388A/ͬδz6߆өn1T\e7݀tXT)$̯̕6;eCʷˆ imw3SƀV7M +\lGNػځNāa5tNzlߴS<H6*-N}o2ن N%է>w֣A}⇤\fXMݘ2, KԐ3g°[} +0e6M _1 ? 1ӣǾI^I|B̯dܪwLe1$: rW] 1S{z|diL g0\ U{[G{!{ ޔ`{&yE{xbie{Jr|/c5}~ +~:f#MKx+Ca|uI~.yW ώәߎ%¡唘[w!^T`^H*- 5GȨ瘎=Π4rv_ҍRGf,ދ̋|,ƕ{ Ҙtٕ^1Fő,;',#h%T,Qۥ{[s:9󅼓&^!Փa@!" y +.Jl6mHju,bU6+s hܸd-ʥ}wi-sun=0Ľi-_*)U_ˈb$na+;ϧT;ppA7C4.*Iߥa8Mm.ACi7\j|fiԫ)]ޭjʄU]3(í whJch-4x7h׿*P0H됎L랇ڡuÂ,{Bz}8vggҲd[!XTZZ.vlAg +{;Sm`vؿ`~?ga. +3Ì{L^WYe4]L7ok!wI~Ira^=C#Zh`Wu}p)"z7ff&3$FJ8Ҷ5m +uR_,^VS&aR~PfLL_Dw*`\-9]q  TI6)>u6 D`e͢/xqY%9ʜ;åOd\˾P&eRz;].R<oΡ]P{?: r̨\ʻb Ҥ3|m s؟W9oZt]RnÅ\cW#+nI&gyAjsN06HiD'@J+a5V~cRI̫vwtUc[3+?F|l(iU^+O?Rs1Hqil$Wþh=(RE +1BvџnF/ BsGMY9>ܖ3ȗqI ڣ5V_1ȣβiJiX0WVH[8g_/ +n3 ` 38A.|f|ј0I6bv%& ;Y㿜҄#dD.).p'3J12K[Duɥ$s8IƊ.z^48e!R6}vcMiozo0'=~i,3:?-?oS,9w#ROa; ?pB +֞IO ݟe#}ԯN$\l?], y,>&Рq]yh0AqK)ĝBFҍcH:-h-ǟcf)K9T127]qEjL<>h;|U +dpG +ƫ`&!8al`83>.qɂnA9 +; `HByg KB*k㰗2fF=#OM eT? +mTm_OBۊV<ɆF('n3uG~Ȯ#7Њ9[١`Ns.P..콤 'KnpF\? B>-`NWOOWBlfxW^b-_x&*/(j_=߆󑊢zF`LdE:SNʔ@S 03|TOKokto}bFz$4-,.m'j*J|)J6BP ^3ewܫpX.*,07xPڳ:2XOT21|"7=0ߴy}ĸB)H[Fs V+̯+Y(I(x&9JAI'tXmyG=X[8TK)2<TSRvxlȓGO|g/{>4/gRFȶ&A52 uЯ*B幃AuFǞѧuD)B,*?n` 'qQIzK֗4{B_g68#ʉ2.A$69!̒ub1&D3Qx" >ɏnνxVG&TۨÓ)sxd-5KxߣD&1±jdGjJ|J{Z ޲f6/vTp̄ub PmBU#gBg˷)-*E +ar>>Ƶrn[ɭF-IByѸP=ĶKUC wG D}"vN.p]]Q8uY{#qCv}sax_oyiNr( d8aw2CQ}V8UWO\g \yk@dcZt9$u +p-1z(=f) +vě92 w u煼ת#{P6+Dq3HIi%BCb!kc5&U ):X$܎[b2*@PkcӘdoTB_L1Uwi")=2#pI9,RO>T@>;bnDPuCfk^^\G~ oLRcHqܮ=-8^5Ońy*9:-\g8:T<?*C;[yX+I;lRL߭$DvYTQ6DyVmfy%/sIsmXP1Lռȭvow)QBb_LVwupeėO*|+](uHװ4WU.{ 4\m.QwR~MAiRz+%BKz?'{ k҉aa{H]sX}da~3_auQz VM\ĵv5I0LM)DŽp1:5,&4 %!$}ocޤA]R^xT◬M&/B:DwA24?cd&g]5b4a?iǐ Ĉ.OA 6vfvsd(5yTH/P=(a;zUs bWxDa)Eʼ $sgPJreY3w`cFo0|U[j5k.5J&eTor È´}I lpjC8c5J=g%Uo|L58E" +ِ[Ak]J͆VBM"{NrQihЦ@Y?6^߫ZWٯ]ذc؋hKSLj:>O ɲ.ݰQ{5mm<ٷ?^v"}ъw9O&vX7km[ ,70nΒ7|eP\I;-wgFN cIP#qWI ;NٶA)H~7i thl~~dzY Cx2>*c&mb{9f1X*L #> + V@g蒼]7n249=MK% ;,F\j 1klZi؊ΐ.|Q9а$_.!;̿lE,ɥDi}D3^a`Y5g{J=mɳy3CM'jM-iЦm n5? SJE+U~ ;q.tXd~~p*QeS%.Ћ"ưBsZ6-6[\d;^z4`;64藸ͱw;|+&AfLU3XTm)lF'l VɺgcGObbɜ9;v \CL, >B?KGCe"z -@EHILp<5'҉$>8#gL2m c1 c Fw)P+rkC qp/u8#!*g°Pa`vu@oH`"Ž:z_Q<,D>'ӅWP .`xW3|!6 +5 El[",0 e[Oz0~lUO+&xkPc|u$k.?{Qp""kr6isVa=~@W_ +.<7 +2#h?c~m'rE_xs6aG+K 14L^kUp^^_mS^dШ'>}5$:τ!E[bJx&n t(m;ZsF5uqX.ՂBqKP *l%{ٓ{'f';,TT,bhUq2Z3;}T9vwRR;GD + K*/@hUv$j!@ vyבm,W|-͢ ^ ~D_􆭍"ĉ#c禘*X/Ϝe>|XH;:)d9gƖ4aBQ4Ew,C +ۯBU#>SV$L-5gV ϯ*B#} npþtdU$Db&$^\^&Z"/˺+-}%Z:}9AYu rTlP0"~! ͚*@5K?߫Z-P=j>܈[O?)a5 +?WUsy5^(ge${Cm> "Gգ+$踿ϫ& Xw8?g,'ō="/xNM)'EFqrf CįQ9ZY$r!6m)4 V9kJ$# FьX٥Cp[ģ)CS;rFP#ImKGɺzj>>X9,ZL-jIbkȉ8˚?vtxPIO}_ay@:|Ve6ubd/e3<֭ztea'cLaM +lz&,f^_!?l2x2Xyń3D)\?ye ~4O+9$  +EVDTSؓ7X?MM!ԼuOtP Cbt;iްa@gW#@4c9.Do z2>M5i~u0 qswQ9ǸLt삟Mz)>kɝI;io"U)]$YL >$$T:gUo$UK,C`sCMAJMÄKC(g]ٮ9sUG0?L5QM%0Ol5&`Ƒ1,x'{k+mY}-Js#\d:i/NK\8HstQ#-ND).s*Zymnf\1l{(E=VGW9s:?wǟQZsC6A1ƃ6K@8OUY^`7j6@9?,yt4&}"T- +\Y&kVx녣391ٵqQ=beMq\`/nņ|2͌JkzDmͫIR4\~5NlօKɁZ]TC3l̅D3jSS)tWw$IX[wV +WTUw^PeUhWE^ؓ~Wchs sIg`wgs (5mr] B`7JfAaA3ƓG?{O[ ?xj/Z*7exXz Ά})C?`KcMՌ&)Y5J]q':]$؞]Yv x(ıH1eU>_0b?*񸨎b¤،D;Wxm]|N7U13*;.=>SÜj)CM>.eI1/QvН6Tkk+Ɯn\\FFV#Xde&~WE7"bju^I@j@bQ Wk8w_D ^z xZKA _`T}] +x}ЁM0S,rV+ KO&ƈ`;E{irf0F] w86f fm_8c3V<)r1p +hs|p!QP'Ղʛ2rӤej4Y r, r?4! Uq]f(*&umM+;1 +-c8CjL=L1TDJ7>)BH*cHY}~xI,{7WjWާʇhg_YovMKiN> QRǧ}AQj^G syJG"?txt,L>֍p_>Po$^<%}KDS4 +*S<ܖyd;éIJ~JMn>ȸcI6uɖژ䩊i77_5W2' 9t^}/8%wd0k)ͦF9kih3ShPBULzs'0$Y/L3ol|f ɪ\AW#siS-O^I+36xas @M +A hm45V-' ѵ1S+ ~*%~k˝ʉl * +lك=3_2~OgPs +Ccd[aے{<ХjA {! ߲ۓ;O'9+wEHE&JV?fiӺ j05瀶bhWZxo=ƺ 0zhK5mov (YOut;e=R*yMVn,$v:QڳE.yVl;svn,Wi.[@34SD_!MF>J柣ND @$Y~-CMu (+lBpБ^#$~2è /@̣6 3nh +;۪.3Fq3\َvZnZ"/vNFNJ2V{#ΚVse_쑮Ta8C¢!Η>FL\M{5eH~7;F AB?VY=۩Q i9J.sӿc%FVbdեiL`a)kD=W \ne>NX7Ƒ†2IYf-to7/~Uas[`W*v3_`~:kjR("E +* +e)DDIss,f_n6":hmh+]AqñQqSa9{~8|~bh6GZĠםN\h+(E30~kTMGβ1:zka'LG2>,gt X&@?e% +=@Ihs)HUOeX^m7R7~,, \jJԌfͬ8!*]JR:WR]Mɚ PZ;JN.8ɦ,[r*Α]MM"waX)Lbjd`>:?|:?u>^G$fa. +ʥ_S%ED8 J=ĕK{6r zGG Ui<Kg"^ q +I6vPWy^,uc/5@:ǹ+[N+li{P#^yv,ñ-NѳH⺣<֡gxV</nb6󴳜Ρ +nhB˾PoT(W##ĉTwZU} w-vT-9O᭺HIz) z9R'dI5aZGS˟agW=.P1ٜ y?2X)r4VaGXBe`9Q1͚@85$W?D}z2* +pt +;Br\ܕ'> -vCNeʔL-ʌqKHr 7I d<BgNelB^փRγF2AqCR&t7߄{" D9u)Cw1t}?"'[7o̩~1{>Ru* ʖdClutqf2[l~{S4>J$.nQnlP#x])By`r+wLH?VD:|iUG~ժ+&+Rb gP>}WԹkQǖ]WSkqwZ +DQdVd24KGMvU35KJ~4&jwJ*y;X߉˔O@5hw)񘴕o-9E:_̂o&6#V(ѽS-te$ פp}4%4mrnzhe4KX*KÃ29ʩ~'Ǥl|O5ÍB +;^j㛑Q`exH;J\*`l˴Khk +&tF|(8VǡܷR:ϳoG*UjSKknRgl ޅ-6&Nŗ7O4rGmO[du_TvY{ ̏Iy\aRKy&P7ݪJ)l"W5{K S_j0WSW;wixF1^lО伴^'1b%OAXhq)L7j}=9PX=n`ɗKX#CùA *7{ jWܴTByufכd=Af]F=_u*`q+_i݋\^`BaE|S&%Z a8+QgQ[IK-jIKr2Tcju=A ʧQ"7{ٮם*X|,Yzѽ}ƈf:jCo[>]x^hlhNrϳEDkcCǪ ת9c Ht<)}z!hE~DBӳ2S͆i{;ouIp??砃46ٺ^"1R<-65sjpCSjqi6dzھİ紈 41.$5EG9:=ob쾄 v#[xﯦAF+T(C@RQF772I$^a$Eq>.AEbiO0]ТK5ΫPÛG ZdJ*$d ^}E*֤>?Ƅ$dO _tl%$^7[KSECqz"$]*B]}W zT[Rk"n]EUYvFUW\B6-RB^Me2B4/wͺh4Ek5˖<1U[tD>Q!.kR涧7uJc>c +l/i^3;iڐ0sĀZnS +qW7Np:([568ViAFޜ~h9Pldüj2dO ++61--1Ewv =JCHW34܏&x8,&#Rc3Dvz6RSyu_N/nmكvT֥Y˼?RFװKzn9Q4gC^5l`P\ܲG&ޫ` 9PҞٲXr6 +V4,{a؄\tcY`]lǿԾar鴯؏=b!&Yb ^[\aYt$w +[R)i[{$7f"o Xp +zBz'hO|Ō4ǐ|-j +:}̴a%Tv5Y9QK d0 ?$ćH|#uD3 phrd@,@XmVKY@ou([8#!OM~.7SoJn%OG" +Ü3N|/'O-R_1Vh&׺ NPz8de 勊ZTH;XQ6}+'h_|ȋCcuHjBA,NOS{3 L`]1> A rxӴ*E^.ؐ`Q5 v{`=W6뼟\9avGOXc& v1w~0W:ʎ~f: 0/˵%m KRKAcR% P#CSߥfmD5oEx17B0<&Yd8"1wܡ5 TaaJ3p57A>+yIMcu Zd?Bk1x-rsV9sH6p]DGgO| y5S$aE`$Ls +[Ym ~u8p`6*I ߕ`S88sn9O3nXOE /7f^lbN[PBFO.9Z_.5>F S̉R'}ΪѬ`_dX|{dHXԾ3QlZe7PRqشO5OkZrx5u`aǂ:*`T), +DPQʮdߓJRk=H+ +*#u)h) )B6s9߹瞏HZGzGT"93hDͺ sr|b4y $TK "$I~$v(B#].qi?CN ~ޱ|ܷLcOnT~vxj̦5<.f\K<2p:CpSy,66>|zC +E +T)f/:X1}J+>_~Q;^ㆪvs&۸>.k7yZS:˩㜍rݖۜaKa!l.g57Kv0!;ڗfe %]"XT J3aժlwVj=v姠αe=bI/gH& :g,(y 27>aba88fVVqɌT0NɉB`( _"fo! t}Wg_0}HX 9,Qx=~Jٹx>ӱe9M2mFS)Vk-eZFF٥btg0O?Dǐ%7eyښ6WSCyeUS}l`a8i g"1лJ"|PKڝc,$+&PvꖴGBoj_t4I vqf熚(eC!b׼^SbYi1¨;2W`/7uh?4 +!z@#(T 6 ^!R S#>E/Sq9z_ /G%ӈ0C9[ۼ@(٩P ,}XTOkpQȫUG6 x2e,> -?ϭQެYz/T5FL^`tީ3\#̬D:,vw[mDW)TBZ`0Ֆ`3tBQ˟kks41y `\޸cV#z`XHhwA0چFTyqӵܫ*F˪%*/>9 +gS'"b'zL=N)cs*bR)W<#S 癛)K +&L\9WtW!Y17i*%wJ_ 閥nWJ!p-0T`:K6B+SzlL,~J#ZLHBEe߈Eq1 +ڸTD}bB;*OTCnՍl$OYQ0mz7o9NŻ|hDV[Ve֩b7YZÖHl~I)ܻJ5oOݑ%(,hZGҼmRd!/NEWutV57z;jjs^^lDǾ0-a_aL؁w44簍b^ppi&nX uƻ-݂ -cY4_g ?jGIfH %J҂[%ϩC6OzvWzoZtA$?z;ؼFT2/+0@@S<@>0bSuqw;j4S'/4sEթ(P[V^5ƊHkg/ۄw 0*֭ ajyB5TC J(_F4!m, RN ?S9 :״OfOV"յڇ1,V)S@._ +#Q`K|ͨ%cj/&\: [Ft^Z"q٤Jm뙊jMarח`VCg +w"~>< 8i}XT8dzQVY<p%HG/Û`rq;Nm~Ms\/Zh:(MXа^F.꜋.Ys}5`a((X0T+JS 4&~|iB!! !)$)ʰ WFY]E븎3x,˽}|dc +|i-0Ws +Q_GpRjy0׿tjT̎ԍD1څڍ›N:ka? 7ek_%]a;זF=9-b= &Mm0-vD'^j+/5(er^+EL F1$1KWE|fOFMKm::1`ڥfXЩM*i9 +l?+Lw?-Nx͈wɳ\C0瑃f sM;iđ`$O0z*RٹB9@"k5v~.lB?ug]ed8JAj͹um.DO^^v:y;ske+,L¶vŝҼخd_5Z;q#k> MU\J{l*͟ґ3Doy"UDcu#H)BPit/ v`_Sʝ{e5mpPpy=-2[m+v6*.WۿSǔ] +^DMk,2.#ɲ\!{^I4Ԉ.~çlDcBU\b"c jvJG|H`_2rHѥ tHHBaG :Bf{'9 +[jaЧe +&hz6Fdy?>gۑx&l$^:^nx-'-]O 5@S Uڏy]Tu _,zWPT|BJ,ɕ}`8ߴy?p7gˢu\JO(_vOUue4+Qbi?A.jCxyRJ駥Pt㸲rTfdd$ֺFR>PaL'v2M*׵T]`W*cD*hAe#"ɆKO9JKL2J( KgK3jԉfZnL5oM(_>FOӹGi}<@w#Ndhoo4Y ̾Fٸ2YAz$W֜5Copli\ 32l;a<;S?B>zprjsm1tZc̥{s/J{c*#3ހfϡneh->Bc9SJ"չO8'8ހ `yHϤu-*` x[c')Oy\x!QS9q*;$;d'=NY ,|ܶ34qT=ka%hs䬺UX7Fl[ o1apuxf9QGk4;e +˸7荇5xB:yZdͫ,`2?_a[0~9iY Fs3g Ë9u<,yx87 1Ja,O@/gO㔛94 |.]16'^@1'p:XtwL,jVQv@wl{έ̱\?R^UV\GI+9D03oyd[R<""" +.2}"!<4tH~(-r25DH@l"K濣,/S}"+~wF}V dRz,:w&?C~FqJ}JݢJirjzEgU#p]ZF%+[PjewVjlW7wR/*C%%jGx @EFH)&0_Օ|Xu +DRNXA\0JSH307͛73 CWc+U#r# aQOL4Eљ?s~{sIy?y>ҒLָKd-ޣJ1v*fH 6hz+~BO:IQqZUՍP[UD#BM >$ z|?^!J0W8N WzXfщ@'h< +%sdR۔e[$z,Z2H5[&Ht L UO 췯+52j&P6uRɮ! +a+rk!o4 `ܗP)f%VQTF(Z]s,TR|O)O?ho# ]6yл)OU,F٠E})gsٴGyҘp/kw~˖I'Y;TdgYU'I8@F* 8 $I+A2((+y8OϋWȗE {բbW"@}@C׌teYgvֈHofE`eagbN_4!/e%O;mhtWv6[iyFy4ʔat V] au #QYm3rM/q{~tjD 7fiɷ  . =[n`4qShBrx_5wԐ %nQ~x'G[ `+qb]Q2Ըi=UGn~ڋJ(Aݪd E7Kz +M]!} jnh-Cզ_魺a٭Dfrj6$-4nUZF)Zpux'@]U/ٳۿ3Ug`iU}ڰULWu+SU[;uXJPvOŀ{$KF,qQruH.}imfZh~atMBb0*iWC䶧jZmn[nKfi c+.&oV.&ʭ{5_s9dmIA. *s5: 1Ů m!|fl'6#N +Z>\oMkCZ8)*bEE@(27{I" $!0a=+vUZŁ`-xEJUǺ +~~7TSsV6i1=2J眆Jh@ Uu;7!0 +߽\醮%-;=.e/T7D$v{.ʫ|ZѮmcDֲ+-Cu_{>1H1]"D^nR ٺ:E3[h9 7TJOW+3 vœLimc @6'[c`Ǧ8v!bR{1_ӵuoPE2\@;4"mO m{ ߺE1dA}C=WB}[3']\PJG5VmnYG Xyahd'J[U~ vWۅWo]WnGnR9H7ѨAu 1vZm]lUrTVA +sj6lhm,My4A*0vJR? Ĵ>2C!*#q0MJ!:ŏCR|dFa?2݂ch3dBzSIt?%LmF[AxYGҏ0m;GY1űh%[sጒ@9 q_8G>r Wn)jodEzC.qJviN&If8bg + v|sd%:uTf&L0~p.(RU +; _)w%$/ t# +~#u`u[w.qsY_-*'̳ɩk/)2* i9$7fUzflc9}],툏WYCIkS-ty7>T! 26Kݲ m&cӣh' ..+upC6&@j5tdP0=I˂Ė +C{޶$tR:(ϭuOR4$=jluq1?פ9Si|cqF!_z^SK}`d%DT wV>;<'V=(5H%jWMV#9YD2֓p~~J }D]gNSsjJmn->,vg&SLl#>^i8ʞ%4'RJDhRN0hBA0(r0K+aMY|"EGE_R^v4/?m[˨yN`K/5[71[Gؒ' '铯RGhqꭁ]>iIX +5'\GB ćd^ux+[^%e ֪pxE + 6%!Itި@Ҿ#% :*h$r7שׁ55׈Ց'I+6*ЮwȰ%U#zD+Jt BaUؕ 6}uOr7dP Cu}FEua7RV"KST20 EN{^lkƕ$vW(,F7b ˢÞOy<"_).kh[n 9W?gڈ7yș*ӼuA@ OpIRrP($e[iVYR +n#(aFq&mq3%\g?%ӆM5XD3b$ʁW ƿ5&͔D4®KcᏊ . +1Zo +^`~¿`6z q aXǰ)Ӽ܄'84 n"Db.yC<K d},{*h +ڸh>wMv^ c8Iƻ(~j? +eoyl/Dl5Żרpy1ܣܵ^004{ .%CA22dWuQ>okL<5.ſȠiffh7S-|^TjX[wCY*sG^1Ve֗+˃L3 /2y{+.;CtJ } ->٫y6q< WxA_PZ? Q y1>yK\.!OqM +0Cl];Sk)=RZ@[ɷ5JBeǐ$Ni"0 -úR4H~9.☫|Dϸah-)r~"eoMK%4 _7"‘e +QD~0T.>"x*O>酧.Ey+HVy55RWsEk*PxEGB;(J X(8hiqmh^ 0`}_APWDLZ‹]<4zG֦`oyZR|u^gCF#nr)Va5ƪw9njyIt +xI1bIy>}-AگOShKFx6xqqQ +3SU\ka椚̩Di~ ?{>J3mtߐZt]YNju]ɒQYlZZsNѴѷW>Sݥ0Bj+7q҄fU7m :8^;#eտ+*,_CY3MSU*LX.jQȖg_IWJ5a"9R'C\y׳qH)VU-Z.\+Ѥ/aen/|F[?SPkr" +^Y>VH9 &yaIxQfd}+] +U.o.=q-y][viRgk*`/pLBu+A@[)&PYQ?im/K,Y*gu(i2`؀V"fJSs=RU@7+>dْsmY)w=U?ο3D qjv83׽} 1r@vy:{Eͩԡ.޸,珈~CH{ksv_l毁@"lOR."0Fl]]C˧Mfi nq˶Q{56ef e l[IuY_(i&;to 5kZ/ jjp~Ch⨿䦿iRs!G-֠5 +&wa7WAƫXUr8+}E)oVӃIÌ}qZlh<gw +A?=$6-ޡ|,)!<*ǘ*z!8߀ϸuPpD|Ŝe=sm4'ҢؽYaPOZ(vj?VGgxI=V-̹uMCJH_-C]B~2A\8*E8PTΔTo 9/whaߣby\'F,Ռo%wU/ժnM*T Ƌ{5NJԢT9L;y _fXD\uַA:x")V%V/*]1# )ԋ@X"SVӅ4u.f?Uչk%Nj;c~?]Pۺ˄WҌ=V듍1 +E ֻqd{q׉; +NYHdfttc #&vPtQjd1o ­R)ʽ@}<7 &8wyybH04͂@>o` ~M`Oi#T2"-!NSn\ z$SC%Q%;OzcT)!M.wf.Po1U=Bl1F#F0HD\u̞rڜ*ujQO5u8E$7:"І(UuANgulWYE*Z"cT\kTxlx)$8(YBIY`[}.Bb T$=U8Oŧ yP-x$]0_ +j(sOH|/=wKR` ptl>f*ӡuU<=Ts(&zpKA?sLo`N0Mq+~*m-~F7^5惬H]${|-Ҷ9Y&=X'Vu+^ϖEm +Y/0X cAdPc_X VRx6b|C6^FeC]o-F?f7Q3V>͝yFsy]ݯMF͊k^NնI#FZ.7ƆQfeϫCJn;AjB JFw +mԗ6t(I5beElXQ͌ i,)6QS 1zJezVBf ۹ʹ/ HQ89SnE%o-4NJ``,)~utyQN]vحp+e"xN6y*,7$'x\CQL[8.d@}CɏE)1D?@晹b$?7 + YM N| _Td'wa}0Z<9|3閗3~o=Y>l0Wb=P1jmE XR[louv:.C=;.a.BřS[nWJ3ǟN1='\Xr8۲:KXj6e g΀ap%z"K1.c1ɇzɭGTRiVBe-)K@iͬ!u@_`&2q up%P +SЧ|NWP !o-t_ nyV|ؤ賐e`HʏE=>\Tǀ|cҎkIST!%Gu,%[IR'+#T}m3\/df)`n2#\M(CQd6flqGv첵).Z&wITe{JQܕQE\m`p`Ҵ\z[v7OVo9ݜQ}$SSFMWdnyuя: *o[3 O FRJ0ոl+L+&oE+d- +@?^fEkoo\fyJ8zΰXmi  -Nw}OYpz&@>gݪHc. ]7Mz#fe"g\a@\qyºJc\3ܔ r'WQVE D|PLs\h_h#9Z-TdL>˼!WS/bniA3.1Fx@Ǡ3UNN^nPOZdtvWO&-8ךshveSȉ`wPU_cař=շ}m`<<$+UV66do88{ηzkG}ڻ<<7\jvg!5M!w&GmpfSgO3x? +wZsLRq/~lK]QV:om<Q' R]AMXyu ^ȩ $}! 9LHaH8hʡrTtD-*fY]]wuu[bgg޼ߛ"ȹ I7HR7HBHudt *Ჲ=eJtj| #TI/W?{ΝO^'`v'$^E=7ITF2˵7-^'Z"[x ;[U7,QyWrr9E6cy'I gIRm2ZQ +{0K,^H/>>G@l`T=FZnZH ѳ$m¯鵩KA3D;w7ŏw^J<`i$M_x8wU-,/h!pbP1|*k _U;N45jX_:]$ %ͫX+é Miwzz{7`fOE5FohX}fL}k%Jq_b_A54WK'h?:lTHmm. m&"X7rV7l̨b]r+ OpK[{0EuwrfӵFajCCPktMݻVw[FR(Y-VE8 P?)p>͛5 #TtF%3 qhk ;`LVOpZۓ. j&\Cʡ <*g!r)J;ȁ&xK0N\B&Գ$bԍ7fpt(0H23ӲG1d?ź +bVֆ|\[w+tjj?b7hwJCmm#b.^VBDRb8E]4J 7LGc.Xd/a&ڎ @顢zQuֈ4Tqi˽èb˕ 43~,ymoθ[0 +l} TCuLBt 2ZW>Eh@+[Řy0= +sU"r];û](̏{e E=ma^2'FKv~.Оm0Oj(esߺ Pk*!3IBЦs4{^|{6k\* }XYǠD=A %$hǹWǂORV UBꯪr+Ca6 Kԣe :Zڿu6&?W&k).]%],lb7MX][H"}WL)RIrfr?AƁY&I~_IB${XlZXE&|w#؆`_vߢfu3fm89?9 +̟NՎ`jz1*.@爎܋`oْJ_+-4α6@/DWEjE}HRDl;Y+ z/1Dѓ(z)oι&;.4aZ#gsbZ+XWi;<~n"( M'b6!G lP<^\nM8--aG+dyXP^s:0q \p3bWu.,R&rm#қs)lej(^ ,=/FV6fj;ex%Dk%!FW@ao2QTvs 5h0B{UHiGCOzL'pbIq+'_1Lv +QA%$[H~}{1fKٲ:HmWS +ëd}2w7 j< O7i2G;SWݒ!@YsZ~*PƐ6xQܡ/9i7cGHVf3R>K2jZxH"Z")vHD} @} YJ64T(P_(*C]miSJqOZgA(ny8}wν37;?߇*x"D6HaeZ +5K e +tE=H\ƒW8 72ym]Ly 1N<8͍@:> >6pӹ$.7$C$pA)hJewT*FmKg-lm*{{v\ܲsJa>3_*ݑہ>V5|WG_>RR_YL!RFjz S5fځO2< `}I\:XiZkRH*4[(xX$u|I9̺TkVzl_׼gC%*wXR nY)N.9+wZ[E9ľWJ%wp`Nj[.b|JOsdW,R~#* ĽyFdwCp*L(8OelL˞)A vfFʹ.Knd~A򥾺]Di(i]YʯJߟ?>w[侾7KK6w"!eDp5V* 3VEa{:KoEDcɾJ#oOU44lTjFk,>{S?ýSk>Su=|j}T +SU.nk.mcŮ)RxbT<TV*yÙ<+`RC;S^0-itp<ȗ2IZ_0ȡVVKHWol9=fd jb%}DCy{sI*{ZL1r`n}+D_*Uz3}i779_kjxL+u ;FxL.mmQ`sKzK#>&ޗxiBV^\s3_XX_رC+ҭj|S kϽ|j|[X +ΆBL.?\DCqߢ7nO(M&JOiݖw0IJLM,NCOYPoQRSTUVX Y#Z:[Q\f]x^_`abcdfgh#i3jBkRl^mgnqozpqrstuvwxyz{|}~ˀɁǂф{pdXL@3& ֜ȝ|jWE3 תū}kYG6$ڷȸ~kYG5"ŵƣǑ~lYD.оѧҐyaI1ڲۘ}bG,{W3qHvU3sIa)\ Z, +     !"#$%&'()*+,-./0123456789:;~<|=|>|?}@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`acdeefghijklmnopqrstuvwxyz{|z}o~dXMA5)ۈʉq`N=, +ٖɗmZH6%ؤʥwog`ZTOLIFEDEFHJNRW]cjr{ĄŊƐǖȝɥʭ˶̿*7DQ^kyކߔ ,8CNYcjnoldVD/h 2 +R e r xzzzyuph^RE7)4=@?:4 ,!#"#$$%&'()*+,-./|0p1d2Y3M4A566+7!89 ::;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{||}v~oiaZQH>5+! ؎͏Ðxpjc^YURPOOPRUY_fnx̰߱ 8Ql»!Ceª9^ɂʦ2TtҔӲ6Lat݇ޘߧoX\[VL=*b/fMq T + p_L7! }tfUA, !"#$%z&d'N(9)%**+,-./01y2g3U4D526"7889:;<=>?@}AoBbCUDIE~% ہ‚rW; ϊ}bG-ޒēx`G/Ԝq_O?0"۬խЮ˯ǰı²µŶȷ͸ӹۺ 0@RfzƏǦȾ *GcЀџҿ'LsٛFsM6+1MZ:{OX͙~ʹ~y~eL~j~Qc=9~|4~cl@~]̳~nf~C~لOiZ/gP8v}6q}0}>ϲ:}i^},~ ׉_LpK-~~,*~&E()D9vyowy=TS3wI!D)J%OBvwN64;>FVWm +S^Di*bPkpة?%"1#!ϼK`L<n-e2*+) X䥂C@v2l Q?(=0q MzǃIz7MEY; Y@K (-\U&>rI^2IMe;Ya"VN,S;o_%sD;fƎ.R?l ;0Dq>8zDKG)3o+&<4@n͗0EO94#ҐnW9 b_7}B2yːv/ąJH삻Ȧp$ȫވy;Æǘfo虔F¨LsI,KhW2!AjHE^τ _wdlXggΩr!jU)[%B\DCfp <_\?k,.wȲirJRݐ=>0+cvZ{HllLVAc۠ ^{6oCҏSمbȏ:sz 7jP@Q;[wg|z30Uq`!P-~|X3+z2lIђ:_p-FOJ*Yr(".O'qäfrCRJ'dc~h!€?`}WzBd;hѲGϲmT SAij9< +ߨ%@`8xLTqė=,Mk $hJdx_r̰gʱhtG,KytomVK0X?R=Џ ]ٛa`sʠ7g&Grŀ?>r&z`b>&z%sxbw&{~څ]"WR%c"zD zA rs!֝=jcf]rmANJl$ے#ؑ >wTfGFF699<׵.'SZ*˺#-Jl.ZZx%m*| o 2ӝ_TWK4eRsu33'jRFBWl| +Fgml0L1, y+Hu2f;[T0BE{:qntoT]okI, + LgV_R:Kϋ0dP?= vE̷փ(M4m\Tk׉o,H=Zw/EI-LQ[ 8F/g֖'$?[u~fghXjݚ- VImKՀ,%ibQ*e97WKMYiHtXTBUDw-49#iԗ/r]hGވ/ + +lD2 h‘%TTT*Fdw">GY?"[f r5ʊ4`TAo4H5rWS8Xy;$Yr'q vUPV&4m/5LJE:S7Hvy.. kPXAl` +,e: E$@BKr.!{A$A,CY[EA;| TJkU>41aƜdcT.Us R&BchR) + Pd;ʟHbl?1;_:i^mMh9Ӝ+,x+(‡j3=P6u>a}&b (0=.À<2&m%u9_~zL!S`(6͟>թVlW䨸m5ypg!2< PR%wC>ubvbF.0UK$K;؂P,!rA5%\v" +[2gwdxJ:_'Eښ_+^Cژ I! v,V72UJLNITUKɎIy/R+=+(֨v6!M @PB%R--3|4-)#ͯ w.ܘ<;b#;*>$eG +>3"و~AZ$xOUx f𜓜x;٥Q h X(Zx=`dš 8b†id, ϐ!enZ +b /޲І2P0~ +1baktT ?g)˧9 С`.ޓ`>'4\DRdPaxԗ?i|9,t Ĵq]"m-9OD'Ex>#Bz6Nk%tm6BDzVQGq,2O: y{iHcy[]vaZT5 ȨR 345N@qG!fYXr{3^M7HX1ey87ҙ;NP9tn/D=}*I:2s̋%G{7abTBm6ۺ4JZmI׶Fהz\FD*rEyք ̣V-8ˉi#7XmZLW:2 +$Iⷱd`U+z3 8"}Y\E^\Qܵ)<&uZ!FM)V"ڟ}&à/ ď 5 O546PW눤0 fGlEbdc 'ƪrӬ[{K("M/y%0=zFBx}{w6{Y50%,40R}ԓvTp>K@fR$7HU( /10f<,1BS>٨RI3#&&pa5j19#yTH9cI[էjU̟~? +7NzM`k|-kqJ}(Ҙ2SaӼGi ; b:`uǤayU}T 2Ftm̔%OpuDU0m~L-_:qWg0~huw-] NVrP =<]x;Y1iw@8,n\(zqb !$zB&5dn61Q& & CuЎy#c%$7]w'z\0Lk{8 ;fGS Fx¬P~Km%t3MccM(bCB$ _ J,@՜ %ӸZ;.6B)PT~~:_tHNITScΤ5_3bO6-[o 7$cn:zNqnE2~7\NT' "[fTT^2F&+c5r~ԕ(jl 48mWDC]X#<n_ T 45 C0 V~ m&AGA7w@w;Q8Q ?d9#1yʕq_eS]y|d*&6Q30J(WG>HN vAg+[o:y1ډGmUV'pJ{"M@3X|*oƙޞ%sfJ<ߔ[-0R'G i++qNPF\&XT~ykPx>–~u2LX'P MOW rة Z?qU\+w>-q}y/sRQQJ@737Ka[t̷E8X,Tp!PVK$`Κ׵bu~*LlBz-f{i8DbMp/ŲF_<`w[Uq. Y!'i7L' Rz$v]c-ީ%HY~ٕ 鞀ws{)Wa˹ԑ`{[z ϡZ& z +- U@uBP.8jz B{GtϤ1ޕq# ^o2N*`DZm錞c@QY@Oy`ŕ^ )H??s %J@f-H%{#}řPKn@u5w:=YX9(5#p 9#Av(~-"]Qb'䠡ya +'£ +vO@%7_*Z-r*~z Ց4!wBpG-q.a+c"wmqk=WfB +k^0>npu5㞃= m]0o-1:ǒ~%ui;pVO/a3;0oKܼL6Ed@ZU%{ ^ ͰyOVNHLmu?uMBEQ1\IُOui@L7Nk\dd[i|lRܰ3"rW^  +19~(VZQjsfb5~Nl, $LAE \Yv3k"*Ie.gj4uDk"*T~~g^ ~<|1cPx7kF84K(/AI\%HG;'6`kK +ZJAFqKq$5GT#.a;1 p't.t-SSUn;QY(sў*M8= +BHZ# GcDS{d',Utl=,}*vcr+](_1rØ@?A[KDlv'”o>=ԏ[?Q ôn!ܘeoiB]u3PzP'ߧ%44Qw L7@?;gSVjgohop7syR\7V%xL| 3n|2Q|-GotuV֘Gk}fd'̐yQ/;^+b#&~ي2(ɚpTֆ)$Dru:5zj,|~0T\~>*,6Y +]7E9!7;au*8Y?Ң#WfiA~\mB\$OwDhE16:_JqBR%*X3 !O:`Iok2+}Y'1%Y GPMJ{rK w_ L&N NyA'ճmﺾo4gz"v;L je %Ɯ{NS6U'*@djNcvo^=Bi 795l€Aⶫ627ICkyV_}B.I=YR2U^c~o\Ƙa3Ƹ2@eU*Tlmcӱ~ xnNU)o`Iχa]PFŚVTC&ϣ࿋Y=d]/..FBXs+$=}buM>RWm6Ŗ6ᢐFX 5x{v*j;zv<_~AVUJϐ^IjQxシuQo=lK_ՑEkZ\4sqU7vOa J?Q)4C^\k[{3y~M|J'g4Ay,$0( jHl:Q"V҉1X&e s)MZ(W |Ϲ\88&tcpҔa͔ CC GU$^fb|8u̸&A֍9ke7;㥦koAvՏ0o5y'M3q"y$[Y@SgÓ=ݎP1)L \!B;U!)/C$N$A³ueuU},3Y'/Jc .8_[ON-<"NawGm_+yj~P]ſ^\y X,r-|㒒ܳ<L^T},^eDR,nkqց%|r,!gJx=~p{"\eeEN;Þ=${q@Q_\?/иLe>u#Mp'Yn_e<q㼅Ra8pLB=(YK[l`BKB#4;c;HS^OA>Ʉx\+0lkOԼ`Fcfup.wlCnKJIi]&fXPAn1کFTKBoI!ӮZ f)~Xhy9 ݨOC5&|T2ӲnSLB5eD0:yP;(w9mΪnWhKu{`wk +kH>*ڲ1 wp5Q݌$;LvvJ1f3n*Tg@oO#9|}?V0M5.ۀz{" NK?C_$ P&B̆e>(qIu`|ob|_0l2WꂝsCܴLTIa?f(/+PIwB WhgšH EiŮ(G6 +"  +"(H2̙dfr $xZEP>ţC~EF:}< \{ +% rH6N$(߫Nᷘ_%1]2:$o-8ȥ I-qt;'kTjJW^}kfQUr\ulNkHn᫂H*Wd6M2 *{`V%VRoJJ`+"yO|s86Vy8 :+;9ɨ=.qqѝ=ɥ^ӏwldG;fH^2`zBȳ ŞO*{M2MoR0i:T~%$9ED~cj<}${.-+P]c=Vzpwz\S;!?C:GFIױqYŞ ݇>;]mS)yrEz_n˕aI"l|sGvmߵ_7e]֭>ГU)i:D΂G}V W5*{f? +($p\)9D$ZYr|(4D܁OHʳ ;ܫv۱jxLr_r ;Wi nV|Rudܦ;@YNl-QnJȲc/14C:'K&̕BOJ{ߴzfsW|F-q2 ?}Y[pXdY<\v+M{ir8~LJޯ vlL: ?@o[g`}>?UrǛI2Lk.}GpI8QRV%܂L0/PUE ?ɹTcۼfHs^QMC!)$ ; ej uIy W6#LMi9ĦͱP*HʘFg]mߝn+|X$Z6K'OQJq m(B~ljSuZ ťbhWP"z@UVJ΂\,<\HA 5Oaf΍C75O Uݮx7F>QL~:ʥ#][eTS2%c Æ~EWg9i%3W4ފ:}޼0_X|-ƣµVu8H{YF"qĔ-F95E!L/3zLw@"FRmOQ&[#ZO/xˤr~9T00bܬ 4Pߋb>_nMFY%MOaN$ʡ˖~ &($~>tBM%^i3ϐEf8UB '`-icIaͨ+ دR=ZȾŁ=5U#5HR>njky/s6H؃E oLyCG/?QE%FvMMz)=ZB.ϡƋ/•3O85&YKլ(ST eҝZVx'xaV4Ë*H]z~h~ i0d,K8CZy{jCF')b|xNJ>V{0e#|SE1b狛*_R"37Boξ(p3_<ݥ%-tɫBetƓpx HuRuɵ)H?mf@Iz͂qrgM_D|Ce +ӯ_wCՄYK/Ԩ 佨/Y0y̸7.]*ѳa !d[m9#{-;W[ U$mb?ci3ؘsq6ĂT t֠} dlv{Fyt/ټt̰KQ8 N"4ʻc'׸Ns6I ][#?wsb,4U_ f)Eď* uä6Go76ɵ{'CGa+RUA=@5_rgs1OUG*ʚO&Q͡4%nlc=%Z vY Zeਝ4? eC` _wvĦ10KB/*Brv4όwM 0r `$CܝGa6;g-N_&ɰ.` `0M/s\PMf`p3 $A7 i c(y jӍ 5!UiMSD-rBFL&^:OF-T4w T3c q]2Rd/3U\;?Up=@b +TYRJ3O)*+sWu.[L6ǼA. 귒hoN_=C|HW Gz}w\2h{?Ur_ס,[<4DmD〷C/Fl Mr_򑹾g"P\TMIiDw$=` IӐ }6.jYx^h}]"]l +8"ӽ΃ǐL"Hڝk:^֖Tm.^@1~qxTlU#U75:LE|4&W25exz*̖̆;M0do^lpmaIS7kD#'͊$"lL?bADINmEh 8Ԍ*"vұE݌5Z5 `z~x[MN&a|b(ǁ$ch |cq)M_Ɔw>bSО$  Dpz!G@o3a]PnN2);K4 U"p+q 7bLay$04iCc9(6>E3a{ R䏡0`?s07y9'`Lq`ScLr&MP.ڽ,_ru/F=܏=1ltŜ 9>1lם +KX_t+ =#ثL +uuWK̹ u)F@jR_$YuBśGbQl+$,o8qlg!) n2QήU>Ytw(^'Y! %GU9, &>YcwU Mj"Zo6VWF9=al mynqA/2AI̐i +qAN?!9NxlbO{eiYQ̶>SZ .&sbj?1_ǡPkٟx`дY!n6fVJ?ffon06l)7BuyMAѢ&m>>Nj#4J%&|E]ۊ:i2g0io*6zXh +҂3;1"2ҍ+O?KjaY|nMHpA/LsI5cu*ΐDx!W {|mpq%qehrYbBt M7uA- +w%5,x+ z!Ί}|%wpȩxeXx|Yy$M}yAz5{+=}5"6~{άq~p^Q~Md~*XŸ~,LU~S@~5 ~+f2T"P{pUIpf P[AE;Z1ٓ0U)Fj"0΂op~7f ![BPY_EE;T\1撠C)k"djpmfr=[M,1P\ǑES;`Ћ1')}"Ρmfni=pkqr^mtolVurX wtDyw'0|Yz>̾jqźjlr`ntpu0rnvgkbtgwWIv~yCtxz0b{x|bh|~j|l|^n|~pp|j\s}AVtu[}Bw}0z~l;fׇ i +9kDmh5})oviNqꂿUtXBEv=/yVǧeP{qgi卞|l{nohLp(TsuSAv@Z/ryX_dִ2f}}hƖMk/zmtLgdojT3rxAKuI/8xσ[c&5e[}gܞrQj.xylfoDSr d@u/x\ębp vdܫg%iwy3kyenbSq@to.wUad`RfWh-xkkemn)Rq\@?t@.wZtf4uhvjxxm0xyosekz.qR|{itP?|w-~zK'rp{sqԜu#svFtgwwtudxw*Qz%x?E{zb-}|Xpzr'zssj{@(t{vxv|cwy|Qy +}>z}-R|~H(oYpq݃^s=uPt;bvSPPx <>Ay-|0m{opzrt?s^auQOw+T=y>,{¹luSmoou{psGrlatqOvk?=txj,{ @k mܖnlprxqؔM`WsNuȌ=&x,zj׫4lgmomqq0_s*9N uI_|2so|u]}@vLO}xT;"~z-*|Ly(x*yyr z$y gWTaˢĮkTd@D\dPPp-HG&]30;sCg( 1DE*n6ܵaz*&>P3ĸg| ,X񦁓`S$>BG DǕu#i#܌-`xJ!wم:(`[HWeQ2UFD`|:Cd2~TvkdEeUb2̽p ʠ~[@QdF!7H$ #dLt!BOK*G-iCrB.UlmO> ,B2W<+367ߛ@ )۠&KO 0ޏO igm82=D 4FB[!AIb4~Z *fz\OtF&ӝN&3xF[Hjz&3n14bM zB! |+ +/hw{V\lsTjg?қ۟u 깮D}û.5ʺ(wM ұ=Ljeo(u\ yPXƢ8p2232"uh0 ;(3-ybݷ3WdsF@w ,8#!H*9)iF^ +P7Dg3I33D_)JQNdOm2ta':=J.۱ +s`d+uu- ǵiȵ\L +kw/i&G1|91:H^gW@-Eif?QF?/KvřMkz݈uN0:ӎ3BJ]PU@׊VVzDPC9>RTl{=EY^ScyjN96b~mwj[ Zl'd}[YގM:tU9WI-#d=sѣS IKuƷ6i/JO{s{c@6oPU,'9cV~M6IQ1WwoT+mlF0\Od?oi4M4MC%HfM[r0p[p|R’/Ld/_c8]׍ YpFKM(Ewo@jjI0/kad[H>|/ѓL |00SVRׂV2Cæav4x,'L82'7&n&CĿf]9-f]i{Ta4EeNٟή"V_ǔ3tf65ҷ, jP6Ex)ͻUSu@6M6dFVSˬGŦwƠuy@>.TȆVOdj?#驺sycA)w,zl<ـB*7ij,\P#;}}~r4fxO"ZhNMBe@(78,iA#FaN}qǖ*lf Zۋ M2HB-7߅,yY#p9|qeےNYƐ*M}"A튘6؈U,ۅ#||(qW,esY!MANJje6Ç,}#5tPcjOf=_`rhTkHm=op2s(Hv "zbtu5k#jl_-$nnSjpDHrB=tytn2ݑOv)yL |triIs ^ٟtSuSHt#v=_.x02y)B{! +}~st(o.w]^`cCcHlVf+;t)i0aldOȯ>tsw[-wnw\-_AMb0ke#SsShA!a7kO|o>#r -v0[Dn^aaShdL%rg{`j哟On-=rfv-vm3Zp]­ `܄cr f؝C` jRNnb=q-vBw~o`^q&ccrfBti quk_wInN1yq<{u8,-}pymjynlpptnRrp/qsr_;utMwv2>@?nC)HKс#Eu$%`^>[ +(?`~^x0_+OËv&"YD>s5x']~-if~>NF" P^OG# ǖ0<7ӆ7 :sXL!kݱrx{6Rt"+@q*7k1U誘Y}(~\H`J䞂\ +52[{F;Onݦ *C{2Hpuw0D(MHOB$vKѻX{'V' 5c + +sh]T4I DGãTD(2BNlz9eB_ ݫ.#JUbGɰ Pc36߅!3?o/˼ 4Ta1l-vKWZApɾ<>\Щހka8Z5$GdW#{{ߢ! e8l&Vlu4ʚ@ԸQWJ"쎛)9(6gf y'1?JL)b쭢l]4LkۘPpuﲹ)nCA Ŷ+2dEH'Hm&Y3uѷkѽӭ1n]_Z<ڮRvӛpjm9G݂#j}dA-uڠ +0\C"dhK>مٸ:IFq\BVhF'$[I&3BtK\ D'`;I ["%#N\I +|?a8+ş3"-Aש_ZZKO%u6`X{cͯw1 $+OM{'E],jz6+~ Qk a=_/E qbVk&S7fg\"&]KOÑ: %ijeB>%j:l=T1e~/ߪg I0^YV)<^ϑ% +զՏQS-WGpaθD8ߠ9D֑ՃXM' +UJ]I"mteuuE)-3`Ҍ SoO6Ju@$ZZǚ;oam>݄92)@m{>-V|WU>r$Ӳ]qّ¸zEYuɔ>GT@蚩\'}њG9mp.d.@L4c&,r;b ӂdlt3ݦ]Q<b-w Nk k bK%H@ j"W4sf|Aa{8c%J@bW\E':Ehsř=}9fǹTW !3ߔ% פԘ]YzĀ&XIkWdPيb]9gbIi $ O1wu_)xS$P)m/UI .mpsf5Uwl}oyh 4;=DUIKSDSjj:?2*w0P4o+G4O6jeu HW)ϛ=ݮȆs51 okaIӽ֒Wo0%>#}?V5N_r}%7 +Լ{!`D}K_4 +!Q\HҽzȔHN>uA-^Ჰbg%+k58W #wi+q0khcuTT[`5Z[`J &-v**cs0:-7o3G(Z!d  z Q}vx'E}aQ#*'viƷ|'in˵Y;eR{E1vikYT24o/;K |O c +Rr_T'UtKyγzaL= zs#k)|OĀ܇:axim&&^cŽoIѓ` +W82K/ױϬ˽^ipuO:JD:WtG<8YJ] + ՄyiZP-|xm4rQe`dZH ;4SX1̚`wpu>7 H2%Cd>zES?+&e{\Q>+) ^T9ZPFV+@l@ A B +r3L2$$x *,^-ڷ[]<**RInpdk ŻΫ :C>KXi<_TTՖqcs.JmZEŒ:^΄hsVIbm8tSX&^ a*Ɋn^m=A2s^mICca|k`K{"Y١:nf,ڱW x_n~ +!f睥# Aɧo(u +gįVg攷E)?n/ؠbdSu3QQIB`\C!d +P,2QC[Pһn`RXYU^',|Y5G4-},V{:T5zGFdx|4Zٲ u'ʦ"Ww[f^'0Xcx2rKJJDJmB|CÁ=55oc/hNL9'0jI. =$!_3s^>pX0]ScԹ`gi9Q?+,O|ekkC)6bf!),MjQZF_Y[-ۈfiv&mH!`5oIxudP#F +P&h_2nnmMsC?wOt[Pk+jnA ǐHځY*zל`L﵋TL01|w:44o(%j̨5YJ_|fyl00DO+/.5T"$8[g)T`MH?Ɠ\fިÕyL/\Zj@Ν(Wڢud>P"Yd'$$ʗVJ+W>pG[^Gڻ2|M 5kci{ZJbILFPCR7<]'wKÍQXb* +$f»~ ^̈́:)]}pA(+RXzE;b1t!9ݠBj` d> !L7gh%7nׅ _Qg1R2Ǽĸ:@n\KX)'WIC0hݤ!XL}4l5 Vh2,?bLb#(sÀytk]:ibP_"2S&F ߆*:/~5l6fݻ Ӡv(l1u;8qi7mL[@Wxlg Y<#nMDyYZOEX;/C<_IfGuROM++c7S +4ƊaZԃu Mߊ]>]o/m^&=Nh̕.g*>d_$ +]koj-]wz`g`@XRSZ^6uV^og~XQ 濮a%{s Tp4{HLydW)YU&R?FD/'gH7yOG +S0᪄g :po)-.XF:e*diG{.㯙nwn.tY<"`7dsSC!x$g:SX9Y%r_']4K . q cYv.㏢Mrm*ADbW냊M1Dqby9mT'buq7Or }yXK8`微.;~1K}wҭrB;ҏޒ &6 Rr*?j䆑lugICkM|vhZYHn8VzQ3N??֫zGP5|No(RGJ[5&Hs)qq}^&2n:zǰkFmP03;7Nsi+ZiӍ ^zs7Tm , zb@p22{96ʄ/= 4)c x +t&83B-(;^SedSy7yG^H@Es7<AQ|h[\jeZҎy1|i-M']|k!3h{&m5&[KiK%}UEk̀u hT[*FkkOZ e ev]G ؼ;GLW[d;oo3xY{OEk[@|l2섐^򒼗F6a 9uUQ[Em'*uWAw:^WfAw:Rc$DZ9-N7~c + +?;A34VfO 5*DvUe_Rqr_pMv]{қ[;f4( c5ڑGdxEjO-n +| g8 KٶŲ]{r3J(?ұqlu;S7qWA}ǰ=o +nxg|GCTpTaH͗O0U`llڤClt0jh~pڱY_,x',IUjn\[M zDBb<Ô]T7S0Co}2%sF͘MQ ś!7fSѕ&.!mFk(+O Oȏ@ W1fG 0JZ-#=qb>@@gIxFz|޴\E=Yg6atҺ*SY5T9vh  %2{}n}I90v zRf8kOʼjVo:*xH3_ 6WWx4\;5juK::i7rʶYAd~X:J1<;e +(;MsrlڪU[y5vw(k +-OlHWeG㐣݆L9sŠFp6i&xИp0C2}TxmCH#ѽZyڇm{+EAaWdVSy%ې8bש"SLL14$Bs&Bj&d@Y?O+82}-D^ݒD(PR{Ѭ.s!$4Pڣo\i(#u"D8 +:]C>6ڒ׶*m@1GQm lìOrusg# tk-ۤ^G) yۂ2b+PgDWB;T+4Qv{9輵;!f6~/ė|@r~EM$,<`2+oMҿ$ȵk뤆)<$\nnu|LX+z-]:r"Xꗺ.KW;–YFC :Aǔ+IU u+U>.+͋;SN@] LUXKx6 ͑8=*U4^qݗۥ>S韒+Ż eLsf v?m!'粈Yv0zْ2GwT1e{BHM, &fr(y)% P Ehl% +$EVDĶt o \~6-s//E 2<뤪t :mbpVn(Q7:ziZNl*3miИ` snX +U\Пbi0^Kc=!!{pwpyKH&Ș/UDg#M@1&yf_sIrŔ\ Bc7HexXltbu!hI +&) ֩ršbps;Cu GFq~~c6RbO'l"<͖z [T0}5y V|EWrф\2aAA0 /ɷW&aA +AK]מ q\kPU"Jѻ?W{j#'rG^$U)~VHDTup7eÊ⚊R"I^w0^+mOXiMi-T5ȝ'N]~{e r5Ճ-wA-VYF~UgBOJt8y0.{KO(vlJ uS0փyk^?6Wc+ +Cl]Eko%ݼ脦g}h0[[tVۃw,U^|}X?4:a<X s%هU)<@ZQ/[6 . 0A=fxIҗQl3\PBoJ]Դ\>[3?,ЛMOyIOi> '|2kxo6oy*Zo9XYifNP?1k𾠣 *_BupֲB[ 4Xφ}P73d"dٮ&<ăT>x4Y"GXF%Ngt2S 8.hpq܏#~2HleҢ(j =~n$ Y9PKC‰/q䢘&lrS1|8+ۺp5q Z(QӸAX!\$$$CsrL2$L%,*OQuOłBuUX뵊]xV~n,[|nC +-bY@X?(e92"կ)fm6@>_|Xȼ L N+VJ2v&ǂga:y*=>C,꽅zqwΣaVbP$Ԇ3H* +|tc^7CvfCUʆN\A X)MȊQrK{Fۏe"j%hCi24.$ҲɹDӮ?2]HMtaPZ+C9J*_r%QNH4r{W) |em}^e ٻ +.v_.e'T)V4(FoUgzf0=rƣ[(hGjKҢy}%]ʟ%(y쭬0L1sR1w^NJO7 نyoxõO`i0)¿6T@JJL#״C[!)9!w+@,&TQ0GU5a +5\1(-9]s41y3yʍ/ G䇫~IĴ41_35g%@.1N§ N̡Pi'74@rz8Z? i;f +cENOri@Du{A6.ѱ>1_:, Jf?/LCNN*E]٭!mq=p)ݍ +cFMH?b;t% 7r~L&3>ﰞ~6slD'9?6T­ϙ^ 5; +k[}gX0^hq$WKJm3qV/f̔&|}31sO[9"6ε6 9K+|dj8a&kɐ=9wUͩ?|0,lugzeU,}* e-^uGSoy77bC#Qşn[,( l^ 6!ʌ>":jbiq2$V1\$ǕwkGԣQ%[`ѐJ Ή `]+Y)u!*5(HIdaoElw17hYxЈrMyA39ScLYgBل*dlQ P/Džml)IR`i?ĞAY訌:et/ ysn琸M>dSG&HPe*p:vFӫ}9|%*CdڌTm ؍θSVkq~VQ< f +CB'LH? 6ǍZWzjxA|+cshi#a43 KZr?'H:m2AĽ eЭdcM^k^Cj#,@DL2I~tHGǫJ̀e W`_qZb +"pp߄CH I&d2L)xʪ*jXEtJJ]EZ_=@XY#>(UT#tgE UO4E]cDix`Ffw0b(U +Y]sAvjfhw@A,bx#iu+E_Xx˼U-EW'_@ce2b1( h^EN +`V[@-kbn_Pe:60lu-'\j|Dme;tHGD˪&աD!ߪ@M?B=rΕtSwo2Y!;DLž]򮆁˶Rf;˷-r0ۏ첸R}"?5#mk+3((.RxP{K$ ~?uX m(U$C[KIl9vL"F]C2q.OI61Qx 1iQZxle_)O&uZCj7$6} A~8zXmb|n^i>]fQBchJDj^ k]rou#Ih +8ЂTc1)üW+-*kxueI~PE:LR] &t-¬^*$M4-bB c鎳A9ZuKDۄT}pp;dzx0w + 7 ? rlJU/3BK3hf@jm1RזD*p֓2O(Vv +ndmMAO;1S`M-a6)N˛,_ +l[c.Hі%Ŗش+#]lcٶ$ s~&b~In^Y6-쪸ʟ/FRa` Ei|o$Գh:)=kZv6g|V'E;R^t\"ZW +YnN'⢒LiK[!6bjnf$=+ *.ӃKvIchP*%zډ,1-pGsD8DC7x&X8e!j5kL4Y &XqYLA)$]s_g^.[fx́{sHq  o݌ KFaa)1$PoגיDO̐Ńwq?0$װޮxYZN8$8 _ُ$`lcZ6ݐ?ȇY+0H5zቔkQ}Ö!~QQ2&P{BcH|7gz9^sylu^A ;RckU>)vQ 8:oVcsK68#7>^nNk_<w*>mڹ3"ΨŢl` D#ޣ7W-#hD:G"DxA4 >X( 6b-X>*'qkxOOX+{5| fP|~NEzEy?|S-2<3}=`[~#ltGPj_ _߷,cn$kaM=UlMQ"gɆ 5iЉ5M%7R%qvLSG[]]M vKsw>q| +7pL=#.[CjϨ^wUOlTvCe]j20uuFfձʪ:AƆ"E*S'_ +!Z:Qpt47rv윽Ys9{<Fr׃d+G1 F~ /bm1&&x, ^ LtZnDz4g?x7o߽06m3fB|=ksΛ 4|K5~Xp%&(*,.0<664^?|X@`PsB#b$ PX<1A͹O3l.O IrOS#?UBP' +BPT;} *~>22 +EOL_~[ g ,v,cy]zFl(}FVύPq㫪J6A$*H$Ρ`v0;f×9zL2ٞQC|QM5xzAR+Ԕ k*xGjsH%Ť^Vaݼr~Lȡ3h5$؋#2'$ +,FP].V!foDc&2`* _'ǹ{# ݰw%{2>aQ*X SV*5r1V/\2dL9x~dE ]0 +^z[AKmILŤSK``;m\ojc{.]w{]}A][UT5䄚T9"#֑$-QJ֙ +(R;7n^윆a:VVTST@e& +PkLlvw6ԷU8{`>5#8-Eʦhc5Ij ɱUx(EUu=XU=ux}{tjG +4a(=Gr(nËqZTivU肝 F7 :&|ؾĮȬ8CLNlG\nt{Bvx~T2?]ъ?:B': nAS+w."nG%PBRBz^MLpz&*T@ mHh؇Dc΢&ZT_Wj 5yI5LOї5m + һE/`v0;fˡp;ϙ־A}UlK8SQC#kדtYFUVErAF̾!b7E|{e wY쓌E8T@V4U4<7IIiA(R@: j:8vug*tE@EQ*r 럄B; !rIC@V@]_ӇQ5UW/)aY/-Ry%F2"  InK/i"tY{p8d|Q\Đxi'6ĩ/UUi5gԧyebLY(ke&\1q(h-Ev;wΛ6 !5kC(xH@m՝N&וy UFeaf5n\+#$,۾.wAڐ&T%_}ؗY6"s 9G&j ơR9aWLt~-m ANv$&! 2p0t{z$?5Z uTj]Ġ`9t& f,h؈!%gS$&T<6ncK /'z&bp`F*8b(@H3x!}': yo8IP&\P{C@Rt(ɓʌ*rH1𵐗&dx'McČ`$f>m|S~䃱ؕ$x0mq]Pe& i#eF6AWB~8QChiTɞ <|]z[u*nz!bg9Ԓr3lq Xr3" >4SPh=m@A8 {Ͼ+\Ǖ--F3a@4M6;ҩ'Z8JԐpjj6 DzQ0'չ=;Qv(X N#0-z#}2Ң>ƾ#Ahw8Vw5C/[r:mU5fYH7H)N6S PX'>}<5ӽe~y'NNdtOݗdjM Z̓x3YAdECM&-ڀjG ož>ْm\-u ZTS#%xG;Ѣ8]0^`#Hƺb~ںnA-9*ViTR8 +`'yM>aATm#GђZVZ˪ݐETD_l }mϒdo8zPc)VdjGT *:YϪ z*MSqKP}W7K۫Ov*om;Czzqt}JeVl|eryItV2j)kb腳h ?|lIlN^mzQr}\E+ݫl([Xp1ٔZ[m@_Xi䮠pvfy?q)?GZ3=@W =T2lvsdrڰP챢ށzE     q5YTp +yOCŻReb &l[Ghmb9M%>]8!p~{gkl’B42?ȩVnI6 +e%2G-8o QP6ncN/J/FQ&= }-9>#, +>nƙ,Π z,>3'ЏԍI6Mo$GWdosfܐT:jGyhKڻ)k[Leٓ#ceA>Vl oiEǪ2p˪lMe.{J~IT"Cvnc53}-"ÐhI'ِ,kHM"D[YjsUZCM:fD˂+)U +Naa␽Zfk@ 0,"IBLtrAlĐ  N9Vr:#Q1ha x!coDjԀE_dLqi&]8NLSNIS/)WKlƜ5==\[jTv]٨@(WKsm!fwO)iiLڤ?鑓#tɕOL=?ٯ9,o9̳t2UAP@C6-!d!@ BB6BĂQDkop94Mre9*ӍRMd0W:rB5*G1GRBd; ib"P'dh8^`B5yϕJ\ L΄*nW2b߭L)3t*E&' sdr* i@s?/=:Vh,~ߗ;{u15k}6EnA;xobhS$u,N%ɕ8j 'q/qO=`S)г ,Tרs=@o5-z$^˚Fk3(lUA?5(!4v(_uw1ff:w-}hXKvzqAOQ NϜ@:&z$B/ $Gc*8?z0;ߗ]/ZZV#sY]X&qzlKNCd P¶GFޜ=;èj!,z5ϥ+D`C^n"NJf90 2?}ɉ=yΝi*mJnL6M$_e A ($eEU Ȁӏ^9,>IoGs}YEHBWh֯յYTwL3rS1MOeS-)*d`[hh%؝jӣ͓\$|[XRK@-_JoЌ+כŋ8V"]?/&{d_$]B?,kʯ2xF5xun#s +[oyDs?{how1,8 fL?CVAyE% +K.?)-amU [5[ڜȺMtM0o?s}*Ϝ|-.̩ {JZVu (lIneC6%FQnj̍;\M{w 564q@p${{bKXQVx &\^fA{O򒻭m.B0b @ħ/d?4m/o +y0wA6kloz=vVtbd.RC{,DŽ4]@Г zӁ4#L#y,xK|}]XÿC>A𵲇i6pD1|܎,HψP(@c ii@Rq2[eaU^FR6Jz!` {v' fQm)0}^(6Rc$5 (r~P,y9wM:(^։gDHDϡyl"0A4t!5F5bl ”#@ +)ۚ+Ou`;\ mqׂZ4++'8bqu2ǬN Gt$ F7 G,)O '6bgSo/+WuQ.mlc`rj($oQM +0rIF?i#@I_S>8Z7gW-[ܫ J?&[1Ck\B"mф;[ + 7qD +$fØt;Sj͖%qzfg,;-^Q`-}"ҘGHv- 35Sl.J7oÉ@ 5pNgmwٱٙmu*ꊸ/#7H NH  @HB\$77!PxE.ov[O8bD>Π)Q6AY-aWjLGU-oF7k1Fj@3\=ۉ <'#Gޙ?uߎo qxeP IÉh1nzY=Wu Mզgԥ'(e]-gCGi.];^ɹ>~o[?) oOP^M!=aǠtRl69m^rU4\ O%%-,O]TB*s;?Mw+Pmv{ւC)#HܥO)ih\LC.!K'b1 HQs.w{ϟ/2Tp c6#s6"bI)i+˰exVz:;9 sYAnSKG?vOW{$a R*ը1o7l ˯WC^kh+qf7 :B|J+*u}B2#PCѦˋS%e*:g cCh܁li) +`Fm5{kï 5!>s^sUXt9UJ厓7YΆ-P7 $*gz0W]yl`\:XA>s97<5'&cE=ffӕDdyix M8ZH6."4Fm Iz9)d1 ź F+)mju@a7gDfFiUcԝRڊXxi>6|XG/@@+$kaQbќ0/nMҋ]%:c!רZTxY jq4Fּ]Xyw?=5a'v:u]㌵u=,"@n9 $$!+E@AHGBBpEA."(hA P뷙ӗ}Їw +oPEiԑ9qͩ[ q)Q<\Uh.gY}WS(35QEJYj)zS h/Pk<^~'?aS| A :8}F/R+|cha + 4Y^HjZU7 +[C1 ?w<}Aw{_Kyē]Pmp\+ؐ- TźˠRVYĐ[tX;-i(i7[9GPq4zg6@0=4kֈ\c-MANTij *A+7V |ZQ4fmld/ 5@ +ݽ#]w̋Usri07mN wˌ|!WQRQIc fWlerU:Gg&{ q? +n. |f0rg$u͚B869A$Vˊ:bVoi L,EUJ@!Og)Л@v4>4=A[+g $fy4"nv,9r1gJc:5J-AYL +:J匞Y*ϗȭy5Zg!W6@@6,GDOMBӆF`+٘^-+*uj/iuUcnC9K)7hsz 5]Nٰ;Td~>TJ4& *ow} u?zXcΑggS+~P2u.3MV&*1Z,_e%I#\iPpYRg/PphmsY}~'kGs4Tj`ޅX~>3en؈24"y 'ʸq~tZh/5kofصOa8s߸F_$@3q˰>'n9;7^^^=1.5?jD'_X,D,Qn?t/J\p &w!ב0؋gTStZ*j| D„=bCB3WYx{ot}5[,w$ 4LBA#oaQQ\xąʈ}IHNK ȇߠ Ke's}*_};v$p;$p\,1~ ?$ + + ! +9~|?}SRwp^@YH{VDrqQ"Ş'VpoTU$VdDױJtzt +*BM"{i1a=~oضR[ Q!q/eUV.yVH[(`IʪYL 1KWiE2c9rg0]DgQ])ܚd]ѯWiMU}:o@:vN?ćѱ@Fq?.[cT(y1oM70œh~8Jh.#lQDҭWF[3j;E#@O<~.;YKhk&qtd=rT}J+zPUX}Ψ9gTz<#8:<1)y/%O$yevUm:>Cn^!R$,@P18Qr .eFҺs&o|<#AD1@q47剜_NJ5yvAT8a@Â*2 +hc^3~13JEi颸r!:Aj$U^NMrs!&xt~8ۀ>4@sWѴm)9PV-kQŸiP8SYFR4c4Kl] IC4<Q zás!{2 ЅfNxfKH~JμΟuF^4܊prfJ@г:6BRBd +Am-[[ꍏm@Ch[kd+>~r`vS!CkBD+Y]d=a&JD;Dlw؛7c_so` + y툈z6tk4 6֗7Z *-Kآ&%ת#qfB׆cʡ2 GMTC?.X [ZH5:Wt6譥dUEFIҬŋ(ZǗkxZ,z0= >=P~?Y9=1y~4tV$aix%A!jLsLdEԶrV!tZQ<s`i ,{߸?xQ#/Ne`%zyx+UnGz)xVY'iNCV`k"|FyT&`y'_z>#n/F\Lz2Cs/)Tb%Ӌ\8yU B+|Ȫ/: {7Ӟ޸ho;A[,8N(V'O7* xUzjޝ;Wd(aCV%l`PPyp<}捑^gՕBkQG5wa…g7pkŭYlhd˿L^b/IİK(9w} ۿy7S[Zh=(L0~l.}-ZYn@."@P +gSDFd{W5d˸:n8 \o3K>^=ݻ_%%4$&8 j%| A +oմĶ^Ƿî:fԌ& 6-LzH| b?ӑu[}U +^^_b6QYU82Tݘi-434o'iͩZRn +ZoH͟sӹ?}W>ߪm7 +b#1en ?#s"*aQ{u5k ixtJK} +LjH +0}0:[gAM vtv3tљvZuծ]uC;rCDD @ !`BBHHBr;\BZPXnŋu ؇}f~/76ذQ @Bbh\Yuun^R! lQwLs6H-M{#RpRʒKʓ7k׌MrM'?gİkS!" q8@& xw3KsޖG!禼:􊑟 %X~H<齾vmWkaİu~AD +(Dh>F,AC~I)o|J"&xŭԤǮ03bgF}PM}3-z[6|ǓoK@C' 룐A PtD`#c{xʢHjl80bÀ!s'<jc/q/Ӄ@ | +8- QMxFeU>iHR|/1{.K<['-<+AIgPW7 K g + N H]iD/X"IYEMo( +g]Ytd_6]8|pR~ =)L}Uz{@ yf4HsRA:VPRX[CYqDu*ܹr. Y%3XlsZ~=*UN^i\U^,t{gP5y - AEr(ӣAeQq>IY`<<)`?5Y^2]b+0gnϪn]T_\Vc/=˚%>x[@A#I=,-B- g Vm<Ǿ_%߭PfZewJ-۸?{5# %SryUC ݠ>Ф'XʂRlFyCrsTI0%ŭҐǞ݌!Wi KFMvWZfC?]>jqF-VTyl?d^6b#Sl0bYKO̹4KftDuE5spx!DGSvWLv|j'mmcUZգ_E&Ѕmc~0 ֑ܙyWk:nv}þv sv$4y4A֏K磻2nuJUaDG222qwQ؃RpaWPgM/ uLnmXivu:3_0%yN䍡I/ɴQ:8nj %bP,|Tv@^@q;$8ΐBOGhOtP___r:!͆i`=li_(x1ra q#Ь$ $v@mdx8$ F{8 +;("a)^STS 7 +Ә>ɟAdL bc!3쨠bUom`kRS2i@1ȏlr>>^@=͚#K+ڴW+lc4`}_81CQ~u6hxF 0l? y;H !?)|$Y"3?iV徊H!fLSI̝Itx#{vMH!!M@0cr?H+e.%fNMcH͐/dLk V-I9wȫ_G 7^P6P%Ȩea-\`XL)jYFX| ך3"紒jro/&ꀣmjv;!NzA1 +1+d)VasYV.o*X0N?'Tg<'TZs{ZI=yw)=?S4О\ p|*N{?(ы +Q#eMeXqiJѳRSFz9XFRwOMnUzwOqKqOVgKx}E5qcu(:ʢ2 R^P)R @JHC"BE0 A\ gnև}99? ^!HyYz@-F*#1KcH9}b_Rh2/s/gf 97y7 HPa 0WRX3aA *v=A)%(j*5ybf?7 +@\MH@2 P7]APeB<*#q +r|h%x\N/bz|VViè- +5(n@ +^$k +$ub +wkd߁zf0]1>F)\d7KheRUr:[Dx%2Q5I%euaYI+tJ^%(G-il \~NSyU0.FyaM𔋵dCPq d&؜L,QdJ)BJ)dB֋$SC wNyߧ6Ʈ6/> +qJhMIlm"Y+q &WQ%+ŕm +Tbs@@ӞEoܭ-~b0䤶2'rą >UepKyBBc^3XVVIqUz1 >7O;AtzB;~ICțF-LZ,8GK(^4#J]cz9@YA}O_\;nzGPLh%%lƲ.I*\Y(ؼX%mK$ik ^-!Bs@i +?lu?ov9цwD%HS2{31| +n)c!5*!/Q)Hj&I A |sPsp3F>M/Gl|tĺκ>mw3ȭUNӑ98żbt,Bw2IjVs:L&9Z&9&^ MaݕɤvOeq'Ey+_hbh'GDzCȺB(kAzE*f5Ό0"4ӌ)ftPnjXo]+o?سB쨅手e36M$Po(u +v02`Ry=0^G/z*TN k㷩a#3 +sr%ۿ +Ve ˴?si1ߓAԇaqIw3SY*v5(Y51讆to40xQ9rl|Wӆus^Y~mKw|NQ^#Bqsғi1s̈9Zn0/GϷ`{|{cn[:6-2vk-oVZm-FC q4Fcqƴ(c j&Rߕ}L{#}9,Wϼ3 , S!VCfi}ؼþMGNK?z8O.{—`bc?[BD/b>bSPo93){J<#}Yw:W@F4 WAZY۾[hΪ8,v +]#xA7̀}@a zZ`C? O-"ܖ#>65ڷ;2"{+vM%\ -ypI^vq2_gQMg9=ǥ=Gg>(*(Ȏ;Hd%| ,심@EERVOU0l*wo{_;Ci zCg н|_H)Om;ݠ0ʃ]ʬ_Y4("65p`63q' ܭc~3!>G P~؎wr+ ..:rN@uᎅEc *lظ +zHMQ xzAԾDkW pN8t8@`s$@fka;PYln "b HQƺoc.᮳cً9 ܹ11?` v뀍5}wG!Bj/YD}鈿S ++5wqY.棇xcy/q14o(v7kHx AAn8x|A +e=1ı.${5pנq +&+0ȋ9 55l eԄJtJ{UK?Mj>"k>G>EOsE7ڙ+2k1`0)쉑KxP{ +]D#؄t +J2:xՙ&V"_8Cj71RuӲ +6YPsMҹ>jY,BOz;[Rd:MRhg75V]={__Зsbc kAENBv?k|?0j78H89PE +-aoPoꤜYB#k 5*a\pP&k, +E|>O<3KbXC㟡m+y~oߛ`b<&Uȥ\59颦lY€VɋTg*uũ 6cdJ3Ft@6cv`^GKq;}^] +h;c;H N]/eS  VUfRe $7eMZYWF0W-3|@oΗ l1a ؜um%]V;B=vB\pW-%\gKERSy*ʐU(E_0}&79 @͟ +S߮\tncuO:>hp{+!Z#9RM2Ǫ* KH)T*mN6M2յ4\DgB9_2?B p%MumwuL@#pBA^ ST::8iQimlY"YY9}^Pd9(R6 D)LI3 %8)|'r2$E9)yW ro?(}Sӑ) ֩ COǥ]%c7M5Y,iY!iFy-_RM-ϻR?{9,Rl|RRF$5tYqE7 )ɏ<ޑ)  Y4PSF5;/xWg-^f72.ԊU!AyW2*R/}8Bfzc%9gʥAgjĥ:NwJCrgECzu6Wzsmsw~a5eJmN qȈԪkRbWH:&*_V/+w_rDgfIkU[4Pe1vGO}MO@ٛK_omϕY' YwFHNM?x=G_sb:Uݔɬyɮ|ɭRAb/+զtU|J +WmR}mNW)6'|cDŽ6%ňw3\Heܩ%w_J{1 GV(d2*uTnVyxիE5.vmyN5ҏ.b< >oDrZc}[-U$rD$j {.TB2/^#.SjПS3gi{ݒ>'Oqb_B]\~gݑ&ft{w t\ ꨎltz9)z68D WoZ?u#ꇗT ,iCzҏNF<,iQL?ЛO`S,W}ueyUL+vS;3$~S' j#*eߩ]o^T,7Y+O;'=#e4@ӑ/rdbO,B&xȏYhuX#wvݗ +C3깢L!rL:{NFN&&%ST˴}P<4Mt +/fVwWkS%*4ҩǡ; Ra:6p`F~ 0cFnuF##G! +E$Ks@9]0D Te8v,`X` N70I>~ r>ę["fȱ2E>ރwf6uw r3W)˕ 0b +WS $x9[LkpXBA{c7$;C#@!MO/ X/AbAh)c52 +E0"Z+l xj=ir$5w« /Urc3\嬃hD1w!av%8?)b|Jؠs~S6$ o=OQ3MAdpm:f2ɷ@Hq$KˡS YeLT~Sz7I}t _(Âh#t! NuM5exuH،x1bCp = Ȣ{v)Ki5)Zޤw=@0A}N7PF,`Ȅݾr<`&OlX+m$9CiFg#Zd= ̠W5o*oQ+~(F{.0F0Lw$sD% lggEw:v/@2ڿ.bϰ=l.R-:{RUp#V$BB Y$9Y$0Baod(PW+^!,E^y>9/yw}qzP!qO( CT=gd W o#oŸ_F M"#Q/IѯȷP(7b5. 0w~B~`9PXT?9; @X\V?, !tǻ4̡Y%ԴjH#uz:~CCoX}:No\{5MU?ͯO+r3nwfB` 9HY}LpuD(09ZMF5M.t+y&A ?,'L2򤨈2% `uM%;Ěsy~QC| %'bzjb72zjRXMI\I-)'Kb mB\@ḨOH8Ww~rCsk 3s63Q64r6[!¶K&~˙F"D]?L 49.5%Y =7pH`1],Y1W|rTMOweC/0m|L"H +Qo\JhKٍU}_6HϵIӹ{n OO?|{e/ʏU{Pu''L٠KT2^fq OhgK ^\RQ?& +lLjwxѬw݂{"YMв֞\;Tw}˄ nʦD֤ctB5YN7)S92 C'NEEC,PGI1YR PJ[rY¹}'}K5Uv Y/Ηg1c|I'SCR(NYd*R!Z2_ɞ*!hTAc2px3H]}=@]_Y0^}gwt# cOU EttAVJNSrY&U+UJJE1HaU@5ikwxN|ҹk5zC'KԘ<^-j3$/K5u&-Qp5 J暒Qr4rn,Am@7dK[>Tluٰ}së otxՕ`ߦ*P'B2p5 (\R' G&w5\gZ׻^<|}WwVPr9꘩{.+a%R!(Pq9g83mRa. $rt >SWV:rk>WX}rKEGK 2؀9ZG@$Ub\TDc+شB-h.YK}6(E[%XӸ$.wBly; +OU+ڼGr꽳ݳҚ7y(n)(A=Ǯ52:ZVf$+̂J]#EOP)=@/q֯/qxpoӡrΟ}=K+3FNȺ :VMi ӒLC5vDS7<]~QmP.rF/Pm`C߽yݏ:6Žў%GVg  uDЏ fB)7^^Lu)6Z2>u䝆c Ъh](VED$ +*d/FI + Œb#ngT-.uGܷ0n +B39+r?%RC]9˻RzU.y;w;l`Wqy-g?cS_iy=*| BKZJO6>b)MSXT*4VUj^cu:ZvctWn`>ӳ~˴[9N;W/9'%j:f8#mϲLviTv:^֚ۖǔ.[Wd1uV#eߴj%?Pbv$k4mv!&2yҶ]7tG۝8 /t)]8IWN0׵^bvWrRsLyc?=*˷ /m $KQ TL eP`F80+c_ĴŦXJU$& U% J>=r25j"#C##KnD]=q=ɑgDGw>ѝW!p|!ݲ7=^Jp|Rq^>(9!Q( HaY1!;BG.;QȞX?2n )~c3:Q/H&à r"d(|!/1B?T`GMG b ֶj+}<Aw#` 'p3nI`ǃѴ(ȦG@=# :d Ry=[9}Ʀ߷ V|aStD}Hp GP''C>i>ԓ}<9S|P6%_z=P5uv1 ġP/r. ܙIH@Z^(%Q| DJ/&8X`a:$I!a xa;{K!Ȉra93aӡ@ +eqqu1Syn-\Hnlf裆XT?go"aHi9C +crY3aaH @FVҖECm<$ 1n&x k&i}V3 #~{Pi کaa5, >.A C+Ĺ!<20DC:oe@Xu QS|pS\(nD{;rPo,'!6@f A c8Lש( _6 hLj] +䛙āh'#NwY3a)X<,a&Fc42Q)mkD,Bg_ ܒZTO.P&6+%_e- / _'E}4pR4Bo`,L\jV[x~IvX%=!+9x-7+__)[T-=YsSn\V/*G5f. 9sPl8PY^X#*EP.r`i^|onI)k-筮EҗvElSecM셦Y֓~G>A^W֯;8"߇UcPwGs-}5bc)pڳS2$kw[4UՇ5wtO7T]Kzuᔦp?VM63rz\?Y Brs9z!p2;ik#|r[a[!g=,Ʈlׂw1XWef ƫVD)tL^Nn?Γ8rFJF7qxg3Pr|UO3& S5`їƽ}/0~_5t<᳷9h[C䙆xO$_TN r0󖻍\g'9YߎAZ-՘MOd%LM59U}v!5J@XĖ1fGyPdвp.O80v9f< smOvcb8fZp(%-$T,,5K34HDuQP"KٗdZN<9\vupdi}{>Q `>7ZNHM$RCÆGda+2ZB'pĂp2SHr] +j yhC_K^hyb5b=lО# pQ,[8XG*cE_ODNCVNš)i8GU;ۈ&_HfPHZ!I!q"EmB"~>"pg#!(Ohg3aNQ4NB8kC{-!v,t5J d @T~|p7c1?#HKAo*V"t@' @ P{}dY7` +b u: Z34b(@,i!֡%`D(0~N} G69?CL  [(B[= q.Ш=4Bqq%xg`]y=;{5x5,k 2)Blp'0\Wx@c2;U ._ QM;#tp[\6scc~pG{ÜʘT e0} 5alZ(~'gYb.cny8=לOO11v +{*D̿D[!އ-L쑾h hśH 1%:K谺8|H!rP6 ca=,(^%~wBx/[bE܋=!9a grܑN6C=ڵQTUnE/?%'bW/wsᓸےRȬCAIɃL;8bXɜ!|n>sZzs~Ē7 ѯ4[؝>sQSYr_?ߓߑǷKWҋayu!CNF +;ڢ0xǡؐ|Ѹ#i{KcmJqkjobMZ:Oo tgw%;y}w,p>zݭB/M6小\!8D߲^7ZՐUPq̸%5:=iszGRUgcefobEf +b,g":z_Jמ 獡#NvF:unrsԱLvSQpxWZy}&6K&w*簩2yCgu9Irr{A"rYLtފ#oserɁ`{&^ɛu6LfJSdSy:qMP\Tee`KBE~Cb2isjrqؤϷ&,%!T ; (]@{:!PRB( R'DD H*" qwPagȇ99ߒs9I$(BVK S%> ~"^=7y^as`&ETSYAʨcGq'y3좂s‚nÔ/.w-XOlDde1%PD _*s:bhqИvN~Vqt`~xv>ǵ6Ç_TSq4Һ"މDnW49z)p}8EGדrlD@`VFExߡ³JdT=bH2`#7>"ak{?~л>;0y&6)!3)l09l:`9e̒ (FPyyX햅#`\/X˜pQ<cr9Ut(PZ=/2*PmC|zu;+lrJ'&I̩ZgTn$VlDt_$ X' ڤEmۓJper7ujRzdYgg穾P3Qֵ]SNA&&t.C#I.^hz-;XO#v>c>N6nkRlrk}xg.+98=7Q; pa``4ݣARP.F}CycJO$ ]ㅾjQPpav:MaC/ao,lfʹ%?wHo, ןDY\$o4(^U5"kUfJglYsVXV^ R x_md-;]:fֳ{l`^`h>jd~rgc" t^hXx@@!`CӘJ*䣃t'w9O~[=>*~fnsK;jZ|[=8t#42B/kd@su:pPQD-JSь6t7t䌞[_Ce!S +"gf(`*`Tݍ=.ne4.OH"Q(D'P\ЈhCFG t}JaFK!k.:7ict5A=Ș0EƬ_lWXi?M12qJ$ވ:&$*eQyPEY+:긺 (# ~| G E 3N:8ͺ;8Oz@5!8&cǴ +|5;Gk :{nq#x9g 8fӸ/<.ou[@1?s!p@3 if o^9-j y;Rf5@nrv' tR/2}e_^S\?zqfLxÞ7$>hp ANAF\2r6hjіI,[t;RZq3~.Ӿg\^3E&$ߑN_%| +, @`iRkCٽV@8y5l 9H:ff +(wĬMқ\?'?z u:Lw~v{ S?xJ;oe;5CB"/oSlKlYk3)Nd;9ut3{ܟ1N|ʸI/WIs >@e@>AngkJXO]%i2Bӟ֯eǤ鎣2Մ!n 1!ktkk:K7J?(}\[0G}Eb=l AdHQ@[!Mڮ{W{zn4yX)(6~;aj<ⵠ*+6EI>9?nj3qf K10$H 0<_^ ꝉh4 ]\ܒ\w,_!5{omwrqqQ{/3=.iH}!徽jϾ&)id`Oˬc6'vMUE]sz=H٤[ ע/Kj{FܕXRgkܴ?ZWLdUE7pQ=’_DőEQoQ3C:~AW= 1%ޙhFIiV V\-[SOxgWVS{zTg*|$1ZpqXqU_-khbOc/scs^r⦅sx!!n꽫QZM}y6Tvnj +Ҁ' ;#=T>)2U>(I*ي.Q$]qWVS4)u߀`_vP@cMjM給`:IkOk[ +lZ +ϗΉ#j3I%iCibVvr/]$8)NIC5Cǝ/: ;/1n&K `ŏX4jFtM@- + aPBzVYaLYㅘk|kObX3ٱ~&6r6ȻOOG6ɠDW9i"ӽQEhƜ ,0b*e9,'aՖS3c3{DQ4H0)ځPqE! +<Q=0i` 4LOt=.a.ʰ"aDCE4TQDU8 cPf([ .Rn(ASxX9xG r09ACڗZ1Jj ֨IGբ8hJ*\'8(>M\'ot b`8dLT;YR6*q~uF.J=QrNި?(KGyR$%zQQţGC1 0Vg်Qf@e;b/CxbQި$D*,,  ]彂w9zЧ[0OE-z c LZ` +c16\0j +#ڭaMzo0|?@uDЧj*[>*/x}P~|ݣ|ݥBY0< }c% \*fS1wM\H tdrtqƽ7jCd n]7{G}^kNtiD/5D/4Dj=|f~Rc5uԙqIDQ⊈ȾCHrsH }; + +#xZʴiZԱuZ>sx9||񐊵n.5YMAJ"KA 5 *#pL6#-pͶz7ӦJWn]Rc&S٥";H+,%p jHVJbe)Qa^b(,D y)|Z)qn3כ X)a zmVoRG,K)kȫvٕɎ|3LV&V%XU?@Uw(1ſ!1Ő(ZeW0Wi x6}=A{a.'M6eKȞ&!>6!$.ݙ[+tOfUUFW#ȑWy{R"wypьÝs8>Zﵡ7"fi-hgMoKKiIuHl7Iz7QCi +n +\+k{'B>p6?7{qevCd]@?ߓv> eЛbw8Gv廝xw{S;|)W[E?r/~V迒g9jfjk`s@=aSN3w1_3"ܑН]QM^i@AH ,!!   aȢ ѶNjkkGfܵ"hE .qj3/s{{sfW/=4rl4:&eUԉU'br(PV_}P#>NW8,9u >K~i]ԅ܋/a坟ÝyDUD^Rj NOD{Z\oO#"V7ЊwXN)iQOͿjr˹jʺZ\25/$7'6}&o 7}״Gm:i=ic l:;wP^Ս Ϳ㌊|QMD[}fpNۊ<zǷ1tmk|cm_blԶݜǸv ?6OvwP;;ye*pALdRԩ3vΰOJuvuO*vt/v^^ٳK޳[s.=͐^cHzak=U>GhùwK[w@9(+JcԾ"_L+)qZ;@U=h̦E;ȇ#J$ëpKi +נZV7n7ˁp;8]~QBi8 c>H7'""zBJ*'T"}kC]dR!EBXd/48pܑ~p֑ ͎,xx5quoC('u"4c )d $L.9t?$\0Q ‚̷C|n Pݠ}f>g#Ѕf!8w + +W(|!g5q ̤+$a.9N )Br=H$$(H-@TPiwgpZwl!_t1 b v{ cbh01dU!$Ą Va8*Ĥ@= >re(>/}K _2AR]`O!tZ +WR`HR~E$bP +ev0CKq'@7' - r\>&@~ aأ+{X>߀8rɀ7(qVH pIj*$&9f̙!vh7z+bMDbGd*FU'9oTת+-Πӧ<S@?IH䓐0)IO0M_=_3[|5略3h5gx/4x57xk}10=c ֟.)~ HEnZ{4:ML5y$҇V'c0l{nj]^An}SwQDMЮ$M|[:A8n@,ҘHB>#/~|qĒ2U<}̷;u 3+ޣ&Op/Bh3Pxtp_t=ᙨ*рK_걺I& (NBQ(e(:\ Ź77ǽ#g={ U[Zm7SH!zʿE-!ƚ+ƛ9ji&"N}} {o7sY Rʳj)s\ΞMoBVkNŲZД!cR֐ȧ̻$VqSmDcYi@~<4VJ' s<0,bK%!dW"fŹbR~]ʀs> *SINf패';Q̨<Ѡs,AeԽ"xBBZuh)MְBXRȶ[ȯ)\.<9q]QMi$((H*"@V,f5@ !LK@(h5x92NGǶsȇ߹~z}c)̓*u96Ϝ e^*3WuZM?YP2r}mob ZfkVPa~RM|%Qz|Ǹ$~(ŵO%n +%ZnUSOPj8=G`ߡ_ҥhܟ)<fA%z)U#%ܫefeE䶉ò3. ҼMBZ P+ڰ¦9$P%+2-%&DqlZ`ߗ+ ks9l3k2"Z*?﯊"you@+a{6 }jKKKbA*huE!j iTo5&#YP>e~L`C&ZSXQr5\k޸qM>ʮSkMmeCJ)׻_V& *W"5QXN< @>Bsoh\!B-"y3$0T`½z5:<̶ɖøPFm[ÉZUGJ>EMʪ|oHY8T*Wy-$W6Ec-sFF*"odRJ,48X`f:` -ؼbt̡Bpק{+y~š@~,6<_ɮdUL2d tt[Z?tBɐ!䭐\oJީr1p {@0uָ]r]Ky뀨1dzX]ksTu +BV&*)LU*CqP|Ce¬Aȿ!mpLp~Wy z{ô1){˻O9w&)HWԖu㕧4K3!i03"Y3JJTϑ+ r|ȭ^:OuW) {hshF}p|f+iZ@՜#H1\%wc홗.:3.f$p㦥NNzj5y˟>?}?Oq$6nfDgpG p =I=@+B;D7xxK>ؼ04+6g|`rŁfڵCk3eO=IW_zFοC#fwv~Qir +os+ k cLV-&۞˲?f`;Dx; ejgA'зhv 7|fkg/] z ٿկ{x`),@ [ߙ@C 8`64f1ƳGm4c5ȵ4W+jv8N Z] _;{ z LpA8"4```"pP, RFC` +l¥zb'&jA'^R +4TxPQ HG</chm6F&Vjr +l&e +#n#D +eSNCCC@:*"=S,kP%;LQRBlt$js_%nsFΐـ޻9sG^xWSo-Tj}'润 MuyVMg/hF5DӠDdEa0$L!g*Si=j0DG3t9G.ߌzFZd-tm%mӅZ!?9rNGؠq;EQ=QGNZ (M4LfΙIJz{zX[3ح ټkqyVcW\YgCSǟ"8(s9~P~Tx>좸6xx!IM8JEo`iǒ7g`Yûl;x +ʩg[at5#}!UgєPp6i 6-)>$VG7yTE_UF?UcP=LxI ds0<Z@{-ΑR.¸j8]ECF.-D +ǣ_:N N&!Ƚ2~"RVws܏^ZqO%(ߓok"!dc@13E4wкXD]c[lظ ]lq|,úՙ3 +\+ֹM.}7מEIRN+g^3?*I1ބS8Ä́!9&1<&_b7r2Wi1_ì͍dIUTfgT6k^QIɷ<^3{{j϶:-畅w_u+7nJG騘=C<R}ZVry^).jpdI*/Wy`vs-q-[ 5gdBV.YMY2O(g6yK.omZ>a"^.#NzK\ g8@U+beV%y:Ewn_Bu.Ϩ<PD H)#LQA,"tІFpF RD *1XQp]f%'nf=G}s=WR*x-^nAIܐ84wQSQQ;aQP_B61xCTT0^,p̕_-]Qךnܔm^`UfWH+v)OmRIޒ)ܤ޹oEDBLH$ oA26.98]pfnt.*[;hQ]&8+e6lDzBY[Q+HouSEg|2R>H{-H#BK&E20\ߖpQ )qXt)*+4W֕V"ҭ &ۖg:J $\IN^vNWFv -h[i Q^R"K0T꺭bQ#U+,-}).$)" +&{d1pq5k7٨&+46r5 j:^q:(X̝),dEK9wkE5/snAph}OQQQF_,Õ2ڃJwfm4Յlț5{V5d7DbRd+>6)uSu墈&ކ.uCq~hН) +Sxgz7.^܃ZZi>5Pt:2e^iRuI*Knm7rKs=M2 JnHC{p OpCpC:=zW? +-4 ]@e*{磤ϖ)sg.VY97[pp֮(f):v!;ikw۪n{B.^R=lRMPzA]H-u̕IrbVύ>u4BcuGLBd.XPWvﰢqy7N}7{;s& 9:t}C@HĶQc$:2%@`u#BF6_s*ppqp5~'[-LjL.7h2h1=D[!b܍Y?.b/Qߪr#icؤ#7&s,17]Կ+_6dǁ\DU#c$&3+Y+&lU}'|2爦4SJM&-m):S]{ýqwx+}P2 +d.W)6ncmm,m +ib191 qBG|KV@E1aɂ:3jQ!9N,vP>'Sߨ־XԤN]O}&gI}D]\wa% R)i~=>BO͂82ٙ!.g.CX~خe6JlQ*\iTS@H.!y`b FdA@A 4 aJ"cD'( +(
Pϱ+߱}`:{uI ,c`#ց]{I|OdE?Xc{< +8b¯37*535.ClU4-B 8۰::paQpڱX'v1e| 2F9#a[ lA{̷Sɥ,s0\; +"_ h@ |9 fрW2:pb5 a|'&Gq b{̽D|^'Fa7BMhXt'=o) <_YؗڝW(5ܞdZnQcU!-[j!.z5{%-dp_jI:Pw1 d_hwWеL*D:臕fJ>Y)hץ(Sc +e&Ir2j}S_l_W- TC|)3I]':&ͺ(f^zLd/.XBVJ/)y+nd)˼hYh=w2٬ )vQ,yvi%)YaYYWCoadbτd`Π6AfҊ`u ؋M,hSbE nU/*H,X%%.ls>abAǐSN7=p w +%!9kųx)-vbE8{`u,= +*̃/ŖŔ fL7=[+"|WhW+BwK' ,:}mDss^R(shRX\)wPCTffU*'EL;mV1$bل-mWC_^!S~\[~ uI}q-v P߻`G)@N9@ΡKհSk +km N3<:fjm0ormڹ55K֤Uk|YxWWENѨQ?Jw0%wrf@Rɼe%ǘג3Ly)P@w_wOqץu*N:ڕyw[6~_U%1/;{xb ؅>K= c.Ul&׮VsǭX[-uMu^uY~%U4uyqx"*ʡvlC5ިxxŃJs`Vm\clTf3iwNl׶ݴMnc3w<>]لmqN +`TRiyFxs.q|r۵yyo띭}w8>9|nrolʖҵ-ˤe=UΧ䋜o)`"<#“QZ2\b$D+ mk ݾKvxr~Kqf(/]p6Q43` (; e /r*x> ].K< ^9e>gx:,fٌ M`tWDL+p`_+ǐ5|U"wxP w`EĄ+͸EQ"\!dAל8#P ܆Vk=!㼽ay4gTh֩ȑtG] ;z6& +,}sQD%IV%~pYJFii~Nu?V,'ZBsS` 9}yt{\T_b޼1zDw5Q]_Z|#x~sKn)$U9 48U*婄\C"⁒RX?"ZB =zOᨮFgyfG*˒V{3f{OBlMz 4eεFO >pZ`JUD/y:Ľr y̿_ # C{-4k-CF(^ԽfjppQ0f|7\^a3d{wUҕiM դ 0ь]}QNbWT.ŪUV^+1\"h:еg=Փp>j +-b oЫ*CH׵Gh(MAcj1:QLtwxBOg tZf݈kVߙ^b]jP!SXIsGN/l7O3y|-0?a LYB6b>@p-3(.7RFvsնD7ó2?YWyĪw6vXhŽ]ٖ eɳјJgg]ȳfPQ%L^`}a`aQ PD0÷Q )Fal7Ls:q&3sޜ0e \[%%I8ù s>pٴi +]ʞQK @ ?IoUWp㠻6DC{=7ff:47BsP u~ڪ`v? lo>mnVGA '&:n1ߒBӡC U(| YO"$=3!Q2 @ׄBz=HfX0IF)_u@wPlP ( PC2hM? tB"A +kSRsӚEs@a=2`8Ȩl3q}JCHb >$L$)^>8qZt^wK-uD'3Ÿ2q'vABpaRNH^ɛB~ CXHPCnnDOZu T 52^HF"$W셺=W3uЯGnj6{ΆF.f#W'~#{;֫e=֥?:CןdNvå_…VW.D.rah+i 8Jc=a} Xa2bak7lcwݿfwܳmЗH=_2p5YIr4'jqbjQ3o7>xDxG#G퍼y13K~{ԷofÆ_$TT.nTwR7\v43g7p$I42w7y Y<=Aߎ~m1[b~(h-hHh\`%li<?"ﻝAtWΰ)83Aq^aQYpZӀ4ۥWsN)LjK$4%Ygu 煵Dğ |1SPk_yd`ZT[0VFr2zeN +K<׭EhJ3y5YxS}k]|tDP%VHEfuIcQؘo1}c%殺9Us0clƐfӧveٷ͙.J[}FG]z%WPt!A|BT*˗$S^X`EаtP7)r>0Oc m@o6Sm9`ߨIvV8ת\+Urg̬-l/VʣBYNxBKdń3_ ܣگ逋"`~ǸCBGGAӢñG%8XrӜ+wcNg3de7 }|aQ$G}%@~HJQbB'Ry"es8Ba+z|tٰ֠iEU9H.%:!_YW˫mks{H=%Qi/dj )Բb-in({HWFG'5ԗ25e;8a\sI}iqp)2t|b +~VA `T;!V.J亻r'?$ +K߱!u="!{KsH_[p"$bP[*( b ݜB~xmuSv%2MYY^aS̃$0(8qKQ[Q&']%3ZZ:WtCY?֠ȺYwrpnvC}V}^8vw֕z&Vk}j15,(-aW¨/U V]uTz>+C4-(lA~*h7#};jdEqmim2Gi9%5\y볿_x,?:_/aa ճ`>GSʹ -]=m]]@^7^/dٿA0Xnb>/!W[cv 幷%ޮB:B:㦉fz~t.tV.=Q7![@$oGx(3͉OF"Ʋ9u5ctmim##?r>o<Y, Q}hPv ec@¤b=%F:ފ] gBgb=3) ΙmU?nqxkzq 7/ޜS'Xc@ +v>ʵ sH:D&u9_[sc>oχ`|mq2oTh3q6٬܍~Ivl?ᮝn9~Wc2 Ng9ឋ@e.,x p iq6.a]xj_Ǻ%,e%V/YUKʥ#LyFr6#Y,/<爯1E#T{'trcIICm׀759`w +ﮃ^ł_9}PV )x=χ_u1>FH}oM+@ lzx> չle D((`W% 1`A,H@Dņ(< C-O1D!ODQDĂg0;=;{9F 9PY0s C Yҿ#DHNb:D X +ACFr<(g3J,Z=X=OZ8 `] h%+"6!j&;@:5ͣ1n@hm +}k7jGK(]48Zw }0`W.e@~5Gn+jM :kRsG?:=@ON}DoG=b{}`]$7bu)bѽ5t?+f 5(F?C?b>`hUŗ`RwŮ`0o4H%$"H>)k xCxjth(m0k0QLɼLDcOWI%KrW߀|ExNyn@߅BV5ջ ]x)[,<:t6ᑬt7J+&BZ7pC]h2ehTsE9塡|(T7Tj +:U3PŸ@7QMVen)wr{q]yMWՌCkp^øZsƝ{=fKm`f9/c)QDy P+Kz?'\z?#qnU듸c>;sC V}ҮBܾUXfLXD%L3lw`φ1H6G[g\qǜqy,wy"y_sW8-q;-v\#,s:Jvv:;9:wlqfLm|N:h{u A!8bnqm* +[u_epKؐ**2,m7֛l1l5)0.7TJ6 W\:dk\^V2Yg`(vF#9. % }#cwJFscS[ŋ6-X f%YZ=_ڽXU9 ֥t'+mZ#PM88>(cEV~O8qT oDѺk6+Y"ʐ-ʑg{fzmS,maeye//L:}?>4sЬD}>͟Po ;`k@xry`A1Zѓ٣L2eit,ET-RBg}[~=h(1:ӑ (X2 d 3lj2|/N&I I?Wbиlqr1_5׸S3Xejf<.iSGCp" +80(ٯ[u^ȉ̘AȈҢ}QXqR9Ӥ'S E ]|j)ǻMk"-&1sT?pjPEq췍Ҽ3NZ,ҿqBj;(v<.@0wlpvL8!f)xy\ԨLȵ" uyGEuqwgfd`.誈i*e60 URUZb2XYK(nQ@M\)GO-hknQ999s{}b<31=uO\u]D1D[~:s[<ס='ˍykP0e P0I(HҜy2s&3.N#56CiuXShvNޠGGp>36o_kE QY|7jdYc?4bIQ4I\tl-4 6)1D")!ΐc/T+b۵ \z/NFŋ~>\3T`'ٔuy%&G,5E^rR!+ea򗤚a6IѶE +$}LR¤r'Vaܦ 7w 3wY`%Rf5Q|'&`_ԥ;I 2ۭ^8cGbt8Nşi kܭz a5_b[7 W`=.Z +׆]4T[]Mo:`+@. +L p? f' iA̓0 8 ׃S +{t{Ȁ>-fn)Eϖ:4@ro9tXr0y TO&`R3`Q19*hZ]nusp2Nm U{0C{2OAy +vP7A%PJ^uqW}@w&cN7sG80u +p>-*ka{l(H/xArA$upup}DwPA;6yDt3=S-iw8O.ձ]#Zr_`HD)PY^K:_KFn )kp9}5O= G; pKŦ@ ؋+p By:xyDM?} :[KWO21 F.~EG+#ɗK q_po-~#nT]:˪^nb +8K!N>C<O}'iǠd[[k;ϯEf\ wNrgũ!p/394L`""}*/@%Spk6\KÍ8†NQp: +jp2`9Nű yy9t>`:G}vm(/cH?5'Ip?P;2z4.c: 'i8ڍVW0.bfzWt[=h/ + n{h˸_E zyɓTb5 O7?OEOHhq`t Dg)`Cʘ!]Zv{*vkphsѦŭ!CΉׇ7OZ4gI{Y*w}? A/zPg&2S:Qh MP3}:5<@SnT6hZ4uuqUҠ%YVkNq+5WSHOQZ*HyYITꩤމ&8biޡ'H}1 +"'b{d86Gji`6D3-vv]m / %^^%^DR[- & +[v\^'_H {BWG7&3ҿ| )-F{lM16ͱhIbƤ2l}C<@,L\5G$jW3NpZzfyմyQG}*.*D=P̎NQ-xyO |JOi:D'mxZѬSQ7uOg x $>[TujZ*W+F^kSRΌUighUjP yj9n/L]ns!I!X2)!K CmJ,S,HNe'e%9ĕىeܬJiybLR^[(TĻ|~$A& \9 4{IF ǪXnZ㻨1b12h![\npI%\BZ_ +/7+)ەN}?&zAI(^s?dN~7_mSJ<ñ TMAeZ$Sa2s +[jfKS\q7K]*Ӵ'Ԥ1n},)F??2 J/W袙h!kS.s(N9]Q;yIq#IlĦ3Ein8U(1} +$pGn?cUk(b,% J,v-I.. Eu݊#ʘOʘA'GHotE,9g0@X3}9ݓT84ɬOOZqIP/y_,*ʷ8o{PzN-gߑn1>c ӧ#% iJ-,KRĦwIp^4;D!:gk{Re܋$$ӻ0 +Lg6)C8cl7FgaTV?x B\,Il|ଥҨղYeY&rM"<'"*WB[+XIYIoR٢M^s=\wD\C5`0D"83ƹBqfL7JHCvKCviH#iȆe!Ԧ.e.I +^ ̦{~F`8[֘B99c@"u(AxI$ %_2JF_Tf!شzS۴Ne*Kv +PrQ? +_H +\ la d5i!݉tOR r+ZJWޕeE9X 0e,sòb 3КB[m(xuQ!b#IY}XLa[8 l5N /xF6#n7LŖ-lڶ* joAe}u͏Dt##s*g16Jҿ< pnPBUNP6t>2 kgBCfQttR@Z| 01O'06 z? 'Q@86!=Õx-~ 0h兠V>xڸ\[ 9/G0+"<5`#Ha 8iAu#y㼖➼ ŜG;/"WX_B_-'{9ȍN2I{F(;޾^S@y\|N u'^5Mw6'݁t$jV; . ={\\ ry =f +0^-z~I8m|E&w͜>ɤDtح;DM"P2$ydIOK exJVғ;؀DW!-tUU񭸆2Gq?"G@ο\!/"o™89iͦ=zГQ3pkMrpqUFjFgъSm$3‘O"%Cpb.đh8!x ܒNuY"o$[ TY:Sf*/G|6Eр&E :=؝~@JDd j|<\5x]7\uK18 Ψ)ؐ<޷=||E>86pcQgvǡJ? +`>e TNXI(ћ`Pl67HCNI6ܒCHrCEIίx̲\fimc?p}a2lEa$&4lLY(6COBao/}\)A55J .{]8..]n r[ۊ(%*XԱmSӦi3δv!mӴt2M3Mil/2f9ߞ>f&mJ`OfO-'_Ʌɍˍ "ܱj}6p/{Vp\qz܊5)hF+" ӚjLjIMs"fÙ!v43gNsCܠ"\4wYSe}~@DPCܦ+;t/m"hUc*7'sMέdFNfXa젶 i{~0ק=hgnK.UEg_  yyBrpeCmnNSgcDǐނA}ۘ~#ۥ悺\noӝQ ~+BY_٤+Ш>BIN1@QD,60aL@ش æ4g"dGٌt*tUVG5U~B$Zʜ5!M^Z{&Mpݵ6W&dw*&]g] ] ++"\F5uWep2CiJi +zE{RpqbS#uEuSnCw}jwςb_c٘B5Y3xwZ. +וywy_sjJ`&FOy]7Gif-PO՟ +f"1j=d\?_T䴼n"[n~i~-J#0GLQ;;ZPŽ0wn)j2@eE~W9tYV2s܁wyu65WGyu7HJxZ)st~P@1лoA^nhRqp@P>CfdJ U!#:¤zq65qMMKr)=kJu.ӞF D5-ʞ[ +d!st#2ƶc8ia=R|+,a_؉pH0ç] M&)|II74eָLZqhcq=dLO ej=N'$$O`fbI"qH+FB3sH\3oFH28O1p#Mύ!Z-v87 dRLL=e\,'`f< )H\8شhlX|s/#~qxqo n=<9) Ch_$uh +ПfIH^6]p) D"\ށX"vŌu+XEJʕA|-p~I|gėPG@pS%gi9i%ҿL/וP1M}SQQB_CRJSNhHER !|dB29>eȲZfǚ550żmw\]繟њ@ҚCeSeSE؈xxu`E D994|Cݬ`@c\ 0^_o !(`$' NRp>ٜ69mV<Z[9ɭ u;yr)ɘ+ƫf0jRӢ P676 +}@R;Nl_lL:X;:8 u'F7yۀ܋ouQ`= PSy +*_6XAEl<sDw' L7;0x0ZSלV/R"ȭN'w97?=G3sǼBOٌ<݋*%_꺑aуBFqd$$o+%9V)6 *5 Gp-'.o Y]> C+"/NyYG(2ꬢ:lΧq&9[<`_Gz)s 1'#`uQ/Z)ʤN`uSJY1ks4r.f~/Ȣ!ӝ7:WGP3ٌV"uC.b,lN%3_gpqoZ躙Y<8I + ᧾dJQϟ0ԊhI>K\P\͜E140M\ts :k42JC斒e.F` J.$A"gѦV84%^:e^.R/NZ*4؉zzu uawc3vE= 2,wwȍ>6^X㴱;MI(M"pX2 ʏqPze6>WNbOr۱t?63/QmvU揱-xN,+? bIaJ.l?=*q|]?o쵘ݖѨ)nyfQ%*W`U56YQ1 ^GXmnzxj3%Gyg{GFhh:!m3;m}PcjQevlMv`7v9Xgka}9VoE{X^nA+'C %bY(zԿ=}bi}z5 56t38zc?*ð1ӱ#9JYXR<,u*BSPۓ C%(Cg( +<'bg$LCRimE/R. aǜ|+W㬰@=ծL?2ԡHWO,TcNiB:[H+~vHZENһ\b͡\l{Jza|7[ +Θ_!90IB|B\`/.> \/E(TL : <&JAigV29Rz)d>rIv!cv RC⎙!c1# !a ؐHĄ +ѡIBTh0=4W -mSL +'-kzaRYA#[]dK3f H0$h\FFhM04ᘮiBdx0%|09_#M273(Bj+7& +"0#2L*8y2T2E$\Ct2_ۮfFmo^R=|yߔ-}ԋRR-)>Ϝ"3*{$efEim4%wW^zQM ʶ&fPndXVL#1Z[W,2Z2cI>&6j!<@ۖh!Y>q4M`,e,x 9*#fT{RclO8MIE,%eF+amڭku!u +j[5Vm8պʭVU_Z-mߺC[[7䷦A-Vsy\۾HJ1eRl4^kЯBnfs nԢ:D~aj^)K`eổf+]M"ˁ샓4(-wZ^;ir) 㞓nwF[Zi&sMk.:⽏B8jijpkxju-HN~spRb]05g9#э܆AV +xE{M\0pvƎ4Gh 1.::6zIù:bQG, r/ֱ>[#>AVG%h8ٜh[mӝihml҉GccPϡ_ONIt=.9_9%tzuR glf13] &;Jw>%}iBPWf2PWIU̫8rf`Db405nt;xZj~yl ҧp>HKo[ȝkrf>7vߐ@a5쇃L  B,$B&'fѿHi5\Buz}M=żtC:~5V)@C(M44sћ 4棱XׯuSDg-:XsE]>c}X+]`F>/jh   M@'_\h(Ac{)ezO=lK59cnE鄩zj>^TPnBHȅ@B.@!B- !"BAQDTRuκεgzvvnݥ]9o|=y2|k1;nmmW׆p%f.Ōb^pe^wqbpGX}qQ,MB!R}[;q+67Dĕ8.n0np̆vr|'p"~b!MX‘8p1Slӛ+,ejwѽW6\ڔsxiXJ$+܂d'wc.#2-޺[b_77 I}O0vG1QݟP{WH{1jm }=]8c,Pxub'k&j~GIF(}Ls1.è( Qv 0 .E!qbz]BgNtW2)ZXKM於C~ʚ%X$|@5敏)pS=e勔Ǡd#$Jr#K*C@ZԂvenx:) -f$sSk48?&"fE9OO5_{Hcq2Kc^2F9)_<Ay)(ѡ]QVE9*(Mp+Фtl ;|Us^lcQQfU=|ƌsdL3NY)GQF@:,xphRRW€ + WzPW [jƙEsjN1Ǩ}|H@1jO'Pݛz49D&N7@9z_ЦG t|4j JQU*;,:7:?L>fԏ /1*Go6Gg!=GrO4\Q|̒մoѽ =?eiѬ_> Tx +`5\@mj#5uiBuc:NVefZq1^Tr*L#NKT֬`o+&&uh<͔zSy(CC xIe_3LVe(%dtSV@uʹ[hUIѶ +X6# D(ЯvB / ?02xmY/sd?q5iݧg&#?E^`!! rB*d lnFf2SH/!-|H }z+NRi2Bz'6@m W7Dd;灼i06@0{]1K%5edX+aXo/m` ƣP;612@:Xvp {KO"ޣbrϯ.˥*4q~d%dԳճ|$$;G؍=g~Iރs{Ecpnk*>'͓|]%5!qw4V BB%}lN:PBp$aIvg9s~DD$<Ɂ' =Q%_BfjDd{=YpN')|FLN3,19%]`aB.(}INPWʤ8xd8Du:1>J;돟Ч[o pp p&t;1({@}>np/p_b?'v5Q5M+[4[Rjcr}Ǯ{GﱷEsS{^ =9כ `.AFhC+qrCH_i!eWk2[EB ;ɳtUvZ+~~vuGMD]쟀F3A#bÎZ̙m e|??[#(FXI 5hHKS?(4HИ9hb4qR<_Zق5b.@dP+^?jFؤsbguC |h4)ڏ$/{;vk.rrkmOqR-Yۤk#ވ ?;@_e.hza}D Bc>رlÎر;ꔏ<-zUv5ZVJ*T)W x+>hv@Iy _bh4ICgV)B^fUllF-n~TTj{OĎ\봷hh{NC-U'5vk}?UV0īܐe-5LbCfaJh*w\*v:"*p~9.ϔbUnܜoGEچ{hsVDh_wTb-pMD(9IQ&1S9DqpŚjdt/ a44ztc-Mh`yн\g̣:0+*"EPEaeXT7( +.ǚb&Zq_c5֥1xXҨZMD? \{0t^>|߂3s1TG9y%41W1~PŌV1V$ٍ6es[2͔-WJ3-WAMJ`?fr1 6 k`T78bEqgO9+h`U9Kq&(%a,pFIJHc0'+ ?:cx#%S3=|K!1'tTN쉽/[P%5)J)Iq$[d-`.s\ŧ<+SJM2ZbSI Qg[)#Si)ZdQ5DJH5ʜ4LiK+Rm9-QtzƦoԘТKj0;1Ue +v~ۘ7m]Č~2g V|F2-cY1YVEg56@cehKoPxve +G +r+^eti)̇ ߶LUvyWMP*սj4ʳrUS99~nբf@ pWKXN/`^ @8)a3/ffl^˹-~**uv4{Wnuٕ-thFt2K` Py;Nn{7M.v77\ĵ7TN(WRjgpG˽_&h'?mM^!A918P~!0qGBAlp.|7ݾ\Gx`K:9:A$'1 +G f:GMhI ކ* ]{.CvyH8ZZg8 U|J}'|/Fk~Eo#v{n;tk`3?M—Nñ=]|m--M< W8/t?úB9sIm|y=C魇 +ЏF{ok:KkOB<u:=K[Dp\џDlAOЕp@F=+1ɤI *!q|@#q8մNjB)odJOXWGta(V2:h䳣:FGqK]k!*WmWxvjgvBm1<{/H.ΐ}"1++YO䱜LYvNATúuLM&آMG2ӤO<JpW0`6``6` +$&!IsM4I&kf]zd=Uuӎv6դQҺN:mkUv޷dz{>I}R/xW%^սŋ7Zʥc:\G&dQqXtS gb"㙏5;e2|+ +O =.V%?{ewV,Y ,de#l33a*pN79nek4y g((FsP;."7)R.JŎ].%Yˏg m K(dXѢV 2X4Lq턶GIPݦ2=Ke6ҿ7Q׾H_Ny5K/Ib$SCrM6MNJ)&X:@w8]eos[<7C_kҝ6GYyҾLh_Fͱ 3k6Tmqeioi⧣"D{(Uh:D,xlO}fۯ_\DVyFWf/k\2,'XL5v IM[aS4,d +48/QxKEDd'{VwQi> fѩ6n5zqmIޚNuk>VֶJTzx#f(-Q[仗G~C(7_eJ"(YRZ X;TvPљN3eՔ1[(80EQ`#.x O~S +U..HgI*1'k*j;ʃ(`KO>=&z(쭥z MIv Y =DFۤ~&~OF'dDwK렴ĔDPKINA? L!w("d U9@pA҆GI#ydGΈ$ ?KŻ$ }*wJkYEHM%ZcUVQ[cȘ06HD:)y$OyZ'$bcxMćOb_O7xG?#~<Ši1"ѡ5UIJQ٘U!}z I$m8Ms`/68e|/Hu^dD~@cL<0""2 +* 5"(Ȧ(( (8* ++˩₩1n&DQc%i[5ǦMjԨI44>99=Ǚg}T:++Hϖs''- ŏ;q?>Əq)S&ժt"_u~uyzYWz+TXGO~>/~طb-v7R(=zB>C,N)V|^)P+[]G9DFx!Ngu%yab Qh@#`52yi>ZUƏq@Vf*%cDuX;;M,$ǩW5Ġ1 +㱟LVUG$oV*V[rcգ_Ks4g [{/^g A' +hEc)hdc)E +ZV,""[.v._iswr# kG>>wpelwUSVw JhYG%Vu.ZꚢZL-q"|Y܊TVjZ֤y-*s?RwTcxJ1lD%G(1,V aAي /иrF,؈lCuR#~=;iAo m +1 +ǽl09C"J (EӸъQ)5UkTtFF[4b0dǼa1|`!vS\7ya&po +K#.M ̣>0dQvMvD}}GEepcĠ`Ԉ\Ƹ5qiFkUظ/MjzbNs5MSTk7IOsf`f{{K9YeIPfRIIHJWzrҒR%SJMJM]j%7)MG`A,W}́z@y>9JTqd2јTI)& +`ҧ)1ݮEXgޭX`>x7e8نV7m\30*ǔ.SR3(;[9%ʩVdLE(}t jK4l)w)We 7v2l {Emg6k|m~sn0(z8E BװH~Rr_&,K8p.+*.]tqíAaa= Gw1]_5 ͩPFs([\!k\>ZiJɩm*si-䱎jb`;6{[ Vf6SDEVFr{ 6xh$2.c}cc}ǹ}7TGKH1Ia1y5빑oz v^x2 + 3#jrK y36 Y+0;g6~K8N[ u?E\vih2@o!ނ18I59͌# </W/RK ե e_&*F;Djǒ7pjY`\ U +\eN>aFї2gl MVżuؠu <=w'-]U'mu}r uvxa}k}Ӹ_C<ω <74}tWE/JD3|t*Ш-6KANw}eE|y\Y"qyW(29?9<{=;BDzQDJ^Gt<ΐ))y|X5<\i0w|G'X4HG# |4J=ͫ O[;i$Nb''sqbױsqiRM6Z:umU]K+T(L\Mh B6&B Ć m0ډ3??~:w}~{cc/V0]b -|Q_75O op}$1s4WG + :kѡ\i5ϫ~j%?L FX0i*\ъvif/hGɋ*ɒ5Q&>d +eEi׸?-Ye,-5jԪJ-ЬyC =ij׌!ƔiM5a<NjĮ1]ר鞒ה0F,Yڬ^FzЧ}c~,lZsLf1;5mnДEami21˘F-Jn\U c>nzRqU Zju~?>./8l>Xz{f,3qږ)Q)&iU֦-,xwnm~LъksxUa +WާyEit-<3M2s36{f 5dw*nנݧG=9bVr\Ym(TO5wU:koÇgZI"r=I8ce^FːH_mUPY^g8[R&Au׎*X;EuTo͉[=?kh=Rioޡyd,}TckDָTߖۿG.Ljj7T2|[/iW?ճ@su~NB/ ]m|5j RC%w{jc@霑sE՝GT*^eٻހ_p7ά濏YjN~#?yJ +ZUVnTTeOLCS-isCO,| $[[&[=>Vy54ИVA:R#Շ}…rn1*bQe\HnUCe٢CFS]C;'Ḵ{Mb?9WY73hzϣ3N Aۄ%n໣RU_*KT>`RـUA6 j`#e )>s2/]_SIǴ0:tf|0^ B-'F)ՃRuPAED6$dLeHKɘJ 'w([*H^T^r*7C%~(cFgJ D H~hObl3ɘ*QIʤ&*Lժ ըT@aتuL.EL%*Pl܎3% Ce{ˇvLJmϳ?ݿ}" JH%:bv̠RѰ$H@phĈ`ּ>5&ym xyX{g(b5 s/w)1WΣ0JWAJc6ԔG1 #uơK?C"<˚eße.o-q3<{>Mzmx_ShB?ʹ |5[By=g®r'oϳ.0gK2{9 2{2r{ 8|oaׄnZr1xvfK04&{CYi>>椏 ~q>J%?A۹B>zƸ%9j]cF2ur9ACa?/~곟B;i8'U9@mcAg|FW(ćW$ ^~Ea{3ظ!'}q=/XRl $Ip.G&& ҝjKt>oKOlH1ӝS{7$ۘ~S M̫2ґZv>Ϫ@VOS;tF=ğI |ݞpOѩye \0]׹ i"'kL>RXf)'Z:%t,ev+-H|';!.'v5LqTa'&3iB/mt9.hXIdn9L?Ev( ,r5^qOCr1/$v9u&q'-[|c!.yds.3: +On1.̓ي +U2E|$E/"|,||\q7˺LOgTT2CeO8[S6[.R^/i8:4D# <4(GJ31yJ}P\M曓Tp$:`v [6 jV^?!=8-:qHCh(fSwԫMԡAS4>. Y2a ݩЃj +=!vA@{ql5[=0fO53\6;ܠICtgUaɚR{Xi Tkh79|uq 5D,P}JEnGBTaT,5VŶDٜ*e/Hy&)7U9]N%}Ik2*#\gsó֣T= W|$^h)Ub{ +Fʳ'+מle'I.;FY)LTc|Pr:#x>3zhL9eHc_#yVR!: qq)ˑLS,yJO-QZZRL#}R\ z@IGeǕ6|W<h5 ћȅL|}^d+ +W\QhŔX]tȑ_$4(c,J*t=TO\K%7MEF4 gR]AQg]wEЪ(* +-, +BmăD3iFUi;1&ͤNkNc̴L56i֣c,d?Y罾}FL+`WJQdv|dȕQ Jv\*C ~;+ιOcqX^8V±`>( *id_+;IFYIJdT'[y*u)ڋ'/ыp| <<_h&q;(@1τ;~$J ~dʼnJ**@0 :3"$ * !yURxP JlL_qÿ~Llu1JXbPt|R.Fz#ìCH Njų#aKgpK-/p +PH9ĜE̓}O?/Q_µEgKO F+k+:w%KF.(\/Qu`;ϰ-DMT\~vPBsy&1O _?f4`9VAZM.?Ppxs{Ez3r [d!m\@̳p}jΫ)$C7XlaX?X6N`LM6s6U|RMySpw+TQ"͡|ի^3uK a·A? XWY +q/O=r, w}qKCM~'q~g<>,O ڙzb/ku?#|agD:a/Caq0&Xku7F4(8!8G䠿&M sA ";`4"hu&x`x?NsfO8)w /:r΄;M6HhD9pɈH#88rpu\,b%% +~O +y.!MwAQj@|ν:+OQ8|H❧I~E?"sphBp;C->Un3o>$}|QX5=:7j ~{=Hj=k? +Ux3z]W]Rt+pk>\P\fFi3[GP'^uz|:z:~CE0-{/J'i : A ƸE+Zd$,%ض㷋\DKè!A6]Tyxscu9/pޏ#N[f|a +Gb]m;V]a;l/nvS<7v#dr EA+|2;17bۊtf.v#ʎ^DZ=B]F yBz}d%,ã%2vb\lQ*'a{:sυ.#U{~=7QBy5df'ީ~.=$8#`; ۓ=beد~ ?:CZEKo +rzSL9q,Ǭ`#vpFHo~:b&'2B". +8p@wtұkuԣj .3HxU32_ Vq G-*3VÑG&ȃceTY 1GT5Ii +De=G(\jycm+U5qr ?'L84^zJKXk'/SIF-6X3k,!K.l-HWMbHQuOzU&.UUfRqJL/tBEp |'6\p-^~w[62UcJӔjTM3Te|S**7WUV㖫hjͳUk}Eso*!=pm`cmzk.|q⛃SbUeMRŢ +MI*NS5[ֹ*ZS;IyW)7urR٩O+fL9p{HC +U |w*_ԖTRST:A575Kslʳ*VDEʞT5#}2.5-cD55,! ¿4`$|e}oJx  b I5AI*;œVYKfnVbUQyUۺuն]ﶹ]n9 d'y^z|*|̍W%Yety-Y*R OGrjU(Ek +&-V_vl4~PVg~”߬8Ki̥*PfYI(/TzT) jhQjE'Uo@ɾA%;Ċs2T\*>W?a;Rԃ|ǤJ pϊ|THپx&')ʨLiԪP*JnRbuDŚXFwlU|^U կ+|DUݬmo W +TP *1Q +<|.HF3ńٴF4P(NiO;JN3X3.kᡖ&lAĵ)0(41{$f[3K7E,^mfv)##ψvl/ dx:4z0^oQ&R1&J ȵ Ny=/亭Mԃ>!g}6blS|s>imd7yp.]6E,`c 5YQ>9fq/r9br9c/[yfg0% .mm,o:HCYk7f-Pl,`'&'ߡOQ!zt~"'(~sbϫ5*]Msv,!{_3hl<&Bh-TlDŽ0 ň2=r?F(8 +a:tPuVr4%-|4.F&1BJg蓳q\E?OAr3!pFpvR#<+;<au:Qx\(.A]6}fJ#+{^8i=syS~}=*:+G /P]Wiԟ%.~J~B.i\:ops0^/c_>Q\f +4G5t̻jL?~ʹy -JCxЙOEh47jvP}hũ߄3,ji0)(' +L5{ #u̼M`pEWhT՟W<~`;۹v0Ŵi%mx} %rǘ as9jj=7{L`e R5:%.Z;}Q`O#6Zm/u؞{݌VlEݥ Te е/iVқbX1\G.t욱k.l{]Z쇰V+#]Lb +Y:1~6ktv 5bׄE g?RX a2)snM?ӳٮ:e05&9(Fd}{\,XH.&=Fڍc~t!셱ۦv,n/f:z43UaKH}$A+oX&fp:9/:jQ6LC8JdRruaĉc;ǗN8NvlDZs:M$m״ K֭bBJAVSV1Dm0؀A h*h6&.ZQPG'e=:3Hì1V*f젗 c%Xz>A4lsGX 㰔gKH ;;Ѩ$:u42to>.& zg=;6%ʯc³x/U|8fwcniL".|5ը\nsL]:Yuv0-WxZ(m٣fA,ǔVr vM{RaG^{jSWKVZliDҸZJJ[;lWʺPɲ1%(n۬mjS" +ۧ:\G8N +6 +CC7]'caVDY]-vJ~%uJأjw)UԱ@ 1E(llVG!~*h<G +W^k[KBzNUy9-粼u7 ;\MZL3v@gi%r1O5m + ջ+rW]'OWT]HU+ީJ.Uq}\Kryr{oj'荓@.pm4$x#FE[תסץjWU DJ[զ~UT㟐ۿA |EFpJ偋rPOtk#Z!kR]'D~vy*婩&.W0#gGڅ2j<4)Gh/òRYcm݆]h44O#"YePP\u9rWɨUy}4t'[d"kdlUidJ%#DN *\d ԿEسA,$!=P ˀ91B4B6Lֺ"og4t@ mM@mݍ>T𚱮ib8d6cLll&qc|-0'3/<~w4\|tzFaɪ{Yנ6t-#Hb3ı8VjXCc1dOT +3oce}~z.hE75L\=5-Ch,I5$so%{sIFMı817v0&;XTVfH3׆A!s++z ))"ö[/:@ndwt/ ıv?~ޗ}S) +kyR{꣯s"!Rt{^sk^nh +Ƃz8K!Lt?I!q8feep#TxplCN.a0UXR|e>oH])a0K$SgX'0ٟq%=y2ղ1@ۏk#VR+{ @^y3xޔT'Y{.o?$ %KE&<{ŋsgW ml}y`}ò{ސ͚:Lm`VKs%O,~ccl:W {ś4썓dŧpO/yC/s /d"oGG,~~ͤyIKLWW^/}_%Կ,jg'ހ Ufyw?6sZ) +:2qӺ{Esxq~&̳gcۼ8m~v|;׉8iM鑶뵵)F=Cݠ$@cL ILHCC􏩈C$PP}~{<$% ݜ73 0(_fѯ=MgP^ O߰y ކ!$=~7V!Rd cse e:#h$>+xyK+Dgt*sB?Lm* у_u]S25t,v#Wȑq?>2S{R#aCdC/6k*< 3ϋJ\;-[Cw6Н@wY4:0 Gt7)T 2d V9-hm[=c0g!X=GG xl'[p3=ѲЄqQϰǦ![[-&v؉c'vة`;fL$GS\VY<:ށ(Na |ayjiȓ*ʝʕ3ݔ=$[愬epf(Hicc{SP2(:x$!(*n?/UK/w6$gGL*)r F%O9s* rg}-ckl@%!4 +AhߌM-]N9K-uma*$MG+],ljj@iCePPo)CН$PnNS!6J@e4U6]?MS'hu>[w4qu:@zJʱ{-hAz<2Lrr®Y~ΚE~A!ah66@A<0ǀfq&m&А ឦ ]` ta/)q ĮQaE{HYaNaV6 3]Qg6{9d7l[ Pb F +*e(P*SS +J/Pʥj-2 ʴ:ڱj 3Hm-ɞt;oel?V~YpYKbr5 c̉ջc,NY{&Μ&38]p~ᣴX,k:gHL6}?ѯ' v ?mI[-~x;gr!q68wsΕΒmQQ]·˨#rs[ 7c?}&{vdVĻH"8sIKi&xA;.Gd##h^e~WN0?HH3(qe3~VpNEj'[ٜ;nG<$H9X< WU~H<^W^ef\. euqDINۿ^p᳹ϏU6K<`,D$+5>>ɿJKb&>f- | +Ol.>IQAaM2z 2zQ{u΢k~8 p ޿z]uq-l$.%~u9Gem~~|?D~bz":'~BiUh +^VXe]SNڟ&hq48Zj%v؝lj~>^n.NC)u}v!~D_v<mv\pǝ;vd`IЈ"v;;eZu&v;#bl/"Vc(p< 4z"%kЙcp_/;muiG:ў؊ @ENA{;ӱ;arXeQÛ rW+b f8S a@䩾";=}ll>B~ *YoaT1v|*8=ط{Lcz\cQlz+۱ݍ>l`o6 ;s:>GNU QuCt~1lEоkپ Tc ~o~;@VdjYdg:YG-e:5c_ ;~σaWuMC,lr2ژT2c^y;u£)TE G7Y.wmkUh9WJ4fy$;B5ur%X| EΊ}ṗs&o/E̻,HK}ܥx#+iժDb񠂉jO˓˝lSMG;lqf܆i I|HbxSGdQh- ϻ|Iy"QX+3SD~ +& y24Xr5 9gϢ)K{caq+X³Yφ$/"\Cedj(fsI>'ݲ=&=#U0?;ӼMvū_nF5#\O&~mXflؒ! ||e6;A+h9/)>O&d\25 +r73D V:HJW xmǶAlcoC%K"K+>|pN+=`hiy׀)ޅ~F5}faX5 ZZ" +nUƱ3h:Z+neJ;=HYB6BIH@P !Ѻ/NT;նK2x:ɇ0p=!?}f^LRpφ`@Vr@G Aw"0<A!\ŜԪX<71 1 '#hGw_C0" 5m ṫ` ",B",BPGbP !BpS/ t3Ϟߧ"$/0` %:BrXa`F6;XApٕVb\r>i:_PK -:G/Ґ9c+.q|h"|X ~5.5uбFl 0a|x=u04.zE4)x C$Hl- yױ;'jn i\ W8tl-бk؎nA pNlEMlaY6{ר` +Y;y80_w97=Ecg@Ҁ= бQR$Ή {P1j` B΃Vݕ Yk`Õ(,7U +U+'F|` + ^EMB@n/+iQ'B/ paT/D;C!XB"0cr>Q88/l0݊M?xy~n07|cǎ0q)SMs^(d^^2l/WYn_zWl۾ܵ{"ވ־o|#G?>3L6ğ=w>1)BY"D-U5ڂ¢CiTSźƦffpvv]|nܼu}ŗ_o~OD%}y1<\'_ gK"0X8d$ D0QPp)#`@L6-F8n#mO@zH(=&c̾dݽz~x FEyy = % G X'$`(,K?W-=C o"[ ;=Qo;p0ȱ4Ï?!Idr -bXwAWM1 0 +z޻}_>xo=z;xɓOkMuDT__ba~CٖsJ:CR Z G#e&\WfHKi h0a@À 4 w|kfdKeUh_ݯAųs94HASe *g)AxӀ n_ToO*HSoTb.W]ޠZA Р%4(ײ3n膆>nE$YL!`*_mԝ/QsР 4y"ySIfuaƹgc,i0,5pCu~S9Ѡriȇ۝+]xWY"Z:ӸdM3^Dv 97V0N6CC4N۝#>1tdBG*@C'ie$5hͥotРUrS!\ʖrz$N:Ҡ#{脆ƒn#Hi КʷkJ +A˱)sNy6K"cwgI=q:E+6 Zg +Uo-/4CTРa;rV(ՕБu9'_4qbf՚ *ʶ̅ڸ|5ǢT۳,8Ȅ#Eƾt^鎗{<6XjwУ-VZzQQYkF}QLVנϋIh4X$&}49߻w?cW{YE˫}?Q +˱lpWDL|rV\`ƉмVmӰi4l6 m{Pdžg0|ǐ0aV]ց灡F!ʺ[Kn۹l{`?)`oh@lǧ"sf\޼-RtɌ)Nm-në= +5e'#1=0htHh#EAg"F Vh•Ibm0;;6 7`2>A :SvIQĢU]1W B% OXoL[n` `Q/c×hޫF'Jcs_+!DtU3(˗vjYy`xN+1™-x[VJf AƻC),ȗfjkۭTkëK/ck$fLGz(6lj;^i<)7m}Uɰw>&t%4aS&Hsĉe!e;l[԰0ݸ/WioƮOW}/>{cI_ᜲks,p!m,g9@Ov.Rgu6A$Ⱥ[5X=ښWǖͯslwrl$&";$&,aqJ'=ʲ[_vwMæaӰi7X?ښc˖9_ 0tJddD'%x:,&rA>'>\0EEh`NӽGWpkz^`x +Wc"R,Bq&<$Lci7_uA[=kV};Ǘ/ b$fǢ* ˱\PW@i.wEfx΁HmjiHW#-]`0(̩ IHL` HwEĴϙqrxsvB@E͌:yn8~ ^I3mfځ6MmҔK IJ qCwI֣yGﻭѾobKl˖%[^ p(t4uU}\?ɩk3Xb?<1{B1 )ʠ)u +e;5+jK״4Œ^S5x{z~q_=a8 ie/ŴxXj(Q@ӨʨVf =[rSPԤtuEhx{~ {/ͩ0/!=k[8P&ڪY V $7yMRULMogn`##4n%ubD@tPf*haTIȚ^ʸ,oe>OUq x -"8g3h.PԗMЬ] U,*WPW2M~K(d+\+x{ڍ^o_=NioYz!pg'ئb +Z(e^ik{dEDUۆa}B{_k_ӜB3sޔJ(6y +%<$iCPMAcqd"mnf:p~0HA\^0K Ì*QJ 82Eg`*)=P3؏6r[h/w`}o羣=\[u᣻nj:|ͶoZp7ȗ|ImKu:mlB%a50as5ޱwDGI^{Ivx\/$ٝh cD,IFIdB#mZ47"TՁ>m3V?1Yiޯ-:B}Ky/eN(^, +юd,A#$9Z6mtoJZmio=aqS5ݾ|OӂSacO0.v8hx'#TQ*LIHLʆt ޜYޖ~0˪a +аm=ć“!A)# xB1B 3QFg2R!@ R`, }owYr6[iì+auc71'R 9#lD}qNܱqZӝNUzuuk@zWEAAP I\Bx $F$@BȅpAEVԺ9;m-ʶ?*9M8bɢv:jh"(VV@ߠTei4EJtLpavwk}n䅜4~1+=n*(NU +<L;sYINiBx6 +_sZfFGܰZ)HB':!TUr_JDot$ H\$\VQ"Fa]|VaG ^j2#(Q6"*r*&!i"$]0 k A]0ݺ4!>DZр/rz[IV-9~`qL45z]ECmdULDD](ՀOICVt^DA$"C V[+{$SL:Q 1hG 5M|CF^kʇZx3UAPi/  n҄di=ۊ~i+zd%C6@>k\OX["d>Еq]iB6gx;iذ% +gd9 $*MM//uxUakfR2ȕ\o`*X( 0,OƤAq.<1*; O[T{j8lQƒ .3&Ba:A8/ W=hS g4IC΢/}ڐ:=kJ]* *8l]Kh-nH6j &_ciS 3Ҁir`xaؚDy]Mݧ 1M&o +Zr-s.j)kjTAAdGO۸7`pHGܤM$Հ!o?f*wm2~\?h2b۩z2lnʯK @1'TYY0FG)2UhӲ4`^2nK֬f{}Vm&pҁ-ZwZܥ5UUz(ԦMjJ m3GrA A%h4 `Z ЭlVy1>g~ |y؟~uG? ӷmHozޯ'|%:WS 8#^87Ѐ`SӏT]=r{L&u~C*gN{i%8 dp?3 x \aheeh jOy`~RMOU!KrUh>Du38lj,J0pzT~ޡ{&`jmյk˦t˸("R(HɼX&QoAqq˓2,ah6EeX=7eNަ ;63e0uOɧ4]jnH"QRĀvߌ帶la,/1 G#Œaܔ>ehi3~1k<ʞ1tȧiPQ'5D^LRMl)l8q(˛G| 0#xeX+)z 9Ys{xJ1?o'ud^H2kq2,9ʄq00|hahe>o옵fϘ+&;jpQNj$ +%h>鵐ifqfb5\Éߊys&``1k{ڦ4vTᢁ/AɩYL"2B5=+ v:̂*;\q`r!=\= ycʚqOZO:ᢉ/),duPbM97Fz\Wjz{Be7&H΋ ( un̬uyP>8Z?]'[E(fjY1)QUoh"^jN^l^$oGs4o-Ҁ28>u9Ƚyhlu^sKO3;(jzIyD. As\5KT1E7w>u>3mu *].NQ!iWcZDX ޲=7B^UtpQ+.hD2-hM;[l'Apd:d;,{OHgpj]<5jT:hCjJ +]QI%d@ [[ߎA;.}߆w[|pRB\G;A-٤}SKUT*K0)!D=eRoh`2xo.cxk{wt#;]ds=c?bv> k6`B:EM{MDZ"VE +Ӽgwo2oM{ ireӇŢ#3PS + }fj;8wym>3tE`uÅzAQlnwG6{xϫkE7]HH ~5_8ɯs뜀gq+>~?>].Lm`=acܜ>"ˑ~RJaiVUXaS/%(\bxa@ @Յ e nH\tzK?Y)ƶX f#fHvuqҨFą^DJ +a]XH:$?y.d_Y«ѶOo~~ZJ^]rrj[Eۛb.A\Ԓwͽ xYbN8ww`{-CplInF'LǬ/F>-/,zTB^O>{.V~1vtnYHI׽{Bc{C: >gώP:}$%_z^US~nˢeϪq%kҔIe?R˒6^L|,Oxri' ޥ^y/ >9}Ǿ+22AnB:@$dPɈğ?Ǐ۠d~u9;3'ܝd}/Ds;d~>O`?T.@WY4v,dG$xPt2\11 ЧO| @<(1>0nN\x??G )eUMuƥ6-k8b#S͢v횮馐J~Ү*`wo2`i(`!8):W@KD|Ъj){g3Wzǫqdq 1>, Ay-"8YhfNS%o_%B)X7oǶ;LyeT;- DA  p[ZT ͷ4zS>KkL7tDa 3fY`l^{j{~8 &x@ ?= +R7 +EUne2^dQDLr9I[M#D%@P؆~?VN8 o @A$o @ (pM@/6,qkًxդfu㍼*d %vk\Cn\ӂ9Xgh ?)lń(9 +R7DkPPqKf9T$Y?. c(w 5A3xی{6gsv` ;llHklԪa *,ђY.I38aOr791fkpoui6ٶ0 ( KJlK-Xo;_*%/K8 P*cK3\iaY< r|^|ǐk2L=>_USI;İ 6mNH OHT$+U=Td웒rl+Z3! 6?9(zI!73`zѯP^e-'ڜ2a@d#LҖ*1:HFמӼ(/J pEHy,pWt:;7 ^)m.3ȷ '=Zs&6qg +6q[ͷOG$$_py"!hgT6! !E f_+Rl.[buũ@36.}"~'>]W6SL + 1f񌒢Su<*qOhfuqi6gAm8%h?w=Oe4Ĕ=1a$P[k匭sH_g7)hv!oFVϷ0&96gtdul`5( _YT8PG]s߉5{4;~elH&{aL0Ejm<,P2|sszl e1- +?N٭s׏oPʝ~w8 JW14Gu'C0VЮ#ԫ%JFWV]R-fE`%la*2 +& 7Ym((C U5XB~dgr[7h~ }hč87w*A?:Lڞ64^or]҆Xѝ&jL/RiYvCA)Tu6Ae} +{48=?pkbPVg(3]BGiK{hnzicgXeTCP T!١} փNt[>59w#;vމ)/)+F $ev+Ӥ(󻒔.RPtSj]Τ +eGrJc(D 5f&P}j-~&swl&n.Yh)YQtвE~Nkbr[iWra;=VCjRic.TڄjP E &P)46_.K{OkVW<>D:Ewa>r:lHd(qm6r[uKT[|ks+AutpP.0Vhaf' ,լR:!]: sep1"@L)FK%tەYݑ@ 29!kZb.zۖ7.nޭY["B>ߝ1cEGC z)?"WWc{5: DUՄ/ +jDA?iW7lZ7ʷ;[%NJd&Dr'IY\hR60r-ʺ6WC`}UI$P,1oDAÖ/V:eņ-`,oY/ݱ)|! 1iTܽشDιt^73h0!-/]6(֣5~c#턉ӗR05nl:CLy! a1Q_sOq!)%5#03g!0̃T2^6:ע4C_XW L: ip='>sCa@Ci4kP z#T=saTؽ;`fVg  ;`xN@vvG! R\!pJCPy8Otغ.̾߄?m?.N8BpDt=~8+[Z!H[Ck#`X 0- - "dl2.b" >c @gaЫ\BXK&=ה%?}*_Ŗ͐iŢIbhX<" JFA0(&~> C e Cfpc/شLVbJ-?k.A7_"NDˊǣ%cƒ1;;AͲ^bYgT2Cb!,OK= yЫ7DvZC&3O&L%Hq1|4JYqZy->i':OJ|C> 1d#LĐ3ѫorٔTÛcM'M$cؚr]0IU=uf# ȮZT!΢<0ZOsjӞqkuQj-"eA` @XB$d%!@VI %$lj@AA VG;ߙuzݼ٦$DbRfw9WiQ^cUT-U3f5URmJ*0P 5ṗƝK@ޱ C? + ;61|3$-!xUF1x&(bJfX,tf(FނOg5p}o1(f|Sv/%V})$;͚F.MeםuEmvC'hQCݢYаsh],^trx77n97Lw@,Ddu,B %k{=eե:uS.uܥʐt*ڿB۷/7&V,tOmx} o*<^DAxbyލ0>P,8OkĸDT6.HO:{9F#OV{xAW~%=3ϭ/?ulmWۂ%/=J=:U|?HdeP2дpy7g3w{jd8⇃ȀX <&(Gdl1?Ƞʨ13?3vjjqBn8J:j`G'`21| ;7`&oPh1G a}C )ȁedD#O/6 P{]䈪F (䠀Kc.#KqgKhpu?ŀ׊@ؿtAC}"c_zAW;(v@ہ;\BPn  :w#-ya~ C'z6 UC_ + B 9t ;{p?*NN& n +nlw p?8_QC< +Lq;FVk)+>eRƜ%Y8ωgz4Q0kMa?M47q1콌!} Xu;1pC:b`!7Ey!%x„LiRK33oT-"֋2$+Ill2_;$'I$ʻ厐7Fz, \ GN-M"EǚT`R%~BL&6.dN(&pG~H988l' +]mE P7ȌE2&GrpI/9iγ"Szx2*}L|DjP'^81Nh~ʾ}8K ii1U vp9l Z$N0gy4x2L6AT'f=$7< Kl#&s)' /S՗@ A +N*1hb d| Q&O%xΗL(Ɠ+jU) QS4w75}M{Ҁ6D6%h'h ĈADA pm|("F-lTže 'Z88kaVmFwII7 +i~~~}FY;A2 Πq@PB ^WfΔT! sF.JsѯzJrИk8W\+e^_4 1b ,oB! APw}A"NUqSJxBrR9aC۴s%Ime]+nnYfSV)) !cHɽ_oCP% I/ ֔J zP*5aniԚ>Z*|a98fkz.7q{ʹ=O@dA (F0aDY0H R'uJP + ;-ִWSXmzNf+2~D]nt1k%~fo2 0~Py]܊?K +ՉLMeQkj\rU[kתKmVHaыLzqWb1CO@s0 +&߷uasQOԑLe-ZyUqR+ +Ygԕ[j2ZkkU6NQt.bA&b#VgL{BPz7CF7}V3GvHwVeU+mŲ.5[4my6kR-4UN#rH|jx>A2 91PRo<݂x.NW@Ʋ5΅ʃvz!0$lŜ KHH"N_Ԥy=Hzg04Ay,Ey٬,G} "}bg}OXeeK'!vD _0Yǩo"ȋąs^kJ86׍z99`t2~@2ȓCByvK߿靐E?)ԯ&X׺5\L^sv:F"ed? ƿK \⇻)t{]ue5yn4nq2ueI 1@&d tGeɍRR؞Z`nvb, S!O" +Hu rK}*e:.װ~vxcOѥ$Z"oieLMoʲ@[ F{^ ؙΜ.zD{@,D۵rZ ?8rD݁A bfL6lL0V;f`Kdp3% d 7 l+Gq@#[8ko G-x +,=j] bOrT!H4dT2-pSbj'tC>ZMISs?Ç k +LDFr$j@#H$C!ױAU&46Aw'(vGUNkp+o5SB!JbD}ӃP*CD}qIE3 aQ*qGt7Z#`&gV[VpV0wEJz@٦ }}/DІ.ݐr%`U 0j(6 +pUa/S 1f-u%o/&|E@j R|iA +~9_y" -c>CzϐBT0Bh2@EjpB e(;`uzP/R e@SWI-A+vw>o/e<{g@|˚]b={ǖ lMi24kp/70D'^' RʚBka~mg}#|%#3a&ϰ&5==-:+ZQԣuTD+ʅuBf! H,'$!Ҡ("e(U(Lx@e(λO}s7i /l>BG/`X/Ш[ DՄ.3#6'=0] 3ĉjқ:kci!i{JFӚ0#NI@Z +݀xr 9{"=qH{\v[laSBzYF +Hz1|`D>e1̦X 5Q5P7y7@?H @O< qzܻ,\>5F})b_d < y`ۣpnapE?tݦ,p89 ٹi$,~'<=E3ch/qǘcӬ*h䥄gx=?1x~M\!_;_[ 8> yȷ/5 Yt Ac|bIo#e\=;0 cÑ͢GV\_͘>؇:Cɹ>q%y?h] zjPo4L A f~ 'J8=leC5Q QI^M|or=񁬊@vܛ|ܛ,`:jp!ul,Ap#@䐏bv/f<#|`l \QރR܎V^N9OJtQ'i= +G,`Ow& iנ8 `ڹ} 3 ѻkJ&DD0 GMIT: wc;rjޑnct3:S ])lG en G `2w, oo~g1Ag[$KiPyRT'5kkCWlǷiYjl|(9Uѱrfr% 503o':M,s&[W8nR)UK]^6a֖ 6X~%dgEl|AWIg)E + b K1F|q B̳(V=1mxCY0;̂c&εk\,č `rlLjxcWʴ|Yu6NQaK:|a6.ݮX:ҝbMf*7CIC<\:W{}w/<صSS~ՍuquDPQT(bIl$$,D*0:ŒZ;NZ:nǵZP*2)UdK9}m^|^K.7VzaZjBK5}F_\c<\mzGiafӛ0ܻ=|j|4쳨Ǟ$MW?l{I]voqf"k[եm+UnzZh|:^Eh[m[?QIT"bŋxFR.p\T*m?;1te!WrΉDyjx,k#]!ԳQ>ňX&gk *Y>cȎcd%rQ)#5Ңq+QhG3bwF-!?&H#!EjZQq_qY_iRH #ܰ8΋ŊhM\ sp1nq9fG!~%d͠3Y /RLtFkӡ\Ob ICo2 : Ʃ:KayU4c&ϜBp,4? #G2_%dBR+>a.| sxF=qs@ ݄Y0)։AXISQ-~bOqp?;"s;TR4HH6•%t0 `Hp\"b4GvnM-13Vw_,Q1_@? `g]!gCzztPh +á.r=3'CM*${yCBEXtY m Rw26MV/z/钼vH?i3 lhS`¨DFf(Ь\_ܜvCrH1D%3O ;r,jߥh@aEvy7;S0 A1lz, +8HA6 MPnK|bH- z9DWUB𘂠z'~٨]BfoU A %@ǰlr2p`^cI<BW(w8 V)%$uWT5!zJ _6+_(ltrH e&f|U7h2}`t06 +cP2A J$7?OCj!L0lSAG~DuAYgV\7?QtR6?I:?K 94d0 \`Qr$TOCl6Vh%o eLpq__ӫڣI7?k~"-ցjWuDd !I 2 hQP(ThI ǭ{{̋yy~y$A'b*37EmJO%\OŚx4C  b'iݑ/f F}KF-%:v22vfAi:Oǡs=_H`0Z:*J?,m: 20% qqChmݨ6foT?'j݆49u NU<*А^ _b`406YAP24]f2e\w|D x~j&TxXp%=6s@4j rѐǓ +) [`bc1` i,p<f;/_ +|A;sT!5஘I 7X- eI$->CX?\Ij(cO3 4#76N0 Zd{߽\ml׷m#šC.9 !ƶ˜LV]Q[j6,KeDŽ =<Àd0 x9h@ZjKf{p?pjw˓S?+<ڕߡcSX8Z-PKj~!Bl0{R2Y:=,VGr=/mDP\s`z[k sBfjv,t^<{ j]7wZu@E מVET$xb%Rν)S $"B˸D5ŕhڷxHGz,߾ோ;^5YovYcS%]7+Îj~jrXUPPl,S.)Du2qrgH\&餢aH8, DO7"@@*,XSiy}-z.h umǟѨ1yHJ%e+f% b~jږʑ!K餈tXHFy1_d 9i9%FWa`FN֏oU6>\w1ҧ"6TU"Oe!<32%Q*f<%Ii#b|TȖ 8)GjD́dtm-,_tmkŃ]_t_w]|`eDAmLpfV"tnKR%q)yI㲇%dՈznLHK +B@ +6X֬6c7WG0}wv]:֋5-a9AZRNV +T#$Jđ%"\hrLǟ7J#rn<[%/sڥY-xg ~5=?Xt,S~gZxB/sI$4IŎ gj/C5z*4 F.!gCȚ0 -Em-xlۀl@З}pƁ}U7ܭ>"Ϳ{IŒ81k5Rji`MK vXQdbF0 v<[_o7l@陣UeEmz]~?hn/$%8vC2]$ow/4WԀWKկh!Ab;,å` +tYk24cGfMcݬ?Q }#ف!'Gz6⼆pq^o 7}:Y0y!`XNKg j,eUL9or^!p]/?4$BQ.X=㴞0&+Am;2]>0GzbL;Z hk ,A}kPdk-[me{Vg]1f=Ϝt{jx&{9:jo|}{׉ϾGt~;߁pF:0Yc>:̓|ޖy9ӡ7Fy:-p.]gQMy? q +.,* l!!!{ I 7kKGwKU#-X+:uA=zL[8 +B|潚|w]=hil*5{.]0wp3GN RqU"֘[>asbOn"){>G6bڸ-Gx}HY|HC4ЄaX(AQ> a@TNq Gq2͓$ߡ(2)*%`8z dE!; qL.}6D3e|4|Es262'aqh/Ȣhf3 2* (\GAi,; <As +Ru t:3ALd> 1y +J ' JCʀÄF KTaP-!DXK/ldAV'ɺ.g Ivg|[xbd=xM4d'ѡ`1IgB'^9pGCI<ے!ٟ +tNf@x&v.Ywg!>Y/yB t&xCȀ. &E [D(@/8nBܖ>BE<C!ρ ُQx /(#hPy#o1&BPPCUꓠ4 ʝ =GBH#3 KGR9 &'}HNJ1&QOn=[}KAݝ <Ϡ#4>(:qLT}å +A1(Iy -|v{8TgP^RWhʟk4Owyw:?.)4½a#*}P23L}*QhAd$?ҵj}jzoW ˦QӅQ9g0"7x&XśU@|e渱jGʰs)wtuV+neEc88ᑾx_~aKyrpf.l=tГ|{]Ċ:&N'ؐ=ա#1+mWU]GF&K_ +n[nZd(0[mmECSC-_zl/yAo"ؔ-Y#zY[|%+p2\+9TcqK?gK:-;,J/Y_8Z4h 8NJ),9yL~#d+ȷ.ͱLlK2ȟ9( vmpo]_JSMk{As_%Q{k7%γfGpYeM>'( dȾWOz4̣a[4;Yp؛=n[m .ѕ++ۗn)ztAGd9׉+eU|Yy+׾ʾݮ~.'0FfQC5&2%?1Ad袻[~mC?h9|{ɉǪ]]mK:j\]Etm_Wly8yƟ8H%CESf_˖889v!5dl!ҴeFiK4L^XYA@3AZ6]MDj+.;fw9&G7%ƞgTF.8M$, +%tIIlb樒I^֥N{:+vxof:4 kRe i"anH^lYXVt/#\Ԉ 5=/%z*"9z&,9j649j>$)j%=֓0{"_B4{YS.uEp@ +k%Y5_qOfKf|Pw .F +&BWLxYN\;.v% +#<{+UͤHߴzrLNM~jK +ODdg%222YI„)x䇑 ~d7*a:<:~7ǎ.DDaDrxY~nSћjᮽ&ʷmZ_s2P"wZ~ܙ *d 8ᇧOq#Rgy)~[& `A O_B'=q/n&yd,@؆%`mY`Yn`ug=w4{@7|I:H5 ?BHI t`{R"n>|bf/s/m!?삐OV"xF`'!,ɹ 0z}OX ҂Ag,7{Ɇ_g"D.ǃ +QvGlYMtBt"s+]*W5Fh+ !:i__#;?=G+b `>7ҁO=3@$fAb"h%[WWGmtp:f}6aי D @+5zq$X?r'j"Du"֕ +S g8@> JdHJ[Q+<: D3q,]bk,d;2{!8?Ds3듀UHXAPAK +},N&-*unH2 _x+lƴEwÆ؃Q7Q9/9}pŀw3Wq>&!?{ԯZ{d>@V#֊ArArUU=,7J$6^Z^%s^[%*7!q+C;Q 8/DN&A-d_Ɠ|Ň-֑{@w. …lٲt[R["WQT;KRgIO{[7c! qe#C1$WLhb- +#G4g _4egy?YH_κs[+▲%kҞ+o.J{IEeW@ܩj$>đ|)֑6UTN-g7G8/yZ\ИNn}%7,ܫQ=V!Jy27ңv[V-@g_Bidg'=6M%sz_e_- ~6K]nt^7 +r 9戞;O?O9$w&8|[ٮ]ٖ2h[ͩ㲦ԷƴwI dgQ@zlZhRjwZOkCf>VEuv$ٳ!}*$\KlWv#Ir8}`ZjMk귚}#ꆵVE}Ƹ|{[)!yDmH@6o<l&} ԭmݣFyN$,P}U.+*wWdS6g4e6d\Kٙ٫NQdsqYUDH$[G dΥ‘2VrG6O]m5n6;^.{vW6g?h䷙6 +[ ++eyU; jks?լ}0RiN0-1VU0.{$mJ l޲T͡ p<߽Vԫ{58xthWflYWf6nIY\#-lTWO0vZn|Z^03 iMqTU?(˷y{)L|28k݃(7x_h {YGՌF6Z +Ě*yeNfSkʦԒ4Sb:ST41L a&.&{S͠|>rǔmݭ%"J};uʍbBf\.1M),,ոLZ^ُĀ>ӐX:)(UƔLV&Bٜ3(CU沧iFuh:'ʿ۝j[W[Ģx=rzSS +nW&./fkIiViqUX٬5X9SY׺-CuyTe4\ѪuMBXEAaIXE@0qWzZD +REAPAܵEܗ#n=3v +cNUԞ,gg|~zy}?ѐf͂1=ŧoA4ӵV+ok2?mW{$QRYk+;.b}˶S"{qIyy%w,>{I@m˶\6E~у*!ݮ3FtmuM原Tյh'ly}OqOj# Ǭ;&a)*>K_X?+w᜜}md}=@V^`O2w  Y٧DN6 u1ֳ.3&sՒ"/jT6慮;TnuÛf=,=sӪo2/ UYeCswFRևD"_IUǧ M%S,\RU\,=㰽CQ>wݩy'G,iY5-yc\vSѬc{SkRNo / Æ/?R>*FGRGCo#zTFtb=tG_]ҡkT%^ 1MmDd+/d/>08g6;>'^:1U>>f6#9(TѰ臝Dw]۽j/qTyÈM{\]ۑފ_q3m,k |VS\1s6zڌ1יӣ vyŴ#>3D]!h`?Utr뮈ӖO}[8:>˼&<ت};hVFByCx]DFvAu:yDgD7#jnfʯӖ"kNkzżr =ZkCO]JOxVcz>Fȵ=U͊t2T8w(C@u752ω.4>/N͈V/y/eTFWfɯfOxdחa3/N׷!oc.܂M |{FD7$/!5Z!Dul+Xvv'_=7-)_3{p~jZxY4C +UClw~d5IJAlbY?hGXaD|K#Q;#JÎ7n:Z(3 +BHc?d`l.ATVK\_0l_Lj*P5˿C)EpVCԿ.4YEjE( "A% #@#r A("HM׫XVG+VWZ]gߝ/g|g]ך$i VcjD0!D +hzG[Cq n@=_\r}As}F} +ns[x +ϫAy9*Φ9|f9DY@DB(KD*׌F!.mz?2a4;Na1vk +ZC狰oR # ~H{/px*ٽ_ +LJjٰb׻ͷ=o:~y_#!|\qw| $|ÃQ>P@)wusW`Qn2#5hyR/ף5n3Q-߇/5uM  +N :!x\$hB6&P(APo8.S3)mOEHd`\iXf6iK'Ed Rtv阽';' :>|$l*@zg!U 4S V, =vS^jR +\g [ͨ.Ǭ="w99)xOHKU|%i t D0^y(ewE&:bh F 0$@@)=Į%Ωs?A şS~+[ovlLqɥgr"2.GRIZYEࡄc|;+#vl6Knsc$SA +j)0@7b-ǮȳCcSSfz3%쥓a㹱.#->J ;,3*o&e=d}06ߐp]PW%n 8r r`d0q-=-@Ѝ}M>*g./.qL'꒮O+IX") ]E7!=*nFgfONTF*=ERώ\>fP陕}z;D/*'Dˡ9a~5i(akRe +-D}/ +=˷Duz|o.5-Bg7߿f6x@ wqo]GSI:mu~nG߶a6޲z1hQoge!̩R^[.*KחkUM/+(L U~P^^Z6j`0pXWwT hu:yMt52-&bEKh}]m[UM6]e_Q*P+K+njQ@ɵgCe"y;B;9S w!!tC}fh@nj ՔUOguUMbW]CVm7ϐNԱu/ D{X[~|pL[V)DBwNc=fh rͲ]5gm[Gn˞YʆܠRzBNQH~T +Ș +Ht@ĖZYpـp{C |i/CC._-+aNn݉[S;mŴݭՌV"0G)js23^;B|3$toL>,u'{RFj+E^O?dr7 N07]X!@*Bw]Ad Bc _ݤt{+k/7ZT_ks76mDna-r[;~cx|D_|J>KˎEћԂEG->v8T)Nв@]n|;)T{s%35q0Ͷm@yW5;dd&GyS-<D6zvc_֍Yco,dYbjmt"\8\ۅHMkD Ds;^ ,4㹼~ocd 8= TxV{ .\;vhH5mL¯.CwC׏ma3>^gsX~G[BQ(e>*  MCraxayFc xGaw$xKp' l`3vog&_$*BM# |Ʉ@CBZ(( *.\,\ xH` X&c ࠇW!fpU3+l?D"\" Hų: Ix +C =q?/8T 籎簝'c??g5|M˾Erb(xS(b +DZDhĒT /j!8K"f5SdZm$=m2] +{ +-HEbfy"z} ];ҏ|!iү 9ꏨbD2wa1xd] ԠkyXzLVG'zB9 q h( F|?b2 ?ɜgfn3~_r +B,#dX,TzGPA}1a4{W#"f2ς友#; @vȨAKH?0q}5HpvE,UO ɯ)cI +n e@t 1W͈1Ҵʀ﫧4OmbEۄ?+[+M:VHiPv}>dj3q]3r57`g0o/iK9XߎM9#sdkQ5nBN y\8 <; ?QB+ y#p!uNxʶ [Ÿ] X&wg<%ݫ:0/<8S6|n:9@틼H뉸Axh|KD~F!ZS4.y} + +|&t3I l}#fr+Ȧ0k4f,9nD$s& J{jUwQ1k n$o<.x:rVȖQF"vIv$5 +Jst0k울 NeNEOU{JX( Z0D] +(ަi0E&pJהFߍyǷ ʣl2v2&%ݵI ť3ɵD K%)^U + +/ +Es +!Bh`/ {o. +c2{WTKEV}9{[I rU:]M/6 %}_7[͖7[|ĒC_dD[ :U7JHu!ܪ5*5LNe莖˜=jС&K<\YH)ʨ+d nQnz 1!Y*bRSv10x{J.7[$5; לvU< uSTbt<%7GEϒ׳dYa$8̯~Lđd"412D +Xp;O눠kXMaщԭq-5ǷUWFRW%TVzeRkYE;')O'̝{/!s[Y)(J"j& pk0hkZ1i8f .ZU*+{H˔Ԥj<|/_|b +.1]$[=gp{W#vVvYB{>bc'ٸQ9jU#'!@jYR.:S%񫚙'+|*'88|"*;R%S"h5[KLqf`34&w3T1Lz-#6-.Y(l5+ȼ&WdC#- n +Va#FpV#ZX+*_ͿE{Wp ``#6ფ!ly +@N{Ss\»JC:՞A=q;mAԣ͈zL(Auy{oq`w0@-vвuq1Q -q/xl#GN *v:s9>Վiq\r@ o/"s;ٿ}52GpsgN kdӻ iWRX0o39jUmW;'2w(tێLݒc} 9. ra ut 4|$@MH3v;b=IQ>as7[MΦ[sf +fjvg:`Kږ:duȎ1{\E+WwA'@?@ίXΟH m!f[Bਞ_l쫏^'1)i}g6Ky+wVn|8x8]Mh_ο-3'pC"HvY(9yѡY&/J9hZru3W/~,=A}ny;P gD.~gЗL{(m# a!: 5px7?ՙSa20 f`FP"JQ,X"q%Uc jtE=.Y{uƵG"%( +!;O}}'~$~0Ofh#v^R+uBW e{; F;m_ x(6Q}اD֍"j)]5GPps`|(|H?-"")bϏ߈5X/v~nH>6J-߳* .C4'DD8?( + + А:H>0ZArCOY +yJLX R`Ev%,M4/q-T{cDAD 38Ӆ㡽.Cw&]mqm{w'♯E^d֬QSzɫly]jyh'P=9]}GK4wV{Ju#qg|&xBSFӉПHD1v( Cjxm#TFtfNLPɮ+( }߆}fDTDDYaVePYM*X&FM0.59Ѵ1ihKs޼[ą3r { ʏ2hnڒ۪1Sb_ǯ*Ҫ=RDna_Y9sMF"",MB0R߯iPQt &VX) wj+\ټwIl徼Tʜl~Yv)(NBQj& +S(Xlaᮔ^;4>#80Pk=uL{Ӽ/xE}ZhBg./c$18%#p0U$MK]O=O>d(NGQb. +w`1JD}P:}'ih`A=hcZU4u kbMeՉV9iҊ~-FX_r'N>++D8E; +QB`4ԃs5ԃz{vH[Cje-ZEM+c-$u))Y$TzU7 Uxm];xs6pk +bJsS 5PH3@/*Ʌ.3rev.+k_ٶ0Ӥ{,wdh9(w辩KpBr_:lEX z.,^.Vô6T~GK5=Z)GvMw[n̳>\Q缮kD{xv;a="zNϤB 4MC rfh a]';m$gxF[bFl6_7 o7䴺)AU輺ɡQA5h8AzvV,Ns!eL83 Gx*NgLбB㐱Um +kpooȱ>^AwP~1?OH1Łi=3LL{յ3OǨޥzZtnT!ACӷyFsh"D3\p-Ds8I?DMy`%6U" lBgE b eJ2L^U++fMOe?Y-k7g]ew+bG)F)O+a5Xs\3 )ς@x+܊f֟btRk(j/˔? 'ODT up~ `$lF򙔱xV2eы,?xO{*PuAo_t?_#?%7j`X~|0^@0WANx絔Ahieޞ`og?hΓ|9g|Ht7B|{`'  zh%hp440ppX%B0H1Bo FʗRQ>= X=Q[LɅCy+)hEˉH #[!`|E~\BAYpS8RB7(ˉ +ro }bL x`B/Hb͇C<hƠ3̕A#z jAM,H`Z&)&5t>2L$U)}~D^ KK0hȠ ]̝ACo l`rI$! 2A%r|INeJvv :2hOZ1[•XB\RJj٨B: Bw,\'u}GEugqSFA"3u +DPAd230 ",BK5ZWcM=hbY-b'su߻}9(zy'V&q_ Nq%]ev^Hihde-r8hQA:'hE"[|}mqBLb?ǖ( zŨ-,rw( e}ow?$kxo%7WCgҋ_w?=߷{'+E;oKQܒ(['e8s21E3fNPxpz]8oW.Z ?Y̬ Y 0/2]7\ +g'\e +/p@w$@/#@oZP/^z~>+]}A&ݙ;U'Eb;w>3_q)0JƧ(:@38]z~@Iw}҆<4{~ެ>;ܛs\Z&Uٳg7'dY>=x5qχ&G<ޚ~f

#z}b!\ C a ZdC_E yN68=qh~y&sL?ݢ?`xOn>A]gwd-MwN6]V@A`Wal-pM9G2p:ҋ},b>H.p ,ݨ?$Ev/6߹r{Z6A[K:K7]`'QkԱO/&f~e%<疈JGT؃q=ѱ{#4=]7nmtۯ6lM%YK#٪w͡hOPc8O7cq>_'d$8,d_۝P=>Ұ;.AԵ$lSlEGtmMֈ6eY˩1sC9z:N(#5hWұ0e7gRYp" S'g67c{g7'upKJFu=1Ŭ-![ܪYĕ6/Yn"UVѩ6̥2+yy]7Li :Ƣ8н}I ڍ0۔)oS1ņ,؛m ;s䬞l/^g\Pu1$U)&uMCR.־:acE|sejkQ)Wjvţ3q$2 +ÍxAe Z!3|gVglnG^[΢ DY f itMuZ<ʾ$ɱHѩII'ܴI7r/Z52ĉȴI0.x82LcTe} +AO)tX6eiʟPj=VٵuZaIBC]U(ReS*,˶I+-K5;w01E]#.BdSc +PFF 9Pg?\Nay4;ʛfq+ Fuj,ĚqҘFYdNʊmLXŠKhLX9:RXU[<^H}ݍkW J8 +(8g6NZ`jNmzN?f`afnMPEESkٺn]6eyZ(*X +)JYYػہΞ;0}'MZB׋ǽ2-c$)nJjG%W?ō'=vpUB`J56<ցYki3d^S`gꪉ~E+߷bz + |NXc.tsȥձK,i)X,1$f=baoy-~KU^)5cFi(ޔmJצJGxiqoMnx$p̆; .X$lhIix^IUDnIcDܵZ"sVIdގ5^u+7r~v'l3`Jy*qEX[Qsl$S}Fna)kֹ9[V̭3ʮ؇-%$}0=5P-gťʁi\&TwWQXJ(W wݣwy2df3]/ӪKR\;-] lI6h )wHp8_\ɞ:P;`yVCNdQ7F׍j)3u{&կro7$1T(c1f`6ɝ.`2Wûùf6hXt$ G<gSFcwAUQ˴2-Z-~ˣQ;"ijro`R?PTY@Ƈ& cO!g|&_$#%;`?;}MCO"h-ݰ} `;+BgDi#3~n`k/b݅ F I'3@9=.ak[,m03Lv^NOй^6Am?tuނvU*3N5?evSO Hflo|oa1:w4;pPA7 -`s̟ɹ2;ك?e[V`'` x@7BdNqL9ćᇡ7\.,P.W/{rg̎ X>̽o,v$'ehB| CG{"$(C iJ0~OzJclr}jO][B 9 <9Sb(T/yf(ў:-TDA@'/R'yN[ߛ3?;nD$_}š-&¸P9U^x<~4^.0#;ߟi%G\ )PaI6Re١Ԫ֏ k괶MM6ѮAbN} :F9UrꧠǕiE`_PKufT :kA+i_ !7!q6Tt-? A$b@k"q$>ǫPZ%vٱDX}ب]ti;֨ڹS+D7Lj:##ݢ{-T3$88t%|t$ˉWӵ ki-Η=>wqڹ\wYsssy6%6{6&]jH`T$>5@| q4Ay@+#Wӝt[ZF⋴dډS5?gcb)+ )yLeKgMi4Hm5M'UvSUX*iIXgk{YjveVc5 Sհ|w cemyUWo5+ o" JbZE( K!@k@E(޸junkn۱vvt;ad?=s9s߰NJbMH k) ^ ك{x s%' 0!n%&,%^JR/5|ϹR3qS։ةPG2{4!xW!s΀e$ kg|¾Ct+J\V卵WI*9}V8=0MTL$[ƒۘI=!CCY=2/.H]r³ זDظTuYc繥ΕAt_fMMtfv<gTF0즎Їyj^]w!S[lϩ mn6gu4Caͤ&s>*Ie#YBCDHYCB>9Ήװ{^.p!g 0e b GP5&0z +ޝ,}`k~ I_Zȭusf털\;')Yh?P[xJ$  |s×jߢ7 A R7 +`LRʢܺKeM + "]`Ȭ3VVs͆v~YQaIH?+)/n(|+)1"4#Ucpу. {F[UQyнŜX[W]_]j6BJj9%m|cqP4*Ht+rޠ5~#0t`aB 8Y0O0{Ͳny\VQS +(2UXEj/-唞ה^dޗd3MD1AJ^W%fA=X4By#45Zѫ ޥ~E@C]S_kͭif!azSz;\Yu:\YHUITf"P _]AxkC?4 +`Cz'f,@w +;kW j0\Ž-nؾ$mˉuY [uMeW/ة)ZxM* u]xpNA{&q38;p;@57h~D@t[ۛ NDn^>pW BCȃz`uP y2cc}8ܻy3itu` cOx>>ޏ;x}~lFຕ@Cq \֥)bJr:ɣP-g< <ܗ\;JܖᦼUp8^E' 霽:'8^vMm -,U)Q٬jifM~/-߿-4˩ŸS۟*p-lQ犓|P:Ma(UOUϰfRn1MPm6MWf7 +l0Ԭ7m\keYb׭Vh %? Z+jslgXgzj~:J[EJ,6PnLW . )lڜk\]n^bԼfy\d\h,7W9aSs\ Nq+H +eu-??;w +WtX1QcJejtȴ* +OY4KTh;7h.?~vP}^P}n#~zБ]N-:3.mKvʺ{:+=TFiXCEqYZX, +SvfU6zY_L.4W:~Frǜ !{vziBЏdO%⹷7ubM7gjHwP,,ΏL떢u͌lsdvq);|a\NwYo _G=97Y#Y.{{3~,K`E=^&W{^VocvJ4yRp }بR=9$A_ٍCf =s c;eH~kZLtNr"}zpppc-4CJbe6%%ppj\&#}YI %)֘ꌉ!;_3T#R4b JIOde7 1P,,.V:,UHA@*`-k1Xb]QQD#UѱrԊ:k+ڙs@wŤ,F/(GFWύ8;jSxTQWc(a>_# }xk+$|dm8IZ%BN(If4-yYrR"!1ba\eLBUt|M,9"V6:p kv + A>0^舶Kgųf] ޹>-)9;r=$eѹ~Ȝ9aّʰ4$Khz: w=}lIV|(fYb.sFx <%!e3˦˂KQ~-'-Vy[M(Yc^IWؒSڎ]*lH!)6=g;ؖm^!I.I}*$BP# `hKWjlҪP3yU UeXxUYRzVnQyTWW+>j +a^c{s2|s@鎭WU[` |7q8P3kH̐ Y I{6+1n2w55w1lmxk:VXX\s;}FZ:K+* <moԪYG]׏[\?Mx,i+q1K6HVȆjdCLN2T+䃶^7τ={tW +MDofm]2 kPO  3CwǀPosc6.C}$NKE%q\[Hv l#z,za ˞u?0 &5M:0h`<c=F`ӒrXBz\U3X>"$d382;s `. 00(лв]:!e +mv0o E2 +N?!kvN}'5) i{M'܋HDrA..iT5/Z\/_\JyC2h/`pB/뭐yO33OW:赦;X_*8kx!v7\[cی@77,]N)KOgͣp4x0mځ=jz/ȏI~"r~T<</qC.נ(++7&F,(,ȲܖEvvrY˂+  ".!xCEh&Fmc6If:i:MSM[vڴ}z<_9y>|e >X6e7pmŕOK\@$ dXqu,xFVe +*U-])[kkݵMp={aj1drrr_w~ko7CfC $r"CkKGmoWkqKp/4 nRZ.GRZpP9E;}VC)g~֬(b}Bq}Lq==WΑHH둄CHW ׇG17r}G͛`!:)3aNi(-)>)wfi^Qg2z{88w}Hca kl!Mw07ߟWЧ>(U Qϊ귙.=CӞOQ[2 $<%b޿{?@ωlsc9ʅ49Lføv33 @fkזs5ތF~OF-L/jOJ[>})iNؕND"BWO_zp}b0L +&tRݱp@Gt>ի/`wg[]6^g@ێ֬@wV?Ӓt3Fݼ^wKZVw#ơ#"$9p7\G߷`=` +ci`@J0C1)Q0󊸞<+ߝ[ВrE 9{NÈaޒWޕ m'2H1D>O1wW9K(D}7 +A) iN3X&{m.,5V4 +ZE5=!8)Ae_HSGD瘃[xqz~\__z_ΒhlViI]lvcI>Yb9Jl5N-,+̃RaYLPZIXn6iH; \>b';(}-ügyQۼxQ}z ?jXxc^.=.vv)jdҐ0@+w(RV, Ư\2ZBm6^V{Nr1糨{{i'҈ߕ>j@k<ɃȣP]S!> kjX?7vy@E}eaOp}P, +(q]ՠƂADET,NPXh{,G$1qu]{Xۏ{@xgygΑڛ%_>`Q2l]f(2C/)멷4y赌A.| b38~Z9P rxë;<+"Q1ír\\p4éUp,2!9V3yLYǻH?RO VF*gS݀cju#`WDak261ZCcIڲ*K%\@]+!=bԝC݉Eݸr6ԯ_ȠAVh6#GdeYPV: S^ jO-Pwm.߃k=?CIl3Yw8ߕF6eل\dikbR5љ&+"CV!V`zmDQ7+|; R@.Wtll]> 7 Lb|II}g'&w!h!y6N(F{;Q׋]# DuOrLhv/C?[7lO 1yI#_ҐWhv<xռmּExD3=桍i<,`!Pqk6@kA? $#dYM6RDJvRK!u/+~xI!쨭PpW;H32$t䐍dur +.2i.'WG ƙ5H?2|B>N"u9RkC:k%2SVo>~CG7A8RWm! +GzjXjMf|tX@Tjds"@# ~I p'4q7F \hK_hZG9&ۇGx}Lԙ0&He%rM8O_ŠS 8tZ%#R9SThgG8A'5qU˲h%|:bN+qJ'98̃UYê +4jpHՀ&|W2cjAxQeNW^/'7~}6}pV7lGX3`?`8nsWu2:AC=84aT9F@YBz7ˈn.yJ\C;N;tQwðԹGT{$aL敃*|Tx{JHfKi +IA3!!Z=k, `;孁Pg} lʎcPR(bdl HVJ TX)Iy'e~LY֐՝FRK03Ov@ol=P4[Gas8OgHy!s!) !!9!5!U!쐣eOKC"#TțY?]8iG,=c~3XP7la(<`G`q8AZc"[eLeʳƕLFEq2ݸS^~EX(\(I< ԝn_>|r8nU =+LXcFie%-7e&2Lt\E)EjZL1S-0FlSϏ8gj1=6 ,Pe s :W|j +{Kھ>XX? +#e&5E\F3+Pydvf>6#hE ()Tm(O|ǧJx bca@OdFwƒ0XiQGdcNR̎LNNγ]mMV71.!Fh*a`+"}ccbuX2qH &̏(͍͎)K#"q4!SR4VhuGEyafav .D&葨((("0 ̌ (qh]\Q0.cMh4rZ=&Ic\kmm&A;8}}yIirjIjI4j{'JxU?3~F[6a>(ѠԦ*CPnH t$=WV^PVOW5MߡYgMYHc֋*^TZRES.qaQؑlZVudD9TfCi*LiPlJN]Y(_Yeƕjq&˸KΘqZqC&#CT ҏ}mf`69x%RuԘTfbK0ʬcQbBA>dbJxyhI%){rs~0AZy(R+‘R9HLT I\E4L6-U]ު^WY>J"r,JB2`y)PK8]LWA߳H^FB@̯}a瞂hĺ0ǝ"ĸ3ndX宖Ns/nO}M><<P{ + ~u@7hYGo ڥŠ$;Fc@G8;#\<өG] + <M hw=n];G;65+P`0^ہN``~ jCp(C!EAeaqC1}C"? 6je6րv1.Ao8]@8B{|a#hB>n~psynu󘈿+27ԝXg&Qs459=@{?0# pZM3lF{p3,?gyٟ!a{(pm>/д.d/`=fC70ԧ'J"H5K\~¿ƍ b^?EnD|B]k4RCIX= +(z%-BR&kOm?rw޸p0>&?62j4hGLAIþxq1GxPR*Ǎ+GsMԝPS20l<@?F-5Aո޸5ZxWXwq+0"<⢤MT8UKƱs qW\ %uW7hZpYӉQ\ňv ¸C8? ΍3n&<ĉIdGoN~:G ӊx0n11W&%atrF&0- _NI~GH) +^?`ST!|:lG0V#ӝ84ߛш3۱j웹 Cv`p>ݳ10v%%U'8V? _LHjȹ{<3&̬)8>'$r&cp{T`: 5cgP'vö~ak?|^ .l +>/څCք|/@܎FcyG92]ұcq6-.Rlw/# û º]bO~qui;X\/=R}F4XLk6c9 b r&G/Ė$W|ٱVW.jձ*]إ[/vI!-;*ޕb$7SjU=c;3Ҙ?ov$/޸ذ, +Xn}+Ra%=W.H Ƅ'NQ?RjjWr^\ Ekp4riӊ 2)I~<'yNGWJVRn0͐/BBl4ԉC6 rUe8T.j* w4eߓ(N*;STu˯lU' j^,^h71nFȘyP"\ֹ-B-΂d,NJ`/( +bAAdHyղ֯dۆ4fi,5L}2dZU%3_S11׫=W̽H;Xx:O#c㳪EpFIB81(rБ-6!Q"ګ{dwY>ey&& MCMZMZr4;ej\A+XEq 挄2r˲S/dSYlN)ݹINuVR55I4)I%)RCm|GiJ%i"ߋk$UNjr!ۥɕ,]]EBLHuW ]򲪣r|ը纯UUT +U+Wg`/*!mMVXE] k#ݳFz}IEDŽdAyZ8Z1~SIOrYSZU!ϸ\R㻤Ž@H55 IFJd$LEb<[ðu ⽉f`ׂX.omBw{P ޻bh'bh*6FU {'Za'|/^@,%#k& jU8"W-EĪdĢn+ºKuG|qXYĖ,$&niTUk_p +"$DԒPJ2UcLUjj:Jϕ:Gr#y<꒕Ȭ g*]FhI#tM#44B3`i M7-a *tfpY Sa*gC~mw@^dQbOE*<7Ps#)7Fay +믐 + +̟j_v;\y)`jcmAv3yf.fN5`={e!/b򥈥Rpq/R?- T@iڔʿ4A~kS>jmVҾU^#_WOjYQx?Vv&gR\)"K/ʥk%O<Xp1Pom$5qQ cXFTޕe) +SM4PIYhx>]B IϕR)51JjIb۶21 ocR P RCk(b Wovm7) + ĚzrjE oTK;$]++>v۽ c~ǏZZ}-ͥbbjW#0Gi%oFɺUh$/5?(G ~ŏc0$~b9EQ:_|F^}I;l 5wKa MchJV0E:\:Ǣt%B{ KuL/gds2y4]!T=AOI.?H+XMXPܥq>gA*KczM#c/v?>>~_zNo:ptp0JSjc &C0&51II1/gה_q0ބ10fXP+` -6ПPOls&\wV6= 0a&~j [Z=W^u_:Rtzme.4+k4xƠF +)O ίu/`@hȉ+f7r}!>w7%,gҹYn!Kktv> KP_ ٤4*3ZzCǪljjm3S/`R _Z- +N!Mhon6\[b6R\wϑc*=Vc=?jCZyF+n{>@NZ5/bF*#r#7i{YQǍԨ+ƌG(HyNd7xg{=Ê6Wvg"7*l.an ZЭ跔=Js'jvLbR53fg̈YaT2c?5b/ScSbM#I̯\%gˌ\}2|))enE1>=*U)@=Da)fn$[IcuhuX&L;by7q3qFzWhD{o͌ qڽ]iVK4+>B =5#>4`%ۆ)6ZSmD{d[1ѶИ`+UXj,m\Fλݳ 1g$b>ã0{ KHe K"I&L2IfLB&$$C!"ITBR, @!(}cVVc] +B_Hg3s9|/>X$E ҐcU8E5IsT@U-wdґ +G@2#Xa:Ŏ;BGYn;[ycq9.YK$_mqg.j]L,kc acSUU +TE<',ݩӣgFsQ3Lw[,q+'+yN+fNj?g8IK+MuJ,Ty]̈Qif3ȝ;KnEFk\mǽvo[Vr_\GF9ƱlMԀxꉧ,'r`fE8;J9SU3GK= qɔϛ\o@^o1Mfg<`9={4cVy+󱕒c}fCV?8+/n-xBRgT7\c_-or}'w*Q?_n0#b&w[I^+Z\xm&}$=o%PF0 7f|>xhA,BeVVQ2#*RzTVj|&)ԥ`- +V(!x lc 4o2cؒbی-͸"ۈ+c/bO~o&j`C5o(]k(FӜUʥWj֪"ͬFnԴnM=ɵ(zۚ\16&gJm<h|Pu<شZՃ4>\3 i7ѴxMmthJcuC2Mjӄ6ii|qkzCz[Qk`mD#hl#Yy&-)tS4s!&E:TKXܗ.S p8.jkaR3нAWe4ހRbc‡/L>e~>g|A`fNmh5@8 +q P`%:X>qBx_]}%~1%ޅ&V#7B%B70vޯեh>g^}~$%zEs`@}xËWbCaADA z,EL +Fe;{v0-[nrt#Lqjh8Чm>GulꖀiEP0'oeX׈?L0?gpjJU^lbPx;w@x#F7b;&"awQ\r㑗#G~-QXM7gQ;O-SQp2"G#q$*q`i9-2 v/kΘV#cak6X.#/a86`Cj~c>11_Cqy,$Ȱ31;VcJlYi$+6%90HAOPKL=PISA&ze?Z#tI %UoW9R2yWP~XaJy;RU496*pz9֧1ڌv d?}ѓݙCM7!Y'KG=2%|'>KL!rl/碗͙s1  ec [Do=9 V8PxWtS9ڕ{QNUy^ g#?¡3m>K,;&Ygɸl`\*cїyŸ_΂j +([ +OaZ p6¥jJ4 ꚰ>ªzB$a-@Sf4(cCO# 1.aV-EWQ|řh/΃D*.m^4aS$E0 u3J$a"?JE>Nśi^t!:Q%,r\pVhЬEv6VZk`n&AaԾ& EQH5咸Oͫz4KI='=駛qfܚ%piQ)CSU6UhԕêӣAgF&}F F@NZOIB[%*%qX'{j}񻋿UZLXj`-P:FC#j -1tBo Ag}Bcr:#w#K V5HA 5Їf$&"p|wHdꓰb | .&7P[M`븪oR#$32R$uHYjA\, iD"*cDAtH8MENLm]'{LwXǿ *pʐ%DqEׁ /BEyjMl`֓&8֪16Mn?H}~~=~_Y⦎%( )Dn(/WS:`ʖ@Φ%r2mKʡ|2LhLcx, W<$Rk3`\r2#s͡jgQ[ ٙek,3ƛvsZ+*Pb[嵅OΗg +S3`VjeSˌ[ۑCh(u:.:.Xn0g<̙+[F_sa +SyH1g`^.@Us$z 4fp'Eg  +m=E'{xK4bX94s퉮j#MCd;srÎ]ر;ر;h(|Ful]pwr߇ {)5՜ ݌>4Ap&B4hΏ{Hc_N`G#I#ůKuX4`;1'-cٮqux-tɞ%CR[1Y~ւ}8694.HbU(Mm™&>v ~fتnc8!;ݪu.4@W 9| -Mywt{>Sӆ#I? {YrU +nGL_M%݁{ց 0=&&OVۃAcYp drXw@0C̄9P eP`~aY̍;ټ' K==⭇܁uޔ_8 l4r9 scxƎi )>s]u ~˯| | \K68ش +/cHgi? ؂.c*Zkl7ң49Y}]ZZ9flAMOŢ:#WϚdDeo{g)Q~hAN^Z0UiEUUnE&herU|w+Wrm]w?<5nk0I!vßWÕ_n/*}cJ;U *4X;<1*J,{T\,POfӌov?)E]C)!*mU2a.mTAE5k)7Vy~7L9ɚ?^3kz7P2VkJ6Ҥ3J &=UjE7%gaz<+Ŗ7fn^ jzM9X=G(eJSF,BW(5x&k\A yOcB+%FXZ(.EQ6XU<+Ė|l%69i!]552{+w >4)l&MPjX&и /SJ +ج%E҈ CE#\ 06C9,{rhaVᮚɑJ쭉}5 5D㢒46jR'ktQ@#bjxFOCcNjH, Q-נ\ZZ#mPGjRRc<5>_b5&.R)qo%jd%ŧix|4,ޤ5^JأNh`'P-?<*?we1 $n "" 2,0QNHAA(MqZ5q4զM6mzĸ&ƚXa9}"ΡlX?m _fK1SU@Y(/ir'+; ,E&C2 2UZJRSdHPR>%RBNJO %$HrT#,g= 3 +boeȜ6RpeE+#=ItsjLJ26(\MG'qA;Nw(4bS:F @QU5IVcwU^56=VS5Y!r>><ekzP +)iluOy-P0yڇ>+7{4>]5o_pS$l7SO7=ϡ~z&j"9Ff3A(h ܚ4K}i~i<[dZ8ZL-P kygຈmlyh*^/|3Xs"kĚC 7IÚ%%m,1ϵxXE# C N01ҾCP"p8iFjz͚ 5Jc{Jj}?@?6f p뤰;YT':ppzybFcI7xZZ+ow^BmxBP\wFzw>{pbGs֏ ŜC9VM(gU8@xuq?Nx;AEquO/Nj[9WuqN ?%wŗ̺75f/NLN>V 1,vb{%Ө;[|;xR>prWJU}s_DщTMNΨ@Ə7𣋼:~ŏZu[8}D|E Bm'|.85go-/(t"шZ:s_lخ|l6bsll29=قldsۮ"G'#$:D b]Pr\l.`w,$ +ϓTVWUD̮r]9 ];A1B9 (hr4*Ѩf,Ry ZDd+G#r"pvrԾѿ+`ܵ^ Gk4:ıT-TiL\Yn0˰/2,3,31 $vcxKʭk7V괪*RRU~V.Q*Jc;R{;G: rq+YȦcn:JFd)ﱰG}VuWj폴~UeZr6f_T=/F|Tg"S8%S[K8]ͱlsrx[}嘽,Lr fÄce.vLg2=&> 1,wvi9Tk%?k5t2Y$Dq"nG9orj8`!E8\IL&1B(iK{SH9#3jJCq'_vDSyʝi%SK,'r %pj6iLU1݌2ьQfL4-0`tݙ2y_ d2LG_d}>'.zi{XdU˜jɌf*3Y&w/4i'p y-0ws_c=om)]Ɲo6t=&ezX✖.kߜ,ȔjٯZ͛ٗs J*fwa=V|En+x O=ūt?*%o^ΒVGaֺ"tQޓDY3%R=V +=xz1{GN]a92k=c`~53tRLrH[(m $`H#Ϸ\_!9 +}ue1ӿH4)$(~I$ =5XE_Z#_t ^}Wt,RT$k$S @:;I Th$9")Obp/ yvOL\Mb&&+#rrC|ǥĠp!ҮZjBVCq$Y!6BLaCSl aTdo1'"lgqHLݢէ9(Ji+"J_1uBp:ع DSbsMa}aܰnBywx fkf?T#VJ٭aH=Aa+\89JI_4)ҟMDZYXI׃(ORS_US[Ƕ\[U\=%=@vP5,O8"Y=%]6mzI0H_)K0l>.wR )ZL-vj5!/Cp'V54Xք,(z۩g C|D' z "9&5xZpT% -vz'57` BcㆎS}&Tyi0(:5 : HtRwKc)j<)^xrS긭Mz[95YiGcݲ9S OkI7e.5ӍB 2{2ceey(Kk]XXXv]`9DPEEE-}3Ѫ68ƨǚ&5UcըʹMG϶&iLL9l?qg~e}yG㣍 Y&FaV[O?r&4ݑ Cƹߢԩ~?pҪ 'Ki.g]l穋 LhݷS c)+C7`?vj $ur.{gxhV.37kznP7I7M;*D2f;y6U+6S|}.UXzM|;]jsrE5zH]< t9}" v@ Z3a,tS|=t}M>|\sOzO BVȆB}24FQG@Ǘ9 3ЕbA\Ru!u>}p?^0zݣ׽C.RC('~n>_~fb/%||% +x6Otk?Sn)qG>H^WBԟqsϨسu8Mhl6uF*ާVc%>V2e e摍ϯilJfSQM49αͷhf x%{Z1p"ơ4-6o,P +4jИTmnq_x y-5+8{wn}W0zh%KdhVWfvWc!޽LӺR8MI~Tc&X[Us<1=/gjjb(Gˋla5øph?YCif5iJ_&U}M (Q]HѸ8C5 TFU[UWo<=ߏ2pFqZ#-93#gjҔ>(BlQmp֘~+~e_UC,dlְڪ!T~q >O ИUEktI"2¡9*PJ4@);҃i Vgd(͑TG9du(9YgdrF wAF2:)SB}ځγ$:P^ ,g3_Yٲ5(ۢt%ggWk̮*\Jp5fuoQeEຬ(]EgS WgђL1P%PR]e`Yr#+sY<9Sg<);S2Ez7+;y*sIaSDn[X,4&rP ^pV,o4 P!2WdU薡PE#Q4NE +-ZE'̃>8dY]p9dj FEvǮ"!fRzD1j56$HӚ1ZsL5Gڴ4uSv~LLJ=}}}J,}Zҗe-=/kMي\!iZP[OhgJ(~ԏ0h.CM& lXoӈ`]~񣇋5顸{ ٽ ]k4N>brK $B])f:[`ki8`ogg~rr9H};¥{Ev$9P,z)YJ\BcU?t-=7L0cQq-)8ť|?ct$`]9sMxB@w~DŽ q` +a2B5XXQfezE|^&WT_?xNDH x&@QGՠoLNי1]e +?>Ǐ?Y>c2D|oI9d 88>//w@<)3̤NL ?>ď0՝?{wgROyN9%x%cd5^ \{%e3)/&.lخlln应wEVوvϓ:^<@G!.b(?hDcy2ĶuDڄ]?Sm+_qх*?J&v%} (nC +D:\fkmt*t3zs7]/Rk3ɰZ嶥jm\Lʤ"iʒUTZM8K[T`T}wj9ME$QnrvJˤ3i ƗR-gE)v8T:Lũ#5-u&0PiєA^MԬI_ ەO_ kx +G҂Ҋ. `+ܔ9"T0k#Qi*7eyG(AuY`w]`e]]6xM0xD⠉hhԦ:M4=$ΤvI۴;^37{y{wiJ>SMM,)O"t]-)n~]6pDo}=׿%؃ +M|!.oNP9M1#U3&_,UVSSE嶶i] u.XwzHb=xpgيlAS!|(^UEUY\QYM29m^a,-<ٗоY.e|9)-0pvӍ*-M0 &]*pĪ̑,Wi*-5,TRŮ:&5UW27j{/h*u]9rFc3e.KFB|P e;GYli*.RQyVe(S^&OF{f)ӡQ]FV>L+y>FG*^3T͑[|oF׸[SQ5SӨ|3kWo2|ەۯ4 \UZ FoTQ=Fh.& B +}/P06Fk[yoHCY2uLRz` XmJ-ocB2)f(= &rkxȧPPɡf%*!BCC݊S\bo+6znڌ5]0Pp]W>mĤX6&*%p¹J[4,p(.ܨ0/6&|f,4b96Dx5ƌ@=|mA{D'Rb45AC[R@pDT#EMaP<0iBSBca<}P{{$7eh6ugrј?v6ʜMncښ 0mx9c8GXfH⽓1[s)V)m)nql( ".ɣ=åM$wc:<_O&(ӧ &⩒iX tSK(kRˆpp [eg%yt2'9drcN/8&s-[ֳji'7UjCm^0}ƛnr ]"W4y&걙ztG7B=V6,Ԣ\1ovaM]QD:Ro ig3tt:~͍[`+<(f"$#I̯e'{5N1bhof=Cc@~ Wad 0*r޸ΞqM&:$fϼɀ$`8dA>ؠAd,-=qB~#M][}wuO|ʯ~g ryAXzEa N +n2.SY4yy]C4b9eh'{̻Ja,#tZ\S Z!}5}L>U3 xG;h^ms{V3]8 +Je|INS4hTO[}?#ĞIybZg)W*7eƻjArz}}Fwㄧ ShGV4\ԭ~b&Tb n_}ث ѫmM-v,ϵ'`| />g,ƒ8B-^T*G_L|7{٢mӉ9:w [iɨ Fܤ`< W;k,ExNT2yg?fۈ_FtA7 +Z9#9NZ֓I:Y' +\9yv2È?#KBh&t0UjgBF5׏p6XfƱZtR'e]o;v.p8qNlp9&MNv-mvJWrT+[v h5[@QZXA\1& +  +!:'}<_+Qˌ7ъFQ4$M,c]OxaYEVW^eN{{J;Q>!ctM:^FݏNtf6R;Iha:fmMEQڣ^C")RQXs< +uM!}*FjT tj"W5=dƲ7k 7,jpV7PE,+s_ܴb%4J{JCvJ.Ym\)Weʘ&+W*ߩd~ +Z4ZHAD˜*@#S4hтk"6P:MAZ]ƴwRIJfa X<1ٔ0974dnҀ9~sb}kIieF˜, WrFAeY*]YzJ9ZM `<ĉeȖ" X-V(b ֣.:c +7(hߡ} +Skj.7-}G\ܓ<:B %CYXc)O/;Qb-SOYrʫYVI6+^UrD~ǤZ[ث&xFNjr;^Ɋphƒ8$:j0.kQmRD5jq*P mZjj9Ffy|Bu|A5WU| qOPٍQ4` z=^0>Eü^P.Z\jvW]/ۧv5GT_?(g\.&9=A6Á23|43 #7964U_.4&ab1۸zsVW6t-ribAL"c+ǶDObIcN9TYPs46LJs;0c`w^@nwUf 5V1!a5&9f6Ԍn&لnތc+Z$_-xIL|1yyuz8c}:`?GgisyǼO& ٷ=0ۃ>9g4OdNi8)<|.[O+q8O^aX\ūÚRZ#u}g\"ӿ30+FHaW MqM7-:uqSu_qp?a`ә>^h^; s͌I.1_^ }C~w=ue|>r,!݆!ytVLX1K/W[e2c̦Z^ً@'~yy_=ͫ O8v?;NDZ%n;7zImvݺ6[E֪] Bҁ( ʠ*kT.T`@`m2sQS>w{y+8!hn X_8wp@7)82}]c^e?̫ +<߅o79|NFb-COoc\#Wp9/|^u¹|<~KhM^#80lO1|e.c_ރw&2؉_3/^P'=C%i/pZO~|1!} +"zARBLy,|>Osyx4c$csyy0;G{ W=hϳ<*wnY6e6NY]adZyN8K΋eT/·df }?edNaA{)tg"֣=Sqy9 ܯ3 +OTnawj~ m+'`6@;vahO0y$>f{;{n2ŵSϰހa<_֜B~c7EE]TK2/{]B?J5hgI8Zrs̜y)u&x"<参 ǃ-hQt1"Eo2KnB>@6X=GRff}6CKc@ ZbKI~hyYE6VhF~ , )Y}E SQiT]ILkiS;,>Dj+>V%%9ib"6N&!ˀXf2ez˪cU99Ty:;QޣeJZV2V˼jQAE-\RrU!u9Eqs mohn0*]7t ԵTiU)CjꔴXSҤZnicƄYEyj0*h|JTgX>E:'?'n݅=XK۳|ý49u_;-s)(WaQV+TѦhEJgάkpnr*[yZsrW^Ru pSngN5pwoc-u@[>C )VB.1WljtU(r+RW:긂 +ܫuonkUsJ5_#9ϫ}*s:Ļv|OA?tbqo&FxL +y,j+P[ZޠMyu7)6U>(g9|'e="|Ruޜp-ĺV|e:^$Z"s~|KwF@܁rҪ d%"#O Y_%xQgTxSJ}NBw3h&hڡ{Pa\a.UF|rFBt-:'kt,=2GWY!D.5Wi8{ 5سly Cc~;7zUSr cN1d5OQy|Lj78SEc*hct U +9?ހڣس^V>7CPǵIrag+Z +eʖʚpȒp1xiE%ɔL%I$1ILY( IpB'Po+h{$qh~\r߅uc H^"sʢ!Sʩ%) +S jV `V4NaRRRl֝Iّ]hϠņd6h3//LH/S/9t5Hu i࿏{vw #A<0sqsc,1|rl7mF1f#+>i<>]s 4y%lH*P_rsN0+8t&ܧH()^b)e`.ɐц?:񣛜M'х.;q+\̎ ')'/aS} 0Pc7!g y?QK9d% .5u!}0klVO)^ތ6)`{`5=0XI}ƏuaK}u\kWr@nzcyGY<D^%-ći 5M7a&X90Os6&j>괟d+V곟Xl!y}K؟6Sϟ!s=U|R</hr뭁H(!0 XBqaC*5?+8plI>| L}_cuM;9`ͅ9x7Z}k -Ǹ(dD\,FN?#'')3q˥|xCulb3׻Z>W]yD&Qp$ U\0!Vs%q@ϓs ,QTg~)!ĻeW9IнFsƺFA}pC&k@&0@>r0u-ys% kTmr YWIe{1܏-S׀CX5ȵG6(пјwUH}r:~\eM! s?ΣijOZ{$U1#1J ]v[>_mpmu })'hЗQ* 8fy +>=w$) t9Ïa|$љY;6f_)b 5خǶ&b{gbx O)5dt;mG/Q'*;)p XUf{&wѺИPn.NVjd ~E=Kx:\?דDtO`X >-`U2K@ +\gQQH/5?z ORz^Nl߰Ǩc~g;h$i= lYnl WP:l7`{'!n-n_%sŃtAzDwm_P|ت]>`tdJa7#u:IDQR-4,MGZYmbÛV͵ǐy,G1C,E'9 'F;5:KQL䥅L>f2H6lq~+93=\ssAOǾٚ5E^8BpDJ8jnV_D*P#ĸc7|8V3pw1wG6Q)pd‘GnRx੅M؟Ld4HR1è:g(UW^1DwAýxK#>6s13:mԐ`ˀ)𔰓U W\ᚈxC v~nw]Al}`hi`, Y̹ßI)&;U^U'4$yRTRLPij݊.V8uS_T(u)G9%RQ}_ι_m>@xV˻JP=Eՙa2åL2TYrEm5WEA{kߢ^y䶝UrF8Xʸ HjFJޗO4:Vđ,Y**U" 3X|WF\~96>>`b:ɧ20ہZyVJ)7WJI*vf*RRY N@9U*!k]S˵HNZe^+쮳9ALk=YHI;cQ5WR> BK?/M< +*ϗ'';A׃AA?L pew^g;n ,$$\ T +D8V^Bq2ZN6#2Ң >q;9oyn'[鐫%g+{ ]Il% +e VP!d"Z "8<<]LpUq-@ԉhܛ_! +c> ) $Uc֥ &Sa +(Hw#)<as29C>q-JFP .~1͵~L{ MHi 4 -JG ll+@5c`*o >40E70cۭ +W/pdK,1!a7fF3bll m B&xjG؄;@ |Ro.<)> ?:cm9&'4^6O/3JκsܺbCg\o3@jiy\g6^g8 9@/}o1DNQCbwD&AzkN# -:Ncnx_`='d62!'#FW?r&eRR;㚅ͬU[uv ~&v6IZFPI`%XEnE㮥>yl>7 ,f=F5\3KTh\5!%>擤!s`1kD- ^[csX|0>CMlFY} s$A n–Z5d||X`5?b ߝ%b&&ϰo_`aM<~H{xy71RX:8{WYIň%@#_&A%WL$u8xWXQ>8B>0uUJ &^pKd|G|FwUV3]6KD_PLpoFp*%U~/N )ڇGNvSO8jQv85mjd+~Ɵ9D!Mǧ);Lr+jOU,U*.V_ZUbRmP*Q!y7^'q~&>@^gUcS;Y))*wzT0TjĞb{*tT(Ѭj-JsHOU/Zl( "Tr O%*HV^SSSI++5W0*7BMJ3:eK1VmlxRS4Na\ɑJb1ǐ' A9J@!%7=A9$e(ϗP&#}cr?8ʫ +o6$,fwI6l~vIHBH&@J$ +$AkJJJRZjŢXZdZQt:0VvږaV;0/۽=s}o +|ӷCyd}Ke+{y3݌slP⼫`M2|ey*(!Uh+ت`>9ò7RN-F 6`|KZi +|A|lr :)wr(4KP +Q~RpBpNˆ/B׏܆hDѲ!|PNc%|a#hpJF0ߕKżbxLq㤸Sn~ǐ Ѐ (%]%\a8g|JHlHOq4di X65|ՆoexhE0W!Д./n{y೎Y|< scZlŏv0 :rEE0&u٦0k@3nIk%e o!ya|HsvB!'KA#KYd>`]*Y Ճr\tuL-1GlkKx_ o8I/9kA!h.\c 2ꄯMS~w9Xeqrđ&fNjn q/X6,ao=puV?&kyGC&g3dL(9!Qjgky?ۇG>-})wžk) +!#6ko,c\ɊA(fC~yCv&ړ{OK߹F*JyW=烀% qe#3pH\΀j<9y{@&/|N:gT "bc|'ku4Jg-_-__߃?[mrrz{ҿrGQ +-@t%"}v̨N|StLF8$P3\PEM/3y^b}"3ɹ#LV92l+C +3l3ԑ)eX%x?<>j* + +-tL4&qXsh^x_xONjqJtR{L(P&˽v+p^Z!3Ne8qY Squ sa(C2M~] +{mf{Lm5:'`6?)=|w|_APŎL籟.Li$_y=Bz?"kzDZ}p_!B%}'] J)(<5kn tb#BŅ9!:NwpCȎn$|_)nSV"xfO*xlyxH%k7xxSspd;I쯇o9r8+[@ +ԁ8cҕhC|E\ +;{Tn6ٻ4wX܍*ɝyyrgEo/(3?do%3$$`BH@ Ud(Q"EED +TPM(Ȗ-Z""Kw;=4s3_sg}ߖ6(M@rAk&Ь%vJ^ ; KgM@ úZ|u9I<9v,}l+팸 O8:C_ mk<b$J.!)A-A&.~OHtOHZsѴѪŭ$NVi%M["VxsRܢx:{u>4 gqYBzt}N}.ѽzDEģgq%+ġ~ŢNy}d8/aKbrg*bNE} +A3A "M~K[4[<~M [[%VA[rNj?]༆ey|1G@(h`*]S@K!M>b Gs)4 N_(| SC,u%7$ђ4ų `6уv-dwCaآļb1a11NSaȤϋ8!5F -ESw':{U!<\>y0?*>⎤3&C̙",\&57K?GӚ +4JC96g! -dSCI23!rm3A{Z"%I cfqdZ$-*<|6xcw!^"0Å("qkNƤ5!96"M%3 Cso#:24s4/%RLZJkM[f +ESjhrٓ\gRGB %xPEWjI],-VI^T0 GFZќ^IRkA#VN,c.'ZϕW:g/\hL1$iRUkkuRG[bNڱEAΚh˺نTIn}Rɻ@S3$( 4[f\" h /\4DSGwΆ݊+yލCF3gDv6gTT a[>u 4UFhF4B@?hI| baX_MbHДt%0>BS .z$f*|ըj@8:FF0'YPyH`pΪ4M LH9:KFf T{|jHh#OS4puddq'qm*i~RRB7 ೛%ljۛ ZoIq@>CRM}jP~D&%x8(D笚|9*Ŭvh֘Ws/wQqN2,AI5F(SB)RV$M׍luxUyd./(ǘn+ДЬB݆j>׍l[ {T38؂r99<cBvOUdN[`(Y9y +6izEqe-Z^Yqխ暶U_WݱSv7٫w8vC 1r17~¤Snco5{gκos~?.x?.|EO<䩥˖xz3ϮZ k^Z~Ɨ7ymn߱s[{o{>Og𑯎~}Ϝ=ϟ.\JJ]IYWQdg+/RKrR+kAݔ7) nƃe-ʅpa2b"NLUV܉w+3~ܘP~< y G+K<Ô+/b:&e+8fMy[sP>| T}<:I?().^J>\ͻ%~__b2lvǣaO G8#1<\|LҚ7?3' t뮶;f[mq&O6}ƽfϝ7 [xe+.j[ȤƟILiLT*Nhj~o'G~83gϞ;w?]pƶehbm֮-;zW_5a3Жj꩛sӲZdOG. 54PCC 54PCC w +u%^]/9 _ԏ-~kwe ܝVOѢ'~HPG VFծ=Ͽ1}C&|ww>/n{y /Mٵzo.Ѳ{_d'װ6Rk]/޳̾{ttp|gvzffgi;fiNд2/AoF)TLP. E["-)'-߶g/yޘᎀN"_ +)Uka"a>W~ՓĢ ?J!&vezzc-̣>$CkSFkCe\ )j3J-)|ʉ鱶d(;nZs>w'C71}fDmX4 >J6 3O;F.^hW}F]υ +{E"f(/c`4Ѭ7h^!}w>85KhʙHAΡ 5.-F\ |{Gq{im=/ZtUppdK*8+#KD0 +3{717@AoPa.57d0~DK2qH9yBCOmHLU1tՔl2"8dX2, K%e( %6@du= +םj^A\ˎ*$,!2.KGv[=ZP +$A=]+#zw^ XaF*bZ*SRD &^\4h`C͏@v~'x<\վAGi]8^@(WI<}IXA-edYÍDVa( e Zg:8QCHz,I^PQ%xI-02,탡2Ad jk.s[g-HQ$Xi}yJ&E|Ne2@ZFO AF# zw/؄9Ќވ0RYeJ($9J;C`M􂜇}0 P/69&Il됼:y*LYT~?W@lͥt%SYBfaC*Pn;ӑW_ހ}]M*'(bN)%O2qbzȅ)}^KgX $'mo N_u_q y[r=P"fUdVp=!:qܴ.K``ZJ s^9z5-&i *ઑ9u(I#ObDQHnƖP VKE2jVwn '\G&ǼԲ֠m0NJ\ɰuUH Z %4Y@" 5Pog1ip`䉳ߦq/g(MEɱZ,T"V $KM2TjA})Ï9;g/(Ė>Ȝf+Z5b m @92v~ jl̆q'G%7B#~̇ސt& n磛#XB. xю?S]1a^‹w>LpP8:H"Ol@H4@D E> Eߧh x 3{ =p~@bIb)y`o%65~) +}OztGr( yĆ_ x {L|@mT+5s7*Nȁ3GR]xڅ)|9x^d\ \dyb.pPdmkkm_"8'q*)c{&B?P|5 +b} \hXL35j1|%/h`?b!4У( ^@9 Sa6r%'Pb 5A(=)|FIS|F!'AcIn#V4jBkn    {C.bE aԞ=ag*"tVP*GhHLf)sUQ͚H%PY~5[y6V!zgkhpwK +Ly}\DM3 3]WdkijJ$#d=U$yA +7B-P%P_6`ׅ3$}N+5AIL62U`#%yWFSE E[V\Ks2[nh`ԱCbx. 蕽|Đ +Cű-NV>ߊ=jVy& ޠe=ή0ۯk@G +*h\̰O^LA m(U42fwO'pxa0|YPa47(t%1 Ο;\0^vwvgԟg oB l;e^cdUd ~Pb07(PfG?^;87rzĸ~_|)8Wх5SSrITdC!b@ As/=s߼tD[gnyQAA$LN'3 c8FBm}.)u#=g4b4~noUc[Q8ܾMYBy͇fBHOI8t8:K + |H{ȠLdT}ūoݸ\7gMӫ[e`Gp=ϡnO"@EdYs@\4yjlflV/o.=ٴBj:*n%}lNmg[SeJKn/T^P@QQQ@@PA/],YinmyRؽ +e[ +C>yE@)H;a#ssEfKϖ?,?_V3|~lEfAx8䌃XH?Br_({Jh3[^^0_S 3`p^AkOot7$磐dmÐА +P+6/ +f^ Gp1~)$T1|RB.玦TMI千.YoA777SCkCɦC ?#4wPO?Nfo0qZbNYLn~(VbOKmkZeu8MB ̵Օ??#Ȏ,kNDs:#:'>V\9Oe t̚R2'L掞8Nhmנ镡1!?mb#~GPqEfV 7UO$K.R+ \f9\cLu%uMXyߪoNhkGWF 5Ak(9ԁZ$)93Ε4RfiNb]6*MZInAӉW2v -&Ġڷ6[ɐiuL Ye>3YK@e6rU/"4 SjbMCb"5b@ ЇIUBEI*w:SW.+Է[i>9Eߔ+UKr7Se@p^*6A3x!Y!,!*y-vANEM&ACӫ cuԆnvC$e^X_/.bm[rĠyb g \)ƴ&} IQRVmz;hgyn46,bhغ ;WB;b>tv/KWt:A`jNmg\}CEŴ6NΠ7Ҥ}4E111t"/,1AaO\4FٴC AJd2ȫ(8Um3R HaD ذ$[n+A? + cSΙ# ͺvUD֜Zא )F/ +(F;Lj! +14! +rfס^w Y]1|6QHUU5gvŹ=utsԚSͳe׈2xRKFEMP81H|ZOgk15zq4`.dzXFPV(3Kd&Z/asbP+KVPBCǎOf{~4]=|RPIZ-` I-|M)z圾ЂxME os?߻IocA?c)ґ]쉗RtIZbAe򺣕EHE)B)2*AW8/1/o\#=s#ǒF#l{t%/NՓ % ʸtM~aB4|}MG 5 qtl^44ra8((>' ) 1tIDIz*5+ @};XpgӻG\^km'#!_ٴ_DTXrR,-s4A8K`qqY9UX[~M6®QUA۠]tw \ԮUGg<6`**9{".#u 7 '8́j');m{k&h ho''DX_A!NW1K)LY[FfZy on: L㆚ P 5ۗ@+@t =  򆶤YIVS~AƷST*e\W;^^'cF:/n΢wt@s[\d FPEt$H3>eOsJ0)/(kh@>Ӭn fvhN1{vgo'h9_ >u6EgZcin=aqWu7h4(N~ ="l'h0SFI721MGMl/ 4d`B mȠ84'<@sgV;5Q9Ts ny*rQ(FRiھ,&#{ZsJgK|ݶ ۷6@|ftgB&'=TeH[H}U{˚6˪Zs}I/S9K 'h߷ +T7P1!O I=;scPcƪQm%WY.(IM7ـ Ad|LgGX"nJVx+9J%rS}Zd5LV%THdHm/6%^AfdP] ={}-*[[|SJј*9(#6a"[R)|Υt9Xe*\of{{8 o@eЅ փos{Ȑ選 WtEi2ȕMe*icAfa<&ZOki*QCP:gZd`"/zn߽ʯ'mytSqф̚t^s4{g%wQ5g,lmEڬJgd୛ m?gz݋NP*|3I;! RʼnC䖸 5mkey_goMi#֊NǺ_ъbZԊ"( D K! ـ!!@BB "ua(nXQHU^h?ܿʪ@-g{~o٦w7iaݯ'^ EQG TŶȟEa|1Hx]&]-E"͚`^?eܡaWtLmqu~)~?;I _)OԄi_hY=A.3+ݑq+rnW-n/^2禰gl}'=$qϛ2 &[ftC2.L?+N +z*)ShSes s +)[+,vU%8Zyps T z;v6ُ.3 -#0l&. . x D ꞏ|ces`"5^Y{JOD'"E5 2p!8 ;Bq(7n\v{>F+,Uyv.5ก +.I- +vA@Dl 8p}!:.uXb,15(`ռbYȅK2Uw ׇ _ yC7^R@qX;o;w]8|6s\FV[a4,/Aqp[k=;\ȯ f+7@!H26:C6 pm mlO +8{q\ׁD!P@rԣag +BdIR&ԉqMYϢhc.ƓޜG{a87Nso5dX݋`J#o;A ccx⇿LNHVvL7(I sU g F3LcL.SITS󞞹's1{.bXܛ|mz^y3-9D^鮒d L4T ~m8d{嘳@_h[;V'(PJIki)%F'\WTonuwWIeU'z+fjol/c}I6K m+ΨU\f\VnFeoÅwE*I> fh:֥ݰ˧֚.n&(袔[1Z(>D$h $k+{*%KGuS[o{d<5mq|셽qj??gpzB9(RF/oeV[׃ZE-M]5rI@.i' 7crk]:_Szp؜q봋sd 2hD Ӌ>n_ҧʫW\[1(\Ax*P& e~Qaўw5rr,` )||dh2e"1!>LpW1CBzmM><\( WyPzѿdf--hxomP1^R#g¦iIIVD6)/D~R:.rЬ,N/TV ֭],[y +)u߃'/RBHoƒHgyQ0 +L=ED] +DI(>݂]+Q[W_M[f1-cC\ÿDa)5:6`5\,+E$Eq$rV7z߂jZ'W ۄpN%4X`E3@D߅P Y &( Nv /Wm FI,ˣF9"/*J~ ?*\8 'C| X d}51RL܁i k|s'Z8B$1"۳ uod8:;r8 8DC+D8CN@;)/S~l ZCDݑA5"*{&#Ud8p@>3Nl ]80 {`ma CVsX@s`5Qd3c&?.n)TC*בֿ$\)/]N`,w[V6/SW1F@g JUTC4$"1 Bg $*AHP ' `jAj9H7Z $d;A, Q^jC>Ak6*8$l(|g<59jCo_j@nEDioK 0W, `{kX3_*yBJZJEZ n $/F.D>y;5?5HoCIH>,1Sd{jC<, 5ujS h5<:y)!j@Ky4@ݿ4$ig>3MM$" q:y;*CaӇ,.1ҽ?'qL.\|Q&$NzEseP ONM%O_P@<Ґֻ<eh@!Z jYu&o5C\D.S^GU$ͅ`̐n1p=pS4\:9x Va dYˤ~Hg/$'gK'd= iN%  t=n?e5&S74!i HCJ9@ї^\Z;=z4C1O# + FI%>aOЀ~9x,&i<4А͛lG68`H7K +ANmtaLs)JM + + +.QY2%Y")u"bb] +q@$8@50Eڿp0̿bv9YCu7DrV,8dI6Rr<ĵH i(ߴ׵G>trÛV/,أO[C0L]5SI =V E fKt XBkUSjOL~Wi_  鶅 ^9k>=퓝#ۃ͑QqMzZA(VIXb>Yʙ,uIr- RzV]@j +齒B  dW'`#g! ƽßo=UǹC;|{Z#"[o]MIjRE6') oTWV(VX5֝U[++h(\Aj|l>m/^7K>fs,ؐ'NYJdXʮK2_f dzh F<ߪ!zA=P4;A%r@Esw]kЙM? _p8#,-:Ym+jQYņ<YK G*hez}I$jp^ixo\GJ9t[ivO=W{y{7QUmqYd +݄/4s +b)R$Ī8V}pKsةUu_8t#Tov4t_6=sꋈw]`X ҊsdU4a|S$$E#LMaT! LdN)σM~kcK_o}vvo8~,x8<⻘4j̒byƉ_Qy"Z4`k0mz{i4hހ&ǁqܵy 9O"n|@F 'gR> ݈6fYM\d2m&Vp73pp,gnWA8vx2 5c/OOp>D962{"1>m"S^gEYQϸĐ҂z6 +v|yl@jGr j`bCo+ o=]ޜ3a93WgC3"㧉1ԸkxI!/)uJTm sE7Cj?EXzf?l^s_);xًٳa'fKf`cfKʂCgy!$a~W}g{e(]P;# Q7la +8 +` xd( yBr&gp>;~`}juBR*G!lu))6<קix A;/CԞPH i =H1= bPz\Qoh<-^(eCUM-tZ':-"%,X8.λی-~^m灴\qJw֮ udO~q|2PG( ac>lpNj2[Ke8vGEłH "BH)$${$!H*(( X.l"(3{9W?p.Y{ofF0  dI_}Rb/Wx"xW]^ <|s8ųq0}<Nb8!cVx} sw[1,b]YHLelQuҬ`ZdY-IVQ¾guDY@< ␋ +_x:[9pˣ!5Q-e'& +㤞-Pq$FDk +(ܚ|9ǻenkxn1P` #|"Ȝ̍j]w{MEP[[L('1F:רgKjJPER+.4ŧ3M7XN-Kt_>kDP"ga^c'qqK>˞^=SgsוGŜ*OJ)*JS9ZSXW +tr]:ǐ,ȣ+*,4EC>UuӜХKe"[q`/j, +IgMk@76޺|tŦڳ1ѥ|~y +M_La˭LQM-àͥXL$}9UBȹn&;t$=)Y-0epD`anj{9vZkgoaGQudC g Kv1[F?!RS +zdH4%Y0aN8u)H d9s8g[lIJŴ\u]I㚚G1hhjsP+]ռ\}xn~sDr^G{TAPI =uz:ڬ5>tk7ͤ﾿Mw/uk zDs7u#)y)6YAO9e;푷T֦P{@!AsSwZCRs?U O>Rj&;ߨ}M[Z +W}^w76MUK,Ց=8RAbyڰsԁ ֫ uTqZV"D '(`A^Iyݿ20duQ琯UPi5w["I^OjfƵ<ɕawY9*y;zZ]k^wiT4لݔxwg 10dBVI۰ՙ!NG|=xa~iw\p7?W^)m,m*m+w4XƋk/ TA!GRpn .q.qst [q3c>VFn=RRL{ e"Ibw:C/8hΎCBh$3b\PpJx֮CyK2c~q_vdrT]ptInpF"Sp},t66!l"FMl I3Ff9X!AN{H+RƍQgSwy*wlHڨTG= cpsdX"[,G\Z $7@t6KH  +/im>MKH{ +D6XkBA2]d (["O@~bN{@i 9Z F?x9 ϙaciǩF9ݬۜ{1HH@?!i&Ri#g.Qi@sTnBz!<y1v> eJ ?Vެ#Cbhw/e=(}z,~L:%|HŞcdA@6}GnRŨj=˱j*n_J2}rcf32gҎ$MIٔqQ~7לG᜻ vfOJsE]Y*HPkPNaZnZweCI~T~%c"7*kHNT$Kc͢ܧEw/ sGxvt'g@B6$7ϰ&5oT#G:i)E edY$oH I؄ld)C@+R>}/Ç}07H^0iƟRO~O$,i,K0)QN|BȢ`z@`/A\$%%!5v_k]7t 7S.lt9nF f=ް|܁Uǵ6[B!ڐgiznT[$߮sڀxoʐ8dgWos0f3iApZ@bڢ2Mq? n.a~DX+"UP"  "d&R0 w~T]sJ/)h +k0x QbF-&*E jQQDkbaĠ8?R9Q_3kỵ@` ܦO_,Z_t86]aɿe?'#a dëcV[L:@?}b#o$`W{tC +5@; A_m@%kPkj~CfeK0Jjn@A((g4:I?|kXyI*x $%Rtfffjj3Q*jS$bZ\uab'q(\} Tp0zSs( 2A hBmT‰c4탱!]~^qD:M"!#M)Xag +'d&n,D#fa$ȋO0K!G>(B'j m6s+.\I9MD*9N` (7Fx!$fツ^kx]2_K,GT-t@B{,Z_]$$)\Na8XE= Ìzs\2Nl숄^ RMVBd2ePڠfV*`u}P\\cB瀿<JmQۂG0ց~Ӯ^ 7Pz<^O$B°7yi}>Ǎhc'|>B':8<WC𼍑2M0,؀oNXׂ䣮wvkʯHH|;čWH^: 4.x#=h1, -GrR:" `q'yq~=@$= &j ڐw c!o& 0 *r4bY0CFsȒ,!M[t=NU")3`^D`0~폰I𱤡-YI|89H  #D:#eDN3afȎ\E%+!_q U7xw܎ pN}!kH) +'c-uh&W؁/1("B`p7Yke9⬐˶ETxATGLroc?KO~K RSS?{i_c#:u6ᐼJUOjoSp +'r"Rqΐ1QcM#)'XkF/%mG{~B?d%KD.vX5u3Qi`slBE|q볢0H+z/}+K~?Hcd`v1n O ?dh=L-6kq=NƙLR +=d,GJfb *`[%ƶh>U^ذl`=>ԧٝG0odg>$nޤ__I\2s)pFn[lu4v?5c5vwֿ) eG+ ˙%5oDH:2p~LξɹΧ}⏰O2t.KC 7:y, TzdVG[ʾ=VF9Pis.)/w"`8P#~}bC:1J"n!ȼ=sSbMsF])c~.SPnrn(W%3ʓNcžQ[=T ,BBxyɮht9e5hp[Ԋ˓vja̭J9jsT}vi.|oC#$ +$Z-2dAC.q {'i:&C D,{ږ^;2(+r9gJ' +*GUYs[eu-FvAdOse}N6V i(&A;}_;c䰛p­s}Vt*YIVe˯W6嵨~[TsdJiujejekq@H[2YD,%!iAGF>s:jh[i~W#J:Q#gW *J-eٍŻuMj*UgirYB?uz@Q5B];sk:~#-4)A)ԡZ I - +*HDP]@?8*~Yѳ}ssv: {:,{~'ŠBzjZƲԨ3Y i%9ՙp0W(D/D)췉y@4!M?a{g6-—KR.~4qj4h^\:Y]_^+(.*N/gd)ŒԌ 񟱒@:mCySn~c+ǯx`q_8ΩZAd +ёTaiEfFajŜ¾#E%/KiG $I;8-88 w>\/~e*=3rpAO^?۶[cK8!)LjFU^Y\Q/?//[>_LRZbٛ$8I rԫ⾶oý؁{q{nvh䘽a^k]gOhV0qјĴdL^M0TWõO5Ki1oxU+q@6\ET)I}QFˣ{*޴!ݖ17ݶa LjiO$3#>$Mr,ȅ#q)MU2Cu6d7m\N ;~8I jTDfl\o,jo: {FeDzS{“zbb#; WקjHjNgv̦_ -8$t%diF4;$ݑFSh䑎T^Ŗ86_p& ׄ!q쁊D$߁!c`V761=/{5JqP)^^ >;JBf6gdtmB᱃F՜ACƾ,ǴPOhޝ6wBš(whñԉ9mb%~cPI _}8-ۤН /οQKrk{5.T@%uR=w1щXE_R^K>KC  />/iE%FoZgaAլ HkU-ɫV"WCW9FHՔ}B[Z~Z/9})gOrveNfB82GuRbE| |#5lYwT [`wi} ӣ}x={ɏPcMeC0cy^a[I2ކP_B-7:=P&\hΆ80dWPh' bpN't/}hc{6m@]Ĭ Pet7||ϔA$י T%OX黀 >]4.#`\5ƨ LϬ_9,P-R ,?S@5"Ib-adVp'EBP>0O]QM^[TzYuQ Ɛ9! I@ @ A@(rUZPE +*Ȱw;9]笇ظm@X  o#D/a$vla,|Fk~`We0;xۜ{!p .B i+n hkrx[6?nǹQ'q-[FÖ8āh=н0 D Aq1O#pR=%~h@m 3@ ҵ@ez$|e[IZ؀ ws*CfV=zG%v?&W0e 'waO"w6x   Æ9~/ϸnl$;C8 T7[ځ|فa䮛 N!F#{4i!U!_ٔ>oA%W;9-<þ$`ODfhl<%n|TQG wN::>r~u.;Zm`.W&<AȍԄȾD WA3JJb;D|IoKIyO%^H>J3*dS +4p1:?,y7s_pyP]yW~1GyFԦЎ'XGE6&Z,L( %;Hi{I 2+F,,jB&)&:Wn*J.eW{;i4IsȒVIT|(0g-$Z.UíN2 +TU% iC +nE>rSiT՟՟y z ߾C7u27ۉZ5/[|ٲ[WjʙN[QM*jmU-M-4cR<7U>42_%di> +35LA,ty ]lrxOgwۂ_;CO=aCAֶ2fS<֨ThX%B}0/D=$קUR:U)?RHӎ1thkuNf Gkf,ںkyWS:s-=hUR*S Y#0deIU+*"0$N%ǘq5@:g6t1f_Km^t?p#`:Ἇ7R4ԲwVW e2raS(hr+F$!ˬeHP<3Sd[X15@ cbfq݉Ř]K0W4t QrFVXY_aS֗pRK qb\&-O+=JA]4_8̗-,qi O +1P= f<^g̍Kv;φڻp;iSe #ݓ &ZJMr`:/2O_^*yNi7.*a^\W<ƴH=;af~.al̽s0W0}Wu8/l_t.ҳWl:j~IH (" ;BBB@aG(Vԩ#.uSw +,0EtVEq=c= bʎϼO;~|}&GPnj'Stbo~~́ՍҴ껥? eUe>6 S9Gg?2ɃVEnvK7rk. ^H +/usYq[[ 7sbMFuaӶ9Y k +U E┆u9&NMit tIn3 .3^9w^SǰVՑ|פЭ37\X%XQ"L{~:ܮԶʬymdmC9TeZl7$chI-if+ qA3$MScCV{n Э _}#/zq|εIJŕJ*-A#HOr{kJxBrA7좑ܭt~NZn2I##rߒwYQ۞7<{7ú{cDfknNS2KR2LH.$ &zrX艨Y? +^3C \?bY>.Ԉd#hݐky˰qooLlqd)jMlp-:2{-O)zIH8!J"HX>--t?x9g#0 ee:@i5 !e96̰p\C8hՇ" `Bʂ,R)!*Bk ;[s@\#/x7){4<ǃ.fqq!cBE1"ST,B%W"=U^jo3v+w)n࿡) +>HmW] f{!և‡ T\cMPCj1de6C!>Q DHhu«)5QʤL @JM 0&jTًH CָCR6 Qrq Zلq鄏 gLQغ|AACil2} fl)2HϠY_8!e+<8!vCKľāIp1\h"G$wH +.HpAFڕLw8(XahS-^dltf',rw6&`FQ4%oL::!Az;׈Qɛo%Cҹ7I{-GK+ D4ȝP*yLa5%B )mP1oL6Ɍ=~iޫԆ&7rGQo1IyCWW/dclLg)BCBt!ő,:飔c}!"LPƷ:̚ bϱMr6s_`kcN8MEqkKXܪ {H @ b B-@"D@D +A^VPֶ^u9ߞ3)1 ŌyD>$ < {>p}n0 1[ n32+$lw} b:XۯQ)GrU`0kq&LxO1 Q f#@O[ a#O}kTm=0}ډ}Bs"oףX}i$6hWѰV0+ +s~1e9XET2K^Q9A~E6fLH@S@V@((C^ +d!o5n3aNKǪ]/wt9Q~uqXN-Q1J8yj^NB03S?*?g$z$ {s羚P?llew]O~{GI=VkȉŔe&tir:NfQJ8Y9$Q)JRR^y:m<$HX|\^ԯsv-K.O}ݪ7rV>VANfgf1ӋjMOu^>/NPJԷ$?IIeH\@\k X +:G.5yionm>KWg(Kɔ4m#%']ƍϬfeiƴ$:7<-3.#%. lb$ zob0[=\&:7;/j;E W_v_U*є(ɧB-K^P•Djω^H;)ʋ*|˔|J d!"5.7 Eg0ri={vUM-ݥ :gv_cĄr5-4uFxb$[ܒ\A?LQGl2d=iv'poٻǩѕ7w6qiD>YP|]>&Q*4qw mWB-PA;?k#t{h5h0phUw-uHy^/;,1 +0idҌ,M6ɍOhoht#$1a-0 pF;0r]m3`fouw)^lw+{/J#E] J ˒B'Q:*(v#-3>xJ÷!a m̝`,߷A ,hrO-i~%s0ɇv9-t9(ax@!p`9 l ,n0aߌ@v;(ݎ[G%];1MοÞOʾ\O%(wƁfdlfGmrޟ~n^BL Ѿ"4 I\dLCpfbc!Ń5RlOh0P¡Ej9Nh8b#MN dBBgCbrDd9CVI;hdFo۸O@p꣞Sc>k ᳐ENCP@^ᆌE gސlB@|<:S!RԨ/Do/G [1|l hf;U:A=*$(j='os背f2N/d~~C]'^OaM)^Rq|m$ y$ rȋACrr]3CS2.TkyP~@ȏA~6dJ +|:a9z[ gBƄ>c8i80 :W=79>Эvc4ۂnAPAu,lȗQ!ѿ)^E*T'* d#d@G4LX( aaV4D{%1K튢|O"Ə y%~Gnwv?DsdڐT ߳`F5}E=z&L`dcn= +'\y0.+\2lZb憘gMOsN=ɪHӞK{*+y&O\0TAtLi/vNuĂ 7ucżsJ>?.\0s}Իym9,?-wnog\?]}oD|$u0R.`ḁS.͇=/4[/[$ɿ(*n)1wƎKNw=Rv<[7E)F$z".5,uL,Xo?T48˽oҐ17*fhiHRRF酒EMs-3ԧL4'L]c;ڣϳۋd)!J~r}EoY{|_y"űo2ksk._YB|Ʋ.͊c/5K9P|>wϹ%VKedZ n)J{4/#/x +b}_`߻FܽR|~vLU k,WTy|zߜ_);qc2i@Vs%dM}Q ỐOsڷYVp3? c> tF}i1\Ci`mrkU{*7iw<狹_(o3~n9h2m:oHXնf>L0?I8XUA)ғ`B(@( =jjA@P((2눸zQ 3{f{vV|>_NnMF*1&8xxot~ |NΌъXQuTY٭9.}|gWF>UVJoO&51/'&Tſ +NZ 4D#/C ++2TVkrRtLgve뢰%1Gz ;ryr)R~1)ܿ>YƪLa&KEļus->TC"{٘p#W7 ưnA:hO6zIw VzE':J 9U*%IeQ'Nt=h/L@ +TP![ ד`]tk 5]Rwҗ]&ok7BۣKq-IM79'LWBȎr0yL, +M1e?0Y~rD#CdUV&z 0_@]=hxVr⸁pD0`ƿޟ:esZdjJh*dAC1b)VO(P T{kn~x{oeFgC5='ݼios~)wC,D쏹k5t$9ǐ27zO17ml36E|blՋ6<ȕ~WNP0- 7HP5 #(^C}lgIqLO΅sd?8{ &`V`ǘ9f32g̠촋#:JR%n+Wq gC5(~/r!Z Ɯ% Ygf~,"/|&x6dtmGUnߣCnO6p`sY9P@ -HUY.B )RyLR7*71[hP),SOeNwen6sew,~^p\O;Cde.|-{2!aYb3V]5+ꊟJJMWӌV}(>o;6kb6ە/a+~*p<@k:> }Kې_|4kC:(r:k!T +5C^pZ>}w <H[_Hh \~:L:IvMQ" +ְD{P9Jڍrw2Iu|u &9+m8)@ g)kHE vȜ` dYTg;Av5&@ $$$6!)67,E*n8RA[EQ}k=ťӊ֭Uq3_ۙx;}srpig0 bɴA$ +ZH2E1ʴ JYec'6PT9I~(“Fp [83ؘǰ' hiCzu%icj&v&ON߃Ѓ`O B Jπ_.xzǂ6p0~b8A\4uxg3O>C|x\-,@0Yï {M;H3)W;=%wÔ/x0ȃ&|<BDd,H:τ(} Xict `)$- ?&^[?i >Th\H>D,Ku YB !2m@½V"i EknٓWB_ a5W\R'H#ݘZXc!F](#,2S֛CMʆd͔dpG#vg&W߉ڏux!px.S lH`8G!ք`gr{Qv4bgمD)t01&*4 _c3fE;v7{^u~%;4 sI\I>{7s~c +RV$4ePͦ24/-!E: >&ϵ|3So"j9O=w60G=/xߑI;vM +3 " D[1`@*&D3>+ߤL_$~YT|?V.z}nFs#b{=bwUywTyߥ7 Q> v&c a$7d;3,!7#ўL {g c NrPչ_Khȹ&v߅s1D <}Ip"Xˀ|ăs8Ép'4!ιtl2K %dsobɬ&?$3K/w)|*Ι=G :Pui㟈&LUw( dx CIb̀B R2 +{ƛ*WI5GneЌeJѢDNgN˽^w05@rp_Rhhɠj_Ȁ꘴?lww}Kop[b RH~6[EFVQlƯuNV+.Y*Ns:v(@Vo?,r=K%};;RC ˷W$VCؓ/M7&wУ(#Qo̩G06NX'3ZȖgaks&%C>_GT䷫I+&gRVRZfQ6Qmv>-"{9צU[^RZ*^Q$ސA.o9wGxS#VD5\j}\?!m,DPSO;!oQzR[3~:7SohUڻR]\Qo+/]%n.Y'k*ڤXUMYW0Y?U)aDm{gՕAP_&(TLf ֦CnAlMU``|wBmMIs2<;?n-_[])XSY/^],+oWԖ~*鏬(9]VrUQ.rՕT iiQohjl5M]_M:4:-p|澮PѶ[ZT.kzlXпBаliTW}" aQ(B @ؑm( ""PYdY(.Pjg: eLm 8ȢTEgǙ3=a>~s>9 +f?pfތ=!)B3&w7- :íT~!3߷1 ײ~\btqjZVWdx,ҬdX]~at,^}w:}.();x{Br%FeTA:']Hx uE:L8˄M|j2$Z%&EŹ;itK+L)(I:Z㟘75Qp|o~ ^BD&}8jh]π4\nAG byэWYoP|&lmM95qU;U.puVnTUy?? Ȫ=us5:r%j8Of.-lHa^ttz/Z}=b]Zfx;:ƞ͒G7(=:}B|BF:V7^:{Nx +۵W:?yO^T]ׇ^+F5);ǃѽAOﺴ4BU\ۘ{>ȔF|rT^^v=#}#mJ6'jEVH]r.;hHO2pl`)0?cWh-KjэcǚD&Zn*Q<ZG+2[2Q)'9O7^F;uߑ.> g_E̟d+?Āp{߆L3Npp~; ơwRL2,X +kmb>E !T*ք!>8^LI dlT,q*+N׶>~LW4Ӡg3s'|:Dx ꩻDa5`ɿ | 9_!(_SW"y֑vuc8aڽ԰ye=c\\tm2YYpO'-Ba -|P&(Pq%HђBW=iS `0F3 1 +Ә+{XY2kY|uS}.?@O߁2``Aa1 +5ZJTP+Л^4#h=up,08XKt0Ļ75LU$;x #0%uj}4d/K P@領F)AWJ) (t" EƖF;R!"Jh`8 AhyǵHsq'*.Zoω7r,ɖXD8(g?E,A660G \ QJ\ Y ?ψrȝ/j:YB(>\E t1QB0MƲ!Y 2Pͺ(EQK  gijoĨ;Kx,(RfBҜ0SD% ݂5%;_t߸Jkx(i ZG>b9 z }z3u< +qz:O|I~`V=.h` t "7N qQTM ֆAH$2Ī3l5c ~[>`-c5Sfe~ #Ɯ}Ƃٽ0L ƋBF cJjH}1@LIJQz#r߇zVM#ٳn'AF}xiۻnzЂL0X^W6!``U8ߐ4|3-5.!q1GQkG,7[޸VNa{rq&ՐΗB;_ y4F=֧#TX`̿6M{W"H7Bd]沼5_g.}ʎ{fk"f|*k1vWZ~޴b.#" t?>1>Kg O.Qx,ŀ^ `38xػ,|+>Iq峜DKm%8opks=}2f43J>}pIʡ^~3G 4@x{;W`2@_VBkcڝ"_!y٦9zw,;XýȒp>IdY>--\!BEݔjoBWhN(Ԏ}ɂWD+,z*2m;xBa"4hR~/C);ªțfc?]Y뫊]H[@Y1BVaߩSGB:j&Z4y/#g$H;$l61ױTW*H}$B%M\(/, + nOY xb - ;jp:DUʎ0\2ckY,ͦ&k\wUEbʊ:NFQ _r*(VP~[|(B0l5g>BU t]*щvutc%߱0Nkc,l 3R5n^Ԑb]P+uHd|&3e#30x=KvHU=ki;m_0ptn.>'n_Zm}W +>H[4@oƤ`GLspf=1Ze_LRs`6`a(nQ5 S≧3JӾU_zk;qolcoLc9a91 5Rk)C:{PWX\(nvW(hdDzs۵ DQ:8[3.O08ĵ}ݶYٶG1ֻ5]ƶD\"ΡKԼ +*/= 0"&\Bֿl!:!#ԑufq:': ;#;?:kXݵ&$F$W1h|~z=}?o ? n3b{˜XFӛ̊VsBs>)Kk ~ׅBy yV?Kv@x D? ŸBG0qLd0%c Mc{ xgu7v+{u+}u+5=Jp_A_F9\w`l7@0JttTa4F1ned8 Y8ebIeI 52@cs'?25P@` EԔP\ 1l1 l01LF>ba c/jwJRC,Hn!? ۞ Fz0EYf&\TOal>/r* QD('UDE +尢O\\DEM‘0Qn ƹ28_BX=&P3] ^"°O,ߨ[VeJڤRUUG/Tgs⧪+⇪n}Sq[{jVwF@/eP`}\zi=u\Ԏc|p<˘VtS~U*~QV@do}v5uv^ͥQw5y2FkHWɕ(az{tGh.R0#3{g$inuD;nݽov%n=N7coK;bOIǶˮޖ]}$7,5ƣSk<:OQ0-mH8&dհd'dXdYIgs3e]~õ5NW7HL4\rA׭][ަm}^9U3~fݐ{S"6&d2:HF'6Q7t̓МЏyTbq~t[]͙i{iBέ\ΥM8t2&}w }q_GRJEϺ4tKGtfmL,+zwNq›NxLdnG*/ZN~I[rMuG5}qIK@H &8L 5! !!!!B-D~AumγMzvqwHEӒԫ|90;Fzx5OռQQBgC$kP|sKMgZ;> .=w$e@q<;eb6tU!ŕFQ=.Q#U"tGr VMN|D#2fo+) ;i Dokvpa2v\wz`Ys:P{qG2ˬ6d:jH343!ZHXi\:!$;D0ut [8?^|WA ,9ai;d8У;^rji&F7Q*Vnbh +CJdCJ,K!).R.>H_RT +DQ!5({AW ie$J/wwT_ZIqae-Q(w=|kXhރk}twKfWvzoUk%ƜyTe7J| EueTam5-hftd֌W RUXz͏eDL5;hϴ`!@[+{} =L۪_9w^ܧHr+pڸVwU9)ECi6P3&4l6m&lbB&fBdk*=[\?ޅ;`@Iv0ʾd Qџ\ЛvPԓ}-bnV>h0-<m[8u{\r#?Z_#3M/eȐoewbp8S-]YrNaUy,"_M|Tn'UԐZ\&MaSހׯT%=Oz{U z9gIO1!E41C׹z. 銌hԯ-iw {=k aC,CRDNئC +GgsYg./1n_nߘ7wϰ_d8"i46[4X\3 嵄 37%_A_Kn^ ,Pisc ?\tN B`hDSEoOu̐&ʡ'Q <8H1&FTȅ?G|&^(=7ت.Dv6ltvS!{lOVԆ!aP~`*ZpӄqtL:R͠LCsR|I_EuqӱKO,^&?u-Ñ#w6N/►*♺2jw*vEME4ʈhn +ҵПƃL##Z3p'S2'2h,ď,Q ;mu\ݾU{w+igaˣlnsۧ.eqhWD>F` }lAmstl6+Bx4sPzd\yʔŊBb5e Λ]7w+w_cmBKI"KPUvv4 t6L睦y 4,B8,pc7p5aFrD{̔=jG|Ŗ6\!uSiz)kN>*ve]]q+aMLtX*b72):F[\B:qP?Y@PU/bT5?F37Y-gUYv|cVtbYk25X2}ۗiӾ-K;4NҌA^6 ru КHW?w|98/#j8g> ̛fM -KeKr?R|Z9E5.fo/u$F!@n ulJA@5@XYE#.`ǕxZjUlF2Z;sng.8g>>&u)1$~*2~DV]Y$ILLl'bopk9@[D;W"!+H^૫QMmG3ӭ>ȵNSWV:u.NLVH:.K$Mr"91{b7P.8EC`{Jm]inTśXVʳmʲ Y咢LSAFK^z:kQ;kiZ2E]\PUnZV=CU`QJV$YNM.)g')v'(ds8]ٚ&3&I*`Fga4g˨}=@W:Eh[+WV(DVerی"ԒJiRqì5Mh'*o{DZŜb'z|K}jpvAH{WALl:O^UniCan4:vfGɖiY6I55تzv++ETuQOL9DU0DR/i?WS (l BԶ۠rW~>oJn +㬖u1D mRUjNaug}Pw5n|5s U3b7%zCt}v=7[*J5PjfqoEz S:BL6ψiO3ڐk6V*Y%]ֺ)s`7΁-Zòf&^l'~L !߽PvK'^e.=ӑ#Af'OЏl=R-4+Y֕mYdbkufM_Osak%[F~mf6zP(hU((H"y5E/_fm7A|oi=3zj,}{=e{g7>=f>yz LwoTy#@D rH!O.tȇe|5r B<x GhfL{'0yZLA8 c< +0~2$o򏁜a?O@ ([@z0F=7 30z ׋z9cQ- 7ö́1j5򄌑+)?W $ïK(ۍ(0` +2=1 |f Lmo08qLJ8 ƍcGg 0H YG6.Yc \#'+q/?dyTSWK¾!/@ Z*,ʾHHXHԸТH݊8mک^ENw~NrOqw¢)^/  (sHlCbh&M+_<8 xKKO>Nctf' HbGZdAC6=|Gwѽ8}|K ߑgcr?F>c!SMA\=iOcOg#SbH5|'.5ԘhZz%BSE]3QDtNSEWG-M1fO u?Ax}aM>nۓO_)S 'zRC*}I d+d[}̛~?$'7$XW<.z60s;pv*f} τp-#k +,IK`btV`Y.u˻w52U&߽6]n|ѳMF<My~ozIfC޿Ʀ76# uAmaG-Ƽ\%9Zy%FjM0=favo}OOՀ)c>׬>~?l\Ȃ aha߿~}'l_o0'([wb+`50@hlFcYqeF9 3Йۨ(֑p< u}ֽK{BVq +nn ++ogY^G-=w[k [?0^c_t-ě:aqFbe=-V؝՜vkNo o ;(61'ǖg;͑ض9 +|/=7SЅt>LCO!l/5ѓc;)մ31bGں=[n[cm\L_&X'\=* 1X쁭! Bwa0$Ѱѡ 1&T,ҨCh-Mfٚޔ$7'V94%6ҫVovZC,nKCQQ}܈.K]¸c]"0Iiq' AR :Jm(sEM^ğPи(Ƭ Ų\+gjm܂RZW#P BUQVW-Su=#*x!Tc' jLޤQ8' •\CT" RFM.P1ha, 1(6-+Id,[MQPSV +;ej׻ȵe=nRq4ew8],X\iP%28Z2 XNvQSK髂X& Z:\Q-Qg9(J+FuiWIcn(YS üIwypB{a4ܷ 7XFU7(oE42 ÍbrkS,klEV^UM*U.$W4 *\ݢXq04k 3!A4(ADqpU֩Z +X+ +8"8KlUk+.D:Zu}_Z?y}r?hL1+'Ǫ$;LZ_3~Pec^:A?iÖ8g~&h;+Wƒ&^I>7AR9{u{d*`}¬4=f15x/j\jѫ;|v G X{EwϔLmn5l%$ ݓWoy?8lJeҁ529ega:__qڋQq=C89NwnXۚ]2xuj8QgCls4و<+al܃?/ b, q=0DGcr504/"~}Ts{re.r,EvܜGD7H}zQI;q-ri9Ѩ }>mmV ⭱5^tWtSYNq̟Xbߢm_6*m管;k莿+gs' v}8 .B- 8Dz 6PF mmmmdۤ}hͮnyc!xP:շn+9 +d ;H΢l@@ѺEA0[TV%=вdKƠE4++JDuIU>%Kſ+ +T Oﳿ&3{_3[_ wE .R.uCKɗ"ۡrAWY E ] ombj/e?fSXhf? rh^U?mwfpػ>pbP٭P؋!vI/3xG@S` +j'hjXU5@¨#񥤆5kxk ^]zB/Hf,d~Љٖ@ˀO&|P:t^;5o +@] a\:$dwXNR]% +RJ:RpUu~ߜ%Hx]/dϦ{̽j  ~O9^D.Ue纍.O<Otc BTPwk`w%襸MtlVGKf#d<3#Kwa5,Ն!]jr}va2v7Ἰ}[S-.R\ +@!nӀ\!Cu~a/ZlEY`<7"{n\$n q͸Ah?J ŀ2EyuŹf)4S6b*B:Ul| 2ۚ0#Zŭ i4UT$wT9Si̴MuڴWUb*PԅJc~ 2W :b\Qq}nE%󖱢2YQjPYl:e^Ɯ>iNs8ar8.hvO820|aj|tmGF8BF"xY;ը&(n1PO|3Bq"zQt8/ǃKGhE2 jĪ}Eb'{c\jl!B!$K@$6Ibر@ 8X$vl'Y&vL=i&I:Mm433{y9^+b?uUL$L(8/~?b.JϤTJ> FI l +|,Ki #ޖ_LAYB e"dDG_ŞvQe sIZOKB/yȝK3kFJ0}n3уL̽{T +rr\9fW 9eAEEr5 z!֜l=+;ŝ\2S cr0GY)kXP!JEBlkdJ'+RRD.0ԓy 5LG aŸ!5Gh@h@DЯ$a!0\̜/񨻍(#AḦ́˚Ͱy 4iӥr)uQL6WlzUDQs=\,+ {xw/\: >ulG<>G~=<𞍄r98 z1iVIEזƌ3SZPJ\ܞx"Y|RԡZoS'&>Ij){|K !hQ< 0*A-3^d hE0cJ!MaCqG_NU{ʭ.m#۩mv4BfFԤYJh,]KNi~ɦ[ڴ߮%'7؇1wޭF0w]żcX[kN&U&VfG TF4nQZjFn5r]FЮk/'Yt6~5F_EO,g50_.|\}DW1y+Zu/iВFEtUG9*=QYhc5T4sm&Z@bbR&# +ӏJ!@xU&K>zpu6͘79o=Flc 61]ASF4[˩ +ʪnX;恸Jqʟp|&]ՇȗIz"CG/_p3u8mx 8لǚyRHG"^mQlFY]gTֵL}qq:46ZGHX#*qe_k%xa>}g6ּ::1wvw ҠMζm֖Ljn=LnhG; +-Zeijg[nAYè>_b9Qe5^Rs|^b;Gxa}x&ּ+?1s [ܮhhw~{I6W*֕IvFVvǘ:˩ +zy{-ns[ +[gDdZ$E,,siJg|XHCBr<(ds r뀯hf'07!_R:WƊ2B_}(VM* 6U M Me0?;ϋgnse@@Ӏs%`-TMP^q7W;AT(ĉff>XxkU@c^_ c?\p/0Qz:Ue@+ n:ԤnZpC͐7݀3!/o)ca؉?DZڏCKswُM>0U﵀&Ѓ)yocܤQ}E.>o9G윸x~Q`:ϞWXx}ͼ{~⦆5i`M󞬉"CFQl`.~ <_ @]Q }Fi +ͦIٴ66*TL';1E;w<;A&W E8>UQ1=H?y,NxdJ<2uQ-R.iOeEBvWjz/+/ x=K{+~rK NX2Z*L-!Kel%]ϒ%#/X +|* +})v\UlSl}Mbc#?4esZ 4tU\q/Q]}IEcdOΔﰦ)[+ZW(7[sUͪ #s5oPtU]*60>kt&T Q?wQ=F*Nm %4N)h"/_WfWdkr6hvج o"nYo̠6ABmАc̿B$Q~<)p0EaWHiCxڰܰъ_({NV ^ +]dLk$d>=H(aAha^S}ZO#=vn4ݛjfWpj/s'Ϡ?FJ׀7GbCdr#H91Pf蛤^'Ygi3lz2 h8;8R}J_#6{܎~f췏l:lvژȉ醕1aRVtYFtbaʅ&-jiّ" )+G7Niq4%CrcG ;ғ=FYcP'pFnXoEF|O v"-6Q͠hfLΈIM=ߐe41zWCR[c@a [5{砚}>)8 +|`BV `)-,5!Z>ʔULM7]?1nݗbWq\>r{c ;ғm|/#Y.h=?goÌX<5/e GAkТ!#@ Az@TBt]OZa]-3umn~L _|?~i扫t$))2k89ǹ0ՒJT2k7gk[=LڃYSL^&3iH$%QS{ Krٻ>5`:d1UKkR$iAzc~97⚣[XVu'4i^ԛ4#uNpK J?sYIjeC?14LӱظP\!?kԜsr2\ VAZwmꔌ5I^Z Iz-Y/(bkی8(bq1;¬Ay¤c> xc&;b|G:1SYQ1#:As9|ҩw X=|}鄓2v q~ x́GO4=ˠ5½ +PBEE(z<(O=޷z]ɸ-w "N! t;< Ji7N}7PHI2$9CԿp;7qBƝIS0"@!tIeKo4pe" WX0/#tpL.#?o05w1cbzx;~~ 3 'MJpT,=/^`Q|9Y0y\t$o>r|O~|F!Dϵg/PdcE]cAnArKĂܑlX Y,?`/G|b‡hEE>{F)[6SDϣ̘.c x6o>&w -C}1<%ă=&YEyCp m49q42,&$ Ud=LZțNr qO?/ +z%qx:)$D-"d% d+APg?u1q +xk%w~AE?4tN"|G҉Xy8&>y;uvQ ?uR8ۃo>?pnA+r7Fx@qnT\9C41$[1jlf4h:Ӆ/u<;HT}Pem:X5$p 1$$"B"QmCToB +~ZC j]FҊ6\lU~\_qQBYOU"1J F* !zR}/&4w|kuWa\QƗ#.hVs|يs=1|Nw'#k"uqb  $?-2zp۸%Wb7;>ŹU8ӽz4Þ8ٳ'z^m8k:CO`kO]"_ǘ٧1-O$.E&꟏Q8ÑEOg`f_BfOr2lav lpxixm71Fd7w_AB> ' ]8\Q|L|4h9'6{6`ٮf:S-ڙLv.Yݤ]nnbkwrܺ!g5CV_>T-ÈG<&w銿6ZY=[|0,Ga_pҍ6 [tyجs0t%zmu:vMl*[/m[bJ,ѝ.ݒ6x,m!J? +O?$[FM|@380J]b^q!ވ,fM\2]WʶUqKiB}YHҤ_%o5OW̸񢔐O%RkL!jy{Io$('ClH&$%IfQmNpM$2BZ +P )Ҟs=n#ڌ2tŪh1hNMaf3sRNaC1,36 +K5e0j*` +G11E٫`Sg~+Ofz^b)K29sG1sӐc 7_k*ԘҐi:A/OL_LoWUPQ*L,Ch>rp:>iBzeE6l r1M4侍>'d[PJYҪ2 ܤW(6uy8ƓuE^W(6ҜN`g!XK- 5?OY=1#?ov` UyvΟ-R%(ZBe“LUQݭqZ>8,;9,?y™'ʝQxɷTd8GڳX@~*P`ڢQ3a6=$fb+ +rٲWZPėX}5 + .ka][׫m]NVM_jUTXE gܤ:![G-^]4:u&rDiי; ^Q%k}j_ooUwj,\ub3^wY Gr`C3}Qye1LȸfnowKlE~F/zGn)\)\*ܮ6,x2Js KtNRS*4~$'j+텒x|Q䋃7q2 t7畖Kr!Yw]Q{;TiޣTďQV"_ <3:S P4vNO~%npUFQ9FXҘlRir* J$?IRF*ErVe*IXPT!*E9!{:;)`Tҝui />aB0H1șldBLf(5\ZO N$I2Cp0]<^PU T$ +QSo&7h"i4L#UOs: {\?a0G!=p:c 066)a ~nL>\yTƟ3, +ʦ0 '-Dk$F5O465"eE 8Hpj%&*.TӨ(1> +&y{E +9^٬IθI&9]hBm^]u KY+ǢVwdX'!-'Y00g#YT:Gaf)r +/lV&TƜҘXe\*T%R=PC_7f1&yeVr dia=H>}BR8Ο,$}oɽX{c?&ؾc~RĬvywR@Դ`5GQk׋WI%0PCi4K+MA/@t Cc4b嘆HG;rX/usRغv)XHk}/q ;z8x@Mi3_pz"©G3*ViDhe +B*"r8*Ǣk$T͆U[U}VRS0\$1θلyY&7Vlc<.=c6$z =08WO] Թԩy$&ߓBwp_F;~v[.vB-ӎxJd"%"SB ԩN 5j{q|˿C?N?D_/b"Od +fRg>u p6Q)\s;SU[whWp}+\D ZBӅ9 H^!M?Ө3m&SǎXC56sjnݸX|8%:Uj- @oX ^zXHo2L77Z3X Ȧ +󸮥F5*phf,Nc'Y@*o1zuAS;hvcGbl ^;CQ T6`sQl +n?Jp!! "',Y<8}hHBmcj"G:rĦ lZDB4zT픊51n(T{GUHOic{WT^o}kd4hg7Pih2X8 PbxņiuBT#'Ib9/a2a"axFq-ENcEv:Y=k=ן@|U߶^pĦXcBIXcզQ74QZek!0}$-3-rPe*S,1mU,65*N*$Pf)盅"JCơqs5>}{`%v,iȵ2j/e[&IK-Ŗ兖 y%[a)-%yjťeyޙ{D K] qDpFf`fD +5.Kq-5zXTkĜ4mz5m<96ij4Iۓd1w= |zemA6G#ulI1kLslJFɄU&3-X,VUZMI[a(wcm<+1Vl y+6"SH"?7wg:xuH?6#<MXmE%4X2EZ +S,7{2 +ۼZ[b~^*6o]BeKa?LK^Ze}%s4kahEI٦*t۲mPj+KlbͫqֵRul:lsm/ԬkCzu]˸9Dq-빮l-#QW +eʔ$#JLHY"8Xr]+~)W$/U~Q)ʅpEy'<[!܃Yż1t7|ۊQBRu&T@j:\L5IRԀXݭRYVxO^YՐLܢߗuJ@o/K} J#Pdc:9pHG#KPX&.q5َ,Gjo2;uq.,q3l>P/^0GO4l^\NGV G3 +w><\$丌X]9bCJLWcqҦ6H&gltҥ^եOuo4gH꣰+y|'{X[rzTB^i$1qO➉ŞdyRaX,|!S$.TFO&ͽNkpoRrFIII>KB^ޠgS@-H zdW BVHX+' ; <)XTeʆUVU(ebNL,n{OKqޫ)ڸʐ6'.S8\>84ʕ] \n ~OFo }HYSs >Ź͚پSX[hbBڟ8tf`5 |?` 4HnX< S1?$0o.f0fi8Ycc 1Qu@fύC PD3I&s[1efƌhLoiqڪ3fL ((@Lс<؈ =x*)`|W ~KwQ{s+=o^[6 Q1LLjۢ0m,&MSX<`*30`1FkZن;aX"FԎG=a֐Qe۩BFT'%`^ v>ۣ0} ڣ1}t'i;w,ǠF ؂ h?[?CAzdݛX'$b_f1G Dqrº+RW,] Lz?]  |d8paD8vs 0CK77[7E. ̹3_oI}^3vi=EWGA a:-Dr:0 3G_l]BG>Z{#=`7ԧ__ DQԾI@!j{r aCя =aOpaȞߓ{G{]E Ybj٬5{#|Dc1=GO>g`|C x/y=dO4 rjbE 20*;o!"\>'ug_KH2kDT} ** EZnnhYDQA@B"2bM01rRV&NRV8ff\*5qܢo~T{=缤O~ld!Hu'3enDٍ^ӉYDdd"d3AvtS"oq?xW?" ~ 1 1tKlF3`'5ڨqssg#>mj O9z<&ȿ?eg7N&qdOT@EꬤF5j8s#5P{8g;V!}i_2:2G;C5ķQĝL%_AԌ3sӨCBjF%5jH-_'QB//} Moq~$7 /DÁc 9}r]*|=c\| urQDUԨF-5>V9wd4o鋫˴wi0Z"6;ٙ0eG'\;kBq5JN&gͣp y]U +Dh9YВSG|kwqlCyeÆo$O^17x Ұ,\p9bu,ǙU85|z6S 9G#qGF^Qߠ1] sh!ȓx吻|!+ȍpy~.)DpM1lt-C[ :jtmD6toO$xm}qoc<6WL7OfRߛ70L.Ot%wW􎝆|=^ }`M.Ůk:-ScJ O9Sylv M=D+4xB y4O3 : +]&s6L*gsf2ϴaR4{bW*UY[Q?kP7S+}]s_\uS^})ZO.;v{{bs%}4h1' >VlDoj|P[*BoηUX3P>G\=X6rޏb|Y,yP<\{-]~tS\ `*aRJ=ʔXLAҎ"eBY$,W ˔br+-]--YtI#e?!,CG߈.10vƲ1-Zָ. Uc6C}PUT:(PLy!E_H^X +1cx@k[Hb[fB+:q#1&.헥{Rh2q<3I+s#kvxa>Y=DlvBP&-~,"d%ĞXVjI 5bԴc1ZiCvZ3\o1\r{y{lb>Kz 4&Vq.]#4"!RhX0&>'dӀ~M}̽5G%]3G%>4G%VhdeT>` + 38E<gTJ&;iHbR48%LSh@jT6Q}Ҧ+:mҲ+3m),)tUShShdArCc#˰ Jsz2gکOzguStV_ٱ +ώS +˙МSPE9kS+c͹,2L/RXݲ|އB}0 f8*]A +, V@a Zƨe|,3mIU7"ue<-\GacFgWA+%r:!-;klql}Q3dcMW2UP +#[yL@^RE7_W?7Hq؃R)`+5okTg/S |!adg,@PՑXuw\ xº2s/)kS +܍>iޖloaHa1~R=Ci}_CP o,^Ç<OXI-A GhFoz<^ÒsdwT2GvNI8Eag0?:Ǚg +hrM@-H| -/:'֣?<ŕldllj֟%hMFg&9GEq\#dG(+t|+e`؛=vEHrsh@:st4CjQNFi-9c֋]DNg:ЙCGaoA:N:K(gJm5b>i-mP՝ U|ǴUl';cWC(NzM=~WO2|u{7W ?w1ԄZY?T}40VEq*  zM f*7h+;8WYEYy!GsC+-)%)a_ڸŵ7+x(0fl#Yik͊P- %,@=# ^+eOiJWZxR#2Q>_ +h- ZE%Hy!@$ $BТmN!Zҭ͵{3nu;֞vNZ!~>Ͻ`͊O= S&',V iw$uLs0^5K>[R)G{Z +6g-=Xaڌ +pŸQ ?|mX +o^:"YDX\f!U<ຒX`d?|lΞH)EkӰ:;9:rLh)GCN9u]Q-\ʰQjIY̡TP/*IT80Tf?گ>8b팣E5yhV-O j Q`e<y [v&*w _4#2]Y&H4cO79rZM;렂Ʊ _39j&c6.N:tpQæ_/'EYQZ' ̆wd%["G+ ?Xu ;i& }60(Ӱ9lT4 +a+,ƕ(5`1h(.z^ɊLC2iTVh#HEc[LyB~'Z$[s8ܦIpf +bLa5eXX0QRBq*[`4(0zOd:yc/"ɴfIJG=L+s3Y&Pa0JR si:K0PTf̊ʽЗ?]yX}"z\loTBe(me-rA/{"z`-]c,Mb{,KQhO|+UA[YJ*WC][:l1pYUD+~g9 ۀ}M.G}\fN*KqC0TGB_]"hj!&y5*P9P:+ZlW3 tu WH=*gDjUO!wIBFs/QwZǀ'Ɇ5y0(Ȑ_{8CAGL V;V߈Vx2oR/#{Z$y HDGqKU(=C$ s[*e^ Oo*2}QHGZ"țRڔM*,o6`YUHj"ѿK['?m$4CB$!s;ڹ'Zg[#cR3 Hi@R$bi,i]G[Xܪ ;u Fl 11man% ¼"EB̺1q}~ux@s `3]9 ;v#%L-[Jpmcr60%&^JI$"|HL8x˥^ȩI @@ \*""^b2T@W=j>gmt]36v[NvݦsT|?D~;K NH#H3i#ϑm%1|I1G,Cy|G3y~g_2)ѐ,O"ƯgFCldbOajWL#>[_0o69aOƒ #5 &$dP/:jTι_72~w1N.~vp:kߤ0ڍ>$%qαRgrragaoj^ԓ24jZ}\ q>)tvpgp//^_ğYopjG708=]O͙xԓ3I<87+]Jjbf@FRcn)C\vV{k4Wy? C~9wyD)B8%3/ DQU^jM]c:ut='ye&I-`SGch"x^Qy1H}^Y:9?"56qj66LubTZGKB<kW)hVub]X1eG;Kf ?6I:E1g ~s7ڧmFeV +5f4`Up>V.X6!QҌ%!X50<_EugxG|Lw +d*g> Iǚl)X>#"BTGP\,SEsajTϭCFTmCyTG@Y̋ Qo +O}؂ձ!|u iKd煕Q~X=u1cQl2jPkDe qN̏,Q⟠Hn (D +•>.SL >{Hh%kS'F$ $Ơ\*C4 z$d(OB܉(L\|2dp:F87`O9Ia0x'29gIigk譞>'B>e`H![BIFlp&9H*F^r%K))w"KyUȢ(S`n:ظv``볎>VG-}+Ǣ$t(#R#O +J٪\Rݰ#+F¤QsDyUd _Ads6x:ْ>(}T"O +:X5)hĄLm6KaLAn6tۑ? HcNAF?V'.w/Zd=F.V}0,9ԋa+`ԧ!Ð +}Bk\q=LH5|Q4@A4 " F'Aj?xK1#MQ2gLdL3a Yt +ZL ԙyH!RU2d"9k^>d{|~y0Bc{?wp$(^ J5ři h!Pۢf"Ֆ UlRHqCSyRHoԾsGBl$va3#{/u+9Tq/𹼜<\z1:EPyCYH΋D# +rGd $:m:!qAEk-b]g|A#% 9i?wQ{">9*VK!G%=B$A ;y @TQ `NQ#"7#xŠO!m9B!H@+9Κ~/;9_ +4s]QQXWeueߑE=-fQ(̸ `T 0q8QU bզAlVMM`L6{bCRc4how{ xmcb-fJM`PW`ŘՔhSE(4\ldZR[_yE`oجloCkiYΧ6B}3UXO|)uF(6VvЫ +dά<Ȇ3D$ͭlJabWS2mzAWڄf_0'xni]' )vba'luPC!d|R[Yp156v)40wIwvjQ:jXG .@Z.Z}-Kbna14,ttN_tb\KK34@ o/uahj!j6pENc$\bq'-%r?= kgY,zA&Z@q.IX4iÁ=9]lix3o'3#MF{- ~FK.wuNĐv>Q@$M1p2 u1(}\4׸7qț|m‘3}ldIƿ>_{[4Ү)yWP(]%| [6]?>FC#c61qF./l~ `0)`(bJzآ~d|isY;}/\pedZ AwH0Ŵ}k1˰_}- :55u]|gu N|OCx̹7T} c ضa{.0.S0I v͏C8 Zנ"ZIJa/`߈"ih~1/Ƕ \M?Ч<~b*-a8k7刦NƠABc")}gcfcߪ^N*ȎSD2P-T+nKK_ϡ1L4ʓIg#?EhXrc;YvO^Ö}51%;JUhi#:cFg1v՜\; keҧ.]:6k 8qW:Dy{+ePvw9] ƧimZqGiV9hsV8s\ +eJ]*TNuA2_T=z6k\FXᷔaw͆SUnZ=̣U9R%3EiI *4,\JhX|~C9>5fSvVfspN_FъpuQ7N :sh@ h;3bʹvK| ]9ʎ UVd21fF ֌=Vi)=MSf)kRb5)\c7+9Zh|qݚy};`sآ#;EXojz\kj|MV*%~&unS5Qr5.at_7W=hTbF&6jdѳm/uT@T@S2 0 ]`H䲨1 `y ^K$Zf*hY)=Zֶɶv:k%ִܓ?>y}}˚ƎL}%q4bb\9\0 -_EUG$+7ª\eGڔYQ5ʌ5EJTjl,5?NܛEra #NJ + q-z +)?zrX͎1*#&U,*-ήԸjYR)JNإ2%Șx~)S'FNm[q88GE9^2LTaJ3D)Ր KB JI,Pr\%ͪiV'4˸Q2ː.;?^b911AaaV٦0QG%#dɔ$cRf%*1D ɏȐRfřE[*| w)<@75؇~gא2jSHdd8̓d4*yS~NC@SKoޖt/*zXlȤ,bI&XP,cR4QE +*(M+NTV) +M-Ճ%4CJɧ䔼K>yC6&35‹JzYQ΅Zz-X҉oya+>J+)5I0=hD{&3SV$_VqOjlyʳ<˳:8e ,\~Zʹ4\SHl2y1!P&JOոJ? HyU%ʳ*UcQe{"n[FVKիUF.wZVmhȠF΅ǩzr@LI1Z(7T:B(GFe遺 : ;лX_mQg?ߎI~%g#=Rb|J cʥUÛйM\\k1>$mIgiໝSQ;vMG'$]0P`C@uQN w+ +}|7[ًO +FwJ]#y‘PRa#> eԥ8 t4v71qzjiW|?-/҃ +܏WO1xNA^SIAN$'gR,Yhmy׵u/`ͅ35b%Ұ>Z ҅\Opn!p8>c"5ec,ýKKf+ų`ߐoO!|z-Kp\uCѫ 7RnWosܦHv;; PeP hfh(MEyEևb7:󺮢gKp>5HCax$q`\,?Yu !yaMZ`{!`{9)E h̏Qh;:.iofp^'Ѻ7/}J3G~1`9U~ YKm@k6Ӣ?ڵzGOѺѩlS$8AQn<r_ w_pYX;|r"𓈏4-"el +ֱc X:V;؎t^*ׅ5h 9$ V,a߆};plՐZ| -]ɳ|kyF;lݘ؀m@an_L b -M&kk^5SWUv6ҤjTiViӤݴnUNC}>}}.Wy%z"Y/_{Ob> +ۻ3>wiJ>EOOUE79𓣛}!\+q~F6e;K 0"WҽMyޑ`HRsxx/Yڱ8]c~9Xze TtOҢQB|c29wxz8-RLSγhqyi'Ooi=lff1s c`4!F?јop4Vc:Wy,=|`oŔ>1 D`1*u`6ƎjLza"ΏnhF0pC LÒ{_CI"%M{MlbdK II%LTc,QcI%:0,APڀ!i H;0 EldcdsI^EwUtmDG{+3wLYfV 37C;1"##) /ՆCГք6tw`z?:GϘ2іyYwz ^ω?9B x6`uKlfiq'L) (R‚@v9NgѦUGޜ!4LE4?-xo s@Ïy uQD\, Nݿ{xmtMc[:oCxhdj2q@FV Z' +ܨ-ZKg1TΡRav+(7~@N<_&-7p%~X Rud h,LGz}jTpp2Ԣ؄ +c;E즣(3@y6uX-/>K%"Y=r`wps:T:&9&*Mp a7Qn.CŅRKlm$iXga]GQ"}opKcm*q-$ RG7u2VP֊&E&.wm  li&IX9㡭BS5uv۠T!ӆ^(Fp +Ho"!R䳈=%.p$[;xuwIE덂99r(ݬ«CׂL:|Hu!7 yI$lBr ҖHlI-_Y̷۴?77s, ijڥZ Qn Y8H!ůܟd2pAф;! !3 OqF_|g|AfY㼓#VA}FK=J} io{eD$ + B + +D !L`0!J{e7#bɽ6ɼ0Xa,L|qzJ] PSSm$;8D'!b8 +-,FI> d0 1y7ȹf{5"Iq[\9 N98|_%~ / .) ._\Z!,8 ]u'0B(5wN FO3朜>dPg\Ҥ}jCtrt\\ȯkK8D??8{=<<wrx\O &5y vh}q- t=! P Fj0ؔf/TdV [=v]Ku_}K7펝ץc+ XASZQvg+tB-l7?ckncgX>Ntho+|+{n* ^k踂?t\B{lum29wtt"w71pyG\Vx塿ۏa +]x: k %^i optDoq>!;p(cv;i w|-88,~>^rlWaد@Z=ZAXf8Z_m&:-D`kwp~ >szK?"'f)X~vcN^F[4Eт&tl2!'*,42"^q6Q{rר_\1a#bP Gcᨆc2pӜ.E(>;Fvf|¤n 3a#<H#8 +-F"t)rkKwմZ)eZTmjKU}*{lVEσF]W=x2undy>уnOun5W&h{j3T힫qCU1Bc=U9^= y.RJxh~Km**qtS>TgYB*ݨ|V {Sy+0w^s6|;:rT +?Oj_J#5ߤb*ꛪa}sTw+?\Co50hv++2*3䞲B#u jv}L$7TA* 2 (F588CB)7P9!_) t21RJq%ڕP +xwۜC^_IqD7g C"De(#<[JԈ +DNRRl٣Zw}L֘Kp(щCp`<9k6d>FBr<̨~J2(-*F)QJ+):C ׀r%j"ǭٴ]&gzWq2}61dZʧyo":*1CБTCd3F*'k\T%b.TLje΁kJJ%QC|`jK0~a||}XzfXd/,`0oJfJj_5 TE +WQ%+@3T.¤Vބ;@_Kڕ|VKH F7D`aLr_hvȣ<ȣ<iFF6wh es-**12eXI3b3Ism2Q"@zcn^NVN$)I&O/\T ypײ ~ h +x Nw 8 ^o7h:9ϚQL3xm\|pZ+>V4X9np 9 +%pb]79E|Fk.=tqߣp_ ~ @z! 8d +%8b&qO, 7G;[s}F7}#8>oDX׏xobE.!}F'W\G8?#} +y 7{//x8xB/?xxd!]ʥ?8 +Jqq`2ϓ9cʚv鷈uXi<^^G~_['228}@-1/i z]@"b#v91::f)d̲%8 )=`A}`7x#vL*%x[fEA>Nlb=Ӊe2į~xVav];aA-63ڧamFnf:iyZG1cW6!~>gbE,C %F3QVXn8ױwl=>t 3mIB6wh=X)p1b8{V e5YЕ(އq#%Y/>`ݍ.F($ p< +G + 68jȣZӴ<G UJ\ #J7á{6h^b{?v[!{8v +!J$D @2-Dʂ xPW`k,@9GY?[ԟ0G^m8rК.5~a_\0A O:YT W*N.gd m$VM{Mn+rޓ+}GXo|/DA]U9fy;kfTW5-hr,lSNCݚ;d\%X mh#aǕ~Iww[~8:ZڲE7*HFyb=41\ T3f(8NYɲGNWfd2"+Y&YMj:.,/>R+цhkknтҖQ|k9T(ƛm,S/My2̣d3[n\F)%fĬШW#^wh 8ӂ%mhY y>̠NSikTF.+_l# 0 3ΰl +(0.D4Dwq;hc9&٬i&VLlkXSi&=iZcܲUt=}kPqQE! 0ԩ,+7lFSNx1WUJ3nUK)rF7r+%.^nrn-d߂Y?=N#_<&0ҧzs+&OQA1#RVg&),3]Y +*հI2dPp<(0C9?(8/<39AM֪lTi&Sy?;pMgq$*rkPHnȐP`~˿̖qHA>+#C *B ܼg9G0s%\*(EYX'btTP%b_qq-OI,WWҍ1 %gحNՠ:iV4x i|U<}/!㤀A+ Р2|ˌ)h`yr\rYX +0嘵rCƠSW.jB豉4/Ɩd%ӛ BM +0wE=\.BD."c'1!Mdb61;-s8KpG`O+yɇK*a@ȡ3$x \ \5\t5\@5д!`u+-M_M;"88Lum6{&P\ U jbibh[6ҋP@/DG=lyC2D-\X:` +XX G} 35ã9p5XᲈXĢ.$ml||<[\ +nm 5ʡ]ֱ@!H]/Y@ & +VxҏVx£%RZq.|j&UL+q4+ZOX9HfF$|6K[w+(݋ < d۹xvzю(8r965]@:r;zgAK2>Ab{婋t} A===uh $߽V3u"o%9KɓFbvI9V#= u̐ǜc@E?eb(Ea.^zCU>_Z>QA\%!Կ_p55AGy1~ [/ g?>q&8Ǣ%Yzq]9@"g 57<Ǽ=f/΀w9Q|P5Xr*.S 8yP  q-M\׸p@E~_).: x~B>G"QUmpA0ҷx̯5c=U K+<.$;?1?R>@k?eέx +^?ni 53|5ezqA#_L +^.{8 3w𗿂8#=C=:n$2y?t,Y?8VrEr?أ8G:rXD^]M2m~A馲.= ݠ&救GZq+YȑLLV8DDRKX%_"6cvv'iP6Դl_+u:~G-rE.9ϢB1į DWc Ğ2 YNy: ߰Z_j%yWx=19v-{E'{Cf$Ilq1 BjrԑdkL76`0`n&&`CbH'@B(HB[Fi.K@%Ye (mfi6AZN]5mӺ}m6MӦM۪}ؤjڥ4G.S =z?y99『w f 8$7el{W('ߡܿ$xqÖ8 1Ua#f<ߦg3q;cX5#Df= MSw)h5졅p$v1iL.x +8K)gYBDim` $]v>NK<n'2LY%u )tY='e*\v/q~J M5+ɢmIښQ{rڒ˵9%M)aES՜USj61m"Z~D XR(j ?R/1~ +b:m:r"8+GS IږVQQU6`(VBZ7֫޸Qu6Mݪ5Ri3)yNU +VUX>T3SKH'bCطEȓ&K"L3TgU\Z_5ZjUm(hک_Qgͪ,mUb{Sg;>S#{Lo&Yg{(C$;I!Qk,ekͭ*[*m媰W^2GJ[SI39OQsWޜw6 %33IcuKZ~vlF9{IW3SNʜ.*8'"WH>涩 Gyv?ʬQ5` Q)-[J&RVj0vƟ^Dw;X҃][K> 'dMSfI,kr@ ʨVz(PRB=J +)1N0uR;HfbM ~f/w_ዾKax e"'q!a$|:xĞqbMG#a{i{sp mx AY2`͐ѐb: }0q8k]A(nbL4n"LvLavL"&i0bK4A<&?åC){1ǎJw ցJ9>c;cܘɋ9.?7FҳB_Hx| +:;_ U:G;0\|Hv,bb,R(2 $y{8G^~;?oسEi㗩WH*_%p p Ǎ' 67%X,e +2X&8ҫ>_{Ŵna"r܄*_a |n]M>gVcB~PW +Iʊt9c/ggTW6\ۏ_ݛ¸oo=^I/G!R6\{tƟ6%inmzK4IIKKEZ.E\1AAȠ ás)`e2q2&sӝYiOs~/<Yz,GG>ۇ;h +{mf5*c?,ks51#ꋚ b԰>_8?@}^Gnx7u6v̀/b@2(CAw6ڦq-gҿu7g8?R<7{{BGeER?.jK?wvT=:uч踂89,C%tz gz@{཮kz _>/߈M_p귪һܷtɜGG8qyqa6WqR6K'Hz0v]_p|ܟ>ݛ,::)tGsc88#8Zܬ}d/ _R@m!B#_y \b3e'"֯MzGek=:Bt5JR=pt±nѽ(\Sݰt*O.r?b̘C"f'Q~mmIG<4vPAo ɠy#ynsmEo + 8,OUB$P]*,Od_ 2\G{?vX-s^tSsd+\x +)c:h_P +~/k$?fOyF>OqmrѺ!.sSc>;\䱧"p᪇pMdptvZf^w@dG\ȝ +-a4uAL&cjHָA9ʂ͞*P}LHuª4Z59_'`K0\RE-U$Fp+mw_ղqlI&&cqjHNQ8:CjU`b+4$JUI +$5ȗ4VH%oUqOxBwU`BSDEOƮGm%#P1i(bPɨ!Ft94y4T*Rjܤbs +*HW5r[)\ʱ\zD $#F#ϯw泥8!7#kȍߚ +YJ-*RBK +UX):Jn[rm3/T}RcxGi3-»[1nŌsJnFS'R*U`cO۞<{r%r9|I );AY㕙>MNgҝ+*{^2^5MlkH=Sl-~@ Fy24+iSө̌\P +93*=+4L={l]< K7#L_O̔zvx75RxeXՅ|vꤖz P#6(e3Ǣ49\#L*Yek.{LddHO*sLIs#>|o #c`;3 mcHrSCn|Ĥ* Y|vY +ke,K)EmJ.+x U\Qy|;rȻ chiCG3#t27^RL%VJe,u) % VRYH 2*ۡXxK^n"/˴2K-pg]9]m jF_-CF2֓b$&@>*-JLx_b}^ SH~gCcc ~cUEp>4q*=NsaXFh11+)`bA MhPi`0MA C?Vj)x6{LzӐأVBV7q7 $K%l\xa0t\x ǸcBHuhcC걓zCON0yy@0"dF\1RkRivHMdM4pġӄ&45GoLLk.Khhh k\ni)![ 9<h#;?;: 6+Xy#tp 30hs1 ; 9tG7&4nrхU]Gy,AUEpܳ:^J<a<2h6ƺ gGI'M/uE賏FG.Y'ṿ; 1pa0p{Lߐ {%W@Ca!WқO c *r1@_RqpfLtLRl`ut^o$6hVӐq -8.sfp>rFqخR+_W.0Y āt0Rοgjs;pH}A#GGs"^@ aG>|Tp!X4T |pƲ~kg88K8G<N]zS'u/ >z:=E;N*ңn<7U#` :._ORܠԍp/h=k!G!^7YJgz\hDt*bn 6^ 489x,؋h2GM>:p6Nv4#ԥY EfUR0we mXu8# teDt2!Ue/Z"\B.j(fmV]O{ jȭ7\~t \χc9)2xYŮC-Z@泳R\ ,F}9(48ĵ5xW:EiU5YJϨ.&j$ +n1 BxS(fYjC(i>'{ogG;k}+l$n9C5rxxK;\p%'/\p k4\5hr#{#PN. +idgqedY1@3zMaL$?r2C&X5>ȡ1A.%jTPFgiD a!w+'tCV:7)5C)O( 1|!OwDt.Xm)1PANO!ǁ紆*dT^Ur .eGxGRZySbdSd{< =ZQ1]!2YQ,jLN\r,rNi 9~LSeLȄ*W*,qB=9  +NUHO]pwL,Xߕ|VLl)f9#'CNPEyLxl2{2yeLJUD0(-U3Ui0v|:ɮL1v +ͥB+tr)D]᥊y +ݸ~0)\*ָɽû{Xfmհ2V|ߵ=růĔTMT۩jEZWj^vqq*B˄ΆKZ[µo5c[_U`8,G bK^2ٓ:hh5i|1/jZVXA>ך_,N7Ѧ _\[=_iu`xD@yy_2%ʹx>r؏{Թr`jf>+Te$9 `cU: I ~%ٱ/袁/h _s)qqlK3[j ML_>7\;ֲc4QkTT((kx[w +ሕKk4U@{.J1P╢4 ŗqE`ƎUn\ɼEi]l'${.yǵ1Ja} !Ϛ:mfG3m4I3]4E35q^'$;i츎[u r@ +1T<ȸѹm a-߉MKvǀz(j-|BL9~3p.Q3 xԭGn߶dN;|ܛ}6'Ѷ$3'qR<%&4S|qJ~DzR>ދx/9f |ʸ'yj= kâٱ ]0!,ڣp~ӳq0rN<Qٗc;ޥ`|<\^\e>PF<?WOcq|xiorM_a{ u| =&RK忚6W$dv}*1?X߶i{#_\Y3Nmc} 6>|d)];__/9Գ +3%OlOI' 3d,mB=E;bW8{; +,g_^U*IltBtl x( $/g :{'iv6l`gv;8hûCQO)͠s'I=. \x)9)#+yJ9ۉxs'5ۆ Tx>)3tSI/ WB)t~-vk~ƻFvNZMsEp]z>Dk;ddI8,ybi|ENbWVf{crVրco5(Xe1/sSG j+GYvꎣ7b%8pTȊ*J3LJY–ٲ_h9 +ukTz.?.7i<%oD,!`R8\)`. .jȥHB@H1%폎@TXb/&f:.cK4#1wsb=8|LfҖxxCCxt $2N(mt 5&j0T?CpmG2aEh9K(U/0q&{@AkX = =Y&zfͺ uЭ>HV^iPfPwމЋlxH9,4ٲ5f` ,x808!qM٠)]I l"10BTI##P$Ccba܍2Sc5#&F&G;Τ-gҖH#D >[3F5b( Ab${izз9&l^}p"F;b2!{asE +D&x#8j$,byb!p,dLY]ّ!1CHlp\q .U%NLH-Rdch +^@D3Hvgxq|Dp*жhcHu}67jʌ +?R#3I3< PS,> ؞Eq\=-R'6;9IAzɆٜI6|XdA,@W־+Y?[ړC iBF-(ӊ -A[(oq@j ȡ^s8j$,AE$h~?Xhڊ>ǁ-•a0|!St+R)5D@*zmahCFnlV7qm͐pnyQњ+{O#Ok R>5y]Nbs0 ;P^84~EJcil)%dtUY#Wq€rFtGz](9dj_8`]భKJ7HKwsؗ1TT..(rۮѵ}4f>z{ϟࣵLAϻsƌzfzkfL(քC ~h?j}CJ3E%/c_TVJ*pT_xEy\_^Hڨ;Wi YA"ҭ[l!Iv^يR9$Vd2nqy>=/<y;s+Nw $ ӟmWy0\*c<0gלuN@B! +G[Yu?R|^rrH/坑,~$K]Kn`l=Z5[7q|gUnr"~F8ߛ-cY đ\ೖ-K1Es)`[>zyH]PF(볫ܤ;dqFV Lk-zPߔJK{wWy~P'C8d,ߴ. :J@7 dzqF@` V" 6X ##  ZeWŔԃN~a~qfu#E".lйy.?Xϊ ;m HK=`(tu4G!gn_:^!B@zhCLZ8l$@ ++ @ e!OAx C8~ⷎNs]=/I֣3ѡM*{q6ljK~!}9Ym!!_7Hlް(Qppj`0GXs,D`+/xGF@ҚSШ +s=t##URuMT?|zq+[:sMnִ䂹33o\P7.B *OEtO1o,N4GO\ٞ~pc݌)GR0XQAl(f4 M)h@<׹L"]NJYsr,'%hݹv + ݆/U)|JnPW +x kFEQ`0|=t[ 1x}fpc3A&ŽpJ ~ 7%1,۰PRND,^HU0uf>7웻ñ]zQZVq6 S d`0XA#GVJ[(9 +RWvHo^0x3 bx +p`+gQ(^1ױ>9ږ騬*^x#qb ,Y2aHwcVMOb/f=-ȁ/} - `=瀾}k) +4`" C!)p3:mu@XoQv ngn3w:s+*qBV- M$NreO{}v R` 83JyMO4)XZGyQj{DM {_πY ̸Ӻ|)weUefᨈ.A]]dciI~\w<8/t Pg+e >*7E`S# 3\GHpχHn aKS[K 5uk;mɶcVރ iEHD_+߾U\'9GVXJ¬9M<~̨փI+qijL9%A0pcF"((`77Q#'q h[:-H,n#*Z_YXO +=Vy!pLYzY*K;x2}{"w7er"Iw:GSy\V[<6'Rչn%:溬'5mDtbZL\&$ +ܾ~vן{}߻<%E&gINDHJ"NƄdD] Q!c@ +d *>7 8PW% \ h`3^l:93cM|;egA :܂8XJ[7XI|0|N7w[{EkvcJȬi%J-Q#u|FBѵ<~ԠVTw|_JvV{J,͓ɯ)l/` R|Vxfm 96pL1c3Y0ߜ,/NP[@Qt+eKTe9ۏ-p +Ȯ|BpW$ %IHO޿y:~0?_(gD,rE}KcШ+)J_*=I,?!4l=Å[Pծ=Ğ [ }g OZO$o!xL=5dbBC) Oմ>RIr\r"#;@V2[kclzi5a#*Xm?;62.#:ĉ֙Li_8L+ +endstream endobj 171 0 obj <> endobj 184 0 obj <> endobj 185 0 obj <>stream +%!PS-Adobe-3.0 +%%Creator: Adobe Illustrator(R) 16.0 +%%AI8_CreatorVersion: 16.0.0 +%%For: (PsychoMark) () +%%Title: (Pinout.ai) +%%CreationDate: 2/6/2018 9:17 PM +%%Canvassize: 16383 +%%BoundingBox: 2 -107 165 -14 +%%HiResBoundingBox: 2.74414 -106.834 164.748 -14.667 +%%DocumentProcessColors: Cyan Magenta Yellow Black +%AI5_FileFormat 12.0 +%AI12_BuildNumber: 682 +%AI3_ColorUsage: Color +%AI7_ImageSettings: 0 +%%CMYKProcessColor: 1 1 1 1 ([Registration]) +%AI3_Cropmarks: 0 -113.3896 170.0801 0 +%AI3_TemplateBox: 85.5 -57.5 85.5 -57.5 +%AI3_TileBox: -579.7695 -567.875 180.0703 10.6445 +%AI3_DocumentPreview: None +%AI5_ArtSize: 14400 14400 +%AI5_RulerUnits: 4 +%AI9_ColorModel: 2 +%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 +%AI5_TargetResolution: 800 +%AI5_NumLayers: 1 +%AI9_OpenToView: -62 26 6 1789 914 18 0 0 82 117 0 0 0 1 1 0 1 1 0 1 +%AI5_OpenViewLayers: 7 +%%PageOrigin:-221 -453 +%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments + +endstream endobj 186 0 obj <>stream +%%BoundingBox: 2 -107 165 -14 +%%HiResBoundingBox: 2.74414 -106.834 164.748 -14.667 +%AI7_Thumbnail: 128 76 8 +%%BeginData: 7941 Hex Bytes +%0000330000660000990000CC0033000033330033660033990033CC0033FF +%0066000066330066660066990066CC0066FF009900009933009966009999 +%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 +%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 +%3333663333993333CC3333FF3366003366333366663366993366CC3366FF +%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 +%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 +%6600666600996600CC6600FF6633006633336633666633996633CC6633FF +%6666006666336666666666996666CC6666FF669900669933669966669999 +%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 +%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF +%9933009933339933669933999933CC9933FF996600996633996666996699 +%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 +%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF +%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 +%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 +%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF +%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC +%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 +%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 +%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 +%000011111111220000002200000022222222440000004400000044444444 +%550000005500000055555555770000007700000077777777880000008800 +%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB +%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF +%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF +%524C45FD1CFF7D2753527D5252527D5252527D5252527D5252527D525252 +%7D5252527D5252527D5252527D5252527D5252527D5252527DFD04527DFD +%4AFF52A8FD32FF7D7DFD4AFF7D7DFD32FF7D7DFD4AFF537DFD32FF7D7DFD +%4AFF7D7DFD32FF7D7DFD4AFF7D7EFD32FF7D7DFD4AFF7D7DFD06FF7D527D +%527D527D527D527D527DA8FD05FF7D53527D527D52A8FD04FF527D527D52 +%7D52FD06FF7E7DFD0BFFFD05A8FD3AFF5284FD06FF27A8A8A87D52A8A87D +%A87EA8527DFD05FF7D52A87EA8A8527DFFFFFFA8527DA87EA87D52A8FD05 +%FF7D7DFD0AFF594B4B514B5127FD39FF7D7DFD06FF7DFD04FF7DFD06FF7D +%7DFD05FF7DA8FD04FF7DA8FD04FF52FD05FF52FD06FFA87DFD0AFF7D4B93 +%69936F52A8FD09FFA8FFA8FFFFFFA8FFA8FD26FF52A8FD06FF52FFFFFFA8 +%7DFD06FF52A8FD05FF7D7DFD04FF7D7DFFFFFFA852FD05FF59A8FD05FF7D +%7DFD0AFF536F686F68934BFFFFA853A852A8A97DA8527D7D52A8A8A87D7D +%7EA8FD24FF7D7DFD06FF7DA8FFFFA852FD06FF7D7DFD05FF7DA8FD04FF7D +%A8FD04FF52FD05FF52FD06FF7D7DFD0AFF7D4B936F936852A8FF59527D52 +%A8FF7DFF52A87DA87DA8A8A852A87DFD24FF537DFD06FF52AFFFFFA87DFD +%06FF59525259FD04527DFD04FF7D277DFD0452FD05FF52A8FD05FF7D7DFD +%0AFF536F689368934BFFFF7D7D7DA8FFA87D7D537D7D52FF7DA8A87D7D7D +%FD24FF7D7DFD06FF7DA8FFFFA852FD07FFA8FFA8A8A8FFA8FD05FFFD05A8 +%A9A8FD05FF52FD06FF7D7DFD0AFF7D4B756F756F52FD10FFA8FFFFFFA8FD +%24FF7D7EFD06FF52FFFFFFA87DFD1FFF52A8FD05FF7D7DFD0AFF7D272752 +%4B5227FD39FF7D7DFD06FF7DA8FFFFA853FD1FFF52FD06FF7E7DFD0AFF7D +%759F99A09F52A8FD07FFA8FD30FF5284FD06FF52FFFFFF7D7DFD1FFF52A8 +%FD05FF7D7DFD0AFF5276759F759F51FFA8A87D7D527E527DFD04A852A852 +%7DFFA8A8A853A8A8FD21FF7D7DFD06FF7DA9FFFFAF7DFD1FFF59FD06FFA8 +%7DFD0AFF7D75A09FA09F52A8FF7D52527D597D52FF7DA8A87D7DA87DFF7D +%A8527DA87DFD21FF52A8FD32FF7D7DFD0AFF527C759F759F51FFFF7D527D +%7D7DA87DA8A8527D52A8527DFF7E7D7D52A87DFD21FF7D7DFD32FF7D7DFD +%0AFF7D277C52765152FD0CFFA8AFA8FFFFFFA8A8FFFFA8FD22FF537DFD32 +%FF7D7DFD0AFF7DF821FD0427FD13FFA8FD25FF7D7DFD32FF7D7DFD0AFF7D +%274B27272752FFFFA8A8A8FFFFFF84FD30FF7D7EFD32FF7D7DFD0AFF7DFD +%0627FFFF7D7DA8527D527D7DFD2FFF7D7DFD32FF7E7DFD0AFF7D2727274B +%274BA8FF7D7D527D527D7D7DFD2FFF5284FD32FF7D7DFD0AFF52FD0627FF +%FFA8527DA8A87D7DA8FD2FFF7D7DFD32FFA87DFD0AFFA8275227522752FD +%39FF52A8FD32FF7D7DFD04FFA8847D84FD047D527D527D7DFD39FF7D7DFD +%32FF7D7DFD04FFA8277C767C7C524B7675767552AFFD38FF537DFD32FF7D +%7DFD04FF7D7CC7CCA5CC527592BB92934BFD39FF7D7DFD32FF7D7DFD04FF +%A852CDC7CDCC7C75BB99BB9376A8FD38FF7D7EFD32FF7D7DFD04FFA87CC7 +%CDC7CC527592BB92994BFD39FF7D7DFD32FF7E7DFD04FFA852CCCCCDC77C +%75B593BB9376A8FD38FF5284FD32FF7D7DFD04FFA827517C517C274B4B75 +%4B7527FD39FF7D7DFD32FFA87DFD05FF7DA87DA87DA87DA87DA87DA8FD39 +%FF52A8FD32FF7D7DFD4AFF7D7DFD32FF7D7DFD07FFA8A8FD04FF7EFD05FF +%FD06A87DFD30FF537DFD32FF7D7DFD07FFA87DFD04FF84A8FFA8FFFF7D7D +%A8527D527D7DFD2FFF7D7DFD32FF7D7DFD07FFA8A8FD04FFA8A87DA8FFFF +%7D7D527D527D7D7DFD2FFF7D7EFD32FF7D7DFD07FFA87DFD0AFFA87DA8A8 +%A87D7DA8FD2FFF7D7DFD32FF7E7DFD07FFA8A8FD41FF5284FD32FF7D7DFD +%07FFA884FD0DFFA8FD0FFFA8FD23FF7D7DFD32FFA87DFD07FFA8A8FD0AFF +%A8A8A87DA8FF7DFFFFFF7DA87DFFA8FFA8FFFFA8A87D7DFD20FF52A8FD32 +%FF7D7DFD07FFA87DA87DA87DA87DA8A8FFFF7D527D52A8FF52527D7D5252 +%7D7D7D5252A8A87DFF7DA87DFD1FFF7D7DFD32FF7D7DFD09FFA8FFA8FFA9 +%FFA8FFFFFF527D527DFFFF527D7D7D537D7D7E7D7D7DA8A8A87D7DA87DFD +%1FFF537DFD32FF7D7DFD12FFA8FFFFA8FFFFA8A8A8FFA8FFA8A9A8A8A8FF +%A8FF7DA87DA8A8FD0CFFA8FFA8FD04FFA8FFFFA8FFA8FFA8FD04FF7D7DFD +%32FF7D7DFD36FF7D52527D7EA852A8527D52A87D7D7D59A8FFFFFF7D7EFD +%32FF7D7DFD36FF7D7D7DA8FF52537D7D527D597D7DA852FD04FF7D7DFD32 +%FF7E7DFD36FF7DFFA87D7DA87D7D53A8527D52A87D7DA8FFFFFF5284FD32 +%FF7D7DFD4AFF7D7DFD32FFA87DFD4AFF52A8FD32FF7D7DFD40FFA87DA87D +%A87DFD04FF7D7DFD32FF7D7DFD3FFFA8277D527D52527DFFFFFF537DFD32 +%FF7D7DFD37FFA8FD07FFA87DFD04A87DA8FFFFFF7D7DFD32FF7D7DFD36FF +%A8FD057D527DFFA852A8A8A87D7D7DFFFFFF7D7EFD32FF7D7DFD36FF7D7D +%7E525252A87DFFA87DFD04A852A8FFFFFF7D7DFD32FF7E7DFD36FF7D5252 +%7E7D59527DFFA852A87DA87D7D7DFFFFFF5284FD32FF7D7DFD37FFA8FD07 +%FFA852527D527D27A8FFFFFF7D7DFD32FFA87DFD11FFA8847D7D7D7E7D7D +%7D7E7D7D7DFD21FFA827524C534C4C7DFFFFFF52A8FD32FF7D7DFD11FF84 +%2753285328522D582D582D52A8FD10FF7EFFA8A8A8FFFFFFA8FFA8FF84FF +%A8FFA8534D714D7152A8FFFFFF7D7DFD32FF7D7DFFFFFD06A8FFA8FFA8FF +%FFFFA8FF7D5329542F2F52581112113A52FFFD05A8FFFFFFA8FFA9FFA8FF +%A97D52FD047DA8FF7DA87D7DA87D7D7DFFA828714D714C527DFFFFFF537D +%FD32FF7D7DFFA8527D527D527DFF7DA853A8A852A87DA8282F295329522D +%1211331152A87D527D7D5252FF7DA87D7D7D52A87DA97D7D7DFF59A8FF7D +%A8FF7DFF59FF7DFFA8534D774D7752A8FFFFFF7D7DFD32FF7D7DFFA852A8 +%7E7D52A8FF7DFF7DA85253A8A8845329542F545258113A113A52FF527D7D +%7D527DFF7DFFFF7D7D52A87DA87D7DA87D7D52FFFD04A87D52A87EFFA84C +%714D714D537DFFFFFF7D7EFD32FF7D7DFFFF7DFF7DA8A8A8FF7DFFA8A8A8 +%7DA87DA82E2F295429522D1211341152A8A8FFA87DA87DFF7DFD04A87D7E +%7EFD09FFA8FD05FFA8FFA82727524C5227A8FFFFFF7D7DFD32FF7E7DFD09 +%FFA8FD05FFA8FF7D272852285227522D522D5227FD09FFA8FD05FFA8FD11 +%FFA8285329532F527DFFFFFF5284FD32FF7D7DFD11FF7D28774C534C5276 +%A6A0A67C52A8FD0FFFA87DA859FFA8A8FFFFA8FFA8FF7DA8A8FFA8532954 +%2F2F52A8FFFFFF7D7DFD32FFA87DFD09FFA87DFFFF7DA8FFFF7D774D774D +%7152A6C7CDCCCD52FFA87DFFFF7DA8FD09FF52FD057D52FF7DA8A87DFF7D +%7D7DA8A8282F295429527DFFFFFF52A8FD32FF7D7DFD0AFF52A8FF7D52A8 +%7D7D4C714D774D537CCCC7CDA552A8FF52FFFF7D537D7DFD07FFA8527D7D +%7D527DFF84A8FF7DFF52A87DFFA8532F542F5452A8FFFFFF7D7DFD32FF7D +%7DFD09FFA87D7EFF7D7D59A8A8534D774D714CA6CCCDC7CD52FFA87DA8FF +%52A852A8FD07FFFD05A8FFA8FFA884FFFFFD04A8FFA82853295329527DFF +%FFFF537DFD32FF7D7DFD09FFA87DFFA8A8A8FFA8A84C4D4C774D527BCDA6 +%C8A552A8A87EFFA8A8A8FFA8FD18FFA8522E522E5227A8FFFFFF7D7DFD32 +%FF7D7DFD11FF7D27FD045227525252515227FD1CFFA8FD04FFA82D343333 +%11527DFFFFFF7D7EFD32FF7D7DFD0AFFA8FFFFFFA8A8FFA852A87DA8A859 +%6F9993996E52FFFFA8FFFFFFA8FD12FF52A8FFA87DFFA8FFA852113A3312 +%2DA8FFFFFF7D7DFD32FF7E7DFD09FF7D7EA87D7D7D52A87D7DFD04A85975 +%93BB999952FF7D7DA87D7D7D52A8FD10FF7D7DFFA87D7D52A8A82D111134 +%11527DFFFFFF5284FD32FF7D7DFD08FFA87D7D7D525252A87DA852A8A8A8 +%7D7D6F9992BB9252A87D7D7D525252A852FD10FF7DA8A8A87DA87DFFA858 +%113A111252A8FFFFFF7D7EFD32FFA87DFD09FF7D7D7DA87D7D52A87D7DFD +%04A8599993BB93BB52FF7D537DA87D7D52A8FD13FFA8FD04FFA82D333358 +%33527DFFFFFF527DFD31A8FF527DFD0AFFA8FFFFFFA8FFFF7D52A87D7D7D +%524B996E996F52A8FFA8FD04FFA8FD19FFA87D527D527D52A8FFFFFFA852 +%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52 +%7D527D527D527D527D527D527D527D527D527D5252A8FD11FFA859527D52 +%7D5253527D527D7DFD8FFFFF +%%EndData + +endstream endobj 187 0 obj <>stream +jֹ}R}G dď+A[}TP8Jɑ; 50%r:,0TKqQ{.*z`|Y%Z\ nz QȬ yc__7˓Z~tshzKԣ '^ǖ1JJ5OS~7BK[{6ȽX,qTo3*DhvV&:=VSo?޼K]~-L΢ + ( N( ս<}V>k=\ʇ͎ގvX%۽,u~/gԮVO]<uwmf43+KlCu$:NOڅ[fI&!#~#,N,Lb-uvJ jFˬK\t +DK<'Cmi49^x>.gݡ5Sj Ug7 `2Ꮁ:8fڟþyoN.P zkfӋƧ5>d9|kLT-ެة؊(Wxr4*iY(xr&|%@R+a1@MzS(ן)V1.:1j51)Ky}XSLTjICCtȶ2,2Jv{, tJ:(ߥ.{(u7Hˀ{;Eg[H#(6|FIPECZ 5&B+ +=s4یh/u={8`.2*e +Յ5ȉar(M—@VnpF@k&^`;bˏMNȘK咹ݖﮮ跺>&Ok)?o^_"X(՝C1UJm(Mbg'@QPv3. +MQ` }s/~έBDE3yi<:m~âg~ث3$)G +5(i:s3myH{y~m aگs19,:'ez/n΋k^ rsyby +`_!xR7~A4ϓ@+\Xո']eEȣ㼂Q{v=Ŭ &9{<4i;,c^{1`~,/$.Du ۀn[ODL}PR^/ޭ$kۦ_NHOn!6P6UwvI8gՖHqR5 N4D&9˟z{س-۾. y%0=ojp\ٰn$ӦLjQXYX32᧱3c|~QqJQ!N˖ouh!Ԏjͽ`63O}/Ϝ/VeZ^8W7C[f2S4KT˛Np2ɤAo +O {*HuD*Ib{ߞZ!s ~ra3uwR=37Vkj|~#'K^!){ӡ%=0=knkq5AZ Kh4}>m&_-^NqNJM>\eK"3>h< +?H9_5UzqI\gzSA8=N|qoHgvClz vMF#xM3B0zf *^ڎzzֽw~ޣjzذ6T:E+Q liq;]owE%;xUG,{{ ] 8%y36 kfw儸amzO8UdPM啺3ڳڣ@V$l2*8<_RUtOl0iiSӊ bQ,ˏ@vqO\M̑V{{ +yt\6-94Ya@~5Y,6g9ל-G+b{@_)qE&G̿rһ͜1N}F+{lbQ$WzunU|; M<.\eFhqIZ,jjQҕXx9tگZI3ub {( W=W˜g/־0venɸzwRI5+}F]c;v 85Vg`/>#P3K뇤iuo6bY?~G7ٳ]o@(M +VoMhmFV.k,eKo{3N=N#..e8+6r/dR3w[x[h+VՔ{'5|"ݾJ~+K!;W%RM($ݓsFCKzLVZ{<^vk +gUmZ/o9_0 q-#Co"A|Hⰰz5!6ofC9+M#AC6nӬ+ +N' [cЛz]FXmg^ޞnp}eVPޭǀHRiX*6d IfyYsJ +O^J2D+_gr\g՞{IJCx!rlf/gBޗMm]&KޫF{UYTVl)}("ߧϭ%>a2Ti/iOxSzRpcNmQ{k;ԁH-P2J[Eɺg7?koq*+zUfp F#$e-cՇ 2 x^J&>BOX b[7QRGVa*yLONcZ03U[Gm˗89E@L;p| j2 dۊ)DB_~x|&DT9#Of)v0okr蜋ux}#XfS?`/9-?q%Iy@*R=BRQ{lL˒ +Y3:>>ރ80{s8en*YʓBP4 R#lw?m>m sܑʁ %&;lS׷ּ}7Dtޙ6(ͭ2XAsRT\++@YHX4;cU{q\sLƼ ӂ}^Փ/V<3^AiK;TM&gq+dj6 ::O$%5(0T4qbqs^ y^3|73cF|j#ҧ.CsZry6nQgL-(l`g߮A[&;s?5@/C쩷$pFoW씂ߞȫdJ]-gqq붠NuYnZl[&?bkQuy֬ɮ^Ejo +ʰV#~='Q. Qh1jJyF-Yj̷KOsZ ?=Hjƌ5+fjgi-3(<ۿ$g5NmGpzޗIeHQ+efK&+wm+J,S=3믦vݛ_nnjHQ`t05π}aR+e@fn6zb@+-id'Ju{m .KǕ&~1˽^52lΘʔeb<`/FPJz] z`1oBL_q'W`QrCSiH$v=ϾyE9[=umoifJ5nX^=oE^im:ܸ_F~*vG7"?N=d6K`=!@19π#Tg +}˅}I~4r +VhuGGw~{ ot&g7%fX995`1ܫZ;=1MȮzS;Hќ8{F,pPZq),fہϨ'||#bR_fg3==-G=.K}a.yB>'EisJb}6F 83[Mw! + rv}ɣ" ?=꿭,}97Զk5YEQQ.wW)gf]zyK%녻R2?teˋF9q {|~߹.1n箲-7ݵ+M^̲ L$R#d yir1zonrT;E9#͵')fe6$gFup=vBC-?/QQ[~aOO?-ы;k }kVK^M0i0OtJsE O{Lӝ|y*bAM{"ua;)xB7OiD?ܤoZ9e)pb2tff7 +>?OqiF\w<#Z~R٨$J5.jNnyqyZT]>|q>Gs{c?um3^:ݫ]LjIlFqE; Pj$6C7&E)ѽO"?ţ8^_RUԟrOb3:uY<]į݌C~2%umrk3}^cO2S]Ŀ:zBniFFa_MńSk6ey@smFeE`nYBm7Nd:iKO_c]bŬoQw!:w% Z c9. n4]Y7EXc[mN@M\?ڞIaGj^/R 5 +91vOF5=+/^!Lq;9!Խ]1h3\겒L7db46dl [$i <ֹ뽠wl֖-|{9TI˳,L^.޸DYXB'9RfZ Q2=ڭƾ%0>D=$5j)j,ͺyCTh*S0$8%>+tn& +f^ƺljKέw/uB i%Lkw7>S3_H\}~>6׻]Y6 ZD/ Wc|Jor~꼎+ +rk(_X}؀3ka%@s> Whh(MJhs +P{]H;X?Za:v%L )kroH9UJ ;MO8Īٻ=I.u3`s7Jyj6w +׀; #=?'CίY:osdLxl^Wu* ]C +4Սg lki_xK[hу*\yG{vNk]B[7[| +Mx8S(͗-3Fɢ@kF@&ЩU 8ySfGa6!c&qv[FWzWܒ#9gCݡ+J*t\7wHNKY;bO?*'|mSrvSݧIF wͮnOY\Tֻ^K*|nK!y_@xҏEpv$@\SZ٫VsuvW#=h4m̃EjwZ@GlM:~%a6ɬ+@F}noI1HmT|4פi*\x9vۇx q_;x- E^o1Iw\rgq^]mRa +2TjJi(L=;UP]O;Nlj9y@B#)M' !U.â*?O[9s E%^9k}g>Q,f0XW,ki?CwCw 0oCD²_՜x;O68jvO v3ڹ& gq땉tW-IM"?[`BfElMJ~E;`_5@S˴<@67H3#V)SHVqoJ|XcO`^;cx^ ܻBYM~1XĝnF5E3Y^g4c~(s]ds_Nf \PL.|K[8jwf;u>NW ˜էC'.+UEsJJiIxL\'Ӥ&Me@4BM:Q|_i<e.8xLyus 8=>"b*9\\D\ɆtM %a~&CLyx2`p/Ov*Āw5B;-dX pfhh]~ f0=mRěɱ@zDQeMsUb >l2/h1YeTxmz6ڮPZ#N A,*}h?J G3?6:iiPV1mkn}}XV ;:9(H|ZQl2E:+sɎ.i=Fw'6n֣| BF>z ]BI\VnJ,oWnWm@!r\n:WqҎRKbr0pꙸkt=l:]/y{jC |m·}b(I|wO$۫Apxj*]uWW3"Zlzn㦹|nwuPWiXEZLqL}ҧRO*g^}/:F!flo )Ɋd9+Q/-@Hsrh#*~v*+@5fY37 rݦ3lЧE.#{w b3NZ*-YlP"*-'#:Wt N`N9ocϳ>1;HFlM5]+m9+;#8V5L69ijt>*z؉،@TԨ0m|*,[C\EmGt{!3ȏ ѢMdz;+3wٮ#[RɣT͠<fF ]Tv-7-:"s< lkE)*>r9f==X5yoʽ㍠;@n_=c3=~dZSvte5 +ˑ*/=̋(&1PU%FϢ&U9O?Vrmf.-a̮5:\SBp(.A.MQ +|,m6HyYfNR=O.>j=eM"rǕת$*cQ)8q9Īs`B~U#Y荆׺]j6q9͊L֋_qEV λ]>Y斗qm;L3|F '}VoTZ=i-RwhI"5:`f&4k}p2tEpꦮt8%!Wi + qm9 y)2\njS?jt_|,s#"y%( o=\K:j.s yzS R״T9m#);Sj5k׍^ɔC9^T^;XySĢԙ֤Lc/t{t*t3FZE6PjfHІ$/h#b:$/ilQ^ZmQ/G۬6K%,2[Wq)*>]1gR;sM=wo$\;?$a--XKOs6+iioZ{:W +g(WBztWJP G\|BD{Py;Kq4&=4p{qBNAi4IBN ;ic#܌@P|@k6h9@:|F +@ +,]YPrd&ՁvK"MCX$DXG`.s<.{?w/nA=tybPJ}$Ȧz` /CMy $"~O1D$W{ޝ,_RH:~P m^L~hhuq$@Kkd:@ExK \)%7[ztYN@Zںc5@ 8貴2zL" ͈,@)M8C45@l( ] NL[yݻ/cuK_m?oC}VWW[*td@i ' 'b{:[(c%nYɦK[N7wxki+ғcz費|{(\b +h$# dJ]1֭wy/0=r[l$G/\7f/'ξSU6lZvTޣnqLE1ş 3/ivsªU> za (u'A[ ˵r:͕t sߺ.Waq/+-Ev|몔XkքcJDLin~tqӦ{I/IPQ:#$: +9}B$ ~ξ)GZs׌)L㖓51ifrꤣ:㭏.~2%+ JCWmg@ #ސ#V8.Qc[m%l 4$Zz17ˇk4Eĵ!~pN/x +{N@?g2}?z~F5pp`PNEsܔԈl+r k}}'s4eߛOz糴fHә~oU08K5294zm=oˎCfӊNs3+`Ά:v/?g:$ }_qݤ΅J"\c+Md)9ceyf~#NY -N#k|ז[ +hE9l=@  qh]=.r?H3.[mX&P)?^2;'>~Y/QVR:ԖKu;kZ]2B'>>Įm-!_p"u8ǀP^Zsxo>OhMM[TVq/NQ0ƪ"z?9)k.O7g#p>)+ArU}+fG + xˋFPe|+Xo㻀›ޮޓjj kWcq*:eBf~Tዙ|T]cm{/µ_qwrbTHQt3+W<v +9m3Ǐ=4cL.G>l+y+&5J;[\0huGm|AImb|c!+7ْ-]q=Β/5*2MJ>~کyzl;_#S5۵?3@,~*7PGՇj ril/wCN2 +w[Ph9Yl++xC$"y-u+`_hj%|o2É;7j_a%Cqr?օK]ʙx Ljpx-nE_ƫQ{TkuCR{s3,LkjW/Nl; hIu G4kȑ+kɢSZNs/JLMZMw!IƋ& D̷r2BLg-Nezd]Ht1r^غ3swA +{eSJ"v K\Qq;sbSvW3ƴʛĮ4`5c.˅iޓL[3E[T͸{mGZO!6ԁk#EBZȪbSɅWyX *U(ֱUxQa=ٮ8~|x ?v Xz5L9<ҋcף [>g<h(Z$Zm'I@-BP(5aBl]9f4(=[PT`-KX_-yXxFܢs[br!)l ޖ|`lت0?ZlװS 3>:0=Mz-ʿΝtKo_oV]h m>/<;`zn;[8Iw"67Id3 4Yd5F(5``Jv_?fX@KƫMYsGs{2XByS>s~%r Ct@(M5Jdd5 l3#eMwH:O-Cswk ;K~ixMvyOK7g ɚȉk2'c7 IoO|mMs*U*O?ֻ&zA͟ ջw>ᾮKϛtb%;EȓE&QK{MR#=Xc> W ~CR.~Rg36 gM.(fb@gw}5r&nR=3Έ {'|Gbn|Ůڂ,,i1Og5EwWcۈIY2ӏd`3E9< ,Y~v 7@8OT͖U +a/E߻ft81tk׏ҸMY?;j K۫NythDZ#- ,Rx`ܛr 1%7Oɖh̟W5*ʤy.49ͧS~@S]&! .םj۫W6*tUZrO.gV!zYk;R\9\m.%)&ޏ'GngNvoANT+:uFi/)Se }}x9esҙgH)eT)}2w^S8!iK.ȎD[y8/<.:x˯nb]kw΢{ 8Q']װw٭0ccKNux] +@qk̶,nѷX3$S?pDOf" qxn>8k^3q>%}^r`&Y=d[ORjЌ{J'I_qf$=IXw\my, +Y7efhs /Bs?rS}dT!ˉ^^yex :V晜v8j*tVJʶ#iƷf +,?ˍq?G#ljs&TtGb)͜G3]<ߎy7|`g ,F)!5Ǥ[7 }e_m03bOsk08ܳn:PiN+( ^_YkY˓=L#lbvTJV% U\ q,W cnd>z'y9M#v'm]UzףRZTԭ́hЙޤ8G#I]φ|n7|}k +}xNƦne}aA9ؿdx_fS,:aivTvmX-c|.;+j;\\ުςdC)gSN9=jY',եǷ}P?0cfqԛZ-^v3zso!I +ڙ{C#5L` bUqlBA~ſ&BC3̝ӂ5 sh`Gzج Srn>xҫ3.ʏS +e.':!4c:ê淰.ڶ7atwZF!;t5¸1k9YW*DvGTda"NxSzM)!x-ӌKV8MzYuikVWee_(}ǟy#,nsJc 8LEAY]=GZ(ڟ))aۿtXbnILjXBnF / }褏6R fyN"a'z 2Q3: \SC}sh&Ð\StWz46/z)}Ve6f*[]WWSLж~1j-yc~ދFfǃvgcᵿ&l=w;3PdƢY;k F;z@5c}TE6bZɽrr%_UKdwI]`3EXX8Oj,kj\H\ 3whbWz55ӵٯZ,j:);$ z]dmQz^s TxDޖrߗi e'0ߠ tH+L$#q+o_\tIaOuOߵZ=\gXur/\hQ-O=Nΐ +&Y,$|-A0g?`1Xې1 ңPϱw38GsjQuU;57jnW51ʅwXSX-O-ͽ\ֻgf7s{ ,@+x\^UR%Kv8`M1_ I2i#p)3l%k e`f$Bg S+@4c/^$$ArJkw+ܞD]>9l x/ d ^pO| +n[g%(L$XdJJe@8% <?Mc14<(h&Zԫ$pgO HoLv +K#=:JRqi򭜚gQN/k`!a4W3aH$)x6H~ h/3t% @fhd%^Z " D)H0$d<~@%* {[*w')I*碰R{ =Hq us?f}ʫ6@Q26,b]}h!Mlow^jnnT:|R9&oHQ(IN x#A[+X;L[Xr~ `vZ9mѻTA8uaW%7Fn]{ +|EP9={ I2?G>ɬ+rc7c9 ᑬg'co5}V=4_yZxnc NȃڹiU>_o{֤{Iij]yQ*D;l'š7$o 1FFRfB9>Gç6󽹳GSMýfSXK ӕKQζvVI?~m8ZWRssp0ugoHg0ꒆ>zl{@|GP>wwvOlZ#W0̕Jf kH#rcϥd-|.>u;<6k8rX.)axn9zgO. }PܢEҍ~˝S, @#'l14㬷37"e{橘7Б7,o)oN6`My1*u+0y:o\x}gÏnU%5 ܨu7Bw.AQP X˛K_{\gdi/ji +(j+nWl'^,} +ݤn@@tS^5ΞWGmh?eocOzYu)KUrv4Xh 9qn2*ֹ.fY(Eɩs:VW +ϋ7\W~n/dsD*;CP(x-8Uag!Գ%غ nNQ{ _6:+G\k`JwT6b ^seΕHqS3Lk/rd K1ENæ{\} 3NwO1uP#4⸜fKp%PhWFC9nTf1M m\^?wxfJRgǒ I["Z =&Y(}2`7z$9;ZN7%s]A]6/x(ц2>᠕.+EU+d[h^2){NÑxvM:g2n)^We~Ojg/$R[7|!*GͳRok͌b Pm쬶ݓ{S,\W +JjR]o_r #4X~3.HѨ !?_dWLb59ol\)fv}n¢XBqp8Ci> +3]MS)Y=)JxQ#ϐLzE,P'Ky|:bv}{G+9+h90-iL!iKRu'gZq.~>0V۴ +MVSq*/^*癉).RFw} LKy}R`1N=0#XO +ev[/>$7v \z5θr-+\:bYfV1cMH>"ne^ol.b\I]%~ƴx;F7/K?sO_wI6N[PiN|Cơ5h>D ZfgU֊RS9]VStڍ%uu }lzF?I ){F Wh~h)z u^tڳ`Qcw̭3ͧԝgCA[ {/1ZYvMK* ; OŬH?^zPkҲf3MmdmDFĩRi=`No3eG]6| mxMj75j_]]~A0;ձ}۳BԡG8JxfD5RVi:!,΃f!X4?BaG*j˅LR38خj߅E|sw h_d]]=]4O]~D?5A89JMҝ:CƲ87"X ;F]-,@|+6z-d#1 +yfg;5tLzfW:l6C[멷iOṙj%7˅].* P;(+^x.aaJ n>tg|L^ǿaӞ}kbH{6#]ؿNGt/n{l#rӗGOrM +)k3[%XvStEߐb ͬ<ʫӽ@h{RPdjYóQ?ΰ zbT__ix9+P{=e̪5{*)TL:̤nB45}?neџ$ =fxշS%@Z@a~zoXȚ qƐٟA`2Bm7%s !y\hYXWǘBt&?m  e7yBC1u~v  @ %dTT!:¹npCL$ekSOP%x".>>$>(@Av lH,?kT8x9}! +n:I.LKE>)< jHBCcс%({xEOsY Wȼ??dDp ޽qO]9n}=\*FY$T-,OX8r.;=,7v6AMgLd(OT&H Z-wXMDc :?H0cW1W9&@ h(":iz/%;G 1y +$?^/LjuVnxqLANhwOܞ$7@!4KCCn؟oT-iH;rL4Sz%{scx_SxGq7'MR޽prvY;{w9{ f9~s$CI_&RmxӚ17L8`+Y~҇NQ?<;cUěך峝:]"i]Z"}q6)?gF8OUwar?(1e{חv).,OY) y$:cOsbd6>]CA +u1\Zs^:wbp!drBx^!eNӾZej}Ԛ)Zc7)v {FtE>EثTKK5N#`hr?Zdvx>4lck'^^DcԦ"Y>ZɪႬ3u1.u(5uRU]t)yEw4:h>p~h5b!qQn'㮒m.K6lZK+S +,J|( QpA%QyĪEQcEꋋ7nR sW+\"+ |h8qnxs3}Xh:u<**Kdy?pg-! IS-*pYqSxa C~rʛٶE/7۲t, +3ܼݫ ʹ I+jgW[X@8n;,8lnGɬc.7K*8ʙ8]+ lDugMCD͢O'0!,=L1G{ *_>:ڬ=Xwu9g3s:t,7NKyn2t۪G JDY a}5,B6. b~g]^Li<)$In^Sm g W$u^Oqns3-W*y~?Dcb.5*V8T'r5|75;$m  S}OKިsgCiVIRP 7#HdRtBҖ{AOʕ)lcSAhp+6z(t,jp# +q29jp2i̍ĒX.sbyʾ-K9}K +'s&3lfKoJ:v{շE; ~LGںff \ Jξɛy*;_rp0N~6*n5؝;T)PK* t[AC.Nrmo{t'C=˃ޭ"YDxi\X˨&q>*o6ၮFAs,_zo3; >wͫ ĩ" ʿMm tЪU;.>Rf5TUenǽr2+;.4k_8qԬQ1;.9ƙ{ pϲr,i_N.:‹G[^toN1B 4}5ZL/,oXJ9]0W08Ze1ښ^5,*ǟ=qU}׼tNߑۃE 2NC:r֢٥^7<0q^2\'7{⽻Ro2+'?RFFk|7jv0 ڔOǚ?ܾ7]Gfnh6Rtk({ x[>[QΗLH~әs"Ko^U&߾,ot)b̆|Lܣ^2 =0nkYgk]ɭXts2՝@P?/[-~`|h>Z_;5ܶT9ĸH?&m +j,f-g s~QX7:F'buV4Ka?PF.(^jAqEGUE fN0~0UL>[]P7x+V}$3ms#36s܂^233 + h.Bj_< J:U#mJxW4$y}t8Gx +Gc;-PF3hӓ7ѹmcA?&JE}O] &U(>|7N*0)ckeO۷;uW2ԋϴr8n?m{Y|=NSL|V%Rg,@.A 2(L,bu  ?.7nen ;z=yw"& gɘ\ݿViz1pB dz幗z0{ +htҨd}c+,3:Gj>ң{}Vl}nμ[yDۺ"o:\^]ƪPC:wW郣]}=Қ&Y2O6& 6<|:L{`v8:zqh4ph}ąȢ-qb̥anpfR@n;bH35KӨW_V~v9t Х=۟*&a_+QNhj>pti6&-cᥬ횺tHttȼS;=5wInS6/,K/"ԵO(h7X g8'}7j[[ׇ~_OzA~"X:HkaֲlEysu#jsf~@'7T _x5).'-wfJzٗltvFqɺ3\`tտC]8ޱ im[f~ZwrX泲c YؖLFtQ(SQ/T0q-]w'dEJa%z󧃶'3+{+}/nF,˶8o6.V%S)bWFXᓵbfim,riENmt忐|\mAjx2vlt[ydxg6XyTa@ $!z"󛋼LkF@C+)疜Iץ֦k|2Ko-!R[zuQ|Sſ4l"5bb~>fy?}7֫3a|Əz7?Ԉ۝"on$7(e9dZ-j +_>TUE0 "** k{:kHU %>UMA236g +)O'%.j-*w:cH$c.s Xef +jOE'.st?_iNx4U1}ɋ=ur$X(˟<Ԗ`( G*+xNb )YPF(eZ*K? }owBlBͭ份yvɩ=y~BǓrxUx\=r}Kkt7qQ+re3wch} ԨEFkHv΁%;3Q|WCo߮h-2HNyZ:Y92a'aFYM]GVcR^d爓>&J +i⛨:_ĻW$3D>Kaau|B{=@缝]k!OKy\ap6#9n + .eb.r,*;@ ԯq7O9v +4;sV^cp:+ֹಬeTN3ۛewL7,Nv1b2.8sMQmRq{>ٹqIʪnԟ;ի{Nb:t i]d4:F2c>+5=Dlb*ˢ[}Ao|?Xn/u{;_u%D|4{l^_NvRb:/<1~w{[vf'f5RrÌTcn4ɝ(#(g|[h%{5u= b^]$ x\|Թ`=_YttOӧiu=ѩL12/Nq=Ț35tbb.㭢}IPy3 fC!p7+$}@pr6[}휒={˝VʮM󥮦\љN侻OM}[hE*sAk$mu!78֤,AMxI&YQja]hDDS+xoPG y< +eBO|m׫0:b#[g]><_TE򦉼cU5H;;Cٷc%h)İ9hEQp`>`֐иY8 R*QCڌķ ;.6K/iȿ +{ 3_.Ka шWYY-7֧ڂ Ş P!^l~C- F}{Ї W/ܨ +kI`F{{qW 'ܳko.1Fɯu'ˁɽ]ݚ!C)e: )qP'(-IlPjXTv(+gwe'USO|{Z{Pñ|#n[T/',S*-ulPsfY)ӝARb\ b-!`1xzۓ%-W/;VpdvpLԮt'MܝmN͙K\J-[CS:#T%u_L"p|{4hiި!|}1l` ppcܱ,cVF{Ywhqq!(]Æ(87 +>;5]Cܰ\,V+$4#bн%9Smu"܅2O0"* +8oB0Jj +NJ* +~*t+&߇cnv } L"HrV I^1kYwASܘ ;dSPJ.w_h^}o7*l\K\|>ݒ{B[8șjVBBzmeU4ZfkJq10hF1`q l$Ibɽ䎷R(bD4Q8I#~RY<*jLMZ=&V"+-,}L)g,JGYtJw"PܴZߧݮmoBFKWB~x^KiJzFy?&qx_i6َsǹQ4b`Ρ[k߈drg{[|,nՀSgӷT:?f{ǤB6Ԡ^ܫ@tCK68=?q/FqTQ MyJ>>KX}vY{}1nfޗ̝%p#k9`3`Zr7l~s6'|z7S(/6- !s~Il:B\́ Ы|xf|٤fGIP_YLkW11ۗKoNxV9℺*ͯC Z{m+Yߝju'u/i3?t_(i8 x<*WwyAדG+ W{;%-6Ъ؋ڢQC\h8\b W)- WGzr]ɀ=ϻ;鸮 '.-QG缓:g. pH#y{2kkˑU~(\W(.10Qvo rݵ* +6DQO|Zh7á~"nͺA}Mg6x׉zC6*2[1W@5f/ea5njW.=X:]Ơ Gil yz{nϝ@^7 jSܟ|s<+:m){I⚼tV? ˣMc e<ٜÈ8/ FFzOGRq1Cҽ|>'/χ GNv!Xx׽,֒-\ @;:!QKi*?Li;~^?$a_#+fEp:ѶzE>'vo' Ɉ'.57<Rv29V'.3P:; 6戱MΦCOv㯠Cӫ`>[km6[S6wELÁ*YyߓbiIԍxKr^z\Ƌ.͜dND}*Q̫Nת6R_?v؃LF&Hc%Lu72VΒECw:0Z0ڭOrZC"?ĥ5y~A?Hb=׾}XWzQJbETۍv],N|]LJY,v_,pGJ2\ it-҈Cp@&~_^^6\?Y<{wjx\cx,..WӫmjJiV,n;Ծ/\obz +\QR" 2>=h{;qm׫wD@޸9|r~TלmX,VHqaA>\yRxO[E/} ɑwmI0[G'&hpA>7D|30([`P-b3´x7?'u;*>fVv{I3gicnn"A^ 0+KU@ ɷy:ۋ+f܏ +ͅwE) +8"T~dOuRSI&WcëOLֶuͣ :⮜yczݛqTDش#oysGچgF[|Aٟ~4,3jd 2{&ӳA0q?=$nҶzejDb_"+\]>+U1k=Jg$aI}~ 78mE +C9!/;+ +󀐹_OxzБG8Wې::XsZtF~YW+ZDS}7arF`zcpXbQ^2xR*C".ݜD`O]9xk์!v|a6;lgfT#X5|!}!;J-#u%hMȅ `!MY +UFMCV'BgA|=3b7ٺ(ޣ0 U׼)o郓L%g鮱x-*9H m]f?ra`|KRȉc Bm$}ka0aXD&wP. +5~O;ļ6v+/ueρI՜OC]0He؅5ZKlIULk?څP?{! 8:,~>o7II}^e=qb`|)&spÍ7 V:謭]]\tk +6cdf J|$4'{JLZ[ox~ԣCwwNw5=$ye)FWwpiНQf;)ý.l{uǵܻmfE;zQαVcAgw cʆ (d7_ {!|[YЯ~O߰oE}Urۙp 7w=A V>P47֤易IAޒy9)yۓ1UIV+0ZP%rPǭwycY3f;F*Bm-oZjGv!%tFK<;]k]5A]U/Vj8vI=XѺ=q :N5 +|-&|J;Jޫ>[P#n f}mIYy}UmKTu5*zn+"eHX_z73Z31>u|XD7ro;p|sPM2"X +hjXMB,x]Ort.\)&42E'~уJQl!bz!mfqXG.J:o77 ɣם9q +LBU|+ ô&Kǰ&/EN/*٢tvB~g]i̙a!~] :<@/ ({O`]7N9}~?WKJɜcrhI"fZv>j4VwqBp卤$zb{EέTT2,@DtRKJD_kb'mS TI¶GoB MJkM{YzTqFZ_0 tW~i3?!*&Ja^As4^Da9%ޅ"E R(j.}Iy5l`pO9QB@Z)uDWm U^rc_KӶ=' ,>'u5mUJU. Ή=?kS'Hߤ*Ź~o.1br$|.tZbyg 7]C*aa[}#gWU8y/UV@x6% M8~oq}Kg!ea.Ř⇘Mo݀ + h̆B>GF5k fz;#w׵B1v32rsH8itzw 2e-~SٍϠ'▽*r ^kWl \¹*%ŵx5Ί߉bo6[kߨF> PW +3,KqoЫ@0n岛W Ϗ=ȞL#WĵͧݏC+swB﮾[ ۛ6Ysms+Z'ݲ%9l}`x)bUr^S{@0VSkHg2amv>Umsk曮r:c^ɚP[˾ UO܊5E{)uq?Bz4_BKb𘽚8?r+jaϤ*۶m96؟ZHҙ_GhzgvjU~Q-z[q Nf)pgRM?ŊqK\ia+< ۯOťʙa#iY?o/Vv\khmHkRl'Ygٶ6㹑;.fO̐3m:LB#[Ê#7 ΤhIq^=˞*~H}%}1R˵ίg׏y%Dnoik:,WB_\1h$ߜ?xUiT).X;ⷴ~2>.h,bٽRk"֤C/jM9>{pc֛ `|v0*=46a/Tl ~,pݥֆ?曛 SeJ vˠ* +n} JUz~- J}6cKWm;rACng[u6kf.={MOl\;Q:=tӴX}UX1Yر%:k#=*|Yz[=w  {3-.K fw m旗!N\=gl澤yW'47\t4E +7%dŸZg x?e^!/GZS^NbaoɱBm|axN;{Y|d b,'ڰ2dX;b7v+u]wRù9)U=P2PǗ:/iQ/P,xTy^TfL3[5:BHZ-o$ +9N2k|._m?d֗JR{_O++%ؒ۲dؿYt>/_cs3@c;Rc|É+Cͱ{#jxXeVu8"]lF/@pV:f /.Jt:թD߆)lo+c>ܛ.!QӼ +So5bLෆU,'2ñ6儙 MՑELm^[FE=y.H%28t)ޚ?mzRibb7fUZ=sWӥO`:HU$K$Zks c}Dƒ+ɆY +M66T &,T̂h...~ ' )3փ_Dr,dZt衷,}]^j4z';nY)Euv7)TƗT`cb< "J(cd^$vnM7*eFH/<0\IxX4L3*5y +B^dJ  +OqݹNV}B~Ch'm2f{(CU`] z6}՞[ ֽ sUϹDO/m٫wvX(VlͦSǷ!)ufA\G-=Ij A񒈧{z೮d[9d~G\)Vw$fO,mvJƨ3Mkeʝ5[uncn}.lAh{#Hu )R~."N҃JܪNCc"(2[/[+YlF0Ÿ֢{oκܬ.tɞǭn&Ꮅ6{*_LiAX&Z-L|IV^S,ׅѽbwogeNV~NuK\i =.yM- P 3d!7pMhDVШkeݢ/nw87ae$22ΛAVK}&?u"7OsL0n6K7h5!hQ%tR{Hjuߺ: z+O5=i.HTgNݼjoielkrKe;,ZC1Z0>+t{]ԢbI{K*V0v=XğCs,(o(ӟI\<^%~xI7me,Ėֿ-xk8] i!vpKw'@sWkW{|"˽$$ R鍔)Jf)B^)\EA=B˘~jl, ;qn87"3 mX)XC,K5³ IE>4hA]lYz,t/Jp-Z*U=o4fn^:GQM2%, )n;%}C]8NOS#CPV;A3Ad&Ug,vD^ +22]YնNCQƹ "0ju{+)=Wj j +Hѻ?̈́M>eD>D}(\l(A=[Gs&W_$p֖tZeCɊA/U˃/a.| /-&|fMy 'Sڛd8hW7 +T!Oӿ;D}}>J6J +.9ˍDk)W4Cf}}-RK򌢈SJʼD)<{JH(~ +/Y3?+¦!4T꺍ٍ%F1壸kD)NCu4TG&J89esKyȬ) jT#}H. H-"8(xEQoGQeej1]i-zU7./jmBnpY^qV"ZSdz9),R|K,VNCA] tؗ87ج( }mI鎱X=p6VIOB3牺WN89!<.wǍ~w0=7JM7>0lڲ:spk?;q^w`>kn~R:A ËgɹOٴs,C1[w"6Uv0*ivӎlוټ=Wz\ZqڸͪT?,i}NL߾.Jrkܯ;w:}8i9StԳ_+Pf+DǙXv1Y1*-%ݥxew3G\Nּ[ t[}wM||T.ktr* N? +ժأ] +] +ȼcŤǃ~oga gSON߭<Xjti208%wqA:f=o/֊ccsGmO8k=a*Jh, /wPUu#v{6%t K t8fBCäpU:׎c>L5D[f }s+^,I|$==T<}vbty|E=@~H1|ɦ=|rGA<ҼZAJM'2yCŨ' +| +z܈n/?;A_bC + 6hYNou~f癟^3]AA +[j||"y j[XiW)\Z|$l!y#g~ ޝ-1"roG;[6a{h/.OU[ ƫa_Z.)Sh_ܲ*MG·kL/懟,ݝMfTbw?mP#> AD /v3Ju P=L<􎲭UZ\\\4u[if5.ӱ]-5[lX>)}iJu#m z}p34Z)*/u+2o\9Ijʾ9NtS]lm_ nut@T]Ca|H^gꯦ 74)\Fw%d'ͅNdzxd-cV"Ql>57QY?BU˼_:ܵ"\X}OL9iSY3!9H) Dq )R<n̰Ӭ`b|fTdtz6h{=0'V|8 +VLPQlyzA~j;+.e/e AMV^}dv5e3ǫzsKg9jz,@6?esOyx +;bfLG' yOg'o<he]Xʵl,6Y1vf +ZBPjszMpJ'ZDwnVG(Vq]4g{ŠӖ_۴Kn7r[3?dIٕmU0U>uBl|)+'%.(2\Xl(.[6;$8V3ra k(M* v&֦I9Cnc0<q +ZU*-n::7)ѤޝV/79K5vⱥh)njΆM'AvjMh;\ }  +X|DG:m>:0)D$6)MEhӕ`Ӵ^i|L8}I.yզ%H`2X-U[Z'ȚB@$ xz{ +xf 6ŗ{]9 cDqftsܰzSʪeFk/Ϭ˝*ZCiԈ3 I GX-hsUQX藺GNgw!^>awcEwU6FyVnK]%< e|nӕt1irbyFw·Mwvx, ΰ&E E i'"E9ǛӫA@6NBv:6ȭܺRHrl#z^{[o~9e3MK,SJ[(BkXYT;A_Ev >]F>o {yl8#Mqt?t3^`&Xh6Zﷀٜj:/5h4 +l F6X? 3.תrz^v+5jq-Z2eu)YJj/i )H|%ތӥ +-NA gm{]ݛLfn{ojmN;NATP5 ~R^wൂrF.;gԺI[fUzrEOn"3TױKܖA}z^ +kcȻ`Dm*N)S;PڵoҮz(_*.Tt"qQGMrGt m%J@6Fj*9grɈA9֞Yg^t QTV:Ҭ a8UofO$d;)s_Ӭ2-6$y貹Iyt5B)V4y}? aqq?ɜGIz VwV\W]IX PY7ckJ {>z:vL*~f*yno x8j\I6_ H<|_i1&w{?+o޽<ݕڲ%fTF`3n<ܕȻ ؤe "08"U@r}@o. -T%s,(٣MMa5WT2<[k.J&-# 0Cz3G&ns@ Pooʼn f X'!Oy|7q;/+4IK ^C5!y1[X`HO ,?Jt[ ?+ޯyݍ/ +2KMO77x$!- K0nѡ̍,L/ N$H@bb6^~(^ճ`K??(ۻK<io3vm'^m_/IV59+t$ۮqXa]nOSW//z?ACzG -򐞫ޣ6ۙ97=:i}Mۯ$fr38-OtVĥ]<.Ơ^>m,˨^m:voa֥.٫TgIL,.Qק~^rkhy]14:˿xB}zwWn%UNGџLx:]XD0du(՝v3ԣu/+ҽ#hp9p#|KMl<3Dq>t]O<\٧!jY&".i1]$zZΌf'kbo4{`w0dEգjPPu"yo,nVO7m{nb\{osUcm՞}#w]MW6zu"w9<%[ %Cc8$H[%gFM$s1Gi #{ Rb>/_]~Z{P5ƲvJKn[O+dVZ ';%FNwnla{1% fa4=2u( + ;ڮkuéQIH=P/CmR}ޔ7ڥ*Gz[tG5W*Z4z'~皙frW)i^Qj +IWyL5@{(?o~VϜ+ aLbuAQ|@5t?3iܔmrcz M4f_.eFrfG<;ȯA,3-y^L_7% RSǥKN%o #O,`擸 +E&4GO"|TvTO66H + ̩bF y'M[1Z1~w^{.z'?~ +:1RI뀕d[mrG`Cn~th!c·e(@%94x-tb_,[?e/L98 ;Xek75*p{SC&ν'{s++A] =]՜ZʭQ얞#yY/rCeD/%zIj [ uaphysE( >VkL2ZWFKL|Mr>F*T#+LvJ-֟881[Mhrj9cJл {UߋUW9.ry/:LٲzoXcaƐQhƎ:y O(,$D +/~ ;[/g6Je瘔\<F L֝LX^wXBH8w<kWX}*X23xb +NqˏaʉZ|RYrm{*^x +/NҌ׃V +zb^gW*fvY]E{ +RTxns #kP?u@|"iHw<\T`Dcui Rq8%`⿤5; 9s(((6[yF~`Cg&-iФ& ШTS6'%f#?y<~V;ubT8Ti6fR,Ů3aXSZ2ICrC9ք@bhh2r=8u ,(3xU0LSAOS+򲯒-e5ϜnrŠ`Sʴiĭ=q=7m!n!!AbQ`6 Z3n"]!'Fk#++Ì$#;ԡ೺Bi@=J!jmrKU +7^}_|џNdL[< !NFS7=s_< 226ip@gsqo}*=ѨcuYZwHw79pԋ*=9n~Kx%j&kʋGjfT5oY;ECMN##{I"Yj% +-ۂ׫mWug _}ڷd6®mzJ4h۔Hۤ/K֭[ `[7ŭ,P{ЕB-oꢠIH`ࢰBI2]=ҫ,=vm/:;_1ro9i&3HsJ\ 6MT ۅߋ&MMO&hl[(Y~.HM8aCrewwj1{!C߶]Km8o^-i)d94=ƴp6̥d\=z ω5 +kR.UY=*1'X +IFZ1-i$;9j/8N0oA[Nk?ǍA8kU}e3:z9>jYY) իzGZBn|1w,}˷hekR0~p7W*`-E +Ŵ1T> +C9SI0GDEni]lWfѪҫ8ps(~LZ +'p1H6 +-(y͹y:/-wJ9hW'8T2BP%c1$Т(WgiEmXMsrwj6{۷*쫙 +'niAXK~ܞw\few=\-K&*ѨG&s=z"a,|Wke^Ķv(ʋr4 +E/Yufcd9Hu@ B +dVd= + kF܉t{@y5}g`U4G?k,1 DW썾Md]s㿚2=Z/\BIJ7@7tt\VCJ=Y`h ؾXG\t=g/X Rg +-@}6wql]@ծEAs0~ݫF+ޗ(,&"{9@w=z9UK8.teWʚdր@L. & bmcqh: BdRHJ}^!~C9oՆESOgo5*1 VӽeL;`ӟOby[1 u,Z?$I%?DOS3 '/eӟ-טX-oZ0Uˍg'{ UmlBcOcZ}]|_x.SR$Nnk4WAI9״/O_1A}0yn9[D~Zq_}|e\R3z'oۮ7c4ˇʊl vIKMJ//&?hIg$b,~\֫D.g|r>s{ٕvصK֐/rV8XW{^=TP_?TG9r ZLoCuijӺtuXI϶nЌ_M㺢jTZb<=a8>.e_e;=ߒd;ݞLe2e@Avs  Ϝt,û uҫ6vISXe_S# d\,h_޼g}\[֌u$*ӰprxQ(E"GZZŪoZGL{=/&.zaswm/ ;=Y~U\C4n ;y0g2\,|gr2Y?D쾕`Z 9.5ec|fxu5&uTxgDz&thdƕu֨eKx7UY{.L6.IzvwYMڮ;ZGmh`|bi YU}TuM +Vc#84<{Һ9tܕ"f:\j98vE\ ?fQ Lad=r؆jB0c0\jH'9S|4=- 3l>DThm Re~K+.->_;>#[S0Sg9k`InbJ&G={DtK^xlK ِ7PkƩVŠ)X^(mў3d^}f^OĹe3E#E/wI|&l^qd9e炸_]T:8ZS|d\ɫ_1X0Pv._3pS818;Tu3I7q0q1ĸWѣUKbm YUMqڀp[tЅڈ#l{`rtf=fTpe} lt9R)T _/fJ\i ޖ+0!C=K:{_@ +:IٮIu3jiVjSWB%G/ࠁ)ڞhk2`p*rvTv-Y:Un}gW?EYĸ$SfLբx~A +r$+LLs?V/QZjJb1w,?{BM8fX#f[(x%爡p;?O|w3k|M +MOv][KƜ=ob,jA Ufɜƌ*2((oBؚy@{ӵS3G.;jv8pRb̎oן<7gn m|E*ySm!MʅSUmubE EQyay|n/drWg6ٽ/+6muC(QUDLWT-39C(~O+K%%\!Bh>2$v}@8762+z<`O'Jpqh0,hX8*p-(t,Vr˟DnNḴ2d1qP>=A#:"2g +sv!vİmp={a0uQaHҫFw+2^K +jɈ0\(z:, tP跚/|kJ 7j ;LqsNr!zS 3_s3 7'|bc [sgsV/J{ؾ/о4NK}&`/v͒9bҵDYTWT.4DVLxQFm]Z>4_iN9O)=,6'Y/a͹uOgd2͒Bwo)4/֖͞T)faw!tC[GfXpjE6]R0i辑]{Vk X/c0~\VaZp)Z(0߭\胂Y:7Tb6d뤸/hQctmdqjA?@LW LA7@j JIGI!t93-?T*G}껎y)?֦AN5?:/|?4u ʽp woVﯶpxnlj=!~/5~b5:2~"$qL7k3Lq_nimĶTeݬ&(e`7UiaS]1ywcS-]Y/aiOƂW9(_xcZs;/=pk֫#*bLS~xqeN=X>!*8Fx?~wvܻtQtik> %KZ2Z,jƧ= ʛF>-~:R46lNV>V%RTںf{!R*jg)j`ЅŠy'!L +45ocn~-햌om tV랣~Ό̀$}h㯫rvH@mQ +MHFOl'IR"~x^۹S9~h`5a=}]g>Yyw&:Ux[HxPSvx ( {J/Bi+)df08@s^~wx4By1|Wf2{|Rb6bJ-496pfp-i)}ZyOPg/^n`\cVڍoT bIOfytRD>@S~(!QG:c/)>S"ᨔjɈ"Zg4,L;Clb5PA.'Ib3ѳytڄ|s* F^(B٨зqj]f*up FY/]evT>>ro)r|UaEf)^;kՊ& S2Ļy KP ++F +Kw+oޥ +ǏD뼫,z*!^ :t,'MkkK +_oN$}g6H5] M4f +ё*";kBrw+D?.9uZy<ܯ4qy83E:!úй }Ap=l},%oT1mkam_ўS}Ңis[Ua\+VHVNP:/\oe M> ,2#v3:Ύ(<ޛd}uz(I̾9wi٨4v~t`jߥ*HưOLA=1tiحvS׶d ~j'ZcQk! iNFl}jaw|h^!S"'5%TS9%i }b:͉#ҐOxiLi\6lZh S՚MhxAȭMrb/Yګ-}kGaUE6*xdT7?*n-3)[mQl)) znN?R2eMheMvŦݢjVnQU^jʱ8TGO;ٲ宺Kz^|̽DjDJ7ۢSM~!`bѡw$, }1EN7w>@;.zw+ڮ.! \|ɀ,N-Gs삇GA#cBf~+}ʳ ϯinI^N9>9t`L4w[~Ǔ@<jI8GF PŴ::?շFi;6/>(N`8ݬ"2Lm\ DC1` +*\M\oKe_{I.ѡrX{GhJZW~>1뀸>rǿ0hm2W]8",3sɚZOc|-2_aN_i-0:&X- z?D얔+5?Up(l꜍C3RH zӐ+xkZMp|&Q" +b72_r|ѻ4 +'{S7'UE5 OyߣyZ $$!Bwa[g'[#^EozgPga'#GeCCSTj9_ޮ<\N=zמvpkg +T!\dcݐ6ubywO7_xpaٝA ~n/i#'Ȟ*~ڊ7 ͌O5E-]'/ĝtxVNůȋmS\ly;*/_3Gyo0yawgm,)7#,i'f4)cgxNom5҈ǣξh]bclں1:hJֿC{/`bw}tO!C~Y,`J$P_̦tpy1Y*lszɩqNnno<\tqeob:i:37ҿEg({0j +Lއ{ xzәm#2 U;V `'eM6#^6-nø+n# &^ k?:s![$Gq%d2C̆mj]mdҫfyGigS)uߡk79~=cʽ"Mb_4 \&lz uUѪL#?TFY=6rD\9Z_'.4}3dZ}Dꊥ+‚ijnw痣-ŕ;i@n\Ǿa*>3ȲYox ]h=wR @^lfVzvI"H&zG_(t*+SknW\M*3 {?h8n-Ճ蜝ǃz-`66\PU vDA 9A{ϵ</oZSܮ_݆hEM\yYY"o6f ]~5gpHӮZ.%#g;߭7j6vgU"7lqn^~['ҥhϹKk|h`puxT"rWԒR(i} بHzhw3nj"7U>wG9-)^J2]aϼU-f3v A-M޸^wQKѳ8>3Ō>r:K(xZJ_^j2ުz2cyrوzhgzv+F{ެAL<2S=1ֹ-EM{@+naqB='L'.TdN)2)哕k.hHHԻvc &y&Jfzy%ztwNJp"T+^Sn1kO+A+b-5 xlF8M/=t+Oǽ7rӱ~qk̍zfG*C;Lwi1]Uog4n7grBR/͡&ёLS<] +]17KcA*/n3xV(p8ﰥc%bi1wS'[kfy#=LU#ղ [6nF[g +dE%&Qb;)­ꔄ0 ׀/”kcˍ3ެEslsLEuUU_x2Tv[ؠv>;}1 .Shz+D޽9:[Ʊah6aׇhR |qB1+\Fwt݌m2HO t Q\X.*߲|Cɠ$/*q}4-;6Rb5qsF+ENS͚jam +%v)]3+qsZ(BG@љ2#~h>Bj6g.U +GRz!?5]gF}=WLaM 9fYH,!lL2Ӱ-uTz -&*#^r0  _'9< Go۫z/y΄L!cҹFG-t">v8ڲY @[/%:i&J"U@;hZ$ +;i +h'N_|hү}`#>¤2^talstwn}.6,Y!R;|̨%3 ^`rm04lj,$l mG/yk8fUx&?wu7 +-ĘMn>Y:lк<8,K[r8YԿR\1\>nNnaSɫpcIq.nr &6uev|8=,9Y~!N9,Fv%3#5HGS7\Vw[pu@'+ 4Kl["x@IS@d:2Y+"@U:Al&x%]6LyЬzpLTZ:+(_vz7q+nRR5H>t\@]*rrkN  K+N|78+;Pi09|wZ~MN&ߙyw6~߅5+Wޕ@0P: lwVe7bS/WA|l+O1h|ߐ૧iM/d`@'x*?7/!q P>B;ᄎnyd.~ɚ__{Oæ4QL,M>~L߶ۺk+s`pQt:>Aˊg ss흳Ĩ;5ӗ7ۦ|23 ?"dOPFӈMZ :ޟK{qe[T8sb_s#{qG.s*b5U9Tx2pͨ%pIpUzNeP0vpVΕ w͍ 5ꏧ%m*K٤uX:;W><>NȫGϵ=Cx"v+ Yh命]γ|6𩮉fH P,X\t!wRQtr~:HZÐ2 [F=.EDtR^[9Wl_xEfq2͖-8u7v=e(L!LG'n֮`Ll[Q<£&ʏ% _%yڛ ҹf +]4:9AFښ]cwz:rb<zPO꓏a({͇}hŽȲo\{}.R_L>Yq=5\`zէ:G!oKpzWlrĐ!fe !|!%Tr_{s^+Aڃn睕;Xy!&r0gn-?.|bڳl{b{7(im,ZDuOVo6_Yo[7AS/So3iiXn|L"!dP &W1:6'p~,wxX&o¾4wouiɛXͧ?tyVwXGi)[R57*fI/~/lDqYeZ1k˃s@7B{v:KkB32A+LS^ı[ +džoUum/ԈOU"WT6`tڑD%vyrfe}iie}MG)6k#8CXBS/e97͠5kZϪ{mNsOӑv+CF +J{8E }.b zc)"6yj5(~Λ|wթt:=4hv:v/ ên[Xu< 74`W@O#c#RGlw8 +~ʺDQuq,} @IQ/tvySK~1̯-J)woFO@v>}IšQ'r1mj)jʂJ%kw1%c +lK+n}$,,9B|8 Y |~s+;)i=9iWgsoEv{5Ngʄy 6cTPTeL%*uj,2|~i.Ɨx8^bk|/|Bw6>k{w$B) sEc?f.oʶ汜jY0"BS +ʜXqҤ%kv&f #|^Ӆ^m34R&ɥv-ϥ.W|{_D{B 5_zuhKU  pZh, )fM)ėG}y:. +"F4N^'yׅt%NvC5t/`1a V`vuٶ'ǐJܬ(M-$_X6R|E=⨚kN7=pȼ +ݦƽK27^u8>X,Y;92sLni94[ԶqXPueSuf[-Km+ZƝu.Rs7z hR|s7 /l0Mllsh W'ݣ<Vts=\oPy4kJv\xY#BY8lo48?IGY .Et["^i^>*|ĴLRMlF\̣l8, qV@bF~z~aF5د۝fx$yףů績Ԟr7݄̊Hv>Jr %W\Z4 + +]Y-#*#?D;C#tlH3Xb|$&}=B~E=KP\G+SNb~a\L4z^l:B۩Z6#9""J,6m& N KϦynf3|\<KRwELiUL.v~#W% pgWWzGsTRUdJV6t#ܷ7XAfoXAHfDGhhxIOxe:sN_Y]GZM-A3U˔*X +vj ?hR'U1HFBU ~1`a>QnkcR&rdpAzsNK3J9PH@'%N)# 9 H(dF-@M%E' !Ÿs{]{dXŹ)󱺞xW-A;O/b.J)N[% ALIjqZ*VF7a ~$/tz/P| Pp J]btYg޿|vߙS>0MOs7@#!{䠕z|&K'P Pi `ޝ` 2YQg <"G`5p ^Kp]C2N+'Lp0KU33&jVNY*Dne0*1I%[Z9EM,&rn2~Y'e,s൨W@w 0KŊ-@- tZc tz 4hMBsjfVΟk'+|U|{Ԇ. 0~ã>l?o؄*qBjHfHgqK +ԝ2zEk ENJoǓRfR~Hd4]8*iɹ_{y:OL(3jFt +!Pؔ\T}WcZ{eLӏ^ǣh:.jlߐ*g o鰯5ُ8ܟ0fߵM_Cu}G:x8}_ n7nNZ9w7?9^JZYaz-Au\",Ӿ 5G}rŹVngbOM )<7~2pWRO]5ٵg+%kqvcs"X8}<Ŋ͝-]I?zW9Lo*\-_P?hn?ЅE{/;8[& :DuB>Z*.婒!ܦ/͊3WL{0iR䢹er$4L!wa}B=~gy\;3&E(|Dߟ\|x\;#7MܬrՄZI_F FBDqL\(:&c,\vq\|i =T*$TvӇƹW +endstream endobj 188 0 obj <>stream +~QzZjjqQA`E{tw_|Λ9xV17vW$UM#N ܀&15nyХgT}/"-(t%F'ϦTkm"AShu՘jIaA3,!f3s)wb[nV엗3Wc=ɪ|v3iqp70d{t˙ƬҭM{;dw ?gsldefxdMeOgF֗BT"@zVת?31֯u^mb7sIȾyzY;մgɣo9 [2;fLgt6+?rpXm}_j{CJ}VŨSQ +%jm}2t'^ Goδ JmɡN7Sղe@Va`QP䣿I{N7;"|&VP(9_!vӎ}d݆bAidk1k7aԟՈV/=KA-u?w=W;_mL{.7(,ZUnUb[~OòN2k豝*댕DmƬ\>C]NƁ| f8mlqfeMəQwB~p-V䜩vv !–qAP7* 捠TMjOX|0Z<4[55 9nyG eɦM_$_,doj_=_f&}}UU<{5O">?c[~deccݵ4e`+dž~ASm]ڝ"nbﳛJ[R'BWT1Bq^bSlśRx]cl{J7N}DrIx-ۤ&\0;MT|͵JQ˛bjꤽp+9K叨͖"iKav>Z]6~ԿG\j>#q/E"5Q[+7f~yh7J;SB$ɩ˩f0y:6_Qr6ɫҕ?l#3M"f5D)Qϖ#&`ҵ(] Yx Fra~WvOGaZ^1U SZھ+KMA( r:WF. /Rk$:r8bB"C9Kt\~|wWxS ܳSܓ#jou޷E8o)/ښ8LQO->7V,Jea +K$FL g&, TVoŸ tK[ mS"ŁĎuɹDIJ YV0aѽvuY:=51MeBC~SwO +]8׊)M4r3 nɱdKܠָ"lsq޳TLXuOgЋ@/AO0ҋefUe|/X';?j_>vo5^hӱJdLh%Vi'nv~> +^+VŪr)Ba`3*pY^k2H+sߓ.Jm*b- +߶1)|V(|VE-tFꯘds6^NzOܭ]ɊmҴ7A0nHWV\*htbfv*9`%ˠU~Q6ӛGlOܟWkyx%ŸWaWTHӳO1d$ϭ#f`)N>vlYW> ’Ԗv‰Fʓڢm(E4R SLzJ8i*)~mtOx|f(@9αJX(=XH/敇~Oڬ9n=oN +:̋gEsz d$WL+8@T K=lS[]=GOEalW +YיI5 P BӶ +elyLw^pje E3Z0wg;o;0xOͱ縶Ɗ恎 Gg*L۞TMH#[a,ֹpqJ"j!!4D4l)狟s8J] aݠDž͏4lbBBtf + + Z ;4GF~~ENNw-iq;"a? Xf +,"ܑ_? "D//Pe +Wgw_gd?c!)62i_QίIOg [:nx'X=`DfV̄>ggTW紮d>Z*d[|2PTYi(Z7Qd:@1UM~JB9;sy)>(,BN< DQ&Q.ҙ|M׫;dUd!UilOUb?qpb&s9p2.'b;u|ϸyd`1Rhn +uZ#Z@@9o"l2ZBhjwu~)\Rr"@%@L/ezD@4@T]@v䋀 +ŏCm:l_`x7ޖQUd$͸n&+MD,k~{FP~K{@%2 /{HO% DA_T$-! $ ?ɧ6J9֧_x>t3]ܥ&kF\Ů(,ܑ?𫞂3Jմ Вs:K~Gi<`@[<#2= C@KO0CtpOz6]{ϒ2 j"?3 +?Ym1 N7<Tuh|/r')#Gl* Ҁ0`VN}0 XP742Obl+' V96[;ˀmw|+F>Ożͨk~/r 9UO-lS/a|‰+/j pZwkk3Og$'F [r| +Ļ2y}<01̏Ҋ(_&o6 "lQvׯ,ҡ~;_P/}_b?Yq:#d & +H RW0\@) ͽ es9ɧ?0 K8RW`X$*Q2~ПfȽ_koFl#& _W^y@P\;t{L

7㛹^.UA"="ڢkiT-^O]3};mjv5A\%e}[]љ5j3{#CЀWs^ƮTmz:ĝZ&^puLK;g9;^mG\z4ox7p9M +s׷tsuLS7ZaFt#F֒Rj֜ܫ;$w^%m“lNo-s@e*raԙSH'Kص3zX^K}o* Ӷnu]ڴvE|7lLWJ\?j 5-^#T^wow/qTNmɚ۲N-R讹N#Ɯ H ec[?jO'~_1z+pj~< -5ypP6ɹxȳrqke2Y{26 y5#gӚ}V%Z566EbЭ WֹhZҺѺ4w+>0W|R1:?,om75}|+ FĠPk ù^37v5O֜J+3Ko"ШSΫ &c{8 }3##Q+SfT~ Eϛޅi ?d]ݳ1ofGbGD@,12% $8HLT3yTktusX^VevԨ-ÆO/nnZ8qKs!88̱oO#Y=-|~i,՘q2%E_2{{2NXOz:/T:O-/F]e3 Qc[`jg*W2P(Qn6'|"]\v2Trd߇{¦!D31YrWHB;63ʽWrT,.)< !Dk[ ?4>ߓbwcF_o3:$/0yH,޺pG[KUŚe\-Ч"h}vH66=fmK_9 -)8ĢXDaL0[Yˤ +0c9=󳓆g_s`*3'g?=^V{qy RnȖh# ;f. 1֢@զ(DT=W0kW9_Ns|n\\:ȡٶY +! ;B<KQ^P,_j"=A՟YV9D ^w߰P!;32r3_Est[˧SrAƯsoN1.\z02|@#.[j_۱Ő7XnPA''EZ;4$,W~b-?^ >p[5ifT@hG晴ger@ bٗ*U@(]b)t9$U'O탥P=u];bO6dva@y.mޞeRf&*H8M;A1yi9As` kn{ [`b.y~6yd`8;2;w>Ed:xo +4rV.]93dJ 6tz"lQM8SA.YYR-I3현?!P +xKA4O*//Ww |1#wJ'2/9QG"wa!GRzpQr(:unhbL›$zF)va/tbu\n/%Z}8nRR?]{,O}(ӹ +ĻeGZjI7RG>QVl7ӅV,A7Qy%?4ϝcVomZRD<=UO^\Zn˺w.5=['kr[FyZՓeܻ:8W؃Fnn}ލelA˥FE*-ߗJdz6 ^M5T-=xZ;WyÍ ^8:Iٹ 3xa`KVHl*px42k{wWRlt_yX0BN !W`}Y_MFjVgi*Cd(U5t۳UDrJkJx'5k0>+cC3d4ݠZV!wFQEAO]*6tJ3EH$XNvz&Sp:.Uۏe.eqT%;mXli,rv7Yy Z_LjQy2uԦlU3WvW]j苊ΖREY!NזB\M6L#RlGOeGf#uVaCNՄS졼o>8TyrcnY6V) ޿Jŀ (᤬gj,GcSvwQ;>mtFtQAV-RǤ:K T˙.|:kѤNSC:<DNNc^V*fQ;g/ٽ[)鵑QRI*R:R&IC/rGx]tVNaGraa81 |0#/Ch6+\[T&H9rbcenS4̖Bq_(.YTxiNUaxB*B]kw4^fO[n_ 1t>3BxU +]LT˕;JnA|vzz9}s$CV۴n^rR Afʑv[,&qȫu۱vcgNY2fO f yKXG/z6jڰqKmw+~l$"VZxt-Zkֵ+֤sVKn4Qql\43ۚ[t=g;fއ8xi0XL}0txJu@s!= +֦h$%ޥ$Uȭ~{RZ:ﭜ* ]rq>lTRns≫ +K;T㬱̃K4w:?⇡v>T,QNsz:Cʷ[GMdНkF?m/Dav;VQ_7ì)f7BWy{JsF<KJ[syxXl%ea7?#cF{ybvη{L.MޑP!/#k"':M,'bMz>xmWېU6cЯ^2Kez @ںC|QU20ău6Ձ@f䄼Vr݉Ky$0%|x:ؼa dDt +cHvaeea M 2֔mUER*]X#:Mr-L .[X*mԉy{7$RkO/vKS?7V `<O(^?xVqHy!hedgPvУ˯?h g+'ռs>[LuGz oE>inV715ĉoBC.wƨPs#bT9'te, p{:`'3, +ܞ}s659.^|~A_ߔ|ߢ"T#v4 h)S+{pGwwۻ:s\/V~7JknC3g=-E# ]-cځ̔,XAk?|Xg>ˉ16v ~ ~ +/ +΅le4ed`8#]`;j[JLJ +u |\Z+!uMBNYb,8<ƀ8SĩHة81>@lF7@LM3DIb1\/l{;G5U3{8_t%g"yV(YoE-6\hA̍lJ'q>uO?h;|sμ8BHz $/lOPݬQWontTƇdqq5B{ǖ7NR ά}<':_\>sԮb1V< i^J)R"&. 5zʥ5sQyo ښ G!n"m)^z5}7W˧֖m.B`n>Rwg3tjfpDV+3(IJ os2{|00w*TmsG`J(RfUs<7 ɩ)17+cѹNp#sÛǩC}_W<;k=z}hJ*ǩVeKxu苴\:}-{6މ} y-9^[-e<(4F>w+ +ؾOs`=@̻[XlǥT?4ϝ+r;^s[:zѥifH ҘD,Z_g2OقD\vi%^RDݯixJ{UE(Jlx7&Z`YT[9%{ROkn9nuP tcj[JdAg,곴R%e4'La;+2nx'2vY@a^zn=yэ҇FTor*r0w +'ev1! ps gRQ%*WҪP͍[䫷(6qnN@on.L±jR߁@{WV|u *R10rV +>_Y߳Hin?Qo6ڬ-'0O7Z_d[fjFkӯ:X^^ }DzqjS.uԊ. Zi+"68BTsʐR.(״]it1YCR{ZI1bԪ m?.NToIV7k8+3zd;8X[ZzqP-(!~k)+Bq6r}X?t{q[V:3-_"SK +ʷF[Б[\7A/&¾3r;{r*ZrHDG( ?+x[G1{2/WUt&ox%7O]\i`ll{?}R\BcYkzaHkV +eÓݻD3ζ𨦿iz&*y̐ (L+^g{$ɞ`ħsz+}2:[Sf3h*!("C`j(`y_9-/TǠ;CNg,N-gHC{Wf7/. V^a/B*xu)=bWmfV +šl;n,hԦQ}f +J)p;j^-~DzT2uLUJ-R& ˴ڢ2?p /\riLXlfE > |t7-R(M5K]\e'AVWcҞz[wLwŶ♻ykd!>խ:殠<&%Vsk[x5ӚvM7Fn]l6f'X(X_Pq(/!g#dofwyuw,3LYewDH{M(n*@UOؼ9|TZ=r2MEN3^n/Na,c6GWVFSCF6!WEvlC켲yM[pa,2tQþ.X ',G-rץ%8wEK˙V< bo9-MЫLz"RRv\*2^f1|Z,.sUL72uNN?M-'KS8_Јл5٧u#3@Qԟ 'u*~wZ$]B۸P Ii]HWpzhH}p ˙ngq2I'\$-T:0ɧ2MX3P5TXz7_o^:Enͭq]ti>Imƭ5ݡa;4Z 2yK C5fd T6y`CE `<1 _`dXƩxֱsx.f}r sRZ\׏"w"&,Zуew 9!V쉢ʙ^T)ʧN_xaR `?91F(*8bOA1,.& r&F-۲գu2iQe9 e^itlTP$qΥO.GHEa i Y1GV;h;Ę|!TIi&1\Z;q_O,c9%U#D9ۣLHi\6† + u;dwۊqu!m<cb<@ +&eRC@RRHֿ d~՗0ss'_t.&٢?V$ 7ڔS_iG`۫FS wkc>[6rh #c*Sp-h [ +;jwwXƿ9x_X1ۧOS>-nìwfY}<,{tErVp0ܽၿ?Kk1&LG;}01m1 +)ag=L3Ƶ ymIK5=ً1-O]?8gLf-X)b)alzAFx{jHt`W54p f1nFp +av;k3upwp-Wa7v5J< +XZ?9ھ=>7hĉ}o zN3"9NvB4{@؏t^Zjj!, r olX{AN 4gSN-;$2kbM=SL.CӮ{Uks; 7y@nBe)fc+Dus1g֧eMCUVc"^cFgP堁j}KxߪaA/I萛?y%GCNVM)oN[©ޝÁ5C绾h| ѹ݇&g>5H<< + +ՇF +כJTP>f>4x- 5VQvډCXkpjpkՒ_2 &LlӀZcf?* x+t\a׫bɪH.&T5߬"sP6XHXpPS֭#i-8^7l݀zϵ eX]}V2հCUO>~#?mh ]VN>ս +>+.2;Yb{Ƕax6T(=͵v^x-j6}nU/:^SwwXVEU{P7jXcZm>Ҳ5EJ əUW7XZ{aSɗK]:6ޟo[[eMhê<,rϦrD[DklE@zG54WBi }F7T*jnF~h^ĩ !8T\^~5Ŵ<Q՝4#l! &{}c +qq)jYk#iC2_|d3Y V6EWàr6<('O/Nm +e&:%q}+B3LMJT|aj>X*zbn; +Vpg.F_| YU/V:.FlxdY8fA`gցibqΕfG(Wkʣ.8 )ǒt|t+u<|%C= +έgfwzיtccOgnGBh]4#kz)гLʯ@xXRM>9L1Xri/II~T7cԆ}l.BYUyId3m#(!gy[J:v|5񐰛r9s9u<,:24 +- 3gtxiW Oih;u/Ǒԏ]><ϬqTlf˫;<0oFжSSʕbf0fC;aB`Hі|nЌQްP =aH#/wH00~׫m ߫jT3 Z}DK}jt-Yҥ )d(֮q QT!9ǠϨBmfj.u =Z[od3iĽY r7ZG|@>mua"av)O[oګ${jKד;6PuA2"J;xnсZYG%/ $;l!wEѫ"KB*'uߦBe:)b`s.1.)Xqv{W^rU(<}Pgaj;70C[f%/7#;A@WR&ʭ ‡7J96E=V<5BPd 6~1`vk#֖ȺPt;y4j\i,TQ-M0^EFew0mu"N WSSO¦XL8*a#\G-G|{ !.ݾY=K&|Hw<KCLnKmqx&pUjՁLͰ]|RGWH{ +Ej 8!G0X~IR(EFk Dm\Fg+[ƫezP_z=fAUf{*#ah9#$yX:W;iMG٨_$IƳtޕfHcPӈ ,n` hóqg E^^j<7ndΟyjKFtpJKA}3 sOnz6tsgRV/xuI1"Kj}>}g""Cvۉ\Ifߡ0;bŌ!}=#t@=y9Rǥҏ z~JT$A :1K0aRp1"oaze 0ipقT?g,B邐mG,G&_ 4"$Ȃbm,;c;@FՏqdٷ>lwmYϙ7)W]lOFBc:?Rt^==&tbe  pb5sQKsX1Oȇ}kPҊ b1c (HXc|Rԟc4I* N)G{Z- aP@-bKFβp| лݷek`f 1;`h)c&-d`П +}LAi@);ƼW~-L s:_H% >`/N H߀81!W5F 27LjCīΡp)D}dHN3U^E-cғZVQzNyS(mFL$/~r&DNW]3% X'F / IVc L:X\/9n7I(gwGƶ71r9 tWnz_q҅lJ[Gi|i3tm  orZ呑Y4k`<t!)jPRڛK$H[LWmJ +9eTN J@@][=t5I&$d 8K'a%g7{[2tv ָ:׼}{5t.“dGy~o!%•D"K5 kSly[RDpuBz'?u7p<𴟯gP`NG#-mK߸i=Do}b^%n5h )ϐx52TRfx7!VCԈktEr QUJ倅'O^, +7b;)yNȴ +ϸCP~,Ry?FYx]yy/wP8چta%o.ŧg4=[#tFc3%fmff^屇wѹ5F>=7o]ʗ}{=NXGV}h?JQ:1JЭ2eTDM1v YլL8Wf`PDE{h5du< X{1M(>4TNRJ +l8tXDW{ܼMu1n5vӄ6^ 뢧[fm<'["+9䌹y =~\fP? uòfv"GWt}(۾ [W'7:(GMh%|˪v݌W٧\|ٮQPw'e+U1<.X=m8q6D?;.f {7Dž<ݘTkƃs8V-})6^vrδrOB9_l=A[j<_5K2|^eK ?Xviq[7N}>Fzv"޵}vxԘ Z螪vVn#\lEI=0,}cق6DҲ%|j.n&(jV8/_clO VМ֦PU`˙{gyv~zsq>-Ϝ Gmf.zW*oק*H8 ]8OU z);ںN3s\q4z΂J_̭>N +bs>~򱱩Б隭svz;&qiEQo ߧQ\Nw⪍K3g܉6LM[hB~.&Zc?ZMUݥ維'㫆EJ~k +ih-Y 3i%^j)v)]Up|ʹ-<`P{xAo@ޑߜ3~c=ӦZ l,Ӭ^ihojj+|(h(CQX/e絹8F{1/aidigfٔU;i>ˇDRN=.{Zgqm}AG :~5n!H-G>Tq +JV;F‚<:qR Yu#|֘[ԙ9s^15me̽)mBp9ҭO$yGb64;~ bXT_>2RZ=fPǖ}Gz]f.+IGpi|F{2KØz{&cѶ45iN{{ȬH<}#CPM_^=Ξe /Fـa4V#](]^8Z9R~=lSxmD7r.(maŃur5_}3:||R#RPH#SH)ynW&ϰ^*8}HlwhXo501ڢɎaQ;`O^[rkFmZ)Œ(g~َ[yy#]]JD{&>Okt~ y(aҠ\f,X~bb8uruOʕ!z\;:ڦf7m8^pOkp;AA`Odb8#k?u_ Un??9Fdb' JN}SpEl 0"x_X{,whhxEWi)&<9Χ^> bl2Ksp)xvƵVOO>R'v-{~ Ki%|}hL,o4&aq,$|e](f;[N$M)Tn% +jU؀{h?ںC|vD1@R4Jy-$b9 5Ɠģenbh@٫2Q&*J9 c;>e'#kYm/i}y詏v0Qir6I@%&|x@M1"n;ɼ_j&(PJb{ܶ/z xz# νw/~y3nu+i lFYev4^lXb 2`-C8oA#vpК0-@N (֌Ob\|8)_}4@Pd`|DGQAXdE96H?31B> yle%H$~S=v!{C*bI;`Tщ?i%`Ug7zKIF9?1 }_M2{o-tC4̓T2n/$OmZw[#?M؝;`{:X?#[Vo Iq_?zjx4cM^N.Oz~SLz5vUj>_kiB/z1c.F'bu ~Ly&nGS']poW.3;dG͸E7]R5+HB3ԩ`G_O]/7kN?b:X@ t=:^D y?~QϺTN]IYYC3eP"t@lI|6~_oغ2=),&‰6,ܢ1g ,;x^rD@c6=ӑ˳%)~&Z+ݘ"&Op"+]_‰6 tnh4D]4c&I &UIîxݑ,n˭"^"uKc7IZT_n'o?4$!^0jS,lp``V)0M[{T92ߠ̞Iv;A9互s5$0 [VOoNj*N\ŭL /SikyIZcu_.Pwm37kS?<?>O̭P\E.i.ڌ`{>5J}l:t +Oͨ2; +tKqUL[Bq'^qb;.zυ:zO'dal%ML.%K%k{_Wѹ@[JУ|p9.A~[6(8E.佞wkaqOʛi;Sr+tnZ +A͆Fff`y.mW6]x}y> +6+ˏC0pVl۽&Δg8q/'}؝WS:Os[(ٸie79QF(g2ܶYW)-5- 9?TKvԻh4w§vi*"/_EAPb;>b%?[Nv|=q=bd#P͔Sxi4 dg)Gl)[y?30K6Vck!`\ޠ[}jס\o&e>Yَͻt= d>L<ҷI6v`JiS򤓂þ5V yۙs1|ۑa-k-E}[=O QUFyUr;gd>Tc3+fJqѰ!a΁tpyR + +2 |*dMY^eƪ;]зbI3H;LjM-rG}XLU>nۖ)G^m*ɶmՖ+TY1}[6[[\J {"?Vg/BΆ ak«(eU\U\;J1S)%i풳See@:ōiGMoEw| REE| ,yv&x4xwWhy +TOoTo`uKm GUBq\x濡(7 H;gOE5UTUƑ扫R=[ҀV(ӒFMſ7UAץ26&#Ir0O1ϑoE6pqG&c\yG/5ˠ +xhedfSAt q AogBT }\J{㘇޸SAQ?ȑ²J xvKs_RV{#3݉ Y9\M٠'A,\)4)ћu~lJ_=j [}!M 8qZt"~:waCz LT72D{_P\$iH;:c~q\~{8N~}@. CЇ'xUvS㈤nw3b6fjxWp`Seof׏ՒqhyFmt&AuC^L噙 bǼ-kC6j +gAG{'Ah)J`x4DR^bՍ +aF^lc;>;RW:SQr9:{.+Di㒘yoS<,e>}\y'x(1f{XqLc  # &x )(\`Zy46 ZiNwmj['{y+k"|j6b] Ă( "db~sP,(/YJOk4vq~ PXDa[:H>(r vl͆41QZ3uXk XB 0-׏Ę:x^3>G5x7Ĩ< NUGtZ՞dw~30gsRQ>.ͰĶg[6r 嶕qI_0+ƨ(ƦXA+r`XKc'lLl]t, =z2^v9+]إ'V3#Ƚ ڤS|3$z[Upo7yF{;~}M'y/p vXn!ㅽxrXs^6ӰÒ/P=嫧yD\ld'va4aa 1~;az<a0_UPj@.:2s21omz(^^ 1$/οte{]""&LG| }>)G c81SHHcȖ9}ۺHlo߭$e5Xm fބVI +M' q~~MEٜ~H-n«-ل!3,E ?ibtf7Ew0NC3SX|[?Li cvo+egL/O4Ju&j4u~_GH(hI 5CXҼǖ\I6F<_b۾qz=u=vCs)q)֞T/ʻkmnoD׬7޴v1 v=Iհ$KW0khL|7mĶ25 S|̜Ik6=cNG3X(׷MKp}oT o&s*PiV_Ohr/a*.Z^Յ}#H[ʼn@h]O};+GJמi$oXdž_]=̼ -k{ttPCd<d[)٩x Sj3ͥX7^= G+_]ح rۙevKq Ҝgjh}Y]|Q;&cUS=ϻUZ9嶞-+smʶ aS\J^'=*@Wh]7(x gZKН;fr 'TܣO5.N.d*ִ)bFV>D_m(&krb-4䨡"Nڡ!f/#o~5!;|v1poaLQ%nE 8uh~rvC'gju0J\<5.u7s٤SHUIrQtsYϵyN; +ןƳ)υ ٣y< +k%{1Z +ͫS#hIK%ϡҩf_L.27Juqӗ51~]? Av{ǯ FN챳5b.4dtNӖ5Ro2˧Kovm~ +|ȉ3|)XTW *f%֦Z8x=zeqgge`(W:G{QU*X^ҝނrJ9\E 9- sn_ئq,by?+JŘ*4E +C)EnfbÌkUDX3WT9c<"Ѧ?%f(A̮߾Hӗmh+c Zy7Zg9TRW.RzH}E3VQX"aӓ]>a0p.r7L}]CBYUW;&M>!ԃ= Zc +}|tq?pff`Fcx$Z~R$ٞd~|:гNaq5(T#Sg/PcjiŶ~&>,)Yɓloh a|6@':#*FJ 9w>8H"4|[eԋ}׽ `am 0BK h:[:eKaGCS̯7i"{YȆV0FOf%Rd~daTVx8Dggits'[جQdOS*38geif1"[ gk|W8pKz-cxPɶ:FbNצ˺2ܞ$Qm=8;1|oFЫ?Cy x; +Ț לț7J}z/PԍBi(v@Q1^xѴw/3WŲ؎}yjUm=Pd,옊Ŷ,+8_c=/Zoln6wC8bw f1wї/* B~SnjR=o9h~*}๛*;$YJ:\&A-HgՎ.ThrPJR1*܏ |4 ߶cX|R! 'WCw6 #tڭ-fc~DiV Ja}1Gjt]F?mKvX5m:>c1U@sAм{ˀ%@ @oA 4 ]r]_|] D$+ZMm yV7ʖU3EX7! ?~ 9x1R`h2*i0(^>jɪ; C@d1@cU6ͣnuF 2$Or1 |Y\zC_eJIH%P-~'c1i;ƅp= Wh$rE12E:snbo򹺑B^y\j܇Ȥepa~;ίbv3b"F gR(5lcL.@0oVP s  Wxc0e )sӘJ |}>GmY]+mfiIĿ%~%b7o?>H&^)lɳ@*,2RHRVdyn:7oL[VxIiz}Eo`_V#3' +s".NDR'_%RNZ2Pop sN%*< +f"}RE_-<)1 +Oǿ֟5Ya".*`?[MJ%& nu9wA?gϓx@CMR{CGRMSK n=ٹ2R}>oN?Cj} ]O"zWQܦ".mI<$6PDy|r[u:ېp4'm?d|}6k~x˭"-sTpfnq۝ x:1)ևrL>$F!5ԇr&J㧜4uI@.שn9Υp.J c>e:JƫCQ҆ Qi}§{=(t?BtsZ&Wpz"6C&Q?B%GNZh+i=Lsxe(De( _^O9v%E֓ ZuMwUa}j1W]F$A[GjƻE6h԰)`G$rvq~' 4 +|g=to0HM&=Mm[OոB_iWg]lTn woճr2DE=U4nK{:,ޯNTp:[Usvn6UR^, +&yJF`^5y-=L?Һ8]VE6JGicye[^\a$hj⤏~óDnC"=a>S 9IECZyA=6rujJMw3`zj@atlÔvKm섓{$J%9-+NڟZR$@9<.Dh|y'hAv'sB^Z+2`QA.gn94>mZ%z~(+mcT-ArFx宩xyuKYĥmmIŒ_}ʰHeÅҞڙڝi3ф+KNJN{-d0 ԯQppk"OլN.?\Pֽa6BɌ֢VRj:7ff4Z ݞmvTr:Sv }#LBIPI$ژD=WxQ+:vk*VRoe?9jF耗~٥L +}ʉ4cF +_I1.R&,k1Ouux !GYO"{fLLȧ=ZW|:C8~Rwb-z@+"@Ÿm=Rtid+OVGWY7s_%{ez.֒q,˼ҒZ~VizPu%F/M.'8*>"r +|* U|h5T<)rm7H=va9a ze(y i^@*2&YS `Fjp\$&<[}Nixm]ӮaN M\be̋{. Agr:R*HABn1l+ɯNP' &#8$=7}wjw{Tg +:Ũ*Ѥ9aOJj 9bO #OQ{Js3&Wr85: &ԡg 4C Cs=/7v|&@\OMf SI7#\Wr?%JW4X;ۍ)K=}*T891`,O?+QH9>=6$3@j1!@)@F ͝ V vkʀHNW\PV :yycM`XYCâ <[²;cj [6;ń@Z?jcř{⳼ZKU + +G%_٠tm]tZp8M]<$xI1),s ЭzQ[Qe<@fWatX]yCf>~|}p߭J!V,Nr\~;m[ۡ/fqF$9 +B<歟t'4.G'`')Zk CֻO`cf)1==,?,y̾xP.Axo32Cp=^4[ג\ji&Rpӿ~o>Y^ٜc\o/2R':1P ac + +QhT6nE9bm]1>,Q*  n᲍ ,5^6%@Pxԉv+KH|4oR@G3mUSݳ u~"/b?c"}`1@ yp|r50ru\12P uFHAx@N!xs\U9cm65'S_n7tA:&&.3G43׊5(f /*T؟@ոoxo*J[Y 1Sw2{(82!F2<Qh3C+DFj/q3 9?D\Pd 0ox,U|]лгн e5 r[V·RuźXs)En3qSCZPQx~'IwĦ\q! ID_`;: W-IҢ`JmM6W|zTHU#pо qDE{W)$b_#&q1|1׺_6%g +xa=:" 㶑*i\l,nvؤPS d//$Sww5K$K{IPc\} F Q!4O] ڝ#N)) B~k I$gH;%i? [ +w~ +@l8K(b c|V;SEҬVᔥKP.CbvZnEwas9'+[S|%@RL Egf׃mRhht7{˔ALa `ey |wU}ɏ12M~4W1j<:…`V흒z%o|"haܥ7kՖF\L|}vokֈAL65m}eVHNү;Kvv(.;k;-:Ź2.*q~0`*|ˋGY/~fTǠ1`YmW&!ݠR}uL[Sh&k +kɡ9)HoF:y*+]f JODX Q<<^M:N B2.NfnNP_h-Z+[&_=uujꪯyͶlmOE_X[0]yaϮލ?[՜ t7E0_Dʬ^NWUYnև`ݺMGX}vIX`'m5MU48,r g!8vI*7@'1Q[>߷.\x΁^wp),rm=BTЦ *Aߙ?5x#L+Kex<=9YUc EG@Ȧv 9g\jfCP\WF6nە|vZn]~:PntqcOjQٯlU}a%:ϣ!_rBS@ +" js,6JQ|@)tMm5UjYv?1]r35ӤӠܝ#9cbhI4;kkR4̀)gW=[5aL <:i|m#7ͷ-Cwi]մӷmWM廍)G9cohԔt=^PEI,uӇdJ|Xy8nmm1ig9i%iݙڟ)*_ o._H +F$4._HpUqqy?!Ol /_0`~ /_0`~ Ӟl佗ro_0`~|'t|7[4xG$@ZCs>y]ϑ /_0禉xm:K.-vtα1]^lV1(fj\ oMU3SjNr: 'u#/_0*0E jnR7c]L'3>wd\ U۱/k|)*F3j\և)=}#9Gt+[;҆A}:u8܆Þy|)bDvdn$:@aw._0`^Z[/0,M<]}OoJ-a*L#j`n"+A}mteL+(7qϾŦd8Nj"csj)fբ9i .lŽtZe;!'rڨ+zcC>f1gIhSF'Ms?zc?|`Gr?N%|Rņˎ폳 Ea76JE ZVX]h ժ8nI~Q'?0-bh Ee- TNޝn0lW%ԻqQw9V XU~,K&V~5UQGd`9 >5E:GNi__0`P47{vR9' rY\)c]Chκ[|_OyW Ĥ96Z}@W)Eg3 +|kjrk:|Dᬠ#0-[R[YlK}/c/0Y}lL~z˔cCQVR9'kn[ y>7!1`3n!ekG$nu\u\SY1_Zsmě{lz+O]8_s ׳[ +4C7ٜ@*1g:X!a< "_Hča!h׀g +~p|*S*'HV R"xlʮRhhgլȮSشʋKͽpuUΊbYF`\I>wƚUȿ7YԼtهss9?q/·ɱ>P)VFfXUv-1/#5m B Y/I0rfDڱ}ٝyS'9}p+n/nK5U +R"dqA> DL4\_ Ҽ@qU iU;)x|%%+ԅ$L@hks$?т; 3ѥCp6\ok/_04NNV-ªLCip ǟ@TG@F]7AŨPA{b$"rUp2`*JL s!I=r(4j!V2||<5IV޵QS镩 [0n,kmD%_CP [Jp)ͱHbB6CoUUY"SRH!xDU.ZpWN +l0_"HK@#kB3}Vg0{8MF!ql +gr^9Чh +;TJLMI60#(W _aL[uޅ[ZrY|1d1F|$3<4-(pjkMwctCIIyzQ~p K$5JaxFUT^˭4]j'QDQt( "PquU] 5BӴ) MdAdLpR9Hv1R kW)0T] WX${eqa>A`VQ +mM&>uu2)pHLN#we菲Y雕]57"|W=u PzL#ՅJLe79`(eBӧ4K-qJ2qvf@X™\RRxZ;w&vT;>Ym PJY-TF~Iq/i!S0( =*}u$6[r݊*Nʨ I %Pk"bp٪ @EG43;ӚM gBo|J(p ;x'sm+G 7J)Vkkp +VJmH=4 hb0鲯/gH\I4jhUT*ٱZEL)c"g+ A*6-Ĭ)A@+٩!r=h_3A¬@E oJM@y ^V4eԊ;NK4Ivi|:Hh)~0C-? +0`)%j'E$jZO]|i9"X Q*62eF 3:"BɡEueMH}vk@޷'`V8>˟WP`ʚw_0\0.܏ժ2>%Lr{{G?ԿxCyf'O"C09LX#rwgW KQraqSw' Fpb q6m*(RH?'R#|\(+(!57FLya6=S#l~Y\W@HDH^AX\F~ Z_x Wuǔ=t>]&kd7ϭq e +S9|r9<ʊ%dB3p- "}Y/ "X_LIE~YP d&? rZGQJC`܄f[ꛋ-Su8Hl"ƝlvcXͼ`ͪզJߡOmk,ہJ) _0a|t0@EnnKh#ϦPXs^e˼{5"yI- ' ?G~aHPB"۪Y) U}6?>:rҔ›) .H2%1Aε+D/t!M^Zv+V5 kz8Wpɋ b!Kc/9ܑ0|K-`JؙhGԼ.nلk$&U=vA'M!F "EA/_}"bZ7ŵaآ$0~uu +W\yigDEU6X9tֳ:1os&VEՄNJjbjoh/ޑ[7x`ЏQ̂sv\2Wg1wY S<4ŕS [Pw bʍhqM <W ^ P0 + d^g< A,f[]NH}YX  d~MT PS5ZJ`SW%'w>*@=Y,XVwZPmU W()J .4Cפ[LuP[ /WyΚmW՘mcl b;<;̡B=7>l7o"1Jχ}7 @`v#˺7@x'݌iv-.R4K{܉9\i/%(/^}epa 3So6`nU _0`~p?<}UmkXMQ~m8jj8-FfP`wcSx@ n]HO|MVYM+k/|}j7OLgj0N#EČM3yoL:I fGG4ΓCUpF*5;Gư۠L.KX*v֠&7f2^˺MT' F-gk:8g6C̿sa }pjlVC<}g3^ /uZ[-.j?TqA$tԚ/A1}9-Nao61w}g;u|[tBsbq-kq N,Ŷ\:U<SgCbn'oܶvuAfz +{/ԖK') n7_įo$qXzf<#?72#Te@u 5jO6 j{w*~>iIS7RhN1h@U6Z5/DEQYӫr +V[~DBdMQ B%(rk%\­o hSPZ-33PYMۦIlHȤ.0CxG/7 Oe Ї" +13Pp G+h^ϚYHGUWPP 0pY[lK 1SkP3֘v T g%L:#egp}@ExPM.wd'{|2.SngHĠ&%BJ-7wG:j#uB-,+ +*1+P=) +eyP(gm2P 02vaDC-:ԭt4BC(CqFqAbD +I4R85ՆC$aeP}#\WϵH@}ZojkSy< <ΙH>FLjeMH޲IE&\ƞ1u_ T6rZN 3P@#i QP#ot'{)S+ i,P9\.5qŬMB +&S2y8TDB`(q:V1dxPO/?uD53Êr$%]Nn-h}ګ~bO? V}a +/'5"_'AcLZzxO^۸I==m~*HYEzDte&|!fOm.tVY||7['J{2iueSHk-%ӎzfğ'+/L#J׹ϊ>ݴTM:<:1Z%4owHSϷFQL{7>MJӼ=I -UzSW֚ +UuScvPOxf!Ƽ<9:WGKXAsRcɅSgB)ZW|IOU~Gr +Qa׆&zWN +ZxF*:w% + pTZ֡`T218 0*$խz B%/_Nc/BP8`Cu6&-, F@a\ך@H ]* D*#`5EH>9š@*1ԢV*4 pAڥ6C/~7l9\@U0Ju+7s}RG8:x9HM#;ҏ3nY0>c}YGؗ$ &6MMQ)5v(sl|P$fD/'|.G-MS6$a/x(bҭ* u/ATϳkj8[.~(Դ6oZ9/ZK]n<":`Kp e+b+{s]$Fz{@Sj@mIK RL|If3ĿҢCAJI4!.%MWp?'D>MOcҨH \hr!( e)_ZsD-tg +I[ZckY5k(kIHfCPuYG6ObvݤV{TIP>qc?wM>l h6g 8M=ҧܞSE"J޲c`d8AI]R4bW @^Y@*X#Ws NbˌZE mYdnIgr Т7 iyqgk +(wlr%{P k#U1wĜΑYS3#s#oOSIK756nՒ{0CQh)k4sĮbjs2H_4.wsb{f9 +s3ʢF1YygOOcIy(^w<݃>u +v3 <.E;PaA=FnH|Oכ-1fy}nnoU$fBp27rfBiF;# lރ;Twҷɍ_b2? b DDLJArEs#{ZYu76A'ﳖ Wm?{U+MJ2Rv)D+T!<;'}2›qC{Ɂ=(Wʡ F8V^F-)r:0/qO$`#ue\?`4~OdF Ln^NPwCSng[nW?mnhs7xfڻp7bP~.@ t?wZ9ȁn`xq@$%M\ }={YCH% ӻ LĆex 7l@i->Ǜ(YQC7JMk*a=eTxw!('f fMlvzah/11 ɍ'FsK)<"`7fy[r4cߓ%:!eȚL2&1s]-R>0Ӷ6(bKrB3ϧ5a./it>\>C O*{M]3O:L:t.W|"O:D:t.ߛD]|ҹ|o0u|QYO N0'QMqLvNf97JKpǐƵݞD!䉹SPS:u7F1lc"yγ2AF)~deb"!Vb߮?e=Kct$ݶF-ljyJ`DJ!$]y$H!%2vW>[Bz$uF^i9g9rW>[xƟ 8aT}0IPF'poXJ$=25 T9FH<9 yvc2-֛<<GH*Sx#AH7kް7:;޼ Rހ|8'teA2elA hy!I+HAZ"V] 툴J&!/&6}X_w+XN>܃QdۢHcC!So)~2c%SXɬ<ΰd}-1fKUa}U77ѠdA0ۓ̓23v]yuf39wdIþ.3<22 '2V{R%^rH޾:dt>'B {Y%17RTz +NdzA\ =~d$'EtJN L!y}yIy"P;0?'*u6=JaQbcH;O:e}"Y߯NC 8lG޿ (x*+n9V^'yEb +,QU}7^؇Cd_#}5{ {x(WǞNLx`Ng&zu? CF]b I7 tIxIoNr%1-o9AӺOԜбFU}E'ָ*SĖ?T&ʷ^ڔw$=UKH?QfeɊ{n26;F-Yn!nnGK6nFf'/F#ҲIo9? 8 +瑽^.@۾$[x/+ON5s+Q<2Dv##xG@GZ~J(+7TU+1Q`~7Ԋ 1Cnǧ"FD.I k1^Ui9Q؁cWE8 |;&+W?۷f6/,oF{Ig҈alLM6{V6 B0H +lK+bQ51¡YRRAU, j-螖1Q$Ge ȁMBF/{f +}bq2R(F{{<"5nթOOF+ɈyE߿kϣD߿7nnGI'|;Hz>?*l_bU~x0WzK2xh5%"*O]?| +VH˵f(TmnfkMg]$W]vTnI0K.2FA%$;qRDD6 TR,'',-?9o,5rCԔ}7 ϛz֥:,PSV8FVOTVpI@=G*;:1c24wsq9CiB¾|dFgxu;-$ehʸC(a AO+!'vrUiVcvtђ gZ{bܤ4H JQqv +s7Ȝ1`s#wŀ`%n_oNuQ3XW=lzS1i9oYnGWU0>y<#J,-M4J=SbɐԽ{(f(JI|"͍R)VEջ{[I(H"4n( +Y;MA٤_IOf;ФvS?>67اP<"6BN+c/MNuTowez*?f99sbeЮo3/q[Ʈ%x=d9۩B) fn5 +R~%F2O"f6er="fKVt&bF4LIx+v|Dx)rv{R#2$G$$rEB ޗ(7"D䍛uoJ|DF~(%QdN|Dߓp]7+|ߤf +懿Yۭ&uiVHeH-7+|5B^|yBoiV Q|}7Y=iV1?iEEaVƲxCĘ;J$nGlx( Y{EU+w@=P!PCi~C4 JWz ~ECpdÛ e/Kv;J/ox!g&n[3  }!29R||ޥiO7<[x؟lx(y%k owϒhx(îhxdkx(=ᮆң@+JcÓ yI6c6<~t7K}!FHƘr_ʅ4I %iPzlC} +jxxyN%4"#JŽy(rlxd a}- +I5PZJw;|{Y̆rrq_P} +J NaSY`jx(4A^9nx(=ƿnx(Dŷ@=7nHN.O=hx01TCy %ɂ乆#>P:Inx]&ۡPN]P\4$Ud6<'<𐽛B:c偆wx  +J ViH>ۓEX:ޟD!+1ph'MY,4X-2G[-4~Ĉk&exȷ@V*sfnY惽q̧C_eЙ~!n~c%ާ $vyYMrqso)5GU8'Y4JgsYvںJՉ/E^2ƞݺXѪ[r˧rܽ/4٦VQƠCㅸ5~k8Tran]V~3-iqQ~/m; X,l傴 Tw\~;F Vce-`q(LL.l1f]w9PD-`>j9-irSMum8DznlF >a]:͸((bGt錍v7 ~"\6TbTîVVYg/[\f-MmN<@s ޓp(ĵ68Io-锽%ZI\}I벹 ~曃j {p`vC!a $Sx2LU~01~+B?]M'`-STL32/WDfd_Xe~+\e+teE;N>׌+ 5rk:U3o 0P +ώyƝ6jzi8M> iU^N>=A#ֶmȨNQ3ZHJyv\+k\Ey +[;rcB!70xz&U08I]YlhPʆƒbI Β"ExoA7SE*M\& A#RERNB$Hظk!}*-_@S*T``C=pL^h,I{Ђʹ~Mȍea5 /%#M_>ʝBΆS4ClMʢ.4@"}e22Z~ 53O<0*VQ6wfEl0"!Wߥ Ĩ=3n 陹5nt55i`$MTi) "鵺l8T5@lMAkΆ#tBXMebQPV_#=A`;lBNp:?=^A qYZz|:Bx n%UXWmk V5F>jȓ5mUfEht&Mm + S;8`!NO^4:b= uvkFřez0onpb!F?캰+02lrV}g`"[֙J®D=&ᵮn'(}tRfZdž've=sms6}rkKD $-kYk_e-p:\BVԳN;hM؝vqvCyFAR5fEDZu9Yi#uZ#58ؗl RUɃo)5=Aq,2,BL&F >v8T~lT6]U whH9w!nEɅ;:8Tw30 1E` +sX6ht'afp7h˪04MwSyTn"&F\ӳH#SfŜ~e;.v62BP+eUQ+8pҺ)%2jGk?`Dsw&X^Q ]FpiӥUILJl|FG8a]H|C$]i6<FM0<`hV:D#O!?<#;媡[)Ff9b@|XpFJ6=1 pq0\ޮk&/@k[ִSA Ai +87p.C ϖ)#b_x憠%S^+ʧ_dZh_.}Ę5>WwuBXAG3 + ̈͌ƗrAIΌ 84_rμzӃW$XOU&!›bE |@ƣUh3(E Z.n&턆B+ xzP҂1CШ_T-el7R}KQkD_*,KoŤ.e=ʑ ˚v^/1F24kʤssdsؾY4_70=pAu.+r8"aF U!ӱ~1ę@W{WAJw]xTbwCM@L84S( T7T[|%!up9'(4\-'r @ +P_/7n!ŴS%^LnܨfY<.{_Wtu#1 ؘ Ll0"@GU; pD$$r2&:a#)0JL@BQM'"̕n >e BVA}-l-]8/EPvfҷ{9Tܵ*LI\Y<` vBy%Md&(&^@ &MA)mLגדHCr/S\E.r"'%UgG@uu O8Q, 瑼hW)gnY&E-7(ek2mf~/U Wg/q.f!X?>Uq`6ޡ^ͻp]49ƃ!OPP%x^6^C=%D] -]/Wv^l>7]&*K:A#Ha|ZDYqkXMx?Dx!EldRմ.t އSwuP%a@=[X>(hvV#SvSL0S#\"|x1^; "QԒv1A`IR>7A[Q73>7Xe. '#|poL;# lS_:!Q&S:MJґ L}J:!*`~H7(l,wBS!"g3=08Ɍ|*'6 ^*!TÈm>&wyS97yԘm +|sE4tmd΀7?ӡl H ` EheTqJEB)+"#FD7~F>KyǷV΍B 6BK=/ynz<!2v$<~ 2oY ػOX0+L"/)' +;%t@Ő%bvzlaSԈk+:Ł"Ï N_^mAJļ;rœ$ydZF޽x+0CDRG=D@A{=Cl[;b!=tIb{у4p1 ,5[1*Z KPL8pu(u2?H,Aň2L&i_'kҼT>ѐu y\_)wEMot(2NbCHsяk\4$.I(7j>xnxEY*5cP ]B$?_6]˟q^1絪H%EJ@XFEP0>(9WyI&"êY:P5ւʠ4p:E$ Ԃ&T̑%V"HXU8byV ]ǍU23{?bj/ iF6؇QA])PZCw,! Ah\FWХ'w''9F*&~SC`}'VגJ}FE͗^Mߍ%,ab>L배khff+Cv~s"SKOڽD#* |! Y̕2lŕHD6+"/ixzݕka#]NdTcDbCG%`]^9˺{PZ4S%re% VJArG*N@#8lCCGkɮD@ǩ#1 riZ:/,D"*}8OK$jJ=֏=x7Sso6/R|/c oclvKg=k$r9+˿=ׄ +WpYI\2&W^v/;0ܬbtĨYHIxPI1(c2+òPT'G-%t;#O2Ѳ~Oz<L,;1EeJ +S-F󘱦(f9^f1Ay~٩OVxLZuwM&&]KQ cG4P'2 uʒ\ʪE'mhϴ2g>_?)##lWl#+Y*.bt& X`wߍEwx6EZk5 >UP2qz!_[Xŋ*@n:p\FYBc&^)9@%-Ӡնg.)0IH#M0CƣVT8>tTl&sF^v ;W=V$l"U ;)=kY(uTl`~ͦ0?ecP!M0KH O#flwpY:Т#*NW^I.,nܛe.}nɜGV[WF`r)Lun p6)JIIc&@ԵǚA͡l!^V#xi@Bbx{"8d}D/*`YF~L;`>ahv9Ǒ_^-AUP/^ȰJ .)|S<ibnjFxj亖ϫ_oLt jbWЛ{ |YwQs2fg6+ :&aH >SUIz-t7c)@:J[:JA[;[hYWF0 A=jbTO]F};u`YT]7X֔*nG׷juݘL +'ohnHaF9H!F1kx:Xx%S(<8- t6 `ZQ$1zƈ`PshI7 3!1YF7*EUj)P r1SQ +ư)OV+6B`hiw.U{qk4Bl=GiE@$EOSSYz1J=Fшߤphe3B$Ff46$๛;B7Ͼ$܎W}#)}L]AQ37&q [lK:<[A+aa4^/iyHLbo'-$h.\1=EsS`:o\M1@<=@y$aDٿZ1*˦&o'5asg2b]mo6@_ +$lن$*:,`( u1ݢ;YPtgD44o q*[d`@_\#:":'BGABGA' + -mZ(tDY +=~y)яiC#K651zR_~'WG/MzL_rUO ja$ՇЗ&Tgvzޜ/,Ws3(Mt!Ygh8 /7hg?;Se%%3s̀9̯x &_m=a0Jޒ?Sr[@&H QRJ9B$ +DU dLF( +@]9I +vTQ]-X5haO[kE#7h pH!` TaXo +i*h頑U!T[C'*N:h@\Fg=ZR|bo`2J3xg''R\uv$uJ#6E9o5aƄP"W2V2#mKR)ʳRng7ځ?AV&|jYdJ1`Hfs i;7㮌It8=(t$};\=M&wUϔ8ЈDg1&1ӴR\7dN1yi"Uab}RCjtPbAT%e!2pC~LNP@K|d("Y+ఀe]ȳZ˒&."x$`^ $8AEKT x867]d}7Xm)j?-jSOn'ߏn +D=8k,ww-'mZ P 9vBLF\Yiub#r)OvUD^_uDԫ?CY@:'?"BQ>T +endstream endobj 189 0 obj <>stream +%AI12_CompressedDataxms$Ǒ&fuLڛ2#"tkcVU7i"535I.M ן?{ddUVN՝/ׯ֯ᄏ~Om/o޼p[WmҠxW_ǻ^׫_yxs_nn?\(=]>ȏ? M;ߴ߲ϗxK#nn߾asU c'IɐRв?cInx/oonO룟[}{qZê mv߽ݵ|?ޏrx'wAF^Ee7LOoeuсaO8v]06~Y[.؝uʷܜN~p2ݪס9SGz]|s߬~ww{j}nF7'ޛt~{lśKN7jwo?Y/oC}ՇUWqZM3eף1Zʶ7w^Їέ,7?UUb^y]V{Q9gy׷Ӷ_緯woܽ.-o>>,N;jOZ6xznfwקB=97?ןͽ\O?޽wy7?~y.ӾqCeb|WC}8}}9קrp^_Hg/ՇO_ mjo߭Ntyu RuzGݟo㩵?C8|s{p/?x}{zS->}{yaɴ"$4_|wˤݟ>x}zp}lx{d7o.'9 廫o8qď{ܟB[}b osBK}K}_꘾޾pӛ_N|{AЇ0{o~r-VڻK}}K}wr鸼>ǯtuhmu3{ōi;쁻ğ{} ndGWy??p2~۟͹};3%9շPNBI7I7t!/Μ|k#7onKЎ=_t٣vg}eO-6 BG|ˇ|w/ 7euv?6Z^Z~;p9xqv!E>~qI~fVE{DAD}W$jNQϤ!TojyWE͈?b3ܜ o<__pYǷ/H}?>I߱lblmmv~;l]o۳9kY__lM Ino͸6Ƨwx?uIwgKoçvz|lIlg<^*)RR4)&meS Y׶ ]꺮nnm|ywmا~~lC3v.{PN gLQjʹmJ9g#]NFζO9ٰowIG$=~1Lͺ#l3 m\Mm.ivlv +m0:Fr ;.Ȯ +s d#qr 8pyA?'W?5(?6oy˕H;n0ln [[|lۖ?Wy yMZK% :{=g)n4!vd0mƹ(PSqiG'NUۍЧy4tأзyӾ?8U]>h('y7doj*0%>Sw?oe7?^d X0O[_´:q6[O_;6rT5q'>GamZ=sp{{|kbmܕiI3XS\=._WEz%ɖWI29}PވXk5kx|E^"jmBiqҗ蟉טWϫxEGrq5&Ng+&3%"7}ԀV"FHs 29kn7 "4BE2A>@BQ8[;4BENʔeOQIS8Ik+k I'm8Im+˰m INΊHumjZ7 + &aAe#\\6eJ'a0Npv܆Fxӹ,Z(la .a[," s +goº#Pa($;JP_ңm{M{+qS]۽|%=Ba 9WvmܪNeM֢6EפxGaO%eդ4Q͕q蚡69d +}?yYNp׳i3aѴ߇a1ͳOr_jh7dÛqLY͟[Rl0h4k5 zm!,SiPmE7P\y93w;cYe1` sn<`\1Dži|C+cY~UPl?A ж̊ViNJ٪N7[?q}3L'Caͥt3qlD@cJ7Q{7e.6@wl9큵dG{\h<3PZB]}4k3cJ(پ%.ܻn c'y~ O{n^?ǜciy0U<>D%_-%PGz@1xϲ?ܐݑ~!HZ2IS6+[Җ3җ{@f_et3Y=@Ex2oߖHLL ur fWQ^c|a +];8:kNr.ʵ$k샤wCyG7oɴRx\\-'< +>k  2_G:1Q}mv$g\Djs uJ<)N/_-=\E~gt9@C[&uDDbђDL( "TDOU"׉"nhĦg=pjJޞlR+eڒ%9@eJK<,0Cx/hdmqԱ + 3lN45vK(xfD*ŀTbt GkQ; &Hn8RTYHMGrƣhn@tŐ$<@ܰa{ rPA%C fAm 4E3ʎdzfFS6!bW7Nzܧ9׍jK7uߺ1Q?v#=>/kf.qŗåCl;Ұ./ ~mG}J1ecKqOh>3b;p&K+R!&ⓅU<ЪOG>7OGD2"IǛQgϴߺ@E Ȉwv2+?Ie_l]^Acv#[ȃQSlzjp8naE&.A),$*r4rCWuszSϼߣC=R$d'C2SF!O!Fh`r1 p20C93i^ yj1y~UtBTFy +kpet?)+1 d(t؁{S^#DoB{cu4Xr_g^^^^^K_A%KK1K_dddddd/"!\0KQeT*N\G];wb'24Fb>5v kB_gu-j'G̑T +,jӅd*?'sYERffP{ʤ6d`$!' J2 ݀6'FvQ$H_; 4k_[>=[1]e~A2>w3U1$jwCeuiA>3ulY15]{씌k3f1hf:[lOl7Fp +(Bi,įJk{B@'vv~xTK"0n i!^H~:oHahs;tN̒ CMO) GU0MW }bh84_Ɩї8 +ÒB?3+cū8#j_z|cBLset 笸ׁKgQq/C0&^Gx]a>oMq[ς1K82 ss=ˬ3-4ӂ3-<4GSa%Pўpa^peĠLyw?񷨿}up}+8Uz9nvz>)WqOD4tk3? ~ެ^Χ~OjWoq{煫ncݺ[t}pvspsw{y7JO7wwoVZg7wn0~͛o} }<]X"؎Él9=,V ΐEyW[}p(g%D$vtZ9WU## d S;v'i#_ Jl/ͰgmOpWjv߳qOAx~^'AdaDada8%wBDN6О˹>(t6oEArgv'h($/ta@қ? $(N25aJ* ޞ 62X>5Ki +>*RDpdNzT 2ަ[{W[;%fUĀ'(R4t1@YC~&BG'0&]hdwVu[wR&t6E:f۱$m^.DG*F*M2]#9jHܑŐ#wd&P9{_>P im?ɷܙd{4+"m}'Ó} 礏%;Ni~WB6JxEހ1$!ᙅ)~ +=?E9"0ϛe'ey%_E"!_u$5A~ C#8Ue(ȫVl=|ZG2`?~ƕ!,8t{QF }ȑ퇄>qo|%ww_ˊ}Ѻ/z Af Q﮿]1}+eK 6v ]쿺7lJկ~_{3 G( +m~BJ;SV" +BN(!ZzY#9BhFփxsaHi˙F9"c,ěɑiZ@F(1-<Ǔ&{aBt#WGr$ nqJ{a5+5$V AZ1_%%2`PTKmߏ 6*2_2BP8ScT6$DDwi!DE=Xr'b0$LV`DOA _$ >g$O>8bƒL(Z.+CBLt`Msr^;_` O݀)o@[{(mdbC/6b"E#V)PP +/P^&U(l9~C'SNf~.vLn J9o[m0 f`RO/B7Bvro weQ=FݤVvHx}2eSu;'lp8I8 b0^ݥV<ylvd4|\td'FQ&˔8Q [ɑH<66Bh"BjTga2aMINv.#d]Y'mph98<2Z$\QqBxP9*ʍgʂcrdj-8 :8B=uh D=azT%h! YFϽU#I8ψ%L,2\dOtéʴ3/H +{2LRn&r`uJIc3G, D +6l (hj8BGCHxUؗqtO +&VLY As/MH;ZB4A١`2# sኜ"k5Y ?u{c`'~'tB '6㍽U c[ h ϣuP/)?]6P +qN'aޫy;۸Tّm[2$v-dezn ;vUjxDM-NF;QȄ4S}8 +̰D:y;t'|Tɔ. +uhN>:h#*#2}Ƀ !t}M:CLɉ {'{Pd5qD Hh h,JE;Va3h:tf?\/Niؔ{)̘ |2;}ʹDcmSeϼIof,a !' KƹaPx$"g9\ְ&`q .[qhW c7k&Ǿ9dB:O-K A/21\):,&0.&aNFT"AE6"|ʙ3%SQ'CtDL#g. &/':Hku(Wbwܤsg&}-'&.X{HrL]q!!RZY)t%}P00'NB\ӁnNB*S2ȹ2 +ϵӽ`Rh49P9z<иJ#ׁTH{$fUˎ"NAd:#y/GV2A(&c! LMyb9BCLBY1-_D҆B\ƞH8yN_Gh8^"0|ԯY_ '{L%{KfyI17뗵 n]~{PsVm+Dyʕ&6**GX&oUd0" dS w"•o&;^v(lȀ*;D> o6oVŝvҔ.U/ o+6fۀqjAT";n)aސv+?0& 夷*T>A I-0TK )Mٕ3jsŝFXbe-LΦhn/8YlANAUzu݈, +z0xS"FԱA%LUC+ > &7NWhh5H^|n{Oo#p.+aN[`@Rњlƞ(:o!LPɍ+㼔J,3[nyִh@!r";']$j!&[ZBvu)RIkغT]RIAALu|GTʑp 8%H +C%tDHp)sALj +ʭLmqрFN\4{@Lc)NAeƔܠ3Εi|M=J P=r5%mPfڤTm[\{I,L[am߸"fZh'B6N؉]0.e G״H4 m#8魭dS K5ה̓C5jN!m۳&{! |k7*KY"tn ͠i[W8I4 8j~qm,n24HA$D :Vp :+w> ꝡ)y[k;pN>%/y+; Pn`*܏RKnq12E,ȥ'bJCs;VSpN,Bji}f.v[ESw%Xwҹ~Z=pߧuMÜFVW]ڍ;mk5}.5*/%~f-]+{v=ܦ8#V0K;Dݧڪk}?i_=un,r`J!x X4}&'rb Rž@v*}A:yLXUЬٛ?TN2 !&fS RY\J3̔zSifzpf*_a#ẏٟU2fU0VeU5ZYx톄 `cƛ}65(QG4uHMhH(jy7iDls=-1ZM vGLvan=,!dBwpROv'_7!Ns3_vSeGjII;C`g Uvuw\9m5-]MTd1t.7 MKC~lW/ 9(P^'{(v>a4h;2#<_~ >, +8ȳvƔ V 8pyU;[ݍՍ3{'Т&Y>#;}W5/AVC9i +p mf9^|ӭ4˜|5BHZh+RyŞ̌B UWL]6&R,yxB}"2,/Ue 8 Y$ЀqgBv4U;UE&l" +DtO4@HTnj.gG bz}Ò2Mѐ]EeIGw}6C`pm?!KqOfQ+/FԳ'Ѝ,eK/f}TkAɄm& >j#ёĐIqHQ'OޔCre˲"}8$n2爏 W|gVTpgtΐ2>&WGXDKͨ˧g :ujK慇 =$'_ԭ6!نD;oF8q k0f-`dbͭmj,2!@![ $n-@Z_skLƥij$c2/rAB`P5̳UR34S}"2Rñh̷(mD i֢>j*b#4Tl$ [Dl/ၷoD?i,AVj9[r.-ѝZ:*E&loxtOkɃqX&=y :c-33mCs5+K՚8&+vB(wU`C<;HLc 8-عqXm-@WH v(MFF\Iy+`|0g0re{10̤P=L$t\ +;"38/4xtA$B *k89J= +YņCN߃!}@~ueFn@Ɛ%bow7|R+Lp;/b +<M +Z`5{i+<ZV@.Jx/SB!P],@M3laz1g9`sbsh&o!Cf q;JbZи5ˆ]?Fq;)3NͽXJٔݶZ&+:U kh N}4nS8lF{8PFs2N&CNe3JY`713skpı`UёvgE*FM6bzadZd.&6*ͅa57DJSZH63j7jkwC9 5VszT"Lο+{g3Ip=2+!&Dx3GŅTi(g-"J.~5Nn-@va5=xHZjtM|d6)*Rٜr`d!EwM0:eyՕl-,{v|^?ቒJ vpA}e*BW O]dLZ3%fH9>kDJS4*a\YT,cL xZ#ʇp]UP#j3 #-I +oOº8Dڧ'Sb,0 IaN#Urbjh <?C""k֢reQ"pkjϞnCցC{*!+amȾܒ}j<i(/ Ũy6/%<2#}xeC%2E2fޏi:?UQHM)T;jު$i$,@2[,R(ӟPRkdF-'Ze(LL=hxmsx~ua5Z +;lސη`_`Wued-K!”jLJ*3b846gTS)C1웲N ZNS6Q~|Co9RooeGRϔ,; LIrPO/BFtzK4ͷ?N%}:D8Ab`?~ z "f ځ#6 C\x*ŃTbf̡%Z;.cPT/SŸI}0"dAj팜Nd`X:C~@/@X(C;H9G& CP9EcȅQC4EnEjn,4 jňST1 +@LLd֗ +VW.p[UBq]%{E8 rjl3ǁ EfhlJC1&O+I!F-£ʪEz8*JIqTT9h"O8SPkR)RؾV)]G^*ZpwV,ח MޜV*LJZv+z೭:VDp|VE _Վ\i+Ă,hn|ftWD Xy/?7C"ø,ShEҎriG|>i5bۓ!`z3 UF2ghصWrZ!6l^-UN5%"eR 7Q !cN`AOz gJwF^dh3Uv;*q|d&PJELti5"cQEi +2" xNde)5E2Y(!X'r#/(/PrGWbryqJ}VXw8G + M6hq4FD(smBXd. M[V?wF*&QbdޣDcL^rh[#<Ȑ +#"(cDL &1A2&*Q!sd¤3Ng%A YIlf#.0ʐGkJ%MhmOxԈXx+BIWA?[0+Bf9p9w%i))ie`Ftkԕjukbh.; ODbʔӼ߶z%F-NrۆJ[mxa5L\n)alP:y=z9pWUȪ5neGZzzh^GA)8]LTGϫ\Gö\*fy/+%*FdJ5FJip#m^C^l܉#wZ +W+;NŽXzM/+;+;3ε~w޼~@/4_JH<ի;5wFA#4^_TBAmP]` +$(숉,~wMJ®Pb.rᕌd/ bpt`fcZCmm.B!4"绒-1<հMu @j(i|.M8rExo-Ew@6q Gs{PX%wY 2aR:+:D0 \W*JBP \C!F\aV&Gמ@RaXb01L 5`Kp +xE NL $9\ARpg+2PNkʖJYnreOWWc dN 0U#л%J"p7`S~M'~Ԩ5c&Ӡ +鳔NB A( )85TP@:ZG.OCNo܀Q +2RNm>U!P҈5DTztS ߝB6ve|NI+K(  TW"fLV,1"e`K ܚEK_d1Zr>a}C{NO1mk&͌o[8)M'~vF:( 8MJ4a~k]xP3N,d}° Fpx$LX2It,'I δVA'[q%LFq{"O& $g5HR4ҋʈ3D$OQ{쐁G8Bj!Nu֑: +e֡, ?NB +_UؕlV +y]_î +#0fu#&egQ0d .&[LMkqbzJ-MN0 Pg0Y;%ۀP)rq%ԥ̌MH=B1.~V;rwȏf=%IgL_)=5q[(U3*aRP*ZǩLUM#Kf֖=Ǧd9E+1ǢP1DV扆a2/`j,;s07wAiMLM Բqxz~\eO]PL,ۧϳk_dZiyiPHHLSX TyV3h9Rjc3h ">$Fqe\.ߚ5m:YS%|/]ʧ W6cfߪ'6[|WȍiRխY|_ ow}7޶naVH?XYir;7[Q Ϲdk[nu +ɕ[}nv"iln[;UvSn7$ dMW; S^gix09#ù;;ӺWf=qN%&1[Dž +w҇\Lq_Ҟ;3E#`䮮ZrXih~3ي "\Lt^-O4ԽFv#.k}.b0uw`WK[+ um=pcK܁0~ZrkLvߵ~rܓn{k=Gw׊fiRp# jC\ .a +'xJ-5o|ɴsaJ!z 4~OM&0@GŬ2(Al2)P7KD(!7Yo9lv3J̞2IkKihҙYqKsUB3̀\^491kTlUf[n%lenS+ovݸ%UHh@ny=qC@AAQ puq\*n蚍5C GFMHFjV`6 Z(N6.oX>>ȗMrT1յ:9*U6-j)Tr@lٞvt7+\OY*%hjԹ PKClW/;҂tvD?~O!,O:]qfvbSD08<˳JgJ_wU5+ϔq$ PGw3*FLlRӍY|`KWv#TaDqЯJF:}5B5쵀H-n -acv6 +LđjcAS~*94pնPuWFLjB7#k^>; |< vx jke,[P#2Q/Jp*ta3HQ]0ZKkhT}V|Teujdl()X zs 1ü\=tN$>,eCCLa}_ۄ8谌|A0E zf;B5}Yn +[&xgW'lj$0QT[>%|!_#zl?v,:tiA{٧_j @?L iBU&`u`~6>>W) 1يBm9?iKOuszm!}grA5wc]mmtze{0YgvXc+Άodzrm>Q9+4BqiF~ZE蠺ǤJap؃H{#цC5;d!@F&x01WtNx!Wb{I}P(5E$p״6e_;vv¶lDz.?;(C41O'BqЪ%<yq -H@(T7⢙Yr@kwZO-ߘ_6bPwTlB@Jnsƌ Lb=a6/~GIĊJ,TC(*Z1\RY4"$h +}TT(mY@!a hFe-G9X&ꤰtK-^Pj; +,1-DAԺG$ +!תb\׷ EG@${1[jZKUcF *'s50oQFSFk8m逈}FYC-FdGJb  r9ׁ  =KRu+aMrR=H lYw n6jjnf^@͐A1dPVuV O3dvM;cb>+n D887^;e6rc4Tsc0@ +1Ssc Dוà=c1P:ةU $;XƚVQ]}9;7u8 x:ڊ#6Fq@D6D'=ZerV/Ϭ,Q2n\0S¯DsÝ.Flh3wĀ k)i&w~+!HHl(S(C>KoQWLI%;V3?NTcL?N0#Фl8f~\Jʩ16cfgs)1lɏwDVcqbڶ- {SF1)'Q4SWx2r]uO0}Diːsb0[c%cRrϜ%%c=2Xf 4>c#9K&d,L3Vd{Fi,9w,ƴ9gXQKF"j#gnI-w,wte;"!,wHt tؑ5g7in;eZKi C[vxE:r5b-n)dv;t n%cv;|܁ovxTfB +53]o[ݎ f踄ц9^-Mw" !U'v`STzwhk!hH(<r +vL9Ԕ\N4仒k!ʵˆS Eeg4ؙ⌢\TsҘ'SrQU1cvb"^ZŅcCK'ZSv{!kVb7r6̱tN^j:\ 0f:n/peqYeHqQOVՕ\K xf%FƟe-M q%W8b3%"xJ7Zv+({ 5,u:8@(HJt:w'Iz0hM>UX>ny(r9Ca3e6eifp ԱjzѠB-Q x\8#6Y + E_hZ2H`2+F~4,^? +3HG`p/d%L [~zʻ}/E=DL31CSrOikY `a k!Pt +@W U&E| :bC=Ȃr+:rL9JSSogTIӨ@ħH|!CѶ)5n`=,R i35^B))i'V3*R,7@h`=( +1q^[xFɶ4@m2=%f Ca`"d}$䆃VmƤY$O +DЫǑjFO'( +' +!V01hY:h4Br(Y +4aڭ` @clp/`X&##pֶV,E2 %MCW#ZrFhjgAeŌ`هA,Y=5d/!.2wL| !-XM[P>*!;)XC.xǔ tAt tg,TtX;)2c 6M8;Gy1#N\qYIEe񈎡ɑ#AKƀ)$o qƃT;+ &d,~;^uӑemdSҞ,ZO-ouȔu" n]Р0P$DǴzсv}$w$B\P޹혫T%waq^"e +Fwك}_!P8v 45= +̤e+, 쉕+*7T\BeT1 ڋ­H3CqC=):_& +9M+g2yS4)qƵ~WDDmXQy4 `Xjm)q NJ3êFY ˍJ&4㔸\AuȔ H'ER R?Ȟ;so|:6Bb L!R{LlC(.=Ax\@yȊ|B%NUk>=S*r ɨ8ifGx.NIŠDƬghu91˜, HV !󳾴kPii4#5 +xլ`ZGr TZ={ З3:84A:Nsѻu'z(bP"*:gY]c 3h6dOq^yi Z$ ju44r5Zɥ׆La9Ә ̝eupTހzcV j CW]'A]kHFu9Ux =WPcֱ`8ݔ]QQQX>)p,oLsR [eY35ɏ- %[v +<%ַBv·ωTS᪺ ٩T hc*#*%>d~d1p:Lu}a}4 @)ЬD3BFqQrxl)؍}ve2v32-|2Y [5 XYU2sb9Vls5܆Wo!7V3oGV- +͕Iq(7}si}8ݘ ~0[S7p7TȭNܲ$MsSH7g;uwMo>tMN^y3p}fwƲ΁aJ 9W9빃fp>ގk+R3ew8vs⛩Drew\ZqGI*ř{{f|d,ѵ!VD-εZs/ISѫsӽ&dq(D, +ײ{d5Jrz<_&VܑZ;{]pp50ncZ*kӕS$7 Ĺǽ5ZaqߛXY.ZL_-b[L. +%JNz7Ad90R Xu])bHOs}enb(f005sg 5jp)L5uX,%543jKihҙp[sUϬBf=Rʔ)ʧ2Y)6VY eea͢V߬n/| 鑸(?[? + UM)@Lk-D- +۝| - A*]d.`GVpRAt&+(UjwVɣv&5#~NyjXYD$l\b17FTTW^¤S̉-,e"wP6h"Nf$ogveADJQ!qIG0л +S٬Z@u$yw&qU}7iJhXPB˱EA>סjC A<ǪUp_tɱWGqƯk^n8.8|$]*ne5]P5EǠeL7Pqeӑ? \RKa%ʢJ8:pmvXq*,𕖫.˳>Zx'ϸ|@$ +o6Fur4=S$./?E .a#حY2UVӻ?G$ʓIb9q* C$$ ++3yE[&3mg֧jiރlm3GzFOƺ`R]GΪ\y;O-;]V C>-ƃbK͕xG>zۑQߢ{wIV阦2J %4o6't_%I8;wDK-KqO:aVݥo.f7X('CGaʫ +8xrv|H &rs_k)%eTKRf-Kc'S4><+WsޒPn!rGR}9r-_<&psH}_kA5ٷNy |^DkQGM? - - 8ZK7`g7`g7`nlnl/݀a݀ϫ`_>>f}F}vf}lӆw a_>>þ6fh=!0Z!0[!0[kC`gC`G?~]i5ba!BGh.BGݽvUr0ΠoaCn\nTsQLkI :j%#C.B4[zyuwqp}fQX4d8qM*tϔ7:iM::H*t/>U&١B>e⻆ uC0tR8ɹY׶c>;z UunwO*pkg즆4MN +^?[U +yӠ{y(VnwdɛT!Ր*%p]9\DWV.UǪʱ*%b +]eJR+ǪcUJt`5D|]e]1X FWFW VC+!UPjtjt`5bz `pRUǤ.sz-JzM!kt4vܮR4V~[U?CXcĔ?rB3%aaM( +S(k#jQ jQ jQ T0T0TZZdM(C(S+ګjQ"R()[*[-JB=@ҼOŢ?,7"^@+WE| ;NHCES4LT.R%&TG4A]HhEߎ@)vž@EJ*0]8(SU=.z(ⲈMMmuR=mi\,#>J7z}S;v_h&e5n@c'G :q6 QA޴ױNzw_Sc`s<)InOML΄VU3a_) Tz^jB"iw4m3XոR!/S<*@12Mq+_x]y|o 'd^@J-[_B޶̷7| +'JGXF!w!UJX5 *ЮIr14񚣮~;җ)gVY57qTJêuဘnhlgY$l(>$^}tw M]/{.ܒcU;n*X~}=].1 4[d +Gk"&*7=]MQ__Kv?fC'ܷ՟w2}%nZiG7@wf.DZ^Jc3][+UYWV:=ssOc*ƠQ 3Jm{wv@7KnYXapVQD%'Q¾l&2dt67B^`x7;*NFE׽F+as)oEmn]J(J+Bqk5'pniu+W'r' Jw=, vKyZC|1]ZUHR8cGhikPPG+*u9(u,U0whQwArMa\Ot̷sYS66ӟX\>{ұ!b0}& +OG5yNػM)VmG$deU51^Na]HKAe?zhŢu+շPm50S,P+dh{Þ^-R݈6bҺ4Nt2bBqMiuSV %MS>;:T( +v=LT2 3'bPrCKnn0QX*L}{/,µ=|$RGPQ*>c#)51VVoúʳ6 kpl'WFOsnoQv2h[F28lY\'q,!q PGXMf\HW~XXy#1~_qv{pJ3Z6co[]]&H +Ln)18 -jko\x+Nj_b-L78XZꯦ9OQWy #okZ$͏S=:E>mj!.UZ|vZ.5ޭE4sD%^%\˻sZ"oQk#41.j(Tf> 0D>c҂g#6|R_X ,"4MZ{rL>;mmt]p!&51Qf%&ݭ2CO1G3evիOGpϊ*\NSl8wW)wKbiK`ӑNnd8g:Ic|7'!&WyuZfܰ2MO~[P<:s{<賥UO/Cu% t8 tWu%sn~Ӯ1;̗Y[ +^Ϊ.zx=_$^ʚk .YGμASʱXyM۲ίA?Z@i`<ߖYxs9F.\Lh;=~g(EdneKMF$eb-J4pʒ0*zri|m~lld{j/igY12*#^Ԁ +^ެZq{y'N-^nw_`1^1Qvq+U(h( ,TT[j`ydϨp_z}+<+?O nV@ի}nnk +&ۭZx"*YmHi僽6/O|Q.^+x=)x13x9xgΥCh*o7&xHTl٦oI"+Y 2 D¿ \{o[:,hO%u31_Nt+c(>` +#Ҧ $-kŒI\1Ian&%<`ܸ*1޾^qc{K~zKz9QE"1 c፶]}z_1cnbNF6<|Rt5ySrN)7anj/1yjj6[by;WsLM6t|É 7.M>' zoi 犒f ѴUztXvTrCDdKqpUJrWztk:CRmԽ\%ABťW+1w7TQCb3iHsg8n6 ܿrS \_*lҜyݢXKPXrl(8fw/L+fWfAޛXB.6\Vt! Kŗ?k3uQK8sp|Vz]Dul&\1@/#]_ZJƠv'd*Uc|jVM]w^5n2z^)NwnH@K{.k׍y[#TTiFe( L5gA ʤ;$I #t2iӋ͸+и!#{{A"05TDޞhƣpx="nEmodDK2FX? &g",Y^g0q#9d@́*9eķyΑ19xfyb3qsv3CsrȈz"_n"F"`"S\&L030&HG;Ӵg6D:5H !r.o^F$g;  s@6~RHD #Y5jU7._݋p #;Fm8KG43xcL_z ޯ' t3T<3g3]L֥@QsɐXTdJ=2w+&u\EF9MyLQ,رJdw]eR<|8eafqlH*4Su\ՎXB@`YhfŶFb݌&oXStgѱGO$J@B4F@ӂVP`5U;B'hϛab|G4๑oK$8TD^#@XqDtJ#.4FDm+q# cUJH+jFƃسD?`Tp˗oPVDuJn=7z7Y?CV7|_LP;ۡ:A(Ess"~2,ǩo{{򽔗h\E4sZmbʇr* _bdfy7*=7vG= +bAy`o?v_~|;ہbJF;L~)T>d +bVZK1&*ⱙ 1y*ɍ}{\ۏ#1K`/iL`8O&uȘu2Pb<2 k(M2mW{NjnWm("X5aY][oD6GUwh ~26*;,vvln4,fuaRbUŢ&8JhOo!̡`ߛё]7+P6:IUVASzϘ-1bd9I|(p8Vi֬~aT&1U7,>=NاX,vW]_bȓ +]Fc @JjQgntۆy0ng߱eLvĕJRjP7@M8e?΄X$W[~Qg;WC89O"$~gQy6Ba%k\h ((RUK=*CBE02<"NhhL51isK].,pё=U3W:/ܗ2u6aAe2BϫlMӴgQ؜5-ae\sݽf |^΍\`UP~$4aƔ9Y%DåXc]v~dv MKZ/w<] Y&|LJ"cJmF?F7"s:WTX_j;ZoiV*I /jq)BtGi=>xhj6`p7:mÏuyʬ3*lF_oƻC'`oASwtxCw9x/k2 ` +l\V*\j=MDrZ2AT@ KVIJkuIy7:=邶EŖBS],hV=5>#<"P%GZg5@4iH%dmZ"x¸5ج-NVjxy1GhgTcTo!:A+:A\K,g MUAyc!-pSg/WyQUe+'ZT*;r8.qo?ʲZG$8y>^Vߐ4Xb|ke"w~zf)f}.a5aAbtD椨!}γV$0t_f|o6sn*HEZVGT2Ic[;"#zgM R7sܧ 6@])4WBaXѮخj_*0$BUqN.H{%ۜ*!GRۘd@ޚ-ShH奓frQAF6SĬonMCl[vQ=Y-J)13E9.Z"8#+"uDabЗm >n偗n&}yLJ i\K^M\7q ߱F eh' *Fx^7<ұ[3l 9;Xm} +P;Vxl(ؿ.R292zQt|Gijo~69[ULPY+ &ʋM;{T8M {| ۓVxyr+E5$W{_[X2_guM2//۾bI?rCq9t齖~p.{*rUӤ n( k1"@lF[*^mݵ~aE(GdT[^CSJwl(qѣD47?eu\"lmo 8`\oKcqbQim/P%;TצYRi?{9- _S&{l0zjv:nu.Y|6`퇐{n[{K5UO"5rxu[wMfȇ.9,sk\"}V;=e^*xJ2i$kj O3Cza5/1͚Ch!]Ҏ6̨`CZscl$Ƴӱ\joZbĈNC_{Ჰ +T0o=4J6q r5fD{^KorE@f.;͹-8䞐ࣉ NNrIrC *:eeC asCcUѱ[  &r[%ݍK(m*})NrRNn'͛`1^k4w݆s2`eY]]HZ)͗XZ9> Ern.O^ُ o±겎Xz|[H5h5;}_ǒ8 +֦/|_֋U|֕^c7"~yH[t޾+.'3w8o{\ꝉb[T@gX'֥]R)qv$$`8,K|K)߭vCO^ ui`Q6fwgV-?兢\5km8-,2/6x1ne"HhWVXFq-ˆ!ȏ+faiHPĿ-K˗bU36: 1e$0eSJD$= )sSZ".9!ߕt7dQ 'v@yt;G&nBbmC#=HvXڞ(P]LDO"icr\FV$(-~7G/6 +QJkMgu& KpE,^ox8jvsnfqӔǶ02!dnYz6;d-㻆YPe!uـϯJ:b@%-,~(:(NXʬ;kr(jyAR/r-[l(ia]DJH6O⧻٨>mxxB`9/ {-.&O∖PFE,(*3jyi$'G\c6,9[=7*MZbd#6IKSݖʒb<q5*p cޚ^A5K SER~Ɉ6#|(cKΒex}OȷqG`J%ZPTеB%(u%VԼ%F2i;3q3t 7w}'W~o  +i2f%V.VL+@rbhG(@-K&NРzwUHR񺠈5$ x}UZ7uCݝ/GUyůROL=1n讴#|Os*DLճm`X=a O + vH*E`c.)1\DMre4,?殺GR@ڭ +!cV0n-v8ae\oZVUM`S2 HS]T .OoJ cDb={uS/l*W0k ƗI4w^ ܵixюȈ-uh]X#^nϖPk#e>$}%?ڃ!N41\j9SPkim =F;׺"ﲈ},Wݠ&1ҝ*~N)L} "ȑɧճ ݜi 7e$rY?S+Y@D:64]1אּbۉ"G^BbF܊^%tEjuF6E#a8Z6r2PA㐝:NR_sMڍŝΣ,fg=z;z{t_/ .yKXa_YKC&ͣR7A_bWlYH#aMHMThT+V"FΔq8 ܏,h!fֽcdu1A.Cy&m@Y\Vt呭5{و [%52YX1u;1tUoY Fo ,Ua]tKdӫ,)lh%h "X@@(фêQU/=T8!;8uszw-%Q*)bX,'G Y瞋8=&,kÚ#hUm+7`mYC;U`AKfiMwӪ x(V)ˀcJVJ$-EX*8Ɉcp1q$gEZj?}`Ƥj}dt %aűZGB5ZgzF$m%>ůU= Ǖ 񱨙;eƁ\oJ *NjnFfqnq,l9L"eرǸORajVwTkd/敄#4*T1O +vw%(>6 ]R}ݬqxMoȚ\TѮG>6@Lcno}>~vYYä;j΍k Yb-.+=piXlrz^Yfx_V{n)>6g}_,+H$@2Z.㡲”:oT)麭"pS^0ϢwxFK]:~#F6Y/qa%T q$C^zB,<_\ie]Vuڳ~=D.CFWf + *!M\\}Vz +UՎɫlR /۝_.[tY1%⹒ +gu檼0kMsGQ=7ux'>t+iե~w/, +y +f5C0Wk"QYT^6bmLByu&@1Zag;9$ weIRe%&_}"L1(mݽ] +,^JLRK QMq:'iu%pZI9@׉ Z٠Uj(ʎ $.;Im3&#*ؑѺ\ܙ s !*r[]Z:$IaE91P5cӼ'p;.%pZ{Be{ !qU+TYƔ%'`; =Ӣ2eɂ}V'ј+;Ϛ-$r[uSZE9)ʃ$8|5/Ý !F1ᵸRxo~{&JЕN9sTᵋRcN:hZ;gSbH X˜N֠_MUx ch0!ԡj;/ D])!Ni@C@3?"J,cԚ@֏M*; ++u`[ rH0.\oKw7ǒM gX JTot"%[0kGͱF-XԒER,$c_HZxQvJxrcUZ5^S_m1p_w"V6,: +ݭZ-sY ZQܥ%C)-#F])r%m3U:}=N!WtVׯ|_=~d&1GҾ-pqY〧 vo#ϻ* {eU |tn*DrJ?,S`3K(=)R&i%Eʦ N|P-6+z\ҝ+lvbzXh\ƬEV*,rgvUv,g}杍5,W~K/G#dzev +ɛuBR{jQ5+r݃. 3Mz仇kÂ>킪5.Rk~8?**+lљTHERusO-\b ]CdXLM]#:+[z1\1u%ԟ]jWrs_ $9@lNqXI>u(_W%*'Ci/Dd`DyiZ<đݪ7uTY5G.k^k& ,3n=Nu*-=岟ט)7ֵe4yYE3|Oe1/ŕ-L^V!,+%"Xr$I>-UgC=l LP5 ?1DSVu]ۚXlإ=;tJhiCkN y1S%%yùyO]D3չ'29Ux壐4g׬_J\U^ +XoQY`k f|P{ ls钞 oD>U6P٪)^`h,W4sR^YB?N8an48tYtN]E(y3*y@im.Dw)9V?UI q.{es +J0~Z yj})] +I׍1Yу9#@}FM.5iS[ƊS*-{xXpљqjVV +:7o +fsNA5ѣM!,wz]%QL'*-K/ޘ*yQM?wzNrDuAӲ*b {jB>Ϣ 9*ʹ ~{x6?~a]}zNZJ9 ^d_%}Bڜ.Aua<ՑKG ̰+7cF~#6V'RSN \w8}/sVXqisC5)^.z#CvꝌLiTY<Q%2GS{O@30XN饿{pU?^ o*00m;/FfV$y9ʫU<3(TMaK|0OoQN:ҝ$NKod%B3b# S1^b~hXOwRxR]ͅuJIief4jU`kܖ#A9;rq7Qg[^bZR})hiioġB@4#KRcsŲ ITb͸p$<=N"#ejܑ_zչнȚnAsSז(X] +n֖/8T4uZny5%MwAy}pqq VǼ+âQfvWENUE|!)06DM%򘳆}nAʑޭ;lL ! F!)EE)cHx3]*~ fhO?/iR66m`+X6Pnd~MUdʊ'wiHUίZhcNjmaH1r !+Kyy;mCuBgD*S3&%ދ5RZVZ.j(Vފ MҴnpbȒ-Z+f-.zpISe"tza/JEPilD2<-ulH$Ҍ(Cb(Ip|O[DPfi /hB摤;0GpL2ʕ+$h.XݸzyáU>VV=;fq|}jf9reE+Ybool&ӣ>usGkޤdN#" +/E 韰=-T/ # eg*, [oiG\C|zrGSzO50ӏI띰T"Sz0[S-ԕd/ +jqi T oCûբCHLI&Re>k4s"U;Hn8@a&P 2bU[ OncgIx^`cԡr/?,}N+Nu6NlB́RUVn;0a?Uݩ#1x8Cp\i5d`nLu'4L.n `wFYL2錐[P^"<84.uTn^nm:7Ym CjS`";d~J$//XH\})3WBlp 2 +}ȕfY`@0!9㙪'¢;2݊"Z"ifQ bXeRV()s2!@7gb~uSXB 7cXRhA*=-Xrgb=TՄ3+ _}37%&1 dR 7ө2uEܼ[h'B F =}Dqs/7 UQwT׼Tk:lì$Bk$:A$ږ$ѽJkʙ=Ht-5Dh/$:>0WDAJdٷDcmZJXD#W ѭYHtD*n$:dHt$nDljUk+y +uNDTWU :ļ*n a^At>L0tѭjݰ'fc3,: E'kXt2,: +Nݥd EP⁢C⦢ֻ舟~@ѵ5zz?*򉢓uFaPZ#8TG:}E[(.)7]DRPt]]T(޶7]ou?:ϵf]NւeFa\QtX*][df~OSc@a-(:m60u]#U9C(XIxBѥsp-Q@1]@0L(4:N25V]{EЏ~]Xk"L(: O]뭢 +L'0(^EאlQtPKCAѥ5PtMuEyPtEX'=PtMy Eza*ւk&3/ւPPt]Zo(:E'ÌၢkJ_L(:{ ~c6扢#ZPtTJOւӌ^E'@iE>Pt, 5|Aё}踖cӺ){(:[O(:(:Y'Qtw\PtvAѥaFѥ1PtD*DuM3ӤYPtPtlWPtOEǽ((4]ZE'EClz+͞Qti((au]gQ;Pt`( E$@:dQt}oPtX CAuҽ8zF^PtמPt0㩆]x +NEKk躺M&X + ]UPti G)(:PO]'06 +δPt!Qt +NaEl7΂ꀝPtH=QtZcwA ÌVG˥Ic&=$:L0$dN3D^3N}e +鳐a&ѥ5Ht]kD''N褣5z>5 +{{贴It,p +. Sk:53]_JK$0BCItMa7kQHt/ǻ+$:g&ItX ND'ÃD+L1$Lk@k$:.$:-$:DgD]Cq&5M$:"O+Bk*M$4]ZDݫ$vHtM +3PHtSD\ItX*A\Ht +N[dfb  +D'Z@tX +NA'w:i# ~7]lAt}*Xv33ND FYD'E :[?@t"MۅCו~ph:]Uq?p0WʡC]R8t<9t+N}C=#,V9tg|:<+N¡i:$ }~\9t|XC%4a:Y +NB7CHqCǎ0t}?0t]%3ΆCa`#` )1ts3$0t:lC`dx`d1t2:  lu,' ];`4W:'N3Œb0t2<0tXg 1t큡ó){<qNM:,MT rkC' Sibt0t J#TC[1t +=Պü˄S1Oi>䊡`K4[j"ߖw%&CgAV:#Q,R9t IL#_9t-2ɡcCǢrV-:h:C&;Nq¡R9t<8tX+NCgGzp8¡BOʡSr5r9tX9t<ʡ#CG̢rn:!8tlkJ:CV9tr': +_yP8tM3@еWݲCs&m'9p38NړCpɡuaP58tG.:NCAۢPք8tmJg5'ag +gYrџ'k5)4O:B:s谚tIbYU)W:D^d +WБv{p :¡CGڥpT]C 4sڽM)7qN>8t +rM n9CC|rf9tMupCΛCGp:v+:¡S8Z8tUе 78tɡkF]SzpZ9twg]}59t m;8t*jM9t +&98tCDŽQ8td \CC^CqCׄ퉡c}`X/ FC8cd.c7 ւ$ eS -b3nzĚ:V=0trEg ݪm`<1tZ:CG `V C'݄A: $?c4'  ^/;N ]= 1tWf >4CG扡#S0tMN1& `蚒:EKv!CR60t/0t70t8ՌkRC1T R~Cg;01tx0t^1t|C5-**N悡k剡\1tMpCbTP0t0t2 a:  Ga:|&΄#T0t=1t:+:*S~Б)-:*?`B3NW=:Ba +uB8Quz_:̕BEn)tX>P0W +du%c' +YJQTY(t.Bb']]+B%5Q?ޟ(t-o:vWA눢 +^)t>)tX+,39(t2 +JBC*)t}Y(t|(tH-:Guђ:d: + +B1  +UvO +33EOPz +BZ(tjyRd)t +KBNBSPdyP)(:j NINN3 +1 nH.;N'b:?(tG)t:~NuBB>)t)t +v}R,:u'hB{ЩPH|iB +N: (t]3ˣ)tJp?(t]\BGJBB4*.Lv:u=)tַ6ST +:3N}XB'˃BLLLSʃBǵ +_FБ}R蒻:T)t +:3WR~Б :)mٞ:23Nw?!t|BN:'NHjcB(*qB/R tdgt]_c_te.@A 褰Qta(a&g]B س"+HAG8":E NSN䁠uFa:,t:fm@.:A?uA AG抠krf]kNA= NG >`B5u&A*"HW]KfAЩȦ d):+y d.:Y +N@QSt<3krAG;NGA'AGA'=SߌZ扠KIܬo:#5t):> rFUݰdv];B5rMCAǍ:"IAz'N悠eFak +XꌠA8׌ _Aٻ@5I:nIEM35AۂN-A'Ƃ@AA Qt,3*nX +3*kj| f-A' A'͂SA"Ty"Z*N AZ|B1U +n, UtNeFa:Y:3:Y +.ktLA7Yf0)J1#蚨oz,Ag3*' #[tLtZE,A7,ulHs ڽWi<t&4#P:Rt5#2o]t8A%1#h33ˌ3A]tL:D)C>#0T6A(Wj:>!0WA'%ǂ+j'AAѴ^tD:VPA"膥 a9ZNUBCPt:U:ރ@LPt2<tN:g&eX!^.:U:a t9@~T@6]W;NM:93nf]Z@՟21f +o@NKk$8XU< t<*"BS3݃@G|q Ut +'g! 3JKk$CRtt~ Щwj&нog$vH t'ZDSa"6&rA^z:sꭎ`w`j7As~'ƑbݎC +`Δq4}m܏ '8r0YHq +ɊˮqNRZ%%NBWKH96⓿F@0P;qzj@ٛ@;7Dr-@7S2s "qψ8e_ {8s{k'#wd8,[w01qXڶbM*3! A[t @y~=9nWAú-˝8m04³'ygZM的8u^qwq7|?}GI&7MY:!N$L%3 ai.I(ppZ<#pS5^DLtMd4*, G$Z> -ƕֹp1Zd4߅ +FϊGaog dLĨ#pă ށQD6un n8ق;.{'L#9p4/ !eNCk]3.cijv)VpەF[F_d!Kzb S6M8nF`w]!^]!M R4.J8}7. ~[% h$a,&@&|骤&1)JHBn..Dh +~I7 $]*4o(h +lXѾ|;o,EM~#z(8ߚZ3-om&?Ùzfk$OB~od`7bpDqZ~P-oioi K^RڢH_NsC^6opNe76ۮ&lf 5}t&֯z 3B˱ 7)"HmJ~C5c3c[ߓB~V'zCru#zeqrD*'MZ*f&b8eV)߰j7 Mt6ga^omDM髟Iuc+*PD> LVd5Y\QYoF|nv7[- ` 1P7*ǎ'[82[Uoi ѽ \nև3Md]%F]~3ߤZ/!~]w0(7N{!7mqa_[K.飛2@ʣ ~Boknۃ 0au[S"9էR~lk7¡N~ð+2e7iY)rvC((ovu83YFLߘ@mf[Zִ2~K*~s8^YUWP!h_+MO5g ]oZ4wlbs-)-cP?MueUNN`Fh$o 1 j㭢yvR~D#hb|bhμ o8o? }#m~Ҡ77^)ox$ D9F|Cc14k(Yc-7婶A{#-ao,x +p(Po{vHU۾%YhGbޤ %M[]oaLԆvVw Z9nx$-PYn&U1xﶪ *;}?ĻIЃs6PYzb7t7.-[V  6ލR**Mf7]O_ǻ5 ލ˰An7&xUsu&Mjj M;s:=lP!oUu۸X0Iy.U:(oR(o)oAyzfʛW[ e[ `R,e& ra'73mU ʽV[ĹZL$ZJy格Ӎ`ՇS(og!!HIyKAQJǼ)x"a㘷4T0͂zm<+`)6 ty$ KXXmzH݆e'`KKmNƃurܦ LnsA{C6 9F6e|C,* FFqDPਢ0+6mw9ET"+_m2/>m\~(ð(\mJBh vk"V&P@4iQ6)7Kt v]'!`5%kFTMW%)Gqr֮Ap 3E&smCwp,Me ;6uc_}`+6Znp'W6h/zo>mbR{6 +(mkZ* a6rurIll]ŶaVIb8[߰mQ@`d؜cd9<8E$r larmcO+(60o^mSUi 7yƶ jX=S,ðu*bgԶ nP≿LTHl{1fd螯yEǤVGB[Bm{6f%@Qm +M!2uuNm[եleTjξ'M~O6Gt`plvzmnbR* 9Sծ#9;u^oȶcw_6mT-65 Ya1GLK[7XYK6d:Fj}P>_gϾ7J۱WC}@Iц\]k:@Ц]7BZD m$-FmQR٤B >y䳱4 x6$Ӯ%l +ji|6XU!Vlr^J'>*@t;ŦBhSDa\dQ9l!-ɵk _KBjio6u@q۔ Db:vAvm7j6ZΈ6 B m<+ B}J'lTWgC23MN*vw/y 6ME1 cd6<(BU0E3B nvP6JUYlwk۾ " +OelV}z$Myo ټ]I $@ xOĖ| +M(kz2MRbFㆢcبSZ;M#t(,ւG\6S ҡ@ך6ᨐ.3nF1h6bv%=-NjF)-5wnwx2וصC5k:Zm;k-f( 'TٛzB5u7a?9}w\#l|QO5_SZk"XpڪsO!h5k nZbcAP׈M]R6igƨ؃&Qkg\S_<\c I J!tBdv]VZpkq"vщ [|FncNv6_Кj;9k ]'f-)kd@A]^5ŭF=Nz^: ܚ ѤmJV#RyOM8v5+Y+`5ֶU#\5%x XMUCAVc?+UpuXfKvOESD7=j_adL5>֖H]-Vv n T#"xj,>pAY?hj +Z0ea-m$ղ=5VR:Qc54D#PC' LE*jȁ#U4*=]ZxZ׊pKv]0 FY"\o8MQ庮Q,L`.ih}-=ij:FSr4-Lqi&c Z!Kϰ4esZ| %&ILKSv9AKS)iin4q6hib)a]hiJ+4>bs>7VZZ55j*,MfD&Kcs"`i*=ᄸmNƴ)4 XjZ,4U +4,; +X+,M0U,Mmba8if3t-FBF=ٸN1hiUBK#aRT4UvZzE.hi|:M6BKӮY-M*eS4Nܗ5yt6hi)-42oMZKS"TAҔtѹ;aSMHS/S^rU45g)!ZhieR`>ÞGai-l4.Y\ai\Nb4m\%4-9.Mg\^ط6_QiFք4%G(xif*-YUxm4Ҩyi$WeaZY~l &U7H0n@ Z[{2*i216W%dx3[,[`8QQbGj4BZ3M9s3 >LӼjGirK2h/=#(7RH=i +k fZUOlgiiH<3ijpؑiw5.uʸ4k4!48+;Z4*j tTgn9џ?Xiz,) V9D $ ++ AMJ#Yi|J@5Xi3+QpZe +CJpL/43TEYEc%T8*M&\@,IgQLr`*+ 6g!(4>HLR,"`iZW@*i{+ [VIl%쨮:+ c7+Mc(.Eb`aJCTm[4+M˃JX[W'U%ZD+M&JVҦJLPߠ4(M 6|C P/PZ[ 1Jg6P!4;(M &tȻ bi&1;vRlH) y8J~ +R{T4)DJc SҴ%4S]iʼnIJC i4#ҤZHiN/W"t4io\qVDk-Ҵg4B&9)3%) U+ ! ˷Y1dǤ +Ǥq 90iR +ICT(0iJ[8iR,8iڊYL98iZC7]Wno|Tεy/5CJ͜4dL&nrҤP[9i +N[YLʂ2닓~QzIӞoI+}j4uaIB-3 wHa:V8qB Bll>%Ґ)]B +q Iijwُ>vBf֠*0۱b+؂){ƒ?:3]nk J4(Ti4F#mHB׀fݸHxPigz C%>o@ +{$@0SIcG9 i$C0.H44gh:Ԋa;&X-чडtgcO!4aS!O=/(kCs/Lg ʐqz{b0Xl]DM4Z|"M>C}aŘhM%jWzg hGIgu+@Ax<è%gw3/̄=עN=S%zi<#1>#|3 x|+pޙ dwhT) fdBAma"eNYD9 1gLp^gdN!kw`- 8[J5^lEZ߹eݠe*TTw5:&t 7$w3R `< m&A6S.f:柝kvtpT$fN%p}4[Ž4[*D]hka3w ىfz[,q ,3~]2삉If--aM50fX{C\Ĭjoܥb1^\bM;LlbV&S'}0csD*9G-%KޡYBƺyv9{1̨Y`;pE03#wck5`FFgwp-Z/-~-)W(q I0C 3fd5;Œ @Pf-,:`F$' 4fsw!q8flxv\ %FuѰ; f#4HP3ٙn35w0b[-%L 0ÕB#A̰#nQ/+wAW/tI%@2l_&њ_ƻI8_U/+/NI"ˤR*2O@_. +WJb313j^TYbF1!Crd bs #S4Ō`hb;Ⱦ)fzd;,@YO :P=#̘a5a*0&ye a#0a0#6K(saWb)lD=+^- )$RaF5za{fdԵYus U*f|+!̰eE ̨>R& fKfKuYRpN/nCU +@ߺv66 aOd< f, ab̴5bWH*rViuGfT` }ΨrYѥ(X䁀˴Z~ij˞n#pԝ]@@VTDQ3qe-֍N-gjTZ֦ C˺2LJ}нIJWDX5ɺ^ , oR؍SL(3e NxBjDfħܛqlުyW) L@َ P>oQtCun; +|Yc&W/&uðY}nWX{ b֕d\T5\0'qȬlmq{V׵z A9J-ܳZ:mͤ#6FCp~Rˆi%J{kNaQ ?fy}vF6k'YV4cEQ-âJ!2 r%S#x-jL™u38c6RƎ9:xdO!V/5růo5u sc%n:G (ŋ&{7eQ +:h*HF5׃ hzU<X4 7?hT֐s)lNB;O3͚zn<]PMncF!c(h_ cJuS] {FEjƨqnQXړp; ZK<Ʌllµ _;GRst_JJCQKJ S'?8=j8}msA a:6az TR}j!󘧤 FC= ?cG k=hHwU)1]n0ѯYWƀ-!oӞƞfp~]>ڙ$x?xG6R-6TssV; JWP^.&SeѺ)L>~XMhb@*_jidE~2`RUaE#MǚeW~͈%0HaF[Js2k +zqN=iѧϵ7:t ƒDV@,bc)`1kc-Y%޺negUN]3n0Tmx~}Z vm,SŹʖ(6Fvفq*_Œs.2 ;%qtU_-zǯvkHW @E!y:ZJ_mߠlRBcHǦjQv+}mxK)Za<ֺ-,$Ѩ*)~A,"'vQ]FtՎa- ]etkLd+S +MM<Ztyw?BزAk[)>stream +tz'5iƫaAmqa,0:i bs?MJ%)Urt1D)YV/8 VBcCAe'͔\ +~6h4 K2P!J݁P?)\;5EL x5׸mH6ɘњ ֚I + + !u\N.2ϧM!:ÌS'M68}9GU<zԮCMUusX)w +S6I`ة}?MN$ +e |~t`GW6-܇~ U .C*֪xFU^Fj1<-Cg+Xj 9*ma Pun뱝Y0"9zlg>46,Y{ /pgJ#JWA‚=_6"vTMWuܱomuN̴,D_ԜVi ?ⲩX+[R 7TYTKߙC%A2mzUqcrTp-nPBuѹMתHFija +yI/qc;|$7}~UHڿ'oH)bk“ 'aNŪsUSOsuڔ©41MYV 2zO&N"J=iS/Z oʽ  +j|BWs~ʳS1ўOC/=$8 s#I8-+;%y(6bX8i5LWךL6RUBs>B/zSdžA +.+k,iNb.v JκW$W0j} )o}§J1FBP5JV:[`:|Q Î!^-O$GW;oS+̫tUff{;q,κ~]Ǭ2iyخOgu!*ֆTC@5@ 6l^B*Ca¸ |l+q4ꂱNƱ:PܡC<\ᡥRJ3<ۧ M +žHl`>lKOA")^ʩ͆ }Օ$NKl/EVu+!lջB5*̆A!>TS+[*(-eYRxJy? bkEb';.+rķvԕ5s-9M/2WN?YFqKiv]ESn_dPr0۔c/Xd#u 8_`OQ_-]ye&W[+>RaQ5oJ8cKwōy>Z?T^ SS!#O !(TIF &KALdzr1ZeEiV R$h,`}i4r +1W$)S-!J=&^nMjo!֡~ſ}c5IŊTSc-ND>NQ9> u䚯AgšrY*V\_7Dxk;Ƙ*xXp$qBF;I!?J{S)/d>U%m8jꛘ9\~}=^5%~luJ 5_j;1s&G`uэ>+v*?I+|*d?1[Ա3Q $Ca5F*'c(IS Qu!F+O|XAe[2Y O(IN9ɶL5bHN[ՂZ +N-@nxZ5j CWi4=}47I*"` 0fgP.qF]4gh7ٖiDtރ2j"s4]D +Gֺ:O`tKk*w4ise-KJ7HH(t,#T ۦ)!(2t*9.!fY,1_[`4]E@T»y-}Y-S~hlY`:m3-% >^j= +R4obFtzEE#p@ƥ#rD>[+(}_).,ddpՎE-+\XKM0@>ިt8GO$nz j5t:*JIx=(:lzl$E5(ejg=a5lhl:ym*_}$WUMؤaܡ >lxN~6@L,J\ZT(%j.}exD"YIp t2D0uv4H<ڡ>?q6LZBZ>p{3VoWԧNZZZaEV6l~F( ӣdrOf@ +aՊI9))ea%Eascj. /;)UrתWk,2X}d^&B%Zbӆ_;/dbXdD)xho+pyz{-^J_g}TxBeՂ6AN;TߝL2 ie,Tۅi;Uܼ=sn@7NpoU.#_.ĝ(6:,(qt*Hj(V5W:I_J^z ]ڪ+SpK&kbsw};B̀)&UwЪ(=w)Q="%댈JSZYŽәn^ ?.atc9ג;*¢a$C5(9`zw+}eYc)g(`*Δx%ݦN{ę(,͠N2 +nS"z6 +S.:=MtҤɘ|΄eZ5P~puqPH/),;mx/z(/I'Fceve?jdۥ4: -ɦjTn2TʈI`S(,=el8sKïB%c™;HHJdl=n`k) +Y:lYewBIPjz}O2[ӋH6)'r!deǹar+=u5RevٟOϋ5 VjzIT-E*[ =6D0tbtX T3Ķa քsHFDKD,͈n J8%QIF 4YqIP)Vư|Ȭ_Oh+X㆔I\tK{=ewećcXQVkcc߃zrQi fyDz% |'V vFCmM5NX䵬{-wJ9IcTYmbʹlKv3Ↄm1fkic'tB=IƇPIЫ#rRZMi>'Mpe '% `[f. G*x g=&1)UcM:Xw4tpRfʲ6#EtmQ)iaF;ئKf-.Tnފ +_z*Mݳ +鯞S:6VɢnzaEPe$0PCQS`ʊ{fEʘ1} f3u2oHQ /ٔ.Q3-?֩UMV G 9a2ﶀ?}U- 1|JQRXq]=;DV7_n]mtyTJL}  jd[C$_^+NuF3oiW )#Pxe(G{+Õlqpv"5VO.$~6eYﶒ"Б/?킦6+/To5:z>zʸhJ hFoXA|؁ ɧ +[L!⇷^/ 鬫YFl,]o\]=Ɣ\790ʨ]iqw)bY CJ`hOQV")Q.!lDf Sv"ruo-4*ahIvTj +q=)(AZ@[K*PĀVI8FiFW=6rth j=,.J';cVO$A샚gEܾQ>C}1X69?[ =7`j[ttg$k&_l5rشm7z +yO7z":^]  hy'Ck7>/}:= R6ܒd|>Wy:乀~ꚇ"!tER%|p R URnN~=ѾUR튬[zaۊ &@u"K7+q𢢬ڹ!>L\-Bta),6 Yf +0h1I~ny{;_jXȗ^mhRA,z/ dQ}0zT|_dߨ9 w VGaw8KtC-c?)+ՐX{l&4p=׆$tI2[+1UkmNWo hGm]ɞV,Vp{$5E>e5)29XHe%ƋEU!f;1iF4۬4h$IDf&`PRbju#*dqJ,̺,KCi养[=BNS%_~$ |;bּCJъe'/J.`XڀrHUllmjVokvڔe*r`SKv=tiX`3cĦѢ\,m Fygj$e9L@ix] kF~}1%O≦/eOkV봵?%e Hl5=XjHmld{EDyYU(̲:wRO(o0J80ZUYz ͖|Wx*Pþ֋SD9$7YU2FZ~tnQ1Oc7Ř:+>{o)hߡLGA5H*(\m6( +-W2!TJԔ*9 X4豬U3\Ydr0anA3? *aI^|BݖNBFSQ*M&榦5>JwQl[H=*"li-ZHN* -ukPnZL;U+p༯{{@X^:p IX}cYu}Mn!tx)W(r9+%:,AI1[#m*ecgPmKHH>u,&~P?> ?8PZ*"Ow'-*E[?Gup}u̽[$b4sk7x(_ [%}M6R<=1XEK1ejq ?hme:CF]a 8:Y(+TܾݚV||n7:áPH{i:PE1ԣ3[ŷ~{A*5өP^ԐL*CU`(9+_yrFv +nlS2*[JՏ'Zqo.|ʝ!XQS(DTU,5}X(N5* !!y;)Ϧa*\Y5Y$! l2MȄ-_=f{j&PAk _u&,LiM%g@*eK`R\VƦG8z۱]I6/cx.*mb G_@~Wk܇XHH(5)(9#9T<\oJH #d2b勌ΛȈ(FEFɈR2Q2"Љ>yUȈɈϖV牌񃌨','2d%JJ"#?wI`D)  hFF`DM[9`Ʈ##r_v0"&i (}K`D !(0"[F,)zFle#Rh_`6) He##bD5gf0"5MT9$0"J#Ԫ$0F#ںb#BL`DX&-p&0";7F4e#r*1F-!b2#j?Fܔ#Vlw0"(7QM#je|F%0bF`Dx)I`D\R7Qr#J`DU#"'0"`D> FԯH`D%0qFL~;;af#ƿ1#j?z2.Fܔ#֨0"? FDN`D)(P"Sf=B!/S-%"JTĶ(:w pީR2MEDNTDDE"jdTDݭLEQ"2s%*bpEE4㎝{ߩ(o*"e;!Q9MEԲ'S 2}KO7QIIPYHQ .LTDd"]AED;|ŊvMV܉j"EzSlTDQDEy֤"Ruቊ#:yn3Q0hEEAsLXD3Q1ETEQV0S"B*HXD H@E$uH$ad," Hd"lXDk8XDE~aOXDݔE$"*<;QɔXJg"*ԔXD=lHWy"%{ce2W"R""XDEE hl"JEwXD",{S;vo,"kbL," o H=# ,"*+أnXD3ݱ5dEo"҉o,"U Tq,E?pED -JXD|EU«EԜJ޽ Ѡ ;Wo,r70w"RQ"ٱ> hc"1ܱ`Dv,jV(t,Y+v,?4)XD}3B7Qgf,>9c ~Q.cQX.LhnXD},~`"b c\Eb%,b"j\l +En-k"Vp%׆EEX)f,"y23QXD­nHUH-f"p"R"&*"e(JzDE$>RnMy-Q5pR7QY"b!p􍊨2DEdtOTD־ %AEϙTD)љXtmRв5 "HKDE0k" ?IE, ^TDIe*b|"jAEĝHI"ڔ" *b IEzjR)QY $$d"bX'3TD +"QcC"EE2C5{zPĞ_TDDEd)(o*"KDET7S"jTD%*79Q$*7F`"}OTD)?Zd*LERv❊HNEEEFEċ3Q%lqː8Q? NEDq9#|A&( "* DQ?3ۡy3+(/("}l"Z H%g"7JPD7PJb"PD_lU""fC5X&(~|"*u"JPDSv(b:sAEئY@"HPD?&("#AE$CHPDþ2'E$"IJPPؖEd4JPDHC%$(7E$1(/("`Y"\}C-SCKPD@JMPiPD%?@PD2(/(1w("yE_E9 AiJPDhhyȩo(zH?F"IoJPD3ETrS8C|_PD%(3q"}C6HPD} ETb1zPD]HKh=~;QJ"JECiSKPDDEE5EoOPD;QI7qr'Q?&7( Ea ET* F;QD&&"i7q:O&"9DԠHDZ `"j㒙zk~0)JLD6 ;b"HLD3Q11um27QiD$`2x3HLD+v&"›/63qz3k$&"Jb"1/&"R2b",&"9QQ3Hf"jLD`"jILD m$$HDDDIHD>D"#s~!;<y ;m);{oɁD`t6c0 !8!q!u!Q%!@"QL$bWkB"JDx`H~Ħ‘KHHMaRm;Q|BY "R]rdQsjXF"""SDDVNDFDDł"YDD)_m'"eu?3˛uA""8IDDSDDDDߛzDDByo""DDD&"NDDIDDN}%'""qDD$ &"Z~'"*QLD$t ȉtDDӛC""d"ןo"62Q""r""݉~ DD-3QDDrDD69d"DD| }t""DD Hj""jCEDT9d&".%7&HDDF7Q;LD,s'"""nabJDDDDDIDD)?l>W&"&"6靈B&"n^Ѳ "f"I""ۉKHDMv;ϛh;(a""jpG&"e؉㋈H`::&""əu'"R~ DDhGv""]K?QKLD4󚝈XkEDă'IDD}DDڈ|h *DD^DD_ۉQD:ɮH|#Qb /""r""$""EDqg'"d"T2䝈HN#"aٍHUFDZ8G""RᘈZ ".'y Gєo"T'BDDMDӝHH<K""_<zo""8DDT*){e'"JADԟDD)(NDNDEDTE&"d"ԳMv""UƉDDkDD\J""Ny72Q""YDD#&DDDDZDDg"bFIDNMDpu#"bFy$""1o"bm=HDD~mKDMىK6">*+/""_e'"R(o";%퇾l.K"".%DJ(c'"bMD$"ybDDc/"^DD;8=lFQ<6q"(M@ĩd Y"J@DVD4My@D 3<HL"j6@Dz@Dw27&@DZ"YJ& qDxt "]Uo "g;Q>ߑ}sx)ĭ9$l*"i2PKXW>--gw.¡Z>8(@$Gt[W5.k3 mA7mcP[]cdTX zPej8\nC&1Pbb&y&ҐZP&2 hU@4LVPk\_8CPfv2Ĩo\ eر=8PV'Ǩv!{ȣF&YySC1 *mYْ C}{a"㜗Ao.ZgV Yk"}~6i^mjw4mjRCB6 \8c C ha87 +ܽh! \C(c +~ 8oV4QVYdC +PP\Besq kH%T 7,+bTB#%_|3 ,KAayꦞt?FxacYr-[&~ku?3-\$"BOy&`W{%aoY Bqa>_ ¢8Pgn D(/ax",Jt"̝,k#d_FCI!D90( !,]BɟsB)Œ+\l ;-;l?CXzJ_ucmJ, !&1ŢC(ۻP18Qz6Hc DX`:wUG8TP'!q#<-_b] SةK4~ ؀G}NuXTv(}~ Kl!="PԯEfKl"xe'2yxt8^+YxA6XpE`|3_a (T6Fjz +^(z*/<t/JϾ^xAb?C۽xTO !>_xAK&BV{+_A=ZeҳDQ`";aF0H$0=- o6/|6XYJk2p ';K3*?00 *p nd{2`\"xgMoSZn Bƺ'd]|/\rqi86q #(LocK^4όٖ2/y 㰸ǺQ-m&t (BRc(n0C! Rl*HA}^kPd!ͦZȁԌO& +Qv ˦)7e-9b"N9>?0g켟g;P)+N%a"%տz"X?`pq'7P 0`w{͜|AܘRTkY|AfἷBN=Uin LR0 ЂPVSq X``=h +`fZafZ)N?Ya**W3V7&_P"Cl;=C!!C1U\$p)-(hȂbx<@:XPuI 0ʍ.;V~i)$T"XTtx{D,ձL> Ա +PK`!EW"h @*:r%;+yܔ%` .%O*b "9KP +ҹl%XjDsQX'd[tKPft D`)_,5ZU/$d .%,AWY@m kT :P} h/Qt#f\B&D\J .`Ea_o)@ܛaoByf@X*CQn'ۛL(;C|u--0$&WiRh4 ڤKDs6Ҝ꠮:#Fl ) T]GP._Aɟ_VGe8Y7mN%=8z&GPJ` NT!.%q"^&8T>Duz^R= +&H A[g&AP#f _cMƓ h'eoC'J38`*]ӯEd= T"{qUz25Pj8&'s1AvW[@w[ 3@n%aT!oS Qf Zp\%PuI?R̓(t]N{TMp) jǁT׮ΎT +V+VEjcY/:"s ۓ3/:v|x-:߹rKf> =PqDKI|%;ooZ6~vWaz6+ayH +>;"!>`,#ȁ +O>|XdpQ-|@,l|@ t2eA hro5N@8Pڿz >|@bM>`0_@. H;b1o Hᢽ"9ZvmVtj Y I$sG# +w&aB]e@>_@#!*j|x6B u +!>! +B ȯ\6񅢥-k88,=y/< !<'>zzb<-KL)/w:EThB3#xB&8 Y[m4&TJib*xTD9 L̄Sw)`. +8UAEәHV8P_jHD +:`:X`E=_p@?b22z=:/-q_l@q>g't'3 M8TO6.op=F(-E+z3ـvQ@Bhbn `{u+' ~\}ԠO8iPU 6`;EKm|Yn {*p@N%Z €O`7{_|dMfjmɀJm..e HA|Q&HP@MH~=lJɥu8,`=էֿx2&ϳp ~!oD ˭@ldH>{J,$Xer٪ @Xpu[D9T%&PO>޸/2ߎ|'5;lJEA+L8P a,T SQ1[4 c\# +t[V9hÿ?cuUP&RoF΅t2Ojל?2(;u:y+/>&iwEK?XftOS"7YפEjT'Oܧc$~N_IxESu .Qbіv/C3~W5)di#;~mO}~Jr~9Ւh?:lRW5LUWjuH}/ω%\O㴴nRf˺ iN&~zթI\?PIXžC2SP%~79M<[2 ~B-)9UY=nCzl8?ys9 3XٖkѤI~Pa[/ǧDjkQĜo~[)='}Lld +bqWK>uCQ>%zΕ5(R! ~Nr;襁 >[EO>Kݧ +@ 7NoPh!ݔ`c}\#x +F%}C94?mn >va|6h" +dcޯ2Ezx5LZjQiTK6,VTZzէԧXXt LLf ACkׅSh}c/@@pdϧ^a|ze8PmUi*0W{Q=w/2vן@}h`hC̡/&bޑ|:SL;oLcU0H1rӺRW0Hk³LR|L,73|%2l Ppڇ-$4J +9+)Ẓ˲f{3YODIT*|>kd$_1g!a'W E+gi skU|EC~ȧ WTؑ|9SӤ+"D>z-.n9 '}MDBECal $*||-P>)ʧt&&(uT3Z L`9 zO*~ ɇBy+_s$r{wU[ +KMcfT\bqυ+Dk_H>J}" +̘@HTDDq(| pOz.#JEELd Iӯ;P\Ty^ݙ|ʈZϔ|ąCfH>)m!XCBӪ WZ,_ɧ>,!(Bݑ||W`N G3(YWGј`Tg ><3OeOc:Ou6W%${J#JM$_1?htvYXC[<>zMڿx|'峕'1r$$])jS\H> ` 4L>i֭{.&2xVK|uV ؜gVL>@.&K4ɧ5mg}1(}3*NkW䣢aշD@0 +e&)?zwgS"&&1İGo0([IL>6E-9^ |_ &_!0x+6s1]lIL*G[Op)\U)* (-Hp(/&Ϥ?}4| +?\f]3 șW&]l83+HfQq9liCEt5|(:1YM7!|ЙC!J"|ֲ X>s,> cK04d*2O@&OϽ:.G* +}ˇͳY8;Ϛ|ռ"q2a/#L2V 2Fw[֫FӂTJ~$0T(u̧B)oo|\̧4̧cx2OhB 2vlV'O :O#}ߋw5|/(7JL>4TDW,K|oʁx\CmƧ +~'CF-|j@C"InȇIc.YT%v"O +ՙWn7hO-⡫!\cUOe2ӈa^+6N*55ÇfqG%aS9FV|s}QBuꢢ=|c7~kKDʆd'm~[r@D>X/"F_\a%†NVNCn/|(×EĆg^hr?roFT| HO@>T<> iO Ƿb+<3tr?p|6τ[J%Sa6y~eQ&hSq|d'fmO[AeU i\LJ<^GH?#gO+$8y|LO?x|dhqT2O2R-j6k<>Z܈Mm."* (cbgF0|! +ppEOu'CįG"4@Օ-OVf{ã!=3 WH.Rb0>2+`|RpW,x/17 E'?_qm={YJ@l;OcyO2ƇY N7i|;hƇ2GU<ƧLcԧT+h|*@z7[7@-h +d Ho[s'emC@ÇL9pPn>)fbU124ֻs*/0b!Ӌ÷){ɒç?:` ć.2@Le0oAy5B*±st!j\62y1 +vIhRYgh*^@yC.ڣbH + +m#dL#h|(~D)\)͖ +{s|ӌruo!`;e8s3H|@W] mǙGm-t=P.G]B&OY`6`tGǂ7G S +'rJ{`I լ?Gk")MNTK\1{!d* 37ל Gim7}yL4͍Ƚ{yOV90zwjMP÷;6\=U }Gd_ŖY1eo)=wt:;Èkżx BES*_|#wx,w7sBMp=X$z4㼑V|4v"Co}hg ;VO +UODl;To ;7kԻwP(݁zv6C`cN,='Iv㩃 ;^Y{c&Fo*gzS׃;OCt%a}W_b2N7=0;B"[BP/M 'g_ړ'S_sVAzn 7nS7g +1h9o ;8o6y`-Q $<9{-0< ,3~2o>1_W/`z׻YN\-o#r[)L-cz'kXfʄ@A/mԤ''PECV8(o)酟z2CG@Bq'噝0Nʓ&b1K|cBT%DIPd +&O$XvŬ'YDUlCsLJ̫z6Ya[NNr) 4CFZo<68Ɯ[z<]A'#F\!c(rG} t)y\^xv>&ƍQupٺ|CYVDE=G3K>LU4|zmiKkةEHiݶƍ1:_yY6mdzC8|(;X4sm;CNP ע0tu:U']Jb[ƂSg殫E %̻y֍'Kh;J R_瓊6OOWf.1T)FzW>A*O3R+G嶤:Jeg5ȳwZkeRln#MHǺA=@ڐ BKּsy 0!4QcUqre*JWr1S@dDmm.-ˢrFMFSN>u}cJ?K>TKе}Ngoc\4Tݝ(ZH#Ssb[1;&X)&KmIr7'p˺ #},0,m I}""3c}TgdFq{4Yr:~JR`C]M4[p'N20 kaI9{E45LdJ9FVE-$ Ks46-nV̊ɸaG.MwS  E@UtN;= K2^uo%j.ssg!{߱^ۥuv,fc!۠ÎPՊO#9,ur Ym +~Q+u.;ǂF:]FGj cC9Ե96{ o#]1[XU(}03=d&`zP>Op~+&SY](d87\v}4Vqɮ=mRwu@$55/q^I&=FmI4m.SF7+_J]0N|{V0/[/鯮c*"/Ϛ3Og-֙vr>'gFGF2 4UߜfW̎gܮ/?[fAn?MfAa\񛲜߱gI`m5 a>CIjHmve&kӝICV<=_e=Ó,-J 4F4)%-K.RlŻL_~PzP43JCqk7\F%i9|fqK`-?P ON ߢa#`ϊ_n}nxx٪ފ+nHn88ʨ(tQ!V7eu~`WB,\kkz՝eU[e4*_07x3 +lWc \lm[4Ѧi*#ʔ.)ą\ƇbJмwW`^Ɛ<^Q8,FxWFPnw)t0: +ů/O +Is~~]ǏRQ.*B$jpce[1HirLNN;_ yv:\澜0@ԒLW" g#8dFD;>1)ZHaYre:l:nכjOK}U3vkVDMb095(am&yןaEJ$DP/yDo/ÚG}030d`%/Gi ݟB@Pjl)g6HD SX 8qq=5f>FMM$sGY`!3"eT;tAMY{V(l48XL/UH6J_5Ӳ/ fC^&˗2˼xi#}C0lr-^;nJ4 ,jO +Ќ|Ҽ3ـ0e铺xK:lD!Z awlZ5ڬ+^ +U@vTÊQDz;Nse*`uWZ -f̈́jޘݠ#V*Gff˳5J6n(uBodY&(&h-u7sT5Uhˑ6˨@]O+{k@A^;o*72bY{MBv4-C4N%p Jn rpi*ТU} 7sML`bLs{==#)P/ 8MfubP^L,PSmw*>.~lh\`$X-SdL >Wi:mYƵ':$,}WaE6%Y;#B>0-C6!, *bzީU 3@(3e'ݣڥD +myŒg_( yK%^<)ȔBn]7|:^^|8{Tsy +pQ-KEɿךs_ȃv3˛hd>3b6y,5ڌ>].#,'A,T +cP<]N25>$!qC +!Jm%t"WZYQۊK_ H-+ЅHXFc7˥u"4XO ݋tKlp I8# <}v1e3C2p #~gʨtf*2dk TCNfQGO_|`BMؔRɘ|_d +!UHAf贅wVRw+&ɋ(\[_~TIDX 40*C_:j"#_5"Ԭ( umQ*f(Q*Z*l YRZ:$갭f1Y(%b`k;D@GRt`y^.O5/֜{ob &(iksd)p"yXJd?IlB-G +m(L(p3+[G3[:eߖ~Sw^j^L: +`}nF&$vD-PLL؉CTlxO:Q3F b^Li9\"et7GNn}[ȄZxvӣ +.-q}!P^~X҃I;iq@Jn1{N2!2 LJtEñ0Dȴ-X7stm0/jml?l:c bf ޭ8W$ĭA&@j6Iv}0 >@0Ȅ,MU@JeD3MVYpdiߠ܋Q,~WN* +XuA):vB;|\!B;%|helkA_RjmZ@V&I)T+MUH*Sk6!"8IXmQ*IVؚDSPWQĿp>,=ݝDq;F + OIwLH_ +jE)e(&I],$Mfb9`d^590{)ӕ[;_߀Z'L(ǹ{QERvE^dȬrVy^Щ |'Pb&9܋(B +bz5;e14+/V@ڣ2É @wWO^Qk=./N#QVүZ^)fG\qj_p%[JdђktVpLH~!,wYw +t%u|YIڸ̙1u#qx6(IGk3,6`B"7"XBfCV{%*nvk2d]c]rטR>F1m=wu9%1*5FuRJ. TV|AV:,Dd Bj6@ IRTAKL£,.qRAZr폆VyivI67۫[W2:a|DSž%y(zw ɺ+ >P?X(؜)/ld;]6Vp:$ƃ0>ZvI/J,0Lpm#jo D2P=ܼSSd*VT17T ۖإEӀj +1E韺$ZժH'P6yqrwx=Sa-*#*r$h@yT%e e'b. U} ;aNGܐ5 C]uy+FC֝9OpvT، +[}ȶ&֯Cnԑ5(6$ 7ν _1w_e )IvaƭYiU@3hxF˒JqP.LK-/+xB_̆ۊ s}=2(`UI6ZEY˔Y`9ex,~N@uӦn +*6 +I2PWNg3Y:e6v@BYX+vfRG'>2 nO\d`WHu_/FJhlKRW!Ws?O;^ؾ Yȳj>-TMmtn5+:&ЇB0ZXXJ'y%HRW,)OhQx]?+Xe^N`z R;\uuzq ky0(B7h%kx*1(,G*:2=z-s4|  +7JݸI_ټ;3ZlBdp!r +.бK!P&2(/;af_t<5!=A_+rzj$"Mhz^-znTBPJAkF҆D:"xy+z7\ZSέ.VX(s:=Q//J[S>=y^8mRŴ #qքniKb㔻5;5PE5B(۽SLІ7S&[Jk(.;] p>ljV,8Hö*)e7ؔhZzߣDY\J>ꛡUnm?Bح!9 +{gʿ 'a+Z՝rfܬlB +M[Z^Z<]Mi +%/ssè[)Ty֜G +#DkJ:^mlba߬<ypzgJGb$1WgMH=e,% +kqHOƯC-C.嶔{b:Ee0 y֙[990|'eqX\2qbC\.{~i9d2;|h24uF6cf DkMHuHK~{9F@TJG#&”HQyà +GNKaJ#ּFI.xQvS +u֙z<)cr}VOh Z.opDЇa]G +(]TH(v}rMn!7tz)g(e9(2moUk gPnKHH+=e'W!RVˮX]ǁ+;R o{Cn#CM/%R*hTD1|* -bVϤ;t8qK +:9M,VR[P6 f -)K0ecPӡx(+̤zO^ь@V%[d7u잮M +ܾ ^|lB㊑;0:yZ@Izp`Q`#\c/GUWMSN-ZINcﴀBQ]SJ![y}[߾;oXB콄G,N 6$pj f.#̤cM;}*`zo\>6 2֟hMTyXܨzHTL(2CPJR A 7EПD2Y?Iʃ[EL@D +8n2 \ axM˜JsW:TA*ˀ3#hI+DsPUZ`@Pɵ\v6wF3;s yi D+@{ZZ0D6Ǖ㳦P^*T.p>bVOQ!zxWRHu .r?uGѵRdYB/ Idžʙ!!2E'#]P9§n}W߽Bʤ "kLz'#iN9veͪSC@(W|]K1C&v[ah׺Xb$%a Iby$b175!rQZ>e}qZiw3!b) ciQ*TڂAŒ"5I9RxɽYoQ=Z.½02 zO +,S|H>쀤 sVl#AyH[Çxq(9]ٴPP8e_zZ.yѳVٗ 7˹P'^urc "G% ꈷ}L)X5~Ӂ{()wietѸbT&KVT{^_%zsS3`;CQe!9+,vT  up'jC3i"s /-/-Oݭ"`$ueEdIiw(bPP+hLK}hXDΪwՋA\5˻OF|-Z>%g2b%s}%#VZ]dĪ€(*2bUH"#$2mFFx+QB&#AF<#dDF?'uOMdJAF'+E+0(9%}%@dDDFD!8dD&h}( zX8坌XfFdEY|S2bѪ@5?y(>Wz%#2ͺm$0"*FDI`rO`Bס(%3?uu ;`D F,`D3ѐ>ɈSOfF,gt" 6bOXd>l"[W6"Bb#a9ш$$QJF#kF,W4bYkF%'\!/hD Ј (ĹF|sܲFljЈFl}C#p=4"JB#6hĦ,FшR>RhV74&B#690Kh4"jB#h3QrF#JhD)ЈM+ hxMO4FdÄFl8TшR3QJF#6qш.+F<5f4yg(%ZeQ(U@#JhD'^D@#VS*FHӇ@#COhĩ$4"{&YhD @Xj~.hEYЈjhD~֊F {%g4"J;4">ш3Zш4bm (*}F#.ʊFruFXIh*+1Јh*PB# +bD#VV4bUF ?ЈUF2KhzGOFwC#V~IhĶmЈ34{E#6f4"JB#<шH̊FF|sJ(шxMhDHoFĩD#g19+%4"HiYB#KhDO4"ހF4FDyW4"BB#r2q( 8@#yш}@#YlE#6GQ4b ;m|s'4nIF#N%<ЈJh3):7 8FrE$[ш*)Fԥd4bv;O4"rB#$4b'4FЈR>uy>yVKhD#ͯhEYg!3Q$ 74Tq(YшB}@#}hDG43hD)8FT%B!ЈR2 F}ЈR2ѶyG#ꏌF<5 +@#2r&4" qQV4ȸUC6M'2"גȈ6G,dD:Q=ȈdDvLdD$#LdD}:8DFr% #\V2"DFH?DFh:Uo0dĩ!AFlJJdVOdĶodĶE>v[`3+Ηw2bKBFʂJdDO2"j"#My%g2"J"#<ɈUDFȈdėuFFj$ȈȈ5ڤQB&#{%g2)+]1%2b1ȈUp"#OP&#V^+qQV2┃X#mY>d2Ux##Qr&#JdJmɃ(9%$2"[<Ɉ+$#V QB&#VȈȉȮ+?ɈBF|Y8DFj+JFrs<Ȉnaf%#߉b+aƕXeY=ɈU!hp%#.JFrkd@$#"'2LFXFFDIdD'Qr&#z3^QYȈc*!ȈS2c%#j(u&#MdDL?\]Ɉxeq*8e##6W2\&Ȉ3QJ&#.%g2"J"#듌XFFԭdĩ$2Q_H"#DFdNdD2q* q_8l&#jx@FLdD}}(2LFDIdDv}贒| #2*JȈCd)QdD 3QDFr4<Ɉ3^Qn'QۭdDX!kamodĩ$2";QnLFdD(ňAFDy%2"?IFTh"`RdEYȈjdJk 5XȈ +Bd2>% #C j"#%dĪ~}XQS{&#j͒ɈCd)Qy&# $#*ĘɈe2,Ȉe2v@FԢ1dDu~MdD뼵ȈSv2e/dDZ?Ɉ&2"DF|:ͧC"#QÚȈodD6LdD)ȈMMf#EH`D[?<F`DR(?N#6Dq$0"1FHF)t#Zle# +F#"`D9  F$:~#6e#>t!]urɓ^p qUH'VXH#q-"L\DE˃HE4E=Eċ4@L\DE>p\D0.H'(p"ZA?p\DX-O.E$\ZG9XD < N`Qb"JXD'9aQH aXD3+a5|"2C$,b}"< !aEٓ|_G,,"t Q +tED ," +ę"r0ʹ;a͓~"`IXU/F"V:?2(d"EAXD+QcC"3xW esS9FN\""',b=7,"(9cXD)+|ERQX"b ',XJÖ(%ce +}"V/+QETH_"*!cxU"I`pخXDo!wĞ*DEP*"I{*Q@E0pQ*LEN&*"ʃ؈/TD3~~"ʙc+'X5S*b+LET*bżRk"6.TĦd"g*XTĶ]oTDSV*bsRQJ"J@ElYPVިf?PɩMTD#QؕHE"IEԸ2Q,F=Ԡ"ao"2%*LEzIED^Q“HM"OTDQ%LE$"Z`"R ۃHDEHԓŖ20*AW*QV*b"RTa%*""Z@r"#d"듊HDE #Q[2I"RamDDEdDEl8"*b#"Z2aTD*\aH9H"?AE Qu(7*"DEGP{Ro"kJTDD=W*"uj"_[<퉊#Q5~R(~PuLE5|""ʫRg*"O*"5N("-W(9C]("7A=42QVa"jPE$wj"*=7Ce |"*_+CبVX +U'(6EZe(T?@\re("O(h#A_!/ +E "r܀"6("}QE_3%Am#&( E=LPDa#C ?2]"yyHLDtd""'&"Jb"rQ`.1ȞLDY7ؐɹ0{.1g3! LD kLD?8LDܾ @f"JD'_2LD)LDE1LD(Y3$⢤2@"ʢN$",@nD@ǐ $"F4zAHD=όD$"8V$"IB"RD""'$Xϑ禞6WXgHD+BZLO$"DDIHDv}"%'$"~ۄDlDǙDT2$d$"e H( HpRB"R_DHz'χ?DdÄD8nW$HD92A(YjmU3Q˘HDDR> ilE?Dݐ HҊD+ȰʇHEYS$"=(O? 2eHDHEv$"?,!5~@""'$"JB"JDd񙐈83fO$b^AOHĩEv$NUޑ8IHD\{+q +  etE"ȇDԞ0!DlV$ ($"Dd阐gHD(!#-HD+aE"$| (_sF">_~We}!k9ߐDahE"JDD^왐Dd$DHD-3Q9 +X5!IJHDD9!Q>^JHD=DJB"""@"U ifJ}"Ǒd8&$R~> g+a=ߐ#HDQW}"ee$TqʁDTD$b"++'9!QV$HD"#+V$HDj+ h/D-HEYgS$"Y HDޜ (+qʁD92Q/$^D##&HDed$$3F%@"pDDjB"RD"JHD)6O$bm=#)HHĪJ'Qc`F"SIHE(^HDKY2D4yE"$$yE"j^Hĩ$$";X[57%!)DT&!i<> Y&$j2q*ylr g$kx  ֊DTҌDlx}HDk"G<#e&$_2QHDW$)+єQvF",HD~" ӯHD (Q?`F"DR2;> ՎO$5j]OHDHD-2QJF".ʊD4yE"f$"mHDDTHDHDT$DlD"(!LHD%}@"JHD)(9!5!9ߑD" ؘ&.HĦD0SIH)QȌD,D䎭H)HġQ~"6 -#X"&$"BB"<:AF"ސr$9yW]c,,jTSfa}{0 mτ,,^&8]7da|c" 6R^,,;%+D;WG&Y 7daQ7IXXd8Nba9(BD XB)[w %1Rj$JyY$[\XXRuL`y~\Ul3Pr߶{ ِh T\ƉX(5R,Xz#ߘ(,,$hEXP{$-TuY%;7`Z9y :ƌ$ WHQ'P& Lu +UűiEBE9B%]̠Bu,elpcM@G摌(b֚",EܸJ=m" BɘZDX ai6X "m ΧUKp%_8 +@QH^a)sN<4ÆDXsTXGY @q BYDH׫ۓN!rOBVi^Y^yCj2"ԲIP!poȒx yJZA̪"d~V+1?+/Dū\'yۢSY)Z !W8PP geӡ$TE(!"$랄",zuCI",dD^65I10_İ[IpiHD8D" Ғ1;`XF",'eP3_p*D8 -d0̮%u1v/7󲑂faTK,Bd E9Zء|PJ5P0d.WG"~5ja [S;Sݗ A6MQ(+ql /fNq֓EXؽeûZqXC,Bm@ ¹onWfy9pQSd;E![/[B5*3z(Btd!m\T970'-{qN!Ivf խtT7%j4 +}n' EYASa%&,#H:YK}#r-|YA"u$B?ae'(Bw`ra+PӖO"lSPSae ߧ5&y+shA*ɘ$EdqBe5l y39zB]i}eMWA퇟(U >rzLE:h)9)K@Na%5;ƒunP,¾z9n@q J6qRV7X gA W6D,47" CBA *hܠV7X3pxl7Ȯj71mnP?q=p"dnp,p99ENb6ĜU^d*M%AAV&L(a")~Dؐ;yI\:8K2.:O*A䫖ICsPtn[JfAk;&uEyJA]m 9;P-"up*:89΅1{Jt [5O9,@s9H A\'݊;8ah}% soJxzgJA6vuo~Խu^`CA}"M BEv&e| :8: рLu5Fۊ# :6TU&qP.oAɯ_V&qew!mٵl8|$J9d ⠔* |W' +tNJ&N9EaoCe[Y6Sj#gDƢ<#AE\Q4$>ax-,%X59kYIdJBb(D R!.jB 0X*8?`%}7J F .@?ą Aݺ |s$H!*;m[ %f$H49de_oA R8# 2acc106M*tPb#X 61r3FP22#w``oddÁDe`Qd9DU)FPANr G(Wp iAIA?2<_"hxj;OF,w"XFAԦMP"X4C)_EжvD˽Sln$sP5e5)x?ǗAd"jAMVe ܠJŽD(u3J~  g#ȮW7eճ|']3>ba1A5>ij}ɺӷ3tuBP*n%-A('e5N#gx NvS#ʢ=2:ng-wjD x~'4PޘJf>9, z2j d1y/[S ^`j%^܍)'xQ@\{xr/܇ ,1ymtj0} oQbձ$ܵ17b.eoFh08)+2P΢~;d ɃD]CZuAjGrb9A o_'`>zO^ -aYV5m; +܎>I.D.Ylg_9;f HjHM;H(k #B}ҽaV&^ +< ]_q1@񗟲PbBr1ЀgP.DT ޔuʯnmm +ӻαS=7ߋH@7@Ik嗭aB=vx[}ʽV\dcqW5sd*et OP]]CVetBۋ5u'JaGݹTA@ZS"5Y48Jm'uTFkI @ER Yr,;PJOIs + i A$߹[&>gPża)4mm5!u Ti*С$f='/c]gNқY5myk^?A|?J/w.^C`\sܿk(ako& rH:OTȿ˓QOIr)Yo}u|qݶO_@J32I'bm ` +3SWcpw۹Rӿ-Hҟ@Dזּ +?0})02i|&E/ _hI%y"R'gons7v#!HM_Sj(hl?5 ٽm]b>ꈽ3دdp/oT?}L + ˗zC˸&O+eCo4?E1yvZ,?ӀƛB=p%{%^FF`3f?fe _=vuWlglyw}$a9ME.G +VzfA#->3;`^'OvO[8}ͼ z_)>fz_rLx_, Cf( x݀I8hI> B.}Mx,K>MkH;@clOr!>)JOf'uA +l9}R}-0 ?fe !ݧ^Sr[ceQv\d)?Wh%w\b)F#koq%WHu7v_)y݇B"}JMqI3}R- ߧ?JOi'-s߇[e@'|dShH)' ?}J(CQ~l ާUvx_OKx}A0 +n'OZF +b3]}>>pS9 +~Mxv5 !}E@FB:B +A<Օ'A3Ox_q1p'ec17x_[uJse,Tu;pt#jP®2fT5oU5}>E x2l6H>6TD рc4l9ad6}s}t7todIi GYڔF8>&xd +z6&9C]GUu szBx03MgM9}70}1R%8}p>Iogi A#B3}H zKsAq%z_~Nz@NcW뇱6|XA7}$z_悚8OQKI>vA+8ɻ5zH>>]4AXyW>b޼ ߧ`%,}*q1#!}*9#Cy}G Þ|UH?ó;nFDﳲ:}&1}RH+Oe.:r2[;B,⦇> +Z'W|~|ku>}&>k I?C? (}7z(> ~e$'~bfZ ~g,#ն!"~z) ?} 4H ?YfO9Q` ?% ?[~ʔ:@)SW 2OqjWhФjbɌ2`if`)HiPBi`q ybVɥk_]/#͡:oHs>MG!2SN +ZhT鎆5J* +v϶9f&{}R>)dTgv +X\k4d[UBi0$}1H}uJ~#0dOЈf*3> {)5}$u#'C&Y/}(K8OZI\A}|p$_Zٿ[bU$+o*RB<}{+f݆9,Vv*8݇;߰lrQ>)2O=ө r8(ܷ+oAS[rO>X O܀ [H>.,>='C܇}(+O܇}@DOܧ*0* KB*r՜,yw*]W4}ρf6?+O^U r_D(k7Yx#ѳh'lW>v-$- r>+-Ԣ +0" ܇67.4}J DܧF&,>2W<}ȵ^܇;_LCYpn_Yr<6,ti@JupEB^f+);lVjPGc +24C& r;oȾ:~V&O%b2AC>)vrs*et64bdJ| +Oo*)dاŧm%SG/cCh̾)$f";iLW抖ڧ]>62z1A ;}G?CG[CX+ hQߨ}ő|d I1s`P}qy;σmo>; l}B9Giiy@ؾ;j-2OJ7ه9v։۽8Ơ-3N>~pf^y >R؎>i}$ޑ0`S^$ +8׿*5A}N} 7LTTҷ >ndb `훥T DЧ|z c$<&r 8fM\qݶTU<|QDU; + -|!D+ViOg?'OƖbTo㻯(CuʞF]k4ۜCX+ŧn8G çZ<1AS}@D\zwy=N(^|8HVpD75Ԁ5o_#dtEnf*8v>fb0.4@z+r]M%LV,'{J|zraFĠ*ӱ`x/ZX*%P{9I{Yl-lZ9{7c.ZU2eo&8CՊA;{CHB۽K-[z5דz=z炭ǯ+Zô0p^pzSu~ĨYG8am&hGfU@TIzTXCݖ@J#' SV8Ro*郟r Jf "kH 310S3MBN+$"z3[D=PGoD=[ 6z\#g{  +`ꡐCzs 7ԓս7q, zZd@=Y'ۆ8POAQu3Q~ %Z~ܣy3NS;loo- PO{vԓb+- +3&POwԣg\z+k˃.|ՙ'G;<[Ghozyzlcy+O6}OO@6e$^vӓɛ +^Cس84^CKPBVO WJhui)Kїo4=p Jm$8= }ͳ (+PoAԓGL1CWN+kуմ,ՓhfPPJP= gP=]0zk JKT"zrSHz=^L=1z5xyj ŢP]ԣ3z&/> ᰳWN{oVcu[v`FԓiB넁ԓW0#%8R'}cGւw.q gޢL)STޏ;R\Rҷ'R VB![ ۙz[- '$ 9V(+Roʁԫ3R8z \۵퓢7DjPZ, ^wFf詮z80j w퓠PNԅl__:W7?_/?6`?~~_}{~?wf ^w7^?<6~?~_o}_گowG%?zzO\?.8/&xgG^?kByK}_v?ONJz[5ǬoFjD&]'i;G}K?֗Ҝv.S*]ɪ7e?{;iS ]?5NYx?25⾟6|M>~jp8uSW[6C,w1@ɛTȇ2MZɫSmpq=qގT' |m PTQUvmէEUqiݠ~ٜne/7T3q,ǩOqh]ԏSkF6s7z絘|ǩPzoQϧ~z [b/,vS?Co>G*Wu,3q~W[e~|'> +8zRRgzܧ8BxKviU㌛b;پ=ƾ->v3*d[GoR;v:] YT3bW?^ed*|R{Lnr AU6߯eXRY|9xzo\J/gJgCJ$4QmmP)K;ң" 2xUhuk_>^zo'WCkyRcaJ}K FM0c@cK:[m H lvyf GWddrxMc]4INA/iS|ulQNޔ]k23bWc?>^?a}'^Co=Fd̛X[ݽ꺷ٶ_o7q _KgOwSx7|I2qFxdG"qݿ4C=Ľ}xmeS\_^`MhZCܯB,$~hT֫=׶?˭#XhZ_`5^yЛŽxnSg891H_^+]|{vU)8xާ?Pǘx -컓{nmb@ܶX!Wu!Ic卑Ze;V_|ɟ&Ls^5bd=&Qk;,RV0nIpuZ·X@tcƳO`Q2joh^E:q~s{D/ӽ^/_žHAt洎w_ uKvc+i 1g>=ƳU$Dj_h2i-V.ݚAi<b>ѯ-m85o؝~ [FҭMĻx2j=oC8WvZvDX|q,?]6[u?fy}/RX6ܙ#w^_H3&v Կ.Wȷe;[njv S>rYj}X5ua&L=̆㪱Ds3zN7$p^ǪcvPѼ'aό?itf_9XC}w +]{c {7~qȲ}ǁs$eێqa|oG8,=,88XaLm8ڎsq&hLN}`^M--AU08K?oijmh>o7m>oO-B'ynNSOߞCaryz^GZ%]aQX%uX~qgtO@GXI2%LN-wa,Ìج [QtꇿSMPH{x7UBCYl.ݽ = |.dzl#&<8qX:U3y8W:վ,i>[̝lxoc8kY/m\=nq| _8'qF}+xƖIv/,v7NHLd:@mǶ?<ι[}?LIOf`܆˨k󶍗i,npoMps־F+\$n)~[/Y}GÍFL%[w,!Q\?Ns1ӻ}^SGܾ-!N tbΛgYKه YoR z8K LQNJ_l c.a\XA1tX̦_`LogJtV_cm,NWx } W˰i3V&FK7||90C1Ê]<H؈.^}muZTÃ?^¼Bf8E1,_8{$NxWuyXsIPRis\[hFӢ +7}2V|o^\;6R\Mz-McR^|S8 Y@y #هBZ8ܺVusGtṙrƦZ/EL ^Z _v ? nb+~0b3qv.7Ldl~ n>zɸqKv<{?y*FyicKe5LKP3/_6~|BjijW勃"}Q+FoS(zjh`Ё%w&gM#942I 0w Icڅ%-ek4&1EIq~{DdfuE]ٰ3#']dqTB +u?LIƵCY+ӅDz}3Q13O*趙7n +}55(#jp(ܛK\^"e5hUGqWv  t; K~ڸo&[A}iaTO}l0/}o ~"2@r 46LS |N csVmdnEG@ 0uD28:M(|`BDDU$wF +1EEAoL2ZU<8 pQH%bV[skS9}JQ|%Q U/ٞ8#L,PvbbCԓ%by$+/n1:,SaL 읓Qe8`pλZKMn$֚jF0|F 4)n*}m*t!kDBnx_ FzvLbU NІe YV6aA4+|m yǺmRV: gI.OL[1욹-F \,LѐЄ+^6JNSQSC}Lj;Eϲ3[1M 6gQf+ Xtj4Oa64VY[j_TBѩT}|qrDf)S5QQaJCl#d YܾKh."2"zMu6N\ \|seLHiEa?G/QE99;Q9`/ +9N| dШ7G}hU|=;hwJNofE xkPOA2"I:aجB}wRsFV +>Dlbkg5":E V1r@&l& a9M&\ CȜ@tY)"a9g76Da]F)jZȀCh>绷9V^mw #hX U/bos`IJ$شAoec貄  \]/ՐL>;3S+)4tOTܲө6hTո YLDBrs}=02h'fUIltMn{O}|"/*qSK_lKizeI\%EnEL=4D՟{*j7_j[ZgN}RK 2U5m9YvUqԒMOH}9{~KuW*8h8_:}ʩ՛n_t\z)0gv<(oQ7"#1GËn#a' D3k%ݿ83T(ƝdJ8hkxҫbBc+-!Dx{/y 5RmA}v$D]KEм"2ύS\̤'' M 1(GGv8j}<$^WG&r5鴴 FH&hzt|8~:k j FY-V+}"ŏ!"Z$@E`SCc^aۼQs8NoU+ [X=@lTsBJF0Ȯ#t&EUS ^"B`͕Bc=b䢹n#hV:5Bo5YVSɖ3u&=FiLzoѶ๯OgXB<DM y +uCb^;kPNL|lܐ1:MdkXjj*Zc\ZP KٽB~f/B$ :Bh[+Rc]-@5j9xd`53!Ns!a們:+KMM-`En5v3_N| +cK9Gp>IF"G:a^,_-JUc*eV[KCZ|a Yd`fo#V-2qx0o8K T~M?fF4ye!vjJŨI5eK ؊YGxe +)#3n⩦8Z1PCrߋKJllIT j7(ԴZ  Ul|I%J9gjkZ+67,wZyL45*@[L{5r%DIG7Se[Dkn3D%>j. R(ˢƷS`ALFe&uŨiE0 G hpՠ9SptRM67w6R,,v +@T v+!R˒s%P=x̠\8PȄ|ii*JN&52*2iAMej h7PT?R Ǚ>PT7y/5҉:+v=^2=ˤĄKMIg0)q3}jj-,;4E@c}3~)\c"6x1PI5 EKbi>f\ xi$*ڵ JQE QELS"0q0ZWIEAg!a 2I^O5S/ ,7#V nSpPVU{-StA.*ǣ+S+Sn@)z:/geY9I@ۢWהxj-M$`j1$':lDIڝSݕ1_9`Z5/x +d쓁`ȒvuD +Á{oml VVK)gB+B~rR `n|)ud +q*!uu3MVniF βfw4աS =HrW5P+;r=⁦ ӑg(3-jp;-4S%Qs)(@F`0 ucS4Κ3U +)kd,m67]3P`(#2g +NcSxLY}!XT Y$j-FIPܢ7'yY= ĺ^HcW0u6k % IBf$PCAta= d*7F}bR~5K'=Si޲.&K>JA#A4eM ԍ6(:1P.16F!Vb4GZ'ƍ5*<vD*e ˅ޕuw¬Q.)dLK>@,wO-IFZ +R)[y bMS3 +Zh5NW +7(hSVCoP!P4@5yRMlNhLQ9Zp +y6)͑!9e]'{ $ܝ)<emd(**V3%Oaڢ2@#>dnAgI#5ʃ(LIK^O^$D$3%wMERX7YG@=f=J89J#@o<ȯYY. +k nl|mB&)MG*0,4*+AlI`2AoXR%A{ N&K7^FnEjр#ؖ rU@ 3d. ,ֱQqmtSCaqѳZ5 (GDKtLKL#ؤEz({2&ឥĚi4u/`EOcZ ]_! ^mj8e,OyceRN54cMb;MjDFR%I/ab6_&AJs>ǩ+"K|[($O&JDKB z5eJ pAHR@}8VD(5559FZҾҨ(~7* RE2P)*5e[3ɧYWw9Ee+#n^VHh ,aT*a(|ʛ^jr5@urz4ı=-DV[T T-Aa +o0a\.aPkZrk=(y4ins5@Rˣ8Þ15[ E:jIi%*OZM44>MbcV*ǵVk9C +0h1z7PZ74V BUxcnΨB4.%îI!zm;=)Ly@NC˫HY;CIRoڧ`r2E1 .CLNg]4W+I7l]˞IË(9&5$yWZ5NϹLUX+SK\OmkzBkh{ݑaZx@AsJJTCVJUMt遠fDfMPb}iGv=Hӥ S ɝytfbr)esn_(u">)!L@I ȠhZ6ųN躘W+WQB &. %׫?Ü6$HVT$eti)4ZJ$j + +(QC1 M3%ͧv:Wf 𖄣 =5 ^c-M09ۦ[BƈRl߸N3[b"a;4k' C[5@i)ppQHtL*t;rj1#y-u1i若gk&}iV&.k:QF_đq"s4o 7|pAMlLm]jeJ+zYWN22t+ Ks8d"ڧ9-4bV+ba[{gP6lb5@Fֳ!Hb`t*p`Zh\lU&B^鰾m}zjcki8n !^QsRg̭}X,F{b&uW~o2֣8֕| i iPO84}e8j_Ul$ٺyiQ|&g |Y(8qQQEu8Yӱ+ e޷Rvl:|1LB6%VB3\~@!#HrgQUr_}V}W_V^~uu;o7/>#돦OHG~~ ¾?2^W>K]uɨaFGla[Q2h#*C5pB'ȵP'Q:,uߡ"'T_ AA|(;ʑT} Y2uL~OGz߬@> e'pLvGq-ȝ[gteU?,v|#M;[b.V5Iqp:۱}~vh[8`[qҳ|R|`aEv`Wߠ/>EvB,O;btuj=1\[H՛OdⳞ!(Kޓ0㯃.D5Xœ,oN f2A_]pՙ2~I$͒:y!BשT>Qf{% (琔 +,aB*)$]ȑSPD6iȳ >BfjoS)F!.F~X|mE.Vrm!q*qʳ2_zλ߸q@/xwۇۯ?G73?~u_{}ow/.7WWw?<%Wf~EVǾjwׯ/폓|ۇ}&?vX?_?bA?lnAO ®^G[=Tk./> +endstream endobj 191 0 obj <>stream +{}ӻGPkXKPëOoҿm>{/oISOvC}ppW +r,TK[͟.οe;O`N"<u^-I֛c޶͌bݒ +x<ɹ}v?Ͽb{Vz] }WenYmo/_Y/ͷwv_?d *m=ˣA9IXA9X9}y^?]:t* t{2vƒvPЃvzN釩笝NOwZh^~wy/ۋ^s.S׏G)}J?_zuu~k}1Vxb/W_'JH\Nww׏*]3NTyrW__\~vqfo(ʏW^^#m۫On_=Oi^r{4U;o?vYӞX2N-)?]>dn6>e]Y۾w0K7^ 垪ofz7;ܮor"Êӭh{Gl\X#9[yj\!v3_=|}sá#Kzc'ˉo, @py%>K^;_~ɼ9[8y`a uLܛhӻO//{{!e,KܟzO=?оW;DEvk}t|:n w~}w}l=ԡ3M}ۛ#X9vSJ&О\2<撽#/'"-}[D˫⽮n/Ϸ8qOxDĚ_ׇ+T > jyyw]OKx[ŋvl'/ڋOۻNǣf6T^s#Vz=>=~I cwO$^삅SM<·ȥ^xK;,m9ȥ-i߻ ߾C3\ڡ.=E_N{Kۋa]xK;,t]:.b=v|pK}7viLbv9=NF]ai{F4~>br:dރcЃ7qo6zh.ANx*?$t腾V]i}7-WWi+ˇ/_||w~Xۅ# pgP_x*D/m7~s{-TeL>_J>SW^^T!gJyScwc}2۪NrKuD,QKuD,Q%JNl RKԾ)Kԏez:ž(m.}1<4g^yg=%}{gv('gvXѡSۯhO +<G;q ;@\_=1ǁ'

uP.rwW;d nSؓ,'z%moڷWw=\=\+;+ٗ싕M'7&{Af‚j]BaC]}+S{:; b}}z{mHEZPImpZvS)`qwY~ aA{*%/qͮ-E=wlޏ O)@?t' +sOA?=t/Թ~KE>> u7nƃPЃzPP +ꇨ笠RPͳSQwZ(W;P냆4h{Pr=Uw_HKC-Wt#7:xE?jy1_Wy?>#}{~qb|>yP~oٽ>_O󵃝xm'޷37 +{O32F}vq2{pwUqM~|d\Z'*On_=?zt._|nJwAOk}c;0"=﫛׻9 OuqfoWj`rO^맒~s~vS 9bK;%{+K}MWt7vo>jg:ۻwYn '#}&9hi3 d¿U)} /+zlEn/VHlE~Toyt"L빆alv|~.-__=1 uÊ<_ў䝉޾w,KG3w^ `?ػCI'kA~?Dm,qThSzӽL}9}bhm [?w}Y~xsPR}s>R@?wS^R=9^ܗ9?I'UJgv>l73$ _E?/Ŝ쐤x'{.e䄎{czNN~ h{w +v;Zng/=11ۋ3zxx %&$~>A?<ޟ߾zCvL/㻦A>ч}f'?~_}۟wDCD8`"UL_EX sUˎWW|?~x~,E_V돦O>t5x*#/=)#NbM3@gt\=ګ˷2?Lģ$hibL8Iē0hv:>yN ccttN|ISaIL'iʓ|” 2)}4I!Q;qO.@c _K4rѬ?N&;ZrEsbRL=xOh]vG&@M%W@⃆aL +2}N3 +.n# +~ Z:ynd]4Xb)VKѹP?hgn1N6L0wCk TH +%h+ ˨-1I)@yʁ6|bJ؆.z8$Di>i7DO)xq 㺹Bˮ8X| 挫?,m"YE:zYti@.Tll;x#KK$ﱦGޚPj |NzEn?%D8Ōqv~YNU*Υ~>m2M P]-I9ݴE}z+xNu\KH0>}뛦zZ)Fw=*`Hji3G[%Z$ ci+*κye?^T5c#8O[A(ՁxK,uIx;l:>6{ 5Dczun8e} T "mX?ފlrc:x ^w hZ_1ƊLB%wBX* jXWR Q +ɠtRdCcNdVtR1=TdRLWn +I>Ug3c4W"v:ʟ }ӯb#a~%nJL]œL &GFs62B*Z8ځz'*CNcغF7sbEH7pǛDw(OhB%s@G"6S`LR3N` 3RI,_ @T9 +L1ctJ c2Hc8B +Gb,lm۴X) 8 P-F`I} :"[f,G\p NiU!A 2hh3(袐>BR܍Vc)Ď@ıRYU O[T@aM#P%Kpb`|XUa T`}dVu3bIGI* Ny$d3I’h.x[uŚ}@bi.V1|zh[4:}(yd\=NțG٤* a0qzD, W*%)Lr|R +.$-A. Eh#Y)7+`ds4| +F`е*&\Q*]{r%a}xL`[)# ހ~V]}i|bM#eA9YAd!QM($XgVCȡZ-kk8_|iT_YޙYB" Bչ1cHթ=F$d$#y5f~D?f.`cAu3&+ZLW%yd :Ɔz/]\cycya{G +Ͱ؋θ(bg6O1# +;'%-kx'F$3BàΒH\8 7AMa|Q+ e.jjg w!D sGfR`'́M^r0`BML(J5&",W:UQ2 OPdEdQF`k;"EtT '/1~it-Kk馃;{']Zz.ލuCŤf86`NV܊RQťێ',pbaK <یmnk;pSmmkʖt{4[*wqaŤqY.jqv̭w 'م9*)9ba19.xDR?K mryl+B bcw-QoV}Z3AKͳG|/Ywibj)lJ39ȻbH;nGL<^p*cVVV#$cXTu`Y60S`_N=.vW?aKD`j>I^l +)1NX Zoj/p DNG,!E %] 6גN,ê"8g9v1,vҼPS5(Yc=ad7cUdW'1J?ȸD$%cW?2yxĨ.J#~h_A|$xzK2x23\`9}Zr/7㭜y%F ( QbSI]:cW]pͺ`1oV1o#=6'RhPADIh;bOxKB:AWq+x~mF-E[1HbVqUȫex`&L.e@%/b@'FoKMB16kǞ9LГV;YS dT@RmTJd I4 ̽PŸ>;뚈H|D["8hҔQ8ßp,׾'n7m"NJ\v2 D/A3{~x#X)qtHzqQ1RN,YD_m0[F-.h%V*!߭3E~@r3yv1qeFw[nw 5IlX+eYD\D +2PCƬ".Y2ow;Tɑ6 HbedON8f[BBI? cDǝtK-Hp[M$˰2 +9Ji/8XOWG\e;4$? ++ Chh`iR }:$2,b\p CH;+2hOSCTT(j";dmBٟMlg r"갌/a}ET.{dpz]+T7Też9e(a(# 2.B7D+."VmͶ +y@[ּ @# +KZ.-b.24Z"0 . /EFO/媭n<2g1gS:Vhqv!Yv" Ɋx~gkX:Ee +'X@`gg;_Wnxr^ {$N6VWX~m]{vn>.As`vOVc^#ԑv[]< +?ʓ2V\&pm,,[mR]LB"1.4nias[a7jv:~ gV)?⚃Kk- _ c  3=m+05&ՁCBBXkB%_ ƚu(3܊S5}} +۲ȌO}d'\abW&ўȉ  K=r`3)x#OGy9ȪŏaY:E*:E裺)L8ϳgO8gH5-Z%BĖLF:@y#o?E\"Mz8*:br,kh"Ҽ؆ +DI "c![N` l-:s&-ռ +ѯ~}jόC( T]K_>.þ!CZq͓l)=UQ0 _b 9[dXG rRuŪ.TΜ+fFD~g>( E z{!J 9򔓫4 +T-/yc#yxF(l`:6b]L6 U"N9đ.A E6K;,8۞k9eqk#iZI6hy oxQ=`E52 zIJP1-A]&0g p%Jt΢ϒ}/, πdܬHr1 ,I7gdʒ'alҞg6}LăTvĈ&%FgV̀ݜV|l÷۔r,1W5ўV*xsvضwtc8eҞMSi E76|WC6r{ VgsN\y'M0W1نl j!# 6kl+S|Q +8Ub~l× ].pd 'L<$%-552v]l939'^GU>MEvr"@l.^ԧ\ /<,7%,ɥ:ێ+,(UlG6}IhE%_'ѿ~1yklP2C'xsWAZS NG?/CVof-^B 8㻔ϴg?rpb#kFhU$Qw.q}ҁA4Ў'%!cβQ 3#XxhxaBhPUۑ>Gc=GN| g5,c3~1,2Yߢ*LJAߪ/`-?=MGZ[RmwG/ۈȯ1-j`7kϩ~Z;%f'g?;:)fJX%³=^~#ǫ;owfw2f7ۯ~!|{7VSY]a558Ovj~% Y27k,GWK?Zm/ظw܅/q'~-'PvJo_/ӻC-?__F3 ի\^.=%8E bZ<x> +iXهL'X[me[%Jl!qz q=dKQuvo}u*TRȻ٦P9?Q[ߩI_ [\JggFQ{"R5e؉u6Zz6j[k <1;_hc`p}БI=WrUg{RU +"8 +8% TR F )+;ףMC,smN"'@OO9̏Uꞈ PEIA:Gg ^plʠ:" ݢ%JQ/<ɳo 6Gy˕c"%9g +TpNe/N0rSTUF"zQ-D<]cQ%4JBdMyByvvȵ׵Bn5#,{Q@j*>Q$QnReǒ$ +Ζ|(AږxT aY+X$_f"K\QQivsl|'Et +}W?7{8gϾ>~3 wWm|_˗wnN\ z)7#~]03jOqUF +IڔfQm\UyDss ' RÍJtuHa*!jqdMAt\$dDXpMK8wyYĀ(b\7 &) M@G)xRei TMiHuS;oP" ]r h&ά;MuU2@)%XR]1eT7`FG{AbOR2:[ل4Rj4pxH@T\j9 Jkױ yԋD_` $9vh)p}?YFX'y+W+ͯTL9p@4E fQrLaTBT"ssk;]+(QK";-cD'~ D2jVReeNju}e}Aq0L, CiC=]ReEwS = og1UQ4r(ۄya3x(=̣HegBʄ  G)RxXts"nUC3oNC,0>Z1faB F (.]2"kəU bt3sBAL*[ocOCNBIQگ-dj3yS̕EQl5enb_a&UO"9V2O@D&"J +%( +M3њNU'fvHQѡDF}n*Y!шbДEE DL R\٠JF9u}?ĄƗ VQD&s8gdэ~Y&\it¹\zјNI'Gp2HD+ҝ;XacPK +2+NܔM39VQIz&\ dԤE*9;T\…BNl dኰT,p }n猖^c ui& >:qDIdr3I^H(t]Yo #:&Ŝ.WBLټBi6WH>pT(e9AВtPFPDF +[d(}Ѥ3"]J-s")宊(BD{,L5Ri8Ŷ3< +NUĬcr}7)& .ec򢕨q*CyQ!xhV<˦$r +o*}1\f(wz>:ώ\*A߶t*pBC|'6k&zb}&DHE.: +%;Dr:*LmT@(rhy"8ےHWjD݉I6 +& W eg`1+z>Q~1"< ǵ`QH"KZ;DF jzpmrDAHҞFS K*~qicp@o[*,eGf@ƷTUVI@zǢ37TFv"bK"k1XtB+#1BV} 2}GʝEMR6W)OF@ZT1}(Mb)&M%-ÑD<4) PD1̐\$w^%`z!l0hej&Wb):(ɭUё4Q DRD]$MEgJ(Ђ,yX"ٷ0r"Ex"z@B{DPb|RP502In=(IJ6);W+gԦ&&zBXLI$H"KX# Q}2"윹3-,] +Y9=CwˬJ-Ts%GCy,GTtB!Ӥ}0$Cf@26iZT2c,K6r E!dK=-'~6ݱ+,@Φ)(vZq=<$EG҄L4tM+`rn(Γtd3S4l+&}fsn9N +K{i-/<ЯbhO9&zjEǺa +Jv%d;Nm4 I kE45t^F7AAM"93#,,3:DV1TpJUDT }c_ ^)ULV \HN̡*>Y!q**C̺\EEP +5t*F ˶6uJ)*\*V!KDH m%jO CYUy;jm[P)Mّ+߀Rq_#+MH-9zt$+sԒxa C6=3`=9a!{ 4O'+SiO[Dk \Pnli\@dM~+,|TЪ=?ypyߞ hQ +G߯TL_WGW_=|}T??^z5xTi:*(c+u3~v=?YrCI +*t(h1s_ejW;L*(b',D!\7}$Ԏ$$xmf|7KPI@ ̛i[ ˭(߅ P)A9f~DbQD7WU97XTX> \SdxY@Zy xhR:s۠1Gl'ZQD  ʑY~F+ +~5˭߆R*!RD7ALm6POB&\v@Jċ0D4yqCH,o~ ]>^44y=s-?{-"\r+ȔN5thy M&ʖi ffV|NeEፏ2"VykYA +.QAQ8!R9 T4fGurɫ 2 ħ!+:rE \(1rX9Asz r~Վ:̜~ c1p*wd/Z!MZs^^*wn]_M[PIB$FƧP@|A%-AJNF@쩇PޮtÈ?{| }6TP +-$Nj*.~P@P2,&% ó@,j4סm@Eՠq  +Ys` [ 6SEL-C3oЉ9Y $NYMP eA J5̅mr&?@y*&Nb` J~Iu6CcPF/+ʉM:f#o )DFq^DbW &a9QA.==hb0˰^XY.^C5,62a 73 :1&}FF>0#r9ȎRB i)p>kpEW C)J 8<7z&PW: ԡT$^i\t +N%ںnj.1ԏŃQX}J^mS&2M}J*%J)D ).N'Ko9pl:ѣ ~7pPALJl҂܃[.0:JA잸(nn% 8%U ~WI<{(@M}-縩k,}C ;J[N%HD-D<uJ=>71@9O0HL (>%/ѺOދQ[AļxB4M1uͧDj]qn>>%uٰ:=#*Td:ɃJSs)y9*Yl/9wP}j w Xc81 OT +ZAT@SA:|iN rSf $΢^̼JܫoxУsEG@$3i ~yΩ>6gݫD+;s0q&B6^Aqz&Jh$٦ "wJ-񻔁[m7V" f+TӢL7%=3#*[Rst+o "wYʩg~ +WYUh[?t]܂fl%} +ePpJ|9'C/5gRK DŽTl#U Zx +HzjHd!ArkENͺkU"s}A6Oe ١PY]k8uۻw4üۇv7hGO%JFGTxȞWBryҸp{uu}ag"yTVG ^ބL+ qY.$ȧڳ[A]ض:f=n֔ +dX4z Ü0~s Ԩl̈BU\o Ep46VQ< +5k0`(;D53`6[V@iC̓TjZ)AS}a@MoSXbL\Gp=p +Uꮔ<UA!]>J|iAC4RnL@.fA>2]7X 08A6,aQ]o3:JVHT6@1N@+@9B1Y,~UAv4)Tq1Hေ]M4nv(>Mkl%a~ I2jL$fA̼ݧ3?{@X΁5 B哔77lMK?gkI%5DzKL*|B (-i&M( a) E@zoh~*r?ESQ ?E槢A?ESQi~*>᧢~*>OE'T}OEѧ(O(:Myiyqkur?WZM+I\}urECi@'GȯRNNur_'T'j°-LN({Z ~s\X#Vȧvȧs_'(5 }B'F*NN J:9nSNE:9J|~_'Ej'trٯ'tr_'ur?jҀN.`%:v\'VHtr`e:yJmzgҋ>':oT+~įsƯٝEP'`DN.̵cbP'w;OK,zurz *A=E'RվTXr=JAXUOUC@O<=U{+VVEo4 u@\LWYLי qm~yPnUqLAAM("+*Rbk1)EMVRЀ86xY E@L1M`'\!J7Q X ôHRk3uYRj]`OcnH])){byħ5R/`;x]$сv23Q Qn6;AJDK)A֕|QX2^1+)4<5Ch @.WHd1p- !3ʔBWZqɵb.A/ܪ^+H`nG\ ~6t] %lwP+x~AYgk9zuD$u;sAG &?~% +0NPKfiE^R@5nᮚ'6k+ +0}ipQ!,"\\17ߑ sz7B$Dju= +!aaayᶕhLOz%A\PY AR11-l׷OhJ=p=VepĐz7v/PهHq76p.Q@*-ؒsa> +SXxdk\LexA<mDW T U!b٩=-J rВ"ӆ\nO4Jy%nQ OJ8JCw &2Y1^ɗ슦.BY[&.^{ AD+fO k#OJZH*7@;#1d]\I,Iп$L[3Q+Gsso)0hD'h\Q%Oω%g :"ݠ𩽛4,ɔP~ hPZgh{h^n~X{4=z!,Z⃼(FUC/,FyJ2J +=j)%߅e֞T2$|`z~I2"I&58p q"FDAk FĥH~;+OZp&yx n̆ @]"([wN ך$aTN1~"./!b#,?3 +JN ʪ҂88٘>}3 u/$FJtU_؇;F5I'̤/Fjd + ^QWʐwډ5I|A$a}N?&.H#nȽ?# MN! }42ICA2D֋.uLRO&iGUIŚMujrxXNtb(ݪC/&X; +yY-UG#gGSwVC)&5)*,Q7= +:au4hrUwj} ZkTLzmKߝv4S3j`3{8LIɍ[ gWC2hI./ +!2JJ^­z}WBB_2ΞX%@~ߖAZg,Ϋ bn֘45K SiT 0,Q a 9nmL*`&Q;B2ޠ0 //dS,Lzi=3B[ QHԊv-#UvmKƉRDQ10c1C-<0LZx`FWIw1 `!MVRK,|hhCYUJUzK1EG0p`@ZMıD]Tb [ [A x̚6b /,H Q<ۘNPG-$ uY3+Aj"E2E982<[ >X<"l#ˣ**{mEKa)k)jMrY=5e ڢn^>q[dp\ vEy .jk܏S4O[_;Lob3ҁ%t@~&>2k@DCAZa8j@6i`za|x >&N{:Kɠ VB@6B6IԱu;[Qڋe2T- vC]@<>R +LݨQ,OWŒbr Z LZIU,P0r=LV ݋ Nam BEd46:\,SCxcL \HɽJIN/]:<|ܡ@Ɯ}!GkQ<faԉ +u=A +&al24˧J)ybPU/X1,9Y]BHKlLpmZy+m\ HE} _XQ=/a4&2zcq4Å +>Kd%CLĚ;E\S犅PbG>|B¾:Dӳv,L.%QZb"4$Y?E4p-JW}`Np!W352# :'r +4틍,DiPcӷτ`\ct;B]$IأIGY;"|r-ʫu|hLNCke G14[P0h {&F[PRo?'+›a4ZaJDQ}]X&64UH2`-P&a!9 +3*ecaàT;:)!܏)@(Q4 ap4 ʡk,@=g V;doE٬ .BM Ǻ3vRKC9 p MS 1b_A#C0dP텖 S=,lB80̡QbņU臱 4=K PMzƟh[Fsw!7_%9 bX|p11& ?cFmR_A]ItF5&8 Ċ4t^NVTNk #|YL,Q!:64S0ޙ,WyoFR芬+ȘJ! ?q <^3V";jA )pnCcb@a>w7m꺬49KZ4MCfR%Hne`2נA0i+6 xxT@h%Z +xRY| Ko8.l]ASE݅d4:Euh< MdC^16aϨ1p 1L`?a2݅&QToJ+`J&F}?p! H7F#N+M. =0AC"!~>eh]~!:<˴,:P$NiexAVfQ+VT) Vx =FM<#TF(2ѯT =]P"X٥9<,*Jԭ+, <17Y6Mťn]f,5ʸsޥYx) +Pox1@U:SYD(~,Dh yTLIt JٴY퀲d}:"!2}ߩї +AtH>F6]WLvImXі⺂iQa +ITቐuemP\șl )|3LS!#V(h`Eaw(nzuH+st(c KbD -.*&;d{ 26n1~t(4R F}P4)7X? g۝aUA5 +|C 7 ؓ)fP٠e"TjyfhEdu½ugSbeX56 BF`bBih5F#`Ya"HEСΣ¸`tLZ cjZ℡tM  "g3;Gc̺c+4f/dJ3êIe=XAMEk>N*H2Sd;  ++гBS4JPh¹Q:~}(v6(j"hBKn!pqF"nR +t] Pm͙*M@LU) CVL۶5"}.n +f0j=Cy6y.*Zi@]D)RT=E&<=Ŋ&{R x ,(vI`ƗlqCTF*{ Z)6>-lxl_䃱#9mlmv΀]hSkۀL >П ZP#FJ>?% +F "B&-ƇT2n(z`jg'TDmFpׅ=߈p!12[J4*&3Q_w_CUx|(MƪPcݨ+7ǢVP0+Z,᥌6d<X&i$Dlf |0FcS0C:] `Wn]m^L3n(-M֨, 2\¶Ή³VD $3]u,hHpoADTyHG"R=,o0IiodpKfRY:Lxm!4jZe F>9VFE\UiNc D ,e4@WIc 7jeYw‚P!F Ӹ2M"1CD%oI6=>SE{@=q*\pX+A& +w +>&D +,A00*,3 bD@k!SA#Y2;hUv.k@U&#{6iZ + 15Ucn m^|͝W XH +5G%jC9o,&R 2rA"tk(+Y( L,+ ^ pc*k/$aCOcpyN1l"YW܉}XCu*I`0FD,pT%LU {O'd!ѵ&i؂W7 +4&Fś{P d~'JT뼁<_PًYnSUzHmzحN'NX$WQF6Q 0*Ye хcǩuT@+VLd 8CSG( N_( +=9^W* JAp^@K#$ 0O" +dlx=C$S>A!/cBCHD*&A*HZt0O:#X0(&Ƌc +5FA + AɅO֩ 3$<aJ/~?G}foB‰F愒9tXVAxp} ѯjzTϭ:YBz?N +b!2ⰿ<X ihAPƌ +vu+r={hAWm"C@Z֯d] FBp>a43mQhߡm j(ʖ4P6K +TOAtSH+!#?$dg[lxH Tv)CD0#H7-BH0i\dOÇ4OYML%Sp=Y[A[Nt{WǎȂ8KWK10jYaBnU:Iw5lQ HyT~duتusԦʣAh>Ъ(FNG~ !|/$m}g%:Q{%澖$]6`N3"s ݡSV7Mb͡3ZũD8nQc d1JI3k1T$d4A';&[ +"noWџ.[wJZ߷T[]Ηݥ Bu+8~=Rx)/MY3((C' ̯NѠTx;yi +tMKF!E33/Iݱ($BB՗U.e/@h2O#0.0dS?'4>OX$}I&Lc "O8 )0OL>OC\K>COjoaD=H-S%CȢ3e ?i̞hpX<mCFw%IŐrv0jeaup6Pf[f3)x?(J +7k +N|}/ +syD%v5iU?j~\m~ylK7a|hOٳZX A Tk::r1zO~VWxso_,Q˸)S}..,ְ3ѯ +DM*aI8sg0l3ȏaA_ȮO95TnkʠStϞ.G.&q'S[Ruy1z?d,i.k_ej2F/@3;lAoT9Vf S;^y8ws5 S8|8_'jʶD?9ѿtpa8擉TSQ@?B_?i?8kOC_ycjNi +!DB7h 'iмj@mCB0PķT ]?9Gי:ԙ:K Woy%ة"` .@?@ثTouÐO h)BZ/" >rEלonDyFi,mO ˶nHyu݉ܪ\?@lJٍ|#ؽnCqрGS1%/?on5xr׺N^NPi{rkhg]$~L}zdd{};>}?6Zj*ycK7~tYC!e;" Ĺ6ԽY#PнL'{&e50Nq)"wA:>0=0gY:7(]`݈lAmJ508L?09taÐ04?QO3e>!f~}2A)y*"dq!UӥwT7T]X-kSEG+NՃԌPfTK +n(f o`Mo>{ h4ݡsd#D?Is":TO;H>n*PXݧP'FY|(> 2{ԅ#_v7/hpYݯ;pΖ¹A*P'(@2%Xbf)v$5 +BЦ9 B9m =7-75)7%)7yR{w[<Tv)Aԧs@$HsT8:yIIՌJIOve(QڧD]1.2ye//,$hth3o,я44A^P#Uۘ܁K":(V:"jexQ|: ݆kCvݮ"^ZZpԜAuu"Č HQΧ4o2CIQt*yYRd!JmWc,1 lv-HJo* -7m4 kuhʇ<~CgW4 b۪ :*sJS^dBRl BkHiWzttTްϊ;0do,Ժѳ=! x˝!"cxDfnI;.TG[?j7'D`%a? !7Mg_ƧAL Z]TLLaLHg#shAjOϬ6<[ap/%aL ؐ}yJ;MWXwma|jſfm3I?;j9eCFϏASNdRF-UpZ>5?Y~RZFD W?1J?@N S?DAbgTmQO`FOќ1u3߼jSJ7Ű'YU&Fe:cj'JGiu8r3\h6AKxzٰa]9|d>h;ԯ=˰!@/R&72"}J Mm-э? .VCU}PYÇ> vdR*PUkvk͡h;Sؔk%ʶaD=1 +S/t3L>D"t'Wx<cr|ji\}rB^_s6]i)Hug7duݫUۧNzc-D_rþ8^Kb:4+&=^w_?e=nȡ!oGpܯ=* +etq2)p2P%qڭ{2O#{gO}6w`z !*B|ZTJYg6)˛|0 a"Xz|֊i <[eL0^pqQn$; [; +/P: X& 3,fK"tl='B>+_ÙNif8>p 6Rʴ^<ϓcf.F'WHp~L;`QP'Ԃex 6O&Q1gMY{F6c5Uu޺%rrYcUݫLλl\ Hdcn﵌(6g)pgPjW:lv0ed`>Z)vv[gY07m8g[ (=NZQeV\GG19Ϣ{݆سi D!?|}~xmy\#tuGS}OsI3胧?-MJ{Xjӓ}PJ:(ZoD߉D%.IeW6;z ^DW ޱ^$ lC;og~I a yil1(N1P<{$OtxHCI{ӏ%2I|Q{c(c-q&nV۸Ggcj>Q4o`pulD_57 `{Ó:~D|eZp ƬB6{!AD3 s%?Ov8jGI~)v_dcrX`|YBk`rR!BiGo|yz}U~>b½COo,MZm9{p^Ѷt9*}=qnQ[ ="IdԳ%_6{I^Gm׃{ʇ{&Fi8SW4+8F]l!Q `uXk:\w6èюgYyސ.&T7蹧L4DNz!vg.S){~rjYPwIփ`NmC_?İo׿`$l4""x,ɢ)Κ@u`ɡlta|#xvO?%mV5}50}T|"GpѴV g-7 %#Уĵ 4pxF ho$G2mg5hO@AםnHtyޡ:mdi H}:OU;P d~Z[eOp:#*Y(g.\J${`|KiOCst@zwh5N {,Yˏl}s&?O~6Q`q>f(3tݮ0]IF01m;撡|&eȶaD;()N> kq:7;fidҙ)Rt|i>,x{uЙ'xMQ}M:w_jK"̂_SVFE`SCN }QЗ;>ۗ}tݔ LC%ߐp-D֒i4+pmTY +Xv5$7c!T~#H^'= k/,XkQfхSL*τM'DDUB8oN74 +UEE"=>Z$77uC܁/5m ⁵|mHgn.mhԃ&Nj]cd-ڭ:0|7 K(PuWM|IAG0TK fywFRWfjCDJ~BA+VGTAkVUe(饪}yr>ؘ|&$θ"R7a;^W:`K_˼a ՑSywjjgk̪4~RZLtC@>Wi +!zS+0Uqy+d7xJ7 u_Z3N'; D{޼MTJk`Nz~fwRzu2D&9o~] l2ƻJafmFvtTi3;JAx\rϟr~1M*) +S6Asڧ;$QjQ Iޡ:{21/5?97\gyOY_[Gj܊gyn(Afr +w"4 (i?Z}Qէ]0Kq# +e+&(Ohk I\9Nb(yKO;7w|}U(Ǒd|u +ٹJU?j{ە`\7Z5mAӆߺŷ7@n[Ź*O'Sz:]yظ"Ҧy_ud#|yk,im"^ ݤR6En'7J*z~"]|5{F;鍥q6k4I7#`݅lۗ(l^><.r-rA"{tKFD9Х6Ƥ%^pY{N,ɣxj,rk煅z +33ZbUsZ|lJd~;No0VY%[wDY9܊۝iƆM51Mm. ǼPf+Ew‘ '6K:R<^l:Mo]3ջ_>ol*;lwDk-IP|]5"@EI[8LǪٹtc{lAH7Rm>6k"s@SGښr _J뻻 %jj#&'u J!yC;hX%n":iƵROT/f-S,&~a7Qya@ jTj\g..(kjG|Ѯzf9@v [teMA^?Ojl|0x>6/p,50 +m'{}稢 Mnwl-'IZ]֋oUFJa4f`5տAYx[j|j;r5l^gjZ 6$厄bEG1x(Hsۑ,lكh:bVj:a6,X|PkdSr)K qcTܹNWv ݐq8C:fJ͋xpu(ןvV~kZÖ3rSRV޼ӧ@d;4|]*FNXHZ;,mo$*y%_fKu1l첱yI~lgo˼(*e7+E+wVwR'pE3Oע2 8:xWT"t3r;Nهչga]l-I^}'P}^fR!< [rq}wPkZLn@*郃Hv;WZWKvAzxմZkZ3Kr,.-fK.tyGrj{F8n(($pğF$m*ɚz$}<\3 $#! to#׭ 0 ! %``t0,@Pʶ5l#%^'G4Y#+mWȞM + >mH(#Jnx+;s}? V|yDU~༼ؔuƿoA_hOFiSEw^)]|йf ز;hNʫ_6@7)[fbe#TlKl1h@Ki'ѯ# Cڶ԰c.;W86 ;QAh'8#Q9?fJ-Z!H,㓥èߒJs}~ECj zjȩ.(oMBd՛w-s뺘MSZGtc +l4ޛ&v|pYqpq24knx LX4(Etj1[@Кi9ɰknHyKQa\UofkKJQ[&Gq6rjfg鉈k2Ai6z0'61 ܾfc5즟"{up+Tˏ*J?ei:q HX +#yOXޥ~O=PW EX>>ܕ$Z{Fvldn60JOͳٴЭ, 6eb˯/3{tǏʒݱ8 lo,n,^,$OJq23'Glz?x4[q$j}O'WXn],c zNRۼ`O*;s` m6:m Δ#@gpJvL:7q?zw^}=TM1k"!HJ.+NٹrN/vt8dx58r%5A0f4#̣> (cq͊o^eVlo5C)qecy@0QGu[i\DX(j P*^yX!'bAޥ43qB'n2R{5 E1k+9'*8G;29p|ljinuo5ɪ_R=vbnkDl=>l=ǂ*oOs񷽺}'Z)*o2 U"p^ |kż0Hݑh^Vߖ''pmiޅBF6 rIKJ6J*'ւ%)oIMd6;y҇Jm@0]{e.u:sF7v~OKIBM9LlWo#& r;0fn)"$ּ85vr:6X>,, o3/:-'Qejɵ0fp]IT*s>˻QFd*_ȦwDv:MoTtHk&2i>cCs +jQq6U^ۻ}&J6ʨԮwnO͕V[5DԓLO܀Fc dº@4kkcS掲WQJn5ҍ c qcʒ{Ϻeݻ~׏z/]hkk%8&yH.7RvpI9pv3q:W"LJ&vR_O V.ܝc` +q*FdỵچL3d+dd?YBZx*fż_V6$ۣltX.5g.ּMɤ#'wE`,/Htuz7#-ʨm5gv; ~n ӴqzB  >wwj}.i˭k{8օxSgG@5pcgd `>}f+yk +/d|dG ;~0!Gf/gx֊A_]r8?;ϓ' Lln[w>Lgnn1=72?7.̓&O?s? MXビLZځ\2p4sK-(AvKX?ˡ? \ 6O=O5~v*~E{H 9Mdp6#Y^~,Yf97j׸6ϙZETȞ[x\;tm9&取ǻdyHz^d\gp$;ig;o2Q(𴽽Hƻߎ/$5sKkK sSYIJfxc6~9kkk~}%X:m$fRFVex%Wp]&7 ExnMٽ.Gw]ZZ^JxNd5,+p4: 6K͛VRo?ݼnVtvws]UwrkoV߻_ uX-vzrHH=Dϙ'2\Z9e~4VWjv`(~zWGIqsk)t"-Is\%Niq(]Z'ۛ}Lܟ毟"Q6\xl>46+r`Ǹ9_]4//c/[jjs|u}/^[E5Yۿɇ3s{83]{pv.7ޣ|Y}|>+oV[F0Η"uV:o$Jrch玝cggFwŶdW + O/svܚZ;Nl%sr*/Ϋs}Xj7n}']_v]e{|'VjT~Gw7XxQF˒;;/JubѺ +d뤛0>X=gk[mh6b g#> ˅\3z[z8ذZ"L˺Yْ_GRl\[jx!:+Mn210BblޜܙΑFڱ}>:nڧͷV%pmgRCUݗC-[b"L&WCzL놜kKBƪ5U=shy!WVܙz?=\-btqsQ\>yC3;|ӣX⎗FY2K/^>|jgF:_.TũR)WY{'Ҫ/^ُ [:|;Ws+/W4߮V7䨲[}] ^#{ѵy5۝? V":O,#rh|%uA+ޫ%lzF5~g&Kk~{cӺ\ml{.l7K-llӱF(or#r۬&o KF.z|[wDrPzɧ*[qX:yhWZYg.t2m䢓.{FMNWr^҂:, fxQ/ŋ҆J[O'ɸ={|.kjmF$uuQ$&qN~4׃fstT^HJuZ{y9~=8EF}j :[~l垴z֫E8oW7"vluWNe9[3UZKɸ={Krdn#7_Ǒ`.k=,Gעۭ؝mK/Rt{ּjmbPݬ,Osx~Q.KV]jts].oVN}ޟݥU~?o>fAڪn45Mo("NuYWJy?ZO[5yy77Cu?$W5h/;oNнޕ{Wӫ`Y.k`?)6wۅL>Yx󇅹t~ |yW>,,G~_7"Ri=\.b݃aw?4jWU͸'s 5;_ӳsT GQ +%ۯy[X ;y$y:Eed ?0$E6?3r *rN8"gj6Ӈ ;Ha]f, _szjϧ7xG# (֔E1nӮP8oB]l-!mwOj*ؼ4QM,|2׀OC$S`fP3[_γ 7G*.qVמZĆ6>NWTZV uymD9d?)gofMf֘ž7o}Â_xj<'jIFIHP2.v3JV3cc11Jo$NKa^Û #^+{:#ȔŪL+=o~mX[GĔA{L_ I!юPԤSi*~^xo= 8Lj:Lc1zުoCodgHd=tc*4ҦQvk@bz!&נ;}R]vnem#Ic~#2s1/ZUg[ĕ_$*Rt,-5 eO)kA}M5}F1$NJߕ;DՋ(EUE7E#@ugso_ 5(jk:ˆolM4*??g㕭W~PwDD{rt~vHlF8|Tnognj|ԍZԷG^7|o5(gi} +_%D.'PZ۬-|~Oɡ)m^k<*,oUOJo}=k=mqܽ~˖5pGw H#0<J;=2'_4oPT`͛Ӳ>kj!<z 9@YU] lkhR!m0R}Y˯pNklhPI:.:2>(5Vhr~57Rqz¢WҝemYJEٗPBN[y zmuib&M 6*Av諾>{>KH}oZL5l5`K ?}f8Lze(̄SKӜՊҸX>ROm7Jf/x[,uSg?6XMtdQpE=sG@ t$­7n=E,? u롕MgvO;Qײbo +Ft)jkt[q/[~o>}+~h]<́r\A|m%,27;Zc[%wzftp4G!OƺG^ fO@\J8,Bw X-] yIs9k.Pp( [6+~;ʕx NTXm|3]F.RӅJ)n=z|)#C#\#Sq6;}e߉|TBABk9:P.Ti +↥VSofG߁8('3 Ye/,iNkuHP^"Z8 ē|KcW[5Z1>ZRh/;nM3a)GPT'~un}zbʣ͙%dDU-~ֹI:jfgk^?uJj̓rق Zi+iyFQzYv:k`Zo׿rK4Vbkvu0Q ӈ+s?}Ţg_O?pV{_f3gRVN\+~%6Lʫ2(k}XҠk]E=XS_.׶LGLxCm EC~IS㑎߲Q2K5wt}OvskkK_%ҒvgHgPr'8:[9%n|r-6A+(US#aeRvY0^V鵒vQ+{_EuZ=riՒ4xEJ  j}2#8'cd`ڝJN6s{Bun;6i-Q[6,6$Xz`|歱mRm9?悗=i\G7ڐvb2 =Ft!)p)M x;}tFZ^);j/AL W)ԌE~ 7ƺ>3^51C~u<:f]$]<=^J}DD~TI Ѿ+92*sb~wM$^4:6;EnhO{ă@Qe/ý>]֋Ou̴~I^gZHI LMI$Ar+P7bK| _Iqjb=E2%+2l+dDhĿ=S"imKa9*i6E^aZf INZth.0Pa;q<=(X䞩+ƶkz}bNklw6d^}#үkSBSם$oNuNmb~|ZS"q8Ok1)g[ :o[~n7zNK(ͼ2, y4l-Or`T2J,@z>OjJܫ#V}41Ik܈.5\݂eifj.sy2-JrR>OYnMNzB=a,N9Ly*6/i5eY_x? _KC _b2'yV^ kT[ Ql$24sIƹhgPl 5B%,RlA?r׷JIbg}-Q2jb<dфTZC%jd5-^Go!1{rۮ+[΀ p~a>Ƨ/@b#tk޸췈Z|pKr@4^iu0 .rFH3Cu7y)Eߵڮ>"F0'y 9"Z "WJqvH|K/{ݙ@4ݧJV:ʇ%jKdKR%zrj ?rGE[`Kmd|MOBcs z5S/''7Fؘh c`8 eSlv=\&T5ZB6yczWAKLxaK#Y8"6gɤD 5!(ҿnس6Y8Uם\L"BHUu)(O.X:GLe$ t1*Rb8u? GJ aw_ +e&3pa.1x9 ﭱD{.|wٰn@(b[Kºᦣ*'m 1ckcR۠=%Y:^h^I𢤚5;HЛ z@{rBptœF%+p; +U:51j\>LĪ+0 y6߱Ol7eI8ih52V8.-%<@*c/ ojW3o%nXZr6NK!䠪Uյ?v<-cv;֫F%nGLM;sG5{$-Go0엕/XU1*4{ GV |{9'ֹ.ղnpYb٤7qh Z?ĖR!oC9P14z͏|Θ^b\}œ X4 +4F$Xo Iўg*wk.iW%~"Tɻm)~<`i$fW=t`%Z&jB[JEU[TeUWQ~r:o +]:+ejK6@&5v(;%}R/"ܻ')c5=iτO&y4 +w^JFS n"0~ݝb߫2^"1ӃܔṔF~b-\%seS#Cnkej9u+B`Ex)~3Z$յ J1zܭQ +QowuW¼mqm-nGHdlEU~WZV\{?,!GӟO(,$T";F>{rV"`ch"A"4?q?:b'vxSR4\ݖ_%z[ޭ&Z\cjuN;°+`HY0]ɣiϞڈeb!;p귓,~삎v62B"r]J\M"Fa{2GTl%yj[^D|Wda퀚žʮϘrd#||HY W}jJXrW]-xwmqZ4o;A< +]O;0ϨZJ:.o˛3]щ  +{ҳ>~/'j5gMH^S|ఋ2%x.yuȮw}<ʩrfjQ5v%Sy]buFvq7X_>=z9V\ a)3{  Vė:c\z6i̽~#N8KzLYOI yTa"tdhFG +W~w谖%em^BV{xk@~$S(eMs3Jtƛ_Ȧ!u\ոzGB.9TEE$xu0f;@RPRս|၈nBzivZj+3N4| zc==4&цQPcCb_{o%ay:FAB}҃AuX r$wu>s͢](0;j4鋐R`ob-,haT yo| ܂r*Yd|Ze e^E"p/ϲH9f6^T&qla4M/@ $ʗedO: ՠt$~li#\Bf>4Џ=XY涳dR4l!ө]9Lz)* 5P{ۮӕw~cZp<#$C[vU+ӫϠdNjrP٩c,Vņob{5Ñq}_A$PgK +h2Yҧރ!xMU d[:*`B?ܺ.!*5``fv7ѽtִL!NICNV2]@r _ؒKK/r_2Πxti{TuOntr6z>OWSC*on)T:E\q6rj\+c\!TybU]{6n~[;^tw ͖23->rj%ՈSjM:?k>/\zt19Y7ŪE4v':$"'1s_ 3A쀭[1gIu,b76vb)90d1Y ک-E!;aM$c<2⳱2ÄαQ,6ϯ~6.CEuHLct:v(veg61}^~'mR+|w<ɳ|{=8䱱ZT:Spz,ޫUħ{NO\ޱRjwIJ ËMk]§{<*f,)rk ks@eoډk #9J(rPt;켠 $@$?萺 +vjW;W`Xl,ɂrx?i*hKަj\-єBC@<25:6z TmT{2j$לYT\`Iؚ_w|s>QSKiz$x%#( $](^lj?z"ERo7x,Ż5z[>eFkjr'N.`w~):V02hrx PI|"]cgԹUΒ =eQR=l&%7+BUB;P7}/vڬC_.@*?`;)7 6 +jsslk,0UttqDDJH_cqG?*ANxgS<qG,1v"k4I3TdMc )bx*@uO@-nYeM d2`iEџ%t0J~W[cc.mMC9#.TghrvW8@>6=NC}}#G-GiH>G ة{G8cdͦ)WoZ}v_ĥ'#ro\ɥj]vlsz&BW6adF#gK -I}5skro~*|&[5޴%Uf}aHW&'v0L7p\Yg=vK:z&pÅNN>9.7f1:bpѣĝԽ5z].Cpz}9aȫܕHJ{ޜEݦD5i7P&~hEBSEx,;6OJ#2Q@ɹ0}$~E\B{u}]*O2y +C~.TxX^Ÿ+o09`yN1jvr։?{ӻl M+WJQ7*=7[-Q59Um?~aȾk}Շvׅ҈ocϴoNoj/=>}s>E\qE +h>sֿ}&|\ܸ:Rf@-=VatyޭU=&(|u%o u x[Y{3L3|o_6o+<8"*gy;Χs>z}$jMXCgK$)cyA宍PoX(̩?* +s\!\yb%RHnwAݎePڶ^z5XP">?I4u}cgu{iB,/$iY]4I u3xPDP) uE۵I|`VMGWA(pJUA'+2!{Jziz-/|)f_7 lzCU+E|Fm=+ȯ{}&$t\JH嬩Xe=М){'Oypz +SEq5hMSbשf[bXN+XVMe{41t#dbxj+pf?m`/l:-ptՃ̐ԜHFi 3mmDR2=0%E!A⽚Mg0O^SK{$?]Ǣ|KMRq^yZ? ҿkÛ+v@s"u`=]WrM+6$>a&ڽVw+t!Ssogk |)u͗-&(wVUr0yÏ-25d;=h>-V2.1au%1-Meo0{ ^A;_ihau{)|u@CГ5H}֨@7{  \wfU eީ'ӽ#QQ°pojvwOͼ?ՃSl^a}nUZz3hSѠOHd'=fOmrc|he4V^l.wE6D4Mh+4SFMdvsSO'<7m:9;$X-Ȳy: A JeLd%nRuX8*aa:8!6J6{؜VVC 4,<[{:kFmwP5h?ofϪ/1̗xnF Xh!:ƮB㠢brgw]y>,-IkZ?g' j8ѥ<;> fj+pPnFؚC1+)aߢ>Ċd_/龏|z ơ0 P u@ߚDeP\7ehnuDΝOL wb>Iȣ&[|"Z?ܸ:zS[HYUy0:/l:qڮdh^M?ݫ5+mQeX +0d+ݾ[oaKfNQ,J.PT]Z]J6uj,?HjxW֌ O8q6!T_^a9IGXzl;A;:n?Zv=6~Qd .['J3aKPAWmUz0|a:LL3"XJ(>-wP?9LZՖɊ:]$;좂3RMnS͵ww7v,U,BgTgng˷^#DL sH~x9 n]yM\Ðp,%{O[Ƶ^D`Wͅ@&@WkA$`u~Qպ=|w#)o\6}{=*f4y@rbUC( ,p\fq %{e܇ 'Y>`/TGv}7R)[eGRr$}3&br1&cNTEZS_ ʄna6m0g,rptW^Ua޶CZ x^ux`a_O(rU',w'FjfN Kўj~03U*;wz@jK;8֖W69[o_|CJW9ɪ?^O6yS$jH96'A{?UdRi~ DrJЊ/;ҩ=;WwVܯqO8^$ RG W\4S2f:wh_oMU'}3uKn!z8C냺 n7~!߱~s0TnHn;3 ]|:޴leSsdCjIz|8m#ExDK3kIJ;f;Z!CnX-m/53D|neӊ^ap+h‚\ڭ>B 9~s/KUx6|~+&po^nkOϳ>YlyeܸA~Fgsdv ~@l)j6ΩƯ\M^e=wޙ.VpF3yum/7raVB:%y؞o`Aι +  C)#*Pba!VJ`Կًzu^,~S3U'dAe_:R;U߹:4{-d9g DD?=?ZۦtWWx̮ZUSx 4x=.EHJi,,m% "H@ԝDWzb׳iMx%`ɴ<%{:$#\r!I~ˤ[Rg/`Yу ݍD}9,pH@`ex.,~ގVF)ѧBHɓOY1qHC 䆣[tC&zf|,F_<={9U1hفt&(:"̏uAz9('9#Y8;zM9ھu~e68Ft֊G{"^з/yN@[g NeiK_5`5!JI&"賜ٮE$I -. bF\? +y9wML*ABhc3?l%R~?z*1է Ãu(4BT9Ld J S-?|h$2Lj޲c2E=d uKTֿqhVWIbS? ~<-T+oSXW~|u;UndKGuV(U< 2\:6Κ.䬒Vn$^D2̭d4MQ@HZ(&~e=02 &gVL}Nwh+mbg/@tţ=uw"] 4=(=;¬h{;kW!ǝ.HEjuGhn7LҐqr4kE FC.+Ԃu}nEjK;qt̆ojpk'4;0N[)ǷX8^ +Ot?$lu[E !We:, qI|ߛ$h@0zk++U^'$p/!:FS|WiTKw#0bNlX;1.3)q+쭷ÌW&IԦF.gdNҧY(Y>m[xak{VKR8 `{aB`pT$Aooo\OuὙ +7l[|aP.CvTvV~7QE=C>0uyAW]y +:Z?06|JZA[7wlq7.nR Ƭ`׸|>{q*T7sϏ8cZ֒| q( nn +c>LwL-[:0uR8fڊ?HdPn sʹK1@3x{)*ǭܫeZס_$0a/?ٮ5Os7ƂnCԼG ^B֯r,,) xҧHrS4G@olRPhc}1\|*`FH|)v8k|}1gxk0I)KC;M?h n8-b9s3yLy+,s+ϘwBTk1Lak>9#z _qi=}0禴F~L3F]l3`hh'lsssI_ +uDJ܍ѠtDÖBoH>a3Jur]kFpi 䵿("6 'yZ??08=U1w |^[4:äåҹEXOfj38uF16XgZP;gm!#B Dvw[͛ KM.4#;N 9e/ +k~J|Q6z8EREb' NSA]>{V$?$ͮB;&ΪflnG\J㴺HU>SuE#Da7cLrH{lx:knhm {LbN̔5Ku^cu"ݼ+V! ?6o~f\b1uqf,K "ѓY ɢi"i/v91UQvܰ@v =l蔻Zru4i*@żL<Q(1Ću˟Ľ XIQH`ջ0a(c+Z;p~nCRۜR9sՂL Igs-w; 1z-Ë>Bc[˹PY| ?H;=>R3|D ۿ=D +jAT8]bPU' e@ 4ua_u QK"֬+sSEQkhM;ҽu)9Jp}=hcK̊bd5aESI] jw .L#[uiez`:^-Z"ZwnG2 -5^}5Xn=\V1;ծt /^qëUKG-v!_Gr_9N\Pm{^< i4 :Og-iYӀ͚]x{sfxdc^!9v)֓fg5'˽|.ݚrrpb aI} lj:7M/%wRDxz8DӚW)#pN=%ofUE>kF +  O>6WޝS;XZ1ۓRCv(2&i:Xݥ`u2;].؛1J )oP*sHzجd3/5JdݙezИr/q*A'dBܥ`8/9(=dm V> [vZݯ@N@ж#/MQ jIL"@A,B[ivXye$s`1g%r=pm' WڀH'ܚm}[1:&.W[]?^zaMڽ9(`6;_Ojc.㖔-$=X3װ mq9YٷZmhW_KҬew9%/?bʳׁ'<J]\g1{R77Кδ\X0~L>paˋZJ!;k WbD"<1pUu(dCIrwZöXޕEz 79wҫ|9|?:$-)k#Ytm/M$+yV?Ge?U=[;9"oA)MD;|IML N9E(AEu aSGy4>'<;A2 Rs {pX#w |  0m01a ۍ}z-R_ݩPȇ +ddm/K\rPvg,`~>~Qgg/P&6 s~Pao߭ב)9)s/cW[̛~2W] "=#qjØQz\?VAg3`,KfltI.|]}1@G^^<\y-s2+VfTfg | b85ѪϮ hT^ChD=s MbG~v짊LY Ŀyiǰzp?Rzh.X4#i9$Šh>inmC ]@zd3y-"XDgwbg" RƉ{L4%|$q_R@[NqLϨrFGx5Yk)̔gB򣪤QF8y» uulN1E|~[#Fc]6#~$*Z +=eF?r'l-(h*Rl!A')";e= ˽)l"`6'pB7*T5bf̋(b>`rP_klGQ0paHOmHg!() 'N›) , F繩uzƆh6H3֏Lc3Zjqȭ@nA3РvTnQu +ˁ^q{ iEm+B@_$lx5?e!~4j8sP-Mk\śm&z4qmYZӒvzM}QܧeR`ʿhzoɶf;MOFMK77V7֯08ܵ[é<-ao`cbT ;bZFWVUg2r{!MbrqW4KWiF*:Yh{*X#HZΎq*GmGy ˙-kiw\rE#&ܕt[V&xUBFVLp|$Lo.b0Krk>RG5}oC{VO܌߯"UorJ"6h{yĬDD^seG(fx0'04)zU& vHrKvGGc +R9Hy|*b&ȍrXi@A6G%i1%\̳plWj 6+NN^m,";Hf^a^$JfUҢjY_Qa1gƒQe6QKwc|z:;&DmOV^N0q#$Ueehʭ:;CcPl/̖1Cj`p.JoʢnvR\XjUMLz %r+_kPН.jC㠗ڝ/Oua4(Hr,w]4̀`@wQqv:һ&v| +VVxhK]x!$FmC^o%O6;MIM" 7?H$f-'A`ʷS涣awk puf[ qZ~:5Wƍݶ4%;H*KupT[Ccp(rf8:vV:_{D&r4/B$mKt&C8pPWaK/&ZylX{FE,8xTRI +))Hi--="(^{b;!}xcCC?"ۦTsnm#?f<`i$t`lwQIXɚg bwА/2w%ͫ0YU>`y  +endstream endobj 192 0 obj <>stream +pH#4LS\V y0L8čmx/bT&8Ƹ6OW&yh4tʪѺ"oP6 fVY|[rM ʞ%tiбڌwVIjG,o 80'MCaȧs~?kw>O,o)3d=A_w+2A DZ$^/]@rz9Mgw_oNq7 ?0B9jPhD$nr箿FjmtF6zP WTtX>̈&8_ƮrC,nAUh3m9 +k9DwB+gUm?$x"}B% Tuח^OF58sJ`6[ ~>Kh䭬!E;~sn G`[jUdePjm:Ɲ Ps=ǴU11,r ]uVĮҨŶ?DOUT9O '؃#TrsN~};rtBdGcY]| OӀ*PaŅg݄ł1)Q\,IkN7 Ѥr'X MbqT veOF2f7Q[fʳj02"V?\b1 bE/gyQ_b^)u:Y`]fИ~r BȉHy}i +GHX\ U+S|K$"OO+ncE/e [l!7 ~]QTYJm5ru(/ۛ$vem0ojk؊F8|vvq)Fy/͉Ǖ㼿=[9 +*V + v\C,?mL$&w^2, slS'ʶV"ko#a! +rAAwi-͢A`yH蝗oXA9% *Y螸zL2Tӡ[9:a":;M5;n@0sv?{x]TG.Zk:vu O(>f sUjq9]0PVALOR)B+c(s>jO=vUb8,[_Ƿ=Snk\ r2%^Y{>*e+ +,܆P'we3qI%Lc=vt1EA91 l($Z֟ 3ilkrlooL췴I=/Un",ܣiz߻7fҤ淖\qJ-[* g58_N",yYh(b :{C:fM/q{j6}ДtKrIKC` Ha T䆀lz*]5~ª<@~WSC59S͊a6Eݯg1HXQLTIÇP6h:ꈥ*748 P |$Wr0_8. ~YUh`S^5Y,y7MnIV2_0.fA,9H~*d!]%ժ{L|JgK6ɱsrXhHn?/ݫ<%_FsWσ9Yy 9bDOnk-Ɏ;G*ylv4ac6ڬRb'Tv}+ɼ!LT:9f#@\†y0SnD5;Y0 +}\d>"VLTgPY?ykVo$:aNǍk;@1;AdE*o8hMS WvE +W.wGDl*}YHT;$ǚQSɖ#w0LZ'Xy.4uUm)2}&ׇH7i F֓_dњjA NCfO_$ /\rN3&OL[ZD|'b .]:c플s^0 +H{Ʒ/fϗBc`c$ШfWҚ+O)U.Ym +>lExCPceQt"5=T羉Bf[=g'#I4MS'"E>e=Kj^!5Z=ql.CCQevƊ֔YR`%>j5[u]C‘FHwjCUN+[[ Jݱ aH!ח[XB2tKW5aD6+gV<__\ʴ^oF/W[5û,{"Hh#'^+/Gk~?bfz7$/ER7 U!퉵3J$CK*5SKܪ}. QyawZdx%tkύ\t'Q!9߼=EHxΤsXq/밻xJikg4.vS*xH;1ߛW2~`oY;4U`n1dHBd[g(x)rmX𔓳& mup:2j#iv:~8r8n(H7̌~\iSaK?&bn3{?yVm,rE'$M/'[TCs ;viќ-@VgȄ17jh+ l"`7;Ս._ȩfAXfrp8~5/KR?zHnlIV+MpʁQ4$ 'tj];%-Q%}䨋9(/=|@4z{|0<\a1œ_J +U?KTg]U"y&LKj +X~VeoTxR=Lc(Yʻt +sKUK~ok{W#W"zYO-HbbDNR1)`\]Q߾=[>&tOZQm NS?x͍rlOj >\9X}ץ3ُ>F́ +]պZ HZU\¦6~g.=+le3}̳ޚO_ܧ惋ɦKJ=[-wsl~'_ahDj_YC7zKu ֿdvZYXlT#^#k-̨:¤=]uU=GHy`qMmn\4ɴu rj[saq7*0 +{ +H%]zJJ8rZ^IN +[v/!݂Y߶⮛g3hЬ篙Oz3OB* \DཪPpLzm =:}ܫlftD} zZfiQp" ٠dK.xkfź(#M/G~Ua_", /kK|s~3֗=HzU\o3QVަj;]h߼;2gM1 B# ψ+ptujL| +j_$>βM2AokpZp{9;:{8S[K]L(0| P +>Y%-;CvC/;I"_BuU<]wWz4RY##Jpضݜũ/tz"L:pZ +a~<>HX &+KAHzFTtDM{PPGK-UӡZN`Mwpx +㐌yl>ư?X&;`}C@K1\fABDvc\!o5f8 cFdC Kgl17._Bsz}+M5ЅBDz}Lr;+]C~f0{6mtNeҩj}Rɀf.P>Wrw ǎnG轈h^9mėKj)[F'ԻuGxO2ءhTt@O(b; XтZ])t)ǃH\1OhU&mv4VĬYcGev.+XrG+B!q:pLӜZ+Ft*Sݻ[CGnZ@ll!N@ |Z҇FJ3FpHX1?MMQp+LEOlΞ5[O*_>}xw٥3i^q[Δ X읐7pf dVaMEN{**r(gZܛI%˥~ܤ{9,IM7o]+ժA`ޱPqj߀ Nlp[eA+ }VZl^gmSJyr8o~7BAIbU=MGf>$ӲQWVLsܰ{X*B<Zu,uS+и&en={Jծz'8gͭ[v%s|/VwwO/ٹtw}-{A}\??tEGIwd|?w VxrQ5ƇbCm;9}lh11;~(n(Emq]3q0p3TeW?nS$YzhU9Zcsmڏ\e,}bz5UKSҞ}F*8?z32y%ZN.s/ -U{%ܮ|, $[ʤ|"K$_WO>> +7k>m L +r2v&baJK_k^:6W5Sq?k,Y MVwʶJ"_;oyh|rh|Z2G)1|c_!۔boy}k T:9t~uYX9*ٷ1‚^m[kc .ߟS߼=nҋCckrt)6["'k'1?$~(&nR4bA!R+=m:V}!m%L/ 2wդ0G3dha[vVk*2 kk"O-)]G)L21ܯ&MV猻:3y5_8TE=Dxۧ\][5g7h.nGpn-io}~xkollUodq_%;sʨj<[RFH1\s շEm 3zLlz\#\u 3+`1<;G[1YbN[ku3)Fhn$/Q[4ΌkeVqD= -M_+Ky#{`u`\rca+k[4Թv$jDWԓILRS$:p1R%I=G f3! /dQ]L ˹=N7~$Y6Z0&>]%=^Ysh][('n?HK/]WAPzVߦmO8?% +,I?1j=+\s(n.th~ލQWAݢ{_"`nY)?p٨nyhQudm8_:OcIChY38Q$cWϛS ɔǀD;^H}-RYtpQ[-j=-*㞵t~ztA-*W^>\^d.y߿!VXtgv=h*sYZwl{ƒ7k+іP9?6n q6 MUlR_dsx}<+[~Y~_究͒䮬]L.GCmMxt*SXK4;h[p직w~l{}#c6T*Jfx%e{XXA7pz*C> _گU%8pv]f5[3G<}}sb*<_s%g?7iߋnz6j˥S= L_gn]>+IK>;;4k ߄Lg|!]_8u̷.{evYi "N)U/W,ԆM-n&*/ϩK5ud9h{S(~RoDD= U*5[J XNR!Ro/C%&q'"ܴ#ۮ$>ȂrWl/'%)Wg/%! RaU]e Y\;Z&] +fAC!PkH']୨; M)̲\]$f>dx6_GK ^0ˇ۠ӅS2zV'u`p>3\"ZA-exW+,g2_n + +X%z1rS6?Z!\4^_C|1)ȿT7{hFTv7ft~dqvmmqOwj 9Qwd\W`VAh/w R,'i0*?yFKPy^mk3We߇;bsS8gJP%`H/(JFTEi-<ݰ[8|^b{tuK=Ϲm|0?X$lt.SGdg'ڗ]@XCG̾i +T䃸LS*`P'wLun*Č/ܶ\*.&<jUq-7e*vm9L#*N#<[֥ +y/~VO3IʍROOFu2uYd /hо)}^P|6/.,. me"Nla3'}}b/*Q٧EmvB2Mp׮+'~|2 $4\Ey K2 '+I?vQ&xq>M\=sr J֊prj +s ac>q Qe~DU?Tsӽ~ܚ4;&/r+0ō7+Kt#д^'Ϙ;#e_7aȶfJoaݑlI\2Ta.:UW. ;ӛ>:+tx_?oܫlR_~GBJ٬tF\qq˜d^\< Q9r3}fb°CFL_(t^q*w;]!ĸ[L7LnLsDqPv`*gE<>|'B" >q֔);Wbymort*j-#M}I Qw`V~NZXv i}Z^7 Q3$fZ4Xh)]G܆_c +V7g3_}?vHXFu1ݒ=vnHx!.`ͰW(%zD $wM!kĄ՛<6m 3: >U|kZ(%ʷzGO){ y6i4ɚ©zn,^lX1ۥFՆXG>ã#کT UDU!*3yTC4?M>5QXZOVۢV|ߢihqսģF8+_"P`jœ1bWz4ֽmHBvsY9fe4'%wTڔ+|.D"ӇEŝMyj*.3*[y",8@ C f2refPuSveB28ml{:ܞ$B9^ű-Q?t5n7rJ疠pE?q/x/LJNřvD;1IvwJBPINe_Aފ&c?K7yE5t\$%Rc2=Dlq M=~JdDcspϛ"]k|1>YSLfd'ϑ^k(+@ $"l*øJҁhF܈c\g?ِIRE)˷J[@_1FTH-Ⳣ%e]&wT-:|Ѹ w+!bc.]FWQYdXT3t&ʹ3S|NR hI[{ZS ڂnyW($ß676Q,[Un607jJ wtki'zdᕞ?)5,}Xj<>gfNTtqJO<~Gٳ{]s3O({QZM[iye.^nE +`7S?u[}>[F}kr% tMyr=*>^V +voXcu/W≸N^PH]7iUlB`ﶼ]]Y1ӣ3Q|,3b~[Ծᣨ8o ۘY5Hըٔ<9 9R8>y$UϵkZQqim̮B9S=j8Hݴnw硐35 5#kڰ +<.Ls +6@b^\u2=w;li 6\%j~87:4b& 47оP \uF71ٯ}_KLU1"u<غB=†|~uBW eiT#hXs’Q>K~ɛU_rVqO4mc,͙`7Tj[8G]]Vyȭ2{<8vA,]ؒ=谏|\mkue69='b#ue\uך'GM[|Zۺxs|^9CIkloF Ƕ'od}qۨoY IIgt4Ϣr-rv<dn9c нNw!j7]=:ۑ>s_7W &cG +^3/IϮ_M m= +I!%dϭ4O7B<{VJ4@dh2lb<m=OEtFQfX Vt olCDNQ{rf}-凉b}vne48{vWaAPS΃ID +~_{1)SW)sfGUJS| s~>itIoH@IH#Zo#H$W(zFF:[9*+Oe䵟AC\Upa@oƩ,jB5]GMP6@m^Y3ekgXrZD?`6J 1]V^} ]2Oo'5MC:>Y嚚"c{ +7;xUA~f(U4_h/I:ь,R4k {}s5{'+XvT"^]Ĕb9=h +{5g%},twmg.-9%ww.SA{Ȍ]YAx9v^mz\YpI|xzK9iG^~for&m2\?.LfORF][DcoN ukA[zpEaDŲWQcJfxougv67rX2$OvpÜXJjPzHXpgʺ[=8acz5_XM=VN?Τz 9WЍمlX BEg-:ţz ֮c]n6ݨVCRg|ir_DNk>p59HFX-wyP4ܼ>7{9\lF I\ܞ-6=4挗krh:B6d$ltjf?o?7a{*<3 }醧9x38ېKTT0fJܶafܫ;90R݋0sD/Ԥi{]fZ:nP4u'&׷ƅ +{Jz( /*B4i/;f,Uۜl}JoWUSK)lRښԯXCBm8cƨquRMSy9| L,n J0؍z#1mP,Χ]UӸSn j6A,:5"`!ӌQw3 Gߵ޻Ιѡ-ev;RjiuC+Nׂ2܏C>$ӓn.(S!>pʞҁ +/̦98D^ej#-L1:&w#lD|5gt:r'^\.@\lo4"C'BEE<7=圵+N mwz Ȓ=`mNÿ}*]t$5>faܶѥ;(2@T + +ĩ+Izn-gz;e2cse>gם\Ccwif9[g rXK?~WjĿgs +A>xWE氳Kb _>FH.xԗFHR;O` O–ޞ7rpJfk 1捳!_l ݵ\cIb{ ?%;(OvEjĞvOWؚy)T3;k8Mܶع\|T۶ךg>i뛦;Wz1Vh95)vmԠLhփQBc^j)6&ZNBG[qCħc(|oheiȆr)'< <\qCܽne{%ԻV՘+`"+۳$ЏCr7f P4g-ƒ0T6|iqa|v S˅o|\"nt*قLn*[ryxRVr"PCŌVxS䵲g4H4'O-y8Ӥ:!WHTRwKӌؓW+<;Jmv o _LDmEtXn̄W_/[k41lZs%OFRųw#/4DL"|-u\^V#T5ׇ +Dze.TK0h1U\yL+S{C b&bZʶcD*Fqr^3PKVX\) -~S=q 'Ѩ4%=5e@ ~ඏAɕ6/6Tͭ+KUj/Y)_O+#*")>rzÁkWW dtR:A5EBU˃z"9sERKi +%^Fs@~ W@sla[dƛQTk'dGJ$C,% R@Zg6S%Um'@WL |< #yzy;^ya]gK58ze'_ЪR֦y CW_a{6΄Ǽ)S5+6 +p_"ZKx'gQ -'opk a(>m䫨7hԊI&',~.קNWR'9|i7397:{Uo-&Tah1dwE77L(ɡDm%\jY;'EKrW'M{\S^X/'PҮ'#ڔx5C{L}؜"mc.7!FFͬLD%ryydPgN۲>R#Dؒ9lq>egoe@嗚Tj<{^>[U,lHUz6{:1VADL6aW[ \A$9/Z6(d$ʃ?6ɫtZS@We<.퉵]CXfYͥOfއxNZ~m1/!OQۧ3HUB ǭ5A'[voTj߼].'Ǥ;Hkl +*[$<@^2#Ғ5Ǖx74yys|`GcD$?] 5^ !Lȵ_MmFz;qtg5=m[uKh&l.7!vPͥx1>e{r?ֆ*)DJ)v R`BO37+TW\ VIE8UU )W Q"jeM?~:?L?x 8ΆD ZVCIt_t'!3h?D +x)+2}X|2=cb:tT!f5kRgEҒ]zl/Mj,@ ݰGn#*&2?;)+8pWI% BUzݧr+?EN+mU .t`;[!~h]Ǡmkޡ /ڍ쌾}IZ c:~908$u>.fˋsmLޠ`=d +{ 9 ƿbi4oUTFM0%c)Gy%ev6%haWnLOkzO#uEf+Xbe4S+ŜrggɛĻҪTC;jzӶFIvuo/. eu:oVs_/5|LL{N4ad{ +]NH*ECY,aYE-.ӔF@ lKmg-sNUoIۗI!KqIiQ-xDd4))y5kQ/=tO8!p}4ˎA4߰Rʕ5= l zW7ß12iod%*s_/0ҵZXi% )Z>2 9~%^f+)e7,mj'e~{Ai.tƐtOb"]p/=&.ҩ\*Ir^塅gYy܏d+ Vl0SVă8h"U>G5Xf&DiG(,!!tk%OXxo"ϑ6.oTaDWJMq,riղ:Vہq{6G>P2PHr_7'ð?pXpøxjέ%$(׻#vOS,4|RrxYv[Q=* ~P'*PDATm */Qɕ?z{r!!vi iwk4wO +O>A=p|_o|AZZVYi}ڶ=č:s~|pA5 2?vOP9lz0OCԭg89RWf֭/n(}+6܃P77*O~}zF]jd!s0xG[$Z]DtVQLϞcn+cLȓ+Jlzj4qo=JJĦICaF LS +2S42NaL+Afpr w$U>Z?pSћoz\HN^-QQ8e6(UZ5p!ZuzA{eחiV=h.o㶥pV@ڝˣ4J9Tk5BG߼|J6Ej&U|C΅π( #bcKp J;iS@I2ՁʲKxצ= Z}BHH >=:fqVz{OpbNko9lXPf].FB7`m7[7:{'U|N{v +<JW/S5ߟ6m2Tܕw7@+0|~͑U1-?|{O3:3\-a{U4 +!GP<IɞrpIeUn#h'O\ZA\X+HbtwT߯>2VE^4>=\MkHzS7(BGty wכȭk.dBȡs}PmIuc'&,({iUI_YSЃZ*׈7Iz[y0 +;1dLmD5GԨ)O4SUH5z}0d'^ +n -Ҧ=k|TCπB 7c2."Ί?]I:5m,=^^JufѼumr:m* ѷc:x`a35LjA&(M`/,.a%KW.A=*4ὰ6".uN7W<]PIVAΏ7.BGʕjy&ը{t8镯-eR`5H΋+%t*^â\N;,:΍J;FBn͆oh51Y-6:l+c.^o<|{]p3 t6׳ޒ,#kv ituSpt_rPڨLo4d.C?<}h!Z;M\SΩ\ӗv Nw&@u?\'_s4[>( p5Ҷc\dMb<3 +iϦeU#ևok{Iw bٹEu7Ծ `~kϼC|VG9(c}nMޒ]棹]a,|4YoS?R^gS BsU\G8-rqRPgáȎTeBM˯2jvhv2X{Gl >ƆliY>H *ȟe _aX"6LD `)cy!dD񙞂n_ yXW`Ug9嘫( R 27a$?en?B[#o'vlw厊व/6HtƁpϾuCBSء'[Dz{ǐ|k KÚv-kVr{hÏ4l]M'DN-:YcF9;5vœr!7tͻuګM7djI8[/X'1TaR g` qgH=mw~O47l2GfI E7v!(uvunKެM/OD noӂAFuM-jin;ܦ^ }l4 bqE>;bՙ#Xm"c-gL72+C8򆒌nMn4M8`z$}F=X8vui\>8oL+mi}nn#OyPs8j);ŃT&+f81<>A]T':pu[nWͺ6x6~!?ly;yTK| ,Ы- A +3[Rb."'+/=qsĽg~!MݎzMuٙ8CpEna0J=" 3{NjѮ/܋WUڡܪF9T'?3Pg= 7q[y>=/wtb/ǣu` +#IDDD$9֜ÅjP|1 + B1<w= 2f0z?yTt~5# PoeiYr^Cm$:IG]ȷϞd }}ܕv^EȠOn TV/tE=!?Hjd/Lؖ4:zFІo6TTЩmht6LASV0=aGh?s9w$6z"_57׆ϧ5AD_qx8jTi;u d$`ӳpV?E#?ـ*;vH߱} 7UkZYN̤h6@) (gXo.?HWF3۞wlH+W(zsR0f C|U}Ez<>}b,WSFT,q͸Gt}ϢLeVR2|ea/W}38ku~bQnNZE>DFc(°ImjX%Ϊhy9j5'o>}NGPÃ7.eR+#$rlTjqE-\..ay=_;cR\tn8hdž9MasژjmqFTr>9*f[-c$?bƱcn CMv:alֿ 'OV '{B7OL: _]LA]-}֠Aj7%SO)ux.8;$G{5c4F{s&@ݹ0A GooN4?Sk\v mȡ/,ɈԪbwHz4ՀhdjjlN#"[OdS{ZkŨ4mn{8NT.FȜ32JvS^ΕCvSPH/ЁUf;p +aenn߻|}طE#=?jE,lxIߟ㦏 IXlwmu!Z+sVLPT)?,{ꕾ!1'ћ K{9B\8Ql`- ;1^w2ݱeT,=UK K hÏ7.m6iTOrf7]R!Y%5pݵޗSiYdGrhvTob%֪Um+Mbi=2 + +t,BW nv.2~\ +߹ dQϟ*'~IZ p׳1ٴW>u|5=G&|`swUQ> `(y0[xN}gtk0[8w~0z{2YfI^sZ݆v/GG + [O'Jg;`+B V'Ry;hqa"7Ř:>U ðB57Qjk~EcDf>[snɆ,GBԽAkA)k=+M_ud ,MW%w5 +}zja؊A\@6\&Q/܅BAaR,|uǰ*4PZv΍'3;LOҾ:Úը؏_4W-Vu<4}+ ?ʽDnZ";=[0D +&+ TiQ3ԃJV˟>;Ѫ1]e(W,-FTK }ImSJ\>Qo~ܰI|;ɸ8jxcn +.ՠC^|F?9YҰ5.|Ҽ%{Zp="S;HǻS6)7XЁԊ-IZ1sPX縈79Dxg#57GGVr,Fa +5 WGm +ZKiΩN>f81Rk ܄ӯ++7HvVzqy4u#7F4IֺY3(|Ur{- iJUSpr4֨ [U[PڽUv4`Zm\(`g)(Ehz=!Btq7_Yu@#|Ky_.Ъny̚àϊΉ$ZE i<46RN`?$~Q帝i{zv' XӢ>@std?\!z~eI!2ّS rs&FˑkOVzAϴUڍ*.FB\ӬhVP(?7U_0*u6IOL4~h^?u]:5NʧJjeǝF}5[֝;drx s;y#5˧`G.id=zƀǾFs~Mɖ毪e^Uְ!H)텮OO(L.P-a.J2$pxqKhGdҜOb[Q#f")y\p]%1}5Lea'#O[֗6q ƩM؄A + |Ƹ4onleڛ!2q|K?cSO6sAط֊CʗqUkZ<^`9b͝GgՓ *nY{i/A&: -֓gMeH} en'B.Q*Xq 51B96 HsM+>Y},DTpZe;bd>YkҮ䩄Iub磊Gٖ\qqg;s_'_n@\z]iPurC_z 4NDo8$7E"vG:@,Q(č>uٴ09]bpA3䖓j\uF^&Vk*@Qm?vP5j@壢PدGc^i]OJ[DKm<u6l]{:jߤq%BM)OƖ9'%ud:qTn zxj@QHWEERφCξ6Q}. =]p9N;pb'ouvү~\,hS:EfĚj2W^>/NTW _Q β*E[AunkPW;JqU7߃ +yk |#}kG*yFWD zG4T;>?GQCMxs8®(Mz[^fQ4 !?uЦI0#,۽B5 E0U5UL n8=3Ś;O~@> 7\Eΰ]1T>y*u|U-Ny l`9 i2Oج 5[QS=#s2xwRxT5nNتd\:\=ŵ#K|[&Ԋa XWy .9rqJ2kxYkeEDsɘ~~F '?{eN?JzeTC1<*.ywPԎjPuPD1y!E ;Ga!j=q6"E^h5r֌bb5V-\ N_K;o҂-Qb0W=F"h:S{|AzҺB!gکL @tpjKļbM:@TBFW y5 ,͡Ztw?ʡU= ec]gb0;em߂fpj.6h +"v&8gWx,g`FQrI>`G=FN +wn86s2A@LJ6y,e}D}m=ṯ/^kmצ +ɐt7іzhhۍ,6s[VXpVa#<[ + |-BrQSQa4z MwL.cD쪯+ԍR0wU|IxmߜyqN}qM}Kh]N/|\ih4'IC]zkpab3ZӯxnR]+sXlD3\ñ`t+hI>ҳed+ H&/TynfHެ~zUz=pj52\JA٣^JgT G|NoblWvma7Pjh3zCJXuguG7hCJ^USIv^5[>5 +W9 c-&'LtVүYl851+G5s6*Z,qjEQ01x0oʬIK|ҭrX򜺱8K0sl*7X<6y؍$]rA?ݥyMПMm?>=][ u'sgN mmw 9sZ_5*sQ4wp10|[Jn11/vB}/"-wiye=7hGZx}qk[NfJ@]~""=VK.lWL7pRnwIC9մٽbFoLoZ W\*܄!Fݩ,O8,ų*V.e01~}p xE㈍ ga=H)0=3nwZp?|T=ɤ`,Ol,ZQudco~p!jjesf/R|D|r[CVk1R`f[MI󔰫W3ޡ=u |/#}r֗#W)pgrs'pѻ;t=\'2И癌'~8ic頱=P)d6aZڬH-Z/Wt{V#C=}O^9|9!n_hNf"LR|/o])PP_ڣ`9z~PR{n/{RZ` Puy/H^wڰ>h*NXw-^;=}"@Xqɭ +$s@~6F.7Զ+87]mtIr~ֲ}xkRpr6tr A8^֛Y -0ˉq$tSK`h+Y3:>O]y5ws691wv66{ui3Ԗ￱)*6ɕg32uMudu=M=!Otэ^U۴AJn[TxCI1܎o?^k 3>,F&\;(9"W9טi*ī;!, +3CJ=/ M=J睊彭mV,vzU^eK霋ssrZƳ N&0yQxጾl>)]5Q[@goU; 1Vs}יfnLK*񇍭ݴ?TӦk(7MQWɯA_Evr`uV)ԣ5+:6HPHq2! +rEBir6\MMhZPQ]vV{{W?vf:7 U-T_3zBlWe7 ֮> rռOO->^ɏi\ݐZI-[Th"g2 A{"6?ִSaَώKy}PGz4u^Y^7Dac߲I_ ߿]dߣIGvb>}VXIi<"KQ"Ut}#E:{Uv6p?1Et{1rP2u=1u&B|eo$RR'Y~}h 5+:N[ʆjwt6y)UNlӦyFt )K3?o}|]UFmM +lƓ/ygqE,qi"z[z7u)z i~ɚN|sz>3R#K ǡ"&XЏ^KQOӺ ai]봫QAG{YX ɵӰa ţEן&a:&`~ٮ{S-;`Ӷu{*s [ JNn;:̻U-Y}׻:y$ū"ly/+'>?icpG*:Fs8?圠ë, 6߶&Ʒ/Mk+A.l`]KPz{ r b׶b?q?3E=DFlk#e+j +NEz88K[lחzfTV ­IH+qQAAccyfW* -j +LzeU]:Z6$QKP٧DytP}qJ"P `hx6^/X|fvJ* +w>oYF)[CQY2[^e,\ š/a'qO޷e/z EͭuJ'׺ky^i:(H +fzD(͌ xf.[>eBkdOz.81'L)7٫H/_lի4Scxݔ+kgc7{uا7/)&}er@ke!DR! yÇ|=)0t]3YE,DW9n='+<^hu%!Wj+s}é1VԩZj(ᬌrŕwPHK S 2*MOerhs4O +5yJzƟ$EP9`:@*K-ɩPLQk_g5MUfvZ7aIYp|Ύ"EeI)Q]}5*7]zuߧZOI5}%%f{+M`^QX#xEGb<̩ ƴ5i)R>nI\*ȚV]o' :`_)\TbpM0QNXMW{TGJJveޓ#p1-Hϝz$̷w=Š'm="*ZU~zHwH6#uyC@j,BFdsDdmm~~μځG=4 +ZZ-lՀ=06"u Kԓ=5M\Zp,[´ X2)$_|[W >՟z[U1qTo\FnR +2oO^I=(gnmJ_5A|ySwT5rM۩t;a\]Qsꕟ5oDaʮvz 37YtZNqZ _y_29xj_3՚HSzA9`ծ?rsrTN}h_)iTu/mgSYRsGn) ?yu;0Pڜ^N6ƝKwAVe -c'Xu{ o0Ӽ vi(\h#߉s;痾Ny% Tdp>)&2P}OxO+]>6J1Rێnbj}/$~Y~1e)=8$\Bc(xUUrj;>>q[H^iE?ʁ#NXP@TMYnïIZH0ovu+5Q3m*Y%aT+W{[ԙHs a vKSڛi*niUKm_^3h]U,6s)ս͉ c/t֤WRF/ +ڬs Ca|G8 iz}!8,]|:݁m|ESgmffCj +PQR>8"+(KeM >K{I{KY 0%^Ѿ;$\[tI旾ȭկ0JSuKR F<{xC)\xȬ7B$WVv㗤uYp Ԋ:ˬxԧYgtW[P#Xt<1mKiFRK H $*V$~@vB̽}%~ Kuˋ/Vk) y YTlόZEU'S.mֈqj;>ˣ9`~yAO* ]͋*6?Ѵ6&/$D|9nN!G޳U_RinΜ NT FxCc'~~U܎itGzt}ͅV;ik` \5䉦/5&*T̈\*Mg` y- +'{DG>n]:kr,Gӹ)Cג\#hD<,.:lJr}UZ7]ԑO;˥ϋGX9zwc릨p[K@I7A'u +EvYE~Xt}em |0nrjts +ϒRt痉~^*Y8Lz=σ|=99x虞nEQS[2(wzqv]&Gj9!Z/;.S{aEZp.թ 1!{g]<ԟNt]}v==NltiM]+wuU;r ݷ |i [#0} +4W +zk5cgJ;{m;u4^VZ`1z̅C{m^i֝z}GTS +޳V.JMر{9i>j( haK^QV[j1.h9௥FG`rr~e~`bŔK b32 BE;;U-9˄⌁U1kԣ_lS[U:fp>FMו +@ld GycC[:תOxeb Ly@moO]}BCB)vpϳKP{mm*3N!1BP16)Kor '#u|RZ}yǢQA@%Hpfo<$Xpܟ뉸wT-)xfS^fca+g8 G)f;O;.$q{g{.DH?I ؑ+{Șl {@v"KUi"FLZH6԰+Uoqf@ _U=6\ |M'avIܱF"@f)Ⱦ,kUe!?Ca{ +_7yOt t% ?LSE>6Da]Жڍy:>vsFhY(r¿P1IMAFX{Tq%"LҶ&[ !$/ FJz+E%6] 9ie?&;]w_n nݯ0Q^HYih +M])UNeݴ=D\p00Y-U`|9 M /=GҲxG{;(>tiDY{L+^1y [ZAvʜJF7Zqh 06YBF{fU/"y)եaϼ\dLM!t+QYpB B\&7܋s_ 3ɖjp0X SXPv= PZLb{t0WXes_VsCTgcd?sﶘn&_IAZZt[HJe ] lr ~6g^z-kJ)V";X_R5 Ne^ƫM?#Ճ9bPR7G P^w:JFŎҪS<6¡]HVwfY2-+v,F=BꠊiiyFWq/w Jj1zw&oa~p3쭳a`z9D-s +gжUemOtרEj5 <gߗ,=}+D+3ա=঒Mq`r {;0P<|P.ã*Cy"% 6i)o޾İ&tlHVQA +W`r(+v6iνg_>>V~mRP)6f(Ҿ[ R/tvտVVUoclvG{eGw%o +_pȡ{hD7sl9E%r?yDw<.F2qnm$Z9Nƾx:5ՙb% ;\aw!WFG O.FPK؛;w,j'''}o|vJ h'{ӊ^V;G;D9gk {N&as_m$0NWy:BUxpWnsC 8iSrv$.$x ټ]7=_h`sc(V{kZ8kjO{wNEb6smٻ<cufuɁ1Ԗ UtVm 6~–0{F-m6zQ# ײ:/r:f/ʣJ^ܘ,iq&~{YbaF'½ ? +;p +Ruo[/OK=|gsG7z4?[X'2?g_{-'YaAv:` >ӺbK~;&b}[RRdxduheKDD#hLA;4?iĪ%de4Lh:#\{rm\gti;&FVrc,naMS +_y5v7PvY:Khu}+61-6ljNM܆kϻԽ׽I;Xg&Y2u hտ비զԿvhmېQZ'vrAX>BY16'Ei>1VE3e?;dSpf<QL{kӏgu*ĭ,]x. 6ûTVOp6OVκ'_"?Ky#AsvfGn<YC^scuQnх0L~q>'NaWפgwt~ +qVq^eRD; _g-u/O;_Iwu`P=o]e$"w_+Z.8Q-={\?Dq{}#1S%g}xԴv2e[JNwv8+M]gmnKRxЏ j໇:Kb%[NӖa̙72.vj nF7Ꟶ7 3<~s-ؐt}w7YnK$?.153"[L䎝\7 5 !6,Uɶ=y#G{x@ű RM/v 4"8L\7ޟe_j.i4 +" DC5V\^vkc~)F\\T[tw1&_W!t͊laƠ7:W'Cp?^Qm+3K/tk\:eKԥ6?C݂J[{iit\ϙz>jҦpJl{B\&_;= v4YB'hI.WWĘ1 2)-Cj.pSϨ+,{jAPl ˶>h5}+. NX>.'8vA(`q? IiΎq}wuH5Ex>2KXQDlIO}t)(x䆽 h8ETh+ gJ%R}H'4i6١Eh\J{j޿}c_}uפES 䈷s[14:\{:DmE>v5|Ht@Enh-Hٽ(y[=?%ܱ;eoPwT^r_U ;5tu곻VoճRmU~XGU}-vKD8@}0Ij+1L -oK 8 +l2w36/kLN|LP~ڬ"S9K5.!ȗJp2^Dp6?sM ¨ CJ݀y*Џg?*._vYe0gb /oV?,<4SKv"o9Cu1q-ku.og_YKtoijlْ`Ȟho+7f r^}Ps왜8bCsstof~hxH"[ݪꕷ,LCʵts'*x˷.Y7lKPD *yx/K`@7լCnOwkuD sW%]6VTk.`GzO+fTZ¼91 t298p #^?ԕ!L,@[g9%SCҫ`vj'83cץ`tm" V7EUc +s>j>vֺI=^ZoWrAxEXFXڸ՜X\2-!ǼL^eU@r` +ړ`3gM 9&s[(ɘ\'=Y5v[St EXab73QCfɠлVd2Hxrz|8*nVF:gFh NY1Yu7U%6G%{tR7ubQ.ܬ'c+><ڇߤsRsw,J! T߻ڶV}aKUai+m_)΢j>a6p" +BnDly}"sO\~c#K<\4Ɨϗ mP.8o[.^b-bW|ߥcK:% Žwڟ 4eXrF vڳ~îvp}oCgZ3E(:[:)I_Y+P{kֽYyw f _8$6?24W ,y]ZYȖ2v R4wSU .53?i[GfͿ<{ q&-ح,7A[f8σmz_.@=뤮Wrήjoӛ/ Y% oG!O #YS3G_V+o_CڨW-4JOOs+Npw&c>av̠ m FosjsV¡ࢂKtTȚA=V^f/~t4Y9}A]\J@)7xpH_vQB[1_`{S zoj8!KfRк :D nYB^<(EVnzdǯu"PۺS|p5.f1XmlQZL-/\x{ɬuE<9ٶ7mfD:v6F<~ʇ (/ (=gt +!8٧]KwOjV +D%5!}gtG1UlŪY ۤ*tfgt31,{qqǠ3Q>z W{kM ,@6VѺ?:탴}ԫ6A-8̧ez'uZGG2.l~xU6 +:k 2Bn$:]xO[jLT2gY|l `]#WQK5͋ց3)Ή:zUBKZ;y@R߬!W>[NO_gƾç7_Ьǃa0s _Xם3Y.&ޥw5 .W0V;*=XCnX[7B ,Z*=cQX:})v+p >}]D!*hXoM%it@~B"KQzǸ}{ 1%ZzJkOO +^DZT8Yc^_miJzն&屛'k,¯EyvqeLGwKee圉)$Hcj1~1ۉ.F?O۞mHs}$%szMzNRˎ6uAtt1Xפ~>썟d޽CmBZC&*A0wqOФȏ(:ݼwWeg'~ܩIa9[p~9<9wiq}4LFuRG;Sfo;q77Eߵ.}M4 \unrdp_+Y79er#Ժ_<3+ MKWonY|{ǯ 7pPgfiptf~9i7~)K~KIg(D0'WÑǓ=UOYM}H%̹{v_0Iw'Λ߻ eB YфT-Si%ZY[sWArw6|T_T⛠3 N ]/Kwhǣ1K7ϩ?QLN$$N=7f9c(Qzc3e~oB;lθxc6̀pbJ??)e-\]7[M48|=;dg ٿI3[jZ"1zӏsTǙ|&!<0jĽ~ +qh]g.;t@) kc/`&yDqaqL>qqzCk HjQr״j΄R4e_:e`zo|4hj{?Y8Ziۺ)ZζVje-mpƓ ɩn:)ۭF'z^W:NNqcmq=죚yЇ +뷲:lK7R[nGx%J.gA O!^;ň2!S7)5Q\ƑvVp ;OKhZ3p]4&F!]aj;*oVkOFGۼW#4W9ẃƼ!iu$9"J^Gd~&6?MElTtoZ`D(桺mf%w0, [ìnN9=8һD{/6CG>`=i 4Jbz'=X+tC3^d4A7gm.ꣻ˹#ICIbe q?;™~=*C|pDh\_lj;R $,\__xIiԘ."YmPLjdc?_Z;l69x{ Vπ9L勱wϿ_c5ЕY,X5b"Z=*}ߣN."iY…2;hͭehp]VВUD>6&ɋz 47#wHэ%!qSsԮ" +e% zt͟8Cs$\C:fF]cNgڥYyM+OOyh3k'V~QSFI P̓oFh ;e+pÂh7[or1[):ޘWij6ZquR&t]Da'_+4MK}(žo\*^+M}C]9o.(T`z{a_bHDG[$zah"$F.+@Pgl&uՉ>*eQPPnLOwvT^%xZ3"=cʲ-RU?IFCwLeCYTYkk&>MjZ.쁍V%.zpj|̰ųQQ:KzrbQq] X,swoVڍ`,7ݕ^Zڜd1k -4iRh/za0&ʙfEG"oQ}-CNwҤ%E<Fm= J|@45G  ħ/G 7&hdA89 ;#QUǧJVeN TJ\QAa^(Mt4 +RзTͧ24ʧM;qioiY~17X/R]^8NBtU(aHURWomBGu*[?شSt&Z#=n[NkT=vb P9qrQN2`+:=Ųr5@Ip\GĊF[KKY[?H#~CuS}2 +{A:8B_Fa:l:~iJaվLԞ gVL/2xUj$¬g})oŌܾĽv_nzo4.歄͙g n[WԽ\hȓ:<|֎^;*l `/#BJx uz~C/훗D?rG?yrlVN'X8N.sG:eɝO#)LYlr4ǟglNɫV\r?M)F}$LړnrNƺF`^XF:-^Ŀ ^2Yc`"${~ҤlbZX03Ou!cR7%w k/*9NbF!8R)S!'5Y美 h bhgٺ} >p; `+cc},PT޴X+Z iΫcj% 5Ar%?P(n;ሱ`Ʒ̴ +A77^Ōt{xn;_{S_’6gr/%Pq{nY'g`o8f? +w]/? `/"$WK༧C|O$|VdDsш̇}үH}eefoYW|$qEhOk)k}ҙN>M /Ef= NA9"~ңa™1v[8[wz/3\bCz gMry}Qq +@ƫΥ_Ɉ|S+e\kTၜΠ?l ]rG1nE!%u笏[6@:y"CژVCXl^VVQi̊=aMFvQ!ؿaE{AnulY۳N2&sE\ҿ%U 5# "ڲ@lm#DʪMk` +޵k%o3gmzܺ&ʿ +R +DZȰ޷۹ <.xqxuEj|φL7Α ס`ylskM~-p^ ԓTd:Cs+q(UtB y=]T&Fy :Ҷ +:™5-&gpXT/&78X@;YP3& eN`|.1΋9i5uo/qٟ\޽h\ +yUa[jnK%[B|WwX?]5*oqq1SvxyRQEh<,L|/6[}@]U#>+[a/?F{= r5W/lMlv>-Tߴ9ׅgܽ>1Absq39L?k_?uThF +,|=Uv.3PncƝ+\"8e,t;3Νva/w9R3 gUN2EÄhkԈ`'|gg+}/@6uT[qc]@72씾 l$){|ε'Wie' Μ¼9\ԿAl^ {&Ǡs B2S{T8vBFxpמFPR8cQ8IQӽKɏ3H^_Q_N7!`(We"Mg7=]-49^}Lhw|(w'ZBUnwxw\QIi{SU&X:a6DP/;'6-_O/繞=|Tϯsܺs`-n=ލYwt#N 3DlNwps͍R\.4whlJg{\T P} k[vjW,p w'hbr9 x&(7Ȕ)oީkEM]-`hGŝl?]؟%~!RNV|tq&{5֜j.m g#0r|\,:o=iʞ%kB[<-;,ӧulՇx@k>gNBpQg{{׌Fqzj'׉fOEٔk#eWSDKn+98$v?V Bkn2kӫNq5.'NGCVy)J\nβФL .o]Ճ3/ 7jt#qSW@UCQ~nh; i:Z&hЁ'ß^>H_zӫ/۪3^=3CUZ5>>Fj֩I.t`KjE$' +nY/k1% d&/gjLѪj5k5wov:rK mgK I/Y+\d~D˘qsce[O\'Uvm;Jsk6XtKqkm 2j+og1uAKNWud2JfXQzkw<*>ܘO%vCƮHiϙӴHejJ3unůtVh+=W,5j^Nwu02WZCc9]N݇rԙadIWX>1X%h."= j[ n,*WW15_p?k?J S]Ux~ux]_7_uJLoj&?ebhjD⪊]K|KAv2?UNWs9ٺu + xslQ…&1T_[$ Yg‰*eT?- ,)5d8'[Ƙ`2 gC +xyyfOGyc7Jc| >h ]Lmr9&-yU%wWDbYf~*ؿśNkR$a,} E]R-'ySދ\t;afvtr i{}V`ܬb< +]Wm _ϭjOyJxr{ލtKzpHkwRzTWX@b#9]Vv!&|yB",Q;J2b>bG6AAjL(}ZQƻc{_&YۼX+?ro]lBIYej +fwA6>'SH2qFn2gRhj!MfzDwlٰZq!˒ 9[Ŷ; nUD"z + +J +z =a?yIKչ9={WϻKQ7ݮ^F4N6ny, M&UV3A띂-cf5T++nqPyCnO\9Ioď/UHqmGrb5ovc/β9k^WN648bx"r: vr<|DH4j'_U^=\{LKvF5)ծ~3O>M659ǟqծ~i(X:K7tcYR"I + +us>:}m63N33-_~7&,AީamU4"x~ojn6ʎlw+ndW+k>y[R,NoÑ.ӥ 漓*1'Ue%o۟tboիN'A,WL!Xj$1((ksD%Cpՙr?Z*r'BCk#ǃTAd\Z_[1y.J2bܫ /㼟S~Դ`OG?dR@C+7_s+uׯ}b3,X|.浔_8xŤ]1#y4kwD,~4̜}tGnKs{5E- ͯ$*_y>o,u䐗qrF5YNVx̢3'i. +lM_Fs+<̿o5ʽ.^P +bIP1]de-2 ZÚk-ST )̫|yǞz/ЍilKVrfV:t&S5FwKД3I؜9@tR>yO#c(@k] ,凡~娝L?>X*C.gեٟus4ɚVt2 KݵvM=SY + +ӡh`԰1)>7]1_X*Go 6ȅmߵ8c,V$ER[Q^P_)nwOuU7PU F@Q ?/<?mu}u)lg\DlY8+JԝC-vqjN)xxڝoUfhʃl/@ϵJѥo] _3̌נڣbYWF O9 i(boM:,a^E>VJ*cⵝM1 M6mD=l;9 捇x{ڣ[m$e =85'֚>:Qq2rC;:hHsw~<{ U -&--*%-ՖK lѦkzF8;SfmusRURnvegfj)2h;9g|f W?M00s:sv_D\UƛYK3TQ(S15N/v.nyaӺEDʙ턍]V5߯xǟNtؿǀ/ o1>k&:.[2cJvNUUE3юK>vھ)|;wiu% Ad-ueel%^ӉggaLxTL"@/z~*.uiq+lm -רC+l  ƷѨq獬O{i9ssE6a|iNFVP{g/\MfWF3)ߨ{w҇n+Y;KH+l󈡐}fTl5DN(a6W(^yE[TgNܩW!8R?? p!.^q/Nst+.Cʹ5avU aܫOȏ+@v 7=tzhBumTJ8To mg4}]YլEZ/Xk\ԹJ#Yx?Or}gJ}r7TJΏ𴮆o:~,&tuZāaewУ+ue.@n\6=<"݁e+zØ%fdMs'GrU</ݺ]-dY9Òng弧/uU=y6 +}v;]ᕨ{hZҢY:g)±asb[K2fDaRU&AK-vA/}^BBʽ[s}!)"T^8 i[;s[Էae0ۢ ^z/+AFiL1 ,sU\Y@5{w4s|Nd ʑ{Ԕ@(.udb$=R@}6Bs#\w&TN?|NC4Eyo#*oai>ak `-?a=,ޮ7ʖ;rz}B9;8ܼc!!ܓ.e#DAGy퍱qYsT.w؂pm.=I`k]̴؂Uuqx& #h8Y2B!<h>wxCoIX^VzAX*mpw7dsNsy7A_|2<;wdô*ᷮSGf1Fw6oJ-_= F'qd'u,qf2TUJlw/bR@,z}[AL&kn֞dPVeny.#]IVu|No + nPTۖ>*:mجD3#垘/`Ps˚^)+ TajX f skM!lk>h# Mj}+k~[zgG/۝Dn@QW5|uv<3uɪnO.p"0=H@ݿ:F@.]+Qh͚[:W o8ümtj89gagSTM+vE&8<]NoJ\0 #}'pZ8$;*90?pz'A 1Vr\]yI2M~IrKO Zڠ};bְ4PC5Wo#oF:ᚤvS:r>$;DMqVszf=辤٠toshrf S;Glt.㧻ɾo2%Ds"0u{}HH¼;]I)yRz4HԴG<;fn=}@/n g3Kv\jɋ001`B-m3ƺ|kX;wg/oVGb4ӘeA VGymnuC筒ꯇ|O/7MJjYRD%ZkoxS"7Xx:JuNShFSG6KN8|,Ehu=9]}JPM .î VНAd WvQ#wM3>VIՆT5yBdv |=KY4^9⭦2"*Q:S*t_p6pǩ=^5j 73<.8بvٳusT YE +q*4sr7޵?Uz#v'O>@{~yN(FӒ,lX UҖޢ?WU~FP@Y P{g|VR1A jʒhYXbkQ\|AuvR'点Tek=BJחͅ-TZO _O2Br]c'! +u"ۏ4c{/n Te+WbC^޽ReE?T3ToY%-G a3}[PU7$j `SNZ#]^Գ^S̚3SR 1[`iӖiCwSm`d 'c8VMWhIWH*x0Bθc# +jRK/{ZFGVS_ƅֶx^ّbKnkXvr- @ո%Nfj7}ڇI*om]X<\e#_o;G6FBt"`3;U/cFLuWu|q<}?eVI?H/VISU']ŨrU .A)Bh;t ^VU͍ID.ҬRC֙ +6[቗gϜh;5D57ηڰChw16j;9MB*Gg};65 +ǒf +>XUE=Ucl&Yh U4Ӎk]ovmK!ڰيv揂Hcw2%@n]'cض fjJU0Ma|0N kmf_D 3+-{$o `[)scn$xHvl֕Z,$7 ~Htڇ醐Y 4'n ~+NO`85xtYFisCIzn;?)GLژf=cU}hbr g al睃 ɆApܺ{>נ˺z47ĜJR$ݭ:%/ng-V~_Z)qcFypmuӹT 7˗|^V=rj/vOP]q\!-;i><]=ɦ)gf;A˵3`&ȑH'k(Qj\ʹr,vNr2a/Eu?I iG"'g ". |^l;63$N; -:ױ)Zٺ2М bPG RTjޒG[C|VB =s EyGא:LWi+3sKjlao9mV~89/yRXP:q+%Y~#8=(oN'ۇ,}?A{;PpwBuaAcT%7\i7>Rv'n5疝CsYݜ*@Ggj/}*iGkl^Gkk~6jͽkVKuzqZfL5W )a.i(D;\ItHuI '.L)M4A']#ʫ UU՗Gb޾ğ{srBsu0/Q¶Ҡ9ol'o qxo[;7lAX}<[א;5_!yrC^ptUž_@Yշ!E*Ҵ)5jԧsa|{w5>v֬U'V?lZg4Iv7`\r~K}9Hq'%hѠ2"gQsUlW lzت<]\Sy;wlmmZW'+άiQ@ UݽOѶb8ݻQ":N5_p@x(:S /#vcە5n˞n"}f^ehܘuΪgKyW'G<.NVo [yo[7xbrTMlE !lV{;0h/q\Vw x.G"\\l8Hr!]TV BY߾~zukͷ~iܓ-牢[GaY9CCrቒnN"^U8b&ZX׳ EV2Zք"P`H,hp53<|֍찵1b^oaLT1[&2o!':0ħ7ysՆ<$QB^8Yhg(eUpz`Jtg.(%Uέy"[W#{b ]+rOMU |jwZ)!ZS 4g{Y=KyYὠ{iD +}}.¸X!WϾ'Ƴ{cab6ob؞ +l4"~\'Sw'h,%rR/RX{+h wsհg#=WjHh! z~IU~KAvTj+$XCNsx[uۣ3`JTJUFlݽqsC]wb^"7_ARΆCK c#{³;v'3ح-jS[>c2]Q? +E%N|TآHv'B1jNxCZn1o1ûXekf3S)|gVRuOMF^KU-vblj +C/XT +7StH1:pFRP_VCb(zw=ש94A1;zrz +.㺠ۺ+KE(fT4^롍M-x3G|ލ+0dvnj[a;h4.JyBiwzq .s9u&kϚS w1=  +k3NYytT]Hݏ9qp7}m/N?0Gͱ Tpiة;H( hm5yb)ˊjXk=.}y0ol( A'ZC6PpKS\UҖ|nwj֒dU}<ݼnQ%rdG/2wf)Qt N.m%7Mpu*!4"s3{pWhĕ%߽.ꤽ>Z?HsCZjü'KoY v~wӧ#Ϻd3ș u AwU4u[7uuҜs𶺭y_F^2!Z&B3ʯDbR[quMfˤܵR|NB&EGAHRK/ lmQXaJ$ѹ՛F5j80Ӡ̎JOтzzgd*WIRÇ$֙\=7 ; n1:ۇif!:ACVφr_.چ\k켚V5NP s1 NCJ?;1x3GTb ߕ|˻+QfU-<- m_kMS[(̪vmuѧeVgE8v?xGk32fPcDLF8>,h[و:]ŊCdW 9y3!2:*^ޤCqHBy:)^:@U 6B4hMgS[Ou7g5I硹v6kՙפHP8ThGͿñ9?2{ڳKiq295قF :Is +U8eIUՇRS/EPdZz{Qz.{]Lw,= C-'\qB +9fJ5H>\W.[mCEIu'ʡw +b[l8IJHl%jF=p +<ӹ*_~h| .UIyC/1&pG=::Hb<,$\ +7U\2]@Hk={{F I5uן@ 7 L+hQa25GH'=y᭯95Bucмaє} `(S(gKv\@JyKW;ܾ7b{s`FB 伺;u@|aC}O^HKkX "W&y)ESœaP@=Ma۪|]_z[v|21ؖQGznDKLARr?q +kݻ6em;CM+ +ZvNJң=>(UփYH%GkirA.<y]kc  kٷzՆc)M"IN(bȇ\"XcyN ecb_|POéS&hK J- _:%qTKަ3ˊ۫6/E6Rbʲ7y/]zK!kNR.vTwtT螠56u>Jn+OH^Ao?ϼG81eВy_J}2i'J[e?⫹L +'&U6k#z4O*c Yo feYSSwV'WɝtSTԢflpMFD1,\f[ӳ=YAHhMU?ݢ-w[ԦF:k %,6o5 -tluoL^1P%\zB}Sx4u=$=?cM@գc̈́M=NK=iR,Nn5ڦP?N<Yʌqځ;¾>-7[-ޓ+} i&1 S=ؤ2 +eAZgbÑ-.ok#c$<Ս%~ZtN0 /Cu[%܊sGv8{tICE1UlOΏzf1%of.#UɬBu^ek͙zROLZڏCw(*Ne KĠ%7pz6^RUnrVFvhJ=0!޷TTde_g"=%U0 不lD]U?]&=w+XYA?Pp +&PZ)YbE*M"s)% ,h!z\*B9+w{/@MTu KnpB@jz6Rno`Ցtc> 'dCR '80u^l ޲ AˎuJT=[׏)Y @j[8"yl> ɳ +~:E>wjb`Bv!әRpl7ze⾡؅evS [q6$}pI +wݑ/Ԫ|pe@xY{6aS/zڱp*<ӀF  ww|":;/V1ְmkNܕPAQ3VHNF2x7 +9TKrmSG<,g]>Χ`u?tڰεc+ pU$Qv%Zuww'l htnv5Z>{٬׉w]>ʴݭ116Ht(˙nk *UBRʃid,:ƒp0QKtó'cɋܷM"Ѵ:];\2Jkխ\ISi<[!R&Ц?[fvqbޫ0G'+CFXo,wkŲ ]۞#<&5׳BRƻ-q6L}X$5y85jMp:&K6co7@9ʶ8r5$]+Ք, +9CUTC7M fPoݔ:ڄ78g;Z^[f4G_,޳nPe? [*BBg*'[Ew$׃EwZ;Sj{M4pQy0eU*{@+oz>V+*~:eY '8=S5Y?``3pll]tj͵%71XݛK|RF[*M=zLapݩAУ6RBB U;>y{_SU2M%iZ7V Hm:zs-V~[Vz}λY@klιԬ^9l8hRjo'*m5 `PcY=[ǎ {,pwf +(t螅Ĥ]ګy[sC>ڧ9.}ˮ!Nek?k5F8͕ftP_oLYڹ\SOê7ofe*fOW|Uf65VK +H@|cE>^ +B.́4Jn|a `ί$;\3#U|D&J46ڼ:{60@ˏf?nf#Lć# 570w̓(6&_sx| +ej4dJb/2!Cpƕ N 珩HgvZBkӏ<.d0+_+6#-mhpc< f3Jy?\JL\替U1/=x.*g}C~Oj-![߰6ge_5d6x^o\C;+-CJ&O +S_zahtο=|Fݯ z~˪a?2گ z~G_7?eFg?o0g6L{_Ϳh0l@]=?a+& ?f{C{_6g?o xsyV7|2yn!cC~n}aQ9۱#JZ"IZ#4;G6}9BXĵ=M[Zwf.y^*zw|IuF;wu7!uMrm)&۫vEAnbWo8CGg飪#-ky̪Au}1#S{q;0!t2vrqٞY\/ơ˃}܋zn-ܻ5]#vх#Bu]i0)Jid#=+|$1HGuqYcQTfrPR;l0 -2xZHW#24_ŲF& :/ڽ>.Ww.i[|xJGLxe|úԲAR.9<?T~<:y8{Tu[lI5٥k( Q-.L2|f6 cj?mssv>=qHJb]|e2鿪/__67WUa=?al~I!gOQU~:@}i?z_ ʤ?4߽~i?z~C࿫W>_EY^ ߘMhϽs ݴ=m']wKe<(=Ҧ}V-W(PU[ޯrz$-iӗa}؞̢&E>a#m,ZuTbg?xs #\~8Y] g"m03J "DAQ7عbXUHMqMFSY0КsՑCXU|g*:( !i[5YÐ} oLqX.Īf\\ÛdcOUwz12ocun죣><''!$2yi'+8cs7{1Ώ >o;QpU5Ցy+cuGk|5ST\KU %f` +F%L]J=\in7͘tl^"~N6_/ 6~z-+vwg`d^H+qm(sQ6yh6SK23gec!ĭ/ƍt-̧f e:60ami^ "('nHvrmAcoJ 2$οD*^XQsxcY_X9w`0p35?BUPc XL9aߧXdϷ?u5VUoqg=Ӂ|oQS *{f^vBa6:E_]ͤ}`b1Ћ?ݐ|f;^ySW$z<PΖʛmN]ݶ4QCXÕEmŖN)^!?| Q QQ3R@;-m]X&IE-ttAZ.FپJ-xw 6Bo! BgQu +qmvQٯ®GQCIǑA1Ҧ:+EO1>>&|`GFb9L^) SdsfH G[Eh1l҄0l(m+Y줕*5u5o656nknڴrO7`/ jRWPѰx_lw0rTFel Zp<:}lK ueI=Ȁ1a1xߌ +TD[XW-joz 3s^TT٫\-" ~.25]WfbdSw^mn}b = j1܁<5D9X}/x&)?䏪~VUtOZ㙄Tx&+.#US÷Zmg2o[]4 ˷I^&.DN1V^paz;6>y*]&ҲN!R6N7ǷN\i{8zus n%e +]9j{Nnxwp*%Ϥ_4ʾa텙nMsMZ5xsrNǖs +w9u>stream +XbXr2Uܻbo nHbUk>y;_.=_$8 CG|\?* ]&6ekeIHםo7zpQ90~urqn&ձd涻62ZAkޡm\ɣ&KnF6 U$Q(j#?gGm `2!՗ye-%_Vx؜4l>LloRCUtA{;?qyUQa#e 堇"#:d\jɟdI_O+hDMGUHG#IEǀOmwn*AJN$Rfc/Dv7#[TDk;VU"VU:NsHF4<=)$olK_jg2Ac,>vLx&1e*,e/ !C}ɷu';hJ겾E~ +noKgF'[QXZGPf?[J)u+Evs FCbrv@s\~TQ0hԌᶔIFv̋Z%BSO7ڭ9yݚ+Kq(ȗx8۔F^FFMa?!jG 5gU( !̣G԰'I]"e_ U97V&I.6'M3ɫ&@*FI!%d5lzL')G wLCI6.:9$Nx,k_h#0\#LvcC{q8 Bj}Ugf=o5فXn]!U%!t<]m8O#aKfVݐðivm͔wuO+>V]qu|5d9xAگ[nݑ!L3)bWN5njMN +I#Z. P694 MMJMz@>s;d_b.ƀ)=PSD^t oˆs'STt+Tun'58GRMj%o,#$!JU|v-fit.n5U,Rq%.8Ѱy =l@dx_iY?nC}$OjPk=]J[s(FY5xIO;oQ@u{r{ؿ XTU +FiB_8o:ɗF9Kv-Pj6߰K/]Je/鳇j_D%geσB H6ǵ$Eˁ _}$Kƞk?; ):yA zsjHZKDž2D .-q ,GPPVՔ9Eo$Ău3X#I@^}tt_뷜N<a;j‚nuA߶aӽBPDqoyF1Q $.Eoc3`~'c%bݨDpbဏiŌ  +J=(89ʚyQ0"(>[X Y`{s!ѥs;!*IE %K|T03.jlI>WifiO*B H&N\ 1ʾ(1m +o(x<\R3 韑DX~U2ybB#L\6W\mv#ԽoAGjnב,;PF #e2#^[V%~<ZhfoK2nGwL߽)"F$̩v- \^mE_0b: eWap- ^| _FMJb[ˣy(sKD wM6#nILrlF2vi v6|8XU*Q>=zem+VI_/<\yҶdH(YhmF[2-IHS#k Q&+*nh/͙Sq$ҹKzyHDUg1&!&O߅zBnm~ND:ݳΟ9״wW_ '1L_wb5nOcW`zFndJ2 4Ʉ ?Δ'rYh)x{]d6)]O/wGjTdP߇V<+"IcI\%>kaPRƥ +/Lnm`^A*CLiKn[O#;]!4!I(O4eRk嗠]/KD`_F2W)L%j6vy4&fbaja=ae5gh>xְKuu{b.bwH,g<=šPZi 9>5%漰"8%7`@Rs,YKږ+Cyq=ς৐ðpYÅ[Ogf:ŌCNlX;AӇ_ML/d3yIkxl"B|*+D9GU4!O^_l$ЕlD Ugr!Q/xRi?$߶/?n LR{Zj-;z3~QŞcIcϝ{n˱ex&Iy: z^SpvƪM>BtEylQO[.ƪ~!X< :#u{ݳ œ2/FnՕt~Q9=Z.鹡7Ր*АdF#g*RCTYig8#@fd&}rC@_0sbuK| +zq87#A.!jUCB E|,ќy)U}9ϐt'_`] {/2uU{$ss)52U{sխֻ+^G?ģK\?'H['x wWk$ymi fF=}Y4kX5 AWRUm{ё"XQIJPOlQ&IjAO$SVw>zL&muU?>JpKFO]wpoexn\qUqmFs! IJZ7; +$$/UĪ$IU5A]z+ =gΕNc֣b͔F5~=*2 ٵ*fuKǖм*x硗%bSvmu95<`Ot,ZU#mp;C;͞ YXޣjZZsґwVlϪ>=m)Gk:w:fp:YqCׅ8~x!o*ucS`sȊiHv;|Fd%r H.X{77N6XS'J{6Ǭ@$5 Ә]bmB֓?4.;6sŰ/Px3ɓ$S5ދ{ +M^3 N:b}cq@xrKce ɂH s#11cDI2;_@Tqo5$|,-F fs>tͯ+3Sӫ=mNZk#龶Kvŏf^;k4F8AE}NqSد" t{ն0HGQvN+_IG:!]Atd{+ j$,8En,}?OB?Ys:%|0 +V+葸ڷS;pvW$5 as?/̸y9#[x5 +\Z87{x,BoHfk,[DJy5#.M̜8<ZMOe$1Ӟe̬$Z,g3d%A޽ fxnRݷmT/C?[_PqmQscs[&ݖ]\~In۩2ɂ6#X( e)#dM5)=cW5 v /øJuQvNF~m"ϋ~W4+3VÁmrۃ;XNuas(7-v<^J9zd^h i0z⟐$E[/9>Q6?n 9r ++_{>ʤ YBۛr`TfR-Ah\뫼nDw%$4w,8)nTQ,,[n|Ogśfib]3"~ܽhOZ.]Et8a n6ӎPh}'ih,W#S#VLn='9t&޾ZWjnuxϙzs[XbiT ڷu$AZwfly*_!>~A|/ĵ9ܖ%i? +!J9R;1;iܙ7uZ/(4,x0['R[6If]\=>uv{bxT/ N;"5X,K K޳WB3{.~3ZV +ش"@@Y/h5W>h FM^3ɟ H{( nJEKv+W24߿O12^΀P G;nsg^x{HY,St: K:'9DyƖ +ݻCT b"@P,5󀡞Q'P}3bO9Ym}dyߙ1$n56 w+Ԏ-blwb?VJSo[A9Zd \^=cϩ 23vf딛T}q:FcЭVRoƀ_-f)cVZfZ`suTV,s8s:|6Ӈ}5|M§[t"@,vJ)ψWŧwR˫i%ҧ"2܃-*".N͙;?'ny_j7'L26M4>` V8o'1Ѻ.G%q +~Qu/ꨪD] '`Tqd-t|b'@E +w_-Ul)ij5VY_(ǪĦ׉7dOiY0"0M@˓/»2A*'㝭+;1P7o!b nZ +q2x|ڃL +6 ~~y0Ū )zFH|c/Lx#œ!i͘E˘C V,Uy'$!_wQӖ9X!$OY\zȀ>X+=&soS4"]XWǂ6c~(F|\̸SbZ%?O H.Ϫ<]+^.1QH|&vX=+["6=ޓ#RHKj`dY?nI6,W't-DգVFTfb S[9:- _iC=&M4|Y"oȥ᳙Q )C5T:Ut(oHRFXWjQkSX$SQ잣}>GpH#kyWNXƪF\Nújm[!y_~t +m)e=iPTK|cշ0,/2kc5T]X g]캱KGRWW-Zx+Vm:ґ'9,. ,[['yR]#=I-nxi<'JhEٞ +Tj 8Lf7w(6(5Ft8:hIxN!}y[aݟdEo*>h3VVO֊Dz}0):{{_:[MFPNfk;zWXrEZA3|v\I`EM|( 4+:~bcrj ɬcO"n}c^;:5]ZjZ9̞ZBvN$.@VZXz!JhN\H PYb=D^uCst+"݋I uP,g7G#ٔ\}wa9y}^ |aZ ^UXu 7u\J?ڼ G5qs&y9C68n--TN45ſHs4Im2/dPaqJkJ7VvՇx +[QEg$!?ĖC$J[ͨ}>ݭMK9#xλ.R({j`5ԝ +EC^v'gMnv)E_yDTݍuF@r#?P#~uRe9A"^?#Y糏z@7e#xG7?Z.P:U>P®(s'ygUD5i@/ϨyJ%*8Zsm4"6c|`݊z.z~\5&U!$֑8KOMO7r2\sl￀$NTx-kDTe9ػFbz,#]d__ QU]3/հ!18xILT~rYP. tqfrEϷ Qx$`}o:0j#.+`U;sFRŀ 񙇴J +I*>? +f1{_R=o̼5JfWi(j< IQuצ(%bccEd°y߄/sE w44iNТ+VȝtӟpFh֍M0m\Z[+Ky5-!لlm/o._';Plq.a+QMc]nIc x ='<ϋ7g̼5}o:ɓ?ZR"O.ز⪁nK>-WsUUjZ8fOȼg3_Ady3$8&Sot6oHB,+Xip4#cQmJZhĊ;0܆뫌 ,X;3޳p-Ž_N'-f5`p=W$}Zlєє)?R [HΛ^$Tޏg[n}l916 +趬Zh á4fbZti V㑶uLJS`hlI6q~ ~9 +ЮbEbZ25hC3 [)Y4̸J14kt԰فŊv X黂\'ćUb9tHT)̨ZQƳJOS:Uϕ)^?V6@_ʅ)V}1&Qsԩo+v3ljHU|<ԏ~3<<Ug֏*)SˊS-*UTXUU^unv +R.{kϽuFjo9&_#eXl[;ڸ9˺6G|tїUDRITQukբZvWj.ǸB2#=q +q>};tvSy4 +)vodͺ;v}z^5ӦVM BQeuF5*^ɉֻ{8~":{(Z0n?޹=m~Xpql2T Ҧv+j znqhg*zBxB"xAg&-5~2:G5 =:0wZ 1co~/\DaVvAlwv{za-UD8m8 +ܽ '-zZ̖rP4g[7]E%iH򼠴$Hux=QƊgm"Rzlw  -͟U yJf+=ݡ,ߟj +JdJ + .,ȋZ,bu{G73bOЊn+H&'jޠ)}O#f:VK"mԴ0UVn>}VZ]ΔI1I6uj5Pz+*t %y ,S@_ElEՆK·znu! OYjp4FM1S@Ɛ(i첻I2dvq]&ESt- vw|+Vv|nuU6PWL2r\=s>>fn@_5#Q첁ޜǢN9P~/ݙXNOYgc)d*X)p?oM߀qq#UDUl +9qOOT*%;y۵|.x-kO))Iv v{!D[ക&+-n~*n\hܬߗ2zO^ΤS L8#u'$/?Gծ.jp3>a(;VM PpEy P:nn:Rr@K/IeDoXsQ.*UDUs?'%zk +w=OWL݅yuZI ect A6==*ݔ?/ ,.s8>̛YǬ$%LNDAfm'6FqWY JNJPz:݇y9{9%(N#q5>(Z|CGz73<dfڢjv|ѣbjz*6nŐg!& +I*\׌& ;L2`r2٦_E, WgdiKc,vp!Vp^Jc+Xmgo]4$SY3:a>yF}g2v6MNj[*F6Ծjj]j@BG*;58Ow:BO^?F$MOcc)KO0[$?uMxQ<4!(M6D%[eR[ 2{{02d*ا]d>G#@>5ZUx\HC}*sFeV=toG׺c$-ޮS#Bֆz\]`?>Nmkn;Ҷh\L5Z V)*|^''P9D>?e}E룁tR ^2E&Cn3Ϙ߅wrkPo?9{y^~:E&ͭ:|UHEL~"i6@/|ӵ?C^ ܜI&6 +:"W wg7s^~3ݒ:q\-b{g狟ݤig[l5>3*?@ZD'1m&N4:oji1LSgAXla=ཟ}]lo=A7+Ž[Mv6 $fM9fw?H/e $X A9UU\vJJX<, vy;wg~+<;c3]l4-ݯ r@|(gT^uKD2F+N;T~O`hyo|=@ͅEN3;v{c@xf`{ jeڽNj醼ةfzo1@6@[XtAyK[n3ѩt}WU8 +-QbuxQ8ƣuouky-#`˩3$oI0:]A{3ٟaioY7@t &1-J5WҖ*Hu$vyʋ]/6C`>glϘ[B:l/v,<6{x3kOΟ&a'wUI6X<ⳏhx + +ͽS6t=e:ŋ- "~_;K~iv=*+f>NJ Al':u(\o{*{dqq}\{[DƦ7X}8ft.ޟueg[ rr uml[YSݎ )qܑB1Ѧ M^k D*y_?E4ĠV˒/Z-|8I d}jN>t瞛vB%,޲:f%ÛAT_~]hED4$ Ƀo ʹ.yLtRNIaϭx,'_s-~~ǣz)ޮCeّA. m ugym0afP凫g Vs%҂/B<.;AA{tPRV֩{.#[<۞ZndMGu%O>]+5S|̀l-þ%I L$&e8IT>37#Z}v}:k3x*|̭>LeHhJ 逯Nñҽ[2oc0^m}['_[/v z[GDNڮ>la@^PP͒ўf} 3``Uskm!L[PrZy- ;6iJpj%G&PK]W6RDq'cH\oֈ|{0xl- aҥNOxtm8`9ݚ<CJ63^bO?L>/dt,1 zsZeiB֨t:u08P|TTie}hn3_@bo +k,{RcujZ]1cF 8YUb'$K͝Ҝ͖~~DB4TW /[C~>*}:FGwֺU,]Rkx(ͱ?י48STO[ȡwO.wa+t!rto޾y+sLRMtn3r.;+%LӦ7oMetuR&i+W!/ +`>%+#J$ naOvH0O7;Hn{IHh7mhkEd?LS7vտ۬<ޯR=lkK9je&$x\d?"%d3ObC}_^ejaUѵxqq9u"'HQ΢:@7Ad,o7n /G;Kg!JiGj@b-0m$$:%!yKK@:D.p6_W?[x'/KWEэԏiy;6.}7m?0yXmwri) Dꔀc]pD";o4}W ˶%]; s:8aH,3D!d4 =g~},Kvʻc+?&N`fF]EOM<@=&O+X%j + qma`(a`pP¹^IENjV1Nc_*U6Au;I4Kc>p){}R^D*h~"ՍfqTC7KpޘDiiXԜ4vxG~ZЕ8Z:<wģWƅ/piI;DҘ$RUظ>o]^GtqF-e ;og6wP[;)s%[2Bi/C9zZHV @lIi'zFiZ,^k{gD .Xӯ>7;WKz{`ϊ} &s镬IUSe2W[rrKr9w ^=gJS䡩7yZܩ\=6ε%3xT|l<@~-[* ]}|b7ΙOCܭ+ظw;yLk;Qc k:6k͐/=\M:VWv9JbHu&Pk*63 ~VGQ_{0H[YP 53deǿRWFϕV~7;lܜN3+z +^\4/vd }/g'b8$a<Ƃ31|ճL[+=>iF9DWCtN˜ +i_  Piք֧RzssVJ1YLiyrx|кN3_{}Ĩ]EmC!HYiR&1|HGچ\zO i1>嵕H!<_P,k<:QӽX1`&›-zo&c!E^i7Գ9`6Kk]>`hRD4)\GDG( y({P8ec&P)ACg;Eu ԦxTdRc-θ"16#(Nt |ekU nXҵ +,i8tODI3N;] ~: {ױ2<ɾ|jG[.\^\YnBj'ls65i fԬ7Ҕ^K8,:fS|LFTyʤ厃ݏkR] ,ϱk󁮳^yxBf|9ƕƬWn99@u“t!É_fQf4UԮ~ڌ`>n"T<$|AYra]8xES{58X |jd&^t ? *۶p)Gvnŗ +?%͹TEl[*)fm ѲM_9f}2'nf'+Vce_H 2@rĪNO?=tWBh߿зv5w"7z$Qb +񥗝Q9罊8g:拉7۹H#r5F񕫍zUn @SD{q}Su˸!0^D^YTU* ..rkXzgod}w s=okb'1ܿ&?@z;. +*2u:#$+E5OwHsQۂ<Ⱥb1U[燣灘V +5!dm00_WZW={jOy㟐& +@,ʨRI|{ l@&14T* VFunQAwȿmɜ;a{X?';UgJ7xvltmeeM.?, +Lu0=3;ܞҕ(9ؑj!&CyO`KU>X^~K>{Ts7O|Ņ( S^z/H*c59̐Kmґӻz ^Vdn#duK"ꜯ}-*E8PC1_'"掷;~/@v ;_kn,I\yDl&~I-#4ɀ*,2r ~w,g@78+ mMl;Qtf \ŚU6k= -h}ٚ"/Uo9N=eEdy~Z/Mp_Jt #-U;\oEd@8l'hڴ[3q2'+hK$9쬿:~P13ے'dňkRv\[3yyhs]_hxF8E#]便Q.)_ي̭Ě97lv!wxEc7]? #R}tsb<f (O;!cjp[ަѻ}J.y"+tF~^JUkmzc3:ftx6vS3lhTWQsۭQwWlg3g@m뷯7nш-}G(@>*c;|} Qݿҧ3MlFeNsOO_IYݫvA;46|$֗_֜6:>Vө9k5A86 6aرYPl_-}VXH +G~ /AJ5α#@ITP*GP:>?x@ڮg +eD>,Dj,~UZ 2PwXL!? cJ *$Rr2=SrbA"LLTrJ>1(څl"D{Θ7L܋[i.=cTgS-O^N}8 !;;PjwL+9nR@*@ +o"V ]D +(=gPZ(W7o~Р> għ gOoöݹk%6?HS>/$R[[PNkh J2@ 335+^H*W71DlCi7K@~Ԛ/l/^16ByT<9g8>hw򥍥{R@%& O? X.tZH'|4(8f?^j""g&Henc-84`woDF(:PH="TPUʾ4}^(J'^LTwod`:nŌ=U j(b!W߯"u|雵H#>+QN3X8ii^>ѻXi5*[@(t Ŏ:jN;S OaM缼<9Ӡ!n㼷C9_Y\'3#p#\mYSJ XM+ҏ|*Vޝ,áɗ–G-5V u٦'iA{uF^^:Bm`\%Rwa"L̷u){Q˵֎B&CnVNK:cF?2T Tgϝfcb>K#- z;kwP+ ++@Xs3IT9'LHZ; cHɃgMı1y[ ++x6g۞朞ěr\Ð0938)7MxΩ{]kV_N3W2E6@9q#KbX [u')PCFuuq&Su|cW4:ׇrV^IS+|5wb SW+5bܑz-i›m"uԾ)(s#(ѫI!# +(5 e7b|34PG63yhׄ=[};Lﶸ09䡬OGTSzZ%ocퟐT}/=튂%>H>GP~>pm}yK?䂁QkAa]RgG;Ȝ\lϚ띭޽>#QkG.#*">{$8ZX\ڶ1Nsۺ>܆#,>^>5Sx?>ܹĞffjI]nݒ.5`ͬ_ꁖҏj#iG.ʠ5kMT0Y=Ytхg_::oٲu':)}xh p$a,wK[KR~/+r3Hns9]z3P^sDz1yxvNgWS Ђˢ6DIMRf85҃B2\*9هg2&s?_ v:q3!'t< zhigOW>_Vx|J_4vr +@z2-fD," Le4Fycx¥p'D$&Y<0ɽѹ>f9FfOu +E//"ȟmUWX_DJgNEᘛ[)wT^l˥)6)7e<H&Ӽ P_k;+#3wWӒ|yB$ǡԐ  +⭼V uɗ3bYc4e9IYG`i̤YT9yq'28OY?}_@87CY3Ϧ%x$%zv}|AfF=r +^lM\;byfGjď{ װ4&?yLf(6e1Q:˯Nm:93)9D;PJoX7~ IC^̎is7}Ty҂h;ֻ^n3 쟦_⌰Sa~dz`=J(x (N󩔻mbLtñ1;i73U"34YV_ {)P{)^=w{}H{\4,0aϗVSsJ"9Bu ;cm<[~7j*c2x[cAcb/t_וjǵb~Rqp{ GMM뚝U59s-Ot F;B f\ǴG3 ͡G88l4xu}3֊̯ +n5kc_U%7>TEAP?UХƾ7vtb$[BrO@qXGP42ʮ s:((( +{^\e +wR + +G +lh & +e1(#!qEgUF +kO'Jb@̩O[ז M6 JU+zIrVSK+{p P>˔j;Yu.CT"7g}ՙTVnѐ\JiQH<}8"JZ~@7jWWZAVs} tCߍO}tS[Zַ +gj`V/Jy[L|K%{H8HZ?id LAifscrX}>Y?zO +m zn+<:O}?s=]!yP;;= ӄ_~%7vb!4U{ם,e4L}LԂW5x}fٙZqf'#mF߳tW +%yoJO[*,i4x;8|7vWz1%bvo폱Zs3˖NWe?]l.ѻ^sFm=TS[[]/Jh A;8Rf +p{w/{Pp,YHy>{ҽ]aR=Uj<͹n\Ucp$T[{S=Y(/P5΢fC]?5eݰphieJwTtpͣt>%ʮ/4w_˴SOǢb6R3 b@*}Fڰ'YCMn{_mXԚJ'U(m>_% .ꔫ sNߗX\H 7?F(PX۟ Pn~΍Y&.];:Ve9lmDgd]/Jb"1Z +O@EM_CfrWО^g9-s- ) 8Iv{vqxWH)iTorSzގuQ`Oݒݪ$o$=.%R!MMUTnȏNǒ:/vl= '&g7ODmˣ#)XxJWCZZI$@_@HG𱒦??}c&j&6 }8?9u9^z!]nB7b*΂!T[~MYYfkSQqu-tVMvl, ?/Nq_'rG]1f.(gqjga%>W{yөvTnru_4mDR.[fXY6[Zskfnt/u`4s3& S0iWK'Æx= +!;-5,Oe^1MenK7+O_8p/|ڪ^ FKf9 lk ͛/7}2)WpfNxXevNo Gj$h߹㎹lS|񨶹%fm})*?d^49X <}+ -iބg:/6j 7({ZmA' ^\\i)i]gk6OhYÍ`Gs06Y_a>Ql9sm[qq+>j~ss @5f7eNJڬ& l#[K.n?Tdk1S|Bﵲ=Ԫ}{X&#@ `cxfK}:tslA|GDXGֳQ +Uݳ8&exAI*%2EhM7VdJj!E({9  L,۬g+g ^,V#u`=[ba4dglnp鼞DeD}QUo[o޳0~ J~3t~#gg9<<γKiߔܣ/dU;YQro\;6;n'@My5:@44}:3{IӦ|{"3UՔcuYHMKnLa/ULB8ycJQ5Wlﲧw6~IO5 u/w Z\ԖdvHkջC;'5Kt&ہmmR}u6~AFMGGf1nP:PBwG |>Ign1sZ7 1';_+vX|$j`rylɷ7[ Ym~r$wnKĖr+f29Q,qzik4J£41% ұ%}/ē;D-Z5Cl)+$ :i' ٚ҃Um[k3q.S:zLr= mt  bڽB}Es`mܞ :G0K`H;לz̞'3A{"G x{`e7Ju$1DoxhIt,+4@Pw($~xm"Z>'xVjP3`4J 9v]3`y/LIi:?r'mY`KHJHT}?Ne`U&ʟNLDALFsz͆E؜b@c[\@6.jrA`6Kn|#8_!FS=0} LDbfj7ߜxFna$}Yx 0O @D%Cl|ߐ"`W0Z@1@e /Rxqsvͅ]٨^#M?cVA9_??(D׉Oif?,ܷm1g았|oO;z.!V+!Tx wSg+H%֤"Բ&_kDz=8:hW$ݨHݭvL +΃n>Lp[q@.{1wݽ妔iQU_ [k4i[YiƯTnו{qWiϏϝer!a<8N!i $ 0rQ%:nQ}0~z/<ɥ 2VŇMhM#s?Yp/FvD~(ٷQDS(;  2؉̴ /auhci)L̤ZS /f^Xק=:"sqidN0 3y24vqfM?Je 57,dWggP\ќm1]K_4P#9N;yFU+pXVl@g3:J7-<55[#_l(lX4R[sYe]ن|nFzqm#R]EHB_#|=Ւ玠Pi ?i2#?O5{dg\\<,GtA;[#R6S{O X QPnM׉jW{4d!٫)TuFf9WlOXOϿ^@AZi S3u]o~ \GN7nͼW[. 1 2́RTr(R$ʹsZϢ(ZI_0+AIt*DxQ!2u4T7/%cTVR-$k0mګZ^Z=wһ28G>tqb:BRe7v^b1N$-#'+ĉTM3(&VH\ +O[1 /^WLH:lNw~jH>E﨎3Ź$q#d cUYhB Lß%=eJIG?wEP>Ƣ{h9o/'(ԢNd͠M_W2P *bҶE)joUb?z&s-=1TzL;/AA-@q }^i9XW HtqIYUWO*XW'lo~'ptl)-ҿhD:'{8Q F;ma<t Box|"].2(,>pޗԍl{Jgm\Ofm^xv3loͶ+los?jTTWl7Iɬ4lpL2b\<3vX.L3FSg3$ȢQ|haLO nd% NEX&F/YZupg:鎸jěҍռ44/Ri3eNHӦf2?$^yeҙ4n6r޷* b*W*ETs4vVnB,jry%owlW@dO9/b$@C:9 v%i"Xo&Mc,kO(5g^k[Ws׮|5KEu +V0fN?߃4"^PB-h8@ŗss4oxFHc-Or=kGVFWKO˯En>fznlw'6տ'I3 ٧i$eX!@Ɖ! C { +`vp8@pm8t' +.eg;_ h[@|@~/v 2F?:Zug`aDg$:7tsN期 :Y$zVwsKc/P N}fs. gU`K<J^_2=t*jWƉX*iD{Oľ +[N&]*Q30Qع6ļ#rE%!i '4ώ|pL9@g { r 7zR]]  BF Am?Q3>"BR9x-Ӑj,#Q2ހ{>,{1V8|O%'@oAzCmI FmRDAhvV(BD̊~sږͤ2*>vn]<5u}C1/q+Kt|oH*^NO46{=7Y,x@4Ukx,iDoGҫW } b@?Cڛ>u]+:~l1+q6R6Km3+x7$NlӆNSǻi.ף. >M"=3S7O!I>zxmlozsN^Zhs!;>jST]>E7$Nzrø'BfI?u<°74d 2[wW?^[@x_J}QUSoݸCJXk۱g}akCQSg* +Aza  $F5;;oa EOz+ͧ)㏳޿N듒zG#]&YgY4Qa^`V]70~ΘTD?yL(qT=v#>7A#ﴥ7ɗN磟6mrjpz_`_ZN|!gYݶZd6s֊?QjeeJI+&ֈmWiYD wsPQ<ܫm āF&ݷvS>Rob~p_}/4殶mXv?,pDV4QX]b[Oanyz~|{8ҢS1 DŃ\yb/G>ӆÆ>Tkq{03s\HZ$Ex1=w$JʦQ4UHbݛ&N16ߎP3eӍ]_Ftr(ex/%9?G̹ woK߳xfNy: +E59AvVrFg{Qۋt,@f ZԀZ^KVOVcobƷgR|d)lBW͞y+`C.)-Ĕ^>OsN y5DO~-('0SOg}FV>wc--6PhQrh=T.+Q 'tO,o;=r9sẙVm2+%Mg& <3^P KMepnO^dg;īǎeeUFLBD<(Fbgಳbx2rgׇ֨2#YOetǗ<C\җ(w5܉B/Nhnl9\jrVfzrŭ 7k #,JyTp Xl2Deq;y#VB&R+q޷KdMp ? ^%:-QQHv>C/'.v] +d*!9Yztz ɦLv aA0ty}0w{kK~ 7VNֿ/10gx'vV/a|ͬU&L3xYslۋf&>giIi"dc}Jg;M*jXXdڬV!ڬ^9tm._qf`vy7%#{[tz8Ѣ_V&)P6 ?Z1W_6k=>*u2d^L6 Ӱ]̮Y>iU2q.p5tސ/B͡2OGŮNEo8vAw9P ȁ{_^͒CcRT[>[uͻVe1 k_iSo\f¬,va(Z,#~P},D< îF["I]j$>@}?~:[][;Bwy}L3EϷR#Ɔlj=ӈAvyȖ,./;g`|l ;LO#LCVԶm$Y\ecc^hCجuQLú>ڮD e8 }9yhj12x$I449I-eU?s f,>=n`9[Cͽ:!4K6SBz,QZC6R1pVQV-JYc>:?3><WA`ޗ!uXN-O 6DԿխ9"߫Ѩ t7 ~C(yvC.&ު^lVzN?r_,sV7M]qgyċ ]6qr-HR7jv)D*}E{joc׸]ae+|hXJ_ +۔eU+z37jmѤu}WzԆFKC{Kp8b ʅ vpgLXOFs + 9@FCRcy@y-Ou ^3'WP0IF h.AO`rݏD!|@4|I@b3h34:U`Qq#@ҥf-y)4@#'\7@F| E'e.U =s '' Z:@ж,$CˇI(}b17:;M/g:*Y=Y׸pa ȳŬ~_B =++H Y|2Ż@5(4_8h3 \+@G3U}ݦ/5tUՙ^ 7l +1P1/NG?Uvfs`hD"L 6+'J0P5yA|O%"F%as l +q 1~9,j@vM?苜x*x&T\ ^dQgMnOy )`3|ryptT4X:]&axZ6UdA3O+6n +MI&z\ Ϋy^ӲZ!sߴCO*"uuz)Z\g&KօmvP[mp-6v^07x3uYOT6!:EFvUyhIѐ] +G-~w 0s5SG^F/quveUzCxѵii U.P`WM6 +ߐK`Js Mp.v(r>̘i<'׎f0lPts%hY6Xi‚"U#Z5AwOWfF󪌗 n. +llKgb$Wg)Z-%H6qӱ~[rc{9(ؒۂM֜E|uradH-#Oi *Ȯ˸R, +F- I8ߛ\lv^5 K6!*$m=/7նT6K<_\6Dt'YlbmXݤ5V^7GEeBVMRAydp;.V߽JϫH O'uX4 #38+oFDj2\+SXT1ܑ9C{,%SȎ+me&^6GjV' U,+<]a (7t 1^6{u{ֳ7~2pТ-&W v?X/qy"F9n5_x2;_Xqzݖ?UYG܋jF鈭 :8ZWB\.dq1c$- +O-. . ;'Ktk݊S{tP̔b0>kР7R؆]\zYDz^ l;=~'"&ƄXG!+>N5V`z7?H{ur”P|x2<[C1'}~քQ:C?5`G I7"3o&!Kvw2)(9Ӳe|>8]7{J\˼D}g_*uOsIerqJ{7Z=ejGvsExF7l44ot|b[>9zpkyYYQLXo+; /5ECF4-Qۣ,>Bf<-}ibhnЯV_o"{>ՈR>> Gh.&#o~ 5.+ws_o|v9+WnZvDֶPT +RG\J Wj/n6r?CVJezf{ 0_ܭ>J53;(%:(s dG^NHs>"&Yl{pYv!Cw_9~ͩb<^lfWʕU՛i_jx?F$l0(~j=Y^Pӭ$fI${M8{MoB Q#;FU6m6bːY3_@奼r)CP"ę49==ۉw ]wzMOj 2;nYK#sͣMF}wXqw^u{҄¤@'l67!`ߥcg#y`)5ьMeFȂf3ܡ34т7D4,uN}ޓHewkpf&P:#݁ɠvv,IiӣnMqL{xhK ӴsTbap}WgF+koT)#X`zo>sqƐGyY;OiP_nzۚWelVDIӊbޭ*蚱>>|)kxNnIKipƓ 6XߢcnCZ6['w1n'9\曓g3rs!JRUa{k0ߺz?2&*΍?ۤu9=(ώ ֻ:3orC~\$o 2^m&:jhs_Hq{æno7t|6 lh7n?߰5f֬@GOeVUHIk+4G0Ѱ)HQʽQSuјtϤUK[ 3mdUlKgȋVnwvQ;yWoglTЛT5S8c5 8`ls v{ ZY%5nTڗQgY0u>nmKL5|,+4ת^S|qB,0̩\o;~R˩N/x/ʱ[+]cAus\}-XK%B~MjoPAWFczj.J1>bsJM18@Ϣ:y]-ЭPB>.f~-7~ k)INY$;%7۾~vەY1=P{مw:t!5;*'M.+\,Vj$QT[0A>6|JQs>h|}lMahz gA6U@@֘LAV 2}dI` z?z.阖\dk/ٟ/)dOD*j(. 2g@qH?fT&_2f tv dw{ d/Ȯrx`Oz &8c*ܿrt\q-*d\giK+ڻL )HAt0P+mcMF246]b 6Ϸ/1J)$PBA 7;KOfKPgqPZnalޞ\zB +%q9B0]]_0h}b @* ksHbt߇)fWSsvRgCoxk[KA_Xpo=O47De 8ە;@63@z X|9޽Swr}-3微v{$BnaIh<[otaZ$IӬZ"2m\Z@Wׅ,ڠ4 x&D6fv)4߬~&vYvdԹGm˃.'ϭpZ"sg +fIe +r\ B;LӠgMLso5u6wN.nK|+Wju>/=?lܮcҬmeGƝxX{S6BajYffrGV2u]뷗ŏoZ^R~j*MX4ˑNٸ?nQ|D&a_C\uv)=Wf0o-0Lz&Ltv`|lVy6}Y?{~[ͽ.r;eȠr搟5}Wz!:DӶQQx+(ճfs]]L΂QjS.L-UQk.».++\1<@*@O`E%RO4 p/Fpؿ 8"qg{\Z-kds2V+_Lc6˺0ϪE-){Lh,,[:SF*7Xq>6I/yq}!,9!l>zk+@?ot!KFeG^Ee٪gU?12/&`г޺II.^ >qd#eoxma^l]Kڲ L{9<\f仜{5us}Ġ.ژ?<!@]Lי%CQ\`h+FDzP5v]V=m\5'f/d}0 -,)҄řh%zF[W@}gMC֞26Kk>9UTkR`Rܠh2L +zo$} nu= YV!A0#hG5~ǕMnwWS+j)L\/f+*7WaYQ2NiYczv݆>gwn1 Pfb@) ߺW/tc2Z| Ydעඖ-d8ҾibqT{7hbϳl)MwGu;58;/j*bnM2O$qt"HTHR\U[y}?{`}nck܂FF\ߜ}'mn\akOnjtk7?2%wdalEqEUI_79:gS"oۊ&0JAse ꎥG6@25xషcn83fla.\7 ڪ)yt b6IcW K:gwߕ!SrAdԷǽ^8h+Q{zJ.w(Gjwa/,j`ߩ0k$7=V>b% L{eOEw)JBN_ȞBUNj(`Ǩd ybr(F۾HK!^--[z_O>=h3(ŚHmgCʃ5;ĪEkOţѨI̬ !Ragr^šG=ɡ٥&z+a MT%X/~ ghvy8A'V'^h1_\Ul 3c8 Du!En}뜌-FIZ=U=(ц[T9֧t TkUi%~l.%Kw38F u4 ^J?SMnt3tYguIq#ڸ1 3{ؾf3j!b:]ZnLZWʍa0l;',4w\ n +.2ld 4ykvls;`piɠ5߭JncW ֫2= fnN`XQ#5y6iOe#lP53DDh- ݧf5>71OX1jO%>a +ֲMy=CZeM!-p5ep}:\:lWpejaKex;&]w4'+wwLA;Tf7kOs\ْ^X!iP><ݔ<u׷y0x&7W=gM +8=!lv7*E?Hrs9I_(ɹZ;$gxm{IW'IwLJey+o` + rr)uHX%I\ 0b)a7{ q]r[ƻdTg=32fIcR %IZ)+2A;R$^K#$ɁtI%j 0u Dv E77{}okW0r?eF7d5CR%yA%yles:/{R&>I>_iIrcZj!xK+oRzċ$G5W)!e=7_xo H5y-8Yawe>mS0I$wP: jU@fiiҖ|o= +%y h$Iyc#{{\\L[hw9:/߼^R'~UtYPOU~!5њ|y3`;#`.KI~*@lIaB4SqR8㋤`M=BP|VW>Cx6M`![we+a!E o8>4.ҹܜl %r"ӻ֒bW&͖f&IQ['(AW^q.r?Q[ 4ڦ[)^wV]HlO93B8t/H ]PTP-Fh&`C%` 2_7祈*ґ̂~fE6I}k٤K};d`c' d-F@Z$W!wW.x&PwϷy\9fvri' z9xz˲-^1˧H+*PG4y= 7{?tlx/ v4n6p|Z#(\a]uw rIanOKX +^Hp]u YB05'5udL}vrvzR+?Q{wezk=~p;q16Ayzi2Zp7kۥEmi7ƬZvȲ'mg6ѿKB I@SX |}񒿊]!v&5ս+nwV3l/d8vBTr9ң߄Gt߂M\TNUOKRLZPR6tm=`w r(Jsh xq0tqٚD}|r#0lzzADihG@zo;;4ŒET 6NsS_$ Lqb3ukN=Y=/_ +7\u:fߚ ׽HVxMLfԅp_=3:N?=$7FU V[Ep0Rb+JN oXOZXF_g|7 UOp%De!wԮ rָȹ^C^5]Lr; ՚|dNq'REjJ>_N/`|55Pj(W]){佴*\/Y>$+'мI<i Vۉ3 eb֣S ̎A:*M5XcmuU]g(z }K+ƮIqIKk1sKj }]4(Zv9=62{d=MpOSE&|.Oк8:9^چGh'#S5n(\p5rsAZx((U֠."(# 8k ]h4[H%t_:/>qr`=C"Υʬy>51]q|J'{n(1樐 K{zaBIo_z?mS}8,h!pI*s^1n{HΛ;8xu(]6jE0}⠤o^crGRFy /'8Ծ*m!߯ptdO eNϰͳoMҒr>zfF_$%Q@ypu(ڼ}wyy.\ގ&}= 8MCiȟ͝0CU +~>.3^b+@0*'+ؔnzN +N +W縻ȨV"$Λ<h"w]hgwpz_mҿTwVˮ#_3tzC,H&\0>WT1; ,nω)m_t"=7(&'q^O.eojzZ Kt + +`Q:#R;ôۗз8O-YEUҕ6->0FjLk?h>pVmiՃ=b׎/9mKm> 'mjԘݗZfzW+R8!ˍ84DZ;@_uPϽخ\d]<3w\LC{*~ řD ?gIE_4|%wWϻ\Y n̵2YuR;b9$?'# &s7GxWoNxK5"ɫDxb/ kd7mkqxn{^^*JOQV + Mu #i|+S"cU*^z8hl͟Z{-RO5LyN~rv|r8Dg8*10߬WO*O/ʝ3CwsKx)߲k:j4wNDn_ڗ@6%{v[Mm,S>wX}ꗢcGah- ];e4멲lu)5f̎w/pK0aߊ8`e&Z/Gp7X8A\]..!^}Тָ 7'A2Ĕq V !b#s.+XѯmyلKr.7|gVn +_]SqP;ߨ:鸫٪Sh>C\:Ӏ1W%ړmE@Fqc:C1[ЅŸb  {~I o ._NŪ^7 :Zix}o˥]8]HySd"BsXk\Ö4iO?W>N",l bp 4C[ѠZ5W{ +m +f@CZFMX pH6QWHyTT3tjCʛ~99U.@CwF:aȨZO%{~ߚg#k6+}:8j>] KJuQMӖ} 6 +U"?+UZP% %fM&LS +g"4 5b,ސb%*ߤK֬h]¦cXh濪d,oQzg {ըm2XsoZAl&U;hQa_ZUywey?}'8bOF5 )էy+o1 qeT\d*VMS>jgf`ݖK2xc4ǺլF j+ FŶR<{3,/PmV~/x}uZ}z_R1](B їR%)%|LC7*O#,:ӶctH*_kT7w$^SIA3e\K7$e9OyoN~w,d8KkXbٗ $7%ں~|V ˋzŸ +Y+҉QKA4Rv}"=ɭ.徍WzD"uM\7f~?a)$'$2ni.HrIیW!5xg}H%%gz] tJ{(NjvŚ7͝ߞ׾ ^^sDƨ=y=덽Ϡ%{.|l83Iri~@G$O뭟*&JKLrHr~e_wqy9 BSgТ˵`Fc uxLNJ𩗲IAw27/ppb^7/iOo)-FlM$4Ѱl&dCݍq ?{mp9T* &߭ۧ}< wvޕ,;25QחC[$vuBMy{vN-ȱT&!~&BY?x 'O7HSiAG+۪Ss᭯_zu5](jբ;l;' ı3ϯh(Znw_¢RsY'֬7|"l]uK >^tJo5q֦מ퍳&Tey2/Ǽ6?5lt._κjyA>Ei3K񞍠?$E`.ʧ9>#7lpaMK9K6'ٜ}C,jq;orvhXmUna,[g}┗)')?a \.)#<;T#ZOw7_UtPee8-Ⱥ[3K˙~oXy$mf醇2 +7I60>XR8FrWzcnNЌ ťjC`[vJ226R}NB;Cq37Q"+k,VpZIeFIYlU|l{e@cʖ(ó7 ;h[!Fjn՝3NU1[~5ܙVQ^GŮG̦10|./I1^f?\u<8`azֆ,hFl,* ^\AGv[jh# +Q=+=dcҒףrRa;ka''+ڋ8@@'r:k,<43=wC*,oF^.6&5dhTC*Ue$SEus;q +> aOOǗb4vKq>) //ǷrmL:K7Y_}Ysf8' ӝ &߸aS?0%KcGlo6xZTEC,48 <h+GY?4~8)_]|p&lpW#g kjWu 7Zl63`3%MO#P)&ǧ5r3\Z=Z!m~xWG¹\ԅ&[uHu6i3gx ^\LzqyrIz on<'6gv^^@3GŘJA Yws>'8.yn*#n7oJ^-V*9>͝&} ޒܹ酪\tplqs.vR75,Sr_&zxa--bˮp?c}Kaϼ>e;~GŦ{WmDclJ` +9lzrd{c`K 6E%x!,ۑ&|yyWvаĤ9A߮-f,*)'ٙCQ1:' ƕ-45#X 彮8?%lY/g˚G\Oꓑ_n|}B&϶|,լ܎cۧR% LB>6sh,y>Ck(YŝwK մjP$Cgg4d ӏDDzP9|pі-rb-GD~1o!Lsh[ddvZ-Zo8wl9iQz9밧L@?l/.Egw1)_g)ّD5"hIiRcv1-Zߵ'N/b5% ҆0ZliljWnp404 ddMuXfmY]J7$b80XSuyaRGдѲY-Ee&&Cv\rC4ןUO=M]E֚a5Vju|)(Ea+u{l77^>1ʒz|F0x"+7blkZ0j퍪w11F vsW:Xiq(] ZYٽen)m7]?o0*jFF>f``QĐrß5d*/UloHPKeo7ݰg ~ś * ^Ta&w+hX@v+<;eyhB=6{divl\Z?|=l|Wxi4xpts+xZl^VaBoxRx ( >&^R?PaJOE)Es84;#Qh4v7ztU:f +X:mmtw_V0mK!MM95)k'M68+G4X𿩽to:, )GݝS3V 1ZRGy +ONOGS"?P0ESYo--#(f +Nߤ|aQ +7K9o +޽{ L\)qߟe _o%wϕtيݸk'7\|smRzrƟ Vcf+'yb~ *R~\Cӓ@/ `}dY]5<eC3pGUA_W.cтPPG%\D@=Ϛ[qft%5] +ξ,b6W=+kHg3Lr5$Hiޒ&<{.$9\' `@h-bΥ8v!*X<<ܳѲy&r>Bow\Î8@x +|wjڠ*TTF+i`XN!::'y(LC>䌏ޖKh˨֏P?G'+k; C1HJЭ?p[ѷW^ttǩf<]/b&?iEO(zxt|z{n*Ikݎ5nF=~>o`us +-X9+^b5"ۚ_¥/v}/V,K)L +'Lxr7ES Na#{1Wy+썘M#]=tF'sY8:^mn><ž S<9roAn;eCiN+ddNQ6kC?$z$c swn/I"wNPF;*<w'EH88+@EBM,w9[aQ\-?Y6d[-d6,|xdzW_Ik3&EG>ބ>1[[#C/^'=˥b^-h}s[@MmjH13]cQqmsC6ldK ~4_,&U^9 +V_;VuXn_ڮRqkc^Gg|n5x/FBP,L6M̆9)cq}/tuvԦfNݛ@Qh|ű"=qzYLTmڨ=e\;$p!KfezO5pc7lSunGo)6 B uռ߷a{ +^:dX{ځyܩk㦍/T-b6ʝTo +}gerbUwG8w-%'K,;}oLN^OAܲNOKښO2xB2haKX +Z{0QdbcfwF(}KiE?lK\(O9kz9ek?fݜHKZ33#5f9+MZTk@*z +~lcrڠG6FK`7p-%hme#5mȡ= +]U5V\ǚuck3-ՒL˗Sj`ܲ/mRBLLqQe\[\Iqcm4V.7?eھ m'?u}*v)C`k}ؙm˧,9=-N_-ZzeUuiNݏzU|=rSNRAbZ}<:#4x^wڴo3?۵?<1 Q/qW,?ܗ?Ol{цNDol,6]#|!JKn 7UdzZ6<>H`KNDF燵R9h|יZfoa[ srr Rzs!t{8n={W}*Zcgm9g nÅ.uk]NithX%*oe*h@✆ǖX$7qӝҥ1O9eoQMX,n^ںP3)v?Z7{ +m>-.}xTV%4 A>]MN/;,wguu6`yv02:LF`^ƺjy"*Keiy ^OQc3ze3gwvf!CaR@#}F{+#߱4s g rYpj[eNŪzUl nHӚ]cegG#$L|u6:# + e\p!Xa1ШN(\Es+T G w3Dxc] & ֦6OWت647=-rGm3do`H\YvXA +]jZ9TDΛ;<Ȯ^71Lªh]f[xcp2[p0~Y㶴tx1c,5P6xc+s+Yڎ8Ɯe7,&W${ί5 ];!|bҭkQCb$^=[fl-3ǭt-U)+Y6녹\&^q1aTQFzvO3c0BDGYaaܑ1\/:)l"yqJ5;-8q f^gU&rxbkYV2JTkQOCs^I<.zr|me$P۷h-^ßYjxsɳoc a'~xȚu ku) \S&=0Y?ڞ`6iscbE] Q(94lްaoQҨTblAĵWUF j4?jZ̚V rdQˉ67 _!S`{|1m]65)st%{kP~6*^DW@rn/s)_ijdV4%^僻 +V Ax`j ֶQukg/i68EjSDҀxid*PZ׫(N7paڋ h,),( +*;8ܫ`XAQźy# +>0+=ֹCn=sD +s?UmA~ b): VEXi$~83 %tƞ~k?dbL +xueYE7#QFKY2)ɭ Н94ERi! @OM"%MVv>\QuWe/T@Sb]t| ^RT&pN?O涍S%j ަxwRJ@ aD6)tKeCJg+.u_E4X4'G=N&0'I?>[h'RҎe-.[qµȔ1ۅ #ܷ,s$:$C]P4 @i1F;OԈ?'773>3Xm&x$l=RIO9Ax7f_g =":_c0Of_^|y\_{6Z T Nk]ڞFy:zSvd/=7UM{Ii va=*EO0t8;6;뷺Y`旇~>acV=c^ooy2t,v*(XQ¡z} +;mϷ9&H,pm4>-\j!onMZsn~5 ى+6c)ͳ DrU~ ]kqߌ&4%*\! &%%nbþMeAnd=ur; @l g}bT=w aD?W +(K^4<^^og-29J\^>(- h۾x(}ke﫢sm74{QCW߬' +eȒBs1n%4imK{SKJ::f{U+Mbt,7 6<{>r'g,瘻Ny,uVUCϫ3G8/=,AB[n=9Q>3e[S\s4̷ꙏ74,D#ݬ/u".# +!='}sg~\ iS5Ez\.#03-G3B+ۺ, 0VT)U bWb(e]ہ|wxꪻ9S3؏5]/kˌJ=M_\X義xqsA2D.֋㊲J]x{3p'ZG Kw|U^9wx‘K<39}.ڼ5_yo"[6U;;jWzZu9+aT~.R4WozoR 6.Q +9"!ُLtZwƆ:kU۹EjR=MNa1J7( 41l|ZJ?δ ÍEߧm|4G>v(^(pRKkMm4~+RB mb86K/Z\iE~ а֨R 5ޘtΟ;H0$e= >c7'P ׼ Lkըx<⳾ &u׺ +Tq%NAY8G뜲OٱY1W>F+h%*tI#!#+:k~;+Y2{{5Lxt)\Yc\16UuqYyH`7GC[ۏ2hv͉e![4q!8d'eCgϽA-b~̜QmdRC^Q x"؄/A-Ԥ :(-+#D_*zU+jsaRYl3wHL矷jU/))w8%|[{1{#&eFP3z[o@ A Zi[z@Ņl.M|EEĕV.M+i˭~gUd$ջ*Ԥb }dLsHe:*y2wݡo`6h]6X?i^#K?&~~a[}IH|4>=6kP"PXP3bmљEv"fjJSkVya6h:v[>4bsOԄs19_ WH@@ ^{]RhڴsZ ^p[q  /?}(TJr5'$9*$B[Gd5Hn.Wiم 6N *Ϲ1[v+ +Uo̜~~SC~t _bClE}ZiҲ?NJfܘËDIFX`u:H|lg>~}:C*ZyN6RMfW>7>tin :ܵ*ԠRPFp:6x]2ƨr#X5}?ۏĨvC)k`_Ưq+tAGN-'/Zho3MBMvA +npi a[w͎Wڱ?55k'FWW!ZB"7 w;]vyi$glJ8w + +/k /]$< jݩzA +>j&ULQe< +QF'~u8Gq%w^\mJ̰N'Xs}|N#Yv=OJOPCJMt..~+V u܀R-;+6*P=ck ̸ +WoXXhriɓAX=)^];SAQ{Lw|L&q ͱB-។9 1'`1>8Ѥ痋) +o) e}bؾ} VGJhW +GEZ_(2s @|tt)8~e|gӴ#4KLORʟ}Nl7LtXsTb3F^ +8`rC/; 9  `pxZ !JIɝVñe@cvsTևbL4Stٙ4Cc6'^= &<aD~NoUo%>(R#ym:`ICVbyY?IV1I[$!CIB FXE-/2oȎ[󵮺W^ +O>n}Vfr':M?_$3.`i./s{$arkO\j,m/ Ց8 g}7&Z+OX??~.۞EV4>s4{ -ˠΏwc/ɧ{'X3YeW%"qO<_gAaBˁcU'sG8<ݥwr={7Xx~2(tFýxapHHM ?ϲL>フkMokɠI*GxGݛ薻iY^r7 +ѷ^VU+笉ڟޥ4)WՋGJ>t#:j~*Utת?L;GIJ873%y`}L>|TyA;范zZI)woz1^7(N4-ESJΧ/6 ;6)@)'W]g)zpNiT$T;e6b֋uS<6B.8$i`#[sMJ=i`\MIZ[j͇bN;fY s憱jhV^N \.z%LYU ]ڔC򅚃aɭwP5΀jPAwi)\߂em j>p^&%%?eE3Mso[:Dw)k5#x87)7Dtk0vvI/Go?+Ja;1u v^l2Y~'srݵ}/+%?:xql۲03+bkdAvpaⷆ szg㪵5) @rVMN 2J^[/ZQwtMxܦBƌQ. EmYEB1 /<62rͪ&͎Kߏk]mv5nQմ/5r# Ez-[' MݜDܾ1#MRl>hO|ЊAnY)#Ƨ,F>'#fkRk^s:C墾 +o^|K/>!aa-j&攅 P%uaoHsss q}?;:M3E"eLb O^8^hm?4f\SS~Ź#-\.?% \guSՋm.VKٝ}f_?.!L__BY򼚉m'F4.Lg7q_k7rhF~x(%v>H> &P1g.SneV9]YP@tiHhTg_fK~SpطY0ߜCΚgЂi~Cg "Hz'6yxpK%bgU1'o}gzsᗹ%&z5cfVQQrASE=8U;sb=nZ}ߘZ1(MiwS=d$Rآ:ψBbXo̶<}k"z.F䉌[A\;x_yOR0Ј%/cyR0 }lxWn*C# Q[4>qp(PlS:M-iP๤t0^:8yȖvX + m#eob7[<7gc`fԈX6[2PƂIt~/ uN =v"Q4ԋ'Id:}}T~B77Sg"1ۇ?lC_M/E\LV9(|eD6w0w2|ئ3MP80#Eut,!޼\xPka>B/:F D/:fpߋuB#Zӵ'r&hItoIџ +BvcFȵs{/14U{QI@I`a@ P +!~6v†Ψ?}5jp28 +(%8O J jK4G̮Z;1]&U!#naNԭG?sNL9`4r;U9aX`b bq5HعX@= 6{(Ih~j#F1 ]y> -:-YrY38WҶLWU)Idm03rm%֠~ w[ +5J;rO[|Z PwuOt!:FQ/pa1icnOӹMR"6F= R O_V7vkNa[MJsĬFG}"޻N?:II~ӵi'ikui[iiއkEܢQ\gMk5S!j-WOtZjLi1[1ʝ!Z;wEMlhe{iffK[P; +ǚNRrUV{6&<Z=o¹[ys+44m)[P2qfaKSPXY{̌#ԞQ;F<5ꕗ+>/SδK6-XTYSDsIUװ Fʴ8++{lpF:uQ,H%kZ*:~k H!h ̀N7 3ZպMVY<+zbNXUg1ʝKSnr_dK&0ph&0X)@Y(eziXƂ\hڳBﮫ5sP'&j!zkj6v(PRYxsCW("?.]fB)8we f9v@ @EиǓG2.GNK&R8Ie=c}dxS։^Pq=d' $H<~1K/.9@{q4d7zd}ˇX#;lnXhVUiP=ug"Dg7hV/_L$%gd(E(cenGP)cxbIB ،,kׯxOt4[{<sݽ:{S>yk/D_J]=ݨI$I 5(M}ɢ2FNp6|љyڇ4у;?{ ݦw.Yٽ)iask4$.׮˼.fi^r<ٝSVe:᧫/IM`+/qějIv:U~2BXkP[N~ߥ Waz^,u(§ +O@E>w,ҁ>#澊]ݭ(ܼqo9EVNOBU~7Az|+`/P/C?it^>jby.ӰM~D,Vkdڃal;`YEF0f|CāύN:'#Oxysga)o'W> g|8xn.6SN!fU]&06kpJJhփܮ޸ +67KA`.y6k^Uu\eS +Ē]![aDe/%&?y%\#ox"'_!w=XޞH'ᵻ_7SW!ygŠ5RzkS\`cd}MVh ,VwQ&oG|g۶5h )`^g{Nt>m7Sn'*ˤW%=h96׃Y͇m6OvV[r['t.%f^Hm&S {,Ai[D{64 GğW;[oI[<8IίLh=v"xzgEe{s E+f{rI5üuaU +.S?qk ݏ) MhL&?\7fC<f#~Ad=]9ۍ%ۃٿn85slrV;llp?\^P}B;4:96OUe[UKTm{7z=Ci9y;ս[t[%sQͿ3UY{hԛ3l@NGTn:o{R +endstream endobj 194 0 obj <>stream +ˮkx$ z]PqC0DU*l\ 4o5i!` zq3xry*v/\ձwϔ0%sws!_zz%]1RGD'ec"jrjF]犱l&YzTB}EKHoCpzGCPg|$KDu/~u[Ey^Xeob;Ϭ鿓XV57&s +DĢlY*=_!axm3vEy +Ʌ~s\W۱ۮNaK7=קwUlS{"}@<޳cd;rHzqǑH'1{}_ x@qמ *7ͳ>p5U:yM=2c3/ ^Zο8CNcg?Bfɴ'kX=&׫b8׷<ݤeiMqux7B)<DŽ4[BUÔ9O;P'/%j:Ay_eߣsX8l7$?!-ʿp.2/3;;6>.Lle끖= $5~d$ Zaim3߳^ޔb<enixȏOK@^ +{<{NwV=ofr۔hRE?Z>]|`\2Ya2D*iq/x+|x/]1+2i~i}rMD^90ݙkFx+b{رP+VC:!mzF3-)pC$1/G~*B~Y}nTꅵ+=5- t7~^i557dwQWMϩM'w9}GuMn,qCŎ5QenՃMBBX;eښ:s|ƤTEY7t /#ߵ^YC_,bɧ{q)$We4 7=O<j}l,8ziȔ'-5|x!w- V +5Xuw@o`5ZWpUB], q:RgM$jQOA3OHeoVUI9U@ޣ<E$O^I|1 _crP(@jĥ +TUh.͖֮*gk0hK{ﲧ6dR+LxVqu93szRI1EIA^A8ouao\~y{bm(t̸]u{,i=å0k"=O8pShZeJ<_1q <4O[?Ԧ S1߄ +AaMv5œsq26Iި%wV;mk2Ň+)^ᆷNkZ''Rsj\vT)NJIDf4ySz3]]AY7;k|)WKݹ c<&Tzr2[羚6ɕ7ɵ5x r}/^}ɠ@K ft8`P:/AY=Jqŀ8A.]mJ("(;. g9|wۢ7o9zɫ"xJ  q5g i>{c=XMQm_*$a@ri u3FC`?eLK[zJ`)޺YFAJ1p; +Eb!eQ#@3Vg~>|.*<64쿶i~^dԦ_`:X+;h$N]W;ϡzƓ7i 오j$&ix`I23H!c7M2kj O4Y}_kȘП^ax4yRh=zzߔwfK:)˕g23Idq2 +$~{Elo/,ʚӧ;fEFzAn{UoJ"!O@_^\̢\x8#yJd|TqkGƛُ?wM$I٥<,J0q(e"r=-)|zKil_]~=*# qݦ'ǼM) qy_xR} qw{ᣫq|/ڻ٥U$XVD?A,ԍ,m];\n?#AEu3m@_>]٭]}ejx }:2k[1|(O=D΍Uf˛5w7d:C7D}O[i^vGzOJÙ䃴fZpٌ$[mnw9,Үө9N+B#2]3Bqt `yEj8H3MzOzCaJ+e=nϧ+럺sx6C<֐{-ZPw:݅T:$;/UB՘9YѼ^܇Gb>r\ȴ#T[S:"nz{nxi,ja 'n9MnU zJpVɞqy4 +Y|(k"iτυQvYQD8^j\qUxkS'F6f]szNE"DSG/E@{`Ma|#Pp卵S`@ò4P 1ٮHx@p.jYˊ=vn!5 +݉;s@@ik>FDfB $_8,\(T2{̴G'4\w:p5}lH‹D9Bve_|89 ∱2cSNFi %> 3igZߌR07zݹ0=6h_ZDzlREboE;mz[wBQao|eB%pIu@sARwl#P^j|79k-Ed!sSdNY¹+Eck\Ym ̅'*YZs!dQzGFEodf>|LV!ꑣG2IB*`w[ R*;oCר|'$6:Q/](htMDa^Z]vrl%} ԯmbU}j;ݑUΫ:<YC`urbjXe +lͬ 뛕W 5)RFR{L~X;D:BQ +鹎fm ޑcOGّ0ТȮ*ȳ*C2o2\D^#Zw+Yrؖ>EzOR\x|%'E$DMVVd&/ΓoucQoÆlbLJm׫2a +yV[F_R>Wy o$9iT B6/Rh0n<2b?YQܣrD>pɳ!De t[׫I]p-{t${K)iU᎚kQ&GZk-)KfK8Nc/gRXkkc09W*ydHl+M?1=#5OOK S6O[cgJ ҃4Bul5\+JޙrR}K%؈ۍ1 tc{EoRXeb> +mmLh3[ыpcewDž \fd.1' Na~8Wm6݀mSHH$v:DRx<*]Uk=_H?|Go~piH8kܼ>]Ֆlɮ 9D! 7wpښ18NTsc H<"ѦDj Z@gw8c +cS18{}CGѦd{Unb,Zو ;U02g-¦̱OQ'C-'ũ1 +{v#6d7L|L?{щDh&4办[x K+D})RHWRkoHQ_bwG@SaFAci;:{,*]!:dž僌wVWګ@I +߉Gy8+*eJ%<{Ѣz` `r_Ld_6ׇnU"W>(s!k9\t:DܴҨlЕgʎJ NK7rֽ%xR^uDEU# " |ҠnC^Aa ɧ xz@<~_G "F2VԻ|">\4ٺ5l:Rl߹Ib<' ?ː(P8y=nPUs\r`Kvfd oG_JS H_[dm,ź$V6 Zmu\Pb^aX 8ɕR/3zߵ|H,ucPcP{jMu0)b[kԩ8rqʄH@MNHg$ZP٣D eʪ3E&Rn񙓲5jWOaSOSCx0c#g`#Z(+z=hbneMKn ?=}u0h!yKoIv~9u V`ng قX}2`lwr!ˠ;p1\0o ahbnf~pj1c U:'7' +-=1,9RǪu jmqxen#}wmspyi=-1N9z- {BMF މ)F'Ɛ~՘H E[x\r;0sXqT|2t.q>wK/n>@@$N-Zo D zo: $Ss s$CR[_SJ1$S$ZOjJZxŝ:G1G}Eݺۖɍnν2!z/pM5neOLA-t vwGD~ǿH^/U-E=NZ'T3݊&mK͈[~SeOո$K͝flwq4ӧ!N<d%IUI"\J8r%V*sQg.;?3o#lUl~~fi#Jz%ŧe2;,{ SWZ: h/wx39ZoC:tR(moV{uV0f<)\ےK0lg`5“J@eblf?,-1v,ójnBvizۭA$nM擮B\'l8;}Œ,A mFr4 %t]q-gbIv2vʢ<:m|n*3=<㰵-Bʭl'#M؁vfR|x}W\L (S6=L2/ ,G;rRz5bѼ0Cʔ@n:0M231ǃy hzL|`/x} +ʞIQ#٨ e +Uй4~ y'NneOki=|SU& }sI>R,03lL5@`짽cUO~#Iؽ/./{w|[ڮ-)ls+|6 xm=;;uǻ<^kN:L-=M8(.+ >.B>Bʕn׷lsݒɭGС +W+Ӧ1f!mjw w[; +(n}ǜgf;Czڪa-ֵڽzywoYeop>/NC\q|*8QSn癘ӴUhqm8ƻ{k~yq:(W?'#T:HMw{>T85{6ߘHx2 vOzdHvĪPrSv݆Xۑc?nrcx<#g[^Бu-6Mj>iCOƲdnYtY4^0|idЩmGeuDcI>i43>~1O׹dؿ:I2vuvlE|V-<&Z¡eȵ}3ӝq7~.t :U Z>|KhlUt¸~TVA(Sҝ ѶX787SԹO˝=˭nHYۮX5ܪV}YYF<~ѩ$>jQ}lUZل +vhVr7w,J(׳9|bOb]=\_v.5}Bu|8lY6 +k@4Qb{:7b'~Zu0u7;T/ji|+y ɲrQ5i6ڎ{s[P_D*')}èG,7ӣ_3mf3 hDSN{E : ^{r| J e+g<⢗(7oJIѣ[Nx,4%({L"R;'eS% NОMZ FCcS]GKZg8uO'7c'3Y +rjhiyוLwž`H- +\vDR.tSb C|:n66Lƨxy$9 +-ط:&4ܡKh8= IouOYAl/(}_SV5l-|(|F9f1P䉈Q{pev[N-+ܓ} ؗ +*gu \;͇>_|N"sBdC.7={]Vuk1Z7drC[uRjk +tv՛,d#ބJyYp@~zrKt ݐ{&[rCs2'ĮpJss}}`YDs~b)3@{hJ㉺H]m=nx}_-pU:. ^+@9SK9m;@u4E"Y6RPL\U(R(@ + +ǀb P[<ߦu):kjf0lm)usuzS,tJ>afjgs&Ƴ\Ӈ @l +Z4URLkV@ 5c a yd[t(q)n_|0,ytC@wn?Kb-˔5gy9 +LR),gдC73 0H1@_Ȁ^`h:3lN%<^QN1m֯ۀ?)"NjG1`[cjm;E~13=Dvw `B:1sN}EZT|&`/w1"x|P(??Y9iz)p +׸ we{>TP0Lx0u<bOZ#viTLr,|5Ŷ>lUsHd%z񽳮G#v0;O*Pð|A57L~H鍌 b˥/#i /Σ2tJ2$ׅۃfnC~è0!wIU0QSTס7qHzna(a6|F+~6/wG_u.=5*jEKft{h΃ZͥݬƱ`za"TjnniX]0gvrBg} v85xtAsߥ^[ +sǣiuzxDž(Q܃PVy(ެ>[iӣݵ'a2E=#w/AY l z'h +]{x}}1:mq*4Zz0l)9#SS6h,lYߌ+*/-{W8:W3/yf0֪} 4z=2 9^w|mI<&iew껙v&Dd2 Xem>[w~ wpavkbNTOν1#uVoʞa= (|S1&["SW0a]V(+`^g\^۹I63,~8"V2}FD`v{7s*і'0!ïCww_N=Յ~36 35a{I0[c1Z,,2e\o#֭2> Զ;,}hT:}~i Dj`94;m576j-QJϟ*<爓y6nǵqhoTчfEe؀ /" tz8;}WSkVM;Lb[ٹ·Q̄xj+ա3>Vep-}9RaGYueYqLk::>4H^X:^뢓<:]VcR \OSR>|jid"VJcE=?+t4~m_RtWP)ZUK>tYV`fkj[+ِ.bl+Եofx϶G40n1z7*jҥ5g1мRJv[Qy e靥Պ)K5 S=qݲPQި8ޝ3rp-;F3!/e{\=&lWmTYTmϔz6J> xI{ YJ&;+]^+%y3+Dx&`ԕξ#Nrx`&)ӂ4UBФѫ/@hJu)9Ґٕ HZBe{qbX9plymߜ[mv| O6۲6bï>hѽ'hִF~=OִO]gu 9u,@EeZC0%glb,[!#9&-I-vƋoO/0O4ݠqqі}2B}>+D#/!03 7P+{HfVNv]IU775؍rr; RYb=8ղ8!@4yNo&cO_͆i#G'lv vHHV*:̄V +%oF-fFy[D| q~1s۞!A'²(j#ߪ~?ԼIȈfE `Rӻs}7r|kϣ:`y2Wf9&clQhݪ7h}M' ui)NZW7p(ڙ/[VAoɨpșmP>Pf!|,MhvtLXrܽ9a/40JAKe>f½dfBϙ z +l$r[=-BYVo$9->鼼tV`gJ{<_6rC݆+._Q'0E|:Ov3ϥC,ӆt!3S١C>4J8]'MmHVYBPG&ooMqo.ݤL,·/itԙe~zɌ7: G&U2^te):(Sޚ w::T\#$j{ o]Ge`}6:02T,Ht j而裕+ pݺolX5,2/˥ZK UhDG "I7AXtm8]K؍}XYcPCvٸ2Al%d%R dF]v|`VZ:i2gY)3lҞvU{@;J͉x?Y ^@8WgOt*O)dñSW*Yfl!B@7ekʰKۊcR-!MJ N|ȭT;?t"|o k5\1%MYh9v^UҮ1tTb(ϲ9r Jhћ/U +3J g6qu.mTT}= +bklGT8u~h}],k:zUTޣ%ԟ "<O6(zux|Z:sjy=~L]Q`V&KaR[(#69-b9[`7\3G8{/@VW~dAS4 H)_Kavi]瀴 k-YzIP=q8 yK1ZuE}uhVgL¦{ YUHaȈp~6@9X@f>dXJ q@'Pj:)>_tS\6JDB+tv)6GWƍfpfxt`x*曔Jr$QDz>ա=(z)o*rOt3S`p c5̀fyf)UszW y'b OX]+.p%seԚKza̍e,:^z#߉ X(e +*`_a3vCO 3g&99Bxb^%b-xx|Ǎƻ{`A"?s[n,V=veL]QiCiȽc3˝KڈBqBa.~E)iQX3?@l0Ri6uɧ?|SR-2Lo c^}> vܶԓ9rCe%E늍zD3&b+2=?"$OV8[~_4ԟ|K@dt! isN +6?{.:_>%.!}x#wh$SS=B:Xϕw>Emd-M\ׅ s6pJ.N?M>-7uxz`7n3§O="Ol MlO'UvYIM^\^fZ'~^4+E//4Ys9r6&K/)DtU%mڒa67%~ qg5WtFː>l;_xFaneՒ̅*f)ɰ$n s>JoSzW%w8B~M[YIZXW]O["7V YS7a ){/6']Fmn<hs1JHJ0av) (n5 Vpů)\cr_>j;:Ozf˩0$;id|lF#( Cѥ jKߕ+#5Z#xqfۍޭK_u}Nyק)Ic>Vͬ6n,][LUss40\>zhk]o}d{M z>ZQXH]0Ej-׍֨ σ]7I.X6Æ nFawݟ9 i]I?6"1zf&@NԠ0afmWE BbVyƆn)'ל<ѳE5L!rǕ +½~|:b@n'G~;2VN]^Y_wa'w>l7iet>hj+iXE9[:G^4|zhz(ԉu/Mw1>;i8|ֆVT(dJz~7EYWn#YM&eaA}U8wl.[n'4iuRK STXab[oNo:ge`S-﷚!mum֜K~seXiϝ _Yc[ϵR=?6߭7g2pHaGXdzD#_Cx\]63$:k2unѷ]2l|cvѴ{>{pD?*_v梶ֆF3Nϯq/R:F{].VZ+6^=*HN^doصX 尿ؘog'w,0hQv@MiVy +3:`UHOȁ/{Z2Oނ*,㦴 RM}UR9++.5gp]p»Jïy!k6\MfdVTu^-<= "+ Κ;}=$oVOb׻6S=P.|=hyu~QW\nJHz \مY 2kԲZ)߫\PUivDQrΈb„YL7:z҆n.k0MWmH-+);" +1-sdR Ushd׉|֊;< +k4d+΂)ͅufm b!' 7 /(UR$ F7y[=;r-r .Q ^1ŢR-fOTt.ϤܓO!cTׅGt}ą2ZRP}qcyd hߚŀa#E:4Ś+М3 TMnU<:[9i%+I~G%rDM:9Qݍׂ?NrقP 8!0LqRLC)6`&X+Ew +)zJ13D700N$Oʬh8hgJ́D׆h,u_plyeZؼB]kw~ oB;(`"H8i,g%w.2n8;*#t5"Rl Rs6|hE*LBgT&d,U[4F$ ul8HZWNcmjH>3\.)wךB- +F@( 1̤@(@h2huRWj\t0u[ C"S:~-߈0Xc wkKA_.&9~ _2p O /;66ʖƦUIh؝ Z%| E=wȧ?m.صvjSQ. DO7C8@M/=mƛmn]ī>;-eos0Ґ|g)ߧQ${N4zV:Z]AgE7`VZV\>@[|Z¸HEɏ=`i/&GN=wIznLpfg?V?ϵvlN}HH@։U,dau{;sm ;[62aw1N< GD9X!8É&{CS Q|;ݾqsϞKxX7I`.u7K|}~}y[Q[G[jDːh)7ilI Aq@Q᳣//48Ҫf܄{ٯm׻lAN诊* }l=',۟8~'}v2$0vNR;tZ;H=iiRަǴV888zIZ4׾u9-?T0Kb+{8lj܄Ѽ=@ํ[:ԧ:] YEZ w QRU:ܿC.g;^0ʱ=r?B^nw舋5ʪM97lc( 2zqxdި7{nG._r5I.eVU䌶/P\>Cӟ"ٕq(aUAh^}j?v֟}ߒ_iunW_AyY#njW,֤[>]UXy|)&|~ʖǕܼ,W +ӽ\vMak73W|u3~,L)QK u((4 D_=ޒ{7a+W ·.Ux|~•y*VGˋ+ao^ٮzcCvycVK67JT/>δTMDJ{mQhK9ٟZKUApJya_v0boz?[yyLGJURrR߬5?ZiQ;} +rw4l*jst4 +(yiuk e1gh:NjG fbk٨{Mj.*q}SϙEυ+N&ln1/f#$ڰ;iڦPߍZU;gCM|No)+C^aRlJ +i'|5+ϗ?+ -s,c<-uŹ1h,Eù~=jiUWדV@W1]ߕq&7owE_:7)Z0Ò@qLJ)kGS=}9^l;}k`<,]+0^83l;si]fPvW ␔z-P71̟B]6nN1gxCeMd[j5(N&zlTzIRs4d`Sgvd8qLȊxL^Yc+ORY11bhBF ;>=+R {mys@I:eál|YU[N5:(v| Eܾ#u,k?qN)vX7~:O1z%*#µR|#4 +y BO1wq_l'D/@O4ubQ\ruK|sHmqW07уzZv>{>K_ +n*'@igKPBj|;Re> +Pr=Y)XZC76t )^|y0lI](w" b, ,A=q5t54IS6eӡ{\г +ݍ(q!3Ys"sE,;^HЧuNmSS[9E}9z50ڻY1 [ G8zq: ;E[w nĀi=!'cEf1-U1QKbb +J3NFwvU=` [*Eq;D!z@<npm7F?߀K8*.\y]0h~o89~"fҷs_~>Rm +Uu-Ye_ CG yߍ E.Cmա|$'ZkKB?[B\oz@t% ĝdxux@鶇n{[@|rj"\,gY6^ѹ<] }8`m̟&_O7l_ߨriaL@ǿ(+5PB^nFP(oxsꍥ)ȌZĬP;ܖ;nŻ?> ;ag!p[OяkX&#։b$ܝvnCnc;S6j?EV7f'_M3?π0- 4wNrT98SU;@>}[ K6*xmd| ʑ#U"U,Cn,>=e0^F4_E3Z_1_AکI:w1,I}OmS={KMag?NƱ [¸&l󳏖E!35saƎCNF=1aOOkw8gpVޭ5}MysV6Fw9:gϫ>.C +.K[7Ugf1 IQR99Vߕ {ܲ©<䫹C?6,svY<;fY e %&~uoBdAg-,vb^qwǓc峚[0e$ pfCbChLSiDs8R侓WަZ=|ֻu8 m6ث +Dw׵Ѿ}Zy|+ O1B~*QzagÉG0Bc`wr|TYߨn]j_<-F=|$#<} +m5&[YlP'6SKvU&ƲIM T u!9JͯR&rGc@n\&hQIZ.aݗ&sZgrqC8jFۺi#оts#oԳ~vzCunK}}d2j)51׵gIX,S7xhVGNv?}KZr;CQoym,@vmŏE:u1[ܖ֒awR ժz[PH;Zl\|1LaۯqCx[+<w~T4^a犋(ɺ`S5, YSJb8//;z߫:7+,dQپV|<,cgBUۥaŸ"iYwb'VufR1sOcY:hggԖN&@,@*9Oˈ+[wWnWOdfCi˩g3Kci\jЇbHW|4uq}>DaJoHs%O߭ᢪ?#ǐݮS<6 m ]kؤv"y(QGT|#rqSJa-;RD +qVmdNCETAFmM!?LDRjMnk{MfvNV`2 vlj[v`nۯaeU^{ܫ%8<6j$fuc6^uU nmɴ&*MI_1%cÔ ?ub~>Y9޹>ԂKe7Wsꘅ.Sk/)KIz%U Uey XDۗ?vu9~4sْUE!-7sOt(Fj]>Ob9xaC=b)Ḛ*U)tbT +աf?)]1PL8BnH^J5{yRٲ^q"E!7LtJO[xbW4k]~TuESD?Y~7\wdA[3Brf+ccp"^U'RglMޏkCtkϏc%b~ +}TozӻfۈJ™m K2!] g.7: \n\~jekB=O-DŽnW[ԪJ}rsxR{+ D ƒfcW۪1_rU9Ls3!8+c\nE#d+J{ĬSs"#S:YߵK͚jB|ʵhveuhΘZcgBtno,[VG >?6YD!gqۚ]t[1;!>S +:o-_-M%:*[ߎK/h :TlP\$ER.XRPW:,V4Ƕy^qPpt0;fjqL3N*&fcѨ(qIhnH3-FgH| 20-0J aݾVw056TbݖQٲO8ER`a6WWt\HǥjՂ-щL;&M I|T;BU%._腇Op_Qw?Zuo>UCiʾX\C89ZUl((BXY4muz׾zb??!"ygO(/|$(^\Qla2le7a&w: ,W)b3uGEFTIJ,Kvr)Z̖tT[in]!^k!TypE}pbx羀G(NYg Sk<.졅v`E'TG}h{<~,։`D?IW?ɜʟ:[%2_MW:1b*> qXTGB+j-,doWH}B;V\ +Far~Ys18kp "Y# w~,x:_M_@x;mn&e}ۚģ].QPD6k3;^ +rQdy^yw 'mHf+n] qw}});9ycS\>@kpeu|VVaL| +!#z=I8鹅2:C%%8j߉,6z;?w\MrJG]/ʆwuW%4P2؋E-LVP9-~gҿTu[3¶: E.Mj=^I-[;yKk+ey-V+lIQAx*żpQS<oSϥX`Q_h>.Q@NH˝yh wHɁe6W~C^ +pe +l㧘Lާ8J0 +mXvW6(RP zA rc[ӗ6rw&-)y=#ӫ݄5']dq|jêL:o]@\; 3fw83`it瀬v 'm񟜖* g! !Ůȡd > рZ11qHKeaI.­:;FZ4#Mg`M3T쥘|5$րZ1AhJZV#E h^u)@@'c;,_)ε 2G{aKDݘfG +%"'ܘORj0աM:=LWzj/J  >000ݶH=X, +6)`1G,)D?/"\MLiwCf*#p,m];`` waNEm&fIPP|V+>S=(%pt^F&7pߎ-75373o~-?kOxX_<2FN+WA>Y@h/`Yy"cHtn+o7bTRid$d:lBpfyAC%LL_?aB¯TXցTa{ 1^Qs%( :{>uG% ӿjgYx7[wq u"+!skHkRjٻԷq)~<9ߴ ذ[KZo +% du1놾˗.Tp7ʼs5`Nvmbafզvv]V:\Z,>AY:kuOʣqY +g5~-J n0o'9:l[ W.a犰eldvʚ 'UvZe/Ilc _d'.'G'^ 9ꋊ1$|0a?r1]v\_}/ [w!c[ϔZ>svccP>{dGrrgQC1!^>Jrg`gqY6[impבVmkaq|qr,oK㤶n}3|0DA߿}d6NsQ tz!m }Zwuq^i-Q+,9ۖfS'N'KxgMyyց݇6g6?] +D;PL|,tM6p' x׾a/˓3Vk+3Ĵoͨy7mdo,@mZÓuPҪސBz:R)ӡԜÐSnN迓[]Zڛ/H%.4#6UXVԼ7mx.jּ[opN]3%>S-KmW杫*:3i9:fm+X@RWu˸S{xi +/ /c%z<<{ `ew[K[޸PY74yF儶UuרLRr]We{!᯴̒r5Id~ϛw=uQi,`«kQqKqג3 OwZyNÃ&ʤ2yTJ#w+ )i/,k;,!Y^\T6뙍_:nEx'&9#Xh,3!G#`<%djuThMK=vy+h٨Z[[ublBdґY(EĝڬqiOeCl=֊*Fh @4}khljZN?)aytYaVfw+0Gwʅȳ1V1tmL61=~f\._ސ@ϢZM`}xz1$9mxE3u[]Z#eRlJ5pG*%{Z.>{CX~om{R} +|m-wK. hTⷾcH -YN_/{c=3X,zH{b|> 7wS+V {-Uig,T"7@bR<\0QJE_|~+(T)n->jЬXiQuJTtPUD{J\a#y26/$wJ[uh Ϩ}OxiOB|}.}>Wuv[1t6[Pҡ +'Ikiɑ-rVElαщcfǐ3k@ ,AOH]wRs|}QЭ'W3 H's7Dt! +Ox=PBsn \i9qYzsV̱'Ui0UR1cPu}նDۣqJgiT1m yW7Z BқL_EEo9(܃((ΏQi3ϖ.?g̪C/v6-iM-:>>YJ''Ƒlȳ +RiA7{gPN.kOߩ7kû$&˙5If1/16_f0ެѤӤwQ:I'bFU ;Iݯ^Oy܅'Tµj>Beo6iV]llly`yձ>KÀkQ(Ja}$ciZsߝI1TH23rͣ?\;:ćzkU}*+6Y̸( eu4&jW+ 8t174Xff&d]ѱɎ+uQ?uvtL)21- ?'}545ĬsO :?zhƨ]2h>=!8!hZ6-*a}> ܡ})lg]`pK&Vu˿bJP\!6/E: E(KXi輀+h:1|ͪ +!m h{^ !&~-o<}WӰ1:|JA`>p[F)S츔IPK?دO/gNDZ*tGA+yF!bT{7-~|sWLQnsf=qn-. \Q9n"9d}(('5.6'5t +/ftx.Jzid]lټW:uR$w<^d-HUVa_;D1ryLA$86ad5ʾU2w|f֝YOZA\qWPcQϗBZ>~mJRlz_na&`9WcZF>w :Gb6$]9C d$7?IP?c(/z{ @T!⛙$SDyȰHXX()2궖dklbjG#PwYLB{/P {0o\V2J2Xe2@BSI>;Mы<v0 +*@&@=@P7Z_j5w)NJ^}goٹ$P(:v=q8$3EdS+`HpCBNY.,؆B\qeX)UX]/e)`&Nqgh U.|Ehq/\?zy~LFQ+LTRz2C P@:ב V:٤h_RYO"O{H!xc4x3zEK^?Te!F?9%|M|rκh:FlXZ; k%(+B=@xG=@Dq} ,DžL)&5@< ^; +f>VR$8_4Em]r19OEbA,`Pe_e'L5<Uʀ . Wȱ!S +P/9 P~ϖ.YԨj[X@uKM@y:3e{i~Kۋa +x;C +QV?&k"6ؾsXL9Ts|5 LA~ i|ys `:bWL`@l9E4t>Fa۶-j/a: +b Vز m8jkoc<f*O4Α<`8bM8/'׬UW;Ŕ\Q)Kjp^CS/f0p kejeO-#AgT_.J?k/2`u Dscb&!0Rb t 7&'0k1C/~k..CCBs&]3'4aagϭleYD\Nל6qJ ,b2/]?.٨.T۞xϏg\ڳ{~GfX! *Cf`kofXQtXOS^EHx fnMc _L03I>;=npx~cG}~`gxi] +M5\L6iZ\ثq$}j,~.ٓQͱ-+ĥ:=v&|/d` gxu%Sَ+|ߦE"jQ_Os)i3R4|Ab~*yxm5rve5#PAAs٪.@xhf˴ؽ+˵VI[sq<'sZEqaY*XW+6 iR7glMKc[DXrr^ ]]=Tݻ|S:!/;sR^)-_-s)g +۩F$.[̿kǬ*L;/0wW.2>HO7lsTa8:pLn*7q]o,n+z8e,x[r!U)rf'a[^\hE,JK4:͹U૕, Vθpվɥ̆_3m?=jx[NO5 3_ovS?=fY뚶)هedf R4( TV,%Ad3J%E:YWy u3'F\Yp` 615~Z/ɵc]3}9V,x:{}wkjcZhYS-6îюJ T E+fya\UN{I>3%Vc}2]0=C4CMCU䗚'a"Mj.i&sj~]xߙC$DAϺJP6_˵!|Hzol9cObX{0X*] +v5#=_ڑB 2+$:†'c$ň}PǦmJ?z^{U +.&rvMPByaAS#eCҟ젛'P7T?q(@.j+_ v[bwT0! ]%ҦƉlbCzwv{?H>λ:\}Y[5UC7^_=/N(-32z J?* ؐ]S^?-G[7͟qZch]dF)hvi8 I-gS,, ȑrUy뉼3ȅDI%xަ:^?y?@Fm@ xb{]%5*xɸܽSYUz5dLRN:% 7sCQ=[Sjv?Ϳ*wߟ?8Qm7y4% D7@D1_Ĝ©]ʞa =(k%ĝ 5bfȾKVBwV[(unAk+=Nَ{̟_@2O*L2*S։9 ԁ7@sSEvQrQڹ:D!_B ;Ov0SӟJ؋:I8M7eis( ]L4l@W$ Ti* +@B"ϟ&NΕ{.[Bk43i78xZI9msNo1<7Kw@@_BD0Г3%xDkd}ZqT/MfO?Džk%j]^|X:V" Kzڕޣv6cxnPYoGw@#g @>LaH;YeWַ{H9r0sֶiˬuw^{/ +NqmE&W!7EKG4BOntĹFNe>wxp+lhY߈ۆRz˓^ ױ_jelGǥ}摖{F0OOCM4KńqgѽA#YáNx~xRd-ХGnh7ݐg]>&MNoK,\.mt[$Skq_+7~ke_0wd6ȼܲu>u7C lN}BD(-u=Slw1UA^wIa8ٔksic'MO@6# HS_^ǹVܸ-z5{zT_Ɇa_Ļ +TVԖBao*eq OC&<🤁㸸&?̲ql폡N <'n^go"O`,BRAZeS! +sBAeS. ]*/-xbϛ QpH7}%?)ų'`D"c3[)WT7]ֿ㨆-N%d^rU8ScaCKq>&-o]T4+ },8XU1?) -5ZiXɽGȏ@frp^+qE-p+ٓS=дSkE +®{|bc3dFD}kiyib.%VMd3efۺ^[>EkVhk-p}&3S֞6FP}F`(ẐgY&+c=ȝQFȣp}sj2+ߩ}>aہb-\gI瞨Iel(37N?T/.ovnA&>qy(n]y=ߜNK9Qd7p~KeHSRVbn=\O-աd(X?V5Om'3L+ec11]Ljm5Ϩ)=w0ؿlu^e0NC+Pdm,&=Kzr=d47TiCy+6~˟ fڝWyF) wݐ%w'ޞNi<ZmV-,̝.@̝d;KwX5lvߋ#LjL?~:DMcQZyZ w+w_:C4|liVݱ"s:3c"Z~hGnhCjHANb*"EEpIFd"eB}˗b!tM}x☔#}W wNl|jXMneLAONi4\ 9 }9Yiv%&+waEX/Tt\xǷoBP0:ssD.??r+g.)/,ʛ؝ #^Lރv拚ڗ"Fε"T$s %VLaHvN3^.iWyϫ)afsZ 5YjᫌA>0j8.TQNyBض_7'd48ߪ*kS7r>A$"obu`XHs4<>8٠=&&zq$mumAD%*M m>ߍ2ٴ 2_0D%tfW !pvP 5}GrAZ=\W V7KU{*"9KN T%D{WHCoEiu2?/af~bӢ=5+]QHMv|9eksm!&yD['081 M(%!wl"*TWCx5Mo,e6 "N_'RU_̶J#:`3˕ŵ?cnJ%7Y}ϼp|=D]=:b'sBwb:`x8#x{43W p%;D^6nਵ8F#ǩ,aoeg߯j˸-]׀YTb0aj$ 3 vmh|ȃ?CSN|`'Dv?Kg@;SpĮfԊP +HecE%iA +"UH6cr0=)LHќfZ;tlcAc@-Arl![!@˒hK^~-]3y. +,B[ɒpohiq +#")љ3 6=t33m"<`F0n00gw B% 뀙JH?0=POw.\7)nf'2)i*\R.$_;.7~Rl]NMWZSrN: 0op߽$9Dz%v|~\IlNt|y dӅC=IdQB]!|`S O@-`K#OD 7éP+Z/Ccﺟ )4#)xNM28no\HRMb4@ZDC F, Ri=VIX)^Ƽv{Sh7D_Z\Omr9~V?9ϟ߿7Z_Xo6l9NʧJl(@٢Ut[tGzdaUu2̛Cia8ߨmoKcGqX:u^Oz%rd6},yOc//M +u'fdVrxw|>Z!9'lpT&&۽nNb#-nu28.^g1`|Y0%7* P{Ƀ,$GŒ4qi@ڏRd7V.K[2v+iiF"sH/[slPt7mln"pS~L}gξwmnE[:֭rʹ[xsUw60kQVa;W]VjAd*y9eVB5^4!AH o2eɢ}*7mX}Rin ?k s9S_k9.j@Mݭ>*TT*6,i=8N3:uq{!c;q{w,% )^{a;wY ȓd,y>sU쾓)%mdװSOxrdsP5I6 m]ٞ. \ي +tha)jaa륅}X?@O*^Pzꅼװp:`Dr{[qM19bgpZ'jFdžO5ț];s.&bf!FLx}?[z˺]ƺ7cY)4[IO:m[piv뎧 gpqN5Dv#@|ClӊYD$klYb`>wz5368GL [5^k.u ?Jf:)nj))uDmu7gud,Jf#,%5|TYQC#4RkQ27 úvI A˼jTQJV镻UuaɎlK~$b4<(Aۋ\bZq6-CsECF[Τ3cX[S +z_굼ڠVdo[%mZvjAR&!yؓɋs֯V. +_(Pߖ!/s,Ϟ6wh 7ܡYŸCUbZϤ,eˌ^/t8<ǧb+Wy(6nm_.cxNb)'={!7\XVi+sV-6>đD^.r+|A*#+6fʊuZS vGwiNMb=Ld59; +Yw'o+0Hi} tb8.|5 +͙ԙn2a[~KكM}F gzO*_W4_aTTj*Wt67Cҥ Aƪ0Oy: f{fԆ;3'nU]JEѿ#~N="Y25W;Tƾ/(1g#I,N +o#"_2D>-bY +0Vx,8pki~J4C)db9s]o՗`^U;y^h[ݨ}';9`1+K&7[#1OhK7#o*pf /N~a{LZL-{cO掔=++/U7%Cjsg({_'k t/$QQ ɹxSxh>81~9b0 +I%6S=|ݜE vMP6Wq|p`{ØtI;5<Q؛%(!U|3xX~pfbUDŽ⼊Uv6=*o"\m!@M WUh>0U`jZ2S+ f?.ZA3fxNL[rHS<ܮA_sjqńBυ 6MA"YwA:踶8 [l z/1lfNAl7jl}VeEjf^>`9l)Q`OjuifJ:X%V'`n`uyiR6不Z*-]Nlgz0V|GQqGo) z~cCmQ~إtg|Mؗ)q')%Ȩ pZ' Y#|m(*) m"?(kcG܆y'^?TYp,0imQuGoW2G&(/ .QI~DK_'QF63o0_ qe_*ym\ lx#_Iy@6=4n[?{@ 8]\Y~X@t5N&wQO$ޤx^b@B@4 @ _@Y@x,|)ʑ-]̙4\x}Hr>pE\}P튡X̝֋Qo)9 r9oY`t/j_#uf_+r(6( [LJd7KoQ~3i[0l4sO*zMkSOς3AIr՘%]T%š SD֔n:7m@G.`1)XUlcFk pH =C23`GUdW~YI&^"a?mS?Ce<9VzVkMb3/- +C@ L#E|wCW7]y~D´=#n㮃(ǡ }f#"}l{rn 3<{g˹ӐtḰ.歺vSomEV7Rcr(2bܓNsld"rVf!QUZ*NNU딦^a)Cn* +%^qw;Dkǧn m,<.2#?3fɌtEiZŻ_I82iQE}8owȭ4{- R@oiuSݦH4mruzobjel$o77~4ڹYt' r8j42.r8T9#L6 97=riAM!wmTϙnH#͞4Mࡍߪ6dh&Vu]ٴaXMZS7WJ~'zLD%{z:OUؖX[i߿VkQ<ҸUaUCVBkm?M4J#R{lڈx_4F{ʻz,^y۰C}/u$s=FVS%;)_ +s<}[QJ/Nl旿h7%iOF'ɓs*i@J}VK곟K7Zf32~\ Ӻ"3ID"N.7V e_; go jL<@ }q\hkg ٓFj{o#.UmNbS},)N LbT{w '}X>ΰrF-vQKdXp{˝*;8owqjT^35(n\vILGۻTuLiY4o{ɓ9EhȞ̊jO> $ZXTY]Θ~9oV34O^ginF.xYvp)z}>ky~-#AaW2ל'8β[s46[l^un_]ߌ?ٲ/}]mJQuOoyW^qݐg_vdq.}4>gXM2Mߑ&!`4(WVw޼tg4{sV2 }vk뢶AQ_gWzŊ|뀽`yXsp=JVo8(&F#&",RG(d*3G~3!>e%sd8OoeH'nCN=>ņb-@2%Ok]\Ub9e7`?ISB)8>̮DE_YZBN^ѭX(&>l&( &=_Y>I0ZjghYBu2MWCvc,e[ka KXAVB5~+v<v|sBn`b2 na^Qf:fû@?fQD[4"j-)$('F~#<5Kmނ}>-y\$tu1;,xn0qȦDdmk:ַL')_ǾY:ŵI?@YrKiH> +32ۏ/`|M"7Wp(A}9Xz}F2Ar0e0}ƾ +U7+>x,V9c5nD?m5}o(hؚ32%i}A,-G'X\: %9C+c3U|tsD-[ oJ`\uJ(eכȁP3*""s)Oac.)fcd\} +J]w^>xɆ8CJ lJX`gxh}1.RCb"mEԈMN0w?~|.| L5+Cņ%lS +jc_9kJ}9jO6A-]1u'FHJk'>~C? ZNiHkҝktۧZyNMZܔ*!lzy58jAS2!c^NwqFt=|SOy&@֒ȸ >Iqvdda}w)$,cAV‘Jr`앯g{dFE=ՙV]`]q'!WMt֋Vg" 4P1ԺUj["J/PE!ՓE=XNǖ| 2\XڶۈR@9PhQPϻ_==3O%:]J:Y,p ;Hپ +rqB;u9",ai@qղW(ST(@[:geJ})@%^G>G7=ufr4Sbӷ}{X3P\Ҩ)8\NXDSt u;M;( 6K7cU3=! ayXhkD(j.oFuI“I䌤BFjy# `L=^ +" ZbceπXr b]*tc0 0>ܱD\l,j&_k'zom,#V-WzYXRS @ X 6\ύm6wH<F (6k\x<GA읭AloALճ ]Ȱyax?g>R)cQsdd޺[ &{0)>rau"ʀXe LM-Ӈ#{ pe!A%WK, +24 # Q s]|[)\oBiȄ)WqܺŎZh=?GE,s"hJWHԻx@|6 RHĈ,H +HH ($5Q$JHK;???" TS2OoG#|}B'otDΟB3z->@b I|r}5$HFoyVj )t1H @;zI-SbO@t-# 4A29Q -Q-|Sdw}Ff/(~|CDtfO6ka\\)i?Aaߤ9 U #m ҭK8HG}r}fBX<>,u 0hD봣B2>tϡzƮ ҵToJ xmd@ {I` k%Scl%Jhb&*?.f.w$j!s*]Oґu9W;,ŇAAgajoO5[NZACA!B|ȀA~oa 5FL&:Ip.Rnn9b fh{BD~Au`nh~zՆQi + JT.VyE3NE:"}? ,z'$ ]g3+oDžAޏl+*oz:A A wPpMa}:g7\wtlD\;vO-NJWj6Ν9Q}V~v8ږRr˥&F:& Dm :COyA;Rn>+COGڧWe*{4 -iOcXnt BFZqFCE#/G>"N/ |dDp ORftGqux`0Gb7Ġ =TBO05(7{z^)Y,*Y]k|Ӓ2=i-4"wfwR(abS9g&{;:?("Tc$W?O o[|%N*]z6 \fGn!l棜lPnZ+2/&7_P|*i)X\5QԠzK~w%w* c "9M1Rff} +{rv1_مrYĦ&eL\͇A3z[H4a Abv:V &  O\X_{ы\?Y2P<Էauea(/d}m(gثwHoYzYTȦաIpmn"TzߵLZK5 rfO2 paM8-j/ˆv @yfvqCwL467,:T[ml šJvS^n掠F &I e[{Nf\СK>xg?07$zh@#Myba3dJ5eX5gnsaݤb/q#k;Y3!R^]v[jonG*Q%[)nר2=BKuJ+ +[Jݓڻ );h!\=>.ڎ=_ka#tƠtR\d\E)LSJceT{JBvVuM祭\lW}g 2 ݺխm>znKX~pT|"dn^{i\+yPvtg[Urc^.TO|(HQ *ho ]Y-˅+7wwי^e:gJ+%7\Oٝ~/fg#bjv6Rٔfw;9~~z,[CT-3ΥSu ۈRm%tno7=1Xd%}j9;=+)q%2l6ʙ Z2k2};JzbH9jpZK9NrnjX¦#dvWlZx-Sˌߊ rQ-7ɈRv ݻ!fgݤM#IJIYLo`].g9uKBf<VNϕLrkuv'OZ~<0>pyoŻ ^#45ѧp$<8iRfG1Bc<.wet[L6MJt򑤘йd#aP`b1%$J&Ļet#o) 46XF؞l?T} ؾr3,7ѱTxP08<̪ )#$&)hu"xOv*"G7&^RYEM:O36αdzbT:ݧ9ޠ>āA Vb|cef?acɰWq_},4ʩ$^ND*{?WQ1 'h"ͯWv%;vH(3k͏#zn(h^Ѽ\Ξu&*HGq,V$ʦ +Zz|ڍ\OK/rM'CPkIJkؖ$..-%KxKtQhPhFNGQ5ef/ZoifȃBOHDbU*Y'P[4Sńl\5kn[ƒD-.3^@B B"d,"BY4+ӍV:i,xGr; *6b/ڬfAphєA4~=Q^|W~>>p%ۥ +}ڊch;"6rv` ;]=kZGHyVQ擑gզ"DfZqk "wQqjTkΡ ?@ATM@NAtW(+v?7/v`&viVy\l)2vX!5&l\)DWZq8"ZyH V@^Y,:P6 Yʳ j t^A"@1dk[Eӽ+s9 ˒|I6)4[ #RTlzVXʭ,g 9~K*PHS\dt +ertB#,@B~_ap + @l&b^&S4?NaGd+5Xxq%ERq-q@.~ŊgY7l|NջmBJj\cbfx`ZhqJ6 "> p@ +\tyKHy0u(Ǭ e%(@ =- Pn?:5 &PEke.x6ѥZ|Jx8`'4ΠvåvG!(GF|YBE< LYޡ8`r9 ELI(`\,ߡ#]jd>DuȴV !&MQ)GӠ_Rk@C5 0RS+kX~y >>}!l F(Yĺ!U3*e3A4,dˤȿ-[5>r󽕄} +bD\3`D?%~ b'~pnq>bP^Yb\lSNdo:i7 $x g\,?,s4?eVgIiA ʟg3k8²soP_+( Ny ⻃ʢlcBs[$jOUY4왌0']b'n^aN+XɇO 2~At,(5 +S|=GA{%Q8!}?~)4|ͽ '((V2}fBu}.Z;z6 R =@EO =A:Od@끔s@J]ZL 5hKbN=2L9e1#k-VCǡ9,6D`~1|?j)0ak ktO ]  ,@6r@" @fUd24V J!AR|ϖjhAUg_(ڬaa/^/U{((4R)P5smC3_ 5g OT9-ē<=?([zYڼA3abNRLڠ0P-Urנw2EY&mW1<əW<>?&w&[\Oy9Cx,Me]Nξ Q1UVl[nX;m./mPᥔˏgx:8 9fg܍եlj^sL0On\; u9&ͤFKDW昚n +.Mn%V:7u=oiu&^>odvkB|%p+݁|-v;pw3~%pt8_ l&|t,R?Q8OkQp}MA7BAA>&{:E:[1?V{npբ&6w^QS4aVlvjTd,3Ndڮziq/B+d;:᠑:k v 0= +Fۦ#%|x˾8 "MeФ=a9c-T'}3QMu/2y^zL}ҍ\}P7͙23l 8?濿=C#9],U9+Egr(pbh˹Ëʀ.eG?Rr +F.Q?*Jָ֋m=Tvl9 Id%LNj!i;owg0^zihLX=q%a6X,D4*< ;AtڋZrm.ev3=pI +3m#JH/̈́L@xA@+kՍN FM2;l[0>ڻ8fJ'l0 Ȯl V~zs}JHY[ + vFZ^7Ɏ2<#qeq}cւje}fX)Ye1aG$0jdƤ~Ǻ.ݦ`D^>֘)BkpX'/.±IEw\0h q}R~]d"Hzji.>:;o dp>J,w _Wb Z,S+_6v1mvz._IUeÜť ~!?L' '7 ÿ'⾟='Q|6˨?D`C9a3`o~9ýۆwpfpC~ ý;6{oA9͟_?Rڛ}8or'???o[]ʇ2 &99\NNȣ8Ҵr "&f@W/R/Q6O6-j^ғS+v>ly$Y}{s>r¥k —#dS7Q&΅>7NǷoQ2@UVzLUyx+&QTjK0Jp|~{_ %D=.!|+m1K}qN6/[\VQSm ~{$Hͱ&;֩~6}a#M牚0{6_=hjyTQ{ӌVΤF5Tk`w!cT67=" ۚ}5וm_3.Sjwܨof`h+^;,IMܜ*2Zb0ٓJÉG;.yпl_[~Rlq'70,]˻Yw32[Ny'U6izbTӣfRӄS$󿿵7!v$;-nD]NZEB5C<*ѫp[lhC7RQ%οcZ>1FI4vbh:jM+1;O"\N P;gc;ڌ.tj*rzwE ._̹wV^^UFf*c҉U&vR]nEpw]sRm_o}bVnEaGC6y~\D_N &vzhABCKC\)vE;0^ȖI [zYjŔV aFQRQc5Bc{v +N.3e*$ .J_Ogߔ۔ofJlmz"뷇f)k {) +Ƶ`ֹa}WKOϥ4lrrjLq-ugv2XDk`E]y! + ^U3fu#w Ivj|0n*I!AA:}FHfpn /)Lۊd]ޓYѼFpQDۥ&Zz!Є +e{ؖVV y~jR۳L _$0!;c{jÐ0123'pj^UmMUnW/ZEȫd,7il{!s^r~Hn?2 iy- PWKtܴx~zW]뻬QU_8Rup~E|9sii 6Qv%:bU}ؽ~(CcW.]/wq*B7¯sSvI0Uo_O{x. B>q(6(\OzCS cw#+,'Np'w83=(LjzMAa3hhRӱCS|}F}/r]>Lt[p);_4On +QUVjShz=wiᴏW . :do[:OUy¿Hs/+({IՁWw꿬΀ +6Dչ|CuٗyԶ _ SO'I܉t K7ȃpL2=^Am-ybdƭZKn?<ԅ|1qҾqGIZl%o%hK~r[B?*mxb{ℑo-s-SZJţ k\~lje#y wiE So)O7}".$v"Ry-Ѥܦx"|"G%/-k`׳Ire\wb`nV,yaҡ.:vpks5Qm4.9Z{3mH)B+|:pOj㔤I\\_zf'TA##szQ#|㳳=eh!u;QѕF+QC4g5yM]N++6J+Eu!>0Q'˦'r[$KrjAͬDwf:QXo*Ee\f|OvV$b_7 :c.|z9rjObAAC臨 Gek3kTjwqNIn-͸=*mx>Kwfr;,f̿|XZ4ږNl.延zސRu{(巋a;'r:Elع1= +$F¤F\ujd?$m1+ S(oڢXYRDjvT´@?1+M?HR˽ #smo}iC, +x:NWs(M?Wo[=9Wfae.Wٰ(긣"EcI5g'GGusʝ0vQy[pWv}`}--_CLUO~g *wpfpfpco\A3C`%g{/4? \y^n{7DJUz@7^ӶqCY}98)}V^ pQD˶<9J;y +4Y+ih8?)qCڟ\<ܗ䌕Sf6fn{ +ޛ^ G4\[4r'Egml%RRJ$O)vĄ);_Cұ}s$DeK* i j'5 mi/޻VW;*Yx)B:/J>]d$^;wނyHx pO0IQ ߽Ӑ_ׁ7H lim'"΃ڧp_AJΦAj/^_<dھ'sOLo!ۋ#ry?n3tr0O _\> +78dۙӂ1gژ*cPd"Hnو>#7v%bF( :Acd\hji}ljQ!=cxA5f/5Ywc" +DV +|e06҃vlOϜ|={3/X:6WFuU2ZQ81W0i)6[3ʊ՛Q43FǘGyJv#9TP7+PM/@>qүLJ`ʡ5~$Pr'`cI7]6ls/XՃa8=< iHՈI.c3G9K53EGk.wNͤb,yrY$T?=JxLm,q9:B*x]6ڸoxӽÆ!؞7!ǟvrNztG^ +e̮nuyܸZuNe^R$&p^\pc8x̢¹I* ?+&~!j!ostۈ*C֭9gL.m8-mq#P-2;yo8A C.:9=ײCf %؛YjMF2_-N{OϞ'*}˫l%wZM]# :O MȤHεIͱ˄INQUʃTʋץh=:+)83d&wLlVfWfpy^ +zzW^jD,r>o*Aо99q_53lfVR]bt;3ߴR=c)ҍ.;Q1L {] +>>; +;+I5w/{&wFZ,x^f"rTcMQܹXU1͖zlPtWsM t;f?){`Vgfcw}߉M%hUw)ߛeV.13#Bn6}rU)LGf0ͳ8Y z#z#cj>|S¼n_5щO6j&l1|{mgqҞ:LH鎙WnpAr)Q}/#PD!hTc,l98IE&9IVyھksCU55y@9 +۾Ӈ> -=K*^Rܺ <ֺkbVAh7rK#U?q坝gi3`^t_ +͖\FfBgHbk]kThӺծ-o~gmwA3^S':;M }f.u6 +ҝHS}젗cVv{sPvYcK[cҳ kW=WRqΡ;8KWQ34S~;7C`Eg{? +o38@H33Ƌ ωMĉ J9ȹ9jpyf6 QZu>T1~*-ջY!e搳H0U#׉Q[x X4Y2s3|gOmcۋNG:'\BJ~)Ig;uG]:xI;RwDaHg{g( ꨐ6,9$t7BgIcGI}j9j (mO[8AJUp5zQ}FBGoVmDz=yF4mYT:M^'"vRqABs~9GXI=o\æ#QB2W͋~Q6YEi-GCF̉+N T|>}o'= 5wwCNRN:53l9bt2Ht6E$H =.K"v;+[?$BgTFOS?zNMchY2&oz֫ U0N_?{A7Z{A z9ƎoG|末88 i9)>^|K52ߨɋȣ܏ln$J]…?ygC3W;?I {~F!= * +CB*Qhc`3e\ ߻f|)ߞ*dnnf;Œ󬠄YdmNN Te +e={3 +WhnzG">P0$&~jejU-+;.JF9jϷTiRSۓMMz&v ]zйZ[Z7"f`Hy{qFīpZr WZ&SӮyLGwi7a]ֳicQ. ;lk8L۷&bkߔRg P!!]$i~ޜ->KlgjJi޻M]dm,, 0AD$HFCYyfvϻ碩>*=Ըvۻ2+jZyw$3 v OIJD>ϬDDW>9:wK،C>~k +vuqАn!d:2S't$KeCS %yr"^ jGL#@Bd74ؓ..1e'FV1=ܐz3e>~rȶ%6P7Zvu~S:~31q5xx^x~-_ǔuŨt@N{/:e۵| +ôNb grVYI lYd \,aS.1(d#hroHw/v:56l<'Z]چwY|m/'aǒpA'4xϿƐxaS.+?АհcC센gZ'yӻt`-L;YO8yߜ[rWroɝLN.ٴ34 +1qYJg|/Q_4.֌.GJ JT8k|[=5Y$X +19<}#$euncgJ,ӸV ^ . ]\XI^P\.:I?sNMw^Kqj/V~JضzL/;5a;`JgNz”Q GƬf6T7źȊRX+q5@O~ތU32*)'e¹MՕJ'+ e>Da/QԊHyMNەU VՖR/6_s„ܪ ;?$_'4_=dSiw:R!g]8I.W}[o{e߅2 +jzj#٠9]t'e{jBe"K0`+p{Eǀ8F\Ό]]jvmPoung$_Ԙ3':Nz鄁ʙPόj^[H 7f@Ճ$j [ +endstream endobj 195 0 obj <>stream +~)cؒuG㦵7#FtD8RRHwMuqu5ǫZ:Tjǎ-ڝn4EO: Gdࡱ~h,mZsFŔVw%x\eFH@]ú_ߦ"8SǨZ*J$gy\?5Q+:0="VdxP %I8'ToʁȪc[%c'[ +?U8O6Zo֯[9r +i޳ׯYjPY~^2#G9w!>%҉;#7ISߨկ#B׏[4;742y'yWzbh7b}Jژ Kw aeg-6m);~ N|Zucqxc-|6imV-Py9kuU4\F^Tf߶FgfVkvbZV򁭎?!rI^[75og/Տ_ʽoh=ӸiC?b/T|;zl$E 9LcT08{`u_IFk:g4& ƨ5iPџ[EH_}쉅EGKƬ ;=๛Х‘_n6ſ{>Oi眏Ty2:SIjGNߢٺmJŎi8 -XUαКt}QSoJ'!&!$3xYxCAJv$ f@(isטsT^|'yI יa<:3m lG%=F}yV-R1M8|aG|?H3g,#qX?%4^w5A! 4XI}ZԫWmQqLۣl֘dN|Tkο$1(K>q"M̶xhHQ?q#n" +*:ތ|E0LN)w-H֦'Le9۞SfS~x qdmG,1$Q̈́Ԏ nMwp k̩LbN^9w)hy>]vAM1<:-e~){n?VX.ɜ|XoxӷA.3ڑDNiꊤ5/iSŨ?oS-nd nF]]_ MaCA8a=C=e(?znD؂|ӯ \{xE6茬q怭e1ɶ[yXQ]5@G48qbO͖|%ԓqDq1(RX<Mf-kbh]bũ!iM~N&h,C`d]G\ kfXT*}2w`3n%K.dGYa9[@|>2r:5dVk6*Ui-fg~jਧy_rt֬hȌ*Bj!C݆*r'&6nltԗ|$Go. ԂEq֋+W̾S߼u1;#ewe?o cČ1_G)N6IK[_ӀYxA. ȹ;1?|c?=2 z 4`}4gִeI8m{ڸa#J[F7 Q-.;y2eW ƎdQuYSSc-'QOJwҧH~6I% 3n q +$uo-4ĔTъ,)aZ;Q$}-6}ztܔ+a|o?G8%ZF Yr9b,L hl1XC&:TX"OXOorE9 =Ӹk|3cj0Μ?RyHK%7[iiߪ}>ٿǨnjN_K\_J@վ?@ZW@-[@UӠ:"g3E^*F)MZ{jrmnvT9X5³2ZMaZz]̅14S;Eߢ3?Q@or~ūs`\g +M[:ٜM.P>ҩEթ|)L>0ToK]zTSIj4F qc1lrM|"Xץt}̝ vF&O/[K;?MS&O1JUYx/}(gfTӊ';%Fԡt]͖z;\vfIGOŔ̟$/OcKUc$#ù?%6TUWŋ?)q5)@%i1G,F=L|OAY4qhT̙'d + +'Wo:-Gcw*"T{:΂u86q5SX+?P;l_H`^Q=.{*iPo5kQ?ņư;r+;KYGTl)螶]6CY9{+'cOE֪eLCn4H?/*7˘Z!$/WSI-ԒްOA@ ]2P;{fYai:CF]ӳ6  7=bFLW=D%z %*E޿) +鶴fR+Ii91T_t|b#I ->57bWguov7VU [Nx2ƤwjIHq7G5LfRAS{y_lh/::aTfgSkK iF5vO-Jeo`iՆIжE'&ciX@"d1]'i_:}(WDqdt52o3s;Y)ҭUΏB٬I9]{[E2㼳b,q],e$q9wTQqH?D2\h0R(d;l_Axr3{j\g _Ak݁~f(.NTe$y"rՔaon[[mntWqĤ-C 9\$K@aG1~_Oz1wf3CSiOZDgڄƨ拼F'8M˱ ȬrX6r=@xΩwP}? ⫮׾jԙwY¥+6 /76uY5T%؞&4FFoʌ[y}c)eæ'S +?PGEPUZR)w(,5q3EӲ}9-4Tf9+k,zLpS##۬jny2ʊWZ-gP'?%P^cyWƽT17*sEf,T='(ox95FҫdRu¥Q9:-$#6ŻBa~ q5#z NrqG(m,]yN]rԭI0Ò*WVW7P9笶ͭ +NC4$ȼ'y4lsf5a5z NvsyO˧+%mM)s-#]%QZ p׌Jl Ґ|]53$90կǔߓ+LXP,L:N:W_'QVD?rdň7 kMq(*Zx8v X X>|tWYcLw [k <X_q4Trֺ?k^`- FWZnC첧݉OX0aj\c5X +cMg:n[2դ%D$5~wvVTNFmфxVd:#u鏐*92b`Xx9XG͠J !|0W󗒿^Qᒽn|&]JtK՝1,sŦgL{3e<+˜ba).M]~ͻ=L^CUotܵ"C"Y% O!-, tjП.JUa44bi};}0=ft໡TYI hx]KYioT=wwz;Ζ%dAEBV PI+:Ƨ TqDzKMU52ËY-Ѡ} }(hϗ5k$z^,~+-0_E r-[n 4PI$q$h(*dZWPE.>6cT~t%P}JU_Ǘ +>2kH3#8o~NJb}jMy:Z= +\5YuOTƗznHM؋%PX. TZmƢ/W3 ۱o\NڤܽS*ֱ֬sLKDtZ; K9_@F`WHMď)eP]6e[Am_^ +a9;h㊁H:XzWQ%]mĔ +۩q}oͺbCl.ξF1Ey38o\dT(?N@ bZJ㖉1bjj5|fRuB4| <>(`´Or>liJ3WVm8Em}Cp$;s. +> +ۘ_W= P/X:$uZxC9 [[0w< {\NӾQ}2'#xVSS(A;O>t7I@8@p١\t4zLz6^xkKvMtVmNʈ-ZRM~k";?w%FWfkI,s;[݂ZJc Տsۯ z_p>C 1w2jJRD6 +3&]iϿs`O,SBy~q4d7K?h ^_6wK z[hB::ęKEia+(r1+Vw$?%psoݢ2_ Rt·6Ǩ]3h&Dt/@H~+ OR04]n+d=B"OJ [B|rFbYd-j35]L,cԈ@-36Z:-7Ub+Fyi\#h()'B$oG!;oaq &8X*aj+M=n}:OPOYF ƶ)q+.ڮߚNTNL}/+aI@ +Sݗ8R\^cp`3t$rW *F2!b"FK'p۽|Nzu7X-}0 ]*|={3Dr!공9.x.n YrYRXRh$yg}{*BԦd$P/A]fM|Ϲt[U^?!vCDk7-V[l%u\٦^Ym2E= ~|N("G"z n96AmM;~@鼼-sTҠx*YP+S٥"|OeK*֭ځƛ9\} GEnUTueVc &Z!_KJPKĈQeY/<_ɾXЊJgpd 79;i <3FG$#w.Gb2/gҪ%i4ȴYDGRnS@uqmozI7NQG?ۓ ZMH^%y7hA=wa3ۼ96?#m-nCz? t1k.{C A+Z9jEn8JnO$XuzRX !=:8l҅^;rtpGKqe>rn/޵=nL.ojl}FfzqrU030GWEz13(9HbtM1ii:4ǹ[UkF+㷺M p0k,{]QzLq-T}Xӯ%{{E%adA EX.(x&{JBwa׳.GGsdu2s \Ĝ.jңR%_|}a3^DޞLêSv,V7|3Q(20] Ы"Ixo#v\dzmKizJqPbl=F}h8(ۂ*xDZp'K1hJpZzS͘_確hWSi{Ag͠| 湸J~-iԧ+Z@y:WA(F5Py T\ T̼*ӌ<~wj7h4$^ͥ8%2bBT-XJ.#.+qW+=eMl_U͏_~jH0vP^JW1g)Pa>--A:ʯ@=|]ՉWܭMrod 3Rft 6bV^RAm}g9ˣvFdML1L5z="+ ?+q5E@yǭuYA|k3-po7݀FA_^P~tx*QZѽ*'!,QwٝWGa2WSkJi0dG)bfZ@Ybε~C'N^ j=zjXTf"Rm{ht,BnVVnFa^+\|=z}%eI⬴v(&q=P&H|-W~#R|%}W(x9hlD!Lx-m|re6S 1sGV\ŊiB23Hd AtPܼw$m"blɮC4 8qP+T/noyƒ@'m֛ !Ńw>&s)eO3)[Am/-N ۓ-*.I,nZ^2]PS' BR)ul~P.*'3 (rRе}Zd뮎Ϗg1 +U.u ΛX5u5uX,^,r$R .1jG5hQ᷺h.F='}^i?&<јoR+wܖ̇nOɷB..s$>e.* *vJfP{;d7Tɽ.C>ӰZmn]lvXHkRpٚ|AL0)\>#mM3asO?9~l~O?PS&` Ӈd/zϛ$atnvo 0#eFe+ɣ3`ۊ-a4_/lm'T$jr}yՑbTv@@r JP^=[{{$.??Kc)w.on{bjHJo%] +@'Neʙ6g ɯTr̩og'Ʒ{}OĶDꋗ)z?badj&Tߺ@&/u],MN¹Ϥg֝Uibޜ i3'3T18-7lPy +OP31m1:Yţ>ѹaZ'GDuW8PL+-=^>ύu:3 ko҆nJls9Se?EmF)zk=sCTjMapSdYfkn>R ~IEOȵ _(3 xrʞ8mⱧOu:\9̓`.l'-ֱ761s>3ty2{Üc\Kvu&VMnjF]ku7̐NQCmRX0#{$h<ǯʤ8/xLqp/&M0J(3qi5KN7E:i*J;b9ʞhfI&z.y,Ηf]z֖;Qm(9c?GG-2?\aTœ_8Z@f}uz|Pg}րD +n^1Y6,o|7 Au8"yxaux^ZgsI8W`k-6;8,H[΄8sVAb=g^3JuټԹkx3,o^imip'>`bMLE3~mZƄFifpA ~ŦLC*ǀoGO3,8ۚA|5MHZj\a&p,ٟW󗒯l=R8tGDYd܌iA":qzscMTGXLwD}j5U5a NSڌCFyF6ZOnͩ3ebydG* 6 g vy׫07 p ڶfDwa(EmUw%˫pxJst54 +ɧer{ʰb,~-Jc(_9PN3P$P\+WPFEPև߯/b# +?)V1 Ne:"bO}^FY=:v͈O%(/^8F-?uJd(2(\gq̋11e[1 +'m^Z*i$Ei*ڜĂyMVq:}`٥HP[Pl]>骃6[T@}bةƼs8|0g^Mw;57|VN=h\{G'dCޫ|dQ~-´ +.RԍN(WP ObC9}ġ_e=LTznȨ+-"{0×4/H=GV +Ѹ$_'h`1rG@q.]A\'ЌyE|() /rϚT^i=#LTչ},*=746 + v(6 6hPkw^7̺d$vԥHy|nM( )mqfp hvn(?Jß@qꍧLQ[zR/"ٸ+Odϲl?nn0yC %>^y╊lb\~bi7{xW; N,*zX6 ^M[uy$:9IB")g.?#\' <^]9;P4G3J"&-<'nRrݎDt=OMw} uVRܚ#ggҿv`m5m0̜֙cni O+?xPgAs<wc귦F[ O3M J|^mMmpJ) ^6ڌuVS+fdkVb +`knC"f$W}_| &K~TC-;N'њo|zDj%80?iD~x޽5BUE_{| wzߛJj1Q%Vڎb7ӧU i[{UMF?_H3~`(kI`҄; rdx;9a]|ND& Χ7J>?cjކF*Nju+r9yѳ n5y*li[?r@15h?d^lũH( +躧9ȗ~(ѪeGl_#/X/Y* q~nN7>[#~gyaPgĀ:Pt1z7JA%^$x|yW^/ Y,|E{[j.evƏ̯ÌY>=Fpxf-dRj SuϲzvO~D9s_[EFud LCG?hlƋ}3ʳkӾ>~>x1Xs9qxn7xҫ ] =WXym:1~ Sz Nuf8?>kc1?S=hֲH砤fj9Vm XV]BMqp/${l5}ͳbrx3iG6\ ͖N صJ R̓ػ2ZW^rbU{teu@z[,;lzOy]WwnؘܙV1{-j詎Av#6pb6_ut^ iMӤД.{R +@U6Þ? WL}jWzӸz34ts"\WdFLpҮŌ0#>Ҩ1RRMܬH[ !*e!VZRZY.{˒{fA)wi95Yg 7_6L354KYW!Li ;0BPo\BXBBT.ܡ57+kR:V;,u3حݧ^ [iA>%iy)qqL,V⚚^N^ $B]IjDCN&L/evNjk;fu9R(e)apJāRwQS߃]vWפt[I̗k#I3NS^uvO_߲ e&88MEX"v]Wšͩ$KE4Ƙ=B ΑV֘h|fT˥O$Ku2G E ?uu17S_s*ļxVYS1@?Kw 8V_j+k9/Oz +гtz#8C; PHZBGNt'/'̢V)=?R4= Jz/tԻAQ`t`Lq6]w|zWWEeh0zGn|*64\jۺi;O`%?5J:`wphA| [G/{(@& +Ų&,3ɶC;6)yEy u^xzj ^wue,8NW\aě+_I@բ L2FEQ`Qe 6õ6ҼTh(v\b@#M$}4Eg(#|_hBW|B `]xN:B- +KhkA1u.PgIε&H]loPoX6G iҌW4\}~ÎOs~ruN(u~pX?'7zR3 g(Ȁ \â"\:Ђ> {}̠џ,j{]Io&/m} k:Zj|cS촲Cꌿ?ɰ{D Y2 n + jZ|зso|-Wk^&>,Tm"$y jV2Kn It?',1(^J"O hBZk%OO{m^\)u}֐^v&#D#^?{rt:KԽv%ۜo>SZuqY]cƷN~ aiϾWb"# k8˥sN'#n| 6,WSSVEvyvvS+ǧa>>;Rpd- SigP򣿥&IԡŁl4@l^z>ҍF:-"_S$!9]`K WU.;=zֺ|}|V+c&& +?3?" &Gh14:vo/J2ykqn>N Z96vf_s +-H631\ktngG wJ ih6AP,"Շs@1drO2#پ +#i/Ψͼ!VHF:ϣiTn C[^nby7.ߜVƯ6zdp~hA3=j]B_Zl ( R9,ríHhm#63W:cLL Fǰ+ +LWӏiR7rDw=hjЎr&rXbPg} HHh䄡Nʽ3$]x}v!KPLr_ߕYmA"uzr^SF9y-v5 KH'w8=>x}I' r +@HeC`IiOj5" +'#[iW.r6(q'ۓ*O<;}za@SV虖\ Vk΂nz5L2҄W%GȎ;ĺȥ; bL;e\"i#S~&],g);}>שojHH`sXYր>ϚgˌZ\bD9ۢmK)C% ˈJD'@5'@0g |_ј{lF6ǰK3Xrw>ݤ4G_ĵ|WOwXfʈڼRc2N>eY LD00qԑ6r3=^W j~R7ۋv4 nnkF66-ܾ[U>=}H^m)m %_2 k\Q]r:]l&.v9U +{dz_&Hƛ +@?NH>\͔W!MW얥17%kN5s1E6$WNYxSy "fweD$Zƣ/R) U皪)$@=^!=ye5[Z c>Vzx뎩GJ)njjTꬪӔ$U+úTUW~E8r:C϶6 㖹ކ7R~FDqbv'/GDB'qz}[7~*F}&Yg33>KW*WF6r#=a\rZzrZ|,Ү}8I:6R Q5X|RP)75_skݖys#Qg_.{2wTgmk|ܬ1 ozb`îN .`+y +=O۳Z sXmyTaAJo}sfҠդ-<|ɡl F%QjK~染y6,.:dA@vcG ^Zm^d@ hPyԷ=fd@dH4x$$ijAz RpЫ +S'L\BԬK8gj'$#M-@H 9Ի>CP,OCR PZyMҫ,TP'ʁT$@} l쨉sq<*TO>D ++ٻBJ@9!1]RlO/@*lC.@ֈCXk_is]q%=*Y2z|E;-W IDh4*M`o?tV~}0i(d V5gdU%t d@u c3_ԧ3{Tg}dtx{6_Sh:J]5 ǿs>pi=8|Zz kdP3k3@f9?&67k$ѲNhaRK"PX +3ɕNHWq@T~֭"ɭ 7`u`t-aU{(:($~ Md#V">Ѽ탛$y+>Yhccw 5u1)@D pDbv dOT2@9W?qُ:ZqCJ{5wL_yA QH%)u$B@v>duz +zY/ +&&/vQ=C %}=v I(S|.M;Yw继F_U*e `r4ј{7@!ĸ6Ur f4C9cr%7]FES\;zMF<9{t<kuH~ +OWa-[Ge{ꈅ΄RVx꼌~v&ʜwlRLŀ.$ _ŝuz +q[)9p>2Wp)*{|9[C x]ֹM-OۤjCNyrVTh2H Bg4+VWX.o,OϾA/Ạ˾_ޝ a[ W/r2u?|>6jE;ʙfO*a||7ZA?Rj3@U'@9>/wvG:P^KJ:-WS̚wȭ-/Zqmj͋KyhTy+Dҿu!~R{‚Rn{OQr5문<;eՃ?f-;cNBκei.lƗ迌L5L<(1i1_;+Ga%fSxY9 $gtGd+@wn +WP:b]\mZrtvTYge\I:w 3{ +"NK_dIΉK3`}<'O[AUivΌּn%2gB백esk '';QBEhs|E*ѝXmGmj<=k03.:L?ɝתS6Hv.T) +;_lUٺ).ݥv:[Z"Oez#Ca +N6 RM}*i5U5u(Ƈhؖ,7+F:Aze"3+*q93\ AwX蠻d۾ܕvg +^㪰CĨiw;cO|wynRJ$ H%.`X=L>xz,9NSĬعszbC]9x9 +Ƶ~7B6{⽾`7䒘ڌ>(쭜GFd.n׀Ym'5NgU.~zzU6wIYf~Dž!7f0u}T.˂tOJuXrӭ.Ie\ʍcYcǏ_NS@.ݲˣ'ީo7n_YuShX%Y4t'o=L`?t;r@dd{vmngmHl%}!p~y?:!մ;\'I)}QW Ա2w{eT7QL.&c32tRt>t2XZq)4p<5Oⷵ跸_mq{q+`[.GӇ/^U&n^_w2ȖDF{Uv!=J-k݅$Lb;4֨ҍ <.T|s"e5 +WC_LFutOKثihrm ֯f?6ȵWQ\) T)/ul_꘎.fQ_W^ߒwLGEbqnMvS՗ +ǞIMꔏ_H^y/ׅ\ZKi9!X_Wm5.]D:)Ȩݹ!BkXqDn=Z:<4տ|mKڤPWez +jYʄWm@L-/\$OsˍءDpo;-E~Voڔ|H?AlrѭdW5$lWfTnPWI3t([L-nlhޙOCNZ ïpFd1WqIIsb^5:M-FiqR]De^ɦkyrJoU\ ^)sEz 3urɖQrӖ?ɰ_%7[&i"{DlfWX3фkؙ}c>zHJy{m%YK9lկ.,ZʜhWt~\e$Waj<F>IW)fpF8jA{cY,Ggo.}VEG$0 snC %yܠ\ڇwXpUS=3 ҖrR4"Œ&:5.!0YHcL@G>N)Ӗa/?lsHV1@02] q +w!F@ +W Dè2djd; V3/ +ҁݲtzb =Q٨#H_W  /r=L(0@ֹf%Hsӌ X@6;@8 CO\ s-@(AFP^˾s §A}[pA:<^J +cbK$E8*/4/>GJ%6 + 2׀ӣ + 5ܞEj4@:@ %l 2d\@!2*3Vd؅4d-T ބURNTV@f^`_J> b^s7~g- 1 u$S?e͉E0[?iI"&^A 3?+0 zO=@}\ +"5f>M]>G+ق/Sh?&T9}vgט|$?'Pltr@q ?XPW|*z"^2@]+ r-Ƹ?sd)ފ^k1iRf唳*GӇD|BV,1m1Yɇ-p8O&p3<v-kǁ}ء:wWLpbA}LvkQ&?k{H\ds_ӇA3'7 V-u2k^,$VeG%rģCQmiu:ue'3ܭqf)~/i\Mڠ+,/$|^"AnjhF DȢN#yFz ѝ[*ܑr&$~ɷ.Ӎޏ%n][TU,tq='ԙ M n +H<FHT( +Lox͖;չ;L.{|oA,~}'=0f]WIhh+8u_a ʶ=@SVP6*31糧7O Jlca}2-6Yf6Z:X7W6ey+kXU +s:ё^x(mwɖzܨOgsB13RoGɞ+[|'pu/V=hQ{v)zŎ2-kyhvo4n03vPd鱖=4_En~/r}Wt}y/7 0\B{fgå=//im6Y\]xO}?l7v}o#hlQukE@CsWjӊ/Ѿ\9.ֱٗ>dmMؕKR\ iփPF;]Mq~]+0rjt^C0s0xO禾NF}>c'MNhX*fe^ldm ӳd@tpɃ)lYS{[=pkG W^p(lY9doWvn褊f4+P.Kܱ0)TLCsW+;W8u+w'Om^oaKo3 w 8^uv댜i8הr̔Wڴ7FVˢҧP)ѝ^QCܢG\ĕN/ N^v>]$ջ/-ODi#*=]=~r4aӨnVSt`1&r*1ur6\JgW[).jҲmTZsmX^htqE_xN勛is@,nm@MNˍT}vѬ^[粻/g VzYMOwvSxXNJTQɻf9ZNlj0Ⅷbg$6vtjfTfĈ(ϪG˝LvK[VU}RyLɭ)M}ZFxr~=)@q^;T"M{ͱ +q/<إR||z$+$}YnTO?H|t2e#+zei-& 5RG#/&%Tzq셫S3t|[[,4K#F?+&,B[/55k+VwV.AR Wգnv]Ii.f95k>=Z] _݃\SӕGLJE:xV91YKRkI嶊rPz%,dvqPN)8+ +j˰,^dS~YOMZdMj;Rnly(Wb#\#7Ď+B y)@OjG ~O U$5l`9:;SmC` ^bC.l-dz7_5cC +4z|@ô] +bUj}RO?젉A?n?}~TCjN?~_8u)~cH%HY 篗[$_j1qz +9aF{]=1w?Ku)zT㱢'6^ݗ{m0s9e-<'e?F oy/n,ƏkUT!1λRFn+y51pxqs޺3myS:󿦧ޏ*b롷q.3?gjnmzRGJN㡴:-Ke rUwWN>.-u:b*ۙYqJՋvwOGna֩w( Y^/R_&d߱v|ۛ^G p(󞰛Zc1X:j{ޘaSC/*qk׬VwFFVЗcSP:zF$~otT([a]M,jb5.pgVSYf6.R[YL%S2g&71 `VGiFLΑr)-[j?  "ɔ&QodJRei+LūG =嫲Ǔ=T+犯]7hx,K#odժԆa*Gβ':XEf +3-;ccmvq` 0ydHc[o)|Z,Ն{w7k2/f֌uh`Ś[TSsZ*UA|n4{<5wܚ_3{k`%ɛ7tT(Br/\}VX.fNש }25ycÓ)Vюoa Ia]u2}1Lt.#Xhfk1$O72x0sRTٻwPb9Κ0 VK+VƂ^zLeagBO/2N?8jwp?<%)FhpEOJC?)Ws@v:@(ujrJAi\Jm;¨oy!u(6  U&&&ws4h&~#:^xhH)OE^n\)׷A[j5Vy/ 2]dufI`!=uӹi7PZo*)-˟ GfkKyD1Cp*M|fɃn3UvP5/TQ^5Ҷg雗2G;cDѥҾp2˩ߥ;)Lqd#`4n~ ʟŹC8] .h6ma^?wZPqbV%vÄlڕ_w]/cܥ=cl+RED +B3G)$Qz9~,_Y-2(Jg֦Ն83 V}d7(Y_6)G.m/;c1f;\^K[I8ο(EQ2tyt+Yvwb.<:OeGz[<&LRLFU=[Ic.1Fpr +[p;h̍̍ʟ:)T(fBʦ +jYjC{a f4® xDKaD1UWXZPS A,(FxnL#|1DIڡxà8f}͉dTĨiE:4&P9=U.dQʬ'fU<&e~R3ϗ0Y AxB,Cgļq>>C$ + m)<9 + +r ?'!n q i{Uzw^ 4֋F>bf⚋fb%) +Kp'NMO0bdƏTfhz](u=A3] 6vi.o8@Oj@P\5}qu/"OXS,RZncܞl IMtR mR+OPjAevj@)PyڂpTD:4H}!?2/)s;1ѝ,W@m# @g1Y4m`NTJ|  ~ 0 K9AK205~A@@+hbCj3KO;?/n_Sr8Ȟ_3?戛H?/J|sC + '"1KS]pFͪ O[V+ͽ7NIϧ &OUzּ5s[asC7^lY~7/jigCd?PSrfAAJjYzCHp/v+wh_Um [ #!e+eGyw]muBl,E)6 )$b#),3{e;RfR R|J ‹?E9vGпlpMK3tiٕPL9FNM{ +e2ҭ%l`6,/CF} t11> kY{:_ +>sq lp +6En(q"߆mo_LJdweYv8x+vE_y CoT}_eY~)yP̢ ҇ϱQՓ{@13]z]ulީvj424xR|[O&5Rfk\fnn]8gj{:R7OP4ԇ{{q4d7;l%9f^ۭ󻔇.\VthM m;{in-U_LvM|Z9L4Ц']OG(OV1& %΢@*{u)\\9{,˅S+Vodk˵ R0vPtM'V{(>騐j]V~4Ws~Jhr~jR';U4)U%ܹ Vs )X7Ę~3zP(TSnɍM^ofs)!Ve èGvbyu1OJD;=ZGoCFv$| ^jAc)d+a}W|q"@<sm?ߓN+}~OÌ9]Y!Sӓ*vFq:_,4v~n|n}{;o Q?v(1Ar:OsAc.ܥHG7Tl1'7ߦV]9Zg1\V5/A%ЎC-xra^\Eܘc͊up'R8r$rz& 2*>! Ƨ?JQ7A`[A.dAvNv>^qU}gk(t-Je63n]hp4M/uR?u~GKAN-S"^1>~Sd#fOݕyհw\_;~[u@<왊`ȉ?ǜ6xq1.Sޭ`)/.VrU +c9X vG~t$P#ӻ9A|n#~vـZP꾖hd^`~ +#0\cWn ܖ'o.iZzu.agcsb͸.3 3|4ki2o9 wsk–f^ե8- dCżM'~6~s_eF۳iy!2Cz&izS-e҄lfcVs@gWs.XwW.]:Wkj-5t+p-$i;h^,#*~:z4mrsoȴ:=k6uZgIuKHH7tz5paRtuB?UњjP87=WnֳT'WWj& ߔacףݓG`Lnv: G/\#=Ɔnn}T6D{npkKlҢf(ټӟR#RFmW#ݭe8OY<eSAi\Vs6T[-퓷'KNfjX,v+TہYnCi]y>Ke"5qӇK +5<~J~綍_Xl?ϻNp:`6ݝvZ2jR'.FE*㷊EW@yɷRed3KE{c>#tIU9?0Y^R+˵.u}2GPes"Q˱EI#V=U]136ZZ sTii•vMI֞:3ӓ7E/4Pه`r6gc!e`g֭!wzg41{vSSH {z_ ̋xgPC?gA/ F)i)LSHoDy؄ŷ:@.5Yce'4ײL|dkgQɻ/(K뵓aW5gԐ+t#symU-2mΥɨƒa6 Ex6(WJw!CY"돁ws*1*C@3:;Pt`Mڇki-|ΡOb!Cb}C?Wk Β,~?H PJ]]T7ͮ @vh!]( Hx 5>2 0|{|Q6=N+km'O6ULs;yT.O`F.XgR?f3Q;lPzNo )ҏ2@,A_; mL{tqr V~Rbڣ:n@NZ?ߙ|)+1ĥ_P0PKri)LkE;g\~[5"Ht6;."*qw1ИWfSn0\\=]<~V{-F`8QI1m(5ʕ>d9=+FGG!Fw+oklakMW?/FѤKCVw7ǷKC`6!6Sw˟OHDfGq5:ZQUvj">_SpɮY~}@]_ <(ډվ |GpEa['U`/_\6]Q;yů]/!U8TW'fYOwTOޞ~xw](Fﱇ7jDrObOi7YvSkF]-KaRk9/?HPI3b ] @ S=hoB<9`k +l?dJG=wj&RMԗ65>}wjJ}!9j[Ҷivݘy>@XJy*P cCƌJ?BkGW5z;[} 6fmw +kdXvWxvols +ɜ.bL`D&{ḦǕ77v&/4Kr*T|N㵞n="yxSvb&EmSQny-:Oy=^3`PouxrNkn}nx9,A_f;f/02ݼaNzkX:"^#T Q&f'*#*~[S*?xޕJ,IX_Trb ^NMq]rtre)emwMfs8єʽ QZ(km5jtܒ?r|q󡀠E tLz;x<5gBoAR2vqWLV$;TЊ,uxSv7G5z.vHKF87$@Ň>vU)}7* --W/ +! Wd'Y<og}-a_p0f8_6 =mp|+ u,GWZ<;RJd9;ȗ=8>]~X@0xNYc@ҏS}Ͽqy:rRf7J)/,2N&Mt5ʣ,zthx\˂^,‚~`SUpD""\"ˢ^b(aq~*h/GW0֗a<56|fbA}pb;2P(UR")hwp,%.u_{R:Iޜk:<;R+uНw9j@jiALޯt̳!hF3 O׈镋hIkf'ߑ4LӁU'ˣX.'};(jI?V*B컎rwZMnP_vaǼ_d}*R q s?M&wVrk GNlRGWcoya~K>uՏ]x]*BlO93FrM:֧-L 5]YgQ9l/*ٞ"x!`׻sS:-8i7f[g.q3LPG,#*\X\z~GxO!+oֹ4jЩ4[opcjiZF] ҋ',ShvGjXU *}fT# >^v䯲ZPi>nD +>$M}MhuiѰj*}jCTNTlήJo2hTe9@͔^.]FT 1w㔦`[g[̍Fk,\k~J}7Vu1;kz31E 9]Ҹ',} ZZa\ Uعnht:8(w½V,^|{at% 9\`,*D`Z-$1iz4}".Z_)Xn"~f`E:sY T!x4 od&WzQq9=*Wwgbπ,!xHXXY u~KN-KG@k|ai3JvyOQ^+ʩv^8)iffNﶙ,,,DI;?BtC' JwD!c"q?] CC*| 07z[91W'C\r1D1@<8  'Y,_/3%~μGDJ5'@zcaQk%[74!.NUO!ք8gU -eGۡ!#o$AoWbPy&ne(VQpͻB`܏zňw8_沌l <;6MJzN2:xnb dWA^GAmDD-3kIX{\~YU4C @|3e2@^@,g>:HHfyHJHJNKx.[.CYzz)E;:gT]#ٻW{gH{֒nPzJlCa~(!@t+;cMUhgdu|{<)f&zzT[.Fh kONQ!Onȿn@}mk8hUK!]:inx72f!J6āGO]<1KS: s8jTVv$=FfKѭݴ?x@]k쮮9`ˏif~CwdҎs)qػa*@6@˅xC- ~x<8}spdoz9yEy(ɯ"l xfȸox\ Qa g]Na^ p7zKmXYst:/Bu%ι%-RF)@HTyaк.Δ+_rTT.WZ.Ͻݹ^*S*ƶ26zL${Wt]r+KȭE(10|t"IfR6dJ@Σo(z1=^k]z( _GFZ OJ6.o1^joݜ ʪ-Vn+Z8F6,Ν5JyfɓXcV8Tk7 >=8lvMl18׃\ +ܠKW9;Tu; ёk.w[k17[&K S[#luKξ94hmodaEumȩ 6ByMN*o((ocڞ^*e1?u9iŮϼW/8ˢ]85jIƃyEabξ Djz!7D Gu F +b q<>c ^wtx(c4]u돵pV m&\֬N>չR͌BjF&Vu&||QnKS +#n=ʀ|kK|MJ[=TY?,8gälsai*ڊ׋|r,07Fqm15w[]ӑL&3P4EٌYA(/"##=J^=AP@ӯ__v]S1d\g8^{Rg>ҿ1K:ej_f{d;ʌQ,jr~vgp A]67H%< 1&!FQh"FV'rr#Y\0GҽLK՛)x⭑}} 2J}v K؝0)-8ᬨ (( +"< kڷ>7AO +!%Iԍ}O3nV)bsrP^/Izu8D-s^xXLuRoȲrk";Eu +6{ĵl D>@p;A}{ѫcpy2 {wZxrȚ_x@=8Գm[3qLǼm~ zo,^syiw_BՔ-'jUZgHdf_r8ŝ e&yl~_ǡBOߘ7HRHt55\dDKŚ~bYLx(9&}ŏhi_iUR, W碰:/.I5!axsޒ.7ATu\>Rne(?_]N=l{4[Zvw^K/]R̾GqOA9r+}Qn1vGFxQCjtQA]F)7-J5 ;BYˆ5$Ϋl_ܗ9||{V|gnm36gaӦυ;[UFʋ -Jb.Vk3?=lkQ,R.z=.wFTCeEG>>XO,|+{4v[7ft/O?~ +5鮷|sݣMkʪ: LbFW8! +ct,Q%ЛWWNIG"R3In +u; +`=OMna?>>/_&e2؞ܟ9? fir2;968CҧZ2}~mkkz٧BJ/ -Q[-?1ܮPjRCXC?û𕃅v^'p:p5ha O۵Ac&m.Y=J*Q̽1&l[ÒBtTgCks@[1y\ XREZ&uĬ^нbOWO.HWnC=Juv] %ZiQ$٤J%hn +p=C6DaV0蒝o;ToA{ZOCc{s[s5'u[C!u аۉ\· ribo~Lᤔ po(Yۣl[4nRDZ㔍T_8auCιha\ҎfB V-/H0dpqpO*d:^iV qCMyRCyb AJw.n88kIZ !Ƨ8F׋.erIه)O3p)LJ#e1[SqsMsKʃ.KvZ'-|Ig㇝uFؔEVıE)s1-U8V;ıV$S49L`􉾋7 }| |)^i:fgO~M P_q"?F)۴+|q"DI=,$zȋ]7׎=_;Vx _d]sLl2ݥO%?Nk8 +3:uSz$o9Ɵr}RS5bJ*f#\BF "^ +}NHcT1ܣrP(ֻg>U|IA:wzN WF7?RsgǹdJ͍.wyD!ykbXh-lb;쐡*C(.<̮]F{)MGw/%C=v)?Ks$QV01]bx\ޞ.]=Jp}[;Fw›A?7^] y$8?dE7?zCKRK/~r^#&}~wҧ喲\/Elrc4=*%uy*藍r \k-?騙pѡG\ 0Tu xo_@~G-KȮ۲xmm乖oZށuOn%fU:$_lLv6u< _GBz_ݣno<Y~ƻo8 Fr.{-7ʽ\؈<\[bBekU<^\[y0{ԿFi!㰟8&g{!-Ԃsؼ(;SyGAN[,?#酰VYG_]lc +p.fRkHps{Xq3o31Vw;XYW[)Q3N%!tuV;pb'W1nrڻBioc[kkM|Wsk/easɥRwh7s6`kܽ:=rcvFںqkui6Ԇ_dn +Um7QhPCX Igcbq:D xT\iv ;m8}QeLrGOAR) %,Mc"=7I5kCgØu cK+PaG]R5'ԮGBoЁ_Mni6^^^Fs:X+;tZRNk]d2(VƊ}\a{.iJ_fd\;dv] ٫&ﴹR}>\[IzWoI{߸wPn=|:w>MS0J3s{^уdj'P]j-VG<@bIv)ve_ +X]д(~uskRK! .8]eaʼq?3;n,$\nWyOE0E#krdm旤Oέ6Xh62{(b tŔRw+elSд:U%CY]ćRBP Ttg&_r}WytX>=f)/'y kSF2oYou%9UR947c3yY`ӗjC@1=PnsBR,>ޢ1_=~\Nn̆= F¶_Pig6cXVE6ɶIΤe=YoDA c&eeqԏRgR=.GW0> p"mG(<ֈk*Bfe? +KP4/[cn~~Lv'k\K>E@[g;/ S1{3m;Y%ƇN!ңGޠp%ˡ^%$S~a!^c9H^V)}SdL?.\ K87T$P9lr"ްrLhvKC'pb3Cb4'$GJBq%4,z^mAJ$tۚ7?6U_HCv+{zvf0͒e9׉X}gosX^1asEm)n!u.ǵxT$Qd6qmFrĻ7===iŻN]K/.ޱ5j2P#K9L&Qå("'+-Pdan0(zq_`su9(GvAy"#qbxOMt^(g?|9kYCmp oLj/L3Vmo23JQ|e zmrs *;dW:i +˨X(cȺ" %cN#e#:!<",TXD2Pw) S7&XAB@sFT4[k@wRo^#B& A>+kܢ +p `>Rށxҷ5Vs{n) w]o?nk9GZqT'xGg7Kq4C5g̃ oMb8#jcFsW/>럞 ԻyB_ULہ' r Gj߬84'GCuNq%dbS</v~|!ˆ NdkwMw}BisA%V;WKe+aq_kE!TEᕻkk,6,Y8ΑYA!KB& JpF8˰1_P'2 +NA֨<ڻ6!"AլvK t-;_%܃~sSȨ/ofR0d],ak2iL1&lƱcԟ|ܺ&ӢNDNgO\?66]%Ф66˒D5 gPˣ>nQQH z)b-u{pW_grKU0?9tn58*UKde 5]GEWݡ|L";R.3GN9ypll+x@`΁ȍ]zi@#BIqV]LK$(n]:u<. ҩNx:Vߥd|Վ4'_ ;-siRXۦ4ʑ/dI.7[$c%9IrIyj 5QʹlXtuۥá|=oٹ7U +Mf2*yX7| +qj%,h{܏jݜ0̝UE7-L5\u"1hmDuݨm;k].d󦅅_*U}Y]sQ՗0Y,%yq?[Atpsc}2ofl:kIcgΘY"tmx9\n?L.roOlzgjt웫."v^?=4;(95ѝB؁FΒgh5}il>`"m +b6Iw(f/Yf-Lli&~F#>x [N͡tWFQ,lzzrwu3k?բe O&pvcLNwn,Π{!}GEzʹ^33M2_<^m4o,F 9 +йҴO }]Q8s,MYw囡5Žwo$ݚFczR.)zHoK/^CsK4E;YHRފu&񤵈 '˭Sa[q$z4UŴ5,xw)0V'6z5˒”)ΥNҜ0RVg/?"Nq"`=4E/΃9?4dU Θo%]ގZqzVU&*Fݎ0 }% y7Hc=12~izHzj}$/mwb%6w'琣pDs! M0΀I>ů)9XHaFZ {|7$ H@g7@g^B_{ֲA_Q$H2\SiΜh5A*VSND:sx;.kC6l8(cXTT&Z]ڸ qLAߏaeOAg<Y,S +A!JB\2_@kH^f (6n2ӥ@I4tEapɥA(Q2~2=zOpv0ynйi ,BVZlv<;H_=ZB{" }wRU_|a]їDЖ}(f^ruJΥGPJ<b|WQF,Zq~fp(v̈\W%v̒P+}] +4`ҧO}rl96EMW !"$VK]xF-]kd+'ªIJ[8='7_l]Rwr3Qf'=8W|InBrdbSuN pE?yyd/F}]臭]qynKXX_Mdx{8 \#t v#MJ~y + <%D1HpS֏_u2~"sPY@]d+O>x#9r!)OM$ ݾ0?/XD 4jߡ?39VzLZgeos qA'{gGcWRǃ6ecb^_&ENK,skZeHdOOK)D6 +Y?l7+ء+hQZuG]T/+gj8uŧUnId)'AOYv +ԟ̊Fy_׍=:}/Jv牨ϴl>[1.DGgsğm *KbVLZVHQc?O^˧h{]arjSJ.8l-vqW:\7JFjZl?qPGج'>G`ћY096Gс^usuDQuK,f+OޙWcps74&%d}Ǝ!GauCI1 >(%\EN4իDFm=o`̴xƵ3Ι"Rŏ>h܌nӗFO]TW0{bھ#[I/Z6m!Z%kRospڈѦn%v5[.zrlJҎ~LF-XmޤkiW犘[UY^kն(sޛ1\ׅ L݊SV9ty[h]==6F˷M~א>ǃv֒p],Pn pltf˞(}U <_ո9R:Cۚok%d^VZoq]ϧ3mfMk]1{GZ萝>3e/\'fDQO&{z%bD]x;hҡO!vֲc5!uO3-LSܹt'994t|;*ŸMK*KC{H1ZeB.6@eDγ՚Wp9^+mzwh#qƧn~gˈt o6񋣬>TT;šzځGl'EG?YTPXӼP 0n/wv؈Ybas m& NYv ;,+~w1BB{T4{ݐ +Ӹ#}vX"ZbqUrclMOe҇=0}vh{`1NdhShFco}eAƖg!9hͣ+=`[OV +B[26 +P䃡Hpٔ 6cV8gf^{. gIӱnrɂJp v˝|z07f&W,dQ}O +xr'_^W[?yEW#O+0MdGllfV =9-Oc9XVZ'Z[6(@By EV~`1uwGw,O]AfKq9#a$ P,xKԑ$}+d\N'dGS-M7fH(pbP-ddՓ~-?A3)0?\gJN^!n.\wfdhO+law=#؋l3݆Y3\ `]p&[Dֈrl5\ێ u\NlC^$IsʠgFh-N^щ-=yg5{=/UMap~PTX/q!/v`Qn5"hhUR|)Rt5?mla E|L x-ܢC^P)l$yYKwyt)WZ2NU.)Uj"6:~ՠÎw-;:\?"O +Tsȗx ȷs ]\Y=.?zݥd+pj޴G3b ʢ e5`  UARzo[wb"o*2QlV\IyF0A + 3nAlv8=. =u`Ywat~_/{QHZXKf^]3yF6fJ `!LT1t`(nXt =Y)fO{JW^eS I眜y/Av; u_6PQD܇Ҿiu7n׆%lF~W|C)JO^[Ǔlݙ9F0lsm$lG^B`BCJ@k@آ{8Ǯ=n[;_Nz'~K|M6Q-=4UYRuΦikW]Z[,DC%6mC]/'m4]Y4NcKd9bZu=)AA|Uq|ZaId_)VPC4 + %1fRG/Nٞ~>镁i'v@S=/C)迀#3}UԔn(m5f_2ۧoFEҬ ~u|†hF줿k:cm&ڷ*G;_:I` +`¨`kHwl'lY"GHpSrG;@ıYbs, p̗m \*S53Bh`. WVޮw#״\ڛx8bQ +W^F @\#@$h >} +>e|3 z"eԯ %ͧ!}[^͂Hk]^SOY;vOܫ>Ӎ)\ |"RS'P(dUj3kVِrOe;Y)&B3ƉiqZ¿Idk2ȞzFjt9<l)ʊgp?n;GWfK('BxIK%c">L"O+)g"晨lziuX< \W㔼gWq^Q^u@ޥ^|=}qX[ϣ?i:5UkK bBEYb€b?gjF jx1i<Ʉi?]Uй)^95x7CZdd̻{w{7o{KyxO]箈eǛNOҙ}=EEJBۤ{t?v+'uS}/N鲥ĥ<g=qq"gW>:X~ǕzsKV}5jhl ooЩmHNVbLIy1:7u.[ +9t:2ؿLf/2c;S$ :ڂ(V%/}ԟ.nv`NU\ITk(f'yN;n(juGu~Rͱ|cb }"HF@տPn᭤>ƾݺz_~'27Efݚ?>+ht+#fp; c!5qҾG Ai崷 +Tw;TXiwQ:JUM5V?_y3tjg1am+'XD Ư3o橸%kAֳ];s,u"oeһ eH\1ÊZ ܉w( _1wu~dpzΖ|7-4|tPD Hghqݓ {%;صsbN6O;49lKu8ܭ=~Q9?8̲o33 aiyS^[Qhhʓ6{ɐ 6Nz2Tsb*jZJHU'0ӆ܊r MPrƯ_5{SD+zͫ R[ݦ\-W)v{i:ͦ0,F:jbS?K8)t;?*XD=e-^b+ +y^2m>Oglda:YY- W'϶ @ {pa54oսS.~)t:uR,?WLZ*MlO:#6HS4Lmkhdž=zů"s +%өY*$)+>%XGpDb="=Y[Go;1o]m`t7֟AHY R-R~bcg% +|>7q1Y`κ' +<¯""BoQ_,!eaZt9~kҊ?ݨFA<¬Oq+F/f\G-8491qAܡ^=jt!%:tc/&ӋD֞Iv\/q6Z;1F0j)]QpHLt6w\VE,s43 >:P}z{<%s6bDVdH4agGW*koa fz8L_LY&K_e/Zy=Iˈ԰Qcz5~hb.,JaX63ӢE?eGavJ ގTWJ>%9~Ăci"?jx +~ ؒUTuR\J;ᱫ61zxY4"JI]8JKZ|D>cS Z!b:_j}:U܍j `SB jUm6#ǘc+˽_ +Ҙ %%hpsy͟MTXyaǂK޻ +{a.Ƚ숚Z/:Rj;)=_~,dʂu#A@L\Gϲf°*\ׅ⍸w=3M1 +L==G3eTS6Km Kw_Y_ yT!jLٸq⃍*P.}lGZyh|1Klg?Zgrΰ_zmu QD. .r:lˬ;`-pt^ +>Jŧ|j;EabX `w'xmJ}zJM7U7`2 O 0#bCFkvIYG9GipxO%WWd IC>ܨB2.$c%?8rGmAgw|ŞSz%3!=,\_h 1_Xdl@A/ 6 ȜD$x4Yh' RH$VWw j%%zR8{c %0ƌa7,V&E;/f}wsX-A:EA#@ +P5$ @'3W ,+a~ʩ",;$7Yh'l.эr\i1a%۬jl2ͭ @7&jБ3c1gx+ =E{.`ii X kAw XWj$xFQ: NfcIw5Eg$\& 8oiujw^~+z9`=`+*ƥȗmc5= B3,zŀh&}*yrٮr-[A{X]fe _7_~:4ozXد4@;akoxC"WL^Xd#Aێc)5J`~C7OI Mžqqc1b}􏐁gFq@*[b_o'A|b֌֯ 66~Pʇ$އn2t0d7 Л/a}ZN'$ U~iO~WA8q^Vnsr^#\WDǼݾw2ޥ,FpssD=+Cl!(]_y/ϩ#OMtK?QL0x+j.gw^W岥6;йtoYCP~(1Z;Jvj|.(˵ա)UWuX[[KK_/JQ"!9KzG r>Et}C_磽ov>lsyZVeSn篥ŭ"!RޝIx6xLv\fq USg2|fәq,Jn/\/^Л? z{q$]o:EP̔g8mL \)l}lbW`ƸzDQ(;]g|bNqC&ݠ}<[xH>hٴ %L~#41 w5 +c܇Efw#jVY.#0AL#gj^;ZR~|کrd>xh۩Fyn|6*.ϐUzbSz . +NIfiӞd[ +{O/T*a-woYO 9f4*)# +gF)EΞ~}7oSxR&R`iAr:㓦OF >6@wxO'k]ha~Q?}WNmxA=Z<@ׅKTwo^?S?z +[cVzi orۨW$.@M!~jEc޼扩N2hϙid4^tw;%*[Z0 +[j4.7nSrzJ0vYgLn#U_{K%Ր[[NTl2]eYܫc:q:Ex@G3o~Եסi#wkKkpyVR[n3Z0pxL>~Z)jԤ7=)=nJ`o|n+1yjkV"[d=h10 [&4oSlh"LAcIۓƊ\r@kS/*ϭV9jnq^vvڹbq;/'M馽JeeJu..xxMABu^jEBElMNmfʶ6~c>.r\RP)2TzxJp8&|*.zG)8*H4i?G򝦓.˲]ES3}X v_1#48h3if&GxcLq8ū^UYώ5ꑆ`H{2R34ҳ%~^s (Թ݉WX^MM)ּjqFKuq~z4Z(dnr%R!'EY:@#WH.KI/qr/Ukډi=A9fŮ5y6)Nxo=aǪ +-@Y}ilf9MX5JѾTrjo +q;k]\ø"$^S.OCq0u%:}_ϣ\xl^ϧv%u;np/C6Ĩ8tiwfmglǖnFz)6L)뎵=VȤtZwk؃7$ Jbx"$AB.9bM4rP>D{$9HPH:"yS.F,:U*nn}te|gkZe-dbD؞`na+h:d*6}>M+'堵wiI@uژx%ۣc~ _s5(ÛY\n*?OhV>#T_֨`T6T0ďTT|Tv_#FL S#h'}#f)r/xlL%"N5N}Uhޏ.V3ʱųlwa]IEsD=GM4=YN$r$bVCn=Hvْrv-cF?ZgHo-W楜\aaE-`K( }Y[N%H{'̵/ ?[+E%RpR!FEh,>LV6^^P1^wP]Bn5~z[x:kC_\qsI!!hGk>y8UˌX16h׵֧F]/$e!D*Z&&M%MV—>Efѯx;]$v>ifFh׶ʮ`|1#{"/&]s}uԒ=Ũ!}o_f!_>q䴄$2`b;M۸ʸ~tܠ+3}6sZ]9 +.9erJ~~+[-Z++heS +ºK1HFږ=5=MzsiWS?T]՛;%FѴ@CRD˜ +iإxXu[k[沕[ԡP_J`\=fs6<2943Loьڠ5_Fwf1j㙺5:J7 ;-nXP/Pu+W~w$b(DQXLO&6>=Tgn |T.߄/#W5_$4G,=b7{r\%>3\e0*Nw<;ȵ-N_tdb.&veBQ_XtꞋ@ +#sá =ouַ1;KUL31tȰB#"zj# o NVH2[ vEEw]ZiynGT0 +dWS[͖Cat] -a6{igar*&W5f*< n 9LP&c|枩@.]#6ղ]j=-#%z\֨I[󩹜V_}mZ& W/d?cI8DUȦPg.AWAu@5*5P=4 TVTO䷧TW;k IP _|Zi>to_`!>62fV*Rryd{i@dtXJYM稔ATD~D!aM!A. 9Q_( uD;oB p`ӯ|bXjް{?RUKSAlve+CJHF# y@*tA2rW^ +*1'PLKB;OxDPJ +2[)/}ag_hƩX =LazMrZ `G厦:Tnth$HkjʏKz:^gjЪzSˀ={]D0ŝM` 0 ]~eAhN! +Uzό3{'V +obzU8Q} ϱIF/{ '`q *z#qܫP|h>l_ +GK[%LT $#Pvib=Cɶsk3jmѷ18߬Ho-we Ϻ+M=C¡~a-#|?tدi~1%~m?͏?ƙM>-lyyYM_eKx)jWtzǛZ ^;Da/nJ;$wʃAb;op?]*P-qVO}.~nur9E>8_nLyt67 :z +k 4Vn6Zu$bѫ t_V_O%|;Oh7ukg/[Bՠ{iZ>9QCvlg<ٌW(.\\܌h`vqT91FjAgʫJL"zb/IyG({.\HsOwkv3E +endstream endobj 196 0 obj <>stream +uytiw|l4wlJ/3d֧{g+y 9lU0W|qu'\G~0?dnw*>x`,w?U@ƥpzvLt8p妼`+H:3:Nsl+n!پ.܋&H"WX%?lKۇآ~ΎkmW-r\kEjГ6M9?J639O̺+[dnRf [/MԞcWZy뗤bK{gHuԜsfr,Y47ezSjVWQmŰyo*KQdy#mMf?X%&&㷼96twaQUί6ʅfJfzejdDݽ^%fH8PE}&a«w]+=\yZvT$¡WJ:9cteW&U::[wc3 ږF87U;F.kra )")ȹ t+:B8>fY)l?Qt泗dYD41;I'Lj!AW﫹x0m(ۺeu #cv5۫ʷxˬR2$AxQx EwN`FMjVK14p%޲v@h9gPdn։o]sXW+nܜ(|u}Zort{KO KQ~ aWrҋ;R1ai,B_%W󅑗LhVeVɜLcz!OwW'_glTtc_Zz/=q2aB(vp%7CA / }4[lUYclS xrjDg% n-М#*mGS3/+{MuYd;Gvw|hfS(PAFowP_SMK*=&whV$ P{,T|#NjS'GNTI+sn[u2ySI֮Pqoq*{AeF=v@">K,A[Zm<㟡Auu+4qu$[V4s(f^0? ed>fX(߻UrQa)ATSSy_mn +};d-/gIAn۞' ^jYR(6MʵrVpgxJĔ,Tucි0B +6ȯ0/!bn79[+ +5z%Xv<[  Hxg?WUB81 }>@Gu#S( )/Rrj}[söK P+޷)4Xh޹f+2 ʥޑ FTzt^ѥ V> #"FAj86˄ `\Bj3@QP EFQ_]iat  +ҨI9"U,@t rgmfgL/ ONs޿!7#Ip 4N08y =S|Hg7+'껇Oݯ|W4'dOL@g~Px7CZkHkwe{7 {yػ"ۋ]b>amO"W$~]P^Wڭ~_CZvw^n972|1ų&LR'rF~:xk(#TCm9t wS!= WUu}j.zUUS[WEܕUz%ݓ̜5K{lSΙvNoyy.E^YK@-zeBǮiј14Y=R?@B<wD'r~IEVsʮ|,\1'-X[0XEo/F5fSfΔx΅n.~?CtNe&P?:=nD^Mhcu&qbO+u]SՍ:^\>Zz`֋Sv7 JCt+&RF~yr:\ `hj {Z }d^!{s-r]adc_fG跎$d&137'D'n87|2{0f>s)iڛq[Pbw.U{+oN6T6J^OjL=/xZ||ܵ5OVDُjMN7d2xwicb$L/>*Gih;w]xv }}mSTz ~byͮ]ά%hlῑ-c^k'&7[rK @yҮ3U;I`KS[kw;fn*:rgWcI +bV3[oe?k2*]z:~_b|An3r?#USitwL\J&gI'![#}k٩VA.LSvf9[}6CAr]5-"[avq4)jUdnT$hvf%|ܧ-9R9vDO݌+=no];_~iӂZ˭qAA@mS -~{M @WSLƂZބ*ۯ'٦n N=%) +6;`?lj̔v znlWY}R.[ןPN;o.N{^7Bl皪ʺ\DI3bs9?Hs?BR* &I(Fn`H+ӹٛf]RWmcU,JH]c|rHs!!Ml-4g 0*N_hEBt*!QpI6UnN&SH 5)[gxD}O'+Ә*txi,@51+j9mˊM}2Q]ʩ$y#!osS*E\( 9ӷpuAq]qzZnbJ]\z[5q06VJk^mՃLuRYZyR _g P6n]qQS;a%uz1x*s5(;i焮jUg?FSZ _T V MN+i826):S۪#Te%;Op&t:-TVs:+Utɗϩ5W7N QK^#F/iĴà̴]7~ŁSS3ȮZXβwKrgVg}YJP֞bm<;~㹡rG7pi"6WUbk3ƀW BMDjT$rT(yQbP+R))w =}7jnRWr,\Zcq~vVz k'J(ƌ7ۜ{1s~跴a$mɡS~>Oer&o^A3ir72ԅ(> ؠX?G44N }0:J|9^Yvuؓ7v`Q*'^uV܉LW$gƎU +x0rS|[d^$ZW/. xV&&zu h)`7R>A~J^C.Vph}?!}{s7gv bWkxpf~HЌ_B.dF*D(^gS`:)6"jm`LބfUf*ffmٱ/hx,l dBM!],74=gDnQn@amM{&`O"ss ؋[솘vHa~f+A醗yuhPvP[q aJJkQH7\^t^?Ó]| p +|M/Cb /޵{1[g*=Eo6p< Ca[涃 c CwU"32ϵnI `gT^y]1*, :-ѡG'<";ӉY Ny \o lgB.d17^윚LpMܦ+ĺ! +3'yDH12 =R:%It YEH.z HHHgg@|-t 4 [ =%=[) r-e2KB1pS4"\jyǍfDnF* +KMWL >P yXJr^ +<$"Uڕ*@u(PժT>g64fӵROCZ4,'̈ 1ےUZr*~տaOWfUK-OA16@7Ї էԆuE/١;cqKa'%0u_:Lw MkȜ +&&YIc!<ψ?nx&y`^,> X(,W:K/P2$XfzG>MDߐqOLo}J?d$8X{JUg~JM\^=ip֥} w@;ZۄT& #nobO@미P?:to{Āl/d? +xvsuu%e+'k6.l9pI/cebWN$_`eNԟgI4yL,2п5Ts$H] a[,F@E#=T\;+_u:dJ]Wˈxq^hc̹ktb):X'l ƫ\=;VaTzIc_MLdtmhy;]V5(ɋ 7S[39rcOrf0!8G6;m?<_ D9Vw ~˨qZ^F| +6D뷅(CSbݡ`u&'Sp&e+6¢MtrRDLuTx[yنjˋ6afl5|ijOk:ݸ=wmbvA/zu^d+!V oinŝ8 )4^Pq" +uO킸0 +b승yMVA.V/1MՍGV{ʹw"S22e#ebe\)y\^RJ M]T\:R[̈pcܥip~Ec +)fӱn.kUOTsyQBFԉDͿ.1eܔ9L7t޻7IN1Xe:n3s}NUCw~s3mYt7WR5q7h o`yP¾nIsK=$ 0/[IۭqۻW>\NPm趽:vĨXHl344lm, ̙q9(V3&&`CC=-ξzo=Tg4x(R!ԋZERb:`|Y<"`zcED[=\lOk8qsuΜM-U"$IXEr> } }:sNAzVJ*wNME)WEh^\aLx3߼;݆yev~ +歉n>}FΜ,Աfn[{Dyׅ2&euvkڡ\k5} UCGb&^iH1wɛ9_FXwr9jJD M0Iۤ_jNu^22i(u).iqt2!cq3w4{_3Jx;`qٵ&v?1;3tLWm|_2s*;u힀B\HFB[%fQV3 Qn3#pW3gh*{"[<lƳl};r4uo'軟6߽Fu|b.Sn'5qخә@Om9&RfG/ +,-o*Ɨx;3zUE 06fYfZ%я6Ow=tn>kӏ~>F=c1"ku>X啳^}8H9vup+[l<2F_׎lMaٯNRkYL0U ͞əʭt2Ǵ^*= 75^<,9=EAM)V{OI{ +CcLٍ=3ꮚ35̵AK(T^GH$9x[FgW|^Җ24.#̙|l"VG%hi%ha1p#Zib1iVaR3^r'Xp.4ܩZpK +9kuXh2wbUCɐ99u=MstaiՉd]Q+{#Vw8&! mJm5p4L\eύKrh5Oٔ=X`REEPm'SC˷z=Ah$.+ux:x5M8?vɛ_zڒV6ި"hWH@v {j}_W`/~P 4_|̻_epҚ>|;.*h;zI|4UL..6;vp"[=ࡺa RTBGF*@X #U(PO4BZ1v~kxSՋ4ʙae^ӄvw ~!ض4~yK-J!uIvc{ȣ1c[!7yŸ^7nVez.əŎsEe::R.ܑkdkz\Hb/#4Al kCϢ 6F esc\Μ0l&cJsd X*1KE:`0ǂY A!3]#1$T"R~{q"|fegsv^1FaqN]>(NSoOy +R\\Gh ޱď=Y p=\\z\h=aP,ع}zG~~c7=jN ~ +{2Ӯ!w!݀W ؟kN 0JbL;%ȕ~ThrVAk) bM`JQ2UօCW.?z|HCG$qP- ~H׎8Iv>&N%6@i ur%xzg8Zֺݗ +4 +_<:LmL(??4^*qWE ZEry"|@Q1P (EOiŸ4^ū;+(M~e~=-?2"HL|,Yppt?oP?-ɾh%ʽ7əH$gXklhr z Nu+~akK.;U.޻mB˭_[v*$71x(t~tҜDkM%o7`۱0=- +̉掌=,Py,c<,` $٬o@"C>Mo%Y2Hq7 ۮ>Y;z|rYG(-:5F4 Zx$IWMM-1~,j#&rQ_qOd~<XH,)BP3,n=ks?zMD $ٙj GMȽɗ<>9T{k~#h?A,OQj9޼ 旃?CfM>CoM~]ꪆ9 k/06l۝}[3AM2 de\z*u>/$7Q|8 n +O3fGlfhy)/?Ez6;7l(}f3 + 1vq6#v5^) +%287x"&^BAw^h7 +Z8ߠn¬뭁MgoZ܂i,ޟO O'ʉcjrf_=m҈]taZܲ-K8kzYwhe]hyw|4Ŵ &6SbyCs[ wѡ?u)]{M$\kD?^OO}Bʟ:nmmb>[az*4ŵH,DFm6ɴ!?smu=-b{>>~W58v*ӿN|ϼPwa#߯ZL ZѡO5L?=.+q6Qff DձB:mAT +-^vqKVm9Dvs^Mrg;)"zwwFQLʕQupl9ga4mkߊ:DW`2kH_FژUU=-ͦ;20R>)qMo}MBpvdQ鯅s[GS7q`SK/Üh|=4X-2P_SNۥV~Y2j }G8[j9Jj'2,AҞ Xpv(S7:ug^/vmk\[#v^\LmefI1%{*~UhMmIRJW5{j6\-M bӑFX60:1Qs5d +EޮxqKHp-u:7BJXvOVZwʅPim7 E Ưt)#iHuiɹdq-{K0wu!#~UQNϋL̯O]n7M8Vq/zչN捺|Vi9aM橷iRv_P)u"3=%7hG"$eȌK0(f4;aaYmo. CW) [q0,pReY=bZxgeoF?-U /j`Ch'] 4DA9Q%7'Ŋ&FX+GYc'L]"kW cӔdrUB Ӧ*`sQ{iWz@z}}NvMSk:7~DNc|S"ζV}폘0(h#6!m<9=! ^ªqor}len?{K~ ۃqSX*EEcmG>?"Uf-\pNXϰZS@abdM]0ͰU3c_Onwک͕jEH u[|y/ʓq3KL;V9YJ16ҩ%b#:c/epVFb\\(ctxpLsJ~ +5;,~!SJ˙Vtl= _ ^Ȑ ±bmM9%b]#`X '"4rR֦iX%( PPBŨrOS䑯Ƌ+@Hslhg_8';@T]y9.@A\mlW8ӁX!Q55@5Ec+5aěFDq(F4;15@I4^my ^T:& /ݎ?.yx1:)2l%?]Evv]2LeЛA1Ʃ d C5瀑/{3FL&-hf0 Qtt'i%0Vk5G羂hcYZշſ6w˯ǀ5U}nt]/Ss&Eq; `;__AkdjZyGP޲=5?VDƈ}-!" upc5/ֽ .Ix 7 F# (MI_Mq= k}Ukm, MhS~5?_MRD$D>f ۂU}]?I?+ïTӣ.ǝ'aN?Ep9npԖG-[Otܡ+ͽ빟8qΠ~YP>%(PUhܮ^FT;7Q?D\6.:뿗 /\h0 si ꎾS|1SioFz[]ϧ:j#۝ȴ6Yv64ǩD|c̰2t}Q6n_K~ -Sop)`xR^uo=J< +3c6RH˹zQW6AjG5a+5;渆s&rac̺z!wiTZjV{g_Z +'4hJʷW\N4^1p,w3F|4G>:twk}RrVۂȃ[1W2}v)m||!U#%2SEW YGBGz WRB碊$u]̸KwCvQc5vl}+wggAmNB6o;lo9W\_Tn>zWkK*P*JɗTPs,ueF SU +S14DKz#uRht܂PT Bψ۱ڶm3 ޷&#خl=/_<-b?p{OaQj ?<~8dѲ2cb,>^,3ڮ_&p!)U+0dIo3j-=$Či!&-^->)p%4cbM^aNZw'O[~\:#olQ^5غny&>ۗm5?UZük|ipy)յ8uDY8 9u]2mV+Vi4S+FV#EZ8F}=!Z|U +ɿ_*7A&D\7 Ҧ( MOa<\B#0Oe +t:86lNìi&{*#/?YM;,y' +PG=_OJQčAt73eV,Ӊ<ތW]x#(ٿ:\rf} s+hԤse[s!s(s&-p+};ˀ7+q YzŧF,=٥io|/m `RON=ꏌa6I *ޒ&eE).\85E!OCq-9L1Rozoԡ^qLS`IYHR$C!ڝKgSE,vc_W +"Y߄K<|>6V.D:7WgdΥHU\YU inG]riTPΑ&Y"37DJ?=fiXl׏ +I= ϟiTʟhzT~sDS%c 4cZ41|Dyo>mdyRL&G[6v=\v|SXh̎`NfUpq\ʕ&c=a-%?ZA]2kZ/X3Jo@UvHnBY̦{y~2[1F96Jk": mFϺ졍G~qiN#DkD6p[°ybxd g&|yB#AO%r#;57wQܔlQu\|ԎPTM)Ty$_ѯ=V,e6;SrDN ]㩃Ob\qHx'bcz1K^WMKP +VOA꤉9Qh Ɉ~8+0ܬT6׳I_DY@*2 U4qR3^1$ u#Љ_U@% X+@REPH[f}ZKʢX@9c [@y((v+Qɏ";S2 #窝`#;]{$PR:5|`R<`7TLof9tYOZ4gJE*EU,]eg +o-E.MǨX |;عOGHﱨRe*nΒFf*yxQD;Wge $ŨfHS;)F%i%>Q˘bOѧP +ӣ5VK3^ A*@9 C3G}A{k<[מ' p;m*qw(Dao$3" UV@F^[LXjQִF&r-{W;s-wȐ:4nf%-JWoylj曄M$N$lM\a1) JA~n r|n du5CT<:NB"DrBm =iyա6,9E&"OFy +D/$.^ch|4s ͊;--(@-v5`s!] wJCID}O7S|ko& & %[ G(`0EvLe OE꛸d)Βn-Td#E@ sQYf=>3"bBQ s„zw׽)BUF'a+` ?KGO:ӁMo#/su_)CM gi?,ސfߞK'ly\PQ9nZtzo3:L$NBC!yy[M:INSQ:.=Y߻@\ȶJ ̷22ǡW^PI>Bz>[׮uPN4et"{zijOzVG-9NX 'o֙>64S65lxC4~<hw-~ _gzr "4peALq}ˆ9;kmKv&E;:~ŌXOkJYFn^S* H4%G?l8l]vg+ϸw5p3qw?l7E,i`fD@KkOF1=_]_:Qw?d:n0uFg-M@0KaUO(p(AX,myj]?7=_4]_nL;~mƵ{K{jmhc)RqrakVcQÕ}o1dKHMчY.'G=nFݨ?:_zwor7ʕ)vh-ͰZ/6WilZƭtMi=pϽ_KMO5TUG19ͺ3VIpg*dg#/ZǰRdg%.~%4/+s,wy=vɷ0fERDsVaסNn^-,!=h ^l!W&} 3z"E[Ƣܔ[쎆B"jϹh~m1|ե僞ʋ:۵NU'qvO,@vҳ&ۖڥroJW7OCnCtHd.zǨН靸jÍ&5>;=[ui,l9c~(*Fzzn%ffYv=lC afZAtvWΜN3mέ3孛y:_SbKS˖ $ם+K[0Kӣ4b(.AMXCIYb$Mgj#k>&;V!&+e"++{QO fUK-r|3nUaAzkeU2

NڝG3S)-4|ǝ{q5cZ67TZ`VKHVg9а<,`}Wk|猨޹xgnz"s%o+24c +"ie&X7ATq Hl`x=Xr[ .MdTDe+!w^h<]^ЇkP{3Vl23u3Yf,:B N2l&Y䧾1\ӊ!pApk-F/ ^5!#U < G=E#¯Jф>[dž&nP +[s) +W- m%~N!w9g#_M{iI"R߈G^, d9Y~wILU`0*l.|  9 VNn%1׀N؉ f  K&'M  F# 3N@wv1 n=*PƊђwz+N6*R"ȇ,D# s{?= 흜Md/r9t9&!q"] +c!ȳ HߧY6ٸܓP*yxi@@%w;Y\m~D[ F>I.SƟ4 (:NP (?njf,5Gy %2+j 5o":lP5'ڍTHBkl,蜽`a$ߢNjD /KBGx?,:zSD-hBHQI" [m-@;PУa 5 w@($Y^M;}a!zN %Zo>#qu*XhoßfPMʩOg0ZLIEVdKwk)ۀ>` +>|$v4ۇZlր &`[= <$zLMfh ǭjF.' 6~:5fxJ_+*COuNd_8<\\y09I΀}O$JhRco.=Ռ xx$N` i;^Ο܂}4]:p14пJRg/9c b$qy/qU!G_b{Q[R@}7iDNiTcv'fđQ7s_9:v?aMT"FOں2Q#~ z:ll\ZD&|=;y ,oT{.ޏCmXHcЮ;H=ͰMm=rmtayQy=N·uwJxۛn4U_&jUV48gd{#ʴ+С*/Z^Rv4'c}NРJ g${ sQZ75%6GǨ:lqqLdqL+R$=ee8d\U*ZAf5s#xˢW,Ehy +Ѫ[7;MDv"$2yg0]e7T)˵ƫe;<+m;Ԩ:ujZy?=z/J.V7SP9\^'3r%d{m{FQr#c==S"O耜4~D^^-W:ӻQ^XvmuCa7lTAu=3MZ 7ͤ7]ܢ3 zlAa@H7v|nZe˵V߱tjGvOs4u`hR̪:x~|׬-e7\S?'jIp$3עik՘wQd%:՜-zc:z83c9Y==d|Ӛ3 heӪi5ߵOfEn< 6Omʛf^ƬR0/5pלl٘7G喻[;B~%}m5 +:33$2zْcKUf_y0I9Wt4i|jRF4F,EDk"]Dn~b;Uc-|lob![IIlv?lCf"ieFT8VPneWт'@bi)?x/Z1.OYf瀧6` khȂ!O6}q:Gp%kGVd_]-iŨrn-R4*rwI/w5Hγ|&LEܑ8 T*UX g7ˍ5=̷ŶvhtSQj_n &"KV\VQFųtTV35Hճ<Uei%7w*pY +AH̐E6ʩ D{[]qpMa΅;`0kxɽP&VPr~FN;K&E; m$1-aeUobGCfgK#QЏ x>h-!h;lk2{~6\L:T͝SoDR([dqh.7ˌR&PfB'9m~~[j ?>\Z)V~Uˉ~1g:xwY# efG:þFZhb3e@$-V&K`z`E톑>]Uʽfv`|;k{战޵CQMzߚ~ɒWC;*o2^ I5M~^t]d_ˆ2o rvթMUf%oSՍm]/]VrX:oWT^7m+M*7M,/CJ$ELoFk< ~OCƩLgH+DD ~n5T\ 9Km1t)@Q`@4@p +½2a!zwSd;M l.ų=e h:.pybޫQ\[0VmćCLkb5+eru2JhK5k]q<'MxCљT@߻lv$`@Gny5ӫެ]hXU^q ʭ6sdbcڅ!Bka?1^埨N~4@닎  .{`#elJO]gVvJ%S wۢlW^5Ÿ.+Lso-ߞFo9 *p-} 2rQFS1Ǐ :Ɨ-4̵b_!j9TĒ ӰaT dU PИPj4-,@hh֙ ]̈́oeDY@&-b h$og9N6 ՚h9W>©/ns7.Xت,&id+[ YIK +( 0)edk.`+0LX,}91w,`%r:YINSrGV2 +6}sH,L $Tr;g_̽no}p'x6ϙD"&y~nnÀ+ˍdU_? % :էibԮLةCS?y&_7eU +u;E\y@4Z} J "8% {సJηzZ.njάr?tRSӊ2oìsYhHYT ׌H٧% ?-guFҧ&,880hBx#wwA!bOmQJqa7X"-$Yoj>NUa39<_LK$)?1r,t91:04k'6] Y{˻DfQ"_Yאּɉמh3owVkCEg7F2<q4l/MkH]ɹqGKk1қ}i+ү)Z>KA뫟 α3YFNz3:AmyDgЮ daSΞ[и٪"ok)M~O +W4kM4 ᇻﴷ~Fgmv LW%p;n:7Q1֏YXgIeŚKtDvsC>LϮN?|Rg_t42^7i4o9eiZZGꅱﭾxUWi"B1ޜg6=;$WGlã@lHU.Km&NF|/gmOoj\i/!5ʦ˚\Ʃ؛#҆ޫ8f^ _zŝQɡiJ"dˋ(_* q&nܰu%Ya->:yxdĘ_@|1f5Il8tegTʕ2V,/jZ'ְl6gkwmg}.:/}t7R8UPKr>p]3ޛKsԈn^<)! Y11?_#6Q.U7oRڶϒuY{nyp.\\)_Qbb?X㼎ggf)؛&ݿa0+DlEs_{z&]2qֵ`= +D6?ίFwo젪.n Q|(E53Ai@q8̑3ni"{ 9Cxvm78i5-Qϫ"zCQvٮOol0EMETεi[|y]SCq:FbbGɝ2/դ™WjdvA;Ɯ{r9W9{ôqjGk|BT)Js⇆,?I#+FA{VuicqFj+뜅v68~m~sj~|v9TvOky ڴrwbi͂(9,`5hd{5+vҫ?2suإw3R^ PUS*%[DFM(ݶ!_|||g֪^dijtvsOvOt dqhdB^ֳu%XY=P%gm^ҤRIo6KKq]LX#@7!WXkMy%fP 3SpkN,N#SՖ]cneJN&4VaLw;DZ=Vw{mj~!C"]ᐮ^=.7g!f mgLV)0on d}l Jyݫ` nYx\˚\rr "m< )}^?z9ӽ%O +?a;CE:#y( ~/(u 4gdff d:4Z*^jx"@sFwn*LʦU󝜧׏DYy9@CW rЯl;'"!vkq|9)#~|uԺC&)1:@'E~7k'扌"AE +OJ:iBډl]oU f&2gg{y`^[!K}F'Yk'T\W/aT 7_7^O EH OdlT+\Ql\\&l֒z `}9flHL~-b(Nsի>2-CNOy9weIV0= /9-^6X~^S//Za}n23GPO6 pkOʉkoD5[ $M,x~\S?(/ XyKK#[*w9n|?d,Ppah7* Q߷;5]ޣoCGRM~@5՞DMm$lJ" JrN!$ Fl wM]skѲے,BȜJ3$+oJP~|WBޓO{btM\#I<H#e@HIzl'lSIzYUduVNT2$z{'RoJK.zAE$I]DŽȒ'c #UdԴӃ?I1,fcL +Ry Pcj f"nP= C'cU6QVT52]ӋRTcG{8|LN( +yQőHx^ Fr Mphp2?Wt@W_8JYtu[iYXK`iET8o+@dCN2$tklɦ)'݊0֎EEَ+oYlp +p ppNnt0Smo|p +=2,$4\H"­LƏD53H(5V}OņJa:}ӔZ<a +oF!M@r=ie b +P +B3F1v؝5_+0Ԝ贒4C iDnMъ@ wڰT@:1 G uqW̯ZT3cho1֑24u+X$oozSkī5"Rk/@_<.W2P+>P)mr¥G4KAy9i8Hk7_koio.זz`rgT~>/@o{g@ im})#Mpx}*_sAݩ'x%߷r&w;d3n$QMϱ;8@Kwc-,)C; +ςNKq9x̟w$¿Oc̉ rr<{wEg^; +v֣+ݔ[lz%7a^~<\w>+›m:~xI#ߣAP5뵔[.ưN0QS+lSDG_<x/D1_Ry]f$s\4sTI1mUȩ :^j^9#=ysѦv? Pi5yGz=ի +U)FoJ,U:K%鹮g/䟙5a1[:zCzLӓu?C;L(K!zvJXDTQZ~556_4JΝd*}7fDԱi*v O$bbL")$gW7>اvWWioyճoUJZJ +DbJQ+?v$uBaHhIXߨj JX `+XVRI$q$2]ީP]y +chFTh-;X-]PAehm+:5T-=; +9ɍM29ļHvdi ++!X9]j I> }5KP591* &M +!#zq⸆c-dQ/s:[k)a~ w#'8& "3A +@ZiK8ZX59Ф +\n!)@k%Ec)|X(#=˝:}QqQY^ }TpbŐ2t<~ '"kbQ{ZPn}qEmv`\DTrx}###Ad ='zx<%PnJ.lYM",ɛgpz%(srZLHhv6C$nua *$sUG^By$#^c"Rr ` +'!I:(gLuϘˌf\~A'}5U- +4T1Ƿ#L[j4;F֦཈FY(",H "#@3^{m1.= +]*c B38Ħ-ՑE+&-7Jn ~U'2?)U,uBf\% |Q(\L4DBdrP{,ESn΅k}؏0+‚JjSܫ`ң z^>x"bቍ'z1.kc?-bD8D@* @0 zax|m'Y)'N%$sq_??r6uΚ){Eۜ}ƔK|n _CN~ʝ3PWPFhIX. gE!XnP" cS{ !!A×Ub=-i2uuG'7.l'Hoe0X̲QYaQv^bNe+,oء|%2DĖTo@B#\d1ׅpYHNGZ3j~PtE+cgD' .⓻?gװ9,A/+n(D.{[Ge`-l, s7C(qVq@r¼p| (lޅk)CEIMh?Q-)mzxC( +OVX +PrTc5~x:Zt裐Ыꄏ ՅLy 5?]tH|ђ\G +T3ԉy=rޟ*;B[y١eYj߇ W.j -AH y@{T np@i@(_6O@/M@7w ]7T%4H- Α2e͒fpoC*L1rZmG=}5vС;dmڋ FK]Ӏ 1orat5BCxNc]N*`4?%s>EkIԦ" +it=Iz}saV֧LBS-˰c GS K.*Rnmp)YYay j9B9NZlIv0[3EdoG%B hD>uhC0 @[7\fAV<뀗% xZ&q]jmm3;- pi\.okTΥ8ۊ0őggDJC#:osd¡E>_"I +"U} jDxb4.uK@&@p7 t e) %oduz.V HEvlM Qt艕d5g/5N A-&wZ/wigF Lu@& +N5(T܈'<z]Nr7rCC +iTǒ{q ?%0~j&"koAðb=\{bwQϋ=\i+!7m*5b2UBkŦt@k_^,_q_s|$9|jq5dA;YDDt7zJq&Yռ i-iWհJQ?4**PPF^/i7![WW( 3 )@pcھ V>ss# 'ѫ8.ٴxVzJ䍰]KW6^QB1@Dt_7s33וnjX%gV9rqh|Q+lF7ޗushs%w6kc̲J-ƚY} rnA(?2Zrf{w$"8%9I ;K{+NƫkCUr#pSqYMM3-4=?HOftle }]-ufճGMq({&D_—*]nzy"vH׭{^tbG$o@iFr{#r$gx:{AM ==+sScON7fvl5%0iq'R۱<Ӎx(cׇ[|?Tְ$Gb<5."& qQcS \#~CkǢ\FUf`(Ul+*S˵Ǖ =KsC۹N(G؏|xxNݐD+(Y2P{BuVe\XGRB-~trM*+.K͘Q-Shtn-;6^^KP-~͊[f֫IP@wrrGYਲ[Հ"l9x7-~jS\|4Ǣ ,,KQV֨ϴ{g 2.,U}PqzTzN:SI6sZ3Z[/ѮRD&$6~O!EXF؎?Yefm dJ)@9&/Z%URIg,gt^ZZhVQ8ʠ!]87cQ"d}^3xy;O/@K)e JݨEs)2Cbgd3:%\{HHuFi\+Gƣ$Qr.n)S>%OL5Z;0K2a +Մ)iyoGnI(ٜEI~H.IV +(t͹ r&|#/Xp*|oX +)_~fЄe<^eR8'U+턦ڴO8U:-BH'k.A$!* <6)>JXݍşwՓKz[tVp4/rat͆3NLqD"tml-IzԞ8)Bn?Dn!kthu.NP^l$?;w'<gB!;-FlHِh`̔!hunhzSvվQ &w*I-!/a%[i?[qWQhcI̾bIc!Qӹz.#)Nsh"K&5Lc/t`+"i}:OVL)+Jj9{B52ؔ0l5#ƉvdH?#B},YBOCuo2MyiW)~R&ȱruk%spqnLC&Mt)}i&S#]z= [;&$qNt䆈#{_mk8 t!Gry81nN&5k k(H,>|'- +xxF(F)Ň@LIvLNH2F ?I5:ZkOפ-+mk2s ?SS Hw 4qGt& Y;Ⓚ 4rN5[pde\)vr䆳-4S.L6y~}wظmBF"qbdXH^\@X B aM~ X kن%A u[DfƻV(h>Ԗu]oX<zaR0?& 6‡#dFAN60v-@@6{+ &@h ʀT;hA'%mY,_82 +>PRYNIE9B%Yai} s~Ӧ ϫaR)Q[&[e |&X;_W|cii: k|CgJ=<8l>TnS4HPxi#E:x{ղP:&ZtU2gء>$;WNׄOFJЛgLP:9AH9t"AFR\.>d!\tb]""A8^t`:-Àfu@͏jO≣?uZzs~@xC5R˱gu  | +l! nE!˫ kcɅh๒I +`0чYL r 0pP>sͲ00(%g a"9 Cx|E%B-Yw* qDdbcvPk{m8V~Dw07j +d$3f{VE>9}ա +?EfP(W}w!,F+, +p4vOw?'s!ɣ&˔CQ[V=o~L$·WvLP:r+.CUZ5ڬy{3*Kb$p"" qs$?dq 1(C-4߯A {%rO@߯@Z]c@@RBojaHT QC#(rGm17&c~YrD1X^.b!gnъRHb lc=^cZ8O^3ޟ>zu 9}܋{k/q@0)"7u@b՟D-7!] .9Pl+ a}\e5QʡL0 + ^W=fI|?\_X-Mm7HW x]SHhwNW,%6~qKx+G~SK[hָfk/L>zNWcjZU_mUD(…ݯ\}ȧ|}}A|)nD}%yk>n\*^ST֡[njml;T#'^Y3礳{˒4`fܭٱ>ިEg@9{=8?XrB ?يڶ^ٽu;/xfc[zMff텙 oz݋l&/τY&[H_W$C +oX/4z"q;ђa :b.Yjuc+K~ [hj޿Vr[9_n{ƺ2)զ y=$* -/גd Q2w"-?d%=8J51; l*BБv-L(-EZ1UPyfA<{ܴ‡ۚQ?kY'Ug*_b  ] K5J HE `o\A@3rϢj&fS^5Ӽ~,U.WM6ӟ %*Ew+,hC~\xǔ˺Tn5b:mR¹5I4M#yF)$ky q7cedMvr9Qe (ZR:v +mCxHΜˉ;)"0CQ2EG)5NIȰH6RRmJb +wH1&졧iӃ` ^Gnew`^_=#(U6F֟&3G}oGE(iݺuiΜWrpKqF6qĢ*iSMsQlStxu?p^gj65ez&kps^j6:.RgBG%^^Zr톝5S&GczAHWփ!@+5AjbvofqSOV2!4- $΃@Ѝ" zz +[ho ~PȤXNJ\es-Rr}|a +1ccL3[q@u_zr>У*f(A0a _C:t)7g ቐzB +q+U@c@g@lxSN@}UWFx)IT>n:;67,szM*I)͞ikwmBn&+da ad4Ү Ln<H'F:Jrhr7d5dfd,VR|©?YYbpF~p#'?xC/\=",u4@}@ {1 OP4g*]5^uyz^ Av)P}/k !E%HÅ<4=x myS-O̰qhZ pp]$F ȩWta LLV`=86=ѫVFg +I:7QFr;=P* <σ42t'3y(z!1˟7`41 "`dz n +]n +lna0(c(wDmvQ,\h3]2R9xqބpȃR}rO{ nW}W%[MƀņOaž᥷'p1#N# %0GjC D# +vZEfl![ ̲w 4,,Dnx|$)ͲTӠ3+Ch!F(+)"5S s ȦܻZYI@69Hl +ěbQ?kܛ8M$ {u hH GtW>%r*$H\d37wA,\ *y- R<;EFV>T B?A}T 6b"Kj׬\$\džD-YQ T2˷YʑC%JYbB>rX,C#-# k`/J@rWWPxCk}+%H6[K'78HwHG+e0*J yƭBw[{έ4aυpvuq3v$GݲSLv~I?a2ُݴ[l2NsΕG'x +>+ǘ$ך(*3ܛ^kBjBGG1;7zMaqc# !~FAO>H0"ltKw +A{b;[>7v4,޲l.ӧ]&tvLjiv.譈G`z634Ua~?m7,Z]/:qа_]믅d `< l9(h4޶> d:#9w 3c1U`g6EVƹيO#'!68+YZsUb2=*G ʝ爙nmnVK󊫖nXZAMk"ZQ.FSfMNKg.YяU2κ7Ǖ9|?tQp߇$,[95j<[O}~.dLM-u!gS_]qk!}j!7EbR7E?Ga;=u+5{O'N_6xa +6n[ү3;Y6T'l槩~G~7C7cIa3so~K!<{3% W +y/ljv^2C}L1w8f}Iu$d G~ЫEuaĞW'RY!؛?Km1 +S [v"Br1 kadVgkE/buiҔ~ 㗚2/UcTfеmK&>8cugjsQ+&3)qHQ_:+uwm'N3*EjΠv`+/}@M3¦VYrgAѓw! ,3!BIVD .Ulaҳ=+yQEqW% +_ay+/TbIyYoZ"[M2n\:U3Reȗ\jlŶmy) it+ d%Gd.ȏkm^mr<;N%]lmiTj(o9؍oSy8;fc+H;xf~P?P))`o~{{eC;x~of~s#hC{K̤o׽T >≆o?TRoۛof/r/5R/3ї3Z1J"daMڶz~ 堮lL۞OڬSӊQ|Mvk|2}_hAٗmJ1=8v/8ހvqHNٝqJ?Iո{w#B-’.Tn!ŗn1*WZ_C$lcim + sx|_IGVNw:o}q|A͏#YX/ڇ{9l+y}ܴd3qYǜ0☩xHs83ǀ\>yzṃG{^H,}7h'1 oݣwgU\&ǀLI_7 BgRzp}Y^k~D^{ktka4w__%|Iwc/ݏo簽yno= />V}_$jl+r՞a?u+~>kMY}oz7\t6'==ioy +x%_xl&;u3S?Dwʻnf1k2L7?~S2o&GRd5W!!V|av-<5g?$XgX d^Sez[25-| O/,WExz"`I$#8n3xwr|Mwd~ Ϻy|:z~:[ )vN** " ~Јִ;V,w@r|a+3TxK$U7K uކ">X{Kc0[Lk:>Cf"ۯ!+i7v$x_\!ՃwpW}в[]9I*UX^.~i澁@;?-]<ܟueѴKoM15ލzKkNr;U}TFm- +R{r,K%|+C?Η=Qb"s[i|QfD:6j\yqZ}f*lZjQeNo+kW>;K"" ,Ȇ|wwo5jq鼕2UlQ5QfTVt;A-xM9 I?e,pf:AdmY+.Uybs=x^1*Q0 ~"Vxr"t~syŗ 9όUrzN8_I}||>/V|^ipയE/:%x{=Q_K!w_~&]2E3+ln2A#WvײǙ~.e1mܟD<]g~Tso~u#>fҿ!?6{?>o#h!3%G<U vw_le'vPY?}Ǔw]5$GDOiW3l.wk!D.WX/tyXfل/T#eO!p1ORm9A*{OKsg.7w(.aZ&SByԻ%%gg (ocj? {߶ _xxg|iO}† i6_p eͪb-Z?˼,7vIG̎O)`"qys_pdJ9*W^lQ76Vr;ם?C6f%N&ǧe[c AFiET3—5yά4tjާYs:H > q1]oIv1 U @Xb_r~[g?V<gן{D눰?.{>m6!X9n|BsWx`F?GB$y$x5<&f^q{;ͭf?[tY]bj/S= Qv{\y?p}'UZ KqHu"Úy$ggcU>Kf LUZlC_ +8x ;67V_.Zn9cS# r`t-ōⲋ6)^wdA{e1SpۉҺoFc={̪'dMkN|aZhoFr:5><-;e3ՌtSn' t_9|lA#Zl٢*aJEՐKE7o#BΡ hyQ&~Xwcb^\yِ) zB}9W:tc%"jUuJ+cHWs)Vl _wSDhp=.o^I0,5<Ĺt*š^şwWwyf kQdí_YO; +b6KU +^5o25K`(].Ϧ[fPF׽J>%K]{X1\rdR뺰5wni;mE]_}= +" +"(`Kz'0sW#ʪ$rx$4{AϞՑr>ĵ^O`z6bpV+pF=u(݊T&~p E J4iJM)RVlKFk_VMnɵBۭ>Y0QܨÔ +q=VE)k3{Ci]>k6'f"vcRnBȲz79UrJ=Jh43L%;$. +=Q:ƌ<=j?|(^ou4(ms1pLs@s]Ӕ12K$ LڑlaƄTQߓf3`%|"@DXgrГFr)c,3ls#WL5`bmy zT/M3PBO&K e}j:ZExO vBz3P&YPJCP* hA[q0Z{0sGu\Uܙ)ʩWmGuL`YnV>grD_@'~32?Eh7&t]?Q=9Jzf}$o!9c.@N;nKς˄vFzxCY̥܇2ʑXVF<hn~C߅1B|B*MTPΠT#tA?<2Cs%X, r$EekZ'̫ʋe6j_kvNrXsw`m{WWrA?v竈#0?e22\d,)W~nO;DYD3;OhCف~+ri2X|CE6> Q (͇((Y^8ԖQ4^q/Ѻzp/z˻wʫu)&=o+5O$JQSS| ZbA%v@JWWl$)e1KѦ~lnvԯfo۬D{hLԊɚnF1ZP\Fs +shқbCwZ,~)1 yo\yt0j;mUppx?iJ:gTi)S{fmnq-L7_4%ejP[j~V3Z V&}!j@'7ǕvYy3}>~M6fi2Mv%A^a)255b~Zߗ(]@cН6mP.ʠOVsES{h!ݭu2c~#"k`톯dIrW[QO+Љ^]5&u(rݩJ6Հ E] UmkzVTu$6XKSwTi--Y#-le{f%~3B* =CT<UPzBMxfgpU΄6ط\苴^oWK]0-$fA<.M?P+PI| T6}ļ`ثxrlvQ~S$ue8v86X{^xx Z(WS=8WpzB!۬X>zh5l,1hJMA5AB̌,_.$}cɉG>beja/%r:MCMQþJvPG.͊n&^:GkY0fAwft$fgSW2fl{ئۿ)U.N- 'B5jcJ>;^\&"a1½JK^={Z4;QssaGI,g)5I}8'kPV糝|#ЎP^Q<߫dV`֓EۜV$Lbn\gpy9 +I|+02UOZ>!_ NX3QŽ*wxO%9^k2㵀mT(3:gs(N`IR4q] +kq97] +.k_ǎlnsùQP25"TtviOS+b20QM(=KB}~&s}3Rs?/~82ĢsP%Q/P5q3˲]-dzG/.KsѦ3B PpLj '~6ӿ$z"@49ؾkP[s&O/kyogbW.";YIor7|?P +y9 D,[&ѷPOl<<ǟqL3h]b:bj-&Ǵb12&p~cw&'ӡGV@Hd?n*>;>V&ܛiz+Ue_ί +^ +Ttʬ-戡Ez-QB[iR]S#TA̭q`'NB}콾_i\gMEms$^䕓5i]kҾ2A<_tyO8qa(qt|Pȭˎ"`hx';M9Np\ѶMM`5"sœNi Ѩu5 s\}7B-e ť޹wbz/{ÞLܺ^cÓsCTEwQi{$koޝ]Fz~2tqfx==yP0u8ձAV8b kuӍۥ/1c3._RPX͏8(ؙ(k8@*tYi_.t#@w8@SZᕽ^4j#?^}flb KCn%|jw=j/9?ANX?F'~A4^8..M +[?O5Dˠ5!ހ˂CԚQO$@[c`ÕEa:وk,o%^_fMV"(9w>J @Z3MjMu(hO (LoIR` o$\k|ߝs ꧍7$~=nlhLqc$oK$].C j%Ckv[T:AǺڠHXgP‰Gboj kcB,RYpsT=´w؅ AJ +@2R!DDO,οg7{Z^K_nsx53wN\h>2gV/N̓Ф4HԺAr|[q௛gc՗~l>c@>7bk3Px>IMYM\Y7E4E) +}TJ+ J?ZyW}tOZ򘍔 SYY/0ffN;o\5s^ k4{CҚSH |2|!(R('? ^\] +c?C}W;fj@3.ȴ=acJW%Ͼ5'iWdX2}J*pا@,qʖ !5G A@c4:T_ߘf/FÖSQZw')cSAsVqK1I_KI1ls?H:죕8l$ʯUkPOq\S +NG<ԑR-K5m>Y@Azf1[U<"_kioS/\!UsrrMw3Ta\e;\j~@fj1̱@Yٰn]-˲?)xS ́kˑi霃nڕ].͌.Jl (zK Cj>+Ҥx-'G|xLhxA)k K"l{vk{agu|š/6Jgd95O 4Gkq5jfHxev렸~16ϡI^`Nw9ײ-xUYLTjz jnh_>"L# NMɝ|I=o;{y=zK 4|-%)wO[|S'aT0LLHC‚D[A){J P`@T'X\\y4=ۧ꽌8dQ3jzDABMeƏt'-H^DSapIt 3=֯i|2 R:jq_˝Z&i$*߾9mV1\f-櫱yˣĜ^GrA"ٓE&`Q~<{4}-J"$Rf`Y`Lf^kK}Ώd?FsH)l6$;&$rҠz?)}Or~ 8Îw Jgcڡظ*R&;Xazѿ2FFa4O8z#Jn6;"J VKXCvؓ´KWXmtElo)QHW3ܑ2F47F~ h{c]5M\"_K\j/ToVݰ>?+KɮN] +E +TlWn,h/̉y6-9zeG*6ɓlj~_^{FK*Mig\NV#Kmf(m?Zrh1 %Ja":ۮiNY +i + +234<@)^Vab4 K1.?D}/ΒY[mnjt8;٦܊H;=־K~R[_)8#S/ph.Ψ *Ӗ>]#6KqZDndS3@Xv:7jd =v_pSKK4%[ӵsa[g&Mj70w"я|_PӐZH8hbcT%}plu /'WA>#"f^t[8 (Doߊ~. +}Է&nVlD?n@aAA*<?[RH2+blA3򴏣}H\iw=g|6:~"қkuRi^>\'+{[ +.߄f5㟩Ypj$S ʓ{ @scd׌316ە/5ES'l[z߆^o$ j~7Qkos +gP\YP*CPJ;PtaXHA|^E^3.У7yF]혠ENW3\ݝZS)Sj>WP80ua ɁbuE;%JjGp8}9_^TI:A~saE1i v?kxMԭnWe-%ʼnƐs`WhJzOo!U|My e)e^S`ʋՁMykGvEQ{(Vrf˯9^[(e%?P-pTYi*I[S7zacbTzk´Gx$s#Pzŝ ;3n(OK>.pp{=81/ʖ-JV_<6#8 $^aͼ,4vPqJ^NPP)WƢ)[~,8KȹB}ZX3VG!UXKFCNC3U2jJCy;P o*+}Mjw͕J dʴOV˿}G=rp MCCkh3 _=W f +pc5gg~={ L}Q$"mh7@ğn򂧔Ws%v”] Fl gX[^gObUR}c;yM9iV121%E\n-vYQlR qEMvoA65pr,餙>-HN X{D~uWأ6>z!y!u>lyoQڇB:uB]dbIӊ~ eo @f9 R˻nΜx$1b6 P>]<_`fǴ.!楲޹ ~k mw0@|0uy%.M -2()do['d7&2ښ_ 6n|&A}(k]ѳhlD$TG5d}тL @S9u2^Q{[oZۀA9Ew-/Bz/t qb(55:7&O+ܚMK;C5t?;O+~*xv6Ԍ΁:9/>Ѓ[y *< \^T~K@q䃝.ivޝN4C+R6yV.xXJr~$y+j]TFsNN%2݀kIo8'~56-g#k 8kGyY.fQƉVYgL`MB=>LHhtZku` xh x'/z6{2*`uL+̛W[HtS0RgTfQSHi5>/1z]1vazZ_AQ7zuK5e1u4*b#:=mu)tu 1X+d +RvD&uXfrFǴԊɫ9j..aHK& fTKBK]'礍Gm^HZl1m**LiCTg"\+B-˫Œ>U0jK(^^^Nt錋ڦd4[Ě4hV_mOƲ7 gQP(wJ-V|wrLVzH-)BcaE A>{7"sus4MHՖw+:NZF݁l3=NU#_c/pj18#A>qx +CD&u   w7Dxؕww{ݽ-;O?j>ŶB-߃. G)@7PPBԴ'Ƣ`Jpؠݟ jIދ<\+]bz~8Q3 +&#KV[6@#Mk2@Y F.<7Kg w1 +Kإz}&ٸ\sٞ1'=eB }U@~{vI[V/m<]7%/"'lw$ҽm ď5*c+چ]x ken&_JwЪ<0J4P\>MP?gc&wzUpN,Qzt]k=`Ƭ8K_&v'?0.>XJ@k`Uw}y":sY-J@Rl\?ϙ$N׬Ie+W7iAsUwVK2f_|\գU*Q[[wI}8+ppyj!+ +<݃V=K5PXsPjEuwɧH>\_},*IHN/TʼlAWx< Q(N-z%=ن0S3[;\N)'Ѳ ao:((~4nki~pvd+՞枮 +z`9;_z`Qs8XyAfʦNSB@]h]%YR *jˆn7XpgA[Of?rRpIK%c\|~0471ݯ8h{eyZ~8#h!15cI1#4,|U>Q>IQlDw>-f^=sܴ*I^E o7tQ W5^' aQ#Gn#N+ +ťi!-A ;nȓ:g 7Ĕ(k雭*Urx!^;s6ӻ\δƮ˕Fz=A!FM퀦6ᓢL|Cd?%FH%X"Sle/Y=te: IM! ڪs=(* \@dc<=i +RBRW:}0ʽ3[ߖ!,d[sOJf{\݄+qYXd+l"~:t> ?WP˂R%s?=efAv(EQ'=eY+M$-tXv,ٗ:Xͬtk3q^v "50:կ~9<'q*|c)tlg?~R3!ʱ.qߎɭa}HY=xNKUNN)ls&t)<÷X_݈㘼b3_\x$k`aI`°D<@EС#%gK !Ig[HH-WXVu)dil"jlLyJ:iZę1uwN +a' \^Qgs}71q#|UɻduN쉪Uo[7bKC/-5lDW8PQ^R_ӵ)~72on߽ Jc/_+bٳ3?)E=L]bn`^:׉rz +QKjT y\wr$,GZiV~=i27**PS=<]qAX\v9^\;A1*-i4%+.ziܛr!{q,`X8=PI䢘~#$qݶ르h rOKnV쌫yWdsV#ݹR?:%r[(T!W^sP.yEzմ!.a}'1KX}K!䱛znui#b:vdV/RSF, P{`fLvC )2_Dɮ& 'Jǘ[#ڈ![L+3n(ɢa(߬RSjc9F3<{խK˳R-;}k ΒCHs}?R;i}c>.NLޛ\ +r7s.VIߊ5ylUjQ}nUA)EUvaZѹV4uV\'S,zBAy"@~GI GpeA~ yO8>\ +z dFdW6Lb d@Nxfսnn4dcVKwMAj~M/pFOOQC/ph_C^@!^yځ&5( +L}/-s</AX݅wd d2,㺡WwnASyMw+AvRbM7Id-;ߘ.N>ܞSC +/hM cP0g;PBXl ~+5x8 O]{Te{.hu̽oLXx{TИt1ErR[U翋)@U BN b a.SNj~'DYǓGuRkHyZnsϷYt9=vI덙9WxÜ/ȧ쭸 rw ++D u:r&G 73t--å֫=j\woqжfQN⊫o7;ipOwwfQ6&r.Ϳ A@&2d AIN7-6Exas/{J&gn_n %-=Et6s8Z!ǧӚݟaf rb zDL@҂Q#(aڿ=N+:=gMwiRrwu8&W"P6W.g_6<"ځgZ[e$A}:6Ώ)?9ǿ7z$@҃([DGPjп*[eY0r.}A$_1q'˦Q t#ws!!3] /gLe;6ׄ|PᨚٰQm?#m\7MH-}1|=j 5zhmT EZj %TpL +&xS|.w+|@p, j?QG(3{llẙN:AOck?cަr2V-n$+d;$_(7|lq$[_栳L/H M:=2y(5ʖ;渕pbz]1_Ym³1WN(U8ܼkjq/L-XV7rѸG rY3/&Q4)Y:"ΣWR~9||hiZ=E*2u5qWZj[E\՝2+7Mz}+ۛ56{W;5&QH%Q D($$`Љ;N^~6u> endobj 40 0 obj <> endobj 72 0 obj <> endobj 104 0 obj <> endobj 136 0 obj <> endobj 145 0 obj [/View/Design] endobj 146 0 obj <>>> endobj 113 0 obj [/View/Design] endobj 114 0 obj <>>> endobj 81 0 obj [/View/Design] endobj 82 0 obj <>>> endobj 49 0 obj [/View/Design] endobj 50 0 obj <>>> endobj 17 0 obj [/View/Design] endobj 18 0 obj <>>> endobj 169 0 obj [168 0 R] endobj 197 0 obj <> endobj xref +0 198 +0000000004 65535 f +0000000016 00000 n +0000000222 00000 n +0000051845 00000 n +0000000005 00000 f +0000000006 00000 f +0000000008 00000 f +0001121155 00000 n +0000000010 00000 f +0000051896 00000 n +0000000011 00000 f +0000000012 00000 f +0000000013 00000 f +0000000014 00000 f +0000000015 00000 f +0000000016 00000 f +0000000019 00000 f +0001121983 00000 n +0001122014 00000 n +0000000020 00000 f +0000000021 00000 f +0000000022 00000 f +0000000023 00000 f +0000000024 00000 f +0000000025 00000 f +0000000026 00000 f +0000000027 00000 f +0000000028 00000 f +0000000029 00000 f +0000000030 00000 f +0000000031 00000 f +0000000032 00000 f +0000000033 00000 f +0000000034 00000 f +0000000035 00000 f +0000000036 00000 f +0000000037 00000 f +0000000038 00000 f +0000000039 00000 f +0000000041 00000 f +0001121225 00000 n +0000000042 00000 f +0000000043 00000 f +0000000044 00000 f +0000000045 00000 f +0000000046 00000 f +0000000047 00000 f +0000000048 00000 f +0000000051 00000 f +0001121867 00000 n +0001121898 00000 n +0000000052 00000 f +0000000053 00000 f +0000000054 00000 f +0000000055 00000 f +0000000056 00000 f +0000000057 00000 f +0000000058 00000 f +0000000059 00000 f +0000000060 00000 f +0000000061 00000 f +0000000062 00000 f +0000000063 00000 f +0000000064 00000 f +0000000065 00000 f +0000000066 00000 f +0000000067 00000 f +0000000068 00000 f +0000000069 00000 f +0000000070 00000 f +0000000071 00000 f +0000000073 00000 f +0001121296 00000 n +0000000074 00000 f +0000000075 00000 f +0000000076 00000 f +0000000077 00000 f +0000000078 00000 f +0000000079 00000 f +0000000080 00000 f +0000000083 00000 f +0001121751 00000 n +0001121782 00000 n +0000000084 00000 f +0000000085 00000 f +0000000086 00000 f +0000000087 00000 f +0000000088 00000 f +0000000089 00000 f +0000000090 00000 f +0000000091 00000 f +0000000092 00000 f +0000000093 00000 f +0000000094 00000 f +0000000095 00000 f +0000000096 00000 f +0000000097 00000 f +0000000098 00000 f +0000000099 00000 f +0000000100 00000 f +0000000101 00000 f +0000000102 00000 f +0000000103 00000 f +0000000105 00000 f +0001121367 00000 n +0000000106 00000 f +0000000107 00000 f +0000000108 00000 f +0000000109 00000 f +0000000110 00000 f +0000000111 00000 f +0000000112 00000 f +0000000115 00000 f +0001121633 00000 n +0001121665 00000 n +0000000116 00000 f +0000000117 00000 f +0000000118 00000 f +0000000119 00000 f +0000000120 00000 f +0000000121 00000 f +0000000122 00000 f +0000000123 00000 f +0000000124 00000 f +0000000125 00000 f +0000000126 00000 f +0000000127 00000 f +0000000128 00000 f +0000000129 00000 f +0000000130 00000 f +0000000131 00000 f +0000000132 00000 f +0000000133 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0001121441 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0001121515 00000 n +0001121547 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000054102 00000 n +0000054493 00000 n +0000053910 00000 n +0001122099 00000 n +0000052323 00000 n +0000459772 00000 n +0000069900 00000 n +0000069786 00000 n +0000053088 00000 n +0000053345 00000 n +0000053395 00000 n +0000053984 00000 n +0000054016 00000 n +0000061605 00000 n +0000054726 00000 n +0000054991 00000 n +0000061861 00000 n +0000069937 00000 n +0000459848 00000 n +0000460236 00000 n +0000461292 00000 n +0000469437 00000 n +0000535027 00000 n +0000596435 00000 n +0000662025 00000 n +0000727615 00000 n +0000793205 00000 n +0000858795 00000 n +0000924385 00000 n +0000989975 00000 n +0001055565 00000 n +0001122126 00000 n +trailer +<]>> +startxref +1122310 +%%EOF diff --git a/src/ESP8266HTTPClient-h4xx0red.cpp b/src/ESP8266HTTPClient-h4xx0red.cpp deleted file mode 100644 index 222513f..0000000 --- a/src/ESP8266HTTPClient-h4xx0red.cpp +++ /dev/null @@ -1,1146 +0,0 @@ -/** - * The standard ESP8266HTTPClient requires a fingerprint for certificate - * validation as discussed in this issue, starting October 12: - * https://github.com/esp8266/Arduino/issues/1941 - * - * This is a modified version which removes validation entirely. It's not - * secure, but for our purpose it will do just fine and prevents - * complicated configuration because we're talking to a Google service - * for which we don't control the certificates. - * - * If there is a proper way to do validation without hardcoding the - * fingerprint (root certificate validation?), remove this. - * - * I've surrounded the customizations with ""//>> h4xx0red" comments. - */ - - -/** - * ESP8266HTTPClient.cpp - * - * Created on: 02.11.2015 - * - * Copyright (c) 2015 Markus Sattler. All rights reserved. - * This file is part of the ESP8266HTTPClient for Arduino. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - */ - -#include -#include -#include -#include -#include - -#include "./ESP8266HTTPClient-h4xx0red.h" - -class TransportTraits -{ -public: - virtual ~TransportTraits() - { - } - - virtual std::unique_ptr create() - { - return std::unique_ptr(new WiFiClient()); - } - - virtual bool verify(WiFiClient& client, const char* host) - { - return true; - } -}; - -class TLSTraits : public TransportTraits -{ -public: - TLSTraits(const String& fingerprint) : - _fingerprint(fingerprint) - { - } - - std::unique_ptr create() override - { - return std::unique_ptr(new WiFiClientSecure()); - } - - bool verify(WiFiClient& client, const char* host) override - { - return true; - } - -protected: - String _fingerprint; -}; - -/** - * constructor - */ -HTTPClient::HTTPClient() -{ -} - -/** - * destructor - */ -HTTPClient::~HTTPClient() -{ - if(_tcp) { - _tcp->stop(); - } - if(_currentHeaders) { - delete[] _currentHeaders; - } -} - -void HTTPClient::clear() -{ - _returnCode = 0; - _size = -1; - _headers = ""; -} - - -//>> h4xx0red: renamed to beginSecure, removed fingerprint parameter -bool HTTPClient::beginSecure(String url) -{ - _transportTraits.reset(nullptr); - _port = 443; - if (!beginInternal(url, "https")) { - return false; - } - _transportTraits = TransportTraitsPtr(new TLSTraits("")); - return true; -} -//<< h4xx0red - -/** - * parsing the url for all needed parameters - * @param url String - */ -bool HTTPClient::begin(String url) -{ - _transportTraits.reset(nullptr); - _port = 80; - if (!beginInternal(url, "http")) { - return false; - } - _transportTraits = TransportTraitsPtr(new TransportTraits()); - return true; -} - -bool HTTPClient::beginInternal(String url, const char* expectedProtocol) -{ - DEBUG_HTTPCLIENT("[HTTP-Client][begin] url: %s\n", url.c_str()); - clear(); - - // check for : (http: or https: - int index = url.indexOf(':'); - if(index < 0) { - DEBUG_HTTPCLIENT("[HTTP-Client][begin] failed to parse protocol\n"); - return false; - } - - _protocol = url.substring(0, index); - url.remove(0, (index + 3)); // remove http:// or https:// - - index = url.indexOf('/'); - String host = url.substring(0, index); - url.remove(0, index); // remove host part - - // get Authorization - index = host.indexOf('@'); - if(index >= 0) { - // auth info - String auth = host.substring(0, index); - host.remove(0, index + 1); // remove auth part including @ - _base64Authorization = base64::encode(auth); - } - - // get port - index = host.indexOf(':'); - if(index >= 0) { - _host = host.substring(0, index); // hostname - host.remove(0, (index + 1)); // remove hostname + : - _port = host.toInt(); // get port - } else { - _host = host; - } - _uri = url; - if (_protocol != expectedProtocol) { - DEBUG_HTTPCLIENT("[HTTP-Client][begin] unexpected protocol: %s, expected %s\n", _protocol.c_str(), expectedProtocol); - return false; - } - DEBUG_HTTPCLIENT("[HTTP-Client][begin] host: %s port: %d url: %s\n", _host.c_str(), _port, _uri.c_str()); - return true; -} - -bool HTTPClient::begin(String host, uint16_t port, String uri) -{ - clear(); - _host = host; - _port = port; - _uri = uri; - _transportTraits = TransportTraitsPtr(new TransportTraits()); - DEBUG_HTTPCLIENT("[HTTP-Client][begin] host: %s port: %d uri: %s\n", host.c_str(), port, uri.c_str()); - return true; -} - -bool HTTPClient::begin(String host, uint16_t port, String uri, bool https, String httpsFingerprint) -{ - if (https) { - return begin(host, port, uri, httpsFingerprint); - } else { - return begin(host, port, uri); - } -} - -bool HTTPClient::begin(String host, uint16_t port, String uri, String httpsFingerprint) -{ - clear(); - _host = host; - _port = port; - _uri = uri; - - if (httpsFingerprint.length() == 0) { - return false; - } - _transportTraits = TransportTraitsPtr(new TLSTraits(httpsFingerprint)); - DEBUG_HTTPCLIENT("[HTTP-Client][begin] host: %s port: %d url: %s httpsFingerprint: %s\n", host.c_str(), port, uri.c_str(), httpsFingerprint.c_str()); - return true; -} - -/** - * end - * called after the payload is handled - */ -void HTTPClient::end(void) -{ - if(connected()) { - if(_tcp->available() > 0) { - DEBUG_HTTPCLIENT("[HTTP-Client][end] still data in buffer (%d), clean up.\n", _tcp->available()); - while(_tcp->available() > 0) { - _tcp->read(); - } - } - if(_reuse && _canReuse) { - DEBUG_HTTPCLIENT("[HTTP-Client][end] tcp keep open for reuse\n"); - } else { - DEBUG_HTTPCLIENT("[HTTP-Client][end] tcp stop\n"); - _tcp->stop(); - } - } else { - DEBUG_HTTPCLIENT("[HTTP-Client][end] tcp is closed\n"); - } -} - -/** - * connected - * @return connected status - */ -bool HTTPClient::connected() -{ - if(_tcp) { - return (_tcp->connected() || (_tcp->available() > 0)); - } - return false; -} - -/** - * try to reuse the connection to the server - * keep-alive - * @param reuse bool - */ -void HTTPClient::setReuse(bool reuse) -{ - _reuse = reuse; -} - -/** - * set User Agent - * @param userAgent const char * - */ -void HTTPClient::setUserAgent(const String& userAgent) -{ - _userAgent = userAgent; -} - -/** - * set the Authorizatio for the http request - * @param user const char * - * @param password const char * - */ -void HTTPClient::setAuthorization(const char * user, const char * password) -{ - if(user && password) { - String auth = user; - auth += ":"; - auth += password; - _base64Authorization = base64::encode(auth); - } -} - -/** - * set the Authorizatio for the http request - * @param auth const char * base64 - */ -void HTTPClient::setAuthorization(const char * auth) -{ - if(auth) { - _base64Authorization = auth; - } -} - -/** - * set the timeout for the TCP connection - * @param timeout unsigned int - */ -void HTTPClient::setTimeout(uint16_t timeout) -{ - _tcpTimeout = timeout; - if(connected()) { - _tcp->setTimeout(timeout); - } -} - -/** - * use HTTP1.0 - * @param timeout - */ -void HTTPClient::useHTTP10(bool useHTTP10) -{ - _useHTTP10 = useHTTP10; -} - -/** - * send a GET request - * @return http code - */ -int HTTPClient::GET() -{ - return sendRequest("GET"); -} - -/** - * sends a post request to the server - * @param payload uint8_t * - * @param size size_t - * @return http code - */ -int HTTPClient::POST(uint8_t * payload, size_t size) -{ - return sendRequest("POST", payload, size); -} - -int HTTPClient::POST(String payload) -{ - return POST((uint8_t *) payload.c_str(), payload.length()); -} - -/** - * sends a put request to the server - * @param payload uint8_t * - * @param size size_t - * @return http code - */ -int HTTPClient::PUT(uint8_t * payload, size_t size) { - return sendRequest("PUT", payload, size); -} - -int HTTPClient::PUT(String payload) { - return PUT((uint8_t *) payload.c_str(), payload.length()); -} - -/** - * sends a patch request to the server - * @param payload uint8_t * - * @param size size_t - * @return http code - */ -int HTTPClient::PATCH(uint8_t * payload, size_t size) { - return sendRequest("PATCH", payload, size); -} - -int HTTPClient::PATCH(String payload) { - return PATCH((uint8_t *) payload.c_str(), payload.length()); -} - -/** - * sendRequest - * @param type const char * "GET", "POST", .... - * @param payload String data for the message body - * @return - */ -int HTTPClient::sendRequest(const char * type, String payload) -{ - return sendRequest(type, (uint8_t *) payload.c_str(), payload.length()); -} - -/** - * sendRequest - * @param type const char * "GET", "POST", .... - * @param payload uint8_t * data for the message body if null not send - * @param size size_t size for the message body if 0 not send - * @return -1 if no info or > 0 when Content-Length is set by server - */ -int HTTPClient::sendRequest(const char * type, uint8_t * payload, size_t size) -{ - // connect to server - if(!connect()) { - return returnError(HTTPC_ERROR_CONNECTION_REFUSED); - } - - if(payload && size > 0) { - addHeader(F("Content-Length"), String(size)); - } - - // send Header - if(!sendHeader(type)) { - return returnError(HTTPC_ERROR_SEND_HEADER_FAILED); - } - - // send Payload if needed - if(payload && size > 0) { - if(_tcp->write(&payload[0], size) != size) { - return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED); - } - } - - // handle Server Response (Header) - return returnError(handleHeaderResponse()); -} - -/** - * sendRequest - * @param type const char * "GET", "POST", .... - * @param stream Stream * data stream for the message body - * @param size size_t size for the message body if 0 not Content-Length is send - * @return -1 if no info or > 0 when Content-Length is set by server - */ -int HTTPClient::sendRequest(const char * type, Stream * stream, size_t size) -{ - - if(!stream) { - return returnError(HTTPC_ERROR_NO_STREAM); - } - - // connect to server - if(!connect()) { - return returnError(HTTPC_ERROR_CONNECTION_REFUSED); - } - - if(size > 0) { - addHeader("Content-Length", String(size)); - } - - // send Header - if(!sendHeader(type)) { - return returnError(HTTPC_ERROR_SEND_HEADER_FAILED); - } - - int buff_size = HTTP_TCP_BUFFER_SIZE; - - int len = size; - int bytesWritten = 0; - - if(len == 0) { - len = -1; - } - - // if possible create smaller buffer then HTTP_TCP_BUFFER_SIZE - if((len > 0) && (len < HTTP_TCP_BUFFER_SIZE)) { - buff_size = len; - } - - // create buffer for read - uint8_t * buff = (uint8_t *) malloc(buff_size); - - if(buff) { - // read all data from stream and send it to server - while(connected() && (stream->available() > -1) && (len > 0 || len == -1)) { - - // get available data size - int sizeAvailable = stream->available(); - - if(sizeAvailable) { - - int readBytes = sizeAvailable; - - // read only the asked bytes - if(len > 0 && readBytes > len) { - readBytes = len; - } - - // not read more the buffer can handle - if(readBytes > buff_size) { - readBytes = buff_size; - } - - // read data - int bytesRead = stream->readBytes(buff, readBytes); - - // write it to Stream - int bytesWrite = _tcp->write((const uint8_t *) buff, bytesRead); - bytesWritten += bytesWrite; - - // are all Bytes a writen to stream ? - if(bytesWrite != bytesRead) { - DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] short write, asked for %d but got %d retry...\n", bytesRead, bytesWrite); - - // check for write error - if(_tcp->getWriteError()) { - DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] stream write error %d\n", _tcp->getWriteError()); - - //reset write error for retry - _tcp->clearWriteError(); - } - - // some time for the stream - delay(1); - - int leftBytes = (readBytes - bytesWrite); - - // retry to send the missed bytes - bytesWrite = _tcp->write((const uint8_t *) (buff + bytesWrite), leftBytes); - bytesWritten += bytesWrite; - - if(bytesWrite != leftBytes) { - // failed again - DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] short write, asked for %d but got %d failed.\n", leftBytes, bytesWrite); - free(buff); - return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED); - } - } - - // check for write error - if(_tcp->getWriteError()) { - DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] stream write error %d\n", _tcp->getWriteError()); - free(buff); - return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED); - } - - // count bytes to read left - if(len > 0) { - len -= readBytes; - } - - delay(0); - } else { - delay(1); - } - } - - free(buff); - - if(size && (int) size != bytesWritten) { - DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] Stream payload bytesWritten %d and size %d mismatch!.\n", bytesWritten, size); - DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] ERROR SEND PAYLOAD FAILED!"); - return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED); - } else { - DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] Stream payload written: %d\n", bytesWritten); - } - - } else { - DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] too less ram! need %d\n", HTTP_TCP_BUFFER_SIZE); - return returnError(HTTPC_ERROR_TOO_LESS_RAM); - } - - // handle Server Response (Header) - return returnError(handleHeaderResponse()); -} - -/** - * size of message body / payload - * @return -1 if no info or > 0 when Content-Length is set by server - */ -int HTTPClient::getSize(void) -{ - return _size; -} - -/** - * returns the stream of the tcp connection - * @return WiFiClient - */ -WiFiClient& HTTPClient::getStream(void) -{ - if(connected()) { - return *_tcp; - } - - DEBUG_HTTPCLIENT("[HTTP-Client] getStream: not connected\n"); - static WiFiClient empty; - return empty; -} - -/** - * returns the stream of the tcp connection - * @return WiFiClient * - */ -WiFiClient* HTTPClient::getStreamPtr(void) -{ - if(connected()) { - return _tcp.get(); - } - - DEBUG_HTTPCLIENT("[HTTP-Client] getStreamPtr: not connected\n"); - return nullptr; -} - -/** - * write all message body / payload to Stream - * @param stream Stream * - * @return bytes written ( negative values are error codes ) - */ -int HTTPClient::writeToStream(Stream * stream) -{ - - if(!stream) { - return returnError(HTTPC_ERROR_NO_STREAM); - } - - if(!connected()) { - return returnError(HTTPC_ERROR_NOT_CONNECTED); - } - - // get length of document (is -1 when Server sends no Content-Length header) - int len = _size; - int ret = 0; - - if(_transferEncoding == HTTPC_TE_IDENTITY) { - ret = writeToStreamDataBlock(stream, len); - - // have we an error? - if(ret < 0) { - return returnError(ret); - } - } else if(_transferEncoding == HTTPC_TE_CHUNKED) { - int size = 0; - while(1) { - if(!connected()) { - return returnError(HTTPC_ERROR_CONNECTION_LOST); - } - String chunkHeader = _tcp->readStringUntil('\n'); - - if(chunkHeader.length() <= 0) { - return returnError(HTTPC_ERROR_READ_TIMEOUT); - } - - chunkHeader.trim(); // remove \r - - // read size of chunk - len = (uint32_t) strtol((const char *) chunkHeader.c_str(), NULL, 16); - size += len; - DEBUG_HTTPCLIENT("[HTTP-Client] read chunk len: %d\n", len); - - // data left? - if(len > 0) { - int r = writeToStreamDataBlock(stream, len); - if(r < 0) { - // error in writeToStreamDataBlock - return returnError(r); - } - ret += r; - } else { - - // if no length Header use global chunk size - if(_size <= 0) { - _size = size; - } - - // check if we have write all data out - if(ret != _size) { - return returnError(HTTPC_ERROR_STREAM_WRITE); - } - break; - } - - // read trailing \r\n at the end of the chunk - char buf[2]; - auto trailing_seq_len = _tcp->readBytes((uint8_t*)buf, 2); - if (trailing_seq_len != 2 || buf[0] != '\r' || buf[1] != '\n') { - return returnError(HTTPC_ERROR_READ_TIMEOUT); - } - - delay(0); - } - } else { - return returnError(HTTPC_ERROR_ENCODING); - } - - end(); - return ret; -} - -/** - * return all payload as String (may need lot of ram or trigger out of memory!) - * @return String - */ -String HTTPClient::getString(void) -{ - StreamString sstring; - - if(_size) { - // try to reserve needed memmory - if(!sstring.reserve((_size + 1))) { - DEBUG_HTTPCLIENT("[HTTP-Client][getString] not enough memory to reserve a string! need: %d\n", (_size + 1)); - return ""; - } - } - - writeToStream(&sstring); - return sstring; -} - -/** - * converts error code to String - * @param error int - * @return String - */ -String HTTPClient::errorToString(int error) -{ - switch(error) { - case HTTPC_ERROR_CONNECTION_REFUSED: - return F("connection refused"); - case HTTPC_ERROR_SEND_HEADER_FAILED: - return F("send header failed"); - case HTTPC_ERROR_SEND_PAYLOAD_FAILED: - return F("send payload failed"); - case HTTPC_ERROR_NOT_CONNECTED: - return F("not connected"); - case HTTPC_ERROR_CONNECTION_LOST: - return F("connection lost"); - case HTTPC_ERROR_NO_STREAM: - return F("no stream"); - case HTTPC_ERROR_NO_HTTP_SERVER: - return F("no HTTP server"); - case HTTPC_ERROR_TOO_LESS_RAM: - return F("too less ram"); - case HTTPC_ERROR_ENCODING: - return F("Transfer-Encoding not supported"); - case HTTPC_ERROR_STREAM_WRITE: - return F("Stream write error"); - case HTTPC_ERROR_READ_TIMEOUT: - return F("read Timeout"); - default: - return String(); - } -} - -/** - * adds Header to the request - * @param name - * @param value - * @param first - */ -void HTTPClient::addHeader(const String& name, const String& value, bool first, bool replace) -{ - // not allow set of Header handled by code - if(!name.equalsIgnoreCase(F("Connection")) && - !name.equalsIgnoreCase(F("User-Agent")) && - !name.equalsIgnoreCase(F("Host")) && - !(name.equalsIgnoreCase(F("Authorization")) && _base64Authorization.length())){ - - String headerLine = name; - headerLine += ": "; - - if (replace) { - int headerStart = _headers.indexOf(headerLine); - if (headerStart != -1) { - int headerEnd = _headers.indexOf('\n', headerStart); - _headers = _headers.substring(0, headerStart) + _headers.substring(headerEnd + 1); - } - } - - headerLine += value; - headerLine += "\r\n"; - if(first) { - _headers = headerLine + _headers; - } else { - _headers += headerLine; - } - } - -} - -void HTTPClient::collectHeaders(const char* headerKeys[], const size_t headerKeysCount) -{ - _headerKeysCount = headerKeysCount; - if(_currentHeaders) { - delete[] _currentHeaders; - } - _currentHeaders = new RequestArgument[_headerKeysCount]; - for(size_t i = 0; i < _headerKeysCount; i++) { - _currentHeaders[i].key = headerKeys[i]; - } -} - -String HTTPClient::header(const char* name) -{ - for(size_t i = 0; i < _headerKeysCount; ++i) { - if(_currentHeaders[i].key == name) { - return _currentHeaders[i].value; - } - } - return String(); -} - -String HTTPClient::header(size_t i) -{ - if(i < _headerKeysCount) { - return _currentHeaders[i].value; - } - return String(); -} - -String HTTPClient::headerName(size_t i) -{ - if(i < _headerKeysCount) { - return _currentHeaders[i].key; - } - return String(); -} - -int HTTPClient::headers() -{ - return _headerKeysCount; -} - -bool HTTPClient::hasHeader(const char* name) -{ - for(size_t i = 0; i < _headerKeysCount; ++i) { - if((_currentHeaders[i].key == name) && (_currentHeaders[i].value.length() > 0)) { - return true; - } - } - return false; -} - -/** - * init TCP connection and handle ssl verify if needed - * @return true if connection is ok - */ -bool HTTPClient::connect(void) -{ - - if(connected()) { - DEBUG_HTTPCLIENT("[HTTP-Client] connect. already connected, try reuse!\n"); - while(_tcp->available() > 0) { - _tcp->read(); - } - return true; - } - - if (!_transportTraits) { - DEBUG_HTTPCLIENT("[HTTP-Client] connect: HTTPClient::begin was not called or returned error\n"); - return false; - } - - _tcp = _transportTraits->create(); - - if(!_tcp->connect(_host.c_str(), _port)) { - DEBUG_HTTPCLIENT("[HTTP-Client] failed connect to %s:%u\n", _host.c_str(), _port); - return false; - } - - DEBUG_HTTPCLIENT("[HTTP-Client] connected to %s:%u\n", _host.c_str(), _port); - - if (!_transportTraits->verify(*_tcp, _host.c_str())) { - DEBUG_HTTPCLIENT("[HTTP-Client] transport level verify failed\n"); - _tcp->stop(); - return false; - } - - // set Timeout for readBytesUntil and readStringUntil - _tcp->setTimeout(_tcpTimeout); - -#ifdef ESP8266 - _tcp->setNoDelay(true); -#endif - return connected(); -} - -/** - * sends HTTP request header - * @param type (GET, POST, ...) - * @return status - */ -bool HTTPClient::sendHeader(const char * type) -{ - if(!connected()) { - return false; - } - - String header = String(type) + " " + _uri + F(" HTTP/1."); - - if(_useHTTP10) { - header += "0"; - } else { - header += "1"; - } - - header += String(F("\r\nHost: ")) + _host; - if (_port != 80 && _port != 443) - { - header += ':'; - header += String(_port); - } - header += String(F("\r\nUser-Agent: ")) + _userAgent + - F("\r\nConnection: "); - - if(_reuse) { - header += F("keep-alive"); - } else { - header += F("close"); - } - header += "\r\n"; - - if(!_useHTTP10) { - header += F("Accept-Encoding: identity;q=1,chunked;q=0.1,*;q=0\r\n"); - } - - if(_base64Authorization.length()) { - _base64Authorization.replace("\n", ""); - header += F("Authorization: Basic "); - header += _base64Authorization; - header += "\r\n"; - } - - header += _headers + "\r\n"; - - return (_tcp->write((const uint8_t *) header.c_str(), header.length()) == header.length()); -} - -/** - * reads the response from the server - * @return int http code - */ -int HTTPClient::handleHeaderResponse() -{ - - if(!connected()) { - return HTTPC_ERROR_NOT_CONNECTED; - } - - String transferEncoding; - _returnCode = -1; - _size = -1; - _transferEncoding = HTTPC_TE_IDENTITY; - unsigned long lastDataTime = millis(); - - while(connected()) { - size_t len = _tcp->available(); - if(len > 0) { - String headerLine = _tcp->readStringUntil('\n'); - headerLine.trim(); // remove \r - - lastDataTime = millis(); - - DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] RX: '%s'\n", headerLine.c_str()); - - if(headerLine.startsWith("HTTP/1.")) { - _returnCode = headerLine.substring(9, headerLine.indexOf(' ', 9)).toInt(); - } else if(headerLine.indexOf(':')) { - String headerName = headerLine.substring(0, headerLine.indexOf(':')); - String headerValue = headerLine.substring(headerLine.indexOf(':') + 1); - headerValue.trim(); - - if(headerName.equalsIgnoreCase("Content-Length")) { - _size = headerValue.toInt(); - } - - if(headerName.equalsIgnoreCase("Connection")) { - _canReuse = headerValue.equalsIgnoreCase("keep-alive"); - } - - if(headerName.equalsIgnoreCase("Transfer-Encoding")) { - transferEncoding = headerValue; - } - - for(size_t i = 0; i < _headerKeysCount; i++) { - if(_currentHeaders[i].key.equalsIgnoreCase(headerName)) { - _currentHeaders[i].value = headerValue; - break; - } - } - } - - if(headerLine == "") { - DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] code: %d\n", _returnCode); - - if(_size > 0) { - DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] size: %d\n", _size); - } - - if(transferEncoding.length() > 0) { - DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] Transfer-Encoding: %s\n", transferEncoding.c_str()); - if(transferEncoding.equalsIgnoreCase("chunked")) { - _transferEncoding = HTTPC_TE_CHUNKED; - } else { - return HTTPC_ERROR_ENCODING; - } - } else { - _transferEncoding = HTTPC_TE_IDENTITY; - } - - if(_returnCode) { - return _returnCode; - } else { - DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] Remote host is not an HTTP Server!"); - return HTTPC_ERROR_NO_HTTP_SERVER; - } - } - - } else { - if((millis() - lastDataTime) > _tcpTimeout) { - return HTTPC_ERROR_READ_TIMEOUT; - } - delay(0); - } - } - - return HTTPC_ERROR_CONNECTION_LOST; -} - -/** - * write one Data Block to Stream - * @param stream Stream * - * @param size int - * @return < 0 = error >= 0 = size written - */ -int HTTPClient::writeToStreamDataBlock(Stream * stream, int size) -{ - int buff_size = HTTP_TCP_BUFFER_SIZE; - int len = size; - int bytesWritten = 0; - - // if possible create smaller buffer then HTTP_TCP_BUFFER_SIZE - if((len > 0) && (len < HTTP_TCP_BUFFER_SIZE)) { - buff_size = len; - } - - // create buffer for read - uint8_t * buff = (uint8_t *) malloc(buff_size); - - if(buff) { - // read all data from server - while(connected() && (len > 0 || len == -1)) { - - // get available data size - size_t sizeAvailable = _tcp->available(); - - if(sizeAvailable) { - - int readBytes = sizeAvailable; - - // read only the asked bytes - if(len > 0 && readBytes > len) { - readBytes = len; - } - - // not read more the buffer can handle - if(readBytes > buff_size) { - readBytes = buff_size; - } - - // read data - int bytesRead = _tcp->readBytes(buff, readBytes); - - // write it to Stream - int bytesWrite = stream->write(buff, bytesRead); - bytesWritten += bytesWrite; - - // are all Bytes a writen to stream ? - if(bytesWrite != bytesRead) { - DEBUG_HTTPCLIENT("[HTTP-Client][writeToStream] short write asked for %d but got %d retry...\n", bytesRead, bytesWrite); - - // check for write error - if(stream->getWriteError()) { - DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] stream write error %d\n", stream->getWriteError()); - - //reset write error for retry - stream->clearWriteError(); - } - - // some time for the stream - delay(1); - - int leftBytes = (readBytes - bytesWrite); - - // retry to send the missed bytes - bytesWrite = stream->write((buff + bytesWrite), leftBytes); - bytesWritten += bytesWrite; - - if(bytesWrite != leftBytes) { - // failed again - DEBUG_HTTPCLIENT("[HTTP-Client][writeToStream] short write asked for %d but got %d failed.\n", leftBytes, bytesWrite); - free(buff); - return HTTPC_ERROR_STREAM_WRITE; - } - } - - // check for write error - if(stream->getWriteError()) { - DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] stream write error %d\n", stream->getWriteError()); - free(buff); - return HTTPC_ERROR_STREAM_WRITE; - } - - // count bytes to read left - if(len > 0) { - len -= readBytes; - } - - delay(0); - } else { - delay(1); - } - } - - free(buff); - - DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] connection closed or file end (written: %d).\n", bytesWritten); - - if((size > 0) && (size != bytesWritten)) { - DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] bytesWritten %d and size %d mismatch!.\n", bytesWritten, size); - return HTTPC_ERROR_STREAM_WRITE; - } - - } else { - DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] too less ram! need %d\n", HTTP_TCP_BUFFER_SIZE); - return HTTPC_ERROR_TOO_LESS_RAM; - } - - return bytesWritten; -} - -/** - * called to handle error return, may disconnect the connection if still exists - * @param error - * @return error - */ -int HTTPClient::returnError(int error) -{ - if(error < 0) { - DEBUG_HTTPCLIENT("[HTTP-Client][returnError] error(%d): %s\n", error, errorToString(error).c_str()); - if(connected()) { - DEBUG_HTTPCLIENT("[HTTP-Client][returnError] tcp stop\n"); - _tcp->stop(); - } - } - return error; -} diff --git a/src/ESP8266HTTPClient-h4xx0red.h b/src/ESP8266HTTPClient-h4xx0red.h deleted file mode 100644 index 3bf1b7e..0000000 --- a/src/ESP8266HTTPClient-h4xx0red.h +++ /dev/null @@ -1,249 +0,0 @@ -/** - * The standard ESP8266HTTPClient requires a fingerprint for certificate - * validation as discussed in this issue, starting October 12: - * https://github.com/esp8266/Arduino/issues/1941 - * - * This is a modified version which removes validation entirely. It's not - * secure, but for our purpose it will do just fine and prevents - * complicated configuration because we're talking to a Google service - * for which we don't control the certificates. - * - * If there is a proper way to do validation without hardcoding the - * fingerprint (root certificate validation?), remove this. - * - * I've surrounded the customizations with ""//>> h4xx0red" comments. - */ - - -/** - * ESP8266HTTPClient.h - * - * Created on: 02.11.2015 - * - * Copyright (c) 2015 Markus Sattler. All rights reserved. - * This file is part of the ESP8266HTTPClient for Arduino. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - */ - -#ifndef ESP8266HTTPClient_H_ -#define ESP8266HTTPClient_H_ - -#include -#include -#include - -#ifdef DEBUG_ESP_HTTP_CLIENT -#ifdef DEBUG_ESP_PORT -#define DEBUG_HTTPCLIENT(...) DEBUG_ESP_PORT.printf( __VA_ARGS__ ) -#endif -#endif - -#ifndef DEBUG_HTTPCLIENT -#define DEBUG_HTTPCLIENT(...) -#endif - -#define HTTPCLIENT_DEFAULT_TCP_TIMEOUT (5000) - -/// HTTP client errors -#define HTTPC_ERROR_CONNECTION_REFUSED (-1) -#define HTTPC_ERROR_SEND_HEADER_FAILED (-2) -#define HTTPC_ERROR_SEND_PAYLOAD_FAILED (-3) -#define HTTPC_ERROR_NOT_CONNECTED (-4) -#define HTTPC_ERROR_CONNECTION_LOST (-5) -#define HTTPC_ERROR_NO_STREAM (-6) -#define HTTPC_ERROR_NO_HTTP_SERVER (-7) -#define HTTPC_ERROR_TOO_LESS_RAM (-8) -#define HTTPC_ERROR_ENCODING (-9) -#define HTTPC_ERROR_STREAM_WRITE (-10) -#define HTTPC_ERROR_READ_TIMEOUT (-11) - -/// size for the stream handling -#define HTTP_TCP_BUFFER_SIZE (1460) - -/// HTTP codes see RFC7231 -typedef enum { - HTTP_CODE_CONTINUE = 100, - HTTP_CODE_SWITCHING_PROTOCOLS = 101, - HTTP_CODE_PROCESSING = 102, - HTTP_CODE_OK = 200, - HTTP_CODE_CREATED = 201, - HTTP_CODE_ACCEPTED = 202, - HTTP_CODE_NON_AUTHORITATIVE_INFORMATION = 203, - HTTP_CODE_NO_CONTENT = 204, - HTTP_CODE_RESET_CONTENT = 205, - HTTP_CODE_PARTIAL_CONTENT = 206, - HTTP_CODE_MULTI_STATUS = 207, - HTTP_CODE_ALREADY_REPORTED = 208, - HTTP_CODE_IM_USED = 226, - HTTP_CODE_MULTIPLE_CHOICES = 300, - HTTP_CODE_MOVED_PERMANENTLY = 301, - HTTP_CODE_FOUND = 302, - HTTP_CODE_SEE_OTHER = 303, - HTTP_CODE_NOT_MODIFIED = 304, - HTTP_CODE_USE_PROXY = 305, - HTTP_CODE_TEMPORARY_REDIRECT = 307, - HTTP_CODE_PERMANENT_REDIRECT = 308, - HTTP_CODE_BAD_REQUEST = 400, - HTTP_CODE_UNAUTHORIZED = 401, - HTTP_CODE_PAYMENT_REQUIRED = 402, - HTTP_CODE_FORBIDDEN = 403, - HTTP_CODE_NOT_FOUND = 404, - HTTP_CODE_METHOD_NOT_ALLOWED = 405, - HTTP_CODE_NOT_ACCEPTABLE = 406, - HTTP_CODE_PROXY_AUTHENTICATION_REQUIRED = 407, - HTTP_CODE_REQUEST_TIMEOUT = 408, - HTTP_CODE_CONFLICT = 409, - HTTP_CODE_GONE = 410, - HTTP_CODE_LENGTH_REQUIRED = 411, - HTTP_CODE_PRECONDITION_FAILED = 412, - HTTP_CODE_PAYLOAD_TOO_LARGE = 413, - HTTP_CODE_URI_TOO_LONG = 414, - HTTP_CODE_UNSUPPORTED_MEDIA_TYPE = 415, - HTTP_CODE_RANGE_NOT_SATISFIABLE = 416, - HTTP_CODE_EXPECTATION_FAILED = 417, - HTTP_CODE_MISDIRECTED_REQUEST = 421, - HTTP_CODE_UNPROCESSABLE_ENTITY = 422, - HTTP_CODE_LOCKED = 423, - HTTP_CODE_FAILED_DEPENDENCY = 424, - HTTP_CODE_UPGRADE_REQUIRED = 426, - HTTP_CODE_PRECONDITION_REQUIRED = 428, - HTTP_CODE_TOO_MANY_REQUESTS = 429, - HTTP_CODE_REQUEST_HEADER_FIELDS_TOO_LARGE = 431, - HTTP_CODE_INTERNAL_SERVER_ERROR = 500, - HTTP_CODE_NOT_IMPLEMENTED = 501, - HTTP_CODE_BAD_GATEWAY = 502, - HTTP_CODE_SERVICE_UNAVAILABLE = 503, - HTTP_CODE_GATEWAY_TIMEOUT = 504, - HTTP_CODE_HTTP_VERSION_NOT_SUPPORTED = 505, - HTTP_CODE_VARIANT_ALSO_NEGOTIATES = 506, - HTTP_CODE_INSUFFICIENT_STORAGE = 507, - HTTP_CODE_LOOP_DETECTED = 508, - HTTP_CODE_NOT_EXTENDED = 510, - HTTP_CODE_NETWORK_AUTHENTICATION_REQUIRED = 511 -} t_http_codes; - -typedef enum { - HTTPC_TE_IDENTITY, - HTTPC_TE_CHUNKED -} transferEncoding_t; - -class TransportTraits; -typedef std::unique_ptr TransportTraitsPtr; - -class HTTPClient -{ -public: - HTTPClient(); - ~HTTPClient(); - - bool begin(String url); - //>> h4xx0red: renamed to beginSecure, removed fingerprint parameter - bool beginSecure(String url); - //<< h4xx0red - bool begin(String host, uint16_t port, String uri = "/"); - bool begin(String host, uint16_t port, String uri, String httpsFingerprint); - // deprecated, use the overload above instead - bool begin(String host, uint16_t port, String uri, bool https, String httpsFingerprint) __attribute__ ((deprecated)); - - void end(void); - - bool connected(void); - - void setReuse(bool reuse); /// keep-alive - void setUserAgent(const String& userAgent); - void setAuthorization(const char * user, const char * password); - void setAuthorization(const char * auth); - void setTimeout(uint16_t timeout); - - void useHTTP10(bool usehttp10 = true); - - /// request handling - int GET(); - int POST(uint8_t * payload, size_t size); - int POST(String payload); - int PUT(uint8_t * payload, size_t size); - int PUT(String payload); - int PATCH(uint8_t * payload, size_t size); - int PATCH(String payload); - int sendRequest(const char * type, String payload); - int sendRequest(const char * type, uint8_t * payload = NULL, size_t size = 0); - int sendRequest(const char * type, Stream * stream, size_t size = 0); - - void addHeader(const String& name, const String& value, bool first = false, bool replace = true); - - /// Response handling - void collectHeaders(const char* headerKeys[], const size_t headerKeysCount); - String header(const char* name); // get request header value by name - String header(size_t i); // get request header value by number - String headerName(size_t i); // get request header name by number - int headers(); // get header count - bool hasHeader(const char* name); // check if header exists - - - int getSize(void); - - WiFiClient& getStream(void); - WiFiClient* getStreamPtr(void); - int writeToStream(Stream* stream); - String getString(void); - - static String errorToString(int error); - -protected: - struct RequestArgument { - String key; - String value; - }; - - bool beginInternal(String url, const char* expectedProtocol); - void clear(); - int returnError(int error); - bool connect(void); - bool sendHeader(const char * type); - int handleHeaderResponse(); - int writeToStreamDataBlock(Stream * stream, int len); - - - TransportTraitsPtr _transportTraits; - std::unique_ptr _tcp; - - /// request handling - String _host; - uint16_t _port = 0; - bool _reuse = false; - uint16_t _tcpTimeout = HTTPCLIENT_DEFAULT_TCP_TIMEOUT; - bool _useHTTP10 = false; - - String _uri; - String _protocol; - String _headers; - String _userAgent = "ESP8266HTTPClient"; - String _base64Authorization; - - /// Response handling - RequestArgument* _currentHeaders = nullptr; - size_t _headerKeysCount = 0; - - int _returnCode = 0; - int _size = -1; - bool _canReuse = false; - transferEncoding_t _transferEncoding = HTTPC_TE_IDENTITY; -}; - - - -#endif /* ESP8266HTTPClient_H_ */ diff --git a/src/config.h b/src/config.h index 45b689b..7e938fd 100644 --- a/src/config.h +++ b/src/config.h @@ -4,7 +4,7 @@ #include -//#define SerialDebug +#define SerialDebug #ifdef SerialDebug static const uint32_t SerialDebugBaudrate = 115200; @@ -27,7 +27,7 @@ static const char* DefaultNTPServer = "pool.ntp.org"; // to the STA will block the AP) static const uint32_t StationModeTimeout = 30000; -static const uint16_t APButtonHoldTime = 5000; +static const uint16_t APButtonHoldTime = 2000; // Only used if the timezone has not been succesfully retrieved yet, otherwise From 2e1b286346c22beec37ad232a64c7b5c1067795b Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Mon, 12 Feb 2018 21:03:22 +0100 Subject: [PATCH 38/43] Fixed #20: Time triggers settings overwrites connection settings --- src/settings/triggers/time.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/settings/triggers/time.h b/src/settings/triggers/time.h index 2747fdf..2db059d 100644 --- a/src/settings/triggers/time.h +++ b/src/settings/triggers/time.h @@ -55,8 +55,8 @@ class TimeTriggerSettings : public AbstractJsonSettings TimeTrigger* mTriggers = nullptr; protected: - virtual const char* getFilename() { return ConnectionSettingsFile; }; - virtual const char* getDebugPrefix() { return "ConnectionSettings"; }; + virtual const char* getFilename() { return TimeTriggerSettingsFile; }; + virtual const char* getDebugPrefix() { return "TimeTriggerSettings"; }; public: void toJson(Print &print); From a3aecf082a4c24fd5f5bac409db70e2b637b4357 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Mon, 12 Feb 2018 21:16:30 +0100 Subject: [PATCH 39/43] Fixed #17: Negative relative times are incorrect --- src/assets/js.h | 2121 +++++++++++++++++++++--------------------- src/assets/version.h | 6 +- web/app.js | 7 +- web/dist/bundle.js | 2 +- 4 files changed, 1069 insertions(+), 1067 deletions(-) diff --git a/src/assets/js.h b/src/assets/js.h index dc99d93..73d5cda 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -1283,1065 +1283,1066 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x02,0x1b,0x5c,0x4c,0xc6,0x01,0x9b,0x7a,0x4b,0xea,0xcc,0x0d,0xdc,0x07,0x30,0xab,0x47,0x82,0x17,0xb6, 0xba,0xdb,0xb8,0xbc,0xa4,0xe1,0xd2,0x16,0x42,0x7a,0xe6,0xad,0x05,0x40,0x3c,0x6f,0xb8,0x14,0x87,0xce, 0x40,0x59,0x81,0x4e,0xed,0x3f,0x66,0x3c,0x03,0x9a,0x1e,0xff,0xff,0xda,0x7b,0xf7,0xf5,0xb6,0x8d,0x64, - 0x5f,0xf4,0x55,0x28,0x8c,0xb7,0x0c,0x84,0x10,0x25,0xf9,0x92,0x49,0x40,0xc3,0x1c,0x47,0xce,0xc5,0x89, - 0x6f,0x2b,0x56,0x92,0x49,0x24,0x8e,0x16,0x44,0x82,0x12,0x22,0x0a,0xe0,0x00,0xa0,0x64,0x47,0xe4,0x03, - 0x9d,0x7f,0xcf,0x23,0xec,0x27,0x3b,0xf5,0xab,0xea,0x6e,0x34,0x2e,0x94,0xec,0x64,0xaf,0x75,0xf6,0xb7, - 0xbf,0x3d,0xf9,0xc6,0x22,0xfa,0x7e,0xa9,0xae,0xae,0xaa,0xae,0x4b,0xb3,0x67,0x86,0x51,0xa2,0x4e,0x2a, - 0x80,0x15,0xcf,0xc2,0x3f,0x43,0xae,0x86,0x63,0xcb,0xd5,0xbd,0x6e,0x0d,0x5e,0x5d,0x68,0x4d,0xd9,0x89, - 0x72,0x3b,0xe1,0x3a,0x44,0x45,0xaf,0x7d,0x44,0x76,0x59,0x24,0xf0,0x49,0xa6,0xfd,0x8c,0x69,0x05,0x59, - 0xe3,0x41,0x8c,0xfd,0x44,0x60,0x4b,0x2b,0xcf,0x61,0xce,0x98,0x68,0x2d,0x33,0x8f,0xef,0x62,0x3d,0xea, - 0xef,0xe2,0xce,0xfe,0xbf,0x43,0xff,0xd3,0x04,0xfd,0x5f,0x75,0x63,0x8e,0x4b,0x1a,0xc2,0x2c,0xa1,0x46, - 0xc7,0xfe,0x59,0xd5,0xf0,0xbf,0x4d,0xc3,0xff,0xa6,0xbd,0xf9,0x50,0x65,0x7c,0x6b,0x32,0xbe,0xa5,0x8c, - 0xd3,0x24,0xdc,0x3d,0x3a,0xbe,0xf6,0x06,0xfd,0xe3,0x9d,0x93,0x7b,0xc7,0xe3,0xf1,0xae,0x7f,0x82,0xb8, - 0x01,0x27,0xc4,0x63,0x5c,0xf3,0x8f,0x89,0xe3,0x1f,0x54,0xb5,0xe9,0xf2,0x52,0xb5,0x17,0xb4,0x89,0x87, - 0x55,0xc6,0xb9,0xc9,0x38,0xa7,0x8c,0x8b,0xa4,0xd3,0x9a,0x97,0x03,0xd6,0xed,0x06,0xee,0xa0,0xef,0xed, - 0x56,0xe1,0x18,0xc4,0xd8,0x72,0x77,0xe8,0x8e,0xb6,0x8e,0xfe,0xe5,0x8e,0x3f,0x3b,0xf6,0xbc,0xdd,0xb3, - 0x0e,0xa5,0x34,0xb1,0xd7,0x8c,0x2b,0x37,0xae,0x52,0x11,0xca,0x04,0xe6,0x45,0x14,0x8f,0x11,0x47,0x88, - 0xdd,0xaa,0x82,0xf9,0x8c,0xc3,0xbc,0x0a,0xfc,0xc3,0x40,0x54,0xc2,0x33,0x1d,0xcd,0xfa,0x5f,0x3b,0x3b, - 0xbb,0xfe,0x3b,0xfa,0x71,0x5c,0x7c,0xb6,0x95,0x5c,0xc2,0x7e,0x3a,0x4a,0xcb,0x7b,0xbb,0xfe,0xb3,0xa4, - 0x4b,0xeb,0xe1,0xbd,0x0a,0x5d,0x4f,0x80,0x12,0x4b,0xcc,0x41,0xc0,0xa8,0xe1,0xb7,0x4a,0xdb,0x5a,0xe3, - 0x9d,0x2a,0x9b,0x6e,0x2c,0x6b,0xbc,0xe7,0xbd,0x4b,0x38,0x52,0x91,0x63,0x06,0xe0,0xd4,0x82,0x0a,0xbc, - 0x49,0x5c,0xf1,0x4e,0x5f,0x7f,0x2c,0x4f,0x6b,0x3a,0x38,0x5d,0x2f,0xbc,0xaa,0x5f,0x70,0xd8,0xac,0x0d, - 0x25,0x41,0xa4,0xac,0x44,0x82,0xa7,0x7b,0x80,0x5d,0x09,0x95,0x48,0xe0,0xf9,0x2a,0xfb,0x03,0xf8,0xb9, - 0x80,0x0b,0xbd,0xe6,0xee,0xd1,0x00,0xbe,0xcf,0xc3,0xef,0xf3,0x3b,0xfc,0x37,0x4a,0xf3,0xc6,0x17,0xdf, - 0x16,0xdb,0x5f,0x23,0x80,0x04,0x3c,0x94,0xb2,0x84,0xfd,0x7b,0x1d,0x97,0xaf,0x17,0x5b,0x8f,0x65,0x1f, - 0xe3,0x9b,0x50,0x79,0xbc,0xb8,0x97,0x74,0xb8,0xd5,0xbc,0x97,0x1c,0xa5,0xe3,0x3e,0xab,0x05,0xe7,0xf5, - 0x5e,0x72,0xec,0xf8,0xd7,0x15,0x94,0x9e,0x19,0x28,0x3d,0x23,0x28,0x7d,0xdb,0x9c,0xa7,0xb2,0x08,0x8f, - 0x39,0x14,0x26,0x98,0xd5,0x80,0xd8,0xf5,0x1d,0xfe,0x74,0x7c,0xfe,0xa3,0x22,0x3f,0x57,0xe9,0x3b,0x65, - 0xa6,0xb2,0xac,0x18,0xd0,0x56,0xb6,0x48,0x5c,0x1d,0xbf,0x0a,0x23,0xcd,0x99,0xfc,0xa9,0x52,0xed,0x36, - 0x39,0x81,0xdb,0x6c,0xc6,0x95,0xb6,0xb2,0x55,0x9b,0x98,0xdb,0xf3,0x84,0x3d,0x8a,0x21,0x22,0xf4,0xef, - 0x89,0x8a,0x73,0xc9,0x9e,0x63,0x1d,0xff,0x05,0x7d,0x0b,0x81,0xc5,0x9f,0x2f,0x1b,0xd9,0xdf,0xd4,0xbe, - 0xe9,0x26,0x71,0xfc,0xd7,0xf5,0x1a,0xaf,0xec,0x4f,0x14,0x18,0x3e,0xc7,0x03,0x80,0xf1,0xd6,0xa0,0xdc, - 0x98,0x81,0x47,0xb5,0x9a,0xb1,0xc8,0x03,0x53,0xe0,0x9a,0x81,0xac,0x51,0xcc,0xc5,0x88,0xac,0x48,0x9d, - 0xd6,0xb8,0xae,0x1b,0xa9,0x5f,0xa7,0x78,0xa1,0x6c,0x77,0x6c,0x8f,0x6e,0x73,0xbf,0xf5,0x52,0xee,0x6b, - 0xd3,0xed,0xb3,0xfa,0x5c,0xaf,0xeb,0x89,0xdc,0xa9,0xc8,0x68,0x7e,0xc4,0x2a,0x8f,0x54,0xb3,0x60,0x53, - 0xe9,0x74,0x9b,0x72,0xdf,0x80,0xb8,0xbd,0x35,0x73,0x00,0x79,0x91,0x2b,0x25,0x60,0x38,0xa2,0x9d,0x22, - 0x74,0x5e,0xa8,0x78,0x37,0xff,0x0a,0x68,0xe9,0xd4,0x35,0xd1,0x3b,0x56,0xc4,0xa3,0x78,0xae,0xbf,0xba, - 0xe7,0xed,0xfa,0x3f,0x5b,0xe8,0xa9,0x15,0xe0,0x41,0xa8,0xbc,0xf7,0xd6,0x5d,0x0f,0xda,0xae,0x64,0x89, - 0xd8,0xfb,0x1a,0x75,0x01,0x15,0x57,0x2b,0x82,0x06,0xc7,0x82,0x4b,0xc4,0xc4,0x4e,0x42,0xda,0xd4,0x3c, - 0x52,0x45,0xbe,0x6d,0x24,0xc6,0x25,0xb5,0xb2,0xa5,0xdc,0xaf,0x2c,0x5a,0x47,0x44,0x68,0x65,0xe4,0xd4, - 0x19,0x05,0xd8,0x83,0x2f,0x21,0xf3,0x54,0xa2,0xaa,0x84,0xd1,0x00,0xfa,0x5a,0x94,0x27,0x1f,0x90,0x03, - 0xa3,0x20,0xae,0xdd,0x7d,0xee,0xc8,0xef,0x6e,0xcc,0xc4,0xf0,0xc0,0x88,0x08,0x3f,0xb8,0x70,0xca,0xd1, - 0xb6,0x48,0xb4,0x75,0x78,0xe2,0x61,0xd4,0x61,0x8a,0x23,0x51,0xae,0x3b,0x72,0xf4,0xab,0x79,0xe9,0x66, - 0x94,0x8d,0x69,0xf2,0x28,0xb3,0xd0,0x0e,0x19,0xab,0xf4,0x96,0x24,0x16,0xcb,0xe1,0x40,0x93,0x00,0x1a, - 0x4d,0xf5,0xfb,0x99,0x57,0xa5,0x22,0x0a,0x0b,0x31,0xad,0x11,0xc2,0x32,0xb3,0x9c,0x3f,0xd2,0x1a,0x42, - 0x13,0x68,0xa8,0xe0,0xf1,0x98,0xc6,0xbc,0x36,0x6b,0xec,0x6f,0x49,0xe8,0x04,0xf9,0xd2,0x8b,0x2b,0x4b, - 0xee,0xcf,0x2c,0xef,0xda,0xfe,0xb9,0x38,0x26,0xa6,0xbd,0x3e,0xf7,0x46,0x2e,0xb7,0x04,0xe9,0x7b,0x31, - 0x7a,0xdf,0x22,0x9b,0x91,0xec,0x9f,0x7b,0x41,0x23,0xc7,0x3d,0x87,0x74,0x7c,0x01,0x59,0xec,0x92,0xba, - 0x9c,0x61,0x51,0x4b,0x5e,0xd4,0xa9,0xac,0xf0,0x04,0x9e,0x5e,0x78,0x88,0x34,0x94,0x20,0x75,0x2d,0x9f, - 0xd0,0xa6,0xcb,0xf7,0x4d,0x12,0x59,0xfc,0x39,0x37,0xea,0x36,0x0a,0x57,0xc4,0x78,0x57,0x69,0xcb,0xa3, - 0x70,0x21,0xaa,0x7b,0xa5,0x36,0x96,0x52,0xa1,0xe9,0x05,0x4a,0x45,0xe8,0x8b,0x55,0xd5,0x4f,0x2a,0x7e, - 0x67,0xb1,0xce,0xd4,0x50,0x9b,0x49,0xc8,0xba,0xb5,0x41,0x01,0xca,0x41,0x33,0xf6,0x25,0x35,0x15,0x2d, - 0xb9,0x05,0x3b,0x73,0x62,0x22,0xd2,0xf3,0x8d,0x09,0x89,0x1d,0xab,0x44,0xe9,0xbd,0xde,0x68,0x65,0x3f, - 0x0e,0x2b,0x6f,0x1d,0x4d,0x91,0x32,0xbf,0xaf,0xf3,0x08,0x52,0x87,0xf6,0xc6,0x26,0xef,0x63,0x0e,0xc8, - 0x6a,0x5a,0x5e,0x5a,0x74,0x49,0x2b,0xc6,0x5e,0x33,0x76,0x85,0x81,0xc3,0xc4,0x8b,0x5c,0xd6,0x38,0x4e, - 0xd5,0xda,0xf2,0x93,0x13,0xf4,0x0d,0x99,0x38,0xc8,0xf5,0xea,0x63,0x48,0xb5,0xce,0xb9,0x70,0x6b,0xaf, - 0x94,0x1b,0x9b,0x58,0x3b,0xec,0xb6,0x5c,0x62,0x6b,0x1f,0x19,0xc3,0x2e,0xc3,0x37,0xaf,0xd3,0x3c,0x50, - 0x1d,0xb5,0xca,0xe4,0x56,0xe2,0x5f,0x59,0x4e,0xaf,0x65,0xeb,0xeb,0x16,0x6c,0x87,0x6a,0x50,0xd5,0x24, - 0x73,0x4f,0xa7,0x11,0x95,0x83,0xa3,0xc6,0xe8,0xef,0x5a,0x1b,0xf8,0x2a,0x4c,0x43,0x7b,0x71,0xad,0x8a, - 0xd1,0x97,0xfe,0x29,0xc5,0x7d,0xe4,0x25,0x1a,0xa2,0xba,0x36,0x76,0x61,0x30,0xad,0xa0,0x30,0x68,0x83, - 0x1b,0x77,0x82,0x9e,0xf7,0xbe,0xce,0xbc,0xa8,0xb5,0x06,0x99,0x27,0x0b,0x5d,0x4d,0x21,0x46,0x34,0x21, - 0xd4,0xaf,0x2c,0x2c,0x81,0x5f,0xd8,0x4a,0xc9,0x3c,0x53,0x14,0xaa,0x5d,0x6c,0xcb,0xa6,0x86,0xfd,0x2a, - 0xf2,0x10,0x90,0x7d,0x78,0x8d,0x00,0x9f,0x29,0x3b,0x34,0x57,0x0d,0xeb,0x4f,0xe3,0x22,0xf1,0xcf,0x75, - 0x64,0x39,0xf7,0xb6,0xfd,0x3b,0xaa,0xed,0xce,0x9f,0x84,0x09,0xef,0x41,0xe4,0x72,0xb4,0x9c,0xcc,0xaf, - 0x07,0x31,0xba,0x32,0x0b,0x87,0x6a,0xb5,0x9b,0x23,0x11,0xc0,0xc5,0x98,0x92,0xea,0x3e,0xc0,0x00,0x15, - 0x53,0x84,0x09,0x55,0x8e,0xcf,0x0e,0x75,0x72,0xb5,0xf3,0xa9,0x67,0x12,0x39,0x52,0xb0,0x57,0x6d,0x4e, - 0x15,0x20,0x5e,0x85,0xf8,0x61,0xff,0xff,0x4d,0xdb,0x47,0x0c,0x1c,0xef,0xd0,0xb6,0xe9,0x63,0x35,0xf6, - 0xcb,0xfa,0x8d,0x52,0xcd,0xd5,0xd8,0x1c,0xe4,0xe3,0x61,0x29,0x9e,0xbb,0xe8,0x0f,0x43,0xef,0xc8,0x3d, - 0xc3,0x13,0xdd,0x15,0xee,0xc5,0x00,0xd1,0x8e,0xa0,0x1b,0x64,0xe3,0xb3,0x33,0xa3,0x8a,0x8c,0x2b,0x7a, - 0xb5,0xd2,0x88,0xcd,0x33,0xe1,0x8a,0xc2,0x43,0x75,0x6b,0x9b,0x50,0xb4,0x43,0xb5,0x4e,0xde,0xc8,0xb2, - 0xa2,0xed,0x87,0x49,0x90,0xde,0xa6,0x18,0x4c,0x64,0xd3,0xce,0x8e,0x55,0x01,0xcf,0x64,0xb1,0x71,0x96, - 0x62,0x65,0x84,0xb4,0xa9,0x6b,0x57,0xdf,0x44,0x74,0x18,0xf2,0xae,0xe3,0xca,0xbb,0x03,0xa0,0x53,0x8a, - 0x10,0xfc,0xa9,0x6f,0xc8,0x33,0xc4,0xce,0xf0,0x7c,0x7d,0x44,0x6b,0xe3,0x57,0x47,0x54,0xd2,0x70,0x44, - 0x39,0x26,0x99,0xf4,0x62,0x9f,0xd0,0x52,0x85,0xed,0x45,0x31,0x4f,0x87,0xab,0x82,0xda,0x37,0x1f,0xa1, - 0x4c,0x06,0x68,0x6d,0x0f,0xd4,0x9c,0x41,0xbe,0x14,0x12,0x9d,0x8b,0x60,0x3d,0xd1,0x51,0x39,0x13,0xc6, - 0xe9,0x39,0xfe,0x65,0x9d,0x17,0xc4,0x7d,0x6d,0x79,0xbf,0xf4,0xe8,0x1c,0x26,0x35,0xff,0x99,0xda,0xc7, - 0xd5,0xd4,0x1b,0x9d,0xb8,0xb9,0xac,0x07,0x22,0x13,0x27,0x9d,0xbe,0x33,0xf7,0x0c,0xf3,0x47,0x54,0x99, - 0xf1,0xef,0xc9,0x40,0x9b,0xdb,0x9f,0x09,0xbb,0x18,0x0d,0x25,0x6c,0x18,0x2e,0x2c,0x2e,0x2d,0x5e,0x3d, - 0x09,0x00,0xe4,0xf3,0x0d,0x93,0x37,0x5e,0xd2,0xa1,0xeb,0x92,0x77,0x60,0xd4,0x2a,0xd8,0xb1,0xbf,0xa4, - 0xd9,0xf2,0xa1,0x2a,0xdd,0x25,0xaf,0xe2,0x3c,0x5c,0x56,0x4b,0x3a,0x0f,0xe7,0xc6,0x59,0x00,0x25,0xcc, - 0xb1,0x66,0x42,0xe0,0x4e,0xc3,0xbc,0x22,0x25,0x16,0x96,0x2d,0xa9,0x1c,0x22,0xb4,0x35,0xc3,0x19,0x65, - 0xd8,0x9f,0xd3,0xc6,0xce,0x69,0x63,0x85,0x93,0xaa,0x36,0x76,0xee,0xe9,0xb4,0xa3,0xf9,0x58,0xda,0xee, - 0x18,0x80,0x94,0x30,0xdd,0xaf,0x63,0x37,0x91,0x2b,0x64,0x54,0xba,0x53,0x2e,0xb5,0xf0,0x46,0x53,0xda, - 0xc0,0x85,0x45,0xcd,0x69,0x3f,0xb2,0x45,0x75,0x03,0x4c,0x7c,0x9a,0x2e,0xd1,0x40,0x7b,0xfe,0x94,0xfe, - 0xbf,0x08,0x2b,0x57,0x2d,0xfe,0x55,0x08,0x09,0x80,0x7f,0x46,0x7f,0x16,0x63,0xff,0xd4,0xa8,0x6e,0x53, - 0xd6,0x49,0x98,0x20,0xeb,0x9a,0xfe,0x9c,0x8e,0xfd,0x83,0x70,0xab,0x18,0xce,0x9e,0xa0,0xab,0xe9,0x93, - 0xf0,0x94,0xee,0x26,0xf7,0xca,0x1b,0xa1,0x7a,0xbf,0x3f,0x1b,0x07,0xb1,0x4b,0x67,0x18,0xad,0xec,0xec, - 0x2c,0xc6,0xc1,0x2f,0x94,0xe9,0x9f,0xd0,0xa1,0xfe,0x80,0xbf,0x20,0xce,0x74,0x41,0x6e,0xb5,0xdf,0x9f, - 0x8e,0x3d,0x14,0x3a,0xf3,0xaf,0xb9,0x10,0xfd,0x45,0x21,0x5d,0x9f,0xfb,0xdc,0xd9,0x39,0x95,0x42,0x57, - 0xaa,0xd0,0x95,0x14,0x3a,0x68,0xd1,0x01,0xa9,0x7f,0xa5,0xee,0x5d,0x4b,0x14,0xe7,0x9e,0x09,0x0a,0xa9, - 0x7a,0xae,0x35,0x7a,0xa6,0x86,0x77,0x26,0xc3,0xeb,0x6a,0x94,0x1b,0x90,0xa6,0xad,0xa1,0x55,0xe3,0x77, - 0x63,0x71,0x76,0x31,0x09,0x7f,0x8a,0x69,0x7f,0x66,0xfe,0x02,0xa6,0xf2,0x2e,0x08,0xfa,0x13,0x8e,0x61, - 0x3a,0x9a,0x1c,0xf1,0x8f,0x71,0x87,0xf3,0x8f,0x2a,0x2e,0xe1,0x8c,0x68,0xe1,0x84,0xa3,0x10,0x1a,0xf4, - 0x98,0x8d,0x35,0x8f,0xb0,0xbd,0xfd,0x0b,0xe8,0x9c,0xc8,0x50,0xf0,0x19,0xd1,0xb8,0x27,0xd4,0xc4,0x1e, - 0x7a,0x1b,0x45,0xf4,0x3b,0xf3,0xd5,0xfc,0x79,0x5e,0x4b,0x1a,0xe7,0x7c,0xac,0x26,0xb7,0x94,0xc9,0x21, - 0x45,0x7b,0xb4,0xed,0x9a,0xe8,0xd2,0x9a,0xa8,0x17,0xd4,0xdb,0xac,0xe6,0x3b,0x9c,0x3d,0x5d,0x40,0x89, - 0x9e,0xa6,0x48,0x00,0xd1,0xdf,0x1f,0x7b,0x12,0x9d,0x51,0x3e,0xd4,0xa1,0x9f,0xfa,0xa7,0x38,0xf8,0xd3, - 0xa7,0xa7,0xdb,0xdb,0x97,0xee,0x9e,0x2f,0xcb,0xb2,0x76,0x27,0x1c,0x2e,0x1b,0x40,0x19,0x30,0xd0,0x82, - 0xc2,0xab,0x48,0xa8,0xba,0x38,0x94,0x0a,0xe3,0x9e,0x3e,0xa7,0xbf,0x4c,0x76,0x2d,0x30,0xd9,0x0a,0x2c, - 0x41,0x14,0x03,0xfc,0x47,0x68,0x7f,0x4a,0x79,0xd3,0x2a,0x0c,0x62,0x70,0x67,0xb3,0x81,0xe4,0x6f,0x71, - 0xd4,0x1a,0xbe,0xdb,0x3b,0xca,0xa9,0x53,0xe6,0x6f,0xc6,0x0c,0x59,0x51,0xd6,0x51,0xc3,0xda,0xba,0xaa, - 0x4e,0x85,0x0b,0x61,0xf4,0x0a,0xc6,0x13,0xb5,0x4c,0x30,0x6a,0x4f,0xff,0xea,0xa2,0xac,0xf3,0x3a,0xd9, - 0x23,0x8c,0x52,0x6e,0xf3,0x47,0x39,0x01,0x47,0x85,0xfd,0xd5,0x4e,0xba,0x39,0xfb,0x53,0x35,0x03,0x38, - 0x69,0x30,0x9e,0xfe,0x04,0x31,0x9b,0xa2,0x33,0x7f,0xae,0xdc,0x7d,0x10,0x2e,0xc8,0xeb,0xd1,0x86,0xc2, - 0x6c,0xb5,0x42,0x74,0x77,0x20,0x3d,0x3f,0x17,0xd2,0xde,0x17,0x84,0xac,0xf9,0x16,0xb9,0xb8,0x6c,0xbc, - 0x6f,0xa0,0xb2,0xeb,0x9a,0x80,0x7a,0x35,0xe1,0x7a,0x06,0xe4,0xb9,0xba,0xea,0x69,0xe9,0xba,0x19,0xd8, - 0x5c,0x2c,0x09,0x29,0xb1,0x03,0x6b,0x7b,0x16,0xff,0x8a,0x75,0x35,0xcd,0x4e,0x3c,0x45,0x10,0xcc,0x3c, - 0x8f,0x39,0xf1,0xf3,0xa8,0x60,0x42,0x1c,0x54,0x77,0xe1,0x72,0x22,0xf7,0x6a,0x3a,0xd4,0x71,0xe3,0xac, - 0x11,0xa8,0xa8,0x28,0xd2,0x54,0xc4,0x94,0x5f,0x95,0x68,0x82,0x70,0xf0,0xc5,0xa1,0xf7,0x65,0x81,0xb9, - 0x81,0x8b,0x9c,0x25,0x79,0x51,0x72,0x8f,0x84,0x66,0xf6,0x86,0x57,0x4f,0x66,0x7a,0xaf,0xae,0xb4,0x83, - 0xbb,0xf3,0xd5,0x6a,0xeb,0x84,0xf8,0xc5,0xd9,0xd1,0xd5,0x58,0x71,0xa6,0x0b,0x98,0x94,0x0b,0x2b,0x7b, - 0x1e,0x9e,0xd7,0xde,0x0f,0x50,0x63,0xb1,0x5a,0x9d,0xd7,0x3b,0x26,0x2e,0x06,0x07,0x29,0xf1,0xf4,0x6a, - 0xca,0xbe,0x5e,0xda,0xae,0x56,0xce,0x20,0xcd,0x9b,0x63,0xc6,0x5b,0xef,0x08,0x17,0x7b,0x37,0x97,0x18, - 0xe4,0x54,0xee,0x16,0xe9,0x6c,0xeb,0x12,0x1b,0xcc,0x9a,0x25,0x70,0x13,0xa7,0x7e,0x6a,0x67,0x93,0x42, - 0x54,0x6c,0x71,0x78,0x2f,0x3e,0x18,0x8a,0xc0,0x52,0xdf,0xfa,0xd9,0x6b,0x4b,0x82,0xc5,0x5c,0xfb,0x07, - 0xfe,0x21,0x84,0xd4,0x17,0x88,0x34,0x9f,0x4d,0x97,0xf3,0xb8,0xf0,0xdf,0xd3,0x6f,0xd0,0x38,0x6f,0x94, - 0xf6,0xd7,0x35,0xad,0xc9,0xf5,0x93,0x45,0x52,0x01,0xf0,0x35,0x93,0x95,0x87,0x47,0x8b,0xe4,0xe8,0x7a, - 0x0c,0x6b,0x2f,0xba,0x57,0xf6,0x86,0x07,0x4f,0x2e,0xaa,0x22,0x07,0x44,0x5e,0x5c,0x1c,0x1d,0x8c,0x55, - 0x19,0xda,0x29,0x5d,0x5c,0xf8,0x0b,0x3b,0x8f,0x2f,0xe4,0x77,0xac,0x37,0x82,0x77,0x35,0xd1,0x9a,0x51, - 0xa1,0xc4,0x0e,0xac,0xdf,0xef,0x58,0xd8,0x4a,0xa8,0xb8,0xc3,0x49,0xa1,0xba,0x2d,0x7d,0xba,0x24,0x95, - 0x4f,0x26,0xbe,0xbd,0xc5,0x4b,0x0c,0xc2,0x88,0xc0,0x38,0x1b,0xd0,0x05,0x73,0xce,0x25,0xfb,0x0f,0x71, - 0x81,0xe8,0x50,0xbe,0xa2,0x27,0x16,0x21,0x0e,0x07,0x26,0x7f,0xc8,0xbe,0x9f,0x78,0x23,0x19,0x7b,0x63, - 0x03,0x3c,0xa1,0xb9,0xa6,0xbe,0x0a,0x8a,0x8e,0x7e,0x16,0xdc,0x9b,0xc4,0x53,0xd3,0xf5,0xa0,0xe4,0x4e, - 0x30,0x5c,0xf1,0x13,0xcf,0x58,0x3f,0x4b,0x53,0x77,0xb5,0x74,0x58,0x70,0xc3,0xc7,0xa7,0x9b,0x51,0x91, - 0x13,0x69,0xdf,0x1c,0x94,0x53,0x1e,0x22,0xf2,0xf3,0xe1,0x9b,0x10,0xca,0xfc,0xea,0x39,0xe6,0xbd,0x7e, - 0x84,0x72,0xdf,0x34,0xa2,0xd0,0xc8,0x33,0x8d,0x92,0x1c,0xfa,0x6f,0xc4,0xfe,0xed,0x5c,0x88,0x41,0xba, - 0xfe,0x6a,0x82,0xb2,0x73,0x9e,0xa0,0xac,0xc3,0xf9,0xe0,0x44,0x04,0xb6,0xa7,0x72,0x1f,0x9c,0x35,0xee, - 0xe1,0x73,0xa8,0xfe,0x12,0xe1,0xa2,0xf1,0x9f,0x06,0xd8,0xeb,0x50,0xa7,0x11,0x0c,0x80,0x62,0x1a,0x5e, - 0x0f,0xab,0x7b,0xf1,0x82,0xc0,0xe2,0xa2,0x8b,0x77,0xb9,0xb0,0x78,0x97,0x8b,0xb1,0x7b,0xcd,0x23,0xb9, - 0x16,0xc7,0xf7,0x3c,0xd4,0x83,0xaa,0x91,0x77,0xd4,0xc8,0xbb,0x0e,0xce,0xf7,0x5d,0xc5,0xf9,0xbe,0x63, - 0xce,0xf7,0x5a,0x20,0xe9,0x59,0x78,0xdd,0xc2,0xad,0xfc,0xa2,0x30,0x60,0x1d,0xe1,0xca,0xe4,0xe1,0x5e, - 0xb8,0x3f,0xbc,0xf7,0xe4,0x19,0xb1,0x88,0xc6,0x5e,0xe5,0x1e,0xdc,0x3f,0x23,0xe1,0xe8,0xde,0x58,0xd3, - 0xde,0x3f,0xc7,0x18,0xdf,0x35,0xb5,0xaa,0x42,0xdd,0xc2,0xb7,0x2b,0xdf,0x5b,0x60,0xf9,0xf6,0xfc,0x3d, - 0x75,0x61,0x11,0xff,0x03,0x97,0xc0,0x79,0x65,0x2d,0x26,0xfb,0xb7,0xf4,0x7c,0x9e,0x13,0x6f,0xc5,0x1b, - 0x90,0xfe,0xa6,0x9c,0x7b,0xa3,0x0e,0x5a,0xb0,0x4c,0x7c,0x75,0xfe,0x82,0xa3,0xb3,0xc4,0xff,0x90,0xf8, - 0x07,0x89,0x7f,0x98,0xf8,0x5f,0x27,0xfe,0xef,0xe9,0x48,0x4b,0xf3,0x9f,0x97,0xbe,0x16,0xac,0xe1,0xb7, - 0xc0,0x53,0xe3,0xf9,0x6f,0x4b,0xe2,0x7a,0x89,0x95,0xc5,0x79,0x76,0x3d,0x7a,0x53,0x4a,0x74,0x33,0xb8, - 0xcd,0x5c,0x07,0x37,0xeb,0xb1,0x76,0xac,0x7c,0x99,0xc0,0x8b,0xf9,0xab,0x94,0x68,0x41,0xfd,0xc8,0xd1, - 0x0e,0x2f,0x22,0xef,0xe3,0xd4,0xfa,0xe4,0x3c,0x4a,0xcf,0x62,0xc7,0x36,0x4f,0x15,0x4d,0xfc,0xaa,0x32, - 0x4b,0xe9,0x95,0x70,0x6d,0xc8,0xaa,0xbe,0x57,0x2a,0x2a,0xe2,0x8f,0x18,0x83,0xd2,0x37,0xd3,0xae,0xd3, - 0x7f,0x49,0xe0,0x54,0x0d,0xbb,0x13,0x4f,0x1b,0x0f,0xa2,0x10,0x22,0xe9,0x97,0x79,0x13,0xd6,0x51,0x78, - 0x92,0xed,0xed,0x2d,0xfe,0x4b,0x8c,0x98,0x52,0xb3,0x1c,0x7d,0x0f,0x47,0x47,0xe6,0x32,0xaf,0x8d,0xf0, - 0x17,0x8b,0xa5,0x10,0xa3,0xae,0xa9,0x12,0x25,0xad,0xbd,0xe0,0xf7,0x52,0x7e,0xdb,0xde,0x9e,0x4c,0xab, - 0x84,0x2f,0x10,0x78,0x4d,0xdb,0x9f,0x68,0xa5,0xcf,0x6f,0x4a,0xc8,0xc0,0x1c,0xad,0x39,0x62,0x46,0x47, - 0xf7,0x6e,0xe2,0x4a,0xec,0x38,0xcf,0x53,0x9e,0xbc,0x5e,0xe9,0xc8,0xb1,0x61,0x59,0x45,0x91,0xf5,0xad, - 0xdf,0xec,0xd7,0x91,0x55,0x8b,0xdb,0xeb,0xae,0x97,0xfb,0x15,0x0d,0xeb,0xab,0x74,0x53,0x21,0xcc,0x4d, - 0xa4,0xb2,0x84,0x22,0xe1,0xa5,0xff,0x35,0xcf,0xe2,0xd6,0x92,0xfc,0xf2,0x41,0xcd,0x22,0xe2,0x0e,0x8f, - 0x54,0x36,0x09,0x78,0x08,0x6f,0xc2,0xcd,0xf5,0x6a,0xbd,0x55,0x73,0xd0,0xf6,0xfa,0xde,0x78,0x37,0xad, - 0xb5,0x1c,0xea,0x37,0x4b,0xb3,0xa2,0xa2,0x4d,0x7d,0xf7,0xfa,0x0e,0x93,0x66,0x0c,0xc0,0x4a,0x35,0x62, - 0x0b,0xaa,0xe5,0xec,0xc4,0x72,0x2d,0xab,0xac,0xd5,0x2b,0x46,0xa5,0x98,0x4f,0x6f,0x0c,0x1f,0xf8,0x12, - 0x03,0x04,0xc0,0x07,0xaa,0x24,0x3f,0x8e,0x13,0x8d,0xf3,0x33,0x3e,0xb6,0xb7,0x29,0x5f,0x65,0x00,0xd3, - 0x6b,0x88,0x55,0xbb,0xc0,0x9e,0x1a,0x7f,0x22,0x78,0x95,0xc0,0x9e,0xbf,0x24,0x3e,0x4e,0x56,0x20,0x6a, - 0xb1,0xcd,0xf5,0x51,0x16,0xc7,0xba,0x31,0xc4,0x02,0xfc,0x8a,0x9f,0x46,0x95,0x6a,0x89,0xb8,0x50,0xb1, - 0x04,0xea,0x1c,0xa0,0xfe,0x84,0x56,0x26,0x4f,0xce,0xe0,0x09,0xf6,0x79,0x52,0x40,0x39,0x32,0x74,0x52, - 0xda,0x07,0xa5,0x73,0xc7,0x6f,0xaa,0x53,0xc9,0x40,0xb8,0xf8,0x46,0x12,0x9c,0x3f,0x24,0x23,0x37,0xad, - 0x8e,0x3d,0xae,0xb8,0x7b,0xd4,0xad,0x7d,0x1a,0x1a,0x95,0xc2,0x6c,0xed,0x79,0xcd,0x96,0xc2,0x7c,0x94, - 0x05,0xd2,0x73,0xa7,0x7e,0x41,0x6b,0x86,0xc3,0xbc,0xb1,0x92,0xee,0x9d,0x13,0x6e,0x0d,0x34,0x1f,0xdd, - 0x35,0xd4,0xae,0x05,0xa2,0xbd,0x7c,0x73,0x47,0x35,0x35,0x91,0xce,0x69,0x76,0x35,0xa9,0x66,0x0e,0xd5, - 0x8a,0xb4,0x63,0x73,0x15,0x43,0xc0,0xa7,0xf1,0xee,0xf1,0x31,0xd4,0x7c,0x47,0x50,0xc3,0x86,0x61,0xca, - 0xba,0x0b,0x82,0xe6,0x28,0x0f,0xbe,0xca,0x32,0x38,0xc3,0xf5,0x27,0x45,0x61,0x7e,0x03,0xb8,0x74,0x31, - 0x20,0x12,0xfd,0xdb,0x7a,0x9d,0x55,0x29,0xd6,0xdb,0xaa,0x5d,0x46,0xbf,0xab,0xda,0xa5,0x1a,0x69,0xad, - 0x87,0x5b,0xbb,0x6c,0x47,0xba,0x0c,0xb7,0x23,0x69,0x63,0xd9,0x46,0x87,0xd3,0x65,0xce,0xef,0x82,0xc1, - 0x91,0xd8,0xb5,0xf9,0x2a,0x5d,0x14,0x3b,0xc6,0x6b,0xff,0x0f,0xbd,0x40,0xb5,0xc7,0x5a,0xb1,0x96,0xfb, - 0x2e,0xa9,0x99,0xd0,0x35,0x6d,0xc1,0x5a,0xc6,0xe3,0x6d,0x9b,0x30,0xe5,0x39,0x8b,0x05,0xab,0xf2,0x4a, - 0xdf,0x1d,0xdc,0x8f,0x51,0xf8,0xaf,0x90,0x10,0x12,0xd8,0xda,0x31,0x5b,0x95,0x89,0x18,0xf6,0x06,0x6a, - 0x07,0x2a,0x7e,0xab,0xdd,0x86,0x08,0xfe,0x43,0xcd,0x11,0x0e,0xbd,0xca,0x7d,0xa5,0xf5,0x68,0x66,0xe8, - 0x6e,0xdb,0x76,0xb4,0x12,0x08,0x28,0xfb,0xb1,0x9f,0x4b,0x78,0xe6,0x61,0x6f,0x03,0x55,0x96,0xf6,0xb2, - 0xca,0x14,0x1a,0xad,0x9d,0xce,0xf9,0x09,0x28,0x2a,0xd3,0x11,0x60,0x9d,0x93,0x93,0xaa,0xbb,0x1d,0xa7, - 0x6f,0xdc,0xca,0xf5,0x9d,0x1d,0x67,0x18,0xb1,0x18,0x4e,0x94,0x6c,0xf9,0xf7,0x28,0xb2,0x02,0x9c,0x16, - 0x7d,0x5c,0x10,0xf8,0xe9,0x04,0x45,0x9f,0x65,0xb9,0x41,0xee,0x46,0x22,0xff,0xc0,0x03,0xb4,0x7a,0xfb, - 0x90,0x14,0x63,0x50,0x54,0x78,0x23,0x4e,0xe1,0x3a,0xf8,0xcb,0xff,0x4a,0xd8,0x8c,0xd0,0x95,0x07,0x44, - 0xd8,0x57,0x0e,0x94,0xa3,0x19,0x5a,0xda,0x6a,0x88,0xe1,0x2f,0xda,0xb2,0x68,0x5e,0x33,0x76,0x5f,0x62, - 0x11,0x24,0xca,0x84,0x54,0xb4,0xc2,0xce,0xe3,0x39,0xb5,0x91,0xb4,0x09,0xe1,0x3b,0xc0,0x2d,0x82,0x3c, - 0x01,0x5d,0x7c,0x5d,0x44,0x35,0xac,0xe3,0xf9,0xcb,0xed,0xed,0xa5,0xc2,0x51,0xee,0x79,0x18,0xf9,0x97, - 0xe1,0xd2,0xbf,0xc4,0x14,0x08,0xa3,0x9d,0xe3,0xef,0x6a,0x75,0x89,0xb5,0xe0,0x4f,0xa1,0xef,0xb6,0x7e, - 0x65,0x69,0x82,0xbb,0xb5,0xec,0xf2,0xf9,0xda,0x95,0xaa,0x5d,0x7a,0x56,0x2c,0xb8,0x00,0xd6,0x2c,0x5c, - 0x36,0x81,0x44,0x0c,0x46,0x26,0x3c,0x77,0x27,0x5b,0x96,0x3b,0x09,0x6b,0xee,0x27,0x75,0xe7,0x0d,0x0a, - 0x0a,0x80,0x37,0xbf,0x77,0x67,0xbe,0x13,0xcd,0x08,0xaa,0x5f,0x8a,0x7a,0x85,0x6d,0x2a,0x6a,0x95,0x44, - 0xbc,0xf4,0xba,0x1f,0xcb,0xb5,0xe7,0x6b,0xf0,0x41,0x67,0x49,0xba,0x93,0x89,0x29,0x80,0x08,0x3c,0x7e, - 0x75,0x2b,0x61,0x95,0xb8,0x35,0x9b,0xfa,0x0b,0xdb,0x6c,0x0f,0xfe,0x81,0x87,0xdf,0x43,0x1a,0xc3,0xdd, - 0x7f,0x2d,0x1a,0x23,0x0b,0xcf,0xe7,0x34,0xc1,0x58,0x98,0x3d,0x0c,0xd2,0x54,0xfa,0x0c,0x1a,0x61,0x84, - 0x16,0x9b,0x43,0xa5,0x2d,0x9b,0x86,0xf1,0xba,0x22,0x9b,0x33,0x61,0x5a,0xfc,0x4b,0x42,0x9f,0x3f,0x24, - 0x58,0x14,0xc0,0xa3,0xc2,0x1b,0xfc,0xa0,0x6f,0x21,0x18,0x60,0x58,0x6f,0x28,0x26,0x7d,0xbd,0x1f,0x98, - 0x8b,0x15,0x7f,0xee,0xff,0x26,0xbc,0x52,0x29,0x54,0x04,0x7f,0x10,0x39,0x6d,0xbe,0xbe,0x85,0x72,0x70, - 0x70,0x23,0x48,0xe6,0x87,0xa4,0x0b,0xb1,0x34,0x2c,0xdb,0x19,0x3f,0xd8,0x46,0x22,0xb2,0x75,0x12,0x28, - 0x77,0x11,0xa5,0x08,0x82,0xdb,0xed,0x0e,0x89,0x2b,0x2d,0xf2,0xf8,0xca,0x38,0x2e,0x14,0x23,0x51,0x2d, - 0x7c,0x4e,0xba,0xd0,0x16,0x7b,0x54,0xcd,0xea,0x25,0xc1,0x67,0x47,0xd5,0xa9,0x29,0x88,0x2d,0x2a,0x9e, - 0x18,0xae,0xbc,0xd0,0xa2,0xc7,0x49,0x98,0x1c,0x15,0xe3,0xe1,0x44,0xe2,0x47,0x63,0x14,0x5b,0xe1,0x44, - 0x84,0xef,0xe0,0x0c,0xd4,0x49,0x9e,0xd4,0x4f,0x32,0x21,0x8f,0x2b,0xbc,0x88,0x38,0x80,0xed,0xcc,0x58, - 0x8b,0xa6,0x47,0x5c,0x6e,0x1c,0x4e,0x7c,0xaa,0xa1,0x8e,0xf3,0xa4,0xfb,0x38,0x47,0x1e,0xe4,0x1e,0x96, - 0x37,0xf1,0x39,0x06,0xbc,0xc4,0x3f,0x33,0x1a,0xea,0xac,0x92,0x80,0xcd,0xf4,0x50,0xa7,0x61,0x7e,0x34, - 0x1b,0x0f,0xa7,0xad,0x73,0x10,0xf9,0x2a,0x8d,0x68,0xd6,0x70,0xca,0xe4,0xfe,0x59,0x5c,0x7e,0x95,0x2d, - 0x59,0xcc,0x76,0x30,0x4f,0x08,0xc0,0x7e,0xa4,0xb5,0x86,0x1f,0xf6,0xa3,0x29,0x0f,0x71,0x34,0x97,0x51, - 0x4f,0xbd,0x60,0xa9,0x7f,0xad,0x95,0x05,0xee,0xa2,0x0c,0x59,0xa7,0x12,0x72,0x48,0x6d,0x25,0x2d,0xbc, - 0xd3,0x34,0x5c,0x9a,0x48,0x05,0xba,0x44,0x46,0xb7,0xbf,0xed,0x9d,0xa3,0x65,0x7f,0xdd,0xed,0x69,0xc0, - 0xf4,0x05,0x2d,0x0e,0x96,0x83,0x59,0x8e,0x3a,0x4c,0xa6,0xa6,0xa9,0xa6,0x1b,0x2c,0x9a,0x6d,0x40,0xf1, - 0x4b,0x7d,0xf7,0x28,0x90,0x37,0xfe,0xf9,0xd9,0xc0,0xcb,0xb9,0x42,0xc4,0xe7,0x1d,0x56,0xb6,0x1c,0x6a, - 0xbe,0x58,0x59,0x32,0x9d,0x47,0xc5,0x2b,0x4a,0x77,0x63,0x65,0xa0,0xef,0x97,0x42,0x2e,0x6b,0x15,0xc3, - 0xef,0x98,0x4d,0xd0,0x5f,0x7f,0xd4,0xbe,0x7e,0xd0,0x0e,0xff,0xe1,0xbc,0x63,0x4e,0xa8,0xd2,0x30,0x78, - 0xd0,0xcd,0x1f,0x64,0xb3,0x59,0x11,0x97,0xdf,0xc5,0xc9,0xd9,0x79,0x69,0xd5,0x6a,0x2a,0x2d,0xca,0xfe, - 0xf1,0x1a,0x57,0x2e,0xc4,0x30,0x12,0xd8,0x56,0x32,0xed,0x34,0x3c,0x00,0xf1,0x06,0xe7,0x67,0x03,0xa3, - 0xf7,0x13,0xe6,0x03,0x4b,0x41,0x4a,0xa5,0x54,0x80,0xf1,0x5c,0x11,0x13,0x1c,0x74,0xba,0xcd,0xe5,0x7c, - 0x93,0xc0,0x13,0x28,0x2f,0x57,0x15,0x71,0xb0,0x07,0x91,0xcf,0x0d,0xd1,0xc7,0x5b,0xbb,0xa6,0x9b,0x7b, - 0x2a,0x70,0xa7,0x44,0x0d,0xd2,0xf1,0xba,0x3c,0xf6,0xa2,0x2b,0x80,0xd1,0x6a,0x98,0x75,0x1e,0x74,0xdb, - 0x0c,0x27,0x87,0x32,0x7c,0x36,0x53,0x07,0xe3,0xa4,0x5c,0xb4,0x05,0x37,0x6a,0xf1,0x1b,0x7c,0x39,0x2e, - 0xf5,0xe7,0x89,0x11,0x09,0x56,0xb7,0xba,0x2a,0x5e,0x47,0xf2,0x2a,0x71,0xa8,0x57,0x6e,0x82,0x07,0x33, - 0x96,0xda,0x78,0xb4,0xd7,0xd6,0x4d,0xcf,0x80,0x81,0x9b,0xb1,0x2b,0xb5,0x73,0x77,0x4e,0x4b,0xd1,0x85, - 0xf2,0xfc,0x0f,0x6a,0x03,0xd2,0x4e,0xaa,0xd9,0x38,0xc5,0xa8,0x29,0x47,0xa4,0x9a,0xb3,0x7b,0x2f,0x8a, - 0xa8,0xb6,0x2d,0x1d,0x15,0xad,0x69,0x5c,0x69,0x38,0x52,0x93,0x09,0x59,0x2c,0x66,0x76,0x76,0x0d,0x2b, - 0xf1,0xb7,0xfc,0x60,0x3f,0x4b,0xce,0x06,0x56,0x64,0xdc,0xf0,0xb7,0xdc,0xaf,0x32,0x6a,0x31,0x79,0xc3, - 0x22,0xe9,0xcc,0x82,0x50,0x2d,0xfc,0xd6,0xae,0xd6,0x88,0xc9,0x1b,0xfe,0x18,0xd7,0x2a,0xd6,0x83,0xf8, - 0xb6,0x62,0xa4,0xfc,0x5e,0x51,0x6c,0xd8,0xa9,0x02,0xa6,0x0c,0xb5,0xbd,0x03,0xc1,0x57,0x97,0xbc,0x29, - 0x54,0x0b,0x15,0x7d,0xbd,0x97,0xfc,0xa1,0xac,0x8f,0xef,0xb2,0x44,0x60,0x6b,0x6a,0x85,0x8d,0x77,0x1c, - 0x98,0x6a,0x8f,0xb8,0x3a,0x3b,0x30,0xaf,0x2c,0x7e,0x8d,0xb2,0x1f,0x24,0xdb,0xf5,0x49,0xc0,0x17,0xf2, - 0xc6,0xa2,0xda,0x48,0x42,0xda,0xdc,0x6d,0xd7,0x56,0x47,0xa2,0xb4,0x03,0x36,0xad,0xfd,0x2b,0x18,0x56, - 0x1a,0x17,0x8a,0x86,0xea,0x22,0x66,0xd8,0xab,0xe7,0x59,0x46,0xec,0xff,0x4e,0xd8,0x6a,0xd2,0x72,0x5d, - 0xa2,0x11,0x26,0x94,0x0a,0x7f,0x4e,0x82,0xb3,0x7a,0xb6,0xb8,0xa2,0xeb,0x8e,0x94,0xd5,0x56,0x94,0x67, - 0xef,0x3d,0xb6,0x6f,0x70,0xb9,0xbc,0x99,0x27,0x6b,0xa4,0x85,0x69,0xce,0xbe,0x5f,0xe2,0x7a,0x18,0xec, - 0xca,0xc4,0x5d,0x7b,0x18,0xac,0x71,0x90,0xca,0x93,0x53,0xe5,0x74,0xc4,0x15,0xd3,0x8d,0x33,0xa3,0x3f, - 0xe4,0x23,0xc2,0xaf,0xaf,0x2c,0xd6,0x2a,0xa7,0x30,0x71,0xdb,0x03,0x77,0x5c,0xf7,0xc0,0xad,0x1d,0x0a, - 0x43,0x0d,0x8a,0x96,0xe2,0x2b,0xa8,0x52,0x69,0xe7,0xf7,0xd0,0xe7,0x7f,0x5b,0x79,0x24,0x70,0xad,0x31, - 0x7d,0x0d,0xa5,0x10,0x09,0x83,0xbd,0xbd,0xfd,0x7d,0x8a,0xff,0x0f,0xe0,0x46,0x0b,0x74,0x1b,0x54,0x99, - 0xdf,0xc2,0x2e,0x63,0x4f,0x0e,0xe6,0xf7,0x89,0xff,0x2d,0x94,0x29,0x6f,0x8e,0x6f,0x5c,0x77,0x14,0x0c, - 0x56,0xc7,0xa9,0xd7,0x1f,0x79,0xc7,0xeb,0xe3,0xf5,0xee,0x99,0xff,0x4f,0x68,0xbf,0xef,0x0c,0x3e,0xeb, - 0x8f,0xfe,0x75,0xef,0x66,0xed,0x7a,0xab,0xa3,0xe3,0xf1,0xf1,0xee,0xf1,0xf1,0x98,0xf2,0x7e,0xeb,0x56, - 0x61,0xe7,0x2b,0x44,0x6b,0x6f,0xff,0x33,0xf1,0x9d,0xe3,0xe3,0x7b,0xdb,0x0e,0x9b,0x2f,0x43,0xd1,0xbc, - 0x9d,0x63,0xaf,0xae,0xf8,0x4b,0x71,0xcb,0xbe,0xa3,0x06,0x23,0xa3,0x71,0xfa,0xa9,0xef,0x9c,0x41,0x12, - 0xe8,0xff,0x0a,0x33,0x3f,0x16,0xef,0xc3,0xa7,0x69,0x70,0xe4,0x58,0x72,0x7f,0x67,0xec,0x1b,0x94,0xdd, - 0x30,0xf3,0x60,0xe7,0x5a,0x03,0x78,0x81,0x50,0x28,0x32,0x11,0x79,0x8d,0x18,0xdc,0x0e,0x45,0xb0,0x65, - 0x35,0x15,0x7e,0xff,0xee,0xcd,0x6b,0x4a,0x00,0x60,0x23,0x86,0x63,0xaa,0xdd,0x98,0x87,0xb9,0x55,0x11, - 0x8e,0x72,0x21,0x4a,0x81,0x52,0x0c,0x12,0xbe,0x4a,0x98,0xe0,0x08,0x73,0x6c,0x7f,0x9c,0xc2,0x3d,0x6b, - 0x07,0xf7,0xe9,0x38,0x96,0x6a,0x7f,0xd5,0x25,0x1e,0xcb,0xfa,0xa1,0x3d,0x9f,0xc0,0xe9,0xd7,0x4a,0xf4, - 0x1d,0x1f,0x56,0x9a,0xb5,0xbe,0x54,0xad,0x89,0x29,0x6f,0x67,0x4a,0x85,0x92,0xe8,0xe2,0xff,0xe8,0x5e, - 0x36,0x7e,0x22,0xf9,0xf4,0x65,0x63,0xf4,0xdf,0x58,0x36,0x6e,0xaa,0xb9,0x6c,0x17,0x09,0x56,0xae,0xbe, - 0x74,0x52,0xd9,0x5a,0x3a,0x4e,0xf8,0xb3,0x4b,0xc7,0xdd,0xd6,0x96,0x8e,0x53,0xac,0xa5,0xe3,0x6f,0xbd, - 0x74,0x76,0x5f,0xa6,0x16,0xca,0xbb,0x52,0xa1,0xca,0xed,0xc3,0xea,0x40,0x16,0x2f,0xce,0xf8,0xb1,0x09, - 0x96,0x7f,0x6c,0x05,0x0a,0x73,0xca,0x6c,0xae,0xac,0x1a,0xc5,0x74,0x4f,0x59,0x63,0x8a,0x85,0x61,0x52, - 0x30,0x66,0xc6,0xd3,0x13,0x4d,0xc5,0xb2,0x17,0xad,0x99,0x3e,0x8a,0x81,0xe4,0xf5,0x29,0xdc,0x0e,0x95, - 0x99,0xd8,0x4c,0x2b,0x0b,0x47,0x98,0x7f,0x96,0x30,0xed,0xd4,0x62,0xce,0x05,0x9b,0x38,0xc2,0x3c,0x90, - 0x0d,0x1d,0xc5,0xf4,0x31,0x57,0x2d,0xe1,0x70,0xc9,0x08,0x3b,0x4d,0x50,0x65,0xc8,0x95,0xb1,0x21,0x5b, - 0x4c,0x76,0x1a,0x56,0xa2,0xdb,0xba,0x65,0x23,0xdb,0xa2,0x2a,0x43,0x54,0x6d,0x49,0xd9,0xb2,0x48,0x55, - 0x36,0xae,0x6c,0x62,0xd9,0x61,0xe1,0x8a,0xb1,0x6a,0xfb,0x57,0xe9,0x87,0x16,0x8b,0xed,0x6a,0x95,0x0d, - 0x26,0x4c,0x58,0xb5,0xf1,0x24,0x2f,0x53,0xd3,0x1c,0x53,0x96,0x4d,0xcc,0x53,0xd5,0xe2,0x89,0x21,0x85, - 0x36,0xb5,0xac,0xac,0x40,0x1b,0x4b,0xc4,0x96,0xb9,0xb4,0x50,0xbc,0xd6,0x50,0x03,0xcc,0xc2,0xdd,0x7f, - 0x1d,0x17,0x9f,0xb9,0x47,0xf4,0xaf,0x73,0xff,0xc9,0xd3,0xe3,0xdd,0x70,0xdc,0xf7,0x08,0xd7,0x20,0x31, - 0xf4,0xf0,0xef,0x28,0x70,0x28,0xdb,0x19,0x7f,0x46,0x68,0x67,0x75,0x9f,0x7e,0xde,0xa7,0x9f,0xf7,0xfb, - 0x2b,0x55,0x27,0x7c,0xf2,0xf4,0x3f,0xa9,0x8a,0xe7,0x8d,0x76,0xfd,0x24,0x0b,0x9d,0xa3,0x68,0xe7,0x8f, - 0x67,0x3b,0xbf,0x9d,0x8c,0x8f,0x8e,0x8f,0xaf,0x8f,0x8f,0x77,0x8e,0x8f,0x07,0xe3,0xcf,0x1c,0x3f,0xa3, - 0x2c,0xe0,0x30,0xa7,0x9f,0x64,0x7d,0xc2,0x74,0x81,0x37,0x92,0x9f,0x9e,0xe3,0x47,0x59,0x68,0x21,0x3b, - 0xe7,0x5f,0x4f,0x9c,0x7e,0x96,0x11,0x87,0xa6,0x07,0x77,0xbc,0x3b,0xf2,0x9e,0xee,0xd2,0xbe,0x34,0x8a, - 0x1d,0x1f,0xef,0xa2,0x64,0xdf,0x39,0xfa,0xd7,0xd3,0xf1,0x67,0x4f,0x69,0x3e,0x73,0x54,0x79,0xb2,0xf5, - 0xfc,0xcd,0xc1,0xe1,0xaf,0x6f,0xbf,0xee,0x21,0xbd,0xff,0x74,0x37,0xf1,0x97,0x92,0x0e,0x0b,0x9e,0x99, - 0xfc,0x3c,0x3e,0xda,0xf5,0x17,0x19,0xde,0x8e,0x9d,0xf7,0x8e,0xc1,0xc2,0xbb,0xef,0xdd,0x01,0x4d,0xe4, - 0xcc,0xaf,0x1f,0x79,0x2a,0xe8,0x80,0xb9,0x2f,0xd5,0xd3,0xcb,0x79,0xe6,0x5f,0x65,0xc4,0x4a,0xfb,0x67, - 0x99,0xff,0x21,0x23,0x08,0xf2,0x4f,0x32,0xff,0x3a,0xf3,0x0f,0x32,0xff,0x30,0xf3,0x2f,0x32,0xff,0x7d, - 0xe6,0xbf,0x63,0x10,0x54,0xf6,0xbb,0xca,0x30,0x5a,0xbf,0x7a,0xf0,0x25,0xf8,0x2c,0xc3,0xcb,0xf1,0x3d, - 0xfa,0xd7,0xd9,0x9e,0x97,0x43,0x27,0x70,0x9e,0xd0,0xa1,0xdc,0x3e,0xe3,0x9f,0x4f,0xf1,0x13,0xf0,0x49, - 0x1f,0xf7,0x9d,0xfb,0xf4,0x11,0x5d,0x2e,0x90,0xb1,0x8d,0x8c,0xbf,0xed,0xef,0xe1,0xf7,0x71,0xca,0x1f, - 0x5f,0xf2,0xef,0xd2,0x59,0xfb,0x6f,0x68,0x6e,0xdb,0xb4,0xc8,0xc4,0x00,0x9f,0x95,0x2b,0x54,0x5f,0x51, - 0x35,0x6f,0x48,0x13,0xfa,0xba,0x33,0x6b,0x45,0x2d,0xad,0xfe,0xf6,0x25,0x97,0x78,0xcb,0x03,0x86,0xe6, - 0x43,0x7d,0x9c,0xcf,0xb3,0x6e,0xd2,0x82,0xb0,0xcc,0xdb,0x4c,0x7c,0x28,0x1c,0xb3,0x9c,0xa5,0x84,0xe7, - 0x22,0xff,0x77,0xac,0xef,0x3f,0x56,0xff,0xba,0xda,0xc9,0xd2,0x60,0xd7,0x7f,0x81,0xcf,0xab,0x9d,0x15, - 0x92,0xe8,0xf3,0x25,0x7d,0xba,0x83,0xcf,0xe8,0x42,0x2d,0xfa,0x34,0x9a,0x24,0x5d,0x65,0x33,0xfe,0x3d, - 0xf8,0xcc,0xdb,0xf5,0xbf,0xa1,0x5c,0x9f,0xe0,0xca,0xa7,0xeb,0x76,0x4c,0x50,0x46,0x25,0xec,0x4f,0x6f, - 0x74,0x6f,0xd7,0x7f,0xcd,0x50,0xe1,0xae,0x8e,0xbd,0x7b,0x34,0xe8,0x57,0x19,0x9b,0x87,0x7d,0x46,0x1f, - 0xfe,0x8f,0xc8,0x09,0xd0,0x33,0x8b,0x9e,0x77,0xfd,0xaf,0x28,0xe1,0x78,0x70,0xf4,0xaf,0xc1,0xb8,0x4f, - 0x45,0x7f,0xce,0x3a,0x8d,0x77,0xdc,0xef,0x93,0xf0,0xfb,0xe4,0x0e,0x43,0x25,0xaf,0xd2,0x86,0x08,0x63, - 0xff,0xfb,0xc4,0x36,0x4e,0xa4,0x4b,0xf8,0x17,0xf4,0xfc,0xfe,0x72,0x9e,0x16,0xc1,0xeb,0x77,0xc7,0xd3, - 0xfe,0xae,0xff,0x13,0x52,0xf8,0x37,0x8d,0xe3,0xbb,0x2c,0x3c,0xfa,0x35,0xa1,0x3b,0xc7,0xbf,0xa1,0xe5, - 0x3d,0xbc,0xe5,0x6e,0x11,0x59,0x92,0xf6,0x2a,0x21,0x4f,0x43,0x9a,0x85,0xe1,0xc7,0xfd,0x57,0xd1,0x82, - 0x45,0xb2,0x47,0xce,0xd5,0x0e,0x3f,0xa6,0x38,0x63,0x48,0x67,0xf1,0xc9,0x93,0x06,0x41,0xe8,0x8c,0x57, - 0x2b,0x4a,0x51,0xbf,0xb5,0x6a,0xa8,0xba,0x6d,0x38,0x11,0x9e,0xbb,0xe4,0xe6,0xba,0xda,0x49,0x66,0xb2, - 0xcd,0x59,0x98,0x8c,0x1c,0x6a,0x8b,0x4e,0x25,0x0e,0x65,0x40,0x2c,0x62,0x14,0x0a,0x4d,0xae,0x8b,0xe2, - 0x39,0x57,0xd9,0x2d,0xd7,0xd2,0x4c,0x1b,0x93,0xf0,0x57,0xa6,0xc8,0xff,0x59,0xb2,0xaf,0x2c,0xd6,0x36, - 0xe2,0x0e,0x7d,0x71,0x9d,0x71,0x9a,0xbd,0xa7,0xbe,0xbf,0x45,0x3a,0x94,0xf6,0x41,0xc3,0x4e,0x08,0x41, - 0x2b,0x72,0x6f,0x90,0xcc,0x08,0x47,0x38,0xfd,0x9c,0xfa,0xa7,0xe9,0xdf,0xd7,0x55,0xee,0xd3,0x21,0xf7, - 0x7f,0x43,0xa5,0x9b,0xf8,0xfd,0x22,0x40,0x39,0xc1,0xdf,0xc1,0x44,0x9d,0xc7,0xb9,0xea,0x97,0x06,0x35, - 0xc7,0xa0,0x68,0x75,0x65,0x40,0x25,0x27,0xa8,0x21,0xe4,0xd1,0x34,0xc9,0xa4,0xff,0x39,0xfa,0xaf,0x9a, - 0xb4,0x7b,0xe5,0x52,0xdc,0xa5,0xf4,0x31,0x57,0x7d,0x2c,0x55,0x1f,0xda,0x67,0x51,0xe9,0x2e,0x9b,0x5d, - 0x51,0x82,0x2c,0x3a,0x8c,0x1f,0xbe,0xc5,0x77,0xad,0x97,0x44,0xb5,0xb8,0x84,0x7b,0xfc,0xd1,0x64,0x80, - 0xa5,0x43,0x28,0x3a,0x50,0x3a,0xf2,0x45,0x0b,0x00,0x27,0xd4,0xe0,0xec,0xc6,0xfe,0x1f,0x84,0x19,0xa8, - 0x1a,0x71,0x0c,0x00,0x3b,0xc8,0xef,0xf5,0x0b,0xf7,0x77,0x99,0x5f,0xb1,0x12,0x81,0x7a,0x54,0xbb,0xeb, - 0x19,0xcd,0x7e,0x43,0xcd,0x04,0xb6,0xd8,0xbb,0x9f,0x06,0x2b,0x7e,0x7b,0x15,0xf7,0x86,0x86,0x17,0x31, - 0x32,0xf4,0x52,0x29,0x73,0xf9,0x2a,0xb4,0x6e,0xf5,0x7e,0x99,0x79,0x5b,0xdd,0x3d,0xdf,0x67,0x15,0x81, - 0x7b,0xda,0x03,0xc7,0xcf,0xd1,0xbc,0x17,0xf6,0x1a,0x91,0xd5,0xd5,0x93,0x82,0x3c,0x62,0xde,0x63,0x07, - 0xb2,0x2a,0x62,0xa3,0x79,0xd0,0x34,0x8d,0x67,0x95,0x79,0xfc,0x40,0x37,0xba,0xf6,0xf0,0x06,0xea,0xda, - 0x65,0xd0,0xeb,0x15,0xf7,0xe5,0x9c,0x88,0xbb,0x17,0xa8,0x04,0x65,0xbd,0x11,0x55,0x93,0x84,0x5e,0x40, - 0x3f,0xd5,0xd3,0x9b,0x34,0x78,0xbf,0xef,0x72,0x0c,0x06,0xb1,0xa3,0x1f,0x39,0x27,0xa9,0x4b,0xf9,0x38, - 0x03,0xf4,0x07,0x42,0x22,0x02,0x01,0x67,0x98,0xda,0x2f,0x9a,0x50,0xa0,0xef,0x3b,0x3d,0xa7,0x1f,0x95, - 0x08,0x75,0x53,0x1f,0xbb,0x7e,0x54,0xa5,0x4e,0xeb,0x0b,0x10,0xd4,0xbf,0x09,0x5f,0x3a,0x9e,0xe1,0x8a, - 0xd8,0x6c,0xa7,0xb2,0x09,0xad,0xf0,0x40,0x46,0x18,0xd6,0x1c,0x1f,0xfa,0x8e,0x36,0x2d,0xb9,0x35,0x09, - 0xda,0x62,0x39,0xef,0xb2,0x06,0xde,0x6a,0xe5,0xa0,0x1f,0x9c,0x69,0x85,0x07,0xf2,0x65,0xbc,0x53,0x65, - 0xe2,0xd3,0xa1,0x63,0x2d,0x99,0xb3,0x08,0xa7,0xba,0xca,0xe5,0x6f,0x67,0xf8,0x1f,0xb1,0xac,0x80,0x38, - 0xc1,0xf1,0x9d,0xba,0x29,0x89,0xd3,0x27,0x36,0xc5,0x1b,0x9d,0x24,0xf2,0xcb,0xa7,0x23,0xd4,0x67,0x3e, - 0xdc,0xe9,0xbb,0xd2,0x3e,0xc6,0x3e,0x72,0x02,0x55,0x92,0x96,0x37,0x38,0xf9,0xb7,0x29,0x1c,0x21,0x89, - 0x98,0xbc,0xfa,0x32,0x3b,0x02,0x45,0x51,0x28,0xc5,0xee,0x81,0x7b,0xad,0x2d,0x36,0x25,0x4d,0x42,0x24, - 0x0f,0xd4,0xb8,0x46,0xae,0xb4,0x85,0x6e,0x88,0x43,0xe8,0x30,0x86,0xa5,0xe6,0x14,0x52,0xbc,0x77,0xef, - 0x8a,0x1a,0x76,0x65,0xcb,0x65,0xbc,0x4e,0x90,0x79,0xdc,0x51,0x12,0xd2,0x4c,0xa8,0x28,0xfd,0xbc,0xe2, - 0x46,0xec,0x4e,0xbc,0x1b,0x2a,0xf0,0x64,0x8f,0xd1,0x25,0x8d,0x8b,0x06,0x60,0xc2,0x6d,0x1f,0x51,0xf9, - 0xb1,0x27,0xba,0x2f,0x28,0x45,0x0b,0x50,0x2b,0xa6,0xdd,0xbf,0x50,0x96,0xa7,0xeb,0x54,0xe9,0x94,0xda, - 0xdf,0x87,0x1e,0x81,0xd4,0x37,0xf0,0x75,0x6f,0xc2,0x70,0xe8,0x7c,0x1c,0xb4,0x08,0xa6,0xfb,0x8b,0xa0, - 0xd2,0xda,0x6e,0x6b,0xb3,0x5c,0xaa,0xd3,0x5a,0x34,0x84,0x6e,0xa8,0xef,0x1e,0x0f,0x3e,0xfb,0x18,0x10, - 0x07,0x08,0x5a,0x3a,0x21,0x1b,0xb1,0x4a,0x03,0x5f,0x11,0x5e,0x63,0xff,0xf1,0xb8,0xbd,0x24,0x6a,0x30, - 0xfc,0x6e,0xab,0x79,0x21,0x00,0x12,0xec,0xb8,0xe9,0x5a,0xda,0x92,0x55,0xc1,0xa0,0xa0,0xdb,0xe7,0xcf, - 0xc3,0x6c,0xa4,0x47,0x19,0xa8,0x0c,0xe8,0xa0,0x11,0xf4,0x06,0x6a,0x54,0xfe,0x32,0x6c,0x1c,0x6b,0x59, - 0x9f,0x21,0xd0,0x75,0x77,0x9e,0xb2,0x1a,0x87,0xc7,0x12,0x29,0xc3,0x0b,0xb4,0xe4,0x95,0x19,0xca,0x9b, - 0x15,0xaf,0xc8,0xd2,0x1b,0x4e,0xa8,0x00,0xdd,0x76,0x00,0xab,0x5a,0x3b,0x4a,0xcf,0xc4,0x3c,0x52,0x0e, - 0x9d,0xfe,0xcc,0xf3,0x65,0x27,0xa4,0x7f,0xdf,0xd1,0xe7,0x47,0xad,0xf6,0xdc,0x9f,0x55,0x92,0x15,0xb7, - 0x58,0xad,0xa0,0x30,0x2d,0xfb,0x70,0x3a,0x5f,0xd2,0xed,0xe4,0xd4,0x9f,0xae,0x1c,0x6d,0x2e,0x58,0x6d, - 0xc4,0xd6,0xd7,0x69,0x5d,0x4c,0x48,0x98,0xb4,0x13,0xf7,0x9b,0x57,0x58,0xa6,0x11,0x5b,0x8c,0xf1,0x95, - 0x68,0x30,0xc8,0x70,0x2d,0x12,0x09,0xc0,0x53,0x60,0xd8,0x52,0x82,0x07,0xbf,0x66,0x9e,0xe7,0xf6,0x26, - 0x0c,0xd1,0xd5,0xd9,0xc0,0x9a,0x18,0xcb,0xb7,0x44,0x4f,0x45,0x5d,0x2e,0x29,0x40,0xc8,0x2a,0x07,0x5c, - 0x10,0x56,0x12,0x57,0x84,0x72,0x31,0x51,0xed,0x95,0x9c,0x34,0xf8,0x2d,0x87,0xc3,0x9d,0xaf,0xe2,0x97, - 0xf1,0xac,0x7c,0xb3,0x88,0x53,0x14,0x29,0x33,0xbf,0xb6,0x14,0x41,0x91,0xf8,0x0d,0x59,0x68,0xf0,0x63, - 0xec,0x5b,0xc2,0x83,0xef,0x32,0xe2,0x1f,0xa6,0xcb,0x49,0xb7,0xca,0x0d,0xc7,0x72,0xe4,0x53,0xae,0x03, - 0x64,0xe9,0x90,0x7f,0x1e,0x7b,0x84,0x18,0xfc,0x9e,0x25,0x04,0x26,0x3e,0x56,0xe4,0x87,0x6e,0x12,0xb5, - 0x07,0x47,0x2f,0x80,0x76,0xbe,0xb3,0x01,0xff,0x90,0xac,0xfb,0xfa,0x24,0xf8,0xc4,0xbb,0x24,0xa9,0x72, - 0xe7,0xe1,0x9b,0x87,0x31,0x89,0x2e,0xd4,0x77,0xe3,0x11,0x4e,0x6c,0x0c,0xcf,0xa8,0x10,0x18,0xfd,0xdb, - 0xb0,0x7c,0xc7,0xd7,0xf7,0x4e,0xc6,0xfd,0xd5,0x31,0x51,0xd8,0xde,0xf8,0xb3,0xd1,0xb1,0x07,0x76,0x2f, - 0x7c,0xba,0xfa,0x97,0x1e,0x01,0x7d,0x1e,0xbb,0xbb,0xfe,0xf7,0xaa,0xc6,0x11,0xb1,0x75,0xc4,0xdc,0x9d, - 0xdc,0x1b,0xa3,0xea,0x18,0x9c,0x21,0x51,0xd7,0x8d,0xc4,0xd5,0xf1,0xd1,0x7d,0xa2,0xef,0xef,0x8f,0xe9, - 0x87,0x43,0x3f,0x1c,0xfc,0x20,0x32,0x18,0x7f,0x9a,0x65,0xc7,0xde,0x67,0xd4,0x2c,0x51,0xee,0xdf,0x82, - 0xd4,0x29,0x26,0xc1,0x83,0xbf,0xc3,0x99,0x51,0xf0,0xa5,0xa8,0x59,0x04,0xfb,0x0f,0x7d,0x59,0xef,0x87, - 0x0f,0xfc,0xe5,0x22,0x78,0xf8,0x05,0x71,0xc8,0xb3,0x32,0x78,0xf8,0x77,0x3f,0xc7,0xeb,0x49,0xf0,0xf0, - 0x4b,0x1f,0x5e,0xb0,0x83,0x47,0x7b,0xbe,0x3c,0x60,0x06,0x47,0x5f,0xf8,0x8f,0x3e,0x27,0x26,0xe4,0x9f, - 0x59,0x97,0x5f,0x2e,0xa0,0x9c,0x3e,0x80,0xc7,0xf2,0x99,0x35,0x24,0xb6,0xe9,0xb7,0x0c,0xc2,0x20,0x82, - 0x07,0x7d,0xa8,0xf1,0x01,0x00,0x89,0xce,0x22,0x11,0x21,0x0e,0xa1,0x51,0xc1,0x79,0xa6,0x8c,0xfa,0x7e, - 0x2e,0x0f,0x8e,0x5c,0x04,0x71,0xc9,0x82,0x7f,0x66,0x6e,0x1d,0x37,0xf4,0x08,0xe3,0xf4,0x54,0xca,0x64, - 0x99,0x63,0x93,0x0e,0x39,0x83,0x0e,0xf0,0xa4,0xcc,0xe7,0x5c,0x63,0x4b,0x17,0xa0,0x84,0x1f,0xa0,0xa1, - 0xeb,0xb3,0xef,0xd0,0x5a,0x1e,0xa7,0x48,0x66,0x34,0xaf,0x67,0xd1,0xb7,0x64,0x40,0x5e,0x50,0xcb,0x41, - 0x82,0x64,0xf1,0xda,0x21,0xeb,0xbe,0x78,0x85,0xba,0x0f,0xc2,0x48,0x4a,0xf5,0xb6,0xb7,0xf5,0x08,0x25, - 0x8f,0xc7,0xbc,0x87,0xf6,0x92,0xe9,0x74,0x1e,0x7f,0x52,0xb5,0x7d,0xc8,0x15,0x78,0x7f,0x3e,0xa5,0xd6, - 0x03,0xc0,0xff,0xaf,0xb4,0x11,0xc4,0x35,0x36,0xfd,0xb1,0xc0,0x0d,0x5c,0x15,0xd5,0xae,0x63,0x63,0x4f, - 0xce,0x64,0x63,0xfd,0x1a,0x86,0x58,0xc3,0x5b,0x49,0xda,0xf6,0x83,0x83,0xe6,0x38,0x7c,0x5e,0x65,0x2d, - 0x54,0xb5,0x74,0x4a,0x2d,0xa5,0xd4,0xd2,0x7d,0xc8,0xbf,0xe8,0xbc,0xf5,0xc1,0x7c,0x57,0xad,0xe2,0xee, - 0xb3,0x28,0x69,0x38,0x3a,0xaa,0xd4,0x11,0xf1,0x18,0x36,0x12,0x52,0x27,0x50,0x34,0x93,0x77,0x4b,0x71, - 0x8e,0x3e,0xed,0xf8,0xaa,0xbc,0xe3,0xa9,0x31,0x4f,0xe6,0x59,0x74,0x81,0xb8,0xba,0xff,0x91,0xb5,0xbd, - 0x9e,0x66,0xc6,0x59,0x26,0x7f,0x42,0x12,0x49,0x77,0x22,0xfe,0xac,0x56,0xbf,0xa9,0x44,0x23,0xbc,0x2c, - 0xc2,0x5f,0x21,0x86,0xd7,0x8a,0xe9,0x8e,0xc9,0x38,0x20,0x8e,0x41,0x7b,0x70,0xc7,0x3b,0xe3,0xb7,0x71, - 0x8a,0x08,0x7e,0xf5,0xd2,0x4a,0xea,0x68,0xca,0x19,0x8e,0x23,0xbc,0x72,0x59,0xd1,0xe2,0xd7,0x8c,0x4d, - 0xa3,0x4d,0xba,0x67,0xa2,0x77,0xd5,0x10,0xe8,0x6a,0xf5,0x3e,0x1d,0x2a,0xdf,0xc8,0x1f,0x4e,0x63,0x13, - 0x88,0xb1,0x63,0x23,0xb7,0x8c,0x19,0xaf,0xf2,0x8f,0x99,0x4e,0xe2,0x17,0xb0,0xd6,0xe2,0xaf,0x66,0xc0, - 0x41,0xf8,0xe8,0x8e,0xa3,0xd0,0xb5,0x85,0x42,0xc7,0xc7,0xa7,0x4e,0xdf,0x99,0x12,0x0e,0x9f,0x41,0x00, - 0x47,0x40,0x5f,0x22,0xa0,0x2e,0x2d,0xf2,0x07,0x76,0xcc,0x36,0x81,0xf0,0x0f,0xd7,0x9e,0x7f,0x9d,0x94, - 0xe7,0x7e,0x74,0x1d,0x25,0xa5,0xcf,0x86,0x01,0x3e,0xfb,0x40,0x57,0xca,0xf3,0xfc,0x0c,0xe4,0xb3,0xe3, - 0x52,0x9f,0xe3,0xd2,0xfb,0xd7,0x84,0x56,0x63,0xff,0x03,0xa4,0x7e,0x0a,0xd9,0xf8,0xc4,0x9c,0x65,0xf0, - 0x76,0xc8,0x9e,0x58,0x7c,0x99,0x81,0xf6,0x00,0xa6,0xfd,0x2e,0x8a,0xbb,0x50,0x62,0x63,0x24,0x44,0x3d, - 0x3b,0x41,0x4b,0xd2,0x25,0x5c,0xf7,0x9c,0x2e,0xcf,0xce,0x20,0x26,0x54,0xab,0x50,0x05,0x5d,0x71,0x94, - 0x9f,0x1a,0xdc,0x09,0xea,0x76,0xa0,0x69,0xad,0x30,0x35,0xaf,0xcf,0x33,0x94,0x20,0xc1,0x8d,0x39,0xcb, - 0xa0,0xc4,0xef,0x28,0x2b,0xb0,0x77,0xb6,0x43,0x28,0x1d,0x08,0xff,0xf8,0x98,0x50,0x3e,0xfd,0x53,0xb5, - 0xda,0xc8,0xa0,0x3e,0xdc,0xf7,0x4d,0xc9,0x8f,0x88,0x22,0x36,0x5a,0x8d,0xb2,0xc7,0x60,0xc2,0x8b,0x88, - 0x7d,0x1c,0x6e,0xed,0x7b,0xfe,0x69,0xa6,0xf6,0x93,0x0d,0xc4,0x20,0xe1,0xb6,0x22,0xb6,0x0c,0xd3,0x27, - 0x1f,0x32,0xdb,0x39,0xcb,0x87,0x8c,0xed,0x70,0xf1,0x92,0x73,0x9e,0x85,0x65,0x05,0xd5,0xa7,0xf8,0xd2, - 0x77,0x3d,0xc0,0xc9,0x3f,0x41,0x8a,0x75,0x93,0x73,0xe2,0x35,0x12,0x1b,0x57,0x35,0x67,0x5c,0x66,0x00, - 0xed,0xb2,0xe3,0x20,0xbc,0x96,0x83,0x70,0xd6,0x2c,0xd0,0x14,0xd3,0x50,0x99,0x0f,0xad,0x32,0x59,0x51, - 0x36,0x0b,0x5d,0x61,0x08,0xb4,0x13,0xc9,0x65,0x52,0x22,0x20,0xa2,0x32,0xca,0x25,0xf2,0x94,0x95,0x4f, - 0xb6,0xf6,0x59,0xd7,0x13,0x31,0xce,0x71,0x3a,0x7e,0x39,0xa7,0x52,0x3c,0x4c,0x1f,0xeb,0x05,0x3a,0x75, - 0xbf,0x65,0x99,0xd1,0x5c,0x64,0xfa,0x5a,0xf6,0xf1,0x82,0x07,0xb5,0xd6,0xe5,0xa9,0xbc,0x2d,0xb8,0xb6, - 0xd5,0x74,0xae,0xfd,0x08,0xb0,0xfe,0x9d,0x5f,0x54,0xf1,0xeb,0x45,0x93,0x6f,0xe9,0xa9,0xb7,0x37,0x3c, - 0x37,0xe4,0xf8,0x94,0x1d,0x6b,0x3c,0xc8,0x52,0x32,0xab,0xfa,0x27,0x61,0x54,0x05,0xb5,0x4f,0x9e,0x86, - 0xc4,0xf5,0x44,0x08,0x05,0x33,0xd7,0x45,0x71,0xc8,0x69,0x5e,0x05,0x42,0xaa,0x69,0x9a,0x32,0xe4,0x67, - 0x5f,0x94,0xb6,0x0c,0x30,0xed,0x86,0x26,0x4f,0xc3,0x64,0x38,0xa1,0x0a,0xe5,0x80,0xbd,0xac,0xf0,0x1f, - 0xf6,0xb7,0xce,0x92,0x09,0x8c,0x7f,0xa8,0x8b,0x87,0x58,0xc0,0x84,0xbb,0xdd,0xd9,0xe7,0x7c,0xe6,0x8e, - 0x9c,0xd3,0x1c,0x14,0x5e,0x31,0x62,0xc2,0x2a,0x67,0xa7,0xf5,0xfc,0x83,0xe6,0x4f,0xcb,0xbd,0xb5,0x27, - 0x9e,0x11,0x9c,0x05,0x97,0xe2,0x38,0xb8,0x9d,0xe5,0xf6,0xb9,0x9c,0x5f,0x1b,0x88,0xac,0x20,0x2d,0xaa, - 0x76,0x8e,0x00,0x4f,0x27,0xd8,0x44,0x28,0xa3,0x57,0x52,0x19,0xda,0xb2,0x72,0x50,0xd1,0x97,0x0c,0x6d, - 0x73,0xbc,0x38,0x37,0xa8,0x4a,0xce,0x58,0xd2,0xa2,0xc4,0x43,0x16,0xf2,0x25,0x84,0xc0,0x89,0x25,0x79, - 0x97,0xb9,0x99,0x51,0x67,0x83,0x5d,0x6a,0xd6,0x78,0x13,0x5f,0x84,0xcf,0xb2,0xa3,0x29,0x42,0x44,0xf1, - 0xdf,0x9a,0xfc,0x9b,0x08,0xb8,0xe3,0xe2,0xf8,0xf8,0x1d,0x91,0x6e,0x9e,0xfb,0x64,0xd7,0xe9,0x4f,0xb5, - 0x20,0xdc,0xa3,0x13,0x9f,0x80,0x97,0x86,0x75,0x96,0x16,0x6d,0x2f,0x6c,0x99,0x36,0x83,0x87,0x86,0x34, - 0x63,0x09,0xeb,0xd3,0x78,0xa6,0xcc,0xff,0x29,0xbf,0x93,0x58,0x38,0x8e,0x8d,0x1c,0x56,0x0e,0xa8,0x76, - 0x21,0x46,0xa7,0xbe,0x0b,0xe9,0x79,0x67,0xe7,0xe9,0xee,0x19,0xb1,0x18,0x74,0xeb,0xdb,0x45,0x8e,0x8f, - 0x0e,0x9e,0x3f,0x3b,0x7c,0x76,0x7c,0x54,0x95,0x1c,0x8f,0x4d,0x49,0x08,0x95,0xdd,0xa9,0x2f,0x6e,0x97, - 0xa1,0xcf,0xa2,0x7c,0x36,0x71,0x18,0xbd,0xf3,0x48,0x2e,0x4a,0xfe,0x01,0x25,0x08,0x07,0xf2,0x17,0x82, - 0x79,0xad,0xa3,0xb3,0x73,0xae,0xc7,0x1b,0x87,0xe7,0x7e,0x4e,0x0d,0x2d,0x77,0x66,0x88,0x44,0x6d,0xec, - 0x90,0xae,0x42,0x4b,0x19,0xe0,0x89,0xc8,0x00,0xa0,0x86,0x79,0xc5,0x8b,0xbf,0xcc,0x74,0x44,0x2d,0x6d, - 0x41,0x66,0xab,0x0e,0xec,0x1c,0xbf,0x7f,0x18,0x4b,0x95,0x4b,0x06,0xdf,0x52,0x85,0x67,0x44,0xa4,0x0a, - 0xa5,0x82,0xa8,0xc2,0x23,0x28,0x87,0x25,0xd5,0x29,0x7c,0xe4,0xc3,0xd6,0x36,0x75,0x2f,0xfb,0x0f,0x89, - 0xc5,0x53,0xa8,0x7e,0x0d,0xbd,0xae,0x59,0xa3,0xcf,0x33,0xbb,0xcf,0xf1,0x53,0xe9,0xef,0x8c,0xfb,0x4b, - 0xdd,0xb3,0xfe,0x03,0xbb,0x3a,0xca,0x43,0x43,0x9a,0xdd,0xd3,0xba,0x73,0x51,0x39,0xfc,0x80,0x82,0x1f, - 0xf0,0xb6,0xac,0x03,0x1a,0x9a,0x0a,0x28,0x7f,0x6a,0xca,0x4f,0xa4,0xfc,0xa9,0xf4,0x7b,0x12,0x2e,0x87, - 0xa9,0x7b,0x6a,0xd5,0xa3,0x05,0x3c,0x3d,0xda,0x1f,0xfb,0x27,0xcc,0x96,0xda,0x6d,0x5c,0x37,0x63,0xa5, - 0x94,0xa6,0xd1,0x48,0x1a,0x35,0x91,0xff,0x6e,0xb4,0xc7,0xbf,0x12,0x4d,0x31,0xe7,0x11,0xe0,0xb0,0xe0, - 0x94,0x05,0xcb,0x35,0x75,0x59,0xda,0x43,0xb5,0x4e,0xd5,0x70,0x0b,0x87,0x41,0x35,0x5b,0x64,0x6c,0xfc, - 0x91,0x99,0x84,0x9c,0x12,0x86,0x5e,0xea,0x66,0xb5,0x01,0x2b,0xff,0x91,0x3a,0x10,0x27,0xce,0x53,0x65, - 0x83,0xb9,0xc4,0x59,0x7c,0x47,0xb7,0x38,0xa1,0x0d,0x0c,0x26,0x75,0x93,0x7a,0x65,0xf8,0x3e,0x5f,0xfa, - 0xf9,0x7a,0xed,0x8a,0xd5,0x94,0x77,0xd3,0x0a,0xb5,0x90,0x86,0xc6,0x4d,0x21,0x5b,0x5d,0x54,0x6d,0x32, - 0xf7,0x2f,0x18,0x85,0xce,0x6f,0x2a,0xae,0xc3,0x73,0x1a,0x85,0x3f,0xe7,0x9f,0x99,0x38,0x80,0xce,0xf9, - 0x81,0x5c,0x4f,0x73,0x19,0x4e,0xd8,0x5b,0xc3,0xd6,0x56,0xc2,0x3e,0x78,0x64,0xf8,0x0a,0x86,0xa7,0x7c, - 0xa8,0x45,0x32,0x35,0xc3,0x89,0xdf,0x1b,0x2e,0x9e,0xcc,0x86,0x0b,0xad,0xe4,0x77,0xae,0x2b,0x1c,0x2d, - 0xc6,0xc3,0x05,0x75,0xba,0x03,0x6b,0xb9,0x73,0xcc,0x49,0x03,0xd0,0x7d,0xc7,0xb9,0x8f,0x75,0xe3,0x37, - 0xaa,0xf3,0xa3,0x87,0xe3,0xed,0x6d,0xa5,0xd0,0x89,0x0f,0x5f,0x25,0x3f,0xb2,0x93,0x1f,0x99,0xe4,0xc7, - 0x76,0xf2,0x63,0x65,0x4d,0x78,0xc5,0xcd,0xac,0x56,0x28,0x88,0x7f,0x1f,0xd3,0xbf,0x8e,0xe3,0x5f,0x86, - 0x4e,0xa4,0x5d,0x5c,0xc3,0x7d,0xb3,0xb4,0xb0,0x3f,0x1e,0xe9,0x33,0xf2,0x3c,0x86,0x4b,0xdd,0xd7,0xf1, - 0x35,0x5c,0xa2,0x16,0xdf,0x64,0xf9,0x77,0x54,0x2a,0xe8,0xce,0x1d,0x4e,0x69,0x46,0x4a,0x77,0x1d,0x8d, - 0xf8,0x4c,0x62,0x07,0xff,0x2e,0xdd,0x2b,0x3a,0x46,0xeb,0xf5,0x92,0x55,0x9f,0x79,0x93,0x59,0x81,0x95, - 0x30,0xab,0x7d,0xe3,0x04,0x69,0x03,0x57,0x0a,0xd4,0x4d,0xe1,0x91,0x3e,0xe4,0xb8,0x08,0x0d,0x64,0x9f, - 0xc2,0x96,0x8c,0x9f,0xbc,0xe9,0x0b,0x1e,0x6d,0xd2,0xa9,0xb7,0xa6,0xed,0x07,0x2e,0xca,0xfc,0x98,0x5d, - 0x2f,0xec,0x37,0xcf,0xdd,0x81,0x36,0x19,0x3f,0xd4,0x3f,0x2e,0xd4,0x0f,0xc0,0xce,0x95,0xb9,0xdf,0x0e, - 0x8d,0x63,0xe7,0x2b,0x8f,0x40,0x7a,0xa2,0x8e,0xfb,0x21,0xdc,0xb8,0x5a,0xbf,0x97,0xd6,0xef,0x99,0xf5, - 0xdb,0xbd,0x08,0x0f,0x6d,0x8c,0xe5,0x13,0x2e,0x7c,0xb2,0x47,0xa0,0x7f,0xd5,0x0f,0x2f,0xfc,0x5a,0xe3, - 0x07,0xb5,0x7b,0x7f,0xcf,0xbf,0x02,0xc2,0xb9,0xf2,0xd6,0x57,0x2c,0x8e,0xa4,0x5c,0xc2,0x8a,0xb0,0x1c, - 0x37,0x98,0xf4,0xa0,0x42,0xa6,0x07,0xac,0x63,0x1a,0x8b,0x9a,0x72,0x0b,0xd5,0xc6,0xda,0x44,0x76,0x9d, - 0xbb,0x2c,0x23,0x92,0x28,0x21,0xe7,0x99,0x6f,0x3d,0x43,0xd4,0x6e,0x3f,0x4b,0xb2,0x62,0x5f,0x83,0x1d, - 0x42,0x95,0xd6,0x8d,0xe8,0x77,0x81,0xc4,0x06,0x48,0xe9,0x2c,0x7b,0x3b,0x70,0xa9,0x5c,0xbf,0x85,0xba, - 0x03,0x83,0xb9,0x0b,0x85,0x9e,0xac,0x6b,0x31,0x82,0xf5,0xab,0x9c,0x58,0x11,0x90,0x16,0xab,0xd5,0x35, - 0xde,0x38,0x87,0xaf,0x01,0xf2,0x70,0x99,0x4d,0x6b,0xb7,0x84,0x2a,0x7c,0x8d,0x7b,0xa9,0x94,0x9d,0x09, - 0xe9,0x09,0x69,0x1b,0xdb,0x94,0xad,0x16,0x5e,0x22,0x3e,0xea,0x2f,0x99,0xd6,0x9d,0x4c,0x95,0xce,0xa4, - 0xfc,0x0a,0xe5,0x8f,0xb9,0x44,0x7f,0xca,0x7c,0xd9,0x46,0x3e,0x01,0xa0,0x45,0x4c,0x0c,0x3d,0x28,0x97, - 0x2b,0x79,0xe2,0xf7,0x25,0x0f,0x3b,0xa1,0x0b,0x12,0x12,0x45,0x1a,0x31,0xe8,0xb9,0x2d,0xe5,0x40,0x9f, - 0x3d,0x2a,0x4e,0xc3,0x99,0x27,0xca,0xcc,0xfa,0x39,0x1a,0xc9,0x53,0x51,0xbe,0x9e,0xd6,0xe5,0xa9,0x34, - 0x49,0x88,0xed,0x76,0x7f,0x8f,0xae,0x22,0xbb,0x6c,0xad,0x10,0x8d,0x19,0x31,0x6a,0x3d,0xee,0x90,0xa6, - 0x7e,0xca,0x9e,0xe0,0x39,0x10,0xa5,0x5e,0x88,0xa9,0xc2,0x63,0x67,0x86,0xc0,0x07,0x3e,0x9b,0x85,0x67, - 0x19,0x9d,0x79,0x77,0x46,0x24,0x2d,0xc1,0x3f,0x2b,0x06,0xd2,0xfc,0x2f,0xc3,0x99,0x6f,0x1e,0x1a,0x2f, - 0xf1,0xa8,0x06,0xd9,0x1d,0x9a,0xbf,0x04,0xa9,0xcc,0xa6,0x06,0xb3,0x8a,0xaf,0xd8,0xf3,0x98,0xb1,0x98, - 0x59,0x8c,0x05,0x5e,0x24,0x3b,0xa3,0x17,0x1b,0x61,0x99,0x71,0x77,0x69,0x47,0x69,0x34,0xaf,0xaa,0x16, - 0x0a,0x2e,0xb5,0x1f,0x9a,0x92,0x23,0x78,0xc2,0x4b,0x8f,0xc2,0x51,0x56,0x6b,0x94,0x28,0x71,0x49,0x04, - 0x65,0x35,0x94,0x7c,0x1a,0x05,0x25,0x2c,0xe9,0x5a,0x7b,0xd4,0xa4,0x79,0xb0,0xae,0x1d,0x0b,0xed,0x24, - 0x2a,0xf6,0xcc,0x0b,0x66,0xd5,0x5b,0x28,0xe5,0xfe,0x13,0xc6,0xfc,0x1d,0x91,0x4a,0xad,0x37,0x5b,0x75, - 0xff,0xc6,0x78,0x34,0x2d,0xf1,0xc8,0x18,0xcb,0x23,0x63,0xa9,0x1e,0x19,0xe3,0xb5,0x32,0xb2,0xee,0x78, - 0xc2,0x15,0x5d,0x66,0xf5,0xfc,0xa8,0x63,0x27,0x36,0x1f,0x74,0xb5,0x36,0x93,0x7a,0x97,0x84,0x43,0x5d, - 0x0c,0xea,0xca,0xde,0xac,0x2b,0x54,0x00,0x93,0xce,0x4d,0x5e,0x31,0xbf,0xce,0xbb,0xf1,0x6d,0xc9,0x9b, - 0x4c,0x6b,0x39,0xd2,0x10,0xb0,0x5a,0xe5,0x34,0x56,0x86,0x19,0x69,0x92,0x20,0x80,0x7f,0x51,0x55,0x1a, - 0x7e,0x2e,0xc3,0xd7,0x99,0x6a,0x16,0xb3,0xb5,0x17,0xe4,0xd4,0x23,0x9d,0xc6,0x2d,0x0b,0xd6,0x60,0x22, - 0xd4,0x6a,0x66,0xeb,0x76,0x5e,0xd5,0x3e,0xa5,0xe6,0x70,0x72,0x7c,0x3d,0x6d,0x81,0x1e,0x73,0x68,0x3d, - 0x00,0xb8,0x96,0xdc,0x52,0x02,0x82,0xc2,0x66,0x0b,0x98,0xfe,0xba,0x95,0x93,0x1b,0x5e,0x9b,0x94,0xa7, - 0xf3,0x1b,0x2e,0x16,0x1e,0x7a,0x5c,0x1f,0x3a,0x2c,0x32,0x68,0xc1,0x8c,0x8c,0x7d,0x36,0x80,0x85,0x02, - 0x3b,0xfd,0xe2,0x28,0xe2,0xb2,0xfd,0xfb,0xa2,0x4f,0x12,0x4a,0xae,0xc8,0x05,0x57,0xab,0xfb,0x8e,0x92, - 0x1f,0x38,0xf7,0x87,0xd4,0x6d,0x2d,0xd8,0x5b,0xfd,0x9b,0xcd,0x08,0x8e,0xce,0xc7,0xe1,0x4c,0x8c,0xad, - 0xab,0x31,0x0a,0xde,0x98,0xf1,0xd1,0x91,0xb0,0x6c,0x89,0x5c,0xed,0xfe,0xe5,0x70,0x3e,0x4a,0x01,0x74, - 0x44,0x79,0xcd,0xfc,0x4c,0x17,0x44,0x9c,0xb1,0xb4,0x43,0xaf,0x3e,0x3b,0xca,0x0c,0xdb,0x36,0xf6,0x4b, - 0xcb,0x3d,0xd6,0x51,0xcb,0x27,0x16,0x95,0x40,0xf0,0xe5,0x87,0xd0,0x06,0xd1,0x08,0xa5,0xe7,0xc8,0x17, - 0xbb,0x53,0xd8,0x9a,0x40,0xd3,0xba,0x1a,0x23,0x96,0xd6,0x37,0xed,0x87,0xfb,0x44,0x6e,0xd5,0xfb,0x4b, - 0xc5,0xe1,0x36,0x2e,0xa8,0x9a,0x94,0x5f,0x07,0x17,0x7b,0x9d,0xda,0x4f,0x47,0xe2,0xd1,0x04,0x88,0x2d, - 0xa9,0x70,0xd6,0xa2,0x72,0xc7,0x01,0xd3,0x6e,0xcf,0x9c,0xa6,0x9a,0xf3,0x8f,0x38,0x9c,0x20,0xf0,0xa3, - 0x3c,0xe1,0x8c,0x5c,0x84,0xda,0x74,0x2a,0x2e,0x28,0xd7,0xb6,0x2a,0x8c,0x56,0x75,0xc2,0x28,0x0e,0x7e, - 0xce,0xd8,0xad,0x1f,0xbb,0x3c,0x97,0x51,0x8f,0x68,0xc6,0x10,0xe7,0x29,0x8f,0x6f,0x5b,0x05,0xaf,0xc1, - 0x16,0xfb,0xee,0x73,0x9b,0xd2,0x13,0x81,0xd2,0xab,0x6c,0xf4,0x5b,0xe2,0x5e,0x65,0x5e,0xf0,0x6d,0xc2, - 0xdc,0x7a,0xc5,0x2c,0x18,0xe7,0x6f,0xbe,0xc5,0x82,0xd2,0x3f,0x13,0xb8,0xf0,0x8d,0x8a,0xf2,0x05,0x88, - 0x06,0x20,0x2c,0x8e,0xe7,0x13,0x4f,0x70,0x59,0x79,0x37,0xb4,0xb3,0xb9,0xd0,0x13,0xde,0x53,0x3c,0x35, - 0x69,0x62,0xd9,0x10,0x12,0x13,0x58,0xe9,0xfa,0x8a,0xbc,0x6a,0xe0,0xaf,0x4c,0x6b,0x28,0xce,0xc3,0x7f, - 0xc6,0xae,0xed,0x0e,0x79,0xa8,0x2a,0xc8,0x63,0xcc,0x5c,0x1e,0xa1,0x54,0xdb,0x37,0xce,0x3f,0x4e,0x45, - 0x53,0xd0,0x81,0xce,0x04,0x0d,0x30,0xe9,0xe7,0x15,0xe5,0xad,0x6f,0xaf,0xc9,0x93,0xca,0xd4,0xa2,0x63, - 0x58,0xb7,0x0e,0x8a,0xcf,0x19,0x34,0xfa,0x60,0x90,0x14,0x29,0x91,0x56,0x9f,0xd5,0x05,0x2f,0xe2,0xb4, - 0x08,0x8a,0x35,0x47,0x06,0xf2,0x46,0xa5,0x26,0x1b,0x61,0x05,0xfa,0xc0,0xb7,0x6a,0x61,0x91,0xf4,0x87, - 0xae,0x06,0x42,0x12,0x3f,0xe4,0x4d,0x8b,0xce,0x6d,0x20,0x30,0x1b,0x57,0x7b,0x6a,0xc0,0xf8,0xa8,0xac, - 0x60,0x93,0x41,0x1a,0x4a,0xe3,0x56,0x67,0x0f,0x4d,0x23,0x42,0x3f,0xe6,0x6c,0x10,0xde,0x72,0x13,0xdf, - 0x3c,0xa6,0xf5,0xca,0xbe,0xb1,0x75,0x0b,0xb6,0xf6,0xd8,0x3c,0x82,0xd8,0x15,0x57,0xc3,0x26,0xe2,0x18, - 0x2b,0x41,0x12,0xa4,0xc1,0x97,0xc9,0x1f,0x31,0xcb,0x71,0xd8,0x14,0xca,0x87,0x4c,0xe7,0x20,0x0b,0x7f, - 0xc8,0x80,0x27,0xac,0xe7,0x26,0xd0,0x12,0x87,0x78,0x25,0x6d,0xc9,0x66,0xcd,0x3d,0x03,0x13,0x1e,0x71, - 0x25,0xa3,0x6a,0x86,0x74,0xb7,0x96,0xfe,0x03,0xea,0x6a,0xa2,0x0e,0xb3,0x8b,0x93,0x2d,0x1f,0xc4,0xce, - 0xb8,0x5b,0x13,0x75,0x2d,0x4f,0x60,0x99,0xa0,0x14,0x45,0xa9,0x33,0xa8,0xe8,0xe0,0xdf,0x19,0x22,0x7f, - 0x9d,0xa5,0x2e,0x1b,0x53,0x81,0x01,0x3a,0xcc,0xcc,0xef,0xb6,0x09,0xa8,0x31,0x00,0x65,0x35,0x28,0x1d, - 0x17,0x42,0x79,0x85,0x36,0xae,0x83,0xb8,0x7a,0xcd,0x92,0x00,0xdd,0x54,0xf6,0xa1,0xc6,0x67,0x0c,0x01, - 0x13,0xf5,0xa8,0x8c,0xca,0x10,0x46,0x90,0x12,0x06,0x08,0x14,0xf3,0x81,0x16,0xc8,0xc3,0xff,0xfc,0x7d, - 0x83,0xa7,0xc4,0x6a,0x81,0x86,0x57,0x2a,0xb2,0xc2,0x01,0x3e,0xe6,0xa8,0x40,0x95,0x21,0x18,0x3e,0x34, - 0x56,0x39,0x72,0x92,0x14,0x94,0xe6,0x8e,0x19,0xa7,0xb6,0x5a,0xb0,0x65,0x9c,0x1c,0x3f,0xb4,0xe9,0x37, - 0x50,0x87,0xa7,0xd6,0xf6,0xb1,0x15,0x3e,0x25,0xf2,0x10,0x7e,0x57,0x7c,0xbd,0x75,0x30,0x58,0xd2,0x7b, - 0xb1,0xb5,0xcf,0xc4,0x3b,0xd1,0xd9,0xb3,0x83,0x8c,0x16,0x9a,0xdf,0x01,0xaa,0x80,0xd3,0x84,0x3a,0xa3, - 0xb0,0x9e,0xa9,0xfb,0xcb,0x9e,0x44,0x95,0x67,0xad,0xa2,0x51,0x08,0x9e,0x94,0xf8,0xc2,0xa2,0x9e,0x61, - 0x15,0xb7,0xa1,0x67,0x06,0xe6,0xc9,0x9a,0xe8,0xd0,0x1a,0xb8,0x28,0x7f,0x06,0x8d,0x75,0x34,0x55,0x71, - 0x38,0x32,0xf1,0xfe,0x67,0xd2,0x5e,0xa4,0x44,0x9b,0x1b,0x06,0x8d,0x12,0x84,0x01,0xa9,0x2d,0x11,0x15, - 0x17,0x00,0x6f,0xa4,0xaf,0x56,0x0f,0x6b,0xc9,0xec,0xb6,0x9d,0x5d,0x46,0x28,0xec,0x02,0xd6,0xcc,0xf4, - 0x04,0x7f,0xc4,0x4c,0xe0,0x58,0x20,0x2d,0x69,0xfb,0x7e,0xd5,0x46,0x23,0x86,0x7b,0x7b,0xbb,0x74,0x30, - 0x77,0x08,0x7f,0x2d,0x57,0x8f,0x7e,0x0a,0x86,0xbe,0x64,0xe0,0x1b,0xfe,0xb5,0x8d,0x89,0xdd,0x0d,0x7b, - 0xc2,0x61,0x0c,0xe0,0x16,0x6a,0xdf,0x28,0x8d,0xb3,0x30,0x39,0x4d,0xd9,0xf0,0x48,0xc9,0x8a,0x6f,0xe8, - 0x1a,0x20,0xee,0x58,0x19,0x61,0x66,0x3a,0x74,0x6d,0xe3,0xb9,0x84,0x32,0x1a,0x29,0xeb,0x7a,0xb0,0x3f, - 0xb3,0xaf,0xa5,0x6b,0x29,0x5c,0xd4,0x8d,0x32,0x63,0x68,0x0e,0xb2,0x69,0xa5,0xb8,0x03,0xca,0xe5,0x05, - 0xaa,0x7e,0xa7,0xb9,0xe5,0x28,0x0b,0x12,0x4f,0x3b,0x42,0x5d,0xa3,0xb1,0x54,0xcb,0xcd,0xd9,0x91,0x8f, - 0xfa,0x1d,0x56,0xcf,0x4d,0xfc,0x1e,0xae,0x1f,0xca,0x4d,0x61,0x08,0xd3,0x6a,0xe6,0xcb,0xf0,0x19,0x69, - 0xbf,0x43,0x35,0x46,0x67,0x65,0xae,0x56,0x62,0x40,0x6a,0xd7,0xb7,0x44,0x32,0x88,0x62,0xdb,0x4b,0x3d, - 0x47,0x75,0x84,0x83,0x4e,0x57,0x78,0x15,0xd1,0x4d,0xa7,0xd0,0xf5,0x17,0xc1,0x23,0x7e,0x34,0x16,0x57, - 0x40,0x45,0xf8,0x3e,0xe3,0xf0,0xe7,0x5a,0x4e,0x5f,0x0c,0xe2,0x3c,0xcf,0x88,0x85,0x48,0xe8,0xec,0x94, - 0xc9,0xa2,0x08,0x33,0xbf,0x50,0x48,0xe8,0x06,0xda,0x1c,0xc9,0x3c,0x0e,0x4a,0x5f,0xfd,0x3a,0xcc,0xbe, - 0x51,0x4b,0x55,0x74,0x68,0xf3,0x77,0x18,0xc0,0xb6,0x9e,0x03,0x94,0x0f,0x05,0xc2,0xf7,0xfc,0x06,0x47, - 0x7c,0x21,0x6f,0x81,0x7a,0x93,0xea,0xe5,0x95,0x71,0x42,0x06,0x37,0x67,0xe6,0x29,0x62,0xa4,0x8c,0x92, - 0xec,0x34,0xaf,0x4f,0x17,0x22,0xc3,0x2e,0x3c,0xa7,0x69,0xf6,0x12,0x8e,0xf7,0xc4,0x9a,0x1e,0x6e,0xf1, - 0x72,0x28,0x7b,0xc2,0xaa,0x1a,0x3b,0x6e,0xe6,0xac,0xec,0x83,0x16,0x88,0xba,0xa8,0xc0,0x6d,0x52,0x21, - 0x8f,0xea,0x89,0x2e,0x6a,0xa6,0xd4,0xf5,0xf5,0x2a,0x0d,0x87,0x05,0x60,0x67,0x02,0xfd,0x04,0xf4,0x1f, - 0x12,0x6c,0xe2,0x49,0x63,0xed,0xb9,0x7f,0x64,0xde,0xa0,0xbd,0x78,0x54,0x2c,0x0a,0xb7,0xb6,0xe0,0xc9, - 0xfe,0x3c,0x75,0xf1,0xd4,0x94,0xda,0xdf,0xf0,0xf8,0x14,0x75,0x5a,0xe3,0xb0,0xc9,0x90,0xb1,0xba,0x03, - 0xea,0x31,0x3a,0x26,0xd4,0x77,0x12,0x85,0x1d,0x96,0x55,0xba,0xf8,0xdd,0x46,0x57,0xc0,0x7d,0x6c,0x9c, - 0xc4,0xdd,0x40,0x9d,0xb4,0x66,0xfb,0x49,0xf4,0xa5,0x9d,0xa4,0x7f,0xe8,0x28,0xcc,0xed,0xc8,0xa2,0xb5, - 0x90,0xe3,0xec,0xd6,0x20,0x55,0xcb,0xad,0x8f,0x27,0x28,0x45,0xb9,0x7f,0xf8,0x38,0x7a,0xac,0x9c,0xc9, - 0x3b,0x5d,0xc5,0x20,0xcc,0x3d,0xe7,0x6f,0x42,0xb2,0x9a,0xa8,0x09,0x4c,0x30,0xe4,0x11,0xc4,0x0a,0xc6, - 0x15,0xd7,0x96,0xe5,0xb9,0xcb,0x1e,0x4a,0xce,0xa4,0xa4,0x5e,0x24,0xe1,0x62,0xb9,0x7e,0xcb,0x64,0x35, - 0x5b,0x96,0x35,0x8f,0x71,0x3d,0x2b,0xe9,0x76,0x2b,0x3e,0xd1,0xb2,0x36,0xfb,0xd2,0x70,0x27,0x5d,0x19, - 0x6f,0x32,0xf3,0x6f,0xef,0x19,0x96,0x59,0x66,0xae,0x6e,0xd3,0x18,0x6e,0xf4,0x6e,0xba,0x85,0x4b,0xd1, - 0xad,0x82,0xa4,0x14,0x71,0xac,0xf4,0xd1,0x08,0x52,0xeb,0x9c,0x68,0x12,0x0e,0xa9,0xfa,0xe7,0x5a,0x45, - 0x7a,0x07,0x49,0xa5,0x4e,0x00,0x54,0xcf,0x1a,0xe0,0x3e,0xd4,0xfb,0x45,0x58,0x21,0x6d,0x9f,0x0e,0x63, - 0xb2,0x9f,0x44,0xa2,0x03,0x2b,0xe6,0x6d,0xda,0x96,0x4d,0xc1,0x3d,0xcd,0x89,0xbe,0xd6,0x5e,0xc3,0x28, - 0xc1,0x91,0xf8,0x61,0x56,0x70,0x58,0x7e,0x8f,0x06,0xbb,0xb1,0x4c,0x25,0xba,0xe3,0x94,0xb0,0x98,0xca, - 0x14,0x44,0x37,0x92,0x3f,0x03,0x55,0x34,0x2c,0xdd,0xce,0x30,0xb3,0x52,0x1b,0x72,0x61,0xfc,0x1d,0x44, - 0x97,0xd3,0x91,0xfc,0xa4,0x43,0x49,0x7c,0xee,0xcf,0xcb,0xf8,0xc5,0xfe,0x17,0x29,0x6a,0xaf,0x1b,0x41, - 0xa8,0x69,0x58,0x4b,0x02,0x10,0x80,0x20,0x0d,0x6d,0x68,0xd1,0x0a,0x32,0xe6,0x8e,0x91,0xe1,0xad,0x3d, - 0x63,0x9b,0x25,0xf5,0x8b,0x51,0x98,0xeb,0x1c,0x5d,0x2d,0xe3,0x9d,0x84,0xfa,0x19,0xf7,0x9c,0x3e,0xdc, - 0x6c,0x6f,0x6f,0xd7,0x0a,0xf0,0x95,0x3e,0xb9,0xb0,0x1d,0x6d,0x97,0x8d,0x80,0x78,0xc2,0x74,0xb5,0x17, - 0xaa,0xaa,0x61,0xe3,0xa0,0x2b,0xe5,0x4c,0x09,0xe7,0xf6,0xb2,0xf6,0x9c,0xda,0x88,0xb2,0x87,0x30,0x7b, - 0x26,0xb6,0x84,0xd5,0x58,0x62,0xc7,0x07,0x17,0x51,0xa0,0x79,0xd4,0x37,0xc4,0x1f,0x24,0x0e,0x10,0x04, - 0x56,0x59,0x20,0xfb,0xd4,0x69,0x86,0x1a,0x5f,0xc2,0x7f,0xf4,0x59,0x60,0xc1,0x84,0xe6,0x2c,0x4b,0x36, - 0x48,0x27,0xb2,0xb6,0xae,0xd0,0xca,0x89,0xa3,0x84,0x4d,0x0d,0x83,0xd6,0xf1,0x8f,0x39,0xd4,0x3c,0x1c, - 0x26,0xa3,0x58,0xf0,0xc0,0x6a,0x90,0x45,0x82,0xb7,0x16,0xf7,0x5d,0xf4,0xb9,0xdf,0xd5,0x27,0x25,0x02, - 0x8f,0x24,0xa1,0xfc,0xf4,0x6f,0x88,0x62,0x89,0xe8,0xb2,0xcb,0xc5,0x3e,0xa9,0x08,0x12,0xcb,0x1b,0x68, - 0x56,0x19,0x71,0x63,0x47,0x54,0xa7,0x06,0x06,0xe2,0x9a,0x4a,0x96,0x96,0xcd,0x29,0xf5,0x85,0x95,0x65, - 0x13,0x79,0xb4,0xc1,0xce,0x35,0x0e,0x11,0xa8,0x70,0x10,0x9d,0x42,0x8c,0xed,0x63,0x8e,0xe5,0x08,0xae, - 0xbc,0xbd,0x51,0xfa,0x74,0x7f,0xb4,0x1f,0xec,0x05,0xfb,0x41,0x3c,0xe2,0x32,0x97,0x09,0xaa,0x3e,0xf0, - 0x82,0x3d,0x1d,0x4e,0x15,0x7e,0xb7,0xd4,0xfb,0xd0,0x78,0x94,0xb2,0x14,0x88,0x39,0xad,0xc0,0xda,0xdb, - 0xc8,0x82,0x02,0x66,0x4d,0x39,0xec,0x77,0x93,0x4b,0xad,0xb9,0x7d,0x2f,0x6c,0xa1,0x93,0x05,0x0a,0xbe, - 0xa6,0xaa,0x84,0x9c,0x22,0x26,0xe6,0x49,0x0b,0x4c,0x12,0x4d,0xaf,0x67,0x12,0x8e,0x07,0x8f,0x0d,0x3a, - 0x5a,0x49,0xa6,0xdd,0x52,0x84,0x26,0xa6,0x86,0x7a,0x92,0x40,0x67,0x4c,0xd9,0x64,0xde,0x84,0x30,0xce, - 0x3c,0x8c,0xfc,0x33,0x01,0x6a,0xf8,0x69,0x64,0xef,0xa3,0x19,0x48,0x99,0x11,0x53,0x35,0x05,0x13,0x37, - 0x3e,0xa7,0x04,0x9c,0xc2,0x3f,0x15,0xad,0xef,0x1b,0x10,0xcc,0xeb,0x21,0x0a,0x98,0x38,0x5c,0xb2,0x83, - 0x6d,0x38,0x79,0x56,0xee,0xe0,0x4c,0x91,0x79,0xe5,0xde,0x77,0xc9,0xea,0xbe,0x10,0xf9,0x75,0xc8,0x3c, - 0x4a,0xed,0xea,0xac,0xb2,0x60,0x3c,0x11,0x08,0x62,0xaf,0x68,0xf7,0x70,0xf2,0x07,0x92,0xb0,0x56,0xed, - 0x58,0xd8,0x84,0x1f,0xb0,0x21,0x29,0xc1,0xbd,0x56,0x99,0x9a,0x2b,0x8e,0xca,0x65,0xc7,0x90,0xf0,0x14, - 0xc8,0x97,0x66,0x42,0x94,0x7a,0xa6,0x0b,0x41,0x94,0x88,0xa7,0x77,0x21,0x87,0x52,0xaf,0xf2,0xce,0x43, - 0xa5,0xcb,0xfc,0x83,0x5a,0xd1,0x66,0xfc,0x24,0xa2,0x82,0xea,0x49,0xd2,0x36,0x91,0x88,0x85,0x81,0x5d, - 0xad,0xae,0x10,0x9a,0x17,0x75,0x48,0x09,0x85,0xe5,0x34,0x4b,0x60,0x47,0x23,0x06,0x07,0x95,0x73,0x64, - 0x66,0x69,0x6c,0xb5,0x2a,0x2a,0xd6,0x56,0x54,0x26,0x6c,0xfe,0x35,0x85,0xaf,0x1f,0x3b,0xa1,0x22,0x43, - 0x27,0x55,0xdf,0x73,0xd3,0xf7,0xa4,0xd5,0xb7,0xd5,0x33,0xe0,0x5c,0xbb,0x82,0x5b,0xb3,0xee,0x53,0xa5, - 0x06,0x47,0xdc,0xf3,0x9a,0xa8,0x70,0x31,0x1d,0x49,0x8d,0x6f,0x32,0x70,0xed,0x95,0x66,0x84,0xde,0x8c, - 0xa5,0xcd,0x2e,0xa4,0xcd,0x5d,0xcd,0x47,0x5b,0x44,0x58,0xf0,0x6e,0x42,0xec,0xed,0x3a,0x69,0x56,0xd2, - 0x4d,0x95,0x14,0x65,0x4f,0x5d,0x23,0xbd,0x44,0x79,0xfa,0x01,0xe0,0x52,0x9a,0xf9,0x76,0xa0,0x72,0xcc, - 0x1e,0xa6,0xeb,0x95,0xea,0x15,0x40,0x17,0xf4,0x54,0xa7,0x52,0xc3,0x0e,0x2c,0x51,0x0a,0x24,0xca,0x49, - 0x6a,0x91,0x83,0xc8,0x34,0x81,0x0c,0x9b,0x78,0x70,0x54,0x86,0x31,0x82,0x96,0xf0,0xb9,0x61,0xf9,0x43, - 0x79,0xee,0x43,0x03,0x5d,0x80,0x92,0x1f,0x86,0xe9,0xdc,0x12,0x0d,0x70,0x83,0x2c,0x22,0xf2,0x0d,0x02, - 0x44,0x32,0xd0,0x1f,0x51,0xdb,0x22,0xfd,0x27,0xda,0x20,0x93,0x06,0x88,0x3f,0xd0,0x0d,0xd0,0x11,0xe5, - 0x06,0xf4,0xd6,0xaf,0x56,0x13,0x8e,0x2c,0xa3,0xa3,0xb6,0x24,0x66,0x2d,0xcb,0xc1,0xc9,0x55,0xa9,0x64, - 0xa8,0x3a,0x24,0x9e,0xbb,0xa4,0x9d,0xe6,0x75,0xf5,0x06,0xa5,0x0a,0x60,0xb2,0xf4,0xe9,0x00,0x6b,0x2e, - 0xaa,0x7d,0xe8,0x72,0x8b,0x86,0x67,0x2f,0xab,0x26,0x72,0x3c,0x4d,0xb1,0x19,0x17,0x04,0xbe,0xe5,0x4b, - 0x60,0x78,0x55,0xac,0x64,0x21,0x14,0xd1,0x42,0x1e,0x93,0x60,0xfa,0xac,0xce,0x6b,0x27,0x55,0x2c,0xa5, - 0x14,0x91,0xe8,0x3a,0x3a,0x40,0x6f,0xef,0x3f,0x31,0xf7,0xff,0xc4,0x7e,0x5d,0xed,0x94,0xbd,0x2a,0x6e, - 0xb6,0x12,0x8f,0xab,0x1d,0x2e,0x96,0x0b,0x90,0x25,0x3d,0x31,0xd3,0x11,0x4b,0xb5,0x5a,0x40,0x0f,0x3e, - 0xf2,0xd5,0xcd,0x2b,0x3c,0x1e,0x7e,0xa9,0x53,0xe3,0xd0,0xc6,0x39,0x46,0x0b,0x11,0xd4,0x2e,0x34,0x1d, - 0x99,0xe2,0x1d,0x8a,0x62,0x1e,0x8e,0x00,0x74,0x00,0x7b,0x5f,0xee,0x07,0xf2,0xf7,0xa1,0xfc,0x7d,0xf4, - 0xb9,0xfc,0x7d,0xf8,0x48,0xfd,0xfd,0x52,0xa5,0x7f,0x11,0x98,0x00,0x64,0x52,0xe1,0xb1,0x2a,0xa0,0x2a, - 0x3c,0x7a,0x1c,0x68,0xf5,0xe2,0x29,0x54,0xdd,0xa5,0xd4,0xc3,0x07,0xaa,0x79,0xf9,0xb3,0xbf,0xa7,0xfe, - 0xaa,0xde,0xf6,0x3f,0x57,0x09,0x9f,0x3f,0x7e,0xf0,0x77,0x55,0xe6,0x8b,0x07,0xba,0x12,0xfd,0x7a,0xa8, - 0x1b,0xbd,0x2e,0x1c,0xf3,0xf0,0xf7,0x34,0xfc,0xf2,0xef,0xc4,0xb2,0x3c,0x09,0xf7,0x1f,0x3c,0x58,0xad, - 0xe8,0xf3,0xf3,0xc7,0xfc,0xf9,0xe5,0xde,0x48,0x75,0x1e,0x50,0xe2,0xa3,0x2f,0x39,0xf1,0xf1,0xdf,0x47, - 0x8e,0x18,0x42,0x38,0x81,0xc3,0xcf,0x3e,0x1d,0x01,0x49,0xb0,0x4c,0x72,0xd7,0x29,0xb8,0x70,0x9d,0x3d, - 0x67,0xcb,0x0a,0x5e,0xbc,0x07,0x19,0x5a,0x52,0xbc,0x8e,0x5e,0x4b,0x50,0x36,0x42,0xb8,0xa5,0xff,0x8d, - 0x8e,0x56,0xd7,0xf9,0xe6,0x56,0x5f,0x76,0x3d,0x76,0xd3,0xa8,0xca,0x32,0xca,0x3c,0xfb,0xd4,0xc3,0xc3, - 0x47,0x10,0xeb,0x6c,0x6f,0x3f,0xfc,0x12,0x7f,0x47,0x78,0x6b,0x53,0x2a,0x41,0x3e,0xe5,0x83,0x15,0x0c, - 0x9c,0xcf,0x9c,0x7e,0xa9,0x03,0xa0,0x8b,0x7f,0xab,0x2b,0x8d,0x0b,0x2b,0xae,0x4c,0xfb,0xde,0x80,0xa6, - 0xc2,0x91,0x90,0x7d,0x3d,0xe5,0x29,0xcf,0xf1,0xcf,0xda,0xe5,0xcf,0xa3,0xe2,0xcd,0x75,0xaa,0x03,0xed, - 0xf9,0x1f,0xc2,0x2e,0x02,0xf5,0x45,0x5a,0xce,0xad,0x60,0x61,0xf8,0x1c,0x3c,0x47,0x64,0x9b,0xe4,0x32, - 0x26,0xe6,0xe1,0x32,0x2a,0xfd,0xd3,0x8f,0xae,0x28,0x5e,0xfc,0x54,0xb5,0x93,0xf0,0x46,0x1c,0x6b,0x1c, - 0x34,0x82,0x54,0xd6,0x7c,0x1a,0xd9,0x0c,0x60,0x3c,0xc0,0x69,0x0b,0xe5,0x0f,0xbf,0x23,0x9e,0x9c,0xe0, - 0xe7,0xe8,0x66,0x1d,0xe8,0x88,0x44,0x8c,0x13,0x6e,0x4c,0x61,0x83,0x2e,0x69,0x44,0xaf,0x54,0xba,0x54, - 0xf2,0xf4,0x75,0x87,0x40,0x8b,0x43,0x9d,0xda,0xe9,0xf4,0xa6,0x24,0x6a,0xa1,0xf4,0x2d,0xc2,0x27,0x66, - 0x63,0x02,0xfb,0x32,0x2a,0x3b,0x22,0x30,0x4a,0x48,0x53,0x34,0xca,0xbe,0x83,0x5f,0x32,0x92,0x78,0x15, - 0x17,0x45,0x74,0x86,0x3b,0xbc,0x94,0xbb,0x4f,0x5d,0x3f,0xd4,0x8d,0x78,0x9c,0x3a,0xb1,0xe6,0xe8,0x57, - 0x29,0xbf,0xa0,0x54,0xac,0x3c,0x82,0xc9,0x50,0xaf,0x91,0x84,0x4b,0x04,0x9a,0xca,0xae,0x67,0x15,0x66, - 0x1d,0x89,0x49,0x9e,0x9c,0xc6,0xc8,0x3a,0x80,0xa9,0x0f,0xeb,0x49,0x32,0xd3,0x26,0xc5,0x74,0x09,0x71, - 0x06,0xb7,0xae,0xe2,0x71,0xa8,0x25,0x14,0x59,0x38,0xef,0x40,0x9e,0x65,0xa5,0x0e,0x72,0x8f,0xdf,0x82, - 0xf4,0xda,0x29,0xb5,0xb5,0xe6,0xe7,0x53,0x1e,0x0b,0x0a,0x84,0xcd,0xb2,0x6a,0xa7,0x06,0x33,0xa2,0xcf, - 0x4e,0x89,0x91,0x91,0xc5,0x69,0x15,0x6b,0xe4,0xeb,0x5a,0x05,0x31,0x86,0xa9,0xe8,0x9f,0xce,0xd9,0x48, - 0xe1,0x17,0x08,0xe2,0x5a,0x95,0x3b,0x8b,0xb1,0xa3,0xde,0x3a,0x04,0xe4,0x77,0x42,0x40,0x0e,0x7a,0xb1, - 0x0d,0x01,0x66,0x7b,0x79,0x4f,0x8b,0x30,0xef,0xde,0x4c,0x3c,0xb0,0xbf,0xd2,0x0b,0xfb,0xdf,0xb6,0xa7, - 0xbe,0x75,0x59,0xa8,0x65,0xfb,0x90,0xf2,0x33,0x9f,0xf9,0xe0,0xdb,0x5d,0xfc,0x02,0xf2,0xfa,0xd6,0x06, - 0x74,0xaf,0x1a,0x90,0xac,0xbe,0xab,0x2d,0xf3,0x7a,0x7f,0x01,0x2e,0x46,0xae,0xb5,0x30,0x2d,0xa8,0xf8, - 0x0b,0xd3,0x05,0x6f,0x2e,0xaf,0x24,0x78,0x64,0x55,0x01,0x16,0xd4,0x88,0xea,0xdf,0x4d,0x38,0xad,0x1d, - 0x3b,0xbb,0xe0,0x5f,0x1a,0x8e,0xf6,0x03,0xf7,0xbc,0x19,0xa6,0x56,0x3b,0x82,0x93,0xa1,0xb9,0xad,0xca, - 0xb5,0x11,0x0d,0x96,0xe9,0x6d,0x3d,0x2b,0xc1,0x67,0xab,0x8d,0x0e,0x28,0xab,0x35,0xab,0xd2,0xdc,0x46, - 0x0b,0x56,0x96,0x6e,0xa1,0x06,0x18,0xdd,0xe0,0xd2,0x6c,0xa5,0x96,0x69,0x8f,0x44,0xc2,0xc6,0xad,0xd7, - 0xfe,0xb5,0xf6,0xda,0x8a,0xd4,0xca,0x9b,0x63,0x34,0x87,0xa1,0xb7,0x38,0x56,0x64,0xad,0xb7,0x1b,0xdb, - 0x93,0xad,0xd2,0x0a,0x08,0xc4,0x65,0xe2,0x9a,0x23,0x92,0xd7,0x4b,0x68,0x8a,0x0b,0x0f,0x87,0x9a,0x1e, - 0xb5,0x0b,0xac,0x7d,0x7e,0x0d,0x2f,0x54,0xe2,0x11,0x53,0x7b,0xc6,0x99,0xec,0xba,0xe5,0xc9,0xb1,0x46, - 0xda,0xf3,0xb0,0x20,0x9f,0x90,0xf0,0x19,0x88,0x22,0x5b,0x59,0x9b,0x21,0xdf,0x02,0x1c,0x89,0xa7,0xe1, - 0x66,0x22,0xd8,0xbf,0xd3,0x75,0xac,0x0a,0x0b,0x17,0xca,0x1f,0x13,0x7e,0x97,0xe8,0x79,0xcb,0x91,0xab, - 0x08,0xe0,0x73,0x21,0xa4,0x11,0xcd,0x43,0x11,0xd2,0x73,0x08,0xa8,0x97,0xc8,0xe0,0xb9,0xb1,0x41,0xe8, - 0xac,0xc1,0xae,0x2d,0xbd,0xd1,0x52,0x07,0xfd,0xdd,0x0b,0xec,0x7b,0x6b,0xe9,0x99,0x74,0xd6,0xc0,0x6e, - 0xf0,0x4c,0xb6,0x3f,0x3e,0x1c,0xa3,0x2a,0x80,0x79,0x45,0xf2,0x58,0x41,0xcd,0x79,0x08,0x9a,0xea,0xa9, - 0xe2,0x9e,0x6f,0x6f,0x3b,0xfc,0x98,0xb8,0x5e,0x57,0x22,0xfd,0xed,0xed,0xcc,0xf4,0x4c,0x4c,0xe9,0x94, - 0x5a,0x77,0x9d,0x17,0xb3,0x9e,0xcc,0xa2,0x87,0xd5,0xee,0x25,0x45,0x0f,0x4e,0x66,0x7a,0x74,0x07,0xf4, - 0x78,0xad,0x7b,0xb1,0x88,0x4c,0x8b,0x1e,0xcc,0x1f,0x7a,0xe7,0xd1,0x55,0x2c,0x15,0xa4,0x3c,0x15,0x1e, - 0x10,0x17,0xd4,0x31,0xf7,0x36,0x4e,0x07,0x5b,0x30,0x27,0x06,0x10,0xce,0x43,0x9b,0x2b,0xd2,0x75,0x03, - 0xcc,0xe1,0xf9,0x6c,0x49,0xff,0x40,0xc5,0x72,0x43,0x7b,0xc2,0xdb,0x4f,0x47,0x0e,0xcc,0xa7,0x9a,0xcb, - 0x12,0x50,0x6a,0x39,0x9c,0x43,0xf8,0x05,0x71,0xa6,0xf2,0xfa,0xef,0x27,0x7e,0x34,0x48,0x5c,0x89,0x3d, - 0x81,0xa3,0x71,0x10,0xb6,0x10,0xc5,0x84,0x7a,0xa2,0xcb,0xa5,0xe3,0x81,0x64,0x3d,0x3c,0xb0,0xe8,0xb9, - 0x04,0x76,0x83,0x8b,0x0c,0xf2,0x70,0x5b,0x4e,0x54,0xb9,0x43,0xb0,0x5a,0x83,0x6b,0x39,0xcd,0xa4,0x42, - 0x0b,0xef,0x56,0x8d,0x3e,0x62,0xfc,0x1c,0xc7,0x56,0xeb,0x33,0xf2,0xe6,0xa3,0xb4,0xdf,0x67,0xf9,0x8c, - 0x73,0xa3,0xfc,0xbf,0xe6,0x78,0x56,0xb0,0x9e,0xf5,0x59,0x3d,0xc5,0x51,0xba,0x62,0x39,0x1e,0xf3,0xd1, - 0x96,0xb0,0xa4,0xf4,0x43,0x6c,0x2c,0x54,0x3b,0xce,0x9a,0x75,0x58,0x86,0x5e,0xd6,0x0f,0x13,0xdf,0x24, - 0x8b,0x4c,0xe2,0x50,0xe8,0xee,0xcc,0x1b,0x39,0xec,0x6c,0x34,0xb8,0xa8,0x12,0x80,0x4c,0xa6,0x44,0xe9, - 0x2f,0xc5,0x29,0x9d,0x33,0xd4,0x43,0x90,0x6e,0x33,0xf1,0x88,0x1d,0xad,0x45,0x4b,0xde,0xf9,0x1f,0x3c, - 0xd6,0x11,0x8d,0x19,0x84,0x39,0xed,0x08,0x44,0x7e,0xd4,0xa5,0x17,0xe0,0x5f,0xcd,0x71,0xdc,0x39,0x93, - 0x72,0xcd,0xec,0x63,0x7d,0x55,0xc3,0xbc,0x26,0xaa,0x4e,0x2b,0xe6,0xd3,0x97,0xe0,0xd3,0x4d,0xd9,0x8a, - 0x9e,0x0e,0xb3,0x14,0xed,0x99,0x60,0x6d,0xf5,0x07,0xdb,0x86,0xeb,0xd1,0xf1,0xd2,0x0d,0x93,0xe6,0xa6, - 0x44,0x34,0xa1,0x64,0xac,0x19,0xbe,0x48,0xbd,0x4b,0x83,0xb3,0x92,0xf1,0x07,0x8a,0xa3,0x8d,0x14,0x73, - 0x2e,0x5a,0xaf,0xcc,0xb7,0xa9,0x81,0xa8,0x02,0xe9,0x11,0x53,0x3a,0x44,0xb7,0xeb,0xb2,0xfe,0xfe,0x9e, - 0x37,0xae,0x55,0xd0,0xa3,0x95,0xbf,0xa2,0x16,0x6e,0xaa,0xab,0x5a,0x44,0xe3,0x26,0xfd,0xbe,0x59,0xd4, - 0x35,0x87,0xbb,0x5b,0xf3,0xa6,0x1e,0x86,0xbb,0xff,0x72,0x8f,0xa7,0x5e,0x7f,0xd7,0xbf,0xe0,0x9f,0xd7, - 0xf8,0xf9,0x9e,0x96,0xe9,0x5d,0xb8,0xef,0x3f,0x0b,0x1f,0xf8,0xf7,0xc2,0x87,0xfe,0x1b,0xfa,0xfe,0x3a, - 0x7c,0xe4,0xbf,0x0d,0x1f,0xfb,0xcf,0xc3,0xcf,0xfd,0xdf,0xc3,0xbf,0xfb,0x2f,0xc2,0x2f,0xfc,0x97,0x60, - 0xe8,0x5f,0x1e,0xbd,0x19,0x87,0x37,0xd7,0x45,0x40,0x7f,0x7d,0x66,0x03,0x83,0xa3,0x87,0xfe,0xfb,0xb1, - 0xef,0x1c,0x39,0xc1,0xd1,0xd7,0x63,0x9f,0x2e,0xf9,0xe0,0xe8,0xf7,0xf1,0xda,0x7f,0x79,0xb4,0xaf,0x4a, - 0xee,0x53,0xee,0x80,0x72,0x1f,0x74,0x96,0x7a,0xa0,0x4a,0x3d,0xa8,0xb7,0xb7,0xa7,0xfe,0x0a,0x57,0x29, - 0x1f,0x28,0xfe,0x90,0x8a,0xdf,0x55,0xce,0xe7,0x5e,0xfd,0x77,0xba,0x5f,0xfe,0xc5,0x3d,0xe3,0x97,0xf4, - 0x4d,0xbf,0xd0,0xdc,0xd7,0xd4,0x9c,0x73,0x9f,0xb2,0xde,0xa2,0xde,0x7d,0xe7,0x7e,0x70,0xf4,0xbc,0x9a, - 0x8e,0xff,0x8c,0x7e,0x8d,0x1d,0x34,0x76,0x4f,0x2a,0xbe,0x60,0x7b,0x3e,0x64,0xc9,0x70,0xde,0xea,0xfa, - 0x48,0xa8,0x95,0x78,0xab,0x4a,0x3c,0xa7,0x12,0xdc,0x6e,0xab,0x04,0x3a,0x92,0x8d,0xf9,0x86,0x6d,0x9e, - 0x89,0x54,0xcb,0x97,0xf1,0x8a,0x6d,0x39,0x57,0x3b,0xa3,0xa3,0xe3,0xe9,0x60,0xdc,0x5f,0xdd,0x67,0x1f, - 0x58,0xf7,0x57,0x0e,0xbb,0xc5,0x72,0x3c,0x2a,0x07,0xc7,0x44,0x1b,0xd0,0x56,0x37,0xd6,0x7a,0x6d,0x61, - 0x2d,0x86,0xb2,0xb7,0x74,0xa9,0xb5,0x25,0x54,0x36,0xc6,0xb2,0x10,0x56,0x09,0xfd,0x8c,0x0e,0x79,0x96, - 0x0e,0x7b,0x17,0x21,0x94,0x0f,0x0e,0xdc,0x3c,0xdc,0xd9,0xa7,0xab,0xf1,0x0d,0xc7,0xbd,0x3b,0x07,0xb8, - 0xe0,0xcc,0x9c,0x1f,0xbd,0x1b,0xd7,0x8c,0x3b,0xf4,0x3d,0x95,0xb2,0x2e,0x8f,0x40,0x2f,0x5c,0x14,0x4a, - 0x06,0x6c,0xf5,0x8f,0xde,0x77,0xd4,0x80,0xa4,0x76,0x94,0x86,0x79,0x90,0xf6,0x89,0xf0,0xa7,0x42,0xcf, - 0x6a,0x85,0x50,0x89,0x28,0xa3,0x19,0xc1,0x3e,0xe5,0xdd,0xab,0xe5,0x41,0x23,0xf2,0xe9,0x9e,0x37,0xdb, - 0xd9,0xa1,0xe1,0x7d,0xed,0x4b,0x51,0xf3,0x16,0x89,0xd1,0x6e,0xe1,0xe9,0xc3,0x4d,0xc3,0x05,0xbb,0xcc, - 0x33,0x62,0x51,0x8c,0x1d,0xea,0x98,0x43,0x25,0x03,0x5f,0xb2,0xc3,0xf8,0x79,0xbf,0x0f,0xff,0x89,0xac, - 0x2c,0x04,0x9f,0x8b,0x73,0xbc,0x58,0x6c,0x35,0xf8,0x69,0xce,0xe8,0xef,0x33,0xb6,0x5e,0x52,0xe3,0x6f, - 0xe9,0x56,0xbe,0xcf,0x6a,0x5d,0xab,0x15,0xbe,0x9f,0x6f,0x6f,0x13,0x58,0xe0,0xdb,0xf8,0xee,0xa6,0x66, - 0x09,0x5b,0x53,0xc3,0xfd,0x52,0x8d,0x11,0x11,0x96,0x5d,0x4f,0x59,0x71,0x4d,0x21,0x16,0x03,0x9d,0x53, - 0x84,0x2f,0x8f,0x96,0x63,0x8f,0xf0,0xce,0x6a,0x55,0xb0,0x22,0xe8,0x6a,0xf5,0x02,0xb2,0xe5,0x17,0x5a, - 0x2b,0x88,0xfb,0x84,0x1d,0x8b,0xef,0x46,0xe1,0xf9,0x51,0x46,0x67,0x70,0x2c,0xef,0xb0,0x19,0x0e,0x5a, - 0x1e,0x9a,0x25,0xcd,0x47,0x65,0x90,0xcb,0xf4,0x89,0xff,0xf1,0x6a,0x0d,0x84,0xe1,0xef,0xc6,0x39,0xaa, - 0x28,0xbb,0x19,0x82,0x54,0xc3,0x48,0x08,0xff,0xc3,0x20,0xbb,0xd6,0xbe,0x0d,0x64,0x67,0x71,0x09,0x10, - 0x63,0x41,0x6e,0xe3,0x6e,0x84,0x8c,0xbc,0xac,0x1c,0xb4,0x56,0x8f,0x30,0xda,0xfb,0xb6,0x86,0x4f,0x78, - 0xac,0xe5,0x79,0xe7,0x0d,0x0a,0x03,0xe1,0xdd,0x30,0x74,0xed,0x4e,0xbb,0xd6,0x92,0x65,0xed,0x53,0x99, - 0x9a,0x11,0x92,0x56,0x2e,0xb8,0xb3,0xa1,0x76,0xbc,0x1d,0x1d,0xe5,0x47,0xc5,0xd8,0x7a,0xec,0x80,0xb2, - 0x99,0x77,0x23,0x6e,0xa8,0x94,0x6d,0x42,0x14,0x4e,0xfc,0xa2,0x42,0xa6,0x91,0x9c,0xd6,0x57,0x1b,0x4e, - 0xce,0xb0,0xe2,0xff,0xc0,0x8d,0x43,0x5b,0xd6,0xbc,0x2e,0x09,0xf1,0xb8,0x5a,0x39,0x71,0xba,0xf3,0xd3, - 0x3b,0x87,0xe5,0xb9,0x75,0x5e,0xbb,0xca,0x63,0x8b,0x24,0xc5,0xe2,0x32,0x79,0xa9,0xc2,0x98,0x5b,0x32, - 0x20,0x49,0x87,0x15,0x65,0x6a,0x89,0x78,0x38,0x75,0xa8,0x5c,0x59,0x5f,0xca,0x03,0x9f,0x7c,0xcd,0x38, - 0x9f,0xc8,0x95,0x90,0x15,0xd8,0xe4,0xf7,0x6a,0x05,0x46,0xf9,0x40,0x15,0xb9,0x4c,0x0a,0xb8,0x02,0x41, - 0xdf,0xf2,0x4b,0x04,0x9e,0xda,0xbb,0x34,0x84,0x0a,0x31,0xcb,0x16,0x6a,0xe9,0xe0,0x6a,0x43,0x8b,0xef, - 0x15,0x96,0x77,0x6b,0x4b,0x7e,0xe9,0xde,0xd5,0x44,0x59,0x1f,0xca,0x2a,0x6c,0xa7,0x4b,0x25,0x3b,0x45, - 0xf7,0xd0,0x29,0x7b,0x30,0x48,0x24,0xee,0x96,0x3a,0x10,0x89,0xbb,0xb5,0x21,0x4b,0xb5,0x5b,0x5f,0x50, - 0xbc,0xbc,0x83,0xb0,0x97,0x3c,0x7b,0x51,0xeb,0x39,0xe0,0x06,0x58,0xbe,0xf0,0xba,0x6a,0x26,0xaa,0xdc, - 0x05,0x10,0x12,0x94,0x64,0x7e,0x3f,0x68,0x40,0xbe,0xc2,0x2a,0xee,0x16,0xd4,0x19,0xd3,0xd5,0x2a,0x77, - 0x4b,0x69,0xb0,0x76,0x5c,0x24,0x9c,0xb6,0x36,0x4a,0x3f,0x81,0xd3,0xd8,0x9f,0x5f,0xb9,0xfa,0xbd,0x33, - 0xf5,0xeb,0x50,0x13,0xc0,0x7d,0xa3,0x80,0x0a,0x91,0x5d,0x0d,0x20,0x09,0x22,0xbf,0x06,0x1e,0x41,0x41, - 0x14,0x99,0xff,0x63,0x78,0x73,0x75,0x19,0xdc,0xac,0xab,0x8a,0xf4,0xbb,0x59,0x93,0x92,0xea,0x55,0x6f, - 0x2a,0x0e,0x6f,0xdd,0x1c,0x03,0xda,0x12,0x98,0xe1,0x4c,0xbd,0x6c,0xf8,0xe8,0xdc,0x01,0xca,0x58,0xeb, - 0xcb,0xe5,0x95,0xed,0x7a,0x58,0x26,0xdb,0x71,0xbc,0xce,0xb5,0x2f,0x68,0x69,0x6f,0xd8,0xf8,0x86,0xf4, - 0xa5,0x02,0x7b,0xda,0x1d,0xa2,0x21,0xb1,0x31,0x50,0x8d,0xf5,0x9b,0x65,0xcb,0xb5,0x6f,0x77,0xda,0xc9, - 0xee,0xb7,0x7d,0x21,0xd4,0x37,0xba,0x52,0x37,0xb3,0x9b,0xda,0x20,0x3b,0xa8,0x35,0xd6,0x30,0x1c,0x60, - 0x6e,0xcf,0x0e,0x61,0x92,0x5a,0xb6,0x9a,0x25,0x23,0xc0,0xf4,0xe9,0xce,0xbe,0x27,0xef,0xd3,0x13,0xc8, - 0x31,0xa1,0x20,0xe9,0x76,0x8c,0xc9,0x6f,0x0e,0xa7,0x26,0xdb,0x6a,0x9a,0x57,0x8a,0xec,0xaf,0xe6,0x12, - 0x9c,0x16,0x6f,0x70,0x8f,0x2b,0xb9,0xce,0x3d,0x34,0x5d,0x0b,0x51,0x61,0x1b,0x34,0x34,0x16,0xc3,0xb6, - 0x6f,0x38,0xef,0x74,0x8a,0xdc,0xac,0x42,0x8c,0x20,0x3b,0x41,0x6f,0x26,0xb6,0x02,0x5f,0xac,0xfd,0x9b, - 0x69,0x1c,0x2f,0x44,0x35,0xb9,0x3d,0x3b,0x25,0xc6,0xac,0x5f,0xf5,0x5b,0x15,0x6a,0xa2,0x83,0x56,0xe1, - 0xaf,0xd6,0x8d,0x13,0xeb,0x58,0x26,0x97,0xf5,0x75,0x60,0x01,0x99,0xb5,0x18,0x02,0xf8,0xd6,0x6a,0xb0, - 0x67,0x8f,0x7b,0xc4,0xfe,0xc2,0x8a,0x45,0xe7,0xb2,0x5f,0xfe,0xc6,0xf8,0xfd,0x9b,0xe4,0x92,0x48,0xf5, - 0x04,0xf2,0x76,0x99,0xc2,0x8f,0x68,0x98,0xce,0xbb,0x3d,0xe6,0xc6,0x26,0xa0,0x90,0x3e,0x9b,0x1b,0x8a, - 0x46,0x0a,0x00,0x28,0x57,0x09,0xb8,0x0b,0xf6,0x00,0xfe,0x63,0xf3,0x9e,0xb8,0xbb,0x7e,0xfd,0x71,0x41, - 0x37,0x53,0x3b,0xfc,0x77,0x37,0x62,0x3f,0x34,0xe8,0x26,0x64,0x5d,0xee,0x98,0xab,0x7e,0x74,0xaf,0xca, - 0x17,0x71,0xd9,0x71,0xfa,0xb0,0x1b,0x58,0x6f,0xfd,0x55,0x2d,0x7b,0xcc,0x9d,0xd5,0x31,0xd2,0x5d,0x9d, - 0xd6,0x4b,0x77,0xd4,0xff,0xd8,0x41,0xd4,0xab,0xe9,0xc1,0x28,0x64,0x78,0xeb,0x28,0x54,0x19,0xbb,0x78, - 0x77,0xa7,0xe6,0x5e,0xe6,0x61,0x6a,0xdc,0x7a,0x6b,0xdb,0xa6,0x54,0xbd,0x4a,0x77,0xfb,0x16,0x69,0x80, - 0xe2,0x9d,0x08,0xfb,0xd6,0xde,0x3a,0x6b,0x6c,0x6e,0xaa,0x7b,0x14,0xdd,0xb7,0x7c,0x5c,0x3f,0xf2,0x36, - 0xb8,0xdf,0xb6,0xbd,0xfa,0xf0,0xb4,0x6b,0x37,0x80,0xfd,0xb6,0x46,0x1a,0x07,0xa9,0xdd,0x56,0x0d,0xe6, - 0x6f,0x6b,0xa9,0x76,0x96,0x1a,0xed,0x40,0xb9,0x4c,0x79,0x75,0xaa,0xe9,0x1a,0x11,0x73,0x95,0x98,0x96, - 0x60,0xe0,0xad,0xe4,0xf8,0x0a,0x1a,0x94,0xd0,0x5f,0x43,0x8e,0x3c,0xc8,0x33,0x59,0x76,0x84,0xca,0xc9, - 0x18,0x86,0x1b,0x41,0xda,0xe8,0x2c,0x29,0xbe,0xb1,0x29,0xb1,0x0e,0x97,0x38,0x31,0x22,0x36,0xba,0x16, - 0xca,0x54,0x1d,0xd5,0x48,0xb8,0x66,0xab,0xdd,0x62,0xb0,0x52,0xf3,0x86,0x0a,0x27,0xb7,0xb0,0xef,0x24, - 0xac,0x48,0xaa,0x3a,0x05,0x54,0xaa,0xb8,0xbb,0x75,0xb2,0x7f,0x62,0x58,0x86,0x89,0x18,0x0c,0xb1,0x2a, - 0xa6,0x8e,0x48,0xbc,0xc5,0x0a,0x04,0x76,0x1f,0x96,0x76,0xaa,0x7e,0x24,0x45,0xa4,0x70,0xe2,0x9a,0x6a, - 0xe5,0xd6,0x9a,0x0d,0x6c,0xe9,0x89,0x4d,0x6a,0xcd,0xcd,0xc3,0x89,0xe6,0x03,0xe6,0x95,0xf5,0xf4,0x3f, - 0x02,0xc7,0x63,0x2f,0x25,0xae,0x0e,0x8c,0x05,0x87,0xe3,0x3c,0xfd,0xb9,0x9a,0x3e,0xcc,0x45,0x75,0x88, - 0x16,0x8e,0x50,0x30,0xe7,0xe4,0x60,0xde,0x58,0x47,0x54,0x6c,0xc2,0x80,0x1d,0x52,0x3a,0x4c,0x7d,0xe8, - 0x38,0x8b,0xaf,0x82,0x5d,0xf7,0x1f,0xc1,0xd1,0xf1,0xf5,0xf1,0xce,0xc9,0x6a,0x30,0xee,0x7b,0xbb,0x67, - 0x95,0xb6,0xf9,0x04,0x9a,0x0f,0x05,0xf8,0xd4,0xa2,0xf1,0xe4,0xcc,0x6b,0x25,0xea,0x1e,0xc5,0xd1,0x04, - 0xf1,0x7e,0xe6,0xca,0xba,0xdb,0x7d,0x40,0x9c,0xb3,0x7e,0x17,0xab,0xf6,0x93,0x47,0xb1,0xa4,0x51,0x38, - 0x79,0x74,0xad,0x84,0x78,0x6a,0x95,0x88,0xf0,0xac,0x12,0x85,0x1a,0x0f,0x94,0x9f,0x06,0x69,0xa5,0x06, - 0x6b,0xb0,0xf8,0xb3,0xae,0x66,0x06,0x2d,0x76,0x75,0xd4,0xfb,0x1a,0x0a,0xed,0x10,0xb9,0x89,0xa5,0x77, - 0x3c,0xed,0xb1,0x8a,0xbb,0xf2,0x61,0x38,0x0d,0xab,0x0a,0xc3,0x59,0x38,0x55,0x61,0x53,0x78,0x6c,0xd3, - 0xc6,0xf5,0x87,0xa8,0xe4,0x22,0xa2,0x9f,0x36,0x9f,0x31,0x97,0x6a,0x21,0x89,0xa1,0x73,0xf5,0x34,0xad, - 0x93,0xe7,0xa2,0xc4,0x0c,0x8a,0x46,0xa3,0xc8,0x98,0x44,0xcf,0xfd,0x99,0x17,0x44,0x15,0xeb,0x57,0xdf, - 0x2c,0xa5,0x68,0x5b,0xdf,0xae,0xba,0xe0,0xb7,0x42,0xbc,0xf5,0x15,0x35,0x81,0x58,0x2a,0x2d,0xa0,0xb0, - 0x1c,0xe5,0xca,0xc2,0x0c,0xf1,0xd2,0x1b,0x7d,0x99,0x29,0xb7,0x30,0x84,0x3e,0x60,0xf6,0x71,0xb2,0x3b, - 0x2b,0x7d,0x58,0x95,0x9a,0x72,0x46,0x02,0x4d,0x80,0x30,0xca,0xdd,0xae,0x1a,0xa9,0x0f,0xf9,0xac,0xa9, - 0xa1,0x02,0xce,0x4f,0x82,0x49,0x73,0x4c,0x2d,0x48,0xad,0x28,0x44,0xe5,0x7f,0xa8,0xa9,0x66,0xb8,0xf3, - 0x68,0x18,0xed,0xec,0xf4,0x9e,0xee,0x0d,0x3d,0xa8,0xfe,0x59,0x2a,0xa9,0x51,0xff,0x11,0xf3,0xe1,0x5b, - 0x46,0xb5,0xc6,0x51,0xcf,0x2f,0x89,0x42,0x6d,0xca,0x1d,0x42,0x06,0x4b,0xbf,0xc2,0x30,0xd3,0xa5,0x89, - 0x46,0x57,0x41,0x45,0xea,0x2b,0xae,0xb3,0xf9,0x92,0x0d,0x28,0x56,0x0b,0xee,0xb3,0x94,0x21,0xba,0x2c, - 0x36,0xc3,0xeb,0xfc,0xd3,0xe1,0x55,0xe9,0xb4,0x2c,0x2d,0x90,0xad,0x29,0x4b,0xc5,0x46,0x59,0x2a,0xb3, - 0xec,0xeb,0x5b,0xb0,0x38,0xf1,0xe1,0x65,0x33,0x57,0x7e,0xa0,0xeb,0xcb,0x5e,0xc7,0xd9,0x8d,0x67,0x83, - 0xd6,0x7a,0xef,0x43,0xff,0x97,0xd7,0xbb,0x6c,0xa8,0x00,0x43,0x2c,0xa5,0x86,0x2b,0xd0,0xea,0xd1,0x12, - 0xaa,0x91,0xe6,0x7c,0x85,0x60,0x58,0xea,0x34,0x75,0x50,0x9a,0x6c,0x94,0x6d,0xa6,0x53,0x6a,0x73,0xa1, - 0xe6,0xc5,0xd0,0x81,0xcd,0xb4,0x76,0x5c,0x7b,0xdb,0xca,0xcd,0xdb,0x06,0x3c,0xa3,0x43,0xb1,0x77,0x6d, - 0x56,0xf6,0x67,0x37,0xcb,0xa6,0xf7,0x13,0xb9,0xb3,0x6e,0xd9,0x19,0x3a,0x4d,0x74,0x2c,0xf2,0x06,0x1f, - 0xd2,0x9c,0x65,0xf5,0xd8,0x38,0x6a,0x5f,0x29,0x25,0xab,0xf7,0x59,0xab,0x6b,0x9e,0x6b,0xb9,0xf2,0xa6, - 0xa5,0x86,0x44,0x20,0x70,0x9c,0xe6,0x19,0x9c,0x74,0x2e,0xb0,0xb1,0x3a,0x12,0xf3,0xdd,0x16,0x58,0x3c, - 0x1e,0x16,0x0a,0x2c,0xa2,0xa3,0xc2,0x06,0x8b,0xa2,0xff,0xb8,0xd2,0xd8,0x1b,0x55,0x52,0xb1,0x84,0x15, - 0xaf,0xf7,0x3d,0x3f,0x73,0x15,0xce,0xb0,0xc0,0x65,0x22,0x14,0x07,0xf5,0x6d,0xe0,0x21,0xa2,0x2b,0x2f, - 0xe1,0x01,0xcb,0x3d,0xdf,0x80,0xe1,0xfa,0xa8,0x6d,0xa5,0xe5,0x23,0x48,0x26,0x5b,0xe3,0x7d,0x30,0xcc, - 0xd5,0x78,0xd9,0x3f,0x42,0x35,0xde,0xbc,0xff,0xc0,0x80,0x71,0x62,0xc6,0x35,0x51,0x03,0x4b,0x3e,0x16, - 0x8e,0xfd,0xd2,0x8c,0x5c,0x07,0x9a,0x49,0x9a,0x2b,0xdd,0x44,0xbd,0x96,0xa9,0xb4,0x58,0xa8,0xb5,0x46, - 0xfd,0x70,0x98,0xa9,0x51,0xe7,0xb0,0x31,0xaa,0x46,0x9d,0xf5,0x1f,0xea,0x27,0xb6,0x06,0x76,0xcb,0xbd, - 0x0a,0xb3,0xd5,0x01,0x94,0xa5,0x49,0x78,0xe2,0x19,0xb7,0x98,0xfc,0xc6,0xd0,0x1a,0xd4,0xa7,0x5c,0xe1, - 0x77,0x2c,0x42,0xd9,0x68,0x92,0x72,0x6b,0xba,0x53,0x1d,0x84,0xa2,0xe1,0xfd,0x2c,0x6a,0x9b,0x10,0x1c, - 0xe4,0x8f,0x8d,0xc6,0x8a,0xcd,0x8d,0xb1,0x0f,0xde,0x8e,0x56,0x9a,0x12,0x9a,0xb6,0x36,0xd7,0xc7,0x34, - 0x72,0x3e,0x58,0x96,0xc9,0x7c,0x20,0x3e,0x11,0x37,0x8e,0xb6,0x6b,0xf2,0x75,0x26,0xe1,0x8e,0xd9,0x37, - 0xd8,0x84,0x8d,0x8b,0xb0,0xb1,0xd1,0xda,0x04,0xda,0xad,0x75,0x2e,0xc6,0x9f,0x6e,0x6c,0xc3,0xa2,0x74, - 0x4f,0xa2,0xb5,0x36,0xa2,0x69,0x92,0xfc,0x61,0xfa,0xef,0x20,0x48,0x34,0xb1,0x5a,0xc2,0x23,0x36,0x01, - 0x2c,0x90,0x36,0x51,0xe9,0x85,0x07,0x79,0x27,0x8c,0x4d,0xf9,0x11,0x41,0x88,0x59,0xe4,0xc3,0x25,0x98, - 0x9d,0xd9,0xe6,0x12,0x90,0x0e,0xeb,0x82,0xbe,0x73,0x72,0x82,0x48,0x09,0xfa,0x82,0x6d,0x0b,0x70,0x8f, - 0xe6,0x06,0x7f,0xc1,0x9f,0xd3,0xad,0x05,0x59,0x4c,0xd8,0xa1,0x5d,0xe9,0x46,0x50,0x3a,0xf6,0x97,0x8a, - 0x6f,0x6e,0xc9,0xf8,0x4e,0xa6,0x2d,0x54,0xc0,0xdc,0x87,0x19,0xf8,0x86,0x66,0x45,0x61,0x51,0x5a,0xb4, - 0x9f,0x3b,0x5a,0x6b,0x5a,0x5d,0x04,0x8d,0xab,0x70,0xb3,0xc4,0xc6,0x4f,0x37,0xdf,0x8d,0xf9,0xff,0x8a, - 0xbb,0x51,0x5c,0x14,0x96,0xe6,0x6e,0xcc,0x61,0xe2,0x5f,0x5f,0x97,0x69,0x27,0x69,0xb2,0x09,0xa7,0xef, - 0x6f,0xc6,0xe9,0xfb,0x63,0x6d,0x58,0x61,0xa1,0xad,0xac,0x65,0xa6,0xa4,0xed,0x1f,0x46,0x2d,0x5d,0x7a, - 0x18,0x6a,0x8f,0x24,0xfa,0x33,0x1e,0xf9,0x61,0x58,0xc4,0x51,0x4b,0xe0,0x1d,0x82,0x5b,0xe3,0xeb,0xcc, - 0xfa,0x46,0x5c,0x52,0xfa,0xe0,0xa8,0xab,0xae,0x54,0xe4,0x80,0xab,0x62,0xbe,0x94,0xde,0x62,0xbe,0x94, - 0x8a,0xf9,0x92,0xd4,0xf1,0xfc,0x8e,0xfc,0xfd,0xb1,0xea,0x8d,0xad,0x96,0x14,0x3c,0x22,0xb8,0x3d,0x47, - 0x2e,0x6d,0x20,0x1e,0x5b,0xa2,0x70,0x07,0xda,0xa9,0xc9,0x14,0x36,0x22,0x9d,0x0d,0x0d,0xd6,0xb0,0x44, - 0xb3,0xa5,0x4e,0x84,0xf3,0xa7,0x1a,0xda,0x80,0x6c,0xba,0x86,0xbe,0x19,0xd5,0x48,0xcf,0xff,0xbf,0x22, - 0x9a,0xe6,0x6b,0xd0,0x06,0x34,0xd3,0x51,0xac,0x42,0x32,0xf6,0x02,0xde,0x89,0x62,0xd2,0x8f,0x44,0x31, - 0xb5,0x46,0xef,0x44,0x30,0x52,0xfa,0x6e,0xf4,0xd2,0x90,0xe5,0xfe,0x97,0x23,0x97,0xf4,0x6e,0xe4,0xd2, - 0xed,0x5a,0xe9,0xff,0x22,0x97,0x0e,0xe4,0x92,0x1a,0xe4,0xa2,0x34,0x41,0xc4,0x50,0x40,0x89,0x80,0x12, - 0x22,0xf8,0xac,0x85,0xf5,0x7f,0xf4,0x68,0x9d,0xa3,0xab,0x28,0x99,0x47,0xa7,0xc9,0x3c,0x41,0x7e,0x78, - 0x53,0xbf,0x2f,0x83,0x0f,0xb5,0x97,0xc0,0xe0,0x14,0x5b,0xc3,0x1a,0xbd,0xf3,0xb9,0x1d,0xb7,0x17,0xbe, - 0x18,0xce,0x43,0x82,0xc2,0x2b,0x82,0x7d,0x4a,0xda,0xde,0x56,0x00,0x77,0xae,0x53,0xb4,0x89,0xe5,0xc0, - 0xf1,0x78,0x46,0xb1,0x6e,0x46,0x42,0x32,0x75,0x8d,0xf7,0x03,0xd5,0xae,0x46,0xeb,0xdc,0x13,0xfd,0xd5, - 0x1b,0x82,0xd2,0x60,0x93,0xc0,0x15,0x45,0xe0,0xc4,0x26,0x0d,0xcf,0x37,0x34,0x99,0xd6,0x9a,0x2c,0xdb, - 0xed,0xb5,0xdf,0xc7,0xec,0x97,0x9f,0xff,0x15,0xe0,0x17,0x2b,0xbd,0x55,0x6d,0x91,0x5d,0xf1,0x53,0xc4, - 0xb6,0x10,0x17,0x6a,0xcc,0xbe,0x9a,0xb4,0x7a,0x6c,0xf3,0x2a,0xeb,0x75,0x65,0x15,0x71,0xfb,0x1c,0x27, - 0x9f,0x36,0xc9,0x16,0x83,0x93,0x74,0xb1,0x65,0x89,0x61,0x70,0x12,0x7b,0x9a,0x09,0xd8,0x32,0xe1,0xf2, - 0x1b,0xd3,0xcc,0x2c,0xf6,0x2c,0xc3,0x3c,0x8d,0x75,0x5a,0xd6,0x9a,0xa7,0x9f,0x9a,0x99,0xe6,0x9f,0x32, - 0xd3,0xf8,0xd3,0x67,0xaa,0xfc,0x25,0xd6,0xc7,0x9a,0x33,0xf3,0x54,0xfa,0x46,0xef,0x37,0x6f,0xf1,0x8e, - 0x1f,0x3f,0xaa,0xe9,0x7f,0x2f,0x8c,0x19,0x9e,0x38,0xd6,0x36,0x7b,0x53,0x0b,0xba,0x3a,0xb8,0xdd,0x8f, - 0x9d,0x47,0xc7,0xd9,0xfb,0xef,0x9d,0x47,0x7a,0xf7,0x3c,0x60,0x73,0xfd,0x3e,0x49,0xdd,0x13,0xfc,0x34, - 0xc6,0x7f,0xae,0x83,0x73,0xce,0x11,0x1a,0x26,0x2a,0xaa,0x3b,0x3b,0x0e,0x3b,0xaf,0xe2,0x8f,0xb9,0xd7, - 0xe2,0x66,0xf1,0x5a,0x69,0xed,0xd0,0x78,0x8d,0xea,0x80,0x18,0x45,0xbd,0x02,0x29,0xf4,0xae,0xcc,0xa9, - 0xf2,0x19,0x61,0xca,0x61,0x2e,0xf6,0x51,0xf9,0x40,0x45,0x13,0x07,0x66,0x54,0xb8,0x2e,0x74,0xfe,0x3e, - 0x78,0x38,0x78,0xe8,0xf8,0x5d,0xa6,0x5a,0x12,0xe9,0x79,0x7b,0x5b,0x45,0x7c,0xfe,0x19,0x31,0x68,0xaa, - 0xdf,0x83,0x65,0x11,0xbb,0xaf,0x08,0x31,0x2b,0xf5,0x21,0x63,0xed,0x72,0x13,0xa7,0xc1,0x0d,0x47,0xd5, - 0x0c,0x9c,0x77,0x65,0x94,0xe4,0x85,0xe3,0x17,0x1f,0x8a,0x32,0xbe,0x7c,0xf1,0x9c,0x52,0xf8,0x57,0xef, - 0xc5,0x73,0xc7,0x9f,0x25,0xf9,0xe5,0x75,0x94,0xc7,0x3f,0xcb,0x58,0x02,0xe7,0x1b,0x95,0xd0,0x53,0xa3, - 0x0b,0x7a,0x8e,0x3f,0xc9,0x16,0x1f,0x24,0x72,0x86,0x73,0xa0,0x7f,0xf6,0xfe,0xe7,0xff,0xd3,0x7b,0xb0, - 0xb7,0xff,0xf7,0xde,0xab,0x28,0xbf,0xe8,0x5d,0x45,0x69,0xef,0xc7,0x38,0x2d,0xae,0xb3,0xe5,0x94,0x8e, - 0xd5,0x3c,0x8b,0xe0,0x71,0x2b,0x70,0xde,0xce,0x63,0x18,0x0e,0x72,0x34,0x83,0x9e,0x4a,0xed,0xc9,0x42, - 0xa9,0x90,0xef,0x83,0xc1,0xc0,0xf1,0xf3,0xf8,0x94,0xae,0xf7,0xb7,0x71,0x2a,0xb5,0x0e,0xcf,0xe3,0x9e, - 0x8c,0x96,0xe6,0x3f,0x9f,0xf7,0x4e,0xe3,0x9e,0x94,0x88,0xa7,0x7e,0x6f,0x21,0x4d,0xe6,0xf1,0x2c,0x8f, - 0x8b,0x73,0xc6,0xe4,0xbd,0x05,0x4d,0xba,0x17,0xcd,0x88,0x94,0xa2,0xa1,0x4f,0x69,0xae,0xbc,0xf5,0x5f, - 0x71,0x14,0x8f,0xc0,0x79,0x86,0x8f,0x5a,0xda,0xbb,0xe8,0x8a,0x3b,0x92,0xbf,0x3c,0x84,0xeb,0x64,0x96, - 0xd0,0x4a,0x95,0xcb,0x22,0xb8,0x89,0x26,0xf0,0x78,0xb9,0xc8,0x92,0xb4,0x34,0xab,0xf8,0xec,0x2d,0x56, - 0x62,0x9a,0x14,0xd1,0x29,0x5d,0x42,0x81,0xf3,0x5c,0xfd,0x22,0xf2,0x83,0xdd,0x67,0x64,0x29,0xc2,0xdd, - 0x99,0xe2,0xbf,0x24,0xdf,0x24,0x1b,0x2a,0xf8,0x09,0x22,0x97,0x38,0x2f,0xa6,0x78,0x05,0x4e,0xb3,0x77, - 0xef,0x78,0x4b,0xe8,0xdf,0x1e,0x6c,0x4d,0x67,0x19,0x41,0x01,0x6d,0xd6,0x24,0x4a,0x11,0x91,0x02,0xb6, - 0x1b,0x54,0xf9,0x1d,0x7d,0xf6,0x26,0xfa,0x1b,0x3b,0x92,0xa6,0x04,0xad,0xdf,0xd0,0x6d,0x8c,0x6c,0xf9, - 0xdb,0x2b,0xb3,0x9e,0xca,0x30,0x25,0x68,0x5c,0x2f,0xb3,0x82,0x37,0x4e,0x7f,0xd3,0x3e,0x14,0x25,0x8f, - 0x4c,0x95,0x51,0xa3,0x33,0x5f,0x08,0xf6,0x51,0xa8,0xa5,0x28,0xa3,0xd3,0x43,0x03,0x46,0x94,0xe2,0xf8, - 0x6a,0x82,0x07,0x12,0x31,0xa6,0x57,0xa8,0x64,0xba,0x9b,0xdf,0x95,0xf1,0xa2,0x38,0xcc,0x97,0x28,0x1c, - 0x97,0x3d,0xbc,0x15,0x20,0x6c,0xfd,0x07,0x9a,0x53,0xce,0x86,0x02,0x05,0x0a,0x54,0x45,0xbf,0x81,0xf6, - 0x6a,0xb3,0x2c,0x7c,0xb5,0x5d,0x25,0xd3,0x25,0xa2,0x52,0xd0,0xda,0x12,0x21,0x83,0x68,0x14,0xb5,0x91, - 0x1c,0xaa,0x34,0x8c,0xe5,0x32,0xd6,0x89,0xf4,0x53,0x12,0x5e,0xe0,0x8d,0x22,0x25,0xd4,0xa3,0xa1,0x8f, - 0x96,0x15,0xf6,0x2f,0x51,0xd9,0x43,0x76,0x4f,0x37,0xd9,0x53,0x36,0x29,0xbd,0x28,0xe5,0xfe,0x51,0xa7, - 0x57,0x2d,0xdb,0x40,0x5a,0x7b,0x9d,0x71,0x88,0x63,0xe7,0x75,0xd6,0xa8,0xad,0x8e,0x6a,0xef,0x43,0x5c, - 0x4a,0xc9,0xaf,0x53,0xb5,0xd3,0xf2,0xa3,0x5e,0x5c,0x8d,0x15,0x42,0x6c,0xf6,0xa5,0x85,0xe1,0x62,0x26, - 0xfa,0x5b,0x4a,0x27,0x69,0xef,0x92,0x00,0x3e,0x29,0x62,0x1a,0xc7,0x54,0x55,0x7a,0x36,0xa5,0x36,0xe9, - 0x1f,0xf9,0x7a,0x2e,0x01,0x85,0x1c,0xf9,0xab,0x9b,0xe5,0x4e,0x1a,0x03,0x50,0x15,0xbe,0x49,0xde,0xc7, - 0x53,0xe9,0x8e,0x7f,0x72,0x4f,0x92,0xf5,0x6e,0x99,0xe6,0x09,0x6f,0x81,0xfc,0x30,0xa9,0x05,0x56,0x4f, - 0xfe,0xea,0x45,0xbe,0x54,0x6b,0x2c,0x63,0x4c,0x97,0x65,0xac,0x86,0xf7,0x8a,0x46,0x1a,0x7d,0x08,0x1c, - 0xf9,0xab,0x8a,0x2f,0xe3,0x82,0x13,0xd5,0x0f,0x49,0xfd,0x25,0x9e,0xa6,0x2a,0xdd,0xfc,0x54,0xe5,0xcf, - 0x97,0xb9,0xaa,0xa0,0x7e,0xa9,0xb1,0xe7,0x09,0xa7,0xca,0x5f,0x35,0x3c,0x82,0xb7,0x9c,0x53,0xf5,0x2f, - 0x33,0x6c,0x49,0x5d,0xca,0x38,0x2e,0x33,0x59,0x67,0x86,0x8e,0x57,0xfc,0xa1,0x13,0xad,0x3d,0x95,0x84, - 0x0d,0xbb,0x2a,0x99,0xcd,0x7d,0x6d,0x54,0x69,0x14,0x7b,0xbe,0x04,0xe9,0x7d,0x58,0xed,0x0a,0xed,0x1d, - 0xae,0x15,0xba,0x08,0x7a,0x08,0x2e,0xd4,0x4b,0x66,0xbd,0xa8,0x06,0x1b,0xb0,0xa5,0x89,0xe6,0x79,0x1c, - 0x4d,0x3f,0xf4,0x22,0x31,0x3f,0xd7,0x83,0xff,0x54,0x70,0xd1,0xd5,0x36,0x80,0x83,0x64,0x57,0xf0,0x24, - 0xdf,0x4d,0x88,0x92,0xd4,0xb7,0x09,0x61,0xce,0x6f,0xdf,0xbe,0x78,0xd3,0x5b,0x50,0x37,0xae,0x0c,0xac, - 0x77,0x4e,0xa8,0xdf,0x33,0x15,0xe5,0xc6,0x04,0x8a,0x7d,0x77,0x1d,0xc7,0x0b,0x3a,0x48,0xc9,0x65,0x64, - 0x2f,0xb4,0x29,0xf1,0xda,0xfa,0x1d,0xcd,0xb1,0xf2,0x69,0x4c,0x8d,0x6a,0x9c,0xd0,0xc3,0xd9,0x04,0xd2, - 0x8f,0x2e,0xe5,0xdc,0xb4,0xfb,0x38,0xcc,0x16,0xcf,0x11,0x53,0xcb,0xa1,0x1f,0x3d,0x44,0xd7,0x6a,0x95, - 0xf8,0x2a,0x23,0xd4,0x7e,0xf9,0xd3,0x22,0x70,0xe4,0x57,0x6f,0xb9,0x70,0xd6,0x16,0x1e,0xb4,0x51,0x48, - 0x85,0x0d,0x2b,0x84,0x56,0x21,0x48,0x7e,0xf1,0x8b,0x4b,0xde,0x5c,0xfb,0x2e,0xd0,0x10,0x20,0x69,0x3d, - 0x4e,0xac,0x95,0xf8,0x8e,0x4b,0x3d,0x9b,0xcf,0xb3,0xeb,0x42,0xb0,0x9e,0xf2,0x29,0x60,0xe1,0x95,0xde, - 0x2c,0xa7,0xb1,0x7d,0xc8,0x96,0x39,0x01,0xdb,0x55,0x32,0x89,0x81,0xb6,0xf9,0x16,0x93,0x8b,0x5a,0x79, - 0x44,0xe2,0xea,0xb5,0x9b,0xb2,0xb7,0x58,0xe6,0x8b,0xac,0x88,0x8b,0x41,0x0f,0x17,0xa4,0x2a,0x5d,0x2f, - 0x02,0x50,0x12,0x16,0x8d,0x5a,0xa0,0xef,0xf3,0xb2,0x5c,0x04,0xbb,0xbb,0xfb,0x5f,0x3e,0x18,0xec,0x7f, - 0xfe,0xc5,0x60,0x7f,0xf0,0x68,0xb7,0x77,0x7d,0x4e,0x50,0x48,0xfd,0xf7,0x70,0xcb,0x1b,0xa4,0x8f,0x51, - 0x24,0x25,0x35,0xcd,0x4c,0x46,0xd9,0xcb,0x66,0x04,0xa7,0x45,0xaf,0xc8,0xe0,0x63,0xa6,0xe8,0xa9,0x3b, - 0x0e,0x83,0x8b,0xd1,0x8b,0xee,0x16,0x37,0x32,0x65,0x53,0x05,0x4a,0x64,0x5f,0x09,0xf1,0x04,0xa9,0x80, - 0xcd,0x28,0xfd,0x40,0x37,0xff,0x87,0x41,0xef,0x57,0xea,0x0c,0x17,0x58,0x34,0xa7,0xcf,0xa2,0x67,0x38, - 0xb0,0x9e,0xd0,0x4a,0x3d,0x08,0x09,0x30,0xda,0xd3,0x0f,0x3d,0x28,0x4b,0x82,0x46,0x00,0x34,0xd8,0xcb, - 0xdc,0x53,0x21,0xb9,0x96,0x69,0x99,0xcc,0x39,0xf7,0xe5,0xd7,0xcf,0x7b,0x73,0x50,0x22,0x05,0x6d,0x34, - 0x21,0x6b,0xfb,0x16,0xd6,0x1b,0x65,0x8f,0xba,0x56,0x42,0x36,0x4a,0x6d,0x79,0xd7,0xea,0xd3,0x6a,0xf0, - 0x16,0x11,0xa0,0xf5,0x70,0x97,0xf7,0x72,0xf6,0x18,0x36,0xe8,0xa9,0x3b,0x85,0x03,0xc1,0xf1,0x38,0x70, - 0x73,0x13,0x55,0x12,0x15,0x44,0xfc,0xe4,0x53,0x9a,0xf4,0x94,0xc8,0xda,0x9c,0x72,0x9a,0xdb,0x77,0x1a, - 0x13,0x58,0x60,0xa0,0x45,0x32,0x95,0x0b,0xdf,0xf1,0x75,0x35,0xba,0xab,0xd4,0x2f,0xba,0x98,0xcf,0x27, - 0x04,0xc3,0x3f,0x51,0x27,0xcf,0xbf,0x3b,0x78,0x2b,0xdf,0x0a,0xb0,0x96,0x04,0xd6,0x70,0xd5,0x85,0xcb, - 0x91,0x96,0xbd,0x48,0xce,0xd2,0x02,0xd7,0xd7,0x8b,0xb7,0x3d,0x15,0x53,0xbe,0x1b,0x98,0x64,0x0b,0x88, - 0x3c,0x3f,0xa5,0x65,0xc1,0xa6,0xd0,0x82,0x52,0xc1,0x0b,0x1c,0x5a,0xd9,0x08,0xac,0xec,0x1c,0xf5,0x01, - 0x18,0x30,0x69,0x22,0x30,0xa1,0x43,0x49,0x5f,0xf7,0x09,0x4a,0xa6,0x19,0xc8,0x24,0xa2,0x5c,0x16,0xaa, - 0x1b,0x22,0x5f,0x4c,0x97,0x34,0xa3,0xe5,0x29,0xdd,0x9d,0x97,0x51,0x71,0x01,0xf4,0x8b,0xdf,0x3d,0x7c, - 0x38,0xfe,0x19,0x61,0xbd,0x6b,0x20,0xe5,0x6f,0xe5,0x87,0xe3,0x9f,0x13,0xed,0x21,0xf6,0xa5,0xdf,0xa9, - 0x5f,0x55,0xda,0xdb,0xca,0x1f,0x32,0xb0,0x91,0x98,0x94,0x52,0x4b,0x13,0xd3,0xd3,0x5a,0x11,0xb1,0x35, - 0xba,0x84,0x53,0x88,0x92,0x2a,0x17,0x16,0x29,0xd0,0x83,0x4a,0xe7,0x79,0x9e,0xa5,0x44,0x75,0xf1,0xea, - 0xbb,0xaf,0x0f,0xdf,0x12,0x56,0x21,0x64,0x56,0xa8,0x62,0xdf,0x11,0xa9,0xc8,0x94,0x2e,0xa5,0x65,0x08, - 0xac,0x79,0x19,0x2d,0x74,0xde,0xb7,0x59,0x76,0x46,0x50,0xf0,0x8a,0x52,0x7a,0xcf,0xde,0xbe,0xa8,0xe8, - 0x64,0x95,0x6f,0xa8,0x64,0xe1,0x0f,0x88,0xdc,0x8a,0xe6,0xc9,0x69,0xce,0xd2,0x10,0xc1,0x26,0xfa,0xdb, - 0xca,0xd2,0xf4,0xa8,0xc9,0xd3,0x04,0x91,0x29,0x21,0xdb,0xfc,0x13,0x9b,0x71,0xc7,0x1a,0xe4,0x19,0x6e, - 0x14,0x6d,0x27,0x67,0x8e,0x73,0x45,0xd2,0x42,0xe7,0x54,0x5a,0xf1,0x19,0xf2,0xa8,0x54,0x34,0xfd,0x1d, - 0x06,0x98,0xdc,0x00,0x53,0xea,0x29,0xb6,0x15,0x8e,0x63,0xa2,0xc9,0xb9,0x45,0x5e,0x71,0x35,0x5e,0xb6, - 0x77,0xf0,0xba,0x4b,0x4b,0x4e,0x2b,0xd4,0x63,0x0f,0xbc,0x39,0x27,0x33,0x1d,0x75,0x05,0x6c,0xfd,0xa3, - 0xa2,0xb5,0x13,0x95,0xd2,0x73,0x2b,0x22,0xc0,0xe3,0xb2,0x2f,0x23,0x1a,0x37,0xfd,0x93,0x94,0x4c,0xff, - 0x23,0x05,0xf4,0xf5,0xcb,0x2c,0x3d,0xb3,0x92,0x88,0x3b,0x96,0xeb,0xe2,0x5b,0x82,0x90,0xb9,0x2a,0xdd, - 0xdb,0x25,0x82,0x54,0x15,0x13,0xdc,0x38,0x57,0xe5,0x6a,0x95,0xde,0xc5,0x51,0x3e,0x39,0x07,0xb5,0x88, - 0xbf,0xbc,0x91,0x84,0x01,0x88,0x2a,0xa7,0xeb,0x95,0xd1,0xc4,0x5b,0x46,0x13,0x42,0x8e,0x32,0x72,0xe0, - 0x7b,0xab,0x4f,0x9c,0xd5,0x95,0xa7,0x8b,0xbf,0x3b,0x7c,0x26,0x84,0x2c,0x20,0xe2,0x15,0x50,0xd9,0x2d, - 0xe5,0x9f,0xbd,0xd5,0x1b,0xa6,0xb0,0x49,0xad,0x23,0xb5,0x39,0xf6,0xe5,0x48,0xdb,0x24,0x35,0xdf,0xfe, - 0xf2,0xea,0x79,0x4e,0x29,0xf9,0xbb,0xe7,0xd4,0xdf,0xdb,0x83,0x67,0x5f,0x7e,0xfe,0xc5,0xe3,0x1e,0xa5, - 0xf6,0xa6,0x9c,0xdc,0xa3,0x74,0xa9,0x09,0xa5,0xe6,0x66,0x9d,0x83,0x97,0xdd,0x75,0x0e,0x5e,0x4a,0x9d, - 0x09,0x3c,0xb0,0xa2,0xd2,0xf5,0xe5,0x33,0x7d,0x1a,0x3b,0xca,0xbf,0xf8,0x9f,0xff,0xef,0x41,0x75,0x44, - 0xa9,0xf0,0x37,0xa0,0x77,0xe3,0x74,0xf2,0xa1,0xb3,0xf8,0x4c,0xe7,0xca,0x39,0x20,0xa0,0xff,0x21,0xfe, - 0xd0,0x3a,0x08,0x84,0x32,0x6a,0x05,0xce,0x19,0x60,0x7f,0x8c,0xc5,0xfb,0xe0,0x14,0x78,0x7f,0xd6,0x5b, - 0x16,0x8c,0xc1,0x6d,0xf2,0x77,0xd0,0x23,0xa0,0x9e,0xf2,0x9d,0x36,0xcf,0xb2,0x0b,0xe4,0x2f,0x17,0x0c, - 0xa3,0x2a,0xf2,0x24,0x17,0xff,0x83,0xa8,0x82,0x01,0xa1,0x5b,0x22,0x0b,0x08,0x15,0x5e,0xf4,0x10,0x0a, - 0x8f,0x4e,0x26,0x30,0x9c,0xea,0xdb,0xc7,0xba,0xf7,0xd4,0xa0,0x2e,0x99,0x0f,0x85,0x14,0xb9,0xa4,0x33, - 0x27,0xf8,0x9a,0x67,0x51,0xd0,0x3d,0xf6,0x23,0xf1,0xdd,0x05,0x70,0xb4,0x5c,0xc3,0x34,0xbd,0x58,0x37, - 0x02,0x6a,0x43,0x5d,0x8c,0xda,0x71,0x1f,0xdd,0xc4,0x74,0xca,0x16,0x18,0xe9,0x19,0x37,0x0e,0x5e,0x7f, - 0x97,0x8f,0x54,0xa4,0xa9,0xb7,0xa4,0xbc,0x4f,0x57,0x4d,0x21,0x37,0x33,0x86,0xae,0x17,0x65,0x40,0x78, - 0x89,0x65,0xd6,0xc1,0x0d,0x58,0x5c,0xc3,0x4a,0x1f,0xc0,0xa7,0x23,0x5f,0x8a,0x48,0xa6,0xd3,0x23,0x42, - 0x77,0xc0,0x5e,0x74,0x8a,0x79,0x95,0x86,0xcf,0x15,0x96,0xb9,0x22,0x41,0x5a,0x95,0x2d,0xfa,0x81,0x88, - 0xf2,0x12,0xee,0xac,0xa5,0x8e,0xa0,0xbf,0x56,0x79,0xc5,0x3e,0xd7,0xcb,0x5a,0x54,0x69,0xd1,0xaa,0x51, - 0x23,0x49,0xeb,0xf5,0x5e,0xd9,0x64,0x65,0xbb,0x66,0x9d,0x20,0xb6,0xea,0x32,0xc7,0xdd,0x3d,0xa9,0x02, - 0xf6,0xe1,0x9d,0x93,0xe2,0x4a,0xed,0x59,0x71,0x85,0xd6,0xac,0x04,0xfd,0xe2,0x82,0x56,0xbc,0xbb,0x55, - 0x23,0x8f,0x69,0x44,0xb4,0xaf,0x72,0x7f,0x6b,0x3e,0x75,0xb9,0xc0,0x98,0x35,0xfe,0xa6,0xb3,0x8d,0x8d, - 0xeb,0x71,0x14,0xc5,0x9e,0xe4,0x01,0x38,0x35,0xba,0xd7,0x3d,0x30,0xbf,0x6a,0x37,0xce,0xa3,0xe4,0xe7, - 0x15,0xa0,0x51,0xf1,0x0c,0x85,0x9b,0x90,0xb1,0x53,0x85,0xe8,0xec,0x95,0xca,0x2e,0x00,0xf3,0x1a,0xb9, - 0xd1,0xe4,0xe9,0xb6,0x4f,0xd2,0x88,0x19,0x29,0x6e,0x6e,0xd3,0xf6,0xf0,0xd4,0x37,0x6c,0x0f,0x57,0xdc, - 0xbc,0x3f,0x5c,0x75,0xe3,0xfe,0x30,0xfc,0x34,0x67,0x26,0xe0,0xa6,0x6e,0xa4,0xfa,0xd6,0xc8,0x5a,0x1c, - 0x54,0x79,0xed,0x1d,0xed,0xaa,0xb7,0xf6,0xad,0x64,0x23,0x21,0xb1,0x9a,0xa1,0x83,0xfe,0x47,0x04,0xd2, - 0x07,0x84,0xa0,0x46,0xba,0x5f,0xd1,0x6f,0x88,0x31,0x96,0xc0,0x30,0xaf,0xeb,0x97,0x1d,0xdd,0x0c,0xf1, - 0xfb,0x52,0x97,0x7c,0xcd,0xc6,0xdf,0x35,0x91,0x8f,0x16,0x9d,0x54,0xc2,0x06,0x56,0x17,0x26,0xb2,0x65, - 0x93,0x50,0x82,0x63,0x6d,0xd3,0x42,0xbc,0x22,0x14,0xbb,0x4b,0x44,0xc7,0x7b,0xb5,0xa7,0xbd,0x05,0x96, - 0x8c,0xaf,0x4a,0x3a,0xfb,0x07,0x4b,0xba,0x1e,0xe5,0x86,0x9e,0x67,0x67,0x51,0x4e,0x08,0xea,0x32,0x99, - 0x00,0x89,0x5d,0x09,0x5e,0xa8,0x04,0x19,0x6e,0x6e,0x61,0x45,0x64,0xd1,0x1d,0x53,0x70,0x20,0xd5,0x74, - 0x6e,0x16,0x81,0x38,0xba,0x45,0x4b,0x32,0xf7,0x71,0xa2,0xb9,0xf8,0xaf,0x49,0xe6,0xbe,0x26,0x26,0x20, - 0x3b,0x8b,0xd3,0xd3,0x79,0x72,0xd1,0x3b,0x8b,0x89,0x4a,0x24,0x4a,0xfe,0x34,0xfe,0x23,0x39,0xeb,0x5d, - 0xf2,0xed,0x3c,0xa5,0x02,0x57,0x2c,0x75,0x32,0x44,0x6c,0xdc,0x25,0xac,0xfb,0x8e,0x4a,0x17,0x6a,0xd8, - 0x20,0x60,0x89,0x75,0x58,0xa4,0x49,0xbc,0xbc,0xa6,0xbf,0xb4,0xa2,0x1c,0xd4,0x0a,0x23,0xc6,0xa0,0x89, - 0x92,0x8c,0xff,0x88,0x21,0xae,0x23,0xc0,0xef,0xa5,0x34,0x94,0x38,0x6d,0xec,0xdc,0x61,0x16,0x83,0x28, - 0x6e,0xa4,0x6b,0x81,0xdd,0x57,0x66,0x80,0xd9,0xa2,0x98,0x47,0x51,0xfa,0xa7,0x64,0x77,0x3f,0x25,0x25, - 0x8d,0x6c,0x72,0x1e,0x5d,0xc4,0xf3,0x8f,0x17,0xe0,0xd5,0x6b,0x29,0x29,0xde,0x3b,0x1a,0xc4,0x02,0x2e, - 0x6b,0xa6,0x4d,0x59,0x5e,0x42,0x83,0x3c,0x8b,0xaf,0x88,0x31,0xc7,0x5c,0xba,0xe4,0x79,0xd1,0x8c,0x8e, - 0x63,0x96,0xb6,0xc5,0x79,0x3f,0x50,0xe6,0x59,0x8c,0xf5,0x8f,0x73,0x15,0xbb,0x82,0x20,0xf2,0x02,0xed, - 0x34,0xc5,0x7a,0x3f,0x57,0x25,0xa8,0xf0,0x3c,0xcb,0x51,0xa8,0x2e,0xda,0x7b,0x8d,0x91,0xa0,0x25,0x19, - 0xca,0xc7,0x08,0xf7,0xbe,0x5b,0x26,0xd3,0xe4,0x2c,0xde,0x20,0xdc,0x23,0xfe,0x16,0xa8,0x28,0x06,0x84, - 0x60,0x3f,0xe7,0x33,0xf0,0x84,0x0a,0xf0,0xe3,0xa4,0x6c,0x49,0xf8,0x0e,0xa5,0xac,0xa6,0x3d,0xe3,0x78, - 0xce,0x7e,0x7e,0x62,0x6a,0x27,0xfd,0x34,0x19,0xdf,0xef,0xd3,0xa6,0x8c,0xef,0x25,0xc3,0x42,0x8f,0x10, - 0x53,0xef,0x2a,0xc3,0xc5,0x4c,0x65,0x2a,0x71,0x4e,0x1c,0x57,0xb2,0xbd,0xab,0xda,0x52,0xc5,0x70,0xda, - 0x98,0x14,0x2d,0x29,0xdf,0x99,0xac,0x7c,0xbd,0x99,0xb3,0xd8,0xd0,0xde,0x71,0x3e,0x6d,0x88,0xfb,0x0e, - 0x6b,0x45,0x69,0x62,0x02,0x22,0x71,0x7a,0xbb,0xcc,0x2f,0x96,0x3e,0xea,0x32,0x1c,0x5d,0x89,0x65,0x34, - 0x74,0x14,0xae,0xb2,0xf8,0x4c,0xa7,0x69,0x39,0x0d,0x6d,0xf9,0x35,0xd5,0x8c,0xf3,0xaa,0x87,0xba,0xbc, - 0x07,0xf2,0xa6,0x78,0xd6,0x92,0xfe,0xfd,0x1c,0x15,0xa5,0x74,0xda,0x90,0xfe,0xfd,0x06,0x22,0x68,0x71, - 0x91,0x5d,0x16,0x65,0x5d,0x02,0xc8,0x19,0x50,0x5e,0x3f,0x8b,0xa0,0x0a,0x6d,0x0b,0x02,0xf5,0xc8,0xc1, - 0x03,0xa4,0x0d,0x41,0x20,0x1d,0xcb,0x69,0x74,0xd6,0x90,0x04,0x3e,0xa7,0x85,0x31,0xa9,0xb6,0x24,0x30, - 0x8b,0xad,0x8c,0x4a,0x10,0xf8,0x9c,0x3b,0x36,0x19,0x5a,0x12,0xf8,0x73,0x4e,0x5d,0xeb,0xc4,0x4a,0x14, - 0xf8,0x1b,0xdd,0x4b,0x55,0x61,0x2d,0x0a,0xfc,0x2d,0x93,0x81,0xd4,0x44,0x81,0x5f,0xc5,0xd7,0xf1,0x19, - 0xab,0x76,0x37,0x85,0x81,0x6a,0xeb,0x4f,0x55,0x81,0xcd,0xdb,0xdf,0x90,0x0b,0x7e,0xd5,0xaa,0x50,0x03, - 0x82,0xbb,0xc4,0x83,0x6f,0x88,0x30,0xb0,0x2a,0xd0,0xa5,0x44,0x70,0x8b,0xbb,0xa9,0xd7,0x04,0x44,0xa6, - 0x45,0xe3,0x19,0x81,0xed,0x5d,0x12,0xc2,0x8d,0xc0,0xd5,0x2d,0x21,0xd4,0x10,0x63,0x09,0x08,0x2d,0xe0, - 0xab,0x8b,0x09,0x6b,0xe0,0xb7,0x51,0x56,0x48,0xa3,0x3c,0x27,0x42,0xba,0x4b,0x56,0xf8,0x4c,0xa4,0x84, - 0xf1,0x9d,0x42,0xc2,0x6f,0x31,0x7f,0x08,0x09,0x0d,0xb6,0x39,0x8b,0xe7,0xc9,0xef,0x17,0x98,0x5a,0xd2, - 0xd1,0xb4,0x11,0x11,0x7e,0x95,0x41,0xd0,0x9a,0x46,0x51,0x4e,0x9b,0x99,0xc6,0xd6,0xc4,0xbb,0x84,0x85, - 0x52,0x42,0x15,0x47,0xcd,0x8d,0x52,0xc3,0x0a,0xd9,0x1a,0x4c,0x69,0xe1,0x5f,0xfb,0xa2,0x6c,0xc8,0x0d, - 0x9f,0xd9,0x92,0xac,0x1a,0x70,0xb4,0x84,0x87,0x74,0x7a,0x2e,0x88,0x3d,0x81,0x08,0x25,0x93,0xe9,0xf6, - 0x88,0x25,0xc6,0x4a,0x88,0x24,0xb1,0xa2,0x9a,0x63,0x5c,0xcf,0xd1,0x8c,0xf3,0xe8,0xaa,0x8c,0xf2,0x88, - 0x70,0x20,0xcf,0x82,0x2f,0x59,0x90,0x16,0x46,0x9a,0x15,0xcb,0xfd,0x81,0xa6,0xa6,0xb1,0x95,0x6a,0xe0, - 0x1a,0x71,0x45,0x7a,0xcf,0xeb,0xb5,0x92,0x02,0x45,0x68,0x05,0x23,0xde,0xed,0xde,0x55,0x12,0x75,0x0a, - 0x14,0x29,0x9f,0x7a,0xfe,0xdd,0x1e,0xd9,0x79,0x7c,0x8a,0xdb,0xef,0x12,0x93,0x19,0xf4,0xde,0xc9,0x7c, - 0x65,0x5c,0x90,0xf9,0x11,0xa9,0x9d,0x60,0xac,0x3c,0x4f,0x7b,0x0c,0x7e,0x2f,0x02,0x1d,0xf6,0x47,0xa2, - 0xae,0x16,0xb9,0x46,0x4f,0x89,0x8a,0x4f,0xe6,0xc9,0xd9,0x14,0x08,0xbb,0xf7,0x7d,0xdc,0xbb,0x20,0xa2, - 0xd0,0x6e,0x2d,0x6b,0x1c,0xa1,0x29,0x6e,0x02,0xdc,0x0a,0x86,0x69,0x97,0xa5,0xbf,0x48,0x29,0x91,0xe6, - 0x34,0xcd,0x97,0x17,0x58,0x8e,0x32,0x2b,0x31,0xf4,0xa9,0x48,0x13,0x23,0x5c,0xbb,0xb4,0x88,0x4d,0x61, - 0xa2,0xb5,0xc7,0xa0,0x3c,0x98,0x9d,0x50,0xd7,0x71,0x4b,0xa4,0xa8,0xca,0xb6,0xb7,0x00,0x8d,0xd3,0x12, - 0xc5,0x74,0xad,0x36,0x24,0x8a,0x3f,0x2f,0xe7,0xbd,0xf3,0x84,0x29,0x01,0x3a,0xe2,0x58,0x11,0x26,0x20, - 0xa8,0xd8,0x75,0x34,0x39,0x2f,0xaf,0xc1,0x27,0xd0,0xec,0x7c,0xa4,0x58,0x78,0x88,0x5f,0x13,0xca,0x25, - 0x2f,0x6b,0x8f,0xc0,0x36,0xc7,0x85,0xcd,0xcb,0x51,0x6c,0x14,0x32,0xfe,0x62,0x1a,0xd4,0x62,0xc6,0x6f, - 0xe3,0xd3,0x7c,0x49,0x14,0xe0,0x26,0x51,0x23,0xad,0x29,0x03,0x18,0x8b,0xfb,0xf2,0x18,0xf2,0xc5,0x98, - 0x8e,0xff,0x1f,0x80,0xb9,0x28,0x6d,0x4d,0x93,0xb8,0x77,0x02,0x40,0xaa,0x94,0xfc,0x9e,0x32,0xec,0x5e, - 0x27,0x73,0x4c,0xdb,0xda,0x2b,0x54,0x83,0x1d,0x07,0x4d,0x88,0xfe,0xf9,0x23,0xf9,0x1d,0xf9,0xd7,0x31, - 0x4d,0xfb,0x1a,0xb0,0x4b,0x1f,0x97,0x71,0xac,0x28,0xd1,0x53,0xb8,0x6d,0x6b,0x8b,0x1d,0xf3,0x78,0xb3, - 0xd0,0x11,0xc2,0xab,0xbb,0xc5,0x8e,0xd1,0xe5,0x06,0xb1,0xe3,0x3b,0x90,0x72,0x34,0x8e,0xa9,0x16,0x3c, - 0xa2,0xaf,0x8d,0x62,0xc7,0xa6,0xdc,0xf1,0xf7,0x69,0x5d,0xee,0x18,0xdf,0x26,0x76,0x8c,0x60,0xd0,0x42, - 0xe7,0x80,0xe0,0x8a,0x11,0xd4,0x9f,0x90,0x3e,0x9e,0x26,0xbf,0x5f,0xc7,0xb9,0x10,0x86,0x0d,0x01,0xe4, - 0x0f,0x9a,0xbd,0xea,0x92,0x40,0x4a,0x26,0x80,0x48,0x10,0x6b,0x4b,0x04,0xa9,0xc1,0x82,0x61,0x92,0x80, - 0x9c,0x16,0x25,0x96,0xd3,0x43,0x18,0x04,0x20,0x4a,0x29,0x25,0xdd,0x50,0xa5,0xa6,0xec,0x7a,0x22,0xcd, - 0x04,0x45,0xc7,0x80,0x2a,0x88,0xe6,0x3c,0xc6,0xaa,0x9e,0xc7,0xc9,0x94,0x59,0x89,0x78,0x7e,0xa1,0x50, - 0x39,0x43,0x41,0x19,0xf7,0x34,0xa9,0xff,0x31,0x52,0xc8,0x9f,0x85,0x87,0xe8,0x92,0x42,0xa6,0x96,0x14, - 0xf2,0x2b,0x9a,0xd7,0xb4,0x8c,0xcf,0x08,0x1d,0x4e,0x2d,0x49,0x24,0x94,0x48,0xec,0x44,0xc3,0xa2,0xdb, - 0xe5,0x21,0x8b,0xac,0x0a,0x12,0xc0,0x9e,0x47,0x40,0x27,0x34,0xed,0xd3,0xa8,0x20,0x74,0x88,0x49,0x08, - 0x03,0x1f,0x77,0x0a,0x27,0x7f,0xcb,0x62,0xde,0x8c,0x3f,0x2f,0x9c,0xb4,0x64,0x15,0x77,0x08,0x25,0x6b, - 0x2d,0xdb,0xc8,0x8f,0xb7,0xc9,0xbe,0x88,0x89,0x45,0x39,0xfb,0xef,0x10,0x4c,0x5e,0xcc,0xb3,0xff,0xbd, - 0xe4,0x92,0xcf,0x70,0x97,0xe4,0xcc,0xc9,0xd2,0x49,0xa1,0xfb,0x48,0x80,0xfa,0x8a,0x11,0x57,0x9d,0xc4, - 0x27,0xc4,0xc5,0xbc,0xab,0x2a,0x53,0x6a,0x00,0x56,0x8c,0x10,0xca,0x42,0x3a,0x29,0x17,0xe2,0x02,0x50, - 0x41,0x35,0xe8,0xe8,0x95,0x7c,0xf7,0xfc,0x21,0xb8,0xdb,0x08,0x29,0x2f,0x81,0xc9,0xd4,0x10,0xa9,0x38, - 0x97,0x9b,0x52,0xaf,0x10,0x48,0x5e,0xa0,0x5d,0x25,0xa6,0x2c,0xb4,0x9c,0x52,0x10,0x3a,0x28,0x1c,0x1c, - 0x59,0x33,0x25,0x40,0xde,0xc7,0x49,0x2a,0x81,0x8f,0x59,0x0a,0xad,0xae,0x10,0xe6,0x85,0xf4,0x84,0x71, - 0x6b,0x4d,0xef,0x96,0x57,0x82,0xed,0x54,0x9c,0xbc,0x91,0x55,0xaa,0x1b,0x58,0x9d,0x84,0xb6,0x98,0x12, - 0x75,0x2c,0xc6,0x4a,0xb1,0x75,0x8c,0xd2,0x3a,0x6a,0x6a,0xb1,0x9e,0xd5,0xd3,0x5d,0x55,0xea,0x42,0x31, - 0x54,0xac,0x51,0xc4,0x77,0xd4,0x6e,0x4a,0xc6,0x50,0xbf,0x49,0xdf,0xdf,0xd6,0x46,0x4b,0x82,0xf9,0x11, - 0xf3,0x65,0xb9,0x44,0x43,0x8e,0x79,0xd7,0x84,0x55,0x9d,0xb6,0x38,0x13,0x15,0x6d,0x9c,0x50,0x1f,0x5e, - 0x53,0x98,0xf9,0x0d,0x4b,0x95,0x41,0x9d,0xa7,0x45,0x75,0x39,0x30,0xc0,0x6f,0x90,0x68,0xf2,0x82,0xe2, - 0xfe,0xbe,0x65,0x54,0x4d,0xa1,0xe6,0x0f,0x15,0x16,0xb4,0xa4,0x98,0xa9,0xa6,0xd5,0x16,0xd6,0xd2,0xfd, - 0x89,0xdd,0xb3,0x97,0xef,0x4f,0x6f,0x9f,0x6a,0xc4,0x12,0x70,0xa2,0xea,0x85,0xb9,0x13,0x6f,0xdb,0xf3, - 0x0e,0x29,0xe7,0x47,0x54,0x96,0x1e,0xbb,0x45,0x9d,0xd5,0x5d,0xdc,0x29,0xe9,0x3c,0x8c,0xf3,0xe5,0x99, - 0x11,0x75,0x3e,0xb3,0x6f,0xd6,0xba,0xa0,0xf3,0xe7,0x6c,0x7e,0x06,0x79,0x62,0x43,0x64,0x46,0xc9,0x65, - 0x96,0x89,0x28,0xad,0x5b,0xda,0x19,0x27,0x0a,0x23,0x58,0xcc,0x54,0x97,0xc8,0x13,0x14,0x18,0xb0,0xe5, - 0x42,0x53,0x06,0xb6,0xd0,0x53,0xd3,0x04,0x4a,0xf0,0x79,0x09,0xda,0x30,0x56,0xa2,0x4f,0x6e,0xdc,0x12, - 0x01,0xd1,0xdd,0x53,0xe1,0x5e,0xce,0xd4,0xd2,0xcf,0x75,0x15,0x7b,0x89,0x65,0x83,0xcf,0x16,0x0b,0xd7, - 0xbb,0x81,0x2e,0x63,0xa5,0x5d,0xe9,0x50,0xc3,0x10,0xfe,0xde,0xe8,0x18,0x62,0xc1,0xfd,0x27,0xd3,0xe4, - 0xaa,0x37,0x99,0x13,0xb9,0x10,0xaa,0xdc,0x5e,0xa0,0x3e,0x6f,0x7a,0x9c,0x40,0x7c,0xac,0x88,0x6c,0xfd, - 0x9e,0x91,0xd9,0x99,0x5f,0xbd,0xb5,0xd3,0xfb,0x07,0x21,0x54,0x28,0x8e,0x84,0xce,0x39,0x91,0x33,0xf3, - 0x98,0xae,0x09,0xb0,0x8b,0x94,0x31,0x99,0x27,0x93,0x0b,0x9d,0x7c,0x80,0x0f,0xa7,0x47,0x94,0x1e,0x7b, - 0x6e,0x08,0x9d,0x3d,0xe7,0x69,0xad,0xf7,0x2c,0x2d,0xf3,0x6c,0x5e,0x4f,0xe4,0xc0,0x5f,0x94,0xb4,0x4b, - 0x69,0xfa,0x5f,0x2b,0x7b,0x1e,0x9d,0xc6,0x54,0xe3,0xe6,0xa6,0xc7,0x10,0xd1,0x5b,0xaf,0xed,0x92,0xf7, - 0x8d,0x5f,0x65,0x06,0x17,0xe5,0x31,0x59,0x9c,0x99,0x8a,0x7f,0xd3,0xaf,0x32,0x42,0xfd,0x51,0x6a,0xfc, - 0x2c,0x6f,0xed,0xaf,0x2b,0xc1,0xe4,0xc6,0x22,0x70,0xdb,0xc5,0xca,0xa6,0xc1,0x8d,0x35,0xb5,0x96,0xb7, - 0x6b,0xdd,0x10,0x5c,0x37,0xe2,0x9b,0x3b,0x0e,0xb7,0xaa,0xdf,0x62,0x2e,0x70,0x8f,0x6e,0x05,0xda,0x9a, - 0x24,0x5d,0xe0,0xad,0xbc,0xca,0x85,0x07,0x9f,0xda,0x82,0xd6,0x02,0x08,0x3e,0x7c,0x00,0xbf,0x6b,0xb4, - 0xf2,0x08,0xaf,0xa0,0x5d,0x02,0x5a,0xa3,0x81,0xfe,0x36,0x62,0xb5,0x82,0x97,0xd1,0xc6,0xd3,0x4a,0x87, - 0xbb,0x01,0x13,0x04,0x4b,0x49,0xb6,0x11,0x26,0x24,0x77,0x23,0x4c,0xf4,0xc2,0xb0,0x97,0x4c,0xff,0x8f, - 0x82,0x0c,0x89,0xc9,0x35,0x95,0xbf,0xff,0xc5,0xc0,0xc0,0x3f,0x69,0xfd,0xfe,0x37,0x01,0x04,0xc2,0x2c, - 0x2d,0x40,0xa8,0xad,0x2a,0x63,0x16,0x5a,0x74,0xb8,0x23,0xd7,0x69,0x3c,0x46,0x5e,0x69,0xfe,0x35,0xe0, - 0x32,0xbc,0xde,0x28,0x55,0xaf,0x3e,0x4f,0x88,0x9c,0xc3,0x76,0x46,0x89,0xec,0x1e,0x4f,0x96,0x23,0xbf, - 0x84,0xaa,0x7f,0x70,0x1e,0x80,0x00,0xe0,0xcd,0xd0,0x79,0xb4,0xf7,0xe5,0x23,0xa7,0x5e,0xdd,0xe9,0x5d, - 0xed,0x40,0x2e,0x30,0x57,0x56,0x6c,0x6a,0x04,0x03,0x3d,0xb6,0x0d,0x00,0x41,0xf8,0xfd,0x8e,0x81,0x53, - 0x89,0xbf,0x3a,0xec,0xfd,0x6a,0xd8,0x8f,0x3f,0x72,0xd8,0x32,0x2e,0x7b,0xd0,0x35,0x08,0x3d,0x52,0xc3, - 0x1c,0xfb,0x1c,0x7f,0x32,0x9e,0xb6,0x20,0x4b,0x07,0x6b,0x0a,0x6f,0x78,0x05,0x82,0x0a,0x70,0x64,0x49, - 0x38,0xc8,0xbb,0x95,0x48,0x9f,0x70,0x47,0x0f,0x17,0x36,0x81,0x72,0x16,0xad,0x20,0x37,0xaf,0x01,0x96, - 0xaa,0xbe,0x15,0xd6,0x7a,0x91,0xc4,0x91,0xfa,0xfb,0x94,0x9b,0xe3,0xb8,0x17,0xf4,0x37,0x54,0xa9,0xfd, - 0xfd,0x2e,0x80,0x46,0xd4,0x74,0x2e,0xd6,0x6c,0x91,0x5b,0xe0,0x3f,0x4f,0x54,0x03,0xdc,0x20,0xff,0x0a, - 0x39,0x7d,0x67,0x53,0x83,0x7e,0xc7,0xd8,0xf4,0x28,0xfc,0x56,0x2f,0xd2,0x18,0x61,0x78,0xe5,0xcd,0x6e, - 0xad,0xb4,0xfb,0x63,0xb6,0x11,0x54,0xd1,0xa9,0x2a,0x37,0x8f,0xd1,0x55,0x72,0x16,0x95,0x59,0x3e,0x98, - 0xd3,0x0e,0x2f,0xa3,0xb3,0xb8,0xe9,0x73,0xd1,0x61,0xf1,0x82,0xf6,0xe0,0x68,0x3c,0x5e,0x79,0x43,0xd5, - 0x9c,0x7b,0x13,0x13,0x7b,0xfd,0x37,0xa2,0x29,0x1c,0x1f,0x56,0x0a,0x41,0xec,0xb3,0x47,0xc4,0x9b,0x94, - 0xc8,0xaf,0x59,0xa2,0xc8,0x3e,0xc6,0x33,0xfa,0xf9,0x70,0x6b,0xcf,0x2f,0xe4,0x49,0x6e,0x6b,0x5f,0xfd, - 0x12,0x3a,0x8b,0x3e,0x55,0x99,0x17,0x44,0x21,0x4f,0x30,0xae,0xc0,0x59,0x69,0x4a,0xf5,0x6d,0x9e,0x9d, - 0x31,0x63,0x68,0x6a,0xd9,0x64,0x16,0x25,0x0a,0x0f,0x73,0x18,0x9d,0x22,0x5c,0xa0,0xbc,0x3d,0x69,0x3b, - 0x84,0x9b,0xea,0x95,0x54,0xf5,0xc0,0x6f,0x7f,0x3a,0xdb,0x4e,0x5c,0xd7,0x5f,0x04,0x17,0xc1,0x4d,0xac, - 0x24,0xdd,0xd4,0x45,0xb2,0x08,0x9c,0xbd,0x01,0xff,0x57,0x3d,0xfd,0xd5,0x4a,0xa8,0xe7,0xb1,0xbd,0x7a, - 0xd1,0xb5,0xa2,0x83,0xa9,0x0f,0x43,0x0a,0x23,0x60,0x73,0xf5,0x78,0x05,0x09,0xbc,0xdd,0x4e,0x59,0x17, - 0xce,0x8b,0x03,0x09,0x5d,0x1c,0x6e,0x70,0x45,0x26,0x5d,0xab,0x13,0x6f,0x7a,0x26,0xd8,0xd0,0x1e,0x1d, - 0xd4,0xe8,0x43,0xbb,0xe9,0xba,0x04,0xdb,0x48,0xbf,0xb8,0x9c,0x2d,0x99,0xc6,0x3e,0x96,0x66,0x2e,0x2c, - 0x34,0xe4,0x32,0x46,0x64,0x28,0x9d,0x40,0x54,0xb8,0xc5,0xeb,0xc1,0xdf,0x96,0xe8,0x8d,0xbf,0xb5,0xbc, - 0x8d,0x7d,0x64,0x19,0x59,0x59,0x25,0xd3,0x11,0xbf,0x24,0x96,0x2c,0xe7,0xb1,0x4f,0x88,0x5b,0x41,0x14, - 0xc1,0x90,0x74,0x49,0x54,0x35,0x31,0xa4,0xf1,0xf4,0xd9,0x5b,0x95,0x13,0x4f,0x21,0x12,0x91,0x31,0x2f, - 0x14,0xb1,0x2b,0x45,0xaf,0x2f,0x21,0xc0,0x30,0xbf,0x0f,0x5e,0xaa,0xae,0x2d,0xd1,0x83,0xce,0xac,0xa4, - 0x0b,0x9c,0x62,0xcb,0x10,0x68,0xfb,0x35,0xbd,0x8c,0xd9,0xd5,0x69,0x67,0x2c,0x0c,0x32,0xe0,0xab,0xda, - 0x70,0x3e,0x90,0xc4,0xa9,0xf7,0x34,0xce,0xc9,0x63,0x68,0xb1,0x5d,0xc5,0x26,0xc1,0xa6,0xfe,0x65,0x48, - 0xe2,0x5d,0x7b,0xda,0xb4,0x83,0x52,0x6e,0x80,0xcb,0x81,0x7d,0xc6,0xd0,0x8c,0x0a,0xb6,0x69,0xe2,0xd1, - 0xf2,0xcd,0x8f,0xf0,0x13,0xae,0xc3,0x3f,0x1d,0xed,0x28,0x58,0x59,0x01,0xe9,0xc1,0xc1,0x7f,0xd7,0xb9, - 0x76,0xd1,0xb5,0x4f,0x67,0x9b,0x43,0x9b,0x9b,0xf3,0x64,0x02,0x9b,0xe7,0xe5,0xcb,0xc6,0xf9,0x84,0x5b, - 0x8f,0x41,0x93,0xf3,0xe4,0x44,0x45,0x0c,0xf0,0xaa,0xb0,0x87,0x52,0x58,0x5f,0x22,0x46,0xb9,0x75,0xe2, - 0x65,0xcc,0x56,0xaa,0x75,0xa2,0x75,0xde,0xb0,0x61,0x20,0xc8,0x6e,0x50,0xf6,0x86,0xd9,0x93,0xfd,0x47, - 0x8f,0xe8,0x4f,0x3f,0xdc,0x7f,0xec,0x29,0xdf,0xf4,0x99,0x38,0x27,0xcb,0xc2,0x9d,0x07,0xc8,0x7a,0x12, - 0x3e,0x30,0x25,0x12,0x53,0xa2,0x1c,0x54,0xdb,0x10,0xe6,0xd4,0x73,0x6d,0x1f,0xc2,0x84,0x52,0x2c,0xc1, - 0x86,0xeb,0x0d,0xca,0xf3,0x38,0xb5,0x7d,0x8c,0x4a,0x7e,0xc5,0xd7,0x6f,0x2c,0x22,0xfc,0xfb,0xc6,0x6c, - 0x9b,0xbd,0xdd,0x58,0xa8,0xce,0xc4,0x6e,0xee,0x0a,0xab,0xd9,0x99,0x5b,0x94,0xd9,0xa2,0x73,0xd3,0x14, - 0xca,0xa3,0x15,0x5e,0x7b,0xd6,0x7f,0x15,0xa5,0x57,0x9c,0x67,0xd7,0xaf,0x6d,0x24,0xde,0x19,0xf0,0x12, - 0x80,0x98,0xd6,0x00,0x31,0xbc,0x51,0xb7,0x04,0x5d,0x05,0x22,0x29,0x2a,0xd7,0xbe,0xf8,0x35,0x4f,0xdb, - 0x10,0xbb,0xbd,0x3d,0x21,0x6a,0x33,0xc7,0xef,0x6c,0x89,0x28,0xe9,0xad,0x12,0x08,0x77,0xde,0x06,0xf4, - 0x22,0x2e,0x75,0x1d,0x6b,0xbe,0x8d,0x91,0x08,0xee,0xd8,0x70,0x4c,0xd6,0xfe,0xe3,0xf8,0x21,0xc8,0x4e, - 0xa2,0x5c,0xba,0xe7,0xa9,0x88,0x8f,0x8e,0x26,0x79,0x36,0xad,0x4c,0x35,0x21,0xb7,0x36,0xa3,0xee,0x52, - 0xea,0x56,0xef,0x1e,0x99,0xa1,0x85,0x09,0xd9,0xb0,0x8a,0x59,0x23,0x74,0x8d,0x16,0xe7,0x11,0x33,0x0d, - 0xe7,0xe5,0x72,0x38,0x1c,0x67,0x88,0x70,0x36,0x84,0xbf,0x88,0xd6,0x2d,0xe2,0x91,0xf3,0xdd,0xe1,0xe1, - 0xdb,0x9e,0xfe,0xec,0x21,0x38,0x74,0xcf,0xe9,0x57,0x05,0x06,0xea,0xa6,0x42,0x0a,0xcb,0x13,0x47,0x30, - 0x69,0xd1,0xb9,0x4e,0x60,0xc2,0x5f,0xc9,0x48,0x9b,0xd0,0x80,0xd8,0x36,0x6e,0xe9,0xf5,0x9d,0xe3,0xf4, - 0x38,0x75,0xfa,0xb9,0xcf,0xa1,0x91,0x6c,0x91,0xe0,0xad,0xc6,0x9b,0xd1,0xfb,0x24,0x63,0x7f,0xaf,0xae, - 0xb3,0x1b,0x2d,0x92,0x5d,0x75,0x13,0x3b,0x4d,0x10,0xee,0x0a,0x09,0x5d,0xaa,0xb0,0x35,0x34,0x04,0x6d, - 0x05,0x29,0x49,0x04,0xbf,0x03,0x15,0xa8,0x6b,0x50,0x5f,0xc0,0x01,0xb8,0x2e,0x38,0xd1,0x65,0x80,0xb4, - 0x0f,0xb8,0xe3,0xa9,0x61,0x5b,0x82,0xba,0x4f,0x1a,0x79,0x75,0x57,0x7e,0xea,0xe0,0xab,0x9a,0x7f,0x66, - 0xfc,0x96,0x15,0x8a,0x9e,0x82,0x12,0x18,0x7e,0xd2,0xf0,0x95,0x0a,0xe9,0x27,0x0e,0x5d,0x6a,0xfd,0x99, - 0x61,0x2b,0x8d,0x7b,0x3d,0xe4,0x9a,0x8c,0xef,0x93,0x06,0xae,0x29,0x96,0x5d,0x36,0x49,0xeb,0x18,0x3f, - 0x5c,0x6d,0x76,0x4f,0x41,0x23,0x2f,0x43,0x3b,0x49,0xf2,0x40,0x7d,0xae,0x56,0x6d,0x7a,0x49,0x95,0xa8, - 0xa7,0xae,0x56,0x7b,0x35,0xc2,0xa9,0xed,0x4b,0xd4,0x54,0x93,0x42,0x9e,0x57,0x5d,0x66,0x7b,0xc3,0xfc, - 0x49,0x23,0x5b,0x3b,0xb8,0xce,0x75,0x9c,0xe4,0x24,0x6c,0x94,0x38,0xca,0xc7,0x84,0x6d,0x4d,0x79,0x89, - 0x62,0x53,0x69,0xea,0x07,0xc9,0xa0,0xfa,0xb0,0x46,0x77,0x08,0xbe,0x3e,0x19,0x58,0x5f,0xc8,0xd4,0xb3, - 0x4f,0x6a,0x13,0x37,0xb7,0x63,0xbd,0xc2,0xd3,0xbd,0xd1,0x1e,0x52,0xd4,0xb4,0xed,0x4b,0xb3,0x55,0xd0, - 0x14,0x23,0x42,0xe8,0x52,0x14,0x7b,0xdc,0xfd,0xed,0x84,0xa6,0xf2,0xa1,0x78,0x33,0xfb,0x25,0x8e,0x2f, - 0xbc,0xa7,0x34,0x36,0xa5,0xdd,0xe3,0x3e,0x68,0x65,0x5d,0x1b,0x15,0x1f,0xf7,0x51,0xbb,0x9e,0x56,0xf3, - 0x71,0xbf,0x68,0xe5,0xcd,0x44,0xd3,0xc7,0xdd,0xff,0xbc,0x95,0x55,0x68,0x7d,0x1f,0xf7,0x61,0xbb,0xc3, - 0x42,0x94,0x7e,0xdc,0xcf,0x5b,0xdd,0x21,0xb6,0x50,0xb5,0xe0,0x98,0x57,0x08,0xb7,0x0f,0x1f,0x0f,0xf0, - 0x36,0x84,0x1b,0xb0,0x6f,0xc8,0xa6,0xff,0x1c,0xe0,0x0b,0x07,0xf0,0xa9,0x47,0xd7,0xcc,0x45,0xaa,0xff, - 0x99,0x33,0x5c,0x1f,0x7d,0x85,0x7e,0x98,0xe6,0xfd,0x34,0xec,0x83,0x2a,0xbb,0x4a,0x01,0xba,0xfb,0x0c, - 0x77,0x1d,0x28,0xcf,0xb6,0xf8,0xdf,0x42,0x1c,0x2b,0xf0,0x66,0x1c,0x86,0x89,0x5d,0x82,0xee,0x0d,0x23, - 0x7d,0xb6,0xd4,0x91,0x8a,0xf4,0x91,0x2a,0xd4,0x84,0xe1,0xc9,0x87,0xa3,0x91,0xe4,0x23,0x22,0x26,0x82, - 0x62,0x8b,0x7e,0x71,0x24,0xd8,0x2d,0x38,0x20,0xac,0x85,0x99,0x22,0x6e,0xd7,0x4f,0xfa,0x61,0xb1,0xc6, - 0x9d,0x49,0xe3,0x0d,0x33,0x3f,0x1e,0xd4,0x08,0x7e,0x89,0xd3,0x3e,0x9b,0x67,0x88,0x7a,0xb5,0xab,0x03, - 0xa0,0x79,0x56,0x31,0x06,0x9a,0x75,0xeb,0x49,0xa8,0x7b,0xb1,0x62,0x45,0x0d,0x73,0x04,0x39,0xf9,0x89, - 0x59,0xca,0xe2,0x2d,0x88,0x1f,0x6b,0x5f,0x3d,0x7e,0xc5,0xa7,0xd9,0x17,0xcb,0x40,0xa7,0xd6,0x18,0xb7, - 0x5a,0x09,0x2b,0xc3,0xb0,0x73,0xb5,0x02,0x2a,0x51,0x18,0xbc,0x7a,0x0e,0xa5,0x54,0xdc,0x5e,0x2d,0x4b, - 0xa7,0x0a,0xfb,0x57,0xcb,0x42,0x0a,0xb8,0xc1,0x5a,0x62,0xb2,0xb0,0x19,0xc3,0x7a,0x2f,0x26,0xdd,0xf0, - 0x8a,0xb5,0x7c,0x95,0xb8,0x6e,0x82,0x0f,0x82,0x75,0x7e,0x24,0x50,0x37,0xb6,0x85,0x20,0xba,0x45,0x49, - 0x57,0x1b,0x41,0xf4,0xb2,0xde,0xc9,0xee,0x0b,0xd7,0xb0,0x67,0x66,0x17,0xcb,0xdb,0x76,0x51,0x1b,0x71, - 0x94,0xea,0x56,0x6d,0xf6,0x9d,0x32,0x19,0xdf,0x45,0x7e,0x39,0x35,0x6d,0x6a,0x9c,0x43,0x3d,0xdf,0xb2, - 0x73,0xbe,0x65,0x6d,0xbe,0xe6,0x26,0xee,0xe2,0x1a,0x6a,0x73,0xed,0xe4,0xfc,0x36,0xc2,0xae,0x62,0x2c, - 0x88,0x15,0x3c,0x8b,0xe9,0x48,0x9a,0x04,0x43,0xb7,0x6b,0x4e,0xde,0xee,0x52,0xc5,0x35,0xab,0xd7,0xee, - 0xf7,0xfd,0x7a,0x82,0x0a,0x73,0xbd,0x1f,0x98,0x64,0x33,0x9c,0xd0,0xd9,0x75,0xac,0x10,0x66,0xbd,0x07, - 0x9d,0x65,0x76,0x6a,0x65,0x1e,0x76,0x96,0x39,0x3e,0xae,0x15,0x7a,0xd4,0x59,0x68,0xe5,0xf8,0xcd,0x99, - 0xae,0xd7,0xfe,0x83,0xc7,0x7b,0xbc,0x5c,0x6d,0x96,0xcb,0x5e,0x2d,0x66,0x0f,0xcc,0x22,0x28,0x0f,0x51, - 0xd5,0x12,0x51,0x0b,0x84,0x20,0x35,0x37,0x0d,0x05,0x11,0x21,0xd4,0xbb,0x82,0x4f,0x54,0xa2,0x2a,0x7d, - 0x4c,0xf5,0x5d,0xae,0x3d,0x1c,0xdb,0xea,0xdc,0x8e,0x89,0x17,0xbe,0xa1,0xae,0xb0,0x04,0x6a,0x95,0x55, - 0x30,0xef,0x07,0x3a,0x68,0xb7,0x3e,0x72,0x04,0x69,0x43,0xb5,0x0d,0x6a,0x81,0xf8,0x8f,0x89,0x18,0x2e, - 0x1e,0xb8,0xf4,0x0a,0xd7,0x2b,0x63,0x0c,0x12,0x22,0x3c,0xd0,0xcf,0x0b,0x5d,0xe3,0x5c,0x77,0x2f,0xc1, - 0x61,0xfc,0xbe,0xfc,0x73,0xcb,0xd0,0xe3,0xe3,0xd2,0x2e,0x06,0x61,0xb5,0x79,0xb6,0x70,0xbc,0x4f,0x5c, - 0x9f,0x8f,0x68,0x1b,0x8a,0xfe,0xd4,0xae,0x5a,0xaf,0x8f,0xa8,0x20,0x76,0x00,0xba,0xca,0x83,0x8f,0xa9, - 0x52,0x33,0x0f,0xd0,0x35,0xf5,0xca,0xf7,0x36,0xcd,0x25,0x59,0x68,0xf8,0xfe,0x88,0x2e,0x6a,0x36,0x06, - 0xba,0x8b,0xc7,0x9f,0x50,0x33,0x11,0x9b,0x03,0x5d,0xb5,0xb9,0xfd,0x77,0xed,0x4f,0x05,0x1a,0x88,0xa5, - 0xd9,0xd2,0x74,0xb8,0xfd,0x1a,0x1d,0x59,0xb2,0x82,0xb8,0x25,0xac,0x62,0x29,0x40,0xb0,0x99,0xab,0xdb, - 0x55,0xb2,0xe4,0x4f,0x24,0xb3,0xaa,0xb9,0x7c,0x2a,0x85,0xd5,0x1c,0x60,0x17,0x86,0xbe,0x7b,0x46,0xa0, - 0x36,0x1a,0x1a,0x1e,0xdd,0xd7,0x14,0x1f,0x22,0xb5,0x52,0x36,0xea,0xdf,0x63,0xc1,0x9e,0x2d,0x78,0x27, - 0xb2,0x4a,0x28,0x2e,0x88,0xfe,0xe1,0xa5,0x0d,0xba,0xef,0x43,0x76,0x95,0x04,0xc7,0x8b,0xce,0x2c,0x81, - 0x53,0x1a,0x23,0x7c,0xa4,0xc5,0xfc,0x5a,0xc2,0xba,0x7e,0xf5,0xe1,0x05,0x67,0xcb,0x38,0xbe,0x41,0x31, - 0x8e,0x9e,0x1b,0x17,0xf0,0xcf,0xa6,0xe4,0x17,0x2c,0x02,0xa7,0x09,0x05,0x0f,0x3f,0x8f,0x1f,0xf9,0x59, - 0xfa,0x53,0x5d,0xe8,0x5f,0x0b,0xe5,0xd1,0x1c,0x18,0x93,0x5f,0x39,0x9c,0xdf,0xb8,0xfb,0x7b,0x7b,0x9f, - 0x09,0x66,0x8e,0xa7,0xbb,0x04,0x55,0x59,0x19,0x21,0x34,0xf1,0xb0,0x75,0xed,0x56,0x3a,0x2d,0x70,0x2a, - 0xff,0x5f,0x7f,0xe7,0xd6,0x37,0xa3,0xfb,0xda,0x6d,0x4c,0xcb,0x12,0x8c,0xe2,0xf7,0x9d,0x2b,0x4b,0xab, - 0x4a,0xf5,0x08,0x86,0xb1,0xfb,0x6b,0x91,0x41,0x2b,0xd1,0xeb,0x5d,0xb7,0x35,0xc2,0x87,0x77,0x48,0x6c, - 0xc1,0x11,0x4a,0xbc,0xb5,0x86,0xd0,0x56,0xa4,0x00,0x4d,0x49,0x6e,0xb7,0x50,0x4e,0x43,0xa8,0x12,0x52, - 0xd2,0x35,0xb9,0xb7,0xe7,0x79,0xeb,0x9a,0x2e,0x51,0xf7,0xf0,0x38,0x6a,0x95,0xd5,0xcb,0x5f,0xef,0xd5, - 0xaf,0xd5,0x07,0x94,0x77,0x34,0x88,0xa7,0x94,0x6e,0xf9,0xf5,0x9e,0x45,0xd2,0xb7,0xe3,0xe9,0x72,0x28, - 0x5d,0x5e,0x75,0xcd,0x76,0xa4,0xc4,0x76,0xd4,0x63,0xd6,0x36,0x38,0x87,0xb5,0x37,0xd4,0x5c,0x45,0x29, - 0x11,0x42,0xb4,0x74,0x00,0x8d,0x6f,0x6c,0x33,0xef,0x87,0x2a,0xf5,0x28,0x1d,0xcb,0x9b,0xe7,0xf0,0x16, - 0x9e,0x24,0xdf,0xad,0xb7,0xe1,0xad,0x45,0xba,0xa0,0x22,0x67,0x6e,0xec,0x46,0x49,0xcd,0x9b,0x5d,0x61, - 0xcc,0x1b,0xc4,0xfb,0x6d,0xea,0xd6,0xe6,0xf0,0xfc,0x9b,0x86,0x58,0x65,0x3f,0x7e,0x28,0x1a,0x09,0x45, - 0x90,0xfc,0x15,0x02,0xde,0xda,0xea,0xdb,0x88,0x77,0xb5,0xe9,0x90,0x78,0x37,0x15,0xd3,0x36,0x9f,0x0f, - 0x29,0x20,0xa0,0xd7,0x7c,0xc4,0xab,0x08,0x7a,0xbe,0x3a,0xa0,0x6e,0x59,0x04,0xbb,0xbb,0x78,0x28,0x52, - 0x1a,0x96,0xb4,0x06,0x05,0x6b,0x59,0x22,0x8d,0x57,0xe4,0x2c,0xce,0x20,0x8c,0xdd,0xfd,0xbd,0x60,0xbe, - 0x4d,0x22,0x44,0x04,0x37,0x5a,0x4b,0xbd,0xea,0xd2,0xbf,0x88,0xc1,0xea,0x08,0x57,0x30,0xa8,0x1e,0x9f, - 0xd6,0xad,0x95,0xda,0xcc,0x29,0x03,0x21,0xd0,0x35,0x5b,0x20,0xc0,0x4e,0x2d,0xc1,0x04,0xe9,0x36,0x92, - 0xfc,0x5a,0x36,0xdc,0x87,0xd2,0x40,0x2f,0xe3,0x32,0xff,0x60,0x06,0x34,0x34,0x83,0x99,0x47,0x25,0x7c, - 0x8a,0x46,0xa5,0x5f,0x25,0x11,0x92,0x4a,0xf1,0xef,0x47,0x4b,0x47,0xea,0x3b,0xb0,0x61,0xdf,0xda,0x2b, - 0x6e,0xf1,0x5f,0x1f,0x21,0x3d,0xe4,0x70,0x1f,0xe6,0x7a,0xb3,0xd8,0xe9,0x61,0x75,0x7a,0x8d,0x1c,0xb0, - 0x21,0xe9,0xd1,0x44,0x64,0x53,0x18,0xd8,0x2c,0x56,0xcf,0xae,0x3f,0xd3,0xea,0xb3,0xd5,0xac,0x51,0x97, - 0xf8,0xa5,0x5a,0x3c,0x01,0xff,0x90,0xdd,0x45,0xe9,0xf4,0x0d,0xcb,0x5b,0x44,0x7f,0xb9,0x25,0xfa,0xab, - 0xc9,0xfd,0x72,0x5b,0x3a,0x67,0x84,0x7e,0x79,0x35,0x39,0x4c,0x29,0x6f,0x88,0xf0,0xf2,0xda,0xb3,0x18, - 0x65,0x1b,0xb1,0xa0,0x5f,0x89,0xc7,0x02,0x37,0x1f,0x88,0x7c,0x6f,0xb4,0x1f,0xec,0x79,0x2b,0x84,0x3e, - 0x17,0xa1,0xde,0xe8,0x81,0xfa,0x36,0x92,0xbc,0xd1,0x23,0x5d,0x42,0x89,0xef,0x46,0x5f,0xa8,0x04,0x91, - 0xd9,0x8d,0xf6,0x3f,0x57,0xdf,0x5a,0x50,0x37,0x7a,0xa8,0x1b,0x11,0xe9,0xdc,0xe8,0x73,0x34,0x41,0x47, - 0xb7,0x85,0x63,0xea,0xa2,0x60,0xbf,0xfc,0xab,0x92,0x80,0x86,0xc8,0xee,0x76,0x59,0x00,0x5d,0xb4,0x74, - 0x74,0xed,0xd7,0xf6,0xe6,0xfb,0xd1,0x86,0xad,0x6f,0xed,0x60,0x5d,0x5c,0x5b,0xc9,0x67,0x09,0xc7,0x54, - 0x42,0xd9,0xc7,0x8f,0x1a,0xc2,0x57,0x23,0x62,0xdd,0xaa,0x44,0xaa,0x5b,0xb6,0x08,0x75,0xcb,0x12,0x99, - 0x6e,0x19,0x11,0xe9,0x96,0x25,0x11,0xdd,0x32,0x02,0x50,0x89,0x1d,0x38,0x65,0x6b,0xbd,0xce,0x29,0xc5, - 0xb7,0xcf,0x49,0x05,0x8f,0x8c,0x11,0x3c,0xb2,0x53,0x0b,0xf7,0xaf,0x09,0xbc,0x9a,0xa2,0x4f,0xbf,0x25, - 0xce,0xfc,0xab,0x5b,0xdf,0x12,0x6d,0xde,0x2d,0x08,0x9a,0xd6,0xe5,0xa1,0x9b,0xb7,0x5f,0x46,0x78,0x2b, - 0x00,0x58,0x5b,0xbe,0x48,0xd2,0xe0,0x81,0x3f,0x35,0xa6,0x8f,0xd6,0xce,0x6c,0xe8,0xaf,0xb5,0x37,0xcd, - 0x0e,0x6b,0xbb,0x03,0x07,0xff,0x09,0xa5,0x44,0x0c,0xee,0x9d,0x8f,0xbb,0x8e,0x33,0x2c,0xb7,0xb7,0x63, - 0x89,0x3b,0x96,0xf6,0x43,0xa7,0xef,0x68,0x6a,0xdd,0x22,0x2e,0xe2,0xdd,0xcf,0xf7,0x3c,0x3f,0x91,0xa4, - 0xe8,0xb4,0xa0,0x71,0xfc,0x8f,0xcf,0xf7,0xb4,0xc4,0x17,0x41,0xb4,0xfb,0x4e,0xe0,0xf8,0xc9,0x93,0x7d, - 0xdd,0xcc,0x9e,0xe3,0xf9,0xf4,0x37,0x51,0x92,0x25,0x5b,0x8d,0xa7,0x1b,0x3e,0x3a,0xc5,0xc6,0x9f,0xfc, - 0xdc,0x56,0x75,0x13,0xde,0x88,0x2a,0x35,0xe8,0x01,0x5a,0x75,0x51,0x9e,0x56,0x17,0x20,0x7f,0x54,0x9a, - 0xcb,0x2a,0x55,0x7f,0x6b,0xbd,0x67,0x7d,0x5b,0xf2,0xd7,0xfa,0xd3,0x5e,0xc0,0x14,0x95,0x22,0x82,0xa2, - 0x0d,0x93,0xe7,0x8d,0xb4,0x47,0x2c,0x2f,0xd6,0x22,0xa8,0xbc,0xa5,0x4a,0xa3,0x49,0x97,0x9f,0x92,0x0b, - 0x38,0xb9,0xb0,0x52,0x79,0xda,0x1b,0xfc,0x5a,0x5b,0x7d,0x0e,0xaa,0x45,0x7a,0xb2,0xbf,0x66,0x65,0xf2, - 0x5b,0x1a,0xa1,0x8b,0x76,0x2f,0x0c,0x6f,0x69,0xc3,0xd3,0xde,0xdd,0xed,0x6c,0x5e,0xed,0x27,0xfb,0xa3, - 0xee,0x8c,0x70,0x3f,0xe8,0xce,0x78,0xba,0xff,0xb9,0x56,0x03,0xed,0xa8,0xf4,0xb9,0x7a,0x5d,0xb7,0xb3, - 0x64,0xa7,0x34,0xd5,0xd3,0x5d,0xd3,0xdb,0x54,0x4b,0x1d,0x9c,0x0d,0xb5,0x38,0xc0,0x3b,0xbc,0x74,0xb8, - 0xc3,0xdb,0xbb,0x7d,0xd2,0xdd,0xc0,0x70,0x63,0xbf,0x82,0x21,0x44,0xe5,0x71,0x8f,0x75,0x1c,0xa1,0x74, - 0x49,0x3c,0xc3,0x2d,0xcb,0xdc,0xef,0xfb,0x0f,0x6e,0xdd,0x07,0x15,0x6a,0xb1,0x09,0x4a,0x00,0x15,0xab, - 0xc2,0x47,0xf2,0x8d,0x56,0x03,0x12,0xaf,0x9b,0xb9,0xc5,0x89,0x9d,0x5a,0xe3,0x20,0x9b,0x0a,0x3e,0x16, - 0x47,0xd7,0xd2,0xfd,0xb9,0x9d,0xaf,0x6b,0x0c,0xbd,0xc6,0x53,0xde,0x8d,0x51,0x44,0x83,0xa3,0x3e,0xd4, - 0xee,0xb1,0xfc,0x19,0x9e,0xb3,0x6b,0x6c,0x7e,0x47,0xdb,0x36,0xff,0xd9,0xa1,0xfa,0xb4,0x81,0x9b,0x22, - 0xa6,0x41,0x30,0x56,0xdc,0x86,0xa5,0x0a,0x71,0xd5,0x33,0x9b,0xf8,0x2b,0xee,0x00,0xb7,0xbf,0xce,0x80, - 0x59,0x73,0xb8,0xed,0xea,0xac,0xad,0x00,0xdf,0xa2,0x46,0x57,0xd7,0xe8,0xd4,0xb5,0xd5,0x75,0x0d,0x86, - 0xab,0x38,0x4e,0x2c,0x2e,0x6c,0x66,0x41,0xb7,0x34,0x54,0xf0,0x3e,0xbd,0x7e,0xf1,0x69,0xfd,0x2a,0x05, - 0x5b,0xab,0x7f,0xa3,0x7e,0x6a,0x2f,0x60,0x97,0xa6,0x5d,0xe8,0xfc,0xcd,0xe9,0xc7,0x0d,0x73,0x9f,0x4d, - 0xfd,0xb6,0xcf,0xa4,0xd5,0x3b,0xd4,0x7b,0xd7,0xff,0x1f,0xde,0x0b,0x8e,0xc6,0x3b,0x1d,0x02,0x00}; + 0x5f,0xf4,0x55,0x28,0x8c,0xb7,0x0d,0x84,0x10,0x25,0xd9,0x4e,0x26,0x21,0x0d,0x73,0x1c,0x3b,0x17,0x27, + 0xf1,0x65,0xc5,0x4a,0x32,0x89,0xc4,0xf1,0x82,0x48,0x50,0x42,0x44,0x01,0x1c,0x00,0x94,0xec,0x88,0x7c, + 0xa0,0xf3,0xef,0x79,0x84,0xfd,0x64,0xa7,0x7e,0x55,0xdd,0x8d,0x6e,0x00,0x94,0xec,0x64,0xaf,0x75,0xf6, + 0xb7,0xbf,0x3d,0xf9,0xc6,0x22,0xfa,0x7e,0xa9,0xae,0xae,0xaa,0xae,0x4b,0xb3,0x67,0x86,0x51,0xa2,0x4e, + 0x6a,0x80,0x15,0xcf,0xc2,0x3f,0x43,0xae,0x86,0x63,0xcb,0xd5,0x83,0x6e,0x0d,0x5e,0x5d,0x68,0x43,0xd9, + 0xa9,0x72,0x3b,0xe1,0x7b,0x44,0x45,0x6f,0x42,0x44,0x76,0x59,0xa6,0xf0,0x49,0xa6,0xfd,0x8c,0x69,0x05, + 0x59,0xe3,0x41,0x8c,0xfd,0x44,0x60,0x4b,0x6b,0xcf,0x61,0xde,0x84,0x68,0x2d,0x33,0x8f,0x6f,0x13,0x3d, + 0xea,0x6f,0x93,0xce,0xfe,0xbf,0x45,0xff,0xb3,0x14,0xfd,0x5f,0x76,0x63,0x8e,0x0b,0x1a,0xc2,0x3c,0xa5, + 0x46,0x27,0xe1,0x69,0xdd,0xf0,0xbf,0x4d,0xc3,0xff,0xa6,0xbd,0x79,0x5f,0x67,0x7c,0x63,0x32,0xbe,0xa1, + 0x8c,0x93,0x34,0xda,0x3b,0x3a,0xbe,0x0a,0x06,0xfd,0xe3,0xdd,0xb7,0x77,0x8e,0x27,0x93,0xbd,0xf0,0x2d, + 0xe2,0x06,0xbc,0x25,0x1e,0xe3,0x8a,0x7f,0x4c,0xbd,0xf0,0x69,0x5d,0x9b,0x2e,0x2f,0x55,0x7b,0x49,0x9b, + 0x78,0x58,0x67,0x9c,0x99,0x8c,0x33,0xca,0x38,0x4f,0x3b,0xad,0x79,0x39,0x60,0xdd,0xde,0xd0,0x1f,0xf4, + 0x83,0xbd,0x3a,0x1c,0x83,0x18,0x5b,0xee,0x8d,0xfc,0xf1,0xce,0xd1,0xbf,0xfc,0xc9,0x27,0xc7,0x41,0xb0, + 0x77,0xda,0xa1,0x94,0x26,0xf6,0x9a,0x49,0xed,0xc6,0x55,0x2a,0x42,0x99,0xc0,0xbc,0x88,0xe2,0x31,0xe2, + 0x08,0xb1,0x5b,0x55,0x30,0x9f,0x49,0x54,0xd4,0x81,0x7f,0x18,0x88,0x2a,0x78,0xa6,0xa3,0x59,0xff,0x6b, + 0x77,0x77,0x2f,0x7c,0x43,0x3f,0x8e,0xcb,0x4f,0x76,0xd2,0x0b,0xd8,0x4f,0xc7,0x59,0x75,0x67,0x2f,0x7c, + 0x92,0x76,0x69,0x3d,0xbc,0x53,0xa1,0xeb,0x09,0x50,0x12,0x89,0x39,0x08,0x18,0x35,0xfc,0x56,0x65,0x5b, + 0x6b,0xbc,0x51,0x65,0xb3,0xad,0x65,0x8d,0xf7,0xbc,0x37,0x29,0x47,0x2a,0xf2,0xcc,0x00,0x3c,0x27,0xa8, + 0xc0,0xab,0xd4,0x17,0xef,0xf4,0xee,0x63,0x79,0xe6,0xe8,0xe0,0x74,0xbd,0xf0,0xaa,0x7e,0xc1,0x61,0xb3, + 0x36,0x94,0x04,0x91,0xb2,0x12,0x09,0x9e,0xee,0x00,0x76,0x25,0x54,0x22,0x81,0xe7,0x8b,0xfc,0x0f,0xe0, + 0xe7,0x12,0x2e,0xf4,0x9a,0xbb,0x47,0x03,0xf8,0xae,0x88,0xbe,0x2b,0x6e,0xf1,0xdf,0x28,0xcd,0x1b,0x5f, + 0x7c,0x3b,0x6c,0x7f,0x8d,0x00,0x12,0xf0,0x50,0xca,0x12,0xf6,0xef,0x74,0x5c,0xbe,0x5e,0x62,0x3d,0x96, + 0x7d,0x88,0x6f,0x42,0xe5,0xf1,0xe2,0x4e,0xda,0xe1,0x56,0xf3,0x4e,0x7a,0x94,0x4d,0xfa,0xac,0x16,0x5c, + 0xb8,0xbd,0x14,0xd8,0xf1,0xaf,0x6a,0x28,0x3d,0x35,0x50,0x7a,0x4a,0x50,0xfa,0xba,0x39,0x4f,0x65,0x11, + 0x9e,0x70,0x28,0x4c,0x30,0xab,0x43,0x62,0xd7,0x77,0xf9,0xd3,0x0b,0xf9,0x8f,0x8a,0xfc,0x5c,0xa7,0xef, + 0x56,0xb9,0xca,0xb2,0x62,0x40,0x5b,0xd9,0x22,0x71,0xf5,0xc2,0x3a,0x8c,0x34,0x67,0xf2,0xa7,0x4a,0xb5, + 0xdb,0xe4,0x04,0x6e,0xb3,0x19,0x57,0xda,0xca,0x56,0x6d,0x62,0x6e,0xcf,0x52,0xf6,0x28,0x86,0x88,0xd0, + 0xbf,0xa7,0x2a,0xce,0x25,0x7b,0x8e,0xf5,0xc2,0xe7,0xf4,0x2d,0x04,0x16,0x7f,0xfe,0xd0,0xc8,0xfe,0xda, + 0xf9,0xa6,0x9b,0xc4,0x0b,0x5f,0xba,0x35,0x5e,0xd8,0x9f,0x28,0x30,0x7a,0x86,0x07,0x00,0xe3,0xad,0x41, + 0xb9,0x31,0x03,0x8f,0x6a,0x35,0x63,0x91,0x07,0xa6,0xc0,0x15,0x03,0x59,0xa3,0x98,0x8f,0x11,0x59,0x91, + 0x3a,0xad,0x71,0x5d,0x35,0x52,0xbf,0xca,0xf0,0x42,0xd9,0xee,0xd8,0x1e,0xdd,0xf6,0x7e,0xdd,0x52,0xfe, + 0x4b,0xd3,0xed,0x13,0x77,0xae,0x57,0x6e,0x22,0x77,0x2a,0x32,0x9a,0x1f,0xb1,0xca,0x63,0xd5,0x2c,0xd8, + 0x54,0x3a,0xdd,0xa6,0xdc,0xd7,0x20,0x6e,0x6f,0xcc,0x1c,0x40,0x5e,0xe4,0x4b,0x09,0x18,0x8e,0x68,0xa7, + 0x08,0x9d,0x17,0x2a,0xde,0xcd,0xbf,0x04,0x5a,0x3a,0xf1,0x4d,0xf4,0x8e,0x35,0xf1,0x28,0x81,0x1f,0xae, + 0xef,0x04,0x7b,0xe1,0xcf,0x16,0x7a,0x6a,0x05,0x78,0x10,0x2a,0xef,0x9d,0x75,0xd7,0x83,0xb6,0xab,0x58, + 0x22,0xf6,0xce,0xa1,0x2e,0xa0,0xe2,0x6a,0x45,0xd0,0xe0,0x58,0x70,0xa9,0x98,0xd8,0x49,0x48,0x1b,0xc7, + 0x23,0x55,0x1c,0xda,0x46,0x62,0x5c,0x52,0x2b,0x5b,0xca,0xfd,0xca,0xa2,0x75,0x44,0x84,0x56,0x46,0x4e, + 0x9d,0x51,0x80,0x03,0xf8,0x12,0x32,0x4f,0x25,0xaa,0x4a,0x14,0x0f,0xa0,0xaf,0x45,0x79,0xf2,0x01,0x39, + 0x30,0x0a,0xe2,0xda,0x3d,0xe0,0x8e,0xc2,0xee,0xc6,0x4c,0x0c,0x0f,0x8c,0x88,0xf0,0x83,0x0f,0xa7,0x1c, + 0x6d,0x8b,0x44,0x5b,0x87,0x27,0x19,0xc5,0x1d,0xa6,0x38,0x12,0xe5,0xba,0x23,0x47,0xbf,0x9a,0x57,0x7e, + 0x4e,0xd9,0x98,0x26,0x8f,0x32,0x8f,0xec,0x90,0xb1,0x4a,0x6f,0x49,0x62,0xb1,0x1c,0x0e,0x34,0x09,0xa0, + 0xd1,0x54,0xbf,0x9f,0x07,0x75,0x2a,0xa2,0xb0,0x10,0xd3,0x1a,0x23,0x2c,0x33,0xcb,0xf9,0x63,0xad,0x21, + 0x34,0x85,0x86,0x0a,0x1e,0x8f,0x69,0xcc,0x1b,0xb3,0xc6,0xe1,0x8e,0x84,0x4e,0x90,0x2f,0xbd,0xb8,0xb2, + 0xe4,0xe1,0xdc,0xf2,0xae,0x1d,0x9e,0x89,0x63,0x62,0xda,0xeb,0xb3,0x60,0xec,0x73,0x4b,0x90,0xbe,0x97, + 0xe3,0x77,0x2d,0xb2,0x19,0xc9,0xe1,0x59,0x30,0x6c,0xe4,0xf8,0x67,0x90,0x8e,0x2f,0x21,0x8b,0x5d,0x51, + 0x97,0x73,0x2c,0x6a,0xc5,0x8b,0x3a,0x93,0x15,0x9e,0xc2,0xd3,0x0b,0x0f,0x91,0x86,0x32,0xcc,0x7c,0xcb, + 0x27,0xb4,0xe9,0xf2,0x5d,0x93,0x44,0x16,0x7f,0xce,0x8d,0xba,0x8d,0xc2,0x35,0x31,0xde,0x55,0xda,0xf2, + 0x28,0x5c,0x8a,0xea,0x5e,0xa5,0x8d,0xa5,0x54,0x68,0x7a,0x81,0x52,0x11,0xfa,0x62,0x55,0xf5,0x93,0x4a, + 0xd8,0x59,0xac,0x33,0x35,0xd2,0x66,0x12,0xb2,0x6e,0x6d,0x50,0x80,0x72,0xd0,0x9c,0x7d,0x49,0xcd,0x44, + 0x4b,0x6e,0xc9,0xce,0x9c,0x98,0x88,0x0c,0x42,0x63,0x42,0x62,0xc7,0x2a,0x51,0x7a,0xaf,0xd7,0x5a,0xd9, + 0x8f,0xc3,0xca,0x5b,0x47,0x53,0xa4,0xcc,0xef,0x5c,0x1e,0x41,0xea,0xd0,0xde,0xd8,0xe4,0x7d,0xc2,0x01, + 0x59,0x4d,0xcb,0x2b,0x8b,0x2e,0x69,0xc5,0xd8,0x6b,0xc6,0xae,0x30,0x70,0x98,0x06,0xb1,0xcf,0x1a,0xc7, + 0x99,0x5a,0x5b,0x7e,0x72,0x82,0xbe,0x21,0x13,0x07,0x85,0x5e,0x7d,0x0c,0xc9,0xe9,0x9c,0x0b,0xb7,0xf6, + 0x4a,0xb9,0xb1,0x49,0xb4,0xc3,0x6e,0xcb,0x25,0xb6,0xf6,0x91,0x31,0xea,0x32,0x7c,0x0b,0x3a,0xcd,0x03, + 0xd5,0x51,0xab,0x4d,0x6e,0x25,0xfe,0x95,0xe5,0xf4,0x5a,0xb6,0xde,0xb5,0x60,0x3b,0x54,0x83,0xaa,0x27, + 0x59,0x04,0x3a,0x8d,0xa8,0x1c,0x1c,0x35,0x46,0x7f,0x57,0xda,0xc0,0x57,0x61,0x1a,0xda,0x8b,0x2b,0x55, + 0x8c,0xbe,0xf4,0x4f,0x29,0x1e,0x22,0x2f,0xd5,0x10,0xd5,0xb5,0xb1,0x4b,0x83,0x69,0x05,0x85,0x41,0x1b, + 0xdc,0xb8,0x13,0x0c,0x82,0x77,0x2e,0xf3,0xa2,0xd6,0x1a,0x64,0x9e,0x2c,0x74,0x3d,0x85,0x04,0xd1,0x84, + 0x50,0xbf,0xb6,0xb0,0x04,0x7e,0x61,0x2b,0x25,0xf3,0x4c,0x51,0xaa,0x76,0xb1,0x2d,0xdb,0x1a,0x0e,0xeb, + 0xc8,0x43,0x40,0xf6,0xd1,0x15,0x02,0x7c,0x66,0xec,0xd0,0x5c,0x35,0xac,0x3f,0x8d,0x8b,0xc4,0x3f,0xd7, + 0x91,0xe5,0xdc,0xdb,0xf6,0xef,0xa8,0xb6,0xbb,0x78,0x14,0xa5,0xbc,0x07,0xb1,0xcf,0xd1,0x72,0xf2,0xd0, + 0x0d,0x62,0x74,0x69,0x16,0x0e,0xd5,0x9c,0x9b,0x23,0x15,0xc0,0xc5,0x98,0xd2,0xfa,0x3e,0xc0,0x00,0x15, + 0x53,0x84,0x09,0xd5,0x8e,0xcf,0x0e,0x75,0x72,0xbd,0xf3,0x59,0x60,0x12,0x39,0x52,0x70,0x50,0x6f,0x4e, + 0x1d,0x20,0x5e,0x85,0xf8,0x61,0xff,0xff,0x4d,0xdb,0x47,0x0c,0x1c,0xef,0xd0,0xb6,0xe9,0x63,0x3d,0xf6, + 0x0b,0xf7,0x46,0xa9,0xe7,0x6a,0x6c,0x0e,0x8a,0xc9,0xa8,0x12,0xcf,0x5d,0xf4,0x87,0xa1,0x77,0xec,0x9f, + 0xe2,0x89,0xee,0x12,0xf7,0xe2,0x10,0xd1,0x8e,0xa0,0x1b,0x64,0xe3,0xb3,0x53,0xa3,0x8a,0x8c,0x2b,0x7a, + 0xbd,0xd6,0x88,0x2d,0x30,0xe1,0x8a,0xa2,0x43,0x75,0x6b,0x9b,0x50,0xb4,0x23,0xb5,0x4e,0xc1,0xd8,0xb2, + 0xa2,0xed,0x47,0xe9,0x30,0xbb,0x49,0x31,0x98,0xc8,0xa6,0xdd,0x5d,0xab,0x02,0x9e,0xc9,0x12,0xe3,0x2c, + 0xc5,0xca,0x88,0x68,0x53,0x37,0xbe,0xbe,0x89,0xe8,0x30,0x14,0x5d,0xc7,0x95,0x77,0x07,0x40,0xa7,0x14, + 0x21,0xf8,0x53,0xdf,0x90,0xa7,0x88,0x9d,0x11,0x84,0xfa,0x88,0x3a,0xe3,0x57,0x47,0x54,0xd2,0x70,0x44, + 0x39,0x26,0x99,0xf4,0x62,0x9f,0xd0,0x4a,0x85,0xed,0x45,0xb1,0x40,0x87,0xab,0x82,0xda,0x37,0x1f,0xa1, + 0x5c,0x06,0x68,0x6d,0x0f,0xd4,0x9c,0x41,0xbe,0x94,0x12,0x9d,0x8b,0x60,0x3d,0xd5,0x51,0x39,0x53,0xc6, + 0xe9,0x05,0xfe,0x65,0x9d,0x17,0xc4,0x7d,0x6d,0x79,0xbf,0x0c,0xe8,0x1c,0xa6,0x8e,0xff,0x4c,0xed,0xe3, + 0x6a,0x16,0x8c,0xdf,0xfa,0x85,0xac,0x07,0x22,0x13,0xa7,0x9d,0xbe,0x33,0xf7,0x0d,0xf3,0x47,0x54,0x99, + 0xf1,0xef,0xc9,0x40,0x5b,0xd8,0x9f,0x29,0xbb,0x18,0x8d,0x24,0x6c,0x18,0x2e,0x2c,0x2e,0x2d,0x5e,0x3d, + 0x09,0x00,0xe4,0xf3,0x15,0x93,0x37,0x41,0xda,0xa1,0xeb,0x52,0x74,0x60,0xd4,0x3a,0xd8,0x71,0xb8,0xa2, + 0xd9,0xf2,0xa1,0xaa,0xfc,0x15,0xaf,0xe2,0x22,0x5a,0xd5,0x4b,0xba,0x88,0x16,0xc6,0x59,0x00,0x25,0x2c, + 0xb0,0x66,0x42,0xe0,0xce,0xa2,0xa2,0x26,0x25,0x96,0x96,0x2d,0xa9,0x1c,0x22,0xb4,0x35,0xc7,0x19,0x65, + 0xd8,0x5f,0xd0,0xc6,0x2e,0x68,0x63,0x85,0x93,0xaa,0x37,0x76,0x11,0xe8,0xb4,0xa3,0xc5,0x44,0xda,0xee, + 0x18,0x80,0x94,0x30,0xdd,0x6f,0x12,0x3f,0x95,0x2b,0x64,0x5c,0xf9,0x33,0x2e,0xb5,0x0c,0xc6,0x33,0xda, + 0xc0,0xa5,0x45,0xcd,0x69,0x3f,0xb2,0x65,0x7d,0x03,0x4c,0x43,0x9a,0x2e,0xd1,0x40,0xfb,0xe1,0x8c,0xfe, + 0xbf,0x8c,0x6a,0x57,0x2d,0xe1,0x65,0x04,0x09,0x40,0x78,0x4a,0x7f,0x96,0x93,0xf0,0xc4,0xa8,0x6e,0x53, + 0xd6,0xdb,0x28,0x45,0xd6,0x15,0xfd,0x39,0x99,0x84,0x4f,0xa3,0x9d,0x72,0x34,0x7f,0x84,0xae,0x66,0x8f, + 0xa2,0x13,0xba,0x9b,0xfc,0xcb,0x60,0x8c,0xea,0xfd,0xfe,0x7c,0x32,0x4c,0x7c,0x3a,0xc3,0x68,0x65,0x77, + 0x77,0x39,0x19,0xfe,0x42,0x99,0xe1,0x5b,0x3a,0xd4,0xef,0xf1,0x17,0xc4,0x99,0x2e,0xc8,0xad,0xf6,0xfb, + 0xb3,0x49,0x80,0x42,0xa7,0xe1,0x15,0x17,0xa2,0xbf,0x28,0xa4,0xeb,0x73,0x9f,0xbb,0xbb,0x27,0x52,0xe8, + 0x52,0x15,0xba,0x94,0x42,0x4f,0x5b,0x74,0x40,0x16,0x5e,0xaa,0x7b,0xd7,0x12,0xc5,0xf9,0xa7,0x82,0x42, + 0xea,0x9e,0x9d,0x46,0x4f,0xd5,0xf0,0x4e,0x65,0x78,0x5d,0x8d,0x72,0x03,0xd2,0xb4,0x35,0xb4,0x7a,0xfc, + 0x7e,0x22,0xce,0x2e,0xa6,0xd1,0x4f,0x09,0xed,0xcf,0x3c,0x5c,0xc2,0x54,0xde,0x07,0x41,0xff,0x96,0x63, + 0x98,0x8e,0xa7,0x47,0xfc,0x63,0xd2,0xe1,0xfc,0xa3,0x8e,0x4b,0x38,0x27,0x5a,0x38,0xe5,0x28,0x84,0x06, + 0x3d,0xe6,0x13,0xcd,0x23,0xdc,0xbd,0xfb,0x0b,0xe8,0x9c,0xd8,0x50,0xf0,0x39,0xd1,0xb8,0x6f,0xa9,0x89, + 0x7d,0xf4,0x36,0x8e,0xe9,0x77,0x1e,0xaa,0xf9,0xf3,0xbc,0x56,0x34,0xce,0xc5,0x44,0x4d,0x6e,0x25,0x93, + 0x43,0x8a,0xf6,0x68,0xdb,0x35,0xd1,0x95,0x35,0xd1,0x60,0xe8,0xb6,0x59,0xcf,0x77,0x34,0x7f,0xbc,0x84, + 0x12,0x3d,0x4d,0x91,0x00,0xa2,0x7f,0x30,0x09,0x24,0x3a,0xa3,0x7c,0xa8,0x43,0x3f,0x0b,0x4f,0x70,0xf0, + 0x67,0x8f,0x4f,0xee,0xde,0xbd,0xf0,0xf7,0x43,0x59,0x96,0x8d,0x3f,0xe5,0x70,0xd9,0x00,0xca,0x21,0x03, + 0x2d,0x28,0xbc,0x9a,0x84,0x72,0xc5,0xa1,0x54,0x18,0xf7,0xf4,0x19,0xfd,0x65,0xb2,0x6b,0x89,0xc9,0xd6, + 0x60,0x09,0xa2,0x18,0xe0,0x3f,0x46,0xfb,0x33,0xca,0x9b,0xd5,0x61,0x10,0x87,0xb7,0x36,0x3b,0x94,0xfc, + 0x1d,0x8e,0x5a,0xc3,0x77,0x7b,0x47,0x39,0x75,0xca,0xc2,0xed,0x98,0x21,0x2f,0x2b,0x17,0x35,0x6c,0xac, + 0xab,0xea,0x44,0xb8,0x10,0x46,0xaf,0x60,0x3c,0x51,0xcb,0x04,0xa3,0x0e,0xf4,0xaf,0x2e,0xca,0xba,0x70, + 0xc9,0x1e,0x61,0x94,0x0a,0x9b,0x3f,0x2a,0x08,0x38,0x6a,0xec,0xaf,0x76,0xd2,0x2f,0xd8,0x9f,0xaa,0x19, + 0xc0,0xdb,0x06,0xe3,0x19,0x4e,0x11,0xb3,0x29,0x3e,0x0d,0x17,0xca,0xdd,0x07,0xe1,0x82,0xc2,0x8d,0x36, + 0x14,0xe5,0xeb,0x35,0xa2,0xbb,0x03,0xe9,0x85,0x85,0x90,0xf6,0xa1,0x20,0x64,0xcd,0xb7,0xc8,0xc5,0x65, + 0xe3,0x7d,0x03,0x95,0x5d,0xd7,0x04,0xd4,0xab,0x09,0xd7,0x33,0x20,0x2f,0xd4,0x55,0x4f,0x4b,0xd7,0xcd, + 0xc0,0x16,0x62,0x49,0x48,0x89,0x1d,0x58,0x3b,0xb0,0xf8,0x57,0xac,0xab,0x69,0x76,0x1a,0x28,0x82,0x60, + 0x1e,0x04,0xcc,0x89,0x9f,0xc5,0x25,0x13,0xe2,0xa0,0xba,0x4b,0x9f,0x13,0xb9,0x57,0xd3,0xa1,0x8e,0x1b, + 0x67,0x8d,0x40,0x45,0x45,0x91,0xa6,0x62,0xa6,0xfc,0xea,0x44,0x13,0x84,0x83,0x2f,0x0e,0xbd,0x2f,0x4b, + 0xcc,0x0d,0x5c,0xe4,0x3c,0x2d,0xca,0x8a,0x7b,0x24,0x34,0xb3,0x3f,0xba,0x7c,0x34,0xd7,0x7b,0x75,0xa9, + 0x1d,0xdc,0x9d,0xad,0xd7,0x3b,0x6f,0x89,0x5f,0x9c,0x1f,0x5d,0x4e,0x14,0x67,0xba,0x84,0x49,0xb9,0xb0, + 0xb2,0x67,0xd1,0x99,0xf3,0x7e,0x80,0x1a,0xcb,0xf5,0xfa,0xcc,0xed,0x98,0xb8,0x18,0x1c,0xa4,0x34,0xd0, + 0xab,0x29,0xfb,0x7a,0x61,0xbb,0x5a,0x39,0x85,0x34,0x6f,0x81,0x19,0xef,0xbc,0x21,0x5c,0x1c,0x5c,0x5f, + 0x60,0x90,0x33,0xb9,0x5b,0xa4,0xb3,0x9d,0x0b,0x6c,0x30,0x6b,0x96,0xc0,0x4d,0x9c,0xfa,0xa9,0x9d,0x4d, + 0x0a,0x51,0xb1,0xc3,0xe1,0xbd,0xf8,0x60,0x28,0x02,0x4b,0x7d,0xeb,0x67,0xaf,0x1d,0x09,0x16,0x73,0x15, + 0x3e,0x0d,0x0f,0x21,0xa4,0x3e,0x47,0xa4,0xf9,0x7c,0xb6,0x5a,0x24,0x65,0xf8,0x8e,0x7e,0x83,0xc6,0x79, + 0xa5,0xb4,0xbf,0xae,0x68,0x4d,0xae,0x1e,0x2d,0xd3,0x1a,0x80,0xaf,0x98,0xac,0x3c,0x3c,0x5a,0xa6,0x47, + 0x57,0x13,0x58,0x7b,0xd1,0xbd,0xb2,0x3f,0x7a,0xfa,0xe8,0xbc,0x2e,0xf2,0x94,0xc8,0x8b,0xf3,0xa3,0xa7, + 0x13,0x55,0x86,0x76,0x4a,0x17,0x17,0xfe,0xc2,0xce,0xe3,0x0b,0xf9,0x0d,0xeb,0x8d,0xe0,0x5d,0x4d,0xb4, + 0x66,0x54,0x28,0xb1,0xa7,0xd6,0xef,0x37,0x2c,0x6c,0x25,0x54,0xdc,0xe1,0xa4,0x50,0xdd,0x96,0x21,0x5d, + 0x92,0xca,0x27,0x13,0xdf,0xde,0xe2,0x25,0x06,0x61,0x44,0x60,0x9c,0x0d,0xe8,0x82,0x39,0xe7,0x8a,0xfd, + 0x87,0xf8,0x40,0x74,0x28,0x5f,0xd3,0x13,0xcb,0x08,0x87,0x03,0x93,0x3f,0x64,0xdf,0x4f,0xbc,0x91,0x8c, + 0xbd,0xb1,0x01,0x81,0xd0,0x5c,0xb3,0x50,0x05,0x45,0x47,0x3f,0x4b,0xee,0x4d,0xe2,0xa9,0xe9,0x7a,0x50, + 0x72,0x27,0x18,0xae,0xf9,0x89,0x27,0xac,0x9f,0xa5,0xa9,0x3b,0x27,0x1d,0x16,0xdc,0xf0,0xf1,0xe9,0xe7, + 0x54,0xe4,0xad,0xb4,0x6f,0x0e,0xca,0x09,0x0f,0x11,0xf9,0xc5,0xe8,0x55,0x04,0x65,0x7e,0xf5,0x1c,0xf3, + 0x4e,0x3f,0x42,0xf9,0xaf,0x1a,0x51,0x68,0xe4,0x99,0x46,0x49,0x0e,0xc3,0x57,0x62,0xff,0x76,0x26,0xc4, + 0x20,0x5d,0x7f,0x8e,0xa0,0xec,0x8c,0x27,0x28,0xeb,0x70,0x36,0x78,0x2b,0x02,0xdb,0x13,0xb9,0x0f,0x4e, + 0x1b,0xf7,0xf0,0x19,0x54,0x7f,0x89,0x70,0xd1,0xf8,0x4f,0x03,0xec,0x55,0xa4,0xd3,0x08,0x06,0x40,0x31, + 0x8d,0xae,0x46,0xf5,0xbd,0x78,0x4e,0x60,0x71,0xde,0xc5,0xbb,0x9c,0x5b,0xbc,0xcb,0xf9,0xc4,0xbf,0xe2, + 0x91,0x5c,0x89,0xe3,0x7b,0x1e,0xea,0xd3,0xba,0x91,0x37,0xd4,0xc8,0x9b,0x0e,0xce,0xf7,0x4d,0xcd,0xf9, + 0xbe,0x61,0xce,0xf7,0x4a,0x20,0xe9,0x49,0x74,0xd5,0xc2,0xad,0xfc,0xa2,0x30,0x60,0x1d,0xe1,0xda,0xe4, + 0xe1,0x4e,0x74,0x30,0xba,0xf3,0xe8,0x09,0xb1,0x88,0xc6,0x5e,0xe5,0x0e,0xdc,0x3f,0x23,0xe1,0xe8,0xce, + 0x44,0xd3,0xde,0x3f,0x27,0x18,0xdf,0x15,0xb5,0xaa,0x42,0xdd,0xc2,0xb7,0x2b,0xdf,0x5b,0x60,0xf9,0xf6, + 0xc3,0x7d,0x75,0x61,0x11,0xff,0x03,0x97,0xc0,0x45,0x6d,0x2d,0x26,0xfb,0xb7,0x0a,0x42,0x9e,0x13,0x6f, + 0xc5,0x2b,0x90,0xfe,0xa6,0x9c,0x7f,0xad,0x0e,0xda,0x70,0x95,0x86,0xea,0xfc,0x0d,0x8f,0x4e,0xd3,0xf0, + 0x7d,0x1a,0x3e,0x4d,0xc3,0xc3,0x34,0xfc,0x2a,0x0d,0x7f,0xcf,0xc6,0x5a,0x9a,0xff,0xac,0x0a,0xb5,0x60, + 0x0d,0xbf,0x05,0x9e,0x1a,0xcf,0x7f,0x3b,0x12,0xd7,0x4b,0xac,0x2c,0xce,0xf2,0xab,0xf1,0xab,0x4a,0xa2, + 0x9b,0xc1,0x6d,0xe6,0x66,0x78,0xbd,0x99,0x68,0xc7,0xca,0x17,0x29,0xbc,0x98,0xbf,0xc8,0x88,0x16,0xd4, + 0x8f,0x1c,0xed,0xf0,0x22,0xf2,0x3e,0x4e,0xad,0x4f,0xcf,0xe2,0xec,0x34,0xf1,0x6c,0xf3,0x54,0xd1,0xc4, + 0xaf,0x2b,0xb3,0x94,0x5e,0x09,0xd7,0x46,0xac,0xea,0x7b,0xa9,0xa2,0x22,0xfe,0x88,0x31,0x28,0x7d,0x33, + 0xed,0x3a,0xfd,0x97,0x14,0x4e,0xd5,0xb0,0x3b,0xc9,0xac,0xf1,0x20,0x0a,0x21,0x92,0x7e,0x99,0x37,0x61, + 0x1d,0x85,0x27,0xb9,0x7b,0x77,0x87,0xff,0x12,0x23,0xa6,0xd4,0x2c,0xc7,0xdf,0xc1,0xd1,0x91,0xb9,0xcc, + 0x9d,0x11,0xfe,0x62,0xb1,0x14,0x62,0xd4,0x35,0x53,0xa2,0xa4,0x4d,0x30,0xfc,0xbd,0x92,0xdf,0xb6,0xb7, + 0x27,0xd3,0x2a,0xe1,0x0b,0x04,0x5e,0xd3,0xf6,0x27,0x5a,0xe9,0xf3,0xeb,0x0a,0x32,0x30,0x4f,0x6b,0x8e, + 0x98,0xd1,0xd1,0xbd,0x9b,0xfa,0x12,0x3b,0x2e,0x08,0x94,0x27,0xaf,0x17,0x3a,0x72,0x6c,0x54,0xd5,0x51, + 0x64,0x43,0xeb,0x37,0xfb,0x75,0x64,0xd5,0xe2,0xf6,0xba,0xeb,0xe5,0x7e,0x41,0xc3,0xfa,0x32,0xdb,0x56, + 0x08,0x73,0x13,0xa9,0x2c,0xa1,0x48,0x78,0xe9,0x7f,0xc9,0xb3,0xb8,0xb1,0x24,0xbf,0x7c,0x50,0xb3,0x88, + 0xb8,0xc3,0x23,0x95,0x4d,0x02,0x1e,0xc2,0x9b,0x70,0x73,0xbd,0x5a,0x6f,0xd5,0x1c,0xb4,0xdd,0xdd,0x9b, + 0xe0,0xba,0xb5,0x96,0x23,0xfd,0x66,0x69,0x56,0x54,0xb4,0xa9,0x6f,0x5f,0xdf,0x51,0xda,0x8c,0x01,0x58, + 0xab,0x46,0xec,0x40,0xb5,0x9c,0x9d,0x58,0x6e,0x64,0x95,0xb5,0x7a,0xc5,0xb8,0x12,0xf3,0xe9,0xad,0xe1, + 0x03,0x7f,0xc0,0x00,0x01,0xf0,0x43,0x55,0x92,0x1f,0xc7,0x89,0xc6,0xf9,0x19,0x1f,0x77,0xef,0x52,0xbe, + 0xca,0x00,0xa6,0xd7,0x10,0xab,0x76,0x81,0x3d,0x35,0xfe,0x44,0xf0,0x2a,0x81,0x3d,0x7f,0x49,0x43,0x9c, + 0xac,0xa1,0xa8,0xc5,0x36,0xd7,0x47,0x59,0x1c,0xeb,0xc6,0x10,0x0b,0xf0,0x4b,0x7e,0x1a,0x55,0xaa,0x25, + 0xe2,0x42,0xc5,0x12,0xa8,0x73,0x80,0xfa,0xb7,0xb4,0x32,0x45,0x7a,0x0a,0x4f,0xb0,0xcf,0xd2,0x12,0xca, + 0x91,0x91,0x97,0xd1,0x3e,0x28,0x9d,0x3b,0x7e,0x53,0x9d,0x49,0x06,0xc2,0xc5,0x37,0x92,0xe0,0xfc,0x21, + 0x1d,0xfb,0x59,0x7d,0xec,0x71,0xc5,0xdd,0xa1,0x6e,0xed,0xd3,0xd0,0xa8,0x14,0xe5,0x9b,0x20,0x68,0xb6, + 0x14,0x15,0xe3,0x7c,0x28,0x3d,0x77,0xea,0x17,0xb4,0x66,0x38,0x2a,0x1a,0x2b,0xe9,0xdf,0x3a,0xe1,0xd6, + 0x40,0x8b,0xf1,0x6d,0x43,0xed,0x5a,0x20,0xda,0xcb,0x57,0xb7,0x54,0x53,0x13,0xe9,0x9c,0x66,0x57,0x93, + 0x6a,0xe6,0x50,0xad,0xc8,0x3a,0x36,0x57,0x31,0x04,0x7c,0x1a,0x6f,0x1f,0x1f,0x43,0xcd,0xb7,0x04,0x35, + 0x6c,0x18,0xa6,0xac,0xbb,0x20,0x68,0x8e,0x8b,0xe1,0x97,0x79,0x0e,0x67,0xb8,0xe1,0xb4,0x2c,0xcd,0x6f, + 0x00,0x97,0x2e,0x06,0x44,0xa2,0x7f,0x5b,0xaf,0xb3,0x2a,0xc5,0x7a,0x5b,0xb5,0xcb,0xe8,0x77,0x55,0xbb, + 0x54,0x23,0xad,0xf5,0x70,0x6b,0x97,0xed,0x48,0x97,0xe1,0x76,0x24,0x6d,0x2d,0xdb,0xe8,0x70,0xb6,0x2a, + 0xf8,0x5d,0x70,0x78,0x24,0x76,0x6d,0xa1,0x4a,0x17,0xc5,0x8e,0xc9,0x26,0xfc,0x43,0x2f,0x90,0xf3,0x58, + 0x2b,0xd6,0x72,0xdf,0xa6,0x8e,0x09,0x5d,0xd3,0x16,0xac,0x65,0x3c,0xde,0xb6,0x09,0x53,0x9e,0xb3,0x58, + 0xb0,0x2a,0xaf,0xf4,0xdd,0xc1,0xfd,0x18,0x85,0xff,0x0a,0x09,0x21,0x81,0xad,0x1d,0xb3,0x55,0x99,0x88, + 0x61,0x6f,0xa0,0x76,0xa0,0xe2,0xb7,0xda,0x6d,0x88,0xe0,0x3f,0xd2,0x1c,0xe1,0x28,0xa8,0xdd,0x57,0x5a, + 0x8f,0x66,0x86,0xee,0xb6,0x6d,0x47,0x6b,0x81,0x80,0xb2,0x1f,0xfb,0xb9,0x82,0x67,0x1e,0xf6,0x36,0x50, + 0x67,0x69,0x2f,0xab,0x4c,0xa1,0xd1,0xda,0xe9,0x9c,0x9f,0x80,0xa2,0x72,0x1d,0x01,0xd6,0x7b,0xfb,0xb6, + 0xee,0x6e,0xd7,0xeb,0x1b,0xb7,0x72,0x7d,0x6f,0xd7,0x1b,0xc5,0x2c,0x86,0x13,0x25,0x5b,0xfe,0x3d,0x8e, + 0xad,0x00,0xa7,0x65,0x1f,0x17,0x04,0x7e,0x7a,0xc3,0xb2,0xcf,0xb2,0xdc,0x61,0xe1,0xc7,0x22,0xff,0xc0, + 0x03,0xb4,0x7a,0xfb,0x90,0x14,0x63,0x50,0x54,0x06,0x63,0x4e,0xe1,0x3a,0xf8,0xcb,0xff,0x4a,0xd8,0x8c, + 0xc8,0x97,0x07,0x44,0xd8,0x57,0x0e,0x94,0xa3,0x19,0x5a,0xda,0x7a,0x88,0xd1,0x2f,0xda,0xb2,0x68,0xe1, + 0x18,0xbb,0xaf,0xb0,0x08,0x12,0x65,0x42,0x2a,0x5a,0x61,0xe7,0xf1,0x9c,0xda,0x48,0xda,0x86,0xf0,0x3d, + 0xe0,0x16,0x41,0x9e,0x80,0x2e,0xbe,0x2e,0x62,0x07,0xeb,0x04,0xe1,0xea,0xee,0xdd,0x95,0xc2,0x51,0xfe, + 0x59,0x14,0x87,0x17,0xd1,0x2a,0xbc,0xc0,0x14,0x08,0xa3,0x9d,0xe1,0xef,0x7a,0x7d,0x81,0xb5,0xe0,0x4f, + 0xa1,0xef,0x76,0x7e,0x65,0x69,0x82,0xbf,0xb3,0xea,0xf2,0xf9,0xda,0x95,0xaa,0x5d,0x7a,0xd6,0x2c,0xb8, + 0x00,0xd6,0x3c,0x5a,0x35,0x81,0x44,0x0c,0x46,0xa6,0x3c,0x77,0x2f,0x5f,0x55,0xbb,0x29,0x6b,0xee,0xa7, + 0xae,0xf3,0x06,0x05,0x05,0xc0,0x9b,0xdf,0xf9,0xf3,0xd0,0x8b,0xe7,0x04,0xd5,0x3f,0x88,0x7a,0x85,0x6d, + 0x2a,0x6a,0x95,0x44,0xbc,0x74,0xd7,0x8f,0xe5,0x26,0x08,0x35,0xf8,0xa0,0xb3,0x34,0xdb,0xcd,0xc5,0x14, + 0x40,0x04,0x1e,0xbf,0xfa,0xb5,0xb0,0x4a,0xdc,0x9a,0xcd,0xc2,0xa5,0x6d,0xb6,0x07,0xff,0xc0,0xa3,0xef, + 0x20,0x8d,0xe1,0xee,0xbf,0x12,0x8d,0x91,0x65,0x10,0x72,0x9a,0x60,0x2c,0xcc,0x1e,0x06,0x69,0x2a,0x7d, + 0x0e,0x8d,0x30,0x42,0x8b,0xcd,0xa1,0xd2,0x96,0xcd,0xa2,0x64,0x53,0x93,0xcd,0xb9,0x30,0x2d,0xe1,0x05, + 0xa1,0xcf,0xef,0x53,0x2c,0x0a,0xe0,0x51,0xe1,0x0d,0x7e,0xd0,0xb7,0x10,0x0c,0x30,0x6c,0x30,0x12,0x93, + 0xbe,0xde,0xf7,0xcc,0xc5,0x8a,0x3f,0xf7,0x7f,0x13,0x5e,0xa9,0x15,0x2a,0x86,0x7f,0x10,0x39,0x6d,0xbe, + 0xbe,0x81,0x72,0xf0,0xf0,0x5a,0x90,0xcc,0xf7,0x69,0x17,0x62,0x69,0x58,0xb6,0x33,0x7e,0xb0,0x8d,0x44, + 0x64,0xeb,0x24,0x50,0xee,0x32,0xce,0x10,0x04,0xb7,0xdb,0x1d,0x12,0x57,0x5a,0x16,0xc9,0xa5,0x71,0x5c, + 0x28,0x46,0xa2,0x5a,0xf8,0x9c,0x76,0xa1,0x2d,0xf6,0xa8,0x9a,0xbb,0x25,0xc1,0x67,0xc7,0xf5,0xa9,0x29, + 0x89,0x2d,0x2a,0x1f,0x19,0xae,0xbc,0xd4,0xa2,0xc7,0x69,0x94,0x1e,0x95,0x93,0xd1,0x54,0xe2,0x47,0x63, + 0x14,0x3b,0xd1,0x54,0x84,0xef,0xe0,0x0c,0xd4,0x49,0x9e,0xba,0x27,0x99,0x90,0xc7,0x25,0x5e,0x44,0x3c, + 0xc0,0x76,0x6e,0xac,0x45,0xb3,0x23,0x2e,0x37,0x89,0xa6,0x21,0xd5,0x50,0xc7,0x79,0xda,0x7d,0x9c,0xe3, + 0x00,0x72,0x0f,0xcb,0x9b,0xf8,0x02,0x03,0x5e,0xe1,0x9f,0x39,0x0d,0x75,0x5e,0x4b,0xc0,0xe6,0x7a,0xa8, + 0xb3,0xa8,0x38,0x9a,0x4f,0x46,0xb3,0xd6,0x39,0x88,0x43,0x95,0x46,0x34,0x6b,0x34,0x63,0x72,0xff,0x34, + 0xa9,0xbe,0xcc,0x57,0x2c,0x66,0x7b,0xba,0x48,0x09,0xc0,0x7e,0xa4,0xb5,0x86,0x1f,0xf6,0xa3,0x19,0x0f, + 0x71,0xbc,0x90,0x51,0xcf,0x82,0xe1,0x4a,0xff,0xda,0x28,0x0b,0xdc,0x65,0x15,0xb1,0x4e,0x25,0xe4,0x90, + 0xda,0x4a,0x5a,0x78,0xa7,0x59,0xb4,0x32,0x91,0x0a,0x74,0x89,0x9c,0x6e,0x7f,0xdb,0x3b,0x47,0xcb,0xfe, + 0xba,0xdb,0xd3,0x80,0xe9,0x0b,0x5a,0x1c,0x2c,0x07,0xb3,0x1c,0x75,0x98,0x4c,0x4d,0x53,0xcd,0xb6,0x58, + 0x34,0xdb,0x80,0x12,0x56,0xfa,0xee,0x51,0x20,0x6f,0xfc,0xf3,0xb3,0x81,0x97,0x77,0x89,0x88,0xcf,0xbb, + 0xac,0x6c,0x39,0xd2,0x7c,0xb1,0xb2,0x64,0x3a,0x8b,0xcb,0x17,0x94,0xee,0x27,0xca,0x40,0x3f,0xac,0x84, + 0x5c,0xd6,0x2a,0x86,0xdf,0x32,0x9b,0xa0,0xbf,0xfe,0x70,0xbe,0xbe,0xd7,0x0e,0xff,0xe1,0xbc,0x63,0x41, + 0xa8,0xd2,0x30,0x78,0xd0,0xcd,0x1f,0xe4,0xf3,0x79,0x99,0x54,0xdf,0x26,0xe9,0xe9,0x59,0x65,0xd5,0x6a, + 0x2a,0x2d,0xca,0xfe,0xf1,0x1a,0xd7,0x2e,0xc4,0x30,0x12,0xd8,0x56,0x32,0xed,0x34,0x7a,0x0a,0xe2,0x0d, + 0xce,0xcf,0x06,0x46,0xef,0x27,0x2a,0x06,0x96,0x82,0x94,0x4a,0xa9,0x01,0xe3,0x99,0x22,0x26,0x38,0xe8, + 0x74,0x9b,0xcb,0xf9,0x3a,0x85,0x27,0x50,0x5e,0xae,0x3a,0xe2,0x60,0x0f,0x22,0x9f,0x6b,0xa2,0x8f,0x77, + 0xf6,0x4c,0x37,0x77,0x54,0xe0,0x4e,0x89,0x1a,0xa4,0xe3,0x75,0x05,0xec,0x45,0x57,0x00,0xa3,0xd5,0x30, + 0xeb,0x3c,0xe8,0xb6,0x19,0x4e,0x0e,0x65,0xf8,0x6c,0xa6,0x0e,0xc6,0x49,0xb9,0x68,0x1b,0x5e,0xab,0xc5, + 0x6f,0xf0,0xe5,0xb8,0xd4,0x9f,0xa5,0x46,0x24,0x58,0xdf,0xea,0xaa,0xb8,0x8b,0xe4,0x55,0xe2,0x48,0xaf, + 0xdc,0x14,0x0f,0x66,0x2c,0xb5,0x09,0x68,0xaf,0xad,0x9b,0x9e,0x01,0x03,0x37,0x63,0x57,0x6a,0xe7,0xee, + 0x9c,0x54,0xa2,0x0b,0x15,0x84,0xef,0xd5,0x06,0x64,0x9d,0x54,0xb3,0x71,0x8a,0xe1,0x28,0x47,0x64,0x9a, + 0xb3,0x7b,0x27,0x8a,0xa8,0xb6,0x2d,0x1d,0x15,0x75,0x34,0xae,0x34,0x1c,0xa9,0xc9,0x44,0x2c,0x16,0x33, + 0x3b,0xbb,0x81,0x95,0xf8,0x6b,0x7e,0xb0,0x9f,0xa7,0xa7,0x03,0x2b,0x32,0x6e,0xf4,0x5b,0x11,0xd6,0x19, + 0x4e,0x4c,0xde,0xa8,0x4c,0x3b,0xb3,0x20,0x54,0x8b,0xbe,0xb1,0xab,0x35,0x62,0xf2,0x46,0x3f,0x26,0x4e, + 0x45,0x37,0x88,0x6f,0x2b,0x46,0xca,0xef,0x35,0xc5,0x86,0x9d,0x2a,0x61,0xca,0xe0,0xec,0x1d,0x08,0x3e, + 0x57,0xf2,0xa6,0x50,0x2d,0x54,0xf4,0xf5,0x5e,0xf2,0x87,0xb2,0x3e,0xbe,0xcd,0x12,0x81,0xad,0xa9,0x15, + 0x36,0xde,0xf5,0x60,0xaa,0x3d,0xe6,0xea,0xec,0xc0,0xbc,0xb6,0xf8,0x35,0xca,0x7e,0x90,0x6c,0xbb,0x93, + 0x80,0x2f,0xe4,0xad,0x45,0xb5,0x91,0x84,0xb4,0xb9,0xd7,0xae,0xad,0x8e,0x44,0x65,0x07,0x6c,0xda,0x84, + 0x97,0x30,0xac,0x34,0x2e,0x14,0x0d,0xd5,0x45,0xcc,0x70,0xe0,0xe6,0x59,0x46,0xec,0xff,0x4e,0xd9,0x6a, + 0xd2,0x72,0x5d,0xa2,0x11,0x26,0x94,0x0a,0x7f,0x4e,0x87,0xa7,0x6e,0xb6,0xb8,0xa2,0xeb,0x8e,0x94,0xd5, + 0x56,0x94,0x67,0xef,0x3d,0xb6,0x6f,0x70,0xb9,0xbc,0x99,0x27,0x6b,0xa4,0x45,0x59,0xc1,0xbe,0x5f,0x12, + 0x37,0x0c,0x76,0x6d,0xe2,0xae,0x3d,0x0c,0x3a,0x1c,0xa4,0xf2,0xe4,0x54,0x3b,0x1d,0xf1,0xc5,0x74,0xe3, + 0xd4,0xe8,0x0f,0x85,0x88,0xf0,0x1b,0x2a,0x8b,0xb5,0xda,0x29,0x4c,0xd2,0xf6,0xc0,0x9d,0xb8,0x1e,0xb8, + 0xb5,0x43,0x61,0xa8,0x41,0xd1,0x52,0x7c,0x09,0x55,0x2a,0xed,0xfc,0x1e,0xfa,0xfc,0xaf,0x6b,0x8f,0x04, + 0xbe,0x35,0xa6,0xaf,0xa0,0x14,0x22,0x61,0xb0,0xef,0xde,0xfd,0x2e,0xc3,0xff,0x07,0x70,0xa3,0x05,0xba, + 0x0d,0xaa,0xcc,0xaf,0x61,0x97,0xb1,0x2f,0x07,0xf3,0xbb,0x34,0xfc,0x06,0xca,0x94,0xd7,0xc7,0xd7,0xbe, + 0x3f,0x1e,0x0e,0xd6,0xc7,0x59,0xd0,0x1f,0x07,0xc7,0x9b,0xe3,0xcd,0xde,0x69,0xf8,0x4f,0x68,0xbf,0xef, + 0x0e,0x3e,0xe9,0x8f,0xff,0x75,0xe7,0x7a,0xe3,0x07,0xeb,0xa3,0xe3,0xc9,0xf1,0xde,0xf1,0xf1,0x84,0xf2, + 0x7e,0xeb,0x56,0x61,0xe7,0x2b,0x44,0x6b,0x6f,0xff,0x33,0x0d,0xbd,0xe3,0xe3,0x3b,0x77,0x3d,0x36,0x5f, + 0x86,0xa2,0x79,0x3b,0xc7,0x5e,0x5d,0xf1,0x97,0xe2,0x57,0x7d,0x4f,0x0d,0x46,0x46,0xe3,0xf5,0xb3,0xd0, + 0x3b,0x85,0x24,0x30,0xfc,0x15,0x66,0x7e,0x2c,0xde,0x87,0x4f,0xd3,0xe1,0x91,0x67,0xc9,0xfd,0xbd,0x49, + 0x68,0x50,0x76,0xc3,0xcc,0x83,0x9d,0x6b,0x0d,0xe0,0x05,0x42,0xa1,0xc8,0x54,0xe4,0x35,0x62,0x70,0x3b, + 0x12,0xc1,0x96,0xd5,0x54,0xf4,0xdd,0x9b,0x57,0x2f,0x29,0x01,0x80,0x8d,0x18,0x8e,0x99,0x76,0x63,0x1e, + 0x15,0x56,0x45,0x38,0xca,0x85,0x28,0x05,0x4a,0x31,0x48,0xf8,0x32,0x65,0x82,0x23,0x2a,0xb0,0xfd,0x49, + 0x06,0xf7,0xac,0x1d,0xdc,0xa7,0xe7,0x59,0xaa,0xfd,0x75,0x97,0x78,0x2c,0xeb,0x47,0xf6,0x7c,0x86,0x5e, + 0xdf,0x29,0xd1,0xf7,0x42,0x58,0x69,0x3a,0x7d,0xa9,0x5a,0x53,0x53,0xde,0xce,0x94,0x0a,0x15,0xd1,0xc5, + 0xff,0xd1,0xbd,0x6c,0xfc,0x44,0xf2,0xf1,0xcb,0xc6,0xe8,0xbf,0xb1,0x6c,0xdc,0x54,0x73,0xd9,0xce,0x53, + 0xac,0x9c,0xbb,0x74,0x52,0xd9,0x5a,0x3a,0x4e,0xf8,0xb3,0x4b,0xc7,0xdd,0x3a,0x4b,0xc7,0x29,0xd6,0xd2, + 0xf1,0xb7,0x5e,0x3a,0xbb,0x2f,0x53,0x0b,0xe5,0x7d,0xa9,0x50,0xe7,0xf6,0x61,0x75,0x20,0x8b,0x97,0xe4, + 0xfc,0xd8,0x04,0xcb,0x3f,0xb6,0x02,0x85,0x39,0x65,0xbe,0x50,0x56,0x8d,0x62,0xba,0xa7,0xac,0x31,0xc5, + 0xc2,0x30,0x2d,0x19,0x33,0xe3,0xe9,0x89,0xa6,0x62,0xd9,0x8b,0x3a,0xa6,0x8f,0x62,0x20,0x79,0x75,0x02, + 0xb7,0x43,0x55,0x2e,0x36,0xd3,0xca,0xc2,0x11,0xe6,0x9f,0x15,0x4c,0x3b,0xb5,0x98,0x73,0xc9,0x26,0x8e, + 0x30,0x0f,0x64,0x43,0x47,0x31,0x7d,0x2c,0x54,0x4b,0x38,0x5c,0x32,0xc2,0x4e,0x13,0x54,0x19,0x72,0x6d, + 0x6c,0xc8,0x16,0x93,0x9d,0x86,0x95,0xe8,0xd6,0xb5,0x6c,0x64,0x5b,0x54,0x65,0x88,0xaa,0x2d,0x29,0x5b, + 0x16,0xa9,0xca,0xc6,0x95,0x4d,0x2c,0x3b,0x2c,0x5c,0x31,0x56,0x6d,0xff,0x2a,0xfd,0xd0,0x62,0xb1,0x5d, + 0xad,0xb2,0xc1,0x84,0x09,0xab,0x36,0x9e,0xe4,0x65,0x6a,0x9a,0x63,0xca,0xb2,0x89,0x79,0xaa,0x5a,0x3c, + 0x31,0xa4,0xd0,0xa6,0x96,0xb5,0x15,0x68,0x63,0x89,0xd8,0x32,0x97,0x16,0x8a,0xd7,0x1a,0x6a,0x80,0x79, + 0xb4,0xf7,0xaf,0xe3,0xf2,0x13,0xff,0x88,0xfe,0xf5,0xee,0x3d,0x7a,0x7c,0xbc,0x17,0x4d,0xfa,0x01,0xe1, + 0x1a,0x24,0x46,0x01,0xfe,0x1d,0x0f,0x3d,0xca,0xf6,0x26,0x9f,0x10,0xda,0x59,0xdf,0xa3,0x9f,0xf7,0xe8, + 0xe7,0xbd,0xfe,0x5a,0xd5,0x89,0x1e,0x3d,0xfe,0x4f,0xaa,0x12,0x04,0xe3,0xbd,0x30,0xcd,0x23,0xef,0x28, + 0xde,0xfd,0xe3,0xc9,0xee,0x6f,0x6f,0x27,0x47,0xc7,0xc7,0x57,0xc7,0xc7,0xbb,0xc7,0xc7,0x83,0xc9,0x27, + 0x5e,0x98,0x53,0x16,0x70,0x98,0xd7,0x4f,0xf3,0x3e,0x61,0xba,0x61,0x30,0x96,0x9f,0x81,0x17,0xc6,0x79, + 0x64,0x21,0x3b,0xef,0x5f,0x8f,0xbc,0x7e,0x9e,0x13,0x87,0xa6,0x07,0x77,0xbc,0x37,0x0e,0x1e,0xef,0xd1, + 0xbe,0x34,0x8a,0x1d,0x1f,0xef,0xa1,0x64,0xdf,0x3b,0xfa,0xd7,0xe3,0xc9,0x27,0x8f,0x69,0x3e,0x0b,0x54, + 0x79,0xb4,0xf3,0xec,0xd5,0xd3,0xc3,0x5f,0x5f,0x7f,0xd5,0x43,0x7a,0xff,0xf1,0x5e,0x1a,0xae,0x24,0x1d, + 0x16,0x3c,0x73,0xf9,0x79,0x7c,0xb4,0x17,0x2e,0x73,0xbc,0x1d,0x7b,0xef,0x3c,0x83,0x85,0xf7,0xde,0xf9, + 0x03,0x9a,0xc8,0x69,0xe8,0x1e,0x79,0x2a,0xe8,0x81,0xb9,0xaf,0xd4,0xd3,0xcb,0x59,0x1e,0x5e,0xe6,0xc4, + 0x4a,0x87,0xa7,0x79,0xf8,0x3e,0x27,0x08,0x0a,0xdf,0xe6,0xe1,0x55,0x1e,0x3e,0xcd,0xc3,0xc3,0x3c,0x3c, + 0xcf,0xc3,0x77,0x79,0xf8,0x86,0x41,0x50,0xd9,0xef,0x2a,0xc3,0x68,0xfd,0xea,0xc1,0x97,0xe0,0x93,0x1c, + 0x2f,0xc7,0x77,0xe8,0x5f,0xef,0xee,0xa2,0x1a,0x79,0x43,0xef,0x11,0x1d,0xca,0xbb,0xa7,0xfc,0xf3,0x31, + 0x7e,0x02,0x3e,0xe9,0xe3,0x9e,0x77,0x8f,0x3e,0xe2,0x8b,0x25,0x32,0xee,0x22,0xe3,0x6f,0x07,0xfb,0xf8, + 0x7d,0x9c,0xf1,0xc7,0x17,0xfc,0xbb,0xf2,0x36,0xe1,0x2b,0x9a,0xdb,0x5d,0x5a,0x64,0x62,0x80,0x4f,0xab, + 0x35,0xaa,0xaf,0xa9,0x5a,0x30,0xa2,0x09,0x7d,0xd5,0x99,0xb5,0xa6,0x96,0xd6,0x7f,0xfb,0x82,0x4b,0xbc, + 0xe6,0x01,0x43,0xf3,0xc1,0x1d,0xe7,0xb3,0xbc,0x9b,0xb4,0x20,0x2c,0xf3,0x3a,0x17,0x1f,0x0a,0xc7,0x2c, + 0x67,0xa9,0xe0,0xb9,0x28,0xfc,0x1d,0xeb,0xfb,0x8f,0xf5,0xbf,0x2e,0x77,0xf3,0x6c,0xb8,0x17,0x3e,0xc7, + 0xe7,0xe5,0xee,0x1a,0x49,0xf4,0xf9,0x03,0x7d,0xfa,0x83,0x4f,0xe8,0x42,0x2d,0xfb,0x34,0x9a,0x34,0x5b, + 0xe7,0x73,0xfe,0x3d,0xf8,0x24,0xd8,0x0b,0xbf,0xa6,0xdc,0x90,0xe0,0x2a,0xa4,0xeb,0x76,0x42,0x50,0x46, + 0x25,0xec,0xcf,0x60,0x7c,0x67,0x2f,0x7c,0xc9,0x50,0xe1,0xaf,0x8f,0x83,0x3b,0x34,0xe8,0x17,0x39,0x9b, + 0x87,0x7d,0x42,0x1f,0xe1,0x8f,0xc8,0x19,0xa2,0x67,0x16,0x3d,0xef,0x85,0x5f,0x52,0xc2,0xf1,0xe0,0xe8, + 0x5f,0x83,0x49,0x9f,0x8a,0xfe,0x9c,0x77,0x1a,0xef,0xf8,0xdf,0xa5,0xd1,0x77,0xe9,0x2d,0x86,0x4a,0x41, + 0xad,0x0d,0x11,0x25,0xe1,0x77,0xa9,0x6d,0x9c,0x48,0x97,0xf0,0x2f,0xe8,0xf9,0xdd,0xc5,0x22,0x2b,0x87, + 0x2f,0xdf,0x1c,0xcf,0xfa,0x7b,0xe1,0x4f,0x48,0xe1,0xdf,0x34,0x8e,0x6f,0xf3,0xe8,0xe8,0xd7,0x94,0xee, + 0x9c,0xf0,0x9a,0x96,0xf7,0xf0,0x86,0xbb,0x45,0x64,0x49,0xda,0xab,0x84,0x3c,0x0d,0x69,0x16,0x86,0x1f, + 0xf7,0x5f,0xc4,0x4b,0x16,0xc9,0x1e,0x79,0x97,0xbb,0xfc,0x98,0xe2,0x4d,0x20,0x9d,0xc5,0x27,0x4f,0x1a, + 0x04,0xa1,0x37,0x59,0xaf,0x29,0x45,0xfd,0xd6,0xaa,0xa1,0xea,0xb6,0xe1,0x44,0x78,0xee,0x92,0x9b,0xeb, + 0x72,0x37,0x9d,0xcb,0x36,0xe7,0x51,0x3a,0xf6,0xa8,0x2d,0x3a,0x95,0x38,0x94,0x43,0x62,0x11,0xe3,0x48, + 0x68,0x72,0x5d,0x14,0xcf,0xb9,0xca,0x6e,0xd9,0x49,0x33,0x6d,0x4c,0xa3,0x5f,0x99,0x22,0xff,0x67,0xc5, + 0xbe,0xb2,0x58,0xdb,0x88,0x3b,0x0c,0xc5,0x75,0xc6,0x49,0xfe,0x8e,0xfa,0xfe,0x06,0xe9,0x50,0xda,0x07, + 0x0d,0x3b,0x25,0x04,0xad,0xc8,0xbd,0x41,0x3a,0x27,0x1c,0xe1,0xf5,0x0b,0xea,0x9f,0xa6,0x7f,0x4f,0x57, + 0xb9,0x47,0x87,0x3c,0xfc,0x0d,0x95,0xae,0x93,0x77,0xcb,0x21,0xca,0x09,0xfe,0x1e,0x4e,0xd5,0x79,0x5c, + 0xa8,0x7e,0x69,0x50,0x0b,0x0c,0x8a,0x56,0x57,0x06,0x54,0x71,0x82,0x1a,0x42,0x11,0xcf,0xd2,0x5c,0xfa, + 0x5f,0xa0,0xff,0xba,0x49,0xbb,0x57,0x2e,0xc5,0x5d,0x4a,0x1f,0x0b,0xd5,0xc7,0x4a,0xf5,0xa1,0x7d,0x16, + 0x55,0xfe,0xaa,0xd9,0x15,0x25,0xc8,0xa2,0xc3,0xf8,0xe1,0x1b,0x7c,0x3b,0xbd,0xa4,0xaa,0xc5,0x15,0xdc, + 0xe3,0x8f,0xa7,0x03,0x2c,0x1d,0x42,0xd1,0x81,0xd2,0x91,0x2f,0x5a,0x00,0x38,0xa1,0x06,0x67,0x37,0x09, + 0xff,0x20,0xcc,0x40,0xd5,0x88,0x63,0x00,0xd8,0x41,0x7e,0xaf,0x5f,0xb8,0xbf,0xcd,0xc3,0x9a,0x95,0x18, + 0xaa,0x47,0xb5,0xdb,0x9e,0xd1,0xec,0x37,0xd4,0x5c,0x60,0x8b,0xbd,0xfb,0x69,0xb0,0xe2,0xb7,0x57,0x71, + 0x6f,0x68,0x78,0x11,0x23,0x43,0xaf,0x94,0x32,0x57,0xa8,0x42,0xeb,0xd6,0xef,0x97,0x79,0xb0,0xd3,0xdd, + 0xf3,0x3d,0x56,0x11,0xb8,0xa3,0x3d,0x70,0xfc,0x1c,0x2f,0x7a,0x51,0xaf,0x11,0x59,0x5d,0x3d,0x29,0xc8, + 0x23,0xe6,0x1d,0x76,0x20,0xab,0x22,0x36,0x9a,0x07,0x4d,0xd3,0x78,0x5e,0x9b,0xc7,0x0f,0x74,0xa3,0x9b, + 0x00,0x6f,0xa0,0xbe,0x5d,0x06,0xbd,0x5e,0x72,0x5f,0xde,0x5b,0x71,0xf7,0x02,0x95,0xa0,0xbc,0x37,0xa6, + 0x6a,0x92,0xd0,0x1b,0xd2,0x4f,0xf5,0xf4,0x26,0x0d,0xde,0xeb,0xfb,0x1c,0x83,0x41,0xec,0xe8,0xc7,0xde, + 0xdb,0xcc,0xa7,0x7c,0x9c,0x01,0xfa,0x03,0x21,0x11,0x81,0x80,0x37,0xca,0xec,0x17,0x4d,0x28,0xd0,0xf7, + 0xbd,0x9e,0xd7,0x8f,0x2b,0x84,0xba,0x71,0xc7,0xae,0x1f,0x55,0xa9,0x53,0x77,0x01,0x86,0xee,0x37,0xe1, + 0x4b,0x2f,0x30,0x5c,0x11,0x9b,0xed,0xd4,0x36,0xa1,0x35,0x1e,0xc8,0x09,0xc3,0x9a,0xe3,0x43,0xdf,0xf1, + 0xb6,0x25,0xb7,0x26,0x41,0x5b,0x2c,0xe7,0x5d,0xd6,0x20,0x58,0xaf,0x3d,0xf4,0x83,0x33,0xad,0xf0,0x40, + 0xb1,0x4a,0x76,0xeb,0x4c,0x7c,0x7a,0x74,0xac,0x25,0x73,0x1e,0xe3,0x54,0xd7,0xb9,0xfc,0xed,0x8d,0xfe, + 0x23,0x91,0x15,0x10,0x27,0x38,0xa1,0xe7,0x9a,0x92,0x78,0x7d,0x62,0x53,0x82,0xf1,0xdb,0x54,0x7e,0x85, + 0x74,0x84,0xfa,0xcc,0x87,0x7b,0x7d,0x5f,0xda,0xc7,0xd8,0xc7,0xde,0x50,0x95,0xa4,0xe5,0x1d,0xbe,0xfd, + 0xb7,0x29,0x1c,0x23,0x89,0x98,0x3c,0x77,0x99,0x3d,0x81,0xa2,0x38,0x92,0x62,0x77,0xc0,0xbd,0x3a,0x8b, + 0x4d,0x49,0xd3,0x08,0xc9,0x03,0x35,0xae,0xb1,0x2f,0x6d,0xa1,0x1b,0xe2,0x10,0x3a,0x8c,0x61,0xa9,0x39, + 0x85,0x14,0xef,0xdc,0xb9,0xa4,0x86,0x7d,0xd9,0x72,0x19,0xaf,0x37,0xcc,0x03,0xee,0x28,0x8d,0x68,0x26, + 0x54,0x94,0x7e,0x5e,0x72,0x23,0x76,0x27,0xc1,0x35,0x15,0x78,0xb4,0xcf,0xe8,0x92,0xc6,0x45,0x03,0x30, + 0xe1,0xb6,0x8f,0xa8,0xfc,0x24,0x10,0xdd,0x17,0x94,0xa2,0x05,0x70,0x8a,0x69,0xf7,0x2f,0x94,0x15,0xe8, + 0x3a,0x75,0x3a,0xa5,0xf6,0x0f,0xa0,0x47,0x20,0xf5,0x0d,0x7c,0xdd,0x99,0x32,0x1c,0x7a,0x1f,0x06,0x2d, + 0x82,0xe9,0xfe,0x22,0xa8,0xb4,0xb6,0xdb,0xda,0x2c,0x9f,0xea,0xb4,0x16,0x0d,0xa1,0x1b,0xdc,0xdd,0xe3, + 0xc1,0xe7,0x1f,0x02,0xe2,0x00,0x41,0x4b,0x27,0x64,0x2b,0x56,0x69,0xe0,0x2b,0xc2,0x6b,0xec,0x3f,0x1e, + 0xb7,0x97,0x44,0x0d,0x86,0xdf,0x6d,0x35,0x2f,0x04,0x40,0x82,0x1d,0x37,0x5d,0x4b,0x3b,0xb2,0x2a,0x18, + 0x14,0x74,0xfb,0xc2,0x45,0x94,0x8f,0xf5,0x28,0x87,0x2a,0x03,0x3a,0x68,0x04,0xbd,0x43,0x35,0xaa,0x70, + 0x15,0x35,0x8e,0xb5,0xac,0xcf,0x08,0xe8,0xba,0x3b,0x4f,0x59,0x8d,0xc3,0x63,0x89,0x94,0xe1,0x05,0x5a, + 0xf1,0xca,0x8c,0xe4,0xcd,0x8a,0x57,0x64,0x15,0x8c,0xa6,0x54,0x80,0x6e,0x3b,0x80,0x95,0xd3,0x8e,0xd2, + 0x33,0x31,0x8f,0x94,0x23,0xaf,0x3f,0x0f,0x42,0xd9,0x09,0xe9,0x3f,0xf4,0xf4,0xf9,0x51,0xab,0xbd,0x08, + 0xe7,0xb5,0x64,0xc5,0x2f,0xd7,0x6b,0x28,0x4c,0xcb,0x3e,0x9c,0x2c,0x56,0x74,0x3b,0x79,0xee,0xd3,0x95, + 0xa7,0xcd,0x05,0xeb,0x8d,0xd8,0xf9,0x2a,0x73,0xc5,0x84,0x84,0x49,0x3b,0x71,0xbf,0x79,0x85,0x65,0x1a, + 0xb1,0xc5,0x18,0x5f,0x8a,0x06,0x83,0x0c,0xd7,0x22,0x91,0x00,0x3c,0x25,0x86,0x2d,0x25,0x78,0xf0,0x1b, + 0xe6,0x79,0x6e,0x6e,0xc2,0x10,0x5d,0x9d,0x0d,0x6c,0x88,0xb1,0x7c,0x4d,0xf4,0x54,0xdc,0xe5,0x92,0x02, + 0x84,0xac,0x72,0xc0,0x05,0x61,0x25,0x71,0x45,0x28,0x97,0x10,0xd5,0x5e,0xcb,0x49,0x87,0xbf,0x15,0x70, + 0xb8,0xf3,0x65,0xf2,0x43,0x32,0xaf,0x5e,0x2d,0x93,0x0c,0x45,0xaa,0x3c,0x74,0x96,0x62,0x58,0xa6,0x61, + 0x43,0x16,0x3a,0xfc,0x31,0x09,0x2d,0xe1,0xc1,0xb7,0x39,0xf1,0x0f,0xb3,0xd5,0xb4,0x5b,0xe5,0x86,0x63, + 0x39,0xf2,0x29,0xd7,0x01,0xb2,0x74,0xc8,0xbf,0x80,0x3d,0x42,0x0c,0x7e,0xcf,0x53,0x02,0x93,0x10,0x2b, + 0xf2,0x7d,0x37,0x89,0xda,0x83,0xa3,0x17,0x40,0x3b,0xdf,0xd9,0x80,0x7f,0x48,0xd6,0x43,0x7d,0x12,0x42, + 0xe2,0x5d,0xd2,0x4c,0xb9,0xf3,0x08,0xcd,0xc3,0x98,0x44,0x17,0xea,0xfb,0xc9,0x18,0x27,0x36,0x81,0x67, + 0x54,0x08,0x8c,0xfe,0x6d,0x58,0xbe,0xe3,0xab,0x3b,0x6f,0x27,0xfd,0xf5,0x31,0x51,0xd8,0xc1,0xe4,0x93, + 0xf1,0x71,0x00,0x76,0x2f,0x7a,0xbc,0xfe,0x97,0x1e,0x01,0x7d,0x1e,0xfb,0x7b,0xe1,0x77,0xaa,0xc6,0x11, + 0xb1,0x75,0xc4,0xdc,0xbd,0xbd,0x33,0x41,0xd5,0x09,0x38,0x43,0xa2,0xae,0x1b,0x89,0xeb,0xe3,0xa3,0x7b, + 0x44,0xdf,0xdf,0x9b,0xd0,0x0f,0x8f,0x7e,0x78,0xf8,0x41,0x64,0x30,0xfe,0x34,0xcb,0x4e,0x82,0x4f,0xa8, + 0x59,0xa2,0xdc,0xbf,0x01,0xa9,0x53,0x4e,0x87,0xf7,0xff,0x0e,0x67,0x46,0xc3,0x2f,0x44,0xcd,0x62,0x78, + 0xf0,0x20,0x94,0xf5,0x7e,0x70,0x3f,0x5c,0x2d,0x87,0x0f,0x3e,0x27,0x0e,0x79,0x5e,0x0d,0x1f,0xfc,0x3d, + 0x2c,0xf0,0x7a,0x32,0x7c,0xf0,0x45,0x08,0x2f,0xd8,0xc3,0x87,0xfb,0xa1,0x3c,0x60,0x0e,0x8f,0x3e,0x0f, + 0x1f,0x7e,0x46,0x4c,0xc8,0x3f,0xf3,0x2e,0xbf,0x5c,0x40,0x39,0x7d,0x00,0x8f,0xe5,0x33,0x6b,0x44,0x6c, + 0xd3,0x6f,0x39,0x84,0x41,0x04,0x0f,0xfa,0x50,0xe3,0x03,0x00,0x12,0x9f,0xc6,0x22,0x42,0x1c,0x41,0xa3, + 0x82,0xf3,0x4c,0x19,0xf5,0xfd,0x4c,0x1e,0x1c,0xb9,0x08,0xe2,0x92,0x0d,0xff,0x99,0xfb,0x2e,0x6e,0xe8, + 0x11,0xc6,0xe9,0xa9,0x94,0xe9,0xaa,0xc0,0x26,0x1d,0x72,0x06,0x1d,0xe0,0x69,0x55,0x2c,0xb8,0xc6,0x8e, + 0x2e,0x40,0x09,0xdf,0x43,0x43,0x37,0x64,0xdf,0xa1,0x4e,0x1e,0xa7,0x48,0x66,0xbc,0x70,0xb3,0xe8,0x5b, + 0x32,0x20,0x2f,0x70,0x72,0x90,0x20,0x59,0xbc,0x76,0xc8,0xba,0x27,0x5e,0xa1,0xee,0x81,0x30,0x92,0x52, + 0xbd,0xbb,0x77,0xf5,0x08,0x25,0x8f,0xc7,0xbc,0x8f,0xf6,0xd2,0xd9,0x6c,0x91,0x7c,0x54,0xb5,0x03,0xc8, + 0x15,0x78,0x7f,0x3e,0xa6,0xd6,0x7d,0xc0,0xff,0xaf,0xb4,0x11,0xc4,0x35,0x36,0xfd,0xb1,0xc0,0x0d,0x5c, + 0x1d,0xd5,0xae,0x63,0x63,0xdf,0x9e,0xca,0xc6,0x86,0x0e,0x86,0xd8,0xc0,0x5b,0x49,0xd6,0xf6,0x83,0x83, + 0xe6,0x38,0x7c,0x5e,0x6d,0x2d,0x54,0xb7,0x74,0x42,0x2d,0x65,0xd4,0xd2,0x3d,0xc8,0xbf,0xe8,0xbc,0xf5, + 0xc1,0x7c,0xd7,0xad,0xe2,0xee,0xb3,0x28,0x69,0x38,0x3a,0xaa,0xd5,0x11,0xf1,0x18,0x36,0x16,0x52,0x67, + 0xa8,0x68,0xa6,0xe0,0x86,0xe2,0x1c,0x7d,0xda,0x0b,0x55,0x79,0x2f,0x50,0x63,0x9e,0x2e,0xf2,0xf8,0x1c, + 0x71,0x75,0xff,0x23,0x6f,0x7b,0x3d,0xcd,0x8d,0xb3,0x4c,0xfe,0x84,0x24,0x92,0xee,0x44,0xfc,0x59,0xaf, + 0x7f,0x53,0x89,0x46,0x78,0x59,0x46,0xbf,0x42,0x0c,0xaf,0x15,0xd3,0x3d,0x93,0xf1,0x94,0x38,0x06,0xed, + 0xc1,0x1d,0xef,0x8c,0xdf,0x24,0x19,0x22,0xf8,0xb9,0xa5,0x95,0xd4,0xd1,0x94,0x33,0x1c,0x47,0x74,0xe9, + 0xb3,0xa2,0xc5,0xaf,0x39,0x9b,0x46,0x9b,0xf4,0xc0,0x44,0xef,0x72,0x10,0xe8,0x7a,0xfd,0x2e,0x1b,0x29, + 0xdf,0xc8,0xef,0x4f,0x12,0x13,0x88,0xb1,0x63,0x23,0x77,0x8c,0x19,0xaf,0xf2,0x8f,0x99,0x4d,0x93,0xe7, + 0xb0,0xd6,0xe2,0xaf,0x66,0xc0,0x41,0xf8,0xe8,0x4e,0xe2,0xc8,0xb7,0x85,0x42,0xc7,0xc7,0x27,0x5e,0xdf, + 0x9b,0x11,0x0e,0x9f,0x43,0x00,0x47,0x40,0x5f,0x21,0xa0,0x2e,0x2d,0xf2,0x7b,0x76,0xcc,0x36,0x85,0xf0, + 0x0f,0xd7,0x5e,0x78,0x95,0x56,0x67,0x61,0x7c,0x15,0xa7,0x55,0xc8,0x86,0x01,0x21,0xfb,0x40,0x57,0xca, + 0xf3,0xfc,0x0c,0x14,0xb2,0xe3,0xd2,0x90,0xe3,0xd2,0x87,0x57,0x84,0x56,0x93,0xf0,0x3d,0xa4,0x7e,0x0a, + 0xd9,0x84,0xc4,0x9c,0xe5,0xf0,0x76,0xc8,0x9e,0x58,0x42,0x99,0x81,0xf6,0x00,0xa6,0xfd,0x2e,0x8a,0xbb, + 0x50,0x62,0x63,0x24,0x44,0x3d,0x3b,0x41,0x4b,0xb3,0x15,0x5c,0xf7,0x9c,0xac,0x4e,0x4f,0x21,0x26,0x54, + 0xab,0x50,0x07,0x5d,0xf1,0x94,0x9f,0x1a,0xdc,0x09,0xea,0x76,0xa0,0x69,0xad,0x31,0xb5,0xa0,0xcf,0x33, + 0x94,0x20,0xc1,0x8d,0x39,0xcb,0xa0,0xc4,0xef,0x28,0x2b,0xb0,0x77,0xb6,0x43,0x28,0x1d,0x08,0xff,0xf8, + 0x98,0x50,0x3e,0xfd,0x53,0xb7,0xda,0xc8,0xa0,0x3e,0xfc,0x77,0x4d,0xc9,0x8f,0x88,0x22,0xb6,0x5a,0x8d, + 0xb2,0xc7,0x60,0xc2,0x8b,0x88,0x7d,0x1c,0xed,0x1c,0x04,0xe1,0x49,0xae,0xf6,0x93,0x0d,0xc4,0x20,0xe1, + 0xb6,0x22,0xb6,0x8c,0xb2,0x47,0xef,0x73,0xdb,0x39,0xcb,0xfb,0x9c,0xed,0x70,0xf1,0x92,0x73,0x96,0x47, + 0x55,0x0d,0xd5,0x27,0xf8,0xd2,0x77,0x3d,0xc0,0x29,0x7c,0x8b,0x14,0xeb,0x26,0xe7,0xc4,0x2b,0x24,0x36, + 0xae,0x6a,0xce,0xb8,0xc8,0x01,0xda,0x55,0xc7,0x41,0x78,0x29,0x07,0xe1,0xb4,0x59,0xa0,0x29,0xa6,0xa1, + 0x32,0xef,0x5b,0x65,0xf2,0xb2,0x6a,0x16,0xba,0xc4,0x10,0x68,0x27,0xd2,0x8b,0xb4,0x42,0x40,0x44,0x65, + 0x94,0x4b,0xe4,0x29,0x2b,0x9f,0xec,0x1c,0xb0,0xae,0x27,0x62,0x9c,0xe3,0x74,0xfc,0x72,0x46,0xa5,0x78, + 0x98,0x21,0xd6,0x0b,0x74,0xea,0x41,0xcb,0x32,0xa3,0xb9,0xc8,0xf4,0xb5,0xea,0xe3,0x05,0x0f,0x6a,0xad, + 0xab,0x13,0x79,0x5b,0xf0,0x6d,0xab,0xe9,0x42,0xfb,0x11,0x60,0xfd,0xbb,0xb0,0xac,0xe3,0xd7,0x8b,0x26, + 0xdf,0x2a,0x50,0x6f,0x6f,0x78,0x6e,0x28,0xf0,0x29,0x3b,0xd6,0x78,0x90,0xa5,0x64,0x56,0xf5,0x4f,0xa3, + 0xb8,0x0e,0x6a,0x9f,0x3e,0x8e,0x88,0xeb,0x89,0x11,0x0a,0x66,0xa1,0x8b,0xe2,0x90,0xd3,0xbc,0x4a,0x84, + 0x54,0xd3,0x34,0x65,0xc4,0xcf,0xbe,0x28,0x6d,0x19,0x60,0xda,0x0d,0x4d,0x1f,0x47,0xe9,0x68,0x4a,0x15, + 0xaa,0x01,0x7b,0x59,0xe1,0x3f,0xec,0x6f,0x9d,0x25,0x13,0x18,0xff,0x48,0x17,0x8f,0xb0,0x80,0x29,0x77, + 0xbb,0x7b,0xc0,0xf9,0xcc,0x1d,0x79,0x27,0x05,0x28,0xbc,0x72,0xcc,0x84,0x55,0xc1,0x4e,0xeb,0xf9,0x07, + 0xcd,0x9f,0x96,0x7b,0x67,0x5f,0x3c,0x23,0x78,0x4b,0x2e,0xc5,0x71,0x70,0x3b,0xcb,0x1d,0x70,0xb9,0xd0, + 0x19,0x88,0xac,0x20,0x2d,0xaa,0x76,0x8e,0x00,0x4f,0x27,0xd8,0x44,0x28,0xa3,0xd7,0x52,0x19,0xda,0xb2, + 0x6a,0x50,0xd3,0x97,0x0c,0x6d,0x0b,0xbc,0x38,0x37,0xa8,0x4a,0xce,0x58,0xd1,0xa2,0x24,0x23,0x16,0xf2, + 0xa5,0x84,0xc0,0x89,0x25,0x79,0x93,0xfb,0xb9,0x51,0x67,0x83,0x5d,0x6a,0xde,0x78,0x13,0x5f,0x46,0x4f, + 0xf2,0xa3,0x19,0x42,0x44,0xf1,0x5f,0x47,0xfe,0x4d,0x04,0xdc,0x71,0x79,0x7c,0xfc,0x86,0x48,0xb7,0xc0, + 0x7f,0xb4,0xe7,0xf5,0x67,0x5a,0x10,0x1e,0xd0,0x89,0x4f,0xc1,0x4b,0xc3,0x3a,0x4b,0x8b,0xb6,0x97,0xb6, + 0x4c,0x9b,0xc1,0x43,0x43,0x9a,0xb1,0x84,0x0d,0x69,0x3c,0x33,0xe6,0xff,0x94,0xdf,0x49,0x2c,0x1c,0xc7, + 0x46,0x8e,0x6a,0x07,0x54,0x7b,0x10,0xa3,0x53,0xdf,0xa5,0xf4,0xbc,0xbb,0xfb,0x78,0xef,0x94,0x58,0x0c, + 0xba,0xf5,0xed,0x22,0xc7,0x47,0x4f,0x9f,0x3d,0x39,0x7c,0x72,0x7c,0x54,0x97,0x9c,0x4c,0x4c,0x49,0x08, + 0x95,0xfd,0x59,0x28,0x6e,0x97,0xa1,0xcf,0xa2,0x7c,0x36,0x71,0x18,0xbd,0xb3,0x58,0x2e,0x4a,0xfe,0x01, + 0x25,0x08,0x0f,0xf2,0x17,0x82,0x79,0xad,0xa3,0xb3,0x7b,0xa6,0xc7,0x9b,0x44,0x67,0x61,0x41,0x0d,0xad, + 0x76,0xe7,0x88,0x44,0x6d,0xec,0x90,0x2e,0x23,0x4b,0x19,0xe0,0x91,0xc8,0x00,0xa0,0x86,0x79,0xc9,0x8b, + 0xbf,0xca,0x75,0x44,0x2d,0x6d,0x41,0x66,0xab,0x0e,0xec,0x1e,0xbf,0x7b,0x90,0x48,0x95,0x0b,0x06,0xdf, + 0x4a,0x85,0x67,0x44,0xa4,0x0a,0xa5,0x82,0xa8,0xc2,0x23,0x28,0x87,0x25,0xf5,0x29,0x7c,0x18,0xc2,0xd6, + 0x36,0xf3,0x2f,0xfa,0x0f,0x88,0xc5,0x53,0xa8,0x7e,0x03,0xbd,0xae,0x79,0xa3,0xcf,0x53,0xbb,0xcf,0xc9, + 0x63,0xe9,0xef,0x94,0xfb,0xcb,0xfc,0xd3,0xfe,0x7d,0xbb,0x3a,0xca,0x43,0x43,0x9a,0xdd,0xd3,0xfa,0x0b, + 0x51,0x39,0x7c,0x8f,0x82,0xef,0xf1,0xb6,0xac,0x03,0x1a,0x9a,0x0a,0x28,0x7f,0x62,0xca,0x4f,0xa5,0xfc, + 0x89,0xf4,0xfb,0x36,0x5a,0x8d,0x32,0xff,0xc4,0xaa,0x47,0x0b,0x78,0x72,0x74,0x30,0x09,0xdf,0x32,0x5b, + 0x6a,0xb7,0x71,0xd5,0x8c,0x95,0x52,0x99,0x46,0x63,0x69,0xd4,0x44,0xfe,0xbb,0xd6,0x1e,0xff,0x2a,0x34, + 0xc5,0x9c,0xc7,0x10,0x87,0x05,0xa7,0x6c,0xb8,0xda,0x50,0x97,0x95,0x3d,0x54,0xeb,0x54,0x8d,0x76,0x70, + 0x18,0x54,0xb3,0x65,0xce,0xc6,0x1f,0xb9,0x49,0x28,0x28,0x61,0x14,0x64,0x7e,0xee,0x0c,0x58,0xf9,0x8f, + 0xd4,0x81,0x38,0x71,0x9e,0x6a,0x1b,0xcc,0x15,0xce,0xe2,0x1b,0xba,0xc5,0x09,0x6d,0x60,0x30,0x99,0x9f, + 0xba,0x95,0xe1,0xfb,0x7c,0x15,0x16,0x9b,0x8d,0x2f,0x56,0x53,0xc1,0x75,0x2b,0xd4,0x42,0x16,0x19,0x37, + 0x85,0x6c,0x75,0x51,0xb7,0xc9,0xdc,0xbf,0x60,0x14,0x3a,0xbf,0x99,0xb8,0x0e,0x2f,0x68,0x14,0xe1,0x82, + 0x7f,0xe6,0xe2,0x00,0xba,0xe0,0x07,0x72,0x3d,0xcd,0x55,0x34,0x65,0x6f,0x0d,0x3b,0x3b,0x29,0xfb,0xe0, + 0x91,0xe1,0x2b,0x18,0x9e,0xf1,0xa1,0x16,0xc9,0xd4,0x1c,0x27,0x7e,0x7f,0xb4,0x7c,0x34,0x1f,0x2d,0xb5, + 0x92,0xdf,0x99,0xae,0x70,0xb4,0x9c,0x8c,0x96,0xd4,0xe9,0x2e,0xac,0xe5,0xce,0x30,0x27,0x0d,0x40,0xf7, + 0x3c,0xef,0x1e,0xd6,0x8d,0xdf,0xa8,0xce,0x8e,0x1e,0x4c,0xee,0xde,0x55,0x0a,0x9d,0xf8,0x08,0x55,0xf2, + 0x43,0x3b,0xf9,0xa1,0x49,0xfe,0xd4,0x4e,0xfe,0x54,0x59,0x13,0x5e,0x72,0x33,0xeb,0x35,0x0a,0xe2,0xdf, + 0x4f,0xe9,0x5f,0xcf,0x0b,0x2f,0x22,0x2f,0xd6,0x2e,0xae,0xe1,0xbe,0x59,0x5a,0x38,0x98,0x8c,0xf5,0x19, + 0x79,0x96,0xc0,0xa5,0xee,0xcb,0xe4,0x0a,0x2e,0x51,0xcb,0xaf,0xf3,0xe2,0x5b,0x2a,0x35,0xec,0xce,0x1d, + 0xcd,0x68,0x46,0x4a,0x77,0x1d,0x8d,0x84,0x4c,0x62,0x0f,0xff,0x5d,0xf9,0x97,0x74,0x8c,0x36,0x9b,0x15, + 0xab,0x3e,0xf3,0x26,0xb3,0x02,0x2b,0x61,0x56,0xfb,0xc6,0x19,0x66,0x0d,0x5c,0x29,0x50,0x37,0x83,0x47, + 0xfa,0x88,0xe3,0x22,0x34,0x90,0x7d,0x06,0x5b,0x32,0x7e,0xf2,0xa6,0x2f,0x78,0xb4,0xc9,0x66,0xc1,0x86, + 0xb6,0x1f,0xb8,0x28,0x0f,0x13,0x76,0xbd,0x70,0xd0,0x3c,0x77,0x4f,0xb5,0xc9,0xf8,0xa1,0xfe,0x71,0xae, + 0x7e,0x00,0x76,0x2e,0xcd,0xfd,0x76,0x68,0x1c,0x3b,0x5f,0x06,0x04,0xd2,0x53,0x75,0xdc,0x0f,0xe1,0xc6, + 0xd5,0xfa,0xbd,0xb2,0x7e,0xcf,0xad,0xdf,0xfe,0x79,0x74,0x68,0x63,0xac,0x90,0x70,0xe1,0xa3,0x7d,0x02, + 0xfd,0xcb,0x7e,0x74,0x1e,0x3a,0x8d,0x3f,0x75,0xee,0xfd,0xfd,0xf0,0x12,0x08,0xe7,0x32,0xd8,0x5c,0xb2, + 0x38,0x92,0x72,0x09,0x2b,0xc2,0x72,0xdc,0x60,0xd2,0xa7,0x35,0x32,0x7d,0xca,0x3a,0xa6,0x89,0xa8,0x29, + 0xb7,0x50,0x6d,0xa2,0x4d,0x64,0x37,0x85,0xcf,0x32,0x22,0x89,0x12,0x72,0x96,0x87,0xd6,0x33,0x84,0x73, + 0xfb,0x59,0x92,0x15,0xfb,0x1a,0xec,0x10,0xaa,0xb4,0x6e,0xc4,0xb0,0x0b,0x24,0xb6,0x40,0x4a,0x67,0xd9, + 0x9b,0x81,0x4b,0xe5,0x86,0x2d,0xd4,0x3d,0x34,0x98,0xbb,0x54,0xe8,0xc9,0xba,0x16,0x63,0x58,0xbf,0xca, + 0x89,0x15,0x01,0x69,0xb9,0x5e,0x5f,0xe1,0x8d,0x73,0xf4,0x12,0x20,0x0f,0x97,0xd9,0xb4,0x76,0x2b,0xa8, + 0xc2,0x3b,0xdc,0x4b,0xad,0xec,0x4c,0x48,0x4f,0x48,0xdb,0xc4,0xa6,0x6c,0xb5,0xf0,0x12,0xf1,0x51,0x7f, + 0xc9,0xb5,0xee,0x64,0xa6,0x74,0x26,0xe5,0x57,0x24,0x7f,0xcc,0x25,0xfa,0x53,0x1e,0xca,0x36,0xf2,0x09, + 0x00,0x2d,0x62,0x62,0xe8,0x41,0xb9,0x5c,0xc9,0x13,0xbf,0xab,0x78,0xd8,0x29,0x5d,0x90,0x90,0x28,0xd2, + 0x88,0x41,0xcf,0xed,0x28,0x07,0xfa,0xec,0x51,0x71,0x16,0xcd,0x03,0x51,0x66,0xd6,0xcf,0xd1,0x48,0x9e, + 0x89,0xf2,0xf5,0xcc,0x95,0xa7,0xd2,0x24,0x21,0xb6,0xdb,0xfb,0x3d,0xbe,0x8c,0xed,0xb2,0x4e,0x21,0x1a, + 0x33,0x62,0xd4,0x06,0xdc,0x21,0x4d,0xfd,0x84,0x3d,0xc1,0x73,0x20,0x4a,0xbd,0x10,0x33,0x85,0xc7,0x4e, + 0x0d,0x81,0x0f,0x7c,0x36,0x8f,0x4e,0x73,0x3a,0xf3,0xfe,0x9c,0x48,0x5a,0x82,0x7f,0x56,0x0c,0xa4,0xf9, + 0x5f,0x44,0xf3,0xd0,0x3c,0x34,0x5e,0xe0,0x51,0x0d,0xb2,0x3b,0x34,0x7f,0x01,0x52,0x99,0x4d,0x0d,0xe6, + 0x35,0x5f,0xb1,0x1f,0x30,0x63,0x31,0xb7,0x18,0x0b,0xbc,0x48,0x76,0x46,0x2f,0x36,0xc2,0x32,0xe3,0xee, + 0xd2,0x8e,0xd2,0x68,0x5e,0x55,0x2d,0x14,0x5c,0x69,0x3f,0x34,0x15,0x47,0xf0,0x84,0x97,0x1e,0x85,0xa3, + 0xac,0xd6,0x28,0x51,0xe2,0x92,0x08,0xca,0x6a,0x28,0xf9,0x34,0x0a,0x4a,0x58,0xd2,0x8d,0xf6,0xa8,0x49, + 0xf3,0x60,0x5d,0x3b,0x16,0xda,0x49,0x54,0xec,0x79,0x30,0x9c,0xd7,0x6f,0xa1,0x94,0xfb,0x4f,0x18,0xf3, + 0x77,0x44,0x2a,0xb5,0xde,0x6c,0xd5,0xfd,0x9b,0xe0,0xd1,0xb4,0xc2,0x23,0x63,0x22,0x8f,0x8c,0x95,0x7a, + 0x64,0x4c,0x36,0xca,0xc8,0xba,0xe3,0x09,0x57,0x74,0x99,0xd5,0xf3,0xa3,0x8e,0x9d,0xd8,0x7c,0xd0,0xd5, + 0xda,0x4c,0xea,0x5d,0x12,0x0e,0x75,0x31,0xa8,0x4b,0x7b,0xb3,0x2e,0x51,0x01,0x4c,0x3a,0x37,0x79,0xc9, + 0xfc,0x3a,0xef,0xc6,0x37,0x15,0x6f,0x32,0xad,0xe5,0x58,0x43,0xc0,0x7a,0x5d,0xd0,0x58,0x19,0x66,0xa4, + 0x49,0x82,0x00,0xfe,0x45,0x55,0x69,0xf8,0x85,0x0c,0x5f,0x67,0xaa,0x59,0xcc,0x37,0xc1,0xb0,0xa0,0x1e, + 0xe9,0x34,0xee,0x58,0xb0,0x06,0x13,0xa1,0x56,0x33,0x3b,0x37,0xf3,0xaa,0xf6,0x29,0x35,0x87,0x93,0xe3, + 0xeb,0x69,0x0b,0xf4,0x84,0x43,0xeb,0x01,0xc0,0xb5,0xe4,0x96,0x12,0x10,0x14,0x36,0x5f,0xc2,0xf4,0xd7, + 0xaf,0x9d,0xdc,0xf0,0xda,0x64,0x3c,0x9d,0xdf,0x70,0xb1,0xf0,0xd0,0x13,0x77,0xe8,0xb0,0xc8,0xa0,0x05, + 0x33,0x32,0xf6,0xf9,0x00,0x16,0x0a,0xec,0xf4,0x8b,0xa3,0x88,0xcb,0xf6,0x1f,0x88,0x3e,0x49,0x24,0xb9, + 0x22,0x17,0x5c,0xaf,0xef,0x79,0x4a,0x7e,0xe0,0xdd,0x1b,0x51,0xb7,0x4e,0xb0,0x37,0xf7,0x9b,0xcd,0x08, + 0x8e,0xce,0x26,0xd1,0x5c,0x8c,0xad,0xeb,0x31,0x0a,0xde,0x98,0xf3,0xd1,0x91,0xb0,0x6c,0xa9,0x5c,0xed, + 0xe1,0xc5,0x68,0x31,0xce,0x00,0x74,0x44,0x79,0xcd,0xc3,0x5c,0x17,0x44,0x9c,0xb1,0xac,0x43,0xaf,0x3e, + 0x3f,0xca,0x0d,0xdb,0x36,0x09,0x2b,0xcb,0x3d,0xd6,0x51,0xcb,0x27,0x16,0x95,0x40,0xf0,0xe5,0x07,0xd0, + 0x06,0xd1,0x08,0xa5,0xe7,0xc9,0x17,0xbb,0x53,0xd8,0x99,0x42,0xd3,0xba,0x1e,0x23,0x96,0x36,0x34,0xed, + 0x47,0x07,0x44,0x6e,0xb9,0xfd,0x65,0xe2,0x70,0x1b,0x17,0x94,0x23,0xe5,0xd7,0xc1,0xc5,0x5e,0x66,0xf6, + 0xd3,0x91,0x78,0x34,0x01,0x62,0x4b,0x6b,0x9c,0xb5,0xac,0xdd,0x71,0xc0,0xb4,0x3b,0x30,0xa7,0xc9,0x71, + 0xfe,0x91,0x44,0x53,0x04,0x7e,0x94,0x27,0x9c,0xb1,0x8f,0x50,0x9b,0x5e,0xcd,0x05,0x15,0xda,0x56,0x85, + 0xd1,0xaa,0x4e,0x18,0x27,0xc3,0x9f,0x73,0x76,0xeb,0xc7,0x2e,0xcf,0x65,0xd4,0x63,0x9a,0x31,0xc4,0x79, + 0xca,0xe3,0xdb,0x4e,0xc9,0x6b,0xb0,0xc3,0xbe,0xfb,0xfc,0xa6,0xf4,0x44,0xa0,0xf4,0x32,0x1f,0xff,0x96, + 0xfa,0x97,0x79,0x30,0xfc,0x26,0x65,0x6e,0xbd,0x66,0x16,0x8c,0xf3,0xb7,0xd0,0x62,0x41,0xe9,0x9f,0x29, + 0x5c,0xf8,0xc6,0x65,0xf5,0x1c,0x44,0x03,0x10,0x16,0xc7,0xf3,0x49,0xa6,0xb8,0xac,0x82,0x6b,0xda,0xd9, + 0x42,0xe8,0x89,0xe0,0x31,0x9e,0x9a,0x34,0xb1,0x6c,0x08,0x89,0x29,0xac,0x74,0x43,0x45,0x5e,0x35,0xf0, + 0x57,0xae,0x35,0x14,0x17,0xd1,0x3f,0x13,0xdf,0x76,0x87,0x3c,0x52,0x15,0xe4,0x31,0x66,0x21,0x8f,0x50, + 0xaa,0xed,0x6b,0xef,0x1f,0x27,0xa2,0x29,0xe8,0x41,0x67,0x82,0x06,0x98,0xf6,0x8b,0x9a,0xf2,0xd6,0xb7, + 0xd7,0xf4,0x51,0x6d,0x6a,0xd1,0x31,0xac,0x1b,0x07,0xc5,0xe7,0x0c,0x1a,0x7d,0x30,0x48,0x8a,0x95,0x48, + 0xab,0xcf,0xea,0x82,0xe7,0x49,0x56,0x0e,0xcb,0x0d,0x47,0x06,0x0a,0xc6,0x95,0x26,0x1b,0x61,0x05,0x7a, + 0x3f,0xb4,0x6a,0x61,0x91,0xf4,0x87,0xae,0x06,0x42,0x12,0x3f,0xe4,0x4d,0x8b,0xce,0xed,0x50,0x60,0x36, + 0xa9,0xf7,0xd4,0x80,0xf1,0x51,0x55,0xc3,0x26,0x83,0x34,0x94,0xc6,0xad,0xce,0x1e,0x98,0x46,0x84,0x7e, + 0x2c,0xd8,0x20,0xbc,0xe5,0x26,0xbe,0x79,0x4c,0xdd,0xca,0xa1,0xb1,0x75,0x1b,0xee,0xec,0xb3,0x79,0x04, + 0xb1,0x2b,0xbe,0x86,0x4d,0xc4,0x31,0x56,0x82,0x24,0x48,0x83,0x2f,0xd2,0x3f,0x12,0x96,0xe3,0xb0,0x29, + 0x54,0x08,0x99,0xce,0xd3,0x3c,0xfa,0x3e,0x07,0x9e,0xb0,0x9e,0x9b,0x40,0x4b,0x1c,0xe2,0x95,0xb4,0x25, + 0x9b,0x35,0xf7,0x0c,0x4c,0x78,0xc4,0x95,0x8c,0xaa,0x19,0xd1,0xdd,0x5a,0x85,0xf7,0xa9,0xab,0xa9,0x3a, + 0xcc,0x3e,0x4e,0xb6,0x7c,0x10,0x3b,0xe3,0xef,0x4c,0xd5,0xb5,0x3c,0x85,0x65,0x82,0x52,0x14,0xa5,0xce, + 0xa0,0xa2,0x83,0x7f,0xe7,0x88,0xfc,0x75,0x9a,0xf9,0x6c,0x4c,0x05,0x06,0xe8,0x30,0x37,0xbf,0xdb,0x26, + 0xa0,0xc6,0x00,0x94,0xd5,0xa0,0x74,0x5c,0x08,0xe5,0x15,0xda,0xb8,0x0e,0xe2,0xea,0x8e,0x25,0x01,0xba, + 0xa9,0xed,0x43,0x8d,0xcf,0x18,0x02,0x26,0xea,0x51,0x19,0x95,0x21,0x8c,0x20,0x25,0x0c,0x10,0x28,0xe6, + 0x3d,0x2d,0x50,0x80,0xff,0x85,0x07,0x06,0x4f,0x89,0xd5,0x02,0x0d,0xaf,0x52,0x64,0x85,0x07,0x7c,0xcc, + 0x51,0x81,0x6a,0x43,0x30,0x7c,0x68,0xac,0x72,0xe4,0xa5,0x19,0x28,0xcd,0x5d,0x33,0x4e,0x6d,0xb5,0x60, + 0xcb,0x38,0x39,0x7e,0x68,0xd3,0x6f,0xa0,0x0e,0x4f,0xad,0xed,0x63,0x6b,0x7c,0x4a,0xe4,0x21,0xfc,0xae, + 0x84,0x7a,0xeb,0x60,0xb0,0xa4,0xf7,0x62,0xe7,0x80,0x89,0x77,0xa2,0xb3,0xe7,0x4f,0x73,0x5a,0x68,0x7e, + 0x07,0xa8,0x03,0x4e,0x13,0xea,0x8c,0x23,0x37,0x53,0xf7,0x97,0x3f,0x8a,0x6b,0xcf,0x5a,0x65,0xa3,0x10, + 0x3c,0x29,0xf1,0x85,0x45,0x3d,0xc3,0x2a,0x6e,0x4b,0xcf,0x0c,0xcc,0xd3,0x0d,0xd1,0xa1,0x0e,0xb8,0x28, + 0x7f,0x06,0x8d,0x75,0x34,0x55,0x71,0x38,0x72,0xf1,0xfe,0x67,0xd2,0x9e,0x67,0x44,0x9b,0x1b,0x06,0x8d, + 0x12,0x84,0x01,0x71,0x96,0x88,0x8a,0x0b,0x80,0x37,0xd2,0xd7,0xeb,0x07,0x4e,0x32,0xbb,0x6d,0x67,0x97, + 0x11,0x0a,0xbb,0x80,0x35,0x33,0x3d,0xc1,0x1f,0x31,0x13,0x38,0x16,0x48,0x4b,0xda,0x41,0x58,0xb7,0xd1, + 0x88,0xe1,0xde,0xde,0x2e,0x1d,0xcc,0x1d,0xc2,0x5f,0xcb,0xd5,0x63,0x98,0x81,0xa1,0xaf,0x18,0xf8,0x46, + 0x7f,0x6d,0x63,0x12,0x7f,0xcb,0x9e,0x70,0x18,0x03,0xb8,0x85,0x3a,0x30,0x4a,0xe3,0x2c,0x4c,0xce,0x32, + 0x36,0x3c,0x52,0xb2,0xe2,0x6b,0xba,0x06,0x88,0x3b,0x56,0x46,0x98,0xb9,0x0e,0x5d,0xdb,0x78,0x2e,0xa1, + 0x8c,0x46,0xca,0xc6,0x0d,0xf6,0x67,0xf6,0xb5,0xf2,0x2d,0x85,0x0b,0xd7,0x28,0x33,0x81,0xe6,0x20,0x9b, + 0x56,0x8a,0x3b,0xa0,0x42,0x5e,0xa0,0xdc,0x3b,0xcd,0xaf,0xc6,0xf9,0x30,0x0d,0xb4,0x23,0xd4,0x0d,0x1a, + 0xcb,0xb4,0xdc,0x9c,0x1d,0xf9,0xa8,0xdf,0x51,0xfd,0xdc,0xc4,0xef,0xe1,0xfa,0xa1,0xdc,0x14,0x86,0x30, + 0xcd,0x31,0x5f,0x86,0xcf,0x48,0xfb,0x1d,0xaa,0x31,0x3a,0x2b,0x73,0xbd,0x16,0x03,0x52,0xbb,0xbe,0x25, + 0x92,0x41,0x14,0xdb,0x5e,0x16,0x78,0xaa,0x23,0x1c,0x74,0xba,0xc2,0xeb,0x88,0x6e,0x3a,0x85,0xae,0xbf, + 0x18,0x1e,0xf1,0xe3,0x89,0xb8,0x02,0x2a,0xa3,0x77,0x39,0x87,0x3f,0xd7,0x72,0xfa,0x72,0x90,0x14,0x45, + 0x4e,0x2c,0x44,0x4a,0x67,0xa7,0x4a,0x97,0x65,0x94,0x87,0xa5,0x42,0x42,0xd7,0xd0,0xe6,0x48,0x17,0xc9, + 0xb0,0x0a,0xd5,0xaf,0xc3,0xfc,0x6b,0xb5,0x54,0x65,0x87,0x36,0x7f,0x87,0x01,0x6c,0xeb,0x39,0x40,0xf9, + 0x50,0x20,0x7c,0xcf,0x6f,0x70,0xc4,0x17,0xf2,0x16,0xa8,0x37,0xa9,0x5e,0x51,0x1b,0x27,0xe4,0x70,0x73, + 0x66,0x9e,0x22,0xc6,0xca,0x28,0xc9,0x4e,0x0b,0xfa,0x74,0x21,0x32,0xec,0xc2,0x73,0x9a,0x66,0x2f,0xe1, + 0x78,0x4f,0xac,0xe9,0xe1,0x16,0xaf,0x80,0xb2,0x27,0xac,0xaa,0xb1,0xe3,0x66,0xce,0xca,0x3e,0x68,0x89, + 0xa8,0x8b,0x0a,0xdc,0xa6,0x35,0xf2,0xa8,0x9f,0xe8,0xe2,0x66,0x8a,0xab,0xaf,0x57,0x6b,0x38,0x2c,0x01, + 0x3b,0x53,0xe8,0x27,0xa0,0xff,0x88,0x60,0x13,0x4f,0x1a,0x9b,0xc0,0xff,0x23,0x0f,0x06,0xed,0xc5,0xa3, + 0x62,0x71,0xb4,0xb3,0x03,0x4f,0xf6,0x67,0x99,0x8f,0xa7,0xa6,0xcc,0xfe,0x86,0xc7,0xa7,0xb8,0xd3,0x1a, + 0x87,0x4d,0x86,0x8c,0xd5,0x1d,0x50,0x8f,0xd1,0x31,0xa1,0xbe,0xd3,0x38,0xea,0xb0,0xac,0xd2,0xc5,0x6f, + 0x37,0xba,0x02,0xee,0x63,0xe3,0x24,0xee,0x06,0xea,0xa4,0x8e,0xed,0x27,0xd1,0x97,0x76,0x92,0xfe,0xa1, + 0xa3,0x30,0xb7,0x23,0x8b,0x3a,0x21,0xc7,0xd9,0xad,0x41,0xa6,0x96,0x5b,0x1f,0x4f,0x50,0x8a,0x72,0xff, + 0xf0,0x71,0x0c,0x58,0x39,0x93,0x77,0xba,0x8e,0x41,0x58,0x04,0xde,0xdf,0x84,0x64,0x35,0x51,0x13,0x98, + 0x60,0x28,0x62,0x88,0x15,0x8c,0x2b,0xae,0x1d,0xcb,0x73,0x97,0x3d,0x94,0x82,0x49,0x49,0xbd,0x48,0xc2, + 0xc5,0x72,0xfd,0x96,0xc9,0x6a,0xbe,0xaa,0x1c,0x8f,0x71,0x3d,0x2b,0xe9,0x66,0x2b,0x3e,0xd1,0xb2,0x36, + 0xfb,0xd2,0x70,0x27,0x5d,0x1b,0x6f,0x32,0xf3,0x6f,0xef,0x19,0x96,0x59,0x66,0xae,0x6e,0xd3,0x04,0x6e, + 0xf4,0xae,0xbb,0x85,0x4b,0xf1,0x8d,0x82,0xa4,0x0c,0x71,0xac,0xf4,0xd1,0x18,0x66,0xd6,0x39,0xd1,0x24, + 0x1c,0x52,0xf5,0xcf,0x8d,0x8a,0xf4,0x0e,0x92,0x4a,0x9d,0x00,0xa8,0x9e,0x35,0xc0,0x7d,0xa4,0xf7,0x8b, + 0xb0,0x42,0xd6,0x3e,0x1d,0xc6,0x64,0x3f,0x8d,0x45,0x07,0x56,0xcc,0xdb,0xb4,0x2d,0x9b,0x82,0x7b,0x9a, + 0x13,0x7d,0x6d,0x82,0x86,0x51,0x82,0x27,0xf1,0xc3,0xac,0xe0,0xb0,0xfc,0x1e,0x0d,0x76,0x63,0x95,0x49, + 0x74,0xc7,0x19,0x61,0x31,0x95,0x29,0x88,0x6e,0x2c,0x7f,0x06,0xaa,0x68,0x54,0xf9,0x9d,0x61,0x66,0xa5, + 0x36,0xe4,0xc2,0xf8,0x3b,0x88,0x2f,0x66,0x63,0xf9,0x49,0x87,0x92,0xf8,0xdc,0x9f,0x57,0xc9,0xf3,0x83, + 0xcf,0x33,0xd4,0xde,0x34,0x82,0x50,0xd3,0xb0,0x56,0x04,0x20,0x00,0x41,0x1a,0xda,0xc8,0xa2,0x15,0x64, + 0xcc,0x1d,0x23,0xc3,0x5b,0x7b,0xce,0x36,0x4b,0xea,0x17,0xa3,0x30,0xdf,0x3b,0xba,0x5c,0x25,0xbb,0x29, + 0xf5,0x33,0xe9,0x79,0x7d,0xb8,0xd9,0xbe,0x7b,0xd7,0x29,0xc0,0x57,0xfa,0xf4,0xdc,0x76,0xb4,0x5d,0x35, + 0x02,0xe2,0x09,0xd3,0xd5,0x5e,0xa8,0xba,0x86,0x8d,0x83,0x2e,0x95,0x33,0x25,0x9c,0xdb,0x0b,0xe7,0x39, + 0xb5,0x11,0x65,0x0f,0x61,0xf6,0x4c,0x6c,0x09,0xab,0xb1,0xd4,0x8e,0x0f,0x2e,0xa2,0x40,0xf3,0xa8,0x6f, + 0x88,0x3f,0x48,0x1c,0x20,0x08,0xac,0xb3,0x40,0xf6,0xa9,0xd3,0x0c,0x35,0xbe,0x94,0xff,0xe8,0xb3,0xc0, + 0x82,0x09,0xcd,0x59,0x56,0x6c,0x90,0x4e,0x64,0xad,0xab,0xd0,0xca,0x89,0xe3,0x94,0x4d,0x0d,0x87,0xad, + 0xe3,0x9f,0x70,0xa8,0x79,0x38,0x4c,0x46,0xb1,0xe1,0x7d,0xab,0x41,0x16,0x09,0xde,0x58,0x3c,0xf4,0xd1, + 0xe7,0x41,0x57,0x9f,0x94,0x08,0x3c,0x92,0x46,0xf2,0x33,0xbc,0x26,0x8a,0x25,0xa6,0xcb,0xae,0x10,0xfb, + 0xa4,0x72,0x98,0x5a,0xde,0x40,0xf3,0xda,0x88,0x1b,0x3b,0xa2,0x3a,0x35,0x30,0x90,0x38,0x2a,0x59,0x5a, + 0x36,0xa7,0xd4,0x17,0xd6,0x96,0x4d,0xe4,0xd1,0x16,0x3b,0xd7,0x24,0x42,0xa0,0xc2,0x41,0x7c,0x02,0x31, + 0x76,0x88,0x39,0x56,0x63,0xb8,0xf2,0x0e,0xc6,0xd9,0xe3,0x83,0xf1,0xc1,0x70,0x7f,0x78,0x30,0x4c,0xc6, + 0x5c,0xe6,0x22,0x45,0xd5,0xfb,0xc1,0x70,0x5f,0x87,0x53,0x85,0xdf,0x2d,0xf5,0x3e,0x34,0x19,0x67,0x2c, + 0x05,0x62,0x4e,0x6b,0x68,0xed,0x6d,0x6c,0x41,0x01,0xb3,0xa6,0x1c,0xf6,0xbb,0xc9,0xa5,0x3a,0x6e,0xdf, + 0x4b,0x5b,0xe8,0x64,0x81,0x42,0xa8,0xa9,0x2a,0x21,0xa7,0x88,0x89,0x79,0xd4,0x02,0x93,0x54,0xd3,0xeb, + 0xb9,0x84,0xe3,0xc1,0x63,0x83,0x8e,0x56,0x92,0x6b,0xb7,0x14,0x91,0x89,0xa9,0xa1,0x9e,0x24,0xd0,0x19, + 0x53,0x36,0x79,0x30,0x25,0x8c,0xb3,0x88,0xe2,0xf0,0x54,0x80,0x1a,0x7e,0x1a,0xd9,0xfb,0x68,0x0e,0x52, + 0x66,0xcc,0x54,0x4d,0xc9,0xc4,0x4d,0xc8,0x29,0x43,0x4e,0xe1,0x9f,0x8a,0xd6,0x0f,0x0d,0x08,0x16,0x6e, + 0x88,0x02,0x26,0x0e,0x57,0xec,0x60,0x1b,0x4e,0x9e,0x95,0x3b,0x38,0x53,0x64,0x51,0xbb,0xf7,0x5d,0xb1, + 0xba,0x2f,0x44,0x7e,0x1d,0x32,0x8f,0x4a,0xbb,0x3a,0xab,0x2d,0x18,0xdf,0x0a,0x04,0xb1,0x57,0xb4,0x3b, + 0x38,0xf9,0x03,0x49,0xd8,0xa8,0x76,0x2c,0x6c,0xc2,0x0f,0xd8,0x90,0x94,0xe0,0x5e,0xab,0x4d,0xcd,0x15, + 0x47,0xe5,0xb3,0x63,0x48,0x78,0x0a,0xe4,0x4b,0x33,0x25,0x4a,0x3d,0xd7,0x85,0x20,0x4a,0xc4,0xd3,0xbb, + 0x90,0x43,0x59,0x50,0x7b,0xe7,0xa1,0xd2,0x55,0xf1,0x5e,0xad,0x68,0x33,0x7e,0x12,0x51,0x41,0x6e,0x92, + 0xb4,0x4d,0x24,0x62,0x69,0x60,0x57,0xab,0x2b,0x44,0xe6,0x45,0x1d,0x52,0x42,0x61,0x39,0xcd,0x12,0xd8, + 0xd1,0x88,0xc1,0x41,0x15,0x1c,0x99,0x59,0x1a,0x5b,0xaf,0xcb,0x9a,0xb5,0x15,0x95,0x09,0x9b,0x7f,0xcd, + 0xe0,0xeb,0xc7,0x4e,0xa8,0xc9,0xd0,0x69,0xdd,0xf7,0xc2,0xf4,0x3d,0x6d,0xf5,0x6d,0xf5,0x0c,0x38,0xd7, + 0xae,0xe0,0x36,0xac,0xfb,0x54,0xab,0xc1,0x11,0xf7,0xbc,0x21,0x2a,0x5c,0x4c,0x47,0x32,0xe3,0x9b,0x0c, + 0x5c,0x7b,0xad,0x19,0xa1,0x37,0x63,0x65,0xb3,0x0b,0x59,0x73,0x57,0x8b,0xf1,0x0e,0x11,0x16,0xbc,0x9b, + 0x10,0x7b,0xfb,0x5e,0x96,0x57,0x74,0x53,0xa5,0x65,0xd5,0x53,0xd7,0x48,0x2f,0x55,0x9e,0x7e,0x00,0xb8, + 0x94,0x66,0xbe,0x3d,0xa8,0x1c,0xb3,0x87,0x69,0xb7,0x92,0x5b,0x01,0x74,0x41,0x4f,0x75,0x2a,0x35,0xec, + 0xc0,0x12,0x95,0x40,0xa2,0x9c,0xa4,0x16,0x39,0x88,0x4c,0x13,0xc8,0xb0,0x89,0x07,0xc7,0x55,0x94,0x20, + 0x68,0x09,0x9f,0x1b,0x96,0x3f,0x54,0x67,0x21,0x34,0xd0,0x05,0x28,0xf9,0x61,0x98,0xce,0x2d,0xd1,0x00, + 0xd7,0xc8,0x22,0x22,0xdf,0x20,0x40,0x24,0x03,0xfd,0x11,0xb5,0x2d,0xd2,0x7f,0xa2,0x0d,0x72,0x69,0x80, + 0xf8,0x03,0xdd,0x00,0x1d,0x51,0x6e,0x40,0x6f,0xfd,0x7a,0x3d,0xe5,0xc8,0x32,0x3a,0x6a,0x4b,0x6a,0xd6, + 0xb2,0x1a,0xbc,0xbd,0xac,0x94,0x0c,0x55,0x87,0xc4,0xf3,0x57,0xb4,0xd3,0xbc,0xae,0xc1,0xa0,0x52,0x01, + 0x4c,0x56,0x21,0x1d,0x60,0xcd,0x45,0xb5,0x0f,0x5d,0x61,0xd1,0xf0,0xec,0x65,0xd5,0x44,0x8e,0xa7,0x29, + 0x36,0xe3,0x82,0xc0,0xb7,0x7c,0x05,0x0c,0xaf,0x8a,0x55,0x2c,0x84,0x22,0x5a,0x28,0x60,0x12,0x4c,0x9f, + 0xd5,0x85,0x73,0x52,0xc5,0x52,0x4a,0x11,0x89,0xbe,0xa7,0x03,0xf4,0xf6,0xfe,0x13,0x73,0xff,0x4f,0xec, + 0xd7,0xe5,0x6e,0xd5,0xab,0xe3,0x66,0x2b,0xf1,0xb8,0xda,0xe1,0x72,0xb5,0x04,0x59,0xd2,0x13,0x33,0x1d, + 0xb1,0x54,0x73,0x02,0x7a,0xf0,0x91,0xaf,0x6f,0x5e,0xe1,0xf1,0xf0,0x4b,0x9d,0x1a,0x8f,0x36,0xce,0x33, + 0x5a,0x88,0xa0,0x76,0xa1,0xe9,0xc8,0x14,0xef,0x48,0x14,0xf3,0x70,0x04,0xa0,0x03,0xd8,0xfb,0xe2,0x60, + 0x28,0x7f,0x1f,0xc8,0xdf,0x87,0x9f,0xc9,0xdf,0x07,0x0f,0xd5,0xdf,0x2f,0x54,0xfa,0xe7,0x43,0x13,0x80, + 0x4c,0x2a,0x7c,0xaa,0x0a,0xa8,0x0a,0x0f,0x3f,0x1d,0x6a,0xf5,0xe2,0x19,0x54,0xdd,0xa5,0xd4,0x83,0xfb, + 0xaa,0x79,0xf9,0x73,0xb0,0xaf,0xfe,0xaa,0xde,0x0e,0x3e,0x53,0x09,0x9f,0x7d,0x7a,0xff,0xef,0xaa,0xcc, + 0xe7,0xf7,0x75,0x25,0xfa,0xf5,0x40,0x37,0x7a,0x55,0x7a,0xe6,0xe1,0xef,0x71,0xf4,0xc5,0xdf,0x89,0x65, + 0x79,0x14,0x1d,0xdc,0xbf,0xbf,0x5e,0xd3,0xe7,0x67,0x9f,0xf2,0xe7,0x17,0xfb,0x63,0xd5,0xf9,0x90,0x12, + 0x1f,0x7e,0xc1,0x89,0x9f,0xfe,0x7d,0xec,0x89,0x21,0x84,0x37,0xf4,0xf8,0xd9,0xa7,0x23,0x20,0x09,0x96, + 0x49,0xee,0x3a,0x05,0x17,0xbe,0xb7,0xef,0xed,0x58,0xc1,0x8b,0xf7,0x21,0x43,0x4b,0xcb,0x97,0xf1,0x4b, + 0x09,0xca,0x46,0x08,0xb7,0x0a,0xbf,0xd6,0xd1,0xea,0x3a,0xdf,0xdc,0xdc,0x65,0xd7,0x63,0x37,0x8d,0xaa, + 0x2c,0xa3,0xcc,0x73,0x40,0x3d,0x3c,0x78,0x08,0xb1,0xce,0xdd,0xbb,0x0f,0xbe,0xc0,0xdf,0x31,0xde,0xda, + 0x94,0x4a,0x50,0x48,0xf9,0x60,0x05,0x87,0xde,0x27,0x5e,0xbf,0xd2,0x01,0xd0,0xc5,0xbf,0xd5,0xa5,0xc6, + 0x85,0x35,0x57,0xa6,0x7d,0x6f,0x40,0x53,0xe1,0x48,0xc8,0xbe,0x9e,0xf2,0x94,0xe7,0x85,0xa7,0xed,0xf2, + 0x67,0x71,0xf9,0xea,0x2a,0xd3,0x81,0xf6,0xc2,0xf7,0x51,0x17,0x81,0xfa,0x3c,0xab,0x16,0x56,0xb0,0x30, + 0x7c,0x0e,0x9e,0x21,0xb2,0x4d,0x7a,0x91,0x10,0xf3,0x70,0x11,0x57,0xe1,0xc9,0x07,0x57,0x14,0x2f,0x7e, + 0xaa,0xda,0xdb,0xe8,0x5a,0x1c,0x6b,0x3c,0x6d,0x04,0xa9,0x74,0x7c,0x1a,0xd9,0x0c,0x60,0x32,0xc0,0x69, + 0x8b,0xe4,0x0f,0xbf,0x23,0xbe,0x7d,0x8b,0x9f,0xe3,0xeb,0xcd,0x50,0x47,0x24,0x62,0x9c,0x70,0x6d,0x0a, + 0x1b,0x74,0x49,0x23,0x7a,0xa1,0xd2,0xa5,0x52,0xa0,0xaf,0x3b,0x04,0x5a,0x1c,0xe9,0xd4,0x4e,0xa7,0x37, + 0x15,0x51,0x0b,0x55,0x68,0x11,0x3e,0x09,0x1b,0x13,0xd8,0x97,0x51,0xd5,0x11,0x81,0x51,0x42,0x9a,0xa2, + 0x51,0xf6,0x1d,0xfc,0x03,0x23,0x89,0x17,0x49,0x59,0xc6,0xa7,0xb8,0xc3,0x2b,0xb9,0xfb,0xd4,0xf5,0x43, + 0xdd,0x88,0xc7,0xa9,0xb7,0xd6,0x1c,0xc3,0x3a,0xe5,0x17,0x94,0x4a,0x94,0x47,0x30,0x19,0xea,0x15,0x92, + 0x70,0x89,0x40,0x53,0xd9,0x0f,0xac,0xc2,0xac,0x23,0x31,0x2d,0xd2,0x93,0x04,0x59,0x4f,0x61,0xea,0xc3, + 0x7a,0x92,0xcc,0xb4,0x49,0x31,0x5d,0x42,0x9c,0xc1,0x6d,0xea,0x78,0x1c,0x6a,0x09,0x45,0x16,0xce,0x3b, + 0x50,0xe4,0x79,0xa5,0x83,0xdc,0xe3,0xb7,0x20,0xbd,0x76,0x8a,0xb3,0xd6,0xfc,0x7c,0xca,0x63,0x41,0x81, + 0xa8,0x59,0x56,0xed,0xd4,0x60,0x4e,0xf4,0xd9,0x09,0x31,0x32,0xb2,0x38,0xad,0x62,0x8d,0x7c,0x5d,0xab, + 0x24,0xc6,0x30,0x13,0xfd,0xd3,0x05,0x1b,0x29,0xfc,0x02,0x41,0x5c,0xab,0x72,0x67,0x31,0x76,0xd4,0xeb, + 0x42,0x40,0x71,0x2b,0x04,0x14,0xa0,0x17,0xdb,0x10,0x60,0xb6,0x97,0xf7,0xb4,0x8c,0x8a,0xee,0xcd,0xc4, + 0x03,0xfb,0x0b,0xbd,0xb0,0xff,0x6d,0x7b,0x1a,0x5a,0x97,0x85,0x5a,0xb6,0xf7,0x19,0x3f,0xf3,0x99,0x0f, + 0xbe,0xdd,0xc5,0x2f,0x20,0xaf,0xaf,0x33,0xa0,0x3b,0xf5,0x80,0x64,0xf5,0x7d,0x6d,0x99,0xd7,0xfb,0x0b, + 0x70,0x31,0xf6,0xad,0x85,0x69,0x41,0xc5,0x5f,0x98,0x2e,0x78,0x73,0x79,0x25,0xc1,0x23,0xab,0x0a,0xb0, + 0xa0,0x46,0xe4,0x7e,0x37,0xe1,0xd4,0x39,0x76,0x76,0xc1,0xbf,0x34,0x1c,0xed,0x07,0xee,0x59,0x33,0x4c, + 0xad,0x76,0x04,0x27,0x43,0xf3,0x5b,0x95,0x9d,0x11,0x0d,0x56,0xd9,0x4d,0x3d,0x2b,0xc1,0x67,0xab,0x8d, + 0x0e,0x28,0x73,0x9a,0x55,0x69,0x7e,0xa3,0x05,0x2b,0x4b,0xb7,0xe0,0x00,0x46,0x37,0xb8,0x34,0x5b,0x71, + 0x32,0xed,0x91,0x48,0xd8,0xb8,0xcd,0x26,0xbc,0xd2,0x5e,0x5b,0x91,0x5a,0x7b,0x73,0x8c,0x17,0x30,0xf4, + 0x16,0xc7,0x8a,0xac,0xf5,0x76,0x6d,0x7b,0xb2,0x55,0x5a,0x01,0x43,0x71,0x99,0xb8,0xe1,0x88,0xe4,0x6e, + 0x09,0x4d,0x71,0xe1,0xe1,0x50,0xd3,0xa3,0x76,0x81,0x4d,0xc8,0xaf,0xe1,0xa5,0x4a,0x3c,0x62,0x6a,0xcf, + 0x38,0x93,0xdd,0xb4,0x3c,0x39,0x3a,0xa4,0x3d,0x0f,0x0b,0xf2,0x09,0x09,0x9f,0x81,0x28,0xb2,0xb5,0xb5, + 0x19,0xf2,0x2d,0xc0,0x91,0x78,0x1a,0x7e,0x2e,0x82,0xfd,0x5b,0x5d,0xc7,0xaa,0xb0,0x70,0x91,0xfc,0x31, + 0xe1,0x77,0x89,0x9e,0xb7,0x1c,0xb9,0x8a,0x00,0xbe,0x10,0x42,0x1a,0xd1,0x3c,0x14,0x21,0xbd,0x80,0x80, + 0x7a,0x85,0x0c,0x9e,0x1b,0x1b,0x84,0xce,0x1b,0xec,0xda,0x2a,0x18,0xaf,0x74,0xd0,0xdf,0xfd,0xa1,0x7d, + 0x6f,0xad,0x02,0x93,0xce,0x1a,0xd8,0x0d,0x9e,0xc9,0xf6,0xc7,0x87,0x63,0x54,0x07,0x30,0xaf,0x49,0x1e, + 0x2b,0xa8,0x39,0x0f,0x41,0x53,0x3d,0x75,0xdc,0xf3,0xbb,0x77,0x3d,0x7e,0x4c,0xdc,0x6c,0x6a,0x91,0xfe, + 0xdd,0xbb,0xb9,0xe9,0x99,0x98,0xd2,0x19,0xb5,0xee,0x7b,0xcf,0xe7,0x3d,0x99,0x45,0x0f,0xab,0xdd,0x4b, + 0xcb,0x1e,0x9c,0xcc,0xf4,0xe8,0x0e,0xe8,0xf1,0x5a,0xf7,0x12,0x11,0x99,0x96,0x3d,0x98,0x3f,0xf4,0xce, + 0xe2,0xcb,0x44,0x2a,0x48,0x79,0x2a,0x3c,0x20,0x2e,0xa8,0x63,0xee,0x6d,0x9c,0x0e,0xb6,0x60,0x41,0x0c, + 0x20,0x9c,0x87,0x36,0x57,0xa4,0xeb,0x06,0x58,0xc0,0xf3,0xd9,0x8a,0xfe,0x81,0x8a,0xe5,0x96,0xf6,0x84, + 0xb7,0x9f,0x8d,0x3d,0x98,0x4f,0x35,0x97,0x65,0x48,0xa9,0xd5,0x68,0x01,0xe1,0x17,0xc4,0x99,0xca,0xeb, + 0x7f,0x98,0x86,0xf1,0x20,0xf5,0x25,0xf6,0x04,0x8e,0xc6,0xd3,0xa8,0x85,0x28,0xa6,0xd4,0x13,0x5d,0x2e, + 0x1d,0x0f,0x24,0x9b,0xd1,0x53,0x8b,0x9e,0x4b,0x61,0x37,0xb8,0xcc,0x21,0x0f,0xb7,0xe5,0x44,0xb5,0x3b, + 0x04,0xab,0x35,0xb8,0x96,0xd3,0x4c,0x2a,0xb4,0xf0,0x6e,0xd4,0xe8,0x23,0xc6,0xcf,0xf3,0x6c,0xb5,0x3e, + 0x23,0x6f,0x3e,0xca,0xfa,0x7d,0x96,0xcf,0x78,0xd7,0xca,0xff,0x6b,0x81,0x67,0x05,0xeb,0x59,0x9f,0xd5, + 0x53,0x3c,0xa5,0x2b,0x56,0xe0,0x31,0x1f,0x6d,0x09,0x4b,0x4a,0x3f,0xc4,0xc6,0x42,0xb5,0xe3,0x6d,0x58, + 0x87,0x65,0x14,0xe4,0xfd,0x28,0x0d,0x4d,0xb2,0xc8,0x24,0x0e,0x85,0xee,0xce,0x83,0xb1,0xc7,0xce,0x46, + 0x87,0xe7,0x75,0x02,0x90,0xc9,0x8c,0x28,0xfd,0x95,0x38,0xa5,0xf3,0x46,0x7a,0x08,0xd2,0x6d,0x2e,0x1e, + 0xb1,0xe3,0x8d,0x68,0xc9,0x7b,0xff,0x83,0xc7,0x3a,0xa6,0x31,0x83,0x30,0xa7,0x1d,0x81,0xc8,0x8f,0xba, + 0x0c,0x86,0xf8,0x57,0x73,0x1c,0xb7,0xce,0xa4,0xda,0x30,0xfb,0xe8,0xae,0x6a,0x54,0x38,0xa2,0xea,0xac, + 0x66,0x3e,0x43,0x09,0x3e,0xdd,0x94,0xad,0xe8,0xe9,0x30,0x4b,0xd1,0x9e,0x09,0xd6,0x56,0x7f,0xb0,0x6d, + 0xb8,0x1e,0x1d,0x2f,0xdd,0x28,0x6d,0x6e,0x4a,0x4c,0x13,0x4a,0x27,0x9a,0xe1,0x8b,0xd5,0xbb,0x34,0x38, + 0x2b,0x19,0xff,0x50,0x71,0xb4,0xb1,0x62,0xce,0x45,0xeb,0x95,0xf9,0x36,0x35,0x10,0x55,0x20,0x3b,0x62, + 0x4a,0x87,0xe8,0x76,0x5d,0x36,0x3c,0xd8,0x0f,0x26,0x4e,0x05,0x3d,0x5a,0xf9,0x2b,0x6a,0xe1,0xa6,0xba, + 0xaa,0x45,0x34,0x6e,0xda,0xef,0x9b,0x45,0xdd,0x70,0xb8,0xbb,0x0d,0x6f,0xea,0x61,0xb4,0xf7,0x2f,0xff, + 0x78,0x16,0xf4,0xf7,0xc2,0x73,0xfe,0x79,0x85,0x9f,0xef,0x68,0x99,0xde,0x44,0x07,0xe1,0x93,0xe8,0x7e, + 0x78,0x27,0x7a,0x10,0xbe,0xa2,0xef,0xaf,0xa2,0x87,0xe1,0xeb,0xe8,0xd3,0xf0,0x59,0xf4,0x59,0xf8,0x7b, + 0xf4,0xf7,0xf0,0x79,0xf4,0x79,0xf8,0x03,0x18,0xfa,0x1f,0x8e,0x5e,0x4d,0xa2,0xeb,0xab,0x72,0x48,0x7f, + 0x43,0x66,0x03,0x87,0x47,0x0f,0xc2,0x77,0x93,0xd0,0x3b,0xf2,0x86,0x47,0x5f,0x4d,0x42,0xba,0xe4,0x87, + 0x47,0xbf,0x4f,0x36,0xe1,0x0f,0x47,0x07,0xaa,0xe4,0x01,0xe5,0x0e,0x28,0xf7,0x7e,0x67,0xa9,0xfb,0xaa, + 0xd4,0x7d,0xb7,0xbd,0x7d,0xf5,0x57,0xb8,0x4a,0xf9,0x40,0xf1,0x07,0x54,0xfc,0xb6,0x72,0x21,0xf7,0x1a, + 0xbe,0xd1,0xfd,0xf2,0x2f,0xee,0x19,0xbf,0xa4,0x6f,0xfa,0x85,0xe6,0xbe,0xa2,0xe6,0xbc,0x7b,0x94,0xf5, + 0x1a,0xf5,0xee,0x79,0xf7,0x86,0x47,0xcf,0xea,0xe9,0x84,0x4f,0xe8,0xd7,0xc4,0x43,0x63,0x77,0xa4,0xe2, + 0x73,0xb6,0xe7,0x43,0x96,0x0c,0xe7,0xb5,0xae,0x8f,0x04,0xa7,0xc4,0x6b,0x55,0xe2,0x19,0x95,0xe0,0x76, + 0x5b,0x25,0xd0,0x91,0x6c,0xcc,0xd7,0x6c,0xf3,0x4c,0xa4,0x5a,0xb1,0x4a,0xd6,0x6c,0xcb,0xb9,0xde,0x1d, + 0x1f,0x1d,0xcf,0x06,0x93,0xfe,0xfa,0x1e,0xfb,0xc0,0xba,0xb7,0xf6,0xd8,0x2d,0x96,0x17,0x50,0x39,0x38, + 0x26,0xda,0x82,0xb6,0xba,0xb1,0xd6,0x4b,0x0b,0x6b,0x31,0x94,0xbd,0xa6,0x4b,0xad,0x2d,0xa1,0xb2,0x31, + 0x96,0x85,0xb0,0x2a,0xe8,0x67,0x74,0xc8,0xb3,0x74,0xd8,0xbb,0x18,0xa1,0x7c,0x70,0xe0,0x16,0xd1,0xee, + 0x01,0x5d,0x8d,0xaf,0x38,0xee,0xdd,0x19,0xc0,0x05,0x67,0xe6,0xec,0xe8,0xcd,0xc4,0x31,0xee,0xd0,0xf7, + 0x54,0xc6,0xba,0x3c,0x02,0xbd,0x70,0x51,0x28,0x19,0xb0,0xd5,0x3f,0x7a,0xd7,0x51,0x03,0x92,0xda,0x71, + 0x16,0x15,0xc3,0xac,0x4f,0x84,0x3f,0x15,0x7a,0xe2,0x14,0x42,0x25,0xa2,0x8c,0xe6,0x04,0xfb,0x94,0x77, + 0xc7,0xc9,0x83,0x46,0xe4,0xe3,0xfd,0x60,0xbe,0xbb,0x4b,0xc3,0xfb,0x2a,0x94,0xa2,0xe6,0x2d,0x12,0xa3, + 0xdd,0xc1,0xd3,0x87,0x9f,0x45,0x4b,0x76,0x99,0x67,0xc4,0xa2,0x18,0x3b,0xd4,0x31,0x47,0x4a,0x06,0xbe, + 0x62,0x87,0xf1,0x8b,0x7e,0x1f,0xfe,0x13,0x59,0x59,0x08,0x3e,0x17,0x17,0x78,0xb1,0xd8,0x69,0xf0,0xd3, + 0x9c,0xd1,0x3f,0x60,0x6c,0xbd,0xa2,0xc6,0x5f,0xd3,0xad,0x7c,0x8f,0xd5,0xba,0xd6,0x6b,0x7c,0x3f,0xbb, + 0x7b,0x97,0xc0,0x02,0xdf,0xc6,0x77,0x37,0x35,0x4b,0xd8,0x9a,0x1a,0xee,0x57,0x6a,0x8c,0x88,0xb0,0xec, + 0x07,0xca,0x8a,0x6b,0x06,0xb1,0x18,0xe8,0x9c,0x32,0xfa,0xe1,0x68,0x35,0x09,0x08,0xef,0xac,0xd7,0x25, + 0x2b,0x82,0xae,0xd7,0xcf,0x21,0x5b,0x7e,0xae,0xb5,0x82,0xb8,0x4f,0xd8,0xb1,0x84,0x7e,0x1c,0x9d,0x1d, + 0xe5,0x74,0x06,0x27,0xf2,0x0e,0x9b,0xe3,0xa0,0x15,0x91,0x59,0xd2,0x62,0x5c,0x0d,0x0b,0x99,0x3e,0xf1, + 0x3f,0x81,0xd3,0x40,0x14,0xfd,0x6e,0x9c,0xa3,0x8a,0xb2,0x9b,0x21,0x48,0x35,0x8c,0x44,0xf0,0x3f,0x0c, + 0xb2,0x6b,0x13,0xda,0x40,0x76,0x9a,0x54,0x00,0x31,0x16,0xe4,0x36,0xee,0x46,0xc8,0xc8,0xab,0xda,0x41, + 0x6b,0xfd,0x08,0xa3,0xbd,0x6f,0x6b,0xf8,0x84,0xc7,0x5a,0x9e,0x77,0xd1,0xa0,0x30,0x10,0xde,0x0d,0x43, + 0xd7,0xee,0xb4,0x9d,0x96,0x2c,0x6b,0x9f,0xda,0xd4,0x8c,0x90,0xb4,0x72,0xc1,0x9d,0x8f,0xb4,0xe3,0xed, + 0xf8,0xa8,0x38,0x2a,0x27,0xd6,0x63,0x07,0x94,0xcd,0x82,0x6b,0x71,0x43,0xa5,0x6c,0x13,0xe2,0x68,0x1a, + 0x96,0x35,0x32,0x8d,0xe5,0xb4,0xbe,0xd8,0x72,0x72,0x46,0x35,0xff,0x07,0x6e,0x1c,0xda,0xb2,0xe6,0x75, + 0x49,0x88,0xc7,0xf5,0xda,0x4b,0xb2,0xdd,0x9f,0xde,0x78,0x2c,0xcf,0x75,0x79,0xed,0x3a,0x8f,0x2d,0x92, + 0x14,0x8b,0xcb,0xe4,0xa5,0x0a,0x63,0x6e,0xc9,0x80,0x24,0x1d,0x56,0x94,0x99,0x25,0xe2,0xe1,0xd4,0x91, + 0x72,0x65,0x7d,0x21,0x0f,0x7c,0xf2,0x35,0xe7,0x7c,0x22,0x57,0x22,0x56,0x60,0x93,0xdf,0xeb,0x35,0x18, + 0xe5,0xa7,0xaa,0xc8,0x45,0x5a,0xc2,0x15,0x08,0xfa,0x96,0x5f,0x22,0xf0,0xd4,0xde,0xa5,0x21,0x54,0x48, + 0x58,0xb6,0xe0,0xa4,0x83,0xab,0x8d,0x2c,0xbe,0x57,0x58,0xde,0x9d,0x1d,0xf9,0xa5,0x7b,0x57,0x13,0x65, + 0x7d,0x28,0xab,0xb0,0x9d,0x2e,0x95,0xec,0x14,0xdd,0x43,0xa7,0xec,0xc1,0x20,0x91,0xa4,0x5b,0xea,0x40, + 0x24,0xee,0xce,0x96,0x2c,0xd5,0xae,0xbb,0xa0,0x78,0x79,0x07,0x61,0x2f,0x79,0xf6,0xa2,0xba,0x39,0xe0, + 0x06,0x58,0xbe,0xf0,0xb2,0x6e,0x26,0xae,0xdd,0x05,0x10,0x12,0x94,0x64,0x7e,0x3f,0x68,0x40,0xbe,0xc2, + 0x2a,0xfe,0x0e,0xd4,0x19,0xb3,0xf5,0xba,0xf0,0x2b,0x69,0xd0,0x39,0x2e,0x12,0x4e,0x5b,0x1b,0xa5,0xbf, + 0x85,0xd3,0xd8,0x9f,0x5f,0xf8,0xfa,0xbd,0x33,0x0b,0x5d,0xa8,0x19,0xc2,0x7d,0xa3,0x80,0x0a,0x91,0x5d, + 0x0d,0x20,0x19,0xc6,0xa1,0x03,0x1e,0xc3,0x92,0x28,0xb2,0xf0,0xc7,0xe8,0xfa,0xf2,0x62,0x78,0xbd,0xa9, + 0x2b,0xd2,0xef,0x66,0x4d,0x4a,0x72,0xab,0x5e,0xd7,0x1c,0xde,0xa6,0x39,0x06,0xb4,0x25,0x30,0xc3,0x99, + 0x7a,0xd9,0xf0,0xd1,0xb9,0x03,0x94,0xb1,0xd1,0x97,0xcb,0x0b,0xdb,0xf5,0xb0,0x4c,0xb6,0xe3,0x78,0x9d, + 0x69,0x5f,0xd0,0xd2,0xde,0xa8,0xf1,0x0d,0xe9,0x4b,0x0d,0xf6,0xb4,0x3b,0x44,0x43,0x62,0x63,0xa0,0x1a, + 0x1b,0x36,0xcb,0x56,0x9b,0xd0,0xee,0xb4,0x93,0xdd,0x6f,0xfb,0x42,0x70,0x37,0xba,0x56,0x37,0xb3,0x9b, + 0xda,0x22,0x3b,0x70,0x1a,0x6b,0x18,0x0e,0x30,0xb7,0x67,0x87,0x30,0xc9,0x2c,0x5b,0xcd,0x8a,0x11,0x60, + 0xf6,0x78,0xf7,0x20,0x90,0xf7,0xe9,0x29,0xe4,0x98,0x50,0x90,0xf4,0x3b,0xc6,0x14,0x36,0x87,0xe3,0xc8, + 0xb6,0x9a,0xe6,0x95,0x22,0xfb,0x73,0x5c,0x82,0xd3,0xe2,0x0d,0xee,0x70,0x25,0xdf,0xbb,0x83,0xa6,0x9d, + 0x10,0x15,0xb6,0x41,0x43,0x63,0x31,0x6c,0xfb,0x86,0xb3,0x4e,0xa7,0xc8,0xcd,0x2a,0xc4,0x08,0xb2,0x13, + 0xf4,0x66,0x62,0x2b,0xf0,0xc5,0x26,0xbc,0x9e,0x25,0xc9,0x52,0x54,0x93,0xdb,0xb3,0x53,0x62,0x4c,0xf7, + 0xaa,0xdf,0xa9,0x51,0x13,0x1d,0xb4,0x1a,0x7f,0xb5,0x6e,0x9c,0x44,0xc7,0x32,0xb9,0x70,0xd7,0x81,0x05, + 0x64,0xd6,0x62,0x08,0xe0,0x5b,0xab,0xc1,0x9e,0x3d,0xee,0x10,0xfb,0x0b,0x2b,0x16,0x9d,0xcb,0x7e,0xf9, + 0x1b,0xe3,0x0f,0xaf,0xd3,0x0b,0x22,0xd5,0x53,0xc8,0xdb,0x65,0x0a,0x3f,0xa2,0x61,0x3a,0xef,0xf6,0x98, + 0x1b,0x9b,0x80,0x42,0xfa,0x6c,0x6e,0x29,0x1a,0x2b,0x00,0xa0,0x5c,0x25,0xe0,0x2e,0xd9,0x03,0xf8,0x8f, + 0xcd,0x7b,0xe2,0xf6,0xfa,0xee,0xe3,0x82,0x6e,0xc6,0x39,0xfc,0xb7,0x37,0x62,0x3f,0x34,0xe8,0x26,0x64, + 0x5d,0x6e,0x99,0xab,0x7e,0x74,0xaf,0xcb,0x97,0x49,0xd5,0x71,0xfa,0xb0,0x1b,0x58,0x6f,0xfd,0x55,0x2f, + 0x7b,0xc2,0x9d,0xb9,0x18,0xe9,0xb6,0x4e,0xdd,0xd2,0x1d,0xf5,0x3f,0x74,0x10,0x6e,0x35,0x3d,0x18,0x85, + 0x0c,0x6f,0x1c,0x85,0x2a,0x63,0x17,0xef,0xee,0xd4,0xdc,0xcb,0x3c,0x4c,0x8d,0x5b,0x6f,0x6c,0xdb,0x94, + 0x72,0xab,0x74,0xb7,0x6f,0x91,0x06,0x28,0xde,0x89,0xb0,0x6f,0xec,0xad,0xb3,0xc6,0xf6,0xa6,0xba,0x47, + 0xd1,0x7d,0xcb,0x27,0xee,0x91,0xb7,0xc1,0xfd,0xa6,0xed,0xd5,0x87,0xa7,0x5d,0xbb,0x01,0xec,0x37,0x35, + 0xd2,0x38,0x48,0xed,0xb6,0x1c,0x98,0xbf,0xa9,0x25,0xe7,0x2c,0x35,0xda,0x81,0x72,0x99,0xf2,0xea,0xe4, + 0xe8,0x1a,0x11,0x73,0x95,0x9a,0x96,0x60,0xe0,0xad,0xe4,0xf8,0x0a,0x1a,0x94,0xd0,0x5f,0x43,0x8e,0x3c, + 0xc8,0x33,0x59,0x76,0x84,0xca,0xe9,0x04,0x86,0x1b,0xc3,0xac,0xd1,0x59,0x5a,0x7e,0x6d,0x53,0x62,0x1d, + 0x2e,0x71,0x12,0x44,0x6c,0xf4,0x2d,0x94,0xa9,0x3a,0x72,0x48,0xb8,0x66,0xab,0xdd,0x62,0xb0,0x4a,0xf3, + 0x86,0x0a,0x27,0xb7,0xb0,0xef,0x34,0xaa,0x49,0x2a,0x97,0x02,0xaa,0x54,0xdc,0x5d,0x97,0xec,0x9f,0x1a, + 0x96,0x61,0x2a,0x06,0x43,0xac,0x8a,0xa9,0x23,0x12,0xef,0xb0,0x02,0x81,0xdd,0x87,0xa5,0x9d,0xaa,0x1f, + 0x49,0x11,0x29,0x9c,0xb8,0x26,0xa7,0xdc,0x46,0xb3,0x81,0x2d,0x3d,0xb1,0xa9,0xd3,0xdc,0x22,0x9a,0x6a, + 0x3e,0x60,0x51,0x5b,0x4f,0xff,0x63,0xe8,0x05,0xec,0xa5,0xc4,0xd7,0x81,0xb1,0xe0,0x70,0x9c,0xa7,0xbf, + 0x50,0xd3,0x87,0xb9,0xa8,0x0e,0xd1,0xc2,0x11,0x0a,0x16,0x9c,0x3c,0x5c,0x34,0xd6,0x11,0x15,0x9b,0x30, + 0x60,0x87,0x94,0x8e,0xb2,0x10,0x3a,0xce,0xe2,0xab,0x60,0xcf,0xff,0xc7,0xf0,0xe8,0xf8,0xea,0x78,0xf7, + 0xed,0x7a,0x30,0xe9,0x07,0x7b,0xa7,0xb5,0xb6,0xf9,0x14,0x9a,0x0f,0x25,0xf8,0xd4,0xb2,0xf1,0xe4,0xcc, + 0x6b,0x25,0xea,0x1e,0xe5,0xd1,0x14,0xf1,0x7e,0x16,0xca,0xba,0xdb,0xbf,0x4f,0x9c,0xb3,0x7e,0x17,0xab, + 0xf7,0x93,0x47,0xb1,0xa2,0x51,0x78,0x45,0x7c,0xa5,0x84,0x78,0x6a,0x95,0x88,0xf0,0xac,0x13,0x85,0x1a, + 0x1f,0x2a,0x3f,0x0d,0xd2,0x8a,0x03,0x6b,0xb0,0xf8,0xb3,0xae,0x66,0x06,0x2d,0x76,0x75,0xd4,0xfb,0x0a, + 0x0a,0xed,0x10,0xb9,0x89,0xa5,0x77,0x32,0xeb,0xb1,0x8a,0xbb,0xf2,0x61,0x38,0x8b,0xea,0x0a,0xa3,0x79, + 0x34,0x53,0x61,0x53,0x78,0x6c,0xb3,0xc6,0xf5,0x87,0xa8,0xe4,0x22,0xa2,0x9f,0x35,0x9f,0x31,0x57,0x6a, + 0x21,0x89,0xa1,0xf3,0xf5,0x34,0xad,0x93,0xe7,0xa3,0xc4,0x1c,0x8a,0x46,0xe3,0xd8,0x98,0x44,0x2f,0xc2, + 0x79,0x30,0x8c,0x6b,0xd6,0xcf,0xdd,0x2c,0xa5,0x68,0xeb,0x6e,0x97,0x2b,0xf8,0xad,0x11,0xaf,0xbb,0xa2, + 0x26,0x10,0x4b,0xad,0x05,0x14,0x55,0xe3,0x42,0x59,0x98,0x21,0x5e,0x7a,0xa3,0x2f,0x33,0xe5,0x16,0x86, + 0xd0,0x07,0xcc,0x3e,0x4e,0x76,0x67,0x55,0x08,0xab,0x52,0x53,0xce,0x48,0xa0,0x09,0x10,0xc6,0x85,0xdf, + 0x55,0x23,0x0b,0x21,0x9f,0x35,0x35,0x54,0xc0,0xf9,0xe9,0x70,0xda,0x1c,0x53,0x0b,0x52,0x6b,0x0a,0x51, + 0xf9,0x1f,0x6a,0xaa,0x19,0xee,0x3e,0x1c,0xc5,0xbb,0xbb,0xbd,0xc7,0xfb,0xa3,0x00,0xaa,0x7f,0x96,0x4a, + 0x6a,0xdc,0x7f,0xc8,0x7c,0xf8,0x8e,0x51,0xad,0xf1,0xd4,0xf3,0x4b,0xaa,0x50,0x9b,0x72,0x87,0x90,0xc3, + 0xd2,0xaf,0x34,0xcc,0x74,0x65,0xa2,0xd1,0xd5,0x50,0x91,0x85,0x8a,0xeb,0x6c,0xbe,0x64,0x03,0x8a,0xd5, + 0x82,0x87,0x2c,0x65,0x88,0x2f,0xca,0xed,0xf0,0xba,0xf8,0x78,0x78,0x55,0x3a,0x2d,0x2b,0x0b,0x64,0x1d, + 0x65,0xa9,0xc4,0x28,0x4b,0xe5,0x96,0x7d,0x7d,0x0b,0x16,0xa7,0x21,0xbc,0x6c,0x16,0xca,0x0f,0xb4,0xbb, + 0xec,0x2e,0xce,0x6e,0x3c,0x1b,0xb4,0xd6,0xfb,0x00,0xfa,0xbf,0xbc,0xde,0x55,0x43,0x05,0x18,0x62,0x29, + 0x35,0x5c,0x81,0xd6,0x80,0x96,0x50,0x8d,0xb4,0xe0,0x2b,0x04,0xc3,0x52,0xa7,0xa9,0x83,0xd2,0x64,0xa3, + 0x6c,0x33,0x9d,0x4a,0x9b,0x0b,0x35,0x2f,0x86,0x0e,0x6c,0xa6,0xb5,0xe3,0xda,0xdb,0x56,0x6d,0xdf,0x36, + 0xe0,0x19,0x1d,0x8a,0xbd,0x6b,0xb3,0xf2,0x3f,0xbb,0x59,0x36,0xbd,0x9f,0xca,0x9d,0x75,0xc3,0xce,0xd0, + 0x69,0xa2,0x63,0x51,0x34,0xf8,0x90,0xe6,0x2c,0xeb,0xc7,0xc6,0x71,0xfb,0x4a,0xa9,0x58,0xbd,0xcf,0x5a, + 0x5d,0xf3,0x5c,0xcb,0x95,0xb7,0x2d,0x35,0x24,0x02,0x43,0xcf,0x6b,0x9e,0xc1,0x69,0xe7,0x02,0x1b,0xab, + 0x23,0x31,0xdf,0x6d,0x81,0xc5,0xa7,0xa3,0x52,0x81,0x45,0x7c,0x54,0xda,0x60,0x51,0xf6,0x3f,0xad,0x35, + 0xf6,0xc6,0xb5,0x54,0x2c,0x65,0xc5,0xeb,0x83,0x20,0xcc,0x7d,0x85,0x33,0x2c,0x70,0x99,0x0a,0xc5,0x41, + 0x7d,0x1b,0x78,0x88,0xe9,0xca,0x4b,0x79,0xc0,0x72,0xcf,0x37,0x60,0xd8,0x1d,0xb5,0xad,0xb4,0x7c,0x04, + 0xc9,0x64,0x6b,0xbc,0xf7,0x47,0x85,0x1a,0x2f,0xfb,0x47,0xa8,0xc7,0x5b,0xf4,0xef,0x1b,0x30,0x4e,0xcd, + 0xb8,0xa6,0x6a,0x60,0xe9,0x87,0xc2,0x71,0x58,0x99,0x91,0xeb,0x40,0x33,0x69,0x73,0xa5,0x9b,0xa8,0xd7, + 0x32,0x95,0x16,0x0b,0xb5,0xd6,0xa8,0x1f,0x8c,0x72,0x35,0xea,0x02,0x36,0x46,0xf5,0xa8,0xf3,0xfe,0x03, + 0xfd,0xc4,0xd6,0xc0,0x6e,0x45,0x50,0x63,0x36,0x17,0x40,0x59,0x9a,0x84,0x27,0x9e,0x49,0x8b,0xc9,0x6f, + 0x0c,0xad,0x41,0x7d,0xca,0x15,0x7e,0xcb,0x22,0x54,0x8d,0x26,0x29,0xd7,0xd1,0x9d,0xea,0x20,0x14,0x0d, + 0xef,0x67,0x51,0xdb,0x84,0xe0,0x20,0x7f,0x6c,0x34,0x56,0x6e,0x6f,0x8c,0x7d,0xf0,0x76,0xb4,0xd2,0x94, + 0xd0,0xb4,0xb5,0xb9,0x3e,0xa4,0x91,0xb3,0xc1,0xaa,0x4a,0x17,0x03,0xf1,0x89,0xb8,0x75,0xb4,0x5d,0x93, + 0x77,0x99,0x84,0x5b,0x66,0xdf,0x60,0x13,0xb6,0x2e,0xc2,0xd6,0x46,0x9d,0x09,0xb4,0x5b,0xeb,0x5c,0x8c, + 0x3f,0xdd,0xd8,0x96,0x45,0xe9,0x9e,0x44,0x6b,0x6d,0x44,0xd3,0x24,0xfd,0xc3,0xf4,0xdf,0x41,0x90,0x68, + 0x62,0xb5,0x82,0x47,0x6c,0x02,0x58,0x20,0x6d,0xa2,0xd2,0xcb,0x00,0xf2,0x4e,0x18,0x9b,0xf2,0x23,0x82, + 0x10,0xb3,0xc8,0x87,0x4b,0x30,0x3b,0xb3,0xcd,0x25,0x20,0x1d,0xd6,0x05,0x7d,0xef,0xed,0x5b,0x44,0x4a, + 0xd0,0x17,0x6c,0x5b,0x80,0x7b,0xb4,0x30,0xf8,0x0b,0xfe,0x9c,0x6e,0x2c,0xc8,0x62,0xc2,0x0e,0xed,0x4a, + 0x3f,0x86,0xd2,0x71,0xb8,0x52,0x7c,0x73,0x4b,0xc6,0xf7,0x76,0xd6,0x42,0x05,0xcc,0x7d,0x98,0x81,0x6f, + 0x69,0x56,0x14,0x16,0xa5,0x45,0xfb,0xb9,0xa3,0xb5,0xa6,0xf5,0x45,0xd0,0xb8,0x0a,0xb7,0x4b,0x6c,0xc2, + 0x6c,0xfb,0xdd,0x58,0xfc,0xaf,0xb8,0x1b,0xc5,0x45,0x61,0x65,0xee,0xc6,0x02,0x26,0xfe,0xee,0xba,0xcc, + 0x3a,0x49,0x93,0x6d,0x38,0xfd,0x60,0x3b,0x4e,0x3f,0x98,0x68,0xc3,0x0a,0x0b,0x6d,0xe5,0x2d,0x33,0x25, + 0x6d,0xff,0x30,0x6e,0xe9,0xd2,0xc3,0x50,0x7b,0x2c,0xd1,0x9f,0xf1,0xc8,0x0f,0xc3,0x22,0x8e,0x5a,0x02, + 0xef,0x10,0xdc,0x1a,0x5f,0x67,0xd6,0x37,0xe2,0x92,0xd2,0x07,0x47,0x5d,0xf5,0xa5,0x22,0x07,0x5c,0x15, + 0xf3,0xa5,0xec,0x06,0xf3,0xa5,0x4c,0xcc,0x97,0xa4,0x4e,0x10,0x76,0xe4,0x1f,0x4c,0x54,0x6f,0x6c,0xb5, + 0xa4,0xe0,0x11,0xc1,0xed,0x39,0x72,0x69,0x03,0xf1,0xd8,0x12,0x85,0x5b,0xd0,0x8e,0x23,0x53,0xd8,0x8a, + 0x74,0xb6,0x34,0xe8,0x60,0x89,0x66,0x4b,0x9d,0x08,0xe7,0x4f,0x35,0xb4,0x05,0xd9,0x74,0x0d,0x7d,0x3b, + 0xaa,0x91,0x9e,0xff,0x7f,0x45,0x34,0xcd,0xd7,0xa0,0x2d,0x68,0xa6,0xa3,0x58,0x8d,0x64,0xec,0x05,0xbc, + 0x15,0xc5,0x64,0x1f,0x88,0x62,0x9c,0x46,0x6f,0x45,0x30,0x52,0xfa,0x76,0xf4,0xd2,0x90,0xe5,0xfe,0x97, + 0x23,0x97,0xec,0x76,0xe4,0xd2,0xed,0x5a,0xe9,0xff,0x22,0x97,0x0e,0xe4,0x92,0x19,0xe4,0xa2,0x34,0x41, + 0xc4,0x50,0x40,0x89,0x80,0x52,0x22,0xf8,0xac,0x85,0x0d,0x7f,0x0c,0x68,0x9d,0xe3,0xcb,0x38,0x5d,0xc4, + 0x27,0xe9,0x22,0x45,0x7e,0x74,0xed,0xde,0x97,0xc3,0xf7,0xce,0x4b,0xe0,0xf0,0x04,0x5b,0xc3,0x1a,0xbd, + 0x8b,0x85,0x1d,0xb7,0x17,0xbe,0x18,0xce,0x22,0x82,0xc2,0x4b,0x82,0x7d,0x4a,0xba,0x7b,0x57,0x01,0xdc, + 0x99,0x4e,0xd1,0x26,0x96,0x03,0x2f,0xe0,0x19,0x25,0xba,0x19,0x09,0xc9,0xd4,0x35,0xde,0xf7,0x54,0xbb, + 0x1e,0xad,0x77,0x47,0xf4,0x57,0xaf,0x09,0x4a,0x87,0xdb,0x04,0xae,0x28,0x02,0x27,0x36,0x59,0x74,0xb6, + 0xa5,0xc9,0xcc,0x69,0xb2,0x6a,0xb7,0xd7,0x7e,0x1f,0xb3,0x5f,0x7e,0xfe,0x57,0x80,0x5f,0xa2,0xf4,0x56, + 0xb5,0x45,0x76,0xcd,0x4f,0x11,0xdb,0x42,0x5c,0xa8,0x31,0xfb,0x6a,0xd2,0xea,0x89,0xcd,0xab,0x6c,0x36, + 0xb5,0x55,0xc4,0xcd,0x73,0x9c,0x7e,0xdc,0x24,0x5b,0x0c,0x4e,0xda,0xc5,0x96,0xa5,0x86,0xc1,0x49,0xed, + 0x69,0xa6,0x60,0xcb,0x84,0xcb,0x6f,0x4c,0x33,0xb7,0xd8,0xb3,0x1c,0xf3,0x34,0xd6,0x69,0x79,0x6b,0x9e, + 0x61,0x66,0x66,0x5a,0x7c,0xcc,0x4c,0x93,0x8f,0x9f,0xa9,0xf2,0x97,0xe8,0x8e,0xb5,0x60,0xe6,0xa9,0x0a, + 0x8d,0xde,0x6f,0xd1,0xe2,0x1d,0x3f,0x7c,0x54,0xb3,0xff,0x5e,0x18,0x33,0x3c,0x71,0xa2,0x6d,0xf6,0x66, + 0x16,0x74,0x75,0x70,0xbb,0x1f,0x3a,0x8f,0x8e,0xb3,0xf7,0xdf,0x3b,0x8f,0xec,0xf6,0x79,0xc0,0xe6,0xfa, + 0x5d,0x9a,0xf9,0x6f,0xf1,0xd3,0x18,0xff,0xf9,0x1e,0xce,0x39,0x47,0x68,0x98,0xaa,0xa8,0xee,0xec,0x38, + 0xec,0xac,0x8e,0x3f,0xe6,0x5f,0x89,0x9b,0xc5,0x2b,0xa5,0xb5,0x43,0xe3,0x35,0xaa,0x03,0x62,0x14,0xf5, + 0x02,0xa4,0xd0,0x9b,0xaa,0xa0,0xca,0xa7,0x84,0x29,0x47,0x85,0xd8,0x47,0x15,0x03,0x15,0x4d,0x1c,0x98, + 0x51,0xe1,0xba,0xc8,0xfb,0xfb,0xe0,0xc1,0xe0,0x81,0x17,0x76,0x99,0x6a,0x49,0xa4,0xe7,0xbb,0x77,0x55, + 0xc4,0xe7,0x9f,0x11,0x83,0xa6,0xfe,0x3d,0x58,0x95,0x89,0xff,0x82,0x10,0xb3,0x52,0x1f,0x32,0xd6,0x2e, + 0xd7,0x49,0x36,0xbc,0xe6,0xa8,0x9a,0x43,0xef,0x4d,0x15,0xa7,0x45,0xe9,0x85,0xe5,0xfb,0xb2,0x4a,0x2e, + 0x9e,0x3f,0xa3,0x14,0xfe,0xd5,0x7b,0xfe,0xcc,0x0b,0xe7,0x69,0x71,0x71,0x15,0x17,0xc9,0xcf,0x32,0x96, + 0xa1,0xf7,0xb5,0x4a,0xe8,0xa9,0xd1,0x0d,0x7b,0x5e,0x38,0xcd,0x97,0xef,0x25,0x72,0x86,0xf7,0x54,0xff, + 0xec,0xfd,0xcf,0xff,0xa7,0x77,0x7f,0xff,0xe0,0xef,0xbd,0x17,0x71,0x71,0xde,0xbb,0x8c,0xb3,0xde,0x8f, + 0x49,0x56,0x5e,0xe5,0xab,0x19,0x1d,0xab,0x45,0x1e,0xc3,0xe3,0xd6,0xd0,0x7b,0xbd,0x48,0x60,0x38,0xc8, + 0xd1,0x0c,0x7a,0x2a,0xb5,0x27,0x0b,0xa5,0x42,0xbe,0x0f,0x06,0x03,0x2f,0x2c,0x92,0x13,0xba,0xde,0x5f, + 0x27,0x99,0xd4,0x3a,0x3c,0x4b,0x7a,0x32,0x5a,0x9a,0xff,0x62,0xd1,0x3b,0x49,0x7a,0x52,0x22,0x99,0x85, + 0xbd,0xa5,0x34,0x59,0x24,0xf3,0x22,0x29,0xcf,0x18,0x93,0xf7,0x96,0x34,0xe9,0x5e,0x3c,0x27,0x52,0x8a, + 0x86,0x3e,0xa3,0xb9,0xf2,0xd6,0x7f,0xc9,0x51,0x3c,0x86,0xde,0x13,0x7c,0x38,0x69,0x6f,0xe2,0x4b,0xee, + 0x48,0xfe,0xf2,0x10,0xae,0xd2,0x79,0x4a,0x2b,0x55,0xad,0xca,0xe1,0x75,0x3c,0x85,0xc7,0xcb,0x65,0x9e, + 0x66,0x95,0x59,0xc5,0x27,0xaf,0xb1,0x12,0xb3,0xb4,0x8c,0x4f,0xe8,0x12,0x1a,0x7a,0xcf,0xd4,0x2f,0x22, + 0x3f,0xd8,0x7d,0x46,0x9e,0x21,0xdc,0x9d,0x29,0xfe,0x4b,0xfa,0x75,0xba,0xa5,0x42,0x98,0x22,0x72,0x89, + 0xf7,0x7c,0x86,0x57,0xe0,0x2c,0x7f,0xf3,0x86,0xb7,0x84,0xfe,0xed,0xc1,0xd6,0x74,0x9e,0x13,0x14,0xd0, + 0x66,0x4d,0xe3,0x0c,0x11,0x29,0x60,0xbb,0x41,0x95,0xdf,0xd0,0x67,0x6f,0xaa,0xbf,0xb1,0x23,0x59,0x46, + 0xd0,0xfa,0x35,0xdd,0xc6,0xc8,0x96,0xbf,0xbd,0x2a,0xef,0xa9,0x0c,0x53,0x82,0xc6,0xf5,0x43,0x5e,0xf2, + 0xc6,0xe9,0x6f,0xda,0x87,0xb2,0xe2,0x91,0xa9,0x32,0x6a,0x74,0xe6,0x0b,0xc1,0x3e,0x4a,0xb5,0x14,0x55, + 0x7c,0x72,0x68,0xc0,0x88,0x52,0xbc,0x50,0x4d,0xf0,0xa9,0x44,0x8c,0xe9,0x95,0x2a,0x99,0xee,0xe6,0x37, + 0x55,0xb2,0x2c,0x0f,0x8b,0x15,0x0a,0x27,0x55,0x0f,0x6f,0x05,0x08,0x5b,0xff,0x9e,0xe6,0x54,0xb0,0xa1, + 0x40,0x89,0x02,0x75,0xd1,0xaf,0xa1,0xbd,0xda,0x2c,0x0b,0x5f,0x6d,0x97,0xe9,0x6c,0x85,0xa8,0x14,0xb4, + 0xb6,0x44,0xc8,0x20,0x1a,0x85,0x33,0x92,0x43,0x95,0x86,0xb1,0x5c,0x24,0x3a,0x91,0x7e,0x4a,0xc2,0x73, + 0xbc,0x51,0x64,0x84,0x7a,0x34,0xf4,0xd1,0xb2,0xc2,0xfe,0x25,0xae,0x7a,0xc8,0xee,0xe9,0x26,0x7b,0xca, + 0x26,0xa5,0x17,0x67,0xdc,0x3f,0xea,0xf4,0xea,0x65,0x1b,0x48,0x6b,0x2f,0x73,0x0e,0x71,0xec,0xbd,0xcc, + 0x1b,0xb5,0xd5,0x51,0xed,0xbd,0x4f,0x2a,0x29,0xf9,0x55,0xa6,0x76,0x5a,0x7e,0xb8,0xc5,0xd5,0x58,0x21, + 0xc4,0x66,0x5f,0x5a,0x18,0x2e,0x66,0xa2,0xbf,0xa5,0x74,0x9a,0xf5,0x2e,0x08,0xe0,0xd3,0x32,0xa1,0x71, + 0xcc,0x54,0xa5,0x27,0x33,0x6a,0x93,0xfe,0x91,0xaf,0x67,0x12,0x50,0xc8,0x93,0xbf,0xba,0x59,0xee,0xa4, + 0x31,0x00,0x55,0xe1,0xeb,0xf4,0x5d,0x32,0x93,0xee,0xf8,0x27,0xf7,0x24,0x59,0x6f,0x56,0x59,0x91,0xf2, + 0x16,0xc8,0x0f,0x93,0x5a,0x62,0xf5,0xe4,0xaf,0x5e,0xe4,0x0b,0xb5,0xc6,0x32,0xc6,0x6c,0x55,0x25,0x6a, + 0x78,0x2f,0x68,0xa4,0xf1,0xfb,0xa1,0x27,0x7f,0x55,0xf1,0x55,0x52,0x72,0xa2,0xfa,0x21,0xa9,0xbf,0x24, + 0xb3,0x4c,0xa5,0x9b,0x9f,0xaa,0xfc,0xd9,0xaa,0x50,0x15,0xd4,0x2f,0x35,0xf6,0x22,0xe5,0x54,0xf9,0xab, + 0x86,0x47,0xf0,0x56,0x70,0xaa,0xfe,0x65,0x86,0x2d,0xa9,0x2b,0x19,0xc7,0x45,0x2e,0xeb,0xcc,0xd0,0xf1, + 0x82,0x3f,0x74,0xa2,0xb5,0xa7,0x92,0xb0,0x65,0x57,0x25,0xb3,0xb9,0xaf,0x8d,0x2a,0x8d,0x62,0xcf,0x56, + 0x20,0xbd,0x0f,0xeb,0x5d,0xa1,0xbd,0xc3,0xb5,0x42,0x17,0x41,0x0f,0xc1,0x85,0x7a,0xe9,0xbc,0x17,0x3b, + 0xb0,0x01,0x5b,0x9a,0x78,0x51,0x24,0xf1,0xec,0x7d,0x2f,0x16,0xf3,0x73,0x3d,0xf8,0x8f,0x05,0x17,0x5d, + 0x6d,0x0b,0x38,0x48,0x76,0x0d,0x4f,0xf2,0xdd,0x84,0x28,0x49,0x7d,0x9d,0x12,0xe6,0xfc,0xe6,0xf5,0xf3, + 0x57,0xbd,0x25,0x75,0xe3,0xcb,0xc0,0x7a,0x67,0x84,0xfa,0x03,0x53,0x51,0x6e,0x4c,0xa0,0xd8,0x37,0x57, + 0x49,0xb2,0xa4,0x83,0x94,0x5e,0xc4,0xf6,0x42,0x9b,0x12,0x2f,0xad,0xdf,0xf1,0x02,0x2b,0x9f,0x25,0xd4, + 0xa8,0xc6,0x09,0x3d,0x9c,0x4d,0x20,0xfd,0xf8,0x42,0xce,0x4d,0xbb,0x8f,0xc3,0x7c,0xf9,0x0c,0x31,0xb5, + 0x3c,0xfa,0xd1,0x43,0x74,0xad,0x56,0x89,0x2f,0x73,0x42,0xed,0x17,0x3f,0x2d,0x87,0x9e,0xfc,0xea,0xad, + 0x96,0xde,0xc6,0xc2,0x83,0x36,0x0a,0xa9,0xb1,0x61,0x8d,0xd0,0x6a,0x04,0xc9,0x2f,0x7e,0x49,0xc5,0x9b, + 0x6b,0xdf,0x05,0x1a,0x02,0x24,0xad,0xc7,0x89,0x4e,0x89,0x6f,0xb9,0xd4,0x93,0xc5,0x22,0xbf,0x2a,0x05, + 0xeb,0x29,0x9f,0x02,0x16,0x5e,0xe9,0xcd,0x0b,0x1a,0xdb,0xfb,0x7c,0x55,0x10,0xb0,0x5d,0xa6,0xd3,0x04, + 0x68,0x9b,0x6f,0x31,0xb9,0xa8,0x95,0x47,0x24,0xae,0xee,0xdc,0x94,0xbd,0xe5,0xaa,0x58,0xe6,0x65,0x52, + 0x0e,0x7a,0xb8,0x20,0x55,0x69,0xb7,0x08,0x40,0x49,0x58,0x34,0x6a,0x81,0xbe,0xcf,0xaa,0x6a,0x39,0xdc, + 0xdb,0x3b,0xf8,0xe2,0xfe,0xe0,0xe0,0xb3,0xcf,0x07,0x07,0x83,0x87,0x7b,0xbd,0xab,0x33,0x82,0x42,0xea, + 0xbf,0x87,0x5b,0xde,0x20,0x7d,0x8c,0x22,0xad,0xa8,0x69,0x66,0x32,0xaa,0x5e,0x3e,0x27,0x38,0x2d,0x7b, + 0x65,0x0e,0x1f,0x33,0x65,0x4f,0xdd,0x71,0x18,0x5c,0x82,0x5e,0x74,0xb7,0xb8,0x91,0x29,0x9b,0x2a,0x50, + 0x22,0xfb,0x4a,0x48,0xa6,0x48,0x05,0x6c,0xc6,0xd9,0x7b,0xba,0xf9,0xdf,0x0f,0x7a,0xbf,0x52,0x67,0xb8, + 0xc0,0xe2,0x05,0x7d,0x96,0x3d,0xc3,0x81,0xf5,0x84,0x56,0xea,0x41,0x48,0x80,0xd1,0x9e,0xbc,0xef,0x41, + 0x59,0x12,0x34,0x02,0xa0,0xc1,0x5e,0xe6,0x9e,0x0a,0xc9,0xb5,0xca,0xaa,0x74,0xc1,0xb9,0x3f,0x7c,0xf5, + 0xac,0xb7,0x00,0x25,0x52,0xd2,0x46,0x13,0xb2,0xb6,0x6f,0x61,0xbd,0x51,0xf6,0xa8,0x9d,0x12,0xb2,0x51, + 0x6a,0xcb,0xbb,0x56,0x9f,0x56,0x83,0xb7,0x88,0x00,0xad,0x87,0xbb,0xbc,0x57,0xb0,0xc7,0xb0,0x41,0x4f, + 0xdd,0x29,0x1c,0x08,0x8e,0xc7,0x81,0x9b,0x9b,0xa8,0x92,0xb8,0x24,0xe2,0xa7,0x98,0xd1,0xa4,0x67,0x44, + 0xd6,0x16,0x94,0xd3,0xdc,0xbe,0x93,0x84,0xc0,0x02,0x03,0x2d,0xd3,0x99,0x5c,0xf8,0x5e,0xa8,0xab,0xd1, + 0x5d,0xa5,0x7e,0xd1,0xc5,0x7c,0x36,0x25,0x18,0xfe,0x89,0x3a,0x79,0xf6,0xed,0xd3,0xd7,0xf2,0xad,0x00, + 0x6b,0x45,0x60,0x0d,0x57,0x5d,0xb8,0x1c,0x69,0xd9,0xcb,0xf4,0x34,0x2b,0x71,0x7d,0x3d,0x7f,0xdd,0x53, + 0x31,0xe5,0xbb,0x81,0x49,0xb6,0x80,0xc8,0xf3,0x13,0x5a,0x16,0x6c,0x0a,0x2d,0x28,0x15,0x3c,0xc7,0xa1, + 0x95,0x8d,0xc0,0xca,0x2e,0x50,0x1f,0x80,0x01,0x93,0x26,0x02,0x13,0x3a,0x94,0xf4,0x75,0x8f,0xa0,0x64, + 0x96,0x83,0x4c,0x22,0xca,0x65,0xa9,0xba,0x21,0xf2,0xc5,0x74,0x49,0x33,0x5a,0x9d,0xd0,0xdd,0x79,0x11, + 0x97,0xe7,0x40,0xbf,0xf8,0xdd,0xc3,0x87,0x17,0x9e,0x12,0xd6,0xbb,0x02,0x52,0xfe,0x46,0x7e,0x78,0xe1, + 0x19,0xd1,0x1e,0x62,0x5f,0xfa,0xad,0xfa,0x55,0xa7,0xbd,0xae,0xfd,0x21,0x03,0x1b,0x89,0x49,0x29,0xb5, + 0x34,0x35,0x3d,0x6d,0x14,0x11,0xeb,0xd0,0x25,0x9c,0x42,0x94,0x54,0xb5,0xb4,0x48,0x81,0x1e,0x54,0x3a, + 0xcf,0x8a,0x3c,0x23,0xaa,0x8b,0x57,0xdf,0x7f,0x79,0xf8,0x9a,0xb0,0x0a,0x21,0xb3,0x52,0x15,0xfb,0x96, + 0x48,0x45,0xa6,0x74,0x29,0x2d,0x47,0x60,0xcd,0x8b,0x78,0xa9,0xf3,0xbe,0xc9,0xf3,0x53,0x82,0x82,0x17, + 0x94,0xd2,0x7b,0xf2,0xfa,0x79,0x4d,0x27,0xab,0x7c,0x43,0x25,0x0b,0x7f,0x40,0xe4,0x56,0xbc,0x48,0x4f, + 0x0a,0x96,0x86,0x08,0x36,0xd1,0xdf,0x56,0x96,0xa6,0x47,0x4d,0x9e,0x26,0x88,0x4c,0x09,0xd9,0xe6,0x9f, + 0xd8,0x8c,0x3b,0xd1,0x20,0xcf,0x70,0xa3,0x68,0x3b,0x39,0x73,0x9c,0x2b,0x92,0x16,0x3a,0xa7,0xd2,0x4a, + 0xc8,0x90,0x47,0xa5,0xe2,0xd9,0xef,0x30,0xc0,0xe4,0x06,0x98,0x52,0xcf,0xb0,0xad,0x70,0x1c,0x13,0x4f, + 0xcf,0x2c,0xf2,0x8a,0xab,0xf1,0xb2,0xbd,0x81,0xd7,0x5d,0x5a,0x72,0x5a,0xa1,0x1e,0x7b,0xe0,0x2d,0x38, + 0x99,0xe9,0xa8,0x4b,0x60,0xeb,0x1f,0x15,0xad,0x9d,0xaa,0x94,0x9e,0x5f,0x13,0x01,0x01,0x97,0xfd,0x21, + 0xa6,0x71,0xd3,0x3f,0x69,0xc5,0xf4,0x3f,0x52,0x40,0x5f,0xff,0x90,0x67,0xa7,0x56,0x12,0x71,0xc7,0x72, + 0x5d,0x7c,0x43,0x10,0xb2,0x50,0xa5,0x7b,0x7b,0x44,0x90,0xaa,0x62,0x82,0x1b,0x17,0xaa,0x9c,0x53,0xe9, + 0x4d,0x12,0x17,0xd3,0x33,0x50,0x8b,0xf8,0xcb,0x1b,0x49,0x18,0x80,0xa8,0x72,0xba,0x5e,0x19,0x4d,0xbc, + 0x66,0x34,0x21,0xe4,0x28,0x23,0x07,0xbe,0xb7,0xfa,0xc4,0x59,0x5d,0x06,0xba,0xf8,0x9b,0xc3,0x27,0x42, + 0xc8,0x02,0x22,0x5e,0x00,0x95,0xdd,0x50,0xfe,0xc9,0x6b,0xbd,0x61,0x0a,0x9b,0x38,0x1d,0xa9,0xcd,0xb1, + 0x2f,0x47,0xda,0x26,0xa9,0xf9,0xfa,0x97,0x17,0xcf,0x0a,0x4a,0x29,0xde,0x3c,0xa3,0xfe,0x5e,0x3f,0x7d, + 0xf2,0xc5,0x67,0x9f,0x7f,0xda,0xa3,0xd4,0xde,0x8c,0x93,0x7b,0x94,0x2e,0x35,0xa1,0xd4,0xdc,0xac,0xf3, + 0xf4,0x87,0xee,0x3a,0x4f,0x7f,0x90,0x3a,0x53,0x78,0x60,0x45,0xa5,0xab,0x8b,0x27,0xfa,0x34,0x76,0x94, + 0x7f,0xfe,0x3f,0xff,0xdf,0xa7,0xf5,0x11,0xa5,0xc2,0x5f,0x83,0xde,0x4d,0xb2,0xe9,0xfb,0xce,0xe2,0x73, + 0x9d,0x2b,0xe7,0x80,0x80,0xfe,0xfb,0xe4,0x7d,0xeb,0x20,0x10,0xca,0x70,0x0a,0x9c,0x31,0xc0,0xfe,0x98, + 0x88,0xf7,0xc1,0x19,0xf0,0xfe,0xbc,0xb7,0x2a,0x19,0x83,0xdb,0xe4,0xef,0xa0,0x47,0x40,0x3d,0xe3,0x3b, + 0x6d,0x91,0xe7,0xe7,0xc8,0x5f,0x2d,0x19,0x46,0x55,0xe4,0x49,0x2e,0xfe,0x07,0x51,0x05,0x03,0x42,0xb7, + 0x44,0x16,0x10,0x2a,0x3c,0xef,0x21,0x14,0x1e,0x9d,0x4c,0x60,0x38,0xd5,0x77,0x88,0x75,0xef,0xa9,0x41, + 0x5d,0x30,0x1f,0x0a,0x29,0x72,0x45,0x67,0x4e,0xf0,0x35,0xcf,0xa2,0xa4,0x7b,0xec,0x47,0xe2,0xbb,0x4b, + 0xe0,0x68,0xb9,0x86,0x69,0x7a,0x89,0x6e,0x04,0xd4,0x86,0xba,0x18,0xb5,0xe3,0x3e,0xba,0x89,0xe9,0x94, + 0x2d,0x31,0xd2,0x53,0x6e,0x1c,0xbc,0xfe,0x1e,0x1f,0xa9,0x58,0x53,0x6f,0x69,0x75,0x8f,0xae,0x9a,0x52, + 0x6e,0x66,0x0c,0x5d,0x2f,0xca,0x80,0xf0,0x12,0xcb,0xac,0x87,0xd7,0x60,0x71,0x0d,0x2b,0xfd,0x14,0x3e, + 0x1d,0xf9,0x52,0x44,0x32,0x9d,0x1e,0x11,0xba,0x03,0xf6,0xe2,0x13,0xcc,0xab,0x32,0x7c,0xae,0xb0,0xcc, + 0x35,0x09,0xd2,0xaa,0x6c,0xd1,0x0f,0x44,0x94,0x57,0x70,0x67,0x2d,0x75,0x04,0xfd,0xb5,0xca,0x2b,0xf6, + 0xd9,0x2d,0x6b,0x51,0xa5,0x65,0xab,0x86,0x43,0x92,0xba,0xf5,0x5e,0xd8,0x64,0x65,0xbb,0xa6,0x4b,0x10, + 0x5b,0x75,0x99,0xe3,0xee,0x9e,0x54,0x09,0xfb,0xf0,0xce,0x49,0x71,0xa5,0xf6,0xac,0xb8,0x42,0x6b,0x56, + 0x82,0x7e,0x71,0x41,0x2b,0xde,0xdd,0xaa,0x51,0x24,0x34,0x22,0xda,0x57,0xb9,0xbf,0x35,0x9f,0xba,0x5a, + 0x62,0xcc,0x1a,0x7f,0xd3,0xd9,0xc6,0xc6,0xf5,0x38,0x8a,0x62,0x4f,0xf2,0x00,0x9c,0x1a,0xdd,0xeb,0x1e, + 0x98,0x5f,0xb5,0x1b,0xe7,0x51,0xf2,0xf3,0x0a,0xd0,0xa8,0x78,0x86,0xc2,0x4d,0xc8,0xd8,0xa9,0x46,0x74, + 0xf6,0x4a,0xe5,0xe7,0x80,0x79,0x8d,0xdc,0x68,0xf2,0x74,0xdb,0xa7,0x59,0xcc,0x8c,0x14,0x37,0xb7,0x6d, + 0x7b,0x78,0xea,0x5b,0xb6,0x87,0x2b,0x6e,0xdf,0x1f,0xae,0xba,0x75,0x7f,0x18,0x7e,0x9a,0x33,0x13,0x70, + 0x53,0x37,0x92,0xbb,0x35,0xb2,0x16,0x4f,0xeb,0xbc,0xf6,0x8e,0x76,0xd5,0xdb,0x84,0x56,0xb2,0x91,0x90, + 0x58,0xcd,0xd0,0x41,0xff,0x23,0x06,0xe9,0x03,0x42,0x50,0x23,0xdd,0x2f,0xe9,0x37,0xc4,0x18,0x2b,0x60, + 0x98,0x97,0xee,0x65,0x47,0x37,0x43,0xf2,0xae,0xd2,0x25,0x5f,0xb2,0xf1,0xb7,0x23,0xf2,0xd1,0xa2,0x93, + 0x5a,0xd8,0xc0,0xea,0xc2,0x44,0xb6,0x6c,0x13,0x4a,0x70,0xac,0x6d,0x5a,0x88,0x17,0x84,0x62,0xf7,0x88, + 0xe8,0x78,0xa7,0xf6,0xb4,0xb7,0xc4,0x92,0xf1,0x55,0x49,0x67,0xff,0xe9,0x8a,0xae,0x47,0xb9,0xa1,0x17, + 0xf9,0x69,0x5c,0x10,0x82,0xba,0x48,0xa7,0x40,0x62,0x97,0x82,0x17,0x6a,0x41,0x86,0x5f,0x58,0x58,0x11, + 0x59,0x74,0xc7,0x94,0x1c,0x48,0x35,0x5b,0x98,0x45,0x20,0x8e,0x6e,0xd9,0x92,0xcc,0x7d,0x98,0x68,0x2e, + 0xf9,0x6b,0x92,0xb9,0xaf,0x88,0x09,0xc8,0x4f,0x93,0xec,0x64,0x91,0x9e,0xf7,0x4e,0x13,0xa2,0x12,0x89, + 0x92,0x3f,0x49,0xfe,0x48,0x4f,0x7b,0x17,0x7c,0x3b,0xcf,0xa8,0xc0,0x25,0x4b,0x9d,0x0c,0x11,0x9b,0x74, + 0x09,0xeb,0xbe,0xa5,0xd2,0xa5,0x1a,0x36,0x08,0x58,0x62,0x1d,0x96,0x59,0x9a,0xac,0xae,0xe8,0x2f,0xad, + 0x28,0x07,0xb5,0xc2,0x88,0x31,0x68,0xa2,0x24,0x93,0x3f,0x12,0x88,0xeb,0x08,0xf0,0x7b,0x19,0x0d,0x25, + 0xc9,0x1a,0x3b,0x77,0x98,0x27,0x20,0x8a,0x1b,0xe9,0x5a,0x60,0xf7,0xa5,0x19,0x60,0xbe,0x2c,0x17,0x71, + 0x9c,0xfd,0x29,0xd9,0xdd,0x4f,0x69,0x45,0x23,0x9b,0x9e,0xc5,0xe7,0xc9,0xe2,0xc3,0x05,0x78,0x6e,0x2d, + 0x25,0xc5,0x7b,0x43,0x83,0x58,0xc2,0x65,0xcd,0xac,0x29,0xcb,0x4b,0x69,0x90,0xa7,0xc9,0x25,0x31,0xe6, + 0x98,0x4b,0x97,0x3c,0x2f,0x9e,0xd3,0x71,0xcc,0xb3,0xb6,0x38,0xef,0x7b,0xca,0x3c,0x4d,0xb0,0xfe,0x49, + 0xa1,0x62,0x57,0x10,0x44,0x9e,0xa3,0x9d,0xa6,0x58,0xef,0xe7,0xba,0x04,0x15,0x5e,0xe4,0x05,0x0a,0xb9, + 0xa2,0xbd,0x97,0x18,0x09,0x5a,0x92,0xa1,0x7c,0x88,0x70,0xef,0xdb,0x55,0x3a,0x4b,0x4f,0x93,0x2d,0xc2, + 0x3d,0xe2,0x6f,0x81,0x8a,0x12,0x40,0x08,0xf6,0x73,0x31,0x07,0x4f,0xa8,0x00,0x3f,0x49,0xab,0x96,0x84, + 0xef,0x50,0xca,0x6a,0xda,0x33,0x49,0x16,0xec,0xe7,0x27,0xa1,0x76,0xb2,0x8f,0x93,0xf1,0xfd,0x3e,0x6b, + 0xca,0xf8,0x7e,0x60,0x58,0xe8,0x11,0x62,0xea,0x5d,0xe6,0xb8,0x98,0xa9,0x4c,0x2d,0xce,0x49,0x92,0x5a, + 0xb6,0x77,0xe9,0x2c,0x55,0x02,0xa7,0x8d,0x69,0xd9,0x92,0xf2,0x9d,0xca,0xca,0xbb,0xcd,0x9c,0x26,0x86, + 0xf6,0x4e,0x8a,0x59,0x43,0xdc,0x77,0xe8,0x14,0xa5,0x89,0x09,0x88,0x24,0xd9,0xcd,0x32,0xbf,0x44,0xfa, + 0x70,0x65,0x38,0xba,0x12,0xcb,0x68,0xe8,0x28,0x5c,0xe6,0xc9,0xa9,0x4e,0xd3,0x72,0x1a,0xda,0xf2,0x2b, + 0xaa,0x99,0x14,0x75,0x0f,0xae,0xbc,0x07,0xf2,0xa6,0x64,0xde,0x92,0xfe,0xfd,0x1c,0x97,0x95,0x74,0xda, + 0x90,0xfe,0xfd,0x06,0x22,0x68,0x79,0x9e,0x5f,0x94,0x95,0x2b,0x01,0xe4,0x0c,0x28,0xaf,0x9f,0xc6,0x50, + 0x85,0xb6,0x05,0x81,0x7a,0xe4,0xe0,0x01,0xb2,0x86,0x20,0x90,0x8e,0xe5,0x2c,0x3e,0x6d,0x48,0x02,0x9f, + 0xd1,0xc2,0x98,0x54,0x5b,0x12,0x98,0x27,0x56,0x46,0x2d,0x08,0x7c,0xc6,0x1d,0x9b,0x0c,0x2d,0x09,0xfc, + 0xb9,0xa0,0xae,0x75,0x62,0x2d,0x0a,0xfc,0x8d,0xee,0xa5,0xba,0xb0,0x16,0x05,0xfe,0x96,0xcb,0x40,0x1c, + 0x51,0xe0,0x97,0xc9,0x55,0x72,0xca,0xaa,0xdd,0x4d,0x61,0xa0,0xda,0xfa,0x13,0x55,0x60,0xfb,0xf6,0x37, + 0xe4,0x82,0x5f,0xb6,0x2a,0x38,0x40,0x70,0x9b,0x78,0xf0,0x15,0x11,0x06,0x56,0x05,0xba,0x94,0x08,0x6e, + 0x71,0x37,0xf5,0x9a,0x80,0xc8,0xb4,0x68,0x32,0x27,0xb0,0xbd,0x4d,0x42,0xb8,0x15,0xb8,0xba,0x25,0x84, + 0x1a,0x62,0x2c,0x01,0xa1,0x05,0x7c,0xae,0x98,0xd0,0x01,0xbf,0xad,0xb2,0x42,0x1a,0xe5,0x19,0x11,0xd2, + 0x5d,0xb2,0xc2,0x27,0x22,0x25,0x4c,0x6e,0x15,0x12,0x7e,0x83,0xf9,0x43,0x48,0x68,0xb0,0xcd,0x69,0xb2, + 0x48,0x7f,0x3f,0xc7,0xd4,0xd2,0x8e,0xa6,0x8d,0x88,0xf0,0xcb,0x1c,0x82,0xd6,0x2c,0x8e,0x0b,0xda,0xcc, + 0x2c,0xb1,0x26,0xde,0x25,0x2c,0x94,0x12,0xaa,0x38,0x6a,0x6e,0x95,0x1a,0xd6,0xc8,0xd6,0x60,0x4a,0x0b, + 0xff,0xda,0x17,0x65,0x43,0x6e,0xf8,0xc4,0x96,0x64,0x39,0xc0,0xd1,0x12,0x1e,0xd2,0xe9,0x39,0x27,0xf6, + 0x04,0x22,0x94,0x5c,0xa6,0xdb,0x23,0x96,0x18,0x2b,0x21,0x92,0xc4,0x9a,0x6a,0x4e,0x70,0x3d,0xc7,0x73, + 0xce,0xa3,0xab,0x32,0x2e,0x62,0xc2,0x81,0x3c,0x0b,0xbe,0x64,0x41,0x5a,0x18,0x69,0x56,0x22,0xf7,0x07, + 0x9a,0x9a,0x25,0x56,0xaa,0x81,0x6b,0xc4,0x15,0xe9,0x3d,0x73,0x6b,0xa5,0x25,0x8a,0xd0,0x0a,0xc6,0xbc, + 0xdb,0xbd,0xcb,0x34,0xee,0x14,0x28,0x52,0x3e,0xf5,0xfc,0xbb,0x3d,0xb2,0xb3,0xe4,0x04,0xb7,0xdf,0x05, + 0x26,0x33,0xe8,0xbd,0x91,0xf9,0xca,0xb8,0x20,0xf3,0x23,0x52,0x3b,0xc5,0x58,0x79,0x9e,0xf6,0x18,0xc2, + 0x5e,0x0c,0x3a,0xec,0x8f,0x54,0x5d,0x2d,0x72,0x8d,0x9e,0x10,0x15,0x9f,0x2e,0xd2,0xd3,0x19,0x10,0x76, + 0xef,0xbb,0xa4,0x77,0x4e,0x44,0xa1,0xdd,0x5a,0xde,0x38,0x42,0x33,0xdc,0x04,0xb8,0x15,0x0c,0xd3,0x2e, + 0x4b,0x7f,0x9e,0x51,0x22,0xcd,0x69,0x56,0xac,0xce,0xb1,0x1c,0x55,0x5e,0x61,0xe8,0x33,0x91,0x26,0xc6, + 0xb8,0x76,0x69,0x11,0x9b,0xc2,0x44,0x6b,0x8f,0x41,0x79,0x30,0x3b,0xa1,0xae,0xe3,0x96,0x48,0x51,0x95, + 0x6d,0x6f,0x01,0x1a,0xa7,0x25,0x4a,0xe8,0x5a,0x6d,0x48,0x14,0x7f,0x5e,0x2d,0x7a,0x67,0x29,0x53,0x02, + 0x74,0xc4,0xb1,0x22,0x4c,0x40,0x50,0xb1,0xab,0x78,0x7a,0x56,0x5d,0x81,0x4f,0xa0,0xd9,0x85,0x48,0xb1, + 0xf0,0x10,0xbf,0x26,0x54,0x2b,0x5e,0xd6,0x1e,0x81,0x6d,0x81,0x0b,0x9b,0x97,0xa3,0xdc,0x2a,0x64,0xfc, + 0xc5,0x34,0xa8,0xc5,0x8c,0xdf,0x24,0x27,0xc5,0x8a,0x28,0xc0,0x6d,0xa2,0x46,0x5a,0x53,0x06,0x30,0x16, + 0xf7,0x15,0x09,0xe4,0x8b,0x09,0x1d,0xff,0x3f,0x00,0x73,0x71,0xd6,0x9a,0x26,0x71,0xef,0x04,0x80,0x54, + 0x29,0xfd,0x3d,0x63,0xd8,0xbd,0x4a,0x17,0x98,0xb6,0xb5,0x57,0xa8,0x06,0x3b,0x0e,0x9a,0x10,0xfd,0xf3, + 0x47,0xfa,0x3b,0xf2,0xaf,0x12,0x9a,0xf6,0x15,0x60,0x97,0x3e,0x2e,0x92,0x44,0x51,0xa2,0x27,0x70,0xdb, + 0xd6,0x16,0x3b,0x16,0xc9,0x76,0xa1,0x23,0x84,0x57,0xb7,0x8b,0x1d,0xe3,0x8b,0x2d,0x62,0xc7,0x37,0x20, + 0xe5,0x68,0x1c,0x33,0x2d,0x78,0x44,0x5f,0x5b,0xc5,0x8e,0x4d,0xb9,0xe3,0xef,0x33,0x57,0xee,0x98,0xdc, + 0x24,0x76,0x8c,0x61,0xd0,0x42,0xe7,0x80,0xe0,0x8a,0x11,0xd4,0x9f,0x90,0x3e,0x9e,0xa4,0xbf,0x5f,0x25, + 0x85,0x10,0x86,0x0d,0x01,0xe4,0xf7,0x9a,0xbd,0xea,0x92,0x40,0x4a,0x26,0x80,0x48,0x10,0x6b,0x4b,0x04, + 0xa9,0xc1,0x82,0x61,0x92,0x80,0x9c,0x16,0x25,0x91,0xd3,0x43,0x18,0x04,0x20,0x4a,0x29,0x15,0xdd,0x50, + 0x95,0xa6,0xec,0x7a,0x22,0xcd,0x04,0x45,0xc7,0x80,0x2a,0x88,0xe6,0x2c,0xc1,0xaa,0x9e,0x25,0xe9,0x8c, + 0x59,0x89,0x64,0x71,0xae,0x50,0x39,0x43,0x41,0x95,0xf4,0x34,0xa9,0xff,0x21,0x52,0xc8,0x9f,0x85,0x87, + 0xe8,0x92,0x42,0x66,0x96,0x14,0xf2,0x4b,0x9a,0xd7,0xac,0x4a,0x4e,0x09,0x1d,0xce,0x2c,0x49,0x24,0x94, + 0x48,0xec,0x44,0xc3,0xa2,0xdb,0xe5,0x21,0x8b,0xac,0x0b,0x12,0xc0,0x9e,0xc5,0x40,0x27,0x34,0xed,0x93, + 0xb8,0x24,0x74,0x88,0x49,0x08,0x03,0x9f,0x74,0x0a,0x27,0x7f,0xcb,0x13,0xde,0x8c,0x3f,0x2f,0x9c,0xb4, + 0x64,0x15,0xb7,0x08,0x25,0x9d,0x96,0x6d,0xe4,0xc7,0xdb,0x64,0x5f,0xc4,0xc4,0xa2,0x9c,0xfe,0x77,0x08, + 0x26,0xcf,0x17,0xf9,0xff,0x5e,0x72,0xc9,0x27,0xb8,0x4b,0x0a,0xe6,0x64,0xe9,0xa4,0xd0,0x7d,0x24,0x40, + 0x7d,0xc9,0x88,0xcb,0x25,0xf1,0x09,0x71,0x31,0xef,0xaa,0xca,0x54,0x1a,0x80,0x15,0x23,0x84,0xb2,0x90, + 0x4e,0xca,0x85,0xb8,0x04,0x54,0x50,0x0d,0x3a,0x7a,0x15,0xdf,0x3d,0x7f,0x08,0xee,0x36,0x42,0xca,0x0b, + 0x60,0x32,0x35,0x44,0x2a,0xce,0xe5,0x66,0xd4,0x2b,0x04,0x92,0xe7,0x68,0x57,0x89,0x29,0x4b,0x2d,0xa7, + 0x14,0x84,0x0e,0x0a,0x07,0x47,0xd6,0x4c,0x09,0x90,0xf7,0x61,0x92,0x4a,0xe0,0x63,0x96,0x42,0xab,0x2b, + 0x84,0x79,0x21,0x3d,0x61,0xdc,0x5a,0xb3,0xdb,0xe5,0x95,0x60,0x3b,0x15,0x27,0x6f,0x64,0x95,0xea,0x06, + 0x56,0x27,0xa1,0x2d,0xa6,0x44,0x1d,0x8b,0xb1,0x52,0x6c,0x1d,0xa3,0xb4,0x8e,0x9a,0x5a,0xac,0x67,0xf5, + 0x74,0x5b,0x15,0x57,0x28,0x86,0x8a,0x0e,0x45,0x7c,0x4b,0xed,0xa6,0x64,0x0c,0xf5,0x9b,0xf4,0xfd,0x4d, + 0x6d,0xb4,0x24,0x98,0x1f,0x30,0x5f,0x96,0x4b,0x34,0xe4,0x98,0xb7,0x4d,0x58,0xd5,0x69,0x8b,0x33,0x51, + 0xd1,0xc6,0x09,0xee,0xf0,0x9a,0xc2,0xcc,0xaf,0x59,0xaa,0x0c,0xea,0x3c,0x2b,0xeb,0xcb,0x81,0x01,0x7e, + 0x8b,0x44,0x93,0x17,0x14,0xf7,0xf7,0x0d,0xa3,0x6a,0x0a,0x35,0xbf,0xaf,0xb1,0xa0,0x25,0xc5,0xcc,0x34, + 0xad,0xb6,0xb4,0x96,0xee,0x4f,0xec,0x9e,0xbd,0x7c,0x7f,0x7a,0xfb,0x54,0x23,0x96,0x80,0x13,0x55,0xcf, + 0xcd,0x9d,0x78,0xd3,0x9e,0x77,0x48,0x39,0x3f,0xa0,0xb2,0xf4,0xd8,0x2d,0xea,0xac,0xef,0xe2,0x4e,0x49, + 0xe7,0x61,0x52,0xac,0x4e,0x8d,0xa8,0xf3,0x89,0x7d,0xb3,0xba,0x82,0xce,0x9f,0xf3,0xc5,0x29,0xe4,0x89, + 0x0d,0x91,0x19,0x25,0x57,0x79,0x2e,0xa2,0xb4,0x6e,0x69,0x67,0x92,0x2a,0x8c,0x60,0x31,0x53,0x5d,0x22, + 0x4f,0x50,0x60,0xc0,0x96,0x4b,0x4d,0x19,0xd8,0x42,0x4f,0x4d,0x13,0x28,0xc1,0xe7,0x05,0x68,0xc3,0x44, + 0x89,0x3e,0xb9,0x71,0x4b,0x04,0x44,0x77,0x4f,0x8d,0x7b,0x39,0x53,0x4b,0x3f,0x37,0x75,0xec,0x25,0x96, + 0x0d,0x3e,0x59,0x2e,0xfd,0xe0,0x1a,0xba,0x8c,0xb5,0x76,0xa5,0x47,0x0d,0x43,0xf8,0x7b,0xad,0x63,0x88, + 0x0d,0xef,0x3d,0x9a,0xa5,0x97,0xbd,0xe9,0x82,0xc8,0x85,0x48,0xe5,0xf6,0x86,0xea,0xf3,0xba,0xc7,0x09, + 0xc4,0xc7,0x8a,0xc8,0x36,0xec,0x19,0x99,0x9d,0xf9,0xd5,0xdb,0x78,0xbd,0x7f,0x10,0x42,0x85,0xe2,0x48, + 0xe4,0x9d,0x11,0x39,0xb3,0x48,0xe8,0x9a,0x00,0xbb,0x48,0x19,0xd3,0x45,0x3a,0x3d,0xd7,0xc9,0x4f,0xf1, + 0xe1,0xf5,0x88,0xd2,0x63,0xcf,0x0d,0x91,0xb7,0xef,0x3d,0x76,0x7a,0xcf,0xb3,0xaa,0xc8,0x17,0x6e,0x22, + 0x07,0xfe,0xa2,0xa4,0x3d,0x4a,0xd3,0xff,0x5a,0xd9,0x8b,0xf8,0x24,0xa1,0x1a,0xd7,0xd7,0x3d,0x86,0x88, + 0xde,0x66,0x63,0x97,0xbc,0x67,0xfc,0x2a,0x33,0xb8,0x28,0x8f,0xc9,0xe2,0xcc,0x54,0xfc,0x9b,0x7e,0x99, + 0x13,0xea,0x8f,0x33,0xe3,0x67,0x79,0xe7,0x60,0x53,0x0b,0x26,0xb7,0x16,0x81,0xdb,0x2e,0x56,0x36,0x1d, + 0x5e,0x5b,0x53,0x6b,0x79,0xbb,0xd6,0x0d,0xc1,0x75,0x23,0xbe,0xb9,0xe3,0x68,0xa7,0xfe,0x2d,0xe6,0x02, + 0x77,0xe8,0x56,0xa0,0xad,0x49,0xb3,0x25,0xde,0xca,0xeb,0x5c,0x78,0xf0,0x71,0x16,0xd4,0x09,0x20,0xf8, + 0xe0,0x3e,0xfc,0xae,0xd1,0xca,0x23,0xbc,0x82,0x76,0x09,0x68,0x8d,0x06,0xfa,0xdb,0x88,0xd5,0x0a,0x5e, + 0x46,0x1b,0x4f,0x2b,0x1d,0xee,0x06,0x4c,0x10,0x2c,0xa5,0xf9,0x56,0x98,0x90,0xdc,0xad,0x30,0xd1,0x8b, + 0xa2,0x5e,0x3a,0xfb,0x3f,0x0a,0x32,0x24,0x26,0xd7,0x4c,0xfe,0xfe,0x17,0x03,0x03,0xff,0xa4,0xf5,0xfb, + 0xdf,0x04,0x10,0x08,0xb3,0xb4,0x00,0xc1,0x59,0x55,0xc6,0x2c,0xb4,0xe8,0x70,0x47,0xae,0xd3,0x78,0x8c, + 0xbc,0xd2,0xfc,0x6b,0xc0,0x65,0x78,0xbd,0x51,0xca,0xad,0xbe,0x48,0x89,0x9c,0xc3,0x76,0xc6,0xa9,0xec, + 0x1e,0x4f,0x96,0x23,0xbf,0x44,0xaa,0x7f,0x70,0x1e,0x80,0x00,0xe0,0xcd,0xc8,0x7b,0xb8,0xff,0xc5,0x43, + 0xcf,0xad,0xee,0xf5,0x2e,0x77,0x21,0x17,0x58,0x28,0x2b,0x36,0x35,0x82,0x81,0x1e,0xdb,0x16,0x80,0x20, + 0xfc,0x7e,0xcb,0xc0,0xa9,0xc4,0x5f,0x1d,0xf6,0x41,0x3d,0xec,0x4f,0x3f,0x70,0xd8,0x32,0x2e,0x7b,0xd0, + 0x0e,0x84,0x1e,0xa9,0x61,0x4e,0x42,0x8e,0x3f,0x99,0xcc,0x5a,0x90,0xa5,0x83,0x35,0x45,0xd7,0xbc,0x02, + 0xc3,0x1a,0x70,0x64,0x49,0x38,0xc8,0xbb,0x95,0x48,0x9f,0x70,0x47,0x0f,0x17,0x36,0x43,0xe5,0x2c,0x5a, + 0x41,0x6e,0xe1,0x00,0x96,0xaa,0xbe,0x13,0x39,0xbd,0x48,0xe2,0x58,0xfd,0x7d,0xcc,0xcd,0x71,0xdc,0x0b, + 0xfa,0x1b,0xa9,0xd4,0xfe,0x41,0x17,0x40,0x23,0x6a,0x3a,0x17,0x6b,0xb6,0xc8,0x2d,0xf0,0x9f,0x47,0xaa, + 0x01,0x6e,0x90,0x7f,0x45,0x9c,0xbe,0xbb,0xad,0xc1,0xb0,0x63,0x6c,0x7a,0x14,0x61,0xab,0x17,0x69,0x8c, + 0x30,0xbc,0xf2,0x66,0xb7,0x51,0xda,0xfd,0x09,0xdb,0x08,0xaa,0xe8,0x54,0xb5,0x9b,0xc7,0xf8,0x32,0x3d, + 0x8d,0xab,0xbc,0x18,0x2c,0x68,0x87,0x57,0xf1,0x69,0xd2,0xf4,0xb9,0xe8,0xb1,0x78,0x41,0x7b,0x70,0x34, + 0x1e,0xaf,0x82,0x91,0x6a,0xce,0xbf,0x4e,0x88,0xbd,0xfe,0x1b,0xd1,0x14,0x5e,0x08,0x2b,0x85,0x61,0x12, + 0xb2,0x47,0xc4,0xeb,0x8c,0xc8,0xaf,0x79,0xaa,0xc8,0x3e,0xc6,0x33,0xfa,0xf9,0x70,0x67,0x3f,0x2c,0xe5, + 0x49,0x6e,0xe7,0x40,0xfd,0x12,0x3a,0x8b,0x3e,0x55,0x99,0xe7,0x44,0x21,0x4f,0x31,0xae,0xa1,0xb7,0xd6, + 0x94,0xea,0xeb,0x22,0x3f,0x65,0xc6,0xd0,0xd4,0xb2,0xc9,0x2c,0x4a,0x14,0x1e,0xe6,0x30,0x3e,0x41,0xb8, + 0x40,0x79,0x7b,0xd2,0x76,0x08,0xd7,0xf5,0x2b,0xa9,0xea,0x81,0xdf,0xfe,0x74,0xb6,0x9d,0xb8,0x71,0x5f, + 0x04,0x97,0xc3,0xeb,0x44,0x49,0xba,0xa9,0x8b,0x74,0x39,0xf4,0xf6,0x07,0xfc,0x5f,0xfd,0xf4,0xe7,0x94, + 0x50,0xcf,0x63,0xfb,0x6e,0xd1,0x8d,0xa2,0x83,0xa9,0x0f,0x43,0x0a,0x23,0x60,0x73,0xfd,0x78,0x05,0x09, + 0xbc,0xdd,0x4e,0xe5,0x0a,0xe7,0xc5,0x81,0x84,0x2e,0x0e,0x37,0xb8,0x22,0x93,0x76,0xea,0x24,0xdb,0x9e, + 0x09,0xb6,0xb4,0x47,0x07,0x35,0x7e,0xdf,0x6e,0xda,0x95,0x60,0x1b,0xe9,0x17,0x97,0xb3,0x25,0xd3,0xd8, + 0xc7,0xca,0xcc,0x85,0x85,0x86,0x5c,0xc6,0x88,0x0c,0xa5,0x13,0x88,0x0a,0x77,0x78,0x3d,0xf8,0xdb,0x12, + 0xbd,0xf1,0xb7,0x96,0xb7,0xb1,0x8f,0x2c,0x23,0x2b,0xab,0x65,0x3a,0xe2,0x97,0xc4,0x92,0xe5,0x7c,0x1a, + 0x12,0xe2,0x56,0x10,0x45,0x30,0x24,0x5d,0x12,0x55,0x4d,0x0c,0x69,0x32,0x7b,0xf2,0x5a,0xe5,0x24,0x33, + 0x88,0x44,0x64,0xcc,0x4b,0x45,0xec,0x4a,0xd1,0xab,0x0b,0x08,0x30,0xcc,0xef,0xa7,0x3f,0xa8,0xae,0x2d, + 0xd1,0x83,0xce,0xac,0xa5,0x0b,0x9c,0x62,0xcb,0x10,0x68,0xfb,0x35,0xbd,0x8c,0xd9,0xb9,0xb4,0x33,0x16, + 0x06,0x19,0xf0,0x55,0x6d,0x38,0x1f,0x48,0xe2,0xd4,0x7b,0x1a,0xe7,0x14,0x09,0xb4,0xd8,0x2e,0x13,0x93, + 0x60,0x53,0xff,0x32,0x24,0xf1,0xae,0x3d,0x6b,0xda,0x41,0x29,0x37,0xc0,0xd5,0xc0,0x3e,0x63,0x68,0x46, + 0x05,0xdb,0x34,0xf1,0x68,0xf9,0xe6,0x47,0xf8,0x09,0xdf,0xe3,0x9f,0x9e,0x76,0x14,0xac,0xac,0x80,0xf4, + 0xe0,0xe0,0xbf,0xeb,0x4c,0xbb,0xe8,0x3a,0xa0,0xb3,0xcd,0xa1,0xcd,0xcd,0x79,0x32,0x81,0xcd,0x8b,0xea, + 0x87,0xc6,0xf9,0x84,0x5b,0x8f,0x41,0x93,0xf3,0xe4,0x44,0x45,0x0c,0xf0,0xaa,0xb0,0x87,0x52,0x58,0x5f, + 0x22,0x46,0xb9,0x75,0xe2,0x65,0xcc,0x56,0xaa,0x75,0xa2,0x75,0xde,0xa8,0x61,0x20,0xc8,0x6e,0x50,0xf6, + 0x47,0xf9,0xa3,0x83,0x87,0x0f,0xe9,0x4f,0x3f,0x3a,0xf8,0x34,0x50,0xbe,0xe9,0x73,0x71,0x4e,0x96,0x47, + 0xbb,0xf7,0x91,0xf5,0x28,0xba,0x6f,0x4a,0xa4,0xa6,0x44,0x35,0xa8,0xb7,0x21,0x2a,0xa8,0x67,0x67,0x1f, + 0xa2,0x94,0x52,0x2c,0xc1,0x86,0x1f,0x0c,0xaa,0xb3,0x24,0xb3,0x7d,0x8c,0x4a,0x7e,0xcd,0xd7,0x6f,0x2d, + 0x22,0xfc,0xfb,0xd6,0x6c,0x9b,0xbd,0xdd,0x5a,0xc8,0x65,0x62,0xb7,0x77,0x85,0xd5,0xec,0xcc,0x2d,0xab, + 0x7c,0xd9,0xb9,0x69,0x0a,0xe5,0xd1,0x0a,0x6f,0x02,0xeb,0xbf,0x9a,0xd2,0x2b,0xcf,0xf2,0xab,0x97,0x36, + 0x12,0xef,0x0c,0x78,0x09,0x40,0xcc,0x1c,0x40,0x8c,0xae,0xd5,0x2d,0x41,0x57,0x81,0x48,0x8a,0xaa,0x4d, + 0x28,0x7e,0xcd,0xb3,0x36,0xc4,0xde,0xbd,0x3b,0x25,0x6a,0xb3,0xc0,0xef,0x7c,0x85,0x28,0xe9,0xad,0x12, + 0x08,0x77,0xde,0x06,0xf4,0x32,0xa9,0x74,0x1d,0x6b,0xbe,0x8d,0x91,0x08,0xee,0xd8,0x72,0x4c,0x36,0xe1, + 0xa7,0xc9,0x03,0x90,0x9d,0x44,0xb9,0x74,0xcf,0x53,0x11,0x1f,0x1d,0x4d,0xf2,0x6c,0x5a,0x99,0x6a,0x42, + 0xbe,0x33,0xa3,0xee,0x52,0xea,0x56,0xef,0x1e,0x99,0xa1,0x85,0x09,0xd9,0xb0,0x8a,0x59,0x23,0x74,0x8d, + 0x16,0xe7,0x11,0x33,0x0d,0xe7,0xe5,0x72,0x38,0x3c,0x6f,0x84,0x70,0x36,0x84,0xbf,0x88,0xd6,0x2d,0x93, + 0xb1,0xf7,0xed,0xe1,0xe1,0xeb,0x9e,0xfe,0xec,0x21,0x38,0x74,0xcf,0xeb,0xd7,0x05,0x06,0xea,0xa6,0x42, + 0x0a,0xcb,0x13,0xc7,0x30,0x69,0xd1,0xb9,0xde,0xd0,0x84,0xbf,0x92,0x91,0x36,0xa1,0x01,0xb1,0x6d,0xfc, + 0x2a,0xe8,0x7b,0xc7,0xd9,0x71,0xe6,0xf5,0x8b,0x90,0x43,0x23,0xd9,0x22,0xc1,0x1b,0x8d,0x37,0xe3,0x77, + 0x69,0xce,0xfe,0x5e,0x7d,0x6f,0x2f,0x5e,0xa6,0x7b,0xea,0x26,0xf6,0x9a,0x20,0xdc,0x15,0x12,0xba,0x52, + 0x61,0x6b,0x68,0x08,0xda,0x0a,0x52,0x92,0x08,0x7e,0x07,0x2a,0x50,0xd7,0xc0,0x5d,0xc0,0x01,0xb8,0x2e, + 0x38,0xd1,0x65,0x80,0xb4,0x0f,0xb8,0x17,0xa8,0x61,0x5b,0x82,0xba,0x8f,0x1a,0x79,0x7d,0x57,0x7e,0xec, + 0xe0,0xeb,0x9a,0x7f,0x66,0xfc,0x96,0x15,0x8a,0x9e,0x82,0x12,0x18,0x7e,0xd4,0xf0,0x95,0x0a,0xe9,0x47, + 0x0e,0x5d,0x6a,0xfd,0x99,0x61,0x2b,0x8d,0x7b,0x3d,0x64,0x47,0xc6,0xf7,0x51,0x03,0xd7,0x14,0xcb,0x1e, + 0x9b,0xa4,0x75,0x8c,0x1f,0xae,0x36,0xbb,0xa7,0xa0,0x91,0x97,0xa1,0x9d,0x24,0x79,0xa0,0x3e,0xd7,0xeb, + 0x36,0xbd,0xa4,0x4a,0xb8,0xa9,0xeb,0xf5,0xbe,0x43,0x38,0xb5,0x7d,0x89,0x9a,0x6a,0x52,0x28,0x08,0xea, + 0xcb,0x6c,0x7f,0x54,0x3c,0x6a,0x64,0x6b,0x07,0xd7,0x85,0x8e,0x93,0x9c,0x46,0x8d,0x12,0x47,0xc5,0x84, + 0xb0,0xad,0x29,0x2f,0x51,0x6c,0x6a,0x4d,0xfd,0x61,0x3a,0xa8,0x3f,0xac,0xd1,0x1d,0x82,0xaf,0x4f,0x07, + 0xd6,0x17,0x32,0xf5,0xec,0x53,0x67,0xe2,0xe6,0x76,0x74,0x2b,0x3c,0xde,0x1f,0xef,0x23,0x45,0x4d,0xdb, + 0xbe,0x34,0x5b,0x05,0x4d,0x31,0x22,0x84,0x2e,0x44,0xb1,0xc7,0x3f,0xb8,0x9b,0xd2,0x54,0xde,0x97,0xaf, + 0xe6,0xbf,0x24,0xc9,0x79,0xf0,0x98,0xc6,0xa6,0xb4,0x7b,0xfc,0xfb,0xad,0xac,0x2b,0xa3,0xe2,0xe3,0x3f, + 0x6c,0xd7,0xd3,0x6a,0x3e,0xfe,0xe7,0xad,0xbc,0xb9,0x68,0xfa,0xf8,0x07,0x9f,0xb5,0xb2,0x4a,0xad,0xef, + 0xe3,0x3f,0x68,0x77,0x58,0x8a,0xd2,0x8f,0xff,0x59,0xab,0x3b,0xc4,0x16,0xaa,0x17,0x1c,0xf3,0x8a,0xe0, + 0xf6,0xe1,0xc3,0x01,0xde,0x86,0x70,0x03,0xf6,0x0d,0xd9,0xf4,0x9f,0x03,0x7c,0xe1,0x00,0x3e,0xf6,0xe8, + 0x9a,0xb9,0x48,0xf5,0x3f,0x73,0x86,0xdd,0xd1,0xd7,0xe8,0x87,0x69,0xde,0x8f,0xc3,0x3e,0xa8,0xb2,0xa7, + 0x14,0xa0,0xbb,0xcf,0x70,0xd7,0x81,0x0a,0x6c,0x8b,0xff,0x1d,0xc4,0xb1,0x02,0x6f,0xc6,0x61,0x98,0xd8, + 0x25,0xe8,0xfe,0x28,0xd6,0x67,0x4b,0x1d,0xa9,0x58,0x1f,0xa9,0x52,0x4d,0x18,0x9e,0x7c,0x38,0x1a,0x49, + 0x31,0x26,0x62,0x62,0x58,0xee,0xd0,0x2f,0x8e,0x04,0xbb,0x03,0x07,0x84,0x4e,0x98,0x29,0xe2,0x76,0xc3, + 0xb4,0x1f,0x95,0x1b,0xdc,0x99,0x34,0xde,0x28,0x0f,0x93,0x81,0x43,0xf0,0x4b,0x9c,0xf6,0xf9,0x22,0x47, + 0xd4,0xab,0x3d,0x1d,0x00,0x2d,0xb0,0x8a,0x31,0xd0,0x6c,0x5a,0x4f,0x42,0xdd,0x8b,0x95,0x28,0x6a,0x98, + 0x23,0xc8,0xc9,0x4f,0xcc,0x52,0x16,0x6f,0x49,0xfc,0x58,0xfb,0xea,0x09,0x6b,0x3e,0xcd,0xbe,0x58,0x06, + 0x3a,0xd5,0x61,0xdc,0x9c,0x12,0x56,0x86,0x61,0xe7,0x9c,0x02,0x2a,0x51,0x18,0x3c,0x37,0x87,0x52,0x6a, + 0x6e,0xcf,0xc9,0xd2,0xa9,0xc2,0xfe,0x39,0x59,0x48,0x01,0x37,0xe8,0x24,0xa6,0x4b,0x9b,0x31,0x74,0x7b, + 0x31,0xe9,0x86,0x57,0x74,0xf2,0x55,0xe2,0xa6,0x09,0x3e,0x08,0xd6,0xf9,0x81,0x40,0xdd,0xd8,0x16,0x82, + 0xe8,0x16,0x25,0x5d,0x6f,0x04,0xd1,0xcb,0x7a,0x27,0xbb,0x2f,0x5c,0xc3,0x9e,0x99,0x5d,0xac,0x6e,0xda, + 0x45,0x6d,0xc4,0x51,0xa9,0x5b,0xb5,0xd9,0x77,0xc6,0x64,0x7c,0x17,0xf9,0xe5,0x39,0xda,0xd4,0x38,0x87, + 0x7a,0xbe,0x55,0xe7,0x7c,0x2b,0x67,0xbe,0xe6,0x26,0xee,0xe2,0x1a,0x9c,0xb9,0x76,0x72,0x7e,0x5b,0x61, + 0x57,0x31,0x16,0xc4,0x0a,0x9e,0x26,0x74,0x24,0x4d,0x82,0xa1,0xdb,0x35,0x27,0x6f,0x77,0xa9,0xe2,0x9a, + 0xb9,0xb5,0xfb,0xfd,0xd0,0x4d,0x50,0x61,0xae,0x0f,0x86,0x26,0xd9,0x0c,0x27,0xf2,0xf6,0x3c,0x2b,0x84, + 0x59,0xef,0x7e,0x67,0x99,0x5d,0xa7,0xcc,0x83,0xce,0x32,0xc7,0xc7,0x4e,0xa1,0x87,0x9d,0x85,0xd6,0x5e, + 0xd8,0x9c,0xe9,0x66,0x13,0xde,0xff,0x74,0x9f,0x97,0xab,0xcd,0x72,0xd9,0xab,0xc5,0xec,0x81,0x59,0x04, + 0xe5,0x21,0xaa,0x5e,0x22,0x6a,0x81,0x10,0xa4,0xe6,0xa6,0xa1,0x20,0x22,0x84,0x7a,0x57,0xf0,0x89,0x5a, + 0x54,0xa5,0x8f,0xa9,0xbe,0xcb,0xb5,0x87,0x63,0x5b,0x9d,0xdb,0x33,0xf1,0xc2,0xb7,0xd4,0x15,0x96,0x40, + 0xad,0xb2,0x0a,0xe6,0x7d,0x5f,0x07,0xed,0xd6,0x47,0x8e,0x20,0x6d,0xa4,0xb6,0x41,0x2d,0x10,0xff,0x31, + 0x11,0xc3,0xc5,0x03,0x97,0x5e,0x61,0xb7,0x32,0xc6,0x20,0x21,0xc2,0x87,0xfa,0x79,0xa1,0x6b,0x9c,0x9b, + 0xee,0x25,0x38,0x4c,0xde,0x55,0x7f,0x6e,0x19,0x7a,0x7c,0x5c,0xda,0xc5,0x20,0xac,0x36,0xcf,0x16,0x5e, + 0xf0,0x91,0xeb,0xf3,0x01,0x6d,0x43,0xd1,0x9f,0xda,0x55,0xeb,0xf5,0x01,0x15,0xc4,0x0e,0x40,0x57,0xb9, + 0xff,0x21,0x55,0x1c,0xf3,0x00,0x5d,0x53,0xaf,0x7c,0x6f,0xdb,0x5c,0xd2,0xa5,0x86,0xef,0x0f,0xe8,0xc2, + 0xb1,0x31,0xd0,0x5d,0x7c,0xfa,0x11,0x35,0x53,0xb1,0x39,0xd0,0x55,0x9b,0xdb,0x7f,0xdb,0xfe,0xd4,0xa0, + 0x81,0x58,0x9a,0x2d,0x4d,0x87,0x9b,0xaf,0xd1,0xb1,0x25,0x2b,0x48,0x5a,0xc2,0x2a,0x96,0x02,0x0c,0xb7, + 0x73,0x75,0x7b,0x4a,0x96,0xfc,0x91,0x64,0x56,0x3d,0x97,0x8f,0xa5,0xb0,0x9a,0x03,0xec,0xc2,0xd0,0xb7, + 0xcf,0x08,0xd4,0x46,0x43,0xc3,0xa3,0xfb,0x9a,0xe2,0x43,0xa4,0x56,0xca,0x46,0xfd,0xfb,0x2c,0xd8,0xb3, + 0x05,0xef,0x44,0x56,0x09,0xc5,0x05,0xd1,0x3f,0xbc,0xb4,0x41,0xf7,0x7d,0xc4,0xae,0x92,0xe0,0x78,0xd1, + 0x9b,0xa7,0x70,0x4a,0x63,0x84,0x8f,0xb4,0x98,0x5f,0x49,0x58,0xd7,0x2f,0xdf,0x3f,0xe7,0x6c,0x19,0xc7, + 0xd7,0x28,0xc6,0xd1,0x73,0x93,0x12,0xfe,0xd9,0x94,0xfc,0x82,0x45,0xe0,0x34,0xa1,0xe1,0x83,0xcf,0x92, + 0x87,0x61,0x9e,0xfd,0xe4,0x0a,0xfd,0x9d,0x50,0x1e,0xcd,0x81,0x31,0xf9,0x55,0xc0,0xf9,0x8d,0x7f,0xb0, + 0xbf,0xff,0x89,0x60,0xe6,0x64,0xb6,0x47,0x50,0x95,0x57,0x31,0x42,0x13,0x8f,0x5a,0xd7,0x6e,0xad,0xd3, + 0x02,0xa7,0xf2,0xff,0xf5,0x77,0xae,0xbb,0x19,0xdd,0xd7,0x6e,0x63,0x5a,0x96,0x60,0x14,0xbf,0x6f,0x5d, + 0x59,0x5a,0x55,0xaa,0x47,0x30,0x8c,0xdd,0xdf,0x88,0x0c,0x5a,0x89,0x5e,0x6f,0xbb,0xad,0x11,0x3e,0xbc, + 0x43,0x62,0x0b,0x8e,0x50,0xe2,0xad,0x35,0x84,0xb6,0x22,0x05,0x68,0x4a,0x72,0xbb,0x85,0x72,0x1a,0x42, + 0x95,0x90,0x92,0xae,0xc9,0xfd,0xfd,0x20,0xd8,0x38,0xba,0x44,0xdd,0xc3,0xe3,0xa8,0x55,0x56,0x2f,0x7f, + 0xbd,0xd7,0xd0,0xa9,0x0f,0x28,0xef,0x68,0x10,0x4f,0x29,0xdd,0xf2,0xeb,0x7d,0x8b,0xa4,0x6f,0xc7,0xd3, + 0xe5,0x50,0xba,0xbc,0xea,0x9a,0xed,0xc8,0x88,0xed,0x70,0x63,0xd6,0x36,0x38,0x87,0x4d,0x30,0xd2,0x5c, + 0x45,0x25,0x11,0x42,0xb4,0x74,0x00,0x8d,0x6f,0x6d,0xb3,0xe8,0x47,0x2a,0xf5,0x28,0x9b,0xc8,0x9b,0xe7, + 0xe8,0x06,0x9e,0xa4,0xd8,0x73,0xdb,0x08,0x36,0x22,0x5d,0x50,0x91,0x33,0xb7,0x76,0xa3,0xa4,0xe6,0xcd, + 0xae,0x30,0xe6,0x2d,0xe2,0xfd,0x36,0x75,0x6b,0x73,0x78,0xe1,0x75,0x43,0xac,0x72,0x90,0x3c,0x10,0x8d, + 0x84,0x72,0x98,0xfe,0x15,0x02,0xde,0xda,0xea,0x9b,0x88,0x77,0xb5,0xe9,0x90,0x78,0x37,0x15,0xd3,0xb6, + 0x9f,0x0f,0x29,0x20,0xa0,0xd7,0x7c,0xc4,0xab,0x09,0x7a,0xbe,0x3a,0xa0,0x6e,0x59,0x0e,0xf7,0xf6,0xf0, + 0x50,0xa4,0x34,0x2c,0x69,0x0d,0x4a,0xd6,0xb2,0x44,0x1a,0xaf,0xc8,0x69,0x92,0x43,0x18,0xbb,0xf7,0x7b, + 0xc9,0x7c,0x9b,0x44,0x88,0x18,0x5e,0x6b,0x2d,0xf5,0xba,0xcb,0xf0,0x3c,0x01,0xab,0x23,0x5c,0xc1,0xa0, + 0x7e,0x7c,0xda,0xb4,0x56,0x6a,0x3b,0xa7,0x0c,0x84,0x40,0xd7,0x6c,0x89,0x00,0x3b,0x4e,0x82,0x09,0xd2, + 0x6d,0x24,0xf9,0x4e,0x36,0xdc,0x87,0xd2,0x40,0x2f,0x92,0xaa,0x78,0x6f,0x06,0x34,0x32,0x83,0x59,0xc4, + 0x15,0x7c,0x8a,0xc6,0x55,0x58,0x27,0x11,0x92,0xca,0xf0,0xef,0x07,0x4b,0x47,0xdc,0x1d,0xd8,0xb2,0x6f, + 0xed,0x15,0xb7,0xf8,0xaf,0x0f,0x90,0x1e,0x72,0xb8,0x0f,0x73,0xbd,0x59,0xec,0xf4,0xa8,0x3e,0xbd,0x46, + 0x0e,0xd8,0x90,0xf4,0x68,0x22,0xb2,0x29,0x0c,0x6c,0x16,0x73,0xb3,0xdd,0x67,0x5a,0x7d,0xb6,0x9a,0x35, + 0x5c,0x89,0x5f,0xa6,0xc5,0x13,0xf0,0x0f,0xd9,0x5d,0x94,0x4e,0xdf,0xa8,0xba,0x41,0xf4,0x57,0x58,0xa2, + 0x3f,0x47,0xee,0x57,0xd8,0xd2,0x39,0x23,0xf4,0x2b,0xea,0xc9,0x61,0x4a,0x45,0x43,0x84,0x57,0x38,0xcf, + 0x62,0x94,0x6d,0xc4,0x82,0x61,0x2d,0x1e,0x1b,0xfa,0xc5,0x40,0xe4,0x7b,0xe3,0x83,0xe1,0x7e,0xb0,0x46, + 0xe8,0x73,0x11,0xea,0x8d,0xef,0xab,0x6f,0x23,0xc9,0x1b,0x3f,0xd4,0x25,0x94,0xf8,0x6e,0xfc,0xb9,0x4a, + 0x10,0x99,0xdd,0xf8,0xe0,0x33,0xf5,0xad,0x05,0x75,0xe3,0x07,0xba,0x11,0x91,0xce,0x8d,0x3f,0x43,0x13, + 0x74,0x74,0x5b,0x38,0xc6,0x15,0x05,0x87,0xd5,0x5f,0x95,0x04,0x34,0x44,0x76,0x37,0xcb,0x02,0xe8,0xa2, + 0xa5,0xa3,0x6b,0xbf,0xb6,0x37,0xdf,0x8f,0xb6,0x6c,0x7d,0x6b,0x07,0x5d,0x71,0x6d,0x2d,0x9f,0x25,0x1c, + 0x53,0x0b,0x65,0x3f,0x7d,0xd8,0x10,0xbe,0x1a,0x11,0xeb,0x4e,0x2d,0x52,0xdd,0xb1,0x45,0xa8,0x3b,0x96, + 0xc8,0x74,0xc7,0x88,0x48,0x77,0x2c,0x89,0xe8,0x8e,0x11,0x80,0x4a,0xec,0xc0,0x19,0x5b,0xeb,0x75,0x4e, + 0x29,0xb9,0x79,0x4e,0x2a,0x78,0x64,0x82,0xe0,0x91,0x9d,0x5a,0xb8,0x7f,0x4d,0xe0,0xd5,0x14,0x7d,0x86, + 0x2d,0x71,0xe6,0x5f,0xdd,0xfa,0x96,0x68,0xf3,0x76,0x41,0xd0,0xcc,0x95,0x87,0x6e,0xdf,0x7e,0x19,0xe1, + 0x8d,0x00,0x60,0x6d,0xf9,0x32,0xcd,0x86,0xf7,0xc3,0x99,0x31,0x7d,0xb4,0x76,0x66,0x4b,0x7f,0xad,0xbd, + 0x69,0x76,0xe8,0xec,0x0e,0x1c,0xfc,0xa7,0x94,0x12,0x33,0xb8,0x77,0x3e,0xee,0x7a,0xde,0x08,0x6a,0x4a, + 0x19,0x11,0x1b,0x8f,0xa3,0xfd,0xb1,0xd7,0xf7,0x86,0xde,0xae,0xa7,0x09,0x76,0x5f,0x91,0x18,0xf1,0x49, + 0x89,0x30,0xcb,0xff,0xe3,0xb3,0x7d,0x2d,0xe5,0xa5,0x0a,0x16,0xf1,0x91,0xec,0x7d,0xb6,0x1f,0xa0,0x6a, + 0x58,0x3c,0x3a,0xd8,0x97,0xf6,0xbc,0x7d,0x2f,0x08,0x25,0xbe,0x36,0x0b,0x97,0x6c,0x4d,0x9e,0x6e,0x10, + 0xe9,0x94,0x1c,0x7f,0xf4,0x8b,0x5b,0xdd,0x4d,0x74,0x2d,0xda,0xd4,0x20,0x09,0x68,0xe1,0x45,0x7f,0x5a, + 0xdd,0x81,0xfc,0x51,0x2b,0x2f,0xab,0x54,0xfd,0xad,0x55,0x9f,0xf5,0x85,0xc9,0x5f,0x9b,0x8f,0x7b,0x04, + 0x53,0x84,0x8a,0xc8,0x8a,0xb6,0x4c,0x9e,0xf7,0xd2,0x1e,0xb1,0x3c,0x5a,0x8b,0xac,0xf2,0x86,0x2a,0x8d, + 0x26,0x7d,0x7e,0x4d,0x2e,0xe1,0xe7,0xc2,0x4a,0xe5,0x69,0x6f,0x71,0x6d,0x6d,0xf5,0x39,0xa8,0x17,0xe9, + 0xd1,0xc1,0x86,0xf5,0xc9,0x6f,0x68,0x84,0xee,0xda,0xfd,0x28,0xba,0xa1,0x8d,0x40,0x3b,0x78,0xb7,0xb3, + 0x79,0xb5,0x1f,0x1d,0x8c,0xbb,0x33,0xa2,0x83,0x61,0x77,0xc6,0xe3,0x83,0xcf,0xb4,0x26,0x68,0x47,0xa5, + 0xcf,0xd4,0x03,0xbb,0x9d,0x25,0x3b,0xa5,0x09,0x9f,0xee,0x9a,0xc1,0xb6,0x5a,0xea,0xec,0x6c,0xa9,0xc5, + 0x31,0xde,0xe1,0xa8,0xc3,0x1f,0xdd,0xdc,0xed,0xa3,0xee,0x06,0x46,0x5b,0xfb,0x15,0x24,0x21,0x5a,0x8f, + 0xfb,0xac,0xe6,0x08,0xbd,0x4b,0x62,0x1b,0x6e,0x58,0xe6,0x7e,0x3f,0xbc,0x7f,0xe3,0x3e,0xa8,0x68,0x8b, + 0x4d,0x50,0x02,0xa8,0x58,0x15,0x3e,0x90,0x75,0xb4,0x1a,0x90,0x90,0xdd,0xcc,0x30,0x4e,0xed,0x54,0x87, + 0x89,0x6c,0xea,0xf8,0x58,0x4c,0x5d,0x4b,0xfd,0xe7,0x66,0xd6,0xae,0x31,0x74,0x87,0xad,0xbc,0x1d,0xa3, + 0x88,0x12,0x87,0x3b,0xd4,0xee,0xb1,0xfc,0x19,0xb6,0xb3,0x6b,0x6c,0x61,0x47,0xdb,0x36,0x0b,0xda,0xa1, + 0xfd,0xb4,0x85,0xa1,0x22,0xbe,0x41,0x30,0x56,0xd2,0x86,0xa5,0x1a,0x71,0xb9,0x99,0x4d,0xfc,0x95,0x74, + 0x80,0xdb,0x5f,0xe7,0xc1,0xac,0x39,0xdc,0x74,0x7b,0x3a,0x2b,0xc0,0x17,0xa9,0x51,0xd7,0x35,0x6a,0x75, + 0x6d,0x8d,0x5d,0x83,0xe1,0x6a,0xa6,0x13,0x8b,0x0b,0xb3,0x59,0x90,0x2e,0x0d,0x2d,0xbc,0x8f,0xaf,0x5f, + 0x7e,0x5c,0xbf,0x4a,0xc7,0xd6,0xea,0xdf,0x68,0xa0,0xda,0x0b,0xd8,0xa5,0x6c,0x17,0x79,0x7f,0xf3,0xfa, + 0x49,0xc3,0xe2,0x67,0x5b,0xbf,0xed,0x33,0x69,0xf5,0x0e,0x0d,0xdf,0xcd,0xff,0x07,0xdb,0x20,0xdf,0xb3, + 0x3e,0x1d,0x02,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index d43e9d3..4699f6c 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 35; +const uint8_t VersionMetadata = 39; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+35"; -const char VersionCommitDate[] = "2018-02-03"; +const char VersionFullSemVer[] = "2.0.0-beta.1+39"; +const char VersionCommitDate[] = "2018-02-12"; #endif diff --git a/web/app.js b/web/app.js index 9c71bce..c3a5157 100644 --- a/web/app.js +++ b/web/app.js @@ -833,11 +833,12 @@ function startApp() { var result = ''; - if (isRelative && time >= 0) - result += '+'; + if (isRelative) + result += time >= 0 ? '+' : '-'; + time = Math.abs(time); var hours = Math.floor(time / 60); - var minutes = Math.abs(time) % 60; + var minutes = time % 60; result += hours + ':'; if (minutes < 10) diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 6a87140..9e0967a 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):X(c)&&X(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function De(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=De(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Wr=e,Hr=zr=Kr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Wr.charCodeAt(++Hr)}function ct(){return Hr>=Vr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,o,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?ki(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Ct(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function kt(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===ji?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=ji,u=a,f=o.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?ji:Ii:null)?n===ji?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===ji&&Bi.test(r[Li+"Property"])}}function St(e,t){for(;e.length1}function Dt(e,t){!0!==t.data.show&&$t(t)}function jt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Vt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Vt(Q(t.children)):e}function Wt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'

',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Cn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),Tn=/\B([A-Z])/g,kn=d(function(e){return e.replace(Tn,"-$1").toLowerCase()}),xn=function(e,t,n){return!1},Sn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:xn,isReservedAttr:xn,isUnknownElement:xn,getTagNamespace:g,parsePlatformTagName:Sn,mustUseProp:xn,_lifecycleHooks:On},Pn=/[^\w.$]/,Dn="__proto__"in{},jn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=jn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Vn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Wn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(jn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!jn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=jn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Kn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Cr[n].id>e.id;)n--;Cr.splice(n+1,0,e)}else Cr.push(e);xr||(xr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};xe(Se.prototype);var Dr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Dr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:qn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Vr,Wr,Ur,Hr,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){Ve(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Ve(e,!0),Ve(t))},destroy:function(e){Ve(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ci={create:pt,update:pt},Ti={create:ht,update:ht},ki=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),xi=/^--/,Si=/\s*!important$/,Ai=function(e,t,n){if(xi.test(t))e.style.setProperty(t,n);else if(Si.test(n))e.style.setProperty(t,n.replace(Si,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Ui),v(Pe.options.components,qi),Pe.prototype.__patch__=jn?Vi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&jn?Be(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(ki(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),lo=/^]+>/i,uo=/^/g,"$1").replace(//g,"$1")),Do(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(uo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(lo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),l(n)&&o===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(T=e.slice(v);!(co.test(T)||ao.test(T)||uo.test(T)||fo.test(T)||(k=T.indexOf("<",1))<0);)v+=k,T=e.slice(v);C=e.substring(0,v),n(v)}v<0&&(C=e,e=""),t.chars&&C&&t.chars(C)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||wo(e);Nn&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Xe(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},C=function(){this._caches=Object.create(null)};C.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[S]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===D&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,o,a,s)),s?this._render(l,a,s):l},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(o))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings",loadSteps:"Could not load calibration settings",updateCalibration:"Could not save calibration settings"},calibration:{title:"Calibration wizard",backButton:"Back",count:"Number of steps",nextButton:"Next",applyButton:"Complete",allStepsValue:"Intensity for all steps",ranges:"Min / max values per step",useCurve:"Use logarithmic curve for intensity (recommended for LEDs)"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan",loadSteps:"Kan kalibratie instellingen niet ophalen",updateCalibration:"Kan kalibratie instellingen niet opslaan"},calibration:{title:"Kalibratie wizard",backButton:"Terug",count:"Aantal treden",nextButton:"Volgende",applyButton:"Voltooien",allStepsValue:"Intensiteit voor alle treden",ranges:"Min / max waarden per trede",useCurve:"Gebruik logaritmische curve voor intensiteit (aangeraden voor LEDs)"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("range",{template:'
{{ value.start }}
{{ value.end }}
',props:["value"],mounted:function(){this.oldValue={start:this.value.start,end:this.value.end}},watch:{value:{handler:function(e){e.start!=this.oldValue.start?e.start>e.end&&(e.end=e.start+1,this.$emit("input",e)):e.end!=this.oldValue.end&&e.end0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&e>=0&&(n+="+");var r=Math.floor(e/60),i=Math.abs(e)%60;return n+=r+":",i<10&&(n+="0"),n+=i},startCalibration:function(){var e=this;axios.get("/api/steps").then(function(t){"object"==typeof t.data&&(e.calibration={wizardStep:0,count:t.data.count,useCurve:t.data.useCurve,ranges:t.data.ranges})}).catch(e.handleAPIError.bind(e,"error.loadSteps"))},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){if(0==this.calibration.wizardStep)if(this.calibration.count<1?this.calibration.count=1:this.calibration.count>16&&(this.calibration.count=16),this.calibration.ranges.length>this.calibration.count)this.calibration.ranges.splice(this.calibration.count);else for(;this.calibration.ranges.length=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):X(c)&&X(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function De(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=De(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Wr=e,Hr=zr=Kr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Wr.charCodeAt(++Hr)}function ct(){return Hr>=Vr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,o,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?ki(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Ct(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function kt(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===ji?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=ji,u=a,f=o.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?ji:Ii:null)?n===ji?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===ji&&Bi.test(r[Li+"Property"])}}function St(e,t){for(;e.length1}function Dt(e,t){!0!==t.data.show&&$t(t)}function jt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Vt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Vt(Q(t.children)):e}function Wt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
-
- - -
-
From 7010e83554ca7e02d9e2e1a7f71ea00fffdec5bb Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Tue, 13 Feb 2018 21:52:24 +0100 Subject: [PATCH 42/43] Fixed #19: Implement exception handler --- API.md | 35 +- platformio.ini | 1 + src/assets/js.h | 2186 +++++++++++++++++---------------- src/assets/version.h | 4 +- src/config.h | 9 +- src/main.cpp | 2 +- src/server/settings.cpp | 73 +- src/settings/abstractjson.cpp | 2 + web/app.js | 13 +- web/dist/bundle.js | 2 +- web/lang.js | 8 +- 11 files changed, 1227 insertions(+), 1108 deletions(-) diff --git a/API.md b/API.md index 65e6171..1340693 100644 --- a/API.md +++ b/API.md @@ -1,6 +1,6 @@ # API -- [GET /api/apply](#get-apiapply) +- [GET /api/set](#get-apiset) - [GET /api/status](#get-apistatus) - [GET /api/connection/status](#get-apiconnectionstatus) - [GET /api/connection](#get-apiconnection) @@ -14,6 +14,13 @@ - [GET /api/triggers/motion](#get-apitriggersmotion) - [POST /api/triggers/motion](#post-apitriggersmotion) - [POST /api/firmware](#post-apifirmware) +- [GET /api/stacktrace/get](#get-apistacktraceget) +- [GET /api/stacktrace/delete](#get-apistacktracedelete) + +#### Debug API +- [GET /api/crash/exception](#get-apicrashexception) +- [GET /api/crash/softwdt](#get-apicrashsoftwdt) +- [GET /api/crash/wdt](#get-apicrashwdt) ## GET /api/set @@ -290,4 +297,28 @@ If the "triggers" array is omitted entirely, the items will not be cleared or ov ## POST /api/firmware -Uploads new firmware. The bin file should be posted as a multipart/form-data file attachment. Name is not relevant. \ No newline at end of file +Uploads new firmware. The bin file should be posted as a multipart/form-data file attachment. Name is not relevant. + +## GET /api/stacktrace/get + +If an exception occurs and the stack trace was recorded before the device reset, this will return the stack trace as a file named "stacktrace.txt". + +## GET /api/stacktrace/delete + +Removes any recorded stack trace. + +# Debug API + +These APIs are hopefully never enabled unless you've changed the config.h for the purpose of testing the exception handler. Don't forget to turn it back off afterwards. + +## GET /api/crash/exception + +Causes a crash due to an unhandled exception. Should provide a stack trace afterwards. + +## GET /api/crash/softwdt + +Causes the software watchdog to reset. + +## GET /api/crash/wdt + +Disables the software watchdog and causes the hardware watchdog. diff --git a/platformio.ini b/platformio.ini index 9733b37..af67e5b 100644 --- a/platformio.ini +++ b/platformio.ini @@ -19,4 +19,5 @@ lib_deps = NTPClient Time Dusk2Dawn + EspSaveCrash build_flags = !platformio-buildflags.bat \ No newline at end of file diff --git a/src/assets/js.h b/src/assets/js.h index 7158aad..6b8dacb 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -1282,1097 +1282,1099 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xce,0xbe,0x21,0x64,0xde,0x9d,0x9e,0x74,0x50,0xd1,0xf0,0xdf,0xd3,0xb1,0x48,0xbb,0xa1,0xbf,0xb0,0x57, 0x60,0x83,0x8b,0xc9,0x38,0x60,0x53,0x6f,0x49,0x9d,0xb9,0x81,0xfb,0x00,0x66,0xf5,0x48,0xf0,0xc2,0x56, 0x77,0x1b,0x97,0x97,0x34,0x5c,0xda,0x42,0x48,0xcf,0xbc,0xb5,0x00,0x88,0xe7,0x0d,0x97,0xe2,0xfc,0x7f, - 0xed,0xbd,0xfb,0x7a,0xdb,0x46,0xb2,0x2f,0xfa,0x2a,0x14,0xc6,0xdb,0x06,0xc2,0x16,0x25,0xf9,0x92,0x49, - 0x40,0xc3,0x1c,0x5f,0x72,0x71,0x12,0x5f,0x56,0xac,0x38,0x93,0x48,0x1a,0x2f,0x88,0x04,0x25,0x58,0x14, - 0xc0,0x01,0x41,0xc9,0x8e,0xc8,0x07,0x3a,0xff,0x9e,0x47,0xd8,0x4f,0x76,0xea,0x57,0xd5,0xdd,0x68,0x5c, - 0x28,0xd9,0xc9,0x5e,0xeb,0xec,0x6f,0x7f,0x7b,0xe6,0x8b,0x05,0xf6,0xfd,0x52,0x5d,0x5d,0x55,0x5d,0x17, - 0xba,0x03,0x65,0x07,0x1a,0xad,0xff,0x9a,0xf0,0x0a,0x68,0x7a,0xbc,0xd9,0x33,0xc3,0x28,0x51,0x27,0x15, - 0xc0,0x8a,0x67,0xe1,0x5f,0x21,0x57,0xc3,0xb1,0xe5,0xea,0x41,0xb7,0x06,0xaf,0x29,0xb4,0xa6,0xec,0x54, - 0xbb,0x9d,0xf0,0x3d,0xa2,0xa2,0xd7,0x0a,0x91,0x5d,0xe6,0x29,0x7c,0x92,0x19,0x3f,0x63,0x46,0x41,0xd6, - 0x7a,0x10,0x63,0x3f,0x11,0xd8,0xd2,0xca,0x73,0x98,0x77,0x44,0xb4,0x96,0x9d,0xc7,0xf7,0x89,0x19,0xf5, - 0xf7,0x49,0x67,0xff,0xdf,0xa3,0xff,0x49,0x8a,0xfe,0x2f,0xba,0x31,0xc7,0x39,0x0d,0x61,0x9a,0x52,0xa3, - 0x47,0xea,0xa4,0x6a,0xf8,0xdf,0xb6,0xe1,0x7f,0xd3,0xde,0x7c,0xac,0x32,0xbe,0xb3,0x19,0xdf,0x51,0xc6, - 0x71,0x1a,0xed,0x1c,0x1c,0x5e,0x06,0x83,0xfe,0xe1,0xf6,0xbb,0x5b,0x87,0x47,0x47,0x3b,0xea,0x1d,0xe2, - 0x06,0xbc,0x23,0x1e,0xe3,0x92,0x3f,0xc6,0x9e,0xda,0xaf,0x6a,0xd3,0xe5,0xa5,0x6b,0xcf,0x69,0x13,0xcf, - 0xaa,0x8c,0x53,0x9b,0x71,0x4a,0x19,0x4f,0xd3,0x4e,0x6b,0x5e,0x0e,0x58,0xb7,0x13,0xfa,0x83,0x7e,0xb0, - 0x53,0x85,0x63,0x10,0x63,0xcb,0x9d,0xa1,0x3f,0xda,0x3a,0xf8,0x97,0x7f,0xf4,0xc5,0x61,0x10,0xec,0x9c, - 0x74,0x28,0xa5,0x89,0xbd,0x66,0x52,0xb9,0x71,0x95,0x8a,0x50,0x26,0xb0,0x2f,0xa2,0x78,0x8c,0x38,0x40, - 0xec,0x56,0x1d,0xcc,0xe7,0x28,0x2a,0xaa,0xc0,0x3f,0x0c,0x44,0x25,0x3c,0xd3,0xd1,0xac,0xff,0xb5,0xbd, - 0xbd,0xa3,0x3e,0xd0,0xc7,0xe1,0xe2,0x8b,0xad,0xf4,0x1c,0xf6,0xd3,0x71,0x56,0xde,0xda,0x51,0x8f,0xd3, - 0x2e,0xad,0x87,0x37,0x3a,0x74,0x3d,0x01,0x4a,0x22,0x31,0x07,0x01,0xa3,0x96,0xdf,0x2a,0x5d,0x6b,0x8d, - 0x0f,0xba,0x6c,0xb6,0xb1,0xac,0xf5,0x9e,0xf7,0x21,0xe5,0x48,0x45,0x9e,0x1d,0x80,0x57,0x0b,0x2a,0xf0, - 0x2a,0xf5,0xc5,0x3b,0x7d,0xfd,0xb1,0x3c,0xab,0xe9,0xe0,0x74,0xbd,0xf0,0xea,0x7e,0xc1,0x61,0xb3,0x36, - 0x94,0x04,0x91,0x72,0x12,0x09,0x9e,0x6e,0x01,0x76,0x25,0x54,0x22,0x81,0xe7,0x8b,0xfc,0x0f,0xe0,0xe7, - 0x05,0x5c,0xe8,0x35,0x77,0x8f,0x06,0xf0,0x43,0x11,0xfd,0x50,0xdc,0xe0,0xbf,0x51,0x9a,0xb7,0xbe,0xf8, - 0xb6,0xd8,0xfe,0x1a,0x01,0x24,0xe0,0xa1,0x94,0x25,0xec,0x3f,0x98,0xb8,0x7c,0xbd,0xc4,0x79,0x2c,0xfb, - 0x14,0xdf,0x84,0xda,0xe3,0xc5,0xad,0xb4,0xc3,0xad,0xe6,0xad,0xf4,0x20,0x3b,0xea,0xb3,0x5a,0x70,0x51, - 0xef,0xa5,0xc0,0x8e,0x7f,0x53,0x41,0xe9,0x89,0x85,0xd2,0x13,0x82,0xd2,0x67,0xcd,0x79,0x6a,0x8b,0xf0, - 0x84,0x43,0x61,0x82,0x59,0x0d,0x89,0x5d,0xdf,0xe6,0x9f,0x9e,0xe2,0x3f,0x3a,0xf2,0x73,0x95,0xbe,0x5d, - 0xe6,0x3a,0xcb,0x89,0x01,0xed,0x64,0x8b,0xc4,0xd5,0x53,0x55,0x18,0x69,0xce,0xe4,0x9f,0x3a,0xd5,0x6d, - 0x93,0x13,0xb8,0xcd,0x66,0x5c,0x69,0x27,0x5b,0xb7,0x89,0xb9,0xbd,0x4e,0xd9,0xa3,0x18,0x22,0x42,0xbf, - 0x4f,0x75,0x9c,0x4b,0xf6,0x1c,0xeb,0xa9,0xe7,0xf4,0x5b,0x08,0x2c,0xfe,0xf9,0x53,0x23,0xfb,0xdb,0xda, - 0x6f,0xba,0x49,0x3c,0xf5,0xb2,0x5e,0xe3,0x85,0xfb,0x13,0x05,0x86,0xaf,0xf1,0x00,0x60,0xbd,0x35,0x68, - 0x37,0x66,0xe0,0x51,0x9d,0x66,0x1c,0xf2,0xc0,0x16,0xb8,0x64,0x20,0x6b,0x14,0xf3,0x31,0x22,0x27,0x52, - 0xa7,0x33,0xae,0xcb,0x46,0xea,0x37,0x19,0x5e,0x28,0xdb,0x1d,0xbb,0xa3,0xdb,0xdc,0x6f,0xbd,0x94,0xff, - 0xd2,0x76,0xfb,0xb8,0x3e,0xd7,0xcb,0x7a,0x22,0x77,0x2a,0x32,0x9a,0x9f,0xb1,0xca,0x23,0xdd,0x2c,0xd8, - 0x54,0x3a,0xdd,0xb6,0xdc,0xb7,0x20,0x6e,0xaf,0xcd,0x1c,0x40,0x5e,0xe4,0x4b,0x09,0x18,0x8e,0x18,0xa7, - 0x08,0x9d,0x17,0x2a,0xde,0xcd,0x9f,0x00,0x2d,0x1d,0xfb,0x36,0x7a,0xc7,0x8a,0x78,0x94,0xc0,0x57,0xab, - 0x5b,0xc1,0x8e,0xfa,0xd5,0x41,0x4f,0xad,0x00,0x0f,0x42,0xe5,0xbd,0x71,0xee,0x7a,0xd0,0x76,0x25,0x4b, - 0xc4,0xde,0xd4,0xa8,0x0b,0xa8,0xb8,0x3a,0x11,0x34,0x38,0x16,0x5c,0x2a,0x26,0x76,0x12,0xd2,0xa6,0xe6, - 0x91,0x2a,0x57,0xae,0x91,0x18,0x97,0x34,0xca,0x96,0x72,0xbf,0xb2,0x68,0x1d,0x11,0xa1,0xb5,0x91,0x53, - 0x67,0x14,0xe0,0x00,0xbe,0x84,0xec,0x53,0x89,0xae,0x12,0xe5,0x03,0xe8,0x6b,0x51,0x9e,0xfc,0x80,0x1c, - 0x18,0x05,0x71,0xed,0xee,0x71,0x47,0xaa,0xbb,0x31,0x1b,0xc3,0x03,0x23,0x22,0xfc,0xe0,0xc3,0x29,0x47, - 0xdb,0x22,0xd1,0xd5,0xe1,0x49,0x86,0x79,0x87,0x29,0x8e,0x44,0xb9,0xee,0xc8,0x31,0xaf,0xe6,0xa5,0x1f, - 0x53,0x36,0xa6,0xc9,0xa3,0x8c,0xa3,0x5a,0xc0,0x79,0xe9,0x42,0x62,0xb1,0x9c,0x0d,0x0c,0x09,0x60,0xd0, - 0x54,0xbf,0x1f,0x07,0x55,0x2a,0xa2,0xb0,0x10,0xd3,0x9a,0x23,0x2c,0x33,0xcb,0xf9,0x73,0xa3,0x21,0x34, - 0x86,0x86,0x0a,0x1e,0x8f,0x69,0xcc,0x6b,0xbb,0xc6,0x6a,0x4b,0x42,0x27,0xc8,0x2f,0xb3,0xb8,0xb2,0xe4, - 0x6a,0xea,0x78,0xd7,0x56,0xa7,0xe2,0x98,0x98,0xf6,0xfa,0x34,0x18,0xf9,0xdc,0x12,0xa4,0xef,0x8b,0xd1, - 0x9b,0x16,0xd9,0x8c,0x64,0x75,0x1a,0x84,0x8d,0x1c,0xff,0x14,0xd2,0xf1,0x39,0x64,0xb1,0x4b,0xea,0x72, - 0x8a,0x45,0x2d,0x79,0x51,0x27,0xb2,0xc2,0x63,0x78,0x7a,0xe1,0x21,0xd2,0x50,0xc2,0xcc,0x77,0x7c,0x42, - 0xdb,0x2e,0xdf,0x34,0x49,0x64,0xf1,0xe7,0xdc,0xa8,0xdb,0x28,0x5c,0x11,0xe3,0x5d,0xa5,0x1d,0x8f,0xc2, - 0x0b,0x51,0xdd,0x2b,0x8d,0xb1,0x94,0x0e,0x4d,0x2f,0x50,0x2a,0x42,0x5f,0xac,0xaa,0x79,0x52,0x51,0x9d, - 0xc5,0x3a,0x53,0x23,0x63,0x26,0x21,0xeb,0xd6,0x06,0x05,0x28,0x07,0x4d,0xd9,0x97,0xd4,0x44,0xb4,0xe4, - 0xe6,0xec,0xcc,0x89,0x89,0xc8,0x40,0x59,0x13,0x12,0x37,0x56,0x89,0xd6,0x7b,0xbd,0x32,0xca,0x7e,0x1c, - 0x56,0xde,0x39,0x9a,0x22,0x65,0x7e,0x53,0xe7,0x11,0xa4,0x0e,0xed,0x8d,0x4b,0xde,0x27,0x1c,0x90,0xd5, - 0xb6,0xbc,0x74,0xe8,0x92,0x56,0x8c,0xbd,0x66,0xec,0x0a,0x0b,0x87,0x69,0x90,0xfb,0xac,0x71,0x9c,0xe9, - 0xb5,0xe5,0x27,0x27,0xe8,0x1b,0x32,0x71,0x50,0x98,0xd5,0xc7,0x90,0x6a,0x9d,0x73,0xe1,0xd6,0x5e,0x69, - 0x37,0x36,0x89,0x71,0xd8,0xed,0xb8,0xc4,0x36,0x3e,0x32,0x86,0x5d,0x86,0x6f,0x41,0xa7,0x79,0xa0,0x3e, - 0x6a,0x95,0xc9,0xad,0xc4,0xbf,0x72,0x9c,0x5e,0xcb,0xd6,0xd7,0x2d,0xd8,0xce,0xf4,0xa0,0xaa,0x49,0x16, - 0x81,0x49,0x23,0x2a,0x07,0x47,0x8d,0xd1,0xdf,0xa5,0x31,0xf0,0xd5,0x98,0x86,0xf6,0xe2,0x52,0x17,0xa3, - 0x5f,0xe6,0x53,0x8a,0x2b,0xe4,0xa5,0x06,0xa2,0xba,0x36,0x76,0x6e,0x31,0xad,0xa0,0x30,0x68,0x83,0x5b, - 0x77,0x82,0x41,0xf0,0xa6,0xce,0xbc,0xe8,0xb5,0x06,0x99,0x27,0x0b,0x5d,0x4d,0x21,0x41,0x34,0x21,0xd4, - 0xaf,0x2c,0x2c,0x81,0x5f,0xd8,0x4a,0xc9,0x3e,0x53,0x2c,0x74,0xbb,0xd8,0x96,0x4d,0x0d,0xab,0x2a,0xf2, - 0x10,0x90,0x7d,0x74,0x89,0x00,0x9f,0x19,0x3b,0x34,0xd7,0x0d,0x9b,0x9f,0xd6,0x45,0xe2,0x9f,0xeb,0xc8, - 0x71,0xee,0xed,0xfa,0x77,0xd4,0xdb,0x5d,0x3c,0x8c,0x52,0xde,0x83,0xdc,0xe7,0x68,0x39,0xb1,0xaa,0x07, - 0x31,0xba,0xb0,0x0b,0x87,0x6a,0xb5,0x9b,0x23,0x15,0xc0,0xc5,0x98,0xd2,0xea,0x3e,0xc0,0x00,0x35,0x53, - 0x84,0x09,0x55,0x8e,0xcf,0xce,0x4c,0x72,0xb5,0xf3,0x59,0x60,0x13,0x39,0x52,0x70,0x50,0x6d,0x4e,0x15, - 0x20,0x5e,0x87,0xf8,0x61,0xff,0xff,0x4d,0xdb,0x47,0x0c,0x1c,0xef,0xd0,0xae,0xe9,0x63,0x35,0xf6,0xf3, - 0xfa,0x8d,0x52,0xcd,0xd5,0xda,0x1c,0x14,0x47,0xc3,0x52,0x3c,0x77,0xd1,0x1f,0x86,0xde,0x91,0x7f,0x82, - 0x27,0xba,0x0b,0xdc,0x8b,0x21,0xa2,0x1d,0x41,0x37,0xc8,0xc5,0x67,0x27,0x56,0x15,0x19,0x57,0xf4,0x6a, - 0x65,0x10,0x5b,0x60,0xc3,0x15,0x45,0x67,0xfa,0xd6,0xb6,0xa1,0x68,0x87,0x7a,0x9d,0x82,0x91,0x63,0x45, - 0xdb,0x8f,0xd2,0x30,0xbb,0x4e,0x31,0x98,0xc8,0xa6,0xed,0x6d,0xa7,0x02,0x9e,0xc9,0x12,0xeb,0x2c,0xc5, - 0xc9,0x88,0x68,0x53,0xd7,0xbe,0xb9,0x89,0xe8,0x30,0x14,0x5d,0xc7,0x95,0x77,0x07,0x40,0xa7,0x15,0x21, - 0xf8,0xa7,0xb9,0x21,0x4f,0x10,0x3b,0x23,0x50,0xe6,0x88,0xd6,0xc6,0xaf,0x8f,0xa8,0xa4,0xe1,0x88,0x72, - 0x4c,0x32,0xe9,0xc5,0x3d,0xa1,0xa5,0x0e,0xdb,0x8b,0x62,0x81,0x09,0x57,0x05,0xb5,0x6f,0x3e,0x42,0xb1, - 0x0c,0xd0,0xd9,0x1e,0xa8,0x39,0x83,0x7c,0x59,0x48,0x74,0x2e,0x82,0xf5,0xd4,0x44,0xe5,0x4c,0x19,0xa7, - 0x17,0xf8,0x97,0x75,0x5e,0x10,0xf7,0xb5,0xe5,0xfd,0x32,0xa0,0x73,0x98,0xd6,0xfc,0x67,0x1a,0x1f,0x57, - 0x93,0x60,0xf4,0xce,0x2f,0x64,0x3d,0x10,0x99,0x38,0xed,0xf4,0x9d,0xb9,0x6b,0x99,0x3f,0xa2,0xca,0xac, - 0x7f,0x4f,0x06,0xda,0xc2,0xfd,0x99,0xb2,0x8b,0xd1,0x48,0xc2,0x86,0xe1,0xc2,0xe2,0xd2,0xe2,0xd5,0x93, - 0x00,0x40,0x7e,0xbe,0x62,0xf2,0x26,0x48,0x3b,0x74,0x5d,0x8a,0x0e,0x8c,0x5a,0x05,0x3b,0x56,0x4b,0x9a, - 0x2d,0x1f,0xaa,0xd2,0x5f,0xf2,0x2a,0xce,0xa2,0x65,0xb5,0xa4,0xb3,0x68,0x66,0x9d,0x05,0x50,0xc2,0x0c, - 0x6b,0x26,0x04,0xee,0x24,0x2a,0x2a,0x52,0x62,0xee,0xd8,0x92,0xca,0x21,0x42,0x5b,0x53,0x9c,0x51,0x86, - 0xfd,0x19,0x6d,0xec,0x8c,0x36,0x56,0x38,0xa9,0x6a,0x63,0x67,0x81,0x49,0x3b,0x98,0x1d,0x49,0xdb,0x1d, - 0x03,0x90,0x12,0xb6,0xfb,0x75,0xe2,0xa7,0x72,0x85,0x8c,0x4a,0x7f,0xc2,0xa5,0xe6,0xc1,0x68,0x42,0x1b, - 0x38,0x77,0xa8,0x39,0xe3,0x47,0x76,0x51,0xdd,0x00,0x63,0x45,0xd3,0x25,0x1a,0x68,0x57,0x4d,0xe8,0xbf, - 0x79,0x54,0xb9,0x6a,0x51,0x17,0x11,0x24,0x00,0xea,0x84,0xfe,0xcc,0x8f,0xd4,0xb1,0x55,0xdd,0xa6,0xac, - 0x77,0x51,0x8a,0xac,0x4b,0xfa,0x73,0x7c,0xa4,0xf6,0xa3,0xad,0xc5,0x70,0xfa,0x10,0x5d,0x4d,0x1e,0x46, - 0xc7,0x74,0x37,0xf9,0x17,0xc1,0x08,0xd5,0xfb,0xfd,0xe9,0x51,0x98,0xf8,0x74,0x86,0xd1,0xca,0xf6,0xf6, - 0xfc,0x28,0x7c,0x4b,0x99,0xea,0x1d,0x1d,0xea,0x8f,0xf8,0x0b,0xe2,0xcc,0x14,0xe4,0x56,0xfb,0xfd,0xc9, - 0x51,0x80,0x42,0x27,0xea,0x92,0x0b,0xd1,0x5f,0x14,0x32,0xf5,0xb9,0xcf,0xed,0xed,0x63,0x29,0x74,0xa1, - 0x0b,0x5d,0x48,0xa1,0xfd,0x16,0x1d,0x90,0xa9,0x0b,0x7d,0xef,0x3a,0xa2,0x38,0xff,0x44,0x50,0x48,0xd5, - 0x73,0xad,0xd1,0x13,0x3d,0xbc,0x13,0x19,0x5e,0x57,0xa3,0xdc,0x80,0x34,0xed,0x0c,0xad,0x1a,0xbf,0x9f, - 0x88,0xb3,0x8b,0x71,0xf4,0x4b,0x42,0xfb,0x33,0x55,0x73,0x98,0xca,0xfb,0x20,0xe8,0xdf,0x71,0x0c,0xd3, - 0xd1,0xf8,0x80,0x3f,0x8e,0x3a,0x9c,0x7f,0x54,0x71,0x09,0xa7,0x44,0x0b,0xa7,0x1c,0x85,0xd0,0xa2,0xc7, - 0xf8,0xc8,0xf0,0x08,0xb7,0x6f,0xbf,0x05,0x9d,0x93,0x5b,0x0a,0x3e,0x26,0x1a,0xf7,0x1d,0x35,0xb1,0x8b, - 0xde,0x46,0x39,0x7d,0xc7,0x4a,0xcf,0x9f,0xe7,0xb5,0xa4,0x71,0xce,0x8e,0xf4,0xe4,0x96,0x32,0x39,0xa4, - 0x18,0x8f,0xb6,0x5d,0x13,0x5d,0x3a,0x13,0x0d,0xc2,0x7a,0x9b,0xd5,0x7c,0x87,0xd3,0x47,0x73,0x28,0xd1, - 0xd3,0x14,0x09,0x20,0xfa,0x7b,0x47,0x81,0x44,0x67,0x94,0x1f,0xfa,0xd0,0x4f,0xf0,0xde,0x14,0x84,0x93, - 0x47,0xc7,0xb7,0x6f,0x9f,0xfb,0xbb,0x4a,0x96,0x65,0xed,0x8f,0x39,0x5c,0x36,0x80,0x32,0x64,0xa0,0x05, - 0x85,0x57,0x91,0x50,0x75,0x71,0x28,0x15,0xc6,0x3d,0x7d,0x4a,0x7f,0x99,0xec,0x9a,0x63,0xb2,0x15,0x58, - 0x82,0x28,0x06,0xf8,0x8f,0xd0,0xfe,0x84,0xf2,0x26,0x55,0x18,0xc4,0xf0,0xc6,0x66,0x43,0xc9,0xdf,0xe2, - 0xa8,0x35,0x7c,0xb7,0x77,0x94,0xd3,0xa7,0x4c,0x6d,0xc6,0x0c,0xf9,0xa2,0xac,0xa3,0x86,0xb5,0x73,0x55, - 0x1d,0x0b,0x17,0xc2,0xe8,0x15,0x8c,0x27,0x6a,0xd9,0x60,0xd4,0x81,0xf9,0xea,0xa2,0xac,0x8b,0x3a,0xd9, - 0x23,0x8c,0x52,0xe1,0xf2,0x47,0x05,0x01,0x47,0x85,0xfd,0xf5,0x4e,0xfa,0x05,0xfb,0x53,0xb5,0x03,0x78, - 0xd7,0x60,0x3c,0xd5,0x18,0x31,0x9b,0xe2,0x13,0x35,0xd3,0xee,0x3e,0x08,0x17,0x14,0xf5,0x68,0x43,0x51, - 0xbc,0x5a,0x21,0xba,0x3b,0x90,0x9e,0x2a,0x84,0xb4,0x57,0x82,0x90,0x0d,0xdf,0x22,0x17,0x97,0x8b,0xf7, - 0x2d,0x54,0x76,0x5d,0x13,0x50,0xaf,0x26,0x5c,0xcf,0x80,0x3c,0xd3,0x57,0x3d,0x2d,0x5d,0x37,0x03,0x5b, - 0x88,0x25,0x21,0x25,0x76,0x60,0xed,0xc0,0xe1,0x5f,0xb1,0xae,0xb6,0xd9,0x71,0xa0,0x09,0x82,0x69,0x10, - 0x30,0x27,0x7e,0x1a,0x2f,0x98,0x10,0x07,0xd5,0xbd,0xf0,0x39,0x91,0x7b,0xb5,0x1d,0x9a,0xb8,0x71,0xce, - 0x08,0x74,0x54,0x14,0x69,0x2a,0x67,0xca,0xaf,0x4a,0xb4,0x41,0x38,0xf8,0xe2,0x30,0xfb,0x32,0xc7,0xdc, - 0xc0,0x45,0x4e,0xd3,0x62,0x51,0x72,0x8f,0x84,0x66,0x76,0x87,0x17,0x0f,0xa7,0x66,0xaf,0x2e,0x8c,0x83, - 0xbb,0xd3,0xd5,0x6a,0xeb,0x1d,0xf1,0x8b,0xd3,0x83,0x8b,0x23,0xcd,0x99,0xce,0x61,0x52,0x2e,0xac,0xec, - 0x69,0x74,0x5a,0x7b,0x3f,0x40,0x8d,0xf9,0x6a,0x75,0x5a,0xef,0x98,0xb8,0x18,0x1c,0xa4,0x34,0x30,0xab, - 0x29,0xfb,0x7a,0xee,0xba,0x5a,0x39,0x81,0x34,0x6f,0x86,0x19,0x6f,0x7d,0x20,0x5c,0x1c,0x5c,0x9d,0x63, - 0x90,0x13,0xb9,0x5b,0xa4,0xb3,0xad,0x73,0x6c,0x30,0x6b,0x96,0xc0,0x4d,0x9c,0xfe,0x34,0xce,0x26,0x85, - 0xa8,0xd8,0xe2,0xf0,0x5e,0x7c,0x30,0x34,0x81,0xa5,0x7f,0x9b,0x67,0xaf,0x2d,0x09,0x16,0x73,0xa9,0xf6, - 0xd5,0x19,0x84,0xd4,0x4f,0x11,0x69,0x3e,0x9f,0x2c,0x67,0xc9,0x42,0xbd,0xa1,0x6f,0xd0,0x38,0xaf,0xb4, - 0xf6,0xd7,0x25,0xad,0xc9,0xe5,0xc3,0x79,0x5a,0x01,0xf0,0x25,0x93,0x95,0x67,0x07,0xf3,0xf4,0xe0,0xf2, - 0x08,0xd6,0x5e,0x74,0xaf,0xec,0x0e,0xf7,0x1f,0x3e,0xad,0x8a,0xec,0x13,0x79,0xf1,0xf4,0x60,0xff,0x48, - 0x97,0xa1,0x9d,0x32,0xc5,0x85,0xbf,0x70,0xf3,0xf8,0x42,0xfe,0xc0,0x7a,0x23,0x78,0x57,0x13,0xad,0x19, - 0x1d,0x4a,0xec,0xa9,0xf3,0xfd,0x86,0x85,0xad,0x84,0x8a,0x3b,0x9c,0x14,0xea,0xdb,0x52,0xd1,0x25,0xa9, - 0x7d,0x32,0xf1,0xed,0x2d,0x5e,0x62,0x10,0x46,0x04,0xc6,0xd9,0x80,0x2e,0x98,0x73,0x2e,0xd9,0x7f,0x88, - 0x0f,0x44,0x87,0xf2,0x15,0x3d,0x31,0x8f,0x70,0x38,0x30,0xf9,0x7d,0xf6,0xfd,0xc4,0x1b,0xc9,0xd8,0x1b, - 0x1b,0x10,0x08,0xcd,0x35,0x51,0x3a,0x28,0x3a,0xfa,0x99,0x73,0x6f,0x12,0x4f,0xcd,0xd4,0x83,0x92,0x3b, - 0xc1,0x70,0xc5,0x4f,0x3c,0x66,0xfd,0x2c,0x43,0xdd,0xd5,0xd2,0x61,0xc1,0x0d,0x1f,0x9f,0x3e,0xe8,0xc8, - 0x77,0xd2,0xbe,0x3d,0x28,0xc7,0x3c,0x44,0xe4,0x17,0xc3,0x57,0x11,0x94,0xf9,0xf5,0x73,0xcc,0x1b,0xf3, - 0x08,0xe5,0xbf,0x6a,0x44,0xa1,0x91,0x67,0x1a,0x2d,0x39,0x54,0xaf,0xc4,0xfe,0xed,0x54,0x88,0x41,0xba, - 0xfe,0x6a,0x82,0xb2,0x53,0x9e,0xa0,0xac,0xc3,0xe9,0xe0,0x9d,0x08,0x6c,0x8f,0xe5,0x3e,0x38,0x69,0xdc, - 0xc3,0xa7,0x50,0xfd,0x25,0xc2,0xc5,0xe0,0x3f,0x03,0xb0,0x97,0x91,0x49,0x23,0x18,0x00,0xc5,0x34,0xbc, - 0x1c,0x56,0xf7,0xe2,0x53,0x02,0x8b,0xa7,0x5d,0xbc,0xcb,0x53,0x87,0x77,0x79,0x7a,0xe4,0x5f,0xf2,0x48, - 0x2e,0xc5,0xf1,0x3d,0x0f,0x75,0xbf,0x6a,0xe4,0x03,0x35,0xf2,0xa1,0x83,0xf3,0xfd,0x50,0x71,0xbe,0x1f, - 0x98,0xf3,0xbd,0x14,0x48,0x7a,0x1c,0x5d,0xb6,0x70,0x2b,0xbf,0x28,0x0c,0x58,0x47,0xb8,0x32,0x79,0xb8, - 0x15,0xed,0x0d,0x6f,0x3d,0x7c,0x4c,0x2c,0xa2,0xb5,0x57,0xb9,0x05,0xf7,0xcf,0x48,0x38,0xb8,0x75,0x64, - 0x68,0xef,0x5f,0x13,0x8c,0xef,0x92,0x5a,0xd5,0xa1,0x6e,0xe1,0xdb,0x95,0xef,0x2d,0xb0,0x7c,0xbb,0x6a, - 0x57,0x5f,0x58,0xc4,0xff,0xc0,0x25,0x70,0x51,0x59,0x8b,0xc9,0xfe,0x2d,0x03,0xc5,0x73,0xe2,0xad,0x78, - 0x05,0xd2,0xdf,0x96,0xf3,0xaf,0xf4,0x41,0x0b,0x97,0xa9,0xd2,0xe7,0x2f,0x3c,0x38,0x49,0xd5,0xc7,0x54, - 0xed,0xa7,0xea,0x2c,0x55,0xdf,0xa4,0xea,0x7d,0x36,0x32,0xd2,0xfc,0xd7,0xa5,0x32,0x82,0x35,0x7c,0x0b, - 0x3c,0x35,0x9e,0xff,0xb6,0x24,0xae,0x97,0x58,0x59,0x9c,0xe6,0x97,0xa3,0x57,0xa5,0x44,0x37,0x83,0xdb, - 0xcc,0x75,0x78,0xb5,0x3e,0x32,0x8e,0x95,0xcf,0x53,0x78,0x31,0x7f,0x91,0x11,0x2d,0x68,0x1e,0x39,0xda, - 0xe1,0x45,0xe4,0x7d,0x9c,0x5a,0x1f,0x9f,0xc6,0xd9,0x49,0xe2,0xb9,0xe6,0xa9,0xa2,0x89,0x5f,0x55,0x66, - 0x29,0xbd,0x16,0xae,0x0d,0x59,0xd5,0xf7,0x42,0x47,0x45,0xfc,0x19,0x63,0xd0,0xfa,0x66,0xc6,0x75,0xfa, - 0xdb,0x14,0x4e,0xd5,0xb0,0x3b,0xc9,0xa4,0xf1,0x20,0x0a,0x21,0x92,0x79,0x99,0xb7,0x61,0x1d,0x85,0x27, - 0xb9,0x7d,0x7b,0x8b,0xff,0x12,0x23,0xa6,0xd5,0x2c,0x47,0x3f,0xc0,0xd1,0x91,0xbd,0xcc,0x6b,0x23,0x7c, - 0xeb,0xb0,0x14,0x62,0xd4,0x35,0xd1,0xa2,0xa4,0x75,0x10,0xbe,0x2f,0xe5,0xdb,0xf5,0xf6,0x64,0x5b,0x25, - 0x7c,0x81,0xc0,0x6b,0xc6,0xfe,0xc4,0x28,0x7d,0x7e,0x5b,0x42,0x06,0xe6,0x19,0xcd,0x11,0x3b,0x3a,0xba, - 0x77,0x53,0x5f,0x62,0xc7,0x05,0x81,0xf6,0xe4,0xf5,0xc2,0x44,0x8e,0x8d,0xca,0x2a,0x8a,0xac,0x72,0xbe, - 0xd9,0xaf,0x23,0xab,0x16,0xb7,0xd7,0xdd,0x2c,0xf7,0x0b,0x1a,0xd6,0x93,0x6c,0x53,0x21,0xcc,0x4d,0xa4, - 0xb2,0x84,0x22,0xe1,0xa5,0xff,0x25,0xcf,0xe2,0xda,0x92,0xfc,0xf2,0x41,0xcd,0x22,0xe2,0x0e,0x8f,0x54, - 0x36,0x09,0x78,0x08,0x6f,0xc2,0xcd,0xf5,0x6a,0xbd,0x55,0x73,0xd0,0xf6,0xfa,0xde,0x04,0x57,0xad,0xb5, - 0x1c,0x9a,0x37,0x4b,0xbb,0xa2,0xa2,0x4d,0x7d,0xf3,0xfa,0x0e,0xd3,0x66,0x0c,0xc0,0x4a,0x35,0x62,0x0b, - 0xaa,0xe5,0xec,0xc4,0x72,0x2d,0xab,0x6c,0xd4,0x2b,0x46,0xa5,0x98,0x4f,0x6f,0x0c,0x1f,0xf8,0x13,0x06, - 0x08,0x80,0x0f,0x75,0x49,0x7e,0x1c,0x27,0x1a,0xe7,0x2d,0x7e,0xdc,0xbe,0x4d,0xf9,0x3a,0x03,0x98,0xde, - 0x40,0xac,0xde,0x05,0xf6,0xd4,0xf8,0x0b,0xc1,0xab,0x04,0xf6,0x7c,0x9b,0x2a,0x9c,0xac,0x50,0xd4,0x62, - 0x9b,0xeb,0xa3,0x2d,0x8e,0x4d,0x63,0x88,0x05,0xf8,0x84,0x9f,0x46,0xb5,0x6a,0x89,0xb8,0x50,0x71,0x04, - 0xea,0x1c,0xa0,0xfe,0x1d,0xad,0x4c,0x91,0x9e,0xc0,0x13,0xec,0xb3,0x74,0x01,0xe5,0xc8,0xc8,0xcb,0x68, - 0x1f,0xb4,0xce,0x1d,0xbf,0xa9,0x4e,0x24,0x03,0xe1,0xe2,0x1b,0x49,0x70,0xfe,0x90,0x8e,0xfc,0xac,0x3a, - 0xf6,0xb8,0xe2,0x6e,0x51,0xb7,0xee,0x69,0x68,0x54,0x8a,0xe2,0x75,0x10,0x34,0x5b,0x8a,0x8a,0x51,0x1c, - 0x4a,0xcf,0x9d,0xfa,0x05,0xad,0x19,0x0e,0x8b,0xc6,0x4a,0xfa,0x37,0x4e,0xb8,0x35,0xd0,0x62,0x74,0xd3, - 0x50,0xbb,0x16,0x88,0xf6,0xf2,0xd5,0x0d,0xd5,0xf4,0x44,0x3a,0xa7,0xd9,0xd5,0xa4,0x9e,0x39,0x54,0x2b, - 0xb2,0x8e,0xcd,0xd5,0x0c,0x01,0x9f,0xc6,0x9b,0xc7,0xc7,0x50,0xf3,0x3d,0x41,0x0d,0x1b,0x86,0x69,0xeb, - 0x2e,0x08,0x9a,0xe3,0x22,0x7c,0x92,0xe7,0x70,0x86,0xab,0xc6,0x8b,0x85,0xfd,0x06,0x70,0x99,0x62,0x40, - 0x24,0xe6,0xdb,0x79,0x9d,0xd5,0x29,0xce,0xdb,0xaa,0x5b,0xc6,0xbc,0xab,0xba,0xa5,0x1a,0x69,0xad,0x87, - 0x5b,0xb7,0x6c,0x47,0xba,0x0c,0xb7,0x23,0x69,0x63,0xd9,0x46,0x87,0x93,0x65,0xc1,0xef,0x82,0xe1,0x81, - 0xd8,0xb5,0x29,0x9d,0x2e,0x8a,0x1d,0x47,0x6b,0xf5,0x87,0x59,0xa0,0xda,0x63,0xad,0x58,0xcb,0x7d,0x9f, - 0xd6,0x4c,0xe8,0x9a,0xb6,0x60,0x2d,0xe3,0xf1,0xb6,0x4d,0x98,0xf6,0x9c,0xc5,0x82,0x55,0x79,0xa5,0xef, - 0x0e,0xee,0xc7,0x28,0xfc,0x37,0x48,0x08,0x09,0x6c,0xdd,0x98,0xad,0xda,0x44,0x0c,0x7b,0x03,0xb5,0x03, - 0x1d,0xbf,0xd5,0x6d,0x43,0x04,0xff,0x91,0xe1,0x08,0x87,0x41,0xe5,0xbe,0xd2,0x79,0x34,0xb3,0x74,0xb7, - 0x6b,0x3b,0x5a,0x09,0x04,0xb4,0xfd,0xd8,0xaf,0x25,0x3c,0xf3,0x80,0xec,0xcc,0xab,0x2c,0xe3,0x65,0x95, - 0x29,0x34,0x5a,0x3b,0x93,0xf3,0x0b,0x50,0x54,0x6c,0x22,0xc0,0x7a,0xef,0xde,0x55,0xdd,0x6d,0x7b,0x7d, - 0xeb,0x56,0xae,0xef,0x6d,0x7b,0xc3,0x9c,0xc5,0x70,0xa2,0x64,0xcb,0xdf,0xa3,0xdc,0x09,0x70,0xba,0xe8, - 0xe3,0x82,0xc0,0xa7,0x17,0x2e,0xfa,0x2c,0xcb,0x0d,0x0b,0x3f,0x17,0xf9,0x07,0x1e,0xa0,0xf5,0xdb,0x87, - 0xa4,0x58,0x83,0xa2,0x45,0x30,0xe2,0x14,0xae,0x83,0xbf,0xfc,0xaf,0x84,0xcd,0x88,0x7c,0x79,0x40,0x84, - 0x7d,0xe5,0x40,0x3b,0x9a,0xa1,0xa5,0xad,0x86,0x18,0xbd,0x35,0x96,0x45,0xb3,0x9a,0xb1,0xfb,0x12,0x8b, - 0x20,0x51,0x26,0xa4,0xa2,0x13,0x76,0x1e,0xcf,0xa9,0x8d,0xa4,0x4d,0x08,0xdf,0x03,0x6e,0x11,0xe4,0x09, - 0xe8,0xe2,0xeb,0x22,0xaf,0x61,0x9d,0x40,0x2d,0x6f,0xdf,0x5e,0x6a,0x1c,0xe5,0x9f,0x46,0xb9,0x3a,0x8f, - 0x96,0xea,0x1c,0x53,0x20,0x8c,0x76,0x8a,0xbf,0xab,0xd5,0x39,0xd6,0x82,0x7f,0x0a,0x7d,0xb7,0xf5,0x1b, - 0x4b,0x13,0xfc,0xad,0x65,0x97,0xcf,0xd7,0xae,0x54,0xe3,0xd2,0xb3,0x62,0xc1,0x05,0xb0,0xa6,0xd1,0xb2, - 0x09,0x24,0x62,0x30,0x32,0xe6,0xb9,0x7b,0xf9,0xb2,0xdc,0x4e,0x59,0x73,0x3f,0xad,0x3b,0x6f,0xd0,0x50, - 0x00,0xbc,0xf9,0x83,0x3f,0x55,0x5e,0x3c,0x25,0xa8,0xfe,0x49,0xd4,0x2b,0x5c,0x53,0x51,0xa7,0x24,0xe2, - 0xa5,0xd7,0xfd,0x58,0xae,0x03,0x65,0xc0,0x07,0x9d,0xa5,0xd9,0x76,0x2e,0xa6,0x00,0x22,0xf0,0xf8,0xcd, - 0xaf,0x84,0x55,0xe2,0xd6,0x6c,0xa2,0xe6,0xae,0xd9,0x1e,0xfc,0x03,0x0f,0x7f,0x80,0x34,0x86,0xbb,0xff, - 0x46,0x34,0x46,0xe6,0x81,0xe2,0x34,0xc1,0x58,0x98,0x3d,0x0c,0xd2,0x74,0xfa,0x14,0x1a,0x61,0x84,0x16, - 0x9b,0x43,0xa5,0x2d,0x9b,0x44,0xc9,0xba,0x22,0x9b,0x63,0x61,0x5a,0xd4,0x39,0xa1,0xcf,0x1f,0x53,0x2c, - 0x0a,0xe0,0x51,0xe3,0x0d,0x7e,0xd0,0x77,0x10,0x0c,0x30,0x6c,0x30,0x14,0x93,0xbe,0xde,0x8f,0xcc,0xc5, - 0x8a,0x3f,0xf7,0x7f,0x13,0x5e,0xa9,0x14,0x2a,0xc2,0x3f,0x88,0xa2,0xb6,0xbf,0xbe,0x83,0x72,0x70,0x78, - 0x25,0x48,0xe6,0xc7,0xb4,0x0b,0xb1,0x34,0x2c,0xdb,0x19,0x3f,0xb8,0x46,0x22,0xb2,0x75,0x12,0x28,0x77, - 0x1e,0x67,0x08,0x82,0xdb,0xed,0x0e,0x89,0x2b,0xcd,0x8b,0xe4,0xc2,0x3a,0x2e,0x14,0x23,0x51,0x23,0x7c, - 0x4e,0xbb,0xd0,0x16,0x7b,0x54,0x8d,0xeb,0x25,0xc1,0x67,0xe7,0xd5,0xa9,0x59,0x10,0x5b,0xb4,0x78,0x68, - 0xb9,0xf2,0x85,0x11,0x3d,0x8e,0xa3,0xf4,0x60,0x71,0x34,0x1c,0x4b,0xfc,0x68,0x8c,0x62,0x2b,0x1a,0x8b, - 0xf0,0x1d,0x9c,0x81,0x3e,0xc9,0xe3,0xfa,0x49,0x26,0xe4,0x71,0x81,0x17,0x11,0x0f,0xb0,0x1d,0x5b,0x6b, - 0xd1,0xec,0x80,0xcb,0x1d,0x45,0x63,0x45,0x35,0xf4,0x71,0x1e,0x77,0x1f,0xe7,0x3c,0x80,0xdc,0xc3,0xf1, - 0x26,0x3e,0xc3,0x80,0x97,0xf8,0x67,0x4a,0x43,0x9d,0x56,0x12,0xb0,0xa9,0x19,0xea,0x24,0x2a,0x0e,0xa6, - 0x47,0xc3,0x49,0xeb,0x1c,0xe4,0x4a,0xa7,0x11,0xcd,0x1a,0x4d,0x98,0xdc,0x3f,0x49,0xca,0x27,0xf9,0x92, - 0xc5,0x6c,0x4f,0x67,0x29,0x01,0xd8,0xcf,0xb4,0xd6,0xf0,0xc3,0x7e,0x30,0xe1,0x21,0x8e,0x66,0x32,0xea, - 0x49,0x10,0x2e,0xcd,0xd7,0x5a,0x5b,0xe0,0xce,0xcb,0x88,0x75,0x2a,0x21,0x87,0x34,0x56,0xd2,0xc2,0x3b, - 0x4d,0xa2,0xa5,0x8d,0x54,0x60,0x4a,0xc4,0x74,0xfb,0xbb,0xde,0x39,0x5a,0xf6,0xd7,0xdd,0x9e,0x06,0x6c, - 0x5f,0xd0,0xe2,0x60,0x39,0x98,0xe3,0xa8,0xc3,0x66,0x1a,0x9a,0x6a,0xb2,0xc1,0xa2,0xd9,0x05,0x14,0x55, - 0x9a,0xbb,0x47,0x83,0xbc,0xf5,0xcf,0xcf,0x06,0x5e,0xde,0x05,0x22,0x3e,0x6f,0xb3,0xb2,0xe5,0xd0,0xf0, - 0xc5,0xda,0x92,0xe9,0x34,0x5e,0xbc,0xa0,0x74,0x3f,0xd1,0x06,0xfa,0xaa,0x14,0x72,0xd9,0xa8,0x18,0x7e, - 0xcf,0x6c,0x82,0xf9,0xf5,0x47,0xed,0xd7,0x8f,0xc6,0xe1,0x3f,0x9c,0x77,0xcc,0x08,0x55,0x5a,0x06,0x0f, - 0xba,0xf9,0x83,0x7c,0x3a,0x5d,0x24,0xe5,0xf7,0x49,0x7a,0x72,0x5a,0x3a,0xb5,0x9a,0x4a,0x8b,0xb2,0x7f, - 0xbc,0xc6,0x95,0x0b,0x31,0x8c,0x04,0xb6,0x95,0x4c,0x3b,0x0d,0xf7,0x41,0xbc,0xc1,0xf9,0xd9,0xc0,0xea, - 0xfd,0x44,0xc5,0xc0,0x51,0x90,0xd2,0x29,0x15,0x60,0x3c,0xd3,0xc4,0x04,0x07,0x9d,0x6e,0x73,0x39,0xdf, - 0xa6,0xf0,0x04,0xca,0xcb,0x55,0x45,0x1c,0xec,0x41,0xe4,0x73,0x45,0xf4,0xf1,0xd6,0x8e,0xed,0xe6,0x96, - 0x0e,0xdc,0x29,0x51,0x83,0x4c,0xbc,0xae,0x80,0xbd,0xe8,0x0a,0x60,0xb4,0x1a,0x66,0x9d,0x07,0xd3,0x36, - 0xc3,0xc9,0x99,0x0c,0x9f,0xcd,0xd4,0xc1,0x38,0x69,0x17,0x6d,0xe1,0x95,0x5e,0xfc,0x06,0x5f,0x8e,0x4b, - 0xfd,0x75,0x6a,0x45,0x82,0xd5,0xad,0xae,0x8b,0xd7,0x91,0xbc,0x4e,0x1c,0x9a,0x95,0x1b,0xe3,0xc1,0x8c, - 0xa5,0x36,0x01,0xed,0xb5,0x73,0xd3,0x33,0x60,0xe0,0x66,0xec,0x4a,0xed,0xdc,0x9d,0xe3,0x52,0x74,0xa1, - 0x02,0xf5,0x51,0x6f,0x40,0xd6,0x49,0x35,0x5b,0xa7,0x18,0x35,0xe5,0x88,0xcc,0x70,0x76,0x6f,0x44,0x11, - 0xd5,0xb5,0xa5,0xa3,0xa2,0x35,0x8d,0x2b,0x03,0x47,0x7a,0x32,0x11,0x8b,0xc5,0xec,0xce,0xae,0x61,0x25, - 0xfe,0x8c,0x1f,0xec,0xa7,0xe9,0xc9,0xc0,0x89,0x8c,0x1b,0xfd,0x5e,0xa8,0x2a,0xa3,0x16,0x93,0x37,0x5a, - 0xa4,0x9d,0x59,0x10,0xaa,0x45,0xdf,0xb9,0xd5,0x1a,0x31,0x79,0xa3,0x9f,0x93,0x5a,0xc5,0x7a,0x10,0xdf, - 0x56,0x8c,0x94,0xf7,0x15,0xc5,0x86,0x9d,0x5a,0xc0,0x94,0xa1,0xb6,0x77,0x20,0xf8,0xea,0x92,0x37,0x8d, - 0x6a,0xa1,0xa2,0x6f,0xf6,0x92,0x7f,0x68,0xeb,0xe3,0x9b,0x2c,0x11,0xd8,0x9a,0x5a,0x63,0xe3,0x6d,0x0f, - 0xa6,0xda,0x23,0xae,0xce,0x0e,0xcc,0x2b,0x8b,0x5f,0xab,0xec,0x07,0xc9,0x76,0x7d,0x12,0xf0,0x85,0xbc, - 0xb1,0xa8,0x31,0x92,0x90,0x36,0x77,0xda,0xb5,0xf5,0x91,0x28,0xdd,0x80,0x4d,0x6b,0x75,0x01,0xc3,0x4a, - 0xeb,0x42,0xd1,0x52,0x5d,0xc4,0x0c,0x07,0xf5,0x3c,0xc7,0x88,0xfd,0xdf,0x29,0x5b,0x4d,0x3a,0xae,0x4b, - 0x0c,0xc2,0x84,0x52,0xe1,0xaf,0x69,0x78,0x52,0xcf,0x16,0x57,0x74,0xdd,0x91,0xb2,0xda,0x8a,0xf2,0xec, - 0xbd,0xc7,0xf5,0x0d,0x2e,0x97,0x37,0xf3,0x64,0x8d,0xb4,0x28,0x2b,0xd8,0xf7,0x4b,0x52,0x0f,0x83,0x5d, - 0x99,0xb8,0x1b,0x0f,0x83,0x35,0x0e,0x52,0x7b,0x72,0xaa,0x9c,0x8e,0xf8,0x62,0xba,0x71,0x62,0xf5,0x87, - 0x14,0x22,0xfc,0x2a,0x6d,0xb1,0x56,0x39,0x85,0x49,0xda,0x1e,0xb8,0x93,0xba,0x07,0x6e,0xe3,0x50,0x18, - 0x6a,0x50,0xb4,0x14,0x4f,0xa0,0x4a,0x65,0x9c,0xdf,0x43,0x9f,0xff,0x59,0xe5,0x91,0xc0,0x77,0xc6,0xf4, - 0x0d,0x94,0x42,0x24,0x0c,0xf6,0xed,0xdb,0x3f,0x64,0xf8,0x6f,0x00,0x37,0x5a,0xa0,0xdb,0xa0,0xca,0xfc, - 0x0c,0x76,0x19,0xbb,0x72,0x30,0x7f,0x48,0xd5,0x77,0x50,0xa6,0xbc,0x3a,0xbc,0xf2,0xfd,0x51,0x38,0x58, - 0x1d,0x66,0x41,0x7f,0x14,0x1c,0xae,0x0f,0xd7,0x3b,0x27,0xea,0x9f,0xd0,0x7e,0xdf,0x1e,0x7c,0xd1,0x1f, - 0xfd,0xeb,0xd6,0xd5,0xda,0x0f,0x56,0x07,0x87,0x47,0x87,0x3b,0x87,0x87,0x47,0x94,0xf7,0x7b,0xb7,0x0a, - 0x3b,0x5f,0x21,0x46,0x7b,0xfb,0x9f,0xa9,0xf2,0x0e,0x0f,0x6f,0xdd,0xf6,0xd8,0x7c,0x19,0x8a,0xe6,0xed, - 0x1c,0x77,0x75,0xc5,0x5f,0x8a,0x5f,0xf6,0x3d,0x3d,0x18,0x19,0x8d,0xd7,0xcf,0x94,0x77,0x02,0x49,0xa0, - 0xfa,0x0d,0x66,0x7e,0x2c,0xde,0x87,0x4f,0xd3,0xf0,0xc0,0x73,0xe4,0xfe,0xde,0x91,0xb2,0x28,0xbb,0x61, - 0xe6,0xc1,0xce,0xb5,0x06,0xf0,0x02,0xa1,0x51,0x64,0x2a,0xf2,0x1a,0x31,0xb8,0x1d,0x8a,0x60,0xcb,0x69, - 0x2a,0xfa,0xe1,0xcd,0xab,0x97,0x94,0x00,0xc0,0x46,0x0c,0xc7,0xcc,0xb8,0x31,0x8f,0x0a,0xa7,0x22,0x1c, - 0xe5,0x42,0x94,0x02,0xa5,0x18,0x24,0x3c,0x49,0x99,0xe0,0x88,0x0a,0x6c,0x7f,0x92,0xc1,0x3d,0x6b,0x07, - 0xf7,0xe9,0x79,0x8e,0x6a,0x7f,0xd5,0x25,0x1e,0xcb,0xfa,0x91,0x3b,0x9f,0xd0,0xeb,0xd7,0x4a,0xf4,0x3d, - 0x05,0x2b,0xcd,0x5a,0x5f,0xba,0xd6,0xd8,0x96,0x77,0x33,0xa5,0x42,0x49,0x74,0xf1,0x7f,0x74,0x2f,0x1b, - 0x3f,0x91,0x7c,0xfe,0xb2,0x31,0xfa,0x6f,0x2c,0x1b,0x37,0xd5,0x5c,0xb6,0xa7,0x29,0x56,0xae,0xbe,0x74, - 0x52,0xd9,0x59,0x3a,0x4e,0xf8,0xb3,0x4b,0xc7,0xdd,0xd6,0x96,0x8e,0x53,0x9c,0xa5,0xe3,0xdf,0x66,0xe9, - 0xdc,0xbe,0x6c,0x2d,0x94,0xf7,0xa5,0x42,0x95,0xdb,0x87,0xd5,0x81,0x2c,0x5e,0x12,0xf3,0x63,0x13,0x2c, - 0xff,0xd8,0x0a,0x14,0xe6,0x94,0xf9,0x4c,0x5b,0x35,0x8a,0xe9,0x9e,0xb6,0xc6,0x14,0x0b,0xc3,0x74,0xc1, - 0x98,0x19,0x4f,0x4f,0x34,0x15,0xc7,0x5e,0xb4,0x66,0xfa,0x28,0x06,0x92,0x97,0xc7,0x70,0x3b,0x54,0xc6, - 0x62,0x33,0xad,0x2d,0x1c,0x61,0xfe,0x59,0xc2,0xb4,0xd3,0x88,0x39,0xe7,0x6c,0xe2,0x08,0xf3,0x40,0x36, - 0x74,0x14,0xd3,0xc7,0x42,0xb7,0x84,0xc3,0x25,0x23,0xec,0x34,0x41,0x95,0x21,0x57,0xc6,0x86,0x6c,0x31, - 0xd9,0x69,0x58,0x89,0x6e,0xeb,0x96,0x8d,0x6c,0x8b,0xaa,0x0d,0x51,0x8d,0x25,0x65,0xcb,0x22,0x55,0xdb, - 0xb8,0xb2,0x89,0x65,0x87,0x85,0x2b,0xc6,0x6a,0xec,0x5f,0xa5,0x1f,0x5a,0x2c,0xb6,0xab,0xd5,0x36,0x98, - 0x30,0x61,0x35,0xc6,0x93,0xbc,0x4c,0x4d,0x73,0x4c,0x59,0x36,0x31,0x4f,0xd5,0x8b,0x27,0x86,0x14,0xc6, - 0xd4,0xb2,0xb2,0x02,0x6d,0x2c,0x11,0x5b,0xe6,0xd2,0x42,0xf1,0x5a,0x43,0x0d,0x30,0x8e,0x76,0xfe,0x75, - 0xb8,0xf8,0xc2,0x3f,0xa0,0x7f,0xbd,0x3b,0x0f,0x1f,0x1d,0xee,0x44,0x47,0xfd,0x80,0x70,0x0d,0x12,0xa3, - 0x00,0xff,0x8e,0x42,0x8f,0xb2,0xbd,0xa3,0x2f,0x08,0xed,0xac,0xee,0xd0,0xe7,0x1d,0xfa,0xbc,0xd3,0x5f, - 0xe9,0x3a,0xd1,0xc3,0x47,0xff,0x49,0x55,0x82,0x60,0xb4,0xa3,0xd2,0x38,0xf2,0x0e,0xe2,0xed,0x3f,0x1e, - 0x6f,0xff,0xfe,0xee,0xe8,0xe0,0xf0,0xf0,0xf2,0xf0,0x70,0xfb,0xf0,0x70,0x70,0xf4,0x85,0xa7,0x62,0xca, - 0x02,0x0e,0xf3,0xfa,0x69,0xdc,0x27,0x4c,0x17,0x06,0x23,0xf9,0x0c,0x3c,0x95,0xc7,0x91,0x83,0xec,0xbc, - 0x7f,0x3d,0xf4,0xfa,0x71,0x4c,0x1c,0x9a,0x19,0xdc,0xe1,0xce,0x28,0x78,0xb4,0x43,0x7b,0xd4,0x28,0x76, - 0x78,0xb8,0x83,0x92,0x7d,0xef,0xe0,0x5f,0x8f,0x8e,0xbe,0x78,0x44,0xf3,0x99,0xa1,0xca,0xc3,0xad,0x67, - 0xaf,0x9e,0xee,0xff,0xf6,0xfa,0x9b,0x1e,0xd2,0xfb,0x8f,0x76,0x52,0xb5,0x94,0x74,0x58,0xf0,0x4c,0xe5, - 0xf3,0xf0,0x60,0x47,0x4d,0x62,0xbc,0x1d,0x7b,0x1f,0x3c,0x8b,0x85,0x77,0x3e,0xf8,0x03,0x9a,0xc8,0x89, - 0xaa,0x1f,0x79,0x2a,0xe8,0x81,0xb9,0x2f,0xf5,0xd3,0xcb,0x3c,0x56,0xa7,0xb1,0xba,0x88,0xd5,0x79,0xac, - 0x4e,0x62,0xf5,0x11,0xe7,0x40,0xbd,0x8b,0xd5,0x65,0xac,0xf6,0x63,0x75,0x16,0xab,0xa7,0xb1,0x7a,0xc3, - 0x20,0xa8,0xed,0x77,0xb5,0x61,0xb4,0x79,0xf5,0xe0,0x4b,0xf0,0x03,0xfb,0x0e,0x7e,0x4c,0xff,0x7a,0xb7, - 0x67,0xe5,0xd0,0x0b,0xbd,0x87,0x74,0x28,0x6f,0x9f,0xf0,0xe7,0x23,0x7c,0x02,0x3e,0xe9,0xc7,0x1d,0xef, - 0x0e,0xfd,0x88,0xcf,0xe7,0xc8,0xb8,0x8d,0x8c,0xbf,0xed,0xed,0xe2,0xfb,0x30,0xe3,0x1f,0x5f,0xf3,0x77, - 0xe9,0xad,0xd5,0x2d,0x9a,0xdb,0x6d,0x5a,0x64,0x62,0x80,0x4f,0xca,0x15,0xaa,0xaf,0xa8,0x5a,0x30,0xa4, - 0x09,0xbd,0xea,0xcc,0x5a,0x51,0x4b,0xab,0xbf,0x7d,0xcd,0x25,0xbe,0xe1,0x01,0x43,0xf3,0xa1,0x3e,0xce, - 0x67,0x71,0x37,0x69,0x41,0x58,0xe6,0x9b,0x58,0x7c,0x28,0x1c,0xb2,0x9c,0xa5,0x84,0xe7,0x22,0xf5,0x1a, - 0xeb,0xfb,0x8f,0xd5,0xbf,0x2e,0xb6,0xf3,0x2c,0xdc,0x51,0xef,0xf1,0xf3,0x62,0x7b,0x85,0x24,0xfa,0xf9, - 0x9c,0x7e,0xfa,0x83,0x2f,0xe8,0x42,0x5d,0xf4,0x69,0x34,0x69,0xb6,0xca,0xa7,0xfc,0x3d,0xf8,0x22,0xd8, - 0x51,0x3f,0x51,0xae,0x22,0xb8,0x52,0x74,0xdd,0x1e,0x11,0x94,0x51,0x09,0xf7,0x67,0x30,0xba,0xb5,0xa3, - 0xbe,0x65,0xa8,0xf0,0x57,0x87,0xc1,0x2d,0x1a,0xf4,0xcb,0x98,0xcd,0xc3,0xbe,0xa0,0x1f,0xea,0x05,0x72, - 0x42,0xf4,0xcc,0xa2,0xe7,0x1d,0xf5,0x33,0x25,0x1c,0x0e,0x0e,0xfe,0x35,0x38,0xea,0x53,0xd1,0x27,0x71, - 0xa7,0xf1,0x8e,0xff,0x43,0x1a,0xfd,0x90,0xde,0x60,0xa8,0x14,0x54,0xda,0x10,0x51,0xa2,0x7e,0x48,0x5d, - 0xe3,0x44,0xba,0x84,0x7f,0x45,0xcf,0x1f,0xce,0x67,0xd9,0x22,0x7c,0xf9,0xe6,0x70,0xd2,0xdf,0x51,0x6f, - 0x91,0xc2,0xdf,0x34,0x8e,0x5f,0xe2,0xe8,0xe0,0xb7,0x94,0xee,0x1c,0x75,0x45,0xcb,0xbb,0x7f,0xcd,0xdd, - 0x22,0xb2,0x24,0xe3,0x55,0x42,0x9e,0x86,0x0c,0x0b,0xc3,0x8f,0xfb,0x2f,0xe2,0x39,0x8b,0x64,0x0f,0xbc, - 0x8b,0x6d,0x7e,0x4c,0xf1,0x8e,0x20,0x9d,0xc5,0x4f,0x9e,0x34,0x08,0x42,0xef,0x68,0xb5,0xa2,0x14,0xfd, - 0x6d,0x54,0x43,0xf5,0x6d,0xc3,0x89,0xf0,0xdc,0x25,0x37,0xd7,0xc5,0x76,0x3a,0x95,0x6d,0x8e,0xa3,0x74, - 0xe4,0x51,0x5b,0x74,0x2a,0x71,0x28,0x43,0x62,0x11,0xf3,0x48,0x68,0x72,0x53,0x14,0xcf,0xb9,0xda,0x6e, - 0xb9,0x96,0x66,0xdb,0x18,0x47,0xbf,0x31,0x45,0xfe,0xcf,0x92,0x7d,0x65,0xb1,0xb6,0x11,0x77,0xa8,0xc4, - 0x75,0xc6,0x71,0xfe,0x81,0xfa,0xfe,0x0e,0xe9,0x50,0xda,0x07,0x0d,0x3b,0x26,0x04,0xad,0xc9,0xbd,0x41, - 0x3a,0x25,0x1c,0xe1,0xf5,0x0b,0xea,0x9f,0xa6,0x7f,0xc7,0x54,0xb9,0x43,0x87,0x5c,0xfd,0x8e,0x4a,0x57, - 0xc9,0x87,0x79,0x88,0x72,0x82,0xbf,0xc3,0xb1,0x3e,0x8f,0x33,0xdd,0x2f,0x0d,0x6a,0x86,0x41,0xd1,0xea, - 0xca,0x80,0x4a,0x4e,0xd0,0x43,0x28,0xe2,0x49,0x9a,0x4b,0xff,0x33,0xf4,0x5f,0x35,0xe9,0xf6,0xca,0xa5, - 0xb8,0x4b,0xe9,0x63,0xa6,0xfb,0x58,0xea,0x3e,0x8c,0xcf,0xa2,0xd2,0x5f,0x36,0xbb,0xa2,0x04,0x59,0x74, - 0x18,0x3f,0x7c,0x87,0xdf,0xb5,0x5e,0x52,0xdd,0xe2,0x12,0xee,0xf1,0x47,0xe3,0x01,0x96,0x0e,0xa1,0xe8, - 0x40,0xe9,0xc8,0x2f,0x5a,0x00,0x38,0xa1,0x06,0x67,0x77,0xa4,0xbe,0x27,0xcc,0x40,0xd5,0x88,0x63,0x00, - 0xd8,0x41,0x7e,0x6f,0x5e,0xb8,0x7f,0x89,0x55,0xc5,0x4a,0x84,0xfa,0x51,0xed,0xa6,0x67,0x34,0xf7,0x0d, - 0x35,0x16,0xd8,0x62,0xef,0x7e,0x06,0xac,0xf8,0xed,0x55,0xdc,0x1b,0x5a,0x5e,0xc4,0xca,0xd0,0x4b,0xad, - 0xcc,0xa5,0x74,0x68,0xdd,0xea,0xfd,0x32,0x0e,0xb6,0xba,0x7b,0xbe,0xc3,0x2a,0x02,0xb7,0x8c,0x07,0x8e, - 0xb7,0xf1,0xac,0x17,0xf5,0x1a,0x91,0xd5,0xf5,0x93,0x82,0x3c,0x62,0xde,0x62,0x07,0xb2,0x3a,0x62,0xa3, - 0x7d,0xd0,0xb4,0x8d,0xe7,0x16,0xf1,0xc0,0x4d,0x90,0x34,0xba,0x0e,0xf0,0x06,0xea,0xbb,0x65,0xd0,0xeb, - 0x05,0xf7,0xe5,0xbd,0x13,0x77,0x2f,0x50,0x09,0xca,0x7b,0x23,0xaa,0x26,0x09,0xbd,0x90,0x3e,0xf5,0xd3, - 0x9b,0x34,0x78,0xa7,0xef,0x73,0x0c,0x06,0xb1,0xa3,0x1f,0x79,0xef,0x32,0x9f,0xf2,0x71,0x06,0xe8,0x0f, - 0x84,0x44,0x04,0x02,0xde,0x30,0x73,0x5f,0x34,0xa1,0x40,0xdf,0xf7,0x7a,0x5e,0x3f,0x2f,0x11,0xea,0xa6, - 0x3e,0x76,0xf3,0xa8,0x4a,0x9d,0xd6,0x17,0x20,0xac,0xff,0x26,0x7c,0xe9,0x05,0x96,0x2b,0x62,0xb3,0x9d, - 0xca,0x26,0xb4,0xc2,0x03,0x31,0x61,0x58,0x7b,0x7c,0xe8,0x77,0xbe,0x69,0xc9,0x9d,0x49,0xd0,0x16,0xcb, - 0x79,0x97,0x35,0x08,0x56,0x2b,0x0f,0xfd,0xe0,0x4c,0x6b,0x3c,0x50,0x2c,0x93,0xed,0x2a,0x13,0x3f,0x3d, - 0x3a,0xd6,0x92,0x39,0x8d,0x71,0xaa,0xab,0x5c,0xfe,0xed,0x0d,0xff,0x23,0x91,0x15,0x10,0x27,0x38,0xca, - 0xab,0x9b,0x92,0x78,0x7d,0x62,0x53,0x82,0xd1,0xbb,0x54,0xbe,0x14,0x1d,0xa1,0x3e,0xf3,0xe1,0x5e,0xdf, - 0x97,0xf6,0x31,0xf6,0x91,0x17,0xea,0x92,0xb4,0xbc,0xe1,0xbb,0x7f,0xdb,0xc2,0x39,0x92,0x88,0xc9,0xab, - 0x2f,0xb3,0x27,0x50,0x44,0xf7,0x2f,0x17,0xbb,0x05,0xee,0xb5,0xb6,0xd8,0x94,0x34,0x8e,0x90,0x3c,0xd0, - 0xe3,0x1a,0xf9,0xd2,0x16,0xba,0x21,0x0e,0xa1,0xc3,0x18,0x96,0x9a,0xd3,0x48,0xf1,0xd6,0xad,0x0b,0x6a, - 0xd8,0x97,0x2d,0x97,0xf1,0x7a,0x61,0x1c,0x70,0x47,0x69,0x44,0x33,0xa1,0xa2,0xf4,0x79,0xc1,0x8d,0xb8, - 0x9d,0x04,0x57,0x54,0xe0,0xe1,0x2e,0xa3,0x4b,0x1a,0x17,0x0d,0x20,0x36,0x5a,0x21,0x07,0x54,0xfe,0x28, - 0x10,0xdd,0x17,0x94,0xa2,0x05,0xa8,0x15,0x33,0xee,0x5f,0x28,0x2b,0x30,0x75,0xaa,0x74,0x4a,0xed,0xef, - 0x41,0x8f,0x40,0xea,0x5b,0xf8,0xba,0x35,0x66,0x38,0xf4,0x3e,0x0d,0x5a,0x04,0xd3,0xfd,0x45,0x50,0x69, - 0x6d,0xb7,0xb3,0x59,0x3e,0xd5,0x69,0x2d,0x1a,0x42,0x37,0xd4,0x77,0x8f,0x07,0x1f,0x7f,0x0a,0x88,0x03, - 0x04,0x1d,0x9d,0x90,0x8d,0x58,0xa5,0x81,0xaf,0x08,0xaf,0xb1,0xff,0x78,0xdc,0x5e,0x12,0x35,0x18,0x7e, - 0xb7,0xf5,0xbc,0x10,0x00,0x09,0x76,0xdc,0x74,0x2d,0x6d,0xc9,0xaa,0x60,0x50,0xd0,0xed,0x53,0xb3,0x28, - 0x1e,0x99,0x51,0x86,0x3a,0x03,0x3a,0x68,0x04,0xbd,0xa1,0x1e,0x95,0x5a,0x46,0x8d,0x63,0x2d,0xeb,0x33, - 0x04,0xba,0xee,0xce,0xd3,0x56,0xe3,0xf0,0x58,0x22,0x65,0x78,0x81,0x96,0xbc,0x32,0x43,0x79,0xb3,0xe2, - 0x15,0x59,0x06,0xc3,0x31,0x15,0xa0,0xdb,0x0e,0x60,0x55,0x6b,0x47,0xeb,0x99,0xd8,0x47,0xca,0xa1,0xd7, - 0x9f,0x06,0x4a,0x76,0x42,0xfa,0x57,0x9e,0x39,0x3f,0x7a,0xb5,0x67,0x6a,0x5a,0x49,0x56,0xfc,0xc5,0x6a, - 0x05,0x85,0x69,0xd9,0x87,0xe3,0xd9,0x92,0x6e,0x27,0xaf,0xfe,0x74,0xe5,0x19,0x73,0xc1,0x6a,0x23,0xb6, - 0xbe,0xc9,0xea,0x62,0x42,0x3f,0x0e,0x3a,0x71,0xbf,0x7d,0x85,0x65,0x1a,0xb1,0xc5,0x18,0x5f,0x88,0x06, - 0x83,0x0c,0xd7,0x21,0x91,0x00,0x3c,0x0b,0x0c,0x5b,0x4a,0xf0,0xe0,0xd7,0xcc,0xf3,0x5c,0xdf,0x84,0x25, - 0xba,0x3a,0x1b,0x58,0x13,0x63,0xf9,0x9a,0xe8,0xa9,0xb8,0xcb,0x25,0x05,0x08,0x59,0xed,0x80,0x0b,0xc2, - 0x4a,0xe2,0x8a,0x50,0x8e,0x38,0x56,0x47,0x4e,0x1a,0xfe,0x5e,0xc0,0xe1,0xce,0x93,0xe4,0xa7,0x64,0x5a, - 0xbe,0x9a,0x27,0x19,0x8a,0x10,0xbf,0x55,0x5b,0x8a,0x70,0x91,0xaa,0x86,0x2c,0x34,0xfc,0x39,0x51,0x8e, - 0xf0,0xe0,0x17,0xf8,0x87,0x98,0x2c,0xc7,0xdd,0x2a,0x37,0x1c,0xcb,0x91,0x4f,0xb9,0x09,0x90,0x65,0x42, - 0xfe,0x05,0xec,0x11,0x62,0xf0,0x3e,0x4f,0x09,0x4c,0x14,0x56,0xe4,0x8f,0x6e,0x12,0xb5,0x07,0x47,0x2f, - 0x80,0x76,0xdc,0xd9,0x0c,0xff,0x90,0xac,0x2b,0x73,0x12,0x14,0xf1,0x2e,0x69,0xa6,0xdd,0x79,0x28,0xfb, - 0x30,0x26,0xd1,0x85,0xfa,0x7e,0x32,0xc2,0x89,0x4d,0xe0,0x19,0x15,0x02,0xa3,0x1f,0x2d,0xcb,0x77,0x78, - 0x79,0xeb,0xdd,0x51,0x7f,0x75,0x48,0x14,0x76,0x70,0xf4,0xc5,0xe8,0x30,0x00,0xbb,0x17,0x3d,0x5a,0xfd, - 0xcb,0x8c,0x80,0x7e,0x1e,0xfa,0x3b,0xea,0xdf,0xba,0xc6,0x01,0xb1,0x75,0xc4,0xdc,0xbd,0xbb,0x75,0x84, - 0xaa,0x47,0xe0,0x0c,0x89,0xba,0x6e,0x24,0xae,0x0e,0x0f,0xee,0x10,0x7d,0x7f,0xe7,0x88,0x3e,0x3c,0xfa, - 0xf0,0xf0,0x41,0x64,0x30,0xfe,0x34,0xcb,0x1e,0x05,0x5f,0x50,0xb3,0x44,0xb9,0xff,0x00,0x52,0x67,0x31, - 0x0e,0xef,0xfe,0x1d,0xce,0x8c,0xc2,0xaf,0x45,0xcd,0x22,0xdc,0xbb,0xa7,0x64,0xbd,0xef,0xdd,0x55,0xcb, - 0x79,0x78,0xef,0x2b,0xe2,0x90,0xa7,0x65,0x78,0xef,0xef,0xaa,0xc0,0xeb,0x49,0x78,0xef,0x6b,0x05,0x2f, - 0xd8,0xe1,0xfd,0x5d,0x25,0x0f,0x98,0xe1,0xc1,0x57,0xea,0xfe,0x97,0xc4,0x84,0x7c,0x17,0x77,0xf9,0xe5, - 0x02,0xca,0xe9,0x03,0x78,0x1c,0x9f,0x59,0x43,0x62,0x9b,0xfe,0x19,0x43,0x18,0x44,0xf0,0x60,0x0e,0x35, - 0x7e,0x00,0x40,0xe2,0x93,0x58,0x44,0x88,0x43,0x68,0x54,0x70,0x9e,0x2d,0xa3,0x7f,0x3f,0x93,0x07,0x47, - 0x2e,0x82,0xb8,0x64,0xe1,0x77,0xb1,0x5f,0xc7,0x0d,0x3d,0xc2,0x38,0x3d,0x9d,0x32,0x5e,0x16,0xd8,0xa4, - 0x7d,0xce,0xa0,0x03,0x3c,0x2e,0x8b,0x19,0xd7,0xd8,0x32,0x05,0x28,0xe1,0x47,0x68,0xe8,0x2a,0xf6,0x1d, - 0x5a,0xcb,0xe3,0x14,0xc9,0x8c,0x67,0xf5,0x2c,0xfa,0x2d,0x19,0x90,0x17,0xd4,0x72,0x90,0x20,0x59,0xbc, - 0x76,0xc8,0xba,0x23,0x5e,0xa1,0xee,0x80,0x30,0x92,0x52,0xbd,0xdb,0xb7,0xcd,0x08,0x25,0x8f,0xc7,0xbc, - 0x8b,0xf6,0xd2,0xc9,0x64,0x96,0x7c,0x56,0xb5,0x3d,0xc8,0x15,0x78,0x7f,0x3e,0xa7,0xd6,0x5d,0xc0,0xff, - 0xef,0xb4,0x11,0xc4,0x35,0x36,0xfd,0xb1,0xc0,0x0d,0x5c,0x15,0xd5,0xae,0x63,0x63,0xdf,0x9d,0xc8,0xc6, - 0xaa,0x1a,0x86,0x58,0xc3,0x5b,0x49,0xd6,0xf6,0x83,0x83,0xe6,0x38,0x7c,0x5e,0x65,0x2d,0x54,0xb5,0x74, - 0x4c,0x2d,0x65,0xd4,0xd2,0x1d,0xc8,0xbf,0xe8,0xbc,0xf5,0xc1,0x7c,0x57,0xad,0xe2,0xee,0x73,0x28,0x69, - 0x38,0x3a,0xaa,0xd4,0x11,0xf1,0x18,0x36,0x12,0x52,0x27,0xd4,0x34,0x53,0x70,0x4d,0x71,0x8e,0x3e,0xed, - 0x29,0x5d,0xde,0x0b,0xf4,0x98,0xc7,0xb3,0x3c,0x3e,0x43,0x5c,0xdd,0xdf,0xe2,0xb6,0xd7,0xd3,0xdc,0x3a, - 0xcb,0xe4,0x9f,0x90,0x44,0xd2,0x9d,0x88,0x3f,0xab,0xd5,0xef,0x3a,0xd1,0x0a,0x2f,0x17,0xd1,0x6f,0x10, - 0xc3,0x1b,0xc5,0x74,0xcf,0x66,0x3c,0x25,0x8e,0xc1,0x78,0x70,0xc7,0x3b,0xe3,0x77,0x49,0x86,0x08,0x7e, - 0xf5,0xd2,0x5a,0xea,0x68,0xcb,0x59,0x8e,0x23,0xba,0xf0,0x59,0xd1,0xe2,0xf7,0x98,0x4d,0xa3,0x6d,0x7a, - 0x60,0xa3,0x77,0xd5,0x10,0xe8,0x6a,0xf5,0x26,0x1b,0x6a,0xdf,0xc8,0x1f,0x8f,0x13,0x1b,0x88,0xb1,0x63, - 0x23,0xb7,0xac,0x19,0xaf,0xf6,0x8f,0x99,0x8d,0x93,0xe7,0xb0,0xd6,0xe2,0x5f,0xcd,0x80,0x83,0xf0,0xd1, - 0xfd,0x1f,0x71,0xe4,0xbb,0x42,0xa1,0xc3,0xc3,0x63,0xaf,0xef,0x4d,0x72,0x45,0x3c,0x22,0xcd,0x94,0x80, - 0xbe,0x44,0x40,0x5d,0x5a,0xe4,0x8f,0xec,0x98,0x6d,0x0c,0xe1,0x1f,0xae,0x3d,0x75,0x99,0x96,0xa7,0x2a, - 0xbe,0x8c,0xd3,0x52,0xb1,0x61,0x80,0x62,0x1f,0xe8,0x5a,0x79,0x9e,0x9f,0x81,0x14,0x3b,0x2e,0x55,0x1c, - 0x97,0x5e,0x5d,0x12,0x5a,0x4d,0xd4,0x47,0x48,0xfd,0x34,0xb2,0x51,0xc4,0x9c,0xe5,0xf0,0x76,0xc8,0x9e, - 0x58,0x94,0xcc,0xc0,0x78,0x00,0x33,0x7e,0x17,0xc5,0x5d,0x28,0xb1,0x31,0x12,0xa2,0x9e,0x9d,0xa0,0xa5, - 0xd9,0x12,0xae,0x7b,0x8e,0x97,0x27,0x27,0x10,0x13,0xea,0x55,0xa8,0x82,0xae,0x78,0xda,0x4f,0x0d,0xee, - 0x04,0x7d,0x3b,0xd0,0xb4,0x56,0x98,0x5a,0xd0,0xe7,0x19,0x4a,0x90,0xe0,0xc6,0x9c,0x65,0x50,0xe2,0x77, - 0x94,0x15,0xd8,0x3b,0xdb,0x21,0x94,0x0e,0x84,0x7f,0x78,0x48,0x28,0x9f,0xfe,0xa9,0x5a,0x6d,0x64,0x50, - 0x1f,0xfe,0xd3,0xa6,0xe4,0x47,0x44,0x11,0x1b,0xad,0x46,0xd9,0x63,0x30,0xe1,0x45,0xc4,0x3e,0x8e,0xb6, - 0xf6,0x02,0xf5,0x31,0xd6,0xfb,0xc9,0x06,0x62,0x90,0x70,0x3b,0x11,0x5b,0x86,0xd9,0xc3,0x93,0xd8,0x75, - 0xce,0x72,0x12,0xb3,0x1d,0x2e,0x5e,0x72,0xe6,0x71,0x54,0x56,0x50,0xfd,0x11,0xbf,0xcc,0x5d,0x0f,0x70, - 0x52,0xc7,0x48,0x71,0x6e,0x72,0x4e,0x7c,0x87,0xc4,0xc6,0x55,0xcd,0x19,0x17,0x31,0x40,0xbb,0xec,0x38, - 0x08,0x2f,0xe5,0x20,0x9c,0x37,0x0b,0x34,0xc5,0x34,0x54,0xe6,0xa4,0x55,0x26,0x5f,0x94,0xcd,0x42,0xa7, - 0x18,0x02,0xed,0x44,0x7a,0x9e,0x96,0x08,0x88,0xa8,0x8d,0x72,0x89,0x3c,0x65,0xe5,0x93,0xad,0x3d,0xd6, - 0xf5,0x44,0x8c,0x73,0x9c,0x8e,0x5f,0x4f,0xa9,0x14,0x0f,0x53,0x61,0xbd,0x40,0xa7,0xee,0xb5,0x2c,0x33, - 0x9a,0x8b,0x4c,0xbf,0x96,0x7d,0xbc,0xe0,0x41,0xad,0x75,0x79,0x2c,0x6f,0x0b,0xbe,0x6b,0x35,0x5d,0x18, - 0x3f,0x02,0xac,0x7f,0xa7,0x16,0x55,0xfc,0x7a,0xd1,0xe4,0x5b,0x06,0xfa,0xed,0x0d,0xcf,0x0d,0x05,0x7e, - 0xca,0x8e,0x35,0x1e,0x64,0x29,0x99,0x55,0xfd,0xd3,0x28,0xaf,0x82,0xda,0xa7,0x8f,0x22,0xe2,0x7a,0x72, - 0x84,0x82,0x99,0x99,0xa2,0x38,0xe4,0x34,0xaf,0x05,0x42,0xaa,0x19,0x9a,0x32,0xe2,0x67,0x5f,0x94,0x76, - 0x0c,0x30,0xdd,0x86,0xc6,0x8f,0xa2,0x74,0x38,0xa6,0x0a,0xe5,0x80,0xbd,0xac,0xf0,0x1f,0xf6,0xb7,0xce, - 0x92,0x09,0x8c,0x7f,0x68,0x8a,0x47,0x58,0xc0,0x94,0xbb,0xdd,0xde,0xe3,0x7c,0xe6,0x8e,0xbc,0xe3,0x02, - 0x14,0xde,0x62,0xc4,0x84,0x55,0xc1,0x4e,0xeb,0xf9,0x83,0xe6,0x4f,0xcb,0xbd,0xb5,0x2b,0x9e,0x11,0xbc, - 0x39,0x97,0xe2,0x38,0xb8,0x9d,0xe5,0xf6,0xb8,0x9c,0xaa,0x0d,0x44,0x56,0x90,0x16,0xd5,0x38,0x47,0x80, - 0xa7,0x13,0x6c,0x22,0x94,0xd1,0x2b,0xa9,0x0c,0x6d,0x59,0x39,0xa8,0xe8,0x4b,0x86,0xb6,0x19,0x5e,0x9c, - 0x1b,0x54,0x25,0x67,0x2c,0x69,0x51,0x92,0x21,0x0b,0xf9,0x52,0x42,0xe0,0xc4,0x92,0xbc,0x89,0xfd,0xd8, - 0xaa,0xb3,0xc1,0x2e,0x35,0x6e,0xbc,0x89,0xcf,0xa3,0x0f,0xf1,0xc1,0x04,0x21,0xa2,0xf8,0x6f,0x4d,0xfe, - 0x4d,0x04,0xdc,0xe1,0xe2,0xf0,0xf0,0x0d,0x91,0x6e,0x81,0xff,0x70,0xc7,0xeb,0x4f,0x8c,0x20,0x3c,0xa0, - 0x13,0x9f,0x82,0x97,0x86,0x75,0x96,0x11,0x6d,0xcf,0x5d,0x99,0x36,0x83,0x87,0x81,0x34,0x6b,0x09,0xab, - 0x68,0x3c,0x13,0xe6,0xff,0xb4,0xdf,0x49,0x2c,0x1c,0xc7,0x46,0x8e,0x2a,0x07,0x54,0x3b,0x10,0xa3,0x53, - 0xdf,0x0b,0xe9,0x79,0x7b,0xfb,0xd1,0xce,0x09,0xb1,0x18,0x74,0xeb,0xbb,0x45,0x0e,0x0f,0x9e,0x3e,0x7b, - 0xbc,0xff,0xf8,0xf0,0xa0,0x2a,0x79,0x74,0x64,0x4b,0x42,0xa8,0xec,0x4f,0x94,0xb8,0x5d,0x86,0x3e,0x8b, - 0xf6,0xd9,0xc4,0x61,0xf4,0x4e,0x63,0xb9,0x28,0xf9,0x03,0x4a,0x10,0x1e,0xe4,0x2f,0x04,0xf3,0x46,0x47, - 0x67,0xfb,0xd4,0x8c,0x37,0x89,0x4e,0x55,0x41,0x0d,0x2d,0xb7,0xa7,0x88,0x44,0x6d,0xed,0x90,0x2e,0x22, - 0x47,0x19,0xe0,0xa1,0xc8,0x00,0xa0,0x86,0x79,0xc1,0x8b,0xbf,0x8c,0x4d,0x44,0x2d,0x63,0x41,0xe6,0xaa, - 0x0e,0x6c,0x1f,0x7e,0xb8,0x97,0x48,0x95,0x73,0x06,0xdf,0x52,0x87,0x67,0x44,0xa4,0x0a,0xad,0x82,0xa8, - 0xc3,0x23,0x68,0x87,0x25,0xd5,0x29,0xbc,0xaf,0x60,0x6b,0x9b,0xf9,0xe7,0xfd,0x7b,0xc4,0xe2,0x69,0x54, - 0xbf,0x86,0x5e,0xd7,0xb4,0xd1,0xe7,0x89,0xdb,0xe7,0xd1,0x23,0xe9,0xef,0x84,0xfb,0xcb,0xfc,0x93,0xfe, - 0x5d,0xb7,0x3a,0xca,0x43,0x43,0x9a,0xdd,0xd3,0xfa,0x33,0x51,0x39,0xfc,0x88,0x82,0x1f,0xf1,0xb6,0x6c, - 0x02,0x1a,0xda,0x0a,0x28,0x7f,0x6c,0xcb,0x8f,0xa5,0xfc,0xb1,0xf4,0xfb,0x2e,0x5a,0x0e,0x33,0xff,0xd8, - 0xa9,0x47,0x0b,0x78,0x7c,0xb0,0x77,0xa4,0xde,0x31,0x5b,0xea,0xb6,0x71,0xd9,0x8c,0x95,0x52,0xda,0x46, - 0x73,0x69,0xd4,0x46,0xfe,0xbb,0x32,0x1e,0xff,0x4a,0x34,0xc5,0x9c,0x47,0x88,0xc3,0x82,0x53,0x16,0x2e, - 0xd7,0xd4,0x65,0xe9,0x0e,0xd5,0x39,0x55,0xc3,0x2d,0x1c,0x06,0xdd,0xec,0x22,0x66,0xe3,0x8f,0xd8,0x26, - 0x14,0x94,0x30,0x0c,0x32,0x3f,0xae,0x0d,0x58,0xfb,0x8f,0x34,0x81,0x38,0x71,0x9e,0x2a,0x1b,0xcc,0x25, - 0xce,0xe2,0x1b,0xba,0xc5,0x09,0x6d,0x60,0x30,0x99,0x9f,0xd6,0x2b,0xc3,0xf7,0xf9,0x52,0x15,0xeb,0xb5, - 0x2f,0x56,0x53,0xc1,0x55,0x2b,0xd4,0x42,0x16,0x59,0x37,0x85,0x6c,0x75,0x51,0xb5,0xc9,0xdc,0xbf,0x60, - 0x14,0x68,0xe6,0x8b,0xeb,0xf0,0x82,0x46,0xa1,0x66,0xfc,0x19,0x8b,0x03,0xe8,0x82,0x1f,0xc8,0xcd,0x34, - 0x97,0xd1,0x98,0xbd,0x35,0x6c,0x6d,0xa5,0xec,0x83,0x47,0x86,0xaf,0x61,0x78,0xc2,0x87,0x5a,0x24,0x53, - 0x53,0x9c,0xf8,0xdd,0xe1,0xfc,0xe1,0x74,0x38,0x37,0x4a,0x7e,0xa7,0xa6,0xc2,0xc1,0xfc,0x68,0x38,0xa1, - 0x4e,0xb7,0x61,0x2d,0x77,0x8a,0x39,0x19,0x00,0xba,0xe3,0x79,0x77,0xb0,0x6e,0xfc,0x46,0x75,0x7a,0x70, - 0xef,0xe8,0xf6,0x6d,0xad,0xd0,0x89,0x1f,0x4a,0x27,0xdf,0x77,0x93,0xef,0xdb,0xe4,0x07,0x6e,0xf2,0x03, - 0x6d,0x4d,0x78,0xc1,0xcd,0xac,0x56,0x28,0x88,0x7f,0x1f,0xd0,0xbf,0x9e,0xa7,0xce,0x23,0x2f,0x36,0x2e, - 0xae,0xe1,0xbe,0x59,0x5a,0xd8,0x3b,0x1a,0x99,0x33,0xf2,0x2c,0x81,0x4b,0xdd,0x97,0xc9,0x25,0x5c,0xa2, - 0x2e,0xbe,0xcd,0x8b,0xef,0xa9,0x54,0xd8,0x9d,0x3b,0x9c,0xd0,0x8c,0xb4,0xee,0x3a,0x1a,0x51,0x4c,0x62, - 0x87,0xff,0x2e,0xfd,0x0b,0x3a,0x46,0xeb,0xf5,0x92,0x55,0x9f,0x79,0x93,0x59,0x81,0x95,0x30,0xab,0x7b, - 0xe3,0x84,0x59,0x03,0x57,0x0a,0xd4,0x4d,0xe0,0x91,0x3e,0xe2,0xb8,0x08,0x0d,0x64,0x9f,0xc1,0x96,0x8c, - 0x9f,0xbc,0xe9,0x17,0x3c,0xda,0x64,0x93,0x60,0x4d,0xdb,0x0f,0x5c,0x14,0xab,0x84,0x5d,0x2f,0xec,0x35, - 0xcf,0xdd,0xbe,0x31,0x19,0x3f,0x33,0x1f,0x4f,0xf5,0x07,0x60,0xe7,0xc2,0xde,0x6f,0x67,0xd6,0xb1,0xf3, - 0x45,0x40,0x20,0x3d,0xd6,0xc7,0xfd,0x0c,0x6e,0x5c,0x9d,0xef,0xa5,0xf3,0x3d,0x75,0xbe,0xfd,0xa7,0xd1, - 0x99,0x8b,0xb1,0x14,0xe1,0xc2,0x87,0xbb,0x04,0xfa,0x17,0xfd,0xe8,0xa9,0xaa,0x35,0xbe,0x5f,0xbb,0xf7, - 0x77,0xd5,0x05,0x10,0xce,0x45,0xb0,0xbe,0x60,0x71,0x24,0xe5,0x12,0x56,0x84,0xe5,0xb8,0xc5,0xa4,0xfb, - 0x15,0x32,0xdd,0x67,0x1d,0xd3,0x44,0xd4,0x94,0x5b,0xa8,0x36,0x31,0x26,0xb2,0xeb,0xc2,0x67,0x19,0x91, - 0x44,0x09,0x99,0xc7,0xca,0x79,0x86,0xa8,0xdd,0x7e,0x8e,0x64,0xc5,0xbd,0x06,0x3b,0x84,0x2a,0xad,0x1b, - 0x51,0x75,0x81,0xc4,0x06,0x48,0xe9,0x2c,0x7b,0x3d,0x70,0xe9,0x5c,0xd5,0x42,0xdd,0xa1,0xc5,0xdc,0x0b, - 0x8d,0x9e,0x9c,0x6b,0x31,0x87,0xf5,0xab,0x9c,0x58,0x11,0x90,0x2e,0x56,0xab,0x77,0x78,0xe3,0x1c,0xbe, - 0x04,0xc8,0xc3,0x65,0x36,0xad,0xdd,0x12,0xaa,0xf0,0x35,0xee,0xa5,0x52,0x76,0x26,0xa4,0x27,0xa4,0x6d, - 0xe2,0x52,0xb6,0x46,0x78,0x89,0xf8,0xa8,0xbf,0xc6,0x46,0x77,0x32,0xd3,0x3a,0x93,0xf2,0x15,0xc9,0x1f, - 0x7b,0x89,0xbe,0x8d,0x95,0x6c,0x23,0x9f,0x00,0xd0,0x22,0x36,0x86,0x1e,0x94,0xcb,0xb5,0x3c,0xf1,0x87, - 0x92,0x87,0x9d,0xd2,0x05,0x09,0x89,0x22,0x8d,0x18,0xf4,0xdc,0x96,0x76,0xa0,0xcf,0x1e,0x15,0x27,0xd1, - 0x34,0x10,0x65,0x66,0xf3,0x1c,0x8d,0xe4,0x89,0x28,0x5f,0x4f,0xea,0xf2,0x54,0x9a,0x24,0xc4,0x76,0x3b, - 0xef,0xe3,0x8b,0xd8,0x2d,0x5b,0x2b,0x44,0x63,0x46,0x8c,0xda,0x80,0x3b,0xa4,0xa9,0x1f,0xb3,0x27,0x78, - 0x0e,0x44,0x69,0x16,0x62,0xa2,0xf1,0xd8,0xb9,0x25,0xf0,0x81,0xcf,0xa6,0xd1,0x79,0x4c,0x67,0xde,0x9f, - 0x12,0x49,0x4b,0xf0,0xcf,0x8a,0x81,0x34,0xff,0xf3,0x68,0xaa,0xec,0x43,0xe3,0x39,0x1e,0xd5,0x20,0xbb, - 0x43,0xf3,0xe7,0x20,0x95,0xd9,0xd4,0x60,0x5a,0xf1,0x15,0xbb,0x01,0x33,0x16,0x53,0x87,0xb1,0xc0,0x8b, - 0x64,0x67,0xf4,0x62,0x2b,0x2c,0xb3,0xee,0x2e,0xdd,0x28,0x8d,0xf6,0x55,0xd5,0x41,0xc1,0xa5,0xf1,0x43, - 0x53,0x72,0x04,0x4f,0x78,0xe9,0xd1,0x38,0xca,0x69,0x8d,0x12,0x25,0x2e,0x89,0xa0,0xac,0x86,0x92,0x4f, - 0xa3,0xa0,0x84,0x25,0x5d,0x1b,0x8f,0x9a,0x34,0x0f,0xd6,0xb5,0x63,0xa1,0x9d,0x44,0xc5,0x9e,0x06,0xe1, - 0xb4,0x7a,0x0b,0xa5,0xdc,0x7f,0xc2,0x98,0xbf,0x23,0x52,0xa9,0xf3,0x66,0xab,0xef,0xdf,0x04,0x8f,0xa6, - 0x25,0x1e,0x19,0x13,0x79,0x64,0x2c,0xf5,0x23,0x63,0xb2,0xd6,0x46,0xd6,0x1d,0x4f,0xb8,0xa2,0xcb,0xac, - 0x9f,0x1f,0x4d,0xec,0xc4,0xe6,0x83,0xae,0xd1,0x66,0xd2,0xef,0x92,0x70,0xa8,0x8b,0x41,0x5d,0xb8,0x9b, - 0x75,0x81,0x0a,0x60,0xd2,0xb9,0xc9,0x0b,0xe6,0xd7,0x79,0x37,0xbe,0x2b,0x79,0x93,0x69,0x2d,0x47,0x06, - 0x02,0x56,0xab,0x82,0xc6,0xca,0x30,0x23,0x4d,0x12,0x04,0xf0,0x17,0x55,0xa5,0xe1,0x17,0x32,0x7c,0x93, - 0xa9,0x67,0x31,0x5d,0x07,0x61,0x41,0x3d,0xd2,0x69,0xdc,0x72,0x60,0x0d,0x26,0x42,0xad,0x66,0xb6,0xae, - 0xe7,0x55,0xdd,0x53,0x6a,0x0f,0x27,0xc7,0xd7,0x33,0x16,0xe8,0x09,0x87,0xd6,0x03,0x80,0x1b,0xc9,0x2d, - 0x25,0x20,0x28,0x6c,0x3e,0x87,0xe9,0xaf,0x5f,0x39,0xb9,0xe1,0xb5,0xc9,0x78,0x3a,0xbf,0xe3,0x62,0xe1, - 0xa1,0x27,0xf5,0xa1,0xc3,0x22,0x83,0x16,0xcc,0xca,0xd8,0xa7,0x03,0x58,0x28,0xb0,0xd3,0x2f,0x8e,0x22, - 0x2e,0xdb,0xbf,0x37,0x94,0x3b,0x5e,0x72,0x45,0x2e,0xb8,0x5a,0xdd,0xf1,0xb4,0xfc,0xc0,0xbb,0x33,0xa4, - 0x6e,0x6b,0xc1,0xde,0xea,0xbf,0xd9,0x8c,0xe0,0xe0,0xf4,0x28,0x9a,0x8a,0xb1,0x75,0x35,0x46,0xc1,0x1b, - 0x53,0x3e,0x3a,0x12,0x96,0x2d,0x95,0xab,0x5d,0x9d,0x0f,0x67,0xa3,0x0c,0x40,0x47,0x94,0xd7,0x54,0xc5, - 0xa6,0x20,0xe2,0x8c,0x65,0x1d,0x7a,0xf5,0xf1,0x41,0x6c,0xd9,0xb6,0x23,0x55,0x3a,0xee,0xb1,0x0e,0x5a, - 0x3e,0xb1,0xa8,0x04,0x82,0x2f,0xdf,0x83,0x36,0x88,0x41,0x28,0x3d,0x4f,0x7e,0xb1,0x3b,0x85,0xad,0x31, - 0x34,0xad,0xab,0x31,0x62,0x69,0x95,0x6d,0x3f,0xda,0x23,0x72,0xab,0xde,0x5f,0x26,0x0e,0xb7,0x71,0x41, - 0xd5,0xa4,0xfc,0x26,0xb8,0xd8,0xcb,0xcc,0x7d,0x3a,0x12,0x8f,0x26,0x40,0x6c,0x69,0x85,0xb3,0xe6,0x95, - 0x3b,0x0e,0x98,0x76,0x07,0xf6,0x34,0xd5,0x9c,0x7f,0x24,0xd1,0x18,0x81,0x1f,0xe5,0x09,0x67,0xe4,0x23, - 0xd4,0xa6,0x57,0x71,0x41,0x85,0xb1,0x55,0x61,0xb4,0x6a,0x12,0x46,0x49,0xf8,0x24,0x66,0xb7,0x7e,0x39, - 0xae,0x51,0x19,0xf5,0x88,0x66,0x0c,0x71,0x9e,0xf6,0xf8,0xb6,0xb5,0xe0,0x35,0xd8,0x62,0xdf,0x7d,0x7e, - 0x53,0x7a,0x22,0x50,0x7a,0x1a,0x8f,0x7e,0x4f,0xfd,0xd3,0x38,0x08,0xbf,0x4b,0x99,0x5b,0xaf,0x98,0x05, - 0xeb,0xfc,0x4d,0x39,0x2c,0x28,0xfd,0x33,0x86,0x0b,0xdf,0x78,0x51,0x3e,0x07,0xd1,0x00,0x84,0xc5,0xf1, - 0x7c,0x92,0x31,0x2e,0xab,0xe0,0x8a,0x76,0xb6,0x10,0x7a,0x22,0x78,0x84,0xa7,0x26,0x43,0x2c,0x5b,0x42, - 0x62,0x0c,0x2b,0x5d,0xa5,0xc9,0xab,0x06,0xfe,0x8a,0x8d,0x86,0xe2,0x2c,0xfa,0x67,0xe2,0xbb,0xee,0x90, - 0x87,0xba,0x82,0x3c,0xc6,0xcc,0xe4,0x11,0x4a,0xb7,0x7d,0xe5,0xfd,0xe3,0x58,0x34,0x05,0x3d,0xe8,0x4c, - 0xd0,0x00,0xd3,0x7e,0x51,0x51,0xde,0xe6,0xf6,0x1a,0x3f,0xac,0x4c,0x2d,0x3a,0x86,0x75,0xed,0xa0,0xf8, - 0x9c,0x41,0xa3,0x0f,0x06,0x49,0xb9,0x16,0x69,0x41,0x2f,0xb1,0xcc,0xcf,0x92,0x6c,0x11,0x2e,0xd6,0x1c, - 0x19,0x28,0x18,0x95,0x86,0x6c,0x84,0x15,0xe8,0x5d,0xe5,0xd4,0xc2,0x22,0x99,0x1f,0xa6,0x1a,0x08,0x49, - 0x7c,0xc8,0x9b,0x16,0x9d,0xdb,0x50,0x60,0x36,0xa9,0xf6,0xd4,0x82,0xf1,0x41,0x59,0xc1,0x26,0x83,0x34, - 0x94,0xc6,0x9d,0xce,0xee,0xd9,0x46,0x84,0x7e,0x2c,0xd8,0x20,0xbc,0xe5,0x26,0xbe,0x79,0x4c,0xeb,0x95, - 0x95,0xb5,0x75,0x0b,0xb7,0x76,0xd9,0x3c,0x82,0xd8,0x15,0xdf,0xc0,0x26,0xe2,0x18,0x6b,0x41,0x12,0xa4, - 0xc1,0xe7,0xe9,0x1f,0x09,0xcb,0x71,0xd8,0x14,0x4a,0x41,0xa6,0x73,0x19,0x47,0x7f,0xc4,0xc0,0x13,0xce, - 0x73,0x13,0x68,0x89,0x7d,0xbc,0x92,0xb6,0x64,0xb3,0xf6,0x9e,0x81,0x09,0x8f,0xb8,0x92,0xd1,0x35,0x23, - 0xba,0x5b,0x4b,0x75,0x97,0xba,0x1a,0xeb,0xc3,0xec,0xe3,0x64,0xcb,0x0f,0x62,0x67,0xfc,0xad,0xb1,0xbe, - 0x96,0xc7,0xb0,0x4c,0xd0,0x8a,0xa2,0xd4,0x19,0x54,0x74,0xf0,0xef,0x14,0x91,0xbf,0x4e,0x32,0x9f,0x8d, - 0xa9,0xc0,0x00,0xed,0xc7,0xf6,0xbb,0x6d,0x02,0x6a,0x0d,0x40,0x59,0x0d,0xca,0xc4,0x85,0xd0,0x5e,0xa1, - 0xad,0xeb,0x20,0xae,0x5e,0xb3,0x24,0x40,0x37,0x95,0x7d,0xa8,0xf5,0x19,0x43,0xc0,0x44,0x3d,0x6a,0xa3, - 0x32,0x84,0x11,0xa4,0x84,0x01,0x02,0xc5,0x7c,0xa4,0x05,0x0a,0xf0,0x3f,0xb5,0x67,0xf1,0x94,0x58,0x2d, - 0xd0,0xf0,0x4a,0x4d,0x56,0x78,0xc0,0xc7,0x1c,0x15,0xa8,0x32,0x04,0xc3,0x0f,0x83,0x55,0x0e,0xbc,0x34, - 0x03,0xa5,0xb9,0x6d,0xc7,0x69,0xac,0x16,0x5c,0x19,0x27,0xc7,0x0f,0x6d,0xfa,0x0d,0x34,0xe1,0xa9,0x8d, - 0x7d,0x6c,0x85,0x4f,0x89,0x3c,0x84,0xdf,0x15,0x65,0xb6,0x0e,0x06,0x4b,0x66,0x2f,0xb6,0xf6,0x98,0x78, - 0x27,0x3a,0x7b,0xfa,0x34,0xa7,0x85,0xe6,0x77,0x80,0x2a,0xe0,0x34,0xa1,0xce,0x3c,0xaa,0x67,0x9a,0xfe, - 0xe2,0x87,0x79,0xe5,0x59,0x6b,0xd1,0x28,0x04,0x4f,0x4a,0x7c,0x61,0x51,0xcf,0xb0,0x8a,0xdb,0xd0,0x33, - 0x03,0xf3,0x78,0x4d,0x74,0x68,0x0d,0x5c,0xb4,0x3f,0x83,0xc6,0x3a,0xda,0xaa,0x38,0x1c,0xb9,0x78,0xff, - 0xb3,0x69,0xcf,0x33,0xa2,0xcd,0x2d,0x83,0x46,0x09,0xc2,0x80,0xd4,0x96,0x88,0x8a,0x0b,0x80,0x37,0xd2, - 0x57,0xab,0x7b,0xb5,0x64,0x76,0xdb,0xce,0x2e,0x23,0x34,0x76,0x01,0x6b,0x66,0x7b,0x82,0x3f,0x62,0x26, - 0x70,0x1c,0x90,0x96,0xb4,0x3d,0x55,0xb5,0xd1,0x88,0xe1,0xde,0xde,0x2e,0x13,0xcc,0x1d,0xc2,0x5f,0xc7, - 0xd5,0xa3,0xca,0xc0,0xd0,0x97,0x0c,0x7c,0xc3,0xbf,0xb6,0x31,0x89,0xbf,0x61,0x4f,0x38,0x8c,0x01,0xdc, - 0x42,0xed,0x59,0xa5,0x71,0x16,0x26,0x67,0x19,0x1b,0x1e,0x69,0x59,0xf1,0x15,0x5d,0x03,0xc4,0x1d,0x6b, - 0x23,0xcc,0xd8,0x84,0xae,0x6d,0x3c,0x97,0x50,0x46,0x23,0x65,0x5d,0x0f,0xf6,0x67,0xf7,0xb5,0xf4,0x1d, - 0x85,0x8b,0xba,0x51,0x66,0x02,0xcd,0x41,0x36,0xad,0x14,0x77,0x40,0x85,0xbc,0x40,0xd5,0xef,0x34,0xbf, - 0x1c,0xc5,0x61,0x1a,0x18,0x47,0xa8,0x6b,0x34,0x96,0x19,0xb9,0x39,0x3b,0xf2,0xd1,0xdf,0x51,0xf5,0xdc, - 0xc4,0xef,0xe1,0xe6,0xa1,0xdc,0x16,0x86,0x30,0xad,0x66,0xbe,0x0c,0x9f,0x91,0xee,0x3b,0x54,0x63,0x74, - 0x4e,0xe6,0x6a,0x25,0x06,0xa4,0x6e,0x7d,0x47,0x24,0x83,0x28,0xb6,0xbd,0x2c,0xf0,0x74,0x47,0x38,0xe8, - 0x74,0x85,0x57,0x11,0xdd,0x4c,0x0a,0x5d,0x7f,0x39,0x3c,0xe2,0xe7,0x47,0xe2,0x0a,0x68,0x11,0x3d,0x8d, - 0x39,0xfc,0xb9,0x91,0xd3,0x2f,0x06,0x49,0x51,0xe4,0xc4,0x42,0xa4,0x74,0x76,0xca,0x74,0xbe,0x88,0x62, - 0xb5,0xd0,0x48,0xe8,0x0a,0xda,0x1c,0xe9,0x2c,0x09,0x4b,0xa5,0xbf,0xf6,0xf3,0x6f,0xf5,0x52,0x2d,0x3a, - 0xb4,0xf9,0x3b,0x0c,0x60,0x5b,0xcf,0x01,0xda,0x87,0x02,0xe1,0x7b,0x7e,0x83,0x23,0xbe,0x90,0xb7,0x40, - 0xbf,0x49,0xf5,0x8a,0xca,0x38,0x01,0x3e,0xab,0xaa,0xa7,0x88,0x91,0x36,0x4a,0x72,0xd3,0x82,0x3e,0x5d, - 0x88,0x0c,0xbb,0xf0,0x9c,0x66,0xd8,0x4b,0x38,0xde,0x13,0x6b,0x7a,0xb8,0xc5,0x2b,0xa0,0xec,0x09,0xab, - 0x6a,0xec,0xb8,0x9d,0xb3,0xb6,0x0f,0x9a,0x23,0xea,0xa2,0x06,0xb7,0x71,0x85,0x3c,0xaa,0x27,0xba,0xbc, - 0x99,0x52,0xd7,0xd7,0xab,0x34,0x1c,0xe6,0x80,0x9d,0x31,0xf4,0x13,0xd0,0x7f,0x44,0xb0,0x89,0x27,0x8d, - 0x75,0xe0,0x7f,0x1f,0x07,0x83,0xf6,0xe2,0x05,0x2a,0xc9,0xa3,0xad,0x2d,0x78,0xb2,0x3f,0xcd,0x7c,0x3c, - 0x35,0x95,0xee,0x6f,0x98,0x18,0xe5,0x9d,0xd6,0x38,0x6c,0x32,0x64,0xad,0xee,0x80,0x7a,0xac,0x8e,0x09, - 0x6e,0xd9,0x3c,0xea,0xb0,0xac,0x32,0xc5,0x6f,0x36,0xba,0x02,0xee,0x63,0xe3,0x24,0xee,0x06,0xea,0xa4, - 0x35,0xdb,0x4f,0xa2,0x2f,0xdd,0x24,0xf3,0x61,0xa2,0x30,0xb7,0x23,0x8b,0xd6,0x42,0x8e,0xb3,0x5b,0x83, - 0x4c,0x2f,0xb7,0x39,0x9e,0xa0,0x14,0xe5,0xfe,0xe1,0xe3,0x18,0xb0,0x72,0x26,0xef,0x74,0x15,0x83,0xb0, - 0x08,0xbc,0xbf,0x09,0xc9,0x6a,0xa3,0x26,0x08,0xc1,0x90,0x43,0xac,0x60,0x5d,0x71,0x6d,0x39,0x9e,0xbb, - 0xdc,0xa1,0x14,0x4c,0x4a,0x9a,0x45,0x12,0x2e,0x96,0xeb,0xb7,0x4c,0x56,0xf3,0x65,0x59,0xf3,0x18,0xd7, - 0x73,0x92,0xae,0xb7,0xe2,0x13,0x2d,0x6b,0xbb,0x2f,0x0d,0x77,0xd2,0x95,0xf1,0x26,0x33,0xff,0xee,0x9e, - 0x61,0x99,0x65,0xe6,0xfa,0x36,0xfd,0x8f,0x18,0xac,0x64,0xa7,0x70,0x29,0xc9,0xaf,0x17,0x24,0xe5,0xaa, - 0x3a,0x1a,0x61,0xe6,0x9c,0x13,0x43,0xc2,0x21,0xd5,0x7c,0xae,0x75,0xa4,0x77,0x90,0x54,0xfa,0x04,0x40, - 0xf5,0xac,0x01,0xee,0x43,0xb3,0x5f,0x84,0x15,0xb2,0xf6,0xe9,0xb0,0x26,0xfb,0x45,0x2e,0x3a,0xb0,0x62, - 0xde,0x66,0x6c,0xd9,0x34,0xdc,0xd3,0x9c,0xe8,0xd7,0x3a,0x68,0x18,0x25,0x78,0x12,0x3f,0xcc,0x09,0x0e, - 0xcb,0xef,0xd1,0x60,0x37,0x96,0x99,0x44,0x77,0x9c,0x10,0x16,0xd3,0x99,0x82,0xe8,0x46,0xf2,0x67,0xa0, - 0x8b,0x46,0xa5,0xdf,0x19,0x66,0x56,0x6a,0x43,0x2e,0x8c,0xbf,0x83,0xf8,0x7c,0x32,0x92,0x4f,0x3a,0x94, - 0xc4,0xe7,0xbe,0x5d,0x26,0xcf,0xf7,0xbe,0xca,0x50,0x7b,0xdd,0x08,0x42,0x4d,0xc3,0x5a,0x12,0x80,0x00, - 0x04,0x69,0x68,0x43,0x87,0x56,0x90,0x31,0x77,0x8c,0x0c,0x6f,0xed,0x39,0xdb,0x2c,0xe9,0x2f,0x46,0x61, - 0xbe,0x77,0x70,0xb1,0x4c,0xb6,0x53,0xea,0xe7,0xa8,0xe7,0xf5,0xe1,0x66,0xfb,0xf6,0xed,0x5a,0x01,0xbe, - 0xd2,0xc7,0x67,0xae,0xa3,0xed,0xb2,0x11,0x10,0x4f,0x98,0xae,0xf6,0x42,0x55,0x35,0x5c,0x1c,0x74,0xa1, - 0x9d,0x29,0xe1,0xdc,0x9e,0xd7,0x9e,0x53,0x1b,0x51,0xf6,0x10,0x66,0xcf,0xc6,0x96,0x70,0x1a,0x4b,0xdd, - 0xf8,0xe0,0x22,0x0a,0xb4,0x8f,0xfa,0x96,0xf8,0x83,0xc4,0x01,0x82,0xc0,0x2a,0x0b,0x64,0x9f,0x3e,0xcd, - 0x50,0xe3,0x4b,0xf9,0x8f,0x39,0x0b,0x2c,0x98,0x30,0x9c,0x65,0xc9,0x06,0xe9,0x44,0xd6,0xd6,0x15,0x5a, - 0x39,0x71,0x94,0xb2,0xa9,0x61,0xd8,0x3a,0xfe,0x09,0x87,0x9a,0x87,0xc3,0x64,0x14,0x0b,0xef,0x3a,0x0d, - 0xb2,0x48,0xf0,0xda,0xe2,0xca,0x47,0x9f,0x7b,0x5d,0x7d,0x52,0x22,0xf0,0x48,0x1a,0xc9,0xa7,0xba,0x22, - 0x8a,0x25,0xa6,0xcb,0xae,0x10,0xfb,0xa4,0x45,0x98,0x3a,0xde,0x40,0xe3,0xca,0x88,0x1b,0x3b,0xa2,0x3b, - 0xb5,0x30,0x90,0xd4,0x54,0xb2,0x8c,0x6c,0x4e,0xab,0x2f,0xac,0x1c,0x9b,0xc8,0x83,0x0d,0x76,0xae,0x49, - 0x84,0x40,0x85,0x83,0xf8,0x18,0x62,0x6c,0x85,0x39,0x96,0x23,0xb8,0xf2,0x0e,0x46,0xd9,0xa3,0xbd,0xd1, - 0x5e,0xb8,0x1b,0xee,0x85,0xc9,0x88,0xcb,0x9c,0xa7,0xa8,0x7a,0x37,0x08,0x77,0x4d,0x38,0x55,0xf8,0xdd, - 0xd2,0xef,0x43,0x47,0xa3,0x8c,0xa5,0x40,0xcc,0x69,0x85,0xce,0xde,0xe6,0x0e,0x14,0x30,0x6b,0xca,0x61, - 0xbf,0x9b,0x5c,0x6a,0xcd,0xed,0xfb,0xc2,0x15,0x3a,0x39,0xa0,0xa0,0x0c,0x55,0x25,0xe4,0xd4,0x1e,0x62, - 0xf0,0x34,0xc1,0x24,0x35,0xf4,0x7a,0x2c,0xe1,0x78,0xf0,0xd8,0x60,0xa2,0x95,0xc4,0xc6,0x2d,0x45,0x64, - 0x63,0x6a,0xe8,0x27,0x09,0x74,0xc6,0x94,0x4d,0x1c,0x8c,0x09,0xe3,0xcc,0xa2,0x5c,0x9d,0x08,0x50,0xc3, - 0x4f,0x23,0x7b,0x1f,0x8d,0x41,0xca,0x8c,0x98,0xaa,0x59,0x30,0x71,0xa3,0x38,0x25,0xe4,0x14,0xfe,0xd4, - 0xb4,0xbe,0xb2,0x20,0x58,0xd4,0x43,0x14,0x30,0x71,0xb8,0x64,0x07,0xdb,0x70,0xf2,0xac,0xdd,0xc1,0xd9, - 0x22,0xb3,0xca,0xbd,0xef,0x92,0xd5,0x7d,0x21,0xf2,0xeb,0x90,0x79,0x94,0xc6,0xd5,0x59,0x65,0xc1,0xf8, - 0x4e,0x20,0x88,0xbd,0xa2,0xdd,0xc2,0xc9,0x1f,0x48,0xc2,0x5a,0xb7,0xe3,0x60,0x13,0x7e,0xc0,0x86,0xa4, - 0x04,0xf7,0x5a,0x65,0x6a,0xae,0x39,0x2a,0x9f,0x1d,0x43,0xc2,0x53,0x20,0x5f,0x9a,0x29,0x51,0xea,0xb1, - 0x29,0x04,0x51,0x22,0x9e,0xde,0x85,0x1c,0xca,0x82,0xca,0x3b,0x0f,0x95,0x2e,0x8b,0x8f,0x7a,0x45,0x9b, - 0xf1,0x93,0x88,0x0a,0xaa,0x27,0x49,0xdb,0x44,0x22,0x2e,0x2c,0xec,0x1a,0x75,0x85,0xc8,0xbe,0xa8,0x43, - 0x4a,0x28,0x2c,0xa7,0x5d,0x02,0x37,0x1a,0x31,0x38,0xa8,0x82,0x23,0x33,0x4b,0x63,0xab,0xd5,0xa2,0x62, - 0x6d,0x45,0x65,0xc2,0xe5,0x5f,0x33,0xf8,0xfa,0x71,0x13,0x2a,0x32,0x74,0x5c,0xf5,0x3d,0xb3,0x7d,0x8f, - 0x5b,0x7d,0x3b,0x3d,0x03,0xce,0x8d,0x2b,0xb8,0x35,0xeb,0x3e,0x55,0x6a,0x70,0xc4,0x3d,0xaf,0x89,0x0a, - 0x17,0xd3,0x91,0xcc,0xfa,0x26,0x03,0xd7,0x5e,0x69,0x46,0x98,0xcd,0x58,0xba,0xec,0x42,0xd6,0xdc,0xd5, - 0x62,0xb4,0x45,0x84,0x05,0xef,0x26,0xc4,0xde,0xbe,0x97,0xe5,0x25,0xdd,0x54,0xe9,0xa2,0xec,0xe9,0x6b, - 0xa4,0x97,0x6a,0x4f,0x3f,0x00,0x5c,0x4a,0xb3,0xbf,0x3d,0xa8,0x1c,0xb3,0x87,0xe9,0x7a,0xa5,0x7a,0x05, - 0xd0,0x05,0x3d,0xdd,0xa9,0xd4,0x70,0x03,0x4b,0x94,0x02,0x89,0x72,0x92,0x5a,0xe4,0x20,0x32,0x6d,0x20, - 0xc3,0x26,0x1e,0x1c,0x95,0x51,0x82,0xa0,0x25,0x7c,0x6e,0x58,0xfe,0x50,0x9e,0x2a,0x68,0xa0,0x0b,0x50, - 0xf2,0xc3,0x30,0x9d,0x5b,0xa2,0x01,0xae,0x90,0x45,0x44,0xbe,0x45,0x80,0x48,0x06,0xfa,0x23,0x6a,0x5b, - 0xa4,0xff,0x44,0x1b,0xc4,0xd2,0x00,0xf1,0x07,0xa6,0x01,0x3a,0xa2,0xdc,0x80,0xd9,0xfa,0xd5,0x6a,0xcc, - 0x91,0x65,0x4c,0xd4,0x96,0xd4,0xae,0x65,0x39,0x78,0x77,0x51,0x6a,0x19,0xaa,0x09,0x89,0xe7,0x2f,0x69, - 0xa7,0x79,0x5d,0x83,0x41,0xa9,0x03,0x98,0x2c,0x15,0x1d,0x60,0xc3,0x45,0xb5,0x0f,0x5d,0xe1,0xd0,0xf0, - 0xec,0x65,0xd5,0x46,0x8e,0xa7,0x29,0x36,0xe3,0x82,0xc0,0xb7,0x7c,0x09,0x0c,0xaf,0x8b,0x95,0x2c,0x84, - 0x22,0x5a,0x28,0x60,0x12,0xcc,0x9c,0xd5,0x59,0xed,0xa4,0x8a,0xa5,0x94,0x26,0x12,0x7d,0xcf,0x04,0xe8, - 0xed,0xfd,0x27,0xe6,0xfe,0x9f,0xd8,0xaf,0x8b,0xed,0xb2,0x57,0xc5,0xcd,0xd6,0xe2,0x71,0xbd,0xc3,0x8b, - 0xe5,0x1c,0x64,0x49,0x4f,0xcc,0x74,0xc4,0x52,0xad,0x16,0xd0,0x83,0x8f,0x7c,0x75,0xf3,0x0a,0x8f,0x87, - 0x2f,0x7d,0x6a,0x3c,0xda,0x38,0xcf,0x6a,0x21,0x82,0xda,0x85,0xa6,0x23,0x53,0xbc,0x43,0x51,0xcc,0xc3, - 0x11,0x80,0x0e,0x60,0xef,0xeb,0xbd,0x50,0xfe,0xde,0x93,0xbf,0xf7,0xbf,0x94,0xbf,0xf7,0xee,0xeb,0xbf, - 0x5f,0xeb,0xf4,0xaf,0x42,0x1b,0x80,0x4c,0x2a,0x3c,0xd0,0x05,0x74,0x85,0xfb,0x0f,0x42,0xa3,0x5e,0x3c, - 0x81,0xaa,0xbb,0x94,0xba,0x77,0x57,0x37,0x2f,0x7f,0xf6,0x76,0xf5,0x5f,0xdd,0xdb,0xde,0x97,0x3a,0xe1, - 0xcb,0x07,0x77,0xff,0xae,0xcb,0x7c,0x75,0xd7,0x54,0xa2,0xaf,0x7b,0xa6,0xd1,0xcb,0x85,0x67,0x1f,0xfe, - 0x1e,0x45,0x5f,0xff,0x9d,0x58,0x96,0x87,0xd1,0xde,0xdd,0xbb,0xab,0x15,0xfd,0xfc,0xf2,0x01,0xff,0xfc, - 0x7a,0x77,0xa4,0x3b,0x0f,0x29,0xf1,0xfe,0xd7,0x9c,0xf8,0xe0,0xef,0x23,0x4f,0x0c,0x21,0xbc,0xd0,0xe3, - 0x67,0x9f,0x8e,0x80,0x24,0x58,0x26,0xb9,0xeb,0x34,0x5c,0xf8,0xde,0xae,0xb7,0xe5,0x04,0x2f,0xde,0x85, - 0x0c,0x2d,0x5d,0xbc,0x8c,0x5f,0x4a,0x50,0x36,0x42,0xb8,0xa5,0xfa,0xd6,0x44,0xab,0xeb,0x7c,0x73,0xab, - 0x2f,0xbb,0x19,0xbb,0x6d,0x54,0x67,0x59,0x65,0x9e,0x3d,0xea,0xe1,0xde,0x7d,0x88,0x75,0x6e,0xdf,0xbe, - 0xf7,0x35,0xfe,0x8e,0xf0,0xd6,0xa6,0x55,0x82,0x14,0xe5,0x83,0x15,0x0c,0xbd,0x2f,0xbc,0x7e,0x69,0x02, - 0xa0,0x8b,0x7f,0xab,0x0b,0x83,0x0b,0x2b,0xae,0xcc,0xf8,0xde,0x80,0xa6,0xc2,0x81,0x90,0x7d,0x3d,0xed, - 0x29,0xcf,0x53,0x27,0xed,0xf2,0xa7,0xf1,0xe2,0xd5,0x65,0x66,0x02,0xed,0xa9,0x8f,0x51,0x17,0x81,0xfa, - 0x3c,0x2b,0x67,0x4e,0xb0,0x30,0xfc,0x1c,0x3c,0x43,0x64,0x9b,0xf4,0x3c,0x21,0xe6,0xe1,0x3c,0x2e,0xd5, - 0xf1,0x27,0x57,0x14,0x2f,0x7e,0xba,0xda,0xbb,0xe8,0x4a,0x1c,0x6b,0x3c,0x6d,0x04,0xa9,0xac,0xf9,0x34, - 0x72,0x19,0xc0,0x64,0x80,0xd3,0x16,0xc9,0x1f,0x7e,0x47,0x7c,0xf7,0x0e,0x9f,0xa3,0xab,0x75,0x68,0x22, - 0x12,0x31,0x4e,0xb8,0xb2,0x85,0x2d,0xba,0xa4,0x11,0xbd,0xd0,0xe9,0x52,0x29,0x30,0xd7,0x1d,0x02,0x2d, - 0x0e,0x4d,0x6a,0xa7,0xd3,0x9b,0x92,0xa8,0x85,0x52,0x39,0x84,0x4f,0xc2,0xc6,0x04,0xee,0x65,0x54,0x76, - 0x44,0x60,0x94,0x90,0xa6,0x68,0x94,0x7d,0x07,0xff,0xc4,0x48,0xe2,0x45,0xb2,0x58,0xc4,0x27,0xb8,0xc3, - 0x4b,0xb9,0xfb,0xf4,0xf5,0x43,0xdd,0x88,0xc7,0xa9,0x77,0xce,0x1c,0x55,0x95,0xf2,0x2b,0x4a,0x25,0xda, - 0x23,0x98,0x0c,0xf5,0x12,0x49,0xb8,0x44,0xa0,0xa9,0xec,0x07,0x4e,0x61,0xd6,0x91,0x18,0x17,0xe9,0x71, - 0x82,0xac,0xa7,0x30,0xf5,0x61,0x3d,0x49,0x66,0xda,0xa4,0x98,0x29,0x21,0xce,0xe0,0xd6,0x55,0x3c,0x0e, - 0xbd,0x84,0x22,0x0b,0xe7,0x1d,0x28,0xf2,0xbc,0x34,0x41,0xee,0xf1,0x2d,0x48,0xaf,0x9d,0x52,0x5b,0x6b, - 0x7e,0x3e,0xe5,0xb1,0xa0,0x40,0xd4,0x2c,0xab,0x77,0x6a,0x30,0x25,0xfa,0xec,0x98,0x18,0x19,0x59,0x9c, - 0x56,0xb1,0x46,0xbe,0xa9,0xb5,0x20,0xc6,0x30,0x13,0xfd,0xd3,0x19,0x1b,0x29,0xfc,0x0a,0x41,0x5c,0xab, - 0x72,0x67,0x31,0x76,0xd4,0x5b,0x87,0x80,0xe2,0x46,0x08,0x28,0x40,0x2f,0xb6,0x21,0xc0,0x6e,0x2f,0xef, - 0xe9,0x22,0x2a,0xba,0x37,0x13,0x0f,0xec,0x2f,0xcc,0xc2,0xfe,0xb7,0xed,0xa9,0x72,0x2e,0x0b,0xbd,0x6c, - 0x1f,0x33,0x7e,0xe6,0xb3,0x3f,0xf8,0x76,0x17,0xbf,0x80,0xbc,0xbe,0xb5,0x01,0xdd,0xaa,0x06,0x24,0xab, - 0xef,0x1b,0xcb,0xbc,0xde,0x5f,0x80,0x8b,0x91,0xef,0x2c,0x4c,0x0b,0x2a,0xfe,0xc2,0x74,0xc1,0x9b,0xcb, - 0x2b,0x09,0x1e,0x59,0x75,0x80,0x05,0x3d,0xa2,0xfa,0xef,0x26,0x9c,0xd6,0x8e,0x9d,0x5b,0xf0,0x2f,0x0d, - 0xc7,0xf8,0x81,0x7b,0xd6,0x0c,0x53,0x6b,0x1c,0xc1,0xc9,0xd0,0xfc,0x56,0xe5,0xda,0x88,0x06,0xcb,0xec, - 0xba,0x9e,0xb5,0xe0,0xb3,0xd5,0x46,0x07,0x94,0xd5,0x9a,0xd5,0x69,0x7e,0xa3,0x05,0x27,0xcb,0xb4,0x50, - 0x03,0x8c,0x6e,0x70,0x69,0xb6,0x52,0xcb,0x74,0x47,0x22,0x61,0xe3,0xd6,0x6b,0x75,0x69,0xbc,0xb6,0x22, - 0xb5,0xf2,0xe6,0x18,0xcf,0x60,0xe8,0x2d,0x8e,0x15,0x59,0xeb,0xed,0xca,0xf5,0x64,0xab,0xb5,0x02,0x42, - 0x71,0x99,0xb8,0xe6,0x88,0xe4,0xf5,0x12,0x86,0xe2,0xc2,0xc3,0xa1,0xa1,0x47,0xdd,0x02,0x6b,0xc5,0xaf, - 0xe1,0x0b,0x9d,0x78,0xc0,0xd4,0x9e,0x75,0x26,0xbb,0x6e,0x79,0x72,0xac,0x91,0xf6,0x3c,0x2c,0xc8,0x27, - 0x24,0x7c,0x06,0xa2,0xc8,0x5a,0x6b,0xb3,0x1c,0xf9,0x0e,0xe0,0x48,0x3c,0x0d,0x3f,0x16,0xc1,0xfe,0x8d, - 0xae,0x63,0x75,0x58,0xb8,0x48,0xfe,0xd8,0xf0,0xbb,0x44,0xcf,0x3b,0x8e,0x5c,0x45,0x00,0x5f,0x08,0x21, - 0x8d,0x68,0x1e,0x9a,0x90,0x9e,0x41,0x40,0xbd,0x44,0x06,0xcf,0x8d,0x0d,0x42,0xa7,0x0d,0x76,0x6d,0x19, - 0x8c,0x96,0x26,0xe8,0xef,0x6e,0xe8,0xde,0x5b,0xcb,0xc0,0xa6,0xb3,0x06,0x76,0x83,0x67,0x72,0xfd,0xf1, - 0xe1,0x18,0x55,0x01,0xcc,0x2b,0x92,0xc7,0x09,0x6a,0xce,0x43,0x30,0x54,0x4f,0x15,0xf7,0xfc,0xf6,0x6d, - 0x8f,0x1f,0x13,0xd7,0xeb,0x4a,0xa4,0x7f,0xfb,0x76,0x6c,0x7b,0x26,0xa6,0x74,0x42,0xad,0xfb,0xde,0xf3, - 0x69,0x4f,0x66,0xd1,0xc3,0x6a,0xf7,0xd2,0x45,0x0f,0x4e,0x66,0x7a,0x74,0x07,0xf4,0x78,0xad,0x7b,0x89, - 0x88,0x4c,0x17,0x3d,0x98,0x3f,0xf4,0x4e,0xe3,0x8b,0x44,0x2a,0x48,0x79,0x2a,0x3c,0x20,0x2e,0xa8,0x63, - 0xee,0x6d,0x9c,0x0e,0xb6,0x60,0x46,0x0c,0x20,0x9c,0x87,0x36,0x57,0xa4,0xeb,0x06,0x98,0xc1,0xf3,0xd9, - 0x92,0xfe,0x81,0x8a,0xe5,0x86,0xf6,0x84,0xb7,0x9f,0x8c,0x3c,0x98,0x4f,0x35,0x97,0x25,0xa4,0xd4,0x72, - 0x38,0x83,0xf0,0x0b,0xe2,0x4c,0xed,0xf5,0x5f,0xa5,0x2a,0x1f,0xa4,0xbe,0xc4,0x9e,0xc0,0xd1,0xd8,0x8f, - 0x5a,0x88,0x62,0x4c,0x3d,0xd1,0xe5,0xd2,0xf1,0x40,0xb2,0x1e,0xee,0x3b,0xf4,0x5c,0x0a,0xbb,0xc1,0x79, - 0x0e,0x79,0xb8,0x2b,0x27,0xaa,0xdc,0x21,0x38,0xad,0xc1,0xb5,0x9c,0x61,0x52,0xa1,0x85,0x77,0xad,0x46, - 0x1f,0x31,0x7e,0x9e,0xe7,0xaa,0xf5,0x19,0x79,0x73,0x72,0x90,0xf5,0xfb,0x2c,0x9f,0xf1,0xae,0xb4,0xff, - 0xd7,0x02,0xcf,0x0a,0xce,0xb3,0x3e,0xab,0xa7,0x78,0x5a,0x57,0xac,0xc0,0x33,0x03,0xda,0x12,0x96,0x94, - 0x3e,0xc4,0xc6,0x42,0xb7,0xe3,0xad,0x59,0x87,0x65,0x18,0xc4,0xfd,0x28,0x55,0x36,0x59,0x64,0x12,0x67, - 0x42,0x77,0xc7,0xc1,0xc8,0x63,0x67,0xa3,0xe1,0xd3,0x2a,0x01,0xc8,0x64,0x42,0x94,0xfe,0x52,0x9c,0xd2, - 0x79,0x43,0x33,0x04,0xe9,0x36,0x16,0x8f,0xd8,0xf9,0x5a,0xb4,0xe4,0xbd,0xff,0xc1,0x63,0x1d,0xd1,0x98, - 0x41,0x98,0xd3,0x8e,0x40,0xe4,0x47,0x5d,0x06,0x21,0xfe,0xb5,0x62,0xe9,0x9b,0x66,0x52,0xae,0x99,0x7d, - 0xac,0xaf,0x6a,0x54,0xd4,0x44,0xd5,0x59,0xc5,0x7c,0x2a,0x09,0x3e,0xdd,0x94,0xad,0x98,0xe9,0x30,0x4b, - 0xd1,0x9e,0x09,0xd6,0xd6,0xfc,0x60,0xdb,0x70,0x33,0x3a,0x5e,0xba,0x61,0xda,0xdc,0x94,0x9c,0x26,0x94, - 0x1e,0x19,0x86,0x2f,0xd7,0xef,0xd2,0xe0,0xac,0x64,0xfc,0xa1,0xe6,0x68,0xb5,0x17,0x08,0xad,0xf5,0xca, - 0x7c,0x9b,0x1e,0x88,0x2e,0x90,0x1d,0x30,0xa5,0x43,0x74,0xbb,0x29,0xab,0xf6,0x76,0x83,0xa3,0x5a,0x05, - 0x33,0x5a,0xf9,0x2b,0x6a,0xe1,0xb6,0xba,0xae,0x45,0x34,0x6e,0xda,0xef,0xdb,0x45,0x5d,0x73,0xb8,0xbb, - 0x35,0x6f,0xea,0x59,0xb4,0xf3,0x2f,0xff,0x70,0x12,0xf4,0x77,0xd4,0x53,0xfe,0xbc,0xc4,0xe7,0x1b,0x5a, - 0xa6,0x0f,0xd1,0x9e,0x7a,0x1c,0xdd,0x55,0xb7,0xa2,0x7b,0xea,0x15,0xfd,0xfe,0x26,0xba,0xaf,0x9e,0x45, - 0x0f,0xd4,0xeb,0xe8,0x4b,0xf5,0x3e,0xfa,0xbb,0x7a,0x1e,0x7d,0xa5,0x7e,0x02,0x43,0xff,0xd3,0xc1,0xab, - 0xa3,0xe8,0xea,0x72,0x11,0xd2,0x5f,0xc5,0x6c,0x60,0x78,0x70,0x4f,0xbd,0x39,0x52,0xde,0x81,0x17,0x1e, - 0x7c,0x73,0xa4,0xe8,0x92,0x0f,0x0f,0xde,0x1f,0xad,0xd5,0x4f,0x07,0x7b,0xba,0xe4,0x1e,0xe5,0x0e,0x28, - 0xf7,0x6e,0x67,0xa9,0xbb,0xba,0xd4,0xdd,0x7a,0x7b,0xbb,0xfa,0xaf,0x70,0x95,0xf2,0x03,0xc5,0xef,0x51, - 0xf1,0x9b,0xca,0x29,0xee,0x55,0x7d,0x30,0xfd,0xf2,0x17,0xf7,0x8c,0x2f,0xe9,0x9b,0xbe,0xd0,0xdc,0x37, - 0xd4,0x9c,0x77,0x87,0xb2,0x9e,0xa1,0xde,0x1d,0xef,0x4e,0x78,0xf0,0xba,0x9a,0x8e,0x7a,0x4c,0x5f,0x47, - 0x1e,0x1a,0xbb,0x25,0x15,0x9f,0xb3,0x3d,0x1f,0xb2,0x64,0x38,0xcf,0x4c,0x7d,0x24,0xd4,0x4a,0x3c,0xd3, - 0x25,0x5e,0x53,0x09,0x6e,0xb7,0x55,0x02,0x1d,0xc9,0xc6,0x7c,0xcb,0x36,0xcf,0x44,0xaa,0x15,0xcb,0x64, - 0xc5,0xb6,0x9c,0xab,0xed,0xd1,0xc1,0xe1,0x64,0x70,0xd4,0x5f,0xdd,0x61,0x1f,0x58,0x77,0x56,0x1e,0xbb, - 0xc5,0xf2,0x02,0x2a,0x77,0x6b,0x47,0xbd,0xdc,0x80,0xb6,0xba,0xb1,0xd6,0x4b,0x07,0x6b,0x31,0x94,0xbd, - 0xa6,0x4b,0xad,0x2d,0xa1,0x72,0x31,0x96,0x83,0xb0,0x4a,0xe8,0x67,0x74,0xc8,0xb3,0x4c,0xd8,0xbb,0x1c, - 0xa1,0x7c,0x70,0xe0,0x66,0xd1,0xf6,0x1e,0x5d,0x8d,0xaf,0x38,0xee,0xdd,0x29,0xc0,0x05,0x67,0xe6,0xf4, - 0xe0,0xc3,0x51,0xcd,0xb8,0xc3,0xdc,0x53,0x19,0xeb,0xf2,0x08,0xf4,0xc2,0x45,0xa1,0x64,0xc0,0x56,0xff, - 0xe0,0x4d,0x47,0x0d,0x48,0x6a,0x47,0x59,0x54,0x84,0x59,0x9f,0x08,0x7f,0x2a,0xf4,0xb8,0x56,0x08,0x95, - 0x88,0x32,0x9a,0x12,0xec,0x53,0xde,0xad,0x5a,0x1e,0x34,0x22,0x1f,0xed,0x06,0xd3,0xed,0x6d,0x1a,0xde, - 0x37,0x4a,0x8a,0xda,0xb7,0x48,0x8c,0x76,0x0b,0x4f,0x1f,0x7e,0x16,0xcd,0xd9,0x65,0x9e,0x15,0x8b,0x62, - 0xec,0x50,0xc7,0x1c,0x6a,0x19,0xf8,0x92,0x1d,0xc6,0xcf,0xfa,0x7d,0xf8,0x4f,0x64,0x65,0x21,0xf8,0x5c, - 0x9c,0xe1,0xc5,0x62,0xab,0xc1,0x4f,0x73,0x46,0x7f,0x8f,0xb1,0xf5,0x92,0x1a,0x7f,0x46,0xb7,0xf2,0x1d, - 0x56,0xeb,0x5a,0xad,0xf0,0xfb,0xf5,0xed,0xdb,0x04,0x16,0xf8,0x6d,0x7d,0x77,0x53,0xb3,0x84,0xad,0xa9, - 0xe1,0x7e,0xa9,0xc7,0x88,0x08,0xcb,0x7e,0xa0,0xad,0xb8,0x26,0x10,0x8b,0x81,0xce,0x59,0x44,0x3f,0x1d, - 0x2c,0x8f,0x02,0xc2,0x3b,0xab,0xd5,0x82,0x15,0x41,0x57,0xab,0xe7,0x90,0x2d,0x3f,0x37,0x5a,0x41,0xdc, - 0x27,0xec,0x58,0x94,0x9f,0x47,0xa7,0x07,0x31,0x9d,0xc1,0x23,0x79,0x87,0x8d,0x71,0xd0,0x8a,0xc8,0x2e, - 0x69,0x31,0x2a,0xc3,0x42,0xa6,0x9f,0xfb,0x76,0xea,0x66,0xd0,0xef,0xad,0x73,0x54,0x51,0x76,0xb3,0x04, - 0xa9,0x81,0x91,0x08,0xfe,0x87,0x41,0x76,0xad,0x95,0x0b,0x64,0x27,0x49,0x09,0x10,0x63,0x41,0x6e,0xe3, - 0x6e,0x84,0x8c,0xbc,0xac,0x1c,0xb4,0x56,0x8f,0x30,0xc6,0xfb,0xb6,0x81,0x4f,0x78,0xac,0xe5,0x79,0x17, - 0x0d,0x0a,0x03,0xe1,0xdd,0x30,0x74,0xe3,0x4e,0xbb,0xd6,0x92,0x63,0xed,0x53,0x99,0x9a,0x11,0x92,0xd6, - 0x2e,0xb8,0xe3,0xa1,0x71,0xbc,0x9d,0x1f,0x14,0x07,0x8b,0x23,0xe7,0xb1,0x03,0xca,0x66,0xc1,0x95,0xb8, - 0xa1,0xd2,0xb6,0x09,0x79,0x34,0x56,0x8b,0x0a,0x99,0xe6,0x72,0x5a,0x5f,0x6c,0x38,0x39,0xc3,0x8a,0xff, - 0x03,0x37,0x0e,0x6d,0x59,0xfb,0xba,0x24,0xc4,0xe3,0x6a,0xe5,0x25,0xd9,0xf6,0x2f,0x6f,0x3c,0x96,0xe7, - 0xd6,0x79,0xed,0x2a,0x8f,0x2d,0x92,0x34,0x8b,0xcb,0xe4,0xa5,0x0e,0x63,0xee,0xc8,0x80,0x24,0x1d,0x56, - 0x94,0x99,0x23,0xe2,0xe1,0xd4,0xa1,0x76,0x65,0x7d,0x2e,0x0f,0x7c,0xf2,0x6b,0xca,0xf9,0x44,0xae,0x44, - 0xac,0xc0,0x26,0xdf,0xab,0x15,0x18,0xe5,0x7d,0x5d,0xe4,0x3c,0x5d,0xc0,0x15,0x08,0xfa,0x96,0x2f,0x11, - 0x78,0x1a,0xef,0xd2,0x10,0x2a,0x24,0x2c,0x5b,0xa8,0xa5,0x83,0xab,0x8d,0x1c,0xbe,0x57,0x58,0xde,0xad, - 0x2d,0xf9,0x32,0xbd,0xeb,0x89,0xb2,0x3e,0x94,0x53,0xd8,0x4d,0x97,0x4a,0x6e,0x8a,0xe9,0xa1,0x53,0xf6, - 0x60,0x91,0x48,0xd2,0x2d,0x75,0x20,0x12,0x77,0x6b,0x43,0x96,0x6e,0xb7,0xbe,0xa0,0x78,0x79,0x07,0x61, - 0x2f,0x79,0xee,0xa2,0xd6,0x73,0xc0,0x0d,0xb0,0x7c,0xe1,0x65,0xd5,0x4c,0x5c,0xb9,0x0b,0x20,0x24,0x28, - 0xc9,0xfc,0x7e,0xd0,0x80,0x7c,0x8d,0x55,0xfc,0x2d,0xa8,0x33,0x66,0xab,0x55,0xe1,0x97,0xd2,0x60,0xed, - 0xb8,0x48,0x38,0x6d,0x63,0x94,0xfe,0x0e,0x4e,0x63,0xdf,0xbe,0xf0,0xcd,0x7b,0x67,0xa6,0xea,0x50,0x13, - 0xc2,0x7d,0xa3,0x80,0x0a,0x91,0x5d,0x0d,0x20,0x09,0x73,0x55,0x03,0x8f,0x70,0x41,0x14,0x99,0xfa,0x39, - 0xba,0xba,0x38,0x0f,0xaf,0xd6,0x55,0x45,0xfa,0x6e,0xd6,0xa4,0xa4,0x7a,0xd5,0xab,0x8a,0xc3,0x5b,0x37, - 0xc7,0x80,0xb6,0x04,0x66,0x38,0xd3,0x2c,0x1b,0x7e,0x74,0xee,0x00,0x65,0xac,0xcd,0xe5,0xf2,0xc2,0x75, - 0x3d,0x2c,0x93,0xed,0x38,0x5e,0xa7,0xc6,0x17,0xb4,0xb4,0x37,0x6c,0xfc,0x86,0xf4,0xa5,0x02,0x7b,0xda, - 0x1d,0xa2,0x21,0xb1,0x31,0x50,0x8d,0x55,0xcd,0xb2,0xe5,0x5a,0xb9,0x9d,0x76,0xb2,0xfb,0x6d,0x5f,0x08, - 0xf5,0x8d,0xae,0xd4,0xcd,0xdc,0xa6,0x36,0xc8,0x0e,0x6a,0x8d,0x35,0x0c,0x07,0x98,0xdb,0x73,0x43,0x98, - 0x64,0x8e,0xad,0x66,0xc9,0x08,0x30,0x7b,0xb4,0xbd,0x17,0xc8,0xfb,0xf4,0x18,0x72,0x4c,0x28,0x48,0xfa, - 0x1d,0x63,0x52,0xcd,0xe1,0xd4,0x64,0x5b,0x4d,0xf3,0x4a,0x91,0xfd,0xd5,0x5c,0x82,0xd3,0xe2,0x0d,0x6e, - 0x71,0x25,0xdf,0xbb,0x85,0xa6,0x6b,0x21,0x2a,0x5c,0x83,0x86,0xc6,0x62,0xb8,0xf6,0x0d,0xa7,0x9d,0x4e, - 0x91,0x9b,0x55,0x88,0x11,0x64,0x27,0xe8,0xcd,0xc4,0x56,0xe0,0x8b,0xb5,0xba,0x9a,0x24,0xc9,0x5c,0x54, - 0x93,0xdb,0xb3,0xd3,0x62,0xcc,0xfa,0x55,0xbf,0x55,0xa1,0x26,0x3a,0x68,0x15,0xfe,0x6a,0xdd,0x38,0x89, - 0x89,0x65,0x72,0x5e,0x5f,0x07,0x16,0x90,0x39,0x8b,0x21,0x80,0xef,0xac,0x06,0x7b,0xf6,0xb8,0x45,0xec, - 0x2f,0xac,0x58,0x4c,0x2e,0xfb,0xe5,0x6f,0x8c,0x5f,0x5d,0xa5,0xe7,0x44,0xaa,0xa7,0x90,0xb7,0xcb,0x14, - 0x7e,0x46,0xc3,0x74,0xde,0xdd,0x31,0x37,0x36,0x01,0x85,0xcc,0xd9,0xdc,0x50,0x34,0xd7,0x00,0x40,0xb9, - 0x5a,0xc0,0xbd,0x60,0x0f,0xe0,0x3f,0x37,0xef,0x89,0x9b,0xeb,0xd7,0x1f,0x17,0x4c,0x33,0xb5,0xc3,0x7f, - 0x73,0x23,0xee,0x43,0x83,0x69,0x42,0xd6,0xe5,0x86,0xb9,0x9a,0x47,0xf7,0xaa,0xfc,0x22,0x29,0x3b,0x4e, - 0x1f,0x76,0x03,0xeb,0x6d,0x7e,0x55,0xcb,0x9e,0x70,0x67,0x75,0x8c,0x74,0x53,0xa7,0xf5,0xd2,0x1d,0xf5, - 0x3f,0x75,0x10,0xf5,0x6a,0x66,0x30,0x1a,0x19,0x5e,0x3b,0x0a,0x5d,0xc6,0x2d,0xde,0xdd,0xa9,0xbd,0x97, - 0x79,0x98,0x06,0xb7,0x5e,0xdb,0xb6,0x2d,0x55,0xaf,0xd2,0xdd,0xbe,0x43,0x1a,0xa0,0x78,0x27,0xc2,0xbe, - 0xb6,0xb7,0xce,0x1a,0x9b,0x9b,0xea,0x1e,0x45,0xf7,0x2d,0x9f,0xd4,0x8f,0xbc,0x0b,0xee,0xd7,0x6d,0xaf, - 0x39,0x3c,0xed,0xda,0x0d,0x60,0xbf,0xae,0x91,0xc6,0x41,0x6a,0xb7,0x55,0x83,0xf9,0xeb,0x5a,0xaa,0x9d, - 0xa5,0x46,0x3b,0x50,0x2e,0xd3,0x5e,0x9d,0x6a,0xba,0x46,0xc4,0x5c,0xa5,0xb6,0x25,0x18,0x78,0x6b,0x39, - 0xbe,0x86,0x06,0x2d,0xf4,0x37,0x90,0x23,0x0f,0xf2,0x4c,0x96,0x1d,0xa0,0x72,0x7a,0x04,0xc3,0x8d,0x30, - 0x6b,0x74,0x96,0x2e,0xbe,0x75,0x29,0xb1,0x0e,0x97,0x38,0x09,0x22,0x36,0xfa,0x0e,0xca,0xd4,0x1d,0xd5, - 0x48,0xb8,0x66,0xab,0xdd,0x62,0xb0,0xd2,0xf0,0x86,0x1a,0x27,0xb7,0xb0,0xef,0x38,0xaa,0x48,0xaa,0x3a, - 0x05,0x54,0xea,0xb8,0xbb,0x75,0xb2,0x7f,0x6c,0x59,0x86,0xb1,0x18,0x0c,0xb1,0x2a,0xa6,0x89,0x48,0xbc, - 0xc5,0x0a,0x04,0x6e,0x1f,0x8e,0x76,0xaa,0x79,0x24,0x45,0xa4,0x70,0xe2,0x9a,0x6a,0xe5,0xd6,0x86,0x0d, - 0x6c,0xe9,0x89,0x8d,0x6b,0xcd,0xcd,0xa2,0xb1,0xe1,0x03,0x66,0x95,0xf5,0xf4,0x3f,0x42,0x2f,0x60,0x2f, - 0x25,0xbe,0x09,0x8c,0x05,0x87,0xe3,0x3c,0xfd,0x99,0x9e,0x3e,0xcc,0x45,0x4d,0x88,0x16,0x8e,0x50,0x30, - 0xe3,0xe4,0x70,0xd6,0x58,0x47,0x54,0x6c,0xc2,0x80,0x1b,0x52,0x3a,0xca,0x14,0x74,0x9c,0xc5,0x57,0xc1, - 0x8e,0xff,0x8f,0xf0,0xe0,0xf0,0xf2,0x70,0xfb,0xdd,0x6a,0x70,0xd4,0x0f,0x76,0x4e,0x2a,0x6d,0xf3,0x31, - 0x34,0x1f,0x16,0xe0,0x53,0x17,0x8d,0x27,0x67,0x5e,0x2b,0x51,0xf7,0x58,0x1c,0x8c,0x11,0xef,0x67,0xa6, - 0xad,0xbb,0xfd,0xbb,0xc4,0x39,0x9b,0x77,0xb1,0x6a,0x3f,0x79,0x14,0x4b,0x1a,0x85,0x57,0xc4,0x97,0x5a, - 0x88,0xa7,0x57,0x89,0x08,0xcf,0x2a,0x51,0xa8,0xf1,0x50,0xfb,0x69,0x90,0x56,0x6a,0xb0,0x06,0x8b,0x3f, - 0xe7,0x6a,0x66,0xd0,0x62,0x57,0x47,0xbd,0x6f,0xa0,0xd0,0x0e,0x91,0x9b,0x58,0x7a,0x27,0x93,0x1e,0xab, - 0xb8,0x6b,0x1f,0x86,0x93,0xa8,0xaa,0x30,0x9c,0x46,0x13,0x1d,0x36,0x85,0xc7,0x36,0x69,0x5c,0x7f,0x88, - 0x4a,0x2e,0x22,0xfa,0x49,0xf3,0x19,0x73,0xa9,0x17,0x92,0x18,0x3a,0xdf,0x4c,0xd3,0x39,0x79,0x3e,0x4a, - 0x4c,0xa1,0x68,0x34,0xca,0xad,0x49,0xf4,0x4c,0x4d,0x83,0x30,0xaf,0x58,0xbf,0xfa,0x66,0x69,0x45,0xdb, - 0xfa,0x76,0xd5,0x05,0xbf,0x15,0xe2,0xad,0xaf,0xa8,0x0d,0xc4,0x52,0x69,0x01,0x45,0xe5,0xa8,0xd0,0x16, - 0x66,0x88,0x97,0xde,0xe8,0xcb,0x4e,0xb9,0x85,0x21,0xcc,0x01,0x73,0x8f,0x93,0xdb,0x59,0xa9,0x60,0x55, - 0x6a,0xcb,0x59,0x09,0x34,0x01,0xc2,0xa8,0xf0,0xbb,0x6a,0x64,0x0a,0xf2,0x59,0x5b,0x43,0x07,0x9c,0x1f, - 0x87,0xe3,0xe6,0x98,0x5a,0x90,0x5a,0x51,0x88,0xda,0xff,0x50,0x53,0xcd,0x70,0xfb,0xfe,0x30,0xdf,0xde, - 0xee,0x3d,0xda,0x1d,0x06,0x31,0xeb,0xff,0x59,0x95,0xd4,0xbc,0x7f,0x9f,0xf9,0xf0,0x2d,0xab,0x5a,0xe3, - 0xe9,0xe7,0x97,0x54,0xa3,0x36,0xed,0x0e,0x21,0x86,0xa5,0xdf,0xc2,0x32,0xd3,0xa5,0x8d,0x46,0x57,0x41, - 0x45,0xa6,0x34,0xd7,0xd9,0x7c,0xc9,0x06,0x14,0xeb,0x05,0x57,0x2c,0x65,0x88,0xcf,0x17,0x9b,0xe1,0x75, - 0xf6,0xf9,0xf0,0xaa,0x75,0x5a,0x96,0x0e,0xc8,0xd6,0x94,0xa5,0x12,0xab,0x2c,0x15,0x3b,0xf6,0xf5,0x2d, - 0x58,0x1c,0x2b,0x78,0xd9,0x2c,0xb4,0x1f,0xe8,0xfa,0xb2,0xd7,0x71,0x76,0xe3,0xd9,0xa0,0xb5,0xde,0x7b, - 0xd0,0xff,0xe5,0xf5,0x2e,0x1b,0x2a,0xc0,0x10,0x4b,0xe9,0xe1,0x0a,0xb4,0x06,0xb4,0x84,0x7a,0xa4,0x05, - 0x5f,0x21,0x18,0x96,0x3e,0x4d,0x1d,0x94,0x26,0x1b,0x65,0xdb,0xe9,0x94,0xc6,0x5c,0xa8,0x79,0x31,0x74, - 0x60,0x33,0xa3,0x1d,0xd7,0xde,0xb6,0x72,0xf3,0xb6,0x01,0xcf,0x98,0x50,0xec,0x5d,0x9b,0x15,0xff,0xd9, - 0xcd,0x72,0xe9,0xfd,0x54,0xee,0xac,0x6b,0x76,0x86,0x4e,0x13,0x1d,0x8b,0xa2,0xc1,0x87,0x34,0x67,0x59, - 0x3d,0x36,0x8e,0xda,0x57,0x4a,0xc9,0xea,0x7d,0xce,0xea,0xda,0xe7,0x5a,0xae,0xbc,0x69,0xa9,0x21,0x11, - 0x08,0x3d,0xaf,0x79,0x06,0xc7,0x9d,0x0b,0x6c,0xad,0x8e,0xc4,0x7c,0xb7,0x05,0x16,0x0f,0x86,0x0b,0x0d, - 0x16,0xf9,0xc1,0xc2,0x05,0x8b,0x45,0xff,0x41,0xa5,0xb1,0x37,0xaa,0xa4,0x62,0x29,0x2b,0x5e,0xef,0x05, - 0x2a,0xf6,0x35,0xce,0x70,0xc0,0x65,0x2c,0x14,0x07,0xf5,0x6d,0xe1,0x21,0xa7,0x2b,0x2f,0xe5,0x01,0xcb, - 0x3d,0xdf,0x80,0xe1,0xfa,0xa8,0x5d,0xa5,0xe5,0x03,0x48,0x26,0x5b,0xe3,0xbd,0x3b,0x2c,0xf4,0x78,0xd9, - 0x3f,0x42,0x35,0xde,0xa2,0x7f,0xd7,0x82,0x71,0x6a,0xc7,0x35,0xd6,0x03,0x4b,0x3f,0x15,0x8e,0x55,0x69, - 0x47,0x6e,0x02,0xcd,0xa4,0xcd,0x95,0x6e,0xa2,0x5e,0xc7,0x54,0x5a,0x2c,0xd4,0x5a,0xa3,0xbe,0x37,0x8c, - 0xf5,0xa8,0x0b,0xd8,0x18,0x55,0xa3,0x8e,0xfb,0xf7,0xcc,0x13,0x5b,0x03,0xbb,0x15,0x41,0x85,0xd9,0xea, - 0x00,0xca,0xd2,0x24,0x3c,0xf1,0x1c,0xb5,0x98,0xfc,0xc6,0xd0,0x1a,0xd4,0xa7,0x5c,0xe1,0x37,0x2c,0x42, - 0xd9,0x68,0x92,0x72,0x6b,0xba,0x53,0x1d,0x84,0xa2,0xe5,0xfd,0x1c,0x6a,0x9b,0x10,0x1c,0xe4,0x8f,0x8d, - 0xc6,0x16,0x9b,0x1b,0x63,0x1f,0xbc,0x1d,0xad,0x34,0x25,0x34,0x6d,0x6d,0xae,0x4f,0x69,0xe4,0x74,0xb0, - 0x2c,0xd3,0xd9,0x40,0x7c,0x22,0x6e,0x1c,0x6d,0xd7,0xe4,0xeb,0x4c,0xc2,0x0d,0xb3,0x6f,0xb0,0x09,0x1b, - 0x17,0x61,0x63,0xa3,0xb5,0x09,0xb4,0x5b,0xeb,0x5c,0x8c,0x3f,0xdd,0xd8,0x86,0x45,0xe9,0x9e,0x44,0x6b, - 0x6d,0x44,0xd3,0x24,0xfd,0xc3,0xf6,0xdf,0x41,0x90,0x18,0x62,0xb5,0x84,0x47,0x6c,0x02,0x58,0x20,0x6d, - 0xa2,0xd2,0x17,0x01,0xe4,0x9d,0x30,0x36,0xe5,0x47,0x04,0x21,0x66,0x91,0x0f,0x97,0x60,0x6e,0x66,0x9b, - 0x4b,0x40,0x3a,0xac,0x0b,0xfa,0xde,0xbb,0x77,0x88,0x94,0x60,0x2e,0xd8,0xb6,0x00,0xf7,0x60,0x66,0xf1, - 0x17,0xfc,0x39,0x5d,0x5b,0x90,0xc5,0x84,0x1d,0xda,0x95,0x7e,0x0e,0xa5,0x63,0xb5,0xd4,0x7c,0x73,0x4b, - 0xc6,0xf7,0x6e,0xd2,0x42,0x05,0xcc,0x7d,0xd8,0x81,0x6f,0x68,0x56,0x14,0x16,0xa5,0x45,0xf7,0xb9,0xa3, - 0xb5,0xa6,0xd5,0x45,0xd0,0xb8,0x0a,0x37,0x4b,0x6c,0x54,0xb6,0xf9,0x6e,0x2c,0xfe,0x57,0xdc,0x8d,0xe2, - 0xa2,0xb0,0xb4,0x77,0x63,0x01,0x13,0xff,0xfa,0xba,0x4c,0x3a,0x49,0x93,0x4d,0x38,0x7d,0x6f,0x33,0x4e, - 0xdf,0x3b,0x32,0x86,0x15,0x0e,0xda,0x8a,0x5b,0x66,0x4a,0xc6,0xfe,0x61,0xd4,0xd2,0xa5,0x87,0xa1,0xf6, - 0x48,0xa2,0x3f,0xe3,0x91,0x1f,0x86,0x45,0x1c,0xb5,0x04,0xde,0x21,0xb8,0x35,0xbe,0xce,0x9c,0xdf,0x88, - 0x4b,0x4a,0x3f,0x38,0xea,0xaa,0x2f,0x15,0x39,0xe0,0xaa,0x98,0x2f,0x65,0xd7,0x98,0x2f,0x65,0x62,0xbe, - 0x24,0x75,0x02,0xd5,0x91,0xbf,0x77,0xa4,0x7b,0x63,0xab,0x25,0x0d,0x8f,0x08,0x6e,0xcf,0x91,0x4b,0x1b, - 0x88,0xc7,0x95,0x28,0xdc,0x80,0x76,0x6a,0x32,0x85,0x8d,0x48,0x67,0x43,0x83,0x35,0x2c,0xd1,0x6c,0xa9, - 0x13,0xe1,0xfc,0xa9,0x86,0x36,0x20,0x9b,0xae,0xa1,0x6f,0x46,0x35,0xd2,0xf3,0xff,0xaf,0x88,0xa6,0xf9, - 0x1a,0xb4,0x01,0xcd,0x74,0x14,0xab,0x90,0x8c,0xbb,0x80,0x37,0xa2,0x98,0xec,0x13,0x51,0x4c,0xad,0xd1, - 0x1b,0x11,0x8c,0x94,0xbe,0x19,0xbd,0x34,0x64,0xb9,0xff,0xe5,0xc8,0x25,0xbb,0x19,0xb9,0x74,0xbb,0x56, - 0xfa,0xbf,0xc8,0xa5,0x03,0xb9,0x64,0x16,0xb9,0x68,0x4d,0x10,0x31,0x14,0xd0,0x22,0xa0,0x94,0x08,0x3e, - 0x67,0x61,0xd5,0xcf,0x01,0xad,0x73,0x7c,0x11,0xa7,0xb3,0xf8,0x38,0x9d,0xa5,0xc8,0x8f,0xae,0xea,0xf7, - 0x65,0xf8,0xb1,0xf6,0x12,0x18,0x1e,0x63,0x6b,0x58,0xa3,0x77,0x36,0x73,0xe3,0xf6,0xc2,0x17,0xc3,0x69, - 0x44,0x50,0x78,0x41,0xb0,0x4f,0x49,0xb7,0x6f,0x6b,0x80,0x3b,0x35,0x29,0xc6,0xc4,0x72,0xe0,0x05,0x3c, - 0xa3,0xc4,0x34,0x23,0x21,0x99,0xba,0xc6,0xfb,0x91,0x6a,0x57,0xa3,0xf5,0x6e,0x89,0xfe,0xea,0x15,0x41, - 0x69,0xb8,0x49,0xe0,0x8a,0x22,0x70,0x62,0x93,0x45,0xa7,0x1b,0x9a,0xcc,0x6a,0x4d,0x96,0xed,0xf6,0xda, - 0xef,0x63,0xee,0xcb,0xcf,0xff,0x0a,0xf0,0x4b,0xb4,0xde,0xaa,0x6e,0x3e,0xad,0xf8,0x29,0x62,0x5b,0x88, - 0x0b,0xb5,0x66,0x5f,0x4d,0x5a,0x3d,0x71,0x79,0x95,0xf5,0xba,0xb2,0x8a,0xb8,0x7e,0x8e,0xe3,0xcf,0x9b, - 0x64,0x8b,0xc1,0x49,0xbb,0xd8,0xb2,0xd4,0x32,0x38,0xa9,0x3b,0xcd,0x14,0x6c,0x99,0x70,0xf9,0x8d,0x69, - 0xc6,0x0e,0x7b,0x16,0x63,0x9e,0xd6,0x3a,0x2d,0x6e,0xcd,0x53,0x65,0x76,0xa6,0xc5,0xe7,0xcc,0x34,0xf9, - 0xfc,0x99,0x6a,0x7f,0x89,0xf5,0xb1,0x16,0xcc,0x3c,0x95,0xca,0xea,0xfd,0x16,0x2d,0xde,0xf1,0xd3,0x47, - 0x35,0xf9,0xef,0x85,0x31,0xcb,0x13,0x27,0xc6,0x66,0x6f,0xe2,0x40,0x57,0x07,0xb7,0xfb,0xa9,0xf3,0xe8, - 0x38,0x7b,0xff,0xbd,0xf3,0xc8,0x6e,0x9e,0x07,0x6c,0xae,0x3f,0xa4,0x99,0xff,0x0e,0x9f,0xd6,0xf8,0xcf, - 0xf7,0x70,0xce,0x39,0x42,0xc3,0x58,0x47,0x75,0x67,0xc7,0x61,0xa7,0x55,0xfc,0x31,0xff,0x52,0xdc,0x2c, - 0x5e,0x6a,0xad,0x1d,0x1a,0xaf,0x55,0x1d,0x10,0xa3,0xa8,0x17,0x20,0x85,0xde,0x94,0x05,0x55,0x3e,0x21, - 0x4c,0x39,0x2c,0xc4,0x3e,0xaa,0x18,0xe8,0x68,0xe2,0xc0,0x8c,0x1a,0xd7,0x45,0xde,0xdf,0x07,0xf7,0x06, - 0xf7,0x3c,0xd5,0x65,0xaa,0x25,0x91,0x9e,0x6f,0xdf,0xd6,0x11,0x9f,0xdf,0x22,0x06,0x4d,0xf5,0x3d,0x58, - 0x2e,0x12,0xff,0x05,0x21,0x66,0xad,0x3e,0x64,0xad,0x5d,0xae,0x92,0x2c,0xbc,0xe2,0xa8,0x9a,0xa1,0xf7, - 0xa6,0x8c,0xd3,0x62,0xe1,0xa9,0xc5,0xc7,0x45,0x99,0x9c,0x3f,0x7f,0x46,0x29,0xfc,0xd5,0x7b,0xfe,0xcc, - 0x53,0xd3,0xb4,0x38,0xbf,0x8c,0x8b,0xe4,0xad,0x8c,0x25,0xf4,0xbe,0xd5,0x09,0x3d,0x3d,0xba,0xb0,0xe7, - 0xa9,0x71,0x3e,0xff,0x28,0x91,0x33,0xbc,0xa7,0xe6,0xb3,0xf7,0x3f,0xff,0x9f,0xde,0xdd,0xdd,0xbd,0xbf, - 0xf7,0x5e,0xc4,0xc5,0x59,0xef,0x22,0xce,0x7a,0x3f,0x27,0xd9,0xe2,0x32,0x5f,0x4e,0xe8,0x58,0xcd,0xf2, - 0x18,0x1e,0xb7,0x42,0xef,0xf5,0x2c,0x81,0xe1,0x20,0x47,0x33,0xe8,0xe9,0xd4,0x9e,0x2c,0x94,0x0e,0xf9, - 0x3e,0x18,0x0c,0x3c,0x55,0x24,0xc7,0x74,0xbd,0xbf,0x4e,0x32,0xa9,0xb5,0x7f,0x9a,0xf4,0x64,0xb4,0x34, - 0xff,0xd9,0xac,0x77,0x9c,0xf4,0xa4,0x44,0x32,0x51,0xbd,0xb9,0x34,0x59,0x24,0xd3,0x22,0x59,0x9c,0x32, - 0x26,0xef,0xcd,0x69,0xd2,0xbd,0x78,0x4a,0xa4,0x14,0x0d,0x7d,0x42,0x73,0xe5,0xad,0x7f,0xc2,0x51,0x3c, - 0x42,0xef,0x31,0x7e,0xd4,0xd2,0xde,0xc4,0x17,0xdc,0x91,0xfc,0xe5,0x21,0x4c,0x92,0x8b,0x74,0xcc,0x77, - 0x19,0xf5,0x8f,0x7f,0x69,0xde,0x97,0xe9,0x34,0xa5,0xd5,0x2b,0x97,0x8b,0xf0,0x2a,0x1e,0xc3,0x0b,0xe6, - 0x3c,0x4f,0xb3,0xd2,0xae,0xec,0xe3,0xd7,0x28,0x35,0x49,0x17,0xf1,0x31,0x5d,0x4c,0xa1,0xf7,0x4c,0x7f, - 0x11,0x49,0xc2,0x2e,0x35,0xf2,0x0c,0x21,0xf0,0x6c,0xf1,0x5f,0xd3,0x6f,0xd3,0x0d,0x15,0x54,0x8a,0x68, - 0x26,0xde,0xf3,0x09,0x5e,0x86,0xb3,0xfc,0xcd,0x1b,0xde,0x26,0xfa,0xb7,0x07,0xfb,0xd3,0x69,0x4e,0x90, - 0x41,0x1b,0x38,0x8e,0x33,0x44,0xa9,0x80,0x3d,0x07,0x55,0x7e,0x43,0x3f,0x7b,0x63,0xf3,0x1b,0xbb,0x94, - 0x65,0x04,0xc1,0xdf,0xd2,0x0d,0x8d,0x6c,0xf9,0xdb,0x2b,0xf3,0x9e,0xce,0xb0,0x25,0x68,0x5c,0x3f,0xe5, - 0x0b,0xde,0x4c,0xf3,0x9b,0xf6,0x66,0x51,0xf2,0xc8,0x74,0x19,0x3d,0x3a,0xfb,0x0b,0x01,0x40,0x16,0x7a, - 0x29,0xca,0xf8,0x78,0xdf,0x82,0x16,0xa5,0x78,0x4a,0x4f,0xf0,0xa9,0x44,0x91,0xe9,0x2d,0x74,0x32,0xdd, - 0xd7,0x6f,0xca,0x64,0xbe,0xd8,0x2f,0x96,0x28,0x9c,0x94,0x3d,0xbc,0x1f,0x20,0x94,0xfd,0x47,0x9a,0x53, - 0xc1,0xc6,0x03,0x0b,0x14,0xa8,0x8a,0x7e,0x0b,0x8d,0xd6,0x66,0x59,0xf8,0x6f,0xbb,0x48,0x27,0x4b,0x44, - 0xaa,0xa0,0xb5,0x25,0xe2,0x06,0x11,0x2a,0x6a,0x23,0xd9,0xd7,0x69,0x18,0xcb,0x79,0x62,0x12,0xe9,0x53, - 0x12,0x9e,0xe3,0xdd,0x22,0x23,0x74,0x64,0x20,0x92,0x96,0x15,0x36,0x31,0x71,0xd9,0x43,0x76,0xcf,0x34, - 0xd9,0xd3,0x76,0x2a,0xbd,0x38,0xe3,0xfe,0x51,0xa7,0x57,0x2d,0xdb,0x40,0x5a,0x7b,0x99,0x73,0xd8,0x63, - 0xef,0x65,0xde,0xa8,0xad,0x8f,0x6f,0xef,0x63,0x52,0x4a,0xc9,0x6f,0x32,0xbd,0xd3,0xf2,0x51,0x2f,0xae, - 0xc7,0x0a,0xc1,0x36,0xfb,0xd7,0xd2,0xc0,0x67,0x7f,0x4b,0xe9,0x34,0xeb,0x9d,0xd3,0x21,0x48,0x17,0x09, - 0x8d,0x63,0xa2,0x2b,0x3d,0x9e,0x50,0x9b,0xf4,0x8f,0xfc,0x7a,0x26,0x41,0x86,0x3c,0xf9,0x6b,0x9a,0xe5, - 0x4e,0x1a,0x03,0xd0,0x15,0xbe,0x4d,0x3f,0x24,0x13,0xe9,0x8e,0x3f,0xb9,0x27,0xc9,0x7a,0xb3,0xcc,0x8a, - 0x94,0xb7,0x40,0x3e,0x6c,0xea,0x02,0xab,0x27,0x7f,0xcd,0x22,0x9b,0xb3,0x22,0x63,0xcc,0x96,0x65,0xa2, - 0x87,0xf7,0x82,0x46,0x1a,0x7f,0x0c,0x3d,0xf9,0xab,0x8b,0x2f,0x93,0x05,0x27,0xea,0x0f,0x49,0xfd,0x35, - 0x99,0x64,0x3a,0xdd,0x7e,0xea,0xf2,0xa7,0xcb,0x42,0x57,0xd0,0x5f,0x7a,0xec,0x45,0xca,0xa9,0xf2,0x57, - 0x0f,0x8f,0xe0,0xad,0xe0,0x54,0xf3,0x65,0x87,0x2d,0xa9,0x4b,0x19,0xc7,0x79,0x2e,0xeb,0xcc,0xd0,0xf1, - 0x82,0x7f,0x98,0x44,0x67,0x4f,0x25,0x61,0xc3,0xae,0x4a,0x66,0x73,0x5f,0x1b,0x55,0x1a,0xc5,0x9e,0x2d, - 0x41,0x8e,0xef,0x57,0xbb,0x42,0x7b,0x87,0xab,0x86,0x2e,0x87,0x1e,0x02,0x0e,0xf5,0xd2,0x69,0x2f,0xae, - 0xc1,0x06,0xec,0x6b,0xe2,0x59,0x91,0xc4,0x93,0x8f,0xbd,0x58,0x4c,0xd2,0xcd,0xe0,0x3f,0x17,0x5c,0x4c, - 0xb5,0x0d,0xe0,0x20,0xd9,0x15,0x3c,0xc9,0xef,0x26,0x44,0x49,0xea,0xeb,0x94,0xb0,0xe9,0x77,0xaf,0x9f, - 0xbf,0xea,0xcd,0xa9,0x1b,0x5f,0x06,0xd6,0x3b,0xa5,0xeb,0x20,0xb0,0x15,0xe5,0x16,0x05,0xda,0x7d,0x73, - 0x99,0x24,0x73,0x3a,0x48,0xe9,0x79,0xec,0x2e,0xb4,0x2d,0xf1,0xd2,0xf9,0x8e,0x67,0x58,0xf9,0x2c,0xa1, - 0x46,0x0d,0x4e,0xe8,0xe1,0x6c,0xe2,0x22,0x88,0xcf,0xe5,0xdc,0xb4,0xfb,0xd8,0xcf,0xe7,0xcf,0x10,0x67, - 0xcb,0xa3,0x8f,0x1e,0x22,0x6e,0xb5,0x4a,0x3c,0xc9,0x09,0xdd,0x9f,0xff,0x32,0x0f,0x3d,0xf9,0xea,0x2d, - 0xe7,0xde,0xda,0xc1,0x83,0x2e,0x0a,0xa9,0xb0,0x61,0x85,0xd0,0x2a,0x04,0xc9,0xaf,0x80,0x49,0xc9,0x9b, - 0xeb,0xde,0x05,0x06,0x02,0x24,0xad,0xc7,0x89,0xb5,0x12,0xdf,0x73,0xa9,0xc7,0xb3,0x59,0x7e,0xb9,0x10, - 0xac,0xa7,0xfd,0x0c,0x38,0x78,0xa5,0x37,0x2d,0x68,0x6c,0x1f,0xf3,0x65,0xd1,0x93,0x7b,0x08,0x68,0x9b, - 0x6f,0x36,0xb9,0xbc,0xb5,0x97,0x24,0xae,0x5e,0xbb,0x3d,0x7b,0xf3,0x65,0x31,0xcf,0x17,0xc9,0x62,0xd0, - 0xc3,0xa5,0xa9,0x4b,0xd7,0x8b,0x00,0x94,0x84,0x6d,0xa3,0x16,0xe8,0xf7,0x69,0x59,0xce,0xc3,0x9d,0x9d, - 0xbd,0xaf,0xef,0x0e,0xf6,0xbe,0xfc,0x6a,0xb0,0x37,0xb8,0xbf,0xd3,0xbb,0x3c,0x25,0x28,0xa4,0xfe,0x7b, - 0xb8,0xf9,0x2d,0xd2,0xc7,0x28,0xd2,0x92,0x9a,0x66,0xc6,0xa3,0xec,0xe5,0x53,0x82,0xd3,0x45,0x6f,0x91, - 0xc3,0x71,0xce,0xa2,0xa7,0xef,0x38,0x0c,0x2e,0x41,0x2f,0xa6,0x5b,0xdc,0xd2,0x94,0x4d,0x15,0x28,0x91, - 0xfd,0x27,0x24,0x63,0xa4,0xb2,0x03,0x98,0xec,0x23,0x51,0x03,0x1f,0x07,0xbd,0xdf,0xa8,0x33,0x5c,0x60, - 0xf1,0x8c,0x7e,0x2e,0x7a,0x96,0x2b,0xeb,0x09,0xfd,0xd4,0x83,0xe0,0x00,0xa3,0x3d,0xfe,0xd8,0x83,0x02, - 0x25,0xe8,0x06,0x40,0x83,0xbb,0xcc,0x3d,0x1d,0xa6,0x6b,0x99,0x95,0xe9,0x8c,0x73,0x7f,0xfa,0xe6,0x59, - 0x6f,0x06,0xea,0x64,0x41,0x1b,0x4d,0xc8,0xda,0xbd,0x85,0xcd,0x46,0xb9,0xa3,0xae,0x95,0x90,0x8d,0xd2, - 0x5b,0xde,0xb5,0xfa,0xb4,0x1a,0xbc,0x45,0x04,0x68,0x3d,0xdc,0xe5,0xbd,0x82,0xbd,0x88,0x0d,0x7a,0xfa, - 0x4e,0xe1,0xe0,0x70,0x3c,0x0e,0xdc,0xdc,0x44,0xa9,0xc4,0x0b,0x22,0x88,0x8a,0x09,0x4d,0x7a,0x42,0xa4, - 0x6e,0x41,0x39,0xcd,0xed,0x3b,0x4e,0x08,0x2c,0x30,0xd0,0x45,0x3a,0x91,0x0b,0xdf,0x53,0xa6,0x1a,0xdd, - 0x55,0xfa,0x8b,0x2e,0xe6,0xd3,0x31,0xc1,0xf0,0x2f,0xd4,0xc9,0xb3,0xef,0x9f,0xbe,0x96,0xdf,0x1a,0xb0, - 0x96,0x04,0xd6,0x70,0xdf,0x85,0xcb,0x91,0x96,0x7d,0x91,0x9e,0x64,0x0b,0x5c,0x5f,0xcf,0x5f,0xf7,0x74, - 0x9c,0xf9,0x6e,0x60,0x92,0x2d,0x20,0x92,0xfd,0x98,0x96,0x05,0x9b,0x42,0x0b,0x4a,0x05,0xcf,0x70,0x68, - 0x65,0x23,0xb0,0xb2,0x33,0xd4,0x07,0x60,0xc0,0xcc,0x89,0xc0,0x84,0x0e,0x25,0xfd,0xba,0x43,0x50,0x32, - 0xc9,0x41,0x3a,0x11,0xe5,0x32,0xd7,0xdd,0x10,0xf9,0x62,0xbb,0xa4,0x19,0x2d,0x8f,0xe9,0xee,0x3c,0x8f, - 0x17,0x67,0x40,0xbf,0xf8,0xee,0xe1,0x87,0xa7,0x4e,0x08,0xeb,0x5d,0x02,0x29,0x7f,0x27,0x1f,0x9e,0x3a, - 0x25,0xda,0x43,0x6c,0x4e,0xbf,0xd7,0x5f,0x55,0xda,0xeb,0xca,0x47,0x32,0xb0,0x91,0x98,0x99,0x52,0x4b, - 0x63,0xdb,0xd3,0x5a,0x13,0xb6,0x35,0xba,0x84,0x53,0x88,0x92,0x2a,0xe7,0x0e,0x29,0xd0,0x83,0x9a,0xe7, - 0x69,0x91,0x67,0x44,0x75,0xf1,0xea,0xfb,0x2f,0xf7,0x5f,0x13,0x56,0x21,0x64,0xb6,0xd0,0xc5,0xbe,0x27, - 0xf2,0x91,0xa9,0x5f,0x4a,0xcb,0x11,0x6c,0xf3,0x3c,0x9e,0x9b,0xbc,0xef,0xf2,0xfc,0x84,0xa0,0xe0,0x05, - 0xa5,0xf4,0x1e,0xbf,0x7e,0x5e,0xd1,0xce,0x3a,0xdf,0x52,0xce,0xc2,0x33,0x10,0xb9,0x15,0xcf,0xd2,0xe3, - 0x82,0x25,0x24,0x82,0x4d,0xcc,0x6f,0x27,0xcb,0xd0,0xa8,0x36,0xcf,0x10,0x44,0xb6,0x84,0x6c,0xf3,0x2f, - 0x6c,0xda,0x9d,0x18,0x90,0x67,0xb8,0xd1,0xb4,0x9d,0x9c,0x39,0xce,0x15,0xe9,0x0b,0x9d,0x53,0x69,0x45, - 0x31,0xe4,0x51,0xa9,0x78,0xf2,0x1e,0x46,0x99,0xdc,0x00,0x53,0xef,0x19,0xb6,0x15,0xce,0x64,0xe2,0xf1, - 0xa9,0x43,0x5e,0x71,0x35,0x5e,0xb6,0x37,0xf0,0xc4,0x4b,0x4b,0x4e,0x2b,0xd4,0x63,0xaf,0xbc,0x05,0x27, - 0x33,0x1d,0x75,0x01,0x6c,0xfd,0xb3,0xa6,0xbf,0x53,0x9d,0xd2,0xf3,0x2b,0x22,0x20,0xe0,0xb2,0x3f,0xc5, - 0x34,0x6e,0xfa,0x27,0x2d,0x99,0x27,0x40,0x0a,0x68,0xee,0x9f,0xf2,0xec,0xc4,0x49,0x22,0x8e,0x59,0xae, - 0x8b,0xef,0x08,0x42,0x66,0xba,0x74,0x6f,0x87,0x08,0x52,0x5d,0x4c,0x70,0xe3,0x4c,0x97,0xab,0x55,0x7a, - 0x93,0xc4,0xc5,0xf8,0x14,0xd4,0x22,0xfe,0xf2,0x46,0x12,0x06,0x20,0xaa,0x9c,0xae,0x57,0x46,0x13,0xaf, - 0x19,0x4d,0x08,0x39,0xca,0xc8,0x81,0xef,0xad,0x3e,0x71,0x5b,0x17,0x81,0x29,0xfe,0x66,0xff,0xb1,0x10, - 0xb2,0x80,0x88,0x17,0x40,0x65,0xd7,0x94,0x7f,0xfc,0xda,0x6c,0x98,0xc6,0x26,0xb5,0x8e,0xf4,0xe6,0xb8, - 0x97,0x23,0x6d,0x93,0xd4,0x7c,0xfd,0xeb,0x8b,0x67,0x05,0xa5,0x14,0x6f,0x9e,0x51,0x7f,0xaf,0x9f,0x3e, - 0xfe,0xfa,0xcb,0xaf,0x1e,0xf4,0x28,0xb5,0x37,0xe1,0xe4,0x1e,0xa5,0x4b,0x4d,0x28,0x3a,0x37,0xeb,0x3c, - 0xfd,0xa9,0xbb,0xce,0xd3,0x9f,0xa4,0xce,0x18,0x5e,0x59,0x51,0xe9,0xf2,0xfc,0xb1,0x39,0x8d,0x1d,0xe5, - 0x9f,0xff,0xcf,0xff,0xf7,0x69,0x75,0x44,0xa9,0xf0,0xb7,0xa0,0x77,0x93,0x6c,0xfc,0xb1,0xb3,0xf8,0xd4, - 0xe4,0xca,0x39,0x20,0xa0,0xff,0x31,0xf9,0xd8,0x3a,0x08,0x84,0x32,0x6a,0x05,0x4e,0x19,0x60,0x7f,0x4e, - 0xc4,0x23,0xe1,0x04,0x78,0x7f,0xda,0x5b,0x2e,0x18,0x83,0xbb,0xe4,0xef,0xa0,0x47,0x40,0x3d,0xe1,0x3b, - 0x6d,0x96,0xe7,0x67,0xc8,0x5f,0xce,0x19,0x46,0x75,0x34,0x4a,0x2e,0xfe,0x07,0x51,0x05,0x03,0x42,0xb7, - 0x44,0x16,0x10,0x2a,0x3c,0xeb,0x21,0x3c,0x1e,0x9d,0x4c,0x60,0x38,0xdd,0xb7,0xc2,0xba,0xf7,0xf4,0xa0, - 0xce,0x99,0x37,0x85,0x64,0xb9,0xa4,0x33,0x27,0xf8,0x9a,0x67,0xb1,0xa0,0x7b,0xec,0x67,0xe2,0xc5,0x17, - 0xc0,0xd1,0x72,0x0d,0xd3,0xf4,0x12,0xd3,0x08,0xa8,0x0d,0x7d,0x31,0x1a,0x67,0x7e,0x74,0x13,0xd3,0x29, - 0x9b,0x63,0xa4,0x27,0xdc,0x38,0xf8,0xff,0x1d,0x3e,0x52,0xb1,0xa1,0xde,0xd2,0xf2,0x0e,0x5d,0x35,0x0b, - 0xb9,0x99,0x31,0x74,0xb3,0x28,0x03,0xc2,0x4b,0x2c,0xc7,0x0e,0xaf,0xc0,0xf6,0x6a,0x2e,0x92,0x6e,0x97, - 0xe5,0x6c,0xc2,0x77,0x22,0x52,0x0d,0x93,0x6b,0xf8,0x25,0xa4,0x55,0x24,0x47,0xab,0xb4,0x43,0x2f,0x10, - 0x11,0x5e,0xc2,0xa5,0xb5,0xd4,0x11,0x74,0xb7,0xb1,0xf5,0x5a,0x59,0x87,0x0a,0x6d,0x8f,0xa7,0x46,0x82, - 0xd6,0xeb,0xbd,0x70,0xc9,0xc8,0x76,0xcd,0x3a,0x01,0xec,0xd4,0x65,0xae,0xbb,0x7b,0x52,0x0b,0xd8,0x88, - 0x77,0x4e,0x8a,0x2b,0xb5,0x67,0xc5,0x15,0x5a,0xb3,0x12,0x74,0x8b,0x0b,0xb9,0xbd,0xca,0x45,0x42,0x23, - 0xa2,0x7d,0x94,0xfb,0xda,0xac,0xf3,0x72,0x8e,0x31,0x1b,0x7c,0x4d,0x67,0x19,0x1b,0xd5,0xe3,0x48,0x8a, - 0x3d,0xc9,0x03,0x30,0x1a,0xf4,0x6e,0x7a,0x60,0xfe,0xd4,0x6d,0x9c,0x47,0xc9,0x4f,0x2c,0x40,0x9b,0xe2, - 0x1d,0x0a,0x37,0x1f,0x63,0xa3,0x0a,0xb1,0xb9,0x2b,0x95,0x9f,0x01,0xc6,0x0d,0x32,0xa3,0xc9,0xd3,0xed, - 0x9e,0x66,0x31,0x33,0x4e,0xdc,0xdc,0xa6,0xed,0xe1,0xa9,0x6f,0xd8,0x1e,0xae,0xb8,0x79,0x7f,0xb8,0xea, - 0xc6,0xfd,0x11,0xe8,0x6c,0xcc,0x4c,0xc0,0x4d,0xdf,0x40,0xf5,0xad,0x91,0xb5,0x78,0x5a,0xe5,0xb5,0x77, - 0xb4,0xb3,0x1e,0x42,0x0b,0x96,0xbc,0xd0,0x35,0xf9,0x4e,0x91,0xb0,0xc3,0x4f,0x61,0xc5,0x53,0xf8,0x0d, - 0x58,0xd0,0xe5,0x46,0xc4,0x28,0x97,0xef,0x55,0xaf,0x42,0xb3,0x8f,0x42,0xe2,0x22,0xb6,0x00,0x91,0x7f, - 0x97,0x34,0x09,0x5a,0x49,0x8d,0xaa,0x53,0x1a,0xbd,0xf4,0xf0,0x33,0x51,0x62,0x20,0xeb,0x77,0xc1,0x4f, - 0x14,0xe7,0x7c,0xa5,0xc5,0x45,0x49,0x64,0xbf,0xda,0xa3,0x5b,0x34,0xa3,0x42,0x73,0x3a,0xdf,0x84,0xde, - 0x94,0xee,0x82,0x08,0xcc,0x53,0x73,0xeb,0xb3,0x11,0xc7,0x24,0x3f,0xf1,0xd4,0x5d,0x14,0x3e,0xa5,0xb3, - 0x0e,0x19,0x4a,0xf2,0x61,0x9c,0xcc,0xe5,0xf6,0xb9,0xb7,0xb1,0x91,0x45,0x3e,0x2d,0x1b,0x8d,0xdc,0xb7, - 0xa2,0x36,0x2a,0x85,0x61,0x18,0x54,0x04,0xc6,0xeb,0x01,0x71,0xbc,0xf1,0x19,0x00,0x4e,0x6e,0x38,0xd8, - 0xae,0xf4,0x16,0xb3,0x04,0x17,0xf0,0x97,0x6e,0x45,0xe2,0x3a,0x59,0xf6,0x32,0x3e,0x23,0x5e,0x0f,0xce, - 0x0a,0x1e,0xf7,0xf8,0x17,0x6d,0x26,0xdc,0x2b,0xb8,0xe4,0xbd,0x25,0x45,0x17,0x84,0x78,0xb1,0x9c,0x86, - 0x64,0xcd,0x08,0x26,0xa9,0xdf,0x9e,0xc5,0x69,0x40,0x63,0x3b,0x39,0xd8,0x0d,0xf6,0x0e,0x42,0x45,0x79, - 0x10,0x2e,0x99,0x58,0x71,0x22,0x45,0x72,0x9e,0x5f,0x88,0x0b,0x11,0x23,0x62,0x14,0xe2,0x5a,0x0f,0x09, - 0x4c,0x18,0x40,0x86,0x28,0x34,0xfd,0x55,0xcb,0xd5,0xbc,0xe4,0xcf,0xdc,0x0a,0xd8,0x2f,0x07,0x78,0x8c, - 0x6c,0xcc,0x01,0x28,0x42,0xf1,0x7f,0xc4,0x20,0x7a,0xc1,0x02,0x98,0xeb,0xf6,0x09,0x7d,0x43,0x80,0xb5, - 0xc4,0xdd,0xf2,0xb2,0x4e,0xe6,0x10,0x4d,0x90,0x7c,0x28,0x4d,0xc9,0x97,0xec,0x0a,0xa0,0x26,0x00,0x34, - 0x42,0xb3,0x4a,0xcc,0xc4,0xca,0xe3,0x44,0xb0,0x6e,0x12,0x47,0x71,0xe4,0x75,0x02,0xaa,0x17,0x74,0xb9, - 0xee,0x10,0xb9,0xf9,0x41,0x9f,0xee,0x1e,0x96,0x4e,0x88,0x24,0xc2,0xfa,0x4f,0x97,0x44,0x18,0x09,0x6d, - 0x36,0xcb,0x4f,0xe2,0x82,0xae,0xa6,0xf3,0x74,0x8c,0xeb,0xeb,0x42,0x6e,0x84,0x4a,0x84,0xe5,0x17,0xce, - 0x7d,0x88,0x2c,0xa2,0x2e,0x16,0x1c,0x56,0x37,0x9b,0xd9,0x45,0xa0,0xe5,0x9a,0xb7,0xe4,0xb4,0x9f,0x26, - 0xa8,0x4d,0xfe,0x9a,0x9c,0xf6,0x1b,0x3a,0x71,0xf9,0x49,0x92,0x1d,0xcf,0xd2,0xb3,0xde,0x49,0x42,0xfc, - 0x01,0xf1,0x70,0xc7,0xc9,0x1f,0xe9,0x09,0x6d,0x38,0xe8,0xb2,0x09,0x15,0xb8,0x60,0x79,0xa3,0x65,0x5f, - 0x92,0x2e,0xd1,0xed,0xf7,0x54,0x7a,0xa1,0x87,0x0d,0xd6,0x85,0x98,0xc6,0x79,0x96,0x26,0xcb,0x4b,0xfa, - 0x7b,0x22,0x87,0x40,0x61,0xc4,0x18,0x34,0xf1,0x10,0xc9,0x1f,0x09,0x84,0xb7,0x84,0x02,0x7b,0x19,0x0d, - 0x25,0xc9,0x1a,0x3b,0xb7,0x9f,0x27,0x60,0x87,0x1a,0xe9,0x46,0x7c,0xfb,0xc4,0x0e,0x30,0x9f,0x2f,0x66, - 0x71,0x9c,0x75,0x48,0x72,0xdf,0x4f,0xfe,0x8c,0x24,0xf7,0x97,0xb4,0xa4,0xd1,0x8e,0x4f,0xe9,0x80,0xce, - 0x3e,0x5d,0x9c,0x5b,0xaf,0xa5,0x65,0xba,0x6f,0x68,0x60,0x73,0x38,0x35,0x9a,0x34,0x25,0xbb,0x29,0x0d, - 0xfc,0x24,0xb9,0xc8,0x09,0x26,0xb2,0x6e,0xe9,0x6e,0x3c,0x25,0x64,0x9d,0x67,0x6d,0xe1,0xee,0x8f,0x94, - 0x79,0x02,0x34,0x49,0xeb,0xa8,0xa3,0x9b,0x10,0x94,0x9e,0xa1,0x9d,0xa6,0x90,0xf7,0x6d,0x55,0x82,0x0a, - 0xcf,0xf2,0x02,0x85,0xea,0x82,0xde,0x97,0x18,0x09,0x5a,0x92,0xa1,0x7c,0x8a,0xa8,0xf7,0xfb,0x65,0x3a, - 0x49,0x4f,0x92,0x0d,0xa2,0xde,0xc7,0x33,0xb0,0xcb,0xc4,0xf2,0xd3,0x08,0xb1,0xc7,0xb3,0x29,0x24,0x04, - 0xfa,0x30,0x24,0x69,0xd9,0x92,0xf7,0xee,0x4b,0x59,0xc3,0x89,0x24,0xc9,0x8c,0x3d,0x41,0x25,0xd4,0x4e, - 0xf6,0x79,0x12,0xdf,0xf7,0x93,0xa6,0xc4,0xf7,0x27,0x86,0x8f,0x1e,0x5d,0x5b,0xbd,0x8b,0x1c,0x64,0x1a, - 0x95,0xa9,0x84,0x7b,0x49,0x52,0x49,0x7a,0x2f,0x6a,0x4b,0x95,0xc0,0xad,0x67,0xba,0x68,0xc9,0x7c,0x4f, - 0x64,0xe5,0xeb,0xcd,0x9c,0x24,0x96,0x13,0x4b,0x8a,0x49,0x43,0xf8,0xbb,0x5f,0x2b,0x4a,0x13,0x13,0x10, - 0x49,0xb2,0xeb,0x25,0xc0,0x89,0xf4,0x51,0x97,0xe8,0x99,0x4a,0x2c,0xb1,0xa3,0xe3,0x71,0x91,0x27,0x27, - 0x26,0xcd,0x60,0x5a,0xda,0xf2,0x4b,0xaa,0x99,0x14,0x55,0x0f,0x75,0xe9,0x1f,0xa4,0x8f,0xc9,0xb4,0x25, - 0x0b,0x7e,0x4b,0x77,0xab,0x74,0xda,0x90,0x05,0xff,0x0e,0x92,0x78,0x7e,0x96,0x9f,0x2f,0xca,0xba,0x3c, - 0x98,0x33,0x60,0xde,0x70,0x12,0x43,0x59,0xde,0x15,0x0b,0x9b,0x91,0x83,0x23,0xcc,0x1a,0x62,0x61,0x3a, - 0xaa,0x93,0xf8,0xa4,0x21,0x17,0x7e,0x46,0x0b,0x63,0x53,0x5d,0xb9,0x70,0x9e,0x38,0x19,0x95,0x58,0xf8, - 0x19,0x77,0x6c,0x33,0x8c,0x5c,0xf8,0x6d,0x41,0x5d,0x9b,0xc4,0x4a,0x30,0xfc,0x3b,0x51,0x2d,0x55,0x61, - 0x23,0x18,0xfe,0x3d,0x97,0x81,0xd4,0x04,0xc3,0x4f,0x92,0xcb,0xe4,0x84,0x95,0xff,0x9b,0xa2,0x61,0xbd, - 0xf5,0xc7,0xba,0xc0,0xe6,0xed,0x6f,0x48,0x89,0x9f,0xb4,0x2a,0xd4,0x80,0xe0,0x26,0x61,0xf1,0x2b,0x22, - 0x1b,0x9d,0x0a,0x74,0x51,0x11,0xdc,0xe2,0xbe,0xea,0x35,0x01,0x91,0x39,0x93,0x64,0x4a,0x60,0x7b,0x93, - 0xbc,0x78,0x23,0x70,0x75,0xcb,0x8b,0x0d,0xc4,0x38,0xe2,0x62,0x07,0xf8,0xea,0x42,0xe3,0x1a,0xf8,0x6d, - 0x94,0x1c,0xd3,0x28,0x4f,0x89,0xad,0xea,0x92,0x1c,0x3f,0x16,0x99,0x71,0x72,0xa3,0xc8,0xf8,0x3b,0xcc, - 0x1f,0x22,0x63,0x8b,0x6d,0x4e,0x92,0x59,0xfa,0xfe,0x0c,0x53,0x4b,0x3b,0x9a,0xb6,0x02,0xe3,0x27,0x39, - 0xc4,0xee,0x59,0x1c,0x17,0xb4,0x99,0x59,0xe2,0x4c,0xbc,0x4b,0x74,0x2c,0x25,0x74,0x71,0xd4,0xdc,0x28, - 0x43,0xae,0x90,0xad,0xc5,0x94,0x0e,0xfe,0x75,0x2f,0xcf,0x86,0x14,0xf9,0xb1,0x2b,0xd7,0xac,0x01,0x47, - 0x4b,0x94,0x4c,0xa7,0xe7,0x8c,0x08,0x65,0x08,0xd4,0x72,0x99,0x6e,0x8f,0x28,0x37,0xac,0x84,0xc8,0x95, - 0x2b,0x9e,0x2a,0xc1,0x95,0x1d,0x4f,0x39,0x8f,0xae,0xcf,0xb8,0x88,0x09,0x07,0xf2,0x2c,0xf8,0xe2,0x05, - 0xb9,0x61,0x65,0x9b,0x89,0xdc,0x1f,0x3d,0xa6,0x44,0x9d,0x54,0x0b,0xd7,0x88,0x3c,0xd3,0x7b,0x56,0xaf, - 0x45,0xf4,0x20,0x15,0xa1,0x15,0x8c,0x79,0xb7,0x7b,0x17,0x69,0xdc,0x29,0x5e,0xa6,0x7c,0xea,0xf9,0xbd, - 0x3b,0xb2,0xd3,0xe4,0x18,0xb7,0xdf,0x39,0x26,0x33,0xe8,0xbd,0x91,0xf9,0xca,0xb8,0x20,0x01,0x26,0xba, - 0x38,0xc5,0x58,0x79,0x9e,0xee,0x18,0x54,0x2f,0x06,0x6d,0xf6,0x47,0xaa,0xaf,0x16,0xb9,0x46,0x8f,0x89, - 0xae,0x4d,0x67,0xe9,0xc9,0x04,0x08,0xbb,0xf7,0x43,0xd2,0x3b,0x23,0x42,0xd1,0x6d,0x2d,0x6f,0x1c,0xa1, - 0x09,0x6e,0x02,0xdc,0x0a,0x56,0x84,0x23,0x4b,0x7f,0x96,0x51,0x22,0xcd,0x69,0x52,0x2c,0xcf,0xb0,0x1c, - 0x65,0x5e,0x62,0xe8,0x13,0x91,0x2d,0xc7,0xb8,0x76,0x69,0x11,0x9b,0xa2,0x65,0x67,0x8f,0x41,0x8d,0x30, - 0xb3,0xa9,0xaf,0xe3,0x96,0x80,0x59,0x97,0x6d,0x6f,0x01,0x1a,0xa7,0x25,0x4a,0xe8,0x5a,0x6d,0xc8,0x97, - 0xdf,0x2e,0x67,0xbd,0xd3,0x94,0x29,0x01,0x3a,0xe2,0x58,0x11,0x26,0x20,0xa8,0xd8,0x65,0x3c,0x3e,0x2d, - 0x2f,0xc1,0x45,0xd2,0xec,0x14,0x52,0x1c,0x3c,0xc4,0x6f,0x4b,0xe5,0x92,0x97,0xb5,0x47,0x60,0x5b,0xe0, - 0xc2,0xe6,0xe5,0x58,0x6c,0x14,0x39,0xff,0x6a,0x1b,0x34,0x42,0xe7,0xef,0x92,0xe3,0x62,0x49,0x54,0xe1, - 0x26,0xc1,0x33,0xad,0x29,0x03,0x18,0x0b,0x7f,0x89,0xc9,0xa0,0x25,0x4b,0xe8,0xf8,0xff,0x01,0x98,0x8b, - 0xb3,0xd6,0x34,0x07,0xbd,0x5f,0x09,0x00,0xa9,0x52,0xfa,0x3e,0x63,0xd8,0xbd,0x4c,0x67,0x98,0xb6,0xb3, - 0x57,0xa8,0x06,0x4b,0x1f,0x9a,0x10,0xfd,0xf3,0x47,0xfa,0x1e,0xf9,0x97,0x09,0x4d,0xfb,0x12,0xb0,0x4b, - 0x3f,0xce,0x93,0x44,0x53,0xa7,0xc7,0x70,0xec,0xd7,0x16,0x42,0x17,0xc9,0x66,0x11,0x34,0x44,0x99,0x37, - 0x0b,0xa1,0xe3,0xf3,0x0d,0x42,0xe8,0x37,0x20,0xe5,0x68,0x1c,0x13,0x23,0x86,0x46,0x5f,0x1b,0x85,0xd0, - 0x4d,0x29,0xf4,0xfb,0x49,0x5d,0x0a,0x9d,0x5c,0x27,0x84,0x8e,0x61,0xf2,0x44,0xe7,0x80,0xe0,0x8a,0x11, - 0xd4,0x9f,0x90,0x45,0x1f,0xa7,0xef,0x89,0x55,0x16,0xc2,0xb0,0x21,0x8e,0xfe,0xd1,0xb0,0x5c,0x5d,0xf2, - 0x68,0xc9,0x04,0x10,0x09,0x62,0x6d,0x09,0xa4,0x0d,0x58,0x30,0x4c,0x12,0x90,0xd3,0xa2,0x24,0x72,0x7a, - 0x08,0x83,0x00,0x44,0x29,0xa5,0xa4,0x1b,0xaa,0x34,0x94,0x5d,0x4f,0x64,0xdb,0xa0,0xe8,0x18,0x50,0x05, - 0xd1,0x9c,0x26,0x58,0xd5,0xd3,0x24,0x9d,0x30,0x7b,0x91,0xcc,0xce,0x34,0x2a,0x67,0x28,0x28,0x93,0x9e, - 0x21,0xff,0x3f,0x45,0x26,0xfd,0x56,0xf8,0x8a,0x2e,0x99,0x74,0xe6,0xc8,0xa4,0x9f,0xd0,0xbc,0x26,0x65, - 0x72,0x42,0xe8,0x70,0xe2,0xc8,0xa5,0xa1,0x66,0xe4,0x26,0x5a,0x01,0x8e,0x5b,0x1e,0x92,0xe9,0xaa,0x20, - 0x01,0xec,0x69,0x0c,0x74,0x42,0xd3,0x3e,0x8e,0x17,0x84,0x0e,0x31,0x09,0x11,0xef,0x24,0x9d,0xa2,0xea, - 0xdf,0xf3,0x84,0x37,0xe3,0xcf,0x8b,0xaa,0x1d,0x49,0xd6,0x0d,0x22,0xea,0x5a,0xcb,0x2e,0xf2,0xe3,0x6d, - 0x72,0x2f,0x62,0x62,0x51,0x4e,0xfe,0x3b,0xc4,0xd4,0x67,0xb3,0xfc,0x7f,0x2f,0x29,0xf5,0x63,0xdc,0x25, - 0x05,0x73,0xb7,0x74,0x52,0xe8,0x3e,0x12,0xa0,0xbe,0x60,0xc4,0x55,0x27,0xf1,0x09,0x71,0x31,0x3f,0xab, - 0xcb,0x94,0x06,0x80,0x35,0x23,0x84,0xb2,0x90,0x55,0xcb,0x85,0x38,0x07,0x54,0x50,0x0d,0x3a,0x7a,0x25, - 0xdf,0x3d,0x7f,0x08,0xee,0xb6,0x22,0xeb,0x73,0x60,0x32,0x3d,0x44,0x2a,0xce,0xe5,0x26,0xd4,0x2b,0xc4, - 0xd3,0x67,0x68,0x57,0x4b,0x8a,0x16,0x46,0x6a,0x2d,0x08,0x1d,0x14,0x0e,0x8e,0xac,0x9d,0x12,0x20,0xef, - 0xd3,0xe4,0xd6,0xc0,0xc7,0xfc,0x26,0xa1,0xaf,0x10,0xe6,0x85,0xcc,0x84,0x71,0x6b,0x4d,0x6e,0x94,0x5e, - 0x83,0xeb,0xd4,0xcc,0xbd,0x06,0x40,0xbe,0x7c,0xf5,0x21,0x68,0xcb,0xaf,0x51,0xde,0xe1,0xa9,0x34,0x47, - 0xc7,0xd8,0xac,0xa3,0xa6,0x91,0xf7,0x3a,0xbd,0xdc,0x54,0xa5,0x2e,0x2d,0x45,0xc5,0x1a,0x31,0x7c,0x43, - 0xed,0xa6,0xc8,0x14,0xf5,0x9b,0xa4,0xfd,0x75,0x6d,0xb4,0x44,0xdb,0x9f,0x30,0x5f,0x16,0x53,0x34,0x04, - 0xdc,0x37,0x4d,0x58,0xd7,0x69,0xcb,0xb9,0x51,0xd1,0x45,0x07,0xf5,0xe1,0x35,0xa5,0xdc,0xdf,0xe2,0xd9, - 0x04,0xeb,0x43,0xec,0x54,0x75,0x2f,0x30,0xac,0x6f,0x10,0x75,0xf3,0x82,0xe2,0xea,0xbe,0x66,0x54,0x4d, - 0x69,0xf7,0x8f,0x15,0x02,0x74,0xc4,0xdb,0x99,0x21,0xd3,0xe6,0xce,0xd2,0xfd,0x89,0xdd,0x73,0x97,0xef, - 0x4f,0x6f,0x9f,0x6e,0xc4,0x91,0x7c,0xa3,0xea,0x99,0xbd,0x0e,0xaf,0xdb,0xf3,0x0e,0xf1,0xf7,0x27,0x54, - 0xd6,0x3d,0xba,0x32,0x70,0x57,0x50,0xc6,0x8f,0xed,0x17,0x50,0x5e,0x1c,0x43,0x75,0xe1,0x94,0x2f,0xd4, - 0xa2,0x64,0x72,0x9b,0x6a,0x96,0x8b,0x32,0xb9,0x59,0xd2,0x4d,0xd7,0x9d,0x15,0xb1,0xb1,0xb0,0x9b,0x0a, - 0x10,0xb7,0x5a,0x94,0x3c,0x08,0x65,0x5b,0x15,0xd2,0xb7,0x5b,0xe4,0xfd,0x2a,0x83,0xc4,0x09,0x62,0x6f, - 0x5c,0xcb,0xd0,0x3b,0x2c,0x59,0xe4,0x7d,0x6d,0x53,0xdd,0x82,0xef,0xef,0x4d,0x19,0x9a,0xd7,0x1f,0x74, - 0xe9,0xe9,0xb2,0x86,0x26,0x12,0xe9,0x37,0xd1,0x62,0x84,0x82,0x40,0x79,0xd2,0x5a,0x81,0xe0,0x9f,0xa4, - 0x84,0x0b,0x7b,0x58,0x2e,0x47,0x0a,0x4e,0x2b,0x44,0x5b,0xd9,0x21,0x08,0x87,0xd4,0xb2,0x21,0x0a,0x3f, - 0x86,0xfc,0x2d,0x3d,0x3b,0x26,0xf4,0x4a,0x5c,0x45,0xb9,0x5c,0x0a,0xb2,0xd3,0x4c,0x0f,0xb5,0x8f,0x15, - 0x26,0xe0,0x27,0xaa,0x12,0x04,0x4b,0x9e,0x95,0x97,0x29,0x0d,0x63,0x86,0xfc,0x24,0xdb,0xc9,0xa7,0x18, - 0xaf,0x70,0xaf,0x82,0x25,0x3b,0x48,0x58,0xc6,0xfc,0x29,0xa0,0xb9,0x40,0x73,0xc0,0xf8,0x38,0xf5,0xd0, - 0xf8,0xcd,0x6e,0x90,0x8b,0x6b,0x8e,0xa0,0x21,0x19,0x77,0x19,0xe6,0x6e,0xf1,0x78,0x45,0xab,0x75,0x4a, - 0xc7,0xf7,0x93,0x62,0x79,0x62,0xc5,0xe3,0x8f,0x5d,0xca,0xab,0x2e,0x1c,0x7f,0x9b,0xcf,0x4e,0x20,0x83, - 0x6e,0x88,0x59,0x29,0xb9,0xcc,0x73,0x11,0xbf,0x76,0x4b,0xc8,0x93,0x54,0xdf,0x18,0x0e,0xb3,0xdd,0x25, - 0x26,0x07,0x85,0x8e,0xcd,0x9c,0x1b,0xca,0xd1,0x15,0x94,0x1b,0x9a,0x51,0x0b,0xcb,0xcf,0xc1,0x3b,0x24, - 0x5a,0x5c,0xce,0x8d,0x3b,0x22,0x42,0xa2,0x4d,0xaa,0xbb,0x99,0x33,0x8d,0xc4,0x7c,0x5d,0x45,0x6f,0x63, - 0x08,0x7b,0x3c,0x9f,0xfb,0xc1,0x15,0xb4,0xa1,0x2b,0xfd,0x6c,0x8f,0x1a,0xc6,0x83,0xc1,0x95,0x89,0x42, - 0x18,0xde,0x79,0x38,0x49,0x2f,0x7a,0xe3,0x19,0x91,0x93,0x91,0xce,0xed,0x85,0xfa,0xe7,0x55,0x8f,0x13, - 0x12,0x22,0xe9,0xc5,0x9b,0x6e,0xcf,0xca,0x74,0xed,0x57,0x6f,0xed,0xf5,0xfe,0x41,0x17,0x2e,0xd4,0xcc, - 0x22,0x4f,0x5e,0x86,0x88,0x8c,0xc0,0xc6,0x52,0xc6,0x78,0x96,0x8e,0xcf,0x4c,0xf2,0x53,0xfc,0xf0,0x7a, - 0xc4,0x09,0xb0,0xef,0x97,0xc8,0xdb,0xf5,0x1e,0xd5,0x7a,0x27,0xa8,0x2b,0xf2,0x59,0x3d,0x91,0x43,0x07, - 0x52,0xd2,0x0e,0xa5,0x99,0x7f,0x9d,0xec,0x59,0x7c,0x9c,0x50,0x8d,0xab,0xab,0x1e,0x43,0x44,0x6f,0xbd, - 0x76,0x4b,0xde,0xb1,0x9e,0xd9,0x19,0x5c,0xb4,0xcf,0x75,0x71,0x87,0x2c,0x1e,0x92,0x9f,0xe4,0x44,0x1a, - 0xc4,0x99,0xf5,0xd4,0xbe,0xb5,0xb7,0xae,0x04,0xd7,0x1b,0x8b,0xc0,0xf1,0x1f,0xab,0xab,0x87,0x57,0xce, - 0xd4,0x5a,0xfe,0xf2,0x4d,0x43,0x70,0xfe,0x8a,0xdf,0xdc,0x71,0xb4,0x55,0x7d,0x8b,0xc1,0xd1,0xad,0xe4, - 0x1c,0x36,0x3d,0x69,0x36,0x07,0x5a,0xa9,0x72,0xe1,0x03,0xac,0xb6,0xa0,0xb5,0x10,0xa4,0xf7,0xee,0xc2, - 0x73,0x23,0xad,0x3c,0x02,0xb4,0x18,0xa7,0xa2,0xce,0x68,0x60,0x01,0x82,0x68,0xcf,0xe0,0x75,0x8d,0xfb, - 0x05,0x6d,0x05,0xd2,0x80,0x09,0x82,0xa5,0x34,0xdf,0x08,0x13,0x92,0xbb,0x11,0x26,0x7a,0x51,0xd4,0x4b, - 0x27,0xff,0x47,0x41,0x86,0x44,0xf5,0x9b,0xc8,0xdf,0xff,0x62,0x60,0xe0,0x4f,0x5a,0xbf,0xff,0x4d,0x00, - 0x81,0x30,0x4b,0x0b,0x10,0x6a,0xab,0x2a,0xd7,0xe8,0xa3,0x87,0x08,0x68,0x60,0xd2,0x78,0x8c,0xbc,0xd2, - 0xfc,0x35,0x90,0xfb,0x0d,0xeb,0x8d,0x52,0xf5,0xea,0xb3,0x94,0xd0,0x39,0xb6,0x33,0x4e,0x65,0xf7,0x78, - 0xb2,0x1c,0x3b,0x2a,0xd2,0xfd,0x83,0x33,0x05,0x04,0x00,0x6f,0x46,0xde,0xfd,0xdd,0xaf,0xef,0x7b,0xf5, - 0xea,0x5e,0xef,0x62,0x1b,0x72,0xa3,0x99,0xb6,0x83,0xd5,0x23,0x18,0x98,0xb1,0x6d,0x00,0x08,0xc2,0xef, - 0x37,0x0c,0x1c,0x8f,0xc3,0x7f,0x71,0xd8,0x7b,0xd5,0xb0,0x1f,0x7c,0xe2,0xb0,0x65,0x5c,0xee,0xa0,0x6b, - 0x10,0x7a,0xa0,0x87,0x79,0xa4,0x38,0x82,0x2d,0x41,0x62,0x13,0xb2,0x4c,0xb8,0xb7,0xe8,0x8a,0x57,0x20, - 0xac,0x00,0x47,0x96,0x44,0x51,0x0f,0x6e,0x22,0xfd,0x44,0x40,0x0b,0x50,0x25,0xa1,0x76,0x37,0xaf,0x21, - 0xb7,0xa8,0x01,0x96,0xae,0xbe,0x15,0xd5,0x7a,0x91,0xc4,0x91,0xfe,0xfb,0x88,0x9b,0xe3,0xc8,0x39,0xf4, - 0x37,0xd2,0xa9,0xfd,0xbd,0x2e,0x80,0x26,0x38,0x0e,0xb9,0x58,0xb3,0x45,0x6e,0x81,0xff,0x3c,0xd4,0x0d, - 0x70,0x83,0xfc,0x15,0x71,0xfa,0xf6,0xa6,0x06,0x55,0xc7,0xd8,0xcc,0x28,0x54,0xab,0x17,0x69,0x8c,0x30, - 0xbc,0xf6,0x87,0xb9,0xd6,0xf6,0x41,0x09,0x5b,0x19,0xeb,0xf8,0x76,0x95,0xa3,0xd8,0xf8,0x22,0x3d,0x89, - 0xcb,0xbc,0x18,0xcc,0x68,0x87,0x97,0x44,0xea,0x35,0xbd,0xb6,0x7a,0x2c,0x7e,0x32,0x3e,0x60,0xad,0xcf, - 0xbc,0x60,0xa8,0x9b,0xf3,0xaf,0x92,0x59,0xe8,0xfd,0x8d,0x68,0x0a,0x4f,0xc1,0xce,0x29,0x4c,0x14,0xfb, - 0x54,0xbd,0xca,0x88,0x46,0x9f,0xa6,0x9a,0x37,0x60,0x3c,0x63,0x9e,0x9c,0xb7,0x76,0xd5,0x42,0x9e,0x71, - 0xb7,0xf6,0xf4,0x97,0x10,0xe3,0xf4,0x53,0x97,0x79,0x4e,0x6c,0xd4,0x18,0xe3,0x0a,0xbd,0x95,0x61,0x67, - 0x5e,0x17,0xf9,0x09,0x0b,0x0e,0x6c,0x2d,0x97,0x16,0xa7,0x44,0xe1,0x71,0xf7,0xe3,0x63,0x04,0x1c,0x95, - 0xb7,0x49,0xf3,0x98,0x59,0x3d,0xac,0xeb,0x0e,0xf8,0xb9,0xd8,0xd8,0x39,0xd5,0x12,0xf1,0x46,0x24,0xe3, - 0xc5,0xd7,0xab,0xe9,0x14,0xaf,0x5d,0xbb,0x35,0xc2,0x9b,0x73,0x1d,0x6a,0x14,0x37,0x6a,0xed,0x99,0x79, - 0x1e,0x5e,0x25,0xfa,0xf9,0x84,0xc6,0x95,0xce,0x43,0x6f,0x77,0xc0,0xff,0xaf,0xde,0x93,0x6b,0x25,0xf4, - 0x30,0x77,0xeb,0x45,0xd7,0x9a,0xc3,0xa2,0x91,0x59,0x26,0x0b,0x71,0xe2,0xab,0x17,0x51,0x0c,0xd5,0x6d, - 0xa7,0xac,0xbf,0xf8,0xc8,0x2c,0x4c,0x71,0x78,0xdf,0x96,0x87,0x8e,0x5a,0x9d,0x64,0xd3,0xdb,0xd3,0x86, - 0xf6,0xe8,0x74,0xc7,0x1f,0xdb,0x4d,0xd7,0x9f,0x45,0xac,0x48,0x95,0xcb,0xb9,0xcf,0x1d,0xd8,0xfc,0xd2, - 0xce,0x85,0x25,0xd1,0x5c,0xc6,0xca,0xa1,0xa5,0x13,0xc8,0x9f,0xb7,0x78,0x3d,0x64,0xb1,0x2b,0x79,0x2e, - 0xff,0x36,0x42,0x5c,0x76,0xcd,0x67,0x05,0xb0,0x95,0xa0,0x50,0xdc,0x21,0x39,0x02,0xc2,0x07,0x8a,0xb0, - 0xbd,0x06,0x43,0x02,0x3c,0xe9,0x92,0xf8,0xb5,0xf0,0x8a,0xe6,0xfe,0xf8,0xb5,0xce,0x49,0x26,0x90,0xb3, - 0xc9,0x98,0xe7,0x9a,0x42,0x96,0xa2,0x97,0xe7,0x90,0x8a,0xd9,0xef,0xa7,0x3f,0xe9,0xae,0x1d,0x79,0x96, - 0xc9,0xac,0x44,0x56,0x9c,0xe2,0x0a,0xa6,0x68,0xfb,0x0d,0x91,0x8d,0xd9,0xd5,0x09,0x6e,0x2c,0x0c,0x32, - 0xe0,0x22,0xdf,0xf2,0xd4,0x10,0xef,0xea,0x47,0x5a,0xce,0x29,0x12,0x28,0xca,0x5e,0x24,0x36,0xc1,0x65, - 0x19,0x64,0x48,0xe2,0xd4,0x7f,0xd2,0x34,0xbf,0xd4,0xde,0xc7,0xcb,0x81,0x7b,0x30,0xd1,0x8c,0x8e,0xf1, - 0x6b,0xc3,0x60,0x33,0xb9,0x80,0xa8,0x37,0xbe,0xc7,0x9f,0x9e,0xf1,0x4f,0xae,0x8d,0x0f,0xcd,0xe0,0xe0, - 0x36,0xf0,0xd4,0x78,0x06,0xdc,0x23,0x84,0x80,0x8b,0x79,0x60,0x0f,0x61,0x84,0xa0,0x5a,0x82,0xa5,0x7e, - 0x6a,0x1c,0x6a,0x78,0x13,0x1a,0x34,0x65,0x1a,0x9c,0xa8,0x29,0x08,0x5e,0x15,0x76,0x8c,0x0c,0xa3,0xef, - 0x3d,0xb4,0x53,0xa1,0x09,0x19,0xb3,0x93,0xea,0xa0,0x01,0x93,0x37,0x6c,0xd8,0x25,0xb3,0xf7,0xa5,0xdd, - 0x61,0xfc,0x70,0xef,0xfe,0x7d,0xfa,0xd3,0x8f,0xf6,0x1e,0x04,0x3a,0x24,0x46,0x2c,0x3e,0x11,0xe3,0x68, - 0xfb,0x2e,0xb2,0x1e,0x46,0x77,0x6d,0x89,0xd4,0x96,0x28,0x07,0xd5,0x36,0x44,0x05,0xf5,0x5c,0xdb,0x87, - 0x28,0xa5,0x94,0x4a,0x5a,0xe6,0x07,0x83,0xf2,0x34,0xc9,0x5c,0xcf,0xc6,0x92,0x5d,0x09,0x8c,0x36,0x16, - 0x11,0xc1,0xd0,0xc6,0x6c,0x57,0x6e,0xb2,0xb1,0x50,0x5d,0x3a,0xb2,0xb9,0x2b,0x2c,0x66,0x67,0xee,0xa2, - 0xcc,0xe7,0x9d,0x7b,0xa6,0xf1,0x24,0x2d,0xf0,0x3a,0x70,0xfe,0x5f,0x51,0x87,0x8b,0xd3,0xfc,0xf2,0xa5, - 0x8b,0xf8,0x3b,0xc3,0xec,0x02,0x0e,0xb3,0x1a,0x1c,0x46,0x57,0xfa,0x66,0xa1,0xeb,0x43,0xa4,0x8f,0xe5, - 0x5a,0x49,0x34,0x85,0xac,0x0d,0xb0,0xb7,0x6f,0x8f,0x89,0x42,0x2d,0xf0,0x9d,0x2f,0x4b,0xbf,0xa3,0x44, - 0xa0,0x3a,0x12,0x23,0xc2,0xe0,0xa6,0x8e,0x33,0xdf,0xc6,0x48,0x04,0x75,0x6c,0x38,0x25,0x6b,0xf5,0x20, - 0xb9,0x07,0x52,0x95,0xa8,0x9d,0xee,0x79,0x6a,0x82,0xa5,0xa3,0x49,0x9e,0x4d,0x2b,0x53,0x4f,0xc8,0xaf, - 0xcd,0xa8,0xbb,0x94,0xa6,0x04,0xba,0x47,0x66,0xe9,0x67,0xc2,0x35,0x22,0x67,0xaa,0x9b,0xaf,0x1b,0x11, - 0x31,0x31,0xe0,0x08,0x99,0x20,0x67,0xc3,0xf3,0x86,0x08,0xa2,0xa5,0x95,0x1a,0x93,0x91,0xf7,0xfd,0xfe, - 0xfe,0xeb,0x9e,0xf9,0xd9,0x43,0x48,0xfa,0x9e,0xd7,0xaf,0x0a,0x0c,0xf4,0x45,0x85,0x14,0x96,0x51,0x8f, - 0x60,0x34,0x67,0x72,0xbd,0xd0,0x06,0xdd,0x93,0x91,0x36,0xa1,0x01,0x11,0xb5,0xfc,0x32,0xe8,0x7b,0x87, - 0xd9,0x61,0xe6,0xf5,0x0b,0xc5,0x01,0xd9,0x1c,0x31,0xf3,0xb5,0x16,0xe3,0xf1,0x87,0x34,0x67,0x27,0xd3, - 0xbe,0xb7,0x13,0xcf,0xd3,0x1d,0x7d,0xc7,0x37,0x01,0xb8,0x2b,0x0c,0x7d,0xa9,0x43,0x65,0xf9,0x66,0x06, - 0x91,0xa4,0x10,0xf0,0x0e,0x74,0x6c,0xc0,0x41,0x7d,0xf5,0x06,0x60,0xd3,0xe0,0xb7,0x9b,0xa1,0xd1,0x39, - 0xdc,0x5e,0xa0,0x87,0xec,0x48,0x7f,0x3f,0x6b,0xd8,0xd5,0x35,0xf9,0xb9,0x43,0xaf,0x6a,0xfe,0x99,0xe1, - 0x3b,0x36,0x6e,0x66,0x0a,0x5a,0x0a,0xfd,0x79,0xab,0x2e,0xf6,0x35,0x9f,0xbb,0xea,0x5c,0xeb,0x4f,0xad, - 0xba,0xee,0x4f,0x0f,0xb9,0x26,0x38,0xfe,0xac,0x81,0x1b,0x62,0x65,0x87,0x0d,0x5e,0x3b,0xc6,0x0f,0xe7, - 0xbe,0xdd,0x53,0x30,0x88,0xcb,0x92,0x4d,0x92,0x3c,0xd0,0x3f,0x57,0xab,0x36,0xa9,0xa4,0x4b,0xd4,0x53, - 0x57,0xab,0xdd,0x1a,0xcd,0xd4,0xf6,0x5e,0x6c,0xab,0x49,0xa1,0x20,0xa8,0xee,0xb1,0xdd,0x61,0xf1,0xb0, - 0x91,0x6d,0x5c,0xea,0x17,0x26,0x32,0x7b,0x1a,0x35,0x4a,0x1c,0x14,0x47,0x84,0x69,0x6d,0x79,0x89,0x9b, - 0x55,0xd9,0x01,0x85,0xe9,0xa0,0xfa,0xe1,0x8c,0x6e,0x1f,0x72,0x80,0x74,0xe0,0xfc,0x42,0xa6,0x99,0x7d, - 0x5a,0x9b,0xb8,0xbd,0x18,0xeb,0x15,0x1e,0xed,0x8e,0x76,0x91,0xa2,0xa7,0xed,0xde,0x97,0xad,0x82,0xb6, - 0x18,0xd1,0x40,0xe7,0xa2,0x28,0xe6,0xef,0xdd,0x4e,0x69,0x2a,0x1f,0x17,0xaf,0xa6,0xbf,0x26,0xc9,0x59, - 0xf0,0x88,0xc6,0xa6,0xb5,0xc5,0xfc,0xbb,0xad,0xac,0x4b,0xab,0x32,0xe6,0xdf,0x6f,0xd7,0x33,0x6a,0x63, - 0xfe,0x57,0xad,0xbc,0xa9,0x68,0x8e,0xf9,0x7b,0x5f,0xb6,0xb2,0x16,0x46,0x7f,0xcc,0xbf,0xd7,0xee,0x70, - 0x21,0x4a,0x64,0xfe,0x97,0xad,0xee,0x10,0xcd,0xac,0x5a,0x70,0xcc,0x2b,0x82,0xa3,0x99,0x4f,0x07,0x78, - 0x17,0xc2,0x2d,0xd8,0x37,0x1e,0x3c,0xfe,0x1c,0xe0,0x0b,0xf1,0xff,0xb9,0x47,0xd7,0xce,0x45,0xaa,0xff, - 0x99,0x33,0x5c,0x1f,0x7d,0x85,0x7e,0x98,0xdc,0xfd,0x4c,0x9c,0x4f,0x55,0x76,0xb4,0xb9,0x45,0xf7,0x19, - 0xee,0x3a,0x50,0x81,0xeb,0x63,0x64,0x0b,0x91,0xf3,0xc0,0x96,0x71,0xe0,0x37,0x76,0x42,0xbc,0x3b,0xcc, - 0xcd,0xd9,0xd2,0x47,0x2a,0x37,0x47,0xca,0x5c,0x15,0xf0,0x1d,0xc6,0xf1,0x8f,0x8a,0x11,0x11,0x12,0xe1, - 0x62,0x8b,0xbe,0x38,0xf6,0xf4,0x16,0x5c,0x9e,0xd6,0x02,0xdb,0x11,0x77,0xac,0xd2,0x7e,0xb4,0x58,0xe3, - 0xb6,0xa1,0xf1,0x46,0xb1,0x4a,0x06,0x35,0x5a,0x3f,0x7a,0x01,0x6f,0xe6,0xd3,0x59,0x8e,0x38,0x7b,0x3b, - 0xa6,0xd3,0xc0,0x29,0xc6,0x40,0xb3,0x6e,0xbd,0x33,0x76,0x2f,0x56,0xa2,0x09,0x61,0x8e,0x59,0x29,0x9f, - 0x98,0xa5,0x2c,0xde,0x9c,0x58,0xb1,0xf6,0xd5,0xa3,0x2a,0x16,0xcd,0xbd,0x58,0x06,0x26,0xb5,0xc6,0xb3, - 0xd5,0x4a,0x38,0x19,0x96,0x93,0xab,0x15,0xd0,0x89,0xc2,0xdb,0xd5,0x73,0x28,0xa5,0x62,0xf4,0x6a,0x59, - 0x26,0x55,0x38,0xbf,0x5a,0x16,0x52,0xc0,0x08,0xd6,0x12,0xd3,0xb9,0xcb,0x13,0xd6,0x7b,0xb1,0xe9,0x96, - 0x4d,0xac,0xe5,0xeb,0xc4,0x75,0x13,0x7c,0x10,0x1e,0xf8,0x13,0x81,0xba,0xb1,0x2d,0x04,0xd1,0x2d,0x2a, - 0xba,0xda,0x08,0xa2,0x95,0xcd,0x4e,0x76,0x5f,0xb8,0x96,0x33,0xb3,0xbb,0x58,0x5e,0xb7,0x8b,0xfa,0x06, - 0x06,0xfb,0xc3,0x5f,0xcd,0xbe,0x33,0x26,0xe1,0xbb,0x48,0x2f,0xaf,0xa6,0xb1,0x8f,0x73,0x68,0xe6,0x5b, - 0x76,0xce,0xb7,0xac,0xcd,0xd7,0xde,0xc4,0x5d,0x1c,0x43,0x6d,0xae,0x9d,0x4c,0xdf,0x46,0xd8,0xd5,0x4c, - 0x05,0x91,0x57,0x27,0x09,0x1d,0x49,0x9b,0x60,0x69,0x76,0xc3,0xc4,0xbb,0x5d,0xea,0x48,0x8a,0xf5,0xda, - 0xfd,0xbe,0xaa,0x27,0x48,0x88,0xc5,0xde,0x5e,0x68,0x93,0xed,0x70,0x22,0x6f,0xc7,0x73,0x82,0x26,0xf6, - 0xee,0x76,0x96,0xd9,0xae,0x95,0xb9,0xd7,0x59,0xe6,0xf0,0xb0,0x56,0xe8,0x7e,0x67,0xa1,0x95,0xa7,0x9a, - 0x33,0x5d,0xaf,0xd5,0xdd,0x07,0xbb,0xbc,0x5c,0x6d,0x76,0xcb,0x5d,0x2d,0x66,0x0d,0xec,0x22,0x68,0x9f, - 0x74,0xd5,0x12,0x51,0x0b,0x84,0x20,0x0d,0x23,0x0d,0x85,0xa3,0x16,0x31,0x6d,0xbd,0xef,0x55,0x52,0x2a, - 0x73,0x4c,0xcd,0x5d,0x6e,0x7c,0xaa,0xbb,0xe6,0x01,0x9e,0x09,0x58,0xb9,0xa9,0xae,0x10,0xd3,0x7a,0x95, - 0x77,0x43,0xbd,0x90,0xba,0x25,0x73,0xe4,0x08,0xd2,0x86,0x7a,0x1b,0xf4,0x02,0xf1,0x9f,0x07,0xa6,0x9c, - 0xf8,0xfc,0x33,0x2b,0x5c,0xaf,0x8c,0x31,0x70,0xc6,0x97,0xa1,0x79,0x8e,0xe8,0x1a,0xe7,0xba,0x7b,0x09, - 0xf6,0x93,0x0f,0xe5,0x9f,0x5b,0x86,0x1e,0x1f,0x97,0x76,0x31,0x08,0xb7,0xed,0x33,0x87,0x17,0x7c,0xe6, - 0xfa,0x7c,0x42,0xdb,0x30,0x1c,0xa1,0x76,0xf5,0x7a,0x7d,0x42,0x05,0xb1,0x2b,0x31,0x55,0xee,0x7e,0x4a, - 0x95,0x9a,0xb9,0x89,0xa9,0x69,0x56,0xbe,0xb7,0x69,0x2e,0xe9,0xdc,0xc0,0xf7,0x27,0x74,0x51,0xb3,0x59, - 0x31,0x5d,0x3c,0xf8,0x8c,0x9a,0xa9,0xd8,0xb0,0x98,0xaa,0xcd,0xed,0xbf,0x69,0x7f,0x2a,0xd0,0x40,0xf4, - 0xde,0x96,0xfa,0xcc,0xf5,0xd7,0xe8,0xc8,0x91,0x13,0x24,0x2d,0x39,0x15,0x4b,0x00,0xc2,0xcd,0x5c,0xdd, - 0x9f,0xe4,0x4b,0xab,0xb9,0x7c,0x2e,0x85,0xd5,0x1c,0x60,0x17,0x86,0xbe,0x79,0x46,0xa0,0x36,0x1a,0x6a, - 0x43,0xdd,0xd7,0x14,0x1f,0x22,0xbd,0x52,0x2e,0xea,0xdf,0x65,0x99,0x9e,0x2b,0xa8,0x27,0xb2,0x4a,0x28, - 0x2e,0x3c,0x15,0xc0,0x2f,0x24,0x6c,0x29,0x86,0xec,0x9c,0x0d,0xae,0x5e,0xbd,0x69,0x0a,0x97,0x57,0x56, - 0xee,0x48,0x8b,0xf9,0x8d,0x04,0x92,0x7e,0xf2,0xf1,0x39,0x67,0xcb,0x38,0xbe,0x45,0x31,0x8e,0xd7,0x9d, - 0x2c,0xe0,0x11,0x52,0xcb,0x2e,0x58,0xfa,0x4d,0x13,0x0a,0xef,0x7d,0x99,0xdc,0x57,0x79,0xf6,0x4b,0xfd, - 0x91,0xa0,0x16,0x3c,0xa8,0x39,0x30,0x26,0xbf,0x0a,0xb8,0xd6,0xf2,0xf7,0x76,0x77,0xbf,0x10,0xcc,0x9c, - 0x4c,0x76,0x08,0xaa,0xf2,0x32,0x46,0x30,0xf4,0x61,0xeb,0xda,0xad,0x14,0xa5,0x10,0xc6,0xe2,0xbf,0xfe, - 0xce,0xad,0x6f,0x46,0xf7,0xb5,0xdb,0x98,0x96,0x23,0x13,0xc5,0xf7,0x8d,0x2b,0x4b,0xab,0xca,0xcf,0x1a, - 0x1c,0x42,0x6d,0x2d,0xe2,0x67,0x2d,0x75,0xbd,0xe9,0xb6,0x5e,0xad,0x92,0x2e,0x61,0x2d,0x38,0x42,0x89, - 0xf0,0xd8,0x90,0xd7,0x8a,0x14,0xa0,0x29,0xc4,0xed,0x16,0xc8,0x19,0x08,0xd5,0x02,0x4a,0xba,0x26,0x77, - 0x77,0x83,0x60,0x5d,0x53,0x50,0xeb,0x1e,0x1e,0xc7,0xc9,0x73,0x7a,0xf9,0xeb,0xbd,0xaa,0x5a,0x7d,0x40, - 0x79,0x47,0x83,0x78,0x45,0xe9,0x16,0x5d,0xef,0x3a,0x24,0x7d,0x3b,0x82,0x37,0x07,0xef,0xe6,0x55,0x37, - 0x6c,0x47,0x46,0x6c,0x47,0x3d,0x4a,0x76,0x83,0x73,0x58,0x07,0x43,0xc3,0x55,0x94,0x12,0x93,0xc8,0x48, - 0x07,0xd0,0xf8,0xc6,0x36,0x8b,0x7e,0xa4,0x53,0x0f,0xb2,0x23,0x79,0x23,0x1d,0x5e,0xc3,0x93,0x14,0x3b, - 0xf5,0x36,0x82,0xb5,0x48,0x17,0x74,0xac,0xde,0x8d,0xdd,0x68,0x81,0x79,0xb3,0x2b,0x8c,0x79,0x83,0x64, - 0xbf,0x4d,0xdd,0xba,0x1c,0x9e,0xba,0x6a,0x88,0x55,0xf6,0x92,0x7b,0xa2,0xc1,0xb0,0x08,0xd3,0xbf,0x42, - 0xc0,0x3b,0x5b,0x7d,0x1d,0xf1,0xae,0x37,0x1d,0xd2,0xee,0xa6,0xb6,0xe3,0xe6,0xf3,0x21,0x05,0x04,0xf4, - 0x9a,0xef,0x77,0x15,0x41,0xcf,0x57,0x07,0xd4,0x77,0x17,0xe1,0xce,0x0e,0xde,0x88,0xb4,0xc6,0x2e,0xad, - 0xc1,0x82,0xb5,0x76,0x91,0xc6,0x2b,0x72,0x92,0xe4,0x10,0xc4,0xee,0xbc,0x5f,0x30,0xdf,0x26,0x31,0x69, - 0xc2,0x2b,0x63,0xf5,0x50,0x75,0xa9,0xce,0x12,0xb0,0x3a,0xc2,0x15,0x0c,0xaa,0x77,0xa7,0x75,0x6b,0xa5, - 0x36,0x73,0xca,0x40,0x08,0x74,0xcd,0x2e,0x10,0xd2,0xab,0x96,0xa0,0xb7,0xf9,0xd1,0xae,0x95,0xe2,0xd7, - 0xb2,0xe1,0xb0,0x98,0x06,0x7a,0x9e,0x94,0xc5,0x47,0x3b,0xa0,0xa1,0x1d,0xcc,0x2c,0x2e,0xe1,0xc5,0x38, - 0x2e,0x55,0x95,0x44,0x48,0x2a,0xc3,0xbf,0x9f,0x2c,0x1d,0xa9,0xef,0xc0,0x86,0x7d,0x6b,0xaf,0xb8,0xc3, - 0x7f,0x7d,0x82,0xf4,0x90,0x03,0x0c,0xd9,0xeb,0xcd,0x61,0xa7,0x87,0xd5,0xe9,0xb5,0x72,0xc0,0x86,0xa4, - 0xc7,0x10,0x91,0x4d,0x61,0x60,0xb3,0x58,0x3d,0xbb,0xfe,0x42,0x6b,0xce,0x56,0xb3,0x46,0x5d,0xe2,0x97, - 0x19,0xf1,0x04,0x3c,0xd2,0x76,0x17,0xa5,0xd3,0x47,0x2c,0xe5,0x66,0xd1,0x5f,0xe1,0x88,0xfe,0x6a,0x72, - 0xbf,0xc2,0x95,0xce,0x59,0xa1,0x5f,0x51,0x4d,0x0e,0x53,0x2a,0x1a,0x22,0xbc,0xa2,0xf6,0x22,0x46,0xd9, - 0x56,0x2c,0xa8,0x2a,0xf1,0x58,0xe8,0x17,0x03,0x91,0xef,0x8d,0xf6,0xc2,0xdd,0x60,0x45,0x3f,0xb5,0x50, - 0x6f,0x74,0x57,0xff,0xb6,0x92,0xbc,0xd1,0x7d,0x53,0x42,0x8b,0xef,0x46,0x5f,0xe9,0x04,0x91,0xd9,0x8d, - 0xf6,0xbe,0xd4,0xbf,0x8d,0xa0,0x6e,0x74,0xcf,0x34,0x22,0xd2,0xb9,0xd1,0x97,0x68,0x82,0x8e,0x6e,0x0b, - 0xc7,0xd4,0x45,0xc1,0xaa,0xfc,0xab,0x92,0x80,0x86,0xc8,0xee,0x7a,0x59,0x00,0x5d,0xb4,0x74,0x74,0xdd, - 0x87,0xf6,0xe6,0xdb,0xd1,0x86,0xad,0x6f,0xed,0x60,0x5d,0x5c,0x5b,0xc9,0x67,0x09,0xc7,0x54,0x42,0xd9, - 0x07,0xf7,0x1b,0xc2,0x57,0x2b,0x62,0xdd,0xaa,0x44,0xaa,0x5b,0xae,0x08,0x75,0xcb,0x11,0x99,0x6e,0x59, - 0x11,0xe9,0x96,0x23,0x11,0xdd,0xb2,0x02,0x50,0x89,0x56,0x2a,0x9e,0x24,0x3a,0xa7,0x94,0x5c,0x3f,0x27, - 0x1d,0xae,0x36,0x41,0xb8,0xda,0x4e,0xd5,0xee,0xbf,0x26,0xf0,0x6a,0x8a,0x3e,0x55,0x4b,0x9c,0xf9,0x57, - 0xb7,0xbe,0x25,0xda,0xbc,0x59,0x10,0x34,0xa9,0xcb,0x43,0x37,0x6f,0xbf,0x8c,0xf0,0x5a,0x00,0x70,0xb6, - 0x7c,0x9e,0x66,0xe1,0x5d,0x35,0xb1,0xa6,0xb4,0xce,0xce,0x6c,0xe8,0xaf,0xb5,0x37,0xcd,0x0e,0x6b,0xbb, - 0x83,0x90,0x22,0x29,0xa5,0xc4,0x0c,0xee,0x9d,0x0f,0xbb,0x9e,0x37,0x84,0x5a,0x53,0x46,0xc4,0xc6,0xa3, - 0x68,0x77,0xe4,0xf5,0xbd,0xd0,0xdb,0xf6,0x0c,0xc1,0xee,0x6b,0x12,0x23,0x3e,0x5e,0x20,0xb0,0xfb,0xff, - 0xf8,0x72,0xd7,0x48,0x79,0xa9,0x82,0x43,0x7c,0x24,0x3b,0x5f,0xee,0x06,0xa8,0xaa,0x8a,0x87,0x7b,0xbb, - 0xd2,0x9e,0xb7,0xeb,0x05,0x8a,0xfe,0x16,0x5a,0xb8,0xe4,0x6a,0xfe,0x74,0x83,0x48,0xa7,0xe4,0xf8,0xb3, - 0x5f,0xdc,0xaa,0x6e,0xa2,0x2b,0xd1,0xbe,0x06,0x49,0x40,0x0b,0x2f,0xfa,0xd6,0xfa,0x0e,0xe4,0x1f,0x95, - 0xb2,0xb3,0x4e,0x35,0xbf,0x8d,0xaa,0xb4,0xb9,0x30,0xf9,0xd7,0xfa,0x33,0x9f,0x1e,0x85,0x50,0x11,0x59, - 0xd1,0x86,0xc9,0xf3,0x5e,0xba,0x23,0x96,0x07,0x6b,0x91,0x55,0x5e,0x53,0xa5,0xd1,0xa4,0xcf,0x2f,0xc9, - 0x0b,0xf8,0x52,0x71,0x52,0x79,0xda,0x1b,0x9c,0xe9,0x3b,0x7d,0x0e,0xaa,0x45,0x7a,0xb8,0xb7,0x66,0xfd, - 0xf3,0x6b,0x1a,0xa1,0xbb,0x76,0x37,0x8a,0xae,0x69,0x23,0x30,0x21,0x25,0xdc,0x6c,0x5e,0xed,0x87,0x7b, - 0xa3,0xee,0x8c,0x68,0x2f,0xec,0xce,0x78,0xb4,0xf7,0xa5,0xd1,0x1c,0xed,0xa8,0xf4,0xa5,0x7e,0x5c,0x77, - 0xb3,0x64,0xa7,0x0c,0xe1,0xd3,0x5d,0x33,0xd8,0x54,0x4b,0x9f,0x9d,0x0d,0xb5,0x86,0x20,0xdd,0xe1,0x0c, - 0xc6,0x1f,0x5e,0xdf,0xed,0xc3,0xee,0x06,0x86,0x1b,0xfb,0x15,0x24,0x21,0x5a,0x92,0xbb,0xac,0x16,0x09, - 0x3d,0x4d,0x62,0x1b,0xae,0x59,0xe6,0x7e,0x5f,0xdd,0xbd,0x76,0x1f,0x74,0x7c,0xd7,0x26,0x28,0x01,0x54, - 0x9c,0x0a,0x9f,0xc8,0x3a,0x3a,0x0d,0xac,0x56,0x80,0x51,0x66,0x18,0xc7,0x6e,0x6a,0x8d,0x89,0x6c,0xaa, - 0xf7,0x38,0x4c,0x5d,0x4b,0xf3,0xe7,0x7a,0xd6,0xae,0x31,0xf4,0x1a,0x5b,0x79,0x33,0x46,0x11,0x05,0x8e, - 0xfa,0x50,0xbb,0xc7,0xf2,0x67,0xd8,0xce,0xae,0xb1,0xa9,0x8e,0xb6,0x5d,0x16,0xb4,0x43,0xf1,0x69,0x03, - 0x43,0x45,0x7c,0x83,0x60,0xac,0xa4,0x0d,0x4b,0x15,0xe2,0xaa,0x67,0x36,0xf1,0x57,0xd2,0x01,0x6e,0x7f, - 0x9d,0x07,0x73,0xe6,0x70,0xdd,0xed,0x59,0x5b,0x01,0xb9,0x48,0xe5,0x6e,0x7b,0x53,0xa9,0x61,0xb6,0x11, - 0x1b,0x8b,0x06,0x1d,0xcd,0xcd,0x68,0x57,0xb9,0x39,0x95,0x0a,0x67,0xc4,0x4a,0xee,0xd0,0x13,0x5f,0x42, - 0x75,0xee,0x8a,0x10,0xe0,0xcf,0x95,0xc5,0x56,0x1b,0xef,0x01,0x3e,0x37,0xf4,0xb1,0x5a,0xdd,0xbd,0x2e, - 0xf3,0xde,0x75,0x99,0xdd,0x83,0x93,0xbb,0xb7,0x72,0x6d,0xd4,0x90,0x68,0x37,0xc7,0xc2,0x0e,0x93,0x6b, - 0x11,0x52,0x45,0xf7,0x17,0x01,0xc1,0x7c,0x62,0xa0,0xbf,0x68,0x15,0x56,0xd0,0x27,0xa6,0x3e,0xbe,0xcf, - 0x97,0x05,0xc7,0xac,0xc0,0x7d,0xdb,0xe7,0xa4,0x17,0xe2,0xd6,0x93,0x12,0x0b,0x4e,0x74,0xee,0x69,0x7b, - 0x99,0x37,0xdb,0x13,0x9d,0x59,0xdc,0xe2,0xf8,0x4f,0xa5,0x55,0xc5,0xeb,0x4b,0x13,0x45,0xa0,0xe2,0x68, - 0x43,0x01,0x97,0xa0,0xe8,0x17,0x46,0xed,0x70,0xfb,0x2e,0x53,0x0a,0xfd,0xd4,0x49,0xb0,0xc1,0x83,0x38, - 0x27,0xab,0x15,0xed,0xf9,0x5e,0x3f,0xee,0x7b,0xec,0x7d,0x4b,0x6b,0x87,0x5b,0x85,0xcc,0xb6,0x82,0xb8, - 0x85,0xa3,0x4a,0x66,0x81,0xb3,0x09,0x2b,0x7e,0x50,0xbe,0x0d,0xfd,0xcd,0xcf,0xaf,0xbf,0xf8,0xbc,0x7e, - 0xb5,0x4a,0xb7,0xd3,0xbf,0x55,0x78,0x76,0xcf,0x5f,0x97,0x9a,0x66,0xe4,0xfd,0x8d,0x36,0xb4,0x61,0x60, - 0xb6,0xa9,0xdf,0x36,0x4a,0x77,0x7a,0x87,0x42,0xf9,0xfa,0xff,0x03,0x4f,0xd9,0xea,0x2c,0xef,0x23,0x02, - 0x00}; + 0xed,0xbd,0xfb,0x7a,0xdb,0x46,0xb2,0x2f,0xfa,0x2a,0x14,0xc6,0xdb,0x06,0x42,0x88,0x92,0x7c,0xc9,0x24, + 0xa0,0x61,0x8e,0x2f,0xb9,0x38,0x89,0x2f,0x2b,0x56,0x9c,0x49,0x24,0x8d,0x17,0x44,0x82,0x12,0x2c,0x0a, + 0xe0,0x80,0xa0,0x64,0x47,0xe4,0x03,0x9d,0x7f,0xcf,0x23,0xec,0x27,0x3b,0xf5,0xab,0xea,0x6e,0x74,0x03, + 0xa0,0x64,0x27,0x7b,0xad,0xb3,0xbf,0xfd,0xed,0x99,0x2f,0x16,0xd8,0xf7,0x4b,0x75,0x75,0x55,0x75,0x5d, + 0xe8,0x0e,0x94,0x1d,0x68,0xb4,0xfe,0x6b,0xca,0x2b,0xa0,0xe8,0xf1,0x66,0xcf,0x0c,0xa3,0x44,0x9d,0xd4, + 0x00,0x2b,0x9e,0x85,0x7f,0x85,0x5c,0x0d,0xc7,0x96,0xab,0x07,0xdd,0x1a,0xbc,0xba,0xd0,0x9a,0xb2,0x33, + 0xe5,0x76,0xc2,0xf7,0x88,0x8a,0x5e,0x87,0x88,0xec,0x32,0xcf,0xe0,0x93,0x4c,0xfb,0x19,0xd3,0x0a,0xb2, + 0xc6,0x83,0x18,0xfb,0x89,0xc0,0x96,0xd6,0x9e,0xc3,0xbc,0x23,0xa2,0xb5,0xcc,0x3c,0xbe,0x4f,0xf5,0xa8, + 0xbf,0x4f,0x3b,0xfb,0xff,0x1e,0xfd,0x4f,0x32,0xf4,0x7f,0xd1,0x8d,0x39,0xce,0x69,0x08,0xd3,0x8c,0x1a, + 0x3d,0x0a,0x4f,0xea,0x86,0xff,0x6d,0x1a,0xfe,0x37,0xed,0xcd,0xc7,0x3a,0xe3,0x3b,0x93,0xf1,0x1d,0x65, + 0x1c,0x67,0xf1,0xce,0xc1,0xe1,0x65,0x30,0xe8,0x1f,0x6e,0xbf,0xbb,0x75,0x78,0x74,0xb4,0x13,0xbe,0x43, + 0xdc,0x80,0x77,0xc4,0x63,0x5c,0xf2,0xc7,0xd8,0x0b,0xf7,0xeb,0xda,0x74,0x79,0xa9,0xda,0x73,0xda,0xc4, + 0xb3,0x3a,0xe3,0xd4,0x64,0x9c,0x52,0xc6,0xd3,0xac,0xd3,0x9a,0x97,0x03,0xd6,0xed,0x44,0xfe,0xa0,0x1f, + 0xec,0xd4,0xe1,0x18,0xc4,0xd8,0x72,0x67,0xe8,0x8f,0xb6,0x0e,0xfe,0xe5,0x1f,0x7d,0x71,0x18,0x04,0x3b, + 0x27,0x1d,0x4a,0x69,0x62,0xaf,0x99,0xd6,0x6e,0x5c,0xa5,0x22,0x94,0x09,0xcc,0x8b,0x28,0x1e,0x23,0x0e, + 0x10,0xbb,0x55,0x05,0xf3,0x39,0x8a,0xcb,0x3a,0xf0,0x0f,0x03,0x51,0x05,0xcf,0x74,0x34,0xeb,0x7f,0x6d, + 0x6f,0xef,0x84,0x1f,0xe8,0xe3,0x70,0xf1,0xc5,0x56,0x76,0x0e,0xfb,0xe9,0x24,0xaf,0x6e,0xed,0x84,0x8f, + 0xb3,0x2e,0xad,0x87,0x37,0x2a,0x74,0x3d,0x01,0x4a,0x2a,0x31,0x07,0x01,0xa3,0x86,0xdf,0xaa,0x6c,0x6b, + 0x8d,0x0f,0xaa,0x6c,0xbe,0xb1,0xac,0xf1,0x9e,0xf7,0x21,0xe3,0x48,0x45,0x9e,0x19,0x80,0xe7,0x04,0x15, + 0x78,0x95,0xf9,0xe2,0x9d,0xde,0x7d,0x2c,0xcf,0x1d,0x1d,0x9c,0xae,0x17,0x5e,0xd5,0x2f,0x38,0x6c,0xd6, + 0x86,0x92,0x20,0x52,0x56,0x22,0xc1,0xd3,0x2d,0xc0,0xae,0x84,0x4a,0x24,0xf0,0x7c,0x51,0xfc,0x01,0xfc, + 0xbc,0x80,0x0b,0xbd,0xe6,0xee,0xd1,0x00,0x7e,0x28,0xe3,0x1f,0xca,0x1b,0xfc,0x37,0x4a,0xf3,0xc6,0x17, + 0xdf,0x16,0xdb,0x5f,0x23,0x80,0x04,0x3c,0x94,0xb2,0x84,0xfd,0x07,0x1d,0x97,0xaf,0x97,0x5a,0x8f,0x65, + 0x9f,0xe2,0x9b,0x50,0x79,0xbc,0xb8,0x95,0x75,0xb8,0xd5,0xbc,0x95,0x1d,0xe4,0x47,0x7d,0x56,0x0b,0x2e, + 0xdd,0x5e,0x4a,0xec,0xf8,0x37,0x35,0x94,0x9e,0x18,0x28,0x3d,0x21,0x28,0x7d,0xd6,0x9c,0xa7,0xb2,0x08, + 0x4f,0x39,0x14,0x26,0x98,0xd5,0x88,0xd8,0xf5,0x6d,0xfe,0xe9,0x85,0xfc,0x47,0x45,0x7e,0xae,0xd3,0xb7, + 0xab,0x42,0x65,0x59,0x31,0xa0,0xad,0x6c,0x91,0xb8,0x7a,0x61,0x1d,0x46,0x9a,0x33,0xf9,0xa7,0x4a,0xb5, + 0xdb,0xe4,0x04,0x6e,0xb3,0x19,0x57,0xda,0xca,0x56,0x6d,0x62,0x6e,0xaf,0x33,0xf6,0x28,0x86,0x88,0xd0, + 0xef,0x33,0x15,0xe7,0x92,0x3d,0xc7,0x7a,0xe1,0x73,0xfa,0x2d,0x04,0x16,0xff,0xfc,0xa9,0x91,0xfd,0xad, + 0xf3,0x9b,0x6e,0x12,0x2f,0x7c,0xe9,0xd6,0x78,0x61,0xff,0x44,0x81,0xe1,0x6b,0x3c,0x00,0x18,0x6f,0x0d, + 0xca,0x8d,0x19,0x78,0x54,0xab,0x19,0x8b,0x3c,0x30,0x05,0x2e,0x19,0xc8,0x1a,0xc5,0x7c,0x8c,0xc8,0x8a, + 0xd4,0x69,0x8d,0xeb,0xb2,0x91,0xfa,0x4d,0x8e,0x17,0xca,0x76,0xc7,0xf6,0xe8,0x36,0xf7,0xeb,0x96,0xf2, + 0x5f,0x9a,0x6e,0x1f,0xbb,0x73,0xbd,0x74,0x13,0xb9,0x53,0x91,0xd1,0xfc,0x8c,0x55,0x1e,0xa9,0x66,0xc1, + 0xa6,0xd2,0xe9,0x36,0xe5,0xbe,0x05,0x71,0x7b,0x6d,0xe6,0x00,0xf2,0x22,0x5f,0x4a,0xc0,0x70,0x44,0x3b, + 0x45,0xe8,0xbc,0x50,0xf1,0x6e,0xfe,0x04,0x68,0xe9,0xd8,0x37,0xd1,0x3b,0x56,0xc4,0xa3,0x04,0x7e,0xb8, + 0xba,0x15,0xec,0x84,0xbf,0x5a,0xe8,0xa9,0x15,0xe0,0x41,0xa8,0xbc,0x37,0xd6,0x5d,0x0f,0xda,0xae,0x62, + 0x89,0xd8,0x1b,0x87,0xba,0x80,0x8a,0xab,0x15,0x41,0x83,0x63,0xc1,0x65,0x62,0x62,0x27,0x21,0x6d,0x1c, + 0x8f,0x54,0x45,0x68,0x1b,0x89,0x71,0x49,0xad,0x6c,0x29,0xf7,0x2b,0x8b,0xd6,0x11,0x11,0x5a,0x19,0x39, + 0x75,0x46,0x01,0x0e,0xe0,0x4b,0xc8,0x3c,0x95,0xa8,0x2a,0x71,0x31,0x80,0xbe,0x16,0xe5,0xc9,0x0f,0xc8, + 0x81,0x51,0x10,0xd7,0xee,0x1e,0x77,0x14,0x76,0x37,0x66,0x62,0x78,0x60,0x44,0x84,0x1f,0x7c,0x38,0xe5, + 0x68,0x5b,0x24,0xda,0x3a,0x3c,0xe9,0xb0,0xe8,0x30,0xc5,0x91,0x28,0xd7,0x1d,0x39,0xfa,0xd5,0xbc,0xf2, + 0x13,0xca,0xc6,0x34,0x79,0x94,0x49,0xec,0x04,0x9c,0x97,0x2e,0x24,0x16,0xcb,0xd9,0x40,0x93,0x00,0x1a, + 0x4d,0xf5,0xfb,0x49,0x50,0xa7,0x22,0x0a,0x0b,0x31,0xad,0x05,0xc2,0x32,0xb3,0x9c,0xbf,0xd0,0x1a,0x42, + 0x63,0x68,0xa8,0xe0,0xf1,0x98,0xc6,0xbc,0x36,0x6b,0x1c,0x6e,0x49,0xe8,0x04,0xf9,0xa5,0x17,0x57,0x96, + 0x3c,0x9c,0x5a,0xde,0xb5,0xc3,0x53,0x71,0x4c,0x4c,0x7b,0x7d,0x1a,0x8c,0x7c,0x6e,0x09,0xd2,0xf7,0xc5, + 0xe8,0x4d,0x8b,0x6c,0x46,0x72,0x78,0x1a,0x44,0x8d,0x1c,0xff,0x14,0xd2,0xf1,0x39,0x64,0xb1,0x4b,0xea, + 0x72,0x8a,0x45,0xad,0x78,0x51,0x27,0xb2,0xc2,0x63,0x78,0x7a,0xe1,0x21,0xd2,0x50,0xa2,0xdc,0xb7,0x7c, + 0x42,0x9b,0x2e,0xdf,0x34,0x49,0x64,0xf1,0xe7,0xdc,0xa8,0xdb,0x28,0x5c,0x13,0xe3,0x5d,0xa5,0x2d,0x8f, + 0xc2,0x0b,0x51,0xdd,0xab,0xb4,0xb1,0x94,0x0a,0x4d,0x2f,0x50,0x2a,0x42,0x5f,0xac,0xaa,0x7e,0x52,0x09, + 0x3b,0x8b,0x75,0xa6,0xc6,0xda,0x4c,0x42,0xd6,0xad,0x0d,0x0a,0x50,0x0e,0x9a,0xb2,0x2f,0xa9,0x89,0x68, + 0xc9,0xcd,0xd9,0x99,0x13,0x13,0x91,0x41,0x68,0x4c,0x48,0xec,0x58,0x25,0x4a,0xef,0xf5,0x4a,0x2b,0xfb, + 0x71,0x58,0x79,0xeb,0x68,0x8a,0x94,0xf9,0x8d,0xcb,0x23,0x48,0x1d,0xda,0x1b,0x9b,0xbc,0x4f,0x39,0x20, + 0xab,0x69,0x79,0x69,0xd1,0x25,0xad,0x18,0x7b,0xcd,0xd8,0x15,0x06,0x0e,0xb3,0xa0,0xf0,0x59,0xe3,0x38, + 0x57,0x6b,0xcb,0x4f,0x4e,0xd0,0x37,0x64,0xe2,0xa0,0xd4,0xab,0x8f,0x21,0x39,0x9d,0x73,0xe1,0xd6,0x5e, + 0x29,0x37,0x36,0xa9,0x76,0xd8,0x6d,0xb9,0xc4,0xd6,0x3e,0x32,0x86,0x5d,0x86,0x6f,0x41,0xa7,0x79,0xa0, + 0x3a,0x6a,0xb5,0xc9,0xad,0xc4,0xbf,0xb2,0x9c,0x5e,0xcb,0xd6,0xbb,0x16,0x6c,0x67,0x6a,0x50,0xf5,0x24, + 0xcb,0x40,0xa7,0x11,0x95,0x83,0xa3,0xc6,0xe8,0xef,0x52,0x1b,0xf8,0x2a,0x4c,0x43,0x7b,0x71,0xa9,0x8a, + 0xd1,0x2f,0xfd,0x29,0xc5,0x43,0xe4,0x65,0x1a,0xa2,0xba,0x36,0x76,0x6e,0x30,0xad,0xa0,0x30,0x68,0x83, + 0x1b,0x77,0x82,0x41,0xf0,0xc6,0x65,0x5e,0xd4,0x5a,0x83,0xcc,0x93,0x85,0xae,0xa7,0x90,0x22,0x9a,0x10, + 0xea,0xd7,0x16,0x96,0xc0,0x2f,0x6c,0xa5,0x64,0x9e,0x29,0x16,0xaa,0x5d,0x6c,0xcb,0xa6,0x86,0xc3,0x3a, + 0xf2,0x10,0x90,0x7d,0x7c,0x89,0x00,0x9f,0x39,0x3b,0x34,0x57,0x0d,0xeb,0x9f,0xc6,0x45,0xe2,0x9f,0xeb, + 0xc8,0x72,0xee,0x6d,0xfb,0x77,0x54,0xdb,0x5d,0x3e,0x8c,0x33,0xde,0x83,0xc2,0xe7,0x68,0x39,0x49,0xe8, + 0x06,0x31,0xba,0x30,0x0b,0x87,0x6a,0xce,0xcd,0x91,0x09,0xe0,0x62,0x4c,0x59,0x7d,0x1f,0x60,0x80,0x8a, + 0x29,0xc2,0x84,0x6a,0xc7,0x67,0x67,0x3a,0xb9,0xde,0xf9,0x3c,0x30,0x89,0x1c,0x29,0x38,0xa8,0x37,0xa7, + 0x0e,0x10,0xaf,0x42,0xfc,0xb0,0xff,0xff,0xa6,0xed,0x23,0x06,0x8e,0x77,0x68,0xdb,0xf4,0xb1,0x1e,0xfb, + 0xb9,0x7b,0xa3,0xd4,0x73,0x35,0x36,0x07,0xe5,0xd1,0xb0,0x12,0xcf,0x5d,0xf4,0x87,0xa1,0x77,0xe4,0x9f, + 0xe0,0x89,0xee,0x02,0xf7,0x62,0x84,0x68,0x47,0xd0,0x0d,0xb2,0xf1,0xd9,0x89,0x51,0x45,0xc6,0x15,0xbd, + 0x5a,0x69,0xc4,0x16,0x98,0x70,0x45,0xf1,0x99,0xba,0xb5,0x4d,0x28,0xda,0xa1,0x5a,0xa7,0x60,0x64,0x59, + 0xd1,0xf6,0xe3,0x2c,0xca,0xaf,0x53,0x0c,0x26,0xb2,0x69,0x7b,0xdb,0xaa,0x80,0x67,0xb2,0xd4,0x38,0x4b, + 0xb1,0x32,0x62,0xda,0xd4,0xb5,0xaf,0x6f,0x22,0x3a,0x0c,0x65,0xd7,0x71,0xe5,0xdd,0x01,0xd0,0x29,0x45, + 0x08,0xfe,0xa9,0x6f,0xc8,0x13,0xc4,0xce,0x08,0x42,0x7d,0x44,0x9d,0xf1,0xab,0x23,0x2a,0x69,0x38,0xa2, + 0x1c,0x93,0x4c,0x7a,0xb1,0x4f,0x68,0xa5,0xc2,0xf6,0xa2,0x58,0xa0,0xc3,0x55,0x41,0xed,0x9b,0x8f,0x50, + 0x22,0x03,0xb4,0xb6,0x07,0x6a,0xce,0x20,0x5f,0x16,0x12,0x9d,0x8b,0x60,0x3d,0xd3,0x51,0x39,0x33,0xc6, + 0xe9,0x25,0xfe,0x65,0x9d,0x17,0xc4,0x7d,0x6d,0x79,0xbf,0x0c,0xe8,0x1c,0x66,0x8e,0xff,0x4c,0xed,0xe3, + 0x6a,0x12,0x8c,0xde,0xf9,0xa5,0xac,0x07,0x22,0x13,0x67,0x9d,0xbe,0x33,0x77,0x0d,0xf3,0x47,0x54,0x99, + 0xf1,0xef,0xc9,0x40,0x5b,0xda,0x3f,0x33,0x76,0x31,0x1a,0x4b,0xd8,0x30,0x5c,0x58,0x5c,0x5a,0xbc,0x7a, + 0x12,0x00,0xc8,0xcf,0x57,0x4c,0xde,0x04,0x59,0x87,0xae,0x4b,0xd9,0x81,0x51,0xeb,0x60,0xc7,0xe1,0x92, + 0x66,0xcb,0x87,0xaa,0xf2,0x97,0xbc,0x8a,0xb3,0x78,0x59,0x2f,0xe9,0x2c,0x9e,0x19,0x67,0x01,0x94,0x30, + 0xc3,0x9a,0x09,0x81,0x3b,0x89,0xcb,0x9a,0x94,0x98,0x5b,0xb6,0xa4,0x72,0x88,0xd0,0xd6,0x14,0x67,0x94, + 0x61,0x7f,0x46,0x1b,0x3b,0xa3,0x8d,0x15,0x4e,0xaa,0xde,0xd8,0x59,0xa0,0xd3,0x0e,0x66,0x47,0xd2,0x76, + 0xc7,0x00,0xa4,0x84,0xe9,0x7e,0x9d,0xfa,0x99,0x5c,0x21,0xa3,0xca,0x9f,0x70,0xa9,0x79,0x30,0x9a,0xd0, + 0x06,0xce,0x2d,0x6a,0x4e,0xfb,0x91,0x5d,0xd4,0x37,0xc0,0x38,0xa4,0xe9,0x12,0x0d,0xb4,0x1b,0x4e,0xe8, + 0xbf,0x79,0x5c,0xbb,0x6a,0x09,0x2f,0x62,0x48,0x00,0xc2,0x13,0xfa,0x33,0x3f,0x0a,0x8f,0x8d,0xea,0x36, + 0x65,0xbd,0x8b,0x33,0x64,0x5d,0xd2,0x9f,0xe3,0xa3,0x70,0x3f,0xde,0x5a,0x0c,0xa7,0x0f,0xd1,0xd5,0xe4, + 0x61,0x7c,0x4c,0x77,0x93,0x7f,0x11,0x8c,0x50,0xbd,0xdf,0x9f,0x1e,0x45,0xa9,0x4f,0x67,0x18,0xad,0x6c, + 0x6f,0xcf,0x8f,0xa2,0xb7,0x94,0x19,0xbe,0xa3,0x43,0xfd,0x11,0x7f,0x41,0x9c,0xe9,0x82,0xdc,0x6a,0xbf, + 0x3f,0x39,0x0a,0x50,0xe8,0x24,0xbc,0xe4,0x42,0xf4,0x17,0x85,0x74,0x7d,0xee,0x73,0x7b,0xfb,0x58,0x0a, + 0x5d,0xa8,0x42,0x17,0x52,0x68,0xbf,0x45,0x07,0xe4,0xe1,0x85,0xba,0x77,0x2d,0x51,0x9c,0x7f,0x22,0x28, + 0xa4,0xee,0xd9,0x69,0xf4,0x44,0x0d,0xef,0x44,0x86,0xd7,0xd5,0x28,0x37,0x20,0x4d,0x5b,0x43,0xab,0xc7, + 0xef,0xa7,0xe2,0xec,0x62,0x1c,0xff,0x92,0xd2,0xfe,0x4c,0xc3,0x39,0x4c,0xe5,0x7d,0x10,0xf4,0xef,0x38, + 0x86,0xe9,0x68,0x7c,0xc0,0x1f,0x47,0x1d,0xce,0x3f,0xea,0xb8,0x84,0x53,0xa2,0x85,0x33,0x8e,0x42,0x68, + 0xd0,0x63,0x72,0xa4,0x79,0x84,0xdb,0xb7,0xdf,0x82,0xce,0x29,0x0c,0x05,0x9f,0x10,0x8d,0xfb,0x8e,0x9a, + 0xd8,0x45,0x6f,0xa3,0x82,0xbe,0x93,0x50,0xcd,0x9f,0xe7,0xb5,0xa4,0x71,0xce,0x8e,0xd4,0xe4,0x96,0x32, + 0x39,0xa4,0x68,0x8f,0xb6,0x5d,0x13,0x5d,0x5a,0x13,0x0d,0x22,0xb7,0xcd,0x7a,0xbe,0xc3,0xe9,0xa3,0x39, + 0x94,0xe8,0x69,0x8a,0x04,0x10,0xfd,0xbd,0xa3,0x40,0xa2,0x33,0xca,0x0f,0x75,0xe8,0x27,0x78,0x6f,0x0a, + 0xa2,0xc9,0xa3,0xe3,0xdb,0xb7,0xcf,0xfd,0xdd,0x50,0x96,0x65,0xed,0x8f,0x39,0x5c,0x36,0x80,0x32,0x62, + 0xa0,0x05,0x85,0x57,0x93,0x50,0xae,0x38,0x94,0x0a,0xe3,0x9e,0x3e,0xa5,0xbf,0x4c,0x76,0xcd,0x31,0xd9, + 0x1a,0x2c,0x41,0x14,0x03,0xfc,0x47,0x68,0x7f,0x42,0x79,0x93,0x3a,0x0c,0x62,0x74,0x63,0xb3,0x91,0xe4, + 0x6f,0x71,0xd4,0x1a,0xbe,0xdb,0x3b,0xca,0xa9,0x53,0x16,0x6e,0xc6,0x0c,0xc5,0xa2,0x72,0x51,0xc3,0xda, + 0xba,0xaa,0x8e,0x85,0x0b,0x61,0xf4,0x0a,0xc6,0x13,0xb5,0x4c,0x30,0xea,0x40,0x7f,0x75,0x51,0xd6,0xa5, + 0x4b,0xf6,0x08,0xa3,0x54,0xda,0xfc,0x51,0x49,0xc0,0x51,0x63,0x7f,0xb5,0x93,0x7e,0xc9,0xfe,0x54,0xcd, + 0x00,0xde,0x35,0x18,0xcf,0x70,0x8c,0x98,0x4d,0xc9,0x49,0x38,0x53,0xee,0x3e,0x08,0x17,0x94,0x6e,0xb4, + 0xa1,0x38,0x59,0xad,0x10,0xdd,0x1d,0x48,0x2f,0x2c,0x85,0xb4,0x0f,0x05,0x21,0x6b,0xbe,0x45,0x2e,0x2e, + 0x1b,0xef,0x1b,0xa8,0xec,0xba,0x26,0xa0,0x5e,0x4d,0xb8,0x9e,0x01,0x79,0xa6,0xae,0x7a,0x5a,0xba,0x6e, + 0x06,0xb6,0x14,0x4b,0x42,0x4a,0xec,0xc0,0xda,0x81,0xc5,0xbf,0x62,0x5d,0x4d,0xb3,0xe3,0x40,0x11,0x04, + 0xd3,0x20,0x60,0x4e,0xfc,0x34,0x59,0x30,0x21,0x0e,0xaa,0x7b,0xe1,0x73,0x22,0xf7,0x6a,0x3a,0xd4,0x71, + 0xe3,0xac,0x11,0xa8,0xa8,0x28,0xd2,0x54,0xc1,0x94,0x5f,0x9d,0x68,0x82,0x70,0xf0,0xc5,0xa1,0xf7,0x65, + 0x8e,0xb9,0x81,0x8b,0x9c,0x66,0xe5,0xa2,0xe2,0x1e,0x09,0xcd,0xec,0x0e,0x2f,0x1e,0x4e,0xf5,0x5e,0x5d, + 0x68,0x07,0x77,0xa7,0xab,0xd5,0xd6,0x3b,0xe2,0x17,0xa7,0x07,0x17,0x47,0x8a,0x33,0x9d,0xc3,0xa4,0x5c, + 0x58,0xd9,0xd3,0xf8,0xd4,0x79,0x3f,0x40,0x8d,0xf9,0x6a,0x75,0xea,0x76,0x4c,0x5c,0x0c,0x0e,0x52,0x16, + 0xe8,0xd5,0x94,0x7d,0x3d,0xb7,0x5d,0xad,0x9c,0x40,0x9a,0x37,0xc3,0x8c,0xb7,0x3e,0x10,0x2e,0x0e,0xae, + 0xce,0x31,0xc8,0x89,0xdc,0x2d,0xd2,0xd9,0xd6,0x39,0x36,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x7d,0x6a,0x67, + 0x93,0x42,0x54,0x6c,0x71,0x78,0x2f,0x3e,0x18,0x8a,0xc0,0x52,0xbf,0xf5,0xb3,0xd7,0x96,0x04,0x8b,0xb9, + 0x0c,0xf7,0xc3,0x33,0x08,0xa9,0x9f,0x22,0xd2,0x7c,0x31,0x59,0xce,0xd2,0x45,0xf8,0x86,0xbe,0x41,0xe3, + 0xbc,0x52,0xda,0x5f,0x97,0xb4,0x26,0x97,0x0f,0xe7,0x59,0x0d,0xc0,0x97,0x4c,0x56,0x9e,0x1d,0xcc,0xb3, + 0x83,0xcb,0x23,0x58,0x7b,0xd1,0xbd,0xb2,0x3b,0xdc,0x7f,0xf8,0xb4,0x2e,0xb2,0x4f,0xe4,0xc5,0xd3,0x83, + 0xfd,0x23,0x55,0x86,0x76,0x4a,0x17,0x17,0xfe,0xc2,0xce,0xe3,0x0b,0xf9,0x03,0xeb,0x8d,0xe0,0x5d,0x4d, + 0xb4,0x66,0x54,0x28,0xb1,0xa7,0xd6,0xf7,0x1b,0x16,0xb6,0x12,0x2a,0xee,0x70,0x52,0xa8,0x6e,0xcb,0x90, + 0x2e,0x49,0xe5,0x93,0x89,0x6f,0x6f,0xf1,0x12,0x83,0x30,0x22,0x30,0xce,0x06,0x74,0xc1,0x9c,0x73,0xc9, + 0xfe,0x43,0x7c,0x20,0x3a,0x94,0xaf,0xe9,0x89,0x79,0x8c,0xc3,0x81,0xc9,0xef,0xb3,0xef,0x27,0xde,0x48, + 0xc6,0xde,0xd8,0x80,0x40,0x68,0xae,0x49,0xa8,0x82,0xa2,0xa3,0x9f,0x39,0xf7,0x26,0xf1,0xd4,0x74,0x3d, + 0x28,0xb9,0x13,0x0c,0xd7,0xfc,0xc4,0x63,0xd6,0xcf,0xd2,0xd4,0x9d,0x93,0x0e,0x0b,0x6e,0xf8,0xf8,0xf4, + 0x41,0x47,0xbe,0x93,0xf6,0xcd,0x41,0x39,0xe6,0x21,0x22,0xbf,0x1c,0xbe,0x8a,0xa1,0xcc,0xaf,0x9e,0x63, + 0xde,0xe8,0x47,0x28,0xff,0x55,0x23,0x0a,0x8d,0x3c,0xd3,0x28,0xc9,0x61,0xf8,0x4a,0xec,0xdf,0x4e,0x85, + 0x18,0xa4,0xeb,0xcf,0x11,0x94,0x9d,0xf2,0x04,0x65,0x1d,0x4e,0x07,0xef,0x44,0x60,0x7b,0x2c,0xf7,0xc1, + 0x49,0xe3,0x1e,0x3e,0x85,0xea,0x2f,0x11,0x2e,0x1a,0xff,0x69,0x80,0xbd,0x8c,0x75,0x1a,0xc1,0x00,0x28, + 0xa6,0xe1,0xe5,0xb0,0xbe,0x17,0x9f,0x12,0x58,0x3c,0xed,0xe2,0x5d,0x9e,0x5a,0xbc,0xcb,0xd3,0x23,0xff, + 0x92,0x47,0x72,0x29,0x8e,0xef,0x79,0xa8,0xfb,0x75,0x23,0x1f,0xa8,0x91,0x0f,0x1d,0x9c,0xef,0x87,0x9a, + 0xf3,0xfd,0xc0,0x9c,0xef,0xa5,0x40,0xd2,0xe3,0xf8,0xb2,0x85,0x5b,0xf9,0x45,0x61,0xc0,0x3a,0xc2,0xb5, + 0xc9,0xc3,0xad,0x78,0x6f,0x78,0xeb,0xe1,0x63,0x62,0x11,0x8d,0xbd,0xca,0x2d,0xb8,0x7f,0x46,0xc2,0xc1, + 0xad,0x23,0x4d,0x7b,0xff,0x9a,0x62,0x7c,0x97,0xd4,0xaa,0x0a,0x75,0x0b,0xdf,0xae,0x7c,0x6f,0x81,0xe5, + 0xdb,0x0d,0x77,0xd5,0x85,0x45,0xfc,0x0f,0x5c,0x02,0x97,0xb5,0xb5,0x98,0xec,0xdf,0x32,0x08,0x79,0x4e, + 0xbc,0x15,0xaf,0x40,0xfa,0x9b,0x72,0xfe,0x95,0x3a,0x68,0xd1,0x32,0x0b,0xd5,0xf9,0x8b,0x0e,0x4e,0xb2, + 0xf0,0x63,0x16,0xee,0x67,0xe1,0x59,0x16,0x7e,0x93,0x85,0xef,0xf3,0x91,0x96,0xe6,0xbf,0xae,0x42,0x2d, + 0x58,0xc3,0xb7,0xc0,0x53,0xe3,0xf9,0x6f,0x4b,0xe2,0x7a,0x89,0x95,0xc5,0x69,0x71,0x39,0x7a,0x55,0x49, + 0x74,0x33,0xb8,0xcd,0x5c,0x47,0x57,0xeb,0x23,0xed,0x58,0xf9,0x3c,0x83,0x17,0xf3,0x17,0x39,0xd1,0x82, + 0xfa,0x91,0xa3,0x1d,0x5e,0x44,0xde,0xc7,0xa9,0xf5,0xf1,0x69,0x92,0x9f,0xa4,0x9e,0x6d,0x9e,0x2a,0x9a, + 0xf8,0x75,0x65,0x96,0xd2,0x2b,0xe1,0xda,0x90,0x55,0x7d,0x2f,0x54,0x54,0xc4,0x9f,0x31,0x06,0xa5,0x6f, + 0xa6,0x5d,0xa7,0xbf,0xcd,0xe0,0x54,0x0d,0xbb,0x93,0x4e,0x1a,0x0f,0xa2,0x10,0x22,0xe9,0x97,0x79,0x13, + 0xd6,0x51,0x78,0x92,0xdb,0xb7,0xb7,0xf8,0x2f,0x31,0x62,0x4a,0xcd,0x72,0xf4,0x03,0x1c,0x1d,0x99,0xcb, + 0xdc,0x19,0xe1,0x5b,0x8b,0xa5,0x10,0xa3,0xae,0x89,0x12,0x25,0xad,0x83,0xe8,0x7d,0x25,0xdf,0xb6,0xb7, + 0x27,0xd3,0x2a,0xe1,0x0b,0x04,0x5e,0xd3,0xf6,0x27,0x5a,0xe9,0xf3,0xdb,0x0a,0x32,0x30,0x4f,0x6b,0x8e, + 0x98,0xd1,0xd1,0xbd,0x9b,0xf9,0x12,0x3b,0x2e,0x08,0x94,0x27,0xaf,0x17,0x3a,0x72,0x6c,0x5c,0xd5,0x51, + 0x64,0x43,0xeb,0x9b,0xfd,0x3a,0xb2,0x6a,0x71,0x7b,0xdd,0xf5,0x72,0xbf,0xa0,0x61,0x3d,0xc9,0x37,0x15, + 0xc2,0xdc,0x44,0x2a,0x4b,0x28,0x12,0x5e,0xfa,0x5f,0xf2,0x2c,0xae,0x2d,0xc9,0x2f,0x1f,0xd4,0x2c,0x22, + 0xee,0xf0,0x48,0x65,0x93,0x80,0x87,0xf0,0x26,0xdc,0x5c,0xaf,0xd6,0x5b,0x35,0x07,0x6d,0x77,0xf7,0x26, + 0xb8,0x6a,0xad,0xe5,0x50,0xbf,0x59,0x9a,0x15,0x15,0x6d,0xea,0x9b,0xd7,0x77,0x98,0x35,0x63,0x00,0xd6, + 0xaa,0x11,0x5b,0x50,0x2d,0x67,0x27,0x96,0x6b,0x59,0x65,0xad,0x5e,0x31,0xaa,0xc4,0x7c,0x7a,0x63,0xf8, + 0xc0,0x9f,0x30,0x40,0x00,0x7c,0xa4,0x4a,0xf2,0xe3,0x38,0xd1,0x38,0x6f,0xf1,0xe3,0xf6,0x6d,0xca,0x57, + 0x19,0xc0,0xf4,0x1a,0x62,0xd5,0x2e,0xb0,0xa7,0xc6,0x5f,0x08,0x5e,0x25,0xb0,0xe7,0xdb,0x2c,0xc4,0xc9, + 0x8a,0x44,0x2d,0xb6,0xb9,0x3e,0xca,0xe2,0x58,0x37,0x86,0x58,0x80,0x4f,0xf8,0x69,0x54,0xa9,0x96,0x88, + 0x0b,0x15,0x4b,0xa0,0xce,0x01,0xea,0xdf,0xd1,0xca,0x94,0xd9,0x09,0x3c,0xc1,0x3e,0xcb,0x16,0x50,0x8e, + 0x8c,0xbd,0x9c,0xf6,0x41,0xe9,0xdc,0xf1,0x9b,0xea,0x44,0x32,0x10,0x2e,0xbe,0x91,0x04,0xe7,0x0f,0xd9, + 0xc8,0xcf,0xeb,0x63,0x8f,0x2b,0xee,0x16,0x75,0x6b,0x9f,0x86,0x46,0xa5,0x38,0x59,0x07,0x41,0xb3,0xa5, + 0xb8,0x1c,0x25,0x91,0xf4,0xdc,0xa9,0x5f,0xd0,0x9a,0xe1,0xb0,0x6c,0xac,0xa4,0x7f,0xe3,0x84,0x5b,0x03, + 0x2d,0x47,0x37,0x0d,0xb5,0x6b,0x81,0x68,0x2f,0x5f,0xdd,0x50,0x4d,0x4d,0xa4,0x73,0x9a,0x5d,0x4d,0xaa, + 0x99,0x43,0xb5,0x22,0xef,0xd8,0x5c,0xc5,0x10,0xf0,0x69,0xbc,0x79,0x7c,0x0c,0x35,0xdf,0x13,0xd4,0xb0, + 0x61,0x98,0xb2,0xee,0x82,0xa0,0x39,0x29,0xa3,0x27,0x45,0x01,0x67,0xb8,0xe1,0x78,0xb1,0x30,0xdf,0x00, + 0x2e,0x5d,0x0c,0x88,0x44,0x7f,0x5b,0xaf,0xb3,0x2a,0xc5,0x7a,0x5b,0xb5,0xcb,0xe8,0x77,0x55,0xbb,0x54, + 0x23,0xad,0xf5,0x70,0x6b,0x97,0xed,0x48,0x97,0xe1,0x76,0x24,0x6d,0x2c,0xdb,0xe8,0x70,0xb2,0x2c,0xf9, + 0x5d,0x30,0x3a,0x10,0xbb,0xb6,0x50,0xa5,0x8b,0x62,0xc7,0xd1,0x3a,0xfc,0x43,0x2f,0x90,0xf3,0x58,0x2b, + 0xd6,0x72,0xdf,0x67,0x8e,0x09,0x5d,0xd3,0x16,0xac,0x65,0x3c,0xde,0xb6,0x09,0x53,0x9e,0xb3,0x58,0xb0, + 0x2a,0xaf,0xf4,0xdd,0xc1,0xfd,0x18,0x85,0xff,0x06,0x09,0x21,0x81,0xad,0x1d,0xb3,0x55,0x99,0x88,0x61, + 0x6f,0xa0,0x76,0xa0,0xe2,0xb7,0xda,0x6d,0x88,0xe0,0x3f,0xd6,0x1c,0xe1,0x30,0xa8,0xdd,0x57,0x5a,0x8f, + 0x66,0x86,0xee,0xb6,0x6d,0x47,0x6b,0x81,0x80,0xb2,0x1f,0xfb,0xb5,0x82,0x67,0x1e,0x90,0x9d,0x45,0x9d, + 0xa5,0xbd,0xac,0x32,0x85,0x46,0x6b,0xa7,0x73,0x7e,0x01,0x8a,0x4a,0x74,0x04,0x58,0xef,0xdd,0xbb,0xba, + 0xbb,0x6d,0xaf,0x6f,0xdc,0xca,0xf5,0xbd,0x6d,0x6f,0x58,0xb0,0x18,0x4e,0x94,0x6c,0xf9,0x7b,0x54,0x58, + 0x01,0x4e,0x17,0x7d,0x5c,0x10,0xf8,0xf4,0xa2,0x45,0x9f,0x65,0xb9,0x51,0xe9,0x17,0x22,0xff,0xc0,0x03, + 0xb4,0x7a,0xfb,0x90,0x14,0x63,0x50,0xb4,0x08,0x46,0x9c,0xc2,0x75,0xf0,0x97,0xff,0x95,0xb0,0x19,0xb1, + 0x2f,0x0f,0x88,0xb0,0xaf,0x1c,0x28,0x47,0x33,0xb4,0xb4,0xf5,0x10,0xe3,0xb7,0xda,0xb2,0x68,0xe6,0x18, + 0xbb,0x2f,0xb1,0x08,0x12,0x65,0x42,0x2a,0x5a,0x61,0xe7,0xf1,0x9c,0xda,0x48,0xda,0x84,0xf0,0x3d,0xe0, + 0x16,0x41,0x9e,0x80,0x2e,0xbe,0x2e,0x0a,0x07,0xeb,0x04,0xe1,0xf2,0xf6,0xed,0xa5,0xc2,0x51,0xfe,0x69, + 0x5c,0x84,0xe7,0xf1,0x32,0x3c,0xc7,0x14,0x08,0xa3,0x9d,0xe2,0xef,0x6a,0x75,0x8e,0xb5,0xe0,0x9f,0x42, + 0xdf,0x6d,0xfd,0xc6,0xd2,0x04,0x7f,0x6b,0xd9,0xe5,0xf3,0xb5,0x2b,0x55,0xbb,0xf4,0xac,0x59,0x70,0x01, + 0xac,0x69,0xbc,0x6c,0x02,0x89,0x18,0x8c,0x8c,0x79,0xee,0x5e,0xb1,0xac,0xb6,0x33,0xd6,0xdc,0xcf,0x5c, + 0xe7,0x0d,0x0a,0x0a,0x80,0x37,0x7f,0xf0,0xa7,0xa1,0x97,0x4c,0x09,0xaa,0x7f,0x12,0xf5,0x0a,0xdb,0x54, + 0xd4,0x2a,0x89,0x78,0xe9,0xae,0x1f,0xcb,0x75,0x10,0x6a,0xf0,0x41,0x67,0x59,0xbe,0x5d,0x88,0x29,0x80, + 0x08,0x3c,0x7e,0xf3,0x6b,0x61,0x95,0xb8,0x35,0x9b,0x84,0x73,0xdb,0x6c,0x0f,0xfe,0x81,0x87,0x3f,0x40, + 0x1a,0xc3,0xdd,0x7f,0x23,0x1a,0x23,0xf3,0x20,0xe4,0x34,0xc1,0x58,0x98,0x3d,0x0c,0xd2,0x54,0xfa,0x14, + 0x1a,0x61,0x84,0x16,0x9b,0x43,0xa5,0x2d,0x9b,0xc4,0xe9,0xba,0x26,0x9b,0x13,0x61,0x5a,0xc2,0x73,0x42, + 0x9f,0x3f,0x66,0x58,0x14,0xc0,0xa3,0xc2,0x1b,0xfc,0xa0,0x6f,0x21,0x18,0x60,0xd8,0x60,0x28,0x26,0x7d, + 0xbd,0x1f,0x99,0x8b,0x15,0x7f,0xee,0xff,0x26,0xbc,0x52,0x2b,0x54,0x44,0x7f,0x10,0x45,0x6d,0x7e,0x7d, + 0x07,0xe5,0xe0,0xe8,0x4a,0x90,0xcc,0x8f,0x59,0x17,0x62,0x69,0x58,0xb6,0x33,0x7e,0xb0,0x8d,0x44,0x64, + 0xeb,0x24,0x50,0xee,0x3c,0xc9,0x11,0x04,0xb7,0xdb,0x1d,0x12,0x57,0x9a,0x97,0xe9,0x85,0x71,0x5c,0x28, + 0x46,0xa2,0x5a,0xf8,0x9c,0x75,0xa1,0x2d,0xf6,0xa8,0x9a,0xb8,0x25,0xc1,0x67,0x17,0xf5,0xa9,0x59,0x10, + 0x5b,0xb4,0x78,0x68,0xb8,0xf2,0x85,0x16,0x3d,0x8e,0xe3,0xec,0x60,0x71,0x34,0x1c,0x4b,0xfc,0x68,0x8c, + 0x62,0x2b,0x1e,0x8b,0xf0,0x1d,0x9c,0x81,0x3a,0xc9,0x63,0xf7,0x24,0x13,0xf2,0xb8,0xc0,0x8b,0x88,0x07, + 0xd8,0x4e,0x8c,0xb5,0x68,0x7e,0xc0,0xe5,0x8e,0xe2,0x71,0x48,0x35,0xd4,0x71,0x1e,0x77,0x1f,0xe7,0x22, + 0x80,0xdc,0xc3,0xf2,0x26,0x3e,0xc3,0x80,0x97,0xf8,0x67,0x4a,0x43,0x9d,0xd6,0x12,0xb0,0xa9,0x1e,0xea, + 0x24,0x2e,0x0f,0xa6,0x47,0xc3,0x49,0xeb,0x1c,0x14,0xa1,0x4a,0x23,0x9a,0x35,0x9e,0x30,0xb9,0x7f,0x92, + 0x56,0x4f,0x8a,0x25,0x8b,0xd9,0x9e,0xce,0x32,0x02,0xb0,0x9f,0x69,0xad,0xe1,0x87,0xfd,0x60,0xc2,0x43, + 0x1c,0xcd,0x64,0xd4,0x93,0x20,0x5a,0xea,0xaf,0xb5,0xb2,0xc0,0x9d,0x57,0x31,0xeb,0x54,0x42,0x0e,0xa9, + 0xad,0xa4,0x85,0x77,0x9a,0xc4,0x4b,0x13,0xa9,0x40,0x97,0x48,0xe8,0xf6,0xb7,0xbd,0x73,0xb4,0xec,0xaf, + 0xbb,0x3d,0x0d,0x98,0xbe,0xa0,0xc5,0xc1,0x72,0x30,0xcb,0x51,0x87,0xc9,0xd4,0x34,0xd5,0x64,0x83,0x45, + 0xb3,0x0d,0x28,0x61,0xa5,0xef,0x1e,0x05,0xf2,0xc6,0x3f,0x3f,0x1b,0x78,0x79,0x17,0x88,0xf8,0xbc,0xcd, + 0xca,0x96,0x43,0xcd,0x17,0x2b,0x4b,0xa6,0xd3,0x64,0xf1,0x82,0xd2,0xfd,0x54,0x19,0xe8,0x87,0x95,0x90, + 0xcb,0x5a,0xc5,0xf0,0x7b,0x66,0x13,0xf4,0xaf,0x3f,0x9c,0x5f,0x3f,0x6a,0x87,0xff,0x70,0xde,0x31,0x23, + 0x54,0x69,0x18,0x3c,0xe8,0xe6,0x0f,0x8a,0xe9,0x74,0x91,0x56,0xdf,0xa7,0xd9,0xc9,0x69,0x65,0xd5,0x6a, + 0x2a,0x2d,0xca,0xfe,0xf1,0x1a,0xd7,0x2e,0xc4,0x30,0x12,0xd8,0x56,0x32,0xed,0x34,0xdc,0x07,0xf1,0x06, + 0xe7,0x67,0x03,0xa3,0xf7,0x13,0x97,0x03,0x4b,0x41,0x4a,0xa5,0xd4,0x80,0xf1,0x4c,0x11,0x13,0x1c,0x74, + 0xba,0xcd,0xe5,0x7c,0x9b,0xc1,0x13,0x28,0x2f,0x57,0x1d,0x71,0xb0,0x07,0x91,0xcf,0x15,0xd1,0xc7,0x5b, + 0x3b,0xa6,0x9b,0x5b,0x2a,0x70,0xa7,0x44,0x0d,0xd2,0xf1,0xba,0x02,0xf6,0xa2,0x2b,0x80,0xd1,0x6a,0x98, + 0x75,0x1e,0x74,0xdb,0x0c,0x27,0x67,0x32,0x7c,0x36,0x53,0x07,0xe3,0xa4,0x5c,0xb4,0x45,0x57,0x6a,0xf1, + 0x1b,0x7c,0x39,0x2e,0xf5,0xd7,0x99,0x11,0x09,0xd6,0xb7,0xba,0x2a,0xee,0x22,0x79,0x95,0x38,0xd4,0x2b, + 0x37,0xc6,0x83,0x19,0x4b,0x6d,0x02,0xda,0x6b,0xeb,0xa6,0x67,0xc0,0xc0,0xcd,0xd8,0x95,0xda,0xb9,0x3b, + 0xc7,0x95,0xe8,0x42,0x05,0xe1,0x47,0xb5,0x01,0x79,0x27,0xd5,0x6c,0x9c,0x62,0x38,0xca,0x11,0xb9,0xe6, + 0xec,0xde,0x88,0x22,0xaa,0x6d,0x4b,0x47,0x45,0x1d,0x8d,0x2b,0x0d,0x47,0x6a,0x32,0x31,0x8b,0xc5,0xcc, + 0xce,0xae,0x61,0x25,0xfe,0x8c,0x1f,0xec,0xa7,0xd9,0xc9,0xc0,0x8a,0x8c,0x1b,0xff,0x5e,0x86,0x75,0x86, + 0x13,0x93,0x37,0x5e,0x64,0x9d,0x59,0x10,0xaa,0xc5,0xdf,0xd9,0xd5,0x1a,0x31,0x79,0xe3,0x9f,0x53,0xa7, + 0xa2,0x1b,0xc4,0xb7,0x15,0x23,0xe5,0x7d,0x4d,0xb1,0x61,0xa7,0x16,0x30,0x65,0x70,0xf6,0x0e,0x04,0x9f, + 0x2b,0x79,0x53,0xa8,0x16,0x2a,0xfa,0x7a,0x2f,0xf9,0x87,0xb2,0x3e,0xbe,0xc9,0x12,0x81,0xad,0xa9,0x15, + 0x36,0xde,0xf6,0x60,0xaa,0x3d,0xe2,0xea,0xec,0xc0,0xbc,0xb6,0xf8,0x35,0xca,0x7e,0x90,0x6c,0xbb,0x93, + 0x80,0x2f,0xe4,0x8d,0x45,0xb5,0x91,0x84,0xb4,0xb9,0xd3,0xae,0xad,0x8e,0x44,0x65,0x07,0x6c,0x5a,0x87, + 0x17,0x30,0xac,0x34,0x2e,0x14,0x0d,0xd5,0x45,0xcc,0x70,0xe0,0xe6,0x59,0x46,0xec,0xff,0xce,0xd8,0x6a, + 0xd2,0x72,0x5d,0xa2,0x11,0x26,0x94,0x0a,0x7f,0xcd,0xa2,0x13,0x37,0x5b,0x5c,0xd1,0x75,0x47,0xca,0x6a, + 0x2b,0xca,0xb3,0xf7,0x1e,0xdb,0x37,0xb8,0x5c,0xde,0xcc,0x93,0x35,0xd2,0xe2,0xbc,0x64,0xdf,0x2f,0xa9, + 0x1b,0x06,0xbb,0x36,0x71,0xd7,0x1e,0x06,0x1d,0x0e,0x52,0x79,0x72,0xaa,0x9d,0x8e,0xf8,0x62,0xba,0x71, + 0x62,0xf4,0x87,0x42,0x44,0xf8,0x0d,0x95,0xc5,0x5a,0xed,0x14,0x26,0x6d,0x7b,0xe0,0x4e,0x5d,0x0f,0xdc, + 0xda,0xa1,0x30,0xd4,0xa0,0x68,0x29,0x9e,0x40,0x95,0x4a,0x3b,0xbf,0x87,0x3e,0xff,0xb3,0xda,0x23,0x81, + 0x6f,0x8d,0xe9,0x1b,0x28,0x85,0x48,0x18,0xec,0xdb,0xb7,0x7f,0xc8,0xf1,0xdf,0x00,0x6e,0xb4,0x40,0xb7, + 0x41,0x95,0xf9,0x19,0xec,0x32,0x76,0xe5,0x60,0xfe,0x90,0x85,0xdf,0x41,0x99,0xf2,0xea,0xf0,0xca,0xf7, + 0x47,0xd1,0x60,0x75,0x98,0x07,0xfd,0x51,0x70,0xb8,0x3e,0x5c,0xef,0x9c,0x84,0xff,0x84,0xf6,0xfb,0xf6, + 0xe0,0x8b,0xfe,0xe8,0x5f,0xb7,0xae,0xd6,0x7e,0xb0,0x3a,0x38,0x3c,0x3a,0xdc,0x39,0x3c,0x3c,0xa2,0xbc, + 0xdf,0xbb,0x55,0xd8,0xf9,0x0a,0xd1,0xda,0xdb,0xff,0xcc,0x42,0xef,0xf0,0xf0,0xd6,0x6d,0x8f,0xcd,0x97, + 0xa1,0x68,0xde,0xce,0xb1,0x57,0x57,0xfc,0xa5,0xf8,0x55,0xdf,0x53,0x83,0x91,0xd1,0x78,0xfd,0x3c,0xf4, + 0x4e,0x20,0x09,0x0c,0x7f,0x83,0x99,0x1f,0x8b,0xf7,0xe1,0xd3,0x34,0x3a,0xf0,0x2c,0xb9,0xbf,0x77,0x14, + 0x1a,0x94,0xdd,0x30,0xf3,0x60,0xe7,0x5a,0x03,0x78,0x81,0x50,0x28,0x32,0x13,0x79,0x8d,0x18,0xdc,0x0e, + 0x45,0xb0,0x65,0x35,0x15,0xff,0xf0,0xe6,0xd5,0x4b,0x4a,0x00,0x60,0x23,0x86,0x63,0xae,0xdd,0x98,0xc7, + 0xa5,0x55,0x11,0x8e,0x72,0x21,0x4a,0x81,0x52,0x0c,0x12,0x9e,0x64,0x4c,0x70,0xc4,0x25,0xb6,0x3f,0xcd, + 0xe1,0x9e,0xb5,0x83,0xfb,0xf4,0x3c,0x4b,0xb5,0xbf,0xee,0x12,0x8f,0x65,0xfd,0xd8,0x9e,0x4f,0xe4,0xf5, + 0x9d,0x12,0x7d,0x2f,0x84,0x95,0xa6,0xd3,0x97,0xaa,0x35,0x36,0xe5,0xed,0x4c,0xa9,0x50,0x11,0x5d,0xfc, + 0x1f,0xdd,0xcb,0xc6,0x4f,0x24,0x9f,0xbf,0x6c,0x8c,0xfe,0x1b,0xcb,0xc6,0x4d,0x35,0x97,0xed,0x69,0x86, + 0x95,0x73,0x97,0x4e,0x2a,0x5b,0x4b,0xc7,0x09,0x7f,0x76,0xe9,0xb8,0x5b,0x67,0xe9,0x38,0xc5,0x5a,0x3a, + 0xfe,0xad,0x97,0xce,0xee,0xcb,0xd4,0x42,0x79,0x5f,0x2a,0xd4,0xb9,0x7d,0x58,0x1d,0xc8,0xe2,0xa5,0x09, + 0x3f,0x36,0xc1,0xf2,0x8f,0xad,0x40,0x61,0x4e,0x59,0xcc,0x94,0x55,0xa3,0x98,0xee,0x29,0x6b,0x4c,0xb1, + 0x30,0xcc,0x16,0x8c,0x99,0xf1,0xf4,0x44,0x53,0xb1,0xec,0x45,0x1d,0xd3,0x47,0x31,0x90,0xbc,0x3c,0x86, + 0xdb,0xa1,0x2a,0x11,0x9b,0x69,0x65,0xe1,0x08,0xf3,0xcf,0x0a,0xa6,0x9d,0x5a,0xcc,0x39,0x67,0x13,0x47, + 0x98,0x07,0xb2,0xa1,0xa3,0x98,0x3e,0x96,0xaa,0x25,0x1c,0x2e,0x19,0x61,0xa7,0x09,0xaa,0x0c,0xb9,0x36, + 0x36,0x64,0x8b,0xc9,0x4e,0xc3,0x4a,0x74,0xeb,0x5a,0x36,0xb2,0x2d,0xaa,0x32,0x44,0xd5,0x96,0x94,0x2d, + 0x8b,0x54,0x65,0xe3,0xca,0x26,0x96,0x1d,0x16,0xae,0x18,0xab,0xb6,0x7f,0x95,0x7e,0x68,0xb1,0xd8,0xae, + 0x56,0xd9,0x60,0xc2,0x84,0x55,0x1b,0x4f,0xf2,0x32,0x35,0xcd,0x31,0x65,0xd9,0xc4,0x3c,0x55,0x2d,0x9e, + 0x18,0x52,0x68,0x53,0xcb,0xda,0x0a,0xb4,0xb1,0x44,0x6c,0x99,0x4b,0x0b,0xc5,0x6b,0x0d,0x35,0xc0,0x24, + 0xde,0xf9,0xd7,0xe1,0xe2,0x0b,0xff,0x80,0xfe,0xf5,0xee,0x3c,0x7c,0x74,0xb8,0x13,0x1f,0xf5,0x03,0xc2, + 0x35,0x48,0x8c,0x03,0xfc,0x3b,0x8a,0x3c,0xca,0xf6,0x8e,0xbe,0x20,0xb4,0xb3,0xba,0x43,0x9f,0x77,0xe8, + 0xf3,0x4e,0x7f,0xa5,0xea,0xc4,0x0f,0x1f,0xfd,0x27,0x55,0x09,0x82,0xd1,0x4e,0x98,0x25,0xb1,0x77,0x90, + 0x6c,0xff,0xf1,0x78,0xfb,0xf7,0x77,0x47,0x07,0x87,0x87,0x97,0x87,0x87,0xdb,0x87,0x87,0x83,0xa3,0x2f, + 0xbc,0x30,0xa1,0x2c,0xe0,0x30,0xaf,0x9f,0x25,0x7d,0xc2,0x74,0x51,0x30,0x92,0xcf,0xc0,0x0b,0x8b,0x24, + 0xb6,0x90,0x9d,0xf7,0xaf,0x87,0x5e,0x3f,0x49,0x88,0x43,0xd3,0x83,0x3b,0xdc,0x19,0x05,0x8f,0x76,0x68, + 0x8f,0x1a,0xc5,0x0e,0x0f,0x77,0x50,0xb2,0xef,0x1d,0xfc,0xeb,0xd1,0xd1,0x17,0x8f,0x68,0x3e,0x33,0x54, + 0x79,0xb8,0xf5,0xec,0xd5,0xd3,0xfd,0xdf,0x5e,0x7f,0xd3,0x43,0x7a,0xff,0xd1,0x4e,0x16,0x2e,0x25,0x1d, + 0x16,0x3c,0x53,0xf9,0x3c,0x3c,0xd8,0x09,0x27,0x09,0xde,0x8e,0xbd,0x0f,0x9e,0xc1,0xc2,0x3b,0x1f,0xfc, + 0x01,0x4d,0xe4,0x24,0x74,0x8f,0x3c,0x15,0xf4,0xc0,0xdc,0x57,0xea,0xe9,0x65,0x9e,0x84,0xa7,0x49,0x78, + 0x91,0x84,0xe7,0x49,0x78,0x92,0x84,0x1f,0x71,0x0e,0xc2,0x77,0x49,0x78,0x99,0x84,0xfb,0x49,0x78,0x96, + 0x84,0x4f,0x93,0xf0,0x0d,0x83,0xa0,0xb2,0xdf,0x55,0x86,0xd1,0xfa,0xd5,0x83,0x2f,0xc1,0x0f,0xec,0x3b, + 0xf8,0x31,0xfd,0xeb,0xdd,0x9e,0x55,0x43,0x2f,0xf2,0x1e,0xd2,0xa1,0xbc,0x7d,0xc2,0x9f,0x8f,0xf0,0x09, + 0xf8,0xa4,0x1f,0x77,0xbc,0x3b,0xf4,0x23,0x39,0x9f,0x23,0xe3,0x36,0x32,0xfe,0xb6,0xb7,0x8b,0xef,0xc3, + 0x9c,0x7f,0x7c,0xcd,0xdf,0x95,0xb7,0x0e,0x6f,0xd1,0xdc,0x6e,0xd3,0x22,0x13,0x03,0x7c,0x52,0xad,0x50, + 0x7d,0x45,0xd5,0x82,0x21,0x4d,0xe8,0x55,0x67,0xd6,0x8a,0x5a,0x5a,0xfd,0xed,0x6b,0x2e,0xf1,0x0d,0x0f, + 0x18,0x9a,0x0f,0xee,0x38,0x9f,0x25,0xdd,0xa4,0x05,0x61,0x99,0x6f,0x12,0xf1,0xa1,0x70,0xc8,0x72,0x96, + 0x0a,0x9e,0x8b,0xc2,0xd7,0x58,0xdf,0x7f,0xac,0xfe,0x75,0xb1,0x5d,0xe4,0xd1,0x4e,0xf8,0x1e,0x3f,0x2f, + 0xb6,0x57,0x48,0xa2,0x9f,0xcf,0xe9,0xa7,0x3f,0xf8,0x82,0x2e,0xd4,0x45,0x9f,0x46,0x93,0xe5,0xab,0x62, + 0xca,0xdf,0x83,0x2f,0x82,0x9d,0xf0,0x27,0xca,0x0d,0x09,0xae,0x42,0xba,0x6e,0x8f,0x08,0xca,0xa8,0x84, + 0xfd,0x33,0x18,0xdd,0xda,0x09,0xbf,0x65,0xa8,0xf0,0x57,0x87,0xc1,0x2d,0x1a,0xf4,0xcb,0x84,0xcd,0xc3, + 0xbe,0xa0,0x1f,0xe1,0x0b,0xe4,0x44,0xe8,0x99,0x45,0xcf,0x3b,0xe1,0xcf,0x94,0x70,0x38,0x38,0xf8,0xd7, + 0xe0,0xa8,0x4f,0x45,0x9f,0x24,0x9d,0xc6,0x3b,0xfe,0x0f,0x59,0xfc,0x43,0x76,0x83,0xa1,0x52,0x50,0x6b, + 0x43,0xc4,0x69,0xf8,0x43,0x66,0x1b,0x27,0xd2,0x25,0xfc,0x2b,0x7a,0xfe,0x70,0x3e,0xcb,0x17,0xd1,0xcb, + 0x37,0x87,0x93,0xfe,0x4e,0xf8,0x16,0x29,0xfc,0x4d,0xe3,0xf8,0x25,0x89,0x0f,0x7e,0xcb,0xe8,0xce,0x09, + 0xaf,0x68,0x79,0xf7,0xaf,0xb9,0x5b,0x44,0x96,0xa4,0xbd,0x4a,0xc8,0xd3,0x90,0x66,0x61,0xf8,0x71,0xff, + 0x45,0x32,0x67,0x91,0xec,0x81,0x77,0xb1,0xcd,0x8f,0x29,0xde,0x11,0xa4,0xb3,0xf8,0xc9,0x93,0x06,0x41, + 0xe8,0x1d,0xad,0x56,0x94,0xa2,0xbe,0xb5,0x6a,0xa8,0xba,0x6d,0x38,0x11,0x9e,0xbb,0xe4,0xe6,0xba,0xd8, + 0xce,0xa6,0xb2,0xcd,0x49,0x9c,0x8d,0x3c,0x6a,0x8b,0x4e,0x25,0x0e,0x65,0x44,0x2c,0x62,0x11,0x0b,0x4d, + 0xae,0x8b,0xe2,0x39,0x57,0xd9,0x2d,0x3b,0x69,0xa6,0x8d,0x71,0xfc,0x1b,0x53,0xe4,0xff,0xac,0xd8,0x57, + 0x16,0x6b,0x1b,0x71,0x87,0xa1,0xb8,0xce,0x38,0x2e,0x3e,0x50,0xdf,0xdf,0x21,0x1d,0x4a,0xfb,0xa0,0x61, + 0xc7,0x84,0xa0,0x15,0xb9,0x37,0xc8,0xa6,0x84,0x23,0xbc,0x7e,0x49,0xfd,0xd3,0xf4,0xef,0xe8,0x2a,0x77, + 0xe8,0x90,0x87,0xbf,0xa3,0xd2,0x55,0xfa,0x61,0x1e,0xa1,0x9c,0xe0,0xef,0x68,0xac,0xce,0xe3,0x4c,0xf5, + 0x4b,0x83,0x9a,0x61,0x50,0xb4,0xba,0x32,0xa0,0x8a,0x13,0xd4,0x10,0xca,0x64,0x92,0x15,0xd2,0xff,0x0c, + 0xfd,0xd7,0x4d,0xda,0xbd,0x72,0x29,0xee,0x52,0xfa,0x98,0xa9,0x3e,0x96,0xaa,0x0f,0xed,0xb3,0xa8,0xf2, + 0x97,0xcd,0xae,0x28,0x41,0x16,0x1d,0xc6,0x0f,0xdf,0xe1,0xb7,0xd3,0x4b,0xa6,0x5a,0x5c,0xc2,0x3d,0xfe, + 0x68,0x3c,0xc0,0xd2,0x21,0x14,0x1d,0x28,0x1d,0xf9,0x45,0x0b,0x00,0x27,0xd4,0xe0,0xec,0x8e,0xc2,0xef, + 0x09,0x33,0x50,0x35,0xe2,0x18,0x00,0x76,0x90,0xdf,0xeb,0x17,0xee,0x5f,0x92,0xb0,0x66,0x25,0x22,0xf5, + 0xa8,0x76,0xd3,0x33,0x9a,0xfd,0x86,0x9a,0x08,0x6c,0xb1,0x77,0x3f,0x0d,0x56,0xfc,0xf6,0x2a,0xee,0x0d, + 0x0d,0x2f,0x62,0x64,0xe8,0x95,0x52,0xe6,0x0a,0x55,0x68,0xdd,0xfa,0xfd,0x32,0x09,0xb6,0xba,0x7b,0xbe, + 0xc3,0x2a,0x02,0xb7,0xb4,0x07,0x8e,0xb7,0xc9,0xac,0x17,0xf7,0x1a,0x91,0xd5,0xd5,0x93,0x82,0x3c,0x62, + 0xde,0x62,0x07,0xb2,0x2a,0x62,0xa3,0x79,0xd0,0x34,0x8d,0x17,0x06,0xf1,0xc0,0x4d,0x90,0x34,0xba,0x0e, + 0xf0,0x06,0xea,0xdb,0x65,0xd0,0xeb,0x05,0xf7,0xe5,0xbd,0x13,0x77,0x2f,0x50,0x09,0x2a,0x7a,0x23,0xaa, + 0x26,0x09,0xbd,0x88,0x3e,0xd5,0xd3,0x9b,0x34,0x78,0xa7,0xef,0x73,0x0c,0x06,0xb1,0xa3,0x1f,0x79,0xef, + 0x72,0x9f,0xf2,0x71,0x06,0xe8,0x0f,0x84,0x44,0x04,0x02,0xde,0x30,0xb7,0x5f,0x34,0xa1,0x40,0xdf,0xf7, + 0x7a,0x5e,0xbf,0xa8,0x10,0xea,0xc6,0x1d,0xbb,0x7e,0x54,0xa5,0x4e,0xdd,0x05,0x88,0xdc,0xdf,0x84,0x2f, + 0xbd,0xc0,0x70,0x45,0x6c,0xb6,0x53,0xdb,0x84,0xd6,0x78,0x20,0x21,0x0c,0x6b,0x8e,0x0f,0xfd,0x2e,0x36, + 0x2d,0xb9,0x35,0x09,0xda,0x62,0x39,0xef,0xb2,0x06,0xc1,0x6a,0xe5,0xa1,0x1f,0x9c,0x69,0x85,0x07,0xca, + 0x65,0xba,0x5d,0x67,0xe2,0xa7,0x47,0xc7,0x5a,0x32,0xa7,0x09,0x4e,0x75,0x9d,0xcb,0xbf,0xbd,0xe1,0x7f, + 0xa4,0xb2,0x02,0xe2,0x04,0x27,0xf4,0x5c,0x53,0x12,0xaf,0x4f,0x6c,0x4a,0x30,0x7a,0x97,0xc9,0x57,0x48, + 0x47,0xa8,0xcf,0x7c,0xb8,0xd7,0xf7,0xa5,0x7d,0x8c,0x7d,0xe4,0x45,0xaa,0x24,0x2d,0x6f,0xf4,0xee,0xdf, + 0xa6,0x70,0x81,0x24,0x62,0xf2,0xdc,0x65,0xf6,0x04,0x8a,0xe8,0xfe,0xe5,0x62,0xb7,0xc0,0xbd,0x3a,0x8b, + 0x4d,0x49,0xe3,0x18,0xc9,0x03,0x35,0xae,0x91,0x2f,0x6d,0xa1,0x1b,0xe2,0x10,0x3a,0x8c,0x61,0xa9,0x39, + 0x85,0x14,0x6f,0xdd,0xba,0xa0,0x86,0x7d,0xd9,0x72,0x19,0xaf,0x17,0x25,0x01,0x77,0x94,0xc5,0x34,0x13, + 0x2a,0x4a,0x9f,0x17,0xdc,0x88,0xdd,0x49,0x70,0x45,0x05,0x1e,0xee,0x32,0xba,0xa4,0x71,0xd1,0x00,0x12, + 0xad,0x15,0x72,0x40,0xe5,0x8f,0x02,0xd1,0x7d,0x41,0x29,0x5a,0x00,0xa7,0x98,0x76,0xff,0x42,0x59,0x81, + 0xae,0x53,0xa7,0x53,0x6a,0x7f,0x0f,0x7a,0x04,0x52,0xdf,0xc0,0xd7,0xad,0x31,0xc3,0xa1,0xf7,0x69,0xd0, + 0x22,0x98,0xee,0x2f,0x82,0x4a,0x6b,0xbb,0xad,0xcd,0xf2,0xa9,0x4e,0x6b,0xd1,0x10,0xba,0xc1,0xdd,0x3d, + 0x1e,0x7c,0xf2,0x29,0x20,0x0e,0x10,0xb4,0x74,0x42,0x36,0x62,0x95,0x06,0xbe,0x22,0xbc,0xc6,0xfe,0xe3, + 0x71,0x7b,0x49,0xd4,0x60,0xf8,0xdd,0x56,0xf3,0x42,0x00,0x24,0xd8,0x71,0xd3,0xb5,0xb4,0x25,0xab,0x82, + 0x41,0x41,0xb7,0x2f,0x9c,0xc5,0xc9,0x48,0x8f,0x32,0x52,0x19,0xd0,0x41,0x23,0xe8,0x8d,0xd4,0xa8,0xc2, + 0x65,0xdc,0x38,0xd6,0xb2,0x3e,0x43,0xa0,0xeb,0xee,0x3c,0x65,0x35,0x0e,0x8f,0x25,0x52,0x86,0x17,0x68, + 0xc9,0x2b,0x33,0x94,0x37,0x2b,0x5e,0x91,0x65,0x30,0x1c,0x53,0x01,0xba,0xed,0x00,0x56,0x4e,0x3b,0x4a, + 0xcf,0xc4,0x3c,0x52,0x0e,0xbd,0xfe,0x34,0x08,0x65,0x27,0xa4,0xff,0xd0,0xd3,0xe7,0x47,0xad,0xf6,0x2c, + 0x9c,0xd6,0x92,0x15,0x7f,0xb1,0x5a,0x41,0x61,0x5a,0xf6,0xe1,0x78,0xb6,0xa4,0xdb,0xc9,0x73,0x9f,0xae, + 0x3c,0x6d,0x2e,0x58,0x6f,0xc4,0xd6,0x37,0xb9,0x2b,0x26,0xf4,0x93,0xa0,0x13,0xf7,0x9b,0x57,0x58,0xa6, + 0x11,0x5b,0x8c,0xf1,0x85,0x68,0x30,0xc8,0x70,0x2d,0x12,0x09,0xc0,0xb3,0xc0,0xb0,0xa5,0x04,0x0f,0x7e, + 0xcd,0x3c,0xcf,0xf5,0x4d,0x18,0xa2,0xab,0xb3,0x81,0x35,0x31,0x96,0xaf,0x89,0x9e,0x4a,0xba,0x5c,0x52, + 0x80,0x90,0x55,0x0e,0xb8,0x20,0xac,0x24,0xae,0x08,0xe5,0x88,0x63,0xb5,0xe4,0xa4,0xd1,0xef,0x25,0x1c, + 0xee,0x3c,0x49,0x7f,0x4a,0xa7,0xd5,0xab,0x79,0x9a,0xa3,0x08,0xf1,0x5b,0xce,0x52,0x44,0x8b,0x2c,0x6c, + 0xc8,0x42,0xa3,0x9f,0xd3,0xd0,0x12,0x1e,0xfc,0x02,0xff,0x10,0x93,0xe5,0xb8,0x5b,0xe5,0x86,0x63,0x39, + 0xf2,0x29,0xd7,0x01,0xb2,0x74,0xc8,0xbf,0x80,0x3d,0x42,0x0c,0xde,0x17,0x19,0x81,0x49,0x88,0x15,0xf9, + 0xa3,0x9b,0x44,0xed,0xc1,0xd1,0x0b,0xa0,0x1d,0x77,0x36,0xc3,0x3f,0x24,0xeb,0xa1,0x3e,0x09,0x21,0xf1, + 0x2e,0x59,0xae,0xdc,0x79,0x84,0xe6,0x61,0x4c,0xa2,0x0b,0xf5,0xfd,0x74,0x84,0x13,0x9b,0xc2,0x33,0x2a, + 0x04,0x46,0x3f,0x1a,0x96,0xef,0xf0,0xf2,0xd6,0xbb,0xa3,0xfe,0xea,0x90,0x28,0xec,0xe0,0xe8,0x8b,0xd1, + 0x61,0x00,0x76,0x2f,0x7e,0xb4,0xfa,0x97,0x1e,0x01,0xfd,0x3c,0xf4,0x77,0xc2,0x7f,0xab,0x1a,0x07,0xc4, + 0xd6,0x11,0x73,0xf7,0xee,0xd6,0x11,0xaa,0x1e,0x81,0x33,0x24,0xea,0xba,0x91,0xb8,0x3a,0x3c,0xb8,0x43, + 0xf4,0xfd,0x9d,0x23,0xfa,0xf0,0xe8,0xc3,0xc3,0x07,0x91,0xc1,0xf8,0xd3,0x2c,0x7b,0x14,0x7c,0x41,0xcd, + 0x12,0xe5,0xfe,0x03,0x48,0x9d,0xc5,0x38,0xba,0xfb,0x77,0x38,0x33,0x8a,0xbe,0x16,0x35,0x8b,0x68,0xef, + 0x5e,0x28,0xeb,0x7d,0xef,0x6e,0xb8,0x9c,0x47,0xf7,0xbe,0x22,0x0e,0x79,0x5a,0x45,0xf7,0xfe,0x1e,0x96, + 0x78,0x3d,0x89,0xee,0x7d,0x1d,0xc2,0x0b,0x76,0x74,0x7f,0x37,0x94,0x07,0xcc,0xe8,0xe0,0xab,0xf0,0xfe, + 0x97,0xc4,0x84,0x7c,0x97,0x74,0xf9,0xe5,0x02,0xca,0xe9,0x03,0x78,0x2c,0x9f,0x59,0x43,0x62,0x9b,0xfe, + 0x99,0x40,0x18,0x44,0xf0,0xa0,0x0f,0x35,0x7e,0x00,0x40,0x92,0x93,0x44,0x44,0x88,0x43,0x68,0x54,0x70, + 0x9e,0x29,0xa3,0x7e,0x3f,0x93,0x07,0x47,0x2e,0x82,0xb8,0x64,0xd1,0x77,0x89,0xef,0xe2,0x86,0x1e,0x61, + 0x9c,0x9e,0x4a,0x19,0x2f,0x4b,0x6c,0xd2,0x3e,0x67,0xd0,0x01,0x1e,0x57,0xe5,0x8c,0x6b,0x6c,0xe9,0x02, + 0x94,0xf0,0x23,0x34,0x74,0x43,0xf6,0x1d,0xea,0xe4,0x71,0x8a,0x64,0x26,0x33,0x37,0x8b,0x7e,0x4b,0x06, + 0xe4,0x05,0x4e,0x0e,0x12,0x24,0x8b,0xd7,0x0e,0x59,0x77,0xc4,0x2b,0xd4,0x1d,0x10,0x46,0x52,0xaa,0x77, + 0xfb,0xb6,0x1e,0xa1,0xe4,0xf1,0x98,0x77,0xd1,0x5e,0x36,0x99,0xcc,0xd2,0xcf,0xaa,0xb6,0x07,0xb9,0x02, + 0xef,0xcf,0xe7,0xd4,0xba,0x0b,0xf8,0xff,0x9d,0x36,0x82,0xb8,0xc6,0xa6,0x3f,0x16,0xb8,0x81,0xab,0xa3, + 0xda,0x75,0x6c,0xec,0xbb,0x13,0xd9,0xd8,0xd0,0xc1,0x10,0x6b,0x78,0x2b,0xc9,0xdb,0x7e,0x70,0xd0,0x1c, + 0x87,0xcf,0xab,0xad,0x85,0xea,0x96,0x8e,0xa9,0xa5,0x9c,0x5a,0xba,0x03,0xf9,0x17,0x9d,0xb7,0x3e,0x98, + 0xef,0xba,0x55,0xdc,0x7d,0x16,0x25,0x0d,0x47,0x47,0xb5,0x3a,0x22,0x1e,0xc3,0x46,0x42,0xea,0x44,0x8a, + 0x66,0x0a,0xae,0x29,0xce,0xd1,0xa7,0xbd,0x50,0x95,0xf7,0x02,0x35,0xe6,0xf1,0xac,0x48,0xce,0x10,0x57, + 0xf7,0xb7,0xa4,0xed,0xf5,0xb4,0x30,0xce,0x32,0xf9,0x27,0x24,0x91,0x74,0x27,0xe2,0xcf,0x6a,0xf5,0xbb, + 0x4a,0x34,0xc2,0xcb,0x45,0xfc,0x1b,0xc4,0xf0,0x5a,0x31,0xdd,0x33,0x19,0x4f,0x89,0x63,0xd0,0x1e,0xdc, + 0xf1,0xce,0xf8,0x5d,0x9a,0x23,0x82,0x9f,0x5b,0x5a,0x49,0x1d,0x4d,0x39,0xc3,0x71,0xc4,0x17,0x3e,0x2b, + 0x5a,0xfc,0x9e,0xb0,0x69,0xb4,0x49,0x0f,0x4c,0xf4,0x2e,0x07,0x81,0xae,0x56,0x6f,0xf2,0xa1,0xf2,0x8d, + 0xfc,0xf1,0x38,0x35,0x81,0x18,0x3b,0x36,0x72,0xcb,0x98,0xf1,0x2a,0xff,0x98,0xf9,0x38,0x7d,0x0e,0x6b, + 0x2d,0xfe,0xd5,0x0c,0x38,0x08,0x1f,0xdd,0xff,0x91,0xc4,0xbe,0x2d,0x14,0x3a,0x3c,0x3c,0xf6,0xfa,0xde, + 0xa4,0x08,0x89,0x47,0xa4,0x99,0x12,0xd0,0x57,0x08,0xa8,0x4b,0x8b,0xfc,0x91,0x1d,0xb3,0x8d,0x21,0xfc, + 0xc3,0xb5,0x17,0x5e,0x66,0xd5,0x69,0x98,0x5c,0x26,0x59,0x15,0xb2,0x61,0x40,0xc8,0x3e,0xd0,0x95,0xf2, + 0x3c,0x3f,0x03,0x85,0xec,0xb8,0x34,0xe4,0xb8,0xf4,0xe1,0x25,0xa1,0xd5,0x34,0xfc,0x08,0xa9,0x9f,0x42, + 0x36,0x21,0x31,0x67,0x05,0xbc,0x1d,0xb2,0x27,0x96,0x50,0x66,0xa0,0x3d,0x80,0x69,0xbf,0x8b,0xe2,0x2e, + 0x94,0xd8,0x18,0x09,0x51,0xcf,0x4e,0xd0,0xb2,0x7c,0x09,0xd7,0x3d,0xc7,0xcb,0x93,0x13,0x88,0x09,0xd5, + 0x2a,0xd4,0x41,0x57,0x3c,0xe5,0xa7,0x06,0x77,0x82,0xba,0x1d,0x68,0x5a,0x2b,0x4c,0x2d,0xe8,0xf3,0x0c, + 0x25,0x48,0x70,0x63,0xce,0x32,0x28,0xf1,0x3b,0xca,0x0a,0xec,0x9d,0xed,0x10,0x4a,0x07,0xc2,0x3f,0x3c, + 0x24,0x94,0x4f,0xff,0xd4,0xad,0x36,0x32,0xa8,0x0f,0xff,0x69,0x53,0xf2,0x23,0xa2,0x88,0x8d,0x56,0xa3, + 0xec,0x31,0x98,0xf0,0x22,0x62,0x1f,0xc7,0x5b,0x7b,0x41,0xf8,0x31,0x51,0xfb,0xc9,0x06,0x62,0x90,0x70, + 0x5b,0x11,0x5b,0x86,0xf9,0xc3,0x93,0xc4,0x76,0xce,0x72,0x92,0xb0,0x1d,0x2e,0x5e,0x72,0xe6,0x49,0x5c, + 0xd5,0x50,0xfd,0x11,0xbf,0xf4,0x5d,0x0f,0x70,0x0a,0x8f,0x91,0x62,0xdd,0xe4,0x9c,0xf8,0x0e,0x89,0x8d, + 0xab,0x9a,0x33,0x2e,0x12,0x80,0x76,0xd5,0x71,0x10,0x5e,0xca,0x41,0x38,0x6f,0x16,0x68,0x8a,0x69,0xa8, + 0xcc,0x49,0xab,0x4c,0xb1,0xa8,0x9a,0x85,0x4e,0x31,0x04,0xda,0x89,0xec,0x3c,0xab,0x10,0x10,0x51,0x19, + 0xe5,0x12,0x79,0xca,0xca,0x27,0x5b,0x7b,0xac,0xeb,0x89,0x18,0xe7,0x38,0x1d,0xbf,0x9e,0x52,0x29,0x1e, + 0x66,0x88,0xf5,0x02,0x9d,0xba,0xd7,0xb2,0xcc,0x68,0x2e,0x32,0xfd,0x5a,0xf6,0xf1,0x82,0x07,0xb5,0xd6, + 0xe5,0xb1,0xbc,0x2d,0xf8,0xb6,0xd5,0x74,0xa9,0xfd,0x08,0xb0,0xfe,0x5d,0xb8,0xa8,0xe3,0xd7,0x8b,0x26, + 0xdf,0x32,0x50,0x6f,0x6f,0x78,0x6e,0x28,0xf1,0x53,0x76,0xac,0xf1,0x20,0x4b,0xc9,0xac,0xea,0x9f,0xc5, + 0x45,0x1d,0xd4,0x3e,0x7b,0x14,0x13,0xd7,0x53,0x20,0x14,0xcc,0x4c,0x17,0xc5,0x21,0xa7,0x79,0x2d,0x10, + 0x52,0x4d,0xd3,0x94,0x31,0x3f,0xfb,0xa2,0xb4,0x65,0x80,0x69,0x37,0x34,0x7e,0x14,0x67,0xc3,0x31,0x55, + 0xa8,0x06,0xec,0x65,0x85,0xff,0xb0,0xbf,0x75,0x96,0x4c,0x60,0xfc,0x43,0x5d,0x3c,0xc6,0x02,0x66,0xdc, + 0xed,0xf6,0x1e,0xe7,0x33,0x77,0xe4,0x1d,0x97,0xa0,0xf0,0x16,0x23,0x26,0xac,0x4a,0x76,0x5a,0xcf,0x1f, + 0x34,0x7f,0x5a,0xee,0xad,0x5d,0xf1,0x8c,0xe0,0xcd,0xb9,0x14,0xc7,0xc1,0xed,0x2c,0xb7,0xc7,0xe5,0x42, + 0x67,0x20,0xb2,0x82,0xb4,0xa8,0xda,0x39,0x02,0x3c,0x9d,0x60,0x13,0xa1,0x8c,0x5e,0x4b,0x65,0x68,0xcb, + 0xaa,0x41,0x4d,0x5f,0x32,0xb4,0xcd,0xf0,0xe2,0xdc,0xa0,0x2a,0x39,0x63,0x49,0x8b,0x92,0x0e,0x59,0xc8, + 0x97,0x11,0x02,0x27,0x96,0xe4,0x4d,0xe2,0x27,0x46,0x9d,0x0d,0x76,0xa9,0x49,0xe3,0x4d,0x7c,0x1e,0x7f, + 0x48,0x0e,0x26,0x08,0x11,0xc5,0x7f,0x1d,0xf9,0x37,0x11,0x70,0x87,0x8b,0xc3,0xc3,0x37,0x44,0xba,0x05, + 0xfe,0xc3,0x1d,0xaf,0x3f,0xd1,0x82,0xf0,0x80,0x4e,0x7c,0x06,0x5e,0x1a,0xd6,0x59,0x5a,0xb4,0x3d,0xb7, + 0x65,0xda,0x0c,0x1e,0x1a,0xd2,0x8c,0x25,0x6c,0x48,0xe3,0x99,0x30,0xff,0xa7,0xfc,0x4e,0x62,0xe1,0x38, + 0x36,0x72,0x5c,0x3b,0xa0,0xda,0x81,0x18,0x9d,0xfa,0x5e,0x48,0xcf,0xdb,0xdb,0x8f,0x76,0x4e,0x88,0xc5, + 0xa0,0x5b,0xdf,0x2e,0x72,0x78,0xf0,0xf4,0xd9,0xe3,0xfd,0xc7,0x87,0x07,0x75,0xc9,0xa3,0x23,0x53,0x12, + 0x42,0x65,0x7f,0x12,0x8a,0xdb,0x65,0xe8,0xb3,0x28,0x9f,0x4d,0x1c,0x46,0xef,0x34,0x91,0x8b,0x92,0x3f, + 0xa0,0x04,0xe1,0x41,0xfe,0x42,0x30,0xaf,0x75,0x74,0xb6,0x4f,0xf5,0x78,0xd3,0xf8,0x34,0x2c,0xa9,0xa1, + 0xe5,0xf6,0x14,0x91,0xa8,0x8d,0x1d,0xd2,0x45,0x6c,0x29,0x03,0x3c,0x14,0x19,0x00,0xd4,0x30,0x2f,0x78, + 0xf1,0x97,0x89,0x8e,0xa8,0xa5,0x2d,0xc8,0x6c,0xd5,0x81,0xed,0xc3,0x0f,0xf7,0x52,0xa9,0x72,0xce,0xe0, + 0x5b,0xa9,0xf0,0x8c,0x88,0x54,0xa1,0x54,0x10,0x55,0x78,0x04,0xe5,0xb0,0xa4,0x3e,0x85,0xf7,0x43,0xd8, + 0xda,0xe6,0xfe,0x79,0xff,0x1e,0xb1,0x78,0x0a,0xd5,0xaf,0xa1,0xd7,0x35,0x6d,0xf4,0x79,0x62,0xf7,0x79, + 0xf4,0x48,0xfa,0x3b,0xe1,0xfe,0x72,0xff,0xa4,0x7f,0xd7,0xae,0x8e,0xf2,0xd0,0x90,0x66,0xf7,0xb4,0xfe, + 0x4c,0x54,0x0e,0x3f,0xa2,0xe0,0x47,0xbc,0x2d,0xeb,0x80,0x86,0xa6,0x02,0xca,0x1f,0x9b,0xf2,0x63,0x29, + 0x7f,0x2c,0xfd,0xbe,0x8b,0x97,0xc3,0xdc,0x3f,0xb6,0xea,0xd1,0x02,0x1e,0x1f,0xec,0x1d,0x85,0xef,0x98, + 0x2d,0xb5,0xdb,0xb8,0x6c,0xc6,0x4a,0xa9,0x4c,0xa3,0x85,0x34,0x6a,0x22,0xff,0x5d,0x69,0x8f,0x7f,0x15, + 0x9a,0x62,0xce,0x23,0xc2,0x61,0xc1,0x29,0x8b,0x96,0x6b,0xea,0xb2,0xb2,0x87,0x6a,0x9d,0xaa,0xe1,0x16, + 0x0e,0x83,0x6a,0x76,0x91,0xb0,0xf1,0x47,0x62,0x12,0x4a,0x4a,0x18,0x06,0xb9,0x9f,0x38,0x03,0x56,0xfe, + 0x23,0x75,0x20,0x4e,0x9c,0xa7,0xda,0x06,0x73,0x89,0xb3,0xf8,0x86,0x6e,0x71,0x42,0x1b,0x18,0x4c,0xee, + 0x67,0x6e,0x65,0xf8,0x3e,0x5f,0x86,0xe5,0x7a,0xed,0x8b,0xd5,0x54,0x70,0xd5,0x0a,0xb5,0x90,0xc7,0xc6, + 0x4d,0x21,0x5b,0x5d,0xd4,0x6d,0x32,0xf7,0x2f,0x18,0x05,0x9a,0xf9,0xe2,0x3a,0xbc,0xa4,0x51,0x84,0x33, + 0xfe,0x4c,0xc4,0x01,0x74,0xc9,0x0f,0xe4,0x7a,0x9a,0xcb,0x78,0xcc,0xde,0x1a,0xb6,0xb6,0x32,0xf6,0xc1, + 0x23,0xc3,0x57,0x30,0x3c,0xe1,0x43,0x2d,0x92,0xa9,0x29,0x4e,0xfc,0xee,0x70,0xfe,0x70,0x3a,0x9c,0x6b, + 0x25,0xbf,0x53,0x5d,0xe1,0x60,0x7e,0x34,0x9c,0x50,0xa7,0xdb,0xb0,0x96,0x3b,0xc5,0x9c,0x34,0x00,0xdd, + 0xf1,0xbc,0x3b,0x58,0x37,0x7e,0xa3,0x3a,0x3d,0xb8,0x77,0x74,0xfb,0xb6,0x52,0xe8,0xc4,0x8f,0x50,0x25, + 0xdf,0xb7,0x93,0xef,0x9b,0xe4,0x07,0x76,0xf2,0x03,0x65,0x4d,0x78,0xc1,0xcd,0xac,0x56,0x28,0x88,0x7f, + 0x1f,0xd0,0xbf,0x9e,0x17,0x9e,0xc7,0x5e,0xa2,0x5d,0x5c,0xc3,0x7d,0xb3,0xb4,0xb0,0x77,0x34,0xd2,0x67, + 0xe4,0x59,0x0a,0x97,0xba,0x2f,0xd3,0x4b,0xb8,0x44,0x5d,0x7c,0x5b,0x94,0xdf,0x53,0xa9,0xa8,0x3b,0x77, + 0x38,0xa1,0x19,0x29,0xdd,0x75,0x34,0x12,0x32,0x89,0x1d,0xfd,0xbb,0xf2,0x2f,0xe8,0x18,0xad,0xd7,0x4b, + 0x56,0x7d,0xe6,0x4d,0x66,0x05,0x56,0xc2,0xac,0xf6,0x8d,0x13,0xe5,0x0d,0x5c,0x29,0x50,0x37,0x81,0x47, + 0xfa,0x98,0xe3,0x22,0x34,0x90,0x7d,0x0e,0x5b,0x32,0x7e,0xf2,0xa6,0x5f,0xf0,0x68,0x93,0x4f,0x82,0x35, + 0x6d,0x3f,0x70,0x51,0x12,0xa6,0xec,0x7a,0x61,0xaf,0x79,0xee,0xf6,0xb5,0xc9,0xf8,0x99,0xfe,0x78,0xaa, + 0x3e,0x00,0x3b,0x17,0xe6,0x7e,0x3b,0x33,0x8e,0x9d,0x2f,0x02,0x02,0xe9,0xb1,0x3a,0xee,0x67,0x70,0xe3, + 0x6a,0x7d,0x2f,0xad,0xef,0xa9,0xf5,0xed,0x3f,0x8d,0xcf,0x6c,0x8c,0x15,0x12,0x2e,0x7c,0xb8,0x4b,0xa0, + 0x7f,0xd1,0x8f,0x9f,0x86,0x4e,0xe3,0xfb,0xce,0xbd,0xbf,0x1b,0x5e,0x00,0xe1,0x5c,0x04,0xeb,0x0b,0x16, + 0x47,0x52,0x2e,0x61,0x45,0x58,0x8e,0x1b,0x4c,0xba,0x5f,0x23,0xd3,0x7d,0xd6,0x31,0x4d,0x45,0x4d,0xb9, + 0x85,0x6a,0x53,0x6d,0x22,0xbb,0x2e,0x7d,0x96,0x11,0x49,0x94,0x90,0x79,0x12,0x5a,0xcf,0x10,0xce,0xed, + 0x67,0x49,0x56,0xec,0x6b,0xb0,0x43,0xa8,0xd2,0xba,0x11,0xc3,0x2e,0x90,0xd8,0x00,0x29,0x9d,0x65,0xaf, + 0x07,0x2e,0x95,0x1b,0xb6,0x50,0x77,0x64,0x30,0xf7,0x42,0xa1,0x27,0xeb,0x5a,0x2c,0x60,0xfd,0x2a,0x27, + 0x56,0x04,0xa4,0x8b,0xd5,0xea,0x1d,0xde,0x38,0x87,0x2f,0x01,0xf2,0x70,0x99,0x4d,0x6b,0xb7,0x84,0x2a, + 0xbc,0xc3,0xbd,0xd4,0xca,0xce,0x84,0xf4,0x84,0xb4,0x4d,0x6d,0xca,0x56,0x0b,0x2f,0x11,0x1f,0xf5,0xd7, + 0x44,0xeb,0x4e,0xe6,0x4a,0x67,0x52,0xbe,0x62,0xf9,0x63,0x2e,0xd1,0xb7,0x49,0x28,0xdb,0xc8,0x27,0x00, + 0xb4,0x88,0x89,0xa1,0x07,0xe5,0x72,0x25,0x4f,0xfc,0xa1,0xe2,0x61,0x67,0x74,0x41,0x42,0xa2,0x48,0x23, + 0x06,0x3d,0xb7,0xa5,0x1c,0xe8,0xb3,0x47,0xc5,0x49,0x3c,0x0d,0x44,0x99,0x59,0x3f,0x47,0x23,0x79,0x22, + 0xca,0xd7,0x13,0x57,0x9e,0x4a,0x93,0x84,0xd8,0x6e,0xe7,0x7d,0x72,0x91,0xd8,0x65,0x9d,0x42,0x34,0x66, + 0xc4,0xa8,0x0d,0xb8,0x43,0x9a,0xfa,0x31,0x7b,0x82,0xe7,0x40,0x94,0x7a,0x21,0x26,0x0a,0x8f,0x9d,0x1b, + 0x02,0x1f,0xf8,0x6c,0x1a,0x9f,0x27,0x74,0xe6,0xfd,0x29,0x91,0xb4,0x04,0xff,0xac,0x18,0x48,0xf3,0x3f, + 0x8f,0xa7,0xa1,0x79,0x68,0x3c,0xc7,0xa3,0x1a,0x64,0x77,0x68,0xfe,0x1c,0xa4,0x32,0x9b,0x1a,0x4c,0x6b, + 0xbe,0x62,0x37,0x60,0xc6,0x62,0x6a,0x31,0x16,0x78,0x91,0xec,0x8c,0x5e,0x6c,0x84,0x65,0xc6,0xdd,0xa5, + 0x1d,0xa5,0xd1,0xbc,0xaa,0x5a,0x28,0xb8,0xd2,0x7e,0x68,0x2a,0x8e,0xe0,0x09,0x2f,0x3d,0x0a,0x47,0x59, + 0xad,0x51,0xa2,0xc4,0x25,0x11,0x94,0xd5,0x50,0xf2,0x69,0x14,0x94,0xb0,0xa4,0x6b,0xed,0x51,0x93,0xe6, + 0xc1,0xba,0x76,0x2c,0xb4,0x93,0xa8,0xd8,0xd3,0x20,0x9a,0xd6,0x6f,0xa1,0x94,0xfb,0x4f,0x18,0xf3,0x77, + 0x44,0x2a,0xb5,0xde,0x6c,0xd5,0xfd,0x9b,0xe2,0xd1,0xb4,0xc2,0x23,0x63,0x2a,0x8f,0x8c,0x95,0x7a,0x64, + 0x4c,0xd7,0xca,0xc8,0xba,0xe3,0x09,0x57,0x74,0x99,0xd5,0xf3,0xa3,0x8e,0x9d,0xd8,0x7c,0xd0,0xd5,0xda, + 0x4c,0xea,0x5d,0x12,0x0e,0x75,0x31,0xa8,0x0b,0x7b,0xb3,0x2e,0x50,0x01,0x4c,0x3a,0x37,0x79,0xc1,0xfc, + 0x3a,0xef,0xc6,0x77,0x15,0x6f,0x32,0xad,0xe5,0x48,0x43,0xc0,0x6a,0x55,0xd2,0x58,0x19,0x66,0xa4,0x49, + 0x82,0x00,0xfe,0xa2,0xaa,0x34,0xfc,0x52,0x86,0xaf,0x33,0xd5,0x2c,0xa6,0xeb,0x20,0x2a,0xa9,0x47,0x3a, + 0x8d,0x5b,0x16,0xac,0xc1,0x44,0xa8,0xd5,0xcc,0xd6,0xf5,0xbc,0xaa,0x7d,0x4a,0xcd,0xe1,0xe4,0xf8,0x7a, + 0xda,0x02,0x3d,0xe5,0xd0,0x7a,0x00,0x70,0x2d,0xb9,0xa5,0x04,0x04,0x85,0x2d,0xe6,0x30,0xfd,0xf5,0x6b, + 0x27,0x37,0xbc,0x36,0x39,0x4f,0xe7,0x77,0x5c,0x2c,0x3c,0xf4,0xd4,0x1d,0x3a,0x2c,0x32,0x68,0xc1,0x8c, + 0x8c,0x7d,0x3a,0x80,0x85,0x02,0x3b,0xfd,0xe2,0x28,0xe2,0xb2,0xfd,0x7b,0x43,0xb9,0xe3,0x25,0x57,0xe4, + 0x82,0xab,0xd5,0x1d,0x4f,0xc9,0x0f,0xbc,0x3b,0x43,0xea,0xd6,0x09,0xf6,0xe6,0xfe,0x66,0x33,0x82,0x83, + 0xd3,0xa3,0x78,0x2a,0xc6,0xd6,0xf5,0x18,0x05,0x6f,0x4c,0xf9,0xe8,0x48,0x58,0xb6,0x4c,0xae,0xf6,0xf0, + 0x7c,0x38,0x1b,0xe5,0x00,0x3a,0xa2,0xbc,0xa6,0x61,0xa2,0x0b,0x22,0xce,0x58,0xde,0xa1,0x57,0x9f,0x1c, + 0x24,0x86,0x6d,0x3b,0x0a,0x2b,0xcb,0x3d,0xd6,0x41,0xcb,0x27,0x16,0x95,0x40,0xf0,0xe5,0x7b,0xd0,0x06, + 0xd1,0x08,0xa5,0xe7,0xc9,0x2f,0x76,0xa7,0xb0,0x35,0x86,0xa6,0x75,0x3d,0x46,0x2c,0x6d,0x68,0xda,0x8f, + 0xf7,0x88,0xdc,0x72,0xfb,0xcb,0xc5,0xe1,0x36,0x2e,0x28,0x47,0xca,0xaf,0x83,0x8b,0xbd,0xcc,0xed,0xa7, + 0x23,0xf1,0x68,0x02,0xc4,0x96,0xd5,0x38,0x6b,0x5e,0xbb,0xe3,0x80,0x69,0x77,0x60,0x4e,0x93,0xe3,0xfc, + 0x23,0x8d,0xc7,0x08,0xfc,0x28,0x4f,0x38,0x23,0x1f,0xa1,0x36,0xbd,0x9a,0x0b,0x2a,0xb5,0xad,0x0a,0xa3, + 0x55,0x9d,0x30,0x4a,0xa3,0x27,0x09,0xbb,0xf5,0x2b,0x70,0x8d,0xca,0xa8,0x47,0x34,0x63,0x88,0xf3,0x94, + 0xc7,0xb7,0xad,0x05,0xaf,0xc1,0x16,0xfb,0xee,0xf3,0x9b,0xd2,0x13,0x81,0xd2,0xd3,0x64,0xf4,0x7b,0xe6, + 0x9f,0x26,0x41,0xf4,0x5d,0xc6,0xdc,0x7a,0xcd,0x2c,0x18,0xe7,0x6f,0xa1,0xc5,0x82,0xd2,0x3f,0x63,0xb8, + 0xf0,0x4d,0x16,0xd5,0x73,0x10,0x0d,0x40,0x58,0x1c,0xcf,0x27,0x1d,0xe3,0xb2,0x0a,0xae,0x68,0x67,0x4b, + 0xa1,0x27,0x82,0x47,0x78,0x6a,0xd2,0xc4,0xb2,0x21,0x24,0xc6,0xb0,0xd2,0x0d,0x15,0x79,0xd5,0xc0,0x5f, + 0x89,0xd6,0x50,0x9c,0xc5,0xff,0x4c,0x7d,0xdb,0x1d,0xf2,0x50,0x55,0x90,0xc7,0x98,0x99,0x3c,0x42,0xa9, + 0xb6,0xaf,0xbc,0x7f,0x1c,0x8b,0xa6,0xa0,0x07,0x9d,0x09,0x1a,0x60,0xd6,0x2f,0x6b,0xca,0x5b,0xdf,0x5e, + 0xe3,0x87,0xb5,0xa9,0x45,0xc7,0xb0,0xae,0x1d,0x14,0x9f,0x33,0x68,0xf4,0xc1,0x20,0xa9,0x50,0x22,0x2d, + 0xe8,0x25,0x56,0xc5,0x59,0x9a,0x2f,0xa2,0xc5,0x9a,0x23,0x03,0x05,0xa3,0x4a,0x93,0x8d,0xb0,0x02,0xbd, + 0x1b,0x5a,0xb5,0xb0,0x48,0xfa,0x87,0xae,0x06,0x42,0x12,0x1f,0xf2,0xa6,0x45,0xe7,0x36,0x12,0x98,0x4d, + 0xeb,0x3d,0x35,0x60,0x7c,0x50,0xd5,0xb0,0xc9,0x20,0x0d,0xa5,0x71,0xab,0xb3,0x7b,0xa6,0x11,0xa1,0x1f, + 0x4b,0x36,0x08,0x6f,0xb9,0x89,0x6f,0x1e,0x53,0xb7,0x72,0x68,0x6c,0xdd,0xa2,0xad,0x5d,0x36,0x8f,0x20, + 0x76,0xc5,0xd7,0xb0,0x89,0x38,0xc6,0x4a,0x90,0x04,0x69,0xf0,0x79,0xf6,0x47,0xca,0x72,0x1c,0x36,0x85, + 0x0a,0x21,0xd3,0xb9,0x4c,0xe2,0x3f,0x12,0xe0,0x09,0xeb,0xb9,0x09,0xb4,0xc4,0x3e,0x5e,0x49,0x5b,0xb2, + 0x59,0x73,0xcf,0xc0,0x84,0x47,0x5c,0xc9,0xa8,0x9a,0x31,0xdd,0xad,0x55,0x78,0x97,0xba,0x1a,0xab,0xc3, + 0xec,0xe3,0x64,0xcb,0x0f,0x62,0x67,0xfc,0xad,0xb1,0xba,0x96,0xc7,0xb0,0x4c,0x50,0x8a,0xa2,0xd4,0x19, + 0x54,0x74,0xf0,0xef,0x14,0x91,0xbf,0x4e,0x72,0x9f,0x8d,0xa9,0xc0,0x00,0xed,0x27,0xe6,0xbb,0x6d,0x02, + 0x6a,0x0c,0x40,0x59,0x0d,0x4a,0xc7,0x85,0x50,0x5e,0xa1,0x8d,0xeb,0x20,0xae,0xee,0x58,0x12,0xa0,0x9b, + 0xda,0x3e,0xd4,0xf8,0x8c,0x21,0x60,0xa2,0x1e,0x95,0x51,0x19,0xc2,0x08,0x52,0xc2,0x00,0x81,0x62,0x3e, + 0xd2,0x02,0x05,0xf8,0x5f,0xb8,0x67,0xf0,0x94,0x58,0x2d,0xd0,0xf0,0x2a,0x45,0x56,0x78,0xc0,0xc7,0x1c, + 0x15,0xa8,0x36,0x04,0xc3,0x0f,0x8d,0x55,0x0e,0xbc,0x2c,0x07,0xa5,0xb9,0x6d,0xc6,0xa9,0xad,0x16,0x6c, + 0x19,0x27,0xc7,0x0f,0x6d,0xfa,0x0d,0xd4,0xe1,0xa9,0xb5,0x7d,0x6c,0x8d,0x4f,0x89,0x3c,0x84,0xdf,0x95, + 0x50,0x6f,0x1d,0x0c,0x96,0xf4,0x5e,0x6c,0xed,0x31,0xf1,0x4e,0x74,0xf6,0xf4,0x69,0x41,0x0b,0xcd,0xef, + 0x00,0x75,0xc0,0x69,0x42,0x9d,0x45,0xec,0x66,0xea,0xfe,0x92,0x87,0x45,0xed,0x59,0x6b,0xd1,0x28,0x04, + 0x4f,0x4a,0x7c,0x61,0x51,0xcf,0xb0,0x8a,0xdb,0xd0,0x33,0x03,0xf3,0x78,0x4d,0x74,0xa8,0x03,0x2e,0xca, + 0x9f,0x41,0x63,0x1d,0x4d,0x55,0x1c,0x8e,0x42,0xbc,0xff,0x99,0xb4,0xe7,0x39,0xd1,0xe6,0x86,0x41,0xa3, + 0x04,0x61,0x40,0x9c,0x25,0xa2,0xe2,0x02,0xe0,0x8d,0xf4,0xd5,0xea,0x9e,0x93,0xcc,0x6e,0xdb,0xd9,0x65, + 0x84,0xc2,0x2e,0x60,0xcd,0x4c,0x4f,0xf0,0x47,0xcc,0x04,0x8e,0x05,0xd2,0x92,0xb6,0x17,0xd6,0x6d,0x34, + 0x62,0xb8,0xb7,0xb7,0x4b,0x07,0x73,0x87,0xf0,0xd7,0x72,0xf5,0x18,0xe6,0x60,0xe8,0x2b,0x06,0xbe,0xe1, + 0x5f,0xdb,0x98,0xd4,0xdf,0xb0,0x27,0x1c,0xc6,0x00,0x6e,0xa1,0xf6,0x8c,0xd2,0x38,0x0b,0x93,0xf3,0x9c, + 0x0d,0x8f,0x94,0xac,0xf8,0x8a,0xae,0x01,0xe2,0x8e,0x95,0x11,0x66,0xa2,0x43,0xd7,0x36,0x9e,0x4b,0x28, + 0xa3,0x91,0xb2,0x76,0x83,0xfd,0x99,0x7d,0xad,0x7c,0x4b,0xe1,0xc2,0x35,0xca,0x4c,0xa1,0x39,0xc8,0xa6, + 0x95,0xe2,0x0e,0xa8,0x94,0x17,0x28,0xf7,0x4e,0xf3,0xab,0x51,0x12,0x65,0x81,0x76,0x84,0xba,0x46,0x63, + 0xb9,0x96,0x9b,0xb3,0x23,0x1f,0xf5,0x1d,0xd7,0xcf,0x4d,0xfc,0x1e,0xae,0x1f,0xca,0x4d,0x61,0x08,0xd3, + 0x1c,0xf3,0x65,0xf8,0x8c,0xb4,0xdf,0xa1,0x1a,0xa3,0xb3,0x32,0x57,0x2b,0x31,0x20,0xb5,0xeb,0x5b,0x22, + 0x19,0x44,0xb1,0xed,0xe5,0x81,0xa7,0x3a,0xc2,0x41,0xa7,0x2b,0xbc,0x8e,0xe8,0xa6,0x53,0xe8,0xfa,0x2b, + 0xe0,0x11,0xbf,0x38,0x12,0x57,0x40,0x8b,0xf8,0x69,0xc2,0xe1,0xcf,0xb5,0x9c,0x7e,0x31,0x48,0xcb,0xb2, + 0x20,0x16,0x22,0xa3,0xb3,0x53,0x65,0xf3,0x45,0x9c,0x84,0x0b,0x85,0x84,0xae,0xa0,0xcd,0x91,0xcd,0xd2, + 0xa8,0x0a,0xd5,0xd7,0x7e,0xf1,0xad,0x5a,0xaa,0x45,0x87,0x36,0x7f,0x87,0x01,0x6c,0xeb,0x39,0x40,0xf9, + 0x50,0x20,0x7c,0xcf,0x6f,0x70,0xc4,0x17,0xf2,0x16,0xa8,0x37,0xa9,0x5e,0x59,0x1b,0x27,0xc0,0x67,0x55, + 0xfd,0x14,0x31,0x52,0x46,0x49,0x76,0x5a,0xd0,0xa7,0x0b,0x91,0x61,0x17,0x9e,0xd3,0x34,0x7b,0x09,0xc7, + 0x7b,0x62,0x4d,0x0f,0xb7,0x78,0x25,0x94,0x3d,0x61,0x55,0x8d,0x1d,0x37,0x73,0x56,0xf6,0x41,0x73,0x44, + 0x5d,0x54,0xe0,0x36,0xae,0x91,0x47,0xfd,0x44,0x57,0x34,0x53,0x5c,0x7d,0xbd,0x5a,0xc3,0x61,0x0e,0xd8, + 0x19,0x43,0x3f,0x01,0xfd,0xc7,0x04,0x9b,0x78,0xd2,0x58,0x07,0xfe,0xf7,0x49,0x30,0x68,0x2f,0x5e,0x10, + 0xa6,0x45,0xbc,0xb5,0x05,0x4f,0xf6,0xa7,0xb9,0x8f,0xa7,0xa6,0xca,0xfe,0x0d,0x13,0xa3,0xa2,0xd3,0x1a, + 0x87,0x4d,0x86,0x8c,0xd5,0x1d,0x50,0x8f,0xd1,0x31,0xc1,0x2d,0x5b,0xc4,0x1d,0x96,0x55,0xba,0xf8,0xcd, + 0x46,0x57,0xc0,0x7d,0x6c,0x9c,0xc4,0xdd,0x40,0x9d,0xd4,0xb1,0xfd,0x24,0xfa,0xd2,0x4e,0xd2,0x1f,0x3a, + 0x0a,0x73,0x3b,0xb2,0xa8,0x13,0x72,0x9c,0xdd,0x1a,0xe4,0x6a,0xb9,0xf5,0xf1,0x04,0xa5,0x28,0xf7,0x0f, + 0x1f,0xc7,0x80,0x95,0x33,0x79,0xa7,0xeb,0x18,0x84,0x65,0xe0,0xfd,0x4d,0x48,0x56,0x13,0x35,0x41,0x08, + 0x86,0x02,0x62,0x05,0xe3,0x8a,0x6b,0xcb,0xf2,0xdc,0x65,0x0f,0xa5,0x64,0x52,0x52,0x2f,0x92,0x70,0xb1, + 0x5c,0xbf,0x65,0xb2,0x5a,0x2c,0x2b,0xc7,0x63,0x5c,0xcf,0x4a,0xba,0xde,0x8a,0x4f,0xb4,0xac,0xcd,0xbe, + 0x34,0xdc,0x49,0xd7,0xc6,0x9b,0xcc,0xfc,0xdb,0x7b,0x86,0x65,0x96,0x99,0xab,0xdb,0xf4,0x3f,0x12,0xb0, + 0x92,0x9d,0xc2,0xa5,0xb4,0xb8,0x5e,0x90,0x54,0x84,0xf5,0xd1,0x88,0x72,0xeb,0x9c,0x68,0x12,0x0e,0xa9, + 0xfa,0x73,0xad,0x22,0xbd,0x83,0xa4,0x52,0x27,0x00,0xaa,0x67,0x0d,0x70,0x1f,0xea,0xfd,0x22,0xac,0x90, + 0xb7,0x4f,0x87,0x31,0xd9,0x2f,0x0b,0xd1,0x81,0x15,0xf3,0x36,0x6d,0xcb,0xa6,0xe0,0x9e,0xe6,0x44,0xbf, + 0xd6,0x41,0xc3,0x28,0xc1,0x93,0xf8,0x61,0x56,0x70,0x58,0x7e,0x8f,0x06,0xbb,0xb1,0xcc,0x25,0xba,0xe3, + 0x84,0xb0,0x98,0xca,0x14,0x44,0x37,0x92,0x3f,0x03,0x55,0x34,0xae,0xfc,0xce,0x30,0xb3,0x52,0x1b,0x72, + 0x61,0xfc,0x1d,0x24,0xe7,0x93,0x91,0x7c,0xd2,0xa1,0x24,0x3e,0xf7,0xed,0x32,0x7d,0xbe,0xf7,0x55,0x8e, + 0xda,0xeb,0x46,0x10,0x6a,0x1a,0xd6,0x92,0x00,0x04,0x20,0x48,0x43,0x1b,0x5a,0xb4,0x82,0x8c,0xb9,0x63, + 0x64,0x78,0x6b,0x2f,0xd8,0x66,0x49,0x7d,0x31,0x0a,0xf3,0xbd,0x83,0x8b,0x65,0xba,0x9d,0x51,0x3f,0x47, + 0x3d,0xaf,0x0f,0x37,0xdb,0xb7,0x6f,0x3b,0x05,0xf8,0x4a,0x1f,0x9f,0xd9,0x8e,0xb6,0xab,0x46,0x40,0x3c, + 0x61,0xba,0xda,0x0b,0x55,0xd7,0xb0,0x71,0xd0,0x85,0x72,0xa6,0x84,0x73,0x7b,0xee,0x3c,0xa7,0x36,0xa2, + 0xec,0x21,0xcc,0x9e,0x89,0x2d,0x61,0x35,0x96,0xd9,0xf1,0xc1,0x45,0x14,0x68,0x1e,0xf5,0x0d,0xf1,0x07, + 0x89,0x03,0x04,0x81,0x75,0x16,0xc8,0x3e,0x75,0x9a,0xa1,0xc6,0x97,0xf1,0x1f,0x7d,0x16,0x58,0x30,0xa1, + 0x39,0xcb,0x8a,0x0d,0xd2,0x89,0xac,0x75,0x15,0x5a,0x39,0x71,0x94,0xb1,0xa9,0x61,0xd4,0x3a,0xfe,0x29, + 0x87,0x9a,0x87,0xc3,0x64,0x14,0x8b,0xee,0x5a,0x0d,0xb2,0x48,0xf0,0xda,0xe2,0xa1,0x8f,0x3e,0xf7,0xba, + 0xfa,0xa4,0x44,0xe0,0x91,0x2c,0x96,0xcf,0xf0,0x8a,0x28,0x96,0x84,0x2e,0xbb,0x52,0xec,0x93,0x16,0x51, + 0x66,0x79,0x03,0x4d,0x6a,0x23,0x6e,0xec,0x88,0xea,0xd4,0xc0,0x40,0xea,0xa8,0x64,0x69,0xd9,0x9c,0x52, + 0x5f,0x58,0x59,0x36,0x91,0x07,0x1b,0xec,0x5c,0xd3,0x18,0x81,0x0a,0x07,0xc9,0x31,0xc4,0xd8,0x21,0xe6, + 0x58,0x8d,0xe0,0xca,0x3b,0x18,0xe5,0x8f,0xf6,0x46,0x7b,0xd1,0x6e,0xb4,0x17,0xa5,0x23,0x2e,0x73,0x9e, + 0xa1,0xea,0xdd,0x20,0xda,0xd5,0xe1,0x54,0xe1,0x77,0x4b,0xbd,0x0f,0x1d,0x8d,0x72,0x96,0x02,0x31,0xa7, + 0x15,0x59,0x7b,0x5b,0x58,0x50,0xc0,0xac,0x29,0x87,0xfd,0x6e,0x72,0xa9,0x8e,0xdb,0xf7,0x85,0x2d,0x74, + 0xb2,0x40,0x21,0xd4,0x54,0x95,0x90,0x53,0x7b,0x88,0xc1,0xd3,0x04,0x93,0x4c,0xd3,0xeb,0x89,0x84,0xe3, + 0xc1,0x63,0x83,0x8e,0x56,0x92,0x68,0xb7,0x14,0xb1,0x89,0xa9,0xa1,0x9e,0x24,0xd0,0x19,0x53,0x36,0x49, + 0x30,0x26,0x8c,0x33,0x8b,0x8b,0xf0,0x44,0x80,0x1a,0x7e,0x1a,0xd9,0xfb,0x68,0x02,0x52,0x66,0xc4,0x54, + 0xcd,0x82,0x89,0x9b,0x90,0x53,0x22,0x4e,0xe1,0x4f,0x45,0xeb,0x87,0x06,0x04,0x4b,0x37,0x44,0x01,0x13, + 0x87,0x4b,0x76,0xb0,0x0d,0x27,0xcf,0xca,0x1d,0x9c,0x29,0x32,0xab,0xdd,0xfb,0x2e,0x59,0xdd,0x17,0x22, + 0xbf,0x0e,0x99,0x47,0xa5,0x5d,0x9d,0xd5,0x16,0x8c,0xef,0x04,0x82,0xd8,0x2b,0xda,0x2d,0x9c,0xfc,0x81, + 0x24,0xac,0x55,0x3b,0x16,0x36,0xe1,0x07,0x6c,0x48,0x4a,0x70,0xaf,0xd5,0xa6,0xe6,0x8a,0xa3,0xf2,0xd9, + 0x31,0x24,0x3c,0x05,0xf2,0xa5,0x99,0x11,0xa5,0x9e,0xe8,0x42,0x10,0x25,0xe2,0xe9,0x5d,0xc8,0xa1,0x3c, + 0xa8,0xbd,0xf3,0x50,0xe9,0xaa,0xfc,0xa8,0x56,0xb4,0x19,0x3f,0x89,0xa8,0x20,0x37,0x49,0xda,0x26,0x12, + 0x71,0x61,0x60,0x57,0xab,0x2b,0xc4,0xe6,0x45,0x1d,0x52,0x42,0x61,0x39,0xcd,0x12,0xd8,0xd1,0x88,0xc1, + 0x41,0x95,0x1c,0x99,0x59,0x1a,0x5b,0xad,0x16,0x35,0x6b,0x2b,0x2a,0x13,0x36,0xff,0x9a,0xc3,0xd7,0x8f, + 0x9d,0x50,0x93,0xa1,0xe3,0xba,0xef,0x99,0xe9,0x7b,0xdc,0xea,0xdb,0xea,0x19,0x70,0xae,0x5d,0xc1,0xad, + 0x59,0xf7,0xa9,0x56,0x83,0x23,0xee,0x79,0x4d,0x54,0xb8,0x98,0x8e,0xe4,0xc6,0x37,0x19,0xb8,0xf6,0x5a, + 0x33,0x42,0x6f,0xc6,0xd2,0x66,0x17,0xf2,0xe6,0xae,0x96,0xa3,0x2d,0x22,0x2c,0x78,0x37,0x21,0xf6,0xf6, + 0xbd,0xbc,0xa8,0xe8,0xa6,0xca,0x16,0x55,0x4f,0x5d,0x23,0xbd,0x4c,0x79,0xfa,0x01,0xe0,0x52,0x9a,0xf9, + 0xed,0x41,0xe5,0x98,0x3d,0x4c,0xbb,0x95,0xdc,0x0a,0xa0,0x0b,0x7a,0xaa,0x53,0xa9,0x61,0x07,0x96,0xa8, + 0x04,0x12,0xe5,0x24,0xb5,0xc8,0x41,0x64,0x9a,0x40,0x86,0x4d,0x3c,0x38,0xaa,0xe2,0x14,0x41,0x4b,0xf8, + 0xdc,0xb0,0xfc,0xa1,0x3a,0x0d,0xa1,0x81,0x2e,0x40,0xc9,0x0f,0xc3,0x74,0x6e,0x89,0x06,0xb8,0x42,0x16, + 0x11,0xf9,0x06,0x01,0x22,0x19,0xe8,0x8f,0xa8,0x6d,0x91,0xfe,0x13,0x6d,0x90,0x48,0x03,0xc4,0x1f,0xe8, + 0x06,0xe8,0x88,0x72,0x03,0x7a,0xeb,0x57,0xab,0x31,0x47,0x96,0xd1,0x51,0x5b,0x32,0xb3,0x96,0xd5,0xe0, + 0xdd,0x45,0xa5,0x64,0xa8,0x3a,0x24,0x9e,0xbf,0xa4,0x9d,0xe6,0x75,0x0d,0x06,0x95,0x0a,0x60,0xb2,0x0c, + 0xe9,0x00,0x6b,0x2e,0xaa,0x7d,0xe8,0x4a,0x8b,0x86,0x67,0x2f,0xab,0x26,0x72,0x3c,0x4d,0xb1,0x19,0x17, + 0x04,0xbe,0xe5,0x2b,0x60,0x78,0x55,0xac,0x62,0x21,0x14,0xd1,0x42,0x01,0x93,0x60,0xfa,0xac,0xce,0x9c, + 0x93,0x2a,0x96,0x52,0x8a,0x48,0xf4,0x3d,0x1d,0xa0,0xb7,0xf7,0x9f,0x98,0xfb,0x7f,0x62,0xbf,0x2e,0xb6, + 0xab,0x5e,0x1d,0x37,0x5b,0x89,0xc7,0xd5,0x0e,0x2f,0x96,0x73,0x90,0x25,0x3d,0x31,0xd3,0x11,0x4b,0x35, + 0x27,0xa0,0x07,0x1f,0xf9,0xfa,0xe6,0x15,0x1e,0x0f,0x5f,0xea,0xd4,0x78,0xb4,0x71,0x9e,0xd1,0x42,0x04, + 0xb5,0x0b,0x4d,0x47,0xa6,0x78,0x87,0xa2,0x98,0x87,0x23,0x00,0x1d,0xc0,0xde,0xd7,0x7b,0x91,0xfc,0xbd, + 0x27,0x7f,0xef,0x7f,0x29,0x7f,0xef,0xdd,0x57,0x7f,0xbf,0x56,0xe9,0x5f,0x45,0x26,0x00,0x99,0x54,0x78, + 0xa0,0x0a,0xa8,0x0a,0xf7,0x1f,0x44,0x5a,0xbd,0x78,0x02,0x55,0x77,0x29,0x75,0xef,0xae,0x6a,0x5e,0xfe, + 0xec,0xed,0xaa,0xbf,0xaa,0xb7,0xbd,0x2f,0x55,0xc2,0x97,0x0f,0xee,0xfe,0x5d,0x95,0xf9,0xea,0xae,0xae, + 0x44,0x5f,0xf7,0x74,0xa3,0x97,0x0b,0xcf,0x3c,0xfc,0x3d,0x8a,0xbf,0xfe,0x3b,0xb1,0x2c,0x0f,0xe3,0xbd, + 0xbb,0x77,0x57,0x2b,0xfa,0xf9,0xe5,0x03,0xfe,0xf9,0xf5,0xee,0x48,0x75,0x1e,0x51,0xe2,0xfd,0xaf,0x39, + 0xf1,0xc1,0xdf,0x47,0x9e,0x18,0x42,0x78,0x91,0xc7,0xcf,0x3e,0x1d,0x01,0x49,0xb0,0x4c,0x72,0xd7,0x29, + 0xb8,0xf0,0xbd,0x5d,0x6f,0xcb,0x0a,0x5e,0xbc,0x0b,0x19,0x5a,0xb6,0x78,0x99,0xbc,0x94,0xa0,0x6c,0x84, + 0x70,0xab,0xf0,0x5b,0x1d,0xad,0xae,0xf3,0xcd,0xcd,0x5d,0x76,0x3d,0x76,0xd3,0xa8,0xca,0x32,0xca,0x3c, + 0x7b,0xd4,0xc3,0xbd,0xfb,0x10,0xeb,0xdc,0xbe,0x7d,0xef,0x6b,0xfc,0x1d,0xe1,0xad,0x4d,0xa9,0x04,0x85, + 0x94,0x0f,0x56,0x30,0xf2,0xbe,0xf0,0xfa,0x95,0x0e,0x80,0x2e,0xfe,0xad,0x2e,0x34,0x2e,0xac,0xb9,0x32, + 0xed,0x7b,0x03,0x9a,0x0a,0x07,0x42,0xf6,0xf5,0x94,0xa7,0x3c,0x2f,0x3c,0x69,0x97,0x3f,0x4d,0x16,0xaf, + 0x2e,0x73,0x1d,0x68,0x2f,0xfc,0x18,0x77,0x11,0xa8,0xcf,0xf3,0x6a,0x66,0x05,0x0b,0xc3,0xcf,0xc1,0x33, + 0x44,0xb6,0xc9,0xce,0x53,0x62,0x1e,0xce,0x93,0x2a,0x3c,0xfe,0xe4,0x8a,0xe2,0xc5,0x4f,0x55,0x7b,0x17, + 0x5f,0x89,0x63,0x8d,0xa7,0x8d,0x20,0x95,0x8e,0x4f,0x23,0x9b,0x01,0x4c,0x07,0x38,0x6d,0xb1,0xfc,0xe1, + 0x77,0xc4,0x77,0xef,0xf0,0x39,0xba,0x5a,0x47,0x3a,0x22,0x11,0xe3,0x84,0x2b,0x53,0xd8,0xa0,0x4b,0x1a, + 0xd1,0x0b,0x95,0x2e,0x95,0x02,0x7d,0xdd,0x21,0xd0,0xe2,0x50,0xa7,0x76,0x3a,0xbd,0xa9,0x88,0x5a,0xa8, + 0x42,0x8b,0xf0,0x49,0xd9,0x98,0xc0,0xbe,0x8c,0xaa,0x8e,0x08,0x8c,0x12,0xd2,0x14,0x8d,0xb2,0xef,0xe0, + 0x9f,0x18,0x49,0xbc,0x48,0x17,0x8b,0xe4,0x04,0x77,0x78,0x25,0x77,0x9f,0xba,0x7e,0xa8,0x1b,0xf1,0x38, + 0xf5,0xce,0x9a,0x63,0x58,0xa7,0xfc,0x8a,0x52,0xa9,0xf2,0x08,0x26,0x43,0xbd,0x44,0x12,0x2e,0x11,0x68, + 0x2a,0xfb,0x81,0x55,0x98,0x75,0x24,0xc6,0x65,0x76,0x9c,0x22,0xeb,0x29,0x4c,0x7d,0x58,0x4f,0x92,0x99, + 0x36,0x29,0xa6,0x4b,0x88,0x33,0xb8,0x75,0x1d,0x8f,0x43,0x2d,0xa1,0xc8,0xc2,0x79,0x07,0xca,0xa2,0xa8, + 0x74,0x90,0x7b,0x7c,0x0b,0xd2,0x6b,0xa7,0x38,0x6b,0xcd,0xcf,0xa7,0x3c,0x16,0x14,0x88,0x9b,0x65,0xd5, + 0x4e,0x0d,0xa6,0x44,0x9f,0x1d,0x13,0x23,0x23,0x8b,0xd3,0x2a,0xd6,0xc8,0xd7,0xb5,0x16,0xc4,0x18,0xe6, + 0xa2,0x7f,0x3a,0x63,0x23,0x85,0x5f,0x21,0x88,0x6b,0x55,0xee,0x2c,0xc6,0x8e,0x7a,0x5d,0x08,0x28,0x6f, + 0x84,0x80,0x12,0xf4,0x62,0x1b,0x02,0xcc,0xf6,0xf2,0x9e,0x2e,0xe2,0xb2,0x7b,0x33,0xf1,0xc0,0xfe,0x42, + 0x2f,0xec,0x7f,0xdb,0x9e,0x86,0xd6,0x65,0xa1,0x96,0xed,0x63,0xce,0xcf,0x7c,0xe6,0x07,0xdf,0xee,0xe2, + 0x17,0x90,0xd7,0xd7,0x19,0xd0,0xad,0x7a,0x40,0xb2,0xfa,0xbe,0xb6,0xcc,0xeb,0xfd,0x05,0xb8,0x18,0xf9, + 0xd6,0xc2,0xb4,0xa0,0xe2,0x2f,0x4c,0x17,0xbc,0xb9,0xbc,0x92,0xe0,0x91,0x55,0x05,0x58,0x50,0x23,0x72, + 0x7f,0x37,0xe1,0xd4,0x39,0x76,0x76,0xc1,0xbf,0x34,0x1c,0xed,0x07,0xee,0x59,0x33,0x4c,0xad,0x76,0x04, + 0x27,0x43,0xf3,0x5b,0x95,0x9d,0x11,0x0d,0x96,0xf9,0x75,0x3d,0x2b,0xc1,0x67,0xab,0x8d,0x0e,0x28,0x73, + 0x9a,0x55,0x69,0x7e,0xa3,0x05,0x2b,0x4b,0xb7,0xe0,0x00,0x46,0x37,0xb8,0x34,0x5b,0x71,0x32,0xed,0x91, + 0x48,0xd8,0xb8,0xf5,0x3a,0xbc,0xd4,0x5e,0x5b,0x91,0x5a,0x7b,0x73,0x4c,0x66,0x30,0xf4,0x16,0xc7,0x8a, + 0xac,0xf5,0x76,0x65,0x7b,0xb2,0x55,0x5a,0x01,0x91,0xb8,0x4c,0x5c,0x73,0x44,0x72,0xb7,0x84,0xa6,0xb8, + 0xf0,0x70,0xa8,0xe9,0x51,0xbb,0xc0,0x3a,0xe4,0xd7,0xf0,0x85,0x4a,0x3c,0x60,0x6a,0xcf,0x38,0x93,0x5d, + 0xb7,0x3c,0x39,0x3a,0xa4,0x3d,0x0f,0x0b,0xf2,0x09,0x09,0x9f,0x81,0x28,0xb2,0xc6,0xda,0xac,0x40,0xbe, + 0x05,0x38,0x12,0x4f,0xc3,0x4f,0x44,0xb0,0x7f,0xa3,0xeb,0x58,0x15,0x16,0x2e,0x96,0x3f,0x26,0xfc,0x2e, + 0xd1,0xf3,0x96,0x23,0x57,0x11,0xc0,0x97,0x42,0x48,0x23,0x9a,0x87,0x22,0xa4,0x67,0x10,0x50,0x2f,0x91, + 0xc1,0x73,0x63,0x83,0xd0,0x69,0x83,0x5d,0x5b,0x06,0xa3,0xa5,0x0e,0xfa,0xbb,0x1b,0xd9,0xf7,0xd6,0x32, + 0x30,0xe9,0xac,0x81,0xdd,0xe0,0x99,0x6c,0x7f,0x7c,0x38,0x46,0x75,0x00,0xf3,0x9a,0xe4,0xb1,0x82,0x9a, + 0xf3,0x10,0x34,0xd5,0x53,0xc7,0x3d,0xbf,0x7d,0xdb,0xe3,0xc7,0xc4,0xf5,0xba,0x16,0xe9,0xdf,0xbe,0x9d, + 0x98,0x9e,0x89,0x29,0x9d,0x50,0xeb,0xbe,0xf7,0x7c,0xda,0x93,0x59,0xf4,0xb0,0xda,0xbd,0x6c,0xd1,0x83, + 0x93,0x99,0x1e,0xdd,0x01,0x3d,0x5e,0xeb,0x5e,0x2a,0x22,0xd3,0x45,0x0f,0xe6,0x0f,0xbd,0xd3,0xe4,0x22, + 0x95,0x0a,0x52,0x9e,0x0a,0x0f,0x88,0x0b,0xea,0x98,0x7b,0x1b,0xa7,0x83,0x2d,0x98,0x11,0x03,0x08,0xe7, + 0xa1,0xcd,0x15,0xe9,0xba,0x01,0x66,0xf0,0x7c,0xb6,0xa4,0x7f,0xa0,0x62,0xb9,0xa1,0x3d,0xe1,0xed,0x27, + 0x23,0x0f,0xe6,0x53,0xcd,0x65,0x89,0x28,0xb5,0x1a,0xce,0x20,0xfc,0x82,0x38,0x53,0x79,0xfd,0x0f,0xb3, + 0xb0,0x18,0x64,0xbe,0xc4,0x9e,0xc0,0xd1,0xd8,0x8f,0x5b,0x88,0x62,0x4c,0x3d,0xd1,0xe5,0xd2,0xf1,0x40, + 0xb2,0x1e,0xee,0x5b,0xf4,0x5c,0x06,0xbb,0xc1,0x79,0x01,0x79,0xb8,0x2d,0x27,0xaa,0xdd,0x21,0x58,0xad, + 0xc1,0xb5,0x9c,0x66,0x52,0xa1,0x85,0x77,0xad,0x46,0x1f,0x31,0x7e,0x9e,0x67,0xab,0xf5,0x69,0x79,0x73, + 0x7a,0x90,0xf7,0xfb,0x2c,0x9f,0xf1,0xae,0x94,0xff,0xd7,0x12,0xcf,0x0a,0xd6,0xb3,0x3e,0xab,0xa7,0x78, + 0x4a,0x57,0xac,0xc4,0x33,0x03,0xda,0x12,0x96,0x94,0x3e,0xc4,0xc6,0x42,0xb5,0xe3,0xad,0x59,0x87,0x65, + 0x18,0x24,0xfd,0x38,0x0b,0x4d,0xb2,0xc8,0x24,0xce,0x84,0xee,0x4e,0x82,0x91,0xc7,0xce,0x46,0xa3,0xa7, + 0x75,0x02,0x90,0xc9,0x84,0x28,0xfd,0xa5,0x38,0xa5,0xf3,0x86,0x7a,0x08,0xd2,0x6d,0x22,0x1e,0xb1,0x8b, + 0xb5,0x68,0xc9,0x7b,0xff,0x83,0xc7,0x3a,0xa2,0x31,0x83,0x30,0xa7,0x1d,0x81,0xc8,0x8f,0xba,0x0c,0x22, + 0xfc,0x6b,0xc4,0xd2,0x37,0xcd,0xa4,0x5a,0x33,0xfb,0xe8,0xae,0x6a,0x5c,0x3a,0xa2,0xea,0xbc,0x66,0x3e, + 0x43,0x09,0x3e,0xdd,0x94,0xad,0xe8,0xe9,0x30,0x4b,0xd1,0x9e,0x09,0xd6,0x56,0xff,0x60,0xdb,0x70,0x3d, + 0x3a,0x5e,0xba,0x61,0xd6,0xdc,0x94,0x82,0x26,0x94,0x1d,0x69,0x86,0xaf,0x50,0xef,0xd2,0xe0,0xac,0x64, + 0xfc,0x91,0xe2,0x68,0x95,0x17,0x08,0xa5,0xf5,0xca,0x7c,0x9b,0x1a,0x88,0x2a,0x90,0x1f,0x30,0xa5,0x43, + 0x74,0xbb,0x2e,0x1b,0xee,0xed,0x06,0x47,0x4e,0x05,0x3d,0x5a,0xf9,0x2b,0x6a,0xe1,0xa6,0xba,0xaa,0x45, + 0x34,0x6e,0xd6,0xef,0x9b,0x45,0x5d,0x73,0xb8,0xbb,0x35,0x6f,0xea,0x59,0xbc,0xf3,0x2f,0xff,0x70,0x12, + 0xf4,0x77,0xc2,0xa7,0xfc,0x79,0x89,0xcf,0x37,0xb4,0x4c,0x1f,0xe2,0xbd,0xf0,0x71,0x7c,0x37,0xbc,0x15, + 0xdf,0x0b,0x5f,0xd1,0xef,0x6f,0xe2,0xfb,0xe1,0xb3,0xf8,0x41,0xf8,0x3a,0xfe,0x32,0x7c,0x1f,0xff,0x3d, + 0x7c,0x1e,0x7f,0x15,0xfe,0x04,0x86,0xfe,0xa7,0x83,0x57,0x47,0xf1,0xd5,0xe5,0x22,0xa2,0xbf,0x21,0xb3, + 0x81,0xd1,0xc1,0xbd,0xf0,0xcd,0x51,0xe8,0x1d,0x78,0xd1,0xc1,0x37,0x47,0x21,0x5d,0xf2,0xd1,0xc1,0xfb, + 0xa3,0x75,0xf8,0xd3,0xc1,0x9e,0x2a,0xb9,0x47,0xb9,0x03,0xca,0xbd,0xdb,0x59,0xea,0xae,0x2a,0x75,0xd7, + 0x6d,0x6f,0x57,0xfd,0x15,0xae,0x52,0x7e,0xa0,0xf8,0x3d,0x2a,0x7e,0x53,0xb9,0x90,0x7b,0x0d,0x3f,0xe8, + 0x7e,0xf9,0x8b,0x7b,0xc6,0x97,0xf4,0x4d,0x5f,0x68,0xee,0x1b,0x6a,0xce,0xbb,0x43,0x59,0xcf,0x50,0xef, + 0x8e,0x77,0x27,0x3a,0x78,0x5d,0x4f,0x27,0x7c,0x4c,0x5f,0x47,0x1e,0x1a,0xbb,0x25,0x15,0x9f,0xb3,0x3d, + 0x1f,0xb2,0x64,0x38,0xcf,0x74,0x7d,0x24,0x38,0x25,0x9e,0xa9,0x12,0xaf,0xa9,0x04,0xb7,0xdb,0x2a,0x81, + 0x8e,0x64,0x63,0xbe,0x65,0x9b,0x67,0x22,0xd5,0xca,0x65,0xba,0x62,0x5b,0xce,0xd5,0xf6,0xe8,0xe0,0x70, + 0x32,0x38,0xea,0xaf,0xee,0xb0,0x0f,0xac,0x3b,0x2b,0x8f,0xdd,0x62,0x79,0x01,0x95,0xbb,0xb5,0x13,0xbe, + 0xdc,0x80,0xb6,0xba,0xb1,0xd6,0x4b,0x0b,0x6b,0x31,0x94,0xbd,0xa6,0x4b,0xad,0x2d,0xa1,0xb2,0x31,0x96, + 0x85,0xb0,0x2a,0xe8,0x67,0x74,0xc8,0xb3,0x74,0xd8,0xbb,0x02,0xa1,0x7c,0x70,0xe0,0x66,0xf1,0xf6,0x1e, + 0x5d,0x8d,0xaf,0x38,0xee,0xdd,0x29,0xc0,0x05,0x67,0xe6,0xf4,0xe0,0xc3,0x91,0x63,0xdc,0xa1,0xef,0xa9, + 0x9c,0x75,0x79,0x04,0x7a,0xe1,0xa2,0x50,0x32,0x60,0xab,0x7f,0xf0,0xa6,0xa3,0x06,0x24,0xb5,0xa3,0x3c, + 0x2e,0xa3,0xbc,0x4f,0x84,0x3f,0x15,0x7a,0xec,0x14,0x42,0x25,0xa2,0x8c,0xa6,0x04,0xfb,0x94,0x77,0xcb, + 0xc9,0x83,0x46,0xe4,0xa3,0xdd,0x60,0xba,0xbd,0x4d,0xc3,0xfb,0x26,0x94,0xa2,0xe6,0x2d,0x12,0xa3,0xdd, + 0xc2,0xd3,0x87,0x9f,0xc7,0x73,0x76,0x99,0x67,0xc4,0xa2,0x18,0x3b,0xd4,0x31,0x87,0x4a,0x06,0xbe,0x64, + 0x87,0xf1,0xb3,0x7e,0x1f,0xfe,0x13,0x59,0x59,0x08,0x3e,0x17,0x67,0x78,0xb1,0xd8,0x6a,0xf0,0xd3,0x9c, + 0xd1,0xdf,0x63,0x6c,0xbd,0xa4,0xc6,0x9f,0xd1,0xad,0x7c,0x87,0xd5,0xba,0x56,0x2b,0xfc,0x7e,0x7d,0xfb, + 0x36,0x81,0x05,0x7e,0x1b,0xdf,0xdd,0xd4,0x2c,0x61,0x6b,0x6a,0xb8,0x5f,0xa9,0x31,0x22,0xc2,0xb2,0x1f, + 0x28,0x2b,0xae,0x09,0xc4,0x62,0xa0,0x73,0x16,0xf1,0x4f,0x07,0xcb,0xa3,0x80,0xf0,0xce,0x6a,0xb5,0x60, + 0x45,0xd0,0xd5,0xea,0x39,0x64,0xcb,0xcf,0xb5,0x56,0x10,0xf7,0x09,0x3b,0x96,0xd0,0x2f,0xe2,0xd3,0x83, + 0x84,0xce,0xe0,0x91,0xbc,0xc3,0x26,0x38,0x68,0x65,0x6c,0x96,0xb4,0x1c,0x55,0x51,0x29,0xd3,0x2f,0x7c, + 0x33,0x75,0x3d,0xe8,0xf7,0xc6,0x39,0xaa,0x28,0xbb,0x19,0x82,0x54,0xc3,0x48,0x0c,0xff,0xc3,0x20,0xbb, + 0xd6,0xa1,0x0d,0x64,0x27,0x69,0x05,0x10,0x63,0x41,0x6e,0xe3,0x6e,0x84,0x8c,0xbc,0xaa,0x1d,0xb4,0xd6, + 0x8f,0x30,0xda,0xfb,0xb6,0x86,0x4f,0x78,0xac,0xe5,0x79,0x97,0x0d,0x0a,0x03,0xe1,0xdd,0x30,0x74,0xed, + 0x4e,0xdb,0x69,0xc9,0xb2,0xf6,0xa9,0x4d,0xcd,0x08,0x49,0x2b,0x17,0xdc,0xc9,0x50,0x3b,0xde,0x2e,0x0e, + 0xca,0x83,0xc5,0x91,0xf5,0xd8,0x01,0x65,0xb3,0xe0,0x4a,0xdc,0x50,0x29,0xdb,0x84,0x22,0x1e,0x87,0x8b, + 0x1a,0x99,0x16,0x72,0x5a,0x5f,0x6c,0x38,0x39,0xc3,0x9a,0xff,0x03,0x37,0x0e,0x6d,0x59,0xf3,0xba,0x24, + 0xc4,0xe3,0x6a,0xe5,0xa5,0xf9,0xf6,0x2f,0x6f,0x3c,0x96,0xe7,0xba,0xbc,0x76,0x9d,0xc7,0x16,0x49,0x8a, + 0xc5,0x65,0xf2,0x52,0x85,0x31,0xb7,0x64,0x40,0x92,0x0e,0x2b,0xca,0xdc,0x12,0xf1,0x70,0xea,0x50,0xb9, + 0xb2,0x3e,0x97,0x07,0x3e,0xf9,0x35,0xe5,0x7c,0x22,0x57,0x62,0x56,0x60,0x93,0xef,0xd5,0x0a,0x8c,0xf2, + 0xbe,0x2a,0x72,0x9e,0x2d,0xe0,0x0a,0x04,0x7d,0xcb,0x97,0x08,0x3c,0xb5,0x77,0x69,0x08,0x15,0x52,0x96, + 0x2d,0x38,0xe9,0xe0,0x6a,0x63,0x8b,0xef,0x15,0x96,0x77,0x6b,0x4b,0xbe,0x74,0xef,0x6a,0xa2,0xac,0x0f, + 0x65,0x15,0xb6,0xd3,0xa5,0x92,0x9d,0xa2,0x7b,0xe8,0x94,0x3d,0x18,0x24,0x92,0x76,0x4b,0x1d,0x88,0xc4, + 0xdd,0xda,0x90,0xa5,0xda,0x75,0x17,0x14,0x2f,0xef,0x20,0xec,0x25,0xcf,0x5e,0x54,0x37,0x07,0xdc,0x00, + 0xcb,0x17,0x5e,0xd6,0xcd,0x24,0xb5,0xbb,0x00,0x42,0x82,0x92,0xcc,0xef,0x07,0x0d,0xc8,0x57,0x58,0xc5, + 0xdf,0x82,0x3a,0x63,0xbe,0x5a,0x95,0x7e,0x25,0x0d,0x3a,0xc7,0x45,0xc2,0x69,0x6b,0xa3,0xf4,0x77,0x70, + 0x1a,0xfb,0xf6,0x85,0xaf,0xdf,0x3b,0xf3,0xd0,0x85,0x9a,0x08,0xee,0x1b,0x05,0x54,0x88,0xec,0x6a,0x00, + 0x49,0x54,0x84,0x0e,0x78,0x44,0x0b,0xa2,0xc8,0xc2,0x9f,0xe3,0xab,0x8b,0xf3,0xe8,0x6a,0x5d,0x57,0xa4, + 0xef,0x66,0x4d,0x4a,0x72,0xab,0x5e,0xd5,0x1c,0xde,0xba,0x39,0x06,0xb4,0x25,0x30,0xc3,0x99,0x7a,0xd9, + 0xf0,0xa3,0x73,0x07,0x28,0x63,0xad,0x2f,0x97,0x17,0xb6,0xeb,0x61,0x99,0x6c,0xc7,0xf1,0x3a,0xd5,0xbe, + 0xa0,0xa5,0xbd,0x61,0xe3,0x37,0xa4,0x2f,0x35,0xd8,0xd3,0xee,0x10,0x0d,0x89,0x8d,0x81,0x6a,0x6c,0xd8, + 0x2c,0x5b,0xad,0x43,0xbb,0xd3,0x4e,0x76,0xbf,0xed,0x0b,0xc1,0xdd,0xe8,0x5a,0xdd,0xcc,0x6e,0x6a,0x83, + 0xec,0xc0,0x69,0xac,0x61,0x38,0xc0,0xdc,0x9e,0x1d,0xc2,0x24,0xb7,0x6c,0x35,0x2b,0x46,0x80,0xf9,0xa3, + 0xed,0xbd,0x40,0xde,0xa7,0xc7,0x90,0x63,0x42,0x41,0xd2,0xef,0x18,0x53,0xd8,0x1c,0x8e,0x23,0xdb,0x6a, + 0x9a,0x57,0x8a,0xec,0xcf,0x71,0x09,0x4e,0x8b,0x37,0xb8,0xc5,0x95,0x7c,0xef,0x16,0x9a,0x76,0x42,0x54, + 0xd8,0x06,0x0d,0x8d,0xc5,0xb0,0xed,0x1b,0x4e,0x3b,0x9d,0x22,0x37,0xab,0x10,0x23,0xc8,0x4e,0xd0,0x9b, + 0x89,0xad,0xc0,0x17,0xeb,0xf0,0x6a,0x92,0xa6,0x73,0x51,0x4d,0x6e,0xcf,0x4e,0x89,0x31,0xdd,0xab,0x7e, + 0xab,0x46,0x4d,0x74,0xd0,0x6a,0xfc,0xd5,0xba,0x71,0x52,0x1d,0xcb,0xe4,0xdc,0x5d,0x07,0x16,0x90,0x59, + 0x8b,0x21,0x80,0x6f,0xad,0x06,0x7b,0xf6,0xb8,0x45,0xec,0x2f,0xac,0x58,0x74,0x2e,0xfb,0xe5,0x6f,0x8c, + 0x3f,0xbc,0xca,0xce,0x89,0x54,0xcf,0x20,0x6f,0x97,0x29,0xfc,0x8c,0x86,0xe9,0xbc,0xdb,0x63,0x6e,0x6c, + 0x02,0x0a,0xe9,0xb3,0xb9,0xa1,0x68,0xa1,0x00,0x80,0x72,0x95,0x80,0x7b,0xc1,0x1e,0xc0,0x7f,0x6e,0xde, + 0x13,0x37,0xd7,0x77,0x1f,0x17,0x74,0x33,0xce,0xe1,0xbf,0xb9,0x11,0xfb,0xa1,0x41,0x37,0x21,0xeb,0x72, + 0xc3,0x5c,0xf5,0xa3,0x7b,0x5d,0x7e,0x91,0x56,0x1d,0xa7,0x0f,0xbb,0x81,0xf5,0xd6,0xbf,0xea,0x65,0x4f, + 0xb9,0x33,0x17,0x23,0xdd,0xd4,0xa9,0x5b,0xba,0xa3,0xfe,0xa7,0x0e,0xc2,0xad,0xa6,0x07,0xa3,0x90,0xe1, + 0xb5,0xa3,0x50,0x65,0xec,0xe2,0xdd,0x9d,0x9a,0x7b,0x99,0x87,0xa9,0x71,0xeb,0xb5,0x6d,0x9b,0x52,0x6e, + 0x95,0xee,0xf6,0x2d,0xd2,0x00,0xc5,0x3b,0x11,0xf6,0xb5,0xbd,0x75,0xd6,0xd8,0xdc,0x54,0xf7,0x28,0xba, + 0x6f,0xf9,0xd4,0x3d,0xf2,0x36,0xb8,0x5f,0xb7,0xbd,0xfa,0xf0,0xb4,0x6b,0x37,0x80,0xfd,0xba,0x46,0x1a, + 0x07,0xa9,0xdd,0x96,0x03,0xf3,0xd7,0xb5,0xe4,0x9c,0xa5,0x46,0x3b,0x50,0x2e,0x53,0x5e,0x9d,0x1c,0x5d, + 0x23,0x62,0xae,0x32,0xd3,0x12,0x0c,0xbc,0x95,0x1c,0x5f,0x41,0x83,0x12,0xfa,0x6b,0xc8,0x91,0x07,0x79, + 0x26,0xcb,0x0e,0x50,0x39,0x3b,0x82,0xe1,0x46,0x94,0x37,0x3a,0xcb,0x16,0xdf,0xda,0x94,0x58,0x87,0x4b, + 0x9c,0x14,0x11,0x1b,0x7d,0x0b,0x65,0xaa,0x8e,0x1c,0x12,0xae,0xd9,0x6a,0xb7,0x18,0xac,0xd2,0xbc,0xa1, + 0xc2,0xc9,0x2d,0xec,0x3b,0x8e,0x6b,0x92,0xca,0xa5,0x80,0x2a,0x15,0x77,0xd7,0x25,0xfb,0xc7,0x86,0x65, + 0x18,0x8b,0xc1,0x10,0xab,0x62,0xea,0x88,0xc4,0x5b,0xac,0x40,0x60,0xf7,0x61,0x69,0xa7,0xea,0x47,0x52, + 0x44,0x0a,0x27,0xae,0xc9,0x29,0xb7,0xd6,0x6c,0x60,0x4b,0x4f,0x6c,0xec,0x34,0x37,0x8b,0xc7,0x9a,0x0f, + 0x98,0xd5,0xd6,0xd3,0xff,0x88,0xbc,0x80,0xbd,0x94,0xf8,0x3a,0x30,0x16,0x1c,0x8e,0xf3,0xf4,0x67,0x6a, + 0xfa,0x30,0x17,0xd5,0x21,0x5a,0x38,0x42,0xc1,0x8c,0x93,0xa3,0x59,0x63,0x1d,0x51,0xb1,0x09,0x03,0x76, + 0x48,0xe9,0x38,0x0f,0xa1,0xe3,0x2c,0xbe,0x0a,0x76,0xfc,0x7f,0x44,0x07,0x87,0x97,0x87,0xdb,0xef,0x56, + 0x83,0xa3,0x7e,0xb0,0x73,0x52,0x6b,0x9b,0x8f,0xa1,0xf9,0xb0,0x00,0x9f,0xba,0x68,0x3c,0x39,0xf3,0x5a, + 0x89,0xba,0xc7,0xe2,0x60,0x8c,0x78,0x3f,0x33,0x65,0xdd,0xed,0xdf,0x25,0xce,0x59,0xbf,0x8b,0xd5,0xfb, + 0xc9,0xa3,0x58,0xd2,0x28,0xbc,0x32,0xb9,0x54,0x42,0x3c,0xb5,0x4a,0x44,0x78,0xd6,0x89,0x42,0x8d,0x47, + 0xca,0x4f,0x83,0xb4,0xe2,0xc0,0x1a,0x2c,0xfe,0xac,0xab,0x99,0x41,0x8b,0x5d,0x1d,0xf5,0xbe,0x81,0x42, + 0x3b,0x44,0x6e,0x62,0xe9,0x9d,0x4e,0x7a,0xac,0xe2,0xae,0x7c,0x18,0x4e,0xe2,0xba,0xc2,0x70,0x1a,0x4f, + 0x54,0xd8,0x14,0x1e,0xdb,0xa4,0x71,0xfd,0x21,0x2a,0xb9,0x88,0xe8,0x27,0xcd,0x67,0xcc,0xa5,0x5a,0x48, + 0x62,0xe8,0x7c,0x3d,0x4d,0xeb,0xe4,0xf9,0x28,0x31,0x85,0xa2,0xd1,0xa8,0x30,0x26,0xd1,0xb3,0x70,0x1a, + 0x44,0x45,0xcd,0xfa,0xb9,0x9b,0xa5,0x14,0x6d,0xdd,0xed,0x72,0x05,0xbf,0x35,0xe2,0x75,0x57,0xd4,0x04, + 0x62,0xa9,0xb5,0x80,0xe2,0x6a,0x54,0x2a,0x0b,0x33,0xc4,0x4b,0x6f,0xf4,0x65,0xa6,0xdc,0xc2,0x10,0xfa, + 0x80,0xd9,0xc7,0xc9,0xee,0xac,0x0a,0x61,0x55,0x6a,0xca,0x19,0x09,0x34,0x01,0xc2,0xa8,0xf4,0xbb,0x6a, + 0xe4,0x21,0xe4,0xb3,0xa6,0x86,0x0a,0x38,0x3f,0x8e,0xc6,0xcd,0x31,0xb5,0x20,0xb5,0xa6,0x10,0x95,0xff, + 0xa1,0xa6,0x9a,0xe1,0xf6,0xfd,0x61,0xb1,0xbd,0xdd,0x7b,0xb4,0x3b,0x0c,0x12,0xd6,0xff,0x33,0x2a,0xa9, + 0x45,0xff,0x3e,0xf3,0xe1,0x5b,0x46,0xb5,0xc6,0x53,0xcf,0x2f,0x99,0x42,0x6d,0xca,0x1d,0x42,0x02,0x4b, + 0xbf,0x85,0x61,0xa6,0x2b,0x13,0x8d,0xae,0x86,0x8a,0x3c,0x54,0x5c,0x67,0xf3,0x25,0x1b,0x50,0xac,0x16, + 0x3c,0x64,0x29,0x43,0x72,0xbe,0xd8,0x0c,0xaf,0xb3,0xcf,0x87,0x57,0xa5,0xd3,0xb2,0xb4,0x40,0xd6,0x51, + 0x96,0x4a,0x8d,0xb2,0x54,0x62,0xd9,0xd7,0xb7,0x60,0x71,0x1c,0xc2,0xcb,0x66,0xa9,0xfc,0x40,0xbb,0xcb, + 0xee,0xe2,0xec,0xc6,0xb3,0x41,0x6b,0xbd,0xf7,0xa0,0xff,0xcb,0xeb,0x5d,0x35,0x54,0x80,0x21,0x96,0x52, + 0xc3,0x15,0x68,0x0d,0x68,0x09,0xd5,0x48,0x4b,0xbe,0x42,0x30,0x2c,0x75,0x9a,0x3a,0x28,0x4d,0x36,0xca, + 0x36,0xd3,0xa9,0xb4,0xb9,0x50,0xf3,0x62,0xe8,0xc0,0x66,0x5a,0x3b,0xae,0xbd,0x6d,0xd5,0xe6,0x6d,0x03, + 0x9e,0xd1,0xa1,0xd8,0xbb,0x36,0x2b,0xf9,0xb3,0x9b,0x65,0xd3,0xfb,0x99,0xdc,0x59,0xd7,0xec,0x0c,0x9d, + 0x26,0x3a,0x16,0x65,0x83,0x0f,0x69,0xce,0xb2,0x7e,0x6c,0x1c,0xb5,0xaf,0x94,0x8a,0xd5,0xfb,0xac,0xd5, + 0x35,0xcf,0xb5,0x5c,0x79,0xd3,0x52,0x43,0x22,0x10,0x79,0x5e,0xf3,0x0c,0x8e,0x3b,0x17,0xd8,0x58,0x1d, + 0x89,0xf9,0x6e,0x0b,0x2c,0x1e,0x0c,0x17,0x0a,0x2c,0x8a,0x83,0x85,0x0d,0x16,0x8b,0xfe,0x83,0x5a,0x63, + 0x6f,0x54,0x4b,0xc5,0x32,0x56,0xbc,0xde,0x0b,0xc2,0xc4,0x57,0x38,0xc3,0x02,0x97,0xb1,0x50,0x1c,0xd4, + 0xb7,0x81,0x87,0x82,0xae,0xbc,0x8c,0x07,0x2c,0xf7,0x7c,0x03,0x86,0xdd,0x51,0xdb,0x4a,0xcb,0x07,0x90, + 0x4c,0xb6,0xc6,0x7b,0x77,0x58,0xaa,0xf1,0xb2,0x7f,0x84,0x7a,0xbc,0x65,0xff,0xae,0x01,0xe3,0xcc,0x8c, + 0x6b,0xac,0x06,0x96,0x7d,0x2a,0x1c,0x87,0x95,0x19,0xb9,0x0e,0x34,0x93,0x35,0x57,0xba,0x89,0x7a,0x2d, + 0x53,0x69,0xb1,0x50,0x6b,0x8d,0xfa,0xde,0x30,0x51,0xa3,0x2e,0x61,0x63,0x54,0x8f,0x3a,0xe9,0xdf,0xd3, + 0x4f,0x6c,0x0d,0xec,0x56,0x06,0x35,0x66,0x73,0x01,0x94,0xa5,0x49,0x78,0xe2,0x39,0x6a,0x31,0xf9,0x8d, + 0xa1,0x35,0xa8,0x4f,0xb9,0xc2,0x6f,0x58,0x84,0xaa,0xd1,0x24,0xe5,0x3a,0xba,0x53,0x1d,0x84,0xa2,0xe1, + 0xfd,0x2c,0x6a,0x9b,0x10,0x1c,0xe4,0x8f,0x8d,0xc6,0x16,0x9b,0x1b,0x63,0x1f,0xbc,0x1d,0xad,0x34,0x25, + 0x34,0x6d,0x6d,0xae,0x4f,0x69,0xe4,0x74,0xb0,0xac,0xb2,0xd9,0x40,0x7c,0x22,0x6e,0x1c,0x6d,0xd7,0xe4, + 0x5d,0x26,0xe1,0x86,0xd9,0x37,0xd8,0x84,0x8d,0x8b,0xb0,0xb1,0x51,0x67,0x02,0xed,0xd6,0x3a,0x17,0xe3, + 0x4f,0x37,0xb6,0x61,0x51,0xba,0x27,0xd1,0x5a,0x1b,0xd1,0x34,0xc9,0xfe,0x30,0xfd,0x77,0x10,0x24,0x9a, + 0x58,0xad,0xe0,0x11,0x9b,0x00,0x16,0x48,0x9b,0xa8,0xf4,0x45,0x00,0x79,0x27,0x8c,0x4d,0xf9,0x11,0x41, + 0x88,0x59,0xe4,0xc3,0x25,0x98,0x9d,0xd9,0xe6,0x12,0x90,0x0e,0xeb,0x82,0xbe,0xf7,0xee,0x1d,0x22,0x25, + 0xe8,0x0b,0xb6,0x2d,0xc0,0x3d,0x98,0x19,0xfc,0x05,0x7f,0x4e,0xd7,0x16,0x64,0x31,0x61,0x87,0x76,0xa5, + 0x5f,0x40,0xe9,0x38,0x5c,0x2a,0xbe,0xb9,0x25,0xe3,0x7b,0x37,0x69,0xa1,0x02,0xe6,0x3e,0xcc,0xc0,0x37, + 0x34,0x2b,0x0a,0x8b,0xd2,0xa2,0xfd,0xdc,0xd1,0x5a,0xd3,0xfa,0x22,0x68,0x5c,0x85,0x9b,0x25,0x36,0x61, + 0xbe,0xf9,0x6e,0x2c,0xff,0x57,0xdc,0x8d,0xe2,0xa2,0xb0,0x32,0x77,0x63,0x09,0x13,0x7f,0x77,0x5d,0x26, + 0x9d,0xa4,0xc9,0x26,0x9c,0xbe,0xb7,0x19,0xa7,0xef,0x1d,0x69,0xc3,0x0a,0x0b,0x6d,0x25,0x2d,0x33,0x25, + 0x6d,0xff,0x30,0x6a,0xe9,0xd2,0xc3,0x50,0x7b,0x24,0xd1,0x9f,0xf1,0xc8,0x0f,0xc3,0x22,0x8e,0x5a,0x02, + 0xef,0x10,0xdc,0x1a,0x5f,0x67,0xd6,0x6f,0xc4,0x25,0xa5,0x1f,0x1c,0x75,0xd5,0x97,0x8a,0x1c,0x70,0x55, + 0xcc,0x97,0xf2,0x6b,0xcc,0x97,0x72,0x31,0x5f,0x92,0x3a,0x41,0xd8,0x91,0xbf,0x77,0xa4,0x7a,0x63,0xab, + 0x25,0x05,0x8f,0x08,0x6e,0xcf,0x91,0x4b,0x1b,0x88,0xc7,0x96,0x28,0xdc,0x80,0x76,0x1c,0x99,0xc2,0x46, + 0xa4,0xb3,0xa1,0x41,0x07,0x4b,0x34,0x5b,0xea,0x44,0x38,0x7f,0xaa,0xa1,0x0d,0xc8,0xa6,0x6b,0xe8,0x9b, + 0x51,0x8d,0xf4,0xfc,0xff,0x2b,0xa2,0x69,0xbe,0x06,0x6d,0x40,0x33,0x1d,0xc5,0x6a,0x24,0x63,0x2f,0xe0, + 0x8d,0x28,0x26,0xff,0x44,0x14,0xe3,0x34,0x7a,0x23,0x82,0x91,0xd2,0x37,0xa3,0x97,0x86,0x2c,0xf7,0xbf, + 0x1c,0xb9,0xe4,0x37,0x23,0x97,0x6e,0xd7,0x4a,0xff,0x17,0xb9,0x74,0x20,0x97,0xdc,0x20,0x17,0xa5,0x09, + 0x22,0x86,0x02,0x4a,0x04,0x94,0x11,0xc1,0x67,0x2d,0x6c,0xf8,0x73,0x40,0xeb,0x9c,0x5c,0x24,0xd9,0x2c, + 0x39,0xce,0x66,0x19,0xf2,0xe3,0x2b,0xf7,0xbe,0x8c,0x3e,0x3a,0x2f,0x81,0xd1,0x31,0xb6,0x86,0x35,0x7a, + 0x67,0x33,0x3b,0x6e,0x2f,0x7c,0x31,0x9c,0xc6,0x04,0x85,0x17,0x04,0xfb,0x94,0x74,0xfb,0xb6,0x02,0xb8, + 0x53,0x9d,0xa2,0x4d,0x2c,0x07,0x5e,0xc0,0x33,0x4a,0x75,0x33,0x12,0x92,0xa9,0x6b,0xbc,0x1f,0xa9,0x76, + 0x3d,0x5a,0xef,0x96,0xe8,0xaf,0x5e,0x11,0x94,0x46,0x9b,0x04,0xae,0x28,0x02,0x27,0x36,0x79,0x7c,0xba, + 0xa1,0xc9,0xdc,0x69,0xb2,0x6a,0xb7,0xd7,0x7e,0x1f,0xb3,0x5f,0x7e,0xfe,0x57,0x80,0x5f,0xaa,0xf4,0x56, + 0x55,0xf3,0x59,0xcd,0x4f,0x11,0xdb,0x42,0x5c,0xa8,0x31,0xfb,0x6a,0xd2,0xea,0xa9,0xcd,0xab,0xac,0xd7, + 0xb5,0x55,0xc4,0xf5,0x73,0x1c,0x7f,0xde,0x24,0x5b,0x0c,0x4e,0xd6,0xc5,0x96,0x65,0x86,0xc1,0xc9,0xec, + 0x69,0x66,0x60,0xcb,0x84,0xcb,0x6f,0x4c,0x33,0xb1,0xd8,0xb3,0x04,0xf3,0x34,0xd6,0x69,0x49,0x6b,0x9e, + 0x61,0x6e,0x66,0x5a,0x7e,0xce,0x4c,0xd3,0xcf,0x9f,0xa9,0xf2,0x97,0xe8,0x8e,0xb5,0x64,0xe6,0xa9,0x0a, + 0x8d,0xde,0x6f,0xd9,0xe2,0x1d,0x3f,0x7d,0x54,0x93,0xff,0x5e,0x18,0x33,0x3c,0x71,0xaa,0x6d,0xf6,0x26, + 0x16,0x74,0x75,0x70,0xbb,0x9f,0x3a,0x8f,0x8e,0xb3,0xf7,0xdf,0x3b,0x8f,0xfc,0xe6,0x79,0xc0,0xe6,0xfa, + 0x43,0x96,0xfb,0xef,0xf0,0x69,0x8c,0xff,0x7c,0x0f,0xe7,0x9c,0x23,0x34,0x8c,0x55,0x54,0x77,0x76,0x1c, + 0x76,0x5a,0xc7,0x1f,0xf3,0x2f,0xc5,0xcd,0xe2,0xa5,0xd2,0xda,0xa1,0xf1,0x1a,0xd5,0x01,0x31,0x8a,0x7a, + 0x01,0x52,0xe8,0x4d,0x55,0x52,0xe5,0x13,0xc2,0x94,0xc3,0x52,0xec,0xa3,0xca,0x81,0x8a,0x26,0x0e,0xcc, + 0xa8,0x70,0x5d,0xec,0xfd,0x7d,0x70,0x6f,0x70,0xcf,0x0b,0xbb,0x4c,0xb5,0x24,0xd2,0xf3,0xed,0xdb,0x2a, + 0xe2,0xf3,0x5b,0xc4,0xa0,0xa9,0xbf,0x07,0xcb,0x45,0xea,0xbf,0x20,0xc4,0xac,0xd4,0x87,0x8c,0xb5,0xcb, + 0x55,0x9a,0x47,0x57,0x1c,0x55,0x33,0xf2,0xde,0x54,0x49,0x56,0x2e,0xbc,0x70,0xf1,0x71,0x51,0xa5,0xe7, + 0xcf,0x9f,0x51,0x0a,0x7f,0xf5,0x9e,0x3f,0xf3,0xc2,0x69,0x56,0x9e,0x5f,0x26,0x65,0xfa,0x56,0xc6,0x12, + 0x79,0xdf,0xaa,0x84,0x9e,0x1a,0x5d,0xd4,0xf3,0xc2,0x71,0x31,0xff,0x28,0x91,0x33,0xbc,0xa7,0xfa,0xb3, + 0xf7,0x3f,0xff,0x9f,0xde,0xdd,0xdd,0xbd,0xbf,0xf7,0x5e,0x24,0xe5,0x59,0xef,0x22,0xc9,0x7b,0x3f,0xa7, + 0xf9,0xe2,0xb2,0x58,0x4e,0xe8,0x58,0xcd,0x8a,0x04,0x1e,0xb7,0x22,0xef,0xf5,0x2c,0x85,0xe1,0x20,0x47, + 0x33,0xe8,0xa9,0xd4,0x9e,0x2c,0x94,0x0a,0xf9,0x3e,0x18,0x0c,0xbc,0xb0,0x4c,0x8f,0xe9,0x7a,0x7f,0x9d, + 0xe6,0x52,0x6b,0xff,0x34,0xed,0xc9,0x68,0x69,0xfe,0xb3,0x59,0xef,0x38,0xed,0x49,0x89,0x74,0x12,0xf6, + 0xe6,0xd2,0x64,0x99,0x4e,0xcb,0x74,0x71,0xca,0x98,0xbc,0x37,0xa7,0x49,0xf7,0x92,0x29,0x91,0x52,0x34, + 0xf4,0x09,0xcd,0x95,0xb7,0xfe,0x09,0x47,0xf1,0x88,0xbc,0xc7,0xf8,0xe1,0xa4,0xbd,0x49,0x2e,0xb8,0x23, + 0xf9,0xcb,0x43,0x98,0xa4,0x17,0xd9,0x98,0xef,0x32,0xea,0x1f,0xff,0xd2,0xbc,0x2f,0xb3,0x69,0x46,0xab, + 0x57,0x2d,0x17,0xd1,0x55,0x32,0x86,0x17,0xcc,0x79,0x91,0xe5,0x95,0x59,0xd9,0xc7,0xaf,0x51,0x6a,0x92, + 0x2d,0x92,0x63,0xba,0x98,0x22,0xef,0x99,0xfa,0x22,0x92,0x84,0x5d,0x6a,0x14,0x39,0x42,0xe0,0x99,0xe2, + 0xbf,0x66,0xdf,0x66,0x1b,0x2a,0x84,0x19,0xa2,0x99,0x78,0xcf,0x27,0x78,0x19,0xce,0x8b,0x37,0x6f,0x78, + 0x9b,0xe8,0xdf,0x1e,0xec,0x4f,0xa7,0x05,0x41,0x06,0x6d,0xe0,0x38,0xc9,0x11,0xa5,0x02,0xf6,0x1c,0x54, + 0xf9,0x0d,0xfd,0xec,0x8d,0xf5,0x6f,0xec,0x52,0x9e,0x13,0x04,0x7f,0x4b,0x37,0x34,0xb2,0xe5,0x6f,0xaf, + 0x2a,0x7a,0x2a,0xc3,0x94,0xa0,0x71,0xfd,0x54,0x2c,0x78,0x33,0xf5,0x6f,0xda,0x9b,0x45,0xc5,0x23,0x53, + 0x65,0xd4,0xe8,0xcc,0x2f,0x04,0x00,0x59,0xa8,0xa5,0xa8,0x92,0xe3,0x7d,0x03,0x5a,0x94,0xe2,0x85,0x6a, + 0x82,0x4f,0x25,0x8a,0x4c,0x6f,0xa1,0x92,0xe9,0xbe,0x7e,0x53,0xa5,0xf3,0xc5,0x7e,0xb9,0x44,0xe1,0xb4, + 0xea,0xe1,0xfd,0x00,0xa1,0xec,0x3f,0xd2,0x9c,0x4a,0x36,0x1e,0x58,0xa0,0x40,0x5d,0xf4,0x5b,0x68,0xb4, + 0x36,0xcb,0xc2,0x7f,0xdb,0x45,0x36,0x59,0x22,0x52,0x05,0xad,0x2d,0x11,0x37,0x88,0x50,0xe1,0x8c,0x64, + 0x5f,0xa5,0x61,0x2c,0xe7,0xa9,0x4e,0xa4,0x4f,0x49,0x78,0x8e,0x77,0x8b,0x9c,0xd0,0x91,0x86,0x48,0x5a, + 0x56,0xd8,0xc4,0x24,0x55,0x0f,0xd9,0x3d,0xdd,0x64,0x4f,0xd9,0xa9,0xf4,0x92,0x9c,0xfb,0x47,0x9d,0x5e, + 0xbd,0x6c,0x03,0x69,0xed,0x65,0xc1,0x61,0x8f,0xbd,0x97,0x45,0xa3,0xb6,0x3a,0xbe,0xbd,0x8f,0x69,0x25, + 0x25,0xbf,0xc9,0xd5,0x4e,0xcb,0x87,0x5b,0x5c,0x8d,0x15,0x82,0x6d,0xf6,0xaf,0xa5,0x80,0xcf,0xfc,0x96, + 0xd2,0x59,0xde,0x3b,0xa7,0x43,0x90,0x2d,0x52,0x1a,0xc7,0x44,0x55,0x7a,0x3c,0xa1,0x36,0xe9,0x1f,0xf9, + 0xf5,0x4c,0x82,0x0c,0x79,0xf2,0x57,0x37,0xcb,0x9d,0x34,0x06,0xa0,0x2a,0x7c,0x9b,0x7d,0x48,0x27,0xd2, + 0x1d,0x7f,0x72,0x4f,0x92,0xf5,0x66,0x99,0x97,0x19,0x6f,0x81,0x7c,0x98,0xd4,0x05,0x56,0x4f,0xfe,0xea, + 0x45,0xd6,0x67,0x45,0xc6,0x98,0x2f,0xab,0x54,0x0d,0xef,0x05,0x8d,0x34,0xf9,0x18,0x79,0xf2,0x57,0x15, + 0x5f,0xa6,0x0b,0x4e,0x54,0x1f,0x92,0xfa,0x6b,0x3a,0xc9,0x55,0xba,0xf9,0x54,0xe5,0x4f,0x97,0xa5,0xaa, + 0xa0,0xbe,0xd4,0xd8,0xcb,0x8c,0x53,0xe5,0xaf,0x1a,0x1e,0xc1,0x5b,0xc9,0xa9,0xfa,0xcb,0x0c,0x5b,0x52, + 0x97,0x32,0x8e,0xf3,0x42,0xd6,0x99,0xa1,0xe3,0x05,0xff,0xd0,0x89,0xd6,0x9e,0x4a,0xc2,0x86,0x5d,0x95, + 0xcc,0xe6,0xbe,0x36,0xaa,0x34,0x8a,0x3d,0x5b,0x82,0x1c,0xdf,0xaf,0x77,0x85,0xf6,0x0e,0x57,0x0d,0x5d, + 0x0e,0x3d,0x04,0x1c,0xea,0x65,0xd3,0x5e,0xe2,0xc0,0x06,0xec,0x6b,0x92,0x59,0x99,0x26,0x93,0x8f,0xbd, + 0x44,0x4c,0xd2,0xf5,0xe0,0x3f,0x17,0x5c,0x74,0xb5,0x0d,0xe0,0x20,0xd9,0x35,0x3c,0xc9,0xef,0x26,0x44, + 0x49,0xea,0xeb,0x8c,0xb0,0xe9,0x77,0xaf,0x9f,0xbf,0xea,0xcd,0xa9,0x1b,0x5f,0x06,0xd6,0x3b,0xa5,0xeb, + 0x20,0x30,0x15,0xe5,0x16,0x05,0xda,0x7d,0x73,0x99,0xa6,0x73,0x3a,0x48,0xd9,0x79,0x62,0x2f,0xb4,0x29, + 0xf1,0xd2,0xfa,0x4e,0x66,0x58,0xf9,0x3c,0xa5,0x46,0x35,0x4e,0xe8,0xe1,0x6c,0xe2,0x22,0x48,0xce,0xe5, + 0xdc,0xb4,0xfb,0xd8,0x2f,0xe6,0xcf,0x10,0x67,0xcb,0xa3,0x8f,0x1e,0x22,0x6e,0xb5,0x4a,0x3c,0x29,0x08, + 0xdd,0x9f,0xff,0x32,0x8f,0x3c,0xf9,0xea,0x2d,0xe7,0xde,0xda,0xc2,0x83,0x36,0x0a,0xa9,0xb1,0x61,0x8d, + 0xd0,0x6a,0x04,0xc9,0xaf,0x80,0x69,0xc5,0x9b,0x6b,0xdf,0x05,0x1a,0x02,0x24,0xad,0xc7,0x89,0x4e,0x89, + 0xef,0xb9,0xd4,0xe3,0xd9,0xac,0xb8,0x5c,0x08,0xd6,0x53,0x7e,0x06,0x2c,0xbc,0xd2,0x9b,0x96,0x34,0xb6, + 0x8f,0xc5,0xb2,0xec,0xc9,0x3d,0x04,0xb4,0xcd,0x37,0x9b,0x5c,0xde,0xca,0x4b,0x12,0x57,0x77,0x6e,0xcf, + 0xde,0x7c,0x59,0xce,0x8b,0x45,0xba,0x18,0xf4,0x70,0x69,0xaa,0xd2,0x6e,0x11,0x80,0x92,0xb0,0x6d,0xd4, + 0x02,0xfd,0x3e,0xad,0xaa,0x79,0xb4,0xb3,0xb3,0xf7,0xf5,0xdd,0xc1,0xde,0x97,0x5f,0x0d,0xf6,0x06,0xf7, + 0x77,0x7a,0x97,0xa7,0x04,0x85,0xd4,0x7f,0x0f,0x37,0xbf,0x41,0xfa,0x18,0x45,0x56,0x51,0xd3,0xcc,0x78, + 0x54,0xbd,0x62,0x4a,0x70,0xba,0xe8,0x2d,0x0a,0x38,0xce,0x59,0xf4,0xd4,0x1d,0x87,0xc1,0xa5,0xe8,0x45, + 0x77,0x8b,0x5b,0x9a,0xb2,0xa9,0x02,0x25,0xb2,0xff,0x84,0x74,0x8c,0x54,0x76,0x00,0x93,0x7f,0x24,0x6a, + 0xe0,0xe3,0xa0,0xf7,0x1b,0x75,0x86,0x0b,0x2c,0x99,0xd1,0xcf,0x45,0xcf,0x70,0x65,0x3d,0xa1,0x9f,0x7a, + 0x10,0x1c,0x60,0xb4,0xc7,0x1f,0x7b,0x50,0xa0,0x04,0xdd,0x00,0x68,0xb0,0x97,0xb9,0xa7,0xc2,0x74,0x2d, + 0xf3,0x2a,0x9b,0x71,0xee,0x4f,0xdf,0x3c,0xeb,0xcd,0x40,0x9d,0x2c,0x68,0xa3,0x09,0x59,0xdb,0xb7,0xb0, + 0xde,0x28,0x7b,0xd4,0x4e,0x09,0xd9,0x28,0xb5,0xe5,0x5d,0xab,0x4f,0xab,0xc1,0x5b,0x44,0x80,0xd6,0xc3, + 0x5d,0xde,0x2b,0xd9,0x8b,0xd8,0xa0,0xa7,0xee,0x14,0x0e,0x0e,0xc7,0xe3,0xc0,0xcd,0x4d,0x94,0x4a,0xb2, + 0x20,0x82,0xa8,0x9c,0xd0,0xa4,0x27,0x44,0xea,0x96,0x94,0xd3,0xdc,0xbe,0xe3,0x94,0xc0,0x02,0x03,0x5d, + 0x64,0x13,0xb9,0xf0,0xbd,0x50,0x57,0xa3,0xbb,0x4a,0x7d,0xd1,0xc5,0x7c,0x3a,0x26,0x18,0xfe,0x85,0x3a, + 0x79,0xf6,0xfd,0xd3,0xd7,0xf2,0x5b,0x01,0xd6,0x92,0xc0,0x1a,0xee,0xbb,0x70,0x39,0xd2,0xb2,0x2f,0xb2, + 0x93,0x7c,0x81,0xeb,0xeb,0xf9,0xeb,0x9e,0x8a,0x33,0xdf,0x0d,0x4c,0xb2,0x05,0x44,0xb2,0x1f,0xd3,0xb2, + 0x60,0x53,0x68,0x41,0xa9,0xe0,0x19,0x0e,0xad,0x6c,0x04,0x56,0x76,0x86,0xfa,0x00,0x0c,0x98,0x39,0x11, + 0x98,0xd0,0xa1,0xa4,0x5f,0x77,0x08,0x4a,0x26,0x05,0x48,0x27,0xa2,0x5c,0xe6,0xaa,0x1b,0x22,0x5f,0x4c, + 0x97,0x34,0xa3,0xe5,0x31,0xdd,0x9d,0xe7,0xc9,0xe2,0x0c,0xe8,0x17,0xdf,0x3d,0xfc,0xf0,0xc2,0x13,0xc2, + 0x7a,0x97,0x40,0xca,0xdf,0xc9,0x87,0x17,0x9e,0x12,0xed,0x21,0x36,0xa7,0xdf,0xab,0xaf,0x3a,0xed,0x75, + 0xed,0x23,0x19,0xd8,0x48,0xcc,0x4c,0xa9,0xa5,0xb1,0xe9,0x69,0xad,0x08,0x5b,0x87,0x2e,0xe1,0x14,0xa2, + 0xa4,0xaa,0xb9,0x45,0x0a,0xf4,0xa0,0xe6,0x79,0x5a,0x16,0x39,0x51,0x5d,0xbc,0xfa,0xfe,0xcb,0xfd,0xd7, + 0x84,0x55,0x08,0x99,0x2d,0x54,0xb1,0xef,0x89,0x7c,0x64,0xea,0x97,0xd2,0x0a,0x04,0xdb,0x3c,0x4f,0xe6, + 0x3a,0xef,0xbb,0xa2,0x38,0x21,0x28,0x78,0x41,0x29,0xbd,0xc7,0xaf,0x9f,0xd7,0xb4,0xb3,0xca,0x37,0x94, + 0xb3,0xf0,0x0c,0x44,0x6e,0x25,0xb3,0xec,0xb8,0x64,0x09,0x89,0x60,0x13,0xfd,0xdb,0xca,0xd2,0x34,0xaa, + 0xc9,0xd3,0x04,0x91,0x29,0x21,0xdb,0xfc,0x0b,0x9b,0x76,0xa7,0x1a,0xe4,0x19,0x6e,0x14,0x6d,0x27,0x67, + 0x8e,0x73,0x45,0xfa,0x42,0xe7,0x54,0x5a,0x09,0x19,0xf2,0xa8,0x54,0x32,0x79,0x0f,0xa3,0x4c,0x6e,0x80, + 0xa9,0xf7,0x1c,0xdb,0x0a,0x67,0x32,0xc9,0xf8,0xd4,0x22,0xaf,0xb8,0x1a,0x2f,0xdb,0x1b,0x78,0xe2,0xa5, + 0x25,0xa7,0x15,0xea,0xb1,0x57,0xde,0x92,0x93,0x99,0x8e,0xba,0x00,0xb6,0xfe,0x59,0xd1,0xdf,0x99,0x4a, + 0xe9,0xf9,0x35,0x11,0x10,0x70,0xd9,0x9f,0x12,0x1a,0x37,0xfd,0x93,0x55,0xcc,0x13,0x20,0x05,0x34,0xf7, + 0x4f,0x45,0x7e,0x62,0x25,0x11,0xc7,0x2c,0xd7,0xc5,0x77,0x04,0x21,0x33,0x55,0xba,0xb7,0x43,0x04,0xa9, + 0x2a,0x26,0xb8,0x71,0xa6,0xca,0x39,0x95,0xde,0xa4,0x49,0x39,0x3e,0x05,0xb5,0x88,0xbf,0xbc,0x91,0x84, + 0x01,0x88,0x2a,0xa7,0xeb,0x95,0xd1,0xc4,0x6b,0x46,0x13,0x42,0x8e,0x32,0x72,0xe0,0x7b,0xab,0x4f,0xdc, + 0xd6,0x45,0xa0,0x8b,0xbf,0xd9,0x7f,0x2c,0x84,0x2c,0x20,0xe2,0x05,0x50,0xd9,0x35,0xe5,0x1f,0xbf,0xd6, + 0x1b,0xa6,0xb0,0x89,0xd3,0x91,0xda,0x1c,0xfb,0x72,0xa4,0x6d,0x92,0x9a,0xaf,0x7f,0x7d,0xf1,0xac,0xa4, + 0x94,0xf2,0xcd,0x33,0xea,0xef,0xf5,0xd3,0xc7,0x5f,0x7f,0xf9,0xd5,0x83,0x1e,0xa5,0xf6,0x26,0x9c,0xdc, + 0xa3,0x74,0xa9,0x09,0x45,0xe7,0x66,0x9d,0xa7,0x3f,0x75,0xd7,0x79,0xfa,0x93,0xd4,0x19,0xc3,0x2b,0x2b, + 0x2a,0x5d,0x9e,0x3f,0xd6,0xa7,0xb1,0xa3,0xfc,0xf3,0xff,0xf9,0xff,0x3e,0xad,0x8f,0x28,0x15,0xfe,0x16, + 0xf4,0x6e,0x9a,0x8f,0x3f,0x76,0x16,0x9f,0xea,0x5c,0x39,0x07,0x04,0xf4,0x3f,0xa6,0x1f,0x5b,0x07,0x81, + 0x50,0x86,0x53,0xe0,0x94,0x01,0xf6,0xe7,0x54,0x3c,0x12,0x4e,0x80,0xf7,0xa7,0xbd,0xe5,0x82,0x31,0xb8, + 0x4d,0xfe,0x0e,0x7a,0x04,0xd4,0x13,0xbe,0xd3,0x66,0x45,0x71,0x86,0xfc,0xe5,0x9c,0x61,0x54,0x45,0xa3, + 0xe4,0xe2,0x7f,0x10,0x55,0x30,0x20,0x74,0x4b,0x64,0x01,0xa1,0xc2,0xb3,0x1e,0xc2,0xe3,0xd1,0xc9,0x04, + 0x86,0x53,0x7d,0x87,0x58,0xf7,0x9e,0x1a,0xd4,0x39,0xf3,0xa6,0x90,0x2c,0x57,0x74,0xe6,0x04,0x5f,0xf3, + 0x2c,0x16,0x74,0x8f,0xfd,0x4c,0xbc,0xf8,0x02,0x38,0x5a,0xae,0x61,0x9a,0x5e,0xaa,0x1b,0x01,0xb5,0xa1, + 0x2e,0x46,0xed,0xcc,0x8f,0x6e,0x62,0x3a,0x65,0x73,0x8c,0xf4,0x84,0x1b,0x07,0xff,0xbf,0xc3,0x47,0x2a, + 0xd1,0xd4,0x5b,0x56,0xdd,0xa1,0xab,0x66,0x21,0x37,0x33,0x86,0xae,0x17,0x65,0x40,0x78,0x89,0xe5,0xd8, + 0xd1,0x15,0xd8,0x5e,0xc5,0x45,0xd2,0xed,0xb2,0x9c,0x4d,0xf8,0x4e,0x44,0xaa,0x66,0x72,0x35,0xbf,0x84, + 0xb4,0x9a,0xe4,0x68,0x95,0xb6,0xe8,0x05,0x22,0xc2,0x2b,0xb8,0xb4,0x96,0x3a,0x82,0xee,0x36,0xb6,0xee, + 0x94,0xb5,0xa8,0xd0,0xf6,0x78,0x1c,0x12,0xd4,0xad,0xf7,0xc2,0x26,0x23,0xdb,0x35,0x5d,0x02,0xd8,0xaa, + 0xcb,0x5c,0x77,0xf7,0xa4,0x16,0xb0,0x11,0xef,0x9c,0x14,0x57,0x6a,0xcf,0x8a,0x2b,0xb4,0x66,0x25,0xe8, + 0x16,0x17,0x72,0x7b,0x95,0xcb,0x94,0x46,0x44,0xfb,0x28,0xf7,0xb5,0x5e,0xe7,0xe5,0x1c,0x63,0xd6,0xf8, + 0x9a,0xce,0x32,0x36,0xaa,0xc7,0x91,0x14,0x7b,0x92,0x07,0x60,0xd4,0xe8,0x5d,0xf7,0xc0,0xfc,0xa9,0xdd, + 0x38,0x8f,0x92,0x9f,0x58,0x80,0x36,0xc5,0x3b,0x14,0x6e,0x3e,0xc6,0x46,0x35,0x62,0xb3,0x57,0xaa,0x38, + 0x03,0x8c,0x6b,0x64,0x46,0x93,0xa7,0xdb,0x3d,0xcb,0x13,0x66,0x9c,0xb8,0xb9,0x4d,0xdb,0xc3,0x53,0xdf, + 0xb0,0x3d,0x5c,0x71,0xf3,0xfe,0x70,0xd5,0x8d,0xfb,0x23,0xd0,0xd9,0x98,0x99,0x80,0x9b,0xba,0x81,0xdc, + 0xad,0x91,0xb5,0x78,0x5a,0xe7,0xb5,0x77,0xb4,0xb3,0x1e,0x42,0x0b,0x56,0xbc,0xd0,0x8e,0x7c,0xa7,0x4c, + 0xd9,0xe1,0xa7,0xb0,0xe2,0x19,0xfc,0x06,0x2c,0xe8,0x72,0x23,0x62,0x94,0xcb,0xf7,0xea,0x57,0xa1,0xd9, + 0x47,0x21,0x71,0x11,0x5b,0x80,0xc8,0xbf,0x4b,0x9a,0x04,0xad,0xa4,0x42,0xd5,0x19,0x8d,0x5e,0x7a,0xf8, + 0x99,0x28,0x31,0x90,0xf5,0xbb,0xe0,0x27,0xca,0x73,0xbe,0xd2,0x92,0xb2,0x22,0xb2,0x3f,0xdc,0xa3,0x5b, + 0x34,0xa7,0x42,0x73,0x3a,0xdf,0x84,0xde,0x42,0xd5,0x05,0x11,0x98,0xa7,0xfa,0xd6,0x67,0x23,0x8e,0x49, + 0x71,0xe2,0x85,0x77,0x51,0xf8,0x94,0xce,0x3a,0x64,0x28,0xe9,0x87,0x71,0x3a,0x97,0xdb,0xe7,0xde,0xc6, + 0x46,0x16,0xc5,0xb4,0x6a,0x34,0x72,0xdf,0x88,0xda,0xa8,0x14,0x86,0xa1,0x51,0x11,0x18,0xaf,0x07,0xc4, + 0xf1,0x26,0x67,0x00,0x38,0xb9,0xe1,0x60,0xbb,0xd2,0x5b,0xcc,0x52,0x5c,0xc0,0x5f,0xda,0x15,0x89,0xeb, + 0x64,0xd9,0xcb,0xf8,0x8c,0x78,0x3d,0x38,0x2b,0x78,0xdc,0xe3,0x5f,0xb4,0x99,0x70,0xaf,0x60,0x93,0xf7, + 0x86,0x14,0x5d,0x10,0xe2,0xc5,0x72,0x6a,0x92,0x35,0x27,0x98,0xa4,0x7e,0x7b,0x06,0xa7,0x01,0x8d,0xed, + 0x14,0x60,0x37,0xd8,0x3b,0x08,0x15,0xe5,0x41,0xd8,0x64,0x62,0xcd,0x89,0x94,0xe9,0x79,0x71,0x21,0x2e, + 0x44,0xb4,0x88,0x51,0x88,0x6b,0x35,0x24,0x30,0x61,0x00,0x19,0xa2,0xd0,0xd4,0x97,0x93,0xab,0x78,0xc9, + 0x9f,0xb9,0x95,0x76,0x8e,0x02,0x0a,0xfb,0xd0,0x72,0x77,0xd6,0x24,0xc1,0xb3,0x59,0x10,0xa7,0x05,0x6a, + 0x16,0x14,0xd2,0xbd,0xf0,0x47,0x02,0x4a,0x19,0x7c,0x83,0xbe,0xa3,0x9f,0xd0,0x37,0xa4,0x5e,0x4b,0x5c, + 0x48,0x2f,0x5d,0xda,0x88,0x08,0x89,0xf4,0x43,0xa5,0x4b,0xbe,0x64,0xff,0x01,0x8e,0xd4,0x50,0x4b,0xda, + 0x6a,0xd9,0x14,0x6b,0x9c,0x13,0x95,0xbb,0x49,0x86,0xc5,0xe1,0xda,0x09,0x12,0x5f,0xd0,0x8d,0xbc,0x43, + 0x34,0xea,0x07,0x85,0x12,0x7a,0x58,0x6f,0xa1,0xac,0xe8,0xaa,0x78,0xba,0x24,0x6a,0x4a,0x08,0xba,0x59, + 0x71,0x92,0x94,0x74,0x9f,0x9d,0x67,0x63,0xdc,0x79,0x17,0x72,0x8d,0xd4,0x72,0x2f,0xbf,0xb4,0x2e,0x51, + 0x64,0x11,0x49,0xb2,0xe0,0x58,0xbc,0xf9,0xcc,0x2c,0x02,0xad,0xe4,0xbc,0x25,0xdc,0xfd,0x34,0xe9,0x6e, + 0xfa,0xd7,0x84,0xbb,0xdf,0xd0,0x31,0x2d,0x4e,0xd2,0xfc,0x78,0x96,0x9d,0xf5,0x4e,0x52,0x62,0x2a,0x88, + 0xf1,0x3b,0x4e,0xff,0xc8,0x4e,0x08,0x4a,0x40,0xcc,0x4d,0xa8,0xc0,0x05,0x0b,0x29,0x0d,0xcf,0x93,0x76, + 0xc9,0x7b,0xbf,0xa7,0xd2,0x0b,0x35,0x6c,0xf0,0x3b,0xc4,0x69,0xce,0xf3,0x2c,0x5d,0x5e,0xd2,0xdf,0x13, + 0x39,0x39,0x21,0x46,0x8c,0x41,0x13,0xe3,0x91,0xfe,0x91,0x42,0xe2,0x4b,0x78,0xb3,0x97,0xd3,0x50,0xd2, + 0xbc,0xb1,0x73,0xfb,0x45,0x0a,0x1e,0xaa,0x91,0xae,0x65,0xbe,0x4f,0xcc,0x00,0x8b,0xf9,0x62,0x96,0x24, + 0x79,0x87,0xf8,0xf7,0xfd,0xe4,0xcf,0x88,0x7f,0x7f,0xc9,0x2a,0x1a,0xed,0xf8,0x94,0x4e,0xf5,0xec,0xd3, + 0x65,0xc0,0x6e,0x2d,0x25,0x08,0x7e,0x43,0x03,0x9b,0xc3,0x13,0xd2,0xa4,0x29,0x0e,0xce,0x68,0xe0,0x27, + 0xe9,0x45,0x41,0x30,0x91,0x77,0x8b,0x84,0x93,0x29,0x61,0xf8,0x22,0x6f,0x4b,0x84,0x7f,0xa4,0xcc,0x13, + 0xe0,0x56,0x5a,0x47,0x15,0x12,0x85,0xa0,0xf4,0x0c,0xed,0x34,0x25,0xc3,0x6f,0xeb,0x12,0x54,0x78,0x56, + 0x94,0x28,0xe4,0x4a,0x87,0x5f,0x62,0x24,0x68,0x49,0x86,0xf2,0x29,0xf2,0xe1,0xef,0x97,0xd9,0x24,0x3b, + 0x49,0x37,0xc8,0x87,0x1f,0xcf,0xc0,0x63,0x97,0x29,0xa0,0x06,0x7b,0x3c,0x9b,0x42,0xac,0xa0,0x0e,0x43, + 0x9a,0x55,0x2d,0x21,0xf1,0xbe,0x94,0xd5,0xec,0x4b,0x9a,0xce,0xd8,0x7d,0x54,0x4a,0xed,0xe4,0x9f,0x27, + 0x26,0x7e,0x3f,0x69,0x8a,0x89,0x7f,0x62,0xf8,0xe8,0xd1,0x5d,0xd7,0xbb,0x28,0x40,0xdb,0x51,0x99,0x5a, + 0x22,0x98,0xa6,0xb5,0x78,0xf8,0xc2,0x59,0xaa,0x14,0xbe,0x40,0xb3,0x45,0x4b,0x50,0x7c,0x22,0x2b,0xef, + 0x36,0x73,0x92,0x1a,0xf6,0x2d,0x2d,0x27,0x0d,0x89,0xf1,0xbe,0x53,0x94,0x26,0x26,0x20,0x92,0xe6,0xd7, + 0x8b,0x8d,0x53,0xe9,0xc3,0x15,0x03,0xea,0x4a,0x2c,0xe6,0xa3,0xe3,0x71,0x51,0xa4,0x27,0x3a,0x4d,0xa3, + 0x67,0xda,0xf2,0x4b,0xaa,0x99,0x96,0x75,0x0f,0xae,0xc8,0x10,0x22,0xcb,0x74,0xda,0x12,0x20,0xbf,0xa5, + 0x0b,0x59,0x3a,0x6d,0x08,0x90,0x7f,0x07,0x1d,0x3d,0x3f,0x2b,0xce,0x17,0x95,0x2b,0x44,0xe6,0x0c,0xd8, + 0x44,0x9c,0x24,0xd0,0xb0,0xb7,0x65,0xc9,0x7a,0xe4,0x60,0x23,0xf3,0x86,0x2c,0x99,0x8e,0xea,0x24,0x39, + 0x69,0x08,0x93,0x9f,0xd1,0xc2,0x98,0x54,0x5b,0x98,0x5c,0xa4,0x56,0x46,0x2d,0x4b,0x7e,0xc6,0x1d,0x9b, + 0x0c,0x2d,0x4c,0x7e,0x5b,0x52,0xd7,0x3a,0xb1,0x96,0x26,0xff,0x4e,0xa4,0x4e,0x5d,0x58,0x4b,0x93,0x7f, + 0x2f,0x64,0x20,0x8e,0x34,0xf9,0x49,0x7a,0x99,0x9e,0xb0,0xc5,0x40,0x53,0x9e,0xac,0xb6,0xfe,0x58,0x15, + 0xd8,0xbc,0xfd,0x0d,0xd1,0xf2,0x93,0x56,0x05,0x07,0x08,0x6e,0x92,0x30,0xbf,0x22,0x5a,0xd3,0xaa,0x40, + 0x17,0x15,0xc1,0x2d,0xee,0xab,0x5e,0x13,0x10,0x99,0x9d,0x49,0xa7,0x04,0xb6,0x37,0x09,0x99,0x37,0x02, + 0x57,0xb7,0x90,0x59,0x43,0x8c,0x25,0x63,0xb6,0x80,0xcf,0x95,0x34,0x3b,0xe0,0xb7,0x51,0xdc,0x4c,0xa3, + 0x3c,0x25,0x5e,0xac,0x4b,0xdc,0xfc,0x58,0x04,0xcd,0xe9,0x8d,0x72,0xe6,0xef,0x30,0x7f,0xc8,0x99,0x0d, + 0xb6,0x39,0x49,0x67,0xd9,0xfb,0x33,0x4c,0x2d,0xeb,0x68,0xda,0x48,0x99,0x9f,0x14,0x90,0xd5,0xe7,0x49, + 0x52,0xd2,0x66,0xe6,0xa9,0x35,0xf1,0x2e,0x79,0xb3,0x94,0x50,0xc5,0x51,0x73,0xa3,0xe0,0xb9,0x46,0xb6, + 0x06,0x53,0x5a,0xf8,0xd7,0xbe,0x3c,0x1b,0xa2,0xe7,0xc7,0xb6,0x30,0xd4,0x01,0x8e,0x96,0xfc,0x99,0x4e, + 0xcf,0x19,0x51,0xd7,0x90,0xc2,0x15,0x32,0xdd,0x1e,0x91,0x7b,0x58,0x09,0x11,0x46,0xd7,0x8c,0x58,0x8a, + 0x2b,0x3b,0x99,0x72,0x1e,0x5d,0x9f,0x49,0x99,0x10,0x0e,0xe4,0x59,0xf0,0xc5,0x0b,0x72,0xc3,0x08,0x44, + 0x53,0xb9,0x3f,0x7a,0x4c,0xbe,0x5a,0xa9,0x06,0xae,0x11,0xae,0xa6,0xf7,0xcc,0xad,0x45,0x44,0x24,0x15, + 0xa1,0x15,0x4c,0x78,0xb7,0x7b,0x17,0x59,0xd2,0x29,0x93,0xa6,0x7c,0xea,0xf9,0xbd,0x3d,0xb2,0xd3,0xf4, + 0x18,0xb7,0xdf,0x39,0x26,0x33,0xe8,0xbd,0x91,0xf9,0xca,0xb8,0x20,0x36,0x26,0x62,0x3a,0xc3,0x58,0x79, + 0x9e,0xf6,0x18,0xc2,0x5e,0x02,0xda,0xec,0x8f,0x4c,0x5d,0x2d,0x72,0x8d,0x1e,0x13,0x31,0x9c,0xcd,0xb2, + 0x93,0x09,0x10,0x76,0xef,0x87,0xb4,0x77,0x46,0x84,0xa2,0xdd,0x5a,0xd1,0x38,0x42,0x13,0xdc,0x04,0xb8, + 0x15,0x8c,0xdc,0x47,0x96,0xfe,0x2c,0xa7,0x44,0x9a,0xd3,0xa4,0x5c,0x9e,0x61,0x39,0xaa,0xa2,0xc2,0xd0, + 0x27,0x22,0x90,0x4e,0x70,0xed,0xd2,0x22,0x36,0xe5,0xd1,0xd6,0x1e,0x83,0x1a,0x61,0x0e,0x55,0x5d,0xc7, + 0x2d,0xa9,0xb4,0x2a,0xdb,0xde,0x02,0x34,0x4e,0x4b,0x94,0xd2,0xb5,0xda,0x10,0x4a,0xbf,0x5d,0xce,0x7a, + 0xa7,0x19,0x53,0x02,0x74,0xc4,0xb1,0x22,0x4c,0x40,0x50,0xb1,0xcb,0x64,0x7c,0x5a,0x5d,0x82,0xf5,0xa4, + 0xd9,0x85,0x48,0xb1,0xf0,0x10,0x3f,0x48,0x55,0x4b,0x5e,0xd6,0x1e,0x81,0x6d,0x89,0x0b,0x9b,0x97,0x63, + 0xb1,0x51,0x4e,0xfd,0xab,0x69,0x50,0x4b,0xaa,0xbf,0x4b,0x8f,0xcb,0x25,0x51,0x85,0x9b,0xa4,0xd5,0xb4, + 0xa6,0x0c,0x60,0x2c,0x31,0x26,0xce,0x84,0x96,0x2c,0xa5,0xe3,0xff,0x07,0x60,0x2e,0xc9,0x5b,0xd3,0x1c, + 0xf4,0x7e,0x25,0x00,0xa4,0x4a,0xd9,0xfb,0x9c,0x61,0xf7,0x32,0x9b,0x61,0xda,0xd6,0x5e,0xa1,0x1a,0xcc, + 0x83,0x68,0x42,0xf4,0xcf,0x1f,0xd9,0x7b,0xe4,0x5f,0xa6,0x34,0xed,0x4b,0xc0,0x2e,0xfd,0x38,0x4f,0x53, + 0x45,0x9d,0x1e,0xc3,0x1b,0x60,0x5b,0x72,0x5d,0xa6,0x9b,0xe5,0xd6,0x90,0x7f,0xde,0x2c,0xb9,0x4e,0xce, + 0x37,0x48,0xae,0xdf,0x80,0x94,0xa3,0x71,0x4c,0xb4,0xec,0x1a,0x7d,0x6d,0x94,0x5c,0x37,0x45,0xd7,0xef, + 0x27,0xae,0xe8,0x3a,0xbd,0x4e,0x72,0x9d,0xc0,0x4e,0x8a,0xce,0x01,0xc1,0x15,0x23,0xa8,0x3f,0x21,0xc0, + 0x3e,0xce,0xde,0x13,0x7f,0x2d,0x84,0x61,0x43,0x86,0xfd,0xa3,0x66,0xb9,0xba,0x84,0xd8,0x92,0x09,0x20, + 0x12,0xc4,0xda,0x92,0x62,0x6b,0xb0,0x60,0x98,0x24,0x20,0xa7,0x45,0x49,0xe5,0xf4,0x10,0x06,0x01,0x88, + 0x52,0x4a,0x45,0x37,0x54,0xa5,0x29,0xbb,0x9e,0x08,0xc4,0x41,0xd1,0x31,0xa0,0x0a,0xa2,0x39,0x4d,0xb1, + 0xaa,0xa7,0x69,0x36,0x61,0xf6,0x22,0x9d,0x9d,0x29,0x54,0xce,0x50,0x50,0xa5,0x3d,0x4d,0xfe,0x7f,0x8a, + 0x20,0xfb,0xad,0xf0,0x15,0x5d,0x82,0xec,0xdc,0x12,0x64,0x3f,0xa1,0x79,0x4d,0xaa,0xf4,0x84,0xd0,0xe1, + 0xc4,0x12,0x66,0x43,0x37,0xc9,0x4e,0x34,0x52,0x1f,0xbb,0x3c,0xc4,0xd9,0x75,0x41,0x02,0xd8,0xd3,0x04, + 0xe8,0x84,0xa6,0x7d,0x9c,0x2c,0x08,0x1d,0x62,0x12,0x22,0x13,0x4a,0x3b,0xe5,0xdb,0xbf,0x17,0x29,0x6f, + 0xc6,0x9f,0x97,0x6f,0x5b,0xe2,0xaf,0x1b,0xe4,0xda,0x4e,0xcb,0x36,0xf2,0xe3,0x6d,0xb2,0x2f,0x62,0x62, + 0x51,0x4e,0xfe,0x3b,0x64,0xdb,0x67,0xb3,0xe2,0x7f,0x2f,0xd1,0xf6,0x63,0xdc,0x25,0x25,0x73,0xb7,0x74, + 0x52,0xe8,0x3e,0x12,0xa0,0xbe,0x60,0xc4,0xe5,0x92,0xf8,0x84,0xb8,0x98,0x9f,0x55,0x65,0x2a,0x0d,0xc0, + 0x8a,0x11,0x42,0x59,0x08,0xb8,0xe5,0x42,0x9c,0x03,0x2a,0xa8,0x06,0x1d,0xbd,0x8a,0xef,0x9e,0x3f,0x04, + 0x77,0x1b,0x39,0xf7,0x39,0x30,0x99,0x1a,0x22,0x15,0xe7,0x72,0x13,0xea,0x15,0x32,0xed,0x33,0xb4,0xab, + 0xc4,0x4b,0x0b,0x2d,0xea,0x16,0x84,0x0e,0x0a,0x07,0x47,0xd6,0x4c,0x09,0x90,0xf7,0x69,0xc2,0x6e,0xe0, + 0x63,0x7e,0xc8,0x50,0x57,0x08,0xf3,0x42,0x7a,0xc2,0xb8,0xb5,0x26,0x37,0x8a,0xbc,0xc1,0x75,0x2a,0xe6, + 0x5e,0x01,0x20,0x5f,0xbe,0xea,0x10,0xb4,0x85,0xde,0x28,0x6f,0xf1,0x54,0x8a,0xa3,0x63,0x6c,0xd6,0x51, + 0x53,0x0b,0x89,0xad,0x5e,0x6e,0xaa,0xe2,0x8a,0x58,0x51,0xd1,0x21,0x86,0x6f,0xa8,0xdd,0x94,0xb3,0xa2, + 0x7e,0x93,0xb4,0xbf,0xae,0x8d,0x96,0x3c,0xfc,0x13,0xe6,0xcb,0x62,0x8a,0x86,0x54,0xfc,0xa6,0x09,0xab, + 0x3a,0x6d,0xe1,0x38,0x2a,0xda,0xe8,0xc0,0x1d,0x5e,0x53,0x34,0xfe,0x2d,0xde,0x5a,0xb0,0x3e,0xc4,0x4e, + 0xd5,0xf7,0x02,0xc3,0xfa,0x06,0xf9,0x38,0x2f,0x28,0xae,0xee,0x6b,0x46,0xd5,0x14,0x91,0xff,0x58,0x23, + 0x40,0x4b,0x26,0x9e,0x6b,0x32,0x6d,0x6e,0x2d,0xdd,0x9f,0xd8,0x3d,0x7b,0xf9,0xfe,0xf4,0xf6,0xa9,0x46, + 0x2c,0x71,0x39,0xaa,0x9e,0x99,0xeb,0xf0,0xba,0x3d,0xef,0x90,0x99,0x7f,0x42,0x65,0xd5,0xa3,0x2d,0x38, + 0xb7,0x05,0x65,0xfc,0x42,0x7f,0x01,0x8d,0xc7,0x31,0xf4,0x1d,0x4e,0xf9,0x42,0x2d,0x2b,0x26,0xb7,0xa9, + 0x66,0xb5,0xa8,0xd2,0x9b,0xc5,0xe3,0x74,0xdd,0x19,0x11,0x1b,0x4b,0xc8,0xa9,0x00,0x71,0xab,0x65,0xc5, + 0x83,0x08,0x4d,0xab,0x42,0xfa,0x76,0xcb,0xc9,0x5f,0xe5,0x90,0x38,0x41,0x56,0x8e,0x6b,0x19,0xca,0x8a, + 0x15,0xcb,0xc9,0xaf,0x6d,0xaa,0x5b,0x5a,0xfe,0xbd,0x2e,0x43,0xf3,0xfa,0x83,0x2e,0x3d,0x55,0x56,0xd3, + 0x44,0x22,0x32,0x27,0x5a,0x8c,0x50,0x10,0x28,0x4f,0x5a,0x2b,0x10,0xfc,0x93,0x8c,0x70,0x61,0x0f,0xcb, + 0x65,0x89,0xce,0x69,0x85,0x68,0x2b,0x3b,0xa4,0xe7,0x90,0x5a,0x36,0xe4,0xe7,0xc7,0x90,0xbf,0x65,0x67, + 0xc7,0x84,0x5e,0x89,0xab,0xa8,0x96,0x4b,0x41,0x76,0x8a,0xe9,0xa1,0xf6,0xb1,0xc2,0x04,0xfc,0x44,0x55, + 0x82,0x60,0x29,0xf2,0xea,0x32,0xa3,0x61,0xcc,0x90,0x9f,0xe6,0x3b,0xc5,0x14,0xe3,0x15,0xee,0x55,0xb0, + 0x64,0x07,0x09,0xcb,0x98,0x3f,0x03,0x34,0x97,0x68,0x0e,0x18,0x1f,0xa7,0x1e,0x6a,0xc2,0xf9,0x0d,0xc2, + 0x74,0xc5,0x11,0x34,0xc4,0xe9,0x0e,0xc3,0xbc,0x41,0xa6,0xce,0x48,0xc2,0x9a,0x6b,0xae,0x64,0x76,0xa6, + 0x62,0xb7,0x5c,0xbd,0x26,0xf2,0x3a,0xc5,0xea,0xfb,0x69,0xb9,0x3c,0x31,0x72,0xf5,0xc7,0x36,0xc9,0xe6, + 0x4a,0xd5,0xdf,0x16,0xb3,0x13,0x08,0xaf,0x1b,0xf2,0x59,0x4a,0xae,0x8a,0x42,0xe4,0xb6,0xdd,0xa2,0xf5, + 0x34,0x53,0x57,0x8d,0xc5,0xa5,0x77,0xc9,0xd7,0x41,0xda,0x03,0x0a,0xe6,0x9a,0xe4,0xb4,0x25,0xec,0x9a, + 0xd8,0x54,0x52,0xf6,0x73,0x30,0x1d,0xa9,0x92,0xb3,0x73,0xe3,0x96,0x6c,0x91,0x88,0x9a,0xfa,0x52,0xe7, + 0x4c,0x2d,0x6a,0x5f,0xd7,0xb1,0xe2,0x18,0x34,0x1f,0xcf,0xe7,0x7e,0x70,0x05,0xdd,0xeb,0x5a,0x1b,0xdc, + 0xa3,0x86,0xf1,0xd2,0x70,0xa5,0x63,0x1e,0x46,0x77,0x1e,0x4e,0xb2,0x8b,0xde,0x78,0x46,0x74,0x68,0xac, + 0x72,0x7b,0x91,0xfa,0x79,0xd5,0xe3,0x84,0x94,0x78,0x01,0xf1,0xdd,0xdb,0x33,0xc2,0x60,0xf3,0xd5,0x5b, + 0x7b,0xbd,0x7f,0xd0,0x4d,0x0d,0xa5,0xb6,0xd8,0x93,0x77,0x28,0xa2,0x3f,0x00,0x11,0x94,0x31,0x9e,0x65, + 0xe3,0x33,0x9d,0xfc,0x14,0x3f,0xbc,0x1e,0xb1,0x10,0xec,0x69,0x26,0xf6,0x76,0xbd,0x47,0x4e,0xef,0x04, + 0xae,0x65,0x31,0x73,0x13,0x39,0x50,0x21,0x25,0xed,0x50,0x9a,0xfe,0xd7,0xca,0x9e,0x25,0xc7,0x29,0xd5, + 0xb8,0xba,0xea,0x31,0x44,0xf4,0xd6,0x6b,0xbb,0xe4,0x1d,0xe3,0x07,0x9e,0xc1,0x45,0x79,0x78,0x17,0xe7, + 0xcb,0xe2,0x8f,0xf9,0x49,0x41,0x34,0x45,0x92,0x1b,0xbf,0xf0,0x5b,0x7b,0xeb,0x5a,0xe2,0xbd,0xb1,0x08, + 0xdc,0x0c,0xb2,0x72,0x7c,0x74,0x65,0x4d,0xad,0xe5,0x9d,0x5f,0x37,0x04,0x57,0xb3,0xf8,0xcd,0x1d,0xc7, + 0x5b,0xf5,0xb7,0x98,0x37,0xdd,0x4a,0xcf,0x61,0x41,0x94,0xe5,0x73,0xe0,0xa3,0x3a,0x17,0x1e,0xc7,0x9c, + 0x05,0x75,0x02,0x9e,0xde,0xbb,0x0b,0x3f,0x91,0xb4,0xf2,0x08,0x07,0xa3,0x5d,0x98,0x5a,0xa3,0x81,0xbd, + 0x09,0x62,0x4b,0x83,0x49,0xd6,0xce,0x1e,0x94,0xcd,0x49,0x03,0x26,0x08,0x96,0xb2,0x62,0x23,0x4c,0x48, + 0xee,0x46,0x98,0xe8,0xc5,0x71,0x2f,0x9b,0xfc,0x1f,0x05,0x19,0x12,0x43,0x70,0x22,0x7f,0xff,0x8b,0x81, + 0x81,0x3f,0x69,0xfd,0xfe,0x37,0x01,0x04,0xc2,0x2c,0x2d,0x40,0x70,0x56,0x55,0xee,0xdf,0x47,0x0f,0x11, + 0x3e,0x41,0xa7,0xf1,0x18,0x79,0xa5,0xf9,0x6b,0x20,0x17,0x23,0xd6,0x1b,0xa5,0xdc,0xea,0xb3,0x8c,0xd0, + 0x39,0xb6,0x33,0xc9,0x64,0xf7,0x78,0xb2,0x1c,0xa9,0x2a,0x56,0xfd,0x83,0xa5,0x05,0x04,0x00,0x6f,0xc6, + 0xde,0xfd,0xdd,0xaf,0xef,0x7b,0x6e,0x75,0xaf,0x77,0xb1,0x0d,0x81,0xd3,0x4c,0x59,0xdd,0xaa,0x11,0x0c, + 0xf4,0xd8,0x36,0x00,0x04,0xe1,0xf7,0x1b,0x06,0x8e,0xa7,0xe8,0xbf,0x38,0xec,0xbd,0x7a,0xd8,0x0f,0x3e, + 0x71,0xd8,0x32,0x2e,0x7b,0xd0,0x0e,0x84,0x1e,0xa8,0x61,0x1e,0x85,0x1c,0x2f,0x97,0x20,0xb1,0x09,0x59, + 0x3a,0xb8,0x5c,0x7c,0xc5,0x2b,0x10,0xd5,0x80,0x23,0x4b,0x12,0x52,0x0f,0x76,0x22,0xfd,0x44,0xf8,0x0c, + 0x90,0x33,0x91,0x72,0x6e,0xaf,0x20,0xb7,0x74,0x00,0x4b,0x55,0xdf,0x8a,0x9d,0x5e,0x24,0x71,0xa4,0xfe, + 0x3e,0xe2,0xe6,0x38,0x4e,0x0f,0xfd,0x8d,0x55,0x6a,0x7f,0xaf,0x0b,0xa0,0x09,0x8e,0x23,0x2e,0xd6,0x6c, + 0x91,0x5b,0xe0,0x3f,0x0f,0x55,0x03,0xdc,0x20,0x7f,0xc5,0x9c,0xbe,0xbd,0xa9,0xc1,0xb0,0x63,0x6c,0x7a, + 0x14,0x61,0xab,0x17,0x69,0x8c,0x30,0xbc,0xf2,0xbe,0xb9,0x56,0xd6,0x48,0x29,0xdb,0x34,0xab,0x68,0x7a, + 0xb5,0x5b,0xda,0xe4,0x22,0x3b,0x49,0xaa,0xa2,0x1c,0xcc,0x68,0x87,0x97,0x44,0x23,0x36,0x7d,0xc4,0x7a, + 0x2c,0xb7,0xd2,0x1e,0x67,0x8d,0x87,0xbe,0x60,0xa8,0x9a,0xf3,0xaf,0xd2,0x59,0xe4,0xfd,0x8d,0x68,0x0a, + 0x2f,0x84,0x55,0x55,0x94,0x86,0xec,0xc1,0xf5,0x2a,0x27,0xe2,0x7e,0x9a,0x29,0xa6,0x82,0xf1,0x8c,0x7e, + 0xab,0xde,0xda,0x0d,0x17,0xf2,0xfe,0xbb,0xb5,0xa7,0xbe,0x84,0x8a,0xa7,0x9f,0xaa,0xcc,0x73,0xe2,0xbf, + 0xc6,0x18,0x57,0xe4,0xad,0x34,0x1f,0xf4,0xba,0x2c,0x4e,0x58,0xe2,0x60,0x6a,0xd9,0x44,0x3c,0x25,0x0a, + 0x73,0xbc,0x9f,0x1c,0x23,0xbc,0xa9,0x3c,0x6a,0xea,0x57,0xd0,0xfa,0x45,0x5e,0x75,0xc0,0xef,0xcc,0xda, + 0xaa,0xca,0x49,0xc4,0xe3,0x92,0x8c,0x17,0x5f,0xaf,0xa6,0x53,0x3c,0x93,0xed,0x3a,0x14,0x3b,0xe7,0x5a, + 0x64,0x2c,0x6e,0x54,0xe7,0x7d,0x7a,0x1e,0x5d,0xa5,0xea,0xdd,0x85,0xc6,0x95,0xcd,0x23,0x6f,0x77,0xc0, + 0xff,0xaf,0x1f,0xa2,0x9d,0x12,0x6a,0x98,0xbb,0x6e,0xd1,0xb5,0x62,0xcd,0x68,0x64,0x86,0x3b,0x43,0x54, + 0xfa,0xfa,0x29,0x15,0x43,0xb5,0xdb,0xa9,0xdc,0xa7,0x22,0x99,0x85,0x2e,0x0e,0x5f,0xdf,0xf2,0x42,0xe2, + 0xd4,0x49,0x37,0x3d,0x5a,0x6d,0x68,0x8f,0x4e,0x77,0xf2,0xb1,0xdd,0xb4,0xfb,0x9e,0x62,0x64,0xb1,0x5c, + 0xce,0x7e,0x27,0xc1,0xe6,0x57,0x66,0x2e,0x2c,0xc2,0xe6,0x32,0x46,0x80,0x2d,0x9d,0x40,0x70,0xbd,0xc5, + 0xeb,0x21,0x8b,0x5d,0x0b,0x82,0xf9,0xb7,0x96,0xfe,0xb2,0x23,0x40,0x23,0xb9,0xad,0x25,0x8c,0xe2,0x7c, + 0xc9,0x92,0x2c,0x3e,0x08,0x09,0xdb,0x2b,0x30,0x24,0xc0,0x93,0x2e,0x89,0xd1,0x8b,0xae,0x68,0xee,0x8f, + 0x5f,0xab,0x9c,0x74,0x02,0x01,0x9d,0x8c,0x79,0xae,0x28,0x64,0x29,0x7a,0x79,0x0e,0x71,0x9a,0xf9,0x7e, + 0xfa,0x93,0xea,0xda,0x12,0x84,0xe9,0xcc,0x5a,0xd6,0xc5,0x29,0xb6,0x44,0x8b,0xb6,0x5f,0x13,0xd9,0x98, + 0x9d,0x4b,0x70,0x63,0x61,0x90,0x01,0x87,0xfc,0x86,0x19,0x87,0x5c,0x58,0xbd,0xee,0x72,0x4e,0x99,0x42, + 0x2d,0xf7,0x22,0x35,0x09,0x36,0xcb,0x20,0x43,0x92,0x10,0x02,0x93,0xa6,0xb1,0xa7,0xf2,0x75,0x5e,0x0d, + 0xec,0x83,0x89,0x66,0x54,0x44,0x61,0x13,0x74,0x9b,0xc9,0x05,0xc4,0xd8,0xf1,0x3d,0xfe,0xf4,0xb4,0x37, + 0x74,0x65,0xea,0xa8,0x07,0x07,0x27,0x85,0xa7,0xda,0x0f,0xe1,0x1e,0x21,0x04,0x5c,0xcc,0x03,0x73,0x08, + 0x63,0x84,0xf0,0x12,0x2c,0xf5,0x53,0xe3,0x50,0xc3,0x77,0xd1,0xa0,0x29,0x0c,0xe1,0x44,0x45,0x41,0xf0, + 0xaa,0xb0,0x1b,0x66,0x98,0x98,0xef,0xa1,0x9d,0x1a,0x4d,0xc8,0x98,0xad,0x54,0x0b,0x0d,0xe8,0xbc,0x61, + 0xc3,0x0a,0x9a,0x7d,0x3d,0xed,0x0e,0x93,0x87,0x7b,0xf7,0xef,0xd3,0x9f,0x7e,0xbc,0xf7,0x20,0x50,0x01, + 0x38,0x12,0xf1,0xc0,0x98,0xc4,0xdb,0x77,0x91,0xf5,0x30,0xbe,0x6b,0x4a,0x64,0xa6,0x44,0x35,0xa8,0xb7, + 0x21,0x2e,0xa9,0x67,0x67,0x1f,0xe2,0x8c,0x52,0x6a,0x31,0x9b,0x1f,0x0c,0xaa,0xd3,0x34,0xb7,0xfd,0x28, + 0x4b,0x76,0x2d,0x69,0xda,0x58,0x44,0x24,0x4a,0x1b,0xb3,0x6d,0x81,0xcb,0xc6,0x42,0xae,0x58,0x65,0x73, + 0x57,0x58,0xcc,0xce,0xdc,0x45,0x55,0xcc,0x3b,0xf7,0x4c,0xe1,0x49,0x5a,0xe0,0x75,0x60,0xfd,0xbf,0xa6, + 0x0e,0x17,0xa7,0xc5,0xe5,0x4b,0x1b,0xf1,0x77,0x06,0xf5,0x05,0x1c,0xe6,0x0e,0x1c,0xc6,0x57,0xea,0x66, + 0xa1,0xeb,0x43,0xc4,0x96,0xd5,0x3a,0x94,0xd8,0x0d,0x79,0x1b,0x60,0x6f,0xdf,0x1e,0x13,0x85,0x5a,0xe2, + 0xbb,0x58,0x56,0x7e,0x47,0x89,0x20,0xec,0x48,0x8c,0x09,0x83,0xeb,0x3a,0xd6,0x7c,0x1b,0x23,0x11,0xd4, + 0xb1,0xe1,0x94,0xac,0xc3,0x07,0xe9,0x3d,0x90,0xaa,0x44,0xed,0x74,0xcf,0x53,0x11,0x2c,0x1d,0x4d,0xf2, + 0x6c,0x5a,0x99,0x6a,0x42,0xbe,0x33,0xa3,0xee,0x52,0x8a,0x12,0xe8,0x1e,0x99,0xa1,0x9f,0x09,0xd7,0x88, + 0xc0,0xc1,0x35,0x96,0xd7,0xb2,0x65,0x62,0xc0,0x11,0xa0,0x41,0xce,0x86,0xe7,0x0d,0x11,0xb2,0x4b,0xa9, + 0x50,0xa6,0x23,0xef,0xfb,0xfd,0xfd,0xd7,0x3d,0xfd,0xb3,0x37,0x86,0x02,0xbe,0xd7,0xaf,0x0b,0x0c,0xd4, + 0x45,0x85,0x14,0x16,0x6e,0x8f,0x60,0xa2,0xa7,0x73,0xbd,0xc8,0x84,0xf8,0x93,0x91,0x36,0xa1,0x01,0xf1, + 0xbb,0xfc,0x2a,0xe8,0x7b,0x87,0xf9,0x61,0xee,0xf5,0xcb,0x90,0xc3,0xbf,0x59,0xf2,0xe9,0x6b,0xed,0xd3, + 0x93,0x0f,0x59,0xc1,0x2e,0xad,0x7d,0x6f,0x27,0x99,0x67,0x3b,0xea,0x8e,0x6f,0x02,0x70,0x57,0xd0,0xfb, + 0x4a,0x05,0xe6,0xf2,0xf5,0x0c,0x62,0x49,0x21,0xe0,0x1d,0xa8,0x48,0x84,0x03,0x77,0xf5,0x06,0x60,0xd3, + 0xe0,0x25,0x9c,0xa1,0xd1,0x3a,0xdc,0x5e,0xa0,0x86,0x6c,0x89,0x8d,0x3f,0x6b,0xd8,0xf5,0x35,0xf9,0xb9, + 0x43,0xaf,0x6b,0xfe,0x99,0xe1,0x5b,0x16,0x75,0x7a,0x0a,0x4a,0x7c,0xfd,0x79,0xab,0x2e,0xd6,0x3c,0x9f, + 0xbb,0xea,0x5c,0xeb,0x4f,0xad,0xba,0xea,0x4f,0x0d,0xd9,0x91,0x38,0x7f,0xd6,0xc0,0x35,0xb1,0xb2,0xc3, + 0xe6,0xb5,0x1d,0xe3,0x87,0x2b,0xe1,0xee,0x29,0x68,0xc4,0x65,0xc8,0x26,0x49,0x1e,0xa8,0x9f,0xab,0x55, + 0x9b,0x54,0x52,0x25,0xdc,0xd4,0xd5,0x6a,0xd7,0xa1,0x99,0xda,0xbe,0x92,0x4d,0x35,0x29,0x14,0x04,0xf5, + 0x3d,0xb6,0x3b,0x2c,0x1f,0x36,0xb2,0xb5,0x03,0xff,0x52,0xc7,0x81,0xcf,0xe2,0x46,0x89,0x83,0xf2,0x88, + 0x30,0xad,0x29,0x2f,0x51,0xba,0x6a,0xab,0xa3,0x28,0x1b,0xd4,0x3f,0xac,0xd1,0xed,0x43,0x0e,0x90,0x0d, + 0xac,0x5f,0xc8,0xd4,0xb3,0xcf,0x9c,0x89,0x9b,0x8b,0xd1,0xad,0xf0,0x68,0x77,0xb4,0x8b,0x14,0x35,0x6d, + 0xfb,0xbe,0x6c,0x15,0x34,0xc5,0x88,0x06,0x3a,0x17,0x0d,0x33,0x7f,0xef,0x76,0x46,0x53,0xf9,0xb8,0x78, + 0x35,0xfd,0x35,0x4d,0xcf,0x82,0x47,0x34,0x36,0xa5,0x66,0xe6,0xdf,0x6d,0x65,0x5d,0x1a,0x5d,0x33,0xff, + 0x7e,0xbb,0x9e,0xd6,0x37,0xf3,0xbf,0x6a,0xe5,0x4d,0x45,0xe5,0xcc,0xdf,0xfb,0xb2,0x95,0xb5,0xd0,0x8a, + 0x67,0xfe,0xbd,0x76,0x87,0x0b,0xd1,0x3e,0xf3,0xbf,0x6c,0x75,0x87,0xd8,0x69,0xf5,0x82,0x63,0x5e,0x31, + 0xdc,0xda,0x7c,0x3a,0xc0,0xdb,0x10,0x6e,0xc0,0xbe,0xf1,0x52,0xf2,0xe7,0x00,0x5f,0x88,0xff,0xcf,0x3d, + 0xba,0x66,0x2e,0x52,0xfd,0xcf,0x9c,0x61,0x77,0xf4,0x35,0xfa,0x61,0x72,0xf7,0x33,0x71,0x3e,0x55,0xd9, + 0x51,0xc6,0x1d,0xdd,0x67,0xb8,0xeb,0x40,0x05,0xb6,0x47,0x93,0x2d,0xc4,0xe9,0x03,0x5b,0xc6,0x61,0xe6, + 0xd8,0xe5,0xf1,0xee,0xb0,0xd0,0x67,0x4b,0x1d,0xa9,0x42,0x1f,0x29,0x7d,0x55,0xc0,0x53,0x19,0x47,0x5b, + 0x2a,0x47,0x44,0x48,0x44,0x8b,0x2d,0xfa,0xe2,0x48,0xd7,0x5b,0x70,0xb0,0xea,0x84,0xd1,0x23,0xee,0x38, + 0xcc,0xfa,0xf1,0x62,0x8d,0xdb,0x86,0xc6,0x1b,0x27,0x61,0x3a,0x70,0x68,0xfd,0xf8,0x05,0x7c,0xa7,0x4f, + 0x67,0x05,0xa2,0xfa,0xed,0xe8,0x4e,0x03,0xab,0x18,0x03,0xcd,0xba,0xf5,0x40,0xd9,0xbd,0x58,0xa9,0x22, + 0x84,0x39,0x42,0xa6,0x7c,0x62,0x96,0xb2,0x78,0x73,0x62,0xc5,0xda,0x57,0x4f,0x58,0xb3,0x68,0xf6,0xc5, + 0x32,0xd0,0xa9,0x0e,0xcf,0xe6,0x94,0xb0,0x32,0x0c,0x27,0xe7,0x14,0x50,0x89,0xc2,0xdb,0xb9,0x39,0x94, + 0x52,0x33,0x7a,0x4e,0x96,0x4e,0x15,0xce,0xcf,0xc9,0x42,0x0a,0x18,0x41,0x27,0x31,0x9b,0xdb,0x3c,0xa1, + 0xdb,0x8b,0x49,0x37,0x6c,0xa2,0x93,0xaf,0x12,0xd7,0x4d,0xf0,0x41,0x30,0xe2,0x4f,0x04,0xea,0xc6,0xb6, + 0x10,0x44,0xb7,0xa8,0xe8,0x7a,0x23,0x88,0x56,0xd6,0x3b,0xd9,0x7d,0xe1,0x1a,0xce,0xcc,0xec,0x62,0x75, + 0xdd,0x2e,0xaa,0x1b,0x18,0xec,0x0f,0x7f,0x35,0xfb,0xce,0x99,0x84,0xef,0x22,0xbd,0x3c,0x47,0xd5,0x1f, + 0xe7,0x50,0xcf,0xb7,0xea,0x9c,0x6f,0xe5,0xcc,0xd7,0xdc,0xc4,0x5d,0x1c,0x83,0x33,0xd7,0x4e,0xa6,0x6f, + 0x23,0xec,0x2a,0xa6,0x82,0xc8,0xab,0x93,0x94,0x8e,0xa4,0x49,0x30,0x34,0xbb,0x66,0xe2,0xed,0x2e,0x55, + 0xdc,0x46,0xb7,0x76,0xbf,0x1f,0xba,0x09,0x12,0xd0,0xb1,0xb7,0x17,0x99,0x64,0x33,0x9c,0xd8,0xdb,0xf1, + 0xac,0x10,0x8d,0xbd,0xbb,0x9d,0x65,0xb6,0x9d,0x32,0xf7,0x3a,0xcb,0x1c,0x1e,0x3a,0x85,0xee,0x77,0x16, + 0x5a,0x79,0x61,0x73,0xa6,0xeb,0x75,0x78,0xf7,0xc1,0x2e,0x2f,0x57,0x9b,0xdd,0xb2,0x57,0x8b,0x59,0x03, + 0xb3,0x08,0xca,0x03,0x5e,0xbd,0x44,0xd4,0x02,0x21,0x48,0xcd,0x48,0x43,0x53,0xa9,0x45,0x4c,0x1b,0x5f, + 0x7f,0xb5,0x94,0x4a,0x1f,0x53,0x7d,0x97,0x6b,0x0f,0xee,0xb6,0x5d,0x81,0xa7,0xc3,0x63,0x6e,0xaa,0x2b, + 0xc4,0xb4,0x5a,0xe5,0xdd,0x48,0x2d,0xa4,0x6a,0x49,0x1f,0x39,0x82,0xb4,0xa1,0xda,0x06,0xb5,0x40,0xfc, + 0xe7,0x81,0x2e,0x27,0x1e,0x06,0xf5,0x0a,0xbb,0x95,0x31,0x06,0xce,0xf8,0x32,0xd2,0xcf,0x11,0x5d,0xe3, + 0x5c,0x77,0x2f,0xc1,0x7e,0xfa,0xa1,0xfa,0x73,0xcb,0xd0,0xe3,0xe3,0xd2,0x2e,0x06,0xe1,0xb6,0x79,0xe6, + 0xf0,0x82,0xcf,0x5c,0x9f,0x4f,0x68,0x1b,0x16,0x27,0xd4,0xae,0x5a,0xaf,0x4f,0xa8,0x20,0x06,0x29,0xba, + 0xca,0xdd,0x4f,0xa9,0xe2,0xd8,0xa9,0xe8,0x9a,0x7a,0xe5,0x7b,0x9b,0xe6,0x92,0xcd,0x35,0x7c,0x7f,0x42, + 0x17,0x8e,0xb1,0x8b,0xee,0xe2,0xc1,0x67,0xd4,0xcc,0xc4,0xf8,0x45,0x57,0x6d,0x6e,0xff,0x4d,0xfb,0x53, + 0x83,0x06,0x62,0x05,0xb7,0xf4,0x6e,0xae,0xbf,0x46,0x47,0x96,0x9c,0x20,0x6d,0xc9,0xa9,0x58,0x02,0x10, + 0x6d,0xe6,0xea,0xfe,0x24,0x5f,0x5a,0xcf,0xe5,0x73,0x29,0xac,0xe6,0x00,0xbb,0x30,0xf4,0xcd,0x33,0x02, + 0xb5,0xd1,0xd0,0x37,0xea,0xbe,0xa6,0xf8,0x10,0xa9,0x95,0xb2,0x51,0xff,0x2e,0xcb,0xf4,0x6c,0x41,0x3d, + 0x91,0x55,0x42,0x71,0xe1,0xa9,0x00,0x5e,0x28,0x61,0x84,0x31,0x64,0x57,0x70,0x70,0x2c,0xeb,0x4d,0x33, + 0x38,0xd8,0x32,0x72,0x47,0x5a,0xcc,0x6f,0x24,0x6c,0xf5,0x93,0x8f,0xcf,0x39,0x5b,0xc6,0xf1,0x2d,0x8a, + 0x71,0x74,0xf0,0x74,0x01,0xff,0x93,0x4a,0x76,0xc1,0xd2,0x6f,0x9a,0x50,0x74,0xef,0xcb,0xf4,0x7e,0x58, + 0xe4,0xbf,0xb8,0x8f,0x04,0x4e,0xa8,0xa2,0xe6,0xc0,0x98,0xfc,0x2a,0xe1,0xc8,0xcb,0xdf,0xdb,0xdd,0xfd, + 0x42,0x30,0x73,0x3a,0xd9,0x21,0xa8,0x2a,0xaa,0x04,0xa1,0xd7,0x87,0xad,0x6b,0xb7,0xd6,0xb0,0x42,0xd0, + 0x8c,0xff,0xfa,0x3b,0xd7,0xdd,0x8c,0xee,0x6b,0xb7,0x31,0x2d,0x4b,0x26,0x8a,0xef,0x1b,0x57,0x96,0x56, + 0x95,0x9f,0x35,0x38,0x60,0xdb,0x5a,0xc4,0xcf,0x4a,0xea,0x7a,0xd3,0x6d,0xbd,0x5a,0xa5,0x5d,0xc2,0x5a, + 0x70,0x84,0x12,0x4f,0xb2,0x21,0xaf,0x15,0x29,0x40,0x53,0x88,0xdb,0x2d,0x90,0xd3,0x10,0xaa,0x04,0x94, + 0x74,0x4d,0xee,0xee,0x06,0xc1,0xda,0xd1,0x6c,0xeb,0x1e,0x1e,0x47,0xe5,0xb3,0x7a,0xf9,0xeb,0xbd,0x86, + 0x4e,0x7d,0x40,0x79,0x47,0x83,0x78,0x45,0xe9,0x16,0x5d,0xef,0x5a,0x24,0x7d,0x3b,0x5e,0x38,0x87,0x0a, + 0xe7,0x55,0xd7,0x6c,0x47,0x4e,0x6c,0x87,0x1b,0x93,0xbb,0xc1,0x39,0xac,0x83,0xa1,0xe6,0x2a,0x2a,0x89, + 0x80,0xa4,0xa5,0x03,0x68,0x7c,0x63,0x9b,0x65,0x3f,0x56,0xa9,0x07,0xf9,0x91,0xbc,0x91,0x0e,0xaf,0xe1, + 0x49,0xca,0x1d,0xb7,0x8d,0x60,0x2d,0xd2,0x05,0x15,0x19,0x78,0x63,0x37,0x4a,0x60,0xde,0xec,0x0a,0x63, + 0xde,0x20,0xd9,0x6f,0x53,0xb7,0x36,0x87,0x17,0x5e,0x35,0xc4,0x2a,0x7b,0xe9,0x3d,0xd1,0x60,0x58,0x44, + 0xd9,0x5f,0x21,0xe0,0xad,0xad,0xbe,0x8e,0x78,0x57,0x9b,0x0e,0x69,0x77,0x53,0x4d,0x72,0xf3,0xf9,0x90, + 0x02,0x02,0x7a,0xcd,0xf7,0xbb,0x9a,0xa0,0xe7,0xab,0x03,0x7a,0xbf,0x8b,0x68,0x67,0x07,0x6f,0x44,0x4a, + 0xd5,0x97,0xd6,0x60,0xc1,0xea,0xbe,0x48,0xe3,0x15,0x39,0x49,0x0b,0x08,0x62,0x77,0xde,0x2f,0x98,0x6f, + 0x93,0x08,0x38,0xd1,0x95,0x36,0x97,0xa8,0xbb,0x0c,0xcf,0x52,0xb0,0x3a,0xc2,0x15,0x0c,0xea,0x77,0xa7, + 0x75,0x6b,0xa5,0x36,0x73,0xca,0x40,0x08,0x74,0xcd,0x2e,0x10,0x40,0xcc,0x49,0x50,0xdb,0xfc,0x68,0xd7, + 0x48,0xf1,0x9d,0x6c,0xb8,0x47,0xa6,0x81,0x9e,0xa7,0x55,0xf9,0xd1,0x0c,0x68,0x68,0x06,0x33,0x4b,0x2a, + 0xf8,0x4c,0x4e,0xaa,0xb0,0x4e,0x22,0x24,0x95,0xe3,0xdf,0x4f,0x96,0x8e,0xb8,0x3b,0xb0,0x61,0xdf,0xda, + 0x2b,0x6e,0xf1,0x5f,0x9f,0x20,0x3d,0xe4,0x70,0x46,0xe6,0x7a,0xb3,0xd8,0xe9,0x61,0x7d,0x7a,0x8d,0x1c, + 0xb0,0x21,0xe9,0xd1,0x44,0x64,0x53,0x18,0xd8,0x2c,0xe6,0x66,0xbb,0x2f,0xb4,0xfa,0x6c,0x35,0x6b,0xb8, + 0x12,0xbf,0x5c,0x8b,0x27,0xe0,0xff,0xb6,0xbb,0x28,0x9d,0x3e,0x62,0x29,0x37,0x8b,0xfe,0x4a,0x4b,0xf4, + 0xe7,0xc8,0xfd,0x4a,0x5b,0x3a,0x67,0x84,0x7e,0x65,0x3d,0x39,0x4c,0xa9,0x6c,0x88,0xf0,0x4a,0xe7,0x45, + 0x8c,0xb2,0x8d,0x58,0x30,0xac,0xc5,0x63,0x91,0x5f,0x0e,0x44,0xbe,0x37,0xda,0x8b,0x76,0x83,0x15,0xfd, + 0x54,0x42,0xbd,0xd1,0x5d,0xf5,0xdb,0x48,0xf2,0x46,0xf7,0x75,0x09,0x25,0xbe,0x1b,0x7d,0xa5,0x12,0x44, + 0x66,0x37,0xda,0xfb,0x52,0xfd,0xd6,0x82,0xba,0xd1,0x3d,0xdd,0x88,0x48,0xe7,0x46,0x5f,0xa2,0x09,0x3a, + 0xba,0x2d,0x1c,0xe3,0x8a,0x82,0xc3,0xea,0xaf,0x4a,0x02,0x1a,0x22,0xbb,0xeb,0x65,0x01,0x74,0xd1,0xd2, + 0xd1,0xb5,0x1f,0xda,0x9b,0x6f,0x47,0x1b,0xb6,0xbe,0xb5,0x83,0xae,0xb8,0xb6,0x96,0xcf,0x12,0x8e,0xa9, + 0x85,0xb2,0x0f,0xee,0x37,0x84,0xaf,0x46,0xc4,0xba,0x55,0x8b,0x54,0xb7,0x6c,0x11,0xea,0x96,0x25,0x32, + 0xdd,0x32,0x22,0xd2,0x2d,0x4b,0x22,0xba,0x65,0x04,0xa0,0x12,0x1b,0x55,0xfc,0x56,0x74,0x4e,0x29,0xbd, + 0x7e,0x4e,0x2a,0x38,0x6e,0x8a,0xe0,0xb8,0x9d,0x3a,0xe1,0x7f,0x4d,0xe0,0xd5,0x14,0x7d,0x86,0x2d,0x71, + 0xe6,0x5f,0xdd,0xfa,0x96,0x68,0xf3,0x66,0x41,0xd0,0xc4,0x95,0x87,0x6e,0xde,0x7e,0x19,0xe1,0xb5,0x00, + 0x60,0x6d,0xf9,0x3c,0xcb,0xa3,0xbb,0xe1,0xc4,0xd8,0xe0,0xee,0xd5,0x3b,0xb3,0xa1,0xbf,0xd6,0xde,0x34, + 0x3b,0x74,0x76,0x07,0x01,0x4c,0x32,0x4a,0x49,0x18,0xdc,0x3b,0x1f,0x76,0x3d,0x6f,0x08,0xb5,0xa6,0x9c, + 0x88,0x8d,0x47,0xf1,0xee,0xc8,0xeb,0x7b,0x91,0xb7,0xed,0x69,0x82,0xdd,0x57,0x24,0x46,0x72,0xbc,0x40, + 0x18,0xf9,0xff,0xf1,0xe5,0xae,0x96,0xf2,0x52,0x05,0x8b,0xf8,0x48,0x77,0xbe,0xdc,0x0d,0x50,0x35,0x2c, + 0x1f,0xee,0xed,0x4a,0x7b,0xde,0xae,0x17,0x84,0xf4,0xb7,0x54,0xc2,0x25,0x5b,0xf3,0xa7,0x1b,0x44,0x3a, + 0x25,0xc7,0x9f,0xfd,0xe2,0x56,0x77,0x13,0x5f,0x89,0xf6,0x35,0x48,0x02,0x5a,0x78,0xd1,0xb7,0x56,0x77, + 0x20,0xff,0xa8,0x95,0x9d,0x55,0xaa,0xfe,0xad,0x55,0xa5,0xf5,0x85,0xc9,0xbf,0xd6,0x9f,0xf9,0xf4,0x28, + 0x84,0x8a,0xc8,0x8a,0x36,0x4c,0x9e,0xf7,0xd2,0x1e,0xb1,0x3c,0x58,0x8b,0xac,0xf2,0x9a,0x2a,0x8d,0x26, + 0x7d,0x7e,0x49,0x5e,0xc0,0x09,0x8b,0x95,0xca,0xd3,0xde,0xe0,0xba,0xdf,0xea,0x73,0x50,0x2f,0xd2,0xc3, + 0xbd,0x35,0xeb,0x9f,0x5f,0xd3,0x08,0xdd,0xb5,0xbb,0x71,0x7c,0x4d,0x1b,0x81,0x0e,0x60,0x61,0x67,0xf3, + 0x6a,0x3f,0xdc,0x1b,0x75,0x67,0xc4,0x7b,0x51,0x77,0xc6,0xa3,0xbd,0x2f,0xb5,0xe6,0x68,0x47,0xa5,0x2f, + 0xd5,0xe3,0xba,0x9d,0x25,0x3b,0xa5,0x09,0x9f,0xee,0x9a,0xc1,0xa6,0x5a,0xea,0xec,0x6c,0xa8,0x35,0x04, + 0xe9,0x0e,0x2f,0x32,0xfe,0xf0,0xfa,0x6e,0x1f,0x76,0x37,0x30,0xdc,0xd8,0xaf,0x20,0x09,0xd1,0x92,0xdc, + 0x65,0xb5,0x48,0xe8,0x69,0x12,0xdb,0x70,0xcd,0x32,0xf7,0xfb,0xe1,0xdd,0x6b,0xf7,0x41,0x45,0x93,0x6d, + 0x82,0x12,0x40,0xc5,0xaa,0xf0,0x89,0xac,0xa3,0xd5,0xc0,0x6a,0x05,0x18,0x65,0x86,0x71,0x6c,0xa7,0x3a, + 0x4c,0x64,0x53,0xbd,0xc7,0x62,0xea,0x5a,0x9a,0x3f,0xd7,0xb3,0x76,0x8d,0xa1,0x3b,0x6c,0xe5,0xcd,0x18, + 0x45,0x14,0x38,0xdc,0xa1,0x76,0x8f,0xe5,0xcf,0xb0,0x9d,0x5d,0x63,0x0b,0x3b,0xda,0xb6,0x59,0xd0,0x0e, + 0xc5,0xa7,0x0d,0x0c,0x15,0xf1,0x0d,0x82,0xb1,0xd2,0x36,0x2c,0xd5,0x88,0xcb,0xcd,0x6c,0xe2,0xaf,0xb4, + 0x03,0xdc,0xfe,0x3a,0x0f,0x66,0xcd,0xe1,0xba,0xdb,0xd3,0x59,0x01,0xb9,0x48,0xe5,0x6e,0x7b,0x53,0xab, + 0x61,0x7e,0xae,0xf6,0xc8,0xf8,0x8c,0x0d,0x71,0x76,0xa4,0xa1,0xae,0xbb,0x41,0xab,0x8b,0x0c,0x2c,0xed, + 0x4f,0x7e,0xa2,0x58,0x18,0xa9,0xa3,0xea,0x9c,0x07,0xf5,0x89,0x6c,0x4c,0x97,0x79,0x10,0x90,0x3b,0x54, + 0x28,0xcf,0xe7,0x4b,0xe8,0xee,0x5d,0x11,0x06,0xfe,0xb9,0xb6,0x35,0x6b,0x23,0x5e,0x1c,0x10,0x85,0xbd, + 0x9b,0x03,0x5c,0xad,0xee,0x5e,0x97,0x79,0xef,0xba,0x4c,0x3b,0xa3,0x1e,0xa7,0x5c,0xfe,0xb5,0x53,0xa6, + 0x86,0x48,0xbd,0x39,0x16,0xf6,0x0f,0xed,0x04,0x84,0x15,0xe5,0x63,0xc4,0x3f,0xf3,0x89,0x83,0xff,0xa2, + 0x55,0x38,0x84,0x42,0x33,0xf5,0xf1,0x7d,0xb1,0x2c,0x39,0x44,0x07,0x2e,0xfc,0x3e,0x27,0xbd,0x10,0x2f, + 0xa6,0x94,0x58,0x72,0xa2,0x45,0x28,0x18,0x6a,0xa2,0xd9,0x9e,0x28,0xed,0x82,0x8c,0xc0,0x7f,0x61,0x56, + 0x57,0xbc,0xbe,0x34,0x91,0x24,0x61,0x12,0x6f,0x28,0x60,0x53,0x34,0xfd,0x52,0xeb,0x3d,0x6e,0xdf,0x65, + 0x52,0xa5,0x9f,0x59,0x09,0x26,0x56,0x12,0xe7,0xe4,0x4e,0xd1,0x9e,0xef,0xf5,0x93,0xbe,0xc7,0x7e,0xc3, + 0x94,0x7a,0xba,0xd1,0x08,0x6d,0x6b,0xa8,0x9b,0x1b,0xba,0x16,0x9a,0x00,0x39,0xc0,0xff,0x00,0x48,0xef, + 0x86,0x02,0xe9,0xe7,0xd7,0x5f,0x7c,0x5e,0xbf,0x4a,0xa7,0xdc,0xea,0xdf,0x68,0x5c,0xdb,0x08,0xa0,0x4b, + 0x4f,0x34,0xf6,0xfe,0x46,0x1b,0xda,0xb0,0x70,0xdb,0xd4,0x6f,0xfb,0x4e,0xb1,0x7a,0x87,0x46,0xfb,0xfa, + 0xff,0x03,0xc7,0x33,0x1e,0x13,0xde,0x24,0x02,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index bcfeee0..c6ec2b6 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 41; +const uint8_t VersionMetadata = 42; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+41"; +const char VersionFullSemVer[] = "2.0.0-beta.1+42"; const char VersionCommitDate[] = "2018-02-13"; #endif diff --git a/src/config.h b/src/config.h index 7e938fd..7de58f4 100644 --- a/src/config.h +++ b/src/config.h @@ -4,7 +4,14 @@ #include -#define SerialDebug +// Enables debug information to be output through the standard +// Serial connection, disable in production units to improve performance +//#define SerialDebug + +// Enables the crash API methods to cause crashes, you probably never +// want to leave this on unless you're debugging the exception handler +//#define EnableCrashAPI + #ifdef SerialDebug static const uint32_t SerialDebugBaudrate = 115200; diff --git a/src/main.cpp b/src/main.cpp index 6d87b68..1278f67 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -6,12 +6,12 @@ */ #include #include -//#include #include #include #include #include #include +#include extern "C" { #include diff --git a/src/server/settings.cpp b/src/server/settings.cpp index 53a20b9..fae5eb8 100644 --- a/src/server/settings.cpp +++ b/src/server/settings.cpp @@ -8,12 +8,18 @@ #include #include #include +#include #include "./shared.h" #include "../assets/version.h" +#include "../config.h" #include "../debug.h" #include "../global.h" #include "../settings/connection.h" +extern "C" { + #include +} + void handleStatus(AsyncWebServerRequest *request) { @@ -36,8 +42,8 @@ void handleStatus(AsyncWebServerRequest *request) root["timeOffset"] = 0; } - root["resetReason"] = ESP.getResetReason(); - root["stackTrace"] = false; // TODO implement as part of #19 + root["resetReason"] = ESP.getResetInfoPtr()->reason; + root["stackTrace"] = SaveCrash.count() > 0; AsyncResponseStream *response = request->beginResponseStream("application/json"); root.printTo(*response); @@ -159,6 +165,60 @@ void handlePostSteps(AsyncWebServerRequest *request, uint8_t *data, size_t len, } +void handleGetStackTrace(AsyncWebServerRequest *request) +{ + _dln("API :: get stack trace"); + + if (SaveCrash.count() == 0) + { + request->send(404); + return; + } + + AsyncResponseStream *response = request->beginResponseStream("application/octet-stream"); + response->addHeader("Content-Disposition", "attachment; filename=\"stacktrace.txt\""); + SaveCrash.print(*response); + request->send(response); +} + + +void handleDeleteStackTrace(AsyncWebServerRequest *request) +{ + _dln("API :: delete stack trace"); + + SaveCrash.clear(); + request->send(200); +} + + +#ifdef EnableCrashAPI +#pragma "!!! Crash API is enabled on this build !!!" + +void handleCrashException(AsyncWebServerRequest *request) +{ + _dln("API :: crash exception"); + + int* i = nullptr; + *i = 42; +} + +void handleCrashSoftWDT(AsyncWebServerRequest *request) +{ + _dln("API :: crash soft WDT"); + + while (true); +} + +void handleCrashWDT(AsyncWebServerRequest *request) +{ + _dln("API :: crash WDT"); + + ESP.wdtDisable(); + while (true); +} +#endif + + void registerSettingsRoutes(AsyncWebServer* server) { server->on("/api/status", HTTP_GET, handleStatus); @@ -173,4 +233,13 @@ void registerSettingsRoutes(AsyncWebServer* server) server->on("/api/steps", HTTP_GET, handleGetSteps); server->on("/api/steps", HTTP_POST, devNullRequest, devNullFileUpload, handlePostSteps); + + server->on("/api/stacktrace/get", HTTP_GET, handleGetStackTrace); + server->on("/api/stacktrace/delete", HTTP_GET, handleDeleteStackTrace); + + #ifdef EnableCrashAPI + server->on("/api/crash/exception", HTTP_GET, handleCrashException); + server->on("/api/crash/softwdt", HTTP_GET, handleCrashSoftWDT); + server->on("/api/crash/wdt", HTTP_GET, handleCrashWDT); + #endif } \ No newline at end of file diff --git a/src/settings/abstractjson.cpp b/src/settings/abstractjson.cpp index 79eb409..7bef45b 100644 --- a/src/settings/abstractjson.cpp +++ b/src/settings/abstractjson.cpp @@ -33,6 +33,7 @@ void AbstractJsonSettings::read() std::unique_ptr buf(new char[size]); settingsFile.readBytes(buf.get(), size); + settingsFile.close(); _dln(buf.get()); @@ -60,6 +61,7 @@ void AbstractJsonSettings::write() } toJson(settingsFile); + settingsFile.close(); _d(getDebugPrefix()); _dln(" :: written to file"); } diff --git a/web/app.js b/web/app.js index d081d10..096969f 100644 --- a/web/app.js +++ b/web/app.js @@ -823,7 +823,7 @@ function startApp() brightness: 0, enabled: true, pin: 2, - direction: 0 + direction: 1 }); }, @@ -959,10 +959,13 @@ function startApp() { var self = this; - // TODO call /api/stacktrace/delete - - self.status.resetReason = 0; - self.status.stackTrace = false; + return axios.get('/api/stacktrace/delete') + .then(function(response) + { + self.status.resetReason = 0; + self.status.stackTrace = false; + }) + .catch(self.handleAPIError.bind(self, 'error.stackTraceDeleteError')); } }, diff --git a/web/dist/bundle.js b/web/dist/bundle.js index c4fbc8d..094d7ae 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new o(e),n=a(o.prototype.request,t);return i.extend(n,o.prototype,t),i.extend(n,t),n}var i=n(2),a=n(3),o=n(5),s=n(6),c=r(s);c.Axios=o,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function a(e){return"[object Function]"===l.call(e)}function o(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(o)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),a=n(12),o=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),a(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?o(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,a){var o=new Error(e);return r(o,t,n,i,a)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var a;if(n)a=n(t);else if(i.isURLSearchParams(t))a=t.toString();else{var o=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),o.push(r(t)+"="+r(e))}))}),a=o.join("&")}return a&&(e+=(-1===e.indexOf("?")?"?":"&")+a),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,a,o={};return e?(r.forEach(e.split("\n"),function(e){if(a=e.indexOf(":"),t=r.trim(e.substr(0,a)).toLowerCase(),n=r.trim(e.substr(a+1)),t){if(o[t]&&i.indexOf(t)>=0)return;o[t]="set-cookie"===t?(o[t]?o[t]:[]).concat([n]):o[t]?o[t]+", "+n:n}}),o):o}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,a=String(e),o="",s=0,c=r;a.charAt(0|s)||(c="=",s%1);o+=c.charAt(63&t>>8-s%1*8)){if((i=a.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return o}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,a,o){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(a)&&s.push("domain="+a),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),a=n(19),o=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=a(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=a(t.data,t.headers,e.transformResponse),t},function(t){return o(t)||(r(e),t&&t.response&&(t.response.data=a(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function a(e){return"[object Object]"===mn.call(e)}function o(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(o||"")+"_"+s))[0])&&X(u)&&(f[l]=C(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=C(u.text+c):""!==c&&f.push(C(c)):X(c)&&X(u)?f[l]=C(u.text+c.text):(n(a._isVList)&&t(c.tag)&&e(c.key)&&t(o)&&(c.key="__vlist"+o+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[a],r[a],i[a]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function De(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var a in n){var o=n[a];if(o){var s=Pe(o.componentOptions);s&&!t(s)&&Le(n,a,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,a=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===a?(h=i+1,a=e.slice(0,i).trim()):t();if(void 0===a?a=e.slice(0,i).trim():0!==h&&t(),o)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=Kr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Wr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(a=t)._withTask||(a._withTask=function(){hr=!0;var e=a.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var a}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},a=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,a,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,a,o=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(o[i]="");for(i in l){if(a=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),a===s[i])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===i){o._value=a;var u=e(a)?"":String(a);d=u,!(f=o).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(o.value=u)}else o[i]=a}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?Ci(e):e}function gt(n,r){var i=r.data,a=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(a.staticStyle)&&e(a.style))){var o,s,c=r.elm,l=a.staticStyle,u=a.normalizedStyle||a.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var a=e;a=a.parent;)a.data&&(n=vt(a.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(o=p[s])!==f[s]&&Ai(c,s,null==o?"":o)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Di(e.name||"v")),v(t,e),t}return"string"==typeof e?Di(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function Ct(e,t,n){var r=St(e,t),i=r.type,a=r.timeout,o=r.propCount;if(!i)return n();var s=i===ji?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=o&&l()};setTimeout(function(){c0&&(n=ji,u=o,f=a.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(o,l))>0?o>l?ji:Ii:null)?n===ji?a.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===ji&&Bi.test(r[Li+"Property"])}}function xt(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&$t(t)}function jt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var a,o,s=0,c=e.options.length;s-1,o.selected!==a&&(o.selected=a);else if(y(Ft(o),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var a in i)t[wn(a)]=i[a];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var a=e.elm.style;a.transform=a.WebkitTransform="translate("+r+"px,"+i+"px)",a.transitionDuration="0s"}}function qt(e,t){var n=t?Oa:$a;return e.replace(n,function(e){return Aa[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',ka.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,Cn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Sn=function(e,t,n){return!1},xn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Sn,isReservedAttr:Sn,isUnknownElement:Sn,getTagNamespace:g,parsePlatformTagName:xn,mustUseProp:Sn,_lifecycleHooks:On},Dn=/[^\w.$]/,Pn="__proto__"in{},jn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=jn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(jn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!jn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=jn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);Kn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);Sr||(Sr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Dr={lazy:!0};Se(xe.prototype);var Pr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,a,o){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var a=e;Pr.prepatch(a,a)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var a=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){or.shouldConvert=!1;for(var o=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,a=n.length;iparseInt(this.max)&&Le(o,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var a=e.name||n.options.name,o=function(e){this._init(e)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=t++,o.options=L(n.options,e),o.super=n,o.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(o),o.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,$n.forEach(function(e){o[e]=n[e]}),a&&(o.options.components[a]=o),o.superOptions=n.options,o.extendOptions=e,o.sealedOptions=v({},o.options),i[r]=o,o}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&a(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(De),Object.defineProperty(De.prototype,"$isServer",{get:qn}),Object.defineProperty(De.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),De.version="2.5.13";var Wr,Vr,Ur,Hr,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ai=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),oi=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return ai(e)||oi(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},Ci=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Si=/^--/,xi=/\s*!important$/,Ai=function(e,t,n){if(Si.test(t))e.style.setProperty(t,n);else if(xi.test(n))e.style.setProperty(t,n.replace(xi,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,a=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,a):d>b&&m(0,r,f,p)}(c,d,p,a,s):t(p)?(t(r.text)&&S.setTextContent(c,""),h(c,null,p,0,p.length-1,a)):t(d)?m(0,d,0,d.length-1):t(r.text)&&S.setTextContent(c,""):r.text!==i.text&&S.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var a=0;a-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(De.options.directives,Ui),v(De.options.components,qi),De.prototype.__patch__=jn?Wi:g,De.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&jn?Be(e):void 0,t)},De.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",De)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(Ci(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ea=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),ta=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),na=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ra=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ia="[a-zA-Z_][\\w\\-\\.]*",aa="((?:"+ia+"\\:)?"+ia+")",oa=new RegExp("^<"+aa),sa=/^\s*(\/?)>/,ca=new RegExp("^<\\/"+aa+"[^>]*>"),la=/^]+>/i,ua=/^/g,"$1").replace(//g,"$1")),Da(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ua.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fa.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(la);if(y){n(y[0].length);continue}var b=e.match(ca);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(oa);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,a;!(i=e.match(sa))&&(a=e.match(ra));)n(a[0].length),r.attrs.push(a);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===a&&na(n)&&r(a),l(n)&&a===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(ca.test(k)||oa.test(k)||ua.test(k)||fa.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:pa,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,o,l){var u=i&&i.ns||_a(e);Nn&&"svg"===u&&(o=function(e){for(var t=[],n=0;nc&&(s.push(a=e.slice(c,i)),o.push(JSON.stringify(a)));var l=Xe(r[1].trim());o.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function o(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,a=n.children,o=n.parent.$i18n;if(a=(a||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!o)return a;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=a.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&a.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),a.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,o.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[S]();else{if(f=0,!1===(n=p(n)))return!1;h[x]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===D&&"'"===t||u===P&&'"'===t)return l++,r="\\"+t,h[S](),!0}()){if(i=d(t),(a=(s=L[u])[i]||s.else||I)===I)return;if(u=a[0],(o=h[a[1]])&&(r=a[2],r=void 0===r?t:r,!1===o()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,a=r.length,o=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return o(this._getMessages())},R.dateTimeFormats.get=function(){return o(this._getDateTimeFormats())},R.numberFormats.get=function(){return o(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,a,o,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,a,o,s)),s?this._render(l,o,s):l},M.prototype._link=function(e,t,n,r,i,a){var o=n,s=o.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:a);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,a)}o=(f=this._warnDefault(e,u,f,r))?o.replace(l,f):o}return o},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,a,o,s){var c=this._interpolate(t,e[t],i,a,o,s);return r(c)?r(c=this._interpolate(n,e[n],i,a,o,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var a=[],o=arguments.length-4;o-- >0;)a[o]=arguments[o+4];if(!e)return"";var s=i.apply(void 0,a),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(a))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var a=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(a)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,a,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var o=[],s=arguments.length-5;s-- >0;)o[s]=arguments[s+5];return e?(void 0===i&&(i=1),a((c=this)._t.apply(c,[e,t,n,r].concat(o)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],a=arguments.length-3;a-- >0;)r[a]=arguments[a+3];var o=i.apply(void 0,r).locale||t;return this._exist(n[o],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return o(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return o(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,a){var o=t,s=i[o];if((r(s)||r(s[a]))&&(o=n,s=i[o]),r(s)||r(s[a]))return null;var c=s[a],l=o+"__"+a,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(o,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,a=null;return 1===n.length?"string"==typeof n[0]?a=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(a=n[0].key)):2===n.length&&("string"==typeof n[0]&&(a=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,a)},M.prototype.getNumberFormat=function(e){return o(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,a){var o=t,s=i[o];if((r(s)||r(s[a]))&&(o=n,s=i[o]),r(s)||r(s[a]))return null;var c=s[a],l=o+"__"+a,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(o,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,a=null;return 1===n.length?"string"==typeof n[0]?a=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(a=n[0].key)):2===n.length&&("string"==typeof n[0]&&(a=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,a)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var a=e.$i18n;return a._tc.apply(a,[t,a.locale,a._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",deviceTime:"Time: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadStatus:"Could not load system status",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings",loadSteps:"Could not load calibration settings",updateCalibration:"Could not save calibration settings",resetError:"The system reports that it has been reset unexpectedly. The last power up status is:",resetReason:{0:"Normal startup",1:"Unresponsive, reset by hardware watchdog",2:"Unhandled exception",3:"Unresponsive, reset by software watchdog",4:"System restart requested",5:"Wake up from deep sleep",6:"System reset"},stackTrace:"A stack trace is available. Please send it to your nearest developer and/or delete it from this Stairs device to remove this message.",stackTraceDownload:"Download",stackTraceDelete:"Remove"},calibration:{title:"Calibration wizard",backButton:"Back",count:"Number of steps",nextButton:"Next",applyButton:"Complete",allStepsValue:"Intensity for all steps",ranges:"Min / max values per step",useCurve:"Use logarithmic curve for intensity (recommended for LEDs)"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",deviceTime:"Tijd: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadStatus:"Kan systeemstatus niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan",loadSteps:"Kan kalibratie instellingen niet ophalen",updateCalibration:"Kan kalibratie instellingen niet opslaan",resetError:"Het systeem is onverwachts herstart. De laatste status is:",resetReason:{0:"Normaal opgestart",1:"Reageert niet, herstart door hardware watchdog",2:"Onafgehandelde fout",3:"Reageert niet, herstart door software watchdog",4:"Herstart verzoek door systeem",5:"Wakker geworden uit diepe slaap",6:"Systeem gereset"},stackTrace:"Een stack trace is beschikbaar. Stuur het naar de dichtsbijzijnde ontwikkelaar en/of verwijder het van deze Trap module om dit bericht te verbergen.",stackTraceDownload:"Downloaden",stackTraceDelete:"Verwijderen"},calibration:{title:"Kalibratie wizard",backButton:"Terug",count:"Aantal treden",nextButton:"Volgende",applyButton:"Voltooien",allStepsValue:"Intensiteit voor alle treden",ranges:"Min / max waarden per trede",useCurve:"Gebruik logaritmische curve voor intensiteit (aangeraden voor LEDs)"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("range",{template:'
{{ value.start }}
{{ value.end }}
',props:["value"],mounted:function(){this.oldValue={start:this.value.start,end:this.value.end}},watch:{value:{handler:function(e){e.start!=this.oldValue.start?e.start>e.end&&(e.end=e.start+1,this.$emit("input",e)):e.end!=this.oldValue.end&&e.end0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,a=[],o=0;o0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&(n+=e>=0?"+":"-");var r=(e=Math.abs(e))%60;return n+=Math.floor(e/60)+":",r<10&&(n+="0"),n+=r},startCalibration:function(){var e=this;axios.get("/api/steps").then(function(t){"object"==typeof t.data&&(e.calibration={wizardStep:0,count:t.data.count,useCurve:t.data.useCurve,ranges:t.data.ranges})}).catch(e.handleAPIError.bind(e,"error.loadSteps"))},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){if(0==this.calibration.wizardStep)if(this.calibration.count<1?this.calibration.count=1:this.calibration.count>16&&(this.calibration.count=16),this.calibration.ranges.length>this.calibration.count)this.calibration.ranges.splice(this.calibration.count);else for(;this.calibration.ranges.length=0?"+":"-")+r.substr(-2)+":"+i.substr(-2);return t+":"+n.substr(-2)+" ("+a+")"}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e},calibration:{handler:function(){this.calibrationChanged()},deep:!0}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new o(e),n=a(o.prototype.request,t);return i.extend(n,o.prototype,t),i.extend(n,t),n}var i=n(2),a=n(3),o=n(5),s=n(6),c=r(s);c.Axios=o,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function a(e){return"[object Function]"===l.call(e)}function o(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(o)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),a=n(12),o=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),a(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?o(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,a){var o=new Error(e);return r(o,t,n,i,a)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var a;if(n)a=n(t);else if(i.isURLSearchParams(t))a=t.toString();else{var o=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),o.push(r(t)+"="+r(e))}))}),a=o.join("&")}return a&&(e+=(-1===e.indexOf("?")?"?":"&")+a),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,a,o={};return e?(r.forEach(e.split("\n"),function(e){if(a=e.indexOf(":"),t=r.trim(e.substr(0,a)).toLowerCase(),n=r.trim(e.substr(a+1)),t){if(o[t]&&i.indexOf(t)>=0)return;o[t]="set-cookie"===t?(o[t]?o[t]:[]).concat([n]):o[t]?o[t]+", "+n:n}}),o):o}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,a=String(e),o="",s=0,c=r;a.charAt(0|s)||(c="=",s%1);o+=c.charAt(63&t>>8-s%1*8)){if((i=a.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return o}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,a,o){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(a)&&s.push("domain="+a),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),a=n(19),o=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=a(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=a(t.data,t.headers,e.transformResponse),t},function(t){return o(t)||(r(e),t&&t.response&&(t.response.data=a(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function a(e){return"[object Object]"===mn.call(e)}function o(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(o||"")+"_"+s))[0])&&X(u)&&(f[l]=C(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=C(u.text+c):""!==c&&f.push(C(c)):X(c)&&X(u)?f[l]=C(u.text+c.text):(n(a._isVList)&&t(c.tag)&&e(c.key)&&t(o)&&(c.key="__vlist"+o+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[a],r[a],i[a]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function De(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var a in n){var o=n[a];if(o){var s=Pe(o.componentOptions);s&&!t(s)&&Le(n,a,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,a=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===a?(h=i+1,a=e.slice(0,i).trim()):t();if(void 0===a?a=e.slice(0,i).trim():0!==h&&t(),o)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=Kr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Wr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(a=t)._withTask||(a._withTask=function(){hr=!0;var e=a.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var a}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},a=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,a,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,a,o=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(o[i]="");for(i in l){if(a=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),a===s[i])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===i){o._value=a;var u=e(a)?"":String(a);d=u,!(f=o).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(o.value=u)}else o[i]=a}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?Ci(e):e}function gt(n,r){var i=r.data,a=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(a.staticStyle)&&e(a.style))){var o,s,c=r.elm,l=a.staticStyle,u=a.normalizedStyle||a.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var a=e;a=a.parent;)a.data&&(n=vt(a.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(o=p[s])!==f[s]&&Ai(c,s,null==o?"":o)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Di(e.name||"v")),v(t,e),t}return"string"==typeof e?Di(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function Ct(e,t,n){var r=St(e,t),i=r.type,a=r.timeout,o=r.propCount;if(!i)return n();var s=i===ji?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=o&&l()};setTimeout(function(){c0&&(n=ji,u=o,f=a.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(o,l))>0?o>l?ji:Ii:null)?n===ji?a.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===ji&&Bi.test(r[Li+"Property"])}}function xt(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&$t(t)}function jt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var a,o,s=0,c=e.options.length;s-1,o.selected!==a&&(o.selected=a);else if(y(Ft(o),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var a in i)t[wn(a)]=i[a];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var a=e.elm.style;a.transform=a.WebkitTransform="translate("+r+"px,"+i+"px)",a.transitionDuration="0s"}}function qt(e,t){var n=t?Oa:$a;return e.replace(n,function(e){return Aa[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',ka.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,Cn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Sn=function(e,t,n){return!1},xn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Sn,isReservedAttr:Sn,isUnknownElement:Sn,getTagNamespace:g,parsePlatformTagName:xn,mustUseProp:Sn,_lifecycleHooks:On},Dn=/[^\w.$]/,Pn="__proto__"in{},jn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=jn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(jn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!jn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=jn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);Kn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);Sr||(Sr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Dr={lazy:!0};Se(xe.prototype);var Pr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,a,o){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var a=e;Pr.prepatch(a,a)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var a=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){or.shouldConvert=!1;for(var o=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,a=n.length;iparseInt(this.max)&&Le(o,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var a=e.name||n.options.name,o=function(e){this._init(e)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=t++,o.options=L(n.options,e),o.super=n,o.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(o),o.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,$n.forEach(function(e){o[e]=n[e]}),a&&(o.options.components[a]=o),o.superOptions=n.options,o.extendOptions=e,o.sealedOptions=v({},o.options),i[r]=o,o}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&a(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(De),Object.defineProperty(De.prototype,"$isServer",{get:qn}),Object.defineProperty(De.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),De.version="2.5.13";var Wr,Vr,Ur,Hr,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ai=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),oi=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return ai(e)||oi(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},Ci=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Si=/^--/,xi=/\s*!important$/,Ai=function(e,t,n){if(Si.test(t))e.style.setProperty(t,n);else if(xi.test(n))e.style.setProperty(t,n.replace(xi,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,a=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,a):d>b&&m(0,r,f,p)}(c,d,p,a,s):t(p)?(t(r.text)&&S.setTextContent(c,""),h(c,null,p,0,p.length-1,a)):t(d)?m(0,d,0,d.length-1):t(r.text)&&S.setTextContent(c,""):r.text!==i.text&&S.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var a=0;a-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(De.options.directives,Ui),v(De.options.components,qi),De.prototype.__patch__=jn?Wi:g,De.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&jn?Be(e):void 0,t)},De.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",De)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(Ci(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ea=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),ta=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),na=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ra=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ia="[a-zA-Z_][\\w\\-\\.]*",aa="((?:"+ia+"\\:)?"+ia+")",oa=new RegExp("^<"+aa),sa=/^\s*(\/?)>/,ca=new RegExp("^<\\/"+aa+"[^>]*>"),la=/^]+>/i,ua=/^/g,"$1").replace(//g,"$1")),Da(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ua.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fa.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(la);if(y){n(y[0].length);continue}var b=e.match(ca);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(oa);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,a;!(i=e.match(sa))&&(a=e.match(ra));)n(a[0].length),r.attrs.push(a);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===a&&na(n)&&r(a),l(n)&&a===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(ca.test(k)||oa.test(k)||ua.test(k)||fa.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:pa,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,o,l){var u=i&&i.ns||_a(e);Nn&&"svg"===u&&(o=function(e){for(var t=[],n=0;nc&&(s.push(a=e.slice(c,i)),o.push(JSON.stringify(a)));var l=Xe(r[1].trim());o.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function o(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,a=n.children,o=n.parent.$i18n;if(a=(a||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!o)return a;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=a.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&a.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),a.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,o.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[S]();else{if(f=0,!1===(n=p(n)))return!1;h[x]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===D&&"'"===t||u===P&&'"'===t)return l++,r="\\"+t,h[S](),!0}()){if(i=d(t),(a=(s=L[u])[i]||s.else||I)===I)return;if(u=a[0],(o=h[a[1]])&&(r=a[2],r=void 0===r?t:r,!1===o()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,a=r.length,o=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return o(this._getMessages())},R.dateTimeFormats.get=function(){return o(this._getDateTimeFormats())},R.numberFormats.get=function(){return o(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,a,o,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,a,o,s)),s?this._render(l,o,s):l},M.prototype._link=function(e,t,n,r,i,a){var o=n,s=o.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:a);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,a)}o=(f=this._warnDefault(e,u,f,r))?o.replace(l,f):o}return o},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,a,o,s){var c=this._interpolate(t,e[t],i,a,o,s);return r(c)?r(c=this._interpolate(n,e[n],i,a,o,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var a=[],o=arguments.length-4;o-- >0;)a[o]=arguments[o+4];if(!e)return"";var s=i.apply(void 0,a),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(a))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var a=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(a)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,a,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var o=[],s=arguments.length-5;s-- >0;)o[s]=arguments[s+5];return e?(void 0===i&&(i=1),a((c=this)._t.apply(c,[e,t,n,r].concat(o)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],a=arguments.length-3;a-- >0;)r[a]=arguments[a+3];var o=i.apply(void 0,r).locale||t;return this._exist(n[o],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return o(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return o(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,a){var o=t,s=i[o];if((r(s)||r(s[a]))&&(o=n,s=i[o]),r(s)||r(s[a]))return null;var c=s[a],l=o+"__"+a,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(o,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,a=null;return 1===n.length?"string"==typeof n[0]?a=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(a=n[0].key)):2===n.length&&("string"==typeof n[0]&&(a=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,a)},M.prototype.getNumberFormat=function(e){return o(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,a){var o=t,s=i[o];if((r(s)||r(s[a]))&&(o=n,s=i[o]),r(s)||r(s[a]))return null;var c=s[a],l=o+"__"+a,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(o,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,a=null;return 1===n.length?"string"==typeof n[0]?a=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(a=n[0].key)):2===n.length&&("string"==typeof n[0]&&(a=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,a)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var a=e.$i18n;return a._tc.apply(a,[t,a.locale,a._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",deviceTime:"Time: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadStatus:"Could not load system status",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings",loadSteps:"Could not load calibration settings",updateCalibration:"Could not save calibration settings",resetError:"The system reports that it has been reset unexpectedly. The last power up status is:",resetReason:{0:"Normal startup",1:"Unresponsive, reset by hardware watchdog",2:"Unhandled exception",3:"Unresponsive, reset by software watchdog",4:"System restart requested",5:"Wake up from deep sleep",6:"System reset"},stackTrace:"A stack trace is available. Please send it to your nearest developer and/or delete it from this Stairs device to remove this message.",stackTraceDownload:"Download",stackTraceDelete:"Remove",stackTraceDeleteError:"Could not remove stack trace"},calibration:{title:"Calibration wizard",backButton:"Back",count:"Number of steps",nextButton:"Next",applyButton:"Complete",allStepsValue:"Intensity for all steps",ranges:"Min / max values per step",useCurve:"Use logarithmic curve for intensity (recommended for LEDs)"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",deviceTime:"Tijd: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadStatus:"Kan systeemstatus niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan",loadSteps:"Kan kalibratie instellingen niet ophalen",updateCalibration:"Kan kalibratie instellingen niet opslaan",resetError:"Het systeem is onverwachts herstart. De laatste status is:",resetReason:{0:"Normaal opgestart",1:"Reageert niet, herstart door hardware watchdog",2:"Onafgehandelde fout",3:"Reageert niet, herstart door software watchdog",4:"Herstart verzoek door systeem",5:"Wakker geworden uit diepe slaap",6:"Systeem gereset"},stackTrace:"Een stack trace is beschikbaar. Stuur het naar de dichtsbijzijnde ontwikkelaar en/of verwijder het van deze Trap module om dit bericht te verbergen.",stackTraceDownload:"Downloaden",stackTraceDelete:"Verwijderen",stackTraceDeleteError:"Kan stack trace niet verwijderen"},calibration:{title:"Kalibratie wizard",backButton:"Terug",count:"Aantal treden",nextButton:"Volgende",applyButton:"Voltooien",allStepsValue:"Intensiteit voor alle treden",ranges:"Min / max waarden per trede",useCurve:"Gebruik logaritmische curve voor intensiteit (aangeraden voor LEDs)"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("range",{template:'
{{ value.start }}
{{ value.end }}
',props:["value"],mounted:function(){this.oldValue={start:this.value.start,end:this.value.end}},watch:{value:{handler:function(e){e.start!=this.oldValue.start?e.start>e.end&&(e.end=e.start+1,this.$emit("input",e)):e.end!=this.oldValue.end&&e.end0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,a=[],o=0;o0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:1})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&(n+=e>=0?"+":"-");var r=(e=Math.abs(e))%60;return n+=Math.floor(e/60)+":",r<10&&(n+="0"),n+=r},startCalibration:function(){var e=this;axios.get("/api/steps").then(function(t){"object"==typeof t.data&&(e.calibration={wizardStep:0,count:t.data.count,useCurve:t.data.useCurve,ranges:t.data.ranges})}).catch(e.handleAPIError.bind(e,"error.loadSteps"))},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){if(0==this.calibration.wizardStep)if(this.calibration.count<1?this.calibration.count=1:this.calibration.count>16&&(this.calibration.count=16),this.calibration.ranges.length>this.calibration.count)this.calibration.ranges.splice(this.calibration.count);else for(;this.calibration.ranges.length=0?"+":"-")+r.substr(-2)+":"+i.substr(-2);return t+":"+n.substr(-2)+" ("+a+")"}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e},calibration:{handler:function(){this.calibrationChanged()},deep:!0}}})} \ No newline at end of file diff --git a/web/lang.js b/web/lang.js index 5bcfad9..1bf2acf 100644 --- a/web/lang.js +++ b/web/lang.js @@ -163,7 +163,9 @@ var messages = { }, stackTrace: 'A stack trace is available. Please send it to your nearest developer and/or delete it from this Stairs device to remove this message.', stackTraceDownload: 'Download', - stackTraceDelete: 'Remove' + stackTraceDelete: 'Remove', + + stackTraceDeleteError: 'Could not remove stack trace' }, calibration: { @@ -342,7 +344,9 @@ var messages = { }, stackTrace: 'Een stack trace is beschikbaar. Stuur het naar de dichtsbijzijnde ontwikkelaar en/of verwijder het van deze Trap module om dit bericht te verbergen.', stackTraceDownload: 'Downloaden', - stackTraceDelete: 'Verwijderen' + stackTraceDelete: 'Verwijderen', + + stackTraceDeleteError: 'Kan stack trace niet verwijderen' }, calibration: { From 676a3586ddad74aad22aee15f2d5ccfad344ceb2 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Fri, 16 Feb 2018 22:02:55 +0100 Subject: [PATCH 43/43] Fixed #22: Option to only enable motion triggers during nighttime Also added missing setting for motion turn off delay --- API.md | 1 + devserver.js | 12 + src/assets/css.h | 192 +- src/assets/html.h | 340 +-- src/assets/js.h | 4336 +++++++++++++++--------------- src/assets/version.h | 6 +- src/main.triggers.h | 65 +- src/settings/triggers/motion.cpp | 2 + src/settings/triggers/motion.h | 8 +- web/app.js | 1 + web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 5 + web/lang.js | 6 +- web/site.scss | 6 +- 15 files changed, 2531 insertions(+), 2453 deletions(-) diff --git a/API.md b/API.md index 1340693..d47aaff 100644 --- a/API.md +++ b/API.md @@ -270,6 +270,7 @@ enabled: whether or not this trigger is enabled { "enabled": true, "enabledDuringTimeTrigger": true, + "enabledDuringDay": false, "transitionTime": 1000, "delay": 30000, "triggers": [ diff --git a/devserver.js b/devserver.js index a7d4499..2a66f85 100644 --- a/devserver.js +++ b/devserver.js @@ -208,6 +208,7 @@ app.post('/api/triggers/time', function(req, res) var motionTriggers = { enabled: true, enabledDuringTimeTrigger: false, + enabledDuringDay: true, transitionTime: 1000, delay: 30000, triggers: [ @@ -237,6 +238,17 @@ app.post('/api/triggers/motion', function(req, res) }); +app.get('/api/stacktrace/get', function(req, res) +{ + res.send("Nothing to see here, move along!"); +}); + +app.get('/api/stacktrace/delete', function(req, res) +{ + res.sendStatus(200); +}); + + app.listen(3000, function() { console.log('Development server listening on port 3000') diff --git a/src/assets/css.h b/src/assets/css.h index 502e9b2..3d08fa1 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -5,101 +5,101 @@ const uint8_t EmbeddedBundleCSS[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xad,0x59,0xdb,0x6e,0xa3,0x38,0x18,0x7e,0x95,0x48, - 0xd5,0x48,0xd3,0x15,0x20,0x72,0x20,0x4d,0x41,0xb3,0xda,0xd5,0xbe,0xc1,0x5e,0xec,0xcd,0x28,0x17,0x06, - 0x4c,0xb0,0x4a,0x30,0x32,0x4e,0xd3,0x14,0xf1,0xee,0xfb,0xdb,0xc6,0xc4,0x06,0x27,0x93,0x19,0x8d,0x50, - 0x9b,0x60,0xfb,0x3f,0xfa,0x3f,0x7c,0x76,0x4a,0x7e,0xac,0xba,0x94,0x7e,0xf8,0x2d,0xf9,0x24,0xf5,0x21, - 0x4e,0x29,0xcb,0x31,0xf3,0x61,0x24,0x29,0x68,0xcd,0xc5,0x30,0x8e,0xb7,0xab,0x20,0xfa,0xd2,0xff,0xe1, - 0xc5,0xa8,0xe0,0x98,0x79,0x71,0x8a,0x0b,0xca,0xb0,0x49,0x46,0xea,0x12,0x33,0xc2,0xfb,0x94,0xe6,0x97, - 0x2e,0x45,0xd9,0xdb,0x81,0xd1,0x53,0x9d,0xfb,0x19,0xad,0x28,0x8b,0x9f,0xc2,0x30,0x4c,0x86,0xaf,0x45, - 0x51,0x28,0xce,0x05,0x3a,0x92,0xea,0x12,0xff,0x87,0x59,0x8e,0x6a,0xe4,0xfd,0xcd,0x08,0xaa,0xbc,0x16, - 0xd5,0xad,0xdf,0x02,0xab,0xc2,0x10,0xbf,0x0c,0xd6,0xf8,0xa8,0xde,0xcf,0x98,0x1c,0x4a,0x1e,0xaf,0x81, - 0x5f,0x85,0x39,0x28,0xe3,0xb7,0x0d,0xca,0x84,0x06,0x41,0xb8,0x84,0x45,0x15,0xa9,0xb1,0x5f,0xaa,0x45, - 0x40,0x96,0x34,0x28,0xcf,0x61,0x16,0xec,0xe1,0x9c,0x1e,0xe3,0x35,0xc3,0xc7,0xfe,0xaf,0x23,0xce,0x09, - 0x5a,0xb4,0x19,0xc3,0xb8,0x5e,0xa0,0x3a,0x5f,0x7c,0x3d,0x92,0xda,0x3f,0x93,0x9c,0x97,0xf1,0xcb,0x76, - 0xd7,0x7c,0x3c,0x77,0xd2,0x0e,0x4d,0xcc,0x69,0xa3,0x28,0x7b,0xd4,0x71,0xfc,0xc1,0xfd,0x1c,0x67,0x94, - 0x21,0x4e,0x68,0x1d,0xd7,0xb4,0xc6,0xfd,0xf7,0x77,0x3f,0xab,0x28,0x7a,0xdb,0x77,0x39,0x69,0x9b,0x0a, - 0x5d,0xd4,0xf0,0x53,0x06,0x2a,0x23,0xd0,0x88,0x19,0x2e,0x89,0x9f,0x56,0xa1,0x78,0x92,0x23,0x62,0x07, - 0x10,0x2b,0x98,0xaf,0x80,0xb9,0x56,0x35,0x5e,0x8a,0x17,0xe9,0xda,0x12,0xe5,0xf4,0x1c,0x87,0x8b,0x70, - 0x11,0x85,0xcd,0xc7,0xe2,0xa9,0xc8,0x8a,0x6d,0x56,0x24,0x6a,0x8b,0xe2,0x96,0x56,0x24,0x5f,0x2c,0xc5, - 0x04,0xb8,0xf7,0x21,0xab,0x0c,0x85,0x8c,0x71,0xad,0x49,0x85,0x0b,0x1e,0xa3,0x13,0xa7,0x7a,0x80,0x49, - 0x37,0x8a,0x91,0xbe,0x0f,0x4a,0x8c,0x40,0x6a,0xd7,0xd0,0x96,0x48,0xc3,0x19,0xae,0xc0,0x03,0xef,0x58, - 0xcf,0x2c,0xc8,0xf1,0xd0,0x15,0xe0,0x05,0x1e,0x0b,0x46,0x36,0x8f,0xe5,0x2d,0xbf,0xa3,0x8f,0x51,0xc3, - 0x17,0xa1,0xa1,0x66,0x16,0x9c,0x49,0x41,0x5a,0x8e,0xf8,0xa9,0xed,0xb2,0x0a,0x23,0x06,0x81,0xc9,0x4b, - 0xd3,0x67,0x6a,0x43,0x1e,0xb1,0xda,0xc5,0x73,0x34,0x03,0xa5,0xe0,0xc7,0x13,0xc7,0x89,0x52,0x34,0x4c, - 0x04,0xef,0x70,0xb4,0xd7,0x24,0x5a,0x04,0xa4,0xce,0x49,0x86,0x38,0x65,0xe3,0x3e,0x93,0x5a,0x46,0x5c, - 0x5a,0xd1,0xec,0x2d,0x51,0x52,0xe5,0xfe,0xe9,0x10,0x54,0x7b,0x29,0x53,0x8a,0xa1,0x9c,0x9c,0xda,0x38, - 0x0a,0xbf,0xd8,0xbe,0x09,0x22,0x61,0xc9,0x7d,0x79,0xdf,0x73,0xc4,0x91,0xaf,0x86,0xbf,0xc1,0x26,0xd6, - 0x38,0xe3,0x38,0xdf,0x3b,0x32,0x6d,0xfd,0xba,0xfd,0x19,0x5e,0x60,0x87,0xc9,0x6e,0x1a,0x59,0x07,0x86, - 0x2f,0xbf,0xa0,0x1a,0x84,0xb1,0x4b,0xb7,0xe2,0x75,0xfd,0x33,0xcc,0x30,0x63,0x94,0xb9,0xf8,0x64,0x10, - 0xee,0x41,0x7a,0x82,0x8c,0xae,0xbd,0x20,0x2b,0x71,0xf6,0xb6,0x08,0x44,0x64,0x33,0x5a,0x79,0x41,0x4d, - 0x39,0x70,0xce,0x64,0x76,0x7a,0x41,0x83,0x6a,0x5c,0x2d,0xd4,0x87,0x2f,0x92,0x7a,0x32,0xa4,0xb4,0xf1, - 0x02,0xb1,0x39,0xd4,0xe0,0x72,0x46,0xac,0x06,0x2b,0xbc,0x41,0x4a,0xb9,0xf6,0x48,0xdd,0x9c,0xf8,0x77, - 0x7e,0x69,0xf0,0xb7,0xf6,0x94,0x1e,0x09,0xdf,0x7b,0x2d,0xae,0xc0,0x58,0xed,0x35,0xe1,0x2f,0xe5,0xb9, - 0xa7,0xe5,0x72,0x39,0xd9,0xf5,0x35,0xa4,0x99,0x91,0xd3,0xa4,0x6e,0x31,0x87,0xbc,0x16,0x34,0xec,0x90, - 0xa2,0xaf,0xab,0x28,0xf2,0xf4,0x5f,0xb0,0x7c,0xf6,0xf4,0x02,0x5f,0xac,0x58,0xeb,0x55,0xa1,0x27,0x9e, - 0x60,0x7d,0x9d,0x0f,0x6f,0x32,0x09,0x77,0xcf,0x9e,0x9a,0x5b,0x4d,0xc8,0x97,0xd1,0xb3,0x76,0x5f,0x80, - 0x32,0x91,0xc3,0xde,0xf0,0x1a,0x0f,0xaf,0xf6,0xa4,0x3d,0x67,0xf8,0xa1,0x3e,0x1d,0x53,0xcc,0xf6,0xe6, - 0x50,0x83,0xda,0xf6,0x0c,0x96,0xef,0x1d,0xfe,0x0a,0xe6,0x1c,0x86,0x19,0x07,0x6f,0x51,0x67,0xf7,0x9e, - 0xf8,0x8f,0x18,0x46,0xf7,0x7d,0x7c,0x6d,0x32,0x72,0x58,0xcf,0x39,0xbd,0x3d,0x75,0xc6,0x2a,0xd2,0x6e, - 0x72,0xba,0xb0,0x1f,0x02,0x40,0x6a,0xd6,0x3d,0xd2,0xb7,0xc6,0xc8,0x34,0x29,0x2d,0x6b,0xdd,0xc5,0x43, - 0x97,0x7f,0x50,0x06,0x74,0xd4,0xdd,0x32,0xcf,0xf3,0xc4,0xec,0x1d,0x9b,0x50,0x3c,0x49,0x76,0x62,0x2d, - 0x4c,0x37,0x94,0xd4,0xd0,0x03,0xad,0xae,0x27,0xeb,0xa2,0xde,0xde,0x82,0x66,0xa7,0x76,0xdc,0x5d,0xfb, - 0xad,0xa4,0xef,0x10,0xf9,0xd6,0x42,0x6b,0x9d,0xb5,0xcc,0xb1,0x9b,0x6a,0x95,0x63,0x33,0x6f,0x4e,0x48, - 0x56,0xdd,0x0d,0xcb,0xa2,0x50,0x3c,0x09,0x3d,0x71,0x61,0x4d,0x1c,0xfe,0x9e,0x10,0x7d,0x34,0xf4,0xb4, - 0x56,0x59,0x96,0x59,0x5a,0xad,0x76,0xe2,0xd1,0xba,0xf8,0x0d,0x23,0x50,0xbb,0x2f,0xae,0x4d,0xb5,0xa8, - 0x56,0xdb,0x08,0x2d,0xa7,0x54,0xf6,0x6e,0xe8,0xd1,0xd8,0x3d,0xfa,0xdb,0xdd,0x6e,0xe9,0xb7,0x7d,0x59, - 0xa5,0xdb,0x1e,0x0d,0x42,0xdd,0xa0,0x26,0xa8,0xd1,0x3b,0x39,0xc8,0x81,0x7b,0x2d,0x38,0xe0,0xd0,0x42, - 0xff,0xd4,0x9c,0x4c,0x28,0x21,0x6a,0xd7,0xa4,0x0c,0x86,0xf6,0xf2,0xb8,0x20,0xac,0xe5,0x7e,0x56,0x92, - 0x2a,0xb7,0x48,0xc3,0x79,0xf9,0x94,0xa5,0x0e,0x3e,0x27,0x1c,0x2a,0x34,0x32,0x98,0x88,0x92,0x65,0x53, - 0x12,0x4e,0x85,0x0a,0x47,0xcd,0x81,0x4c,0xf2,0xe9,0x43,0x1f,0xc2,0x1f,0x31,0x6c,0x1c,0x38,0xac,0x95, - 0x76,0xcb,0xa8,0x10,0x5d,0xd0,0x80,0xa3,0xbb,0x86,0x27,0xd2,0x63,0xa8,0x22,0x87,0x3a,0xce,0xb0,0xcc, - 0xc1,0x09,0x9c,0xeb,0xad,0x46,0xf4,0xcf,0x88,0xbb,0x46,0xb1,0x05,0xf9,0xc0,0x79,0x32,0xa2,0x3f,0x2d, - 0x7c,0xbb,0xdd,0x3e,0x06,0x6a,0xdc,0xec,0xd5,0x9a,0x48,0x96,0x10,0xe9,0x49,0x80,0x1b,0xbd,0xad,0x8b, - 0x1d,0x09,0xaf,0x2f,0x28,0xdd,0x4d,0xe1,0xe6,0x32,0x1c,0x50,0xa5,0x09,0xda,0x27,0x35,0x47,0xd7,0xab, - 0x20,0x02,0xed,0x07,0xe3,0x07,0x94,0xad,0xe0,0xec,0x0c,0x28,0xfe,0xb4,0x59,0x9d,0x0a,0xa3,0xb9,0x09, - 0x8b,0xe0,0x88,0xdb,0x16,0x1d,0x70,0x77,0x2e,0x09,0xc7,0xf2,0x0c,0x80,0xe3,0x86,0x61,0x7b,0x59,0x20, - 0x11,0x84,0x65,0xef,0xeb,0xcb,0x1a,0xad,0x21,0x9f,0x25,0x6a,0x18,0xda,0xbe,0xbb,0x1e,0x4f,0xcc,0x3d, - 0xb5,0xe2,0xac,0x21,0x1b,0xbe,0x4c,0x8f,0xc4,0x94,0x5c,0xd3,0x33,0x43,0x4d,0x3f,0xc3,0x22,0x36,0xaa, - 0xe8,0x1c,0x85,0xfc,0x1e,0x8e,0xdc,0xc2,0x1e,0x6a,0x1c,0x29,0xbe,0x3b,0xa0,0xf7,0x20,0xb0,0x42,0x29, - 0xbe,0x8a,0x93,0x6f,0x6e,0xa3,0xcc,0x1c,0x93,0x1b,0x07,0x81,0xce,0xc1,0x5b,0xd5,0x10,0xcb,0x10,0x8e, - 0x03,0x53,0xf5,0x1f,0xe7,0x53,0x6b,0x66,0xe3,0x96,0x55,0xdb,0x50,0x3c,0x9a,0x05,0xa8,0x80,0xd2,0x0a, - 0xe7,0x9a,0x54,0xbf,0x77,0x83,0x6f,0x61,0xaf,0x40,0x6e,0x45,0xcf,0x38,0xef,0x67,0x08,0xcc,0x7e,0x17, - 0x18,0x51,0x9e,0xa3,0xa6,0x58,0x7a,0x4a,0xa8,0x17,0x1a,0x07,0xcf,0x39,0xd6,0x17,0x59,0xb7,0xd1,0x19, - 0x22,0xbe,0x28,0x8f,0x1b,0x0e,0xdf,0x8a,0x42,0xe3,0x36,0x78,0x54,0xc5,0xb0,0x5b,0xb6,0x0d,0x33,0x87, - 0x96,0x13,0x98,0x21,0x20,0x97,0x1d,0x1d,0x9a,0x8d,0x5b,0xbb,0xe8,0xae,0x76,0xb2,0x0c,0xba,0xb7,0xc9, - 0x76,0xd4,0x00,0xe5,0xe7,0xd0,0x66,0xf7,0xac,0x2b,0xac,0x62,0x2e,0xb2,0x7e,0xa5,0xe0,0x51,0xc2,0x19, - 0x80,0x19,0x38,0xe0,0x1f,0x63,0x46,0x01,0x89,0xe3,0xaf,0xfe,0x26,0xca,0xf1,0xe1,0xd9,0xb4,0x50,0xe2, - 0xd2,0xd0,0x46,0x52,0x16,0x90,0x32,0xec,0x16,0xac,0x7c,0x1d,0x2d,0x46,0x99,0x84,0xf3,0x7a,0xff,0x0b, - 0x68,0x72,0x8a,0x0c,0x1d,0xe8,0xe8,0x5a,0xb4,0xac,0x2a,0x35,0xe4,0x55,0x08,0x51,0xa3,0xa1,0xfb,0xc3, - 0xc4,0xa6,0xa6,0xe0,0x9f,0x03,0xde,0x5b,0xa6,0xb0,0x59,0x11,0x94,0x47,0xde,0x72,0xd9,0x5d,0xfb,0xc6, - 0xea,0xba,0x08,0x1a,0x61,0xb9,0x1a,0x62,0xb4,0x25,0x15,0x64,0xa1,0x75,0xdd,0x31,0x59,0xb9,0x36,0xfb, - 0xd0,0x1c,0x9d,0xcc,0x49,0xaf,0x8a,0x4b,0x25,0x36,0x9d,0xb9,0x62,0xc3,0x46,0x6b,0x74,0x42,0xee,0x1d, - 0x19,0x99,0xdc,0x92,0xb9,0x15,0x4f,0x6f,0x17,0x19,0xab,0xba,0x08,0x87,0x38,0xba,0x82,0xf4,0xa2,0x2a, - 0x4e,0xbe,0x2a,0x4a,0x9d,0x75,0x0e,0x5e,0x3d,0x7a,0x37,0x13,0x94,0x94,0x91,0x4f,0xd1,0xf2,0x2a,0x03, - 0x98,0xf4,0xc6,0xf0,0xe2,0x76,0x09,0xb4,0x96,0x39,0xa2,0xef,0xc6,0xf4,0x35,0x12,0x6f,0x2c,0x50,0x51, - 0x69,0x4e,0x8e,0x11,0xea,0xac,0xc4,0xea,0xa6,0x44,0x5a,0x3e,0xc4,0xa5,0x2c,0x66,0x57,0x7a,0x75,0xd7, - 0x66,0x1a,0x08,0xb3,0xd0,0x8b,0x26,0x3e,0xb7,0x61,0x89,0xb1,0x67,0x93,0x68,0x1c,0x6e,0x19,0x40,0xaa, - 0x88,0x8c,0x6e,0x82,0xe2,0xe6,0x78,0xa6,0x0f,0x00,0x3e,0xd2,0x46,0x54,0xa6,0xd6,0x82,0x66,0x91,0x71, - 0xbe,0xb0,0xee,0x66,0x5c,0x2c,0xa0,0xf8,0x00,0x92,0xea,0x66,0xd8,0xa8,0xe5,0xb8,0xb1,0xb8,0xae,0x8d, - 0x04,0x62,0xe3,0x39,0xc6,0xd5,0xf2,0x04,0xe9,0x62,0xe0,0x7c,0xbd,0xce,0xb2,0x48,0x37,0x5a,0xc4,0x22, - 0x78,0x47,0xd5,0x09,0xff,0xe0,0xb6,0x27,0x90,0xd9,0x7b,0x75,0x5d,0x7f,0x8b,0xbb,0xce,0x74,0xbd,0xa0, - 0xf3,0xcf,0x38,0x7d,0x23,0x60,0x75,0xd3,0x80,0x1b,0x50,0x2d,0xa1,0x80,0xc0,0x06,0x63,0xa1,0xd1,0x15, - 0x5b,0xba,0x7f,0x02,0x6a,0xe1,0xec,0x29,0x07,0xe7,0x35,0xc8,0x38,0x04,0x29,0x49,0x71,0xac,0x45,0xa9, - 0x77,0x9f,0x97,0x10,0xaf,0x37,0xe5,0xbb,0xf5,0x59,0x19,0x17,0x53,0x2b,0xf7,0xc5,0x94,0xa9,0xcb,0x70, - 0xdb,0x68,0xe3,0x20,0x43,0xa1,0x23,0xfd,0xf4,0x65,0x25,0x1c,0x94,0xf9,0x9d,0x42,0x86,0xeb,0x17,0x07, - 0x74,0xfb,0x21,0xee,0x9c,0xed,0x55,0x4d,0xc5,0xa5,0x92,0x59,0x42,0x1d,0x91,0x2a,0xe3,0xd8,0xaa,0x26, - 0xf2,0x7e,0xa8,0x73,0x01,0x5b,0x7d,0x50,0xef,0x5d,0x57,0x49,0xdd,0xfc,0xe0,0x32,0x1c,0x5e,0x92,0xf1, - 0x6a,0x5d,0xf0,0xd2,0x7d,0xd7,0xb6,0xe7,0x6e,0x3f,0x72,0xca,0x1b,0x4a,0x9d,0x51,0xe0,0x1f,0xad,0xa2, - 0x2e,0x66,0xf2,0x9c,0x2c,0xf2,0xda,0x28,0x4f,0xbd,0x5b,0xae,0x06,0x9d,0xae,0x39,0xed,0x6d,0x87,0xd6, - 0xea,0x07,0x82,0xc9,0x49,0x6d,0x3c,0xab,0x59,0x0e,0x58,0x87,0xe2,0x19,0x1d,0xa4,0x2a,0x87,0xe4,0x32, - 0x1c,0xe7,0xa7,0x9e,0x37,0x69,0xd3,0x0d,0x8a,0x76,0x96,0xf3,0x86,0x9e,0x73,0x07,0x71,0xcb,0x9b,0xee, - 0xe0,0x8c,0xf1,0x5b,0x8e,0x2e,0xed,0x3c,0xeb,0xf5,0x8c,0x86,0xd8,0x8a,0x6a,0x27,0xa6,0x0a,0xd0,0xc0, - 0x97,0xb1,0xe4,0xeb,0xfb,0x0a,0x39,0x04,0x01,0xf5,0x8e,0x87,0xa1,0x4e,0x02,0x2b,0x55,0x88,0xa8,0xf8, - 0xd5,0x82,0x5f,0x16,0x41,0xd4,0x9a,0xc4,0x16,0x15,0xa7,0xdd,0xb0,0x4c,0xc4,0x9a,0x4c,0x35,0x2b,0x42, - 0xe5,0x08,0x94,0x42,0xe8,0x32,0xdc,0x71,0x9c,0xbd,0x63,0xe8,0xe6,0xf5,0x8b,0x4d,0xfe,0x48,0x41,0xb5, - 0xd7,0x3f,0x52,0x58,0x55,0xd3,0xb1,0x2a,0xeb,0xc0,0x04,0xd7,0xf9,0xa3,0x1a,0xdf,0x68,0x94,0x57,0x46, - 0x37,0x75,0x57,0xf8,0xd9,0x50,0x5d,0x2e,0xbe,0xa5,0xf8,0x70,0xef,0x70,0x4f,0xef,0x79,0x4b,0x0e,0x18, - 0x6e,0x31,0xff,0x17,0xa3,0x76,0x72,0xf7,0xb1,0x02,0xb1,0xff,0x03,0x88,0x91,0x17,0xd9,0x5b,0x1b,0x00, - 0x00}; + 0xd5,0x48,0xd3,0x15,0x20,0x92,0x94,0xb4,0x05,0xcd,0x6a,0x57,0xfb,0x06,0x7b,0xb1,0x37,0xa3,0x5e,0x18, + 0x30,0xc1,0x2a,0xc1,0xc8,0x38,0x4d,0x5b,0xc4,0xbb,0xef,0xef,0x13,0xb1,0xc1,0xc9,0x64,0x46,0x23,0xd4, + 0x26,0xd8,0xfe,0x8f,0xfe,0x0f,0x9f,0x9d,0x9a,0x1f,0x9a,0x21,0xa7,0xef,0x61,0x4f,0x3e,0x49,0xbb,0x4f, + 0x73,0xca,0x4a,0xcc,0x42,0x18,0xc9,0x2a,0xda,0x72,0x31,0x8c,0xd3,0xdd,0x26,0x4a,0xbe,0x8c,0x7f,0x04, + 0x29,0xaa,0x38,0x66,0x41,0x9a,0xe3,0x8a,0x32,0x6c,0x93,0x91,0xb6,0xc6,0x8c,0xf0,0x31,0xa7,0xe5,0xc7, + 0x90,0xa3,0xe2,0x75,0xcf,0xe8,0xb1,0x2d,0xc3,0x82,0x36,0x94,0xa5,0x77,0x71,0x1c,0x67,0xfa,0x6b,0x55, + 0x55,0x8a,0x73,0x85,0x0e,0xa4,0xf9,0x48,0xff,0xc3,0xac,0x44,0x2d,0x0a,0xfe,0x66,0x04,0x35,0x41,0x8f, + 0xda,0x3e,0xec,0x81,0x55,0x65,0x89,0x5f,0x47,0x5b,0x7c,0x50,0xef,0x27,0x4c,0xf6,0x35,0x4f,0xb7,0xc0, + 0xaf,0xc1,0x1c,0x94,0x09,0xfb,0x0e,0x15,0x42,0x83,0x28,0x5e,0xc3,0xa2,0x86,0xb4,0x38,0xac,0xd5,0x22, + 0x20,0xcb,0x3a,0x54,0x96,0x30,0x0b,0xf6,0x70,0x4e,0x0f,0xe9,0x96,0xe1,0xc3,0xf8,0xd7,0x01,0x97,0x04, + 0xad,0xfa,0x82,0x61,0xdc,0xae,0x50,0x5b,0xae,0xbe,0x1e,0x48,0x1b,0x9e,0x48,0xc9,0xeb,0xf4,0x71,0xf7, + 0xd4,0xbd,0xdf,0x0f,0xd2,0x0e,0x43,0xcc,0x69,0xa7,0x28,0x47,0x34,0x70,0xfc,0xce,0xc3,0x12,0x17,0x94, + 0x21,0x4e,0x68,0x9b,0xb6,0xb4,0xc5,0xe3,0xf7,0xb7,0xb0,0x68,0x28,0x7a,0x7d,0x19,0x4a,0xd2,0x77,0x0d, + 0xfa,0x50,0xc3,0x77,0x05,0xa8,0x8c,0x40,0x23,0x66,0xb9,0x24,0xbd,0xdb,0xc4,0xe2,0xc9,0x0e,0x88,0xed, + 0x41,0xac,0x60,0xbe,0x01,0xe6,0x46,0xd5,0x74,0x2d,0x5e,0xa4,0x6b,0x6b,0x54,0xd2,0x53,0x1a,0xaf,0xe2, + 0x55,0x12,0x77,0xef,0xab,0xbb,0xaa,0xa8,0x76,0x45,0x95,0xa9,0x2d,0x4a,0x7b,0xda,0x90,0x72,0xb5,0x16, + 0x13,0xe0,0xde,0x9b,0xac,0xb2,0x14,0xb2,0xc6,0x8d,0x26,0x0d,0xae,0x78,0x8a,0x8e,0x9c,0x9a,0x01,0x26, + 0xdd,0x28,0x46,0xc6,0x31,0xaa,0x31,0x02,0xa9,0x43,0x47,0x7b,0x22,0x0d,0x67,0xb8,0x01,0x0f,0xbc,0x61, + 0x33,0xb3,0x22,0x87,0xfd,0x50,0x81,0x17,0x78,0x2a,0x18,0xb9,0x3c,0xd6,0x97,0xfc,0x8e,0xde,0x27,0x0d, + 0x1f,0x85,0x86,0x86,0x59,0x74,0x22,0x15,0xe9,0x39,0xe2,0xc7,0x7e,0x28,0x1a,0x8c,0x18,0x04,0x26,0xaf, + 0x6d,0x9f,0xa9,0x0d,0xb9,0xc5,0x6a,0x1f,0xcf,0xc9,0x0c,0x94,0x83,0x1f,0x8f,0x1c,0x67,0x4a,0xd1,0x38, + 0x13,0xbc,0xe3,0xc9,0x5e,0x9b,0x68,0x15,0x91,0xb6,0x24,0x05,0xe2,0x94,0x4d,0xfb,0x4c,0x5a,0x19,0x71, + 0x79,0x43,0x8b,0xd7,0x4c,0x49,0x95,0xfb,0x67,0x42,0x50,0xed,0xa5,0x4c,0x29,0x86,0x4a,0x72,0xec,0xd3, + 0x24,0xfe,0xe2,0xfa,0x26,0x4a,0x84,0x25,0xd7,0xe5,0x7d,0x2f,0x11,0x47,0xa1,0x1a,0xfe,0x06,0x9b,0xd8, + 0xe2,0x82,0xe3,0xf2,0xc5,0x93,0x69,0xdb,0xe7,0xdd,0xcf,0xf0,0x02,0x3b,0x6c,0x76,0xf3,0xc8,0xda,0x33, + 0xfc,0xf1,0x0b,0xaa,0x41,0x18,0xfb,0x74,0xab,0x9e,0xb7,0x3f,0xc3,0x0c,0x33,0x46,0x99,0x8f,0x4f,0x01, + 0xe1,0x1e,0xe5,0x47,0xc8,0xe8,0x36,0x88,0x8a,0x1a,0x17,0xaf,0xab,0x48,0x44,0x36,0xa3,0x4d,0x10,0xb5, + 0x94,0x03,0xe7,0x42,0x66,0x67,0x10,0x75,0xa8,0xc5,0xcd,0x4a,0x7d,0x84,0x22,0xa9,0x67,0x43,0x4a,0x9b, + 0x20,0x12,0x9b,0x43,0x2d,0x2e,0x27,0xc4,0x5a,0xb0,0x22,0xd0,0x52,0xea,0x6d,0x40,0xda,0xee,0xc8,0xbf, + 0xf3,0x8f,0x0e,0x7f,0xeb,0x8f,0xf9,0x81,0xf0,0x97,0xa0,0xc7,0x0d,0x18,0x6b,0xbc,0x26,0xfc,0xa5,0x3c, + 0x77,0xb7,0x5e,0xaf,0x67,0xbb,0xbe,0x85,0x34,0xb3,0x72,0x9a,0xb4,0x3d,0xe6,0x90,0xd7,0x82,0x86,0xed, + 0x73,0xf4,0x75,0x93,0x24,0x81,0xf9,0x8b,0xd6,0xf7,0x81,0x59,0x10,0x8a,0x15,0x5b,0xb3,0x2a,0x0e,0xc4, + 0x13,0x6d,0xcf,0xf3,0xf1,0x45,0x26,0xf1,0xd3,0x7d,0xa0,0xe6,0x36,0x33,0xf2,0x75,0x72,0x6f,0xdc,0x17, + 0xa1,0x42,0xe4,0x70,0xa0,0x5f,0x53,0xfd,0xea,0x4e,0xba,0x73,0x96,0x1f,0xda,0xe3,0x21,0xc7,0xec,0xc5, + 0x1e,0xea,0x50,0xdf,0x9f,0xc0,0xf2,0x17,0x8f,0xbf,0xa2,0x25,0x07,0x3d,0xe3,0xe1,0x2d,0xea,0xec,0x4b, + 0x20,0xfe,0x23,0x86,0xd1,0x75,0x1f,0x9f,0x9b,0x8c,0x1c,0x36,0x73,0x5e,0x6f,0xcf,0x9d,0xb1,0x49,0x8c, + 0x9b,0xbc,0x2e,0x1c,0x75,0x00,0x48,0xcd,0x86,0x5b,0xfa,0xd6,0x14,0x99,0x36,0xa5,0x63,0xad,0xbf,0x78, + 0x98,0xf2,0x0f,0xca,0x80,0x8e,0xa6,0x5b,0x96,0x65,0x99,0xd9,0xbd,0xe3,0x21,0x16,0x4f,0x56,0x1c,0x59, + 0x0f,0xd3,0x1d,0x25,0x2d,0xf4,0x40,0xa7,0xeb,0xc9,0xba,0x68,0xb6,0xb7,0xa2,0xc5,0xb1,0x9f,0x76,0xd7, + 0x7d,0xab,0xe9,0x1b,0x44,0xbe,0xb3,0xd0,0x59,0xe7,0x2c,0xf3,0xec,0xa6,0x5a,0xe5,0xd9,0xcc,0x8b,0x13, + 0x92,0xd5,0x70,0xc1,0xb2,0x24,0x16,0x4f,0x46,0x8f,0x5c,0x58,0x93,0xc6,0xbf,0x27,0x44,0x6f,0x0d,0x3d, + 0xa3,0x55,0x51,0x14,0x8e,0x56,0x9b,0x27,0xf1,0x18,0x5d,0xc2,0x8e,0x11,0xa8,0xdd,0x1f,0xbe,0x4d,0x75, + 0xa8,0x36,0xbb,0x04,0xad,0xe7,0x54,0xee,0x6e,0x98,0xd1,0xd4,0x3f,0xfa,0xdb,0xdd,0xee,0xe8,0xb7,0x7b, + 0xdc,0xe4,0xbb,0x11,0x69,0xa1,0x7e,0x50,0x13,0xb5,0xe8,0x8d,0xec,0xe5,0xc0,0xb5,0x16,0x1c,0x71,0x68, + 0xa1,0x7f,0x1a,0x4e,0x36,0x94,0x10,0xb5,0x6b,0x56,0x06,0x63,0x77,0x79,0x5a,0x11,0xd6,0xf3,0xb0,0xa8, + 0x49,0x53,0x3a,0xa4,0xf1,0xb2,0x7c,0xca,0x52,0x07,0x9f,0x33,0x0e,0x0d,0x9a,0x18,0xcc,0x44,0xc9,0xb2, + 0x29,0x09,0xe7,0x42,0x85,0xa3,0x96,0x40,0x26,0xfb,0x0c,0xa1,0x0f,0xe1,0xf7,0x14,0x36,0x0e,0x1c,0xd6, + 0x4b,0xbb,0x65,0x54,0x88,0x2e,0x68,0xc1,0xd1,0xa7,0x8e,0x67,0xd2,0x63,0xa8,0x21,0xfb,0x36,0x2d,0xb0, + 0xcc,0xc1,0x19,0x9c,0x1b,0x9d,0x46,0xf4,0xcf,0x84,0xbb,0x26,0xb1,0x15,0x79,0xc7,0x65,0x36,0xa1,0x3f, + 0x23,0x7c,0xb7,0xdb,0xdd,0x06,0x6a,0xfc,0xec,0xd5,0x9a,0x44,0x96,0x10,0xe9,0x49,0x80,0x1b,0xa3,0xab, + 0x8b,0x1b,0x09,0xcf,0x8f,0x28,0x7f,0x9a,0xc3,0xcd,0x75,0xac,0x51,0xa5,0x0d,0xda,0x67,0x35,0xc7,0xd4, + 0xab,0x28,0x01,0xed,0xb5,0xf1,0x1a,0x65,0x2b,0x38,0xbb,0x00,0x8a,0x3f,0x6d,0xd6,0xa0,0xc2,0x68,0x69, + 0xc2,0x2a,0x3a,0xe0,0xbe,0x47,0x7b,0x3c,0x9c,0x6a,0xc2,0xb1,0x3c,0x03,0xe0,0xb4,0x63,0xd8,0x5d,0x16, + 0x49,0x04,0xe1,0xd8,0xfb,0xfc,0xb8,0x45,0x5b,0xc8,0x67,0x89,0x1a,0x74,0xdb,0xf7,0xd7,0xe3,0x99,0xb9, + 0xc7,0x5e,0x9c,0x35,0x64,0xc3,0x97,0xe9,0x91,0xd9,0x92,0x5b,0x7a,0x62,0xa8,0x1b,0x17,0x58,0xc4,0x45, + 0x15,0x83,0xa7,0x90,0x5f,0xc3,0x91,0x3b,0xd8,0x43,0x83,0x23,0xc5,0x77,0x0f,0xf4,0xd6,0x02,0x1b,0x94, + 0xe3,0xb3,0x38,0xf9,0xe6,0x37,0xca,0xce,0x31,0xb9,0x71,0x10,0xe8,0x1c,0xbc,0xd5,0xe8,0x58,0x86,0x70, + 0xd4,0x4c,0xd5,0x7f,0x5c,0xce,0xad,0x59,0x8c,0x3b,0x56,0xed,0x62,0xf1,0x18,0x16,0xa0,0x02,0xca,0x1b, + 0x5c,0x1a,0x52,0xf3,0x3e,0x68,0xdf,0xc2,0x5e,0x81,0xdc,0x86,0x9e,0x70,0x39,0x2e,0x10,0x98,0xfb,0x2e, + 0x30,0xa2,0x3c,0x47,0xcd,0xb1,0xf4,0x9c,0xd0,0x2c,0xb4,0x0e,0x9e,0x4b,0xac,0x2f,0xb2,0xee,0xc1,0x64, + 0x88,0xf8,0xa2,0x3c,0x6e,0x39,0x7c,0x27,0x0a,0x8d,0xdf,0xe0,0x49,0x15,0xcb,0x6e,0xd9,0x36,0xec,0x1c, + 0x5a,0xcf,0x60,0x86,0x80,0x5c,0x6e,0x74,0x18,0x36,0x7e,0xed,0x92,0xab,0xda,0xc9,0x32,0xe8,0xdf,0x26, + 0xd7,0x51,0x1a,0xca,0x2f,0xa1,0xcd,0xd3,0xbd,0xa9,0xb0,0x8a,0xb9,0xc8,0xfa,0x8d,0x82,0x47,0x19,0x67, + 0x00,0x66,0xe0,0x80,0x7f,0x48,0x19,0x05,0x24,0x8e,0xbf,0x86,0x0f,0x49,0x89,0xf7,0xf7,0xb6,0x85,0x12, + 0x97,0xc6,0x2e,0x92,0x72,0x80,0x94,0x65,0xb7,0x60,0x15,0x9a,0x68,0xb1,0xca,0x24,0x9c,0xd7,0xc7,0x5f, + 0x40,0x93,0x73,0x64,0xe8,0x41,0x47,0xe7,0xa2,0xe5,0x54,0x29,0x9d,0x57,0x31,0x44,0x8d,0x81,0xee,0x37, + 0x13,0xdb,0x9a,0x82,0x7f,0xf6,0xf8,0xc5,0x31,0x85,0x2d,0x8a,0xa0,0x3c,0xf2,0xd6,0xeb,0xe1,0xdc,0x37, + 0x36,0xe7,0x45,0xd0,0x08,0xeb,0x8d,0x8e,0xd1,0x9e,0x34,0x90,0x85,0xce,0x75,0xc7,0x6c,0xe5,0xd6,0xee, + 0x43,0x4b,0x74,0xb2,0x24,0x3d,0x2b,0x2e,0x95,0x78,0x18,0xec,0x15,0x0f,0x6c,0xb2,0xc6,0x24,0xe4,0x8b, + 0x27,0x23,0xb3,0x4b,0x32,0x77,0xe2,0x19,0xdd,0x22,0xe3,0x54,0x17,0xe1,0x10,0x4f,0x57,0x90,0x5e,0x54, + 0xc5,0x29,0x54,0x45,0x69,0x70,0xce,0xc1,0x9b,0x5b,0xef,0x66,0xa2,0x9a,0x32,0xf2,0x29,0x5a,0x5e,0x63, + 0x01,0x93,0xd1,0x1a,0x5e,0x5d,0x2e,0x81,0xce,0x32,0x4f,0xf4,0x5d,0x98,0x3e,0x47,0xe2,0x85,0x05,0x2a, + 0x2a,0xed,0xc9,0x29,0x42,0xbd,0x95,0x58,0xdd,0x94,0x48,0xcb,0x75,0x5c,0xca,0x62,0x76,0xa6,0x57,0x77, + 0x6d,0xb6,0x81,0x30,0x0b,0xbd,0x68,0xe6,0x73,0x17,0x96,0x58,0x7b,0x36,0x8b,0x46,0x7d,0xcb,0x00,0x52, + 0x45,0x64,0x0c,0x33,0x14,0xb7,0xc4,0x33,0x63,0x04,0xf0,0x91,0x76,0xa2,0x32,0xf5,0x0e,0x34,0x4b,0xac, + 0xf3,0x85,0x73,0x37,0x73,0x15,0x12,0xc9,0x6c,0x88,0x7a,0x28,0x46,0x80,0xac,0x86,0x05,0x56,0xea,0x39, + 0xee,0x1c,0x29,0x5b,0x2b,0xa1,0xd8,0x74,0xae,0xf1,0xb5,0x40,0x41,0xba,0xd2,0x9c,0xcf,0xd7,0x5b,0x0e, + 0xe9,0x83,0x11,0xb1,0x8a,0xde,0x50,0x73,0xc4,0x3f,0xb8,0xfd,0x89,0x64,0x36,0x9f,0x5d,0x39,0x5e,0xe2, + 0x3e,0x37,0x6c,0x08,0x4f,0x38,0x7f,0x25,0xe0,0x85,0xae,0x03,0xb7,0xa0,0x56,0x42,0x03,0x81,0x15,0xa6, + 0xc2,0x63,0x2a,0xb8,0xdc,0x8e,0x19,0xc8,0x85,0xb3,0xa8,0x1c,0x5c,0xd6,0x24,0xeb,0x50,0xa4,0x24,0xa5, + 0xa9,0x11,0xa5,0xde,0x43,0x5e,0x43,0xfc,0x5e,0x94,0xef,0xd7,0x67,0x63,0x5d,0x54,0x6d,0xfc,0x17,0x55, + 0xb6,0x2e,0xfa,0xf6,0xd1,0xc5,0x45,0x96,0x42,0x07,0xfa,0x19,0xca,0xca,0xa8,0x95,0xf9,0x9d,0x42,0xf4, + 0x75,0x8c,0x07,0xca,0xfd,0x10,0x87,0x2e,0xf6,0xaa,0xa5,0xe2,0x92,0xc9,0x2e,0xa9,0x9e,0xe0,0x97,0x71, + 0xed,0x54,0x17,0x79,0x5f,0x34,0xf8,0x80,0xae,0x39,0xb8,0x8f,0xbe,0xab,0xa5,0x61,0x79,0x90,0xd1,0x87, + 0x99,0x6c,0xba,0x6a,0x17,0xbc,0x4c,0x1f,0x76,0xed,0xb9,0xda,0x9f,0xbc,0xf2,0x74,0xe9,0xb3,0x0a,0xbe, + 0xb0,0xd9,0xb7,0x50,0x9e,0x89,0x45,0x0e,0x5b,0xa5,0xe8,0xc2,0x4a,0x8d,0x2f,0x7d,0x73,0xc6,0x91,0x1e, + 0x85,0xd4,0x6f,0x01,0xb3,0x43,0xd9,0x74,0x2c,0x73,0x6c,0xdb,0xc6,0xe2,0x99,0x6c,0x57,0x45,0x41,0x72, + 0xd1,0x27,0xf7,0xb9,0x53,0x6d,0xda,0xfc,0x01,0x25,0x4f,0x8e,0x5f,0x74,0x7b,0xb9,0x02,0xae,0xe5,0xa5, + 0x76,0x74,0xc2,0xf8,0xb5,0x44,0x1f,0xfd,0x32,0xa1,0xcd,0x8c,0x41,0xd3,0x8a,0xea,0x49,0x4c,0x55,0xa0, + 0x41,0x28,0xc3,0x24,0x34,0x57,0x13,0x72,0x08,0x62,0xe5,0x0d,0xeb,0xa1,0x41,0x62,0x28,0x55,0x63,0xa8, + 0xf8,0x81,0x82,0x7f,0xac,0xa2,0xa4,0xb7,0x89,0x1d,0x2a,0x4e,0x07,0xbd,0x4c,0x84,0x91,0xcc,0x22,0x27, + 0xf8,0xe4,0x08,0x54,0x39,0x68,0x28,0xdc,0x73,0x72,0xbd,0x62,0xe8,0xc3,0xf3,0x17,0x97,0xfc,0x96,0x5a, + 0xe9,0xae,0xbf,0xa5,0x66,0xaa,0xfe,0xe2,0x14,0x4d,0xcd,0x04,0xb7,0xe5,0xad,0x1a,0x5f,0xe8,0x89,0x67, + 0x46,0x17,0x75,0x57,0x50,0xd9,0x52,0x5d,0x2e,0xbe,0xa4,0xb8,0xbe,0x62,0xb8,0xa6,0xf7,0xb2,0xfb,0x46, + 0x0c,0xf7,0x98,0xff,0x8b,0x51,0x3f,0xbb,0xe6,0xd8,0x80,0xd8,0xff,0x01,0xe8,0x09,0xf1,0xde,0x46,0x1b, + 0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index 6598803..ea4b367 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -6,174 +6,176 @@ const uint8_t EmbeddedIndex[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0xe9,0x57,0xe3,0x38,0x12,0xff,0x57,0x4c, 0x66,0x77,0xa0,0xb7,0x9b,0x23,0x90,0x66,0x1a,0x06,0x98,0x09,0x39,0x20,0x40,0x42,0x48,0xc2,0xf9,0x65, - 0x9f,0x62,0x2b,0xb6,0xc0,0xb1,0x8d,0x64,0x27,0xa4,0x67,0xfa,0x7f,0x5f,0x1d,0x3e,0x64,0x5b,0xce,0xc1, - 0xf6,0xbe,0x9e,0x79,0x6f,0xfb,0x43,0x07,0xab,0x0e,0xfd,0x54,0xaa,0x2a,0x95,0x64,0xf9,0x68,0xad,0x7e, - 0x5d,0x1b,0x3c,0x76,0x1b,0x9a,0xe5,0x8f,0xed,0x93,0xa3,0xf0,0x7f,0x08,0x8c,0x93,0xa3,0x31,0xf4,0x81, - 0xa6,0x5b,0x00,0x13,0xe8,0x1f,0x97,0x6e,0x07,0xcd,0xcd,0x2f,0xa5,0x93,0x23,0x1f,0xf9,0x36,0x3c,0x39, - 0xda,0x0e,0x7f,0x39,0x93,0x03,0xc6,0xf0,0xb8,0xe4,0x5b,0x70,0x0c,0x37,0x75,0xd7,0x76,0x71,0x49,0xd3, - 0x5d,0xc7,0x87,0x0e,0x95,0xfb,0x69,0x87,0xff,0x2b,0xa5,0x58,0x27,0x08,0x4e,0x3d,0x17,0xfb,0x12,0xdf, - 0x14,0x19,0xbe,0x75,0x6c,0xc0,0x09,0xd2,0xe1,0x26,0x7f,0xf8,0x84,0x1c,0xe4,0x23,0x60,0x6f,0x12,0x1d, - 0xd8,0xf0,0xb8,0x4c,0x55,0xd8,0xc8,0x79,0xd1,0x30,0xb4,0x8f,0x4b,0xc4,0x9f,0xd9,0x90,0x58,0x10,0x52, - 0x1d,0x16,0x86,0xa3,0xe3,0xd2,0x30,0x70,0x0c,0x1b,0x6e,0xe9,0x84,0x50,0x46,0xa2,0x63,0xe4,0xf9,0x1a, - 0xc1,0x7a,0x4c,0x78,0x66,0xed,0xdb,0x82,0x40,0xff,0x10,0x63,0x1c,0xba,0xc6,0xec,0xe4,0xc8,0x40,0x13, - 0x0d,0x19,0xc7,0x25,0xe0,0x79,0x25,0xf1,0x34,0xd9,0xd4,0x6d,0x17,0xbc,0x88,0x07,0xdd,0x06,0x84,0x1c, - 0x97,0x1c,0xd7,0x47,0x23,0xa4,0x03,0x1f,0xb9,0x4e,0x8d,0xc2,0x06,0xc8,0x81,0xb8,0x54,0xc8,0x52,0xd2, - 0x0e,0xc3,0xd6,0x3f,0x34,0x88,0xb1,0x8b,0x0f,0x35,0x99,0xac,0xad,0x1d,0x6b,0x4e,0x60,0xdb,0xda,0xcf, - 0x3f,0xa7,0xda,0xb7,0x38,0xaf,0xf6,0xad,0x44,0x31,0xa0,0x51,0x5a,0x65,0x24,0x53,0xd2,0x7e,0xd7,0x6d, - 0xa4,0xbf,0x6c,0x79,0x18,0x4e,0xb8,0xf5,0x2c,0x64,0xc0,0x8e,0xdc,0x39,0x35,0x81,0x07,0x9c,0x08,0xd7, - 0x18,0x12,0x02,0x4c,0x58,0x3a,0xf9,0xe3,0x8f,0x74,0x67,0x21,0x41,0xfb,0xf6,0x8d,0x9a,0x86,0x0a,0x50, - 0xc3,0xd0,0xe1,0x44,0xff,0x47,0x76,0xd1,0xd5,0xa3,0x65,0x26,0xe4,0x6d,0x68,0x6c,0x0a,0x53,0x1b,0xc0, - 0x07,0x87,0x68,0x4c,0x35,0x6e,0x7b,0x8e,0xf9,0xeb,0x10,0x10,0xb8,0x5f,0xf9,0x84,0xee,0x4e,0xaf,0x7b, - 0xd3,0x9d,0xcb,0x33,0xd3,0xad,0xd2,0x7f,0x9d,0xfe,0xad,0xd5,0xb8,0x35,0xe9,0x5f,0x75,0xf6,0x58,0x9d, - 0xd6,0xaa,0x8f,0xf4,0xe7,0xf4,0xa1,0x3a,0x19,0x9f,0xb3,0x86,0xb3,0x87,0x5e,0xf3,0xfe,0xbc,0x37,0x18, - 0xee,0x3e,0xed,0x18,0xbb,0xcd,0xd9,0xd3,0xcd,0xe9,0xe9,0xd3,0xd9,0x01,0x7a,0xea,0x9f,0x5e,0x0c,0xef, - 0x9b,0xce,0xd3,0xdd,0x85,0xfd,0x78,0xdf,0xfb,0xac,0xeb,0xb6,0xdd,0x65,0x02,0x0f,0xa7,0x17,0xbd,0x46, - 0xf3,0x16,0x76,0x30,0xb9,0x37,0x1a,0x1d,0xf3,0xb9,0x7a,0x73,0xa5,0x3f,0x9e,0xea,0xd5,0xae,0x5e,0xad, - 0x19,0x37,0x9d,0x4a,0xb5,0xb3,0xdb,0xae,0x55,0xcc,0x1e,0x79,0xbc,0x38,0x68,0x74,0x8c,0x6a,0xf7,0xb1, - 0x5a,0x07,0xd5,0x3a,0xf4,0x8c,0x5b,0xab,0x5d,0x7e,0x6d,0x3e,0x07,0xd8,0xf4,0x0e,0xfa,0x7a,0xfb,0xdc, - 0x34,0x7e,0x29,0xef,0xdd,0xed,0x8d,0xfc,0x5b,0xef,0x33,0x3c,0x37,0xdb,0xcd,0x32,0xc6,0x67,0x0d,0x10, - 0xec,0xdf,0x9d,0xd7,0x77,0xcf,0xdb,0xc3,0xf3,0xcf,0xaf,0x17,0xd7,0x57,0xe7,0x18,0x7c,0x1c,0xbd,0x7c, - 0x1d,0x92,0xc7,0x1e,0xb1,0xda,0x5f,0xbc,0xab,0x81,0x79,0xdb,0x32,0xfb,0xe6,0x24,0x68,0xb7,0xdd,0xc7, - 0xe9,0x47,0xd4,0x7e,0x1c,0xe0,0xfd,0x1b,0xab,0xf3,0xd8,0xc6,0x1d,0xd4,0x99,0x4d,0x5b,0x57,0xf6,0xec, - 0xee,0xd2,0xd0,0x67,0xb3,0x2e,0x19,0xeb,0x3d,0x32,0xbb,0xfd,0xbc,0xf3,0x62,0x9e,0xfb,0x37,0x37,0xc1, - 0x6e,0xd5,0xe8,0x5c,0x34,0xbd,0xfa,0x4b,0xf5,0xb2,0xd2,0xda,0xbe,0x6a,0xdd,0xb7,0x87,0xbb,0x55,0xd2, - 0x3a,0xd5,0x5f,0x77,0x50,0xef,0x0c,0xde,0x9c,0x75,0x07,0x4f,0xa3,0xbb,0xfd,0x9b,0xc6,0xce,0x47,0xb3, - 0x7e,0xd6,0xdc,0xc5,0x2e,0x39,0x6b,0x98,0xed,0x9b,0xb7,0x56,0xd5,0x72,0x9e,0xaa,0xa8,0xdb,0xf9,0x52, - 0x09,0xbc,0xde,0x68,0x67,0xfb,0xda,0xf6,0xc8,0x55,0xed,0xd4,0xdb,0x9b,0xbd,0xee,0xe8,0x96,0xe9,0xd7, - 0x6e,0x6f,0x9f,0x70,0x6f,0xba,0x7f,0x53,0xbf,0xde,0x6b,0xdc,0x9f,0xf7,0x5f,0x9b,0x07,0x3e,0xc0,0x4f, - 0xa0,0x7f,0x79,0xf1,0x00,0x2f,0xea,0xc6,0xf0,0xc6,0x26,0x8d,0x9d,0xcb,0xfa,0xfe,0x45,0x67,0xfb,0xd2, - 0xed,0x91,0x33,0xeb,0xed,0xe1,0xb2,0x66,0xd7,0x2e,0xcf,0x2f,0x5a,0xa3,0x97,0x81,0x35,0x6d,0xdf,0x5b, - 0xd5,0x7d,0xe3,0xb4,0xef,0xda,0x3d,0xf4,0xfc,0x72,0x71,0x6d,0x94,0x9f,0x6e,0x27,0x07,0xb3,0x9b,0x83, - 0x6b,0xef,0x75,0x78,0xee,0x21,0x70,0x7b,0x07,0x1a,0xc3,0xa7,0xc6,0x2f,0x7e,0xab,0xf5,0xec,0x9e,0x5e, - 0x3e,0xcc,0x88,0x4b,0xca,0x7a,0xe5,0xee,0x0b,0x1c,0x5e,0x35,0x8c,0xe1,0x64,0x77,0xa8,0xb7,0x49,0xe3, - 0x17,0xf3,0x39,0x38,0x35,0x26,0x0f,0xbd,0xfe,0x45,0xa5,0xf9,0x71,0x7b,0xfa,0xda,0x7a,0x78,0xc0,0xad, - 0xb3,0xe9,0xf8,0x61,0xef,0xeb,0x14,0xe8,0x57,0x75,0x0b,0x76,0xae,0x0f,0xca,0xd7,0xcf,0x57,0x37,0x97, - 0x46,0xb9,0x72,0xd7,0xae,0xd7,0x9c,0x47,0xb3,0xf6,0x76,0xf7,0xdc,0xda,0xeb,0x0c,0x60,0x79,0xdc,0x77, - 0xbb,0xf5,0xca,0xc1,0x5b,0xa5,0x8f,0xa9,0x73,0x1c,0xbc,0x76,0x9d,0x0a,0x74,0x27,0xb5,0x36,0xf7,0x9e, - 0x86,0xdd,0x1c,0xbc,0xf4,0x83,0x9b,0x71,0xad,0x46,0x3d,0xd1,0x2a,0x33,0x17,0xff,0x87,0xbf,0xb1,0xce, - 0xf3,0xd3,0xfa,0x07,0xee,0xd9,0xb4,0xf5,0xc8,0xda,0x65,0x14,0xe2,0x03,0x3f,0x20,0x5b,0x64,0x46,0x7c, - 0x38,0x6e,0xd5,0x69,0x40,0x85,0x51,0xf8,0x1b,0x17,0x8a,0xda,0xa9,0xdc,0x47,0x6d,0xfd,0x50,0x5b,0xa7, - 0x3f,0x59,0x11,0xda,0xba,0x2e,0xb4,0xee,0xa6,0xa2,0x61,0x4a,0xa3,0x4a,0xf0,0xa6,0xa3,0x84,0x06,0x8f, - 0x03,0xf5,0x30,0x28,0xa5,0x76,0xe4,0x18,0x2c,0x0a,0x59,0xb2,0x3c,0x64,0x71,0xb3,0x29,0x84,0x85,0xa2, - 0xbe,0xe8,0x14,0x78,0x5b,0xd0,0x01,0x43,0x1b,0x1a,0x14,0xe0,0x7a,0xa8,0x09,0x1a,0xeb,0x0c,0x84,0x81, - 0x48,0xd2,0x50,0x0a,0x43,0x36,0x1c,0xbc,0xac,0x42,0xd7,0x69,0x8c,0x7b,0x2e,0x72,0xfc,0xad,0xc4,0x26, - 0x1a,0x65,0x2c,0xea,0x27,0xdd,0x8e,0x3c,0xda,0xd9,0x1c,0x9d,0x14,0x06,0x17,0x0c,0x4d,0x1d,0xe7,0x8d, - 0xf7,0x8e,0xde,0x84,0xfe,0x3d,0x6a,0xf2,0x9e,0xa8,0x90,0xe8,0x70,0xe3,0x43,0xf1,0xf8,0x88,0x60,0x1c, - 0xbb,0x06,0xcc,0x8c,0x4f,0xa5,0x69,0x00,0xdf,0xfc,0x8d,0x77,0x23,0x4d,0x01,0x95,0xed,0x9f,0x81,0x27, - 0x56,0xb1,0x01,0x1a,0x0b,0x30,0x02,0x4b,0x3d,0x6e,0x4c,0xba,0xcf,0x26,0x5b,0x91,0xf2,0xe9,0xca,0x63, - 0x20,0xc7,0x2c,0x45,0x08,0xa2,0xe7,0x48,0x7d,0xf8,0x1c,0x0f,0x34,0x7c,0x6e,0x45,0x40,0xd3,0xc3,0x13, - 0x3a,0xd7,0x42,0x26,0xb6,0xdc,0xd0,0xe5,0x14,0x0d,0xb1,0x58,0x51,0x8e,0xc3,0x00,0x48,0x8f,0x79,0x0a, - 0xb0,0xc3,0x11,0x08,0x61,0x0b,0x90,0x1e,0xa4,0x55,0x40,0x83,0x2d,0x4d,0x94,0xd3,0x8b,0x90,0xf0,0xb5, - 0x6a,0x0b,0xc7,0xb4,0xd0,0x09,0x3c,0xca,0x12,0xa9,0xe2,0xc4,0x1e,0x04,0x84,0xd9,0x35,0x2f,0x26,0x28, - 0x5b,0x52,0xa0,0x49,0xcd,0x92,0x36,0x01,0x84,0xc4,0x73,0xae,0xbf,0x0c,0x30,0xd0,0x61,0x46,0x65,0x42, - 0x48,0x90,0x24,0x36,0x50,0x48,0x1f,0x81,0x08,0xe7,0x30,0xf0,0x7d,0x6a,0x0f,0xf1,0xb3,0xe9,0x61,0xba, - 0x8a,0xe1,0x59,0x54,0x5b,0x6c,0x03,0x0f,0x6d,0x73,0x39,0x9f,0xc9,0x6d,0xd3,0xe9,0x2c,0xec,0xb9,0xee, - 0x4e,0x1d,0x66,0xec,0x10,0x01,0x38,0xd1,0xb2,0x9d,0x44,0xcb,0x37,0xf5,0x21,0x68,0x43,0x1f,0xf6,0x17, - 0x0f,0xa7,0xce,0x19,0x63,0x95,0x39,0xc7,0x89,0xea,0x0f,0x30,0x41,0xa6,0x98,0x58,0x1f,0x0c,0x49,0x7e, - 0x7c,0x72,0x51,0xb2,0x0e,0xa8,0xb7,0x4f,0x20,0x4d,0x73,0xe2,0x8f,0x01,0x18,0x52,0x77,0xd0,0xd6,0x85, - 0x99,0xd6,0x59,0x09,0x12,0xe1,0x94,0x18,0x62,0x7a,0x8c,0x35,0x34,0x2b,0xed,0x70,0x20,0xe5,0x5c,0xf0, - 0xae,0xbe,0x7d,0x8c,0x4c,0x13,0xe2,0x39,0xbd,0xc7,0x1c,0x71,0xff,0x51,0xcb,0xf7,0x41,0x90,0xa4,0x81, - 0x62,0x0c,0x12,0x4f,0x8c,0x22,0x69,0xfb,0x3e,0x38,0xc4,0x7a,0x33,0x67,0x16,0x04,0x3d,0x99,0x05,0xfe, - 0xac,0xe8,0x3b,0x9b,0x09,0x94,0x93,0xcd,0x96,0xce,0xbd,0xec,0x84,0xca,0x2b,0xe8,0x1e,0x57,0x71,0x72, - 0x84,0x69,0x16,0x71,0xb5,0x43,0x4e,0x3b,0x2e,0x49,0xdc,0xc0,0xb6,0xfb,0x3e,0xf4,0xc8,0x00,0x07,0x54, - 0x88,0x65,0x0e,0x96,0x92,0x69,0xa5,0x1e,0x11,0xe8,0xa0,0x59,0x2d,0xe9,0x53,0x3a,0x4b,0x97,0x5c,0x91, - 0x84,0x6e,0x09,0xd5,0x4d,0x60,0x93,0xb9,0xba,0x47,0x8c,0x41,0xa5,0x3c,0x32,0x3f,0xb1,0x69,0x9d,0x8c, - 0x33,0x0b,0x34,0xb5,0x9b,0x17,0x65,0xba,0x58,0x61,0xba,0x7e,0x9e,0x00,0x3b,0x10,0xc1,0xd9,0x06,0xbe, - 0xb5,0x35,0xb2,0x5d,0x17,0x6f,0x44,0xbc,0x77,0x8c,0xa8,0x6d,0x6b,0xbb,0x9f,0x3f,0x6b,0xff,0xd2,0xca, - 0x3b,0x3b,0xcc,0x64,0xff,0x8c,0xea,0xe9,0x5c,0xef,0x72,0x31,0x8d,0x1c,0x2f,0xf0,0x35,0x7f,0xe6,0xd1, - 0x01,0x63,0xe0,0xd0,0x0a,0x5d,0x1b,0x23,0xe7,0xb8,0xb4,0x43,0x7f,0xc1,0xdb,0x71,0x89,0xaa,0x2c,0xa5, - 0xa5,0xe3,0xc1,0x6f,0x39,0xc1,0x78,0x08,0x71,0x02,0xf9,0x4e,0x60,0x2c,0x4a,0x0d,0xf2,0x28,0xd7,0x12, - 0xbb,0x4d,0x36,0x47,0x2e,0x55,0xb2,0xc1,0xc8,0x9f,0x34,0xba,0xd6,0xc1,0xb7,0x0f,0xf4,0x47,0x23,0xcb, - 0x5a,0x81,0x31,0x6e,0x4d,0x7e,0xac,0x09,0x12,0x0c,0x99,0xf1,0xab,0xd7,0xd7,0x82,0x94,0x43,0x65,0xa9, - 0x2d,0xc6,0xda,0xef,0x24,0x18,0x8e,0x91,0x9f,0x6c,0xae,0xe8,0xb6,0xd0,0x9e,0xb1,0x85,0x7b,0x10,0xb2, - 0xa6,0xa2,0x25,0x49,0x3f,0x8c,0x23,0x13,0x33,0xba,0x05,0xf5,0x97,0x18,0xef,0xd0,0x75,0x6d,0x08,0x1c, - 0x16,0x04,0x92,0x4c,0x54,0x7a,0x95,0x52,0xbe,0x9f,0x62,0x69,0x38,0x61,0x8d,0xc5,0xc6,0xc7,0x75,0xca, - 0xe3,0x51,0x6b,0x9b,0xb7,0xa0,0xaf,0xe5,0x0b,0xa8,0xb8,0x00,0xfc,0xf3,0x4f,0x4d,0x41,0x15,0xa1,0xc8, - 0x36,0xa0,0x7b,0x8a,0xc4,0x4b,0xfb,0x6d,0xd1,0x7d,0x3c,0x76,0xa0,0x2f,0xd7,0x81,0x36,0x18,0x42,0x5b, - 0xe3,0x0e,0xc6,0x8d,0x43,0xe7,0x97,0x20,0xa6,0x8e,0x19,0x53,0xad,0x26,0xcd,0x13,0x2a,0xe3,0x7a,0xd2, - 0xae,0x22,0xa6,0xbe,0xc4,0xb7,0xa7,0x0a,0xdd,0x39,0x17,0x49,0xdb,0xc8,0xcf,0x20,0x39,0xb2,0x2a,0x27, - 0x3d,0x68,0x42,0x9b,0xd0,0x69,0xab,0x14,0xdb,0x36,0x7e,0xb2,0xa1,0x63,0xfa,0x56,0x7c,0x58,0x20,0x62, - 0x28,0xa4,0xca,0x61,0xa4,0x16,0x8f,0x1d,0x9a,0x86,0x07,0xb4,0xe5,0xd5,0x40,0xb8,0xe6,0x61,0x24,0x17, - 0x4f,0xca,0xb7,0xf4,0x74,0x72,0xb9,0xcd,0x78,0xff,0x3d,0xdf,0xcb,0x96,0xf0,0xaf,0xd0,0xb1,0x55,0x6e, - 0x26,0x27,0x00,0xc0,0xd7,0x37,0x51,0x56,0x88,0xc2,0xe8,0xa7,0xfc,0x51,0x84,0xa8,0x69,0xa4,0x70,0xd9, - 0x10,0xe6,0x50,0xcf,0x77,0xae,0xb0,0xc9,0xa5,0x0c,0x9d,0x0e,0x06,0x17,0xe7,0x35,0x61,0x0a,0x76,0x8e, - 0xc3,0xb2,0x15,0xd5,0xa6,0xfb,0x45,0x93,0x1f,0xd9,0x7f,0x40,0x3d,0xa8,0x94,0x94,0xf7,0x36,0xcd,0x44, - 0x54,0xd6,0xf5,0x78,0xdd,0xc4,0xd3,0x08,0x4b,0x3f,0x4a,0xb8,0x4d,0xf4,0x06,0x0d,0xc9,0x33,0x85,0x50, - 0x56,0xb8,0xac,0x16,0xee,0x07,0x0e,0x46,0x64,0xbe,0xe8,0x6e,0xa1,0x28,0x89,0x63,0x2b,0x92,0xdc,0x16, - 0xc3,0x5d,0x38,0xec,0x51,0x04,0x3a,0x3b,0xe8,0xb4,0x8f,0xcb,0xe6,0x61,0x99,0x71,0x47,0x32,0xca,0x66, - 0x1c,0xc4,0xcc,0xab,0x63,0x85,0x6c,0xe1,0x0d,0x81,0xfb,0x51,0x48,0xb3,0xad,0x0e,0x22,0x9e,0x0d,0x78, - 0xca,0xdc,0x60,0xed,0x9f,0x34,0xbe,0x32,0xbf,0x0f,0x3d,0x86,0x36,0xe0,0xf9,0x5a,0x3d,0x00,0x1a,0xb3, - 0xb0,0x08,0xa7,0x2c,0xba,0x34,0x54,0x56,0xa0,0x14,0x20,0x95,0x13,0x2a,0x84,0x2f,0x06,0x98,0x91,0xc5, - 0xd1,0x37,0x76,0x1d,0xca,0x38,0x27,0xf8,0xda,0x9c,0x21,0x15,0x74,0x0b,0x54,0xfa,0x01,0x24,0xf3,0x75, - 0x0e,0x04,0xc7,0x2a,0x4a,0xa7,0xd0,0x70,0x16,0xa9,0xbd,0x8f,0x78,0x56,0x42,0x6b,0x05,0x78,0x11,0xdc, - 0x90,0x65,0x15,0xb5,0x23,0x8c,0xe6,0x2b,0x6d,0x72,0x86,0x55,0x54,0x12,0xba,0xc6,0xe1,0xf9,0x4a,0xfb, - 0x21,0xcb,0x4a,0x6a,0x83,0x05,0x1e,0xd0,0x0f,0x72,0x1e,0xa0,0xae,0xdf,0x96,0xa8,0xc7,0xa2,0x4e,0x87, - 0xf4,0xd7,0xf2,0xe9,0x6c,0x91,0x1f,0x57,0x97,0xe5,0xb1,0xcc,0xa9,0xcf,0xe4,0x2a,0x8d,0x05,0x75,0x72, - 0xa6,0xce,0x8e,0x5d,0xd4,0x69,0xb1,0xe3,0xd6,0x29,0xad,0xe0,0xe8,0x49,0xec,0xb5,0x58,0x97,0xe1,0xde, - 0xfe,0x30,0x3a,0xab,0xa2,0x88,0xe9,0x46,0x99,0x95,0x43,0xd9,0xc5,0x0b,0x18,0x86,0xb4,0x72,0xa9,0x3b, - 0xad,0x1a,0xd1,0xde,0x5e,0xe8,0x2d,0x5c,0x9a,0x12,0x00,0xb2,0x31,0x45,0x75,0x59,0x52,0xa1,0x89,0x12, - 0x94,0x78,0x0e,0xcf,0x24,0x79,0xf5,0x79,0xca,0x55,0xf5,0x79,0x3b,0xed,0xfc,0x30,0x4b,0x59,0xff,0x90, - 0x58,0x96,0x15,0xb1,0x73,0x4b,0xd9,0xb6,0xcb,0x2b,0x9f,0xb9,0xc5,0xec,0x58,0xf0,0xac,0x58,0xce,0x0a, - 0xa9,0x05,0x05,0x87,0x60,0x5a,0xb2,0xa4,0xcd,0x68,0x5c,0x15,0x42,0x3d,0xc0,0xd4,0x62,0xf2,0x94,0x2e, - 0x81,0x29,0x27,0x94,0x02,0x29,0x15,0xb5,0xa1,0x91,0x16,0x94,0xb5,0x2a,0xae,0xe5,0x0a,0x5b,0xa5,0xfe, - 0xe2,0xd2,0x36,0x1c,0xfa,0x3b,0x8a,0xdb,0x58,0xf2,0xbd,0xe5,0x6d,0x46,0xc1,0x5f,0xaa,0xc0,0x1d,0xcb, - 0xee,0xfe,0x1d,0x4b,0xdc,0x54,0x18,0x15,0x16,0xb9,0xa2,0xf7,0xef,0x5b,0xe6,0x0a,0x17,0x3c,0xe4,0xd3, - 0xb2,0x2e,0x3a,0x60,0x07,0xa8,0x1c,0x02,0x7b,0x71,0xf1,0x6f,0x0f,0x39,0x8a,0xf3,0x31,0xc1,0xd9,0xa5, - 0xb4,0x85,0xde,0xc7,0x8f,0x53,0x8a,0x55,0x17,0x66,0x7a,0x4a,0x5d,0x06,0x9f,0x81,0x70,0xf6,0xfc,0x2c, - 0x6b,0xb0,0x98,0x23,0x85,0x35,0xac,0x15,0x8b,0xe1,0x49,0x9a,0x0b,0x41,0xc6,0x3c,0xb9,0xaa,0x5f,0x51, - 0xb8,0x67,0xe0,0x74,0xa4,0xbf,0x81,0xbd,0x6a,0x29,0x9f,0x51,0x36,0x70,0x3d,0x76,0x5a,0x3c,0x57,0x8b, - 0x62,0xbb,0x9d,0xd1,0x72,0xea,0xd2,0x15,0x60,0x7c,0xeb,0x15,0xed,0x0e,0xfe,0x5f,0x44,0x14,0x17,0x11, - 0xc2,0x94,0xff,0x8b,0x32,0x22,0x95,0x1d,0x8a,0x3a,0xfe,0x7b,0x94,0x12,0xf3,0xcf,0xcf,0x52,0x87,0xe1, - 0xf3,0xca,0x8e,0x9a,0xfc,0x82,0x2d,0x29,0x39,0xe4,0x83,0xf3,0xe5,0xca,0x0d,0x49,0x42,0x7a,0x13,0x99, - 0xce,0xfe,0x6a,0x9e,0xc2,0xb4,0x6f,0x31,0x05,0x0a,0x44,0x92,0xec,0x39,0x97,0x97,0x6e,0x4a,0x2c,0x46, - 0x17,0x1e,0x9e,0x15,0x22,0x93,0xde,0x5d,0xae,0x8c,0x4c,0x92,0xcd,0x21,0x93,0x4a,0x14,0x42,0x90,0xa1, - 0x14,0xa7,0xed,0xc5,0xcb,0x80,0x0f,0xdf,0x7c,0x51,0x82,0x70,0xf9,0xe4,0xc0,0x3d,0xa3,0x21,0xe5,0x7a, - 0x6b,0x8a,0x91,0xa7,0xb0,0x78,0x74,0x40,0x53,0x17,0x2b,0xf1,0x44,0xb4,0x62,0x4c,0xb1,0x34,0xc7,0x95, - 0x3c,0xa9,0xb0,0x25,0xd4,0x85,0xf8,0x16,0xcf,0xa2,0x61,0xe9,0xde,0x42,0x45,0x45,0x53,0xcc,0x84,0xd9, - 0x2b,0x8b,0x70,0x36,0x59,0x78,0x6c,0xb2,0x0c,0x89,0x5d,0x7b,0xc5,0x09,0x67,0x9a,0x72,0x33,0x2d,0x67, - 0xdf,0x60,0x28,0x52,0x3f,0x49,0x5b,0x1d,0x79,0x2a,0x6d,0xc8,0xa3,0x39,0x0a,0x53,0xdf,0x5e,0xc6,0x09, - 0x90,0xa7,0x36,0x33,0x5a,0x68,0x17,0x76,0x9a,0x9c,0x35,0x65,0xda,0x3f,0x83,0xa1,0x03,0xfd,0x31,0x20, - 0x2f,0x4a,0x2f,0x8d,0xa9,0x4b,0xf9,0x6a,0xa2,0x4b,0xed,0xb1,0x12,0xfd,0xbf,0x84,0x6d,0x02,0x1f,0x4e, - 0xe9,0x9e,0x5e,0x81,0x39,0x24,0x2d,0x03,0x38,0xd2,0xa2,0x44,0x1b,0x13,0xdf,0x03,0x35,0x77,0xfe,0x6e, - 0xb9,0xc4,0x67,0x77,0xef,0x54,0x88,0x23,0xda,0x22,0xc8,0x87,0x9e,0x0d,0x74,0x68,0xb9,0xb6,0xc1,0xd6, - 0xe5,0x02,0x25,0xdd,0x84,0x87,0xf9,0x3d,0x1b,0x66,0xdc,0xb7,0x72,0x9c,0x09,0x75,0x61,0xac,0xfe,0x3d, - 0x16,0xc4,0xf8,0xcd,0x6c,0xc1,0x62,0x18,0x78,0xec,0x7a,0x40,0x13,0xe1,0xf1,0x14,0x60,0x98,0x7e,0xf3, - 0x2a,0x5e,0xe2,0x8e,0x42,0x5a,0x76,0xfb,0x2d,0x0f,0x75,0x84,0x6c,0x28,0xcc,0x1b,0x71,0x37,0x59,0xcb, - 0x5f,0xc0,0x48,0x89,0x5d,0xc4,0x48,0xbb,0xd8,0x35,0x59,0xa6,0xe1,0x97,0xad,0xc2,0x57,0xb4,0x74,0xbc, - 0x19,0x22,0x2f,0x29,0x65,0x23,0xe7,0xac,0x12,0x5d,0x5b,0xc9,0x99,0xa5,0x30,0x7b,0x66,0x05,0xe7,0xa5, - 0xcf,0xc4,0x56,0x8b,0xae,0x84,0x64,0x8b,0x3d,0xea,0x9f,0xd8,0xaf,0x25,0x77,0x6a,0x0a,0xbb,0x8f,0x2c, - 0x95,0x7e,0x33,0x3f,0xa7,0x62,0xea,0x73,0x05,0x2a,0x0f,0x71,0x7c,0x2f,0x6b,0x85,0x1f,0xfe,0xb6,0x4f, - 0xbe,0x19,0xea,0x62,0xf4,0x95,0xed,0x03,0xec,0x74,0xda,0xa4,0xb0,0xfb,0x10,0x4f,0xa4,0x82,0x38,0x19, - 0x8f,0x20,0x2c,0x93,0x36,0x13,0x2d,0x49,0x42,0xc9,0xea,0x29,0x29,0x8a,0xe8,0x39,0xa8,0xf8,0x78,0x26, - 0x8c,0x90,0xc3,0x15,0x91,0x96,0x3b,0xb2,0x91,0x75,0xa9,0xd0,0x25,0x1d,0x2d,0x8f,0xcf,0x06,0x39,0x97, - 0xa6,0x9a,0xae,0x80,0xbf,0x8c,0xb1,0x98,0x70,0x0e,0x08,0xd7,0xb8,0x02,0x00,0xe9,0xf2,0x99,0x04,0x20, - 0xbc,0x82,0xb6,0x08,0x80,0x70,0xc4,0x0c,0x00,0xa6,0x51,0x71,0xc8,0x5d,0x50,0xc3,0xd8,0x6e,0x74,0xa7, - 0x3a,0xba,0x12,0xc7,0x68,0x9b,0xd1,0xbb,0xbb,0x3c,0xb4,0x90,0x7f,0x29,0x7c,0xb1,0xee,0x18,0x64,0xdc, - 0x74,0xa2,0x45,0x9b,0xbe,0x5c,0xd0,0x43,0x80,0x75,0xeb,0x2a,0x96,0x95,0x93,0x29,0x27,0xd1,0xf8,0x8b, - 0xa9,0xc5,0x00,0xfb,0x9c,0x57,0xb9,0x07,0xcc,0xc5,0xbc,0x87,0x1c,0x32,0x27,0xe8,0x8b,0x26,0x8f,0x8a, - 0x5d,0x35,0xea,0xd5,0x6e,0x16,0x45,0xd4,0xbe,0x9c,0x5f,0xc7,0x5a,0xf2,0x97,0x2f,0x12,0x74,0x5b,0x74, - 0xfc,0xac,0xa3,0xe5,0x3d,0x4b,0xa8,0xed,0x0f,0xaa,0x6a,0x74,0x94,0xb0,0x0a,0x3c,0xa6,0x67,0x11,0x3e, - 0xde,0xd7,0x4a,0x00,0xab,0x5d,0x91,0xb8,0x15,0x10,0x23,0xd2,0xd2,0x20,0x63,0x5d,0x73,0x61,0x02,0x2f, - 0xea,0x71,0x25,0xa0,0xdd,0xfb,0x76,0x1d,0xd3,0x42,0x04,0xf7,0xeb,0x2a,0x7b,0xca,0xe4,0xa5,0x01,0xa7, - 0x74,0xce,0x05,0xed,0x4d,0xc7,0xbc,0xdf,0x77,0x42,0xae,0x5d,0xcd,0x85,0x5c,0xbb,0x7a,0x07,0x64,0xaa, - 0x73,0x21,0x64,0xd6,0xef,0x0a,0x90,0xa7,0xe3,0xaa,0xd8,0x37,0xe5,0xd0,0xc6,0x94,0x25,0x81,0x26,0x9a, - 0x0a,0x31,0x4a,0x9d,0xad,0x04,0xb1,0x89,0xe1,0x6b,0x00,0x1d,0x7d,0xa6,0x00,0x19,0xd3,0x96,0x86,0x99, - 0x68,0x9b,0x03,0x54,0xea,0xb2,0x28,0x7f,0x8d,0x81,0x97,0xcb,0x5f,0xf2,0xcb,0x14,0x4a,0xae,0x76,0x5b, - 0x97,0x30,0x87,0x3a,0xa1,0x2c,0x93,0xcf,0x25,0x3d,0x45,0x78,0xe5,0xae,0xb4,0x85,0xe5,0x63,0xc2,0x6d, - 0x2d,0x55,0x3f,0xfe,0xb0,0x0d,0xc9,0xb2,0x77,0xbe,0xd7,0x94,0x77,0xbe,0x93,0xbb,0xc3,0xaa,0x6b,0xc3, - 0xf9,0xa2,0xd7,0xf5,0x52,0x35,0xef,0xcf,0x36,0x78,0x0d,0xdc,0x5f,0xb5,0x68,0x7b,0x99,0xd0,0xb6,0x86, - 0x40,0x7f,0x51,0xd7,0xbe,0xd2,0x29,0xa0,0xc4,0xaf,0xb8,0x78,0xba,0xc8,0xe9,0xd9,0xc1,0x76,0xcd,0x0d, - 0xe4,0x93,0x13,0x49,0xa1,0xce,0x28,0xcb,0xf9,0x7b,0xa2,0x28,0xe7,0x3c,0x39,0x8d,0xe1,0x61,0x76,0x39, - 0x3c,0xcc,0x2e,0xef,0xa7,0xe6,0x59,0x66,0x9f,0xa2,0xaf,0x00,0x1b,0xec,0xca,0xa5,0x76,0x72,0xac,0x95, - 0x15,0x5b,0xa5,0xf9,0xdc,0x56,0x45,0x35,0xac,0xd4,0xcd,0xcf,0xc8,0x5e,0x95,0x1f,0x76,0xe5,0xb4,0xe8, - 0x24,0x4d,0x42,0x1c,0x10,0x58,0x0b,0x68,0x79,0x9e,0x39,0x2e,0x53,0x70,0x2c,0x3e,0x33,0x53,0xdb,0x84, - 0x0f,0x89,0xa8,0x8d,0x11,0x0e,0xb7,0xe8,0xca,0x6b,0x5e,0x4d,0x89,0x5d,0x4a,0xa6,0x7f,0x48,0xe5,0xab, - 0x78,0x81,0xb2,0xcd,0x9b,0x97,0x38,0xad,0x5f,0x75,0x2f,0xe9,0xd0,0x34,0x26,0x85,0x55,0x9f,0x77,0x27, - 0x86,0x69,0x01,0xd2,0xc9,0x53,0x37,0x3e,0xf0,0x2f,0x83,0x24,0xe8,0x4c,0x45,0x18,0x6d,0xec,0x33,0xa1, - 0x94,0xc3,0xc8,0x39,0x64,0xc1,0xa7,0x04,0xfc,0x7d,0xe4,0x08,0xbd,0x15,0xbf,0x92,0xa4,0x2b,0x2c,0x91, - 0xab,0x5b,0xdd,0xf5,0x66,0xfc,0x1d,0x8d,0xd0,0x3d,0xc4,0xd2,0x07,0x57,0x21,0x6f,0xf6,0x7b,0xab,0xe8, - 0xe8,0xe2,0x4e,0x90,0xf9,0x67,0x57,0x19,0x89,0xf8,0x73,0xab,0xdc,0x5b,0x9e,0xf0,0x1b,0x4f,0x9b,0x4e, - 0x45,0x00,0x4c,0xea,0x4b,0xcf,0x60,0x02,0x44,0x63,0xe9,0x84,0x6f,0xca,0xab,0x1e,0xb5,0x8f,0xf4,0xcd, - 0xa7,0xf8,0xda,0x73,0x9b,0x7f,0xe4,0xfa,0x1f,0x6e,0xdd,0xfc,0xe9,0xfa,0x3a,0x00,0x00}; + 0x9f,0x62,0x2b,0xb1,0xc0,0xb1,0x8d,0x64,0x27,0xa4,0x67,0xfa,0x7f,0x5f,0x1d,0x3e,0x64,0x5b,0x4e,0x1c, + 0xb6,0xf7,0xf5,0xcc,0x7b,0xdb,0x1f,0x3a,0x58,0x75,0xe8,0xa7,0x52,0x55,0xa9,0x24,0xcb,0x47,0x6b,0xf5, + 0xeb,0xda,0xe0,0xb1,0xdb,0xd0,0x4c,0x6f,0x62,0x9d,0x1c,0x05,0xff,0x43,0x60,0x9c,0x1c,0x4d,0xa0,0x07, + 0x34,0xdd,0x04,0x98,0x40,0xef,0xb8,0x74,0x3b,0x68,0x6e,0x7e,0x29,0x9d,0x1c,0x79,0xc8,0xb3,0xe0,0xc9, + 0xd1,0x76,0xf0,0xcb,0x99,0x6c,0x30,0x81,0xc7,0x25,0xcf,0x84,0x13,0xb8,0xa9,0x3b,0x96,0x83,0x4b,0x9a, + 0xee,0xd8,0x1e,0xb4,0xa9,0xdc,0x4f,0x3b,0xfc,0x5f,0x29,0xc1,0x3a,0x45,0x70,0xe6,0x3a,0xd8,0x93,0xf8, + 0x66,0xc8,0xf0,0xcc,0x63,0x03,0x4e,0x91,0x0e,0x37,0xf9,0xc3,0x27,0x64,0x23,0x0f,0x01,0x6b,0x93,0xe8, + 0xc0,0x82,0xc7,0x65,0xaa,0xc2,0x42,0xf6,0x8b,0x86,0xa1,0x75,0x5c,0x22,0xde,0xdc,0x82,0xc4,0x84,0x90, + 0xea,0x30,0x31,0x1c,0x1d,0x97,0x86,0xbe,0x6d,0x58,0x70,0x4b,0x27,0x84,0x32,0x12,0x1d,0x23,0xd7,0xd3, + 0x08,0xd6,0x23,0xc2,0x33,0x6b,0xdf,0x16,0x04,0xfa,0x87,0x18,0xe3,0xd0,0x31,0xe6,0x27,0x47,0x06,0x9a, + 0x6a,0xc8,0x38,0x2e,0x01,0xd7,0x2d,0x89,0xa7,0xe9,0xa6,0x6e,0x39,0xe0,0x45,0x3c,0xe8,0x16,0x20,0xe4, + 0xb8,0x64,0x3b,0x1e,0x1a,0x21,0x1d,0x78,0xc8,0xb1,0x6b,0x14,0x36,0x40,0x36,0xc4,0xa5,0x5c,0x96,0x92, + 0x76,0x18,0xb4,0xfe,0xa1,0x41,0x8c,0x1d,0x7c,0xa8,0xc9,0x64,0x6d,0xed,0x58,0xb3,0x7d,0xcb,0xd2,0x7e, + 0xfe,0x39,0xd1,0xbe,0xc5,0x79,0xb5,0x6f,0x25,0x8a,0x01,0x8d,0x92,0x2a,0x43,0x99,0x92,0xf6,0xbb,0x6e, + 0x21,0xfd,0x65,0xcb,0xc5,0x70,0xca,0xad,0x67,0x22,0x03,0x76,0xe4,0xce,0xa9,0x09,0x5c,0x60,0x87,0xb8, + 0x26,0x90,0x10,0x30,0x86,0xa5,0x93,0x3f,0xfe,0x48,0x76,0x16,0x10,0xb4,0x6f,0xdf,0xa8,0x69,0xa8,0x00, + 0x35,0x0c,0x1d,0x4e,0xf8,0x7f,0x68,0x17,0x5d,0x3d,0x5a,0x66,0x42,0xde,0x86,0x26,0x63,0x61,0x6a,0x03, + 0x78,0xe0,0x10,0x4d,0xa8,0xc6,0x6d,0xd7,0x1e,0xff,0x3a,0x04,0x04,0xee,0x57,0x3e,0xa1,0xbb,0xd3,0xeb, + 0xde,0x6c,0xe7,0xf2,0x6c,0xec,0x54,0xe9,0xbf,0x4e,0xff,0xd6,0x6c,0xdc,0x8e,0xe9,0x5f,0x75,0xf6,0x58, + 0x9d,0xd5,0xaa,0x8f,0xf4,0xe7,0xf4,0xa1,0x3a,0x9d,0x9c,0xb3,0x86,0xb3,0x87,0x5e,0xf3,0xfe,0xbc,0x37, + 0x18,0xee,0x3e,0xed,0x18,0xbb,0xcd,0xf9,0xd3,0xcd,0xe9,0xe9,0xd3,0xd9,0x01,0x7a,0xea,0x9f,0x5e,0x0c, + 0xef,0x9b,0xf6,0xd3,0xdd,0x85,0xf5,0x78,0xdf,0xfb,0xac,0xeb,0x96,0xd5,0x65,0x02,0x0f,0xa7,0x17,0xbd, + 0x46,0xf3,0x16,0x76,0x30,0xb9,0x37,0x1a,0x9d,0xf1,0x73,0xf5,0xe6,0x4a,0x7f,0x3c,0xd5,0xab,0x5d,0xbd, + 0x5a,0x33,0x6e,0x3a,0x95,0x6a,0x67,0xb7,0x5d,0xab,0x8c,0x7b,0xe4,0xf1,0xe2,0xa0,0xd1,0x31,0xaa,0xdd, + 0xc7,0x6a,0x1d,0x54,0xeb,0xd0,0x35,0x6e,0xcd,0x76,0xf9,0xb5,0xf9,0xec,0xe3,0xb1,0x7b,0xd0,0xd7,0xdb, + 0xe7,0x63,0xe3,0x97,0xf2,0xde,0xdd,0xde,0xc8,0xbb,0x75,0x3f,0xc3,0xf3,0x71,0xbb,0x59,0xc6,0xf8,0xac, + 0x01,0xfc,0xfd,0xbb,0xf3,0xfa,0xee,0x79,0x7b,0x78,0xfe,0xf9,0xf5,0xe2,0xfa,0xea,0x1c,0x83,0x8f,0xa3, + 0x97,0xaf,0x43,0xf2,0xd8,0x23,0x66,0xfb,0x8b,0x7b,0x35,0x18,0xdf,0xb6,0xc6,0xfd,0xf1,0xd4,0x6f,0xb7, + 0x9d,0xc7,0xd9,0x47,0xd4,0x7e,0x1c,0xe0,0xfd,0x1b,0xb3,0xf3,0xd8,0xc6,0x1d,0xd4,0x99,0xcf,0x5a,0x57, + 0xd6,0xfc,0xee,0xd2,0xd0,0xe7,0xf3,0x2e,0x99,0xe8,0x3d,0x32,0xbf,0xfd,0xbc,0xf3,0x32,0x3e,0xf7,0x6e, + 0x6e,0xfc,0xdd,0xaa,0xd1,0xb9,0x68,0xba,0xf5,0x97,0xea,0x65,0xa5,0xb5,0x7d,0xd5,0xba,0x6f,0x0f,0x77, + 0xab,0xa4,0x75,0xaa,0xbf,0xee,0xa0,0xde,0x19,0xbc,0x39,0xeb,0x0e,0x9e,0x46,0x77,0xfb,0x37,0x8d,0x9d, + 0x8f,0xe3,0xfa,0x59,0x73,0x17,0x3b,0xe4,0xac,0x31,0x6e,0xdf,0xbc,0xb5,0xaa,0xa6,0xfd,0x54,0x45,0xdd, + 0xce,0x97,0x8a,0xef,0xf6,0x46,0x3b,0xdb,0xd7,0x96,0x4b,0xae,0x6a,0xa7,0xee,0xde,0xfc,0x75,0x47,0x37, + 0xc7,0x5e,0xed,0xf6,0xf6,0x09,0xf7,0x66,0xfb,0x37,0xf5,0xeb,0xbd,0xc6,0xfd,0x79,0xff,0xb5,0x79,0xe0, + 0x01,0xfc,0x04,0xfa,0x97,0x17,0x0f,0xf0,0xa2,0x6e,0x0c,0x6f,0x2c,0xd2,0xd8,0xb9,0xac,0xef,0x5f,0x74, + 0xb6,0x2f,0x9d,0x1e,0x39,0x33,0xdf,0x1e,0x2e,0x6b,0x56,0xed,0xf2,0xfc,0xa2,0x35,0x7a,0x19,0x98,0xb3, + 0xf6,0xbd,0x59,0xdd,0x37,0x4e,0xfb,0x8e,0xd5,0x43,0xcf,0x2f,0x17,0xd7,0x46,0xf9,0xe9,0x76,0x7a,0x30, + 0xbf,0x39,0xb8,0x76,0x5f,0x87,0xe7,0x2e,0x02,0xb7,0x77,0xa0,0x31,0x7c,0x6a,0xfc,0xe2,0xb5,0x5a,0xcf, + 0xce,0xe9,0xe5,0xc3,0x9c,0x38,0xa4,0xac,0x57,0xee,0xbe,0xc0,0xe1,0x55,0xc3,0x18,0x4e,0x77,0x87,0x7a, + 0x9b,0x34,0x7e,0x19,0x3f,0xfb,0xa7,0xc6,0xf4,0xa1,0xd7,0xbf,0xa8,0x34,0x3f,0x6e,0xcf,0x5e,0x5b,0x0f, + 0x0f,0xb8,0x75,0x36,0x9b,0x3c,0xec,0x7d,0x9d,0x01,0xfd,0xaa,0x6e,0xc2,0xce,0xf5,0x41,0xf9,0xfa,0xf9, + 0xea,0xe6,0xd2,0x28,0x57,0xee,0xda,0xf5,0x9a,0xfd,0x38,0xae,0xbd,0xdd,0x3d,0xb7,0xf6,0x3a,0x03,0x58, + 0x9e,0xf4,0x9d,0x6e,0xbd,0x72,0xf0,0x56,0xe9,0x63,0xea,0x1c,0x07,0xaf,0x5d,0xbb,0x02,0x9d,0x69,0xad, + 0xcd,0xbd,0xa7,0x61,0x35,0x07,0x2f,0x7d,0xff,0x66,0x52,0xab,0x51,0x4f,0x34,0xcb,0xcc,0xc5,0xff,0xe1, + 0x6d,0xac,0xf3,0xfc,0xb4,0xfe,0x81,0x7b,0x36,0x6d,0x3d,0x32,0x77,0x19,0x85,0x78,0xc0,0xf3,0xc9,0x16, + 0x99,0x13,0x0f,0x4e,0x5a,0x75,0x1a,0x50,0x41,0x14,0xfe,0xc6,0x85,0xc2,0x76,0x2a,0xf7,0x51,0x5b,0x3f, + 0xd4,0xd6,0xe9,0x4f,0x5a,0x84,0xb6,0xae,0x0b,0xad,0xbb,0x89,0x68,0x98,0xd1,0xa8,0x12,0xbc,0xc9,0x28, + 0xa1,0xc1,0x63,0x43,0x3d,0x08,0x4a,0xa9,0x1d,0xd9,0x06,0x8b,0x42,0x96,0x2c,0x0f,0x59,0xdc,0x6c,0x0a, + 0x61,0xa1,0xa8,0x2f,0x3a,0x05,0xee,0x16,0xb4,0xc1,0xd0,0x82,0x06,0x05,0xb8,0x1e,0x68,0x82,0xc6,0x3a, + 0x03,0x61,0x20,0x12,0x37,0x94,0x82,0x90,0x0d,0x06,0x2f,0xab,0xd0,0x75,0x1a,0xe3,0xae,0x83,0x6c,0x6f, + 0x2b,0xb6,0x89,0x46,0x19,0xf3,0xfa,0x49,0xb6,0x23,0x97,0x76,0xb6,0x40,0x27,0x85,0xc1,0x05,0x03,0x53, + 0x47,0x79,0xe3,0xbd,0xa3,0x1f,0x43,0xef,0x1e,0x35,0x79,0x4f,0x54,0x48,0x74,0xb8,0xf1,0x21,0x7f,0x7c, + 0x44,0x30,0x4e,0x1c,0x03,0xa6,0xc6,0xa7,0xd2,0x34,0x80,0x6f,0xde,0xc6,0xbb,0x91,0x26,0x80,0xca,0xf6, + 0x4f,0xc1,0x13,0xab,0xd8,0x00,0x4d,0x04,0x18,0x81,0xa5,0x1e,0x35,0xc6,0xdd,0xa7,0x93,0xad,0x48,0xf9, + 0x74,0xe5,0x31,0x90,0x3d,0x2e,0x85,0x08,0xc2,0xe7,0x50,0x7d,0xf0,0x1c,0x0d,0x34,0x78,0x6e,0x85,0x40, + 0x93,0xc3,0x13,0x3a,0xd7,0x02,0x26,0xb6,0xdc,0xd0,0xe5,0x14,0x0d,0xb1,0x58,0x51,0x8e,0x83,0x00,0x48, + 0x8e,0x79,0x06,0xb0,0xcd,0x11,0x08,0x61,0x13,0x90,0x1e,0xa4,0x55,0x40,0x83,0x2d,0x4d,0x94,0xd3,0x0d, + 0x91,0xf0,0xb5,0x6a,0x0b,0x47,0xb4,0xc0,0x09,0x5c,0xca,0x12,0xaa,0xe2,0xc4,0x1e,0x04,0x84,0xd9,0x35, + 0x2b,0x26,0x28,0x5b,0x52,0xa0,0x49,0xcd,0x92,0x36,0x01,0x84,0x44,0x73,0xae,0xbf,0x0c,0x30,0xd0,0x61, + 0x4a,0x65,0x4c,0x88,0x91,0xc4,0x36,0x50,0x48,0x1f,0x81,0x10,0xe7,0xd0,0xf7,0x3c,0x6a,0x0f,0xf1,0xb3, + 0xe9,0x62,0xba,0x8a,0xe1,0x79,0x58,0x5b,0x6c,0x03,0x17,0x6d,0x73,0x39,0x8f,0xc9,0x6d,0xd3,0xe9,0xcc, + 0xed,0xb9,0xee,0xcc,0x6c,0x66,0xec,0x00,0x01,0x38,0xd1,0xd2,0x9d,0x84,0xcb,0x37,0xf5,0x21,0x68,0x41, + 0x0f,0xf6,0x97,0x0f,0xa7,0xce,0x19,0x23,0x95,0x19,0xc7,0x09,0xeb,0x0f,0x30,0x45,0x63,0x31,0xb1,0x1e, + 0x18,0x92,0xec,0xf8,0xe4,0xa2,0x64,0x1d,0x50,0x6f,0x9f,0x42,0x9a,0xe6,0xc4,0x1f,0x03,0x30,0xa4,0xee, + 0xa0,0xad,0x0b,0x33,0xad,0xb3,0x12,0x24,0xc4,0x29,0x31,0x44,0xf4,0x08,0x6b,0x60,0x56,0xda,0xe1,0x40, + 0xca,0xb9,0xe0,0x5d,0x7d,0x7b,0x18,0x8d,0xc7,0x10,0x2f,0xe8,0x3d,0xe2,0x88,0xfa,0x0f,0x5b,0xbe,0x0f, + 0x82,0x38,0x0d,0xe4,0x63,0x90,0x78,0x22,0x14,0x71,0xdb,0xf7,0xc1,0x21,0xd6,0x9b,0x05,0xb3,0x20,0xe8, + 0xf1,0x2c,0xf0,0x67,0x45,0xdf,0xe9,0x4c,0xa0,0x9c,0x6c,0xb6,0x74,0xee,0xa5,0x27,0x54,0x5e,0x41,0xf7, + 0xb8,0x8a,0x93,0x23,0x4c,0xb3,0x88,0xa3,0x1d,0x72,0xda,0x71,0x49,0xe2,0x06,0x96,0xd5,0xf7,0xa0,0x4b, + 0x06,0xd8,0xa7,0x42,0x2c,0x73,0xb0,0x94,0x4c,0x2b,0xf5,0x90,0x40,0x07,0xcd,0x6a,0x49,0x8f,0xd2,0x59, + 0xba,0xe4,0x8a,0x24,0x74,0x05,0x54,0x37,0x81,0x45,0x16,0xea,0x1e,0x31,0x06,0x95,0xf2,0xd0,0xfc,0xc4, + 0xa2,0x75,0x32,0x4e,0x2d,0xd0,0xd4,0x6e,0x6e,0x98,0xe9,0x22,0x85,0xc9,0xfa,0x79,0x0a,0x2c,0x5f,0x04, + 0x67,0x1b,0x78,0xe6,0xd6,0xc8,0x72,0x1c,0xbc,0x11,0xf2,0xde,0x31,0xa2,0xb6,0xad,0xed,0x7e,0xfe,0xac, + 0xfd,0x4b,0x2b,0xef,0xec,0x30,0x93,0xfd,0x33,0xac,0xa7,0x33,0xbd,0xcb,0xc5,0x34,0xb2,0x5d,0xdf,0xd3, + 0xbc,0xb9,0x4b,0x07,0x8c,0x81,0x4d,0x2b,0x74,0x6d,0x82,0xec,0xe3,0xd2,0x0e,0xfd,0x05,0x6f,0xc7,0x25, + 0xaa,0xb2,0x94,0x94,0x8e,0x06,0xbf,0x65,0xfb,0x93,0x21,0xc4,0x31,0xe4,0x3b,0x81,0x31,0x2f,0x35,0xc8, + 0xa3,0x5c,0x8b,0xed,0x36,0xdd,0x1c,0x39,0x54,0xc9,0x06,0x23,0x7f,0xd2,0xe8,0x5a,0x07,0xdf,0x3e,0xd0, + 0x1f,0x8d,0x14,0xb5,0x02,0x63,0xdc,0x9a,0xfe,0x58,0x13,0xc4,0x18,0x52,0xe3,0x57,0xaf,0xaf,0x39,0x29, + 0x87,0xca,0x52,0x5b,0x4c,0xb4,0xdf,0x89,0x3f,0x9c,0x20,0x2f,0xde,0x5c,0xd1,0x6d,0xa1,0x35,0x67,0x0b, + 0xf7,0x20,0x60,0x4d,0x44,0x4b,0x9c,0x7e,0x18,0x47,0x2a,0x66,0x74,0x13,0xea,0x2f,0x11,0xde,0xa1,0xe3, + 0x58,0x10,0xd8,0x2c,0x08,0x24,0x99,0xb0,0xf4,0x2a,0x25,0x7c,0x3f,0xc1,0xd2,0xb0,0x83,0x1a,0x8b,0x8d, + 0x8f,0xeb,0x94,0xc7,0xa3,0xd6,0xb6,0x68,0x41,0x5f,0xcb,0x16,0x50,0x51,0x01,0xf8,0xe7,0x9f,0x9a,0x82, + 0x2a,0x42,0x91,0x6d,0x40,0xf7,0x14,0x89,0x97,0xf6,0xdb,0xa2,0xfb,0x78,0x6c,0x43,0x4f,0xae,0x03,0x2d, + 0x30,0x84,0x96,0xc6,0x1d,0x8c,0x1b,0x87,0xce,0x2f,0x41,0x4c,0x1d,0x33,0xa6,0x5a,0x4d,0x92,0x27,0x50, + 0xc6,0xf5,0x24,0x5d,0x45,0x4c,0x7d,0x89,0x6f,0x4f,0x15,0xba,0x33,0x2e,0x92,0xb4,0x91,0x97,0x42,0x72, + 0x64,0x56,0x4e,0x7a,0x70,0x0c,0x2d,0x42,0xa7,0xad,0x92,0x6f,0xdb,0xe8,0xc9,0x82,0xf6,0xd8,0x33,0xa3, + 0xc3,0x02,0x11,0x43,0x01,0x55,0x0e,0x23,0xb5,0x78,0xe4,0xd0,0x34,0x3c,0xa0,0x25,0xaf,0x06,0xc2,0x35, + 0x0f,0x43,0xb9,0x68,0x52,0xbe,0x25,0xa7,0x93,0xcb,0x6d,0x46,0xfb,0xef,0xc5,0x5e,0x56,0xc0,0xbf,0x02, + 0xc7,0x56,0xb9,0x99,0x9c,0x00,0x00,0x5f,0xdf,0x44,0x59,0x21,0x0a,0xa3,0x9f,0xb2,0x47,0x11,0xa2,0xa6, + 0x91,0xc2,0x65,0x43,0x98,0x43,0x3d,0xdf,0x99,0xc2,0x26,0x93,0x32,0x74,0x3a,0x18,0x9c,0x9f,0xd7,0x84, + 0x29,0xd8,0x39,0x0e,0xcb,0x56,0x54,0x9b,0xee,0xe5,0x4d,0x7e,0x68,0xff,0x01,0xf5,0xa0,0x52,0x5c,0xde, + 0x5b,0x34,0x13,0x51,0x59,0xc7,0xe5,0x75,0x13,0x4f,0x23,0x2c,0xfd,0x28,0xe1,0x36,0xd1,0x1b,0x34,0x24, + 0xcf,0x14,0x42,0x69,0xe1,0xb2,0x5a,0xb8,0xef,0xdb,0x18,0x91,0xc5,0xa2,0xbb,0xb9,0xa2,0x24,0x8a,0xad, + 0x50,0x72,0x5b,0x0c,0x77,0xe9,0xb0,0x47,0x21,0xe8,0xf4,0xa0,0x93,0x3e,0x2e,0x9b,0x87,0x65,0xc6,0x1d, + 0xc9,0x28,0x9b,0x51,0x10,0x33,0xaf,0x8e,0x14,0xb2,0x85,0x37,0x00,0xee,0x85,0x21,0xcd,0xb6,0x3a,0x88, + 0xb8,0x16,0xe0,0x29,0x73,0x83,0xb5,0x7f,0xd2,0xf8,0xca,0xfc,0x3e,0xf4,0x18,0x5a,0x80,0xe7,0x6b,0xf5, + 0x00,0x68,0xcc,0xc2,0x3c,0x9c,0xb2,0x68,0x61,0xa8,0xac,0x40,0xc9,0x41,0x2a,0x27,0x54,0x08,0x5f,0x0c, + 0x30,0x27,0xcb,0xa3,0x6f,0xe2,0xd8,0x94,0x71,0x41,0xf0,0xb5,0x39,0x43,0x22,0xe8,0x96,0xa8,0xf4,0x7c, + 0x48,0x16,0xeb,0x1c,0x08,0x8e,0x55,0x94,0xce,0xa0,0x61,0x2f,0x53,0x7b,0x1f,0xf2,0xac,0x84,0xd6,0xf4, + 0xf1,0x32,0xb8,0x01,0xcb,0x2a,0x6a,0x47,0x18,0x2d,0x56,0xda,0xe4,0x0c,0xab,0xa8,0x24,0x74,0x8d,0xc3, + 0x8b,0x95,0xf6,0x03,0x96,0x95,0xd4,0xfa,0x4b,0x3c,0xa0,0xef,0x67,0x3c,0x40,0x5d,0xbf,0x15,0xa8,0xc7, + 0xc2,0x4e,0x87,0xf4,0xd7,0xf4,0xe8,0x6c,0x91,0x1f,0x57,0x97,0x65,0xb1,0x2c,0xa8,0xcf,0xe4,0x2a,0x8d, + 0x05,0x75,0x7c,0xa6,0xce,0x8e,0x5d,0xd4,0x69,0xb1,0xe3,0xd4,0x29,0x2d,0xe7,0xe8,0x49,0xec,0xb5,0x58, + 0x97,0xc1,0xde,0xfe,0x30,0x3c,0xab,0xa2,0x88,0xe9,0x46,0x99,0x95,0x43,0xe9,0xc5,0x0b,0x18,0x86,0xb4, + 0x72,0xa9,0x3b,0xad,0x1a,0xe1,0xde,0x5e,0xe8,0xcd,0x5d,0x9a,0x62,0x00,0xb2,0x31,0x45,0x75,0x59,0x52, + 0xa1,0x09,0x13,0x94,0x78,0x0e,0xce,0x24,0x79,0xf5,0x79,0xca,0x55,0xf5,0x79,0x3b,0xed,0xfc,0x30,0x4d, + 0x59,0xff,0x10,0x5b,0x96,0x15,0xb1,0x0b,0x4b,0xd9,0xb6,0xc3,0x2b,0x9f,0x85,0xc5,0xec,0x44,0xf0,0xac, + 0x58,0xce,0x0a,0xa9,0x25,0x05,0x87,0x60,0x2a,0x58,0xd2,0xa6,0x34,0xae,0x0a,0xa1,0xee,0x63,0x6a,0xb1, + 0x7a,0x6e,0xf4,0x25,0xb0,0x44,0xcc,0x2b,0x04,0xb7,0xba,0x43,0xd9,0x87,0x0a,0x77,0x2c,0x09,0x25,0x00, + 0x48,0x55,0x74,0x30,0x2b,0x4b,0xea,0x68,0x15,0x57,0xb1,0x4a,0x5a,0xa9,0x3f,0xbf,0x96,0x0e,0x86,0x9e, + 0xa9,0xa6,0x33,0x88,0x69,0x95,0x47,0xa7,0x20,0x07,0x28,0x27,0xae,0x82,0x4f,0x68,0x5b,0x0a,0xcb,0x10, + 0x9d,0x16,0xa8,0xed,0xa3,0x71,0xbc,0xb7,0xba,0x4f,0x29,0xf8,0x4b,0xd5,0xf7,0x13,0x39,0xda,0xbf,0x63, + 0x85,0x9f,0xc8,0x22,0xb9,0x35,0x7e,0x34,0x63,0xdf,0xb1,0xca,0x17,0xee,0x75,0xc8,0xa7,0x65,0x5d,0x74, + 0xc0,0xce,0x8f,0x39,0x04,0xf6,0xde,0xe6,0xdf,0x2e,0xb2,0x15,0xc7,0x83,0x82,0xb3,0x4b,0x69,0x4b,0x7d, + 0x8d,0x9f,0x26,0xe5,0xab,0xce,0x5d,0xe8,0x28,0xb5,0x08,0x3e,0x03,0xe1,0xf4,0xf1,0x61,0xda,0x60,0x11, + 0x47,0x02,0x6b,0x50,0x2a,0xe7,0xc3,0x93,0x34,0xe7,0x82,0x8c,0x78,0x32,0x9b,0x1e,0xc5,0xbe,0x25,0x05, + 0xa7,0x23,0xfd,0x0d,0xac,0x55,0x77,0x32,0x29,0x65,0x03,0xc7,0x65,0x87,0xe5,0x0b,0xb5,0x28,0x4e,0x1b, + 0x52,0x5a,0x4e,0x1d,0xba,0x00,0x4e,0x6e,0xdd,0xbc,0xcd,0xd1,0xff,0x6b,0xa8,0xfc,0x1a,0x4a,0x98,0xf2, + 0x7f,0x51,0x45,0x25,0xb2,0x43,0x5e,0xc7,0x7f,0x8f,0x4a,0x6a,0xf1,0xf1,0x61,0xe2,0x5d,0xc0,0xa2,0xaa, + 0xab,0x26,0xbf,0x5f,0x8c,0x2b,0x2e,0xf9,0xbd,0x41,0xb1,0x6a,0x4b,0x92,0x90,0x5e,0xc4,0x26,0xb3,0xbf, + 0x9a,0x27,0x37,0xed,0x9b,0x4c,0x81,0x02,0x91,0x24,0x7b,0xce,0xe5,0xa5,0x8b,0x22,0xcb,0xd1,0x05,0x67, + 0x87,0xb9,0xc8,0xa4,0x57,0xb7,0x2b,0x23,0x93,0x64,0x33,0xc8,0xa4,0xf2,0x83,0x10,0x64,0x28,0xc5,0x69, + 0x7b,0xfe,0x32,0xe0,0xc1,0x37,0x4f,0x14,0x1c,0x5c,0x3e,0x7e,0xdf,0x90,0xd2,0x90,0x70,0xbd,0x35,0xc5, + 0xc8,0x13,0x58,0x5c,0x3a,0xa0,0x99,0x83,0x95,0x78,0x42,0x5a,0x3e,0xa6,0x48,0x9a,0xe3,0x8a,0x9f,0x54, + 0xd8,0x62,0xea,0x52,0x7c,0xcb,0x67,0xd1,0x30,0x75,0x77,0xa9,0xa2,0xbc,0x29,0x66,0xc2,0xec,0x8d,0x4d, + 0x30,0x9b,0x2c,0x3c,0x36,0x59,0x86,0xc4,0x8e,0xb5,0xe2,0x84,0x33,0x4d,0x99,0x99,0x96,0xb3,0xaf,0x3f, + 0x14,0xa9,0x9f,0x24,0xad,0x8e,0x5c,0x95,0x36,0xe4,0xd2,0x1c,0x85,0xa9,0x6f,0x17,0x71,0x02,0xe4,0xaa, + 0xcd,0x8c,0x96,0xda,0x85,0x1d,0xa6,0xa7,0x4d,0x99,0xf4,0x4f,0x7f,0x68,0x43,0x6f,0x02,0xc8,0x8b,0xd2, + 0x4b,0x23,0x6a,0x21,0x5f,0x8d,0x75,0xa9,0x3d,0x56,0xa2,0xff,0x97,0xb0,0xc7,0xc0,0x83,0x33,0xa9,0xa2, + 0x97,0x98,0x03,0x52,0x11,0xc0,0xa1,0x16,0x25,0xda,0x88,0xf8,0x1e,0xa8,0x99,0xd7,0x0f,0xa6,0x43,0x3c, + 0x76,0xf5,0x50,0x85,0x38,0xa4,0x2d,0x83,0x7c,0xe8,0x5a,0x40,0x87,0xa6,0x63,0x19,0x6c,0x5d,0xce,0x51, + 0xd2,0x8d,0x79,0x98,0xdf,0xb3,0x61,0x46,0x7d,0x2b,0xc7,0x19,0x53,0x97,0xc6,0xea,0xdf,0x63,0x41,0x8c, + 0x5e,0x4c,0xe7,0x2c,0x86,0xbe,0xcb,0x6e,0x47,0x34,0x11,0x9e,0xcc,0x00,0x86,0xc9,0x17,0xcf,0xe2,0x1d, + 0xf6,0x28,0xa0,0xa5,0x4f,0x1f,0xe4,0xa1,0x8e,0x90,0x05,0x85,0x79,0x43,0xee,0x26,0x6b,0xf9,0x0b,0x18, + 0x29,0xb6,0x8b,0x18,0x69,0x17,0x3b,0x63,0x96,0x69,0xf8,0x5d,0xb3,0xe0,0x0d,0x35,0x1d,0x6f,0x8a,0xc8, + 0x4b,0x4a,0xd9,0xc8,0x19,0xab,0x84,0xb7,0x76,0x32,0x66,0xc9,0xcd,0x9e,0x69,0xc1,0x45,0xe9,0x33,0xb6, + 0xd5,0xb2,0x1b,0x31,0xe9,0x62,0x8f,0xfa,0x27,0xf6,0x6a,0xf1,0x95,0xa2,0xdc,0xee,0x43,0x4b,0x25,0x2f, + 0x26,0x2c,0xa8,0x98,0xfa,0x5c,0x81,0xca,0x43,0x6c,0xcf,0x4d,0x5b,0xe1,0x87,0xbf,0xec,0x94,0x2f,0xc6, + 0x3a,0x18,0x7d,0x65,0xfb,0x00,0x2b,0x99,0x36,0x29,0xec,0x3e,0xc4,0x53,0xa9,0x20,0x8e,0xc7,0x23,0x08, + 0x45,0xd2,0x66,0xac,0x25,0x4e,0x28,0x69,0x3d,0x25,0x45,0x11,0xbd,0x00,0x15,0x1f,0xcf,0x94,0x11,0x32, + 0xb8,0x42,0x52,0xb1,0x03,0x1a,0x59,0x97,0x0a,0x5d,0xdc,0x51,0x71,0x7c,0x16,0xc8,0xb8,0x34,0xd5,0x74, + 0x05,0xbc,0x22,0xc6,0x62,0xc2,0x19,0x20,0x5c,0xe3,0x0a,0x00,0xa4,0xbb,0x77,0x12,0x80,0xe0,0x06,0xde, + 0x32,0x00,0xc2,0x11,0x53,0x00,0x98,0x46,0xc5,0x19,0x7f,0x4e,0x0d,0x63,0x39,0xe1,0x95,0xf2,0xf0,0x46, + 0x20,0xa3,0x6d,0x86,0xaf,0x2e,0xb3,0xd0,0x02,0xfe,0x42,0xf8,0x22,0xdd,0x11,0xc8,0xa8,0xe9,0x44,0x0b, + 0x37,0x7d,0x99,0xa0,0x87,0x00,0xeb,0xe6,0x55,0x24,0x2b,0x27,0x53,0x4e,0xa2,0xf1,0x17,0x51,0xf3,0x01, + 0xf6,0x39,0xaf,0x72,0x0f,0x98,0x89,0x79,0x17,0xd9,0x64,0x41,0xd0,0xe7,0x4d,0x1e,0x15,0xbb,0x6a,0xd4, + 0xab,0xdd,0x34,0x8a,0xb0,0xbd,0x98,0x5f,0x47,0x5a,0xb2,0x77,0x4f,0x62,0x74,0x5b,0x74,0xfc,0xac,0xa3, + 0xe2,0x9e,0x25,0xd4,0xf6,0x07,0x55,0x35,0x3a,0x4a,0x58,0x05,0x1e,0xd3,0xb3,0x0c,0x1f,0xef,0x6b,0x25, + 0x80,0xd5,0xae,0x48,0xdc,0x0a,0x88,0x21,0xa9,0x30,0xc8,0x48,0xd7,0x42,0x98,0xc0,0x0d,0x7b,0x5c,0x09, + 0x68,0xf7,0xbe,0x5d,0xc7,0xb4,0x10,0xc1,0xfd,0xba,0xca,0x9e,0x32,0xb9,0x30,0xe0,0x84,0xce,0x85,0xa0, + 0xdd,0xd9,0x84,0xf7,0xfb,0x4e,0xc8,0xb5,0xab,0x85,0x90,0x6b,0x57,0xef,0x80,0x4c,0x75,0x2e,0x85,0xcc, + 0xfa,0x5d,0x01,0xf2,0x6c,0x52,0x15,0xfb,0xa6,0x0c,0xda,0x88,0x52,0x10,0x68,0xac,0x29,0x17,0xa3,0xd4, + 0xd9,0x4a,0x10,0x9b,0x18,0xbe,0xfa,0xd0,0xd6,0xe7,0x0a,0x90,0x11,0xad,0x30,0xcc,0x58,0xdb,0x02,0xa0, + 0x52,0x97,0x79,0xf9,0x6b,0x02,0xdc,0x4c,0xfe,0x92,0x5f,0x94,0x50,0x72,0xb5,0xdb,0xba,0x84,0x19,0xd4, + 0x31,0xa5,0x48,0x3e,0x97,0xf4,0xe4,0xe1,0x95,0xbb,0xd2,0x96,0x96,0x8f,0x31,0xb7,0x59,0xa8,0x7e,0xfc, + 0x61,0x1b,0x92,0xa2,0x57,0xde,0xd7,0x94,0x57,0xde,0xe3,0xab,0xd3,0xaa,0x5b,0xd3,0xd9,0xa2,0xd7,0x71, + 0x13,0x35,0xef,0xcf,0x16,0x78,0xf5,0x9d,0x5f,0xb5,0x70,0x7b,0x19,0xd3,0xb6,0x86,0x40,0x7f,0x51,0xd7, + 0xbe,0xd2,0x29,0xa0,0xc4,0xaf,0xb8,0x77,0xbb,0xcc,0xe9,0xd9,0xc1,0x76,0xcd,0xf1,0xe5,0x93,0x13,0x49, + 0xa1,0xce,0x28,0xc5,0xfc,0x3d,0x56,0x94,0x71,0x9e,0x8c,0xc6,0xe0,0x30,0xbb,0x1c,0x1c,0x66,0x97,0xf7, + 0x13,0xf3,0x2c,0xb3,0xcf,0xd0,0x57,0x80,0x0d,0x76,0xe3,0x54,0x3b,0x39,0xd6,0xca,0x8a,0xad,0xd2,0x62, + 0x6e,0xb3,0xa2,0x1a,0x56,0xe2,0xe2,0x6b,0x68,0xaf,0xca,0x0f,0xbb,0x71,0x9b,0x77,0x92,0x26,0x21,0xf6, + 0x09,0xac,0xf9,0xb4,0x3c,0x4f,0x1d,0x97,0x29,0x38,0x96,0x9f,0x99,0xa9,0x6d,0xc2,0x87,0x44,0xd4,0xc6, + 0x08,0x86,0x9b,0x77,0xe3,0x37,0xab,0xa6,0xc4,0xee,0x64,0xd3,0x3f,0xa4,0xf2,0x55,0xbc,0x40,0xd9,0xe6, + 0xcd,0x05,0x4e,0xeb,0x57,0xdd,0x4b,0xda,0x34,0x8d,0x49,0x61,0xd5,0xe7,0xdd,0x89,0x61,0x9a,0x80,0x74, + 0xb2,0xd4,0x8d,0x0f,0xfc,0xc3,0x28,0x09,0x3a,0x53,0x11,0x44,0x1b,0xfb,0x4a,0x2a,0xe1,0x30,0x72,0x0e, + 0x59,0xf2,0x25,0x05,0x7f,0x1f,0x39,0x42,0x6f,0xf9,0xaf,0x24,0xe9,0x0a,0x4b,0xe4,0xea,0x56,0x77,0xdc, + 0x39,0x7f,0x47,0x23,0x74,0x0f,0xb1,0xf4,0xbd,0x59,0xc0,0x9b,0xfe,0xdc,0x2c,0x3c,0xba,0xb8,0x13,0x64, + 0xfe,0xd5,0x59,0x4a,0x22,0xfa,0xda,0x2c,0xf3,0x96,0x27,0xf8,0xc4,0xd5,0xa2,0x53,0xe1,0x83,0x31,0xf5, + 0xa5,0x67,0x30,0x05,0xa2,0xb1,0x74,0xc2,0x37,0xe5,0x55,0x97,0xda,0x47,0xfa,0xe4,0x55,0x7c,0xec,0xba, + 0xcd,0xbf,0xf1,0xfd,0x0f,0x58,0xcc,0x40,0x6c,0xf9,0x3b,0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index 6b8dacb..1573691 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -5,129 +5,129 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x77,0xdb,0x46,0xb2,0x2e,0xfa,0x57, - 0x24,0x1c,0x6f,0x1a,0x18,0xb5,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0xb6,0x6c,0x27,0x4e,0xfc,0x1a, - 0x5b,0x79,0xcc,0x28,0xda,0x5a,0x10,0x09,0x4a,0xb0,0x49,0x80,0x01,0x40,0xc9,0x8a,0xc8,0xf3,0xdb,0x6f, + 0x24,0x1c,0x6f,0x1a,0x18,0xb5,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0xb6,0x6c,0xc7,0x4e,0xfc,0x1a, + 0x5b,0x79,0xcc,0x28,0xda,0x5a,0x10,0x09,0x4a,0x88,0x49,0x80,0x01,0x40,0xc9,0x8a,0xc8,0xf3,0xdb,0x6f, 0x7d,0x55,0xfd,0x02,0x08,0x39,0xc9,0xac,0xbd,0xee,0xf2,0xb2,0x08,0x74,0x37,0xfa,0x59,0x5d,0x5d,0xef, - 0xde,0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x0d,0xca,0xf3,0x0f,0xd9,0xa4,0x09,0x92, - 0xa4,0xb9,0x59,0x66,0xe5,0x6c,0x27,0xfb,0xb4,0x2c,0xab,0xa6,0x1e,0x0c,0xb6,0x72,0x16,0xe5,0x74,0x35, - 0xcf,0xc6,0xf2,0x33,0xd4,0xe5,0x92,0x26,0x8c,0xe2,0xc0,0xd4,0xe9,0x0a,0x4f,0xb3,0x59,0x5e,0x64,0x83, - 0x81,0xfc,0x0e,0xd3,0xc5,0x74,0x2c,0x8f,0xe1,0xc9,0x29,0xb5,0x1b,0xdf,0xd5,0xee,0x58,0xff,0x0e,0xd3, - 0x4f,0x79,0x29,0xb5,0x67,0xee,0x79,0x13,0x36,0x97,0x79,0xad,0xec,0x10,0xa2,0xdb,0x2a,0x6b,0x56,0x55, - 0xb1,0xe3,0x06,0x15,0xdd,0x9a,0xe7,0x9d,0x26,0xac,0xa2,0xdb,0x7c,0x16,0x16,0x27,0xd5,0x69,0xa4,0x0b, - 0xe2,0xd9,0xf4,0x7d,0x74,0x95,0x56,0x3b,0x79,0x82,0xa4,0xe4,0x56,0xa7,0xc5,0xb7,0x1b,0x95,0x4f,0xe3, - 0x4a,0xcd,0xcb,0x74,0x9a,0x4d,0xe3,0xdd,0xc3,0xcd,0x48,0x7f,0x9a,0xe1,0xd3,0x49,0x3a,0x9f,0x87,0xb9, - 0xa9,0x41,0xe5,0xca,0x3d,0x37,0x11,0xbd,0xc8,0x67,0xc9,0xee,0x81,0xcb,0xd8,0xa0,0x99,0x22,0xb9,0xb5, - 0x15,0x35,0xc3,0x45,0x42,0x93,0x3f,0x9c,0x24,0x05,0xfd,0x5d,0x26,0x41,0xa0,0x9a,0xf0,0x80,0x06,0x77, - 0xe2,0xaf,0x8d,0x2a,0xa2,0x5b,0x37,0xcd,0x45,0x78,0x18,0x6d,0x54,0x37,0x3f,0x58,0xd5,0xd9,0x4e,0xdd, - 0x54,0x39,0xcd,0xe4,0xc8,0x8e,0xbb,0xc2,0x2c,0xa0,0xd1,0x26,0x29,0xb2,0xeb,0x9d,0x92,0x5e,0x55,0x91, - 0xa4,0x61,0x39,0x5c,0x56,0x65,0x53,0x62,0xc2,0x87,0x55,0xf6,0xdb,0x2a,0xab,0x1b,0xea,0xb4,0xe9,0x15, - 0xfa,0xdb,0x64,0xc5,0x34,0x2c,0x94,0x57,0x50,0x46,0x65,0x73,0xe8,0xad,0xd8,0xe8,0x69,0x0b,0x1f,0x46, - 0x2a,0xa5,0x9f,0x2f,0x22,0x55,0xd2,0xcf,0x57,0x91,0x42,0x37,0xff,0x1e,0xa9,0x49,0x52,0x85,0x75,0x34, - 0x9a,0x0c,0x1f,0xf3,0xba,0x95,0x6a,0x32,0x9c,0x54,0x59,0xda,0x64,0x89,0xbf,0x4c,0xba,0xd9,0x8a,0x66, - 0x73,0x91,0x55,0x17,0x59,0x58,0xab,0x2c,0xa2,0x31,0x4e,0x86,0x47,0x69,0x31,0xc9,0xe6,0x68,0x80,0xaa, - 0x36,0xaf,0xc7,0xe5,0xc7,0xac,0x40,0xda,0x97,0x48,0xcb,0x6b,0x57,0xe8,0x00,0x09,0xb4,0x2c,0x7d,0xb5, - 0xbf,0xad,0xca,0x45,0x5e,0x67,0xc8,0xa6,0x54,0x54,0x5e,0x2f,0xa9,0x2b,0x53,0x7c,0x47,0x1d,0x76,0xf3, - 0x3b,0x71,0xcf,0x43,0x02,0xd4,0x74,0x35,0x6f,0x92,0xc9,0x5f,0x9a,0x70,0x69,0x31,0x38,0x11,0xc0,0xde, - 0x79,0x5c,0x55,0xe9,0xcd,0x29,0xc1,0x77,0x32,0x17,0xa0,0xa1,0xe6,0xed,0x07,0xb9,0xd7,0xc5,0x62,0x35, - 0x9f,0xef,0x26,0x49,0xd6,0xb3,0xe3,0x32,0xf7,0x45,0xda,0xd3,0xc4,0x73,0x9d,0x79,0x57,0x2b,0xa5,0x6c, - 0x71,0xec,0x00,0xdb,0xc6,0x55,0x99,0x4f,0x77,0x0e,0xf0,0x1c,0x51,0xba,0x69,0x71,0xd7,0xb6,0x38,0x18, - 0x84,0x59,0x72,0x92,0x9d,0x46,0x0a,0x83,0x8a,0x66,0x65,0x15,0x0a,0xf8,0x12,0x40,0x27,0xd9,0x70,0x9e, - 0x15,0x17,0xcd,0xe5,0xa8,0x78,0x94,0x8f,0x8a,0xbd,0xbd,0xa8,0x91,0x46,0x51,0xbd,0xca,0x4e,0x8a,0x53, - 0x55,0xd0,0x1a,0x8e,0xb2,0x39,0x4d,0x92,0xf9,0x32,0xdd,0xc9,0x69,0xeb,0x44,0x6f,0xb8,0x21,0x0f,0x00, - 0x2f,0xd3,0xfa,0xcd,0x75,0x41,0xeb,0xb3,0xcc,0xaa,0xe6,0x46,0x77,0x5e,0xa5,0xd1,0x60,0xd0,0xae,0x34, - 0x3d,0x55,0x29,0x55,0xca,0x40,0x57,0x0b,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0xe6,0xc9,0x56,0xa5,0x4d,0xf9, - 0x9e,0xd6,0xa6,0xb8,0x18,0xb9,0x85,0xbd,0xcd,0x6b,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xc9,0x6a,0x36,0xcb, - 0xaa,0x78,0x1b,0x5a,0xda,0x6b,0x27,0xc5,0x3a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xbc,0xac,0x16, - 0x4f,0xd3,0x26,0xed,0xab,0x6b,0x55,0x08,0xbe,0x9b,0xba,0xc9,0x35,0xc5,0x07,0x83,0x8c,0x26,0xa5,0x6e, - 0x00,0xc1,0x5e,0xf2,0xa6,0xdd,0xc1,0x9f,0xf2,0xec,0xfa,0x4f,0x56,0xec,0x7d,0x35,0x18,0x78,0x2f,0xb4, - 0x4d,0x50,0xcb,0x78,0x3b,0x89,0xea,0x8b,0x69,0xad,0xb3,0xe1,0xb9,0xfe,0xca,0x3c,0xf9,0x1d,0xf3,0x3e, - 0x43,0xdf,0x64,0x6a,0xfb,0xba,0x54,0x73,0x8e,0x0f,0xb7,0x54,0xfc,0xf5,0x6a,0x71,0xde,0x3f,0xcd,0x05, - 0xe7,0x74,0x8a,0xcb,0x5a,0xc6,0x84,0x50,0xeb,0x1f,0xcd,0x08,0x7b,0x3e,0xde,0x11,0x00,0xa6,0x45,0xe1, - 0xaf,0x68,0xde,0xb2,0xcf,0xad,0x24,0xf2,0xb7,0x97,0xf0,0x79,0x3e,0xff,0xec,0x57,0xc8,0xef,0x59,0xf8, - 0x79,0x79,0xfe,0xb9,0xaf,0x90,0xdf,0xd3,0x96,0xfe,0x20,0x4e,0x65,0x0a,0xb3,0x74,0xd1,0x37,0x2c,0x60, - 0x84,0xc1,0x80,0x76,0xf9,0x70,0x99,0x2f,0xe5,0xcb,0x1f,0xdf,0xbd,0x7c,0x9f,0xa5,0xd5,0xe4,0xf2,0x6d, - 0x5a,0xa5,0x8b,0xfa,0x4f,0xc2,0x42,0xe7,0xab,0x0e,0xac,0x75,0x72,0x65,0x59,0xd3,0x62,0x9a,0x56,0xd3, - 0x27,0x55,0x79,0x5d,0x67,0xd5,0xb3,0xe2,0x2a,0xde,0x3a,0x5f,0x43,0xaf,0x25,0xbb,0x6c,0x45,0x7a,0x95, - 0x5f,0xa4,0x4d,0x59,0xad,0xd7,0xc1,0xbb,0x2c,0x9d,0x34,0xaf,0xd3,0x26,0xbf,0xca,0xa8,0x2b,0x89,0xcd, - 0xc2,0xde,0x9c,0xae,0x26,0x0d,0x8d,0xad,0xaf,0xb3,0xd7,0x79,0x31,0x2d,0xaf,0xfb,0xf3,0xa6,0xe5,0x64, - 0xb5,0xc8,0x8a,0x86,0x90,0x70,0x59,0x3d,0x4b,0x27,0x97,0x71,0xa9,0xf8,0xa0,0xb0,0xdd,0xdb,0xc9,0xc2, - 0xd6,0x69,0xdf,0xa8,0xaa,0x87,0xa0,0xc1,0xf1,0xde,0x83,0x5b,0x9b,0x31,0x9f,0xfb,0x19,0x53,0x07,0xa0, - 0x48,0xf8,0xb5,0xd9,0x38,0x8c,0x47,0x94,0x40,0xc5,0x68,0x2f,0xad,0x2e,0xb8,0x27,0xb5,0x41,0x7f,0x15, - 0xa1,0xbf,0x8a,0xd0,0x5f,0x19,0xda,0x2c,0xa9,0xc4,0x9c,0xa5,0xc5,0x46,0xc9,0x91,0x19,0x77,0x0f,0x10, - 0x5d,0xa0,0xa4,0xce,0xda,0x2c,0xee,0x37,0xa8,0x8b,0xa4,0xa0,0x8e,0x6e,0xd3,0x52,0xcd,0xb8,0x0e,0xf1, - 0x71,0xdc,0x6c,0xe8,0xc8,0xda,0x28,0xda,0x6d,0xbd,0x30,0x84,0x53,0x7d,0x39,0x4f,0x27,0x59,0xf8,0xe0, - 0x7f,0x7e,0xad,0xff,0xf6,0x40,0x05,0x41,0xe4,0x92,0x28,0xe5,0x1e,0x27,0x6d,0x36,0xed,0x73,0xad,0x73, - 0xaa,0x39,0xd4,0xd9,0x2e,0xd4,0xa5,0xb4,0x68,0xea,0xed,0x54,0x81,0xcc,0x60,0x6c,0x11,0x76,0xe7,0x2a, - 0xc2,0x1c,0xd2,0x84,0x15,0x76,0xee,0x68,0xde,0x78,0xaa,0xfd,0xa9,0xb3,0x24,0xd6,0x30,0x5d,0x2e,0xe7, - 0x37,0x3c,0xda,0xed,0x6e,0xda,0xa5,0xf6,0x06,0xbd,0xbb,0x9b,0x0d,0x27,0x25,0x01,0x78,0x45,0x50,0x56, - 0x56,0xbd,0xf3,0xd7,0x2a,0x31,0x34,0x18,0x1c,0x38,0xaf,0x2f,0x1d,0xfb,0xb6,0x6f,0x0e,0x3a,0x07,0x36, - 0x4e,0x4a,0xa4,0xae,0xd7,0x61,0x43,0xd4,0x5c,0xdf,0xb2,0x0d,0x41,0x69,0x3c,0x27,0x8a,0xb0,0x79,0xf9, - 0xac,0x7f,0x61,0x87,0xf5,0x3c,0x9f,0x50,0x4d,0x04,0x03,0xf2,0x18,0x1e,0xa8,0x83,0x28,0xa2,0x4a,0x31, - 0xae,0x33,0xd3,0xa5,0x88,0x29,0xd5,0x66,0xf3,0x97,0xe8,0x11,0x50,0xca,0x86,0x94,0xa9,0x41,0x6f,0xe2, - 0x3d,0x2f,0x9a,0xac,0x9a,0x64,0x4b,0x1a,0x30,0x1d,0x8d,0x9a,0x08,0x8c,0x99,0x4a,0x54,0x55,0x56,0x2f, - 0x69,0x3e,0x32,0x79,0xdd,0x58,0x32,0xef,0xef,0x42,0xe6,0x3d,0x14,0x32,0xef,0xf0,0xbf,0x85,0xce,0x3b, - 0xfc,0x07,0x41,0xfb,0x36,0x41,0xd9,0x9a,0xb0,0xed,0x83,0x81,0xc9,0x8b,0x54,0x13,0x7c,0xb7,0xab,0x6a, - 0x1e,0x3b,0x30,0x38,0x38,0xdd,0x28,0xf7,0x76,0x78,0x1a,0x45,0xca,0x2b,0x9c,0xab,0xd6,0x80,0xd4,0xed, - 0x22,0x6b,0x2e,0xcb,0x69,0x1c,0x5c,0x64,0x4d,0xb0,0x01,0xe9,0x38,0x94,0x14,0xa2,0x52,0xe4,0x81,0xa8, - 0x81,0x97,0xe5,0x75,0x56,0x1d,0xa5,0x35,0x21,0x0a,0x99,0xc2,0xe4,0xa4,0x56,0x72,0x82,0x10,0xad,0x92, - 0x18,0xea,0x90,0x46,0x5e,0xce,0xaf,0x32,0xea,0xf2,0x08,0x30,0xbd,0x35,0x53,0x66,0x70,0x43,0x8d,0x89, - 0x42,0x7f,0x90,0xcd,0x70,0x55,0xd4,0x97,0xf9,0xac,0x21,0xdc,0x3d,0x5b,0xcd,0x67,0xf9,0x7c,0x9e,0x4d, - 0x15,0x2a,0x05,0xc2,0xc9,0xa6,0x11,0x6d,0xda,0xbe,0x1a,0x65,0xb2,0xef,0xa8,0x72,0xb9,0xaa,0x2f,0xef, - 0xae,0x6f,0xd4,0x98,0xdd,0x14,0xd1,0xde,0x1b,0x36,0x97,0x19,0x03,0x10,0x77,0x82,0x1a,0x33,0x4f,0x3e, - 0x3a,0x4a,0x6d,0x43,0x27,0xc1,0x34,0x9b,0x67,0x4d,0x16,0x28,0x9e,0x3a,0x15,0x5c,0x12,0x94,0xd2,0x4f, - 0xb9,0x44,0xf3,0x75,0x70,0xaa,0x5a,0x30,0xef,0x96,0x98,0xa8,0xc2,0xc4,0xc3,0x59,0x0e,0x99,0xf1,0xe8, - 0xf4,0x14,0x85,0x66,0xbd,0x8a,0xf5,0x9a,0x10,0xa8,0x59,0xa5,0x4c,0x61,0xad,0x09,0x7f,0xd1,0xb6,0x8e, - 0x5a,0x9d,0x59,0x96,0x35,0x3a,0xb1,0x5c,0xf1,0xdf,0xb4,0x99,0x5c,0xfe,0xf9,0x1e,0x00,0x6f,0x7e,0xae, - 0x0f,0x55,0x5f,0x1f,0xd4,0x14,0x14,0x5b,0xa1,0xbb,0xe2,0x76,0x7a,0xf5,0x17,0x76,0x17,0xb0,0xd1,0x6e, - 0x3e,0xf4,0x48,0x15,0x3e,0xbe,0x3b,0x29,0x27,0xc1,0x51,0x49,0x6b,0x5e,0x34,0xfb,0xc7,0xd4,0xf9,0xe0, - 0x34,0x02,0xf4,0x77,0x13,0x93,0x26,0xea,0x32,0x54,0xff,0x8d,0x9d,0x76,0xdb,0x2e,0x17,0x07,0xc0,0x8c, - 0xf9,0x24,0x45,0x17,0x1e,0x7c,0xda,0xbf,0xbe,0xbe,0xde,0xa7,0x49,0x5c,0xec,0xd3,0x98,0xb2,0x62,0x52, - 0x12,0xd3,0x49,0xbb,0x80,0xf6,0x74,0x3a,0x4d,0x97,0x8d,0x4f,0x77,0x09,0x2b,0x98,0x8d,0xee,0x26,0x19, - 0x7e,0x79,0xf5,0xf2,0xbb,0xa6,0x59,0xbe,0x93,0xd9,0x1b,0x67,0xd4,0x85,0x7f,0x10,0x87,0xde,0x53,0x92, + 0xde,0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x0d,0xca,0xf3,0x5f,0xb3,0x49,0x13,0x24, + 0x49,0x73,0xb3,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0x3d,0x18,0x6c,0xe5,0x2c,0xca,0xe9,0x6a, + 0x9e,0x8d,0xe5,0x67,0xa8,0xcb,0x25,0x4d,0x18,0xc5,0x81,0xa9,0xd3,0x15,0x9e,0x66,0xb3,0xbc,0xc8,0x06, + 0x03,0xf9,0x1d,0xa6,0x8b,0xe9,0x58,0x1e,0xc3,0x93,0x53,0x6a,0x37,0xbe,0xab,0xdd,0xb1,0xfe,0x1d,0xa6, + 0x9f,0xf2,0x52,0x6a,0xcf,0xdc,0xf3,0x26,0x6c,0x2e,0xf3,0x5a,0xd9,0x21,0x44,0xb7,0x55,0xd6,0xac,0xaa, + 0x62,0xc7,0x0d,0x2a,0xba,0x35,0xcf,0x3b,0x4d,0x58,0x45,0xb7,0xf9,0x2c,0x2c,0x4e,0xaa,0xd3,0x48,0x17, + 0xc4,0xb3,0xe9,0xfb,0xe8,0x2a,0xad,0x76,0xf2,0x04,0x49,0xc9,0xad,0x4e,0x8b,0x6f,0x37,0x2a,0x9f,0xc6, + 0x95,0x9a,0x97,0xe9,0x34,0x9b,0xc6,0xbb,0x87,0x9b,0x91,0xfe,0x34,0xc3,0xa7,0x93,0x74,0x3e,0x0f,0x73, + 0x53,0x83,0xca,0x95,0x7b,0x6e,0x22,0x7a,0x91,0xcf,0x92,0xdd,0x03,0x97,0xb1,0x41,0x33,0x45,0x72,0x6b, + 0x2b,0x6a,0x86,0x8b,0x84,0x26,0x7f,0x38,0x49,0x0a,0xfa,0xbb,0x4c,0x82,0x40,0x35,0xe1,0x01,0x0d,0xee, + 0xc4,0x5f,0x1b,0x55,0x44,0xb7,0x6e,0x9a,0x8b,0xf0,0x30,0xda,0xa8,0x6e,0x7e,0xb0,0xaa,0xb3,0x9d,0xba, + 0xa9,0x72,0x9a,0xc9,0x91,0x1d,0x77,0x85,0x59,0x40,0xa3,0x4d,0x52,0x64,0xd7,0x3b,0x25,0xbd,0xaa,0x22, + 0x49,0xc3,0x72,0xb8,0xac,0xca,0xa6,0xc4,0x84,0x0f,0xab,0xec,0xb7,0x55,0x56,0x37,0xd4,0x69,0xd3,0x2b, + 0xf4,0xb7,0xc9,0x8a,0x69,0x58,0x28,0xaf,0xa0,0x8c,0xca,0xe6,0xd0,0x5b,0xb1,0xd1,0xd3,0x16,0x3e,0x8c, + 0x54,0x4a,0x3f,0x5f,0x44,0xaa,0xa4,0x9f,0xaf,0x22,0x85,0x6e,0xfe,0x3d,0x52,0x93,0xa4,0x0a,0xeb,0x68, + 0x34,0x19,0x3e,0xe6,0x75,0x2b,0xd5,0x64,0x38,0xa9,0xb2,0xb4,0xc9,0x12,0x7f,0x99,0x74,0xb3,0x15,0xcd, + 0xe6,0x22,0xab,0x2e,0xb2,0xb0,0x56,0x59,0x44,0x63,0x9c,0x0c,0x8f,0xd2,0x62,0x92,0xcd,0xd1,0x00,0x55, + 0x6d,0x5e,0x8f,0xcb,0x8f,0x59,0x81,0xb4,0x2f,0x91,0x96,0xd7,0xae,0xd0,0x01,0x12,0x68,0x59,0xfa,0x6a, + 0x7f,0x57,0x95,0x8b,0xbc,0xce,0x90,0x4d,0xa9,0xa8,0xbc,0x5e,0x52,0x57,0xa6,0xf8,0x8e,0x3a,0xec,0xe6, + 0x77,0xe2,0x9e,0x87,0x04,0xa8,0xe9,0x6a,0xde,0x24,0x93,0xbf,0x34,0xe1,0xd2,0x62,0x70,0x22,0x80,0xbd, + 0xf3,0xb8,0xaa,0xd2,0x9b,0x53,0x82,0xef,0x64,0x2e,0x40,0x43,0xcd,0xdb,0x0f,0x72,0xaf,0x8b,0xc5,0x6a, + 0x3e,0xdf,0x4d,0x92,0xac,0x67,0xc7,0x65,0xee,0x8b,0xb4,0xa7,0x89,0xe7,0x3a,0xf3,0xae,0x56,0x4a,0xd9, + 0xe2,0xd8,0x01,0xb6,0x8d,0xab,0x32,0x9f,0xee,0x1c,0xe0,0x39,0xa2,0x74,0xd3,0xe2,0xae,0x6d,0x71,0x30, + 0x08,0xb3,0xe4,0x24,0x3b,0x8d,0x14,0x06,0x15,0xcd,0xca,0x2a,0x14,0xf0,0x25,0x80,0x4e,0xb2,0xe1,0x3c, + 0x2b,0x2e,0x9a,0xcb,0x51,0xf1,0x28,0x1f,0x15,0x7b,0x7b,0x51,0x23,0x8d,0xa2,0x7a,0x95,0x9d,0x14,0xa7, + 0xaa,0xa0,0x35,0x1c,0x65,0x73,0x9a,0x24,0xf3,0x65,0xba,0x93,0xd3,0xd6,0x89,0xde,0x72,0x43,0x1e,0x00, + 0x5e,0xa6,0xf5,0xdb,0xeb,0x82,0xd6,0x67,0x99,0x55,0xcd,0x8d,0xee,0xbc,0x4a,0xa3,0xc1,0xa0,0x5d,0x69, + 0x7a,0xaa,0x52,0xaa,0x94,0x81,0xae,0x16,0x68,0xa3,0x7d,0x13,0x12,0x14,0xcc,0x93,0xad,0x4a,0x9b,0xf2, + 0x03,0xad,0x4d,0x71,0x31,0x72,0x0b,0x7b,0x9b,0xd7,0xbc,0x14,0xb4,0xa5,0xf5,0xd3,0x93,0xd5,0x6c,0x96, + 0x55,0xf1,0x36,0xb4,0xb4,0xd7,0x4e,0x8a,0x75,0xe6,0x96,0xea,0xd0,0x9f,0x4f,0xe8,0xf1,0x79,0x59,0x2d, + 0x9e,0xa6,0x4d,0xda,0x57,0xd7,0xaa,0x10,0x7c,0x37,0x75,0x93,0x6b,0x8a,0x0f,0x06,0x19,0x4d,0x4a,0xdd, + 0x00,0x82,0xbd,0xe4,0x4d,0xbb,0x83,0x3f,0xe6,0xd9,0xf5,0x9f,0xac,0xd8,0xfb,0x6a,0x30,0xf0,0x5e,0x68, + 0x9b,0xa0,0x96,0xf1,0x76,0x12,0xd5,0x17,0xd3,0x5a,0x67,0xc3,0x73,0xfd,0x95,0x79,0xf2,0x3b,0xe6,0x7d, + 0x86,0xbe,0xc9,0xd4,0xf6,0x75,0xa9,0xe6,0x1c,0x1f,0x6e,0xa9,0xf8,0x9b,0xd5,0xe2,0xbc,0x7f,0x9a,0x0b, + 0xce,0xe9,0x14,0x97,0xb5,0x8c,0x09,0xa1,0xd6,0x3f,0x98,0x11,0xf6,0x7c,0xbc,0x23,0x00,0x4c,0x8b,0xc2, + 0x5f,0xd1,0xbc,0x65,0x9f,0x5b,0x49,0xe4,0x6f,0x2f,0xe1,0xf3,0x7c,0xfe,0xd9,0xaf,0x90,0xdf,0xb3,0xf0, + 0xf3,0xf2,0xfc,0x73,0x5f,0x21,0xbf,0xa7,0x2d,0xfd,0x41,0x9c,0xca,0x14,0x66,0xe9,0xa2,0x6f,0x58,0xc0, + 0x08,0x83,0x01,0xed,0xf2,0xe1,0x32,0x5f,0xca,0x97,0x3f,0xbc,0x7f,0xf5,0x21,0x4b,0xab,0xc9,0xe5,0xbb, + 0xb4,0x4a,0x17,0xf5,0x9f,0x84,0x85,0xce,0x57,0x1d,0x58,0xeb,0xe4,0xca,0xb2,0xa6,0xc5,0x34,0xad,0xa6, + 0x4f,0xaa,0xf2,0xba,0xce,0xaa,0x67,0xc5,0x55,0xbc,0x75,0xbe,0x86,0x5e,0x4b,0x76,0xd9,0x8a,0xf4,0x2a, + 0xbf,0x48,0x9b,0xb2,0x5a,0xaf,0x83,0xf7,0x59,0x3a,0x69,0xde,0xa4,0x4d,0x7e,0x95,0x51,0x57,0x12,0x9b, + 0x85,0xbd,0x39,0x5d,0x4d,0x1a,0x1a,0x5b,0x5f,0x67,0xaf,0xf3,0x62,0x5a,0x5e,0xf7,0xe7,0x4d,0xcb,0xc9, + 0x6a,0x91,0x15,0x0d,0x21,0xe1,0xb2,0x7a,0x96,0x4e,0x2e,0xe3,0x52,0xf1,0x41,0x61,0xbb,0xb7,0x93,0x85, + 0xad,0xd3,0xbe,0x51,0x55,0x0f,0x41,0x83,0xe3,0xbd,0x07,0xb7,0x36,0x63,0x3e,0xf7,0x33,0xa6,0x0e,0x40, + 0x91,0xf0,0x6b,0xb3,0x71,0x18,0x8f,0x28,0x81,0x8a,0xd1,0x5e,0x5a,0x5d,0x70,0x4f,0x6a,0x83,0xfe,0x2a, + 0x42,0x7f,0x15,0xa1,0xbf,0x32,0xb4,0x59,0x52,0x89,0x39,0x4b,0x8b,0x8d,0x92,0x23,0x33,0xee,0x1e,0x20, + 0xba,0x40,0x49,0x9d,0xb5,0x59,0xdc,0x6f,0x50,0x17,0x49,0x41,0x1d,0xdd,0xa6,0xa5,0x9a,0x71,0x1d,0xe2, + 0xe3,0xb8,0xd9,0xd0,0x91,0xb5,0x51,0xb4,0xdb,0x7a,0x61,0x08,0xa7,0xfa,0x72,0x9e,0x4e,0xb2,0xf0,0xc1, + 0xff,0xfc,0x52,0xff,0xed,0x81,0x0a,0x82,0xc8,0x25,0x51,0xca,0x3d,0x4e,0xda,0x6c,0xda,0xe7,0x5a,0xe7, + 0x54,0x73,0xa8,0xb3,0x5d,0xa8,0x4b,0x69,0xd1,0xd4,0xdb,0xa9,0x02,0x99,0xc1,0xd8,0x22,0xec,0xce,0x55, + 0x84,0x39,0xa4,0x09,0x2b,0xec,0xdc,0xd1,0xbc,0xf1,0x54,0xfb,0x53,0x67,0x49,0xac,0x61,0xba,0x5c,0xce, + 0x6f,0x78,0xb4,0xdb,0xdd,0xb4,0x4b,0xed,0x0d,0x7a,0x77,0x37,0x1b,0x4e,0x4a,0x02,0xf0,0x8a,0xa0,0xac, + 0xac,0x7a,0xe7,0xaf,0x55,0x62,0x68,0x30,0x38,0x70,0x5e,0x5f,0x3a,0xf6,0x6d,0xdf,0x1c,0x74,0x0e,0x6c, + 0x9c,0x94,0x48,0x5d,0xaf,0xc3,0x86,0xa8,0xb9,0xbe,0x65,0x1b,0x82,0xd2,0x78,0x4e,0x14,0x61,0xf3,0xea, + 0x59,0xff,0xc2,0x0e,0xeb,0x79,0x3e,0xa1,0x9a,0x08,0x06,0xe4,0x31,0x3c,0x50,0x07,0x51,0x44,0x95,0x62, + 0x5c,0x67,0xa6,0x4b,0x11,0x53,0xaa,0xcd,0xe6,0x2f,0xd1,0x23,0xa0,0x94,0x0d,0x29,0x53,0x83,0xde,0xc4, + 0x7b,0x5e,0x34,0x59,0x35,0xc9,0x96,0x34,0x60,0x3a,0x1a,0x35,0x11,0x18,0x33,0x95,0xa8,0xaa,0xac,0x5e, + 0xd2,0x7c,0x64,0xf2,0xba,0xb1,0x64,0xde,0xdf,0x85,0xcc,0x7b,0x28,0x64,0xde,0xe1,0x7f,0x0b,0x9d,0x77, + 0xf8,0x0f,0x82,0xf6,0x6d,0x82,0xb2,0x35,0x61,0xdb,0x07,0x03,0x93,0x17,0xa9,0x26,0xf8,0x6e,0x57,0xd5, + 0x3c,0x76,0x60,0x70,0x70,0xba,0x51,0xee,0xed,0xf0,0x34,0x8a,0x94,0x57,0x38,0x57,0xad,0x01,0xa9,0xdb, + 0x45,0xd6,0x5c,0x96,0xd3,0x38,0xb8,0xc8,0x9a,0x60,0x03,0xd2,0x71,0x28,0x29,0x44,0xa5,0xc8,0x03,0x51, + 0x03,0xaf,0xca,0xeb,0xac,0x3a,0x4a,0x6b,0x42,0x14,0x32,0x85,0xc9,0x49,0xad,0xe4,0x04,0x21,0x5a,0x25, + 0x31,0xd4,0x21,0x8d,0xbc,0x9c,0x5f,0x65,0xd4,0xe5,0x11,0x60,0x7a,0x6b,0xa6,0xcc,0xe0,0x86,0x1a,0x13, + 0x85,0xfe,0x20,0x9b,0xe1,0xaa,0xa8,0x2f,0xf3,0x59,0x43,0xb8,0x7b,0xb6,0x9a,0xcf,0xf2,0xf9,0x3c,0x9b, + 0x2a,0x54,0x0a,0x84,0x93,0x4d,0x23,0xda,0xb4,0x7d,0x35,0xca,0x64,0xdf,0x51,0xe5,0x72,0x55,0x5f,0xde, + 0x5d,0xdf,0xa8,0x31,0xbb,0x29,0xa2,0xbd,0x37,0x6c,0x2e,0x33,0x06,0x20,0xee,0x04,0x35,0x66,0x9e,0x7c, + 0x74,0x94,0xda,0x86,0x4e,0x82,0x69,0x36,0xcf,0x9a,0x2c,0x50,0x3c,0x75,0x2a,0xb8,0x24,0x28,0xa5,0x9f, + 0x72,0x89,0xe6,0xeb,0xe0,0x54,0xb5,0x60,0xde,0x2d,0x31,0x51,0x85,0x89,0x87,0xb3,0x1c,0x32,0xe3,0xd1, + 0xe9,0x29,0x0a,0xcd,0x7a,0x15,0xeb,0x35,0x21,0x50,0xb3,0x4a,0x99,0xc2,0x5a,0x13,0xfe,0xa2,0x6d,0x1d, + 0xb5,0x3a,0xb3,0x2c,0x6b,0x74,0x62,0xb9,0xe2,0xbf,0x69,0x33,0xb9,0xfc,0xf3,0x3d,0x00,0xde,0xfc,0x5c, + 0x1f,0xaa,0xbe,0x3e,0xa8,0x29,0x28,0xb6,0x42,0x77,0xc5,0xed,0xf4,0xea,0x2f,0xec,0x2e,0x60,0xa3,0xdd, + 0x7c,0xe8,0x91,0x2a,0x7c,0x7c,0x77,0x52,0x4e,0x82,0xa3,0x92,0xd6,0xbc,0x68,0xf6,0x8f,0xa9,0xf3,0xc1, + 0x69,0x04,0xe8,0xef,0x26,0x26,0x4d,0xd4,0x65,0xa8,0xfe,0x1b,0x3b,0xed,0xb6,0x5d,0x2e,0x0e,0x80,0x19, + 0xf3,0x49,0x8a,0x2e,0x3c,0xf8,0xb4,0x7f,0x7d,0x7d,0xbd,0x4f,0x93,0xb8,0xd8,0xa7,0x31,0x65,0xc5,0xa4, + 0x24,0xa6,0x93,0x76,0x01,0xed,0xe9,0x74,0x9a,0x2e,0x1b,0x9f,0xee,0x12,0x56,0x30,0x1b,0xdd,0x4d,0x32, + 0xfc,0xfc,0xfa,0xd5,0x8b,0xa6,0x59,0xbe,0x97,0xd9,0x1b,0x67,0xd4,0x85,0x7f,0x10,0x87,0xde,0x53,0x92, 0x56,0x62,0x92,0xd5,0x35,0xef,0x62,0x14,0xc2,0x71,0x04,0x88,0xab,0xd2,0xa2,0x46,0x6f,0x74,0x15,0xf1, 0x49,0xef,0xd1,0x91,0xd2,0x9a,0xb5,0x47,0x05,0xde,0xd2,0x91,0xd1,0x8c,0x4d,0x91,0xe0,0x11,0x9e,0x36, 0xad,0xf3,0x2a,0x94,0x94,0x7d,0x05,0xc5,0xe6,0x8a,0x12,0x21,0x46,0x2f,0xe3,0x2c,0xee,0x54,0xa6,0x29, 0xdf,0xb1,0x21,0x76,0x39,0xbf,0x43,0x12,0x21,0x3f,0xac,0xd0,0xd3,0x3f,0x9c,0xf0,0xd1,0xe4,0x32,0xad, 0xea,0xac,0x49,0x56,0xcd,0x6c,0xff,0x1f,0x01,0x80,0xc9,0x30,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0xfb, - 0xeb,0xfc,0x50,0x97,0xc5,0x56,0x15,0xdf,0xbf,0x7f,0xf3,0x7a,0x28,0x68,0x33,0x9f,0xdd,0x80,0x05,0x8b, - 0xb3,0xcd,0xa9,0x3f,0xc3,0x1a,0x49,0x9f,0xf8,0x7b,0x04,0xac,0xdc,0x16,0xae,0x8d,0x9a,0xea,0xe6,0x36, - 0x4b,0xb8,0xc6,0x25,0x5a,0xc1,0xc9,0x36,0xc1,0x0e,0xc3,0x27,0x1b,0x73,0xe4,0xa2,0xf6,0x7c,0x91,0x95, - 0xab,0x26,0x3e,0x50,0x9f,0xea,0x6a,0x76,0x54,0x96,0x1f,0xf3,0xec,0x75,0xba,0xc8,0xe2,0xe0,0x97,0xf7, - 0xef,0x9e,0xef,0x1f,0xbf,0xf9,0xe1,0xd9,0xeb,0x80,0xf3,0xbe,0x23,0x5c,0x91,0x55,0x3a,0x6f,0xdf,0xcf, - 0x5d,0xa4,0x9f,0xf4,0xd2,0xbe,0x64,0xd4,0x14,0xef,0x1f,0xaa,0xab,0x74,0x9e,0xd3,0x6e,0xcb,0x88,0xc4, + 0xeb,0xfc,0xb5,0x2e,0x8b,0xad,0x2a,0xbe,0xfb,0xf0,0xf6,0xcd,0x50,0xd0,0x66,0x3e,0xbb,0x01,0x0b,0x16, + 0x67,0x9b,0x53,0x7f,0x86,0x35,0x92,0x3e,0xf1,0xf7,0x08,0x58,0xb9,0x2d,0x5c,0x1b,0x35,0xd5,0xcd,0x6d, + 0x96,0x70,0x8d,0x4b,0xb4,0x82,0x93,0x6d,0x82,0x1d,0x86,0x4f,0x36,0xe6,0xc8,0x45,0xed,0xf9,0x22,0x2b, + 0x57,0x4d,0x7c,0xa0,0x3e,0xd5,0xd5,0xec,0xa8,0x2c,0x3f,0xe6,0xd9,0x9b,0x74,0x91,0xc5,0xc1,0xcf,0x1f, + 0xde,0x3f,0xdf,0x3f,0x7e,0xfb,0xfd,0xb3,0x37,0x01,0xe7,0xbd,0x20,0x5c,0x91,0x55,0x3a,0x6f,0xdf,0xcf, + 0x5d,0xa4,0x9f,0xf4,0xd2,0xbe,0x62,0xd4,0x14,0xef,0x1f,0xaa,0xab,0x74,0x9e,0xd3,0x6e,0xcb,0x88,0xc4, 0x6c,0x56,0x7d,0x04,0xec,0x4e,0xf6,0x4d,0xf2,0xf0,0xe0,0x80,0x8e,0xe2,0x47,0x5f,0x1c,0x1c,0x6c,0x36, 0xa3,0x7a,0x78,0xc9,0x2d,0x10,0x20,0x4f,0xca,0xc5,0x82,0xc8,0xe6,0xdb,0xc7,0x13,0xe0,0xcc,0x78,0x6b, 0xea,0xd4,0x4e,0x43,0x34,0xd6,0x03,0xa2,0x6e,0x72,0x7a,0xfe,0xdb,0x83,0xbf,0x05,0x74,0x3e,0xe6,0x7f, 0x80,0xe6,0xda,0xa8,0xc5,0xb6,0x06,0xc4,0x72,0x0b,0x74,0x90,0xff,0x15,0xcc,0xd4,0xfa,0xdc,0x48,0x31, 0xca,0xa8,0x85,0x55,0xea,0x3f,0xc0,0x2a,0xd8,0x9b,0x15,0x6f,0xfd,0xbb,0x09,0x2f,0xdb,0xa7,0xcc,0xd5, - 0x25,0xb8,0x8f,0x48,0xed,0x66,0x30,0xa8,0x08,0xec,0x7e,0x5c,0x2e,0xcd,0x49,0x47,0x1c,0x48,0xd3,0x4e, + 0x25,0xb8,0x8f,0x48,0xed,0x66,0x30,0xa8,0x08,0xec,0x7e,0x58,0x2e,0xcd,0x49,0x47,0x1c,0x48,0xd3,0x4e, 0x61,0xbc,0xd3,0x10,0x79,0xa9,0x64,0x4e,0x58,0x94,0x45,0xfd,0xfc,0x23,0x82,0xc2,0x75,0x4e,0x01,0x3d, 0x7d,0x2d,0xe8,0xe9,0xd0,0x50,0x02,0x5f,0x68,0x4a,0xe0,0x4b,0x61,0xc9,0x0f,0x0f,0xc0,0x93,0x7f,0x8e, 0xcc,0x97,0xdf,0xe1,0x79,0x53,0xa6,0xad,0x97,0xe1,0x39,0x3d,0x87,0x92,0x40,0x7b,0x98,0xaa,0xfa,0xaa, 0x7f,0x3a,0x1c,0x0d,0x46,0x24,0x8a,0x3e,0xbd,0x43,0xef,0x44,0x58,0x09,0xb2,0x9b,0x11,0x0d,0x00,0x2c, 0xaf,0x40,0x0c,0xe8,0x35,0x1a,0x55,0x3e,0xa6,0x99,0x45,0x10,0x4d,0xf2,0x5c,0x4c,0xbb,0x18,0x99,0x87, 0xbd,0x64,0x9a,0xb6,0x8d,0x19,0xd5,0x65,0x12,0x94,0x05,0x88,0xba,0x1b,0x62,0xa8,0x9a,0x8c,0xf6,0x6e, - 0x71,0x41,0x00,0x76,0x95,0xec,0x1e,0x8e,0xb0,0x05,0x7b,0x98,0x24,0x19,0x14,0xd1,0x73,0x7a,0xb8,0xbf, - 0x3c,0x2d,0x17,0x04,0xb0,0xba,0x46,0xe2,0x9c,0xae,0xf3,0xe6,0xf2,0xa8,0xca,0xa6,0xd4,0x7e,0x9e,0xce, + 0x71,0x41,0x00,0x76,0x95,0xec,0x1e,0x8e,0xb0,0x05,0x7b,0x98,0x24,0x19,0x14,0xd1,0x73,0x7a,0xb8,0x3f, + 0x3f,0x2d,0x17,0x04,0xb0,0xba,0x46,0xe2,0x9c,0xae,0xf3,0xe6,0xf2,0xa8,0xca,0xa6,0xd4,0x7e,0x9e,0xce, 0xeb,0x20,0x2f,0x76,0x96,0xeb,0x35,0xa1,0xa1,0x21,0x21,0x1a,0x50,0x97,0xd2,0x93,0xde,0xcf,0xa5,0x43, 0x10,0x39,0x72,0x27,0x0e,0xd4,0x72,0x58,0x16,0x84,0xa3,0x2f,0x88,0xba,0xf0,0xa6,0x8d,0x36,0x3b,0xe7, 0xe8,0x6d,0xde,0xca,0x00,0xac,0xa6,0x2b,0xa2,0xd3,0x79,0xe2,0x16,0x89,0xbc,0x0d,0x09,0x0a,0xaa,0x82, 0x76,0x39,0x75,0x30,0x50,0x17,0x26,0x75,0x99,0xd6,0xf5,0x75,0x59,0x4d,0x91,0x3a,0x9a,0x0e,0x1f,0x53, 0x5a,0x59,0xe5,0xbf,0xf3,0x9e,0x4c,0x82,0x27,0x69,0x9d,0x4f,0x76,0x82,0xbd,0x79,0xb8,0xd8,0xa3,0xf3, 0x6a,0xef,0x22,0xda,0xd0,0xa4,0x50,0xc3,0x4b,0x22,0x4f,0x3c,0xa2,0xcc,0x03,0x4c,0x95,0xca,0x38,0xa9, - 0x13,0x4b,0xc6,0xbe,0xf6,0xe1,0x7d,0x56,0xd1,0x74,0xe4,0xbf,0x13,0xf1,0xab,0x76,0x09,0xb0,0x96,0x43, + 0x13,0x4b,0xc6,0xbe,0xf6,0xe1,0x43,0x56,0xd1,0x74,0xe4,0xbf,0x13,0xf1,0xab,0x76,0x09,0xb0,0x96,0x43, 0xd3,0xfb,0xcc,0x3c,0xa9,0xe5,0xc9,0xe5,0xa9,0x3f,0x18,0xb4,0x46,0xa0,0xfe,0x25,0x6d,0x80,0x25,0xd3, 0xde,0x37,0x40,0x3c,0x34,0x86,0x2b,0xec,0x00,0x08,0xbd,0x96,0xc3,0x9a,0x51,0xd1,0x7a,0xbd,0xb4,0x14, - 0x18,0xe1,0xff,0xc1,0xe0,0x40,0x7f,0x63,0x93,0x88,0x5a,0x9b,0x66,0x9f,0xde,0xd0,0xa2,0xce,0x20,0x2c, + 0x18,0xe1,0xff,0xc1,0xe0,0x40,0x7f,0x63,0x93,0x88,0x5a,0x9b,0x66,0x9f,0xde,0xd2,0xa2,0xce,0x20,0x2c, 0x08,0x88,0x28,0xbf,0x15,0x5e,0x07,0xe8,0xe4,0xf1,0x7c,0x6e,0x10,0xb1,0x60,0x44,0x59,0xb7,0x71,0x49, 0xc3,0xed,0xcd,0xc6,0x79,0xc0,0x02,0xad,0x2a,0xb9,0x65,0xfa,0x23,0xb3,0x8d,0x01,0xe8,0x88,0x3b,0x00, 0x32,0x03,0xeb,0xdc,0xce,0x18,0xbb,0x4e,0xc5,0xee,0xf1,0x98,0xca,0x2a,0x19,0x49,0x7c,0xf8,0xf0,0xe1, - 0x17,0x89,0x1b,0xd9,0xf8,0xe1,0xc1,0x97,0xb1,0x79,0xd1,0x65,0x50,0x7c,0xab,0x5c,0xf0,0xba,0xdc,0xd1, + 0x17,0x89,0x1b,0xd9,0xf8,0xe1,0xc1,0x97,0xb1,0x79,0xd1,0x65,0x50,0x7c,0xab,0x5c,0xf0,0xa6,0xdc,0xd1, 0x70,0x1f,0xd8,0x0f,0xb8,0x62,0xbd,0x61,0xe2,0x42,0x11,0x7b,0x34,0xcb,0x2f,0x88,0x70,0x32,0x8c,0xc2, 0x72,0x33,0xca,0xb1,0xcd,0x08,0xf9,0x28,0x82,0x4b,0x1a,0xd0,0x46,0x40,0x2b,0xab,0xaa,0xb2,0xf2,0xd7, - 0x62,0x15,0x4e,0xc2,0xe0,0x75,0xd6,0x10,0xb8,0x7c,0xdc,0x79,0x86,0xdc,0x40,0x65,0x8a,0xa7,0x60,0x19, + 0x62,0x15,0x4e,0xc2,0xe0,0x4d,0xd6,0x10,0xb8,0x7c,0xdc,0x79,0x86,0xdc,0x40,0x65,0x8a,0xa7,0x60,0x19, 0xd9,0x8f,0xef,0x02,0x4b,0xfe,0x5a,0xa7,0xef,0xd0,0x2e,0x0a,0xf6,0xec,0xaa,0xef,0x05,0x8b,0x7a,0x27, - 0xfb,0x34,0xc9,0x32,0x90,0x3c,0x54,0x67,0xf0,0xec,0xe8,0xcd,0xeb,0xd7,0x8f,0x9f,0xbc,0x79,0x77,0xfc, + 0xfb,0x34,0xc9,0x32,0x90,0x3c,0x54,0x67,0xf0,0xec,0xe8,0xed,0x9b,0x37,0x8f,0x9f,0xbc,0x7d,0x7f,0xfc, 0xec,0x69,0xd0,0xaa,0xbd,0x1a,0xf6,0x89,0x37,0x42,0xbd,0x94,0x37,0xc0,0x59,0xc4,0xdc,0x9c,0x27,0x04, 0x84,0x9d,0x6d,0xe8,0x76,0x60,0x04,0x3e,0xb1,0x7d,0x2c,0x8e,0x6f,0x18,0xba,0xc2,0x6e,0x7a,0x14,0x0b, 0x6b,0x31,0x3a,0x27,0x70,0x9b,0x9e,0x48,0xb6,0x3b,0x31,0x4f,0x93,0x73,0xde,0x11,0x01,0x9d,0xf7,0x7a, @@ -135,9 +135,9 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x56,0x40,0x30,0x81,0xc6,0xf5,0x1e,0x9f,0x33,0xb6,0x68,0xad,0x39,0xc5,0xba,0x76,0xda,0xa2,0xd5,0xcb, 0xe4,0x84,0xea,0x8c,0x98,0xba,0xbc,0xec,0xa6,0x25,0xd8,0x79,0x6d,0x80,0x64,0xa2,0x62,0xd9,0x4a,0xea, 0x80,0xac,0x26,0x31,0x44,0xf0,0x1c,0xe0,0xa4,0xde,0x06,0xeb,0xa8,0xb9,0xa4,0xe5,0x20,0x8e,0xb6,0x97, - 0x5b,0x2f,0x8b,0xa7,0xe5,0x35,0xa3,0xb5,0xb7,0x1a,0x97,0x0d,0x06,0xcb,0x61,0x3a,0x9d,0x3e,0xbb,0x02, + 0x5b,0x2f,0x8b,0xa7,0xe5,0x35,0xa3,0xb5,0x77,0x1a,0x97,0x0d,0x06,0xcb,0x61,0x3a,0x9d,0x3e,0xbb,0x02, 0x79,0x91,0xd7,0x34,0x7e,0x1a,0x49,0x60,0x30,0x1d,0x41,0x41,0xcf,0x37,0x51,0x1f,0x4f,0x8e,0x82,0x3f, - 0x2e,0xbb,0x55,0xaf,0x38,0xc5,0x3d,0xfd,0x61,0x5b,0xed,0x2a,0x30,0x47,0x13,0xa7,0xa4,0x60,0xc1,0x82, + 0x2c,0xbb,0x55,0xaf,0x38,0xc5,0x3d,0xfd,0x61,0x5b,0xed,0x2a,0x30,0x47,0x13,0xa7,0xa4,0x60,0xc1,0x82, 0x7b,0x05,0xfb,0xc2,0x5c,0x26,0xb3,0x69,0xfe,0x59,0xb6,0xe4,0x39,0x4f,0xcf,0xe9,0x90,0x23,0x54,0xb8, 0x82,0x9a,0x46,0x20,0x17,0x0b,0xe4,0xaf,0x79,0x38,0x93,0x64,0x85,0xf5,0xa4,0x93,0x72,0xf6,0x17,0xce, 0x6e,0x3a,0x95,0xef,0xa0,0x2c,0xf0,0x89,0xe6,0x3c,0x86,0xb2,0xd3,0x87,0x6d,0x82,0x6d,0x54,0x68,0xb4, @@ -146,204 +146,204 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x55,0x3f,0x15,0xa0,0x6f,0xc3,0xe2,0xcf,0x8f,0xe6,0xf0,0xee,0xd1,0xa8,0x5c,0xa5,0x32,0xa2,0x92,0x8f, 0x4c,0xc6,0x3a,0xe0,0xe9,0xad,0xa6,0xa9,0xb4,0xc5,0xfe,0x13,0x11,0x18,0xf8,0x4d,0x95,0x7b,0xd2,0x36, 0x19,0x52,0x42,0x19,0x20,0xb0,0x86,0x18,0x73,0x52,0xc8,0x86,0x11,0x59,0x48,0xe5,0x6d,0x9e,0x24,0x27, - 0x5e,0xe9,0x3f,0x50,0x28,0xed,0x08,0xb3,0xf1,0xe3,0xbb,0x17,0x47,0xe5,0x82,0x6a,0x22,0xa8,0xa4,0x4c, + 0x5e,0xe9,0x3f,0x50,0x28,0xed,0x08,0xb3,0xf1,0xc3,0xfb,0x97,0x47,0xe5,0x82,0x6a,0x22,0xa8,0xa4,0x4c, 0x27,0xd6,0xfb,0xaf,0x2f,0x0f,0x1e,0x5c,0xe4,0x2a,0xf8,0xbf,0xbe,0xac,0xef,0xbf,0xbe,0x78,0xcc,0x89, 0x71,0x2b,0xf1,0xe1,0x97,0x0f,0x2e,0x54,0x70,0xaf,0x9d,0x76,0xc4,0x05,0x55,0x3b,0xf1,0x00,0x05,0xf7, 0x5a,0x69,0x5f,0x3d,0xe1,0x82,0x27,0xed,0xc4,0xa7,0x9c,0x78,0x1a,0xf8,0x3c,0xec,0x67,0xc0,0x8d,0x30, 0xc2,0x6e,0x63,0x54,0xb1,0x19,0xaf,0x6a,0x0a,0xca,0xa9,0x88,0x40,0x58,0x36,0x5a,0x75,0x44,0x09,0x7d, 0x8c,0x59,0x13,0x51,0xa9,0xc6,0x63,0xb1,0xb8,0xb4,0x5e,0xf0,0x93,0xd3,0x91,0xa3,0xdd,0x9b,0xce,0xe2, 0xf6,0xa9,0xbf,0x68,0xc9,0x2c,0x77,0xc8,0xcc,0x7b,0xd8,0xec,0x25,0xc1,0xc9,0xa9,0xe6,0x49,0x4d,0x3a, - 0x11,0x60,0x5a,0x1f,0x96,0xf7,0x91,0xe1,0xe0,0xbd,0x86,0xa2,0x86,0x60,0xc6,0x12,0xd4,0x49,0xf9,0xe2, - 0xfd,0x1b,0xd3,0xc5,0x36,0x13,0xc8,0x7c,0xf3,0x36,0x87,0x07,0x7d,0x2b,0xe4,0x3d,0x84,0x9c,0xa3,0xbd, - 0x20,0x09,0xf6,0x58,0xf5,0x06,0x01,0x05,0x08,0xee,0x72,0xf8,0xa1,0xcc,0x8b,0x30,0x18,0xd0,0x24,0x1b, - 0x46,0x1a,0x15,0xed,0x25,0xe1,0xfe,0x21,0xf4,0x20,0x8e,0x54,0x19,0x07,0xd1,0x98,0xfe,0xc4,0x28,0xbb, - 0x97,0x46,0x7f,0x0c,0x70,0x2d,0x02,0xff,0x24,0x48,0x41,0xcd,0x06,0xa9,0x4f,0xd6,0xd1,0xbb,0x39,0x70, - 0x44,0xe4,0xe4,0x25,0xf0,0x09,0xa4,0x82,0xac,0x49,0x2f,0xf0,0xf3,0x69,0x99,0x13,0xb0,0xd3,0xd3,0x8c, - 0x10,0x1e,0x18,0x2e,0xe1,0x9f,0xf2,0xd9,0xfe,0xa2,0x9c,0xe6,0xb3,0x3c,0x9b,0xee,0xd7,0x39,0xa1,0x45, - 0x49,0x5b,0x15,0x5b,0xa9,0xf3,0xb4,0x6e,0x6c,0x59,0xbc,0x97,0x13,0xd3,0x07,0xe2,0x2e,0xc1,0x7d,0x5f, - 0xd3,0x41,0x8e,0x16,0x08,0xa5,0x7e,0xba,0xd9,0xef,0x76,0xb4,0xca,0x88,0xa7,0xa7,0xe3,0x14,0x4f,0x74, - 0x4c,0xed,0xa7,0xb3,0x86,0xdf,0x40,0xcc,0xee,0xd3,0xd8,0x88,0xd2,0x39,0xbd,0x83,0xad,0x60,0xe1,0x20, - 0x6d,0xf0,0x14,0x92,0x17,0xa7,0xf1,0x27,0xae,0xdd,0xad,0xfa,0xb0,0x26,0x06,0xb4,0x09,0x83,0x5f,0x0b, - 0x82,0x91,0x0e,0xf7,0x9d,0xfa,0xcb,0x40,0xbb,0x4e,0xd1,0xe6,0x1f,0x42,0x4e,0x8f,0xcf,0x56,0xe7,0x34, - 0xdf,0xe1,0x01,0xa1,0x9d,0xa8,0x7d,0x56,0xab,0x62,0xab,0x54,0xba,0x77,0x48,0x00,0x21,0x87,0x67,0x49, - 0x47,0x38,0x0b,0x95,0x74,0xc5,0x4d,0xf4,0x4d,0x72,0xa0,0x77,0xcf,0x08,0x99,0x09,0x48,0x89,0xfd,0x09, - 0x13,0x20,0x4c,0x0a,0x8c,0xf9,0x9b,0x31,0xfe,0xc4,0x27,0xa7,0x11,0x30,0x14,0x4d,0x61,0x78,0x52,0x9c, - 0x46,0xb1,0xcd,0xd9,0x0b,0x14,0x50,0x73,0x5c,0x80,0xe1,0x2d,0x29,0xe3,0xcf,0x43,0x89,0x37,0x7b,0x77, - 0xd1,0x56,0x63,0x5f,0x41,0xe0,0x14,0x35,0xd6,0x22,0x21,0xb3,0x42,0x49,0xde,0x81,0x34,0x80,0xc7,0x0d, - 0xb5,0x73,0xbe,0xa2,0x1d,0x14,0x5c,0xd2,0x12,0x06,0x30,0x32,0x68,0x88,0x9f,0xc6,0x0b,0xb6,0xdd,0x1d, - 0x45,0x6e,0xf1,0x14,0x4b,0x31,0xc5,0x22,0xc2,0x49,0x39,0xa7,0x77,0xf3,0x38,0x76,0x8f,0x0e,0x63,0xc5, - 0xa2,0x02,0x89,0x89,0xab,0x01,0x78,0xe2,0x73,0xfa,0x51,0x35,0xe3,0x99,0x18,0x6d,0xe1,0x61,0x6c,0x1e, - 0x7c,0x85,0xca,0xd8,0x7d,0x99,0xd6,0x28,0x8b,0x9f,0xb1,0xfc,0x78,0xe5,0xfe,0x4f,0xab,0x01,0xf0,0x50, - 0xba,0x11,0x3c,0x2a,0xcc,0x1d,0xfa,0x48,0x3f,0x6a,0x99,0x36,0x97,0x9c,0x1f,0x3c,0xc0,0xe2,0x51,0xaa, - 0x4e,0x18,0x42,0x28,0xf4,0x18,0x26,0x21,0x63,0x97,0x88,0x52,0x7b,0xee,0x55,0xc4,0xf3,0xb4,0x56,0xc9, - 0x83,0x70,0x51,0xe7,0xd9,0x9a,0x26,0x08,0x64,0x5b,0xf4,0x20,0x1f,0x36,0x90,0x81,0x3a,0x15,0x1c,0xc0, - 0xff,0x31,0xa0,0x1f,0x9b,0xdc,0x68,0xd5,0xb4,0x45,0xc6,0xb3,0x79,0x86,0xb7,0x30,0x48,0x03,0x7b,0x4e, - 0xd2,0x1a,0x69,0x5e,0x7c,0x68,0x76,0xa0,0x5e,0x0b,0x27,0x7d,0x30,0x94,0x83,0x40,0x01,0xe3,0xba,0x82, - 0xd0,0x1f,0xfd,0x89,0x0b,0x67,0x50,0x62,0xe6,0x9f,0xa9,0x54,0xf3,0x02,0x88,0xc6,0x7c,0x70,0x22,0x1e, - 0x36,0x1b,0xc2,0x93,0x5b,0x2a,0xc7,0xdd,0x83,0xcf,0x9f,0xd1,0x9e,0x32,0x48,0xeb,0x3a,0x16,0x44,0x8a, - 0xd1,0x2e,0x4f,0x02,0xe9,0xd0,0x0e,0xd0,0x14,0xf1,0xca,0xf5,0x4e,0x4a,0x7d,0x29,0x98,0xb4,0xd9,0xc1, - 0xcc,0xa6,0x13,0xa0,0x85,0x8d,0x40,0x75,0xf0,0xf8,0xc9,0xd1,0xd3,0x67,0xcf,0xbf,0xfd,0xee,0xc5,0xf7, - 0x3f,0xbc,0x7c,0xf5,0xfa,0xcd,0xdb,0x7f,0xbe,0x7b,0x7f,0xfc,0xe3,0x4f,0x3f,0xff,0xf2,0xaf,0x7f,0xa7, - 0xe7,0x13,0x62,0xe7,0x2f,0x2e,0xf3,0x0f,0x1f,0xe7,0x8b,0xa2,0x5c,0xfe,0x56,0xd5,0xcd,0xea,0xea,0xfa, - 0xd3,0xcd,0xef,0x07,0x87,0x0f,0xbf,0xf8,0xf2,0xab,0xbf,0xff,0xf7,0x3f,0xbe,0xde,0x7b,0x90,0x04,0xa3, - 0xc2,0x49,0xa8,0x1d,0xe1,0xa1,0xbc,0x54,0x21,0x0d,0xbe,0x6a,0x25,0x61,0x11,0x93,0xe0,0x85,0xf4,0xeb, - 0xc8,0x74,0xcb,0x70,0x4a,0xbd,0x48,0xca,0xe8,0xdb,0x1a,0x90,0x30,0x89,0x9e,0xf6,0x0c,0xc2,0x18,0x82, - 0xb6,0x3a,0x39,0x80,0xe1,0xcd,0x28,0xb5,0xd0,0xb3,0xae,0x71,0x7a,0x4d,0x12,0x3a,0x51,0x54,0xfd,0x5f, - 0x44,0x38,0x95,0x7b,0xc9,0xc4,0xe4,0xfe,0xfd,0x8b,0x41,0xf3,0xcd,0x37,0xff,0xd8,0xa7,0x8c,0xbf,0xfd, - 0x23,0x62,0x74,0x13,0xe6,0x89,0x7c,0x7c,0x44,0xbd,0xa5,0x22,0xf5,0x5e,0x32,0xfc,0xef,0xaf,0xa2,0xe8, - 0x9b,0x87,0x5f,0x7d,0xa5,0x09,0x76,0x8c,0xae,0x18,0x35,0x49,0xf3,0xe8,0xd1,0x3f,0xd6,0xb9,0x39,0x8e, - 0xfe,0x97,0x11,0xc8,0xed,0x75,0x95,0xb7,0xb4,0xfa,0x86,0x6a,0x23,0x64,0x75,0x2b,0x66,0x20,0x74,0xda, - 0xd7,0x5a,0x47,0xc2,0x07,0x66,0x0f,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0x39,0x18,0xe8, - 0x4f,0xcc,0x49,0x45,0xdf,0x61,0x3c,0x7c,0x76,0x17,0xc0,0xcc,0xdf,0xbe,0x3a,0xb6,0xd2,0x5b,0xe5,0x41, - 0x76,0xee,0x7d,0x8b,0xfd,0x47,0x1f,0xe6,0xad,0x02,0xa9,0x57,0x60,0xca,0x02,0x1a,0x2a,0x92,0x42,0x70, - 0x41,0x40,0x5e,0xba,0xbc,0x3a,0x9b,0xac,0x2a,0x48,0xbd,0xdd,0x2e,0x64,0xdc,0x9d,0xd4,0xfa,0x8c,0x1f, - 0xed,0xd0,0x21,0xaf,0xc0,0x5c,0xc6,0x5b,0xa7,0x53,0xd2,0xf9,0x68,0xb8,0x60,0x3e,0x0b,0x43,0x78,0x97, - 0x5d,0x3c,0xfb,0xb4,0x0c,0x83,0xf0,0x7f,0xd6,0xa3,0x5f,0x7f,0xad,0xff,0x16,0x85,0x34,0x25,0x44,0xbe, - 0x25,0xe1,0xc9,0xff,0x8c,0x4e,0xff,0x16,0x05,0x4e,0x15,0xd4,0x10,0x7f,0xb8,0x3d,0x57,0x27,0x5f,0x9c, - 0x8a,0x7c,0x02,0x8d,0x2f,0xca,0xab,0xb6,0x75,0x04,0xef,0x2e,0x5e,0x14,0x5a,0x0b,0x02,0x35,0xcc,0xd8, - 0xb0,0x28,0xaf,0xc3,0x68,0xff,0x1f,0x7f,0xff,0x32,0xfb,0x8a,0xa8,0xe9,0xb8,0xbb,0x68,0x90,0x39,0xb5, - 0xc7,0xd1,0xd2,0x9f,0x6e,0xb7,0x43,0x1f,0xfc,0x05,0xf2,0x58,0x77,0xea,0x92,0xc0,0x67,0x0e,0x69,0xf1, - 0xc9,0xa9,0x4f,0x80,0xfa,0x7a,0x49,0xaa,0xa0,0x5f,0x91,0xdd,0xaa,0x40,0x16,0xe8,0xd6,0xea,0xdb,0x58, - 0xe6,0x21,0xfa,0x36,0xd6,0xba,0xb7,0x0b,0x0b,0x25,0xb4,0x7f,0x08,0x09,0x83,0x6b,0x89,0xcb,0x27,0x5b, - 0x13,0x67,0xbe,0x22,0x22,0x12,0x44,0x66,0x27,0x49,0xf3,0x7b,0xad,0x8a,0x34,0xc5,0x91,0xb4,0xa9,0x4c, - 0x4b,0xdc,0xfa,0x35,0x78,0x46,0x04,0x96,0xcc,0x6d,0x88,0x01,0xa5,0x57,0x62,0x11,0xff,0x43,0xed,0x16, - 0xec,0x0e,0x3f,0xc3,0xcf,0x32,0x2a,0x78,0x31,0xd3,0xdc,0x5f,0x36,0x0d,0xb7,0x14,0x58,0x87,0x5f,0x8b, - 0x84,0x18,0xa6,0x79,0xd6,0x26,0x90,0x5e,0x0f,0x21,0x20,0xa6,0xdf,0x3b,0x78,0x04,0x5a,0x1a,0xa0,0xb3, - 0x6c,0x78,0x9e,0x6a,0xb1,0xdc,0xee,0x44,0x4b,0x61,0x98,0xc1,0xa2,0x87,0x64,0x1e,0xda,0x6c,0xa5,0x05, - 0x34,0xca,0xca,0x78,0x9d,0xb4,0x97,0x15,0x7f,0x22,0x04,0x4e,0x20,0x63,0x64,0x69,0xb0,0xcd,0x85,0xa2, - 0xa6,0xa3,0xb2,0xf2,0x6b,0x31,0xa2,0x7c,0x9b,0x32,0x14,0x5d,0x84,0xae,0xd4,0x0a,0xfd,0xb5,0x48,0xf3, - 0xb4,0x9d,0x8e,0xb7,0xe8,0x0f,0x15,0x11,0xaa,0x4f,0xbd,0x00,0xd2,0x1a,0x0d,0xf9,0x7a,0x06,0x5a,0x57, - 0x23,0xb4,0xb7,0x2d,0x37,0xa7,0x1b,0xb3,0xa1,0xa9,0x93,0x5a,0xe3,0xb7,0x5e,0xd7,0xe6,0x31,0x02,0x87, - 0xd8,0x16,0x37,0x38,0xb8,0xe7,0x39,0x6e,0xcc,0xd4,0xc8,0x03,0xbd,0xf7,0x4e,0x8d,0xb0,0xae,0x54,0x7c, - 0xa3,0x7a,0x6a,0x2a,0xe9,0x99,0x4e,0x18,0xa9,0x10,0x76,0x7b,0x86,0xd7,0x05,0x9c,0x3b,0x0d,0xb7,0x6d, - 0xa9,0x95,0xa2,0xbc,0xf7,0xcf,0xb5,0x4d,0xeb,0xeb,0xd4,0xf4,0xcc,0x47,0x35,0x7f,0x49,0x73,0xf1,0x19, - 0x6e,0xd4,0x4c,0x88,0x5d,0xaa,0xa2,0x45,0xe1,0x40,0xc5,0x09,0x84,0xb1,0xd9,0x66,0xa4,0xfe,0x84,0xbc, - 0xc0,0xd2,0x31,0xe1,0x6e,0xb6,0x5e,0xc3,0x9a,0xe3,0xec,0xe8,0xf1,0xeb,0xa3,0x67,0x2f,0xcf,0xce,0xfe, - 0x03,0xe9,0x83,0xa9,0xed,0xc1,0xff,0x84,0x27,0xe9,0xfe,0xef,0xa7,0xf8,0xf3,0xeb,0xf4,0xd7,0xbd,0x5f, - 0xf7,0x7f,0x1d,0x9e,0xfe,0x2d,0x8e,0xc6,0xbf,0x3e,0xf8,0xf5,0x81,0x21,0xfd,0xb2,0xff,0x48,0xbc,0xe1, - 0x10,0xe3,0xd8,0x33,0x24,0xfa,0xf5,0xc1,0x9e,0x90,0xcc,0x7b,0xa0,0x3f,0x1b,0x9f,0x20,0x7e,0xb0,0x27, - 0xa4,0xee,0x1f,0x4c,0x4e,0xdb,0x6a,0xa7,0x45,0xa9,0x65,0x9b,0xa2,0xc7,0x78,0x33,0xd9,0x3a,0x32,0x02, - 0x31,0xf6,0x0d,0xf6,0x42,0xff,0x73,0x62,0x74,0x89,0x8f,0xf1,0x53,0x62,0x58,0x37,0xb5,0xa8,0x2c,0x37, - 0xe9,0x50,0x8f,0x78,0xe6,0xd4,0x7f,0x09,0x1d,0x42,0x90,0x69,0x65,0x89,0xbb,0x9e,0x82,0xd5,0x12,0x45, - 0x10,0x6a,0x8a,0xbc,0x89,0xa8,0x0b,0x3a,0xe5,0x89,0xee,0xde,0x59,0xac,0xea,0x66,0xe7,0x3c,0xdb,0x49, - 0xad,0xcd,0xd4,0x30,0xd0,0x66,0x28,0x23,0xee,0xb5,0x16,0x0c,0x26,0xbd,0xca,0x2c,0xcc,0x15,0x4d,0x90, - 0x7c,0x50,0x24,0xf8,0x60,0xd4,0xce,0x86,0x14,0x2d,0xad,0x81,0x96,0x42,0xf3,0xc8,0x55,0xe5,0xbc,0x1f, - 0x6d,0x1a,0xc4,0x08,0x0e,0x41,0x7f,0xd1,0x3e,0x1d,0xbb,0xb8,0xbc,0xa3,0x4e,0xd1,0x56,0x15,0x5c,0x8d, - 0x16,0xd9,0xba,0x14,0x1c,0x5a,0x75,0xb9,0xaa,0x26,0x99,0xff,0x95,0x6f,0x6c,0x70,0xdb,0xe0,0xc0,0x60, - 0x7b,0xa2,0xaa,0x85,0x8a,0xb2,0x04,0x87,0xaa,0x1c,0x2a,0x0c,0x3f,0x77,0x1e,0x54,0x7f,0x61,0x6f,0xec, - 0xf4,0xa0,0x28,0x63,0x50,0xc6,0x62,0xc7,0x06,0x36,0x65,0xd0,0x7b,0x76,0x5b,0xb8,0xdb,0x07,0xa2,0x47, - 0x99,0xf9,0xbf,0xe4,0x06,0xd1,0xc0,0xb1,0xe1,0xa7,0x55,0xd6,0xef,0xd6,0xd0,0x0f,0x8c,0x59,0xaf,0x1d, - 0xec,0x7a,0x8d,0xd1,0xb1,0x45,0xac,0x67,0x0c,0xd9,0x2d,0x29,0x32,0x2f,0x23,0x09,0xdb,0xb4,0x77,0xa5, - 0x61,0xb9,0xda,0x95,0xf8,0x66,0xed,0x5b,0xd6,0x05,0xeb,0xf5,0xb6,0x1d,0x2f,0xa5,0xd5,0x37,0x8b,0xf3, - 0x72,0xde,0x4e,0x3b,0x2f,0xcb,0x79,0x96,0x16,0xbd,0x76,0xed,0xff,0x3b,0x96,0xf0,0x22,0x61,0x63,0xe3, - 0xdb,0x45,0xd1,0x6b,0x08,0x6f,0x88,0x68,0x36,0x84,0x60,0x9b,0xbc,0xd0,0x32,0x50,0x8e,0x38,0xfe,0x26, - 0x39,0x18,0x0c,0x5e,0x11,0x89,0x3f,0x9c,0xcd,0x4b,0x58,0x82,0xb1,0x32,0x9d,0x38,0xd6,0xfa,0x79,0x5e, - 0x30,0xfd,0xeb,0xd5,0x5a,0x77,0xba,0x4e,0x3d,0x1f,0x07,0x41,0x8f,0x67,0xcb,0xb8,0x2b,0xf2,0x13,0x29, - 0xf8,0xc3,0x28,0xb6,0x5d,0x70,0xb5,0x4e,0x7a,0xfb,0xea,0xa4,0xd8,0xc4,0xd1,0xa4,0xaf,0xa9,0x63,0xe3, - 0x8c,0x08,0x53,0xfb,0xd5,0x5c,0x5b,0x48,0x5a,0x8b,0x4c,0x6d,0x1a,0x2f,0x5c,0x7e,0x28,0xda,0x83,0x2a, - 0xb1,0x32,0x2c,0x05,0x31,0x67,0x72,0x30,0xca,0x1f,0x55,0xc6,0x94,0x2c,0x17,0xc3,0xcc,0x93,0xfc,0xf4, - 0x94,0x70,0xa5,0xe3,0x17,0xfa,0xb4,0xef,0x27,0x59,0x5b,0x90,0x75,0xba,0xe9,0x33,0xee,0xa0,0x62,0xa7, - 0x1b,0xd7,0xc7,0x95,0x75,0x47,0x30,0x7e,0x04,0x46,0xa5,0x9a,0x79,0x22,0x2e,0x16,0x07,0x7f,0xb3,0x7f, - 0x68,0xa5,0xc4,0xdc,0x65,0x3a,0x71,0x0a,0x75,0x18,0x79,0xb5,0xcd,0x5a,0x67,0xd6,0xb9,0x59,0x75,0x6c, - 0x72,0x5b,0x66,0xea,0xe6,0xb2,0x67,0x3e,0x46,0x5d,0xb4,0xe1,0x59,0xb4,0x9d,0x14,0xa7,0x30,0xec,0xa4, - 0x1f,0x58,0x08,0x47,0x7e,0xc3,0xcb,0x2d,0x63,0x54,0x2d,0x0d,0xa9,0x7a,0x0c,0x85,0x35,0x85,0x31,0xae, - 0xbe,0x39,0x1c,0x3b,0xe3,0x56,0x5b,0x0e,0x38,0x80,0xfb,0xcd,0xe6,0xbd,0xe6,0xd9,0xca,0x79,0x8b,0xe1, - 0x99,0x54,0x64,0x3d,0x2f,0x54,0xe1,0x3a,0x72,0x29,0x1d,0x21,0x6e,0x7c,0xbd,0x3e,0x18,0xb9,0xa5,0x37, - 0x65,0xf7,0x1b,0x5a,0x71,0x67,0x99,0x5b,0x44,0xa3,0x62,0x7f,0x7f,0x14,0x55,0x3c,0xa8,0x93,0x62,0xaf, - 0xb1,0x66,0xb7,0x95,0xab,0xf4,0xaa,0x03,0x48,0xf0,0xde,0x68,0x22,0xf8,0x76,0x24,0x98,0x0d,0x2b,0x19, - 0x75,0x5f,0x2c,0x5a,0xa2,0x09,0x58,0x4d,0x17,0x04,0x58,0xc5,0x23,0xe7,0x2c,0x42,0x80,0x85,0x0a,0x06, - 0x83,0x2b,0x68,0x1f,0x21,0x8c,0xb4,0xd0,0xe5,0xaa,0xb9,0x30,0xe7,0xb0,0x4b,0xba,0x71,0x00,0x83,0x6d, - 0x18,0x19,0x2c,0xa5,0x8f,0x44,0x3e,0xe7,0x2a,0xfa,0x11,0xa0,0xd9,0xa5,0x83,0x70,0xb7,0x32,0x85,0x88, - 0x6b,0xd9,0xad,0x06,0x03,0xbb,0xc1,0xa8,0x02,0xfd,0x4c,0xa5,0xa1,0xc3,0x64,0xdd,0x43,0xc2,0x53,0xe3, - 0x89,0xfb,0x89,0x6d,0x69,0x27,0x49,0xdd,0xe9,0x60,0x50,0x3a,0x80,0xd4,0x6b,0x02,0xf9,0x95,0x3c,0x82, - 0x43,0xca,0xae,0xb2,0xea,0xc6,0x3b,0x9f,0x3d,0x02,0x93,0xc7,0x81,0x61,0x6f,0xa4,0xb2,0xf5,0xda,0x54, - 0xb6,0x7b,0x38,0x12,0x81,0x86,0x06,0xcf,0x8f,0xd9,0x0d,0xb0,0x0a,0x71,0x4b,0x7e,0x82,0xb3,0x2b,0xaf, - 0x5d,0xdb,0x13,0xdb,0x76,0xdd,0x6d,0xbb,0xd5,0x32,0xbc,0x72,0x74,0xe3,0xce,0xf8,0xcb,0xb4,0xee,0x81, - 0xf5,0x79,0x17,0x83,0x6c,0xad,0x21,0x75,0xdd,0xd4,0x17,0x59,0x77,0x3a,0xdd,0x33,0xe2,0x85,0x6d,0x4d, - 0x67,0x6e,0xd7,0xd1,0xf8,0xb6,0xcd,0xc6,0x1b,0x36,0x99,0x66,0x72,0x4c,0x6f,0x08,0x1c,0x7e,0x6e,0x4f, - 0xf8,0x9b,0xed,0xda,0xd5,0x05,0x51,0x4f,0x10,0xf9,0x02,0xaa,0x03,0x3b,0x2f,0x5f,0xfc,0x1d,0xab,0xb1, - 0x5e,0x7f,0xfd,0x15,0x7e,0xdd,0xe7,0xc7,0x46,0x6f,0x17,0xdd,0xea,0x09,0x95,0xd3,0xd7,0xb8,0x1d,0x71, - 0x36,0xd5,0x3f,0x5f,0x65,0x71,0xa1,0x32,0x3a,0xd0,0xb2,0x2a,0x3d,0x9f,0x67,0xf1,0xee,0x6e,0xa5,0x20, - 0xd1,0x90,0x97,0x03,0x6d,0x09,0xb1,0xd2,0x99,0x07,0x1b,0x0f,0xc9,0x7c,0xf4,0xce,0xa3,0x1e,0x85,0xf3, - 0x60,0xf0,0xa0,0x60,0xbf,0x08,0xd6,0x89,0x3e,0xd0,0x14,0xba,0x6f,0x28,0xe8,0xaa,0x3a,0xea,0x58,0x38, - 0x65,0xb4,0x16,0x7c,0x78,0xab,0xf6,0x8f,0x3b,0xb9,0xdc,0xb7,0xef,0xb5,0xa9,0x80,0x46,0x01,0x13,0x23, - 0xdc,0x79,0x23,0x66,0xbd,0x1a,0x15,0xc0,0x82,0x72,0xd8,0xa4,0x17,0xca,0xb2,0xc4,0x93,0xcb,0x7c,0x3e, - 0xad,0xb2,0x02,0xcc,0x17,0xac,0x3f,0x08,0x92,0xe7,0x0b,0xc5,0xca,0x4d,0x7e,0x47,0x46,0x5a,0xdf,0x14, - 0x93,0xe7,0x29,0xcc,0xe4,0x6f,0x9c,0x3a,0x75,0x58,0x80,0xe1,0x46,0xd5,0x22,0xc9,0x6b,0xf2,0x09,0x30, - 0xb9,0x7e,0xa4,0x54,0x02,0x5e,0x4a,0xa0,0xbf,0x5c,0xe2,0x88,0x58,0x5b,0xea,0x0f,0x17,0xd1,0xcf,0x94, - 0x3e,0x2b,0x8e,0xa4,0x21,0x4a,0xb7,0xcf,0x9c,0xae,0x3b,0xce,0xe9,0x76,0x10,0xf4,0xfc,0x7e,0x42,0x6b, - 0xf7,0x62,0xca,0xe9,0xfa,0x59,0xea,0x9f,0xd3,0x78,0xd9,0xf3,0xb2,0x11,0x75,0xac,0x1e,0x18,0xbd,0x54, - 0xf6,0x25,0xf9,0xe4,0xe5,0xc0,0xb0,0x28,0x82,0xf2,0xb6,0xf0,0x0b,0x17,0x7e,0xe1,0xa2,0x5d,0x98,0xf0, - 0x8d,0x9b,0xf1,0x4f,0xdd,0x1d,0x63,0x91,0x74,0x1b,0xed,0xea,0x83,0xb6,0xe0,0x13,0x16,0xe7,0x6b,0x42, - 0x6b,0x45,0x3f,0x9e,0xbf,0x88,0x57,0xeb,0x63,0x8b,0xf4,0xc4,0x25,0x68,0x37,0x6c,0x39,0xf0,0x10,0x73, - 0xaf,0x17,0xd9,0xee,0x2c,0x08,0xe5,0xce,0xce,0xca,0xf3,0xb3,0xb3,0x80,0x8d,0x55,0xe4,0xd9,0xff,0xa8, - 0xae,0xc6,0xe8,0x9d,0x64,0xc4,0x25,0x91,0xed,0x97,0xe5,0x6a,0x3e,0xa5,0xd9,0x26,0xc4,0x41,0xb3,0xb5, - 0xfb,0x5b,0xc1,0x46,0x82,0x5d,0x6c,0xb8,0x5e,0x83,0xd8,0xa2,0x1c,0xbd,0x79,0xf2,0xfa,0x19,0xbc,0x5a, - 0xea,0xfc,0x9c,0xad,0x6d,0xe9,0x43,0x76,0x52,0x20,0x2a,0x16,0xf3,0xc6,0x83,0xae,0x59,0x77,0x89,0x25, - 0xe0,0x79,0xbd,0x5a,0x1c,0x95,0xab,0xa2,0xd9,0xdb,0xa3,0x83,0xcb,0x8d,0xf1,0x9e,0xaf,0x4e,0x17,0x44, - 0x8c,0x6f,0xff,0x55,0x10,0xfa,0xd5,0x4d,0x5d,0x64,0x8d,0xe7,0x1e,0xf8,0x34,0xab,0x27,0x55,0x0e,0xcb, - 0x79,0x9e,0x1d,0x46,0xf7,0x25,0xa1,0xfb,0x43,0x22,0x17,0xcb,0xa1,0xbf,0x39,0x8d,0x84,0xb8,0x24,0x8c, - 0x8d,0x4a,0x08,0x95,0xf2,0x63,0x4d,0x8f,0xf3,0x64,0x37,0x1f,0x0c,0x1e,0xe3,0x24,0xfc,0x0c,0x36,0xf0, - 0xb1,0xc0,0xd6,0xc6,0x57,0x54,0x65,0xd7,0xb4,0xba,0x49,0xea,0x71,0x6d,0x88,0x4e,0xa7,0xfe,0xf8,0x57, - 0x41,0x1b,0xad,0xa2,0xf2,0x34,0x37,0x29,0xb5,0xb4,0x84,0xe5,0x46,0xa4,0xe6,0xf4,0x3a,0xc7,0xab,0x4b, - 0xea,0x9e,0x38,0x83,0x81,0x47,0xf1,0xb7,0x20,0x4c,0xef,0x7f,0x71,0x4b,0x6a,0xba,0xee,0x48,0xb4,0x04, - 0x0d,0x0c,0x3b,0x31,0xf1,0xb2,0xd6,0xee,0xe9,0x73,0x2d,0x42,0x36,0xce,0x46,0x18,0x10,0x9a,0xb3,0xb0, - 0xa7,0xf6,0x47,0xd9,0x18,0xf2,0xa6,0x3d,0x4c,0x28,0x70,0xaa,0xf5,0xba,0xd9,0x65,0x13,0xd4,0x5d,0x3c, - 0x87,0x93,0xf1,0xc4,0xd1,0x61,0x31,0x75,0xc7,0xce,0x79,0x03,0xab,0xff,0xa2,0x6c,0x40,0xff,0xb2,0xe5, - 0xbd,0x07,0x0e,0x6f,0x3c,0xf3,0x80,0x2e,0x08,0xd2,0xda,0x85,0xee,0xb8,0xb1,0x67,0x2f,0xd3,0xe8,0x8b, - 0xf4,0x93,0x25,0x25,0x15,0x4b,0xf0,0x34,0xa9,0xd8,0xa8,0x43,0xaa,0x4e,0x15,0x80,0x93,0x86,0xfd,0x4f, - 0xb1,0x8f,0xf8,0xa9,0xeb,0x32,0xea,0xaa,0x16,0x03,0xd9,0x42,0x8b,0x8e,0xcc,0x6e,0x71,0x9e,0x49,0x02, - 0xe8,0xeb,0x75,0x05,0x4b,0x2d,0x0d,0xd7,0xe3,0x22,0xae,0xc6,0xe1,0x3d,0x42,0x30,0x7c,0x86,0xf0,0x28, - 0x08,0x19,0x61,0xae,0xcd,0x58,0x41,0xd8,0x19,0xeb,0xdb,0xc2,0xc3,0xd7,0xcf,0xec,0x3e,0xbf,0x63,0xc8, - 0xfe,0x68,0x3c,0x53,0x07,0xb7,0x91,0x47,0xae,0x4f,0xfe,0x5e,0x5b,0xaf,0x85,0x34,0x86,0x0d,0x9a,0xb1, - 0xf6,0x6d,0x4e,0x05,0xcd,0xf9,0x1d,0xf3,0x57,0xe0,0xa9,0xed,0x8c,0x6f,0x9e,0x61,0xe1,0x0e,0x1b,0xd5, - 0x6d,0x4d,0x4d,0x93,0x40,0xe3,0x34,0xaa,0x1f,0x95,0x06,0x0a,0x6b,0x60,0x37,0x10,0x96,0x49,0x79,0x52, - 0x9f,0x9e,0x02,0x40,0x41,0x2b,0xcc,0x98,0x14,0x1a,0xa7,0x61,0xc5,0xfe,0x8d,0xd0,0xa5,0x3c,0x0d,0xb1, - 0xf1,0x63,0x2c,0x7b,0x41,0x0f,0x3d,0x34,0xe5,0xdb,0x8e,0x88,0xae,0x18,0x77,0xf6,0x5c,0x95,0xf4,0xfa, - 0xc9,0x19,0xd7,0x61,0x76,0x96,0xa3,0x1e,0xf4,0x1d,0xc8,0xe3,0xcc,0x2b,0x94,0x39,0x12,0x5d,0xf7,0x2a, - 0xdf,0xc4,0xcd,0x38,0xf3,0xdb,0xd3,0x25,0x9e,0x86,0x9f,0x6b,0x92,0x69,0x18,0xfc,0x41,0xc3,0x9f,0x6b, - 0xd6,0x2b,0x48,0x6c,0x5f,0xdc,0xc4,0xde,0xb0,0x3f,0x74,0xe5,0x70,0xe3,0xcc,0xa8,0xf0,0x69,0x3b,0x75, - 0xd1,0xc4,0xb8,0x89,0xa1,0xe7,0xf7,0xbe,0x7f,0xe1,0xc8,0x1d,0x11,0xf8,0xb4,0xb9,0x1e,0x2d,0x29,0xf0, - 0x74,0x41,0x57,0x70,0xab,0xc2,0x98,0x6d,0x15,0x2f,0xcd,0xcc,0x7b,0x52,0x00,0x5b,0xdd,0xa4,0x22,0xf4, - 0x42,0xf0,0x55,0x8d,0xe6,0xf0,0xe0,0xa3,0x03,0x8a,0xdd,0x1e,0xf1,0x07,0x8d,0xf6,0x59,0xf3,0x01,0xfb, - 0x11,0x87,0x32,0xd4,0xde,0x45,0x5d,0xd1,0x8b,0x81,0x68,0xda,0x8f,0xcb,0x5a,0x2c,0x81,0x64,0x7d,0x19, - 0xe0,0x6e,0x37,0xa3,0xad,0xfd,0x51,0x88,0x53,0x3a,0x1d,0xb1,0x16,0xfd,0x81,0xab,0xe9,0x0a,0x28,0x42, - 0x89,0xeb,0x80,0x5d,0x50,0x9e,0x5c,0x17,0x04,0x77,0xa7,0xc9,0x2d,0xb2,0x44,0xcd,0xe5,0x2c,0x8d,0x52, - 0x53,0x23,0x9f,0x1b,0x40,0x11,0x45,0x84,0x6f,0xeb,0x53,0xc5,0x1f,0xd6,0xf4,0x21,0xc0,0x76,0x9c,0xc7, - 0xf2,0x7d,0xbe,0x19,0xe9,0xfe,0x26,0xe5,0x06,0x28,0xf3,0x8e,0x21,0xe5,0x05,0xe6,0xde,0x1f,0x93,0x4d, - 0xfc,0xdc,0xc0,0x64,0xa6,0x99,0x60,0xf0,0x39,0x73,0xe2,0xda,0x98,0x33,0xbf,0x85,0x71,0x4d,0x8c,0xe7, - 0x4d,0xff,0x10,0x4a,0x19,0x82,0x3e,0x06,0x8b,0x93,0x92,0x78,0x36,0xfa,0x43,0x63,0xa8,0x23,0x5a,0x6f, - 0xf9,0xbe,0x24,0x14,0x1f,0xc5,0xf2,0x5c,0x6f,0x36,0xdd,0x61,0x98,0x41,0xd0,0x01,0x99,0x57,0xd4,0x5f, - 0xa2,0x5e,0xf5,0xe2,0x98,0x56,0x2a,0xaf,0x15,0x99,0xe9,0x51,0xcf,0xe2,0xe7,0x20,0x0b,0x38,0xba,0x06, - 0x0c,0xfc,0xe3,0x5c,0xad,0x96,0xb0,0x2e,0xa4,0x29,0x8c,0xa0,0xf4,0xd7,0xf1,0x37,0x1a,0x1d,0x5e,0x82, - 0x9b,0xc8,0xd9,0x46,0x0a,0x50,0x98,0xc3,0x38,0x50,0x35,0xc3,0x45,0xfe,0x89,0x48,0x19,0x37,0x3e,0x3a, - 0xfb,0xea,0xc4,0x24,0x9b,0x29,0x2a,0x1f,0xd5,0xa3,0x12,0x7c,0x26,0x7f,0x6a,0x72,0x69,0xdc,0x54,0x09, - 0x37,0x33,0xa1,0x93,0x88,0x66,0x1d,0xb5,0x4c,0x24,0x22,0x01,0x3d,0x44,0xee,0xbd,0x89,0x80,0xa8,0x26, - 0x44,0xf2,0x70,0xba,0xde,0x21,0x73,0xb7,0x31,0x9e,0xbb,0xbd,0xd5,0xe7,0x6d,0x63,0xe7,0x02,0xc8,0x16, - 0x03,0xa1,0xa1,0x60,0x00,0x46,0x6a,0x03,0xde,0x59,0x28,0x9d,0x6b,0x30,0x68,0xa6,0x44,0xea,0x95,0x48, - 0xa5,0x44,0x99,0x1c,0x17,0x61,0xea,0xa4,0x13,0x54,0xaa,0x24,0xe8,0xa3,0xb1,0xc4,0x39,0x8b,0x25,0x50, - 0x12,0x7f,0x4b,0x5f,0xb8,0xf2,0xba,0xbb,0xf5,0x9b,0x93,0xec,0x54,0xa5,0xc9,0x2e,0xad,0x9a,0x62,0xbe, - 0x16,0xd2,0x18,0x34,0xfb,0x2e,0x7c,0x22,0xf2,0x38,0x95,0x0f,0xf9,0x04,0x04,0x7d,0x42,0xe7,0x23,0x1a, - 0x0a,0xb4,0x7b,0x65,0x10,0x8d,0x4b,0x62,0xde,0xe2,0x77,0x5a,0x48,0x66,0x8a,0xc2,0xf0,0x7f,0x97,0x55, - 0xda,0x25,0xfd,0x1c,0x69,0xff,0xd7,0x32,0x61,0x42,0xda,0x4a,0x24,0xcb,0xe8,0xb6,0xec,0x33,0xfd,0x9b, - 0xc1,0x03,0xca,0xb6,0x60,0x36,0x45,0x63,0x7c,0x3a,0xed,0x39,0x00,0x22,0xf6,0x9e,0x46,0x18,0xb2,0xd3, - 0x24,0x6a,0x82,0x13,0x79,0xf6,0x64,0x8b,0x80,0xc1,0x8a,0x3a,0x87,0x67,0x9c,0x43,0xa9,0x63,0xef,0xb9, - 0x4f,0x44,0x0b,0x9f,0xe1,0xe7,0x4e,0xb8,0x9f,0xbc,0x0a,0x1b,0x19,0xec,0xb8,0xb2,0xd4,0x4e,0x45,0xe0, - 0x0a,0x94,0x94,0x45,0x9a,0x5f,0xef,0xd2,0xd0,0xa3,0x6e,0x02,0xf8,0x90,0xc7,0x61,0x49,0x13,0xdf,0xcd, - 0xa8,0x9d,0xd9,0x84,0x5d,0xbd,0x57,0x9e,0x7d,0x14,0x46,0xef,0xb8,0x43,0xad,0xe5,0x67,0x87,0x6e,0x5b, - 0x3c,0xfc,0xf5,0x7a,0x2f,0x7a,0xe0,0xe1,0xf1,0xe6,0xe4,0x90,0xc6,0x16,0xb8,0x0a,0xdf,0xb9,0x03,0xbd, - 0x7b,0x6c,0x18,0x80,0x7b,0x25,0xd2,0xcd,0x57,0xc6,0xeb,0xd5,0x84,0xf9,0xa8,0x1c,0x61,0x59,0x3c,0xaa, - 0x0c,0xe7,0xff,0x8a,0x85,0x61,0xe6,0x03,0x27,0x8a,0xb1,0x92,0x04,0xdb,0xf4,0x13,0x6f,0xc5,0x1b,0x87, - 0x30,0x12,0x5a,0xdf,0xa4,0x1a,0xde,0x5b,0xa6,0xc4,0x4c,0x35,0x23,0x67,0x40,0x64,0x97,0x92,0x7d,0x08, - 0x8e,0xd2,0x25,0x55,0x98,0x4d,0x19,0x17,0xd8,0xaf,0x53,0x42,0x88,0xe9,0xa3,0xdc,0xf4,0x2b,0x45,0xe8, - 0x91,0xea,0x86,0x87,0x07,0x13,0x48,0xec,0x08,0x59,0xab,0x4a,0x49,0xe3,0xba,0x83,0x4e,0xe2,0xf1,0x33, - 0xf5,0xaa,0x52,0x41,0xab,0x8d,0x9d,0xcb,0xb2,0xfc,0x08,0x7f,0xf8,0x9f,0x75,0x97,0xdd,0x20,0x7e,0xf6, - 0x06,0xf1,0xac,0x90,0xae,0x7d,0x27,0x3a,0x77,0x6e,0x59,0xcf,0x61,0x27,0xcb,0x0f,0x5c,0x22,0x15,0xda, - 0xf6,0x7f,0x32,0x52,0xdf,0x40,0x9b,0x5a,0xfb,0xdf,0x51,0x1f,0x7e,0xda,0xea,0xc2,0x4f,0x5e,0x17,0x76, - 0x3f,0x40,0x9e,0xf5,0xa2,0xa0,0xfd,0xd7,0xe3,0x63,0x04,0x2f,0x76,0xda,0xd1,0x5a,0x43,0x93,0x8d,0xf4, - 0xbb,0x34,0xd1,0x12,0x2e,0xff,0x48,0xe4,0xcc,0xb2,0x4a,0xb4,0xd8,0x29,0x4b,0xa6,0x95,0x71,0x3b,0x8f, - 0x46,0x53,0x23,0x09,0x4e,0x9c,0x30,0xb1,0xa1,0xe7,0xc6,0x49,0x81,0x1a,0x96,0xe4,0x35,0xa7,0xa1,0x57, - 0xe5,0x77,0xde,0xa9,0x87,0x45,0xa3,0x6a,0xd8,0x96,0xa2,0xad,0x48,0xd2,0xce,0x88,0x56,0xc0,0x69,0xe7, + 0x11,0x60,0x5a,0x1f,0x96,0xf7,0x91,0xe1,0xe0,0xbd,0x86,0xa2,0x86,0x60,0xc6,0x12,0xd4,0x49,0xf9,0xf2, + 0xc3,0x5b,0xd3,0xc5,0x36,0x13,0xc8,0x7c,0xf3,0x36,0x87,0x07,0x7d,0x2b,0xe4,0x3d,0x84,0x9c,0xa3,0xbd, + 0x20,0x09,0xf6,0x58,0xf5,0x06,0x01,0x05,0x08,0xee,0x72,0xf8,0x6b,0x99,0x17,0x61,0x30,0xa0,0x49,0x36, + 0x8c,0x34,0x2a,0xda,0x4b,0xc2,0xfd,0x43,0xe8,0x41,0x1c,0xa9,0x32,0x0e,0xa2,0x31,0xfd,0x89,0x51,0x76, + 0x2f,0x8d,0xfe,0x18,0xe0,0x5a,0x04,0xfe,0x49,0x90,0x82,0x9a,0x0d,0x52,0x9f,0xac,0xa3,0x77,0x73,0xe0, + 0x88,0xc8,0xc9,0x4b,0xe0,0x13,0x48,0x05,0x59,0x93,0x5e,0xe0,0xe7,0xd3,0x32,0x27,0x60,0xa7,0xa7,0x19, + 0x21,0x3c,0x30,0x5c,0xc2,0x3f,0xe5,0xb3,0xfd,0x45,0x39,0xcd,0x67,0x79,0x36,0xdd,0xaf,0x73,0x42,0x8b, + 0x92,0xb6,0x2a,0xb6,0x52,0xe7,0x69,0xdd,0xd8,0xb2,0x78,0x2f,0x27,0xa6,0x0f,0xc4,0x5d,0x82,0xfb,0xbe, + 0xa6,0x83,0x1c,0x2d,0x10,0x4a,0xfd,0x74,0xb3,0xdf,0xed,0x68,0x95,0x11,0x4f,0x4f,0xc7,0x29,0x9e,0xe8, + 0x98,0xda,0x4f,0x67,0x0d,0xbf,0x81,0x98,0xdd,0xa7,0xb1,0x11,0xa5,0x73,0x7a,0x07,0x5b,0xc1,0xc2,0x41, + 0xda,0xe0,0x29,0x24,0x2f,0x4e,0xe3,0x4f,0x5c,0xbb,0x5b,0xf5,0x61,0x4d,0x0c,0x68,0x13,0x06,0xbf,0x14, + 0x04,0x23,0x1d,0xee,0x3b,0xf5,0x97,0x81,0x76,0x9d,0xa2,0xcd,0x3f,0x84,0x9c,0x1e,0x9f,0xad,0xce,0x69, + 0xbe,0xc3,0x03,0x42,0x3b,0x51,0xfb,0xac,0x56,0xc5,0x56,0xa9,0x74,0xef,0x90,0x00,0x42,0x0e,0xcf,0x92, + 0x8e,0x70,0x16,0x2a,0xe9,0x8a,0x9b,0xe8,0x9b,0xe4,0x40,0xef,0x9e,0x11,0x32,0x13,0x90,0x12,0xfb,0x13, + 0x26,0x40,0x98,0x14,0x18,0xf3,0x37,0x63,0xfc,0x89,0x4f,0x4e,0x23,0x60,0x28,0x9a,0xc2,0xf0,0xa4,0x38, + 0x8d,0x62,0x9b,0xb3,0x17,0x28,0xa0,0xe6,0xb8,0x00,0xc3,0x5b,0x52,0xc6,0x9f,0x87,0x12,0x6f,0xf6,0xee, + 0xa2,0xad,0xc6,0xbe,0x82,0xc0,0x29,0x6a,0xac,0x45,0x42,0x66,0x85,0x92,0xbc,0x03,0x69,0x00,0x8f,0x1b, + 0x6a,0xe7,0x7c,0x45,0x3b,0x28,0xb8,0xa4,0x25,0x0c,0x60,0x64,0xd0,0x10,0x3f,0x8d,0x17,0x6c,0xbb,0x3b, + 0x8a,0xdc,0xe2,0x29,0x96,0x62,0x8a,0x45,0x84,0x93,0x72,0x4e,0xef,0xe6,0x71,0xec,0x1e,0x1d,0xc6,0x8a, + 0x45,0x05,0x12,0x13,0x57,0x03,0xf0,0xc4,0xe7,0xf4,0xa3,0x6a,0xc6,0x33,0x31,0xda,0xc2,0xc3,0xd8,0x3c, + 0xf8,0x0a,0x95,0xb1,0xfb,0x32,0xad,0x51,0x16,0x3f,0x63,0xf9,0xf1,0xca,0xfd,0x9f,0x56,0x03,0xe0,0xa1, + 0x74,0x23,0x78,0x54,0x98,0x3b,0xf4,0x91,0x7e,0xd4,0x32,0x6d,0x2e,0x39,0x3f,0x78,0x80,0xc5,0xa3,0x54, + 0x9d,0x30,0x84,0x50,0xe8,0x31,0x4c,0x42,0xc6,0x2e,0x11,0xa5,0xf6,0xdc,0xab,0x88,0xe7,0x69,0xad,0x92, + 0x07,0xe1,0xa2,0xce,0xb3,0x35,0x4d,0x10,0xc8,0xb6,0xe8,0x41,0x3e,0x6c,0x20,0x03,0x75,0x2a,0x38,0x80, + 0xff,0x63,0x40,0x3f,0x36,0xb9,0xd1,0xaa,0x69,0x8b,0x8c,0x67,0xf3,0x0c,0x6f,0x61,0x90,0x06,0xf6,0x9c, + 0xa4,0x35,0xd2,0xbc,0xf8,0xd0,0xec,0x40,0xbd,0x16,0x4e,0xfa,0x60,0x28,0x07,0x81,0x02,0xc6,0x75,0x05, + 0xa1,0x3f,0xfa,0x13,0x17,0xce,0xa0,0xc4,0xcc,0x3f,0x53,0xa9,0xe6,0x05,0x10,0x8d,0xf9,0xe0,0x44,0x3c, + 0x6c,0x36,0x84,0x27,0xb7,0x54,0x8e,0xbb,0x07,0x9f,0x3f,0xa3,0x3d,0x65,0x90,0xd6,0x75,0x2c,0x88,0x14, + 0xa3,0x5d,0x9e,0x04,0xd2,0xa1,0x1d,0xa0,0x29,0xe2,0x95,0xeb,0x9d,0x94,0xfa,0x52,0x30,0x69,0xb3,0x83, + 0x99,0x4d,0x27,0x40,0x0b,0x1b,0x81,0xea,0xe0,0xf1,0x93,0xa3,0xa7,0xcf,0x9e,0x7f,0xfb,0xe2,0xe5,0x77, + 0xdf,0xbf,0x7a,0xfd,0xe6,0xed,0xbb,0x7f,0xbe,0xff,0x70,0xfc,0xc3,0x8f,0x3f,0xfd,0xfc,0xaf,0x7f,0xa7, + 0xe7,0x13,0x62,0xe7,0x2f,0x2e,0xf3,0x5f,0x3f,0xce,0x17,0x45,0xb9,0xfc,0xad,0xaa,0x9b,0xd5,0xd5,0xf5, + 0xa7,0x9b,0xdf,0x0f,0x0e,0x1f,0x7e,0xf1,0xe5,0x57,0x7f,0xff,0xef,0x7f,0x7c,0xbd,0xf7,0x20,0x09,0x46, + 0x85,0x93,0x50,0x3b,0xc2,0x43,0x79,0xa9,0x42,0x1a,0x7c,0xd5,0x4a,0xc2,0x22,0x26,0xc1,0x4b,0xe9,0xd7, + 0x91,0xe9,0x96,0xe1,0x94,0x7a,0x91,0x94,0xd1,0xb7,0x35,0x20,0x61,0x12,0x3d,0xed,0x19,0x84,0x31,0x04, + 0x6d,0x75,0x72,0x00,0xc3,0x9b,0x51,0x6a,0xa1,0x67,0x5d,0xe3,0xf4,0x9a,0x24,0x74,0xa2,0xa8,0xfa,0xbf, + 0x88,0x70,0x2a,0xf7,0x92,0x89,0xc9,0xfd,0xfb,0x17,0x83,0xe6,0x9b,0x6f,0xfe,0xb1,0x4f,0x19,0x7f,0xfb, + 0x47,0xc4,0xe8,0x26,0xcc,0x13,0xf9,0xf8,0x88,0x7a,0x4b,0x45,0xea,0xbd,0x64,0xf8,0xdf,0x5f,0x45,0xd1, + 0x37,0x0f,0xbf,0xfa,0x4a,0x13,0xec,0x18,0x5d,0x31,0x6a,0x92,0xe6,0xd1,0xa3,0x7f,0xac,0x73,0x73,0x1c, + 0xfd,0x2f,0x23,0x90,0xdb,0xeb,0x2a,0x6f,0x69,0xf5,0x0d,0xd5,0x46,0xc8,0xea,0x56,0xcc,0x40,0xe8,0xb4, + 0xaf,0xb5,0x8e,0x84,0x0f,0xcc,0x1e,0x1a,0x89,0xa8,0x05,0xe6,0xff,0xc4,0x0c,0x81,0x00,0x73,0x30,0xd0, + 0x9f,0x98,0x93,0x8a,0xbe,0xc3,0x78,0xf8,0xec,0x2e,0x80,0x99,0xbf,0x7d,0x7d,0x6c,0xa5,0xb7,0xca,0x83, + 0xec,0xdc,0xfb,0x16,0xfb,0x8f,0x3e,0xcc,0x5b,0x05,0x52,0xaf,0xc0,0x94,0x05,0x34,0x54,0x24,0x85,0xe0, + 0x82,0x80,0xbc,0x74,0x79,0x75,0x36,0x59,0x55,0x90,0x7a,0xbb,0x5d,0xc8,0xb8,0x3b,0xa9,0xf5,0x19,0x3f, + 0xda,0xa1,0x43,0x5e,0x81,0xb9,0x8c,0xb7,0x4e,0xa7,0xa4,0xf3,0xd1,0x70,0xc1,0x7c,0x16,0x86,0xf0,0x3e, + 0xbb,0x78,0xf6,0x69,0x19,0x06,0xe1,0xff,0xac,0x47,0xbf,0xfc,0x52,0xff,0x2d,0x0a,0x69,0x4a,0x88,0x7c, + 0x4b,0xc2,0x93,0xff,0x19,0x9d,0xfe,0x2d,0x0a,0x9c,0x2a,0xa8,0x21,0xfe,0x70,0x7b,0xae,0x4e,0xbe,0x38, + 0x15,0xf9,0x04,0x1a,0x5f,0x94,0x57,0x6d,0xeb,0x08,0xde,0x5d,0xbc,0x28,0xb4,0x16,0x04,0x6a,0x98,0xb1, + 0x61,0x51,0x5e,0x87,0xd1,0xfe,0x3f,0xfe,0xfe,0x65,0xf6,0x15,0x51,0xd3,0x71,0x77,0xd1,0x20,0x73,0x6a, + 0x8f,0xa3,0xa5,0x3f,0xdd,0x6e,0x87,0x3e,0xf8,0x0b,0xe4,0xb1,0xee,0xd4,0x25,0x81,0xcf,0x1c,0xd2,0xe2, + 0x93,0x53,0x9f,0x00,0xf5,0xf5,0x92,0x54,0x41,0xbf,0x22,0xbb,0x55,0x81,0x2c,0xd0,0xad,0xd5,0xb7,0xb1, + 0xcc,0x43,0xf4,0x6d,0xac,0x75,0x6f,0x17,0x16,0x4a,0x68,0xff,0x10,0x12,0x06,0xd7,0x12,0x97,0x4f,0xb6, + 0x26,0xce,0x7c,0x45,0x44,0x24,0x88,0xcc,0x4e,0x92,0xe6,0xf7,0x5a,0x15,0x69,0x8a,0x23,0x69,0x53,0x99, + 0x96,0xb8,0xf5,0x6b,0xf0,0x8c,0x08,0x2c,0x99,0xdb,0x10,0x03,0x4a,0xaf,0xc4,0x22,0xfe,0x87,0xda,0x2d, + 0xd8,0x1d,0x7e,0x86,0x9f,0x65,0x54,0xf0,0x72,0xa6,0xb9,0xbf,0x6c,0x1a,0x6e,0x29,0xb0,0x0e,0xbf,0x16, + 0x09,0x31,0x4c,0xf3,0xac,0x4d,0x20,0xbd,0x1e,0x42,0x40,0x4c,0xbf,0x77,0xf0,0x08,0xb4,0x34,0x40,0x67, + 0xd9,0xf0,0x3c,0xd5,0x62,0xb9,0xdd,0x89,0x96,0xc2,0x30,0x83,0x45,0x0f,0xc9,0x3c,0xb4,0xd9,0x4a,0x0b, + 0x68,0x94,0x95,0xf1,0x3a,0x69,0x2f,0x2b,0xfe,0x44,0x08,0x9c,0x40,0xc6,0xc8,0xd2,0x60,0x9b,0x0b,0x45, + 0x4d,0x47,0x65,0xe5,0xd7,0x62,0x44,0xf9,0x36,0x65,0x28,0xba,0x08,0x5d,0xa9,0x15,0xfa,0x6b,0x91,0xe6, + 0x69,0x3b,0x1d,0x6f,0xd1,0x1f,0x2a,0x22,0x54,0x9f,0x7a,0x01,0xa4,0x35,0x1a,0xf2,0xf5,0x0c,0xb4,0xae, + 0x46,0x68,0x6f,0x5b,0x6e,0x4e,0x37,0x66,0x43,0x53,0x27,0xb5,0xc6,0x6f,0xbd,0xae,0xcd,0x63,0x04,0x0e, + 0xb1,0x2d,0x6e,0x70,0x70,0xcf,0x73,0xdc,0x98,0xa9,0x91,0x07,0x7a,0xef,0x9d,0x1a,0x61,0x5d,0xa9,0xf8, + 0x46,0xf5,0xd4,0x54,0xd2,0x33,0x9d,0x30,0x52,0x21,0xec,0xf6,0x0c,0xaf,0x0b,0x38,0x77,0x1a,0x6e,0xdb, + 0x52,0x2b,0x45,0x79,0xef,0x9f,0x6b,0x9b,0xd6,0xd7,0xa9,0xe9,0x99,0x8f,0x6a,0xfe,0x92,0xe6,0xe2,0x33, + 0xdc,0xa8,0x99,0x10,0xbb,0x54,0x45,0x8b,0xc2,0x81,0x8a,0x13,0x08,0x63,0xb3,0xcd,0x48,0xfd,0x09,0x79, + 0x81,0xa5,0x63,0xc2,0xdd,0x6c,0xbd,0x86,0x35,0xc7,0xd9,0xd1,0xe3,0x37,0x47,0xcf,0x5e,0x9d,0x9d,0xfd, + 0x07,0xd2,0x07,0x53,0xdb,0x83,0xff,0x09,0x4f,0xd2,0xfd,0xdf,0x4f,0xf1,0xe7,0x97,0xe9,0x2f,0x7b,0xbf, + 0xec,0xff,0x32,0x3c,0xfd,0x5b,0x1c,0x8d,0x7f,0x79,0xf0,0xcb,0x03,0x43,0xfa,0x65,0xff,0x91,0x78,0xc3, + 0x21,0xc6,0xb1,0x67,0x48,0xf4,0xcb,0x83,0x3d,0x21,0x99,0xf7,0x40,0x7f,0x36,0x3e,0x41,0xfc,0x60,0x4f, + 0x48,0xdd,0x3f,0x98,0x9c,0xb6,0xd5,0x4e,0x8b,0x52,0xcb,0x36,0x45,0x8f,0xf1,0x66,0xb2,0x75,0x64,0x04, + 0x62,0xec,0x1b,0xec,0x85,0xfe,0xe7,0xc4,0xe8,0x12,0x1f,0xe3,0xa7,0xc4,0xb0,0x6e,0x6a,0x51,0x59,0x6e, + 0xd2,0xa1,0x1e,0xf1,0xcc,0xa9,0xff,0x12,0x3a,0x84,0x20,0xd3,0xca,0x12,0x77,0x3d,0x05,0xab,0x25,0x8a, + 0x20,0xd4,0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb3,0x58,0xd5,0xcd,0xce,0x79,0xb6,0x93, + 0x5a,0x9b,0xa9,0x61,0xa0,0xcd,0x50,0x46,0xdc,0x6b,0x2d,0x18,0x4c,0x7a,0x95,0x59,0x98,0x2b,0x9a,0x20, + 0xf9,0xa0,0x48,0xf0,0xc1,0xa8,0x9d,0x0d,0x29,0x5a,0x5a,0x03,0x2d,0x85,0xe6,0x91,0xab,0xca,0x79,0x3f, + 0xda,0x34,0x88,0x11,0x1c,0x82,0xfe,0xa2,0x7d,0x3a,0x76,0x71,0x79,0x47,0x9d,0xa2,0xad,0x2a,0xb8,0x1a, + 0x2d,0xb2,0x75,0x29,0x38,0xb4,0xea,0x72,0x55,0x4d,0x32,0xff,0x2b,0xdf,0xd8,0xe0,0xb6,0xc1,0x81,0xc1, + 0xf6,0x44,0x55,0x0b,0x15,0x65,0x09,0x0e,0x55,0x39,0x54,0x18,0x7e,0xee,0x3c,0xa8,0xfe,0xc2,0xde,0xd8, + 0xe9,0x41,0x51,0xc6,0xa0,0x8c,0xc5,0x8e,0x0d,0x6c,0xca,0xa0,0xf7,0xec,0xb6,0x70,0xb7,0x0f,0x44,0x8f, + 0x32,0xf3,0x7f,0xc9,0x0d,0xa2,0x81,0x63,0xc3,0x8f,0xab,0xac,0xdf,0xad,0xa1,0x1f,0x18,0xb3,0x5e,0x3b, + 0xd8,0xf5,0x1a,0xa3,0x63,0x8b,0x58,0xcf,0x18,0xb2,0x5b,0x52,0x64,0x5e,0x46,0x12,0xb6,0x69,0xef,0x4a, + 0xc3,0x72,0xb5,0x2b,0xf1,0xcd,0xda,0xb7,0xac,0x0b,0xd6,0xeb,0x6d,0x3b,0x5e,0x4a,0xab,0x6f,0x16,0xe7, + 0xe5,0xbc,0x9d,0x76,0x5e,0x96,0xf3,0x2c,0x2d,0x7a,0xed,0xda,0xff,0x77,0x2c,0xe1,0x45,0xc2,0xc6,0xc6, + 0xb7,0x8b,0xa2,0xd7,0x10,0xde,0x10,0xd1,0x6c,0x08,0xc1,0x36,0x79,0xa1,0x65,0xa0,0x1c,0x71,0xfc,0x4d, + 0x72,0x30,0x18,0xbc,0x26,0x12,0x7f,0x38,0x9b,0x97,0xb0,0x04,0x63,0x65,0x3a,0x71,0xac,0xf5,0xf3,0xbc, + 0x60,0xfa,0xd7,0xab,0xb5,0xee,0x74,0x9d,0x7a,0x3e,0x0e,0x82,0x1e,0xcf,0x96,0x71,0x57,0xe4,0x27,0x52, + 0xf0,0x87,0x51,0x6c,0xbb,0xe0,0x6a,0x9d,0xf4,0xf6,0xd5,0x49,0xb1,0x89,0xa3,0x49,0xdf,0x50,0xc7,0xc6, + 0x19,0x11,0xa6,0xf6,0xab,0xb9,0xb6,0x90,0xb4,0x16,0x99,0xda,0x34,0x5e,0xb8,0xfc,0x50,0xb4,0x07,0x55, + 0x62,0x65,0x58,0x0a,0x62,0xce,0xe4,0x60,0x94,0x3f,0xaa,0x8c,0x29,0x59,0x2e,0x86,0x99,0x27,0xf9,0xe9, + 0x29,0xe1,0x4a,0xc7,0x2f,0xf4,0x69,0xdf,0x4f,0xb2,0xb6,0x20,0xeb,0x74,0xd3,0x67,0xdc,0x41,0xc5,0x4e, + 0x37,0xae,0x8f,0x2b,0xeb,0x8e,0x60,0xfc,0x08,0x8c,0x4a,0x35,0xf3,0x44,0x5c,0x2c,0x0e,0xfe,0x66,0xff, + 0xd0,0x4a,0x89,0xb9,0xcb,0x74,0xe2,0x14,0xea,0x30,0xf2,0x6a,0x9b,0xb5,0xce,0xac,0x73,0xb3,0xea,0xd8, + 0xe4,0xb6,0xcc,0xd4,0xcd,0x65,0xcf,0x7c,0x8c,0xba,0x68,0xc3,0xb3,0x68,0x3b,0x29,0x4e,0x61,0xd8,0x49, + 0x3f,0xb0,0x10,0x8e,0xfc,0x86,0x97,0x5b,0xc6,0xa8,0x5a,0x1a,0x52,0xf5,0x18,0x0a,0x6b,0x0a,0x63,0x5c, + 0x7d,0x73,0x38,0x76,0xc6,0xad,0xb6,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xcd,0xb3,0x95,0xf3,0x16,0xc3, + 0x33,0xa9,0xc8,0x7a,0x5e,0xa8,0xc2,0x75,0xe4,0x52,0x3a,0x42,0xdc,0xf8,0x7a,0x7d,0x30,0x72,0x4b,0x6f, + 0xca,0xee,0x37,0xb4,0xe2,0xce,0x32,0xb7,0x88,0x46,0xc5,0xfe,0xfe,0x28,0xaa,0x78,0x50,0x27,0xc5,0x5e, + 0x63,0xcd,0x6e,0x2b,0x57,0xe9,0x55,0x07,0x90,0xe0,0xbd,0xd1,0x44,0xf0,0xed,0x48,0x30,0x1b,0x56,0x32, + 0xea,0xbe,0x58,0xb4,0x44,0x13,0xb0,0x9a,0x2e,0x08,0xb0,0x8a,0x47,0xce,0x59,0x84,0x00,0x0b,0x15,0x0c, + 0x06,0x57,0xd0,0x3e,0x42,0x18,0x69,0xa1,0xcb,0x55,0x73,0x61,0xce,0x61,0x97,0x74,0xe3,0x00,0x06,0xdb, + 0x30,0x32,0x58,0x4a,0x1f,0x89,0x7c,0xce,0x55,0xf4,0x23,0x40,0xb3,0x4b,0x07,0xe1,0x6e,0x65,0x0a,0x11, + 0xd7,0xb2,0x5b,0x0d,0x06,0x76,0x83,0x51,0x05,0xfa,0x99,0x4a,0x43,0x87,0xc9,0xba,0x87,0x84,0xa7,0xc6, + 0x13,0xf7,0x13,0xdb,0xd2,0x4e,0x92,0xba,0xd3,0xc1,0xa0,0x74,0x00,0xa9,0xd7,0x04,0xf2,0x2b,0x79,0x04, + 0x87,0x94,0x5d,0x65,0xd5,0x8d,0x77,0x3e,0x7b,0x04,0x26,0x8f,0x03,0xc3,0xde,0x48,0x65,0xeb,0xb5,0xa9, + 0x6c,0xf7,0x70,0x24,0x02,0x0d,0x0d,0x9e,0x1f,0xb3,0x1b,0x60,0x15,0xe2,0x96,0xfc,0x04,0x67,0x57,0x5e, + 0xbb,0xb6,0x27,0xb6,0xed,0xba,0xdb,0x76,0xab,0x65,0x78,0xe5,0xe8,0xc6,0x9d,0xf1,0x97,0x69,0xdd,0x03, + 0xeb,0xf3,0x2e,0x06,0xd9,0x5a,0x43,0xea,0xba,0xa9,0x2f,0xb2,0xee,0x74,0xba,0x67,0xc4,0x0b,0xdb,0x9a, + 0xce,0xdc,0xae,0xa3,0xf1,0x6d,0x9b,0x8d,0x37,0x6c,0x32,0xcd,0xe4,0x98,0xde,0x10,0x38,0xfc,0xdc,0x9e, + 0xf0,0x37,0xdb,0xb5,0xab,0x0b,0xa2,0x9e,0x20,0xf2,0x05,0x54,0x07,0x76,0x5e,0xbe,0xf8,0x3b,0x56,0x63, + 0xbd,0xfe,0xfa,0x2b,0xfc,0xba,0xcf,0x8f,0x8d,0xde,0x2e,0xba,0xd5,0x13,0x2a,0xa7,0xaf,0x71,0x3b,0xe2, + 0x6c,0xaa,0x7f,0xbe,0xca,0xe2,0x42,0x65,0x74,0xa0,0x65,0x55,0x7a,0x3e,0xcf,0xe2,0xdd,0xdd,0x4a,0x41, + 0xa2,0x21,0x2f,0x07,0xda,0x12,0x62,0xa5,0x33,0x0f,0x36,0x1e,0x92,0xf9,0xe8,0x9d,0x47,0x3d,0x0a,0xe7, + 0xc1,0xe0,0x41,0xc1,0x7e,0x11,0xac,0x13,0x7d,0xa0,0x29,0x74,0xdf,0x50,0xd0,0x55,0x75,0xd4,0xb1,0x70, + 0xca,0x68,0x2d,0xf8,0xf0,0x56,0xed,0x1f,0x77,0x72,0xb9,0x6f,0x3f,0x68,0x53,0x01,0x8d,0x02,0x26,0x46, + 0xb8,0xf3,0x56,0xcc,0x7a,0x35,0x2a,0x80,0x05,0xe5,0xb0,0x49,0x2f,0x94,0x65,0x89,0x27,0x97,0xf9,0x7c, + 0x5a,0x65,0x05,0x98,0x2f,0x58,0x7f,0x10,0x24,0xcf,0x17,0x8a,0x95,0x9b,0xfc,0x8e,0x8c,0xb4,0xbe,0x29, + 0x26,0xcf,0x53,0x98,0xc9,0xdf,0x38,0x75,0xea,0xb0,0x00,0xc3,0x8d,0xaa,0x45,0x92,0xd7,0xe4,0x13,0x60, + 0x72,0xfd,0x48,0xa9,0x04,0xbc,0x94,0x40,0x7f,0xb9,0xc4,0x11,0xb1,0xb6,0xd4,0x1f,0x2e,0xa2,0x9f,0x29, + 0x7d,0x56,0x1c,0x49,0x43,0x94,0x6e,0x9f,0x39,0x5d,0x77,0x9c,0xd3,0xed,0x20,0xe8,0xf9,0xc3,0x84,0xd6, + 0xee,0xe5,0x94,0xd3,0xf5,0xb3,0xd4,0x3f,0xa7,0xf1,0xb2,0xe7,0x65,0x23,0xea,0x58,0x3d,0x30,0x7a,0xa9, + 0xec,0x4b,0xf2,0xc9,0xcb,0x81,0x61,0x51,0x04,0xe5,0x6d,0xe1,0x17,0x2e,0xfc,0xc2,0x45,0xbb,0x30,0xe1, + 0x1b,0x37,0xe3,0x9f,0xba,0x3b,0xc6,0x22,0xe9,0x36,0xda,0xd5,0x07,0x6d,0xc1,0x27,0x2c,0xce,0xd7,0x84, + 0xd6,0x8a,0x7e,0x3c,0x7f,0x11,0xaf,0xd6,0xc7,0x16,0xe9,0x89,0x4b,0xd0,0x6e,0xd8,0x72,0xe0,0x21,0xe6, + 0x5e,0x2f,0xb2,0xdd,0x59,0x10,0xca,0x9d,0x9d,0x95,0xe7,0x67,0x67,0x01,0x1b,0xab,0xc8,0xb3,0xff,0x51, + 0x5d,0x8d,0xd1,0x3b,0xc9,0x88,0x4b,0x22,0xdb,0x2f,0xcb,0xd5,0x7c,0x4a,0xb3,0x4d,0x88,0x83,0x66,0x6b, + 0xf7,0xb7,0x82,0x8d,0x04,0xbb,0xd8,0x70,0xbd,0x06,0xb1,0x45,0x39,0x7a,0xf3,0xe4,0xf5,0x33,0x78,0xb5, + 0xd4,0xf9,0x39,0x5b,0xdb,0xd2,0x87,0xec,0xa4,0x40,0x54,0x2c,0xe6,0x8d,0x07,0x5d,0xb3,0xee,0x12,0x4b, + 0xc0,0xf3,0x7a,0xb5,0x38,0x2a,0x57,0x45,0xb3,0xb7,0x47,0x07,0x97,0x1b,0xe3,0x3d,0x5f,0x9d,0x2e,0x88, + 0x18,0xdf,0xfe,0xab,0x20,0xf4,0xab,0x9b,0xba,0xc8,0x1a,0xcf,0x3d,0xf0,0x69,0x56,0x4f,0xaa,0x1c,0x96, + 0xf3,0x3c,0x3b,0x8c,0xee,0x4b,0x42,0xf7,0x87,0x44,0x2e,0x96,0x43,0x7f,0x73,0x1a,0x09,0x71,0x49,0x18, + 0x1b,0x95,0x10,0x2a,0xe5,0xc7,0x9a,0x1e,0xe7,0xc9,0x6e,0x3e,0x18,0x3c,0xc6,0x49,0xf8,0x19,0x6c,0xe0, + 0x63,0x81,0xad,0x8d,0xaf,0xa8,0xca,0xae,0x69,0x75,0x93,0xd4,0xe3,0xda,0x10,0x9d,0x4e,0xfd,0xf1,0xaf, + 0x82,0x36,0x5a,0x45,0xe5,0x69,0x6e,0x52,0x6a,0x69,0x09,0xcb,0x8d,0x48,0xcd,0xe9,0x75,0x8e,0x57,0x97, + 0xd4,0x3d,0x71,0x06,0x03,0x8f,0xe2,0x6f,0x41,0x98,0xde,0xff,0xe2,0x96,0xd4,0x74,0xdd,0x91,0x68,0x09, + 0x1a,0x18,0x76,0x62,0xe2,0x65,0xad,0xdd,0xd3,0xe7,0x5a,0x84,0x6c,0x9c,0x8d,0x30,0x20,0x34,0x67,0x61, + 0x4f,0xed,0x8f,0xb2,0x31,0xe4,0x4d,0x7b,0x98,0x50,0xe0,0x54,0xeb,0x75,0xb3,0xcb,0x26,0xa8,0xbb,0x78, + 0x0e,0x27,0xe3,0x89,0xa3,0xc3,0x62,0xea,0x8e,0x9d,0xf3,0x06,0x56,0xff,0x45,0xd9,0x80,0xfe,0x65,0xcb, + 0x7b,0x0f,0x1c,0xde,0x7a,0xe6,0x01,0x5d,0x10,0xa4,0xb5,0x0b,0xdd,0x71,0x63,0xcf,0x5e,0xa6,0xd1,0x17, + 0xe9,0x27,0x4b,0x4a,0x2a,0x96,0xe0,0x69,0x52,0xb1,0x51,0x87,0x54,0x9d,0x2a,0x00,0x27,0x0d,0xfb,0x9f, + 0x62,0x1f,0xf1,0x53,0xd7,0x65,0xd4,0x55,0x2d,0x06,0xb2,0x85,0x16,0x1d,0x99,0xdd,0xe2,0x3c,0x93,0x04, + 0xd0,0xd7,0xeb,0x0a,0x96,0x5a,0x1a,0xae,0xc7,0x45,0x5c,0x8d,0xc3,0x7b,0x84,0x60,0xf8,0x0c,0xe1,0x51, + 0x10,0x32,0xc2,0x5c,0x9b,0xb1,0x82,0xb0,0x33,0xd6,0xb7,0x85,0x87,0xaf,0x9f,0xda,0x7d,0x7e,0xc7,0x90, + 0xfd,0xd1,0x78,0xa6,0x0e,0x6e,0x23,0x8f,0x5c,0x9f,0xfc,0xbd,0xb6,0x5e,0x0b,0x69,0x0c,0x1b,0x34,0x63, + 0xed,0xdb,0x9c,0x0a,0x9a,0xf3,0x3b,0xe6,0xaf,0xc0,0x33,0xdb,0x19,0xdf,0x3c,0xc3,0xc2,0x1d,0x36,0xaa, + 0xdb,0x9a,0x9a,0x26,0x81,0xc6,0x69,0x54,0x3f,0x2a,0x0d,0x14,0xd6,0xc0,0x6e,0x20,0x2c,0x93,0xf2,0xa4, + 0x3e,0x3d,0x05,0x80,0x82,0x56,0x98,0x31,0x29,0x34,0x4e,0xc3,0x8a,0xfd,0x1b,0xa1,0x4b,0x79,0x16,0x62, + 0xe3,0xc7,0x58,0xf6,0x82,0x1e,0x7a,0x68,0xca,0x5f,0x3b,0x22,0xba,0x62,0xdc,0xd9,0x73,0x55,0xd2,0xeb, + 0x27,0x67,0x5c,0x87,0xd9,0x59,0x8e,0x7a,0xd0,0x77,0x20,0x8f,0x33,0xaf,0x50,0xe6,0x48,0x74,0xdd,0xab, + 0x7c,0x13,0x37,0xe3,0xcc,0x6f,0x4f,0x97,0x78,0x16,0x7e,0xae,0x49,0xa6,0x61,0xf0,0x07,0x0d,0x7f,0xae, + 0x59,0xaf,0x20,0xb1,0x7d,0x71,0x13,0x7b,0xc3,0x7e,0xd7,0x95,0xc3,0x8d,0x33,0xa3,0xc2,0xa7,0xed,0xd4, + 0x45,0x13,0xe3,0x26,0x86,0x9e,0xdf,0xfb,0xfe,0xa5,0x23,0x77,0x44,0xe0,0xd3,0xe6,0x7a,0xb4,0xa4,0xc0, + 0xd3,0x05,0x5d,0xc1,0xad,0x0a,0x63,0xb6,0x55,0xbc,0x32,0x33,0xef,0x49,0x01,0x6c,0x75,0x93,0x8a,0xd0, + 0x0b,0xc1,0x57,0x35,0x9a,0xc3,0x83,0x8f,0x0e,0x28,0x76,0x7b,0xc4,0x1f,0x34,0xda,0x67,0xcd,0x07,0xec, + 0x47,0x1c,0xca,0x50,0x7b,0x17,0x75,0x45,0x2f,0x06,0xa2,0x69,0x3f,0x2e,0x6b,0xb1,0x04,0x92,0xf5,0x65, + 0x80,0xbb,0xdd,0x8c,0xb6,0xf6,0x47,0x21,0x4e,0xe9,0x74,0xc4,0x5a,0xf4,0x07,0xae,0xa6,0x2b,0xa0,0x08, + 0x25,0xae,0x03,0x76,0x41,0x79,0x72,0x5d,0x10,0xdc,0x9d,0x26,0xb7,0xc8,0x12,0x35,0x97,0xb3,0x34,0x4a, + 0x4d,0x8d,0x7c,0x6e,0x00,0x45,0x14,0x11,0xbe,0xad,0x4f,0x15,0x7f,0x58,0xd3,0x87,0x00,0xdb,0x71,0x1e, + 0xcb,0xf7,0xf9,0x66,0xa4,0xfb,0x9b,0x94,0x1b,0xa0,0xcc,0x3b,0x86,0x94,0x17,0x98,0x7b,0x7f,0x4c,0x36, + 0xf1,0x73,0x03,0x93,0x99,0x66,0x82,0xc1,0xe7,0xcc,0x89,0x6b,0x63,0xce,0xfc,0x16,0xc6,0x35,0x31,0x9e, + 0x37,0xfd,0x43,0x28,0x65,0x08,0xfa,0x18,0x2c,0x4e,0x4a,0xe2,0xd9,0xe8,0x0f,0x8d,0xa1,0x8e,0x68,0xbd, + 0xe5,0xfb,0x92,0x50,0x7c,0x14,0xcb,0x73,0xbd,0xd9,0x74,0x87,0x61,0x06,0x41,0x07,0x64,0x5e,0x51,0x7f, + 0x89,0x7a,0xd5,0x8b,0x63,0x5a,0xa9,0xbc,0x56,0x64,0xa6,0x47,0x3d,0x8b,0x9f,0x83,0x2c,0xe0,0xe8,0x1a, + 0x30,0xf0,0x8f,0x73,0xb5,0x5a,0xc2,0xba,0x90,0xa6,0x30,0x82,0xd2,0x5f,0xc7,0xdf,0x68,0x74,0x78,0x09, + 0x6e,0x22,0x67,0x1b,0x29,0x40,0x61,0x0e,0xe3,0x40,0xd5,0x0c,0x17,0xf9,0x27,0x22,0x65,0xdc,0xf8,0xe8, + 0xec,0xab,0x13,0x93,0x6c,0xa6,0xa8,0x7c,0x54,0x8f,0x4a,0xf0,0x99,0xfc,0xa9,0xc9,0xa5,0x71,0x53,0x25, + 0xdc,0xcc,0x84,0x4e,0x22,0x9a,0x75,0xd4,0x32,0x91,0x88,0x04,0xf4,0x10,0xb9,0xf7,0x26,0x02,0xa2,0x9a, + 0x10,0xc9,0xc3,0xe9,0x7a,0x87,0xcc,0xdd,0xc6,0x78,0xee,0xf6,0x56,0x9f,0xb7,0x8d,0x9d,0x0b,0x20,0x5b, + 0x0c,0x84,0x86,0x82,0x01,0x18,0xa9,0x0d,0x78,0x67,0xa1,0x74,0xae,0xc1,0xa0,0x99,0x12,0xa9,0x57,0x22, + 0x95,0x12,0x65,0x72,0x5c,0x84,0xa9,0x93,0x4e,0x50,0xa9,0x92,0xa0,0x8f,0xc6,0x12,0xe7,0x2c,0x96,0x40, + 0x49,0xfc,0x2d,0x7d,0xe1,0xca,0x9b,0xee,0xd6,0x6f,0x4e,0xb2,0x53,0x95,0x26,0xbb,0xb4,0x6a,0x8a,0xf9, + 0x5a,0x48,0x63,0xd0,0xec,0xfb,0xf0,0x89,0xc8,0xe3,0x54,0x3e,0xe4,0x13,0x10,0xf4,0x09,0x9d,0x8f,0x68, + 0x28,0xd0,0xee,0x95,0x41,0x34,0x2e,0x89,0x79,0x8b,0xdf,0x6b,0x21,0x99,0x29,0x0a,0xc3,0xff,0x5d,0x56, + 0x69,0x97,0xf4,0x73,0xa4,0xfd,0x5f,0xcb,0x84,0x09,0x69,0x2b,0x91,0x2c,0xa3,0xdb,0xb2,0xcf,0xf4,0x6f, + 0x06,0x0f,0x28,0xdb,0x82,0xd9,0x14,0x8d,0xf1,0xe9,0xb4,0xe7,0x00,0x88,0xd8,0x7b,0x1a,0x61,0xc8,0x4e, + 0x93,0xa8,0x09,0x4e,0xe4,0xd9,0x93,0x2d,0x02,0x06,0x2b,0xea,0x1c,0x9e,0x71,0x0e,0xa5,0x8e,0xbd,0xe7, + 0x3e,0x11,0x2d,0x7c,0x86,0x9f,0x3b,0xe1,0x7e,0xf2,0x3a,0x6c,0x64,0xb0,0xe3,0xca,0x52,0x3b,0x15,0x81, + 0x2b,0x50,0x52,0x16,0x69,0x7e,0xbd,0x4b,0x43,0x8f,0xba,0x09,0xe0,0x43,0x1e,0x87,0x25,0x4d,0x7c,0x37, + 0xa3,0x76,0x66,0x13,0x76,0xf5,0x5e,0x7b,0xf6,0x51,0x18,0xbd,0xe3,0x0e,0xb5,0x96,0x9f,0x1d,0xba,0x6d, + 0xf1,0xf0,0x97,0xeb,0xbd,0xe8,0x81,0x87,0xc7,0x9b,0x93,0x43,0x1a,0x5b,0xe0,0x2a,0x7c,0xef,0x0e,0xf4, + 0xee,0xb1,0x61,0x00,0xee,0xb5,0x48,0x37,0x5f,0x1b,0xaf,0x57,0x13,0xe6,0xa3,0x72,0x84,0x65,0xf1,0xa8, + 0x32,0x9c,0xff,0x6b,0x16,0x86,0x99,0x0f,0x9c,0x28,0xc6,0x4a,0x12,0x6c,0xd3,0x4f,0xbc,0x15,0x6f,0x1c, + 0xc2,0x48,0x68,0x7d,0x93,0x6a,0x78,0x6f,0x99,0x12,0x33,0xd5,0x8c,0x9c,0x01,0x91,0x5d,0x4a,0xf6,0x21, + 0x38,0x4a,0x97,0x54,0x61,0x36,0x65,0x5c,0x60,0xbf,0x4e,0x09,0x21,0xa6,0x8f,0x72,0xd3,0xaf,0x14,0xa1, + 0x47,0xaa,0x1b,0x1e,0x1e,0x4c,0x20,0xb1,0x23,0x64,0xad,0x2a,0x25,0x8d,0xeb,0x0e,0x3a,0x89,0xc7,0x4f, + 0xd4,0xab,0x4a,0x05,0xad,0x36,0x76,0x2e,0xcb,0xf2,0x23,0xfc,0xe1,0x7f,0xd2,0x5d,0x76,0x83,0xf8,0xc9, + 0x1b,0xc4,0xd3,0x42,0xba,0xf6,0x42,0x74,0xee,0xdc,0xb2,0x9e,0xc3,0x4e,0x96,0x1f,0xb8,0x44,0x2a,0xb4, + 0xed,0xff,0x68,0xa4,0xbe,0x81,0x36,0xb5,0xf6,0xbf,0xa3,0x3e,0xfc,0xb8,0xd5,0x85,0x1f,0xbd,0x2e,0xec, + 0xbe,0x83,0x3c,0xeb,0x65,0x41,0xfb,0xaf,0xc7,0xc7,0x08,0x5e,0xec,0xb4,0xa3,0xb5,0x86,0x26,0x1b,0xe9, + 0x77,0x69,0xa2,0x25,0x5c,0xfe,0x81,0xc8,0x99,0x65,0x95,0x68,0xb1,0x53,0x96,0x4c,0x2b,0xe3,0x76,0x1e, + 0x8d,0xa6,0x46,0x12,0x9c,0x38,0x61,0x62,0x43,0xcf,0x8d,0x93,0x02,0x35,0x2c,0xc9,0x6b,0x4e,0x43,0xaf, + 0xca,0x17,0xde,0xa9,0x87,0x45,0xa3,0x6a,0xd8,0x96,0xa2,0xad,0x48,0xd2,0xce,0x88,0x56,0xc0,0x69,0xe7, 0x45,0xa0,0x25,0x28,0xe8,0x08,0x38,0xce,0x27,0x58,0x0d,0x3e,0xd5,0x0a,0xf6,0x89,0x87,0xaa,0x66,0x09, 0xbe,0x02,0x7d,0x3e,0x50,0x97,0xd5,0x78,0x55,0x85,0x51,0x3c,0xaf,0x60,0xa0,0xb3,0x9b,0xf5,0xeb,0x67, 0xb4,0x26,0x2d,0xf2,0xe4,0x28,0x7d,0xca,0xb5,0x02,0xca,0x35,0x37,0x8c,0xdf,0x91,0x66,0x0b,0x80,0xef, @@ -351,24 +351,24 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x77,0xb8,0x63,0x8b,0x4d,0x55,0xa3,0x69,0x75,0x73,0x1e,0x37,0x3e,0x3b,0x96,0x33,0x94,0x17,0xb0,0x20, 0xa4,0xc3,0xd9,0x18,0x76,0x16,0xf0,0x3e,0xa0,0x77,0xb8,0x8a,0x94,0x9a,0xd6,0x69,0x5a,0xb4,0x0e,0x75, 0x8e,0x49,0x2e,0x2f,0xd2,0x4e,0x95,0x84,0x69,0x87,0x3e,0x8f,0xb6,0xbe,0x49,0xe9,0xab,0x53,0x8e,0xac, - 0x10,0xd1,0xac,0x9f,0x57,0x11,0xfd,0x1f,0x4e,0xe8,0x28,0xa8,0xfc,0x05,0xfd,0x21,0x6c,0xc7,0xd0,0xd2, + 0x10,0xd1,0xac,0x9f,0x57,0x11,0xfd,0x1f,0x4e,0xe8,0x28,0xa8,0xfc,0x05,0xfd,0x3e,0x6c,0xc7,0xd0,0xd2, 0x2a,0x3d,0x27,0xdc,0x56,0x20,0x0c,0x66,0x05,0x1f,0xd7,0xbb,0x5b,0x34,0x8c,0x15,0x5d,0x7b,0x8a,0x37, 0x27,0xdb,0x1b,0x39,0x7c,0x50,0x68,0xd0,0xeb,0x55,0x44,0x40,0x4c,0xe2,0xd7,0x90,0x59,0x99,0x38,0x37, 0x8d,0x70,0x06,0xae,0xc7,0xbf,0x85,0x5a,0x98,0x60,0xed,0xff,0x55,0xad,0xe8,0xc0,0xe7,0xc6,0x4a,0x39, 0xdd,0x69,0xea,0x41,0x0d,0x4c,0x98,0x22,0x22,0x5a,0xe0,0xac,0x02,0x72,0xce,0x42,0xb6,0x91,0xcb,0xe8, - 0xc8,0x1f,0xd3,0xdf,0x1a,0x75,0xe3,0x3c,0x94,0xd2,0xc9,0x0f,0x58,0x16,0x55,0x11,0xbf,0xce,0xc6,0x9b, + 0xc8,0x1f,0xd3,0xdf,0x1a,0x75,0xe3,0x3c,0x94,0xd2,0xc9,0xf7,0x58,0x16,0x55,0x11,0xbf,0xce,0xc6,0x9b, 0xb5,0x9a,0x0f,0x89,0x1a,0xcf,0x14,0x02,0xbc,0x30,0x0a,0xa1,0x27,0xf8,0xc4,0x11,0x7d,0xc4,0x4f,0x30, 0x53,0x8f,0xa2,0xb8,0xa6,0x53,0x64,0x42,0xb5,0x4c,0xb8,0xab,0x44,0xed,0xa3,0xae,0x49,0x14,0xb9,0xfe, - 0x14,0xbc,0x1e,0x25,0xc8,0xd3,0x3c,0x0c,0x75,0x6f,0x22,0x69,0x45,0x3a,0x68,0x5a,0xf0,0x16,0xe6,0xfb, + 0x14,0xbc,0x1e,0x25,0xc8,0xd3,0x3c,0x0c,0x75,0x6f,0x22,0x69,0x45,0x3a,0x68,0x5a,0xf0,0x16,0xe6,0xbb, 0x50,0x0f,0xd1,0xd3,0x6b,0x45,0xb7,0x69,0xbf,0x10,0x55,0xad,0x64,0x34,0x44,0x3b,0x6c,0xaa,0xb6,0x00, 0x09,0x02,0x31,0xc2,0xbb,0x90,0xff,0x0d,0x81,0x01,0x61,0xc2,0xe1,0xde,0x88,0x4a,0x8a,0xf4,0x29,0x07, 0x7b,0x42,0x5a,0x87,0x11,0x4f,0x4f,0x4d,0xb3,0x81,0x1e,0xc7,0x8d,0x8c,0x0b,0x52,0x06,0x7a,0x62,0x4b, 0x99,0x29,0xcd,0x5e,0x4d,0x23,0x44,0xba,0xec,0xfe,0x92,0x66,0x01,0x1f,0x4c,0x14,0x7d,0xa2,0x6a,0x5d, 0x0c,0x9b,0x98,0x05,0x60,0xb5,0x1b,0xd5,0xb7,0xcc,0x05,0xea,0x91,0x61,0xc7,0x00,0x88,0x84,0x5a,0x00, 0x35,0xe3,0xd8,0x73,0x84,0x47,0x01,0xd8,0xa7,0xeb,0xb5,0xe6,0x6b,0xf9,0x95,0xce,0x20,0x5d,0x38,0xef, - 0x16,0xce,0xdb,0x85,0x73,0x14,0xde,0x6c,0x1f,0x58,0xbf,0x78,0x52,0x57,0xb1,0xd2,0x67,0x01,0x2d,0x61, - 0x24,0x6c,0x6c,0x6d,0x62,0x6f,0x44,0x96,0xee,0xb3,0x7f,0xfb,0xcc,0x5a,0x08,0xa6,0x3c,0xab,0x5f,0xb1, - 0x52,0x78,0xbd,0xfe,0x16,0x81,0x5c,0xe4,0x05,0x3a,0xc9,0xec,0xe4,0x3d,0xab,0x45,0xed,0xb9,0x7e,0x9c, + 0x16,0xce,0xdb,0x85,0x73,0x14,0xde,0x6c,0x1f,0x58,0x3f,0x7b,0x52,0x57,0xb1,0xd2,0x67,0x01,0x2d,0x61, + 0x24,0x6c,0x6c,0x6d,0x62,0x6f,0x44,0x96,0xee,0xb3,0x7f,0xfb,0xcc,0x5a,0x08,0xa6,0x3c,0xab,0x5f,0xb3, + 0x52,0x78,0xbd,0xfe,0x16,0x81,0x5c,0xe4,0x05,0x3a,0xc9,0xec,0xe4,0x03,0xab,0x45,0xed,0xb9,0x7e,0x9c, 0x5e,0x48,0x34,0x00,0x38,0xaa,0x0a,0xf5,0x43,0xdb,0x00,0x1e,0x04,0x86,0x18,0x06,0xd5,0xe1,0x71,0x76, 0xff,0x6a,0x85,0x79,0xb1,0xbd,0x01,0xad,0xe0,0x0b,0x67,0xdd,0x07,0xff,0xd4,0x76,0x0b,0x5d,0xe1,0x42, 0xf4,0x19,0x01,0xbf,0xe1,0x52,0x40,0xab,0xf2,0x4a,0x54,0xec,0x16,0x01,0xf1,0x69,0x47,0x9a,0x4c,0x9b, @@ -386,146 +386,146 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xcc,0x53,0x68,0x6a,0x5e,0xed,0x0e,0x48,0xed,0x40,0x35,0x28,0xd3,0x31,0x3e,0x17,0xe5,0x54,0x4c,0xbc, 0x0f,0x3d,0xe1,0x20,0x64,0x4d,0xe7,0x29,0xcd,0x7e,0x8f,0xc6,0xb1,0xcc,0x8c,0xe6,0x72,0x94,0xe9,0xbd, 0xa8,0xa9,0xd3,0x68,0x14,0xb1,0x96,0xfa,0x2c,0x2f,0x52,0xe6,0x7e,0x3f,0x47,0xef,0xd6,0x99,0xa5,0xb5, - 0x8d,0x76,0xfb,0x4c,0xd8,0xe6,0x17,0xfa,0x6b,0xa2,0xb7,0x14,0x37,0x66,0xa8,0x52,0xc3,0xb8,0x6f,0x95, + 0x8d,0x76,0xfb,0x4c,0xd8,0xe6,0x97,0xfa,0x6b,0xa2,0xb7,0x14,0x37,0x66,0xa8,0x52,0xc3,0xb8,0x6f,0x95, 0x34,0x34,0x40,0xbb,0x75,0x67,0xe0,0xe1,0xf5,0xe8,0xd6,0x7b,0x01,0x41,0xd7,0x9d,0xad,0x7b,0x66,0x95, 0xfd,0x79,0x43,0x5f,0x5d,0x0e,0x6b,0x62,0x79,0x73,0x06,0x5c,0x0f,0x41,0xcd,0x34,0xf0,0xc5,0x82,0x93, 0xac,0x2d,0xd2,0x30,0xa4,0xba,0x66,0x71,0x3d,0x71,0x00,0xef,0xa5,0xa2,0xbb,0x97,0x40,0xf3,0x15,0x36, - 0x6a,0xa6,0x8d,0x3e,0x51,0x80,0xec,0x2b,0x40,0x22,0xef,0x05,0x86,0x06,0xa7,0xd1,0x10,0x19,0xf4,0x1d, - 0xbd,0xb0,0xe3,0x25,0xb3,0x80,0xd9,0x02,0xa6,0x0a,0x28,0x10,0x07,0x7b,0x3e,0x56,0x98,0x23,0xf0,0xd7, - 0x27,0xd0,0x84,0x42,0xc7,0xaa,0x86,0x87,0x7f,0x0c,0x7b,0xa4,0xaa,0xf1,0x95,0xb0,0xbe,0x25,0x50,0x3e, - 0xdd,0x27,0x02,0x6d,0xba,0x81,0xf8,0x9b,0x26,0xe9,0x71,0xf5,0xe8,0xd8,0xd2,0x1c,0x8f,0xb9,0xbb,0x09, - 0x01,0xc1,0x71,0x75,0xf2,0xb8,0x3a,0x8d,0xa8,0xa0,0x3a,0xaa,0x58,0x6c,0xcb,0xf4,0xc7,0xb0,0x5a,0x15, - 0xa1,0x31,0xc6,0xfa,0x58,0x59,0xda,0xa5,0x4a,0x8e,0xed,0x0b,0xd5,0x92,0xd8,0x2a,0x51,0xc8,0xd0,0xd3, - 0x54,0x13,0xf4,0xe2,0xef,0xab,0x04,0x9d,0x3e,0x6c,0x49,0x5a,0xfe,0x80,0xd4,0xf6,0x17,0xf9,0x40,0x61, - 0xfd,0x20,0xcc,0xdd,0x45,0xb4,0xd0,0x22,0xba,0xa3,0x22,0x57,0x09,0x28,0x3f,0xb3,0x7a,0xf8,0x0e,0x54, - 0xd7,0xd5,0x62,0x54,0x0d,0xcf,0xae,0xb1,0x12,0x59,0x45,0x40,0x55,0x40,0x9e,0x7d,0x96,0xd3,0xd9,0xb5, - 0x22,0x04,0x35,0x1d,0x0c,0x68,0x28,0xc4,0x29,0x89,0xa8,0x86,0xe1,0x81,0x30,0xbd,0xfa,0x9e,0x8a,0x3d, - 0x03,0x5e,0xba,0x6a,0xca,0x12,0xde,0xc2,0xdf,0x13,0xeb,0xc3,0xeb,0x33,0x9b,0x13,0xfa,0x08,0xbc,0xd5, - 0x59,0x59,0x9c,0xfd,0xac,0x82,0x0a,0x66,0xdb,0x9e,0x8f,0xad,0xc8,0xa8,0x3f,0x04,0x80,0x1b,0x45,0x85, - 0xea,0x6c,0xdb,0x6e,0x5a,0xb2,0x11,0xe5,0xef,0x2e,0x5d,0x4d,0x41,0x9f,0x7a,0xcd,0xce,0x6c,0xb3,0x02, - 0x91,0xac,0xd4,0xea,0x93,0x4a,0x15,0xe3,0x50,0x77,0xac,0x1a,0x4f,0xd9,0x10,0xab,0x30,0x9d,0xb8,0x88, - 0x62,0x93,0x57,0xe0,0xef,0xb8,0x02,0x05,0x80,0x80,0x76,0x04,0xc2,0x34,0x5f,0xa6,0x3c,0xf2,0xe2,0x0b, - 0xf3,0x55,0x81,0xbf,0x63,0xfe,0x1b,0x5f,0x44,0x77,0xf6,0xb7,0x69,0xf7,0x77,0xea,0xe3,0xcb,0x2d,0x95, - 0x12,0xdb,0xd9,0x9d,0xe1,0xdc,0x5d,0xd1,0x2a,0xfc,0x2c,0xab,0x45,0xd3,0xde,0x9f,0xae,0x45,0x3b,0x56, - 0x76,0xcf,0x82,0xbb,0xe6,0x06,0x36,0xb9,0x19,0x34,0x13,0x90,0xfe,0x46,0xca,0xd3,0x48,0x35,0x4e,0x17, - 0xd4,0x88,0xee,0xc2,0xb7,0x70,0xc9,0x9c,0x30,0xc9,0x86,0xee,0x81,0x92,0x08,0x52,0x57,0x85,0x88,0x53, - 0xda,0xfc,0x3c,0x52,0xdb,0x72,0x30,0xd6,0x04,0x32,0x46,0xa6,0x4d,0x73,0xef,0x5a,0x7c,0xc1,0x45,0x3c, - 0xec,0x2c,0x57,0x1c,0xca,0xcc,0xfe,0xd8,0x68,0xe9,0xdb,0x62,0xfc,0x2e,0x9b,0xcd,0x91,0x53,0x5e,0x17, - 0x3f,0x88,0x89,0xc4,0x70,0x96,0xcf,0x9b,0xac,0xea,0x33,0x70,0xfe,0x33,0x1a,0xc4,0xa1,0xd3,0xf2,0x6d, - 0xa2,0xb8,0x63,0x7d,0xd1,0xc3,0x8f,0xdc,0x3a,0x49,0x04,0x08,0x58,0xa2,0x0c,0x10,0x99,0x74,0x08,0x01, - 0x2a,0xa4,0x91,0xa3,0x7a,0xc4,0xa3,0xa9,0x59,0xd4,0x74,0x95,0x4f,0xb1,0x8f,0x98,0xd2,0xf7,0x52,0x88, - 0x20,0xa2,0x6f,0x12,0x2f,0x05,0xc2,0xd9,0x73,0x1a,0xec,0xc7,0x0d,0xb1,0x09,0xe6,0xf0,0x01,0xdf,0xb7, - 0x0b,0xdb,0x43,0x23,0x29,0x83,0xb4,0x92,0x3e,0x14,0xc8,0x98,0x48,0xc3,0x46,0x64,0xc6,0x35,0xf6,0xc0, - 0xb8,0x55,0xc4,0x11,0xb4,0x4e,0x36,0xd6,0x9e,0xc8,0x5b,0x64,0x84,0x3b,0x6b,0xb1,0xb8,0xe0,0x99,0xb6, - 0xa5,0xd2,0x2c,0xf3,0xdb,0x0e,0x2d,0xa4,0x45,0xf0,0x56,0xcb,0x6d,0x2d,0xba,0x54,0x4a,0xe8,0xae,0x74, - 0x28,0x28,0x7d,0x54,0xb2,0xb8,0xa6,0x42,0x47,0x69,0x73,0x73,0x3c,0x57,0x27,0x7d,0xdf,0xb6,0x21,0xdc, - 0xae,0x9a,0xeb,0xa4,0x8a,0x32,0xbf,0xa2,0x74,0xef,0xd0,0xaf,0x27,0x37,0xa4,0xed,0x96,0x29,0x8d,0x5f, - 0x55,0xdd,0xe9,0x65,0xdd,0xed,0xe5,0x24,0xa9,0xd1,0x41,0xdb,0xd9,0x09,0x71,0x8c,0xca,0xc9,0x62,0x35, - 0x45,0xcc,0xe8,0xf2,0x27,0xc4,0x06,0xe0,0x00,0x09,0x9e,0xf2,0x7e,0xe1,0xed,0x1c,0x96,0x6f,0x51,0x43, - 0xbc,0x63,0xef,0xd5,0xb0,0x54,0x98,0xbe,0x27,0xa2,0xcd,0x6c,0xd6,0x14,0xb1,0xdb,0x98,0x96,0xad,0x78, - 0xcf,0x5c,0x85,0x57,0x21,0x5e,0x22,0x96,0x7b,0xe7,0x09,0xb6,0xdc,0x7a,0xdd,0xf8,0x4e,0xce,0xba,0x2a, - 0x53,0x49,0x09,0xe5,0xc6,0xf0,0x8c,0x80,0x66,0x9a,0x55,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0x1b,0x13,0x2d, - 0x17,0x3a,0x3f,0x14,0xb7,0xf6,0x43,0x63,0xa9,0xa2,0xe3,0xfc,0x67,0x69,0x46,0x75,0x8b,0xd2,0x31,0xe2, - 0x82,0xb6,0xb4,0x42,0x17,0x3e,0xae,0x7a,0x2e,0x66,0xc1,0x86,0x18,0x50,0x81,0x6c,0x45,0x84,0x46,0xa0, - 0x0e,0x7f,0xf2,0x48,0xc2,0x9b,0xee,0x74,0x24,0x74,0x84,0xd0,0xc2,0xc0,0x7e,0x07,0x08,0x9e,0x08,0x1b, - 0x6b,0xd6,0x38,0x6e,0xc3,0x5d,0x1e,0x8d,0xd9,0xbb,0xd9,0x79,0xbf,0x12,0x43,0x94,0x43,0xb2,0x1b,0x57, - 0xe3,0xa3,0x82,0x16,0x02,0x84,0x74,0xdc,0x25,0xfe,0xcf,0x6d,0x8b,0x9a,0x9d,0x2c,0xc0,0x61,0x83,0xa3, - 0xdc,0x56,0x79,0xd3,0x9c,0x2f,0x90,0x35,0xd2,0x22,0x03,0x77,0x04,0xe5,0x22,0xe3,0x9f,0xcc,0x89,0xb7, - 0x67,0xd7,0x4c,0xde,0x03,0x37,0xc2,0xcc,0xd1,0xcb,0x0d,0x8a,0x44,0x04,0xe5,0x3e,0x49,0x9e,0x19,0xee, - 0x40,0x3f,0xb0,0x10,0x79,0x54,0x42,0x2f,0x4e,0xa3,0x86,0x31,0xf8,0x8f,0x35,0x1f,0x07,0x84,0x0e,0x6b, - 0x9a,0xdf,0x31,0xb1,0x7e,0xe5,0x02,0x09,0x35,0x44,0x10,0xf6,0x05,0x0c,0x78,0xac,0xeb,0xe0,0x0c,0x7e, - 0x42,0xea,0x26,0x07,0x46,0x29,0x21,0x71,0x07,0x13,0x2d,0x1c,0x6d,0x0a,0x01,0x46,0x88,0xa0,0x14,0x5c, - 0xb8,0x2c,0x98,0x81,0x3f,0xd1,0xe7,0x37,0x11,0x4e,0xf9,0x69,0xeb,0x6c,0xc5,0x57,0x2c,0xfa,0xb2,0x14, - 0xe3,0x44,0xa8,0xfd,0x9a,0xb8,0x7c,0x17,0x14,0xcc,0x59,0x73,0xb5,0x68,0x40,0x39,0x7e,0x6a,0xb6,0xf0, - 0x39,0xae,0xb2,0x0c,0x3d,0xdc,0x4a,0x03,0x23,0x82,0x7d,0x07,0x18,0x35,0x0c,0x22,0x9d,0xa3,0x4d,0x67, - 0x89,0xab,0x68,0xfc,0x89,0xfe,0xc4,0xef,0xf1,0x27,0x3c,0xce,0x42,0xf9,0x24,0x69,0x41,0xd7,0x50,0xea, - 0x7d,0xc7,0x30,0xfe,0xbc,0x00,0xdc,0x3b,0x3d,0xaa,0x81,0xfd,0xb7,0x70,0x07,0x17,0xf1,0x2a,0x6b,0x56, - 0x61,0x0f,0x23,0xdf,0x9d,0x9d,0x05,0x7b,0x99,0xda,0x3d,0x8c,0x5a,0xe7,0xcf,0xb5,0x25,0x15,0x74,0xf7, - 0x8e,0x33,0x6d,0x44,0x43,0xbc,0x2a,0x3e,0x69,0xf6,0xc2,0x62,0x1c,0x9c,0xc1,0x4b,0x3a,0x08,0x24,0x00, - 0x91,0x37,0x25,0xc7,0x99,0x27,0x9a,0xbd,0x93,0xc1,0x96,0xb8,0xa7,0x8e,0xbf,0x64,0x82,0x8e,0x43,0xd1, - 0x6a,0x74,0xea,0x1c,0x09,0x38,0xf9,0x63,0xa6,0xd5,0xa9,0x7b,0x68,0xb8,0xb2,0xe2,0xbd,0x8f,0xa6,0x35, - 0xcf,0xe4,0xcc,0x76,0xc0,0xd9,0x5b,0x89,0x41,0x1d,0x4c,0xae,0x60,0xc3,0x95,0xd7,0x6f,0x68,0x28,0x89, - 0xb7,0x17,0x8f,0x3c,0x36,0x05,0x8a,0xf8,0x26,0x72,0x74,0x7d,0x29,0x7f,0xc6,0x8c,0x80,0xf0,0x14,0xc5, - 0x1e,0xff,0x55,0x89,0x04,0xcd,0xd3,0xf5,0x11,0xea,0x84,0x04,0x72,0xc4,0xba,0xbd,0x7c,0x7c,0x72,0x6a, - 0xb4,0xd4,0xb9,0xf6,0x27,0xdf,0x06,0xa3,0xf7,0x99,0xf8,0x95,0x9d,0x95,0xc9,0x75,0x46,0x6d,0x9c,0x15, - 0x1c,0x72,0xfd,0x0c,0xf2,0x31,0xfa,0x99,0x27,0x57,0x9c,0xda,0x24,0x0b,0xfe,0xfd,0x2d,0xb9,0xc1,0x4f, - 0x9e,0x9c,0xe3,0x67,0x91,0x9c,0x71,0xea,0x2c,0xb9,0xe0,0xdf,0x8f,0xc9,0x0d,0xff,0x9e,0x27,0xe7,0xfc, - 0x7b,0x95,0x1c,0xe1,0x87,0xc6,0x8b,0x88,0x1b,0x67,0xab,0x24,0xe5,0xe4,0x8b,0xe4,0xc8,0xeb,0xc1,0x27, - 0x99,0x34,0x5f,0x4c,0x48,0x0c,0xb2,0x06,0x33,0x71,0xc8,0x60,0x4f,0x25,0x1d,0x29,0x55,0x34,0xbc,0x8d, - 0xbc,0x58,0x8b,0xb0,0x4a,0x67,0xf2,0x49,0x9d,0xe8,0x98,0xa4,0x73,0x1d,0x25,0xa6,0x4e,0x64,0x1b,0x5e, - 0x15,0x26,0xe0,0x27,0x4e,0x22,0x36,0x62,0x23,0x8a,0xa7,0xd4,0xef,0xb4,0xf5,0x25,0x9b,0xf1,0x78,0x0f, - 0x71,0x5c,0x65,0x6c,0x89,0xb0,0x69,0x9b,0x86,0x6a,0xa2,0x28,0x17,0x57,0xba,0x52,0x68,0x40,0xc4,0x5d, - 0x81,0x4f,0xdd,0xee,0x64,0x34,0x31,0xce,0x85,0x66,0xe7,0x24,0xa5,0xf2,0xce,0x8b,0xc4,0x35,0x19,0x46, - 0x6a,0xeb,0x4c,0x82,0x65,0xb8,0x7b,0xc3,0x10,0x10,0x95,0xe2,0xac,0x16,0xfb,0xba,0xb1,0xa6,0x3a,0xb7, - 0xc2,0xa1,0x18,0x69,0xc9,0x1b,0x8e,0xde,0xaf,0x11,0xaf,0x33,0x30,0x48,0xd9,0xf4,0xc9,0x99,0xec,0xb9, - 0x1a,0x95,0x27,0x11,0x49,0x68,0x4c,0xe9,0x26,0xbe,0xbb,0x0d,0x43,0xd7,0xb5,0x1b,0xf1,0x68,0x99,0xc7, - 0xd9,0x1d,0x56,0xcb,0xac,0x6b,0x15,0xcb,0x65,0xcf,0xfa,0x0c,0xf3,0xab,0x09,0x1e,0xd1,0xae,0x64,0xa1, - 0xb1,0xaa,0x9b,0x53,0x1f,0x2d,0xea,0x39,0x83,0xa3,0x21,0x2b,0xa2,0xf4,0xb9,0x9f,0xcc,0x8d,0x74,0x8e, - 0xca,0xf7,0x59,0x79,0xe8,0x09,0x59,0x31,0x03,0x0f,0xb9,0x59,0x3e,0xc5,0x87,0x2b,0x82,0x1b,0xab,0xbc, - 0x0c,0xbd,0x38,0x59,0x95,0x38,0x35,0xe3,0x9c,0xa2,0xd2,0xac,0xaf,0x61,0xf1,0xa3,0x7e,0x86,0x87,0xae, - 0x93,0xb1,0xb9,0x34,0x2d,0x9d,0x33,0x71,0x6b,0xa7,0x5e,0x19,0x93,0x34,0xd2,0x75,0x22,0x4e,0x11,0x21, - 0x1b,0x5d,0xab,0x7e,0xeb,0xd4,0xeb,0xa5,0xb2,0xb0,0x4c,0x24,0x7e,0xbc,0x36,0x75,0x64,0x34,0x17,0x2e, - 0x29,0x11,0x41,0x3a,0xe1,0x9b,0xb9,0x0f,0xbd,0x66,0xf2,0x33,0x22,0xad,0x1a,0x47,0x5a,0x65,0x8f,0x88, - 0x84,0x81,0xe8,0x01,0x98,0xfb,0x1e,0x15,0x9a,0x64,0x3f,0xf2,0xd1,0x14,0x46,0x1b,0xb5,0x4a,0xce,0x5a, - 0x4a,0x19,0xd7,0xff,0x04,0xe2,0xd5,0x94,0x80,0x7d,0xbd,0x9e,0x87,0xec,0xb2,0xd3,0x29,0xda,0x9e,0x24, - 0xa6,0xca,0x24,0x08,0x19,0xfa,0x15,0x72,0xec,0x94,0x69,0x52,0x85,0x2b,0x35,0x73,0xae,0x13,0x21,0xaf, - 0x46,0x9f,0x9b,0x0e,0x7b,0x4b,0x8e,0x33,0x7f,0x4e,0x07,0x03,0x49,0xe5,0x2a,0xe2,0x26,0x9c,0x3a,0x29, - 0x68,0xd4,0x1b,0xcd,0xd9,0x2b,0xc0,0x1f,0xc2,0x00,0xab,0x93,0xc4,0x75,0x29,0xd4,0x65,0xd6,0xda,0x1f, - 0x05,0x8d,0x59,0x67,0xc0,0x2e,0x80,0x8b,0xb9,0xe5,0x6b,0xaf,0x1e,0x17,0xd5,0xef,0x98,0x26,0x00,0xd6, - 0x94,0xb8,0x82,0x79,0x7a,0x33,0xb6,0x05,0x69,0x2a,0x62,0xe2,0x49,0x8f,0x25,0x70,0x9a,0xaf,0x91,0xeb, - 0x0c,0x34,0xf3,0x80,0x2f,0xf4,0x3f,0x97,0x99,0x54,0xba,0xe6,0xf5,0xfa,0xe1,0xc1,0x81,0xee,0x98,0x8e, - 0xc6,0x06,0xc7,0xf7,0x3f,0xd3,0x82,0x5c,0x41,0xc1,0x55,0x99,0x2f,0x23,0x60,0xb2,0xdd,0x43,0x65,0xdb, - 0x1b,0xb7,0x46,0x18,0xbb,0xef,0x37,0x0e,0xf6,0x8c,0x76,0x61,0x43,0x33,0x39,0xa7,0xad,0xe3,0x44,0xd0, - 0x5d,0xb4,0xe1,0x99,0x96,0x56,0xa1,0xc3,0x48,0x2d,0x49,0x24,0xe1,0x7a,0x9d,0xf0,0x2a,0x23,0xcc,0x2f, - 0x91,0xf9,0x1a,0xa5,0x1b,0x43,0x00,0x3c,0x8d,0xf7,0x63,0xc2,0xfb,0xe9,0x05,0x51,0xc4,0x84,0xa8,0xa8, - 0x65,0x83,0x3c,0x46,0x69,0x92,0x32,0x05,0xff,0x0c,0x18,0x44,0x71,0xe0,0x61,0x22,0x6d,0xe7,0x9e,0x05, - 0xa7,0xc7,0x64,0x21,0x30,0x35,0x72,0x41,0x21,0xf2,0x03,0x9f,0x31,0x44,0x5a,0x32,0xff,0x1d,0xb0,0x30, - 0xba,0x53,0x20,0x83,0x2c,0x8c,0x4a,0xe4,0x05,0xdc,0x84,0x47,0x61,0x21,0xc7,0x12,0x8b,0x88,0x97,0x86, - 0x58,0x8c,0x58,0xdb,0xa1,0xbf,0xe0,0xba,0xb4,0xa5,0x49,0x31,0xd4,0xce,0x81,0x42,0x14,0x8e,0xa8,0x7f, - 0x44,0xfc,0x45,0x63,0xfc,0x4d,0x4e,0xcc,0x17,0xa0,0xa6,0xce,0xd3,0xc9,0x47,0x7b,0x88,0x73,0xa1,0x98, - 0x0b,0x75,0xcb,0x6c,0x68,0x55,0x0d,0xd9,0x9f,0x0a,0xe1,0x3c,0x73,0x38,0xa0,0x15,0x81,0xcb,0x16,0x74, - 0xb6,0x5d,0xbb,0x88,0x8e,0x6a,0xf0,0x09,0xcd,0x1a,0x1d,0x64,0x42,0xdc,0xc2,0x2b,0xdc,0x15,0x6b,0x42, - 0x98,0xe1,0x34,0xe1,0xdc,0xd1,0x52,0x2b,0x26,0x7c,0x4d,0x70,0x4f,0x22,0xff,0x57,0xd1,0xe8,0x5b,0x3a, - 0x0d,0xe6,0x8a,0x36,0x14,0xc8,0xb3,0xf5,0x1a,0xaf,0x13,0x79,0x3d,0xb4,0x74,0x6c,0xbd,0xd9,0x40,0x70, - 0xae,0x71,0xa1,0xe9,0x90,0xe9,0x70,0x3a,0xef,0x83,0x9e,0xb6,0x26,0x11,0x47,0xba,0x1e,0xb0,0xee,0x73, - 0xd9,0xee,0x69,0xd4,0x12,0x9a,0x4f,0x08,0xcf,0xcd,0x4f,0x93,0xd7,0xe1,0x9c,0x3a,0xc3,0xa4,0x80,0xa6, - 0xe2,0x80,0xae,0x78,0xac,0x04,0x1b,0x8f,0x71,0x90,0x99,0x57,0x85,0x1c,0xae,0xd1,0xe5,0xc8,0x2b,0x4f, - 0xef,0x8a,0xd9,0xd7,0x4f,0x38,0xb2,0x68,0xca,0xd9,0x04,0x85,0x50,0x61,0x39,0x14,0xc2,0xd7,0x33,0x38, - 0x58,0xd1,0xd9,0xa9,0x56,0xce,0x6c,0x68,0x4b,0xe7,0x37,0xf3,0x4f,0x5c,0x35,0xf3,0x2c,0xec,0x4b,0x38, - 0x72,0xb2,0x2a,0x23,0xa4,0x52,0xd8,0x04,0x04,0x35,0xf2,0xc0,0xf0,0xc5,0x99,0x89,0x94,0xa1,0x5d,0x3b, - 0x83,0x2d,0xcc,0x4c,0x36,0x81,0x74,0x72,0x0a,0x42,0x8a,0xa5,0xd6,0xf8,0xa5,0x17,0xf1,0x78,0x78,0x53, - 0x28,0x7f,0xda,0x53,0x04,0x38,0xa2,0x8d,0xa7,0x41,0x60,0x49,0xe5,0x98,0x37,0x45,0x23,0x6a,0xc9,0xa4, - 0x02,0x37,0xb4,0x8c,0x36,0xbb,0x3e,0xa6,0xcf,0x8c,0x96,0x32,0xb3,0x0a,0xca,0x8e,0x81,0xc2,0x87,0xca, - 0x17,0x9b,0x6a,0xb2,0xf6,0x43,0x25,0x12,0x4f,0xf9,0x0a,0x9a,0x81,0x3c,0x79,0x0b,0xe7,0xa7,0x91,0x4d, + 0x6a,0xa6,0x8d,0x3e,0x51,0x80,0xec,0x2b,0x40,0x22,0xef,0x05,0x86,0x06,0xa7,0xd1,0x10,0x19,0xf4,0x82, + 0x5e,0xd8,0xf1,0x92,0x59,0xc0,0x6c,0x01,0x53,0x05,0x14,0x88,0x83,0x3d,0x1f,0x2b,0xcc,0x11,0xf8,0xeb, + 0x13,0x68,0x42,0xa1,0x63,0x55,0xc3,0xc3,0x3f,0x86,0x3d,0x52,0xd5,0xf8,0x4a,0x58,0xdf,0x12,0x28,0x9f, + 0xee,0x13,0x81,0x36,0xdd,0x40,0xfc,0x4d,0x93,0xf4,0xb8,0x7a,0x74,0x6c,0x69,0x8e,0xc7,0xdc,0xdd,0x84, + 0x80,0xe0,0xb8,0x3a,0x79,0x5c,0x9d,0x46,0x54,0x50,0x1d,0x55,0x2c,0xb6,0x65,0xfa,0x63,0x58,0xad,0x8a, + 0xd0,0x18,0x63,0x7d,0xac,0x2c,0xed,0x52,0x25,0xc7,0xf6,0x85,0x6a,0x49,0x6c,0x95,0x28,0x64,0xe8,0x69, + 0xaa,0x09,0x7a,0xf1,0x0f,0x55,0x82,0x4e,0x1f,0xb6,0x24,0x2d,0x7f,0x40,0x6a,0xfb,0x8b,0x7c,0xa0,0xb0, + 0x7e,0x10,0xe6,0xee,0x22,0x5a,0x68,0x11,0xdd,0x51,0x91,0xab,0x04,0x94,0x9f,0x59,0x3d,0x7c,0x07,0xaa, + 0xeb,0x6a,0x31,0xaa,0x86,0x67,0xd7,0x58,0x89,0xac,0x22,0xa0,0x2a,0x20,0xcf,0x3e,0xcb,0xe9,0xec,0x5a, + 0x11,0x82,0x9a,0x0e,0x06,0x34,0x14,0xe2,0x94,0x44,0x54,0xc3,0xf0,0x40,0x98,0x5e,0x7d,0x47,0xc5,0x9e, + 0x02,0x2f,0x5d,0x35,0x65,0x09,0x6f,0xe1,0xef,0x88,0xf5,0xe1,0xf5,0x99,0xcd,0x09,0x7d,0x04,0xde,0xea, + 0xac,0x2c,0xce,0x7e,0x5a,0x41,0x05,0xb3,0x6d,0xcf,0xc7,0x56,0x64,0xd4,0x1f,0x02,0xc0,0x8d,0xa2,0x42, + 0x75,0xb6,0x6d,0x37,0x2d,0xd9,0x88,0xf2,0x77,0x97,0xae,0xa6,0xa0,0x4f,0xbd,0x66,0x67,0xb6,0x59,0x81, + 0x48,0x56,0x6a,0xf5,0x49,0xa5,0x8a,0x71,0xa8,0x3b,0x56,0x8d,0xa7,0x6c,0x88,0x55,0x98,0x4e,0x5c,0x44, + 0xb1,0xc9,0x2b,0xf0,0x77,0x5c,0x81,0x02,0x40,0x40,0x3b,0x02,0x61,0x9a,0x2f,0x53,0x1e,0x79,0xf1,0x85, + 0xf9,0xaa,0xc0,0xdf,0x31,0xff,0x8d,0x2f,0xa2,0x3b,0xfb,0xdb,0xb4,0xfb,0x3b,0xf5,0xf1,0xe5,0x96,0x4a, + 0x89,0xed,0xec,0xce,0x70,0xee,0xae,0x68,0x15,0x7e,0x92,0xd5,0xa2,0x69,0xef,0x4f,0xd7,0xa2,0x1d,0x2b, + 0xbb,0x67,0xc1,0x5d,0x73,0x03,0x9b,0xdc,0x0c,0x9a,0x09,0x48,0x7f,0x23,0xe5,0x69,0xa4,0x1a,0xa7,0x0b, + 0x6a,0x44,0x77,0xe1,0x5b,0xb8,0x64,0x4e,0x98,0x64,0x43,0xf7,0x40,0x49,0x04,0xa9,0xab,0x42,0xc4,0x29, + 0x6d,0x7e,0x1e,0xa9,0x6d,0x39,0x18,0x6b,0x02,0x19,0x23,0xd3,0xa6,0xb9,0x77,0x2d,0xbe,0xe0,0x22,0x1e, + 0x76,0x96,0x2b,0x0e,0x65,0x66,0x7f,0x6c,0xb4,0xf4,0x6d,0x31,0x7e,0x9f,0xcd,0xe6,0xc8,0x29,0xaf,0x8b, + 0xef,0xc5,0x44,0x62,0x38,0xcb,0xe7,0x4d,0x56,0xf5,0x19,0x38,0xff,0x19,0x0d,0xe2,0xd0,0x69,0xf9,0x36, + 0x51,0xdc,0xb1,0xbe,0xe8,0xe1,0x47,0x6e,0x9d,0x24,0x02,0x04,0x2c,0x51,0x06,0x88,0x4c,0x3a,0x84,0x00, + 0x15,0xd2,0xc8,0x51,0x3d,0xe2,0xd1,0xd4,0x2c,0x6a,0xba,0xca,0xa7,0xd8,0x47,0x4c,0xe9,0x7b,0x29,0x44, + 0x10,0xd1,0x37,0x89,0x97,0x02,0xe1,0xec,0x39,0x0d,0xf6,0xe3,0x86,0xd8,0x04,0x73,0xf8,0x80,0xef,0xdb, + 0x85,0xed,0xa1,0x91,0x94,0x41,0x5a,0x49,0x1f,0x0a,0x64,0x4c,0xa4,0x61,0x23,0x32,0xe3,0x1a,0x7b,0x60, + 0xdc,0x2a,0xe2,0x08,0x5a,0x27,0x1b,0x6b,0x4f,0xe4,0x2d,0x32,0xc2,0x9d,0xb5,0x58,0x5c,0xf0,0x4c,0xdb, + 0x52,0x69,0x96,0xf9,0x6d,0x87,0x16,0xd2,0x22,0x78,0xab,0xe5,0xb6,0x16,0x5d,0x2a,0x25,0x74,0x57,0x3a, + 0x14,0x94,0x3e,0x2a,0x59,0x5c,0x53,0xa1,0xa3,0xb4,0xb9,0x39,0x9e,0xab,0x93,0xbe,0x6f,0xdb,0x10,0x6e, + 0x57,0xcd,0x75,0x52,0x45,0x99,0x5f,0x51,0xba,0x77,0xe8,0xd7,0x93,0x1b,0xd2,0x76,0xcb,0x94,0xc6,0xaf, + 0xaa,0xee,0xf4,0xb2,0xee,0xf6,0x72,0x92,0xd4,0xe8,0xa0,0xed,0xec,0x84,0x38,0x46,0xe5,0x64,0xb1,0x9a, + 0x22,0x66,0x74,0xf9,0x23,0x62,0x03,0x70,0x80,0x04,0x4f,0x79,0xbf,0xf0,0x76,0x0e,0xcb,0xb7,0xa8,0x21, + 0xde,0xb1,0xf7,0x6a,0x58,0x2a,0x4c,0x3f,0x10,0xd1,0x66,0x36,0x6b,0x8a,0xd8,0x6d,0x4c,0xcb,0x56,0xbc, + 0x67,0xae,0xc2,0xab,0x10,0x2f,0x11,0xcb,0xbd,0xf3,0x04,0x5b,0x6e,0xbd,0x6e,0x7c,0x27,0x67,0x5d,0x95, + 0xa9,0xa4,0x84,0x72,0x63,0x78,0x46,0x40,0x33,0xcd,0x2a,0xe6,0xae,0xf0,0x1d,0x51,0x96,0x8d,0x89,0x96, + 0x0b,0x9d,0x1f,0x8a,0x5b,0xfb,0xa1,0xb1,0x54,0xd1,0x71,0xfe,0xb3,0x34,0xa3,0xba,0x45,0xe9,0x18,0x71, + 0x41,0x5b,0x5a,0xa1,0x0b,0x1f,0x57,0x3d,0x17,0xb3,0x60,0x43,0x0c,0xa8,0x40,0xb6,0x22,0x42,0x23,0x50, + 0x87,0x3f,0x79,0x24,0xe1,0x4d,0x77,0x3a,0x12,0x3a,0x42,0x68,0x61,0x60,0xbf,0x03,0x04,0x4f,0x84,0x8d, + 0x35,0x6b,0x1c,0xb7,0xe1,0x2e,0x8f,0xc6,0xec,0xdd,0xec,0xbc,0x5f,0x89,0x21,0xca,0x21,0xd9,0x8d,0xab, + 0xf1,0x51,0x41,0x0b,0x01,0x42,0x3a,0xee,0x12,0xff,0xe7,0xb6,0x45,0xcd,0x4e,0x16,0xe0,0xb0,0xc1,0x51, + 0x6e,0xab,0xbc,0x69,0xce,0x17,0xc8,0x1a,0x69,0x91,0x81,0x3b,0x82,0x72,0x91,0xf1,0x4f,0xe6,0xc4,0xdb, + 0xb3,0x6b,0x26,0xef,0x81,0x1b,0x61,0xe6,0xe8,0xe5,0x06,0x45,0x22,0x82,0x72,0x9f,0x24,0xcf,0x0c,0x77, + 0xa0,0x1f,0x58,0x88,0x3c,0x2a,0xa1,0x17,0xa7,0x51,0xc3,0x18,0xfc,0x87,0x9a,0x8f,0x03,0x42,0x87,0x35, + 0xcd,0xef,0x98,0x58,0xbf,0x72,0x81,0x84,0x1a,0x22,0x08,0xfb,0x02,0x06,0x3c,0xd6,0x75,0x70,0x06,0x3f, + 0x21,0x75,0x93,0x03,0xa3,0x94,0x90,0xb8,0x83,0x89,0x16,0x8e,0x36,0x85,0x00,0x23,0x44,0x50,0x0a,0x2e, + 0x5c,0x16,0xcc,0xc0,0x9f,0xe8,0xf3,0x9b,0x08,0xa7,0xfc,0xb4,0x75,0xb6,0xe2,0x2b,0x16,0x7d,0x59,0x8a, + 0x71,0x22,0xd4,0x7e,0x4d,0x5c,0xbe,0x0b,0x0a,0xe6,0xac,0xb9,0x5a,0x34,0xa0,0x1c,0x3f,0x35,0x5b,0xf8, + 0x1c,0x57,0x59,0x86,0x1e,0x6e,0xa5,0x81,0x11,0xc1,0xbe,0x03,0x8c,0x1a,0x06,0x91,0xce,0xd1,0xa6,0xb3, + 0xc4,0x55,0x34,0xfe,0x44,0x7f,0xe2,0x0f,0xf8,0x13,0x1e,0x67,0xa1,0x7c,0x92,0xb4,0xa0,0x6b,0x28,0xf5, + 0xbe,0x67,0x18,0x7f,0x5e,0x00,0xee,0x9d,0x1e,0xd5,0xc0,0xfe,0x3b,0xb8,0x83,0x8b,0x78,0x95,0x35,0xab, + 0xb0,0x87,0x91,0xef,0xce,0xce,0x82,0xbd,0x4c,0xed,0x1e,0x46,0xad,0xf3,0xe7,0xda,0x92,0x0a,0xba,0x7b, + 0xc7,0x99,0x36,0xa2,0x21,0x5e,0x15,0x9f,0x34,0x7b,0x61,0x31,0x0e,0xce,0xe0,0x25,0x1d,0x04,0x12,0x80, + 0xc8,0x9b,0x92,0xe3,0xcc,0x13,0xcd,0xde,0xc9,0x60,0x4b,0xdc,0x53,0xc7,0x5f,0x32,0x41,0xc7,0xa1,0x68, + 0x35,0x3a,0x75,0x8e,0x04,0x9c,0xfc,0x31,0xd3,0xea,0xd4,0x3d,0x34,0x5c,0x59,0xf1,0xde,0x47,0xd3,0x9a, + 0x67,0x72,0x66,0x3b,0xe0,0xec,0xad,0xc4,0xa0,0x0e,0x26,0x57,0xb0,0xe1,0xca,0xeb,0xb7,0x34,0x94,0xc4, + 0xdb,0x8b,0x47,0x1e,0x9b,0x02,0x45,0x7c,0x13,0x39,0xba,0xbe,0x94,0x3f,0x63,0x46,0x40,0x78,0x8a,0x62, + 0x8f,0xff,0xaa,0x44,0x82,0xe6,0xe9,0xfa,0x08,0x75,0x42,0x02,0x39,0x62,0xdd,0x5e,0x3e,0x3e,0x39,0x35, + 0x5a,0xea,0x5c,0xfb,0x93,0x6f,0x83,0xd1,0x87,0x4c,0xfc,0xca,0xce,0xca,0xe4,0x3a,0xa3,0x36,0xce,0x0a, + 0x0e,0xb9,0x7e,0x06,0xf9,0x18,0xfd,0xcc,0x93,0x2b,0x4e,0x6d,0x92,0x05,0xff,0xfe,0x96,0xdc,0xe0,0x27, + 0x4f,0xce,0xf1,0xb3,0x48,0xce,0x38,0x75,0x96,0x5c,0xf0,0xef,0xc7,0xe4,0x86,0x7f,0xcf,0x93,0x73,0xfe, + 0xbd,0x4a,0x8e,0xf0,0x43,0xe3,0x45,0xc4,0x8d,0xb3,0x55,0x92,0x72,0xf2,0x45,0x72,0xe4,0xf5,0xe0,0x93, + 0x4c,0x9a,0x2f,0x26,0x24,0x06,0x59,0x83,0x99,0x38,0x64,0xb0,0xa7,0x92,0x8e,0x94,0x2a,0x1a,0xde,0x46, + 0x5e,0xac,0x45,0x58,0xa5,0x33,0xf9,0xa4,0x4e,0x74,0x4c,0xd2,0xb9,0x8e,0x12,0x53,0x27,0xb2,0x0d,0xaf, + 0x0a,0x13,0xf0,0x13,0x27,0x11,0x1b,0xb1,0x11,0xc5,0x53,0xea,0x77,0xda,0xfa,0x92,0xcd,0x78,0xbc,0x87, + 0x38,0xae,0x32,0xb6,0x44,0xd8,0xb4,0x4d,0x43,0x35,0x51,0x94,0x8b,0x2b,0x5d,0x29,0x34,0x20,0xe2,0xae, + 0xc0,0xa7,0x6e,0x77,0x32,0x9a,0x18,0xe7,0x42,0xb3,0x73,0x92,0x52,0x79,0xe7,0x45,0xe2,0x9a,0x0c,0x23, + 0xb5,0x75,0x26,0xc1,0x32,0xdc,0xbd,0x61,0x08,0x88,0x4a,0x71,0x56,0x8b,0x7d,0xdd,0x58,0x53,0x9d,0x5b, + 0xe1,0x50,0x8c,0xb4,0xe4,0x2d,0x47,0xef,0xd7,0x88,0xd7,0x19,0x18,0xa4,0x6c,0xfa,0xe4,0x4c,0xf6,0x5c, + 0x8d,0xca,0x93,0x88,0x24,0x34,0xa6,0x74,0x13,0xdf,0xdd,0x86,0xa1,0xeb,0xda,0x8d,0x78,0xb4,0xcc,0xe3, + 0xec,0x0e,0xab,0x65,0xd6,0xb5,0x8a,0xe5,0xb2,0x67,0x7d,0x86,0xf9,0xd5,0x04,0x8f,0x68,0x57,0xb2,0xd0, + 0x58,0xd5,0xcd,0xa9,0x8f,0x16,0xf5,0x9c,0xc1,0xd1,0x90,0x15,0x51,0xfa,0xdc,0x4f,0xe6,0x46,0x3a,0x47, + 0xe5,0xfb,0xac,0x3c,0xf4,0x84,0xac,0x98,0x81,0x87,0xdc,0x2c,0x9f,0xe2,0xc3,0x15,0xc1,0x8d,0x55,0x5e, + 0x86,0x5e,0x9c,0xac,0x4a,0x9c,0x9a,0x71,0x4e,0x51,0x69,0xd6,0xd7,0xb0,0xf8,0x51,0x3f,0xc3,0x43,0xd7, + 0xc9,0xd8,0x5c,0x9a,0x96,0xce,0x99,0xb8,0xb5,0x53,0xaf,0x8c,0x49,0x1a,0xe9,0x3a,0x11,0xa7,0x88,0x90, + 0x8d,0xae,0x55,0xbf,0x75,0xea,0xf5,0x52,0x59,0x58,0x26,0x12,0x3f,0x5e,0x9b,0x3a,0x32,0x9a,0x0b,0x97, + 0x94,0x88,0x20,0x9d,0xf0,0xcd,0xdc,0x87,0x5e,0x33,0xf9,0x19,0x91,0x56,0x8d,0x23,0xad,0xb2,0x47,0x44, + 0xc2,0x40,0xf4,0x00,0xcc,0x7d,0x8f,0x0a,0x4d,0xb2,0x1f,0xf8,0x68,0x0a,0xa3,0x8d,0x5a,0x25,0x67,0x2d, + 0xa5,0x8c,0xeb,0x7f,0x02,0xf1,0x6a,0x4a,0xc0,0xbe,0x5e,0xcf,0x43,0x76,0xd9,0xe9,0x14,0x6d,0x4f,0x12, + 0x53,0x65,0x12,0x84,0x0c,0xfd,0x0a,0x39,0x76,0xca,0x34,0xa9,0xc2,0x95,0x9a,0x39,0xd7,0x89,0x90,0x57, + 0xa3,0xcf,0x4d,0x87,0xbd,0x25,0xc7,0x99,0x3f,0xa7,0x83,0x81,0xa4,0x72,0x15,0x71,0x13,0x4e,0x9d,0x14, + 0x34,0xea,0x8d,0xe6,0xec,0x15,0xe0,0x0f,0x61,0x80,0xd5,0x49,0xe2,0xba,0x14,0xea,0x32,0x6b,0xed,0x8f, + 0x82,0xc6,0xac,0x33,0x60,0x17,0xc0,0xc5,0xdc,0xf2,0xb5,0x57,0x8f,0x8b,0xea,0x77,0x4c,0x13,0x00,0x6b, + 0x4a,0x5c,0xc1,0x3c,0xbd,0x19,0xdb,0x82,0x34,0x15,0x31,0xf1,0xa4,0xc7,0x12,0x38,0xcd,0xd7,0xc8,0x75, + 0x06,0x9a,0x79,0xc0,0x17,0xfa,0x9f,0xcb,0x4c,0x2a,0x5d,0xf3,0x7a,0xfd,0xf0,0xe0,0x40,0x77,0x4c,0x47, + 0x63,0x83,0xe3,0xfb,0x9f,0x69,0x41,0xae,0xa0,0xe0,0xaa,0xcc,0x97,0x11,0x30,0xd9,0xee,0xa1,0xb2,0xed, + 0x8d,0x5b,0x23,0x8c,0xdd,0xf7,0x1b,0x07,0x7b,0x46,0xbb,0xb0,0xa1,0x99,0x9c,0xd3,0xd6,0x71,0x22,0xe8, + 0x2e,0xda,0xf0,0x4c,0x4b,0xab,0xd0,0x61,0xa4,0x96,0x24,0x92,0x70,0xbd,0x4e,0x78,0x9d,0x11,0xe6,0x97, + 0xc8,0x7c,0x8d,0xd2,0x8d,0x21,0x00,0x9e,0xc6,0xfb,0x31,0xe1,0xfd,0xf4,0x82,0x28,0x62,0x42,0x54,0xd4, + 0xb2,0x41,0x1e,0xa3,0x34,0x49,0x99,0x82,0x7f,0x0a,0x0c,0xa2,0x38,0xf0,0x30,0x91,0xb6,0x73,0xcf,0x82, + 0xd3,0x63,0xb2,0x10,0x98,0x1a,0xb9,0xa0,0x10,0xf9,0x81,0xcf,0x18,0x22,0x2d,0x99,0xff,0x0e,0x58,0x18, + 0xdd,0x29,0x90,0x41,0x16,0x46,0x25,0xf2,0x02,0x6e,0xc2,0xa3,0xb0,0x90,0x63,0x89,0x45,0xc4,0x4b,0x43, + 0x2c,0x46,0xac,0xed,0xd0,0x5f,0x70,0x5d,0xda,0xd2,0xa4,0x18,0x6a,0xe7,0x40,0x21,0x0a,0x47,0xd4,0x3f, + 0x22,0xfe,0xa2,0x31,0xfe,0x26,0x27,0xe6,0x0b,0x50,0x53,0xe7,0xe9,0xe4,0xa3,0x3d,0xc4,0xb9,0x50,0xcc, + 0x85,0xba,0x65,0x36,0xb4,0xaa,0x86,0xec,0x4f,0x85,0x70,0x9e,0x39,0x1c,0xd0,0x8a,0xc0,0x65,0x0b,0x3a, + 0xdb,0xae,0x5d,0x44,0x47,0x35,0xf8,0x84,0x66,0x8d,0x0e,0x32,0x21,0x6e,0xe1,0x15,0xee,0x8a,0x35,0x21, + 0xcc,0x70,0x9a,0x70,0xee,0x68,0xa9,0x15,0x13,0xbe,0x26,0xb8,0x27,0x91,0xff,0xab,0x68,0xf4,0x2d,0x9d, + 0x06,0x73,0x45,0x1b,0x0a,0xe4,0xd9,0x7a,0x8d,0xd7,0x89,0xbc,0x1e,0x5a,0x3a,0xb6,0xde,0x6c,0x20,0x38, + 0xd7,0xb8,0xd0,0x74,0xc8,0x74,0x38,0x9d,0xf7,0x41,0x4f,0x5b,0x93,0x88,0x23,0x5d,0x0f,0x58,0xf7,0xb9, + 0x6c,0xf7,0x34,0x6a,0x09,0xcd,0x27,0x84,0xe7,0xe6,0xa7,0xc9,0x9b,0x70,0x4e,0x9d,0x61,0x52,0x40,0x53, + 0x71,0x40,0x57,0x3c,0x56,0x82,0x8d,0xc7,0x38,0xc8,0xcc,0xab,0x42,0x0e,0xd7,0xe8,0x72,0xe4,0x95,0xa7, + 0x77,0xc5,0xec,0xeb,0x27,0x1c,0x59,0x34,0xe5,0x6c,0x82,0x42,0xa8,0xb0,0x1c,0x0a,0xe1,0xeb,0x19,0x1c, + 0xac,0xe8,0xec,0x54,0x2b,0x67,0x36,0xb4,0xa5,0xf3,0x9b,0xf9,0x27,0xae,0x9a,0x79,0x16,0xf6,0x25,0x1c, + 0x39,0x59,0x95,0x11,0x52,0x29,0x6c,0x02,0x82,0x1a,0x79,0x60,0xf8,0xe2,0xcc,0x44,0xca,0xd0,0xae,0x9d, + 0xc1,0x16,0x66,0x26,0x9b,0x40,0x3a,0x39,0x05,0x21,0xc5,0x52,0x6b,0xfc,0xd2,0x8b,0x78,0x3c,0xbc,0x2d, + 0x94,0x3f,0xed,0x29,0x02,0x1c,0xd1,0xc6,0xd3,0x20,0xb0,0xa4,0x72,0xcc,0x9b,0xa2,0x11,0xb5,0x64,0x52, + 0x81,0x1b,0x5a,0x46,0x9b,0x5d,0x1f,0xd3,0x67,0x46,0x4b,0x99,0x59,0x05,0x65,0xc7,0x40,0xe1,0x5d,0xe5, + 0x8b,0x4d,0x35,0x59,0xfb,0xae,0x12,0x89,0xa7,0x7c,0x05,0xcd,0x40,0x9e,0xfc,0x0a,0xe7,0xa7,0x91,0x4d, 0x49,0xaa,0xb1,0x8f,0x36,0xb6,0xa5,0x71,0x16,0x16,0x32,0xfb,0x08,0xcf,0x5a,0xfd,0x48,0xc0,0x95,0x13, 0x7d,0x42,0x68,0x81,0xa1,0x0c,0xcd,0x5e,0x7a,0x70,0x2f,0xf1,0x53,0x27,0x56,0x55,0x22,0xee,0x17,0xc1, 0xd5,0x2a,0xdb,0xb7,0xa7,0xc2,0x3e,0x51,0xfa,0xa0,0x12,0xf6,0xc2,0xcb,0x71,0x40,0x2f,0x97,0xcc,0x6f, 0xa4,0xaa,0xd7,0xed,0xa3,0x54,0xb7,0x47,0x84,0xb6,0x08,0x19,0x59,0xab,0xa7,0x78,0xa6,0x2c,0xf5,0x19, 0x4f,0x19,0x49,0x4d,0x1c,0xd6,0x22,0x3e,0x7e,0x05,0x9f,0x57,0x67,0x69,0x8d,0x38,0xfa,0x1a,0x7b,0x11, 0x09,0x65,0x94,0x97,0x6d,0x1e,0xa6,0x64,0x23,0xb8,0x12,0x66,0x0d,0xe1,0x24,0x01,0xdc,0x97,0x44,0xf0, - 0x4b,0x1f,0x22,0x5a,0xd1,0xb9,0x64,0xbc,0xac,0x3c,0xf9,0x73,0xde,0x22,0xa8,0x1a,0xfa,0x1a,0x04,0x47, + 0x4b,0x1f,0x22,0x5a,0xd1,0xb9,0x64,0xbc,0xaa,0x3c,0xf9,0x73,0xde,0x22,0xa8,0x1a,0xfa,0x1a,0x04,0x47, 0x69,0xac,0x1f,0xac,0xf6,0x0d,0xa8,0xb8,0x55,0x20,0x67,0x7d,0x3b,0xa2,0x9c,0x81,0x6f,0x23,0x6e,0xd6, 0x2f,0xd9,0xee,0x57,0xdd,0x7f,0xec,0xe2,0xe2,0x00,0x40,0x6e,0x09,0xc9,0x07,0xc1,0x86,0x4f,0xc8,0x12, - 0x4a,0x17,0x41,0x59,0x2c,0xd7,0x0b,0x58,0xff,0x29,0xdc,0x19,0x45,0x47,0xe6,0xcb,0x6a,0x4c,0x94,0x4d, + 0x4a,0x17,0x41,0x59,0x2c,0xd7,0x0b,0x58,0xff,0x29,0xdc,0x19,0x45,0x47,0xe6,0xab,0x6a,0x4c,0x94,0x4d, 0x38,0x4f,0xea,0x68,0x7c,0x72,0x44,0x23,0x3b,0xed,0x58,0xd9,0xce,0x5d,0x3c,0x2b,0x22,0x1f,0x5c,0x04, 0x1a,0x4c,0x1f,0x90,0x0d,0x22,0xd1,0x88,0xd8,0x09,0xb6,0xd0,0xa9,0x6f,0x0b,0x9d,0xd1,0x1c,0xa5,0x27, 0xf5,0x69,0xd4,0xe7,0x01,0x4b,0x64,0x0d,0x51,0x85,0xb3,0x13,0xa2,0xa0,0x6c,0x34,0x91,0xd3,0x8e,0x59, - 0xfe,0x24,0x1a,0x1b,0x27,0xaf,0x6f,0x0e,0x68,0x84,0xbf,0x84,0x54,0x63,0x1e,0x4e,0x14,0xec,0x4e,0xd8, - 0x23,0x9f,0xf8,0x44,0x22,0xd0,0x68,0x64,0x34,0x33,0xbf,0x10,0x4e,0xc4,0x2e,0x07,0xfa,0x39,0x0a,0x57, + 0xfe,0x24,0x1a,0x1b,0x27,0xaf,0x6f,0x0e,0x68,0x84,0x3f,0x87,0x54,0x63,0x1e,0x4e,0x14,0xec,0x4e,0xd8, + 0x23,0x9f,0xf8,0x44,0x22,0xd0,0x68,0x64,0x34,0x33,0x3f,0x13,0x4e,0xc4,0x2e,0x07,0xfa,0x39,0x0a,0x57, 0xac,0x5b,0xdb,0x9b,0x50,0x9e,0x68,0xb2,0x71,0xf3,0x95,0xbe,0x15,0x80,0xf6,0xbe,0xa7,0x10,0x9c,0xd1, 0x9a,0x45,0x31,0x8c,0x1e,0xc7,0xa8,0x62,0xdc,0xa9,0x00,0x91,0xac,0xc4,0x9c,0x41,0xbe,0x0a,0x8f,0x80, - 0xf3,0xe2,0x5f,0xe8,0xaf,0xb4,0xd9,0xfd,0x40,0x9a,0x8b,0x09,0xe1,0xa6,0x56,0x4c,0xc6,0x6b,0x3d,0x81, + 0xf3,0xe2,0x9f,0xe9,0xaf,0xb4,0xd9,0xfd,0x40,0x9a,0x8b,0x09,0xe1,0xa6,0x56,0x4c,0xc6,0x6b,0x3d,0x81, 0x32,0x92,0x89,0x8d,0x09,0xd8,0x54,0x59,0x7f,0x06,0x25,0xe6,0x5a,0x89,0xfb,0xbe,0x02,0x28,0x07,0x7b, 0xa5,0x0c,0x8c,0xfe,0x9e,0x05,0xa6,0xb3,0x68,0xd4,0xe1,0xb6,0x0d,0xad,0x8b,0x16,0xfd,0xc4,0x58,0xc6, - 0x17,0x15,0xdb,0x6c,0xfc,0x49,0xb5,0xca,0x36,0xd3,0x4e,0x88,0xc2,0x82,0xa8,0x64,0xf9,0xa1,0x9b,0x70, + 0x97,0x15,0xdb,0x6c,0xfc,0x49,0xb5,0xca,0x36,0xd3,0x4e,0x88,0xc2,0x82,0xa8,0x64,0xf9,0xa1,0x9b,0x70, 0x28,0xea,0xc9,0x3a,0x39,0x55,0x99,0x67,0xaf,0x0e,0xf3,0x10,0xde,0xf6,0x0c,0x0b,0xa3,0x3e,0xbb,0x50, 0x7d,0x8e,0x4c,0x47,0xb3,0x24,0x1f,0xde,0xbb,0x2a,0xe8,0x38,0x45,0x00,0x2c,0x79,0x1a,0x16,0x35,0x0b, 0x87,0x2e,0x88,0x84,0x4a,0x2f,0x10,0x23,0xb6,0x5e,0x22,0xb8,0x02,0x61,0x99,0x15,0x44,0x65,0x79,0xfd, - 0x2e,0xab,0xb3,0x8a,0x48,0x20,0xca,0xa6,0xd4,0xb1,0xc6,0x21,0x94,0xc5,0xbe,0xc1,0x6f,0xe7,0x69,0x83, + 0x3e,0xab,0xb3,0x8a,0x48,0x20,0xca,0xa6,0xd4,0xb1,0xc6,0x21,0x94,0xc5,0xbe,0xc1,0xef,0xe6,0x69,0x83, 0x60,0x19,0xfa,0x63,0x7c,0x87,0x4d,0xd8,0xc6,0x1a,0x39,0x13,0xaf,0xc9,0xf3,0x30,0xf7,0x44,0x76,0x16, 0x01,0xd5,0x01,0x68,0xcd,0x31,0xf1,0x44,0x53,0xfa,0x36,0xc7,0x21,0x13,0xc5,0xba,0x99,0xb4,0xb7,0x36, 0xd1,0x5e,0xae,0x12,0xfa,0x24,0x95,0x4f,0x3c,0xf9,0x28,0xc1,0x43,0x38,0xf3,0xfc,0x57,0xaa,0x30,0xb7, - 0x2c,0x4e,0x0e,0x87,0xb1,0x94,0xd8,0xa6,0xb2,0xca,0xf2,0x8b,0xe2,0x8d,0x71,0x93,0xa6,0x89,0x21,0xc8, + 0x2c,0x4e,0x0e,0x87,0xb1,0x94,0xd8,0xa6,0xb2,0xca,0xf2,0x8b,0xe2,0xad,0x71,0x93,0xa6,0x89,0x21,0xc8, 0x60,0x2c,0x60,0x10,0x1d,0x8b,0x32,0x1b,0xfa,0xc2,0xa0,0x32,0xcf,0x44,0x9b,0xe3,0x5c,0xb9,0x1c,0xbb, 0xe5,0x1e,0x4d,0x78,0xdb,0x69,0x36,0xce,0x15,0xa0,0x2d,0x48,0x94,0xcf,0x5c,0x43,0x1f,0xb1,0x65,0xf3, 0x21,0x1b,0x30,0x14,0x82,0xe2,0x68,0xf7,0x73,0x0f,0x37,0x1b,0x21,0xce,0x57,0x34,0x7c,0xd8,0x43,0x79, @@ -537,545 +537,545 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xcb,0x3c,0x4e,0x7c,0x13,0x6c,0x5f,0x44,0xa3,0x92,0xf9,0x1a,0x95,0xb0,0x71,0x92,0x5d,0x10,0x9c,0xdf, 0x24,0x07,0xb4,0x26,0xed,0xb4,0x47,0x07,0x58,0x20,0x1d,0xe8,0x0b,0x09,0xce,0x5f,0xce,0xed,0xc1,0xc2, 0x48,0xec,0x15,0xc6,0xe8,0x39,0xf3,0x6f,0xd8,0x6b,0x1e,0x5e,0xc7,0xdd,0x49,0xa3,0x93,0x2b,0xf4,0x16, - 0x30,0x79,0x09,0x6d,0x74,0xbb,0x8c,0xb6,0xc6,0xe2,0x48,0x36,0x6e,0xb3,0x9c,0x34,0x9c,0x7a,0x9a,0x20, - 0xc4,0xca,0xb6,0x45,0xc1,0xd3,0xcc,0x86,0x38,0x39,0x43,0xbc,0x80,0x96,0xed,0xe5,0xdb,0x96,0x7d,0x04, - 0xbb,0x28,0xe2,0x34,0xef,0x90,0x0b,0xec,0x9d,0xe9,0x7d,0xf5,0x21,0x6b,0x51,0x26,0xdd,0xd5,0x19,0xfb, - 0xae,0xf3,0xdf,0xec,0x1f,0xc6,0xdb,0xba,0x9a,0xb1,0xef,0xf4,0xdf,0x29,0x0d,0x55,0x9d,0xda,0x0d,0x6d, - 0x1c,0x05,0x09,0x24,0x76,0x0a,0x8c,0x6f,0xe2,0x28,0x14,0x12,0x01,0x9b,0xdd,0x56,0x1b,0x8d,0xee,0x3c, - 0xb1,0xe2,0x8b,0x8e,0x89,0x00,0xab,0x49,0x19,0x4e,0xa1,0x80,0x61,0xf0,0x3c,0x63,0x5c,0xd7,0x85,0x4b, - 0x13,0xa8,0x17,0x66,0xef,0x6c,0xe9,0xa8,0xf9,0x82,0xb7,0x90,0x94,0x6d,0xd9,0x1b,0x8d,0x6a,0x08,0x90, - 0x99,0x04,0x78,0x09,0x5a,0x2c,0x65,0x06,0xcf,0x27,0x6d,0x5e,0x6e,0xe9,0x1a,0xd8,0x12,0x7f,0x37,0x67, - 0x8f,0x2d,0x46,0x31,0x70,0x58,0xc3,0x2f,0x6e,0x09,0xb1,0x2d,0xbc,0xd0,0x64,0xf2,0xf0,0xde,0x94,0x86, - 0x58,0x95,0x70,0xd9,0xca,0xac,0xde,0x7f,0xc5,0x77,0x5e,0x7a,0x5e,0x00,0x99,0xef,0xd9,0x7d,0x2b,0x42, - 0xe6,0x23,0xe8,0x09,0xe2,0xd7,0xbc,0xe7,0x5d,0x82,0x2a,0xfc,0x37,0x3a,0x80,0xb9,0x14,0x4c,0xcb,0xf8, - 0x89,0x08,0x0e,0xfd,0x84,0xe0,0xc8,0xf8,0x3d,0x8d,0xf5,0x83,0x6f,0xd6,0xdf,0x5e,0xfe,0x6c,0xdc,0x8c, - 0xb3,0xbd,0x00,0x61,0x6f,0xe2,0x2c,0x06,0x67,0xe8,0xd9,0x7c,0xbf,0xf2,0x01,0x6c,0x0b,0x50,0xfa,0x0e, - 0x47,0x9a,0x2c,0x84,0x0e,0xa4,0xdd,0xa9,0x52,0xa7,0xb2,0xcb,0x1f,0xa5,0xbc,0x43,0x89,0xd0,0x4d,0x50, - 0x27,0x36,0x1e,0x48,0x2f,0xbe,0xd8,0x0d,0x02,0x02,0xfc,0xdf,0x4b,0xa8,0x17,0x91,0xa2,0xdf,0xc2,0xdb, - 0x95,0xac,0xa4,0xe9,0xb6,0x26,0xe8,0x32,0x08,0x46,0x2d,0xf1,0x5c,0xa6,0x63,0x02,0x84,0x8d,0x0e,0xbd, - 0x8b,0xea,0x1a,0xbf,0x3a,0xde,0xc0,0xbd,0x00,0xdd,0x36,0x75,0xf7,0x87,0x5d,0x72,0xeb,0x41,0x7d,0x75, - 0x11,0xc4,0xc1,0x22,0x6d,0x2e,0xd9,0xd0,0x68,0x2c,0x8f,0x5b,0xda,0xa2,0x27,0x99,0x89,0xee,0xb3,0xad, - 0xe1,0x34,0x35,0xda,0xa8,0x7b,0xbf,0xad,0xb2,0xea,0xe6,0x7d,0x06,0x3d,0x74,0x29,0xf7,0xd0,0xdc,0x15, - 0x4b,0x73,0x9a,0x5f,0x05,0x7d,0xaa,0x94,0x9f,0x3b,0x7b,0x85,0x6d,0x2e,0xab,0x6c,0xd6,0xf1,0x11,0x32, - 0x9e,0xd7,0xb9,0xef,0xc6,0x6d,0xc0,0x14,0x18,0x02,0x0e,0xda,0x29,0x2c,0xe7,0xe9,0xdb,0x7a,0xd4,0x55, - 0xab,0xa4,0x6c,0x0d,0xb5,0xe2,0x5f,0x1c,0xfe,0xf8,0xc5,0x21,0x8b,0x03,0x16,0x8f,0x9a,0x90,0x8f,0x5d, - 0xfb,0x2f,0x8a,0xe7,0x65,0xd5,0x5b,0x0b,0xfe,0x5a,0x94,0x91,0x13,0x3e,0x1e,0x0c,0x38,0x89,0x31,0xb2, - 0xa9,0x9b,0xe0,0x43,0x1e,0x72,0x0f,0x70,0x7f,0x12,0x21,0xb6,0x8b,0xb1,0x05,0x1a,0x0f,0x47,0x3d,0xfd, - 0xb2,0x90,0x49,0xf6,0xa3,0x3e,0xfa,0x7d,0xff,0x70,0xd6,0xf9,0x39,0xe3,0xb1,0x46,0x1b,0xa7,0x72,0x24, - 0x16,0xa2,0x08,0xf8,0xb9,0x2b,0x5f,0xc1,0x12,0x8a,0x8c,0x84,0x4f,0x5a,0xa0,0xd0,0x56,0xb0,0x88,0x0a, - 0xde,0x88,0x61,0xa5,0xe7,0x5c,0x84,0xa1,0x89,0x63,0xc8,0x2b,0xd6,0xd5,0x41,0x57,0xcb,0x7e,0x65,0x9f, - 0x29,0x63,0x45,0x89,0xb0,0xae,0x5b,0xaf,0xe7,0x39,0x3b,0x34,0xd2,0x0f,0x71,0x83,0x3c,0x60,0xd0,0x15, - 0x18,0xcd,0x63,0x48,0x95,0xde,0x22,0x54,0xd6,0x65,0x39,0x27,0x4e,0x9d,0x6b,0x68,0xc9,0x9e,0x30,0x4e, - 0x3f,0x01,0x94,0x71,0x3b,0x45,0xcb,0xe4,0x7c,0xfb,0xfd,0x4c,0x04,0x14,0x56,0xbb,0x2c,0x4e,0x72,0xd8, - 0x58,0x39,0x91,0x10,0xf9,0xa3,0xa4,0x1a,0xed,0xed,0xe5,0xb4,0x75,0x61,0xc1,0x98,0x9f,0x6a,0x42,0x3b, - 0x2c,0x71,0xd8,0x3b,0x4f,0x4b,0xcf,0xf3,0xe4,0x3b,0x0d,0x93,0x3a,0x46,0x9e,0xe7,0xf0,0xb5,0x5e,0x37, - 0xdd,0xa4,0xf6,0xbc,0x1b,0x48,0x16,0x6e,0x38,0x41,0x8c,0x8e,0x29,0xbc,0xf6,0x1a,0x79,0xa8,0x93,0xdf, - 0xb3,0xed,0x5a,0x5d,0x64,0x01,0x70,0x60,0x54,0x62,0xab,0x11,0x5c,0x8c,0x6c,0x4a,0xcc,0x89,0xec,0x20, - 0x52,0x58,0x33,0x59,0x85,0x48,0x58,0xaa,0xa4,0x16,0x6e,0x7e,0x82,0x9f,0x6a,0x4c,0xb3,0x46,0x53,0xfc, - 0x13,0x04,0x5f,0x89,0x71,0xc4,0xfd,0x01,0x8c,0xae,0xd6,0x81,0x06,0x0a,0x77,0x1e,0xa8,0x1c,0x46,0x13, - 0x38,0x09,0xe8,0xc7,0xed,0x2b,0x91,0x45,0x4f,0x07,0x83,0x95,0x01,0x6a,0xe2,0x5d,0xe4,0x6b,0xf8,0xac, - 0xf5,0x7d,0x9b,0x17,0x44,0x93,0xf3,0x37,0x73,0xfb,0x0d,0xb6,0xf0,0xbc,0x15,0xd5,0x66,0xd6,0x27,0x1b, - 0x17,0xe3,0xbc,0xb9,0x6f,0x92,0x47,0x6d,0xcd,0x31,0x8e,0xc0,0x54,0x2b,0x4d,0x6e,0x46,0xe9,0xf8,0x7b, - 0xf8,0x4b,0x49,0x72,0x00,0x19,0xf4,0x2c,0x64,0xa7,0x80,0x95,0x8d,0xfc,0xc1,0x05,0x10,0x47,0x50,0x87, - 0x0f,0xbc,0xb3,0xc5,0x55,0xa7,0xc5,0x15,0xb7,0xd8,0x9d,0x04,0xdd,0x32,0xb3,0xe1,0x76,0xbe,0xeb,0x68, - 0xc2,0x5e,0x67,0xf4,0x15,0x4f,0x7b,0xb0,0x2a,0x64,0x62,0x32,0xfa,0x07,0x41,0x6c,0xdb,0x60,0xf7,0xf7, - 0x16,0x8e,0xeb,0x8b,0xba,0xd3,0x31,0xc7,0xd5,0xdb,0x73,0x24,0x66,0x1f,0x5b,0x2a,0xd3,0x30,0x67,0x53, - 0xdc,0x68,0xa8,0xe3,0x82,0xb3,0x4e,0x3c,0x77,0x6f,0xc9,0x55,0x1e,0xa9,0xe2,0x84,0xe0,0x9d,0x60,0x70, - 0x58,0xa5,0xd7,0xaf,0x99,0x8c,0x4a,0x99,0x9c,0xda,0x0b,0x86,0xc1,0x9e,0x6f,0x0f,0x92,0xfa,0xd5,0x40, - 0x56,0x20,0x61,0x57,0x87,0x41,0x14,0xd1,0xfe,0x90,0x65,0x26,0x4e,0xa9,0xf1,0x38,0x25,0x07,0x98,0x74, - 0x50,0x72,0xad,0x91,0x8e,0x5b,0xbf,0x6d,0x02,0xfb,0x43,0xb6,0x2d,0x7d,0xce,0x04,0x74,0xf8,0x47,0xdb, - 0x4d,0xa6,0x6c,0x18,0x99,0x86,0x85,0x84,0xda,0xd0,0xe5,0xb5,0x71,0x64,0x05,0xe3,0xc8,0x4a,0x2e,0x4c, - 0xe0,0x63,0xc0,0xf5,0x80,0xaf,0x41,0x91,0x71,0x81,0x02,0x70,0xc6,0x93,0x9e,0x2b,0x44,0x16,0x7a,0x14, - 0xd0,0xb6,0xe1,0x36,0xcf,0x7e,0xd8,0x30,0xd6,0x12,0xd7,0xa9,0x36,0x11,0x9a,0x17,0x97,0x59,0x95,0x73, - 0xbc,0x6d,0x9a,0xa1,0x2c,0x14,0x64,0x68,0x91,0x60,0x66,0x3c,0x05,0x24,0x41,0x33,0x07,0xcc,0x27,0x51, - 0x63,0x18,0xcd,0x24,0xf1,0x3f,0x61,0xe1,0xf8,0x3c,0xa9,0x3a,0x49,0xcc,0x8f,0x69,0xd1,0x10,0xc2,0x21, - 0xb4,0x0a,0x24,0xac,0x85,0x9e,0x6b,0x77,0x09,0xa6,0x16,0xe7,0x51,0x99,0xcc,0x41,0xe1,0x4f,0x84,0x99, - 0x29,0x09,0xf4,0x21,0x29,0x05,0xdf,0x36,0x0a,0x5f,0x17,0xeb,0xf5,0x3b,0x18,0x74,0x68,0xe9,0x37,0xc4, - 0x15,0xf2,0xa4,0x8b,0x19,0x01,0xbb,0xce,0xf7,0x2a,0x9e,0x44,0xd8,0x7d,0x29,0xdb,0xe2,0x37,0x40,0xe2, - 0x63,0x04,0xb7,0x43,0x60,0x5a,0x1b,0x71,0xfc,0xf5,0xfb,0x30,0xcb,0x55,0x81,0xcc,0x28,0xfe,0x17,0x7d, - 0x17,0x21,0xd0,0x66,0xa7,0x10,0x32,0xbd,0x55,0xf8,0xde,0x37,0x10,0xf8,0x67,0xc5,0x4e,0x77,0x39,0x07, - 0xc8,0xde,0xfa,0x90,0x45,0x25,0x49,0x40,0x94,0x76,0x79,0x3d,0xa3,0xfd,0x51,0xd3,0x5e,0xc9,0x8a,0x40, - 0xc2,0x8e,0x05,0xcf,0x5e,0x3d,0x79,0xf6,0x54,0xdb,0x4a,0x0b,0x8f,0x3f,0x0e,0x9a,0x8a,0xc6,0x12,0x43, - 0xc9,0xdf,0x0a,0x8c,0xce,0x5e,0x6f,0xd6,0x1e,0xea,0x5f,0x95,0x0e,0x21,0xd0,0x2e,0xc2,0xbd,0x20,0xaa, - 0x71,0x96,0x52,0x39,0xd4,0x5b,0x8c,0xf5,0x73,0x2c,0xf5,0xba,0x1a,0x9a,0xfc,0x33,0xdd,0xb6,0x93,0xd2, - 0xe0,0xfe,0x8e,0x56,0x2b,0x92,0xd5,0x58,0xf3,0x05,0xaa,0x8a,0x2b,0x89,0xfa,0xc6,0x2e,0xf6,0x33,0x54, - 0xe4,0x35,0xfc,0xdb,0x5e,0xc1,0x6b,0xe2,0xf8,0xd9,0x2f,0xc7,0x8f,0xdf,0x3d,0x7b,0xdc,0x1a,0x35,0xa5, - 0x2f,0xdd,0x59,0xaa,0x67,0x87,0x63,0x6a,0xe6,0xd9,0xf2,0xd2,0x90,0x4e,0xbe,0x2d,0x60,0x43,0xc4,0x77, - 0xb9,0x7c,0x41,0x44,0xc4,0x34,0x27,0xdc,0x03,0xcb,0x9a,0xf4,0x22,0x15,0xe4,0xa8,0x4c,0x57,0x3a,0x77, - 0xbc,0x08,0x05,0x01,0x4b,0x91,0x51,0xd6,0x73,0x05,0x8c,0xcd,0x56,0xa6,0xe1,0x64,0xf7,0x60,0xd3,0xb3, - 0x0c,0x1e,0x24,0x7c,0xdb,0xd9,0x8f,0x86,0x74,0xe3,0xe0,0x3b,0xa5,0xde,0x2b,0xb2,0x29,0x33,0xc8,0xbf, - 0x3d,0x86,0x01,0xbb,0x2d,0xd5,0xbc,0x02,0xcb,0x2d,0x20,0x97,0x05,0x73,0xd4,0x2d,0x54,0xea,0x42,0x91, - 0xd5,0xad,0xf4,0xd2,0xfa,0xe6,0x4e,0x34,0xf8,0x51,0x10,0x52,0x1d,0xb1,0x78,0xa5,0x4b,0x5e,0x46,0x23, - 0x60,0xdc,0x3e,0xf6,0x48,0xb8,0x38,0xbe,0xe4,0x72,0xca,0xde,0xb8,0x04,0xb6,0xcf,0x33,0x4d,0x90,0x31, - 0xec,0xb1,0x25,0xbd,0x10,0x4d,0xd6,0x8c,0x9e,0x83,0x65,0xf8,0xe5,0x0b,0xa5,0xc9,0x39,0xa7,0x92,0x4b, - 0x5a,0x8c,0x12,0xcf,0x8a,0xf0,0x45,0x0d,0x6f,0x36,0x48,0x09,0xc7,0xaf,0x21,0x6c,0x7a,0xc5,0xfa,0x23, - 0x22,0xfe,0x47,0x1a,0xeb,0xb0,0x65,0x32,0x84,0x41,0x67,0x1c,0x37,0x36,0xc7,0x98,0xb9,0x92,0x8c,0xc8, - 0x62,0x96,0x50,0x86,0x75,0xf2,0x1a,0x28,0xe0,0x55,0xc6,0x12,0x44,0x05,0xd7,0xac,0x1c,0x06,0x98,0xd9, - 0x15,0x17,0xec,0xb9,0x83,0x40,0xac,0xbe,0x54,0x8d,0x53,0xdf,0x15,0x4c,0x6a,0x7f,0x59,0x7f,0xc9,0xb6, - 0x9c,0xe4,0x42,0xb6,0xcb,0xf2,0x1c,0x36,0x32,0x6d,0x16,0x7e,0x49,0xb8,0x5d,0x2e,0x79,0xa0,0xf6,0x2f, - 0x93,0x7c,0xef,0x70,0xe3,0x91,0x4d,0x8c,0x3a,0x77,0x0f,0x45,0x15,0x3a,0xc7,0x9f,0x15,0x5b,0x88,0x13, - 0x4b,0x36,0xa5,0xff,0x4b,0xfa,0x6f,0x1c,0x32,0x7b,0x84,0x28,0xd8,0x5c,0x6c,0x92,0x9b,0xf9,0x71,0xb1, - 0xe8,0x44,0xac,0xa3,0x2f,0xbe,0x16,0xdb,0xee,0xaf,0x1f,0xd2,0x90,0x45,0x3e,0xba,0x7b,0xe8,0xf6,0xe4, - 0x24,0xfa,0xe2,0xcb,0x4e,0x81,0x49,0xab,0xc0,0x3c,0xfa,0xfa,0xef,0x9d,0x02,0xf3,0x56,0x81,0x55,0xf4, - 0xe5,0x7f,0x77,0x0a,0xac,0x5a,0x05,0x0e,0x1f,0x7e,0x09,0x8e,0x71,0xbd,0xa6,0x07,0xde,0xcc,0x7e,0x17, - 0xf7,0x0e,0xa3,0xfe,0x8c,0x7d,0x64,0xcc,0x88,0xb9,0x5a,0xaf,0x97,0xd1,0x6d,0x7d,0x9d,0x6b,0x8f,0x81, - 0x49,0x4a,0xb5,0x7e,0xf1,0x65,0x0c,0xc3,0x03,0x31,0x9a,0x1d,0x49,0xd2,0xd7,0x71,0xdd,0x49,0xfa,0xfa, - 0xef,0xf1,0xbc,0x93,0xf4,0xe5,0x41,0xbc,0xdc,0xdb,0x6b,0xa5,0x1c,0xc6,0xcb,0xfd,0xfd,0xd6,0x67,0x87, - 0xf1,0xb4,0x5d,0xe6,0xeb,0x2f,0xe2,0x69,0xbb,0xcc,0xe1,0xc3,0x2f,0xe2,0x59,0xbb,0xd0,0xe1,0xc3,0xaf, - 0xe2,0xd9,0xfe,0x3e,0x28,0x33,0x99,0x10,0xb7,0xe7,0xae,0x12,0x1a,0x8e,0x5a,0x68,0x96,0x6b,0x74,0xc5, - 0xe1,0x25,0xc5,0xf9,0x25,0x5c,0x24,0xf6,0x9e,0x87,0x2b,0x88,0x55,0xf6,0xf7,0xa3,0xd1,0x62,0x30,0x38, - 0xd7,0x31,0x7c,0x17,0x11,0x6b,0x08,0x60,0xe8,0x2f,0x02,0x57,0x6b,0x3f,0x92,0x8e,0x43,0x86,0x22,0x66, - 0xd9,0xcd,0xa5,0xd1,0x0e,0xc4,0xe2,0x46,0x54,0x2c,0x5e,0xf9,0xde,0x82,0x31,0xdc,0xe4,0x2f,0xc1,0xe5, - 0xe0,0x12,0x10,0x07,0x5f,0xa5,0x0f,0x5f,0x69,0xd2,0x43,0xef,0x27,0x4e,0x72,0x17,0x84,0x81,0x08,0x38, - 0x1f,0x99,0x7b,0x49,0xee,0x9f,0x51,0xea,0x7d,0x22,0x4e,0xee,0x07,0x51,0x78,0x9f,0xa3,0xd0,0x07,0xa3, - 0x76,0x96,0xed,0x4b,0x11,0xb9,0x52,0x2a,0xb0,0x19,0x05,0xc1,0xc6,0x06,0xb2,0x65,0x5f,0xe2,0x97,0x7a, - 0x8e,0x77,0xbc,0xf9,0xda,0x4e,0xce,0xc1,0xc9,0x4f,0x2b,0x44,0x58,0x63,0x93,0xa8,0xea,0x14,0x81,0x81, - 0x7d,0xd9,0xdb,0xbf,0xba,0x62,0x14,0x44,0xcf,0x5f,0xb6,0x4d,0x4f,0x5c,0x18,0xa0,0xcd,0xb6,0x75,0xb9, - 0x57,0x60,0x13,0xc5,0x27,0x9e,0x35,0xd1,0x3f,0xed,0x59,0x1f,0x66,0x56,0x3b,0x6f,0x02,0x84,0x38,0x6c, - 0x70,0xcb,0x77,0x78,0x34,0x4a,0xc7,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0xc4,0xf7,0x25,0xca,0x1a,0xaf, - 0xb2,0xae,0x05,0xe8,0x5f,0xad,0xac,0x69,0x9c,0x95,0x20,0xd7,0xf0,0x2a,0x5d,0x4a,0x1c,0x22,0xfd,0x8e, - 0xa3,0xed,0x8e,0x0a,0x3d,0x0f,0xbc,0xc6,0xd1,0xb4,0xd0,0x84,0x02,0xbf,0xb3,0x5e,0xdb,0x78,0xa8,0xba, - 0x38,0x43,0x95,0x75,0x8b,0x6d,0x92,0x60,0x17,0x2e,0x3b,0x84,0xec,0x61,0x52,0xe9,0x17,0x61,0x07,0x5a, - 0xca,0xff,0x7f,0x3a,0x5f,0xfb,0xcf,0xfa,0x45,0x8c,0x4b,0x2d,0x95,0x1a,0x70,0x29,0xc2,0xc9,0xf0,0x0d, - 0x97,0x63,0x1f,0x86,0x25,0xf9,0xc5,0x65,0x33,0x0e,0x29,0x5f,0x13,0xc9,0x8b,0xac,0x58,0x05,0xca,0x56, - 0xc0,0xf9,0x51,0x5c,0x0d,0x17,0xf9,0x74,0x3a,0x67,0x21,0x6e,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96,0x81, - 0x31,0xf8,0x1d,0x55,0x5a,0x4d,0x3d,0x76,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x7e, - 0x02,0xab,0xc5,0x63,0x14,0xcb,0x5c,0x81,0xcc,0x66,0x69,0xcb,0x3d,0x13,0x58,0x70,0x33,0xc2,0x45,0xad, - 0x57,0x90,0x9d,0xd5,0x1e,0xe7,0xa2,0xaf,0x75,0x9f,0x24,0xb8,0x94,0x67,0xb4,0xa5,0xfb,0xcb,0xc7,0x13, - 0x7b,0xb3,0x78,0x6d,0xdd,0xf4,0x6a,0xb9,0xc8,0x27,0x99,0x50,0xfe,0x49,0xad,0x26,0xa7,0xf1,0xc9,0x44, - 0xd5,0xa7,0x71,0xdd,0x0b,0x02,0x95,0x05,0x01,0xa1,0x90,0x20,0x92,0xc6,0xad,0x60,0x7b,0x08,0xdc,0x2e, - 0x2f,0x57,0xfb,0x1c,0x9b,0x05,0x49,0xbc,0x93,0x39,0x06,0xaf,0x09,0xa3,0x89,0x83,0x4e,0x54,0x18,0xe2, - 0x05,0x63,0x08,0x19,0xfe,0xd4,0xff,0x20,0x37,0x1f,0x74,0x42,0xdd,0xe6,0xfe,0xa9,0x99,0xb7,0x7b,0xe3, - 0xbe,0x66,0xc9,0x8c,0x07,0xa2,0x7e,0x24,0x1c,0x0f,0x56,0xb5,0xd5,0x7e,0xde,0xb5,0xda,0x87,0x6e,0x09, - 0x4e,0x11,0x7c,0xa5,0x0a,0x02,0x85,0xde,0xe6,0x26,0x76,0x56,0x8a,0xd8,0x59,0xe2,0x62,0x61,0xd8,0x35, - 0xeb,0xc7,0xd8,0x6a,0xd2,0xb7,0xe2,0x4f,0x3b,0xb3,0x26,0x56,0xfa,0x79,0x12,0xdc,0xbb,0x77,0x45,0xc8, - 0x8c,0x11,0x28,0x08,0x87,0x24,0x08,0xb5,0xb8,0x90,0x32,0x76,0xa8,0xe5,0x9d,0xfb,0x32,0xf2,0xfb,0x63, - 0xa4,0x18,0x44,0x8b,0xe7,0x08,0xb2,0xd2,0xa1,0x38,0x3b,0xc8,0xa7,0x67,0xc4,0x77,0xee,0xe5,0x40,0x8f, - 0x9a,0x9f,0x4c,0xca,0x26,0x84,0x71,0xe8,0x48,0x1b,0xff,0x18,0xf0,0x21,0x1c,0x0b,0x5e,0x2f,0x22,0x8e, - 0xfb,0xd3,0x12,0xd7,0x0d,0x52,0x17,0xe3,0xfb,0x1a,0xc7,0xde,0x57,0xc6,0x34,0xc7,0x85,0x36,0xd9,0x09, - 0xd1,0xe0,0xce,0x6d,0xb0,0x97,0xee,0x05,0x9b,0xc0,0x5b,0x80,0xb2,0xf1,0xd1,0xb8,0x8f,0xdc,0x68,0x0a, - 0x7f,0xae,0x5c,0x00,0x43,0xef,0x32,0xab,0x93,0x20,0x7a,0x74,0x00,0xa9,0x23,0x6e,0xe7,0x7a,0x61,0x52, - 0x4f,0x29,0xf5,0xe7,0xca,0x46,0xe9,0x0d,0xbf,0xe3,0x8f,0xfd,0x12,0xe0,0xa9,0xbf,0xd9,0x3f,0x1c,0xdf, - 0x52,0xaf,0x63,0x77,0xfe,0x7c,0x47,0x14,0x1b,0xb1,0xe2,0x3c,0x00,0x93,0xfa,0x5d,0x45,0x18,0x1f,0x83, - 0xd9,0xc4,0x52,0x9a,0x4b,0x70,0x9c,0x26,0x26,0x7c,0x7e,0x02,0xc9,0x4a,0x2d,0xfc,0x5e,0x25,0x3f,0x40, - 0x44,0xb0,0x3b,0xc1,0x19,0x17,0xcd,0x9b,0xf0,0xc7,0x2a,0xa9,0xa1,0xd2,0x1e,0xaf,0xf0,0x1c,0xc5,0x5f, - 0x83,0xa5,0xfd,0xb1,0xf2,0xc5,0x54,0x46,0xfe,0x2c,0x1e,0x92,0x54,0xc5,0x77,0x95,0xa9,0x80,0x03,0xcb, - 0xe2,0x7b,0x35,0x87,0xaa,0x26,0x5a,0x71,0x9c,0x65,0x43,0xbe,0x70,0x5d,0x84,0x3b,0x10,0xbc,0xf0,0xeb, - 0x2f,0xf4,0xf3,0xfe,0x3e,0x9b,0xda,0xd1,0x1c,0xfe,0xc0,0x35,0x09,0x68,0x6d,0xd0,0xb8,0x89,0x79,0xde, - 0x1e,0xef,0xef,0x7a,0xbc,0x26,0xe5,0x77,0x1a,0xab,0xfa,0xa1,0x82,0xba,0xd1,0x69,0x92,0xb5,0x7b,0x27, - 0xfb,0x46,0x8c,0xe5,0x46,0x9b,0x26,0x0e,0xee,0x11,0x5d,0x1a,0xe2,0x0e,0x45,0xaa,0x51,0xdf,0xd9,0x85, - 0x02,0xf2,0xc8,0x10,0xe1,0x39,0xa1,0x36,0xce,0x7e,0xf8,0xa7,0xca,0x27,0xa8,0xf6,0xf6,0xbe,0xf3,0x4d, - 0xdf,0x27,0x5e,0xc1,0xef,0xaa,0x6f,0x92,0x9f,0x3d,0xb8,0x9f,0xfb,0x51,0xc3,0x99,0x3c,0xcc,0xd6,0x6b, - 0xa6,0x23,0x3d,0x21,0x36,0x4f,0x92,0xef,0x6c,0x28,0xb3,0xc9,0x0e,0xb4,0xbc,0x16,0xf0,0xcb,0x18,0x45, - 0x23,0xcf,0x31,0xaf,0xf1,0xa5,0x22,0x0d,0x22,0x55,0x34,0xd1,0xf0,0x0c,0xd7,0x45,0x1e,0xa7,0x35,0x0c, - 0x7b,0x52,0xf7,0xe6,0x4b,0xcd,0x2e,0x9d,0x87,0x67,0x92,0xde,0x11,0x4f,0x42,0xf7,0xf6,0x92,0xfd,0x2a, - 0xe9,0x6c,0xe6,0xbb,0x18,0x9b,0x16,0xd9,0xe2,0x36,0xf2,0x6f,0x55,0x37,0x1c,0xed,0x4e,0x1e,0xba,0xeb, - 0x01,0xfb,0x9b,0x20,0x7c,0xc1,0x1b,0x53,0x7c,0xd8,0x36,0x08,0x61,0x8c,0xb8,0x04,0xea,0xb7,0x6a,0x9b, - 0x47,0x44,0x6b,0x3f,0x16,0xe3,0x5b,0x7d,0x0e,0xc2,0x52,0x47,0xce,0x32,0x84,0x95,0xd3,0xf8,0xde,0xa3, - 0x64,0xa6,0x8d,0xd3,0x59,0x85,0x74,0xaa,0xfe,0x56,0x45,0xbd,0x9c,0x29,0x22,0x5a,0x79,0xf3,0xd5,0x76, - 0x06,0x58,0x36,0xa1,0x89,0x4a,0xb5,0x6b,0x05,0x36,0x25,0xd8,0xfc,0x5d,0x2b,0xae,0xc1,0x2d,0x00,0x96, - 0x07,0xd5,0x29,0x8c,0xd4,0xd2,0xa4,0xf0,0xdf,0x47,0xbf,0x55,0x9a,0x49,0xed,0x20,0x07,0xea,0xe8,0xc9, - 0x19,0xf4,0x40,0x1a,0x77,0xbc,0x2e,0xc6,0x81,0xbe,0xfe,0x3a,0x36,0xd6,0x89,0x1c,0x24,0xda,0xf9,0x02, - 0xf0,0x07,0x1c,0xee,0x99,0xfd,0xcc,0xdd,0xd5,0xe3,0x94,0xbc,0x41,0xf6,0x75,0x2e,0x31,0x10,0x86,0x52, - 0x51,0xeb,0xd3,0x6b,0x7c,0xaa,0x33,0x3a,0x9f,0xe3,0xb3,0x0d,0x78,0x9c,0xdf,0x58,0x45,0x3f,0x6b,0xd4, - 0x14,0x01,0x63,0xad,0xcc,0xf8,0x37,0x1b,0x12,0xc0,0x73,0x38,0xec,0x9b,0x23,0xe3,0x70,0xd3,0x9a,0x29, - 0x9b,0xe8,0x8b,0xd8,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0xba,0xe5,0xa7,0xde,0x25,0xe0,0xb2,0x3e,0x3e, - 0x2d,0x19,0x57,0x2e,0x72,0x56,0x88,0xa2,0x72,0x1d,0xb1,0x2e,0x3f,0x4d,0x82,0xc0,0xcb,0x9d,0xeb,0x5b, - 0x06,0x51,0x42,0xf1,0x5d,0xd1,0xe6,0xee,0x66,0xed,0x9e,0x94,0x17,0x04,0x28,0xdf,0x1d,0xbf,0x7a,0xc9, - 0x09,0x5c,0xba,0xea,0x0f,0x81,0xeb,0x99,0x40,0xa5,0x54,0xb6,0x46,0x9b,0x98,0xbc,0xbc,0x58,0x65,0x23, - 0xe0,0xbc,0x52,0x8a,0xbe,0x86,0x93,0x96,0x15,0x35,0x97,0x1a,0x30,0x8f,0x90,0x15,0xfa,0x45,0x60,0x7e, - 0xc4,0xd7,0x1a,0x8b,0x94,0x4d,0x9a,0x2f,0x87,0x67,0xfc,0x9a,0xa4,0xda,0x8a,0x11,0x22,0x32,0x44,0xc7, - 0xb7,0x37,0x66,0x8d,0xa6,0xc9,0x4a,0xed,0x86,0xb3,0xa4,0x8c,0x44,0xda,0x50,0x53,0x3a,0xac,0xb3,0xdf, - 0xbc,0x3d,0x7e,0xf1,0xe6,0x35,0xea,0x99,0x19,0xf1,0x0f,0x31,0x84,0x3d,0x6c,0x08,0xe1,0x06,0x76,0x30, - 0x77,0x17,0x63,0x89,0xa3,0xb4,0xd6,0xc3,0xf1,0x35,0x07,0x36,0xce,0x90,0x77,0xfc,0x67,0x56,0x4c,0xd8, - 0x6c,0xc2,0x99,0x9a,0x46,0xad,0xea,0x3d,0x45,0x9c,0xa8,0x12,0x44,0x85,0xfd,0xca,0x90,0x6d,0x62,0xbe, - 0x96,0x47,0xda,0xa4,0x65,0x9e,0xfe,0x7e,0xe3,0x82,0x79,0x8b,0x95,0x0b,0x9f,0xf2,0x86,0x20,0x9a,0x88, - 0xab,0xda,0x44,0x07,0x7d,0xcb,0x99,0x2a,0x70,0xb6,0xf7,0x42,0x23,0xb0,0x87,0xb1,0x3c,0x9a,0x8e,0x82, - 0x64,0x2c,0xa4,0x7f,0x0c,0x12,0xd2,0x9b,0x64,0xa5,0xed,0x6f,0x18,0x44,0x52,0xb9,0x05,0x90,0xca,0x78, - 0x7e,0x9d,0x8d,0x3b,0xf3,0x16,0x0d,0xab,0xa4,0x6f,0xe6,0x9e,0xd1,0x92,0x96,0xb5,0xbc,0x47,0xea,0xf8, - 0x2a,0x6c,0xbd,0x73,0xec,0x04,0xcf,0x9b,0xb1,0xf9,0x9c,0x42,0x79,0x71,0x87,0x76,0xf6,0x28,0xef,0xc4, - 0x2e,0xb9,0x68,0xda,0x32,0x30,0x16,0x18,0xa5,0x1d,0xd9,0x57,0xee,0xf7,0x23,0x12,0x5d,0x58,0x6d,0x9f, - 0xd3,0xad,0xdc,0x54,0xe7,0x46,0x5e,0xc4,0x1f,0xbd,0x4f,0xe7,0x49,0xab,0xb8,0x5a,0xc1,0x20,0xb5,0xac, - 0x16,0x7c,0x9d,0xfc,0x94,0xd3,0xa0,0x20,0xa8,0xe5,0x81,0xf6,0xe1,0x2c,0x99,0xaf,0xd7,0x2b,0x35,0xc5, - 0x7c,0xe9,0x8d,0x2a,0x95,0xf3,0x56,0xd6,0x29,0x9d,0x1a,0x12,0x18,0xc1,0xeb,0x1d,0x2e,0x7e,0x53,0xd3, - 0x28,0x9e,0x8e,0xc4,0xb0,0xb5,0x0d,0xad,0xbe,0xb6,0x9d,0xe9,0xc8,0x6c,0xd4,0x23,0x60,0xfb,0x4b,0x82, - 0xb7,0x2b,0xab,0x09,0x8d,0x60,0xdf,0xc2,0xce,0x62,0x92,0x9c,0x75,0x93,0x9d,0xe3,0x72,0x06,0x73,0xf5, - 0xa1,0x89,0xbf,0x96,0xb6,0x6a,0x4b,0xbb,0x9f,0x39,0x95,0x7e,0x25,0x75,0x70,0x68,0xcc,0x19,0x21,0xa9, - 0x25,0x6c,0x1a,0x07,0x83,0xc7,0xb0,0x44,0xac,0x95,0xc1,0x52,0x9c,0xbd,0x8c,0xc2,0x32,0xe1,0x7c,0x02, - 0xde,0x19,0xfd,0xda,0x62,0x3a,0xd6,0x09,0x30,0x40,0xe9,0xb3,0x04,0x37,0x8d,0xef,0x95,0xc6,0x91,0x42, - 0xb5,0x1c,0x43,0x22,0x70,0xb0,0x30,0x8e,0x4d,0x08,0x3d,0xa1,0xc3,0x4e,0xc0,0x94,0x65,0xa3,0xed,0x5a, - 0x1e,0xfc,0x5a,0xef,0x3d,0x88,0xec,0x25,0x4e,0x3d,0x1e,0xe1,0x5e,0x3d,0x1c,0x5c,0x0b,0x81,0xc5,0xe2, - 0xed,0x44,0x3f,0xc8,0x2e,0x34,0x2c,0xd4,0xfe,0x45,0x8f,0x68,0x30,0xd2,0xd6,0x97,0x3b,0xb8,0xf9,0xd1, - 0xeb,0x14,0x6b,0x64,0x02,0x56,0x92,0x67,0xfd,0x32,0xc5,0xb0,0x20,0x2e,0xcb,0x0c,0xd0,0x8f,0xbd,0xff, - 0xff,0xfb,0x2c,0x08,0x32,0xdf,0x9e,0x08,0x9b,0xae,0xfc,0x54,0x39,0x04,0xc0,0x04,0x74,0x45,0xf8,0x66, - 0x4a,0x64,0xea,0x9c,0xac,0xf9,0x4f,0x4d,0x1f,0xac,0x4f,0xcc,0xb4,0x79,0x53,0x59,0xc1,0x16,0x6c,0x04, - 0xef,0x68,0x7b,0xdb,0x54,0xa5,0x30,0x5c,0x80,0xb8,0x41,0x93,0x50,0x4a,0xf4,0xce,0x31,0xdf,0xa3,0x71, - 0x57,0x37,0xbd,0x39,0x3f,0x6b,0x34,0x69,0xa3,0x2d,0x40,0xb6,0x6e,0x6d,0x31,0x48,0xd4,0x5e,0x07,0xcc, - 0x2c,0x30,0x4d,0x0b,0xa4,0xc6,0xb8,0xc9,0xe2,0x69,0x1e,0x66,0xda,0x6a,0x2b,0xb8,0x0a,0x10,0x00,0x33, - 0x64,0x65,0x71,0xa3,0x51,0x78,0x0f,0x6e,0x7c,0xca,0xb8,0x71,0x8b,0x3c,0xb9,0xe6,0xbe,0xbc,0xcb,0x7d, - 0x07,0x9a,0x77,0x28,0xea,0x0b,0x62,0x8e,0x9b,0xb6,0xf5,0xc8,0xb6,0xcc,0x9b,0xa5,0x10,0xdb,0xc9,0x1c, - 0x17,0xa8,0xf0,0x2c,0xbf,0x00,0xa1,0x70,0x20,0x81,0x3c,0x81,0x56,0x5a,0xef,0x41,0xdf,0xbf,0x54,0x37, - 0xd5,0x57,0xdb,0x60,0xb0,0xea,0x6d,0x05,0x01,0xb8,0x35,0x1c,0x7b,0x4e,0xa7,0x1d,0x4e,0xfa,0xbd,0x14, - 0x50,0x38,0x06,0xb4,0xc9,0x45,0x65,0x1c,0x82,0x98,0xce,0x82,0xd8,0x8c,0xa3,0x58,0xf3,0xb9,0x60,0xa5, - 0x0a,0x26,0xf4,0x4a,0x9d,0xc0,0xf0,0xe2,0x43,0x3e,0x7e,0x9e,0xc7,0xaf,0x72,0xc2,0xf8,0x1d,0x1f,0xb4, - 0x7e,0xc5,0x4e,0xad,0x56,0xb0,0x5b,0x67,0x7f,0xb3,0xb6,0x8e,0x48,0xc2,0x61,0x08,0x6f,0xb7,0xb7,0x37, - 0xf9,0x06,0x9a,0x45,0xb8,0x9b,0x8d,0xfa,0x9d,0x9a,0x26,0x8f,0x74,0xbe,0xc2,0x35,0xcd,0xaa,0x47,0x49, - 0x84,0xa6,0x3c,0xa7,0x57,0x7f,0xc9,0x08,0xda,0xf5,0xad,0xba,0xd4,0xe4,0x91,0x0e,0xe0,0xc1,0x67,0x89, - 0xc4,0x9c,0xa8,0x4e,0x5e,0xe6,0x7b,0xc1,0x53,0x38,0x5a,0x05,0xa7,0xd6,0x64,0x0f,0x56,0x51,0xa9,0xc9, - 0x5b,0x55,0x72,0xd5,0x75,0x3b,0xbb,0x4c,0x3e,0x35,0x1c,0x4a,0x16,0x4a,0xd8,0x93,0xd7,0x77,0x54,0x32, - 0x31,0x79,0xfd,0x95,0xcc,0x51,0x09,0x8c,0x5d,0x69,0x8e,0x0e,0xa0,0x7e,0x70,0xb7,0x01,0xf3,0x84,0x97, - 0x6c,0x82,0x5e,0xd0,0x23,0x15,0x28,0xa9,0x80,0xb1,0x75,0x27,0x8a,0x01,0x16,0xd8,0xf9,0x78,0xae,0x4b, - 0xbc,0x40,0x89,0x39,0x95,0x98,0xd8,0x12,0xb3,0x84,0xd2,0xc3,0x95,0x8b,0xda,0x5e,0x82,0xf6,0xfd,0xe6, - 0x80,0x6a,0x9d,0x8f,0x3f,0xe4,0xf1,0x8b,0x9c,0xb9,0xfd,0x68,0x5c,0x48,0x63,0xa6,0xee,0xd8,0x54,0x11, - 0x1f,0x28,0x1d,0xbc,0x59,0x69,0x68,0x89,0x57,0xca,0xc2,0x4a,0x3c,0xc3,0x95,0xcc,0xc7,0xe6,0xea,0xc0, - 0x58,0x6a,0x19,0x0c,0x9e,0x68,0x59,0xba,0xcc,0x9e,0x89,0x04,0x12,0x9c,0xfa,0x68,0xe0,0x53,0xe3,0x0e, - 0xe9,0x91,0x91,0x7f,0x3c,0xb2,0xf1,0x16,0xa3,0x2c,0xb1,0x21,0xb8,0x1d,0x11,0x65,0xc6,0xd1,0xba,0x5c, - 0xac,0x2d,0x51,0xf6,0xbd,0xcb,0x1f,0xc3,0x72,0x72,0xef,0x71,0x23,0x81,0xaa,0x36,0xfe,0x4e,0x7b,0xec, - 0x93,0x58,0x87,0xd9,0x17,0x7f,0xd3,0xd7,0xd5,0x3a,0x01,0xc2,0xfe,0xa1,0x5f,0xfe,0x9e,0x47,0x4b,0x81, - 0x84,0x22,0x7a,0x07,0x6e,0x5d,0xb8,0x27,0x28,0x25,0xe2,0xfc,0x9c,0x9d,0x29,0xec,0x9b,0xbe,0xb6,0x73, - 0x2e,0x91,0xf7,0x5c,0x7a,0x68,0x64,0xa0,0xc9,0x59,0x63,0xb8,0x21,0xb7,0xa1,0x23,0xeb,0xab,0xc5,0x36, - 0x97,0xf4,0x19,0x41,0x78,0x56,0x71,0xe5,0x87,0x1c,0x55,0x0c,0x04,0x09,0x6e,0xbc,0x73,0xb4,0x0d,0x22, - 0x92,0x11,0x62,0x54,0xf0,0x9f,0xe5,0x8d,0x4d,0x40,0x32,0x94,0xcf,0x58,0x95,0x37,0x33,0xaf,0xc7,0xa5, - 0x24,0x4c,0x4d,0xc2,0x63,0xa6,0xd9,0x25,0x71,0x49,0x89,0x34,0xa5,0x59,0xaa,0xbf,0xba,0xb4,0xef,0xe6, - 0xb3,0x2b,0x9b,0xe2,0x7f,0xb7,0xa0,0xd4,0xf3,0x0c,0x76,0xe5,0xcf,0x50,0xa5,0xba,0x30,0x95,0xab,0x1b, - 0x94,0xc7,0x35,0xf0,0x92,0x71,0x6e,0x7b,0x65,0x26,0x46,0x5d,0xdb,0x6f,0x1f,0x73,0xbd,0xea,0xd8,0x36, - 0xa1,0x3e,0x9a,0xaf,0x75,0xd6,0x91,0xeb,0x9f,0xfd,0xfe,0x3d,0xa5,0x4d,0xf5,0x9e,0x52,0x9f,0x92,0xeb, - 0x4a,0x3d,0xa6,0x3f,0xda,0xc0,0x7f,0xf4,0x98,0x28,0x20,0x4b,0x72,0x7d,0x4a,0xc2,0xc7,0x89,0x79,0x8d, - 0x0c,0xc7,0xca,0x2b,0x71,0x2f,0xd9,0xfd,0xe4,0x05,0x61,0x22,0x8e,0x94,0xad,0xff,0xcb,0x12,0x74,0x20, - 0xe2,0x0b,0x63,0x49,0xee,0xad,0xd7,0xc7,0x38,0x3c,0x69,0x0d,0x8e,0x05,0x04,0xde,0x24,0xf7,0x06,0x83, - 0xe5,0x78,0x49,0xbb,0xe1,0x19,0x1e,0xaf,0xc6,0x57,0xf1,0x54,0x3d,0xc5,0xe3,0xe5,0xf8,0x92,0xf6,0xc5, - 0xdb,0xe4,0xde,0xf8,0x7a,0xbd,0x5e,0xc4,0x0b,0xf5,0x01,0xa9,0x3d,0xfe,0x33,0xc7,0xe3,0xe3,0xf8,0x42, - 0xbd,0xa0,0x82,0x1f,0xd7,0xeb,0x9b,0xf8,0x46,0xbd,0xa4,0xc7,0xa3,0xf5,0xfa,0x3c,0x3e,0x57,0xcf,0x89, - 0x6f,0xc9,0xc3,0xf7,0xd1,0xf8,0xbd,0x4c,0x5b,0xfc,0x3e,0x52,0xaf,0x13,0x3e,0x08,0x6b,0x56,0xd8,0xab, - 0x57,0xc9,0xd3,0x26,0xfc,0x10,0xa9,0x77,0x89,0x83,0x13,0xdf,0x53,0x37,0xba,0x7d,0x4d,0x20,0x49,0x07, - 0x4a,0xaa,0x9e,0x46,0x8a,0x7f,0x9f,0xd1,0x51,0xf9,0xce,0x81,0xe6,0x38,0xa4,0x12,0x9c,0xf1,0x26,0x52, - 0x2f,0x07,0x83,0x97,0x6c,0x69,0xf1,0x62,0x30,0x78,0x01,0x7f,0x06,0xaf,0x56,0x1d,0xb8,0x5d,0xc3,0x6b, - 0x7d,0x59,0xd2,0xc0,0xbe,0xa7,0xed,0xe0,0x4c,0xa4,0x5c,0xa3,0x46,0x68,0x24,0x73,0x0d,0x3e,0x55,0xe9, - 0xd0,0xca,0x67,0x08,0x7b,0xc4,0xac,0xa6,0x7b,0x3e,0x61,0xc1,0xda,0xe9,0x88,0x03,0x23,0x89,0x61,0x62, - 0x21,0x86,0x89,0x0d,0x76,0x98,0xdd,0x37,0xdd,0xf7,0x30,0x52,0x1f,0x06,0x83,0x0f,0xd4,0xf5,0x77,0x30, - 0x9b,0x7a,0x3b,0x18,0xbc,0x45,0x9f,0x31,0xe2,0x63,0x3d,0xa0,0x63,0x19,0xb1,0xba,0x6e,0x1d,0x24,0xc7, - 0xfe,0x7c,0xbc,0x69,0x4d,0xc7,0x7a,0xfd,0x8a,0xce,0xf1,0x67,0x4d,0xf8,0x3c,0x1a,0x7b,0xa7,0xd0,0x3b, - 0xf5,0x3c,0x8a,0x8f,0x50,0x7c,0x4e,0x8d,0x01,0x89,0x28,0x6f,0x22,0xc4,0x2a,0xb7,0xf2,0xfb,0x43,0xdd, - 0xe0,0xaa,0xde,0x85,0x6d,0x0f,0x30,0x8d,0x40,0x9c,0xb0,0x9b,0xba,0x73,0xe4,0x37,0x1f,0xb6,0x26,0x38, - 0x24,0xce,0xd3,0x4d,0xa2,0x9d,0x31,0xe8,0xba,0xfb,0xd2,0xc5,0x1f,0x55,0xa6,0x33,0x29,0x22,0x75,0x49, - 0x80,0x88,0x40,0xab,0xd7,0x32,0x25,0x25,0x3c,0x2c,0xf8,0x77,0xd9,0x33,0x25,0x25,0xf1,0x50,0x98,0x12, - 0x2e,0xd5,0xea,0xd3,0xb1,0x4c,0xc9,0xc7,0xd6,0x94,0x1c,0xa9,0x8f,0x3c,0x25,0xa5,0x5a,0xa9,0x23,0x99, - 0x92,0x2b,0x50,0x66,0x25,0xbd,0xa9,0x6b,0xfe,0xe8,0x08,0x74,0xb6,0x36,0x34,0xd7,0xb8,0xb2,0xf4,0xd1, - 0x99,0xf7,0xd6,0xc6,0x95,0x2e,0xdd,0xe0,0xca,0xfa,0x6e,0x5c,0x29,0x51,0x64,0xe5,0x2e,0x1a,0x8b,0x1a, - 0x0d,0x03,0x25,0xda,0xd8,0x5d,0x6e,0xd8,0x20,0x69,0xe3,0xa4,0x52,0x33,0xce,0x5c,0x25,0x12,0x2b,0x86, - 0x90,0x24,0xe4,0x2d,0xa9,0xc1,0x6a,0x53,0xf3,0x6a,0x90,0xdf,0xd2,0x24,0xf8,0xb8,0xef,0x92,0x12,0x05, - 0x7f,0xbd,0x44,0x16,0x61,0x48,0x5d,0x88,0xb0,0x62,0x2d,0xd8,0x4b,0x32,0x2e,0x6c,0xed,0x16,0x77,0xdd, - 0x50,0x12,0x7b,0x76,0x4b,0x89,0x73,0xbc,0x1a,0x54,0x76,0x2d,0xdb,0x7c,0x2e,0xdb,0xfc,0x18,0xdb,0xfc, - 0x8a,0x56,0x87,0x11,0xc2,0x79,0x34,0x3e,0x97,0xba,0xe2,0xf3,0x88,0xb1,0xa2,0x19,0x5a,0x7b,0xeb,0xfb, - 0x20,0x02,0x11,0x52,0x0f,0xc0,0xf0,0x1a,0xf4,0xa4,0x5b,0x18,0xe2,0x20,0x60,0xd7,0x82,0x43,0x1c,0x80, - 0x2c,0xa3,0x16,0x84,0x8c,0xc3,0x6b,0xc6,0x21,0x0c,0x39,0x54,0xe7,0x05,0x1b,0x8a,0x84,0xd8,0x10,0x8b, - 0xc1,0x60,0x81,0x37,0xe5,0x75,0x52,0x63,0x92,0x9b,0xf1,0x0d,0x6d,0xd7,0x38,0x0d,0x7d,0x82,0xe0,0x99, - 0x77,0x22,0x6f,0x47,0xa7,0xa2,0xd9,0x90,0x0b,0x18,0x7d,0xed,0xf2,0x53,0xc4,0xac,0x65,0x56,0xc2,0x05, - 0x40,0xd6,0x21,0xb6,0x61,0x4e,0x8c,0x50,0xc9,0x5e,0x00,0xa9,0x31,0x15,0xdf,0x0a,0x84,0x53,0x9d,0x1c, - 0x9c,0xc6,0x08,0x83,0x63,0xaf,0xfc,0x83,0x33,0x8c,0xa6,0x9f,0xbe,0xf1,0x34,0x7a,0x6f,0x35,0xbd,0xb2, - 0x0b,0xf5,0x7d,0xe3,0x63,0x80,0x7b,0x7c,0x33,0xb2,0x73,0x1c,0xb1,0xa4,0xf7,0x0b,0xf3,0xa4,0x9c,0xa9, - 0x5c,0x3f,0x7d,0x6b,0x4b,0x6e,0xd4,0x81,0x57,0xd5,0x8b,0x0e,0x15,0xdf,0x78,0x92,0xb1,0xc5,0x6a,0xde, - 0xe4,0xcb,0x79,0x26,0xf4,0xfa,0x7a,0xdd,0x1d,0x99,0x17,0x39,0x8d,0x4d,0x5d,0xe0,0xbc,0x65,0x1d,0x6f, - 0xba,0xbe,0x5b,0xf0,0x03,0x71,0xb9,0xb8,0x82,0x23,0x8f,0xd2,0xe4,0x9c,0xd8,0xbf,0xe7,0xb0,0x02,0x02, - 0xbf,0xab,0x70,0x95,0xd3,0x9c,0x2f,0x66,0xa7,0x09,0x48,0x19,0x7c,0x4c,0x42,0xe2,0x05,0x04,0xbb,0x09, - 0xf9,0x13,0x2f,0x82,0x30,0xb8,0x2e,0xd0,0x55,0xba,0x30,0x2b,0xaa,0xe4,0x1c,0xeb,0xa6,0x26,0x70,0xeb, - 0xcb,0x99,0x9b,0x6a,0xa7,0xef,0xb7,0x6e,0xa0,0x7c,0xd9,0xb4,0xaf,0x6b,0xe9,0x5e,0xc3,0x67,0xb3,0x76, - 0x6f,0x42,0x31,0xac,0xf5,0xfc,0x48,0x7c,0x28,0x13,0x51,0x29,0xc7,0x79,0xc3,0x65,0x05,0xa2,0xf6,0xd3, - 0xe2,0x47,0xcf,0x15,0xa4,0x11,0x67,0x68,0xe1,0x59,0x9c,0xcc,0x14,0x46,0x68,0xce,0x07,0xe4,0x8e,0x42, - 0x3c,0xc8,0xed,0x2f,0x0f,0xd5,0xbb,0xc6,0x66,0x28,0x2d,0xc8,0xf7,0xe9,0xcd,0x77,0x2d,0xa6,0xb3,0xeb, - 0xf0,0x70,0xc5,0xee,0x0e,0x90,0x3a,0x8b,0x5a,0x3c,0x10,0x3e,0x33,0x6f,0x24,0xa7,0x51,0x84,0x49,0x39, - 0x76,0xd2,0x70,0x9a,0xd7,0x6c,0xa3,0x2c,0x19,0xbe,0xfa,0xe2,0x89,0x37,0x13,0xbb,0x77,0x38,0x3c,0x88, - 0xa4,0x2a,0xeb,0x22,0xdf,0x71,0x16,0x3f,0x61,0x7f,0x9a,0xbb,0x64,0x66,0x9e,0xeb,0x85,0x27,0x15,0x65, - 0x32,0x60,0xcb,0x30,0xd6,0xac,0x22,0xce,0xf8,0x96,0x49,0xac,0x71,0x5b,0x1f,0x53,0x1d,0xff,0x84,0x37, - 0x98,0x75,0x49,0xf4,0x85,0x9c,0x3f,0x79,0x0d,0xf0,0x15,0x98,0x2e,0x5a,0x6a,0x3b,0x90,0x52,0xe1,0xae, - 0xac,0x88,0x10,0x44,0x89,0xcd,0x9b,0x47,0x3a,0xb6,0x12,0xa1,0x3f,0x46,0x85,0x86,0x9f,0xec,0x78,0xf3, - 0xe5,0xf4,0xc5,0x35,0x2e,0x07,0x39,0x65,0x7f,0xbe,0x9e,0x98,0xb6,0x3f,0x3a,0x49,0xd2,0x83,0x5f,0xa7, - 0xfb,0x1f,0xb3,0x6c,0xb9,0x9f,0xce,0xe9,0xb0,0xb8,0xa7,0x6f,0x1e,0x64,0xfa,0xc6,0x05,0xca,0x0e,0x03, - 0x57,0x24,0x50,0xb7,0xdc,0xb5,0xb8,0xd9,0x9a,0x1d,0xd7,0x67,0x1f,0x88,0xbf,0xd3,0xc0,0xc6,0x24,0x11, - 0x2b,0x07,0xce,0xf9,0x26,0x4c,0xf7,0xca,0xb6,0x96,0xfc,0xae,0x4f,0x53,0x9b,0x6f,0x4f,0x57,0xcf,0x74, - 0x5c,0x57,0x27,0xe2,0xd6,0xec,0xfa,0x6d,0x89,0xb0,0x44,0x28,0x4d,0xc0,0xf9,0x84,0x08,0x63,0x0e,0x0d, - 0x32,0xcf,0xe9,0xd3,0x77,0xb8,0x07,0xde,0x8f,0x59,0xef,0x2f,0xaf,0x54,0x40,0x20,0xae,0xac,0x93,0x8d, - 0xd4,0xa6,0xaf,0xb6,0x98,0x35,0xfb,0x05,0xff,0xf0,0x1d,0x6a,0x4d,0xb9,0xa4,0x57,0xfa,0x0b,0x0c,0x56, - 0xad,0xd7,0xb9,0xed,0x02,0x86,0x30,0x35,0x1a,0xc8,0x54,0x77,0x85,0x05,0xc3,0xa3,0xd4,0x5d,0x54,0x4f, - 0x44,0xe6,0xcf,0xd9,0xf9,0xc7,0xbc,0xb1,0xfc,0x67,0x12,0x70,0x26,0x02,0xea,0x85,0xc1,0x5e,0xb5,0x17, - 0x2c,0x3f,0x29,0x56,0xf5,0x2f,0x3f,0x45,0x81,0xf2,0x01,0xd8,0xf0,0xe2,0x49,0x70,0x50,0xfb,0x7a,0xfa, - 0xdf,0x5a,0xbb,0xae,0x19,0xbf,0x49,0xe3,0x7b,0xa9,0x93,0xe0,0x1b,0xa9,0x58,0xd1,0xd2,0xd2,0x19,0x66, - 0x33,0xc5,0xad,0xbb,0x7e,0xd8,0x78,0x8b,0xbd,0xb5,0x82,0x9a,0x19,0xe9,0x43,0x8e,0x15,0x90,0x29,0x6b, - 0x5c,0x11,0x37,0xca,0x98,0x43,0xb4,0xee,0xf2,0xed,0xde,0xec,0xaa,0x9c,0x99,0x80,0xbd,0x1f,0x44,0xc7, - 0x5b,0xd6,0xae,0x91,0x78,0x94,0x30,0x24,0xce,0x91,0xab,0x89,0x94,0x40,0xb6,0x1f,0x54,0xe5,0xc4,0xbf, - 0xc0,0xe6,0x5b,0x73,0xb0,0x6d,0xab,0xee,0xd9,0x8a,0x85,0x00,0xf5,0x86,0xf0,0x8b,0xdc,0xed,0xc8,0x61, - 0xce,0xe0,0x7b,0xe0,0x59,0x3e,0x65,0xe2,0x5a,0xb4,0xeb,0x1b,0x37,0x69,0x73,0x86,0xbb,0xaa,0xac,0xb2, - 0x99,0xad,0x92,0x9e,0x39,0x72,0x9a,0xf1,0x87,0x6a,0x49,0x8a,0x3c,0x23,0xda,0x51,0x21,0xa1,0x3e,0xed, - 0x55,0x33,0x05,0x64,0xae,0xce,0xdd,0x08,0x22,0x4a,0x1d,0xc8,0xd3,0xc6,0x8a,0x06,0x15,0x8a,0xbe,0x76, - 0x94,0xaa,0x01,0xc2,0x5d,0x58,0x3b,0x67,0x58,0x6b,0xd3,0x3b,0xf4,0x5d,0xba,0x7b,0x98,0xcf,0xc0,0x93, - 0x4a,0x37,0xed,0xe8,0xde,0xfc,0x15,0xac,0xa0,0xc4,0x90,0x87,0xc3,0x1e,0x04,0x7c,0x0b,0x1e,0x55,0xc3, - 0x21,0xb7,0x10,0x48,0x5b,0x67,0x52,0xd2,0xbe,0x2e,0x41,0x54,0x86,0xfd,0xc6,0x4f,0x96,0x83,0xd0,0x7d, - 0x6b,0xa2,0x1d,0x57,0xb6,0x28,0xf0,0xbb,0x2d,0x75,0x2c,0xb2,0xb3,0xfb,0x41,0x70,0x9f,0x0d,0xc9,0xef, - 0xdb,0x80,0xa5,0xf7,0x69,0x91,0xb7,0x7b,0x0a,0x44,0x6e,0x6b,0xa7,0x17,0x57,0xab,0xe2,0x0b,0x96,0xbb, - 0x13,0x24,0x23,0x0e,0xcd,0x5a,0xe5,0xb5,0xe9,0xa2,0x45,0x4e,0xd4,0x45,0xa5,0xcd,0x8f,0xa4,0x48,0x31, - 0xcf,0x8b,0x6c,0xdf,0xb6,0x2c,0xc5,0x25,0xf5,0x58,0x27,0xb2,0x45,0x65,0xe7,0xca,0x1b,0x82,0xe3,0xab, - 0xd4,0xf7,0x90,0xc9,0x92,0x2b,0x38,0xb4,0x31,0x40,0x52,0x4f,0x47,0xdb,0x30,0xa9,0x3c,0xf3,0x5d,0xa6, - 0x68,0x2c,0xcc,0x71,0xc5,0x0d,0xed,0x93,0xc2,0x0a,0xc0,0x46,0xcd,0xa3,0xc2,0x44,0x1e,0xa8,0x12,0xf8, - 0x2d,0x35,0xb2,0x59,0x54,0x2a,0xcf,0x42,0x4e,0x7d,0x48,0xb5,0xb8,0x4a,0x4b,0xfd,0x2f,0xd3,0xfa,0x49, - 0xce,0x48,0x0f,0x06,0xae,0x2a,0xf4,0xef,0x54,0xb2,0x70,0xac,0xef,0x07,0x7a,0x27,0x51,0x6e,0xfc,0xb0, - 0xf7,0xee,0xbe,0x8c,0xae,0x4a,0x80,0xa3,0x40,0x1a,0x09,0xd3,0x61,0x84,0xeb,0xbe,0x61,0x38,0x81,0x2b, - 0xb9,0x22,0x7d,0x39,0x84,0x41,0x31,0xef,0x52,0x68,0x78,0x22,0xf5,0xca,0xf5,0xcd,0xcf,0x7e,0xc5,0xd9, - 0x34,0x8c,0x5f,0x38,0xf8,0x00,0x5b,0x32,0x4b,0x54,0x52,0x1c,0x18,0x62,0x74,0x7c,0xa0,0xb4,0x72,0xba, - 0x59,0xcc,0x03,0x89,0x7f,0x76,0x8d,0xf8,0x9d,0xd2,0x94,0xa7,0xb8,0x66,0x1a,0x7d,0x42,0xd3,0x32,0xe7, - 0x1c,0x29,0x04,0x7a,0xef,0xa6,0x98,0x0c,0x06,0x6c,0x87,0xe8,0xa2,0x5a,0x72,0xae,0x2a,0xc1,0x10,0x07, - 0xf7,0xd8,0xf2,0x2e,0x60,0xfb,0x6e,0xe8,0xf2,0x1d,0x84,0x0c,0x06,0xe7,0xa9,0xbd,0xf0,0xd6,0xa0,0x37, - 0x61,0xb6,0x88,0xe8,0x66,0xd3,0x4d,0xc4,0xda,0x8a,0x19,0x18,0x2b,0x3f,0xa0,0xec,0xdb,0xfe,0x01,0xbf, - 0x95,0x01,0x17,0xba,0x3c,0x2d,0xff,0xae,0x7f,0x39,0xe3,0x3c,0x69,0xcd,0xde,0x07,0x99,0x3d,0xbd,0x46, - 0xaf,0x39,0xac,0x03,0x0d,0x6e,0x7e,0x72,0x78,0x3a,0x5a,0xe9,0x99,0xb6,0x72,0x3e,0xeb,0xd7,0xb5,0x77, - 0x88,0x91,0x4c,0x93,0x8a,0x18,0xbe,0x9c,0xf8,0xbb,0x94,0x78,0xba,0x15,0x64,0x5c,0x2a,0x0c,0x67,0x49, - 0x16,0xb5,0x7c,0xf4,0x10,0xa7,0xc7,0xbe,0x6e,0x99,0x88,0x4e,0x95,0xf6,0x88,0x8a,0x97,0xda,0xb6,0xf3, - 0x12,0x96,0x2d,0xf1,0x95,0xb2,0x66,0x88,0xf1,0x62,0xc3,0x41,0x36,0x8c,0xed,0x20,0x4f,0x80,0x9e,0x8f, - 0x8e,0x31,0x5f,0xca,0xb7,0xee,0xf8,0xb3,0x1b,0x2c,0x20,0xc4,0xc6,0xaa,0x56,0x9f,0x9d,0xea,0xc1,0x40, - 0xcf,0xb5,0xf1,0x32,0xd1,0x6a,0x6b,0xb5,0x54,0x97,0x8a,0x3a,0xb3,0x69,0xf1,0x53,0xbf,0xb8,0xd3,0x9c, - 0x81,0x3a,0x31,0x96,0x8a,0x04,0xc9,0x41,0xd4,0x67,0xbe,0x66,0xec,0x92,0x65,0xa2,0x5f,0xe8,0x90,0x4f, - 0x86,0x5f,0x61,0x25,0x2e,0x7d,0x9b,0x14,0x27,0x0f,0x4f,0xb5,0xfe,0xc8,0x50,0x5c,0xb4,0x14,0x3a,0xc5, - 0xae,0xda,0x73,0x03,0xd4,0xb9,0xae,0xef,0xa5,0x8b,0x00,0x9c,0x8e,0x11,0xc7,0x69,0x9e,0xa7,0x35,0xe5, - 0x9a,0x0f,0x5e,0xca,0x07,0xd5,0x30,0x27,0x9a,0x26,0x25,0xda,0xf1,0x30,0x49,0x5d,0xbd,0x2a,0xa5,0x56, - 0xd9,0x02,0xc3,0x64,0x3f,0x4c,0x52,0xd7,0x11,0x04,0x5f,0x31,0x35,0xaa,0x8a,0xaf,0xc5,0x2b,0x38,0x66, - 0x41,0xdb,0x91,0xe4,0xdf,0x56,0x25,0x93,0xcf,0x8e,0x4a,0xc2,0x0a,0x4c,0x97,0x31,0x8f,0xe2,0x27,0x70, - 0xe8,0xd5,0x76,0x92,0xd1,0xf3,0x78,0xd6,0xd0,0xbe,0xd0,0xf9,0xfb,0xa6,0xbd,0x6a,0x7c,0x6e,0x9a,0xe8, - 0xf6,0x99,0x11,0x56,0x7a,0xf6,0xce,0x5d,0x66,0x70,0x1c,0x98,0x68,0x4f,0xf1,0x6d,0x10,0x07,0x25,0x7e, - 0x5c,0xe0,0x07,0x7d,0xd7,0xde,0x5e,0x02,0x83,0xbf,0x7c,0xef,0x7e,0x10,0xdf,0xdf,0xcb,0x10,0x2f,0x88, - 0xdd,0xca,0x61,0xf7,0xed,0xee,0x93,0xf6,0x44,0xde,0x6c,0xb8,0xe8,0xcc,0xa2,0x0b,0x4b,0xd5,0xda,0xfb, - 0x49,0xad,0x24,0x93,0xf8,0xd6,0x4d,0xb0,0x1d,0xb8,0xda,0x5e,0x74,0x16,0x9c,0xc0,0xb4,0xbc,0x2d,0x9c, - 0x77,0x3a,0x51,0x7d,0x1d,0x89,0xf1,0x04,0x54,0xd0,0x4c,0x9e,0x06,0xfa,0xe4,0xfb,0x2d,0x35,0x44,0xb3, - 0x38,0x8e,0x11,0xed,0xf3,0x43,0x27,0x89,0x01,0xd4,0x19,0xf5,0x1a,0x2b,0x87,0x80,0x08,0x3d,0xfc,0x29, - 0x8d,0xef,0x2a,0x8b,0x90,0x38,0x2c,0xa5,0x57,0x98,0xbe,0xfd,0x85,0x43,0x04,0xa5,0x7b,0x09,0x3f,0xa8, - 0xef,0x53,0xd6,0x9a,0x97,0xc6,0xd8,0xd7,0x05,0xca,0xce,0x3e,0xa5,0x12,0x2d,0xa5,0x36,0x81,0xc0,0xbd, - 0x9a,0x46,0x54,0xc1,0xb7,0x69,0x78,0x12,0x4c,0x9a,0x6a,0x4e,0x83,0x60,0xab,0x61,0xfa,0x4d,0xe7,0xf8, - 0xbb,0xc8,0x9a,0x34,0x38,0xbd,0xdb,0xa6,0x7d,0x77,0xc2,0x24,0xe3,0x1d,0x26,0xf1,0x1a,0xbd,0x0e,0x03, - 0x98,0xe9,0xff,0x40,0x44,0x98,0x9d,0xac,0xf5,0x1a,0xbc,0xa2,0x98,0xa3,0xd8,0x0e,0x1b,0x17,0x63,0x6b, - 0x39,0x14,0xe6,0x7b,0x84,0xe5,0x61,0xe5,0x71,0xff,0x7c,0xd5,0x34,0x65,0x71,0x1f,0xd3,0x20,0x95,0x22, - 0xac,0xc0,0x5e,0xc9,0x0d,0x37,0x85,0xa9,0x96,0xd2,0x68,0x11,0xac,0xea,0x8f,0x0e,0xf8,0x11,0xb6,0xa3, - 0xd4,0x94,0x7a,0x71,0x37,0x43,0x5d,0xc9,0x2d,0xa8,0xeb,0xb0,0x18,0xeb,0x35,0xd9,0x0b,0x4c,0x46,0x10, - 0x57,0x63,0x36,0x9f,0x35,0x19,0x91,0xcb,0x31,0x0b,0xc8,0x90,0x66,0xda,0x5a,0xaf,0x2b,0x53,0x4b,0xdc, - 0xd7,0x8c,0xad,0xc8,0x87,0xce,0xc6,0x3b,0x8f,0x39,0x2c,0xcf,0x0b,0x3e,0x1e,0x0e,0x0f,0x22,0x3f,0x26, - 0xbf,0x99,0x46,0x1d,0xfe,0x9a,0x08,0x47,0xaa,0x4e,0xc3,0xd9,0xf7,0xa9,0x0b,0x95,0x1c,0x9c,0x7d,0x0c, - 0xdb,0x45,0x89,0x79,0xe8,0x20,0xe2,0x8c,0x37,0x4e,0x37,0xb5,0x40,0xaa,0xfb,0xd4,0x37,0x0f,0x2d,0x5a, - 0x86,0x53,0x7c,0xd7,0x36,0x22,0x00,0x1b,0x93,0x55,0x09,0x26,0x17,0x07,0x30,0x31,0xe4,0x20,0xb2,0x76, - 0x7f,0x40,0x8b,0x3f,0xae,0xc4,0x2e,0x2a,0xbe,0x7f,0x36,0xd1,0xc1,0x0d,0xee,0xf3,0xb4,0xa9,0x4e,0x6c, - 0xe6,0xb8,0xe8,0x46,0x6b,0xf6,0x10,0x58,0xe5,0xf6,0xb0,0xb1,0x39,0x82,0x7a,0x83,0x09,0x76,0x79,0x7d, - 0x5b,0x95,0x93,0xac,0xae,0xb3,0xa9,0x59,0xfa,0xb4,0xb0,0x56,0xe6,0x99,0xf6,0x23,0xd8,0x95,0x87,0xad, - 0xa2,0xa5,0x5f,0x94,0xf6,0x1b,0x97,0xa4,0xdf,0xad,0x82,0x6d,0xc3,0x50,0x2f,0x58,0x08,0x4a,0xb3,0x4b, - 0x0d,0xe3,0x62,0x76,0x01,0xb0,0xe8,0x7c,0x8c,0xd9,0xf6,0xde,0x63,0xda,0xd9,0xb5,0x57,0xe0,0x61,0xa7, - 0xc0,0x43,0xf8,0xa8,0x59,0x76,0xcd,0xef,0x06,0x93,0x43,0x67,0xf3,0x50,0xdb,0x7e,0x3b,0x82,0x17,0xc6, - 0xda,0x25,0x82,0x5e,0x79,0x53,0xaf,0xa7,0x8c,0xa6,0x9a,0xd6,0xd2,0x1b,0x5f,0x3e,0xe3,0xe1,0xe5,0xb3, - 0xad,0xd1,0xd5,0x6e,0x1a,0x1c,0x01,0xbe,0xdb,0x21,0xc0,0x85,0x70,0xef,0xe3,0x40,0x7a,0xe6,0xc8,0xd9, - 0x1b,0x18,0xe6,0x64,0xbd,0xf6,0x28,0x7d,0xc2,0x88,0xf3,0xc2,0xe8,0xf4,0x83,0x33,0xb6,0x57,0xde,0x0b, - 0x2b,0x9e,0x8f,0x4a,0x62,0xd9,0xb9,0xc0,0xe8,0xc1,0x2d,0x26,0x49,0x82,0xa3,0xdf,0xe1,0x7e,0x73,0x5d, - 0x68,0x9b,0x0a,0x1a,0x75,0x8c,0xd2,0x22,0x04,0x6b,0xa1,0xe7,0x4d,0xc0,0xab,0x63,0x8d,0xf7,0xb5,0x0b, - 0x43,0x60,0x76,0xd0,0x2e,0x6e,0x33,0x2d,0x69,0x2b,0xc3,0x53,0x9c,0x70,0x0f,0xf3,0x08,0x0e,0x83,0xa0, - 0x6b,0x08,0x94,0x25,0x6f,0x61,0x0a,0x9b,0x24,0x53,0x86,0xb7,0x55,0x49,0x63,0x61,0xeb,0x6a,0x99,0x4b, - 0x1e,0xbf,0x4c,0xbc,0x0b,0x00,0xeb,0x93,0x1f,0x6d,0xd1,0x68,0x9b,0xdd,0x18,0xa3,0xde,0x78,0xce,0xfa, - 0x60,0x88,0xc2,0xec,0x26,0xa7,0x9d,0xa4,0xdd,0x9e,0x26,0xa2,0x2c,0x6e,0xcd,0x9a,0x6e,0xde,0x35,0xa8, - 0xb8,0x2b,0x96,0xce,0x04,0x0f,0xce,0x14,0xdb,0xd8,0x44,0x41,0xb3,0x8b,0xd0,0x65,0x78,0x6c,0x0f,0xd0, - 0x4f,0xf4,0xa0,0x48,0xd0,0xfa,0x7d,0x4c,0x2e,0xad,0xf9,0x5e,0x40,0x4f,0xad,0xa6,0xc3,0x9c,0x5f,0x72, - 0xdb,0x8f,0xf6,0x25,0x9c,0x8d,0x13,0x7d,0xb8,0xeb,0x13,0x88,0xb7,0x29,0x12,0x3f,0xe7,0x24,0x3d,0x65, - 0x9c,0xe1,0x9c,0xe4,0xf5,0x83,0x86,0x16,0x98,0xcc,0x70,0xcf,0x3d,0x24,0x95,0x76,0x2f,0xec,0xe9,0xa0, - 0x05,0xec,0x9d,0xa6,0x8b,0x61,0xe4,0xdc,0xe9,0xc5,0x5c,0x6e,0xfb,0x04,0x88,0x08,0xbf,0xa0,0x19,0x0f, - 0xb7,0xbf,0x37,0xd1,0xf7,0xa2,0x3d,0x8b,0x97,0x24,0x1e,0x4a,0xa0,0xc4,0xd3,0xda,0x4e,0x83,0xf5,0xa2, - 0xf0,0x31,0x59,0x0b,0x1b,0x49,0x0c,0xf6,0x3f,0xb5,0x3d,0x5b,0x6d,0xf9,0x02,0x86,0x20,0x60,0x09,0x8b, - 0xd6,0x19,0x57,0x23,0x6d,0xca,0x0b,0x19,0xc3,0x2d,0xf1,0xe2,0xc0,0xec,0xc6,0xa1,0xc5,0x3a,0xda,0xda, - 0xf3,0x6b,0x1c,0x9c,0x95,0xa1,0x37,0x72,0xf6,0xaa,0x43,0x17,0x5f,0x4c,0xf7,0xf6,0xf8,0xb5,0xc0,0x58, - 0x62,0x5d,0x60,0xd3,0x46,0xb4,0x9e,0x3b,0xc1,0x76,0xf4,0xed,0xd6,0x80,0x30,0x50,0x47,0x9d,0x85,0xd6, - 0xb8,0xdf,0xd3,0x2a,0xba,0x3d,0x5d,0x8d,0x2b,0x39,0x3f,0x64,0xb6,0xc6,0xda,0xcc,0x36,0xd6,0xc7,0x0a, - 0xdf,0x77,0x62,0x44,0x35,0xf6,0x36,0x64,0x02,0x90,0x33,0xa2,0x40,0x03,0x6d,0xa7,0xd0,0x98,0xe8,0x85, - 0x8e,0xbe,0xc8,0x3e,0x2d,0xf9,0x70,0x2f,0xc5,0x3f,0x22,0x1a,0xd3,0xb6,0x26,0xc6,0xf3,0x7c,0x5e,0x4e, - 0x3e,0x6a,0xec,0x61,0x3b,0x46,0x8b,0xe8,0x65,0x6e,0x3a,0x44,0xb3,0x25,0x77,0xbb,0xf7,0xd4,0x4c,0x5a, - 0x28,0x90,0xd0,0x97,0xaa,0x92,0x7e,0xe4,0xd8,0xbd,0x27,0xfb,0x56,0x87,0xb5,0xd0,0x0e,0xbe,0x5e,0x14, - 0x89,0xf8,0x24,0x60,0x67,0x5f,0x13,0xf0,0xa2,0xef,0xde,0xac,0xdb,0xd4,0x84,0xd9,0xd7,0xd2,0xc7,0x79, - 0xeb,0x2a,0xee,0x13,0x89,0x6e,0x71,0x3a,0x02,0xa3,0x4c,0x65,0x76,0xe7,0x88,0x95,0x4d,0x7b,0xe3,0x3a, - 0xad,0x70,0x77,0x48,0x29,0xce,0xbc,0x07,0xaa,0x26,0xb2,0x5b,0x18,0x41,0x22,0xbe,0x75,0x48,0x8c,0xfb, - 0x81,0xe5,0x09,0x39,0x51,0xbf,0xc0,0xfd,0x66,0x2f,0x4c,0x05,0xdf,0x12,0xec,0x0b,0x0d,0x84,0x63,0xc9, - 0xd2,0x4e,0xbe,0xff,0xd1,0x16,0xf1,0xa1,0x8b,0x45,0x82,0x42,0xd2,0x21,0x9d,0x31,0xe3,0xfb,0xcc,0x6b, - 0x72,0x2b,0xf4,0x80,0x16,0x4c,0xae,0x25,0x5c,0xa9,0x25,0xc7,0x89,0xf6,0x54,0xea,0x68,0x65,0xd9,0x87, - 0x1b,0xe5,0x22,0x2b,0x4d,0xc6,0x75,0x9b,0x65,0x38,0xb5,0x11,0x9e,0x34,0xea,0xe6,0x8b,0x55,0xf6,0x92, - 0x0a,0x90,0x1f,0x29,0x2d,0x20,0x44,0x0a,0x84,0x89,0x7c,0xbc,0x88,0x3f,0x4d,0x20,0x21,0x01,0x66,0x3a, - 0x93,0x9e,0x38,0x93,0x7e,0xbd,0x4c,0xde,0xa9,0xae,0x04,0xbf,0xc6,0x40,0x11,0x52,0x62,0xc9,0x9e,0x90, - 0xc8,0xa4,0x27,0x2f,0xdd,0xe3,0x96,0x91,0x7b,0x1f,0x62,0x57,0xf6,0x7d,0x02,0xf2,0xa5,0xc5,0xb8,0xef, - 0x44,0x51,0xe2,0x80,0x2b,0x4a,0xbd,0x6f,0xb3,0xc2,0x61,0x27,0xf6,0xc5,0xa5,0x8f,0xfd,0x2c,0x62,0x9f, - 0xc2,0x4c,0xa3,0x12,0x7d,0xbe,0x72,0xeb,0xfc,0x4c,0x2c,0xd8,0xde,0xac,0x30,0x39,0x7a,0xde,0x94,0xf6, - 0x4a,0xd5,0x05,0x8d,0x2f,0x82,0x2d,0x2b,0x51,0x87,0x6d,0x59,0x71,0x67,0x94,0xc2,0x60,0xfa,0x74,0x82, - 0xda,0x3d,0x34,0x90,0x66,0x26,0xc7,0xf7,0x8c,0xf4,0xca,0xfb,0xc9,0x8a,0x71,0x77,0xeb,0x2b,0x47,0x8a, - 0x08,0x0d,0x68,0x44,0x83,0xba,0x7b,0x7c,0x11,0x4d,0xb0,0xe7,0x97,0xb3,0x5f,0xba,0x00,0xaf,0x52,0x98, - 0xb5,0x86,0x5e,0x2a,0xae,0x64,0xd2,0x02,0x51,0x49,0x88,0xcf,0x56,0xc4,0x1c,0xb5,0x42,0xc1,0x94,0x77, - 0xf1,0x3b,0x3b,0x5d,0xc4,0x66,0x33,0x0a,0x4d,0x59,0x16,0x2d,0x92,0xce,0xc5,0x3a,0x6b,0x11,0x94,0x85, - 0x26,0x28,0x0b,0x4b,0x50,0x16,0x1d,0x82,0xb2,0xe8,0x12,0x94,0x45,0x87,0xa0,0x2c,0x7a,0x09,0xca,0xe2, - 0x3f,0x27,0x28,0xcd,0x80,0x34,0x45,0x29,0x2f,0x71,0x70,0x2b,0xbb,0x01,0xf3,0x3b,0x2b,0x62,0xaf,0x06, - 0xed,0xac,0x51,0xb8,0xc5,0x89,0x5a,0xf5,0x85,0x2d,0x29,0x2f,0x9b,0xcc,0x8c,0xa9,0xd3,0x33,0xfe,0xb3, - 0x17,0x10,0x46,0x0e,0xe7,0x1c,0x44,0x39,0x6a,0x5d,0x5c,0x0d,0xec,0xec,0xde,0xe2,0xbe,0x22,0x38,0x1c, - 0xf8,0xfa,0x57,0xea,0xea,0x86,0x29,0xb1,0x12,0xf7,0xd9,0xd7,0x5d,0x4e,0x9d,0x0e,0xf6,0x08,0x20,0xa1, - 0xe3,0xa6,0x33,0xe4,0xf0,0x73,0x6c,0xbc,0x27,0xf7,0x32,0x3f,0x32,0x3a,0x0d,0xd1,0x39,0x4c,0xda,0x2c, - 0x93,0xb4,0x17,0xb4,0x71,0x9c,0x0d,0xc3,0x6e,0x13,0xed,0xee,0x68,0x13,0x59,0xc6,0x20,0xaf,0x6d,0xfe, - 0x67,0x03,0xba,0x99,0x48,0xa4,0x07,0x1c,0xfe,0xe7,0x50,0xe2,0x10,0xb2,0xfd,0x9c,0x86,0x95,0x82,0x23, - 0xfe,0x94,0x26,0xd8,0xa1,0x26,0x12,0xdb,0x6d,0xc4,0x86,0x4d,0xf3,0x04,0x1f,0xb4,0xe8,0x3a,0x12,0x38, - 0x3a,0xd6,0x65,0xc7,0x4e,0x90,0xdd,0xa5,0x77,0xee,0x60,0xf2,0x5b,0x95,0x0a,0x83,0xdb,0x9e,0x69,0x38, - 0x92,0x12,0xa2,0x25,0xac,0x9a,0xca,0x3c,0xa7,0xbc,0x1d,0x37,0xda,0xfb,0xc2,0x42,0xa7,0x67,0xb5,0xfd, - 0x40,0xdd,0x7b,0xa0,0x02,0x4d,0xb2,0x67,0xc3,0xeb,0x2a,0x5d,0x3e,0x35,0x3e,0x07,0xee,0x15,0x36,0x13, - 0x3a,0xd7,0xaa,0x3d,0xbd,0x22,0x36,0x8d,0xcb,0x79,0xc1,0x96,0xe6,0x3d,0xa1,0xfe,0xdd,0x5c,0x4b,0x30, - 0x72,0x3f,0x20,0x57,0x99,0xa4,0xde,0x02,0xa4,0x9e,0x67,0x13,0xef,0xea,0x16,0xbf,0x54,0x8a,0xf5,0x97, - 0xb0,0x47,0xe6,0xdd,0xf8,0xba,0x12,0x5f,0x41,0x68,0x2c,0x2c,0x0d,0x73,0x40,0x1b,0xb7,0x13,0x46,0xdc, - 0xd3,0x2d,0xa8,0x9e,0x98,0x56,0x36,0x3e,0x65,0x65,0xbb,0x93,0x6b,0x78,0x40,0x5c,0x0d,0x5c,0x2e,0x85, - 0x10,0x95,0x3e,0x89,0x02,0xef,0x8f,0x36,0xc9,0x52,0x2e,0xb2,0x3e,0xe4,0xb5,0x02,0x26,0xd7,0x64,0x4e, - 0x04,0x8a,0xf1,0xa1,0xa6,0x16,0xd9,0x69,0xe9,0x3f,0xae,0xb6,0xf1,0x6b,0xe5,0xd5,0x39,0x8c,0xbc,0x6b, - 0xe5,0xc2,0x94,0xed,0x5f,0x6f,0xce,0xb3,0x23,0xcb,0x22,0xc5,0x1c,0xa7,0xb7,0xeb,0xba,0x65,0x4c,0x5d, - 0x85,0xe7,0xa4,0x31,0x8f,0x35,0x2d,0x1a,0x7f,0x61,0x93,0xa0,0x24,0xb6,0x11,0x00,0xc7,0x70,0x0e,0x57, - 0x20,0x06,0xb7,0xc8,0x83,0x4a,0x62,0x4d,0xb3,0x0f,0x75,0x1c,0x9c,0x5d,0x81,0xc0,0x7f,0x08,0x0d,0x43, - 0x01,0x29,0x39,0x57,0x5e,0x78,0x7b,0x37,0x9e,0x16,0x61,0x57,0x64,0x22,0x35,0x44,0x5c,0xc7,0x48,0x9b, - 0x69,0x1b,0xd5,0x09,0x04,0x87,0xe9,0x5d,0x87,0xc4,0xa4,0x57,0x6e,0xb8,0x17,0xd6,0x8c,0xb9,0x6b,0x50, - 0x2b,0x9e,0xf0,0x63,0xe5,0x7f,0x6a,0x35,0x87,0x2c,0x1a,0x20,0xb4,0xd7,0xa3,0x2a,0x6b,0x33,0xe6,0x9e, - 0x2f,0x6d,0x47,0x27,0x4b,0xe7,0xc6,0x1f,0x5c,0xe4,0xdc,0x88,0xe8,0xb5,0x32,0xd4,0x5f,0x7c,0x7f,0x6f, - 0x8a,0x10,0x85,0x46,0xfa,0xa5,0x02,0x77,0xb3,0xba,0x47,0x4d,0x79,0x4e,0xaa,0xad,0xe8,0x17,0x6e,0x73, - 0xff,0xba,0x7a,0x78,0xf0,0xf0,0x1f,0x0f,0x2e,0x54,0xf0,0xab,0x3c,0x06,0x51,0x27,0xf3,0x6b,0x97,0xf9, - 0xb5,0x7f,0x41,0xe8,0x52,0xc3,0x02,0xbc,0xf7,0x0c,0x08,0x65,0xd7,0x3b,0xcf,0xdd,0x2c,0xbb,0x8b,0x62, - 0x6d,0xdf,0x44,0xab,0x91,0x55,0x15,0x34,0xc8,0x84,0x95,0x63,0x38,0xfb,0x5e,0xf8,0x3e,0x9e,0x5e,0x3f, - 0xc3,0x8f,0x69,0xf2,0x31,0xfd,0x83,0x08,0x9d,0x08,0x86,0xab,0x75,0x4f,0x49,0x36,0xbe,0xff,0x28,0xdd, - 0xb9,0x84,0x12,0x38,0xf8,0xb5,0x08,0x1e,0x7c,0x73,0x3f,0xbe,0xff,0x88,0x4a,0x11,0x4e,0xd1,0xef,0xea, - 0x63,0xea,0xca,0x3b,0x2f,0x9c,0xc1,0xff,0x39,0x3c,0x18,0x05,0xd1,0x37,0x07,0x8c,0x08,0xaf,0x6c,0xc8, - 0xbb,0x59,0x95,0x65,0xbf,0x67,0x21,0x22,0x2d,0x2f,0x6c,0xa2,0x8b,0x2a,0x6e,0x2e,0x02,0x57,0x17,0x45, - 0x32,0x17,0x31,0x8c,0xb2,0x94,0x62,0xc0,0x46,0x33,0x37,0x9c,0x43,0x47,0xb3,0xa2,0x5e,0x29,0x2e,0xe1, - 0xd4,0xb5,0x0a,0xea,0x50,0x75,0xde,0x53,0xf3,0x65,0x5a,0x7b,0xd7,0x5e,0xaa,0xb3,0x22,0x79,0xb0,0x1f, - 0xfe,0x7a,0x1d,0xd1,0x5a,0x5c,0x17,0xc9,0xb4,0x37,0xa4,0x89,0x5d,0xb7,0x33,0xdf,0xa4,0xc0,0xb7,0x6d, - 0x1a,0xc3,0x50,0xe2,0xc7,0xe5,0x12,0x96,0xd3,0x35,0xb1,0x4a,0x88,0xc0,0x0a,0x93,0xd7,0xe3,0x3b,0xab, - 0xd4,0xb1,0x6d,0x0e,0xa2,0xf6,0x87,0x7b,0x4e,0xef,0x48,0x9f,0x7f,0xa4,0xde,0xfd,0xfa,0x24,0x3c,0x79, - 0xbc,0xff,0xef,0x53,0xf4,0xf0,0xe8,0x0f,0x7b,0xf8,0xb1,0x50,0xc1,0xfe,0xbd,0xc3,0x00,0xd5,0xbe,0x2c, - 0xaf,0x4d,0xb5,0x54,0xd7,0xfb,0x6d,0x99,0x8c,0x55,0xc0,0xab,0x4f,0x6d,0x7d,0x91,0x8d,0xe5,0xa2,0x1e, - 0x13,0x5f,0x07,0xa2,0x7a,0x9f,0xe3,0xac,0x57,0xfb,0xe6,0x32,0xc5,0x40,0xdd,0x2b,0x92,0x93,0xc0,0x5b, - 0x13,0xc7,0xc3,0x05,0xe6,0xca,0xc3,0xe0,0x54,0xbd,0x41,0x29,0xb1,0xbf,0x3c,0x62,0x18,0xa3,0x4c,0x01, - 0x36,0xaa,0x42,0x67,0xb0,0x51,0x37,0xe4,0xf0,0x62,0xdc,0x6d,0xd3,0x7f,0xd4,0xe1,0x29,0xed,0x5d,0xbb, - 0x26,0xe3,0xa9,0x44,0x22,0x46,0x9b,0xf2,0xc4,0x79,0xee,0x8e,0x66,0xa4,0xfb,0x6f,0x72,0x83,0x90,0xf8, - 0x9c,0x4f,0xa9,0x53,0xcf,0x8a,0xe4,0x56,0x88,0x89,0x57,0x19,0x11,0xce,0x04,0x6a,0x54,0xf0,0x22,0x27, - 0xe6,0xb3,0xef,0x86,0xd5,0x3a,0x9f,0xc3,0x30,0x83,0xe8,0x7a,0x82,0xa2,0xe9,0x8a,0x27,0xe9,0x38,0x5f, - 0x22,0xc1,0x5c,0xf7,0xcb,0x99,0x59,0x05,0xd1,0x0e,0xec,0xab,0xf0,0xca,0x6d,0x7e,0x27,0xf7,0xc0,0xb2, - 0xf7,0x86,0x02,0x75,0xdf,0x4a,0xc8,0x2f,0x0a,0x1a,0xcc,0x54,0xef,0x3a,0xa2,0x47,0x4e,0x95,0xb9,0xfc, - 0xb1,0xb7,0x23,0xad,0x70,0xf7,0xf1,0xfb,0xc2,0x4b,0x80,0x2b,0x97,0xa4,0xfc,0x58,0x7c,0x2c,0xca,0xeb, - 0x42,0x57,0x8a,0xb4,0x4e,0xf4,0xfc,0xf8,0x42,0xf5,0x05,0xc7,0x8f,0x3f,0x15,0xca,0xbb,0x84,0x11,0x1f, - 0x9e,0xcd,0xf3,0x59,0x36,0xb9,0x99,0xcc,0x33,0xdc,0x3b,0x4d,0x7d,0x2a,0x36,0xea,0x29,0x41,0xe4,0xc9, - 0xff,0xfc,0x7a,0x3d,0xbc,0x77,0xfa,0x40,0xbd,0x85,0xac,0xec,0x8c,0xf7,0xd6,0xd9,0x19,0x91,0x63,0xb7, - 0x1b,0xf5,0x81,0x92,0x1c,0x99,0x6a,0xaf,0xf0,0x13,0xcf,0x1e,0xf5,0xa2,0x3f,0xf7,0xe7,0x5f,0x9e,0x15, - 0x57,0x79,0x55,0x16,0xfa,0x3e,0xf4,0xdd,0x56,0x02,0x24,0x79,0xdc,0x53,0xf5,0xb2,0x48,0x5e,0x14,0x83, - 0x41,0x7f,0x6e,0x1b,0xe0,0xd5,0xf3,0x22,0xf9,0x40,0x65,0xb5,0x4b,0x51,0x91,0x5e,0xe5,0x17,0xe0,0x14, - 0x86,0x2b,0x9a,0xb0,0xc7,0x17,0x7c,0xe1,0x54,0xab,0xfc,0xeb,0x22,0x79,0x4e,0xe5,0x1f,0x2c,0xea,0x3c, - 0x5b,0x13,0xee,0x99,0x52,0x11,0x6d,0x13,0xf6,0xbc,0x88,0xd4,0x2b,0xc9,0x7e,0xee,0x79,0x34,0xa2,0xe4, - 0xce,0xd7,0xc3,0x03,0x60,0x37,0xf5,0x6e,0x3b,0x3f,0x9b,0x5e,0x64,0x0f,0x38,0xf3,0xc9,0x76,0x26,0xc1, - 0x41,0x45,0xe7,0x1c,0xb2,0xe9,0x34,0x33,0x6f,0xb8,0x72,0xa3,0x50,0x3f,0xeb,0xae,0xe4,0xcb,0x4b,0xda, - 0x5b,0xeb,0x7c,0x99,0x4e,0xe9,0x4f,0x49,0x7f,0xca,0xda,0x75,0x09,0x4e,0xed,0x65,0xad,0x3f,0xf9,0xa9, - 0x48,0x42,0xfe,0x66,0x72,0x59,0x11,0x89,0xf2,0xeb,0x83,0x5f,0xa7,0x7b,0x5e,0xef,0x6f,0x37,0x43,0xbe, - 0x69,0x38,0x52,0x3f,0x42,0x89,0x0d,0xaa,0xea,0x43,0xc1,0x51,0x36,0x81,0x95,0xbf,0x63,0x7b,0x88,0xfe, - 0x6b,0x99,0xbf,0x23,0x7c,0xa2,0x63,0x34,0x04,0xea,0x16,0xd7,0x3a,0x7b,0x94,0x30,0x2a,0x3b,0xd8,0x10, - 0x6e,0xd1,0xb3,0xbc,0x1d,0x13,0x10,0x3d,0xd8,0xb7,0xdf,0x33,0xd4,0x7f,0x57,0x44,0x9e,0xdb,0x39,0xda, - 0xff,0xbd,0x50,0x3f,0x14,0xea,0x37,0x0f,0x05,0x75,0x68,0x01,0x1a,0xe3,0xef,0x30,0xac,0xf9,0x9d,0xda, - 0xc3,0xa2,0xf6,0xc1,0xd0,0xc5,0xbc,0x3c,0x4f,0xe7,0xa0,0x49,0x19,0x51,0x61,0x5e,0x24,0x09,0xb8,0x1f, - 0xbc,0xe0,0x30,0x2b,0xae,0x86,0x3f,0xfd,0xf8,0xec,0xec,0xd9,0xeb,0x9f,0x22,0xf5,0x3b,0xc1,0xf2,0xf7, - 0x2d,0x10,0x39,0x3b,0x43,0xe6,0xd3,0x67,0x3f,0x1d,0xbf,0x79,0xf3,0xf2,0xfd,0xd9,0xb7,0x2f,0xdf,0x3c, - 0x79,0xfc,0xf2,0xec,0xbb,0x37,0x6f,0x7e,0x38,0x3b,0x53,0xdf,0xf6,0x03,0xee,0xfb,0x9b,0xc5,0x79,0x49, - 0x8d,0x7e,0x0c,0xe5,0x29,0xea,0xef,0x9b,0xbe,0x9e,0x19,0xe5,0x3a,0x37,0x35,0x47,0xa3,0x1f,0xee,0xa8, - 0x39,0xe3,0xe2,0xf4,0x13,0x8d,0xdf,0xb7,0x67,0xdd,0xe3,0xbf,0x75,0x30,0x7d,0x5c,0xb2,0xdd,0x83,0x30, - 0x6c,0x88,0xed,0xf6,0xf1,0xd7,0x83,0xe9,0x77,0x39,0x68,0x8b,0xae,0x0a,0xca,0x4e,0xe5,0x7f,0x43,0xcb, - 0xda,0xfa,0xc6,0x2b,0x88,0xf5,0x6f,0x95,0x25,0x64,0x91,0x56,0xfe,0x42,0x7e,0xb6,0x83,0x2a,0xdb,0x68, - 0x53,0x83,0x5f,0x8a,0xe4,0x42,0xfd,0x1b,0x0c,0xc1,0xbf,0x8a,0xad,0xcf,0xf3,0x69,0xf2,0x6f,0xa2,0xdb, - 0xf4,0xb5,0x90,0xab,0x73,0xa8,0xf1,0x37,0xa3,0x7f,0x15,0xed,0x3e,0xbe,0x5f,0x9d,0xf7,0x74,0x93,0x4a, - 0xeb,0x78,0x83,0xd4,0x5c,0xeb,0x13,0x71,0x85,0xec,0x7e,0xb5,0x0a,0xed,0x77,0x6a,0xeb,0x13,0xb9,0x14, - 0xdc,0xef,0x9f,0x77,0x67,0xb8,0x7d,0x44,0x67,0x9e,0x66,0x4b,0x91,0xb7,0x77,0x6a,0x28,0xca,0x86,0x08, - 0xeb,0xfe,0x7b,0x01,0x5d,0x87,0xad,0xc0,0x95,0xed,0xa4,0xb2,0xae,0x9d,0x14,0x5f,0x7c,0xbf,0xb2,0xb7, - 0x04,0xda,0x86,0xd9,0x70,0x9f,0xa7,0xf3,0x9f,0x05,0x22,0x43,0x67,0x55,0xe7,0xc8,0x77,0x46,0x59,0x7a, - 0x7a,0xe0,0xcc,0xa3,0x2f,0xf4,0xe4,0xeb,0xac,0xba,0xf7,0x79,0xea,0x9b,0x3a,0xf9,0x52,0x2c,0x7d,0xb7, - 0x67,0x36,0x5f,0x98,0x8b,0x3d,0x8b,0xda,0xdc,0x48,0x22,0x5f,0xe9,0xdb,0xb3,0x52,0x79,0x75,0xd7,0x69, - 0xf9,0x85,0xdc,0xb5,0x5a,0xed,0x54,0x73,0x07,0xa6,0x9f,0xca,0x66,0x8c,0x30,0x38,0x06,0x95,0xa7,0x9b, - 0x68,0x1b,0xde,0x9a,0x4b,0x3c,0xb7,0x4c,0x9c,0x5b,0xf5,0xe8,0xeb,0x48,0xfd,0xa4,0x2a,0x85,0x03,0x87, - 0xbe,0x87,0xd4,0x5e,0x11,0x6b,0x13,0x9c,0x67,0x19,0x6b,0x55,0x24,0xd1,0x44,0x60,0x77,0xc5,0x8e,0xe6, - 0xd4,0xe8,0xd4,0x4b,0xe0,0x5b,0x65,0xcd,0x6b,0x2b,0x9c,0x79,0xed,0xa5,0xf1,0x6d,0x7a,0x7e,0x6f,0xb6, - 0xe3,0xa1,0xc3,0xd4,0x48,0x35,0x55,0x72,0xcb,0x4b,0x11,0x23,0x9c,0xdf,0x2c,0xbf,0x58,0xf1,0x8d,0xec, - 0x31,0x90,0xee,0xa8,0xd1,0x21,0x4b,0x60,0xfd,0xdb,0x83,0x39,0xfb,0xa7,0x65,0xa3,0xfa,0xd0,0x3c,0x51, - 0x3e,0x61,0x56,0x39,0x28,0xa5,0x86,0xb5,0x5e,0xaf,0x73,0xe1,0x8a,0xc1,0xc6,0x7c,0x3d,0x07,0x47,0x60, - 0x11,0x36,0x4b,0x2e,0xc4,0x71,0x26,0x75,0xbc,0xea,0x88,0xca,0xe3,0x4d,0x1a,0x0d,0x75,0xa3,0xaa,0x2a, - 0xe9,0x5c,0x20,0xa4,0xf2,0xaa,0x83,0x1a,0x2a,0x6a,0xfc,0x24,0xc0,0x9e,0x0d,0x10,0xbd,0x7b,0xe9,0xd9, - 0x6b,0xe8,0x78,0x6f,0x48,0xe1,0xf8,0x65,0x78,0x28,0xe1,0xda,0x16,0x54,0x70,0x2e,0xa8,0x33,0x98,0x71, - 0xf4,0x98,0xf3,0x69,0x63,0xc0,0x0a,0x66,0x04,0xc7,0x61,0x5e,0xa9,0xac,0x3f,0x16,0xf8,0x09,0x2e,0x44, - 0xb3,0xa1,0x8d,0xac,0x4c,0x62,0x7f,0x7f,0x14,0xf1,0x5d,0xbe,0x36,0xcb,0xda,0xa4,0x23,0x28,0xbe,0x76, - 0x73,0xc5,0x8c,0xc3,0x8b,0x44,0xdf,0x43,0x2e,0xc1,0x2f,0x46,0x3a,0x42,0x67,0x26,0x11,0x3a,0x65,0x58, - 0x31,0x3f,0x9a,0xc1,0xc4,0x08,0x4d,0xef,0x02,0x66,0x9a,0xa1,0x21,0x59,0x23,0x82,0x87,0x16,0x95,0xe7, - 0x90,0xc7,0x94,0xe7,0x7c,0xc6,0x99,0x8b,0xc0,0x55,0x09,0xbc,0xa4,0x31,0x0b,0xec,0xa9,0xc0,0x79,0x88, - 0x51,0xb6,0x9d,0x5a,0x82,0x11,0x8f,0xeb,0x61,0x5a,0x90,0xa6,0x81,0x3e,0x25,0x08,0xab,0x2f,0xcb,0xd5, - 0x7c,0x4a,0x7b,0x95,0x66,0xb0,0x01,0x6c,0xa9,0xba,0xda,0x46,0xa4,0x12,0x5e,0xc5,0xe0,0x8a,0x6c,0x29, - 0x56,0x12,0x1a,0x3f,0x5c,0x2d,0xd8,0xd1,0x98,0xb0,0xd5,0x71,0x28,0x17,0x45,0xd3,0xd0,0x03,0x7d,0xd9, - 0xf4,0x56,0x64,0x94,0x30,0x7c,0xdb,0x96,0x08,0x49,0x0c,0x46,0x4b,0x49,0x26,0xcd,0x26,0xee,0x66,0x7b, - 0xb7,0x46,0xf7,0x6a,0x84,0xb4,0xc3,0x2f,0xd6,0xe5,0x58,0xb4,0x3d,0x08,0x5b,0x4d,0xb4,0x49,0x08,0x08, - 0x53,0x69,0xa5,0x2f,0xf5,0x6d,0xcd,0x5d,0x86,0x70,0xa0,0x48,0xbd,0x4e,0xe7,0x1f,0x71,0x40,0x8c,0x6a, - 0x6f,0x17,0x70,0xea,0x1d,0x97,0x66,0xf9,0x92,0xf2,0x2c,0xd2,0x32,0x86,0xc6,0x97,0x31,0xdc,0x43,0xcf, - 0x11,0x10,0x9e,0x90,0x35,0xfd,0x50,0x5f,0x54,0xab,0x72,0xbf,0x23,0x77,0xdd,0xcc,0xd5,0x87,0xfb,0x1f, - 0xcb,0x75,0x5c,0x72,0xfb,0xf1,0xa4,0xc2,0x35,0x58,0xbd,0xac,0xcc,0x68,0x22,0x81,0x59,0xee,0x60,0xfa, - 0x76,0x8a,0xf1,0x5b,0x9d,0x12,0x37,0xbe,0xdf,0xab,0xa5,0x40,0x9a,0x71,0x16,0xbf,0x15,0x29,0x0e,0x71, - 0x71,0xbd,0xdb,0x6a,0x82,0x0d,0x95,0x7c,0x20,0x02,0xf0,0xde,0xdd,0x05,0xf6,0x82,0x3a,0x38,0x4d,0x5e, - 0x50,0x21,0xea,0x11,0x53,0xa1,0x5b,0x87,0x92,0xe8,0x8a,0x09,0xaf,0xfc,0xc4,0xe6,0xd3,0xf6,0x2e,0xbd, - 0xc6,0x24,0x35,0x36,0xc9,0xda,0xb7,0xed,0xb4,0x91,0x46,0xb6,0x5e,0xf7,0x84,0xcf,0x6f,0xb4,0x19,0x23, - 0x91,0xb7,0x57,0xb0,0xa9,0x8b,0xda,0xfe,0x22,0x8d,0x91,0x7c,0xc2,0x5b,0x04,0x4a,0x11,0x38,0x8d,0x94, - 0xc4,0x80,0x74,0x2f,0xfc,0x63,0x3d,0xe2,0x49,0x79,0x1a,0xf1,0x1d,0x4a,0x49,0x39,0x2e,0x8d,0xd3,0x7b, - 0x1d,0x75,0x6e,0xc4,0xab,0xa3,0x31,0x71,0x72,0xf5,0xa9,0xdd,0xb1,0x1b,0x8c,0x5b,0xc2,0x9d,0xd2,0xc3, - 0x22,0x6b,0x2e,0xcb,0x29,0x3f,0xca,0x75,0xd7,0x78,0x9a,0xe8,0x68,0x07,0xfd,0x13,0xb3,0x3d,0x9c,0xbe, - 0x6b,0x03,0x0c,0xc1,0xcc,0xc3,0x54,0x0d,0x4c,0x24,0x73,0xb6,0x78,0x30,0xed,0x5f,0x11,0x4b,0x93,0xbc, - 0x15,0x75,0x69,0xa5,0x56,0x95,0x9a,0x75,0x95,0xb5,0x5d,0x9a,0x1b,0x10,0x40,0x38,0x7b,0x8a,0xcb,0xad, - 0x88,0xf7,0xc5,0xb9,0xc6,0x71,0xe4,0xd8,0x7c,0xa6,0x87,0x66,0x25,0x2a,0xcf,0x06,0x14,0x07,0xf1,0xea, - 0xbf,0x47,0xd1,0xaa,0x45,0x16,0xfa,0x79,0xe1,0x8f,0x88,0x28,0x6e,0x0c,0xf9,0x5c,0xc5,0xd6,0xad,0xf0, - 0x15,0x91,0xef,0xe9,0x45,0x76,0x74,0x99,0x16,0x45,0x36,0x5f,0xaf,0x77,0x3f,0x86,0xed,0x24,0xd0,0xdd, - 0xe6,0x8e,0xa6,0x76,0x0e,0xa1,0xb5,0xba,0xa9,0x56,0x38,0x83,0xf9,0xda,0xa6,0x76,0xae,0x95,0x33,0x85, - 0x3d,0xfd,0x33,0x0e,0x80,0x3f,0xc2,0xd9,0xcf,0xd9,0x96,0x5c,0x55,0x8c,0xfa,0xda,0x15,0xa9,0x45,0x95, - 0x5c,0xd1,0x34,0xd3,0x61,0xf4,0x70,0xa4,0x1f,0x0e,0x87,0xe0,0x50,0xb9,0x54,0xf2,0xa3,0x6a,0x57,0xbf, - 0x40,0x91,0xba,0xd1,0x95,0x40,0xd8,0xb3,0xb9,0x63,0x52,0x09,0x67,0x2f,0xf2,0x9a,0xe7,0x53,0x3f,0x6a, - 0x0b,0xdf,0x8b,0x2a,0xd1,0x09,0xe6,0x22,0x60,0x22,0xa5,0xe7,0xad,0x56,0x2e,0x2a,0xb9,0x55,0xf9,0xc7, - 0x88,0x78,0xca,0x96,0x53,0xe3,0x85,0x09,0x9b,0x4c,0x1f,0xac,0x2a,0x06,0x8a,0x9b,0x4a,0x9d,0xcb,0xd0, - 0x88,0x19,0x3b,0xab,0x3a,0x82,0x26,0x2d,0x4e,0x1d,0x04,0x36,0x20,0x35,0x0b,0xaf,0x08,0x43,0x05,0xff, - 0x8f,0xad,0xd6,0x33,0x80,0x8b,0x95,0x5d,0xc5,0x59,0xe4,0x15,0xaa,0x10,0xee,0x56,0x0a,0x15,0x77,0x15, - 0x32,0xb6,0x76,0xac,0x8e,0xcf,0x92,0xaa,0x55,0x4e,0xc1,0x30,0x02,0x82,0xcd,0xad,0xb8,0x81,0x0d,0xb3, - 0x9f,0x95,0xdc,0x46,0x75,0xcc,0x90,0xfa,0x91,0xff,0x1e,0x71,0x30,0xa9,0xf7,0x0c,0xb5,0x9f,0xf8,0xef, - 0x63,0x9c,0x1d,0xf7,0xf0,0xe7,0x4d,0x1f,0x5d,0x6c,0xce,0xb9,0x05,0xe2,0xbf,0xb3,0x67,0xc4,0x19,0x63, - 0x2b,0xa2,0xc5,0xe4,0x1c,0x73,0x09,0xc6,0x66,0x98,0x93,0xab,0x71,0xa8,0xcf,0x44,0x3a,0x14,0x77,0x77, - 0x2b,0x7e,0x90,0xc3,0x06,0xb2,0x06,0x4e,0xc2,0x83,0x24,0x21,0x1e,0x1a,0x27,0xe1,0x41,0x33,0x34,0x44, - 0xf9,0x71,0x12,0x1e,0xf4,0x81,0xc4,0x95,0xb9,0x3a,0xdc,0xa7,0xde,0x17,0x9a,0xca,0x9c,0x9c,0x1b,0x2a, - 0x9d,0xd8,0xa4,0xbd,0xbd,0x7b,0xba,0x21,0x89,0xf5,0x66,0xa9,0xd7,0x69,0x4e,0xe7,0xbe,0xab,0xc7,0x1e, - 0xe3,0x60,0xa5,0x34,0x31,0x9f,0x5d,0x3f,0xf5,0xdf,0x29,0xf3,0x05,0x21,0x2a,0x0d,0x10,0x5e,0x91,0x6e, - 0xaa,0xd3,0x20,0x40,0xdc,0xde,0x13,0x41,0xa1,0x19,0x73,0x39,0xa2,0x41,0x1a,0x8c,0x25,0x0e,0xfd,0xd7, - 0x8e,0xcf,0xcf,0xee,0xd3,0x42,0xc4,0x16,0x06,0xcc,0xe1,0xb0,0xa6,0x03,0xb1,0x0c,0x03,0x77,0xc5,0x65, - 0xcf,0x81,0xd9,0x73,0x08,0xb7,0xd0,0xe7,0x28,0x4b,0xf4,0x59,0xec,0xee,0x9e,0xda,0xb0,0xeb,0x95,0xd7, - 0x1f,0xdc,0xff,0xd7,0xd7,0xbb,0x08,0x8e,0xfb,0xca,0xa3,0x84,0xec,0x54,0x1a,0x13,0x33,0xf3,0x19,0xc2, - 0xe3,0xbc,0xf1,0x4f,0xfa,0x0e,0x7d,0x2e,0x9f,0x2a,0x8f,0x71,0xfc,0xa7,0x8e,0x35,0x64,0x93,0x22,0x8f, - 0xa5,0x93,0xcb,0xaa,0x19,0x4a,0x13,0x0d,0xa0,0x1c,0xd6,0xaf,0x49,0xbc,0x7e,0xea,0xab,0xe8,0x94,0x15, - 0xad,0x18,0x63,0x70,0x03,0x41,0x51,0x73,0x59,0x95,0xd7,0x74,0x80,0x3c,0x61,0xad,0xf6,0x7d,0xf9,0x6c, - 0x87,0xa6,0x6e,0x47,0xc3,0xf4,0x0e,0x22,0xe6,0xb6,0x97,0x13,0x16,0x29,0xd1,0x86,0xf0,0x11,0x55,0x7e, - 0x73,0x6b,0xe1,0x72,0x30,0xf8,0x3d,0x6c,0x75,0x11,0xfd,0x2f,0x97,0xa1,0x9e,0x1e,0x48,0x00,0x8a,0xd5, - 0x12,0xb0,0xe4,0xa2,0xf5,0xd1,0x31,0xd2,0x9a,0x13,0xe1,0x90,0x7b,0x1c,0x76,0x32,0x82,0xe2,0x51,0x1b, - 0xd8,0x20,0xb3,0x08,0x61,0x12,0x17,0x76,0xd2,0x25,0x2a,0x59,0x0b,0x7a,0x0d,0xab,0xef,0x83,0xb0,0xfd, - 0xde,0x48,0x09,0x64,0xe3,0x46,0x9d,0x2e,0x79,0xfd,0xfe,0x0c,0x7b,0x8e,0x2d,0x63,0x20,0x2c,0x03,0x5f, - 0xa0,0xfb,0x6d,0x33,0xc1,0x62,0xf4,0xf5,0x9f,0xc6,0x85,0xcb,0x1a,0x9c,0xd4,0x41,0x8b,0x07,0xb4,0x6b, - 0x86,0xeb,0xee,0xc8,0xdf,0x7d,0xed,0x9a,0xb6,0x76,0x61,0x27,0x41,0xa4,0x2f,0x61,0xa4,0x5c,0x85,0xb5, - 0xb7,0xd3,0xfd,0x89,0x6a,0xef,0xf9,0xa2,0x3d,0x89,0x26,0x02,0x66,0x67,0x86,0x44,0xe2,0xb0,0x25,0x9d, - 0xe1,0x4d,0xe0,0x21,0x99,0x5d,0xbd,0x17,0x80,0xa5,0x24,0xbd,0x5a,0x51,0xe1,0xf8,0x8e,0xc5,0xd6,0x51, - 0xae,0x93,0xe4,0x08,0x17,0x52,0x33,0xdc,0xf2,0x13,0x50,0xd7,0xa7,0x96,0xe9,0xdf,0x71,0x65,0xad,0x11, - 0x47,0xc5,0x37,0x8f,0xab,0xc1,0xe0,0xb8,0xe2,0x0b,0xd8,0xa6,0xdf,0x70,0x4d,0x51,0x41,0x0b,0x42,0x85, - 0x74,0x6c,0xeb,0x62,0xef,0x50,0x1d,0x40,0x86,0xc3,0x07,0xdd,0xb1,0xb9,0x27,0x33,0x1a,0xbd,0xc7,0x2e, - 0xc7,0xc9,0x70,0xa0,0xbe,0x0b,0x11,0x23,0x11,0x58,0x40,0x64,0x35,0xad,0xf1,0x52,0xb7,0xfd,0xc1,0xc2, - 0x58,0xdd,0x61,0x56,0x13,0x43,0xc5,0x6d,0x7b,0xb6,0x35,0xda,0xd5,0x72,0x34,0x46,0x12,0xeb,0x75,0xce, - 0x17,0xe1,0xd9,0xad,0xd3,0x82,0x16,0xf1,0x01,0x35,0xb5,0xb6,0xf8,0x2b,0xd9,0xb2,0x95,0xde,0x74,0x93, - 0x73,0xd9,0xdf,0x7a,0xfb,0xb3,0xad,0xab,0x13,0xa1,0x3e,0x09,0x33,0xc3,0x84,0xa9,0xfb,0xc6,0x52,0xe3, - 0x4f,0xed,0x6c,0xb9,0x78,0xfd,0xce,0x16,0x36,0x9d,0xe9,0xc8,0xd0,0xc5,0x3e,0x00,0xf0,0x10,0x22,0x4f, - 0x84,0x7f,0xe2,0x40,0x8c,0xd1,0xaa,0x65,0x5b,0x84,0xf6,0x47,0x3b,0xcc,0xdf,0x5a,0xfa,0xf3,0xb0,0xbb, - 0x54,0x0d,0xc1,0xfd,0xb4,0xbc,0xfe,0xec,0x7a,0xe9,0xc1,0x21,0x8c,0xd0,0x93,0x8c,0x68,0xbe,0xa7,0x46, - 0x77,0xb4,0x5e,0xaf,0x42,0x9b,0x69,0x8e,0x78,0x61,0x5e,0x47,0x7f,0xa9,0x73,0x9d,0xbd,0x3d,0x6a,0x1d, - 0xc4,0x87,0x1b,0xe1,0xd9,0x9e,0x11,0x61,0x92,0x15,0xab,0x45,0x66,0x64,0x39,0xaa,0x23,0xdb,0x81,0xc2, - 0x26,0xbe,0x50,0x35,0xfe,0x6e,0xd4,0x53,0x2a,0x8e,0x1d,0x06,0xc6,0x7c,0xf4,0x3e,0x0b,0x3f,0x79,0xd2, - 0x56,0xe1,0xf2,0xdf,0x52,0x09,0x04,0x15,0xf0,0x79,0x66,0x4d,0xd1,0xf0,0xf1,0xd7,0x1f,0x33,0xa0,0x27, - 0x28,0x40,0x5e,0xdb,0x29,0x89,0xfa,0xc2,0x06,0x24,0xad,0x06,0xdc,0x65,0xdf,0xc9,0xed,0x19,0xcb,0x79, - 0xa4,0x34,0x46,0xa0,0x7d,0x99,0xaf,0x2b,0xa5,0x1d,0xf6,0x7f,0x2a,0x58,0x25,0x6d,0x5e,0x9f,0xcd,0x17, - 0x71,0x25,0x1c,0x1b,0x91,0x9a,0xd9,0x0c,0xef,0xb9,0xbc,0x6f,0xd8,0x5d,0x94,0x1d,0xcc,0xdb,0xf6,0x3d, - 0x2e,0x46,0x88,0x5c,0x5c,0xa3,0x0d,0x7b,0x92,0x89,0x7e,0x50,0x75,0xd7,0x96,0x87,0xb2,0x3a,0x29,0x84, - 0x19,0x21,0xa9,0xda,0xf6,0xdf,0x47,0x44,0x03,0x62,0xdd,0xe0,0x67,0x17,0x0d,0xef,0xb1,0x22,0x32,0x04, - 0xa9,0x9a,0x51,0xc7,0xb4,0xa0,0xce,0xbb,0xb0,0x49,0xf7,0x0f,0xa1,0x01,0x1e,0xcf,0x2d,0x2e,0x40,0x04, - 0xd1,0xb7,0x00,0xca,0x8c,0x43,0x39,0x84,0xa9,0x4a,0x69,0x13,0x29,0xf3,0x1e,0xb7,0x99,0x2d,0xe3,0x92, + 0x30,0x79,0x05,0x6d,0x74,0xbb,0x8c,0xb6,0xc6,0xe2,0x48,0x36,0x6e,0xb3,0x9c,0x34,0x9c,0x7a,0x9a,0x20, + 0xc4,0xca,0xb6,0x45,0xc1,0xb3,0xcc,0x86,0x38,0x39,0x43,0xbc,0x80,0x96,0xed,0xe5,0xaf,0x2d,0xfb,0x08, + 0x76,0x51,0xc4,0x69,0xde,0x21,0x17,0xd8,0x3b,0xd3,0xfb,0xea,0x5d,0xd6,0xa2,0x4c,0xba,0xab,0x33,0xf6, + 0x5d,0xe7,0xbf,0xd9,0x3f,0x8c,0xb7,0x75,0x35,0x63,0xdf,0xe9,0xbf,0x53,0x1a,0xaa,0x3a,0xb5,0x1b,0xda, + 0x38,0x0a,0x12,0x48,0xec,0x14,0x18,0xdf,0xc4,0x51,0x28,0x24,0x02,0x36,0xbb,0xad,0x36,0x1a,0xdd,0x79, + 0x62,0xc5,0x97,0x1d,0x13,0x01,0x56,0x93,0x32,0x9c,0x42,0x01,0xc3,0xe0,0x79,0xc6,0xb8,0xae,0x0b,0x97, + 0x26,0x50,0x2f,0xcc,0xde,0xd9,0xd2,0x51,0xf3,0x05,0xbf,0x42,0x52,0xb6,0x65,0x6f,0x34,0xaa,0x21,0x40, + 0x66,0x12,0xe0,0x15,0x68,0xb1,0x94,0x19,0x3c,0x9f,0xb4,0x79,0xb5,0xa5,0x6b,0x60,0x4b,0xfc,0xdd,0x9c, + 0x3d,0xb6,0x18,0xc5,0xc0,0x61,0x0d,0xbf,0xb8,0x25,0xc4,0xb6,0xf0,0x52,0x93,0xc9,0xc3,0x7b,0x53,0x1a, + 0x62,0x55,0xc2,0x65,0x2b,0xb3,0x7a,0xff,0x15,0xdf,0x79,0xe9,0x79,0x01,0x64,0xbe,0x67,0xf7,0xad,0x08, + 0x99,0x8f,0xa0,0x27,0x88,0xdf,0xf0,0x9e,0x77,0x09,0xaa,0xf0,0xdf,0xe8,0x00,0xe6,0x52,0x30,0x2d,0xe3, + 0x27,0x22,0x38,0xf4,0x13,0x82,0x23,0xe3,0xf7,0x34,0xd6,0x0f,0xbe,0x59,0x7f,0x7b,0xf9,0xb3,0x71,0x33, + 0xce,0xf6,0x02,0x84,0xbd,0x89,0xb3,0x18,0x9c,0xa1,0x67,0xf3,0xfd,0xda,0x07,0xb0,0x2d,0x40,0xe9,0x3b, + 0x1c,0x69,0xb2,0x10,0x3a,0x90,0x76,0xa7,0x4a,0x9d,0xca,0x2e,0x7f,0x94,0xf2,0x0e,0x25,0x42,0x37,0x41, + 0x9d,0xd8,0x78,0x20,0xbd,0xf8,0x62,0x37,0x08,0x08,0xf0,0x7f,0x2f,0xa1,0x5e,0x44,0x8a,0x7e,0x0b,0x6f, + 0x57,0xb2,0x92,0xa6,0xdb,0x9a,0xa0,0xcb,0x20,0x18,0xb5,0xc4,0x73,0x99,0x8e,0x09,0x10,0x36,0x3a,0xf4, + 0x2e,0xaa,0x6b,0xfc,0xea,0x78,0x03,0xf7,0x02,0x74,0xdb,0xd4,0xdd,0x1f,0x76,0xc9,0xad,0x07,0xf5,0xd5, + 0x45,0x10,0x07,0x8b,0xb4,0xb9,0x64,0x43,0xa3,0xb1,0x3c,0x6e,0x69,0x8b,0x9e,0x64,0x26,0xba,0xcf,0xb6, + 0x86,0xd3,0xd4,0x68,0xa3,0xee,0xfd,0xb6,0xca,0xaa,0x9b,0x0f,0x19,0xf4,0xd0,0xa5,0xdc,0x43,0x73,0x57, + 0x2c,0xcd,0x69,0x7e,0x15,0xf4,0xa9,0x52,0x7e,0xea,0xec,0x15,0xb6,0xb9,0xac,0xb2,0x59,0xc7,0x47,0xc8, + 0x78,0x5e,0xe7,0xbe,0x1b,0xb7,0x01,0x53,0x60,0x08,0x38,0x68,0xa7,0xb0,0x9c,0xa7,0x6f,0xeb,0x51,0x57, + 0xad,0x92,0xb2,0x35,0xd4,0x8a,0x7f,0x71,0xf8,0xe3,0x17,0x87,0x2c,0x0e,0x58,0x3c,0x6a,0x42,0x3e,0x76, + 0xed,0xbf,0x2c,0x9e,0x97,0x55,0x6f,0x2d,0xf8,0x6b,0x51,0x46,0x4e,0xf8,0x78,0x30,0xe0,0x24,0xc6,0xc8, + 0xa6,0x6e,0x82,0x0f,0x79,0xc8,0x3d,0xc0,0xfd,0x51,0x84,0xd8,0x2e,0xc6,0x16,0x68,0x3c,0x1c,0xf5,0xf4, + 0xcb,0x42,0x26,0xd9,0x8f,0xfa,0xe8,0xf7,0xfd,0xc3,0x59,0xe7,0xe7,0x8c,0xc7,0x1a,0x6d,0x9c,0xca,0x91, + 0x58,0x88,0x22,0xe0,0xe7,0xae,0x7c,0x05,0x4b,0x28,0x32,0x12,0x3e,0x69,0x81,0x42,0x5b,0xc1,0x22,0x2a, + 0x78,0x23,0x86,0x95,0x9e,0x73,0x11,0x86,0x26,0x8e,0x21,0xaf,0x58,0x57,0x07,0x5d,0x2d,0xfb,0x95,0x7d, + 0xa6,0x8c,0x15,0x25,0xc2,0xba,0x6e,0xbd,0x9e,0xe7,0xec,0xd0,0x48,0x3f,0xc4,0x0d,0xf2,0x80,0x41,0x57, + 0x60,0x34,0x8f,0x21,0x55,0x7a,0x87,0x50,0x59,0x97,0xe5,0x9c,0x38,0x75,0xae,0xa1,0x25,0x7b,0xc2,0x38, + 0xfd,0x04,0x50,0xc6,0xed,0x14,0x2d,0x93,0xf3,0xed,0xf7,0x33,0x11,0x50,0x58,0xed,0xb2,0x38,0xc9,0x61, + 0x63,0xe5,0x44,0x42,0xe4,0x8f,0x92,0x6a,0xb4,0xb7,0x97,0xd3,0xd6,0x85,0x05,0x63,0x7e,0xaa,0x09,0xed, + 0xb0,0xc4,0x61,0xef,0x3c,0x2d,0x3d,0xcf,0x93,0x17,0x1a,0x26,0x75,0x8c,0x3c,0xcf,0xe1,0x6b,0xbd,0x6e, + 0xba,0x49,0xed,0x79,0x37,0x90,0x2c,0xdc,0x70,0x82,0x18,0x1d,0x53,0x78,0xed,0x35,0xf2,0x50,0x27,0xbf, + 0x67,0xdb,0xb5,0xba,0xc8,0x02,0xe0,0xc0,0xa8,0xc4,0x56,0x23,0xb8,0x18,0xd9,0x94,0x98,0x13,0xd9,0x41, + 0xa4,0xb0,0x66,0xb2,0x0a,0x91,0xb0,0x54,0x49,0x2d,0xdc,0xfc,0x04,0x3f,0xd5,0x98,0x66,0x8d,0xa6,0xf8, + 0x47,0x08,0xbe,0x12,0xe3,0x88,0xfb,0x3d,0x18,0x5d,0xad,0x03,0x0d,0x14,0xee,0x3c,0x50,0x39,0x8c,0x26, + 0x70,0x12,0xd0,0x8f,0xdb,0x57,0x22,0x8b,0x9e,0x0e,0x06,0x2b,0x03,0xd4,0xc4,0xbb,0xc8,0xd7,0xf0,0x59, + 0xeb,0xfb,0x36,0x2f,0x88,0x26,0xe7,0x6f,0xe6,0xf6,0x1b,0x6c,0xe1,0x79,0x2b,0xaa,0xcd,0xac,0x4f,0x36, + 0x2e,0xc6,0x79,0x73,0xdf,0x24,0x8f,0xda,0x9a,0x63,0x1c,0x81,0xa9,0x56,0x9a,0xdc,0x8c,0xd2,0xf1,0x77, + 0xf0,0x97,0x92,0xe4,0x00,0x32,0xe8,0x59,0xc8,0x4e,0x01,0x2b,0x1b,0xf9,0x83,0x0b,0x20,0x8e,0xa0,0x0e, + 0x1f,0x78,0x67,0x8b,0xab,0x4e,0x8b,0x2b,0x6e,0xb1,0x3b,0x09,0xba,0x65,0x66,0xc3,0xed,0x7c,0xd7,0xd1, + 0x84,0xbd,0xce,0xe8,0x2b,0x9e,0xf6,0x60,0x55,0xc8,0xc4,0x64,0xf4,0x0f,0x82,0xd8,0xb6,0xc1,0xee,0xef, + 0x2d,0x1c,0xd7,0x17,0x75,0xa7,0x63,0x8e,0xab,0xb7,0xe7,0x48,0xcc,0x3e,0xb6,0x54,0xa6,0x61,0xce,0xa6, + 0xb8,0xd1,0x50,0xc7,0x05,0x67,0x9d,0x78,0xee,0xde,0x92,0xab,0x3c,0x52,0xc5,0x09,0xc1,0x3b,0xc1,0xe0, + 0xb0,0x4a,0xaf,0xdf,0x30,0x19,0x95,0x32,0x39,0xb5,0x17,0x0c,0x83,0x3d,0xdf,0x1e,0x24,0xf5,0xab,0x81, + 0xac,0x40,0xc2,0xae,0x0e,0x83,0x28,0xa2,0xfd,0x21,0xcb,0x4c,0x9c,0x52,0xe3,0x71,0x4a,0x0e,0x30,0xe9, + 0xa0,0xe4,0x5a,0x23,0x1d,0xb7,0x7e,0xdb,0x04,0xf6,0xfb,0x6c,0x5b,0xfa,0x9c,0x09,0xe8,0xf0,0x8f,0xb6, + 0x9b,0x4c,0xd9,0x30,0x32,0x0d,0x0b,0x09,0xb5,0xa1,0xcb,0x6b,0xe3,0xc8,0x0a,0xc6,0x91,0x95,0x5c,0x98, + 0xc0,0xc7,0x80,0xeb,0x01,0x5f,0x83,0x22,0xe3,0x02,0x05,0xe0,0x8c,0x27,0x3d,0x57,0x88,0x2c,0xf4,0x28, + 0xa0,0x6d,0xc3,0x6d,0x9e,0xfd,0xb0,0x61,0xac,0x25,0xae,0x53,0x6d,0x22,0x34,0x2f,0x2e,0xb3,0x2a,0xe7, + 0x78,0xdb,0x34,0x43,0x59,0x28,0xc8,0xd0,0x22,0xc1,0xcc,0x78,0x0a,0x48,0x82,0x66,0x0e,0x98,0x4f,0xa2, + 0xc6,0x30,0x9a,0x49,0xe2,0x7f,0xc2,0xc2,0xf1,0x79,0x52,0x75,0x92,0x98,0x1f,0xd3,0xa2,0x21,0x84,0x43, + 0x68,0x15,0x48,0x58,0x0b,0x3d,0xd7,0xee,0x12,0x4c,0x2d,0xce,0xa3,0x32,0x99,0x83,0xc2,0x9f,0x08,0x33, + 0x53,0x12,0xe8,0x43,0x52,0x0a,0xbe,0x6d,0x14,0xbe,0x29,0xd6,0xeb,0xf7,0x30,0xe8,0xd0,0xd2,0x6f,0x88, + 0x2b,0xe4,0x49,0x17,0x33,0x02,0x76,0x9d,0xef,0x55,0x3c,0x89,0xb0,0xfb,0x52,0xb6,0xc5,0x6f,0x80,0xc4, + 0xc7,0x08,0x6e,0x87,0xc0,0xb4,0x36,0xe2,0xf8,0x9b,0x0f,0x61,0x96,0xab,0x02,0x99,0x51,0xfc,0x2f,0xfa, + 0x2e,0x42,0xa0,0xcd,0x4e,0x21,0x64,0x7a,0xab,0xf0,0x9d,0x6f,0x20,0xf0,0xcf,0x8a,0x9d,0xee,0x72,0x0e, + 0x90,0xbd,0xf5,0x21,0x8b,0x4a,0x92,0x80,0x28,0xed,0xf2,0x7a,0x46,0xfb,0xa3,0xa6,0xbd,0x92,0x15,0x81, + 0x84,0x1d,0x0b,0x9e,0xbd,0x7e,0xf2,0xec,0xa9,0xb6,0x95,0x16,0x1e,0x7f,0x1c,0x34,0x15,0x8d,0x25,0x86, + 0x92,0xbf,0x15,0x18,0x9d,0xbd,0xde,0xac,0x3d,0xd4,0xbf,0x2a,0x1d,0x42,0xa0,0x5d,0x84,0x7b,0x41,0x54, + 0xe3,0x2c,0xa5,0x72,0xa8,0xb7,0x18,0xeb,0xe7,0x58,0xea,0x75,0x35,0x34,0xf9,0x67,0xba,0x6d,0x27,0xa5, + 0xc1,0xfd,0x1d,0xad,0x56,0x24,0xab,0xb1,0xe6,0x0b,0x54,0x15,0x57,0x12,0xf5,0x8d,0x5d,0xec,0x67,0xa8, + 0xc8,0x1b,0xf8,0xb7,0xbd,0x86,0xd7,0xc4,0xf1,0xb3,0x9f,0x8f,0x1f,0xbf,0x7f,0xf6,0xb8,0x35,0x6a,0x4a, + 0x5f,0xba,0xb3,0x54,0xcf,0x0e,0xc7,0xd4,0xcc,0xb3,0xe5,0xa5,0x21,0x9d,0x7c,0x5b,0xc0,0x86,0x88,0xef, + 0x72,0xf9,0x92,0x88,0x88,0x69,0x4e,0xb8,0x07,0x96,0x35,0xe9,0x45,0x2a,0xc8,0x51,0x99,0xae,0x74,0xee, + 0x78,0x11,0x0a,0x02,0x96,0x22,0xa3,0xac,0xe7,0x0a,0x18,0x9b,0xad,0x4c,0xc3,0xc9,0xee,0xc1,0xa6,0x67, + 0x19,0x3c,0x48,0xf8,0xb6,0xb3,0x1f,0x0d,0xe9,0xc6,0xc1,0x77,0x4a,0xbd,0x57,0x64,0x53,0x66,0x90,0x7f, + 0x7b,0x0c,0x03,0x76,0x5b,0xaa,0x79,0x05,0x96,0x5b,0x40,0x2e,0x0b,0xe6,0xa8,0x5b,0xa8,0xd4,0x85,0x22, + 0xab,0x5b,0xe9,0xa5,0xf5,0xcd,0x9d,0x68,0xf0,0xa3,0x20,0xa4,0x3a,0x62,0xf1,0x4a,0x97,0xbc,0x8c,0x46, + 0xc0,0xb8,0x7d,0xec,0x91,0x70,0x71,0x7c,0xc9,0xe5,0x94,0xbd,0x71,0x09,0x6c,0x9f,0x67,0x9a,0x20,0x63, + 0xd8,0x63,0x4b,0x7a,0x21,0x9a,0xac,0x19,0x3d,0x07,0xcb,0xf0,0xcb,0x17,0x4a,0x93,0x73,0x4e,0x25,0x97, + 0xb4,0x18,0x25,0x9e,0x15,0xe1,0x8b,0x1a,0xde,0x6c,0x90,0x12,0x8e,0xdf,0x40,0xd8,0xf4,0x9a,0xf5,0x47, + 0x44,0xfc,0x8f,0x34,0xd6,0x61,0xcb,0x64,0x08,0x83,0xce,0x38,0x6e,0x6c,0x8e,0x31,0x73,0x25,0x19,0x91, + 0xc5,0x2c,0xa1,0x0c,0xeb,0xe4,0x0d,0x50,0xc0,0xeb,0x8c,0x25,0x88,0x0a,0xae,0x59,0x39,0x0c,0x30,0xb3, + 0x2b,0x2e,0xd8,0x73,0x07,0x81,0x58,0x7d,0xa9,0x1a,0xa7,0xbe,0x2b,0x98,0xd4,0xfe,0xb2,0xfe,0x9c,0x6d, + 0x39,0xc9,0x85,0x6c,0x97,0xe5,0x39,0x6c,0x64,0xda,0x2c,0xfc,0x92,0x70,0xbb,0x5c,0xf2,0x40,0xed,0x5f, + 0x26,0xf9,0xde,0xe1,0xc6,0x23,0x9b,0x18,0x75,0xee,0x1e,0x8a,0x2a,0x74,0x8e,0x3f,0x2b,0xb6,0x10,0x27, + 0x96,0x6c,0x4a,0xff,0x97,0xf4,0xdf,0x38,0x64,0xf6,0x08,0x51,0xb0,0xb9,0xd8,0x24,0x37,0xf3,0xe3,0x62, + 0xd1,0x89,0x58,0x47,0x5f,0x7c,0x2d,0xb6,0xdd,0x5f,0x3f,0xa4,0x21,0x8b,0x7c,0x74,0xf7,0xd0,0xed,0xc9, + 0x49,0xf4,0xc5,0x97,0x9d,0x02,0x93,0x56,0x81,0x79,0xf4,0xf5,0xdf,0x3b,0x05,0xe6,0xad,0x02,0xab,0xe8, + 0xcb,0xff,0xee,0x14,0x58,0xb5,0x0a,0x1c,0x3e,0xfc,0x12,0x1c,0xe3,0x7a,0x4d,0x0f,0xbc,0x99,0xfd,0x2e, + 0xee,0x1d,0x46,0xfd,0x19,0xfb,0xc8,0x98,0x11,0x73,0xb5,0x5e,0x2f,0xa3,0xdb,0xfa,0x3a,0xd7,0x1e,0x03, + 0x93,0x94,0x6a,0xfd,0xe2,0xcb,0x18,0x86,0x07,0x62,0x34,0x3b,0x92,0xa4,0xaf,0xe3,0xba,0x93,0xf4,0xf5, + 0xdf,0xe3,0x79,0x27,0xe9,0xcb,0x83,0x78,0xb9,0xb7,0xd7,0x4a,0x39,0x8c,0x97,0xfb,0xfb,0xad,0xcf,0x0e, + 0xe3,0x69,0xbb,0xcc,0xd7,0x5f,0xc4,0xd3,0x76,0x99,0xc3,0x87,0x5f,0xc4,0xb3,0x76,0xa1,0xc3,0x87,0x5f, + 0xc5,0xb3,0xfd,0x7d,0x50,0x66,0x32,0x21,0x6e,0xcf,0x5d,0x25,0x34,0x1c,0xb5,0xd0,0x2c,0xd7,0xe8,0x8a, + 0xc3,0x4b,0x8a,0xf3,0x4b,0xb8,0x48,0xec,0x3d,0x0f,0x57,0x10,0xab,0xec,0xef,0x47,0xa3,0xc5,0x60,0x70, + 0xae,0x63,0xf8,0x2e,0x22,0xd6,0x10,0xc0,0xd0,0x5f,0x04,0xae,0xd6,0x7e,0x24,0x1d,0x87,0x0c,0x45,0xcc, + 0xb2,0x9b,0x4b,0xa3,0x1d,0x88,0xc5,0x8d,0xa8,0x58,0xbc,0xf2,0xbd,0x05,0x63,0xb8,0xc9,0x5f,0x82,0xcb, + 0xc1,0x25,0x20,0x0e,0xbe,0x4a,0x1f,0xbe,0xd2,0xa4,0x87,0xde,0x4f,0x9c,0xe4,0x2e,0x08,0x03,0x11,0x70, + 0x3e,0x32,0xf7,0x92,0xdc,0x3f,0xa3,0xd4,0xfb,0x44,0x9c,0xdc,0x0f,0xa2,0xf0,0x3e,0x47,0xa1,0x0f,0x46, + 0xed,0x2c,0xdb,0x97,0x22,0x72,0xa5,0x54,0x60,0x33,0x0a,0x82,0x8d,0x0d,0x64,0xcb,0xbe,0xc4,0x2f,0xf5, + 0x1c,0xef,0x78,0xf3,0xb5,0x9d,0x9c,0x83,0x93,0x1f,0x57,0x88,0xb0,0xc6,0x26,0x51,0xd5,0x29,0x02,0x03, + 0xfb,0xb2,0xb7,0x7f,0x75,0xc5,0x28,0x88,0x9e,0xbf,0x6c,0x9b,0x9e,0xb8,0x30,0x40,0x9b,0x6d,0xeb,0x72, + 0xaf,0xc0,0x26,0x8a,0x4f,0x3c,0x6b,0xa2,0x7f,0xda,0xb3,0x3e,0xcc,0xac,0x76,0xde,0x04,0x08,0x71,0xd8, + 0xe0,0x96,0xef,0xf0,0x68,0x94,0x8e,0x35,0xc7,0x37,0xb0,0xf1,0xd5,0xa5,0x89,0xef,0x4b,0x94,0x35,0x5e, + 0x65,0x5d,0x0b,0xd0,0xbf,0x5a,0x59,0xd3,0x38,0x2b,0x41,0xae,0xe1,0x75,0xba,0x94,0x38,0x44,0xfa,0x1d, + 0x47,0xdb,0x1d,0x15,0x7a,0x1e,0x78,0x8d,0xa3,0x69,0xa1,0x09,0x05,0x7e,0x67,0xbd,0xb6,0xf1,0x50,0x75, + 0x71,0x86,0x2a,0xeb,0x16,0xdb,0x24,0xc1,0x2e,0x5c,0x76,0x08,0xd9,0xc3,0xa4,0xd2,0x2f,0xc2,0x0e,0xb4, + 0x94,0xff,0xff,0x74,0xbe,0xf6,0x9f,0xf5,0x8b,0x18,0x97,0x5a,0x2a,0x35,0xe0,0x52,0x84,0x93,0xe1,0x1b, + 0x2e,0xc7,0x3e,0x0c,0x4b,0xf2,0x8b,0xcb,0x66,0x1c,0x52,0xbe,0x26,0x92,0x17,0x59,0xb1,0x0a,0x94,0xad, + 0x80,0xf3,0xa3,0xb8,0x1a,0x2e,0xf2,0xe9,0x74,0xce,0x42,0xdc,0x24,0x58,0x94,0xab,0x3a,0x5b,0x2d,0x03, + 0x63,0xf0,0x3b,0xaa,0xb4,0x9a,0x7a,0xec,0x5a,0x96,0x04,0xb6,0x5f,0x97,0x47,0x26,0x01,0x64,0x11,0xfc, + 0x04,0x56,0x8b,0xc7,0x28,0x96,0xb9,0x02,0x99,0xcd,0xd2,0x96,0x7b,0x26,0xb0,0xe0,0x66,0x84,0x8b,0x5a, + 0xaf,0x20,0x3b,0xab,0x3d,0xce,0x45,0x5f,0xeb,0x3e,0x49,0x70,0x29,0xcf,0x68,0x4b,0xf7,0x97,0x8f,0x27, + 0xf6,0x66,0xf1,0xda,0xba,0xe9,0xd5,0x72,0x91,0x4f,0x32,0xa1,0xfc,0x93,0x5a,0x4d,0x4e,0xe3,0x93,0x89, + 0xaa,0x4f,0xe3,0xba,0x17,0x04,0x2a,0x0b,0x02,0x42,0x21,0x41,0x24,0x8d,0x5b,0xc1,0xf6,0x10,0xb8,0x5d, + 0x5e,0xae,0xf6,0x39,0x36,0x0b,0x92,0x78,0x27,0x73,0x0c,0x5e,0x13,0x46,0x13,0x07,0x9d,0xa8,0x30,0xc4, + 0x0b,0xc6,0x10,0x32,0xfc,0xa9,0xff,0x41,0x6e,0x3e,0xe8,0x84,0xba,0xcd,0xfd,0x53,0x33,0x6f,0xf7,0xc6, + 0x7d,0xcd,0x92,0x19,0x0f,0x44,0xfd,0x48,0x38,0x1e,0xac,0x6a,0xab,0xfd,0xbc,0x6b,0xb5,0x0f,0xdd,0x12, + 0x9c,0x22,0xf8,0x4a,0x15,0x04,0x0a,0xbd,0xcd,0x4d,0xec,0xac,0x14,0xb1,0xb3,0xc4,0xc5,0xc2,0xb0,0x6b, + 0xd6,0x8f,0xb1,0xd5,0xa4,0x6f,0xc5,0x9f,0x76,0x66,0x4d,0xac,0xf4,0xf3,0x24,0xb8,0x77,0xef,0x8a,0x90, + 0x19,0x23,0x50,0x10,0x0e,0x49,0x10,0x6a,0x71,0x21,0x65,0xec,0x50,0xcb,0x3b,0xf7,0x65,0xe4,0xf7,0xc7, + 0x48,0x31,0x88,0x16,0xcf,0x11,0x64,0xa5,0x43,0x71,0x76,0x90,0x4f,0xcf,0x88,0xef,0xdc,0xcb,0x81,0x1e, + 0x35,0x3f,0x99,0x94,0x4d,0x08,0xe3,0xd0,0x91,0x36,0xfe,0x31,0xe0,0x43,0x38,0x16,0xbc,0x5e,0x44,0x1c, + 0xf7,0xa7,0x25,0xae,0x1b,0xa4,0x2e,0xc6,0xf7,0x35,0x8e,0xbd,0xaf,0x8c,0x69,0x8e,0x0b,0x6d,0xb2,0x13, + 0xa2,0xc1,0x9d,0xdb,0x60,0x2f,0xdd,0x0b,0x36,0x81,0xb7,0x00,0x65,0xe3,0xa3,0x71,0x1f,0xb9,0xd1,0x14, + 0xfe,0x54,0xb9,0x00,0x86,0xde,0x65,0x56,0x27,0x41,0xf4,0xe8,0x00,0x52,0x47,0xdc,0xce,0xf5,0xd2,0xa4, + 0x9e,0x52,0xea,0x4f,0x95,0x8d,0xd2,0x1b,0xbe,0xe0,0x8f,0xfd,0x12,0xe0,0xa9,0xbf,0xd9,0x3f,0x1c,0xdf, + 0x52,0xaf,0x63,0x77,0xfe,0xbc,0x20,0x8a,0x8d,0x58,0x71,0x1e,0x80,0x49,0x7d,0x51,0x11,0xc6,0xc7,0x60, + 0x36,0xb1,0x94,0xe6,0x12,0x1c,0xa7,0x89,0x09,0x9f,0x1f,0x41,0xb2,0x52,0x0b,0xbf,0x57,0xc9,0xf7,0x10, + 0x11,0xec,0x4e,0x70,0xc6,0x45,0xf3,0x26,0xfc,0xa1,0x4a,0x6a,0xa8,0xb4,0xc7,0x2b,0x3c,0x47,0xf1,0xd7, + 0x60,0x69,0x7f,0xa8,0x7c,0x31,0x95,0x91,0x3f,0x8b,0x87,0x24,0x55,0xf1,0xa2,0x32,0x15,0x70,0x60,0x59, + 0x7c,0xaf,0xe6,0x50,0xd5,0x44,0x2b,0x8e,0xb3,0x6c,0xc8,0x17,0xae,0x8b,0x70,0x07,0x82,0x17,0x7e,0xfd, + 0x85,0x7e,0xde,0xdf,0x67,0x53,0x3b,0x9a,0xc3,0xef,0xb9,0x26,0x01,0xad,0x0d,0x1a,0x37,0x31,0xcf,0xdb, + 0xe3,0xfd,0x5d,0x8f,0xd7,0xa4,0xfc,0x4e,0x63,0x55,0xdf,0x57,0x50,0x37,0x3a,0x4d,0xb2,0x76,0xef,0x64, + 0xdf,0x88,0xb1,0xdc,0x68,0xd3,0xc4,0xc1,0x3d,0xa2,0x4b,0x43,0xdc,0xa1,0x48,0x35,0xea,0x3b,0xbb,0x50, + 0x40,0x1e,0x19,0x22,0x3c,0x27,0xd4,0xc6,0xd9,0x0f,0xff,0x58,0xf9,0x04,0xd5,0xde,0xde,0x0b,0xdf,0xf4, + 0x7d,0xe2,0x15,0x7c,0x51,0x7d,0x93,0xfc,0xe4,0xc1,0xfd,0xdc,0x8f,0x1a,0xce,0xe4,0x61,0xb6,0x5e,0x33, + 0x1d,0xe9,0x09,0xb1,0x79,0x92,0x7c,0x67,0x43,0x99,0x4d,0x76,0xa0,0xe5,0xb5,0x80,0x5f,0xc6,0x28,0x1a, + 0x79,0x8e,0x79,0x8d,0x2f,0x15,0x69,0x10,0xa9,0xa2,0x89,0x86,0x67,0xb8,0x2e,0xf2,0x38,0xad,0x61,0xd8, + 0x93,0xba,0x37,0x5f,0x6a,0x76,0xe9,0x3c,0x3c,0x93,0xf4,0x8e,0x78,0x12,0xba,0xb7,0x97,0xec,0x57,0x49, + 0x67,0x33,0xdf,0xc5,0xd8,0xb4,0xc8,0x16,0xb7,0x91,0x7f,0xab,0xba,0xe1,0x68,0x77,0xf2,0xd0,0x5d,0x0f, + 0xd8,0xdf,0x04,0xe1,0x0b,0xde,0x98,0xe2,0xc3,0xb6,0x41,0x08,0x63,0xc4,0x25,0x50,0xbf,0x55,0xdb,0x3c, + 0x22,0x5a,0xfb,0xa1,0x18,0xdf,0xea,0x73,0x10,0x96,0x3a,0x72,0x96,0x21,0xac,0x9c,0xc6,0xf7,0x1e,0x25, + 0x33,0x6d,0x9c,0xce,0x2a,0xa4,0x53,0xf5,0xb7,0x2a,0xea,0xe5,0x4c,0x11,0xd1,0xca,0x9b,0xaf,0xb6,0x33, + 0xc0,0xb2,0x09,0x4d,0x54,0xaa,0x5d,0x2b,0xb0,0x29,0xc1,0xe6,0xef,0x5a,0x71,0x0d,0x6e,0x01,0xb0,0x3c, + 0xa8,0x4e,0x61,0xa4,0x96,0x26,0x85,0xff,0x3e,0xfa,0xad,0xd2,0x4c,0x6a,0x07,0x39,0x50,0x47,0x4f,0xce, + 0xa0,0x07,0xd2,0xb8,0xe3,0x4d,0x31,0x0e,0xf4,0xf5,0xd7,0xb1,0xb1,0x4e,0xe4,0x20,0xd1,0xce,0x17,0x80, + 0x3f,0xe0,0x70,0xcf,0xec,0x67,0xee,0xae,0x1e,0xa7,0xe4,0x0d,0xb2,0xaf,0x73,0x89,0x81,0x30,0x94,0x8a, + 0x5a,0x9f,0x5e,0xe3,0x53,0x9d,0xd1,0xf9,0x1c,0x9f,0x6d,0xc0,0xe3,0xfc,0xc6,0x2a,0xfa,0x59,0xa3,0xa6, + 0x08,0x18,0x6b,0x65,0xc6,0xbf,0xd9,0x90,0x00,0x9e,0xc3,0x61,0xdf,0x1c,0x19,0x87,0x9b,0xd6,0x4c,0xd9, + 0x44,0x5f,0xc4,0x2e,0x53,0x52,0x27,0x9d,0x0f,0xdb,0xd2,0x2d,0x3f,0xf5,0x2e,0x01,0x97,0xf5,0xf1,0x69, + 0xc9,0xb8,0x72,0x91,0xb3,0x42,0x14,0x95,0xeb,0x88,0x75,0xf9,0x69,0x12,0x04,0x5e,0xee,0x5c,0xdf,0x32, + 0x88,0x12,0x8a,0xef,0x8a,0x36,0x77,0x37,0x6b,0xf7,0xa4,0xbc,0x20,0x40,0x79,0x71,0xfc,0xfa,0x15,0x27, + 0x70,0xe9,0xaa,0x3f,0x04,0xae,0x67,0x02,0x95,0x52,0xd9,0x1a,0x6d,0x62,0xf2,0xf2,0x62,0x95,0x8d,0x80, + 0xf3,0x4a,0x29,0xfa,0x06,0x4e,0x5a,0x56,0xd4,0x5c,0x6a,0xc0,0x3c,0x42,0x56,0xe8,0x17,0x81,0xf9,0x11, + 0x5f,0x6b,0x2c,0x52,0x36,0x69,0xbe,0x1c,0x9e,0xf1,0x6b,0x92,0x6a,0x2b,0x46,0x88,0xc8,0x10,0x1d,0xdf, + 0xde,0x98,0x35,0x9a,0x26,0x2b,0xb5,0x1b,0xce,0x92,0x32,0x12,0x69,0x43,0x4d,0xe9,0xb0,0xce,0x7e,0xfb, + 0xee,0xf8,0xe5,0xdb,0x37,0xa8,0x67,0x66,0xc4,0x3f,0xc4,0x10,0xf6,0xb0,0x21,0x84,0x1b,0xd8,0xc1,0xdc, + 0x5d,0x8c,0x25,0x8e,0xd2,0x5a,0x0f,0xc7,0xd7,0x1c,0xd8,0x38,0x43,0xde,0xf1,0x9f,0x59,0x31,0x61,0xb3, + 0x09,0x67,0x6a,0x1a,0xb5,0xaa,0xf7,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x6b,0x43,0xb6,0x89,0xf9,0x5a, + 0x1e,0x69,0x93,0x96,0x79,0xfa,0xfb,0x8d,0x0b,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x1b,0x82,0x68,0x22,0xae, + 0x6a,0x13,0x1d,0xf4,0x2d,0x67,0xaa,0xc0,0xd9,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68,0x3a,0x0a,0x92, + 0xb1,0x90,0xfe,0x31,0x48,0x48,0x6f,0x92,0x95,0xb6,0xbf,0x61,0x10,0x49,0xe5,0x16,0x40,0x2a,0xe3,0xf9, + 0x75,0x36,0xee,0xcc,0x5b,0x34,0xac,0x92,0xbe,0x99,0x7b,0x46,0x4b,0x5a,0xd6,0xf2,0x01,0xa9,0xe3,0xab, + 0xb0,0xf5,0xce,0xb1,0x13,0x3c,0x6f,0xc6,0xe6,0x73,0x0a,0xe5,0xc5,0x1d,0xda,0xd9,0xa3,0xbc,0x13,0xbb, + 0xe4,0xa2,0x69,0xcb,0xc0,0x58,0x60,0x94,0x76,0x64,0x5f,0xb9,0xdf,0x8f,0x48,0x74,0x61,0xb5,0x7d,0x4e, + 0xb7,0x72,0x53,0x9d,0x1b,0x79,0x11,0x7f,0xf4,0x3e,0x9d,0x27,0xad,0xe2,0x6a,0x05,0x83,0xd4,0xb2,0x5a, + 0xf0,0x75,0xf2,0x53,0x4e,0x83,0x82,0xa0,0x96,0x07,0xda,0x87,0xb3,0x64,0xbe,0x5e,0xaf,0xd4,0x14,0xf3, + 0xa5,0x37,0xaa,0x54,0xce,0x5b,0x59,0xa7,0x74,0x6a,0x48,0x60,0x04,0xaf,0x77,0xb8,0xf8,0x4d,0x4d,0xa3, + 0x78,0x3a,0x12,0xc3,0xd6,0x36,0xb4,0xfa,0xda,0x76,0xa6,0x23,0xb3,0x51,0x8f,0x80,0xed,0x2f,0x09,0xde, + 0xae,0xac,0x26,0x34,0x82,0x7d,0x0b,0x3b,0x8b,0x49,0x72,0xd6,0x4d,0x76,0x8e,0xcb,0x19,0xcc,0xd5,0x87, + 0x26,0xfe,0x5a,0xda,0xaa,0x2d,0xed,0x7e,0xe6,0x54,0xfa,0x95,0xd4,0xc1,0xa1,0x31,0x67,0x84,0xa4,0x96, + 0xb0,0x69,0x1c,0x0c,0x1e,0xc3,0x12,0xb1,0x56,0x06,0x4b,0x71,0xf6,0x32,0x0a,0xcb,0x84,0xf3,0x09,0x78, + 0x67,0xf4,0x6b,0x8b,0xe9,0x58,0x27,0xc0,0x00,0xa5,0xcf,0x12,0xdc,0x34,0xbe,0x57,0x1a,0x47,0x0a,0xd5, + 0x72,0x0c,0x89,0xc0,0xc1,0xc2,0x38,0x36,0x21,0xf4,0x84,0x0e,0x3b,0x01,0x53,0x96,0x8d,0xb6,0x6b,0x79, + 0xf0,0x4b,0xbd,0xf7,0x20,0xb2,0x97,0x38,0xf5,0x78,0x84,0x7b,0xf5,0x70,0x70,0x2d,0x04,0x16,0x8b,0xb7, + 0x13,0xfd,0x20,0xbb,0xd0,0xb0,0x50,0xfb,0x17,0x3d,0xa2,0xc1,0x48,0x5b,0x5f,0xee,0xe0,0xe6,0x47,0xaf, + 0x53,0xac,0x91,0x09,0x58,0x49,0x9e,0xf5,0xcb,0x14,0xc3,0x82,0xb8,0x2c,0x33,0x40,0x3f,0xf6,0xfe,0xff, + 0xef,0xb3,0x20,0xc8,0x7c,0x7b,0x22,0x6c,0xba,0xf2,0x53,0xe5,0x10,0x00,0x13,0xd0,0x15,0xe1,0x9b,0x29, + 0x91,0xa9,0x73,0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0x31,0xd3,0xe6,0x4d,0x65,0x05,0x5b,0xb0,0x11,0xbc, + 0xa3,0xed,0x6d,0x53,0x95,0xc2,0x70,0x01,0xe2,0x06,0x4d,0x42,0x29,0xd1,0x3b,0xc7,0x7c,0x8f,0xc6,0x5d, + 0xdd,0xf4,0xe6,0xfc,0xac,0xd1,0xa4,0x8d,0xb6,0x00,0xd9,0xba,0xb5,0xc5,0x20,0x51,0x7b,0x1d,0x30,0xb3, + 0xc0,0x34,0x2d,0x90,0x1a,0xe3,0x26,0x8b,0x67,0x79,0x98,0x69,0xab,0xad,0xe0,0x2a,0x40,0x00,0xcc,0x90, + 0x95,0xc5,0x8d,0x46,0xe1,0x3d,0xb8,0xf1,0x19,0xe3,0xc6,0x2d,0xf2,0xe4,0x9a,0xfb,0xf2,0x3e,0xf7,0x1d, + 0x68,0xde,0xa3,0xa8,0x2f,0x88,0x39,0x6e,0xda,0xd6,0x23,0xdb,0x32,0x6f,0x96,0x42,0x6c,0x27,0x73,0x5c, + 0xa0,0xc2,0xb3,0xfc,0x02,0x84,0xc2,0x81,0x04,0xf2,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xff,0x52,0xdd,0x54, + 0x5f,0x6d,0x83,0xc1,0xaa,0xb7,0x15,0x04,0xe0,0xd6,0x70,0xec,0x39,0x9d,0x76,0x38,0xe9,0x0f,0x52,0x40, + 0xe1,0x18,0xd0,0x26,0x17,0x95,0x71,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7,0x82,0x95,0x2a, + 0x98,0xd0,0x2b,0x75,0x02,0xc3,0x8b,0x77,0xf9,0xf8,0x79,0x1e,0xbf,0xce,0x09,0xe3,0x77,0x7c,0xd0,0xfa, + 0x15,0x3b,0xb5,0x5a,0xc1,0x6e,0x9d,0xfd,0xcd,0xda,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd,0xde,0xde,0xe4, + 0x1b,0x68,0x16,0xe1,0x6e,0x36,0xea,0x77,0x6a,0x9a,0x3c,0xd2,0xf9,0x0a,0xd7,0x34,0xab,0x1e,0x25,0x11, + 0x9a,0xf2,0x9c,0x5e,0xfd,0x25,0x23,0x68,0xd7,0xb7,0xea,0x52,0x93,0x47,0x3a,0x80,0x07,0x9f,0x25,0x12, + 0x73,0xa2,0x3a,0x79,0x95,0xef,0x05,0x4f,0xe1,0x68,0x15,0x9c,0x5a,0x93,0x3d,0x58,0x45,0xa5,0x26,0x6f, + 0x55,0xc9,0x55,0xd7,0xed,0xec,0x32,0xf9,0xd4,0x70,0x28,0x59,0x28,0x61,0x4f,0xde,0xdc,0x51,0xc9,0xc4, + 0xe4,0xf5,0x57,0x32,0x47,0x25,0x30,0x76,0xa5,0x39,0x3a,0x80,0xfa,0xc1,0xdd,0x06,0xcc,0x13,0x5e,0xb2, + 0x09,0x7a,0x41,0x8f,0x54,0xa0,0xa4,0x02,0xc6,0xd6,0x9d,0x28,0x06,0x58,0x60,0xe7,0xe3,0xb9,0x2e,0xf1, + 0x12,0x25,0xe6,0x54,0x62,0x62,0x4b,0xcc,0x12,0x4a,0x0f,0x57,0x2e,0x6a,0x7b,0x09,0xda,0xf7,0x9b,0x03, + 0xaa,0x75,0x3e,0x7e,0x97,0xc7,0x2f,0x73,0xe6,0xf6,0xa3,0x71,0x21,0x8d,0x99,0xba,0x63,0x53,0x45,0x7c, + 0xa0,0x74,0xf0,0x66,0xa5,0xa1,0x25,0x5e,0x29,0x0b,0x2b,0xf1,0x0c,0x57,0x32,0x1f,0x9b,0xab,0x03,0x63, + 0xa9,0x65,0x30,0x78,0xa2,0x65,0xe9,0x32,0x7b,0x26,0x12,0x48,0x70,0xea,0xa3,0x81,0x4f,0x8d,0x3b,0xa4, + 0x47,0x46,0xfe,0xf1,0xc8,0xc6,0x5b,0x8c,0xb2,0xc4,0x86,0xe0,0x76,0x44,0x94,0x19,0x47,0xeb,0x72,0xb1, + 0xb6,0x44,0xd9,0xf7,0x2e,0x7f,0x0c,0xcb,0xc9,0xbd,0xc7,0x8d,0x04,0xaa,0xda,0xf8,0x3b,0xed,0xb1,0x4f, + 0x62,0x1d,0x66,0x5f,0xfc,0x4d,0x5f,0x57,0xeb,0x04,0x08,0xfb,0x87,0x7e,0xf9,0x7b,0x1e,0x2d,0x05,0x12, + 0x8a,0xe8,0x1d,0xb8,0x75,0xe1,0x9e,0xa0,0x94,0x88,0xf3,0x73,0x76,0xa6,0xb0,0x6f,0xfa,0xda,0xce,0xb9, + 0x44,0xde,0x73,0xe9,0xa1,0x91,0x81,0x26,0x67,0x8d,0xe1,0x86,0xdc,0x86,0x8e,0xac,0xaf,0x16,0xdb,0x5c, + 0xd2,0x67,0x04,0xe1,0x59,0xc5,0x95,0x1f,0x72,0x54,0x31,0x10,0x24,0xb8,0xf1,0xce,0xd1,0x36,0x88,0x48, + 0x46,0x88,0x51,0xc1,0x7f,0x96,0x37,0x36,0x01,0xc9,0x50,0x3e,0x63,0x55,0xde,0xcc,0xbc,0x1e,0x97,0x92, + 0x30,0x35,0x09,0x8f,0x99,0x66,0x97,0xc4,0x25,0x25,0xd2,0x94,0x66,0xa9,0xfe,0xea,0xd2,0xbe,0x9b,0xcf, + 0xae,0x6c,0x8a,0xff,0xdd,0x82,0x52,0xcf,0x33,0xd8,0x95,0x3f,0x43,0x95,0xea,0xc2,0x54,0xae,0x6e,0x50, + 0x1e,0xd7,0xc0,0x4b,0xc6,0xb9,0xed,0x95,0x99,0x18,0x75,0x6d,0xbf,0x7d,0xcc,0xf5,0xaa,0x63,0xdb,0x84, + 0xfa,0x68,0xbe,0xd6,0x59,0x47,0xae,0x7f,0xf6,0xfb,0x0f,0x94,0x36,0xd5,0x7b,0x4a,0x7d,0x4a,0xae,0x2b, + 0xf5,0x98,0xfe,0x68,0x03,0xff,0xd1,0x63,0xa2,0x80,0x2c,0xc9,0xf5,0x29,0x09,0x1f,0x27,0xe6,0x35,0x32, + 0x1c,0x2b,0xaf,0xc4,0xbd,0x64,0xf7,0x93,0x17,0x84,0x89,0x38,0x52,0xb6,0xfe,0x2f,0x4b,0xd0,0x81,0x88, + 0x2f,0x8c,0x25,0xb9,0xb7,0x5e,0x1f,0xe3,0xf0,0xa4,0x35,0x38,0x16,0x10,0x78,0x9b,0xdc,0x1b,0x0c,0x96, + 0xe3,0x25,0xed,0x86,0xa7,0x78,0xbc,0x1a,0x5f,0xc5,0x53,0xf5,0x0c,0x8f,0x97,0xe3,0x4b,0xda,0x17,0xbf, + 0x26,0xf7,0xc6,0xd7,0xeb,0xf5,0x22,0x5e,0xa8,0x77,0x48,0xed,0xf1,0x9f,0x39,0x1e,0x1f,0xc7,0x17,0xea, + 0x25,0x15,0xfc,0xb8,0x5e,0xdf,0xc4,0x37,0xea,0x15,0x3d,0x1e,0xad,0xd7,0xe7,0xf1,0xb9,0x7a,0x4e,0x7c, + 0x4b,0x1e,0x7e,0x88,0xc6,0x1f,0x64,0xda,0xe2,0x0f,0x91,0x7a,0x93,0xf0,0x41,0x58,0xb3,0xc2,0x5e,0xbd, + 0x4e,0x9e,0x35,0xe1,0xbb,0x48,0xbd,0x4f,0x1c,0x9c,0xf8,0x9e,0xba,0xd1,0xed,0x1b,0x02,0x49,0x3a,0x50, + 0x52,0xf5,0x2c,0x52,0xfc,0xfb,0x94,0x8e,0xca,0xf7,0x0e,0x34,0xc7,0x21,0x95,0xe0,0x8c,0xb7,0x91,0x7a, + 0x35,0x18,0xbc,0x62,0x4b,0x8b,0x97,0x83,0xc1,0x4b,0xf8,0x33,0x78,0xb5,0xea,0xc0,0xed,0x1a,0x5e,0xeb, + 0xcb,0x92,0x06,0xf6,0x1d,0x6d,0x07,0x67,0x22,0xe5,0x1a,0x35,0x42,0x23,0x99,0x6b,0xf0,0xa9,0x4a,0x87, + 0x56,0x3e,0x43,0xd8,0x23,0x66,0x35,0xdd,0xf3,0x09,0x0b,0xd6,0x4e,0x47,0x1c,0x18,0x49,0x0c,0x13,0x0b, + 0x31,0x4c,0x6c,0xb0,0xc3,0xec,0xbe,0xe9,0xbe,0x87,0x91,0x7a,0x37,0x18,0xbc,0xa3,0xae,0xbf,0x87,0xd9, + 0xd4,0xaf,0x83,0xc1,0xaf,0xe8,0x33,0x46,0x7c,0xac,0x07,0x74,0x2c,0x23,0x56,0xd7,0xad,0x83,0xe4,0xd8, + 0x9f,0x8f,0xb7,0xad,0xe9,0x58,0xaf,0x5f,0xd3,0x39,0xfe,0xb4,0x09,0x9f,0x47,0x63,0xef,0x14,0x7a,0xaf, + 0x9e,0x47,0xf1,0x11,0x8a,0xcf,0xa9,0x31,0x20,0x11,0xe5,0x4d,0x84,0x58,0xe5,0x56,0x7e,0x7f,0xa8,0x1b, + 0x5c,0xd5,0xfb,0xb0,0xed,0x01,0xa6,0x11,0x88,0x13,0x76,0x53,0x77,0x8e,0xfc,0xe6,0xc3,0xd6,0x04,0x87, + 0xc4,0x79,0xba,0x49,0xb4,0x33,0x06,0x5d,0x77,0x5f,0xba,0xf8,0xa3,0xca,0x74,0x26,0x45,0xa4,0x2e,0x09, + 0x10,0x11,0x68,0xf5,0x5a,0xa6,0xa4,0x84,0x87,0x05,0xff,0x2e,0x7b,0xa6,0xa4,0x24,0x1e,0x0a,0x53,0xc2, + 0xa5,0x5a,0x7d,0x3a,0x96,0x29,0xf9,0xd8,0x9a,0x92,0x23,0xf5,0x91,0xa7,0xa4,0x54,0x2b,0x75,0x24,0x53, + 0x72,0x05,0xca,0xac,0xa4,0x37,0x75,0xcd,0x1f,0x1d,0x81,0xce,0xd6,0x86,0xe6,0x1a,0x57,0x96,0x3e,0x3a, + 0xf3,0xde,0xda,0xb8,0xd2,0xa5,0x1b,0x5c,0x59,0xdf,0x8d,0x2b,0x25,0x8a,0xac,0xdc,0x45,0x63,0x51,0xa3, + 0x61,0xa0,0x44,0x1b,0xbb,0xcb,0x0d,0x1b,0x24,0x6d,0x9c,0x54,0x6a,0xc6,0x99,0xab,0x44,0x62,0xc5,0x10, + 0x92,0x84,0xbc,0x25,0x35,0x58,0x6d,0x6a,0x5e,0x0d,0xf2,0x5b,0x9a,0x04,0x1f,0xf7,0x5d,0x52,0xa2,0xe0, + 0xaf,0x57,0xc8,0x22,0x0c,0xa9,0x0b,0x11,0x56,0xac,0x05,0x7b,0x49,0xc6,0x85,0xad,0xdd,0xe2,0xae,0x1b, + 0x4a,0x62,0xcf,0x6e,0x29,0x71,0x8e,0x57,0x83,0xca,0xae,0x65,0x9b,0xcf,0x65,0x9b,0x1f,0x63,0x9b,0x5f, + 0xd1,0xea,0x30,0x42,0x38,0x8f,0xc6,0xe7,0x52,0x57,0x7c,0x1e,0x31,0x56,0x34,0x43,0x6b,0x6f,0x7d,0x1f, + 0x44,0x20,0x42,0xea,0x01,0x18,0x5e,0x83,0x9e,0x74,0x0b,0x43,0x1c,0x04,0xec,0x5a,0x70,0x88,0x03,0x90, + 0x65,0xd4,0x82,0x90,0x71,0x78,0xcd,0x38,0x84,0x21,0x87,0xea,0xbc,0x60,0x43,0x91,0x10,0x1b,0x62,0x31, + 0x18,0x2c,0xf0,0xa6,0xbc,0x4e,0x6a,0x4c,0x72,0x33,0xbe,0xa1,0xed,0x1a,0xa7,0xa1,0x4f,0x10,0x3c,0xf5, + 0x4e,0xe4,0xed,0xe8,0x54,0x34,0x1b,0x72,0x01,0xa3,0xaf,0x5d,0x7e,0x86,0x98,0xb5,0xcc,0x4a,0xb8,0x00, + 0xc8,0x3a,0xc4,0x36,0xcc,0x89,0x11,0x2a,0xd9,0x0b,0x20,0x35,0xa6,0xe2,0x5b,0x81,0x70,0xaa,0x93,0x83, + 0xd3,0x18,0x61,0x70,0xec,0x95,0x7f,0x70,0x86,0xd1,0xf4,0xd3,0x37,0x9e,0x46,0xef,0x57,0x4d,0xaf,0xec, + 0x42,0x7d,0xdf,0xf8,0x18,0xe0,0x1e,0xdf,0x8c,0xec,0x1c,0x47,0x2c,0xe9,0xfd,0xd2,0x3c,0x29,0x67,0x2a, + 0xd7,0x4f,0xdf,0xda,0x92,0x1b,0x75,0xe0,0x55,0xf5,0xb2,0x43,0xc5,0x37,0x9e,0x64,0x6c,0xb1,0x9a,0x37, + 0xf9,0x72,0x9e,0x09,0xbd,0xbe,0x5e,0x77,0x47,0xe6,0x45,0x4e,0x63,0x53,0x17,0x38,0x6f,0x59,0xc7,0x9b, + 0xae,0xef,0x16,0xfc,0x40,0x5c,0x2e,0xae,0xe0,0xc8,0xa3,0x34,0x39,0x27,0xf6,0xef,0x39,0xac,0x80,0xc0, + 0xef,0x2a,0x5c,0xe5,0x34,0xe7,0x8b,0xd9,0x69,0x02,0x52,0x06,0x1f,0x93,0x90,0x78,0x01,0xc1,0x6e,0x42, + 0xfe,0xc4,0x8b,0x20,0x0c,0xae,0x0b,0x74,0x95,0x2e,0xcc,0x8a,0x2a,0x39,0xc7,0xba,0xa9,0x09,0xdc,0xfa, + 0x72,0xe6,0xa6,0xda,0xe9,0xfb,0xad,0x1b,0x28,0x5f,0x35,0xed,0xeb,0x5a,0xba,0xd7,0xf0,0xd9,0xac,0xdd, + 0x9b,0x50,0x0c,0x6b,0x3d,0x3f,0x12,0x1f,0xca,0x44,0x54,0xca,0x71,0xde,0x70,0x59,0x81,0xa8,0xfd,0xb4, + 0xf8,0xd1,0x73,0x05,0x69,0xc4,0x19,0x5a,0x78,0x16,0x27,0x33,0x85,0x11,0x9a,0xf3,0x01,0xb9,0xa3,0x10, + 0x0f,0x72,0xfb,0xcb,0x43,0xf5,0xbe,0xb1,0x19,0x4a,0x0b,0xf2,0x7d,0x7a,0xf3,0x7d,0x8b,0xe9,0xec,0x3a, + 0x3c,0x5c,0xb1,0xbb,0x03,0xa4,0xce,0xa2,0x16,0x0f,0x84,0xcf,0xcc,0x1b,0xc9,0x69,0x14,0x61,0x52,0x8e, + 0x9d,0x34,0x9c,0xe6,0x35,0xdb,0x28,0x4b,0x86,0xaf,0xbe,0x78,0xe2,0xcd,0xc4,0xee,0x1d,0x0e,0x0f,0x22, + 0xa9,0xca,0xba,0xc8,0x77,0x9c,0xc5,0x4f,0xd8,0x9f,0xe6,0x2e,0x99,0x99,0xe7,0x7a,0xe1,0x49,0x45,0x99, + 0x0c,0xd8,0x32,0x8c,0x35,0xab,0x88,0x33,0xbe,0x65,0x12,0x6b,0xdc,0xd6,0xc7,0x54,0xc7,0x3f,0xe1,0x0d, + 0x66,0x5d,0x12,0x7d,0x21,0xe7,0x8f,0x5e,0x03,0x7c,0x05,0xa6,0x8b,0x96,0xda,0x0e,0xa4,0x54,0xb8,0x2b, + 0x2b,0x22,0x04,0x51,0x62,0xf3,0xe6,0x91,0x8e,0xad,0x44,0xe8,0x8f,0x51,0xa1,0xe1,0x27,0x3b,0xde,0x7c, + 0x39,0x7d,0x71,0x8d,0xcb,0x41,0x4e,0xd9,0x9f,0xaf,0x27,0xa6,0xed,0x0f,0x4e,0x92,0xf4,0xe0,0x97,0xe9, + 0xfe,0xc7,0x2c,0x5b,0xee,0xa7,0x73,0x3a,0x2c,0xee,0xe9,0x9b,0x07,0x99,0xbe,0x71,0x81,0xb2,0xc3,0xc0, + 0x15,0x09,0xd4,0x2d,0x77,0x2d,0x6e,0xb6,0x66,0xc7,0xf5,0xd9,0x07,0xe2,0x17,0x1a,0xd8,0x98,0x24,0x62, + 0xe5,0xc0,0x39,0xdf,0x84,0xe9,0x5e,0xd9,0xd6,0x92,0xdf,0xf5,0x69,0x6a,0xf3,0xed,0xe9,0xea,0x99,0x8e, + 0xeb,0xea,0x44,0xdc,0x9a,0x5d,0xbf,0x2b,0x11,0x96,0x08,0xa5,0x09,0x38,0x9f,0x10,0x61,0xcc,0xa1,0x41, + 0xe6,0x39,0x7d,0xfa,0x1e,0xf7,0xc0,0xfb,0x31,0xeb,0xfd,0xe5,0x95,0x0a,0x08,0xc4,0x95,0x75,0xb2,0x91, + 0xda,0xf4,0xd5,0x16,0xb3,0x66,0xbf,0xe0,0x1f,0xbe,0x43,0xad,0x29,0x97,0xf4,0x4a,0x7f,0x81,0xc1,0xaa, + 0xf5,0x3a,0xb7,0x5d,0xc0,0x10,0xa6,0x46,0x03,0x99,0xea,0xae,0xb0,0x60,0x78,0x94,0xba,0x8b,0xea,0x89, + 0xc8,0xfc,0x29,0x3b,0xff,0x98,0x37,0x96,0xff,0x4c,0x02,0xce,0x44,0x40,0xbd,0x30,0xd8,0xab,0xf6,0x82, + 0xe5,0x27,0xc5,0xaa,0xfe,0xe5,0xa7,0x28,0x50,0x3e,0x00,0x1b,0x5e,0x3c,0x09,0x0e,0x6a,0x5f,0x4f,0xff, + 0x5b,0x6b,0xd7,0x35,0xe3,0xb7,0x69,0x7c,0x2f,0x75,0x12,0x7c,0x23,0x15,0x2b,0x5a,0x5a,0x3a,0xc3,0x6c, + 0xa6,0xb8,0x75,0xd7,0x0f,0x1b,0x6f,0xb1,0xb7,0x56,0x50,0x33,0x23,0x7d,0xc8,0xb1,0x02,0x32,0x65,0x8d, + 0x2b,0xe2,0x46,0x19,0x73,0x88,0xd6,0x5d,0xbe,0xdd,0x9b,0x5d,0x95,0x33,0x13,0xb0,0xf7,0x83,0xe8,0x78, + 0xcb,0xda,0x35,0x12,0x8f,0x12,0x86,0xc4,0x39,0x72,0x35,0x91,0x12,0xc8,0xf6,0x83,0xaa,0x9c,0xf8,0x17, + 0xd8,0x7c,0x6b,0x0e,0xb6,0x6d,0xd5,0x3d,0x5b,0xb1,0x10,0xa0,0xde,0x10,0x7e,0x91,0xbb,0x1d,0x39,0xcc, + 0x19,0x7c,0x0f,0x3c,0xcb,0xa7,0x4c,0x5c,0x8b,0x76,0x7d,0xe3,0x26,0x6d,0xce,0x70,0x57,0x95,0x55,0x36, + 0xb3,0x55,0xd2,0x33,0x47,0x4e,0x33,0xfe,0x50,0x2d,0x49,0x91,0x67,0x44,0x3b,0x2a,0x24,0xd4,0xa7,0xbd, + 0x6a,0xa6,0x80,0xcc,0xd5,0xb9,0x1b,0x41,0x44,0xa9,0x03,0x79,0xda,0x58,0xd1,0xa0,0x42,0xd1,0xd7,0x8e, + 0x52,0x35,0x40,0xb8,0x0b,0x6b,0xe7,0x0c,0x6b,0x6d,0x7a,0x87,0xbe,0x4b,0x77,0x0f,0xf3,0x19,0x78,0x52, + 0xe9,0xa6,0x1d,0xdd,0x9b,0xbf,0x82,0x15,0x94,0x18,0xf2,0x70,0xd8,0x83,0x80,0x6f,0xc1,0xa3,0x6a,0x38, + 0xe4,0x16,0x02,0x69,0xeb,0x4c,0x4a,0xda,0xd7,0x25,0x88,0xca,0xb0,0xdf,0xf8,0xc9,0x72,0x10,0xba,0x6f, + 0x4d,0xb4,0xe3,0xca,0x16,0x05,0x7e,0xb7,0xa5,0x8e,0x45,0x76,0x76,0x3f,0x08,0xee,0xb3,0x21,0xf9,0x7d, + 0x1b,0xb0,0xf4,0x3e,0x2d,0xf2,0x76,0x4f,0x81,0xc8,0x6d,0xed,0xf4,0xe2,0x6a,0x55,0x7c,0xc1,0x72,0x77, + 0x82,0x64,0xc4,0xa1,0x59,0xab,0xbc,0x36,0x5d,0xb4,0xc8,0x89,0xba,0xa8,0xb4,0xf9,0x91,0x14,0x29,0xe6, + 0x79,0x91,0xed,0xdb,0x96,0xa5,0xb8,0xa4,0x1e,0xeb,0x44,0xb6,0xa8,0xec,0x5c,0x79,0x43,0x70,0x7c,0x95, + 0xfa,0x1e,0x32,0x59,0x72,0x05,0x87,0x36,0x06,0x48,0xea,0xe9,0x68,0x1b,0x26,0x95,0x67,0xbe,0xcb,0x14, + 0x8d,0x85,0x39,0xae,0xb8,0xa1,0x7d,0x52,0x58,0x01,0xd8,0xa8,0x79,0x54,0x98,0xc8,0x03,0x55,0x02,0xbf, + 0xa5,0x46,0x36,0x8b,0x4a,0xe5,0x59,0xc8,0xa9,0x77,0xa9,0x16,0x57,0x69,0xa9,0xff,0x65,0x5a,0x3f,0xc9, + 0x19,0xe9,0xc1,0xc0,0x55,0x85,0xfe,0x9d,0x4a,0x16,0x8e,0xf5,0xfd,0x40,0xef,0x25,0xca,0x8d,0x1f,0xf6, + 0xde,0xdd,0x97,0xd1,0x55,0x09,0x70,0x14,0x48,0x23,0x61,0x3a,0x8c,0x70,0xdd,0x37,0x0c,0x27,0x70,0x25, + 0x57,0xa4,0x2f,0x87,0x30,0x28,0xe6,0x7d,0x0a,0x0d,0x4f,0xa4,0x5e,0xbb,0xbe,0xf9,0xd9,0xaf,0x39,0x9b, + 0x86,0xf1,0x33,0x07,0x1f,0x60,0x4b,0x66,0x89,0x4a,0x8a,0x03,0x43,0x8c,0x8e,0x0f,0x94,0x56,0x4e,0x37, + 0x8b,0x79,0x20,0xf1,0xcf,0xae,0x11,0xbf,0x53,0x9a,0xf2,0x14,0xd7,0x4c,0xa3,0x4f,0x68,0x5a,0xe6,0x9c, + 0x23,0x85,0x40,0xef,0xdd,0x14,0x93,0xc1,0x80,0xed,0x10,0x5d,0x54,0x4b,0xce,0x55,0x25,0x18,0xe2,0xe0, + 0x1e,0x5b,0xde,0x05,0x6c,0xdf,0x0d,0x5d,0xbe,0x83,0x90,0xc1,0xe0,0x3c,0xb5,0x17,0xde,0x1a,0xf4,0x26, + 0xcc,0x16,0x11,0xdd,0x6c,0xba,0x89,0x58,0x5b,0x31,0x03,0x63,0xe5,0x07,0x94,0xfd,0xb5,0x7f,0xc0,0xbf, + 0xca,0x80,0x0b,0x5d,0x9e,0x96,0x7f,0xd7,0xbf,0x9c,0x71,0x9e,0xb4,0x66,0xef,0x9d,0xcc,0x9e,0x5e,0xa3, + 0x37,0x1c,0xd6,0x81,0x06,0x37,0x3f,0x39,0x3c,0x1d,0xad,0xf4,0x4c,0x5b,0x39,0x9f,0xf5,0xeb,0xda,0x3b, + 0xc4,0x48,0xa6,0x49,0x45,0x0c,0x5f,0x4e,0xfc,0x5d,0x4a,0x3c,0xdd,0x0a,0x32,0x2e,0x15,0x86,0xb3,0x24, + 0x8b,0x5a,0x3e,0x7a,0x88,0xd3,0x63,0x5f,0xb7,0x4c,0x44,0xa7,0x4a,0x7b,0x44,0xc5,0x4b,0x6d,0xdb,0x79, + 0x09,0xcb,0x96,0xf8,0x4a,0x59,0x33,0xc4,0x78,0xb1,0xe1,0x20,0x1b,0xc6,0x76,0x90,0x27,0x40,0xcf,0x47, + 0xc7,0x98,0x2f,0xe5,0x5b,0x77,0xfc,0xd9,0x0d,0x16,0x10,0x62,0x63,0x55,0xab,0xcf,0x4e,0xf5,0x60,0xa0, + 0xe7,0xda,0x78,0x99,0x68,0xb5,0xb5,0x5a,0xaa,0x4b,0x45,0x9d,0xd9,0xb4,0xf8,0xa9,0x9f,0xdd,0x69,0xce, + 0x40,0x9d,0x18,0x4b,0x45,0x82,0xe4,0x20,0xea,0x33,0x5f,0x33,0x76,0xc9,0x32,0xd1,0x2f,0x75,0xc8,0x27, + 0xc3,0xaf,0xb0,0x12,0x97,0xbe,0x4d,0x8a,0x93,0x87,0xa7,0x5a,0x7f,0x64,0x28,0x2e,0x5a,0x0a,0x9d,0x62, + 0x57,0xed,0xb9,0x01,0xea,0x5c,0xd7,0xf7,0xca,0x45,0x00,0x4e,0xc7,0x88,0xe3,0x34,0xcf,0xd3,0x9a,0x72, + 0xcd,0x07,0xaf,0xe4,0x83,0x6a,0x98,0x13,0x4d,0x93,0x12,0xed,0x78,0x98,0xa4,0xae,0x5e,0x95,0x52,0xab, + 0x6c,0x81,0x61,0xb2,0x1f,0x26,0xa9,0xeb,0x08,0x82,0xaf,0x98,0x1a,0x55,0xc5,0xd7,0xe2,0x15,0x1c,0xb3, + 0xa0,0xed,0x48,0xf2,0x6f,0xab,0x92,0xc9,0x67,0x47,0x25,0x61,0x05,0xa6,0xcb,0x98,0x47,0xf1,0x13,0x38, + 0xf4,0x6a,0x3b,0xc9,0xe8,0x79,0x3c,0x6b,0x68,0x5f,0xe8,0xfc,0x5d,0xd3,0x5e,0x35,0x3e,0x37,0x4d,0x74, + 0xfb,0xcc,0x08,0x2b,0x3d,0x7b,0xe7,0x2e,0x33,0x38,0x0e,0x4c,0xb4,0xa7,0xf8,0x36,0x88,0x83,0x12,0x3f, + 0x2e,0xf0,0x83,0xbe,0x6b,0x6f,0x2f,0x81,0xc1,0x5f,0xbe,0x77,0x3f,0x88,0xef,0xef,0x65,0x88,0x17,0xc4, + 0x6e,0xe5,0xb0,0xfb,0x76,0xf7,0x49,0x7b,0x22,0x6f,0x36,0x5c,0x74,0x66,0xd1,0x85,0xa5,0x6a,0xed,0xfd, + 0xa4,0x56,0x92,0x49,0x7c,0xeb,0x26,0xd8,0x0e,0x5c,0x6d,0x2f,0x3a,0x0b,0x4e,0x60,0x5a,0xde,0x16,0xce, + 0x3b,0x9d,0xa8,0xbe,0x8e,0xc4,0x78,0x02,0x2a,0x68,0x26,0x4f,0x03,0x7d,0xf2,0xfd,0x96,0x1a,0xa2,0x59, + 0x1c,0xc7,0x88,0xf6,0xf9,0xbe,0x93,0xc4,0x00,0xea,0x8c,0x7a,0x8d,0x95,0x43,0x40,0x84,0x1e,0xfe,0x94, + 0xc6,0x77,0x95,0x45,0x48,0x1c,0x96,0xd2,0x2b,0x4c,0xdf,0xfe,0xcc,0x21,0x82,0xd2,0xbd,0x84,0x1f,0xd4, + 0x77,0x29,0x6b,0xcd,0x4b,0x63,0xec,0xeb,0x02,0x65,0x67,0x9f,0x52,0x89,0x96,0x52,0x9b,0x40,0xe0,0x5e, + 0x4d,0x23,0xaa,0xe0,0xdb,0x34,0x3c,0x09,0x26,0x4d,0x35,0xa7,0x41,0xb0,0xd5,0x30,0xfd,0xa6,0x73,0xfc, + 0x5d,0x64,0x4d,0x1a,0x9c,0xde,0x6d,0xd3,0xbe,0x3b,0x61,0x92,0xf1,0x0e,0x93,0x78,0x8d,0x5e,0x87,0x01, + 0xcc,0xf4,0xbf,0x27,0x22,0xcc,0x4e,0xd6,0x7a,0x0d,0x5e,0x51,0xcc,0x51,0x6c,0x87,0x8d,0x8b,0xb1,0xb5, + 0x1c,0x0a,0xf3,0x3d,0xc2,0xf2,0xb0,0xf2,0xb8,0x7f,0xbe,0x6a,0x9a,0xb2,0xb8,0x8f,0x69,0x90,0x4a,0x11, + 0x56,0x60,0xaf,0xe4,0x86,0x9b,0xc2,0x54,0x4b,0x69,0xb4,0x08,0x56,0xf5,0x47,0x07,0xfc,0x08,0xdb,0x51, + 0x6a,0x4a,0xbd,0xb8,0x9b,0xa1,0xae,0xe4,0x16,0xd4,0x75,0x58,0x8c,0xf5,0x9a,0xec,0x05,0x26,0x23,0x88, + 0xab,0x31,0x9b,0xcf,0x9a,0x8c,0xc8,0xe5,0x98,0x05,0x64,0x48,0x33,0x6d,0xad,0xd7,0x95,0xa9,0x25,0xee, + 0x6b,0xc6,0x56,0xe4,0x43,0x67,0xe3,0x9d,0xc7,0x1c,0x96,0xe7,0x25,0x1f,0x0f,0x87,0x07,0x91,0x1f,0x93, + 0xdf,0x4c,0xa3,0x0e,0x7f,0x4d,0x84,0x23,0x55,0xa7,0xe1,0xec,0xbb,0xd4,0x85,0x4a,0x0e,0xce,0x3e,0x86, + 0xed,0xa2,0xc4,0x3c,0x74,0x10,0x71,0xc6,0x1b,0xa7,0x9b,0x5a,0x20,0xd5,0x7d,0xea,0x9b,0x87,0x16,0x2d, + 0xc3,0x29,0xbe,0x6b,0x1b,0x11,0x80,0x8d,0xc9,0xaa,0x04,0x93,0x8b,0x03,0x98,0x18,0x72,0x10,0x59,0xbb, + 0x3f,0xa0,0xc5,0x1f,0x57,0x62,0x17,0x15,0xdf,0x3f,0x9b,0xe8,0xe0,0x06,0xf7,0x79,0xda,0x54,0x27,0x36, + 0x73,0x5c,0x74,0xa3,0x35,0x7b,0x08,0xac,0x72,0x7b,0xd8,0xd8,0x1c,0x41,0xbd,0xc1,0x04,0xbb,0xbc,0xbe, + 0xab,0xca,0x49,0x56,0xd7,0xd9,0xd4,0x2c,0x7d,0x5a,0x58,0x2b,0xf3,0x4c,0xfb,0x11,0xec,0xca,0xc3,0x56, + 0xd1,0xd2,0x2f,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x56,0xc1,0xb6,0x61,0xa8,0x17,0x2c,0x04,0xa5,0xd9,0xa5, + 0x86,0x71,0x31,0xbb,0x00,0x58,0x74,0x3e,0xc6,0x6c,0x7b,0xef,0x31,0xed,0xec,0xda,0x2b,0xf0,0xb0,0x53, + 0xe0,0x21,0x7c,0xd4,0x2c,0xbb,0xe6,0x77,0x83,0xc9,0xa1,0xb3,0x79,0xa8,0x6d,0xbf,0x1d,0xc1,0x0b,0x63, + 0xed,0x12,0x41,0xaf,0xbc,0xa9,0xd7,0x53,0x46,0x53,0x4d,0x6b,0xe9,0x8d,0x2f,0x9f,0xf1,0xf0,0xf2,0xd9, + 0xd6,0xe8,0x6a,0x37,0x0d,0x8e,0x00,0xdf,0xed,0x10,0xe0,0x42,0xb8,0xf7,0x71,0x20,0x3d,0x73,0xe4,0xec, + 0x0d,0x0c,0x73,0xb2,0x5e,0x7b,0x94,0x3e,0x61,0xc4,0x79,0x61,0x74,0xfa,0xc1,0x19,0xdb,0x2b,0xef,0x85, + 0x15,0xcf,0x47,0x25,0xb1,0xec,0x5c,0x60,0xf4,0xe0,0x16,0x93,0x24,0xc1,0xd1,0xef,0x70,0xbf,0xb9,0x2e, + 0xb4,0x4d,0x05,0x8d,0x3a,0x46,0x69,0x11,0x82,0xb5,0xd0,0xf3,0x26,0xe0,0xd5,0xb1,0xc6,0xfb,0xda,0x85, + 0x21,0x30,0x3b,0x68,0x17,0xb7,0x99,0x96,0xb4,0x95,0xe1,0x29,0x4e,0xb8,0x87,0x79,0x04,0x87,0x41,0xd0, + 0x35,0x04,0xca,0x92,0xb7,0x30,0x85,0x4d,0x92,0x29,0xc3,0xdb,0xaa,0xa4,0xb1,0xb0,0x75,0xb5,0xcc,0x25, + 0x8f,0x5f,0x26,0xde,0x05,0x80,0xf5,0xc9,0x8f,0xb6,0x68,0xb4,0xcd,0x6e,0x8c,0x51,0x6f,0x3c,0x67,0x7d, + 0x30,0x44,0x61,0x76,0x93,0xd3,0x4e,0xd2,0x6e,0x4f,0x13,0x51,0x16,0xb7,0x66,0x4d,0x37,0xef,0x1a,0x54, + 0xdc,0x15,0x4b,0x67,0x82,0x07,0x67,0x8a,0x6d,0x6c,0xa2,0xa0,0xd9,0x45,0xe8,0x32,0x3c,0xb6,0x07,0xe8, + 0x27,0x7a,0x50,0x24,0x68,0xfd,0x3e,0x26,0x97,0xd6,0x7c,0x2f,0xa0,0xa7,0x56,0xd3,0x61,0xce,0x2f,0xb9, + 0xed,0x47,0xfb,0x12,0xce,0xc6,0x89,0x3e,0xdc,0xf5,0x09,0xc4,0xdb,0x14,0x89,0x9f,0x73,0x92,0x9e,0x32, + 0xce,0x70,0x4e,0xf2,0xfa,0x41,0x43,0x0b,0x4c,0x66,0xb8,0xe7,0x1e,0x92,0x4a,0xbb,0x17,0xf6,0x74,0xd0, + 0x02,0xf6,0x4e,0xd3,0xc5,0x30,0x72,0xee,0xf4,0x62,0x2e,0xb7,0x7d,0x02,0x44,0x84,0x5f,0xd0,0x8c,0x87, + 0xdb,0xdf,0x9b,0xe8,0x7b,0xd1,0x9e,0xc5,0x4b,0x12,0x0f,0x25,0x50,0xe2,0x69,0x6d,0xa7,0xc1,0x7a,0x51, + 0xf8,0x98,0xac,0x85,0x8d,0x24,0x06,0xfb,0x9f,0xda,0x9e,0xad,0xb6,0x7c,0x01,0x43,0x10,0xb0,0x84,0x45, + 0xeb,0x8c,0xab,0x91,0x36,0xe5,0x85,0x8c,0xe1,0x96,0x78,0x71,0x60,0x76,0xe3,0xd0,0x62,0x1d,0x6d,0xed, + 0xf9,0x35,0x0e,0xce,0xca,0xd0,0x1b,0x39,0x7b,0xd5,0xa1,0x8b,0x2f,0xa7,0x7b,0x7b,0xfc,0x5a,0x60,0x2c, + 0xb1,0x2e,0xb0,0x69,0x23,0x5a,0xcf,0x9d,0x60,0x3b,0xfa,0x76,0x6b,0x40,0x18,0xa8,0xa3,0xce,0x42,0x6b, + 0xdc,0xef,0x69,0x15,0xdd,0x9e,0xae,0xc6,0x95,0x9c,0x1f,0x32,0x5b,0x63,0x6d,0x66,0x1b,0xeb,0x63,0x85, + 0xef,0x3b,0x31,0xa2,0x1a,0x7b,0x1b,0x32,0x01,0xc8,0x19,0x51,0xa0,0x81,0xb6,0x53,0x68,0x4c,0xf4,0x42, + 0x47,0x5f,0x64,0x9f,0x96,0x7c,0xb8,0x97,0xe2,0x1f,0x11,0x8d,0x69,0x5b,0x13,0xe3,0x79,0x3e,0x2f,0x27, + 0x1f,0x35,0xf6,0xb0,0x1d,0xa3,0x45,0xf4,0x32,0x37,0x1d,0xa2,0xd9,0x92,0xbb,0xdd,0x7b,0x6a,0x26,0x2d, + 0x14,0x48,0xe8,0x4b,0x55,0x49,0x3f,0x72,0xec,0xde,0x93,0x7d,0xab,0xc3,0x5a,0x68,0x07,0x5f,0x2f,0x8a, + 0x44,0x7c,0x12,0xb0,0xb3,0xaf,0x09,0x78,0xd1,0x77,0x6f,0xd6,0x6d,0x6a,0xc2,0xec,0x6b,0xe9,0xe3,0xbc, + 0x75,0x15,0xf7,0x89,0x44,0xb7,0x38,0x1d,0x81,0x51,0xa6,0x32,0xbb,0x73,0xc4,0xca,0xa6,0xbd,0x71,0x9d, + 0x56,0xb8,0x3b,0xa4,0x14,0x67,0xde,0x03,0x55,0x13,0xd9,0x2d,0x8c,0x20,0x11,0xdf,0x3a,0x24,0xc6,0xfd, + 0xc0,0xf2,0x84,0x9c,0xa8,0x5f,0xe0,0x7e,0xb3,0x17,0xa6,0x82,0x6f,0x09,0xf6,0x85,0x06,0xc2,0xb1,0x64, + 0x69,0x27,0xdf,0xff,0x68,0x8b,0xf8,0xd0,0xc5,0x22,0x41,0x21,0xe9,0x90,0xce,0x98,0xf1,0x7d,0xe6,0x35, + 0xb9,0x15,0x7a,0x40,0x0b,0x26,0xd7,0x12,0xae,0xd4,0x92,0xe3,0x44,0x7b,0x2a,0x75,0xb4,0xb2,0xec,0xc3, + 0x8d,0x72,0x91,0x95,0x26,0xe3,0xba,0xcd,0x32,0x9c,0xda,0x08,0x4f,0x1a,0x75,0xf3,0xc5,0x2a,0x7b,0x49, + 0x05,0xc8,0x8f,0x94,0x16,0x10,0x22,0x05,0xc2,0x44,0x3e,0x5e,0xc4,0x9f,0x26,0x90,0x90,0x00,0x33,0x9d, + 0x49,0x4f,0x9c,0x49,0xbf,0x5e,0x26,0xef,0x54,0x57,0x82,0x5f,0x63,0xa0,0x08,0x29,0xb1,0x64,0x4f,0x48, + 0x64,0xd2,0x93,0x97,0xee,0x71,0xcb,0xc8,0xbd,0x0f,0xb1,0x2b,0xfb,0x3e,0x01,0xf9,0xd2,0x62,0xdc,0x77, + 0xa2,0x28,0x71,0xc0,0x15,0xa5,0xde,0xb7,0x59,0xe1,0xb0,0x13,0xfb,0xe2,0xd2,0xc7,0x7e,0x16,0xb1,0x4f, + 0x61,0xa6,0x51,0x89,0x3e,0x5f,0xb9,0x75,0x7e,0x26,0x16,0x6c,0x6f,0x56,0x98,0x1c,0x3d,0x6f,0x4a,0x7b, + 0xa5,0xea,0x82,0xc6,0x17,0xc1,0x96,0x95,0xa8,0xc3,0xb6,0xac,0xb8,0x33,0x4a,0x61,0x30,0x7d,0x3a,0x41, + 0xed,0x1e,0x1a,0x48,0x33,0x93,0xe3,0x7b,0x46,0x7a,0xe5,0xfd,0x64,0xc5,0xb8,0xbb,0xf5,0x95,0x23,0x45, + 0x84,0x06,0x34,0xa2,0x41,0xdd,0x3d,0xbe,0x88,0x26,0xd8,0xf3,0xcb,0xd9,0x2f,0x5d,0x80,0x57,0x29,0xcc, + 0x5a,0x43,0x2f,0x15,0x57,0x32,0x69,0x81,0xa8,0x24,0xc4,0x67,0x2b,0x62,0x8e,0x5a,0xa1,0x60,0xca,0xbb, + 0xf8,0x9d,0x9d,0x2e,0x62,0xb3,0x19,0x85,0xa6,0x2c,0x8b,0x16,0x49,0xe7,0x62,0x9d,0xb5,0x08,0xca,0x42, + 0x13,0x94,0x85,0x25,0x28,0x8b,0x0e,0x41,0x59,0x74,0x09,0xca,0xa2,0x43,0x50,0x16,0xbd,0x04,0x65,0xf1, + 0x9f,0x13,0x94,0x66,0x40,0x9a,0xa2,0x94,0x97,0x38,0xb8,0x95,0xdd,0x80,0xf9,0x9d,0x15,0xb1,0x57,0x83, + 0x76,0xd6,0x28,0xdc,0xe2,0x44,0xad,0xfa,0xc2,0x96,0x94,0x97,0x4d,0x66,0xc6,0xd4,0xe9,0x19,0xff,0xd9, + 0x0b,0x08,0x23,0x87,0x73,0x0e,0xa2,0x1c,0xb5,0x2e,0xae,0x06,0x76,0x76,0x6f,0x71,0x5f,0x11,0x1c,0x0e, + 0x7c,0xfd,0x2b,0x75,0x75,0xc3,0x94,0x58,0x89,0xfb,0xec,0xeb,0x2e,0xa7,0x4e,0x07,0x7b,0x04,0x90,0xd0, + 0x71,0xd3,0x19,0x72,0xf8,0x39,0x36,0xde,0x93,0x7b,0x99,0x1f,0x19,0x9d,0x86,0xe8,0x1c,0x26,0x6d,0x96, + 0x49,0xda,0x0b,0xda,0x38,0xce,0x86,0x61,0xb7,0x89,0x76,0x77,0xb4,0x89,0x2c,0x63,0x90,0xd7,0x36,0xff, + 0xb3,0x01,0xdd,0x4c,0x24,0xd2,0x03,0x0e,0xff,0x73,0x28,0x71,0x08,0xd9,0x7e,0x4e,0xc3,0x4a,0xc1,0x11, + 0x7f,0x4a,0x13,0xec,0x50,0x13,0x89,0xed,0x36,0x62,0xc3,0xa6,0x79,0x82,0x0f,0x5a,0x74,0x1d,0x09,0x1c, + 0x1d,0xeb,0xb2,0x63,0x27,0xc8,0xee,0xd2,0x3b,0x77,0x30,0xf9,0xad,0x4a,0x85,0xc1,0x6d,0xcf,0x34,0x1c, + 0x49,0x09,0xd1,0x12,0x56,0x4d,0x65,0x9e,0x53,0xde,0x8e,0x1b,0xed,0x7d,0x61,0xa1,0xd3,0xb3,0xda,0x7e, + 0xa0,0xee,0x3d,0x50,0x81,0x26,0xd9,0xb3,0xe1,0x75,0x95,0x2e,0x9f,0x1a,0x9f,0x03,0xf7,0x0a,0x9b,0x09, + 0x9d,0x6b,0xd5,0x9e,0x5e,0x11,0x9b,0xc6,0xe5,0xbc,0x60,0x4b,0xf3,0x9e,0x50,0xff,0x6e,0xae,0x25,0x18, + 0xb9,0x1f,0x90,0xab,0x4c,0x52,0x6f,0x01,0x52,0xcf,0xb3,0x89,0x77,0x75,0x8b,0x5f,0x2a,0xc5,0xfa,0x4b, + 0xd8,0x23,0xf3,0x6e,0x7c,0x5d,0x89,0xaf,0x20,0x34,0x16,0x96,0x86,0x39,0xa0,0x8d,0xdb,0x09,0x23,0xee, + 0xe9,0x16,0x54,0x4f,0x4c,0x2b,0x1b,0x9f,0xb2,0xb2,0xdd,0xc9,0x35,0x3c,0x20,0xae,0x06,0x2e,0x97,0x42, + 0x88,0x4a,0x9f,0x44,0x81,0xf7,0x47,0x9b,0x64,0x29,0x17,0x59,0x1f,0xf2,0x5a,0x01,0x93,0x6b,0x32,0x27, + 0x02,0xc5,0xf8,0x50,0x53,0x8b,0xec,0xb4,0xf4,0x1f,0x57,0xdb,0xf8,0xb5,0xf2,0xea,0x1c,0x46,0xde,0xb5, + 0x72,0x61,0xca,0xf6,0xaf,0x37,0xe7,0xd9,0x91,0x65,0x91,0x62,0x8e,0xd3,0xdb,0x75,0xdd,0x32,0xa6,0xae, + 0xc2,0x73,0xd2,0x98,0xc7,0x9a,0x16,0x8d,0xbf,0xb0,0x49,0x50,0x12,0xdb,0x08,0x80,0x63,0x38,0x87,0x2b, + 0x10,0x83,0x5b,0xe4,0x41,0x25,0xb1,0xa6,0xd9,0x87,0x3a,0x0e,0xce,0xae,0x40,0xe0,0x3f,0x84,0x86,0xa1, + 0x80,0x94,0x9c,0x2b,0x2f,0xbc,0xbd,0x1b,0x4f,0x8b,0xb0,0x2b,0x32,0x91,0x1a,0x22,0xae,0x63,0xa4,0xcd, + 0xb4,0x8d,0xea,0x04,0x82,0xc3,0xf4,0xae,0x43,0x62,0xd2,0x2b,0x37,0xdc,0x0b,0x6b,0xc6,0xdc,0x35,0xa8, + 0x15,0x4f,0xf8,0xb1,0xf2,0x3f,0xb5,0x9a,0x43,0x16,0x0d,0x10,0xda,0xeb,0x51,0x95,0xb5,0x19,0x73,0xcf, + 0x97,0xb6,0xa3,0x93,0xa5,0x73,0xe3,0x0f,0x2e,0x72,0x6e,0x44,0xf4,0x5a,0x19,0xea,0x2f,0xbe,0xbf,0x37, + 0x45,0x88,0x42,0x23,0xfd,0x52,0x81,0xbb,0x59,0xdd,0xa3,0xa6,0x3c,0x27,0xd5,0x56,0xf4,0x0b,0xb7,0xb9, + 0x7f,0x59,0x3d,0x3c,0x78,0xf8,0x8f,0x07,0x17,0x2a,0xf8,0x45,0x1e,0x83,0xa8,0x93,0xf9,0xb5,0xcb,0xfc, + 0xda,0xbf,0x20,0x74,0xa9,0x61,0x01,0xde,0x7b,0x06,0x84,0xb2,0xeb,0x9d,0xe7,0x6e,0x96,0xdd,0x45,0xb1, + 0xb6,0x6f,0xa2,0xd5,0xc8,0xaa,0x0a,0x1a,0x64,0xc2,0xca,0x31,0x9c,0x7d,0x2f,0x7c,0x1f,0x4f,0xaf,0x9f, + 0xe1,0xc7,0x34,0xf9,0x98,0xfe,0x41,0x84,0x4e,0x04,0xc3,0xd5,0xba,0xa7,0x24,0x1b,0xdf,0x7f,0x94,0xee, + 0x5c,0x42,0x09,0x1c,0xfc,0x52,0x04,0x0f,0xbe,0xb9,0x1f,0xdf,0x7f,0x44,0xa5,0x08,0xa7,0xe8,0x77,0xf5, + 0x31,0x75,0xe5,0x9d,0x17,0xce,0xe0,0xff,0x1c,0x1e,0x8c,0x82,0xe8,0x9b,0x03,0x46,0x84,0x57,0x36,0xe4, + 0xdd,0xac,0xca,0xb2,0xdf,0xb3,0x10,0x91,0x96,0x17,0x36,0xd1,0x45,0x15,0x37,0x17,0x81,0xab,0x8b,0x22, + 0x99,0x8b,0x18,0x46,0x59,0x4a,0x31,0x60,0xa3,0x99,0x1b,0xce,0xa1,0xa3,0x59,0x51,0xaf,0x14,0x97,0x70, + 0xea,0x5a,0x05,0x75,0xa8,0x3a,0xef,0xa9,0xf9,0x32,0xad,0xbd,0x6b,0x2f,0xd5,0x59,0x91,0x3c,0xd8,0x0f, + 0x7f,0xb9,0x8e,0x68,0x2d,0xae,0x8b,0x64,0xda,0x1b,0xd2,0xc4,0xae,0xdb,0x99,0x6f,0x52,0xe0,0xdb,0x36, + 0x8d,0x61,0x28,0xf1,0xc3,0x72,0x09,0xcb,0xe9,0x9a,0x58,0x25,0x44,0x60,0x85,0xc9,0xeb,0xf1,0x9d,0x55, + 0xea,0xd8,0x36,0x07,0x51,0xfb,0xc3,0x3d,0xa7,0x77,0xa4,0xcf,0x3f,0x52,0xef,0x7e,0x79,0x12,0x9e,0x3c, + 0xde,0xff,0xf7,0x29,0x7a,0x78,0xf4,0x87,0x3d,0xfc,0x58,0xa8,0x60,0xff,0xde,0x61,0x80,0x6a,0x5f,0x95, + 0xd7,0xa6,0x5a,0xaa,0xeb,0xc3,0xb6,0x4c,0xc6,0x2a,0xe0,0xd5,0xa7,0xb6,0xbe,0xc8,0xc6,0x72,0x51,0x8f, + 0x89,0xaf,0x03,0x51,0xbd,0xcf,0x71,0xd6,0xab,0x7d,0x73,0x99,0x62,0xa0,0xee,0x15,0xc9,0x49,0xe0,0xad, + 0x89,0xe3,0xe1,0x02,0x73,0xe5,0x61,0x70,0xaa,0xde,0xa2,0x94,0xd8,0x5f,0x1e,0x31,0x8c,0x51,0xa6,0x00, + 0x1b,0x55,0xa1,0x33,0xd8,0xa8,0x1b,0x72,0x78,0x31,0xee,0xb6,0xe9,0x3f,0xe8,0xf0,0x94,0xf6,0xae,0x5d, + 0x93,0xf1,0x54,0x22,0x11,0xa3,0x4d,0x79,0xe2,0x3c,0x77,0x47,0x33,0xd2,0xfd,0x37,0xb9,0x41,0x48,0x7c, + 0xce,0xa7,0xd4,0xa9,0xa7,0x45,0x72,0x2b,0xc4,0xc4,0xeb,0x8c,0x08,0x67,0x02,0x35,0x2a,0x78,0x91,0x13, + 0xf3,0xd9,0x77,0xc3,0x6a,0x9d,0xcf,0x61,0x98,0x41,0x74,0x3d,0x41,0xd1,0x74,0xc5,0x93,0x74,0x9c,0x2f, + 0x91,0x60,0xae,0xfb,0xe5,0xcc,0xac,0x82,0x68,0x07,0xf6,0x55,0x78,0xe5,0x36,0x5f,0xc8,0x3d,0xb0,0xec, + 0xbd,0xa1,0x40,0xdd,0xb7,0x12,0xf2,0x8b,0x82,0x06,0x33,0xd5,0xbb,0x8e,0xe8,0x91,0x53,0x65,0x2e,0x7f, + 0xec,0xed,0x48,0x2b,0xdc,0x7d,0xfc,0xa1,0xf0,0x12,0xe0,0xca,0x25,0x29,0x3f,0x14,0x1f,0x8b,0xf2,0xba, + 0xd0,0x95,0x22,0xad,0x13,0x3d,0x3f,0xbe,0x50,0x7d,0xc1,0xf1,0xe3,0x4f,0x85,0xf2,0x2e,0x61,0xc4,0x87, + 0x67,0xf3,0x7c,0x96,0x4d,0x6e,0x26,0xf3,0x0c,0xf7,0x4e,0x53,0x9f,0x8a,0x8d,0x7a,0x46,0x10,0x79,0xf2, + 0x3f,0xbf,0x5c,0x0f,0xef,0x9d,0x3e,0x50,0xbf,0x42,0x56,0x76,0xc6,0x7b,0xeb,0xec,0x8c,0xc8,0xb1,0xdb, + 0x8d,0x7a,0x47,0x49,0x8e,0x4c,0xb5,0x57,0xf8,0x89,0x67,0x8f,0x7a,0xd9,0x9f,0xfb,0xd3,0xcf,0xcf,0x8a, + 0xab,0xbc,0x2a,0x0b,0x7d,0x1f,0xfa,0x6e,0x2b,0x01,0x92,0x3c,0xee,0xa9,0x7a,0x55,0x24,0x2f,0x8b,0xc1, + 0xa0,0x3f,0xb7,0x0d,0xf0,0xea,0x79,0x91,0xbc,0xa3,0xb2,0xda,0xa5,0xa8,0x48,0xaf,0xf2,0x0b,0x70,0x0a, + 0xc3,0x15,0x4d,0xd8,0xe3,0x0b,0xbe,0x70,0xaa,0x55,0xfe,0x4d,0x91,0x3c,0xa7,0xf2,0x0f,0x16,0x75,0x9e, + 0xad,0x09,0xf7,0x4c,0xa9,0x88,0xb6,0x09,0x7b,0x5e,0x44,0xea,0xb5,0x64,0x3f,0xf7,0x3c,0x1a,0x51,0x72, + 0xe7,0xeb,0xe1,0x01,0xb0,0x9b,0x7a,0xbf,0x9d,0x9f,0x4d,0x2f,0xb2,0x07,0x9c,0xf9,0x64,0x3b,0x93,0xe0, + 0xa0,0xa2,0x73,0x0e,0xd9,0x74,0x9a,0x99,0x37,0x5c,0xb9,0x51,0xa8,0x9f,0x74,0x57,0xf2,0xe5,0x25,0xed, + 0xad,0x75,0xbe,0x4c,0xa7,0xf4,0xa7,0xa4,0x3f,0x65,0xed,0xba,0x04,0xa7,0xf6,0xb2,0xd6,0x9f,0xfc,0x58, + 0x24,0x21,0x7f,0x33,0xb9,0xac,0x88,0x44,0xf9,0xe5,0xc1,0x2f,0xd3,0x3d,0xaf,0xf7,0xb7,0x9b,0x21,0xdf, + 0x34,0x1c,0xa9,0x1f,0xa0,0xc4,0x06,0x55,0xf5,0xae,0xe0,0x28,0x9b,0xc0,0xca,0x2f,0xd8,0x1e,0xa2,0xff, + 0x5a,0xe6,0x17,0x84,0x4f,0x74,0x8c,0x86,0x40,0xdd,0xe2,0x5a,0x67,0x8f,0x12,0x46,0x65,0x07,0x1b,0xc2, + 0x2d,0x7a,0x96,0xb7,0x63,0x02,0xa2,0x07,0xfb,0xf6,0x7b,0x86,0xfa,0x17,0x45,0xe4,0xb9,0x9d,0xa3,0xfd, + 0xdf,0x0b,0xf5,0x7d,0xa1,0x7e,0xf3,0x50,0x50,0x87,0x16,0xa0,0x31,0xfe,0x0e,0xc3,0x9a,0xdf,0xa9,0x3d, + 0x2c,0x6a,0x1f,0x0c,0x5d,0xcc,0xcb,0xf3,0x74,0x0e,0x9a,0x94,0x11,0x15,0xe6,0x45,0x92,0x80,0xfb,0xc1, + 0x0b,0x0e,0xb3,0xe2,0x6a,0xf8,0xe3,0x0f,0xcf,0xce,0x9e,0xbd,0xf9,0x31,0x52,0xbf,0x13,0x2c,0x7f,0xd7, + 0x02,0x91,0xb3,0x33,0x64,0x3e,0x7d,0xf6,0xe3,0xf1,0xdb,0xb7,0xaf,0x3e,0x9c,0x7d,0xfb,0xea,0xed,0x93, + 0xc7,0xaf,0xce,0x5e,0xbc,0x7d,0xfb,0xfd,0xd9,0x99,0xfa,0xb6,0x1f,0x70,0x3f,0xdc,0x2c,0xce,0x4b,0x6a, + 0xf4,0x63,0x28,0x4f,0x51,0x7f,0xdf,0xf4,0xf5,0xcc,0x28,0xd7,0xb9,0xa9,0x39,0x1a,0x7d,0x7f,0x47,0xcd, + 0x19,0x17,0xa7,0x9f,0x68,0xfc,0xa1,0x3d,0xeb,0x1e,0xff,0xad,0x83,0xe9,0xe3,0x92,0xed,0x1e,0x84,0x61, + 0x43,0x6c,0xb7,0x8f,0xbf,0x1e,0x4c,0xbf,0xcb,0x41,0x5b,0x74,0x55,0x50,0x76,0x2a,0xff,0x1b,0x5a,0xd6, + 0xd6,0x37,0x5e,0x41,0xac,0x7f,0xab,0x2c,0x21,0x8b,0xb4,0xf2,0x17,0xf2,0xb3,0x1d,0x54,0xd9,0x46,0x9b, + 0x1a,0xfc,0x5c,0x24,0x17,0xea,0xdf,0x60,0x08,0xfe,0x55,0x6c,0x7d,0x9e,0x4f,0x93,0x7f,0x13,0xdd,0xa6, + 0xaf,0x85,0x5c,0x9d,0x43,0x8d,0xbf,0x19,0xfd,0xab,0x68,0xf7,0xf1,0xc3,0xea,0xbc,0xa7,0x9b,0x54,0x5a, + 0xc7,0x1b,0xa4,0xe6,0x5a,0x9f,0x88,0x2b,0x64,0xf7,0xab,0x55,0x68,0xbf,0x53,0x5b,0x9f,0xc8,0xa5,0xe0, + 0x7e,0xff,0xbc,0x3b,0xc3,0xed,0x23,0x3a,0xf3,0x34,0x5b,0x8a,0xbc,0xbd,0x53,0x43,0x51,0x36,0x44,0x58, + 0xf7,0xdf,0x0b,0xe8,0x3a,0x6c,0x05,0xae,0x6c,0x27,0x95,0x75,0xed,0xa4,0xf8,0xe2,0xfb,0x95,0xbd,0x25, + 0xd0,0x36,0xcc,0x86,0xfb,0x3c,0x9d,0xff,0x2c,0x10,0x19,0x3a,0xab,0x3a,0x47,0xbe,0x33,0xca,0xd2,0xd3, + 0x03,0x67,0x1e,0x7d,0xa1,0x27,0x5f,0x67,0xd5,0xbd,0xcf,0x53,0xdf,0xd4,0xc9,0x97,0x62,0xe9,0xbb,0x3d, + 0xb3,0xf9,0xc2,0x5c,0xec,0x59,0xd4,0xe6,0x46,0x12,0xf9,0x4a,0xdf,0x9e,0x95,0xca,0xab,0xbb,0x4e,0xcb, + 0x2f,0xe4,0xae,0xd5,0x6a,0xa7,0x9a,0x3b,0x30,0xfd,0x54,0x36,0x63,0x84,0xc1,0x31,0xa8,0x3c,0xdd,0x44, + 0xdb,0xf0,0xd6,0x5c,0xe2,0xb9,0x65,0xe2,0xdc,0xaa,0x47,0x5f,0x47,0xea,0x27,0x55,0x29,0x1c,0x38,0xf4, + 0x3d,0xa4,0xf6,0x8a,0x58,0x9b,0xe0,0x3c,0xcb,0x58,0xab,0x22,0x89,0x26,0x02,0xbb,0x2b,0x76,0x34,0xa7, + 0x46,0xa7,0x5e,0x02,0xdf,0x2a,0x6b,0x5e,0x5b,0xe1,0xcc,0x6b,0x2f,0x8d,0x6f,0xd3,0xf3,0x7b,0xb3,0x1d, + 0x0f,0x1d,0xa6,0x46,0xaa,0xa9,0x92,0x5b,0x5e,0x8a,0x18,0xe1,0xfc,0x66,0xf9,0xc5,0x8a,0x6f,0x64,0x8f, + 0x81,0x74,0x47,0x8d,0x0e,0x59,0x02,0xeb,0xdf,0x1e,0xcc,0xd9,0x3f,0x2d,0x1b,0xd5,0x87,0xe6,0x89,0xf2, + 0x09,0xb3,0xca,0x41,0x29,0x35,0xac,0xf5,0x7a,0x9d,0x0b,0x57,0x0c,0x36,0xe6,0xeb,0x39,0x38,0x02,0x8b, + 0xb0,0x59,0x72,0x21,0x8e,0x33,0xa9,0xe3,0x55,0x47,0x54,0x1e,0x6f,0xd2,0x68,0xa8,0x1b,0x55,0x55,0x49, + 0xe7,0x02,0x21,0x95,0x57,0x1d,0xd4,0x50,0x51,0xe3,0x27,0x01,0xf6,0x6c,0x80,0xe8,0xdd,0x4b,0xcf,0x5e, + 0x43,0xc7,0x7b,0x43,0x0a,0xc7,0x2f,0xc3,0x43,0x09,0xd7,0xb6,0xa0,0x82,0x73,0x41,0x9d,0xc1,0x8c,0xa3, + 0xc7,0x9c,0x4f,0x1b,0x03,0x56,0x30,0x23,0x38,0x0e,0xf3,0x4a,0x65,0xfd,0xb1,0xc0,0x4f,0x70,0x21,0x9a, + 0x0d,0x6d,0x64,0x65,0x12,0xfb,0xfb,0xa3,0x88,0xef,0xf2,0xb5,0x59,0xd6,0x26,0x1d,0x41,0xf1,0xb5,0x9b, + 0x2b,0x66,0x1c,0x5e,0x24,0xfa,0x1e,0x72,0x09,0x7e,0x31,0xd2,0x11,0x3a,0x33,0x89,0xd0,0x29,0xc3,0x8a, + 0xf9,0xd1,0x0c,0x26,0x46,0x68,0x7a,0x17,0x30,0xd3,0x0c,0x0d,0xc9,0x1a,0x11,0x3c,0xb4,0xa8,0x3c,0x87, + 0x3c,0xa6,0x3c,0xe7,0x33,0xce,0x5c,0x04,0xae,0x4a,0xe0,0x25,0x8d,0x59,0x60,0x4f,0x05,0xce,0x43,0x8c, + 0xb2,0xed,0xd4,0x12,0x8c,0x78,0x5c,0x0f,0xd3,0x82,0x34,0x0d,0xf4,0x29,0x41,0x58,0x7d,0x59,0xae,0xe6, + 0x53,0xda,0xab,0x34,0x83,0x0d,0x60,0x4b,0xd5,0xd5,0x36,0x22,0x95,0xf0,0x2a,0x06,0x57,0x64,0x4b,0xb1, + 0x92,0xd0,0xf8,0xe1,0x6a,0xc1,0x8e,0xc6,0x84,0xad,0x8e,0x43,0xb9,0x28,0x9a,0x86,0x1e,0xe8,0xcb,0xa6, + 0xb7,0x22,0xa3,0x84,0xe1,0xaf,0x6d,0x89,0x90,0xc4,0x60,0xb4,0x94,0x64,0xd2,0x6c,0xe2,0x6e,0xb6,0x77, + 0x6b,0x74,0xaf,0x46,0x48,0x3b,0xfc,0x62,0x5d,0x8e,0x45,0xdb,0x83,0xb0,0xd5,0x44,0x9b,0x84,0x80,0x30, + 0x95,0x56,0xfa,0x52,0xdf,0xd6,0xdc,0x65,0x08,0x07,0x8a,0xd4,0xeb,0x74,0xfe,0x11,0x07,0xc4,0xa8,0xf6, + 0x76,0x01,0xa7,0xde,0x71,0x69,0x96,0x2f,0x29,0xcf,0x22,0x2d,0x63,0x68,0x7c,0x19,0xc3,0x3d,0xf4,0x1c, + 0x01,0xe1,0x09,0x59,0xd3,0x0f,0xf5,0x45,0xb5,0x2a,0xf7,0x3b,0x72,0xd7,0xcd,0x5c,0x7d,0xb8,0xff,0xb1, + 0x5c,0xc7,0x25,0xb7,0x1f,0x4f,0x2a,0x5c,0x83,0xd5,0xcb,0xca,0x8c,0x26,0x12,0x98,0xe5,0x0e,0xa6,0x6f, + 0xa7,0x18,0xff,0xaa,0x53,0xe2,0xc6,0xf7,0x7b,0xb5,0x14,0x48,0x33,0xce,0xe2,0x5f,0x45,0x8a,0x43,0x5c, + 0x5c,0xef,0xb6,0x9a,0x60,0x43,0x25,0xef,0x88,0x00,0xbc,0x77,0x77,0x81,0xbd,0xa0,0x0e,0x4e,0x93,0x97, + 0x54,0x88,0x7a,0xc4,0x54,0xe8,0xd6,0xa1,0x24,0xba,0x62,0xc2,0x2b,0x3f,0xb2,0xf9,0xb4,0xbd,0x4b,0xaf, + 0x31,0x49,0x8d,0x4d,0xb2,0xf6,0x6d,0x3b,0x6d,0xa4,0x91,0xad,0xd7,0x3d,0xe1,0xf3,0x1b,0x6d,0xc6,0x48, + 0xe4,0xed,0x15,0x6c,0xea,0xa2,0xb6,0xbf,0x48,0x63,0x24,0x9f,0xf0,0x16,0x81,0x52,0x04,0x4e,0x23,0x25, + 0x31,0x20,0xdd,0x0b,0xff,0x58,0x8f,0x78,0x52,0x9e,0x46,0x7c,0x87,0x52,0x52,0x8e,0x4b,0xe3,0xf4,0x5e, + 0x47,0x9d,0x1b,0xf1,0xea,0x68,0x4c,0x9c,0x5c,0x7d,0x6a,0x77,0xec,0x06,0xe3,0x96,0x70,0xa7,0xf4,0xb0, + 0xc8,0x9a,0xcb,0x72,0xca,0x8f,0x72,0xdd,0x35,0x9e,0x26,0x3a,0xda,0x41,0xff,0xc4,0x6c,0x0f,0xa7,0xef, + 0xda,0x00,0x43,0x30,0xf3,0x30,0x55,0x03,0x13,0xc9,0x9c,0x2d,0x1e,0x4c,0xfb,0x57,0xc4,0xd2,0x24,0xbf, + 0x8a,0xba,0xb4,0x52,0xab,0x4a,0xcd,0xba,0xca,0xda,0x2e,0xcd,0x0d,0x08,0x20,0x9c,0x3d,0xc5,0xe5,0x56, + 0xc4,0xfb,0xe2,0x5c,0xe3,0x38,0x72,0x6c,0x3e,0xd3,0x43,0xb3,0x12,0x95,0x67,0x03,0x8a,0x83,0x78,0xf5, + 0xdf,0xa3,0x68,0xd5,0x22,0x0b,0xfd,0xbc,0xf0,0x07,0x44,0x14,0x37,0x86,0x7c,0xae,0x62,0xeb,0x56,0xf8, + 0x9a,0xc8,0xf7,0xf4,0x22,0x3b,0xba,0x4c,0x8b,0x22,0x9b,0xaf,0xd7,0xbb,0x1f,0xc3,0x76,0x12,0xe8,0x6e, + 0x73,0x47,0x53,0x3b,0x87,0xd0,0x5a,0xdd,0x54,0x2b,0x9c,0xc1,0x7c,0x6d,0x53,0x3b,0xd7,0xca,0x99,0xc2, + 0x9e,0xfe,0x19,0x07,0xc0,0x1f,0xe0,0xec,0xe7,0x6c,0x4b,0xae,0x2a,0x46,0x7d,0xed,0x8a,0xd4,0xa2,0x4a, + 0xae,0x68,0x9a,0xe9,0x30,0x7a,0x38,0xd2,0x0f,0x87,0x43,0x70,0xa8,0x5c,0x2a,0xf9,0x41,0xb5,0xab,0x5f, + 0xa0,0x48,0xdd,0xe8,0x4a,0x20,0xec,0xd9,0xdc,0x31,0xa9,0x84,0xb3,0x17,0x79,0xcd,0xf3,0xa9,0x1f,0xb5, + 0x85,0xef,0x45,0x95,0xe8,0x04,0x73,0x11,0x30,0x91,0xd2,0xf3,0x56,0x2b,0x17,0x95,0xdc,0xaa,0xfc,0x43, + 0x44,0x3c,0x65,0xcb,0xa9,0xf1,0xc2,0x84,0x4d,0xa6,0x0f,0x56,0x15,0x03,0xc5,0x4d,0xa5,0xce,0x65,0x68, + 0xc4,0x8c,0x9d,0x55,0x1d,0x41,0x93,0x16,0xa7,0x0e,0x02,0x1b,0x90,0x9a,0x85,0x57,0x84,0xa1,0x82,0xff, + 0xc7,0x56,0xeb,0x19,0xc0,0xc5,0xca,0xae,0xe2,0x2c,0xf2,0x0a,0x55,0x08,0x77,0x2b,0x85,0x8a,0xbb,0x0a, + 0x19,0x5b,0x3b,0x56,0xc7,0x67,0x49,0xd5,0x2a,0xa7,0x60,0x18,0x01,0xc1,0xe6,0x56,0xdc,0xc0,0x86,0xd9, + 0xcf,0x4a,0x6e,0xa3,0x3a,0x66,0x48,0xfd,0xc8,0x7f,0x8f,0x38,0x98,0xd4,0x07,0x86,0xda,0x4f,0xfc,0xf7, + 0x31,0xce,0x8e,0x7b,0xf8,0xf3,0xb6,0x8f,0x2e,0x36,0xe7,0xdc,0x02,0xf1,0xdf,0xd9,0x33,0xe2,0x8c,0xb1, + 0x15,0xd1,0x62,0x72,0x8e,0xb9,0x04,0x63,0x33,0xcc,0xc9,0xd5,0x38,0xd4,0x67,0x22,0x1d,0x8a,0xbb,0xbb, + 0x15,0x3f,0xc8,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0x92,0x10,0x0f,0x8d,0x93,0xf0,0xa0,0x19,0x1a,0xa2, + 0xfc,0x38,0x09,0x0f,0xfa,0x40,0xe2,0xca,0x5c,0x1d,0xee,0x53,0xef,0x0b,0x4d,0x65,0x4e,0xce,0x0d,0x95, + 0x4e,0x6c,0xd2,0xde,0xde,0x3d,0xdd,0x90,0xc4,0x7a,0xb3,0xd4,0xeb,0x34,0xa7,0x73,0xdf,0xd5,0x63,0x8f, + 0x71,0xb0,0x52,0x9a,0x98,0xcf,0xae,0x9f,0xfa,0xef,0x94,0xf9,0x92,0x10,0x95,0x06,0x08,0xaf,0x48,0x37, + 0xd5,0x69,0x10,0x20,0x6e,0xef,0x89,0xa0,0xd0,0x8c,0xb9,0x1c,0xd1,0x20,0x0d,0xc6,0x12,0x87,0xfe,0x6b, + 0xc7,0xe7,0x67,0xf7,0x59,0x21,0x62,0x0b,0x03,0xe6,0x70,0x58,0xd3,0x81,0x58,0x86,0x81,0xbb,0xe2,0xb2, + 0xe7,0xc0,0xec,0x39,0x84,0x5b,0xe8,0x73,0x94,0x25,0xfa,0x2c,0x76,0x77,0x4f,0x6d,0xd8,0xf5,0xca,0xeb, + 0x0f,0xee,0xff,0xeb,0xeb,0x5d,0x04,0xc7,0x7d,0xe5,0x51,0x42,0x76,0x2a,0x8d,0x89,0x99,0xf9,0x0c,0xe1, + 0x71,0xde,0xfa,0x27,0x7d,0x87,0x3e,0x97,0x4f,0x95,0xc7,0x38,0xfe,0x53,0xc7,0x1a,0xb2,0x49,0x91,0xc7, + 0xd2,0xc9,0x65,0xd5,0x0c,0xa5,0x89,0x06,0x50,0x0e,0xeb,0xd7,0x24,0x5e,0x3f,0xf5,0x55,0x74,0xca,0x8a, + 0x56,0x8c,0x31,0xb8,0x81,0xa0,0xa8,0xb9,0xac,0xca,0x6b,0x3a,0x40,0x9e,0xb0,0x56,0xfb,0xbe,0x7c,0xb6, + 0x43,0x53,0xb7,0xa3,0x61,0x7a,0x07,0x11,0x73,0xdb,0xcb,0x09,0x8b,0x94,0x68,0x43,0xf8,0x88,0x2a,0xbf, + 0xb9,0xb5,0x70,0x39,0x18,0xfc,0x1e,0xb6,0xba,0x88,0xfe,0x97,0xcb,0x50,0x4f,0x0f,0x24,0x00,0xc5,0x6a, + 0x09,0x58,0x72,0xd1,0xfa,0xe8,0x18,0x69,0xcd,0x89,0x70,0xc8,0x3d,0x0e,0x3b,0x19,0x41,0xf1,0xa8,0x0d, + 0x6c,0x90,0x59,0x84,0x30,0x89,0x0b,0x3b,0xe9,0x12,0x95,0xac,0x05,0xbd,0x86,0xd5,0xf7,0x41,0xd8,0x7e, + 0x6f,0xa4,0x04,0xb2,0x71,0xa3,0x4e,0x97,0xbc,0x7e,0x7f,0x86,0x3d,0xc7,0x96,0x31,0x10,0x96,0x81,0x2f, + 0xd0,0xfd,0xb6,0x99,0x60,0x31,0xfa,0xfa,0x4f,0xe3,0xc2,0x65,0x0d,0x4e,0xea,0xa0,0xc5,0x03,0xda,0x35, + 0xc3,0x75,0x77,0xe4,0xef,0xbe,0x76,0x4d,0x5b,0xbb,0xb0,0x93,0x20,0xd2,0x97,0x30,0x52,0xae,0xc2,0xda, + 0xdb,0xe9,0xfe,0x44,0xb5,0xf7,0x7c,0xd1,0x9e,0x44,0x13,0x01,0xb3,0x33,0x43,0x22,0x71,0xd8,0x92,0xce, + 0xf0,0x26,0xf0,0x90,0xcc,0xae,0xde,0x0b,0xc0,0x52,0x92,0x5e,0xad,0xa8,0x70,0x7c,0xc7,0x62,0xeb,0x28, + 0xd7,0x49,0x72,0x84,0x0b,0xa9,0x19,0x6e,0xf9,0x09,0xa8,0xeb,0x53,0xcb,0xf4,0xef,0xb8,0xb2,0xd6,0x88, + 0xa3,0xe2,0x9b,0xc7,0xd5,0x60,0x70,0x5c,0xf1,0x05,0x6c,0xd3,0x6f,0xb8,0xa6,0xa8,0xa0,0x05,0xa1,0x42, + 0x3a,0xb6,0x75,0xb1,0x77,0xa8,0x0e,0x20,0xc3,0xe1,0x83,0xee,0xd8,0xdc,0x93,0x19,0x8d,0x3e,0x60,0x97, + 0xe3,0x64,0x38,0x50,0x2f,0x42,0xc4,0x48,0x04,0x16,0x10,0x59,0x4d,0x6b,0xbc,0xd4,0x6d,0x7f,0xb0,0x30, + 0x56,0x77,0x98,0xd5,0xc4,0x50,0x71,0xdb,0x9e,0x6d,0x8d,0x76,0xb5,0x1c,0x8d,0x91,0xc4,0x7a,0x9d,0xf3, + 0x45,0x78,0x76,0xeb,0xb4,0xa0,0x45,0x7c,0x40,0x4d,0xad,0x2d,0xfe,0x4a,0xb6,0x6c,0xa5,0x37,0xdd,0xe4, + 0x5c,0xf6,0xb7,0xde,0xfe,0x6c,0xeb,0xea,0x44,0xa8,0x4f,0xc2,0xcc,0x30,0x61,0xea,0xbe,0xb1,0xd4,0xf8, + 0x53,0x3b,0x5b,0x2e,0x5e,0xbf,0xb3,0x85,0x4d,0x67,0x3a,0x32,0x74,0xb1,0x0f,0x00,0x3c,0x84,0xc8,0x13, + 0xe1,0x9f,0x38,0x10,0x63,0xb4,0x6a,0xd9,0x16,0xa1,0xfd,0xd1,0x0e,0xf3,0xb7,0x96,0xfe,0x3c,0xec,0x2e, + 0x55,0x43,0x70,0x3f,0x2d,0xaf,0x3f,0xbb,0x5e,0x7a,0x70,0x08,0x23,0xf4,0x24,0x23,0x9a,0xef,0xa9,0xd1, + 0x1d,0xad,0xd7,0xab,0xd0,0x66,0x9a,0x23,0x5e,0x98,0xd7,0xd1,0x5f,0xea,0x5c,0x67,0x6f,0x8f,0x5a,0x07, + 0xf1,0xe1,0x46,0x78,0xb6,0xa7,0x44,0x98,0x64,0xc5,0x6a,0x91,0x19,0x59,0x8e,0xea,0xc8,0x76,0xa0,0xb0, + 0x89,0x2f,0x54,0x8d,0xbf,0x1b,0xf5,0x8c,0x8a,0x63,0x87,0x81,0x31,0x1f,0x7d,0xc8,0xc2,0x4f,0x9e,0xb4, + 0x55,0xb8,0xfc,0x5f,0xa9,0x04,0x82,0x0a,0xf8,0x3c,0xb3,0xa6,0x68,0xf8,0xf8,0xeb,0x8f,0x19,0xd0,0x13, + 0x14,0x20,0xaf,0xed,0x94,0x44,0x7d,0x61,0x03,0x92,0x56,0x03,0xee,0xb2,0xef,0xe4,0xf6,0x8c,0xe5,0x3c, + 0x52,0x1a,0x23,0xd0,0xbe,0xcc,0xd7,0x95,0xd2,0x0e,0xfb,0x3f,0x16,0xac,0x92,0x36,0xaf,0xcf,0xe6,0x8b, + 0xb8,0x12,0x8e,0x8d,0x48,0xcd,0x6c,0x86,0xf7,0x5c,0xde,0x37,0xec,0x2e,0xca,0x0e,0xe6,0x6d,0xfb,0x1e, + 0x17,0x23,0x44,0x2e,0xae,0xd1,0x86,0x3d,0xc9,0x44,0x3f,0xa8,0xba,0x6b,0xcb,0x43,0x59,0x9d,0x14,0xc2, + 0x8c,0x90,0x54,0x6d,0xfb,0xef,0x23,0xa2,0x01,0xb1,0x6e,0xf0,0xb3,0x8b,0x86,0xf7,0x58,0x11,0x19,0x82, + 0x54,0xcd,0xa8,0x63,0x5a,0x50,0xe7,0x5d,0xd8,0xa4,0xfb,0x87,0xd0,0x00,0x8f,0xe7,0x16,0x17,0x20,0x82, + 0xe8,0xaf,0x00,0xca,0x8c,0x43,0x39,0x84,0xa9,0x4a,0x69,0x13,0x29,0xf3,0x1e,0xb7,0x99,0x2d,0xe3,0x92, 0xb7,0x15,0x68,0x61,0xb7,0x8f,0x34,0x95,0xfa,0x77,0x77,0xc3,0x1c,0x6b,0x67,0x22,0x27,0x0c,0xcf,0x64, 0xe8,0x47,0x5a,0x5c,0xbb,0x5e,0x9b,0xf0,0xac,0xce,0xb4,0x8f,0xcb,0x7b,0xef,0x7c,0xd3,0x82,0xb6,0x8b, 0x74,0xf5,0x78,0xab,0x94,0x54,0x44,0xe9,0x4a,0x78,0x2e,0x7e,0x3c,0xd3,0x97,0x72,0x87,0xe6,0xd1,0x88, @@ -1083,7 +1083,7 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xcf,0xc6,0xbd,0xb9,0x31,0x5f,0xc2,0x2d,0x02,0x94,0xd4,0xc0,0xb8,0xc5,0x56,0x2a,0x26,0x97,0xb7,0x65, 0x35,0x6c,0x09,0xa9,0x8c,0x79,0xb0,0x30,0xef,0x08,0x8a,0x83,0x72,0xec,0x72,0xe2,0x0d,0x89,0xd2,0xa0, 0x62,0x41,0x78,0x6c,0x44,0x42,0x1c,0x4d,0x1e,0xd9,0xad,0x3b,0x71,0x17,0x61,0xd7,0x27,0x13,0xe2,0xf9, - 0x71,0x47,0xfb,0xeb,0x70,0xae,0xba,0x6d,0xcb,0x8d,0x7f,0xdb,0xed,0x1f,0x6c,0x95,0x7c,0xca,0xe2,0xf3, + 0x71,0x47,0xfb,0x9b,0x70,0xae,0xba,0x6d,0xcb,0x8d,0x7f,0xdb,0xed,0x1f,0x6c,0x95,0x7c,0xca,0xe2,0xf3, 0x8d,0xb3,0x6e,0x5e,0x25,0xdb,0x13,0xec,0xe2,0x56,0x7c,0x26,0x0f,0x17,0x16,0xc9,0x3d,0x96,0xab,0x68, 0x93,0xf2,0xc4,0xdf,0x83,0x65,0x03,0x4d,0x24,0xee,0x5d,0xf4,0x42,0x79,0x53,0x06,0x4d,0xc3,0x44,0x2b, 0xca,0xd9,0x8b,0xbe,0xe9,0xd9,0xb6,0x3d,0x5b,0x59,0x79,0x61,0x36,0xe8,0xd9,0xae,0x02,0x20,0xce,0x45, @@ -1091,115 +1091,115 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xbf,0x62,0xf6,0x38,0x3a,0x83,0x55,0xf8,0xb3,0x81,0x5b,0x7b,0x4b,0xf1,0xc5,0xd2,0xee,0x9b,0x31,0xdf, 0xe3,0x54,0xe1,0xda,0x68,0x8b,0x4f,0x89,0xd1,0x93,0x23,0xbd,0x8a,0xa2,0xb8,0x46,0x85,0xbb,0x07,0x3a, 0x18,0x55,0xb5,0x51,0xda,0x32,0xe0,0x8e,0xae,0x77,0xbb,0xdb,0xb4,0xb0,0x1f,0xbb,0x8d,0xb6,0xfb,0x63, - 0xe5,0x95,0x62,0xf5,0x2a,0xa8,0x35,0x2c,0xa4,0x9b,0x62,0xf9,0xf0,0xa2,0x70,0x3c,0x57,0x89,0x18,0xb1, + 0xe5,0x95,0x62,0xf5,0x2a,0xa8,0x35,0x2c,0xa4,0x9b,0x62,0xf9,0xf0,0xb2,0x70,0x3c,0x57,0x89,0x18,0xb1, 0x4c,0xef,0xd9,0x1e,0x47,0x08,0xa8,0xe9,0xf5,0xff,0x60,0xe4,0xc9,0x34,0x47,0x15,0x31,0x2e,0xf7,0xba, 0x77,0xb6,0x43,0xb2,0x89,0x1b,0x40,0x6d,0x06,0x6e,0x7a,0x1c,0x4d,0xd0,0x83,0x96,0x85,0x83,0x84,0xdd, - 0xa7,0xd1,0xc7,0x8d,0x77,0x4d,0x33,0x90,0xcf,0x87,0xaa,0x25,0xaa,0x7c,0x4b,0x7b,0xf6,0x45,0x95,0x1c, - 0xaa,0x97,0x55,0xf2,0x50,0x3d,0x47,0xc3,0x4f,0x7d,0xed,0x1d,0xdf,0xca,0xbd,0x2d,0xfb,0x3d,0x5b,0x11, - 0x6b,0xf9,0xbc,0x32,0x1a,0x38,0x9a,0xaa,0x9f,0x56,0x3c,0x4c,0x89,0x18,0xe7,0x21,0xff,0x71,0x1f,0x92, - 0x73,0xb0,0xde,0x91,0x5c,0x31,0x10,0x19,0xf1,0x8c,0x35,0xef,0xe4,0x30,0x24,0x3e,0x46,0x1a,0x99,0x88, - 0x11,0x94,0x2e,0x0f,0xaa,0xe8,0xa2,0x2c,0x9b,0x40,0x47,0x89,0xfb,0x9c,0x5e,0x90,0x23,0x27,0x0c,0x92, - 0xe5,0x49,0x8b,0xd1,0x7a,0xae,0x7f,0xf4,0xb6,0x45,0x92,0xb7,0xb6,0xc8,0xd6,0x2e,0xcd,0xbd,0x5d,0x53, - 0x6c,0xa3,0x3f,0xbb,0x8b,0x90,0x69,0xdb,0x39,0x4e,0x2f,0xe4,0x4e,0x5f,0xd5,0xe8,0x63,0x8b,0x43,0xcd, - 0xea,0xa3,0xcc,0xa4,0xa9,0x2d,0x47,0xc1,0x64,0xcb,0x31,0x27,0x12,0x9a,0x95,0xd0,0x93,0x50,0xdb,0xf7, - 0xdc,0x65,0xed,0xcf,0xb2,0xd0,0xe8,0xe3,0xcc,0xe4,0xd2,0x06,0xe3,0x50,0xde,0x22,0xb2,0x90,0x55,0x94, - 0xb6,0xde,0x56,0xe5,0x27,0x11,0x0c,0xe8,0xe4,0x3a,0x9b,0xcf,0xe4,0xbd,0x6f,0xeb,0xd8,0x8b,0x3f,0x0b, - 0xbb,0x18,0x4c,0xc1,0x23,0x14,0xa6,0x0d,0x05,0xa4,0xc3,0x85,0x16,0x0e,0xc7,0x99,0x9c,0xc1,0x80,0x12, - 0x4d,0xbc,0x47,0xd8,0xc2,0x9a,0x97,0xc2,0x83,0x7e,0xa3,0xae,0xcd,0x4c,0x2e,0x5f,0xc9,0x74,0xaf,0x2a, - 0x4b,0x7a,0x1a,0x17,0xf2,0x44,0xc4,0x44,0xe6,0xbe,0x61,0x6d,0xa7,0x5c,0xf8,0x0c,0xb1,0x8f,0x27,0xbb, - 0x61,0x1a,0x23,0xf3,0x36,0x9e,0x49,0xe8,0x6e,0xda,0x43,0x2e,0xe5,0x90,0x94,0x7e,0xb7,0x48,0xc1,0xa6, - 0xb4,0x89,0x47,0x10,0x76,0x5a,0x12,0xe4,0xcf,0x17,0x95,0xd4,0xf7,0x1d,0xf5,0x59,0xf2,0x50,0x2e,0x31, - 0x85,0xb0,0xaa,0x61,0x7b,0x89,0x44,0x47,0x43,0x6b,0x3e,0x7b,0x64,0x60,0xf2,0xe4,0x9e,0xae,0x3b,0x1a, - 0x94,0x33,0xdb,0x8c,0x4f,0xe0,0xe5,0xb8,0xca,0xb2,0xda,0xe9,0x85,0x3b,0x4b,0x68,0x0f,0xfa,0xf6,0x86, - 0xa3,0x1d,0x58,0x60,0xa5,0x4c,0x04,0x4e,0xff,0x00,0x6a,0xba,0xa0,0x2e,0x17,0x3e,0xfa,0x24,0x46,0xc2, - 0x47,0xfb,0xd9,0xa4,0x65,0xee,0xad,0xfc,0xeb,0xae,0xdf,0x78,0x17,0xc1,0x22,0x42,0xc4,0x86,0xd7,0xd2, - 0xb7,0x41,0xfc,0xb3,0xdf,0x1e,0x68,0x4d,0x48,0x2e,0x3d,0xe6,0x90,0xf9,0x50,0xbd,0x04,0x42,0x7b,0x04, - 0x10,0xe5,0xe5,0x1e,0xc9,0x21,0x01,0xb7,0xa4,0x84,0xdd,0xbf,0x81,0x6a,0xb6,0xa6,0xdb,0x95,0x36,0xb3, - 0x3d,0x91,0x6d,0xa5,0xda,0xe6,0x6c,0x3d,0x41,0x59,0x92,0xcb,0xcc,0x27,0xae,0x44,0xce,0x0f,0xe5,0x03, - 0x7c,0x5c,0x7a,0x68,0x19,0xe5,0xa3,0xe8,0xa6,0x27,0x46,0x39,0x1d,0x37,0xf7,0x98,0x20,0x68,0x24,0x40, - 0xae,0xea,0x21,0x48,0xee,0x02,0x0a,0xc3,0xcf,0xc0,0xd1,0xbe,0x0b,0x01,0xa3,0xc6,0x78,0xbc,0x7c,0x1e, - 0x6d,0x3b,0x44,0xc8,0x48,0xa4,0xb2,0x24,0x97,0x8e,0xd7,0xdf,0x43,0x75,0x61,0x43,0xa6,0x08,0x3a,0x64, - 0x36,0xf8,0x56,0x97,0x53,0xed,0xba,0x66,0x9b,0x4e,0x71,0x2f,0x15,0xef,0xfd,0xd4,0x84,0xdf,0x7d,0x0d, - 0xc3,0x69,0x1a,0x37,0xcd,0xdd,0xbd,0x90,0xe3,0x89,0x44,0x8a,0x35,0x37,0x84,0xcd,0x56,0x19,0xab,0x1a, - 0xb9,0x1f,0x01,0x48,0xed,0x4e,0x1c,0x81,0xa8,0x84,0xbb,0x7d,0xcf,0x4c,0xb1,0xf3,0x93,0x26,0x2d,0x61, - 0x96,0x2d,0x1a,0x99,0xee,0x1c,0x74,0x47,0xef,0x02,0xe2,0x48,0xed,0x7c,0x9b,0x8b,0x08,0x2e,0xb0,0x2a, - 0xe3,0x8b,0x78,0x19,0x8a,0xbe,0x4f,0xee,0x7c,0x36,0xf5,0xa2,0x09,0x40,0xe5,0xf8,0x73,0xd8,0x54,0xe0, - 0x36,0x0d,0x91,0x76,0xc6,0x5a,0xbb,0x5e,0x31,0x6a,0xbb,0x87,0x9e,0x79,0x70,0xa6,0xd9,0xf7,0x96,0x60, - 0x40,0xe7,0xb1,0x7c,0x40,0xb1,0x11,0x67,0x88,0x6b,0xb6,0x6e,0x37,0x72,0x49,0x0f,0x9d,0x1b,0x7c,0xc7, - 0x33,0xe4,0x6a,0x7c,0x29,0x9b,0x13,0xb4,0xb4,0xe1,0x91,0xd7,0xbb,0x43,0x16,0xe7,0x89,0x0f,0xe1,0x7a, - 0xa8,0xca,0x46,0x64,0x1c,0xe5,0x56,0x34,0x56,0x26,0xc5,0x49,0x7e,0x0a,0x57,0xb3,0x19,0xad,0x20,0xee, - 0x68,0xbd,0xe6,0x9b,0x5a,0xf5,0xf2,0xa1,0x5b,0x01,0xee,0xc9,0x7e,0x2c,0x14,0x0c,0x38,0xb0,0xf8,0x71, - 0x68,0xa6,0x81,0xe0,0x0b,0xfb,0xb5,0xb1,0x2a,0xb2,0xbb,0x40,0xf5,0xcc,0x14,0xf8,0xd9,0xc0,0x7b,0x1f, - 0xde,0xad,0x92,0xdf,0x10,0x2a,0xbd,0x15,0x7d,0xa3,0x31,0xdc,0x55,0x83,0xbb,0x63,0xca,0xbe,0x99,0x4f, - 0xc7,0x69,0x9c,0x42,0xb6,0x31,0x82,0xe4,0x08,0xe3,0x61,0x01,0xf8,0x1b,0xf8,0x6d,0x96,0xeb,0xf5,0x85, - 0xba,0x20,0x36,0x9d,0x88,0xd8,0x5c,0x83,0xe6,0x0c,0x63,0xcb,0x99,0xfd,0x63,0x50,0x30,0x7d,0x8b,0xd8, - 0xc7,0x8b,0xfa,0x07,0x9b,0x16,0x7e,0xd8,0x15,0x05,0xe7,0x1d,0xee,0x11,0x5e,0xf7,0x2a,0x86,0xb2,0xed, - 0x30,0x1e,0x95,0x7f,0x17,0x1c,0xdc,0xe3,0x2a,0xdf,0x27,0x6e,0x29,0x7c,0x44,0xc5,0x37,0x45,0x32,0xf7, - 0x6a,0x52,0x4c,0xd7,0xc4,0x2c,0xb0,0x0f,0x77,0x6c,0xc1,0xa8,0xd6,0x21,0xea,0x78,0x60,0x67,0xfa,0x75, - 0xda,0x0f,0xaa,0x8d,0x40,0x24,0xa0,0x6c,0x1b,0x81,0x1a,0x03,0x60,0x4d,0x89,0xd8,0x16,0xe0,0xa2,0x24, - 0x29,0xc2,0x81,0x77,0x73,0xe9,0x9c,0xd8,0xee,0x21,0x6e,0x13,0xfa,0x9c,0x0d,0x0c,0x03,0xd2,0x66,0x64, - 0xe3,0x3e,0x15,0x9f,0x2d,0xcc,0xe0,0xdd,0x6f,0x25,0x73,0x13,0x7a,0xa4,0x32,0x1d,0x1f,0x02,0xba,0xb4, - 0x3f,0xfe,0x4c,0x61,0x8d,0xa6,0x8a,0xa8,0x65,0x2d,0x77,0x8f,0x0d,0xe3,0xda,0x49,0x72,0x91,0x53,0xf2, - 0xac,0x9d,0xda,0xa7,0x38,0x97,0x3b,0x8f,0x5c,0x24,0x17,0x2c,0xae,0xd0,0x84,0x72,0xbf,0x34,0xae,0x83, - 0x90,0x6b,0xdc,0x45,0x11,0x75,0x60,0x42,0xae,0x0a,0xec,0xfa,0x45,0xad,0xef,0x5c,0xee,0x14,0xb8,0x8d, - 0x93,0x09,0x2a,0xe3,0x0f,0xe1,0x9b,0xcd,0x54,0x56,0xea,0xc6,0x21,0x94,0xc3,0xa7,0x7d,0x01,0xca,0x92, - 0x07,0xff,0x83,0x4b,0xd8,0xe3,0x07,0xa3,0xd6,0x70,0xca,0x96,0x31,0xba,0x8c,0xa4,0x6b,0x27,0x12,0xb5, - 0x6d,0x3e,0xb2,0xae,0xcd,0x87,0x86,0x0e,0xaa,0x00,0xbe,0xc0,0x5a,0x3c,0x23,0x30,0xa3,0x69,0xaf,0x93, - 0xec,0xd4,0x68,0x0d,0x5c,0x8a,0x17,0x04,0xaa,0xc0,0x86,0xd4,0xda,0x26,0x70,0x72,0x5c,0xb0,0x4d,0x98, - 0x59,0xc5,0x24,0xc3,0x47,0xdb,0xd6,0xf1,0x5e,0xd9,0x11,0x8a,0x35,0x9e,0x71,0xa6,0xcc,0xd0,0xbd,0x72, - 0x36,0xe3,0x01,0x2a,0x63,0x25,0x54,0x79,0x57,0xa7,0x6d,0xf4,0xce,0xa6,0x9a,0x3d,0xef,0x45,0xa2,0xac, - 0x55,0x25,0x03,0xc3,0x87,0x55,0xb7,0xd1,0xd9,0xac,0xd3,0x26,0x58,0xd1,0xae,0xd1,0x52,0xd4,0x82,0xea, - 0xcf,0x90,0xa2,0xdc,0x78,0xdf,0xec,0x77,0xbc,0xb4,0xb6,0x83,0x1a,0xca,0xf4,0x63,0x7c,0x38,0xf6,0x9a, - 0xf6,0x44,0x09,0x42,0xea,0x4c,0x7d,0xfb,0xd2,0x0a,0xd3,0xb2,0x33,0xe9,0xe8,0xae,0x94,0x5c,0x1c,0xa0, - 0x8b,0x35,0x16,0x1e,0x52,0xff,0x92,0xcb,0x12,0x27,0x0d,0x65,0x87,0xc4,0xb0,0xc1,0x42,0x03,0x76,0x0b, - 0xb8,0xbe,0x68,0x56,0x74,0xae,0xba,0x2c,0xb7,0xae,0xba,0xec,0x59,0xd1,0x6c,0xd1,0xe1,0x7f,0x9d,0xbc, - 0x9e,0x39,0x9e,0xf6,0x58,0x0a,0x38,0x90,0x99,0x43,0xef,0x9b,0xc3,0x31,0x20,0x2a,0x2e,0x3c,0xbe,0x9e, - 0x48,0x19,0xb3,0x2e,0xd4,0x3a,0x01,0xf1,0x01,0x7b,0xbc,0x1a,0x0c,0xfd,0x28,0x65,0x2c,0xcd,0xb7,0x74, - 0x11,0x8a,0x36,0x76,0x64,0xc0,0xce,0xd6,0xc1,0xe7,0x49,0x48,0x64,0x9f,0xba,0xcf,0xed,0xee,0x5c,0x8a, - 0xfb,0x00,0x4b,0xf7,0xe1,0x24,0x2d,0x72,0x7c,0xa7,0x64,0x93,0x4d,0x18,0xbe,0xaa,0x12,0xfa,0xf5,0xf9, - 0xfa,0xae,0xea,0x46,0x08,0x08,0xcd,0xcc,0x6b,0x96,0x67,0x30,0xe8,0x50,0xb8,0xda,0xff,0xc2,0xc4,0x39, - 0x94,0x05,0xcf,0xe6,0x4a,0xeb,0xa3,0x85,0xdf,0xa0,0x41,0x5d,0x57,0xa3,0xeb,0xca,0x67,0x21,0x85,0xa7, - 0x20,0x36,0x62,0x6c,0xbe,0x31,0x26,0x71,0x2c,0x09,0x3d,0x3b,0xa3,0x5d,0x90,0x45,0x5a,0x0f,0xdc,0x93, - 0x6b,0x5b,0xe2,0x98,0x1c,0x87,0x9d,0x53,0xc2,0xe3,0xed,0x3b,0x19,0xc2,0xdd,0x77,0x4f,0x15,0x5f,0x30, - 0xd0,0x57,0xde,0xc4,0xd0,0xae,0x92,0x9c,0x6f,0x47,0x24,0x7e,0xfd,0xec,0x6a,0x95,0x9d,0x9d,0x25,0x6e, - 0x87,0xa0,0x37,0x06,0x43,0xd0,0xa3,0x2d,0xe1,0xf1,0xd3,0xf7,0xb4,0x9c,0x54,0x5e,0xa4,0x4d,0xf3,0x26, - 0x13,0xa2,0x55,0x43,0x3a,0xcf,0x09,0x56,0x5b,0xa9,0x76,0x3a,0xee,0xf1,0x79,0xf7,0xca,0xd7,0x72,0xf8, - 0xd2,0xbe,0x2d,0x2d,0x8c,0xa1,0xf4,0x75,0x9b,0xe6,0xd5,0xb3,0x13,0x6e,0xd7,0xa5,0xe5,0x44,0x1d,0x8d, - 0xc9,0xae,0x01,0x8a,0x36,0x97,0x1b,0xdd,0x76,0x60,0xc3,0xb8,0xe0,0x44,0xaa,0xff,0x03,0x77,0x33,0xa5, - 0x3f,0xba,0xd1,0x2e,0xeb,0x1e,0x7a,0x34,0x30,0xed,0x95,0x31,0xe2,0x02,0x68,0x66,0x3c,0x2e,0xbf,0x25, - 0xbe,0xb8,0x63,0xb8,0xee,0x4c,0x1a,0x39,0x4b,0xba,0x56,0x11,0x2b,0x05,0x6e,0xac,0x02,0xc7,0x66,0xc1, - 0xb0,0xda,0xab,0xc1,0x11,0x10,0xda,0x9c,0xd3,0xb4,0xe6,0x25,0x19,0xe3,0xc7,0xfd,0x7d,0x3b,0x15,0xfe, - 0x2c,0xa8,0x3e,0xd8,0xd6,0x5b,0x47,0xe0,0xcb,0xce,0xac,0x73,0x66,0xb2,0x20,0x4c,0xd8,0xf5,0xf3,0x00, - 0xe8,0x83,0x68,0x1b,0x9e,0x5a,0xb2,0x7a,0x31,0xb7,0xdf,0xa8,0xf7,0x59,0x18,0xbe,0xee,0x60,0x87,0x48, - 0xbd,0x6e,0x01,0x46,0x41,0x2c,0xff,0x71,0x3e,0x69,0x9b,0x3e,0x6a,0x14,0xf3,0x9d,0x56,0x36,0x12,0x34, + 0xa7,0xd1,0xc7,0x8d,0x77,0x4d,0x33,0x90,0xcf,0xbb,0xaa,0x25,0xaa,0xfc,0x95,0xf6,0xec,0xcb,0x2a,0x39, + 0x54,0xaf,0xaa,0xe4,0xa1,0x7a,0x8e,0x86,0x9f,0xf9,0xda,0x3b,0xbe,0x95,0x7b,0x5b,0xf6,0x7b,0xb6,0x22, + 0xd6,0xf2,0x79,0x65,0x34,0x70,0x34,0x55,0x3f,0xae,0x78,0x98,0x12,0x31,0xce,0x43,0xfe,0xe3,0x3e,0x24, + 0xe7,0x60,0xbd,0x23,0xb9,0x62,0x20,0x32,0xe2,0x19,0x6b,0xde,0xc9,0x61,0x48,0x7c,0x8c,0x34,0x32,0x11, + 0x23,0x28,0x5d,0x1e,0x54,0xd1,0x45,0x59,0x36,0x81,0x8e,0x12,0xf7,0x39,0xbd,0x20,0x47,0x4e,0x18,0x24, + 0xcb,0x93,0x16,0xa3,0xf5,0x5c,0xff,0xe8,0x6d,0x8b,0x24,0x6f,0x6d,0x91,0xad,0x5d,0x9a,0x7b,0xbb,0xa6, + 0xd8,0x46,0x7f,0x76,0x17,0x21,0xd3,0xb6,0x73,0x9c,0x5e,0xc8,0x9d,0xbe,0xaa,0xd1,0xc7,0x16,0x87,0x9a, + 0xd5,0x47,0x99,0x49,0x53,0x5b,0x8e,0x82,0xc9,0x96,0x63,0x4e,0x24,0x34,0x2b,0xa1,0x27,0xa1,0xb6,0xef, + 0xb9,0xcb,0xda,0x9f,0x66,0xa1,0xd1,0xc7,0x99,0xc9,0xa5,0x0d,0xc6,0xa1,0xbc,0x45,0x64,0x21,0xab,0x28, + 0x6d,0xbd,0xab,0xca,0x4f,0x22,0x18,0xd0,0xc9,0x75,0x36,0x9f,0xc9,0x7b,0xdf,0xd6,0xb1,0x17,0x7f,0x16, + 0x76,0x31,0x98,0x82,0x47,0x28,0x4c,0x1b,0x0a,0x48,0x87,0x0b,0x2d,0x1c,0x8e,0x33,0x39,0x83,0x01,0x25, + 0x9a,0x78,0x8f,0xb0,0x85,0x35,0x2f,0x85,0x07,0xfd,0x46,0x5d,0x9b,0x99,0x5c,0xbe,0x92,0xe9,0x5e,0x55, + 0x96,0xf4,0x34,0x2e,0xe4,0x89,0x88,0x89,0xcc,0x7d,0xc3,0xda,0x4e,0xb9,0xf0,0x19,0x62,0x1f,0x4f,0x76, + 0xc3,0x34,0x46,0xe6,0x6d,0x3c,0x93,0xd0,0xdd,0xb4,0x87,0x5c,0xca,0x21,0x29,0xfd,0x6e,0x91,0x82,0x4d, + 0x69,0x13,0x8f,0x20,0xec,0xb4,0x24,0xc8,0x9f,0x2f,0x2a,0xa9,0xef,0x3b,0xea,0xb3,0xe4,0xa1,0x5c,0x62, + 0x0a,0x61,0x55,0xc3,0xf6,0x12,0x89,0x8e,0x86,0xd6,0x7c,0xf6,0xc8,0xc0,0xe4,0xc9,0x3d,0x5d,0x77,0x34, + 0x28,0x67,0xb6,0x19,0x9f,0xc0,0xcb,0x71,0x95,0x65,0xb5,0xd3,0x0b,0x77,0x96,0xd0,0x1e,0xf4,0xed,0x0d, + 0x47,0x3b,0xb0,0xc0,0x4a,0x99,0x08,0x9c,0xfe,0x01,0xd4,0x74,0x41,0x5d,0x2e,0x7c,0xf4,0x49,0x8c,0x84, + 0x8f,0xf6,0xb3,0x49,0xcb,0xdc,0x5b,0xf9,0xd7,0x5d,0xbf,0xf5,0x2e,0x82,0x45,0x84,0x88,0x0d,0xaf,0xa5, + 0x6f,0x83,0xf8,0x67,0xbf,0x3d,0xd0,0x9a,0x90,0x5c,0x7a,0xcc,0x21,0xf3,0xa1,0x7a,0x09,0x84,0xf6,0x08, + 0x20,0xca,0xcb,0x3d,0x92,0x43,0x02,0x6e,0x49,0x09,0xbb,0x7f,0x03,0xd5,0x6c,0x4d,0xb7,0x2b,0x6d,0x66, + 0x7b,0x22,0xdb,0x4a,0xb5,0xcd,0xd9,0x7a,0x82,0xb2,0x24,0x97,0x99,0x4f,0x5c,0x89,0x9c,0x1f,0xca,0x07, + 0xf8,0xb8,0xf4,0xd0,0x32,0xca,0x47,0xd1,0x4d,0x4f,0x8c,0x72,0x3a,0x6e,0xee,0x31,0x41,0xd0,0x48,0x80, + 0x5c,0xd5,0x43,0x90,0xdc,0x05,0x14,0x86,0x9f,0x81,0xa3,0x7d,0x17,0x02,0x46,0x8d,0xf1,0x78,0xf9,0x3c, + 0xda,0x76,0x88,0x90,0x91,0x48,0x65,0x49,0x2e,0x1d,0xaf,0xbf,0x87,0xea,0xc2,0x86,0x4c,0x11,0x74,0xc8, + 0x6c,0xf0,0xad,0x2e,0xa7,0xda,0x75,0xcd,0x36,0x9d,0xe2,0x5e,0x2a,0xde,0xfb,0xa9,0x09,0xbf,0xfb,0x06, + 0x86,0xd3,0x34,0x6e,0x9a,0xbb,0x7b,0x21,0xc7,0x13,0x89,0x14,0x6b,0x6e,0x08,0x9b,0xad,0x32,0x56,0x35, + 0x72,0x3f,0x02,0x90,0xda,0x9d,0x38,0x02,0x51,0x09,0x77,0xfb,0x9e,0x99,0x62,0xe7,0x27,0x4d,0x5a,0xc2, + 0x2c,0x5b,0x34,0x32,0xdd,0x39,0xe8,0x8e,0xde,0x05,0xc4,0x91,0xda,0xf9,0x36,0x17,0x11,0x5c,0x60,0x55, + 0xc6,0x17,0xf1,0x32,0x14,0x7d,0x9f,0xdc,0xf9,0x6c,0xea,0x45,0x13,0x80,0xca,0xf1,0xe7,0xb0,0xa9,0xc0, + 0x6d,0x1a,0x22,0xed,0x8c,0xb5,0x76,0xbd,0x62,0xd4,0x76,0x0f,0x3d,0xf3,0xe0,0x4c,0xb3,0xef,0x2d,0xc1, + 0x80,0xce,0x63,0xf9,0x80,0x62,0x23,0xce,0x10,0xd7,0x6c,0xdd,0x6e,0xe4,0x92,0x1e,0x3a,0x37,0xf8,0x8e, + 0x67,0xc8,0xd5,0xf8,0x52,0x36,0x27,0x68,0x69,0xc3,0x23,0xaf,0x77,0x87,0x2c,0xce,0x13,0x1f,0xc2,0xf5, + 0x50,0x95,0x8d,0xc8,0x38,0xca,0xad,0x68,0xac,0x4c,0x8a,0x93,0xfc,0x14,0xae,0x66,0x33,0x5a,0x41,0xdc, + 0xd1,0x7a,0xcd,0x37,0xb5,0xea,0xe5,0x43,0xb7,0x02,0xdc,0x93,0xfd,0x58,0x28,0x18,0x70,0x60,0xf1,0xe3, + 0xd0,0x4c,0x03,0xc1,0x17,0xf6,0x6b,0x63,0x55,0x64,0x77,0x81,0xea,0x99,0x29,0xf0,0x93,0x81,0xf7,0x3e, + 0xbc,0x5b,0x25,0xbf,0x21,0x54,0x7a,0x2b,0xfa,0x46,0x63,0xb8,0xab,0x06,0x77,0xc7,0x94,0x7d,0x33,0x9f, + 0x8e,0xd3,0x38,0x85,0x6c,0x63,0x04,0xc9,0x11,0xc6,0xc3,0x02,0xf0,0xb7,0xf0,0xdb,0x2c,0xd7,0xeb,0x0b, + 0x75,0x41,0x6c,0x3a,0x11,0xb1,0xb9,0x06,0xcd,0x19,0xc6,0x96,0x33,0xfb,0xc7,0xa0,0x60,0xfa,0x16,0xb1, + 0x8f,0x17,0xf5,0x0f,0x36,0x2d,0xfc,0xb0,0x2b,0x0a,0xce,0x3b,0xdc,0x23,0xbc,0xee,0x55,0x0c,0x65,0xdb, + 0x61,0x3c,0x2a,0xff,0x2e,0x38,0xb8,0xc7,0x55,0xbe,0x4f,0xdc,0x52,0xf8,0x88,0x8a,0x6f,0x8a,0x64,0xee, + 0xd5,0xa4,0x98,0xae,0x89,0x59,0x60,0x1f,0xee,0xd8,0x82,0x51,0xad,0x43,0xd4,0xf1,0xc0,0xce,0xf4,0xeb, + 0xb4,0x1f,0x54,0x1b,0x81,0x48,0x40,0xd9,0x36,0x02,0x35,0x06,0xc0,0x9a,0x12,0xb1,0x2d,0xc0,0x45,0x49, + 0x52,0x84,0x03,0xef,0xe6,0xd2,0x39,0xb1,0xdd,0x43,0xdc,0x26,0xf4,0x39,0x1b,0x18,0x06,0xa4,0xcd,0xc8, + 0xc6,0x7d,0x2a,0x3e,0x5b,0x98,0xc1,0xbb,0xdf,0x4a,0xe6,0x26,0xf4,0x48,0x65,0x3a,0x3e,0x04,0x74,0x69, + 0x7f,0xfc,0x99,0xc2,0x1a,0x4d,0x15,0x51,0xcb,0x5a,0xee,0x1e,0x1b,0xc6,0xb5,0x93,0xe4,0x22,0xa7,0xe4, + 0x69,0x3b,0xb5,0x4f,0x71,0x2e,0x77,0x1e,0xb9,0x48,0x2e,0x58,0x5c,0xa1,0x09,0xe5,0x7e,0x69,0x5c,0x07, + 0x21,0xd7,0xb8,0x8b,0x22,0xea,0xc0,0x84,0x5c,0x15,0xd8,0xf5,0x8b,0x5a,0xdf,0xb9,0xdc,0x29,0x70,0x1b, + 0x27,0x13,0x54,0xc6,0x1f,0xc2,0x37,0x9b,0xa9,0xac,0xd4,0x8d,0x43,0x28,0x87,0xcf,0xfa,0x02,0x94,0x25, + 0x0f,0xfe,0x07,0x97,0xb0,0xc7,0x0f,0x46,0xad,0xe1,0x94,0x2d,0x63,0x74,0x19,0x49,0xd7,0x4e,0x24,0x6a, + 0xdb,0x7c,0x64,0x5d,0x9b,0x0f,0x0d,0x1d,0x54,0x01,0x7c,0x81,0xb5,0x78,0x46,0x60,0x46,0xd3,0x5e,0x27, + 0xd9,0xa9,0xd1,0x1a,0xb8,0x14,0x2f,0x08,0x54,0x81,0x0d,0xa9,0xb5,0x4d,0xe0,0xe4,0xb8,0x60,0x9b,0x30, + 0xb3,0x8a,0x49,0x86,0x8f,0xb6,0xad,0xe3,0xbd,0xb2,0x23,0x14,0x6b,0x3c,0xe3,0x4c,0x99,0xa1,0x7b,0xe5, + 0x6c,0xc6,0x03,0x54,0xc6,0x4a,0xa8,0xf2,0xae,0x4e,0xdb,0xe8,0x9d,0x4d,0x35,0x7b,0xde,0x8b,0x44,0x59, + 0xab,0x4a,0x06,0x86,0x0f,0xab,0x6e,0xa3,0xb3,0x59,0xa7,0x4d,0xb0,0xa2,0x5d,0xa3,0xa5,0xa8,0x05,0xd5, + 0x9f,0x21,0x45,0xb9,0xf1,0xbe,0xd9,0xef,0x78,0x69,0x6d,0x07,0x35,0x94,0xe9,0xc7,0xf8,0x70,0xec,0x35, + 0xed,0x89,0x12,0x84,0xd4,0x99,0xfa,0xf6,0xa5,0x15,0xa6,0x65,0x67,0xd2,0xd1,0x5d,0x29,0xb9,0x38,0x40, + 0x17,0x6b,0x2c,0x3c,0xa4,0xfe,0x25,0x97,0x25,0x4e,0x1a,0xca,0x0e,0x89,0x61,0x83,0x85,0x06,0xec,0x16, + 0x70,0x7d,0xd1,0xac,0xe8,0x5c,0x75,0x59,0x6e,0x5d,0x75,0xd9,0xb3,0xa2,0xd9,0xa2,0xc3,0xff,0x3a,0x79, + 0x3d,0x73,0x3c,0xed,0xb1,0x14,0x70,0x20,0x33,0x87,0xde,0x37,0x87,0x63,0x40,0x54,0x5c,0x78,0x7c,0x3d, + 0x91,0x32,0x66,0x5d,0xa8,0x75,0x02,0xe2,0x03,0xf6,0x78,0x35,0x18,0xfa,0x51,0xca,0x58,0x9a,0x6f,0xe9, + 0x22,0x14,0x6d,0xec,0xc8,0x80,0x9d,0xad,0x83,0xcf,0x93,0x90,0xc8,0x3e,0x75,0x9f,0xdb,0xdd,0xb9,0x14, + 0xf7,0x01,0x96,0xee,0xc3,0x49,0x5a,0xe4,0xf8,0x4e,0xc9,0x26,0x9b,0x30,0x7c,0x5d,0x25,0xf4,0xeb,0xf3, + 0xf5,0x5d,0xd5,0x8d,0x10,0x10,0x9a,0x99,0xd7,0x2c,0xcf,0x60,0xd0,0xa1,0x70,0xb5,0xff,0x85,0x89,0x73, + 0x28,0x0b,0x9e,0xcd,0x95,0xd6,0x47,0x0b,0xbf,0x41,0x83,0xba,0xae,0x46,0xd7,0x95,0xcf,0x42,0x0a,0x4f, + 0x41,0x6c,0xc4,0xd8,0x7c,0x63,0x4c,0xe2,0x58,0x12,0x7a,0x76,0x46,0xbb,0x20,0x8b,0xb4,0x1e,0xb8,0x27, + 0xd7,0xb6,0xc4,0x31,0x39,0x0e,0x3b,0xa7,0x84,0xc7,0xdb,0x77,0x32,0x84,0xbb,0xef,0x9e,0x2a,0xbe,0x60, + 0xa0,0xaf,0xbc,0x89,0xa1,0x5d,0x25,0x39,0xdf,0x8e,0x48,0xfc,0xfa,0xd9,0xd5,0x2a,0x3b,0x3b,0x4b,0xdc, + 0x0e,0x41,0x6f,0x0c,0x86,0xa0,0x47,0x5b,0xc2,0xe3,0xa7,0xef,0x69,0x39,0xa9,0xbc,0x48,0x9b,0xe6,0x4d, + 0x26,0x44,0xab,0x86,0x74,0x9e,0x13,0xac,0xb6,0x52,0xed,0x74,0xdc,0xe3,0xf3,0xee,0xb5,0xaf,0xe5,0xf0, + 0xa5,0x7d,0x5b,0x5a,0x18,0x43,0xe9,0xeb,0x36,0xcd,0xab,0x67,0x27,0xdc,0xae,0x4b,0xcb,0x89,0x3a,0x1a, + 0x93,0x5d,0x03,0x14,0x6d,0x2e,0x37,0xba,0xed,0xc0,0x86,0x71,0xc1,0x89,0x54,0xff,0x07,0xee,0x66,0x4a, + 0x7f,0x74,0xa3,0x5d,0xd6,0x3d,0xf4,0x68,0x60,0xda,0x2b,0x63,0xc4,0x05,0xd0,0xcc,0x78,0x5c,0x7e,0x4b, + 0x7c,0x71,0xc7,0x70,0xdd,0x99,0x34,0x72,0x96,0x74,0xad,0x22,0x56,0x0a,0xdc,0x58,0x05,0x8e,0xcd,0x82, + 0x61,0xb5,0x57,0x83,0x23,0x20,0xb4,0x39,0xa7,0x69,0xcd,0x4b,0x32,0xc6,0x8f,0xfb,0xfb,0x76,0x2a,0xfc, + 0x59,0x50,0x7d,0xb0,0xad,0xb7,0x8e,0xc0,0x97,0x9d,0x59,0xe7,0xcc,0x64,0x41,0x98,0xb0,0xeb,0xe7,0x01, + 0xd0,0x07,0xd1,0x36,0x3c,0xb5,0x64,0xf5,0x62,0x6e,0xbf,0x51,0x1f,0xb2,0x30,0x7c,0xd3,0xc1,0x0e,0x91, + 0x7a,0xd3,0x02,0x8c,0x82,0x58,0xfe,0xe3,0x7c,0xd2,0x36,0x7d,0xd4,0x28,0xe6,0x85,0x56,0x36,0x12,0x34, 0xb5,0x3e,0xd2,0x32,0x01,0x1f,0x98,0xdc,0xea,0xab,0x2d,0xc1,0x91,0x16,0x73,0x6d,0x09,0xfa,0x58,0x2b, 0xe1,0x30,0x52,0xd4,0x22,0xd4,0x8d,0x14,0xc2,0x39,0x33,0xcb,0x3b,0xd8,0x0b,0xdc,0xc2,0x62,0x5c,0xd3, 0x08,0xfb,0x9f,0x1c,0x9c,0x0e,0x06,0xf8,0x0b,0x05,0x4e,0xe4,0x89,0xd0,0x41,0xba,0x7f,0x22,0xa6,0x12, 0x92,0xe2,0x4d,0x47,0x6a,0x51,0x59,0x0d,0x45,0x4b,0x7d,0x22,0x7a,0x0a,0xad,0x0f,0x11,0xbe,0x94,0x0d, 0x30,0x10,0xb0,0x40,0x68,0xdc,0x96,0x28,0x6d,0x4b,0x92,0xe1,0x99,0x64,0x3c,0xe1,0xcb,0x51,0x03,0x29, 0xcd,0x37,0x13,0x19,0xa9,0x8d,0x41,0xe1,0x25,0x0d,0x54,0x44,0xd2,0x88,0xa6,0x0f,0x6e,0x83,0x9a,0xa9, - 0x42,0x8e,0xf3,0x69,0xd4,0x2e,0xaa,0x14,0x6a,0xf6,0x75,0x45,0x3b,0x5a,0xbd,0xab,0x92,0x13,0xed,0x2b, - 0xf9,0x2e,0xbb,0x78,0xf6,0x69,0x29,0xf6,0xb6,0xa7,0xea,0x49,0x95,0xdc,0xfe,0x60,0xc4,0xd7,0xb1,0x0e, - 0x73,0xe2,0x47,0xb3,0x36,0x9b,0x8c,0x15,0x76,0x12,0xe9,0x22,0x2f,0x26,0xf3,0xd5,0x34,0x8b,0xdf,0x11, + 0x42,0x8e,0xf3,0x69,0xd4,0x2e,0xaa,0x14,0x6a,0xf6,0x4d,0x45,0x3b,0x5a,0xbd,0xaf,0x92,0x13,0xed,0x2b, + 0xf9,0x3e,0xbb,0x78,0xf6,0x69,0x29,0xf6,0xb6,0xa7,0xea,0x49,0x95,0xdc,0x7e,0x6f,0xc4,0xd7,0xb1,0x0e, + 0x73,0xe2,0x47,0xb3,0x36,0x9b,0x8c,0x15,0x76,0x12,0xe9,0x22,0x2f,0x26,0xf3,0xd5,0x34,0x8b,0xdf,0x13, 0x7e,0xfe,0x64,0x1f,0x17,0xe9,0xa7,0xd8,0xb4,0x21,0xf7,0xef,0x9c,0xc2,0xa8,0x90,0x69,0xf8,0xb8,0x8b, 0x86,0x26,0x29,0x6d,0xa4,0x3b,0x29,0x0d,0xe6,0x29,0xe1,0xbd,0xa1,0x2c,0xb0,0xb7,0x5c,0x5b,0x8c,0xb6, - 0x95,0x39,0x1f,0x5b,0x5d,0xf4,0xd2,0x48,0x34,0xf1,0xa6,0x32,0x57,0x15,0xc1,0x21,0x6f,0x5d,0xd7,0x75, - 0x1f,0x68,0x5f,0xe8,0x9d,0xe5,0x64,0x49,0x16,0x90,0x3f,0x68,0x49,0x1a,0x44,0x4f,0x9f,0xfe,0xca,0x97, + 0x95,0x39,0x1f,0x5b,0x5d,0xf4,0xca,0x48,0x34,0xf1,0xa6,0x32,0x57,0x15,0xc1,0x21,0x6f,0x5d,0xd7,0x75, + 0x1f,0x68,0x5f,0xea,0x9d,0xe5,0x64,0x49,0x16,0x90,0xdf,0x69,0x49,0x1a,0x44,0x4f,0x9f,0xfe,0xca,0x97, 0xbb,0xee,0xcb,0x8d,0xda,0x8e,0x38,0xe0,0xe3,0x3c,0x86,0xb8,0xa1,0x8e,0x05,0x46,0x9b,0xe0,0x9f,0x62, - 0x2a,0xcc,0x1e,0x0d,0x5b,0x92,0x67,0x3f,0x20,0xe7,0x5b,0x5c,0x94,0xa0,0x34,0xf9,0xa4,0x07,0x06,0x43, - 0x73,0x51,0xe2,0xf3,0x2b,0xdf,0x95,0x49,0x80,0xbd,0x4b,0x30,0x82,0x2e,0xe5,0x08,0x06,0x41,0x90,0x4f, - 0x30,0x3c,0x18,0x7c,0xc0,0xc5,0xde,0x2e,0xb2,0x7f,0x63,0x82,0x04,0xb9,0x29,0xd4,0xc6,0x20,0x98,0x42, - 0x35,0x31,0x62,0x0c,0xbe,0x5e,0xb9,0x90,0xe8,0xee,0x93,0x7c,0xba,0x17,0x4a,0xc4,0x8a,0x20,0x8e,0x11, - 0x6b,0x83,0x03,0xb3,0x04,0x50,0x31,0x20,0xc4,0x52,0x79,0x32,0x39,0x1d,0xf7,0x6a,0x9b,0x90,0xd3,0xa3, - 0x70,0x5a,0xc9,0xed,0x59,0xda,0x42,0x67,0x82,0x28,0xcb,0x28,0x49,0xb4,0xae,0x4d,0x92,0x65,0x25,0x68, - 0x1b,0x0c,0x0c,0x8e,0xfe,0xc6,0x06,0x0c,0x34,0x79,0xb4,0x9b,0x5f,0x82,0x98,0xc3,0xbd,0xaa,0xaa,0x45, - 0x70,0x44,0x46,0xd4,0xe2,0xb4,0x36,0x90,0xf6,0x98,0x49,0xa0,0x83,0x67,0x30,0xc8,0xe8,0x2b,0xe2,0x55, - 0x7a,0x22,0x16,0x7f,0x8e,0x8f,0x7c,0x56,0xdc,0xc9,0x11,0x12,0x33,0xcb,0xda,0x7b,0x66,0x04,0xb3,0xe1, - 0xaa,0xc9,0xe7,0xc9,0x2d,0x3c,0x3d,0xe3,0x5f,0x08,0x6f,0x7c,0x6a,0x08,0x40,0x10,0x4d,0x16,0xb6,0xd9, - 0x7a,0xa5,0xe3,0x97,0x4a,0x2a,0x79,0x27,0x1a,0x9c,0x2c,0xbe,0x07,0x22,0xd4,0x70,0x82,0x1e,0xfb,0x67, - 0x11,0xf1,0x77,0xca,0x5e,0xfa,0xd0,0xbb,0xb3,0xfa,0xac,0xaf,0x59,0x84,0x65,0x6e,0x8a,0x68,0xc4,0x08, + 0x2a,0xcc,0x1e,0x0d,0x5b,0x92,0x67,0x3f,0x20,0xe7,0xaf,0xb8,0x28,0x41,0x69,0xf2,0x49,0x0f,0x0c,0x86, + 0xe6,0xa2,0xc4,0xe7,0x57,0xbe,0x2b,0x93,0x00,0x7b,0x97,0x60,0x04,0x5d,0xca,0x11,0x0c,0x82,0x20,0x9f, + 0x60,0x78,0x30,0x78,0x87,0x8b,0xbd,0x5d,0x64,0xff,0xc6,0x04,0x09,0x72,0x53,0xa8,0x8d,0x41,0x30,0x85, + 0x6a,0x62,0xc4,0x18,0x7c,0xbd,0x72,0x21,0xd1,0xdd,0x27,0xf9,0x74,0x2f,0x94,0x88,0x15,0x41,0x1c,0x23, + 0xd6,0x06,0x07,0x66,0x09,0xa0,0x62,0x40,0x88,0xa5,0xf2,0x64,0x72,0x3a,0xee,0xd5,0x36,0x21,0xa7,0x47, + 0xe1,0xb4,0x92,0xdb,0xb3,0xb4,0x85,0xce,0x04,0x51,0x96,0x51,0x92,0x68,0x5d,0x9b,0x24,0xcb,0x4a,0xd0, + 0x36,0x18,0x18,0x1c,0xfd,0x8d,0x0d,0x18,0x68,0xf2,0x68,0x37,0xbf,0x02,0x31,0x87,0x7b,0x55,0x55,0x8b, + 0xe0,0x88,0x8c,0xa8,0xc5,0x69,0x6d,0x20,0xed,0x31,0x93,0x40,0x07,0xcf,0x60,0x90,0xd1,0x57,0xc4,0xab, + 0xf4,0x44,0x2c,0xfe,0x1c,0x1f,0xf9,0xb4,0xb8,0x93,0x23,0x24,0x66,0x96,0xb5,0xf7,0xcc,0x08,0x66,0xc3, + 0x55,0x93,0xcf,0x93,0x5b,0x78,0x7a,0xc6,0x3f,0x13,0xde,0xf8,0xd4,0x10,0x80,0x20,0x9a,0x2c,0x6c,0xb3, + 0xf5,0x4a,0xc7,0xaf,0x94,0x54,0xf2,0x5e,0x34,0x38,0x59,0x7c,0x0f,0x44,0xa8,0xe1,0x04,0x3d,0xf6,0xcf, + 0x22,0xe2,0x17,0xca,0x5e,0xfa,0xd0,0xbb,0xb3,0xfa,0xac,0xaf,0x59,0x84,0x65,0x6e,0x8a,0x68,0xc4,0x08, 0xbb,0xcf,0x05,0x2b,0x72,0x75,0x0f,0xcf,0xce,0xd3,0x1a,0x74,0x1b,0xae,0x3d,0x35,0x69,0x76,0x25,0x6b, - 0xc2,0x28,0x3c,0xc4,0x3a,0xbb,0x83,0x42,0x86,0x90,0x9d,0x56,0x1b,0x17,0x8e,0xbc,0x9d,0xaf,0x2e,0x72, + 0xc2,0x28,0x3c,0xc4,0x3a,0xbb,0x83,0x42,0x86,0x90,0x9d,0x56,0x1b,0x17,0x8e,0xbc,0x9b,0xaf,0x2e,0x72, 0x8e,0xbf,0xda,0x9f,0xc1,0x77,0xee,0x71,0x68,0x50,0xe3,0x11,0x99,0xe1,0xf6,0x8a,0x16,0x6b,0x20,0x54, 0x67,0x9b,0x84,0x76,0x6c,0x92,0xf6,0x9e,0xd0,0xa2,0x85,0x1e,0x19,0x04,0x62,0x90,0x70,0xa3,0x63,0xfb, 0xa4,0x09,0x6c,0x8e,0xae,0xd5,0xf7,0x05,0xb4,0x59,0xde,0x95,0x65,0xcc,0xb5,0xf9,0x06,0x65,0x58,0xa7, @@ -1218,291 +1218,291 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x43,0xfc,0x1a,0x66,0xaa,0x00,0x6a,0x49,0xa1,0x21,0xd0,0x5a,0xb3,0xb6,0x50,0x8f,0xee,0x33,0x47,0xb2, 0xf1,0xc2,0x09,0x48,0x45,0x3d,0x1b,0x96,0xb9,0xb5,0xe4,0x16,0xd1,0x2d,0xe3,0x42,0xe9,0xd8,0xe7,0xc5, 0xc6,0xb8,0xfa,0x68,0xe4,0x27,0x1e,0x28,0xb0,0x28,0x2c,0xd8,0xdb,0xa5,0x37,0x6f,0xa3,0x5d,0xa6,0x0a, - 0x61,0xa1,0xfb,0xb1,0xfd,0xd3,0xb6,0x4c,0x2f,0xaf,0xdf,0x8b,0xaf,0xb1,0x38,0x46,0xff,0x86,0x96,0xff, + 0x61,0xa1,0xfb,0xb1,0xfd,0xb3,0xb6,0x4c,0x2f,0xaf,0x3f,0x88,0xaf,0xb1,0x38,0x46,0xff,0x86,0x96,0xff, 0xd4,0x87,0x75,0x5d,0x69,0xd7,0xc8,0x6d,0x9f,0x6a,0x1f,0x9b,0xb4,0x59,0x4a,0x21,0xe8,0xdd,0xb7,0xb0, - 0x7c,0xa7,0x8a,0xe1,0xf7,0x96,0xc3,0xf6,0xfa,0xe1,0xf0,0xab,0xe1,0xe1,0x17,0x12,0xa6,0xe5,0xe7,0x4a, - 0xfd,0x54,0xa9,0x1f,0x2b,0xf5,0x5d,0xa5,0x7e,0xaf,0xd4,0x0f,0x95,0xfa,0xad,0x52,0xdf,0x57,0xea,0xdb, - 0x8a,0xc3,0x69,0xf0,0xbd,0xcf,0xfa,0xce,0x57,0xf5,0x0b,0xa7,0xf1,0xdd,0x36,0x0a,0xf5,0x12,0x99,0x99, - 0x2a,0x99,0x20,0x25,0xf7,0xfb,0x80,0x3c,0xbc,0x80,0xe9,0x20,0x95,0xfe,0x77,0xd7,0x76,0xde,0x86,0x48, - 0xb2,0xf7,0x9b,0xd3,0xb2,0xfc,0x52,0xb1,0x48,0x2d,0x90,0x88,0xc6,0x70,0xbc,0x68,0x10,0xb4,0x45,0xdf, - 0x16,0xa4,0x0b,0x05,0xd2,0x08,0xaf,0x2f,0xe5,0x12,0x5d,0x32,0xf9,0xe8,0x32,0xe5,0xb2,0x1d,0x9d,0x67, - 0xe3,0xa8,0x23,0x07,0x62,0xe7,0x92,0x73,0x36,0xea,0x5f,0xdc,0xf9,0x89,0x5c,0xf6,0x9e,0x4d,0xf3,0x06, - 0x46,0x74,0x6a,0x5a,0xa5,0x17,0x17,0xfc,0x54,0x2f,0xb3,0xf9,0x9c,0x6b,0xa6,0xbe,0xff,0x93,0x0b,0xd3, - 0x41,0x50,0x5e,0xcf,0x08,0xc1,0xd7,0x84,0xc1,0x88,0xa9,0x64,0x97,0x4c,0x95,0xae,0x9a,0x72,0x56,0x4e, - 0x56,0x35,0x3f,0x2d,0xe7,0xe9,0x8d,0xd2,0x1d,0xe2,0xc0,0x23,0x74,0x54,0xc3,0x4e,0x8f,0x48,0xd6,0x79, - 0x4d,0xe7,0x37,0xcd,0x5d,0x95,0x29,0x43,0xda,0xe9,0x5f,0x53,0x5e,0xbf,0x72,0x9f,0xcd,0x8b,0x19,0x3a, - 0xde,0x89,0xf3,0x99,0xe6,0x35,0xba,0x37,0x55,0x59,0x21,0xbf,0x88,0x60,0x50,0x94,0x34,0x85,0x39,0x80, - 0x58,0x5d,0xe6,0xd3,0x29,0x75,0x0d,0x87,0x63,0x93,0x55,0x8b,0xbc,0x40,0x22,0x41,0x54,0xd5,0xa8,0xbc, - 0x5e,0xa4,0x4b,0x95,0x37,0xd9,0x42,0x22,0x9d,0xcc,0xcb,0x72,0xa9,0xcc,0x35,0x53,0x4a,0x1a,0x2d,0x4a, - 0x84,0x6a,0x51,0x08,0x2f,0x51,0xe7,0xbf,0x13,0x8a,0x2a,0xeb,0xcb,0x14,0x0c,0xa7,0x6b,0xa1,0x28,0x11, - 0x3d,0x8a,0xd6,0x99,0x9a,0x59,0xa6,0x84,0x8d,0x68,0xd3,0x7e,0xca,0x1b,0x22,0x69,0xd3,0x69,0x59,0xcc, - 0x11,0x55,0xe5,0xb7,0x15,0x6d,0xc1,0xa9,0xd2,0xae,0x95,0x53,0x25,0x6c,0x11,0xc1,0x44,0xba,0x98,0x13, - 0x30,0x28,0x3b,0x26,0xf8,0x60,0xf2,0x6c,0xdb,0x8b,0x5d,0x38,0x36,0x28,0xcd,0x3d,0x65,0x02,0xe6,0x11, - 0x58,0x82,0x63,0xc5,0xab,0xab,0xbc,0xce,0xa9,0x24,0x62,0x84,0xe5,0x49,0x70,0xd9,0x34,0xcb,0xf8,0xc1, - 0x83,0xeb,0xeb,0xeb,0xe1,0xf5,0x17,0xc3,0xb2,0xba,0x78,0x70,0xf8,0xf5,0xd7,0x5f,0x3f,0xf8,0x34,0xcf, - 0x8b,0x8f,0x44,0x51,0xe5,0x3d,0xe7,0x6c,0x10,0xb7,0x5c,0x50,0xbe,0x02,0x94,0x49,0x79,0x4e,0x36,0x21, - 0x7a,0xbe,0x22,0xc2,0xbe,0xe8,0xfb,0x7e,0xa7,0x81,0x4d,0xae,0xf5,0x2e,0xf9,0xbb,0x32,0x82,0x4d,0x8e, - 0xd9,0xa2,0xaa,0xde,0x6f,0x84,0x40,0x26,0x40,0xdc,0x3d,0x14,0xb0,0xcb,0xf3,0xe4,0xb6,0xbe,0x22,0x82, - 0x78,0x7b,0x04,0x0f,0x0f,0x0e,0x0e,0x1e,0x50,0x5e,0x40,0x7c,0x53,0x73,0xd9,0x57,0x82,0xc6,0xf8,0x8f, - 0x07,0xb8,0x23,0x95,0xff,0xbc,0x7a,0x49,0xcd,0xa6,0x39,0x20,0xf3,0xb2,0x59,0xcc,0xd5,0x79,0x39,0xbd, - 0x51,0xc0,0x86,0xea,0x92,0x96,0x42,0x61,0x68,0x0a,0x11,0xca,0x95,0xec,0xda,0x26,0x6f,0xe8,0x6f,0x3a, - 0x9d,0x62,0x3f,0xaa,0xb4,0x6a,0xf2,0x09,0xde,0x6b,0xda,0x13,0x04,0x44,0x25,0x6e,0xf1,0xc4,0x77,0xf8, - 0x39,0x54,0x97,0x0f,0xd5,0xe5,0x17,0xea,0xf2,0x4b,0x75,0xf9,0x95,0xba,0xfc,0xbb,0xba,0xbc,0xa8,0xca, - 0xd5,0x52,0x15,0xe9,0x15,0xad,0x1d,0x8f,0x91,0x00,0xf1,0x4a,0x4d,0x09,0x2a,0xe7,0x6a,0xda,0x28,0xa2, - 0x63,0xe1,0x61,0x83,0x74,0x36,0x48,0xcd,0xd4,0x32,0x9f,0xc0,0xe1,0x46,0x5d,0x56,0x2a,0x5f,0x5c,0x50, - 0x67,0x68,0x50,0x38,0xc4,0xe6,0x6a,0x09,0xc3,0x46,0xb5,0x9a,0xab,0x54,0x9d,0x13,0x2b,0x79,0x5e,0xa9, - 0xf3,0x69,0x4e,0xff,0x4b,0x45,0x8f,0x13,0x02,0x4f,0x8e,0x42,0xa4,0xf8,0x32,0xfb,0xe9,0x8c,0x68,0xe1, - 0x85,0xca,0xd5,0xc7,0xf3,0x29,0x55,0x50,0x7d,0x54,0xbf,0xa9,0x6a,0xa9,0x08,0x98,0xab,0x66,0xa2,0xaa, - 0xd5,0xf9,0x0d,0x51,0xf2,0x75,0xba,0x58,0x2a,0x82,0x6d,0x22,0xbc,0xea,0x65,0x4a,0xa8,0x87,0xf6,0x1a, - 0x31,0x9c,0xf5,0xea,0x9c,0xfe,0x2f,0xf9,0x5e,0x5b,0xb5,0x52,0x84,0xdc,0xd4,0xf5,0x39,0x84,0xe8,0x84, - 0xa4,0xd2,0xd5,0x34,0x2f,0x15,0xb6,0x03,0x18,0xd9,0x8f,0x8a,0x11,0x03,0xb5,0x74,0x4e,0x60,0x27,0xde, - 0x60,0xb0,0x44,0x4d,0x17,0x04,0xa0,0xab,0x8a,0x78,0x90,0x49,0x5a,0x5c,0xa5,0xd4,0xd2,0xa4,0xca,0x97, - 0x0d,0x36,0x85,0x3c,0x10,0xc9,0x0d,0x43,0x37,0x65,0xc6,0x3e,0xa1,0xe1,0xd1,0x7f,0x99,0x2c,0x0d,0xd8, - 0xbc,0x16,0x0d,0xaf,0x4d,0x43,0x0f,0x97,0xd4,0xa2,0x12,0xe4,0xc6,0x43,0x84,0x29,0x01,0xcd,0x59,0x36, - 0x9f,0x12,0x1d,0xcf,0x9b,0x59,0x09,0x42,0x9d,0xa7,0xe7,0x54,0xfb,0x3c,0xbb,0x00,0x2d,0xb0,0xc0,0x66, - 0x06,0x6a,0x95,0xaa,0x35,0x8e,0x2d,0x57,0x0d,0x4a,0x1a,0x1c,0x6b,0x70,0xae,0x45,0xc5,0x84,0x02,0xd2, - 0x1c,0x58,0x27,0x4f,0xe7,0xe5,0x05,0x55,0x52,0xac,0xf8,0x0f,0x50,0x00,0x4d,0xcd,0x82,0x26,0xf4,0x46, - 0x69,0x0c,0xa8,0x32,0x11,0x3a,0x28,0xec,0xf7,0xf2,0x5a,0x99,0xd0,0x59,0x8a,0x83,0x93,0xfd,0xb6,0x2a, - 0x81,0x46,0x66,0x15,0xa8,0xbe,0x06,0xd0,0x02,0x21,0x04,0x83,0x1e,0x01,0xac,0x4a,0x8b,0x7c,0x81,0xb2, - 0x93,0xbc,0x9a,0xf0,0xf9,0x90,0x2f,0x97,0x04,0xa0,0x6a,0xb2,0xaa,0x68,0x87,0x03,0x73,0x01,0xf5,0xd5, - 0x13,0x6a,0x84,0xb2,0x08,0x40,0x25,0xca,0x0f,0x0d,0xb7,0x68,0xf6,0x67,0xe9,0x04,0x00,0x58,0x65,0xf9, - 0x45,0x21,0x87,0xa0,0xba,0x50,0x17,0xf3,0x9b,0xe5,0x25,0x41,0x4e,0x7a,0x91,0x01,0x90,0x33,0x5e,0xfc, - 0x0c,0x12,0x85,0x9a,0x80,0x3a,0xaf,0x71,0xcb,0xda,0xbe,0x14,0xe2,0x96,0xe8,0x0f,0x55,0x48,0x08,0xa9, - 0x9c,0xdf,0x5c,0x94,0xf2,0xcb,0xdf,0x81,0x14,0x50,0xe2,0x4a,0xad,0x6a,0x0e,0xb5,0xc1,0xf3,0xc3,0x7f, - 0xf8,0xcb,0x86,0x61,0x06,0x44,0xd5,0x55,0x9e,0x5d,0x4b,0x84,0xa8,0xba,0x77,0x2f,0xa7,0x62,0x93,0x5f, - 0xf2,0xfd,0xe1,0x34,0xd6,0x5e,0x8e,0x6a,0xce,0x93,0x22,0xf6,0x8d,0x2c,0xf1,0x60,0x87,0xb3,0xeb,0xb2, - 0x62,0xf4,0x57,0x51,0x2f,0x32,0xda,0x08,0xe8,0xc4,0x5c,0xad,0x2a,0x44,0xcf,0x5e,0xe5,0xdd,0xd0,0x56, - 0x2d,0x29,0x50,0xaf,0xf5,0xef,0x1d,0xe1,0xb7,0xec,0x45,0xca,0xfa,0xc0,0xe4,0x08,0xe5,0xe3,0x22,0x0e, - 0x1b,0x6d,0x48,0xdb,0x78,0x86,0xb4,0x83,0x81,0x8d,0x97,0xe6,0x27,0xdb,0x8b,0x07,0x61,0x15,0xd3,0xbe, - 0x08,0xde,0xe4,0x20,0xe2,0x92,0x79,0x8c,0xf8,0x52,0xc3,0x56,0x37,0x5e,0xbf,0xef,0xf4,0x59,0xcf,0x5f, - 0x7f,0xa7,0x5f,0xbf,0x0f,0xf3,0x1c,0x21,0x28,0x1b,0x5b,0xcf,0x31,0xcd,0x1e,0xee,0xac,0x8c,0x7b,0x16, - 0xa1,0x53,0x89,0x29,0x2a,0x4b,0xc2,0x49,0x3a,0x6e,0xc0,0x9f,0xf8,0x58,0x97,0xe4,0x6f,0xc5,0x5e,0xf5, - 0x09,0x8b,0xa8,0xb7,0x7c,0xc8,0x99,0x0f,0xb4,0xd9,0xa1,0x5c,0xe4,0x28,0x36,0xfb,0x6c,0xcc,0xd4,0x19, - 0xaf,0x89,0x10,0xc2,0x79,0xb8,0x20,0x44,0xe1,0x6e,0xe3,0x62,0xda,0x5f,0xd6,0xcb,0xe3,0xb2,0xee,0xce, - 0xce,0xbe,0x21,0x64,0xde,0x9d,0x9e,0x74,0x50,0xd1,0xf0,0xdf,0xd3,0xb1,0x48,0xbb,0xa1,0xbf,0xb0,0x57, - 0x60,0x83,0x8b,0xc9,0x38,0x60,0x53,0x6f,0x49,0x9d,0xb9,0x81,0xfb,0x00,0x66,0xf5,0x48,0xf0,0xc2,0x56, - 0x77,0x1b,0x97,0x97,0x34,0x5c,0xda,0x42,0x48,0xcf,0xbc,0xb5,0x00,0x88,0xe7,0x0d,0x97,0xe2,0xfc,0x7f, - 0xed,0xbd,0xfb,0x7a,0xdb,0x46,0xb2,0x2f,0xfa,0x2a,0x14,0xc6,0xdb,0x06,0x42,0x88,0x92,0x7c,0xc9,0x24, - 0xa0,0x61,0x8e,0x2f,0xb9,0x38,0x89,0x2f,0x2b,0x56,0x9c,0x49,0x24,0x8d,0x17,0x44,0x82,0x12,0x2c,0x0a, - 0xe0,0x80,0xa0,0x64,0x47,0xe4,0x03,0x9d,0x7f,0xcf,0x23,0xec,0x27,0x3b,0xf5,0xab,0xea,0x6e,0x74,0x03, - 0xa0,0x64,0x27,0x7b,0xad,0xb3,0xbf,0xfd,0xed,0x99,0x2f,0x16,0xd8,0xf7,0x4b,0x75,0x75,0x55,0x75,0x5d, - 0xe8,0x0e,0x94,0x1d,0x68,0xb4,0xfe,0x6b,0xca,0x2b,0xa0,0xe8,0xf1,0x66,0xcf,0x0c,0xa3,0x44,0x9d,0xd4, - 0x00,0x2b,0x9e,0x85,0x7f,0x85,0x5c,0x0d,0xc7,0x96,0xab,0x07,0xdd,0x1a,0xbc,0xba,0xd0,0x9a,0xb2,0x33, - 0xe5,0x76,0xc2,0xf7,0x88,0x8a,0x5e,0x87,0x88,0xec,0x32,0xcf,0xe0,0x93,0x4c,0xfb,0x19,0xd3,0x0a,0xb2, - 0xc6,0x83,0x18,0xfb,0x89,0xc0,0x96,0xd6,0x9e,0xc3,0xbc,0x23,0xa2,0xb5,0xcc,0x3c,0xbe,0x4f,0xf5,0xa8, - 0xbf,0x4f,0x3b,0xfb,0xff,0x1e,0xfd,0x4f,0x32,0xf4,0x7f,0xd1,0x8d,0x39,0xce,0x69,0x08,0xd3,0x8c,0x1a, - 0x3d,0x0a,0x4f,0xea,0x86,0xff,0x6d,0x1a,0xfe,0x37,0xed,0xcd,0xc7,0x3a,0xe3,0x3b,0x93,0xf1,0x1d,0x65, - 0x1c,0x67,0xf1,0xce,0xc1,0xe1,0x65,0x30,0xe8,0x1f,0x6e,0xbf,0xbb,0x75,0x78,0x74,0xb4,0x13,0xbe,0x43, - 0xdc,0x80,0x77,0xc4,0x63,0x5c,0xf2,0xc7,0xd8,0x0b,0xf7,0xeb,0xda,0x74,0x79,0xa9,0xda,0x73,0xda,0xc4, - 0xb3,0x3a,0xe3,0xd4,0x64,0x9c,0x52,0xc6,0xd3,0xac,0xd3,0x9a,0x97,0x03,0xd6,0xed,0x44,0xfe,0xa0,0x1f, - 0xec,0xd4,0xe1,0x18,0xc4,0xd8,0x72,0x67,0xe8,0x8f,0xb6,0x0e,0xfe,0xe5,0x1f,0x7d,0x71,0x18,0x04,0x3b, - 0x27,0x1d,0x4a,0x69,0x62,0xaf,0x99,0xd6,0x6e,0x5c,0xa5,0x22,0x94,0x09,0xcc,0x8b,0x28,0x1e,0x23,0x0e, - 0x10,0xbb,0x55,0x05,0xf3,0x39,0x8a,0xcb,0x3a,0xf0,0x0f,0x03,0x51,0x05,0xcf,0x74,0x34,0xeb,0x7f,0x6d, - 0x6f,0xef,0x84,0x1f,0xe8,0xe3,0x70,0xf1,0xc5,0x56,0x76,0x0e,0xfb,0xe9,0x24,0xaf,0x6e,0xed,0x84,0x8f, - 0xb3,0x2e,0xad,0x87,0x37,0x2a,0x74,0x3d,0x01,0x4a,0x2a,0x31,0x07,0x01,0xa3,0x86,0xdf,0xaa,0x6c,0x6b, - 0x8d,0x0f,0xaa,0x6c,0xbe,0xb1,0xac,0xf1,0x9e,0xf7,0x21,0xe3,0x48,0x45,0x9e,0x19,0x80,0xe7,0x04,0x15, - 0x78,0x95,0xf9,0xe2,0x9d,0xde,0x7d,0x2c,0xcf,0x1d,0x1d,0x9c,0xae,0x17,0x5e,0xd5,0x2f,0x38,0x6c,0xd6, - 0x86,0x92,0x20,0x52,0x56,0x22,0xc1,0xd3,0x2d,0xc0,0xae,0x84,0x4a,0x24,0xf0,0x7c,0x51,0xfc,0x01,0xfc, - 0xbc,0x80,0x0b,0xbd,0xe6,0xee,0xd1,0x00,0x7e,0x28,0xe3,0x1f,0xca,0x1b,0xfc,0x37,0x4a,0xf3,0xc6,0x17, - 0xdf,0x16,0xdb,0x5f,0x23,0x80,0x04,0x3c,0x94,0xb2,0x84,0xfd,0x07,0x1d,0x97,0xaf,0x97,0x5a,0x8f,0x65, - 0x9f,0xe2,0x9b,0x50,0x79,0xbc,0xb8,0x95,0x75,0xb8,0xd5,0xbc,0x95,0x1d,0xe4,0x47,0x7d,0x56,0x0b,0x2e, - 0xdd,0x5e,0x4a,0xec,0xf8,0x37,0x35,0x94,0x9e,0x18,0x28,0x3d,0x21,0x28,0x7d,0xd6,0x9c,0xa7,0xb2,0x08, - 0x4f,0x39,0x14,0x26,0x98,0xd5,0x88,0xd8,0xf5,0x6d,0xfe,0xe9,0x85,0xfc,0x47,0x45,0x7e,0xae,0xd3,0xb7, - 0xab,0x42,0x65,0x59,0x31,0xa0,0xad,0x6c,0x91,0xb8,0x7a,0x61,0x1d,0x46,0x9a,0x33,0xf9,0xa7,0x4a,0xb5, - 0xdb,0xe4,0x04,0x6e,0xb3,0x19,0x57,0xda,0xca,0x56,0x6d,0x62,0x6e,0xaf,0x33,0xf6,0x28,0x86,0x88,0xd0, - 0xef,0x33,0x15,0xe7,0x92,0x3d,0xc7,0x7a,0xe1,0x73,0xfa,0x2d,0x04,0x16,0xff,0xfc,0xa9,0x91,0xfd,0xad, - 0xf3,0x9b,0x6e,0x12,0x2f,0x7c,0xe9,0xd6,0x78,0x61,0xff,0x44,0x81,0xe1,0x6b,0x3c,0x00,0x18,0x6f,0x0d, - 0xca,0x8d,0x19,0x78,0x54,0xab,0x19,0x8b,0x3c,0x30,0x05,0x2e,0x19,0xc8,0x1a,0xc5,0x7c,0x8c,0xc8,0x8a, - 0xd4,0x69,0x8d,0xeb,0xb2,0x91,0xfa,0x4d,0x8e,0x17,0xca,0x76,0xc7,0xf6,0xe8,0x36,0xf7,0xeb,0x96,0xf2, - 0x5f,0x9a,0x6e,0x1f,0xbb,0x73,0xbd,0x74,0x13,0xb9,0x53,0x91,0xd1,0xfc,0x8c,0x55,0x1e,0xa9,0x66,0xc1, - 0xa6,0xd2,0xe9,0x36,0xe5,0xbe,0x05,0x71,0x7b,0x6d,0xe6,0x00,0xf2,0x22,0x5f,0x4a,0xc0,0x70,0x44,0x3b, - 0x45,0xe8,0xbc,0x50,0xf1,0x6e,0xfe,0x04,0x68,0xe9,0xd8,0x37,0xd1,0x3b,0x56,0xc4,0xa3,0x04,0x7e,0xb8, - 0xba,0x15,0xec,0x84,0xbf,0x5a,0xe8,0xa9,0x15,0xe0,0x41,0xa8,0xbc,0x37,0xd6,0x5d,0x0f,0xda,0xae,0x62, - 0x89,0xd8,0x1b,0x87,0xba,0x80,0x8a,0xab,0x15,0x41,0x83,0x63,0xc1,0x65,0x62,0x62,0x27,0x21,0x6d,0x1c, - 0x8f,0x54,0x45,0x68,0x1b,0x89,0x71,0x49,0xad,0x6c,0x29,0xf7,0x2b,0x8b,0xd6,0x11,0x11,0x5a,0x19,0x39, - 0x75,0x46,0x01,0x0e,0xe0,0x4b,0xc8,0x3c,0x95,0xa8,0x2a,0x71,0x31,0x80,0xbe,0x16,0xe5,0xc9,0x0f,0xc8, - 0x81,0x51,0x10,0xd7,0xee,0x1e,0x77,0x14,0x76,0x37,0x66,0x62,0x78,0x60,0x44,0x84,0x1f,0x7c,0x38,0xe5, - 0x68,0x5b,0x24,0xda,0x3a,0x3c,0xe9,0xb0,0xe8,0x30,0xc5,0x91,0x28,0xd7,0x1d,0x39,0xfa,0xd5,0xbc,0xf2, - 0x13,0xca,0xc6,0x34,0x79,0x94,0x49,0xec,0x04,0x9c,0x97,0x2e,0x24,0x16,0xcb,0xd9,0x40,0x93,0x00,0x1a, - 0x4d,0xf5,0xfb,0x49,0x50,0xa7,0x22,0x0a,0x0b,0x31,0xad,0x05,0xc2,0x32,0xb3,0x9c,0xbf,0xd0,0x1a,0x42, - 0x63,0x68,0xa8,0xe0,0xf1,0x98,0xc6,0xbc,0x36,0x6b,0x1c,0x6e,0x49,0xe8,0x04,0xf9,0xa5,0x17,0x57,0x96, - 0x3c,0x9c,0x5a,0xde,0xb5,0xc3,0x53,0x71,0x4c,0x4c,0x7b,0x7d,0x1a,0x8c,0x7c,0x6e,0x09,0xd2,0xf7,0xc5, - 0xe8,0x4d,0x8b,0x6c,0x46,0x72,0x78,0x1a,0x44,0x8d,0x1c,0xff,0x14,0xd2,0xf1,0x39,0x64,0xb1,0x4b,0xea, - 0x72,0x8a,0x45,0xad,0x78,0x51,0x27,0xb2,0xc2,0x63,0x78,0x7a,0xe1,0x21,0xd2,0x50,0xa2,0xdc,0xb7,0x7c, - 0x42,0x9b,0x2e,0xdf,0x34,0x49,0x64,0xf1,0xe7,0xdc,0xa8,0xdb,0x28,0x5c,0x13,0xe3,0x5d,0xa5,0x2d,0x8f, - 0xc2,0x0b,0x51,0xdd,0xab,0xb4,0xb1,0x94,0x0a,0x4d,0x2f,0x50,0x2a,0x42,0x5f,0xac,0xaa,0x7e,0x52,0x09, - 0x3b,0x8b,0x75,0xa6,0xc6,0xda,0x4c,0x42,0xd6,0xad,0x0d,0x0a,0x50,0x0e,0x9a,0xb2,0x2f,0xa9,0x89,0x68, - 0xc9,0xcd,0xd9,0x99,0x13,0x13,0x91,0x41,0x68,0x4c,0x48,0xec,0x58,0x25,0x4a,0xef,0xf5,0x4a,0x2b,0xfb, - 0x71,0x58,0x79,0xeb,0x68,0x8a,0x94,0xf9,0x8d,0xcb,0x23,0x48,0x1d,0xda,0x1b,0x9b,0xbc,0x4f,0x39,0x20, - 0xab,0x69,0x79,0x69,0xd1,0x25,0xad,0x18,0x7b,0xcd,0xd8,0x15,0x06,0x0e,0xb3,0xa0,0xf0,0x59,0xe3,0x38, - 0x57,0x6b,0xcb,0x4f,0x4e,0xd0,0x37,0x64,0xe2,0xa0,0xd4,0xab,0x8f,0x21,0x39,0x9d,0x73,0xe1,0xd6,0x5e, - 0x29,0x37,0x36,0xa9,0x76,0xd8,0x6d,0xb9,0xc4,0xd6,0x3e,0x32,0x86,0x5d,0x86,0x6f,0x41,0xa7,0x79,0xa0, - 0x3a,0x6a,0xb5,0xc9,0xad,0xc4,0xbf,0xb2,0x9c,0x5e,0xcb,0xd6,0xbb,0x16,0x6c,0x67,0x6a,0x50,0xf5,0x24, - 0xcb,0x40,0xa7,0x11,0x95,0x83,0xa3,0xc6,0xe8,0xef,0x52,0x1b,0xf8,0x2a,0x4c,0x43,0x7b,0x71,0xa9,0x8a, - 0xd1,0x2f,0xfd,0x29,0xc5,0x43,0xe4,0x65,0x1a,0xa2,0xba,0x36,0x76,0x6e,0x30,0xad,0xa0,0x30,0x68,0x83, - 0x1b,0x77,0x82,0x41,0xf0,0xc6,0x65,0x5e,0xd4,0x5a,0x83,0xcc,0x93,0x85,0xae,0xa7,0x90,0x22,0x9a,0x10, - 0xea,0xd7,0x16,0x96,0xc0,0x2f,0x6c,0xa5,0x64,0x9e,0x29,0x16,0xaa,0x5d,0x6c,0xcb,0xa6,0x86,0xc3,0x3a, - 0xf2,0x10,0x90,0x7d,0x7c,0x89,0x00,0x9f,0x39,0x3b,0x34,0x57,0x0d,0xeb,0x9f,0xc6,0x45,0xe2,0x9f,0xeb, - 0xc8,0x72,0xee,0x6d,0xfb,0x77,0x54,0xdb,0x5d,0x3e,0x8c,0x33,0xde,0x83,0xc2,0xe7,0x68,0x39,0x49,0xe8, - 0x06,0x31,0xba,0x30,0x0b,0x87,0x6a,0xce,0xcd,0x91,0x09,0xe0,0x62,0x4c,0x59,0x7d,0x1f,0x60,0x80,0x8a, - 0x29,0xc2,0x84,0x6a,0xc7,0x67,0x67,0x3a,0xb9,0xde,0xf9,0x3c,0x30,0x89,0x1c,0x29,0x38,0xa8,0x37,0xa7, - 0x0e,0x10,0xaf,0x42,0xfc,0xb0,0xff,0xff,0xa6,0xed,0x23,0x06,0x8e,0x77,0x68,0xdb,0xf4,0xb1,0x1e,0xfb, - 0xb9,0x7b,0xa3,0xd4,0x73,0x35,0x36,0x07,0xe5,0xd1,0xb0,0x12,0xcf,0x5d,0xf4,0x87,0xa1,0x77,0xe4,0x9f, - 0xe0,0x89,0xee,0x02,0xf7,0x62,0x84,0x68,0x47,0xd0,0x0d,0xb2,0xf1,0xd9,0x89,0x51,0x45,0xc6,0x15,0xbd, - 0x5a,0x69,0xc4,0x16,0x98,0x70,0x45,0xf1,0x99,0xba,0xb5,0x4d,0x28,0xda,0xa1,0x5a,0xa7,0x60,0x64,0x59, - 0xd1,0xf6,0xe3,0x2c,0xca,0xaf,0x53,0x0c,0x26,0xb2,0x69,0x7b,0xdb,0xaa,0x80,0x67,0xb2,0xd4,0x38,0x4b, - 0xb1,0x32,0x62,0xda,0xd4,0xb5,0xaf,0x6f,0x22,0x3a,0x0c,0x65,0xd7,0x71,0xe5,0xdd,0x01,0xd0,0x29,0x45, - 0x08,0xfe,0xa9,0x6f,0xc8,0x13,0xc4,0xce,0x08,0x42,0x7d,0x44,0x9d,0xf1,0xab,0x23,0x2a,0x69,0x38,0xa2, - 0x1c,0x93,0x4c,0x7a,0xb1,0x4f,0x68,0xa5,0xc2,0xf6,0xa2,0x58,0xa0,0xc3,0x55,0x41,0xed,0x9b,0x8f,0x50, - 0x22,0x03,0xb4,0xb6,0x07,0x6a,0xce,0x20,0x5f,0x16,0x12,0x9d,0x8b,0x60,0x3d,0xd3,0x51,0x39,0x33,0xc6, - 0xe9,0x25,0xfe,0x65,0x9d,0x17,0xc4,0x7d,0x6d,0x79,0xbf,0x0c,0xe8,0x1c,0x66,0x8e,0xff,0x4c,0xed,0xe3, - 0x6a,0x12,0x8c,0xde,0xf9,0xa5,0xac,0x07,0x22,0x13,0x67,0x9d,0xbe,0x33,0x77,0x0d,0xf3,0x47,0x54,0x99, - 0xf1,0xef,0xc9,0x40,0x5b,0xda,0x3f,0x33,0x76,0x31,0x1a,0x4b,0xd8,0x30,0x5c,0x58,0x5c,0x5a,0xbc,0x7a, - 0x12,0x00,0xc8,0xcf,0x57,0x4c,0xde,0x04,0x59,0x87,0xae,0x4b,0xd9,0x81,0x51,0xeb,0x60,0xc7,0xe1,0x92, - 0x66,0xcb,0x87,0xaa,0xf2,0x97,0xbc,0x8a,0xb3,0x78,0x59,0x2f,0xe9,0x2c,0x9e,0x19,0x67,0x01,0x94,0x30, - 0xc3,0x9a,0x09,0x81,0x3b,0x89,0xcb,0x9a,0x94,0x98,0x5b,0xb6,0xa4,0x72,0x88,0xd0,0xd6,0x14,0x67,0x94, - 0x61,0x7f,0x46,0x1b,0x3b,0xa3,0x8d,0x15,0x4e,0xaa,0xde,0xd8,0x59,0xa0,0xd3,0x0e,0x66,0x47,0xd2,0x76, - 0xc7,0x00,0xa4,0x84,0xe9,0x7e,0x9d,0xfa,0x99,0x5c,0x21,0xa3,0xca,0x9f,0x70,0xa9,0x79,0x30,0x9a,0xd0, - 0x06,0xce,0x2d,0x6a,0x4e,0xfb,0x91,0x5d,0xd4,0x37,0xc0,0x38,0xa4,0xe9,0x12,0x0d,0xb4,0x1b,0x4e,0xe8, - 0xbf,0x79,0x5c,0xbb,0x6a,0x09,0x2f,0x62,0x48,0x00,0xc2,0x13,0xfa,0x33,0x3f,0x0a,0x8f,0x8d,0xea,0x36, - 0x65,0xbd,0x8b,0x33,0x64,0x5d,0xd2,0x9f,0xe3,0xa3,0x70,0x3f,0xde,0x5a,0x0c,0xa7,0x0f,0xd1,0xd5,0xe4, - 0x61,0x7c,0x4c,0x77,0x93,0x7f,0x11,0x8c,0x50,0xbd,0xdf,0x9f,0x1e,0x45,0xa9,0x4f,0x67,0x18,0xad,0x6c, - 0x6f,0xcf,0x8f,0xa2,0xb7,0x94,0x19,0xbe,0xa3,0x43,0xfd,0x11,0x7f,0x41,0x9c,0xe9,0x82,0xdc,0x6a,0xbf, - 0x3f,0x39,0x0a,0x50,0xe8,0x24,0xbc,0xe4,0x42,0xf4,0x17,0x85,0x74,0x7d,0xee,0x73,0x7b,0xfb,0x58,0x0a, - 0x5d,0xa8,0x42,0x17,0x52,0x68,0xbf,0x45,0x07,0xe4,0xe1,0x85,0xba,0x77,0x2d,0x51,0x9c,0x7f,0x22,0x28, - 0xa4,0xee,0xd9,0x69,0xf4,0x44,0x0d,0xef,0x44,0x86,0xd7,0xd5,0x28,0x37,0x20,0x4d,0x5b,0x43,0xab,0xc7, - 0xef,0xa7,0xe2,0xec,0x62,0x1c,0xff,0x92,0xd2,0xfe,0x4c,0xc3,0x39,0x4c,0xe5,0x7d,0x10,0xf4,0xef,0x38, - 0x86,0xe9,0x68,0x7c,0xc0,0x1f,0x47,0x1d,0xce,0x3f,0xea,0xb8,0x84,0x53,0xa2,0x85,0x33,0x8e,0x42,0x68, - 0xd0,0x63,0x72,0xa4,0x79,0x84,0xdb,0xb7,0xdf,0x82,0xce,0x29,0x0c,0x05,0x9f,0x10,0x8d,0xfb,0x8e,0x9a, - 0xd8,0x45,0x6f,0xa3,0x82,0xbe,0x93,0x50,0xcd,0x9f,0xe7,0xb5,0xa4,0x71,0xce,0x8e,0xd4,0xe4,0x96,0x32, - 0x39,0xa4,0x68,0x8f,0xb6,0x5d,0x13,0x5d,0x5a,0x13,0x0d,0x22,0xb7,0xcd,0x7a,0xbe,0xc3,0xe9,0xa3,0x39, - 0x94,0xe8,0x69,0x8a,0x04,0x10,0xfd,0xbd,0xa3,0x40,0xa2,0x33,0xca,0x0f,0x75,0xe8,0x27,0x78,0x6f,0x0a, - 0xa2,0xc9,0xa3,0xe3,0xdb,0xb7,0xcf,0xfd,0xdd,0x50,0x96,0x65,0xed,0x8f,0x39,0x5c,0x36,0x80,0x32,0x62, - 0xa0,0x05,0x85,0x57,0x93,0x50,0xae,0x38,0x94,0x0a,0xe3,0x9e,0x3e,0xa5,0xbf,0x4c,0x76,0xcd,0x31,0xd9, - 0x1a,0x2c,0x41,0x14,0x03,0xfc,0x47,0x68,0x7f,0x42,0x79,0x93,0x3a,0x0c,0x62,0x74,0x63,0xb3,0x91,0xe4, - 0x6f,0x71,0xd4,0x1a,0xbe,0xdb,0x3b,0xca,0xa9,0x53,0x16,0x6e,0xc6,0x0c,0xc5,0xa2,0x72,0x51,0xc3,0xda, - 0xba,0xaa,0x8e,0x85,0x0b,0x61,0xf4,0x0a,0xc6,0x13,0xb5,0x4c,0x30,0xea,0x40,0x7f,0x75,0x51,0xd6,0xa5, - 0x4b,0xf6,0x08,0xa3,0x54,0xda,0xfc,0x51,0x49,0xc0,0x51,0x63,0x7f,0xb5,0x93,0x7e,0xc9,0xfe,0x54,0xcd, - 0x00,0xde,0x35,0x18,0xcf,0x70,0x8c,0x98,0x4d,0xc9,0x49,0x38,0x53,0xee,0x3e,0x08,0x17,0x94,0x6e,0xb4, - 0xa1,0x38,0x59,0xad,0x10,0xdd,0x1d,0x48,0x2f,0x2c,0x85,0xb4,0x0f,0x05,0x21,0x6b,0xbe,0x45,0x2e,0x2e, - 0x1b,0xef,0x1b,0xa8,0xec,0xba,0x26,0xa0,0x5e,0x4d,0xb8,0x9e,0x01,0x79,0xa6,0xae,0x7a,0x5a,0xba,0x6e, - 0x06,0xb6,0x14,0x4b,0x42,0x4a,0xec,0xc0,0xda,0x81,0xc5,0xbf,0x62,0x5d,0x4d,0xb3,0xe3,0x40,0x11,0x04, - 0xd3,0x20,0x60,0x4e,0xfc,0x34,0x59,0x30,0x21,0x0e,0xaa,0x7b,0xe1,0x73,0x22,0xf7,0x6a,0x3a,0xd4,0x71, - 0xe3,0xac,0x11,0xa8,0xa8,0x28,0xd2,0x54,0xc1,0x94,0x5f,0x9d,0x68,0x82,0x70,0xf0,0xc5,0xa1,0xf7,0x65, - 0x8e,0xb9,0x81,0x8b,0x9c,0x66,0xe5,0xa2,0xe2,0x1e,0x09,0xcd,0xec,0x0e,0x2f,0x1e,0x4e,0xf5,0x5e,0x5d, - 0x68,0x07,0x77,0xa7,0xab,0xd5,0xd6,0x3b,0xe2,0x17,0xa7,0x07,0x17,0x47,0x8a,0x33,0x9d,0xc3,0xa4,0x5c, - 0x58,0xd9,0xd3,0xf8,0xd4,0x79,0x3f,0x40,0x8d,0xf9,0x6a,0x75,0xea,0x76,0x4c,0x5c,0x0c,0x0e,0x52,0x16, - 0xe8,0xd5,0x94,0x7d,0x3d,0xb7,0x5d,0xad,0x9c,0x40,0x9a,0x37,0xc3,0x8c,0xb7,0x3e,0x10,0x2e,0x0e,0xae, - 0xce,0x31,0xc8,0x89,0xdc,0x2d,0xd2,0xd9,0xd6,0x39,0x36,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x7d,0x6a,0x67, - 0x93,0x42,0x54,0x6c,0x71,0x78,0x2f,0x3e,0x18,0x8a,0xc0,0x52,0xbf,0xf5,0xb3,0xd7,0x96,0x04,0x8b,0xb9, - 0x0c,0xf7,0xc3,0x33,0x08,0xa9,0x9f,0x22,0xd2,0x7c,0x31,0x59,0xce,0xd2,0x45,0xf8,0x86,0xbe,0x41,0xe3, - 0xbc,0x52,0xda,0x5f,0x97,0xb4,0x26,0x97,0x0f,0xe7,0x59,0x0d,0xc0,0x97,0x4c,0x56,0x9e,0x1d,0xcc,0xb3, - 0x83,0xcb,0x23,0x58,0x7b,0xd1,0xbd,0xb2,0x3b,0xdc,0x7f,0xf8,0xb4,0x2e,0xb2,0x4f,0xe4,0xc5,0xd3,0x83, - 0xfd,0x23,0x55,0x86,0x76,0x4a,0x17,0x17,0xfe,0xc2,0xce,0xe3,0x0b,0xf9,0x03,0xeb,0x8d,0xe0,0x5d,0x4d, - 0xb4,0x66,0x54,0x28,0xb1,0xa7,0xd6,0xf7,0x1b,0x16,0xb6,0x12,0x2a,0xee,0x70,0x52,0xa8,0x6e,0xcb,0x90, - 0x2e,0x49,0xe5,0x93,0x89,0x6f,0x6f,0xf1,0x12,0x83,0x30,0x22,0x30,0xce,0x06,0x74,0xc1,0x9c,0x73,0xc9, - 0xfe,0x43,0x7c,0x20,0x3a,0x94,0xaf,0xe9,0x89,0x79,0x8c,0xc3,0x81,0xc9,0xef,0xb3,0xef,0x27,0xde,0x48, - 0xc6,0xde,0xd8,0x80,0x40,0x68,0xae,0x49,0xa8,0x82,0xa2,0xa3,0x9f,0x39,0xf7,0x26,0xf1,0xd4,0x74,0x3d, - 0x28,0xb9,0x13,0x0c,0xd7,0xfc,0xc4,0x63,0xd6,0xcf,0xd2,0xd4,0x9d,0x93,0x0e,0x0b,0x6e,0xf8,0xf8,0xf4, - 0x41,0x47,0xbe,0x93,0xf6,0xcd,0x41,0x39,0xe6,0x21,0x22,0xbf,0x1c,0xbe,0x8a,0xa1,0xcc,0xaf,0x9e,0x63, - 0xde,0xe8,0x47,0x28,0xff,0x55,0x23,0x0a,0x8d,0x3c,0xd3,0x28,0xc9,0x61,0xf8,0x4a,0xec,0xdf,0x4e,0x85, - 0x18,0xa4,0xeb,0xcf,0x11,0x94,0x9d,0xf2,0x04,0x65,0x1d,0x4e,0x07,0xef,0x44,0x60,0x7b,0x2c,0xf7,0xc1, - 0x49,0xe3,0x1e,0x3e,0x85,0xea,0x2f,0x11,0x2e,0x1a,0xff,0x69,0x80,0xbd,0x8c,0x75,0x1a,0xc1,0x00,0x28, - 0xa6,0xe1,0xe5,0xb0,0xbe,0x17,0x9f,0x12,0x58,0x3c,0xed,0xe2,0x5d,0x9e,0x5a,0xbc,0xcb,0xd3,0x23,0xff, - 0x92,0x47,0x72,0x29,0x8e,0xef,0x79,0xa8,0xfb,0x75,0x23,0x1f,0xa8,0x91,0x0f,0x1d,0x9c,0xef,0x87,0x9a, - 0xf3,0xfd,0xc0,0x9c,0xef,0xa5,0x40,0xd2,0xe3,0xf8,0xb2,0x85,0x5b,0xf9,0x45,0x61,0xc0,0x3a,0xc2,0xb5, - 0xc9,0xc3,0xad,0x78,0x6f,0x78,0xeb,0xe1,0x63,0x62,0x11,0x8d,0xbd,0xca,0x2d,0xb8,0x7f,0x46,0xc2,0xc1, - 0xad,0x23,0x4d,0x7b,0xff,0x9a,0x62,0x7c,0x97,0xd4,0xaa,0x0a,0x75,0x0b,0xdf,0xae,0x7c,0x6f,0x81,0xe5, - 0xdb,0x0d,0x77,0xd5,0x85,0x45,0xfc,0x0f,0x5c,0x02,0x97,0xb5,0xb5,0x98,0xec,0xdf,0x32,0x08,0x79,0x4e, - 0xbc,0x15,0xaf,0x40,0xfa,0x9b,0x72,0xfe,0x95,0x3a,0x68,0xd1,0x32,0x0b,0xd5,0xf9,0x8b,0x0e,0x4e,0xb2, - 0xf0,0x63,0x16,0xee,0x67,0xe1,0x59,0x16,0x7e,0x93,0x85,0xef,0xf3,0x91,0x96,0xe6,0xbf,0xae,0x42,0x2d, - 0x58,0xc3,0xb7,0xc0,0x53,0xe3,0xf9,0x6f,0x4b,0xe2,0x7a,0x89,0x95,0xc5,0x69,0x71,0x39,0x7a,0x55,0x49, - 0x74,0x33,0xb8,0xcd,0x5c,0x47,0x57,0xeb,0x23,0xed,0x58,0xf9,0x3c,0x83,0x17,0xf3,0x17,0x39,0xd1,0x82, - 0xfa,0x91,0xa3,0x1d,0x5e,0x44,0xde,0xc7,0xa9,0xf5,0xf1,0x69,0x92,0x9f,0xa4,0x9e,0x6d,0x9e,0x2a,0x9a, - 0xf8,0x75,0x65,0x96,0xd2,0x2b,0xe1,0xda,0x90,0x55,0x7d,0x2f,0x54,0x54,0xc4,0x9f,0x31,0x06,0xa5,0x6f, - 0xa6,0x5d,0xa7,0xbf,0xcd,0xe0,0x54,0x0d,0xbb,0x93,0x4e,0x1a,0x0f,0xa2,0x10,0x22,0xe9,0x97,0x79,0x13, - 0xd6,0x51,0x78,0x92,0xdb,0xb7,0xb7,0xf8,0x2f,0x31,0x62,0x4a,0xcd,0x72,0xf4,0x03,0x1c,0x1d,0x99,0xcb, - 0xdc,0x19,0xe1,0x5b,0x8b,0xa5,0x10,0xa3,0xae,0x89,0x12,0x25,0xad,0x83,0xe8,0x7d,0x25,0xdf,0xb6,0xb7, - 0x27,0xd3,0x2a,0xe1,0x0b,0x04,0x5e,0xd3,0xf6,0x27,0x5a,0xe9,0xf3,0xdb,0x0a,0x32,0x30,0x4f,0x6b,0x8e, - 0x98,0xd1,0xd1,0xbd,0x9b,0xf9,0x12,0x3b,0x2e,0x08,0x94,0x27,0xaf,0x17,0x3a,0x72,0x6c,0x5c,0xd5,0x51, - 0x64,0x43,0xeb,0x9b,0xfd,0x3a,0xb2,0x6a,0x71,0x7b,0xdd,0xf5,0x72,0xbf,0xa0,0x61,0x3d,0xc9,0x37,0x15, - 0xc2,0xdc,0x44,0x2a,0x4b,0x28,0x12,0x5e,0xfa,0x5f,0xf2,0x2c,0xae,0x2d,0xc9,0x2f,0x1f,0xd4,0x2c,0x22, - 0xee,0xf0,0x48,0x65,0x93,0x80,0x87,0xf0,0x26,0xdc,0x5c,0xaf,0xd6,0x5b,0x35,0x07,0x6d,0x77,0xf7,0x26, - 0xb8,0x6a,0xad,0xe5,0x50,0xbf,0x59,0x9a,0x15,0x15,0x6d,0xea,0x9b,0xd7,0x77,0x98,0x35,0x63,0x00,0xd6, - 0xaa,0x11,0x5b,0x50,0x2d,0x67,0x27,0x96,0x6b,0x59,0x65,0xad,0x5e,0x31,0xaa,0xc4,0x7c,0x7a,0x63,0xf8, - 0xc0,0x9f,0x30,0x40,0x00,0x7c,0xa4,0x4a,0xf2,0xe3,0x38,0xd1,0x38,0x6f,0xf1,0xe3,0xf6,0x6d,0xca,0x57, - 0x19,0xc0,0xf4,0x1a,0x62,0xd5,0x2e,0xb0,0xa7,0xc6,0x5f,0x08,0x5e,0x25,0xb0,0xe7,0xdb,0x2c,0xc4,0xc9, - 0x8a,0x44,0x2d,0xb6,0xb9,0x3e,0xca,0xe2,0x58,0x37,0x86,0x58,0x80,0x4f,0xf8,0x69,0x54,0xa9,0x96,0x88, - 0x0b,0x15,0x4b,0xa0,0xce,0x01,0xea,0xdf,0xd1,0xca,0x94,0xd9,0x09,0x3c,0xc1,0x3e,0xcb,0x16,0x50,0x8e, - 0x8c,0xbd,0x9c,0xf6,0x41,0xe9,0xdc,0xf1,0x9b,0xea,0x44,0x32,0x10,0x2e,0xbe,0x91,0x04,0xe7,0x0f,0xd9, - 0xc8,0xcf,0xeb,0x63,0x8f,0x2b,0xee,0x16,0x75,0x6b,0x9f,0x86,0x46,0xa5,0x38,0x59,0x07,0x41,0xb3,0xa5, - 0xb8,0x1c,0x25,0x91,0xf4,0xdc,0xa9,0x5f,0xd0,0x9a,0xe1,0xb0,0x6c,0xac,0xa4,0x7f,0xe3,0x84,0x5b,0x03, - 0x2d,0x47,0x37,0x0d,0xb5,0x6b,0x81,0x68,0x2f,0x5f,0xdd,0x50,0x4d,0x4d,0xa4,0x73,0x9a,0x5d,0x4d,0xaa, - 0x99,0x43,0xb5,0x22,0xef,0xd8,0x5c,0xc5,0x10,0xf0,0x69,0xbc,0x79,0x7c,0x0c,0x35,0xdf,0x13,0xd4,0xb0, - 0x61,0x98,0xb2,0xee,0x82,0xa0,0x39,0x29,0xa3,0x27,0x45,0x01,0x67,0xb8,0xe1,0x78,0xb1,0x30,0xdf,0x00, - 0x2e,0x5d,0x0c,0x88,0x44,0x7f,0x5b,0xaf,0xb3,0x2a,0xc5,0x7a,0x5b,0xb5,0xcb,0xe8,0x77,0x55,0xbb,0x54, - 0x23,0xad,0xf5,0x70,0x6b,0x97,0xed,0x48,0x97,0xe1,0x76,0x24,0x6d,0x2c,0xdb,0xe8,0x70,0xb2,0x2c,0xf9, - 0x5d,0x30,0x3a,0x10,0xbb,0xb6,0x50,0xa5,0x8b,0x62,0xc7,0xd1,0x3a,0xfc,0x43,0x2f,0x90,0xf3,0x58,0x2b, - 0xd6,0x72,0xdf,0x67,0x8e,0x09,0x5d,0xd3,0x16,0xac,0x65,0x3c,0xde,0xb6,0x09,0x53,0x9e,0xb3,0x58,0xb0, - 0x2a,0xaf,0xf4,0xdd,0xc1,0xfd,0x18,0x85,0xff,0x06,0x09,0x21,0x81,0xad,0x1d,0xb3,0x55,0x99,0x88,0x61, - 0x6f,0xa0,0x76,0xa0,0xe2,0xb7,0xda,0x6d,0x88,0xe0,0x3f,0xd6,0x1c,0xe1,0x30,0xa8,0xdd,0x57,0x5a,0x8f, - 0x66,0x86,0xee,0xb6,0x6d,0x47,0x6b,0x81,0x80,0xb2,0x1f,0xfb,0xb5,0x82,0x67,0x1e,0x90,0x9d,0x45,0x9d, - 0xa5,0xbd,0xac,0x32,0x85,0x46,0x6b,0xa7,0x73,0x7e,0x01,0x8a,0x4a,0x74,0x04,0x58,0xef,0xdd,0xbb,0xba, - 0xbb,0x6d,0xaf,0x6f,0xdc,0xca,0xf5,0xbd,0x6d,0x6f,0x58,0xb0,0x18,0x4e,0x94,0x6c,0xf9,0x7b,0x54,0x58, - 0x01,0x4e,0x17,0x7d,0x5c,0x10,0xf8,0xf4,0xa2,0x45,0x9f,0x65,0xb9,0x51,0xe9,0x17,0x22,0xff,0xc0,0x03, - 0xb4,0x7a,0xfb,0x90,0x14,0x63,0x50,0xb4,0x08,0x46,0x9c,0xc2,0x75,0xf0,0x97,0xff,0x95,0xb0,0x19,0xb1, - 0x2f,0x0f,0x88,0xb0,0xaf,0x1c,0x28,0x47,0x33,0xb4,0xb4,0xf5,0x10,0xe3,0xb7,0xda,0xb2,0x68,0xe6,0x18, - 0xbb,0x2f,0xb1,0x08,0x12,0x65,0x42,0x2a,0x5a,0x61,0xe7,0xf1,0x9c,0xda,0x48,0xda,0x84,0xf0,0x3d,0xe0, - 0x16,0x41,0x9e,0x80,0x2e,0xbe,0x2e,0x0a,0x07,0xeb,0x04,0xe1,0xf2,0xf6,0xed,0xa5,0xc2,0x51,0xfe,0x69, - 0x5c,0x84,0xe7,0xf1,0x32,0x3c,0xc7,0x14,0x08,0xa3,0x9d,0xe2,0xef,0x6a,0x75,0x8e,0xb5,0xe0,0x9f,0x42, - 0xdf,0x6d,0xfd,0xc6,0xd2,0x04,0x7f,0x6b,0xd9,0xe5,0xf3,0xb5,0x2b,0x55,0xbb,0xf4,0xac,0x59,0x70,0x01, - 0xac,0x69,0xbc,0x6c,0x02,0x89,0x18,0x8c,0x8c,0x79,0xee,0x5e,0xb1,0xac,0xb6,0x33,0xd6,0xdc,0xcf,0x5c, - 0xe7,0x0d,0x0a,0x0a,0x80,0x37,0x7f,0xf0,0xa7,0xa1,0x97,0x4c,0x09,0xaa,0x7f,0x12,0xf5,0x0a,0xdb,0x54, - 0xd4,0x2a,0x89,0x78,0xe9,0xae,0x1f,0xcb,0x75,0x10,0x6a,0xf0,0x41,0x67,0x59,0xbe,0x5d,0x88,0x29,0x80, - 0x08,0x3c,0x7e,0xf3,0x6b,0x61,0x95,0xb8,0x35,0x9b,0x84,0x73,0xdb,0x6c,0x0f,0xfe,0x81,0x87,0x3f,0x40, - 0x1a,0xc3,0xdd,0x7f,0x23,0x1a,0x23,0xf3,0x20,0xe4,0x34,0xc1,0x58,0x98,0x3d,0x0c,0xd2,0x54,0xfa,0x14, - 0x1a,0x61,0x84,0x16,0x9b,0x43,0xa5,0x2d,0x9b,0xc4,0xe9,0xba,0x26,0x9b,0x13,0x61,0x5a,0xc2,0x73,0x42, - 0x9f,0x3f,0x66,0x58,0x14,0xc0,0xa3,0xc2,0x1b,0xfc,0xa0,0x6f,0x21,0x18,0x60,0xd8,0x60,0x28,0x26,0x7d, - 0xbd,0x1f,0x99,0x8b,0x15,0x7f,0xee,0xff,0x26,0xbc,0x52,0x2b,0x54,0x44,0x7f,0x10,0x45,0x6d,0x7e,0x7d, - 0x07,0xe5,0xe0,0xe8,0x4a,0x90,0xcc,0x8f,0x59,0x17,0x62,0x69,0x58,0xb6,0x33,0x7e,0xb0,0x8d,0x44,0x64, - 0xeb,0x24,0x50,0xee,0x3c,0xc9,0x11,0x04,0xb7,0xdb,0x1d,0x12,0x57,0x9a,0x97,0xe9,0x85,0x71,0x5c,0x28, - 0x46,0xa2,0x5a,0xf8,0x9c,0x75,0xa1,0x2d,0xf6,0xa8,0x9a,0xb8,0x25,0xc1,0x67,0x17,0xf5,0xa9,0x59,0x10, - 0x5b,0xb4,0x78,0x68,0xb8,0xf2,0x85,0x16,0x3d,0x8e,0xe3,0xec,0x60,0x71,0x34,0x1c,0x4b,0xfc,0x68,0x8c, - 0x62,0x2b,0x1e,0x8b,0xf0,0x1d,0x9c,0x81,0x3a,0xc9,0x63,0xf7,0x24,0x13,0xf2,0xb8,0xc0,0x8b,0x88,0x07, - 0xd8,0x4e,0x8c,0xb5,0x68,0x7e,0xc0,0xe5,0x8e,0xe2,0x71,0x48,0x35,0xd4,0x71,0x1e,0x77,0x1f,0xe7,0x22, - 0x80,0xdc,0xc3,0xf2,0x26,0x3e,0xc3,0x80,0x97,0xf8,0x67,0x4a,0x43,0x9d,0xd6,0x12,0xb0,0xa9,0x1e,0xea, - 0x24,0x2e,0x0f,0xa6,0x47,0xc3,0x49,0xeb,0x1c,0x14,0xa1,0x4a,0x23,0x9a,0x35,0x9e,0x30,0xb9,0x7f,0x92, - 0x56,0x4f,0x8a,0x25,0x8b,0xd9,0x9e,0xce,0x32,0x02,0xb0,0x9f,0x69,0xad,0xe1,0x87,0xfd,0x60,0xc2,0x43, - 0x1c,0xcd,0x64,0xd4,0x93,0x20,0x5a,0xea,0xaf,0xb5,0xb2,0xc0,0x9d,0x57,0x31,0xeb,0x54,0x42,0x0e,0xa9, - 0xad,0xa4,0x85,0x77,0x9a,0xc4,0x4b,0x13,0xa9,0x40,0x97,0x48,0xe8,0xf6,0xb7,0xbd,0x73,0xb4,0xec,0xaf, - 0xbb,0x3d,0x0d,0x98,0xbe,0xa0,0xc5,0xc1,0x72,0x30,0xcb,0x51,0x87,0xc9,0xd4,0x34,0xd5,0x64,0x83,0x45, - 0xb3,0x0d,0x28,0x61,0xa5,0xef,0x1e,0x05,0xf2,0xc6,0x3f,0x3f,0x1b,0x78,0x79,0x17,0x88,0xf8,0xbc,0xcd, - 0xca,0x96,0x43,0xcd,0x17,0x2b,0x4b,0xa6,0xd3,0x64,0xf1,0x82,0xd2,0xfd,0x54,0x19,0xe8,0x87,0x95,0x90, - 0xcb,0x5a,0xc5,0xf0,0x7b,0x66,0x13,0xf4,0xaf,0x3f,0x9c,0x5f,0x3f,0x6a,0x87,0xff,0x70,0xde,0x31,0x23, - 0x54,0x69,0x18,0x3c,0xe8,0xe6,0x0f,0x8a,0xe9,0x74,0x91,0x56,0xdf,0xa7,0xd9,0xc9,0x69,0x65,0xd5,0x6a, - 0x2a,0x2d,0xca,0xfe,0xf1,0x1a,0xd7,0x2e,0xc4,0x30,0x12,0xd8,0x56,0x32,0xed,0x34,0xdc,0x07,0xf1,0x06, - 0xe7,0x67,0x03,0xa3,0xf7,0x13,0x97,0x03,0x4b,0x41,0x4a,0xa5,0xd4,0x80,0xf1,0x4c,0x11,0x13,0x1c,0x74, - 0xba,0xcd,0xe5,0x7c,0x9b,0xc1,0x13,0x28,0x2f,0x57,0x1d,0x71,0xb0,0x07,0x91,0xcf,0x15,0xd1,0xc7,0x5b, - 0x3b,0xa6,0x9b,0x5b,0x2a,0x70,0xa7,0x44,0x0d,0xd2,0xf1,0xba,0x02,0xf6,0xa2,0x2b,0x80,0xd1,0x6a,0x98, - 0x75,0x1e,0x74,0xdb,0x0c,0x27,0x67,0x32,0x7c,0x36,0x53,0x07,0xe3,0xa4,0x5c,0xb4,0x45,0x57,0x6a,0xf1, - 0x1b,0x7c,0x39,0x2e,0xf5,0xd7,0x99,0x11,0x09,0xd6,0xb7,0xba,0x2a,0xee,0x22,0x79,0x95,0x38,0xd4,0x2b, - 0x37,0xc6,0x83,0x19,0x4b,0x6d,0x02,0xda,0x6b,0xeb,0xa6,0x67,0xc0,0xc0,0xcd,0xd8,0x95,0xda,0xb9,0x3b, - 0xc7,0x95,0xe8,0x42,0x05,0xe1,0x47,0xb5,0x01,0x79,0x27,0xd5,0x6c,0x9c,0x62,0x38,0xca,0x11,0xb9,0xe6, - 0xec,0xde,0x88,0x22,0xaa,0x6d,0x4b,0x47,0x45,0x1d,0x8d,0x2b,0x0d,0x47,0x6a,0x32,0x31,0x8b,0xc5,0xcc, - 0xce,0xae,0x61,0x25,0xfe,0x8c,0x1f,0xec,0xa7,0xd9,0xc9,0xc0,0x8a,0x8c,0x1b,0xff,0x5e,0x86,0x75,0x86, - 0x13,0x93,0x37,0x5e,0x64,0x9d,0x59,0x10,0xaa,0xc5,0xdf,0xd9,0xd5,0x1a,0x31,0x79,0xe3,0x9f,0x53,0xa7, - 0xa2,0x1b,0xc4,0xb7,0x15,0x23,0xe5,0x7d,0x4d,0xb1,0x61,0xa7,0x16,0x30,0x65,0x70,0xf6,0x0e,0x04,0x9f, - 0x2b,0x79,0x53,0xa8,0x16,0x2a,0xfa,0x7a,0x2f,0xf9,0x87,0xb2,0x3e,0xbe,0xc9,0x12,0x81,0xad,0xa9,0x15, - 0x36,0xde,0xf6,0x60,0xaa,0x3d,0xe2,0xea,0xec,0xc0,0xbc,0xb6,0xf8,0x35,0xca,0x7e,0x90,0x6c,0xbb,0x93, - 0x80,0x2f,0xe4,0x8d,0x45,0xb5,0x91,0x84,0xb4,0xb9,0xd3,0xae,0xad,0x8e,0x44,0x65,0x07,0x6c,0x5a,0x87, - 0x17,0x30,0xac,0x34,0x2e,0x14,0x0d,0xd5,0x45,0xcc,0x70,0xe0,0xe6,0x59,0x46,0xec,0xff,0xce,0xd8,0x6a, - 0xd2,0x72,0x5d,0xa2,0x11,0x26,0x94,0x0a,0x7f,0xcd,0xa2,0x13,0x37,0x5b,0x5c,0xd1,0x75,0x47,0xca,0x6a, - 0x2b,0xca,0xb3,0xf7,0x1e,0xdb,0x37,0xb8,0x5c,0xde,0xcc,0x93,0x35,0xd2,0xe2,0xbc,0x64,0xdf,0x2f,0xa9, - 0x1b,0x06,0xbb,0x36,0x71,0xd7,0x1e,0x06,0x1d,0x0e,0x52,0x79,0x72,0xaa,0x9d,0x8e,0xf8,0x62,0xba,0x71, - 0x62,0xf4,0x87,0x42,0x44,0xf8,0x0d,0x95,0xc5,0x5a,0xed,0x14,0x26,0x6d,0x7b,0xe0,0x4e,0x5d,0x0f,0xdc, - 0xda,0xa1,0x30,0xd4,0xa0,0x68,0x29,0x9e,0x40,0x95,0x4a,0x3b,0xbf,0x87,0x3e,0xff,0xb3,0xda,0x23,0x81, - 0x6f,0x8d,0xe9,0x1b,0x28,0x85,0x48,0x18,0xec,0xdb,0xb7,0x7f,0xc8,0xf1,0xdf,0x00,0x6e,0xb4,0x40,0xb7, - 0x41,0x95,0xf9,0x19,0xec,0x32,0x76,0xe5,0x60,0xfe,0x90,0x85,0xdf,0x41,0x99,0xf2,0xea,0xf0,0xca,0xf7, + 0x7c,0xa7,0x8a,0xe1,0xf7,0x96,0xc3,0xf6,0xfa,0xe1,0xf0,0xab,0xe1,0xe1,0x17,0x12,0xa6,0xe5,0xa7,0x4a, + 0xfd,0x58,0xa9,0x1f,0x2a,0xf5,0xa2,0x52,0xbf,0x57,0xea,0xfb,0x4a,0xfd,0x56,0xa9,0xef,0x2a,0xf5,0x6d, + 0xc5,0xe1,0x34,0xf8,0xde,0x67,0x7d,0xe7,0xab,0xfa,0x99,0xd3,0xf8,0x6e,0x1b,0x85,0x7a,0x89,0xcc,0x4c, + 0x95,0x4c,0x90,0x92,0xfb,0x7d,0x40,0x1e,0x5e,0xc0,0x74,0x90,0x4a,0xff,0xbb,0x6b,0x3b,0x6f,0x43,0x24, + 0xd9,0xfb,0xcd,0x69,0x59,0x7e,0xae,0x58,0xa4,0x16,0x48,0x44,0x63,0x38,0x5e,0x34,0x08,0xda,0xa2,0x6f, + 0x0b,0xd2,0x85,0x02,0x69,0x84,0xd7,0x97,0x72,0x89,0x2e,0x99,0x7c,0x74,0x99,0x72,0xd9,0x8e,0xce,0xb3, + 0x71,0xd4,0x91,0x03,0xb1,0x73,0xc9,0x39,0x1b,0xf5,0x2f,0xee,0xfc,0x44,0x2e,0x7b,0xcf,0xa6,0x79,0x03, + 0x23,0x3a,0x35,0xad,0xd2,0x8b,0x0b,0x7e,0xaa,0x97,0xd9,0x7c,0xce,0x35,0x53,0xdf,0xff,0xc9,0x85,0xe9, + 0x20,0x28,0xaf,0x67,0x84,0xe0,0x6b,0xc2,0x60,0xc4,0x54,0xb2,0x4b,0xa6,0x4a,0x57,0x4d,0x39,0x2b,0x27, + 0xab,0x9a,0x9f,0x96,0xf3,0xf4,0x46,0xe9,0x0e,0x71,0xe0,0x11,0x3a,0xaa,0x61,0xa7,0x47,0x24,0xeb,0xbc, + 0xa6,0xf3,0x9b,0xe6,0xae,0xca,0x94,0x21,0xed,0xf4,0xaf,0x29,0xaf,0x5f,0xb9,0xcf,0xe6,0xc5,0x0c,0x1d, + 0xef,0xc4,0xf9,0x4c,0xf3,0x1a,0xdd,0x9b,0xaa,0xac,0x90,0x5f,0x44,0x30,0x28,0x4a,0x9a,0xc2,0x1c,0x40, + 0xac,0x2e,0xf3,0xe9,0x94,0xba,0x86,0xc3,0xb1,0xc9,0xaa,0x45,0x5e,0x20,0x91,0x20,0xaa,0x6a,0x54,0x5e, + 0x2f,0xd2,0xa5,0xca,0x9b,0x6c,0x21,0x91,0x4e,0xe6,0x65,0xb9,0x54,0xe6,0x9a,0x29,0x25,0x8d,0x16,0x25, + 0x42,0xb5,0x28,0x84,0x97,0xa8,0xf3,0xdf,0x09,0x45,0x95,0xf5,0x65,0x0a,0x86,0xd3,0xb5,0x50,0x94,0x88, + 0x1e,0x45,0xeb,0x4c,0xcd,0x2c,0x53,0xc2,0x46,0xb4,0x69,0x3f,0xe5,0x0d,0x91,0xb4,0xe9,0xb4,0x2c,0xe6, + 0x88,0xaa,0xf2,0xdb,0x8a,0xb6,0xe0,0x54,0x69,0xd7,0xca,0xa9,0x12,0xb6,0x88,0x60,0x22,0x5d,0xcc,0x09, + 0x18,0x94,0x1d,0x13,0x7c,0x30,0x79,0xb6,0xed,0xc5,0x2e,0x1c,0x1b,0x94,0xe6,0x9e,0x32,0x01,0xf3,0x08, + 0x2c,0xc1,0xb1,0xe2,0xd5,0x55,0x5e,0xe7,0x54,0x12,0x31,0xc2,0xf2,0x24,0xb8,0x6c,0x9a,0x65,0xfc,0xe0, + 0xc1,0xf5,0xf5,0xf5,0xf0,0xfa,0x8b,0x61,0x59,0x5d,0x3c,0x38,0xfc,0xfa,0xeb,0xaf,0x1f,0x7c,0x9a,0xe7, + 0xc5,0x47,0xa2,0xa8,0xf2,0x9e,0x73,0x36,0x88,0x5b,0x2e,0x28,0x5f,0x01,0xca,0xa4,0x3c,0x27,0x9b,0x10, + 0x3d,0x5f,0x11,0x61,0x5f,0xf4,0x7d,0xbf,0xd3,0xc0,0x26,0xd7,0x7a,0x97,0xfc,0x5d,0x19,0xc1,0x26,0xc7, + 0x6c,0x51,0x55,0xef,0x37,0x42,0x20,0x13,0x20,0xee,0x1e,0x0a,0xd8,0xe5,0x79,0x72,0x5b,0x5f,0x11,0x41, + 0xbc,0x3d,0x82,0x87,0x07,0x07,0x07,0x0f,0x28,0x2f,0x20,0xbe,0xa9,0xb9,0xec,0x2b,0x41,0x63,0xfc,0xc7, + 0x03,0xdc,0x91,0xca,0x7f,0x5e,0xbf,0xa2,0x66,0xd3,0x1c,0x90,0x79,0xd9,0x2c,0xe6,0xea,0xbc,0x9c,0xde, + 0x28,0x60,0x43,0x75,0x49,0x4b,0xa1,0x30,0x34,0x85,0x08,0xe5,0x4a,0x76,0x6d,0x93,0x37,0xf4,0x37,0x9d, + 0x4e,0xb1,0x1f,0x55,0x5a,0x35,0xf9,0x04,0xef,0x35,0xed,0x09,0x02,0xa2,0x12,0xb7,0x78,0xe2,0x3b,0xfc, + 0x1c,0xaa,0xcb,0x87,0xea,0xf2,0x0b,0x75,0xf9,0xa5,0xba,0xfc,0x4a,0x5d,0xfe,0x5d,0x5d,0x5e,0x54,0xe5, + 0x6a,0xa9,0x8a,0xf4,0x8a,0xd6,0x8e,0xc7,0x48,0x80,0x78,0xa5,0xa6,0x04,0x95,0x73,0x35,0x6d,0x14,0xd1, + 0xb1,0xf0,0xb0,0x41,0x3a,0x1b,0xa4,0x66,0x6a,0x99,0x4f,0xe0,0x70,0xa3,0x2e,0x2b,0x95,0x2f,0x2e,0xa8, + 0x33,0x34,0x28,0x1c,0x62,0x73,0xb5,0x84,0x61,0xa3,0x5a,0xcd,0x55,0xaa,0xce,0x89,0x95,0x3c,0xaf,0xd4, + 0xf9,0x34,0xa7,0xff,0xa5,0xa2,0xc7,0x09,0x81,0x27,0x47,0x21,0x52,0x7c,0x99,0xfd,0x74,0x46,0xb4,0xf0, + 0x42,0xe5,0xea,0xe3,0xf9,0x94,0x2a,0xa8,0x3e,0xaa,0xdf,0x54,0xb5,0x54,0x04,0xcc,0x55,0x33,0x51,0xd5, + 0xea,0xfc,0x86,0x28,0xf9,0x3a,0x5d,0x2c,0x15,0xc1,0x36,0x11,0x5e,0xf5,0x32,0x25,0xd4,0x43,0x7b,0x8d, + 0x18,0xce,0x7a,0x75,0x4e,0xff,0x97,0x7c,0xaf,0xad,0x5a,0x29,0x42,0x6e,0xea,0xfa,0x1c,0x42,0x74,0x42, + 0x52,0xe9,0x6a,0x9a,0x97,0x0a,0xdb,0x01,0x8c,0xec,0x47,0xc5,0x88,0x81,0x5a,0x3a,0x27,0xb0,0x13,0x6f, + 0x30,0x58,0xa2,0xa6,0x0b,0x02,0xd0,0x55,0x45,0x3c,0xc8,0x24,0x2d,0xae,0x52,0x6a,0x69,0x52,0xe5,0xcb, + 0x06,0x9b,0x42,0x1e,0x88,0xe4,0x86,0xa1,0x9b,0x32,0x63,0x9f,0xd0,0xf0,0xe8,0xbf,0x4c,0x96,0x06,0x6c, + 0x5e,0x8b,0x86,0xd7,0xa6,0xa1,0x87,0x4b,0x6a,0x51,0x09,0x72,0xe3,0x21,0xc2,0x94,0x80,0xe6,0x2c,0x9b, + 0x4f,0x89,0x8e,0xe7,0xcd,0xac,0x04,0xa1,0xce,0xd3,0x73,0xaa,0x7d,0x9e,0x5d,0x80,0x16,0x58,0x60,0x33, + 0x03,0xb5,0x4a,0xd5,0x1a,0xc7,0x96,0xab,0x06,0x25,0x0d,0x8e,0x35,0x38,0xd7,0xa2,0x62,0x42,0x01,0x69, + 0x0e,0xac,0x93,0xa7,0xf3,0xf2,0x82,0x2a,0x29,0x56,0xfc,0x07,0x28,0x80,0xa6,0x66,0x41,0x13,0x7a,0xa3, + 0x34,0x06,0x54,0x99,0x08,0x1d,0x14,0xf6,0x7b,0x79,0xad,0x4c,0xe8,0x2c,0xc5,0xc1,0xc9,0x7e,0x5b,0x95, + 0x40,0x23,0xb3,0x0a,0x54,0x5f,0x03,0x68,0x81,0x10,0x82,0x41,0x8f,0x00,0x56,0xa5,0x45,0xbe,0x40,0xd9, + 0x49,0x5e,0x4d,0xf8,0x7c,0xc8,0x97,0x4b,0x02,0x50,0x35,0x59,0x55,0xb4,0xc3,0x81,0xb9,0x80,0xfa,0xea, + 0x09,0x35,0x42,0x59,0x04,0xa0,0x12,0xe5,0x87,0x86,0x5b,0x34,0xfb,0xb3,0x74,0x02,0x00,0xac,0xb2,0xfc, + 0xa2,0x90,0x43,0x50,0x5d,0xa8,0x8b,0xf9,0xcd,0xf2,0x92,0x20,0x27,0xbd,0xc8,0x00,0xc8,0x19,0x2f,0x7e, + 0x06,0x89,0x42,0x4d,0x40,0x9d,0xd7,0xb8,0x65,0x6d,0x5f,0x0a,0x71,0x4b,0xf4,0x87,0x2a,0x24,0x84,0x54, + 0xce,0x6f,0x2e,0x4a,0xf9,0xe5,0xef,0x40,0x0a,0x28,0x71,0xa5,0x56,0x35,0x87,0xda,0xe0,0xf9,0xe1,0x3f, + 0xfc,0x65,0xc3,0x30,0x03,0xa2,0xea,0x2a,0xcf,0xae,0x25,0x42,0x54,0xdd,0xbb,0x97,0x53,0xb1,0xc9,0x2f, + 0xf9,0xfe,0x70,0x1a,0x6b,0x2f,0x47,0x35,0xe7,0x49,0x11,0xfb,0x46,0x96,0x78,0xb0,0xc3,0xd9,0x75,0x59, + 0x31,0xfa,0xab,0xa8,0x17,0x19,0x6d,0x04,0x74,0x62,0xae,0x56,0x15,0xa2,0x67,0xaf,0xf2,0x6e,0x68,0xab, + 0x96,0x14,0xa8,0xd7,0xfa,0xf7,0x8e,0xf0,0x5b,0xf6,0x22,0x65,0x7d,0x60,0x72,0x84,0xf2,0x71,0x11,0x87, + 0x8d,0x36,0xa4,0x6d,0x3c,0x43,0xda,0xc1,0xc0,0xc6,0x4b,0xf3,0x93,0xed,0xc5,0x83,0xb0,0x8a,0x69,0x5f, + 0x04,0x6f,0x72,0x10,0x71,0xc9,0x3c,0x46,0x7c,0xa9,0x61,0xab,0x1b,0x6f,0x3e,0x74,0xfa,0xac,0xe7,0xaf, + 0xbf,0xd3,0x6f,0x3e,0x84,0x79,0x8e,0x10,0x94,0x8d,0xad,0xe7,0x98,0x66,0x0f,0x77,0x56,0xc6,0x3d,0x8b, + 0xd0,0xa9,0xc4,0x14,0x95,0x25,0xe1,0x24,0x1d,0x37,0xe0,0x4f,0x7c,0xac,0x4b,0xf2,0xb7,0x62,0xaf,0xfa, + 0x84,0x45,0xd4,0x5b,0x3e,0xe4,0xcc,0x07,0xda,0xec,0x50,0x2e,0x72,0x14,0x9b,0x7d,0x36,0x66,0xea,0x8c, + 0xd7,0x44,0x08,0xe1,0x3c,0x5c,0x10,0xa2,0x70,0xb7,0x71,0x31,0xed,0x2f,0xeb,0xe5,0x71,0x59,0x77,0x67, + 0x67,0xdf,0x10,0x32,0xef,0x4e,0x4f,0x3a,0xa8,0x68,0xf8,0x1f,0xe8,0x58,0xa4,0xdd,0xd0,0x5f,0xd8,0x2b, + 0xb0,0xc1,0xc5,0x64,0x1c,0xb0,0xa9,0xb7,0xa4,0xce,0xdc,0xc0,0x7d,0x00,0xb3,0x7a,0x24,0x78,0x61,0xab, + 0xbb,0x8d,0xcb,0x4b,0x1a,0x2e,0x6d,0x21,0xa4,0x67,0xde,0x5a,0x00,0xc4,0xf3,0x86,0x4b,0x71,0xfe,0xbf, + 0xf6,0xde,0x7d,0xbd,0x6d,0x23,0xd9,0x17,0x7d,0x15,0x0a,0xe3,0x6d,0x03,0x21,0x44,0x49,0xbe,0x64,0x12, + 0xd0,0x30,0xc7,0x97,0x5c,0x9c,0xc4,0x97,0x15,0x2b,0xce,0x24,0x92,0xc6,0x0b,0x22,0x41,0x09,0x16,0x05, + 0x70,0x40,0x50,0xb2,0x23,0xf2,0x81,0xce,0xbf,0xe7,0x11,0xf6,0x93,0x9d,0xfa,0x55,0x75,0x37,0xba,0x01, + 0x50,0xb2,0x93,0xbd,0xd6,0xd9,0xdf,0xfe,0xf6,0xcc,0x17,0x0b,0xec,0xfb,0xa5,0xba,0xba,0xaa,0xba,0x2e, + 0x74,0x07,0xca,0x0e,0x34,0x5a,0xff,0x35,0xe5,0x15,0x50,0xf4,0x78,0xb3,0x67,0x86,0x51,0xa2,0x4e,0x6a, + 0x80,0x15,0xcf,0xc2,0xbf,0x42,0xae,0x86,0x63,0xcb,0xd5,0x83,0x6e,0x0d,0x5e,0x5d,0x68,0x4d,0xd9,0x99, + 0x72,0x3b,0xe1,0x7b,0x44,0x45,0xaf,0x43,0x44,0x76,0x99,0x67,0xf0,0x49,0xa6,0xfd,0x8c,0x69,0x05,0x59, + 0xe3,0x41,0x8c,0xfd,0x44,0x60,0x4b,0x6b,0xcf,0x61,0xde,0x11,0xd1,0x5a,0x66,0x1e,0xdf,0xa7,0x7a,0xd4, + 0xdf,0xa7,0x9d,0xfd,0x7f,0x8f,0xfe,0x27,0x19,0xfa,0xbf,0xe8,0xc6,0x1c,0xe7,0x34,0x84,0x69,0x46,0x8d, + 0x1e,0x85,0x27,0x75,0xc3,0xff,0x36,0x0d,0xff,0x9b,0xf6,0xe6,0x63,0x9d,0xf1,0x9d,0xc9,0xf8,0x8e,0x32, + 0x8e,0xb3,0x78,0xe7,0xe0,0xf0,0x32,0x18,0xf4,0x0f,0xb7,0xdf,0xdd,0x3a,0x3c,0x3a,0xda,0x09,0xdf,0x21, + 0x6e,0xc0,0x3b,0xe2,0x31,0x2e,0xf9,0x63,0xec,0x85,0xfb,0x75,0x6d,0xba,0xbc,0x54,0xed,0x39,0x6d,0xe2, + 0x59,0x9d,0x71,0x6a,0x32,0x4e,0x29,0xe3,0x69,0xd6,0x69,0xcd,0xcb,0x01,0xeb,0x76,0x22,0x7f,0xd0,0x0f, + 0x76,0xea,0x70,0x0c,0x62,0x6c,0xb9,0x33,0xf4,0x47,0x5b,0x07,0xff,0xf2,0x8f,0xbe,0x38,0x0c,0x82,0x9d, + 0x93,0x0e,0xa5,0x34,0xb1,0xd7,0x4c,0x6b,0x37,0xae,0x52,0x11,0xca,0x04,0xe6,0x45,0x14,0x8f,0x11,0x07, + 0x88,0xdd,0xaa,0x82,0xf9,0x1c,0xc5,0x65,0x1d,0xf8,0x87,0x81,0xa8,0x82,0x67,0x3a,0x9a,0xf5,0xbf,0xb6, + 0xb7,0x77,0xc2,0x0f,0xf4,0x71,0xb8,0xf8,0x62,0x2b,0x3b,0x87,0xfd,0x74,0x92,0x57,0xb7,0x76,0xc2,0xc7, + 0x59,0x97,0xd6,0xc3,0x1b,0x15,0xba,0x9e,0x00,0x25,0x95,0x98,0x83,0x80,0x51,0xc3,0x6f,0x55,0xb6,0xb5, + 0xc6,0x07,0x55,0x36,0xdf,0x58,0xd6,0x78,0xcf,0xfb,0x90,0x71,0xa4,0x22,0xcf,0x0c,0xc0,0x73,0x82,0x0a, + 0xbc,0xca,0x7c,0xf1,0x4e,0xef,0x3e,0x96,0xe7,0x8e,0x0e,0x4e,0xd7,0x0b,0xaf,0xea,0x17,0x1c,0x36,0x6b, + 0x43,0x49,0x10,0x29,0x2b,0x91,0xe0,0xe9,0x16,0x60,0x57,0x42,0x25,0x12,0x78,0xbe,0x28,0xfe,0x00,0x7e, + 0x5e,0xc0,0x85,0x5e,0x73,0xf7,0x68,0x00,0x3f,0x94,0xf1,0x0f,0xe5,0x0d,0xfe,0x1b,0xa5,0x79,0xe3,0x8b, + 0x6f,0x8b,0xed,0xaf,0x11,0x40,0x02,0x1e,0x4a,0x59,0xc2,0xfe,0x83,0x8e,0xcb,0xd7,0x4b,0xad,0xc7,0xb2, + 0x4f,0xf1,0x4d,0xa8,0x3c,0x5e,0xdc,0xca,0x3a,0xdc,0x6a,0xde,0xca,0x0e,0xf2,0xa3,0x3e,0xab,0x05,0x97, + 0x6e,0x2f,0x25,0x76,0xfc,0x59,0x0d,0xa5,0x27,0x06,0x4a,0x4f,0x08,0x4a,0xbf,0x69,0xce,0x53,0x59,0x84, + 0xa7,0x1c,0x0a,0x13,0xcc,0x6a,0x44,0xec,0xfa,0x36,0xff,0xf4,0x42,0xfe,0xa3,0x22,0x3f,0xd7,0xe9,0xdb, + 0x55,0xa1,0xb2,0xac,0x18,0xd0,0x56,0xb6,0x48,0x5c,0xbd,0xb0,0x0e,0x23,0xcd,0x99,0xfc,0x53,0xa5,0xda, + 0x6d,0x72,0x02,0xb7,0xd9,0x8c,0x2b,0x6d,0x65,0xab,0x36,0x31,0xb7,0xf7,0x19,0x7b,0x14,0x43,0x44,0xe8, + 0xd7,0x99,0x8a,0x73,0xc9,0x9e,0x63,0xbd,0xf0,0x39,0xfd,0x16,0x02,0x8b,0x7f,0xfe,0xd4,0xc8,0xfe,0xd6, + 0xf9,0x4d,0x37,0x89,0x17,0xbe,0x74,0x6b,0xbc,0xb0,0x7f,0xa2,0xc0,0xf0,0x3d,0x1e,0x00,0x8c,0xb7,0x06, + 0xe5,0xc6,0x0c,0x3c,0xaa,0xd5,0x8c,0x45,0x1e,0x98,0x02,0x97,0x0c,0x64,0x8d,0x62,0x3e,0x46,0x64,0x45, + 0xea,0xb4,0xc6,0x75,0xd9,0x48,0xfd,0x26,0xc7,0x0b,0x65,0xbb,0x63,0x7b,0x74,0x9b,0xfb,0x75,0x4b,0xf9, + 0x2f,0x4d,0xb7,0x8f,0xdd,0xb9,0x5e,0xba,0x89,0xdc,0xa9,0xc8,0x68,0x7e,0xc6,0x2a,0x8f,0x54,0xb3,0x60, + 0x53,0xe9,0x74,0x9b,0x72,0xdf,0x82,0xb8,0xbd,0x36,0x73,0x00,0x79,0x91,0x2f,0x25,0x60,0x38,0xa2,0x9d, + 0x22,0x74,0x5e,0xa8,0x78,0x37,0x7f,0x02,0xb4,0x74,0xec,0x9b,0xe8,0x1d,0x2b,0xe2,0x51,0x02,0x3f,0x5c, + 0xdd,0x0a,0x76,0xc2,0x5f,0x2d,0xf4,0xd4,0x0a,0xf0,0x20,0x54,0xde,0x1b,0xeb,0xae,0x07,0x6d,0x57,0xb1, + 0x44,0xec,0x8d,0x43,0x5d,0x40,0xc5,0xd5,0x8a,0xa0,0xc1,0xb1,0xe0,0x32,0x31,0xb1,0x93,0x90,0x36,0x8e, + 0x47,0xaa,0x22,0xb4,0x8d,0xc4,0xb8,0xa4,0x56,0xb6,0x94,0xfb,0x95,0x45,0xeb,0x88,0x08,0xad,0x8c,0x9c, + 0x3a,0xa3,0x00,0x07,0xf0,0x25,0x64,0x9e,0x4a,0x54,0x95,0xb8,0x18,0x40,0x5f,0x8b,0xf2,0xe4,0x07,0xe4, + 0xc0,0x28,0x88,0x6b,0x77,0x8f,0x3b,0x0a,0xbb,0x1b,0x33,0x31,0x3c,0x30,0x22,0xc2,0x0f,0x3e,0x9c,0x72, + 0xb4,0x2d,0x12,0x6d,0x1d,0x9e,0x74,0x58,0x74,0x98,0xe2,0x48,0x94,0xeb,0x8e,0x1c,0xfd,0x6a,0x5e,0xf9, + 0x09,0x65,0x63,0x9a,0x3c,0xca,0x24,0x76,0x02,0xce,0x4b,0x17,0x12,0x8b,0xe5,0x6c,0xa0,0x49,0x00,0x8d, + 0xa6,0xfa,0xfd,0x24,0xa8,0x53,0x11,0x85,0x85,0x98,0xd6,0x02,0x61,0x99,0x59,0xce,0x5f,0x68,0x0d,0xa1, + 0x31,0x34,0x54,0xf0,0x78,0x4c,0x63,0x5e,0x9b,0x35,0x0e,0xb7,0x24,0x74,0x82,0xfc,0xd2,0x8b,0x2b,0x4b, + 0x1e,0x4e,0x2d,0xef,0xda,0xe1,0xa9,0x38,0x26,0xa6,0xbd,0x3e,0x0d,0x46,0x3e,0xb7,0x04,0xe9,0xfb,0x62, + 0xf4,0xa6,0x45,0x36,0x23,0x39,0x3c,0x0d,0xa2,0x46,0x8e,0x7f,0x0a,0xe9,0xf8,0x1c,0xb2,0xd8,0x25,0x75, + 0x39,0xc5,0xa2,0x56,0xbc,0xa8,0x13,0x59,0xe1,0x31,0x3c,0xbd,0xf0,0x10,0x69,0x28,0x51,0xee,0x5b,0x3e, + 0xa1,0x4d,0x97,0x6f,0x9a,0x24,0xb2,0xf8,0x73,0x6e,0xd4,0x6d,0x14,0xae,0x89,0xf1,0xae,0xd2,0x96,0x47, + 0xe1,0x85,0xa8,0xee,0x55,0xda,0x58,0x4a,0x85,0xa6,0x17,0x28,0x15,0xa1,0x2f,0x56,0x55,0x3f,0xa9,0x84, + 0x9d,0xc5,0x3a,0x53,0x63,0x6d,0x26,0x21,0xeb,0xd6,0x06,0x05,0x28,0x07,0x4d,0xd9,0x97,0xd4,0x44,0xb4, + 0xe4,0xe6,0xec,0xcc,0x89,0x89,0xc8,0x20,0x34,0x26,0x24,0x76,0xac,0x12,0xa5,0xf7,0x7a,0xa5,0x95,0xfd, + 0x38,0xac,0xbc,0x75,0x34,0x45,0xca,0xfc,0xc6,0xe5,0x11,0xa4,0x0e,0xed,0x8d,0x4d,0xde,0xa7,0x1c,0x90, + 0xd5,0xb4,0xbc,0xb4,0xe8,0x92,0x56,0x8c,0xbd,0x66,0xec,0x0a,0x03,0x87,0x59,0x50,0xf8,0xac,0x71,0x9c, + 0xab,0xb5,0xe5,0x27,0x27,0xe8,0x1b,0x32,0x71,0x50,0xea,0xd5,0xc7,0x90,0x9c,0xce,0xb9,0x70,0x6b,0xaf, + 0x94,0x1b,0x9b,0x54,0x3b,0xec,0xb6,0x5c,0x62,0x6b,0x1f,0x19,0xc3,0x2e,0xc3,0xb7,0xa0,0xd3,0x3c,0x50, + 0x1d,0xb5,0xda,0xe4,0x56,0xe2,0x5f,0x59,0x4e,0xaf,0x65,0xeb,0x5d,0x0b,0xb6,0x33,0x35,0xa8,0x7a,0x92, + 0x65,0xa0,0xd3,0x88,0xca,0xc1,0x51,0x63,0xf4,0x77,0xa9,0x0d,0x7c,0x15,0xa6,0xa1,0xbd,0xb8,0x54,0xc5, + 0xe8,0x97,0xfe,0x94,0xe2,0x21,0xf2,0x32,0x0d,0x51,0x5d,0x1b,0x3b,0x37,0x98,0x56,0x50,0x18,0xb4,0xc1, + 0x8d,0x3b,0xc1,0x20,0x78,0xe3,0x32,0x2f,0x6a,0xad,0x41,0xe6,0xc9,0x42,0xd7,0x53,0x48,0x11,0x4d,0x08, + 0xf5,0x6b,0x0b,0x4b,0xe0,0x17,0xb6,0x52,0x32,0xcf,0x14,0x0b,0xd5,0x2e,0xb6,0x65,0x53,0xc3,0x61,0x1d, + 0x79,0x08,0xc8,0x3e,0xbe,0x44,0x80,0xcf,0x9c,0x1d,0x9a,0xab,0x86,0xf5,0x4f,0xe3,0x22,0xf1,0xcf,0x75, + 0x64,0x39,0xf7,0xb6,0xfd,0x3b,0xaa,0xed,0x2e,0x1f,0xc6,0x19,0xef,0x41,0xe1,0x73,0xb4,0x9c,0x24,0x74, + 0x83,0x18,0x5d,0x98,0x85,0x43,0x35,0xe7,0xe6,0xc8,0x04,0x70,0x31,0xa6,0xac,0xbe,0x0f,0x30,0x40,0xc5, + 0x14,0x61,0x42,0xb5,0xe3,0xb3,0x33,0x9d,0x5c,0xef,0x7c,0x1e,0x98,0x44,0x8e,0x14,0x1c,0xd4,0x9b,0x53, + 0x07,0x88,0x57,0x21,0x7e,0xd8,0xff,0x7f,0xd3,0xf6,0x11,0x03,0xc7,0x3b,0xb4,0x6d,0xfa,0x58,0x8f,0xfd, + 0xdc,0xbd,0x51,0xea,0xb9,0x1a,0x9b,0x83,0xf2,0x68,0x58,0x89,0xe7,0x2e,0xfa,0xc3,0xd0,0x3b,0xf2,0x4f, + 0xf0,0x44,0x77,0x81,0x7b,0x31,0x42,0xb4,0x23,0xe8,0x06,0xd9,0xf8,0xec,0xc4,0xa8,0x22,0xe3,0x8a,0x5e, + 0xad,0x34,0x62,0x0b,0x4c,0xb8,0xa2,0xf8,0x4c,0xdd,0xda,0x26,0x14,0xed,0x50,0xad,0x53,0x30,0xb2,0xac, + 0x68,0xfb,0x71,0x16,0xe5,0xd7,0x29,0x06,0x13,0xd9,0xb4,0xbd,0x6d,0x55,0xc0,0x33,0x59,0x6a,0x9c,0xa5, + 0x58,0x19,0x31,0x6d,0xea,0xda,0xd7,0x37,0x11,0x1d,0x86,0xb2,0xeb,0xb8,0xf2,0xee,0x00,0xe8,0x94,0x22, + 0x04,0xff,0xd4,0x37,0xe4,0x09,0x62,0x67,0x04,0xa1,0x3e,0xa2,0xce,0xf8,0xd5,0x11,0x95,0x34,0x1c,0x51, + 0x8e,0x49,0x26,0xbd,0xd8,0x27,0xb4,0x52,0x61,0x7b,0x51,0x2c,0xd0,0xe1,0xaa,0xa0,0xf6,0xcd,0x47,0x28, + 0x91,0x01,0x5a,0xdb,0x03,0x35,0x67,0x90,0x2f,0x0b,0x89,0xce,0x45,0xb0,0x9e,0xe9,0xa8,0x9c,0x19,0xe3, + 0xf4,0x12,0xff,0xb2,0xce,0x0b,0xe2,0xbe,0xb6,0xbc,0x5f,0x06,0x74,0x0e,0x33,0xc7,0x7f,0xa6,0xf6,0x71, + 0x35,0x09,0x46,0xef,0xfc,0x52,0xd6,0x03,0x91,0x89,0xb3,0x4e,0xdf,0x99,0xbb,0x86,0xf9,0x23,0xaa,0xcc, + 0xf8,0xf7,0x64,0xa0,0x2d,0xed,0x9f,0x19,0xbb,0x18,0x8d,0x25,0x6c,0x18,0x2e,0x2c,0x2e,0x2d,0x5e,0x3d, + 0x09,0x00,0xe4,0xe7,0x2b,0x26,0x6f,0x82,0xac,0x43,0xd7,0xa5,0xec,0xc0,0xa8,0x75,0xb0,0xe3,0x70,0x49, + 0xb3,0xe5,0x43,0x55,0xf9,0x4b,0x5e,0xc5,0x59,0xbc,0xac,0x97,0x74,0x16,0xcf,0x8c,0xb3,0x00,0x4a,0x98, + 0x61,0xcd,0x84,0xc0,0x9d,0xc4,0x65,0x4d,0x4a,0xcc,0x2d,0x5b,0x52,0x39,0x44,0x68,0x6b,0x8a,0x33,0xca, + 0xb0,0x3f,0xa3,0x8d,0x9d,0xd1,0xc6,0x0a,0x27,0x55,0x6f,0xec,0x2c,0xd0,0x69,0x07,0xb3,0x23,0x69,0xbb, + 0x63,0x00,0x52,0xc2,0x74,0xbf,0x4e,0xfd,0x4c,0xae,0x90,0x51,0xe5,0x4f,0xb8,0xd4,0x3c,0x18,0x4d,0x68, + 0x03,0xe7,0x16,0x35,0xa7,0xfd,0xc8,0x2e,0xea,0x1b,0x60,0x1c,0xd2,0x74,0x89,0x06,0xda,0x0d,0x27,0xf4, + 0xdf,0x3c,0xae,0x5d,0xb5,0x84,0x17,0x31,0x24,0x00,0xe1,0x09,0xfd,0x99,0x1f,0x85,0xc7,0x46,0x75,0x9b, + 0xb2,0xde,0xc5,0x19,0xb2,0x2e,0xe9,0xcf,0xf1,0x51,0xb8,0x1f,0x6f,0x2d,0x86,0xd3,0x87,0xe8,0x6a,0xf2, + 0x30,0x3e,0xa6,0xbb,0xc9,0xbf,0x08,0x46,0xa8,0xde,0xef,0x4f,0x8f,0xa2,0xd4,0xa7,0x33,0x8c,0x56,0xb6, + 0xb7,0xe7,0x47,0xd1,0x5b,0xca,0x0c,0xdf,0xd1,0xa1,0xfe,0x88,0xbf,0x20,0xce,0x74,0x41,0x6e,0xb5,0xdf, + 0x9f,0x1c,0x05,0x28,0x74,0x12,0x5e,0x72,0x21,0xfa,0x8b,0x42,0xba,0x3e,0xf7,0xb9,0xbd,0x7d,0x2c,0x85, + 0x2e,0x54,0xa1,0x0b,0x29,0xb4,0xdf,0xa2,0x03,0xf2,0xf0,0x42,0xdd,0xbb,0x96,0x28,0xce,0x3f,0x11,0x14, + 0x52,0xf7,0xec,0x34,0x7a,0xa2,0x86,0x77,0x22,0xc3,0xeb,0x6a,0x94,0x1b,0x90,0xa6,0xad,0xa1,0xd5,0xe3, + 0xf7,0x53,0x71,0x76,0x31,0x8e,0x7f,0x49,0x69,0x7f,0xa6,0xe1,0x1c,0xa6,0xf2,0x3e,0x08,0xfa,0x77,0x1c, + 0xc3,0x74,0x34,0x3e,0xe0,0x8f,0xa3,0x0e,0xe7,0x1f,0x75,0x5c,0xc2,0x29,0xd1,0xc2,0x19,0x47,0x21,0x34, + 0xe8,0x31,0x39,0xd2,0x3c,0xc2,0xed,0xdb,0x6f,0x41,0xe7,0x14,0x86,0x82,0x4f,0x88,0xc6,0x7d,0x47,0x4d, + 0xec,0xa2,0xb7,0x51,0x41,0xdf,0x49,0xa8,0xe6,0xcf,0xf3,0x5a,0xd2,0x38,0x67,0x47,0x6a,0x72,0x4b,0x99, + 0x1c,0x52,0xb4,0x47,0xdb,0xae,0x89,0x2e,0xad,0x89,0x06,0x91,0xdb,0x66,0x3d,0xdf,0xe1,0xf4,0xd1,0x1c, + 0x4a,0xf4,0x34,0x45,0x02,0x88,0xfe,0xde,0x51,0x20,0xd1,0x19,0xe5,0x87,0x3a,0xf4,0x13,0xbc,0x37,0x05, + 0xd1,0xe4,0xd1,0xf1,0xed,0xdb,0xe7,0xfe,0x6e,0x28,0xcb,0xb2,0xf6,0xc7,0x1c,0x2e,0x1b,0x40,0x19,0x31, + 0xd0,0x82,0xc2,0xab,0x49,0x28,0x57,0x1c,0x4a,0x85,0x71,0x4f,0x9f,0xd2,0x5f,0x26,0xbb,0xe6,0x98,0x6c, + 0x0d,0x96,0x20,0x8a,0x01,0xfe,0x23,0xb4,0x3f,0xa1,0xbc,0x49,0x1d,0x06,0x31,0xba,0xb1,0xd9,0x48,0xf2, + 0xb7,0x38,0x6a,0x0d,0xdf,0xed,0x1d,0xe5,0xd4,0x29,0x0b,0x37,0x63,0x86,0x62,0x51,0xb9,0xa8,0x61,0x6d, + 0x5d,0x55,0xc7,0xc2,0x85,0x30,0x7a,0x05,0xe3,0x89,0x5a,0x26,0x18,0x75,0xa0,0xbf,0xba,0x28,0xeb,0xd2, + 0x25,0x7b,0x84,0x51,0x2a,0x6d,0xfe,0xa8,0x24,0xe0,0xa8,0xb1,0xbf,0xda,0x49,0xbf,0x64,0x7f,0xaa,0x66, + 0x00,0xef,0x1a,0x8c,0x67,0x38,0x46,0xcc,0xa6,0xe4,0x24,0x9c,0x29,0x77,0x1f,0x84,0x0b,0x4a,0x37,0xda, + 0x50,0x9c,0xac,0x56,0x88,0xee,0x0e,0xa4,0x17,0x96,0x42,0xda,0x87,0x82,0x90,0x35,0xdf,0x22,0x17,0x97, + 0x8d,0xf7,0x0d,0x54,0x76,0x5d,0x13,0x50,0xaf,0x26,0x5c,0xcf,0x80,0x3c,0x53,0x57,0x3d,0x2d,0x5d,0x37, + 0x03,0x5b,0x8a,0x25,0x21,0x25,0x76,0x60,0xed,0xc0,0xe2,0x5f,0xb1,0xae,0xa6,0xd9,0x71,0xa0,0x08,0x82, + 0x69,0x10,0x30,0x27,0x7e,0x9a,0x2c,0x98,0x10,0x07,0xd5,0xbd,0xf0,0x39,0x91,0x7b,0x35,0x1d,0xea,0xb8, + 0x71,0xd6,0x08,0x54,0x54,0x14,0x69,0xaa,0x60,0xca,0xaf,0x4e,0x34,0x41,0x38,0xf8,0xe2,0xd0,0xfb,0x32, + 0xc7,0xdc,0xc0,0x45,0x4e,0xb3,0x72,0x51,0x71,0x8f,0x84,0x66,0x76,0x87,0x17,0x0f,0xa7,0x7a,0xaf,0x2e, + 0xb4,0x83,0xbb,0xd3,0xd5,0x6a,0xeb,0x1d,0xf1,0x8b,0xd3,0x83,0x8b,0x23,0xc5,0x99,0xce,0x61,0x52,0x2e, + 0xac,0xec,0x69,0x7c,0xea,0xbc,0x1f,0xa0,0xc6,0x7c,0xb5,0x3a,0x75,0x3b,0x26,0x2e,0x06,0x07,0x29,0x0b, + 0xf4,0x6a,0xca,0xbe,0x9e,0xdb,0xae,0x56,0x4e,0x20,0xcd,0x9b,0x61,0xc6,0x5b,0x1f,0x08,0x17,0x07,0x57, + 0xe7,0x18,0xe4,0x44,0xee,0x16,0xe9,0x6c,0xeb,0x1c,0x1b,0xcc,0x9a,0x25,0x70,0x13,0xa7,0x3e,0xb5,0xb3, + 0x49,0x21,0x2a,0xb6,0x38,0xbc,0x17,0x1f,0x0c,0x45,0x60,0xa9,0xdf,0xfa,0xd9,0x6b,0x4b,0x82,0xc5,0x5c, + 0x86,0xfb,0xe1,0x19,0x84,0xd4,0x4f,0x11,0x69,0xbe,0x98,0x2c,0x67,0xe9,0x22,0x7c,0x43,0xdf,0xa0,0x71, + 0x5e,0x29,0xed,0xaf,0x4b,0x5a,0x93,0xcb,0x87,0xf3,0xac,0x06,0xe0,0x4b,0x26,0x2b,0xcf,0x0e,0xe6,0xd9, + 0xc1,0xe5,0x11,0xac,0xbd,0xe8,0x5e,0xd9,0x1d,0xee,0x3f,0x7c,0x5a,0x17,0xd9,0x27,0xf2,0xe2,0xe9,0xc1, + 0xfe,0x91,0x2a,0x43,0x3b,0xa5,0x8b,0x0b,0x7f,0x61,0xe7,0xf1,0x85,0xfc,0x81,0xf5,0x46,0xf0,0xae,0x26, + 0x5a,0x33,0x2a,0x94,0xd8,0x53,0xeb,0xfb,0x0d,0x0b,0x5b,0x09,0x15,0x77,0x38,0x29,0x54,0xb7,0x65,0x48, + 0x97,0xa4,0xf2,0xc9,0xc4,0xb7,0xb7,0x78,0x89,0x41,0x18,0x11,0x18,0x67,0x03,0xba,0x60,0xce,0xb9,0x64, + 0xff,0x21,0x3e,0x10,0x1d,0xca,0xd7,0xf4,0xc4,0x3c,0xc6,0xe1,0xc0,0xe4,0xf7,0xd9,0xf7,0x13,0x6f,0x24, + 0x63,0x6f,0x6c,0x40,0x20,0x34,0xd7,0x24,0x54,0x41,0xd1,0xd1,0xcf,0x9c,0x7b,0x93,0x78,0x6a,0xba,0x1e, + 0x94,0xdc,0x09,0x86,0x6b,0x7e,0xe2,0x31,0xeb,0x67,0x69,0xea,0xce,0x49,0x87,0x05,0x37,0x7c,0x7c,0xfa, + 0xa0,0x23,0xdf,0x49,0xfb,0xe6,0xa0,0x1c,0xf3,0x10,0x91,0x5f,0x0e,0x5f,0xc5,0x50,0xe6,0x57,0xcf,0x31, + 0x6f,0xf4,0x23,0x94,0xff,0xaa,0x11,0x85,0x46,0x9e,0x69,0x94,0xe4,0x30,0x7c,0x25,0xf6,0x6f,0xa7,0x42, + 0x0c,0xd2,0xf5,0xe7,0x08,0xca,0x4e,0x79,0x82,0xb2,0x0e,0xa7,0x83,0x77,0x22,0xb0,0x3d,0x96,0xfb,0xe0, + 0xa4,0x71,0x0f,0x9f,0x42,0xf5,0x97,0x08,0x17,0x8d,0xff,0x34,0xc0,0x5e,0xc6,0x3a,0x8d,0x60,0x00,0x14, + 0xd3,0xf0,0x72,0x58,0xdf,0x8b,0x4f,0x09,0x2c,0x9e,0x76,0xf1,0x2e,0x4f,0x2d,0xde,0xe5,0xe9,0x91,0x7f, + 0xc9,0x23,0xb9,0x14,0xc7,0xf7,0x3c,0xd4,0xfd,0xba,0x91,0x0f,0xd4,0xc8,0x87,0x0e,0xce,0xf7,0x43,0xcd, + 0xf9,0x7e,0x60,0xce,0xf7,0x52,0x20,0xe9,0x71,0x7c,0xd9,0xc2,0xad,0xfc,0xa2,0x30,0x60,0x1d,0xe1,0xda, + 0xe4,0xe1,0x56,0xbc,0x37,0xbc,0xf5,0xf0,0x31,0xb1,0x88,0xc6,0x5e,0xe5,0x16,0xdc,0x3f,0x23,0xe1,0xe0, + 0xd6,0x91,0xa6,0xbd,0x7f,0x4d,0x31,0xbe,0x4b,0x6a,0x55,0x85,0xba,0x85,0x6f,0x57,0xbe,0xb7,0xc0,0xf2, + 0xed,0x86,0xbb,0xea,0xc2,0x22,0xfe,0x07,0x2e,0x81,0xcb,0xda,0x5a,0x4c,0xf6,0x6f,0x19,0x84,0x3c,0x27, + 0xde,0x8a,0x57,0x20,0xfd,0x4d,0x39,0xff,0x4a,0x1d,0xb4,0x68,0x99,0x85,0xea,0xfc,0x45,0x07,0x27,0x59, + 0xf8,0x31,0x0b,0xf7,0xb3,0xf0,0x2c,0x0b,0x9f,0x65,0xe1,0xeb,0x7c,0xa4,0xa5,0xf9,0xef,0xab,0x50,0x0b, + 0xd6,0xf0,0x2d,0xf0,0xd4,0x78,0xfe,0xdb,0x92,0xb8,0x5e,0x62,0x65,0x71,0x5a,0x5c,0x8e,0x5e,0x55,0x12, + 0xdd,0x0c,0x6e,0x33,0xd7,0xd1,0xd5,0xfa,0x48,0x3b,0x56,0x3e,0xcf,0xe0,0xc5,0xfc,0x45,0x4e,0xb4,0xa0, + 0x7e,0xe4,0x68,0x87,0x17,0x91,0xf7,0x71,0x6a,0x7d,0x7c,0x9a,0xe4,0x27,0xa9,0x67,0x9b,0xa7,0x8a,0x26, + 0x7e,0x5d,0x99,0xa5,0xf4,0x4a,0xb8,0x36,0x64,0x55,0xdf,0x0b,0x15,0x15,0xf1,0x67,0x8c,0x41,0xe9,0x9b, + 0x69,0xd7,0xe9,0x6f,0x33,0x38,0x55,0xc3,0xee,0xa4,0x93,0xc6,0x83,0x28,0x84,0x48,0xfa,0x65,0xde,0x84, + 0x75,0x14,0x9e,0xe4,0xf6,0xed,0x2d,0xfe,0x4b,0x8c,0x98,0x52,0xb3,0x1c,0xfd,0x00,0x47,0x47,0xe6,0x32, + 0x77,0x46,0xf8,0xd6,0x62,0x29,0xc4,0xa8,0x6b,0xa2,0x44,0x49,0xeb,0x20,0x7a,0x5d,0xc9,0xb7,0xed,0xed, + 0xc9,0xb4,0x4a,0xf8,0x02,0x81,0xd7,0xb4,0xfd,0x89,0x56,0xfa,0xfc,0xb6,0x82,0x0c,0xcc,0xd3,0x9a,0x23, + 0x66,0x74,0x74,0xef,0x66,0xbe,0xc4,0x8e,0x0b,0x02,0xe5,0xc9,0xeb,0x85,0x8e,0x1c,0x1b,0x57,0x75,0x14, + 0xd9,0xd0,0xfa,0x66,0xbf,0x8e,0xac,0x5a,0xdc,0x5e,0x77,0xbd,0xdc,0x2f,0x68,0x58,0x4f,0xf2,0x4d,0x85, + 0x30,0x37,0x91,0xca,0x12,0x8a,0x84,0x97,0xfe,0x97,0x3c,0x8b,0x6b,0x4b,0xf2,0xcb,0x07,0x35,0x8b,0x88, + 0x3b,0x3c,0x52,0xd9,0x24,0xe0,0x21,0xbc,0x09,0x37,0xd7,0xab,0xf5,0x56,0xcd,0x41,0xdb,0xdd,0xbd,0x09, + 0xae,0x5a,0x6b,0x39,0xd4,0x6f,0x96,0x66,0x45,0x45,0x9b,0xfa,0xe6,0xf5,0x1d,0x66,0xcd,0x18,0x80,0xb5, + 0x6a,0xc4,0x16,0x54,0xcb,0xd9,0x89,0xe5,0x5a,0x56,0x59,0xab,0x57,0x8c,0x2a,0x31,0x9f,0xde,0x18,0x3e, + 0xf0,0x27,0x0c,0x10,0x00,0x1f,0xa9,0x92,0xfc,0x38,0x4e,0x34,0xce,0x5b,0xfc,0xb8,0x7d,0x9b,0xf2,0x55, + 0x06,0x30,0xbd,0x86,0x58,0xb5,0x0b,0xec,0xa9,0xf1,0x17,0x82,0x57,0x09,0xec,0xf9,0x36,0x0b,0x71,0xb2, + 0x22,0x51,0x8b,0x6d,0xae,0x8f,0xb2,0x38,0xd6,0x8d,0x21,0x16,0xe0,0x13,0x7e,0x1a,0x55,0xaa,0x25,0xe2, + 0x42,0xc5,0x12,0xa8,0x73,0x80,0xfa,0x77,0xb4,0x32,0x65,0x76,0x02,0x4f,0xb0,0xcf,0xb2,0x05,0x94,0x23, + 0x63,0x2f,0xa7,0x7d,0x50,0x3a,0x77,0xfc,0xa6,0x3a,0x91,0x0c,0x84,0x8b,0x6f,0x24,0xc1,0xf9,0x43,0x36, + 0xf2,0xf3,0xfa,0xd8,0xe3,0x8a,0xbb,0x45,0xdd,0xda,0xa7,0xa1,0x51,0x29,0x4e,0xd6,0x41,0xd0,0x6c,0x29, + 0x2e,0x47,0x49,0x24,0x3d,0x77,0xea,0x17,0xb4,0x66,0x38,0x2c,0x1b,0x2b,0xe9,0xdf,0x38,0xe1,0xd6,0x40, + 0xcb,0xd1,0x4d,0x43,0xed,0x5a,0x20,0xda,0xcb,0x57,0x37,0x54,0x53,0x13,0xe9,0x9c,0x66,0x57,0x93,0x6a, + 0xe6,0x50,0xad,0xc8,0x3b,0x36,0x57,0x31,0x04,0x7c,0x1a,0x6f,0x1e,0x1f,0x43,0xcd,0xf7,0x04,0x35,0x6c, + 0x18,0xa6,0xac,0xbb,0x20,0x68,0x4e,0xca,0xe8,0x49,0x51,0xc0,0x19,0x6e,0x38,0x5e,0x2c,0xcc,0x37,0x80, + 0x4b,0x17,0x03,0x22,0xd1,0xdf,0xd6,0xeb,0xac,0x4a,0xb1,0xde,0x56,0xed,0x32,0xfa,0x5d,0xd5,0x2e,0xd5, + 0x48,0x6b,0x3d,0xdc,0xda,0x65,0x3b,0xd2,0x65,0xb8,0x1d,0x49,0x1b,0xcb,0x36,0x3a,0x9c,0x2c,0x4b,0x7e, + 0x17,0x8c,0x0e,0xc4,0xae,0x2d,0x54,0xe9,0xa2,0xd8,0x71,0xb4,0x0e,0xff,0xd0,0x0b,0xe4,0x3c,0xd6,0x8a, + 0xb5,0xdc,0xf7,0x99,0x63,0x42,0xd7,0xb4,0x05,0x6b,0x19,0x8f,0xb7,0x6d,0xc2,0x94,0xe7,0x2c,0x16,0xac, + 0xca,0x2b,0x7d,0x77,0x70,0x3f,0x46,0xe1,0xbf,0x41,0x42,0x48,0x60,0x6b,0xc7,0x6c,0x55,0x26,0x62,0xd8, + 0x1b,0xa8,0x1d,0xa8,0xf8,0xad,0x76,0x1b,0x22,0xf8,0x8f,0x35,0x47,0x38,0x0c,0x6a,0xf7,0x95,0xd6,0xa3, + 0x99,0xa1,0xbb,0x6d,0xdb,0xd1,0x5a,0x20,0xa0,0xec,0xc7,0x7e,0xad,0xe0,0x99,0x07,0x64,0x67,0x51,0x67, + 0x69,0x2f,0xab,0x4c,0xa1,0xd1,0xda,0xe9,0x9c,0x5f,0x80,0xa2,0x12,0x1d,0x01,0xd6,0x7b,0xf7,0xae,0xee, + 0x6e,0xdb,0xeb,0x1b,0xb7,0x72,0x7d,0x6f,0xdb,0x1b,0x16,0x2c,0x86,0x13,0x25,0x5b,0xfe,0x1e,0x15,0x56, + 0x80,0xd3,0x45,0x1f,0x17,0x04,0x3e,0xbd,0x68,0xd1,0x67,0x59,0x6e,0x54,0xfa,0x85,0xc8,0x3f,0xf0,0x00, + 0xad,0xde,0x3e,0x24,0xc5,0x18,0x14,0x2d,0x82,0x11,0xa7,0x70,0x1d,0xfc,0xe5,0x7f,0x25,0x6c,0x46,0xec, + 0xcb,0x03,0x22,0xec,0x2b,0x07,0xca,0xd1,0x0c,0x2d,0x6d,0x3d,0xc4,0xf8,0xad,0xb6,0x2c,0x9a,0x39,0xc6, + 0xee,0x4b,0x2c,0x82,0x44,0x99,0x90,0x8a,0x56,0xd8,0x79,0x3c,0xa7,0x36,0x92,0x36,0x21,0x7c,0x0f,0xb8, + 0x45,0x90,0x27,0xa0,0x8b,0xaf,0x8b,0xc2,0xc1,0x3a,0x41,0xb8,0xbc,0x7d,0x7b,0xa9,0x70,0x94,0x7f,0x1a, + 0x17,0xe1,0x79,0xbc,0x0c,0xcf,0x31,0x05,0xc2,0x68,0xa7,0xf8,0xbb,0x5a,0x9d,0x63,0x2d,0xf8,0xa7,0xd0, + 0x77,0x5b,0xbf,0xb1,0x34,0xc1,0xdf,0x5a,0x76,0xf9,0x7c,0xed,0x4a,0xd5,0x2e,0x3d,0x6b,0x16,0x5c,0x00, + 0x6b,0x1a,0x2f,0x9b,0x40,0x22,0x06,0x23,0x63,0x9e,0xbb,0x57,0x2c,0xab,0xed,0x8c,0x35,0xf7,0x33,0xd7, + 0x79,0x83,0x82,0x02,0xe0,0xcd,0x1f,0xfc,0x69,0xe8,0x25,0x53,0x82,0xea,0x9f,0x44,0xbd,0xc2,0x36,0x15, + 0xb5,0x4a,0x22,0x5e,0xba,0xeb,0xc7,0x72,0x1d,0x84,0x1a,0x7c,0xd0,0x59,0x96,0x6f,0x17,0x62,0x0a,0x20, + 0x02,0x8f,0xdf,0xfc,0x5a,0x58,0x25,0x6e,0xcd,0x26,0xe1,0xdc,0x36,0xdb,0x83,0x7f,0xe0,0xe1,0x0f,0x90, + 0xc6,0x70,0xf7,0xdf,0x88,0xc6,0xc8,0x3c,0x08,0x39,0x4d,0x30,0x16,0x66,0x0f,0x83,0x34,0x95,0x3e,0x85, + 0x46,0x18,0xa1,0xc5,0xe6,0x50,0x69,0xcb,0x26,0x71,0xba,0xae,0xc9,0xe6,0x44,0x98,0x96,0xf0,0x9c,0xd0, + 0xe7,0x8f,0x19,0x16,0x05,0xf0,0xa8,0xf0,0x06,0x3f,0xe8,0x5b,0x08,0x06,0x18,0x36,0x18,0x8a,0x49,0x5f, + 0xef,0x47,0xe6,0x62,0xc5,0x9f,0xfb,0xbf,0x09,0xaf,0xd4,0x0a,0x15,0xd1,0x1f,0x44,0x51,0x9b,0x5f,0xdf, + 0x41,0x39,0x38,0xba,0x12,0x24,0xf3,0x63,0xd6,0x85,0x58,0x1a,0x96,0xed,0x8c,0x1f,0x6c,0x23,0x11,0xd9, + 0x3a,0x09,0x94,0x3b,0x4f,0x72,0x04,0xc1,0xed,0x76,0x87,0xc4,0x95,0xe6,0x65,0x7a,0x61,0x1c,0x17,0x8a, + 0x91,0xa8,0x16,0x3e,0x67,0x5d,0x68,0x8b,0x3d,0xaa,0x26,0x6e,0x49,0xf0,0xd9,0x45,0x7d,0x6a,0x16,0xc4, + 0x16,0x2d,0x1e,0x1a,0xae,0x7c,0xa1,0x45,0x8f,0xe3,0x38,0x3b,0x58,0x1c,0x0d,0xc7,0x12,0x3f,0x1a,0xa3, + 0xd8,0x8a,0xc7,0x22,0x7c,0x07,0x67,0xa0,0x4e,0xf2,0xd8,0x3d,0xc9,0x84,0x3c,0x2e,0xf0,0x22,0xe2,0x01, + 0xb6,0x13,0x63,0x2d,0x9a,0x1f,0x70,0xb9,0xa3,0x78,0x1c,0x52,0x0d,0x75,0x9c,0xc7,0xdd,0xc7,0xb9,0x08, + 0x20,0xf7,0xb0,0xbc,0x89,0xcf,0x30,0xe0,0x25,0xfe,0x99,0xd2,0x50,0xa7,0xb5,0x04,0x6c,0xaa,0x87,0x3a, + 0x89,0xcb,0x83,0xe9,0xd1,0x70,0xd2,0x3a,0x07,0x45,0xa8,0xd2,0x88,0x66,0x8d,0x27,0x4c,0xee,0x9f,0xa4, + 0xd5,0x93,0x62,0xc9,0x62,0xb6,0xa7,0xb3,0x8c,0x00,0xec,0x67,0x5a,0x6b,0xf8,0x61,0x3f,0x98,0xf0,0x10, + 0x47,0x33,0x19,0xf5,0x24,0x88,0x96,0xfa,0x6b,0xad,0x2c,0x70,0xe7,0x55,0xcc,0x3a,0x95,0x90,0x43,0x6a, + 0x2b,0x69,0xe1,0x9d,0x26,0xf1,0xd2,0x44,0x2a,0xd0,0x25,0x12,0xba,0xfd,0x6d,0xef,0x1c,0x2d,0xfb,0xeb, + 0x6e,0x4f,0x03,0xa6,0x2f,0x68,0x71,0xb0,0x1c,0xcc,0x72,0xd4,0x61,0x32,0x35,0x4d,0x35,0xd9,0x60,0xd1, + 0x6c,0x03,0x4a,0x58,0xe9,0xbb,0x47,0x81,0xbc,0xf1,0xcf,0xcf,0x06,0x5e,0xde,0x05,0x22,0x3e,0x6f,0xb3, + 0xb2,0xe5,0x50,0xf3,0xc5,0xca,0x92,0xe9,0x34,0x59,0xbc,0xa0,0x74,0x3f,0x55,0x06,0xfa,0x61,0x25,0xe4, + 0xb2,0x56,0x31,0xfc,0x9e,0xd9,0x04,0xfd,0xeb,0x0f,0xe7,0xd7,0x8f,0xda,0xe1,0x3f,0x9c,0x77,0xcc,0x08, + 0x55,0x1a,0x06,0x0f,0xba,0xf9,0x83,0x62,0x3a,0x5d,0xa4,0xd5,0xf7,0x69,0x76,0x72,0x5a,0x59,0xb5,0x9a, + 0x4a,0x8b,0xb2,0x7f,0xbc,0xc6,0xb5,0x0b,0x31,0x8c,0x04,0xb6,0x95,0x4c,0x3b,0x0d,0xf7,0x41,0xbc,0xc1, + 0xf9,0xd9,0xc0,0xe8,0xfd,0xc4,0xe5,0xc0,0x52,0x90,0x52,0x29,0x35,0x60,0x3c,0x53,0xc4,0x04,0x07,0x9d, + 0x6e,0x73,0x39,0xdf,0x66,0xf0,0x04,0xca,0xcb,0x55,0x47,0x1c,0xec,0x41,0xe4,0x73,0x45,0xf4,0xf1,0xd6, + 0x8e,0xe9,0xe6,0x96,0x0a,0xdc,0x29,0x51,0x83,0x74,0xbc,0xae,0x80,0xbd,0xe8,0x0a,0x60,0xb4,0x1a,0x66, + 0x9d,0x07,0xdd,0x36,0xc3,0xc9,0x99,0x0c,0x9f,0xcd,0xd4,0xc1,0x38,0x29,0x17,0x6d,0xd1,0x95,0x5a,0xfc, + 0x06,0x5f,0x8e,0x4b,0xfd,0x7d,0x66,0x44,0x82,0xf5,0xad,0xae,0x8a,0xbb,0x48,0x5e,0x25,0x0e,0xf5,0xca, + 0x8d,0xf1,0x60,0xc6,0x52,0x9b,0x80,0xf6,0xda,0xba,0xe9,0x19,0x30,0x70,0x33,0x76,0xa5,0x76,0xee,0xce, + 0x71,0x25,0xba,0x50,0x41,0xf8,0x51,0x6d,0x40,0xde,0x49,0x35,0x1b,0xa7,0x18,0x8e,0x72,0x44,0xae,0x39, + 0xbb,0x37,0xa2,0x88,0x6a,0xdb,0xd2,0x51,0x51,0x47,0xe3,0x4a,0xc3,0x91,0x9a,0x4c,0xcc,0x62,0x31,0xb3, + 0xb3,0x6b,0x58,0x89,0x7f,0xc3,0x0f,0xf6,0xd3,0xec,0x64,0x60,0x45,0xc6,0x8d,0x7f,0x2f,0xc3,0x3a,0xc3, + 0x89,0xc9,0x1b,0x2f,0xb2,0xce,0x2c,0x08,0xd5,0xe2,0xef,0xec,0x6a,0x8d,0x98,0xbc,0xf1,0xcf,0xa9,0x53, + 0xd1,0x0d,0xe2,0xdb,0x8a,0x91,0xf2,0xba,0xa6,0xd8,0xb0,0x53,0x0b,0x98,0x32,0x38,0x7b,0x07,0x82,0xcf, + 0x95,0xbc,0x29,0x54,0x0b,0x15,0x7d,0xbd,0x97,0xfc,0x43,0x59,0x1f,0xdf,0x64,0x89,0xc0,0xd6,0xd4,0x0a, + 0x1b,0x6f,0x7b,0x30,0xd5,0x1e,0x71,0x75,0x76,0x60,0x5e,0x5b,0xfc,0x1a,0x65,0x3f,0x48,0xb6,0xdd,0x49, + 0xc0,0x17,0xf2,0xc6,0xa2,0xda,0x48,0x42,0xda,0xdc,0x69,0xd7,0x56,0x47,0xa2,0xb2,0x03,0x36,0xad,0xc3, + 0x0b,0x18,0x56,0x1a,0x17,0x8a,0x86,0xea,0x22,0x66,0x38,0x70,0xf3,0x2c,0x23,0xf6,0x7f,0x67,0x6c,0x35, + 0x69,0xb9,0x2e,0xd1,0x08,0x13,0x4a,0x85,0xbf,0x66,0xd1,0x89,0x9b,0x2d,0xae,0xe8,0xba,0x23,0x65,0xb5, + 0x15,0xe5,0xd9,0x7b,0x8f,0xed,0x1b,0x5c,0x2e,0x6f,0xe6,0xc9,0x1a,0x69,0x71,0x5e,0xb2,0xef,0x97,0xd4, + 0x0d,0x83,0x5d,0x9b,0xb8,0x6b,0x0f,0x83,0x0e,0x07,0xa9,0x3c,0x39,0xd5,0x4e,0x47,0x7c,0x31,0xdd,0x38, + 0x31,0xfa,0x43,0x21,0x22,0xfc,0x86,0xca,0x62,0xad,0x76,0x0a,0x93,0xb6,0x3d,0x70,0xa7,0xae,0x07,0x6e, + 0xed,0x50,0x18,0x6a,0x50,0xb4,0x14,0x4f,0xa0,0x4a,0xa5,0x9d,0xdf,0x43,0x9f,0xff,0x9b,0xda,0x23,0x81, + 0x6f,0x8d,0xe9,0x19,0x94,0x42,0x24,0x0c,0xf6,0xed,0xdb,0x3f,0xe4,0xf8,0x6f,0x00,0x37,0x5a,0xa0,0xdb, + 0xa0,0xca,0xfc,0x0d,0xec,0x32,0x76,0xe5,0x60,0xfe,0x90,0x85,0xdf,0x41,0x99,0xf2,0xea,0xf0,0xca,0xf7, 0x47,0xd1,0x60,0x75,0x98,0x07,0xfd,0x51,0x70,0xb8,0x3e,0x5c,0xef,0x9c,0x84,0xff,0x84,0xf6,0xfb,0xf6, 0xe0,0x8b,0xfe,0xe8,0x5f,0xb7,0xae,0xd6,0x7e,0xb0,0x3a,0x38,0x3c,0x3a,0xdc,0x39,0x3c,0x3c,0xa2,0xbc, 0xdf,0xbb,0x55,0xd8,0xf9,0x0a,0xd1,0xda,0xdb,0xff,0xcc,0x42,0xef,0xf0,0xf0,0xd6,0x6d,0x8f,0xcd,0x97, @@ -1539,842 +1539,846 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0xf8,0x31,0xfd,0xeb,0xdd,0x9e,0x55,0x43,0x2f,0xf2,0x1e,0xd2,0xa1,0xbc,0x7d,0xc2,0x9f,0x8f,0xf0,0x09, 0xf8,0xa4,0x1f,0x77,0xbc,0x3b,0xf4,0x23,0x39,0x9f,0x23,0xe3,0x36,0x32,0xfe,0xb6,0xb7,0x8b,0xef,0xc3, 0x9c,0x7f,0x7c,0xcd,0xdf,0x95,0xb7,0x0e,0x6f,0xd1,0xdc,0x6e,0xd3,0x22,0x13,0x03,0x7c,0x52,0xad,0x50, - 0x7d,0x45,0xd5,0x82,0x21,0x4d,0xe8,0x55,0x67,0xd6,0x8a,0x5a,0x5a,0xfd,0xed,0x6b,0x2e,0xf1,0x0d,0x0f, - 0x18,0x9a,0x0f,0xee,0x38,0x9f,0x25,0xdd,0xa4,0x05,0x61,0x99,0x6f,0x12,0xf1,0xa1,0x70,0xc8,0x72,0x96, - 0x0a,0x9e,0x8b,0xc2,0xd7,0x58,0xdf,0x7f,0xac,0xfe,0x75,0xb1,0x5d,0xe4,0xd1,0x4e,0xf8,0x1e,0x3f,0x2f, - 0xb6,0x57,0x48,0xa2,0x9f,0xcf,0xe9,0xa7,0x3f,0xf8,0x82,0x2e,0xd4,0x45,0x9f,0x46,0x93,0xe5,0xab,0x62, - 0xca,0xdf,0x83,0x2f,0x82,0x9d,0xf0,0x27,0xca,0x0d,0x09,0xae,0x42,0xba,0x6e,0x8f,0x08,0xca,0xa8,0x84, - 0xfd,0x33,0x18,0xdd,0xda,0x09,0xbf,0x65,0xa8,0xf0,0x57,0x87,0xc1,0x2d,0x1a,0xf4,0xcb,0x84,0xcd,0xc3, - 0xbe,0xa0,0x1f,0xe1,0x0b,0xe4,0x44,0xe8,0x99,0x45,0xcf,0x3b,0xe1,0xcf,0x94,0x70,0x38,0x38,0xf8,0xd7, - 0xe0,0xa8,0x4f,0x45,0x9f,0x24,0x9d,0xc6,0x3b,0xfe,0x0f,0x59,0xfc,0x43,0x76,0x83,0xa1,0x52,0x50,0x6b, - 0x43,0xc4,0x69,0xf8,0x43,0x66,0x1b,0x27,0xd2,0x25,0xfc,0x2b,0x7a,0xfe,0x70,0x3e,0xcb,0x17,0xd1,0xcb, - 0x37,0x87,0x93,0xfe,0x4e,0xf8,0x16,0x29,0xfc,0x4d,0xe3,0xf8,0x25,0x89,0x0f,0x7e,0xcb,0xe8,0xce,0x09, - 0xaf,0x68,0x79,0xf7,0xaf,0xb9,0x5b,0x44,0x96,0xa4,0xbd,0x4a,0xc8,0xd3,0x90,0x66,0x61,0xf8,0x71,0xff, - 0x45,0x32,0x67,0x91,0xec,0x81,0x77,0xb1,0xcd,0x8f,0x29,0xde,0x11,0xa4,0xb3,0xf8,0xc9,0x93,0x06,0x41, - 0xe8,0x1d,0xad,0x56,0x94,0xa2,0xbe,0xb5,0x6a,0xa8,0xba,0x6d,0x38,0x11,0x9e,0xbb,0xe4,0xe6,0xba,0xd8, - 0xce,0xa6,0xb2,0xcd,0x49,0x9c,0x8d,0x3c,0x6a,0x8b,0x4e,0x25,0x0e,0x65,0x44,0x2c,0x62,0x11,0x0b,0x4d, - 0xae,0x8b,0xe2,0x39,0x57,0xd9,0x2d,0x3b,0x69,0xa6,0x8d,0x71,0xfc,0x1b,0x53,0xe4,0xff,0xac,0xd8,0x57, - 0x16,0x6b,0x1b,0x71,0x87,0xa1,0xb8,0xce,0x38,0x2e,0x3e,0x50,0xdf,0xdf,0x21,0x1d,0x4a,0xfb,0xa0,0x61, - 0xc7,0x84,0xa0,0x15,0xb9,0x37,0xc8,0xa6,0x84,0x23,0xbc,0x7e,0x49,0xfd,0xd3,0xf4,0xef,0xe8,0x2a,0x77, - 0xe8,0x90,0x87,0xbf,0xa3,0xd2,0x55,0xfa,0x61,0x1e,0xa1,0x9c,0xe0,0xef,0x68,0xac,0xce,0xe3,0x4c,0xf5, - 0x4b,0x83,0x9a,0x61,0x50,0xb4,0xba,0x32,0xa0,0x8a,0x13,0xd4,0x10,0xca,0x64,0x92,0x15,0xd2,0xff,0x0c, - 0xfd,0xd7,0x4d,0xda,0xbd,0x72,0x29,0xee,0x52,0xfa,0x98,0xa9,0x3e,0x96,0xaa,0x0f,0xed,0xb3,0xa8,0xf2, - 0x97,0xcd,0xae,0x28,0x41,0x16,0x1d,0xc6,0x0f,0xdf,0xe1,0xb7,0xd3,0x4b,0xa6,0x5a,0x5c,0xc2,0x3d,0xfe, - 0x68,0x3c,0xc0,0xd2,0x21,0x14,0x1d,0x28,0x1d,0xf9,0x45,0x0b,0x00,0x27,0xd4,0xe0,0xec,0x8e,0xc2,0xef, - 0x09,0x33,0x50,0x35,0xe2,0x18,0x00,0x76,0x90,0xdf,0xeb,0x17,0xee,0x5f,0x92,0xb0,0x66,0x25,0x22,0xf5, - 0xa8,0x76,0xd3,0x33,0x9a,0xfd,0x86,0x9a,0x08,0x6c,0xb1,0x77,0x3f,0x0d,0x56,0xfc,0xf6,0x2a,0xee,0x0d, - 0x0d,0x2f,0x62,0x64,0xe8,0x95,0x52,0xe6,0x0a,0x55,0x68,0xdd,0xfa,0xfd,0x32,0x09,0xb6,0xba,0x7b,0xbe, - 0xc3,0x2a,0x02,0xb7,0xb4,0x07,0x8e,0xb7,0xc9,0xac,0x17,0xf7,0x1a,0x91,0xd5,0xd5,0x93,0x82,0x3c,0x62, - 0xde,0x62,0x07,0xb2,0x2a,0x62,0xa3,0x79,0xd0,0x34,0x8d,0x17,0x06,0xf1,0xc0,0x4d,0x90,0x34,0xba,0x0e, - 0xf0,0x06,0xea,0xdb,0x65,0xd0,0xeb,0x05,0xf7,0xe5,0xbd,0x13,0x77,0x2f,0x50,0x09,0x2a,0x7a,0x23,0xaa, - 0x26,0x09,0xbd,0x88,0x3e,0xd5,0xd3,0x9b,0x34,0x78,0xa7,0xef,0x73,0x0c,0x06,0xb1,0xa3,0x1f,0x79,0xef, - 0x72,0x9f,0xf2,0x71,0x06,0xe8,0x0f,0x84,0x44,0x04,0x02,0xde,0x30,0xb7,0x5f,0x34,0xa1,0x40,0xdf,0xf7, - 0x7a,0x5e,0xbf,0xa8,0x10,0xea,0xc6,0x1d,0xbb,0x7e,0x54,0xa5,0x4e,0xdd,0x05,0x88,0xdc,0xdf,0x84,0x2f, - 0xbd,0xc0,0x70,0x45,0x6c,0xb6,0x53,0xdb,0x84,0xd6,0x78,0x20,0x21,0x0c,0x6b,0x8e,0x0f,0xfd,0x2e,0x36, - 0x2d,0xb9,0x35,0x09,0xda,0x62,0x39,0xef,0xb2,0x06,0xc1,0x6a,0xe5,0xa1,0x1f,0x9c,0x69,0x85,0x07,0xca, - 0x65,0xba,0x5d,0x67,0xe2,0xa7,0x47,0xc7,0x5a,0x32,0xa7,0x09,0x4e,0x75,0x9d,0xcb,0xbf,0xbd,0xe1,0x7f, - 0xa4,0xb2,0x02,0xe2,0x04,0x27,0xf4,0x5c,0x53,0x12,0xaf,0x4f,0x6c,0x4a,0x30,0x7a,0x97,0xc9,0x57,0x48, - 0x47,0xa8,0xcf,0x7c,0xb8,0xd7,0xf7,0xa5,0x7d,0x8c,0x7d,0xe4,0x45,0xaa,0x24,0x2d,0x6f,0xf4,0xee,0xdf, - 0xa6,0x70,0x81,0x24,0x62,0xf2,0xdc,0x65,0xf6,0x04,0x8a,0xe8,0xfe,0xe5,0x62,0xb7,0xc0,0xbd,0x3a,0x8b, - 0x4d,0x49,0xe3,0x18,0xc9,0x03,0x35,0xae,0x91,0x2f,0x6d,0xa1,0x1b,0xe2,0x10,0x3a,0x8c,0x61,0xa9,0x39, - 0x85,0x14,0x6f,0xdd,0xba,0xa0,0x86,0x7d,0xd9,0x72,0x19,0xaf,0x17,0x25,0x01,0x77,0x94,0xc5,0x34,0x13, - 0x2a,0x4a,0x9f,0x17,0xdc,0x88,0xdd,0x49,0x70,0x45,0x05,0x1e,0xee,0x32,0xba,0xa4,0x71,0xd1,0x00,0x12, - 0xad,0x15,0x72,0x40,0xe5,0x8f,0x02,0xd1,0x7d,0x41,0x29,0x5a,0x00,0xa7,0x98,0x76,0xff,0x42,0x59,0x81, - 0xae,0x53,0xa7,0x53,0x6a,0x7f,0x0f,0x7a,0x04,0x52,0xdf,0xc0,0xd7,0xad,0x31,0xc3,0xa1,0xf7,0x69,0xd0, - 0x22,0x98,0xee,0x2f,0x82,0x4a,0x6b,0xbb,0xad,0xcd,0xf2,0xa9,0x4e,0x6b,0xd1,0x10,0xba,0xc1,0xdd,0x3d, - 0x1e,0x7c,0xf2,0x29,0x20,0x0e,0x10,0xb4,0x74,0x42,0x36,0x62,0x95,0x06,0xbe,0x22,0xbc,0xc6,0xfe,0xe3, - 0x71,0x7b,0x49,0xd4,0x60,0xf8,0xdd,0x56,0xf3,0x42,0x00,0x24,0xd8,0x71,0xd3,0xb5,0xb4,0x25,0xab,0x82, - 0x41,0x41,0xb7,0x2f,0x9c,0xc5,0xc9,0x48,0x8f,0x32,0x52,0x19,0xd0,0x41,0x23,0xe8,0x8d,0xd4,0xa8,0xc2, - 0x65,0xdc,0x38,0xd6,0xb2,0x3e,0x43,0xa0,0xeb,0xee,0x3c,0x65,0x35,0x0e,0x8f,0x25,0x52,0x86,0x17,0x68, - 0xc9,0x2b,0x33,0x94,0x37,0x2b,0x5e,0x91,0x65,0x30,0x1c,0x53,0x01,0xba,0xed,0x00,0x56,0x4e,0x3b,0x4a, - 0xcf,0xc4,0x3c,0x52,0x0e,0xbd,0xfe,0x34,0x08,0x65,0x27,0xa4,0xff,0xd0,0xd3,0xe7,0x47,0xad,0xf6,0x2c, - 0x9c,0xd6,0x92,0x15,0x7f,0xb1,0x5a,0x41,0x61,0x5a,0xf6,0xe1,0x78,0xb6,0xa4,0xdb,0xc9,0x73,0x9f,0xae, - 0x3c,0x6d,0x2e,0x58,0x6f,0xc4,0xd6,0x37,0xb9,0x2b,0x26,0xf4,0x93,0xa0,0x13,0xf7,0x9b,0x57,0x58,0xa6, - 0x11,0x5b,0x8c,0xf1,0x85,0x68,0x30,0xc8,0x70,0x2d,0x12,0x09,0xc0,0xb3,0xc0,0xb0,0xa5,0x04,0x0f,0x7e, - 0xcd,0x3c,0xcf,0xf5,0x4d,0x18,0xa2,0xab,0xb3,0x81,0x35,0x31,0x96,0xaf,0x89,0x9e,0x4a,0xba,0x5c,0x52, - 0x80,0x90,0x55,0x0e,0xb8,0x20,0xac,0x24,0xae,0x08,0xe5,0x88,0x63,0xb5,0xe4,0xa4,0xd1,0xef,0x25,0x1c, - 0xee,0x3c,0x49,0x7f,0x4a,0xa7,0xd5,0xab,0x79,0x9a,0xa3,0x08,0xf1,0x5b,0xce,0x52,0x44,0x8b,0x2c,0x6c, - 0xc8,0x42,0xa3,0x9f,0xd3,0xd0,0x12,0x1e,0xfc,0x02,0xff,0x10,0x93,0xe5,0xb8,0x5b,0xe5,0x86,0x63,0x39, - 0xf2,0x29,0xd7,0x01,0xb2,0x74,0xc8,0xbf,0x80,0x3d,0x42,0x0c,0xde,0x17,0x19,0x81,0x49,0x88,0x15,0xf9, - 0xa3,0x9b,0x44,0xed,0xc1,0xd1,0x0b,0xa0,0x1d,0x77,0x36,0xc3,0x3f,0x24,0xeb,0xa1,0x3e,0x09,0x21,0xf1, - 0x2e,0x59,0xae,0xdc,0x79,0x84,0xe6,0x61,0x4c,0xa2,0x0b,0xf5,0xfd,0x74,0x84,0x13,0x9b,0xc2,0x33,0x2a, - 0x04,0x46,0x3f,0x1a,0x96,0xef,0xf0,0xf2,0xd6,0xbb,0xa3,0xfe,0xea,0x90,0x28,0xec,0xe0,0xe8,0x8b,0xd1, - 0x61,0x00,0x76,0x2f,0x7e,0xb4,0xfa,0x97,0x1e,0x01,0xfd,0x3c,0xf4,0x77,0xc2,0x7f,0xab,0x1a,0x07,0xc4, - 0xd6,0x11,0x73,0xf7,0xee,0xd6,0x11,0xaa,0x1e,0x81,0x33,0x24,0xea,0xba,0x91,0xb8,0x3a,0x3c,0xb8,0x43, - 0xf4,0xfd,0x9d,0x23,0xfa,0xf0,0xe8,0xc3,0xc3,0x07,0x91,0xc1,0xf8,0xd3,0x2c,0x7b,0x14,0x7c,0x41,0xcd, - 0x12,0xe5,0xfe,0x03,0x48,0x9d,0xc5,0x38,0xba,0xfb,0x77,0x38,0x33,0x8a,0xbe,0x16,0x35,0x8b,0x68,0xef, - 0x5e,0x28,0xeb,0x7d,0xef,0x6e,0xb8,0x9c,0x47,0xf7,0xbe,0x22,0x0e,0x79,0x5a,0x45,0xf7,0xfe,0x1e,0x96, - 0x78,0x3d,0x89,0xee,0x7d,0x1d,0xc2,0x0b,0x76,0x74,0x7f,0x37,0x94,0x07,0xcc,0xe8,0xe0,0xab,0xf0,0xfe, - 0x97,0xc4,0x84,0x7c,0x97,0x74,0xf9,0xe5,0x02,0xca,0xe9,0x03,0x78,0x2c,0x9f,0x59,0x43,0x62,0x9b,0xfe, - 0x99,0x40,0x18,0x44,0xf0,0xa0,0x0f,0x35,0x7e,0x00,0x40,0x92,0x93,0x44,0x44,0x88,0x43,0x68,0x54,0x70, - 0x9e,0x29,0xa3,0x7e,0x3f,0x93,0x07,0x47,0x2e,0x82,0xb8,0x64,0xd1,0x77,0x89,0xef,0xe2,0x86,0x1e,0x61, - 0x9c,0x9e,0x4a,0x19,0x2f,0x4b,0x6c,0xd2,0x3e,0x67,0xd0,0x01,0x1e,0x57,0xe5,0x8c,0x6b,0x6c,0xe9,0x02, - 0x94,0xf0,0x23,0x34,0x74,0x43,0xf6,0x1d,0xea,0xe4,0x71,0x8a,0x64,0x26,0x33,0x37,0x8b,0x7e,0x4b,0x06, - 0xe4,0x05,0x4e,0x0e,0x12,0x24,0x8b,0xd7,0x0e,0x59,0x77,0xc4,0x2b,0xd4,0x1d,0x10,0x46,0x52,0xaa,0x77, - 0xfb,0xb6,0x1e,0xa1,0xe4,0xf1,0x98,0x77,0xd1,0x5e,0x36,0x99,0xcc,0xd2,0xcf,0xaa,0xb6,0x07,0xb9,0x02, - 0xef,0xcf,0xe7,0xd4,0xba,0x0b,0xf8,0xff,0x9d,0x36,0x82,0xb8,0xc6,0xa6,0x3f,0x16,0xb8,0x81,0xab,0xa3, - 0xda,0x75,0x6c,0xec,0xbb,0x13,0xd9,0xd8,0xd0,0xc1,0x10,0x6b,0x78,0x2b,0xc9,0xdb,0x7e,0x70,0xd0,0x1c, - 0x87,0xcf,0xab,0xad,0x85,0xea,0x96,0x8e,0xa9,0xa5,0x9c,0x5a,0xba,0x03,0xf9,0x17,0x9d,0xb7,0x3e,0x98, - 0xef,0xba,0x55,0xdc,0x7d,0x16,0x25,0x0d,0x47,0x47,0xb5,0x3a,0x22,0x1e,0xc3,0x46,0x42,0xea,0x44,0x8a, - 0x66,0x0a,0xae,0x29,0xce,0xd1,0xa7,0xbd,0x50,0x95,0xf7,0x02,0x35,0xe6,0xf1,0xac,0x48,0xce,0x10,0x57, - 0xf7,0xb7,0xa4,0xed,0xf5,0xb4,0x30,0xce,0x32,0xf9,0x27,0x24,0x91,0x74,0x27,0xe2,0xcf,0x6a,0xf5,0xbb, - 0x4a,0x34,0xc2,0xcb,0x45,0xfc,0x1b,0xc4,0xf0,0x5a,0x31,0xdd,0x33,0x19,0x4f,0x89,0x63,0xd0,0x1e,0xdc, - 0xf1,0xce,0xf8,0x5d,0x9a,0x23,0x82,0x9f,0x5b,0x5a,0x49,0x1d,0x4d,0x39,0xc3,0x71,0xc4,0x17,0x3e,0x2b, - 0x5a,0xfc,0x9e,0xb0,0x69,0xb4,0x49,0x0f,0x4c,0xf4,0x2e,0x07,0x81,0xae,0x56,0x6f,0xf2,0xa1,0xf2,0x8d, - 0xfc,0xf1,0x38,0x35,0x81,0x18,0x3b,0x36,0x72,0xcb,0x98,0xf1,0x2a,0xff,0x98,0xf9,0x38,0x7d,0x0e,0x6b, - 0x2d,0xfe,0xd5,0x0c,0x38,0x08,0x1f,0xdd,0xff,0x91,0xc4,0xbe,0x2d,0x14,0x3a,0x3c,0x3c,0xf6,0xfa,0xde, - 0xa4,0x08,0x89,0x47,0xa4,0x99,0x12,0xd0,0x57,0x08,0xa8,0x4b,0x8b,0xfc,0x91,0x1d,0xb3,0x8d,0x21,0xfc, - 0xc3,0xb5,0x17,0x5e,0x66,0xd5,0x69,0x98,0x5c,0x26,0x59,0x15,0xb2,0x61,0x40,0xc8,0x3e,0xd0,0x95,0xf2, - 0x3c,0x3f,0x03,0x85,0xec,0xb8,0x34,0xe4,0xb8,0xf4,0xe1,0x25,0xa1,0xd5,0x34,0xfc,0x08,0xa9,0x9f,0x42, - 0x36,0x21,0x31,0x67,0x05,0xbc,0x1d,0xb2,0x27,0x96,0x50,0x66,0xa0,0x3d,0x80,0x69,0xbf,0x8b,0xe2,0x2e, - 0x94,0xd8,0x18,0x09,0x51,0xcf,0x4e,0xd0,0xb2,0x7c,0x09,0xd7,0x3d,0xc7,0xcb,0x93,0x13,0x88,0x09,0xd5, - 0x2a,0xd4,0x41,0x57,0x3c,0xe5,0xa7,0x06,0x77,0x82,0xba,0x1d,0x68,0x5a,0x2b,0x4c,0x2d,0xe8,0xf3,0x0c, - 0x25,0x48,0x70,0x63,0xce,0x32,0x28,0xf1,0x3b,0xca,0x0a,0xec,0x9d,0xed,0x10,0x4a,0x07,0xc2,0x3f,0x3c, - 0x24,0x94,0x4f,0xff,0xd4,0xad,0x36,0x32,0xa8,0x0f,0xff,0x69,0x53,0xf2,0x23,0xa2,0x88,0x8d,0x56,0xa3, - 0xec,0x31,0x98,0xf0,0x22,0x62,0x1f,0xc7,0x5b,0x7b,0x41,0xf8,0x31,0x51,0xfb,0xc9,0x06,0x62,0x90,0x70, - 0x5b,0x11,0x5b,0x86,0xf9,0xc3,0x93,0xc4,0x76,0xce,0x72,0x92,0xb0,0x1d,0x2e,0x5e,0x72,0xe6,0x49,0x5c, - 0xd5,0x50,0xfd,0x11,0xbf,0xf4,0x5d,0x0f,0x70,0x0a,0x8f,0x91,0x62,0xdd,0xe4,0x9c,0xf8,0x0e,0x89,0x8d, - 0xab,0x9a,0x33,0x2e,0x12,0x80,0x76,0xd5,0x71,0x10,0x5e,0xca,0x41,0x38,0x6f,0x16,0x68,0x8a,0x69,0xa8, - 0xcc,0x49,0xab,0x4c,0xb1,0xa8,0x9a,0x85,0x4e,0x31,0x04,0xda,0x89,0xec,0x3c,0xab,0x10,0x10,0x51,0x19, - 0xe5,0x12,0x79,0xca,0xca,0x27,0x5b,0x7b,0xac,0xeb,0x89,0x18,0xe7,0x38,0x1d,0xbf,0x9e,0x52,0x29,0x1e, - 0x66,0x88,0xf5,0x02,0x9d,0xba,0xd7,0xb2,0xcc,0x68,0x2e,0x32,0xfd,0x5a,0xf6,0xf1,0x82,0x07,0xb5,0xd6, - 0xe5,0xb1,0xbc,0x2d,0xf8,0xb6,0xd5,0x74,0xa9,0xfd,0x08,0xb0,0xfe,0x5d,0xb8,0xa8,0xe3,0xd7,0x8b,0x26, - 0xdf,0x32,0x50,0x6f,0x6f,0x78,0x6e,0x28,0xf1,0x53,0x76,0xac,0xf1,0x20,0x4b,0xc9,0xac,0xea,0x9f,0xc5, - 0x45,0x1d,0xd4,0x3e,0x7b,0x14,0x13,0xd7,0x53,0x20,0x14,0xcc,0x4c,0x17,0xc5,0x21,0xa7,0x79,0x2d,0x10, - 0x52,0x4d,0xd3,0x94,0x31,0x3f,0xfb,0xa2,0xb4,0x65,0x80,0x69,0x37,0x34,0x7e,0x14,0x67,0xc3,0x31,0x55, - 0xa8,0x06,0xec,0x65,0x85,0xff,0xb0,0xbf,0x75,0x96,0x4c,0x60,0xfc,0x43,0x5d,0x3c,0xc6,0x02,0x66,0xdc, - 0xed,0xf6,0x1e,0xe7,0x33,0x77,0xe4,0x1d,0x97,0xa0,0xf0,0x16,0x23,0x26,0xac,0x4a,0x76,0x5a,0xcf,0x1f, - 0x34,0x7f,0x5a,0xee,0xad,0x5d,0xf1,0x8c,0xe0,0xcd,0xb9,0x14,0xc7,0xc1,0xed,0x2c,0xb7,0xc7,0xe5,0x42, - 0x67,0x20,0xb2,0x82,0xb4,0xa8,0xda,0x39,0x02,0x3c,0x9d,0x60,0x13,0xa1,0x8c,0x5e,0x4b,0x65,0x68,0xcb, - 0xaa,0x41,0x4d,0x5f,0x32,0xb4,0xcd,0xf0,0xe2,0xdc,0xa0,0x2a,0x39,0x63,0x49,0x8b,0x92,0x0e,0x59,0xc8, - 0x97,0x11,0x02,0x27,0x96,0xe4,0x4d,0xe2,0x27,0x46,0x9d,0x0d,0x76,0xa9,0x49,0xe3,0x4d,0x7c,0x1e,0x7f, - 0x48,0x0e,0x26,0x08,0x11,0xc5,0x7f,0x1d,0xf9,0x37,0x11,0x70,0x87,0x8b,0xc3,0xc3,0x37,0x44,0xba,0x05, - 0xfe,0xc3,0x1d,0xaf,0x3f,0xd1,0x82,0xf0,0x80,0x4e,0x7c,0x06,0x5e,0x1a,0xd6,0x59,0x5a,0xb4,0x3d,0xb7, - 0x65,0xda,0x0c,0x1e,0x1a,0xd2,0x8c,0x25,0x6c,0x48,0xe3,0x99,0x30,0xff,0xa7,0xfc,0x4e,0x62,0xe1,0x38, - 0x36,0x72,0x5c,0x3b,0xa0,0xda,0x81,0x18,0x9d,0xfa,0x5e,0x48,0xcf,0xdb,0xdb,0x8f,0x76,0x4e,0x88,0xc5, - 0xa0,0x5b,0xdf,0x2e,0x72,0x78,0xf0,0xf4,0xd9,0xe3,0xfd,0xc7,0x87,0x07,0x75,0xc9,0xa3,0x23,0x53,0x12, - 0x42,0x65,0x7f,0x12,0x8a,0xdb,0x65,0xe8,0xb3,0x28,0x9f,0x4d,0x1c,0x46,0xef,0x34,0x91,0x8b,0x92,0x3f, - 0xa0,0x04,0xe1,0x41,0xfe,0x42,0x30,0xaf,0x75,0x74,0xb6,0x4f,0xf5,0x78,0xd3,0xf8,0x34,0x2c,0xa9,0xa1, - 0xe5,0xf6,0x14,0x91,0xa8,0x8d,0x1d,0xd2,0x45,0x6c,0x29,0x03,0x3c,0x14,0x19,0x00,0xd4,0x30,0x2f,0x78, - 0xf1,0x97,0x89,0x8e,0xa8,0xa5,0x2d,0xc8,0x6c,0xd5,0x81,0xed,0xc3,0x0f,0xf7,0x52,0xa9,0x72,0xce,0xe0, - 0x5b,0xa9,0xf0,0x8c,0x88,0x54,0xa1,0x54,0x10,0x55,0x78,0x04,0xe5,0xb0,0xa4,0x3e,0x85,0xf7,0x43,0xd8, - 0xda,0xe6,0xfe,0x79,0xff,0x1e,0xb1,0x78,0x0a,0xd5,0xaf,0xa1,0xd7,0x35,0x6d,0xf4,0x79,0x62,0xf7,0x79, - 0xf4,0x48,0xfa,0x3b,0xe1,0xfe,0x72,0xff,0xa4,0x7f,0xd7,0xae,0x8e,0xf2,0xd0,0x90,0x66,0xf7,0xb4,0xfe, - 0x4c,0x54,0x0e,0x3f,0xa2,0xe0,0x47,0xbc,0x2d,0xeb,0x80,0x86,0xa6,0x02,0xca,0x1f,0x9b,0xf2,0x63,0x29, - 0x7f,0x2c,0xfd,0xbe,0x8b,0x97,0xc3,0xdc,0x3f,0xb6,0xea,0xd1,0x02,0x1e,0x1f,0xec,0x1d,0x85,0xef,0x98, - 0x2d,0xb5,0xdb,0xb8,0x6c,0xc6,0x4a,0xa9,0x4c,0xa3,0x85,0x34,0x6a,0x22,0xff,0x5d,0x69,0x8f,0x7f,0x15, - 0x9a,0x62,0xce,0x23,0xc2,0x61,0xc1,0x29,0x8b,0x96,0x6b,0xea,0xb2,0xb2,0x87,0x6a,0x9d,0xaa,0xe1,0x16, - 0x0e,0x83,0x6a,0x76,0x91,0xb0,0xf1,0x47,0x62,0x12,0x4a,0x4a,0x18,0x06,0xb9,0x9f,0x38,0x03,0x56,0xfe, - 0x23,0x75,0x20,0x4e,0x9c,0xa7,0xda,0x06,0x73,0x89,0xb3,0xf8,0x86,0x6e,0x71,0x42,0x1b,0x18,0x4c,0xee, - 0x67,0x6e,0x65,0xf8,0x3e,0x5f,0x86,0xe5,0x7a,0xed,0x8b,0xd5,0x54,0x70,0xd5,0x0a,0xb5,0x90,0xc7,0xc6, - 0x4d,0x21,0x5b,0x5d,0xd4,0x6d,0x32,0xf7,0x2f,0x18,0x05,0x9a,0xf9,0xe2,0x3a,0xbc,0xa4,0x51,0x84,0x33, - 0xfe,0x4c,0xc4,0x01,0x74,0xc9,0x0f,0xe4,0x7a,0x9a,0xcb,0x78,0xcc,0xde,0x1a,0xb6,0xb6,0x32,0xf6,0xc1, - 0x23,0xc3,0x57,0x30,0x3c,0xe1,0x43,0x2d,0x92,0xa9,0x29,0x4e,0xfc,0xee,0x70,0xfe,0x70,0x3a,0x9c,0x6b, - 0x25,0xbf,0x53,0x5d,0xe1,0x60,0x7e,0x34,0x9c,0x50,0xa7,0xdb,0xb0,0x96,0x3b,0xc5,0x9c,0x34,0x00,0xdd, - 0xf1,0xbc,0x3b,0x58,0x37,0x7e,0xa3,0x3a,0x3d,0xb8,0x77,0x74,0xfb,0xb6,0x52,0xe8,0xc4,0x8f,0x50,0x25, - 0xdf,0xb7,0x93,0xef,0x9b,0xe4,0x07,0x76,0xf2,0x03,0x65,0x4d,0x78,0xc1,0xcd,0xac,0x56,0x28,0x88,0x7f, - 0x1f,0xd0,0xbf,0x9e,0x17,0x9e,0xc7,0x5e,0xa2,0x5d,0x5c,0xc3,0x7d,0xb3,0xb4,0xb0,0x77,0x34,0xd2,0x67, - 0xe4,0x59,0x0a,0x97,0xba,0x2f,0xd3,0x4b,0xb8,0x44,0x5d,0x7c,0x5b,0x94,0xdf,0x53,0xa9,0xa8,0x3b,0x77, - 0x38,0xa1,0x19,0x29,0xdd,0x75,0x34,0x12,0x32,0x89,0x1d,0xfd,0xbb,0xf2,0x2f,0xe8,0x18,0xad,0xd7,0x4b, - 0x56,0x7d,0xe6,0x4d,0x66,0x05,0x56,0xc2,0xac,0xf6,0x8d,0x13,0xe5,0x0d,0x5c,0x29,0x50,0x37,0x81,0x47, - 0xfa,0x98,0xe3,0x22,0x34,0x90,0x7d,0x0e,0x5b,0x32,0x7e,0xf2,0xa6,0x5f,0xf0,0x68,0x93,0x4f,0x82,0x35, - 0x6d,0x3f,0x70,0x51,0x12,0xa6,0xec,0x7a,0x61,0xaf,0x79,0xee,0xf6,0xb5,0xc9,0xf8,0x99,0xfe,0x78,0xaa, - 0x3e,0x00,0x3b,0x17,0xe6,0x7e,0x3b,0x33,0x8e,0x9d,0x2f,0x02,0x02,0xe9,0xb1,0x3a,0xee,0x67,0x70,0xe3, - 0x6a,0x7d,0x2f,0xad,0xef,0xa9,0xf5,0xed,0x3f,0x8d,0xcf,0x6c,0x8c,0x15,0x12,0x2e,0x7c,0xb8,0x4b,0xa0, - 0x7f,0xd1,0x8f,0x9f,0x86,0x4e,0xe3,0xfb,0xce,0xbd,0xbf,0x1b,0x5e,0x00,0xe1,0x5c,0x04,0xeb,0x0b,0x16, - 0x47,0x52,0x2e,0x61,0x45,0x58,0x8e,0x1b,0x4c,0xba,0x5f,0x23,0xd3,0x7d,0xd6,0x31,0x4d,0x45,0x4d,0xb9, - 0x85,0x6a,0x53,0x6d,0x22,0xbb,0x2e,0x7d,0x96,0x11,0x49,0x94,0x90,0x79,0x12,0x5a,0xcf,0x10,0xce,0xed, - 0x67,0x49,0x56,0xec,0x6b,0xb0,0x43,0xa8,0xd2,0xba,0x11,0xc3,0x2e,0x90,0xd8,0x00,0x29,0x9d,0x65,0xaf, - 0x07,0x2e,0x95,0x1b,0xb6,0x50,0x77,0x64,0x30,0xf7,0x42,0xa1,0x27,0xeb,0x5a,0x2c,0x60,0xfd,0x2a,0x27, - 0x56,0x04,0xa4,0x8b,0xd5,0xea,0x1d,0xde,0x38,0x87,0x2f,0x01,0xf2,0x70,0x99,0x4d,0x6b,0xb7,0x84,0x2a, - 0xbc,0xc3,0xbd,0xd4,0xca,0xce,0x84,0xf4,0x84,0xb4,0x4d,0x6d,0xca,0x56,0x0b,0x2f,0x11,0x1f,0xf5,0xd7, - 0x44,0xeb,0x4e,0xe6,0x4a,0x67,0x52,0xbe,0x62,0xf9,0x63,0x2e,0xd1,0xb7,0x49,0x28,0xdb,0xc8,0x27,0x00, - 0xb4,0x88,0x89,0xa1,0x07,0xe5,0x72,0x25,0x4f,0xfc,0xa1,0xe2,0x61,0x67,0x74,0x41,0x42,0xa2,0x48,0x23, - 0x06,0x3d,0xb7,0xa5,0x1c,0xe8,0xb3,0x47,0xc5,0x49,0x3c,0x0d,0x44,0x99,0x59,0x3f,0x47,0x23,0x79,0x22, - 0xca,0xd7,0x13,0x57,0x9e,0x4a,0x93,0x84,0xd8,0x6e,0xe7,0x7d,0x72,0x91,0xd8,0x65,0x9d,0x42,0x34,0x66, - 0xc4,0xa8,0x0d,0xb8,0x43,0x9a,0xfa,0x31,0x7b,0x82,0xe7,0x40,0x94,0x7a,0x21,0x26,0x0a,0x8f,0x9d,0x1b, - 0x02,0x1f,0xf8,0x6c,0x1a,0x9f,0x27,0x74,0xe6,0xfd,0x29,0x91,0xb4,0x04,0xff,0xac,0x18,0x48,0xf3,0x3f, - 0x8f,0xa7,0xa1,0x79,0x68,0x3c,0xc7,0xa3,0x1a,0x64,0x77,0x68,0xfe,0x1c,0xa4,0x32,0x9b,0x1a,0x4c,0x6b, - 0xbe,0x62,0x37,0x60,0xc6,0x62,0x6a,0x31,0x16,0x78,0x91,0xec,0x8c,0x5e,0x6c,0x84,0x65,0xc6,0xdd,0xa5, - 0x1d,0xa5,0xd1,0xbc,0xaa,0x5a,0x28,0xb8,0xd2,0x7e,0x68,0x2a,0x8e,0xe0,0x09,0x2f,0x3d,0x0a,0x47,0x59, - 0xad,0x51,0xa2,0xc4,0x25,0x11,0x94,0xd5,0x50,0xf2,0x69,0x14,0x94,0xb0,0xa4,0x6b,0xed,0x51,0x93,0xe6, - 0xc1,0xba,0x76,0x2c,0xb4,0x93,0xa8,0xd8,0xd3,0x20,0x9a,0xd6,0x6f,0xa1,0x94,0xfb,0x4f,0x18,0xf3,0x77, - 0x44,0x2a,0xb5,0xde,0x6c,0xd5,0xfd,0x9b,0xe2,0xd1,0xb4,0xc2,0x23,0x63,0x2a,0x8f,0x8c,0x95,0x7a,0x64, - 0x4c,0xd7,0xca,0xc8,0xba,0xe3,0x09,0x57,0x74,0x99,0xd5,0xf3,0xa3,0x8e,0x9d,0xd8,0x7c,0xd0,0xd5,0xda, - 0x4c,0xea,0x5d,0x12,0x0e,0x75,0x31,0xa8,0x0b,0x7b,0xb3,0x2e,0x50,0x01,0x4c,0x3a,0x37,0x79,0xc1,0xfc, - 0x3a,0xef,0xc6,0x77,0x15,0x6f,0x32,0xad,0xe5,0x48,0x43,0xc0,0x6a,0x55,0xd2,0x58,0x19,0x66,0xa4,0x49, - 0x82,0x00,0xfe,0xa2,0xaa,0x34,0xfc,0x52,0x86,0xaf,0x33,0xd5,0x2c,0xa6,0xeb,0x20,0x2a,0xa9,0x47,0x3a, - 0x8d,0x5b,0x16,0xac,0xc1,0x44,0xa8,0xd5,0xcc,0xd6,0xf5,0xbc,0xaa,0x7d,0x4a,0xcd,0xe1,0xe4,0xf8,0x7a, - 0xda,0x02,0x3d,0xe5,0xd0,0x7a,0x00,0x70,0x2d,0xb9,0xa5,0x04,0x04,0x85,0x2d,0xe6,0x30,0xfd,0xf5,0x6b, - 0x27,0x37,0xbc,0x36,0x39,0x4f,0xe7,0x77,0x5c,0x2c,0x3c,0xf4,0xd4,0x1d,0x3a,0x2c,0x32,0x68,0xc1,0x8c, - 0x8c,0x7d,0x3a,0x80,0x85,0x02,0x3b,0xfd,0xe2,0x28,0xe2,0xb2,0xfd,0x7b,0x43,0xb9,0xe3,0x25,0x57,0xe4, - 0x82,0xab,0xd5,0x1d,0x4f,0xc9,0x0f,0xbc,0x3b,0x43,0xea,0xd6,0x09,0xf6,0xe6,0xfe,0x66,0x33,0x82,0x83, - 0xd3,0xa3,0x78,0x2a,0xc6,0xd6,0xf5,0x18,0x05,0x6f,0x4c,0xf9,0xe8,0x48,0x58,0xb6,0x4c,0xae,0xf6,0xf0, - 0x7c,0x38,0x1b,0xe5,0x00,0x3a,0xa2,0xbc,0xa6,0x61,0xa2,0x0b,0x22,0xce,0x58,0xde,0xa1,0x57,0x9f,0x1c, - 0x24,0x86,0x6d,0x3b,0x0a,0x2b,0xcb,0x3d,0xd6,0x41,0xcb,0x27,0x16,0x95,0x40,0xf0,0xe5,0x7b,0xd0,0x06, - 0xd1,0x08,0xa5,0xe7,0xc9,0x2f,0x76,0xa7,0xb0,0x35,0x86,0xa6,0x75,0x3d,0x46,0x2c,0x6d,0x68,0xda,0x8f, - 0xf7,0x88,0xdc,0x72,0xfb,0xcb,0xc5,0xe1,0x36,0x2e,0x28,0x47,0xca,0xaf,0x83,0x8b,0xbd,0xcc,0xed,0xa7, - 0x23,0xf1,0x68,0x02,0xc4,0x96,0xd5,0x38,0x6b,0x5e,0xbb,0xe3,0x80,0x69,0x77,0x60,0x4e,0x93,0xe3,0xfc, - 0x23,0x8d,0xc7,0x08,0xfc,0x28,0x4f,0x38,0x23,0x1f,0xa1,0x36,0xbd,0x9a,0x0b,0x2a,0xb5,0xad,0x0a,0xa3, - 0x55,0x9d,0x30,0x4a,0xa3,0x27,0x09,0xbb,0xf5,0x2b,0x70,0x8d,0xca,0xa8,0x47,0x34,0x63,0x88,0xf3,0x94, - 0xc7,0xb7,0xad,0x05,0xaf,0xc1,0x16,0xfb,0xee,0xf3,0x9b,0xd2,0x13,0x81,0xd2,0xd3,0x64,0xf4,0x7b,0xe6, - 0x9f,0x26,0x41,0xf4,0x5d,0xc6,0xdc,0x7a,0xcd,0x2c,0x18,0xe7,0x6f,0xa1,0xc5,0x82,0xd2,0x3f,0x63,0xb8, - 0xf0,0x4d,0x16,0xd5,0x73,0x10,0x0d,0x40,0x58,0x1c,0xcf,0x27,0x1d,0xe3,0xb2,0x0a,0xae,0x68,0x67,0x4b, - 0xa1,0x27,0x82,0x47,0x78,0x6a,0xd2,0xc4,0xb2,0x21,0x24,0xc6,0xb0,0xd2,0x0d,0x15,0x79,0xd5,0xc0,0x5f, - 0x89,0xd6,0x50,0x9c,0xc5,0xff,0x4c,0x7d,0xdb,0x1d,0xf2,0x50,0x55,0x90,0xc7,0x98,0x99,0x3c,0x42,0xa9, - 0xb6,0xaf,0xbc,0x7f,0x1c,0x8b,0xa6,0xa0,0x07,0x9d,0x09,0x1a,0x60,0xd6,0x2f,0x6b,0xca,0x5b,0xdf,0x5e, - 0xe3,0x87,0xb5,0xa9,0x45,0xc7,0xb0,0xae,0x1d,0x14,0x9f,0x33,0x68,0xf4,0xc1,0x20,0xa9,0x50,0x22,0x2d, - 0xe8,0x25,0x56,0xc5,0x59,0x9a,0x2f,0xa2,0xc5,0x9a,0x23,0x03,0x05,0xa3,0x4a,0x93,0x8d,0xb0,0x02,0xbd, - 0x1b,0x5a,0xb5,0xb0,0x48,0xfa,0x87,0xae,0x06,0x42,0x12,0x1f,0xf2,0xa6,0x45,0xe7,0x36,0x12,0x98,0x4d, - 0xeb,0x3d,0x35,0x60,0x7c,0x50,0xd5,0xb0,0xc9,0x20,0x0d,0xa5,0x71,0xab,0xb3,0x7b,0xa6,0x11,0xa1,0x1f, - 0x4b,0x36,0x08,0x6f,0xb9,0x89,0x6f,0x1e,0x53,0xb7,0x72,0x68,0x6c,0xdd,0xa2,0xad,0x5d,0x36,0x8f,0x20, - 0x76,0xc5,0xd7,0xb0,0x89,0x38,0xc6,0x4a,0x90,0x04,0x69,0xf0,0x79,0xf6,0x47,0xca,0x72,0x1c,0x36,0x85, - 0x0a,0x21,0xd3,0xb9,0x4c,0xe2,0x3f,0x12,0xe0,0x09,0xeb,0xb9,0x09,0xb4,0xc4,0x3e,0x5e,0x49,0x5b,0xb2, - 0x59,0x73,0xcf,0xc0,0x84,0x47,0x5c,0xc9,0xa8,0x9a,0x31,0xdd,0xad,0x55,0x78,0x97,0xba,0x1a,0xab,0xc3, - 0xec,0xe3,0x64,0xcb,0x0f,0x62,0x67,0xfc,0xad,0xb1,0xba,0x96,0xc7,0xb0,0x4c,0x50,0x8a,0xa2,0xd4,0x19, - 0x54,0x74,0xf0,0xef,0x14,0x91,0xbf,0x4e,0x72,0x9f,0x8d,0xa9,0xc0,0x00,0xed,0x27,0xe6,0xbb,0x6d,0x02, - 0x6a,0x0c,0x40,0x59,0x0d,0x4a,0xc7,0x85,0x50,0x5e,0xa1,0x8d,0xeb,0x20,0xae,0xee,0x58,0x12,0xa0,0x9b, - 0xda,0x3e,0xd4,0xf8,0x8c,0x21,0x60,0xa2,0x1e,0x95,0x51,0x19,0xc2,0x08,0x52,0xc2,0x00,0x81,0x62,0x3e, - 0xd2,0x02,0x05,0xf8,0x5f,0xb8,0x67,0xf0,0x94,0x58,0x2d,0xd0,0xf0,0x2a,0x45,0x56,0x78,0xc0,0xc7,0x1c, - 0x15,0xa8,0x36,0x04,0xc3,0x0f,0x8d,0x55,0x0e,0xbc,0x2c,0x07,0xa5,0xb9,0x6d,0xc6,0xa9,0xad,0x16,0x6c, - 0x19,0x27,0xc7,0x0f,0x6d,0xfa,0x0d,0xd4,0xe1,0xa9,0xb5,0x7d,0x6c,0x8d,0x4f,0x89,0x3c,0x84,0xdf,0x95, - 0x50,0x6f,0x1d,0x0c,0x96,0xf4,0x5e,0x6c,0xed,0x31,0xf1,0x4e,0x74,0xf6,0xf4,0x69,0x41,0x0b,0xcd,0xef, - 0x00,0x75,0xc0,0x69,0x42,0x9d,0x45,0xec,0x66,0xea,0xfe,0x92,0x87,0x45,0xed,0x59,0x6b,0xd1,0x28,0x04, - 0x4f,0x4a,0x7c,0x61,0x51,0xcf,0xb0,0x8a,0xdb,0xd0,0x33,0x03,0xf3,0x78,0x4d,0x74,0xa8,0x03,0x2e,0xca, - 0x9f,0x41,0x63,0x1d,0x4d,0x55,0x1c,0x8e,0x42,0xbc,0xff,0x99,0xb4,0xe7,0x39,0xd1,0xe6,0x86,0x41,0xa3, - 0x04,0x61,0x40,0x9c,0x25,0xa2,0xe2,0x02,0xe0,0x8d,0xf4,0xd5,0xea,0x9e,0x93,0xcc,0x6e,0xdb,0xd9,0x65, - 0x84,0xc2,0x2e,0x60,0xcd,0x4c,0x4f,0xf0,0x47,0xcc,0x04,0x8e,0x05,0xd2,0x92,0xb6,0x17,0xd6,0x6d,0x34, - 0x62,0xb8,0xb7,0xb7,0x4b,0x07,0x73,0x87,0xf0,0xd7,0x72,0xf5,0x18,0xe6,0x60,0xe8,0x2b,0x06,0xbe,0xe1, - 0x5f,0xdb,0x98,0xd4,0xdf,0xb0,0x27,0x1c,0xc6,0x00,0x6e,0xa1,0xf6,0x8c,0xd2,0x38,0x0b,0x93,0xf3,0x9c, - 0x0d,0x8f,0x94,0xac,0xf8,0x8a,0xae,0x01,0xe2,0x8e,0x95,0x11,0x66,0xa2,0x43,0xd7,0x36,0x9e,0x4b,0x28, - 0xa3,0x91,0xb2,0x76,0x83,0xfd,0x99,0x7d,0xad,0x7c,0x4b,0xe1,0xc2,0x35,0xca,0x4c,0xa1,0x39,0xc8,0xa6, - 0x95,0xe2,0x0e,0xa8,0x94,0x17,0x28,0xf7,0x4e,0xf3,0xab,0x51,0x12,0x65,0x81,0x76,0x84,0xba,0x46,0x63, - 0xb9,0x96,0x9b,0xb3,0x23,0x1f,0xf5,0x1d,0xd7,0xcf,0x4d,0xfc,0x1e,0xae,0x1f,0xca,0x4d,0x61,0x08,0xd3, - 0x1c,0xf3,0x65,0xf8,0x8c,0xb4,0xdf,0xa1,0x1a,0xa3,0xb3,0x32,0x57,0x2b,0x31,0x20,0xb5,0xeb,0x5b,0x22, - 0x19,0x44,0xb1,0xed,0xe5,0x81,0xa7,0x3a,0xc2,0x41,0xa7,0x2b,0xbc,0x8e,0xe8,0xa6,0x53,0xe8,0xfa,0x2b, - 0xe0,0x11,0xbf,0x38,0x12,0x57,0x40,0x8b,0xf8,0x69,0xc2,0xe1,0xcf,0xb5,0x9c,0x7e,0x31,0x48,0xcb,0xb2, - 0x20,0x16,0x22,0xa3,0xb3,0x53,0x65,0xf3,0x45,0x9c,0x84,0x0b,0x85,0x84,0xae,0xa0,0xcd,0x91,0xcd,0xd2, - 0xa8,0x0a,0xd5,0xd7,0x7e,0xf1,0xad,0x5a,0xaa,0x45,0x87,0x36,0x7f,0x87,0x01,0x6c,0xeb,0x39,0x40,0xf9, - 0x50,0x20,0x7c,0xcf,0x6f,0x70,0xc4,0x17,0xf2,0x16,0xa8,0x37,0xa9,0x5e,0x59,0x1b,0x27,0xc0,0x67,0x55, - 0xfd,0x14,0x31,0x52,0x46,0x49,0x76,0x5a,0xd0,0xa7,0x0b,0x91,0x61,0x17,0x9e,0xd3,0x34,0x7b,0x09,0xc7, - 0x7b,0x62,0x4d,0x0f,0xb7,0x78,0x25,0x94,0x3d,0x61,0x55,0x8d,0x1d,0x37,0x73,0x56,0xf6,0x41,0x73,0x44, - 0x5d,0x54,0xe0,0x36,0xae,0x91,0x47,0xfd,0x44,0x57,0x34,0x53,0x5c,0x7d,0xbd,0x5a,0xc3,0x61,0x0e,0xd8, - 0x19,0x43,0x3f,0x01,0xfd,0xc7,0x04,0x9b,0x78,0xd2,0x58,0x07,0xfe,0xf7,0x49,0x30,0x68,0x2f,0x5e,0x10, - 0xa6,0x45,0xbc,0xb5,0x05,0x4f,0xf6,0xa7,0xb9,0x8f,0xa7,0xa6,0xca,0xfe,0x0d,0x13,0xa3,0xa2,0xd3,0x1a, - 0x87,0x4d,0x86,0x8c,0xd5,0x1d,0x50,0x8f,0xd1,0x31,0xc1,0x2d,0x5b,0xc4,0x1d,0x96,0x55,0xba,0xf8,0xcd, - 0x46,0x57,0xc0,0x7d,0x6c,0x9c,0xc4,0xdd,0x40,0x9d,0xd4,0xb1,0xfd,0x24,0xfa,0xd2,0x4e,0xd2,0x1f,0x3a, - 0x0a,0x73,0x3b,0xb2,0xa8,0x13,0x72,0x9c,0xdd,0x1a,0xe4,0x6a,0xb9,0xf5,0xf1,0x04,0xa5,0x28,0xf7,0x0f, - 0x1f,0xc7,0x80,0x95,0x33,0x79,0xa7,0xeb,0x18,0x84,0x65,0xe0,0xfd,0x4d,0x48,0x56,0x13,0x35,0x41,0x08, - 0x86,0x02,0x62,0x05,0xe3,0x8a,0x6b,0xcb,0xf2,0xdc,0x65,0x0f,0xa5,0x64,0x52,0x52,0x2f,0x92,0x70,0xb1, - 0x5c,0xbf,0x65,0xb2,0x5a,0x2c,0x2b,0xc7,0x63,0x5c,0xcf,0x4a,0xba,0xde,0x8a,0x4f,0xb4,0xac,0xcd,0xbe, - 0x34,0xdc,0x49,0xd7,0xc6,0x9b,0xcc,0xfc,0xdb,0x7b,0x86,0x65,0x96,0x99,0xab,0xdb,0xf4,0x3f,0x12,0xb0, - 0x92,0x9d,0xc2,0xa5,0xb4,0xb8,0x5e,0x90,0x54,0x84,0xf5,0xd1,0x88,0x72,0xeb,0x9c,0x68,0x12,0x0e,0xa9, - 0xfa,0x73,0xad,0x22,0xbd,0x83,0xa4,0x52,0x27,0x00,0xaa,0x67,0x0d,0x70,0x1f,0xea,0xfd,0x22,0xac,0x90, - 0xb7,0x4f,0x87,0x31,0xd9,0x2f,0x0b,0xd1,0x81,0x15,0xf3,0x36,0x6d,0xcb,0xa6,0xe0,0x9e,0xe6,0x44,0xbf, - 0xd6,0x41,0xc3,0x28,0xc1,0x93,0xf8,0x61,0x56,0x70,0x58,0x7e,0x8f,0x06,0xbb,0xb1,0xcc,0x25,0xba,0xe3, - 0x84,0xb0,0x98,0xca,0x14,0x44,0x37,0x92,0x3f,0x03,0x55,0x34,0xae,0xfc,0xce,0x30,0xb3,0x52,0x1b,0x72, - 0x61,0xfc,0x1d,0x24,0xe7,0x93,0x91,0x7c,0xd2,0xa1,0x24,0x3e,0xf7,0xed,0x32,0x7d,0xbe,0xf7,0x55,0x8e, - 0xda,0xeb,0x46,0x10,0x6a,0x1a,0xd6,0x92,0x00,0x04,0x20,0x48,0x43,0x1b,0x5a,0xb4,0x82,0x8c,0xb9,0x63, - 0x64,0x78,0x6b,0x2f,0xd8,0x66,0x49,0x7d,0x31,0x0a,0xf3,0xbd,0x83,0x8b,0x65,0xba,0x9d,0x51,0x3f,0x47, - 0x3d,0xaf,0x0f,0x37,0xdb,0xb7,0x6f,0x3b,0x05,0xf8,0x4a,0x1f,0x9f,0xd9,0x8e,0xb6,0xab,0x46,0x40,0x3c, - 0x61,0xba,0xda,0x0b,0x55,0xd7,0xb0,0x71,0xd0,0x85,0x72,0xa6,0x84,0x73,0x7b,0xee,0x3c,0xa7,0x36,0xa2, - 0xec,0x21,0xcc,0x9e,0x89,0x2d,0x61,0x35,0x96,0xd9,0xf1,0xc1,0x45,0x14,0x68,0x1e,0xf5,0x0d,0xf1,0x07, - 0x89,0x03,0x04,0x81,0x75,0x16,0xc8,0x3e,0x75,0x9a,0xa1,0xc6,0x97,0xf1,0x1f,0x7d,0x16,0x58,0x30,0xa1, - 0x39,0xcb,0x8a,0x0d,0xd2,0x89,0xac,0x75,0x15,0x5a,0x39,0x71,0x94,0xb1,0xa9,0x61,0xd4,0x3a,0xfe,0x29, - 0x87,0x9a,0x87,0xc3,0x64,0x14,0x8b,0xee,0x5a,0x0d,0xb2,0x48,0xf0,0xda,0xe2,0xa1,0x8f,0x3e,0xf7,0xba, - 0xfa,0xa4,0x44,0xe0,0x91,0x2c,0x96,0xcf,0xf0,0x8a,0x28,0x96,0x84,0x2e,0xbb,0x52,0xec,0x93,0x16,0x51, - 0x66,0x79,0x03,0x4d,0x6a,0x23,0x6e,0xec,0x88,0xea,0xd4,0xc0,0x40,0xea,0xa8,0x64,0x69,0xd9,0x9c,0x52, - 0x5f,0x58,0x59,0x36,0x91,0x07,0x1b,0xec,0x5c,0xd3,0x18,0x81,0x0a,0x07,0xc9,0x31,0xc4,0xd8,0x21,0xe6, - 0x58,0x8d,0xe0,0xca,0x3b,0x18,0xe5,0x8f,0xf6,0x46,0x7b,0xd1,0x6e,0xb4,0x17,0xa5,0x23,0x2e,0x73,0x9e, - 0xa1,0xea,0xdd,0x20,0xda,0xd5,0xe1,0x54,0xe1,0x77,0x4b,0xbd,0x0f,0x1d,0x8d,0x72,0x96,0x02,0x31,0xa7, - 0x15,0x59,0x7b,0x5b,0x58,0x50,0xc0,0xac,0x29,0x87,0xfd,0x6e,0x72,0xa9,0x8e,0xdb,0xf7,0x85,0x2d,0x74, - 0xb2,0x40,0x21,0xd4,0x54,0x95,0x90,0x53,0x7b,0x88,0xc1,0xd3,0x04,0x93,0x4c,0xd3,0xeb,0x89,0x84,0xe3, - 0xc1,0x63,0x83,0x8e,0x56,0x92,0x68,0xb7,0x14,0xb1,0x89,0xa9,0xa1,0x9e,0x24,0xd0,0x19,0x53,0x36,0x49, - 0x30,0x26,0x8c,0x33,0x8b,0x8b,0xf0,0x44,0x80,0x1a,0x7e,0x1a,0xd9,0xfb,0x68,0x02,0x52,0x66,0xc4,0x54, - 0xcd,0x82,0x89,0x9b,0x90,0x53,0x22,0x4e,0xe1,0x4f,0x45,0xeb,0x87,0x06,0x04,0x4b,0x37,0x44,0x01,0x13, - 0x87,0x4b,0x76,0xb0,0x0d,0x27,0xcf,0xca,0x1d,0x9c,0x29,0x32,0xab,0xdd,0xfb,0x2e,0x59,0xdd,0x17,0x22, - 0xbf,0x0e,0x99,0x47,0xa5,0x5d,0x9d,0xd5,0x16,0x8c,0xef,0x04,0x82,0xd8,0x2b,0xda,0x2d,0x9c,0xfc,0x81, - 0x24,0xac,0x55,0x3b,0x16,0x36,0xe1,0x07,0x6c,0x48,0x4a,0x70,0xaf,0xd5,0xa6,0xe6,0x8a,0xa3,0xf2,0xd9, - 0x31,0x24,0x3c,0x05,0xf2,0xa5,0x99,0x11,0xa5,0x9e,0xe8,0x42,0x10,0x25,0xe2,0xe9,0x5d,0xc8,0xa1,0x3c, - 0xa8,0xbd,0xf3,0x50,0xe9,0xaa,0xfc,0xa8,0x56,0xb4,0x19,0x3f,0x89,0xa8,0x20,0x37,0x49,0xda,0x26,0x12, - 0x71,0x61,0x60,0x57,0xab,0x2b,0xc4,0xe6,0x45,0x1d,0x52,0x42,0x61,0x39,0xcd,0x12,0xd8,0xd1,0x88,0xc1, - 0x41,0x95,0x1c,0x99,0x59,0x1a,0x5b,0xad,0x16,0x35,0x6b,0x2b,0x2a,0x13,0x36,0xff,0x9a,0xc3,0xd7,0x8f, - 0x9d,0x50,0x93,0xa1,0xe3,0xba,0xef,0x99,0xe9,0x7b,0xdc,0xea,0xdb,0xea,0x19,0x70,0xae,0x5d,0xc1,0xad, - 0x59,0xf7,0xa9,0x56,0x83,0x23,0xee,0x79,0x4d,0x54,0xb8,0x98,0x8e,0xe4,0xc6,0x37,0x19,0xb8,0xf6,0x5a, - 0x33,0x42,0x6f,0xc6,0xd2,0x66,0x17,0xf2,0xe6,0xae,0x96,0xa3,0x2d,0x22,0x2c,0x78,0x37,0x21,0xf6,0xf6, - 0xbd,0xbc,0xa8,0xe8,0xa6,0xca,0x16,0x55,0x4f,0x5d,0x23,0xbd,0x4c,0x79,0xfa,0x01,0xe0,0x52,0x9a,0xf9, - 0xed,0x41,0xe5,0x98,0x3d,0x4c,0xbb,0x95,0xdc,0x0a,0xa0,0x0b,0x7a,0xaa,0x53,0xa9,0x61,0x07,0x96,0xa8, - 0x04,0x12,0xe5,0x24,0xb5,0xc8,0x41,0x64,0x9a,0x40,0x86,0x4d,0x3c,0x38,0xaa,0xe2,0x14,0x41,0x4b,0xf8, - 0xdc,0xb0,0xfc,0xa1,0x3a,0x0d,0xa1,0x81,0x2e,0x40,0xc9,0x0f,0xc3,0x74,0x6e,0x89,0x06,0xb8,0x42,0x16, - 0x11,0xf9,0x06,0x01,0x22,0x19,0xe8,0x8f,0xa8,0x6d,0x91,0xfe,0x13,0x6d,0x90,0x48,0x03,0xc4,0x1f,0xe8, - 0x06,0xe8,0x88,0x72,0x03,0x7a,0xeb,0x57,0xab,0x31,0x47,0x96,0xd1,0x51,0x5b,0x32,0xb3,0x96,0xd5,0xe0, - 0xdd,0x45,0xa5,0x64,0xa8,0x3a,0x24,0x9e,0xbf,0xa4,0x9d,0xe6,0x75,0x0d,0x06,0x95,0x0a,0x60,0xb2,0x0c, - 0xe9,0x00,0x6b,0x2e,0xaa,0x7d,0xe8,0x4a,0x8b,0x86,0x67,0x2f,0xab,0x26,0x72,0x3c,0x4d,0xb1,0x19,0x17, - 0x04,0xbe,0xe5,0x2b,0x60,0x78,0x55,0xac,0x62,0x21,0x14,0xd1,0x42,0x01,0x93,0x60,0xfa,0xac,0xce,0x9c, - 0x93,0x2a,0x96,0x52,0x8a,0x48,0xf4,0x3d,0x1d,0xa0,0xb7,0xf7,0x9f,0x98,0xfb,0x7f,0x62,0xbf,0x2e,0xb6, - 0xab,0x5e,0x1d,0x37,0x5b,0x89,0xc7,0xd5,0x0e,0x2f,0x96,0x73,0x90,0x25,0x3d,0x31,0xd3,0x11,0x4b,0x35, - 0x27,0xa0,0x07,0x1f,0xf9,0xfa,0xe6,0x15,0x1e,0x0f,0x5f,0xea,0xd4,0x78,0xb4,0x71,0x9e,0xd1,0x42,0x04, - 0xb5,0x0b,0x4d,0x47,0xa6,0x78,0x87,0xa2,0x98,0x87,0x23,0x00,0x1d,0xc0,0xde,0xd7,0x7b,0x91,0xfc,0xbd, - 0x27,0x7f,0xef,0x7f,0x29,0x7f,0xef,0xdd,0x57,0x7f,0xbf,0x56,0xe9,0x5f,0x45,0x26,0x00,0x99,0x54,0x78, - 0xa0,0x0a,0xa8,0x0a,0xf7,0x1f,0x44,0x5a,0xbd,0x78,0x02,0x55,0x77,0x29,0x75,0xef,0xae,0x6a,0x5e,0xfe, - 0xec,0xed,0xaa,0xbf,0xaa,0xb7,0xbd,0x2f,0x55,0xc2,0x97,0x0f,0xee,0xfe,0x5d,0x95,0xf9,0xea,0xae,0xae, - 0x44,0x5f,0xf7,0x74,0xa3,0x97,0x0b,0xcf,0x3c,0xfc,0x3d,0x8a,0xbf,0xfe,0x3b,0xb1,0x2c,0x0f,0xe3,0xbd, - 0xbb,0x77,0x57,0x2b,0xfa,0xf9,0xe5,0x03,0xfe,0xf9,0xf5,0xee,0x48,0x75,0x1e,0x51,0xe2,0xfd,0xaf,0x39, - 0xf1,0xc1,0xdf,0x47,0x9e,0x18,0x42,0x78,0x91,0xc7,0xcf,0x3e,0x1d,0x01,0x49,0xb0,0x4c,0x72,0xd7,0x29, - 0xb8,0xf0,0xbd,0x5d,0x6f,0xcb,0x0a,0x5e,0xbc,0x0b,0x19,0x5a,0xb6,0x78,0x99,0xbc,0x94,0xa0,0x6c,0x84, - 0x70,0xab,0xf0,0x5b,0x1d,0xad,0xae,0xf3,0xcd,0xcd,0x5d,0x76,0x3d,0x76,0xd3,0xa8,0xca,0x32,0xca,0x3c, - 0x7b,0xd4,0xc3,0xbd,0xfb,0x10,0xeb,0xdc,0xbe,0x7d,0xef,0x6b,0xfc,0x1d,0xe1,0xad,0x4d,0xa9,0x04,0x85, - 0x94,0x0f,0x56,0x30,0xf2,0xbe,0xf0,0xfa,0x95,0x0e,0x80,0x2e,0xfe,0xad,0x2e,0x34,0x2e,0xac,0xb9,0x32, - 0xed,0x7b,0x03,0x9a,0x0a,0x07,0x42,0xf6,0xf5,0x94,0xa7,0x3c,0x2f,0x3c,0x69,0x97,0x3f,0x4d,0x16,0xaf, - 0x2e,0x73,0x1d,0x68,0x2f,0xfc,0x18,0x77,0x11,0xa8,0xcf,0xf3,0x6a,0x66,0x05,0x0b,0xc3,0xcf,0xc1,0x33, - 0x44,0xb6,0xc9,0xce,0x53,0x62,0x1e,0xce,0x93,0x2a,0x3c,0xfe,0xe4,0x8a,0xe2,0xc5,0x4f,0x55,0x7b,0x17, - 0x5f,0x89,0x63,0x8d,0xa7,0x8d,0x20,0x95,0x8e,0x4f,0x23,0x9b,0x01,0x4c,0x07,0x38,0x6d,0xb1,0xfc,0xe1, - 0x77,0xc4,0x77,0xef,0xf0,0x39,0xba,0x5a,0x47,0x3a,0x22,0x11,0xe3,0x84,0x2b,0x53,0xd8,0xa0,0x4b,0x1a, - 0xd1,0x0b,0x95,0x2e,0x95,0x02,0x7d,0xdd,0x21,0xd0,0xe2,0x50,0xa7,0x76,0x3a,0xbd,0xa9,0x88,0x5a,0xa8, - 0x42,0x8b,0xf0,0x49,0xd9,0x98,0xc0,0xbe,0x8c,0xaa,0x8e,0x08,0x8c,0x12,0xd2,0x14,0x8d,0xb2,0xef,0xe0, - 0x9f,0x18,0x49,0xbc,0x48,0x17,0x8b,0xe4,0x04,0x77,0x78,0x25,0x77,0x9f,0xba,0x7e,0xa8,0x1b,0xf1,0x38, - 0xf5,0xce,0x9a,0x63,0x58,0xa7,0xfc,0x8a,0x52,0xa9,0xf2,0x08,0x26,0x43,0xbd,0x44,0x12,0x2e,0x11,0x68, - 0x2a,0xfb,0x81,0x55,0x98,0x75,0x24,0xc6,0x65,0x76,0x9c,0x22,0xeb,0x29,0x4c,0x7d,0x58,0x4f,0x92,0x99, - 0x36,0x29,0xa6,0x4b,0x88,0x33,0xb8,0x75,0x1d,0x8f,0x43,0x2d,0xa1,0xc8,0xc2,0x79,0x07,0xca,0xa2,0xa8, - 0x74,0x90,0x7b,0x7c,0x0b,0xd2,0x6b,0xa7,0x38,0x6b,0xcd,0xcf,0xa7,0x3c,0x16,0x14,0x88,0x9b,0x65,0xd5, - 0x4e,0x0d,0xa6,0x44,0x9f,0x1d,0x13,0x23,0x23,0x8b,0xd3,0x2a,0xd6,0xc8,0xd7,0xb5,0x16,0xc4,0x18,0xe6, - 0xa2,0x7f,0x3a,0x63,0x23,0x85,0x5f,0x21,0x88,0x6b,0x55,0xee,0x2c,0xc6,0x8e,0x7a,0x5d,0x08,0x28,0x6f, - 0x84,0x80,0x12,0xf4,0x62,0x1b,0x02,0xcc,0xf6,0xf2,0x9e,0x2e,0xe2,0xb2,0x7b,0x33,0xf1,0xc0,0xfe,0x42, - 0x2f,0xec,0x7f,0xdb,0x9e,0x86,0xd6,0x65,0xa1,0x96,0xed,0x63,0xce,0xcf,0x7c,0xe6,0x07,0xdf,0xee,0xe2, - 0x17,0x90,0xd7,0xd7,0x19,0xd0,0xad,0x7a,0x40,0xb2,0xfa,0xbe,0xb6,0xcc,0xeb,0xfd,0x05,0xb8,0x18,0xf9, - 0xd6,0xc2,0xb4,0xa0,0xe2,0x2f,0x4c,0x17,0xbc,0xb9,0xbc,0x92,0xe0,0x91,0x55,0x05,0x58,0x50,0x23,0x72, - 0x7f,0x37,0xe1,0xd4,0x39,0x76,0x76,0xc1,0xbf,0x34,0x1c,0xed,0x07,0xee,0x59,0x33,0x4c,0xad,0x76,0x04, - 0x27,0x43,0xf3,0x5b,0x95,0x9d,0x11,0x0d,0x96,0xf9,0x75,0x3d,0x2b,0xc1,0x67,0xab,0x8d,0x0e,0x28,0x73, - 0x9a,0x55,0x69,0x7e,0xa3,0x05,0x2b,0x4b,0xb7,0xe0,0x00,0x46,0x37,0xb8,0x34,0x5b,0x71,0x32,0xed,0x91, - 0x48,0xd8,0xb8,0xf5,0x3a,0xbc,0xd4,0x5e,0x5b,0x91,0x5a,0x7b,0x73,0x4c,0x66,0x30,0xf4,0x16,0xc7,0x8a, - 0xac,0xf5,0x76,0x65,0x7b,0xb2,0x55,0x5a,0x01,0x91,0xb8,0x4c,0x5c,0x73,0x44,0x72,0xb7,0x84,0xa6,0xb8, - 0xf0,0x70,0xa8,0xe9,0x51,0xbb,0xc0,0x3a,0xe4,0xd7,0xf0,0x85,0x4a,0x3c,0x60,0x6a,0xcf,0x38,0x93,0x5d, - 0xb7,0x3c,0x39,0x3a,0xa4,0x3d,0x0f,0x0b,0xf2,0x09,0x09,0x9f,0x81,0x28,0xb2,0xc6,0xda,0xac,0x40,0xbe, - 0x05,0x38,0x12,0x4f,0xc3,0x4f,0x44,0xb0,0x7f,0xa3,0xeb,0x58,0x15,0x16,0x2e,0x96,0x3f,0x26,0xfc,0x2e, - 0xd1,0xf3,0x96,0x23,0x57,0x11,0xc0,0x97,0x42,0x48,0x23,0x9a,0x87,0x22,0xa4,0x67,0x10,0x50,0x2f,0x91, - 0xc1,0x73,0x63,0x83,0xd0,0x69,0x83,0x5d,0x5b,0x06,0xa3,0xa5,0x0e,0xfa,0xbb,0x1b,0xd9,0xf7,0xd6,0x32, - 0x30,0xe9,0xac,0x81,0xdd,0xe0,0x99,0x6c,0x7f,0x7c,0x38,0x46,0x75,0x00,0xf3,0x9a,0xe4,0xb1,0x82,0x9a, - 0xf3,0x10,0x34,0xd5,0x53,0xc7,0x3d,0xbf,0x7d,0xdb,0xe3,0xc7,0xc4,0xf5,0xba,0x16,0xe9,0xdf,0xbe,0x9d, - 0x98,0x9e,0x89,0x29,0x9d,0x50,0xeb,0xbe,0xf7,0x7c,0xda,0x93,0x59,0xf4,0xb0,0xda,0xbd,0x6c,0xd1,0x83, - 0x93,0x99,0x1e,0xdd,0x01,0x3d,0x5e,0xeb,0x5e,0x2a,0x22,0xd3,0x45,0x0f,0xe6,0x0f,0xbd,0xd3,0xe4,0x22, - 0x95,0x0a,0x52,0x9e,0x0a,0x0f,0x88,0x0b,0xea,0x98,0x7b,0x1b,0xa7,0x83,0x2d,0x98,0x11,0x03,0x08,0xe7, - 0xa1,0xcd,0x15,0xe9,0xba,0x01,0x66,0xf0,0x7c,0xb6,0xa4,0x7f,0xa0,0x62,0xb9,0xa1,0x3d,0xe1,0xed,0x27, - 0x23,0x0f,0xe6,0x53,0xcd,0x65,0x89,0x28,0xb5,0x1a,0xce,0x20,0xfc,0x82,0x38,0x53,0x79,0xfd,0x0f,0xb3, - 0xb0,0x18,0x64,0xbe,0xc4,0x9e,0xc0,0xd1,0xd8,0x8f,0x5b,0x88,0x62,0x4c,0x3d,0xd1,0xe5,0xd2,0xf1,0x40, - 0xb2,0x1e,0xee,0x5b,0xf4,0x5c,0x06,0xbb,0xc1,0x79,0x01,0x79,0xb8,0x2d,0x27,0xaa,0xdd,0x21,0x58,0xad, - 0xc1,0xb5,0x9c,0x66,0x52,0xa1,0x85,0x77,0xad,0x46,0x1f,0x31,0x7e,0x9e,0x67,0xab,0xf5,0x69,0x79,0x73, - 0x7a,0x90,0xf7,0xfb,0x2c,0x9f,0xf1,0xae,0x94,0xff,0xd7,0x12,0xcf,0x0a,0xd6,0xb3,0x3e,0xab,0xa7,0x78, - 0x4a,0x57,0xac,0xc4,0x33,0x03,0xda,0x12,0x96,0x94,0x3e,0xc4,0xc6,0x42,0xb5,0xe3,0xad,0x59,0x87,0x65, - 0x18,0x24,0xfd,0x38,0x0b,0x4d,0xb2,0xc8,0x24,0xce,0x84,0xee,0x4e,0x82,0x91,0xc7,0xce,0x46,0xa3,0xa7, - 0x75,0x02,0x90,0xc9,0x84,0x28,0xfd,0xa5,0x38,0xa5,0xf3,0x86,0x7a,0x08,0xd2,0x6d,0x22,0x1e,0xb1,0x8b, - 0xb5,0x68,0xc9,0x7b,0xff,0x83,0xc7,0x3a,0xa2,0x31,0x83,0x30,0xa7,0x1d,0x81,0xc8,0x8f,0xba,0x0c,0x22, - 0xfc,0x6b,0xc4,0xd2,0x37,0xcd,0xa4,0x5a,0x33,0xfb,0xe8,0xae,0x6a,0x5c,0x3a,0xa2,0xea,0xbc,0x66,0x3e, - 0x43,0x09,0x3e,0xdd,0x94,0xad,0xe8,0xe9,0x30,0x4b,0xd1,0x9e,0x09,0xd6,0x56,0xff,0x60,0xdb,0x70,0x3d, - 0x3a,0x5e,0xba,0x61,0xd6,0xdc,0x94,0x82,0x26,0x94,0x1d,0x69,0x86,0xaf,0x50,0xef,0xd2,0xe0,0xac,0x64, - 0xfc,0x91,0xe2,0x68,0x95,0x17,0x08,0xa5,0xf5,0xca,0x7c,0x9b,0x1a,0x88,0x2a,0x90,0x1f,0x30,0xa5,0x43, - 0x74,0xbb,0x2e,0x1b,0xee,0xed,0x06,0x47,0x4e,0x05,0x3d,0x5a,0xf9,0x2b,0x6a,0xe1,0xa6,0xba,0xaa,0x45, - 0x34,0x6e,0xd6,0xef,0x9b,0x45,0x5d,0x73,0xb8,0xbb,0x35,0x6f,0xea,0x59,0xbc,0xf3,0x2f,0xff,0x70,0x12, - 0xf4,0x77,0xc2,0xa7,0xfc,0x79,0x89,0xcf,0x37,0xb4,0x4c,0x1f,0xe2,0xbd,0xf0,0x71,0x7c,0x37,0xbc,0x15, - 0xdf,0x0b,0x5f,0xd1,0xef,0x6f,0xe2,0xfb,0xe1,0xb3,0xf8,0x41,0xf8,0x3a,0xfe,0x32,0x7c,0x1f,0xff,0x3d, - 0x7c,0x1e,0x7f,0x15,0xfe,0x04,0x86,0xfe,0xa7,0x83,0x57,0x47,0xf1,0xd5,0xe5,0x22,0xa2,0xbf,0x21,0xb3, - 0x81,0xd1,0xc1,0xbd,0xf0,0xcd,0x51,0xe8,0x1d,0x78,0xd1,0xc1,0x37,0x47,0x21,0x5d,0xf2,0xd1,0xc1,0xfb, - 0xa3,0x75,0xf8,0xd3,0xc1,0x9e,0x2a,0xb9,0x47,0xb9,0x03,0xca,0xbd,0xdb,0x59,0xea,0xae,0x2a,0x75,0xd7, - 0x6d,0x6f,0x57,0xfd,0x15,0xae,0x52,0x7e,0xa0,0xf8,0x3d,0x2a,0x7e,0x53,0xb9,0x90,0x7b,0x0d,0x3f,0xe8, - 0x7e,0xf9,0x8b,0x7b,0xc6,0x97,0xf4,0x4d,0x5f,0x68,0xee,0x1b,0x6a,0xce,0xbb,0x43,0x59,0xcf,0x50,0xef, - 0x8e,0x77,0x27,0x3a,0x78,0x5d,0x4f,0x27,0x7c,0x4c,0x5f,0x47,0x1e,0x1a,0xbb,0x25,0x15,0x9f,0xb3,0x3d, - 0x1f,0xb2,0x64,0x38,0xcf,0x74,0x7d,0x24,0x38,0x25,0x9e,0xa9,0x12,0xaf,0xa9,0x04,0xb7,0xdb,0x2a,0x81, - 0x8e,0x64,0x63,0xbe,0x65,0x9b,0x67,0x22,0xd5,0xca,0x65,0xba,0x62,0x5b,0xce,0xd5,0xf6,0xe8,0xe0,0x70, - 0x32,0x38,0xea,0xaf,0xee,0xb0,0x0f,0xac,0x3b,0x2b,0x8f,0xdd,0x62,0x79,0x01,0x95,0xbb,0xb5,0x13,0xbe, - 0xdc,0x80,0xb6,0xba,0xb1,0xd6,0x4b,0x0b,0x6b,0x31,0x94,0xbd,0xa6,0x4b,0xad,0x2d,0xa1,0xb2,0x31,0x96, - 0x85,0xb0,0x2a,0xe8,0x67,0x74,0xc8,0xb3,0x74,0xd8,0xbb,0x02,0xa1,0x7c,0x70,0xe0,0x66,0xf1,0xf6,0x1e, - 0x5d,0x8d,0xaf,0x38,0xee,0xdd,0x29,0xc0,0x05,0x67,0xe6,0xf4,0xe0,0xc3,0x91,0x63,0xdc,0xa1,0xef,0xa9, - 0x9c,0x75,0x79,0x04,0x7a,0xe1,0xa2,0x50,0x32,0x60,0xab,0x7f,0xf0,0xa6,0xa3,0x06,0x24,0xb5,0xa3,0x3c, - 0x2e,0xa3,0xbc,0x4f,0x84,0x3f,0x15,0x7a,0xec,0x14,0x42,0x25,0xa2,0x8c,0xa6,0x04,0xfb,0x94,0x77,0xcb, - 0xc9,0x83,0x46,0xe4,0xa3,0xdd,0x60,0xba,0xbd,0x4d,0xc3,0xfb,0x26,0x94,0xa2,0xe6,0x2d,0x12,0xa3,0xdd, - 0xc2,0xd3,0x87,0x9f,0xc7,0x73,0x76,0x99,0x67,0xc4,0xa2,0x18,0x3b,0xd4,0x31,0x87,0x4a,0x06,0xbe,0x64, - 0x87,0xf1,0xb3,0x7e,0x1f,0xfe,0x13,0x59,0x59,0x08,0x3e,0x17,0x67,0x78,0xb1,0xd8,0x6a,0xf0,0xd3,0x9c, - 0xd1,0xdf,0x63,0x6c,0xbd,0xa4,0xc6,0x9f,0xd1,0xad,0x7c,0x87,0xd5,0xba,0x56,0x2b,0xfc,0x7e,0x7d,0xfb, - 0x36,0x81,0x05,0x7e,0x1b,0xdf,0xdd,0xd4,0x2c,0x61,0x6b,0x6a,0xb8,0x5f,0xa9,0x31,0x22,0xc2,0xb2,0x1f, - 0x28,0x2b,0xae,0x09,0xc4,0x62,0xa0,0x73,0x16,0xf1,0x4f,0x07,0xcb,0xa3,0x80,0xf0,0xce,0x6a,0xb5,0x60, - 0x45,0xd0,0xd5,0xea,0x39,0x64,0xcb,0xcf,0xb5,0x56,0x10,0xf7,0x09,0x3b,0x96,0xd0,0x2f,0xe2,0xd3,0x83, - 0x84,0xce,0xe0,0x91,0xbc,0xc3,0x26,0x38,0x68,0x65,0x6c,0x96,0xb4,0x1c,0x55,0x51,0x29,0xd3,0x2f,0x7c, - 0x33,0x75,0x3d,0xe8,0xf7,0xc6,0x39,0xaa,0x28,0xbb,0x19,0x82,0x54,0xc3,0x48,0x0c,0xff,0xc3,0x20,0xbb, - 0xd6,0xa1,0x0d,0x64,0x27,0x69,0x05,0x10,0x63,0x41,0x6e,0xe3,0x6e,0x84,0x8c,0xbc,0xaa,0x1d,0xb4,0xd6, - 0x8f,0x30,0xda,0xfb,0xb6,0x86,0x4f,0x78,0xac,0xe5,0x79,0x97,0x0d,0x0a,0x03,0xe1,0xdd,0x30,0x74,0xed, - 0x4e,0xdb,0x69,0xc9,0xb2,0xf6,0xa9,0x4d,0xcd,0x08,0x49,0x2b,0x17,0xdc,0xc9,0x50,0x3b,0xde,0x2e,0x0e, - 0xca,0x83,0xc5,0x91,0xf5,0xd8,0x01,0x65,0xb3,0xe0,0x4a,0xdc,0x50,0x29,0xdb,0x84,0x22,0x1e,0x87,0x8b, - 0x1a,0x99,0x16,0x72,0x5a,0x5f,0x6c,0x38,0x39,0xc3,0x9a,0xff,0x03,0x37,0x0e,0x6d,0x59,0xf3,0xba,0x24, - 0xc4,0xe3,0x6a,0xe5,0xa5,0xf9,0xf6,0x2f,0x6f,0x3c,0x96,0xe7,0xba,0xbc,0x76,0x9d,0xc7,0x16,0x49,0x8a, - 0xc5,0x65,0xf2,0x52,0x85,0x31,0xb7,0x64,0x40,0x92,0x0e,0x2b,0xca,0xdc,0x12,0xf1,0x70,0xea,0x50,0xb9, - 0xb2,0x3e,0x97,0x07,0x3e,0xf9,0x35,0xe5,0x7c,0x22,0x57,0x62,0x56,0x60,0x93,0xef,0xd5,0x0a,0x8c,0xf2, - 0xbe,0x2a,0x72,0x9e,0x2d,0xe0,0x0a,0x04,0x7d,0xcb,0x97,0x08,0x3c,0xb5,0x77,0x69,0x08,0x15,0x52,0x96, - 0x2d,0x38,0xe9,0xe0,0x6a,0x63,0x8b,0xef,0x15,0x96,0x77,0x6b,0x4b,0xbe,0x74,0xef,0x6a,0xa2,0xac,0x0f, - 0x65,0x15,0xb6,0xd3,0xa5,0x92,0x9d,0xa2,0x7b,0xe8,0x94,0x3d,0x18,0x24,0x92,0x76,0x4b,0x1d,0x88,0xc4, - 0xdd,0xda,0x90,0xa5,0xda,0x75,0x17,0x14,0x2f,0xef,0x20,0xec,0x25,0xcf,0x5e,0x54,0x37,0x07,0xdc,0x00, - 0xcb,0x17,0x5e,0xd6,0xcd,0x24,0xb5,0xbb,0x00,0x42,0x82,0x92,0xcc,0xef,0x07,0x0d,0xc8,0x57,0x58,0xc5, - 0xdf,0x82,0x3a,0x63,0xbe,0x5a,0x95,0x7e,0x25,0x0d,0x3a,0xc7,0x45,0xc2,0x69,0x6b,0xa3,0xf4,0x77,0x70, - 0x1a,0xfb,0xf6,0x85,0xaf,0xdf,0x3b,0xf3,0xd0,0x85,0x9a,0x08,0xee,0x1b,0x05,0x54,0x88,0xec,0x6a,0x00, - 0x49,0x54,0x84,0x0e,0x78,0x44,0x0b,0xa2,0xc8,0xc2,0x9f,0xe3,0xab,0x8b,0xf3,0xe8,0x6a,0x5d,0x57,0xa4, - 0xef,0x66,0x4d,0x4a,0x72,0xab,0x5e,0xd5,0x1c,0xde,0xba,0x39,0x06,0xb4,0x25,0x30,0xc3,0x99,0x7a,0xd9, - 0xf0,0xa3,0x73,0x07,0x28,0x63,0xad,0x2f,0x97,0x17,0xb6,0xeb,0x61,0x99,0x6c,0xc7,0xf1,0x3a,0xd5,0xbe, - 0xa0,0xa5,0xbd,0x61,0xe3,0x37,0xa4,0x2f,0x35,0xd8,0xd3,0xee,0x10,0x0d,0x89,0x8d,0x81,0x6a,0x6c,0xd8, - 0x2c,0x5b,0xad,0x43,0xbb,0xd3,0x4e,0x76,0xbf,0xed,0x0b,0xc1,0xdd,0xe8,0x5a,0xdd,0xcc,0x6e,0x6a,0x83, - 0xec,0xc0,0x69,0xac,0x61,0x38,0xc0,0xdc,0x9e,0x1d,0xc2,0x24,0xb7,0x6c,0x35,0x2b,0x46,0x80,0xf9,0xa3, - 0xed,0xbd,0x40,0xde,0xa7,0xc7,0x90,0x63,0x42,0x41,0xd2,0xef,0x18,0x53,0xd8,0x1c,0x8e,0x23,0xdb,0x6a, - 0x9a,0x57,0x8a,0xec,0xcf,0x71,0x09,0x4e,0x8b,0x37,0xb8,0xc5,0x95,0x7c,0xef,0x16,0x9a,0x76,0x42,0x54, - 0xd8,0x06,0x0d,0x8d,0xc5,0xb0,0xed,0x1b,0x4e,0x3b,0x9d,0x22,0x37,0xab,0x10,0x23,0xc8,0x4e,0xd0,0x9b, - 0x89,0xad,0xc0,0x17,0xeb,0xf0,0x6a,0x92,0xa6,0x73,0x51,0x4d,0x6e,0xcf,0x4e,0x89,0x31,0xdd,0xab,0x7e, - 0xab,0x46,0x4d,0x74,0xd0,0x6a,0xfc,0xd5,0xba,0x71,0x52,0x1d,0xcb,0xe4,0xdc,0x5d,0x07,0x16,0x90,0x59, - 0x8b,0x21,0x80,0x6f,0xad,0x06,0x7b,0xf6,0xb8,0x45,0xec,0x2f,0xac,0x58,0x74,0x2e,0xfb,0xe5,0x6f,0x8c, - 0x3f,0xbc,0xca,0xce,0x89,0x54,0xcf,0x20,0x6f,0x97,0x29,0xfc,0x8c,0x86,0xe9,0xbc,0xdb,0x63,0x6e,0x6c, - 0x02,0x0a,0xe9,0xb3,0xb9,0xa1,0x68,0xa1,0x00,0x80,0x72,0x95,0x80,0x7b,0xc1,0x1e,0xc0,0x7f,0x6e,0xde, - 0x13,0x37,0xd7,0x77,0x1f,0x17,0x74,0x33,0xce,0xe1,0xbf,0xb9,0x11,0xfb,0xa1,0x41,0x37,0x21,0xeb,0x72, - 0xc3,0x5c,0xf5,0xa3,0x7b,0x5d,0x7e,0x91,0x56,0x1d,0xa7,0x0f,0xbb,0x81,0xf5,0xd6,0xbf,0xea,0x65,0x4f, - 0xb9,0x33,0x17,0x23,0xdd,0xd4,0xa9,0x5b,0xba,0xa3,0xfe,0xa7,0x0e,0xc2,0xad,0xa6,0x07,0xa3,0x90,0xe1, - 0xb5,0xa3,0x50,0x65,0xec,0xe2,0xdd,0x9d,0x9a,0x7b,0x99,0x87,0xa9,0x71,0xeb,0xb5,0x6d,0x9b,0x52,0x6e, - 0x95,0xee,0xf6,0x2d,0xd2,0x00,0xc5,0x3b,0x11,0xf6,0xb5,0xbd,0x75,0xd6,0xd8,0xdc,0x54,0xf7,0x28,0xba, - 0x6f,0xf9,0xd4,0x3d,0xf2,0x36,0xb8,0x5f,0xb7,0xbd,0xfa,0xf0,0xb4,0x6b,0x37,0x80,0xfd,0xba,0x46,0x1a, - 0x07,0xa9,0xdd,0x96,0x03,0xf3,0xd7,0xb5,0xe4,0x9c,0xa5,0x46,0x3b,0x50,0x2e,0x53,0x5e,0x9d,0x1c,0x5d, - 0x23,0x62,0xae,0x32,0xd3,0x12,0x0c,0xbc,0x95,0x1c,0x5f,0x41,0x83,0x12,0xfa,0x6b,0xc8,0x91,0x07,0x79, - 0x26,0xcb,0x0e,0x50,0x39,0x3b,0x82,0xe1,0x46,0x94,0x37,0x3a,0xcb,0x16,0xdf,0xda,0x94,0x58,0x87,0x4b, - 0x9c,0x14,0x11,0x1b,0x7d,0x0b,0x65,0xaa,0x8e,0x1c,0x12,0xae,0xd9,0x6a,0xb7,0x18,0xac,0xd2,0xbc,0xa1, - 0xc2,0xc9,0x2d,0xec,0x3b,0x8e,0x6b,0x92,0xca,0xa5,0x80,0x2a,0x15,0x77,0xd7,0x25,0xfb,0xc7,0x86,0x65, - 0x18,0x8b,0xc1,0x10,0xab,0x62,0xea,0x88,0xc4,0x5b,0xac,0x40,0x60,0xf7,0x61,0x69,0xa7,0xea,0x47,0x52, - 0x44,0x0a,0x27,0xae,0xc9,0x29,0xb7,0xd6,0x6c,0x60,0x4b,0x4f,0x6c,0xec,0x34,0x37,0x8b,0xc7,0x9a,0x0f, - 0x98,0xd5,0xd6,0xd3,0xff,0x88,0xbc,0x80,0xbd,0x94,0xf8,0x3a,0x30,0x16,0x1c,0x8e,0xf3,0xf4,0x67,0x6a, - 0xfa,0x30,0x17,0xd5,0x21,0x5a,0x38,0x42,0xc1,0x8c,0x93,0xa3,0x59,0x63,0x1d,0x51,0xb1,0x09,0x03,0x76, - 0x48,0xe9,0x38,0x0f,0xa1,0xe3,0x2c,0xbe,0x0a,0x76,0xfc,0x7f,0x44,0x07,0x87,0x97,0x87,0xdb,0xef,0x56, - 0x83,0xa3,0x7e,0xb0,0x73,0x52,0x6b,0x9b,0x8f,0xa1,0xf9,0xb0,0x00,0x9f,0xba,0x68,0x3c,0x39,0xf3,0x5a, - 0x89,0xba,0xc7,0xe2,0x60,0x8c,0x78,0x3f,0x33,0x65,0xdd,0xed,0xdf,0x25,0xce,0x59,0xbf,0x8b,0xd5,0xfb, - 0xc9,0xa3,0x58,0xd2,0x28,0xbc,0x32,0xb9,0x54,0x42,0x3c,0xb5,0x4a,0x44,0x78,0xd6,0x89,0x42,0x8d,0x47, - 0xca,0x4f,0x83,0xb4,0xe2,0xc0,0x1a,0x2c,0xfe,0xac,0xab,0x99,0x41,0x8b,0x5d,0x1d,0xf5,0xbe,0x81,0x42, - 0x3b,0x44,0x6e,0x62,0xe9,0x9d,0x4e,0x7a,0xac,0xe2,0xae,0x7c,0x18,0x4e,0xe2,0xba,0xc2,0x70,0x1a,0x4f, - 0x54,0xd8,0x14,0x1e,0xdb,0xa4,0x71,0xfd,0x21,0x2a,0xb9,0x88,0xe8,0x27,0xcd,0x67,0xcc,0xa5,0x5a,0x48, - 0x62,0xe8,0x7c,0x3d,0x4d,0xeb,0xe4,0xf9,0x28,0x31,0x85,0xa2,0xd1,0xa8,0x30,0x26,0xd1,0xb3,0x70,0x1a, - 0x44,0x45,0xcd,0xfa,0xb9,0x9b,0xa5,0x14,0x6d,0xdd,0xed,0x72,0x05,0xbf,0x35,0xe2,0x75,0x57,0xd4,0x04, - 0x62,0xa9,0xb5,0x80,0xe2,0x6a,0x54,0x2a,0x0b,0x33,0xc4,0x4b,0x6f,0xf4,0x65,0xa6,0xdc,0xc2,0x10,0xfa, - 0x80,0xd9,0xc7,0xc9,0xee,0xac,0x0a,0x61,0x55,0x6a,0xca,0x19,0x09,0x34,0x01,0xc2,0xa8,0xf4,0xbb,0x6a, - 0xe4,0x21,0xe4,0xb3,0xa6,0x86,0x0a,0x38,0x3f,0x8e,0xc6,0xcd,0x31,0xb5,0x20,0xb5,0xa6,0x10,0x95,0xff, - 0xa1,0xa6,0x9a,0xe1,0xf6,0xfd,0x61,0xb1,0xbd,0xdd,0x7b,0xb4,0x3b,0x0c,0x12,0xd6,0xff,0x33,0x2a,0xa9, - 0x45,0xff,0x3e,0xf3,0xe1,0x5b,0x46,0xb5,0xc6,0x53,0xcf,0x2f,0x99,0x42,0x6d,0xca,0x1d,0x42,0x02,0x4b, - 0xbf,0x85,0x61,0xa6,0x2b,0x13,0x8d,0xae,0x86,0x8a,0x3c,0x54,0x5c,0x67,0xf3,0x25,0x1b,0x50,0xac,0x16, - 0x3c,0x64,0x29,0x43,0x72,0xbe,0xd8,0x0c,0xaf,0xb3,0xcf,0x87,0x57,0xa5,0xd3,0xb2,0xb4,0x40,0xd6,0x51, - 0x96,0x4a,0x8d,0xb2,0x54,0x62,0xd9,0xd7,0xb7,0x60,0x71,0x1c,0xc2,0xcb,0x66,0xa9,0xfc,0x40,0xbb,0xcb, - 0xee,0xe2,0xec,0xc6,0xb3,0x41,0x6b,0xbd,0xf7,0xa0,0xff,0xcb,0xeb,0x5d,0x35,0x54,0x80,0x21,0x96,0x52, - 0xc3,0x15,0x68,0x0d,0x68,0x09,0xd5,0x48,0x4b,0xbe,0x42,0x30,0x2c,0x75,0x9a,0x3a,0x28,0x4d,0x36,0xca, - 0x36,0xd3,0xa9,0xb4,0xb9,0x50,0xf3,0x62,0xe8,0xc0,0x66,0x5a,0x3b,0xae,0xbd,0x6d,0xd5,0xe6,0x6d,0x03, - 0x9e,0xd1,0xa1,0xd8,0xbb,0x36,0x2b,0xf9,0xb3,0x9b,0x65,0xd3,0xfb,0x99,0xdc,0x59,0xd7,0xec,0x0c,0x9d, - 0x26,0x3a,0x16,0x65,0x83,0x0f,0x69,0xce,0xb2,0x7e,0x6c,0x1c,0xb5,0xaf,0x94,0x8a,0xd5,0xfb,0xac,0xd5, - 0x35,0xcf,0xb5,0x5c,0x79,0xd3,0x52,0x43,0x22,0x10,0x79,0x5e,0xf3,0x0c,0x8e,0x3b,0x17,0xd8,0x58,0x1d, - 0x89,0xf9,0x6e,0x0b,0x2c,0x1e,0x0c,0x17,0x0a,0x2c,0x8a,0x83,0x85,0x0d,0x16,0x8b,0xfe,0x83,0x5a,0x63, - 0x6f,0x54,0x4b,0xc5,0x32,0x56,0xbc,0xde,0x0b,0xc2,0xc4,0x57,0x38,0xc3,0x02,0x97,0xb1,0x50,0x1c,0xd4, - 0xb7,0x81,0x87,0x82,0xae,0xbc,0x8c,0x07,0x2c,0xf7,0x7c,0x03,0x86,0xdd,0x51,0xdb,0x4a,0xcb,0x07,0x90, - 0x4c,0xb6,0xc6,0x7b,0x77,0x58,0xaa,0xf1,0xb2,0x7f,0x84,0x7a,0xbc,0x65,0xff,0xae,0x01,0xe3,0xcc,0x8c, - 0x6b,0xac,0x06,0x96,0x7d,0x2a,0x1c,0x87,0x95,0x19,0xb9,0x0e,0x34,0x93,0x35,0x57,0xba,0x89,0x7a,0x2d, - 0x53,0x69,0xb1,0x50,0x6b,0x8d,0xfa,0xde,0x30,0x51,0xa3,0x2e,0x61,0x63,0x54,0x8f,0x3a,0xe9,0xdf,0xd3, - 0x4f,0x6c,0x0d,0xec,0x56,0x06,0x35,0x66,0x73,0x01,0x94,0xa5,0x49,0x78,0xe2,0x39,0x6a,0x31,0xf9,0x8d, - 0xa1,0x35,0xa8,0x4f,0xb9,0xc2,0x6f,0x58,0x84,0xaa,0xd1,0x24,0xe5,0x3a,0xba,0x53,0x1d,0x84,0xa2,0xe1, - 0xfd,0x2c,0x6a,0x9b,0x10,0x1c,0xe4,0x8f,0x8d,0xc6,0x16,0x9b,0x1b,0x63,0x1f,0xbc,0x1d,0xad,0x34,0x25, - 0x34,0x6d,0x6d,0xae,0x4f,0x69,0xe4,0x74,0xb0,0xac,0xb2,0xd9,0x40,0x7c,0x22,0x6e,0x1c,0x6d,0xd7,0xe4, - 0x5d,0x26,0xe1,0x86,0xd9,0x37,0xd8,0x84,0x8d,0x8b,0xb0,0xb1,0x51,0x67,0x02,0xed,0xd6,0x3a,0x17,0xe3, - 0x4f,0x37,0xb6,0x61,0x51,0xba,0x27,0xd1,0x5a,0x1b,0xd1,0x34,0xc9,0xfe,0x30,0xfd,0x77,0x10,0x24,0x9a, - 0x58,0xad,0xe0,0x11,0x9b,0x00,0x16,0x48,0x9b,0xa8,0xf4,0x45,0x00,0x79,0x27,0x8c,0x4d,0xf9,0x11,0x41, - 0x88,0x59,0xe4,0xc3,0x25,0x98,0x9d,0xd9,0xe6,0x12,0x90,0x0e,0xeb,0x82,0xbe,0xf7,0xee,0x1d,0x22,0x25, - 0xe8,0x0b,0xb6,0x2d,0xc0,0x3d,0x98,0x19,0xfc,0x05,0x7f,0x4e,0xd7,0x16,0x64,0x31,0x61,0x87,0x76,0xa5, - 0x5f,0x40,0xe9,0x38,0x5c,0x2a,0xbe,0xb9,0x25,0xe3,0x7b,0x37,0x69,0xa1,0x02,0xe6,0x3e,0xcc,0xc0,0x37, - 0x34,0x2b,0x0a,0x8b,0xd2,0xa2,0xfd,0xdc,0xd1,0x5a,0xd3,0xfa,0x22,0x68,0x5c,0x85,0x9b,0x25,0x36,0x61, - 0xbe,0xf9,0x6e,0x2c,0xff,0x57,0xdc,0x8d,0xe2,0xa2,0xb0,0x32,0x77,0x63,0x09,0x13,0x7f,0x77,0x5d,0x26, - 0x9d,0xa4,0xc9,0x26,0x9c,0xbe,0xb7,0x19,0xa7,0xef,0x1d,0x69,0xc3,0x0a,0x0b,0x6d,0x25,0x2d,0x33,0x25, - 0x6d,0xff,0x30,0x6a,0xe9,0xd2,0xc3,0x50,0x7b,0x24,0xd1,0x9f,0xf1,0xc8,0x0f,0xc3,0x22,0x8e,0x5a,0x02, - 0xef,0x10,0xdc,0x1a,0x5f,0x67,0xd6,0x6f,0xc4,0x25,0xa5,0x1f,0x1c,0x75,0xd5,0x97,0x8a,0x1c,0x70,0x55, - 0xcc,0x97,0xf2,0x6b,0xcc,0x97,0x72,0x31,0x5f,0x92,0x3a,0x41,0xd8,0x91,0xbf,0x77,0xa4,0x7a,0x63,0xab, - 0x25,0x05,0x8f,0x08,0x6e,0xcf,0x91,0x4b,0x1b,0x88,0xc7,0x96,0x28,0xdc,0x80,0x76,0x1c,0x99,0xc2,0x46, - 0xa4,0xb3,0xa1,0x41,0x07,0x4b,0x34,0x5b,0xea,0x44,0x38,0x7f,0xaa,0xa1,0x0d,0xc8,0xa6,0x6b,0xe8,0x9b, - 0x51,0x8d,0xf4,0xfc,0xff,0x2b,0xa2,0x69,0xbe,0x06,0x6d,0x40,0x33,0x1d,0xc5,0x6a,0x24,0x63,0x2f,0xe0, - 0x8d,0x28,0x26,0xff,0x44,0x14,0xe3,0x34,0x7a,0x23,0x82,0x91,0xd2,0x37,0xa3,0x97,0x86,0x2c,0xf7,0xbf, - 0x1c,0xb9,0xe4,0x37,0x23,0x97,0x6e,0xd7,0x4a,0xff,0x17,0xb9,0x74,0x20,0x97,0xdc,0x20,0x17,0xa5,0x09, - 0x22,0x86,0x02,0x4a,0x04,0x94,0x11,0xc1,0x67,0x2d,0x6c,0xf8,0x73,0x40,0xeb,0x9c,0x5c,0x24,0xd9,0x2c, - 0x39,0xce,0x66,0x19,0xf2,0xe3,0x2b,0xf7,0xbe,0x8c,0x3e,0x3a,0x2f,0x81,0xd1,0x31,0xb6,0x86,0x35,0x7a, - 0x67,0x33,0x3b,0x6e,0x2f,0x7c,0x31,0x9c,0xc6,0x04,0x85,0x17,0x04,0xfb,0x94,0x74,0xfb,0xb6,0x02,0xb8, - 0x53,0x9d,0xa2,0x4d,0x2c,0x07,0x5e,0xc0,0x33,0x4a,0x75,0x33,0x12,0x92,0xa9,0x6b,0xbc,0x1f,0xa9,0x76, - 0x3d,0x5a,0xef,0x96,0xe8,0xaf,0x5e,0x11,0x94,0x46,0x9b,0x04,0xae,0x28,0x02,0x27,0x36,0x79,0x7c,0xba, - 0xa1,0xc9,0xdc,0x69,0xb2,0x6a,0xb7,0xd7,0x7e,0x1f,0xb3,0x5f,0x7e,0xfe,0x57,0x80,0x5f,0xaa,0xf4,0x56, - 0x55,0xf3,0x59,0xcd,0x4f,0x11,0xdb,0x42,0x5c,0xa8,0x31,0xfb,0x6a,0xd2,0xea,0xa9,0xcd,0xab,0xac,0xd7, - 0xb5,0x55,0xc4,0xf5,0x73,0x1c,0x7f,0xde,0x24,0x5b,0x0c,0x4e,0xd6,0xc5,0x96,0x65,0x86,0xc1,0xc9,0xec, - 0x69,0x66,0x60,0xcb,0x84,0xcb,0x6f,0x4c,0x33,0xb1,0xd8,0xb3,0x04,0xf3,0x34,0xd6,0x69,0x49,0x6b,0x9e, - 0x61,0x6e,0x66,0x5a,0x7e,0xce,0x4c,0xd3,0xcf,0x9f,0xa9,0xf2,0x97,0xe8,0x8e,0xb5,0x64,0xe6,0xa9,0x0a, - 0x8d,0xde,0x6f,0xd9,0xe2,0x1d,0x3f,0x7d,0x54,0x93,0xff,0x5e,0x18,0x33,0x3c,0x71,0xaa,0x6d,0xf6,0x26, - 0x16,0x74,0x75,0x70,0xbb,0x9f,0x3a,0x8f,0x8e,0xb3,0xf7,0xdf,0x3b,0x8f,0xfc,0xe6,0x79,0xc0,0xe6,0xfa, - 0x43,0x96,0xfb,0xef,0xf0,0x69,0x8c,0xff,0x7c,0x0f,0xe7,0x9c,0x23,0x34,0x8c,0x55,0x54,0x77,0x76,0x1c, - 0x76,0x5a,0xc7,0x1f,0xf3,0x2f,0xc5,0xcd,0xe2,0xa5,0xd2,0xda,0xa1,0xf1,0x1a,0xd5,0x01,0x31,0x8a,0x7a, - 0x01,0x52,0xe8,0x4d,0x55,0x52,0xe5,0x13,0xc2,0x94,0xc3,0x52,0xec,0xa3,0xca,0x81,0x8a,0x26,0x0e,0xcc, - 0xa8,0x70,0x5d,0xec,0xfd,0x7d,0x70,0x6f,0x70,0xcf,0x0b,0xbb,0x4c,0xb5,0x24,0xd2,0xf3,0xed,0xdb,0x2a, - 0xe2,0xf3,0x5b,0xc4,0xa0,0xa9,0xbf,0x07,0xcb,0x45,0xea,0xbf,0x20,0xc4,0xac,0xd4,0x87,0x8c,0xb5,0xcb, - 0x55,0x9a,0x47,0x57,0x1c,0x55,0x33,0xf2,0xde,0x54,0x49,0x56,0x2e,0xbc,0x70,0xf1,0x71,0x51,0xa5,0xe7, - 0xcf,0x9f,0x51,0x0a,0x7f,0xf5,0x9e,0x3f,0xf3,0xc2,0x69,0x56,0x9e,0x5f,0x26,0x65,0xfa,0x56,0xc6,0x12, - 0x79,0xdf,0xaa,0x84,0x9e,0x1a,0x5d,0xd4,0xf3,0xc2,0x71,0x31,0xff,0x28,0x91,0x33,0xbc,0xa7,0xfa,0xb3, - 0xf7,0x3f,0xff,0x9f,0xde,0xdd,0xdd,0xbd,0xbf,0xf7,0x5e,0x24,0xe5,0x59,0xef,0x22,0xc9,0x7b,0x3f,0xa7, - 0xf9,0xe2,0xb2,0x58,0x4e,0xe8,0x58,0xcd,0x8a,0x04,0x1e,0xb7,0x22,0xef,0xf5,0x2c,0x85,0xe1,0x20,0x47, - 0x33,0xe8,0xa9,0xd4,0x9e,0x2c,0x94,0x0a,0xf9,0x3e,0x18,0x0c,0xbc,0xb0,0x4c,0x8f,0xe9,0x7a,0x7f,0x9d, - 0xe6,0x52,0x6b,0xff,0x34,0xed,0xc9,0x68,0x69,0xfe,0xb3,0x59,0xef,0x38,0xed,0x49,0x89,0x74,0x12,0xf6, - 0xe6,0xd2,0x64,0x99,0x4e,0xcb,0x74,0x71,0xca,0x98,0xbc,0x37,0xa7,0x49,0xf7,0x92,0x29,0x91,0x52,0x34, - 0xf4,0x09,0xcd,0x95,0xb7,0xfe,0x09,0x47,0xf1,0x88,0xbc,0xc7,0xf8,0xe1,0xa4,0xbd,0x49,0x2e,0xb8,0x23, - 0xf9,0xcb,0x43,0x98,0xa4,0x17,0xd9,0x98,0xef,0x32,0xea,0x1f,0xff,0xd2,0xbc,0x2f,0xb3,0x69,0x46,0xab, - 0x57,0x2d,0x17,0xd1,0x55,0x32,0x86,0x17,0xcc,0x79,0x91,0xe5,0x95,0x59,0xd9,0xc7,0xaf,0x51,0x6a,0x92, - 0x2d,0x92,0x63,0xba,0x98,0x22,0xef,0x99,0xfa,0x22,0x92,0x84,0x5d,0x6a,0x14,0x39,0x42,0xe0,0x99,0xe2, - 0xbf,0x66,0xdf,0x66,0x1b,0x2a,0x84,0x19,0xa2,0x99,0x78,0xcf,0x27,0x78,0x19,0xce,0x8b,0x37,0x6f,0x78, - 0x9b,0xe8,0xdf,0x1e,0xec,0x4f,0xa7,0x05,0x41,0x06,0x6d,0xe0,0x38,0xc9,0x11,0xa5,0x02,0xf6,0x1c,0x54, - 0xf9,0x0d,0xfd,0xec,0x8d,0xf5,0x6f,0xec,0x52,0x9e,0x13,0x04,0x7f,0x4b,0x37,0x34,0xb2,0xe5,0x6f,0xaf, - 0x2a,0x7a,0x2a,0xc3,0x94,0xa0,0x71,0xfd,0x54,0x2c,0x78,0x33,0xf5,0x6f,0xda,0x9b,0x45,0xc5,0x23,0x53, - 0x65,0xd4,0xe8,0xcc,0x2f,0x04,0x00,0x59,0xa8,0xa5,0xa8,0x92,0xe3,0x7d,0x03,0x5a,0x94,0xe2,0x85,0x6a, - 0x82,0x4f,0x25,0x8a,0x4c,0x6f,0xa1,0x92,0xe9,0xbe,0x7e,0x53,0xa5,0xf3,0xc5,0x7e,0xb9,0x44,0xe1,0xb4, - 0xea,0xe1,0xfd,0x00,0xa1,0xec,0x3f,0xd2,0x9c,0x4a,0x36,0x1e,0x58,0xa0,0x40,0x5d,0xf4,0x5b,0x68,0xb4, - 0x36,0xcb,0xc2,0x7f,0xdb,0x45,0x36,0x59,0x22,0x52,0x05,0xad,0x2d,0x11,0x37,0x88,0x50,0xe1,0x8c,0x64, - 0x5f,0xa5,0x61,0x2c,0xe7,0xa9,0x4e,0xa4,0x4f,0x49,0x78,0x8e,0x77,0x8b,0x9c,0xd0,0x91,0x86,0x48,0x5a, - 0x56,0xd8,0xc4,0x24,0x55,0x0f,0xd9,0x3d,0xdd,0x64,0x4f,0xd9,0xa9,0xf4,0x92,0x9c,0xfb,0x47,0x9d,0x5e, - 0xbd,0x6c,0x03,0x69,0xed,0x65,0xc1,0x61,0x8f,0xbd,0x97,0x45,0xa3,0xb6,0x3a,0xbe,0xbd,0x8f,0x69,0x25, - 0x25,0xbf,0xc9,0xd5,0x4e,0xcb,0x87,0x5b,0x5c,0x8d,0x15,0x82,0x6d,0xf6,0xaf,0xa5,0x80,0xcf,0xfc,0x96, - 0xd2,0x59,0xde,0x3b,0xa7,0x43,0x90,0x2d,0x52,0x1a,0xc7,0x44,0x55,0x7a,0x3c,0xa1,0x36,0xe9,0x1f,0xf9, - 0xf5,0x4c,0x82,0x0c,0x79,0xf2,0x57,0x37,0xcb,0x9d,0x34,0x06,0xa0,0x2a,0x7c,0x9b,0x7d,0x48,0x27,0xd2, - 0x1d,0x7f,0x72,0x4f,0x92,0xf5,0x66,0x99,0x97,0x19,0x6f,0x81,0x7c,0x98,0xd4,0x05,0x56,0x4f,0xfe,0xea, - 0x45,0xd6,0x67,0x45,0xc6,0x98,0x2f,0xab,0x54,0x0d,0xef,0x05,0x8d,0x34,0xf9,0x18,0x79,0xf2,0x57,0x15, - 0x5f,0xa6,0x0b,0x4e,0x54,0x1f,0x92,0xfa,0x6b,0x3a,0xc9,0x55,0xba,0xf9,0x54,0xe5,0x4f,0x97,0xa5,0xaa, - 0xa0,0xbe,0xd4,0xd8,0xcb,0x8c,0x53,0xe5,0xaf,0x1a,0x1e,0xc1,0x5b,0xc9,0xa9,0xfa,0xcb,0x0c,0x5b,0x52, - 0x97,0x32,0x8e,0xf3,0x42,0xd6,0x99,0xa1,0xe3,0x05,0xff,0xd0,0x89,0xd6,0x9e,0x4a,0xc2,0x86,0x5d,0x95, - 0xcc,0xe6,0xbe,0x36,0xaa,0x34,0x8a,0x3d,0x5b,0x82,0x1c,0xdf,0xaf,0x77,0x85,0xf6,0x0e,0x57,0x0d,0x5d, - 0x0e,0x3d,0x04,0x1c,0xea,0x65,0xd3,0x5e,0xe2,0xc0,0x06,0xec,0x6b,0x92,0x59,0x99,0x26,0x93,0x8f,0xbd, - 0x44,0x4c,0xd2,0xf5,0xe0,0x3f,0x17,0x5c,0x74,0xb5,0x0d,0xe0,0x20,0xd9,0x35,0x3c,0xc9,0xef,0x26,0x44, - 0x49,0xea,0xeb,0x8c,0xb0,0xe9,0x77,0xaf,0x9f,0xbf,0xea,0xcd,0xa9,0x1b,0x5f,0x06,0xd6,0x3b,0xa5,0xeb, - 0x20,0x30,0x15,0xe5,0x16,0x05,0xda,0x7d,0x73,0x99,0xa6,0x73,0x3a,0x48,0xd9,0x79,0x62,0x2f,0xb4,0x29, - 0xf1,0xd2,0xfa,0x4e,0x66,0x58,0xf9,0x3c,0xa5,0x46,0x35,0x4e,0xe8,0xe1,0x6c,0xe2,0x22,0x48,0xce,0xe5, - 0xdc,0xb4,0xfb,0xd8,0x2f,0xe6,0xcf,0x10,0x67,0xcb,0xa3,0x8f,0x1e,0x22,0x6e,0xb5,0x4a,0x3c,0x29,0x08, - 0xdd,0x9f,0xff,0x32,0x8f,0x3c,0xf9,0xea,0x2d,0xe7,0xde,0xda,0xc2,0x83,0x36,0x0a,0xa9,0xb1,0x61,0x8d, - 0xd0,0x6a,0x04,0xc9,0xaf,0x80,0x69,0xc5,0x9b,0x6b,0xdf,0x05,0x1a,0x02,0x24,0xad,0xc7,0x89,0x4e,0x89, - 0xef,0xb9,0xd4,0xe3,0xd9,0xac,0xb8,0x5c,0x08,0xd6,0x53,0x7e,0x06,0x2c,0xbc,0xd2,0x9b,0x96,0x34,0xb6, - 0x8f,0xc5,0xb2,0xec,0xc9,0x3d,0x04,0xb4,0xcd,0x37,0x9b,0x5c,0xde,0xca,0x4b,0x12,0x57,0x77,0x6e,0xcf, - 0xde,0x7c,0x59,0xce,0x8b,0x45,0xba,0x18,0xf4,0x70,0x69,0xaa,0xd2,0x6e,0x11,0x80,0x92,0xb0,0x6d,0xd4, - 0x02,0xfd,0x3e,0xad,0xaa,0x79,0xb4,0xb3,0xb3,0xf7,0xf5,0xdd,0xc1,0xde,0x97,0x5f,0x0d,0xf6,0x06,0xf7, - 0x77,0x7a,0x97,0xa7,0x04,0x85,0xd4,0x7f,0x0f,0x37,0xbf,0x41,0xfa,0x18,0x45,0x56,0x51,0xd3,0xcc,0x78, - 0x54,0xbd,0x62,0x4a,0x70,0xba,0xe8,0x2d,0x0a,0x38,0xce,0x59,0xf4,0xd4,0x1d,0x87,0xc1,0xa5,0xe8,0x45, - 0x77,0x8b,0x5b,0x9a,0xb2,0xa9,0x02,0x25,0xb2,0xff,0x84,0x74,0x8c,0x54,0x76,0x00,0x93,0x7f,0x24,0x6a, - 0xe0,0xe3,0xa0,0xf7,0x1b,0x75,0x86,0x0b,0x2c,0x99,0xd1,0xcf,0x45,0xcf,0x70,0x65,0x3d,0xa1,0x9f,0x7a, - 0x10,0x1c,0x60,0xb4,0xc7,0x1f,0x7b,0x50,0xa0,0x04,0xdd,0x00,0x68,0xb0,0x97,0xb9,0xa7,0xc2,0x74,0x2d, - 0xf3,0x2a,0x9b,0x71,0xee,0x4f,0xdf,0x3c,0xeb,0xcd,0x40,0x9d,0x2c,0x68,0xa3,0x09,0x59,0xdb,0xb7,0xb0, - 0xde,0x28,0x7b,0xd4,0x4e,0x09,0xd9,0x28,0xb5,0xe5,0x5d,0xab,0x4f,0xab,0xc1,0x5b,0x44,0x80,0xd6,0xc3, - 0x5d,0xde,0x2b,0xd9,0x8b,0xd8,0xa0,0xa7,0xee,0x14,0x0e,0x0e,0xc7,0xe3,0xc0,0xcd,0x4d,0x94,0x4a,0xb2, - 0x20,0x82,0xa8,0x9c,0xd0,0xa4,0x27,0x44,0xea,0x96,0x94,0xd3,0xdc,0xbe,0xe3,0x94,0xc0,0x02,0x03,0x5d, - 0x64,0x13,0xb9,0xf0,0xbd,0x50,0x57,0xa3,0xbb,0x4a,0x7d,0xd1,0xc5,0x7c,0x3a,0x26,0x18,0xfe,0x85,0x3a, - 0x79,0xf6,0xfd,0xd3,0xd7,0xf2,0x5b,0x01,0xd6,0x92,0xc0,0x1a,0xee,0xbb,0x70,0x39,0xd2,0xb2,0x2f,0xb2, - 0x93,0x7c,0x81,0xeb,0xeb,0xf9,0xeb,0x9e,0x8a,0x33,0xdf,0x0d,0x4c,0xb2,0x05,0x44,0xb2,0x1f,0xd3,0xb2, - 0x60,0x53,0x68,0x41,0xa9,0xe0,0x19,0x0e,0xad,0x6c,0x04,0x56,0x76,0x86,0xfa,0x00,0x0c,0x98,0x39,0x11, - 0x98,0xd0,0xa1,0xa4,0x5f,0x77,0x08,0x4a,0x26,0x05,0x48,0x27,0xa2,0x5c,0xe6,0xaa,0x1b,0x22,0x5f,0x4c, - 0x97,0x34,0xa3,0xe5,0x31,0xdd,0x9d,0xe7,0xc9,0xe2,0x0c,0xe8,0x17,0xdf,0x3d,0xfc,0xf0,0xc2,0x13,0xc2, - 0x7a,0x97,0x40,0xca,0xdf,0xc9,0x87,0x17,0x9e,0x12,0xed,0x21,0x36,0xa7,0xdf,0xab,0xaf,0x3a,0xed,0x75, - 0xed,0x23,0x19,0xd8,0x48,0xcc,0x4c,0xa9,0xa5,0xb1,0xe9,0x69,0xad,0x08,0x5b,0x87,0x2e,0xe1,0x14,0xa2, - 0xa4,0xaa,0xb9,0x45,0x0a,0xf4,0xa0,0xe6,0x79,0x5a,0x16,0x39,0x51,0x5d,0xbc,0xfa,0xfe,0xcb,0xfd,0xd7, - 0x84,0x55,0x08,0x99,0x2d,0x54,0xb1,0xef,0x89,0x7c,0x64,0xea,0x97,0xd2,0x0a,0x04,0xdb,0x3c,0x4f,0xe6, - 0x3a,0xef,0xbb,0xa2,0x38,0x21,0x28,0x78,0x41,0x29,0xbd,0xc7,0xaf,0x9f,0xd7,0xb4,0xb3,0xca,0x37,0x94, - 0xb3,0xf0,0x0c,0x44,0x6e,0x25,0xb3,0xec,0xb8,0x64,0x09,0x89,0x60,0x13,0xfd,0xdb,0xca,0xd2,0x34,0xaa, - 0xc9,0xd3,0x04,0x91,0x29,0x21,0xdb,0xfc,0x0b,0x9b,0x76,0xa7,0x1a,0xe4,0x19,0x6e,0x14,0x6d,0x27,0x67, - 0x8e,0x73,0x45,0xfa,0x42,0xe7,0x54,0x5a,0x09,0x19,0xf2,0xa8,0x54,0x32,0x79,0x0f,0xa3,0x4c,0x6e,0x80, - 0xa9,0xf7,0x1c,0xdb,0x0a,0x67,0x32,0xc9,0xf8,0xd4,0x22,0xaf,0xb8,0x1a,0x2f,0xdb,0x1b,0x78,0xe2,0xa5, - 0x25,0xa7,0x15,0xea,0xb1,0x57,0xde,0x92,0x93,0x99,0x8e,0xba,0x00,0xb6,0xfe,0x59,0xd1,0xdf,0x99,0x4a, - 0xe9,0xf9,0x35,0x11,0x10,0x70,0xd9,0x9f,0x12,0x1a,0x37,0xfd,0x93,0x55,0xcc,0x13,0x20,0x05,0x34,0xf7, - 0x4f,0x45,0x7e,0x62,0x25,0x11,0xc7,0x2c,0xd7,0xc5,0x77,0x04,0x21,0x33,0x55,0xba,0xb7,0x43,0x04,0xa9, - 0x2a,0x26,0xb8,0x71,0xa6,0xca,0x39,0x95,0xde,0xa4,0x49,0x39,0x3e,0x05,0xb5,0x88,0xbf,0xbc,0x91,0x84, - 0x01,0x88,0x2a,0xa7,0xeb,0x95,0xd1,0xc4,0x6b,0x46,0x13,0x42,0x8e,0x32,0x72,0xe0,0x7b,0xab,0x4f,0xdc, - 0xd6,0x45,0xa0,0x8b,0xbf,0xd9,0x7f,0x2c,0x84,0x2c,0x20,0xe2,0x05,0x50,0xd9,0x35,0xe5,0x1f,0xbf,0xd6, - 0x1b,0xa6,0xb0,0x89,0xd3,0x91,0xda,0x1c,0xfb,0x72,0xa4,0x6d,0x92,0x9a,0xaf,0x7f,0x7d,0xf1,0xac,0xa4, - 0x94,0xf2,0xcd,0x33,0xea,0xef,0xf5,0xd3,0xc7,0x5f,0x7f,0xf9,0xd5,0x83,0x1e,0xa5,0xf6,0x26,0x9c,0xdc, - 0xa3,0x74,0xa9,0x09,0x45,0xe7,0x66,0x9d,0xa7,0x3f,0x75,0xd7,0x79,0xfa,0x93,0xd4,0x19,0xc3,0x2b,0x2b, - 0x2a,0x5d,0x9e,0x3f,0xd6,0xa7,0xb1,0xa3,0xfc,0xf3,0xff,0xf9,0xff,0x3e,0xad,0x8f,0x28,0x15,0xfe,0x16, - 0xf4,0x6e,0x9a,0x8f,0x3f,0x76,0x16,0x9f,0xea,0x5c,0x39,0x07,0x04,0xf4,0x3f,0xa6,0x1f,0x5b,0x07,0x81, - 0x50,0x86,0x53,0xe0,0x94,0x01,0xf6,0xe7,0x54,0x3c,0x12,0x4e,0x80,0xf7,0xa7,0xbd,0xe5,0x82,0x31,0xb8, - 0x4d,0xfe,0x0e,0x7a,0x04,0xd4,0x13,0xbe,0xd3,0x66,0x45,0x71,0x86,0xfc,0xe5,0x9c,0x61,0x54,0x45,0xa3, - 0xe4,0xe2,0x7f,0x10,0x55,0x30,0x20,0x74,0x4b,0x64,0x01,0xa1,0xc2,0xb3,0x1e,0xc2,0xe3,0xd1,0xc9,0x04, - 0x86,0x53,0x7d,0x87,0x58,0xf7,0x9e,0x1a,0xd4,0x39,0xf3,0xa6,0x90,0x2c,0x57,0x74,0xe6,0x04,0x5f,0xf3, - 0x2c,0x16,0x74,0x8f,0xfd,0x4c,0xbc,0xf8,0x02,0x38,0x5a,0xae,0x61,0x9a,0x5e,0xaa,0x1b,0x01,0xb5,0xa1, - 0x2e,0x46,0xed,0xcc,0x8f,0x6e,0x62,0x3a,0x65,0x73,0x8c,0xf4,0x84,0x1b,0x07,0xff,0xbf,0xc3,0x47,0x2a, - 0xd1,0xd4,0x5b,0x56,0xdd,0xa1,0xab,0x66,0x21,0x37,0x33,0x86,0xae,0x17,0x65,0x40,0x78,0x89,0xe5,0xd8, - 0xd1,0x15,0xd8,0x5e,0xc5,0x45,0xd2,0xed,0xb2,0x9c,0x4d,0xf8,0x4e,0x44,0xaa,0x66,0x72,0x35,0xbf,0x84, - 0xb4,0x9a,0xe4,0x68,0x95,0xb6,0xe8,0x05,0x22,0xc2,0x2b,0xb8,0xb4,0x96,0x3a,0x82,0xee,0x36,0xb6,0xee, - 0x94,0xb5,0xa8,0xd0,0xf6,0x78,0x1c,0x12,0xd4,0xad,0xf7,0xc2,0x26,0x23,0xdb,0x35,0x5d,0x02,0xd8,0xaa, - 0xcb,0x5c,0x77,0xf7,0xa4,0x16,0xb0,0x11,0xef,0x9c,0x14,0x57,0x6a,0xcf,0x8a,0x2b,0xb4,0x66,0x25,0xe8, - 0x16,0x17,0x72,0x7b,0x95,0xcb,0x94,0x46,0x44,0xfb,0x28,0xf7,0xb5,0x5e,0xe7,0xe5,0x1c,0x63,0xd6,0xf8, - 0x9a,0xce,0x32,0x36,0xaa,0xc7,0x91,0x14,0x7b,0x92,0x07,0x60,0xd4,0xe8,0x5d,0xf7,0xc0,0xfc,0xa9,0xdd, - 0x38,0x8f,0x92,0x9f,0x58,0x80,0x36,0xc5,0x3b,0x14,0x6e,0x3e,0xc6,0x46,0x35,0x62,0xb3,0x57,0xaa,0x38, - 0x03,0x8c,0x6b,0x64,0x46,0x93,0xa7,0xdb,0x3d,0xcb,0x13,0x66,0x9c,0xb8,0xb9,0x4d,0xdb,0xc3,0x53,0xdf, - 0xb0,0x3d,0x5c,0x71,0xf3,0xfe,0x70,0xd5,0x8d,0xfb,0x23,0xd0,0xd9,0x98,0x99,0x80,0x9b,0xba,0x81,0xdc, - 0xad,0x91,0xb5,0x78,0x5a,0xe7,0xb5,0x77,0xb4,0xb3,0x1e,0x42,0x0b,0x56,0xbc,0xd0,0x8e,0x7c,0xa7,0x4c, - 0xd9,0xe1,0xa7,0xb0,0xe2,0x19,0xfc,0x06,0x2c,0xe8,0x72,0x23,0x62,0x94,0xcb,0xf7,0xea,0x57,0xa1,0xd9, - 0x47,0x21,0x71,0x11,0x5b,0x80,0xc8,0xbf,0x4b,0x9a,0x04,0xad,0xa4,0x42,0xd5,0x19,0x8d,0x5e,0x7a,0xf8, - 0x99,0x28,0x31,0x90,0xf5,0xbb,0xe0,0x27,0xca,0x73,0xbe,0xd2,0x92,0xb2,0x22,0xb2,0x3f,0xdc,0xa3,0x5b, - 0x34,0xa7,0x42,0x73,0x3a,0xdf,0x84,0xde,0x42,0xd5,0x05,0x11,0x98,0xa7,0xfa,0xd6,0x67,0x23,0x8e,0x49, - 0x71,0xe2,0x85,0x77,0x51,0xf8,0x94,0xce,0x3a,0x64,0x28,0xe9,0x87,0x71,0x3a,0x97,0xdb,0xe7,0xde,0xc6, - 0x46,0x16,0xc5,0xb4,0x6a,0x34,0x72,0xdf,0x88,0xda,0xa8,0x14,0x86,0xa1,0x51,0x11,0x18,0xaf,0x07,0xc4, - 0xf1,0x26,0x67,0x00,0x38,0xb9,0xe1,0x60,0xbb,0xd2,0x5b,0xcc,0x52,0x5c,0xc0,0x5f,0xda,0x15,0x89,0xeb, - 0x64,0xd9,0xcb,0xf8,0x8c,0x78,0x3d,0x38,0x2b,0x78,0xdc,0xe3,0x5f,0xb4,0x99,0x70,0xaf,0x60,0x93,0xf7, - 0x86,0x14,0x5d,0x10,0xe2,0xc5,0x72,0x6a,0x92,0x35,0x27,0x98,0xa4,0x7e,0x7b,0x06,0xa7,0x01,0x8d,0xed, - 0x14,0x60,0x37,0xd8,0x3b,0x08,0x15,0xe5,0x41,0xd8,0x64,0x62,0xcd,0x89,0x94,0xe9,0x79,0x71,0x21,0x2e, - 0x44,0xb4,0x88,0x51,0x88,0x6b,0x35,0x24,0x30,0x61,0x00,0x19,0xa2,0xd0,0xd4,0x97,0x93,0xab,0x78,0xc9, - 0x9f,0xb9,0x95,0x76,0x8e,0x02,0x0a,0xfb,0xd0,0x72,0x77,0xd6,0x24,0xc1,0xb3,0x59,0x10,0xa7,0x05,0x6a, - 0x16,0x14,0xd2,0xbd,0xf0,0x47,0x02,0x4a,0x19,0x7c,0x83,0xbe,0xa3,0x9f,0xd0,0x37,0xa4,0x5e,0x4b,0x5c, - 0x48,0x2f,0x5d,0xda,0x88,0x08,0x89,0xf4,0x43,0xa5,0x4b,0xbe,0x64,0xff,0x01,0x8e,0xd4,0x50,0x4b,0xda, - 0x6a,0xd9,0x14,0x6b,0x9c,0x13,0x95,0xbb,0x49,0x86,0xc5,0xe1,0xda,0x09,0x12,0x5f,0xd0,0x8d,0xbc,0x43, - 0x34,0xea,0x07,0x85,0x12,0x7a,0x58,0x6f,0xa1,0xac,0xe8,0xaa,0x78,0xba,0x24,0x6a,0x4a,0x08,0xba,0x59, - 0x71,0x92,0x94,0x74,0x9f,0x9d,0x67,0x63,0xdc,0x79,0x17,0x72,0x8d,0xd4,0x72,0x2f,0xbf,0xb4,0x2e,0x51, - 0x64,0x11,0x49,0xb2,0xe0,0x58,0xbc,0xf9,0xcc,0x2c,0x02,0xad,0xe4,0xbc,0x25,0xdc,0xfd,0x34,0xe9,0x6e, - 0xfa,0xd7,0x84,0xbb,0xdf,0xd0,0x31,0x2d,0x4e,0xd2,0xfc,0x78,0x96,0x9d,0xf5,0x4e,0x52,0x62,0x2a,0x88, - 0xf1,0x3b,0x4e,0xff,0xc8,0x4e,0x08,0x4a,0x40,0xcc,0x4d,0xa8,0xc0,0x05,0x0b,0x29,0x0d,0xcf,0x93,0x76, - 0xc9,0x7b,0xbf,0xa7,0xd2,0x0b,0x35,0x6c,0xf0,0x3b,0xc4,0x69,0xce,0xf3,0x2c,0x5d,0x5e,0xd2,0xdf,0x13, - 0x39,0x39,0x21,0x46,0x8c,0x41,0x13,0xe3,0x91,0xfe,0x91,0x42,0xe2,0x4b,0x78,0xb3,0x97,0xd3,0x50,0xd2, - 0xbc,0xb1,0x73,0xfb,0x45,0x0a,0x1e,0xaa,0x91,0xae,0x65,0xbe,0x4f,0xcc,0x00,0x8b,0xf9,0x62,0x96,0x24, - 0x79,0x87,0xf8,0xf7,0xfd,0xe4,0xcf,0x88,0x7f,0x7f,0xc9,0x2a,0x1a,0xed,0xf8,0x94,0x4e,0xf5,0xec,0xd3, - 0x65,0xc0,0x6e,0x2d,0x25,0x08,0x7e,0x43,0x03,0x9b,0xc3,0x13,0xd2,0xa4,0x29,0x0e,0xce,0x68,0xe0,0x27, - 0xe9,0x45,0x41,0x30,0x91,0x77,0x8b,0x84,0x93,0x29,0x61,0xf8,0x22,0x6f,0x4b,0x84,0x7f,0xa4,0xcc,0x13, - 0xe0,0x56,0x5a,0x47,0x15,0x12,0x85,0xa0,0xf4,0x0c,0xed,0x34,0x25,0xc3,0x6f,0xeb,0x12,0x54,0x78,0x56, - 0x94,0x28,0xe4,0x4a,0x87,0x5f,0x62,0x24,0x68,0x49,0x86,0xf2,0x29,0xf2,0xe1,0xef,0x97,0xd9,0x24,0x3b, - 0x49,0x37,0xc8,0x87,0x1f,0xcf,0xc0,0x63,0x97,0x29,0xa0,0x06,0x7b,0x3c,0x9b,0x42,0xac,0xa0,0x0e,0x43, - 0x9a,0x55,0x2d,0x21,0xf1,0xbe,0x94,0xd5,0xec,0x4b,0x9a,0xce,0xd8,0x7d,0x54,0x4a,0xed,0xe4,0x9f,0x27, - 0x26,0x7e,0x3f,0x69,0x8a,0x89,0x7f,0x62,0xf8,0xe8,0xd1,0x5d,0xd7,0xbb,0x28,0x40,0xdb,0x51,0x99,0x5a, - 0x22,0x98,0xa6,0xb5,0x78,0xf8,0xc2,0x59,0xaa,0x14,0xbe,0x40,0xb3,0x45,0x4b,0x50,0x7c,0x22,0x2b,0xef, - 0x36,0x73,0x92,0x1a,0xf6,0x2d,0x2d,0x27,0x0d,0x89,0xf1,0xbe,0x53,0x94,0x26,0x26,0x20,0x92,0xe6,0xd7, - 0x8b,0x8d,0x53,0xe9,0xc3,0x15,0x03,0xea,0x4a,0x2c,0xe6,0xa3,0xe3,0x71,0x51,0xa4,0x27,0x3a,0x4d,0xa3, - 0x67,0xda,0xf2,0x4b,0xaa,0x99,0x96,0x75,0x0f,0xae,0xc8,0x10,0x22,0xcb,0x74,0xda,0x12,0x20,0xbf,0xa5, - 0x0b,0x59,0x3a,0x6d,0x08,0x90,0x7f,0x07,0x1d,0x3d,0x3f,0x2b,0xce,0x17,0x95,0x2b,0x44,0xe6,0x0c,0xd8, - 0x44,0x9c,0x24,0xd0,0xb0,0xb7,0x65,0xc9,0x7a,0xe4,0x60,0x23,0xf3,0x86,0x2c,0x99,0x8e,0xea,0x24,0x39, - 0x69,0x08,0x93,0x9f,0xd1,0xc2,0x98,0x54,0x5b,0x98,0x5c,0xa4,0x56,0x46,0x2d,0x4b,0x7e,0xc6,0x1d,0x9b, - 0x0c,0x2d,0x4c,0x7e,0x5b,0x52,0xd7,0x3a,0xb1,0x96,0x26,0xff,0x4e,0xa4,0x4e,0x5d,0x58,0x4b,0x93,0x7f, - 0x2f,0x64,0x20,0x8e,0x34,0xf9,0x49,0x7a,0x99,0x9e,0xb0,0xc5,0x40,0x53,0x9e,0xac,0xb6,0xfe,0x58,0x15, - 0xd8,0xbc,0xfd,0x0d,0xd1,0xf2,0x93,0x56,0x05,0x07,0x08,0x6e,0x92,0x30,0xbf,0x22,0x5a,0xd3,0xaa,0x40, - 0x17,0x15,0xc1,0x2d,0xee,0xab,0x5e,0x13,0x10,0x99,0x9d,0x49,0xa7,0x04,0xb6,0x37,0x09,0x99,0x37,0x02, - 0x57,0xb7,0x90,0x59,0x43,0x8c,0x25,0x63,0xb6,0x80,0xcf,0x95,0x34,0x3b,0xe0,0xb7,0x51,0xdc,0x4c,0xa3, - 0x3c,0x25,0x5e,0xac,0x4b,0xdc,0xfc,0x58,0x04,0xcd,0xe9,0x8d,0x72,0xe6,0xef,0x30,0x7f,0xc8,0x99,0x0d, - 0xb6,0x39,0x49,0x67,0xd9,0xfb,0x33,0x4c,0x2d,0xeb,0x68,0xda,0x48,0x99,0x9f,0x14,0x90,0xd5,0xe7,0x49, - 0x52,0xd2,0x66,0xe6,0xa9,0x35,0xf1,0x2e,0x79,0xb3,0x94,0x50,0xc5,0x51,0x73,0xa3,0xe0,0xb9,0x46,0xb6, - 0x06,0x53,0x5a,0xf8,0xd7,0xbe,0x3c,0x1b,0xa2,0xe7,0xc7,0xb6,0x30,0xd4,0x01,0x8e,0x96,0xfc,0x99,0x4e, - 0xcf,0x19,0x51,0xd7,0x90,0xc2,0x15,0x32,0xdd,0x1e,0x91,0x7b,0x58,0x09,0x11,0x46,0xd7,0x8c,0x58,0x8a, - 0x2b,0x3b,0x99,0x72,0x1e,0x5d,0x9f,0x49,0x99,0x10,0x0e,0xe4,0x59,0xf0,0xc5,0x0b,0x72,0xc3,0x08,0x44, - 0x53,0xb9,0x3f,0x7a,0x4c,0xbe,0x5a,0xa9,0x06,0xae,0x11,0xae,0xa6,0xf7,0xcc,0xad,0x45,0x44,0x24,0x15, - 0xa1,0x15,0x4c,0x78,0xb7,0x7b,0x17,0x59,0xd2,0x29,0x93,0xa6,0x7c,0xea,0xf9,0xbd,0x3d,0xb2,0xd3,0xf4, - 0x18,0xb7,0xdf,0x39,0x26,0x33,0xe8,0xbd,0x91,0xf9,0xca,0xb8,0x20,0x36,0x26,0x62,0x3a,0xc3,0x58,0x79, - 0x9e,0xf6,0x18,0xc2,0x5e,0x02,0xda,0xec,0x8f,0x4c,0x5d,0x2d,0x72,0x8d,0x1e,0x13,0x31,0x9c,0xcd,0xb2, - 0x93,0x09,0x10,0x76,0xef,0x87,0xb4,0x77,0x46,0x84,0xa2,0xdd,0x5a,0xd1,0x38,0x42,0x13,0xdc,0x04,0xb8, - 0x15,0x8c,0xdc,0x47,0x96,0xfe,0x2c,0xa7,0x44,0x9a,0xd3,0xa4,0x5c,0x9e,0x61,0x39,0xaa,0xa2,0xc2,0xd0, - 0x27,0x22,0x90,0x4e,0x70,0xed,0xd2,0x22,0x36,0xe5,0xd1,0xd6,0x1e,0x83,0x1a,0x61,0x0e,0x55,0x5d,0xc7, - 0x2d,0xa9,0xb4,0x2a,0xdb,0xde,0x02,0x34,0x4e,0x4b,0x94,0xd2,0xb5,0xda,0x10,0x4a,0xbf,0x5d,0xce,0x7a, - 0xa7,0x19,0x53,0x02,0x74,0xc4,0xb1,0x22,0x4c,0x40,0x50,0xb1,0xcb,0x64,0x7c,0x5a,0x5d,0x82,0xf5,0xa4, - 0xd9,0x85,0x48,0xb1,0xf0,0x10,0x3f,0x48,0x55,0x4b,0x5e,0xd6,0x1e,0x81,0x6d,0x89,0x0b,0x9b,0x97,0x63, - 0xb1,0x51,0x4e,0xfd,0xab,0x69,0x50,0x4b,0xaa,0xbf,0x4b,0x8f,0xcb,0x25,0x51,0x85,0x9b,0xa4,0xd5,0xb4, - 0xa6,0x0c,0x60,0x2c,0x31,0x26,0xce,0x84,0x96,0x2c,0xa5,0xe3,0xff,0x07,0x60,0x2e,0xc9,0x5b,0xd3,0x1c, - 0xf4,0x7e,0x25,0x00,0xa4,0x4a,0xd9,0xfb,0x9c,0x61,0xf7,0x32,0x9b,0x61,0xda,0xd6,0x5e,0xa1,0x1a,0xcc, - 0x83,0x68,0x42,0xf4,0xcf,0x1f,0xd9,0x7b,0xe4,0x5f,0xa6,0x34,0xed,0x4b,0xc0,0x2e,0xfd,0x38,0x4f,0x53, - 0x45,0x9d,0x1e,0xc3,0x1b,0x60,0x5b,0x72,0x5d,0xa6,0x9b,0xe5,0xd6,0x90,0x7f,0xde,0x2c,0xb9,0x4e,0xce, - 0x37,0x48,0xae,0xdf,0x80,0x94,0xa3,0x71,0x4c,0xb4,0xec,0x1a,0x7d,0x6d,0x94,0x5c,0x37,0x45,0xd7,0xef, - 0x27,0xae,0xe8,0x3a,0xbd,0x4e,0x72,0x9d,0xc0,0x4e,0x8a,0xce,0x01,0xc1,0x15,0x23,0xa8,0x3f,0x21,0xc0, - 0x3e,0xce,0xde,0x13,0x7f,0x2d,0x84,0x61,0x43,0x86,0xfd,0xa3,0x66,0xb9,0xba,0x84,0xd8,0x92,0x09,0x20, - 0x12,0xc4,0xda,0x92,0x62,0x6b,0xb0,0x60,0x98,0x24,0x20,0xa7,0x45,0x49,0xe5,0xf4,0x10,0x06,0x01,0x88, - 0x52,0x4a,0x45,0x37,0x54,0xa5,0x29,0xbb,0x9e,0x08,0xc4,0x41,0xd1,0x31,0xa0,0x0a,0xa2,0x39,0x4d,0xb1, - 0xaa,0xa7,0x69,0x36,0x61,0xf6,0x22,0x9d,0x9d,0x29,0x54,0xce,0x50,0x50,0xa5,0x3d,0x4d,0xfe,0x7f,0x8a, - 0x20,0xfb,0xad,0xf0,0x15,0x5d,0x82,0xec,0xdc,0x12,0x64,0x3f,0xa1,0x79,0x4d,0xaa,0xf4,0x84,0xd0,0xe1, - 0xc4,0x12,0x66,0x43,0x37,0xc9,0x4e,0x34,0x52,0x1f,0xbb,0x3c,0xc4,0xd9,0x75,0x41,0x02,0xd8,0xd3,0x04, - 0xe8,0x84,0xa6,0x7d,0x9c,0x2c,0x08,0x1d,0x62,0x12,0x22,0x13,0x4a,0x3b,0xe5,0xdb,0xbf,0x17,0x29,0x6f, - 0xc6,0x9f,0x97,0x6f,0x5b,0xe2,0xaf,0x1b,0xe4,0xda,0x4e,0xcb,0x36,0xf2,0xe3,0x6d,0xb2,0x2f,0x62,0x62, - 0x51,0x4e,0xfe,0x3b,0x64,0xdb,0x67,0xb3,0xe2,0x7f,0x2f,0xd1,0xf6,0x63,0xdc,0x25,0x25,0x73,0xb7,0x74, - 0x52,0xe8,0x3e,0x12,0xa0,0xbe,0x60,0xc4,0xe5,0x92,0xf8,0x84,0xb8,0x98,0x9f,0x55,0x65,0x2a,0x0d,0xc0, - 0x8a,0x11,0x42,0x59,0x08,0xb8,0xe5,0x42,0x9c,0x03,0x2a,0xa8,0x06,0x1d,0xbd,0x8a,0xef,0x9e,0x3f,0x04, - 0x77,0x1b,0x39,0xf7,0x39,0x30,0x99,0x1a,0x22,0x15,0xe7,0x72,0x13,0xea,0x15,0x32,0xed,0x33,0xb4,0xab, - 0xc4,0x4b,0x0b,0x2d,0xea,0x16,0x84,0x0e,0x0a,0x07,0x47,0xd6,0x4c,0x09,0x90,0xf7,0x69,0xc2,0x6e,0xe0, - 0x63,0x7e,0xc8,0x50,0x57,0x08,0xf3,0x42,0x7a,0xc2,0xb8,0xb5,0x26,0x37,0x8a,0xbc,0xc1,0x75,0x2a,0xe6, - 0x5e,0x01,0x20,0x5f,0xbe,0xea,0x10,0xb4,0x85,0xde,0x28,0x6f,0xf1,0x54,0x8a,0xa3,0x63,0x6c,0xd6,0x51, - 0x53,0x0b,0x89,0xad,0x5e,0x6e,0xaa,0xe2,0x8a,0x58,0x51,0xd1,0x21,0x86,0x6f,0xa8,0xdd,0x94,0xb3,0xa2, - 0x7e,0x93,0xb4,0xbf,0xae,0x8d,0x96,0x3c,0xfc,0x13,0xe6,0xcb,0x62,0x8a,0x86,0x54,0xfc,0xa6,0x09,0xab, - 0x3a,0x6d,0xe1,0x38,0x2a,0xda,0xe8,0xc0,0x1d,0x5e,0x53,0x34,0xfe,0x2d,0xde,0x5a,0xb0,0x3e,0xc4,0x4e, - 0xd5,0xf7,0x02,0xc3,0xfa,0x06,0xf9,0x38,0x2f,0x28,0xae,0xee,0x6b,0x46,0xd5,0x14,0x91,0xff,0x58,0x23, - 0x40,0x4b,0x26,0x9e,0x6b,0x32,0x6d,0x6e,0x2d,0xdd,0x9f,0xd8,0x3d,0x7b,0xf9,0xfe,0xf4,0xf6,0xa9,0x46, - 0x2c,0x71,0x39,0xaa,0x9e,0x99,0xeb,0xf0,0xba,0x3d,0xef,0x90,0x99,0x7f,0x42,0x65,0xd5,0xa3,0x2d,0x38, - 0xb7,0x05,0x65,0xfc,0x42,0x7f,0x01,0x8d,0xc7,0x31,0xf4,0x1d,0x4e,0xf9,0x42,0x2d,0x2b,0x26,0xb7,0xa9, - 0x66,0xb5,0xa8,0xd2,0x9b,0xc5,0xe3,0x74,0xdd,0x19,0x11,0x1b,0x4b,0xc8,0xa9,0x00,0x71,0xab,0x65,0xc5, - 0x83,0x08,0x4d,0xab,0x42,0xfa,0x76,0xcb,0xc9,0x5f,0xe5,0x90,0x38,0x41,0x56,0x8e,0x6b,0x19,0xca,0x8a, - 0x15,0xcb,0xc9,0xaf,0x6d,0xaa,0x5b,0x5a,0xfe,0xbd,0x2e,0x43,0xf3,0xfa,0x83,0x2e,0x3d,0x55,0x56,0xd3, - 0x44,0x22,0x32,0x27,0x5a,0x8c,0x50,0x10,0x28,0x4f,0x5a,0x2b,0x10,0xfc,0x93,0x8c,0x70,0x61,0x0f,0xcb, - 0x65,0x89,0xce,0x69,0x85,0x68,0x2b,0x3b,0xa4,0xe7,0x90,0x5a,0x36,0xe4,0xe7,0xc7,0x90,0xbf,0x65,0x67, - 0xc7,0x84,0x5e,0x89,0xab,0xa8,0x96,0x4b,0x41,0x76,0x8a,0xe9,0xa1,0xf6,0xb1,0xc2,0x04,0xfc,0x44,0x55, - 0x82,0x60,0x29,0xf2,0xea,0x32,0xa3,0x61,0xcc,0x90,0x9f,0xe6,0x3b,0xc5,0x14,0xe3,0x15,0xee,0x55,0xb0, - 0x64,0x07,0x09,0xcb,0x98,0x3f,0x03,0x34,0x97,0x68,0x0e,0x18,0x1f,0xa7,0x1e,0x6a,0xc2,0xf9,0x0d,0xc2, - 0x74,0xc5,0x11,0x34,0xc4,0xe9,0x0e,0xc3,0xbc,0x41,0xa6,0xce,0x48,0xc2,0x9a,0x6b,0xae,0x64,0x76,0xa6, - 0x62,0xb7,0x5c,0xbd,0x26,0xf2,0x3a,0xc5,0xea,0xfb,0x69,0xb9,0x3c,0x31,0x72,0xf5,0xc7,0x36,0xc9,0xe6, - 0x4a,0xd5,0xdf,0x16,0xb3,0x13,0x08,0xaf,0x1b,0xf2,0x59,0x4a,0xae,0x8a,0x42,0xe4,0xb6,0xdd,0xa2,0xf5, - 0x34,0x53,0x57,0x8d,0xc5,0xa5,0x77,0xc9,0xd7,0x41,0xda,0x03,0x0a,0xe6,0x9a,0xe4,0xb4,0x25,0xec,0x9a, - 0xd8,0x54,0x52,0xf6,0x73,0x30,0x1d,0xa9,0x92,0xb3,0x73,0xe3,0x96,0x6c,0x91,0x88,0x9a,0xfa,0x52,0xe7, - 0x4c,0x2d,0x6a,0x5f,0xd7,0xb1,0xe2,0x18,0x34,0x1f,0xcf,0xe7,0x7e,0x70,0x05,0xdd,0xeb,0x5a,0x1b,0xdc, - 0xa3,0x86,0xf1,0xd2,0x70,0xa5,0x63,0x1e,0x46,0x77,0x1e,0x4e,0xb2,0x8b,0xde,0x78,0x46,0x74,0x68,0xac, - 0x72,0x7b,0x91,0xfa,0x79,0xd5,0xe3,0x84,0x94,0x78,0x01,0xf1,0xdd,0xdb,0x33,0xc2,0x60,0xf3,0xd5,0x5b, - 0x7b,0xbd,0x7f,0xd0,0x4d,0x0d,0xa5,0xb6,0xd8,0x93,0x77,0x28,0xa2,0x3f,0x00,0x11,0x94,0x31,0x9e,0x65, - 0xe3,0x33,0x9d,0xfc,0x14,0x3f,0xbc,0x1e,0xb1,0x10,0xec,0x69,0x26,0xf6,0x76,0xbd,0x47,0x4e,0xef,0x04, - 0xae,0x65,0x31,0x73,0x13,0x39,0x50,0x21,0x25,0xed,0x50,0x9a,0xfe,0xd7,0xca,0x9e,0x25,0xc7,0x29,0xd5, - 0xb8,0xba,0xea,0x31,0x44,0xf4,0xd6,0x6b,0xbb,0xe4,0x1d,0xe3,0x07,0x9e,0xc1,0x45,0x79,0x78,0x17,0xe7, - 0xcb,0xe2,0x8f,0xf9,0x49,0x41,0x34,0x45,0x92,0x1b,0xbf,0xf0,0x5b,0x7b,0xeb,0x5a,0xe2,0xbd,0xb1,0x08, - 0xdc,0x0c,0xb2,0x72,0x7c,0x74,0x65,0x4d,0xad,0xe5,0x9d,0x5f,0x37,0x04,0x57,0xb3,0xf8,0xcd,0x1d,0xc7, - 0x5b,0xf5,0xb7,0x98,0x37,0xdd,0x4a,0xcf,0x61,0x41,0x94,0xe5,0x73,0xe0,0xa3,0x3a,0x17,0x1e,0xc7,0x9c, - 0x05,0x75,0x02,0x9e,0xde,0xbb,0x0b,0x3f,0x91,0xb4,0xf2,0x08,0x07,0xa3,0x5d,0x98,0x5a,0xa3,0x81,0xbd, - 0x09,0x62,0x4b,0x83,0x49,0xd6,0xce,0x1e,0x94,0xcd,0x49,0x03,0x26,0x08,0x96,0xb2,0x62,0x23,0x4c,0x48, - 0xee,0x46,0x98,0xe8,0xc5,0x71,0x2f,0x9b,0xfc,0x1f,0x05,0x19,0x12,0x43,0x70,0x22,0x7f,0xff,0x8b,0x81, - 0x81,0x3f,0x69,0xfd,0xfe,0x37,0x01,0x04,0xc2,0x2c,0x2d,0x40,0x70,0x56,0x55,0xee,0xdf,0x47,0x0f,0x11, - 0x3e,0x41,0xa7,0xf1,0x18,0x79,0xa5,0xf9,0x6b,0x20,0x17,0x23,0xd6,0x1b,0xa5,0xdc,0xea,0xb3,0x8c,0xd0, - 0x39,0xb6,0x33,0xc9,0x64,0xf7,0x78,0xb2,0x1c,0xa9,0x2a,0x56,0xfd,0x83,0xa5,0x05,0x04,0x00,0x6f,0xc6, - 0xde,0xfd,0xdd,0xaf,0xef,0x7b,0x6e,0x75,0xaf,0x77,0xb1,0x0d,0x81,0xd3,0x4c,0x59,0xdd,0xaa,0x11,0x0c, - 0xf4,0xd8,0x36,0x00,0x04,0xe1,0xf7,0x1b,0x06,0x8e,0xa7,0xe8,0xbf,0x38,0xec,0xbd,0x7a,0xd8,0x0f,0x3e, - 0x71,0xd8,0x32,0x2e,0x7b,0xd0,0x0e,0x84,0x1e,0xa8,0x61,0x1e,0x85,0x1c,0x2f,0x97,0x20,0xb1,0x09,0x59, - 0x3a,0xb8,0x5c,0x7c,0xc5,0x2b,0x10,0xd5,0x80,0x23,0x4b,0x12,0x52,0x0f,0x76,0x22,0xfd,0x44,0xf8,0x0c, - 0x90,0x33,0x91,0x72,0x6e,0xaf,0x20,0xb7,0x74,0x00,0x4b,0x55,0xdf,0x8a,0x9d,0x5e,0x24,0x71,0xa4,0xfe, - 0x3e,0xe2,0xe6,0x38,0x4e,0x0f,0xfd,0x8d,0x55,0x6a,0x7f,0xaf,0x0b,0xa0,0x09,0x8e,0x23,0x2e,0xd6,0x6c, - 0x91,0x5b,0xe0,0x3f,0x0f,0x55,0x03,0xdc,0x20,0x7f,0xc5,0x9c,0xbe,0xbd,0xa9,0xc1,0xb0,0x63,0x6c,0x7a, - 0x14,0x61,0xab,0x17,0x69,0x8c,0x30,0xbc,0xf2,0xbe,0xb9,0x56,0xd6,0x48,0x29,0xdb,0x34,0xab,0x68,0x7a, - 0xb5,0x5b,0xda,0xe4,0x22,0x3b,0x49,0xaa,0xa2,0x1c,0xcc,0x68,0x87,0x97,0x44,0x23,0x36,0x7d,0xc4,0x7a, - 0x2c,0xb7,0xd2,0x1e,0x67,0x8d,0x87,0xbe,0x60,0xa8,0x9a,0xf3,0xaf,0xd2,0x59,0xe4,0xfd,0x8d,0x68,0x0a, - 0x2f,0x84,0x55,0x55,0x94,0x86,0xec,0xc1,0xf5,0x2a,0x27,0xe2,0x7e,0x9a,0x29,0xa6,0x82,0xf1,0x8c,0x7e, - 0xab,0xde,0xda,0x0d,0x17,0xf2,0xfe,0xbb,0xb5,0xa7,0xbe,0x84,0x8a,0xa7,0x9f,0xaa,0xcc,0x73,0xe2,0xbf, - 0xc6,0x18,0x57,0xe4,0xad,0x34,0x1f,0xf4,0xba,0x2c,0x4e,0x58,0xe2,0x60,0x6a,0xd9,0x44,0x3c,0x25,0x0a, - 0x73,0xbc,0x9f,0x1c,0x23,0xbc,0xa9,0x3c,0x6a,0xea,0x57,0xd0,0xfa,0x45,0x5e,0x75,0xc0,0xef,0xcc,0xda, - 0xaa,0xca,0x49,0xc4,0xe3,0x92,0x8c,0x17,0x5f,0xaf,0xa6,0x53,0x3c,0x93,0xed,0x3a,0x14,0x3b,0xe7,0x5a, - 0x64,0x2c,0x6e,0x54,0xe7,0x7d,0x7a,0x1e,0x5d,0xa5,0xea,0xdd,0x85,0xc6,0x95,0xcd,0x23,0x6f,0x77,0xc0, - 0xff,0xaf,0x1f,0xa2,0x9d,0x12,0x6a,0x98,0xbb,0x6e,0xd1,0xb5,0x62,0xcd,0x68,0x64,0x86,0x3b,0x43,0x54, - 0xfa,0xfa,0x29,0x15,0x43,0xb5,0xdb,0xa9,0xdc,0xa7,0x22,0x99,0x85,0x2e,0x0e,0x5f,0xdf,0xf2,0x42,0xe2, - 0xd4,0x49,0x37,0x3d,0x5a,0x6d,0x68,0x8f,0x4e,0x77,0xf2,0xb1,0xdd,0xb4,0xfb,0x9e,0x62,0x64,0xb1,0x5c, - 0xce,0x7e,0x27,0xc1,0xe6,0x57,0x66,0x2e,0x2c,0xc2,0xe6,0x32,0x46,0x80,0x2d,0x9d,0x40,0x70,0xbd,0xc5, - 0xeb,0x21,0x8b,0x5d,0x0b,0x82,0xf9,0xb7,0x96,0xfe,0xb2,0x23,0x40,0x23,0xb9,0xad,0x25,0x8c,0xe2,0x7c, - 0xc9,0x92,0x2c,0x3e,0x08,0x09,0xdb,0x2b,0x30,0x24,0xc0,0x93,0x2e,0x89,0xd1,0x8b,0xae,0x68,0xee,0x8f, - 0x5f,0xab,0x9c,0x74,0x02,0x01,0x9d,0x8c,0x79,0xae,0x28,0x64,0x29,0x7a,0x79,0x0e,0x71,0x9a,0xf9,0x7e, - 0xfa,0x93,0xea,0xda,0x12,0x84,0xe9,0xcc,0x5a,0xd6,0xc5,0x29,0xb6,0x44,0x8b,0xb6,0x5f,0x13,0xd9,0x98, - 0x9d,0x4b,0x70,0x63,0x61,0x90,0x01,0x87,0xfc,0x86,0x19,0x87,0x5c,0x58,0xbd,0xee,0x72,0x4e,0x99,0x42, - 0x2d,0xf7,0x22,0x35,0x09,0x36,0xcb,0x20,0x43,0x92,0x10,0x02,0x93,0xa6,0xb1,0xa7,0xf2,0x75,0x5e,0x0d, - 0xec,0x83,0x89,0x66,0x54,0x44,0x61,0x13,0x74,0x9b,0xc9,0x05,0xc4,0xd8,0xf1,0x3d,0xfe,0xf4,0xb4,0x37, - 0x74,0x65,0xea,0xa8,0x07,0x07,0x27,0x85,0xa7,0xda,0x0f,0xe1,0x1e,0x21,0x04,0x5c,0xcc,0x03,0x73,0x08, - 0x63,0x84,0xf0,0x12,0x2c,0xf5,0x53,0xe3,0x50,0xc3,0x77,0xd1,0xa0,0x29,0x0c,0xe1,0x44,0x45,0x41,0xf0, - 0xaa,0xb0,0x1b,0x66,0x98,0x98,0xef,0xa1,0x9d,0x1a,0x4d,0xc8,0x98,0xad,0x54,0x0b,0x0d,0xe8,0xbc,0x61, - 0xc3,0x0a,0x9a,0x7d,0x3d,0xed,0x0e,0x93,0x87,0x7b,0xf7,0xef,0xd3,0x9f,0x7e,0xbc,0xf7,0x20,0x50,0x01, - 0x38,0x12,0xf1,0xc0,0x98,0xc4,0xdb,0x77,0x91,0xf5,0x30,0xbe,0x6b,0x4a,0x64,0xa6,0x44,0x35,0xa8,0xb7, - 0x21,0x2e,0xa9,0x67,0x67,0x1f,0xe2,0x8c,0x52,0x6a,0x31,0x9b,0x1f,0x0c,0xaa,0xd3,0x34,0xb7,0xfd,0x28, - 0x4b,0x76,0x2d,0x69,0xda,0x58,0x44,0x24,0x4a,0x1b,0xb3,0x6d,0x81,0xcb,0xc6,0x42,0xae,0x58,0x65,0x73, - 0x57,0x58,0xcc,0xce,0xdc,0x45,0x55,0xcc,0x3b,0xf7,0x4c,0xe1,0x49,0x5a,0xe0,0x75,0x60,0xfd,0xbf,0xa6, - 0x0e,0x17,0xa7,0xc5,0xe5,0x4b,0x1b,0xf1,0x77,0x06,0xf5,0x05,0x1c,0xe6,0x0e,0x1c,0xc6,0x57,0xea,0x66, - 0xa1,0xeb,0x43,0xc4,0x96,0xd5,0x3a,0x94,0xd8,0x0d,0x79,0x1b,0x60,0x6f,0xdf,0x1e,0x13,0x85,0x5a,0xe2, - 0xbb,0x58,0x56,0x7e,0x47,0x89,0x20,0xec,0x48,0x8c,0x09,0x83,0xeb,0x3a,0xd6,0x7c,0x1b,0x23,0x11,0xd4, - 0xb1,0xe1,0x94,0xac,0xc3,0x07,0xe9,0x3d,0x90,0xaa,0x44,0xed,0x74,0xcf,0x53,0x11,0x2c,0x1d,0x4d,0xf2, - 0x6c,0x5a,0x99,0x6a,0x42,0xbe,0x33,0xa3,0xee,0x52,0x8a,0x12,0xe8,0x1e,0x99,0xa1,0x9f,0x09,0xd7,0x88, - 0xc0,0xc1,0x35,0x96,0xd7,0xb2,0x65,0x62,0xc0,0x11,0xa0,0x41,0xce,0x86,0xe7,0x0d,0x11,0xb2,0x4b,0xa9, - 0x50,0xa6,0x23,0xef,0xfb,0xfd,0xfd,0xd7,0x3d,0xfd,0xb3,0x37,0x86,0x02,0xbe,0xd7,0xaf,0x0b,0x0c,0xd4, - 0x45,0x85,0x14,0x16,0x6e,0x8f,0x60,0xa2,0xa7,0x73,0xbd,0xc8,0x84,0xf8,0x93,0x91,0x36,0xa1,0x01,0xf1, - 0xbb,0xfc,0x2a,0xe8,0x7b,0x87,0xf9,0x61,0xee,0xf5,0xcb,0x90,0xc3,0xbf,0x59,0xf2,0xe9,0x6b,0xed,0xd3, - 0x93,0x0f,0x59,0xc1,0x2e,0xad,0x7d,0x6f,0x27,0x99,0x67,0x3b,0xea,0x8e,0x6f,0x02,0x70,0x57,0xd0,0xfb, - 0x4a,0x05,0xe6,0xf2,0xf5,0x0c,0x62,0x49,0x21,0xe0,0x1d,0xa8,0x48,0x84,0x03,0x77,0xf5,0x06,0x60,0xd3, - 0xe0,0x25,0x9c,0xa1,0xd1,0x3a,0xdc,0x5e,0xa0,0x86,0x6c,0x89,0x8d,0x3f,0x6b,0xd8,0xf5,0x35,0xf9,0xb9, - 0x43,0xaf,0x6b,0xfe,0x99,0xe1,0x5b,0x16,0x75,0x7a,0x0a,0x4a,0x7c,0xfd,0x79,0xab,0x2e,0xd6,0x3c,0x9f, - 0xbb,0xea,0x5c,0xeb,0x4f,0xad,0xba,0xea,0x4f,0x0d,0xd9,0x91,0x38,0x7f,0xd6,0xc0,0x35,0xb1,0xb2,0xc3, - 0xe6,0xb5,0x1d,0xe3,0x87,0x2b,0xe1,0xee,0x29,0x68,0xc4,0x65,0xc8,0x26,0x49,0x1e,0xa8,0x9f,0xab,0x55, - 0x9b,0x54,0x52,0x25,0xdc,0xd4,0xd5,0x6a,0xd7,0xa1,0x99,0xda,0xbe,0x92,0x4d,0x35,0x29,0x14,0x04,0xf5, - 0x3d,0xb6,0x3b,0x2c,0x1f,0x36,0xb2,0xb5,0x03,0xff,0x52,0xc7,0x81,0xcf,0xe2,0x46,0x89,0x83,0xf2,0x88, - 0x30,0xad,0x29,0x2f,0x51,0xba,0x6a,0xab,0xa3,0x28,0x1b,0xd4,0x3f,0xac,0xd1,0xed,0x43,0x0e,0x90,0x0d, - 0xac,0x5f,0xc8,0xd4,0xb3,0xcf,0x9c,0x89,0x9b,0x8b,0xd1,0xad,0xf0,0x68,0x77,0xb4,0x8b,0x14,0x35,0x6d, - 0xfb,0xbe,0x6c,0x15,0x34,0xc5,0x88,0x06,0x3a,0x17,0x0d,0x33,0x7f,0xef,0x76,0x46,0x53,0xf9,0xb8,0x78, - 0x35,0xfd,0x35,0x4d,0xcf,0x82,0x47,0x34,0x36,0xa5,0x66,0xe6,0xdf,0x6d,0x65,0x5d,0x1a,0x5d,0x33,0xff, - 0x7e,0xbb,0x9e,0xd6,0x37,0xf3,0xbf,0x6a,0xe5,0x4d,0x45,0xe5,0xcc,0xdf,0xfb,0xb2,0x95,0xb5,0xd0,0x8a, - 0x67,0xfe,0xbd,0x76,0x87,0x0b,0xd1,0x3e,0xf3,0xbf,0x6c,0x75,0x87,0xd8,0x69,0xf5,0x82,0x63,0x5e,0x31, - 0xdc,0xda,0x7c,0x3a,0xc0,0xdb,0x10,0x6e,0xc0,0xbe,0xf1,0x52,0xf2,0xe7,0x00,0x5f,0x88,0xff,0xcf,0x3d, - 0xba,0x66,0x2e,0x52,0xfd,0xcf,0x9c,0x61,0x77,0xf4,0x35,0xfa,0x61,0x72,0xf7,0x33,0x71,0x3e,0x55,0xd9, - 0x51,0xc6,0x1d,0xdd,0x67,0xb8,0xeb,0x40,0x05,0xb6,0x47,0x93,0x2d,0xc4,0xe9,0x03,0x5b,0xc6,0x61,0xe6, - 0xd8,0xe5,0xf1,0xee,0xb0,0xd0,0x67,0x4b,0x1d,0xa9,0x42,0x1f,0x29,0x7d,0x55,0xc0,0x53,0x19,0x47,0x5b, - 0x2a,0x47,0x44,0x48,0x44,0x8b,0x2d,0xfa,0xe2,0x48,0xd7,0x5b,0x70,0xb0,0xea,0x84,0xd1,0x23,0xee,0x38, - 0xcc,0xfa,0xf1,0x62,0x8d,0xdb,0x86,0xc6,0x1b,0x27,0x61,0x3a,0x70,0x68,0xfd,0xf8,0x05,0x7c,0xa7,0x4f, - 0x67,0x05,0xa2,0xfa,0xed,0xe8,0x4e,0x03,0xab,0x18,0x03,0xcd,0xba,0xf5,0x40,0xd9,0xbd,0x58,0xa9,0x22, - 0x84,0x39,0x42,0xa6,0x7c,0x62,0x96,0xb2,0x78,0x73,0x62,0xc5,0xda,0x57,0x4f,0x58,0xb3,0x68,0xf6,0xc5, - 0x32,0xd0,0xa9,0x0e,0xcf,0xe6,0x94,0xb0,0x32,0x0c,0x27,0xe7,0x14,0x50,0x89,0xc2,0xdb,0xb9,0x39,0x94, - 0x52,0x33,0x7a,0x4e,0x96,0x4e,0x15,0xce,0xcf,0xc9,0x42,0x0a,0x18,0x41,0x27,0x31,0x9b,0xdb,0x3c,0xa1, - 0xdb,0x8b,0x49,0x37,0x6c,0xa2,0x93,0xaf,0x12,0xd7,0x4d,0xf0,0x41,0x30,0xe2,0x4f,0x04,0xea,0xc6,0xb6, - 0x10,0x44,0xb7,0xa8,0xe8,0x7a,0x23,0x88,0x56,0xd6,0x3b,0xd9,0x7d,0xe1,0x1a,0xce,0xcc,0xec,0x62,0x75, - 0xdd,0x2e,0xaa,0x1b,0x18,0xec,0x0f,0x7f,0x35,0xfb,0xce,0x99,0x84,0xef,0x22,0xbd,0x3c,0x47,0xd5,0x1f, - 0xe7,0x50,0xcf,0xb7,0xea,0x9c,0x6f,0xe5,0xcc,0xd7,0xdc,0xc4,0x5d,0x1c,0x83,0x33,0xd7,0x4e,0xa6,0x6f, - 0x23,0xec,0x2a,0xa6,0x82,0xc8,0xab,0x93,0x94,0x8e,0xa4,0x49,0x30,0x34,0xbb,0x66,0xe2,0xed,0x2e,0x55, - 0xdc,0x46,0xb7,0x76,0xbf,0x1f,0xba,0x09,0x12,0xd0,0xb1,0xb7,0x17,0x99,0x64,0x33,0x9c,0xd8,0xdb,0xf1, - 0xac,0x10,0x8d,0xbd,0xbb,0x9d,0x65,0xb6,0x9d,0x32,0xf7,0x3a,0xcb,0x1c,0x1e,0x3a,0x85,0xee,0x77,0x16, - 0x5a,0x79,0x61,0x73,0xa6,0xeb,0x75,0x78,0xf7,0xc1,0x2e,0x2f,0x57,0x9b,0xdd,0xb2,0x57,0x8b,0x59,0x03, - 0xb3,0x08,0xca,0x03,0x5e,0xbd,0x44,0xd4,0x02,0x21,0x48,0xcd,0x48,0x43,0x53,0xa9,0x45,0x4c,0x1b,0x5f, - 0x7f,0xb5,0x94,0x4a,0x1f,0x53,0x7d,0x97,0x6b,0x0f,0xee,0xb6,0x5d,0x81,0xa7,0xc3,0x63,0x6e,0xaa,0x2b, - 0xc4,0xb4,0x5a,0xe5,0xdd,0x48,0x2d,0xa4,0x6a,0x49,0x1f,0x39,0x82,0xb4,0xa1,0xda,0x06,0xb5,0x40,0xfc, - 0xe7,0x81,0x2e,0x27,0x1e,0x06,0xf5,0x0a,0xbb,0x95,0x31,0x06,0xce,0xf8,0x32,0xd2,0xcf,0x11,0x5d,0xe3, - 0x5c,0x77,0x2f,0xc1,0x7e,0xfa,0xa1,0xfa,0x73,0xcb,0xd0,0xe3,0xe3,0xd2,0x2e,0x06,0xe1,0xb6,0x79,0xe6, - 0xf0,0x82,0xcf,0x5c,0x9f,0x4f,0x68,0x1b,0x16,0x27,0xd4,0xae,0x5a,0xaf,0x4f,0xa8,0x20,0x06,0x29,0xba, - 0xca,0xdd,0x4f,0xa9,0xe2,0xd8,0xa9,0xe8,0x9a,0x7a,0xe5,0x7b,0x9b,0xe6,0x92,0xcd,0x35,0x7c,0x7f,0x42, - 0x17,0x8e,0xb1,0x8b,0xee,0xe2,0xc1,0x67,0xd4,0xcc,0xc4,0xf8,0x45,0x57,0x6d,0x6e,0xff,0x4d,0xfb,0x53, - 0x83,0x06,0x62,0x05,0xb7,0xf4,0x6e,0xae,0xbf,0x46,0x47,0x96,0x9c,0x20,0x6d,0xc9,0xa9,0x58,0x02,0x10, - 0x6d,0xe6,0xea,0xfe,0x24,0x5f,0x5a,0xcf,0xe5,0x73,0x29,0xac,0xe6,0x00,0xbb,0x30,0xf4,0xcd,0x33,0x02, - 0xb5,0xd1,0xd0,0x37,0xea,0xbe,0xa6,0xf8,0x10,0xa9,0x95,0xb2,0x51,0xff,0x2e,0xcb,0xf4,0x6c,0x41,0x3d, - 0x91,0x55,0x42,0x71,0xe1,0xa9,0x00,0x5e,0x28,0x61,0x84,0x31,0x64,0x57,0x70,0x70,0x2c,0xeb,0x4d,0x33, - 0x38,0xd8,0x32,0x72,0x47,0x5a,0xcc,0x6f,0x24,0x6c,0xf5,0x93,0x8f,0xcf,0x39,0x5b,0xc6,0xf1,0x2d,0x8a, - 0x71,0x74,0xf0,0x74,0x01,0xff,0x93,0x4a,0x76,0xc1,0xd2,0x6f,0x9a,0x50,0x74,0xef,0xcb,0xf4,0x7e,0x58, - 0xe4,0xbf,0xb8,0x8f,0x04,0x4e,0xa8,0xa2,0xe6,0xc0,0x98,0xfc,0x2a,0xe1,0xc8,0xcb,0xdf,0xdb,0xdd,0xfd, - 0x42,0x30,0x73,0x3a,0xd9,0x21,0xa8,0x2a,0xaa,0x04,0xa1,0xd7,0x87,0xad,0x6b,0xb7,0xd6,0xb0,0x42,0xd0, - 0x8c,0xff,0xfa,0x3b,0xd7,0xdd,0x8c,0xee,0x6b,0xb7,0x31,0x2d,0x4b,0x26,0x8a,0xef,0x1b,0x57,0x96,0x56, - 0x95,0x9f,0x35,0x38,0x60,0xdb,0x5a,0xc4,0xcf,0x4a,0xea,0x7a,0xd3,0x6d,0xbd,0x5a,0xa5,0x5d,0xc2,0x5a, - 0x70,0x84,0x12,0x4f,0xb2,0x21,0xaf,0x15,0x29,0x40,0x53,0x88,0xdb,0x2d,0x90,0xd3,0x10,0xaa,0x04,0x94, - 0x74,0x4d,0xee,0xee,0x06,0xc1,0xda,0xd1,0x6c,0xeb,0x1e,0x1e,0x47,0xe5,0xb3,0x7a,0xf9,0xeb,0xbd,0x86, - 0x4e,0x7d,0x40,0x79,0x47,0x83,0x78,0x45,0xe9,0x16,0x5d,0xef,0x5a,0x24,0x7d,0x3b,0x5e,0x38,0x87,0x0a, - 0xe7,0x55,0xd7,0x6c,0x47,0x4e,0x6c,0x87,0x1b,0x93,0xbb,0xc1,0x39,0xac,0x83,0xa1,0xe6,0x2a,0x2a,0x89, - 0x80,0xa4,0xa5,0x03,0x68,0x7c,0x63,0x9b,0x65,0x3f,0x56,0xa9,0x07,0xf9,0x91,0xbc,0x91,0x0e,0xaf,0xe1, - 0x49,0xca,0x1d,0xb7,0x8d,0x60,0x2d,0xd2,0x05,0x15,0x19,0x78,0x63,0x37,0x4a,0x60,0xde,0xec,0x0a,0x63, - 0xde,0x20,0xd9,0x6f,0x53,0xb7,0x36,0x87,0x17,0x5e,0x35,0xc4,0x2a,0x7b,0xe9,0x3d,0xd1,0x60,0x58,0x44, - 0xd9,0x5f,0x21,0xe0,0xad,0xad,0xbe,0x8e,0x78,0x57,0x9b,0x0e,0x69,0x77,0x53,0x4d,0x72,0xf3,0xf9,0x90, - 0x02,0x02,0x7a,0xcd,0xf7,0xbb,0x9a,0xa0,0xe7,0xab,0x03,0x7a,0xbf,0x8b,0x68,0x67,0x07,0x6f,0x44,0x4a, - 0xd5,0x97,0xd6,0x60,0xc1,0xea,0xbe,0x48,0xe3,0x15,0x39,0x49,0x0b,0x08,0x62,0x77,0xde,0x2f,0x98,0x6f, - 0x93,0x08,0x38,0xd1,0x95,0x36,0x97,0xa8,0xbb,0x0c,0xcf,0x52,0xb0,0x3a,0xc2,0x15,0x0c,0xea,0x77,0xa7, - 0x75,0x6b,0xa5,0x36,0x73,0xca,0x40,0x08,0x74,0xcd,0x2e,0x10,0x40,0xcc,0x49,0x50,0xdb,0xfc,0x68,0xd7, - 0x48,0xf1,0x9d,0x6c,0xb8,0x47,0xa6,0x81,0x9e,0xa7,0x55,0xf9,0xd1,0x0c,0x68,0x68,0x06,0x33,0x4b,0x2a, - 0xf8,0x4c,0x4e,0xaa,0xb0,0x4e,0x22,0x24,0x95,0xe3,0xdf,0x4f,0x96,0x8e,0xb8,0x3b,0xb0,0x61,0xdf,0xda, - 0x2b,0x6e,0xf1,0x5f,0x9f,0x20,0x3d,0xe4,0x70,0x46,0xe6,0x7a,0xb3,0xd8,0xe9,0x61,0x7d,0x7a,0x8d,0x1c, - 0xb0,0x21,0xe9,0xd1,0x44,0x64,0x53,0x18,0xd8,0x2c,0xe6,0x66,0xbb,0x2f,0xb4,0xfa,0x6c,0x35,0x6b,0xb8, - 0x12,0xbf,0x5c,0x8b,0x27,0xe0,0xff,0xb6,0xbb,0x28,0x9d,0x3e,0x62,0x29,0x37,0x8b,0xfe,0x4a,0x4b,0xf4, - 0xe7,0xc8,0xfd,0x4a,0x5b,0x3a,0x67,0x84,0x7e,0x65,0x3d,0x39,0x4c,0xa9,0x6c,0x88,0xf0,0x4a,0xe7,0x45, - 0x8c,0xb2,0x8d,0x58,0x30,0xac,0xc5,0x63,0x91,0x5f,0x0e,0x44,0xbe,0x37,0xda,0x8b,0x76,0x83,0x15,0xfd, - 0x54,0x42,0xbd,0xd1,0x5d,0xf5,0xdb,0x48,0xf2,0x46,0xf7,0x75,0x09,0x25,0xbe,0x1b,0x7d,0xa5,0x12,0x44, - 0x66,0x37,0xda,0xfb,0x52,0xfd,0xd6,0x82,0xba,0xd1,0x3d,0xdd,0x88,0x48,0xe7,0x46,0x5f,0xa2,0x09,0x3a, - 0xba,0x2d,0x1c,0xe3,0x8a,0x82,0xc3,0xea,0xaf,0x4a,0x02,0x1a,0x22,0xbb,0xeb,0x65,0x01,0x74,0xd1,0xd2, - 0xd1,0xb5,0x1f,0xda,0x9b,0x6f,0x47,0x1b,0xb6,0xbe,0xb5,0x83,0xae,0xb8,0xb6,0x96,0xcf,0x12,0x8e,0xa9, - 0x85,0xb2,0x0f,0xee,0x37,0x84,0xaf,0x46,0xc4,0xba,0x55,0x8b,0x54,0xb7,0x6c,0x11,0xea,0x96,0x25,0x32, - 0xdd,0x32,0x22,0xd2,0x2d,0x4b,0x22,0xba,0x65,0x04,0xa0,0x12,0x1b,0x55,0xfc,0x56,0x74,0x4e,0x29,0xbd, - 0x7e,0x4e,0x2a,0x38,0x6e,0x8a,0xe0,0xb8,0x9d,0x3a,0xe1,0x7f,0x4d,0xe0,0xd5,0x14,0x7d,0x86,0x2d,0x71, - 0xe6,0x5f,0xdd,0xfa,0x96,0x68,0xf3,0x66,0x41,0xd0,0xc4,0x95,0x87,0x6e,0xde,0x7e,0x19,0xe1,0xb5,0x00, - 0x60,0x6d,0xf9,0x3c,0xcb,0xa3,0xbb,0xe1,0xc4,0xd8,0xe0,0xee,0xd5,0x3b,0xb3,0xa1,0xbf,0xd6,0xde,0x34, - 0x3b,0x74,0x76,0x07,0x01,0x4c,0x32,0x4a,0x49,0x18,0xdc,0x3b,0x1f,0x76,0x3d,0x6f,0x08,0xb5,0xa6,0x9c, - 0x88,0x8d,0x47,0xf1,0xee,0xc8,0xeb,0x7b,0x91,0xb7,0xed,0x69,0x82,0xdd,0x57,0x24,0x46,0x72,0xbc,0x40, - 0x18,0xf9,0xff,0xf1,0xe5,0xae,0x96,0xf2,0x52,0x05,0x8b,0xf8,0x48,0x77,0xbe,0xdc,0x0d,0x50,0x35,0x2c, - 0x1f,0xee,0xed,0x4a,0x7b,0xde,0xae,0x17,0x84,0xf4,0xb7,0x54,0xc2,0x25,0x5b,0xf3,0xa7,0x1b,0x44,0x3a, - 0x25,0xc7,0x9f,0xfd,0xe2,0x56,0x77,0x13,0x5f,0x89,0xf6,0x35,0x48,0x02,0x5a,0x78,0xd1,0xb7,0x56,0x77, - 0x20,0xff,0xa8,0x95,0x9d,0x55,0xaa,0xfe,0xad,0x55,0xa5,0xf5,0x85,0xc9,0xbf,0xd6,0x9f,0xf9,0xf4,0x28, - 0x84,0x8a,0xc8,0x8a,0x36,0x4c,0x9e,0xf7,0xd2,0x1e,0xb1,0x3c,0x58,0x8b,0xac,0xf2,0x9a,0x2a,0x8d,0x26, - 0x7d,0x7e,0x49,0x5e,0xc0,0x09,0x8b,0x95,0xca,0xd3,0xde,0xe0,0xba,0xdf,0xea,0x73,0x50,0x2f,0xd2,0xc3, - 0xbd,0x35,0xeb,0x9f,0x5f,0xd3,0x08,0xdd,0xb5,0xbb,0x71,0x7c,0x4d,0x1b,0x81,0x0e,0x60,0x61,0x67,0xf3, - 0x6a,0x3f,0xdc,0x1b,0x75,0x67,0xc4,0x7b,0x51,0x77,0xc6,0xa3,0xbd,0x2f,0xb5,0xe6,0x68,0x47,0xa5,0x2f, - 0xd5,0xe3,0xba,0x9d,0x25,0x3b,0xa5,0x09,0x9f,0xee,0x9a,0xc1,0xa6,0x5a,0xea,0xec,0x6c,0xa8,0x35,0x04, - 0xe9,0x0e,0x2f,0x32,0xfe,0xf0,0xfa,0x6e,0x1f,0x76,0x37,0x30,0xdc,0xd8,0xaf,0x20,0x09,0xd1,0x92,0xdc, - 0x65,0xb5,0x48,0xe8,0x69,0x12,0xdb,0x70,0xcd,0x32,0xf7,0xfb,0xe1,0xdd,0x6b,0xf7,0x41,0x45,0x93,0x6d, - 0x82,0x12,0x40,0xc5,0xaa,0xf0,0x89,0xac,0xa3,0xd5,0xc0,0x6a,0x05,0x18,0x65,0x86,0x71,0x6c,0xa7,0x3a, - 0x4c,0x64,0x53,0xbd,0xc7,0x62,0xea,0x5a,0x9a,0x3f,0xd7,0xb3,0x76,0x8d,0xa1,0x3b,0x6c,0xe5,0xcd,0x18, - 0x45,0x14,0x38,0xdc,0xa1,0x76,0x8f,0xe5,0xcf,0xb0,0x9d,0x5d,0x63,0x0b,0x3b,0xda,0xb6,0x59,0xd0,0x0e, - 0xc5,0xa7,0x0d,0x0c,0x15,0xf1,0x0d,0x82,0xb1,0xd2,0x36,0x2c,0xd5,0x88,0xcb,0xcd,0x6c,0xe2,0xaf,0xb4, - 0x03,0xdc,0xfe,0x3a,0x0f,0x66,0xcd,0xe1,0xba,0xdb,0xd3,0x59,0x01,0xb9,0x48,0xe5,0x6e,0x7b,0x53,0xab, - 0x61,0x7e,0xae,0xf6,0xc8,0xf8,0x8c,0x0d,0x71,0x76,0xa4,0xa1,0xae,0xbb,0x41,0xab,0x8b,0x0c,0x2c,0xed, - 0x4f,0x7e,0xa2,0x58,0x18,0xa9,0xa3,0xea,0x9c,0x07,0xf5,0x89,0x6c,0x4c,0x97,0x79,0x10,0x90,0x3b,0x54, - 0x28,0xcf,0xe7,0x4b,0xe8,0xee,0x5d,0x11,0x06,0xfe,0xb9,0xb6,0x35,0x6b,0x23,0x5e,0x1c,0x10,0x85,0xbd, - 0x9b,0x03,0x5c,0xad,0xee,0x5e,0x97,0x79,0xef,0xba,0x4c,0x3b,0xa3,0x1e,0xa7,0x5c,0xfe,0xb5,0x53,0xa6, - 0x86,0x48,0xbd,0x39,0x16,0xf6,0x0f,0xed,0x04,0x84,0x15,0xe5,0x63,0xc4,0x3f,0xf3,0x89,0x83,0xff,0xa2, - 0x55,0x38,0x84,0x42,0x33,0xf5,0xf1,0x7d,0xb1,0x2c,0x39,0x44,0x07,0x2e,0xfc,0x3e,0x27,0xbd,0x10,0x2f, - 0xa6,0x94,0x58,0x72,0xa2,0x45,0x28,0x18,0x6a,0xa2,0xd9,0x9e,0x28,0xed,0x82,0x8c,0xc0,0x7f,0x61,0x56, - 0x57,0xbc,0xbe,0x34,0x91,0x24,0x61,0x12,0x6f,0x28,0x60,0x53,0x34,0xfd,0x52,0xeb,0x3d,0x6e,0xdf,0x65, - 0x52,0xa5,0x9f,0x59,0x09,0x26,0x56,0x12,0xe7,0xe4,0x4e,0xd1,0x9e,0xef,0xf5,0x93,0xbe,0xc7,0x7e,0xc3, - 0x94,0x7a,0xba,0xd1,0x08,0x6d,0x6b,0xa8,0x9b,0x1b,0xba,0x16,0x9a,0x00,0x39,0xc0,0xff,0x00,0x48,0xef, - 0x86,0x02,0xe9,0xe7,0xd7,0x5f,0x7c,0x5e,0xbf,0x4a,0xa7,0xdc,0xea,0xdf,0x68,0x5c,0xdb,0x08,0xa0,0x4b, - 0x4f,0x34,0xf6,0xfe,0x46,0x1b,0xda,0xb0,0x70,0xdb,0xd4,0x6f,0xfb,0x4e,0xb1,0x7a,0x87,0x46,0xfb,0xfa, - 0xff,0x03,0xc7,0x33,0x1e,0x13,0xde,0x24,0x02,0x00}; + 0x7d,0x45,0xd5,0x82,0x21,0x4d,0xe8,0x55,0x67,0xd6,0x8a,0x5a,0x5a,0xfd,0xed,0x6b,0x2e,0xf1,0x8c,0x07, + 0x0c,0xcd,0x07,0x77,0x9c,0xdf,0x24,0xdd,0xa4,0x05,0x61,0x99,0x67,0x89,0xf8,0x50,0x38,0x64,0x39,0x4b, + 0x05,0xcf,0x45,0xe1,0x7b,0xac,0xef,0x3f,0x56,0xff,0xba,0xd8,0x2e,0xf2,0x68,0x27,0x7c,0x8d,0x9f,0x17, + 0xdb,0x2b,0x24,0xd1,0xcf,0xe7,0xf4,0xd3,0x1f,0x7c,0x41,0x17,0xea,0xa2,0x4f,0xa3,0xc9,0xf2,0x55,0x31, + 0xe5,0xef,0xc1,0x17,0xc1,0x4e,0xf8,0x13,0xe5,0x86,0x04,0x57,0x21,0x5d,0xb7,0x47,0x04,0x65,0x54,0xc2, + 0xfe,0x19,0x8c,0x6e,0xed,0x84,0xdf,0x32,0x54,0xf8,0xab,0xc3,0xe0,0x16,0x0d,0xfa,0x65,0xc2,0xe6,0x61, + 0x5f,0xd0,0x8f,0xf0,0x05,0x72,0x22,0xf4,0xcc,0xa2,0xe7,0x9d,0xf0,0x67,0x4a,0x38,0x1c,0x1c,0xfc,0x6b, + 0x70,0xd4,0xa7,0xa2,0x4f,0x92,0x4e,0xe3,0x1d,0xff,0x87,0x2c,0xfe,0x21,0xbb,0xc1,0x50,0x29,0xa8,0xb5, + 0x21,0xe2,0x34,0xfc,0x21,0xb3,0x8d,0x13,0xe9,0x12,0xfe,0x15,0x3d,0x7f,0x38,0x9f,0xe5,0x8b,0xe8,0xe5, + 0x9b,0xc3,0x49,0x7f,0x27,0x7c,0x8b,0x14,0xfe,0xa6,0x71,0xfc,0x92,0xc4,0x07,0xbf,0x65,0x74,0xe7,0x84, + 0x57,0xb4,0xbc,0xfb,0xd7,0xdc,0x2d,0x22,0x4b,0xd2,0x5e,0x25,0xe4,0x69,0x48,0xb3,0x30,0xfc,0xb8,0xff, + 0x22,0x99,0xb3,0x48,0xf6,0xc0,0xbb,0xd8,0xe6,0xc7,0x14,0xef,0x08,0xd2,0x59,0xfc,0xe4,0x49,0x83,0x20, + 0xf4,0x8e,0x56,0x2b,0x4a,0x51,0xdf,0x5a,0x35,0x54,0xdd,0x36,0x9c,0x08,0xcf,0x5d,0x72,0x73,0x5d,0x6c, + 0x67,0x53,0xd9,0xe6,0x24,0xce,0x46,0x1e,0xb5,0x45,0xa7,0x12,0x87,0x32,0x22,0x16,0xb1,0x88,0x85,0x26, + 0xd7,0x45,0xf1,0x9c,0xab,0xec,0x96,0x9d,0x34,0xd3,0xc6,0x38,0xfe,0x8d,0x29,0xf2,0x7f,0x56,0xec,0x2b, + 0x8b,0xb5,0x8d,0xb8,0xc3,0x50,0x5c,0x67,0x1c,0x17,0x1f,0xa8,0xef,0xef,0x90,0x0e,0xa5,0x7d,0xd0,0xb0, + 0x63,0x42,0xd0,0x8a,0xdc,0x1b,0x64,0x53,0xc2,0x11,0x5e,0xbf,0xa4,0xfe,0x69,0xfa,0x77,0x74,0x95,0x3b, + 0x74,0xc8,0xc3,0xdf,0x51,0xe9,0x2a,0xfd,0x30,0x8f,0x50,0x4e,0xf0,0x77,0x34,0x56,0xe7,0x71,0xa6,0xfa, + 0xa5,0x41,0xcd,0x30,0x28,0x5a,0x5d,0x19,0x50,0xc5,0x09,0x6a,0x08,0x65,0x32,0xc9,0x0a,0xe9,0x7f,0x86, + 0xfe,0xeb,0x26,0xed,0x5e,0xb9,0x14,0x77,0x29,0x7d,0xcc,0x54,0x1f,0x4b,0xd5,0x87,0xf6,0x59,0x54,0xf9, + 0xcb,0x66,0x57,0x94,0x20,0x8b,0x0e,0xe3,0x87,0xef,0xf0,0xdb,0xe9,0x25,0x53,0x2d,0x2e,0xe1,0x1e,0x7f, + 0x34,0x1e,0x60,0xe9,0x10,0x8a,0x0e,0x94,0x8e,0xfc,0xa2,0x05,0x80,0x13,0x6a,0x70,0x76,0x47,0xe1,0xf7, + 0x84,0x19,0xa8,0x1a,0x71,0x0c,0x00,0x3b,0xc8,0xef,0xf5,0x0b,0xf7,0x2f,0x49,0x58,0xb3,0x12,0x91,0x7a, + 0x54,0xbb,0xe9,0x19,0xcd,0x7e,0x43,0x4d,0x04,0xb6,0xd8,0xbb,0x9f,0x06,0x2b,0x7e,0x7b,0x15,0xf7,0x86, + 0x86,0x17,0x31,0x32,0xf4,0x4a,0x29,0x73,0x85,0x2a,0xb4,0x6e,0xfd,0x7e,0x99,0x04,0x5b,0xdd,0x3d,0xdf, + 0x61,0x15,0x81,0x5b,0xda,0x03,0xc7,0xdb,0x64,0xd6,0x8b,0x7b,0x8d,0xc8,0xea,0xea,0x49,0x41,0x1e,0x31, + 0x6f,0xb1,0x03,0x59,0x15,0xb1,0xd1,0x3c,0x68,0x9a,0xc6,0x0b,0x83,0x78,0xe0,0x26,0x48,0x1a,0x5d,0x07, + 0x78,0x03,0xf5,0xed,0x32,0xe8,0xf5,0x82,0xfb,0xf2,0xde,0x89,0xbb,0x17,0xa8,0x04,0x15,0xbd,0x11,0x55, + 0x93,0x84,0x5e,0x44,0x9f,0xea,0xe9,0x4d,0x1a,0xbc,0xd3,0xf7,0x39,0x06,0x83,0xd8,0xd1,0x8f,0xbc,0x77, + 0xb9,0x4f,0xf9,0x38,0x03,0xf4,0x07,0x42,0x22,0x02,0x01,0x6f,0x98,0xdb,0x2f,0x9a,0x50,0xa0,0xef,0x7b, + 0x3d,0xaf,0x5f,0x54,0x08,0x75,0xe3,0x8e,0x5d,0x3f,0xaa,0x52,0xa7,0xee,0x02,0x44,0xee,0x6f,0xc2,0x97, + 0x5e,0x60,0xb8,0x22,0x36,0xdb,0xa9,0x6d,0x42,0x6b,0x3c,0x90,0x10,0x86,0x35,0xc7,0x87,0x7e,0x17,0x9b, + 0x96,0xdc,0x9a,0x04,0x6d,0xb1,0x9c,0x77,0x59,0x83,0x60,0xb5,0xf2,0xd0,0x0f,0xce,0xb4,0xc2,0x03,0xe5, + 0x32,0xdd,0xae,0x33,0xf1,0xd3,0xa3,0x63,0x2d,0x99,0xd3,0x04,0xa7,0xba,0xce,0xe5,0xdf,0xde,0xf0,0x3f, + 0x52,0x59,0x01,0x71,0x82,0x13,0x7a,0xae,0x29,0x89,0xd7,0x27,0x36,0x25,0x18,0xbd,0xcb,0xe4,0x2b,0xa4, + 0x23,0xd4,0x67,0x3e,0xdc,0xeb,0xfb,0xd2,0x3e,0xc6,0x3e,0xf2,0x22,0x55,0x92,0x96,0x37,0x7a,0xf7,0x6f, + 0x53,0xb8,0x40,0x12,0x31,0x79,0xee,0x32,0x7b,0x02,0x45,0x74,0xff,0x72,0xb1,0x5b,0xe0,0x5e,0x9d,0xc5, + 0xa6,0xa4,0x71,0x8c,0xe4,0x81,0x1a,0xd7,0xc8,0x97,0xb6,0xd0,0x0d,0x71,0x08,0x1d,0xc6,0xb0,0xd4,0x9c, + 0x42,0x8a,0xb7,0x6e,0x5d,0x50,0xc3,0xbe,0x6c,0xb9,0x8c,0xd7,0x8b,0x92,0x80,0x3b,0xca,0x62,0x9a,0x09, + 0x15,0xa5,0xcf,0x0b,0x6e,0xc4,0xee,0x24,0xb8,0xa2,0x02,0x0f,0x77,0x19,0x5d,0xd2,0xb8,0x68,0x00,0x89, + 0xd6,0x0a,0x39,0xa0,0xf2,0x47,0x81,0xe8,0xbe,0xa0,0x14,0x2d,0x80,0x53,0x4c,0xbb,0x7f,0xa1,0xac,0x40, + 0xd7,0xa9,0xd3,0x29,0xb5,0xbf,0x07,0x3d,0x02,0xa9,0x6f,0xe0,0xeb,0xd6,0x98,0xe1,0xd0,0xfb,0x34,0x68, + 0x11,0x4c,0xf7,0x17,0x41,0xa5,0xb5,0xdd,0xd6,0x66,0xf9,0x54,0xa7,0xb5,0x68,0x08,0xdd,0xe0,0xee,0x1e, + 0x0f,0x3e,0xf9,0x14,0x10,0x07,0x08,0x5a,0x3a,0x21,0x1b,0xb1,0x4a,0x03,0x5f,0x11,0x5e,0x63,0xff,0xf1, + 0xb8,0xbd,0x24,0x6a,0x30,0xfc,0x6e,0xab,0x79,0x21,0x00,0x12,0xec,0xb8,0xe9,0x5a,0xda,0x92,0x55,0xc1, + 0xa0,0xa0,0xdb,0x17,0xce,0xe2,0x64,0xa4,0x47,0x19,0xa9,0x0c,0xe8,0xa0,0x11,0xf4,0x46,0x6a,0x54,0xe1, + 0x32,0x6e,0x1c,0x6b,0x59,0x9f,0x21,0xd0,0x75,0x77,0x9e,0xb2,0x1a,0x87,0xc7,0x12,0x29,0xc3,0x0b,0xb4, + 0xe4,0x95,0x19,0xca,0x9b,0x15,0xaf,0xc8,0x32,0x18,0x8e,0xa9,0x00,0xdd,0x76,0x00,0x2b,0xa7,0x1d,0xa5, + 0x67,0x62,0x1e,0x29,0x87,0x5e,0x7f,0x1a,0x84,0xb2,0x13,0xd2,0x7f,0xe8,0xe9,0xf3,0xa3,0x56,0x7b,0x16, + 0x4e,0x6b,0xc9,0x8a,0xbf,0x58,0xad,0xa0,0x30,0x2d,0xfb,0x70,0x3c,0x5b,0xd2,0xed,0xe4,0xb9,0x4f,0x57, + 0x9e,0x36,0x17,0xac,0x37,0x62,0xeb,0x59,0xee,0x8a,0x09,0xfd,0x24,0xe8,0xc4,0xfd,0xe6,0x15,0x96,0x69, + 0xc4,0x16,0x63,0x7c,0x21,0x1a,0x0c,0x32,0x5c,0x8b,0x44,0x02,0xf0,0x2c,0x30,0x6c,0x29,0xc1,0x83,0x5f, + 0x33,0xcf,0x73,0x7d,0x13,0x86,0xe8,0xea,0x6c,0x60,0x4d,0x8c,0xe5,0x6b,0xa2,0xa7,0x92,0x2e,0x97,0x14, + 0x20,0x64,0x95,0x03,0x2e,0x08,0x2b,0x89,0x2b,0x42,0x39,0xe2,0x58,0x2d,0x39,0x69,0xf4,0x7b,0x09,0x87, + 0x3b,0x4f,0xd2,0x9f,0xd2,0x69,0xf5,0x6a,0x9e,0xe6,0x28,0x42,0xfc,0x96,0xb3,0x14,0xd1,0x22,0x0b,0x1b, + 0xb2,0xd0,0xe8,0xe7,0x34,0xb4,0x84,0x07,0xbf,0xc0,0x3f,0xc4,0x64,0x39,0xee,0x56,0xb9,0xe1,0x58,0x8e, + 0x7c,0xca,0x75,0x80,0x2c,0x1d,0xf2,0x2f,0x60,0x8f,0x10,0x83,0xf7,0x45,0x46,0x60,0x12,0x62,0x45,0xfe, + 0xe8,0x26,0x51,0x7b,0x70,0xf4,0x02,0x68,0xc7,0x9d,0xcd,0xf0,0x0f,0xc9,0x7a,0xa8,0x4f,0x42,0x48,0xbc, + 0x4b,0x96,0x2b,0x77,0x1e,0xa1,0x79,0x18,0x93,0xe8,0x42,0x7d,0x3f,0x1d,0xe1,0xc4,0xa6,0xf0,0x8c,0x0a, + 0x81,0xd1,0x8f,0x86,0xe5,0x3b,0xbc,0xbc,0xf5,0xee,0xa8,0xbf,0x3a,0x24,0x0a,0x3b,0x38,0xfa,0x62,0x74, + 0x18,0x80,0xdd,0x8b,0x1f,0xad,0xfe,0xa5,0x47,0x40,0x3f,0x0f,0xfd,0x9d,0xf0,0xdf,0xaa,0xc6,0x01,0xb1, + 0x75,0xc4,0xdc,0xbd,0xbb,0x75,0x84,0xaa,0x47,0xe0,0x0c,0x89,0xba,0x6e,0x24,0xae,0x0e,0x0f,0xee,0x10, + 0x7d,0x7f,0xe7,0x88,0x3e,0x3c,0xfa,0xf0,0xf0,0x41,0x64,0x30,0xfe,0x34,0xcb,0x1e,0x05,0x5f,0x50,0xb3, + 0x44,0xb9,0xff,0x00,0x52,0x67,0x31,0x8e,0xee,0xfe,0x1d,0xce,0x8c,0xa2,0xaf,0x45,0xcd,0x22,0xda,0xbb, + 0x17,0xca,0x7a,0xdf,0xbb,0x1b,0x2e,0xe7,0xd1,0xbd,0xaf,0x88,0x43,0x9e,0x56,0xd1,0xbd,0xbf,0x87,0x25, + 0x5e,0x4f,0xa2,0x7b,0x5f,0x87,0xf0,0x82,0x1d,0xdd,0xdf,0x0d,0xe5,0x01,0x33,0x3a,0xf8,0x2a,0xbc,0xff, + 0x25,0x31,0x21,0xdf,0x25,0x5d,0x7e,0xb9,0x80,0x72,0xfa,0x00,0x1e,0xcb,0x67,0xd6,0x90,0xd8,0xa6,0x7f, + 0x26,0x10,0x06,0x11,0x3c,0xe8,0x43,0x8d,0x1f,0x00,0x90,0xe4,0x24,0x11,0x11,0xe2,0x10,0x1a,0x15,0x9c, + 0x67,0xca,0xa8,0xdf,0xcf,0xe4,0xc1,0x91,0x8b,0x20,0x2e,0x59,0xf4,0x5d,0xe2,0xbb,0xb8,0xa1,0x47,0x18, + 0xa7,0xa7,0x52,0xc6,0xcb,0x12,0x9b,0xb4,0xcf,0x19,0x74,0x80,0xc7,0x55,0x39,0xe3,0x1a,0x5b,0xba,0x00, + 0x25,0xfc,0x08,0x0d,0xdd,0x90,0x7d,0x87,0x3a,0x79,0x9c,0x22,0x99,0xc9,0xcc,0xcd,0xa2,0xdf,0x92,0x01, + 0x79,0x81,0x93,0x83,0x04,0xc9,0xe2,0xb5,0x43,0xd6,0x1d,0xf1,0x0a,0x75,0x07,0x84,0x91,0x94,0xea,0xdd, + 0xbe,0xad,0x47,0x28,0x79,0x3c,0xe6,0x5d,0xb4,0x97,0x4d,0x26,0xb3,0xf4,0xb3,0xaa,0xed,0x41,0xae,0xc0, + 0xfb,0xf3,0x39,0xb5,0xee,0x02,0xfe,0x7f,0xa7,0x8d,0x20,0xae,0xb1,0xe9,0x8f,0x05,0x6e,0xe0,0xea,0xa8, + 0x76,0x1d,0x1b,0xfb,0xee,0x44,0x36,0x36,0x74,0x30,0xc4,0x1a,0xde,0x4a,0xf2,0xb6,0x1f,0x1c,0x34,0xc7, + 0xe1,0xf3,0x6a,0x6b,0xa1,0xba,0xa5,0x63,0x6a,0x29,0xa7,0x96,0xee,0x40,0xfe,0x45,0xe7,0xad,0x0f,0xe6, + 0xbb,0x6e,0x15,0x77,0x9f,0x45,0x49,0xc3,0xd1,0x51,0xad,0x8e,0x88,0xc7,0xb0,0x91,0x90,0x3a,0x91,0xa2, + 0x99,0x82,0x6b,0x8a,0x73,0xf4,0x69,0x2f,0x54,0xe5,0xbd,0x40,0x8d,0x79,0x3c,0x2b,0x92,0x33,0xc4,0xd5, + 0xfd,0x2d,0x69,0x7b,0x3d,0x2d,0x8c,0xb3,0x4c,0xfe,0x09,0x49,0x24,0xdd,0x89,0xf8,0xb3,0x5a,0xfd,0xae, + 0x12,0x8d,0xf0,0x72,0x11,0xff,0x06,0x31,0xbc,0x56,0x4c,0xf7,0x4c,0xc6,0x53,0xe2,0x18,0xb4,0x07,0x77, + 0xbc,0x33,0x7e,0x97,0xe6,0x88,0xe0,0xe7,0x96,0x56,0x52,0x47,0x53,0xce,0x70,0x1c,0xf1,0x85,0xcf,0x8a, + 0x16,0xbf,0x27,0x6c,0x1a,0x6d,0xd2,0x03,0x13,0xbd,0xcb,0x41,0xa0,0xab,0xd5,0x9b,0x7c,0xa8,0x7c,0x23, + 0x7f,0x3c,0x4e,0x4d,0x20,0xc6,0x8e,0x8d,0xdc,0x32,0x66,0xbc,0xca,0x3f,0x66,0x3e,0x4e,0x9f,0xc3,0x5a, + 0x8b,0x7f,0x35,0x03,0x0e,0xc2,0x47,0xf7,0x7f,0x24,0xb1,0x6f,0x0b,0x85,0x0e,0x0f,0x8f,0xbd,0xbe,0x37, + 0x29,0x42,0xe2,0x11,0x69,0xa6,0x04,0xf4,0x15,0x02,0xea,0xd2,0x22,0x7f,0x64,0xc7,0x6c,0x63,0x08,0xff, + 0x70,0xed,0x85,0x97,0x59,0x75,0x1a,0x26,0x97,0x49,0x56,0x85,0x6c,0x18,0x10,0xb2,0x0f,0x74,0xa5,0x3c, + 0xcf,0xcf,0x40,0x21,0x3b,0x2e,0x0d,0x39,0x2e,0x7d,0x78,0x49,0x68,0x35,0x0d,0x3f,0x42,0xea,0xa7,0x90, + 0x4d,0x48,0xcc,0x59,0x01,0x6f,0x87,0xec,0x89,0x25,0x94,0x19,0x68,0x0f,0x60,0xda,0xef,0xa2,0xb8,0x0b, + 0x25,0x36,0x46,0x42,0xd4,0xb3,0x13,0xb4,0x2c,0x5f,0xc2,0x75,0xcf,0xf1,0xf2,0xe4,0x04,0x62,0x42,0xb5, + 0x0a,0x75,0xd0,0x15,0x4f,0xf9,0xa9,0xc1,0x9d,0xa0,0x6e,0x07,0x9a,0xd6,0x0a,0x53,0x0b,0xfa,0x3c,0x43, + 0x09,0x12,0xdc,0x98,0xb3,0x0c,0x4a,0xfc,0x8e,0xb2,0x02,0x7b,0x67,0x3b,0x84,0xd2,0x81,0xf0,0x0f,0x0f, + 0x09,0xe5,0xd3,0x3f,0x75,0xab,0x8d,0x0c,0xea,0xc3,0x7f,0xda,0x94,0xfc,0x88,0x28,0x62,0xa3,0xd5,0x28, + 0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7,0xf1,0xd6,0x5e,0x10,0x7e,0x4c,0xd4,0x7e,0xb2,0x81,0x18,0x24,0xdc, + 0x56,0xc4,0x96,0x61,0xfe,0xf0,0x24,0xb1,0x9d,0xb3,0x9c,0x24,0x6c,0x87,0x8b,0x97,0x9c,0x79,0x12,0x57, + 0x35,0x54,0x7f,0xc4,0x2f,0x7d,0xd7,0x03,0x9c,0xc2,0x63,0xa4,0x58,0x37,0x39,0x27,0xbe,0x43,0x62,0xe3, + 0xaa,0xe6,0x8c,0x8b,0x04,0xa0,0x5d,0x75,0x1c,0x84,0x97,0x72,0x10,0xce,0x9b,0x05,0x9a,0x62,0x1a,0x2a, + 0x73,0xd2,0x2a,0x53,0x2c,0xaa,0x66,0xa1,0x53,0x0c,0x81,0x76,0x22,0x3b,0xcf,0x2a,0x04,0x44,0x54,0x46, + 0xb9,0x44,0x9e,0xb2,0xf2,0xc9,0xd6,0x1e,0xeb,0x7a,0x22,0xc6,0x39,0x4e,0xc7,0xaf,0xa7,0x54,0x8a,0x87, + 0x19,0x62,0xbd,0x40,0xa7,0xee,0xb5,0x2c,0x33,0x9a,0x8b,0x4c,0xbf,0x96,0x7d,0xbc,0xe0,0x41,0xad,0x75, + 0x79,0x2c,0x6f,0x0b,0xbe,0x6d,0x35,0x5d,0x6a,0x3f,0x02,0xac,0x7f,0x17,0x2e,0xea,0xf8,0xf5,0xa2,0xc9, + 0xb7,0x0c,0xd4,0xdb,0x1b,0x9e,0x1b,0x4a,0xfc,0x94,0x1d,0x6b,0x3c,0xc8,0x52,0x32,0xab,0xfa,0x67,0x71, + 0x51,0x07,0xb5,0xcf,0x1e,0xc5,0xc4,0xf5,0x14,0x08,0x05,0x33,0xd3,0x45,0x71,0xc8,0x69,0x5e,0x0b,0x84, + 0x54,0xd3,0x34,0x65,0xcc,0xcf,0xbe,0x28,0x6d,0x19,0x60,0xda,0x0d,0x8d,0x1f,0xc5,0xd9,0x70,0x4c,0x15, + 0xaa,0x01,0x7b,0x59,0xe1,0x3f,0xec,0x6f,0x9d,0x25,0x13,0x18,0xff,0x50,0x17,0x8f,0xb1,0x80,0x19,0x77, + 0xbb,0xbd,0xc7,0xf9,0xcc,0x1d,0x79,0xc7,0x25,0x28,0xbc,0xc5,0x88,0x09,0xab,0x92,0x9d,0xd6,0xf3,0x07, + 0xcd,0x9f,0x96,0x7b,0x6b,0x57,0x3c,0x23,0x78,0x73,0x2e,0xc5,0x71,0x70,0x3b,0xcb,0xed,0x71,0xb9,0xd0, + 0x19,0x88,0xac,0x20,0x2d,0xaa,0x76,0x8e,0x00,0x4f,0x27,0xd8,0x44,0x28,0xa3,0xd7,0x52,0x19,0xda,0xb2, + 0x6a,0x50,0xd3,0x97,0x0c,0x6d,0x33,0xbc,0x38,0x37,0xa8,0x4a,0xce,0x58,0xd2,0xa2,0xa4,0x43,0x16,0xf2, + 0x65,0x84,0xc0,0x89,0x25,0x79,0x93,0xf8,0x89,0x51,0x67,0x83,0x5d,0x6a,0xd2,0x78,0x13,0x9f,0xc7,0x1f, + 0x92,0x83,0x09,0x42,0x44,0xf1,0x5f,0x47,0xfe,0x4d,0x04,0xdc,0xe1,0xe2,0xf0,0xf0,0x0d,0x91,0x6e,0x81, + 0xff,0x70,0xc7,0xeb,0x4f,0xb4,0x20,0x3c,0xa0,0x13,0x9f,0x81,0x97,0x86,0x75,0x96,0x16,0x6d,0xcf,0x6d, + 0x99,0x36,0x83,0x87,0x86,0x34,0x63,0x09,0x1b,0xd2,0x78,0x26,0xcc,0xff,0x29,0xbf,0x93,0x58,0x38,0x8e, + 0x8d,0x1c,0xd7,0x0e,0xa8,0x76,0x20,0x46,0xa7,0xbe,0x17,0xd2,0xf3,0xf6,0xf6,0xa3,0x9d,0x13,0x62,0x31, + 0xe8,0xd6,0xb7,0x8b,0x1c,0x1e,0x3c,0x7d,0xf6,0x78,0xff,0xf1,0xe1,0x41,0x5d,0xf2,0xe8,0xc8,0x94,0x84, + 0x50,0xd9,0x9f,0x84,0xe2,0x76,0x19,0xfa,0x2c,0xca,0x67,0x13,0x87,0xd1,0x3b,0x4d,0xe4,0xa2,0xe4,0x0f, + 0x28,0x41,0x78,0x90,0xbf,0x10,0xcc,0x6b,0x1d,0x9d,0xed,0x53,0x3d,0xde,0x34,0x3e,0x0d,0x4b,0x6a,0x68, + 0xb9,0x3d,0x45,0x24,0x6a,0x63,0x87,0x74,0x11,0x5b,0xca,0x00,0x0f,0x45,0x06,0x00,0x35,0xcc,0x0b,0x5e, + 0xfc,0x65,0xa2,0x23,0x6a,0x69,0x0b,0x32,0x5b,0x75,0x60,0xfb,0xf0,0xc3,0xbd,0x54,0xaa,0x9c,0x33,0xf8, + 0x56,0x2a,0x3c,0x23,0x22,0x55,0x28,0x15,0x44,0x15,0x1e,0x41,0x39,0x2c,0xa9,0x4f,0xe1,0xfd,0x10,0xb6, + 0xb6,0xb9,0x7f,0xde,0xbf,0x47,0x2c,0x9e,0x42,0xf5,0x6b,0xe8,0x75,0x4d,0x1b,0x7d,0x9e,0xd8,0x7d,0x1e, + 0x3d,0x92,0xfe,0x4e,0xb8,0xbf,0xdc,0x3f,0xe9,0xdf,0xb5,0xab,0xa3,0x3c,0x34,0xa4,0xd9,0x3d,0xad,0x3f, + 0x13,0x95,0xc3,0x8f,0x28,0xf8,0x11,0x6f,0xcb,0x3a,0xa0,0xa1,0xa9,0x80,0xf2,0xc7,0xa6,0xfc,0x58,0xca, + 0x1f,0x4b,0xbf,0xef,0xe2,0xe5,0x30,0xf7,0x8f,0xad,0x7a,0xb4,0x80,0xc7,0x07,0x7b,0x47,0xe1,0x3b,0x66, + 0x4b,0xed,0x36,0x2e,0x9b,0xb1,0x52,0x2a,0xd3,0x68,0x21,0x8d,0x9a,0xc8,0x7f,0x57,0xda,0xe3,0x5f,0x85, + 0xa6,0x98,0xf3,0x88,0x70,0x58,0x70,0xca,0xa2,0xe5,0x9a,0xba,0xac,0xec,0xa1,0x5a,0xa7,0x6a,0xb8,0x85, + 0xc3,0xa0,0x9a,0x5d,0x24,0x6c,0xfc,0x91,0x98,0x84,0x92,0x12,0x86,0x41,0xee,0x27,0xce,0x80,0x95,0xff, + 0x48,0x1d,0x88,0x13,0xe7,0xa9,0xb6,0xc1,0x5c,0xe2,0x2c,0xbe,0xa1,0x5b,0x9c,0xd0,0x06,0x06,0x93,0xfb, + 0x99,0x5b,0x19,0xbe,0xcf,0x97,0x61,0xb9,0x5e,0xfb,0x62,0x35,0x15,0x5c,0xb5,0x42,0x2d,0xe4,0xb1,0x71, + 0x53,0xc8,0x56,0x17,0x75,0x9b,0xcc,0xfd,0x0b,0x46,0x81,0x66,0xbe,0xb8,0x0e,0x2f,0x69,0x14,0xe1,0x8c, + 0x3f,0x13,0x71,0x00,0x5d,0xf2,0x03,0xb9,0x9e,0xe6,0x32,0x1e,0xb3,0xb7,0x86,0xad,0xad,0x8c,0x7d,0xf0, + 0xc8,0xf0,0x15,0x0c,0x4f,0xf8,0x50,0x8b,0x64,0x6a,0x8a,0x13,0xbf,0x3b,0x9c,0x3f,0x9c,0x0e,0xe7,0x5a, + 0xc9,0xef,0x54,0x57,0x38,0x98,0x1f,0x0d,0x27,0xd4,0xe9,0x36,0xac,0xe5,0x4e,0x31,0x27,0x0d,0x40,0x77, + 0x3c,0xef,0x0e,0xd6,0x8d,0xdf,0xa8,0x4e,0x0f,0xee,0x1d,0xdd,0xbe,0xad,0x14,0x3a,0xf1,0x23,0x54,0xc9, + 0xf7,0xed,0xe4,0xfb,0x26,0xf9,0x81,0x9d,0xfc,0x40,0x59,0x13,0x5e,0x70,0x33,0xab,0x15,0x0a,0xe2,0xdf, + 0x07,0xf4,0xaf,0xe7,0x85,0xe7,0xb1,0x97,0x68,0x17,0xd7,0x70,0xdf,0x2c,0x2d,0xec,0x1d,0x8d,0xf4,0x19, + 0x79,0x96,0xc2,0xa5,0xee,0xcb,0xf4,0x12,0x2e,0x51,0x17,0xdf,0x16,0xe5,0xf7,0x54,0x2a,0xea,0xce,0x1d, + 0x4e,0x68,0x46,0x4a,0x77,0x1d,0x8d,0x84,0x4c,0x62,0x47,0xff,0xae,0xfc,0x0b,0x3a,0x46,0xeb,0xf5,0x92, + 0x55,0x9f,0x79,0x93,0x59,0x81,0x95,0x30,0xab,0x7d,0xe3,0x44,0x79,0x03,0x57,0x0a,0xd4,0x4d,0xe0,0x91, + 0x3e,0xe6,0xb8,0x08,0x0d,0x64,0x9f,0xc3,0x96,0x8c,0x9f,0xbc,0xe9,0x17,0x3c,0xda,0xe4,0x93,0x60,0x4d, + 0xdb,0x0f,0x5c,0x94,0x84,0x29,0xbb,0x5e,0xd8,0x6b,0x9e,0xbb,0x7d,0x6d,0x32,0x7e,0xa6,0x3f,0x9e,0xaa, + 0x0f,0xc0,0xce,0x85,0xb9,0xdf,0xce,0x8c,0x63,0xe7,0x8b,0x80,0x40,0x7a,0xac,0x8e,0xfb,0x19,0xdc,0xb8, + 0x5a,0xdf,0x4b,0xeb,0x7b,0x6a,0x7d,0xfb,0x4f,0xe3,0x33,0x1b,0x63,0x85,0x84,0x0b,0x1f,0xee,0x12,0xe8, + 0x5f,0xf4,0xe3,0xa7,0xa1,0xd3,0xf8,0xbe,0x73,0xef,0xef,0x86,0x17,0x40,0x38,0x17,0xc1,0xfa,0x82,0xc5, + 0x91,0x94,0x4b,0x58,0x11,0x96,0xe3,0x06,0x93,0xee,0xd7,0xc8,0x74,0x9f,0x75,0x4c,0x53,0x51,0x53,0x6e, + 0xa1,0xda,0x54,0x9b,0xc8,0xae,0x4b,0x9f,0x65,0x44,0x12,0x25,0x64,0x9e,0x84,0xd6,0x33,0x84,0x73,0xfb, + 0x59,0x92,0x15,0xfb,0x1a,0xec,0x10,0xaa,0xb4,0x6e,0xc4,0xb0,0x0b,0x24,0x36,0x40,0x4a,0x67,0xd9,0xeb, + 0x81,0x4b,0xe5,0x86,0x2d,0xd4,0x1d,0x19,0xcc,0xbd,0x50,0xe8,0xc9,0xba,0x16,0x0b,0x58,0xbf,0xca,0x89, + 0x15,0x01,0xe9,0x62,0xb5,0x7a,0x87,0x37,0xce,0xe1,0x4b,0x80,0x3c,0x5c,0x66,0xd3,0xda,0x2d,0xa1,0x0a, + 0xef,0x70,0x2f,0xb5,0xb2,0x33,0x21,0x3d,0x21,0x6d,0x53,0x9b,0xb2,0xd5,0xc2,0x4b,0xc4,0x47,0xfd,0x35, + 0xd1,0xba,0x93,0xb9,0xd2,0x99,0x94,0xaf,0x58,0xfe,0x98,0x4b,0xf4,0x6d,0x12,0xca,0x36,0xf2,0x09,0x00, + 0x2d,0x62,0x62,0xe8,0x41,0xb9,0x5c,0xc9,0x13,0x7f,0xa8,0x78,0xd8,0x19,0x5d,0x90,0x90,0x28,0xd2,0x88, + 0x41,0xcf,0x6d,0x29,0x07,0xfa,0xec,0x51,0x71,0x12,0x4f,0x03,0x51,0x66,0xd6,0xcf,0xd1,0x48,0x9e,0x88, + 0xf2,0xf5,0xc4,0x95,0xa7,0xd2,0x24,0x21,0xb6,0xdb,0x79,0x9f,0x5c,0x24,0x76,0x59,0xa7,0x10,0x8d,0x19, + 0x31,0x6a,0x03,0xee,0x90,0xa6,0x7e,0xcc,0x9e,0xe0,0x39,0x10,0xa5,0x5e,0x88,0x89,0xc2,0x63,0xe7,0x86, + 0xc0,0x07,0x3e,0x9b,0xc6,0xe7,0x09,0x9d,0x79,0x7f,0x4a,0x24,0x2d,0xc1,0x3f,0x2b,0x06,0xd2,0xfc,0xcf, + 0xe3,0x69,0x68,0x1e,0x1a,0xcf,0xf1,0xa8,0x06,0xd9,0x1d,0x9a,0x3f,0x07,0xa9,0xcc,0xa6,0x06,0xd3,0x9a, + 0xaf,0xd8,0x0d,0x98,0xb1,0x98,0x5a,0x8c,0x05,0x5e,0x24,0x3b,0xa3,0x17,0x1b,0x61,0x99,0x71,0x77,0x69, + 0x47,0x69,0x34,0xaf,0xaa,0x16,0x0a,0xae,0xb4,0x1f,0x9a,0x8a,0x23,0x78,0xc2,0x4b,0x8f,0xc2,0x51,0x56, + 0x6b,0x94,0x28,0x71,0x49,0x04,0x65,0x35,0x94,0x7c,0x1a,0x05,0x25,0x2c,0xe9,0x5a,0x7b,0xd4,0xa4,0x79, + 0xb0,0xae,0x1d,0x0b,0xed,0x24,0x2a,0xf6,0x34,0x88,0xa6,0xf5,0x5b,0x28,0xe5,0xfe,0x13,0xc6,0xfc,0x1d, + 0x91,0x4a,0xad,0x37,0x5b,0x75,0xff,0xa6,0x78,0x34,0xad,0xf0,0xc8,0x98,0xca,0x23,0x63,0xa5,0x1e,0x19, + 0xd3,0xb5,0x32,0xb2,0xee,0x78,0xc2,0x15,0x5d,0x66,0xf5,0xfc,0xa8,0x63,0x27,0x36,0x1f,0x74,0xb5,0x36, + 0x93,0x7a,0x97,0x84,0x43,0x5d,0x0c,0xea,0xc2,0xde,0xac,0x0b,0x54,0x00,0x93,0xce,0x4d,0x5e,0x30,0xbf, + 0xce,0xbb,0xf1,0x5d,0xc5,0x9b,0x4c,0x6b,0x39,0xd2,0x10,0xb0,0x5a,0x95,0x34,0x56,0x86,0x19,0x69,0x92, + 0x20,0x80,0xbf,0xa8,0x2a,0x0d,0xbf,0x94,0xe1,0xeb,0x4c,0x35,0x8b,0xe9,0x3a,0x88,0x4a,0xea,0x91,0x4e, + 0xe3,0x96,0x05,0x6b,0x30,0x11,0x6a,0x35,0xb3,0x75,0x3d,0xaf,0x6a,0x9f,0x52,0x73,0x38,0x39,0xbe,0x9e, + 0xb6,0x40,0x4f,0x39,0xb4,0x1e,0x00,0x5c,0x4b,0x6e,0x29,0x01,0x41,0x61,0x8b,0x39,0x4c,0x7f,0xfd,0xda, + 0xc9,0x0d,0xaf,0x4d,0xce,0xd3,0xf9,0x1d,0x17,0x0b,0x0f,0x3d,0x75,0x87,0x0e,0x8b,0x0c,0x5a,0x30,0x23, + 0x63,0x9f,0x0e,0x60,0xa1,0xc0,0x4e,0xbf,0x38,0x8a,0xb8,0x6c,0xff,0xde,0x50,0xee,0x78,0xc9,0x15,0xb9, + 0xe0,0x6a,0x75,0xc7,0x53,0xf2,0x03,0xef,0xce,0x90,0xba,0x75,0x82,0xbd,0xb9,0xbf,0xd9,0x8c,0xe0,0xe0, + 0xf4,0x28,0x9e,0x8a,0xb1,0x75,0x3d,0x46,0xc1,0x1b,0x53,0x3e,0x3a,0x12,0x96,0x2d,0x93,0xab,0x3d,0x3c, + 0x1f,0xce,0x46,0x39,0x80,0x8e,0x28,0xaf,0x69,0x98,0xe8,0x82,0x88,0x33,0x96,0x77,0xe8,0xd5,0x27,0x07, + 0x89,0x61,0xdb,0x8e,0xc2,0xca,0x72,0x8f,0x75,0xd0,0xf2,0x89,0x45,0x25,0x10,0x7c,0xf9,0x1e,0xb4,0x41, + 0x34,0x42,0xe9,0x79,0xf2,0x8b,0xdd,0x29,0x6c,0x8d,0xa1,0x69,0x5d,0x8f,0x11,0x4b,0x1b,0x9a,0xf6,0xe3, + 0x3d,0x22,0xb7,0xdc,0xfe,0x72,0x71,0xb8,0x8d,0x0b,0xca,0x91,0xf2,0xeb,0xe0,0x62,0x2f,0x73,0xfb,0xe9, + 0x48,0x3c,0x9a,0x00,0xb1,0x65,0x35,0xce,0x9a,0xd7,0xee,0x38,0x60,0xda,0x1d,0x98,0xd3,0xe4,0x38,0xff, + 0x48,0xe3,0x31,0x02,0x3f,0xca,0x13,0xce,0xc8,0x47,0xa8,0x4d,0xaf,0xe6,0x82,0x4a,0x6d,0xab,0xc2,0x68, + 0x55,0x27,0x8c,0xd2,0xe8,0x49,0xc2,0x6e,0xfd,0x0a,0x5c,0xa3,0x32,0xea,0x11,0xcd,0x18,0xe2,0x3c,0xe5, + 0xf1,0x6d,0x6b,0xc1,0x6b,0xb0,0xc5,0xbe,0xfb,0xfc,0xa6,0xf4,0x44,0xa0,0xf4,0x34,0x19,0xfd,0x9e,0xf9, + 0xa7,0x49,0x10,0x7d,0x97,0x31,0xb7,0x5e,0x33,0x0b,0xc6,0xf9,0x5b,0x68,0xb1,0xa0,0xf4,0xcf,0x18,0x2e, + 0x7c,0x93,0x45,0xf5,0x1c,0x44,0x03,0x10,0x16,0xc7,0xf3,0x49,0xc7,0xb8,0xac,0x82,0x2b,0xda,0xd9,0x52, + 0xe8,0x89,0xe0,0x11,0x9e,0x9a,0x34,0xb1,0x6c,0x08,0x89,0x31,0xac,0x74,0x43,0x45,0x5e,0x35,0xf0,0x57, + 0xa2,0x35,0x14,0x67,0xf1,0x3f,0x53,0xdf,0x76,0x87,0x3c,0x54,0x15,0xe4,0x31,0x66,0x26,0x8f,0x50,0xaa, + 0xed,0x2b,0xef,0x1f,0xc7,0xa2,0x29,0xe8,0x41,0x67,0x82,0x06,0x98,0xf5,0xcb,0x9a,0xf2,0xd6,0xb7,0xd7, + 0xf8,0x61,0x6d,0x6a,0xd1,0x31,0xac,0x6b,0x07,0xc5,0xe7,0x0c,0x1a,0x7d,0x30,0x48,0x2a,0x94,0x48,0x0b, + 0x7a,0x89,0x55,0x71,0x96,0xe6,0x8b,0x68,0xb1,0xe6,0xc8,0x40,0xc1,0xa8,0xd2,0x64,0x23,0xac,0x40,0xef, + 0x86,0x56,0x2d,0x2c,0x92,0xfe,0xa1,0xab,0x81,0x90,0xc4,0x87,0xbc,0x69,0xd1,0xb9,0x8d,0x04,0x66,0xd3, + 0x7a,0x4f,0x0d,0x18,0x1f,0x54,0x35,0x6c,0x32,0x48,0x43,0x69,0xdc,0xea,0xec,0x9e,0x69,0x44,0xe8,0xc7, + 0x92,0x0d,0xc2,0x5b,0x6e,0xe2,0x9b,0xc7,0xd4,0xad,0x1c,0x1a,0x5b,0xb7,0x68,0x6b,0x97,0xcd,0x23,0x88, + 0x5d,0xf1,0x35,0x6c,0x22,0x8e,0xb1,0x12,0x24,0x41,0x1a,0x7c,0x9e,0xfd,0x91,0xb2,0x1c,0x87,0x4d,0xa1, + 0x42,0xc8,0x74,0x2e,0x93,0xf8,0x8f,0x04,0x78,0xc2,0x7a,0x6e,0x02,0x2d,0xb1,0x8f,0x57,0xd2,0x96,0x6c, + 0xd6,0xdc,0x33,0x30,0xe1,0x11,0x57,0x32,0xaa,0x66,0x4c,0x77,0x6b,0x15,0xde,0xa5,0xae,0xc6,0xea,0x30, + 0xfb,0x38,0xd9,0xf2,0x83,0xd8,0x19,0x7f,0x6b,0xac,0xae,0xe5,0x31,0x2c,0x13,0x94,0xa2,0x28,0x75,0x06, + 0x15,0x1d,0xfc,0x3b,0x45,0xe4,0xaf,0x93,0xdc,0x67,0x63,0x2a,0x30,0x40,0xfb,0x89,0xf9,0x6e,0x9b,0x80, + 0x1a,0x03,0x50,0x56,0x83,0xd2,0x71,0x21,0x94,0x57,0x68,0xe3,0x3a,0x88,0xab,0x3b,0x96,0x04,0xe8,0xa6, + 0xb6,0x0f,0x35,0x3e,0x63,0x08,0x98,0xa8,0x47,0x65,0x54,0x86,0x30,0x82,0x94,0x30,0x40,0xa0,0x98,0x8f, + 0xb4,0x40,0x01,0xfe,0x17,0xee,0x19,0x3c,0x25,0x56,0x0b,0x34,0xbc,0x4a,0x91,0x15,0x1e,0xf0,0x31,0x47, + 0x05,0xaa,0x0d,0xc1,0xf0,0x43,0x63,0x95,0x03,0x2f,0xcb,0x41,0x69,0x6e,0x9b,0x71,0x6a,0xab,0x05,0x5b, + 0xc6,0xc9,0xf1,0x43,0x9b,0x7e,0x03,0x75,0x78,0x6a,0x6d,0x1f,0x5b,0xe3,0x53,0x22,0x0f,0xe1,0x77,0x25, + 0xd4,0x5b,0x07,0x83,0x25,0xbd,0x17,0x5b,0x7b,0x4c,0xbc,0x13,0x9d,0x3d,0x7d,0x5a,0xd0,0x42,0xf3,0x3b, + 0x40,0x1d,0x70,0x9a,0x50,0x67,0x11,0xbb,0x99,0xba,0xbf,0xe4,0x61,0x51,0x7b,0xd6,0x5a,0x34,0x0a,0xc1, + 0x93,0x12,0x5f,0x58,0xd4,0x33,0xac,0xe2,0x36,0xf4,0xcc,0xc0,0x3c,0x5e,0x13,0x1d,0xea,0x80,0x8b,0xf2, + 0x67,0xd0,0x58,0x47,0x53,0x15,0x87,0xa3,0x10,0xef,0x7f,0x26,0xed,0x79,0x4e,0xb4,0xb9,0x61,0xd0,0x28, + 0x41,0x18,0x10,0x67,0x89,0xa8,0xb8,0x00,0x78,0x23,0x7d,0xb5,0xba,0xe7,0x24,0xb3,0xdb,0x76,0x76,0x19, + 0xa1,0xb0,0x0b,0x58,0x33,0xd3,0x13,0xfc,0x11,0x33,0x81,0x63,0x81,0xb4,0xa4,0xed,0x85,0x75,0x1b,0x8d, + 0x18,0xee,0xed,0xed,0xd2,0xc1,0xdc,0x21,0xfc,0xb5,0x5c,0x3d,0x86,0x39,0x18,0xfa,0x8a,0x81,0x6f,0xf8, + 0xd7,0x36,0x26,0xf5,0x37,0xec,0x09,0x87,0x31,0x80,0x5b,0xa8,0x3d,0xa3,0x34,0xce,0xc2,0xe4,0x3c,0x67, + 0xc3,0x23,0x25,0x2b,0xbe,0xa2,0x6b,0x80,0xb8,0x63,0x65,0x84,0x99,0xe8,0xd0,0xb5,0x8d,0xe7,0x12,0xca, + 0x68,0xa4,0xac,0xdd,0x60,0x7f,0x66,0x5f,0x2b,0xdf,0x52,0xb8,0x70,0x8d,0x32,0x53,0x68,0x0e,0xb2,0x69, + 0xa5,0xb8,0x03,0x2a,0xe5,0x05,0xca,0xbd,0xd3,0xfc,0x6a,0x94,0x44,0x59,0xa0,0x1d,0xa1,0xae,0xd1,0x58, + 0xae,0xe5,0xe6,0xec,0xc8,0x47,0x7d,0xc7,0xf5,0x73,0x13,0xbf,0x87,0xeb,0x87,0x72,0x53,0x18,0xc2,0x34, + 0xc7,0x7c,0x19,0x3e,0x23,0xed,0x77,0xa8,0xc6,0xe8,0xac,0xcc,0xd5,0x4a,0x0c,0x48,0xed,0xfa,0x96,0x48, + 0x06,0x51,0x6c,0x7b,0x79,0xe0,0xa9,0x8e,0x70,0xd0,0xe9,0x0a,0xaf,0x23,0xba,0xe9,0x14,0xba,0xfe,0x0a, + 0x78,0xc4,0x2f,0x8e,0xc4,0x15,0xd0,0x22,0x7e,0x9a,0x70,0xf8,0x73,0x2d,0xa7,0x5f,0x0c,0xd2,0xb2,0x2c, + 0x88,0x85,0xc8,0xe8,0xec,0x54,0xd9,0x7c,0x11,0x27,0xe1,0x42,0x21,0xa1,0x2b,0x68,0x73,0x64,0xb3,0x34, + 0xaa,0x42,0xf5,0xb5,0x5f,0x7c,0xab,0x96,0x6a,0xd1,0xa1,0xcd,0xdf,0x61,0x00,0xdb,0x7a,0x0e,0x50,0x3e, + 0x14,0x08,0xdf,0xf3,0x1b,0x1c,0xf1,0x85,0xbc,0x05,0xea,0x4d,0xaa,0x57,0xd6,0xc6,0x09,0xf0,0x59,0x55, + 0x3f,0x45,0x8c,0x94,0x51,0x92,0x9d,0x16,0xf4,0xe9,0x42,0x64,0xd8,0x85,0xe7,0x34,0xcd,0x5e,0xc2,0xf1, + 0x9e,0x58,0xd3,0xc3,0x2d,0x5e,0x09,0x65,0x4f,0x58,0x55,0x63,0xc7,0xcd,0x9c,0x95,0x7d,0xd0,0x1c,0x51, + 0x17,0x15,0xb8,0x8d,0x6b,0xe4,0x51,0x3f,0xd1,0x15,0xcd,0x14,0x57,0x5f,0xaf,0xd6,0x70,0x98,0x03,0x76, + 0xc6,0xd0,0x4f,0x40,0xff,0x31,0xc1,0x26,0x9e,0x34,0xd6,0x81,0xff,0x7d,0x12,0x0c,0xda,0x8b,0x17,0x84, + 0x69,0x11,0x6f,0x6d,0xc1,0x93,0xfd,0x69,0xee,0xe3,0xa9,0xa9,0xb2,0x7f,0xc3,0xc4,0xa8,0xe8,0xb4,0xc6, + 0x61,0x93,0x21,0x63,0x75,0x07,0xd4,0x63,0x74,0x4c,0x70,0xcb,0x16,0x71,0x87,0x65,0x95,0x2e,0x7e,0xb3, + 0xd1,0x15,0x70,0x1f,0x1b,0x27,0x71,0x37,0x50,0x27,0x75,0x6c,0x3f,0x89,0xbe,0xb4,0x93,0xf4,0x87,0x8e, + 0xc2,0xdc,0x8e,0x2c,0xea,0x84,0x1c,0x67,0xb7,0x06,0xb9,0x5a,0x6e,0x7d,0x3c,0x41,0x29,0xca,0xfd,0xc3, + 0xc7,0x31,0x60,0xe5,0x4c,0xde,0xe9,0x3a,0x06,0x61,0x19,0x78,0x7f,0x13,0x92,0xd5,0x44,0x4d,0x10,0x82, + 0xa1,0x80,0x58,0xc1,0xb8,0xe2,0xda,0xb2,0x3c,0x77,0xd9,0x43,0x29,0x99,0x94,0xd4,0x8b,0x24,0x5c,0x2c, + 0xd7,0x6f,0x99,0xac,0x16,0xcb,0xca,0xf1,0x18,0xd7,0xb3,0x92,0xae,0xb7,0xe2,0x13,0x2d,0x6b,0xb3,0x2f, + 0x0d,0x77,0xd2,0xb5,0xf1,0x26,0x33,0xff,0xf6,0x9e,0x61,0x99,0x65,0xe6,0xea,0x36,0xfd,0x8f,0x04,0xac, + 0x64,0xa7,0x70,0x29,0x2d,0xae,0x17,0x24,0x15,0x61,0x7d,0x34,0xa2,0xdc,0x3a,0x27,0x9a,0x84,0x43,0xaa, + 0xfe,0x5c,0xab,0x48,0xef,0x20,0xa9,0xd4,0x09,0x80,0xea,0x59,0x03,0xdc,0x87,0x7a,0xbf,0x08,0x2b,0xe4, + 0xed,0xd3,0x61,0x4c,0xf6,0xcb,0x42,0x74,0x60,0xc5,0xbc,0x4d,0xdb,0xb2,0x29,0xb8,0xa7,0x39,0xd1,0xaf, + 0x75,0xd0,0x30,0x4a,0xf0,0x24,0x7e,0x98,0x15,0x1c,0x96,0xdf,0xa3,0xc1,0x6e,0x2c,0x73,0x89,0xee,0x38, + 0x21,0x2c,0xa6,0x32,0x05,0xd1,0x8d,0xe4,0xcf,0x40,0x15,0x8d,0x2b,0xbf,0x33,0xcc,0xac,0xd4,0x86,0x5c, + 0x18,0x7f,0x07,0xc9,0xf9,0x64,0x24,0x9f,0x74,0x28,0x89,0xcf,0x7d,0xbb,0x4c,0x9f,0xef,0x7d,0x95,0xa3, + 0xf6,0xba,0x11,0x84,0x9a,0x86,0xb5,0x24,0x00,0x01,0x08,0xd2,0xd0,0x86,0x16,0xad,0x20,0x63,0xee,0x18, + 0x19,0xde,0xda,0x0b,0xb6,0x59,0x52,0x5f,0x8c,0xc2,0x7c,0xef,0xe0,0x62,0x99,0x6e,0x67,0xd4,0xcf,0x51, + 0xcf,0xeb,0xc3,0xcd,0xf6,0xed,0xdb,0x4e,0x01,0xbe,0xd2,0xc7,0x67,0xb6,0xa3,0xed,0xaa,0x11,0x10,0x4f, + 0x98,0xae,0xf6,0x42,0xd5,0x35,0x6c,0x1c,0x74,0xa1,0x9c,0x29,0xe1,0xdc,0x9e,0x3b,0xcf,0xa9,0x8d,0x28, + 0x7b,0x08,0xb3,0x67,0x62,0x4b,0x58,0x8d,0x65,0x76,0x7c,0x70,0x11,0x05,0x9a,0x47,0x7d,0x43,0xfc,0x41, + 0xe2,0x00,0x41,0x60,0x9d,0x05,0xb2,0x4f,0x9d,0x66,0xa8,0xf1,0x65,0xfc,0x47,0x9f,0x05,0x16,0x4c,0x68, + 0xce,0xb2,0x62,0x83,0x74,0x22,0x6b,0x5d,0x85,0x56,0x4e,0x1c,0x65,0x6c,0x6a,0x18,0xb5,0x8e,0x7f,0xca, + 0xa1,0xe6,0xe1,0x30,0x19,0xc5,0xa2,0xbb,0x56,0x83,0x2c,0x12,0xbc,0xb6,0x78,0xe8,0xa3,0xcf,0xbd,0xae, + 0x3e,0x29,0x11,0x78,0x24,0x8b,0xe5,0x33,0xbc,0x22,0x8a,0x25,0xa1,0xcb,0xae,0x14,0xfb,0xa4,0x45,0x94, + 0x59,0xde,0x40,0x93,0xda,0x88,0x1b,0x3b,0xa2,0x3a,0x35,0x30,0x90,0x3a,0x2a,0x59,0x5a,0x36,0xa7,0xd4, + 0x17,0x56,0x96,0x4d,0xe4,0xc1,0x06,0x3b,0xd7,0x34,0x46,0xa0,0xc2,0x41,0x72,0x0c,0x31,0x76,0x88,0x39, + 0x56,0x23,0xb8,0xf2,0x0e,0x46,0xf9,0xa3,0xbd,0xd1,0x5e,0xb4,0x1b,0xed,0x45,0xe9,0x88,0xcb,0x9c,0x67, + 0xa8,0x7a,0x37,0x88,0x76,0x75,0x38,0x55,0xf8,0xdd,0x52,0xef,0x43,0x47,0xa3,0x9c,0xa5,0x40,0xcc,0x69, + 0x45,0xd6,0xde,0x16,0x16,0x14,0x30,0x6b,0xca,0x61,0xbf,0x9b,0x5c,0xaa,0xe3,0xf6,0x7d,0x61,0x0b,0x9d, + 0x2c,0x50,0x08,0x35,0x55,0x25,0xe4,0xd4,0x1e,0x62,0xf0,0x34,0xc1,0x24,0xd3,0xf4,0x7a,0x22,0xe1,0x78, + 0xf0,0xd8,0xa0,0xa3,0x95,0x24,0xda,0x2d,0x45,0x6c,0x62,0x6a,0xa8,0x27,0x09,0x74,0xc6,0x94,0x4d,0x12, + 0x8c,0x09,0xe3,0xcc,0xe2,0x22,0x3c,0x11,0xa0,0x86,0x9f,0x46,0xf6,0x3e,0x9a,0x80,0x94,0x19,0x31,0x55, + 0xb3,0x60,0xe2,0x26,0xe4,0x94,0x88,0x53,0xf8,0x53,0xd1,0xfa,0xa1,0x01,0xc1,0xd2,0x0d,0x51,0xc0,0xc4, + 0xe1,0x92,0x1d,0x6c,0xc3,0xc9,0xb3,0x72,0x07,0x67,0x8a,0xcc,0x6a,0xf7,0xbe,0x4b,0x56,0xf7,0x85,0xc8, + 0xaf,0x43,0xe6,0x51,0x69,0x57,0x67,0xb5,0x05,0xe3,0x3b,0x81,0x20,0xf6,0x8a,0x76,0x0b,0x27,0x7f,0x20, + 0x09,0x6b,0xd5,0x8e,0x85,0x4d,0xf8,0x01,0x1b,0x92,0x12,0xdc,0x6b,0xb5,0xa9,0xb9,0xe2,0xa8,0x7c,0x76, + 0x0c,0x09,0x4f,0x81,0x7c,0x69,0x66,0x44,0xa9,0x27,0xba,0x10,0x44,0x89,0x78,0x7a,0x17,0x72,0x28,0x0f, + 0x6a,0xef,0x3c,0x54,0xba,0x2a,0x3f,0xaa,0x15,0x6d,0xc6,0x4f,0x22,0x2a,0xc8,0x4d,0x92,0xb6,0x89,0x44, + 0x5c,0x18,0xd8,0xd5,0xea,0x0a,0xb1,0x79,0x51,0x87,0x94,0x50,0x58,0x4e,0xb3,0x04,0x76,0x34,0x62,0x70, + 0x50,0x25,0x47,0x66,0x96,0xc6,0x56,0xab,0x45,0xcd,0xda,0x8a,0xca,0x84,0xcd,0xbf,0xe6,0xf0,0xf5,0x63, + 0x27,0xd4,0x64,0xe8,0xb8,0xee,0x7b,0x66,0xfa,0x1e,0xb7,0xfa,0xb6,0x7a,0x06,0x9c,0x6b,0x57,0x70,0x6b, + 0xd6,0x7d,0xaa,0xd5,0xe0,0x88,0x7b,0x5e,0x13,0x15,0x2e,0xa6,0x23,0xb9,0xf1,0x4d,0x06,0xae,0xbd,0xd6, + 0x8c,0xd0,0x9b,0xb1,0xb4,0xd9,0x85,0xbc,0xb9,0xab,0xe5,0x68,0x8b,0x08,0x0b,0xde,0x4d,0x88,0xbd,0x7d, + 0x2f,0x2f,0x2a,0xba,0xa9,0xb2,0x45,0xd5,0x53,0xd7,0x48,0x2f,0x53,0x9e,0x7e,0x00,0xb8,0x94,0x66,0x7e, + 0x7b,0x50,0x39,0x66,0x0f,0xd3,0x6e,0x25,0xb7,0x02,0xe8,0x82,0x9e,0xea,0x54,0x6a,0xd8,0x81,0x25,0x2a, + 0x81,0x44,0x39,0x49,0x2d,0x72,0x10,0x99,0x26,0x90,0x61,0x13,0x0f,0x8e,0xaa,0x38,0x45,0xd0,0x12,0x3e, + 0x37,0x2c,0x7f,0xa8,0x4e,0x43,0x68,0xa0,0x0b,0x50,0xf2,0xc3,0x30,0x9d,0x5b,0xa2,0x01,0xae,0x90,0x45, + 0x44,0xbe,0x41,0x80,0x48,0x06,0xfa,0x23,0x6a,0x5b,0xa4,0xff,0x44,0x1b,0x24,0xd2,0x00,0xf1,0x07,0xba, + 0x01,0x3a,0xa2,0xdc,0x80,0xde,0xfa,0xd5,0x6a,0xcc,0x91,0x65,0x74,0xd4,0x96,0xcc,0xac,0x65,0x35,0x78, + 0x77,0x51,0x29,0x19,0xaa,0x0e,0x89,0xe7,0x2f,0x69,0xa7,0x79,0x5d,0x83,0x41,0xa5,0x02,0x98,0x2c,0x43, + 0x3a,0xc0,0x9a,0x8b,0x6a,0x1f,0xba,0xd2,0xa2,0xe1,0xd9,0xcb,0xaa,0x89,0x1c,0x4f,0x53,0x6c,0xc6,0x05, + 0x81,0x6f,0xf9,0x0a,0x18,0x5e,0x15,0xab,0x58,0x08,0x45,0xb4,0x50,0xc0,0x24,0x98,0x3e,0xab,0x33,0xe7, + 0xa4,0x8a,0xa5,0x94,0x22,0x12,0x7d,0x4f,0x07,0xe8,0xed,0xfd,0x27,0xe6,0xfe,0x9f,0xd8,0xaf,0x8b,0xed, + 0xaa,0x57,0xc7,0xcd,0x56,0xe2,0x71,0xb5,0xc3,0x8b,0xe5,0x1c,0x64,0x49,0x4f,0xcc,0x74,0xc4,0x52,0xcd, + 0x09,0xe8,0xc1,0x47,0xbe,0xbe,0x79,0x85,0xc7,0xc3,0x97,0x3a,0x35,0x1e,0x6d,0x9c,0x67,0xb4,0x10,0x41, + 0xed,0x42,0xd3,0x91,0x29,0xde,0xa1,0x28,0xe6,0xe1,0x08,0x40,0x07,0xb0,0xf7,0xf5,0x5e,0x24,0x7f,0xef, + 0xc9,0xdf,0xfb,0x5f,0xca,0xdf,0x7b,0xf7,0xd5,0xdf,0xaf,0x55,0xfa,0x57,0x91,0x09,0x40,0x26,0x15,0x1e, + 0xa8,0x02,0xaa,0xc2,0xfd,0x07,0x91,0x56,0x2f,0x9e,0x40,0xd5,0x5d,0x4a,0xdd,0xbb,0xab,0x9a,0x97,0x3f, + 0x7b,0xbb,0xea,0xaf,0xea,0x6d,0xef,0x4b,0x95,0xf0,0xe5,0x83,0xbb,0x7f,0x57,0x65,0xbe,0xba,0xab,0x2b, + 0xd1,0xd7,0x3d,0xdd,0xe8,0xe5,0xc2,0x33,0x0f,0x7f,0x8f,0xe2,0xaf,0xff,0x4e,0x2c,0xcb,0xc3,0x78,0xef, + 0xee,0xdd,0xd5,0x8a,0x7e,0x7e,0xf9,0x80,0x7f,0x7e,0xbd,0x3b,0x52,0x9d,0x47,0x94,0x78,0xff,0x6b,0x4e, + 0x7c,0xf0,0xf7,0x91,0x27,0x86,0x10,0x5e,0xe4,0xf1,0xb3,0x4f,0x47,0x40,0x12,0x2c,0x93,0xdc,0x75,0x0a, + 0x2e,0x7c,0x6f,0xd7,0xdb,0xb2,0x82,0x17,0xef,0x42,0x86,0x96,0x2d,0x5e,0x26,0x2f,0x25,0x28,0x1b,0x21, + 0xdc,0x2a,0xfc,0x56,0x47,0xab,0xeb,0x7c,0x73,0x73,0x97,0x5d,0x8f,0xdd,0x34,0xaa,0xb2,0x8c,0x32,0xcf, + 0x1e,0xf5,0x70,0xef,0x3e,0xc4,0x3a,0xb7,0x6f,0xdf,0xfb,0x1a,0x7f,0x47,0x78,0x6b,0x53,0x2a,0x41,0x21, + 0xe5,0x83,0x15,0x8c,0xbc,0x2f,0xbc,0x7e,0xa5,0x03,0xa0,0x8b,0x7f,0xab,0x0b,0x8d,0x0b,0x6b,0xae,0x4c, + 0xfb,0xde,0x80,0xa6,0xc2,0x81,0x90,0x7d,0x3d,0xe5,0x29,0xcf,0x0b,0x4f,0xda,0xe5,0x4f,0x93,0xc5,0xab, + 0xcb,0x5c,0x07,0xda,0x0b,0x3f,0xc6,0x5d,0x04,0xea,0xf3,0xbc,0x9a,0x59,0xc1,0xc2,0xf0,0x73,0xf0,0x0c, + 0x91,0x6d,0xb2,0xf3,0x94,0x98,0x87,0xf3,0xa4,0x0a,0x8f,0x3f,0xb9,0xa2,0x78,0xf1,0x53,0xd5,0xde,0xc5, + 0x57,0xe2,0x58,0xe3,0x69,0x23,0x48,0xa5,0xe3,0xd3,0xc8,0x66,0x00,0xd3,0x01,0x4e,0x5b,0x2c,0x7f,0xf8, + 0x1d,0xf1,0xdd,0x3b,0x7c,0x8e,0xae,0xd6,0x91,0x8e,0x48,0xc4,0x38,0xe1,0xca,0x14,0x36,0xe8,0x92,0x46, + 0xf4,0x42,0xa5,0x4b,0xa5,0x40,0x5f,0x77,0x08,0xb4,0x38,0xd4,0xa9,0x9d,0x4e,0x6f,0x2a,0xa2,0x16,0xaa, + 0xd0,0x22,0x7c,0x52,0x36,0x26,0xb0,0x2f,0xa3,0xaa,0x23,0x02,0xa3,0x84,0x34,0x45,0xa3,0xec,0x3b,0xf8, + 0x27,0x46,0x12,0x2f,0xd2,0xc5,0x22,0x39,0xc1,0x1d,0x5e,0xc9,0xdd,0xa7,0xae,0x1f,0xea,0x46,0x3c,0x4e, + 0xbd,0xb3,0xe6,0x18,0xd6,0x29,0xbf,0xa2,0x54,0xaa,0x3c,0x82,0xc9,0x50,0x2f,0x91,0x84,0x4b,0x04,0x9a, + 0xca,0x7e,0x60,0x15,0x66,0x1d,0x89,0x71,0x99,0x1d,0xa7,0xc8,0x7a,0x0a,0x53,0x1f,0xd6,0x93,0x64,0xa6, + 0x4d,0x8a,0xe9,0x12,0xe2,0x0c,0x6e,0x5d,0xc7,0xe3,0x50,0x4b,0x28,0xb2,0x70,0xde,0x81,0xb2,0x28,0x2a, + 0x1d,0xe4,0x1e,0xdf,0x82,0xf4,0xda,0x29,0xce,0x5a,0xf3,0xf3,0x29,0x8f,0x05,0x05,0xe2,0x66,0x59,0xb5, + 0x53,0x83,0x29,0xd1,0x67,0xc7,0xc4,0xc8,0xc8,0xe2,0xb4,0x8a,0x35,0xf2,0x75,0xad,0x05,0x31,0x86,0xb9, + 0xe8,0x9f,0xce,0xd8,0x48,0xe1,0x57,0x08,0xe2,0x5a,0x95,0x3b,0x8b,0xb1,0xa3,0x5e,0x17,0x02,0xca,0x1b, + 0x21,0xa0,0x04,0xbd,0xd8,0x86,0x00,0xb3,0xbd,0xbc,0xa7,0x8b,0xb8,0xec,0xde,0x4c,0x3c,0xb0,0xbf,0xd0, + 0x0b,0xfb,0xdf,0xb6,0xa7,0xa1,0x75,0x59,0xa8,0x65,0xfb,0x98,0xf3,0x33,0x9f,0xf9,0xc1,0xb7,0xbb,0xf8, + 0x05,0xe4,0xf5,0x75,0x06,0x74,0xab,0x1e,0x90,0xac,0xbe,0xaf,0x2d,0xf3,0x7a,0x7f,0x01,0x2e,0x46,0xbe, + 0xb5,0x30,0x2d,0xa8,0xf8,0x0b,0xd3,0x05,0x6f,0x2e,0xaf,0x24,0x78,0x64,0x55,0x01,0x16,0xd4,0x88,0xdc, + 0xdf,0x4d,0x38,0x75,0x8e,0x9d,0x5d,0xf0,0x2f,0x0d,0x47,0xfb,0x81,0x7b,0xd6,0x0c,0x53,0xab,0x1d,0xc1, + 0xc9,0xd0,0xfc,0x56,0x65,0x67,0x44,0x83,0x65,0x7e,0x5d,0xcf,0x4a,0xf0,0xd9,0x6a,0xa3,0x03,0xca,0x9c, + 0x66,0x55,0x9a,0xdf,0x68,0xc1,0xca,0xd2,0x2d,0x38,0x80,0xd1,0x0d,0x2e,0xcd,0x56,0x9c,0x4c,0x7b,0x24, + 0x12,0x36,0x6e,0xbd,0x0e,0x2f,0xb5,0xd7,0x56,0xa4,0xd6,0xde,0x1c,0x93,0x19,0x0c,0xbd,0xc5,0xb1,0x22, + 0x6b,0xbd,0x5d,0xd9,0x9e,0x6c,0x95,0x56,0x40,0x24,0x2e,0x13,0xd7,0x1c,0x91,0xdc,0x2d,0xa1,0x29,0x2e, + 0x3c,0x1c,0x6a,0x7a,0xd4,0x2e,0xb0,0x0e,0xf9,0x35,0x7c,0xa1,0x12,0x0f,0x98,0xda,0x33,0xce,0x64,0xd7, + 0x2d,0x4f,0x8e,0x0e,0x69,0xcf,0xc3,0x82,0x7c,0x42,0xc2,0x67,0x20,0x8a,0xac,0xb1,0x36,0x2b,0x90,0x6f, + 0x01,0x8e,0xc4,0xd3,0xf0,0x13,0x11,0xec,0xdf,0xe8,0x3a,0x56,0x85,0x85,0x8b,0xe5,0x8f,0x09,0xbf,0x4b, + 0xf4,0xbc,0xe5,0xc8,0x55,0x04,0xf0,0xa5,0x10,0xd2,0x88,0xe6,0xa1,0x08,0xe9,0x19,0x04,0xd4,0x4b,0x64, + 0xf0,0xdc,0xd8,0x20,0x74,0xda,0x60,0xd7,0x96,0xc1,0x68,0xa9,0x83,0xfe,0xee,0x46,0xf6,0xbd,0xb5,0x0c, + 0x4c,0x3a,0x6b,0x60,0x37,0x78,0x26,0xdb,0x1f,0x1f,0x8e,0x51,0x1d,0xc0,0xbc,0x26,0x79,0xac,0xa0,0xe6, + 0x3c,0x04,0x4d,0xf5,0xd4,0x71,0xcf,0x6f,0xdf,0xf6,0xf8,0x31,0x71,0xbd,0xae,0x45,0xfa,0xb7,0x6f,0x27, + 0xa6,0x67,0x62,0x4a,0x27,0xd4,0xba,0xef,0x3d,0x9f,0xf6,0x64,0x16,0x3d,0xac,0x76,0x2f,0x5b,0xf4,0xe0, + 0x64,0xa6,0x47,0x77,0x40,0x8f,0xd7,0xba,0x97,0x8a,0xc8,0x74,0xd1,0x83,0xf9,0x43,0xef,0x34,0xb9,0x48, + 0xa5,0x82,0x94,0xa7,0xc2,0x03,0xe2,0x82,0x3a,0xe6,0xde,0xc6,0xe9,0x60,0x0b,0x66,0xc4,0x00,0xc2,0x79, + 0x68,0x73,0x45,0xba,0x6e,0x80,0x19,0x3c,0x9f,0x2d,0xe9,0x1f,0xa8,0x58,0x6e,0x68,0x4f,0x78,0xfb,0xc9, + 0xc8,0x83,0xf9,0x54,0x73,0x59,0x22,0x4a,0xad,0x86,0x33,0x08,0xbf,0x20,0xce,0x54,0x5e,0xff,0xc3,0x2c, + 0x2c,0x06,0x99,0x2f,0xb1,0x27,0x70,0x34,0xf6,0xe3,0x16,0xa2,0x18,0x53,0x4f,0x74,0xb9,0x74,0x3c,0x90, + 0xac,0x87,0xfb,0x16,0x3d,0x97,0xc1,0x6e,0x70,0x5e,0x40,0x1e,0x6e,0xcb,0x89,0x6a,0x77,0x08,0x56,0x6b, + 0x70,0x2d,0xa7,0x99,0x54,0x68,0xe1,0x5d,0xab,0xd1,0x47,0x8c,0x9f,0xe7,0xd9,0x6a,0x7d,0x5a,0xde,0x9c, + 0x1e,0xe4,0xfd,0x3e,0xcb,0x67,0xbc,0x2b,0xe5,0xff,0xb5,0xc4,0xb3,0x82,0xf5,0xac,0xcf,0xea,0x29,0x9e, + 0xd2,0x15,0x2b,0xf1,0xcc,0x80,0xb6,0x84,0x25,0xa5,0x0f,0xb1,0xb1,0x50,0xed,0x78,0x6b,0xd6,0x61,0x19, + 0x06,0x49,0x3f,0xce,0x42,0x93,0x2c,0x32,0x89,0x33,0xa1,0xbb,0x93,0x60,0xe4,0xb1,0xb3,0xd1,0xe8,0x69, + 0x9d,0x00,0x64,0x32,0x21,0x4a,0x7f,0x29,0x4e,0xe9,0xbc,0xa1,0x1e,0x82,0x74,0x9b,0x88,0x47,0xec,0x62, + 0x2d,0x5a,0xf2,0xde,0xff,0xe0,0xb1,0x8e,0x68,0xcc,0x20,0xcc,0x69,0x47,0x20,0xf2,0xa3,0x2e,0x83,0x08, + 0xff,0x1a,0xb1,0xf4,0x4d,0x33,0xa9,0xd6,0xcc,0x3e,0xba,0xab,0x1a,0x97,0x8e,0xa8,0x3a,0xaf,0x99,0xcf, + 0x50,0x82,0x4f,0x37,0x65,0x2b,0x7a,0x3a,0xcc,0x52,0xb4,0x67,0x82,0xb5,0xd5,0x3f,0xd8,0x36,0x5c,0x8f, + 0x8e,0x97,0x6e,0x98,0x35,0x37,0xa5,0xa0,0x09,0x65,0x47,0x9a,0xe1,0x2b,0xd4,0xbb,0x34,0x38,0x2b,0x19, + 0x7f,0xa4,0x38,0x5a,0xe5,0x05,0x42,0x69,0xbd,0x32,0xdf,0xa6,0x06,0xa2,0x0a,0xe4,0x07,0x4c,0xe9,0x10, + 0xdd,0xae,0xcb,0x86,0x7b,0xbb,0xc1,0x91,0x53,0x41,0x8f,0x56,0xfe,0x8a,0x5a,0xb8,0xa9,0xae,0x6a,0x11, + 0x8d,0x9b,0xf5,0xfb,0x66,0x51,0xd7,0x1c,0xee,0x6e,0xcd,0x9b,0x7a,0x16,0xef,0xfc,0xcb,0x3f,0x9c,0x04, + 0xfd,0x9d,0xf0,0x29,0x7f,0x5e,0xe2,0xf3,0x0d,0x2d,0xd3,0x87,0x78,0x2f,0x7c,0x1c,0xdf,0x0d,0x6f,0xc5, + 0xf7,0xc2,0x57,0xf4,0xfb,0x59,0x7c,0x3f,0xfc,0x26,0x7e,0x10,0xbe,0x8f,0xbf,0x0c,0x5f,0xc7,0x7f,0x0f, + 0x9f,0xc7,0x5f,0x85,0x3f,0x81,0xa1,0xff,0xe9,0xe0,0xd5,0x51,0x7c,0x75,0xb9,0x88,0xe8,0x6f,0xc8,0x6c, + 0x60,0x74,0x70,0x2f,0x7c,0x73,0x14,0x7a,0x07,0x5e,0x74,0xf0,0xec,0x28,0xa4,0x4b,0x3e,0x3a,0x78,0x7d, + 0xb4,0x0e,0x7f,0x3a,0xd8,0x53,0x25,0xf7,0x28,0x77,0x40,0xb9,0x77,0x3b,0x4b,0xdd,0x55,0xa5,0xee,0xba, + 0xed,0xed,0xaa,0xbf,0xc2,0x55,0xca,0x0f,0x14,0xbf,0x47,0xc5,0x6f,0x2a,0x17,0x72,0xaf,0xe1,0x07,0xdd, + 0x2f,0x7f,0x71,0xcf,0xf8,0x92,0xbe,0xe9,0x0b,0xcd,0x3d,0xa3,0xe6,0xbc,0x3b,0x94,0xf5,0x0d,0xea,0xdd, + 0xf1,0xee,0x44,0x07,0xef,0xeb,0xe9,0x84,0x8f,0xe9,0xeb,0xc8,0x43,0x63,0xb7,0xa4,0xe2,0x73,0xb6,0xe7, + 0x43,0x96,0x0c,0xe7,0x1b,0x5d,0x1f,0x09,0x4e,0x89,0x6f,0x54,0x89,0xf7,0x54,0x82,0xdb,0x6d,0x95,0x40, + 0x47,0xb2,0x31,0xdf,0xb2,0xcd,0x33,0x91,0x6a,0xe5,0x32,0x5d,0xb1,0x2d,0xe7,0x6a,0x7b,0x74,0x70,0x38, + 0x19,0x1c,0xf5,0x57,0x77,0xd8,0x07,0xd6,0x9d,0x95,0xc7,0x6e,0xb1,0xbc,0x80,0xca,0xdd,0xda,0x09,0x5f, + 0x6e,0x40,0x5b,0xdd,0x58,0xeb,0xa5,0x85,0xb5,0x18,0xca,0x5e,0xd3,0xa5,0xd6,0x96,0x50,0xd9,0x18,0xcb, + 0x42,0x58,0x15,0xf4,0x33,0x3a,0xe4,0x59,0x3a,0xec,0x5d,0x81,0x50,0x3e,0x38,0x70,0xb3,0x78,0x7b,0x8f, + 0xae,0xc6,0x57,0x1c,0xf7,0xee,0x14,0xe0,0x82,0x33,0x73,0x7a,0xf0,0xe1,0xc8,0x31,0xee,0xd0,0xf7,0x54, + 0xce,0xba,0x3c,0x02,0xbd,0x70,0x51,0x28,0x19,0xb0,0xd5,0x3f,0x78,0xd3,0x51,0x03,0x92,0xda,0x51,0x1e, + 0x97,0x51,0xde,0x27,0xc2,0x9f,0x0a,0x3d,0x76,0x0a,0xa1,0x12,0x51,0x46,0x53,0x82,0x7d,0xca,0xbb,0xe5, + 0xe4,0x41,0x23,0xf2,0xd1,0x6e,0x30,0xdd,0xde,0xa6,0xe1,0x3d,0x0b,0xa5,0xa8,0x79,0x8b,0xc4,0x68,0xb7, + 0xf0,0xf4,0xe1,0xe7,0xf1,0x9c,0x5d,0xe6,0x19,0xb1,0x28,0xc6,0x0e,0x75,0xcc,0xa1,0x92,0x81,0x2f,0xd9, + 0x61,0xfc,0xac,0xdf,0x87,0xff,0x44,0x56,0x16,0x82,0xcf,0xc5,0x19,0x5e,0x2c,0xb6,0x1a,0xfc,0x34,0x67, + 0xf4,0xf7,0x18,0x5b,0x2f,0xa9,0xf1,0x6f,0xe8,0x56,0xbe,0xc3,0x6a,0x5d,0xab,0x15,0x7e,0xbf,0xbf,0x7d, + 0x9b,0xc0,0x02,0xbf,0x8d,0xef,0x6e,0x6a,0x96,0xb0,0x35,0x35,0xdc,0xaf,0xd4,0x18,0x11,0x61,0xd9,0x0f, + 0x94,0x15,0xd7,0x04,0x62,0x31,0xd0,0x39,0x8b,0xf8,0xa7,0x83,0xe5,0x51,0x40,0x78,0x67,0xb5,0x5a,0xb0, + 0x22,0xe8,0x6a,0xf5,0x1c,0xb2,0xe5,0xe7,0x5a,0x2b,0x88,0xfb,0x84,0x1d,0x4b,0xe8,0x17,0xf1,0xe9,0x41, + 0x42,0x67,0xf0,0x48,0xde,0x61,0x13,0x1c,0xb4,0x32,0x36,0x4b,0x5a,0x8e,0xaa,0xa8,0x94,0xe9,0x17,0xbe, + 0x99,0xba,0x1e,0xf4,0x6b,0xe3,0x1c,0x55,0x94,0xdd,0x0c,0x41,0xaa,0x61,0x24,0x86,0xff,0x61,0x90,0x5d, + 0xeb,0xd0,0x06,0xb2,0x93,0xb4,0x02,0x88,0xb1,0x20,0xb7,0x71,0x37,0x42,0x46,0x5e,0xd5,0x0e,0x5a,0xeb, + 0x47,0x18,0xed,0x7d,0x5b,0xc3,0x27,0x3c,0xd6,0xf2,0xbc,0xcb,0x06,0x85,0x81,0xf0,0x6e,0x18,0xba,0x76, + 0xa7,0xed,0xb4,0x64,0x59,0xfb,0xd4,0xa6,0x66,0x84,0xa4,0x95,0x0b,0xee,0x64,0xa8,0x1d,0x6f,0x17,0x07, + 0xe5,0xc1,0xe2,0xc8,0x7a,0xec,0x80,0xb2,0x59,0x70,0x25,0x6e,0xa8,0x94,0x6d,0x42,0x11,0x8f,0xc3,0x45, + 0x8d,0x4c,0x0b,0x39,0xad,0x2f,0x36,0x9c,0x9c,0x61,0xcd,0xff,0x81,0x1b,0x87,0xb6,0xac,0x79,0x5d,0x12, + 0xe2,0x71,0xb5,0xf2,0xd2,0x7c,0xfb,0x97,0x37,0x1e,0xcb,0x73,0x5d,0x5e,0xbb,0xce,0x63,0x8b,0x24,0xc5, + 0xe2,0x32,0x79,0xa9,0xc2,0x98,0x5b,0x32,0x20,0x49,0x87,0x15,0x65,0x6e,0x89,0x78,0x38,0x75,0xa8,0x5c, + 0x59,0x9f,0xcb,0x03,0x9f,0xfc,0x9a,0x72,0x3e,0x91,0x2b,0x31,0x2b,0xb0,0xc9,0xf7,0x6a,0x05,0x46,0x79, + 0x5f,0x15,0x39,0xcf,0x16,0x70,0x05,0x82,0xbe,0xe5,0x4b,0x04,0x9e,0xda,0xbb,0x34,0x84,0x0a,0x29,0xcb, + 0x16,0x9c,0x74,0x70,0xb5,0xb1,0xc5,0xf7,0x0a,0xcb,0xbb,0xb5,0x25,0x5f,0xba,0x77,0x35,0x51,0xd6,0x87, + 0xb2,0x0a,0xdb,0xe9,0x52,0xc9,0x4e,0xd1,0x3d,0x74,0xca,0x1e,0x0c,0x12,0x49,0xbb,0xa5,0x0e,0x44,0xe2, + 0x6e,0x6d,0xc8,0x52,0xed,0xba,0x0b,0x8a,0x97,0x77,0x10,0xf6,0x92,0x67,0x2f,0xaa,0x9b,0x03,0x6e,0x80, + 0xe5,0x0b,0x2f,0xeb,0x66,0x92,0xda,0x5d,0x00,0x21,0x41,0x49,0xe6,0xf7,0x83,0x06,0xe4,0x2b,0xac,0xe2, + 0x6f,0x41,0x9d,0x31,0x5f,0xad,0x4a,0xbf,0x92,0x06,0x9d,0xe3,0x22,0xe1,0xb4,0xb5,0x51,0xfa,0x3b,0x38, + 0x8d,0x7d,0xfb,0xc2,0xd7,0xef,0x9d,0x79,0xe8,0x42,0x4d,0x04,0xf7,0x8d,0x02,0x2a,0x44,0x76,0x35,0x80, + 0x24,0x2a,0x42,0x07,0x3c,0xa2,0x05,0x51,0x64,0xe1,0xcf,0xf1,0xd5,0xc5,0x79,0x74,0xb5,0xae,0x2b,0xd2, + 0x77,0xb3,0x26,0x25,0xb9,0x55,0xaf,0x6a,0x0e,0x6f,0xdd,0x1c,0x03,0xda,0x12,0x98,0xe1,0x4c,0xbd,0x6c, + 0xf8,0xd1,0xb9,0x03,0x94,0xb1,0xd6,0x97,0xcb,0x0b,0xdb,0xf5,0xb0,0x4c,0xb6,0xe3,0x78,0x9d,0x6a,0x5f, + 0xd0,0xd2,0xde,0xb0,0xf1,0x1b,0xd2,0x97,0x1a,0xec,0x69,0x77,0x88,0x86,0xc4,0xc6,0x40,0x35,0x36,0x6c, + 0x96,0xad,0xd6,0xa1,0xdd,0x69,0x27,0xbb,0xdf,0xf6,0x85,0xe0,0x6e,0x74,0xad,0x6e,0x66,0x37,0xb5,0x41, + 0x76,0xe0,0x34,0xd6,0x30,0x1c,0x60,0x6e,0xcf,0x0e,0x61,0x92,0x5b,0xb6,0x9a,0x15,0x23,0xc0,0xfc,0xd1, + 0xf6,0x5e,0x20,0xef,0xd3,0x63,0xc8,0x31,0xa1,0x20,0xe9,0x77,0x8c,0x29,0x6c,0x0e,0xc7,0x91,0x6d,0x35, + 0xcd,0x2b,0x45,0xf6,0xe7,0xb8,0x04,0xa7,0xc5,0x1b,0xdc,0xe2,0x4a,0xbe,0x77,0x0b,0x4d,0x3b,0x21,0x2a, + 0x6c,0x83,0x86,0xc6,0x62,0xd8,0xf6,0x0d,0xa7,0x9d,0x4e,0x91,0x9b,0x55,0x88,0x11,0x64,0x27,0xe8,0xcd, + 0xc4,0x56,0xe0,0x8b,0x75,0x78,0x35,0x49,0xd3,0xb9,0xa8,0x26,0xb7,0x67,0xa7,0xc4,0x98,0xee,0x55,0xbf, + 0x55,0xa3,0x26,0x3a,0x68,0x35,0xfe,0x6a,0xdd,0x38,0xa9,0x8e,0x65,0x72,0xee,0xae,0x03,0x0b,0xc8,0xac, + 0xc5,0x10,0xc0,0xb7,0x56,0x83,0x3d,0x7b,0xdc,0x22,0xf6,0x17,0x56,0x2c,0x3a,0x97,0xfd,0xf2,0x37,0xc6, + 0x1f,0x5e,0x65,0xe7,0x44,0xaa,0x67,0x90,0xb7,0xcb,0x14,0x7e,0x46,0xc3,0x74,0xde,0xed,0x31,0x37,0x36, + 0x01,0x85,0xf4,0xd9,0xdc,0x50,0xb4,0x50,0x00,0x40,0xb9,0x4a,0xc0,0xbd,0x60,0x0f,0xe0,0x3f,0x37,0xef, + 0x89,0x9b,0xeb,0xbb,0x8f,0x0b,0xba,0x19,0xe7,0xf0,0xdf,0xdc,0x88,0xfd,0xd0,0xa0,0x9b,0x90,0x75,0xb9, + 0x61,0xae,0xfa,0xd1,0xbd,0x2e,0xbf,0x48,0xab,0x8e,0xd3,0x87,0xdd,0xc0,0x7a,0xeb,0x5f,0xf5,0xb2,0xa7, + 0xdc,0x99,0x8b,0x91,0x6e,0xea,0xd4,0x2d,0xdd,0x51,0xff,0x53,0x07,0xe1,0x56,0xd3,0x83,0x51,0xc8,0xf0, + 0xda,0x51,0xa8,0x32,0x76,0xf1,0xee,0x4e,0xcd,0xbd,0xcc,0xc3,0xd4,0xb8,0xf5,0xda,0xb6,0x4d,0x29,0xb7, + 0x4a,0x77,0xfb,0x16,0x69,0x80,0xe2,0x9d,0x08,0xfb,0xda,0xde,0x3a,0x6b,0x6c,0x6e,0xaa,0x7b,0x14,0xdd, + 0xb7,0x7c,0xea,0x1e,0x79,0x1b,0xdc,0xaf,0xdb,0x5e,0x7d,0x78,0xda,0xb5,0x1b,0xc0,0x7e,0x5d,0x23,0x8d, + 0x83,0xd4,0x6e,0xcb,0x81,0xf9,0xeb,0x5a,0x72,0xce,0x52,0xa3,0x1d,0x28,0x97,0x29,0xaf,0x4e,0x8e,0xae, + 0x11,0x31,0x57,0x99,0x69,0x09,0x06,0xde,0x4a,0x8e,0xaf,0xa0,0x41,0x09,0xfd,0x35,0xe4,0xc8,0x83,0x3c, + 0x93,0x65,0x07,0xa8,0x9c,0x1d,0xc1,0x70,0x23,0xca,0x1b,0x9d,0x65,0x8b,0x6f,0x6d,0x4a,0xac,0xc3,0x25, + 0x4e,0x8a,0x88,0x8d,0xbe,0x85,0x32,0x55,0x47,0x0e,0x09,0xd7,0x6c,0xb5,0x5b,0x0c,0x56,0x69,0xde,0x50, + 0xe1,0xe4,0x16,0xf6,0x1d,0xc7,0x35,0x49,0xe5,0x52,0x40,0x95,0x8a,0xbb,0xeb,0x92,0xfd,0x63,0xc3,0x32, + 0x8c,0xc5,0x60,0x88,0x55,0x31,0x75,0x44,0xe2,0x2d,0x56,0x20,0xb0,0xfb,0xb0,0xb4,0x53,0xf5,0x23,0x29, + 0x22,0x85,0x13,0xd7,0xe4,0x94,0x5b,0x6b,0x36,0xb0,0xa5,0x27,0x36,0x76,0x9a,0x9b,0xc5,0x63,0xcd,0x07, + 0xcc,0x6a,0xeb,0xe9,0x7f,0x44,0x5e,0xc0,0x5e,0x4a,0x7c,0x1d,0x18,0x0b,0x0e,0xc7,0x79,0xfa,0x33,0x35, + 0x7d,0x98,0x8b,0xea,0x10,0x2d,0x1c,0xa1,0x60,0xc6,0xc9,0xd1,0xac,0xb1,0x8e,0xa8,0xd8,0x84,0x01,0x3b, + 0xa4,0x74,0x9c,0x87,0xd0,0x71,0x16,0x5f,0x05,0x3b,0xfe,0x3f,0xa2,0x83,0xc3,0xcb,0xc3,0xed,0x77,0xab, + 0xc1,0x51,0x3f,0xd8,0x39,0xa9,0xb5,0xcd,0xc7,0xd0,0x7c,0x58,0x80,0x4f,0x5d,0x34,0x9e,0x9c,0x79,0xad, + 0x44,0xdd,0x63,0x71,0x30,0x46,0xbc,0x9f,0x99,0xb2,0xee,0xf6,0xef,0x12,0xe7,0xac,0xdf,0xc5,0xea,0xfd, + 0xe4,0x51,0x2c,0x69,0x14,0x5e,0x99,0x5c,0x2a,0x21,0x9e,0x5a,0x25,0x22,0x3c,0xeb,0x44,0xa1,0xc6,0x23, + 0xe5,0xa7,0x41,0x5a,0x71,0x60,0x0d,0x16,0x7f,0xd6,0xd5,0xcc,0xa0,0xc5,0xae,0x8e,0x7a,0xdf,0x40,0xa1, + 0x1d,0x22,0x37,0xb1,0xf4,0x4e,0x27,0x3d,0x56,0x71,0x57,0x3e,0x0c,0x27,0x71,0x5d,0x61,0x38,0x8d,0x27, + 0x2a,0x6c,0x0a,0x8f,0x6d,0xd2,0xb8,0xfe,0x10,0x95,0x5c,0x44,0xf4,0x93,0xe6,0x33,0xe6,0x52,0x2d,0x24, + 0x31,0x74,0xbe,0x9e,0xa6,0x75,0xf2,0x7c,0x94,0x98,0x42,0xd1,0x68,0x54,0x18,0x93,0xe8,0x59,0x38,0x0d, + 0xa2,0xa2,0x66,0xfd,0xdc,0xcd,0x52,0x8a,0xb6,0xee,0x76,0xb9,0x82,0xdf,0x1a,0xf1,0xba,0x2b,0x6a,0x02, + 0xb1,0xd4,0x5a,0x40,0x71,0x35,0x2a,0x95,0x85,0x19,0xe2,0xa5,0x37,0xfa,0x32,0x53,0x6e,0x61,0x08,0x7d, + 0xc0,0xec,0xe3,0x64,0x77,0x56,0x85,0xb0,0x2a,0x35,0xe5,0x8c,0x04,0x9a,0x00,0x61,0x54,0xfa,0x5d,0x35, + 0xf2,0x10,0xf2,0x59,0x53,0x43,0x05,0x9c,0x1f,0x47,0xe3,0xe6,0x98,0x5a,0x90,0x5a,0x53,0x88,0xca,0xff, + 0x50,0x53,0xcd,0x70,0xfb,0xfe,0xb0,0xd8,0xde,0xee,0x3d,0xda,0x1d,0x06,0x09,0xeb,0xff,0x19,0x95,0xd4, + 0xa2,0x7f,0x9f,0xf9,0xf0,0x2d,0xa3,0x5a,0xe3,0xa9,0xe7,0x97,0x4c,0xa1,0x36,0xe5,0x0e,0x21,0x81,0xa5, + 0xdf,0xc2,0x30,0xd3,0x95,0x89,0x46,0x57,0x43,0x45,0x1e,0x2a,0xae,0xb3,0xf9,0x92,0x0d,0x28,0x56,0x0b, + 0x1e,0xb2,0x94,0x21,0x39,0x5f,0x6c,0x86,0xd7,0xd9,0xe7,0xc3,0xab,0xd2,0x69,0x59,0x5a,0x20,0xeb,0x28, + 0x4b,0xa5,0x46,0x59,0x2a,0xb1,0xec,0xeb,0x5b,0xb0,0x38,0x0e,0xe1,0x65,0xb3,0x54,0x7e,0xa0,0xdd,0x65, + 0x77,0x71,0x76,0xe3,0xd9,0xa0,0xb5,0xde,0x7b,0xd0,0xff,0xe5,0xf5,0xae,0x1a,0x2a,0xc0,0x10,0x4b,0xa9, + 0xe1,0x0a,0xb4,0x06,0xb4,0x84,0x6a,0xa4,0x25,0x5f,0x21,0x18,0x96,0x3a,0x4d,0x1d,0x94,0x26,0x1b,0x65, + 0x9b,0xe9,0x54,0xda,0x5c,0xa8,0x79,0x31,0x74,0x60,0x33,0xad,0x1d,0xd7,0xde,0xb6,0x6a,0xf3,0xb6,0x01, + 0xcf,0xe8,0x50,0xec,0x5d,0x9b,0x95,0xfc,0xd9,0xcd,0xb2,0xe9,0xfd,0x4c,0xee,0xac,0x6b,0x76,0x86,0x4e, + 0x13,0x1d,0x8b,0xb2,0xc1,0x87,0x34,0x67,0x59,0x3f,0x36,0x8e,0xda,0x57,0x4a,0xc5,0xea,0x7d,0xd6,0xea, + 0x9a,0xe7,0x5a,0xae,0xbc,0x69,0xa9,0x21,0x11,0x88,0x3c,0xaf,0x79,0x06,0xc7,0x9d,0x0b,0x6c,0xac,0x8e, + 0xc4,0x7c,0xb7,0x05,0x16,0x0f,0x86,0x0b,0x05,0x16,0xc5,0xc1,0xc2,0x06,0x8b,0x45,0xff,0x41,0xad,0xb1, + 0x37,0xaa,0xa5,0x62,0x19,0x2b,0x5e,0xef,0x05,0x61,0xe2,0x2b,0x9c,0x61,0x81,0xcb,0x58,0x28,0x0e,0xea, + 0xdb,0xc0,0x43,0x41,0x57,0x5e,0xc6,0x03,0x96,0x7b,0xbe,0x01,0xc3,0xee,0xa8,0x6d,0xa5,0xe5,0x03,0x48, + 0x26,0x5b,0xe3,0xbd,0x3b,0x2c,0xd5,0x78,0xd9,0x3f,0x42,0x3d,0xde,0xb2,0x7f,0xd7,0x80,0x71,0x66,0xc6, + 0x35,0x56,0x03,0xcb,0x3e,0x15,0x8e,0xc3,0xca,0x8c,0x5c,0x07,0x9a,0xc9,0x9a,0x2b,0xdd,0x44,0xbd,0x96, + 0xa9,0xb4,0x58,0xa8,0xb5,0x46,0x7d,0x6f,0x98,0xa8,0x51,0x97,0xb0,0x31,0xaa,0x47,0x9d,0xf4,0xef,0xe9, + 0x27,0xb6,0x06,0x76,0x2b,0x83,0x1a,0xb3,0xb9,0x00,0xca,0xd2,0x24,0x3c,0xf1,0x1c,0xb5,0x98,0xfc,0xc6, + 0xd0,0x1a,0xd4,0xa7,0x5c,0xe1,0x37,0x2c,0x42,0xd5,0x68,0x92,0x72,0x1d,0xdd,0xa9,0x0e,0x42,0xd1,0xf0, + 0x7e,0x16,0xb5,0x4d,0x08,0x0e,0xf2,0xc7,0x46,0x63,0x8b,0xcd,0x8d,0xb1,0x0f,0xde,0x8e,0x56,0x9a,0x12, + 0x9a,0xb6,0x36,0xd7,0xa7,0x34,0x72,0x3a,0x58,0x56,0xd9,0x6c,0x20,0x3e,0x11,0x37,0x8e,0xb6,0x6b,0xf2, + 0x2e,0x93,0x70,0xc3,0xec,0x1b,0x6c,0xc2,0xc6,0x45,0xd8,0xd8,0xa8,0x33,0x81,0x76,0x6b,0x9d,0x8b,0xf1, + 0xa7,0x1b,0xdb,0xb0,0x28,0xdd,0x93,0x68,0xad,0x8d,0x68,0x9a,0x64,0x7f,0x98,0xfe,0x3b,0x08,0x12,0x4d, + 0xac,0x56,0xf0,0x88,0x4d,0x00,0x0b,0xa4,0x4d,0x54,0xfa,0x22,0x80,0xbc,0x13,0xc6,0xa6,0xfc,0x88,0x20, + 0xc4,0x2c,0xf2,0xe1,0x12,0xcc,0xce,0x6c,0x73,0x09,0x48,0x87,0x75,0x41,0xdf,0x7b,0xf7,0x0e,0x91,0x12, + 0xf4,0x05,0xdb,0x16,0xe0,0x1e,0xcc,0x0c,0xfe,0x82,0x3f,0xa7,0x6b,0x0b,0xb2,0x98,0xb0,0x43,0xbb,0xd2, + 0x2f,0xa0,0x74,0x1c,0x2e,0x15,0xdf,0xdc,0x92,0xf1,0xbd,0x9b,0xb4,0x50,0x01,0x73,0x1f,0x66,0xe0,0x1b, + 0x9a,0x15,0x85,0x45,0x69,0xd1,0x7e,0xee,0x68,0xad,0x69,0x7d,0x11,0x34,0xae,0xc2,0xcd,0x12,0x9b,0x30, + 0xdf,0x7c,0x37,0x96,0xff,0x2b,0xee,0x46,0x71,0x51,0x58,0x99,0xbb,0xb1,0x84,0x89,0xbf,0xbb,0x2e,0x93, + 0x4e,0xd2,0x64,0x13,0x4e,0xdf,0xdb,0x8c,0xd3,0xf7,0x8e,0xb4,0x61,0x85,0x85,0xb6,0x92,0x96,0x99,0x92, + 0xb6,0x7f,0x18,0xb5,0x74,0xe9,0x61,0xa8,0x3d,0x92,0xe8,0xcf,0x78,0xe4,0x87,0x61,0x11,0x47,0x2d,0x81, + 0x77,0x08,0x6e,0x8d,0xaf,0x33,0xeb,0x37,0xe2,0x92,0xd2,0x0f,0x8e,0xba,0xea,0x4b,0x45,0x0e,0xb8,0x2a, + 0xe6,0x4b,0xf9,0x35,0xe6,0x4b,0xb9,0x98,0x2f,0x49,0x9d,0x20,0xec,0xc8,0xdf,0x3b,0x52,0xbd,0xb1,0xd5, + 0x92,0x82,0x47,0x04,0xb7,0xe7,0xc8,0xa5,0x0d,0xc4,0x63,0x4b,0x14,0x6e,0x40,0x3b,0x8e,0x4c,0x61,0x23, + 0xd2,0xd9,0xd0,0xa0,0x83,0x25,0x9a,0x2d,0x75,0x22,0x9c,0x3f,0xd5,0xd0,0x06,0x64,0xd3,0x35,0xf4,0xcd, + 0xa8,0x46,0x7a,0xfe,0xff,0x15,0xd1,0x34,0x5f,0x83,0x36,0xa0,0x99,0x8e,0x62,0x35,0x92,0xb1,0x17,0xf0, + 0x46,0x14,0x93,0x7f,0x22,0x8a,0x71,0x1a,0xbd,0x11,0xc1,0x48,0xe9,0x9b,0xd1,0x4b,0x43,0x96,0xfb,0x5f, + 0x8e,0x5c,0xf2,0x9b,0x91,0x4b,0xb7,0x6b,0xa5,0xff,0x8b,0x5c,0x3a,0x90,0x4b,0x6e,0x90,0x8b,0xd2,0x04, + 0x11,0x43,0x01,0x25,0x02,0xca,0x88,0xe0,0xb3,0x16,0x36,0xfc,0x39,0xa0,0x75,0x4e,0x2e,0x92,0x6c,0x96, + 0x1c,0x67,0xb3,0x0c,0xf9,0xf1,0x95,0x7b,0x5f,0x46,0x1f,0x9d,0x97,0xc0,0xe8,0x18,0x5b,0xc3,0x1a,0xbd, + 0xb3,0x99,0x1d,0xb7,0x17,0xbe,0x18,0x4e,0x63,0x82,0xc2,0x0b,0x82,0x7d,0x4a,0xba,0x7d,0x5b,0x01,0xdc, + 0xa9,0x4e,0xd1,0x26,0x96,0x03,0x2f,0xe0,0x19,0xa5,0xba,0x19,0x09,0xc9,0xd4,0x35,0xde,0x8f,0x54,0xbb, + 0x1e,0xad,0x77,0x4b,0xf4,0x57,0xaf,0x08,0x4a,0xa3,0x4d,0x02,0x57,0x14,0x81,0x13,0x9b,0x3c,0x3e,0xdd, + 0xd0,0x64,0xee,0x34,0x59,0xb5,0xdb,0x6b,0xbf,0x8f,0xd9,0x2f,0x3f,0xff,0x2b,0xc0,0x2f,0x55,0x7a,0xab, + 0xaa,0xf9,0xac,0xe6,0xa7,0x88,0x6d,0x21,0x2e,0xd4,0x98,0x7d,0x35,0x69,0xf5,0xd4,0xe6,0x55,0xd6,0xeb, + 0xda,0x2a,0xe2,0xfa,0x39,0x8e,0x3f,0x6f,0x92,0x2d,0x06,0x27,0xeb,0x62,0xcb,0x32,0xc3,0xe0,0x64,0xf6, + 0x34,0x33,0xb0,0x65,0xc2,0xe5,0x37,0xa6,0x99,0x58,0xec,0x59,0x82,0x79,0x1a,0xeb,0xb4,0xa4,0x35,0xcf, + 0x30,0x37,0x33,0x2d,0x3f,0x67,0xa6,0xe9,0xe7,0xcf,0x54,0xf9,0x4b,0x74,0xc7,0x5a,0x32,0xf3,0x54,0x85, + 0x46,0xef,0xb7,0x6c,0xf1,0x8e,0x9f,0x3e,0xaa,0xc9,0x7f,0x2f,0x8c,0x19,0x9e,0x38,0xd5,0x36,0x7b,0x13, + 0x0b,0xba,0x3a,0xb8,0xdd,0x4f,0x9d,0x47,0xc7,0xd9,0xfb,0xef,0x9d,0x47,0x7e,0xf3,0x3c,0x60,0x73,0xfd, + 0x21,0xcb,0xfd,0x77,0xf8,0x34,0xc6,0x7f,0xbe,0x87,0x73,0xce,0x11,0x1a,0xc6,0x2a,0xaa,0x3b,0x3b,0x0e, + 0x3b,0xad,0xe3,0x8f,0xf9,0x97,0xe2,0x66,0xf1,0x52,0x69,0xed,0xd0,0x78,0x8d,0xea,0x80,0x18,0x45,0xbd, + 0x00,0x29,0xf4,0xa6,0x2a,0xa9,0xf2,0x09,0x61,0xca,0x61,0x29,0xf6,0x51,0xe5,0x40,0x45,0x13,0x07,0x66, + 0x54,0xb8,0x2e,0xf6,0xfe,0x3e,0xb8,0x37,0xb8,0xe7,0x85,0x5d,0xa6,0x5a,0x12,0xe9,0xf9,0xf6,0x6d,0x15, + 0xf1,0xf9,0x2d,0x62,0xd0,0xd4,0xdf,0x83,0xe5,0x22,0xf5,0x5f,0x10,0x62,0x56,0xea,0x43,0xc6,0xda,0xe5, + 0x2a,0xcd,0xa3,0x2b,0x8e,0xaa,0x19,0x79,0x6f,0xaa,0x24,0x2b,0x17,0x5e,0xb8,0xf8,0xb8,0xa8,0xd2,0xf3, + 0xe7,0xcf,0x28,0x85,0xbf,0x7a,0xcf,0x9f,0x79,0xe1,0x34,0x2b,0xcf,0x2f,0x93,0x32,0x7d,0x2b,0x63,0x89, + 0xbc,0x6f,0x55,0x42,0x4f,0x8d,0x2e,0xea,0x79,0xe1,0xb8,0x98,0x7f,0x94,0xc8,0x19,0xde,0x53,0xfd,0xd9, + 0xfb,0x9f,0xff,0x4f,0xef,0xee,0xee,0xde,0xdf,0x7b,0x2f,0x92,0xf2,0xac,0x77,0x91,0xe4,0xbd,0x9f,0xd3, + 0x7c,0x71,0x59,0x2c,0x27,0x74,0xac,0x66,0x45,0x02,0x8f,0x5b,0x91,0xf7,0x7a,0x96,0xc2,0x70,0x90,0xa3, + 0x19,0xf4,0x54,0x6a,0x4f,0x16,0x4a,0x85,0x7c,0x1f,0x0c,0x06,0x5e,0x58,0xa6,0xc7,0x74,0xbd,0xbf,0x4e, + 0x73,0xa9,0xb5,0x7f,0x9a,0xf6,0x64,0xb4,0x34,0xff,0xd9,0xac,0x77,0x9c,0xf6,0xa4,0x44,0x3a,0x09,0x7b, + 0x73,0x69,0xb2,0x4c,0xa7,0x65,0xba,0x38,0x65,0x4c,0xde,0x9b,0xd3,0xa4,0x7b,0xc9,0x94,0x48,0x29,0x1a, + 0xfa,0x84,0xe6,0xca,0x5b,0xff,0x84,0xa3,0x78,0x44,0xde,0x63,0xfc,0x70,0xd2,0xde,0x24,0x17,0xdc,0x91, + 0xfc,0xe5,0x21,0x4c,0xd2,0x8b,0x6c,0xcc,0x77,0x19,0xf5,0x8f,0x7f,0x69,0xde,0x97,0xd9,0x34,0xa3,0xd5, + 0xab,0x96,0x8b,0xe8,0x2a,0x19,0xc3,0x0b,0xe6,0xbc,0xc8,0xf2,0xca,0xac,0xec,0xe3,0xd7,0x28,0x35,0xc9, + 0x16,0xc9,0x31,0x5d,0x4c,0x91,0xf7,0x4c,0x7d,0x11,0x49,0xc2,0x2e,0x35,0x8a,0x1c,0x21,0xf0,0x4c,0xf1, + 0x5f,0xb3,0x6f,0xb3,0x0d,0x15,0xc2,0x0c,0xd1,0x4c,0xbc,0xe7,0x13,0xbc,0x0c,0xe7,0xc5,0x9b,0x37,0xbc, + 0x4d,0xf4,0x6f,0x0f,0xf6,0xa7,0xd3,0x82,0x20,0x83,0x36,0x70,0x9c,0xe4,0x88,0x52,0x01,0x7b,0x0e,0xaa, + 0xfc,0x86,0x7e,0xf6,0xc6,0xfa,0x37,0x76,0x29,0xcf,0x09,0x82,0xbf,0xa5,0x1b,0x1a,0xd9,0xf2,0xb7,0x57, + 0x15,0x3d,0x95,0x61,0x4a,0xd0,0xb8,0x7e,0x2a,0x16,0xbc,0x99,0xfa,0x37,0xed,0xcd,0xa2,0xe2,0x91,0xa9, + 0x32,0x6a,0x74,0xe6,0x17,0x02,0x80,0x2c,0xd4,0x52,0x54,0xc9,0xf1,0xbe,0x01,0x2d,0x4a,0xf1,0x42,0x35, + 0xc1,0xa7,0x12,0x45,0xa6,0xb7,0x50,0xc9,0x74,0x5f,0xbf,0xa9,0xd2,0xf9,0x62,0xbf,0x5c,0xa2,0x70,0x5a, + 0xf5,0xf0,0x7e,0x80,0x50,0xf6,0x1f,0x69,0x4e,0x25,0x1b,0x0f,0x2c,0x50,0xa0,0x2e,0xfa,0x2d,0x34,0x5a, + 0x9b,0x65,0xe1,0xbf,0xed,0x22,0x9b,0x2c,0x11,0xa9,0x82,0xd6,0x96,0x88,0x1b,0x44,0xa8,0x70,0x46,0xb2, + 0xaf,0xd2,0x30,0x96,0xf3,0x54,0x27,0xd2,0xa7,0x24,0x3c,0xc7,0xbb,0x45,0x4e,0xe8,0x48,0x43,0x24,0x2d, + 0x2b,0x6c,0x62,0x92,0xaa,0x87,0xec,0x9e,0x6e,0xb2,0xa7,0xec,0x54,0x7a,0x49,0xce,0xfd,0xa3,0x4e,0xaf, + 0x5e,0xb6,0x81,0xb4,0xf6,0xb2,0xe0,0xb0,0xc7,0xde,0xcb,0xa2,0x51,0x5b,0x1d,0xdf,0xde,0xc7,0xb4,0x92, + 0x92,0xdf,0xe4,0x6a,0xa7,0xe5,0xc3,0x2d,0xae,0xc6,0x0a,0xc1,0x36,0xfb,0xd7,0x52,0xc0,0x67,0x7e,0x4b, + 0xe9,0x2c,0xef,0x9d,0xd3,0x21,0xc8,0x16,0x29,0x8d,0x63,0xa2,0x2a,0x3d,0x9e,0x50,0x9b,0xf4,0x8f,0xfc, + 0x7a,0x26,0x41,0x86,0x3c,0xf9,0xab,0x9b,0xe5,0x4e,0x1a,0x03,0x50,0x15,0xbe,0xcd,0x3e,0xa4,0x13,0xe9, + 0x8e,0x3f,0xb9,0x27,0xc9,0x7a,0xb3,0xcc,0xcb,0x8c,0xb7,0x40,0x3e,0x4c,0xea,0x02,0xab,0x27,0x7f,0xf5, + 0x22,0xeb,0xb3,0x22,0x63,0xcc,0x97,0x55,0xaa,0x86,0xf7,0x82,0x46,0x9a,0x7c,0x8c,0x3c,0xf9,0xab,0x8a, + 0x2f,0xd3,0x05,0x27,0xaa,0x0f,0x49,0xfd,0x35,0x9d,0xe4,0x2a,0xdd,0x7c,0xaa,0xf2,0xa7,0xcb,0x52,0x55, + 0x50,0x5f,0x6a,0xec,0x65,0xc6,0xa9,0xf2,0x57,0x0d,0x8f,0xe0,0xad,0xe4,0x54,0xfd,0x65,0x86,0x2d,0xa9, + 0x4b,0x19,0xc7,0x79,0x21,0xeb,0xcc,0xd0,0xf1,0x82,0x7f,0xe8,0x44,0x6b,0x4f,0x25,0x61,0xc3,0xae,0x4a, + 0x66,0x73,0x5f,0x1b,0x55,0x1a,0xc5,0x9e,0x2d,0x41,0x8e,0xef,0xd7,0xbb,0x42,0x7b,0x87,0xab,0x86,0x2e, + 0x87,0x1e,0x02,0x0e,0xf5,0xb2,0x69,0x2f,0x71,0x60,0x03,0xf6,0x35,0xc9,0xac,0x4c,0x93,0xc9,0xc7,0x5e, + 0x22,0x26,0xe9,0x5d,0x4d,0x3e,0xc3,0xe4,0x4c,0x53,0x13,0x4e,0x23,0xa8,0xa6,0xcf,0xe4,0x63,0xcf,0x3f, + 0x4e,0xab,0xcb,0x94,0x5a,0x5f,0xc8,0x4e,0x12,0x4c,0x4f,0xf0,0x4d,0x1b,0x18,0x98,0xa5,0xf8,0x5c,0xe0, + 0x93,0x6a,0x04,0x68,0xe8,0x19,0xee,0xab,0x7b,0x37,0x14,0xdd,0x08,0x87,0x92,0x5d,0x03,0xb2,0x69,0xd9, + 0x01,0x65,0x49,0x7d,0x9d,0x11,0x1a,0xff,0xee,0xf5,0xf3,0x57,0xbd,0x39,0x75,0xe3,0xcb,0x8a,0xf4,0x4e, + 0xe9,0x1e,0x32,0x33,0x79,0x26,0xd7,0x37,0xf0,0xfd,0x9b,0x4b,0x8c,0x2b,0xc9,0xb3,0xf3,0xc4,0xde,0x61, + 0x53,0xe2,0xa5,0xf5,0x9d,0xcc,0xb0,0xe5,0x79,0x4a,0x8d,0x6a,0x64,0xd4,0x03,0x52,0xc0,0x0d,0x94,0x9c, + 0xcb,0x81,0x6d,0xf7,0xb1,0x5f,0xcc,0x9f,0x21,0xc0,0x97,0x47,0x1f,0x3d,0x84,0xfa,0x6a,0x95,0x78,0x52, + 0xd0,0x3d,0x73,0xfe,0xcb,0x3c,0xf2,0xe4,0xab,0xb7,0x9c,0x7b,0x6b,0x0b,0x01,0xdb,0xb8,0xab,0x46,0xc3, + 0x35,0x26,0xad,0x31,0x33,0x3f,0x3f,0xa6,0x15,0x43,0x95,0x7d,0x09,0x69,0xd0,0x93,0xb4,0x1e,0x27,0x3a, + 0x25,0xbe,0xe7,0x52,0x8f,0x67,0xb3,0xe2,0x72,0x21,0xe8,0x56,0x39,0x38,0xb0,0x10,0x5a,0x6f,0x5a,0xd2, + 0xd8,0x3e,0x16,0xcb,0xb2,0x27,0x17,0x20,0xee,0x0b,0xbe,0x52,0x85,0x6a,0x50,0xee,0x99,0xb8,0xba,0x73, + 0x6d,0xf7,0xe6,0xcb,0x72,0x5e,0x2c,0xd2,0xc5,0xa0,0x87,0xdb,0x5a,0x95,0x76,0x8b,0x00,0x86,0x85,0x5f, + 0xa4,0x16,0xe8,0xf7,0x69,0x55,0xcd,0xa3,0x9d,0x9d,0xbd,0xaf,0xef,0x0e,0xf6,0xbe,0xfc,0x6a,0xb0,0x37, + 0xb8,0xbf,0xd3,0xbb,0x3c,0x25,0x00,0xa5,0xfe,0x7b,0x20,0x39,0xcc,0x6d,0x83,0x51,0x64,0x15,0x35,0xcd, + 0x1c,0x4f,0xd5,0x2b,0xa6,0x74,0x40,0x16,0xbd,0x45,0x01,0x8f,0x3d,0x8b,0x9e,0xba,0x5c,0x31,0xb8,0x14, + 0xbd,0xe8,0x6e,0x41,0x1e,0x50,0x36,0x55,0xa0,0x44,0x76,0xdc,0x90,0x8e,0x91,0xca,0x9e,0x67,0xf2,0x8f, + 0x44,0x86,0x7c,0x1c,0xf4,0x7e,0xa3,0xce,0x70,0x73,0x26,0x33,0xfa,0xb9,0xe8,0x19,0x76,0xb0,0x27,0x84, + 0x5b,0x0f,0x12,0x0b,0x8c,0xf6,0xf8,0x63,0x0f,0x9a,0x9b,0xfa,0x44,0xd9,0xcb,0xdc,0x53,0xf1,0xc1,0x96, + 0x79,0x95,0xcd,0x38,0xf7,0xa7,0x6f,0x9e,0xf5,0x66,0x20,0x8b,0x16,0xb4,0xd1,0x74,0x4b,0xd8,0xd7,0xbf, + 0xde,0x28,0x7b,0xd4,0x4e,0x09,0xd9,0x28,0xb5,0xe5,0x5d,0xab,0x4f,0xab,0xc1,0x5b,0x44,0x80,0xd6,0x03, + 0x11,0xd1,0x2b,0xd9,0x7d,0xd9,0xa0,0xa7,0x2e,0x33,0x8e,0x4a,0xc7,0xe3,0x00,0xc9,0x40,0x24,0x52,0xb2, + 0x20,0x4a,0xac,0x9c,0xf0,0x89,0x9f,0x2e,0x4b,0xca,0x69,0x6e,0xdf,0x71,0x4a,0x60,0x81,0x81,0x2e,0xb2, + 0x89,0x50,0x1a,0x5e,0xa8,0xab,0xd1,0x25,0xa9,0xbe,0x88,0x22,0x38,0x1d,0x13,0x0c,0xff,0x42,0x9d,0x3c, + 0xfb,0xfe,0xe9,0x6b,0xf9,0xad,0x00,0x6b,0x49,0x60,0x0d,0xbf,0x61,0xb8,0x95,0x69,0xd9,0x17,0xd9,0x49, + 0xbe,0xc0,0xbd,0xf9,0xfc,0x75,0x4f,0x05,0xb8,0xef,0x06,0x26,0xd9,0x02,0xe2,0x15,0x8e,0x69,0x59,0xb0, + 0x29,0xb4,0xa0,0x54,0xf0,0x0c,0x87,0x56,0x36,0x02,0x2b,0x3b,0x43,0x7d,0x00,0x06,0xec,0xab,0x08,0x4c, + 0xe8,0x50,0xd2,0xaf,0x3b,0x04,0x25,0x93,0x02,0x34,0x1b,0x91,0x4c,0x73,0xd5,0x0d,0xd1,0x4d,0xa6,0x4b, + 0x9a,0xd1,0xf2,0x98,0x2e,0xed,0xf3,0x64,0x71,0x06,0xbc,0x8f,0xef,0x1e,0x7e,0x78,0xe1,0x09,0xe1,0xc8, + 0x4b,0xa0,0xad,0xef,0xe4,0xc3,0x0b,0x4f,0x89,0xe8,0x11,0x63,0xd7,0xef,0xd5,0x57,0x9d,0xf6,0xba,0x76, + 0xce,0x0c,0x6c,0x24,0xf6,0xad,0xd4,0xd2,0xd8,0xf4,0xb4,0x56,0x14,0xb5,0x43,0x10,0x71,0x0a,0x91,0x70, + 0xd5,0xdc,0xa2,0x41,0x7a,0xd0,0x2f,0x3d,0x2d,0x8b,0x9c,0xc8,0x3d,0x5e,0x7d,0xff,0xe5,0xfe,0x6b,0xc2, + 0x2a,0x84,0xcc,0x16,0xaa,0xd8,0xf7,0x44,0xb7,0x32,0xd9,0x4d,0x69,0x05,0xa2,0x7c,0x9e,0x27,0x73,0x9d, + 0xf7,0x5d,0x51,0x9c,0x10,0x14,0xbc,0xa0,0x94,0xde,0xe3,0xd7,0xcf,0x6b,0xa2,0x5d,0xe5,0x1b,0x92,0x5d, + 0x98,0x15,0xa2,0xf3,0x92,0x59,0x76,0x5c,0xb2,0x68,0x46,0xb0,0x89,0xfe,0x6d,0x65,0x69,0xe2,0xd8,0xe4, + 0x69,0x4a,0xcc,0x94,0x90,0x6d,0xfe,0x85,0x6d,0xca,0x53,0x0d,0xf2,0x0c,0x37,0x8a,0xa8,0x94,0x33,0xc7, + 0xb9,0x22,0xf6,0xa1,0x73,0x2a,0xad,0x84,0x0c,0x79,0x54,0x2a,0x99,0xbc,0x87,0x35,0x28,0x37,0xc0,0x6c, + 0x43,0x8e,0x6d,0x85,0x17,0x9b,0x64,0x7c,0x6a,0xd1,0x75,0x5c,0x8d,0x97,0xed,0x0d,0x5c,0x00,0xd3,0x92, + 0xd3,0x0a,0xf5,0xd8,0x1d,0x70,0xc9,0xc9,0x4c,0xc0,0x5d,0x00,0x5b,0xff,0xac,0x08,0xff,0x4c,0xa5,0xf4, + 0xfc,0x9a,0xfa,0x08,0xb8,0xec,0x4f,0x09,0x8d,0x9b,0xfe,0xc9,0x2a,0x66,0x46,0x90,0x02,0x62,0xff,0xa7, + 0x22,0x3f,0xb1,0x92,0x88,0x55,0x97,0xeb,0xe2,0x3b,0x82,0x90,0x99,0x2a,0xdd,0xdb,0x21,0x4a,0x58,0x15, + 0x13,0xdc,0x38,0x53,0xe5,0x9c,0x4a,0x6f,0xd2,0xa4,0x1c,0x9f,0x82,0x4c,0xc5,0x5f,0xde,0x48,0xc2,0x00, + 0xc4,0x0e,0xd0,0x65,0xcc,0x68,0xe2,0x35,0xa3,0x09,0xa1,0x83,0x19,0x39,0xf0,0xbd,0xd5,0x27,0x36,0xef, + 0x22,0xd0,0xc5,0xdf,0xec,0x3f,0x16,0x0a,0x1a,0x10,0xf1,0x02,0xa8,0xec,0x9a,0xf2,0x8f,0x5f,0xeb,0x0d, + 0x53,0xd8,0xc4,0xe9,0x48,0x6d,0x8e,0x7d,0x39,0xd2,0x36,0x49,0xcd,0xd7,0xbf,0xbe,0x78,0x56,0x52,0x4a, + 0xf9,0xe6,0x19,0xf5,0xf7,0xfa,0xe9,0xe3,0xaf,0xbf,0xfc,0xea,0x41,0x8f,0x52,0x7b,0x13,0x4e,0xee,0x51, + 0xba,0xd4,0x84,0x86,0x75,0xb3,0xce,0xd3,0x9f,0xba,0xeb,0x3c,0xfd,0x49,0xea,0x8c,0xe1,0x0e,0x16,0x95, + 0x2e,0xcf,0x1f,0xeb,0xd3,0xd8,0x51,0xfe,0xf9,0xff,0xfc,0x7f,0x9f,0xd6,0x47,0x94,0x0a,0x7f,0x0b,0x42, + 0x3b,0xcd,0xc7,0x1f,0x3b,0x8b,0x4f,0x75,0xae,0x9c,0x03,0x02,0xfa,0x1f,0xd3,0x8f,0xad,0x83,0x40,0x28, + 0xc3,0x29,0x70,0xca,0x00,0xfb,0x73,0x2a,0xae,0x10,0x27,0xc0,0xfb,0xd3,0xde,0x72,0xc1,0x18,0xdc,0xa6, + 0xbb,0x07,0x3d,0x02,0xea,0x09,0xdf,0x69,0xb3,0xa2,0x38,0x43,0xfe,0x72,0xce,0x30,0xaa,0xc2,0x60,0x72, + 0xf1,0x3f,0x88,0x2a,0x18,0x10,0xba,0x25,0xb2,0x80,0x50,0xe1,0x59,0x0f,0x71,0xf9,0xe8,0x64,0x02,0xc3, + 0xa9,0xbe,0x43,0xac,0x7b,0x4f,0x0d,0xea,0x9c,0x99,0x62,0x88,0xb4,0x2b,0x3a,0x73,0x82,0xaf,0x79,0x16, + 0x0b,0xba,0xc7,0x7e,0x4e,0x4f,0xa0,0xb9,0x5e,0xaa,0x6b,0x98,0xa6,0x97,0xea,0x46,0x40,0x6d,0xa8,0x8b, + 0x51,0x7b,0x11,0xa4,0x9b,0x98,0x4e,0xd9,0x1c,0x23,0x3d,0xe1,0xc6,0x21,0x78,0xd8,0xe1,0x23,0x95,0x68, + 0x5a,0x2f,0xab,0xee,0xd0,0x55,0xb3,0x90,0x9b,0x19,0x43,0xd7,0x8b,0x32,0x20,0xbc,0xc4,0x02,0xf4,0xe8, + 0x0a,0xfc,0xb6,0x62,0x5f,0xe9,0x76,0x59,0xce,0x26,0x7c,0x27,0x22,0x55,0x73,0xd7,0x9a,0x51,0x43,0x5a, + 0x4d,0x72,0xb4,0x4a,0x5b,0xf4,0x02,0x11,0x8f,0x15,0x7c,0x69,0x4b,0x1d,0x41,0x77,0x1b,0x5b,0x77,0xca, + 0x5a,0xe4,0x6f,0x7b,0x3c,0x0e,0xed,0xeb,0xd6,0x7b,0x61,0x93,0x91,0xed,0x9a,0x2e,0xe5,0x6d,0xd5,0x65, + 0x76,0xbf,0x7b,0x52,0x0b,0x18,0xa7,0x77,0x4e,0x8a,0x2b,0xb5,0x67,0xc5,0x15,0x5a,0xb3,0x12,0x74,0x8b, + 0x0b,0xb9,0xbd,0xca,0x65,0x4a,0x23,0xa2,0x7d,0x94,0xfb,0x5a,0xaf,0xf3,0x72,0x8e,0x31,0x6b,0x7c,0x4d, + 0x67,0x19,0x1b,0xd5,0xe3,0x10,0x8e,0x3d,0xc9,0x03,0x30,0x6a,0xf4,0xae,0x7b,0x60,0xc6,0xd8,0x6e,0x9c, + 0x47,0xc9,0x6f,0x3b,0x40,0x9b,0xe2,0x96,0x0a,0x37,0x1f,0x63,0xa3,0x1a,0xb1,0xd9,0x2b,0x55,0x9c,0x01, + 0xc6,0x35,0x32,0xa3,0xc9,0xd3,0xed,0x9e,0xe5,0x09,0x73,0x6c,0xdc,0xdc,0xa6,0xed,0xe1,0xa9,0x6f,0xd8, + 0x1e,0xae,0xb8,0x79,0x7f,0xb8,0xea,0xc6,0xfd,0x11,0xe8,0x6c,0xcc,0x4c,0xc0,0x4d,0xdd,0x40,0xee,0xd6, + 0xc8,0x5a,0x3c,0xad,0xf3,0xda,0x3b,0xda,0x59,0x0f,0x31,0x0d,0x2b,0x5e,0x68,0x47,0xb0,0x54,0xa6,0xec, + 0x69,0x54,0x64,0x00,0x19,0x1c,0x16,0x2c,0xe8,0x72,0x23,0x62,0x94,0xcb,0xf7,0xea,0xe7,0xa8,0xd9,0x47, + 0x21,0x71,0x11,0xd4,0x80,0xc8,0xbf,0x4b,0x9a,0x04,0xad,0xa4,0x42,0xd5,0x19,0x8d,0x5e,0x7a,0xf8,0x99, + 0x28,0x31,0x90,0xf5,0xbb,0xe0,0x27,0xca,0x73,0xbe,0xd2,0x92,0xb2,0x22,0xb2,0x3f,0xdc,0xa3,0x5b,0x34, + 0xa7,0x42,0x73,0x3a,0xdf,0x84,0xde,0x42,0xd5,0x05,0x11,0x98,0xa7,0xfa,0xd6,0x67,0xeb,0x91,0x49,0x71, + 0xe2,0x85,0x77,0x51,0xf8,0x94,0xce,0x3a,0x84,0x37,0xe9,0x87,0x71,0x3a,0x97,0xdb,0xe7,0xde,0xc6,0x46, + 0x16,0xc5,0xb4,0x6a,0x34,0x72,0xdf,0xc8,0xf8,0xa8,0x14,0x86,0xa1,0x51,0x11,0x18,0xaf,0x07,0xc4,0x6a, + 0x27,0x67,0x00,0x38,0xb9,0xe1,0x60,0x34,0xd3,0x5b,0xcc,0x52,0x5c,0xc0,0x5f,0xda,0x15,0x89,0xdd,0x65, + 0xa1,0xcf,0xf8,0x8c,0xd8,0x42,0x78,0x49,0x78,0xdc,0xe3,0x5f,0xb4,0x99,0xf0,0xeb,0x60,0x93,0xf7,0x86, + 0x14,0x5d,0x10,0xe2,0xc5,0x72,0x6a,0x92,0x35,0x27,0x98,0xa4,0x7e,0x7b,0x06,0xa7,0x01,0x8d,0xed,0x14, + 0x60,0x37,0xd8,0x2d,0x09,0x15,0xe5,0x41,0xd8,0x64,0x62,0xcd,0x89,0x94,0xe9,0x79,0x71,0x21,0xbe,0x4b, + 0xb4,0x6c,0x53,0x88,0x6b,0x35,0x24,0x30,0x61,0x00,0x19,0xa2,0xd0,0xd4,0x97,0x93,0xab,0x78,0xc9,0x9f, + 0xb9,0x95,0x76,0x8e,0x02,0x0a,0xfb,0xd0,0x72,0x77,0xd6,0x24,0xc1,0xb3,0x59,0x10,0xa7,0x25,0x79,0x16, + 0x14,0xd2,0xbd,0xf0,0x47,0x02,0x4a,0x19,0x7c,0x83,0xbe,0xa3,0x9f,0xd0,0x37,0xc4,0x6d,0x4b,0x5c,0x48, + 0x2f,0x5d,0xda,0x88,0x08,0x89,0xf4,0x43,0xa5,0x4b,0xbe,0x64,0xc7,0x05,0x8e,0xb8,0x52,0x8b,0xf8,0x6a, + 0xa1,0x18,0xab,0xba,0x13,0x95,0xbb,0x49,0x78,0xc6,0x71,0xe2,0x09,0x12,0x5f,0xd0,0x8d,0xbc,0x43,0x34, + 0xea,0x07,0x85,0x12,0x7a,0x58,0x6f,0xa1,0xac,0xe8,0xaa,0x78,0xba,0x24,0x6a,0x4a,0x08,0xba,0x59,0x71, + 0x92,0x94,0x74,0x9f,0x9d,0x67,0x63,0xdc,0x79,0x17,0x72,0x8d,0xd4,0x02,0x37,0xbf,0xb4,0x2e,0x51,0x64, + 0x11,0x49,0xb2,0xe0,0x20,0xc0,0xf9,0xcc,0x2c,0x02,0xad,0xe4,0xbc,0x25,0x55,0xfe,0x34,0xb1,0x72,0xfa, + 0xd7,0xa4,0xca,0xdf,0xd0,0x31,0x2d,0x4e,0xd2,0xfc,0x78,0x96,0x9d,0xf5,0x4e,0x52,0x62,0x2a,0x88,0xf1, + 0x3b,0x4e,0xff,0xc8,0x4e,0x08,0x4a,0x40,0xcc,0x4d,0xa8,0xc0,0x05,0x4b,0x47,0x0d,0xcf,0x93,0x76,0x09, + 0x9a,0xbf,0xa7,0xd2,0x0b,0x35,0x6c,0xf0,0x3b,0xc4,0x69,0xce,0xf3,0x2c,0x5d,0x5e,0xd2,0xdf,0x13,0x39, + 0x39,0x21,0x46,0x8c,0x41,0x13,0xe3,0x91,0xfe,0x91,0x42,0xd4,0x4c,0x78,0xb3,0x97,0xd3,0x50,0xd2,0xbc, + 0xb1,0x73,0xaf,0xe6,0x8b,0x59,0x92,0xe4,0x9d,0xa2,0xe6,0x27,0x66,0x78,0x85,0x94,0xea,0x90,0x3a,0xbf, + 0x9f,0xfc,0x19,0xa9,0xf3,0x2f,0x59,0x45,0x63,0x1d,0x9f,0xd2,0x99,0x9e,0x7d,0xba,0xe8,0xd9,0xad,0xa5, + 0xe4,0xcf,0x6f,0x68,0x60,0x73,0x38,0x60,0x9a,0x34,0xa5,0xd0,0x19,0x0d,0xfc,0x24,0xbd,0x28,0x08,0x22, + 0xf2,0x6e,0x49,0x74,0x32,0x25,0xfc,0x5e,0xe4,0x6d,0x41,0xf4,0x8f,0x94,0x79,0x02,0xcc,0x4a,0xab,0xa8, + 0x22,0xb1,0x10,0x8c,0x9e,0xa1,0x9d,0xa6,0x40,0xfa,0x6d,0x5d,0x82,0x0a,0xcf,0x8a,0x12,0x85,0x5c,0xa1, + 0xf4,0x4b,0x8c,0x04,0x2d,0xc9,0x50,0x3e,0x45,0x2c,0xfd,0xfd,0x32,0x9b,0x64,0x27,0xe9,0x06,0xb1,0xf4, + 0xe3,0x19,0x38,0xec,0x32,0x05,0xcc,0x60,0x87,0x67,0x53,0x08,0x15,0xd4,0x51,0x48,0xb3,0xaa,0x25,0x9b, + 0xde,0x97,0xb2,0x9a,0x79,0x49,0xd3,0x19,0x7b,0xad,0x4a,0xa9,0x9d,0xfc,0xf3,0xa4,0xd3,0xef,0x27,0x4d, + 0xe9,0xf4,0x4f,0x0c,0x1f,0x3d,0xba,0xe9,0x7a,0x17,0x05,0x28,0x3b,0x2a,0x53,0x0b,0x22,0xd3,0xb4,0x96, + 0x4a,0x5f,0x38,0x4b,0x95,0xc2,0x05,0x69,0xb6,0x68,0xc9,0xa7,0x4f,0x64,0xe5,0xdd,0x66,0x4e,0x52,0xc3, + 0xbc,0xa5,0xe5,0xa4,0x21,0xa8,0xde,0x77,0x8a,0xd2,0xc4,0x04,0x44,0xd2,0xfc,0x7a,0x69,0x75,0x2a,0x7d, + 0xb8,0x42,0x40,0x5d,0x89,0x85,0x7c,0xfb,0x05,0x81,0x4f,0x7a,0xa2,0xd3,0x34,0x72,0xa6,0x2d,0xbf,0xa4, + 0x9a,0x69,0x59,0xf7,0xe0,0x0a,0x0c,0x21,0xde,0x4c,0xa7,0x2d,0xb9,0xf5,0x5b,0xba,0x8e,0xa5,0xd3,0x86, + 0xdc,0xfa,0x77,0x50,0xd1,0xf3,0xb3,0xe2,0x7c,0x51,0xb9,0xb2,0x6b,0xce,0x80,0x29,0xc6,0x49,0x02,0xc5, + 0x7e,0x5b,0x84,0xad,0x47,0x0e,0x26,0x32,0x6f,0x88,0xb0,0xe9,0xa8,0x4e,0x92,0x93,0x86,0x0c,0xfb,0x19, + 0x2d,0x8c,0x49,0xb5,0x65,0xd8,0x45,0x6a,0x65,0xd4,0x22,0xec,0x67,0xdc,0xb1,0xc9,0xd0,0x32,0xec,0xb7, + 0x25,0x75,0xad,0x13,0x6b,0x21,0xf6,0xef,0x44,0xe8,0xd4,0x85,0xb5,0x10,0xfb,0xf7,0x42,0x06,0xe2,0x08, + 0xb1,0x9f,0xa4,0x97,0xe9,0x09,0x1b,0x2a,0x34,0xc5,0xd8,0x6a,0xeb,0x8f,0x55,0x81,0xcd,0xdb,0xdf,0x90, + 0x68,0x3f,0x69,0x55,0x70,0x80,0xe0,0x26,0xc1,0xf6,0x2b,0xa2,0x34,0xad,0x0a,0x74,0x4d,0x11,0xdc,0xe2, + 0xb6,0xea,0x35,0x01,0x91,0x99,0x99,0x74,0x4a,0x60,0xbb,0x59,0xb6,0x8d,0xd6,0xe8,0x4a,0xc6,0x62,0x38, + 0xad,0xfa,0x74,0x90,0x89,0xd4,0xe8,0xfd,0xc1,0x9b,0x8d,0x0d,0xed,0xe9,0x5f,0x7a,0x87,0x6f,0x94,0x71, + 0x6f,0x04,0x59,0x47,0xc6,0xcd,0xc0,0x91,0xf0,0x73,0x50,0x77,0xb9,0x4d,0xf0,0x6a,0xc9,0xb7,0x2d,0xd0, + 0x77,0xa5,0xdc,0x0e,0xf0,0x6f,0x14,0x75,0xd3,0x1a,0x9d,0x12,0x1f,0xd8,0x25,0xea,0x7e,0x2c,0x42,0xee, + 0xf4,0x46,0x19,0xf7,0x77,0x58,0x7d,0xc8,0xb8,0x0d,0xae,0x3b,0x49,0x67,0xd9,0xfb,0x33,0x2c,0x41,0xd6, + 0xd1,0xb4,0x91,0x70,0x3f,0x29,0xf0,0x40,0x91,0x27,0x49,0x49,0xa0,0x94,0xa7,0xf6,0x02,0x75,0xc8,0xba, + 0xa5,0x84,0x2a,0x8e,0x9a,0x1b,0x85,0xde,0x35,0xaa,0x37,0x78,0xda,0xc2,0xfe,0xf6,0xc5,0xdd,0x10,0x7b, + 0x3f,0xb6,0x05,0xb1,0x0e,0x68,0xb6,0x64,0xdf,0x74,0x76,0xcf,0x88,0xb2,0x87,0x04,0xb0,0x90,0xe9,0xf6, + 0x88,0xd4,0xc4,0x4a,0x88,0x20,0xbc,0x66,0x02,0x53,0x90,0x0b,0xc9,0x94,0xf3,0xe8,0xf2,0x4e,0xca,0x84, + 0x30,0x30,0xcf,0x82,0x2f,0x7d,0x90,0x3a,0x46,0x18,0x9b,0xca,0xed,0xd5,0x63,0xd2,0xd9,0x4a,0x35,0xa7, + 0x0a,0x31,0x7a,0x7a,0xcf,0xdc,0x5a,0x44,0xc0,0x52,0x11,0x5a,0xc1,0x84,0x77,0xbb,0x77,0x91,0x25,0x9d, + 0xf2,0x70,0xca,0xa7,0x9e,0xdf,0xdb,0x23,0x3b,0x4d,0x8f,0x71,0xf7,0x9e,0x63,0x32,0x83,0xde,0x1b,0x99, + 0xaf,0x8c,0x0b,0x22,0x6b,0x22,0xe4,0x33,0x8c,0x95,0xe7,0x69,0x8f,0x21,0x04,0xd8,0x9e,0x10,0xd9,0xa1, + 0x2e,0x36,0xb9,0xc4,0x8f,0x89,0x10,0xcf,0x66,0xd9,0xc9,0x04,0xd7,0x45,0xef,0x87,0xb4,0x77,0x46,0x44, + 0xaa,0xdd,0x5a,0xd1,0x38,0xc0,0x13,0xdc,0x43,0xb8,0x93,0x8c,0xcc,0x49,0x96,0xfe,0x2c,0xa7,0x44,0xbc, + 0x3a,0x95,0xcb,0x33,0x2c,0x47,0x55,0x54,0x18,0xfa,0x44,0x84,0xe1,0x38,0x31,0x27,0xb4,0x88,0x4d,0x59, + 0xb8,0xb5,0xc7,0xa0,0x85,0x98,0x3b,0x56,0xc4,0x40,0x4b,0x22,0xae,0xca,0xb6,0xb7,0x00,0x8d,0xd3,0x12, + 0xa5,0x74,0xa9,0x37,0x04,0xe2,0x6f,0x97,0xb3,0xde,0x69,0xc6,0x74,0x08,0x21,0x18,0xac,0x08,0x93,0x2f, + 0x54,0xec,0x32,0x19,0x9f,0x56,0x97,0x60,0x7b,0x69,0x76,0x21,0x52,0x2c,0x2c,0xc8,0xaf,0x70,0xd5,0x92, + 0x97,0x95,0xf1,0x0d,0xc8,0x05,0x5e,0x8e,0xc5,0x46,0x19,0xf9,0xaf,0xa6,0x41,0x2d,0x25,0xff,0x2e,0x3d, + 0x2e,0x97,0x44,0x91,0x6e,0x92,0x94,0xd3,0x9a,0x32,0x80,0xb1,0xb4,0x9a,0xb8,0x22,0x5a,0xb2,0x94,0x8e, + 0xff,0x1f,0x80,0xb9,0x24,0x6f,0x4d,0x73,0xd0,0xfb,0x95,0x00,0x90,0x2a,0x65,0xef,0x73,0x86,0xdd,0xcb, + 0x6c,0x86,0x69,0x5b,0x7b,0x85,0x6a,0xb0,0x89,0xa2,0x09,0xd1,0x3f,0x7f,0x64,0xef,0x91,0x7f,0x99,0xd2, + 0xb4,0x2f,0x01,0xbb,0xf4,0xe3,0x3c,0x4d,0x15,0x65,0x7c,0x0c,0x17,0x88,0x6d,0xa9,0x79,0x99,0x6e,0x96, + 0x99,0x43,0xf6,0x7a,0xb3,0xd4,0x3c,0x39,0xdf,0x20,0x35,0x7f,0x03,0x42,0x92,0xc6,0x31,0xd1,0x72,0x73, + 0xf4,0xb5,0x51,0x6a,0xde,0x14,0x9b,0xbf,0x9f,0xb8,0x62,0xf3,0xf4,0x3a,0xa9,0x79,0x02,0xe3,0x30,0x3a, + 0x07,0x04,0x57,0x8c,0xa0,0xfe,0x84,0xf0,0xfc,0x38,0x7b,0x4f,0xbc,0xbd,0x90,0xa5,0x0d,0xf9,0xf9,0x8f, + 0x9a,0xdd,0xeb,0x12,0xa0,0x4b,0x26,0x80,0x48,0x10,0x6b,0x4b,0x82,0xae,0xc1,0x82,0x61,0x92,0x80,0x9c, + 0x16,0x25,0x95,0xd3,0x43,0x18,0x04,0x20,0x4a,0x29,0x15,0xdd,0x8f,0x95,0xa6,0x2b,0x7b,0x22,0x8c,0x07, + 0x3d,0xc9,0x80,0x2a,0x88,0xe6,0x34,0xc5,0xaa,0x9e,0xa6,0xd9,0x84,0x59,0x9b,0x74,0x76,0xa6,0x50,0x39, + 0x43,0x41,0x95,0xf2,0xab,0x4f,0x9a,0x7f,0x9a,0x10,0xfd,0xad,0xf0,0x34,0x5d,0x42,0xf4,0xdc,0x12,0xa2, + 0x3f,0xa1,0x79,0x4d,0xaa,0xf4,0x84,0xd0,0xe1,0xc4,0x12,0xa4,0x43,0x21,0xcb,0x4e,0x34,0x12,0x27,0xbb, + 0x3c,0x44,0xe9,0x75,0x41,0x02,0xd8,0xd3,0x04,0xe8,0x84,0xa6,0x7d,0x9c,0x2c,0x08,0x1d,0x62,0x12,0x22, + 0x8f,0x4a,0x3b,0x65,0xeb,0xbf,0x17,0x29,0x6f,0xc6,0x9f,0x97,0xad,0x5b,0xa2,0xb7,0x1b,0x64,0xea,0x4e, + 0xcb,0x36,0xf2,0xe3,0x6d,0xb2,0x2f,0x62,0x62,0x90,0x4e,0xfe,0x3b,0xe4,0xea,0x67,0xb3,0xe2,0x7f,0x2f, + 0xb1,0xfa,0x63,0xdc,0x25,0x25,0x73,0xd6,0x74,0x52,0xe8,0x3e,0x12,0xa0,0xbe,0x60,0xc4,0xe5,0x32,0x18, + 0x84,0xb8,0x98,0x97,0x56,0x65,0x2a,0x0d,0xc0,0x8a,0x0d,0x43,0x59,0x08,0xd7,0xe5,0x42,0x9c,0x03,0x2a, + 0xa8,0x06,0x1d,0xbd,0x8a,0xef,0x9e,0x3f,0x04,0x77,0x1b,0x19,0xfb,0x39,0x30,0x99,0x1a,0x22,0x15,0xe7, + 0x72,0x13,0xea,0x15,0xf2,0xf4,0x33,0xb4,0xab,0x44,0x5b,0x0b,0x2d,0x66,0x17,0x84,0x0e,0x0a,0x07,0x47, + 0xd6,0x4c,0x09,0x90,0xf7,0x69,0x82,0x76,0xe0,0x63,0x7e,0x44,0x51,0x57,0x08,0x73,0x62,0x7a,0xc2,0xb8, + 0xb5,0x26,0x37,0x8a,0xdb,0xc1,0xf3,0x2a,0xc1,0x82,0x02,0x40,0xbe,0x7c,0xd5,0x21,0x68,0x0b,0xdc,0x51, + 0xde,0xe2,0xe8,0x14,0x3f,0xc9,0xd8,0xac,0xa3,0xa6,0x16,0x50,0x5b,0xbd,0xdc,0x54,0xc5,0x15,0xef,0xa2, + 0xa2,0x43,0x8a,0xdf,0x50,0xbb,0x29,0xe3,0x45,0xfd,0x26,0x63,0x71,0x5d,0x1b,0x2d,0x59,0xfc,0x27,0xcc, + 0xd7,0x16,0xa5,0x7c,0xea,0x84,0x55,0x9d,0xb6,0x60,0x1e,0x15,0x6d,0x74,0xe0,0x0e,0xaf,0x29,0x96,0xff, + 0x16,0xef,0x3c,0x58,0x1f,0x62,0xe6,0xea,0x7b,0x81,0x61,0x7d,0x83,0x6c,0x9e,0x17,0x14,0x57,0xf7,0x35, + 0xa3,0x6a,0x8a,0xe7,0x7f,0xac,0x11,0xa0,0x25,0x8f,0xcf,0x35,0x99,0x36,0xb7,0x96,0xee,0x4f,0xec,0x9e, + 0xbd,0x7c,0x7f,0x7a,0xfb,0x54,0x23,0x96,0xa8,0x1e,0x55,0xcf,0xcc,0x75,0x78,0xdd,0x9e,0x77,0xc8,0xeb, + 0x3f,0xa1,0xb2,0xea,0xd1,0x16,0xda,0xdb,0x42,0x3a,0xd6,0x0e,0xb8,0x80,0x9a,0xe7,0x18,0xba,0x16,0xa7, + 0x7c,0xa1,0x96,0x15,0x93,0xdb,0x54,0xb3,0x5a,0x54,0xe9,0xcd,0xa2,0x79,0xba,0xee,0x8c,0x78,0x8f,0xa5, + 0xf3,0x54,0x80,0x78,0xe5,0xb2,0xe2,0x41,0x84,0xa6,0x55,0x21,0x7d,0xbb,0x65,0xf4,0xaf,0x72,0xc8,0xbb, + 0x20,0xa7,0xc7,0xb5,0x0c,0x0d,0xcd,0x8a,0x65,0xf4,0xd7,0x36,0xd5,0x2d,0xa9,0xff,0x5e,0x97,0xa1,0x79, + 0xfd,0x41,0x97,0x9e,0x2a,0xab,0x69,0x22,0x11,0xd7,0x13,0x2d,0x46,0x28,0x08,0x94,0x27,0xad,0x15,0x08, + 0xfe,0x49,0x46,0xb8,0xb0,0x87,0xe5,0xb2,0xc4,0xf6,0xb4,0x42,0xb4,0x95,0x1d,0x92,0x7b,0x48,0x4c,0x1b, + 0xb2,0xfb,0x63,0x48,0xff,0xb2,0xb3,0x63,0x42,0xaf,0xc4,0x55,0x54,0xcb,0xa5,0x20,0x3b,0xc5,0xf4,0x50, + 0xfb,0x58,0x61,0x02,0x7e,0xa2,0x2a,0x41,0xb0,0x14,0x79,0x75,0x99,0xd1,0x30,0x66,0xc8,0x4f,0xf3,0x9d, + 0x62,0x8a,0xf1,0x0a,0xf7,0x2a,0x58,0xb2,0x83,0x84,0x65,0xcc,0x9f,0x01,0x9a,0x4b,0x34,0x07,0x8c,0x8f, + 0x53,0x0f,0xdd,0xe8,0xfc,0x06,0x41,0xbe,0xe2,0x08,0x1a,0xa2,0x7c,0x87,0x61,0xde,0x20,0xcf,0x67,0x24, + 0x61,0xcd,0x35,0x57,0x12,0x43,0x53,0xb1,0x5b,0xa6,0x5f,0x13,0x79,0x9d,0x22,0xfd,0xfd,0xb4,0x5c,0x9e, + 0x18,0x99,0xfe,0x63,0x9b,0x64,0x73,0x25,0xfa,0x6f,0x8b,0xd9,0x09,0x04,0xe7,0x0d,0xd9,0x30,0x25,0x57, + 0x45,0x21,0x32,0xe3,0x6e,0xb1,0x7e,0x9a,0xa9,0xab,0xc6,0xe2,0xd2,0xbb,0x64,0xfb,0x20,0xed,0x01,0x05, + 0x73,0x4d,0x72,0xda,0xd2,0x7d,0x4d,0x6c,0x2a,0x09,0xff,0x39,0x98,0x8e,0x54,0xc9,0xf8,0xb9,0x71,0x4b, + 0xb2,0x49,0x44,0x4d,0x7d,0xa9,0x73,0xa6,0x16,0xf3,0xaf,0xeb,0x00,0x79,0x0c,0x9a,0x8f,0xe7,0x73,0x3f, + 0xb8,0x82,0xc2,0x79,0xad,0x02,0xef,0x51,0xc3,0x78,0xe5,0xb8,0xd2,0x81,0x1e,0xa3,0x3b,0x0f,0x27,0xd9, + 0x45,0x6f,0x3c,0x23,0x3a,0x34,0x56,0xb9,0xbd,0x48,0xfd,0xbc,0xea,0x71,0x42,0x4a,0xbc,0x80,0x38,0x2c, + 0xee,0x19,0x51,0xb4,0xf9,0xea,0xad,0xbd,0xde,0x3f,0xe8,0xa6,0x86,0x42,0x5d,0xec,0xc9,0x1b,0x18,0xd1, + 0x1f,0x80,0x08,0xca,0x18,0xcf,0xb2,0xf1,0x99,0x4e,0x7e,0x8a,0x1f,0x5e,0x8f,0x58,0x08,0x76,0xaf,0x13, + 0x7b,0xbb,0xde,0x23,0xa7,0x77,0x02,0xd7,0xb2,0x98,0xb9,0x89,0x1c,0x9d,0x91,0x92,0x76,0x28,0x4d,0xff, + 0x6b,0x65,0xcf,0x92,0xe3,0x94,0x6a,0x5c,0x5d,0xf5,0x18,0x22,0x7a,0xeb,0xb5,0x5d,0xf2,0x8e,0x71,0x7e, + 0xcf,0xe0,0xa2,0xdc,0xda,0x8b,0xc7,0x69,0x71,0x42,0xfd,0xa4,0x20,0x9a,0x22,0xc9,0x8d,0x33,0xfc,0xad, + 0xbd,0x75,0x2d,0x6f,0xdf,0x58,0x04,0xbe,0x15,0xd9,0x22,0x20,0xba,0xb2,0xa6,0xd6,0x0a,0x49,0xa0,0x1b, + 0x82,0x7f,0x5d,0xfc,0xe6,0x8e,0xe3,0xad,0xfa,0x5b,0x6c,0xba,0x6e,0xa5,0xe7,0x30,0x9b,0xca,0xf2,0x39, + 0xf0,0x51,0x9d,0x0b,0x37,0x6b,0xce,0x82,0x3a,0x51,0x5e,0xef,0xdd,0x85,0x73,0x4c,0x5a,0x79,0xc4,0xc0, + 0xd1,0x7e,0x5b,0xad,0xd1,0xc0,0xc8,0x06,0x01,0xb5,0xc1,0x24,0x6b,0x0f,0x17,0xca,0xd0,0xa6,0x01,0x13, + 0x04,0x4b,0x59,0xb1,0x11,0x26,0x24,0x77,0x23,0x4c,0xf4,0xe2,0xb8,0x97,0x4d,0xfe,0x8f,0x82,0x0c,0x09, + 0x9c,0x38,0x91,0xbf,0xff,0xc5,0xc0,0xc0,0x9f,0xb4,0x7e,0xff,0x9b,0x00,0x02,0x61,0x96,0x16,0x20,0x38, + 0xab,0x2a,0xf7,0xef,0xa3,0x87,0x88,0x19,0xa1,0xd3,0x78,0x8c,0xbc,0xd2,0xfc,0x35,0x90,0x8b,0x11,0xeb, + 0x8d,0x52,0x6e,0xf5,0x59,0x46,0xe8,0x1c,0xdb,0x99,0x64,0xb2,0x7b,0x3c,0x59,0x0e,0xcf,0x15,0xab,0xfe, + 0xc1,0xd2,0x02,0x02,0x80,0x37,0x63,0xef,0xfe,0xee,0xd7,0xf7,0x3d,0xb7,0xba,0xd7,0xbb,0xd8,0x86,0xc0, + 0x69,0xa6,0x4c,0x8d,0xd5,0x08,0x06,0x7a,0x6c,0x1b,0x00,0x82,0xf0,0xfb,0x0d,0x03,0xc7,0x33,0xf8,0x5f, + 0x1c,0xf6,0x5e,0x3d,0xec,0x07,0x9f,0x38,0x6c,0x19,0x97,0x3d,0x68,0x07,0x42,0x0f,0xd4,0x30,0x8f,0x42, + 0x0e,0x12,0x4c,0x90,0xd8,0x84,0x2c,0x1d,0x51,0x2f,0xbe,0xe2,0x15,0x88,0x6a,0xc0,0x91,0x25,0x09,0xa9, + 0x07,0x3b,0x91,0x7e,0x22,0x66,0x08,0xc8,0x99,0x48,0x79,0xf4,0x57,0x90,0x5b,0x3a,0x80,0xa5,0xaa,0x6f, + 0xc5,0x4e,0x2f,0x92,0x38,0x52,0x7f,0x1f,0x71,0x73,0x1c,0x9c,0x88,0xfe,0xc6,0x2a,0xb5,0xbf,0xd7,0x05, + 0xd0,0x04,0xc7,0x11,0x17,0x6b,0xb6,0xc8,0x2d,0xf0,0x9f,0x87,0xaa,0x01,0x6e,0x90,0xbf,0x62,0x4e,0xdf, + 0xde,0xd4,0x60,0xd8,0x31,0x36,0x3d,0x8a,0xb0,0xd5,0x8b,0x34,0x46,0x18,0x5e,0xb9,0x1c,0x5d,0x2b,0x13, + 0xac,0x94,0x0d,0xb9,0x55,0x08,0xc1,0xda,0x17,0x6f,0x72,0x91,0x9d,0x24,0x55,0x51,0x0e,0x66,0xb4,0xc3, + 0x4b,0xa2,0x11,0x9b,0x8e,0x71,0x3d,0x96,0x5b,0x69,0x37,0xbb,0xc6,0x2d,0x61,0x30,0x54,0xcd,0xf9,0x57, + 0xe9,0x2c,0xf2,0xfe,0x46,0x34,0x85,0x17,0xc2,0x94,0x2c,0x4a,0x43,0x76,0x5b,0x7b,0x95,0x13,0x71,0x3f, + 0xcd,0x14,0x53,0xc1,0x78,0x46,0xbf,0x93,0x6f,0xed,0x86,0x0b,0x79,0x7d,0xde,0xda,0x53,0x5f,0x42,0xc5, + 0xd3,0x4f,0x55,0xe6,0x39,0xf1,0x5f,0x63,0x8c,0x2b,0xf2,0x56,0x9a,0x0f,0x7a,0x5d,0x16,0x27,0x2c,0x71, + 0x30,0xb5,0x6c,0x22,0x9e,0x12,0x85,0x39,0xde,0x4f,0x8e,0x11,0xd3,0x55,0x9e,0x54,0xf5,0x1b,0x6c,0xad, + 0x0d,0xa0,0x3a,0xe0,0x57,0x6e,0x6d,0x4a,0xe6,0x24,0xe2,0x69,0x4b,0xc6,0x8b,0xaf,0x57,0xd3,0x29,0x1e, + 0xe9,0x76,0x1d,0x8a,0x9d,0x73,0x2d,0x32,0x16,0x37,0xaa,0xf3,0x3a,0x3e,0x8f,0xae,0x52,0xf5,0xee,0x42, + 0xe3,0xca,0xe6,0x91,0xb7,0x3b,0xe0,0xff,0xd7,0xcf,0xe0,0x4e,0x09,0x35,0xcc,0x5d,0xb7,0xe8,0x5a,0xb1, + 0x66,0x34,0x32,0xc3,0x9d,0x51,0x61,0xeb,0x21,0x17,0x43,0xb5,0xdb,0xa9,0xdc,0x27,0x25,0x99,0x85,0x2e, + 0x0e,0x07,0xe7,0xf2,0x42,0xe2,0xd4,0x49,0x37,0x3d,0x99,0x35,0xf3,0xf0,0xf0,0xb5,0xa1,0x8f,0x09,0xbf, + 0x49,0xb5,0xba,0x73,0xdf,0x58,0x8c,0x7c,0x96,0xcb,0xd9,0x6f,0x27,0x00,0x88,0xca,0xcc,0x8f,0xc5,0xda, + 0x5c,0xc6,0x08,0xb5,0xa5,0x13,0x08,0xb3,0xb7,0x78,0x8d,0x64,0x03,0x6a,0xe1,0x30,0xff,0xd6,0x12,0x61, + 0xf6,0x88,0x68,0xa4,0xb9,0xb5,0xd4,0x51,0xbc,0x50,0x59,0xd2,0xc6,0x07,0x21,0xdd,0x00,0x0a,0x34,0x09, + 0x18,0xa5,0x4b,0x62,0xfe,0xa2,0x2b,0x9a,0xf3,0xe3,0xd7,0x2a,0x27,0x9d,0x40,0x68,0x27,0x63,0x9e,0x2b, + 0xaa,0x59,0x8a,0x5e,0x9e,0x43,0xc4,0x66,0xbe,0x9f,0xfe,0xa4,0xba,0xb6,0x84,0x63,0x3a,0xb3,0x96,0x7f, + 0x71,0x8a,0x2d,0xe5,0x22,0x90,0xd0,0x84,0x37,0x66,0xe7,0x12,0xe1,0x58,0x18,0x64,0x20,0x32,0x81,0x61, + 0xd0,0x21,0x2b,0x56,0xef,0xcd,0x9c,0x53,0xa6,0x50,0x13,0xbe,0x48,0x4d,0x82,0xcd,0x46,0xc8,0x90,0x24, + 0x96,0xc2,0xa4,0x69,0xf5,0xaa,0x9c,0xbe,0x57,0x03,0xfb,0xb0,0xa2,0x19,0x15,0x5a,0xd9,0x44,0x1f,0x67, + 0x12,0x02,0xc1,0x86,0x7c,0x8f,0x3f,0x3d,0xed,0x16,0x5e,0xd9,0x7c,0xea,0xc1,0xc1,0x5b,0xe3,0xa9,0x76, + 0xc8,0xb8,0x47,0x48,0x02,0x97,0xf5,0xc0,0x1c,0xcc,0x18,0xb1,0xcc,0x04,0x73,0xfd,0xd4,0x38,0xe8,0x70, + 0xe2,0x34,0x68,0x0a,0x48,0x38,0x51,0x51,0x15,0xbc,0x2a,0xec,0x8f,0x1a,0xb6,0xf6,0x7b,0x68,0xa7,0x46, + 0x1d,0x32,0x66,0x2b,0xd5,0x42,0x0d,0x3a,0x6f,0xd8,0x30,0x07,0x67,0xa7,0x57,0xbb,0xc3,0xe4,0xe1,0xde, + 0xfd,0xfb,0xf4,0xa7,0x1f,0xef,0x3d,0x08,0x54,0x24,0x92,0x44,0x5c,0x51,0x26,0xf1,0xf6,0x5d,0x64,0x3d, + 0x8c,0xef,0x9a,0x12,0x99,0x29,0x51,0x0d,0xea,0x6d,0x88,0x4b,0xea,0xd9,0xd9,0x87,0x38,0xa3,0x94,0x5a, + 0xf4,0xe6,0x07,0x83,0xea,0x34,0xcd,0x6d,0x87,0xd2,0x92,0x5d,0x4b,0x9f,0x36,0x16,0x11,0x29,0xd3,0xc6, + 0x6c,0x5b,0x08,0xb3,0xb1,0x90,0x2b,0x6a,0xd9,0xdc,0x15,0x16,0xb3,0x33,0x77,0x51,0x15,0xf3,0xce,0x3d, + 0x53,0xb8,0x93,0x16,0x78,0x1d,0x58,0xff,0xaf,0x29,0xc6,0xc5,0x69,0x71,0xf9,0xd2,0xbe,0x0c,0x3a,0xa3, + 0x1b,0x03,0x0e,0x73,0x07,0x0e,0xe3,0x2b,0x75,0xdb,0xd0,0x95,0x22,0xa2,0xcc,0x6a,0x1d,0x4a,0x10,0x8b, + 0xbc,0x0d,0xb0,0xb7,0x6f,0x8f,0x89,0x6a,0x2d,0xf1,0x5d,0x2c,0x2b,0xbf,0xa3,0x44,0x10,0x76,0x24,0xc6, + 0x84,0xd5,0x75,0x1d,0x6b,0xbe,0x8d,0x91,0x08,0xea,0xd8,0x70,0x4a,0xd6,0xe1,0x83,0xf4,0x1e,0xc8,0x57, + 0xa2,0x80,0xba,0xe7,0xa9,0x88,0x98,0x8e,0x26,0x79,0x36,0xad,0x4c,0x35,0x21,0xdf,0x99,0x51,0x77,0x29, + 0x45,0x1d,0x74,0x8f,0xcc,0xd0,0xd4,0x84,0x6b,0x44,0x08,0xe1,0x7a,0x0d,0xd0,0xf2,0x66,0x62,0xca,0x11, + 0xa9,0x42,0xce,0x86,0xe7,0x0d,0x11,0xbb,0x4c,0xa9,0x74,0xa6,0x23,0xef,0xfb,0xfd,0xfd,0xd7,0x3d,0xfd, + 0xb3,0x37,0x86,0x41,0x80,0xd7,0xaf,0x0b,0x0c,0xd4,0xe5,0x85,0x14,0x16,0x78,0x8f,0x60,0xab,0xa8,0x73, + 0xbd,0xc8,0xc4,0x3a,0x94,0x91,0x36,0xa1,0x01,0x81,0xcc,0xfc,0x2a,0xe8,0x7b,0x87,0xf9,0x61,0xee,0xf5, + 0xcb,0x90,0xe3,0xe0,0x59,0x32,0xeb,0x6b,0x0d,0xf5,0x93,0x0f,0x59,0xc1,0xbe,0xbd,0x7d,0x6f,0x27,0x99, + 0x67,0x3b,0xea,0xde,0x6f,0x02,0x30,0x81,0x59,0x2b,0xa8,0x7d,0xa5,0x22,0x94,0xf9,0x7a,0x06,0xb1,0xa4, + 0x10,0xf0,0x0e,0x54,0x48,0xc6,0x81,0xbb,0x7a,0x03,0xb0,0x6e,0x70,0x97,0xce,0xd0,0x68,0x1d,0x6e,0x2f, + 0x50,0x43,0xb6,0x44,0xc9,0x9f,0x35,0xec,0xfa,0x9a,0xfc,0xdc,0xa1,0xd7,0x35,0xff,0xcc,0xf0,0x2d,0x0b, + 0x3f,0x3d,0x05,0x25,0xd2,0xfe,0xbc,0x55,0x17,0xeb,0xa2,0xcf,0x5d,0x75,0xae,0xf5,0xa7,0x56,0x5d,0xf5, + 0xa7,0x86,0xec,0x48,0xa1,0x3f,0x6b,0xe0,0x9a,0x58,0xd9,0x61,0x3b,0xe3,0x8e,0xf1,0xc3,0xa7,0x72,0xf7, + 0x14,0x34,0xe2,0x32,0xa4,0x94,0x24,0x0f,0xd4,0xcf,0xd5,0xaa,0x4d,0x2a,0xa9,0x12,0x6e,0xea,0x6a,0xb5, + 0xeb,0xd0,0x4c,0x6d,0xa7,0xd1,0xa6,0x9a,0x14,0x0a,0x82,0xfa,0x1e,0xdb,0x1d,0x96,0x0f,0x1b,0xd9,0x3a, + 0x92,0x41,0xd9,0xef,0xeb,0x90,0x6b,0x8d,0x12,0x07,0xe5,0x11,0x61,0x5a,0x53,0x5e,0xc2,0x95,0xd5,0x56, + 0x50,0x51,0x36,0xa8,0x7f,0x58,0xa3,0xdb,0x87,0x6c,0x20,0x1b,0x58,0xbf,0x90,0xa9,0x67,0x9f,0x39,0x13, + 0x37,0x17,0xa3,0x5b,0xe1,0xd1,0xee,0x68,0x17,0x29,0x6a,0xda,0xf6,0x7d,0xd9,0x2a,0x68,0x8a,0x11,0x0d, + 0x74,0x2e,0x3a,0x6f,0xfe,0xde,0xed,0x8c,0xa6,0xf2,0x71,0xf1,0x6a,0xfa,0x6b,0x9a,0x9e,0x05,0x8f,0x68, + 0x6c,0x4a,0xf1,0xcd,0xbf,0xdb,0xca,0xba,0x34,0xda,0x6f,0xfe,0xfd,0x76,0x3d,0xad,0x01,0xe7,0x7f,0xd5, + 0xca,0x9b,0x8a,0x12,0x9c,0xbf,0xf7,0x65,0x2b,0x6b,0xa1,0x55,0xe1,0xfc,0x7b,0xed,0x0e,0x17,0xa2,0x0f, + 0xe7,0x7f,0xd9,0xea,0x0e,0x41,0xe4,0xea,0x05,0xc7,0xbc,0x62,0xf8,0xf7,0xf9,0x74,0x80,0xb7,0x21,0xdc, + 0x80,0x7d,0xe3,0xf5,0xe4,0xcf,0x01,0xbe,0x30,0x04,0x9f,0x7b,0x74,0xcd,0x5c,0xa4,0xfa,0x9f,0x39,0xc3, + 0xee,0xe8,0x6b,0xf4,0xc3,0xe4,0xee,0x67,0xe2,0x7c,0xaa,0xb2,0xa3,0x8c,0x4d,0xba,0xcf,0x70,0xd7,0x81, + 0x0a,0x6c,0xd7,0x2e,0x5b,0x08,0x58,0x08,0x56,0x8d,0xe3,0xed,0xb1,0xef,0xe7,0xdd,0x61,0xa1,0xcf,0x96, + 0x3a,0x52,0x85,0x3e,0x52,0xfa,0xaa,0x80,0xcb,0x36,0x0e,0x3b,0x55,0x8e,0x88,0x90,0x88,0x16,0x5b,0xf4, + 0xc5,0x21,0xbf,0xb7,0xe0,0x69,0xd6,0x89,0x27,0x48,0x1c,0x73,0x98,0xf5,0xe3,0xc5,0x1a,0xb7,0x0d,0x8d, + 0x37,0x4e,0xc2,0x74,0xe0,0xd0,0xfa,0xf1,0x0b,0x38,0x91,0x9f,0xce,0x0a,0x84,0x37,0xdc,0xd1,0x9d,0x06, + 0x56,0x31,0x06,0x9a,0x75,0xeb,0xd1,0xb2,0x7b,0xb1,0x52,0x45,0x08,0x73,0xa8,0x50,0xf9,0xc4,0x2c,0x65, + 0xf1,0xe6,0xc4,0x8a,0xb5,0xaf,0x9e,0xb0,0x66,0xd1,0xec,0x8b,0x65,0xa0,0x53,0x1d,0x9e,0xcd,0x29,0x61, + 0x65,0x18,0x4e,0xce,0x29,0xa0,0x12,0x85,0xb7,0x73,0x73,0x28,0xa5,0x66,0xf4,0x9c,0x2c,0x9d,0x2a,0x9c, + 0x9f,0x93,0x85,0x14,0x30,0x82,0x4e,0x62,0x36,0xb7,0x79,0x42,0xb7,0x17,0x93,0x6e,0xd8,0x44,0x27,0x5f, + 0x25,0xae,0x9b,0xe0,0x83,0xa8,0xcc,0x9f,0x08,0xd4,0x8d,0x6d,0x21,0x88,0x6e,0x51,0xd1,0xf5,0x46,0x10, + 0xad,0xac,0x77,0xb2,0xfb,0xc2,0x35,0x9c,0x99,0xd9,0xc5,0xea,0xba,0x5d,0x54,0x37,0x30,0xd8,0x1f,0xfe, + 0x6a,0xf6,0x9d,0x33,0x09,0xdf,0x45,0x7a,0x79,0x8e,0xe9,0x01,0xce,0xa1,0x9e,0x6f,0xd5,0x39,0xdf,0xca, + 0x99,0xaf,0xb9,0x89,0xbb,0x38,0x06,0x67,0xae,0x9d,0x4c,0xdf,0x46,0xd8,0x55,0x4c,0x05,0x91,0x57,0x27, + 0x29,0x1d,0x49,0x93,0x60,0x68,0x76,0xcd,0xc4,0xdb,0x5d,0xaa,0x00,0x96,0x6e,0xed,0x7e,0x3f,0x74,0x13, + 0x24,0xb2,0x65,0x6f,0x2f,0x32,0xc9,0x66,0x38,0xb1,0xb7,0xe3,0x59,0xb1,0x2a,0x7b,0x77,0x3b,0xcb,0x6c, + 0x3b,0x65,0xee,0x75,0x96,0x39,0x3c,0x74,0x0a,0xdd,0xef,0x2c,0xb4,0xf2,0xc2,0xe6,0x4c,0xd7,0xeb,0xf0, + 0xee,0x83,0x5d,0x5e,0xae,0x36,0xbb,0x65,0xaf,0x16,0xb3,0x06,0x66,0x11,0x94,0x2b,0xc0,0x7a,0x89,0xa8, + 0x05,0x42,0x90,0x9a,0x91,0x86,0xf6,0x52,0x8b,0x98,0x36,0x4e,0x0f,0x6b,0xc9,0x95,0x3e,0xa6,0xfa,0x2e, + 0xd7,0xae,0xec,0x6d,0x4b,0x07,0x4f,0xc7,0x09,0xdd,0x54,0x57,0x88,0x69,0xb5,0xca,0xbb,0x91,0x5a,0x48, + 0xd5,0x92,0x3e,0x72,0x04,0x69,0x43,0xb5,0x0d,0x6a,0x81,0xf8,0xcf,0x03,0x5d,0x4e,0x5c,0x2d,0xea,0x15, + 0x76,0x2b,0x63,0x0c,0x9c,0xf1,0x65,0xa4,0x9f,0x28,0xba,0xc6,0xb9,0xee,0x5e,0x82,0xfd,0xf4,0x43,0xf5, + 0xe7,0x96,0xa1,0xc7,0xc7,0xa5,0x5d,0x0c,0x02,0x6f,0xf3,0xf4,0xe1,0x05,0x9f,0xb9,0x3e,0x9f,0xd0,0x36, + 0x6c,0x60,0xa8,0x5d,0xb5,0x5e,0x9f,0x50,0x41,0x4c,0x64,0x74,0x95,0xbb,0x9f,0x52,0xc5,0xb1,0x9c,0xd1, + 0x35,0xf5,0xca,0xf7,0x36,0xcd,0x25,0x9b,0x6b,0xf8,0xfe,0x84,0x2e,0x1c,0xf3,0x1b,0xdd,0xc5,0x83,0xcf, + 0xa8,0x99,0x89,0x39,0x8e,0xae,0xda,0xdc,0xfe,0x9b,0xf6,0xa7,0x06,0x0d,0x04,0x4d,0x6e,0xe9,0xe2,0x5c, + 0x7f,0x8d,0x8e,0x2c,0x39,0x41,0xda,0x92,0x53,0xb1,0x04,0x20,0xda,0xcc,0xd5,0xfd,0x49,0xbe,0xb4,0x9e, + 0xcb,0xe7,0x52,0x58,0xcd,0x01,0x76,0x61,0xe8,0x9b,0x67,0x04,0x6a,0xa3,0xa1,0x83,0xd4,0x7d,0x4d,0xf1, + 0x21,0x52,0x2b,0x65,0xa3,0xfe,0x5d,0x96,0xe9,0xd9,0xc2,0x7b,0x22,0xab,0x84,0xe2,0xc2,0xf3,0x01,0xdc, + 0x71,0xc2,0x2c,0x64,0xc8,0x3e,0xf1,0xe0,0x61,0xd7,0x9b,0x66,0xf0,0x34,0x66,0xe4,0x8e,0xb4,0x98,0xdf, + 0x48,0xfc,0xee,0x27,0x1f,0x9f,0x73,0xb6,0x8c,0xe3,0x5b,0x14,0xe3,0x30,0xe9,0xe9,0x02,0x8e,0x38,0x95, + 0xec,0x82,0x25,0xe2,0x34,0xa1,0xe8,0xde,0x97,0xe9,0xfd,0xb0,0xc8,0x7f,0x71,0x1f,0x0e,0x9c,0x98,0x4d, + 0xcd,0x81,0x31,0xf9,0x55,0xc2,0xa3,0x99,0xbf,0xb7,0xbb,0xfb,0x85,0x60,0xe6,0x74,0xb2,0x43,0x50,0x55, + 0x54,0x09,0x62,0xd0,0x0f,0x5b,0xd7,0x6e,0xad,0x75,0x85,0xe8,0x21,0xff,0xf5,0x77,0xae,0xbb,0x19,0xdd, + 0xd7,0x6e,0x63,0x5a,0x96,0x4c,0x14,0xdf,0x37,0xae,0x2c,0xad,0x2a,0x3f,0x75,0x70,0xe4,0xba,0xb5,0x88, + 0x9f,0x95,0xd4,0xf5,0xa6,0xdb,0x7a,0xb5,0x4a,0xbb,0x84,0xb5,0xe0,0x08,0x25,0xb0,0x66,0x43,0x5e,0x2b, + 0x52,0x80,0xa6,0x10,0xb7,0x5b,0x20,0xa7,0x21,0x54,0x09,0x28,0xe9,0x9a,0xdc,0xdd,0x0d,0x82,0xb5,0xa3, + 0xed,0xd6,0x3d,0x3c,0x0e,0x4f,0x68,0xf5,0xf2,0xd7,0x7b,0x0d,0x9d,0xfa,0x80,0xf2,0x8e,0x06,0xf1,0x7a, + 0xd2,0x2d,0xba,0xde,0xb5,0x48,0xfa,0x76,0xe0,0x74,0x8e,0x99,0xce,0xab,0xae,0xd9,0x8e,0x9c,0xd8,0x0e, + 0x37,0x38,0x79,0x83,0x73,0x58,0x07,0x43,0xcd,0x55,0x54,0x12,0x0a,0x4a,0x4b,0x07,0xd0,0xf8,0xc6,0x36, + 0xcb,0x7e,0xac,0x52,0x0f,0xf2,0x23,0x79,0x37,0x1d,0x5e,0xc3,0x93,0x94,0x3b,0x6e,0x1b,0xc1,0x5a,0xa4, + 0x0b,0x2a,0x44,0xf2,0xc6,0x6e,0x94,0xc0,0xbc,0xd9,0x15,0xc6,0xbc,0x41,0xb2,0xdf,0xa6,0x6e,0x6d,0x0e, + 0x2f,0xbc,0x6a,0x88,0x55,0xf6,0xd2,0x7b,0xa2,0xd5,0xb0,0x88,0xb2,0xbf,0x42,0xc0,0x5b,0x5b,0x7d,0x1d, + 0xf1,0xae,0x36,0x1d,0xd2,0xee,0xa6,0xea,0xe4,0xe6,0xf3,0x21,0x05,0x04,0xf4,0x9a,0x6f,0x7a,0x35,0x41, + 0xcf,0x57,0x07,0x74,0x81,0x17,0xd1,0xce,0x0e,0xde,0x88,0x94,0xfa,0x2f,0xad,0xc1,0x82,0x55,0x80,0x91, + 0xc6,0x2b,0x72,0x92,0x16,0x10,0xc4,0xee,0xbc,0x5f,0x30,0xdf,0x26,0xa1,0x80,0xa2,0x2b,0x6d,0x42,0x51, + 0x77,0x19,0x9e,0xa5,0x60,0x75,0x84,0x2b,0x18,0xd4,0xef,0x4e,0xeb,0xd6,0x4a,0x6d,0xe6,0x94,0x81,0x10, + 0xe8,0x9a,0x5d,0x20,0x92,0x9a,0x93,0xa0,0xb6,0xf9,0xd1,0xae,0x91,0xe2,0x3b,0xd9,0xf0,0x13,0x4d,0x03, + 0x3d,0x4f,0xab,0xf2,0xa3,0x19,0xd0,0xd0,0x0c,0x66,0x96,0x54,0x70,0x1e,0x9d,0x54,0x61,0x9d,0x44,0x48, + 0x2a,0xc7,0xbf,0x9f,0x2c,0x1d,0x71,0x77,0x60,0xc3,0xbe,0xb5,0x57,0xdc,0xe2,0xbf,0x3e,0x41,0x7a,0xc8, + 0x71,0x9d,0xcc,0xf5,0x66,0xb1,0xd3,0xc3,0xfa,0xf4,0x1a,0x39,0x60,0x43,0xd2,0xa3,0x89,0xc8,0xa6,0x30, + 0xb0,0x59,0xcc,0xcd,0x76,0x5f,0x6d,0xf5,0xd9,0x6a,0xd6,0x70,0x25,0x7e,0xb9,0x16,0x4f,0xc0,0x11,0x70, + 0x77,0x51,0x3a,0x7d,0xc4,0x52,0x6e,0x16,0xfd,0x95,0x96,0xe8,0xcf,0x91,0xfb,0x95,0xb6,0x74,0xce,0x08, + 0xfd,0xca,0x7a,0x72,0x98,0x52,0xd9,0x10,0xe1,0x95,0xce,0x8b,0x18,0x65,0x1b,0xb1,0x60,0x58,0x8b,0xc7, + 0x22,0xbf,0x1c,0x88,0x7c,0x6f,0xb4,0x17,0xed,0x06,0x2b,0xfa,0xa9,0x84,0x7a,0xa3,0xbb,0xea,0xb7,0x91, + 0xe4,0x8d,0xee,0xeb,0x12,0x4a,0x7c,0x37,0xfa,0x4a,0x25,0x88,0xcc,0x6e,0xb4,0xf7,0xa5,0xfa,0xad,0x05, + 0x75,0xa3,0x7b,0xba,0x11,0x91,0xce,0x8d,0xbe,0x44,0x13,0x74,0x74,0x5b,0x38,0xc6,0x15,0x05,0x87,0xd5, + 0x5f,0x95,0x04,0x34,0x44,0x76,0xd7,0xcb,0x02,0xe8,0xa2,0xa5,0xa3,0x6b,0x3f,0xbe,0x37,0xdf,0x8e,0x36, + 0x6c,0x7d,0x6b,0x07,0x5d,0x71,0x6d,0x2d,0x9f,0x25,0x1c,0x53,0x0b,0x65,0x1f,0xdc,0x6f,0x08,0x5f,0x8d, + 0x88,0x75,0xab,0x16,0xa9,0x6e,0xd9,0x22,0xd4,0x2d,0x4b,0x64,0xba,0x65,0x44,0xa4,0x5b,0x96,0x44,0x74, + 0xcb,0x08,0x40,0x25,0x48,0xac,0xf8,0xd1,0xe8,0x9c,0x52,0x7a,0xfd,0x9c,0x54,0x94,0xe0,0x14,0x51,0x82, + 0x3b,0xf5,0xc4,0xff,0x9a,0xc0,0xab,0x29,0xfa,0x0c,0x5b,0xe2,0xcc,0xbf,0xba,0xf5,0x2d,0xd1,0xe6,0xcd, + 0x82,0xa0,0x89,0x2b,0x0f,0xdd,0xbc,0xfd,0x32,0xc2,0x6b,0x01,0xc0,0xda,0xf2,0x79,0x96,0x47,0x77,0xc3, + 0x89,0xb1,0xcb,0xdd,0xab,0x77,0x66,0x43,0x7f,0xad,0xbd,0x69,0x76,0xe8,0xec,0x0e,0x22,0xb9,0x64,0x94, + 0x92,0x30,0xb8,0x77,0x3e,0xec,0x7a,0xde,0x10,0xaa,0x4e,0x39,0x11,0x1b,0x8f,0xe2,0xdd,0x91,0xd7,0xf7, + 0x22,0x6f,0xdb,0xd3,0x04,0xbb,0xaf,0x48,0x8c,0xe4,0x78,0x41,0x5d,0x07,0xff,0xe3,0xcb,0x5d,0x2d,0xe5, + 0xa5,0x0a,0x16,0xf1,0x91,0xee,0x7c,0xb9,0x1b,0xa0,0x6a,0x58,0x3e,0xdc,0xdb,0x95,0xf6,0xbc,0x5d,0x2f, + 0x08,0xe9,0x6f,0xa9,0x84,0x4b,0xb6,0x36,0x50,0x37,0x88,0x74,0x4a,0x8e,0x3f,0xfb,0xc5,0xad,0xee,0x26, + 0xbe,0x12,0x8d,0x6c,0x90,0x04,0xb4,0xf0,0xa2,0x83,0xad,0xee,0x40,0xfe,0x51,0x2b,0x40,0xab,0x54,0xfd, + 0x5b,0xab,0x4f,0xeb,0x0b,0x93,0x7f,0xad,0x3f,0xf3,0xe9,0x51,0x08,0x15,0x91,0x15,0x6d,0x98,0x3c,0xef, + 0xa5,0x3d,0x62,0x79,0xb0,0x16,0x59,0xe5,0x35,0x55,0x1a,0x4d,0xfa,0xfc,0x92,0xbc,0x80,0x53,0x18,0x2b, + 0x95,0xa7,0xbd,0x21,0x86,0x81,0xd5,0xe7,0xa0,0x5e,0xa4,0x87,0x7b,0x6b,0xd6,0x49,0xbf,0xa6,0x11,0xba, + 0x6b,0x77,0xe3,0xf8,0x9a,0x36,0x02,0x1d,0xc9,0xc3,0xce,0xe6,0xd5,0x7e,0xb8,0x37,0xea,0xce,0x88,0xf7, + 0xa2,0xee,0x8c,0x47,0x7b,0x5f,0x6a,0x6d,0xd2,0x8e,0x4a,0x5f,0xaa,0xc7,0x75,0x3b,0x4b,0x76,0x4a,0x13, + 0x3e,0xdd,0x35,0x83,0x4d,0xb5,0xd4,0xd9,0xd9,0x50,0x6b,0x08,0xd2,0x1d,0x5e,0x6d,0xfc,0xe1,0xf5,0xdd, + 0x3e,0xec,0x6e,0x60,0xb8,0xb1,0x5f,0x41,0x12,0xa2,0x39,0xb9,0xcb,0xaa,0x92,0xd0,0xdd,0x24,0xb6,0xe1, + 0x9a,0x65,0xee,0xf7,0xc3,0xbb,0xd7,0xee,0x83,0x0a,0xab,0xdb,0x04,0x25,0x80,0x8a,0x55,0xe1,0x13,0x59, + 0x47,0xab,0x81,0xd5,0x0a,0x30,0xca,0x0c,0xe3,0xd8,0x4e,0x75,0x98,0xc8,0xa6,0x7a,0x8f,0xc5,0xd4,0xb5, + 0x34,0x7f,0xae,0x67,0xed,0x1a,0x43,0x77,0xd8,0xca,0x9b,0x31,0x8a,0x28,0x70,0xb8,0x43,0xed,0x1e,0xcb, + 0x9f,0x61,0x3b,0xbb,0xc6,0x16,0x76,0xb4,0x6d,0xb3,0xa0,0x1d,0x8a,0x4f,0x1b,0x18,0x2a,0xe2,0x1b,0x04, + 0x63,0xa5,0x6d,0x58,0xaa,0x11,0x97,0x9b,0xd9,0xc4,0x5f,0x69,0x07,0xb8,0xfd,0x75,0x1e,0xcc,0x9a,0xc3, + 0x75,0xb7,0xa7,0xb3,0x02,0x72,0x91,0xca,0xdd,0xf6,0xa6,0x56,0xcd,0xfc,0x5c,0xed,0x91,0xf1,0x19,0x1b, + 0xe7,0xec,0x48,0x43,0x5d,0x77,0x83,0x56,0x17,0x19,0x58,0x1a,0xa1,0xfc,0x44,0xb1,0x30,0x52,0x47,0xd5, + 0x39,0x0f,0xea,0x13,0xd9,0x98,0x2e,0x93,0x21,0x20,0x77,0xa8,0x50,0x9e,0xcf,0x97,0xd0,0xdd,0xbb,0x22, + 0x0c,0xfc,0x73,0x6d,0x7f,0xd6,0x46,0xbc,0x38,0x20,0x0a,0x7b,0x37,0x07,0xb8,0x5a,0xdd,0xbd,0x2e,0xf3, + 0xde,0x75,0x99,0x76,0x46,0x3d,0x4e,0xb9,0xfc,0x6b,0x37,0x51,0x0d,0x91,0x7a,0x73,0x2c,0xec,0xaf,0xda, + 0x89,0x8c,0x2b,0x0a,0xc9,0x08,0x04,0xe7,0x13,0x07,0xff,0x45,0xab,0x70,0x08,0x25,0x67,0xea,0xe3,0xfb, + 0x62,0x59,0x72,0xac,0x12,0x5c,0xf8,0x7d,0x4e,0x7a,0x21,0x5e,0x55,0x29,0xb1,0xe4,0x44,0x8b,0x50,0x30, + 0xd4,0x44,0xb3,0x3d,0x51,0xe4,0x05,0x19,0x81,0xff,0xc2,0xac,0xae,0x78,0x7d,0x69,0x22,0x49,0xc2,0x24, + 0xde,0x50,0xc0,0xa6,0x68,0xfa,0xa5,0xd6,0x7b,0xdc,0xbe,0xcb,0xa4,0x4a,0x3f,0xb3,0x12,0x4c,0xd0,0x28, + 0xce,0xc9,0x9d,0xa2,0x3d,0xdf,0xeb,0x27,0x7d,0x8f,0xfd,0x98,0x29,0x95,0x75,0xa3,0x11,0xda,0xd6,0x5a, + 0x37,0x37,0x74,0x2d,0x34,0x01,0x72,0x80,0x4f,0x02,0x90,0xde,0x0d,0x05,0xd2,0xcf,0xaf,0xbf,0xf8,0xbc, + 0x7e,0x95,0x9e,0xb9,0xd5,0xbf,0xd1,0xc2,0xb6,0x11,0x40,0x97,0x9e,0x68,0xec,0xfd,0x8d,0x36,0xb4,0x61, + 0xf5,0xb6,0xa9,0xdf,0xf6,0x9d,0x62,0xf5,0x0e,0x2d,0xf7,0xf5,0xff,0x07,0x7a,0xe4,0xf8,0xf4,0xe7,0x25, + 0x02,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index c6ec2b6..a30c3a4 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 42; +const uint8_t VersionMetadata = 43; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+42"; -const char VersionCommitDate[] = "2018-02-13"; +const char VersionFullSemVer[] = "2.0.0-beta.1+43"; +const char VersionCommitDate[] = "2018-02-16"; #endif diff --git a/src/main.triggers.h b/src/main.triggers.h index cc13065..a76b5c7 100644 --- a/src/main.triggers.h +++ b/src/main.triggers.h @@ -202,6 +202,49 @@ void updateNTPClient() } +uint32_t lastTimeElementsChecked = 0; +uint32_t epochTime = 0; +tmElements_t timeElements; +bool isDayTime = true; + + +tmElements_t* getTimeElements() +{ + if (ntpClient == nullptr || !hasTimezone) + return nullptr; + + if (lastTimeElementsChecked != 0 && currentTime - lastTimeElementsChecked < 10000) + return epochTime > 0 ? &timeElements : nullptr; + + lastTimeElementsChecked = currentTime; + epochTime = ntpClient->getEpochTime(); + if (epochTime == 0) + { + _dln("Triggers:: time not synchronised yet"); + return nullptr; + } + + _dln("Triggers:: updating time elements"); + breakTime(epochTime + timezoneOffset, timeElements); + + + // TODO this is a copy of what is in time.cpp. This code, and probably a lot more + // in this file, could use some cleanup. + Dusk2Dawn location(systemSettings->latitude(), systemSettings->longitude(), timezoneOffset / 3600.0f); + + // DST is always hardcoded as false, since it is already included in timezoneOffset + int16_t sunriseMinutes = location.sunrise(timeElements.Year, timeElements.Month, timeElements.Day, false); + int16_t sunsetMinutes = location.sunset(timeElements.Year, timeElements.Month, timeElements.Day, false); + + int16_t timeMinutes = (timeElements.Hour * 60) + timeElements.Minute; + isDayTime = timeMinutes >= sunriseMinutes && timeMinutes <= sunsetMinutes; + + _d("Triggers:: isDayTime = "); _dln(isDayTime); + + return &timeElements; +} + + void updateTimeTrigger() { if (ntpClient == nullptr || !hasTimezone || !timeTriggerSettings->enabled()) @@ -221,20 +264,14 @@ void updateTimeTrigger() lastTimeTriggerChecked = currentTime; - _dln("Triggers:: updating time trigger"); - - uint32_t epochTime = ntpClient->getEpochTime(); - if (epochTime == 0) + tmElements_t* time = getTimeElements(); + if (time == nullptr) { activeTimeTrigger = nullptr; - _dln("Triggers:: time not synchronised yet"); return; } - tmElements_t time; - breakTime(epochTime + timezoneOffset, time); - - activeTimeTrigger = timeTriggerSettings->getActiveTrigger(time); + activeTimeTrigger = timeTriggerSettings->getActiveTrigger(*time); #ifdef SerialDebug _d("Triggers:: active time trigger: "); @@ -256,6 +293,7 @@ void updateTimeTrigger() } + uint32_t activeMotionStart = 0; uint16_t activeMotionBrightness = 0; MotionDirection activeMotionDirection = Nondirectional; @@ -270,6 +308,13 @@ void updateMotionTrigger() return; } + if (!motionTriggerSettings->enabledDuringDay() && isDayTime) + { + activeMotionStart = 0; + return; + } + + for (uint8_t i = 0; i < motionTriggerSettings->triggerCount(); i++) { MotionTrigger* trigger = motionTriggerSettings->trigger(i); @@ -286,7 +331,7 @@ void updateMotionTrigger() } } - if (currentTime - activeMotionStart >= motionTriggerSettings->delay()) + if (activeMotionStart != 0 && currentTime - activeMotionStart >= motionTriggerSettings->delay()) activeMotionStart = 0; } diff --git a/src/settings/triggers/motion.cpp b/src/settings/triggers/motion.cpp index 0fc04b3..5fb0fa3 100644 --- a/src/settings/triggers/motion.cpp +++ b/src/settings/triggers/motion.cpp @@ -18,6 +18,7 @@ void MotionTriggerSettings::toJson(Print &print) JsonObject& root = jsonBuffer.createObject(); root["enabled"] = enabled(); root["enabledDuringTimeTrigger"] = enabledDuringTimeTrigger(); + root["enabledDuringDay"] = enabledDuringDay(); root["transitionTime"] = transitionTime(); root["delay"] = delay(); @@ -52,6 +53,7 @@ bool MotionTriggerSettings::fromJson(char* data, bool* changed) enabled(root["enabled"]); enabledDuringTimeTrigger(root["enabledDuringTimeTrigger"]); + enabledDuringDay(root["enabledDuringDay"]); transitionTime(root["transitionTime"]); delay(root["delay"]); diff --git a/src/settings/triggers/motion.h b/src/settings/triggers/motion.h index cda7176..0cf984d 100644 --- a/src/settings/triggers/motion.h +++ b/src/settings/triggers/motion.h @@ -34,8 +34,9 @@ class MotionTriggerSettings : public AbstractJsonSettings private: bool mEnabled = false; bool mEnabledDuringTimeTrigger = false; - uint16_t mTransitionTime = 0; - uint32_t mDelay = 0; + bool mEnabledDuringDay = false; + uint16_t mTransitionTime = 500; + uint32_t mDelay = 30000; uint8_t mTriggerCount = 0; MotionTrigger* mTriggers = nullptr; @@ -54,6 +55,9 @@ class MotionTriggerSettings : public AbstractJsonSettings bool enabledDuringTimeTrigger() { return mEnabledDuringTimeTrigger; } void enabledDuringTimeTrigger(bool value) { mEnabledDuringTimeTrigger = value; } + bool enabledDuringDay() { return mEnabledDuringDay; } + void enabledDuringDay(bool value) { mEnabledDuringDay = value; } + uint16_t transitionTime() { return mTransitionTime; } void transitionTime(uint16_t value) { mTransitionTime = value; } diff --git a/web/app.js b/web/app.js index 096969f..66353c8 100644 --- a/web/app.js +++ b/web/app.js @@ -174,6 +174,7 @@ function startApp() motion: { enabled: false, enabledDuringTimeTrigger: false, + enabledDuringDay: false, transitionTime: null, delay: null, triggers: [] diff --git a/web/dist/bundle.css b/web/dist/bundle.css index 8c8dcca..fb521b2 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -html{box-sizing:border-box;font-size:62.5%}*,:after,:before{box-sizing:inherit}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,button,h3,input[type=submit],select{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active,button.active,button:active,input[type=number],input[type=password],input[type=submit].active,input[type=submit]:active,input[type=text],textarea{border:1px solid #111;border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}button,input{font-family:Verdana,Arial,sans-serif}.button,button,input[type=submit]{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer;line-height:3rem}.button.focus,.button:focus,.button:hover,button.focus,button:focus,button:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active,button.active,button:active,input[type=submit].active,input[type=submit]:active{color:#ccc;background:#282828}.button-primary,input[type=submit]{background:#2265a1}.button-primary.focus,.button-primary:focus,.button-primary:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{background:#2672b6}a.button{text-decoration:none}.navigation{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.check.disabled,.radio.disabled{cursor:not-allowed}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:4px;left:4px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}.form-control{margin-top:1em}input[type=number],input[type=password],input[type=text],textarea{background:#404040;color:#fff;padding:.5em;width:100%}select{background:#404040;color:#fff;padding:.5em}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background:#282828;font-size:1.2rem;padding:.5rem}h4{font-size:1.4rem}input[disabled]{cursor:not-allowed;color:grey;background:#262626}label{display:block;margin-top:.5em;margin-bottom:.5em}.label-inline{margin-right:2rem}@media screen and (min-width:768px){.horizontal{clear:both}.horizontal label{display:inline-block}.horizontal input[type=number],.horizontal input[type=password],.horizontal input[type=text],.horizontal textarea{display:inline-block;float:right;width:50%}.horizontal:after{clear:both}}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{clear:both;text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slidercontainer{margin-top:1rem}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background:#404040;color:#fff}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header .label,.panel .panel-header a{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background:#303030;padding:2rem}.panel.active .panel-header{background:#3b4a58;color:#fff}.inline{display:inline-block;width:auto}.weekdays{margin-top:1rem}.weekdays .label{width:8em}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0}.range{clear:both}.range .start{position:relative;display:inline-block;width:49%}.range .start .slidercontainer{margin-right:4em}.range .start .value{position:absolute;right:0;top:1.5rem;color:grey}.range .end{position:relative;display:inline-block;float:right;width:50%}.range .end .slidercontainer{margin-left:4em}.range .end .value{position:absolute;left:0;top:1.5rem;color:grey}.range:after{clear:both}.resetReason{margin-left:2em} \ No newline at end of file +html{box-sizing:border-box;font-size:62.5%}*,:after,:before{box-sizing:inherit}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,button,h3,input[type=submit],select{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active,button.active,button:active,input[type=number],input[type=password],input[type=submit].active,input[type=submit]:active,input[type=text],textarea{border:1px solid #111;border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}button,input{font-family:Verdana,Arial,sans-serif}.button,button,input[type=submit]{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer;line-height:3rem}.button.focus,.button:focus,.button:hover,button.focus,button:focus,button:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active,button.active,button:active,input[type=submit].active,input[type=submit]:active{color:#ccc;background:#282828}.button-primary,input[type=submit]{background:#2265a1}.button-primary.focus,.button-primary:focus,.button-primary:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{background:#2672b6}a.button{text-decoration:none}.navigation{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.check.disabled,.radio.disabled{cursor:not-allowed}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:4px;left:4px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}.form-control{margin-top:1em}input[type=number],input[type=password],input[type=text],textarea{background:#404040;color:#fff;padding:.5em;width:100%}select{background:#404040;color:#fff;padding:.5em}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background:#282828;font-size:1.2rem;padding:.5rem}h4{font-size:1.4rem}input[disabled]{cursor:not-allowed;color:grey;background:#262626}label{display:block;margin-top:.5em;margin-bottom:.5em}.label-inline{margin-right:2rem}@media screen and (min-width:768px){.horizontal{clear:both}.horizontal label{display:inline-block}.horizontal input[type=number],.horizontal input[type=password],.horizontal input[type=text],.horizontal textarea{display:inline-block;float:right;width:50%}.horizontal:after{clear:both}}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{clear:both;text-align:center;margin-top:1rem}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slidercontainer{margin-top:1rem}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background:#404040;color:#fff}.panel .panel-header label{font-size:1em}.panel .panel-header .actions{float:right}.panel .panel-header .label,.panel .panel-header a{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background:#303030;padding:2rem}.panel.active .panel-header{background:#3b4a58;color:#fff}.inline{display:inline-block;width:auto}.weekdays{margin-top:1rem}.weekdays .label{width:8em}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0}.range{clear:both}.range .start{position:relative;display:inline-block;width:49%}.range .start .slidercontainer{margin-right:4em}.range .start .value{position:absolute;right:0;top:1.5rem;color:grey}.range .end{position:relative;display:inline-block;float:right;width:50%}.range .end .slidercontainer{margin-left:4em}.range .end .value{position:absolute;left:0;top:1.5rem;color:grey}.range:after{clear:both}.resetReason{margin-left:2em} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 094d7ae..3713616 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new o(e),n=a(o.prototype.request,t);return i.extend(n,o.prototype,t),i.extend(n,t),n}var i=n(2),a=n(3),o=n(5),s=n(6),c=r(s);c.Axios=o,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function a(e){return"[object Function]"===l.call(e)}function o(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(o)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),a=n(12),o=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),a(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?o(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,a){var o=new Error(e);return r(o,t,n,i,a)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var a;if(n)a=n(t);else if(i.isURLSearchParams(t))a=t.toString();else{var o=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),o.push(r(t)+"="+r(e))}))}),a=o.join("&")}return a&&(e+=(-1===e.indexOf("?")?"?":"&")+a),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,a,o={};return e?(r.forEach(e.split("\n"),function(e){if(a=e.indexOf(":"),t=r.trim(e.substr(0,a)).toLowerCase(),n=r.trim(e.substr(a+1)),t){if(o[t]&&i.indexOf(t)>=0)return;o[t]="set-cookie"===t?(o[t]?o[t]:[]).concat([n]):o[t]?o[t]+", "+n:n}}),o):o}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,a=String(e),o="",s=0,c=r;a.charAt(0|s)||(c="=",s%1);o+=c.charAt(63&t>>8-s%1*8)){if((i=a.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return o}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,a,o){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(a)&&s.push("domain="+a),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),a=n(19),o=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=a(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=a(t.data,t.headers,e.transformResponse),t},function(t){return o(t)||(r(e),t&&t.response&&(t.response.data=a(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function a(e){return"[object Object]"===mn.call(e)}function o(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(o||"")+"_"+s))[0])&&X(u)&&(f[l]=C(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=C(u.text+c):""!==c&&f.push(C(c)):X(c)&&X(u)?f[l]=C(u.text+c.text):(n(a._isVList)&&t(c.tag)&&e(c.key)&&t(o)&&(c.key="__vlist"+o+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[a],r[a],i[a]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function De(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var a in n){var o=n[a];if(o){var s=Pe(o.componentOptions);s&&!t(s)&&Le(n,a,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,a=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===a?(h=i+1,a=e.slice(0,i).trim()):t();if(void 0===a?a=e.slice(0,i).trim():0!==h&&t(),o)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=Kr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Wr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(a=t)._withTask||(a._withTask=function(){hr=!0;var e=a.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var a}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},a=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,a,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,a,o=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(o[i]="");for(i in l){if(a=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),a===s[i])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===i){o._value=a;var u=e(a)?"":String(a);d=u,!(f=o).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(o.value=u)}else o[i]=a}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?Ci(e):e}function gt(n,r){var i=r.data,a=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(a.staticStyle)&&e(a.style))){var o,s,c=r.elm,l=a.staticStyle,u=a.normalizedStyle||a.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var a=e;a=a.parent;)a.data&&(n=vt(a.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(o=p[s])!==f[s]&&Ai(c,s,null==o?"":o)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Di(e.name||"v")),v(t,e),t}return"string"==typeof e?Di(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function Ct(e,t,n){var r=St(e,t),i=r.type,a=r.timeout,o=r.propCount;if(!i)return n();var s=i===ji?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=o&&l()};setTimeout(function(){c0&&(n=ji,u=o,f=a.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(o,l))>0?o>l?ji:Ii:null)?n===ji?a.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===ji&&Bi.test(r[Li+"Property"])}}function xt(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&$t(t)}function jt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var a,o,s=0,c=e.options.length;s-1,o.selected!==a&&(o.selected=a);else if(y(Ft(o),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var a in i)t[wn(a)]=i[a];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var a=e.elm.style;a.transform=a.WebkitTransform="translate("+r+"px,"+i+"px)",a.transitionDuration="0s"}}function qt(e,t){var n=t?Oa:$a;return e.replace(n,function(e){return Aa[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',ka.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,Cn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Sn=function(e,t,n){return!1},xn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Sn,isReservedAttr:Sn,isUnknownElement:Sn,getTagNamespace:g,parsePlatformTagName:xn,mustUseProp:Sn,_lifecycleHooks:On},Dn=/[^\w.$]/,Pn="__proto__"in{},jn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=jn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(jn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!jn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=jn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);Kn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);Sr||(Sr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Dr={lazy:!0};Se(xe.prototype);var Pr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,a,o){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var a=e;Pr.prepatch(a,a)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var a=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){or.shouldConvert=!1;for(var o=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,a=n.length;iparseInt(this.max)&&Le(o,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var a=e.name||n.options.name,o=function(e){this._init(e)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=t++,o.options=L(n.options,e),o.super=n,o.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(o),o.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,$n.forEach(function(e){o[e]=n[e]}),a&&(o.options.components[a]=o),o.superOptions=n.options,o.extendOptions=e,o.sealedOptions=v({},o.options),i[r]=o,o}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&a(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(De),Object.defineProperty(De.prototype,"$isServer",{get:qn}),Object.defineProperty(De.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),De.version="2.5.13";var Wr,Vr,Ur,Hr,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ai=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),oi=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return ai(e)||oi(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},Ci=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Si=/^--/,xi=/\s*!important$/,Ai=function(e,t,n){if(Si.test(t))e.style.setProperty(t,n);else if(xi.test(n))e.style.setProperty(t,n.replace(xi,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,a=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,a):d>b&&m(0,r,f,p)}(c,d,p,a,s):t(p)?(t(r.text)&&S.setTextContent(c,""),h(c,null,p,0,p.length-1,a)):t(d)?m(0,d,0,d.length-1):t(r.text)&&S.setTextContent(c,""):r.text!==i.text&&S.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var a=0;a-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(De.options.directives,Ui),v(De.options.components,qi),De.prototype.__patch__=jn?Wi:g,De.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&jn?Be(e):void 0,t)},De.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",De)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(Ci(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ea=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),ta=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),na=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ra=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ia="[a-zA-Z_][\\w\\-\\.]*",aa="((?:"+ia+"\\:)?"+ia+")",oa=new RegExp("^<"+aa),sa=/^\s*(\/?)>/,ca=new RegExp("^<\\/"+aa+"[^>]*>"),la=/^]+>/i,ua=/^/g,"$1").replace(//g,"$1")),Da(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ua.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fa.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(la);if(y){n(y[0].length);continue}var b=e.match(ca);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(oa);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,a;!(i=e.match(sa))&&(a=e.match(ra));)n(a[0].length),r.attrs.push(a);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===a&&na(n)&&r(a),l(n)&&a===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(ca.test(k)||oa.test(k)||ua.test(k)||fa.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:pa,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,o,l){var u=i&&i.ns||_a(e);Nn&&"svg"===u&&(o=function(e){for(var t=[],n=0;nc&&(s.push(a=e.slice(c,i)),o.push(JSON.stringify(a)));var l=Xe(r[1].trim());o.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function o(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,a=n.children,o=n.parent.$i18n;if(a=(a||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!o)return a;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=a.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&a.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),a.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,o.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[S]();else{if(f=0,!1===(n=p(n)))return!1;h[x]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===D&&"'"===t||u===P&&'"'===t)return l++,r="\\"+t,h[S](),!0}()){if(i=d(t),(a=(s=L[u])[i]||s.else||I)===I)return;if(u=a[0],(o=h[a[1]])&&(r=a[2],r=void 0===r?t:r,!1===o()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,a=r.length,o=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return o(this._getMessages())},R.dateTimeFormats.get=function(){return o(this._getDateTimeFormats())},R.numberFormats.get=function(){return o(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,a,o,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,a,o,s)),s?this._render(l,o,s):l},M.prototype._link=function(e,t,n,r,i,a){var o=n,s=o.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:a);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,a)}o=(f=this._warnDefault(e,u,f,r))?o.replace(l,f):o}return o},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,a,o,s){var c=this._interpolate(t,e[t],i,a,o,s);return r(c)?r(c=this._interpolate(n,e[n],i,a,o,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var a=[],o=arguments.length-4;o-- >0;)a[o]=arguments[o+4];if(!e)return"";var s=i.apply(void 0,a),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(a))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var a=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(a)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,a,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var o=[],s=arguments.length-5;s-- >0;)o[s]=arguments[s+5];return e?(void 0===i&&(i=1),a((c=this)._t.apply(c,[e,t,n,r].concat(o)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],a=arguments.length-3;a-- >0;)r[a]=arguments[a+3];var o=i.apply(void 0,r).locale||t;return this._exist(n[o],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return o(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return o(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,a){var o=t,s=i[o];if((r(s)||r(s[a]))&&(o=n,s=i[o]),r(s)||r(s[a]))return null;var c=s[a],l=o+"__"+a,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(o,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,a=null;return 1===n.length?"string"==typeof n[0]?a=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(a=n[0].key)):2===n.length&&("string"==typeof n[0]&&(a=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,a)},M.prototype.getNumberFormat=function(e){return o(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,a){var o=t,s=i[o];if((r(s)||r(s[a]))&&(o=n,s=i[o]),r(s)||r(s[a]))return null;var c=s[a],l=o+"__"+a,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(o,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,a=null;return 1===n.length?"string"==typeof n[0]?a=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(a=n[0].key)):2===n.length&&("string"==typeof n[0]&&(a=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,a)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var a=e.$i18n;return a._tc.apply(a,[t,a.locale,a._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",deviceTime:"Time: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadStatus:"Could not load system status",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings",loadSteps:"Could not load calibration settings",updateCalibration:"Could not save calibration settings",resetError:"The system reports that it has been reset unexpectedly. The last power up status is:",resetReason:{0:"Normal startup",1:"Unresponsive, reset by hardware watchdog",2:"Unhandled exception",3:"Unresponsive, reset by software watchdog",4:"System restart requested",5:"Wake up from deep sleep",6:"System reset"},stackTrace:"A stack trace is available. Please send it to your nearest developer and/or delete it from this Stairs device to remove this message.",stackTraceDownload:"Download",stackTraceDelete:"Remove",stackTraceDeleteError:"Could not remove stack trace"},calibration:{title:"Calibration wizard",backButton:"Back",count:"Number of steps",nextButton:"Next",applyButton:"Complete",allStepsValue:"Intensity for all steps",ranges:"Min / max values per step",useCurve:"Use logarithmic curve for intensity (recommended for LEDs)"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",deviceTime:"Tijd: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadStatus:"Kan systeemstatus niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan",loadSteps:"Kan kalibratie instellingen niet ophalen",updateCalibration:"Kan kalibratie instellingen niet opslaan",resetError:"Het systeem is onverwachts herstart. De laatste status is:",resetReason:{0:"Normaal opgestart",1:"Reageert niet, herstart door hardware watchdog",2:"Onafgehandelde fout",3:"Reageert niet, herstart door software watchdog",4:"Herstart verzoek door systeem",5:"Wakker geworden uit diepe slaap",6:"Systeem gereset"},stackTrace:"Een stack trace is beschikbaar. Stuur het naar de dichtsbijzijnde ontwikkelaar en/of verwijder het van deze Trap module om dit bericht te verbergen.",stackTraceDownload:"Downloaden",stackTraceDelete:"Verwijderen",stackTraceDeleteError:"Kan stack trace niet verwijderen"},calibration:{title:"Kalibratie wizard",backButton:"Terug",count:"Aantal treden",nextButton:"Volgende",applyButton:"Voltooien",allStepsValue:"Intensiteit voor alle treden",ranges:"Min / max waarden per trede",useCurve:"Gebruik logaritmische curve voor intensiteit (aangeraden voor LEDs)"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("range",{template:'
{{ value.start }}
{{ value.end }}
',props:["value"],mounted:function(){this.oldValue={start:this.value.start,end:this.value.end}},watch:{value:{handler:function(e){e.start!=this.oldValue.start?e.start>e.end&&(e.end=e.start+1,this.$emit("input",e)):e.end!=this.oldValue.end&&e.end0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,a=[],o=0;o0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:1})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&(n+=e>=0?"+":"-");var r=(e=Math.abs(e))%60;return n+=Math.floor(e/60)+":",r<10&&(n+="0"),n+=r},startCalibration:function(){var e=this;axios.get("/api/steps").then(function(t){"object"==typeof t.data&&(e.calibration={wizardStep:0,count:t.data.count,useCurve:t.data.useCurve,ranges:t.data.ranges})}).catch(e.handleAPIError.bind(e,"error.loadSteps"))},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){if(0==this.calibration.wizardStep)if(this.calibration.count<1?this.calibration.count=1:this.calibration.count>16&&(this.calibration.count=16),this.calibration.ranges.length>this.calibration.count)this.calibration.ranges.splice(this.calibration.count);else for(;this.calibration.ranges.length=0?"+":"-")+r.substr(-2)+":"+i.substr(-2);return t+":"+n.substr(-2)+" ("+a+")"}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e},calibration:{handler:function(){this.calibrationChanged()},deep:!0}}})} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new o(e),n=a(o.prototype.request,t);return i.extend(n,o.prototype,t),i.extend(n,t),n}var i=n(2),a=n(3),o=n(5),s=n(6),c=r(s);c.Axios=o,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function a(e){return"[object Function]"===l.call(e)}function o(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(o)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),a=n(12),o=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),a(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?o(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,a){var o=new Error(e);return r(o,t,n,i,a)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var a;if(n)a=n(t);else if(i.isURLSearchParams(t))a=t.toString();else{var o=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),o.push(r(t)+"="+r(e))}))}),a=o.join("&")}return a&&(e+=(-1===e.indexOf("?")?"?":"&")+a),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,a,o={};return e?(r.forEach(e.split("\n"),function(e){if(a=e.indexOf(":"),t=r.trim(e.substr(0,a)).toLowerCase(),n=r.trim(e.substr(a+1)),t){if(o[t]&&i.indexOf(t)>=0)return;o[t]="set-cookie"===t?(o[t]?o[t]:[]).concat([n]):o[t]?o[t]+", "+n:n}}),o):o}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,a=String(e),o="",s=0,c=r;a.charAt(0|s)||(c="=",s%1);o+=c.charAt(63&t>>8-s%1*8)){if((i=a.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return o}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,a,o){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(a)&&s.push("domain="+a),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),a=n(19),o=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=a(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=a(t.data,t.headers,e.transformResponse),t},function(t){return o(t)||(r(e),t&&t.response&&(t.response.data=a(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function a(e){return"[object Object]"===mn.call(e)}function o(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(o||"")+"_"+s))[0])&&X(u)&&(f[l]=C(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=C(u.text+c):""!==c&&f.push(C(c)):X(c)&&X(u)?f[l]=C(u.text+c.text):(n(a._isVList)&&t(c.tag)&&e(c.key)&&t(o)&&(c.key="__vlist"+o+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[a],r[a],i[a]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Ee(e){this._init(e)}function je(e){return e&&(e.Ctor.options.name||e.tag)}function Pe(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var a in n){var o=n[a];if(o){var s=je(o.componentOptions);s&&!t(s)&&Le(n,a,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,a=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===a?(h=i+1,a=e.slice(0,i).trim()):t();if(void 0===a?a=e.slice(0,i).trim():0!==h&&t(),o)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=Kr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Wr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(a=t)._withTask||(a._withTask=function(){hr=!0;var e=a.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var a}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},a=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,a,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,a,o=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(o[i]="");for(i in l){if(a=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),a===s[i])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===i){o._value=a;var u=e(a)?"":String(a);d=u,!(f=o).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(o.value=u)}else o[i]=a}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?Ci(e):e}function gt(n,r){var i=r.data,a=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(a.staticStyle)&&e(a.style))){var o,s,c=r.elm,l=a.staticStyle,u=a.normalizedStyle||a.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var a=e;a=a.parent;)a.data&&(n=vt(a.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(o=p[s])!==f[s]&&Ai(c,s,null==o?"":o)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Ei(e.name||"v")),v(t,e),t}return"string"==typeof e?Ei(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function Ct(e,t,n){var r=St(e,t),i=r.type,a=r.timeout,o=r.propCount;if(!i)return n();var s=i===Pi?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=o&&l()};setTimeout(function(){c0&&(n=Pi,u=o,f=a.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(o,l))>0?o>l?Pi:Ii:null)?n===Pi?a.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Pi&&Bi.test(r[Li+"Property"])}}function xt(e,t){for(;e.length1}function jt(e,t){!0!==t.data.show&&$t(t)}function Pt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var a,o,s=0,c=e.options.length;s-1,o.selected!==a&&(o.selected=a);else if(y(Ft(o),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var a in i)t[wn(a)]=i[a];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var a=e.elm.style;a.transform=a.WebkitTransform="translate("+r+"px,"+i+"px)",a.transitionDuration="0s"}}function qt(e,t){var n=t?Oa:$a;return e.replace(n,function(e){return Aa[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',ka.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,Cn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Sn=function(e,t,n){return!1},xn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],Dn={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Sn,isReservedAttr:Sn,isUnknownElement:Sn,getTagNamespace:g,parsePlatformTagName:xn,mustUseProp:Sn,_lifecycleHooks:On},En=/[^\w.$]/,jn="__proto__"in{},Pn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=Pn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(Pn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!Pn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=Pn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);Kn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);Sr||(Sr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Dr={enumerable:!0,configurable:!0,get:g,set:g},Er={lazy:!0};Se(xe.prototype);var jr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,a,o){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var a=e;jr.prepatch(a,a)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var a=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){or.shouldConvert=!1;for(var o=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,a=n.length;iparseInt(this.max)&&Le(o,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return Dn},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=D,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var a=e.name||n.options.name,o=function(e){this._init(e)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=t++,o.options=L(n.options,e),o.super=n,o.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(o),o.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,$n.forEach(function(e){o[e]=n[e]}),a&&(o.options.components[a]=o),o.superOptions=n.options,o.extendOptions=e,o.sealedOptions=v({},o.options),i[r]=o,o}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&a(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Ee),Object.defineProperty(Ee.prototype,"$isServer",{get:qn}),Object.defineProperty(Ee.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Ee.version="2.5.13";var Wr,Vr,Ur,Hr,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ai=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),oi=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return ai(e)||oi(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},Ci=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Si=/^--/,xi=/\s*!important$/,Ai=function(e,t,n){if(Si.test(t))e.style.setProperty(t,n);else if(xi.test(n))e.style.setProperty(t,n.replace(xi,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,a=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,a):d>b&&m(0,r,f,p)}(c,d,p,a,s):t(p)?(t(r.text)&&S.setTextContent(c,""),h(c,null,p,0,p.length-1,a)):t(d)?m(0,d,0,d.length-1):t(r.text)&&S.setTextContent(c,""):r.text!==i.text&&S.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var a=0;a-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Ee.options.directives,Ui),v(Ee.options.components,qi),Ee.prototype.__patch__=Pn?Wi:g,Ee.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&Pn?Be(e):void 0,t)},Ee.nextTick(function(){Dn.devtools&&Jn&&Jn.emit("init",Ee)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(Ci(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ea=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),ta=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),na=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ra=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ia="[a-zA-Z_][\\w\\-\\.]*",aa="((?:"+ia+"\\:)?"+ia+")",oa=new RegExp("^<"+aa),sa=/^\s*(\/?)>/,ca=new RegExp("^<\\/"+aa+"[^>]*>"),la=/^]+>/i,ua=/^/g,"$1").replace(//g,"$1")),Ea(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ua.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fa.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(la);if(y){n(y[0].length);continue}var b=e.match(ca);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(oa);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,a;!(i=e.match(sa))&&(a=e.match(ra));)n(a[0].length),r.attrs.push(a);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===a&&na(n)&&r(a),l(n)&&a===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(ca.test(k)||oa.test(k)||ua.test(k)||fa.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:pa,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,o,l){var u=i&&i.ns||_a(e);Nn&&"svg"===u&&(o=function(e){for(var t=[],n=0;nc&&(s.push(a=e.slice(c,i)),o.push(JSON.stringify(a)));var l=Xe(r[1].trim());o.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function o(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,a=n.children,o=n.parent.$i18n;if(a=(a||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!o)return a;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=a.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&a.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),a.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,o.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=D,h[S]();else{if(f=0,!1===(n=p(n)))return!1;h[x]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===E&&"'"===t||u===j&&'"'===t)return l++,r="\\"+t,h[S](),!0}()){if(i=d(t),(a=(s=L[u])[i]||s.else||I)===I)return;if(u=a[0],(o=h[a[1]])&&(r=a[2],r=void 0===r?t:r,!1===o()))return;if(u===P)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,a=r.length,o=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return o(this._getMessages())},R.dateTimeFormats.get=function(){return o(this._getDateTimeFormats())},R.numberFormats.get=function(){return o(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,a,o,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,a,o,s)),s?this._render(l,o,s):l},M.prototype._link=function(e,t,n,r,i,a){var o=n,s=o.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:a);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,a)}o=(f=this._warnDefault(e,u,f,r))?o.replace(l,f):o}return o},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,a,o,s){var c=this._interpolate(t,e[t],i,a,o,s);return r(c)?r(c=this._interpolate(n,e[n],i,a,o,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var a=[],o=arguments.length-4;o-- >0;)a[o]=arguments[o+4];if(!e)return"";var s=i.apply(void 0,a),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(a))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var a=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(a)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,a,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var o=[],s=arguments.length-5;s-- >0;)o[s]=arguments[s+5];return e?(void 0===i&&(i=1),a((c=this)._t.apply(c,[e,t,n,r].concat(o)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],a=arguments.length-3;a-- >0;)r[a]=arguments[a+3];var o=i.apply(void 0,r).locale||t;return this._exist(n[o],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return o(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return o(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,a){var o=t,s=i[o];if((r(s)||r(s[a]))&&(o=n,s=i[o]),r(s)||r(s[a]))return null;var c=s[a],l=o+"__"+a,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(o,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,a=null;return 1===n.length?"string"==typeof n[0]?a=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(a=n[0].key)):2===n.length&&("string"==typeof n[0]&&(a=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,a)},M.prototype.getNumberFormat=function(e){return o(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,a){var o=t,s=i[o];if((r(s)||r(s[a]))&&(o=n,s=i[o]),r(s)||r(s[a]))return null;var c=s[a],l=o+"__"+a,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(o,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,a=null;return 1===n.length?"string"==typeof n[0]?a=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(a=n[0].key)):2===n.length&&("string"==typeof n[0]&&(a=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,a)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var a=e.$i18n;return a._tc.apply(a,[t,a.locale,a._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",deviceTime:"Time: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionEnabledDuringDay:"Activate during the day (between sunrise and sunset)",motionTransitionTime:"Transition time in milliseconds",motionDelay:"Keep on time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadStatus:"Could not load system status",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings",loadSteps:"Could not load calibration settings",updateCalibration:"Could not save calibration settings",resetError:"The system reports that it has been reset unexpectedly. The last power up status is:",resetReason:{0:"Normal startup",1:"Unresponsive, reset by hardware watchdog",2:"Unhandled exception",3:"Unresponsive, reset by software watchdog",4:"System restart requested",5:"Wake up from deep sleep",6:"System reset"},stackTrace:"A stack trace is available. Please send it to your nearest developer and/or delete it from this Stairs device to remove this message.",stackTraceDownload:"Download",stackTraceDelete:"Remove",stackTraceDeleteError:"Could not remove stack trace"},calibration:{title:"Calibration wizard",backButton:"Back",count:"Number of steps",nextButton:"Next",applyButton:"Complete",allStepsValue:"Intensity for all steps",ranges:"Min / max values per step",useCurve:"Use logarithmic curve for intensity (recommended for LEDs)"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Opslaan",applyButtonSaving:"Bezig met opslaan...",deviceTime:"Tijd: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionEnabledDuringDay:"Ook overdag inschakelen (tussen zonsopgang en zonsondergang)",motionTransitionTime:"Transitie tijd in milliseconden",motionDelay:"Tijd aan in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadStatus:"Kan systeemstatus niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan",loadSteps:"Kan kalibratie instellingen niet ophalen",updateCalibration:"Kan kalibratie instellingen niet opslaan",resetError:"Het systeem is onverwachts herstart. De laatste status is:",resetReason:{0:"Normaal opgestart",1:"Reageert niet, herstart door hardware watchdog",2:"Onafgehandelde fout",3:"Reageert niet, herstart door software watchdog",4:"Herstart verzoek door systeem",5:"Wakker geworden uit diepe slaap",6:"Systeem gereset"},stackTrace:"Een stack trace is beschikbaar. Stuur het naar de dichtsbijzijnde ontwikkelaar en/of verwijder het van deze Trap module om dit bericht te verbergen.",stackTraceDownload:"Downloaden",stackTraceDelete:"Verwijderen",stackTraceDeleteError:"Kan stack trace niet verwijderen"},calibration:{title:"Kalibratie wizard",backButton:"Terug",count:"Aantal treden",nextButton:"Volgende",applyButton:"Voltooien",allStepsValue:"Intensiteit voor alle treden",ranges:"Min / max waarden per trede",useCurve:"Gebruik logaritmische curve voor intensiteit (aangeraden voor LEDs)"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("range",{template:'
{{ value.start }}
{{ value.end }}
',props:["value"],mounted:function(){this.oldValue={start:this.value.start,end:this.value.end}},watch:{value:{handler:function(e){e.start!=this.oldValue.start?e.start>e.end&&(e.end=e.start+1,this.$emit("input",e)):e.end!=this.oldValue.end&&e.end0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,a=[],o=0;o0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:1})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&(n+=e>=0?"+":"-");var r=(e=Math.abs(e))%60;return n+=Math.floor(e/60)+":",r<10&&(n+="0"),n+=r},startCalibration:function(){var e=this;axios.get("/api/steps").then(function(t){"object"==typeof t.data&&(e.calibration={wizardStep:0,count:t.data.count,useCurve:t.data.useCurve,ranges:t.data.ranges})}).catch(e.handleAPIError.bind(e,"error.loadSteps"))},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){if(0==this.calibration.wizardStep)if(this.calibration.count<1?this.calibration.count=1:this.calibration.count>16&&(this.calibration.count=16),this.calibration.ranges.length>this.calibration.count)this.calibration.ranges.splice(this.calibration.count);else for(;this.calibration.ranges.length=0?"+":"-")+r.substr(-2)+":"+i.substr(-2);return t+":"+n.substr(-2)+" ("+a+")"}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e},calibration:{handler:function(){this.calibrationChanged()},deep:!0}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 147f2d1..d6467f2 100644 --- a/web/index.html +++ b/web/index.html @@ -178,11 +178,16 @@
+ + + + +

Regels

diff --git a/web/lang.js b/web/lang.js index 1bf2acf..482d8ad 100644 --- a/web/lang.js +++ b/web/lang.js @@ -68,7 +68,9 @@ var messages = { motionEnabled: 'Enable motion triggers', motionEnabledDuringTimeTrigger: 'Activate even if a time trigger is already active', + motionEnabledDuringDay: 'Activate during the day (between sunrise and sunset)', motionTransitionTime: 'Transition time in milliseconds', + motionDelay: 'Keep on time in milliseconds', motionTriggerEnabled: 'Enabled', motionAdd: 'Add', @@ -188,7 +190,7 @@ var messages = { loading: 'Een ogenblik geduld, bezig met laden van configuratie...', rebootPending: 'Het systeem wordt opnieuw opgestart, ververse deze pagina nadien', - applyButton: 'Toepassen', + applyButton: 'Opslaan', applyButtonSaving: 'Bezig met opslaan...', deviceTime: 'Tijd: ', @@ -249,7 +251,9 @@ var messages = { motionEnabled: 'Beweging triggers inschakelen', motionEnabledDuringTimeTrigger: 'Ook inschakelen als er al een tijd trigger actief is', + motionEnabledDuringDay: 'Ook overdag inschakelen (tussen zonsopgang en zonsondergang)', motionTransitionTime: 'Transitie tijd in milliseconden', + motionDelay: 'Tijd aan in milliseconden', motionTriggerEnabled: 'Actief', motionAdd: 'Toevoegen', diff --git a/web/site.scss b/web/site.scss index 4337ebb..347f456 100644 --- a/web/site.scss +++ b/web/site.scss @@ -479,6 +479,7 @@ label { clear: both; text-align: center; + margin-top: 1rem; } @@ -589,10 +590,7 @@ label .actions { - @media #{$mediumScreen} - { - float: right; - } + float: right; } a, .label
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Cn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),Tn=/\B([A-Z])/g,kn=d(function(e){return e.replace(Tn,"-$1").toLowerCase()}),xn=function(e,t,n){return!1},Sn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:xn,isReservedAttr:xn,isUnknownElement:xn,getTagNamespace:g,parsePlatformTagName:Sn,mustUseProp:xn,_lifecycleHooks:On},Pn=/[^\w.$]/,Dn="__proto__"in{},jn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=jn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Vn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Wn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(jn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!jn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=jn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Kn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Cr[n].id>e.id;)n--;Cr.splice(n+1,0,e)}else Cr.push(e);xr||(xr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};xe(Se.prototype);var Dr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Dr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:qn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Vr,Wr,Ur,Hr,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){Ve(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Ve(e,!0),Ve(t))},destroy:function(e){Ve(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ci={create:pt,update:pt},Ti={create:ht,update:ht},ki=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),xi=/^--/,Si=/\s*!important$/,Ai=function(e,t,n){if(xi.test(t))e.style.setProperty(t,n);else if(Si.test(n))e.style.setProperty(t,n.replace(Si,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Ui),v(Pe.options.components,qi),Pe.prototype.__patch__=jn?Vi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&jn?Be(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(ki(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),lo=/^]+>/i,uo=/^/g,"$1").replace(//g,"$1")),Do(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(uo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(lo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),l(n)&&o===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(T=e.slice(v);!(co.test(T)||ao.test(T)||uo.test(T)||fo.test(T)||(k=T.indexOf("<",1))<0);)v+=k,T=e.slice(v);C=e.substring(0,v),n(v)}v<0&&(C=e,e=""),t.chars&&C&&t.chars(C)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||wo(e);Nn&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Xe(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},C=function(){this._caches=Object.create(null)};C.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[S]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===D&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,o,a,s)),s?this._render(l,a,s):l},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(o))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings",loadSteps:"Could not load calibration settings",updateCalibration:"Could not save calibration settings"},calibration:{title:"Calibration wizard",backButton:"Back",count:"Number of steps",nextButton:"Next",applyButton:"Complete",allStepsValue:"Intensity for all steps",ranges:"Min / max values per step",useCurve:"Use logarithmic curve for intensity (recommended for LEDs)"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan",loadSteps:"Kan kalibratie instellingen niet ophalen",updateCalibration:"Kan kalibratie instellingen niet opslaan"},calibration:{title:"Kalibratie wizard",backButton:"Terug",count:"Aantal treden",nextButton:"Volgende",applyButton:"Voltooien",allStepsValue:"Intensiteit voor alle treden",ranges:"Min / max waarden per trede",useCurve:"Gebruik logaritmische curve voor intensiteit (aangeraden voor LEDs)"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("range",{template:'
{{ value.start }}
{{ value.end }}
',props:["value"],mounted:function(){this.oldValue={start:this.value.start,end:this.value.end}},watch:{value:{handler:function(e){e.start!=this.oldValue.start?e.start>e.end&&(e.end=e.start+1,this.$emit("input",e)):e.end!=this.oldValue.end&&e.end0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&(n+=e>=0?"+":"-");var r=(e=Math.abs(e))%60;return n+=Math.floor(e/60)+":",r<10&&(n+="0"),n+=r},startCalibration:function(){var e=this;axios.get("/api/steps").then(function(t){"object"==typeof t.data&&(e.calibration={wizardStep:0,count:t.data.count,useCurve:t.data.useCurve,ranges:t.data.ranges})}).catch(e.handleAPIError.bind(e,"error.loadSteps"))},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){if(0==this.calibration.wizardStep)if(this.calibration.count<1?this.calibration.count=1:this.calibration.count>16&&(this.calibration.count=16),this.calibration.ranges.length>this.calibration.count)this.calibration.ranges.splice(this.calibration.count);else for(;this.calibration.ranges.length Date: Mon, 12 Feb 2018 22:13:03 +0100 Subject: [PATCH 40/43] Fixed #11: Show device's time in frontend Frontend for #19: Implement exception handler --- API.md | 12 +- devserver.js | 8 +- src/assets/css.h | 193 +- src/assets/html.h | 336 +-- src/assets/js.h | 4702 ++++++++++++++++++++------------------- src/assets/version.h | 4 +- src/server/settings.cpp | 22 +- web/app.js | 64 +- web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 27 +- web/lang.js | 38 +- web/site.scss | 6 + 13 files changed, 2793 insertions(+), 2623 deletions(-) diff --git a/API.md b/API.md index 661c98f..65e6171 100644 --- a/API.md +++ b/API.md @@ -1,7 +1,7 @@ # API - [GET /api/apply](#get-apiapply) -- [GET /api/version](#get-apiversion) +- [GET /api/status](#get-apistatus) - [GET /api/connection/status](#get-apiconnectionstatus) - [GET /api/connection](#get-apiconnection) - [POST /api/connection](#post-apiconnection) @@ -37,15 +37,19 @@ Either value or percent is required. -## GET /api/version +## GET /api/status -Returns the unique identifier of the chip and the version of the firmware. +Returns the unique identifier of the chip, the version of the firmware and various other bits of status information. *Example response:* ```json { "systemID": "st41r", - "version": "2.0.0-beta.1+6" + "version": "2.0.0-beta.1+6", + time: 1518467160, + timeOffset: 3600, + resetReason: 2, + stackTrace: true } ``` diff --git a/devserver.js b/devserver.js index 973b3b1..a7d4499 100644 --- a/devserver.js +++ b/devserver.js @@ -13,11 +13,15 @@ app.use(bodyParser.json()); app.use(express.static('web')); app.use(express.static('web/dist')); -app.get('/api/version', function(req, res) +app.get('/api/status', function(req, res) { res.send({ systemID: 'dev-server', - version: 'dev-server' + version: 'dev-server', + time: 1518467160, + timeOffset: 3600, + resetReason: 2, + stackTrace: true }); }); diff --git a/src/assets/css.h b/src/assets/css.h index ba66887..502e9b2 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -4,101 +4,102 @@ #include const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xad,0x59,0xeb,0x6e,0xa3,0x38,0x14,0x7e,0x15,0xa4, - 0x6a,0xa4,0xe9,0x0a,0x10,0xb9,0x90,0xa6,0xa0,0x5d,0xed,0x6a,0xdf,0x61,0xff,0x8c,0xfa,0xc3,0x80,0x09, - 0x56,0x09,0x46,0xc6,0x69,0x9a,0x41,0xbc,0xfb,0x1e,0xdb,0x98,0xd8,0xe0,0x64,0x32,0xa3,0x11,0x6a,0x13, - 0x6c,0x9f,0xab,0xcf,0xe5,0xb3,0x53,0xf1,0x63,0xdd,0x67,0xf4,0x33,0xe8,0xc8,0x77,0xd2,0x1c,0x92,0x8c, - 0xb2,0x02,0xb3,0x00,0x46,0xd2,0x92,0x36,0x5c,0x0c,0xe3,0x64,0xb7,0x0e,0xe3,0x2f,0xc3,0x1f,0x7e,0x82, - 0x4a,0x8e,0x99,0x9f,0x64,0xb8,0xa4,0x0c,0x9b,0x64,0xa4,0xa9,0x30,0x23,0x7c,0xc8,0x68,0x71,0xe9,0x33, - 0x94,0xbf,0x1f,0x18,0x3d,0x35,0x45,0x90,0xd3,0x9a,0xb2,0xe4,0x29,0x8a,0xa2,0x74,0xfc,0x5a,0x96,0xa5, - 0xe2,0x5c,0xa2,0x23,0xa9,0x2f,0xc9,0x7f,0x98,0x15,0xa8,0x41,0xfe,0x3f,0x8c,0xa0,0xda,0xef,0x50,0xd3, - 0x05,0x1d,0xb0,0x2a,0x0d,0xf1,0xab,0x70,0x83,0x8f,0xea,0xfd,0x8c,0xc9,0xa1,0xe2,0xc9,0x06,0xf8,0xd5, - 0x98,0x83,0x32,0x41,0xd7,0xa2,0x5c,0x68,0x10,0x46,0x2b,0x58,0x54,0x93,0x06,0x07,0x95,0x5a,0x04,0x64, - 0x69,0x8b,0x8a,0x02,0x66,0xc1,0x1e,0xce,0xe9,0x31,0xd9,0x30,0x7c,0x1c,0xfe,0x3e,0xe2,0x82,0x20,0xaf, - 0xcb,0x19,0xc6,0x8d,0x87,0x9a,0xc2,0xfb,0x7a,0x24,0x4d,0x70,0x26,0x05,0xaf,0x92,0x97,0xdd,0xbe,0xfd, - 0x7c,0xee,0xa5,0x1d,0x9a,0x98,0xd3,0x56,0x51,0x0e,0xa8,0xe7,0xf8,0x93,0x07,0x05,0xce,0x29,0x43,0x9c, - 0xd0,0x26,0x69,0x68,0x83,0x87,0x6f,0x1f,0x41,0x5e,0x53,0xf4,0xfe,0xd6,0x17,0xa4,0x6b,0x6b,0x74,0x51, - 0xc3,0x4f,0x39,0xa8,0x8c,0x40,0x23,0x66,0xb8,0x24,0x79,0x5a,0x47,0xe2,0x49,0x8f,0x88,0x1d,0x40,0xac, - 0x60,0xbe,0x06,0xe6,0x5a,0xd5,0x64,0x25,0x5e,0xa4,0x6b,0x2b,0x54,0xd0,0x73,0x12,0x79,0x91,0x17,0x47, - 0xed,0xa7,0xf7,0x54,0xe6,0xe5,0x2e,0x2f,0x53,0xb5,0x45,0x49,0x47,0x6b,0x52,0x78,0x2b,0x31,0x01,0xee, - 0x7d,0xc8,0x2a,0x43,0x21,0x63,0x5c,0x6b,0x52,0xe3,0x92,0x27,0xe8,0xc4,0xa9,0x1e,0x60,0xd2,0x8d,0x62, - 0x64,0x18,0xc2,0x0a,0x23,0x90,0xda,0xb7,0xb4,0x23,0xd2,0x70,0x86,0x6b,0xf0,0xc0,0x07,0xd6,0x33,0x1e, - 0x39,0x1e,0xfa,0x12,0xbc,0xc0,0x13,0xc1,0xc8,0xe6,0xb1,0xba,0xe5,0x77,0xf4,0x39,0x69,0xf8,0x22,0x34, - 0xd4,0xcc,0xc2,0x33,0x29,0x49,0xc7,0x11,0x3f,0x75,0x7d,0x5e,0x63,0xc4,0x20,0x30,0x79,0x65,0xfa,0x4c, - 0x6d,0xc8,0x23,0x56,0xbb,0x78,0x4e,0x66,0xa0,0x0c,0xfc,0x78,0xe2,0x38,0x55,0x8a,0x46,0xa9,0xe0,0x1d, - 0x4d,0xf6,0x9a,0x44,0x5e,0x48,0x9a,0x82,0xe4,0x88,0x53,0x36,0xed,0x33,0x69,0x64,0xc4,0x65,0x35,0xcd, - 0xdf,0x53,0x25,0x55,0xee,0x9f,0x0e,0x41,0xb5,0x97,0x32,0xa5,0x18,0x2a,0xc8,0xa9,0x4b,0xe2,0xe8,0x8b, - 0xed,0x9b,0x30,0x16,0x96,0xdc,0x97,0xf7,0xad,0x40,0x1c,0x05,0x6a,0xf8,0x4f,0xd8,0xc4,0x06,0xe7,0x1c, - 0x17,0x6f,0x8e,0x4c,0xdb,0xbc,0xee,0x7e,0x86,0x17,0xd8,0x61,0xb2,0x9b,0x47,0xd6,0x81,0xe1,0xcb,0x2f, - 0xa8,0x06,0x61,0xec,0xd2,0xad,0x7c,0xdd,0xfc,0x0c,0x33,0xcc,0x18,0x65,0x2e,0x3e,0x39,0x84,0x7b,0x98, - 0x9d,0x20,0xa3,0x1b,0x3f,0xcc,0x2b,0x9c,0xbf,0x7b,0xa1,0x88,0x6c,0x46,0x6b,0x3f,0x6c,0x28,0x07,0xce, - 0xb9,0xcc,0x4e,0x3f,0x6c,0x51,0x83,0x6b,0x4f,0x7d,0x04,0x22,0xa9,0x67,0x43,0x4a,0x1b,0x3f,0x14,0x9b, - 0x43,0x0d,0x2e,0x67,0xc4,0x1a,0xb0,0xc2,0x1f,0xa5,0x54,0x1b,0x9f,0x34,0xed,0x89,0x7f,0xe3,0x97,0x16, - 0xff,0xd9,0x9d,0xb2,0x23,0xe1,0x6f,0x7e,0x87,0x6b,0x30,0x56,0x7b,0x4d,0xf8,0x4b,0x79,0xee,0x69,0xb5, - 0x5a,0xcd,0x76,0x7d,0x03,0x69,0x66,0xe4,0x34,0x69,0x3a,0xcc,0x21,0xaf,0x05,0x0d,0x3b,0x64,0xe8,0xeb, - 0x3a,0x8e,0x7d,0xfd,0x17,0xae,0x9e,0x7d,0xbd,0x20,0x10,0x2b,0x36,0x7a,0x55,0xe4,0x8b,0x27,0xdc,0x5c, - 0xe7,0xa3,0x9b,0x4c,0xa2,0xfd,0xb3,0xaf,0xe6,0xd6,0x33,0xf2,0x55,0xfc,0xac,0xdd,0x17,0xa2,0x5c,0xe4, - 0xb0,0x3f,0xbe,0x26,0xe3,0xab,0x3d,0x69,0xcf,0x19,0x7e,0x68,0x4e,0xc7,0x0c,0xb3,0x37,0x73,0xa8,0x45, - 0x5d,0x77,0x06,0xcb,0xdf,0x1c,0xfe,0x0a,0x97,0x1c,0xc6,0x19,0x07,0x6f,0x51,0x67,0xdf,0x7c,0xf1,0x1f, - 0x31,0x8c,0xee,0xfb,0xf8,0xda,0x64,0xe4,0xb0,0x9e,0x73,0x7a,0x7b,0xee,0x8c,0x75,0xac,0xdd,0xe4,0x74, - 0xe1,0x30,0x06,0x80,0xd4,0xac,0x7f,0xa4,0x6f,0x4d,0x91,0x69,0x52,0x5a,0xd6,0xba,0x8b,0x87,0x2e,0xff, - 0xa0,0x0c,0xe8,0xa8,0xbb,0x65,0x51,0x14,0xa9,0xd9,0x3b,0xb6,0x91,0x78,0xd2,0xfc,0xc4,0x3a,0x98,0x6e, - 0x29,0x69,0xa0,0x07,0x5a,0x5d,0x4f,0xd6,0x45,0xbd,0xbd,0x25,0xcd,0x4f,0xdd,0xb4,0xbb,0xf6,0x5b,0x45, - 0x3f,0x20,0xf2,0xad,0x85,0xd6,0x3a,0x6b,0x99,0x63,0x37,0xd5,0x2a,0xc7,0x66,0xde,0x9c,0x90,0xac,0xfa, - 0x1b,0x96,0xc5,0x91,0x78,0x52,0x7a,0xe2,0xc2,0x9a,0x24,0xfa,0x3d,0x21,0xfa,0x68,0xe8,0x69,0xad,0xf2, - 0x3c,0xb7,0xb4,0x5a,0xef,0xc5,0xa3,0x75,0x09,0x5a,0x46,0xa0,0x76,0x5f,0x5c,0x9b,0x6a,0x51,0xad,0x77, - 0x31,0x5a,0xcd,0xa9,0xec,0xdd,0xd0,0xa3,0x89,0x7b,0xf4,0xb7,0xbb,0xdd,0xd2,0x6f,0xf7,0xb2,0xce,0x76, - 0x03,0x1a,0x85,0xba,0x41,0x4d,0xd8,0xa0,0x0f,0x72,0x90,0x03,0xf7,0x5a,0x70,0xc8,0xa1,0x85,0xfe,0xa5, - 0x39,0x99,0x50,0x42,0xd4,0xae,0x59,0x19,0x8c,0xec,0xe5,0x49,0x49,0x58,0xc7,0x83,0xbc,0x22,0x75,0x61, - 0x91,0x46,0xcb,0xf2,0x29,0x4b,0x1d,0x7c,0xce,0x38,0xd4,0x68,0x62,0x30,0x13,0x25,0xcb,0xa6,0x24,0x9c, - 0x0b,0x15,0x8e,0x5a,0x02,0x99,0xf4,0x7b,0x00,0x7d,0x08,0x7f,0x26,0xb0,0x71,0xe0,0xb0,0x4e,0xda,0x2d, - 0xa3,0x42,0x74,0x41,0x03,0x8e,0xee,0x5b,0x9e,0x4a,0x8f,0xa1,0x9a,0x1c,0x9a,0x24,0xc7,0x32,0x07,0x67, - 0x70,0x6e,0xb0,0x1a,0xd1,0xbf,0x13,0xee,0x9a,0xc4,0x96,0xe4,0x13,0x17,0xe9,0x84,0xfe,0xb4,0xf0,0xdd, - 0x6e,0xf7,0x18,0xa8,0x71,0xb3,0x57,0x6b,0x62,0x59,0x42,0xa4,0x27,0x01,0x6e,0x0c,0xb6,0x2e,0x76,0x24, - 0xbc,0xbe,0xa0,0x6c,0x3f,0x87,0x9b,0xab,0x68,0x44,0x95,0x26,0x68,0x9f,0xd5,0x1c,0x5d,0xaf,0xc2,0x18, - 0xb4,0x1f,0x8d,0x1f,0x51,0xb6,0x82,0xb3,0x0b,0xa0,0xf8,0xd3,0x66,0xf5,0x2a,0x8c,0x96,0x26,0x78,0xe1, - 0x11,0x77,0x1d,0x3a,0xe0,0xfe,0x5c,0x11,0x8e,0xe5,0x19,0x00,0x27,0x2d,0xc3,0xf6,0xb2,0x50,0x22,0x08, - 0xcb,0xde,0xd7,0x97,0x0d,0xda,0x40,0x3e,0x4b,0xd4,0x30,0xb6,0x7d,0x77,0x3d,0x9e,0x99,0x7b,0xea,0xc4, - 0x59,0x43,0x36,0x7c,0x99,0x1e,0xa9,0x29,0xb9,0xa1,0x67,0x86,0xda,0x61,0x81,0x45,0x6c,0x54,0xd1,0x3b, - 0x0a,0xf9,0x3d,0x1c,0xb9,0x83,0x3d,0xd4,0x38,0x52,0x7c,0x77,0x40,0xef,0x51,0x60,0x8d,0x32,0x7c,0x15, - 0x27,0xdf,0xdc,0x46,0x99,0x39,0x26,0x37,0x0e,0x02,0x9d,0x83,0xb7,0xea,0x31,0x96,0x21,0x1c,0x47,0xa6, - 0xea,0x3f,0x2e,0xe6,0xd6,0x2c,0xc6,0x2d,0xab,0x76,0x91,0x78,0x34,0x0b,0x50,0x01,0x65,0x35,0x2e,0x34, - 0xa9,0x7e,0xef,0x47,0xdf,0xc2,0x5e,0x81,0xdc,0x9a,0x9e,0x71,0x31,0x2c,0x10,0x98,0xfd,0x2e,0x30,0xa2, - 0x3c,0x47,0xcd,0xb1,0xf4,0x9c,0x50,0x2f,0x34,0x0e,0x9e,0x4b,0xac,0x2f,0xb2,0x6e,0xab,0x33,0x44,0x7c, - 0x51,0x1e,0x37,0x1c,0xbe,0x13,0x85,0xc6,0x6d,0xf0,0xa4,0x8a,0x61,0xb7,0x6c,0x1b,0x66,0x0e,0xad,0x66, - 0x30,0x43,0x40,0x2e,0x3b,0x3a,0x34,0x1b,0xb7,0x76,0xf1,0x5d,0xed,0x64,0x19,0x74,0x6f,0x93,0xed,0xa8, - 0x11,0xca,0x2f,0xa1,0xcd,0xfe,0x59,0x57,0x58,0xc5,0x5c,0x64,0xfd,0x5a,0xc1,0xa3,0x94,0x33,0x00,0x33, - 0x70,0xc0,0x3f,0x26,0x8c,0x02,0x12,0xc7,0x5f,0x83,0x6d,0x5c,0xe0,0xc3,0xb3,0x69,0xa1,0xc4,0xa5,0x91, - 0x8d,0xa4,0x2c,0x20,0x65,0xd8,0x2d,0x58,0x05,0x3a,0x5a,0x8c,0x32,0x09,0xe7,0xf5,0xe1,0x17,0xd0,0xe4, - 0x1c,0x19,0x3a,0xd0,0xd1,0xb5,0x68,0x59,0x55,0x6a,0xcc,0xab,0x08,0xa2,0x46,0x43,0xf7,0x87,0x89,0x4d, - 0x4d,0xc1,0x3f,0x07,0xfc,0x66,0x99,0xc2,0x16,0x45,0x50,0x1e,0x79,0xab,0x55,0x7f,0xed,0x1b,0xeb,0xeb, - 0x22,0x68,0x84,0xd5,0x7a,0x8c,0xd1,0x8e,0xd4,0x90,0x85,0xd6,0x75,0xc7,0x6c,0xe5,0xc6,0xec,0x43,0x4b, - 0x74,0xb2,0x24,0xbd,0x2a,0x2e,0x95,0xd8,0xf6,0xe6,0x8a,0x2d,0x9b,0xac,0xd1,0x09,0xf9,0xe6,0xc8,0xc8, - 0xf4,0x96,0xcc,0x9d,0x78,0x06,0xbb,0xc8,0x58,0xd5,0x45,0x38,0xc4,0xd1,0x15,0xa4,0x17,0x55,0x71,0x0a, - 0x54,0x51,0xea,0xad,0x73,0xf0,0xfa,0xd1,0xbb,0x99,0xb0,0xa2,0x8c,0x7c,0x17,0x2d,0xaf,0x36,0x80,0xc9, - 0x60,0x0c,0x7b,0xb7,0x4b,0xa0,0xb5,0xcc,0x11,0x7d,0x37,0xa6,0xaf,0x91,0x78,0x63,0x81,0x8a,0x4a,0x73, - 0x72,0x8a,0x50,0x67,0x25,0x56,0x37,0x25,0xd2,0xf2,0x31,0x2e,0x65,0x31,0xbb,0xd2,0xab,0xbb,0x36,0xd3, - 0x40,0x98,0x85,0x5e,0x34,0xf3,0xb9,0x0d,0x4b,0x8c,0x3d,0x9b,0x45,0xe3,0x78,0xcb,0x00,0x52,0x45,0x64, - 0xf4,0x33,0x14,0xb7,0xc4,0x33,0x43,0x08,0xf0,0x91,0xb6,0xa2,0x32,0x75,0x16,0x34,0x8b,0x8d,0xf3,0x85, - 0x75,0x37,0xe3,0x62,0x01,0xc5,0x07,0x90,0x54,0xbf,0xc0,0x46,0x1d,0xc7,0xad,0xc5,0x75,0x63,0x24,0x10, - 0x9b,0xce,0x31,0xae,0x96,0x27,0x48,0xbd,0x91,0xf3,0xf5,0x3a,0xcb,0x22,0xdd,0x6a,0x11,0x5e,0xf8,0x81, - 0xea,0x13,0xfe,0xc1,0x6d,0x4f,0x28,0xb3,0xf7,0xea,0xba,0xe1,0x16,0x77,0x9d,0xe9,0x7a,0x41,0x1f,0x9c, - 0x71,0xf6,0x4e,0xc0,0xea,0xb6,0x05,0x37,0xa0,0x46,0x42,0x01,0x81,0x0d,0xa6,0x42,0xa3,0x2b,0xb6,0x74, - 0xff,0x0c,0xd4,0xc2,0xd9,0x53,0x0e,0x2e,0x6b,0x90,0x71,0x08,0x52,0x92,0x92,0x44,0x8b,0x52,0xef,0x01, - 0xaf,0x20,0x5e,0x6f,0xca,0x77,0xeb,0xb3,0x36,0x2e,0xa6,0xd6,0xee,0x8b,0x29,0x53,0x97,0xf1,0xb6,0xd1, - 0xc6,0x41,0x86,0x42,0x47,0xfa,0x3d,0x90,0x95,0x70,0x54,0xe6,0x77,0x0a,0x19,0xaf,0x5f,0x1c,0xd0,0xed, - 0x87,0xb8,0x73,0xb1,0x57,0x0d,0x15,0x97,0x4a,0x66,0x09,0x75,0x44,0xaa,0x8c,0x63,0xab,0x9a,0xc8,0xfb, - 0xa1,0xde,0x05,0x6c,0xf5,0x41,0x7d,0x70,0x5d,0x25,0xf5,0xcb,0x83,0xcb,0x78,0x78,0x49,0xa7,0xab,0x75, - 0xc1,0x4b,0xf7,0x5d,0xdb,0x9e,0xbb,0xfd,0xc8,0x29,0x6f,0x2c,0x75,0x46,0x81,0x7f,0xb4,0x8a,0xba,0x98, - 0xc9,0x73,0xb2,0xc8,0x6b,0xa3,0x3c,0x0d,0x6e,0xb9,0x1a,0x74,0xba,0xe6,0xb4,0xb7,0x1d,0x5a,0xab,0x1f, - 0x08,0x66,0x27,0xb5,0xe9,0xac,0x66,0x39,0x60,0x13,0x89,0x67,0x72,0x90,0xaa,0x1c,0x92,0xcb,0x78,0x9c, - 0x9f,0x7b,0xde,0xa4,0xcd,0xb6,0x28,0xde,0x5b,0xce,0x1b,0x7b,0xce,0x1d,0xc4,0x2d,0x6f,0xba,0xc3,0x33, - 0xc6,0xef,0x05,0xba,0x74,0xcb,0xac,0xd7,0x33,0x1a,0x62,0x2b,0xaa,0xbd,0x98,0x2a,0x41,0x83,0x40,0xc6, - 0x52,0xa0,0xef,0x2b,0xe4,0x10,0x04,0xd4,0x07,0x1e,0x87,0x7a,0x09,0xac,0x54,0x21,0xa2,0xe2,0x57,0x0b, - 0x7e,0xf1,0xc2,0xb8,0x33,0x89,0x2d,0x2a,0x4e,0xfb,0x71,0x99,0x88,0x35,0x99,0x6a,0x56,0x84,0xca,0x11, - 0x28,0x85,0xd0,0x65,0xb8,0xe3,0x38,0x7b,0xc7,0xd0,0xed,0xeb,0x17,0x9b,0xfc,0x91,0x82,0x6a,0xaf,0x7f, - 0xa4,0xb0,0xaa,0xa6,0x63,0x55,0xd6,0x91,0x09,0x6e,0x8a,0x47,0x35,0xbe,0xd1,0x28,0xaf,0x8c,0x6e,0xea, - 0xae,0xf0,0xb3,0xa1,0xba,0x5c,0x7c,0x4b,0xf1,0xf1,0xde,0xe1,0x9e,0xde,0xcb,0x96,0xfc,0x3f,0x72,0x40, - 0x04,0x67,0x3e,0x1b,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xad,0x59,0xdb,0x6e,0xa3,0x38,0x18,0x7e,0x95,0x48, + 0xd5,0x48,0xd3,0x15,0x20,0x72,0x20,0x4d,0x41,0xb3,0xda,0xd5,0xbe,0xc1,0x5e,0xec,0xcd,0x28,0x17,0x06, + 0x4c,0xb0,0x4a,0x30,0x32,0x4e,0xd3,0x14,0xf1,0xee,0xfb,0xdb,0xc6,0xc4,0x06,0x27,0x93,0x19,0x8d,0x50, + 0x9b,0x60,0xfb,0x3f,0xfa,0x3f,0x7c,0x76,0x4a,0x7e,0xac,0xba,0x94,0x7e,0xf8,0x2d,0xf9,0x24,0xf5,0x21, + 0x4e,0x29,0xcb,0x31,0xf3,0x61,0x24,0x29,0x68,0xcd,0xc5,0x30,0x8e,0xb7,0xab,0x20,0xfa,0xd2,0xff,0xe1, + 0xc5,0xa8,0xe0,0x98,0x79,0x71,0x8a,0x0b,0xca,0xb0,0x49,0x46,0xea,0x12,0x33,0xc2,0xfb,0x94,0xe6,0x97, + 0x2e,0x45,0xd9,0xdb,0x81,0xd1,0x53,0x9d,0xfb,0x19,0xad,0x28,0x8b,0x9f,0xc2,0x30,0x4c,0x86,0xaf,0x45, + 0x51,0x28,0xce,0x05,0x3a,0x92,0xea,0x12,0xff,0x87,0x59,0x8e,0x6a,0xe4,0xfd,0xcd,0x08,0xaa,0xbc,0x16, + 0xd5,0xad,0xdf,0x02,0xab,0xc2,0x10,0xbf,0x0c,0xd6,0xf8,0xa8,0xde,0xcf,0x98,0x1c,0x4a,0x1e,0xaf,0x81, + 0x5f,0x85,0x39,0x28,0xe3,0xb7,0x0d,0xca,0x84,0x06,0x41,0xb8,0x84,0x45,0x15,0xa9,0xb1,0x5f,0xaa,0x45, + 0x40,0x96,0x34,0x28,0xcf,0x61,0x16,0xec,0xe1,0x9c,0x1e,0xe3,0x35,0xc3,0xc7,0xfe,0xaf,0x23,0xce,0x09, + 0x5a,0xb4,0x19,0xc3,0xb8,0x5e,0xa0,0x3a,0x5f,0x7c,0x3d,0x92,0xda,0x3f,0x93,0x9c,0x97,0xf1,0xcb,0x76, + 0xd7,0x7c,0x3c,0x77,0xd2,0x0e,0x4d,0xcc,0x69,0xa3,0x28,0x7b,0xd4,0x71,0xfc,0xc1,0xfd,0x1c,0x67,0x94, + 0x21,0x4e,0x68,0x1d,0xd7,0xb4,0xc6,0xfd,0xf7,0x77,0x3f,0xab,0x28,0x7a,0xdb,0x77,0x39,0x69,0x9b,0x0a, + 0x5d,0xd4,0xf0,0x53,0x06,0x2a,0x23,0xd0,0x88,0x19,0x2e,0x89,0x9f,0x56,0xa1,0x78,0x92,0x23,0x62,0x07, + 0x10,0x2b,0x98,0xaf,0x80,0xb9,0x56,0x35,0x5e,0x8a,0x17,0xe9,0xda,0x12,0xe5,0xf4,0x1c,0x87,0x8b,0x70, + 0x11,0x85,0xcd,0xc7,0xe2,0xa9,0xc8,0x8a,0x6d,0x56,0x24,0x6a,0x8b,0xe2,0x96,0x56,0x24,0x5f,0x2c,0xc5, + 0x04,0xb8,0xf7,0x21,0xab,0x0c,0x85,0x8c,0x71,0xad,0x49,0x85,0x0b,0x1e,0xa3,0x13,0xa7,0x7a,0x80,0x49, + 0x37,0x8a,0x91,0xbe,0x0f,0x4a,0x8c,0x40,0x6a,0xd7,0xd0,0x96,0x48,0xc3,0x19,0xae,0xc0,0x03,0xef,0x58, + 0xcf,0x2c,0xc8,0xf1,0xd0,0x15,0xe0,0x05,0x1e,0x0b,0x46,0x36,0x8f,0xe5,0x2d,0xbf,0xa3,0x8f,0x51,0xc3, + 0x17,0xa1,0xa1,0x66,0x16,0x9c,0x49,0x41,0x5a,0x8e,0xf8,0xa9,0xed,0xb2,0x0a,0x23,0x06,0x81,0xc9,0x4b, + 0xd3,0x67,0x6a,0x43,0x1e,0xb1,0xda,0xc5,0x73,0x34,0x03,0xa5,0xe0,0xc7,0x13,0xc7,0x89,0x52,0x34,0x4c, + 0x04,0xef,0x70,0xb4,0xd7,0x24,0x5a,0x04,0xa4,0xce,0x49,0x86,0x38,0x65,0xe3,0x3e,0x93,0x5a,0x46,0x5c, + 0x5a,0xd1,0xec,0x2d,0x51,0x52,0xe5,0xfe,0xe9,0x10,0x54,0x7b,0x29,0x53,0x8a,0xa1,0x9c,0x9c,0xda,0x38, + 0x0a,0xbf,0xd8,0xbe,0x09,0x22,0x61,0xc9,0x7d,0x79,0xdf,0x73,0xc4,0x91,0xaf,0x86,0xbf,0xc1,0x26,0xd6, + 0x38,0xe3,0x38,0xdf,0x3b,0x32,0x6d,0xfd,0xba,0xfd,0x19,0x5e,0x60,0x87,0xc9,0x6e,0x1a,0x59,0x07,0x86, + 0x2f,0xbf,0xa0,0x1a,0x84,0xb1,0x4b,0xb7,0xe2,0x75,0xfd,0x33,0xcc,0x30,0x63,0x94,0xb9,0xf8,0x64,0x10, + 0xee,0x41,0x7a,0x82,0x8c,0xae,0xbd,0x20,0x2b,0x71,0xf6,0xb6,0x08,0x44,0x64,0x33,0x5a,0x79,0x41,0x4d, + 0x39,0x70,0xce,0x64,0x76,0x7a,0x41,0x83,0x6a,0x5c,0x2d,0xd4,0x87,0x2f,0x92,0x7a,0x32,0xa4,0xb4,0xf1, + 0x02,0xb1,0x39,0xd4,0xe0,0x72,0x46,0xac,0x06,0x2b,0xbc,0x41,0x4a,0xb9,0xf6,0x48,0xdd,0x9c,0xf8,0x77, + 0x7e,0x69,0xf0,0xb7,0xf6,0x94,0x1e,0x09,0xdf,0x7b,0x2d,0xae,0xc0,0x58,0xed,0x35,0xe1,0x2f,0xe5,0xb9, + 0xa7,0xe5,0x72,0x39,0xd9,0xf5,0x35,0xa4,0x99,0x91,0xd3,0xa4,0x6e,0x31,0x87,0xbc,0x16,0x34,0xec,0x90, + 0xa2,0xaf,0xab,0x28,0xf2,0xf4,0x5f,0xb0,0x7c,0xf6,0xf4,0x02,0x5f,0xac,0x58,0xeb,0x55,0xa1,0x27,0x9e, + 0x60,0x7d,0x9d,0x0f,0x6f,0x32,0x09,0x77,0xcf,0x9e,0x9a,0x5b,0x4d,0xc8,0x97,0xd1,0xb3,0x76,0x5f,0x80, + 0x32,0x91,0xc3,0xde,0xf0,0x1a,0x0f,0xaf,0xf6,0xa4,0x3d,0x67,0xf8,0xa1,0x3e,0x1d,0x53,0xcc,0xf6,0xe6, + 0x50,0x83,0xda,0xf6,0x0c,0x96,0xef,0x1d,0xfe,0x0a,0xe6,0x1c,0x86,0x19,0x07,0x6f,0x51,0x67,0xf7,0x9e, + 0xf8,0x8f,0x18,0x46,0xf7,0x7d,0x7c,0x6d,0x32,0x72,0x58,0xcf,0x39,0xbd,0x3d,0x75,0xc6,0x2a,0xd2,0x6e, + 0x72,0xba,0xb0,0x1f,0x02,0x40,0x6a,0xd6,0x3d,0xd2,0xb7,0xc6,0xc8,0x34,0x29,0x2d,0x6b,0xdd,0xc5,0x43, + 0x97,0x7f,0x50,0x06,0x74,0xd4,0xdd,0x32,0xcf,0xf3,0xc4,0xec,0x1d,0x9b,0x50,0x3c,0x49,0x76,0x62,0x2d, + 0x4c,0x37,0x94,0xd4,0xd0,0x03,0xad,0xae,0x27,0xeb,0xa2,0xde,0xde,0x82,0x66,0xa7,0x76,0xdc,0x5d,0xfb, + 0xad,0xa4,0xef,0x10,0xf9,0xd6,0x42,0x6b,0x9d,0xb5,0xcc,0xb1,0x9b,0x6a,0x95,0x63,0x33,0x6f,0x4e,0x48, + 0x56,0xdd,0x0d,0xcb,0xa2,0x50,0x3c,0x09,0x3d,0x71,0x61,0x4d,0x1c,0xfe,0x9e,0x10,0x7d,0x34,0xf4,0xb4, + 0x56,0x59,0x96,0x59,0x5a,0xad,0x76,0xe2,0xd1,0xba,0xf8,0x0d,0x23,0x50,0xbb,0x2f,0xae,0x4d,0xb5,0xa8, + 0x56,0xdb,0x08,0x2d,0xa7,0x54,0xf6,0x6e,0xe8,0xd1,0xd8,0x3d,0xfa,0xdb,0xdd,0x6e,0xe9,0xb7,0x7d,0x59, + 0xa5,0xdb,0x1e,0x0d,0x42,0xdd,0xa0,0x26,0xa8,0xd1,0x3b,0x39,0xc8,0x81,0x7b,0x2d,0x38,0xe0,0xd0,0x42, + 0xff,0xd4,0x9c,0x4c,0x28,0x21,0x6a,0xd7,0xa4,0x0c,0x86,0xf6,0xf2,0xb8,0x20,0xac,0xe5,0x7e,0x56,0x92, + 0x2a,0xb7,0x48,0xc3,0x79,0xf9,0x94,0xa5,0x0e,0x3e,0x27,0x1c,0x2a,0x34,0x32,0x98,0x88,0x92,0x65,0x53, + 0x12,0x4e,0x85,0x0a,0x47,0xcd,0x81,0x4c,0xf2,0xe9,0x43,0x1f,0xc2,0x1f,0x31,0x6c,0x1c,0x38,0xac,0x95, + 0x76,0xcb,0xa8,0x10,0x5d,0xd0,0x80,0xa3,0xbb,0x86,0x27,0xd2,0x63,0xa8,0x22,0x87,0x3a,0xce,0xb0,0xcc, + 0xc1,0x09,0x9c,0xeb,0xad,0x46,0xf4,0xcf,0x88,0xbb,0x46,0xb1,0x05,0xf9,0xc0,0x79,0x32,0xa2,0x3f,0x2d, + 0x7c,0xbb,0xdd,0x3e,0x06,0x6a,0xdc,0xec,0xd5,0x9a,0x48,0x96,0x10,0xe9,0x49,0x80,0x1b,0xbd,0xad,0x8b, + 0x1d,0x09,0xaf,0x2f,0x28,0xdd,0x4d,0xe1,0xe6,0x32,0x1c,0x50,0xa5,0x09,0xda,0x27,0x35,0x47,0xd7,0xab, + 0x20,0x02,0xed,0x07,0xe3,0x07,0x94,0xad,0xe0,0xec,0x0c,0x28,0xfe,0xb4,0x59,0x9d,0x0a,0xa3,0xb9,0x09, + 0x8b,0xe0,0x88,0xdb,0x16,0x1d,0x70,0x77,0x2e,0x09,0xc7,0xf2,0x0c,0x80,0xe3,0x86,0x61,0x7b,0x59,0x20, + 0x11,0x84,0x65,0xef,0xeb,0xcb,0x1a,0xad,0x21,0x9f,0x25,0x6a,0x18,0xda,0xbe,0xbb,0x1e,0x4f,0xcc,0x3d, + 0xb5,0xe2,0xac,0x21,0x1b,0xbe,0x4c,0x8f,0xc4,0x94,0x5c,0xd3,0x33,0x43,0x4d,0x3f,0xc3,0x22,0x36,0xaa, + 0xe8,0x1c,0x85,0xfc,0x1e,0x8e,0xdc,0xc2,0x1e,0x6a,0x1c,0x29,0xbe,0x3b,0xa0,0xf7,0x20,0xb0,0x42,0x29, + 0xbe,0x8a,0x93,0x6f,0x6e,0xa3,0xcc,0x1c,0x93,0x1b,0x07,0x81,0xce,0xc1,0x5b,0xd5,0x10,0xcb,0x10,0x8e, + 0x03,0x53,0xf5,0x1f,0xe7,0x53,0x6b,0x66,0xe3,0x96,0x55,0xdb,0x50,0x3c,0x9a,0x05,0xa8,0x80,0xd2,0x0a, + 0xe7,0x9a,0x54,0xbf,0x77,0x83,0x6f,0x61,0xaf,0x40,0x6e,0x45,0xcf,0x38,0xef,0x67,0x08,0xcc,0x7e,0x17, + 0x18,0x51,0x9e,0xa3,0xa6,0x58,0x7a,0x4a,0xa8,0x17,0x1a,0x07,0xcf,0x39,0xd6,0x17,0x59,0xb7,0xd1,0x19, + 0x22,0xbe,0x28,0x8f,0x1b,0x0e,0xdf,0x8a,0x42,0xe3,0x36,0x78,0x54,0xc5,0xb0,0x5b,0xb6,0x0d,0x33,0x87, + 0x96,0x13,0x98,0x21,0x20,0x97,0x1d,0x1d,0x9a,0x8d,0x5b,0xbb,0xe8,0xae,0x76,0xb2,0x0c,0xba,0xb7,0xc9, + 0x76,0xd4,0x00,0xe5,0xe7,0xd0,0x66,0xf7,0xac,0x2b,0xac,0x62,0x2e,0xb2,0x7e,0xa5,0xe0,0x51,0xc2,0x19, + 0x80,0x19,0x38,0xe0,0x1f,0x63,0x46,0x01,0x89,0xe3,0xaf,0xfe,0x26,0xca,0xf1,0xe1,0xd9,0xb4,0x50,0xe2, + 0xd2,0xd0,0x46,0x52,0x16,0x90,0x32,0xec,0x16,0xac,0x7c,0x1d,0x2d,0x46,0x99,0x84,0xf3,0x7a,0xff,0x0b, + 0x68,0x72,0x8a,0x0c,0x1d,0xe8,0xe8,0x5a,0xb4,0xac,0x2a,0x35,0xe4,0x55,0x08,0x51,0xa3,0xa1,0xfb,0xc3, + 0xc4,0xa6,0xa6,0xe0,0x9f,0x03,0xde,0x5b,0xa6,0xb0,0x59,0x11,0x94,0x47,0xde,0x72,0xd9,0x5d,0xfb,0xc6, + 0xea,0xba,0x08,0x1a,0x61,0xb9,0x1a,0x62,0xb4,0x25,0x15,0x64,0xa1,0x75,0xdd,0x31,0x59,0xb9,0x36,0xfb, + 0xd0,0x1c,0x9d,0xcc,0x49,0xaf,0x8a,0x4b,0x25,0x36,0x9d,0xb9,0x62,0xc3,0x46,0x6b,0x74,0x42,0xee,0x1d, + 0x19,0x99,0xdc,0x92,0xb9,0x15,0x4f,0x6f,0x17,0x19,0xab,0xba,0x08,0x87,0x38,0xba,0x82,0xf4,0xa2,0x2a, + 0x4e,0xbe,0x2a,0x4a,0x9d,0x75,0x0e,0x5e,0x3d,0x7a,0x37,0x13,0x94,0x94,0x91,0x4f,0xd1,0xf2,0x2a,0x03, + 0x98,0xf4,0xc6,0xf0,0xe2,0x76,0x09,0xb4,0x96,0x39,0xa2,0xef,0xc6,0xf4,0x35,0x12,0x6f,0x2c,0x50,0x51, + 0x69,0x4e,0x8e,0x11,0xea,0xac,0xc4,0xea,0xa6,0x44,0x5a,0x3e,0xc4,0xa5,0x2c,0x66,0x57,0x7a,0x75,0xd7, + 0x66,0x1a,0x08,0xb3,0xd0,0x8b,0x26,0x3e,0xb7,0x61,0x89,0xb1,0x67,0x93,0x68,0x1c,0x6e,0x19,0x40,0xaa, + 0x88,0x8c,0x6e,0x82,0xe2,0xe6,0x78,0xa6,0x0f,0x00,0x3e,0xd2,0x46,0x54,0xa6,0xd6,0x82,0x66,0x91,0x71, + 0xbe,0xb0,0xee,0x66,0x5c,0x2c,0xa0,0xf8,0x00,0x92,0xea,0x66,0xd8,0xa8,0xe5,0xb8,0xb1,0xb8,0xae,0x8d, + 0x04,0x62,0xe3,0x39,0xc6,0xd5,0xf2,0x04,0xe9,0x62,0xe0,0x7c,0xbd,0xce,0xb2,0x48,0x37,0x5a,0xc4,0x22, + 0x78,0x47,0xd5,0x09,0xff,0xe0,0xb6,0x27,0x90,0xd9,0x7b,0x75,0x5d,0x7f,0x8b,0xbb,0xce,0x74,0xbd,0xa0, + 0xf3,0xcf,0x38,0x7d,0x23,0x60,0x75,0xd3,0x80,0x1b,0x50,0x2d,0xa1,0x80,0xc0,0x06,0x63,0xa1,0xd1,0x15, + 0x5b,0xba,0x7f,0x02,0x6a,0xe1,0xec,0x29,0x07,0xe7,0x35,0xc8,0x38,0x04,0x29,0x49,0x71,0xac,0x45,0xa9, + 0x77,0x9f,0x97,0x10,0xaf,0x37,0xe5,0xbb,0xf5,0x59,0x19,0x17,0x53,0x2b,0xf7,0xc5,0x94,0xa9,0xcb,0x70, + 0xdb,0x68,0xe3,0x20,0x43,0xa1,0x23,0xfd,0xf4,0x65,0x25,0x1c,0x94,0xf9,0x9d,0x42,0x86,0xeb,0x17,0x07, + 0x74,0xfb,0x21,0xee,0x9c,0xed,0x55,0x4d,0xc5,0xa5,0x92,0x59,0x42,0x1d,0x91,0x2a,0xe3,0xd8,0xaa,0x26, + 0xf2,0x7e,0xa8,0x73,0x01,0x5b,0x7d,0x50,0xef,0x5d,0x57,0x49,0xdd,0xfc,0xe0,0x32,0x1c,0x5e,0x92,0xf1, + 0x6a,0x5d,0xf0,0xd2,0x7d,0xd7,0xb6,0xe7,0x6e,0x3f,0x72,0xca,0x1b,0x4a,0x9d,0x51,0xe0,0x1f,0xad,0xa2, + 0x2e,0x66,0xf2,0x9c,0x2c,0xf2,0xda,0x28,0x4f,0xbd,0x5b,0xae,0x06,0x9d,0xae,0x39,0xed,0x6d,0x87,0xd6, + 0xea,0x07,0x82,0xc9,0x49,0x6d,0x3c,0xab,0x59,0x0e,0x58,0x87,0xe2,0x19,0x1d,0xa4,0x2a,0x87,0xe4,0x32, + 0x1c,0xe7,0xa7,0x9e,0x37,0x69,0xd3,0x0d,0x8a,0x76,0x96,0xf3,0x86,0x9e,0x73,0x07,0x71,0xcb,0x9b,0xee, + 0xe0,0x8c,0xf1,0x5b,0x8e,0x2e,0xed,0x3c,0xeb,0xf5,0x8c,0x86,0xd8,0x8a,0x6a,0x27,0xa6,0x0a,0xd0,0xc0, + 0x97,0xb1,0xe4,0xeb,0xfb,0x0a,0x39,0x04,0x01,0xf5,0x8e,0x87,0xa1,0x4e,0x02,0x2b,0x55,0x88,0xa8,0xf8, + 0xd5,0x82,0x5f,0x16,0x41,0xd4,0x9a,0xc4,0x16,0x15,0xa7,0xdd,0xb0,0x4c,0xc4,0x9a,0x4c,0x35,0x2b,0x42, + 0xe5,0x08,0x94,0x42,0xe8,0x32,0xdc,0x71,0x9c,0xbd,0x63,0xe8,0xe6,0xf5,0x8b,0x4d,0xfe,0x48,0x41,0xb5, + 0xd7,0x3f,0x52,0x58,0x55,0xd3,0xb1,0x2a,0xeb,0xc0,0x04,0xd7,0xf9,0xa3,0x1a,0xdf,0x68,0x94,0x57,0x46, + 0x37,0x75,0x57,0xf8,0xd9,0x50,0x5d,0x2e,0xbe,0xa5,0xf8,0x70,0xef,0x70,0x4f,0xef,0x79,0x4b,0x0e,0x18, + 0x6e,0x31,0xff,0x17,0xa3,0x76,0x72,0xf7,0xb1,0x02,0xb1,0xff,0x03,0x88,0x91,0x17,0xd9,0x5b,0x1b,0x00, + 0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index 72a5cf0..487685c 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,170 +4,176 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0xe9,0x57,0xe3,0x38,0x12,0xff,0x57,0xdc, - 0x99,0xdd,0x81,0xde,0x1e,0x8e,0x40,0x9a,0x69,0x18,0x60,0x27,0x27,0x04,0x48,0x08,0x49,0x38,0xbf,0xec, - 0x53,0x6c,0xc5,0x16,0xf8,0x42,0xb6,0x13,0xd2,0x33,0xfd,0xbf,0xaf,0x0e,0x1f,0xb2,0x2d,0x27,0x0e,0xdb, - 0xfb,0x7a,0xe7,0xbd,0xed,0x0f,0x1d,0xac,0x3a,0xf4,0x53,0xa9,0xaa,0x54,0x92,0xec,0xe3,0x0f,0xad,0xeb, - 0xe6,0xf8,0x71,0xd0,0x56,0x0c,0xdf,0x32,0x4f,0x8f,0xc3,0xff,0x21,0xd0,0x4e,0x8f,0x2d,0xe8,0x03,0x45, - 0x35,0x00,0xf6,0xa0,0x7f,0x52,0xb9,0x1d,0x77,0xb6,0xbe,0x54,0x4e,0x8f,0x7d,0xe4,0x9b,0xf0,0xf4,0x78, - 0x27,0xfc,0x65,0x4c,0x36,0xb0,0xe0,0x49,0xc5,0x37,0xa0,0x05,0xb7,0x54,0xc7,0x74,0x70,0x45,0x51,0x1d, - 0xdb,0x87,0x36,0x91,0xfb,0x69,0x97,0xfd,0xab,0xa4,0x58,0x67,0x08,0xce,0x5d,0x07,0xfb,0x02,0xdf,0x1c, - 0x69,0xbe,0x71,0xa2,0xc1,0x19,0x52,0xe1,0x16,0x7b,0xf8,0x05,0xd9,0xc8,0x47,0xc0,0xdc,0xf2,0x54,0x60, - 0xc2,0x93,0x2a,0x51,0x61,0x22,0xfb,0x45,0xc1,0xd0,0x3c,0xa9,0x78,0xfe,0xc2,0x84,0x9e,0x01,0x21,0xd1, - 0x61,0x60,0x38,0x3d,0xa9,0x4c,0x02,0x5b,0x33,0xe1,0xb6,0xea,0x79,0x84,0xd1,0x53,0x31,0x72,0x7d,0xc5, - 0xc3,0x6a,0x4c,0x78,0xa6,0xed,0x3b,0x9c,0x40,0xfe,0xe0,0x63,0x9c,0x38,0xda,0xe2,0xf4,0x58,0x43,0x33, - 0x05,0x69,0x27,0x15,0xe0,0xba,0x15,0xfe,0x34,0xdb,0x52,0x4d,0x07,0xbc,0xf0,0x07,0xd5,0x04,0x9e,0x77, - 0x52,0xb1,0x1d,0x1f,0x4d,0x91,0x0a,0x7c,0xe4,0xd8,0x4d,0x02,0x1b,0x20,0x1b,0xe2,0x4a,0x21,0x4b,0x45, - 0x39,0x0a,0x5b,0xff,0x50,0x20,0xc6,0x0e,0x3e,0x52,0x44,0xb2,0xf2,0xe1,0x44,0xb1,0x03,0xd3,0x54,0x7e, - 0xfe,0x39,0xd5,0xbe,0xcd,0x78,0x95,0x6f,0x15,0x82,0x01,0x4d,0xd3,0x2a,0x23,0x99,0x8a,0xf2,0xbb,0x6a, - 0x22,0xf5,0x65,0xdb,0xc5,0x70,0xc6,0xac,0x67,0x20,0x0d,0xf6,0xc5,0xce,0x89,0x09,0x5c,0x60,0x47,0xb8, - 0x2c,0xe8,0x79,0x40,0x87,0x95,0xd3,0x3f,0xfe,0x48,0x77,0x16,0x12,0x94,0x6f,0xdf,0x88,0x69,0x88,0x00, - 0x31,0x0c,0x19,0x4e,0xf4,0x7f,0x64,0x17,0x55,0x3e,0x5a,0x6a,0x42,0xd6,0x86,0x2c,0x9d,0x9b,0x5a,0x03, - 0x3e,0x38,0x42,0x16,0xd1,0xb8,0xe3,0xda,0xfa,0x6f,0x13,0xe0,0xc1,0x83,0xda,0x2f,0xe8,0xae,0x71,0x3d, - 0x9c,0xef,0x5e,0x9e,0xe9,0x4e,0x9d,0xfc,0xeb,0x8f,0x6e,0x8d,0xf6,0xad,0x4e,0xfe,0x6a,0xd1,0xc7,0xfa, - 0xbc,0x59,0x7f,0x24,0x3f,0x8d,0x87,0xfa,0xcc,0x3a,0xa7,0x0d,0x67,0x0f,0xc3,0xce,0xfd,0xf9,0x70,0x3c, - 0xd9,0x7b,0xda,0xd5,0xf6,0x3a,0x8b,0xa7,0x9b,0x46,0xe3,0xe9,0xec,0x10,0x3d,0x8d,0x1a,0x17,0x93,0xfb, - 0x8e,0xfd,0x74,0x77,0x61,0x3e,0xde,0x0f,0x3f,0xab,0xaa,0x69,0x0e,0xa8,0xc0,0x43,0xe3,0x62,0xd8,0xee, - 0xdc,0xc2,0x3e,0xf6,0xee,0xb5,0x76,0x5f,0x7f,0xae,0xdf,0x5c,0xa9,0x8f,0x0d,0xb5,0x3e,0x50,0xeb,0x4d, - 0xed,0xa6,0x5f,0xab,0xf7,0xf7,0x7a,0xcd,0x9a,0x3e,0xf4,0x1e,0x2f,0x0e,0xdb,0x7d,0xad,0x3e,0x78,0xac, - 0xb7,0x40,0xbd,0x05,0x5d,0xed,0xd6,0xe8,0x55,0x5f,0x3b,0xcf,0x01,0xd6,0xdd,0xc3,0x91,0xda,0x3b,0xd7, - 0xb5,0x5f,0xab,0xfb,0x77,0xfb,0x53,0xff,0xd6,0xfd,0x0c,0xcf,0xf5,0x5e,0xa7,0x8a,0xf1,0x59,0x1b,0x04, - 0x07,0x77,0xe7,0xad,0xbd,0xf3,0xde,0xe4,0xfc,0xf3,0xeb,0xc5,0xf5,0xd5,0x39,0x06,0x9f,0xa6,0x2f,0x5f, - 0x27,0xde,0xe3,0xd0,0x33,0x7a,0x5f,0xdc,0xab,0xb1,0x7e,0xdb,0xd5,0x47,0xfa,0x2c,0xe8,0xf5,0x9c,0xc7, - 0xf9,0x27,0xd4,0x7b,0x1c,0xe3,0x83,0x1b,0xa3,0xff,0xd8,0xc3,0x7d,0xd4,0x5f,0xcc,0xbb,0x57,0xe6,0xe2, - 0xee,0x52,0x53,0x17,0x8b,0x81,0x67,0xa9,0x43,0x6f,0x71,0xfb,0x79,0xf7,0x45,0x3f,0xf7,0x6f,0x6e,0x82, - 0xbd,0xba,0xd6,0xbf,0xe8,0xb8,0xad,0x97,0xfa,0x65,0xad,0xbb,0x73,0xd5,0xbd,0xef,0x4d,0xf6,0xea,0x5e, - 0xb7,0xa1,0xbe,0xee,0xa2,0xe1,0x19,0xbc,0x39,0x1b,0x8c,0x9f,0xa6,0x77,0x07,0x37,0xed,0xdd,0x4f,0x7a, - 0xeb,0xac,0xb3,0x87,0x1d,0xef,0xac,0xad,0xf7,0x6e,0xde,0xba,0x75,0xc3,0x7e,0xaa,0xa3,0x41,0xff,0x4b, - 0x2d,0x70,0x87,0xd3,0xdd,0x9d,0x6b,0xd3,0xf5,0xae,0x9a,0x0d,0x77,0x7f,0xf1,0xba,0xab,0x1a,0xba,0xdf, - 0xbc,0xbd,0x7d,0xc2,0xc3,0xf9,0xc1,0x4d,0xeb,0x7a,0xbf,0x7d,0x7f,0x3e,0x7a,0xed,0x1c,0xfa,0x00,0x3f, - 0x81,0xd1,0xe5,0xc5,0x03,0xbc,0x68,0x69,0x93,0x1b,0xd3,0x6b,0xef,0x5e,0xb6,0x0e,0x2e,0xfa,0x3b,0x97, - 0xce,0xd0,0x3b,0x33,0xde,0x1e,0x2e,0x9b,0x66,0xf3,0xf2,0xfc,0xa2,0x3b,0x7d,0x19,0x1b,0xf3,0xde,0xbd, - 0x51,0x3f,0xd0,0x1a,0x23,0xc7,0x1c,0xa2,0xe7,0x97,0x8b,0x6b,0xad,0xfa,0x74,0x3b,0x3b,0x5c,0xdc,0x1c, - 0x5e,0xbb,0xaf,0x93,0x73,0x17,0x81,0xdb,0x3b,0xd0,0x9e,0x3c,0xb5,0x7f,0xf5,0xbb,0xdd,0x67,0xa7,0x71, - 0xf9,0xb0,0xf0,0x1c,0xaf,0xaa,0xd6,0xee,0xbe,0xc0,0xc9,0x55,0x5b,0x9b,0xcc,0xf6,0x26,0x6a,0xcf,0x6b, - 0xff,0xaa,0x3f,0x07,0x0d,0x6d,0xf6,0x30,0x1c,0x5d,0xd4,0x3a,0x9f,0x76,0xe6,0xaf,0xdd,0x87,0x07,0xdc, - 0x3d,0x9b,0x5b,0x0f,0xfb,0x5f,0xe7,0x40,0xbd,0x6a,0x19,0xb0,0x7f,0x7d,0x58,0xbd,0x7e,0xbe,0xba,0xb9, - 0xd4,0xaa,0xb5,0xbb,0x5e,0xab,0x69,0x3f,0xea,0xcd,0xb7,0xbb,0xe7,0xee,0x7e,0x7f,0x0c,0xab,0xd6,0xc8, - 0x19,0xb4,0x6a,0x87,0x6f,0xb5,0x11,0x26,0xce,0x71,0xf8,0x3a,0xb0,0x6b,0xd0,0x99,0x35,0x7b,0xcc,0x7b, - 0xda,0x66,0x67,0xfc,0x32,0x0a,0x6e,0xac,0x66,0x93,0x78,0xa2,0x51,0xa5,0x2e,0xfe,0x37,0x7f,0x73,0x83, - 0xe5,0xa7,0x8d,0x8f,0xcc,0xb3,0x49,0xeb,0xb1,0xb1,0x47,0x29,0x33,0x88,0x3d,0xea,0xf7,0xde,0xc2,0xf3, - 0xa1,0xd5,0x6d,0x91,0x88,0x0a,0xc3,0xf0,0x9f,0x4c,0x2a,0x6a,0x27,0x82,0x9f,0x94,0x8d,0x23,0x65,0x83, - 0xfc,0xe4,0x64,0x48,0xf3,0x06,0xd7,0xbb,0x97,0x8a,0x87,0x39,0x89,0x2b,0xcf,0x07,0x7e,0xe0,0xa5,0xe3, - 0x84,0x84,0x8f,0x0d,0xd5,0x30,0x2c,0x85,0x76,0x64,0x6b,0x34,0x0e,0x69,0xba,0x3c,0xa2,0x91,0xb3,0xc5, - 0x85,0xb9,0xa2,0x11,0xfb,0x7b,0x1b,0xb8,0xdb,0xd0,0x06,0x13,0x13,0x6a,0x04,0xe1,0x46,0xa8,0x09,0x6a, - 0x1b,0x14,0x84,0x86,0xbc,0xa4,0xa1,0x12,0x06,0x6d,0x38,0x7c,0x51,0x85,0xaa,0x92,0x28,0x77,0x1d,0x64, - 0xfb,0xdb,0x89,0x55,0x14,0xc2,0x58,0xd4,0x4f,0xba,0x1d,0xb9,0xa4,0xb3,0x25,0x3a,0x09,0x0c,0x26,0x18, - 0x1a,0x3b,0xce,0x1c,0xef,0x1d,0xbd,0x0e,0xfd,0x7b,0xd4,0x61,0x3d,0x11,0x21,0xde,0xe1,0xe6,0xc7,0xe2, - 0xf1,0x79,0x9c,0xd1,0x72,0x34,0x98,0x19,0x9f,0x4c,0xd3,0x18,0xbe,0xf9,0x9b,0x02,0xd2,0x6c,0xbe,0xe3, - 0x59,0x97,0x24,0x7f,0x0d,0xd9,0x7a,0x25,0x02,0x1b,0x3d,0x47,0xdd,0x87,0xcf,0x71,0x4f,0xe1,0x73,0x37, - 0x1a,0x53,0xda,0x12,0x5c,0xe7,0x87,0x90,0x89,0x66,0x7c,0xb2,0xa2,0xa1,0x09,0xe6,0x49,0xfd,0x24,0x74, - 0xc1,0xcc,0x52,0x02,0x66,0x48,0xe7,0x0c,0x3e,0x98,0x50,0x8f,0x02,0x11,0x69,0x12,0xf8,0x7e,0x7a,0x7d, - 0xd9,0x00,0xc4,0xc0,0x33,0x48,0x1c,0x96,0xff,0x31,0x06,0x13,0xa2,0x56,0xd9,0xe0,0x26,0xdd,0xa0,0xab, - 0x09,0x5f,0x31,0xc8,0x1a,0x97,0x30,0xc4,0xf4,0x78,0x58,0xfc,0x79,0x9b,0x74,0x38,0x16,0xc2,0x07,0xbc, - 0xab,0x6f,0x1f,0x23,0x5d,0x27,0xa1,0x53,0xdc,0x7b,0xcc,0x11,0xf7,0x1f,0xb5,0x7c,0x1f,0x04,0x89,0xe7, - 0x15,0x63,0x10,0x78,0x62,0x14,0x49,0xdb,0xf7,0xc1,0xc1,0x13,0xc7,0x92,0x59,0xe0,0xf4,0x64,0x16,0xd8, - 0xb3,0xa4,0xef,0xac,0x47,0x49,0x27,0x9b,0x66,0xc1,0xfd,0xec,0x84,0x8a,0xc9,0x70,0x9f,0xa9,0x38,0x3d, - 0xc6,0xc4,0x1b,0x1d,0xe5,0x88,0xd1,0x4e,0x2a,0x02,0x37,0x30,0xcd,0x91,0x0f,0x5d,0x6f,0x8c,0x03,0x22, - 0x44,0x0b,0x11,0x1a,0x5b,0xa4,0xe8,0x8a,0x08,0x64,0xd0,0xb4,0x2c,0xf0,0x09,0x9d,0x86,0x25,0x53,0x24, - 0xa0,0x2b,0xa1,0xba,0x03,0x4c,0x6f,0xa9,0xee,0x29,0x65,0x90,0x29,0x8f,0xcc,0xef,0x99,0xa4,0xe4,0xc1, - 0x99,0x4c,0x4b,0xec,0xe6,0x46,0x85,0x53,0xac,0x30,0x5d,0x0a,0xcd,0x80,0x19,0xf0,0x42,0xa8,0x07,0x7c, - 0x63,0x7b,0x6a,0x3a,0x0e,0xde,0x8c,0x78,0xef,0x28,0x51,0xd9,0x51,0xf6,0x3e,0x7f,0x56,0xfe,0xa1,0x54, - 0x77,0x77,0xa9,0xc9,0xfe,0x1e,0x95,0x46,0xb9,0xde,0xc5,0xba,0x08,0xd9,0x6e,0xe0,0x2b,0xfe,0xc2,0x25, - 0x03,0xc6,0xc0,0x26,0xc5,0x96,0x62,0x21,0xfb,0xa4,0xb2,0x4b,0x7e,0xc1,0xdb,0x49,0x85,0xa8,0xac,0xa4, - 0xa5,0xe3,0xc1,0x6f,0xdb,0x81,0x35,0x81,0x38,0x81,0x7c,0xc7,0x31,0xe6,0x72,0x93,0x64,0x94,0x1f,0x12, - 0xbb,0xcd,0xb6,0xa6,0x0e,0x51,0xb2,0x49,0xc9,0xbf,0x28,0x24,0xbd,0xc2,0xb7,0x8f,0xe4,0x47,0xf1,0xca, - 0x5a,0x81,0x32,0x6e,0xcf,0x7e,0xac,0x09,0x12,0x0c,0x99,0xf1,0xcb,0xf3,0x74,0x41,0xca,0x21,0xb2,0xc4, - 0x16,0x96,0xf2,0xbb,0x17,0x4c,0x2c,0xe4,0x27,0x75,0x32,0xa9,0xf0,0xcd,0xc5,0x18,0x59,0x70,0x1c,0xb2, - 0xa6,0xa2,0x25,0x49,0x3f,0x94,0x23,0x13,0x33,0xaa,0x01,0xd5,0x97,0x18,0xef,0xc4,0x71,0x4c,0x08,0x6c, - 0x1a,0x04,0x82,0x4c,0xb4,0x86,0x56,0x52,0xbe,0x9f,0x62,0x69,0xdb,0xe1,0x62,0x49,0xc7,0xc7,0x74,0x8a, - 0xe3,0x91,0x6b,0x4b,0x57,0x19,0x00,0xdb,0x6c,0x69,0x0a,0x1d,0x20,0xbf,0x12,0xc6,0x2b,0xf9,0x9f,0x7f, - 0x2a,0x12,0x2a,0x0f,0x45,0xba,0x97,0xd8,0x97,0x24,0x5e,0xd2,0x6f,0x97,0x6c,0xc9,0xb0,0x0d,0x7d,0x71, - 0x41,0x37,0xc1,0x04,0x9a,0x0a,0x73,0x30,0x66,0x1c,0x32,0xbf,0x1e,0xa2,0xea,0xa8,0x31,0xe5,0x6a,0xd2, - 0x3c,0xa1,0x32,0xa6,0x27,0xed,0x2a,0x7c,0xea,0x2b,0x6c,0xa7,0x21,0xd1,0x9d,0x73,0x91,0xb4,0x8d,0xfc, - 0x0c,0x92,0x63,0xa3,0x76,0x3a,0x84,0x3a,0x34,0x3d,0x32,0x6d,0xb5,0x62,0xdb,0xc6,0x4f,0x26,0xb4,0x75, - 0xdf,0x88,0xf7,0x7d,0x3c,0x86,0x42,0xaa,0x18,0x46,0x72,0xf1,0xd8,0xa1,0x49,0x78,0x40,0x53,0x5c,0x0d, - 0xb8,0x6b,0x1e,0x45,0x72,0xf1,0xa4,0x7c,0x4b,0x4f,0x27,0x93,0xdb,0x8a,0xb7,0x52,0xcb,0xbd,0xac,0x84, - 0x7f,0x85,0x8e,0x2d,0x73,0x33,0x31,0x01,0x00,0xb6,0xbe,0xf1,0xb2,0x82,0xef,0x9f,0x7f,0xca,0xef,0x2a, - 0x09,0x04,0xe8,0x43,0x21,0x5c,0x36,0xb9,0x39,0xe4,0xf3,0xdd,0x62,0xdc,0xc2,0x6a,0x95,0x4b,0x19,0x2a, - 0x19,0x0c,0x2e,0xce,0x6b,0xdc,0x14,0x74,0x4b,0x4e,0xb3,0x15,0xd1,0xa6,0xfa,0x45,0x93,0x1f,0xd9,0x7f, - 0x4c,0x3c,0xa8,0x92,0x54,0x94,0x26,0xc9,0x44,0x44,0xd6,0x71,0x59,0xdd,0xc4,0xd2,0x08,0x4d,0x3f,0x52, - 0xb8,0x1d,0xf4,0x06,0x35,0xc1,0x33,0xb9,0x50,0x56,0xb8,0x2a,0x17,0x1e,0x05,0x36,0x46,0xde,0x72,0xd1, - 0xbd,0x42,0x51,0x2f,0x8e,0xad,0x48,0x72,0x87,0x0f,0x77,0xe5,0xb0,0xa7,0x11,0xe8,0xec,0xa0,0xd3,0x3e, - 0x2e,0x9a,0x87,0x66,0xc6,0x5d,0xc1,0x28,0x5b,0x71,0x10,0x53,0xaf,0x8e,0x15,0xd2,0x85,0x37,0x04,0xee, - 0x47,0x21,0x4d,0xea,0xe7,0x16,0xf2,0x5c,0x13,0xb0,0x94,0xb9,0x49,0xdb,0x7f,0x51,0xd8,0xca,0xfc,0x3e, - 0xf4,0x18,0x9a,0x80,0xe5,0x6b,0xf9,0x00,0x48,0xcc,0xc2,0x22,0x9c,0xa2,0x68,0x69,0xa8,0xb4,0x40,0x29, - 0x40,0x2a,0x26,0x54,0x08,0x5f,0x34,0xb0,0xf0,0x56,0x47,0x9f,0xe5,0xd8,0x84,0x71,0x49,0xf0,0xf5,0x18, - 0x43,0x2a,0xe8,0x56,0xa8,0xf4,0x03,0xe8,0x2d,0xd7,0x39,0xe6,0x1c,0xeb,0x28,0x9d,0x43,0xcd,0x5e,0xa5, - 0xf6,0x3e,0xe2,0x59,0x0b,0xad,0x11,0xe0,0x55,0x70,0x43,0x96,0x75,0xd4,0x4e,0x31,0x5a,0xae,0xb4,0xc3, - 0x18,0xd6,0x51,0xe9,0x91,0x35,0x0e,0x2f,0x57,0x3a,0x0a,0x59,0xd6,0x52,0x1b,0xac,0xf0,0x80,0x51,0x90, - 0xf3,0x00,0x79,0xfd,0x56,0xa2,0x1e,0x8b,0x3a,0x9d,0x90,0x5f,0xc3,0x27,0xb3,0xe5,0xfd,0xb8,0xba,0x2c, - 0x8f,0x65,0x49,0x7d,0x26,0x56,0x69,0x34,0xa8,0x93,0xe3,0x51,0xba,0xd1,0x97,0xa7,0xc5,0xbe,0xd3,0x22, - 0xb4,0x82,0x33,0x04,0xbe,0xd7,0xa2,0x5d,0xf2,0xbf,0x94,0xa3,0xe8,0xd0,0x81,0x20,0x26,0x1b,0x65,0x5a, - 0x0e,0x65,0x17,0x2f,0xa0,0x69,0xc2,0xca,0x25,0xef,0xb4,0xae,0x45,0xa7,0x16,0x5c,0x6f,0xe1,0xd2,0x94, - 0x00,0x10,0x8d,0xc9,0xab,0xcb,0x8a,0x0c,0x4d,0x94,0xa0,0xf8,0x73,0x78,0xba,0xc4,0xaa,0xcf,0x06,0x53, - 0x35,0x62,0xed,0xa4,0xf3,0xa3,0x2c,0x65,0xe3,0x63,0x62,0x59,0x5a,0xc4,0x2e,0x2d,0x65,0x7b,0x0e,0xab, - 0x7c,0x96,0x16,0xb3,0x16,0xe7,0x59,0xb3,0x9c,0xe5,0x52,0x2b,0x0a,0x0e,0xce,0x54,0xb2,0xa4,0xcd,0x68, - 0x5c,0x17,0x42,0x2b,0xc0,0xc4,0x62,0xe2,0x94,0x96,0xc0,0x94,0x13,0x4a,0x81,0x14,0x8a,0xda,0xd0,0x48, - 0x2b,0xca,0x5a,0x19,0x57,0xb9,0xc2,0x56,0xaa,0xbf,0xb8,0xb4,0x0d,0x87,0xfe,0x8e,0xe2,0x36,0x96,0x7c, - 0x6f,0x79,0x9b,0x51,0xf0,0x3f,0x55,0xe0,0x5a,0xa2,0xbb,0x7f,0xc7,0x12,0x37,0x15,0x46,0x85,0x45,0x2e, - 0xef,0xfd,0xfb,0x96,0xb9,0xdc,0x05,0x8f,0xd8,0xb4,0x6c,0xf0,0x0e,0xe8,0x99,0x33,0x83,0x40,0x8f,0xa0, - 0xff,0xe5,0x22,0x5b,0x72,0x3e,0xc6,0x39,0x07,0x84,0xb6,0xd2,0xfb,0xd8,0x71,0x4a,0xb1,0xea,0xc2,0x4c, - 0x4f,0xa8,0x65,0xf0,0x69,0x08,0x67,0xcf,0xcf,0xb2,0x06,0x8b,0x39,0x52,0x58,0xc3,0x5a,0xb1,0x18,0x9e, - 0xa0,0xb9,0x10,0x64,0xcc,0x93,0xab,0xfa,0x25,0x85,0x7b,0x06,0x4e,0x5f,0xf8,0x1b,0x98,0xeb,0x96,0xf2, - 0x19,0x65,0x63,0xc7,0x6d,0x39,0x73,0x7b,0xa9,0x16,0xc9,0x76,0x3b,0xa3,0xa5,0xe1,0x90,0x15,0xc0,0xba, - 0x75,0x8b,0x76,0x07,0xff,0x2f,0x22,0x8a,0x8b,0x08,0x6e,0xca,0xff,0x46,0x19,0x91,0xca,0x0e,0x45,0x1d, - 0xff,0x35,0x4a,0x89,0xe5,0xe7,0x67,0xa9,0xc3,0xf0,0x65,0x65,0x47,0x53,0xbc,0xd3,0x49,0x4a,0x0e,0xf1, - 0xe0,0xbc,0x5c,0xb9,0x21,0x48,0x08,0x57,0x4a,0xe9,0xec,0x2f,0xe7,0x29,0x4c,0xfb,0x06,0x55,0x20,0x41, - 0x24,0xc8,0x9e,0x33,0x79,0xe1,0xd2,0x7b,0x35,0xba,0xf0,0xf0,0xac,0x10,0x99,0x70,0x09,0xb5,0x36,0x32, - 0x41,0x36,0x87,0x4c,0x28,0x51,0x3c,0x0f,0x69,0x52,0x71,0xd2,0x5e,0xbc,0x0c,0xf8,0xf0,0xcd,0xe7,0x25, - 0x08,0x93,0x4f,0x0e,0xdc,0x33,0x1a,0x52,0xae,0xf7,0x41,0x32,0xf2,0x14,0x16,0x97,0x0c,0x68,0xee,0x60, - 0x29,0x9e,0x88,0x56,0x8c,0x29,0x96,0x66,0xb8,0x92,0x27,0x19,0xb6,0x84,0xba,0x12,0xdf,0xea,0x59,0xd4, - 0x0c,0xd5,0x5d,0xa9,0xa8,0x68,0x8a,0xa9,0x30,0xbd,0xb2,0x08,0x67,0x93,0x86,0xc7,0x16,0xcd,0x90,0xd8, - 0x31,0xd7,0x9c,0x70,0xaa,0x29,0x37,0xd3,0x62,0xf6,0x0d,0x26,0x3c,0xf5,0x7b,0x69,0xab,0x23,0x57,0xa6, - 0x0d,0xb9,0x24,0x47,0x61,0xe2,0xdb,0x65,0x9c,0x00,0xb9,0x72,0x33,0xa3,0x95,0x76,0xa1,0xa7,0xc9,0x59, - 0x53,0xa6,0xfd,0x33,0x98,0xd8,0xd0,0xb7,0x80,0xf7,0x22,0xf5,0xd2,0x98,0x5a,0xca,0x57,0x13,0x5d,0x72, - 0x8f,0x15,0xe8,0xff,0x21,0x6c,0x1d,0xf8,0x70,0x4e,0xf6,0xf4,0x12,0xcc,0x21,0xa9,0x0c,0xe0,0x48,0x8b, - 0x14,0x6d,0x4c,0x7c,0x0f,0xd4,0xdc,0xf9,0xbb,0xe1,0x78,0x3e,0x7d,0x8d,0x4a,0x86,0x38,0xa2,0xad,0x82, - 0x7c,0xe4,0x9a,0x40,0x85,0x86,0x63,0x6a,0x74,0x5d,0x2e,0x50,0x32,0x48,0x78,0xa8,0xdf,0xd3,0x61,0xc6, - 0x7d,0x4b,0xc7,0x99,0x50,0x57,0xc6,0xea,0x5f,0x63,0x41,0x8c,0x6f,0x66,0x0b,0x16,0xc3,0xc0,0xa5,0x77, - 0xfa,0x1d,0x84,0xad,0x39,0xc0,0x30,0x7d,0xf3,0xca,0x2f,0x71,0xa7,0x21,0x2d,0xbb,0xfd,0x16,0x87,0x3a, - 0x45,0x26,0xe4,0xe6,0x8d,0xb8,0x3b,0xb4,0xe5,0x7f,0xc0,0x48,0x89,0x5d,0xf8,0x48,0x07,0xd8,0xd1,0x69, - 0xa6,0x61,0xaf,0xcd,0x84,0x57,0xb4,0x64,0xbc,0x19,0x22,0x2b,0x29,0x45,0x23,0xe7,0xac,0x12,0xbd,0xfe, - 0x90,0x33,0x4b,0x61,0xf6,0xcc,0x0a,0x2e,0x4b,0x9f,0x89,0xad,0x32,0x97,0xf5,0x0a,0xff,0xd9,0x72,0x31, - 0xb2,0x00,0x5e,0xe4,0x8b,0x3d,0xe2,0x9f,0xd8,0x6f,0x26,0xef,0x66,0x14,0x76,0x1f,0x59,0x2a,0x7d,0x33, - 0xbf,0xa4,0x62,0x1a,0x31,0x05,0x32,0x0f,0xb1,0x7d,0x37,0x6b,0x85,0x1f,0x7e,0xdb,0x27,0xbe,0xe4,0xe7, - 0x60,0xf4,0x95,0xee,0x03,0xcc,0x74,0xda,0x24,0xb0,0x47,0x10,0xcf,0x84,0x82,0x38,0x19,0x0f,0x27,0x94, - 0x49,0x9b,0x89,0x96,0x24,0xa1,0x64,0xf5,0x54,0x24,0x45,0xf4,0x12,0x54,0x6c,0x3c,0x33,0x4a,0xc8,0xe1, - 0x8a,0x48,0xe5,0x8e,0x6c,0x44,0x5d,0x32,0x74,0x49,0x47,0xe5,0xf1,0x99,0x20,0xe7,0xd2,0x44,0xd3,0x15, - 0xf0,0xcb,0x18,0x8b,0x0a,0xe7,0x80,0x30,0x8d,0x7f,0x25,0x00,0xc2,0x5b,0x54,0x02,0x80,0xf0,0x5d,0xaa, - 0x55,0x00,0x78,0x24,0x64,0x00,0x50,0x8d,0x92,0x53,0xf6,0x82,0x22,0xca,0x74,0xa2,0xf7,0x73,0xa3,0x77, - 0xbb,0x28,0x6d,0x2b,0xba,0x3c,0xcc,0x43,0x0b,0xf9,0x4b,0xe1,0x8b,0x75,0xc7,0x20,0xe3,0xa6,0x53,0x25, - 0xda,0x75,0xe6,0xb2,0x0e,0x04,0x58,0x35,0xae,0x62,0x59,0x31,0x9b,0x33,0x12,0x49,0x00,0x31,0xb5,0x18, - 0xe0,0x88,0xf1,0x4a,0x37,0xa1,0xb9,0xa4,0xe3,0x22,0xdb,0x5b,0x92,0x75,0x8a,0x26,0x8f,0x88,0x5d,0xb5, - 0x5b,0xf5,0x41,0x16,0x45,0xd4,0x5e,0x2e,0xb0,0x62,0x2d,0xf9,0xb7,0x3f,0x12,0x74,0xdb,0x64,0xfc,0xb4, - 0xa3,0xf2,0x9e,0xc5,0xd5,0x8e,0xc6,0x75,0x39,0x3a,0x42,0x58,0x07,0x1e,0xd5,0xb3,0x0a,0x1f,0xeb,0x6b, - 0x2d,0x80,0xf5,0x01,0x5f,0x39,0x24,0x10,0x23,0x52,0x69,0x90,0xb1,0xae,0xa5,0x30,0x81,0x1b,0xf5,0xb8, - 0x16,0xd0,0xc1,0x7d,0xaf,0x85,0x49,0x25,0x84,0x47,0x2d,0x99,0x3d,0x45,0x72,0x69,0xc0,0x29,0x9d,0x4b, - 0x41,0xbb,0x73,0x8b,0xf5,0xfb,0x4e,0xc8,0xcd,0xab,0xa5,0x90,0x9b,0x57,0xef,0x80,0x4c,0x74,0xae,0x84, - 0x4c,0xfb,0x5d,0x03,0xf2,0xdc,0xaa,0xf3,0x8d,0x5b,0x0e,0x6d,0x4c,0x29,0x09,0x34,0xd1,0x54,0x88,0x51, - 0xe8,0x6c,0x2d,0x88,0x1d,0x0c,0x5f,0x03,0x68,0xab,0x0b,0x09,0xc8,0x98,0x56,0x1a,0x66,0xa2,0x6d,0x09, - 0x50,0xa1,0xcb,0xa2,0xfc,0x65,0x01,0x37,0x97,0xbf,0xc4,0xdb,0x1c,0x42,0xae,0x0f,0xba,0x97,0x30,0x87, - 0x3a,0xa1,0x94,0xc9,0xe7,0x82,0x9e,0x22,0xbc,0x62,0x57,0xca,0xca,0xfa,0x35,0xe1,0x36,0x4a,0x15,0xb0, - 0x3f,0x6c,0x47,0x54,0xf6,0xe5,0xe5,0x0f,0x2b,0x5e,0x5e,0x96,0xbd,0xb7,0x9c,0xaf,0xba,0x1d,0x37,0x55, - 0x74,0xff,0x6c,0x82,0xd7,0xc0,0xf9,0x4d,0x89,0xf6,0xb7,0x09,0x6d,0x7b,0x02,0xd4,0x17,0x79,0xf1,0x2d, - 0x1c,0x43,0x0a,0xfc,0x92,0x37,0x5f,0x57,0x39,0x3d,0x3d,0x59,0x6f,0x3a,0x81,0x78,0x74,0x23,0x28,0x54, - 0x29,0xa5,0x9c,0xbf,0x27,0x8a,0x72,0xce,0x93,0xd3,0x18,0x9e,0xa6,0x57,0xc3,0xd3,0xf4,0xea,0x41,0x6a, - 0x9e,0x45,0xf6,0x39,0xfa,0x0a,0xb0,0x46,0xdf,0xf9,0x54,0x4e,0x4f,0x94,0xaa,0x64,0xaf,0xb6,0x9c,0xdb, - 0xa8,0xc9,0x86,0x95,0x7a,0xf5,0x34,0xb2,0x57,0xed,0x87,0xbd,0xf3,0x5a,0x74,0x94,0x27,0x20,0x0e,0x3c, - 0xd8,0x0c,0xc8,0xfe,0x20,0x73,0x5e,0x27,0xe1,0x58,0x7d,0x68,0x27,0xb7,0x09,0x1b,0x92,0x27,0x37,0x46, - 0x38,0xdc,0xa2,0x77,0x6e,0xf3,0x6a,0x2a,0xf4,0xad,0x68,0xf2,0x87,0x50,0xbe,0xf2,0x1b,0x9c,0x1d,0xd6, - 0x5c,0xe2,0xba,0x60,0xdd,0xcd,0xac,0x4d,0xd2,0x98,0x10,0x56,0x23,0xd6,0x1d,0x1f,0xa6,0x01,0xbc,0x7e, - 0x9e,0xba,0xf9,0x91,0x7d,0x63,0x22,0x40,0xa7,0x2a,0xc2,0x68,0xa3,0x1f,0x9c,0xa4,0x1c,0x46,0xcc,0x21, - 0xe9,0x48,0xcc,0x7f,0x02,0x42,0x2f,0x44,0xa7,0xe8,0xad,0xf8,0x4e,0x34,0xfc,0xc6,0x46,0x38,0xd2,0x72, - 0x17,0xec,0x92,0x88,0xeb,0x9e,0x60,0xf1,0xe3,0x9d,0xf0,0x37,0xfb,0xed,0x4e,0x74,0x78,0x72,0xc7,0xc9, - 0xec,0x13,0x9e,0xac,0x48,0xfc,0xe9,0x4e,0xee,0xa2,0x29,0xfc,0x62,0xd0,0x24,0x93,0x11,0x00,0x9d,0x78, - 0xd3,0x33,0x98,0x01,0xde,0x58,0x39,0x65,0xe7,0x02,0x75,0x97,0x58,0x48,0xf8,0x82,0x90,0x7f,0x3b,0xb8, - 0xc3,0x3e,0x99,0xfc,0x37,0x3b,0xd5,0xbc,0x3b,0x48,0x39,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0xe9,0x57,0xe3,0x38,0x12,0xff,0x57,0x4c, + 0x66,0x77,0xa0,0xb7,0x9b,0x23,0x90,0x66,0x1a,0x06,0x98,0x09,0x39,0x20,0x40,0x42,0x48,0xc2,0xf9,0x65, + 0x9f,0x62,0x2b,0xb6,0xc0,0xb1,0x8d,0x64,0x27,0xa4,0x67,0xfa,0x7f,0x5f,0x1d,0x3e,0x64,0x5b,0xce,0xc1, + 0xf6,0xbe,0x9e,0x79,0x6f,0xfb,0x43,0x07,0xab,0x0e,0xfd,0xaa,0x54,0x2a,0x95,0x64,0xf9,0x68,0xad,0x7e, + 0x5d,0x1b,0x3c,0x76,0x1b,0x9a,0xe5,0x8f,0xed,0x93,0xa3,0xf0,0x7f,0x08,0x8c,0x93,0xa3,0x31,0xf4,0x81, + 0xa6,0x5b,0x00,0x13,0xe8,0x1f,0x97,0x6e,0x07,0xcd,0xcd,0x2f,0xa5,0x93,0x23,0x1f,0xf9,0x36,0x3c,0x39, + 0xda,0x0e,0x7f,0x39,0x93,0x03,0xc6,0xf0,0xb8,0xe4,0x5b,0x70,0x0c,0x37,0x75,0xd7,0x76,0x71,0x49,0xd3, + 0x5d,0xc7,0x87,0x0e,0x95,0xfb,0x69,0x87,0xff,0x2b,0xa5,0x58,0x27,0x08,0x4e,0x3d,0x17,0xfb,0x12,0xdf, + 0x14,0x19,0xbe,0x75,0x6c,0xc0,0x09,0xd2,0xe1,0x26,0x7f,0xf8,0x84,0x1c,0xe4,0x23,0x60,0x6f,0x12,0x1d, + 0xd8,0xf0,0xb8,0x4c,0x55,0xd8,0xc8,0x79,0xd1,0x30,0xb4,0x8f,0x4b,0xc4,0x9f,0xd9,0x90,0x58,0x10,0x52, + 0x1d,0x16,0x86,0xa3,0xe3,0xd2,0x30,0x70,0x0c,0x1b,0x6e,0xe9,0x84,0x50,0x46,0xa2,0x63,0xe4,0xf9,0x1a, + 0xc1,0x7a,0x4c,0x78,0x66,0xed,0xdb,0x82,0x40,0xff,0x10,0x36,0x0e,0x5d,0x63,0x76,0x72,0x64,0xa0,0x89, + 0x86,0x8c,0xe3,0x12,0xf0,0xbc,0x92,0x78,0x9a,0x6c,0xea,0xb6,0x0b,0x5e,0xc4,0x83,0x6e,0x03,0x42,0x8e, + 0x4b,0x8e,0xeb,0xa3,0x11,0xd2,0x81,0x8f,0x5c,0xa7,0x46,0x61,0x03,0xe4,0x40,0x5c,0x2a,0x64,0x29,0x69, + 0x87,0x61,0xeb,0x1f,0x1a,0xc4,0xd8,0xc5,0x87,0x9a,0x4c,0xd6,0xd6,0x8e,0x35,0x27,0xb0,0x6d,0xed,0xe7, + 0x9f,0x53,0xed,0x5b,0x9c,0x57,0xfb,0x56,0xa2,0x18,0xd0,0x28,0xad,0x32,0x92,0x29,0x69,0xbf,0xeb,0x36, + 0xd2,0x5f,0xb6,0x3c,0x0c,0x27,0xdc,0x7b,0x16,0x32,0x60,0x47,0xee,0x9c,0xba,0xc0,0x03,0x4e,0x84,0x6b, + 0x0c,0x09,0x01,0x26,0x2c,0x9d,0xfc,0xf1,0x47,0xba,0xb3,0x90,0xa0,0x7d,0xfb,0x46,0x5d,0x43,0x05,0xa8, + 0x63,0xa8,0x39,0xd1,0xff,0x91,0x5f,0x74,0xb5,0xb5,0xcc,0x85,0xbc,0x0d,0x8d,0x4d,0xe1,0x6a,0x03,0xf8, + 0xe0,0x10,0x8d,0xa9,0xc6,0x6d,0xcf,0x31,0x7f,0x1d,0x02,0x02,0xf7,0x2b,0x9f,0xd0,0xdd,0xe9,0x75,0x6f, + 0xba,0x73,0x79,0x66,0xba,0x55,0xfa,0xaf,0xd3,0xbf,0xb5,0x1a,0xb7,0x26,0xfd,0xab,0xce,0x1e,0xab,0xd3, + 0x5a,0xf5,0x91,0xfe,0x9c,0x3e,0x54,0x27,0xe3,0x73,0xd6,0x70,0xf6,0xd0,0x6b,0xde,0x9f,0xf7,0x06,0xc3, + 0xdd,0xa7,0x1d,0x63,0xb7,0x39,0x7b,0xba,0x39,0x3d,0x7d,0x3a,0x3b,0x40,0x4f,0xfd,0xd3,0x8b,0xe1,0x7d, + 0xd3,0x79,0xba,0xbb,0xb0,0x1f,0xef,0x7b,0x9f,0x75,0xdd,0xb6,0xbb,0x4c,0xe0,0xe1,0xf4,0xa2,0xd7,0x68, + 0xde,0xc2,0x0e,0x26,0xf7,0x46,0xa3,0x63,0x3e,0x57,0x6f,0xae,0xf4,0xc7,0x53,0xbd,0xda,0xd5,0xab,0x35, + 0xe3,0xa6,0x53,0xa9,0x76,0x76,0xdb,0xb5,0x8a,0xd9,0x23,0x8f,0x17,0x07,0x8d,0x8e,0x51,0xed,0x3e,0x56, + 0xeb,0xa0,0x5a,0x87,0x9e,0x71,0x6b,0xb5,0xcb,0xaf,0xcd,0xe7,0x00,0x9b,0xde,0x41,0x5f,0x6f,0x9f,0x9b, + 0xc6,0x2f,0xe5,0xbd,0xbb,0xbd,0x91,0x7f,0xeb,0x7d,0x86,0xe7,0x66,0xbb,0x59,0xc6,0xf8,0xac,0x01,0x82, + 0xfd,0xbb,0xf3,0xfa,0xee,0x79,0x7b,0x78,0xfe,0xf9,0xf5,0xe2,0xfa,0xea,0x1c,0x83,0x8f,0xa3,0x97,0xaf, + 0x43,0xf2,0xd8,0x23,0x56,0xfb,0x8b,0x77,0x35,0x30,0x6f,0x5b,0x66,0xdf,0x9c,0x04,0xed,0xb6,0xfb,0x38, + 0xfd,0x88,0xda,0x8f,0x03,0xbc,0x7f,0x63,0x75,0x1e,0xdb,0xb8,0x83,0x3a,0xb3,0x69,0xeb,0xca,0x9e,0xdd, + 0x5d,0x1a,0xfa,0x6c,0xd6,0x25,0x63,0xbd,0x47,0x66,0xb7,0x9f,0x77,0x5e,0xcc,0x73,0xff,0xe6,0x26,0xd8, + 0xad,0x1a,0x9d,0x8b,0xa6,0x57,0x7f,0xa9,0x5e,0x56,0x5a,0xdb,0x57,0xad,0xfb,0xf6,0x70,0xb7,0x4a,0x5a, + 0xa7,0xfa,0xeb,0x0e,0xea,0x9d,0xc1,0x9b,0xb3,0xee,0xe0,0x69,0x74,0xb7,0x7f,0xd3,0xd8,0xf9,0x68,0xd6, + 0xcf,0x9a,0xbb,0xd8,0x25,0x67,0x0d,0xb3,0x7d,0xf3,0xd6,0xaa,0x5a,0xce,0x53,0x15,0x75,0x3b,0x5f,0x2a, + 0x81,0xd7,0x1b,0xed,0x6c,0x5f,0xdb,0x1e,0xb9,0xaa,0x9d,0x7a,0x7b,0xb3,0xd7,0x1d,0xdd,0x32,0xfd,0xda, + 0xed,0xed,0x13,0xee,0x4d,0xf7,0x6f,0xea,0xd7,0x7b,0x8d,0xfb,0xf3,0xfe,0x6b,0xf3,0xc0,0x07,0xf8,0x09, + 0xf4,0x2f,0x2f,0x1e,0xe0,0x45,0xdd,0x18,0xde,0xd8,0xa4,0xb1,0x73,0x59,0xdf,0xbf,0xe8,0x6c,0x5f,0xba, + 0x3d,0x72,0x66,0xbd,0x3d,0x5c,0xd6,0xec,0xda,0xe5,0xf9,0x45,0x6b,0xf4,0x32,0xb0,0xa6,0xed,0x7b,0xab, + 0xba,0x6f,0x9c,0xf6,0x5d,0xbb,0x87,0x9e,0x5f,0x2e,0xae,0x8d,0xf2,0xd3,0xed,0xe4,0x60,0x76,0x73,0x70, + 0xed,0xbd,0x0e,0xcf,0x3d,0x04,0x6e,0xef,0x40,0x63,0xf8,0xd4,0xf8,0xc5,0x6f,0xb5,0x9e,0xdd,0xd3,0xcb, + 0x87,0x19,0x71,0x49,0x59,0xaf,0xdc,0x7d,0x81,0xc3,0xab,0x86,0x31,0x9c,0xec,0x0e,0xf5,0x36,0x69,0xfc, + 0x62,0x3e,0x07,0xa7,0xc6,0xe4,0xa1,0xd7,0xbf,0xa8,0x34,0x3f,0x6e,0x4f,0x5f,0x5b,0x0f,0x0f,0xb8,0x75, + 0x36,0x1d,0x3f,0xec,0x7d,0x9d,0x02,0xfd,0xaa,0x6e,0xc1,0xce,0xf5,0x41,0xf9,0xfa,0xf9,0xea,0xe6,0xd2, + 0x28,0x57,0xee,0xda,0xf5,0x9a,0xf3,0x68,0xd6,0xde,0xee,0x9e,0x5b,0x7b,0x9d,0x01,0x2c,0x8f,0xfb,0x6e, + 0xb7,0x5e,0x39,0x78,0xab,0xf4,0x31,0x0d,0x8e,0x83,0xd7,0xae,0x53,0x81,0xee,0xa4,0xd6,0xe6,0xd1,0xd3, + 0xb0,0x9b,0x83,0x97,0x7e,0x70,0x33,0xae,0xd5,0x68,0x24,0x5a,0x65,0x16,0xe2,0xff,0xf0,0x37,0xd6,0x79, + 0x7e,0x5a,0xff,0xc0,0x23,0x9b,0xb6,0x1e,0x59,0xbb,0x8c,0x42,0x7c,0xe0,0x07,0x64,0x8b,0xcc,0x88,0x0f, + 0xc7,0xad,0x3a,0x9d,0x50,0xe1,0x2c,0xfc,0x8d,0x0b,0x45,0xed,0x54,0xee,0xa3,0xb6,0x7e,0xa8,0xad,0xd3, + 0x9f,0xac,0x08,0x6d,0x5d,0x17,0x5a,0x77,0x53,0xb3,0x61,0x4a,0x67,0x95,0xe0,0x4d,0xcf,0x12,0x3a,0x79, + 0x1c,0xa8,0x87,0x93,0x52,0x6a,0x47,0x8e,0xc1,0x66,0x21,0x4b,0x96,0x87,0x6c,0xde,0x6c,0x0a,0x61,0xa1, + 0xa8,0x2f,0x3a,0x05,0xde,0x16,0x74,0xc0,0xd0,0x86,0x06,0x05,0xb8,0x1e,0x6a,0x82,0xc6,0x3a,0x03,0x61, + 0x20,0x92,0x34,0x94,0xc2,0x29,0x1b,0x1a,0x2f,0xab,0xd0,0x75,0x3a,0xc7,0x3d,0x17,0x39,0xfe,0x56,0xe2, + 0x13,0x8d,0x32,0x16,0xf5,0x93,0x6e,0x47,0x1e,0xed,0x6c,0x8e,0x4e,0x0a,0x83,0x0b,0x86,0xae,0x8e,0xf3, + 0xc6,0x7b,0xad,0x37,0xa1,0x7f,0x8f,0x9a,0xbc,0x27,0x2a,0x24,0x3a,0xdc,0xf8,0x50,0x6c,0x1f,0x11,0x8c, + 0x63,0xd7,0x80,0x19,0xfb,0x54,0x9a,0x06,0xf0,0xcd,0xdf,0x78,0x37,0xd2,0x14,0x50,0xd9,0xff,0x19,0x78, + 0x62,0x15,0x1b,0xa0,0xb1,0x00,0x23,0xb0,0xd4,0xe3,0xc6,0xa4,0xfb,0x6c,0xb2,0x15,0x29,0x9f,0xae,0x3c, + 0x06,0x72,0xcc,0x52,0x84,0x20,0x7a,0x8e,0xd4,0x87,0xcf,0xb1,0xa1,0xe1,0x73,0x2b,0x02,0x9a,0x36,0x4f, + 0xe8,0x5c,0x0b,0x99,0xd8,0x72,0x43,0x97,0x53,0x34,0xc4,0x62,0x45,0x39,0x0e,0x27,0x40,0xda,0xe6,0x29, + 0xc0,0x0e,0x47,0x20,0x84,0x2d,0x40,0x7a,0x90,0x56,0x01,0x0d,0xb6,0x34,0x51,0x4e,0x2f,0x42,0xc2,0xd7, + 0xaa,0x2d,0x1c,0xd3,0xc2,0x20,0xf0,0x28,0x4b,0xa4,0x8a,0x13,0x7b,0x10,0x10,0xe6,0xd7,0xbc,0x98,0xa0, + 0x6c,0x49,0x13,0x4d,0x6a,0x96,0xb4,0x09,0x20,0x24,0x1e,0x73,0xfd,0x65,0x80,0x81,0x0e,0x33,0x2a,0x13, + 0x42,0x82,0x24,0xf1,0x81,0x42,0xfa,0x08,0x44,0x38,0x87,0x81,0xef,0x53,0x7f,0x88,0x9f,0x4d,0x0f,0xd3, + 0x55,0x0c,0xcf,0xa2,0xda,0x62,0x1b,0x78,0x68,0x9b,0xcb,0xf9,0x4c,0x6e,0x9b,0x0e,0x67,0x61,0xcf,0x75, + 0x77,0xea,0x30,0x67,0x87,0x08,0xc0,0x89,0x96,0xed,0x24,0x5a,0xbe,0x69,0x0c,0x41,0x1b,0xfa,0xb0,0xbf, + 0xd8,0x9c,0x3a,0x67,0x8c,0x55,0xe6,0x02,0x27,0xaa,0x3f,0xc0,0x04,0x99,0x62,0x60,0x7d,0x30,0x24,0x79, + 0xfb,0xe4,0xa2,0x64,0x1d,0xd0,0x68,0x9f,0x40,0x9a,0xe6,0xc4,0x1f,0x03,0x30,0xa4,0xe1,0xa0,0xad,0x0b, + 0x37,0xad,0xb3,0x12,0x24,0xc2,0x29,0x31,0xc4,0xf4,0x18,0x6b,0xe8,0x56,0xda,0xe1,0x40,0xca,0xb9,0xe0, + 0x5d,0x7d,0xfb,0x18,0x99,0x26,0xc4,0x73,0x7a,0x8f,0x39,0xe2,0xfe,0xa3,0x96,0xef,0x83,0x20,0x49,0x03, + 0xc5,0x18,0x24,0x9e,0x18,0x45,0xd2,0xf6,0x7d,0x70,0x88,0xf5,0x66,0xce,0x28,0x08,0x7a,0x32,0x0a,0xfc, + 0x59,0xd1,0x77,0x36,0x13,0x28,0x07,0x9b,0x2d,0x9d,0x7b,0xd9,0x01,0x95,0x57,0xd0,0x3d,0xae,0xe2,0xe4, + 0x08,0xd3,0x2c,0xe2,0x6a,0x87,0x9c,0x76,0x5c,0x92,0xb8,0x81,0x6d,0xf7,0x7d,0xe8,0x91,0x01,0x0e,0xa8, + 0x10,0xcb,0x1c,0x2c,0x25,0xd3,0x4a,0x3d,0x22,0x50,0xa3,0x59,0x2d,0xe9,0x53,0x3a,0x4b,0x97,0x5c,0x91, + 0x84,0x6e,0x09,0xd5,0x4d,0x60,0x93,0xb9,0xba,0x47,0x8c,0x41,0xa5,0x3c,0x72,0x3f,0xb1,0x69,0x9d,0x8c, + 0x33,0x0b,0x34,0xf5,0x9b,0x17,0x65,0xba,0x58,0x61,0xba,0x7e,0x9e,0x00,0x3b,0x10,0x93,0xb3,0x0d,0x7c, + 0x6b,0x6b,0x64,0xbb,0x2e,0xde,0x88,0x78,0xef,0x18,0x51,0xdb,0xd6,0x76,0x3f,0x7f,0xd6,0xfe,0xa5,0x95, + 0x77,0x76,0x98,0xcb,0xfe,0x19,0xd5,0xd3,0xb9,0xde,0xe5,0x62,0x1a,0x39,0x5e,0xe0,0x6b,0xfe,0xcc,0xa3, + 0x06,0x63,0xe0,0xd0,0x0a,0x5d,0x1b,0x23,0xe7,0xb8,0xb4,0x43,0x7f,0xc1,0xdb,0x71,0x89,0xaa,0x2c,0xa5, + 0xa5,0x63,0xe3,0xb7,0x9c,0x60,0x3c,0x84,0x38,0x81,0x7c,0x27,0x30,0x16,0xa5,0x06,0xd9,0xca,0xb5,0xc4, + 0x6f,0x93,0xcd,0x91,0x4b,0x95,0x6c,0x30,0xf2,0x27,0x8d,0xae,0x75,0xf0,0xed,0x03,0xfd,0xd1,0xc8,0xb2, + 0x5e,0x60,0x8c,0x5b,0x93,0x1f,0xeb,0x82,0x04,0x43,0xc6,0x7e,0xf5,0xfa,0x5a,0x90,0x72,0xa8,0x2c,0xf5, + 0xc5,0x58,0xfb,0x9d,0x04,0xc3,0x31,0xf2,0x93,0xcd,0x15,0xdd,0x16,0xda,0x33,0xb6,0x70,0x0f,0x42,0xd6, + 0xd4,0x6c,0x49,0xd2,0x0f,0xe3,0xc8,0xcc,0x19,0xdd,0x82,0xfa,0x4b,0x8c,0x77,0xe8,0xba,0x36,0x04,0x0e, + 0x9b,0x04,0x92,0x4c,0x54,0x7a,0x95,0x52,0xb1,0x9f,0x62,0x69,0x38,0x61,0x8d,0xc5,0xec,0xe3,0x3a,0x65, + 0x7b,0xd4,0xda,0xe6,0x2d,0xe8,0x6b,0xf9,0x02,0x2a,0x2e,0x00,0xff,0xfc,0x53,0x53,0x50,0xc5,0x54,0x64, + 0x1b,0xd0,0x3d,0x45,0xe2,0xa5,0xfd,0xb6,0xe8,0x3e,0x1e,0x3b,0xd0,0x97,0xeb,0x40,0x1b,0x0c,0xa1,0xad, + 0xf1,0x00,0xe3,0xce,0xa1,0xe3,0x4b,0x10,0x53,0xc7,0x9c,0xa9,0x56,0x93,0xe6,0x09,0x95,0x71,0x3d,0xe9, + 0x50,0x11,0x43,0x5f,0xe2,0xdb,0x53,0x85,0xee,0x5c,0x88,0xa4,0x7d,0xe4,0x67,0x90,0x1c,0x59,0x95,0x93, + 0x1e,0x34,0xa1,0x4d,0xe8,0xb0,0x55,0x8a,0x7d,0x1b,0x3f,0xd9,0xd0,0x31,0x7d,0x2b,0x3e,0x2c,0x10,0x73, + 0x28,0xa4,0xca,0xd3,0x48,0x2d,0x1e,0x07,0x34,0x9d,0x1e,0xd0,0x96,0x57,0x03,0x11,0x9a,0x87,0x91,0x5c, + 0x3c,0x28,0xdf,0xd2,0xc3,0xc9,0xe5,0x36,0xe3,0xfd,0xf7,0xfc,0x28,0x5b,0x22,0xbe,0xc2,0xc0,0x56,0x85, + 0x99,0x9c,0x00,0x00,0x5f,0xdf,0x44,0x59,0x21,0x0a,0xa3,0x9f,0xf2,0x47,0x11,0xa2,0xa6,0x91,0xa6,0xcb, + 0x86,0x70,0x87,0x7a,0xbc,0x73,0x85,0x4d,0x2e,0x65,0xe8,0xd4,0x18,0x5c,0x9c,0xd7,0x84,0x2b,0xd8,0x39, + 0x0e,0xcb,0x56,0x54,0x9b,0xee,0x17,0x0d,0x7e,0xe4,0xff,0x01,0x8d,0xa0,0x52,0x52,0xde,0xdb,0x34,0x13, + 0x51,0x59,0xd7,0xe3,0x75,0x13,0x4f,0x23,0x2c,0xfd,0x28,0xe1,0x36,0xd1,0x1b,0x34,0xa4,0xc8,0x14,0x42, + 0x59,0xe1,0xb2,0x5a,0xb8,0x1f,0x38,0x18,0x91,0xf9,0xa2,0xbb,0x85,0xa2,0x24,0x9e,0x5b,0x91,0xe4,0xb6, + 0x30,0x77,0xa1,0xd9,0xa3,0x08,0x74,0xd6,0xe8,0x74,0x8c,0xcb,0xee,0x61,0x99,0x71,0x47,0x72,0xca,0x66, + 0x3c,0x89,0x59,0x54,0xc7,0x0a,0xd9,0xc2,0x1b,0x02,0xf7,0xa3,0x29,0xcd,0xb6,0x3a,0x88,0x78,0x36,0xe0, + 0x29,0x73,0x83,0xb5,0x7f,0xd2,0xf8,0xca,0xfc,0x3e,0xf4,0x18,0xda,0x80,0xe7,0x6b,0xb5,0x01,0x74,0xce, + 0xc2,0x22,0x9c,0xb2,0xe8,0xd2,0x50,0x59,0x81,0x52,0x80,0x54,0x4e,0xa8,0x10,0xbe,0x18,0x60,0x46,0x16, + 0xcf,0xbe,0xb1,0xeb,0x50,0xc6,0x39,0x93,0xaf,0xcd,0x19,0x52,0x93,0x6e,0x81,0x4a,0x3f,0x80,0x64,0xbe, + 0xce,0x81,0xe0,0x58,0x45,0xe9,0x14,0x1a,0xce,0x22,0xb5,0xf7,0x11,0xcf,0x4a,0x68,0xad,0x00,0x2f,0x82, + 0x1b,0xb2,0xac,0xa2,0x76,0x84,0xd1,0x7c,0xa5,0x4d,0xce,0xb0,0x8a,0x4a,0x42,0xd7,0x38,0x3c,0x5f,0x69, + 0x3f,0x64,0x59,0x49,0x6d,0xb0,0x20,0x02,0xfa,0x41,0x2e,0x02,0xd4,0xf5,0xdb,0x12,0xf5,0x58,0xd4,0xe9, + 0x90,0xfe,0x5a,0x3e,0x1d,0x2d,0xf2,0xe3,0xea,0xb2,0x3c,0x96,0x39,0xf5,0x99,0x5c,0xa5,0xb1,0x49,0x9d, + 0x9c,0xa9,0xb3,0x63,0x17,0x75,0x5a,0xec,0xb8,0x75,0x4a,0x2b,0x38,0x7a,0x12,0x7b,0x2d,0xd6,0x65,0xb8, + 0xb7,0x3f,0x8c,0xce,0xaa,0x28,0x62,0xba,0x51,0x66,0xe5,0x50,0x76,0xf1,0x02,0x86,0x21,0xad,0x5c,0xea, + 0x4e,0xab,0x46,0xb4,0xb7,0x17,0x7a,0x0b,0x97,0xa6,0x04,0x80,0xec,0x4c,0x51,0x5d,0x96,0x54,0x68,0xa2, + 0x04,0x25,0x9e,0xc3,0x33,0x49,0x5e,0x7d,0x9e,0x72,0x55,0x7d,0xde,0x4e,0x3b,0x3f,0xcc,0x52,0xd6,0x3f, + 0x24,0x9e,0x65,0x45,0xec,0xdc,0x52,0xb6,0xed,0xf2,0xca,0x67,0x6e,0x31,0x3b,0x16,0x3c,0x2b,0x96,0xb3, + 0x42,0x6a,0x41,0xc1,0x21,0x98,0x96,0x2c,0x69,0x33,0x1a,0x57,0x85,0x50,0x0f,0x30,0xf5,0x98,0x3c,0xa4, + 0x4b,0x60,0xca,0x09,0xa5,0x40,0x4a,0x45,0x6d,0xe8,0xa4,0x05,0x65,0xad,0x8a,0x6b,0xb9,0xc2,0x56,0xa9, + 0xbf,0xb8,0xb4,0x0d,0x4d,0x7f,0x47,0x71,0x1b,0x4b,0xbe,0xb7,0xbc,0xcd,0x28,0xf8,0x4b,0x15,0xb8,0x63, + 0x39,0xdc,0xbf,0x63,0x89,0x9b,0x9a,0x46,0x85,0x45,0xae,0xe8,0xfd,0xfb,0x96,0xb9,0x22,0x04,0x0f,0xf9, + 0xb0,0xac,0x8b,0x0e,0xd8,0x01,0x2a,0x87,0xc0,0x5e,0x5c,0xfc,0xdb,0x43,0x8e,0xe2,0x7c,0x4c,0x70,0x76, + 0x29,0x6d,0x61,0xf4,0xf1,0xe3,0x94,0x62,0xd5,0x85,0x99,0x9e,0x52,0x97,0xc1,0x67,0x20,0x9c,0x3d,0x3f, + 0xcb,0x3a,0x2c,0xe6,0x48,0x61,0x0d,0x6b,0xc5,0x62,0x78,0x92,0xe6,0x42,0x90,0x31,0x4f,0xae,0xea,0x57, + 0x14,0xee,0x19,0x38,0x1d,0xe9,0x6f,0x60,0xaf,0x5a,0xca,0x67,0x94,0x0d,0x5c,0x8f,0x9d,0x16,0xcf,0xd5, + 0xa2,0xd8,0x6e,0x67,0xb4,0x9c,0xba,0x74,0x05,0x18,0xdf,0x7a,0x45,0xbb,0x83,0xff,0x17,0x11,0xc5,0x45, + 0x84,0x70,0xe5,0xff,0xa2,0x8c,0x48,0x65,0x87,0xa2,0x8e,0xff,0x1e,0xa5,0xc4,0xfc,0xf3,0xb3,0xd4,0x61, + 0xf8,0xbc,0xb2,0xa3,0x26,0xbf,0x60,0x4b,0x4a,0x0e,0xf9,0xe0,0x7c,0xb9,0x72,0x43,0x92,0x90,0xde,0x44, + 0xa6,0xb3,0xbf,0x9a,0xa7,0x30,0xed,0x5b,0x4c,0x81,0x02,0x91,0x24,0x7b,0xce,0xe5,0xa5,0x9b,0x12,0x8b, + 0xd1,0x85,0x87,0x67,0x85,0xc8,0xa4,0x77,0x97,0x2b,0x23,0x93,0x64,0x73,0xc8,0xa4,0x12,0x85,0x10,0x64, + 0x28,0xc5,0x69,0x7b,0xf1,0x32,0xe0,0xc3,0x37,0x5f,0x94,0x20,0x5c,0x3e,0x39,0x70,0xcf,0x68,0x48,0x85, + 0xde,0x9a,0xc2,0xf2,0x14,0x16,0x8f,0x1a,0x34,0x75,0xb1,0x12,0x4f,0x44,0x2b,0xc6,0x14,0x4b,0x73,0x5c, + 0xc9,0x93,0x0a,0x5b,0x42,0x5d,0x88,0x6f,0xf1,0x28,0x1a,0x96,0xee,0x2d,0x54,0x54,0x34,0xc4,0x4c,0x98, + 0xbd,0xb2,0x08,0x47,0x93,0x4d,0x8f,0x4d,0x96,0x21,0xb1,0x6b,0xaf,0x38,0xe0,0x4c,0x53,0x6e,0xa4,0xe5, + 0xec,0x1b,0x0c,0x45,0xea,0x27,0x69,0xaf,0x23,0x4f,0xa5,0x0d,0x79,0x34,0x47,0x61,0x1a,0xdb,0xcb,0x04, + 0x01,0xf2,0xd4,0x6e,0x46,0x0b,0xfd,0xc2,0x4e,0x93,0xb3,0xae,0x4c,0xc7,0x67,0x30,0x74,0xa0,0x3f,0x06, + 0xe4,0x45,0x19,0xa5,0x31,0x75,0xa9,0x58,0x4d,0x74,0xa9,0x23,0x56,0xa2,0xff,0x97,0xb0,0x4d,0xe0,0xc3, + 0x29,0xdd,0xd3,0x2b,0x30,0x87,0xa4,0x65,0x00,0x47,0x5a,0x94,0x68,0x63,0xe2,0x7b,0xa0,0xe6,0xce,0xdf, + 0x2d,0x97,0xf8,0xec,0xee,0x9d,0x0a,0x71,0x44,0x5b,0x04,0xf9,0xd0,0xb3,0x81,0x0e,0x2d,0xd7,0x36,0xd8, + 0xba,0x5c,0xa0,0xa4,0x9b,0xf0,0xb0,0xb8,0x67,0x66,0xc6,0x7d,0x2b,0xed,0x4c,0xa8,0x0b,0xe7,0xea,0xdf, + 0x63,0x41,0x8c,0xdf,0xcc,0x16,0x2c,0x86,0x81,0xc7,0xae,0x07,0x34,0x11,0x1e,0x4f,0x01,0x86,0xe9,0x37, + 0xaf,0xe2,0x25,0xee,0x28,0xa4,0x65,0xb7,0xdf,0xb2,0xa9,0x23,0x64,0x43,0xe1,0xde,0x88,0xbb,0xc9,0x5a, + 0xfe,0x02,0x4e,0x4a,0xfc,0x22,0x2c,0xed,0x62,0xd7,0x64,0x99,0x86,0x5f,0xb6,0x0a,0x5f,0xd1,0x52,0x7b, + 0x33,0x44,0x5e,0x52,0xca,0x4e,0xce,0x79,0x25,0xba,0xb6,0x92,0x73,0x4b,0x61,0xf6,0xcc,0x0a,0xce,0x4b, + 0x9f,0x89,0xaf,0x16,0x5d,0x09,0xc9,0x16,0x7b,0x34,0x3e,0xb1,0x5f,0x4b,0xee,0xd4,0x14,0x76,0x1f,0x79, + 0x2a,0xfd,0x66,0x7e,0x4e,0xc5,0xd4,0xe7,0x0a,0x54,0x11,0xe2,0xf8,0x5e,0xd6,0x0b,0x3f,0xfc,0x6d,0x9f, + 0x7c,0x33,0xd4,0xc5,0xe8,0x2b,0xdb,0x07,0xd8,0xe9,0xb4,0x49,0x61,0xf7,0x21,0x9e,0x48,0x05,0x71,0x62, + 0x8f,0x20,0x2c,0x93,0x36,0x13,0x2d,0x49,0x42,0xc9,0xea,0x29,0x29,0x8a,0xe8,0x39,0xa8,0xb8,0x3d,0x13, + 0x46,0xc8,0xe1,0x8a,0x48,0xcb,0x1d,0xd9,0xc8,0xba,0x54,0xe8,0x92,0x8e,0x96,0xc7,0x67,0x83,0x5c,0x48, + 0x53,0x4d,0x57,0xc0,0x5f,0xc6,0x59,0x4c,0x38,0x07,0x84,0x6b,0xfc,0x3b,0x01,0x90,0x6e,0xbf,0x49,0x00, + 0xc2,0x3b,0x70,0x8b,0x00,0x88,0x99,0x90,0x01,0xc0,0x34,0x2a,0x4e,0xd9,0x0b,0x8a,0x28,0xdb,0x8d,0x2e, + 0x75,0x47,0x77,0xf2,0x18,0x6d,0x33,0x7a,0x79,0x98,0x87,0x16,0xf2,0x2f,0x85,0x2f,0xd6,0x1d,0x83,0x8c, + 0x9b,0x4e,0xb4,0x68,0xd7,0x99,0xcb,0x3a,0x10,0x60,0xdd,0xba,0x8a,0x65,0xe5,0x6c,0xce,0x49,0x34,0x01, + 0xc4,0xd4,0x62,0x80,0x7d,0xce,0xab,0xdc,0x84,0xe6,0x92,0x8e,0x87,0x1c,0x32,0x27,0xeb,0x14,0x0d,0x1e, + 0x15,0xbb,0x6a,0xd4,0xab,0xdd,0x2c,0x8a,0xa8,0x7d,0xb9,0x89,0x15,0x6b,0xc9,0xdf,0xfe,0x48,0xd0,0x6d, + 0x51,0xfb,0x59,0x47,0xcb,0x47,0x96,0x50,0xdb,0x1f,0x54,0xd5,0xe8,0x28,0x61,0x15,0x78,0x4c,0xcf,0x22, + 0x7c,0xbc,0xaf,0x95,0x00,0x56,0xbb,0x62,0xe5,0x50,0x40,0x8c,0x48,0x4b,0x83,0x8c,0x75,0xcd,0x85,0x09, + 0xbc,0xa8,0xc7,0x95,0x80,0x76,0xef,0xdb,0x75,0x4c,0x2b,0x21,0xdc,0xaf,0xab,0xfc,0x29,0x93,0x97,0x06, + 0x9c,0xd2,0x39,0x17,0xb4,0x37,0x1d,0xf3,0x7e,0xdf,0x09,0xb9,0x76,0x35,0x17,0x72,0xed,0xea,0x1d,0x90, + 0xa9,0xce,0x85,0x90,0x59,0xbf,0x2b,0x40,0x9e,0x8e,0xab,0x62,0xe3,0x96,0x43,0x1b,0x53,0x96,0x04,0x9a, + 0x68,0x2a,0xc4,0x28,0x75,0xb6,0x12,0xc4,0x26,0x86,0xaf,0x01,0x74,0xf4,0x99,0x02,0x64,0x4c,0x5b,0x1a, + 0x66,0xa2,0x6d,0x0e,0x50,0xa9,0xcb,0xa2,0xfc,0x35,0x06,0x5e,0x2e,0x7f,0xc9,0x6f,0x73,0x28,0xb9,0xda, + 0x6d,0x5d,0xc2,0x1c,0xea,0x84,0xb2,0x4c,0x3e,0x97,0xf4,0x14,0xe1,0x95,0xbb,0xd2,0x16,0xd6,0xaf,0x09, + 0xb7,0xb5,0x54,0x01,0xfb,0xc3,0x76,0x44,0xcb,0x5e,0x3a,0x5f,0x53,0x5e,0x3a,0x4f,0x2e,0x2f,0xab,0xee, + 0x2d,0xe7,0xab,0x6e,0xd7,0x4b,0x15,0xdd,0x3f,0xdb,0xe0,0x35,0x70,0x7f,0xd5,0xa2,0xfd,0x6d,0x42,0xdb, + 0x1a,0x02,0xfd,0x45,0x5d,0x7c,0x4b,0xc7,0x90,0x12,0xbf,0xe2,0xe6,0xeb,0xa2,0xa0,0x67,0x27,0xeb,0x35, + 0x37,0x90,0x8f,0x6e,0x24,0x85,0x3a,0xa3,0x2c,0x17,0xef,0x89,0xa2,0x5c,0xf0,0xe4,0x34,0x86,0xa7,0xe9, + 0xe5,0xf0,0x34,0xbd,0xbc,0x9f,0x1a,0x67,0x99,0x7d,0x8a,0xbe,0x02,0x6c,0xb0,0x3b,0x9f,0xda,0xc9,0xb1, + 0x56,0x56,0xec,0xd5,0xe6,0x73,0x5b,0x15,0x95,0x59,0xa9,0xab,0xa7,0x91,0xbf,0x2a,0x3f,0xec,0xce,0x6b, + 0xd1,0x51,0x9e,0x84,0x38,0x20,0xb0,0x16,0xd0,0xfd,0x41,0xe6,0xbc,0x4e,0xc1,0xb1,0xf8,0xd0,0x4e,0xed, + 0x13,0x6e,0x12,0x51,0x3b,0x23,0x34,0xb7,0xe8,0xce,0x6d,0x5e,0x4d,0x89,0xdd,0x8a,0xa6,0x7f,0x48,0xe5, + 0xab,0x78,0x83,0xb3,0xcd,0x9b,0x97,0x78,0x5d,0xb0,0xea,0x66,0xd6,0xa1,0x69,0x4c,0x9a,0x56,0x7d,0xde, + 0x9d,0x30,0xd3,0x02,0xa4,0x93,0xa7,0x6e,0x7c,0xe0,0x9f,0x26,0x49,0xd0,0x99,0x8a,0x70,0xb6,0xb1,0xef, + 0x94,0x52,0x01,0x23,0xe7,0x90,0x05,0xdf,0x32,0xf0,0x17,0xa2,0x23,0xf4,0x56,0xfc,0x4e,0x94,0xae,0xb0, + 0x44,0xae,0x6e,0x75,0xd7,0x9b,0xf1,0x97,0x44,0x42,0xf7,0x10,0x4b,0x5f,0x7c,0x85,0xbc,0xd9,0x0f,0xbe, + 0xa2,0xb3,0x93,0x3b,0x41,0xe6,0xdf,0x7d,0x65,0x24,0xe2,0xef,0xbd,0x72,0xaf,0x99,0xc2,0x8f,0x4c,0x6d, + 0x3a,0x14,0x01,0x30,0x69,0x2c,0x3d,0x83,0x09,0x10,0x8d,0xa5,0x13,0x7e,0x2a,0x50,0xf5,0xa8,0x7f,0xa4, + 0x8f,0x4e,0xc5,0xe7,0xa6,0xdb,0xfc,0x2b,0xdb,0xff,0x00,0xdf,0xd5,0x86,0xbe,0x7b,0x3b,0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index 73d5cda..7158aad 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2345 +4,2375 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x73,0xdb,0x46,0xd2,0x2e,0xfc,0x57, - 0x24,0x1c,0xbf,0x34,0xb0,0x1a,0xd1,0x92,0x93,0xec,0x6e,0x40,0x23,0x3c,0xb6,0x6c,0xc7,0x4e,0x7c,0x5b, - 0xdb,0xb9,0xad,0xa2,0x55,0x41,0x24,0x28,0xc1,0x26,0x01,0x06,0x00,0x25,0x2b,0x22,0xcf,0x6f,0xff,0xfa, - 0xe9,0x9e,0x1b,0x40,0xc8,0x49,0xb6,0xde,0xfa,0xca,0x65,0x11,0x98,0x19,0xcc,0xb5,0xa7,0xa7,0xef,0xb3, - 0x3b,0x5b,0x15,0x93,0x26,0x2f,0x8b,0x30,0x53,0x4d,0x74,0x13,0x94,0x67,0x1f,0xb2,0x49,0x13,0x24,0x49, - 0x73,0xbd,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0x3d,0x18,0x6c,0xe5,0x2c,0xca,0xe9,0x6a,0x9e, - 0x8d,0xe5,0x67,0xa8,0xcb,0x25,0x4d,0x18,0xc5,0x81,0xa9,0xd3,0x15,0x9e,0x66,0xb3,0xbc,0xc8,0x06,0x03, - 0xf9,0x1d,0xa6,0x8b,0xe9,0x58,0x1e,0xc3,0xe3,0x13,0x6a,0x37,0xbe,0xad,0xdd,0xb1,0xfe,0x1d,0xa6,0x9f, - 0xf2,0x52,0x6a,0xcf,0xdc,0xf3,0x26,0x6c,0x2e,0xf2,0x5a,0xd9,0x21,0x44,0x37,0x55,0xd6,0xac,0xaa,0x62, - 0xc7,0x0d,0x2a,0xba,0x31,0xcf,0x3b,0x4d,0x58,0x45,0x37,0xf9,0x2c,0x2c,0x8e,0xab,0x93,0x48,0x17,0xc4, - 0xb3,0xe9,0xfb,0xe8,0x32,0xad,0x76,0xf2,0x04,0x49,0xc9,0x8d,0x4e,0x8b,0x6f,0x36,0x2a,0x9f,0xc6,0x95, - 0x9a,0x97,0xe9,0x34,0x9b,0xc6,0xbb,0x87,0x9b,0x91,0xfe,0x34,0xc3,0xa7,0x93,0x74,0x3e,0x0f,0x73,0x53, - 0x83,0xca,0x95,0x7b,0x6e,0x22,0x7a,0x91,0xcf,0x92,0xdd,0x03,0x97,0xb1,0x41,0x33,0x45,0x72,0x63,0x2b, - 0x6a,0x86,0x8b,0x84,0x26,0x7f,0x38,0x49,0x0a,0xfa,0xbb,0x4c,0x82,0x40,0x35,0xe1,0x01,0x0d,0xee,0xd8, - 0x5f,0x1b,0x55,0x44,0x37,0x6e,0x9a,0x8b,0xf0,0x30,0xda,0xa8,0x6e,0x7e,0xb0,0xaa,0xb3,0x9d,0xba,0xa9, - 0x72,0x9a,0xc9,0x91,0x1d,0x77,0x85,0x59,0x40,0xa3,0x4d,0x52,0x64,0x57,0x3b,0x29,0xbd,0xaa,0x22,0x29, - 0xc3,0x74,0xb8,0xac,0xca,0xa6,0xc4,0x84,0x0f,0xab,0xec,0xb7,0x55,0x56,0x37,0xd4,0x69,0xd3,0x2b,0xf4, - 0xb7,0xc9,0x8a,0x69,0x58,0x28,0xaf,0xa0,0x8c,0xca,0xe6,0xd0,0x5b,0xb1,0xd1,0xd3,0x16,0xde,0x8f,0x54, - 0x49,0x3f,0x5f,0x44,0x2a,0xa5,0x9f,0xaf,0x22,0x85,0x6e,0xfe,0x3d,0x52,0x93,0xa4,0x0a,0xeb,0x68,0x34, - 0x19,0x3e,0xe4,0x75,0x4b,0xd5,0x64,0x38,0xa9,0xb2,0xb4,0xc9,0x12,0x7f,0x99,0x74,0xb3,0x15,0xcd,0xe6, - 0x22,0xab,0xce,0xb3,0xb0,0x56,0x59,0x44,0x63,0x9c,0x0c,0x8f,0xd2,0x62,0x92,0xcd,0xd1,0x00,0x55,0x6d, - 0x5e,0xdf,0x97,0x1f,0xb3,0x02,0x69,0x5f,0x22,0x2d,0xaf,0x5d,0xa1,0x03,0x24,0xd0,0xb2,0xf4,0xd5,0xfe, - 0xa6,0x2a,0x17,0x79,0x9d,0x21,0x9b,0x52,0x51,0x79,0xbd,0xa4,0xae,0x4c,0xf1,0x1d,0x75,0xd8,0xcd,0xef, - 0xc4,0x3d,0x0f,0x09,0x50,0xd3,0xd5,0xbc,0x49,0x26,0x7f,0x69,0xc2,0xa5,0xc5,0xe0,0x58,0x00,0x7b,0xe7, - 0x61,0x55,0xa5,0xd7,0x27,0x04,0xdf,0xc9,0x5c,0x80,0x86,0x9a,0xb7,0x1f,0xe4,0x5e,0x17,0x8b,0xd5,0x7c, - 0xbe,0x9b,0x24,0x59,0xcf,0x8e,0xcb,0xdc,0x17,0x65,0x4f,0x13,0x4f,0x75,0xe6,0x6d,0xad,0xa4,0xb2,0xc5, - 0xb1,0x03,0x6c,0x1b,0x97,0x65,0x3e,0xdd,0x39,0xc0,0x73,0x44,0xe9,0xa6,0xc5,0x5d,0xdb,0xe2,0x60,0x10, - 0x66,0xc9,0x71,0x76,0x12,0x29,0x0c,0x2a,0x9a,0x95,0x55,0x28,0xe0,0x4b,0x00,0x9d,0x64,0xc3,0x79,0x56, - 0x9c,0x37,0x17,0xa3,0xe2,0x41,0x3e,0x2a,0xf6,0xf6,0xa2,0x46,0x1a,0x45,0xf5,0x2a,0x3b,0x2e,0x4e,0x54, - 0x41,0x6b,0x38,0xca,0xe6,0x34,0x49,0xe6,0xcb,0x72,0x27,0xa7,0xad,0x13,0xbd,0xe6,0x86,0x3c,0x00,0xbc, - 0x48,0xeb,0xd7,0x57,0x05,0xad,0xcf,0x32,0xab,0x9a,0x6b,0xdd,0x79,0x55,0x46,0x83,0x41,0xbb,0xd2,0xf2, - 0x44,0x95,0x54,0x29,0x03,0x5d,0x2d,0xd0,0x46,0xfb,0x26,0x24,0x28,0x98,0x27,0x5b,0x95,0x36,0xe5,0x3b, - 0x5a,0x9b,0xe2,0x7c,0xe4,0x16,0xf6,0x26,0xaf,0x79,0x29,0x68,0x4b,0xeb,0xa7,0x47,0xab,0xd9,0x2c,0xab, - 0xe2,0x6d,0x68,0x69,0xaf,0x9d,0x14,0xeb,0xcc,0x2d,0xd5,0xa1,0x3f,0x9f,0xd0,0xe3,0xd3,0xb2,0x5a,0x3c, - 0x4e,0x9b,0xb4,0xaf,0xae,0x55,0x21,0xf8,0x6e,0xea,0x26,0xd7,0x14,0x1f,0x0c,0x32,0x9a,0x94,0xba,0x01, - 0x04,0x7b,0xc9,0x9b,0x76,0x07,0x7f,0xcc,0xb3,0xab,0x3f,0x59,0xb1,0xf7,0xd5,0x60,0xe0,0xbd,0xd0,0x36, - 0x41,0x2d,0xe3,0xed,0x24,0xaa,0x2f,0xa6,0xb5,0xce,0x86,0x67,0xfa,0x2b,0xf3,0xe4,0x77,0xcc,0xfb,0x0c, - 0x7d,0x93,0xa9,0xed,0xeb,0x52,0xcd,0x39,0x3e,0xdc,0x52,0xf1,0x57,0xab,0xc5,0x59,0xff,0x34,0x17,0x9c, - 0xd3,0x29,0x2e,0x6b,0x19,0x13,0x42,0xad,0x7f,0x30,0x23,0xec,0xf9,0x78,0x47,0x00,0x98,0x16,0x85,0xbf, - 0xa2,0x79,0xcb,0x3e,0xb7,0x92,0xc8,0xdf,0x5e,0xc2,0xa7,0xf9,0xfc,0xb3,0x5f,0x21,0xbf,0x67,0xe1,0xe7, - 0xe5,0xd9,0xe7,0xbe,0x42,0x7e,0x4f,0x5b,0xfa,0x83,0xb8,0x94,0x29,0xcc,0xd2,0x45,0xdf,0xb0,0x80,0x11, - 0x06,0x03,0xda,0xe5,0xc3,0x65,0xbe,0x94,0x2f,0x7f,0x78,0xfb,0xe2,0x5d,0x96,0x56,0x93,0x8b,0x37,0x69, - 0x95,0x2e,0xea,0x3f,0x09,0x0b,0x9d,0xaf,0x3a,0xb0,0xd6,0xc9,0x95,0x65,0x4d,0x8b,0x69,0x5a,0x4d,0x1f, - 0x55,0xe5,0x55,0x9d,0x55,0x4f,0x8a,0xcb,0x78,0xeb,0x7c,0x0d,0xbd,0x96,0xec,0xb2,0x15,0xe9,0x65,0x7e, - 0x9e,0x36,0x65,0xb5,0x5e,0x07,0x6f,0xb3,0x74,0xd2,0xbc,0x4a,0x9b,0xfc,0x32,0xa3,0xae,0x24,0x36,0x0b, - 0x7b,0x73,0xba,0x9a,0x34,0x34,0xb6,0xbe,0xce,0x5e,0xe5,0xc5,0xb4,0xbc,0xea,0xcf,0x9b,0x96,0x93,0xd5, - 0x22,0x2b,0x1a,0x42,0xc2,0x65,0xf5,0x24,0x9d,0x5c,0xc4,0xa9,0xe2,0x83,0xc2,0x76,0x6f,0x27,0x0b,0x5b, - 0xa7,0x7d,0xa3,0xaa,0x1e,0x82,0x06,0xc7,0x7b,0x0f,0x6e,0x6d,0xc6,0x7c,0xee,0x67,0x4c,0x1d,0x80,0x22, - 0xe1,0xd7,0x66,0xe3,0x30,0x1e,0x51,0x02,0x15,0xa3,0xbd,0xb4,0x3a,0xe7,0x9e,0xd4,0x06,0xfd,0x55,0x84, - 0xfe,0x2a,0x42,0x7f,0x69,0x68,0xb3,0xa4,0x12,0x73,0x96,0x16,0x1b,0x25,0x47,0x66,0xdc,0x3d,0x40,0x74, - 0x81,0x94,0x3a,0x6b,0xb3,0xb8,0xdf,0xa0,0x2e,0x92,0x82,0x3a,0xba,0x4d,0x4b,0x35,0xe3,0x3a,0xc4,0xc7, - 0x71,0xb3,0xa1,0x23,0x6b,0xa3,0x68,0xb7,0xf5,0xc2,0x10,0x4e,0xf5,0xe5,0x3c,0x9d,0x64,0xe1,0xbd,0xff, - 0xfc,0x5a,0xff,0xed,0x9e,0x0a,0x82,0xc8,0x25,0x51,0xca,0x1d,0x4e,0xda,0x6c,0xda,0xe7,0x5a,0xe7,0x54, - 0x73,0xa8,0xb3,0x5d,0xa8,0x4b,0x69,0xd1,0xd4,0xdb,0xa9,0x02,0x99,0xc1,0xd8,0x22,0xec,0xce,0x55,0x84, - 0x39,0xa4,0x09,0x2b,0xec,0xdc,0xd1,0xbc,0xf1,0x54,0xfb,0x53,0x67,0x49,0xac,0x61,0xba,0x5c,0xce,0xaf, - 0x79,0xb4,0xdb,0xdd,0xb4,0x4b,0xed,0x0d,0x7a,0x77,0x37,0x1b,0x4e,0x4a,0x02,0xf0,0x8a,0xa0,0xac,0xac, - 0x7a,0xe7,0xaf,0x55,0x62,0x68,0x30,0x38,0x70,0x5e,0x5f,0x3a,0xf6,0x6d,0xdf,0x1c,0x74,0x0e,0x6c,0x9c, - 0x94,0x48,0x5d,0xaf,0xc3,0x86,0xa8,0xb9,0xbe,0x65,0x1b,0x82,0xd2,0x78,0x4a,0x14,0x61,0xf3,0xe2,0x49, - 0xff,0xc2,0x0e,0xeb,0x79,0x3e,0xa1,0x9a,0x08,0x06,0xe4,0x31,0x3c,0x50,0x07,0x51,0x44,0x95,0x62,0x5c, - 0xa7,0xa6,0x4b,0x11,0x53,0xaa,0xcd,0xe6,0x2f,0xd1,0x23,0xa0,0x94,0x0d,0x29,0x53,0x83,0xde,0xc4,0x7b, - 0x5e,0x34,0x59,0x35,0xc9,0x96,0x34,0x60,0x3a,0x1a,0x35,0x11,0x18,0x33,0x95,0xa8,0xaa,0xac,0x5e,0xd2, - 0x7c,0x64,0xf2,0xba,0xb1,0x64,0xde,0xdf,0x85,0xcc,0xbb,0x2f,0x64,0xde,0xe1,0x3f,0x84,0xce,0x3b,0xfc, - 0x27,0x41,0xfb,0x36,0x41,0xd9,0x9a,0xb0,0xed,0x83,0x81,0xc9,0x8b,0x52,0x13,0x7c,0x37,0xab,0x6a,0x1e, - 0x3b,0x30,0x38,0x38,0xd9,0x28,0xf7,0x76,0x78,0x12,0x45,0xca,0x2b,0x9c,0xab,0xd6,0x80,0xd4,0xcd,0x22, - 0x6b,0x2e,0xca,0x69,0x1c,0x9c,0x67,0x4d,0xb0,0x01,0xe9,0x38,0x94,0x14,0xa2,0x52,0xe4,0x81,0xa8,0x81, - 0x17,0xe5,0x55,0x56,0x1d,0xa5,0x35,0x21,0x0a,0x99,0xc2,0xe4,0xb8,0x56,0x72,0x82,0x10,0xad,0x92,0x18, - 0xea,0x90,0x46,0x5e,0xce,0x2f,0x33,0xea,0xf2,0x08,0x30,0xbd,0x35,0x53,0x66,0x70,0x43,0x8d,0x89,0x42, - 0x7f,0x90,0xcd,0x70,0x55,0xd4,0x17,0xf9,0xac,0x21,0xdc,0x3d,0x5b,0xcd,0x67,0xf9,0x7c,0x9e,0x4d,0x15, - 0x2a,0x05,0xc2,0xc9,0xa6,0x11,0x6d,0xda,0xbe,0x1a,0x65,0xb2,0x6f,0xa9,0x72,0xb9,0xaa,0x2f,0x6e,0xaf, - 0x6f,0xd4,0x98,0xdd,0x14,0xd1,0xde,0x1b,0x36,0x17,0x19,0x03,0x10,0x77,0x82,0x1a,0x33,0x4f,0x3e,0x3a, - 0x2a,0x6d,0x43,0xc7,0xc1,0x34,0x9b,0x67,0x4d,0x16,0x28,0x9e,0x3a,0x15,0x5c,0x10,0x94,0xd2,0x4f,0xb9, - 0x44,0xf3,0x75,0x70,0xa2,0x5a,0x30,0xef,0x96,0x98,0xa8,0xc2,0xc4,0xc3,0x59,0x0e,0x99,0xf1,0xe8,0xf4, - 0x14,0x85,0x66,0xbd,0x8a,0xf5,0x9a,0x10,0xa8,0x59,0xa5,0x4c,0x61,0xad,0x09,0x7f,0xd1,0xb6,0x8e,0x5a, - 0x9d,0x59,0x96,0x35,0x3a,0xb1,0x5c,0xf1,0xdf,0xb4,0x99,0x5c,0xfc,0xf9,0x1e,0x00,0x6f,0x7e,0xae,0x0f, - 0x55,0x5f,0x1f,0xd4,0x14,0x14,0x5b,0xa1,0xbb,0xe2,0x76,0x7a,0xf5,0x17,0x76,0x17,0xb0,0xd1,0x6e,0x3e, - 0xf4,0x48,0x15,0x3e,0xbe,0x3b,0x29,0xc7,0xc1,0x51,0x49,0x6b,0x5e,0x34,0xfb,0xef,0xa9,0xf3,0xc1,0x49, - 0x04,0xe8,0xef,0x26,0x26,0x4d,0xd4,0x65,0xa8,0xfe,0x81,0x9d,0x76,0xd3,0x2e,0x17,0x07,0xc0,0x8c,0xf9, - 0x24,0x45,0x17,0xee,0x7d,0xda,0xbf,0xba,0xba,0xda,0xa7,0x49,0x5c,0xec,0xd3,0x98,0xb2,0x62,0x52,0x12, - 0xd3,0x49,0xbb,0x80,0xf6,0x74,0x3a,0x4d,0x97,0x8d,0x4f,0x77,0x09,0x2b,0x98,0x8d,0x6e,0x27,0x19,0x7e, - 0x7e,0xf9,0xe2,0x59,0xd3,0x2c,0xdf,0xca,0xec,0x8d,0x33,0xea,0xc2,0x3f,0x89,0x43,0xef,0x29,0x49,0x2b, - 0x31,0xc9,0xea,0x9a,0x77,0x31,0x0a,0xe1,0x38,0x02,0xc4,0x55,0x69,0x51,0xa3,0x37,0xba,0x8a,0xf8,0xb8, - 0xf7,0xe8,0x28,0x69,0xcd,0xda,0xa3,0x02,0x6f,0xe9,0xc8,0x68,0xc6,0xa6,0x48,0xf0,0x08,0x4f,0x9b,0xd6, - 0x79,0x15,0x4a,0xca,0xbe,0x82,0x62,0x73,0x45,0x89,0x10,0xa3,0x97,0x71,0x16,0x77,0x2a,0xd3,0x94,0xef, - 0xd8,0x10,0xbb,0x9c,0xdf,0x21,0x89,0x90,0x1f,0x56,0xe8,0xe9,0x1f,0x4e,0xf8,0x68,0x72,0x91,0x56,0x75, - 0xd6,0x24,0xab,0x66,0xb6,0xff,0xcf,0x00,0xc0,0x64,0x18,0x10,0xda,0x7c,0x5c,0xb9,0x50,0xb5,0xfd,0x75, - 0x7e,0xa8,0xcb,0x62,0xab,0x8a,0xef,0xde,0xbd,0x7e,0x35,0x14,0xb4,0x99,0xcf,0xae,0xc1,0x82,0xc5,0xd9, - 0xe6,0xc4,0x9f,0x61,0x8d,0xa4,0x8f,0xfd,0x3d,0x02,0x56,0x6e,0x0b,0xd7,0x46,0x4d,0x75,0x7d,0x93,0x25, - 0x5c,0xe3,0x12,0xad,0xe0,0x64,0x9b,0x60,0x87,0xe1,0x93,0x8d,0x39,0x72,0x51,0x7b,0xbe,0xc8,0xca,0x55, - 0x13,0x1f,0xa8,0x4f,0x75,0x35,0x3b,0x2a,0xcb,0x8f,0x79,0xf6,0x2a,0x5d,0x64,0x71,0xf0,0xf3,0xbb,0xb7, - 0x4f,0xf7,0xdf,0xbf,0xfe,0xfe,0xc9,0xab,0x80,0xf3,0x9e,0x11,0xae,0xc8,0x2a,0x9d,0xb7,0xef,0xe7,0x2e, - 0xd2,0x4f,0x7a,0x69,0x5f,0x30,0x6a,0x8a,0xf7,0x0f,0xd5,0x65,0x3a,0xcf,0x69,0xb7,0x65,0x44,0x62,0x36, - 0xab,0x3e,0x02,0x76,0x27,0xfb,0x26,0xb9,0x7f,0x70,0x40,0x47,0xf1,0x83,0x2f,0x0e,0x0e,0x36,0x9b,0x51, - 0x3d,0xbc,0xe0,0x16,0x08,0x90,0x27,0xe5,0x62,0x41,0x64,0xf3,0xcd,0xc3,0x09,0x70,0x66,0xbc,0x35,0x75, - 0x6a,0xa7,0x21,0x1a,0xeb,0x1e,0x51,0x37,0x39,0x3d,0xff,0xed,0xde,0xdf,0x02,0x3a,0x1f,0xf3,0x3f,0x40, - 0x73,0x6d,0xd4,0x62,0x5b,0x03,0x62,0xb9,0x01,0x3a,0xc8,0xff,0x0a,0x66,0x6a,0x7d,0x6e,0xa4,0x18,0x69, - 0xd4,0xc2,0x2a,0xf5,0x1f,0x60,0x15,0xec,0xcd,0x8a,0xb7,0xfe,0xed,0x84,0x97,0xed,0x53,0xe6,0xea,0x12, - 0xdc,0x47,0xa4,0x76,0x33,0x18,0x54,0x04,0x76,0x3f,0x2c,0x97,0xe6,0xa4,0x23,0x0e,0xa4,0x69,0xa7,0x30, - 0xde,0x69,0x88,0xbc,0x54,0x32,0x27,0x2c,0xca,0xa2,0x7e,0xfe,0x11,0x41,0xe1,0x3a,0xa7,0x80,0x9e,0xbe, - 0x16,0xf4,0x74,0x68,0x28,0x81,0x2f,0x34,0x25,0xf0,0xa5,0xb0,0xe4,0x87,0x07,0xe0,0xc9,0x3f,0x47,0xe6, - 0xcb,0xef,0xf0,0xac,0x29,0xd3,0xd6,0xcb,0xf0,0x8c,0x9e,0x43,0x49,0xa0,0x3d,0x4c,0x55,0x7d,0xd5,0x3f, - 0x1d,0x8e,0x06,0x23,0x12,0x45,0x9f,0xde,0xa1,0x77,0x22,0xac,0x04,0xd9,0xcd,0x88,0x06,0x00,0x96,0x57, - 0x20,0x06,0xf4,0x1a,0x8d,0x2a,0x1f,0xd3,0xcc,0x22,0x88,0x26,0x79,0x2e,0xa6,0x5d,0x8c,0xcc,0xc3,0x5e, - 0x32,0x4d,0xdb,0xc6,0x8c,0xea,0x22,0x09,0xca,0x02,0x44,0xdd,0x35,0x31,0x54,0x4d,0x46,0x7b,0xb7,0x38, - 0x27,0x00,0xbb,0x4c,0x76,0x0f,0x47,0xd8,0x82,0x3d,0x4c,0x92,0x0c,0x8a,0xe8,0x39,0x3d,0xdc,0x9f,0x1f, - 0x97,0x0b,0x02,0x58,0x5d,0x23,0x71,0x4e,0x57,0x79,0x73,0x71,0x54,0x65,0x53,0x6a,0x3f,0x4f,0xe7,0x75, - 0x90,0x17,0x3b,0xcb,0xf5,0x9a,0xd0,0xd0,0x90,0x10,0x0d,0xa8,0x4b,0xe9,0x49,0xef,0xe7,0xd2,0x21,0x88, - 0x1c,0xb9,0x13,0x07,0x6a,0x39,0x2c,0x0b,0xc2,0xd1,0xe7,0x44,0x5d,0x78,0xd3,0x46,0x9b,0x9d,0x73,0xf4, - 0x36,0x6f,0x65,0x00,0x56,0xd3,0x15,0xd1,0xe9,0x3c,0x71,0x8b,0x44,0xde,0x86,0x04,0x05,0x55,0x41,0xbb, - 0x9c,0x3a,0x18,0xa8,0x73,0x93,0xba,0x4c,0xeb,0xfa,0xaa,0xac,0xa6,0x48,0x1d,0x4d,0x87,0x0f,0x29,0xad, - 0xac,0xf2,0xdf,0x79,0x4f,0x26,0xc1,0xa3,0xb4,0xce,0x27,0x3b,0xc1,0xde,0x3c,0x5c,0xec,0xd1,0x79,0xb5, - 0x77,0x1e,0x6d,0x68,0x52,0xa8,0xe1,0x25,0x91,0x27,0x1e,0x51,0xe6,0x01,0xa6,0x2a,0x65,0x9c,0xd4,0x89, - 0x25,0x63,0x5f,0xfb,0xf0,0x2e,0xab,0x68,0x3a,0xf2,0xdf,0x89,0xf8,0x55,0xbb,0x04,0x58,0xcb,0xa1,0xe9, - 0x7d,0x66,0x9e,0xd4,0xf2,0xf8,0xe2,0xc4,0x1f,0x0c,0x5a,0x23,0x50,0xff,0x92,0x36,0xc0,0x92,0x69,0xef, - 0x6b,0x20,0x1e,0x1a,0xc3,0x25,0x76,0x00,0x84,0x5e,0xcb,0x61,0xcd,0xa8,0x68,0xbd,0x5e,0x5a,0x0a,0x8c, - 0xf0,0xff,0x60,0x70,0xa0,0xbf,0xb1,0x49,0x44,0xad,0x4d,0xb3,0x4f,0xaf,0x69,0x51,0x67,0x10,0x16,0x04, - 0x44,0x94,0xdf,0x08,0xaf,0x03,0x74,0xf2,0x70,0x3e,0x37,0x88,0x58,0x30,0xa2,0xac,0xdb,0x38,0xa5,0xe1, - 0xf6,0x66,0xe3,0x3c,0x60,0x81,0x56,0x95,0xdc,0x30,0xfd,0x91,0xd9,0xc6,0x00,0x74,0xc4,0x1d,0x00,0x99, - 0x81,0x75,0x6e,0x67,0x8c,0x5d,0xa7,0x62,0xf7,0xf8,0x9e,0xca,0x2a,0x19,0x49,0x7c,0x78,0xff,0xfe,0x17, - 0x89,0x1b,0xd9,0xf8,0xfe,0xc1,0x97,0xb1,0x79,0xd1,0x65,0x50,0x7c,0xab,0x5c,0xf0,0xaa,0xdc,0xd1,0x70, - 0x1f,0xd8,0x0f,0xb8,0x62,0xbd,0x61,0xe2,0x42,0x11,0x7b,0x34,0xcb,0xcf,0x89,0x70,0x32,0x8c,0xc2,0x72, - 0x33,0xca,0xb1,0xcd,0x08,0xf9,0x28,0x82,0x4b,0x1a,0xd0,0x46,0x40,0x2b,0xab,0xaa,0xb2,0xf2,0xd7,0x62, - 0x15,0x4e,0xc2,0xe0,0x55,0xd6,0x10,0xb8,0x7c,0xdc,0x79,0x82,0xdc,0x40,0x65,0x8a,0xa7,0x60,0x19,0xd9, - 0x8f,0x6f,0x03,0x4b,0xfe,0x5a,0xa7,0xef,0xd0,0x2e,0x0a,0xf6,0xec,0xaa,0xef,0x05,0x8b,0x7a,0x27,0xfb, - 0x34,0xc9,0x32,0x90,0x3c,0x54,0x67,0xf0,0xe4,0xe8,0xf5,0xab,0x57,0x0f,0x1f,0xbd,0x7e,0xfb,0xfe,0xc9, - 0xe3,0xa0,0x55,0x7b,0x35,0xec,0x13,0x6f,0x84,0x7a,0x29,0xaf,0x81,0xb3,0x88,0xb9,0x39,0x4b,0x08,0x08, - 0x3b,0xdb,0xd0,0xed,0xc0,0x08,0x7c,0x62,0xfb,0x58,0x1c,0x5f,0x33,0x74,0x85,0xdd,0xf4,0x28,0x16,0xd6, - 0x62,0x74,0x46,0xe0,0x36,0x3d,0x96,0x6c,0x77,0x62,0x9e,0x24,0x67,0xbc,0x23,0x02,0x3a,0xef,0xf5,0x06, - 0x96,0x4c,0x86,0x1d,0xa0,0x71,0x83,0xe7,0xa7,0x1d,0xc6,0xd7,0xca,0xbc,0x66,0x04,0x28,0x13,0x8d,0xac, - 0x80,0x60,0x02,0x8d,0xeb,0x3d,0x3e,0x67,0x6c,0xd1,0x5a,0x73,0x82,0x75,0xed,0xb4,0x45,0xab,0x97,0xc9, - 0x09,0xd5,0x19,0x31,0x75,0x79,0xd9,0x4d,0x4b,0xb0,0xf3,0xda,0x00,0xc9,0x44,0xc5,0xb2,0x95,0xd4,0x01, - 0x59,0x4d,0x62,0x88,0xe0,0x39,0xc0,0x49,0xbd,0x0d,0xd6,0x51,0x73,0x41,0xcb,0x41,0x1c,0x6d,0x2f,0xb7, - 0x5e,0x16,0x8f,0xcb,0x2b,0x46,0x6b,0x6f,0x34,0x2e,0x1b,0x0c,0x96,0xc3,0x74,0x3a,0x7d,0x72,0x09,0xf2, - 0x22,0xaf,0x69,0xfc,0x34,0x92,0xc0,0x60,0x3a,0x82,0x82,0x9e,0x6f,0xa2,0x3e,0x9e,0x1c,0x05,0x7f,0x58, - 0x76,0xab,0x5e,0x71,0x8a,0x7b,0xfa,0xc3,0xb6,0xda,0x55,0x60,0x8e,0x26,0x4e,0x49,0xc1,0x82,0x05,0xf7, - 0x0a,0xf6,0x85,0xb9,0x4c,0x66,0xd3,0xfc,0xb3,0x6c,0xc9,0x73,0x9e,0x9e,0xd1,0x21,0x47,0xa8,0x70,0x05, - 0x35,0x8d,0x40,0x2e,0x16,0xc8,0x5f,0xf3,0x70,0x26,0xc9,0x0a,0xeb,0x49,0x27,0xe5,0xec,0x2f,0x9c,0xdd, - 0x74,0x2a,0xdf,0x42,0x59,0xe0,0x13,0xcd,0x79,0x0c,0x65,0xa7,0x0f,0xdb,0x04,0xdb,0xa8,0xd0,0x68,0x81, - 0x38,0x9b,0xc1,0x60,0x37,0x0f,0xcd,0x7b,0x34,0x6e,0x88,0x9c,0x0d,0x34,0x60,0xed,0xcc,0x52,0x42,0x91, - 0xd3,0x1d,0x00,0xcf,0x8e,0x14,0xd8,0x01,0x7d,0x4c,0xbb,0xd6,0x7c,0xa0,0x4c,0x0b,0x82,0x01,0x0a,0xab, - 0x7e,0x2a,0x40,0xdf,0x86,0xc5,0x9f,0x1f,0xcd,0xe1,0xed,0xa3,0x51,0xb9,0x2a,0x65,0x44,0x29,0x1f,0x99, - 0x8c,0x75,0xc0,0xd3,0x5b,0x4d,0x53,0x6a,0x8b,0xfd,0x37,0x22,0x30,0xf0,0x9b,0x2a,0xf7,0xa4,0x6d,0x32, - 0xa4,0x84,0x32,0x40,0x60,0x0d,0x31,0xe6,0xa4,0x90,0x0d,0x23,0xb2,0x90,0xca,0xdb,0x3c,0x49,0x4e,0xbc, - 0xd2,0x7f,0xa1,0x50,0xda,0x11,0x66,0xe3,0x87,0xb7,0xcf,0x8f,0xca,0x05,0xd5,0x44,0x50,0x49,0x99,0x4e, - 0xac,0xf7,0x3f,0x5f,0x1e,0xdc,0x3b,0xcf,0x55,0xf0,0x7f,0x7d,0x59,0xdf,0xff,0x7c,0xf1,0x90,0x13,0xe3, - 0x56,0xe2,0xfd,0x2f,0xef,0x9d,0xab,0xe0,0x4e,0x3b,0xed,0x88,0x0b,0xaa,0x76,0xe2,0x01,0x0a,0xee,0xb5, - 0xd2,0xbe,0x7a,0xc4,0x05,0x8f,0xdb,0x89,0x8f,0x39,0xf1,0x24,0xf0,0x79,0xd8,0xcf,0x80,0x1b,0x61,0x84, - 0xdd,0xc6,0xa8,0x62,0x33,0x5e,0xd5,0x12,0x94,0x53,0x11,0x81,0xb0,0x6c,0xb4,0xea,0x88,0x12,0xfa,0x18, - 0xb3,0x26,0xa2,0x52,0x8d,0xc7,0x62,0x71,0x69,0xbd,0xe0,0xc7,0x27,0x23,0x47,0xbb,0x37,0x9d,0xc5,0xed, - 0x53,0x7f,0xd1,0x92,0x59,0xee,0x90,0x99,0xf7,0xb0,0xd9,0x4b,0x82,0xe3,0x13,0xcd,0x93,0x9a,0x74,0x22, - 0xc0,0xb4,0x3e,0x2c,0xef,0x23,0xc3,0xc1,0x7b,0x0d,0x45,0x0d,0xc1,0x8c,0x25,0xa8,0x93,0xf2,0xf9,0xbb, - 0xd7,0xa6,0x8b,0x6d,0x26,0x90,0xf9,0xe6,0x6d,0x0e,0x0f,0xfa,0x56,0xc8,0x7b,0x08,0x39,0x47,0x7b,0x41, - 0x12,0xec,0xb1,0xea,0x0d,0x02,0x0a,0x10,0xdc,0xe9,0xf0,0x43,0x99,0x17,0x61,0x30,0xa0,0x49,0x36,0x8c, - 0x34,0x2a,0xda,0x4b,0xc2,0xfd,0x43,0xe8,0x41,0x1c,0xa9,0x32,0x0e,0xa2,0x31,0xfd,0x89,0x51,0x76,0xaf, - 0x8c,0xfe,0x18,0xe0,0x5a,0x04,0xfe,0x71,0x90,0x82,0x9a,0x0d,0x52,0x9f,0xac,0xa3,0x77,0x73,0xe0,0x88, - 0xc8,0xc9,0x4b,0xe0,0x13,0x48,0x05,0x59,0x93,0x9e,0xe3,0xe7,0xd3,0x32,0x27,0x60,0xa7,0xa7,0x19,0x21, - 0x3c,0x30,0x5c,0xc2,0x3f,0xe5,0xb3,0xfd,0x45,0x39,0xcd,0x67,0x79,0x36,0xdd,0xaf,0x73,0x42,0x8b,0x92, - 0xb6,0x2a,0xb6,0x52,0xe7,0x69,0xdd,0xd8,0xb2,0x78,0x2f,0x27,0xa6,0x0f,0xc4,0x5d,0x82,0xfb,0xbe,0xa2, - 0x83,0x1c,0x2d,0x10,0x4a,0xfd,0x74,0xbd,0xdf,0xed,0x68,0x95,0x11,0x4f,0x4f,0xc7,0x29,0x9e,0xe8,0x98, - 0xda,0x4f,0x67,0x0d,0xbf,0x81,0x98,0xdd,0xa7,0xb1,0x11,0xa5,0x73,0x72,0x0b,0x5b,0xc1,0xc2,0x41,0xda, - 0xe0,0x25,0x24,0x2f,0x4e,0xe3,0x4f,0x5c,0xbb,0x5b,0xf5,0x61,0x4d,0x0c,0x68,0x13,0x06,0xbf,0x16,0x04, - 0x23,0x1d,0xee,0xbb,0xf4,0x97,0x81,0x76,0x9d,0xa2,0xcd,0x3f,0x84,0x9c,0x1e,0x9f,0xad,0xce,0x68,0xbe, - 0xc3,0x03,0x42,0x3b,0x51,0xfb,0xac,0x56,0xc5,0x56,0xa9,0x72,0xef,0x90,0x00,0x42,0x0e,0xcf,0x94,0x8e, - 0x70,0x16,0x2a,0xe9,0x8a,0x9b,0xe8,0x9b,0xe4,0x40,0xef,0x9e,0x11,0x32,0x13,0x90,0x12,0xfb,0x13,0x26, - 0x40,0x98,0x14,0x18,0xf3,0x37,0x63,0xfc,0x89,0x8f,0x4f,0x22,0x60,0x28,0x9a,0xc2,0xf0,0xb8,0x38,0x89, - 0x62,0x9b,0xb3,0x17,0x28,0xa0,0xe6,0xb8,0x00,0xc3,0x9b,0x52,0xc6,0x9f,0x87,0x12,0x6f,0xf6,0x6e,0xa3, - 0xad,0xc6,0xbe,0x82,0xc0,0x29,0x6a,0xac,0x45,0x42,0x66,0x85,0x92,0xbc,0x03,0x69,0x00,0x0f,0x1b,0x6a, - 0xe7,0x6c,0x45,0x3b,0x28,0xb8,0xa0,0x25,0x0c,0x60,0x64,0xd0,0x10,0x3f,0x8d,0x17,0x6c,0xbb,0x5b,0x8a, - 0xdc,0xe0,0x29,0x96,0x62,0x8a,0x45,0x84,0x93,0x72,0x4e,0xef,0xe6,0x71,0xec,0x1e,0x1d,0xc6,0x8a,0x45, - 0x05,0x12,0x13,0x57,0x03,0xf0,0xc4,0xe7,0xf4,0xa3,0x6a,0xc6,0x33,0x31,0xda,0xc2,0xc3,0xd8,0x3c,0xf8, - 0x0a,0x95,0xb1,0xfb,0x32,0xad,0x51,0x16,0x3f,0x63,0xf9,0xf1,0xca,0xfd,0x9f,0x56,0x03,0xe0,0xa1,0x74, - 0x23,0x78,0x54,0x98,0x3b,0xf4,0x91,0x7e,0xd4,0x32,0x6d,0x2e,0x38,0x3f,0xb8,0x87,0xc5,0xa3,0x54,0x9d, - 0x30,0x84,0x50,0xe8,0x21,0x4c,0x42,0xc6,0x2e,0x11,0xa5,0xf6,0xdc,0xab,0x88,0xe7,0x69,0xad,0x92,0x7b, - 0xe1,0xa2,0xce,0xb3,0x35,0x4d,0x10,0xc8,0xb6,0xe8,0x5e,0x3e,0x6c,0x20,0x03,0x75,0x2a,0x38,0x80,0xff, - 0x43,0x40,0x3f,0x36,0xb9,0xd1,0xaa,0x69,0x8b,0x8c,0x27,0xf3,0x0c,0x6f,0x61,0x90,0x06,0xf6,0x9c,0xa4, - 0x35,0xd2,0xbc,0xf8,0xd0,0xec,0x40,0xbd,0x16,0x4e,0xfa,0x60,0x28,0x07,0x81,0x02,0xc6,0x75,0x05,0xa1, - 0x3f,0xfa,0x13,0x17,0xce,0xa0,0xc4,0xcc,0x3f,0x53,0xa9,0xe6,0x05,0x10,0x8d,0xf9,0xe0,0x44,0x3c,0x6c, - 0x36,0x84,0x27,0xb7,0x54,0x8e,0xbb,0x07,0x9f,0x3f,0xa3,0x3d,0x65,0x90,0xd6,0x75,0x2c,0x88,0x14,0xa3, - 0x5d,0x9e,0x04,0xd2,0xa1,0x1d,0xa0,0x29,0xe2,0x95,0xeb,0x9d,0x94,0xfa,0x52,0x30,0x69,0xb3,0x83,0x99, - 0x4d,0x27,0x40,0x0b,0x1b,0x81,0xea,0xe0,0xe1,0xa3,0xa3,0xc7,0x4f,0x9e,0x7e,0xfb,0xec,0xf9,0x77,0xdf, - 0xbf,0x78,0xf9,0xea,0xf5,0x9b,0x7f,0xbd,0x7d,0xf7,0xfe,0x87,0x1f,0x7f,0xfa,0xf9,0x97,0x7f,0xa7,0x67, - 0x13,0x62,0xe7,0xcf,0x2f,0xf2,0x0f,0x1f,0xe7,0x8b,0xa2,0x5c,0xfe,0x56,0xd5,0xcd,0xea,0xf2,0xea,0xd3, - 0xf5,0xef,0x07,0x87,0xf7,0xbf,0xf8,0xf2,0xab,0xbf,0xff,0xe3,0x9f,0x5f,0xef,0xdd,0x4b,0x82,0x51,0xe1, - 0x24,0xd4,0x8e,0xf0,0x50,0x5e,0xaa,0x90,0x06,0x5f,0xb5,0x92,0xb0,0x88,0x49,0xf0,0x5c,0xfa,0x75,0x64, - 0xba,0x65,0x38,0xa5,0x5e,0x24,0x65,0xf4,0x6d,0x0d,0x48,0x98,0x44,0x4f,0x7b,0x06,0x61,0x0c,0x41,0x5b, - 0x9d,0x1c,0xc0,0xf0,0x66,0x54,0x5a,0xe8,0x59,0xd7,0x38,0xbd,0x26,0x09,0x9d,0x28,0xaa,0xfe,0x1f,0x22, - 0x9c,0xd2,0xbd,0x64,0x62,0x72,0xff,0xfe,0xc5,0xa0,0xf9,0xe6,0x9b,0x7f,0xee,0x53,0xc6,0xdf,0xfe,0x19, - 0x31,0xba,0x09,0xf3,0x44,0x3e,0x3e,0xa2,0xde,0x52,0x91,0x7a,0x2f,0x19,0xfe,0xe3,0xab,0x28,0xfa,0xe6, - 0xfe,0x57,0x5f,0x69,0x82,0x1d,0xa3,0x2b,0x46,0x4d,0xd2,0x3c,0x78,0xf0,0xcf,0x75,0x6e,0x8e,0xa3,0xff, - 0x65,0x04,0x72,0x73,0x55,0xe5,0x2d,0xad,0xbe,0xa1,0xda,0x08,0x59,0xdd,0x88,0x19,0x08,0x9d,0xf6,0xb5, - 0xd6,0x91,0xf0,0x81,0xd9,0x43,0x23,0x11,0xb5,0xc0,0xfc,0x9f,0x98,0x21,0x10,0x60,0x0e,0x06,0xfa,0x13, - 0x73,0x52,0xd1,0x77,0x18,0x0f,0x9f,0xdd,0x05,0x30,0xf3,0xb7,0x2f,0xdf,0x5b,0xe9,0xad,0xf2,0x20,0x3b, - 0xf7,0xbe,0xc5,0xfe,0xa3,0x0f,0xf3,0x56,0x81,0xd2,0x2b,0x30,0x65,0x01,0x0d,0x15,0x29,0x21,0xb8,0x20, - 0x20,0x4f,0x5d,0x5e,0x9d,0x4d,0x56,0x15,0xa4,0xde,0x6e,0x17,0x32,0xee,0x4e,0x6a,0x7d,0xc6,0x8f,0x76, - 0xe8,0x90,0x57,0x60,0x2e,0xe3,0xad,0xd3,0x29,0xe9,0x7c,0x34,0x5c,0x30,0x9f,0x85,0x21,0xbc,0xcd,0xce, - 0x9f,0x7c,0x5a,0x86,0x41,0xf8,0x9f,0xf5,0xe8,0xd7,0x5f,0xeb,0xbf,0x45,0x21,0x4d,0x09,0x91,0x6f,0x49, - 0x78,0xfc,0x9f,0xd1,0xc9,0xdf,0xa2,0xc0,0xa9,0x82,0x1a,0xe2,0x0f,0xb7,0xe7,0xea,0xf8,0x8b,0x13,0x91, - 0x4f,0xa0,0xf1,0x45,0x79,0xd9,0xb6,0x8e,0xe0,0xdd,0xc5,0x8b,0x42,0x6b,0x41,0xa0,0x86,0x19,0x1b,0x16, - 0xe5,0x55,0x18,0xed,0xff,0xf3,0xef,0x5f,0x66,0x5f,0x11,0x35,0x1d,0x77,0x17,0x0d,0x32,0xa7,0xf6,0x38, - 0x5a,0xfa,0xd3,0xed,0x76,0xe8,0x83,0xbf,0x40,0x1e,0xeb,0x4e,0x5d,0x10,0xf8,0xcc,0x21,0x2d,0x3e,0x3e, - 0xf1,0x09,0x50,0x5f,0x2f,0x49,0x15,0xf4,0x2b,0xb2,0x5b,0x15,0xc8,0x02,0xdd,0x58,0x7d,0x1b,0xcb,0x3c, - 0x44,0xdf,0xc6,0x5a,0xf7,0x76,0x61,0xa1,0x84,0xf6,0x0f,0x21,0x61,0x70,0x2d,0x71,0xf9,0x64,0x6b,0xe2, - 0xcc,0x57,0x44,0x44,0x82,0xc8,0xec,0x24,0x69,0x7e,0xaf,0x55,0x91,0xa6,0x38,0x92,0x36,0x95,0x69,0x89, - 0x5b,0xbf,0x06,0xcf,0x88,0xc0,0x92,0xb9,0x0d,0x31,0xa0,0xf4,0x4a,0x2c,0xe2,0x7f,0xa9,0xdd,0x82,0xdd, - 0xe1,0x67,0xf8,0x59,0x46,0x05,0xcf,0x67,0x9a,0xfb,0xcb,0xa6,0xe1,0x96,0x02,0xeb,0xf0,0x6b,0x91,0x10, - 0xc3,0x34,0xcf,0xda,0x04,0xd2,0xeb,0x21,0x04,0xc4,0xf4,0x7b,0x0b,0x8f,0x40,0x4b,0x03,0x74,0x96,0x0d, - 0xcf,0x52,0x2d,0x96,0xdb,0x9d,0x68,0x29,0x0c,0x33,0x58,0xf4,0x90,0xcc,0x43,0x9b,0xad,0xb4,0x80,0x46, - 0x59,0x19,0xaf,0x93,0xf6,0xb2,0xe2,0x4f,0x84,0xc0,0x09,0x64,0x8c,0x2c,0x0d,0xb6,0xb9,0x50,0xd4,0x74, - 0x54,0x56,0x7e,0x2d,0x46,0x94,0x6f,0x53,0x86,0xa2,0x8b,0xd0,0x95,0x5a,0xa1,0xbf,0x16,0x69,0x9e,0xb4, - 0xd3,0xf1,0x16,0xfd,0xa1,0x22,0x42,0xf5,0xa9,0x17,0x40,0x5a,0xa3,0x21,0x5f,0xcf,0x40,0xeb,0x6a,0x84, - 0xf6,0xb6,0xe5,0xe6,0x64,0x63,0x36,0x34,0x75,0x52,0x6b,0xfc,0xd6,0xeb,0xda,0x3c,0x46,0xe0,0x10,0xdb, - 0xe2,0x06,0x07,0xf7,0x3c,0xc7,0x8d,0x99,0x1a,0x79,0xa0,0xf7,0xde,0xa9,0x11,0xd6,0x95,0x8a,0x6f,0x54, - 0x4f,0x4d,0x29,0x3d,0xd3,0x09,0x23,0x15,0xc2,0x6e,0xcf,0xf0,0xba,0x80,0x73,0xa7,0xe1,0xb6,0x2d,0xb5, - 0x52,0x94,0xf7,0xfe,0xb9,0xb6,0x69,0x7d,0x9d,0x9a,0x9e,0xf9,0xa8,0xe6,0x2f,0x69,0x2e,0x3e,0xc3,0x8d, - 0x9a,0x09,0xb1,0x4b,0x55,0xb4,0x28,0x1c,0xa8,0x38,0x81,0x30,0x36,0xdb,0x8c,0xd4,0x9f,0x90,0x17,0x58, - 0x3a,0x26,0xdc,0xcd,0xd6,0x6b,0x58,0x73,0x9c,0x1e,0x3d,0x7c,0x75,0xf4,0xe4,0xc5,0xe9,0xe9,0x7f,0x21, - 0x7d,0x30,0xb5,0xdd,0xfb,0x4f,0x78,0x9c,0xee,0xff,0x7e,0x82,0x3f,0xbf,0x4e,0x7f,0xdd,0xfb,0x75,0xff, - 0xd7,0xe1,0xc9,0xdf,0xe2,0x68,0xfc,0xeb,0xbd,0x5f,0xef,0x19,0xd2,0x2f,0xfb,0xaf,0xc4,0x1b,0x0e,0x31, - 0x8e,0x3d,0x43,0xa2,0x5f,0xef,0xed,0x09,0xc9,0xbc,0x07,0xfa,0xb3,0xf1,0x09,0xe2,0x7b,0x7b,0x42,0xea, - 0xfe,0xc1,0xe4,0xb4,0xad,0x76,0x5a,0x94,0x5a,0xb6,0x29,0x7a,0x8c,0x37,0x93,0xad,0x23,0x23,0x10,0x63, - 0xdf,0x60,0x2f,0xf4,0x3f,0x27,0x46,0x97,0xf8,0x18,0x3f,0x25,0x86,0x75,0x53,0x8b,0xca,0x72,0x93,0x0e, - 0xf5,0x88,0x67,0x4e,0xfd,0x97,0xd0,0x21,0x04,0x99,0x56,0x96,0xb8,0xeb,0x29,0x58,0x2d,0x51,0x04,0xa1, - 0xa6,0xc8,0x9b,0x88,0xba,0xa0,0x53,0x9e,0xe8,0xee,0x9d,0xc5,0xaa,0x6e,0x76,0xce,0xb2,0x9d,0xd4,0xda, - 0x4c,0x0d,0x03,0x6d,0x86,0x32,0xe2,0x5e,0x6b,0xc1,0x60,0xd2,0xab,0xcc,0xc2,0x5c,0xd1,0x04,0xc9,0x07, - 0x45,0x82,0x0f,0x46,0xed,0x6c,0x48,0xd1,0xd2,0x1a,0x68,0x29,0x34,0x8f,0x5c,0x55,0xce,0xfb,0xd1,0xa6, - 0x41,0x8c,0xe0,0x10,0xf4,0x17,0xed,0xd3,0xb1,0x8b,0xcb,0x3b,0xea,0x14,0x6d,0x55,0xc1,0xd5,0x68,0x91, - 0xad,0x4b,0xc1,0xa1,0x55,0x97,0xab,0x6a,0x92,0xf9,0x5f,0xf9,0xc6,0x06,0x37,0x0d,0x0e,0x0c,0xb6,0x27, - 0xaa,0x5a,0xa8,0x28,0x4b,0x70,0xa8,0xca,0xa1,0xc2,0xf0,0x73,0xeb,0x41,0xf5,0x17,0xf6,0xc6,0x4e,0x0f, - 0x8a,0x32,0x06,0x65,0x2c,0x76,0x6c,0x60,0x53,0x06,0xbd,0x67,0xb7,0x85,0xdb,0x7d,0x20,0x7a,0x94,0x99, - 0xff,0x4b,0x6e,0x10,0x0d,0x1c,0x1b,0x7e,0x5c,0x65,0xfd,0x6e,0x0d,0xfd,0xc0,0x98,0xf5,0xda,0xc1,0xae, - 0xd7,0x18,0x1d,0x5b,0xc4,0x7a,0xc6,0x90,0xdd,0x92,0x22,0xf3,0x32,0x92,0xb0,0x4d,0x7b,0x57,0x1a,0x96, - 0xab,0x5d,0x89,0x6f,0xd6,0xbe,0x65,0x5d,0xb0,0x5e,0x6f,0xdb,0xf1,0x52,0x5a,0x7d,0xbd,0x38,0x2b,0xe7, - 0xed,0xb4,0xb3,0xb2,0x9c,0x67,0x69,0xd1,0x6b,0xd7,0xfe,0xbf,0x63,0x09,0x2f,0x12,0x36,0x36,0xbe,0x5d, - 0x14,0xbd,0x86,0xf0,0x86,0x88,0x66,0x43,0x08,0xb6,0xc9,0x0b,0x2d,0x03,0xe5,0x88,0xe3,0x6f,0x92,0x83, - 0xc1,0xe0,0x25,0x91,0xf8,0xc3,0xd9,0xbc,0x84,0x25,0x18,0x2b,0xd3,0x89,0x63,0xad,0x9f,0xe6,0x05,0xd3, - 0xbf,0x5e,0xad,0x75,0xa7,0xeb,0xd4,0xf3,0x71,0x10,0xf4,0x78,0xb6,0x8c,0xbb,0x22,0x3f,0x91,0x82,0xdf, - 0x8f,0x62,0xdb,0x05,0x57,0xeb,0xa4,0xb7,0xaf,0x4e,0x8a,0x4d,0x1c,0x4d,0xfa,0x8a,0x3a,0x36,0xce,0x88, - 0x30,0xb5,0x5f,0xcd,0xb5,0x85,0xa4,0xb5,0xc8,0xd4,0xa6,0xf1,0xc2,0xe5,0x87,0xa2,0x3d,0xa8,0x12,0x2b, - 0xc3,0x52,0x10,0x73,0x26,0x07,0xa3,0xfc,0x41,0x65,0x4c,0xc9,0x72,0x31,0xcc,0x3c,0xce,0x4f,0x4e,0x08, - 0x57,0x3a,0x7e,0xa1,0x4f,0xfb,0x7e,0x9c,0xb5,0x05,0x59,0x27,0x9b,0x3e,0xe3,0x0e,0x2a,0x76,0xb2,0x71, - 0x7d,0x5c,0x59,0x77,0x04,0xe3,0x47,0x60,0x54,0xaa,0x99,0x27,0xe2,0x62,0x71,0xf0,0x37,0xfb,0x87,0x56, - 0x4a,0xcc,0x5d,0xa6,0x13,0xa7,0x50,0x87,0x91,0x57,0xdb,0xac,0x75,0x66,0x9d,0x99,0x55,0xc7,0x26,0xb7, - 0x65,0xa6,0x6e,0x2e,0x7b,0xe6,0x63,0xd4,0x45,0x1b,0x9e,0x45,0xdb,0x71,0x71,0x02,0xc3,0x4e,0xfa,0x81, - 0x85,0x70,0xe4,0x37,0xbc,0xdc,0x32,0x46,0xd5,0xd2,0x90,0xaa,0xc7,0x50,0x58,0x53,0x18,0xe3,0xea,0x9b, - 0xc3,0xb1,0x33,0x6e,0xb5,0xe5,0x80,0x03,0xb8,0xdf,0x6c,0xde,0x6b,0x9e,0xad,0x9c,0xb7,0x18,0x9e,0x4a, - 0x45,0xd6,0xf3,0x42,0x15,0xae,0x23,0x17,0xd2,0x11,0xe2,0xc6,0xd7,0xeb,0x83,0x91,0x5b,0x7a,0x53,0x76, - 0xbf,0xa1,0x15,0x77,0x96,0xb9,0x45,0x34,0x2a,0xf6,0xf7,0x47,0x51,0xc5,0x83,0x3a,0x2e,0xf6,0x1a,0x6b, - 0x76,0x5b,0xb9,0x4a,0x2f,0x3b,0x80,0x04,0xef,0x8d,0x26,0x82,0x6f,0x47,0x82,0xd9,0xb0,0x92,0x51,0xf7, - 0xc5,0xa2,0x25,0x9a,0x80,0xd5,0x74,0x41,0x80,0x55,0x3c,0x70,0xce,0x22,0x04,0x58,0xa8,0x60,0x30,0xb8, - 0x84,0xf6,0x11,0xc2,0x48,0x0b,0x5d,0xae,0x9a,0x73,0x73,0x0e,0xbb,0xa4,0x6b,0x07,0x30,0xd8,0x86,0x91, - 0xc1,0x52,0xfa,0x48,0xe4,0x73,0xae,0xa2,0x1f,0x01,0x9a,0x5d,0x3a,0x08,0x77,0x2b,0x53,0x88,0xb8,0x96, - 0xdd,0x6a,0x30,0xb0,0x1b,0x8c,0x2a,0xd0,0xcf,0x54,0x1a,0x3a,0x4c,0xd6,0x3d,0x24,0x3c,0x35,0x9e,0xb8, - 0x9f,0xd8,0x96,0x76,0x92,0xd4,0x5d,0x0e,0x06,0xa9,0x03,0x48,0xbd,0x26,0x90,0x5f,0xc9,0x23,0x38,0xa4, - 0xec,0x32,0xab,0xae,0xbd,0xf3,0xd9,0x23,0x30,0x79,0x1c,0x18,0xf6,0x46,0x2a,0x5b,0xaf,0x4d,0x65,0xbb, - 0x87,0x23,0x11,0x68,0x68,0xf0,0xfc,0x98,0x5d,0x03,0xab,0x10,0xb7,0xe4,0x27,0x38,0xbb,0xf2,0xda,0xb5, - 0x3d,0xb1,0x6d,0xd7,0xdd,0xb6,0x5b,0x2d,0xc3,0x2b,0x47,0x37,0xee,0x8c,0xbf,0x4c,0xeb,0x1e,0x58,0x9f, - 0x75,0x31,0xc8,0xd6,0x1a,0x52,0xd7,0x4d,0x7d,0x91,0x75,0xa7,0xd3,0x3d,0x23,0x5e,0xd8,0xd6,0x74,0xea, - 0x76,0x1d,0x8d,0x6f,0xdb,0x6c,0xbc,0x61,0x93,0x69,0x26,0xc7,0xf4,0x86,0xc0,0xe1,0xe7,0xf6,0x84,0xbf, - 0xd9,0xae,0x5c,0x5d,0x10,0xf5,0x04,0x91,0x2f,0xa0,0x3a,0xb0,0xf3,0xf2,0xc5,0xdf,0xb1,0x1a,0xeb,0xf5, - 0xd7,0x5f,0xe1,0xd7,0x7d,0x7e,0x64,0xf4,0x76,0xd1,0x8d,0x9e,0x50,0x39,0x7d,0x8d,0xdb,0x11,0x67,0x53, - 0xfd,0xf3,0x55,0x16,0x17,0x2a,0xa3,0x03,0x2d,0xab,0xd2,0xb3,0x79,0x16,0xef,0xee,0x56,0x0a,0x12,0x0d, - 0x79,0x39,0xd0,0x96,0x10,0x2b,0x9d,0x79,0xb0,0xf1,0x90,0xcc,0x7b,0xef,0x3c,0xea,0x51,0x38,0x0f,0x06, - 0xf7,0x0a,0xf6,0x8b,0x60,0x9d,0xe8,0x3d,0x4d,0xa1,0xfb,0x86,0x82,0xae,0xaa,0x8f,0x1d,0x0b,0xa7,0x8c, - 0xd6,0x82,0x0f,0x6f,0xd5,0xfe,0x71,0x27,0x97,0xfb,0xf6,0x93,0x36,0x15,0xd0,0x28,0x60,0x62,0x84,0x3b, - 0xaf,0xc5,0xac,0x57,0xa3,0x02,0x58,0x50,0x0e,0x9b,0xf4,0x5c,0x59,0x96,0x78,0x72,0x91,0xcf,0xa7,0x55, - 0x56,0x80,0xf9,0x82,0xf5,0x07,0x41,0xf2,0x7c,0xa1,0x58,0xb9,0xc9,0xef,0xc8,0x48,0xeb,0xeb,0x62,0xf2, - 0x34,0x85,0x99,0xfc,0xb5,0x53,0xa7,0x0e,0x0b,0x30,0xdc,0xa8,0x5a,0x24,0x79,0x4d,0x3e,0x01,0x26,0xd7, - 0x8f,0x94,0x4a,0xc0,0x4b,0x09,0xf4,0x97,0x4b,0x1c,0x11,0x6b,0x4b,0xfd,0xe1,0x22,0xfa,0x99,0xd2,0x67, - 0xc5,0x91,0x34,0x44,0xe9,0xf6,0x99,0xd3,0x75,0xc7,0x39,0xdd,0x0e,0x82,0x9e,0xdf,0x4d,0x68,0xed,0x9e, - 0x4f,0x39,0x5d,0x3f,0x4b,0xfd,0x73,0x1a,0x2f,0x7b,0x5e,0x36,0xa2,0x8e,0xd5,0x03,0xa3,0x97,0xca,0xbe, - 0x24,0xef,0xbc,0x1c,0x18,0x16,0x45,0x50,0xde,0x16,0x7e,0xe1,0xc2,0x2f,0x5c,0xb4,0x0b,0x13,0xbe,0x71, - 0x33,0xfe,0xae,0xbb,0x63,0x2c,0x92,0x6e,0xa3,0x5d,0x7d,0xd0,0x16,0x7c,0xc2,0xe2,0x7c,0x4d,0x68,0xad, - 0xe8,0xc7,0xf3,0x17,0xf1,0x6a,0x7d,0x68,0x91,0x9e,0xb8,0x04,0xed,0x86,0x2d,0x07,0x1e,0x62,0xee,0xf5, - 0x22,0xdb,0x9d,0x05,0xa1,0xdc,0xe9,0x69,0x79,0x76,0x7a,0x1a,0xb0,0xb1,0x8a,0x3c,0xfb,0x1f,0xd5,0xd5, - 0x18,0xbd,0x93,0x8c,0x38,0x25,0xb2,0xfd,0xa2,0x5c,0xcd,0xa7,0x34,0xdb,0x84,0x38,0x68,0xb6,0x76,0x7f, - 0x2b,0xd8,0x48,0xb0,0x8b,0x0d,0xd7,0x6b,0x10,0x5b,0x94,0xa3,0x37,0x4f,0x5e,0x3f,0x81,0x57,0x4b,0x9d, - 0x9f,0xb1,0xb5,0x2d,0x7d,0xc8,0x4e,0x0a,0x44,0xc5,0x62,0xde,0x78,0xd0,0x35,0xeb,0x2e,0xb1,0x04,0x3c, - 0xaf,0x97,0x8b,0xa3,0x72,0x55,0x34,0x7b,0x7b,0x74,0x70,0xb9,0x31,0xde,0xf1,0xd5,0xe9,0x82,0x88,0xf1, - 0xed,0x2f,0x05,0xa1,0x5f,0xdd,0xd4,0x79,0xd6,0x78,0xee,0x81,0x8f,0xb3,0x7a,0x52,0xe5,0xb0,0x9c,0xe7, - 0xd9,0x61,0x74,0x9f,0x12,0xba,0x3f,0x24,0x72,0x31,0x1d,0xfa,0x9b,0xd3,0x48,0x88,0x53,0xc2,0xd8,0xa8, - 0x84,0x50,0x29,0x3f,0xd6,0xf4,0x38,0x4f,0x76,0xf3,0xc1,0xe0,0x21,0x4e,0xc2,0xcf,0x60,0x03,0x1f,0x0b, - 0x6c,0x6d,0x7c,0x45,0x55,0x76,0x4d,0xab,0x9b,0xa4,0x1e,0xd7,0x86,0xe8,0x74,0xea,0x8f,0x5f,0x0a,0xda, - 0x68,0x15,0x95,0xa7,0xb9,0x29,0xa9,0xa5,0x25,0x2c,0x37,0x22,0x35,0xa7,0xd7,0x39,0x5e,0x5d,0x52,0xf7, - 0xc4,0x19,0x0c,0x3c,0x8a,0xbf,0x05,0x61,0x7a,0xff,0x8b,0x5b,0x52,0xd3,0x75,0x47,0xa2,0x25,0x68,0x60, - 0xd8,0x89,0x89,0x97,0xb5,0x76,0x4f,0x9f,0x6b,0x11,0xb2,0x71,0x36,0xc2,0x80,0xd0,0x9c,0x85,0x3d,0xb5, - 0x3f,0xca,0xc6,0x90,0x37,0xed,0x61,0x42,0x81,0x53,0xad,0xd7,0xcd,0x2e,0x9b,0xa0,0xee,0xe2,0x39,0x9c, - 0x8c,0x27,0x8e,0x0e,0x8b,0xa9,0x3b,0x76,0xce,0x1b,0x58,0xfd,0x17,0x65,0x03,0xfa,0x97,0x2d,0xef,0x3d, - 0x70,0x78,0xed,0x99,0x07,0x74,0x41,0x90,0xd6,0x2e,0x74,0xc7,0x8d,0x3d,0x7b,0x99,0x46,0x5f,0xa4,0x9f, - 0x2c,0x29,0xa9,0x58,0x82,0xa7,0x49,0xc5,0x46,0x1d,0x52,0x75,0xaa,0x00,0x9c,0x34,0xec,0x7f,0x8a,0x7d, - 0xc4,0x4f,0x5d,0x97,0x51,0x57,0xb5,0x18,0xc8,0x16,0x5a,0x74,0x64,0x76,0x8b,0xf3,0x4c,0x12,0x40,0x5f, - 0xaf,0x2b,0x58,0x6a,0x69,0xb8,0x1e,0x17,0x71,0x35,0x0e,0xef,0x10,0x82,0xe1,0x33,0x84,0x47,0x41,0xc8, - 0x08,0x73,0x6d,0xc6,0x0a,0xc2,0xce,0x58,0xdf,0x16,0x1e,0xbe,0x7e,0x62,0xf7,0xf9,0x2d,0x43,0xf6,0x47, - 0xe3,0x99,0x3a,0xb8,0x8d,0x3c,0x72,0x7d,0xf2,0xf7,0xda,0x7a,0x2d,0xa4,0x31,0x6c,0xd0,0x8c,0xb5,0x6f, - 0x73,0x22,0x68,0xce,0xef,0x98,0xbf,0x02,0x6f,0x6c,0x67,0x7c,0xf3,0x0c,0x0b,0x77,0xd8,0xa8,0x6e,0x6b, - 0x6a,0x9a,0x04,0x1a,0xa7,0x51,0xfd,0x20,0x35,0x50,0x58,0x03,0xbb,0x81,0xb0,0x4c,0xd2,0xe3,0xfa,0xe4, - 0x04,0x00,0x0a,0x5a,0x61,0xc6,0xa4,0xd0,0xb8,0x0c,0x2b,0xf6,0x6f,0x84,0x2e,0xe5,0x4d,0x88,0x8d,0x1f, - 0x63,0xd9,0x0b,0x7a,0xe8,0xa1,0x29,0x1f,0x77,0x44,0x74,0xc5,0xb8,0xb3,0xe7,0xaa,0xa4,0xd7,0x4f,0xce, - 0xb8,0x0e,0xb3,0xb3,0x1c,0xf5,0xa0,0xef,0x40,0x1e,0x67,0x5e,0xa1,0xcc,0x91,0xe8,0xba,0x57,0xf9,0x26, - 0x6e,0xc6,0x99,0xdf,0x9e,0x71,0x25,0x0f,0x3f,0xd7,0x24,0xd3,0x30,0xf8,0x83,0x86,0x3f,0xd7,0xac,0x57, - 0x90,0xd8,0xbe,0xb8,0x89,0xbd,0x61,0x7f,0xe8,0xca,0xe1,0xc6,0x99,0x51,0xe1,0xd3,0x76,0xea,0xa2,0x89, - 0x71,0x13,0x43,0xcf,0xef,0x7d,0xff,0xdc,0x91,0x3b,0x22,0xf0,0x69,0x73,0x3d,0x5a,0x52,0xe0,0xe9,0x82, - 0x2e,0xe1,0x56,0x85,0x31,0xdb,0x2a,0x5e,0x98,0x99,0xf7,0xa4,0x00,0xb6,0xba,0x49,0x45,0xe8,0x85,0xe0, - 0xab,0x1a,0xcd,0xe1,0xc1,0x47,0x07,0x14,0xbb,0x3d,0xe2,0x0f,0x1a,0xed,0xb3,0xe6,0x03,0xf6,0x23,0x0e, - 0x65,0xa8,0xbd,0x8b,0xba,0xa2,0x17,0x03,0xd1,0xb4,0x1f,0x97,0xb5,0x58,0x02,0xc9,0xfa,0x32,0xc0,0xdd, - 0x6c,0x46,0x5b,0xfb,0xa3,0x10,0xa7,0x74,0x3a,0x62,0x2d,0xfa,0x03,0x57,0xd3,0x15,0x50,0x84,0x12,0xd7, - 0x01,0xbb,0x20,0x3d,0xbe,0x2a,0x08,0xee,0x4e,0x92,0x1b,0x64,0x89,0x9a,0xcb,0x59,0x1a,0x95,0xa6,0x46, - 0x3e,0x37,0x80,0x22,0x8a,0x08,0xdf,0xd6,0x27,0x8a,0x3f,0xac,0xe9,0x43,0x80,0xed,0x38,0x8f,0xe5,0xfb, - 0x7c,0x33,0xd2,0xfd,0x4d,0xd2,0x0d,0x50,0xe6,0x2d,0x43,0xca,0x0b,0xcc,0xbd,0x3f,0x26,0x9b,0xf8,0xb9, - 0x81,0xc9,0x4c,0x33,0xc1,0xe0,0x73,0xe6,0xc4,0xb5,0x31,0x67,0x7e,0x03,0xe3,0x9a,0x18,0xcf,0x9b,0xfe, - 0x21,0xa4,0x32,0x04,0x7d,0x0c,0x16,0xc7,0x29,0xf1,0x6c,0xf4,0x87,0xc6,0x50,0x47,0xb4,0xde,0xf2,0x7d, - 0x4a,0x28,0x3e,0x8a,0xe5,0xb9,0xde,0x6c,0xba,0xc3,0x30,0x83,0xa0,0x03,0x32,0xaf,0xa8,0xbf,0x44,0xbd, - 0xea,0xc5,0x31,0xad,0x54,0x5e,0x2b,0x32,0xd3,0xa3,0x9e,0xc5,0xcf,0x41,0x16,0x70,0x74,0x0d,0x18,0xf8, - 0xc7,0xb9,0x5a,0x2d,0x61,0x5d,0x48,0x53,0x18,0x41,0xe9,0xaf,0xe3,0x6f,0x34,0x3a,0xbc,0x04,0x37,0x91, - 0xb3,0x8d,0x14,0xa0,0x30,0x87,0x71,0xa0,0x6a,0x86,0x8b,0xfc,0x13,0x91,0x32,0x6e,0x7c,0x74,0xf6,0xd5, - 0x89,0x49,0x36,0x53,0x94,0x3e,0xa8,0x47,0x29,0xf8,0x4c,0xfe,0xd4,0xe4,0xd2,0xb8,0xa9,0x12,0x6e,0x66, - 0x42,0x27,0x11,0xcd,0x3a,0x6a,0x99,0x48,0x44,0x02,0x7a,0x88,0xdc,0x7b,0x13,0x01,0x51,0x4d,0x88,0xe4, - 0xe1,0x74,0xbd,0x43,0xe6,0x6e,0x63,0x3c,0x75,0x7b,0xab,0xcf,0xdb,0xc6,0xce,0x05,0x90,0x2d,0x06,0x42, - 0x43,0xc1,0x00,0x8c,0xd4,0x06,0xbc,0xb3,0x50,0x3a,0x57,0x60,0xd0,0x4c,0x89,0xd2,0x2b,0x51,0x4a,0x89, - 0x34,0x39,0x2a,0xc2,0xd2,0x49,0x27,0xa8,0x54,0x4a,0xd0,0x47,0x63,0x89,0x73,0x16,0x4b,0xa0,0x24,0xfe, - 0xa6,0xbe,0x70,0xe5,0x55,0x77,0xeb,0x37,0xc7,0xd9,0x89,0x2a,0x93,0x5d,0x5a,0x35,0xc5,0x7c,0x2d,0xa4, - 0x31,0x68,0xf6,0x6d,0xf8,0x48,0xe4,0x71,0x2a,0x1f,0xf2,0x09,0x08,0xfa,0x84,0xce,0x47,0x34,0x14,0x68, - 0xf7,0xca,0x20,0x1a,0xa7,0xc4,0xbc,0xc5,0x6f,0xb5,0x90,0xcc,0x14,0x85,0xe1,0xff,0x2e,0xab,0xb4,0x53, - 0xfa,0xf9,0xa8,0xfd,0x5f,0xd3,0x84,0x09,0x69,0x2b,0x91,0x4c,0xa3,0x9b,0xb4,0xcf,0xf4,0x6f,0x06,0x0f, - 0x28,0xdb,0x82,0xd9,0x14,0x8d,0xf1,0xe9,0xb4,0xe7,0x00,0x88,0xd8,0x3b,0x1a,0x61,0xc8,0x4e,0x93,0xa8, - 0x09,0x4e,0xe4,0xd9,0x93,0x2d,0x02,0x06,0x2b,0xea,0x1c,0x9e,0x72,0x0e,0xa5,0x8e,0xbd,0xe7,0x3e,0x11, - 0x2d,0x7c,0x86,0x9f,0x3a,0xe1,0x7e,0xf2,0x32,0x6c,0x64,0xb0,0xe3,0xca,0x52,0x3b,0x15,0x81,0x2b,0x50, - 0x52,0x16,0x69,0x7e,0xbd,0x4b,0x43,0x8f,0xba,0x09,0xe0,0x43,0x1e,0x86,0x29,0x4d,0x7c,0x37,0xa3,0x76, - 0x66,0x13,0x76,0xf5,0x5e,0x7a,0xf6,0x51,0x18,0xbd,0xe3,0x0e,0xb5,0x96,0x9f,0x1d,0xba,0x6d,0xf1,0xf0, - 0xd7,0xab,0xbd,0xe8,0x9e,0x87,0xc7,0x9b,0xe3,0x43,0x1a,0x5b,0xe0,0x2a,0x7c,0xeb,0x0e,0xf4,0xee,0xb1, - 0x61,0x00,0xee,0xa5,0x48,0x37,0x5f,0x1a,0xaf,0x57,0x13,0xe6,0xa3,0x72,0x84,0x65,0xf1,0xa0,0x32,0x9c, - 0xff,0x4b,0x16,0x86,0x99,0x0f,0x9c,0x28,0xc6,0x4a,0x12,0x6c,0xd3,0x8f,0xbc,0x15,0x6f,0x1c,0xc2,0x48, - 0x68,0x7d,0x93,0x6a,0x78,0x67,0x99,0x12,0x33,0xd5,0x8c,0x9c,0x01,0x91,0x5d,0x4a,0xf6,0x21,0x38,0x4a, - 0x97,0x54,0x61,0x36,0x65,0x5c,0x60,0xbf,0x2e,0x09,0x21,0x96,0x0f,0x72,0xd3,0xaf,0x12,0xa1,0x47,0xaa, - 0x6b,0x1e,0x1e,0x4c,0x20,0xb1,0x23,0x64,0xad,0x2a,0x25,0x8d,0xeb,0x0e,0x3a,0x89,0xc7,0x8f,0xd4,0xab, - 0x4a,0x05,0xad,0x36,0x76,0x2e,0xca,0xf2,0x23,0xfc,0xe1,0x7f,0xd4,0x5d,0x76,0x83,0xf8,0xd1,0x1b,0xc4, - 0x93,0x42,0xba,0xf6,0x4c,0x74,0xee,0xdc,0xb2,0x9e,0xc3,0x4e,0x96,0x1f,0xb8,0x44,0x2a,0xb4,0xed,0xff, - 0x64,0xa4,0xbe,0x81,0x36,0xb5,0xf6,0xbf,0xa3,0x3e,0xfc,0xb4,0xd5,0x85,0x9f,0xbc,0x2e,0xec,0x7e,0x80, - 0x3c,0xeb,0x79,0x41,0xfb,0xaf,0xc7,0xc7,0x08,0x5e,0xec,0xb4,0xa3,0xb5,0x86,0x26,0x1b,0xe9,0x77,0x69, - 0xa2,0x25,0x5c,0xfe,0x81,0xc8,0x99,0x65,0x95,0x68,0xb1,0x53,0x96,0x4c,0x2b,0xe3,0x76,0x1e,0x8d,0xa6, - 0x46,0x12,0x9c,0x38,0x61,0x62,0x43,0xcf,0x8d,0x93,0x02,0x35,0x2c,0xc9,0x6b,0x4e,0x42,0xaf,0xca,0x67, - 0xde,0xa9,0x87,0x45,0xa3,0x6a,0xd8,0x96,0xa2,0xad,0x48,0xd2,0xce,0x88,0x56,0xc0,0x69,0xe7,0x45,0xa0, - 0x25,0x28,0xe8,0x08,0x78,0x9f,0x4f,0xb0,0x1a,0x7c,0xaa,0x15,0xec,0x13,0x0f,0x55,0xcd,0x12,0x7c,0x05, - 0xfa,0x7c,0xa0,0x2e,0xaa,0xf1,0xaa,0x0a,0xa3,0x78,0x5e,0xc1,0x40,0x67,0x37,0xeb,0xd7,0xcf,0x68,0x4d, - 0x5a,0xe4,0xc9,0x51,0xfa,0x94,0x6b,0x05,0x94,0x6b,0x6e,0x18,0xbf,0x23,0xcd,0x16,0x00,0xdf,0xa5,0x2c, - 0x29,0x52,0xde,0x22,0x15,0x0c,0x89,0x05,0x85,0xf4,0x11,0x8c,0xb0,0xe5,0x90,0x9f,0x56,0xe5,0xef,0x70, - 0xc7,0x16,0x9b,0xaa,0x46,0xd3,0xea,0xe6,0x3c,0x6e,0x7c,0x76,0x2c,0x67,0x28,0x2f,0x60,0x41,0x48,0x87, - 0xb3,0x31,0xec,0x2c,0xe0,0x7d,0x40,0xef,0x70,0x15,0x49,0x35,0xad,0xd3,0xb4,0x68,0x1d,0xea,0x1c,0x93, - 0x5c,0x5e,0xa4,0x9d,0x2a,0x09,0xcb,0x0e,0x7d,0x1e,0x6d,0x7d,0x53,0xd2,0x57,0x27,0x1c,0x59,0x21,0xa2, - 0x59,0x3f,0xab,0x22,0xfa,0x3f,0x9c,0xd0,0x51,0x50,0xf9,0x0b,0xfa,0x7d,0xd8,0x8e,0xa1,0xa5,0x55,0x7a, - 0x4e,0xb8,0xad,0x40,0x18,0xcc,0x0a,0x3e,0xae,0x77,0xb7,0x68,0x18,0x2b,0xba,0xf6,0x14,0x6f,0x4e,0xb6, - 0x37,0x72,0xf8,0xa0,0xd0,0xa0,0xd7,0xab,0x88,0x80,0x98,0xc4,0xaf,0x21,0xb3,0x32,0x71,0x6e,0x1a,0xe1, - 0x0c,0x5c,0x8f,0x7f,0x0b,0xb5,0x30,0xc1,0xda,0xff,0xab,0x5a,0xd1,0x81,0xcf,0x8d,0xa5,0x72,0xba,0xd3, - 0xd4,0x83,0x1a,0x98,0x30,0x45,0x44,0xb4,0xc0,0x69,0x05,0xe4,0x9c,0x85,0x6c,0x23,0x97,0xd1,0x91,0x3f, - 0xa6,0xbf,0x35,0xea,0xc6,0x79,0x28,0xa5,0x93,0xef,0xb1,0x2c,0xaa,0x22,0x7e,0x9d,0x8d,0x37,0x6b,0x35, - 0x1f,0x12,0x35,0x9e,0x29,0x04,0x78,0x61,0x14,0x42,0x4f,0xf0,0x89,0x23,0xfa,0x88,0x9f,0x60,0xa6,0x1e, - 0x45,0x71,0x4d,0xa7,0xc8,0x84,0x6a,0x99,0x70,0x57,0x89,0xda,0x47,0x5d,0x93,0x28,0x72,0xfd,0x29,0x78, - 0x3d,0x52,0x90,0xa7,0x79,0x18,0xea,0xde,0x44,0xd2,0x8a,0x74,0xd0,0xb4,0xe0,0x2d,0xcc,0x77,0xa1,0x1e, - 0xa2,0xa7,0xd7,0x8a,0x6e,0xca,0x7e,0x21,0xaa,0x5a,0xc9,0x68,0x88,0x76,0xd8,0x54,0x6d,0x01,0x12,0x04, - 0x62,0x84,0x77,0x21,0xff,0x1b,0x02,0x03,0xc2,0x84,0xc3,0xbd,0x11,0x95,0x14,0xe9,0x53,0x0e,0xf6,0x84, - 0xb4,0x0e,0x23,0x9e,0x9e,0x9a,0x66,0x03,0x3d,0x8e,0x1b,0x19,0x17,0xa4,0x0c,0xf4,0xc4,0x96,0x32,0x53, - 0x9a,0xbd,0x9a,0x46,0x88,0x74,0xd9,0xfd,0x29,0xcd,0x02,0x3e,0x98,0x28,0xfa,0x44,0xd5,0xba,0x18,0x36, - 0x31,0x0b,0xc0,0x6a,0x37,0xaa,0x6f,0x99,0x0b,0xd4,0x23,0xc3,0x8e,0x01,0x10,0x09,0xb5,0x00,0x6a,0xc6, - 0xb1,0xe7,0x08,0x8f,0x02,0xb0,0x2f,0xd7,0x6b,0xcd,0xd7,0xf2,0x2b,0x9d,0x41,0xba,0x70,0xde,0x2d,0x9c, - 0xb7,0x0b,0xe7,0x28,0xbc,0xd9,0x3e,0xb0,0x7e,0xf6,0xa4,0xae,0x62,0xa5,0xcf,0x02,0x5a,0xc2,0x48,0xd8, - 0xd8,0xda,0xc4,0xde,0x88,0x2c,0xdd,0x67,0xff,0xf6,0x99,0xb5,0x10,0x4c,0x79,0x56,0xbf,0x64,0xa5,0xf0, - 0x7a,0xfd,0x2d,0x02,0xb9,0xc8,0x0b,0x74,0x92,0xd9,0xf1,0x3b,0x56,0x8b,0xda,0x73,0xfd,0x7d,0x7a,0x2e, - 0xd1,0x00,0xe0,0xa8,0x2a,0xd4,0x0f,0x6d,0x03,0x78,0x10,0x18,0x62,0x18,0x54,0x87,0xc7,0xd9,0xfd,0xd2, - 0x0a,0xf3,0x62,0x7b,0x03,0x5a,0xc1,0x17,0xce,0xba,0x0f,0xfe,0xa5,0xed,0x16,0xba,0xc2,0x85,0xe8,0x33, - 0x02,0x7e,0xc3,0xa5,0x80,0x56,0xe5,0x95,0xa8,0xd8,0x2d,0x02,0xe2,0xd3,0x8e,0x34,0x99,0x36,0xcd,0x2f, - 0x94,0x6b,0x27,0xbc,0xf2,0x28,0xd1,0x2c,0x33,0x07,0x57,0x31,0xbe,0xc6,0xf1,0x4e,0x70,0x27,0xf2,0x20, - 0x79,0xeb,0xe8,0xe8,0x1a,0xc9,0xbc,0xe1,0xcc,0xd9,0xac,0x93,0x5b,0xd8,0xca,0xae,0xa9,0x63,0x8a,0x77, - 0xba,0x98,0x5b,0x51,0x32,0x91,0xb5,0x94,0x2a,0x34,0x9f,0xa7,0xb5,0xce,0x7c,0x3e,0x4c,0x38,0xad,0x5d, - 0x77,0x1c,0x78,0x18,0xa8,0x15,0xd2,0xcc,0x08,0xd1,0xb4,0x3c,0x92,0x39,0xdb,0x34,0x29,0x79,0x63,0xa0, - 0x0a,0x96,0x22,0xa6,0x4d,0x53,0xd5,0xf6,0x81,0x10,0x58,0xd9,0x58,0x3f,0x62,0x3f,0x51,0x95,0x46,0x7e, - 0x2e,0xf6,0x78,0xa5,0x93,0x6d,0xef,0xb2,0xa2,0x02,0xd2,0x4b,0xd1,0x19,0xa7,0xfc,0x41,0x14,0x16,0x06, - 0x10,0xd8,0x9c,0xc3,0x84,0xa0,0x3b,0x3e,0x21,0xb4,0xc0,0x3b,0xaa,0xf4,0x64,0x40,0xb5,0xfe,0x8a,0xd1, - 0x59,0x0d,0x4d,0x25,0x7e,0x50,0x78,0x14,0x34,0xd9,0x62,0x39,0x27,0x26,0x0b,0x70,0x57,0x42,0xd4,0x3f, - 0x9e,0x70,0x05,0x1a,0x4d,0x4c,0xd0,0x35,0x2d,0xd2,0x5e,0xaf,0xe9,0x8b,0x78,0x62,0xea,0xdf,0xd8,0xd8, - 0x47,0x73,0xc1,0x51,0xc5,0xf1,0xfc,0x44,0xeb,0x96,0xf2,0xcc,0x39,0x4c,0x23,0xd9,0x45,0x16,0x71,0x9a, - 0xfc,0xec,0x36,0x18,0xdd,0x6d,0x03,0x29,0x11,0x31,0x3b,0xbc,0x2b,0x78,0x8f,0x79,0x8a,0xfd,0xcc,0x53, - 0x68,0x6a,0x5e,0xed,0x16,0x48,0xed,0x40,0x35,0x28,0xd3,0x31,0x3e,0x17,0xe5,0x54,0x4c,0xbc,0x0f,0x3d, - 0xe1,0x20,0x64,0x4d,0xe7,0x09,0xcd,0x7e,0x8f,0xc6,0x31,0xcd,0x8c,0xe6,0x72,0x94,0xe9,0xbd,0xa8,0xa9, - 0xd3,0x68,0x14,0xb1,0x96,0xfa,0x34,0x2f,0x52,0xe6,0x7e,0x3f,0x47,0xef,0xd6,0x99,0xa5,0xb5,0x8d,0x76, - 0xfb,0x54,0xd8,0xe6,0xe7,0xfa,0x6b,0xa2,0xb7,0x14,0x37,0x66,0xa8,0x52,0xc3,0xb8,0x6f,0x95,0x34,0x34, - 0x40,0xbb,0x75,0x67,0xe0,0xe1,0xf5,0xe8,0xc6,0x7b,0x01,0x41,0xd7,0x9d,0xad,0x3b,0x66,0x95,0xfd,0x79, - 0x43,0x5f,0x5d,0x0e,0x6b,0x62,0x79,0x73,0x06,0x5c,0x0f,0x41,0xcd,0x34,0xf0,0xc5,0x82,0x93,0xac,0x2d, - 0xd2,0x30,0xa4,0xba,0x66,0x71,0x3d,0x71,0x00,0xef,0xa5,0xa2,0xbb,0x97,0x40,0xf3,0x15,0x36,0x6a,0xa6, - 0x8d,0x3e,0x51,0x80,0xec,0x2b,0x40,0x22,0xef,0x05,0x86,0x06,0xa7,0xd1,0x10,0x19,0xf4,0x8c,0x5e,0xd8, - 0xf1,0x92,0x59,0xc0,0x6c,0x01,0x53,0x05,0x14,0x88,0x83,0x3d,0x1f,0x2b,0xcc,0x11,0xf8,0xeb,0x1d,0x68, - 0x42,0xa1,0x63,0x55,0xc3,0xc3,0x3f,0x82,0x3d,0x52,0xd5,0xf8,0x4a,0x58,0xdf,0x12,0x28,0x9f,0xee,0x13, - 0x81,0x36,0xdd,0x40,0xfc,0x4d,0x93,0xf4,0xb0,0x7a,0x70,0x64,0x69,0x8e,0x87,0xdc,0xdd,0x84,0x80,0xe0, - 0xa8,0x3a,0x7e,0x58,0x9d,0x44,0x54,0x50,0x7d,0xac,0x58,0x6c,0xcb,0xf4,0xc7,0xb0,0x5a,0x15,0xa1,0x31, - 0xc6,0x7a,0x5f,0x59,0xda,0xa5,0x4a,0x8e,0xec,0x0b,0xd5,0x92,0xd8,0x2a,0x51,0xc8,0xd0,0xd3,0x54,0x13, - 0xf4,0xe2,0x9f,0xaa,0x04,0x9d,0x3e,0x6c,0x49,0x5a,0xfe,0x80,0xd4,0xf6,0x17,0xf9,0x40,0x61,0xfd,0x20, - 0xcc,0xdd,0x45,0xb4,0xd0,0x22,0xba,0xa5,0x22,0x57,0x09,0x28,0x3f,0xb3,0x7a,0xf8,0x0e,0x54,0xd7,0xe5, - 0x62,0x54,0x0d,0x4f,0xaf,0xb0,0x12,0x59,0x45,0x40,0x55,0x40,0x9e,0x7d,0x9a,0xd3,0xd9,0xb5,0x22,0x04, - 0x35,0x1d,0x0c,0x68,0x28,0xc4,0x29,0x89,0xa8,0x86,0xe1,0x81,0x30,0xbd,0xfa,0x8e,0x8a,0x3d,0x01,0x5e, - 0xba,0x6c,0xca,0x12,0xde,0xc2,0xdf,0x11,0xeb,0xc3,0xeb,0x33,0x9b,0x13,0xfa,0x08,0xbc,0xd5,0x59,0x59, - 0x9c,0xfd,0xa4,0x82,0x0a,0x66,0xdb,0x9e,0x8f,0xad,0xc8,0xa8,0x3f,0x04,0x80,0x1b,0x45,0x85,0xea,0x6c, - 0xdb,0x6e,0x5a,0xb2,0x11,0xe5,0xef,0x36,0x5d,0x4d,0x41,0x9f,0x7a,0xcd,0xce,0x6c,0xb3,0x02,0x91,0xac, - 0xd4,0xea,0x93,0x4a,0x15,0xe3,0x50,0x77,0xac,0x1a,0x4f,0xd9,0x10,0xab,0x30,0x9d,0x38,0x8f,0x62,0x93, - 0x57,0xe0,0xef,0xb8,0x02,0x05,0x80,0x80,0x76,0x04,0xc2,0x34,0x5f,0xa6,0x3c,0xf2,0xe2,0x73,0xf3,0x55, - 0x81,0xbf,0x63,0xfe,0x1b,0x9f,0x47,0xb7,0xf6,0xb7,0x69,0xf7,0x77,0xea,0xe3,0xcb,0x2d,0x95,0x12,0xdb, - 0xd9,0x9d,0xe2,0xdc,0x5d,0xd1,0x2a,0xfc,0x24,0xab,0x45,0xd3,0xde,0x9f,0xae,0x45,0x3b,0x56,0x76,0xcf, - 0x82,0xbb,0xe6,0x1a,0x36,0xb9,0x19,0x34,0x13,0x90,0xfe,0x46,0xca,0xd3,0x48,0x35,0x4e,0x17,0xd4,0x88, - 0xee,0xc2,0xb7,0x70,0xc9,0x9c,0x30,0xc9,0x86,0xee,0x81,0x92,0x08,0x52,0x57,0x85,0x88,0x53,0xda,0xfc, - 0x3c,0x52,0xdb,0x72,0x30,0xd6,0x04,0x32,0x46,0xa6,0x4d,0x73,0xe7,0x4a,0x7c,0xc1,0x45,0x3c,0xec,0x2c, - 0x57,0x1c,0xca,0xcc,0xfe,0xd8,0x68,0xe9,0xdb,0x62,0xfc,0x36,0x9b,0xcd,0x91,0x53,0x5e,0x15,0xdf,0x8b, - 0x89,0xc4,0x70,0x96,0xcf,0x9b,0xac,0xea,0x33,0x70,0xfe,0x33,0x1a,0xc4,0xa1,0xd3,0xf2,0x6d,0xa2,0xb8, - 0x63,0x7d,0xd1,0xc3,0x8f,0xdc,0x38,0x49,0x04,0x08,0x58,0xa2,0x0c,0x10,0x99,0x74,0x08,0x01,0x2a,0xa4, - 0x91,0xa3,0x7a,0xc4,0xa3,0xa9,0x59,0xd4,0x74,0x99,0x4f,0xb1,0x8f,0x98,0xd2,0xf7,0x52,0x88,0x20,0xa2, - 0x6f,0x12,0x2f,0x05,0xc2,0xd9,0x33,0x1a,0xec,0xc7,0x0d,0xb1,0x09,0xe6,0xf0,0x01,0xdf,0xb7,0x0b,0xdb, - 0x43,0x23,0x29,0x83,0xb4,0x92,0x3e,0x14,0xc8,0x98,0x48,0xc3,0x46,0x64,0xc6,0x35,0xf6,0xc0,0xb8,0x55, - 0xc4,0x11,0xb4,0x4e,0x36,0xd6,0x9e,0xc8,0x5b,0x64,0x84,0x3b,0x6b,0xb1,0xb8,0xe0,0x99,0xb6,0xa5,0xd2, - 0x2c,0xf3,0xdb,0x0e,0x2d,0xa4,0x45,0xf0,0x56,0xcb,0x6d,0x2d,0xba,0x54,0x49,0xe8,0x2e,0x75,0x28,0xa8, - 0x7c,0x90,0xb2,0xb8,0xa6,0x42,0x47,0x69,0x73,0x73,0x3c,0x57,0x27,0x7d,0xdf,0xb6,0x21,0xdc,0xae,0x9a, - 0xeb,0xa4,0x8a,0x32,0xbf,0xa2,0x72,0xef,0xd0,0xaf,0x27,0x37,0xa4,0xed,0x96,0x29,0x8d,0x5f,0x55,0xdd, - 0xe9,0x65,0xdd,0xed,0xe5,0x24,0xa9,0xd1,0x41,0xdb,0xd9,0x09,0x71,0x8c,0xca,0xc9,0x62,0x35,0x45,0xcc, - 0xe8,0xf2,0x47,0xc4,0x06,0xe0,0x00,0x09,0x9e,0xf2,0x7e,0xe1,0xed,0x1c,0x96,0x6f,0x51,0x43,0xbc,0x63, - 0xef,0xd4,0xb0,0x54,0x98,0xbe,0x23,0xa2,0xcd,0x6c,0xd6,0x12,0xb1,0xdb,0x98,0x96,0xad,0x78,0xcf,0x5c, - 0x86,0x97,0x21,0x5e,0x22,0x96,0x7b,0xe7,0x09,0xb6,0xdc,0x7a,0xdd,0xf8,0x4e,0xce,0xba,0x2a,0x53,0x49, - 0x0a,0xe5,0xc6,0xf0,0x94,0x80,0x66,0x9a,0x55,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0x1b,0x13,0x2d,0x17,0x3a, - 0x3f,0x14,0xb7,0xf6,0x43,0x63,0xa9,0xa2,0xe3,0xfc,0x67,0x69,0x46,0x75,0x83,0xd2,0x31,0xe2,0x82,0xb6, - 0xb4,0x42,0xe7,0x3e,0xae,0x7a,0x2a,0x66,0xc1,0x86,0x18,0x50,0x81,0x6c,0x45,0x84,0x46,0xa0,0x0e,0xbf, - 0xf3,0x48,0xc2,0xeb,0xee,0x74,0x24,0x74,0x84,0xd0,0xc2,0xc0,0x7e,0x07,0x08,0x9e,0x08,0x1b,0x6b,0xd6, - 0x38,0x6e,0xc3,0x5d,0x1e,0x8d,0xd9,0xbb,0xd9,0x79,0xbf,0x12,0x43,0x94,0x43,0xb2,0x1b,0x57,0xe3,0x8f, - 0x05,0x2d,0x04,0x08,0xe9,0xb8,0x4b,0xfc,0x9f,0xd9,0x16,0x35,0x3b,0x59,0x80,0xc3,0x06,0x47,0xb9,0xad, - 0xf2,0xa6,0x39,0x5f,0x20,0x6b,0xa4,0x45,0x06,0xee,0x08,0xca,0x45,0xc6,0x3f,0x99,0x13,0x6f,0xcf,0xae, - 0x99,0xbc,0x07,0xae,0x85,0x99,0xa3,0x97,0x6b,0x14,0x89,0x08,0xca,0x7d,0x92,0x3c,0x33,0xdc,0x81,0x7e, - 0x60,0x21,0xf2,0x28,0x85,0x5e,0x9c,0x46,0x0d,0x63,0xf0,0x1f,0x6a,0x3e,0x0e,0x08,0x1d,0xd6,0x34,0xbf, - 0x63,0x62,0xfd,0xca,0x05,0x12,0x6a,0x88,0x20,0xec,0x0b,0x18,0xf0,0x58,0xd7,0xc1,0x19,0xfc,0x84,0xd4, - 0x4d,0x0e,0x8c,0x92,0x42,0xe2,0x0e,0x26,0x5a,0x38,0xda,0x12,0x02,0x8c,0x10,0x41,0x29,0xb8,0x70,0x59, - 0x30,0x03,0x7f,0xac,0xcf,0x6f,0x22,0x9c,0xf2,0x93,0xd6,0xd9,0x8a,0xaf,0x58,0xf4,0x65,0x29,0xc6,0x89, - 0x50,0xfb,0x35,0x71,0xf9,0x2e,0x28,0x98,0xb3,0xe6,0x6a,0xd1,0x80,0x72,0xfc,0xd4,0x6c,0xe1,0xf3,0xbe, - 0xca,0x32,0xf4,0x70,0x2b,0x0d,0x8c,0x08,0xf6,0x1d,0x60,0xd4,0x30,0x88,0x74,0x8e,0x36,0x9d,0x25,0xae, - 0xa2,0xf1,0x3b,0xfa,0x13,0x7f,0xc2,0x9f,0xf0,0x28,0x0b,0xe5,0x93,0xa4,0x05,0x5d,0x43,0xa9,0xf7,0x2d, - 0xc3,0xf8,0xd3,0x02,0x70,0xef,0xf4,0xa8,0x06,0xf6,0xdf,0xc0,0x1d,0x5c,0xc4,0xab,0xac,0x59,0x85,0x3d, - 0x8c,0x7c,0x77,0x7a,0x1a,0xec,0x65,0x6a,0xf7,0x30,0x6a,0x9d,0x3f,0x57,0x96,0x54,0xd0,0xdd,0x3b,0xca, - 0xb4,0x11,0x0d,0xf1,0xaa,0xf8,0xa4,0xd9,0x0b,0x8b,0x71,0x70,0x0a,0x2f,0xe9,0x20,0x90,0x00,0x44,0xde, - 0x94,0x1c,0x65,0x9e,0x68,0xf6,0x56,0x06,0x5b,0xe2,0x9e,0x3a,0xfe,0x92,0x09,0x3a,0x0e,0x45,0xab,0xd1, - 0xa9,0x73,0x24,0xe0,0xe4,0xf7,0x99,0x56,0xa7,0xee,0xa1,0xe1,0xca,0x8a,0xf7,0xde,0x9b,0xd6,0x3c,0x93, - 0x33,0xdb,0x01,0x67,0x6f,0x25,0x06,0x75,0x30,0xb9,0x82,0x0d,0x57,0x5e,0xbf,0xa6,0xa1,0x24,0xde,0x5e, - 0xfc,0xe8,0xb1,0x29,0x50,0xc4,0x37,0x91,0xa3,0xeb,0x4b,0xf9,0x33,0x66,0x04,0x84,0xa7,0x28,0xf6,0xf8, - 0xaf,0x4a,0x24,0x68,0x9e,0xae,0x8f,0x50,0x27,0x24,0x90,0x23,0xd6,0xed,0xe5,0xe3,0xe3,0x13,0xa3,0xa5, - 0xce,0xb5,0x3f,0xf9,0x36,0x18,0x7d,0xca,0xc4,0xaf,0xec,0xb4,0x4c,0xae,0x32,0x6a,0xe3,0xb4,0xe0,0x90, - 0xeb,0xa7,0x90,0x8f,0xd1,0xcf,0x3c,0xb9,0xe4,0xd4,0x26,0x59,0xf0,0xef,0x6f,0xc9,0x35,0x7e,0xf2,0xe4, - 0x0c,0x3f,0x8b,0xe4,0x94,0x53,0x67,0xc9,0x39,0xff,0x7e,0x4c,0xae,0xf9,0xf7,0x2c,0x39,0xe3,0xdf,0xcb, - 0xe4,0x23,0x7e,0x68,0xbc,0x88,0xb8,0x71,0xba,0x4a,0x4a,0x4e,0x3e,0x4f,0x3e,0x7a,0x3d,0x78,0x27,0x93, - 0xe6,0x8b,0x09,0x89,0x41,0xd6,0x60,0x26,0x0e,0x19,0xec,0xa9,0xa4,0x23,0xa5,0x8a,0x86,0xb7,0x91,0x17, - 0x6b,0x11,0x56,0xe9,0x4c,0x3e,0xa9,0x13,0x1d,0x93,0x74,0xae,0xa3,0xc4,0xd4,0x89,0x6c,0xc3,0xcb,0xc2, - 0x04,0xfc,0xc4,0x49,0xc4,0x46,0x6c,0x44,0xf1,0xa4,0xfa,0x9d,0xb6,0xbe,0x64,0x33,0x1e,0xef,0x21,0x8e, - 0xab,0x8c,0x2d,0x11,0x36,0x6d,0xd3,0x50,0x4d,0x14,0xe5,0xe2,0x4a,0x97,0x0a,0x0d,0x88,0xb8,0x2b,0xf0, - 0xa9,0xdb,0x9d,0x8c,0x26,0xc6,0xb9,0xd0,0xec,0x9c,0x24,0x55,0xde,0x79,0x91,0xb8,0x26,0xc3,0x48,0x6d, - 0x9d,0x49,0xb0,0x0c,0x77,0x6f,0x18,0x02,0xa2,0x52,0x9c,0xd6,0x62,0x5f,0x37,0xd6,0x54,0xe7,0x56,0x38, - 0x14,0x23,0x2d,0x79,0xcd,0xd1,0xfb,0x35,0xe2,0x75,0x06,0x06,0x25,0x9b,0x3e,0x39,0x93,0x3d,0x57,0xa3, - 0xf2,0x24,0x22,0x09,0x8d,0xa9,0xdc,0xc4,0xb7,0xb7,0x61,0xe8,0xba,0x76,0x23,0x1e,0x2d,0xf3,0x30,0xbb, - 0xc5,0x6a,0x99,0x75,0xad,0x62,0xb9,0xec,0x59,0x9f,0x61,0x7e,0x35,0xc1,0x23,0xda,0x95,0x2c,0x34,0x56, - 0x75,0x73,0xea,0xa3,0x45,0x3d,0xa7,0x70,0x34,0x64,0x45,0x94,0x3e,0xf7,0x93,0xb9,0x91,0xce,0x51,0xf9, - 0x3e,0x2b,0x0f,0x3d,0x21,0x2b,0x66,0xe0,0x21,0x37,0xcb,0xa7,0xf8,0x70,0x45,0x70,0x63,0x95,0x97,0xa1, - 0x17,0x27,0xab,0x12,0xa7,0x66,0x9c,0x53,0x54,0x9a,0xf5,0x35,0x2c,0x7e,0xd4,0xcf,0xf0,0xd0,0x75,0x32, - 0x36,0x97,0xa6,0xa5,0x73,0x26,0x6e,0xed,0xd4,0x2b,0x63,0x92,0x46,0xba,0x4e,0xc4,0x29,0x22,0x64,0xa3, - 0x6b,0xd5,0x6f,0x9d,0x7a,0xbd,0x54,0x16,0x96,0x89,0xc4,0x8f,0xd7,0xa6,0x8e,0x8c,0xe6,0xc2,0x25,0x25, - 0x22,0x48,0x27,0x7c,0x33,0xf7,0xa1,0xd7,0x4c,0x7e,0x46,0xa4,0x55,0xe3,0x48,0xab,0xec,0x01,0x91,0x30, - 0x10,0x3d,0x00,0x73,0xdf,0xa1,0x42,0x93,0xec,0x07,0x3e,0x9a,0xc2,0x68,0xa3,0x56,0xc9,0x69,0x4b,0x29, - 0xe3,0xfa,0x9f,0x40,0xbc,0x5a,0x12,0xb0,0xaf,0xd7,0xf3,0x90,0x5d,0x76,0x3a,0x45,0xdb,0x93,0xc4,0x54, - 0x99,0x04,0x21,0x43,0xbf,0x42,0x8e,0x9d,0x32,0x4d,0xaa,0x70,0xa5,0x66,0xce,0x75,0x22,0xe4,0xd5,0xe8, - 0x73,0xd3,0x61,0x6f,0xc9,0x71,0xe6,0xcf,0xe9,0x60,0x20,0xa9,0x5c,0x45,0xdc,0x84,0x53,0x27,0x05,0x8d, - 0x7a,0xa3,0x39,0x7b,0x05,0xf8,0x43,0x18,0x60,0x75,0x92,0xb8,0x2e,0x85,0xba,0xcc,0x5a,0xfb,0xa3,0xa0, - 0x31,0xeb,0x0c,0xd8,0x05,0x70,0x31,0xb7,0x7c,0xed,0xd5,0xe3,0xa2,0xfa,0x1d,0xd3,0x04,0xc0,0x9a,0x12, - 0x57,0x30,0x4f,0xaf,0xc7,0xb6,0x20,0x4d,0x45,0x4c,0x3c,0xe9,0x7b,0x09,0x9c,0xe6,0x6b,0xe4,0x3a,0x03, - 0xcd,0x3c,0xe0,0x0b,0xfd,0xcf,0x65,0x26,0x95,0xae,0x79,0xbd,0xbe,0x7f,0x70,0xa0,0x3b,0xa6,0xa3,0xb1, - 0xc1,0xf1,0xfd,0xcf,0xb4,0x20,0x57,0x50,0x70,0x55,0xe6,0xcb,0x08,0x98,0x6c,0xf7,0x50,0xd9,0xf6,0xc6, - 0xad,0x11,0xc6,0xee,0xfb,0x8d,0x83,0x3d,0xa3,0x5d,0xd8,0xd0,0x4c,0xce,0x69,0xeb,0x38,0x11,0x74,0x17, - 0x6d,0x78,0xa6,0xa5,0x55,0xe8,0x30,0x52,0x4b,0x12,0x49,0xb8,0x5e,0x27,0xbc,0xcc,0x08,0xf3,0x4b,0x64, - 0xbe,0x46,0xe9,0xc6,0x10,0x00,0x4f,0xe3,0xfd,0x98,0xf0,0x7e,0x7a,0x4e,0x14,0x31,0x21,0x2a,0x6a,0xd9, - 0x20,0x8f,0x51,0x99,0x94,0x4c,0xc1,0x3f,0x01,0x06,0x51,0x1c,0x78,0x98,0x48,0xdb,0xb9,0x67,0xc1,0xe9, - 0x31,0x59,0x08,0x4c,0x8d,0x5c,0x50,0x88,0xfc,0xc0,0x67,0x0c,0x91,0x96,0xcc,0x7f,0x07,0x2c,0x8c,0xee, - 0x14,0xc8,0x20,0x0b,0xa3,0x12,0x79,0x01,0x37,0xe1,0x51,0x58,0xc8,0xb1,0xc4,0x22,0xe2,0xa5,0x21,0x16, - 0x23,0xd6,0x76,0xe8,0x2f,0xb8,0x2e,0x6d,0x69,0x52,0x0c,0xb5,0x73,0xa0,0x10,0x85,0x23,0xea,0x1f,0x11, - 0x7f,0xd1,0x18,0x7f,0x93,0x63,0xf3,0x05,0xa8,0xa9,0xb3,0x74,0xf2,0xd1,0x1e,0xe2,0x5c,0x28,0xe6,0x42, - 0xdd,0x32,0x1b,0x5a,0x55,0x43,0xf6,0x97,0x42,0x38,0xcf,0x1c,0x0e,0x68,0x45,0xe0,0xb2,0x05,0x9d,0x6d, - 0xd7,0x2e,0xa2,0xa3,0x1a,0x7c,0x42,0xb3,0x46,0x07,0x99,0x10,0xb7,0xf0,0x0a,0x77,0xc5,0x9a,0x10,0x66, - 0x38,0x4d,0x38,0x77,0xb4,0xd4,0x8a,0x09,0x5f,0x13,0xdc,0x93,0xc8,0xff,0x55,0x34,0xfa,0x96,0x4e,0x83, - 0xb9,0xa2,0x0d,0x05,0xf2,0x6c,0xbd,0xc6,0xeb,0x44,0x5e,0x0f,0x2d,0x1d,0x5b,0x6f,0x36,0x10,0x9c,0x6b, - 0x5c,0x68,0x3a,0x64,0x3a,0x9c,0xce,0xfb,0xa0,0xa7,0xad,0x49,0xc4,0x91,0xae,0x07,0xac,0xfb,0x9c,0xb6, - 0x7b,0x1a,0xb5,0x84,0xe6,0x13,0xc2,0x73,0xf3,0x93,0xe4,0x55,0x38,0xa7,0xce,0x30,0x29,0xa0,0xa9,0x38, - 0xa0,0x2b,0x1e,0x2b,0xc1,0xc6,0x43,0x1c,0x64,0xe6,0x55,0x21,0x87,0x6b,0x74,0x39,0xf2,0xca,0xd3,0xbb, - 0x62,0xf6,0xf5,0x1d,0x8e,0x2c,0x9a,0x72,0x36,0x41,0x21,0x54,0x98,0x0e,0x85,0xf0,0xf5,0x0c,0x0e,0x56, - 0x74,0x76,0xaa,0x95,0x33,0x1b,0xda,0xd2,0xf9,0xcd,0xfc,0x13,0x57,0xcd,0x3c,0x0b,0xfb,0x14,0x8e,0x9c, - 0xac,0xca,0x08,0xa9,0x14,0x36,0x01,0x41,0x8d,0x3c,0x30,0x7c,0x71,0x66,0x22,0x65,0x68,0xd7,0xce,0x60, - 0x0b,0x33,0x93,0x4d,0x20,0x9d,0x9c,0x82,0x90,0x62,0xa9,0x35,0x7e,0xe9,0x45,0x3c,0x1e,0x5e,0x17,0xca, - 0x9f,0xf6,0x14,0x01,0x8e,0x68,0xe3,0x69,0x10,0x58,0x52,0x39,0xe6,0x4d,0x4b,0xcc,0xeb,0x92,0x49,0x05, - 0x6e,0x68,0x19,0x6d,0x76,0x7d,0x4c,0x9f,0x19,0x2d,0x65,0x66,0x15,0x94,0x1d,0x03,0x85,0x0f,0x95,0x2f, - 0x36,0xd5,0x64,0xed,0x87,0x4a,0x24,0x9e,0xf2,0x15,0x34,0x03,0x79,0xf2,0x18,0xce,0x4f,0x23,0x9b,0x92, - 0x54,0x63,0x1f,0x6d,0x6c,0x4b,0xe3,0x2c,0x2c,0x64,0xf6,0x11,0x9e,0xb5,0xfa,0x91,0x80,0x2b,0x27,0xfa, - 0x84,0xd0,0x02,0x43,0x19,0x9a,0xbd,0xf0,0xe0,0x5e,0xe2,0xa7,0x4e,0xac,0xaa,0x44,0xdc,0x2f,0x82,0xcb, - 0x55,0xb6,0x6f,0x4f,0x85,0x7d,0xa2,0xf4,0x41,0x25,0xec,0x85,0x17,0xe3,0x80,0x5e,0x2e,0x98,0xdf,0x28, - 0x55,0xaf,0xdb,0x47,0xaa,0x6e,0x8e,0x08,0x6d,0x11,0x32,0xb2,0x56,0x4f,0xf1,0x4c,0x59,0xea,0x33,0x9e, - 0x32,0x92,0x9a,0x38,0xac,0x45,0x7c,0xfc,0x0a,0x3e,0xaf,0xce,0xd2,0x1a,0x71,0xf4,0x35,0xf6,0x22,0x12, - 0xca,0x28,0x2f,0xdb,0x3c,0x4c,0xca,0x46,0x70,0x29,0xcc,0x1a,0xc2,0x49,0x02,0xb8,0x4f,0x89,0xe0,0x97, - 0x3e,0x44,0xb4,0xa2,0x73,0xc9,0x78,0x51,0x79,0xf2,0xe7,0xbc,0x45,0x50,0x35,0xf4,0x35,0x08,0x8e,0xd4, - 0x58,0x3f,0x58,0xed,0x1b,0x50,0x71,0xab,0x40,0xce,0xfa,0x76,0x44,0x39,0x03,0xdf,0x46,0xdc,0xac,0x5f, - 0xb2,0xdd,0xaf,0xba,0xff,0xd8,0xc5,0xc5,0x01,0x80,0xdc,0x14,0x92,0x0f,0x82,0x0d,0x9f,0x90,0x25,0x94, - 0x2e,0x82,0xb2,0x58,0xae,0x17,0xb0,0xfe,0x53,0xb8,0x33,0x8a,0x8e,0xcc,0x17,0xd5,0x98,0x28,0x9b,0x70, - 0x9e,0xd4,0xd1,0xf8,0xf8,0x23,0x8d,0xec,0xa4,0x63,0x65,0x3b,0x77,0xf1,0xac,0x88,0x7c,0x70,0x11,0x68, - 0x30,0x7d,0x40,0x36,0x88,0x44,0x23,0x62,0x27,0xd8,0x42,0x97,0xbe,0x2d,0x74,0x46,0x73,0x54,0x1e,0xd7, - 0x27,0x51,0x9f,0x07,0x2c,0x91,0x35,0x44,0x15,0xce,0x8e,0x89,0x82,0xb2,0xd1,0x44,0x4e,0x3a,0x66,0xf9, - 0x93,0x68,0x6c,0x9c,0xbc,0xbe,0x39,0xa0,0x11,0xfe,0x1c,0x52,0x8d,0x79,0x38,0x51,0xb0,0x3b,0x61,0x8f, - 0x7c,0xe2,0x13,0x89,0x40,0xa3,0x91,0xd1,0xcc,0xfc,0x4c,0x38,0x11,0xbb,0x1c,0xe8,0xe7,0x63,0xb8,0x62, - 0xdd,0xda,0xde,0x84,0xf2,0x44,0x93,0x8d,0x9b,0xaf,0xf4,0xad,0x00,0xb4,0xf7,0x3d,0x85,0xe0,0x8c,0xd6, - 0x2c,0x8a,0x61,0xf4,0x38,0x46,0x15,0xe3,0x4e,0x05,0x88,0x64,0x25,0xe6,0x0c,0xf2,0x55,0xf8,0x11,0x38, - 0x2f,0xfe,0x99,0xfe,0x4a,0x9b,0xdd,0x0f,0xa4,0xb9,0x98,0x10,0x6e,0x69,0xc5,0x64,0xbc,0xd6,0x13,0x28, - 0x23,0x99,0xd8,0x98,0x80,0x4d,0x95,0xf5,0x67,0x50,0x62,0xae,0x95,0xb8,0xef,0x4b,0x80,0x72,0xb0,0x97, - 0xca,0xc0,0xe8,0xef,0x69,0x60,0x3a,0x8b,0x46,0x1d,0x6e,0xdb,0xd0,0xba,0x68,0xd1,0x4f,0x8c,0x65,0x7c, - 0x5e,0xb1,0xcd,0xc6,0x9f,0x54,0xab,0x6c,0x33,0xed,0x84,0x28,0x2c,0x88,0x4a,0x96,0x1f,0xba,0x09,0x87, - 0xa2,0x9e,0xac,0xe3,0x13,0x95,0x79,0xf6,0xea,0x30,0x0f,0xe1,0x6d,0xcf,0xb0,0x30,0xea,0xb3,0x0b,0xd5, - 0xe7,0xc8,0x74,0x34,0x4b,0xf2,0xe1,0x9d,0xcb,0x82,0x8e,0x53,0x04,0xc0,0x92,0xa7,0x61,0x51,0xb3,0x70, - 0xe8,0x9c,0x48,0xa8,0xf4,0x1c,0x31,0x62,0xeb,0x25,0x82,0x2b,0x10,0x96,0x59,0x41,0x54,0x96,0xd7,0x6f, - 0xb3,0x3a,0xab,0x88,0x04,0xa2,0x6c,0x4a,0x1d,0x6b,0x1c,0x42,0x59,0xec,0x1b,0xfc,0x66,0x9e,0x36,0x08, - 0x96,0xa1,0x3f,0xc6,0x77,0xd8,0x84,0x6d,0xac,0x91,0x33,0xf1,0x9a,0x3c,0x0d,0x73,0x4f,0x64,0x67,0x11, - 0x50,0x1d,0x80,0xd6,0x1c,0x13,0x4f,0x34,0xa5,0x6f,0x73,0x1c,0x32,0x51,0xac,0x9b,0x29,0x7b,0x6b,0x13, - 0xed,0xe5,0x2a,0xa1,0x4f,0x4a,0xf9,0xc4,0x93,0x8f,0x12,0x3c,0x84,0x33,0xcf,0x7f,0xa5,0x0a,0x73,0xcb, - 0xe2,0xe4,0x70,0x18,0x2b,0x89,0x6d,0x2a,0xab,0x2c,0x3f,0x2f,0x5e,0x1b,0x37,0x69,0x9a,0x18,0x82,0x0c, - 0xc6,0x02,0x06,0xd1,0xb1,0x28,0xb3,0xa1,0x2f,0x0c,0x2a,0xf3,0x4c,0xb4,0x39,0xce,0x95,0xcb,0xb1,0x5b, - 0xee,0xc1,0x84,0xb7,0x9d,0x66,0xe3,0x5c,0x01,0xda,0x82,0x44,0xf9,0xcc,0x35,0xf4,0x11,0x5b,0x36,0x1f, - 0xb2,0x01,0x43,0x21,0x28,0x8e,0x76,0x3f,0xf7,0x70,0xb3,0x11,0xe2,0x7c,0x45,0xc3,0x87,0x3d,0x94,0x87, - 0xd2,0x3c,0xa7,0x0d,0x3f,0x90,0x9d,0x95,0x1d,0xb0,0xb6,0xb6,0x5e,0x2d,0xb3,0xca,0x9c,0x3d,0x28,0xa7, - 0x53,0x98,0xf8,0x60,0x8b,0x54,0x7e,0x37,0x06,0x14,0x37,0xed,0xf7,0xc4,0xf8,0x9d,0x74,0x8d,0xb0,0x11, - 0xe1,0xcd,0x91,0x20,0x38,0xcd,0x84,0x03,0x35,0x1e,0x71,0x20,0x1a,0xeb,0x2c,0x9d,0x67,0x26,0xc5,0x1e, - 0x8d,0xa5,0x51,0xe2,0x97,0x27,0xbb,0x62,0x22,0x09,0x09,0x01,0xfb,0x5e,0x22,0x40,0x4d,0x03,0x19,0x77, - 0x8f,0x91,0xee,0x96,0x3c,0x4b,0x13,0xaf,0x84,0xe8,0x8a,0xa4,0x2b,0x44,0x1d,0x17,0x31,0xab,0xdc,0xb7, - 0xcc,0xe3,0xc4,0x37,0xc1,0xf6,0x45,0x34,0x2a,0x99,0xaf,0x51,0x09,0x1b,0x27,0xd9,0x05,0xc1,0xf9,0x4d, - 0x72,0x40,0x6b,0xd2,0x4e,0x7b,0x70,0x80,0x05,0xd2,0x81,0xbe,0x90,0xe0,0xfc,0xe5,0xdc,0x1e,0x2c,0x8c, - 0xc4,0x5e,0x61,0x8c,0x9e,0x33,0xff,0x86,0xbd,0xe6,0xe1,0x75,0xdc,0x9d,0x34,0x3a,0xb9,0x42,0x6f,0x01, - 0x93,0x17,0xd0,0x46,0xb7,0xcb,0x68,0x6b,0x2c,0x8e,0x64,0xe3,0x36,0xcb,0x71,0xc3,0xa9,0x27,0x09,0x42, - 0xac,0x6c,0x5b,0x14,0xbc,0xc9,0x6c,0x88,0x93,0x53,0xc4,0x0b,0x68,0xd9,0x5e,0x3e,0x6e,0xd9,0x47,0xb0, - 0x8b,0x22,0x4e,0xf3,0x0e,0xb9,0xc0,0xde,0x99,0xde,0x57,0x1f,0xb2,0x16,0x65,0xd2,0x5d,0x9d,0xb1,0xef, - 0x3a,0xff,0xcd,0xfe,0x61,0xbc,0xad,0xab,0x19,0xfb,0x4e,0xff,0x9d,0xd2,0x50,0xd5,0xa9,0xdd,0xd0,0xc6, - 0x51,0x90,0x40,0x62,0x27,0xc0,0xf8,0x26,0x8e,0x42,0x21,0x11,0xb0,0xd9,0x6d,0xb5,0xd1,0xe8,0xce,0x13, - 0x2b,0x3e,0xef,0x98,0x08,0xb0,0x9a,0x94,0xe1,0x14,0x0a,0x18,0x06,0xcf,0x53,0xc6,0x75,0x5d,0xb8,0x34, - 0x81,0x7a,0x61,0xf6,0xce,0x96,0x8e,0x9a,0x2f,0x78,0x0c,0x49,0xd9,0x96,0xbd,0xd1,0xa8,0x86,0x00,0x99, - 0x49,0x80,0x17,0xa0,0xc5,0x4a,0x66,0xf0,0x7c,0xd2,0xe6,0xc5,0x96,0xae,0x81,0x2d,0xf1,0x77,0x73,0xf6, - 0xd8,0x62,0x14,0x03,0x87,0x35,0xfc,0xe2,0x96,0x10,0xdb,0xc2,0x73,0x4d,0x26,0x0f,0xef,0x4c,0x69,0x88, - 0x55,0x09,0x97,0xad,0xcc,0xea,0xfd,0x57,0x7c,0xe7,0xa5,0xe7,0x05,0x90,0xf9,0x9e,0xdd,0x37,0x22,0x64, - 0x3e,0x82,0x9e,0x20,0x7e,0xc5,0x7b,0xde,0x25,0xa8,0xc2,0x7f,0xa3,0x03,0x98,0x4b,0xc1,0xb4,0x8c,0x9f, - 0x88,0xe0,0xd0,0x4f,0x08,0x8e,0x8c,0xdf,0x93,0x58,0x3f,0xf8,0x66,0xfd,0xed,0xe5,0xcf,0xc6,0xcd,0x38, - 0xdb,0x0b,0x10,0xf6,0x26,0xce,0x62,0x70,0x86,0x9e,0xcd,0xf7,0x4b,0x1f,0xc0,0xb6,0x00,0xa5,0xef,0x70, - 0xa4,0xc9,0x42,0xe8,0x40,0xda,0x9d,0xaa,0x74,0x2a,0xbb,0xfc,0x41,0xc9,0x3b,0x94,0x08,0xdd,0x04,0x75, - 0x62,0xe3,0x81,0xf4,0xe2,0x8b,0xdd,0x20,0x20,0xc0,0xff,0xbd,0x84,0x7a,0x11,0x29,0xfa,0x2d,0xbc,0x5d, - 0xc9,0x4a,0x9a,0x6e,0x6b,0x82,0x2e,0x83,0x60,0xd4,0x12,0xcf,0x65,0x3a,0x26,0x40,0xd8,0xe8,0xd0,0xbb, - 0xa8,0xae,0xf1,0xab,0xe3,0x0d,0xdc,0x0b,0xd0,0x6d,0x53,0x77,0x7f,0xd8,0x29,0xb7,0x1e,0xd4,0x97,0xe7, - 0x41,0x1c,0x2c,0xd2,0xe6,0x82,0x0d,0x8d,0xc6,0xf2,0xb8,0xa5,0x2d,0x7a,0x94,0x99,0xe8,0x3e,0xdb,0x1a, - 0x4e,0x53,0xa3,0x8d,0xba,0xf7,0xdb,0x2a,0xab,0xae,0xdf,0x65,0xd0,0x43,0x97,0x72,0x0f,0xcd,0x6d,0xb1, - 0x34,0xa7,0xf9,0x65,0xd0,0xa7,0x4a,0xf9,0xb1,0xb3,0x57,0xd8,0xe6,0xb2,0xca,0x66,0x1d,0x1f,0x21,0xe3, - 0x79,0x9d,0xfb,0x6e,0xdc,0x06,0x4c,0x81,0x21,0xe0,0xa0,0x5d,0xc2,0x72,0x9e,0xbe,0xad,0x47,0x5d,0xb5, - 0x4a,0xc9,0xd6,0x50,0x2b,0xfe,0xc5,0xe1,0x8f,0x5f,0x1c,0xb2,0x38,0x60,0xf1,0xa8,0x09,0xf9,0xd8,0xb5, - 0xff,0xbc,0x78,0x5a,0x56,0xbd,0xb5,0xe0,0xaf,0x45,0x19,0x39,0xe1,0xe3,0xc1,0x80,0x93,0x18,0x23,0x9b, - 0xba,0x09,0x3e,0xe4,0x21,0xf7,0x00,0xf7,0x27,0x11,0x62,0xbb,0x18,0x5b,0xa0,0xf1,0x70,0xd4,0xd3,0x2f, - 0x0b,0x99,0x64,0x3f,0xea,0xa3,0xdf,0xf7,0x0f,0x67,0x9d,0x9f,0x33,0x1e,0x6b,0xb4,0x71,0x2a,0x47,0x62, - 0x21,0x8a,0x80,0x9f,0xbb,0xf2,0x15,0x2c,0xa1,0xc8,0x48,0xf8,0xa4,0x05,0x0a,0x6d,0x05,0x8b,0xa8,0xe0, - 0x8d,0x18,0x56,0x7a,0xce,0x45,0x18,0x9a,0x38,0x86,0xbc,0x62,0x5d,0x1d,0x74,0xb5,0xec,0x57,0xf6,0x99, - 0x32,0x56,0x94,0x08,0xeb,0xba,0xf5,0x7a,0x9e,0xb3,0x43,0x23,0xfd,0x10,0x37,0xc8,0x03,0x06,0x5d,0x81, - 0xd1,0x3c,0x84,0x54,0xe9,0x0d,0x42,0x65,0x5d,0x94,0x73,0xe2,0xd4,0xb9,0x86,0x96,0xec,0x09,0xe3,0xf4, - 0x13,0x40,0x19,0xb7,0x53,0xb4,0x4c,0xce,0xb7,0xdf,0xcf,0x44,0x40,0x61,0xb5,0xcb,0xe2,0x24,0x87,0x8d, - 0x95,0x13,0x09,0x91,0x3f,0x48,0xaa,0xd1,0xde,0x5e,0x4e,0x5b,0x17,0x16,0x8c,0xf9,0x89,0x26,0xb4,0xc3, - 0x14,0x87,0xbd,0xf3,0xb4,0xf4,0x3c,0x4f,0x9e,0x69,0x98,0xd4,0x31,0xf2,0x3c,0x87,0xaf,0xf5,0xba,0xe9, - 0x26,0xb5,0xe7,0xdd,0x40,0xb2,0x70,0xc3,0x09,0x62,0x74,0x4c,0xe1,0xb5,0xd7,0xc8,0x43,0x9d,0xfc,0x9e, - 0x6d,0xd7,0xea,0x22,0x0b,0x80,0x03,0xa3,0x12,0x5b,0x8d,0xe0,0x62,0x64,0x53,0x62,0x4e,0x64,0x07,0x91, - 0xc2,0x9a,0xc9,0x2a,0x44,0xc2,0x52,0x25,0xb5,0x70,0xf3,0x13,0xfc,0x54,0x63,0x9a,0x35,0x9a,0xe2,0x1f, - 0x21,0xf8,0x4a,0x8c,0x23,0xee,0xf7,0x60,0x74,0xb5,0x0e,0x34,0x50,0xb8,0xf3,0x40,0xe5,0x30,0x9a,0xc0, - 0x49,0x40,0x3f,0x6e,0x5f,0x89,0x2c,0x7a,0x3a,0x18,0xac,0x0c,0x50,0x13,0xef,0x22,0x5f,0xc3,0x67,0xad, - 0xef,0xdb,0xbc,0x20,0x9a,0x9c,0xbf,0x99,0xdb,0x6f,0xb0,0x85,0xe7,0xad,0xa8,0x36,0xb3,0x3e,0xd9,0xb8, - 0x18,0xe7,0xcd,0x7d,0x93,0x3c,0x6a,0x6b,0x8e,0x71,0x04,0xa6,0x5a,0x69,0x72,0x33,0x2a,0xc7,0xdf,0xc1, - 0x5f,0x4a,0x92,0x03,0xc8,0xa0,0x67,0x21,0x3b,0x05,0xac,0x6c,0xe4,0x0f,0x2e,0x80,0x38,0x82,0x3a,0x7c, - 0xe0,0xad,0x2d,0xae,0x3a,0x2d,0xae,0xb8,0xc5,0xee,0x24,0xe8,0x96,0x99,0x0d,0xb7,0xf3,0x5d,0x47,0x13, - 0xf6,0x3a,0xa3,0xaf,0x78,0xda,0x83,0x55,0x21,0x13,0x93,0xd1,0x3f,0x08,0x62,0xdb,0x06,0xbb,0xbf,0xb7, - 0x70,0x5c,0x5f,0xd4,0x9d,0x8e,0x39,0xae,0xde,0x9e,0x23,0x31,0xfb,0xd8,0x52,0x99,0x86,0x39,0x9b,0xe2, - 0x46,0x43,0x1d,0x17,0x9c,0x75,0xe2,0xb9,0x7b,0x4b,0x2e,0xf3,0x48,0x15,0xc7,0x04,0xef,0x04,0x83,0xc3, - 0x2a,0xbd,0x7a,0xc5,0x64,0x54,0xc9,0xe4,0xd4,0x5e,0x30,0x0c,0xf6,0x7c,0x7b,0x90,0xd2,0xaf,0x06,0xb2, - 0x02,0x09,0xbb,0x3a,0x0c,0xa2,0x88,0xf6,0x87,0x2c,0x33,0x71,0x4a,0x8d,0xc7,0x29,0x39,0xc0,0xa4,0x83, - 0x92,0x6b,0x8d,0x74,0xdc,0xfa,0x6d,0x13,0xd8,0xef,0xb3,0x6d,0xe9,0x73,0x26,0xa0,0xc3,0x3f,0xda,0x6e, - 0xb2,0x64,0xc3,0xc8,0x32,0x2c,0x24,0xd4,0x86,0x2e,0xaf,0x8d,0x23,0x2b,0x18,0x47,0x56,0x72,0x61,0x02, - 0x1f,0x03,0xae,0x07,0x7c,0x0d,0x8a,0x8c,0x0b,0x14,0x80,0x33,0x9e,0xf4,0x5c,0x21,0xb2,0xd0,0xa3,0x80, - 0xb6,0x0d,0xb7,0x79,0xf6,0xc3,0x86,0xb1,0x96,0xb8,0x4e,0xb5,0x89,0xd0,0xbc,0xb8,0xc8,0xaa,0x9c,0xe3, - 0x6d,0xd3,0x0c,0x65,0xa1,0x20,0x43,0x8b,0x04,0x33,0xe3,0x29,0x20,0x09,0x9a,0x39,0x60,0x3e,0x89,0x1a, - 0xc3,0x68,0x26,0x89,0xff,0x09,0x0b,0xc7,0xe7,0x49,0xd5,0x49,0x62,0x7e,0x4c,0x8b,0x86,0x10,0x0e,0xa1, - 0x55,0x20,0x61,0x2d,0xf4,0x5c,0xbb,0x4b,0x30,0xb5,0x38,0x8f,0xd2,0x64,0x0e,0x0a,0x7f,0x22,0xcc,0x4c, - 0x4a,0xa0,0x0f,0x49,0x29,0xf8,0xb6,0x51,0xf8,0xaa,0x58,0xaf,0xdf,0xc2,0xa0,0x43,0x4b,0xbf,0x21,0xae, - 0x90,0x27,0x5d,0xcc,0x08,0xd8,0x75,0xbe,0x57,0xf1,0x24,0xc2,0xee,0x2b,0xd9,0x16,0xbf,0x01,0x12,0x1f, - 0x23,0xb8,0x1d,0x02,0xd3,0xda,0x88,0xe3,0xaf,0xde,0x85,0x59,0xae,0x0a,0x64,0x46,0xf1,0x2f,0xf4,0x5d, - 0x84,0x40,0x9b,0x9d,0x42,0xc8,0xf4,0x56,0xe1,0x3b,0xdf,0x40,0xe0,0x5f,0x15,0x3b,0xdd,0xe5,0x1c,0x20, - 0x7b,0xeb,0x43,0x16,0x95,0x24,0x01,0x51,0xda,0xe5,0xd5,0x8c,0xf6,0x47,0x4d,0x7b,0x25,0x2b,0x02,0x09, - 0x3b,0x16,0x3c,0x79,0xf9,0xe8,0xc9,0x63,0x6d,0x2b,0x2d,0x3c,0xfe,0x38,0x68,0x2a,0x1a,0x4b,0x0c,0x25, - 0x7f,0x2b,0x30,0x3a,0x7b,0xbd,0x59,0x7b,0xa8,0x5f,0x2a,0x1d,0x42,0xa0,0x5d,0x84,0x7b,0x41,0x54,0xe3, - 0x2c,0xa5,0x72,0xa8,0xb7,0x18,0xeb,0xe7,0x58,0xea,0x75,0x35,0x34,0xf9,0x67,0xba,0x6d,0x27,0xa5,0xc1, - 0xfd,0x1d,0xad,0x56,0x24,0xab,0xb1,0xe6,0x0b,0x54,0x15,0x57,0x12,0xf5,0x8d,0x5d,0xec,0x67,0xa8,0xc8, - 0x2b,0xf8,0xb7,0xbd,0x84,0xd7,0xc4,0xfb,0x27,0x3f,0xbf,0x7f,0xf8,0xf6,0xc9,0xc3,0xd6,0xa8,0x29,0x7d, - 0xe9,0xce,0x52,0x3d,0x3b,0x1c,0x53,0x33,0xcf,0x96,0x17,0x86,0x74,0xf2,0x6d,0x01,0x1b,0x22,0xbe,0xcb, - 0xe5,0x73,0x22,0x22,0xa6,0x39,0xe1,0x1e,0x58,0xd6,0xa4,0xe7,0xa9,0x20,0x47,0x65,0xba,0xd2,0xb9,0xe3, - 0x45,0x28,0x08,0x58,0x8a,0x8c,0xb2,0x9e,0x2b,0x60,0x6c,0xb6,0x32,0x0d,0x27,0xbb,0x07,0x9b,0x9e,0x65, - 0xf0,0x20,0xe1,0xdb,0xce,0x7e,0x34,0xa4,0x1b,0x07,0xdf,0x49,0xf5,0x5e,0x91,0x4d,0x99,0x41,0xfe,0xed, - 0x31,0x0c,0xd8,0x6d,0xa5,0xe6,0x15,0x58,0x6e,0x01,0xb9,0x2c,0x98,0xa3,0x6e,0xa1,0x54,0x17,0x8a,0xac, - 0x6e,0xa5,0x97,0xd6,0x37,0x77,0xa2,0xc1,0x8f,0x82,0x90,0xea,0x88,0xc5,0x2b,0x5d,0xf2,0x32,0x1a,0x01, - 0xe3,0xf6,0xb1,0x47,0xc2,0xc5,0xf1,0x25,0x97,0x53,0xf6,0xc6,0x25,0xb0,0x7d,0x9a,0x69,0x82,0x8c,0x61, - 0x8f,0x2d,0xe9,0x85,0x68,0xb2,0x66,0xf4,0x1c,0x2c,0xc3,0x2f,0x5f,0x28,0x4d,0xce,0x39,0x95,0x5c,0xd2, - 0x62,0x94,0x78,0x56,0x84,0x2f,0x6a,0x78,0xb3,0x41,0x4a,0x38,0x7e,0x05,0x61,0xd3,0x4b,0xd6,0x1f,0x11, - 0xf1,0x3f,0xd2,0x58,0x87,0x2d,0x93,0x21,0x0c,0x3a,0xe5,0xb8,0xb1,0x39,0xc6,0xcc,0x95,0x64,0x44,0x16, - 0xb3,0x84,0x32,0xac,0x93,0x57,0x40,0x01,0x2f,0x33,0x96,0x20,0x2a,0xb8,0x66,0xe5,0x30,0xc0,0xcc,0x2e, - 0xb9,0x60,0xcf,0x1d,0x04,0x62,0xf5,0xa5,0x6a,0x9c,0xfa,0xae,0x60,0x52,0xfb,0xcb,0xfa,0x73,0xb6,0xe5, - 0x24,0x17,0xb2,0x5d,0x96,0xe7,0xb0,0x91,0x69,0xb3,0xf0,0x0b,0xc2,0xed,0x72,0xc9,0x03,0xb5,0x7f,0x91, - 0xe4,0x7b,0x87,0x1b,0x8f,0x6c,0x62,0xd4,0xb9,0x7b,0x28,0xaa,0xd0,0x39,0xfe,0xac,0xd8,0x42,0x9c,0x58, - 0xb2,0x29,0xfd,0x5f,0xd2,0x7f,0xe3,0x90,0xd9,0x23,0x44,0xc1,0xe6,0x62,0x93,0xdc,0xcc,0x8f,0x8b,0x45, - 0x27,0x62,0x1d,0x7d,0xf1,0xb5,0xd8,0x76,0x7f,0x7d,0x9f,0x86,0x2c,0xf2,0xd1,0xdd,0x43,0xb7,0x27,0x27, - 0xd1,0x17,0x5f,0x76,0x0a,0x4c,0x5a,0x05,0xe6,0xd1,0xd7,0x7f,0xef,0x14,0x98,0xb7,0x0a,0xac,0xa2,0x2f, - 0xff,0xd1,0x29,0xb0,0x6a,0x15,0x38,0xbc,0xff,0x25,0x38,0xc6,0xf5,0x9a,0x1e,0x78,0x33,0xfb,0x5d,0xdc, - 0x3b,0x8c,0xfa,0x33,0xf6,0x91,0x31,0x23,0xe6,0x6a,0xbd,0x5e,0x46,0x37,0xf5,0x55,0xae,0x3d,0x06,0x26, - 0x29,0xd5,0xfa,0xc5,0x97,0x31,0x0c,0x0f,0xc4,0x68,0x76,0x24,0x49,0x5f,0xc7,0x75,0x27,0xe9,0xeb,0xbf, - 0xc7,0xf3,0x4e,0xd2,0x97,0x07,0xf1,0x72,0x6f,0xaf,0x95,0x72,0x18,0x2f,0xf7,0xf7,0x5b,0x9f,0x1d,0xc6, - 0xd3,0x76,0x99,0xaf,0xbf,0x88,0xa7,0xed,0x32,0x87,0xf7,0xbf,0x88,0x67,0xed,0x42,0x87,0xf7,0xbf,0x8a, - 0x67,0xfb,0xfb,0xa0,0xcc,0x64,0x42,0xdc,0x9e,0xbb,0x4c,0x68,0x38,0x6a,0xa1,0x59,0xae,0xd1,0x25,0x87, - 0x97,0x14,0xe7,0x97,0x70,0x91,0xd8,0x7b,0x1e,0x2e,0x21,0x56,0xd9,0xdf,0x8f,0x46,0x8b,0xc1,0xe0,0x4c, - 0xc7,0xf0,0x5d,0x44,0xac,0x21,0x80,0xa1,0xbf,0x08,0x5c,0xad,0xfd,0x48,0x39,0x0e,0x19,0x8a,0x98,0x65, - 0x37,0x97,0x46,0x3b,0x10,0x8b,0x1b,0x51,0xb1,0x78,0xe5,0x7b,0x0b,0xc6,0x70,0x93,0xbf,0x00,0x97,0x83, - 0x4b,0x40,0x1c,0x7c,0xa5,0x3e,0x7c,0x95,0x49,0x0f,0xbd,0x9f,0x38,0xc9,0x5d,0x10,0x06,0x22,0xe0,0x7c, - 0x60,0xee,0x25,0xb9,0x7b,0x4a,0xa9,0x77,0x89,0x38,0xb9,0x1b,0x44,0xe1,0x5d,0x8e,0x42,0x1f,0x8c,0xda, - 0x59,0xb6,0x2f,0x45,0xe4,0x4a,0xa9,0xc0,0x66,0x14,0x04,0x1b,0x1b,0xc8,0x96,0x7d,0x89,0x5f,0xe9,0x39, - 0xde,0xf1,0xe6,0x6b,0x3b,0x39,0x07,0xc7,0x3f,0xae,0x10,0x61,0x8d,0x4d,0xa2,0xaa,0x13,0x04,0x06,0xf6, - 0x65,0x6f,0xbf,0x74,0xc5,0x28,0x88,0x9e,0xbf,0x6c,0x9b,0x9e,0xb8,0x30,0x40,0x9b,0x6d,0xeb,0x72,0xaf, - 0xc0,0x26,0x8a,0x8f,0x3d,0x6b,0xa2,0x7f,0xd9,0xb3,0x3e,0xcc,0xac,0x76,0xde,0x04,0x08,0x71,0xd8,0xe0, - 0x86,0xef,0xf0,0x68,0x94,0x8e,0x35,0xc7,0x37,0xb0,0xf1,0xd5,0xa5,0x89,0xef,0x4b,0x94,0x35,0x5e,0x65, - 0x5d,0x0b,0xd0,0xbf,0x5a,0x59,0xd3,0x38,0x2b,0x41,0xae,0xe1,0x65,0xba,0x94,0x38,0x44,0xfa,0x1d,0x47, - 0xdb,0x2d,0x15,0x7a,0x1e,0x78,0x8d,0xa3,0x69,0xa1,0x09,0x05,0x7e,0x67,0xbd,0xb6,0xf1,0x50,0x75,0x71, - 0x86,0x2a,0xeb,0x16,0xdb,0x24,0xc1,0x2e,0x5c,0x76,0x08,0xd9,0xc3,0xa4,0xd2,0x2f,0xc2,0x0e,0xb4,0x94, - 0xff,0xff,0x74,0xbe,0xf6,0x9f,0xf5,0x8b,0x18,0x97,0x5a,0x2a,0x35,0xe0,0x52,0x84,0x93,0xe1,0x1b,0x2e, - 0xc7,0x3e,0x0c,0x4b,0xf2,0xf3,0x8b,0x66,0x1c,0x52,0xbe,0x26,0x92,0x17,0x59,0xb1,0x0a,0x94,0xad,0x80, - 0xf3,0xa3,0xb8,0x1a,0x2e,0xf2,0xe9,0x74,0xce,0x42,0xdc,0x24,0x58,0x94,0xab,0x3a,0x5b,0x2d,0x03,0x63, - 0xf0,0x3b,0xaa,0xb4,0x9a,0x7a,0xec,0x5a,0x96,0x04,0xb6,0x5f,0x97,0x47,0x26,0x01,0x64,0x11,0xfc,0x04, - 0x56,0x8b,0xc7,0x28,0x96,0xb9,0x02,0x99,0xcd,0xd2,0x96,0x7b,0x26,0xb0,0xe0,0x66,0x84,0x8b,0x5a,0x2f, - 0x21,0x3b,0xab,0x3d,0xce,0x45,0x5f,0xeb,0x3e,0x49,0x70,0x29,0xcf,0x68,0x4b,0xf7,0x97,0x8f,0x27,0xf6, - 0x66,0xf1,0xda,0xba,0xe9,0xd5,0x72,0x91,0x4f,0x32,0xa1,0xfc,0xe3,0x5a,0x4d,0x4e,0xe2,0xe3,0x89,0xaa, - 0x4f,0xe2,0xba,0x17,0x04,0x2a,0x0b,0x02,0x42,0x21,0x41,0x24,0x8d,0x5b,0xc1,0xf6,0x10,0xb8,0x5d,0x5e, - 0x2e,0xf7,0x39,0x36,0x0b,0x92,0x78,0x27,0x73,0x0c,0x5e,0x13,0x46,0x13,0x07,0x9d,0xa8,0x30,0xc4,0x0b, - 0xc6,0x10,0x32,0xfc,0xa9,0xff,0x41,0x6e,0x3e,0xe8,0x84,0xba,0xcd,0xfd,0x53,0x33,0x6f,0xf7,0xc6,0x7d, - 0xcd,0x92,0x19,0x0f,0x44,0xfd,0x48,0x38,0x1e,0xac,0x6a,0xab,0xfd,0xbc,0x6b,0xb5,0x0f,0xdd,0x12,0x9c, - 0x22,0xf8,0x4a,0x15,0x04,0x0a,0xbd,0xc9,0x4d,0xec,0xac,0x12,0xb1,0xb3,0xc4,0xc5,0xc2,0xb0,0x6b,0xd6, - 0x8f,0xb1,0xd5,0xa4,0x6f,0xc5,0x5f,0x76,0x66,0x4d,0xac,0xf4,0xf3,0x24,0xb8,0x73,0xe7,0x92,0x90,0x19, - 0x23,0x50,0x10,0x0e,0x49,0x10,0x6a,0x71,0x21,0x65,0xec,0x50,0xcb,0x3b,0x77,0x65,0xe4,0x77,0xc7,0x48, - 0x31,0x88,0x16,0xcf,0x11,0x64,0xa5,0x43,0x71,0x76,0x90,0x4f,0x4f,0x89,0xef,0xdc,0xcb,0x81,0x1e,0x35, - 0x3f,0x99,0x20,0xca,0x13,0xc2,0x61,0x69,0xe3,0x1f,0x03,0x3e,0x84,0x63,0xc1,0xeb,0x45,0xc4,0x71,0x7f, - 0x5a,0xe2,0xba,0x41,0xea,0x62,0x7c,0x57,0xe3,0xd8,0xbb,0xca,0x98,0xe6,0xb8,0xd0,0x26,0x3b,0x21,0x1a, - 0xdc,0xb9,0x09,0xf6,0xca,0xbd,0x60,0x13,0x78,0x0b,0x90,0x36,0x3e,0x1a,0xf7,0x91,0x1b,0x4d,0xe1,0x8f, - 0x95,0x0b,0x60,0xe8,0x5d,0x66,0x75,0x1c,0x44,0x0f,0x0e,0x20,0x75,0xc4,0xed,0x5c,0xcf,0x4d,0xea,0x09, - 0xa5,0xfe,0x58,0xd9,0x28,0xbd,0xe1,0x33,0xfe,0xd8,0x2f,0x01,0x9e,0xfa,0x9b,0xfd,0xc3,0xf1,0x0d,0xf5, - 0x3a,0x76,0xe7,0xcf,0x33,0xa2,0xd8,0x88,0x15,0xe7,0x01,0x98,0xd4,0x67,0x15,0x61,0x7c,0x0c,0x66,0x13, - 0x4b,0x69,0x2e,0xc1,0x71,0x9a,0x98,0xf0,0xf9,0x09,0x24,0x2b,0xb5,0xf0,0x7b,0x95,0x7c,0x0f,0x11,0xc1, - 0xee,0x04,0x67,0x5c,0x34,0x6f,0xc2,0x1f,0xaa,0xa4,0x86,0x4a,0x7b,0xbc,0xc2,0x73,0x14,0x7f,0x0d,0x96, - 0xf6,0x87,0xca,0x17,0x53,0x19,0xf9,0xb3,0x78,0x48,0x52,0x15,0xcf,0x2a,0x53,0x01,0x07,0x96,0xc5,0xf7, - 0x6a,0x0e,0x55,0x4d,0xb4,0xe2,0x38,0xcb,0x86,0x7c,0xe1,0xba,0x08,0x77,0x20,0x78,0xe1,0xd7,0x5f,0xe8, - 0xe7,0xfd,0x7d,0x36,0xb5,0xa3,0x39,0xfc,0x9e,0x6b,0x12,0xd0,0xda,0xa0,0x71,0x13,0xf3,0xbc,0x3d,0xde, - 0xdf,0xf5,0x78,0x4d,0xca,0xef,0x34,0x56,0xf5,0x7d,0x05,0x75,0xa3,0xd3,0x24,0x6b,0xf7,0x4e,0xf6,0x8d, - 0x18,0xcb,0x8d,0x36,0x4d,0x1c,0xdc,0x21,0xba,0x34,0xc4,0x1d,0x8a,0x54,0xa3,0xbe,0xb3,0x0b,0x05,0xe4, - 0x91,0x21,0xc2,0x73,0x42,0x6d,0x9c,0xfd,0xf0,0x4f,0x95,0x4f,0x50,0xed,0xed,0x3d,0xf3,0x4d,0xdf,0x27, - 0x5e,0xc1,0x67,0xd5,0x37,0xc9,0x8f,0x1e,0xdc,0xcf,0xfd,0xa8,0xe1,0x4c,0x1e,0x66,0xeb,0x35,0xd3,0x91, - 0x9e,0x10,0x9b,0x27,0xc9,0x77,0x36,0x94,0xd9,0x64,0x07,0x5a,0x5e,0x0b,0xf8,0x65,0x8c,0xa2,0x91,0xe7, - 0x98,0xd7,0xf8,0x52,0x91,0x06,0x91,0x2a,0x9a,0x68,0x78,0x8a,0xeb,0x22,0xdf,0xa7,0x35,0x0c,0x7b,0x4a, - 0xf7,0xe6,0x4b,0xcd,0x2e,0x9c,0x87,0x67,0x52,0xde,0x12,0x4f,0x42,0xf7,0xf6,0x82,0xfd,0x2a,0xe9,0x6c, - 0xe6,0xbb,0x18,0x9b,0x16,0xd9,0xe2,0x36,0xf2,0x6f,0x55,0x37,0x1c,0xed,0x4e,0x1e,0xba,0xeb,0x01,0xfb, - 0x9b,0x20,0x7c,0xc1,0x1b,0x53,0x7c,0xd8,0x36,0x08,0x61,0x8c,0xb8,0x04,0xea,0xb7,0x6a,0x9b,0x47,0x44, - 0x6b,0x3f,0x14,0xe3,0x1b,0x7d,0x0e,0xc2,0x52,0x47,0xce,0x32,0x84,0x95,0xd3,0xf8,0xde,0xa3,0x64,0xa6, - 0x8d,0xd3,0x59,0x85,0x74,0xaa,0xfe,0x56,0x45,0xbd,0x9c,0x29,0x22,0x5a,0x79,0xf3,0xd5,0x76,0x06,0x58, - 0x36,0xa1,0x89,0x4a,0xb5,0x6b,0x05,0x36,0x25,0xd8,0xfc,0x5d,0x2b,0xae,0xc1,0x2d,0x00,0x96,0x07,0xd5, - 0x29,0x8c,0xd4,0xca,0xa4,0xf0,0xdf,0x47,0xbf,0x55,0x9a,0x49,0xed,0x20,0x07,0xea,0xe8,0xf1,0x29,0xf4, - 0x40,0x1a,0x77,0xbc,0x2a,0xc6,0x81,0xbe,0xfe,0x3a,0x36,0xd6,0x89,0x1c,0x24,0xda,0xf9,0x02,0xf0,0x07, - 0x1c,0xee,0x99,0xfd,0xcc,0xdd,0xd5,0xe3,0x94,0xbc,0x41,0xf6,0x55,0x2e,0x31,0x10,0x86,0x52,0x51,0xeb, - 0xd3,0x2b,0x7c,0xaa,0x33,0x3a,0x9f,0xe3,0xb3,0x0d,0x78,0x9c,0xdf,0x58,0x45,0x3f,0x6b,0xd4,0x14,0x01, - 0x63,0xad,0xcc,0xf8,0x37,0x1b,0x12,0xc0,0x73,0x38,0xec,0x9b,0x23,0xe3,0x70,0xd3,0x9a,0x29,0x9b,0xe8, - 0x8b,0xd8,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0xba,0xe5,0xa7,0xde,0x26,0xe0,0xb2,0x3e,0x3e,0x2d,0x19, - 0x57,0x2e,0x72,0x56,0x88,0xa2,0x72,0x1d,0xb1,0x2e,0x3f,0x49,0x82,0xc0,0xcb,0x9d,0xeb,0x5b,0x06,0x51, - 0x42,0xf1,0x5d,0xd1,0xe6,0xee,0x66,0xed,0x9e,0x94,0x17,0x04,0x28,0xcf,0xde,0xbf,0x7c,0xc1,0x09,0x5c, - 0xba,0xea,0x0f,0x81,0xeb,0x99,0x40,0x95,0x54,0xb6,0x46,0x9b,0x98,0xbc,0xbc,0x58,0x65,0x23,0xe0,0xbc, - 0x54,0x8a,0xbe,0x82,0x93,0x96,0x15,0x35,0xa7,0x1a,0x30,0x8f,0x90,0x15,0xfa,0x45,0x60,0x7e,0xc4,0xd7, - 0x1a,0x8b,0x94,0x4d,0x9a,0x4f,0x87,0xa7,0xfc,0x9a,0x94,0xda,0x8a,0x11,0x22,0x32,0x44,0xc7,0xb7,0x37, - 0x66,0x8d,0xa6,0xc9,0x4a,0xed,0x86,0xb3,0x24,0x8d,0x44,0xda,0x50,0x53,0x3a,0xac,0xb3,0x5f,0xbf,0x79, - 0xff,0xfc,0xf5,0x2b,0xd4,0x33,0x33,0xe2,0x1f,0x62,0x08,0x7b,0xd8,0x10,0xc2,0x0d,0xec,0x60,0xee,0x2e, - 0xc6,0x12,0x47,0x69,0xad,0x87,0xe3,0x6b,0x0e,0x6c,0x9c,0x21,0xef,0xf8,0xcf,0xac,0x98,0xb0,0xd9,0x84, - 0x33,0x35,0x8d,0x5a,0xd5,0x7b,0x8a,0x38,0x51,0x25,0x88,0x0a,0xfb,0xa5,0x21,0xdb,0xc4,0x7c,0x2d,0x8f, - 0xb4,0x49,0xcb,0x3c,0xfd,0xfd,0xda,0x05,0xf3,0x16,0x2b,0x17,0x3e,0xe5,0x0d,0x41,0x34,0x11,0x57,0xb5, - 0x89,0x0e,0xfa,0x96,0x33,0x55,0xe0,0x6c,0xef,0x85,0x46,0x60,0x0f,0x63,0x79,0x34,0x1d,0x05,0xc9,0x58, - 0x48,0xff,0x18,0x24,0xa4,0x37,0xc9,0x4a,0xdb,0xdf,0x30,0x88,0x94,0x72,0x0b,0x20,0x95,0xf1,0xfc,0x3a, - 0x1b,0x77,0xe6,0x2d,0x1a,0x56,0x49,0x5f,0xcf,0x3d,0xa3,0x25,0x2d,0x6b,0x79,0x87,0xd4,0xf1,0x65,0xd8, - 0x7a,0xe7,0xd8,0x09,0x9e,0x37,0x63,0xf3,0x39,0x85,0xf2,0xe2,0x16,0xed,0xec,0xc7,0xbc,0x13,0xbb,0xe4, - 0xbc,0x69,0xcb,0xc0,0x58,0x60,0x54,0x76,0x64,0x5f,0xb9,0xdf,0x8f,0x48,0x74,0x61,0xb5,0x7d,0x2e,0xb7, - 0x72,0x4b,0x9d,0x1b,0x79,0x11,0x7f,0xf4,0x3e,0x9d,0x27,0xad,0xe2,0x6a,0x05,0x83,0xd4,0xb2,0x5a,0xf0, - 0x75,0xf2,0x53,0x4e,0x83,0x82,0xa0,0x96,0x07,0xda,0x87,0xb3,0x64,0xbe,0x5e,0xaf,0xd4,0x14,0xf3,0xa5, - 0x37,0xaa,0x54,0xce,0x5b,0x59,0xa7,0x74,0x6a,0x48,0x60,0x04,0xaf,0x77,0xb8,0xf8,0x4d,0x4d,0xa3,0x78, - 0x3a,0x12,0xc3,0xd6,0x36,0xb4,0xfa,0xda,0x76,0xa6,0x23,0xb3,0x51,0x8f,0x80,0xed,0x2f,0x09,0xde,0x2e, - 0xad,0x26,0x34,0x82,0x7d,0x0b,0x3b,0x8b,0x49,0x72,0xd6,0x4d,0x76,0x8e,0xcb,0x19,0xcc,0xd5,0x87,0x26, - 0xfe,0x5a,0xd9,0xaa,0xad,0xec,0x7e,0xe6,0x54,0xfa,0x95,0xd4,0xc1,0xa1,0x31,0x67,0x84,0xa4,0x96,0xb0, - 0x69,0x1c,0x0c,0x1e,0xc2,0x12,0xb1,0x56,0x06,0x4b,0x71,0xf6,0x32,0x0a,0xd3,0x84,0xf3,0x09,0x78,0x67, - 0xf4,0x6b,0x8b,0xe9,0x58,0x27,0xc0,0x00,0xa9,0xcf,0x12,0x5c,0x37,0xbe,0x57,0x1a,0x47,0x0a,0xd5,0x72, - 0x0c,0x89,0xc0,0xc1,0xc2,0x38,0x36,0x21,0xf4,0x84,0x0e,0x3b,0x01,0x53,0x96,0x8d,0xb6,0x6b,0xb9,0xf7, - 0x6b,0xbd,0x77,0x2f,0xb2,0x97,0x38,0xf5,0x78,0x84,0x7b,0xf5,0x70,0x70,0x2d,0x04,0x16,0x8b,0xb7,0x13, - 0xfd,0x20,0xbb,0xd0,0xb0,0x50,0xfb,0xe7,0x3d,0xa2,0xc1,0x48,0x5b,0x5f,0xee,0xe0,0xe6,0x47,0xaf,0x53, - 0xac,0x91,0x09,0x58,0x49,0x9e,0xf5,0xcb,0x14,0xc3,0x82,0xb8,0x2c,0x33,0x40,0x3f,0xf6,0xfe,0xff,0xef, - 0xb3,0x20,0xc8,0x7c,0x7b,0x22,0x6c,0xba,0xf2,0x53,0xe5,0x10,0x00,0x13,0xd0,0x15,0xe1,0x9b,0x29,0x91, - 0xa9,0x73,0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0x31,0xd3,0xe6,0x4d,0x65,0x05,0x5b,0xb0,0x11,0xbc,0xa3, - 0xed,0x6d,0x53,0x95,0xc2,0x70,0x01,0xe2,0x06,0x4d,0x42,0x29,0xd1,0x3b,0xc7,0x7c,0x8f,0xc6,0x6d,0xdd, - 0xf4,0xe6,0xfc,0xb4,0xd1,0xa4,0x8d,0xb6,0x00,0xd9,0xba,0xb5,0xc5,0x20,0x51,0x7b,0x1d,0x30,0xb3,0xc0, - 0x34,0x2d,0x90,0x1a,0xe3,0x26,0x8b,0x37,0x79,0x98,0x69,0xab,0xad,0xe0,0x32,0x40,0x00,0xcc,0x90,0x95, - 0xc5,0x8d,0x46,0xe1,0x3d,0xb8,0xf1,0x0d,0xe3,0xc6,0x2d,0xf2,0xe4,0x8a,0xfb,0xf2,0x36,0xf7,0x1d,0x68, - 0xde,0xa2,0xa8,0x2f,0x88,0x39,0x6a,0xda,0xd6,0x23,0xdb,0x32,0x6f,0x96,0x42,0x6c,0x27,0x73,0x5c,0xa0, - 0xc2,0xb3,0xfc,0x02,0x84,0xc2,0x81,0x04,0xf2,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xff,0x52,0xdd,0x54,0x5f, - 0x6d,0x83,0xc1,0xaa,0xb7,0x15,0x04,0xe0,0xd6,0x70,0xec,0x39,0x9d,0x76,0x38,0xe9,0x4f,0x52,0x40,0xe1, - 0x18,0xd0,0x26,0x17,0x95,0x71,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7,0x82,0x95,0x2a,0x98, - 0xd0,0x2b,0x75,0x02,0xc3,0x8b,0x0f,0xf9,0xf8,0x69,0x1e,0xbf,0xcc,0x09,0xe3,0x77,0x7c,0xd0,0xfa,0x15, - 0x3b,0xb5,0x5a,0xc1,0x6e,0x9d,0xfd,0xcd,0xda,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd,0xde,0xde,0xe4,0x1b, - 0x68,0x16,0xe1,0x6e,0x36,0xea,0x77,0x6a,0x9a,0x3c,0xd0,0xf9,0x0a,0xd7,0x34,0xab,0x1e,0x25,0x11,0x9a, - 0xf2,0x9c,0x5e,0xfd,0x25,0x23,0x68,0xd7,0xb7,0xea,0x52,0x93,0x47,0x3a,0x80,0x07,0x9f,0x25,0x12,0x73, - 0xa2,0x3a,0x7e,0x91,0xef,0x05,0x8f,0xe1,0x68,0x15,0x9c,0x58,0x93,0x3d,0x58,0x45,0x95,0x26,0x6f,0x55, - 0xc9,0x55,0xd7,0xed,0xec,0x34,0x79,0xd7,0x70,0x28,0x59,0x28,0x61,0x8f,0x5f,0xdd,0x52,0xc9,0xc4,0xe4, - 0xf5,0x57,0x32,0x47,0x25,0x30,0x76,0xa5,0x39,0x3a,0x80,0xfa,0xc1,0xdd,0x06,0xcc,0x13,0x9e,0xb2,0x09, - 0x7a,0x41,0x8f,0x54,0x20,0xa5,0x02,0xc6,0xd6,0x9d,0x28,0x06,0x58,0x60,0xe7,0xe3,0xb9,0x2e,0xf1,0x1c, - 0x25,0xe6,0x54,0x62,0x62,0x4b,0xcc,0x12,0x4a,0x0f,0x57,0x2e,0x6a,0x7b,0x0a,0xda,0xf7,0x9b,0x03,0xaa, - 0x75,0x3e,0xfe,0x90,0xc7,0xcf,0x73,0xe6,0xf6,0xa3,0x71,0x21,0x8d,0x99,0xba,0x63,0x53,0x45,0x7c,0xa0, - 0x74,0xf0,0x66,0xa5,0xa1,0x25,0x5e,0x29,0x0b,0x2b,0xf1,0x0c,0x57,0x32,0xbf,0x37,0x57,0x07,0xc6,0x52, - 0xcb,0x60,0xf0,0x48,0xcb,0xd2,0x65,0xf6,0x4c,0x24,0x90,0xe0,0xc4,0x47,0x03,0xef,0x1a,0x77,0x48,0x8f, - 0x8c,0xfc,0xe3,0x81,0x8d,0xb7,0x18,0x65,0x89,0x0d,0xc1,0xed,0x88,0x28,0x33,0x8e,0xd6,0xe5,0x62,0x6d, - 0x89,0xb2,0xef,0x5d,0xfe,0x10,0x96,0x93,0x7b,0x0f,0x1b,0x09,0x54,0xb5,0xf1,0x77,0xda,0x43,0x9f,0xc4, - 0x3a,0xcc,0xbe,0xf8,0x9b,0xbe,0xae,0xd6,0x09,0x10,0xf6,0x0f,0xfd,0xf2,0x77,0x3c,0x5a,0x0a,0x24,0x14, - 0xd1,0x3b,0x70,0xeb,0xc2,0x3d,0x41,0x29,0x11,0xe7,0x67,0xec,0x4c,0x61,0xdf,0xf4,0xb5,0x9d,0x73,0x89, - 0xbc,0xe7,0xd2,0x43,0x23,0x03,0x4d,0x4e,0x1b,0xc3,0x0d,0xb9,0x0d,0x1d,0x59,0x5f,0x2d,0xb6,0xb9,0xa4, - 0xcf,0x08,0xc2,0xb3,0x8a,0x2b,0x3f,0xe4,0xa8,0x62,0x20,0x48,0x70,0xe3,0x9d,0xa3,0x6d,0x10,0x91,0x8c, - 0x10,0xa3,0x82,0xff,0x2c,0x6f,0x6c,0x02,0x92,0xa1,0x7c,0xc6,0xaa,0xbc,0x99,0x79,0x7d,0x5f,0x4a,0xc2, - 0xd4,0x24,0x3c,0x64,0x9a,0x5d,0x12,0x97,0x94,0x48,0x53,0x9a,0xa5,0xfa,0xab,0x0b,0xfb,0x6e,0x3e,0xbb, - 0xb4,0x29,0xfe,0x77,0x0b,0x4a,0x3d,0xcb,0x60,0x57,0xfe,0x04,0x55,0xaa,0x73,0x53,0xb9,0xba,0x46,0x79, - 0x5c,0x03,0x2f,0x19,0x67,0xb6,0x57,0x66,0x62,0xd4,0x95,0xfd,0xf6,0x21,0xd7,0xab,0x8e,0x6c,0x13,0xea, - 0xbd,0xf9,0x5a,0x67,0x7d,0x74,0xfd,0xb3,0xdf,0x7f,0xa2,0xb4,0xa9,0xde,0x53,0xea,0x5d,0x72,0x55,0xa9, - 0x87,0xf4,0x47,0x1b,0xf8,0x8f,0x1e,0x12,0x05,0x64,0x49,0xae,0x77,0x49,0xf8,0x30,0x31,0xaf,0x91,0xe1, - 0x58,0x79,0x25,0xee,0x24,0xbb,0xef,0xbc,0x20,0x4c,0xc4,0x91,0xb2,0xf5,0x7f,0x59,0x82,0x0e,0x44,0x7c, - 0x61,0x2c,0xc9,0x9d,0xf5,0xfa,0x08,0x87,0x27,0xad,0xc1,0x91,0x80,0xc0,0xeb,0xe4,0xce,0x60,0xb0,0x1c, - 0x2f,0x69,0x37,0x3c,0xc1,0xe3,0xe5,0xf8,0x32,0x9e,0xaa,0x37,0x78,0xbc,0x18,0x5f,0xd0,0xbe,0x78,0x9c, - 0xdc,0x19,0x5f,0xad,0xd7,0x8b,0x78,0xa1,0x3e,0x20,0xb5,0xc7,0x7f,0xe6,0x68,0x7c,0x14,0x9f,0xab,0xe7, - 0x54,0xf0,0xfd,0x7a,0x7d,0x1d,0x5f,0xab,0x17,0xf4,0xf8,0x71,0xbd,0x3e,0x8b,0xcf,0xd4,0x53,0xe2,0x5b, - 0xf2,0xf0,0x53,0x34,0xfe,0x24,0xd3,0x16,0x7f,0x8a,0xd4,0xab,0x84,0x0f,0xc2,0x9a,0x15,0xf6,0xea,0x65, - 0xf2,0xa6,0x09,0x3f,0x44,0xea,0x6d,0xe2,0xe0,0xc4,0xf7,0xd4,0x8d,0x6e,0x5e,0x11,0x48,0xd2,0x81,0x52, - 0xaa,0x37,0x91,0xe2,0xdf,0x27,0x74,0x54,0xbe,0x75,0xa0,0x39,0x0e,0xa9,0x04,0x67,0xbc,0x8e,0xd4,0x8b, - 0xc1,0xe0,0x05,0x5b,0x5a,0x3c,0x1f,0x0c,0x9e,0xc3,0x9f,0xc1,0xab,0x55,0x07,0x6e,0xd7,0xf0,0x5a,0x5f, - 0x94,0x34,0xb0,0xef,0x68,0x3b,0x38,0x13,0x29,0xd7,0xa8,0x11,0x1a,0xc9,0x5c,0x83,0x4f,0x55,0x3a,0xb4, - 0xf2,0x29,0xc2,0x1e,0x31,0xab,0xe9,0x9e,0x8f,0x59,0xb0,0x76,0x32,0xe2,0xc0,0x48,0x62,0x98,0x58,0x88, - 0x61,0x62,0x83,0x1d,0x66,0xf7,0x4d,0xf7,0x3d,0x8c,0xd4,0x87,0xc1,0xe0,0x03,0x75,0xfd,0x2d,0xcc,0xa6, - 0x1e,0x0f,0x06,0x8f,0xd1,0x67,0x8c,0xf8,0x48,0x0f,0xe8,0x48,0x46,0xac,0xae,0x5a,0x07,0xc9,0x91,0x3f, - 0x1f,0xaf,0x5b,0xd3,0xb1,0x5e,0xbf,0xa4,0x73,0xfc,0x49,0x13,0x3e,0x8d,0xc6,0xde,0x29,0xf4,0x56,0x3d, - 0x8d,0xe2,0x8f,0x28,0x3e,0xa7,0xc6,0x80,0x44,0x94,0x37,0x11,0x62,0x95,0x5b,0xf9,0xfd,0xa1,0x6e,0x70, - 0x55,0x6f,0xc3,0xb6,0x07,0x98,0x46,0x20,0x4e,0xd8,0x4d,0xdd,0xf9,0xe8,0x37,0x1f,0xb6,0x26,0x38,0x24, - 0xce,0xd3,0x4d,0xa2,0x9d,0x31,0xe8,0xba,0xfb,0xd2,0xc5,0x1f,0x55,0xa6,0x33,0x29,0x22,0x75,0x41,0x80, - 0x88,0x40,0xab,0x57,0x32,0x25,0x29,0x3c,0x2c,0xf8,0x77,0xd9,0x33,0x25,0x29,0xf1,0x50,0x98,0x12,0x2e, - 0xd5,0xea,0xd3,0x91,0x4c,0xc9,0xfb,0xd6,0x94,0x7c,0x54,0xef,0x79,0x4a,0x52,0xb5,0x52,0x1f,0x65,0x4a, - 0x2e,0x41,0x99,0xa5,0xf4,0xa6,0xae,0xf8,0xa3,0x8f,0xa0,0xb3,0xb5,0xa1,0xb9,0xc6,0x95,0xa9,0x8f,0xce, - 0xbc,0xb7,0x36,0xae,0x74,0xe9,0x06,0x57,0xd6,0xb7,0xe3,0x4a,0x89,0x22,0x2b,0x77,0xd1,0x58,0xd4,0x68, - 0x18,0x28,0xd1,0xc6,0xee,0x72,0xc3,0x06,0x49,0x1b,0x27,0x95,0x9a,0x71,0xe6,0x2a,0x91,0x58,0x31,0x84, - 0x24,0x21,0x6f,0x49,0x0d,0x56,0x9b,0x9a,0x57,0x83,0xfc,0x96,0x26,0xc1,0xc7,0x7d,0x17,0x94,0x28,0xf8, - 0xeb,0x05,0xb2,0x08,0x43,0xea,0x42,0x84,0x15,0x6b,0xc1,0x5e,0x92,0x71,0x6e,0x6b,0xb7,0xb8,0xeb,0x9a, - 0x92,0xd8,0xb3,0x5b,0x4a,0x9c,0xe1,0xd5,0xa0,0xb2,0x2b,0xd9,0xe6,0x73,0xd9,0xe6,0x47,0xd8,0xe6,0x97, - 0xb4,0x3a,0x8c,0x10,0xce,0xa2,0xf1,0x99,0xd4,0x15,0x9f,0x45,0x8c,0x15,0xcd,0xd0,0xda,0x5b,0xdf,0x07, - 0x11,0x88,0x90,0x7a,0x00,0x86,0xd7,0xa0,0x27,0xdd,0xc2,0x10,0x07,0x01,0xbb,0x12,0x1c,0xe2,0x00,0x64, - 0x19,0xb5,0x20,0x64,0x1c,0x5e,0x31,0x0e,0x61,0xc8,0xa1,0x3a,0xcf,0xd9,0x50,0x24,0xc4,0x86,0x58,0x0c, - 0x06,0x0b,0xbc,0x29,0xaf,0x93,0x1a,0x93,0x5c,0x8f,0xaf,0x69,0xbb,0xc6,0x65,0xe8,0x13,0x04,0x4f,0xbc, - 0x13,0x79,0x3b,0x3a,0x15,0xcd,0x86,0x5c,0xc0,0xe8,0x6b,0x97,0xdf,0x20,0x66,0x2d,0xb3,0x12,0x2e,0x00, - 0xb2,0x0e,0xb1,0x0d,0x73,0x62,0x84,0x4a,0xf6,0x02,0x48,0x8d,0xa9,0xf8,0x56,0x20,0x9c,0xea,0xf8,0xe0, - 0x24,0x46,0x18,0x1c,0x7b,0xe5,0x1f,0x9c,0x61,0x34,0xfd,0xf4,0x8d,0xa7,0xd1,0x7b,0xac,0xe9,0x95,0x5d, - 0xa8,0xef,0x1b,0x1f,0x03,0xdc,0xe1,0x9b,0x91,0x9d,0xe3,0x88,0x25,0xbd,0x9f,0x9b,0x27,0xe5,0x4c,0xe5, - 0xfa,0xe9,0x5b,0x5b,0x72,0xa3,0x0e,0xbc,0xaa,0x9e,0x77,0xa8,0xf8,0xc6,0x93,0x8c,0x2d,0x56,0xf3,0x26, - 0x5f,0xce,0x33,0xa1,0xd7,0xd7,0xeb,0xee,0xc8,0xbc,0xc8,0x69,0x6c,0xea,0x02,0xe7,0x2d,0xeb,0x78,0xd3, - 0xf5,0xdd,0x82,0x1f,0x88,0xcb,0xc5,0x15,0x1c,0x79,0x54,0x26,0x67,0xc4,0xfe,0x3d,0x85,0x15,0x10,0xf8, - 0x5d,0x85,0xab,0x9c,0xe6,0x7c,0x31,0x3b,0x4d,0x40,0xc9,0xe0,0x63,0x12,0x12,0x2f,0x20,0xd8,0x75,0xc8, - 0x9f,0x78,0x11,0x84,0xc1,0x75,0x81,0xae,0xd2,0x85,0x59,0x51,0x25,0xe7,0x58,0x37,0x35,0x81,0x5b,0x5f, - 0xce,0xdc,0x54,0x3b,0x7d,0xbf,0x75,0x03,0xe5,0x8b,0xa6,0x7d,0x5d,0x4b,0xf7,0x1a,0x3e,0x9b,0xb5,0x7b, - 0x1d,0x8a,0x61,0xad,0xe7,0x47,0xe2,0x43,0x99,0x88,0x4a,0x39,0xce,0x1b,0x2e,0x2b,0x10,0xb5,0x9f,0x16, - 0x3f,0x7a,0xae,0x20,0x8d,0x38,0x43,0x0b,0xcf,0xe2,0x64,0xa6,0x30,0x42,0x73,0x3e,0x20,0xb7,0x14,0xe2, - 0x41,0x6e,0x7f,0x79,0xa8,0xde,0x36,0x36,0x43,0x69,0x41,0xbe,0x4f,0x6f,0xbe,0x6d,0x31,0x9d,0x5d,0x87, - 0x87,0x4b,0x76,0x77,0x80,0xd4,0x59,0xd4,0xe2,0x81,0xf0,0x99,0x79,0x23,0x39,0x8d,0x22,0x4c,0xca,0xb1, - 0x93,0x86,0xd3,0xbc,0x66,0x1b,0x65,0xc9,0xf0,0xd5,0x17,0x8f,0xbc,0x99,0xd8,0xbd,0xc5,0xe1,0x41,0x24, - 0x55,0x59,0x17,0xf9,0x8e,0xb3,0xf8,0x11,0xfb,0xd3,0xdc,0x26,0x33,0xf3,0x5c,0x2f,0x3c,0xa9,0x28,0x93, - 0x01,0x5b,0x86,0xb1,0x66,0x15,0x71,0xc6,0xb7,0x4c,0x62,0x8d,0xdb,0xfa,0x98,0xea,0xf8,0x17,0xbc,0xc1, - 0xac,0x4b,0xa2,0x2f,0xe4,0xfc,0xc9,0x6b,0x80,0xaf,0xc0,0x74,0xd1,0x52,0xdb,0x81,0x94,0x0a,0x77,0x65, - 0x45,0x84,0x20,0x4a,0x6c,0xde,0x3c,0xd2,0xb1,0x95,0x08,0xfd,0x31,0x2a,0x34,0xfc,0x64,0xc7,0x9b,0x2f, - 0xa7,0x2f,0xae,0x70,0x39,0xc8,0x09,0xfb,0xf3,0xf5,0xc4,0xb4,0xfd,0xc1,0x49,0x92,0xee,0xfd,0x3a,0xdd, - 0xff,0x98,0x65,0xcb,0xfd,0x74,0x4e,0x87,0xc5,0x1d,0x7d,0xf3,0x20,0xd3,0x37,0x2e,0x50,0x76,0x18,0xb8, - 0x22,0x81,0xba,0xe1,0xae,0xc5,0xcd,0xd6,0xec,0xb8,0x3e,0xfb,0x40,0xfc,0x4c,0x03,0x1b,0x93,0x44,0xac, - 0x1c,0x38,0xe3,0x9b,0x30,0xdd,0x2b,0xdb,0x5a,0xf2,0xbb,0x3e,0x4d,0x6d,0xbe,0x3d,0x5d,0x3d,0xd3,0x71, - 0x5d,0x9d,0x88,0x5b,0xb3,0xab,0x37,0x25,0xc2,0x12,0xa1,0x34,0x01,0xe7,0x23,0x22,0x8c,0x39,0x34,0xc8, - 0x3c,0xa7,0x4f,0xdf,0xe2,0x1e,0x78,0x3f,0x66,0xbd,0xbf,0xbc,0x52,0x01,0x81,0xb8,0xb2,0x4e,0x36,0x52, - 0x9b,0xbe,0xda,0x62,0xd6,0xec,0x17,0xfc,0xc3,0x77,0xa8,0x35,0xe5,0x92,0x5e,0xe9,0x2f,0x30,0x58,0xb5, - 0x5e,0xe7,0xb6,0x0b,0x18,0xc2,0xd4,0x68,0x20,0x4b,0xdd,0x15,0x16,0x0c,0x8f,0x4a,0x77,0x51,0x3d,0x11, - 0x99,0x3f,0x65,0x67,0x1f,0xf3,0xc6,0xf2,0x9f,0x49,0xc0,0x99,0x08,0xa8,0x17,0x06,0x7b,0xd5,0x5e,0xb0, - 0xfc,0xa4,0x58,0xd5,0xbf,0xfc,0x14,0x05,0xaa,0xf4,0x00,0xd8,0xf0,0xe2,0x49,0x70,0x50,0xfb,0x7a,0xfa, - 0xdf,0x5a,0xbb,0xae,0x19,0x3f,0x29,0xe3,0xd7,0xa5,0x93,0xe0,0x1b,0xa9,0x58,0xd1,0xd2,0xd2,0xe9,0xec, - 0x3b,0x25,0x6e,0xdd,0xf5,0xc3,0xc6,0x5b,0xec,0xad,0x15,0xd4,0xcc,0x48,0x1f,0x72,0xac,0x80,0x4c,0x59, - 0xe3,0x8a,0xb8,0x51,0xc6,0x1c,0xa2,0x75,0x97,0x6f,0xf7,0x66,0x57,0xe5,0xcc,0x04,0xec,0xfd,0x20,0x3a, - 0xde,0xb2,0x76,0x8d,0xc4,0xa3,0x84,0x21,0x71,0x8e,0x5c,0x4d,0xa4,0x04,0xb2,0xfd,0xa0,0x2a,0xc7,0xfe, - 0x05,0x36,0xdf,0x9a,0x83,0x6d,0x5b,0x75,0xcf,0x56,0x2c,0x04,0xa8,0xd7,0x84,0x5f,0xe4,0x6e,0x47,0x0e, - 0x73,0x06,0xdf,0x03,0xcf,0xf2,0x29,0x13,0xd7,0xa2,0x5d,0xdf,0xb8,0x49,0x9b,0x33,0xdc,0x56,0x65,0x95, - 0xcd,0x6c,0x95,0xf4,0xcc,0x91,0xd3,0x8c,0x3f,0x54,0x4b,0x52,0xe4,0x19,0xd1,0x8e,0x0a,0x09,0xf5,0x69, - 0xaf,0x9a,0x29,0x20,0x73,0x75,0xee,0x46,0x10,0x51,0xea,0x40,0x9e,0x36,0x56,0x34,0xa8,0x50,0xf4,0xb5, - 0xa3,0x54,0x0d,0x10,0xee,0xc2,0xda,0x39,0xc3,0x5a,0x9b,0xde,0xa1,0xef,0xd2,0xdd,0xc3,0x7c,0x06,0x9e, - 0x54,0xba,0x69,0x47,0xf7,0xe6,0xaf,0x60,0x05,0x25,0x86,0x3c,0x1c,0xf6,0x20,0xe0,0x5b,0xf0,0xa8,0x1a, - 0x0e,0xb9,0x85,0x40,0xda,0x3a,0x93,0x92,0xf6,0x75,0x09,0xa2,0x32,0xec,0x37,0x7e,0xb2,0x1c,0x84,0xee, - 0x5b,0x13,0xed,0xb8,0xb2,0x45,0x81,0xdf,0x6d,0xa9,0xf7,0x22,0x3b,0xbb,0x1b,0x04,0x77,0xd9,0x90,0xfc, - 0xae,0x0d,0x58,0x7a,0x97,0x16,0x79,0xbb,0xa7,0x40,0xe4,0xb6,0x76,0x7a,0x71,0xb5,0x2a,0xbe,0x60,0xb9, - 0x3b,0x41,0x32,0xe2,0xd0,0xac,0x55,0x5e,0x9b,0x2e,0x5a,0xe4,0x44,0x5d,0x54,0xda,0xfc,0x48,0x8a,0x14, - 0xf3,0xbc,0xc8,0xf6,0x6d,0xcb,0x52,0x5c,0x52,0xdf,0xeb,0x44,0xb6,0xa8,0xec,0x5c,0x79,0x43,0x70,0xbc, - 0x28,0x7d,0x0f,0x99,0x2c,0x59,0xc0,0xa1,0x8d,0x01,0x92,0x7a,0x3a,0xda,0x86,0x49,0xe5,0x99,0xef,0x32, - 0x45,0x63,0x61,0x8e,0x2b,0x6e,0x68,0x9f,0x14,0x56,0x00,0x36,0x6a,0x1e,0x14,0x26,0xf2,0x40,0x95,0xc0, - 0x6f,0xa9,0x91,0xcd,0xa2,0x4a,0x79,0x16,0x72,0xea,0x79,0xa9,0xc5,0x55,0x5a,0xea,0x7f,0x91,0xd6,0x8f, - 0x72,0x46,0x7a,0x30,0x70,0x55,0xa1,0x7f,0xa7,0x92,0x85,0x63,0x7d,0x3f,0xd0,0x23,0x89,0x72,0xe3,0x87, - 0xbd,0x77,0xf7,0x65,0x74,0x55,0x02,0x1c,0x05,0xd2,0x48,0x98,0x0e,0x23,0x5c,0xf7,0x0d,0xc3,0x09,0x5c, - 0xc9,0x15,0xe9,0xcb,0x21,0x0c,0x8a,0x79,0x54,0x42,0xc3,0x43,0x0c,0xaa,0xeb,0x9b,0x9f,0xfd,0x96,0xb3, - 0x69,0x18,0x3f,0x73,0xf0,0x01,0xb6,0x64,0x96,0xa8,0xa4,0x38,0x30,0xc4,0xe8,0xf8,0x40,0x69,0xe5,0x74, - 0xb3,0x98,0x07,0x12,0xff,0xec,0x0a,0xf1,0x3b,0xa5,0x29,0x4f,0x71,0xcd,0x34,0xfa,0x84,0xa6,0x65,0xce, - 0x39,0x52,0x08,0xf4,0xde,0x75,0x31,0x19,0x0c,0xd8,0x0e,0xd1,0x45,0xb5,0xe4,0x5c,0x85,0x68,0x45,0x2a, - 0xb8,0xc3,0x96,0x77,0x01,0xdb,0x77,0x43,0x97,0xef,0x20,0x64,0x30,0x38,0x2d,0xed,0x85,0xb7,0x06,0xbd, - 0x09,0xb3,0x45,0x44,0x37,0x9b,0x6e,0x22,0xd6,0x56,0xcc,0xc0,0x58,0xf9,0x01,0x65,0x3f,0xf4,0x0f,0xf8, - 0x83,0x0c,0xb8,0xd0,0xe5,0x69,0xf9,0x77,0xfd,0xcb,0x19,0xe7,0x49,0x6b,0xf6,0x9e,0xcb,0xec,0xe9,0x35, - 0x7a,0xc9,0x61,0x1d,0x68,0x70,0xf3,0xe3,0xc3,0x93,0xd1,0x4a,0xcf,0xb4,0x95,0xf3,0x59,0xbf,0xae,0xbd, - 0x43,0x8c,0x64,0x9a,0x54,0xc4,0xf0,0xe5,0xc4,0xdf,0x95,0xc4,0xd3,0xad,0x20,0xe3,0x52,0x61,0x38,0x4b, - 0xb2,0xa8,0xe5,0xa3,0x87,0x38,0x3d,0xf6,0x75,0xcb,0x44,0x74,0xaa,0xb4,0x47,0x54,0xbc,0xd4,0xb6,0x9d, - 0x17,0xb0,0x6c,0x89,0x2f,0x95,0x35,0x43,0x8c,0x17,0x1b,0x0e,0xb2,0x61,0x6c,0x07,0x79,0x02,0xf4,0x7c, - 0x74,0x8c,0xf9,0x4a,0xbe,0x75,0xc7,0x9f,0xdd,0x60,0x01,0x21,0x36,0x56,0xb5,0xfa,0xec,0x54,0x0f,0x06, - 0x7a,0xae,0x8d,0x97,0x89,0x56,0x5b,0xab,0xa5,0xba,0x50,0xd4,0x99,0x4d,0x8b,0x9f,0xfa,0xd9,0x9d,0xe6, - 0x0c,0xd4,0x89,0xb1,0x54,0x24,0x48,0x0e,0xa2,0x3e,0xf3,0x35,0x63,0x97,0x2c,0x13,0xfd,0x42,0x87,0x7c, - 0x32,0xfc,0x0a,0x2b,0x71,0xe9,0xdb,0xa4,0x38,0xbe,0x7f,0xa2,0xf5,0x47,0x86,0xe2,0xa2,0xa5,0xd0,0x29, - 0x76,0xd5,0x5e,0x19,0xa0,0xce,0x75,0x7d,0x4f,0x5d,0x04,0xe0,0x72,0x8c,0x38,0x4e,0xf3,0x3c,0xad,0x29, - 0xd7,0x7c,0xf0,0x54,0x3e,0xa8,0x86,0x39,0xd1,0x34,0x29,0xd1,0x8e,0x87,0x49,0xe9,0xea,0x55,0x25,0xb5, - 0xca,0x16,0x18,0x26,0xfb,0x7e,0x52,0xba,0x8e,0x20,0xf8,0x8a,0xa9,0x51,0x55,0x7c,0x2d,0x5e,0xc1,0x31, - 0x0b,0xda,0x8e,0x24,0xff,0xb6,0x2a,0x99,0x7c,0x76,0x54,0x12,0x56,0x60,0xba,0x8c,0x79,0x14,0x3f,0x81, - 0x43,0xaf,0xb6,0x93,0x8c,0x9e,0xc7,0xb3,0x86,0xf6,0x85,0xce,0xdf,0x35,0xed,0x55,0xe3,0x73,0xd3,0x44, - 0xb7,0xcf,0x8c,0xb0,0xd2,0xb3,0x77,0xee,0x32,0x83,0xe3,0xc0,0x44,0x7b,0x8a,0x6f,0x82,0x38,0x28,0xf1, - 0xe3,0x02,0x3f,0xe8,0xbb,0xf6,0xf6,0x12,0x18,0xfc,0xe5,0x7b,0x77,0x83,0xf8,0xee,0x5e,0x86,0x78,0x41, - 0xec,0x56,0x0e,0xbb,0x6f,0x77,0x9f,0xb4,0x27,0xf2,0x66,0xc3,0x45,0x67,0x16,0x5d,0x58,0xaa,0xd6,0xde, - 0x4f,0x6a,0x25,0x99,0xc4,0xb7,0x6e,0x82,0xed,0xc0,0xd5,0xf6,0xa2,0xb3,0xe0,0x18,0xa6,0xe5,0x6d,0xe1, - 0xbc,0xd3,0x89,0xea,0xeb,0x48,0x8c,0x27,0xa0,0x82,0x66,0xf2,0x24,0xd0,0x27,0xdf,0x77,0xa5,0x21,0x9a, - 0xc5,0x71,0x8c,0x68,0x9f,0xdf,0x3a,0x49,0x0c,0xa0,0xce,0xa8,0xd7,0x58,0x39,0x04,0x44,0xe8,0xe1,0x4f, - 0x6a,0x7c,0x57,0x59,0x84,0xc4,0x61,0x29,0xbd,0xc2,0xf4,0xed,0xbf,0x39,0x44,0x50,0xb9,0x97,0xf0,0x83, - 0xfa,0xb6,0x64,0xad,0x79,0x6a,0x8c,0x7d,0x5d,0xa0,0xec,0xec,0x53,0x2a,0xd1,0x52,0x6a,0x13,0x08,0xdc, - 0xab,0x69,0x44,0x15,0xfc,0x5c,0x86,0xc7,0xc1,0xa4,0xa9,0xe6,0x34,0x08,0xb6,0x1a,0xa6,0xdf,0x74,0x8e, - 0xbf,0x8b,0xac,0x49,0x83,0x93,0xdb,0x6d,0xda,0x77,0x27,0x4c,0x32,0xde,0x62,0x12,0xaf,0xd1,0xeb,0x30, - 0x80,0x99,0xfe,0xf7,0x44,0x84,0xd9,0xc9,0x5a,0xaf,0xc1,0x2b,0x8a,0x39,0x8a,0xed,0xb0,0x71,0x31,0xb6, - 0x96,0x43,0x61,0xbe,0x47,0x58,0x1e,0x56,0x1e,0x77,0xcf,0x56,0x4d,0x53,0x16,0x77,0x31,0x0d,0x52,0x29, - 0xc2,0x0a,0xec,0xa5,0xdc,0x70,0x53,0x98,0x6a,0x29,0x8d,0x16,0xc1,0xaa,0xfe,0xe8,0x80,0x1f,0x61,0x3b, - 0x4a,0x4d,0xa5,0x17,0x77,0x33,0xd4,0x95,0xdc,0x80,0xba,0x0e,0x8b,0xb1,0x5e,0x93,0xbd,0xc0,0x64,0x04, - 0x71,0x35,0x66,0xf3,0x59,0x93,0x11,0xb9,0x1c,0xb3,0x80,0x0c,0x69,0xa6,0xad,0xf5,0xba,0x32,0xb5,0xc4, - 0x7d,0xcd,0xd8,0x8a,0x7c,0xe8,0x6c,0xbc,0xf3,0x98,0xc3,0xf2,0x3c,0xe7,0xe3,0xe1,0xf0,0x20,0xf2,0x63, - 0xf2,0x9b,0x69,0xd4,0xe1,0xaf,0x89,0x70,0xa4,0xea,0x34,0x9c,0x7d,0x5b,0xba,0x50,0xc9,0xc1,0xe9,0xc7, - 0xb0,0x5d,0x94,0x98,0x87,0x0e,0x22,0xce,0x78,0xe3,0x74,0x53,0x0b,0xa4,0xba,0x4f,0x7d,0xf3,0xd0,0xa2, - 0x65,0x38,0x85,0xf0,0x3e,0xff,0x42,0x04,0x60,0x63,0xb2,0x2a,0xc1,0xe4,0xe2,0x00,0x26,0x86,0x1c,0x44, - 0xd6,0xee,0x0f,0x68,0xf1,0xc7,0x95,0xd8,0x45,0xc5,0x77,0x4f,0x27,0x3a,0xb8,0xc1,0x5d,0x9e,0x36,0xd5, - 0x89,0xcd,0x1c,0x17,0xdd,0x68,0xcd,0x1e,0x02,0xab,0xdc,0x1e,0x36,0x36,0x47,0x50,0x6f,0x30,0xc1,0x2e, - 0xaf,0x6f,0xaa,0x72,0x92,0xd5,0x75,0x36,0x35,0x4b,0xaf,0x0d,0x68,0x24,0xbe,0x8e,0xf8,0x11,0xec,0xca, - 0xc3,0x56,0xd1,0xd4,0x2f,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x56,0xc1,0xb6,0x61,0xa8,0x17,0x2c,0x04,0xa5, - 0xd9,0xa5,0x86,0x71,0x31,0xbb,0x00,0x58,0x74,0x3e,0xc6,0x6c,0x7b,0xef,0x31,0xed,0xec,0xda,0x2b,0x70, - 0xbf,0x53,0xe0,0x3e,0x7c,0xd4,0x2c,0xbb,0xe6,0x77,0x83,0xc9,0xa1,0xd3,0x79,0xa8,0x6d,0xbf,0x1d,0xc1, - 0x0b,0x63,0xed,0x14,0x41,0xaf,0xbc,0xa9,0xd7,0x53,0x46,0x53,0x4d,0x6b,0xe9,0x8d,0x2f,0x9f,0xf1,0xf0, - 0xf2,0xd9,0xd6,0xe8,0x6a,0x37,0x0d,0x8e,0x00,0xdf,0xed,0x10,0xe0,0x42,0xb8,0xf7,0x71,0x20,0x3d,0x73, - 0xe4,0xec,0x0d,0x0c,0x73,0xb2,0x5e,0x7b,0x94,0x3e,0x61,0xc4,0x79,0x61,0x74,0xfa,0xc1,0x29,0xdb,0x2b, - 0xef,0x85,0x15,0xcf,0x47,0x25,0xb1,0xec,0x5c,0x60,0xf4,0xe0,0x06,0x93,0x24,0xc1,0xd1,0x6f,0x71,0xbf, - 0xb9,0x2a,0xb4,0x4d,0x05,0x8d,0x3a,0x46,0x69,0x11,0x82,0xb5,0xd0,0xf3,0x26,0xe0,0xd5,0xb1,0xc6,0xfb, - 0xda,0x85,0x21,0x30,0x3b,0x68,0x17,0xb7,0x99,0xa6,0xb4,0x95,0xe1,0x29,0x4e,0xb8,0x87,0x79,0x04,0x87, - 0x41,0xd0,0x35,0x04,0xca,0x92,0xb7,0xb0,0x84,0x4d,0x92,0x29,0xc3,0xdb,0x2a,0xa5,0xb1,0xb0,0x75,0xb5, - 0xcc,0x25,0x8f,0x5f,0x26,0xde,0x05,0x80,0xf5,0xc9,0x8f,0xb6,0x68,0xb4,0xcd,0x6e,0x8c,0x51,0x6f,0x3c, - 0x67,0x7d,0x30,0x44,0x61,0x76,0x93,0xd3,0x4e,0xd2,0x6e,0x4f,0x13,0x51,0x16,0xb7,0x66,0x4d,0x37,0xef, - 0x1a,0x54,0xdc,0x15,0x4b,0x67,0x82,0x07,0x67,0x8a,0x6d,0x6c,0xa2,0xa0,0xd9,0x45,0xe8,0x32,0x3c,0xb6, - 0x07,0xe8,0x27,0x7a,0x50,0x24,0x68,0xfd,0x2e,0x26,0x97,0xd6,0x7c,0x2f,0xa0,0xa7,0x56,0xd3,0x61,0xce, - 0x2f,0xb9,0xed,0x47,0xfb,0x12,0xce,0xc6,0x89,0x3e,0xdc,0xf5,0x09,0xc4,0xdb,0x14,0x89,0x9f,0x73,0x5c, - 0x9e,0x30,0xce,0x70,0x4e,0xf2,0xfa,0x41,0x43,0x0b,0x4c,0x66,0xb8,0xe7,0x1e,0x92,0xda,0xba,0xb0,0xa7, - 0x83,0x16,0xb0,0x77,0x9a,0x2e,0x86,0x91,0x73,0xa7,0x17,0x73,0xb9,0xed,0x13,0x20,0x22,0xfc,0x82,0x66, - 0x3c,0xdc,0xfe,0xde,0x44,0xdf,0x8b,0xf6,0x2c,0x5e,0x92,0x78,0x28,0x81,0x12,0x4f,0x6b,0x3b,0x0d,0xd6, - 0x8b,0xc2,0xc7,0x64,0x2d,0x6c,0x24,0x31,0xd8,0xff,0xd4,0xf6,0x6c,0xb5,0xe5,0x0b,0x18,0x82,0x80,0x25, - 0x2c,0x5a,0x67,0x5c,0x8d,0xb4,0x29,0x2f,0x64,0x0c,0x37,0xc4,0x8b,0x03,0xb3,0x1b,0x87,0x16,0xeb,0x68, - 0x6b,0xcf,0xaf,0x71,0x40,0x44,0xb8,0x37,0x72,0xf6,0xaa,0x43,0x17,0x9f,0x4f,0xf7,0xf6,0xf8,0xb5,0xc0, - 0x58,0x62,0x5d,0x60,0xd3,0x46,0xb4,0x9e,0x3b,0xc1,0x76,0xf4,0xed,0xd6,0x80,0x30,0x50,0x47,0x9d,0x85, - 0xd6,0xb8,0xdf,0xd3,0x2a,0xba,0x3d,0x5d,0x8d,0x2b,0x39,0x3f,0x64,0xb6,0xc6,0xa9,0x3e,0x4e,0xf4,0xb1, - 0xc2,0xf7,0x9d,0x18,0x51,0x8d,0xbd,0x0d,0x99,0x00,0xe4,0x94,0x28,0xd0,0x40,0xdb,0x29,0x34,0x26,0x7a, - 0xa1,0xa3,0x2f,0xb2,0x4f,0x4b,0x3e,0xdc,0x53,0xf1,0x8f,0x88,0xc6,0xb4,0xad,0x89,0xf1,0x3c,0x9b,0x97, - 0x93,0x8f,0x1a,0x7b,0xd8,0x8e,0xd1,0x22,0x7a,0x99,0x9b,0x0e,0xd1,0x6c,0xc9,0xdd,0xee,0x3d,0x35,0x93, - 0x16,0x0a,0x24,0xf4,0xa5,0xaa,0xa4,0x1f,0x39,0x76,0xef,0xc9,0xbe,0xd1,0x61,0x2d,0xb4,0x83,0xaf,0x17, - 0x45,0x22,0x3e,0x0e,0xd8,0xd9,0xd7,0x04,0xbc,0xe8,0xbb,0x37,0xeb,0xa6,0x34,0x61,0xf6,0xb5,0xf4,0x71, - 0xde,0xba,0x8a,0xfb,0x58,0xa2,0x5b,0x9c,0x8c,0xc0,0x28,0x53,0x99,0xdd,0x39,0x62,0x65,0xd3,0xde,0xb8, - 0x4a,0x2b,0xdc,0x1d,0x92,0x8a,0x33,0xef,0x81,0xaa,0x89,0xec,0x16,0x46,0x90,0x88,0x6f,0x1d,0x12,0xe3, - 0x6e,0x60,0x79,0x42,0x4e,0xd4,0x2f,0x70,0xbf,0xd9,0x0b,0x4b,0xc1,0xb7,0x04,0xfb,0x42,0x03,0xe1,0x58, - 0xb2,0xb4,0x93,0xef,0x7f,0xb4,0x45,0x7c,0xe8,0x62,0x91,0xa0,0x90,0x72,0x48,0x67,0xcc,0xf8,0x2e,0xf3, - 0x9a,0xdc,0x0a,0x3d,0xa0,0x05,0x93,0x6b,0x09,0x57,0x6a,0xc9,0x71,0xa2,0x3d,0x95,0x3a,0x5a,0x59,0xf6, - 0xe1,0x46,0xb9,0xc8,0x4a,0x93,0x71,0xdd,0x66,0x19,0x4e,0x6c,0x84,0x27,0x8d,0xba,0xf9,0x62,0x95,0xbd, - 0xa4,0x02,0xe4,0x47,0x4a,0x0b,0x08,0x91,0x02,0x61,0x22,0x1f,0x2f,0xe2,0x4f,0x13,0x48,0x48,0x80,0x99, - 0xce,0xa4,0x27,0xce,0xa4,0x5f,0x2f,0x93,0x77,0xaa,0x2b,0xc1,0xaf,0x31,0x50,0x84,0x94,0x58,0xb2,0x27, - 0x24,0x32,0xe9,0xc9,0x4b,0xf7,0xb8,0x65,0xe4,0xde,0x85,0xd8,0x95,0x7d,0x9f,0x80,0x7c,0x69,0x31,0xee, - 0x3a,0x51,0x94,0x38,0xe0,0x8a,0x52,0xef,0xdb,0xac,0x70,0xd8,0x89,0x7d,0x71,0xe9,0x63,0x3f,0x8b,0xd8, - 0xa7,0x30,0xd3,0xa8,0x44,0x9f,0xaf,0xdc,0x3a,0x3f,0x13,0x0b,0xb6,0x37,0x2b,0x4c,0x8e,0x9e,0x37,0xa5, - 0xbd,0x52,0x75,0x41,0xe3,0x8b,0x60,0xcb,0x4a,0xd4,0x61,0x5b,0x56,0xdc,0x19,0xa5,0x30,0x98,0x3e,0x9d, - 0xa0,0x76,0x0f,0x0d,0xa4,0x99,0xc9,0xf1,0x3d,0x23,0xbd,0xf2,0x7e,0xb2,0x62,0xdc,0xdd,0xfa,0xca,0x91, - 0x22,0x42,0x03,0x1a,0xd1,0xa0,0xee,0x1e,0x5f,0x44,0x13,0xec,0xf9,0xe5,0xec,0x97,0x2e,0xc0,0xab,0x14, - 0x66,0xad,0xa1,0x97,0x8a,0x2b,0x99,0xb4,0x40,0x54,0x12,0xe2,0xd3,0x15,0x31,0x47,0xad,0x50,0x30,0xe9, - 0x6d,0xfc,0xce,0x4e,0x17,0xb1,0xd9,0x8c,0x42,0x53,0x96,0x45,0x8b,0xa4,0x73,0xb1,0xce,0x5a,0x04,0x65, - 0xa1,0x09,0xca,0xc2,0x12,0x94,0x45,0x87,0xa0,0x2c,0xba,0x04,0x65,0xd1,0x21,0x28,0x8b,0x5e,0x82,0xb2, - 0xf8,0xef,0x09,0x4a,0x33,0x20,0x4d,0x51,0xca,0x4b,0x1c,0xdc,0xc8,0x6e,0xc0,0xfc,0xce,0x8a,0xd8,0xab, - 0x41,0x3b,0x6b,0x14,0x6e,0x71,0xa2,0x56,0x7d,0x61,0x4b,0xca,0xcb,0x26,0x33,0x63,0xea,0xf4,0x8c,0xff, - 0xec,0x05,0x84,0x91,0xc3,0x39,0x07,0x51,0x8e,0x5a,0x17,0x57,0x03,0x3b,0xbb,0xb7,0xb8,0xaf,0x08,0x0e, - 0x07,0xbe,0xfe,0x95,0xba,0xba,0x61,0x4a,0x2c,0xc5,0x7d,0xf6,0x75,0x97,0x53,0xa7,0x83,0x3d,0x02,0x48, - 0xe8,0xb8,0xe9,0x0c,0x39,0xfc,0x1c,0x1b,0xef,0xc9,0xbd,0xcc,0x8f,0x8c,0x4e,0x43,0x74,0x0e,0x93,0x36, - 0xcb,0x24,0xed,0x05,0x6d,0x1c,0x67,0xc3,0xb0,0xdb,0x44,0xbb,0x3b,0xda,0x44,0x96,0x31,0xc8,0x6b,0x9b, - 0xff,0xd9,0x80,0x6e,0x26,0x12,0xe9,0x01,0x87,0xff,0x39,0x94,0x38,0x84,0x6c,0x3f,0xa7,0x61,0xa5,0xe0, - 0x88,0x3f,0xa5,0x09,0x76,0xa8,0x89,0xc4,0x76,0x1b,0xb1,0x61,0xd3,0x3c,0xc1,0x07,0x2d,0xba,0x8e,0x04, - 0x8e,0x8e,0x75,0xd9,0xb1,0x63,0x64,0x77,0xe9,0x9d,0x5b,0x98,0xfc,0x56,0xa5,0xc2,0xe0,0xb6,0x67,0x1a, - 0x8e,0xa4,0x84,0x68,0x09,0xab,0x96,0x32,0xcf,0x25,0x6f,0xc7,0x8d,0xf6,0xbe,0xb0,0xd0,0xe9,0x59,0x6d, - 0xdf,0x53,0x77,0xee,0xa9,0x40,0x93,0xec,0xd9,0xf0,0xaa,0x4a,0x97,0x8f,0x8d,0xcf,0x81,0x7b,0x85,0xcd, - 0x84,0xce,0xb5,0x6a,0x4f,0xaf,0x88,0x4d,0xe3,0x72,0x5e,0xb0,0xa5,0x79,0x4f,0xa8,0x7f,0x37,0xd7,0x12, - 0x8c,0xdc,0x0f,0xc8,0x95,0x26,0xa5,0xb7,0x00,0xa5,0xe7,0xd9,0xc4,0xbb,0xba,0xc5,0x2f,0xa5,0x62,0xfd, - 0x25,0xec,0x91,0x79,0x37,0xbe,0xae,0xc4,0x57,0x10,0x1a,0x0b,0x53,0xc3,0x1c,0xd0,0xc6,0xed,0x84,0x11, - 0xf7,0x74,0x0b,0xaa,0x27,0xa6,0x95,0x8d,0x4f,0x59,0xd9,0xee,0xe4,0x1a,0x1e,0x10,0x57,0x03,0x97,0x4b, - 0x21,0x44,0xa5,0x4f,0xa2,0xc0,0xfb,0xa3,0x4d,0xb2,0x94,0x8b,0xac,0x0f,0x79,0xad,0x80,0xc9,0x35,0x99, - 0x13,0x81,0x62,0xbc,0xaf,0xa9,0x45,0x76,0x5a,0xfa,0xaf,0xab,0x6d,0xfc,0x5a,0x79,0x75,0x0e,0x23,0xef, - 0x5a,0xb9,0xb0,0x64,0xfb,0xd7,0xeb,0xb3,0xec,0xc8,0xb2,0x48,0x31,0xc7,0xe9,0xed,0xba,0x6e,0x19,0x53, - 0x57,0xe1,0x39,0x69,0xcc,0x63,0x4d,0x8b,0xc6,0x5f,0xd8,0x24,0x28,0x89,0x6d,0x04,0xc0,0x31,0x9c,0xc3, - 0x15,0x88,0xc1,0x2d,0xf2,0xa0,0x92,0x58,0xd3,0xec,0x43,0x1d,0x07,0xa7,0x97,0x20,0xf0,0xef,0x43,0xc3, - 0x50,0x40,0x4a,0xce,0x95,0x17,0xde,0xde,0x8d,0xa7,0x45,0xd8,0x15,0x99,0x48,0x0d,0x11,0xd7,0x31,0xd2, - 0x66,0xda,0x46,0x75,0x02,0xc1,0x61,0x79,0xdb,0x21,0x31,0xe9,0x95,0x1b,0xee,0x85,0x35,0x63,0xee,0x1a, - 0xd4,0x8a,0x27,0xfc,0x58,0xf9,0x9f,0x5a,0xcd,0x21,0x8b,0x06,0x08,0xed,0xf5,0xa8,0xca,0xda,0x8c,0xb9, - 0xe7,0x4b,0xdb,0xd1,0xc9,0xd2,0xb9,0xf1,0x07,0x17,0x39,0x37,0x22,0x7a,0xad,0x0c,0xf5,0x17,0xdf,0xdd, - 0x9b,0x22,0x44,0xa1,0x91,0x7e,0xa9,0xc0,0xdd,0xac,0xee,0x51,0x53,0x9e,0x93,0x6a,0x2b,0xfa,0x85,0xdb, - 0xdc,0xbf,0xae,0xee,0x1f,0xdc,0xff,0xe7,0xbd,0x73,0x15,0xfc,0x2a,0x8f,0x41,0xd4,0xc9,0xfc,0xda,0x65, - 0x7e,0xed,0x5f,0x10,0xba,0xd4,0xb0,0x00,0xef,0x3d,0x03,0x42,0xd9,0xd5,0xce,0x53,0x37,0xcb,0xee,0xa2, - 0x58,0xdb,0x37,0xd1,0x6a,0x64,0x55,0x05,0x0d,0x32,0x61,0xe5,0x18,0xce,0xbe,0xe7,0xbe,0x8f,0xa7,0xd7, - 0xcf,0xf0,0x63,0x99,0x7c,0x2c,0xff,0x20,0x42,0x27,0x82,0xe1,0x6a,0xdd,0x53,0x92,0x8d,0xef,0x3e,0x48, - 0x77,0x2e,0xa0,0x04,0x0e,0x7e,0x2d,0x82,0x7b,0xdf,0xdc,0x8d,0xef,0x3e,0xa0,0x52,0x84,0x35,0xf4,0xbb, - 0xfa,0x58,0xba,0xf2,0xce,0x0b,0x67,0xf0,0x7f,0x0e,0x0f,0x46,0x41,0xf4,0xcd,0x01,0x23,0xc2,0x4b,0x1b, - 0xf2,0x6e,0x56,0x65,0xd9,0xef,0x59,0x88,0x48,0xcb,0x0b,0x9b,0xe8,0xa2,0x8a,0x9b,0x8b,0xc0,0xd5,0x79, - 0x91,0xcc,0x45,0x0c,0xa3,0x2c,0xa5,0x18,0xb0,0xd1,0xcc,0x35,0xe7,0xd0,0xd1,0xac,0xa8,0x57,0x8a,0x4b, - 0x38,0x75,0xad,0x82,0x3a,0x54,0x9d,0xf5,0xd4,0x7c,0x91,0xd6,0xde,0xb5,0x97,0xea,0xb4,0x48,0xee,0xed, - 0x87,0xbf,0x5e,0x45,0xb4,0x16,0x57,0x45,0x32,0xed,0x0d,0x69,0x62,0xd7,0xed,0xd4,0x37,0x29,0xf0,0x6d, - 0x9b,0xc6,0x30,0x94,0xf8,0x61,0xb9,0x84,0xe5,0x74,0x4d,0xac,0x12,0x22,0xb0,0xc2,0xe4,0xf5,0xe8,0xd6, - 0x2a,0x75,0x6c,0x9b,0x83,0xa8,0xfd,0xe1,0x9e,0xd3,0x3b,0xd2,0xe7,0xef,0xa9,0x77,0xbf,0x3e,0x0a,0x8f, - 0x1f,0xee,0xff,0xfb,0x04,0x3d,0xfc,0xf8,0x87,0x3d,0x7c,0x5f,0xa8,0x60,0xff,0xce,0x61,0x80,0x6a,0x5f, - 0x94,0x57,0xa6,0x5a,0xaa,0xeb,0xd3,0xb6,0x4c,0xc6,0x2a,0xe0,0xd5,0xbb,0xb6,0xbe,0xc8,0xc6,0x72,0x51, - 0x0f,0x89,0xaf,0x03,0x51,0xbd,0xcf,0x71,0xd6,0xab,0x7d,0x73,0x99,0x62,0xa0,0xee,0x14,0xc9,0x71,0xe0, - 0xad,0x89,0xe3,0xe1,0x02,0x73,0xe5,0x61,0x70,0xa2,0x5e,0xa3,0x94,0xd8,0x5f,0x1e,0x31,0x8c,0x51,0xa6, - 0x00,0x1b,0x55,0xa1,0x33,0xd8,0xa8,0x1b,0x72,0x78,0x31,0xee,0xb6,0xe9,0x3f,0xe8,0xf0,0x94,0xf6,0xae, - 0x5d,0x93,0xf1,0x58,0x22,0x11,0xa3,0x4d,0x79,0xe2,0x3c,0x77,0x47,0x33,0xd2,0xfd,0x37,0xb9,0x41,0x48, - 0x7c,0xce,0xa7,0xd4,0xa9,0x27,0x45,0x72,0x23,0xc4,0xc4,0xcb,0x8c,0x08,0x67,0x02,0x35,0x2a,0x78,0x9e, - 0x13,0xf3,0xd9,0x77,0xc3,0x6a,0x9d,0xcf,0x61,0x98,0x41,0x74,0x3d,0x41,0xd1,0x74,0xc5,0x93,0xf4,0x3e, - 0x5f,0x22,0xc1,0x5c,0xf7,0xcb,0x99,0x59,0x05,0xd1,0x0e,0xec,0xab,0xf0,0xca,0x6d,0x3e,0x93,0x7b,0x60, - 0xd9,0x7b,0x43,0x81,0xba,0x6f,0x25,0xe4,0xe7,0x05,0x0d,0x66,0xaa,0x77,0x1d,0xd1,0x23,0x27,0xca,0x5c, - 0xfe,0xd8,0xdb,0x91,0x56,0xb8,0xfb,0xf8,0x53,0xe1,0x25,0xc0,0x95,0x4b,0x52,0x7e,0x28,0x3e,0x16,0xe5, - 0x55,0xa1,0x2b,0x45,0x5a,0x27,0x7a,0x7e,0x7c,0xae,0xfa,0x82,0xe3,0xc7,0xef,0x0a,0xe5,0x5d,0xc2,0x88, - 0x0f,0x4f,0xe7,0xf9,0x2c,0x9b,0x5c,0x4f,0xe6,0x19,0xee,0x9d,0xa6,0x3e,0x15,0x1b,0xf5,0x86,0x20,0xf2, - 0xf8,0x3f,0xbf,0x5e,0x0d,0xef,0x9c,0xdc,0x53,0x8f,0x21,0x2b,0x3b,0xe5,0xbd,0x75,0x7a,0x4a,0xe4,0xd8, - 0xcd,0x46,0x7d,0xa0,0x24,0x47,0xa6,0xda,0x2b,0xfc,0xc4,0xb3,0x47,0x3d,0xef,0xcf,0xfd,0xe9,0xe7,0x27, - 0xc5,0x65,0x5e,0x95,0x85,0xbe,0x0f,0x7d,0xb7,0x95,0x00,0x49,0x1e,0xf7,0x54,0xbd,0x28,0x92,0xe7,0xc5, - 0x60,0xd0,0x9f,0xdb,0x06,0x78,0xf5,0xb4,0x48,0x3e,0x50,0x59,0xed,0x52,0x54,0xa4,0x97,0xf9,0x39,0x38, - 0x85,0xe1,0x8a,0x26,0xec,0xe1,0x39,0x5f,0x38,0xd5,0x2a,0xff,0xaa,0x48,0x9e,0x52,0xf9,0x7b,0x8b,0x3a, - 0xcf,0xd6,0x84,0x7b,0xa6,0x54,0x44,0xdb,0x84,0x3d,0x2d,0x22,0xf5,0x52,0xb2,0x9f,0x7a,0x1e,0x8d,0x28, - 0xb9,0xf3,0xf5,0xf0,0x00,0xd8,0x4d,0xbd,0xdd,0xce,0xcf,0xa6,0xe7,0xd9,0x3d,0xce,0x7c,0xb4,0x9d,0x49, - 0x70,0x50,0xd1,0x39,0x87,0x6c,0x3a,0xcd,0xcc,0x1b,0xae,0xdc,0x28,0xd4,0x8f,0xba,0x2b,0xf9,0xf2,0x82, - 0xf6,0xd6,0x3a,0x5f,0xa6,0x53,0xfa,0x53,0xd2,0x9f,0xb2,0x76,0x5d,0x82,0x53,0x7b,0x59,0xeb,0x4f,0x7e, - 0x2a,0x92,0x90,0xbf,0x99,0x5c,0x54,0x44,0xa2,0xfc,0x7a,0xef,0xd7,0xe9,0x9e,0xd7,0xfb,0x9b,0xcd,0x90, - 0x6f,0x1a,0x8e,0xd4,0x0f,0x50,0x62,0x83,0xaa,0xfa,0x50,0x70,0x94,0x4d,0x60,0xe5,0x67,0x6c,0x0f,0xd1, - 0x7f,0x2d,0xf3,0x33,0xc2,0x27,0x3a,0x46,0x43,0xa0,0x6e,0x70,0xad,0xb3,0x47,0x09,0xa3,0xb2,0x83,0x0d, - 0xe1,0x16,0x3d,0xcb,0xdb,0x31,0x01,0xd1,0x83,0x7d,0xfb,0x3d,0x43,0xfd,0xb3,0x22,0xf2,0xdc,0xce,0xd1, - 0xfe,0xef,0x85,0xfa,0xbe,0x50,0xbf,0x79,0x28,0xa8,0x43,0x0b,0xd0,0x18,0x7f,0x87,0x61,0xcd,0xef,0xd4, - 0x1e,0x16,0xb5,0x0f,0x86,0xce,0xe7,0xe5,0x59,0x3a,0x07,0x4d,0xca,0x88,0x0a,0xf3,0x22,0x49,0xc0,0xfd, - 0xe0,0x05,0x87,0x59,0x71,0x39,0xfc,0xf1,0x87,0x27,0xa7,0x4f,0x5e,0xfd,0x18,0xa9,0xdf,0x09,0x96,0xbf, - 0x6b,0x81,0xc8,0xe9,0x29,0x32,0x1f,0x3f,0xf9,0xf1,0xfd,0xeb,0xd7,0x2f,0xde,0x9d,0x7e,0xfb,0xe2,0xf5, - 0xa3,0x87,0x2f,0x4e,0x9f,0xbd,0x7e,0xfd,0xfd,0xe9,0xa9,0xfa,0xb6,0x1f,0x70,0xdf,0x5d,0x2f,0xce,0x4a, - 0x6a,0xf4,0x7d,0x28,0x4f,0x51,0x7f,0xdf,0xf4,0xf5,0xcc,0x28,0xd7,0xb9,0xa9,0x39,0x1a,0x7d,0x7f,0x4b, - 0xcd,0x19,0x17,0xa7,0x9f,0x68,0xfc,0xae,0x3d,0xeb,0x1e,0xff,0xad,0x83,0xe9,0xe3,0x92,0xed,0x1e,0x84, - 0x61,0x43,0x6c,0xb7,0x8f,0xbf,0x1e,0x4c,0xbf,0xcb,0x41,0x5b,0x74,0x55,0x50,0x76,0x2a,0xff,0x1b,0x5a, - 0xd6,0xd6,0x37,0x5e,0x41,0xac,0x7f,0xab,0x2c,0x21,0x8b,0xb4,0xf2,0x17,0xf2,0xb3,0x1d,0x54,0xd9,0x46, - 0x9b,0x1a,0xfc,0x5c,0x24,0xe7,0xea,0xdf,0x60,0x08,0x7e,0x29,0xb6,0x3e,0xcf,0xa7,0xc9,0xbf,0x89,0x6e, - 0xd3,0xd7,0x42,0xae,0xce,0xa0,0xc6,0xdf,0x8c,0x7e,0x29,0xda,0x7d,0x7c,0xb7,0x3a,0xeb,0xe9,0x26,0x95, - 0xd6,0xf1,0x06,0xa9,0xb9,0xd6,0x27,0xe2,0x0a,0xd9,0xfd,0x6a,0x15,0xda,0xef,0xd4,0xd6,0x27,0x72,0x29, - 0xb8,0xdf,0x3f,0xef,0xce,0x70,0xfb,0x88,0xce,0x3c,0xce,0x96,0x22,0x6f,0xef,0xd4,0x50,0x94,0x0d,0x11, - 0xd6,0xfd,0xf7,0x02,0xba,0x0e,0x5b,0x81,0x2b,0xdb,0x49,0x65,0x5d,0x3b,0x29,0xbe,0xf8,0x7e,0x65,0x6f, - 0x09,0xb4,0x0d,0xb3,0xe1,0x3e,0x4f,0xe7,0xbf,0x0a,0x44,0x86,0xce,0xaa,0xce,0x91,0xef,0x8c,0xb2,0xf4, - 0xf4,0xc0,0x99,0x47,0x5f,0xe8,0xc9,0xd7,0x59,0x75,0xef,0xf3,0xd4,0x37,0x75,0xf2,0xa5,0x58,0xfa,0x6e, - 0xcf,0x6c,0xbe,0x30,0x17,0x7b,0x16,0xb5,0xb9,0x91,0x44,0xbe,0xd2,0xb7,0x67,0x95,0xf2,0xea,0xae,0xd3, - 0xf2,0x0b,0xb9,0x6b,0xb5,0xda,0xa9,0xe6,0x0e,0x4c,0x3f,0x95,0xcd,0x18,0x61,0x70,0x0c,0x2a,0x4f,0x37, - 0xd1,0x36,0xbc,0x35,0x97,0x78,0x6e,0x99,0x38,0xb7,0xea,0xd1,0xd7,0x91,0xfa,0x49,0x55,0x0a,0x07,0x0e, - 0x7d,0x0f,0xa9,0xbd,0x22,0xd6,0x26,0x38,0xcf,0x32,0xd6,0xaa,0x48,0xa2,0x89,0xc0,0xee,0x8a,0x1d,0xcd, - 0xa9,0xd1,0xa9,0x97,0xc0,0xb7,0xca,0x9a,0xd7,0x56,0x38,0xf3,0xda,0x4b,0xe3,0xdb,0xf4,0xfc,0xde,0x6c, - 0xc7,0x43,0x87,0xa9,0x91,0x6a,0xaa,0xe4,0x86,0x97,0x22,0x46,0x38,0xbf,0x59,0x7e,0xbe,0xe2,0x1b,0xd9, - 0x63,0x20,0xdd,0x51,0xa3,0x43,0x96,0xc0,0xfa,0xb7,0x07,0x73,0xf6,0x4f,0xcb,0x46,0xf5,0xa1,0x79,0xa2, - 0x7c,0xc2,0xac,0x72,0x50,0x4a,0x0d,0x6b,0xbd,0x5e,0xe7,0xc2,0x15,0x83,0x8d,0xf9,0x7a,0x0e,0x8e,0xc0, - 0x22,0x6c,0x96,0x5c,0x88,0xe3,0x4c,0xea,0x78,0xd5,0x11,0x95,0xc7,0x9b,0x34,0x1a,0xea,0x46,0x55,0x55, - 0xd2,0xb9,0x40,0x48,0xe5,0x55,0x07,0x35,0x54,0xd4,0xf8,0x71,0x80,0x3d,0x1b,0x20,0x7a,0xf7,0xd2,0xb3, - 0xd7,0xd0,0xf1,0xde,0x90,0xc2,0xf1,0xcb,0xf0,0x50,0xc2,0xb5,0x2d,0xa8,0xe0,0x5c,0x50,0x67,0x30,0xe3, - 0xe8,0x31,0xe7,0xd3,0xc6,0x80,0x15,0xcc,0x08,0x8e,0xc2,0xbc,0x52,0x59,0x7f,0x2c,0xf0,0x63,0x5c,0x88, - 0x66,0x43,0x1b,0x59,0x99,0xc4,0xfe,0xfe,0x28,0xe2,0xbb,0x7c,0x6d,0x96,0xb5,0x49,0x47,0x50,0x7c,0xed, - 0xe6,0x8a,0x19,0x87,0x17,0x89,0xbe,0x87,0x5c,0x82,0x5f,0x8c,0x74,0x84,0xce,0x4c,0x22,0x74,0xca,0xb0, - 0x62,0x7e,0x34,0x83,0x89,0x11,0x9a,0xde,0x05,0xcc,0x34,0x43,0x43,0xb2,0x46,0x04,0xf7,0x2d,0x2a,0xcf, - 0x21,0x8f,0x29,0xcf,0xf8,0x8c,0x33,0x17,0x81,0xab,0x14,0x78,0x49,0x63,0x16,0xd8,0x53,0x81,0xf3,0x10, - 0xa3,0x6c,0x3b,0xb5,0x04,0x23,0x1e,0xd7,0xc3,0xb4,0x20,0x4d,0x03,0x7d,0x4a,0x10,0x56,0x5f,0x94,0xab, - 0xf9,0x94,0xf6,0x2a,0xcd,0x60,0x03,0xd8,0x52,0x75,0xb5,0x8d,0x48,0x25,0xbc,0x8a,0xc1,0x15,0xd9,0x92, - 0xd7,0xfc,0x17,0x8d,0x1f,0x2e,0x17,0xec,0x68,0x4c,0xd8,0xea,0x28,0x94,0x8b,0xa2,0x69,0xe8,0x81,0xbe, - 0x6c,0x7a,0x2b,0x32,0x4a,0x18,0x3e,0x6e,0x4b,0x84,0x24,0x06,0xa3,0xa5,0x24,0x93,0x66,0x13,0x77,0xb3, - 0xbd,0x5b,0xa3,0x7b,0x35,0x42,0xda,0xe1,0x17,0xeb,0x72,0x24,0xda,0x1e,0x84,0xad,0x26,0xda,0x24,0x04, - 0x84,0xa9,0xb2,0xd2,0x97,0xfa,0xb6,0xe6,0x2e,0x43,0x38,0x50,0xa4,0x5e,0xa5,0xf3,0x8f,0x38,0x20,0x46, - 0xb5,0xb7,0x0b,0x38,0xf5,0x96,0x4b,0xb3,0x7c,0x49,0x79,0x16,0x69,0x19,0x43,0xe3,0xcb,0x18,0xee,0xa0, - 0xe7,0x08,0x08,0x4f,0xc8,0x9a,0x7e,0xa8,0x2f,0xaa,0x55,0xb9,0xdf,0x91,0xdb,0x6e,0xe6,0xea,0xc3,0xfd, - 0x0f,0xe5,0x3a,0x2e,0xb9,0xfd,0x78,0x52,0xe1,0x1a,0xac,0x5e,0x56,0x66,0x34,0x91,0xc0,0x2c,0xb7,0x30, - 0x7d,0x3b,0xc5,0xf8,0xb1,0x4e,0x89,0x1b,0xdf,0xef,0xd5,0x52,0x20,0xcd,0x38,0x8b,0x1f,0x8b,0x14,0x87, - 0xb8,0xb8,0xde,0x6d,0x35,0xc1,0x86,0x4a,0x3e,0x10,0x01,0x78,0xe7,0xf6,0x02,0x7b,0x41,0x1d,0x9c,0x24, - 0xcf,0xa9,0x10,0xf5,0x88,0xa9,0xd0,0xad,0x43,0x49,0x74,0xc5,0x84,0x57,0x7e,0x62,0xf3,0x69,0x7b,0x97, - 0x5e,0x63,0x92,0x1a,0x9b,0x64,0xed,0xdb,0x76,0xda,0x48,0x23,0x5b,0xaf,0x7b,0xc2,0xe7,0x37,0xda,0x8c, - 0x91,0xc8,0xdb,0x4b,0xd8,0xd4,0x45,0x6d,0x7f,0x91,0xc6,0x48,0x3e,0xe1,0x2d,0x02,0xa5,0x08,0x9c,0x46, - 0x52,0x62,0x40,0xba,0x17,0xfe,0xb1,0x1e,0xf1,0x38,0x3d,0x89,0xf8,0x0e,0xa5,0x24,0x1d,0xa7,0xc6,0xe9, - 0xbd,0x8e,0x3a,0x37,0xe2,0xd5,0xd1,0x98,0x38,0xb9,0xfa,0xc4,0xee,0xd8,0x0d,0xc6,0x2d,0xe1,0x4e,0xe9, - 0x61,0x91,0x35,0x17,0xe5,0x94,0x1f,0xe5,0xba,0x6b,0x3c,0x4d,0x74,0xb4,0x83,0xfe,0x89,0xd9,0x1e,0x4e, - 0xdf,0xb5,0x01,0x86,0x60,0xe6,0x61,0xaa,0x06,0x26,0x92,0x39,0x5b,0x3c,0x98,0xf6,0x2f,0x89,0xa5,0x49, - 0x1e,0x8b,0xba,0xb4,0x52,0xab,0x4a,0xcd,0xba,0xca,0xda,0x2e,0xcd,0x0d,0x08,0x20,0x9c,0x3d,0xc5,0xe5, - 0x56,0xc4,0xfb,0xe2,0x5c,0xe3,0x38,0x72,0x6c,0x3e,0xd3,0x43,0xb3,0x12,0x95,0x67,0x03,0x8a,0x83,0x78, - 0xf5,0xdf,0xa3,0x68,0xd5,0x22,0x0b,0xfd,0xbc,0xf0,0x07,0x44,0x14,0x37,0x86,0x7c,0xae,0x62,0xeb,0x56, - 0xf8,0x92,0xc8,0xf7,0xf4,0x3c,0x3b,0xba,0x48,0x8b,0x22,0x9b,0xaf,0xd7,0xbb,0xef,0xc3,0x76,0x12,0xe8, - 0x6e,0x73,0x47,0x53,0x3b,0x87,0xd0,0x5a,0xdd,0x54,0x2b,0x9c,0xc1,0x7c,0x6d,0x53,0x3b,0xd7,0xca,0x99, - 0xc2,0x9e,0xfe,0x19,0x07,0xc0,0x1f,0xe0,0xec,0xe7,0x6c,0x4b,0x2e,0x2b,0x46,0x7d,0xed,0x8a,0xd4,0xa2, - 0x4a,0x2e,0x69,0x9a,0xe9,0x30,0xba,0x3f,0xd2,0x0f,0x87,0x43,0x70,0xa8,0x5c,0x2a,0xf9,0x41,0xb5,0xab, - 0x5f,0xa0,0x48,0xdd,0xe8,0x4a,0x20,0xec,0xd9,0xdc,0x32,0xa9,0x84,0xb3,0x17,0x79,0xcd,0xf3,0xa9,0x1f, - 0xb5,0x85,0xef,0x79,0x95,0xe8,0x04,0x73,0x11,0x30,0x91,0xd2,0xf3,0x56,0x2b,0xe7,0x95,0xdc,0xaa,0xfc, - 0x43,0x44,0x3c,0x65,0xcb,0xa9,0xf1,0xdc,0x84,0x4d,0xa6,0x0f,0x56,0x15,0x03,0xc5,0x75,0xa5,0xce,0x64, - 0x68,0xc4,0x8c,0x9d,0x56,0x1d,0x41,0x93,0x16,0xa7,0x0e,0x02,0x1b,0x90,0x9a,0x85,0x57,0x84,0xa1,0x82, - 0xff,0xc7,0x56,0xeb,0x19,0xc0,0xc5,0xca,0xae,0xe2,0x2c,0xf2,0x0a,0x55,0x08,0x77,0x2b,0x85,0x8a,0xdb, - 0x0a,0x19,0x5b,0x3b,0x56,0xc7,0x67,0x49,0xd5,0x2a,0xa7,0x60,0x18,0x01,0xc1,0xe6,0x56,0xdc,0xc0,0x86, - 0xd9,0xcf,0x4a,0x6e,0xa3,0x3a,0x62,0x48,0x7d,0xcf,0x7f,0x3f,0x72,0x30,0xa9,0x4f,0x0c,0xb5,0xef,0xf8, - 0xef,0x43,0x9c,0x1d,0x77,0xf0,0xe7,0x75,0x1f,0x5d,0x6c,0xce,0xb9,0x05,0xe2,0xbf,0xb3,0x67,0xc4,0x29, - 0x63,0x2b,0xa2,0xc5,0xe4,0x1c,0x73,0x09,0xc6,0x66,0x98,0x93,0xab,0x71,0xa8,0xcf,0x44,0x3a,0x14,0x77, - 0x77,0x2b,0x7e,0x90,0xc3,0x06,0xb2,0x06,0x4e,0xc2,0x83,0x24,0x21,0x1e,0x1a,0x27,0xe1,0x41,0x33,0x34, - 0x44,0xf9,0x71,0x12,0x1e,0xf4,0x81,0xc4,0x95,0xb9,0x3a,0xdc,0xa7,0xde,0x17,0x9a,0xca,0x9c,0x9c,0x19, - 0x2a,0x9d,0xd8,0xa4,0xbd,0xbd,0x3b,0xba,0x21,0x89,0xf5,0x66,0xa9,0xd7,0x69,0x4e,0xe7,0xbe,0xab,0xc7, - 0x1e,0xe3,0x60,0xa5,0x34,0x31,0x9f,0x5d,0x3d,0xf6,0xdf,0x29,0xf3,0x39,0x21,0x2a,0x0d,0x10,0x5e,0x91, - 0x6e,0xaa,0xd3,0x20,0x40,0xdc,0xde,0x13,0x41,0xa1,0x19,0x73,0x39,0xa2,0x41,0x1a,0x8c,0x25,0x0e,0xfd, - 0xd7,0x8e,0xcf,0xcf,0xee,0x9b,0x42,0xc4,0x16,0x06,0xcc,0xe1,0xb0,0xa6,0x03,0xb1,0x0c,0x03,0x77,0xc5, - 0x65,0xcf,0x81,0xd9,0x73,0x08,0xb7,0xd0,0xe7,0x28,0x4b,0xf4,0x59,0xec,0xee,0x9e,0xda,0xb0,0xeb,0x95, - 0xd7,0x1f,0xdc,0xff,0xd7,0xd7,0xbb,0x08,0x8e,0xfb,0xca,0xa3,0x84,0xec,0x54,0x1a,0x13,0x33,0xf3,0x19, - 0xc2,0xe3,0xbc,0xf6,0x4f,0xfa,0x0e,0x7d,0x2e,0x9f,0x2a,0x8f,0x71,0xfc,0x97,0x8e,0x35,0x64,0x93,0x22, - 0x8f,0xa5,0x93,0xcb,0xaa,0x19,0x4a,0x13,0x0d,0xa0,0x1c,0xd6,0xaf,0x49,0xbc,0x7e,0xea,0xab,0xe8,0x94, - 0x15,0xad,0x18,0x63,0x70,0x03,0x41,0x51,0x73,0x51,0x95,0x57,0x74,0x80,0x3c,0x62,0xad,0xf6,0x5d,0xf9, - 0x6c,0x87,0xa6,0x6e,0x47,0xc3,0xf4,0x0e,0x22,0xe6,0xb6,0x97,0x13,0x16,0x29,0xd1,0x86,0xf0,0x11,0x55, - 0x7e,0x7d,0x63,0xe1,0x72,0x30,0xf8,0x3d,0x6c,0x75,0x11,0xfd,0x2f,0x97,0xa1,0x9e,0x1e,0x48,0x00,0x8a, - 0xd5,0x12,0xb0,0xe4,0xa2,0xf5,0xd1,0x31,0xd2,0x9a,0x13,0xe1,0x90,0x7b,0x1c,0x76,0x32,0x82,0xe2,0x51, - 0x1b,0xd8,0x20,0xb3,0x08,0x61,0x12,0x17,0x76,0xd2,0x25,0x2a,0x59,0x0b,0x7a,0x0d,0xab,0xef,0x83,0xb0, - 0xfd,0xde,0x48,0x09,0x64,0xe3,0x46,0x9d,0x2e,0x79,0xfd,0xfe,0x0c,0x7b,0x8e,0x2d,0x63,0x20,0x2c,0x03, - 0x5f,0xa0,0xfb,0x6d,0x33,0xc1,0x62,0xf4,0xf5,0x9f,0xc6,0x85,0xcb,0x1a,0x9c,0xd4,0x41,0x8b,0x07,0xb4, - 0x6b,0x86,0xeb,0xee,0xc8,0xdf,0x7d,0xed,0x9a,0xb6,0x76,0x61,0x27,0x41,0xa4,0x2f,0x61,0xa4,0x5c,0x85, - 0xb5,0xb7,0xd3,0xfd,0x89,0x6a,0xef,0xf9,0xa2,0x3d,0x89,0x26,0x02,0x66,0x67,0x86,0x44,0xe2,0xb0,0x25, - 0x9d,0xe1,0x4d,0xe0,0x21,0x99,0x5d,0xbd,0x17,0x80,0xa5,0x24,0xbd,0x5a,0x51,0xe1,0xf8,0x96,0xc5,0xd6, - 0x51,0xae,0x93,0xe4,0x23,0x2e,0xa4,0x66,0xb8,0xe5,0x27,0xa0,0xae,0x77,0x2d,0xd3,0xbf,0xa3,0xca,0x5a, - 0x23,0x8e,0x8a,0x6f,0x1e,0x56,0x83,0xc1,0x51,0xc5,0x17,0xb0,0x4d,0xbf,0xe1,0x9a,0xa2,0x82,0x16,0x84, - 0x0a,0xe9,0xd8,0xd6,0xc5,0xde,0xa1,0x3a,0x80,0x0c,0x87,0x0f,0xba,0x23,0x73,0x4f,0x66,0x34,0xfa,0x84, - 0x5d,0x8e,0x93,0xe1,0x40,0x3d,0x0b,0x11,0x23,0x11,0x58,0x40,0x64,0x35,0xad,0xf1,0x52,0xb7,0xfd,0xc1, - 0xc2,0x58,0xdd,0x61,0x56,0x13,0x43,0xc5,0x6d,0x7b,0xb6,0x35,0xda,0xd5,0x72,0x34,0x46,0x12,0xeb,0x75, - 0xce,0x17,0xe1,0xd9,0xad,0xd3,0x82,0x16,0xf1,0x01,0x35,0xb5,0xb6,0xf8,0x2b,0xd9,0xb2,0x95,0xde,0x74, - 0x93,0x33,0xd9,0xdf,0x7a,0xfb,0xb3,0xad,0xab,0x13,0xa1,0x3e,0x0a,0x33,0xc3,0x84,0xa9,0xbb,0xc6,0x52, - 0xe3,0x4f,0xed,0x6c,0xb9,0x78,0xfd,0xd6,0x16,0x36,0x9d,0xe9,0xc8,0xd0,0xc5,0x3e,0x00,0xf0,0x10,0x22, - 0x4f,0x84,0x7f,0xe2,0x40,0x8c,0xd1,0xaa,0x65,0x5b,0x84,0xf6,0x47,0x3b,0xcc,0xdf,0x5a,0xfa,0xf3,0xb0, - 0xbb,0x54,0x0d,0xc1,0xfd,0xb4,0xbc,0xfa,0xec,0x7a,0xe9,0xc1,0x21,0x8c,0xd0,0xa3,0x8c,0x68,0xbe,0xc7, - 0x46,0x77,0xb4,0x5e,0xaf,0x42,0x9b,0x69,0x8e,0x78,0x61,0x5e,0x47,0x7f,0xa9,0x73,0x9d,0xbd,0x3d,0x6a, - 0x1d,0xc4,0x87,0x1b,0xe1,0xd9,0x9e,0x10,0x61,0x92,0x15,0xab,0x45,0x66,0x64,0x39,0xaa,0x23,0xdb,0x81, - 0xc2,0x26,0x3e,0x57,0x35,0xfe,0x6e,0xd4,0x1b,0x2a,0x8e,0x1d,0x06,0xc6,0x7c,0xf4,0x29,0x0b,0xdf,0x79, - 0xd2,0x56,0xe1,0xf2,0x1f,0x53,0x09,0x04,0x15,0xf0,0x79,0x66,0x4d,0xd1,0xf0,0xf1,0xd7,0x1f,0x33,0xa0, - 0x27,0x28,0x40,0x5e,0xdb,0x29,0x89,0xfa,0xc2,0x06,0x24,0xad,0x06,0xdc,0x65,0xdf,0xc9,0xcd,0x29,0xcb, - 0x79,0xa4,0x34,0x46,0xa0,0x7d,0x99,0xaf,0x2a,0xa5,0x1d,0xf6,0x7f,0x2c,0x58,0x25,0x6d,0x5e,0x9f,0xcc, - 0x17,0x71,0x25,0x1c,0x1b,0x91,0x9a,0xd9,0x0c,0xef,0xb9,0xbc,0x6f,0xd8,0x5d,0x94,0x1d,0xcc,0xdb,0xf6, - 0x3d,0x2e,0x46,0x88,0x5c,0x5c,0xa3,0x0d,0x7b,0x92,0x89,0x7e,0x50,0x75,0xd7,0x96,0x87,0xb2,0x3a,0x29, - 0x84,0x19,0x21,0xa9,0xda,0xf6,0xdf,0x47,0x44,0x03,0x62,0xdd,0xe0,0x67,0x17,0x0d,0xef,0xb0,0x22,0x32, - 0x04,0xa9,0x9a,0x51,0xc7,0xb4,0xa0,0xce,0xbb,0xb0,0x49,0xf7,0x0f,0xa1,0x01,0x1e,0xce,0x2d,0x2e,0x40, - 0x04,0xd1,0xc7,0x00,0xca,0x8c,0x43,0x39,0x84,0xa5,0x2a,0x69,0x13,0x29,0xf3,0x1e,0xb7,0x99,0x2d,0xe3, - 0x92,0xb7,0x15,0x68,0x61,0xb7,0x8f,0x34,0x95,0xfa,0x77,0x77,0xc3,0x1c,0x6b,0x67,0x22,0x27,0x0c,0x4f, - 0x65,0xe8,0x47,0x5a,0x5c,0xbb,0x5e,0x9b,0xf0,0xac,0xce,0xb4,0x8f,0xcb,0x7b,0xef,0x7c,0xd3,0x82,0xb6, - 0x8b,0x74,0xf5,0x78,0xab,0x94,0x54,0x44,0xe9,0x4a,0x78,0x2e,0x7e,0x3c,0xd5,0x97,0x72,0x87,0xe6,0xd1, - 0x88,0x53,0xf9,0xa2,0xa7,0xdb,0xba,0x92,0xe4,0xc8,0x94,0x8b,0x39,0xcc,0x0d,0x47,0xed,0x6b,0xce,0x2e, - 0x71,0xcf,0xc6,0x9d,0xb9,0x31,0x5f,0xc2,0x2d,0x02,0x94,0xd4,0xc0,0xb8,0xc5,0x56,0x2a,0x26,0x97,0x37, - 0x69,0x35,0x6c,0x09,0xa9,0x8c,0x79,0xb0,0x30,0xef,0x08,0x8a,0x83,0x72,0xec,0x72,0xe2,0x0d,0x89,0xd2, - 0xa0,0x62,0x41,0x78,0x6c,0x44,0x42,0x1c,0x4d,0x1e,0xd8,0xad,0x3b,0x71,0x17,0x61,0xd7,0xc7,0x13,0xe2, - 0xf9,0x71,0x47,0xfb,0xab,0x70,0xae,0xba,0x6d,0xcb,0x8d,0x7f,0xdb,0xed,0x1f,0x6c,0x95,0x7c,0xcc,0xe2, - 0xf3,0x8d,0xb3,0x6e,0x5e,0x25,0xdb,0x13,0xec,0xe2,0x56,0x7c,0x26,0x0f,0x17,0x16,0xc9,0x3d,0x96,0xab, - 0x68,0x53,0xf2,0xc4,0xdf,0x81,0x65,0x03,0x4d,0x24,0xee,0x5d,0xf4,0x42,0x79,0x53,0x06,0x4d,0xc3,0x44, - 0x2b,0xca,0xd9,0x8b,0xbe,0xe9,0xd9,0xb6,0x3d,0x5b,0x59,0x79,0x61,0x36,0xe8,0xd9,0xae,0x02,0x20,0xce, - 0x45,0xf0,0xd8,0x28,0x09,0x1d,0xd6,0x7b,0x74,0x9b,0xfb,0xf7,0x8a,0xbe,0xfa,0x47,0x45,0x2b,0x5a,0x5b, - 0xe8,0xbf,0x62,0xf6,0x38,0x3a,0x83,0x55,0xf8,0xb3,0x81,0x5b,0x7b,0x4b,0xf1,0xc5,0xd2,0xee,0x9b,0x31, - 0xdf,0xe3,0x54,0xe1,0xda,0x68,0x8b,0x4f,0x89,0xd1,0x93,0x23,0xbd,0x8a,0xa2,0xb8,0x46,0x85,0xbb,0x07, - 0x3a,0x18,0x55,0xb5,0x51,0xda,0x32,0xe0,0x96,0xae,0x77,0xbb,0xdb,0xb4,0xb0,0x1f,0xbb,0x8d,0xb6,0xfb, - 0x63,0xe5,0x95,0x62,0xf5,0x2a,0xa8,0x35,0x2c,0xa4,0x9b,0x62,0xf9,0xf0,0xbc,0x70,0x3c,0x57,0x8a,0x18, - 0xb1,0x4c,0xef,0xd9,0x1e,0x47,0x08,0xa8,0xe9,0xf5,0xff,0x60,0xe4,0xc9,0x34,0x47,0x15,0x31,0x2e,0x77, - 0xba,0x77,0xb6,0x43,0xb2,0x89,0x1b,0x40,0x6d,0x06,0x6e,0x7a,0x1c,0x4d,0xd0,0x83,0x96,0x85,0x83,0x84, - 0xdd,0xa7,0xd1,0xc7,0x8d,0x77,0x4d,0x33,0x90,0xcf,0x87,0xaa,0x25,0xaa,0x7c,0x4c,0x7b,0xf6,0x79,0x95, - 0x1c,0xaa,0x17,0x55,0x72,0x5f,0x3d,0x45,0xc3,0x6f,0x7c,0xed,0x1d,0xdf,0xca,0xbd,0x2d,0xfb,0x3d,0x5d, - 0x11,0x6b,0xf9,0xb4,0x32,0x1a,0x38,0x9a,0xaa,0x1f,0x57,0x3c,0x4c,0x89,0x18,0xe7,0x21,0xff,0x71,0x1f, - 0x92,0x73,0xb0,0xde,0x91,0x5c,0x31,0x10,0x19,0xf1,0x8c,0x35,0xef,0xe4,0x30,0x24,0x3e,0x46,0x1a,0x99, - 0x88,0x11,0x94,0x2e,0x0f,0xaa,0xe8,0xa2,0x2c,0x9b,0x40,0x47,0x89,0xfb,0x9c,0x5e,0x90,0x23,0x27,0x0c, - 0x92,0xe5,0x49,0x8b,0xd1,0x7a,0xae,0x7f,0xf4,0xb6,0x45,0x92,0xb7,0xb6,0xc8,0xd6,0x2e,0xcd,0xbd,0x5d, - 0x53,0x6c,0xa3,0x3f,0xbb,0x8b,0x90,0x69,0xdb,0x79,0x9f,0x9e,0xcb,0x9d,0xbe,0xaa,0xd1,0xc7,0x16,0x87, - 0x9a,0xd5,0x47,0x99,0x49,0x53,0x5b,0x8e,0x82,0xc9,0x96,0x63,0x4e,0x24,0x34,0x2b,0xa1,0x27,0xa1,0xb6, - 0xef,0xb8,0xcb,0xda,0x9f,0x64,0xa1,0xd1,0xc7,0x99,0xc9,0xa5,0x0d,0xc6,0xa1,0xbc,0x45,0x64,0x21,0xab, - 0x28,0x6d,0xbd,0xa9,0xca,0x4f,0x22,0x18,0xd0,0xc9,0x75,0x36,0x9f,0xc9,0x7b,0xdf,0xd6,0xb1,0x17,0x7f, - 0x16,0x76,0x31,0x98,0x82,0x47,0x28,0x4c,0x1b,0x0a,0x48,0x87,0x0b,0x2d,0x1c,0x8e,0x33,0x39,0x83,0x01, - 0x25,0x9a,0x78,0x8f,0xb0,0x85,0x35,0x2f,0x85,0x07,0xfd,0x46,0x5d,0x9b,0x99,0x5c,0xbe,0x92,0xe9,0x4e, - 0x55,0x96,0xf4,0x34,0x2e,0xe4,0x89,0x88,0x89,0xcc,0x7d,0xc3,0xda,0x4e,0xb9,0xf0,0x19,0x62,0x1f,0x4f, - 0x76,0xc3,0x34,0x46,0xe6,0x6d,0x3c,0x93,0xd0,0xdd,0xb4,0x87,0x5c,0xca,0x21,0x29,0xfd,0x6e,0x91,0x82, - 0x4d,0x69,0x13,0x8f,0x20,0xec,0xb4,0x24,0xc8,0x9f,0x2f,0x2a,0xa9,0xef,0x3b,0xea,0xb3,0xe4,0xa1,0x5c, - 0x62,0x0a,0x61,0x55,0xc3,0xf6,0x12,0x89,0x8e,0x86,0xd6,0x7c,0xf6,0xc8,0xc0,0xe4,0xc9,0x3d,0x5d,0xb7, - 0x34,0x28,0x67,0xb6,0x19,0x9f,0xc0,0xcb,0xfb,0x2a,0xcb,0x6a,0xa7,0x17,0xee,0x2c,0xa1,0x3d,0xe8,0xdb, - 0x1b,0x8e,0x76,0x60,0x81,0x95,0x32,0x11,0x38,0xfd,0x03,0xa8,0xe9,0x82,0xba,0x5c,0xf8,0xe8,0x93,0x18, - 0x09,0x1f,0xed,0xa7,0x93,0x96,0xb9,0xb7,0xf2,0xaf,0xbb,0x7e,0xed,0x5d,0x04,0x8b,0x08,0x11,0x1b,0x5e, - 0x4b,0xdf,0x06,0xf1,0xcf,0x7e,0x7b,0xa0,0x35,0x21,0xb9,0xf4,0x98,0x43,0xe6,0x43,0xf5,0x12,0x08,0xed, - 0x11,0x40,0x94,0x97,0x7b,0x24,0x87,0x04,0xdc,0x92,0x12,0x76,0xff,0x06,0xaa,0xd9,0x9a,0x6e,0x57,0xda, - 0xcc,0xf6,0x44,0xb6,0x95,0x6a,0x9b,0xb3,0xf5,0x04,0x65,0x49,0x2e,0x32,0x9f,0xb8,0x12,0x39,0x3f,0x94, - 0x0f,0xf0,0x71,0xe9,0xa1,0x65,0x94,0x8f,0xa2,0x9b,0x9e,0x18,0xe5,0x74,0xdc,0xdc,0x61,0x82,0xa0,0x91, - 0x00,0xb9,0xaa,0x87,0x20,0xb9,0x0d,0x28,0x0c,0x3f,0x03,0x47,0xfb,0x2e,0x04,0x8c,0x1a,0xe3,0xf1,0xf2, - 0x79,0xb4,0xed,0x10,0x21,0x23,0x91,0xca,0x92,0x5c,0x3a,0x5e,0x7f,0x0f,0xd5,0x85,0x0d,0x59,0x22,0xe8, - 0x90,0xd9,0xe0,0x5b,0x5d,0x2e,0xb5,0xeb,0x9a,0x6d,0xba,0xc4,0xbd,0x54,0xbc,0xf7,0x4b,0x13,0x7e,0xf7, - 0x15,0x0c,0xa7,0x69,0xdc,0x34,0x77,0x77,0x42,0x8e,0x27,0x12,0x29,0xd6,0xdc,0x10,0x36,0x5b,0x65,0xac, - 0x6a,0xe4,0x7e,0x04,0x20,0xb5,0x3b,0x71,0x04,0xa2,0x14,0xee,0xf6,0x3d,0x33,0xc5,0xce,0x4f,0x9a,0xb4, - 0x84,0x59,0xb6,0x68,0x64,0xba,0x73,0xd0,0x1d,0xbd,0x0b,0x88,0x23,0xb5,0xf3,0x6d,0x2e,0x22,0xb8,0xc0, - 0xaa,0x8c,0xcf,0xe3,0x65,0x28,0xfa,0x3e,0xb9,0xf3,0xd9,0xd4,0x8b,0x26,0x00,0x95,0xe3,0xcf,0x61,0x53, - 0x81,0xdb,0x32,0x44,0xda,0x29,0x6b,0xed,0x7a,0xc5,0xa8,0xed,0x1e,0x7a,0xe6,0xc1,0x99,0x66,0xdf,0x5b, - 0x82,0x01,0x9d,0xc7,0xf2,0x01,0xc5,0x46,0x9c,0x21,0xae,0xd9,0xba,0xd9,0xc8,0x25,0x3d,0x74,0x6e,0xf0, - 0x1d,0xcf,0x90,0xab,0xf1,0xa5,0x6c,0x4e,0xd0,0xd2,0x86,0x47,0x5e,0xef,0x0e,0x59,0x9c,0x27,0x3e,0x84, - 0xeb,0xa1,0x2a,0x1b,0x91,0x71,0x94,0x5b,0xd1,0x58,0x9a,0x14,0xc7,0xf9,0x09,0x5c,0xcd,0x66,0xb4,0x82, - 0xb8,0xa3,0xf5,0x8a,0x6f,0x6a,0xd5,0xcb,0x87,0x6e,0x05,0xb8,0x27,0xfb,0xa1,0x50,0x30,0xe0,0xc0,0xe2, - 0x87,0xa1,0x99,0x06,0x82,0x2f,0xec,0xd7,0xc6,0xaa,0xc8,0x6e,0x03,0xd5,0x53,0x53,0xe0,0x27,0x03,0xef, - 0x7d,0x78,0xb7,0x4a,0x7e,0x43,0xa8,0xf4,0x56,0xf4,0x8d,0xc6,0x70,0x57,0x0d,0xee,0x8e,0xe9,0x9d,0xf9, - 0x72,0x5c,0xc6,0x25,0x64,0x1b,0x23,0x48,0x8e,0x30,0x1e,0x16,0x80,0xbf,0x86,0xdf,0x26,0x6d,0x89,0x73, - 0x75,0x4e,0x6c,0x3a,0x11,0xb1,0xb9,0x06,0xcd,0x19,0xc6,0x96,0x33,0xfb,0xc7,0xa0,0x60,0xfa,0x16,0xb1, - 0x8f,0x17,0xf5,0x0f,0x36,0x2d,0xfc,0xb0,0x2b,0x0a,0xce,0x5b,0xdc,0x23,0xbc,0xee,0x55,0x0c,0x65,0xdb, - 0x61,0x3c,0x2a,0xff,0x2e,0x38,0xb8,0xc7,0x55,0xbe,0x4f,0xdc,0x52,0xf8,0x88,0x8a,0x6f,0x8a,0x64,0xee, - 0xd5,0xa4,0x98,0xae,0x89,0x59,0x60,0x1f,0xee,0xd8,0x82,0x51,0xad,0x43,0xd4,0xf1,0xc0,0x4e,0xf5,0xeb, - 0xb4,0x1f,0x54,0x1b,0x81,0x48,0x40,0xd9,0x36,0x02,0x35,0x06,0xc0,0x9a,0x12,0xb1,0x2d,0xc0,0x45,0x49, - 0x52,0x84,0x03,0xef,0xe6,0xd2,0x39,0xb1,0xdd,0x43,0xdc,0x26,0xf4,0x39,0x1b,0x18,0x06,0xa4,0xcd,0xc8, - 0xc6,0x7d,0x2a,0x3e,0x5b,0x98,0xc1,0xbb,0xdf,0x4a,0xe6,0x3a,0xf4,0x48,0x65,0x3a,0x3e,0x04,0x74,0x69, - 0x7f,0xfc,0x99,0xc2,0x1a,0x4d,0x15,0x51,0xcb,0x5a,0xee,0x0e,0x1b,0xc6,0xb5,0x93,0xe4,0x22,0xa7,0xe4, - 0x49,0x3b,0xb5,0x4f,0x71,0x2e,0x77,0x1e,0xb9,0x48,0x2e,0x58,0x5c,0xa1,0x09,0xe5,0x7e,0x69,0x5c,0x07, - 0x21,0xd7,0xb8,0x8b,0x22,0xea,0xc0,0x84,0x5c,0x15,0xd8,0xf5,0x8b,0x5a,0xdf,0xb9,0xdc,0x29,0x70,0x1b, - 0x27,0x13,0x54,0xc6,0x1f,0xc2,0x37,0x9b,0xa9,0xac,0xd4,0x8d,0x43,0x28,0x87,0x6f,0xfa,0x02,0x94,0x25, - 0xf7,0xfe,0x83,0x4b,0xd8,0xe3,0x7b,0xa3,0xd6,0x70,0xca,0x96,0x31,0xba,0x8c,0xa4,0x6b,0x27,0x12,0xb5, - 0x6d,0x3e,0xb2,0xae,0xcd,0x87,0x86,0x0e,0xaa,0x00,0xbe,0xc0,0x5a,0x3c,0x23,0x30,0xa3,0x69,0xaf,0xe3, - 0xec,0xc4,0x68,0x0d,0x5c,0x8a,0x17,0x04,0xaa,0xc0,0x86,0xd4,0xda,0x26,0x70,0x72,0x5c,0xb0,0x4d,0x98, - 0x59,0xc5,0x24,0xc3,0x47,0xdb,0xd6,0xf1,0x4e,0xd9,0x11,0x8a,0x35,0x9e,0x71,0xa6,0xcc,0xd0,0x9d,0x72, + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x77,0xdb,0x46,0xb2,0x2e,0xfa,0x57, + 0x24,0x1c,0x6f,0x1a,0x18,0xb5,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0xb6,0x6c,0x27,0x4e,0xfc,0x1a, + 0x5b,0x79,0xcc,0x28,0xda,0x5a,0x10,0x09,0x4a,0xb0,0x49,0x80,0x01,0x40,0xc9,0x8a,0xc8,0xf3,0xdb,0x6f, + 0x7d,0x55,0xfd,0x02,0x08,0x39,0xc9,0xac,0xbd,0xee,0xf2,0xb2,0x08,0x74,0x37,0xfa,0x59,0x5d,0x5d,0xef, + 0xde,0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x0d,0xca,0xf3,0x0f,0xd9,0xa4,0x09,0x92, + 0xa4,0xb9,0x59,0x66,0xe5,0x6c,0x27,0xfb,0xb4,0x2c,0xab,0xa6,0x1e,0x0c,0xb6,0x72,0x16,0xe5,0x74,0x35, + 0xcf,0xc6,0xf2,0x33,0xd4,0xe5,0x92,0x26,0x8c,0xe2,0xc0,0xd4,0xe9,0x0a,0x4f,0xb3,0x59,0x5e,0x64,0x83, + 0x81,0xfc,0x0e,0xd3,0xc5,0x74,0x2c,0x8f,0xe1,0xc9,0x29,0xb5,0x1b,0xdf,0xd5,0xee,0x58,0xff,0x0e,0xd3, + 0x4f,0x79,0x29,0xb5,0x67,0xee,0x79,0x13,0x36,0x97,0x79,0xad,0xec,0x10,0xa2,0xdb,0x2a,0x6b,0x56,0x55, + 0xb1,0xe3,0x06,0x15,0xdd,0x9a,0xe7,0x9d,0x26,0xac,0xa2,0xdb,0x7c,0x16,0x16,0x27,0xd5,0x69,0xa4,0x0b, + 0xe2,0xd9,0xf4,0x7d,0x74,0x95,0x56,0x3b,0x79,0x82,0xa4,0xe4,0x56,0xa7,0xc5,0xb7,0x1b,0x95,0x4f,0xe3, + 0x4a,0xcd,0xcb,0x74,0x9a,0x4d,0xe3,0xdd,0xc3,0xcd,0x48,0x7f,0x9a,0xe1,0xd3,0x49,0x3a,0x9f,0x87,0xb9, + 0xa9,0x41,0xe5,0xca,0x3d,0x37,0x11,0xbd,0xc8,0x67,0xc9,0xee,0x81,0xcb,0xd8,0xa0,0x99,0x22,0xb9,0xb5, + 0x15,0x35,0xc3,0x45,0x42,0x93,0x3f,0x9c,0x24,0x05,0xfd,0x5d,0x26,0x41,0xa0,0x9a,0xf0,0x80,0x06,0x77, + 0xe2,0xaf,0x8d,0x2a,0xa2,0x5b,0x37,0xcd,0x45,0x78,0x18,0x6d,0x54,0x37,0x3f,0x58,0xd5,0xd9,0x4e,0xdd, + 0x54,0x39,0xcd,0xe4,0xc8,0x8e,0xbb,0xc2,0x2c,0xa0,0xd1,0x26,0x29,0xb2,0xeb,0x9d,0x92,0x5e,0x55,0x91, + 0xa4,0x61,0x39,0x5c,0x56,0x65,0x53,0x62,0xc2,0x87,0x55,0xf6,0xdb,0x2a,0xab,0x1b,0xea,0xb4,0xe9,0x15, + 0xfa,0xdb,0x64,0xc5,0x34,0x2c,0x94,0x57,0x50,0x46,0x65,0x73,0xe8,0xad,0xd8,0xe8,0x69,0x0b,0x1f,0x46, + 0x2a,0xa5,0x9f,0x2f,0x22,0x55,0xd2,0xcf,0x57,0x91,0x42,0x37,0xff,0x1e,0xa9,0x49,0x52,0x85,0x75,0x34, + 0x9a,0x0c,0x1f,0xf3,0xba,0x95,0x6a,0x32,0x9c,0x54,0x59,0xda,0x64,0x89,0xbf,0x4c,0xba,0xd9,0x8a,0x66, + 0x73,0x91,0x55,0x17,0x59,0x58,0xab,0x2c,0xa2,0x31,0x4e,0x86,0x47,0x69,0x31,0xc9,0xe6,0x68,0x80,0xaa, + 0x36,0xaf,0xc7,0xe5,0xc7,0xac,0x40,0xda,0x97,0x48,0xcb,0x6b,0x57,0xe8,0x00,0x09,0xb4,0x2c,0x7d,0xb5, + 0xbf,0xad,0xca,0x45,0x5e,0x67,0xc8,0xa6,0x54,0x54,0x5e,0x2f,0xa9,0x2b,0x53,0x7c,0x47,0x1d,0x76,0xf3, + 0x3b,0x71,0xcf,0x43,0x02,0xd4,0x74,0x35,0x6f,0x92,0xc9,0x5f,0x9a,0x70,0x69,0x31,0x38,0x11,0xc0,0xde, + 0x79,0x5c,0x55,0xe9,0xcd,0x29,0xc1,0x77,0x32,0x17,0xa0,0xa1,0xe6,0xed,0x07,0xb9,0xd7,0xc5,0x62,0x35, + 0x9f,0xef,0x26,0x49,0xd6,0xb3,0xe3,0x32,0xf7,0x45,0xda,0xd3,0xc4,0x73,0x9d,0x79,0x57,0x2b,0xa5,0x6c, + 0x71,0xec,0x00,0xdb,0xc6,0x55,0x99,0x4f,0x77,0x0e,0xf0,0x1c,0x51,0xba,0x69,0x71,0xd7,0xb6,0x38,0x18, + 0x84,0x59,0x72,0x92,0x9d,0x46,0x0a,0x83,0x8a,0x66,0x65,0x15,0x0a,0xf8,0x12,0x40,0x27,0xd9,0x70,0x9e, + 0x15,0x17,0xcd,0xe5,0xa8,0x78,0x94,0x8f,0x8a,0xbd,0xbd,0xa8,0x91,0x46,0x51,0xbd,0xca,0x4e,0x8a,0x53, + 0x55,0xd0,0x1a,0x8e,0xb2,0x39,0x4d,0x92,0xf9,0x32,0xdd,0xc9,0x69,0xeb,0x44,0x6f,0xb8,0x21,0x0f,0x00, + 0x2f,0xd3,0xfa,0xcd,0x75,0x41,0xeb,0xb3,0xcc,0xaa,0xe6,0x46,0x77,0x5e,0xa5,0xd1,0x60,0xd0,0xae,0x34, + 0x3d,0x55,0x29,0x55,0xca,0x40,0x57,0x0b,0xb4,0xd1,0xbe,0x09,0x09,0x0a,0xe6,0xc9,0x56,0xa5,0x4d,0xf9, + 0x9e,0xd6,0xa6,0xb8,0x18,0xb9,0x85,0xbd,0xcd,0x6b,0x5e,0x0a,0xda,0xd2,0xfa,0xe9,0xc9,0x6a,0x36,0xcb, + 0xaa,0x78,0x1b,0x5a,0xda,0x6b,0x27,0xc5,0x3a,0x73,0x4b,0x75,0xe8,0xcf,0x27,0xf4,0xf8,0xbc,0xac,0x16, + 0x4f,0xd3,0x26,0xed,0xab,0x6b,0x55,0x08,0xbe,0x9b,0xba,0xc9,0x35,0xc5,0x07,0x83,0x8c,0x26,0xa5,0x6e, + 0x00,0xc1,0x5e,0xf2,0xa6,0xdd,0xc1,0x9f,0xf2,0xec,0xfa,0x4f,0x56,0xec,0x7d,0x35,0x18,0x78,0x2f,0xb4, + 0x4d,0x50,0xcb,0x78,0x3b,0x89,0xea,0x8b,0x69,0xad,0xb3,0xe1,0xb9,0xfe,0xca,0x3c,0xf9,0x1d,0xf3,0x3e, + 0x43,0xdf,0x64,0x6a,0xfb,0xba,0x54,0x73,0x8e,0x0f,0xb7,0x54,0xfc,0xf5,0x6a,0x71,0xde,0x3f,0xcd,0x05, + 0xe7,0x74,0x8a,0xcb,0x5a,0xc6,0x84,0x50,0xeb,0x1f,0xcd,0x08,0x7b,0x3e,0xde,0x11,0x00,0xa6,0x45,0xe1, + 0xaf,0x68,0xde,0xb2,0xcf,0xad,0x24,0xf2,0xb7,0x97,0xf0,0x79,0x3e,0xff,0xec,0x57,0xc8,0xef,0x59,0xf8, + 0x79,0x79,0xfe,0xb9,0xaf,0x90,0xdf,0xd3,0x96,0xfe,0x20,0x4e,0x65,0x0a,0xb3,0x74,0xd1,0x37,0x2c,0x60, + 0x84,0xc1,0x80,0x76,0xf9,0x70,0x99,0x2f,0xe5,0xcb,0x1f,0xdf,0xbd,0x7c,0x9f,0xa5,0xd5,0xe4,0xf2,0x6d, + 0x5a,0xa5,0x8b,0xfa,0x4f,0xc2,0x42,0xe7,0xab,0x0e,0xac,0x75,0x72,0x65,0x59,0xd3,0x62,0x9a,0x56,0xd3, + 0x27,0x55,0x79,0x5d,0x67,0xd5,0xb3,0xe2,0x2a,0xde,0x3a,0x5f,0x43,0xaf,0x25,0xbb,0x6c,0x45,0x7a,0x95, + 0x5f,0xa4,0x4d,0x59,0xad,0xd7,0xc1,0xbb,0x2c,0x9d,0x34,0xaf,0xd3,0x26,0xbf,0xca,0xa8,0x2b,0x89,0xcd, + 0xc2,0xde,0x9c,0xae,0x26,0x0d,0x8d,0xad,0xaf,0xb3,0xd7,0x79,0x31,0x2d,0xaf,0xfb,0xf3,0xa6,0xe5,0x64, + 0xb5,0xc8,0x8a,0x86,0x90,0x70,0x59,0x3d,0x4b,0x27,0x97,0x71,0xa9,0xf8,0xa0,0xb0,0xdd,0xdb,0xc9,0xc2, + 0xd6,0x69,0xdf,0xa8,0xaa,0x87,0xa0,0xc1,0xf1,0xde,0x83,0x5b,0x9b,0x31,0x9f,0xfb,0x19,0x53,0x07,0xa0, + 0x48,0xf8,0xb5,0xd9,0x38,0x8c,0x47,0x94,0x40,0xc5,0x68,0x2f,0xad,0x2e,0xb8,0x27,0xb5,0x41,0x7f,0x15, + 0xa1,0xbf,0x8a,0xd0,0x5f,0x19,0xda,0x2c,0xa9,0xc4,0x9c,0xa5,0xc5,0x46,0xc9,0x91,0x19,0x77,0x0f,0x10, + 0x5d,0xa0,0xa4,0xce,0xda,0x2c,0xee,0x37,0xa8,0x8b,0xa4,0xa0,0x8e,0x6e,0xd3,0x52,0xcd,0xb8,0x0e,0xf1, + 0x71,0xdc,0x6c,0xe8,0xc8,0xda,0x28,0xda,0x6d,0xbd,0x30,0x84,0x53,0x7d,0x39,0x4f,0x27,0x59,0xf8,0xe0, + 0x7f,0x7e,0xad,0xff,0xf6,0x40,0x05,0x41,0xe4,0x92,0x28,0xe5,0x1e,0x27,0x6d,0x36,0xed,0x73,0xad,0x73, + 0xaa,0x39,0xd4,0xd9,0x2e,0xd4,0xa5,0xb4,0x68,0xea,0xed,0x54,0x81,0xcc,0x60,0x6c,0x11,0x76,0xe7,0x2a, + 0xc2,0x1c,0xd2,0x84,0x15,0x76,0xee,0x68,0xde,0x78,0xaa,0xfd,0xa9,0xb3,0x24,0xd6,0x30,0x5d,0x2e,0xe7, + 0x37,0x3c,0xda,0xed,0x6e,0xda,0xa5,0xf6,0x06,0xbd,0xbb,0x9b,0x0d,0x27,0x25,0x01,0x78,0x45,0x50,0x56, + 0x56,0xbd,0xf3,0xd7,0x2a,0x31,0x34,0x18,0x1c,0x38,0xaf,0x2f,0x1d,0xfb,0xb6,0x6f,0x0e,0x3a,0x07,0x36, + 0x4e,0x4a,0xa4,0xae,0xd7,0x61,0x43,0xd4,0x5c,0xdf,0xb2,0x0d,0x41,0x69,0x3c,0x27,0x8a,0xb0,0x79,0xf9, + 0xac,0x7f,0x61,0x87,0xf5,0x3c,0x9f,0x50,0x4d,0x04,0x03,0xf2,0x18,0x1e,0xa8,0x83,0x28,0xa2,0x4a,0x31, + 0xae,0x33,0xd3,0xa5,0x88,0x29,0xd5,0x66,0xf3,0x97,0xe8,0x11,0x50,0xca,0x86,0x94,0xa9,0x41,0x6f,0xe2, + 0x3d,0x2f,0x9a,0xac,0x9a,0x64,0x4b,0x1a,0x30,0x1d,0x8d,0x9a,0x08,0x8c,0x99,0x4a,0x54,0x55,0x56,0x2f, + 0x69,0x3e,0x32,0x79,0xdd,0x58,0x32,0xef,0xef,0x42,0xe6,0x3d,0x14,0x32,0xef,0xf0,0xbf,0x85,0xce,0x3b, + 0xfc,0x07,0x41,0xfb,0x36,0x41,0xd9,0x9a,0xb0,0xed,0x83,0x81,0xc9,0x8b,0x54,0x13,0x7c,0xb7,0xab,0x6a, + 0x1e,0x3b,0x30,0x38,0x38,0xdd,0x28,0xf7,0x76,0x78,0x1a,0x45,0xca,0x2b,0x9c,0xab,0xd6,0x80,0xd4,0xed, + 0x22,0x6b,0x2e,0xcb,0x69,0x1c,0x5c,0x64,0x4d,0xb0,0x01,0xe9,0x38,0x94,0x14,0xa2,0x52,0xe4,0x81,0xa8, + 0x81,0x97,0xe5,0x75,0x56,0x1d,0xa5,0x35,0x21,0x0a,0x99,0xc2,0xe4,0xa4,0x56,0x72,0x82,0x10,0xad,0x92, + 0x18,0xea,0x90,0x46,0x5e,0xce,0xaf,0x32,0xea,0xf2,0x08,0x30,0xbd,0x35,0x53,0x66,0x70,0x43,0x8d,0x89, + 0x42,0x7f,0x90,0xcd,0x70,0x55,0xd4,0x97,0xf9,0xac,0x21,0xdc,0x3d,0x5b,0xcd,0x67,0xf9,0x7c,0x9e,0x4d, + 0x15,0x2a,0x05,0xc2,0xc9,0xa6,0x11,0x6d,0xda,0xbe,0x1a,0x65,0xb2,0xef,0xa8,0x72,0xb9,0xaa,0x2f,0xef, + 0xae,0x6f,0xd4,0x98,0xdd,0x14,0xd1,0xde,0x1b,0x36,0x97,0x19,0x03,0x10,0x77,0x82,0x1a,0x33,0x4f,0x3e, + 0x3a,0x4a,0x6d,0x43,0x27,0xc1,0x34,0x9b,0x67,0x4d,0x16,0x28,0x9e,0x3a,0x15,0x5c,0x12,0x94,0xd2,0x4f, + 0xb9,0x44,0xf3,0x75,0x70,0xaa,0x5a,0x30,0xef,0x96,0x98,0xa8,0xc2,0xc4,0xc3,0x59,0x0e,0x99,0xf1,0xe8, + 0xf4,0x14,0x85,0x66,0xbd,0x8a,0xf5,0x9a,0x10,0xa8,0x59,0xa5,0x4c,0x61,0xad,0x09,0x7f,0xd1,0xb6,0x8e, + 0x5a,0x9d,0x59,0x96,0x35,0x3a,0xb1,0x5c,0xf1,0xdf,0xb4,0x99,0x5c,0xfe,0xf9,0x1e,0x00,0x6f,0x7e,0xae, + 0x0f,0x55,0x5f,0x1f,0xd4,0x14,0x14,0x5b,0xa1,0xbb,0xe2,0x76,0x7a,0xf5,0x17,0x76,0x17,0xb0,0xd1,0x6e, + 0x3e,0xf4,0x48,0x15,0x3e,0xbe,0x3b,0x29,0x27,0xc1,0x51,0x49,0x6b,0x5e,0x34,0xfb,0xc7,0xd4,0xf9,0xe0, + 0x34,0x02,0xf4,0x77,0x13,0x93,0x26,0xea,0x32,0x54,0xff,0x8d,0x9d,0x76,0xdb,0x2e,0x17,0x07,0xc0,0x8c, + 0xf9,0x24,0x45,0x17,0x1e,0x7c,0xda,0xbf,0xbe,0xbe,0xde,0xa7,0x49,0x5c,0xec,0xd3,0x98,0xb2,0x62,0x52, + 0x12,0xd3,0x49,0xbb,0x80,0xf6,0x74,0x3a,0x4d,0x97,0x8d,0x4f,0x77,0x09,0x2b,0x98,0x8d,0xee,0x26,0x19, + 0x7e,0x79,0xf5,0xf2,0xbb,0xa6,0x59,0xbe,0x93,0xd9,0x1b,0x67,0xd4,0x85,0x7f,0x10,0x87,0xde,0x53,0x92, + 0x56,0x62,0x92,0xd5,0x35,0xef,0x62,0x14,0xc2,0x71,0x04,0x88,0xab,0xd2,0xa2,0x46,0x6f,0x74,0x15,0xf1, + 0x49,0xef,0xd1,0x91,0xd2,0x9a,0xb5,0x47,0x05,0xde,0xd2,0x91,0xd1,0x8c,0x4d,0x91,0xe0,0x11,0x9e,0x36, + 0xad,0xf3,0x2a,0x94,0x94,0x7d,0x05,0xc5,0xe6,0x8a,0x12,0x21,0x46,0x2f,0xe3,0x2c,0xee,0x54,0xa6,0x29, + 0xdf,0xb1,0x21,0x76,0x39,0xbf,0x43,0x12,0x21,0x3f,0xac,0xd0,0xd3,0x3f,0x9c,0xf0,0xd1,0xe4,0x32,0xad, + 0xea,0xac,0x49,0x56,0xcd,0x6c,0xff,0x1f,0x01,0x80,0xc9,0x30,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0xfb, + 0xeb,0xfc,0x50,0x97,0xc5,0x56,0x15,0xdf,0xbf,0x7f,0xf3,0x7a,0x28,0x68,0x33,0x9f,0xdd,0x80,0x05,0x8b, + 0xb3,0xcd,0xa9,0x3f,0xc3,0x1a,0x49,0x9f,0xf8,0x7b,0x04,0xac,0xdc,0x16,0xae,0x8d,0x9a,0xea,0xe6,0x36, + 0x4b,0xb8,0xc6,0x25,0x5a,0xc1,0xc9,0x36,0xc1,0x0e,0xc3,0x27,0x1b,0x73,0xe4,0xa2,0xf6,0x7c,0x91,0x95, + 0xab,0x26,0x3e,0x50,0x9f,0xea,0x6a,0x76,0x54,0x96,0x1f,0xf3,0xec,0x75,0xba,0xc8,0xe2,0xe0,0x97,0xf7, + 0xef,0x9e,0xef,0x1f,0xbf,0xf9,0xe1,0xd9,0xeb,0x80,0xf3,0xbe,0x23,0x5c,0x91,0x55,0x3a,0x6f,0xdf,0xcf, + 0x5d,0xa4,0x9f,0xf4,0xd2,0xbe,0x64,0xd4,0x14,0xef,0x1f,0xaa,0xab,0x74,0x9e,0xd3,0x6e,0xcb,0x88,0xc4, + 0x6c,0x56,0x7d,0x04,0xec,0x4e,0xf6,0x4d,0xf2,0xf0,0xe0,0x80,0x8e,0xe2,0x47,0x5f,0x1c,0x1c,0x6c,0x36, + 0xa3,0x7a,0x78,0xc9,0x2d,0x10,0x20,0x4f,0xca,0xc5,0x82,0xc8,0xe6,0xdb,0xc7,0x13,0xe0,0xcc,0x78,0x6b, + 0xea,0xd4,0x4e,0x43,0x34,0xd6,0x03,0xa2,0x6e,0x72,0x7a,0xfe,0xdb,0x83,0xbf,0x05,0x74,0x3e,0xe6,0x7f, + 0x80,0xe6,0xda,0xa8,0xc5,0xb6,0x06,0xc4,0x72,0x0b,0x74,0x90,0xff,0x15,0xcc,0xd4,0xfa,0xdc,0x48,0x31, + 0xca,0xa8,0x85,0x55,0xea,0x3f,0xc0,0x2a,0xd8,0x9b,0x15,0x6f,0xfd,0xbb,0x09,0x2f,0xdb,0xa7,0xcc,0xd5, + 0x25,0xb8,0x8f,0x48,0xed,0x66,0x30,0xa8,0x08,0xec,0x7e,0x5c,0x2e,0xcd,0x49,0x47,0x1c,0x48,0xd3,0x4e, + 0x61,0xbc,0xd3,0x10,0x79,0xa9,0x64,0x4e,0x58,0x94,0x45,0xfd,0xfc,0x23,0x82,0xc2,0x75,0x4e,0x01,0x3d, + 0x7d,0x2d,0xe8,0xe9,0xd0,0x50,0x02,0x5f,0x68,0x4a,0xe0,0x4b,0x61,0xc9,0x0f,0x0f,0xc0,0x93,0x7f,0x8e, + 0xcc,0x97,0xdf,0xe1,0x79,0x53,0xa6,0xad,0x97,0xe1,0x39,0x3d,0x87,0x92,0x40,0x7b,0x98,0xaa,0xfa,0xaa, + 0x7f,0x3a,0x1c,0x0d,0x46,0x24,0x8a,0x3e,0xbd,0x43,0xef,0x44,0x58,0x09,0xb2,0x9b,0x11,0x0d,0x00,0x2c, + 0xaf,0x40,0x0c,0xe8,0x35,0x1a,0x55,0x3e,0xa6,0x99,0x45,0x10,0x4d,0xf2,0x5c,0x4c,0xbb,0x18,0x99,0x87, + 0xbd,0x64,0x9a,0xb6,0x8d,0x19,0xd5,0x65,0x12,0x94,0x05,0x88,0xba,0x1b,0x62,0xa8,0x9a,0x8c,0xf6,0x6e, + 0x71,0x41,0x00,0x76,0x95,0xec,0x1e,0x8e,0xb0,0x05,0x7b,0x98,0x24,0x19,0x14,0xd1,0x73,0x7a,0xb8,0xbf, + 0x3c,0x2d,0x17,0x04,0xb0,0xba,0x46,0xe2,0x9c,0xae,0xf3,0xe6,0xf2,0xa8,0xca,0xa6,0xd4,0x7e,0x9e,0xce, + 0xeb,0x20,0x2f,0x76,0x96,0xeb,0x35,0xa1,0xa1,0x21,0x21,0x1a,0x50,0x97,0xd2,0x93,0xde,0xcf,0xa5,0x43, + 0x10,0x39,0x72,0x27,0x0e,0xd4,0x72,0x58,0x16,0x84,0xa3,0x2f,0x88,0xba,0xf0,0xa6,0x8d,0x36,0x3b,0xe7, + 0xe8,0x6d,0xde,0xca,0x00,0xac,0xa6,0x2b,0xa2,0xd3,0x79,0xe2,0x16,0x89,0xbc,0x0d,0x09,0x0a,0xaa,0x82, + 0x76,0x39,0x75,0x30,0x50,0x17,0x26,0x75,0x99,0xd6,0xf5,0x75,0x59,0x4d,0x91,0x3a,0x9a,0x0e,0x1f,0x53, + 0x5a,0x59,0xe5,0xbf,0xf3,0x9e,0x4c,0x82,0x27,0x69,0x9d,0x4f,0x76,0x82,0xbd,0x79,0xb8,0xd8,0xa3,0xf3, + 0x6a,0xef,0x22,0xda,0xd0,0xa4,0x50,0xc3,0x4b,0x22,0x4f,0x3c,0xa2,0xcc,0x03,0x4c,0x95,0xca,0x38,0xa9, + 0x13,0x4b,0xc6,0xbe,0xf6,0xe1,0x7d,0x56,0xd1,0x74,0xe4,0xbf,0x13,0xf1,0xab,0x76,0x09,0xb0,0x96,0x43, + 0xd3,0xfb,0xcc,0x3c,0xa9,0xe5,0xc9,0xe5,0xa9,0x3f,0x18,0xb4,0x46,0xa0,0xfe,0x25,0x6d,0x80,0x25,0xd3, + 0xde,0x37,0x40,0x3c,0x34,0x86,0x2b,0xec,0x00,0x08,0xbd,0x96,0xc3,0x9a,0x51,0xd1,0x7a,0xbd,0xb4,0x14, + 0x18,0xe1,0xff,0xc1,0xe0,0x40,0x7f,0x63,0x93,0x88,0x5a,0x9b,0x66,0x9f,0xde,0xd0,0xa2,0xce,0x20,0x2c, + 0x08,0x88,0x28,0xbf,0x15,0x5e,0x07,0xe8,0xe4,0xf1,0x7c,0x6e,0x10,0xb1,0x60,0x44,0x59,0xb7,0x71,0x49, + 0xc3,0xed,0xcd,0xc6,0x79,0xc0,0x02,0xad,0x2a,0xb9,0x65,0xfa,0x23,0xb3,0x8d,0x01,0xe8,0x88,0x3b,0x00, + 0x32,0x03,0xeb,0xdc,0xce,0x18,0xbb,0x4e,0xc5,0xee,0xf1,0x98,0xca,0x2a,0x19,0x49,0x7c,0xf8,0xf0,0xe1, + 0x17,0x89,0x1b,0xd9,0xf8,0xe1,0xc1,0x97,0xb1,0x79,0xd1,0x65,0x50,0x7c,0xab,0x5c,0xf0,0xba,0xdc,0xd1, + 0x70,0x1f,0xd8,0x0f,0xb8,0x62,0xbd,0x61,0xe2,0x42,0x11,0x7b,0x34,0xcb,0x2f,0x88,0x70,0x32,0x8c,0xc2, + 0x72,0x33,0xca,0xb1,0xcd,0x08,0xf9,0x28,0x82,0x4b,0x1a,0xd0,0x46,0x40,0x2b,0xab,0xaa,0xb2,0xf2,0xd7, + 0x62,0x15,0x4e,0xc2,0xe0,0x75,0xd6,0x10,0xb8,0x7c,0xdc,0x79,0x86,0xdc,0x40,0x65,0x8a,0xa7,0x60,0x19, + 0xd9,0x8f,0xef,0x02,0x4b,0xfe,0x5a,0xa7,0xef,0xd0,0x2e,0x0a,0xf6,0xec,0xaa,0xef,0x05,0x8b,0x7a,0x27, + 0xfb,0x34,0xc9,0x32,0x90,0x3c,0x54,0x67,0xf0,0xec,0xe8,0xcd,0xeb,0xd7,0x8f,0x9f,0xbc,0x79,0x77,0xfc, + 0xec,0x69,0xd0,0xaa,0xbd,0x1a,0xf6,0x89,0x37,0x42,0xbd,0x94,0x37,0xc0,0x59,0xc4,0xdc,0x9c,0x27,0x04, + 0x84,0x9d,0x6d,0xe8,0x76,0x60,0x04,0x3e,0xb1,0x7d,0x2c,0x8e,0x6f,0x18,0xba,0xc2,0x6e,0x7a,0x14,0x0b, + 0x6b,0x31,0x3a,0x27,0x70,0x9b,0x9e,0x48,0xb6,0x3b,0x31,0x4f,0x93,0x73,0xde,0x11,0x01,0x9d,0xf7,0x7a, + 0x03,0x4b,0x26,0xc3,0x0e,0xd0,0xb8,0xc1,0xf3,0xd3,0x0e,0xe3,0x6b,0x65,0x5e,0x33,0x02,0x94,0x89,0x46, + 0x56,0x40,0x30,0x81,0xc6,0xf5,0x1e,0x9f,0x33,0xb6,0x68,0xad,0x39,0xc5,0xba,0x76,0xda,0xa2,0xd5,0xcb, + 0xe4,0x84,0xea,0x8c,0x98,0xba,0xbc,0xec,0xa6,0x25,0xd8,0x79,0x6d,0x80,0x64,0xa2,0x62,0xd9,0x4a,0xea, + 0x80,0xac,0x26,0x31,0x44,0xf0,0x1c,0xe0,0xa4,0xde,0x06,0xeb,0xa8,0xb9,0xa4,0xe5,0x20,0x8e,0xb6,0x97, + 0x5b,0x2f,0x8b,0xa7,0xe5,0x35,0xa3,0xb5,0xb7,0x1a,0x97,0x0d,0x06,0xcb,0x61,0x3a,0x9d,0x3e,0xbb,0x02, + 0x79,0x91,0xd7,0x34,0x7e,0x1a,0x49,0x60,0x30,0x1d,0x41,0x41,0xcf,0x37,0x51,0x1f,0x4f,0x8e,0x82,0x3f, + 0x2e,0xbb,0x55,0xaf,0x38,0xc5,0x3d,0xfd,0x61,0x5b,0xed,0x2a,0x30,0x47,0x13,0xa7,0xa4,0x60,0xc1,0x82, + 0x7b,0x05,0xfb,0xc2,0x5c,0x26,0xb3,0x69,0xfe,0x59,0xb6,0xe4,0x39,0x4f,0xcf,0xe9,0x90,0x23,0x54,0xb8, + 0x82,0x9a,0x46,0x20,0x17,0x0b,0xe4,0xaf,0x79,0x38,0x93,0x64,0x85,0xf5,0xa4,0x93,0x72,0xf6,0x17,0xce, + 0x6e,0x3a,0x95,0xef,0xa0,0x2c,0xf0,0x89,0xe6,0x3c,0x86,0xb2,0xd3,0x87,0x6d,0x82,0x6d,0x54,0x68,0xb4, + 0x40,0x9c,0xcd,0x60,0xb0,0x9b,0x87,0xe6,0x3d,0x1a,0x37,0x44,0xce,0x06,0x1a,0xb0,0x76,0x66,0x29,0xa1, + 0xc8,0xe9,0x0e,0x80,0x67,0x47,0x0a,0xec,0x80,0x3e,0xa6,0x5d,0x6b,0x3e,0x50,0xa6,0x05,0xc1,0x00,0x85, + 0x55,0x3f,0x15,0xa0,0x6f,0xc3,0xe2,0xcf,0x8f,0xe6,0xf0,0xee,0xd1,0xa8,0x5c,0xa5,0x32,0xa2,0x92,0x8f, + 0x4c,0xc6,0x3a,0xe0,0xe9,0xad,0xa6,0xa9,0xb4,0xc5,0xfe,0x13,0x11,0x18,0xf8,0x4d,0x95,0x7b,0xd2,0x36, + 0x19,0x52,0x42,0x19,0x20,0xb0,0x86,0x18,0x73,0x52,0xc8,0x86,0x11,0x59,0x48,0xe5,0x6d,0x9e,0x24,0x27, + 0x5e,0xe9,0x3f,0x50,0x28,0xed,0x08,0xb3,0xf1,0xe3,0xbb,0x17,0x47,0xe5,0x82,0x6a,0x22,0xa8,0xa4,0x4c, + 0x27,0xd6,0xfb,0xaf,0x2f,0x0f,0x1e,0x5c,0xe4,0x2a,0xf8,0xbf,0xbe,0xac,0xef,0xbf,0xbe,0x78,0xcc,0x89, + 0x71,0x2b,0xf1,0xe1,0x97,0x0f,0x2e,0x54,0x70,0xaf,0x9d,0x76,0xc4,0x05,0x55,0x3b,0xf1,0x00,0x05,0xf7, + 0x5a,0x69,0x5f,0x3d,0xe1,0x82,0x27,0xed,0xc4,0xa7,0x9c,0x78,0x1a,0xf8,0x3c,0xec,0x67,0xc0,0x8d,0x30, + 0xc2,0x6e,0x63,0x54,0xb1,0x19,0xaf,0x6a,0x0a,0xca,0xa9,0x88,0x40,0x58,0x36,0x5a,0x75,0x44,0x09,0x7d, + 0x8c,0x59,0x13,0x51,0xa9,0xc6,0x63,0xb1,0xb8,0xb4,0x5e,0xf0,0x93,0xd3,0x91,0xa3,0xdd,0x9b,0xce,0xe2, + 0xf6,0xa9,0xbf,0x68,0xc9,0x2c,0x77,0xc8,0xcc,0x7b,0xd8,0xec,0x25,0xc1,0xc9,0xa9,0xe6,0x49,0x4d,0x3a, + 0x11,0x60,0x5a,0x1f,0x96,0xf7,0x91,0xe1,0xe0,0xbd,0x86,0xa2,0x86,0x60,0xc6,0x12,0xd4,0x49,0xf9,0xe2, + 0xfd,0x1b,0xd3,0xc5,0x36,0x13,0xc8,0x7c,0xf3,0x36,0x87,0x07,0x7d,0x2b,0xe4,0x3d,0x84,0x9c,0xa3,0xbd, + 0x20,0x09,0xf6,0x58,0xf5,0x06,0x01,0x05,0x08,0xee,0x72,0xf8,0xa1,0xcc,0x8b,0x30,0x18,0xd0,0x24,0x1b, + 0x46,0x1a,0x15,0xed,0x25,0xe1,0xfe,0x21,0xf4,0x20,0x8e,0x54,0x19,0x07,0xd1,0x98,0xfe,0xc4,0x28,0xbb, + 0x97,0x46,0x7f,0x0c,0x70,0x2d,0x02,0xff,0x24,0x48,0x41,0xcd,0x06,0xa9,0x4f,0xd6,0xd1,0xbb,0x39,0x70, + 0x44,0xe4,0xe4,0x25,0xf0,0x09,0xa4,0x82,0xac,0x49,0x2f,0xf0,0xf3,0x69,0x99,0x13,0xb0,0xd3,0xd3,0x8c, + 0x10,0x1e,0x18,0x2e,0xe1,0x9f,0xf2,0xd9,0xfe,0xa2,0x9c,0xe6,0xb3,0x3c,0x9b,0xee,0xd7,0x39,0xa1,0x45, + 0x49,0x5b,0x15,0x5b,0xa9,0xf3,0xb4,0x6e,0x6c,0x59,0xbc,0x97,0x13,0xd3,0x07,0xe2,0x2e,0xc1,0x7d,0x5f, + 0xd3,0x41,0x8e,0x16,0x08,0xa5,0x7e,0xba,0xd9,0xef,0x76,0xb4,0xca,0x88,0xa7,0xa7,0xe3,0x14,0x4f,0x74, + 0x4c,0xed,0xa7,0xb3,0x86,0xdf,0x40,0xcc,0xee,0xd3,0xd8,0x88,0xd2,0x39,0xbd,0x83,0xad,0x60,0xe1,0x20, + 0x6d,0xf0,0x14,0x92,0x17,0xa7,0xf1,0x27,0xae,0xdd,0xad,0xfa,0xb0,0x26,0x06,0xb4,0x09,0x83,0x5f,0x0b, + 0x82,0x91,0x0e,0xf7,0x9d,0xfa,0xcb,0x40,0xbb,0x4e,0xd1,0xe6,0x1f,0x42,0x4e,0x8f,0xcf,0x56,0xe7,0x34, + 0xdf,0xe1,0x01,0xa1,0x9d,0xa8,0x7d,0x56,0xab,0x62,0xab,0x54,0xba,0x77,0x48,0x00,0x21,0x87,0x67,0x49, + 0x47,0x38,0x0b,0x95,0x74,0xc5,0x4d,0xf4,0x4d,0x72,0xa0,0x77,0xcf,0x08,0x99,0x09,0x48,0x89,0xfd,0x09, + 0x13,0x20,0x4c,0x0a,0x8c,0xf9,0x9b,0x31,0xfe,0xc4,0x27,0xa7,0x11,0x30,0x14,0x4d,0x61,0x78,0x52,0x9c, + 0x46,0xb1,0xcd,0xd9,0x0b,0x14,0x50,0x73,0x5c,0x80,0xe1,0x2d,0x29,0xe3,0xcf,0x43,0x89,0x37,0x7b,0x77, + 0xd1,0x56,0x63,0x5f,0x41,0xe0,0x14,0x35,0xd6,0x22,0x21,0xb3,0x42,0x49,0xde,0x81,0x34,0x80,0xc7,0x0d, + 0xb5,0x73,0xbe,0xa2,0x1d,0x14,0x5c,0xd2,0x12,0x06,0x30,0x32,0x68,0x88,0x9f,0xc6,0x0b,0xb6,0xdd,0x1d, + 0x45,0x6e,0xf1,0x14,0x4b,0x31,0xc5,0x22,0xc2,0x49,0x39,0xa7,0x77,0xf3,0x38,0x76,0x8f,0x0e,0x63,0xc5, + 0xa2,0x02,0x89,0x89,0xab,0x01,0x78,0xe2,0x73,0xfa,0x51,0x35,0xe3,0x99,0x18,0x6d,0xe1,0x61,0x6c,0x1e, + 0x7c,0x85,0xca,0xd8,0x7d,0x99,0xd6,0x28,0x8b,0x9f,0xb1,0xfc,0x78,0xe5,0xfe,0x4f,0xab,0x01,0xf0,0x50, + 0xba,0x11,0x3c,0x2a,0xcc,0x1d,0xfa,0x48,0x3f,0x6a,0x99,0x36,0x97,0x9c,0x1f,0x3c,0xc0,0xe2,0x51,0xaa, + 0x4e,0x18,0x42,0x28,0xf4,0x18,0x26,0x21,0x63,0x97,0x88,0x52,0x7b,0xee,0x55,0xc4,0xf3,0xb4,0x56,0xc9, + 0x83,0x70,0x51,0xe7,0xd9,0x9a,0x26,0x08,0x64,0x5b,0xf4,0x20,0x1f,0x36,0x90,0x81,0x3a,0x15,0x1c,0xc0, + 0xff,0x31,0xa0,0x1f,0x9b,0xdc,0x68,0xd5,0xb4,0x45,0xc6,0xb3,0x79,0x86,0xb7,0x30,0x48,0x03,0x7b,0x4e, + 0xd2,0x1a,0x69,0x5e,0x7c,0x68,0x76,0xa0,0x5e,0x0b,0x27,0x7d,0x30,0x94,0x83,0x40,0x01,0xe3,0xba,0x82, + 0xd0,0x1f,0xfd,0x89,0x0b,0x67,0x50,0x62,0xe6,0x9f,0xa9,0x54,0xf3,0x02,0x88,0xc6,0x7c,0x70,0x22,0x1e, + 0x36,0x1b,0xc2,0x93,0x5b,0x2a,0xc7,0xdd,0x83,0xcf,0x9f,0xd1,0x9e,0x32,0x48,0xeb,0x3a,0x16,0x44,0x8a, + 0xd1,0x2e,0x4f,0x02,0xe9,0xd0,0x0e,0xd0,0x14,0xf1,0xca,0xf5,0x4e,0x4a,0x7d,0x29,0x98,0xb4,0xd9,0xc1, + 0xcc,0xa6,0x13,0xa0,0x85,0x8d,0x40,0x75,0xf0,0xf8,0xc9,0xd1,0xd3,0x67,0xcf,0xbf,0xfd,0xee,0xc5,0xf7, + 0x3f,0xbc,0x7c,0xf5,0xfa,0xcd,0xdb,0x7f,0xbe,0x7b,0x7f,0xfc,0xe3,0x4f,0x3f,0xff,0xf2,0xaf,0x7f,0xa7, + 0xe7,0x13,0x62,0xe7,0x2f,0x2e,0xf3,0x0f,0x1f,0xe7,0x8b,0xa2,0x5c,0xfe,0x56,0xd5,0xcd,0xea,0xea,0xfa, + 0xd3,0xcd,0xef,0x07,0x87,0x0f,0xbf,0xf8,0xf2,0xab,0xbf,0xff,0xf7,0x3f,0xbe,0xde,0x7b,0x90,0x04,0xa3, + 0xc2,0x49,0xa8,0x1d,0xe1,0xa1,0xbc,0x54,0x21,0x0d,0xbe,0x6a,0x25,0x61,0x11,0x93,0xe0,0x85,0xf4,0xeb, + 0xc8,0x74,0xcb,0x70,0x4a,0xbd,0x48,0xca,0xe8,0xdb,0x1a,0x90,0x30,0x89,0x9e,0xf6,0x0c,0xc2,0x18,0x82, + 0xb6,0x3a,0x39,0x80,0xe1,0xcd,0x28,0xb5,0xd0,0xb3,0xae,0x71,0x7a,0x4d,0x12,0x3a,0x51,0x54,0xfd,0x5f, + 0x44,0x38,0x95,0x7b,0xc9,0xc4,0xe4,0xfe,0xfd,0x8b,0x41,0xf3,0xcd,0x37,0xff,0xd8,0xa7,0x8c,0xbf,0xfd, + 0x23,0x62,0x74,0x13,0xe6,0x89,0x7c,0x7c,0x44,0xbd,0xa5,0x22,0xf5,0x5e,0x32,0xfc,0xef,0xaf,0xa2,0xe8, + 0x9b,0x87,0x5f,0x7d,0xa5,0x09,0x76,0x8c,0xae,0x18,0x35,0x49,0xf3,0xe8,0xd1,0x3f,0xd6,0xb9,0x39,0x8e, + 0xfe,0x97,0x11,0xc8,0xed,0x75,0x95,0xb7,0xb4,0xfa,0x86,0x6a,0x23,0x64,0x75,0x2b,0x66,0x20,0x74,0xda, + 0xd7,0x5a,0x47,0xc2,0x07,0x66,0x0f,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0x39,0x18,0xe8, + 0x4f,0xcc,0x49,0x45,0xdf,0x61,0x3c,0x7c,0x76,0x17,0xc0,0xcc,0xdf,0xbe,0x3a,0xb6,0xd2,0x5b,0xe5,0x41, + 0x76,0xee,0x7d,0x8b,0xfd,0x47,0x1f,0xe6,0xad,0x02,0xa9,0x57,0x60,0xca,0x02,0x1a,0x2a,0x92,0x42,0x70, + 0x41,0x40,0x5e,0xba,0xbc,0x3a,0x9b,0xac,0x2a,0x48,0xbd,0xdd,0x2e,0x64,0xdc,0x9d,0xd4,0xfa,0x8c,0x1f, + 0xed,0xd0,0x21,0xaf,0xc0,0x5c,0xc6,0x5b,0xa7,0x53,0xd2,0xf9,0x68,0xb8,0x60,0x3e,0x0b,0x43,0x78,0x97, + 0x5d,0x3c,0xfb,0xb4,0x0c,0x83,0xf0,0x7f,0xd6,0xa3,0x5f,0x7f,0xad,0xff,0x16,0x85,0x34,0x25,0x44,0xbe, + 0x25,0xe1,0xc9,0xff,0x8c,0x4e,0xff,0x16,0x05,0x4e,0x15,0xd4,0x10,0x7f,0xb8,0x3d,0x57,0x27,0x5f,0x9c, + 0x8a,0x7c,0x02,0x8d,0x2f,0xca,0xab,0xb6,0x75,0x04,0xef,0x2e,0x5e,0x14,0x5a,0x0b,0x02,0x35,0xcc,0xd8, + 0xb0,0x28,0xaf,0xc3,0x68,0xff,0x1f,0x7f,0xff,0x32,0xfb,0x8a,0xa8,0xe9,0xb8,0xbb,0x68,0x90,0x39,0xb5, + 0xc7,0xd1,0xd2,0x9f,0x6e,0xb7,0x43,0x1f,0xfc,0x05,0xf2,0x58,0x77,0xea,0x92,0xc0,0x67,0x0e,0x69,0xf1, + 0xc9,0xa9,0x4f,0x80,0xfa,0x7a,0x49,0xaa,0xa0,0x5f,0x91,0xdd,0xaa,0x40,0x16,0xe8,0xd6,0xea,0xdb,0x58, + 0xe6,0x21,0xfa,0x36,0xd6,0xba,0xb7,0x0b,0x0b,0x25,0xb4,0x7f,0x08,0x09,0x83,0x6b,0x89,0xcb,0x27,0x5b, + 0x13,0x67,0xbe,0x22,0x22,0x12,0x44,0x66,0x27,0x49,0xf3,0x7b,0xad,0x8a,0x34,0xc5,0x91,0xb4,0xa9,0x4c, + 0x4b,0xdc,0xfa,0x35,0x78,0x46,0x04,0x96,0xcc,0x6d,0x88,0x01,0xa5,0x57,0x62,0x11,0xff,0x43,0xed,0x16, + 0xec,0x0e,0x3f,0xc3,0xcf,0x32,0x2a,0x78,0x31,0xd3,0xdc,0x5f,0x36,0x0d,0xb7,0x14,0x58,0x87,0x5f,0x8b, + 0x84,0x18,0xa6,0x79,0xd6,0x26,0x90,0x5e,0x0f,0x21,0x20,0xa6,0xdf,0x3b,0x78,0x04,0x5a,0x1a,0xa0,0xb3, + 0x6c,0x78,0x9e,0x6a,0xb1,0xdc,0xee,0x44,0x4b,0x61,0x98,0xc1,0xa2,0x87,0x64,0x1e,0xda,0x6c,0xa5,0x05, + 0x34,0xca,0xca,0x78,0x9d,0xb4,0x97,0x15,0x7f,0x22,0x04,0x4e,0x20,0x63,0x64,0x69,0xb0,0xcd,0x85,0xa2, + 0xa6,0xa3,0xb2,0xf2,0x6b,0x31,0xa2,0x7c,0x9b,0x32,0x14,0x5d,0x84,0xae,0xd4,0x0a,0xfd,0xb5,0x48,0xf3, + 0xb4,0x9d,0x8e,0xb7,0xe8,0x0f,0x15,0x11,0xaa,0x4f,0xbd,0x00,0xd2,0x1a,0x0d,0xf9,0x7a,0x06,0x5a,0x57, + 0x23,0xb4,0xb7,0x2d,0x37,0xa7,0x1b,0xb3,0xa1,0xa9,0x93,0x5a,0xe3,0xb7,0x5e,0xd7,0xe6,0x31,0x02,0x87, + 0xd8,0x16,0x37,0x38,0xb8,0xe7,0x39,0x6e,0xcc,0xd4,0xc8,0x03,0xbd,0xf7,0x4e,0x8d,0xb0,0xae,0x54,0x7c, + 0xa3,0x7a,0x6a,0x2a,0xe9,0x99,0x4e,0x18,0xa9,0x10,0x76,0x7b,0x86,0xd7,0x05,0x9c,0x3b,0x0d,0xb7,0x6d, + 0xa9,0x95,0xa2,0xbc,0xf7,0xcf,0xb5,0x4d,0xeb,0xeb,0xd4,0xf4,0xcc,0x47,0x35,0x7f,0x49,0x73,0xf1,0x19, + 0x6e,0xd4,0x4c,0x88,0x5d,0xaa,0xa2,0x45,0xe1,0x40,0xc5,0x09,0x84,0xb1,0xd9,0x66,0xa4,0xfe,0x84,0xbc, + 0xc0,0xd2,0x31,0xe1,0x6e,0xb6,0x5e,0xc3,0x9a,0xe3,0xec,0xe8,0xf1,0xeb,0xa3,0x67,0x2f,0xcf,0xce,0xfe, + 0x03,0xe9,0x83,0xa9,0xed,0xc1,0xff,0x84,0x27,0xe9,0xfe,0xef,0xa7,0xf8,0xf3,0xeb,0xf4,0xd7,0xbd,0x5f, + 0xf7,0x7f,0x1d,0x9e,0xfe,0x2d,0x8e,0xc6,0xbf,0x3e,0xf8,0xf5,0x81,0x21,0xfd,0xb2,0xff,0x48,0xbc,0xe1, + 0x10,0xe3,0xd8,0x33,0x24,0xfa,0xf5,0xc1,0x9e,0x90,0xcc,0x7b,0xa0,0x3f,0x1b,0x9f,0x20,0x7e,0xb0,0x27, + 0xa4,0xee,0x1f,0x4c,0x4e,0xdb,0x6a,0xa7,0x45,0xa9,0x65,0x9b,0xa2,0xc7,0x78,0x33,0xd9,0x3a,0x32,0x02, + 0x31,0xf6,0x0d,0xf6,0x42,0xff,0x73,0x62,0x74,0x89,0x8f,0xf1,0x53,0x62,0x58,0x37,0xb5,0xa8,0x2c,0x37, + 0xe9,0x50,0x8f,0x78,0xe6,0xd4,0x7f,0x09,0x1d,0x42,0x90,0x69,0x65,0x89,0xbb,0x9e,0x82,0xd5,0x12,0x45, + 0x10,0x6a,0x8a,0xbc,0x89,0xa8,0x0b,0x3a,0xe5,0x89,0xee,0xde,0x59,0xac,0xea,0x66,0xe7,0x3c,0xdb,0x49, + 0xad,0xcd,0xd4,0x30,0xd0,0x66,0x28,0x23,0xee,0xb5,0x16,0x0c,0x26,0xbd,0xca,0x2c,0xcc,0x15,0x4d,0x90, + 0x7c,0x50,0x24,0xf8,0x60,0xd4,0xce,0x86,0x14,0x2d,0xad,0x81,0x96,0x42,0xf3,0xc8,0x55,0xe5,0xbc,0x1f, + 0x6d,0x1a,0xc4,0x08,0x0e,0x41,0x7f,0xd1,0x3e,0x1d,0xbb,0xb8,0xbc,0xa3,0x4e,0xd1,0x56,0x15,0x5c,0x8d, + 0x16,0xd9,0xba,0x14,0x1c,0x5a,0x75,0xb9,0xaa,0x26,0x99,0xff,0x95,0x6f,0x6c,0x70,0xdb,0xe0,0xc0,0x60, + 0x7b,0xa2,0xaa,0x85,0x8a,0xb2,0x04,0x87,0xaa,0x1c,0x2a,0x0c,0x3f,0x77,0x1e,0x54,0x7f,0x61,0x6f,0xec, + 0xf4,0xa0,0x28,0x63,0x50,0xc6,0x62,0xc7,0x06,0x36,0x65,0xd0,0x7b,0x76,0x5b,0xb8,0xdb,0x07,0xa2,0x47, + 0x99,0xf9,0xbf,0xe4,0x06,0xd1,0xc0,0xb1,0xe1,0xa7,0x55,0xd6,0xef,0xd6,0xd0,0x0f,0x8c,0x59,0xaf,0x1d, + 0xec,0x7a,0x8d,0xd1,0xb1,0x45,0xac,0x67,0x0c,0xd9,0x2d,0x29,0x32,0x2f,0x23,0x09,0xdb,0xb4,0x77,0xa5, + 0x61,0xb9,0xda,0x95,0xf8,0x66,0xed,0x5b,0xd6,0x05,0xeb,0xf5,0xb6,0x1d,0x2f,0xa5,0xd5,0x37,0x8b,0xf3, + 0x72,0xde,0x4e,0x3b,0x2f,0xcb,0x79,0x96,0x16,0xbd,0x76,0xed,0xff,0x3b,0x96,0xf0,0x22,0x61,0x63,0xe3, + 0xdb,0x45,0xd1,0x6b,0x08,0x6f,0x88,0x68,0x36,0x84,0x60,0x9b,0xbc,0xd0,0x32,0x50,0x8e,0x38,0xfe,0x26, + 0x39,0x18,0x0c,0x5e,0x11,0x89,0x3f,0x9c,0xcd,0x4b,0x58,0x82,0xb1,0x32,0x9d,0x38,0xd6,0xfa,0x79,0x5e, + 0x30,0xfd,0xeb,0xd5,0x5a,0x77,0xba,0x4e,0x3d,0x1f,0x07,0x41,0x8f,0x67,0xcb,0xb8,0x2b,0xf2,0x13,0x29, + 0xf8,0xc3,0x28,0xb6,0x5d,0x70,0xb5,0x4e,0x7a,0xfb,0xea,0xa4,0xd8,0xc4,0xd1,0xa4,0xaf,0xa9,0x63,0xe3, + 0x8c,0x08,0x53,0xfb,0xd5,0x5c,0x5b,0x48,0x5a,0x8b,0x4c,0x6d,0x1a,0x2f,0x5c,0x7e,0x28,0xda,0x83,0x2a, + 0xb1,0x32,0x2c,0x05,0x31,0x67,0x72,0x30,0xca,0x1f,0x55,0xc6,0x94,0x2c,0x17,0xc3,0xcc,0x93,0xfc,0xf4, + 0x94,0x70,0xa5,0xe3,0x17,0xfa,0xb4,0xef,0x27,0x59,0x5b,0x90,0x75,0xba,0xe9,0x33,0xee,0xa0,0x62,0xa7, + 0x1b,0xd7,0xc7,0x95,0x75,0x47,0x30,0x7e,0x04,0x46,0xa5,0x9a,0x79,0x22,0x2e,0x16,0x07,0x7f,0xb3,0x7f, + 0x68,0xa5,0xc4,0xdc,0x65,0x3a,0x71,0x0a,0x75,0x18,0x79,0xb5,0xcd,0x5a,0x67,0xd6,0xb9,0x59,0x75,0x6c, + 0x72,0x5b,0x66,0xea,0xe6,0xb2,0x67,0x3e,0x46,0x5d,0xb4,0xe1,0x59,0xb4,0x9d,0x14,0xa7,0x30,0xec,0xa4, + 0x1f,0x58,0x08,0x47,0x7e,0xc3,0xcb,0x2d,0x63,0x54,0x2d,0x0d,0xa9,0x7a,0x0c,0x85,0x35,0x85,0x31,0xae, + 0xbe,0x39,0x1c,0x3b,0xe3,0x56,0x5b,0x0e,0x38,0x80,0xfb,0xcd,0xe6,0xbd,0xe6,0xd9,0xca,0x79,0x8b,0xe1, + 0x99,0x54,0x64,0x3d,0x2f,0x54,0xe1,0x3a,0x72,0x29,0x1d,0x21,0x6e,0x7c,0xbd,0x3e,0x18,0xb9,0xa5,0x37, + 0x65,0xf7,0x1b,0x5a,0x71,0x67,0x99,0x5b,0x44,0xa3,0x62,0x7f,0x7f,0x14,0x55,0x3c,0xa8,0x93,0x62,0xaf, + 0xb1,0x66,0xb7,0x95,0xab,0xf4,0xaa,0x03,0x48,0xf0,0xde,0x68,0x22,0xf8,0x76,0x24,0x98,0x0d,0x2b,0x19, + 0x75,0x5f,0x2c,0x5a,0xa2,0x09,0x58,0x4d,0x17,0x04,0x58,0xc5,0x23,0xe7,0x2c,0x42,0x80,0x85,0x0a,0x06, + 0x83,0x2b,0x68,0x1f,0x21,0x8c,0xb4,0xd0,0xe5,0xaa,0xb9,0x30,0xe7,0xb0,0x4b,0xba,0x71,0x00,0x83,0x6d, + 0x18,0x19,0x2c,0xa5,0x8f,0x44,0x3e,0xe7,0x2a,0xfa,0x11,0xa0,0xd9,0xa5,0x83,0x70,0xb7,0x32,0x85,0x88, + 0x6b,0xd9,0xad,0x06,0x03,0xbb,0xc1,0xa8,0x02,0xfd,0x4c,0xa5,0xa1,0xc3,0x64,0xdd,0x43,0xc2,0x53,0xe3, + 0x89,0xfb,0x89,0x6d,0x69,0x27,0x49,0xdd,0xe9,0x60,0x50,0x3a,0x80,0xd4,0x6b,0x02,0xf9,0x95,0x3c,0x82, + 0x43,0xca,0xae,0xb2,0xea,0xc6,0x3b,0x9f,0x3d,0x02,0x93,0xc7,0x81,0x61,0x6f,0xa4,0xb2,0xf5,0xda,0x54, + 0xb6,0x7b,0x38,0x12,0x81,0x86,0x06,0xcf,0x8f,0xd9,0x0d,0xb0,0x0a,0x71,0x4b,0x7e,0x82,0xb3,0x2b,0xaf, + 0x5d,0xdb,0x13,0xdb,0x76,0xdd,0x6d,0xbb,0xd5,0x32,0xbc,0x72,0x74,0xe3,0xce,0xf8,0xcb,0xb4,0xee,0x81, + 0xf5,0x79,0x17,0x83,0x6c,0xad,0x21,0x75,0xdd,0xd4,0x17,0x59,0x77,0x3a,0xdd,0x33,0xe2,0x85,0x6d,0x4d, + 0x67,0x6e,0xd7,0xd1,0xf8,0xb6,0xcd,0xc6,0x1b,0x36,0x99,0x66,0x72,0x4c,0x6f,0x08,0x1c,0x7e,0x6e,0x4f, + 0xf8,0x9b,0xed,0xda,0xd5,0x05,0x51,0x4f,0x10,0xf9,0x02,0xaa,0x03,0x3b,0x2f,0x5f,0xfc,0x1d,0xab,0xb1, + 0x5e,0x7f,0xfd,0x15,0x7e,0xdd,0xe7,0xc7,0x46,0x6f,0x17,0xdd,0xea,0x09,0x95,0xd3,0xd7,0xb8,0x1d,0x71, + 0x36,0xd5,0x3f,0x5f,0x65,0x71,0xa1,0x32,0x3a,0xd0,0xb2,0x2a,0x3d,0x9f,0x67,0xf1,0xee,0x6e,0xa5,0x20, + 0xd1,0x90,0x97,0x03,0x6d,0x09,0xb1,0xd2,0x99,0x07,0x1b,0x0f,0xc9,0x7c,0xf4,0xce,0xa3,0x1e,0x85,0xf3, + 0x60,0xf0,0xa0,0x60,0xbf,0x08,0xd6,0x89,0x3e,0xd0,0x14,0xba,0x6f,0x28,0xe8,0xaa,0x3a,0xea,0x58,0x38, + 0x65,0xb4,0x16,0x7c,0x78,0xab,0xf6,0x8f,0x3b,0xb9,0xdc,0xb7,0xef,0xb5,0xa9,0x80,0x46,0x01,0x13,0x23, + 0xdc,0x79,0x23,0x66,0xbd,0x1a,0x15,0xc0,0x82,0x72,0xd8,0xa4,0x17,0xca,0xb2,0xc4,0x93,0xcb,0x7c,0x3e, + 0xad,0xb2,0x02,0xcc,0x17,0xac,0x3f,0x08,0x92,0xe7,0x0b,0xc5,0xca,0x4d,0x7e,0x47,0x46,0x5a,0xdf,0x14, + 0x93,0xe7,0x29,0xcc,0xe4,0x6f,0x9c,0x3a,0x75,0x58,0x80,0xe1,0x46,0xd5,0x22,0xc9,0x6b,0xf2,0x09,0x30, + 0xb9,0x7e,0xa4,0x54,0x02,0x5e,0x4a,0xa0,0xbf,0x5c,0xe2,0x88,0x58,0x5b,0xea,0x0f,0x17,0xd1,0xcf,0x94, + 0x3e,0x2b,0x8e,0xa4,0x21,0x4a,0xb7,0xcf,0x9c,0xae,0x3b,0xce,0xe9,0x76,0x10,0xf4,0xfc,0x7e,0x42,0x6b, + 0xf7,0x62,0xca,0xe9,0xfa,0x59,0xea,0x9f,0xd3,0x78,0xd9,0xf3,0xb2,0x11,0x75,0xac,0x1e,0x18,0xbd,0x54, + 0xf6,0x25,0xf9,0xe4,0xe5,0xc0,0xb0,0x28,0x82,0xf2,0xb6,0xf0,0x0b,0x17,0x7e,0xe1,0xa2,0x5d,0x98,0xf0, + 0x8d,0x9b,0xf1,0x4f,0xdd,0x1d,0x63,0x91,0x74,0x1b,0xed,0xea,0x83,0xb6,0xe0,0x13,0x16,0xe7,0x6b,0x42, + 0x6b,0x45,0x3f,0x9e,0xbf,0x88,0x57,0xeb,0x63,0x8b,0xf4,0xc4,0x25,0x68,0x37,0x6c,0x39,0xf0,0x10,0x73, + 0xaf,0x17,0xd9,0xee,0x2c,0x08,0xe5,0xce,0xce,0xca,0xf3,0xb3,0xb3,0x80,0x8d,0x55,0xe4,0xd9,0xff,0xa8, + 0xae,0xc6,0xe8,0x9d,0x64,0xc4,0x25,0x91,0xed,0x97,0xe5,0x6a,0x3e,0xa5,0xd9,0x26,0xc4,0x41,0xb3,0xb5, + 0xfb,0x5b,0xc1,0x46,0x82,0x5d,0x6c,0xb8,0x5e,0x83,0xd8,0xa2,0x1c,0xbd,0x79,0xf2,0xfa,0x19,0xbc,0x5a, + 0xea,0xfc,0x9c,0xad,0x6d,0xe9,0x43,0x76,0x52,0x20,0x2a,0x16,0xf3,0xc6,0x83,0xae,0x59,0x77,0x89,0x25, + 0xe0,0x79,0xbd,0x5a,0x1c,0x95,0xab,0xa2,0xd9,0xdb,0xa3,0x83,0xcb,0x8d,0xf1,0x9e,0xaf,0x4e,0x17,0x44, + 0x8c,0x6f,0xff,0x55,0x10,0xfa,0xd5,0x4d,0x5d,0x64,0x8d,0xe7,0x1e,0xf8,0x34,0xab,0x27,0x55,0x0e,0xcb, + 0x79,0x9e,0x1d,0x46,0xf7,0x25,0xa1,0xfb,0x43,0x22,0x17,0xcb,0xa1,0xbf,0x39,0x8d,0x84,0xb8,0x24,0x8c, + 0x8d,0x4a,0x08,0x95,0xf2,0x63,0x4d,0x8f,0xf3,0x64,0x37,0x1f,0x0c,0x1e,0xe3,0x24,0xfc,0x0c,0x36,0xf0, + 0xb1,0xc0,0xd6,0xc6,0x57,0x54,0x65,0xd7,0xb4,0xba,0x49,0xea,0x71,0x6d,0x88,0x4e,0xa7,0xfe,0xf8,0x57, + 0x41,0x1b,0xad,0xa2,0xf2,0x34,0x37,0x29,0xb5,0xb4,0x84,0xe5,0x46,0xa4,0xe6,0xf4,0x3a,0xc7,0xab,0x4b, + 0xea,0x9e,0x38,0x83,0x81,0x47,0xf1,0xb7,0x20,0x4c,0xef,0x7f,0x71,0x4b,0x6a,0xba,0xee,0x48,0xb4,0x04, + 0x0d,0x0c,0x3b,0x31,0xf1,0xb2,0xd6,0xee,0xe9,0x73,0x2d,0x42,0x36,0xce,0x46,0x18,0x10,0x9a,0xb3,0xb0, + 0xa7,0xf6,0x47,0xd9,0x18,0xf2,0xa6,0x3d,0x4c,0x28,0x70,0xaa,0xf5,0xba,0xd9,0x65,0x13,0xd4,0x5d,0x3c, + 0x87,0x93,0xf1,0xc4,0xd1,0x61,0x31,0x75,0xc7,0xce,0x79,0x03,0xab,0xff,0xa2,0x6c,0x40,0xff,0xb2,0xe5, + 0xbd,0x07,0x0e,0x6f,0x3c,0xf3,0x80,0x2e,0x08,0xd2,0xda,0x85,0xee,0xb8,0xb1,0x67,0x2f,0xd3,0xe8,0x8b, + 0xf4,0x93,0x25,0x25,0x15,0x4b,0xf0,0x34,0xa9,0xd8,0xa8,0x43,0xaa,0x4e,0x15,0x80,0x93,0x86,0xfd,0x4f, + 0xb1,0x8f,0xf8,0xa9,0xeb,0x32,0xea,0xaa,0x16,0x03,0xd9,0x42,0x8b,0x8e,0xcc,0x6e,0x71,0x9e,0x49,0x02, + 0xe8,0xeb,0x75,0x05,0x4b,0x2d,0x0d,0xd7,0xe3,0x22,0xae,0xc6,0xe1,0x3d,0x42,0x30,0x7c,0x86,0xf0,0x28, + 0x08,0x19,0x61,0xae,0xcd,0x58,0x41,0xd8,0x19,0xeb,0xdb,0xc2,0xc3,0xd7,0xcf,0xec,0x3e,0xbf,0x63,0xc8, + 0xfe,0x68,0x3c,0x53,0x07,0xb7,0x91,0x47,0xae,0x4f,0xfe,0x5e,0x5b,0xaf,0x85,0x34,0x86,0x0d,0x9a,0xb1, + 0xf6,0x6d,0x4e,0x05,0xcd,0xf9,0x1d,0xf3,0x57,0xe0,0xa9,0xed,0x8c,0x6f,0x9e,0x61,0xe1,0x0e,0x1b,0xd5, + 0x6d,0x4d,0x4d,0x93,0x40,0xe3,0x34,0xaa,0x1f,0x95,0x06,0x0a,0x6b,0x60,0x37,0x10,0x96,0x49,0x79,0x52, + 0x9f,0x9e,0x02,0x40,0x41,0x2b,0xcc,0x98,0x14,0x1a,0xa7,0x61,0xc5,0xfe,0x8d,0xd0,0xa5,0x3c,0x0d,0xb1, + 0xf1,0x63,0x2c,0x7b,0x41,0x0f,0x3d,0x34,0xe5,0xdb,0x8e,0x88,0xae,0x18,0x77,0xf6,0x5c,0x95,0xf4,0xfa, + 0xc9,0x19,0xd7,0x61,0x76,0x96,0xa3,0x1e,0xf4,0x1d,0xc8,0xe3,0xcc,0x2b,0x94,0x39,0x12,0x5d,0xf7,0x2a, + 0xdf,0xc4,0xcd,0x38,0xf3,0xdb,0xd3,0x25,0x9e,0x86,0x9f,0x6b,0x92,0x69,0x18,0xfc,0x41,0xc3,0x9f,0x6b, + 0xd6,0x2b,0x48,0x6c,0x5f,0xdc,0xc4,0xde,0xb0,0x3f,0x74,0xe5,0x70,0xe3,0xcc,0xa8,0xf0,0x69,0x3b,0x75, + 0xd1,0xc4,0xb8,0x89,0xa1,0xe7,0xf7,0xbe,0x7f,0xe1,0xc8,0x1d,0x11,0xf8,0xb4,0xb9,0x1e,0x2d,0x29,0xf0, + 0x74,0x41,0x57,0x70,0xab,0xc2,0x98,0x6d,0x15,0x2f,0xcd,0xcc,0x7b,0x52,0x00,0x5b,0xdd,0xa4,0x22,0xf4, + 0x42,0xf0,0x55,0x8d,0xe6,0xf0,0xe0,0xa3,0x03,0x8a,0xdd,0x1e,0xf1,0x07,0x8d,0xf6,0x59,0xf3,0x01,0xfb, + 0x11,0x87,0x32,0xd4,0xde,0x45,0x5d,0xd1,0x8b,0x81,0x68,0xda,0x8f,0xcb,0x5a,0x2c,0x81,0x64,0x7d,0x19, + 0xe0,0x6e,0x37,0xa3,0xad,0xfd,0x51,0x88,0x53,0x3a,0x1d,0xb1,0x16,0xfd,0x81,0xab,0xe9,0x0a,0x28,0x42, + 0x89,0xeb,0x80,0x5d,0x50,0x9e,0x5c,0x17,0x04,0x77,0xa7,0xc9,0x2d,0xb2,0x44,0xcd,0xe5,0x2c,0x8d,0x52, + 0x53,0x23,0x9f,0x1b,0x40,0x11,0x45,0x84,0x6f,0xeb,0x53,0xc5,0x1f,0xd6,0xf4,0x21,0xc0,0x76,0x9c,0xc7, + 0xf2,0x7d,0xbe,0x19,0xe9,0xfe,0x26,0xe5,0x06,0x28,0xf3,0x8e,0x21,0xe5,0x05,0xe6,0xde,0x1f,0x93,0x4d, + 0xfc,0xdc,0xc0,0x64,0xa6,0x99,0x60,0xf0,0x39,0x73,0xe2,0xda,0x98,0x33,0xbf,0x85,0x71,0x4d,0x8c,0xe7, + 0x4d,0xff,0x10,0x4a,0x19,0x82,0x3e,0x06,0x8b,0x93,0x92,0x78,0x36,0xfa,0x43,0x63,0xa8,0x23,0x5a,0x6f, + 0xf9,0xbe,0x24,0x14,0x1f,0xc5,0xf2,0x5c,0x6f,0x36,0xdd,0x61,0x98,0x41,0xd0,0x01,0x99,0x57,0xd4,0x5f, + 0xa2,0x5e,0xf5,0xe2,0x98,0x56,0x2a,0xaf,0x15,0x99,0xe9,0x51,0xcf,0xe2,0xe7,0x20,0x0b,0x38,0xba,0x06, + 0x0c,0xfc,0xe3,0x5c,0xad,0x96,0xb0,0x2e,0xa4,0x29,0x8c,0xa0,0xf4,0xd7,0xf1,0x37,0x1a,0x1d,0x5e,0x82, + 0x9b,0xc8,0xd9,0x46,0x0a,0x50,0x98,0xc3,0x38,0x50,0x35,0xc3,0x45,0xfe,0x89,0x48,0x19,0x37,0x3e,0x3a, + 0xfb,0xea,0xc4,0x24,0x9b,0x29,0x2a,0x1f,0xd5,0xa3,0x12,0x7c,0x26,0x7f,0x6a,0x72,0x69,0xdc,0x54,0x09, + 0x37,0x33,0xa1,0x93,0x88,0x66,0x1d,0xb5,0x4c,0x24,0x22,0x01,0x3d,0x44,0xee,0xbd,0x89,0x80,0xa8,0x26, + 0x44,0xf2,0x70,0xba,0xde,0x21,0x73,0xb7,0x31,0x9e,0xbb,0xbd,0xd5,0xe7,0x6d,0x63,0xe7,0x02,0xc8,0x16, + 0x03,0xa1,0xa1,0x60,0x00,0x46,0x6a,0x03,0xde,0x59,0x28,0x9d,0x6b,0x30,0x68,0xa6,0x44,0xea,0x95,0x48, + 0xa5,0x44,0x99,0x1c,0x17,0x61,0xea,0xa4,0x13,0x54,0xaa,0x24,0xe8,0xa3,0xb1,0xc4,0x39,0x8b,0x25,0x50, + 0x12,0x7f,0x4b,0x5f,0xb8,0xf2,0xba,0xbb,0xf5,0x9b,0x93,0xec,0x54,0xa5,0xc9,0x2e,0xad,0x9a,0x62,0xbe, + 0x16,0xd2,0x18,0x34,0xfb,0x2e,0x7c,0x22,0xf2,0x38,0x95,0x0f,0xf9,0x04,0x04,0x7d,0x42,0xe7,0x23,0x1a, + 0x0a,0xb4,0x7b,0x65,0x10,0x8d,0x4b,0x62,0xde,0xe2,0x77,0x5a,0x48,0x66,0x8a,0xc2,0xf0,0x7f,0x97,0x55, + 0xda,0x25,0xfd,0x1c,0x69,0xff,0xd7,0x32,0x61,0x42,0xda,0x4a,0x24,0xcb,0xe8,0xb6,0xec,0x33,0xfd,0x9b, + 0xc1,0x03,0xca,0xb6,0x60,0x36,0x45,0x63,0x7c,0x3a,0xed,0x39,0x00,0x22,0xf6,0x9e,0x46,0x18,0xb2,0xd3, + 0x24,0x6a,0x82,0x13,0x79,0xf6,0x64,0x8b,0x80,0xc1,0x8a,0x3a,0x87,0x67,0x9c,0x43,0xa9,0x63,0xef,0xb9, + 0x4f,0x44,0x0b,0x9f,0xe1,0xe7,0x4e,0xb8,0x9f,0xbc,0x0a,0x1b,0x19,0xec,0xb8,0xb2,0xd4,0x4e,0x45,0xe0, + 0x0a,0x94,0x94,0x45,0x9a,0x5f,0xef,0xd2,0xd0,0xa3,0x6e,0x02,0xf8,0x90,0xc7,0x61,0x49,0x13,0xdf,0xcd, + 0xa8,0x9d,0xd9,0x84,0x5d,0xbd,0x57,0x9e,0x7d,0x14,0x46,0xef,0xb8,0x43,0xad,0xe5,0x67,0x87,0x6e,0x5b, + 0x3c,0xfc,0xf5,0x7a,0x2f,0x7a,0xe0,0xe1,0xf1,0xe6,0xe4,0x90,0xc6,0x16,0xb8,0x0a,0xdf,0xb9,0x03,0xbd, + 0x7b,0x6c,0x18,0x80,0x7b,0x25,0xd2,0xcd,0x57,0xc6,0xeb,0xd5,0x84,0xf9,0xa8,0x1c,0x61,0x59,0x3c,0xaa, + 0x0c,0xe7,0xff,0x8a,0x85,0x61,0xe6,0x03,0x27,0x8a,0xb1,0x92,0x04,0xdb,0xf4,0x13,0x6f,0xc5,0x1b,0x87, + 0x30,0x12,0x5a,0xdf,0xa4,0x1a,0xde,0x5b,0xa6,0xc4,0x4c,0x35,0x23,0x67,0x40,0x64,0x97,0x92,0x7d,0x08, + 0x8e,0xd2,0x25,0x55,0x98,0x4d,0x19,0x17,0xd8,0xaf,0x53,0x42,0x88,0xe9,0xa3,0xdc,0xf4,0x2b,0x45,0xe8, + 0x91,0xea,0x86,0x87,0x07,0x13,0x48,0xec,0x08,0x59,0xab,0x4a,0x49,0xe3,0xba,0x83,0x4e,0xe2,0xf1,0x33, + 0xf5,0xaa,0x52,0x41,0xab,0x8d,0x9d,0xcb,0xb2,0xfc,0x08,0x7f,0xf8,0x9f,0x75,0x97,0xdd,0x20,0x7e,0xf6, + 0x06,0xf1,0xac,0x90,0xae,0x7d,0x27,0x3a,0x77,0x6e,0x59,0xcf,0x61,0x27,0xcb,0x0f,0x5c,0x22,0x15,0xda, + 0xf6,0x7f,0x32,0x52,0xdf,0x40,0x9b,0x5a,0xfb,0xdf,0x51,0x1f,0x7e,0xda,0xea,0xc2,0x4f,0x5e,0x17,0x76, + 0x3f,0x40,0x9e,0xf5,0xa2,0xa0,0xfd,0xd7,0xe3,0x63,0x04,0x2f,0x76,0xda,0xd1,0x5a,0x43,0x93,0x8d,0xf4, + 0xbb,0x34,0xd1,0x12,0x2e,0xff,0x48,0xe4,0xcc,0xb2,0x4a,0xb4,0xd8,0x29,0x4b,0xa6,0x95,0x71,0x3b,0x8f, + 0x46,0x53,0x23,0x09,0x4e,0x9c,0x30,0xb1,0xa1,0xe7,0xc6,0x49,0x81,0x1a,0x96,0xe4,0x35,0xa7,0xa1,0x57, + 0xe5,0x77,0xde,0xa9,0x87,0x45,0xa3,0x6a,0xd8,0x96,0xa2,0xad,0x48,0xd2,0xce,0x88,0x56,0xc0,0x69,0xe7, + 0x45,0xa0,0x25,0x28,0xe8,0x08,0x38,0xce,0x27,0x58,0x0d,0x3e,0xd5,0x0a,0xf6,0x89,0x87,0xaa,0x66,0x09, + 0xbe,0x02,0x7d,0x3e,0x50,0x97,0xd5,0x78,0x55,0x85,0x51,0x3c,0xaf,0x60,0xa0,0xb3,0x9b,0xf5,0xeb,0x67, + 0xb4,0x26,0x2d,0xf2,0xe4,0x28,0x7d,0xca,0xb5,0x02,0xca,0x35,0x37,0x8c,0xdf,0x91,0x66,0x0b,0x80,0xef, + 0x52,0x96,0x14,0x49,0xef,0x90,0x0a,0x86,0xc4,0x82,0x42,0xfa,0x08,0x46,0xd8,0x72,0xc8,0xcf,0xab,0xf2, + 0x77,0xb8,0x63,0x8b,0x4d,0x55,0xa3,0x69,0x75,0x73,0x1e,0x37,0x3e,0x3b,0x96,0x33,0x94,0x17,0xb0,0x20, + 0xa4,0xc3,0xd9,0x18,0x76,0x16,0xf0,0x3e,0xa0,0x77,0xb8,0x8a,0x94,0x9a,0xd6,0x69,0x5a,0xb4,0x0e,0x75, + 0x8e,0x49,0x2e,0x2f,0xd2,0x4e,0x95,0x84,0x69,0x87,0x3e,0x8f,0xb6,0xbe,0x49,0xe9,0xab,0x53,0x8e,0xac, + 0x10,0xd1,0xac,0x9f,0x57,0x11,0xfd,0x1f,0x4e,0xe8,0x28,0xa8,0xfc,0x05,0xfd,0x21,0x6c,0xc7,0xd0,0xd2, + 0x2a,0x3d,0x27,0xdc,0x56,0x20,0x0c,0x66,0x05,0x1f,0xd7,0xbb,0x5b,0x34,0x8c,0x15,0x5d,0x7b,0x8a,0x37, + 0x27,0xdb,0x1b,0x39,0x7c,0x50,0x68,0xd0,0xeb,0x55,0x44,0x40,0x4c,0xe2,0xd7,0x90,0x59,0x99,0x38,0x37, + 0x8d,0x70,0x06,0xae,0xc7,0xbf,0x85,0x5a,0x98,0x60,0xed,0xff,0x55,0xad,0xe8,0xc0,0xe7,0xc6,0x4a,0x39, + 0xdd,0x69,0xea,0x41,0x0d,0x4c,0x98,0x22,0x22,0x5a,0xe0,0xac,0x02,0x72,0xce,0x42,0xb6,0x91,0xcb,0xe8, + 0xc8,0x1f,0xd3,0xdf,0x1a,0x75,0xe3,0x3c,0x94,0xd2,0xc9,0x0f,0x58,0x16,0x55,0x11,0xbf,0xce,0xc6,0x9b, + 0xb5,0x9a,0x0f,0x89,0x1a,0xcf,0x14,0x02,0xbc,0x30,0x0a,0xa1,0x27,0xf8,0xc4,0x11,0x7d,0xc4,0x4f,0x30, + 0x53,0x8f,0xa2,0xb8,0xa6,0x53,0x64,0x42,0xb5,0x4c,0xb8,0xab,0x44,0xed,0xa3,0xae,0x49,0x14,0xb9,0xfe, + 0x14,0xbc,0x1e,0x25,0xc8,0xd3,0x3c,0x0c,0x75,0x6f,0x22,0x69,0x45,0x3a,0x68,0x5a,0xf0,0x16,0xe6,0xfb, + 0x50,0x0f,0xd1,0xd3,0x6b,0x45,0xb7,0x69,0xbf,0x10,0x55,0xad,0x64,0x34,0x44,0x3b,0x6c,0xaa,0xb6,0x00, + 0x09,0x02,0x31,0xc2,0xbb,0x90,0xff,0x0d,0x81,0x01,0x61,0xc2,0xe1,0xde,0x88,0x4a,0x8a,0xf4,0x29,0x07, + 0x7b,0x42,0x5a,0x87,0x11,0x4f,0x4f,0x4d,0xb3,0x81,0x1e,0xc7,0x8d,0x8c,0x0b,0x52,0x06,0x7a,0x62,0x4b, + 0x99,0x29,0xcd,0x5e,0x4d,0x23,0x44,0xba,0xec,0xfe,0x92,0x66,0x01,0x1f,0x4c,0x14,0x7d,0xa2,0x6a,0x5d, + 0x0c,0x9b,0x98,0x05,0x60,0xb5,0x1b,0xd5,0xb7,0xcc,0x05,0xea,0x91,0x61,0xc7,0x00,0x88,0x84,0x5a,0x00, + 0x35,0xe3,0xd8,0x73,0x84,0x47,0x01,0xd8,0xa7,0xeb,0xb5,0xe6,0x6b,0xf9,0x95,0xce,0x20,0x5d,0x38,0xef, + 0x16,0xce,0xdb,0x85,0x73,0x14,0xde,0x6c,0x1f,0x58,0xbf,0x78,0x52,0x57,0xb1,0xd2,0x67,0x01,0x2d,0x61, + 0x24,0x6c,0x6c,0x6d,0x62,0x6f,0x44,0x96,0xee,0xb3,0x7f,0xfb,0xcc,0x5a,0x08,0xa6,0x3c,0xab,0x5f,0xb1, + 0x52,0x78,0xbd,0xfe,0x16,0x81,0x5c,0xe4,0x05,0x3a,0xc9,0xec,0xe4,0x3d,0xab,0x45,0xed,0xb9,0x7e,0x9c, + 0x5e,0x48,0x34,0x00,0x38,0xaa,0x0a,0xf5,0x43,0xdb,0x00,0x1e,0x04,0x86,0x18,0x06,0xd5,0xe1,0x71,0x76, + 0xff,0x6a,0x85,0x79,0xb1,0xbd,0x01,0xad,0xe0,0x0b,0x67,0xdd,0x07,0xff,0xd4,0x76,0x0b,0x5d,0xe1,0x42, + 0xf4,0x19,0x01,0xbf,0xe1,0x52,0x40,0xab,0xf2,0x4a,0x54,0xec,0x16,0x01,0xf1,0x69,0x47,0x9a,0x4c,0x9b, + 0xe6,0x5f,0x94,0x6b,0x27,0xbc,0xf2,0x28,0xd1,0x2c,0x33,0x07,0x57,0x31,0xbe,0xc1,0xf1,0x4e,0x70,0x27, + 0xf2,0x20,0x79,0xeb,0xe8,0xe8,0x1a,0xc9,0xbc,0xe5,0xcc,0xd9,0xac,0x93,0x5b,0xd8,0xca,0x6e,0xa8,0x63, + 0x8a,0x77,0xba,0x98,0x5b,0x51,0x32,0x91,0xb5,0x94,0x2a,0x34,0x9f,0xa7,0xb5,0xce,0x7c,0x3e,0x4c,0x38, + 0xad,0x5d,0x77,0x1c,0x78,0x18,0xa8,0x15,0xd2,0xcc,0x08,0xd1,0xb4,0x3c,0x92,0x39,0xdb,0x32,0x49,0x79, + 0x63,0xa0,0x0a,0x96,0x22,0xa6,0x4d,0x53,0xd5,0xf6,0x81,0x10,0x58,0xd9,0x58,0x3f,0x62,0x3f,0x51,0xa5, + 0x46,0x7e,0x2e,0xf6,0x78,0xa9,0x93,0x6d,0xef,0xb2,0xa2,0x02,0xd2,0x4b,0xd1,0x19,0x97,0xfc,0x41,0x14, + 0x16,0x06,0x10,0xd8,0x9c,0xc3,0x84,0xa0,0x3b,0x39,0x25,0xb4,0xc0,0x3b,0x2a,0xf5,0x64,0x40,0xb5,0xfe, + 0x8a,0xd1,0x59,0x0d,0x4d,0x25,0x7e,0x50,0x78,0x14,0x34,0xd9,0x62,0x39,0x27,0x26,0x0b,0x70,0x97,0x42, + 0xd4,0x3f,0x9e,0x70,0x05,0x1a,0x4d,0x4c,0xd0,0x35,0x2d,0xd2,0x5e,0xaf,0xe9,0x8b,0x78,0x62,0xea,0xdf, + 0xd8,0xd8,0x47,0x73,0xc1,0x51,0xc5,0xc9,0xfc,0x54,0xeb,0x96,0xf2,0xcc,0x39,0x4c,0x23,0xd9,0x45,0x16, + 0x71,0x9a,0xfc,0xec,0x2e,0x18,0xdd,0x6d,0x03,0x29,0x11,0x31,0x3b,0xbc,0x2b,0x78,0x8f,0x79,0x8a,0xfd, + 0xcc,0x53,0x68,0x6a,0x5e,0xed,0x0e,0x48,0xed,0x40,0x35,0x28,0xd3,0x31,0x3e,0x17,0xe5,0x54,0x4c,0xbc, + 0x0f,0x3d,0xe1,0x20,0x64,0x4d,0xe7,0x29,0xcd,0x7e,0x8f,0xc6,0xb1,0xcc,0x8c,0xe6,0x72,0x94,0xe9,0xbd, + 0xa8,0xa9,0xd3,0x68,0x14,0xb1,0x96,0xfa,0x2c,0x2f,0x52,0xe6,0x7e,0x3f,0x47,0xef,0xd6,0x99,0xa5,0xb5, + 0x8d,0x76,0xfb,0x4c,0xd8,0xe6,0x17,0xfa,0x6b,0xa2,0xb7,0x14,0x37,0x66,0xa8,0x52,0xc3,0xb8,0x6f,0x95, + 0x34,0x34,0x40,0xbb,0x75,0x67,0xe0,0xe1,0xf5,0xe8,0xd6,0x7b,0x01,0x41,0xd7,0x9d,0xad,0x7b,0x66,0x95, + 0xfd,0x79,0x43,0x5f,0x5d,0x0e,0x6b,0x62,0x79,0x73,0x06,0x5c,0x0f,0x41,0xcd,0x34,0xf0,0xc5,0x82,0x93, + 0xac,0x2d,0xd2,0x30,0xa4,0xba,0x66,0x71,0x3d,0x71,0x00,0xef,0xa5,0xa2,0xbb,0x97,0x40,0xf3,0x15,0x36, + 0x6a,0xa6,0x8d,0x3e,0x51,0x80,0xec,0x2b,0x40,0x22,0xef,0x05,0x86,0x06,0xa7,0xd1,0x10,0x19,0xf4,0x1d, + 0xbd,0xb0,0xe3,0x25,0xb3,0x80,0xd9,0x02,0xa6,0x0a,0x28,0x10,0x07,0x7b,0x3e,0x56,0x98,0x23,0xf0,0xd7, + 0x27,0xd0,0x84,0x42,0xc7,0xaa,0x86,0x87,0x7f,0x0c,0x7b,0xa4,0xaa,0xf1,0x95,0xb0,0xbe,0x25,0x50,0x3e, + 0xdd,0x27,0x02,0x6d,0xba,0x81,0xf8,0x9b,0x26,0xe9,0x71,0xf5,0xe8,0xd8,0xd2,0x1c,0x8f,0xb9,0xbb,0x09, + 0x01,0xc1,0x71,0x75,0xf2,0xb8,0x3a,0x8d,0xa8,0xa0,0x3a,0xaa,0x58,0x6c,0xcb,0xf4,0xc7,0xb0,0x5a,0x15, + 0xa1,0x31,0xc6,0xfa,0x58,0x59,0xda,0xa5,0x4a,0x8e,0xed,0x0b,0xd5,0x92,0xd8,0x2a,0x51,0xc8,0xd0,0xd3, + 0x54,0x13,0xf4,0xe2,0xef,0xab,0x04,0x9d,0x3e,0x6c,0x49,0x5a,0xfe,0x80,0xd4,0xf6,0x17,0xf9,0x40,0x61, + 0xfd,0x20,0xcc,0xdd,0x45,0xb4,0xd0,0x22,0xba,0xa3,0x22,0x57,0x09,0x28,0x3f,0xb3,0x7a,0xf8,0x0e,0x54, + 0xd7,0xd5,0x62,0x54,0x0d,0xcf,0xae,0xb1,0x12,0x59,0x45,0x40,0x55,0x40,0x9e,0x7d,0x96,0xd3,0xd9,0xb5, + 0x22,0x04,0x35,0x1d,0x0c,0x68,0x28,0xc4,0x29,0x89,0xa8,0x86,0xe1,0x81,0x30,0xbd,0xfa,0x9e,0x8a,0x3d, + 0x03,0x5e,0xba,0x6a,0xca,0x12,0xde,0xc2,0xdf,0x13,0xeb,0xc3,0xeb,0x33,0x9b,0x13,0xfa,0x08,0xbc,0xd5, + 0x59,0x59,0x9c,0xfd,0xac,0x82,0x0a,0x66,0xdb,0x9e,0x8f,0xad,0xc8,0xa8,0x3f,0x04,0x80,0x1b,0x45,0x85, + 0xea,0x6c,0xdb,0x6e,0x5a,0xb2,0x11,0xe5,0xef,0x2e,0x5d,0x4d,0x41,0x9f,0x7a,0xcd,0xce,0x6c,0xb3,0x02, + 0x91,0xac,0xd4,0xea,0x93,0x4a,0x15,0xe3,0x50,0x77,0xac,0x1a,0x4f,0xd9,0x10,0xab,0x30,0x9d,0xb8,0x88, + 0x62,0x93,0x57,0xe0,0xef,0xb8,0x02,0x05,0x80,0x80,0x76,0x04,0xc2,0x34,0x5f,0xa6,0x3c,0xf2,0xe2,0x0b, + 0xf3,0x55,0x81,0xbf,0x63,0xfe,0x1b,0x5f,0x44,0x77,0xf6,0xb7,0x69,0xf7,0x77,0xea,0xe3,0xcb,0x2d,0x95, + 0x12,0xdb,0xd9,0x9d,0xe1,0xdc,0x5d,0xd1,0x2a,0xfc,0x2c,0xab,0x45,0xd3,0xde,0x9f,0xae,0x45,0x3b,0x56, + 0x76,0xcf,0x82,0xbb,0xe6,0x06,0x36,0xb9,0x19,0x34,0x13,0x90,0xfe,0x46,0xca,0xd3,0x48,0x35,0x4e,0x17, + 0xd4,0x88,0xee,0xc2,0xb7,0x70,0xc9,0x9c,0x30,0xc9,0x86,0xee,0x81,0x92,0x08,0x52,0x57,0x85,0x88,0x53, + 0xda,0xfc,0x3c,0x52,0xdb,0x72,0x30,0xd6,0x04,0x32,0x46,0xa6,0x4d,0x73,0xef,0x5a,0x7c,0xc1,0x45,0x3c, + 0xec,0x2c,0x57,0x1c,0xca,0xcc,0xfe,0xd8,0x68,0xe9,0xdb,0x62,0xfc,0x2e,0x9b,0xcd,0x91,0x53,0x5e,0x17, + 0x3f,0x88,0x89,0xc4,0x70,0x96,0xcf,0x9b,0xac,0xea,0x33,0x70,0xfe,0x33,0x1a,0xc4,0xa1,0xd3,0xf2,0x6d, + 0xa2,0xb8,0x63,0x7d,0xd1,0xc3,0x8f,0xdc,0x3a,0x49,0x04,0x08,0x58,0xa2,0x0c,0x10,0x99,0x74,0x08,0x01, + 0x2a,0xa4,0x91,0xa3,0x7a,0xc4,0xa3,0xa9,0x59,0xd4,0x74,0x95,0x4f,0xb1,0x8f,0x98,0xd2,0xf7,0x52,0x88, + 0x20,0xa2,0x6f,0x12,0x2f,0x05,0xc2,0xd9,0x73,0x1a,0xec,0xc7,0x0d,0xb1,0x09,0xe6,0xf0,0x01,0xdf,0xb7, + 0x0b,0xdb,0x43,0x23,0x29,0x83,0xb4,0x92,0x3e,0x14,0xc8,0x98,0x48,0xc3,0x46,0x64,0xc6,0x35,0xf6,0xc0, + 0xb8,0x55,0xc4,0x11,0xb4,0x4e,0x36,0xd6,0x9e,0xc8,0x5b,0x64,0x84,0x3b,0x6b,0xb1,0xb8,0xe0,0x99,0xb6, + 0xa5,0xd2,0x2c,0xf3,0xdb,0x0e,0x2d,0xa4,0x45,0xf0,0x56,0xcb,0x6d,0x2d,0xba,0x54,0x4a,0xe8,0xae,0x74, + 0x28,0x28,0x7d,0x54,0xb2,0xb8,0xa6,0x42,0x47,0x69,0x73,0x73,0x3c,0x57,0x27,0x7d,0xdf,0xb6,0x21,0xdc, + 0xae,0x9a,0xeb,0xa4,0x8a,0x32,0xbf,0xa2,0x74,0xef,0xd0,0xaf,0x27,0x37,0xa4,0xed,0x96,0x29,0x8d,0x5f, + 0x55,0xdd,0xe9,0x65,0xdd,0xed,0xe5,0x24,0xa9,0xd1,0x41,0xdb,0xd9,0x09,0x71,0x8c,0xca,0xc9,0x62,0x35, + 0x45,0xcc,0xe8,0xf2,0x27,0xc4,0x06,0xe0,0x00,0x09,0x9e,0xf2,0x7e,0xe1,0xed,0x1c,0x96,0x6f,0x51,0x43, + 0xbc,0x63,0xef,0xd5,0xb0,0x54,0x98,0xbe,0x27,0xa2,0xcd,0x6c,0xd6,0x14,0xb1,0xdb,0x98,0x96,0xad,0x78, + 0xcf,0x5c,0x85,0x57,0x21,0x5e,0x22,0x96,0x7b,0xe7,0x09,0xb6,0xdc,0x7a,0xdd,0xf8,0x4e,0xce,0xba,0x2a, + 0x53,0x49,0x09,0xe5,0xc6,0xf0,0x8c,0x80,0x66,0x9a,0x55,0xcc,0x5d,0xe1,0x3b,0xa2,0x2c,0x1b,0x13,0x2d, + 0x17,0x3a,0x3f,0x14,0xb7,0xf6,0x43,0x63,0xa9,0xa2,0xe3,0xfc,0x67,0x69,0x46,0x75,0x8b,0xd2,0x31,0xe2, + 0x82,0xb6,0xb4,0x42,0x17,0x3e,0xae,0x7a,0x2e,0x66,0xc1,0x86,0x18,0x50,0x81,0x6c,0x45,0x84,0x46,0xa0, + 0x0e,0x7f,0xf2,0x48,0xc2,0x9b,0xee,0x74,0x24,0x74,0x84,0xd0,0xc2,0xc0,0x7e,0x07,0x08,0x9e,0x08,0x1b, + 0x6b,0xd6,0x38,0x6e,0xc3,0x5d,0x1e,0x8d,0xd9,0xbb,0xd9,0x79,0xbf,0x12,0x43,0x94,0x43,0xb2,0x1b,0x57, + 0xe3,0xa3,0x82,0x16,0x02,0x84,0x74,0xdc,0x25,0xfe,0xcf,0x6d,0x8b,0x9a,0x9d,0x2c,0xc0,0x61,0x83,0xa3, + 0xdc,0x56,0x79,0xd3,0x9c,0x2f,0x90,0x35,0xd2,0x22,0x03,0x77,0x04,0xe5,0x22,0xe3,0x9f,0xcc,0x89,0xb7, + 0x67,0xd7,0x4c,0xde,0x03,0x37,0xc2,0xcc,0xd1,0xcb,0x0d,0x8a,0x44,0x04,0xe5,0x3e,0x49,0x9e,0x19,0xee, + 0x40,0x3f,0xb0,0x10,0x79,0x54,0x42,0x2f,0x4e,0xa3,0x86,0x31,0xf8,0x8f,0x35,0x1f,0x07,0x84,0x0e,0x6b, + 0x9a,0xdf,0x31,0xb1,0x7e,0xe5,0x02,0x09,0x35,0x44,0x10,0xf6,0x05,0x0c,0x78,0xac,0xeb,0xe0,0x0c,0x7e, + 0x42,0xea,0x26,0x07,0x46,0x29,0x21,0x71,0x07,0x13,0x2d,0x1c,0x6d,0x0a,0x01,0x46,0x88,0xa0,0x14,0x5c, + 0xb8,0x2c,0x98,0x81,0x3f,0xd1,0xe7,0x37,0x11,0x4e,0xf9,0x69,0xeb,0x6c,0xc5,0x57,0x2c,0xfa,0xb2,0x14, + 0xe3,0x44,0xa8,0xfd,0x9a,0xb8,0x7c,0x17,0x14,0xcc,0x59,0x73,0xb5,0x68,0x40,0x39,0x7e,0x6a,0xb6,0xf0, + 0x39,0xae,0xb2,0x0c,0x3d,0xdc,0x4a,0x03,0x23,0x82,0x7d,0x07,0x18,0x35,0x0c,0x22,0x9d,0xa3,0x4d,0x67, + 0x89,0xab,0x68,0xfc,0x89,0xfe,0xc4,0xef,0xf1,0x27,0x3c,0xce,0x42,0xf9,0x24,0x69,0x41,0xd7,0x50,0xea, + 0x7d,0xc7,0x30,0xfe,0xbc,0x00,0xdc,0x3b,0x3d,0xaa,0x81,0xfd,0xb7,0x70,0x07,0x17,0xf1,0x2a,0x6b,0x56, + 0x61,0x0f,0x23,0xdf,0x9d,0x9d,0x05,0x7b,0x99,0xda,0x3d,0x8c,0x5a,0xe7,0xcf,0xb5,0x25,0x15,0x74,0xf7, + 0x8e,0x33,0x6d,0x44,0x43,0xbc,0x2a,0x3e,0x69,0xf6,0xc2,0x62,0x1c,0x9c,0xc1,0x4b,0x3a,0x08,0x24,0x00, + 0x91,0x37,0x25,0xc7,0x99,0x27,0x9a,0xbd,0x93,0xc1,0x96,0xb8,0xa7,0x8e,0xbf,0x64,0x82,0x8e,0x43,0xd1, + 0x6a,0x74,0xea,0x1c,0x09,0x38,0xf9,0x63,0xa6,0xd5,0xa9,0x7b,0x68,0xb8,0xb2,0xe2,0xbd,0x8f,0xa6,0x35, + 0xcf,0xe4,0xcc,0x76,0xc0,0xd9,0x5b,0x89,0x41,0x1d,0x4c,0xae,0x60,0xc3,0x95,0xd7,0x6f,0x68,0x28,0x89, + 0xb7,0x17,0x8f,0x3c,0x36,0x05,0x8a,0xf8,0x26,0x72,0x74,0x7d,0x29,0x7f,0xc6,0x8c,0x80,0xf0,0x14,0xc5, + 0x1e,0xff,0x55,0x89,0x04,0xcd,0xd3,0xf5,0x11,0xea,0x84,0x04,0x72,0xc4,0xba,0xbd,0x7c,0x7c,0x72,0x6a, + 0xb4,0xd4,0xb9,0xf6,0x27,0xdf,0x06,0xa3,0xf7,0x99,0xf8,0x95,0x9d,0x95,0xc9,0x75,0x46,0x6d,0x9c,0x15, + 0x1c,0x72,0xfd,0x0c,0xf2,0x31,0xfa,0x99,0x27,0x57,0x9c,0xda,0x24,0x0b,0xfe,0xfd,0x2d,0xb9,0xc1,0x4f, + 0x9e,0x9c,0xe3,0x67,0x91,0x9c,0x71,0xea,0x2c,0xb9,0xe0,0xdf,0x8f,0xc9,0x0d,0xff,0x9e,0x27,0xe7,0xfc, + 0x7b,0x95,0x1c,0xe1,0x87,0xc6,0x8b,0x88,0x1b,0x67,0xab,0x24,0xe5,0xe4,0x8b,0xe4,0xc8,0xeb,0xc1,0x27, + 0x99,0x34,0x5f,0x4c,0x48,0x0c,0xb2,0x06,0x33,0x71,0xc8,0x60,0x4f,0x25,0x1d,0x29,0x55,0x34,0xbc,0x8d, + 0xbc,0x58,0x8b,0xb0,0x4a,0x67,0xf2,0x49,0x9d,0xe8,0x98,0xa4,0x73,0x1d,0x25,0xa6,0x4e,0x64,0x1b,0x5e, + 0x15,0x26,0xe0,0x27,0x4e,0x22,0x36,0x62,0x23,0x8a,0xa7,0xd4,0xef,0xb4,0xf5,0x25,0x9b,0xf1,0x78,0x0f, + 0x71,0x5c,0x65,0x6c,0x89,0xb0,0x69,0x9b,0x86,0x6a,0xa2,0x28,0x17,0x57,0xba,0x52,0x68,0x40,0xc4,0x5d, + 0x81,0x4f,0xdd,0xee,0x64,0x34,0x31,0xce,0x85,0x66,0xe7,0x24,0xa5,0xf2,0xce,0x8b,0xc4,0x35,0x19,0x46, + 0x6a,0xeb,0x4c,0x82,0x65,0xb8,0x7b,0xc3,0x10,0x10,0x95,0xe2,0xac,0x16,0xfb,0xba,0xb1,0xa6,0x3a,0xb7, + 0xc2,0xa1,0x18,0x69,0xc9,0x1b,0x8e,0xde,0xaf,0x11,0xaf,0x33,0x30,0x48,0xd9,0xf4,0xc9,0x99,0xec,0xb9, + 0x1a,0x95,0x27,0x11,0x49,0x68,0x4c,0xe9,0x26,0xbe,0xbb,0x0d,0x43,0xd7,0xb5,0x1b,0xf1,0x68,0x99,0xc7, + 0xd9,0x1d,0x56,0xcb,0xac,0x6b,0x15,0xcb,0x65,0xcf,0xfa,0x0c,0xf3,0xab,0x09,0x1e,0xd1,0xae,0x64,0xa1, + 0xb1,0xaa,0x9b,0x53,0x1f,0x2d,0xea,0x39,0x83,0xa3,0x21,0x2b,0xa2,0xf4,0xb9,0x9f,0xcc,0x8d,0x74,0x8e, + 0xca,0xf7,0x59,0x79,0xe8,0x09,0x59,0x31,0x03,0x0f,0xb9,0x59,0x3e,0xc5,0x87,0x2b,0x82,0x1b,0xab,0xbc, + 0x0c,0xbd,0x38,0x59,0x95,0x38,0x35,0xe3,0x9c,0xa2,0xd2,0xac,0xaf,0x61,0xf1,0xa3,0x7e,0x86,0x87,0xae, + 0x93,0xb1,0xb9,0x34,0x2d,0x9d,0x33,0x71,0x6b,0xa7,0x5e,0x19,0x93,0x34,0xd2,0x75,0x22,0x4e,0x11,0x21, + 0x1b,0x5d,0xab,0x7e,0xeb,0xd4,0xeb,0xa5,0xb2,0xb0,0x4c,0x24,0x7e,0xbc,0x36,0x75,0x64,0x34,0x17,0x2e, + 0x29,0x11,0x41,0x3a,0xe1,0x9b,0xb9,0x0f,0xbd,0x66,0xf2,0x33,0x22,0xad,0x1a,0x47,0x5a,0x65,0x8f,0x88, + 0x84,0x81,0xe8,0x01,0x98,0xfb,0x1e,0x15,0x9a,0x64,0x3f,0xf2,0xd1,0x14,0x46,0x1b,0xb5,0x4a,0xce,0x5a, + 0x4a,0x19,0xd7,0xff,0x04,0xe2,0xd5,0x94,0x80,0x7d,0xbd,0x9e,0x87,0xec,0xb2,0xd3,0x29,0xda,0x9e,0x24, + 0xa6,0xca,0x24,0x08,0x19,0xfa,0x15,0x72,0xec,0x94,0x69,0x52,0x85,0x2b,0x35,0x73,0xae,0x13,0x21,0xaf, + 0x46,0x9f,0x9b,0x0e,0x7b,0x4b,0x8e,0x33,0x7f,0x4e,0x07,0x03,0x49,0xe5,0x2a,0xe2,0x26,0x9c,0x3a,0x29, + 0x68,0xd4,0x1b,0xcd,0xd9,0x2b,0xc0,0x1f,0xc2,0x00,0xab,0x93,0xc4,0x75,0x29,0xd4,0x65,0xd6,0xda,0x1f, + 0x05,0x8d,0x59,0x67,0xc0,0x2e,0x80,0x8b,0xb9,0xe5,0x6b,0xaf,0x1e,0x17,0xd5,0xef,0x98,0x26,0x00,0xd6, + 0x94,0xb8,0x82,0x79,0x7a,0x33,0xb6,0x05,0x69,0x2a,0x62,0xe2,0x49,0x8f,0x25,0x70,0x9a,0xaf,0x91,0xeb, + 0x0c,0x34,0xf3,0x80,0x2f,0xf4,0x3f,0x97,0x99,0x54,0xba,0xe6,0xf5,0xfa,0xe1,0xc1,0x81,0xee,0x98,0x8e, + 0xc6,0x06,0xc7,0xf7,0x3f,0xd3,0x82,0x5c,0x41,0xc1,0x55,0x99,0x2f,0x23,0x60,0xb2,0xdd,0x43,0x65,0xdb, + 0x1b,0xb7,0x46,0x18,0xbb,0xef,0x37,0x0e,0xf6,0x8c,0x76,0x61,0x43,0x33,0x39,0xa7,0xad,0xe3,0x44,0xd0, + 0x5d,0xb4,0xe1,0x99,0x96,0x56,0xa1,0xc3,0x48,0x2d,0x49,0x24,0xe1,0x7a,0x9d,0xf0,0x2a,0x23,0xcc,0x2f, + 0x91,0xf9,0x1a,0xa5,0x1b,0x43,0x00,0x3c,0x8d,0xf7,0x63,0xc2,0xfb,0xe9,0x05,0x51,0xc4,0x84,0xa8,0xa8, + 0x65,0x83,0x3c,0x46,0x69,0x92,0x32,0x05,0xff,0x0c,0x18,0x44,0x71,0xe0,0x61,0x22,0x6d,0xe7,0x9e,0x05, + 0xa7,0xc7,0x64,0x21,0x30,0x35,0x72,0x41,0x21,0xf2,0x03,0x9f,0x31,0x44,0x5a,0x32,0xff,0x1d,0xb0,0x30, + 0xba,0x53,0x20,0x83,0x2c,0x8c,0x4a,0xe4,0x05,0xdc,0x84,0x47,0x61,0x21,0xc7,0x12,0x8b,0x88,0x97,0x86, + 0x58,0x8c,0x58,0xdb,0xa1,0xbf,0xe0,0xba,0xb4,0xa5,0x49,0x31,0xd4,0xce,0x81,0x42,0x14,0x8e,0xa8,0x7f, + 0x44,0xfc,0x45,0x63,0xfc,0x4d,0x4e,0xcc,0x17,0xa0,0xa6,0xce,0xd3,0xc9,0x47,0x7b,0x88,0x73,0xa1,0x98, + 0x0b,0x75,0xcb,0x6c,0x68,0x55,0x0d,0xd9,0x9f,0x0a,0xe1,0x3c,0x73,0x38,0xa0,0x15,0x81,0xcb,0x16,0x74, + 0xb6,0x5d,0xbb,0x88,0x8e,0x6a,0xf0,0x09,0xcd,0x1a,0x1d,0x64,0x42,0xdc,0xc2,0x2b,0xdc,0x15,0x6b,0x42, + 0x98,0xe1,0x34,0xe1,0xdc,0xd1,0x52,0x2b,0x26,0x7c,0x4d,0x70,0x4f,0x22,0xff,0x57,0xd1,0xe8,0x5b,0x3a, + 0x0d,0xe6,0x8a,0x36,0x14,0xc8,0xb3,0xf5,0x1a,0xaf,0x13,0x79,0x3d,0xb4,0x74,0x6c,0xbd,0xd9,0x40,0x70, + 0xae,0x71,0xa1,0xe9,0x90,0xe9,0x70,0x3a,0xef,0x83,0x9e,0xb6,0x26,0x11,0x47,0xba,0x1e,0xb0,0xee,0x73, + 0xd9,0xee,0x69,0xd4,0x12,0x9a,0x4f,0x08,0xcf,0xcd,0x4f,0x93,0xd7,0xe1,0x9c,0x3a,0xc3,0xa4,0x80,0xa6, + 0xe2,0x80,0xae,0x78,0xac,0x04,0x1b,0x8f,0x71,0x90,0x99,0x57,0x85,0x1c,0xae,0xd1,0xe5,0xc8,0x2b,0x4f, + 0xef,0x8a,0xd9,0xd7,0x4f,0x38,0xb2,0x68,0xca,0xd9,0x04,0x85,0x50,0x61,0x39,0x14,0xc2,0xd7,0x33,0x38, + 0x58,0xd1,0xd9,0xa9,0x56,0xce,0x6c,0x68,0x4b,0xe7,0x37,0xf3,0x4f,0x5c,0x35,0xf3,0x2c,0xec,0x4b,0x38, + 0x72,0xb2,0x2a,0x23,0xa4,0x52,0xd8,0x04,0x04,0x35,0xf2,0xc0,0xf0,0xc5,0x99,0x89,0x94,0xa1,0x5d,0x3b, + 0x83,0x2d,0xcc,0x4c,0x36,0x81,0x74,0x72,0x0a,0x42,0x8a,0xa5,0xd6,0xf8,0xa5,0x17,0xf1,0x78,0x78,0x53, + 0x28,0x7f,0xda,0x53,0x04,0x38,0xa2,0x8d,0xa7,0x41,0x60,0x49,0xe5,0x98,0x37,0x45,0x23,0x6a,0xc9,0xa4, + 0x02,0x37,0xb4,0x8c,0x36,0xbb,0x3e,0xa6,0xcf,0x8c,0x96,0x32,0xb3,0x0a,0xca,0x8e,0x81,0xc2,0x87,0xca, + 0x17,0x9b,0x6a,0xb2,0xf6,0x43,0x25,0x12,0x4f,0xf9,0x0a,0x9a,0x81,0x3c,0x79,0x0b,0xe7,0xa7,0x91,0x4d, + 0x49,0xaa,0xb1,0x8f,0x36,0xb6,0xa5,0x71,0x16,0x16,0x32,0xfb,0x08,0xcf,0x5a,0xfd,0x48,0xc0,0x95,0x13, + 0x7d,0x42,0x68,0x81,0xa1,0x0c,0xcd,0x5e,0x7a,0x70,0x2f,0xf1,0x53,0x27,0x56,0x55,0x22,0xee,0x17,0xc1, + 0xd5,0x2a,0xdb,0xb7,0xa7,0xc2,0x3e,0x51,0xfa,0xa0,0x12,0xf6,0xc2,0xcb,0x71,0x40,0x2f,0x97,0xcc,0x6f, + 0xa4,0xaa,0xd7,0xed,0xa3,0x54,0xb7,0x47,0x84,0xb6,0x08,0x19,0x59,0xab,0xa7,0x78,0xa6,0x2c,0xf5,0x19, + 0x4f,0x19,0x49,0x4d,0x1c,0xd6,0x22,0x3e,0x7e,0x05,0x9f,0x57,0x67,0x69,0x8d,0x38,0xfa,0x1a,0x7b,0x11, + 0x09,0x65,0x94,0x97,0x6d,0x1e,0xa6,0x64,0x23,0xb8,0x12,0x66,0x0d,0xe1,0x24,0x01,0xdc,0x97,0x44,0xf0, + 0x4b,0x1f,0x22,0x5a,0xd1,0xb9,0x64,0xbc,0xac,0x3c,0xf9,0x73,0xde,0x22,0xa8,0x1a,0xfa,0x1a,0x04,0x47, + 0x69,0xac,0x1f,0xac,0xf6,0x0d,0xa8,0xb8,0x55,0x20,0x67,0x7d,0x3b,0xa2,0x9c,0x81,0x6f,0x23,0x6e,0xd6, + 0x2f,0xd9,0xee,0x57,0xdd,0x7f,0xec,0xe2,0xe2,0x00,0x40,0x6e,0x09,0xc9,0x07,0xc1,0x86,0x4f,0xc8,0x12, + 0x4a,0x17,0x41,0x59,0x2c,0xd7,0x0b,0x58,0xff,0x29,0xdc,0x19,0x45,0x47,0xe6,0xcb,0x6a,0x4c,0x94,0x4d, + 0x38,0x4f,0xea,0x68,0x7c,0x72,0x44,0x23,0x3b,0xed,0x58,0xd9,0xce,0x5d,0x3c,0x2b,0x22,0x1f,0x5c,0x04, + 0x1a,0x4c,0x1f,0x90,0x0d,0x22,0xd1,0x88,0xd8,0x09,0xb6,0xd0,0xa9,0x6f,0x0b,0x9d,0xd1,0x1c,0xa5,0x27, + 0xf5,0x69,0xd4,0xe7,0x01,0x4b,0x64,0x0d,0x51,0x85,0xb3,0x13,0xa2,0xa0,0x6c,0x34,0x91,0xd3,0x8e,0x59, + 0xfe,0x24,0x1a,0x1b,0x27,0xaf,0x6f,0x0e,0x68,0x84,0xbf,0x84,0x54,0x63,0x1e,0x4e,0x14,0xec,0x4e,0xd8, + 0x23,0x9f,0xf8,0x44,0x22,0xd0,0x68,0x64,0x34,0x33,0xbf,0x10,0x4e,0xc4,0x2e,0x07,0xfa,0x39,0x0a,0x57, + 0xac,0x5b,0xdb,0x9b,0x50,0x9e,0x68,0xb2,0x71,0xf3,0x95,0xbe,0x15,0x80,0xf6,0xbe,0xa7,0x10,0x9c,0xd1, + 0x9a,0x45,0x31,0x8c,0x1e,0xc7,0xa8,0x62,0xdc,0xa9,0x00,0x91,0xac,0xc4,0x9c,0x41,0xbe,0x0a,0x8f,0x80, + 0xf3,0xe2,0x5f,0xe8,0xaf,0xb4,0xd9,0xfd,0x40,0x9a,0x8b,0x09,0xe1,0xa6,0x56,0x4c,0xc6,0x6b,0x3d,0x81, + 0x32,0x92,0x89,0x8d,0x09,0xd8,0x54,0x59,0x7f,0x06,0x25,0xe6,0x5a,0x89,0xfb,0xbe,0x02,0x28,0x07,0x7b, + 0xa5,0x0c,0x8c,0xfe,0x9e,0x05,0xa6,0xb3,0x68,0xd4,0xe1,0xb6,0x0d,0xad,0x8b,0x16,0xfd,0xc4,0x58,0xc6, + 0x17,0x15,0xdb,0x6c,0xfc,0x49,0xb5,0xca,0x36,0xd3,0x4e,0x88,0xc2,0x82,0xa8,0x64,0xf9,0xa1,0x9b,0x70, + 0x28,0xea,0xc9,0x3a,0x39,0x55,0x99,0x67,0xaf,0x0e,0xf3,0x10,0xde,0xf6,0x0c,0x0b,0xa3,0x3e,0xbb,0x50, + 0x7d,0x8e,0x4c,0x47,0xb3,0x24,0x1f,0xde,0xbb,0x2a,0xe8,0x38,0x45,0x00,0x2c,0x79,0x1a,0x16,0x35,0x0b, + 0x87,0x2e,0x88,0x84,0x4a,0x2f,0x10,0x23,0xb6,0x5e,0x22,0xb8,0x02,0x61,0x99,0x15,0x44,0x65,0x79,0xfd, + 0x2e,0xab,0xb3,0x8a,0x48,0x20,0xca,0xa6,0xd4,0xb1,0xc6,0x21,0x94,0xc5,0xbe,0xc1,0x6f,0xe7,0x69,0x83, + 0x60,0x19,0xfa,0x63,0x7c,0x87,0x4d,0xd8,0xc6,0x1a,0x39,0x13,0xaf,0xc9,0xf3,0x30,0xf7,0x44,0x76,0x16, + 0x01,0xd5,0x01,0x68,0xcd,0x31,0xf1,0x44,0x53,0xfa,0x36,0xc7,0x21,0x13,0xc5,0xba,0x99,0xb4,0xb7,0x36, + 0xd1,0x5e,0xae,0x12,0xfa,0x24,0x95,0x4f,0x3c,0xf9,0x28,0xc1,0x43,0x38,0xf3,0xfc,0x57,0xaa,0x30,0xb7, + 0x2c,0x4e,0x0e,0x87,0xb1,0x94,0xd8,0xa6,0xb2,0xca,0xf2,0x8b,0xe2,0x8d,0x71,0x93,0xa6,0x89,0x21,0xc8, + 0x60,0x2c,0x60,0x10,0x1d,0x8b,0x32,0x1b,0xfa,0xc2,0xa0,0x32,0xcf,0x44,0x9b,0xe3,0x5c,0xb9,0x1c,0xbb, + 0xe5,0x1e,0x4d,0x78,0xdb,0x69,0x36,0xce,0x15,0xa0,0x2d,0x48,0x94,0xcf,0x5c,0x43,0x1f,0xb1,0x65,0xf3, + 0x21,0x1b,0x30,0x14,0x82,0xe2,0x68,0xf7,0x73,0x0f,0x37,0x1b,0x21,0xce,0x57,0x34,0x7c,0xd8,0x43,0x79, + 0x28,0xcd,0x73,0xda,0xf0,0x03,0xd9,0x59,0xd9,0x01,0x6b,0x6b,0xeb,0xd5,0x32,0xab,0xcc,0xd9,0x83,0x72, + 0x3a,0x85,0x89,0x0f,0xb6,0x48,0xe5,0x77,0x63,0x40,0x71,0xdb,0x7e,0x4f,0x8c,0xdf,0x49,0xd7,0x08,0x1b, + 0x11,0xde,0x1c,0x09,0x82,0xd3,0x4c,0x38,0x50,0xe3,0x11,0x07,0xa2,0xb1,0xce,0xd2,0x79,0x66,0x52,0xec, + 0xd1,0x98,0x1a,0x25,0x7e,0x7a,0xba,0x2b,0x26,0x92,0x90,0x10,0xb0,0xef,0x25,0x02,0xd4,0x34,0x90,0x71, + 0xf7,0x18,0xe9,0x6e,0xc9,0xb3,0x34,0xf1,0x4a,0x88,0xae,0x48,0xba,0x42,0xd4,0x71,0x11,0xb3,0xca,0x7d, + 0xcb,0x3c,0x4e,0x7c,0x13,0x6c,0x5f,0x44,0xa3,0x92,0xf9,0x1a,0x95,0xb0,0x71,0x92,0x5d,0x10,0x9c,0xdf, + 0x24,0x07,0xb4,0x26,0xed,0xb4,0x47,0x07,0x58,0x20,0x1d,0xe8,0x0b,0x09,0xce,0x5f,0xce,0xed,0xc1,0xc2, + 0x48,0xec,0x15,0xc6,0xe8,0x39,0xf3,0x6f,0xd8,0x6b,0x1e,0x5e,0xc7,0xdd,0x49,0xa3,0x93,0x2b,0xf4,0x16, + 0x30,0x79,0x09,0x6d,0x74,0xbb,0x8c,0xb6,0xc6,0xe2,0x48,0x36,0x6e,0xb3,0x9c,0x34,0x9c,0x7a,0x9a,0x20, + 0xc4,0xca,0xb6,0x45,0xc1,0xd3,0xcc,0x86,0x38,0x39,0x43,0xbc,0x80,0x96,0xed,0xe5,0xdb,0x96,0x7d,0x04, + 0xbb,0x28,0xe2,0x34,0xef,0x90,0x0b,0xec,0x9d,0xe9,0x7d,0xf5,0x21,0x6b,0x51,0x26,0xdd,0xd5,0x19,0xfb, + 0xae,0xf3,0xdf,0xec,0x1f,0xc6,0xdb,0xba,0x9a,0xb1,0xef,0xf4,0xdf,0x29,0x0d,0x55,0x9d,0xda,0x0d,0x6d, + 0x1c,0x05,0x09,0x24,0x76,0x0a,0x8c,0x6f,0xe2,0x28,0x14,0x12,0x01,0x9b,0xdd,0x56,0x1b,0x8d,0xee,0x3c, + 0xb1,0xe2,0x8b,0x8e,0x89,0x00,0xab,0x49,0x19,0x4e,0xa1,0x80,0x61,0xf0,0x3c,0x63,0x5c,0xd7,0x85,0x4b, + 0x13,0xa8,0x17,0x66,0xef,0x6c,0xe9,0xa8,0xf9,0x82,0xb7,0x90,0x94,0x6d,0xd9,0x1b,0x8d,0x6a,0x08,0x90, + 0x99,0x04,0x78,0x09,0x5a,0x2c,0x65,0x06,0xcf,0x27,0x6d,0x5e,0x6e,0xe9,0x1a,0xd8,0x12,0x7f,0x37,0x67, + 0x8f,0x2d,0x46,0x31,0x70,0x58,0xc3,0x2f,0x6e,0x09,0xb1,0x2d,0xbc,0xd0,0x64,0xf2,0xf0,0xde,0x94,0x86, + 0x58,0x95,0x70,0xd9,0xca,0xac,0xde,0x7f,0xc5,0x77,0x5e,0x7a,0x5e,0x00,0x99,0xef,0xd9,0x7d,0x2b,0x42, + 0xe6,0x23,0xe8,0x09,0xe2,0xd7,0xbc,0xe7,0x5d,0x82,0x2a,0xfc,0x37,0x3a,0x80,0xb9,0x14,0x4c,0xcb,0xf8, + 0x89,0x08,0x0e,0xfd,0x84,0xe0,0xc8,0xf8,0x3d,0x8d,0xf5,0x83,0x6f,0xd6,0xdf,0x5e,0xfe,0x6c,0xdc,0x8c, + 0xb3,0xbd,0x00,0x61,0x6f,0xe2,0x2c,0x06,0x67,0xe8,0xd9,0x7c,0xbf,0xf2,0x01,0x6c,0x0b,0x50,0xfa,0x0e, + 0x47,0x9a,0x2c,0x84,0x0e,0xa4,0xdd,0xa9,0x52,0xa7,0xb2,0xcb,0x1f,0xa5,0xbc,0x43,0x89,0xd0,0x4d,0x50, + 0x27,0x36,0x1e,0x48,0x2f,0xbe,0xd8,0x0d,0x02,0x02,0xfc,0xdf,0x4b,0xa8,0x17,0x91,0xa2,0xdf,0xc2,0xdb, + 0x95,0xac,0xa4,0xe9,0xb6,0x26,0xe8,0x32,0x08,0x46,0x2d,0xf1,0x5c,0xa6,0x63,0x02,0x84,0x8d,0x0e,0xbd, + 0x8b,0xea,0x1a,0xbf,0x3a,0xde,0xc0,0xbd,0x00,0xdd,0x36,0x75,0xf7,0x87,0x5d,0x72,0xeb,0x41,0x7d,0x75, + 0x11,0xc4,0xc1,0x22,0x6d,0x2e,0xd9,0xd0,0x68,0x2c,0x8f,0x5b,0xda,0xa2,0x27,0x99,0x89,0xee,0xb3,0xad, + 0xe1,0x34,0x35,0xda,0xa8,0x7b,0xbf,0xad,0xb2,0xea,0xe6,0x7d,0x06,0x3d,0x74,0x29,0xf7,0xd0,0xdc,0x15, + 0x4b,0x73,0x9a,0x5f,0x05,0x7d,0xaa,0x94,0x9f,0x3b,0x7b,0x85,0x6d,0x2e,0xab,0x6c,0xd6,0xf1,0x11,0x32, + 0x9e,0xd7,0xb9,0xef,0xc6,0x6d,0xc0,0x14,0x18,0x02,0x0e,0xda,0x29,0x2c,0xe7,0xe9,0xdb,0x7a,0xd4,0x55, + 0xab,0xa4,0x6c,0x0d,0xb5,0xe2,0x5f,0x1c,0xfe,0xf8,0xc5,0x21,0x8b,0x03,0x16,0x8f,0x9a,0x90,0x8f,0x5d, + 0xfb,0x2f,0x8a,0xe7,0x65,0xd5,0x5b,0x0b,0xfe,0x5a,0x94,0x91,0x13,0x3e,0x1e,0x0c,0x38,0x89,0x31,0xb2, + 0xa9,0x9b,0xe0,0x43,0x1e,0x72,0x0f,0x70,0x7f,0x12,0x21,0xb6,0x8b,0xb1,0x05,0x1a,0x0f,0x47,0x3d,0xfd, + 0xb2,0x90,0x49,0xf6,0xa3,0x3e,0xfa,0x7d,0xff,0x70,0xd6,0xf9,0x39,0xe3,0xb1,0x46,0x1b,0xa7,0x72,0x24, + 0x16,0xa2,0x08,0xf8,0xb9,0x2b,0x5f,0xc1,0x12,0x8a,0x8c,0x84,0x4f,0x5a,0xa0,0xd0,0x56,0xb0,0x88,0x0a, + 0xde,0x88,0x61,0xa5,0xe7,0x5c,0x84,0xa1,0x89,0x63,0xc8,0x2b,0xd6,0xd5,0x41,0x57,0xcb,0x7e,0x65,0x9f, + 0x29,0x63,0x45,0x89,0xb0,0xae,0x5b,0xaf,0xe7,0x39,0x3b,0x34,0xd2,0x0f,0x71,0x83,0x3c,0x60,0xd0,0x15, + 0x18,0xcd,0x63,0x48,0x95,0xde,0x22,0x54,0xd6,0x65,0x39,0x27,0x4e,0x9d,0x6b,0x68,0xc9,0x9e,0x30,0x4e, + 0x3f,0x01,0x94,0x71,0x3b,0x45,0xcb,0xe4,0x7c,0xfb,0xfd,0x4c,0x04,0x14,0x56,0xbb,0x2c,0x4e,0x72,0xd8, + 0x58,0x39,0x91,0x10,0xf9,0xa3,0xa4,0x1a,0xed,0xed,0xe5,0xb4,0x75,0x61,0xc1,0x98,0x9f,0x6a,0x42,0x3b, + 0x2c,0x71,0xd8,0x3b,0x4f,0x4b,0xcf,0xf3,0xe4,0x3b,0x0d,0x93,0x3a,0x46,0x9e,0xe7,0xf0,0xb5,0x5e,0x37, + 0xdd,0xa4,0xf6,0xbc,0x1b,0x48,0x16,0x6e,0x38,0x41,0x8c,0x8e,0x29,0xbc,0xf6,0x1a,0x79,0xa8,0x93,0xdf, + 0xb3,0xed,0x5a,0x5d,0x64,0x01,0x70,0x60,0x54,0x62,0xab,0x11,0x5c,0x8c,0x6c,0x4a,0xcc,0x89,0xec,0x20, + 0x52,0x58,0x33,0x59,0x85,0x48,0x58,0xaa,0xa4,0x16,0x6e,0x7e,0x82,0x9f,0x6a,0x4c,0xb3,0x46,0x53,0xfc, + 0x13,0x04,0x5f,0x89,0x71,0xc4,0xfd,0x01,0x8c,0xae,0xd6,0x81,0x06,0x0a,0x77,0x1e,0xa8,0x1c,0x46,0x13, + 0x38,0x09,0xe8,0xc7,0xed,0x2b,0x91,0x45,0x4f,0x07,0x83,0x95,0x01,0x6a,0xe2,0x5d,0xe4,0x6b,0xf8,0xac, + 0xf5,0x7d,0x9b,0x17,0x44,0x93,0xf3,0x37,0x73,0xfb,0x0d,0xb6,0xf0,0xbc,0x15,0xd5,0x66,0xd6,0x27,0x1b, + 0x17,0xe3,0xbc,0xb9,0x6f,0x92,0x47,0x6d,0xcd,0x31,0x8e,0xc0,0x54,0x2b,0x4d,0x6e,0x46,0xe9,0xf8,0x7b, + 0xf8,0x4b,0x49,0x72,0x00,0x19,0xf4,0x2c,0x64,0xa7,0x80,0x95,0x8d,0xfc,0xc1,0x05,0x10,0x47,0x50,0x87, + 0x0f,0xbc,0xb3,0xc5,0x55,0xa7,0xc5,0x15,0xb7,0xd8,0x9d,0x04,0xdd,0x32,0xb3,0xe1,0x76,0xbe,0xeb,0x68, + 0xc2,0x5e,0x67,0xf4,0x15,0x4f,0x7b,0xb0,0x2a,0x64,0x62,0x32,0xfa,0x07,0x41,0x6c,0xdb,0x60,0xf7,0xf7, + 0x16,0x8e,0xeb,0x8b,0xba,0xd3,0x31,0xc7,0xd5,0xdb,0x73,0x24,0x66,0x1f,0x5b,0x2a,0xd3,0x30,0x67,0x53, + 0xdc,0x68,0xa8,0xe3,0x82,0xb3,0x4e,0x3c,0x77,0x6f,0xc9,0x55,0x1e,0xa9,0xe2,0x84,0xe0,0x9d,0x60,0x70, + 0x58,0xa5,0xd7,0xaf,0x99,0x8c,0x4a,0x99,0x9c,0xda,0x0b,0x86,0xc1,0x9e,0x6f,0x0f,0x92,0xfa,0xd5,0x40, + 0x56,0x20,0x61,0x57,0x87,0x41,0x14,0xd1,0xfe,0x90,0x65,0x26,0x4e,0xa9,0xf1,0x38,0x25,0x07,0x98,0x74, + 0x50,0x72,0xad,0x91,0x8e,0x5b,0xbf,0x6d,0x02,0xfb,0x43,0xb6,0x2d,0x7d,0xce,0x04,0x74,0xf8,0x47,0xdb, + 0x4d,0xa6,0x6c,0x18,0x99,0x86,0x85,0x84,0xda,0xd0,0xe5,0xb5,0x71,0x64,0x05,0xe3,0xc8,0x4a,0x2e,0x4c, + 0xe0,0x63,0xc0,0xf5,0x80,0xaf,0x41,0x91,0x71,0x81,0x02,0x70,0xc6,0x93,0x9e,0x2b,0x44,0x16,0x7a,0x14, + 0xd0,0xb6,0xe1,0x36,0xcf,0x7e,0xd8,0x30,0xd6,0x12,0xd7,0xa9,0x36,0x11,0x9a,0x17,0x97,0x59,0x95,0x73, + 0xbc,0x6d,0x9a,0xa1,0x2c,0x14,0x64,0x68,0x91,0x60,0x66,0x3c,0x05,0x24,0x41,0x33,0x07,0xcc,0x27,0x51, + 0x63,0x18,0xcd,0x24,0xf1,0x3f,0x61,0xe1,0xf8,0x3c,0xa9,0x3a,0x49,0xcc,0x8f,0x69,0xd1,0x10,0xc2,0x21, + 0xb4,0x0a,0x24,0xac,0x85,0x9e,0x6b,0x77,0x09,0xa6,0x16,0xe7,0x51,0x99,0xcc,0x41,0xe1,0x4f,0x84,0x99, + 0x29,0x09,0xf4,0x21,0x29,0x05,0xdf,0x36,0x0a,0x5f,0x17,0xeb,0xf5,0x3b,0x18,0x74,0x68,0xe9,0x37,0xc4, + 0x15,0xf2,0xa4,0x8b,0x19,0x01,0xbb,0xce,0xf7,0x2a,0x9e,0x44,0xd8,0x7d,0x29,0xdb,0xe2,0x37,0x40,0xe2, + 0x63,0x04,0xb7,0x43,0x60,0x5a,0x1b,0x71,0xfc,0xf5,0xfb,0x30,0xcb,0x55,0x81,0xcc,0x28,0xfe,0x17,0x7d, + 0x17,0x21,0xd0,0x66,0xa7,0x10,0x32,0xbd,0x55,0xf8,0xde,0x37,0x10,0xf8,0x67,0xc5,0x4e,0x77,0x39,0x07, + 0xc8,0xde,0xfa,0x90,0x45,0x25,0x49,0x40,0x94,0x76,0x79,0x3d,0xa3,0xfd,0x51,0xd3,0x5e,0xc9,0x8a,0x40, + 0xc2,0x8e,0x05,0xcf,0x5e,0x3d,0x79,0xf6,0x54,0xdb,0x4a,0x0b,0x8f,0x3f,0x0e,0x9a,0x8a,0xc6,0x12,0x43, + 0xc9,0xdf,0x0a,0x8c,0xce,0x5e,0x6f,0xd6,0x1e,0xea,0x5f,0x95,0x0e,0x21,0xd0,0x2e,0xc2,0xbd,0x20,0xaa, + 0x71,0x96,0x52,0x39,0xd4,0x5b,0x8c,0xf5,0x73,0x2c,0xf5,0xba,0x1a,0x9a,0xfc,0x33,0xdd,0xb6,0x93,0xd2, + 0xe0,0xfe,0x8e,0x56,0x2b,0x92,0xd5,0x58,0xf3,0x05,0xaa,0x8a,0x2b,0x89,0xfa,0xc6,0x2e,0xf6,0x33,0x54, + 0xe4,0x35,0xfc,0xdb,0x5e,0xc1,0x6b,0xe2,0xf8,0xd9,0x2f,0xc7,0x8f,0xdf,0x3d,0x7b,0xdc,0x1a,0x35,0xa5, + 0x2f,0xdd,0x59,0xaa,0x67,0x87,0x63,0x6a,0xe6,0xd9,0xf2,0xd2,0x90,0x4e,0xbe,0x2d,0x60,0x43,0xc4,0x77, + 0xb9,0x7c,0x41,0x44,0xc4,0x34,0x27,0xdc,0x03,0xcb,0x9a,0xf4,0x22,0x15,0xe4,0xa8,0x4c,0x57,0x3a,0x77, + 0xbc,0x08,0x05,0x01,0x4b,0x91,0x51,0xd6,0x73,0x05,0x8c,0xcd,0x56,0xa6,0xe1,0x64,0xf7,0x60,0xd3,0xb3, + 0x0c,0x1e,0x24,0x7c,0xdb,0xd9,0x8f,0x86,0x74,0xe3,0xe0,0x3b,0xa5,0xde,0x2b,0xb2,0x29,0x33,0xc8,0xbf, + 0x3d,0x86,0x01,0xbb,0x2d,0xd5,0xbc,0x02,0xcb,0x2d,0x20,0x97,0x05,0x73,0xd4,0x2d,0x54,0xea,0x42,0x91, + 0xd5,0xad,0xf4,0xd2,0xfa,0xe6,0x4e,0x34,0xf8,0x51,0x10,0x52,0x1d,0xb1,0x78,0xa5,0x4b,0x5e,0x46,0x23, + 0x60,0xdc,0x3e,0xf6,0x48,0xb8,0x38,0xbe,0xe4,0x72,0xca,0xde,0xb8,0x04,0xb6,0xcf,0x33,0x4d,0x90,0x31, + 0xec,0xb1,0x25,0xbd,0x10,0x4d,0xd6,0x8c,0x9e,0x83,0x65,0xf8,0xe5,0x0b,0xa5,0xc9,0x39,0xa7,0x92,0x4b, + 0x5a,0x8c,0x12,0xcf,0x8a,0xf0,0x45,0x0d,0x6f,0x36,0x48,0x09,0xc7,0xaf,0x21,0x6c,0x7a,0xc5,0xfa,0x23, + 0x22,0xfe,0x47,0x1a,0xeb,0xb0,0x65,0x32,0x84,0x41,0x67,0x1c,0x37,0x36,0xc7,0x98,0xb9,0x92,0x8c,0xc8, + 0x62,0x96,0x50,0x86,0x75,0xf2,0x1a,0x28,0xe0,0x55,0xc6,0x12,0x44,0x05,0xd7,0xac,0x1c,0x06,0x98,0xd9, + 0x15,0x17,0xec,0xb9,0x83,0x40,0xac,0xbe,0x54,0x8d,0x53,0xdf,0x15,0x4c,0x6a,0x7f,0x59,0x7f,0xc9,0xb6, + 0x9c,0xe4,0x42,0xb6,0xcb,0xf2,0x1c,0x36,0x32,0x6d,0x16,0x7e,0x49,0xb8,0x5d,0x2e,0x79,0xa0,0xf6,0x2f, + 0x93,0x7c,0xef,0x70,0xe3,0x91,0x4d,0x8c,0x3a,0x77,0x0f,0x45,0x15,0x3a,0xc7,0x9f,0x15,0x5b,0x88,0x13, + 0x4b,0x36,0xa5,0xff,0x4b,0xfa,0x6f,0x1c,0x32,0x7b,0x84,0x28,0xd8,0x5c,0x6c,0x92,0x9b,0xf9,0x71,0xb1, + 0xe8,0x44,0xac,0xa3,0x2f,0xbe,0x16,0xdb,0xee,0xaf,0x1f,0xd2,0x90,0x45,0x3e,0xba,0x7b,0xe8,0xf6,0xe4, + 0x24,0xfa,0xe2,0xcb,0x4e,0x81,0x49,0xab,0xc0,0x3c,0xfa,0xfa,0xef,0x9d,0x02,0xf3,0x56,0x81,0x55,0xf4, + 0xe5,0x7f,0x77,0x0a,0xac,0x5a,0x05,0x0e,0x1f,0x7e,0x09,0x8e,0x71,0xbd,0xa6,0x07,0xde,0xcc,0x7e,0x17, + 0xf7,0x0e,0xa3,0xfe,0x8c,0x7d,0x64,0xcc,0x88,0xb9,0x5a,0xaf,0x97,0xd1,0x6d,0x7d,0x9d,0x6b,0x8f,0x81, + 0x49,0x4a,0xb5,0x7e,0xf1,0x65,0x0c,0xc3,0x03,0x31,0x9a,0x1d,0x49,0xd2,0xd7,0x71,0xdd,0x49,0xfa,0xfa, + 0xef,0xf1,0xbc,0x93,0xf4,0xe5,0x41,0xbc,0xdc,0xdb,0x6b,0xa5,0x1c,0xc6,0xcb,0xfd,0xfd,0xd6,0x67,0x87, + 0xf1,0xb4,0x5d,0xe6,0xeb,0x2f,0xe2,0x69,0xbb,0xcc,0xe1,0xc3,0x2f,0xe2,0x59,0xbb,0xd0,0xe1,0xc3,0xaf, + 0xe2,0xd9,0xfe,0x3e,0x28,0x33,0x99,0x10,0xb7,0xe7,0xae,0x12,0x1a,0x8e,0x5a,0x68,0x96,0x6b,0x74,0xc5, + 0xe1,0x25,0xc5,0xf9,0x25,0x5c,0x24,0xf6,0x9e,0x87,0x2b,0x88,0x55,0xf6,0xf7,0xa3,0xd1,0x62,0x30,0x38, + 0xd7,0x31,0x7c,0x17,0x11,0x6b,0x08,0x60,0xe8,0x2f,0x02,0x57,0x6b,0x3f,0x92,0x8e,0x43,0x86,0x22,0x66, + 0xd9,0xcd,0xa5,0xd1,0x0e,0xc4,0xe2,0x46,0x54,0x2c,0x5e,0xf9,0xde,0x82,0x31,0xdc,0xe4,0x2f,0xc1,0xe5, + 0xe0,0x12,0x10,0x07,0x5f,0xa5,0x0f,0x5f,0x69,0xd2,0x43,0xef,0x27,0x4e,0x72,0x17,0x84,0x81,0x08,0x38, + 0x1f,0x99,0x7b,0x49,0xee,0x9f,0x51,0xea,0x7d,0x22,0x4e,0xee,0x07,0x51,0x78,0x9f,0xa3,0xd0,0x07,0xa3, + 0x76,0x96,0xed,0x4b,0x11,0xb9,0x52,0x2a,0xb0,0x19,0x05,0xc1,0xc6,0x06,0xb2,0x65,0x5f,0xe2,0x97,0x7a, + 0x8e,0x77,0xbc,0xf9,0xda,0x4e,0xce,0xc1,0xc9,0x4f,0x2b,0x44,0x58,0x63,0x93,0xa8,0xea,0x14,0x81,0x81, + 0x7d,0xd9,0xdb,0xbf,0xba,0x62,0x14,0x44,0xcf,0x5f,0xb6,0x4d,0x4f,0x5c,0x18,0xa0,0xcd,0xb6,0x75,0xb9, + 0x57,0x60,0x13,0xc5,0x27,0x9e,0x35,0xd1,0x3f,0xed,0x59,0x1f,0x66,0x56,0x3b,0x6f,0x02,0x84,0x38,0x6c, + 0x70,0xcb,0x77,0x78,0x34,0x4a,0xc7,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0xc4,0xf7,0x25,0xca,0x1a,0xaf, + 0xb2,0xae,0x05,0xe8,0x5f,0xad,0xac,0x69,0x9c,0x95,0x20,0xd7,0xf0,0x2a,0x5d,0x4a,0x1c,0x22,0xfd,0x8e, + 0xa3,0xed,0x8e,0x0a,0x3d,0x0f,0xbc,0xc6,0xd1,0xb4,0xd0,0x84,0x02,0xbf,0xb3,0x5e,0xdb,0x78,0xa8,0xba, + 0x38,0x43,0x95,0x75,0x8b,0x6d,0x92,0x60,0x17,0x2e,0x3b,0x84,0xec,0x61,0x52,0xe9,0x17,0x61,0x07,0x5a, + 0xca,0xff,0x7f,0x3a,0x5f,0xfb,0xcf,0xfa,0x45,0x8c,0x4b,0x2d,0x95,0x1a,0x70,0x29,0xc2,0xc9,0xf0,0x0d, + 0x97,0x63,0x1f,0x86,0x25,0xf9,0xc5,0x65,0x33,0x0e,0x29,0x5f,0x13,0xc9,0x8b,0xac,0x58,0x05,0xca,0x56, + 0xc0,0xf9,0x51,0x5c,0x0d,0x17,0xf9,0x74,0x3a,0x67,0x21,0x6e,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96,0x81, + 0x31,0xf8,0x1d,0x55,0x5a,0x4d,0x3d,0x76,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x7e, + 0x02,0xab,0xc5,0x63,0x14,0xcb,0x5c,0x81,0xcc,0x66,0x69,0xcb,0x3d,0x13,0x58,0x70,0x33,0xc2,0x45,0xad, + 0x57,0x90,0x9d,0xd5,0x1e,0xe7,0xa2,0xaf,0x75,0x9f,0x24,0xb8,0x94,0x67,0xb4,0xa5,0xfb,0xcb,0xc7,0x13, + 0x7b,0xb3,0x78,0x6d,0xdd,0xf4,0x6a,0xb9,0xc8,0x27,0x99,0x50,0xfe,0x49,0xad,0x26,0xa7,0xf1,0xc9,0x44, + 0xd5,0xa7,0x71,0xdd,0x0b,0x02,0x95,0x05,0x01,0xa1,0x90,0x20,0x92,0xc6,0xad,0x60,0x7b,0x08,0xdc,0x2e, + 0x2f,0x57,0xfb,0x1c,0x9b,0x05,0x49,0xbc,0x93,0x39,0x06,0xaf,0x09,0xa3,0x89,0x83,0x4e,0x54,0x18,0xe2, + 0x05,0x63,0x08,0x19,0xfe,0xd4,0xff,0x20,0x37,0x1f,0x74,0x42,0xdd,0xe6,0xfe,0xa9,0x99,0xb7,0x7b,0xe3, + 0xbe,0x66,0xc9,0x8c,0x07,0xa2,0x7e,0x24,0x1c,0x0f,0x56,0xb5,0xd5,0x7e,0xde,0xb5,0xda,0x87,0x6e,0x09, + 0x4e,0x11,0x7c,0xa5,0x0a,0x02,0x85,0xde,0xe6,0x26,0x76,0x56,0x8a,0xd8,0x59,0xe2,0x62,0x61,0xd8,0x35, + 0xeb,0xc7,0xd8,0x6a,0xd2,0xb7,0xe2,0x4f,0x3b,0xb3,0x26,0x56,0xfa,0x79,0x12,0xdc,0xbb,0x77,0x45,0xc8, + 0x8c,0x11,0x28,0x08,0x87,0x24,0x08,0xb5,0xb8,0x90,0x32,0x76,0xa8,0xe5,0x9d,0xfb,0x32,0xf2,0xfb,0x63, + 0xa4,0x18,0x44,0x8b,0xe7,0x08,0xb2,0xd2,0xa1,0x38,0x3b,0xc8,0xa7,0x67,0xc4,0x77,0xee,0xe5,0x40,0x8f, + 0x9a,0x9f,0x4c,0xca,0x26,0x84,0x71,0xe8,0x48,0x1b,0xff,0x18,0xf0,0x21,0x1c,0x0b,0x5e,0x2f,0x22,0x8e, + 0xfb,0xd3,0x12,0xd7,0x0d,0x52,0x17,0xe3,0xfb,0x1a,0xc7,0xde,0x57,0xc6,0x34,0xc7,0x85,0x36,0xd9,0x09, + 0xd1,0xe0,0xce,0x6d,0xb0,0x97,0xee,0x05,0x9b,0xc0,0x5b,0x80,0xb2,0xf1,0xd1,0xb8,0x8f,0xdc,0x68,0x0a, + 0x7f,0xae,0x5c,0x00,0x43,0xef,0x32,0xab,0x93,0x20,0x7a,0x74,0x00,0xa9,0x23,0x6e,0xe7,0x7a,0x61,0x52, + 0x4f,0x29,0xf5,0xe7,0xca,0x46,0xe9,0x0d,0xbf,0xe3,0x8f,0xfd,0x12,0xe0,0xa9,0xbf,0xd9,0x3f,0x1c,0xdf, + 0x52,0xaf,0x63,0x77,0xfe,0x7c,0x47,0x14,0x1b,0xb1,0xe2,0x3c,0x00,0x93,0xfa,0x5d,0x45,0x18,0x1f,0x83, + 0xd9,0xc4,0x52,0x9a,0x4b,0x70,0x9c,0x26,0x26,0x7c,0x7e,0x02,0xc9,0x4a,0x2d,0xfc,0x5e,0x25,0x3f,0x40, + 0x44,0xb0,0x3b,0xc1,0x19,0x17,0xcd,0x9b,0xf0,0xc7,0x2a,0xa9,0xa1,0xd2,0x1e,0xaf,0xf0,0x1c,0xc5,0x5f, + 0x83,0xa5,0xfd,0xb1,0xf2,0xc5,0x54,0x46,0xfe,0x2c,0x1e,0x92,0x54,0xc5,0x77,0x95,0xa9,0x80,0x03,0xcb, + 0xe2,0x7b,0x35,0x87,0xaa,0x26,0x5a,0x71,0x9c,0x65,0x43,0xbe,0x70,0x5d,0x84,0x3b,0x10,0xbc,0xf0,0xeb, + 0x2f,0xf4,0xf3,0xfe,0x3e,0x9b,0xda,0xd1,0x1c,0xfe,0xc0,0x35,0x09,0x68,0x6d,0xd0,0xb8,0x89,0x79,0xde, + 0x1e,0xef,0xef,0x7a,0xbc,0x26,0xe5,0x77,0x1a,0xab,0xfa,0xa1,0x82,0xba,0xd1,0x69,0x92,0xb5,0x7b,0x27, + 0xfb,0x46,0x8c,0xe5,0x46,0x9b,0x26,0x0e,0xee,0x11,0x5d,0x1a,0xe2,0x0e,0x45,0xaa,0x51,0xdf,0xd9,0x85, + 0x02,0xf2,0xc8,0x10,0xe1,0x39,0xa1,0x36,0xce,0x7e,0xf8,0xa7,0xca,0x27,0xa8,0xf6,0xf6,0xbe,0xf3,0x4d, + 0xdf,0x27,0x5e,0xc1,0xef,0xaa,0x6f,0x92,0x9f,0x3d,0xb8,0x9f,0xfb,0x51,0xc3,0x99,0x3c,0xcc,0xd6,0x6b, + 0xa6,0x23,0x3d,0x21,0x36,0x4f,0x92,0xef,0x6c,0x28,0xb3,0xc9,0x0e,0xb4,0xbc,0x16,0xf0,0xcb,0x18,0x45, + 0x23,0xcf,0x31,0xaf,0xf1,0xa5,0x22,0x0d,0x22,0x55,0x34,0xd1,0xf0,0x0c,0xd7,0x45,0x1e,0xa7,0x35,0x0c, + 0x7b,0x52,0xf7,0xe6,0x4b,0xcd,0x2e,0x9d,0x87,0x67,0x92,0xde,0x11,0x4f,0x42,0xf7,0xf6,0x92,0xfd,0x2a, + 0xe9,0x6c,0xe6,0xbb,0x18,0x9b,0x16,0xd9,0xe2,0x36,0xf2,0x6f,0x55,0x37,0x1c,0xed,0x4e,0x1e,0xba,0xeb, + 0x01,0xfb,0x9b,0x20,0x7c,0xc1,0x1b,0x53,0x7c,0xd8,0x36,0x08,0x61,0x8c,0xb8,0x04,0xea,0xb7,0x6a,0x9b, + 0x47,0x44,0x6b,0x3f,0x16,0xe3,0x5b,0x7d,0x0e,0xc2,0x52,0x47,0xce,0x32,0x84,0x95,0xd3,0xf8,0xde,0xa3, + 0x64,0xa6,0x8d,0xd3,0x59,0x85,0x74,0xaa,0xfe,0x56,0x45,0xbd,0x9c,0x29,0x22,0x5a,0x79,0xf3,0xd5,0x76, + 0x06,0x58,0x36,0xa1,0x89,0x4a,0xb5,0x6b,0x05,0x36,0x25,0xd8,0xfc,0x5d,0x2b,0xae,0xc1,0x2d,0x00,0x96, + 0x07,0xd5,0x29,0x8c,0xd4,0xd2,0xa4,0xf0,0xdf,0x47,0xbf,0x55,0x9a,0x49,0xed,0x20,0x07,0xea,0xe8,0xc9, + 0x19,0xf4,0x40,0x1a,0x77,0xbc,0x2e,0xc6,0x81,0xbe,0xfe,0x3a,0x36,0xd6,0x89,0x1c,0x24,0xda,0xf9,0x02, + 0xf0,0x07,0x1c,0xee,0x99,0xfd,0xcc,0xdd,0xd5,0xe3,0x94,0xbc,0x41,0xf6,0x75,0x2e,0x31,0x10,0x86,0x52, + 0x51,0xeb,0xd3,0x6b,0x7c,0xaa,0x33,0x3a,0x9f,0xe3,0xb3,0x0d,0x78,0x9c,0xdf,0x58,0x45,0x3f,0x6b,0xd4, + 0x14,0x01,0x63,0xad,0xcc,0xf8,0x37,0x1b,0x12,0xc0,0x73,0x38,0xec,0x9b,0x23,0xe3,0x70,0xd3,0x9a,0x29, + 0x9b,0xe8,0x8b,0xd8,0x65,0x4a,0xea,0xa4,0xf3,0x61,0x5b,0xba,0xe5,0xa7,0xde,0x25,0xe0,0xb2,0x3e,0x3e, + 0x2d,0x19,0x57,0x2e,0x72,0x56,0x88,0xa2,0x72,0x1d,0xb1,0x2e,0x3f,0x4d,0x82,0xc0,0xcb,0x9d,0xeb,0x5b, + 0x06,0x51,0x42,0xf1,0x5d,0xd1,0xe6,0xee,0x66,0xed,0x9e,0x94,0x17,0x04,0x28,0xdf,0x1d,0xbf,0x7a,0xc9, + 0x09,0x5c,0xba,0xea,0x0f,0x81,0xeb,0x99,0x40,0xa5,0x54,0xb6,0x46,0x9b,0x98,0xbc,0xbc,0x58,0x65,0x23, + 0xe0,0xbc,0x52,0x8a,0xbe,0x86,0x93,0x96,0x15,0x35,0x97,0x1a,0x30,0x8f,0x90,0x15,0xfa,0x45,0x60,0x7e, + 0xc4,0xd7,0x1a,0x8b,0x94,0x4d,0x9a,0x2f,0x87,0x67,0xfc,0x9a,0xa4,0xda,0x8a,0x11,0x22,0x32,0x44,0xc7, + 0xb7,0x37,0x66,0x8d,0xa6,0xc9,0x4a,0xed,0x86,0xb3,0xa4,0x8c,0x44,0xda,0x50,0x53,0x3a,0xac,0xb3,0xdf, + 0xbc,0x3d,0x7e,0xf1,0xe6,0x35,0xea,0x99,0x19,0xf1,0x0f,0x31,0x84,0x3d,0x6c,0x08,0xe1,0x06,0x76,0x30, + 0x77,0x17,0x63,0x89,0xa3,0xb4,0xd6,0xc3,0xf1,0x35,0x07,0x36,0xce,0x90,0x77,0xfc,0x67,0x56,0x4c,0xd8, + 0x6c,0xc2,0x99,0x9a,0x46,0xad,0xea,0x3d,0x45,0x9c,0xa8,0x12,0x44,0x85,0xfd,0xca,0x90,0x6d,0x62,0xbe, + 0x96,0x47,0xda,0xa4,0x65,0x9e,0xfe,0x7e,0xe3,0x82,0x79,0x8b,0x95,0x0b,0x9f,0xf2,0x86,0x20,0x9a,0x88, + 0xab,0xda,0x44,0x07,0x7d,0xcb,0x99,0x2a,0x70,0xb6,0xf7,0x42,0x23,0xb0,0x87,0xb1,0x3c,0x9a,0x8e,0x82, + 0x64,0x2c,0xa4,0x7f,0x0c,0x12,0xd2,0x9b,0x64,0xa5,0xed,0x6f,0x18,0x44,0x52,0xb9,0x05,0x90,0xca,0x78, + 0x7e,0x9d,0x8d,0x3b,0xf3,0x16,0x0d,0xab,0xa4,0x6f,0xe6,0x9e,0xd1,0x92,0x96,0xb5,0xbc,0x47,0xea,0xf8, + 0x2a,0x6c,0xbd,0x73,0xec,0x04,0xcf,0x9b,0xb1,0xf9,0x9c,0x42,0x79,0x71,0x87,0x76,0xf6,0x28,0xef,0xc4, + 0x2e,0xb9,0x68,0xda,0x32,0x30,0x16,0x18,0xa5,0x1d,0xd9,0x57,0xee,0xf7,0x23,0x12,0x5d,0x58,0x6d,0x9f, + 0xd3,0xad,0xdc,0x54,0xe7,0x46,0x5e,0xc4,0x1f,0xbd,0x4f,0xe7,0x49,0xab,0xb8,0x5a,0xc1,0x20,0xb5,0xac, + 0x16,0x7c,0x9d,0xfc,0x94,0xd3,0xa0,0x20,0xa8,0xe5,0x81,0xf6,0xe1,0x2c,0x99,0xaf,0xd7,0x2b,0x35,0xc5, + 0x7c,0xe9,0x8d,0x2a,0x95,0xf3,0x56,0xd6,0x29,0x9d,0x1a,0x12,0x18,0xc1,0xeb,0x1d,0x2e,0x7e,0x53,0xd3, + 0x28,0x9e,0x8e,0xc4,0xb0,0xb5,0x0d,0xad,0xbe,0xb6,0x9d,0xe9,0xc8,0x6c,0xd4,0x23,0x60,0xfb,0x4b,0x82, + 0xb7,0x2b,0xab,0x09,0x8d,0x60,0xdf,0xc2,0xce,0x62,0x92,0x9c,0x75,0x93,0x9d,0xe3,0x72,0x06,0x73,0xf5, + 0xa1,0x89,0xbf,0x96,0xb6,0x6a,0x4b,0xbb,0x9f,0x39,0x95,0x7e,0x25,0x75,0x70,0x68,0xcc,0x19,0x21,0xa9, + 0x25,0x6c,0x1a,0x07,0x83,0xc7,0xb0,0x44,0xac,0x95,0xc1,0x52,0x9c,0xbd,0x8c,0xc2,0x32,0xe1,0x7c,0x02, + 0xde,0x19,0xfd,0xda,0x62,0x3a,0xd6,0x09,0x30,0x40,0xe9,0xb3,0x04,0x37,0x8d,0xef,0x95,0xc6,0x91,0x42, + 0xb5,0x1c,0x43,0x22,0x70,0xb0,0x30,0x8e,0x4d,0x08,0x3d,0xa1,0xc3,0x4e,0xc0,0x94,0x65,0xa3,0xed,0x5a, + 0x1e,0xfc,0x5a,0xef,0x3d,0x88,0xec,0x25,0x4e,0x3d,0x1e,0xe1,0x5e,0x3d,0x1c,0x5c,0x0b,0x81,0xc5,0xe2, + 0xed,0x44,0x3f,0xc8,0x2e,0x34,0x2c,0xd4,0xfe,0x45,0x8f,0x68,0x30,0xd2,0xd6,0x97,0x3b,0xb8,0xf9,0xd1, + 0xeb,0x14,0x6b,0x64,0x02,0x56,0x92,0x67,0xfd,0x32,0xc5,0xb0,0x20,0x2e,0xcb,0x0c,0xd0,0x8f,0xbd,0xff, + 0xff,0xfb,0x2c,0x08,0x32,0xdf,0x9e,0x08,0x9b,0xae,0xfc,0x54,0x39,0x04,0xc0,0x04,0x74,0x45,0xf8,0x66, + 0x4a,0x64,0xea,0x9c,0xac,0xf9,0x4f,0x4d,0x1f,0xac,0x4f,0xcc,0xb4,0x79,0x53,0x59,0xc1,0x16,0x6c,0x04, + 0xef,0x68,0x7b,0xdb,0x54,0xa5,0x30,0x5c,0x80,0xb8,0x41,0x93,0x50,0x4a,0xf4,0xce,0x31,0xdf,0xa3,0x71, + 0x57,0x37,0xbd,0x39,0x3f,0x6b,0x34,0x69,0xa3,0x2d,0x40,0xb6,0x6e,0x6d,0x31,0x48,0xd4,0x5e,0x07,0xcc, + 0x2c,0x30,0x4d,0x0b,0xa4,0xc6,0xb8,0xc9,0xe2,0x69,0x1e,0x66,0xda,0x6a,0x2b,0xb8,0x0a,0x10,0x00,0x33, + 0x64,0x65,0x71,0xa3,0x51,0x78,0x0f,0x6e,0x7c,0xca,0xb8,0x71,0x8b,0x3c,0xb9,0xe6,0xbe,0xbc,0xcb,0x7d, + 0x07,0x9a,0x77,0x28,0xea,0x0b,0x62,0x8e,0x9b,0xb6,0xf5,0xc8,0xb6,0xcc,0x9b,0xa5,0x10,0xdb,0xc9,0x1c, + 0x17,0xa8,0xf0,0x2c,0xbf,0x00,0xa1,0x70,0x20,0x81,0x3c,0x81,0x56,0x5a,0xef,0x41,0xdf,0xbf,0x54,0x37, + 0xd5,0x57,0xdb,0x60,0xb0,0xea,0x6d,0x05,0x01,0xb8,0x35,0x1c,0x7b,0x4e,0xa7,0x1d,0x4e,0xfa,0xbd,0x14, + 0x50,0x38,0x06,0xb4,0xc9,0x45,0x65,0x1c,0x82,0x98,0xce,0x82,0xd8,0x8c,0xa3,0x58,0xf3,0xb9,0x60,0xa5, + 0x0a,0x26,0xf4,0x4a,0x9d,0xc0,0xf0,0xe2,0x43,0x3e,0x7e,0x9e,0xc7,0xaf,0x72,0xc2,0xf8,0x1d,0x1f,0xb4, + 0x7e,0xc5,0x4e,0xad,0x56,0xb0,0x5b,0x67,0x7f,0xb3,0xb6,0x8e,0x48,0xc2,0x61,0x08,0x6f,0xb7,0xb7,0x37, + 0xf9,0x06,0x9a,0x45,0xb8,0x9b,0x8d,0xfa,0x9d,0x9a,0x26,0x8f,0x74,0xbe,0xc2,0x35,0xcd,0xaa,0x47,0x49, + 0x84,0xa6,0x3c,0xa7,0x57,0x7f,0xc9,0x08,0xda,0xf5,0xad,0xba,0xd4,0xe4,0x91,0x0e,0xe0,0xc1,0x67,0x89, + 0xc4,0x9c,0xa8,0x4e,0x5e,0xe6,0x7b,0xc1,0x53,0x38,0x5a,0x05,0xa7,0xd6,0x64,0x0f,0x56,0x51,0xa9,0xc9, + 0x5b,0x55,0x72,0xd5,0x75,0x3b,0xbb,0x4c,0x3e,0x35,0x1c,0x4a,0x16,0x4a,0xd8,0x93,0xd7,0x77,0x54,0x32, + 0x31,0x79,0xfd,0x95,0xcc,0x51,0x09,0x8c,0x5d,0x69,0x8e,0x0e,0xa0,0x7e,0x70,0xb7,0x01,0xf3,0x84,0x97, + 0x6c,0x82,0x5e,0xd0,0x23,0x15,0x28,0xa9,0x80,0xb1,0x75,0x27,0x8a,0x01,0x16,0xd8,0xf9,0x78,0xae,0x4b, + 0xbc,0x40,0x89,0x39,0x95,0x98,0xd8,0x12,0xb3,0x84,0xd2,0xc3,0x95,0x8b,0xda,0x5e,0x82,0xf6,0xfd,0xe6, + 0x80,0x6a,0x9d,0x8f,0x3f,0xe4,0xf1,0x8b,0x9c,0xb9,0xfd,0x68,0x5c,0x48,0x63,0xa6,0xee,0xd8,0x54,0x11, + 0x1f,0x28,0x1d,0xbc,0x59,0x69,0x68,0x89,0x57,0xca,0xc2,0x4a,0x3c,0xc3,0x95,0xcc,0xc7,0xe6,0xea,0xc0, + 0x58,0x6a,0x19,0x0c,0x9e,0x68,0x59,0xba,0xcc,0x9e,0x89,0x04,0x12,0x9c,0xfa,0x68,0xe0,0x53,0xe3,0x0e, + 0xe9,0x91,0x91,0x7f,0x3c,0xb2,0xf1,0x16,0xa3,0x2c,0xb1,0x21,0xb8,0x1d,0x11,0x65,0xc6,0xd1,0xba,0x5c, + 0xac,0x2d,0x51,0xf6,0xbd,0xcb,0x1f,0xc3,0x72,0x72,0xef,0x71,0x23,0x81,0xaa,0x36,0xfe,0x4e,0x7b,0xec, + 0x93,0x58,0x87,0xd9,0x17,0x7f,0xd3,0xd7,0xd5,0x3a,0x01,0xc2,0xfe,0xa1,0x5f,0xfe,0x9e,0x47,0x4b,0x81, + 0x84,0x22,0x7a,0x07,0x6e,0x5d,0xb8,0x27,0x28,0x25,0xe2,0xfc,0x9c,0x9d,0x29,0xec,0x9b,0xbe,0xb6,0x73, + 0x2e,0x91,0xf7,0x5c,0x7a,0x68,0x64,0xa0,0xc9,0x59,0x63,0xb8,0x21,0xb7,0xa1,0x23,0xeb,0xab,0xc5,0x36, + 0x97,0xf4,0x19,0x41,0x78,0x56,0x71,0xe5,0x87,0x1c,0x55,0x0c,0x04,0x09,0x6e,0xbc,0x73,0xb4,0x0d,0x22, + 0x92,0x11,0x62,0x54,0xf0,0x9f,0xe5,0x8d,0x4d,0x40,0x32,0x94,0xcf,0x58,0x95,0x37,0x33,0xaf,0xc7,0xa5, + 0x24,0x4c,0x4d,0xc2,0x63,0xa6,0xd9,0x25,0x71,0x49,0x89,0x34,0xa5,0x59,0xaa,0xbf,0xba,0xb4,0xef,0xe6, + 0xb3,0x2b,0x9b,0xe2,0x7f,0xb7,0xa0,0xd4,0xf3,0x0c,0x76,0xe5,0xcf,0x50,0xa5,0xba,0x30,0x95,0xab,0x1b, + 0x94,0xc7,0x35,0xf0,0x92,0x71,0x6e,0x7b,0x65,0x26,0x46,0x5d,0xdb,0x6f,0x1f,0x73,0xbd,0xea,0xd8,0x36, + 0xa1,0x3e,0x9a,0xaf,0x75,0xd6,0x91,0xeb,0x9f,0xfd,0xfe,0x3d,0xa5,0x4d,0xf5,0x9e,0x52,0x9f,0x92,0xeb, + 0x4a,0x3d,0xa6,0x3f,0xda,0xc0,0x7f,0xf4,0x98,0x28,0x20,0x4b,0x72,0x7d,0x4a,0xc2,0xc7,0x89,0x79,0x8d, + 0x0c,0xc7,0xca,0x2b,0x71,0x2f,0xd9,0xfd,0xe4,0x05,0x61,0x22,0x8e,0x94,0xad,0xff,0xcb,0x12,0x74,0x20, + 0xe2,0x0b,0x63,0x49,0xee,0xad,0xd7,0xc7,0x38,0x3c,0x69,0x0d,0x8e,0x05,0x04,0xde,0x24,0xf7,0x06,0x83, + 0xe5,0x78,0x49,0xbb,0xe1,0x19,0x1e,0xaf,0xc6,0x57,0xf1,0x54,0x3d,0xc5,0xe3,0xe5,0xf8,0x92,0xf6,0xc5, + 0xdb,0xe4,0xde,0xf8,0x7a,0xbd,0x5e,0xc4,0x0b,0xf5,0x01,0xa9,0x3d,0xfe,0x33,0xc7,0xe3,0xe3,0xf8,0x42, + 0xbd,0xa0,0x82,0x1f,0xd7,0xeb,0x9b,0xf8,0x46,0xbd,0xa4,0xc7,0xa3,0xf5,0xfa,0x3c,0x3e,0x57,0xcf,0x89, + 0x6f,0xc9,0xc3,0xf7,0xd1,0xf8,0xbd,0x4c,0x5b,0xfc,0x3e,0x52,0xaf,0x13,0x3e,0x08,0x6b,0x56,0xd8,0xab, + 0x57,0xc9,0xd3,0x26,0xfc,0x10,0xa9,0x77,0x89,0x83,0x13,0xdf,0x53,0x37,0xba,0x7d,0x4d,0x20,0x49,0x07, + 0x4a,0xaa,0x9e,0x46,0x8a,0x7f,0x9f,0xd1,0x51,0xf9,0xce,0x81,0xe6,0x38,0xa4,0x12,0x9c,0xf1,0x26,0x52, + 0x2f,0x07,0x83,0x97,0x6c,0x69,0xf1,0x62,0x30,0x78,0x01,0x7f,0x06,0xaf,0x56,0x1d,0xb8,0x5d,0xc3,0x6b, + 0x7d,0x59,0xd2,0xc0,0xbe,0xa7,0xed,0xe0,0x4c,0xa4,0x5c,0xa3,0x46,0x68,0x24,0x73,0x0d,0x3e,0x55,0xe9, + 0xd0,0xca,0x67,0x08,0x7b,0xc4,0xac,0xa6,0x7b,0x3e,0x61,0xc1,0xda,0xe9,0x88,0x03,0x23,0x89,0x61,0x62, + 0x21,0x86,0x89,0x0d,0x76,0x98,0xdd,0x37,0xdd,0xf7,0x30,0x52,0x1f,0x06,0x83,0x0f,0xd4,0xf5,0x77,0x30, + 0x9b,0x7a,0x3b,0x18,0xbc,0x45,0x9f,0x31,0xe2,0x63,0x3d,0xa0,0x63,0x19,0xb1,0xba,0x6e,0x1d,0x24,0xc7, + 0xfe,0x7c,0xbc,0x69,0x4d,0xc7,0x7a,0xfd,0x8a,0xce,0xf1,0x67,0x4d,0xf8,0x3c,0x1a,0x7b,0xa7,0xd0,0x3b, + 0xf5,0x3c,0x8a,0x8f,0x50,0x7c,0x4e,0x8d,0x01,0x89,0x28,0x6f,0x22,0xc4,0x2a,0xb7,0xf2,0xfb,0x43,0xdd, + 0xe0,0xaa,0xde,0x85,0x6d,0x0f,0x30,0x8d,0x40,0x9c,0xb0,0x9b,0xba,0x73,0xe4,0x37,0x1f,0xb6,0x26,0x38, + 0x24,0xce,0xd3,0x4d,0xa2,0x9d,0x31,0xe8,0xba,0xfb,0xd2,0xc5,0x1f,0x55,0xa6,0x33,0x29,0x22,0x75,0x49, + 0x80,0x88,0x40,0xab,0xd7,0x32,0x25,0x25,0x3c,0x2c,0xf8,0x77,0xd9,0x33,0x25,0x25,0xf1,0x50,0x98,0x12, + 0x2e,0xd5,0xea,0xd3,0xb1,0x4c,0xc9,0xc7,0xd6,0x94,0x1c,0xa9,0x8f,0x3c,0x25,0xa5,0x5a,0xa9,0x23,0x99, + 0x92,0x2b,0x50,0x66,0x25,0xbd,0xa9,0x6b,0xfe,0xe8,0x08,0x74,0xb6,0x36,0x34,0xd7,0xb8,0xb2,0xf4,0xd1, + 0x99,0xf7,0xd6,0xc6,0x95,0x2e,0xdd,0xe0,0xca,0xfa,0x6e,0x5c,0x29,0x51,0x64,0xe5,0x2e,0x1a,0x8b,0x1a, + 0x0d,0x03,0x25,0xda,0xd8,0x5d,0x6e,0xd8,0x20,0x69,0xe3,0xa4,0x52,0x33,0xce,0x5c,0x25,0x12,0x2b,0x86, + 0x90,0x24,0xe4,0x2d,0xa9,0xc1,0x6a,0x53,0xf3,0x6a,0x90,0xdf,0xd2,0x24,0xf8,0xb8,0xef,0x92,0x12,0x05, + 0x7f,0xbd,0x44,0x16,0x61,0x48,0x5d,0x88,0xb0,0x62,0x2d,0xd8,0x4b,0x32,0x2e,0x6c,0xed,0x16,0x77,0xdd, + 0x50,0x12,0x7b,0x76,0x4b,0x89,0x73,0xbc,0x1a,0x54,0x76,0x2d,0xdb,0x7c,0x2e,0xdb,0xfc,0x18,0xdb,0xfc, + 0x8a,0x56,0x87,0x11,0xc2,0x79,0x34,0x3e,0x97,0xba,0xe2,0xf3,0x88,0xb1,0xa2,0x19,0x5a,0x7b,0xeb,0xfb, + 0x20,0x02,0x11,0x52,0x0f,0xc0,0xf0,0x1a,0xf4,0xa4,0x5b,0x18,0xe2,0x20,0x60,0xd7,0x82,0x43,0x1c,0x80, + 0x2c,0xa3,0x16,0x84,0x8c,0xc3,0x6b,0xc6,0x21,0x0c,0x39,0x54,0xe7,0x05,0x1b,0x8a,0x84,0xd8,0x10,0x8b, + 0xc1,0x60,0x81,0x37,0xe5,0x75,0x52,0x63,0x92,0x9b,0xf1,0x0d,0x6d,0xd7,0x38,0x0d,0x7d,0x82,0xe0,0x99, + 0x77,0x22,0x6f,0x47,0xa7,0xa2,0xd9,0x90,0x0b,0x18,0x7d,0xed,0xf2,0x53,0xc4,0xac,0x65,0x56,0xc2,0x05, + 0x40,0xd6,0x21,0xb6,0x61,0x4e,0x8c,0x50,0xc9,0x5e,0x00,0xa9,0x31,0x15,0xdf,0x0a,0x84,0x53,0x9d,0x1c, + 0x9c,0xc6,0x08,0x83,0x63,0xaf,0xfc,0x83,0x33,0x8c,0xa6,0x9f,0xbe,0xf1,0x34,0x7a,0x6f,0x35,0xbd,0xb2, + 0x0b,0xf5,0x7d,0xe3,0x63,0x80,0x7b,0x7c,0x33,0xb2,0x73,0x1c,0xb1,0xa4,0xf7,0x0b,0xf3,0xa4,0x9c,0xa9, + 0x5c,0x3f,0x7d,0x6b,0x4b,0x6e,0xd4,0x81,0x57,0xd5,0x8b,0x0e,0x15,0xdf,0x78,0x92,0xb1,0xc5,0x6a,0xde, + 0xe4,0xcb,0x79,0x26,0xf4,0xfa,0x7a,0xdd,0x1d,0x99,0x17,0x39,0x8d,0x4d,0x5d,0xe0,0xbc,0x65,0x1d,0x6f, + 0xba,0xbe,0x5b,0xf0,0x03,0x71,0xb9,0xb8,0x82,0x23,0x8f,0xd2,0xe4,0x9c,0xd8,0xbf,0xe7,0xb0,0x02,0x02, + 0xbf,0xab,0x70,0x95,0xd3,0x9c,0x2f,0x66,0xa7,0x09,0x48,0x19,0x7c,0x4c,0x42,0xe2,0x05,0x04,0xbb,0x09, + 0xf9,0x13,0x2f,0x82,0x30,0xb8,0x2e,0xd0,0x55,0xba,0x30,0x2b,0xaa,0xe4,0x1c,0xeb,0xa6,0x26,0x70,0xeb, + 0xcb,0x99,0x9b,0x6a,0xa7,0xef,0xb7,0x6e,0xa0,0x7c,0xd9,0xb4,0xaf,0x6b,0xe9,0x5e,0xc3,0x67,0xb3,0x76, + 0x6f,0x42,0x31,0xac,0xf5,0xfc,0x48,0x7c,0x28,0x13,0x51,0x29,0xc7,0x79,0xc3,0x65,0x05,0xa2,0xf6,0xd3, + 0xe2,0x47,0xcf,0x15,0xa4,0x11,0x67,0x68,0xe1,0x59,0x9c,0xcc,0x14,0x46,0x68,0xce,0x07,0xe4,0x8e,0x42, + 0x3c,0xc8,0xed,0x2f,0x0f,0xd5,0xbb,0xc6,0x66,0x28,0x2d,0xc8,0xf7,0xe9,0xcd,0x77,0x2d,0xa6,0xb3,0xeb, + 0xf0,0x70,0xc5,0xee,0x0e,0x90,0x3a,0x8b,0x5a,0x3c,0x10,0x3e,0x33,0x6f,0x24,0xa7,0x51,0x84,0x49,0x39, + 0x76,0xd2,0x70,0x9a,0xd7,0x6c,0xa3,0x2c,0x19,0xbe,0xfa,0xe2,0x89,0x37,0x13,0xbb,0x77,0x38,0x3c,0x88, + 0xa4,0x2a,0xeb,0x22,0xdf,0x71,0x16,0x3f,0x61,0x7f,0x9a,0xbb,0x64,0x66,0x9e,0xeb,0x85,0x27,0x15,0x65, + 0x32,0x60,0xcb,0x30,0xd6,0xac,0x22,0xce,0xf8,0x96,0x49,0xac,0x71,0x5b,0x1f,0x53,0x1d,0xff,0x84,0x37, + 0x98,0x75,0x49,0xf4,0x85,0x9c,0x3f,0x79,0x0d,0xf0,0x15,0x98,0x2e,0x5a,0x6a,0x3b,0x90,0x52,0xe1,0xae, + 0xac,0x88,0x10,0x44,0x89,0xcd,0x9b,0x47,0x3a,0xb6,0x12,0xa1,0x3f,0x46,0x85,0x86,0x9f,0xec,0x78,0xf3, + 0xe5,0xf4,0xc5,0x35,0x2e,0x07,0x39,0x65,0x7f,0xbe,0x9e,0x98,0xb6,0x3f,0x3a,0x49,0xd2,0x83,0x5f,0xa7, + 0xfb,0x1f,0xb3,0x6c,0xb9,0x9f,0xce,0xe9,0xb0,0xb8,0xa7,0x6f,0x1e,0x64,0xfa,0xc6,0x05,0xca,0x0e,0x03, + 0x57,0x24,0x50,0xb7,0xdc,0xb5,0xb8,0xd9,0x9a,0x1d,0xd7,0x67,0x1f,0x88,0xbf,0xd3,0xc0,0xc6,0x24,0x11, + 0x2b,0x07,0xce,0xf9,0x26,0x4c,0xf7,0xca,0xb6,0x96,0xfc,0xae,0x4f,0x53,0x9b,0x6f,0x4f,0x57,0xcf,0x74, + 0x5c,0x57,0x27,0xe2,0xd6,0xec,0xfa,0x6d,0x89,0xb0,0x44,0x28,0x4d,0xc0,0xf9,0x84,0x08,0x63,0x0e,0x0d, + 0x32,0xcf,0xe9,0xd3,0x77,0xb8,0x07,0xde,0x8f,0x59,0xef,0x2f,0xaf,0x54,0x40,0x20,0xae,0xac,0x93,0x8d, + 0xd4,0xa6,0xaf,0xb6,0x98,0x35,0xfb,0x05,0xff,0xf0,0x1d,0x6a,0x4d,0xb9,0xa4,0x57,0xfa,0x0b,0x0c,0x56, + 0xad,0xd7,0xb9,0xed,0x02,0x86,0x30,0x35,0x1a,0xc8,0x54,0x77,0x85,0x05,0xc3,0xa3,0xd4,0x5d,0x54,0x4f, + 0x44,0xe6,0xcf,0xd9,0xf9,0xc7,0xbc,0xb1,0xfc,0x67,0x12,0x70,0x26,0x02,0xea,0x85,0xc1,0x5e,0xb5,0x17, + 0x2c,0x3f,0x29,0x56,0xf5,0x2f,0x3f,0x45,0x81,0xf2,0x01,0xd8,0xf0,0xe2,0x49,0x70,0x50,0xfb,0x7a,0xfa, + 0xdf,0x5a,0xbb,0xae,0x19,0xbf,0x49,0xe3,0x7b,0xa9,0x93,0xe0,0x1b,0xa9,0x58,0xd1,0xd2,0xd2,0x19,0x66, + 0x33,0xc5,0xad,0xbb,0x7e,0xd8,0x78,0x8b,0xbd,0xb5,0x82,0x9a,0x19,0xe9,0x43,0x8e,0x15,0x90,0x29,0x6b, + 0x5c,0x11,0x37,0xca,0x98,0x43,0xb4,0xee,0xf2,0xed,0xde,0xec,0xaa,0x9c,0x99,0x80,0xbd,0x1f,0x44,0xc7, + 0x5b,0xd6,0xae,0x91,0x78,0x94,0x30,0x24,0xce,0x91,0xab,0x89,0x94,0x40,0xb6,0x1f,0x54,0xe5,0xc4,0xbf, + 0xc0,0xe6,0x5b,0x73,0xb0,0x6d,0xab,0xee,0xd9,0x8a,0x85,0x00,0xf5,0x86,0xf0,0x8b,0xdc,0xed,0xc8,0x61, + 0xce,0xe0,0x7b,0xe0,0x59,0x3e,0x65,0xe2,0x5a,0xb4,0xeb,0x1b,0x37,0x69,0x73,0x86,0xbb,0xaa,0xac,0xb2, + 0x99,0xad,0x92,0x9e,0x39,0x72,0x9a,0xf1,0x87,0x6a,0x49,0x8a,0x3c,0x23,0xda,0x51,0x21,0xa1,0x3e,0xed, + 0x55,0x33,0x05,0x64,0xae,0xce,0xdd,0x08,0x22,0x4a,0x1d,0xc8,0xd3,0xc6,0x8a,0x06,0x15,0x8a,0xbe,0x76, + 0x94,0xaa,0x01,0xc2,0x5d,0x58,0x3b,0x67,0x58,0x6b,0xd3,0x3b,0xf4,0x5d,0xba,0x7b,0x98,0xcf,0xc0,0x93, + 0x4a,0x37,0xed,0xe8,0xde,0xfc,0x15,0xac,0xa0,0xc4,0x90,0x87,0xc3,0x1e,0x04,0x7c,0x0b,0x1e,0x55,0xc3, + 0x21,0xb7,0x10,0x48,0x5b,0x67,0x52,0xd2,0xbe,0x2e,0x41,0x54,0x86,0xfd,0xc6,0x4f,0x96,0x83,0xd0,0x7d, + 0x6b,0xa2,0x1d,0x57,0xb6,0x28,0xf0,0xbb,0x2d,0x75,0x2c,0xb2,0xb3,0xfb,0x41,0x70,0x9f,0x0d,0xc9,0xef, + 0xdb,0x80,0xa5,0xf7,0x69,0x91,0xb7,0x7b,0x0a,0x44,0x6e,0x6b,0xa7,0x17,0x57,0xab,0xe2,0x0b,0x96,0xbb, + 0x13,0x24,0x23,0x0e,0xcd,0x5a,0xe5,0xb5,0xe9,0xa2,0x45,0x4e,0xd4,0x45,0xa5,0xcd,0x8f,0xa4,0x48,0x31, + 0xcf,0x8b,0x6c,0xdf,0xb6,0x2c,0xc5,0x25,0xf5,0x58,0x27,0xb2,0x45,0x65,0xe7,0xca,0x1b,0x82,0xe3,0xab, + 0xd4,0xf7,0x90,0xc9,0x92,0x2b,0x38,0xb4,0x31,0x40,0x52,0x4f,0x47,0xdb,0x30,0xa9,0x3c,0xf3,0x5d,0xa6, + 0x68,0x2c,0xcc,0x71,0xc5,0x0d,0xed,0x93,0xc2,0x0a,0xc0,0x46,0xcd,0xa3,0xc2,0x44,0x1e,0xa8,0x12,0xf8, + 0x2d,0x35,0xb2,0x59,0x54,0x2a,0xcf,0x42,0x4e,0x7d,0x48,0xb5,0xb8,0x4a,0x4b,0xfd,0x2f,0xd3,0xfa,0x49, + 0xce,0x48,0x0f,0x06,0xae,0x2a,0xf4,0xef,0x54,0xb2,0x70,0xac,0xef,0x07,0x7a,0x27,0x51,0x6e,0xfc,0xb0, + 0xf7,0xee,0xbe,0x8c,0xae,0x4a,0x80,0xa3,0x40,0x1a,0x09,0xd3,0x61,0x84,0xeb,0xbe,0x61,0x38,0x81,0x2b, + 0xb9,0x22,0x7d,0x39,0x84,0x41,0x31,0xef,0x52,0x68,0x78,0x22,0xf5,0xca,0xf5,0xcd,0xcf,0x7e,0xc5,0xd9, + 0x34,0x8c,0x5f,0x38,0xf8,0x00,0x5b,0x32,0x4b,0x54,0x52,0x1c,0x18,0x62,0x74,0x7c,0xa0,0xb4,0x72,0xba, + 0x59,0xcc,0x03,0x89,0x7f,0x76,0x8d,0xf8,0x9d,0xd2,0x94,0xa7,0xb8,0x66,0x1a,0x7d,0x42,0xd3,0x32,0xe7, + 0x1c,0x29,0x04,0x7a,0xef,0xa6,0x98,0x0c,0x06,0x6c,0x87,0xe8,0xa2,0x5a,0x72,0xae,0x2a,0xc1,0x10,0x07, + 0xf7,0xd8,0xf2,0x2e,0x60,0xfb,0x6e,0xe8,0xf2,0x1d,0x84,0x0c,0x06,0xe7,0xa9,0xbd,0xf0,0xd6,0xa0,0x37, + 0x61,0xb6,0x88,0xe8,0x66,0xd3,0x4d,0xc4,0xda,0x8a,0x19,0x18,0x2b,0x3f,0xa0,0xec,0xdb,0xfe,0x01,0xbf, + 0x95,0x01,0x17,0xba,0x3c,0x2d,0xff,0xae,0x7f,0x39,0xe3,0x3c,0x69,0xcd,0xde,0x07,0x99,0x3d,0xbd,0x46, + 0xaf,0x39,0xac,0x03,0x0d,0x6e,0x7e,0x72,0x78,0x3a,0x5a,0xe9,0x99,0xb6,0x72,0x3e,0xeb,0xd7,0xb5,0x77, + 0x88,0x91,0x4c,0x93,0x8a,0x18,0xbe,0x9c,0xf8,0xbb,0x94,0x78,0xba,0x15,0x64,0x5c,0x2a,0x0c,0x67,0x49, + 0x16,0xb5,0x7c,0xf4,0x10,0xa7,0xc7,0xbe,0x6e,0x99,0x88,0x4e,0x95,0xf6,0x88,0x8a,0x97,0xda,0xb6,0xf3, + 0x12,0x96,0x2d,0xf1,0x95,0xb2,0x66,0x88,0xf1,0x62,0xc3,0x41,0x36,0x8c,0xed,0x20,0x4f,0x80,0x9e,0x8f, + 0x8e,0x31,0x5f,0xca,0xb7,0xee,0xf8,0xb3,0x1b,0x2c,0x20,0xc4,0xc6,0xaa,0x56,0x9f,0x9d,0xea,0xc1,0x40, + 0xcf,0xb5,0xf1,0x32,0xd1,0x6a,0x6b,0xb5,0x54,0x97,0x8a,0x3a,0xb3,0x69,0xf1,0x53,0xbf,0xb8,0xd3,0x9c, + 0x81,0x3a,0x31,0x96,0x8a,0x04,0xc9,0x41,0xd4,0x67,0xbe,0x66,0xec,0x92,0x65,0xa2,0x5f,0xe8,0x90,0x4f, + 0x86,0x5f,0x61,0x25,0x2e,0x7d,0x9b,0x14,0x27,0x0f,0x4f,0xb5,0xfe,0xc8,0x50,0x5c,0xb4,0x14,0x3a,0xc5, + 0xae,0xda,0x73,0x03,0xd4,0xb9,0xae,0xef,0xa5,0x8b,0x00,0x9c,0x8e,0x11,0xc7,0x69,0x9e,0xa7,0x35,0xe5, + 0x9a,0x0f,0x5e,0xca,0x07,0xd5,0x30,0x27,0x9a,0x26,0x25,0xda,0xf1,0x30,0x49,0x5d,0xbd,0x2a,0xa5,0x56, + 0xd9,0x02,0xc3,0x64,0x3f,0x4c,0x52,0xd7,0x11,0x04,0x5f,0x31,0x35,0xaa,0x8a,0xaf,0xc5,0x2b,0x38,0x66, + 0x41,0xdb,0x91,0xe4,0xdf,0x56,0x25,0x93,0xcf,0x8e,0x4a,0xc2,0x0a,0x4c,0x97,0x31,0x8f,0xe2,0x27,0x70, + 0xe8,0xd5,0x76,0x92,0xd1,0xf3,0x78,0xd6,0xd0,0xbe,0xd0,0xf9,0xfb,0xa6,0xbd,0x6a,0x7c,0x6e,0x9a,0xe8, + 0xf6,0x99,0x11,0x56,0x7a,0xf6,0xce,0x5d,0x66,0x70,0x1c,0x98,0x68,0x4f,0xf1,0x6d,0x10,0x07,0x25,0x7e, + 0x5c,0xe0,0x07,0x7d,0xd7,0xde,0x5e,0x02,0x83,0xbf,0x7c,0xef,0x7e,0x10,0xdf,0xdf,0xcb,0x10,0x2f,0x88, + 0xdd,0xca,0x61,0xf7,0xed,0xee,0x93,0xf6,0x44,0xde,0x6c,0xb8,0xe8,0xcc,0xa2,0x0b,0x4b,0xd5,0xda,0xfb, + 0x49,0xad,0x24,0x93,0xf8,0xd6,0x4d,0xb0,0x1d,0xb8,0xda,0x5e,0x74,0x16,0x9c,0xc0,0xb4,0xbc,0x2d,0x9c, + 0x77,0x3a,0x51,0x7d,0x1d,0x89,0xf1,0x04,0x54,0xd0,0x4c,0x9e,0x06,0xfa,0xe4,0xfb,0x2d,0x35,0x44,0xb3, + 0x38,0x8e,0x11,0xed,0xf3,0x43,0x27,0x89,0x01,0xd4,0x19,0xf5,0x1a,0x2b,0x87,0x80,0x08,0x3d,0xfc,0x29, + 0x8d,0xef,0x2a,0x8b,0x90,0x38,0x2c,0xa5,0x57,0x98,0xbe,0xfd,0x85,0x43,0x04,0xa5,0x7b,0x09,0x3f,0xa8, + 0xef,0x53,0xd6,0x9a,0x97,0xc6,0xd8,0xd7,0x05,0xca,0xce,0x3e,0xa5,0x12,0x2d,0xa5,0x36,0x81,0xc0,0xbd, + 0x9a,0x46,0x54,0xc1,0xb7,0x69,0x78,0x12,0x4c,0x9a,0x6a,0x4e,0x83,0x60,0xab,0x61,0xfa,0x4d,0xe7,0xf8, + 0xbb,0xc8,0x9a,0x34,0x38,0xbd,0xdb,0xa6,0x7d,0x77,0xc2,0x24,0xe3,0x1d,0x26,0xf1,0x1a,0xbd,0x0e,0x03, + 0x98,0xe9,0xff,0x40,0x44,0x98,0x9d,0xac,0xf5,0x1a,0xbc,0xa2,0x98,0xa3,0xd8,0x0e,0x1b,0x17,0x63,0x6b, + 0x39,0x14,0xe6,0x7b,0x84,0xe5,0x61,0xe5,0x71,0xff,0x7c,0xd5,0x34,0x65,0x71,0x1f,0xd3,0x20,0x95,0x22, + 0xac,0xc0,0x5e,0xc9,0x0d,0x37,0x85,0xa9,0x96,0xd2,0x68,0x11,0xac,0xea,0x8f,0x0e,0xf8,0x11,0xb6,0xa3, + 0xd4,0x94,0x7a,0x71,0x37,0x43,0x5d,0xc9,0x2d,0xa8,0xeb,0xb0,0x18,0xeb,0x35,0xd9,0x0b,0x4c,0x46,0x10, + 0x57,0x63,0x36,0x9f,0x35,0x19,0x91,0xcb,0x31,0x0b,0xc8,0x90,0x66,0xda,0x5a,0xaf,0x2b,0x53,0x4b,0xdc, + 0xd7,0x8c,0xad,0xc8,0x87,0xce,0xc6,0x3b,0x8f,0x39,0x2c,0xcf,0x0b,0x3e,0x1e,0x0e,0x0f,0x22,0x3f,0x26, + 0xbf,0x99,0x46,0x1d,0xfe,0x9a,0x08,0x47,0xaa,0x4e,0xc3,0xd9,0xf7,0xa9,0x0b,0x95,0x1c,0x9c,0x7d,0x0c, + 0xdb,0x45,0x89,0x79,0xe8,0x20,0xe2,0x8c,0x37,0x4e,0x37,0xb5,0x40,0xaa,0xfb,0xd4,0x37,0x0f,0x2d,0x5a, + 0x86,0x53,0x7c,0xd7,0x36,0x22,0x00,0x1b,0x93,0x55,0x09,0x26,0x17,0x07,0x30,0x31,0xe4,0x20,0xb2,0x76, + 0x7f,0x40,0x8b,0x3f,0xae,0xc4,0x2e,0x2a,0xbe,0x7f,0x36,0xd1,0xc1,0x0d,0xee,0xf3,0xb4,0xa9,0x4e,0x6c, + 0xe6,0xb8,0xe8,0x46,0x6b,0xf6,0x10,0x58,0xe5,0xf6,0xb0,0xb1,0x39,0x82,0x7a,0x83,0x09,0x76,0x79,0x7d, + 0x5b,0x95,0x93,0xac,0xae,0xb3,0xa9,0x59,0xfa,0xb4,0xb0,0x56,0xe6,0x99,0xf6,0x23,0xd8,0x95,0x87,0xad, + 0xa2,0xa5,0x5f,0x94,0xf6,0x1b,0x97,0xa4,0xdf,0xad,0x82,0x6d,0xc3,0x50,0x2f,0x58,0x08,0x4a,0xb3,0x4b, + 0x0d,0xe3,0x62,0x76,0x01,0xb0,0xe8,0x7c,0x8c,0xd9,0xf6,0xde,0x63,0xda,0xd9,0xb5,0x57,0xe0,0x61,0xa7, + 0xc0,0x43,0xf8,0xa8,0x59,0x76,0xcd,0xef,0x06,0x93,0x43,0x67,0xf3,0x50,0xdb,0x7e,0x3b,0x82,0x17,0xc6, + 0xda,0x25,0x82,0x5e,0x79,0x53,0xaf,0xa7,0x8c,0xa6,0x9a,0xd6,0xd2,0x1b,0x5f,0x3e,0xe3,0xe1,0xe5,0xb3, + 0xad,0xd1,0xd5,0x6e,0x1a,0x1c,0x01,0xbe,0xdb,0x21,0xc0,0x85,0x70,0xef,0xe3,0x40,0x7a,0xe6,0xc8,0xd9, + 0x1b,0x18,0xe6,0x64,0xbd,0xf6,0x28,0x7d,0xc2,0x88,0xf3,0xc2,0xe8,0xf4,0x83,0x33,0xb6,0x57,0xde,0x0b, + 0x2b,0x9e,0x8f,0x4a,0x62,0xd9,0xb9,0xc0,0xe8,0xc1,0x2d,0x26,0x49,0x82,0xa3,0xdf,0xe1,0x7e,0x73,0x5d, + 0x68,0x9b,0x0a,0x1a,0x75,0x8c,0xd2,0x22,0x04,0x6b,0xa1,0xe7,0x4d,0xc0,0xab,0x63,0x8d,0xf7,0xb5,0x0b, + 0x43,0x60,0x76,0xd0,0x2e,0x6e,0x33,0x2d,0x69,0x2b,0xc3,0x53,0x9c,0x70,0x0f,0xf3,0x08,0x0e,0x83,0xa0, + 0x6b,0x08,0x94,0x25,0x6f,0x61,0x0a,0x9b,0x24,0x53,0x86,0xb7,0x55,0x49,0x63,0x61,0xeb,0x6a,0x99,0x4b, + 0x1e,0xbf,0x4c,0xbc,0x0b,0x00,0xeb,0x93,0x1f,0x6d,0xd1,0x68,0x9b,0xdd,0x18,0xa3,0xde,0x78,0xce,0xfa, + 0x60,0x88,0xc2,0xec,0x26,0xa7,0x9d,0xa4,0xdd,0x9e,0x26,0xa2,0x2c,0x6e,0xcd,0x9a,0x6e,0xde,0x35,0xa8, + 0xb8,0x2b,0x96,0xce,0x04,0x0f,0xce,0x14,0xdb,0xd8,0x44,0x41,0xb3,0x8b,0xd0,0x65,0x78,0x6c,0x0f,0xd0, + 0x4f,0xf4,0xa0,0x48,0xd0,0xfa,0x7d,0x4c,0x2e,0xad,0xf9,0x5e,0x40,0x4f,0xad,0xa6,0xc3,0x9c,0x5f,0x72, + 0xdb,0x8f,0xf6,0x25,0x9c,0x8d,0x13,0x7d,0xb8,0xeb,0x13,0x88,0xb7,0x29,0x12,0x3f,0xe7,0x24,0x3d,0x65, + 0x9c,0xe1,0x9c,0xe4,0xf5,0x83,0x86,0x16,0x98,0xcc,0x70,0xcf,0x3d,0x24,0x95,0x76,0x2f,0xec,0xe9,0xa0, + 0x05,0xec,0x9d,0xa6,0x8b,0x61,0xe4,0xdc,0xe9,0xc5,0x5c,0x6e,0xfb,0x04,0x88,0x08,0xbf,0xa0,0x19,0x0f, + 0xb7,0xbf,0x37,0xd1,0xf7,0xa2,0x3d,0x8b,0x97,0x24,0x1e,0x4a,0xa0,0xc4,0xd3,0xda,0x4e,0x83,0xf5,0xa2, + 0xf0,0x31,0x59,0x0b,0x1b,0x49,0x0c,0xf6,0x3f,0xb5,0x3d,0x5b,0x6d,0xf9,0x02,0x86,0x20,0x60,0x09,0x8b, + 0xd6,0x19,0x57,0x23,0x6d,0xca,0x0b,0x19,0xc3,0x2d,0xf1,0xe2,0xc0,0xec,0xc6,0xa1,0xc5,0x3a,0xda,0xda, + 0xf3,0x6b,0x1c,0x9c,0x95,0xa1,0x37,0x72,0xf6,0xaa,0x43,0x17,0x5f,0x4c,0xf7,0xf6,0xf8,0xb5,0xc0,0x58, + 0x62,0x5d,0x60,0xd3,0x46,0xb4,0x9e,0x3b,0xc1,0x76,0xf4,0xed,0xd6,0x80,0x30,0x50,0x47,0x9d,0x85,0xd6, + 0xb8,0xdf,0xd3,0x2a,0xba,0x3d,0x5d,0x8d,0x2b,0x39,0x3f,0x64,0xb6,0xc6,0xda,0xcc,0x36,0xd6,0xc7,0x0a, + 0xdf,0x77,0x62,0x44,0x35,0xf6,0x36,0x64,0x02,0x90,0x33,0xa2,0x40,0x03,0x6d,0xa7,0xd0,0x98,0xe8,0x85, + 0x8e,0xbe,0xc8,0x3e,0x2d,0xf9,0x70,0x2f,0xc5,0x3f,0x22,0x1a,0xd3,0xb6,0x26,0xc6,0xf3,0x7c,0x5e,0x4e, + 0x3e,0x6a,0xec,0x61,0x3b,0x46,0x8b,0xe8,0x65,0x6e,0x3a,0x44,0xb3,0x25,0x77,0xbb,0xf7,0xd4,0x4c,0x5a, + 0x28,0x90,0xd0,0x97,0xaa,0x92,0x7e,0xe4,0xd8,0xbd,0x27,0xfb,0x56,0x87,0xb5,0xd0,0x0e,0xbe,0x5e,0x14, + 0x89,0xf8,0x24,0x60,0x67,0x5f,0x13,0xf0,0xa2,0xef,0xde,0xac,0xdb,0xd4,0x84,0xd9,0xd7,0xd2,0xc7,0x79, + 0xeb,0x2a,0xee,0x13,0x89,0x6e,0x71,0x3a,0x02,0xa3,0x4c,0x65,0x76,0xe7,0x88,0x95,0x4d,0x7b,0xe3,0x3a, + 0xad,0x70,0x77,0x48,0x29,0xce,0xbc,0x07,0xaa,0x26,0xb2,0x5b,0x18,0x41,0x22,0xbe,0x75,0x48,0x8c,0xfb, + 0x81,0xe5,0x09,0x39,0x51,0xbf,0xc0,0xfd,0x66,0x2f,0x4c,0x05,0xdf,0x12,0xec,0x0b,0x0d,0x84,0x63,0xc9, + 0xd2,0x4e,0xbe,0xff,0xd1,0x16,0xf1,0xa1,0x8b,0x45,0x82,0x42,0xd2,0x21,0x9d,0x31,0xe3,0xfb,0xcc,0x6b, + 0x72,0x2b,0xf4,0x80,0x16,0x4c,0xae,0x25,0x5c,0xa9,0x25,0xc7,0x89,0xf6,0x54,0xea,0x68,0x65,0xd9,0x87, + 0x1b,0xe5,0x22,0x2b,0x4d,0xc6,0x75,0x9b,0x65,0x38,0xb5,0x11,0x9e,0x34,0xea,0xe6,0x8b,0x55,0xf6,0x92, + 0x0a,0x90,0x1f,0x29,0x2d,0x20,0x44,0x0a,0x84,0x89,0x7c,0xbc,0x88,0x3f,0x4d,0x20,0x21,0x01,0x66,0x3a, + 0x93,0x9e,0x38,0x93,0x7e,0xbd,0x4c,0xde,0xa9,0xae,0x04,0xbf,0xc6,0x40,0x11,0x52,0x62,0xc9,0x9e,0x90, + 0xc8,0xa4,0x27,0x2f,0xdd,0xe3,0x96,0x91,0x7b,0x1f,0x62,0x57,0xf6,0x7d,0x02,0xf2,0xa5,0xc5,0xb8,0xef, + 0x44,0x51,0xe2,0x80,0x2b,0x4a,0xbd,0x6f,0xb3,0xc2,0x61,0x27,0xf6,0xc5,0xa5,0x8f,0xfd,0x2c,0x62,0x9f, + 0xc2,0x4c,0xa3,0x12,0x7d,0xbe,0x72,0xeb,0xfc,0x4c,0x2c,0xd8,0xde,0xac,0x30,0x39,0x7a,0xde,0x94,0xf6, + 0x4a,0xd5,0x05,0x8d,0x2f,0x82,0x2d,0x2b,0x51,0x87,0x6d,0x59,0x71,0x67,0x94,0xc2,0x60,0xfa,0x74,0x82, + 0xda,0x3d,0x34,0x90,0x66,0x26,0xc7,0xf7,0x8c,0xf4,0xca,0xfb,0xc9,0x8a,0x71,0x77,0xeb,0x2b,0x47,0x8a, + 0x08,0x0d,0x68,0x44,0x83,0xba,0x7b,0x7c,0x11,0x4d,0xb0,0xe7,0x97,0xb3,0x5f,0xba,0x00,0xaf,0x52,0x98, + 0xb5,0x86,0x5e,0x2a,0xae,0x64,0xd2,0x02,0x51,0x49,0x88,0xcf,0x56,0xc4,0x1c,0xb5,0x42,0xc1,0x94,0x77, + 0xf1,0x3b,0x3b,0x5d,0xc4,0x66,0x33,0x0a,0x4d,0x59,0x16,0x2d,0x92,0xce,0xc5,0x3a,0x6b,0x11,0x94,0x85, + 0x26,0x28,0x0b,0x4b,0x50,0x16,0x1d,0x82,0xb2,0xe8,0x12,0x94,0x45,0x87,0xa0,0x2c,0x7a,0x09,0xca,0xe2, + 0x3f,0x27,0x28,0xcd,0x80,0x34,0x45,0x29,0x2f,0x71,0x70,0x2b,0xbb,0x01,0xf3,0x3b,0x2b,0x62,0xaf,0x06, + 0xed,0xac,0x51,0xb8,0xc5,0x89,0x5a,0xf5,0x85,0x2d,0x29,0x2f,0x9b,0xcc,0x8c,0xa9,0xd3,0x33,0xfe,0xb3, + 0x17,0x10,0x46,0x0e,0xe7,0x1c,0x44,0x39,0x6a,0x5d,0x5c,0x0d,0xec,0xec,0xde,0xe2,0xbe,0x22,0x38,0x1c, + 0xf8,0xfa,0x57,0xea,0xea,0x86,0x29,0xb1,0x12,0xf7,0xd9,0xd7,0x5d,0x4e,0x9d,0x0e,0xf6,0x08,0x20,0xa1, + 0xe3,0xa6,0x33,0xe4,0xf0,0x73,0x6c,0xbc,0x27,0xf7,0x32,0x3f,0x32,0x3a,0x0d,0xd1,0x39,0x4c,0xda,0x2c, + 0x93,0xb4,0x17,0xb4,0x71,0x9c,0x0d,0xc3,0x6e,0x13,0xed,0xee,0x68,0x13,0x59,0xc6,0x20,0xaf,0x6d,0xfe, + 0x67,0x03,0xba,0x99,0x48,0xa4,0x07,0x1c,0xfe,0xe7,0x50,0xe2,0x10,0xb2,0xfd,0x9c,0x86,0x95,0x82,0x23, + 0xfe,0x94,0x26,0xd8,0xa1,0x26,0x12,0xdb,0x6d,0xc4,0x86,0x4d,0xf3,0x04,0x1f,0xb4,0xe8,0x3a,0x12,0x38, + 0x3a,0xd6,0x65,0xc7,0x4e,0x90,0xdd,0xa5,0x77,0xee,0x60,0xf2,0x5b,0x95,0x0a,0x83,0xdb,0x9e,0x69,0x38, + 0x92,0x12,0xa2,0x25,0xac,0x9a,0xca,0x3c,0xa7,0xbc,0x1d,0x37,0xda,0xfb,0xc2,0x42,0xa7,0x67,0xb5,0xfd, + 0x40,0xdd,0x7b,0xa0,0x02,0x4d,0xb2,0x67,0xc3,0xeb,0x2a,0x5d,0x3e,0x35,0x3e,0x07,0xee,0x15,0x36,0x13, + 0x3a,0xd7,0xaa,0x3d,0xbd,0x22,0x36,0x8d,0xcb,0x79,0xc1,0x96,0xe6,0x3d,0xa1,0xfe,0xdd,0x5c,0x4b,0x30, + 0x72,0x3f,0x20,0x57,0x99,0xa4,0xde,0x02,0xa4,0x9e,0x67,0x13,0xef,0xea,0x16,0xbf,0x54,0x8a,0xf5,0x97, + 0xb0,0x47,0xe6,0xdd,0xf8,0xba,0x12,0x5f,0x41,0x68,0x2c,0x2c,0x0d,0x73,0x40,0x1b,0xb7,0x13,0x46,0xdc, + 0xd3,0x2d,0xa8,0x9e,0x98,0x56,0x36,0x3e,0x65,0x65,0xbb,0x93,0x6b,0x78,0x40,0x5c,0x0d,0x5c,0x2e,0x85, + 0x10,0x95,0x3e,0x89,0x02,0xef,0x8f,0x36,0xc9,0x52,0x2e,0xb2,0x3e,0xe4,0xb5,0x02,0x26,0xd7,0x64,0x4e, + 0x04,0x8a,0xf1,0xa1,0xa6,0x16,0xd9,0x69,0xe9,0x3f,0xae,0xb6,0xf1,0x6b,0xe5,0xd5,0x39,0x8c,0xbc,0x6b, + 0xe5,0xc2,0x94,0xed,0x5f,0x6f,0xce,0xb3,0x23,0xcb,0x22,0xc5,0x1c,0xa7,0xb7,0xeb,0xba,0x65,0x4c,0x5d, + 0x85,0xe7,0xa4,0x31,0x8f,0x35,0x2d,0x1a,0x7f,0x61,0x93,0xa0,0x24,0xb6,0x11,0x00,0xc7,0x70,0x0e,0x57, + 0x20,0x06,0xb7,0xc8,0x83,0x4a,0x62,0x4d,0xb3,0x0f,0x75,0x1c,0x9c,0x5d,0x81,0xc0,0x7f,0x08,0x0d,0x43, + 0x01,0x29,0x39,0x57,0x5e,0x78,0x7b,0x37,0x9e,0x16,0x61,0x57,0x64,0x22,0x35,0x44,0x5c,0xc7,0x48,0x9b, + 0x69,0x1b,0xd5,0x09,0x04,0x87,0xe9,0x5d,0x87,0xc4,0xa4,0x57,0x6e,0xb8,0x17,0xd6,0x8c,0xb9,0x6b,0x50, + 0x2b,0x9e,0xf0,0x63,0xe5,0x7f,0x6a,0x35,0x87,0x2c,0x1a,0x20,0xb4,0xd7,0xa3,0x2a,0x6b,0x33,0xe6,0x9e, + 0x2f,0x6d,0x47,0x27,0x4b,0xe7,0xc6,0x1f,0x5c,0xe4,0xdc,0x88,0xe8,0xb5,0x32,0xd4,0x5f,0x7c,0x7f,0x6f, + 0x8a,0x10,0x85,0x46,0xfa,0xa5,0x02,0x77,0xb3,0xba,0x47,0x4d,0x79,0x4e,0xaa,0xad,0xe8,0x17,0x6e,0x73, + 0xff,0xba,0x7a,0x78,0xf0,0xf0,0x1f,0x0f,0x2e,0x54,0xf0,0xab,0x3c,0x06,0x51,0x27,0xf3,0x6b,0x97,0xf9, + 0xb5,0x7f,0x41,0xe8,0x52,0xc3,0x02,0xbc,0xf7,0x0c,0x08,0x65,0xd7,0x3b,0xcf,0xdd,0x2c,0xbb,0x8b,0x62, + 0x6d,0xdf,0x44,0xab,0x91,0x55,0x15,0x34,0xc8,0x84,0x95,0x63,0x38,0xfb,0x5e,0xf8,0x3e,0x9e,0x5e,0x3f, + 0xc3,0x8f,0x69,0xf2,0x31,0xfd,0x83,0x08,0x9d,0x08,0x86,0xab,0x75,0x4f,0x49,0x36,0xbe,0xff,0x28,0xdd, + 0xb9,0x84,0x12,0x38,0xf8,0xb5,0x08,0x1e,0x7c,0x73,0x3f,0xbe,0xff,0x88,0x4a,0x11,0x4e,0xd1,0xef,0xea, + 0x63,0xea,0xca,0x3b,0x2f,0x9c,0xc1,0xff,0x39,0x3c,0x18,0x05,0xd1,0x37,0x07,0x8c,0x08,0xaf,0x6c,0xc8, + 0xbb,0x59,0x95,0x65,0xbf,0x67,0x21,0x22,0x2d,0x2f,0x6c,0xa2,0x8b,0x2a,0x6e,0x2e,0x02,0x57,0x17,0x45, + 0x32,0x17,0x31,0x8c,0xb2,0x94,0x62,0xc0,0x46,0x33,0x37,0x9c,0x43,0x47,0xb3,0xa2,0x5e,0x29,0x2e,0xe1, + 0xd4,0xb5,0x0a,0xea,0x50,0x75,0xde,0x53,0xf3,0x65,0x5a,0x7b,0xd7,0x5e,0xaa,0xb3,0x22,0x79,0xb0,0x1f, + 0xfe,0x7a,0x1d,0xd1,0x5a,0x5c,0x17,0xc9,0xb4,0x37,0xa4,0x89,0x5d,0xb7,0x33,0xdf,0xa4,0xc0,0xb7,0x6d, + 0x1a,0xc3,0x50,0xe2,0xc7,0xe5,0x12,0x96,0xd3,0x35,0xb1,0x4a,0x88,0xc0,0x0a,0x93,0xd7,0xe3,0x3b,0xab, + 0xd4,0xb1,0x6d,0x0e,0xa2,0xf6,0x87,0x7b,0x4e,0xef,0x48,0x9f,0x7f,0xa4,0xde,0xfd,0xfa,0x24,0x3c,0x79, + 0xbc,0xff,0xef,0x53,0xf4,0xf0,0xe8,0x0f,0x7b,0xf8,0xb1,0x50,0xc1,0xfe,0xbd,0xc3,0x00,0xd5,0xbe,0x2c, + 0xaf,0x4d,0xb5,0x54,0xd7,0xfb,0x6d,0x99,0x8c,0x55,0xc0,0xab,0x4f,0x6d,0x7d,0x91,0x8d,0xe5,0xa2,0x1e, + 0x13,0x5f,0x07,0xa2,0x7a,0x9f,0xe3,0xac,0x57,0xfb,0xe6,0x32,0xc5,0x40,0xdd,0x2b,0x92,0x93,0xc0,0x5b, + 0x13,0xc7,0xc3,0x05,0xe6,0xca,0xc3,0xe0,0x54,0xbd,0x41,0x29,0xb1,0xbf,0x3c,0x62,0x18,0xa3,0x4c,0x01, + 0x36,0xaa,0x42,0x67,0xb0,0x51,0x37,0xe4,0xf0,0x62,0xdc,0x6d,0xd3,0x7f,0xd4,0xe1,0x29,0xed,0x5d,0xbb, + 0x26,0xe3,0xa9,0x44,0x22,0x46,0x9b,0xf2,0xc4,0x79,0xee,0x8e,0x66,0xa4,0xfb,0x6f,0x72,0x83,0x90,0xf8, + 0x9c,0x4f,0xa9,0x53,0xcf,0x8a,0xe4,0x56,0x88,0x89,0x57,0x19,0x11,0xce,0x04,0x6a,0x54,0xf0,0x22,0x27, + 0xe6,0xb3,0xef,0x86,0xd5,0x3a,0x9f,0xc3,0x30,0x83,0xe8,0x7a,0x82,0xa2,0xe9,0x8a,0x27,0xe9,0x38,0x5f, + 0x22,0xc1,0x5c,0xf7,0xcb,0x99,0x59,0x05,0xd1,0x0e,0xec,0xab,0xf0,0xca,0x6d,0x7e,0x27,0xf7,0xc0,0xb2, + 0xf7,0x86,0x02,0x75,0xdf,0x4a,0xc8,0x2f,0x0a,0x1a,0xcc,0x54,0xef,0x3a,0xa2,0x47,0x4e,0x95,0xb9,0xfc, + 0xb1,0xb7,0x23,0xad,0x70,0xf7,0xf1,0xfb,0xc2,0x4b,0x80,0x2b,0x97,0xa4,0xfc,0x58,0x7c,0x2c,0xca,0xeb, + 0x42,0x57,0x8a,0xb4,0x4e,0xf4,0xfc,0xf8,0x42,0xf5,0x05,0xc7,0x8f,0x3f,0x15,0xca,0xbb,0x84,0x11,0x1f, + 0x9e,0xcd,0xf3,0x59,0x36,0xb9,0x99,0xcc,0x33,0xdc,0x3b,0x4d,0x7d,0x2a,0x36,0xea,0x29,0x41,0xe4,0xc9, + 0xff,0xfc,0x7a,0x3d,0xbc,0x77,0xfa,0x40,0xbd,0x85,0xac,0xec,0x8c,0xf7,0xd6,0xd9,0x19,0x91,0x63,0xb7, + 0x1b,0xf5,0x81,0x92,0x1c,0x99,0x6a,0xaf,0xf0,0x13,0xcf,0x1e,0xf5,0xa2,0x3f,0xf7,0xe7,0x5f,0x9e,0x15, + 0x57,0x79,0x55,0x16,0xfa,0x3e,0xf4,0xdd,0x56,0x02,0x24,0x79,0xdc,0x53,0xf5,0xb2,0x48,0x5e,0x14,0x83, + 0x41,0x7f,0x6e,0x1b,0xe0,0xd5,0xf3,0x22,0xf9,0x40,0x65,0xb5,0x4b,0x51,0x91,0x5e,0xe5,0x17,0xe0,0x14, + 0x86,0x2b,0x9a,0xb0,0xc7,0x17,0x7c,0xe1,0x54,0xab,0xfc,0xeb,0x22,0x79,0x4e,0xe5,0x1f,0x2c,0xea,0x3c, + 0x5b,0x13,0xee,0x99,0x52,0x11,0x6d,0x13,0xf6,0xbc,0x88,0xd4,0x2b,0xc9,0x7e,0xee,0x79,0x34,0xa2,0xe4, + 0xce,0xd7,0xc3,0x03,0x60,0x37,0xf5,0x6e,0x3b,0x3f,0x9b,0x5e,0x64,0x0f,0x38,0xf3,0xc9,0x76,0x26,0xc1, + 0x41,0x45,0xe7,0x1c,0xb2,0xe9,0x34,0x33,0x6f,0xb8,0x72,0xa3,0x50,0x3f,0xeb,0xae,0xe4,0xcb,0x4b,0xda, + 0x5b,0xeb,0x7c,0x99,0x4e,0xe9,0x4f,0x49,0x7f,0xca,0xda,0x75,0x09,0x4e,0xed,0x65,0xad,0x3f,0xf9,0xa9, + 0x48,0x42,0xfe,0x66,0x72,0x59,0x11,0x89,0xf2,0xeb,0x83,0x5f,0xa7,0x7b,0x5e,0xef,0x6f,0x37,0x43,0xbe, + 0x69,0x38,0x52,0x3f,0x42,0x89,0x0d,0xaa,0xea,0x43,0xc1,0x51,0x36,0x81,0x95,0xbf,0x63,0x7b,0x88,0xfe, + 0x6b,0x99,0xbf,0x23,0x7c,0xa2,0x63,0x34,0x04,0xea,0x16,0xd7,0x3a,0x7b,0x94,0x30,0x2a,0x3b,0xd8,0x10, + 0x6e,0xd1,0xb3,0xbc,0x1d,0x13,0x10,0x3d,0xd8,0xb7,0xdf,0x33,0xd4,0x7f,0x57,0x44,0x9e,0xdb,0x39,0xda, + 0xff,0xbd,0x50,0x3f,0x14,0xea,0x37,0x0f,0x05,0x75,0x68,0x01,0x1a,0xe3,0xef,0x30,0xac,0xf9,0x9d,0xda, + 0xc3,0xa2,0xf6,0xc1,0xd0,0xc5,0xbc,0x3c,0x4f,0xe7,0xa0,0x49,0x19,0x51,0x61,0x5e,0x24,0x09,0xb8,0x1f, + 0xbc,0xe0,0x30,0x2b,0xae,0x86,0x3f,0xfd,0xf8,0xec,0xec,0xd9,0xeb,0x9f,0x22,0xf5,0x3b,0xc1,0xf2,0xf7, + 0x2d,0x10,0x39,0x3b,0x43,0xe6,0xd3,0x67,0x3f,0x1d,0xbf,0x79,0xf3,0xf2,0xfd,0xd9,0xb7,0x2f,0xdf,0x3c, + 0x79,0xfc,0xf2,0xec,0xbb,0x37,0x6f,0x7e,0x38,0x3b,0x53,0xdf,0xf6,0x03,0xee,0xfb,0x9b,0xc5,0x79,0x49, + 0x8d,0x7e,0x0c,0xe5,0x29,0xea,0xef,0x9b,0xbe,0x9e,0x19,0xe5,0x3a,0x37,0x35,0x47,0xa3,0x1f,0xee,0xa8, + 0x39,0xe3,0xe2,0xf4,0x13,0x8d,0xdf,0xb7,0x67,0xdd,0xe3,0xbf,0x75,0x30,0x7d,0x5c,0xb2,0xdd,0x83,0x30, + 0x6c,0x88,0xed,0xf6,0xf1,0xd7,0x83,0xe9,0x77,0x39,0x68,0x8b,0xae,0x0a,0xca,0x4e,0xe5,0x7f,0x43,0xcb, + 0xda,0xfa,0xc6,0x2b,0x88,0xf5,0x6f,0x95,0x25,0x64,0x91,0x56,0xfe,0x42,0x7e,0xb6,0x83,0x2a,0xdb,0x68, + 0x53,0x83,0x5f,0x8a,0xe4,0x42,0xfd,0x1b,0x0c,0xc1,0xbf,0x8a,0xad,0xcf,0xf3,0x69,0xf2,0x6f,0xa2,0xdb, + 0xf4,0xb5,0x90,0xab,0x73,0xa8,0xf1,0x37,0xa3,0x7f,0x15,0xed,0x3e,0xbe,0x5f,0x9d,0xf7,0x74,0x93,0x4a, + 0xeb,0x78,0x83,0xd4,0x5c,0xeb,0x13,0x71,0x85,0xec,0x7e,0xb5,0x0a,0xed,0x77,0x6a,0xeb,0x13,0xb9,0x14, + 0xdc,0xef,0x9f,0x77,0x67,0xb8,0x7d,0x44,0x67,0x9e,0x66,0x4b,0x91,0xb7,0x77,0x6a,0x28,0xca,0x86,0x08, + 0xeb,0xfe,0x7b,0x01,0x5d,0x87,0xad,0xc0,0x95,0xed,0xa4,0xb2,0xae,0x9d,0x14,0x5f,0x7c,0xbf,0xb2,0xb7, + 0x04,0xda,0x86,0xd9,0x70,0x9f,0xa7,0xf3,0x9f,0x05,0x22,0x43,0x67,0x55,0xe7,0xc8,0x77,0x46,0x59,0x7a, + 0x7a,0xe0,0xcc,0xa3,0x2f,0xf4,0xe4,0xeb,0xac,0xba,0xf7,0x79,0xea,0x9b,0x3a,0xf9,0x52,0x2c,0x7d,0xb7, + 0x67,0x36,0x5f,0x98,0x8b,0x3d,0x8b,0xda,0xdc,0x48,0x22,0x5f,0xe9,0xdb,0xb3,0x52,0x79,0x75,0xd7,0x69, + 0xf9,0x85,0xdc,0xb5,0x5a,0xed,0x54,0x73,0x07,0xa6,0x9f,0xca,0x66,0x8c,0x30,0x38,0x06,0x95,0xa7,0x9b, + 0x68,0x1b,0xde,0x9a,0x4b,0x3c,0xb7,0x4c,0x9c,0x5b,0xf5,0xe8,0xeb,0x48,0xfd,0xa4,0x2a,0x85,0x03,0x87, + 0xbe,0x87,0xd4,0x5e,0x11,0x6b,0x13,0x9c,0x67,0x19,0x6b,0x55,0x24,0xd1,0x44,0x60,0x77,0xc5,0x8e,0xe6, + 0xd4,0xe8,0xd4,0x4b,0xe0,0x5b,0x65,0xcd,0x6b,0x2b,0x9c,0x79,0xed,0xa5,0xf1,0x6d,0x7a,0x7e,0x6f,0xb6, + 0xe3,0xa1,0xc3,0xd4,0x48,0x35,0x55,0x72,0xcb,0x4b,0x11,0x23,0x9c,0xdf,0x2c,0xbf,0x58,0xf1,0x8d,0xec, + 0x31,0x90,0xee,0xa8,0xd1,0x21,0x4b,0x60,0xfd,0xdb,0x83,0x39,0xfb,0xa7,0x65,0xa3,0xfa,0xd0,0x3c,0x51, + 0x3e,0x61,0x56,0x39,0x28,0xa5,0x86,0xb5,0x5e,0xaf,0x73,0xe1,0x8a,0xc1,0xc6,0x7c,0x3d,0x07,0x47,0x60, + 0x11,0x36,0x4b,0x2e,0xc4,0x71,0x26,0x75,0xbc,0xea,0x88,0xca,0xe3,0x4d,0x1a,0x0d,0x75,0xa3,0xaa,0x2a, + 0xe9,0x5c,0x20,0xa4,0xf2,0xaa,0x83,0x1a,0x2a,0x6a,0xfc,0x24,0xc0,0x9e,0x0d,0x10,0xbd,0x7b,0xe9,0xd9, + 0x6b,0xe8,0x78,0x6f,0x48,0xe1,0xf8,0x65,0x78,0x28,0xe1,0xda,0x16,0x54,0x70,0x2e,0xa8,0x33,0x98,0x71, + 0xf4,0x98,0xf3,0x69,0x63,0xc0,0x0a,0x66,0x04,0xc7,0x61,0x5e,0xa9,0xac,0x3f,0x16,0xf8,0x09,0x2e,0x44, + 0xb3,0xa1,0x8d,0xac,0x4c,0x62,0x7f,0x7f,0x14,0xf1,0x5d,0xbe,0x36,0xcb,0xda,0xa4,0x23,0x28,0xbe,0x76, + 0x73,0xc5,0x8c,0xc3,0x8b,0x44,0xdf,0x43,0x2e,0xc1,0x2f,0x46,0x3a,0x42,0x67,0x26,0x11,0x3a,0x65,0x58, + 0x31,0x3f,0x9a,0xc1,0xc4,0x08,0x4d,0xef,0x02,0x66,0x9a,0xa1,0x21,0x59,0x23,0x82,0x87,0x16,0x95,0xe7, + 0x90,0xc7,0x94,0xe7,0x7c,0xc6,0x99,0x8b,0xc0,0x55,0x09,0xbc,0xa4,0x31,0x0b,0xec,0xa9,0xc0,0x79,0x88, + 0x51,0xb6,0x9d,0x5a,0x82,0x11,0x8f,0xeb,0x61,0x5a,0x90,0xa6,0x81,0x3e,0x25,0x08,0xab,0x2f,0xcb,0xd5, + 0x7c,0x4a,0x7b,0x95,0x66,0xb0,0x01,0x6c,0xa9,0xba,0xda,0x46,0xa4,0x12,0x5e,0xc5,0xe0,0x8a,0x6c,0x29, + 0x56,0x12,0x1a,0x3f,0x5c,0x2d,0xd8,0xd1,0x98,0xb0,0xd5,0x71,0x28,0x17,0x45,0xd3,0xd0,0x03,0x7d,0xd9, + 0xf4,0x56,0x64,0x94,0x30,0x7c,0xdb,0x96,0x08,0x49,0x0c,0x46,0x4b,0x49,0x26,0xcd,0x26,0xee,0x66,0x7b, + 0xb7,0x46,0xf7,0x6a,0x84,0xb4,0xc3,0x2f,0xd6,0xe5,0x58,0xb4,0x3d,0x08,0x5b,0x4d,0xb4,0x49,0x08,0x08, + 0x53,0x69,0xa5,0x2f,0xf5,0x6d,0xcd,0x5d,0x86,0x70,0xa0,0x48,0xbd,0x4e,0xe7,0x1f,0x71,0x40,0x8c,0x6a, + 0x6f,0x17,0x70,0xea,0x1d,0x97,0x66,0xf9,0x92,0xf2,0x2c,0xd2,0x32,0x86,0xc6,0x97,0x31,0xdc,0x43,0xcf, + 0x11,0x10,0x9e,0x90,0x35,0xfd,0x50,0x5f,0x54,0xab,0x72,0xbf,0x23,0x77,0xdd,0xcc,0xd5,0x87,0xfb,0x1f, + 0xcb,0x75,0x5c,0x72,0xfb,0xf1,0xa4,0xc2,0x35,0x58,0xbd,0xac,0xcc,0x68,0x22,0x81,0x59,0xee,0x60,0xfa, + 0x76,0x8a,0xf1,0x5b,0x9d,0x12,0x37,0xbe,0xdf,0xab,0xa5,0x40,0x9a,0x71,0x16,0xbf,0x15,0x29,0x0e,0x71, + 0x71,0xbd,0xdb,0x6a,0x82,0x0d,0x95,0x7c,0x20,0x02,0xf0,0xde,0xdd,0x05,0xf6,0x82,0x3a,0x38,0x4d,0x5e, + 0x50,0x21,0xea,0x11,0x53,0xa1,0x5b,0x87,0x92,0xe8,0x8a,0x09,0xaf,0xfc,0xc4,0xe6,0xd3,0xf6,0x2e,0xbd, + 0xc6,0x24,0x35,0x36,0xc9,0xda,0xb7,0xed,0xb4,0x91,0x46,0xb6,0x5e,0xf7,0x84,0xcf,0x6f,0xb4,0x19,0x23, + 0x91,0xb7,0x57,0xb0,0xa9,0x8b,0xda,0xfe,0x22,0x8d,0x91,0x7c,0xc2,0x5b,0x04,0x4a,0x11,0x38,0x8d,0x94, + 0xc4,0x80,0x74,0x2f,0xfc,0x63,0x3d,0xe2,0x49,0x79,0x1a,0xf1,0x1d,0x4a,0x49,0x39,0x2e,0x8d,0xd3,0x7b, + 0x1d,0x75,0x6e,0xc4,0xab,0xa3,0x31,0x71,0x72,0xf5,0xa9,0xdd,0xb1,0x1b,0x8c,0x5b,0xc2,0x9d,0xd2,0xc3, + 0x22,0x6b,0x2e,0xcb,0x29,0x3f,0xca,0x75,0xd7,0x78,0x9a,0xe8,0x68,0x07,0xfd,0x13,0xb3,0x3d,0x9c,0xbe, + 0x6b,0x03,0x0c,0xc1,0xcc,0xc3,0x54,0x0d,0x4c,0x24,0x73,0xb6,0x78,0x30,0xed,0x5f,0x11,0x4b,0x93,0xbc, + 0x15,0x75,0x69,0xa5,0x56,0x95,0x9a,0x75,0x95,0xb5,0x5d,0x9a,0x1b,0x10,0x40,0x38,0x7b,0x8a,0xcb,0xad, + 0x88,0xf7,0xc5,0xb9,0xc6,0x71,0xe4,0xd8,0x7c,0xa6,0x87,0x66,0x25,0x2a,0xcf,0x06,0x14,0x07,0xf1,0xea, + 0xbf,0x47,0xd1,0xaa,0x45,0x16,0xfa,0x79,0xe1,0x8f,0x88,0x28,0x6e,0x0c,0xf9,0x5c,0xc5,0xd6,0xad,0xf0, + 0x15,0x91,0xef,0xe9,0x45,0x76,0x74,0x99,0x16,0x45,0x36,0x5f,0xaf,0x77,0x3f,0x86,0xed,0x24,0xd0,0xdd, + 0xe6,0x8e,0xa6,0x76,0x0e,0xa1,0xb5,0xba,0xa9,0x56,0x38,0x83,0xf9,0xda,0xa6,0x76,0xae,0x95,0x33,0x85, + 0x3d,0xfd,0x33,0x0e,0x80,0x3f,0xc2,0xd9,0xcf,0xd9,0x96,0x5c,0x55,0x8c,0xfa,0xda,0x15,0xa9,0x45,0x95, + 0x5c,0xd1,0x34,0xd3,0x61,0xf4,0x70,0xa4,0x1f,0x0e,0x87,0xe0,0x50,0xb9,0x54,0xf2,0xa3,0x6a,0x57,0xbf, + 0x40,0x91,0xba,0xd1,0x95,0x40,0xd8,0xb3,0xb9,0x63,0x52,0x09,0x67,0x2f,0xf2,0x9a,0xe7,0x53,0x3f,0x6a, + 0x0b,0xdf,0x8b,0x2a,0xd1,0x09,0xe6,0x22,0x60,0x22,0xa5,0xe7,0xad,0x56,0x2e,0x2a,0xb9,0x55,0xf9,0xc7, + 0x88,0x78,0xca,0x96,0x53,0xe3,0x85,0x09,0x9b,0x4c,0x1f,0xac,0x2a,0x06,0x8a,0x9b,0x4a,0x9d,0xcb,0xd0, + 0x88,0x19,0x3b,0xab,0x3a,0x82,0x26,0x2d,0x4e,0x1d,0x04,0x36,0x20,0x35,0x0b,0xaf,0x08,0x43,0x05,0xff, + 0x8f,0xad,0xd6,0x33,0x80,0x8b,0x95,0x5d,0xc5,0x59,0xe4,0x15,0xaa,0x10,0xee,0x56,0x0a,0x15,0x77,0x15, + 0x32,0xb6,0x76,0xac,0x8e,0xcf,0x92,0xaa,0x55,0x4e,0xc1,0x30,0x02,0x82,0xcd,0xad,0xb8,0x81,0x0d,0xb3, + 0x9f,0x95,0xdc,0x46,0x75,0xcc,0x90,0xfa,0x91,0xff,0x1e,0x71,0x30,0xa9,0xf7,0x0c,0xb5,0x9f,0xf8,0xef, + 0x63,0x9c,0x1d,0xf7,0xf0,0xe7,0x4d,0x1f,0x5d,0x6c,0xce,0xb9,0x05,0xe2,0xbf,0xb3,0x67,0xc4,0x19,0x63, + 0x2b,0xa2,0xc5,0xe4,0x1c,0x73,0x09,0xc6,0x66,0x98,0x93,0xab,0x71,0xa8,0xcf,0x44,0x3a,0x14,0x77,0x77, + 0x2b,0x7e,0x90,0xc3,0x06,0xb2,0x06,0x4e,0xc2,0x83,0x24,0x21,0x1e,0x1a,0x27,0xe1,0x41,0x33,0x34,0x44, + 0xf9,0x71,0x12,0x1e,0xf4,0x81,0xc4,0x95,0xb9,0x3a,0xdc,0xa7,0xde,0x17,0x9a,0xca,0x9c,0x9c,0x1b,0x2a, + 0x9d,0xd8,0xa4,0xbd,0xbd,0x7b,0xba,0x21,0x89,0xf5,0x66,0xa9,0xd7,0x69,0x4e,0xe7,0xbe,0xab,0xc7,0x1e, + 0xe3,0x60,0xa5,0x34,0x31,0x9f,0x5d,0x3f,0xf5,0xdf,0x29,0xf3,0x05,0x21,0x2a,0x0d,0x10,0x5e,0x91,0x6e, + 0xaa,0xd3,0x20,0x40,0xdc,0xde,0x13,0x41,0xa1,0x19,0x73,0x39,0xa2,0x41,0x1a,0x8c,0x25,0x0e,0xfd,0xd7, + 0x8e,0xcf,0xcf,0xee,0xd3,0x42,0xc4,0x16,0x06,0xcc,0xe1,0xb0,0xa6,0x03,0xb1,0x0c,0x03,0x77,0xc5,0x65, + 0xcf,0x81,0xd9,0x73,0x08,0xb7,0xd0,0xe7,0x28,0x4b,0xf4,0x59,0xec,0xee,0x9e,0xda,0xb0,0xeb,0x95,0xd7, + 0x1f,0xdc,0xff,0xd7,0xd7,0xbb,0x08,0x8e,0xfb,0xca,0xa3,0x84,0xec,0x54,0x1a,0x13,0x33,0xf3,0x19,0xc2, + 0xe3,0xbc,0xf1,0x4f,0xfa,0x0e,0x7d,0x2e,0x9f,0x2a,0x8f,0x71,0xfc,0xa7,0x8e,0x35,0x64,0x93,0x22,0x8f, + 0xa5,0x93,0xcb,0xaa,0x19,0x4a,0x13,0x0d,0xa0,0x1c,0xd6,0xaf,0x49,0xbc,0x7e,0xea,0xab,0xe8,0x94,0x15, + 0xad,0x18,0x63,0x70,0x03,0x41,0x51,0x73,0x59,0x95,0xd7,0x74,0x80,0x3c,0x61,0xad,0xf6,0x7d,0xf9,0x6c, + 0x87,0xa6,0x6e,0x47,0xc3,0xf4,0x0e,0x22,0xe6,0xb6,0x97,0x13,0x16,0x29,0xd1,0x86,0xf0,0x11,0x55,0x7e, + 0x73,0x6b,0xe1,0x72,0x30,0xf8,0x3d,0x6c,0x75,0x11,0xfd,0x2f,0x97,0xa1,0x9e,0x1e,0x48,0x00,0x8a,0xd5, + 0x12,0xb0,0xe4,0xa2,0xf5,0xd1,0x31,0xd2,0x9a,0x13,0xe1,0x90,0x7b,0x1c,0x76,0x32,0x82,0xe2,0x51,0x1b, + 0xd8,0x20,0xb3,0x08,0x61,0x12,0x17,0x76,0xd2,0x25,0x2a,0x59,0x0b,0x7a,0x0d,0xab,0xef,0x83,0xb0,0xfd, + 0xde,0x48,0x09,0x64,0xe3,0x46,0x9d,0x2e,0x79,0xfd,0xfe,0x0c,0x7b,0x8e,0x2d,0x63,0x20,0x2c,0x03,0x5f, + 0xa0,0xfb,0x6d,0x33,0xc1,0x62,0xf4,0xf5,0x9f,0xc6,0x85,0xcb,0x1a,0x9c,0xd4,0x41,0x8b,0x07,0xb4,0x6b, + 0x86,0xeb,0xee,0xc8,0xdf,0x7d,0xed,0x9a,0xb6,0x76,0x61,0x27,0x41,0xa4,0x2f,0x61,0xa4,0x5c,0x85,0xb5, + 0xb7,0xd3,0xfd,0x89,0x6a,0xef,0xf9,0xa2,0x3d,0x89,0x26,0x02,0x66,0x67,0x86,0x44,0xe2,0xb0,0x25,0x9d, + 0xe1,0x4d,0xe0,0x21,0x99,0x5d,0xbd,0x17,0x80,0xa5,0x24,0xbd,0x5a,0x51,0xe1,0xf8,0x8e,0xc5,0xd6,0x51, + 0xae,0x93,0xe4,0x08,0x17,0x52,0x33,0xdc,0xf2,0x13,0x50,0xd7,0xa7,0x96,0xe9,0xdf,0x71,0x65,0xad,0x11, + 0x47,0xc5,0x37,0x8f,0xab,0xc1,0xe0,0xb8,0xe2,0x0b,0xd8,0xa6,0xdf,0x70,0x4d,0x51,0x41,0x0b,0x42,0x85, + 0x74,0x6c,0xeb,0x62,0xef,0x50,0x1d,0x40,0x86,0xc3,0x07,0xdd,0xb1,0xb9,0x27,0x33,0x1a,0xbd,0xc7,0x2e, + 0xc7,0xc9,0x70,0xa0,0xbe,0x0b,0x11,0x23,0x11,0x58,0x40,0x64,0x35,0xad,0xf1,0x52,0xb7,0xfd,0xc1,0xc2, + 0x58,0xdd,0x61,0x56,0x13,0x43,0xc5,0x6d,0x7b,0xb6,0x35,0xda,0xd5,0x72,0x34,0x46,0x12,0xeb,0x75,0xce, + 0x17,0xe1,0xd9,0xad,0xd3,0x82,0x16,0xf1,0x01,0x35,0xb5,0xb6,0xf8,0x2b,0xd9,0xb2,0x95,0xde,0x74,0x93, + 0x73,0xd9,0xdf,0x7a,0xfb,0xb3,0xad,0xab,0x13,0xa1,0x3e,0x09,0x33,0xc3,0x84,0xa9,0xfb,0xc6,0x52,0xe3, + 0x4f,0xed,0x6c,0xb9,0x78,0xfd,0xce,0x16,0x36,0x9d,0xe9,0xc8,0xd0,0xc5,0x3e,0x00,0xf0,0x10,0x22,0x4f, + 0x84,0x7f,0xe2,0x40,0x8c,0xd1,0xaa,0x65,0x5b,0x84,0xf6,0x47,0x3b,0xcc,0xdf,0x5a,0xfa,0xf3,0xb0,0xbb, + 0x54,0x0d,0xc1,0xfd,0xb4,0xbc,0xfe,0xec,0x7a,0xe9,0xc1,0x21,0x8c,0xd0,0x93,0x8c,0x68,0xbe,0xa7,0x46, + 0x77,0xb4,0x5e,0xaf,0x42,0x9b,0x69,0x8e,0x78,0x61,0x5e,0x47,0x7f,0xa9,0x73,0x9d,0xbd,0x3d,0x6a,0x1d, + 0xc4,0x87,0x1b,0xe1,0xd9,0x9e,0x11,0x61,0x92,0x15,0xab,0x45,0x66,0x64,0x39,0xaa,0x23,0xdb,0x81,0xc2, + 0x26,0xbe,0x50,0x35,0xfe,0x6e,0xd4,0x53,0x2a,0x8e,0x1d,0x06,0xc6,0x7c,0xf4,0x3e,0x0b,0x3f,0x79,0xd2, + 0x56,0xe1,0xf2,0xdf,0x52,0x09,0x04,0x15,0xf0,0x79,0x66,0x4d,0xd1,0xf0,0xf1,0xd7,0x1f,0x33,0xa0,0x27, + 0x28,0x40,0x5e,0xdb,0x29,0x89,0xfa,0xc2,0x06,0x24,0xad,0x06,0xdc,0x65,0xdf,0xc9,0xed,0x19,0xcb,0x79, + 0xa4,0x34,0x46,0xa0,0x7d,0x99,0xaf,0x2b,0xa5,0x1d,0xf6,0x7f,0x2a,0x58,0x25,0x6d,0x5e,0x9f,0xcd,0x17, + 0x71,0x25,0x1c,0x1b,0x91,0x9a,0xd9,0x0c,0xef,0xb9,0xbc,0x6f,0xd8,0x5d,0x94,0x1d,0xcc,0xdb,0xf6,0x3d, + 0x2e,0x46,0x88,0x5c,0x5c,0xa3,0x0d,0x7b,0x92,0x89,0x7e,0x50,0x75,0xd7,0x96,0x87,0xb2,0x3a,0x29,0x84, + 0x19,0x21,0xa9,0xda,0xf6,0xdf,0x47,0x44,0x03,0x62,0xdd,0xe0,0x67,0x17,0x0d,0xef,0xb1,0x22,0x32,0x04, + 0xa9,0x9a,0x51,0xc7,0xb4,0xa0,0xce,0xbb,0xb0,0x49,0xf7,0x0f,0xa1,0x01,0x1e,0xcf,0x2d,0x2e,0x40,0x04, + 0xd1,0xb7,0x00,0xca,0x8c,0x43,0x39,0x84,0xa9,0x4a,0x69,0x13,0x29,0xf3,0x1e,0xb7,0x99,0x2d,0xe3,0x92, + 0xb7,0x15,0x68,0x61,0xb7,0x8f,0x34,0x95,0xfa,0x77,0x77,0xc3,0x1c,0x6b,0x67,0x22,0x27,0x0c,0xcf,0x64, + 0xe8,0x47,0x5a,0x5c,0xbb,0x5e,0x9b,0xf0,0xac,0xce,0xb4,0x8f,0xcb,0x7b,0xef,0x7c,0xd3,0x82,0xb6,0x8b, + 0x74,0xf5,0x78,0xab,0x94,0x54,0x44,0xe9,0x4a,0x78,0x2e,0x7e,0x3c,0xd3,0x97,0x72,0x87,0xe6,0xd1,0x88, + 0x53,0xf9,0xa2,0xa7,0xbb,0xba,0x92,0xe4,0xc8,0x94,0x8b,0x39,0xcc,0x0d,0x47,0xed,0x6b,0xce,0xae,0x70, + 0xcf,0xc6,0xbd,0xb9,0x31,0x5f,0xc2,0x2d,0x02,0x94,0xd4,0xc0,0xb8,0xc5,0x56,0x2a,0x26,0x97,0xb7,0x65, + 0x35,0x6c,0x09,0xa9,0x8c,0x79,0xb0,0x30,0xef,0x08,0x8a,0x83,0x72,0xec,0x72,0xe2,0x0d,0x89,0xd2,0xa0, + 0x62,0x41,0x78,0x6c,0x44,0x42,0x1c,0x4d,0x1e,0xd9,0xad,0x3b,0x71,0x17,0x61,0xd7,0x27,0x13,0xe2,0xf9, + 0x71,0x47,0xfb,0xeb,0x70,0xae,0xba,0x6d,0xcb,0x8d,0x7f,0xdb,0xed,0x1f,0x6c,0x95,0x7c,0xca,0xe2,0xf3, + 0x8d,0xb3,0x6e,0x5e,0x25,0xdb,0x13,0xec,0xe2,0x56,0x7c,0x26,0x0f,0x17,0x16,0xc9,0x3d,0x96,0xab,0x68, + 0x93,0xf2,0xc4,0xdf,0x83,0x65,0x03,0x4d,0x24,0xee,0x5d,0xf4,0x42,0x79,0x53,0x06,0x4d,0xc3,0x44,0x2b, + 0xca,0xd9,0x8b,0xbe,0xe9,0xd9,0xb6,0x3d,0x5b,0x59,0x79,0x61,0x36,0xe8,0xd9,0xae,0x02,0x20,0xce,0x45, + 0xf0,0xd8,0x28,0x09,0x1d,0xd6,0x7b,0x74,0x9b,0xfb,0xf7,0x8a,0xbe,0xfa,0x47,0x45,0x2b,0x5a,0x5b,0xe8, + 0xbf,0x62,0xf6,0x38,0x3a,0x83,0x55,0xf8,0xb3,0x81,0x5b,0x7b,0x4b,0xf1,0xc5,0xd2,0xee,0x9b,0x31,0xdf, + 0xe3,0x54,0xe1,0xda,0x68,0x8b,0x4f,0x89,0xd1,0x93,0x23,0xbd,0x8a,0xa2,0xb8,0x46,0x85,0xbb,0x07,0x3a, + 0x18,0x55,0xb5,0x51,0xda,0x32,0xe0,0x8e,0xae,0x77,0xbb,0xdb,0xb4,0xb0,0x1f,0xbb,0x8d,0xb6,0xfb,0x63, + 0xe5,0x95,0x62,0xf5,0x2a,0xa8,0x35,0x2c,0xa4,0x9b,0x62,0xf9,0xf0,0xa2,0x70,0x3c,0x57,0x89,0x18,0xb1, + 0x4c,0xef,0xd9,0x1e,0x47,0x08,0xa8,0xe9,0xf5,0xff,0x60,0xe4,0xc9,0x34,0x47,0x15,0x31,0x2e,0xf7,0xba, + 0x77,0xb6,0x43,0xb2,0x89,0x1b,0x40,0x6d,0x06,0x6e,0x7a,0x1c,0x4d,0xd0,0x83,0x96,0x85,0x83,0x84,0xdd, + 0xa7,0xd1,0xc7,0x8d,0x77,0x4d,0x33,0x90,0xcf,0x87,0xaa,0x25,0xaa,0x7c,0x4b,0x7b,0xf6,0x45,0x95,0x1c, + 0xaa,0x97,0x55,0xf2,0x50,0x3d,0x47,0xc3,0x4f,0x7d,0xed,0x1d,0xdf,0xca,0xbd,0x2d,0xfb,0x3d,0x5b,0x11, + 0x6b,0xf9,0xbc,0x32,0x1a,0x38,0x9a,0xaa,0x9f,0x56,0x3c,0x4c,0x89,0x18,0xe7,0x21,0xff,0x71,0x1f,0x92, + 0x73,0xb0,0xde,0x91,0x5c,0x31,0x10,0x19,0xf1,0x8c,0x35,0xef,0xe4,0x30,0x24,0x3e,0x46,0x1a,0x99,0x88, + 0x11,0x94,0x2e,0x0f,0xaa,0xe8,0xa2,0x2c,0x9b,0x40,0x47,0x89,0xfb,0x9c,0x5e,0x90,0x23,0x27,0x0c,0x92, + 0xe5,0x49,0x8b,0xd1,0x7a,0xae,0x7f,0xf4,0xb6,0x45,0x92,0xb7,0xb6,0xc8,0xd6,0x2e,0xcd,0xbd,0x5d,0x53, + 0x6c,0xa3,0x3f,0xbb,0x8b,0x90,0x69,0xdb,0x39,0x4e,0x2f,0xe4,0x4e,0x5f,0xd5,0xe8,0x63,0x8b,0x43,0xcd, + 0xea,0xa3,0xcc,0xa4,0xa9,0x2d,0x47,0xc1,0x64,0xcb,0x31,0x27,0x12,0x9a,0x95,0xd0,0x93,0x50,0xdb,0xf7, + 0xdc,0x65,0xed,0xcf,0xb2,0xd0,0xe8,0xe3,0xcc,0xe4,0xd2,0x06,0xe3,0x50,0xde,0x22,0xb2,0x90,0x55,0x94, + 0xb6,0xde,0x56,0xe5,0x27,0x11,0x0c,0xe8,0xe4,0x3a,0x9b,0xcf,0xe4,0xbd,0x6f,0xeb,0xd8,0x8b,0x3f,0x0b, + 0xbb,0x18,0x4c,0xc1,0x23,0x14,0xa6,0x0d,0x05,0xa4,0xc3,0x85,0x16,0x0e,0xc7,0x99,0x9c,0xc1,0x80,0x12, + 0x4d,0xbc,0x47,0xd8,0xc2,0x9a,0x97,0xc2,0x83,0x7e,0xa3,0xae,0xcd,0x4c,0x2e,0x5f,0xc9,0x74,0xaf,0x2a, + 0x4b,0x7a,0x1a,0x17,0xf2,0x44,0xc4,0x44,0xe6,0xbe,0x61,0x6d,0xa7,0x5c,0xf8,0x0c,0xb1,0x8f,0x27,0xbb, + 0x61,0x1a,0x23,0xf3,0x36,0x9e,0x49,0xe8,0x6e,0xda,0x43,0x2e,0xe5,0x90,0x94,0x7e,0xb7,0x48,0xc1,0xa6, + 0xb4,0x89,0x47,0x10,0x76,0x5a,0x12,0xe4,0xcf,0x17,0x95,0xd4,0xf7,0x1d,0xf5,0x59,0xf2,0x50,0x2e,0x31, + 0x85,0xb0,0xaa,0x61,0x7b,0x89,0x44,0x47,0x43,0x6b,0x3e,0x7b,0x64,0x60,0xf2,0xe4,0x9e,0xae,0x3b,0x1a, + 0x94,0x33,0xdb,0x8c,0x4f,0xe0,0xe5,0xb8,0xca,0xb2,0xda,0xe9,0x85,0x3b,0x4b,0x68,0x0f,0xfa,0xf6,0x86, + 0xa3,0x1d,0x58,0x60,0xa5,0x4c,0x04,0x4e,0xff,0x00,0x6a,0xba,0xa0,0x2e,0x17,0x3e,0xfa,0x24,0x46,0xc2, + 0x47,0xfb,0xd9,0xa4,0x65,0xee,0xad,0xfc,0xeb,0xae,0xdf,0x78,0x17,0xc1,0x22,0x42,0xc4,0x86,0xd7,0xd2, + 0xb7,0x41,0xfc,0xb3,0xdf,0x1e,0x68,0x4d,0x48,0x2e,0x3d,0xe6,0x90,0xf9,0x50,0xbd,0x04,0x42,0x7b,0x04, + 0x10,0xe5,0xe5,0x1e,0xc9,0x21,0x01,0xb7,0xa4,0x84,0xdd,0xbf,0x81,0x6a,0xb6,0xa6,0xdb,0x95,0x36,0xb3, + 0x3d,0x91,0x6d,0xa5,0xda,0xe6,0x6c,0x3d,0x41,0x59,0x92,0xcb,0xcc,0x27,0xae,0x44,0xce,0x0f,0xe5,0x03, + 0x7c,0x5c,0x7a,0x68,0x19,0xe5,0xa3,0xe8,0xa6,0x27,0x46,0x39,0x1d,0x37,0xf7,0x98,0x20,0x68,0x24,0x40, + 0xae,0xea,0x21,0x48,0xee,0x02,0x0a,0xc3,0xcf,0xc0,0xd1,0xbe,0x0b,0x01,0xa3,0xc6,0x78,0xbc,0x7c,0x1e, + 0x6d,0x3b,0x44,0xc8,0x48,0xa4,0xb2,0x24,0x97,0x8e,0xd7,0xdf,0x43,0x75,0x61,0x43,0xa6,0x08,0x3a,0x64, + 0x36,0xf8,0x56,0x97,0x53,0xed,0xba,0x66,0x9b,0x4e,0x71,0x2f,0x15,0xef,0xfd,0xd4,0x84,0xdf,0x7d,0x0d, + 0xc3,0x69,0x1a,0x37,0xcd,0xdd,0xbd,0x90,0xe3,0x89,0x44,0x8a,0x35,0x37,0x84,0xcd,0x56,0x19,0xab,0x1a, + 0xb9,0x1f,0x01,0x48,0xed,0x4e,0x1c,0x81,0xa8,0x84,0xbb,0x7d,0xcf,0x4c,0xb1,0xf3,0x93,0x26,0x2d,0x61, + 0x96,0x2d,0x1a,0x99,0xee,0x1c,0x74,0x47,0xef,0x02,0xe2,0x48,0xed,0x7c,0x9b,0x8b,0x08,0x2e,0xb0,0x2a, + 0xe3,0x8b,0x78,0x19,0x8a,0xbe,0x4f,0xee,0x7c,0x36,0xf5,0xa2,0x09,0x40,0xe5,0xf8,0x73,0xd8,0x54,0xe0, + 0x36,0x0d,0x91,0x76,0xc6,0x5a,0xbb,0x5e,0x31,0x6a,0xbb,0x87,0x9e,0x79,0x70,0xa6,0xd9,0xf7,0x96,0x60, + 0x40,0xe7,0xb1,0x7c,0x40,0xb1,0x11,0x67,0x88,0x6b,0xb6,0x6e,0x37,0x72,0x49,0x0f,0x9d,0x1b,0x7c,0xc7, + 0x33,0xe4,0x6a,0x7c,0x29,0x9b,0x13,0xb4,0xb4,0xe1,0x91,0xd7,0xbb,0x43,0x16,0xe7,0x89,0x0f,0xe1,0x7a, + 0xa8,0xca,0x46,0x64,0x1c,0xe5,0x56,0x34,0x56,0x26,0xc5,0x49,0x7e,0x0a,0x57,0xb3,0x19,0xad,0x20,0xee, + 0x68,0xbd,0xe6,0x9b,0x5a,0xf5,0xf2,0xa1,0x5b,0x01,0xee,0xc9,0x7e,0x2c,0x14,0x0c,0x38,0xb0,0xf8,0x71, + 0x68,0xa6,0x81,0xe0,0x0b,0xfb,0xb5,0xb1,0x2a,0xb2,0xbb,0x40,0xf5,0xcc,0x14,0xf8,0xd9,0xc0,0x7b,0x1f, + 0xde,0xad,0x92,0xdf,0x10,0x2a,0xbd,0x15,0x7d,0xa3,0x31,0xdc,0x55,0x83,0xbb,0x63,0xca,0xbe,0x99,0x4f, + 0xc7,0x69,0x9c,0x42,0xb6,0x31,0x82,0xe4,0x08,0xe3,0x61,0x01,0xf8,0x1b,0xf8,0x6d,0x96,0xeb,0xf5,0x85, + 0xba,0x20,0x36,0x9d,0x88,0xd8,0x5c,0x83,0xe6,0x0c,0x63,0xcb,0x99,0xfd,0x63,0x50,0x30,0x7d,0x8b,0xd8, + 0xc7,0x8b,0xfa,0x07,0x9b,0x16,0x7e,0xd8,0x15,0x05,0xe7,0x1d,0xee,0x11,0x5e,0xf7,0x2a,0x86,0xb2,0xed, + 0x30,0x1e,0x95,0x7f,0x17,0x1c,0xdc,0xe3,0x2a,0xdf,0x27,0x6e,0x29,0x7c,0x44,0xc5,0x37,0x45,0x32,0xf7, + 0x6a,0x52,0x4c,0xd7,0xc4,0x2c,0xb0,0x0f,0x77,0x6c,0xc1,0xa8,0xd6,0x21,0xea,0x78,0x60,0x67,0xfa,0x75, + 0xda,0x0f,0xaa,0x8d,0x40,0x24,0xa0,0x6c,0x1b,0x81,0x1a,0x03,0x60,0x4d,0x89,0xd8,0x16,0xe0,0xa2,0x24, + 0x29,0xc2,0x81,0x77,0x73,0xe9,0x9c,0xd8,0xee,0x21,0x6e,0x13,0xfa,0x9c,0x0d,0x0c,0x03,0xd2,0x66,0x64, + 0xe3,0x3e,0x15,0x9f,0x2d,0xcc,0xe0,0xdd,0x6f,0x25,0x73,0x13,0x7a,0xa4,0x32,0x1d,0x1f,0x02,0xba,0xb4, + 0x3f,0xfe,0x4c,0x61,0x8d,0xa6,0x8a,0xa8,0x65,0x2d,0x77,0x8f,0x0d,0xe3,0xda,0x49,0x72,0x91,0x53,0xf2, + 0xac,0x9d,0xda,0xa7,0x38,0x97,0x3b,0x8f,0x5c,0x24,0x17,0x2c,0xae,0xd0,0x84,0x72,0xbf,0x34,0xae,0x83, + 0x90,0x6b,0xdc,0x45,0x11,0x75,0x60,0x42,0xae,0x0a,0xec,0xfa,0x45,0xad,0xef,0x5c,0xee,0x14,0xb8,0x8d, + 0x93,0x09,0x2a,0xe3,0x0f,0xe1,0x9b,0xcd,0x54,0x56,0xea,0xc6,0x21,0x94,0xc3,0xa7,0x7d,0x01,0xca,0x92, + 0x07,0xff,0x83,0x4b,0xd8,0xe3,0x07,0xa3,0xd6,0x70,0xca,0x96,0x31,0xba,0x8c,0xa4,0x6b,0x27,0x12,0xb5, + 0x6d,0x3e,0xb2,0xae,0xcd,0x87,0x86,0x0e,0xaa,0x00,0xbe,0xc0,0x5a,0x3c,0x23,0x30,0xa3,0x69,0xaf,0x93, + 0xec,0xd4,0x68,0x0d,0x5c,0x8a,0x17,0x04,0xaa,0xc0,0x86,0xd4,0xda,0x26,0x70,0x72,0x5c,0xb0,0x4d,0x98, + 0x59,0xc5,0x24,0xc3,0x47,0xdb,0xd6,0xf1,0x5e,0xd9,0x11,0x8a,0x35,0x9e,0x71,0xa6,0xcc,0xd0,0xbd,0x72, 0x36,0xe3,0x01,0x2a,0x63,0x25,0x54,0x79,0x57,0xa7,0x6d,0xf4,0xce,0xa6,0x9a,0x3d,0xef,0x45,0xa2,0xac, 0x55,0x25,0x03,0xc3,0x87,0x55,0xb7,0xd1,0xd9,0xac,0xd3,0x26,0x58,0xd1,0xae,0xd1,0x52,0xd4,0x82,0xea, 0xcf,0x90,0xa2,0xdc,0x78,0xdf,0xec,0x77,0xbc,0xb4,0xb6,0x83,0x1a,0xca,0xf4,0x63,0x7c,0x38,0xf6,0x9a, 0xf6,0x44,0x09,0x42,0xea,0x4c,0x7d,0xfb,0xd2,0x0a,0xd3,0xb2,0x33,0xe9,0xe8,0xae,0x94,0x5c,0x1c,0xa0, - 0x8b,0x35,0x16,0x1e,0x4a,0xff,0x92,0xcb,0x14,0x27,0x0d,0x65,0x87,0x65,0x92,0xc3,0x42,0x03,0x76,0x0b, - 0xb8,0xbe,0x68,0x56,0x74,0xae,0xba,0x4c,0xb7,0xae,0xba,0xec,0x59,0xd1,0x6c,0xd1,0xe1,0x7f,0x9d,0xbc, - 0x9e,0x39,0x9e,0xf6,0x58,0x0a,0x38,0x90,0x99,0x43,0xef,0x9b,0xc3,0x31,0x20,0x2a,0x2e,0x3c,0xbe,0xfe, - 0x22,0xb4,0xeb,0x42,0xad,0x13,0x10,0x1f,0xb0,0xc7,0xab,0xc1,0xd0,0x0f,0x4a,0xc6,0xd2,0x7c,0x4b,0x17, - 0xa1,0x68,0x63,0x47,0x06,0xec,0x6c,0x1d,0x7c,0x1e,0x85,0x44,0xf6,0xa9,0xbb,0xdc,0xee,0xce,0x85,0xb8, - 0x0f,0xb0,0x74,0x1f,0x4e,0xd2,0x22,0xc7,0x77,0x4a,0x36,0xd9,0x84,0xe1,0xcb,0x2a,0xa1,0x5f,0x9f,0xaf, - 0xef,0xaa,0x6e,0x84,0x80,0xd0,0xcc,0xbc,0x66,0x79,0x06,0x83,0x0e,0x85,0xab,0xfd,0x2f,0x4c,0x9c,0x43, - 0x59,0xf0,0x6c,0xae,0xb4,0x3e,0x5a,0xf8,0x0d,0x1a,0xd4,0x55,0x35,0xba,0xaa,0x7c,0x16,0x52,0x78,0x0a, - 0x62,0x23,0xc6,0xe6,0x1b,0x63,0x12,0xc7,0x92,0xd0,0xd3,0x53,0xda,0x05,0x59,0xa4,0xf5,0xc0,0x3d,0xb9, - 0xb6,0x25,0x8e,0xc9,0x71,0xd8,0x39,0x25,0x3c,0xde,0xbe,0x93,0x21,0xdc,0x7d,0xf7,0x54,0xf1,0x05,0x03, - 0x7d,0xe5,0x4d,0x0c,0xed,0x2a,0xc9,0xf9,0x76,0x44,0xe2,0xd7,0x4f,0x2f,0x57,0xd9,0xe9,0x69,0xe2,0x76, - 0x08,0x7a,0x63,0x30,0x04,0x3d,0xda,0x12,0x1e,0x3f,0x7d,0x47,0xcb,0x49,0xe5,0x45,0xda,0x34,0x6f,0x32, - 0x21,0x5a,0x35,0xa4,0xf3,0x9c,0x60,0xb5,0x95,0x6a,0xa7,0xe3,0x0e,0x9f,0x77,0x2f,0x7d,0x2d,0x87,0x2f, - 0xed,0xdb,0xd2,0xc2,0x18,0x4a,0x5f,0xb7,0x69,0x5e,0x3d,0x3b,0xe1,0x76,0x5d,0x5a,0x4e,0xd4,0xd1,0x98, - 0xec,0x1a,0xa0,0x68,0x73,0xb9,0xd1,0x4d,0x07,0x36,0x8c,0x0b,0x4e,0xa4,0xfa,0x3f,0x70,0x37,0x53,0xfa, - 0xa3,0x1b,0xed,0xb2,0xee,0xa1,0x47,0x03,0xd3,0x5e,0x19,0x23,0x2e,0x80,0x66,0xc6,0xe3,0xf2,0x5b,0xe2, - 0x8b,0x5b,0x86,0xeb,0xce,0xa4,0x91,0xb3,0xa4,0x6b,0x15,0xb1,0x52,0xe0,0xc6,0x2a,0x70,0x6c,0x16,0x0c, - 0xab,0xbd,0x1a,0x1c,0x01,0xa1,0xcd,0x39,0x4d,0x6b,0x5e,0x92,0x31,0x7e,0xdc,0xdf,0xb7,0x53,0xe1,0xcf, - 0x82,0xea,0x83,0x6d,0xbd,0x75,0x04,0xbe,0xec,0xcc,0x3a,0x67,0x26,0x0b,0xc2,0x84,0x5d,0x3f,0x0f,0x80, - 0x3e,0x88,0xb6,0xe1,0xa9,0x25,0xab,0x17,0x73,0xfb,0x8d,0xfa,0x94,0x85,0xe1,0xab,0x0e,0x76,0x88,0xd4, - 0xab,0x16,0x60,0x14,0xc4,0xf2,0xbf,0xcf,0x27,0x6d,0xd3,0x47,0x8d,0x62,0x9e,0x69,0x65,0x23,0x41,0x53, - 0xeb,0x23,0x2d,0x13,0xf0,0x81,0xc9,0xad,0xbe,0xda,0x12,0x1c,0x69,0x31,0xd7,0x96,0xa0,0x8f,0xb5,0x12, - 0x0e,0x23,0x45,0x2d,0x42,0xdd,0x48,0x21,0x9c,0x33,0xb3,0xbc,0x83,0xbd,0xc0,0x2d,0x2c,0xc6,0x35,0x8d, - 0xb0,0xff,0xf1,0xc1,0xc9,0x60,0x80,0xbf,0x50,0xe0,0x44,0x9e,0x08,0x1d,0xa4,0xfb,0x3b,0x62,0x2a,0x21, - 0x29,0xde,0x74,0xa4,0x16,0x95,0xd5,0x50,0xb4,0xd4,0x27,0xa2,0xa7,0xd0,0xfa,0x10,0xe1,0x4b,0xd9,0x00, - 0x03,0x01,0x0b,0x84,0xc6,0x6d,0x89,0xd2,0xb6,0x24,0x19,0x9e,0x49,0xc6,0x23,0xbe,0x1c,0x35,0x90,0xd2, - 0x7c,0x33,0x91,0x91,0xda,0x18,0x14,0x9e,0xd2,0x40,0x45,0x24,0x8d,0x68,0xfa,0xe0,0x36,0xa8,0x99,0x2a, - 0xe4,0x38,0x9f,0x46,0xed,0xa2,0x34,0x35,0xfb,0xaa,0xa2,0x1d,0xad,0xde,0x56,0xc9,0xb1,0xf6,0x95,0x7c, - 0x9b,0x9d,0x3f,0xf9,0xb4,0x14,0x7b,0xdb,0x13,0xf5,0xa8,0x4a,0x6e,0xbe,0x37,0xe2,0xeb,0x58,0x87,0x39, - 0xf1,0xa3,0x59,0x9b,0x4d,0xc6,0x0a,0x3b,0x89,0x74,0x91,0x17,0x93,0xf9,0x6a,0x9a,0xc5,0x6f,0x09,0x3f, - 0x7f,0xb2,0x8f,0x8b,0xf4,0x53,0x6c,0xda,0x90,0xfb,0x77,0x4e,0x60,0x54,0xc8,0x34,0x7c,0xdc,0x45,0x43, - 0x93,0x94,0x36,0xd2,0xad,0x94,0x06,0xf3,0x94,0xf0,0xde,0x50,0x16,0xd8,0x5b,0xae,0x2d,0x46,0xdb,0xca, - 0x9c,0x8f,0xad,0x2e,0x7a,0x61,0x24,0x9a,0x78,0x53,0x99,0xab,0x8a,0xe0,0x90,0xb7,0xae,0xeb,0xba,0x0f, - 0xb4,0xcf,0xf5,0xce,0x72,0xb2,0x24,0x0b,0xc8,0x1f,0xb4,0x24,0x0d,0xa2,0xa7,0x4f,0x7f,0xe5,0xcb,0x5d, - 0xf7,0xe5,0x46,0x6d,0x47,0x1c,0xf0,0x71,0x1e,0x43,0xdc,0x50,0xc7,0x02,0xa3,0x4d,0xf0,0x2f,0x31,0x15, - 0x66,0x8f,0x86,0x2d,0xc9,0xb3,0x1f,0x90,0xf3,0x31,0x2e,0x4a,0x50,0x9a,0x7c,0xd2,0x03,0x83,0xa1,0xb9, - 0x28,0xf1,0xf9,0x95,0xef,0xca,0x24,0xc0,0xde,0x25,0x18,0x41,0x97,0x72,0x04,0x83,0x20,0xc8,0x27,0x18, - 0x1e,0x0c,0x3e,0xe0,0x62,0x6f,0x17,0xd9,0xbf,0x31,0x41,0x82,0xdc,0x14,0x6a,0x63,0x10,0x4c,0xa1,0x9a, - 0x18,0x31,0x06,0x5f,0xaf,0x5c,0x48,0x74,0xf7,0x49,0x3e,0xdd,0x0b,0x25,0x62,0x45,0x10,0xc7,0x88,0xb5, - 0xc1,0x81,0x59,0x02,0xa8,0x18,0x10,0x62,0x29,0x3d,0x9e,0x9c,0x8c,0x7b,0xb5,0x4d,0xc8,0xe9,0x51,0x38, - 0xad,0xe4,0xf6,0x2c,0x6d,0xa1,0x33,0x41,0x94,0x65,0x94,0x24,0x5a,0xd7,0x26,0xc9,0xb2,0x12,0xb4,0x0d, - 0x06,0x06,0x47,0x7f,0x63,0x03,0x06,0x9a,0x3c,0xda,0xcd,0x2f,0x40,0xcc,0xe1,0x5e,0x55,0xd5,0x22,0x38, - 0x22,0x23,0x6a,0x71,0x5a,0x1b,0x48,0x7b,0xcc,0x24,0xd0,0xc1,0x33,0x18,0x64,0xf4,0x15,0xf1,0x2a,0x3d, - 0x11,0x8b,0x3f,0xc7,0x47,0x3e,0x29,0x6e,0xe5,0x08,0x89,0x99,0x65,0xed,0x3d,0x33,0x82,0xd9,0x70,0xd5, - 0xe4,0xf3,0xe4,0x06,0x9e,0x9e,0xf1,0xcf,0x84,0x37,0x3e,0x35,0x04,0x20,0x88,0x26,0x0b,0xdb,0x6c,0xbd, - 0xd2,0xf1,0x0b,0x25,0x95,0xbc,0x15,0x0d,0x4e,0x16,0xdf,0x01,0x11,0x6a,0x38,0x41,0x8f,0xfd,0xb3,0x88, - 0xf8,0x99,0xb2,0x97,0x3e,0xf4,0xee,0xac,0x3e,0xeb,0x6b,0x16,0x61,0x99,0x9b,0x22,0x1a,0x31,0xc2,0xee, - 0x73,0xc1,0x8a,0x5c,0xdd,0xc3,0xd3,0xb3,0xb4,0x06,0xdd,0x86,0x6b,0x4f,0x4d,0x9a,0x5d,0xc9,0x9a,0x30, - 0x0a,0x0f,0xb1,0xce,0x6e,0xa1,0x90,0x21,0x64,0xa7,0xd5,0xc6,0x85,0x23,0x6f,0xe6,0xab,0xf3,0x9c,0xe3, - 0xaf,0xf6,0x67,0xf0,0x9d,0x7b,0x1c,0x1a,0xd4,0x78,0x44,0x66,0xb8,0xbd,0xa2,0xc5,0x1a,0x08,0xd5,0xd9, - 0x26,0xa1,0x1d,0x9b,0xa4,0xbd,0x27,0xb4,0x68,0xa1,0x47,0x06,0x81,0x18,0x24,0xdc,0xe8,0xd8,0x3e,0x69, - 0x02,0x9b,0xa3,0x6b,0xf5,0x7d,0x01,0x6d,0x96,0x77,0x65,0x19,0x73,0x6d,0xbe,0x41,0x19,0xd6,0x69,0x91, - 0x7f,0xca,0x7b,0x9d,0xa5,0x79,0xa0,0x4e,0x09,0xe3,0xbf,0x2a,0xfb,0x7d,0x5b,0x38,0x4b,0x9b,0x2c,0x39, - 0xd0,0x52,0xd9,0x43,0x62,0x90,0x05,0x5e,0x5a,0x95,0x67,0x09,0x2b,0x6e,0x3c,0x12,0x1c,0xc2,0x79,0x7c, - 0x29,0x17,0xef,0x62,0xb3,0xca,0xbd,0x86,0x78,0x62,0x39,0x1e,0x30,0x03,0x14,0x85,0xc6,0x00,0xdd,0xf8, - 0xaa,0xe0,0xc4,0x94,0xeb,0x18,0x6d,0x28,0x15,0x89,0xb2,0x9d,0xf6,0x68,0xfc,0xa0,0x08,0x64,0x8f,0x08, - 0x1d,0x30,0x20,0x75,0x87,0x7d,0x17,0x8c,0x3c,0x4a,0x22,0xf2,0x75,0x4e,0x49,0x8a,0x78,0xd5,0x34,0x44, - 0xdc,0x10,0x9f,0x7a,0x53,0x53,0xf8,0xf3,0x42,0xa7,0xed,0x6a,0x09,0x3d,0x8d,0x2b,0xb2,0x2d,0x94,0x76, - 0xd2,0xa8,0xcf,0xca,0x64,0x21,0x53,0xf4,0xa5,0x2e,0xa7,0x56,0xea,0xb2,0xc1,0x5d,0x27,0x69,0x0b,0xa8, - 0xbb,0xd2,0xc4,0xed,0x36,0x4c,0xa9,0x6e,0x33,0xb3,0x76,0x33,0x46,0x2c,0x2f,0x4d,0xe8,0x35,0x2c,0xf4, - 0x03,0xa5,0x08,0xc4,0x14,0xf2,0x4b,0xef,0xd8,0x40,0x05,0xfe,0xde,0xe6,0x35,0x91,0x32,0xef,0xcb,0x31, - 0x67,0x95,0xdc,0xe0,0xb2,0xbd,0x19,0xd9,0x0d,0xc1,0xce,0x9e,0xf1,0x86,0x73,0x33,0x6b,0x3a,0x62,0x72, - 0x32,0xbe,0x18,0x26,0xa5,0x1d,0x68,0xdd,0xef,0x70,0x29,0x6f,0xea,0xb4,0xae,0x39,0x3b,0x38,0x11,0x71, - 0xb1,0x91,0x63,0xea,0xd6,0xee,0xa1,0x67,0x9d,0x48,0x3e,0xd6,0xa7,0x24,0xf4,0x22,0x02,0x88,0x9f,0x58, - 0x19,0x16,0x1c,0x10,0x85,0x41,0x2d,0x29,0x34,0x04,0x5a,0x6b,0xd6,0x16,0xea,0xd1,0x7d,0xe6,0x48,0x36, - 0x5e,0x38,0x01,0xa9,0xa8,0x67,0xc3,0x32,0xb7,0x96,0xdc,0x20,0xba,0x65,0x5c,0x28,0x1d,0xfb,0xbc,0xd8, - 0x18,0x57,0x1f,0x8d,0xfc,0xc4,0x03,0x05,0x16,0x85,0x05,0x7b,0xbb,0xf4,0xe6,0x6d,0xb4,0xcb,0x54,0x21, - 0x2c,0x74,0x3f,0xb6,0x7f,0xd3,0x96,0xe9,0xe5,0xf5,0x3b,0xf1,0x35,0x16,0xc7,0xe8,0xdf,0xd0,0xf2,0x9f, - 0xfa,0xb0,0xae,0x2b,0xed,0x1a,0xb9,0xed,0x53,0xed,0x63,0x93,0x36,0x4b,0x29,0x04,0xbd,0xfb,0x16,0x96, - 0xef,0x54,0x31,0xfc,0xde,0x72,0xd8,0x5e,0xdf,0x1f,0x7e,0x35,0x3c,0xfc,0x42,0xc2,0xb4,0xfc,0x58,0xa9, - 0x9f,0x2a,0xf5,0x43,0xa5,0x9e,0x55,0xea,0xf7,0x4a,0x7d,0x5f,0xa9,0xdf,0x2a,0xf5,0x5d,0xa5,0xbe,0xad, - 0x38,0x9c,0x06,0xdf,0xfb,0xac,0xef,0x7c,0x55,0x3f,0x73,0x1a,0xdf,0x6d,0xa3,0x50,0x2f,0x91,0x99,0xa9, - 0x92,0x09,0x52,0x72,0xbf,0x0f,0xc8,0xc3,0x73,0x98,0x0e,0x52,0xe9,0x7f,0x77,0x6d,0xe7,0x6d,0x88,0x24, - 0x7b,0xbf,0x39,0x2d,0xcb,0xcf,0x15,0x8b,0xd4,0x02,0x89,0x68,0x0c,0xc7,0x8b,0x06,0x41,0x5b,0xf4,0x6d, - 0x41,0xba,0x50,0x20,0x8d,0xf0,0xfa,0x52,0x2e,0xd1,0x25,0x93,0x8f,0x2e,0x53,0x2e,0xdb,0xd1,0x79,0x36, - 0x8e,0x3a,0x72,0x20,0x76,0x2e,0x39,0x67,0xa3,0x7e,0xe1,0xce,0x4f,0xe4,0xb2,0xf7,0x6c,0x9a,0x37,0x30, - 0xa2,0x53,0xd3,0x2a,0x3d,0x3f,0xe7,0xa7,0x7a,0x99,0xcd,0xe7,0x5c,0x33,0xf5,0xfd,0x5f,0x5c,0x98,0x0e, - 0x82,0xf2,0x6a,0x46,0x08,0xbe,0x26,0x0c,0x46,0x4c,0x25,0xbb,0x64,0xaa,0x74,0xd5,0x94,0xb3,0x72,0xb2, - 0xaa,0xf9,0x69,0x39,0x4f,0xaf,0x95,0xee,0x10,0x07,0x1e,0xa1,0xa3,0x1a,0x76,0x7a,0x44,0xb2,0xce,0x6b, - 0x3a,0xbf,0x69,0xee,0xaa,0x4c,0x19,0xd2,0x4e,0xff,0x9a,0xf2,0xfa,0x95,0xfb,0x6c,0x5e,0xcc,0xd0,0xf1, - 0x4e,0x9c,0xcf,0x34,0xaf,0xd1,0xbd,0xa9,0xca,0x0a,0xf9,0x45,0x04,0x83,0xa2,0xa4,0x29,0xcc,0x01,0xc4, - 0xea,0x22,0x9f,0x4e,0xa9,0x6b,0x38,0x1c,0x9b,0xac,0x5a,0xe4,0x05,0x12,0x09,0xa2,0xaa,0x46,0xe5,0xf5, - 0x22,0x5d,0xaa,0xbc,0xc9,0x16,0x12,0xe9,0x64,0x5e,0x96,0x4b,0x65,0xae,0x99,0x52,0xd2,0x68,0x51,0x22, - 0x54,0x8b,0x42,0x78,0x89,0x3a,0xff,0x9d,0x50,0x54,0x59,0x5f,0xa4,0x60,0x38,0x5d,0x0b,0x45,0x89,0xe8, - 0x51,0xb4,0xce,0xd4,0xcc,0x32,0x25,0x6c,0x44,0x9b,0xf6,0x53,0xde,0x10,0x49,0x9b,0x4e,0xcb,0x62,0x8e, - 0xa8,0x2a,0xbf,0xad,0x68,0x0b,0x4e,0x95,0x76,0xad,0x9c,0x2a,0x61,0x8b,0x08,0x26,0xd2,0xc5,0x9c,0x80, - 0x41,0xd9,0x31,0xc1,0x07,0x93,0x67,0xdb,0x5e,0xec,0xc2,0xb1,0x41,0x69,0xee,0x29,0x13,0x30,0x8f,0xc0, - 0x12,0x1c,0x2b,0x5e,0x5d,0xe6,0x75,0x4e,0x25,0x11,0x23,0x2c,0x4f,0x82,0x8b,0xa6,0x59,0xc6,0xf7,0xee, - 0x5d,0x5d,0x5d,0x0d,0xaf,0xbe,0x18,0x96,0xd5,0xf9,0xbd,0xc3,0xaf,0xbf,0xfe,0xfa,0xde,0xa7,0x79,0x5e, - 0x7c,0x24,0x8a,0x2a,0xef,0x39,0x67,0x83,0xb8,0xe5,0x82,0xf2,0x15,0xa0,0x4c,0xca,0x73,0xb2,0x09,0xd1, - 0xf3,0x15,0x11,0xf6,0x45,0xdf,0xf7,0x3b,0x0d,0x6c,0x72,0xad,0x77,0xc9,0xdf,0x95,0x11,0x6c,0x72,0xcc, - 0x16,0x55,0xf5,0x7e,0x23,0x04,0x32,0x01,0xe2,0xee,0xa1,0x80,0x5d,0x9e,0x27,0x37,0xf5,0x25,0x11,0xc4, - 0xdb,0x23,0xb8,0x7f,0x70,0x70,0x70,0x8f,0xf2,0x02,0xe2,0x9b,0x9a,0x8b,0xbe,0x12,0x34,0xc6,0x7f,0xde, - 0xc3,0x1d,0xa9,0xfc,0xe7,0xe5,0x0b,0x6a,0xb6,0xcc,0x01,0x99,0x17,0xcd,0x62,0xae,0xce,0xca,0xe9,0xb5, - 0x02,0x36,0x54,0x17,0xb4,0x14,0x0a,0x43,0x53,0x88,0x50,0xae,0x64,0xd7,0x36,0x79,0x43,0x7f,0xd3,0xe9, - 0x14,0xfb,0x51,0xa5,0x55,0x93,0x4f,0xf0,0x5e,0xd3,0x9e,0x20,0x20,0x2a,0x71,0x8b,0x27,0xbe,0xc3,0xcf, - 0xa1,0xba,0xb8,0xaf,0x2e,0xbe,0x50,0x17,0x5f,0xaa,0x8b,0xaf,0xd4,0xc5,0xdf,0xd5,0xc5,0x79,0x55,0xae, - 0x96,0xaa,0x48,0x2f,0x69,0xed,0x78,0x8c,0x04,0x88,0x97,0x6a,0x4a,0x50,0x39,0x57,0xd3,0x46,0x11,0x1d, - 0x0b,0x0f,0x1b,0xa4,0xb3,0x41,0x6a,0xa6,0x96,0xf9,0x04,0x0e,0x37,0xea,0xa2,0x52,0xf9,0xe2,0x9c,0x3a, - 0x43,0x83,0xa2,0x43,0xac,0x9c,0xab,0x25,0x0c,0x1b,0xd5,0x6a,0xae,0x52,0x75,0x46,0xac,0xe4,0x59,0xa5, - 0xce,0xa6,0x39,0xfd,0x2f,0x15,0x3d,0x4e,0x08,0x3c,0x39,0x0a,0x91,0xe2,0xcb,0xec,0xa7,0x33,0xa2,0x85, - 0x17,0x2a,0x57,0x1f,0xcf,0xa6,0x54,0x41,0xf5,0x51,0xfd,0xa6,0xaa,0xa5,0x22,0x60,0xae,0x9a,0x89,0xaa, - 0x56,0x67,0xd7,0x44,0xc9,0xd7,0xe9,0x62,0xa9,0x08,0xb6,0x89,0xf0,0xaa,0x97,0x29,0xa1,0x1e,0xda,0x6b, - 0xc4,0x70,0xd6,0xab,0x33,0xfa,0xbf,0xe4,0x7b,0x6d,0xd5,0x4a,0x11,0x72,0x53,0x57,0x67,0x10,0xa2,0x13, - 0x92,0x4a,0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x64,0x3f,0x2a,0x46,0x0c,0xd4,0xd2,0x19,0x81,0x9d,0x78, - 0x83,0xc1,0x12,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x41,0x26,0x69,0x71,0x99,0x52,0x4b,0x93,0x2a,0x5f, - 0x36,0xd8,0x14,0xf2,0x40,0x24,0x37,0x0c,0xdd,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65,0xb2,0x34,0x60, - 0xf3,0x5a,0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x50,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xa6,0x04,0x34,0x67,0xd9, - 0x7c,0x4a,0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x51,0xed,0xf3,0xec,0x1c,0xb4,0xc0,0x02,0x9b, - 0x19,0xa8,0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15,0x13,0x0a,0x48, - 0x73,0x60,0x9d,0x3c,0x9d,0x97,0xe7,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b,0x9a,0xd0,0x6b, - 0xa5,0x31,0xa0,0xca,0x44,0xe8,0xa0,0xb0,0xdf,0xcb,0x2b,0x65,0x42,0x67,0x29,0x0e,0x4e,0xf6,0xdb,0xaa, - 0x04,0x1a,0x99,0x55,0xa0,0xfa,0x1a,0x40,0x0b,0x84,0x10,0x0c,0x7a,0x04,0xb0,0x2a,0x2d,0xf2,0x05,0xca, - 0x4e,0xf2,0x6a,0xc2,0xe7,0x43,0xbe,0x5c,0x12,0x80,0xaa,0xc9,0xaa,0xa2,0x1d,0x0e,0xcc,0x05,0xd4,0x57, - 0x4f,0xa8,0x11,0xca,0x22,0x00,0x95,0x28,0x3f,0x34,0xdc,0xa2,0xd9,0x9f,0xa5,0x13,0x00,0x60,0x95,0xe5, - 0xe7,0x85,0x1c,0x82,0xea,0x5c,0x9d,0xcf,0xaf,0x97,0x17,0x04,0x39,0xe9,0x79,0x06,0x40,0xce,0x78,0xf1, - 0x33,0x48,0x14,0x6a,0x02,0xea,0xbc,0xc6,0x2d,0x6b,0xfb,0x52,0x88,0x5b,0xa2,0x3f,0x54,0x21,0x21,0xa4, - 0x72,0x7e,0x7d,0x5e,0xca,0x2f,0x7f,0x07,0x52,0x40,0x89,0x2b,0xb5,0xaa,0x39,0xd4,0x06,0xcf,0x0f,0xff, - 0xe1,0x2f,0x1b,0x86,0x19,0x10,0x55,0x97,0x79,0x76,0x25,0x11,0xa2,0xea,0xde,0xbd,0x5c,0x8a,0x4d,0x7e, - 0xca,0xf7,0x87,0xd3,0x58,0x7b,0x39,0xaa,0x39,0x4f,0x8a,0xd8,0x37,0xb2,0xc4,0x83,0x1d,0xce,0xae,0xca, - 0x8a,0xd1,0x5f,0x45,0xbd,0xc8,0x68,0x23,0xa0,0x13,0x73,0xb5,0xaa,0x10,0x3d,0x7b,0x95,0x77,0x43,0x5b, - 0xb5,0xa4,0x40,0xbd,0xd6,0xbf,0xb7,0x84,0xdf,0xb2,0x17,0x29,0xeb,0x03,0x93,0x23,0x94,0x8f,0x8b,0x38, - 0x6c,0xb4,0x21,0x6d,0xe3,0x19,0xd2,0x0e,0x06,0x36,0x5e,0x9a,0x9f,0x6c,0x2f,0x1e,0x84,0x55,0x4c,0xfb, - 0x22,0x78,0x93,0x83,0x88,0x4b,0xe6,0x31,0xe2,0x4b,0x0d,0x5b,0xdd,0x78,0xf5,0xae,0xd3,0x67,0x3d,0x7f, - 0xfd,0x9d,0x7e,0xf5,0x2e,0xcc,0x73,0x84,0xa0,0x6c,0x6c,0x3d,0xef,0x69,0xf6,0x70,0x67,0x65,0xdc,0xb3, - 0x08,0x9d,0x4a,0x4c,0x51,0x59,0x12,0x4e,0xd2,0x71,0x03,0xfe,0xc4,0xc7,0xba,0x24,0x7f,0x2b,0xf6,0xaa, - 0x8f,0x58,0x44,0xbd,0xe5,0x43,0xce,0x7c,0xa0,0xcd,0x0e,0xe5,0x22,0x47,0xb1,0xd9,0x67,0x63,0xa6,0xce, - 0x78,0x4d,0x84,0x10,0xce,0xc3,0x05,0x21,0x0a,0x77,0x1b,0x17,0xd3,0xfe,0xb2,0x5e,0x1e,0x97,0x75,0x77, - 0x76,0xf6,0x0d,0x21,0xf3,0xee,0xf4,0xa4,0x83,0x8a,0x86,0xff,0x8e,0x8e,0x45,0xda,0x0d,0xfd,0x85,0xbd, - 0x02,0x1b,0x5c,0x4c,0xc6,0x01,0x9b,0x7a,0x4b,0xea,0xcc,0x0d,0xdc,0x07,0x30,0xab,0x47,0x82,0x17,0xb6, - 0xba,0xdb,0xb8,0xbc,0xa4,0xe1,0xd2,0x16,0x42,0x7a,0xe6,0xad,0x05,0x40,0x3c,0x6f,0xb8,0x14,0x87,0xce, - 0x40,0x59,0x81,0x4e,0xed,0x3f,0x66,0x3c,0x03,0x9a,0x1e,0xff,0xff,0xda,0x7b,0xf7,0xf5,0xb6,0x8d,0x64, - 0x5f,0xf4,0x55,0x28,0x8c,0xb7,0x0d,0x84,0x10,0x25,0xd9,0x4e,0x26,0x21,0x0d,0x73,0x1c,0x3b,0x17,0x27, - 0xf1,0x65,0xc5,0x4a,0x32,0x89,0xc4,0xf1,0x82,0x48,0x50,0x42,0x44,0x01,0x1c,0x00,0x94,0xec,0x88,0x7c, - 0xa0,0xf3,0xef,0x79,0x84,0xfd,0x64,0xa7,0x7e,0x55,0xdd,0x8d,0x6e,0x00,0x94,0xec,0x64,0xaf,0x75,0xf6, - 0xb7,0xbf,0x3d,0xf9,0xc6,0x22,0xfa,0x7e,0xa9,0xae,0xae,0xaa,0xae,0x4b,0xb3,0x67,0x86,0x51,0xa2,0x4e, - 0x6a,0x80,0x15,0xcf,0xc2,0x3f,0x43,0xae,0x86,0x63,0xcb,0xd5,0x83,0x6e,0x0d,0x5e,0x5d,0x68,0x43,0xd9, - 0xa9,0x72,0x3b,0xe1,0x7b,0x44,0x45,0x6f,0x42,0x44,0x76,0x59,0xa6,0xf0,0x49,0xa6,0xfd,0x8c,0x69,0x05, - 0x59,0xe3,0x41,0x8c,0xfd,0x44,0x60,0x4b,0x6b,0xcf,0x61,0xde,0x84,0x68,0x2d,0x33,0x8f,0x6f,0x13,0x3d, - 0xea,0x6f,0x93,0xce,0xfe,0xbf,0x45,0xff,0xb3,0x14,0xfd,0x5f,0x76,0x63,0x8e,0x0b,0x1a,0xc2,0x3c,0xa5, - 0x46,0x27,0xe1,0x69,0xdd,0xf0,0xbf,0x4d,0xc3,0xff,0xa6,0xbd,0x79,0x5f,0x67,0x7c,0x63,0x32,0xbe,0xa1, - 0x8c,0x93,0x34,0xda,0x3b,0x3a,0xbe,0x0a,0x06,0xfd,0xe3,0xdd,0xb7,0x77,0x8e,0x27,0x93,0xbd,0xf0,0x2d, - 0xe2,0x06,0xbc,0x25,0x1e,0xe3,0x8a,0x7f,0x4c,0xbd,0xf0,0x69,0x5d,0x9b,0x2e,0x2f,0x55,0x7b,0x49,0x9b, - 0x78,0x58,0x67,0x9c,0x99,0x8c,0x33,0xca,0x38,0x4f,0x3b,0xad,0x79,0x39,0x60,0xdd,0xde,0xd0,0x1f,0xf4, - 0x83,0xbd,0x3a,0x1c,0x83,0x18,0x5b,0xee,0x8d,0xfc,0xf1,0xce,0xd1,0xbf,0xfc,0xc9,0x27,0xc7,0x41,0xb0, - 0x77,0xda,0xa1,0x94,0x26,0xf6,0x9a,0x49,0xed,0xc6,0x55,0x2a,0x42,0x99,0xc0,0xbc,0x88,0xe2,0x31,0xe2, - 0x08,0xb1,0x5b,0x55,0x30,0x9f,0x49,0x54,0xd4,0x81,0x7f,0x18,0x88,0x2a,0x78,0xa6,0xa3,0x59,0xff,0x6b, - 0x77,0x77,0x2f,0x7c,0x43,0x3f,0x8e,0xcb,0x4f,0x76,0xd2,0x0b,0xd8,0x4f,0xc7,0x59,0x75,0x67,0x2f,0x7c, - 0x92,0x76,0x69,0x3d,0xbc,0x53,0xa1,0xeb,0x09,0x50,0x12,0x89,0x39,0x08,0x18,0x35,0xfc,0x56,0x65,0x5b, - 0x6b,0xbc,0x51,0x65,0xb3,0xad,0x65,0x8d,0xf7,0xbc,0x37,0x29,0x47,0x2a,0xf2,0xcc,0x00,0x3c,0x27,0xa8, - 0xc0,0xab,0xd4,0x17,0xef,0xf4,0xee,0x63,0x79,0xe6,0xe8,0xe0,0x74,0xbd,0xf0,0xaa,0x7e,0xc1,0x61,0xb3, - 0x36,0x94,0x04,0x91,0xb2,0x12,0x09,0x9e,0xee,0x00,0x76,0x25,0x54,0x22,0x81,0xe7,0x8b,0xfc,0x0f,0xe0, - 0xe7,0x12,0x2e,0xf4,0x9a,0xbb,0x47,0x03,0xf8,0xae,0x88,0xbe,0x2b,0x6e,0xf1,0xdf,0x28,0xcd,0x1b,0x5f, - 0x7c,0x3b,0x6c,0x7f,0x8d,0x00,0x12,0xf0,0x50,0xca,0x12,0xf6,0xef,0x74,0x5c,0xbe,0x5e,0x62,0x3d,0x96, - 0x7d,0x88,0x6f,0x42,0xe5,0xf1,0xe2,0x4e,0xda,0xe1,0x56,0xf3,0x4e,0x7a,0x94,0x4d,0xfa,0xac,0x16,0x5c, - 0xb8,0xbd,0x14,0xd8,0xf1,0xaf,0x6a,0x28,0x3d,0x35,0x50,0x7a,0x4a,0x50,0xfa,0xba,0x39,0x4f,0x65,0x11, - 0x9e,0x70,0x28,0x4c,0x30,0xab,0x43,0x62,0xd7,0x77,0xf9,0xd3,0x0b,0xf9,0x8f,0x8a,0xfc,0x5c,0xa7,0xef, - 0x56,0xb9,0xca,0xb2,0x62,0x40,0x5b,0xd9,0x22,0x71,0xf5,0xc2,0x3a,0x8c,0x34,0x67,0xf2,0xa7,0x4a,0xb5, - 0xdb,0xe4,0x04,0x6e,0xb3,0x19,0x57,0xda,0xca,0x56,0x6d,0x62,0x6e,0xcf,0x52,0xf6,0x28,0x86,0x88,0xd0, - 0xbf,0xa7,0x2a,0xce,0x25,0x7b,0x8e,0xf5,0xc2,0xe7,0xf4,0x2d,0x04,0x16,0x7f,0xfe,0xd0,0xc8,0xfe,0xda, - 0xf9,0xa6,0x9b,0xc4,0x0b,0x5f,0xba,0x35,0x5e,0xd8,0x9f,0x28,0x30,0x7a,0x86,0x07,0x00,0xe3,0xad,0x41, - 0xb9,0x31,0x03,0x8f,0x6a,0x35,0x63,0x91,0x07,0xa6,0xc0,0x15,0x03,0x59,0xa3,0x98,0x8f,0x11,0x59,0x91, - 0x3a,0xad,0x71,0x5d,0x35,0x52,0xbf,0xca,0xf0,0x42,0xd9,0xee,0xd8,0x1e,0xdd,0xf6,0x7e,0xdd,0x52,0xfe, - 0x4b,0xd3,0xed,0x13,0x77,0xae,0x57,0x6e,0x22,0x77,0x2a,0x32,0x9a,0x1f,0xb1,0xca,0x63,0xd5,0x2c,0xd8, - 0x54,0x3a,0xdd,0xa6,0xdc,0xd7,0x20,0x6e,0x6f,0xcc,0x1c,0x40,0x5e,0xe4,0x4b,0x09,0x18,0x8e,0x68,0xa7, - 0x08,0x9d,0x17,0x2a,0xde,0xcd,0xbf,0x04,0x5a,0x3a,0xf1,0x4d,0xf4,0x8e,0x35,0xf1,0x28,0x81,0x1f,0xae, - 0xef,0x04,0x7b,0xe1,0xcf,0x16,0x7a,0x6a,0x05,0x78,0x10,0x2a,0xef,0x9d,0x75,0xd7,0x83,0xb6,0xab,0x58, - 0x22,0xf6,0xce,0xa1,0x2e,0xa0,0xe2,0x6a,0x45,0xd0,0xe0,0x58,0x70,0xa9,0x98,0xd8,0x49,0x48,0x1b,0xc7, - 0x23,0x55,0x1c,0xda,0x46,0x62,0x5c,0x52,0x2b,0x5b,0xca,0xfd,0xca,0xa2,0x75,0x44,0x84,0x56,0x46,0x4e, - 0x9d,0x51,0x80,0x03,0xf8,0x12,0x32,0x4f,0x25,0xaa,0x4a,0x14,0x0f,0xa0,0xaf,0x45,0x79,0xf2,0x01,0x39, - 0x30,0x0a,0xe2,0xda,0x3d,0xe0,0x8e,0xc2,0xee,0xc6,0x4c,0x0c,0x0f,0x8c,0x88,0xf0,0x83,0x0f,0xa7,0x1c, - 0x6d,0x8b,0x44,0x5b,0x87,0x27,0x19,0xc5,0x1d,0xa6,0x38,0x12,0xe5,0xba,0x23,0x47,0xbf,0x9a,0x57,0x7e, - 0x4e,0xd9,0x98,0x26,0x8f,0x32,0x8f,0xec,0x90,0xb1,0x4a,0x6f,0x49,0x62,0xb1,0x1c,0x0e,0x34,0x09,0xa0, - 0xd1,0x54,0xbf,0x9f,0x07,0x75,0x2a,0xa2,0xb0,0x10,0xd3,0x1a,0x23,0x2c,0x33,0xcb,0xf9,0x63,0xad,0x21, - 0x34,0x85,0x86,0x0a,0x1e,0x8f,0x69,0xcc,0x1b,0xb3,0xc6,0xe1,0x8e,0x84,0x4e,0x90,0x2f,0xbd,0xb8,0xb2, - 0xe4,0xe1,0xdc,0xf2,0xae,0x1d,0x9e,0x89,0x63,0x62,0xda,0xeb,0xb3,0x60,0xec,0x73,0x4b,0x90,0xbe,0x97, - 0xe3,0x77,0x2d,0xb2,0x19,0xc9,0xe1,0x59,0x30,0x6c,0xe4,0xf8,0x67,0x90,0x8e,0x2f,0x21,0x8b,0x5d,0x51, - 0x97,0x73,0x2c,0x6a,0xc5,0x8b,0x3a,0x93,0x15,0x9e,0xc2,0xd3,0x0b,0x0f,0x91,0x86,0x32,0xcc,0x7c,0xcb, - 0x27,0xb4,0xe9,0xf2,0x5d,0x93,0x44,0x16,0x7f,0xce,0x8d,0xba,0x8d,0xc2,0x35,0x31,0xde,0x55,0xda,0xf2, - 0x28,0x5c,0x8a,0xea,0x5e,0xa5,0x8d,0xa5,0x54,0x68,0x7a,0x81,0x52,0x11,0xfa,0x62,0x55,0xf5,0x93,0x4a, - 0xd8,0x59,0xac,0x33,0x35,0xd2,0x66,0x12,0xb2,0x6e,0x6d,0x50,0x80,0x72,0xd0,0x9c,0x7d,0x49,0xcd,0x44, - 0x4b,0x6e,0xc9,0xce,0x9c,0x98,0x88,0x0c,0x42,0x63,0x42,0x62,0xc7,0x2a,0x51,0x7a,0xaf,0xd7,0x5a,0xd9, - 0x8f,0xc3,0xca,0x5b,0x47,0x53,0xa4,0xcc,0xef,0x5c,0x1e,0x41,0xea,0xd0,0xde,0xd8,0xe4,0x7d,0xc2,0x01, - 0x59,0x4d,0xcb,0x2b,0x8b,0x2e,0x69,0xc5,0xd8,0x6b,0xc6,0xae,0x30,0x70,0x98,0x06,0xb1,0xcf,0x1a,0xc7, - 0x99,0x5a,0x5b,0x7e,0x72,0x82,0xbe,0x21,0x13,0x07,0x85,0x5e,0x7d,0x0c,0xc9,0xe9,0x9c,0x0b,0xb7,0xf6, - 0x4a,0xb9,0xb1,0x49,0xb4,0xc3,0x6e,0xcb,0x25,0xb6,0xf6,0x91,0x31,0xea,0x32,0x7c,0x0b,0x3a,0xcd,0x03, - 0xd5,0x51,0xab,0x4d,0x6e,0x25,0xfe,0x95,0xe5,0xf4,0x5a,0xb6,0xde,0xb5,0x60,0x3b,0x54,0x83,0xaa,0x27, - 0x59,0x04,0x3a,0x8d,0xa8,0x1c,0x1c,0x35,0x46,0x7f,0x57,0xda,0xc0,0x57,0x61,0x1a,0xda,0x8b,0x2b,0x55, - 0x8c,0xbe,0xf4,0x4f,0x29,0x1e,0x22,0x2f,0xd5,0x10,0xd5,0xb5,0xb1,0x4b,0x83,0x69,0x05,0x85,0x41,0x1b, - 0xdc,0xb8,0x13,0x0c,0x82,0x77,0x2e,0xf3,0xa2,0xd6,0x1a,0x64,0x9e,0x2c,0x74,0x3d,0x85,0x04,0xd1,0x84, - 0x50,0xbf,0xb6,0xb0,0x04,0x7e,0x61,0x2b,0x25,0xf3,0x4c,0x51,0xaa,0x76,0xb1,0x2d,0xdb,0x1a,0x0e,0xeb, - 0xc8,0x43,0x40,0xf6,0xd1,0x15,0x02,0x7c,0x66,0xec,0xd0,0x5c,0x35,0xac,0x3f,0x8d,0x8b,0xc4,0x3f,0xd7, - 0x91,0xe5,0xdc,0xdb,0xf6,0xef,0xa8,0xb6,0xbb,0x78,0x14,0xa5,0xbc,0x07,0xb1,0xcf,0xd1,0x72,0xf2,0xd0, - 0x0d,0x62,0x74,0x69,0x16,0x0e,0xd5,0x9c,0x9b,0x23,0x15,0xc0,0xc5,0x98,0xd2,0xfa,0x3e,0xc0,0x00,0x15, - 0x53,0x84,0x09,0xd5,0x8e,0xcf,0x0e,0x75,0x72,0xbd,0xf3,0x59,0x60,0x12,0x39,0x52,0x70,0x50,0x6f,0x4e, - 0x1d,0x20,0x5e,0x85,0xf8,0x61,0xff,0xff,0x4d,0xdb,0x47,0x0c,0x1c,0xef,0xd0,0xb6,0xe9,0x63,0x3d,0xf6, - 0x0b,0xf7,0x46,0xa9,0xe7,0x6a,0x6c,0x0e,0x8a,0xc9,0xa8,0x12,0xcf,0x5d,0xf4,0x87,0xa1,0x77,0xec,0x9f, - 0xe2,0x89,0xee,0x12,0xf7,0xe2,0x10,0xd1,0x8e,0xa0,0x1b,0x64,0xe3,0xb3,0x53,0xa3,0x8a,0x8c,0x2b,0x7a, - 0xbd,0xd6,0x88,0x2d,0x30,0xe1,0x8a,0xa2,0x43,0x75,0x6b,0x9b,0x50,0xb4,0x23,0xb5,0x4e,0xc1,0xd8,0xb2, - 0xa2,0xed,0x47,0xe9,0x30,0xbb,0x49,0x31,0x98,0xc8,0xa6,0xdd,0x5d,0xab,0x02,0x9e,0xc9,0x12,0xe3,0x2c, - 0xc5,0xca,0x88,0x68,0x53,0x37,0xbe,0xbe,0x89,0xe8,0x30,0x14,0x5d,0xc7,0x95,0x77,0x07,0x40,0xa7,0x14, - 0x21,0xf8,0x53,0xdf,0x90,0xa7,0x88,0x9d,0x11,0x84,0xfa,0x88,0x3a,0xe3,0x57,0x47,0x54,0xd2,0x70,0x44, - 0x39,0x26,0x99,0xf4,0x62,0x9f,0xd0,0x4a,0x85,0xed,0x45,0xb1,0x40,0x87,0xab,0x82,0xda,0x37,0x1f,0xa1, - 0x5c,0x06,0x68,0x6d,0x0f,0xd4,0x9c,0x41,0xbe,0x94,0x12,0x9d,0x8b,0x60,0x3d,0xd5,0x51,0x39,0x53,0xc6, - 0xe9,0x05,0xfe,0x65,0x9d,0x17,0xc4,0x7d,0x6d,0x79,0xbf,0x0c,0xe8,0x1c,0xa6,0x8e,0xff,0x4c,0xed,0xe3, - 0x6a,0x16,0x8c,0xdf,0xfa,0x85,0xac,0x07,0x22,0x13,0xa7,0x9d,0xbe,0x33,0xf7,0x0d,0xf3,0x47,0x54,0x99, - 0xf1,0xef,0xc9,0x40,0x5b,0xd8,0x9f,0x29,0xbb,0x18,0x8d,0x24,0x6c,0x18,0x2e,0x2c,0x2e,0x2d,0x5e,0x3d, - 0x09,0x00,0xe4,0xf3,0x15,0x93,0x37,0x41,0xda,0xa1,0xeb,0x52,0x74,0x60,0xd4,0x3a,0xd8,0x71,0xb8,0xa2, - 0xd9,0xf2,0xa1,0xaa,0xfc,0x15,0xaf,0xe2,0x22,0x5a,0xd5,0x4b,0xba,0x88,0x16,0xc6,0x59,0x00,0x25,0x2c, - 0xb0,0x66,0x42,0xe0,0xce,0xa2,0xa2,0x26,0x25,0x96,0x96,0x2d,0xa9,0x1c,0x22,0xb4,0x35,0xc7,0x19,0x65, - 0xd8,0x5f,0xd0,0xc6,0x2e,0x68,0x63,0x85,0x93,0xaa,0x37,0x76,0x11,0xe8,0xb4,0xa3,0xc5,0x44,0xda,0xee, - 0x18,0x80,0x94,0x30,0xdd,0x6f,0x12,0x3f,0x95,0x2b,0x64,0x5c,0xf9,0x33,0x2e,0xb5,0x0c,0xc6,0x33,0xda, - 0xc0,0xa5,0x45,0xcd,0x69,0x3f,0xb2,0x65,0x7d,0x03,0x4c,0x43,0x9a,0x2e,0xd1,0x40,0xfb,0xe1,0x8c,0xfe, - 0xbf,0x8c,0x6a,0x57,0x2d,0xe1,0x65,0x04,0x09,0x40,0x78,0x4a,0x7f,0x96,0x93,0xf0,0xc4,0xa8,0x6e,0x53, - 0xd6,0xdb,0x28,0x45,0xd6,0x15,0xfd,0x39,0x99,0x84,0x4f,0xa3,0x9d,0x72,0x34,0x7f,0x84,0xae,0x66,0x8f, - 0xa2,0x13,0xba,0x9b,0xfc,0xcb,0x60,0x8c,0xea,0xfd,0xfe,0x7c,0x32,0x4c,0x7c,0x3a,0xc3,0x68,0x65,0x77, - 0x77,0x39,0x19,0xfe,0x42,0x99,0xe1,0x5b,0x3a,0xd4,0xef,0xf1,0x17,0xc4,0x99,0x2e,0xc8,0xad,0xf6,0xfb, - 0xb3,0x49,0x80,0x42,0xa7,0xe1,0x15,0x17,0xa2,0xbf,0x28,0xa4,0xeb,0x73,0x9f,0xbb,0xbb,0x27,0x52,0xe8, - 0x52,0x15,0xba,0x94,0x42,0x4f,0x5b,0x74,0x40,0x16,0x5e,0xaa,0x7b,0xd7,0x12,0xc5,0xf9,0xa7,0x82,0x42, - 0xea,0x9e,0x9d,0x46,0x4f,0xd5,0xf0,0x4e,0x65,0x78,0x5d,0x8d,0x72,0x03,0xd2,0xb4,0x35,0xb4,0x7a,0xfc, - 0x7e,0x22,0xce,0x2e,0xa6,0xd1,0x4f,0x09,0xed,0xcf,0x3c,0x5c,0xc2,0x54,0xde,0x07,0x41,0xff,0x96,0x63, - 0x98,0x8e,0xa7,0x47,0xfc,0x63,0xd2,0xe1,0xfc,0xa3,0x8e,0x4b,0x38,0x27,0x5a,0x38,0xe5,0x28,0x84,0x06, - 0x3d,0xe6,0x13,0xcd,0x23,0xdc,0xbd,0xfb,0x0b,0xe8,0x9c,0xd8,0x50,0xf0,0x39,0xd1,0xb8,0x6f,0xa9,0x89, - 0x7d,0xf4,0x36,0x8e,0xe9,0x77,0x1e,0xaa,0xf9,0xf3,0xbc,0x56,0x34,0xce,0xc5,0x44,0x4d,0x6e,0x25,0x93, - 0x43,0x8a,0xf6,0x68,0xdb,0x35,0xd1,0x95,0x35,0xd1,0x60,0xe8,0xb6,0x59,0xcf,0x77,0x34,0x7f,0xbc,0x84, - 0x12,0x3d,0x4d,0x91,0x00,0xa2,0x7f,0x30,0x09,0x24,0x3a,0xa3,0x7c,0xa8,0x43,0x3f,0x0b,0x4f,0x70,0xf0, - 0x67,0x8f,0x4f,0xee,0xde,0xbd,0xf0,0xf7,0x43,0x59,0x96,0x8d,0x3f,0xe5,0x70,0xd9,0x00,0xca,0x21,0x03, - 0x2d,0x28,0xbc,0x9a,0x84,0x72,0xc5,0xa1,0x54,0x18,0xf7,0xf4,0x19,0xfd,0x65,0xb2,0x6b,0x89,0xc9,0xd6, - 0x60,0x09,0xa2,0x18,0xe0,0x3f,0x46,0xfb,0x33,0xca,0x9b,0xd5,0x61,0x10,0x87,0xb7,0x36,0x3b,0x94,0xfc, - 0x1d,0x8e,0x5a,0xc3,0x77,0x7b,0x47,0x39,0x75,0xca,0xc2,0xed,0x98,0x21,0x2f,0x2b,0x17,0x35,0x6c,0xac, - 0xab,0xea,0x44,0xb8,0x10,0x46,0xaf,0x60,0x3c,0x51,0xcb,0x04,0xa3,0x0e,0xf4,0xaf,0x2e,0xca,0xba,0x70, - 0xc9,0x1e,0x61,0x94,0x0a,0x9b,0x3f,0x2a,0x08,0x38,0x6a,0xec,0xaf,0x76,0xd2,0x2f,0xd8,0x9f,0xaa,0x19, - 0xc0,0xdb,0x06,0xe3,0x19,0x4e,0x11,0xb3,0x29,0x3e,0x0d,0x17,0xca,0xdd,0x07,0xe1,0x82,0xc2,0x8d,0x36, - 0x14,0xe5,0xeb,0x35,0xa2,0xbb,0x03,0xe9,0x85,0x85,0x90,0xf6,0xa1,0x20,0x64,0xcd,0xb7,0xc8,0xc5,0x65, - 0xe3,0x7d,0x03,0x95,0x5d,0xd7,0x04,0xd4,0xab,0x09,0xd7,0x33,0x20,0x2f,0xd4,0x55,0x4f,0x4b,0xd7,0xcd, - 0xc0,0x16,0x62,0x49,0x48,0x89,0x1d,0x58,0x3b,0xb0,0xf8,0x57,0xac,0xab,0x69,0x76,0x1a,0x28,0x82,0x60, - 0x1e,0x04,0xcc,0x89,0x9f,0xc5,0x25,0x13,0xe2,0xa0,0xba,0x4b,0x9f,0x13,0xb9,0x57,0xd3,0xa1,0x8e,0x1b, - 0x67,0x8d,0x40,0x45,0x45,0x91,0xa6,0x62,0xa6,0xfc,0xea,0x44,0x13,0x84,0x83,0x2f,0x0e,0xbd,0x2f,0x4b, - 0xcc,0x0d,0x5c,0xe4,0x3c,0x2d,0xca,0x8a,0x7b,0x24,0x34,0xb3,0x3f,0xba,0x7c,0x34,0xd7,0x7b,0x75,0xa9, - 0x1d,0xdc,0x9d,0xad,0xd7,0x3b,0x6f,0x89,0x5f,0x9c,0x1f,0x5d,0x4e,0x14,0x67,0xba,0x84,0x49,0xb9,0xb0, - 0xb2,0x67,0xd1,0x99,0xf3,0x7e,0x80,0x1a,0xcb,0xf5,0xfa,0xcc,0xed,0x98,0xb8,0x18,0x1c,0xa4,0x34,0xd0, - 0xab,0x29,0xfb,0x7a,0x61,0xbb,0x5a,0x39,0x85,0x34,0x6f,0x81,0x19,0xef,0xbc,0x21,0x5c,0x1c,0x5c,0x5f, - 0x60,0x90,0x33,0xb9,0x5b,0xa4,0xb3,0x9d,0x0b,0x6c,0x30,0x6b,0x96,0xc0,0x4d,0x9c,0xfa,0xa9,0x9d,0x4d, - 0x0a,0x51,0xb1,0xc3,0xe1,0xbd,0xf8,0x60,0x28,0x02,0x4b,0x7d,0xeb,0x67,0xaf,0x1d,0x09,0x16,0x73,0x15, - 0x3e,0x0d,0x0f,0x21,0xa4,0x3e,0x47,0xa4,0xf9,0x7c,0xb6,0x5a,0x24,0x65,0xf8,0x8e,0x7e,0x83,0xc6,0x79, - 0xa5,0xb4,0xbf,0xae,0x68,0x4d,0xae,0x1e,0x2d,0xd3,0x1a,0x80,0xaf,0x98,0xac,0x3c,0x3c,0x5a,0xa6,0x47, - 0x57,0x13,0x58,0x7b,0xd1,0xbd,0xb2,0x3f,0x7a,0xfa,0xe8,0xbc,0x2e,0xf2,0x94,0xc8,0x8b,0xf3,0xa3,0xa7, - 0x13,0x55,0x86,0x76,0x4a,0x17,0x17,0xfe,0xc2,0xce,0xe3,0x0b,0xf9,0x0d,0xeb,0x8d,0xe0,0x5d,0x4d,0xb4, - 0x66,0x54,0x28,0xb1,0xa7,0xd6,0xef,0x37,0x2c,0x6c,0x25,0x54,0xdc,0xe1,0xa4,0x50,0xdd,0x96,0x21,0x5d, - 0x92,0xca,0x27,0x13,0xdf,0xde,0xe2,0x25,0x06,0x61,0x44,0x60,0x9c,0x0d,0xe8,0x82,0x39,0xe7,0x8a,0xfd, - 0x87,0xf8,0x40,0x74,0x28,0x5f,0xd3,0x13,0xcb,0x08,0x87,0x03,0x93,0x3f,0x64,0xdf,0x4f,0xbc,0x91,0x8c, - 0xbd,0xb1,0x01,0x81,0xd0,0x5c,0xb3,0x50,0x05,0x45,0x47,0x3f,0x4b,0xee,0x4d,0xe2,0xa9,0xe9,0x7a,0x50, - 0x72,0x27,0x18,0xae,0xf9,0x89,0x27,0xac,0x9f,0xa5,0xa9,0x3b,0x27,0x1d,0x16,0xdc,0xf0,0xf1,0xe9,0xe7, - 0x54,0xe4,0xad,0xb4,0x6f,0x0e,0xca,0x09,0x0f,0x11,0xf9,0xc5,0xe8,0x55,0x04,0x65,0x7e,0xf5,0x1c,0xf3, - 0x4e,0x3f,0x42,0xf9,0xaf,0x1a,0x51,0x68,0xe4,0x99,0x46,0x49,0x0e,0xc3,0x57,0x62,0xff,0x76,0x26,0xc4, - 0x20,0x5d,0x7f,0x8e,0xa0,0xec,0x8c,0x27,0x28,0xeb,0x70,0x36,0x78,0x2b,0x02,0xdb,0x13,0xb9,0x0f,0x4e, - 0x1b,0xf7,0xf0,0x19,0x54,0x7f,0x89,0x70,0xd1,0xf8,0x4f,0x03,0xec,0x55,0xa4,0xd3,0x08,0x06,0x40,0x31, - 0x8d,0xae,0x46,0xf5,0xbd,0x78,0x4e,0x60,0x71,0xde,0xc5,0xbb,0x9c,0x5b,0xbc,0xcb,0xf9,0xc4,0xbf,0xe2, - 0x91,0x5c,0x89,0xe3,0x7b,0x1e,0xea,0xd3,0xba,0x91,0x37,0xd4,0xc8,0x9b,0x0e,0xce,0xf7,0x4d,0xcd,0xf9, - 0xbe,0x61,0xce,0xf7,0x4a,0x20,0xe9,0x49,0x74,0xd5,0xc2,0xad,0xfc,0xa2,0x30,0x60,0x1d,0xe1,0xda,0xe4, - 0xe1,0x4e,0x74,0x30,0xba,0xf3,0xe8,0x09,0xb1,0x88,0xc6,0x5e,0xe5,0x0e,0xdc,0x3f,0x23,0xe1,0xe8,0xce, - 0x44,0xd3,0xde,0x3f,0x27,0x18,0xdf,0x15,0xb5,0xaa,0x42,0xdd,0xc2,0xb7,0x2b,0xdf,0x5b,0x60,0xf9,0xf6, - 0xc3,0x7d,0x75,0x61,0x11,0xff,0x03,0x97,0xc0,0x45,0x6d,0x2d,0x26,0xfb,0xb7,0x0a,0x42,0x9e,0x13,0x6f, - 0xc5,0x2b,0x90,0xfe,0xa6,0x9c,0x7f,0xad,0x0e,0xda,0x70,0x95,0x86,0xea,0xfc,0x0d,0x8f,0x4e,0xd3,0xf0, - 0x7d,0x1a,0x3e,0x4d,0xc3,0xc3,0x34,0xfc,0x2a,0x0d,0x7f,0xcf,0xc6,0x5a,0x9a,0xff,0xac,0x0a,0xb5,0x60, - 0x0d,0xbf,0x05,0x9e,0x1a,0xcf,0x7f,0x3b,0x12,0xd7,0x4b,0xac,0x2c,0xce,0xf2,0xab,0xf1,0xab,0x4a,0xa2, - 0x9b,0xc1,0x6d,0xe6,0x66,0x78,0xbd,0x99,0x68,0xc7,0xca,0x17,0x29,0xbc,0x98,0xbf,0xc8,0x88,0x16,0xd4, - 0x8f,0x1c,0xed,0xf0,0x22,0xf2,0x3e,0x4e,0xad,0x4f,0xcf,0xe2,0xec,0x34,0xf1,0x6c,0xf3,0x54,0xd1,0xc4, - 0xaf,0x2b,0xb3,0x94,0x5e,0x09,0xd7,0x46,0xac,0xea,0x7b,0xa9,0xa2,0x22,0xfe,0x88,0x31,0x28,0x7d,0x33, - 0xed,0x3a,0xfd,0x97,0x14,0x4e,0xd5,0xb0,0x3b,0xc9,0xac,0xf1,0x20,0x0a,0x21,0x92,0x7e,0x99,0x37,0x61, - 0x1d,0x85,0x27,0xb9,0x7b,0x77,0x87,0xff,0x12,0x23,0xa6,0xd4,0x2c,0xc7,0xdf,0xc1,0xd1,0x91,0xb9,0xcc, - 0x9d,0x11,0xfe,0x62,0xb1,0x14,0x62,0xd4,0x35,0x53,0xa2,0xa4,0x4d,0x30,0xfc,0xbd,0x92,0xdf,0xb6,0xb7, - 0x27,0xd3,0x2a,0xe1,0x0b,0x04,0x5e,0xd3,0xf6,0x27,0x5a,0xe9,0xf3,0xeb,0x0a,0x32,0x30,0x4f,0x6b,0x8e, - 0x98,0xd1,0xd1,0xbd,0x9b,0xfa,0x12,0x3b,0x2e,0x08,0x94,0x27,0xaf,0x17,0x3a,0x72,0x6c,0x54,0xd5,0x51, - 0x64,0x43,0xeb,0x37,0xfb,0x75,0x64,0xd5,0xe2,0xf6,0xba,0xeb,0xe5,0x7e,0x41,0xc3,0xfa,0x32,0xdb,0x56, - 0x08,0x73,0x13,0xa9,0x2c,0xa1,0x48,0x78,0xe9,0x7f,0xc9,0xb3,0xb8,0xb1,0x24,0xbf,0x7c,0x50,0xb3,0x88, - 0xb8,0xc3,0x23,0x95,0x4d,0x02,0x1e,0xc2,0x9b,0x70,0x73,0xbd,0x5a,0x6f,0xd5,0x1c,0xb4,0xdd,0xdd,0x9b, - 0xe0,0xba,0xb5,0x96,0x23,0xfd,0x66,0x69,0x56,0x54,0xb4,0xa9,0x6f,0x5f,0xdf,0x51,0xda,0x8c,0x01,0x58, - 0xab,0x46,0xec,0x40,0xb5,0x9c,0x9d,0x58,0x6e,0x64,0x95,0xb5,0x7a,0xc5,0xb8,0x12,0xf3,0xe9,0xad,0xe1, - 0x03,0x7f,0xc0,0x00,0x01,0xf0,0x43,0x55,0x92,0x1f,0xc7,0x89,0xc6,0xf9,0x19,0x1f,0x77,0xef,0x52,0xbe, - 0xca,0x00,0xa6,0xd7,0x10,0xab,0x76,0x81,0x3d,0x35,0xfe,0x44,0xf0,0x2a,0x81,0x3d,0x7f,0x49,0x43,0x9c, - 0xac,0xa1,0xa8,0xc5,0x36,0xd7,0x47,0x59,0x1c,0xeb,0xc6,0x10,0x0b,0xf0,0x4b,0x7e,0x1a,0x55,0xaa,0x25, - 0xe2,0x42,0xc5,0x12,0xa8,0x73,0x80,0xfa,0xb7,0xb4,0x32,0x45,0x7a,0x0a,0x4f,0xb0,0xcf,0xd2,0x12,0xca, - 0x91,0x91,0x97,0xd1,0x3e,0x28,0x9d,0x3b,0x7e,0x53,0x9d,0x49,0x06,0xc2,0xc5,0x37,0x92,0xe0,0xfc,0x21, - 0x1d,0xfb,0x59,0x7d,0xec,0x71,0xc5,0xdd,0xa1,0x6e,0xed,0xd3,0xd0,0xa8,0x14,0xe5,0x9b,0x20,0x68,0xb6, - 0x14,0x15,0xe3,0x7c,0x28,0x3d,0x77,0xea,0x17,0xb4,0x66,0x38,0x2a,0x1a,0x2b,0xe9,0xdf,0x3a,0xe1,0xd6, - 0x40,0x8b,0xf1,0x6d,0x43,0xed,0x5a,0x20,0xda,0xcb,0x57,0xb7,0x54,0x53,0x13,0xe9,0x9c,0x66,0x57,0x93, - 0x6a,0xe6,0x50,0xad,0xc8,0x3a,0x36,0x57,0x31,0x04,0x7c,0x1a,0x6f,0x1f,0x1f,0x43,0xcd,0xb7,0x04,0x35, - 0x6c,0x18,0xa6,0xac,0xbb,0x20,0x68,0x8e,0x8b,0xe1,0x97,0x79,0x0e,0x67,0xb8,0xe1,0xb4,0x2c,0xcd,0x6f, - 0x00,0x97,0x2e,0x06,0x44,0xa2,0x7f,0x5b,0xaf,0xb3,0x2a,0xc5,0x7a,0x5b,0xb5,0xcb,0xe8,0x77,0x55,0xbb, - 0x54,0x23,0xad,0xf5,0x70,0x6b,0x97,0xed,0x48,0x97,0xe1,0x76,0x24,0x6d,0x2d,0xdb,0xe8,0x70,0xb6,0x2a, - 0xf8,0x5d,0x70,0x78,0x24,0x76,0x6d,0xa1,0x4a,0x17,0xc5,0x8e,0xc9,0x26,0xfc,0x43,0x2f,0x90,0xf3,0x58, - 0x2b,0xd6,0x72,0xdf,0xa6,0x8e,0x09,0x5d,0xd3,0x16,0xac,0x65,0x3c,0xde,0xb6,0x09,0x53,0x9e,0xb3,0x58, - 0xb0,0x2a,0xaf,0xf4,0xdd,0xc1,0xfd,0x18,0x85,0xff,0x0a,0x09,0x21,0x81,0xad,0x1d,0xb3,0x55,0x99,0x88, - 0x61,0x6f,0xa0,0x76,0xa0,0xe2,0xb7,0xda,0x6d,0x88,0xe0,0x3f,0xd2,0x1c,0xe1,0x28,0xa8,0xdd,0x57,0x5a, - 0x8f,0x66,0x86,0xee,0xb6,0x6d,0x47,0x6b,0x81,0x80,0xb2,0x1f,0xfb,0xb9,0x82,0x67,0x1e,0xf6,0x36,0x50, - 0x67,0x69,0x2f,0xab,0x4c,0xa1,0xd1,0xda,0xe9,0x9c,0x9f,0x80,0xa2,0x72,0x1d,0x01,0xd6,0x7b,0xfb,0xb6, - 0xee,0x6e,0xd7,0xeb,0x1b,0xb7,0x72,0x7d,0x6f,0xd7,0x1b,0xc5,0x2c,0x86,0x13,0x25,0x5b,0xfe,0x3d,0x8e, - 0xad,0x00,0xa7,0x65,0x1f,0x17,0x04,0x7e,0x7a,0xc3,0xb2,0xcf,0xb2,0xdc,0x61,0xe1,0xc7,0x22,0xff,0xc0, - 0x03,0xb4,0x7a,0xfb,0x90,0x14,0x63,0x50,0x54,0x06,0x63,0x4e,0xe1,0x3a,0xf8,0xcb,0xff,0x4a,0xd8,0x8c, - 0xc8,0x97,0x07,0x44,0xd8,0x57,0x0e,0x94,0xa3,0x19,0x5a,0xda,0x7a,0x88,0xd1,0x2f,0xda,0xb2,0x68,0xe1, - 0x18,0xbb,0xaf,0xb0,0x08,0x12,0x65,0x42,0x2a,0x5a,0x61,0xe7,0xf1,0x9c,0xda,0x48,0xda,0x86,0xf0,0x3d, - 0xe0,0x16,0x41,0x9e,0x80,0x2e,0xbe,0x2e,0x62,0x07,0xeb,0x04,0xe1,0xea,0xee,0xdd,0x95,0xc2,0x51,0xfe, - 0x59,0x14,0x87,0x17,0xd1,0x2a,0xbc,0xc0,0x14,0x08,0xa3,0x9d,0xe1,0xef,0x7a,0x7d,0x81,0xb5,0xe0,0x4f, - 0xa1,0xef,0x76,0x7e,0x65,0x69,0x82,0xbf,0xb3,0xea,0xf2,0xf9,0xda,0x95,0xaa,0x5d,0x7a,0xd6,0x2c,0xb8, - 0x00,0xd6,0x3c,0x5a,0x35,0x81,0x44,0x0c,0x46,0xa6,0x3c,0x77,0x2f,0x5f,0x55,0xbb,0x29,0x6b,0xee,0xa7, - 0xae,0xf3,0x06,0x05,0x05,0xc0,0x9b,0xdf,0xf9,0xf3,0xd0,0x8b,0xe7,0x04,0xd5,0x3f,0x88,0x7a,0x85,0x6d, - 0x2a,0x6a,0x95,0x44,0xbc,0x74,0xd7,0x8f,0xe5,0x26,0x08,0x35,0xf8,0xa0,0xb3,0x34,0xdb,0xcd,0xc5,0x14, - 0x40,0x04,0x1e,0xbf,0xfa,0xb5,0xb0,0x4a,0xdc,0x9a,0xcd,0xc2,0xa5,0x6d,0xb6,0x07,0xff,0xc0,0xa3,0xef, - 0x20,0x8d,0xe1,0xee,0xbf,0x12,0x8d,0x91,0x65,0x10,0x72,0x9a,0x60,0x2c,0xcc,0x1e,0x06,0x69,0x2a,0x7d, - 0x0e,0x8d,0x30,0x42,0x8b,0xcd,0xa1,0xd2,0x96,0xcd,0xa2,0x64,0x53,0x93,0xcd,0xb9,0x30,0x2d,0xe1,0x05, - 0xa1,0xcf,0xef,0x53,0x2c,0x0a,0xe0,0x51,0xe1,0x0d,0x7e,0xd0,0xb7,0x10,0x0c,0x30,0x6c,0x30,0x12,0x93, - 0xbe,0xde,0xf7,0xcc,0xc5,0x8a,0x3f,0xf7,0x7f,0x13,0x5e,0xa9,0x15,0x2a,0x86,0x7f,0x10,0x39,0x6d,0xbe, - 0xbe,0x81,0x72,0xf0,0xf0,0x5a,0x90,0xcc,0xf7,0x69,0x17,0x62,0x69,0x58,0xb6,0x33,0x7e,0xb0,0x8d,0x44, - 0x64,0xeb,0x24,0x50,0xee,0x32,0xce,0x10,0x04,0xb7,0xdb,0x1d,0x12,0x57,0x5a,0x16,0xc9,0xa5,0x71,0x5c, - 0x28,0x46,0xa2,0x5a,0xf8,0x9c,0x76,0xa1,0x2d,0xf6,0xa8,0x9a,0xbb,0x25,0xc1,0x67,0xc7,0xf5,0xa9,0x29, - 0x89,0x2d,0x2a,0x1f,0x19,0xae,0xbc,0xd4,0xa2,0xc7,0x69,0x94,0x1e,0x95,0x93,0xd1,0x54,0xe2,0x47,0x63, - 0x14,0x3b,0xd1,0x54,0x84,0xef,0xe0,0x0c,0xd4,0x49,0x9e,0xba,0x27,0x99,0x90,0xc7,0x25,0x5e,0x44,0x3c, - 0xc0,0x76,0x6e,0xac,0x45,0xb3,0x23,0x2e,0x37,0x89,0xa6,0x21,0xd5,0x50,0xc7,0x79,0xda,0x7d,0x9c,0xe3, - 0x00,0x72,0x0f,0xcb,0x9b,0xf8,0x02,0x03,0x5e,0xe1,0x9f,0x39,0x0d,0x75,0x5e,0x4b,0xc0,0xe6,0x7a,0xa8, - 0xb3,0xa8,0x38,0x9a,0x4f,0x46,0xb3,0xd6,0x39,0x88,0x43,0x95,0x46,0x34,0x6b,0x34,0x63,0x72,0xff,0x34, - 0xa9,0xbe,0xcc,0x57,0x2c,0x66,0x7b,0xba,0x48,0x09,0xc0,0x7e,0xa4,0xb5,0x86,0x1f,0xf6,0xa3,0x19,0x0f, - 0x71,0xbc,0x90,0x51,0xcf,0x82,0xe1,0x4a,0xff,0xda,0x28,0x0b,0xdc,0x65,0x15,0xb1,0x4e,0x25,0xe4,0x90, - 0xda,0x4a,0x5a,0x78,0xa7,0x59,0xb4,0x32,0x91,0x0a,0x74,0x89,0x9c,0x6e,0x7f,0xdb,0x3b,0x47,0xcb,0xfe, - 0xba,0xdb,0xd3,0x80,0xe9,0x0b,0x5a,0x1c,0x2c,0x07,0xb3,0x1c,0x75,0x98,0x4c,0x4d,0x53,0xcd,0xb6,0x58, - 0x34,0xdb,0x80,0x12,0x56,0xfa,0xee,0x51,0x20,0x6f,0xfc,0xf3,0xb3,0x81,0x97,0x77,0x89,0x88,0xcf,0xbb, - 0xac,0x6c,0x39,0xd2,0x7c,0xb1,0xb2,0x64,0x3a,0x8b,0xcb,0x17,0x94,0xee,0x27,0xca,0x40,0x3f,0xac,0x84, - 0x5c,0xd6,0x2a,0x86,0xdf,0x32,0x9b,0xa0,0xbf,0xfe,0x70,0xbe,0xbe,0xd7,0x0e,0xff,0xe1,0xbc,0x63,0x41, - 0xa8,0xd2,0x30,0x78,0xd0,0xcd,0x1f,0xe4,0xf3,0x79,0x99,0x54,0xdf,0x26,0xe9,0xe9,0x59,0x65,0xd5,0x6a, - 0x2a,0x2d,0xca,0xfe,0xf1,0x1a,0xd7,0x2e,0xc4,0x30,0x12,0xd8,0x56,0x32,0xed,0x34,0x7a,0x0a,0xe2,0x0d, - 0xce,0xcf,0x06,0x46,0xef,0x27,0x2a,0x06,0x96,0x82,0x94,0x4a,0xa9,0x01,0xe3,0x99,0x22,0x26,0x38,0xe8, - 0x74,0x9b,0xcb,0xf9,0x3a,0x85,0x27,0x50,0x5e,0xae,0x3a,0xe2,0x60,0x0f,0x22,0x9f,0x6b,0xa2,0x8f,0x77, - 0xf6,0x4c,0x37,0x77,0x54,0xe0,0x4e,0x89,0x1a,0xa4,0xe3,0x75,0x05,0xec,0x45,0x57,0x00,0xa3,0xd5,0x30, - 0xeb,0x3c,0xe8,0xb6,0x19,0x4e,0x0e,0x65,0xf8,0x6c,0xa6,0x0e,0xc6,0x49,0xb9,0x68,0x1b,0x5e,0xab,0xc5, - 0x6f,0xf0,0xe5,0xb8,0xd4,0x9f,0xa5,0x46,0x24,0x58,0xdf,0xea,0xaa,0xb8,0x8b,0xe4,0x55,0xe2,0x48,0xaf, - 0xdc,0x14,0x0f,0x66,0x2c,0xb5,0x09,0x68,0xaf,0xad,0x9b,0x9e,0x01,0x03,0x37,0x63,0x57,0x6a,0xe7,0xee, - 0x9c,0x54,0xa2,0x0b,0x15,0x84,0xef,0xd5,0x06,0x64,0x9d,0x54,0xb3,0x71,0x8a,0xe1,0x28,0x47,0x64,0x9a, - 0xb3,0x7b,0x27,0x8a,0xa8,0xb6,0x2d,0x1d,0x15,0x75,0x34,0xae,0x34,0x1c,0xa9,0xc9,0x44,0x2c,0x16,0x33, - 0x3b,0xbb,0x81,0x95,0xf8,0x6b,0x7e,0xb0,0x9f,0xa7,0xa7,0x03,0x2b,0x32,0x6e,0xf4,0x5b,0x11,0xd6,0x19, - 0x4e,0x4c,0xde,0xa8,0x4c,0x3b,0xb3,0x20,0x54,0x8b,0xbe,0xb1,0xab,0x35,0x62,0xf2,0x46,0x3f,0x26,0x4e, - 0x45,0x37,0x88,0x6f,0x2b,0x46,0xca,0xef,0x35,0xc5,0x86,0x9d,0x2a,0x61,0xca,0xe0,0xec,0x1d,0x08,0x3e, - 0x57,0xf2,0xa6,0x50,0x2d,0x54,0xf4,0xf5,0x5e,0xf2,0x87,0xb2,0x3e,0xbe,0xcd,0x12,0x81,0xad,0xa9,0x15, - 0x36,0xde,0xf5,0x60,0xaa,0x3d,0xe6,0xea,0xec,0xc0,0xbc,0xb6,0xf8,0x35,0xca,0x7e,0x90,0x6c,0xbb,0x93, - 0x80,0x2f,0xe4,0xad,0x45,0xb5,0x91,0x84,0xb4,0xb9,0xd7,0xae,0xad,0x8e,0x44,0x65,0x07,0x6c,0xda,0x84, - 0x97,0x30,0xac,0x34,0x2e,0x14,0x0d,0xd5,0x45,0xcc,0x70,0xe0,0xe6,0x59,0x46,0xec,0xff,0x4e,0xd9,0x6a, - 0xd2,0x72,0x5d,0xa2,0x11,0x26,0x94,0x0a,0x7f,0x4e,0x87,0xa7,0x6e,0xb6,0xb8,0xa2,0xeb,0x8e,0x94,0xd5, - 0x56,0x94,0x67,0xef,0x3d,0xb6,0x6f,0x70,0xb9,0xbc,0x99,0x27,0x6b,0xa4,0x45,0x59,0xc1,0xbe,0x5f,0x12, - 0x37,0x0c,0x76,0x6d,0xe2,0xae,0x3d,0x0c,0x3a,0x1c,0xa4,0xf2,0xe4,0x54,0x3b,0x1d,0xf1,0xc5,0x74,0xe3, - 0xd4,0xe8,0x0f,0x85,0x88,0xf0,0x1b,0x2a,0x8b,0xb5,0xda,0x29,0x4c,0xd2,0xf6,0xc0,0x9d,0xb8,0x1e,0xb8, - 0xb5,0x43,0x61,0xa8,0x41,0xd1,0x52,0x7c,0x09,0x55,0x2a,0xed,0xfc,0x1e,0xfa,0xfc,0xaf,0x6b,0x8f,0x04, - 0xbe,0x35,0xa6,0xaf,0xa0,0x14,0x22,0x61,0xb0,0xef,0xde,0xfd,0x2e,0xc3,0xff,0x07,0x70,0xa3,0x05,0xba, - 0x0d,0xaa,0xcc,0xaf,0x61,0x97,0xb1,0x2f,0x07,0xf3,0xbb,0x34,0xfc,0x06,0xca,0x94,0xd7,0xc7,0xd7,0xbe, - 0x3f,0x1e,0x0e,0xd6,0xc7,0x59,0xd0,0x1f,0x07,0xc7,0x9b,0xe3,0xcd,0xde,0x69,0xf8,0x4f,0x68,0xbf,0xef, - 0x0e,0x3e,0xe9,0x8f,0xff,0x75,0xe7,0x7a,0xe3,0x07,0xeb,0xa3,0xe3,0xc9,0xf1,0xde,0xf1,0xf1,0x84,0xf2, - 0x7e,0xeb,0x56,0x61,0xe7,0x2b,0x44,0x6b,0x6f,0xff,0x33,0x0d,0xbd,0xe3,0xe3,0x3b,0x77,0x3d,0x36,0x5f, - 0x86,0xa2,0x79,0x3b,0xc7,0x5e,0x5d,0xf1,0x97,0xe2,0x57,0x7d,0x4f,0x0d,0x46,0x46,0xe3,0xf5,0xb3,0xd0, - 0x3b,0x85,0x24,0x30,0xfc,0x15,0x66,0x7e,0x2c,0xde,0x87,0x4f,0xd3,0xe1,0x91,0x67,0xc9,0xfd,0xbd,0x49, - 0x68,0x50,0x76,0xc3,0xcc,0x83,0x9d,0x6b,0x0d,0xe0,0x05,0x42,0xa1,0xc8,0x54,0xe4,0x35,0x62,0x70,0x3b, - 0x12,0xc1,0x96,0xd5,0x54,0xf4,0xdd,0x9b,0x57,0x2f,0x29,0x01,0x80,0x8d,0x18,0x8e,0x99,0x76,0x63,0x1e, - 0x15,0x56,0x45,0x38,0xca,0x85,0x28,0x05,0x4a,0x31,0x48,0xf8,0x32,0x65,0x82,0x23,0x2a,0xb0,0xfd,0x49, - 0x06,0xf7,0xac,0x1d,0xdc,0xa7,0xe7,0x59,0xaa,0xfd,0x75,0x97,0x78,0x2c,0xeb,0x47,0xf6,0x7c,0x86,0x5e, - 0xdf,0x29,0xd1,0xf7,0x42,0x58,0x69,0x3a,0x7d,0xa9,0x5a,0x53,0x53,0xde,0xce,0x94,0x0a,0x15,0xd1,0xc5, - 0xff,0xd1,0xbd,0x6c,0xfc,0x44,0xf2,0xf1,0xcb,0xc6,0xe8,0xbf,0xb1,0x6c,0xdc,0x54,0x73,0xd9,0xce,0x53, - 0xac,0x9c,0xbb,0x74,0x52,0xd9,0x5a,0x3a,0x4e,0xf8,0xb3,0x4b,0xc7,0xdd,0x3a,0x4b,0xc7,0x29,0xd6,0xd2, - 0xf1,0xb7,0x5e,0x3a,0xbb,0x2f,0x53,0x0b,0xe5,0x7d,0xa9,0x50,0xe7,0xf6,0x61,0x75,0x20,0x8b,0x97,0xe4, - 0xfc,0xd8,0x04,0xcb,0x3f,0xb6,0x02,0x85,0x39,0x65,0xbe,0x50,0x56,0x8d,0x62,0xba,0xa7,0xac,0x31,0xc5, - 0xc2,0x30,0x2d,0x19,0x33,0xe3,0xe9,0x89,0xa6,0x62,0xd9,0x8b,0x3a,0xa6,0x8f,0x62,0x20,0x79,0x75,0x02, - 0xb7,0x43,0x55,0x2e,0x36,0xd3,0xca,0xc2,0x11,0xe6,0x9f,0x15,0x4c,0x3b,0xb5,0x98,0x73,0xc9,0x26,0x8e, - 0x30,0x0f,0x64,0x43,0x47,0x31,0x7d,0x2c,0x54,0x4b,0x38,0x5c,0x32,0xc2,0x4e,0x13,0x54,0x19,0x72,0x6d, - 0x6c,0xc8,0x16,0x93,0x9d,0x86,0x95,0xe8,0xd6,0xb5,0x6c,0x64,0x5b,0x54,0x65,0x88,0xaa,0x2d,0x29,0x5b, - 0x16,0xa9,0xca,0xc6,0x95,0x4d,0x2c,0x3b,0x2c,0x5c,0x31,0x56,0x6d,0xff,0x2a,0xfd,0xd0,0x62,0xb1,0x5d, - 0xad,0xb2,0xc1,0x84,0x09,0xab,0x36,0x9e,0xe4,0x65,0x6a,0x9a,0x63,0xca,0xb2,0x89,0x79,0xaa,0x5a,0x3c, - 0x31,0xa4,0xd0,0xa6,0x96,0xb5,0x15,0x68,0x63,0x89,0xd8,0x32,0x97,0x16,0x8a,0xd7,0x1a,0x6a,0x80,0x79, - 0xb4,0xf7,0xaf,0xe3,0xf2,0x13,0xff,0x88,0xfe,0xf5,0xee,0x3d,0x7a,0x7c,0xbc,0x17,0x4d,0xfa,0x01,0xe1, - 0x1a,0x24,0x46,0x01,0xfe,0x1d,0x0f,0x3d,0xca,0xf6,0x26,0x9f,0x10,0xda,0x59,0xdf,0xa3,0x9f,0xf7,0xe8, - 0xe7,0xbd,0xfe,0x5a,0xd5,0x89,0x1e,0x3d,0xfe,0x4f,0xaa,0x12,0x04,0xe3,0xbd,0x30,0xcd,0x23,0xef,0x28, - 0xde,0xfd,0xe3,0xc9,0xee,0x6f,0x6f,0x27,0x47,0xc7,0xc7,0x57,0xc7,0xc7,0xbb,0xc7,0xc7,0x83,0xc9,0x27, - 0x5e,0x98,0x53,0x16,0x70,0x98,0xd7,0x4f,0xf3,0x3e,0x61,0xba,0x61,0x30,0x96,0x9f,0x81,0x17,0xc6,0x79, - 0x64,0x21,0x3b,0xef,0x5f,0x8f,0xbc,0x7e,0x9e,0x13,0x87,0xa6,0x07,0x77,0xbc,0x37,0x0e,0x1e,0xef,0xd1, - 0xbe,0x34,0x8a,0x1d,0x1f,0xef,0xa1,0x64,0xdf,0x3b,0xfa,0xd7,0xe3,0xc9,0x27,0x8f,0x69,0x3e,0x0b,0x54, - 0x79,0xb4,0xf3,0xec,0xd5,0xd3,0xc3,0x5f,0x5f,0x7f,0xd5,0x43,0x7a,0xff,0xf1,0x5e,0x1a,0xae,0x24,0x1d, - 0x16,0x3c,0x73,0xf9,0x79,0x7c,0xb4,0x17,0x2e,0x73,0xbc,0x1d,0x7b,0xef,0x3c,0x83,0x85,0xf7,0xde,0xf9, - 0x03,0x9a,0xc8,0x69,0xe8,0x1e,0x79,0x2a,0xe8,0x81,0xb9,0xaf,0xd4,0xd3,0xcb,0x59,0x1e,0x5e,0xe6,0xc4, - 0x4a,0x87,0xa7,0x79,0xf8,0x3e,0x27,0x08,0x0a,0xdf,0xe6,0xe1,0x55,0x1e,0x3e,0xcd,0xc3,0xc3,0x3c,0x3c, - 0xcf,0xc3,0x77,0x79,0xf8,0x86,0x41,0x50,0xd9,0xef,0x2a,0xc3,0x68,0xfd,0xea,0xc1,0x97,0xe0,0x93,0x1c, - 0x2f,0xc7,0x77,0xe8,0x5f,0xef,0xee,0xa2,0x1a,0x79,0x43,0xef,0x11,0x1d,0xca,0xbb,0xa7,0xfc,0xf3,0x31, - 0x7e,0x02,0x3e,0xe9,0xe3,0x9e,0x77,0x8f,0x3e,0xe2,0x8b,0x25,0x32,0xee,0x22,0xe3,0x6f,0x07,0xfb,0xf8, - 0x7d,0x9c,0xf1,0xc7,0x17,0xfc,0xbb,0xf2,0x36,0xe1,0x2b,0x9a,0xdb,0x5d,0x5a,0x64,0x62,0x80,0x4f,0xab, - 0x35,0xaa,0xaf,0xa9,0x5a,0x30,0xa2,0x09,0x7d,0xd5,0x99,0xb5,0xa6,0x96,0xd6,0x7f,0xfb,0x82,0x4b,0xbc, - 0xe6,0x01,0x43,0xf3,0xc1,0x1d,0xe7,0xb3,0xbc,0x9b,0xb4,0x20,0x2c,0xf3,0x3a,0x17,0x1f,0x0a,0xc7,0x2c, - 0x67,0xa9,0xe0,0xb9,0x28,0xfc,0x1d,0xeb,0xfb,0x8f,0xf5,0xbf,0x2e,0x77,0xf3,0x6c,0xb8,0x17,0x3e,0xc7, - 0xe7,0xe5,0xee,0x1a,0x49,0xf4,0xf9,0x03,0x7d,0xfa,0x83,0x4f,0xe8,0x42,0x2d,0xfb,0x34,0x9a,0x34,0x5b, - 0xe7,0x73,0xfe,0x3d,0xf8,0x24,0xd8,0x0b,0xbf,0xa6,0xdc,0x90,0xe0,0x2a,0xa4,0xeb,0x76,0x42,0x50,0x46, - 0x25,0xec,0xcf,0x60,0x7c,0x67,0x2f,0x7c,0xc9,0x50,0xe1,0xaf,0x8f,0x83,0x3b,0x34,0xe8,0x17,0x39,0x9b, - 0x87,0x7d,0x42,0x1f,0xe1,0x8f,0xc8,0x19,0xa2,0x67,0x16,0x3d,0xef,0x85,0x5f,0x52,0xc2,0xf1,0xe0,0xe8, - 0x5f,0x83,0x49,0x9f,0x8a,0xfe,0x9c,0x77,0x1a,0xef,0xf8,0xdf,0xa5,0xd1,0x77,0xe9,0x2d,0x86,0x4a,0x41, - 0xad,0x0d,0x11,0x25,0xe1,0x77,0xa9,0x6d,0x9c,0x48,0x97,0xf0,0x2f,0xe8,0xf9,0xdd,0xc5,0x22,0x2b,0x87, - 0x2f,0xdf,0x1c,0xcf,0xfa,0x7b,0xe1,0x4f,0x48,0xe1,0xdf,0x34,0x8e,0x6f,0xf3,0xe8,0xe8,0xd7,0x94,0xee, - 0x9c,0xf0,0x9a,0x96,0xf7,0xf0,0x86,0xbb,0x45,0x64,0x49,0xda,0xab,0x84,0x3c,0x0d,0x69,0x16,0x86,0x1f, - 0xf7,0x5f,0xc4,0x4b,0x16,0xc9,0x1e,0x79,0x97,0xbb,0xfc,0x98,0xe2,0x4d,0x20,0x9d,0xc5,0x27,0x4f,0x1a, - 0x04,0xa1,0x37,0x59,0xaf,0x29,0x45,0xfd,0xd6,0xaa,0xa1,0xea,0xb6,0xe1,0x44,0x78,0xee,0x92,0x9b,0xeb, - 0x72,0x37,0x9d,0xcb,0x36,0xe7,0x51,0x3a,0xf6,0xa8,0x2d,0x3a,0x95,0x38,0x94,0x43,0x62,0x11,0xe3,0x48, - 0x68,0x72,0x5d,0x14,0xcf,0xb9,0xca,0x6e,0xd9,0x49,0x33,0x6d,0x4c,0xa3,0x5f,0x99,0x22,0xff,0x67,0xc5, - 0xbe,0xb2,0x58,0xdb,0x88,0x3b,0x0c,0xc5,0x75,0xc6,0x49,0xfe,0x8e,0xfa,0xfe,0x06,0xe9,0x50,0xda,0x07, - 0x0d,0x3b,0x25,0x04,0xad,0xc8,0xbd,0x41,0x3a,0x27,0x1c,0xe1,0xf5,0x0b,0xea,0x9f,0xa6,0x7f,0x4f,0x57, - 0xb9,0x47,0x87,0x3c,0xfc,0x0d,0x95,0xae,0x93,0x77,0xcb,0x21,0xca,0x09,0xfe,0x1e,0x4e,0xd5,0x79,0x5c, - 0xa8,0x7e,0x69,0x50,0x0b,0x0c,0x8a,0x56,0x57,0x06,0x54,0x71,0x82,0x1a,0x42,0x11,0xcf,0xd2,0x5c,0xfa, - 0x5f,0xa0,0xff,0xba,0x49,0xbb,0x57,0x2e,0xc5,0x5d,0x4a,0x1f,0x0b,0xd5,0xc7,0x4a,0xf5,0xa1,0x7d,0x16, - 0x55,0xfe,0xaa,0xd9,0x15,0x25,0xc8,0xa2,0xc3,0xf8,0xe1,0x1b,0x7c,0x3b,0xbd,0xa4,0xaa,0xc5,0x15,0xdc, - 0xe3,0x8f,0xa7,0x03,0x2c,0x1d,0x42,0xd1,0x81,0xd2,0x91,0x2f,0x5a,0x00,0x38,0xa1,0x06,0x67,0x37,0x09, - 0xff,0x20,0xcc,0x40,0xd5,0x88,0x63,0x00,0xd8,0x41,0x7e,0xaf,0x5f,0xb8,0xbf,0xcd,0xc3,0x9a,0x95,0x18, - 0xaa,0x47,0xb5,0xdb,0x9e,0xd1,0xec,0x37,0xd4,0x5c,0x60,0x8b,0xbd,0xfb,0x69,0xb0,0xe2,0xb7,0x57,0x71, - 0x6f,0x68,0x78,0x11,0x23,0x43,0xaf,0x94,0x32,0x57,0xa8,0x42,0xeb,0xd6,0xef,0x97,0x79,0xb0,0xd3,0xdd, - 0xf3,0x3d,0x56,0x11,0xb8,0xa3,0x3d,0x70,0xfc,0x1c,0x2f,0x7a,0x51,0xaf,0x11,0x59,0x5d,0x3d,0x29,0xc8, - 0x23,0xe6,0x1d,0x76,0x20,0xab,0x22,0x36,0x9a,0x07,0x4d,0xd3,0x78,0x5e,0x9b,0xc7,0x0f,0x74,0xa3,0x9b, - 0x00,0x6f,0xa0,0xbe,0x5d,0x06,0xbd,0x5e,0x72,0x5f,0xde,0x5b,0x71,0xf7,0x02,0x95,0xa0,0xbc,0x37,0xa6, - 0x6a,0x92,0xd0,0x1b,0xd2,0x4f,0xf5,0xf4,0x26,0x0d,0xde,0xeb,0xfb,0x1c,0x83,0x41,0xec,0xe8,0xc7,0xde, - 0xdb,0xcc,0xa7,0x7c,0x9c,0x01,0xfa,0x03,0x21,0x11,0x81,0x80,0x37,0xca,0xec,0x17,0x4d,0x28,0xd0,0xf7, - 0xbd,0x9e,0xd7,0x8f,0x2b,0x84,0xba,0x71,0xc7,0xae,0x1f,0x55,0xa9,0x53,0x77,0x01,0x86,0xee,0x37,0xe1, - 0x4b,0x2f,0x30,0x5c,0x11,0x9b,0xed,0xd4,0x36,0xa1,0x35,0x1e,0xc8,0x09,0xc3,0x9a,0xe3,0x43,0xdf,0xf1, - 0xb6,0x25,0xb7,0x26,0x41,0x5b,0x2c,0xe7,0x5d,0xd6,0x20,0x58,0xaf,0x3d,0xf4,0x83,0x33,0xad,0xf0,0x40, - 0xb1,0x4a,0x76,0xeb,0x4c,0x7c,0x7a,0x74,0xac,0x25,0x73,0x1e,0xe3,0x54,0xd7,0xb9,0xfc,0xed,0x8d,0xfe, - 0x23,0x91,0x15,0x10,0x27,0x38,0xa1,0xe7,0x9a,0x92,0x78,0x7d,0x62,0x53,0x82,0xf1,0xdb,0x54,0x7e,0x85, - 0x74,0x84,0xfa,0xcc,0x87,0x7b,0x7d,0x5f,0xda,0xc7,0xd8,0xc7,0xde,0x50,0x95,0xa4,0xe5,0x1d,0xbe,0xfd, - 0xb7,0x29,0x1c,0x23,0x89,0x98,0x3c,0x77,0x99,0x3d,0x81,0xa2,0x38,0x92,0x62,0x77,0xc0,0xbd,0x3a,0x8b, - 0x4d,0x49,0xd3,0x08,0xc9,0x03,0x35,0xae,0xb1,0x2f,0x6d,0xa1,0x1b,0xe2,0x10,0x3a,0x8c,0x61,0xa9,0x39, - 0x85,0x14,0xef,0xdc,0xb9,0xa4,0x86,0x7d,0xd9,0x72,0x19,0xaf,0x37,0xcc,0x03,0xee,0x28,0x8d,0x68,0x26, - 0x54,0x94,0x7e,0x5e,0x72,0x23,0x76,0x27,0xc1,0x35,0x15,0x78,0xb4,0xcf,0xe8,0x92,0xc6,0x45,0x03,0x30, - 0xe1,0xb6,0x8f,0xa8,0xfc,0x24,0x10,0xdd,0x17,0x94,0xa2,0x05,0x70,0x8a,0x69,0xf7,0x2f,0x94,0x15,0xe8, - 0x3a,0x75,0x3a,0xa5,0xf6,0x0f,0xa0,0x47,0x20,0xf5,0x0d,0x7c,0xdd,0x99,0x32,0x1c,0x7a,0x1f,0x06,0x2d, - 0x82,0xe9,0xfe,0x22,0xa8,0xb4,0xb6,0xdb,0xda,0x2c,0x9f,0xea,0xb4,0x16,0x0d,0xa1,0x1b,0xdc,0xdd,0xe3, - 0xc1,0xe7,0x1f,0x02,0xe2,0x00,0x41,0x4b,0x27,0x64,0x2b,0x56,0x69,0xe0,0x2b,0xc2,0x6b,0xec,0x3f,0x1e, - 0xb7,0x97,0x44,0x0d,0x86,0xdf,0x6d,0x35,0x2f,0x04,0x40,0x82,0x1d,0x37,0x5d,0x4b,0x3b,0xb2,0x2a,0x18, - 0x14,0x74,0xfb,0xc2,0x45,0x94,0x8f,0xf5,0x28,0x87,0x2a,0x03,0x3a,0x68,0x04,0xbd,0x43,0x35,0xaa,0x70, - 0x15,0x35,0x8e,0xb5,0xac,0xcf,0x08,0xe8,0xba,0x3b,0x4f,0x59,0x8d,0xc3,0x63,0x89,0x94,0xe1,0x05,0x5a, - 0xf1,0xca,0x8c,0xe4,0xcd,0x8a,0x57,0x64,0x15,0x8c,0xa6,0x54,0x80,0x6e,0x3b,0x80,0x95,0xd3,0x8e,0xd2, - 0x33,0x31,0x8f,0x94,0x23,0xaf,0x3f,0x0f,0x42,0xd9,0x09,0xe9,0x3f,0xf4,0xf4,0xf9,0x51,0xab,0xbd,0x08, - 0xe7,0xb5,0x64,0xc5,0x2f,0xd7,0x6b,0x28,0x4c,0xcb,0x3e,0x9c,0x2c,0x56,0x74,0x3b,0x79,0xee,0xd3,0x95, - 0xa7,0xcd,0x05,0xeb,0x8d,0xd8,0xf9,0x2a,0x73,0xc5,0x84,0x84,0x49,0x3b,0x71,0xbf,0x79,0x85,0x65,0x1a, - 0xb1,0xc5,0x18,0x5f,0x8a,0x06,0x83,0x0c,0xd7,0x22,0x91,0x00,0x3c,0x25,0x86,0x2d,0x25,0x78,0xf0,0x1b, - 0xe6,0x79,0x6e,0x6e,0xc2,0x10,0x5d,0x9d,0x0d,0x6c,0x88,0xb1,0x7c,0x4d,0xf4,0x54,0xdc,0xe5,0x92,0x02, - 0x84,0xac,0x72,0xc0,0x05,0x61,0x25,0x71,0x45,0x28,0x97,0x10,0xd5,0x5e,0xcb,0x49,0x87,0xbf,0x15,0x70, - 0xb8,0xf3,0x65,0xf2,0x43,0x32,0xaf,0x5e,0x2d,0x93,0x0c,0x45,0xaa,0x3c,0x74,0x96,0x62,0x58,0xa6,0x61, - 0x43,0x16,0x3a,0xfc,0x31,0x09,0x2d,0xe1,0xc1,0xb7,0x39,0xf1,0x0f,0xb3,0xd5,0xb4,0x5b,0xe5,0x86,0x63, - 0x39,0xf2,0x29,0xd7,0x01,0xb2,0x74,0xc8,0xbf,0x80,0x3d,0x42,0x0c,0x7e,0xcf,0x53,0x02,0x93,0x10,0x2b, - 0xf2,0x7d,0x37,0x89,0xda,0x83,0xa3,0x17,0x40,0x3b,0xdf,0xd9,0x80,0x7f,0x48,0xd6,0x43,0x7d,0x12,0x42, - 0xe2,0x5d,0xd2,0x4c,0xb9,0xf3,0x08,0xcd,0xc3,0x98,0x44,0x17,0xea,0xfb,0xc9,0x18,0x27,0x36,0x81,0x67, - 0x54,0x08,0x8c,0xfe,0x6d,0x58,0xbe,0xe3,0xab,0x3b,0x6f,0x27,0xfd,0xf5,0x31,0x51,0xd8,0xc1,0xe4,0x93, - 0xf1,0x71,0x00,0x76,0x2f,0x7a,0xbc,0xfe,0x97,0x1e,0x01,0x7d,0x1e,0xfb,0x7b,0xe1,0x77,0xaa,0xc6,0x11, - 0xb1,0x75,0xc4,0xdc,0xbd,0xbd,0x33,0x41,0xd5,0x09,0x38,0x43,0xa2,0xae,0x1b,0x89,0xeb,0xe3,0xa3,0x7b, - 0x44,0xdf,0xdf,0x9b,0xd0,0x0f,0x8f,0x7e,0x78,0xf8,0x41,0x64,0x30,0xfe,0x34,0xcb,0x4e,0x82,0x4f,0xa8, - 0x59,0xa2,0xdc,0xbf,0x01,0xa9,0x53,0x4e,0x87,0xf7,0xff,0x0e,0x67,0x46,0xc3,0x2f,0x44,0xcd,0x62,0x78, - 0xf0,0x20,0x94,0xf5,0x7e,0x70,0x3f,0x5c,0x2d,0x87,0x0f,0x3e,0x27,0x0e,0x79,0x5e,0x0d,0x1f,0xfc,0x3d, - 0x2c,0xf0,0x7a,0x32,0x7c,0xf0,0x45,0x08,0x2f,0xd8,0xc3,0x87,0xfb,0xa1,0x3c,0x60,0x0e,0x8f,0x3e,0x0f, - 0x1f,0x7e,0x46,0x4c,0xc8,0x3f,0xf3,0x2e,0xbf,0x5c,0x40,0x39,0x7d,0x00,0x8f,0xe5,0x33,0x6b,0x44,0x6c, - 0xd3,0x6f,0x39,0x84,0x41,0x04,0x0f,0xfa,0x50,0xe3,0x03,0x00,0x12,0x9f,0xc6,0x22,0x42,0x1c,0x41,0xa3, - 0x82,0xf3,0x4c,0x19,0xf5,0xfd,0x4c,0x1e,0x1c,0xb9,0x08,0xe2,0x92,0x0d,0xff,0x99,0xfb,0x2e,0x6e,0xe8, - 0x11,0xc6,0xe9,0xa9,0x94,0xe9,0xaa,0xc0,0x26,0x1d,0x72,0x06,0x1d,0xe0,0x69,0x55,0x2c,0xb8,0xc6,0x8e, - 0x2e,0x40,0x09,0xdf,0x43,0x43,0x37,0x64,0xdf,0xa1,0x4e,0x1e,0xa7,0x48,0x66,0xbc,0x70,0xb3,0xe8,0x5b, - 0x32,0x20,0x2f,0x70,0x72,0x90,0x20,0x59,0xbc,0x76,0xc8,0xba,0x27,0x5e,0xa1,0xee,0x81,0x30,0x92,0x52, - 0xbd,0xbb,0x77,0xf5,0x08,0x25,0x8f,0xc7,0xbc,0x8f,0xf6,0xd2,0xd9,0x6c,0x91,0x7c,0x54,0xb5,0x03,0xc8, - 0x15,0x78,0x7f,0x3e,0xa6,0xd6,0x7d,0xc0,0xff,0xaf,0xb4,0x11,0xc4,0x35,0x36,0xfd,0xb1,0xc0,0x0d,0x5c, - 0x1d,0xd5,0xae,0x63,0x63,0xdf,0x9e,0xca,0xc6,0x86,0x0e,0x86,0xd8,0xc0,0x5b,0x49,0xd6,0xf6,0x83,0x83, - 0xe6,0x38,0x7c,0x5e,0x6d,0x2d,0x54,0xb7,0x74,0x42,0x2d,0x65,0xd4,0xd2,0x3d,0xc8,0xbf,0xe8,0xbc,0xf5, - 0xc1,0x7c,0xd7,0xad,0xe2,0xee,0xb3,0x28,0x69,0x38,0x3a,0xaa,0xd5,0x11,0xf1,0x18,0x36,0x16,0x52,0x67, - 0xa8,0x68,0xa6,0xe0,0x86,0xe2,0x1c,0x7d,0xda,0x0b,0x55,0x79,0x2f,0x50,0x63,0x9e,0x2e,0xf2,0xf8,0x1c, - 0x71,0x75,0xff,0x23,0x6f,0x7b,0x3d,0xcd,0x8d,0xb3,0x4c,0xfe,0x84,0x24,0x92,0xee,0x44,0xfc,0x59,0xaf, - 0x7f,0x53,0x89,0x46,0x78,0x59,0x46,0xbf,0x42,0x0c,0xaf,0x15,0xd3,0x3d,0x93,0xf1,0x94,0x38,0x06,0xed, - 0xc1,0x1d,0xef,0x8c,0xdf,0x24,0x19,0x22,0xf8,0xb9,0xa5,0x95,0xd4,0xd1,0x94,0x33,0x1c,0x47,0x74,0xe9, - 0xb3,0xa2,0xc5,0xaf,0x39,0x9b,0x46,0x9b,0xf4,0xc0,0x44,0xef,0x72,0x10,0xe8,0x7a,0xfd,0x2e,0x1b,0x29, - 0xdf,0xc8,0xef,0x4f,0x12,0x13,0x88,0xb1,0x63,0x23,0x77,0x8c,0x19,0xaf,0xf2,0x8f,0x99,0x4d,0x93,0xe7, - 0xb0,0xd6,0xe2,0xaf,0x66,0xc0,0x41,0xf8,0xe8,0x4e,0xe2,0xc8,0xb7,0x85,0x42,0xc7,0xc7,0x27,0x5e,0xdf, - 0x9b,0x11,0x0e,0x9f,0x43,0x00,0x47,0x40,0x5f,0x21,0xa0,0x2e,0x2d,0xf2,0x7b,0x76,0xcc,0x36,0x85,0xf0, - 0x0f,0xd7,0x5e,0x78,0x95,0x56,0x67,0x61,0x7c,0x15,0xa7,0x55,0xc8,0x86,0x01,0x21,0xfb,0x40,0x57,0xca, - 0xf3,0xfc,0x0c,0x14,0xb2,0xe3,0xd2,0x90,0xe3,0xd2,0x87,0x57,0x84,0x56,0x93,0xf0,0x3d,0xa4,0x7e,0x0a, - 0xd9,0x84,0xc4,0x9c,0xe5,0xf0,0x76,0xc8,0x9e,0x58,0x42,0x99,0x81,0xf6,0x00,0xa6,0xfd,0x2e,0x8a,0xbb, - 0x50,0x62,0x63,0x24,0x44,0x3d,0x3b,0x41,0x4b,0xb3,0x15,0x5c,0xf7,0x9c,0xac,0x4e,0x4f,0x21,0x26,0x54, - 0xab,0x50,0x07,0x5d,0xf1,0x94,0x9f,0x1a,0xdc,0x09,0xea,0x76,0xa0,0x69,0xad,0x31,0xb5,0xa0,0xcf,0x33, - 0x94,0x20,0xc1,0x8d,0x39,0xcb,0xa0,0xc4,0xef,0x28,0x2b,0xb0,0x77,0xb6,0x43,0x28,0x1d,0x08,0xff,0xf8, - 0x98,0x50,0x3e,0xfd,0x53,0xb7,0xda,0xc8,0xa0,0x3e,0xfc,0x77,0x4d,0xc9,0x8f,0x88,0x22,0xb6,0x5a,0x8d, - 0xb2,0xc7,0x60,0xc2,0x8b,0x88,0x7d,0x1c,0xed,0x1c,0x04,0xe1,0x49,0xae,0xf6,0x93,0x0d,0xc4,0x20,0xe1, - 0xb6,0x22,0xb6,0x8c,0xb2,0x47,0xef,0x73,0xdb,0x39,0xcb,0xfb,0x9c,0xed,0x70,0xf1,0x92,0x73,0x96,0x47, - 0x55,0x0d,0xd5,0x27,0xf8,0xd2,0x77,0x3d,0xc0,0x29,0x7c,0x8b,0x14,0xeb,0x26,0xe7,0xc4,0x2b,0x24,0x36, - 0xae,0x6a,0xce,0xb8,0xc8,0x01,0xda,0x55,0xc7,0x41,0x78,0x29,0x07,0xe1,0xb4,0x59,0xa0,0x29,0xa6,0xa1, - 0x32,0xef,0x5b,0x65,0xf2,0xb2,0x6a,0x16,0xba,0xc4,0x10,0x68,0x27,0xd2,0x8b,0xb4,0x42,0x40,0x44,0x65, - 0x94,0x4b,0xe4,0x29,0x2b,0x9f,0xec,0x1c,0xb0,0xae,0x27,0x62,0x9c,0xe3,0x74,0xfc,0x72,0x46,0xa5,0x78, - 0x98,0x21,0xd6,0x0b,0x74,0xea,0x41,0xcb,0x32,0xa3,0xb9,0xc8,0xf4,0xb5,0xea,0xe3,0x05,0x0f,0x6a,0xad, - 0xab,0x13,0x79,0x5b,0xf0,0x6d,0xab,0xe9,0x42,0xfb,0x11,0x60,0xfd,0xbb,0xb0,0xac,0xe3,0xd7,0x8b,0x26, - 0xdf,0x2a,0x50,0x6f,0x6f,0x78,0x6e,0x28,0xf0,0x29,0x3b,0xd6,0x78,0x90,0xa5,0x64,0x56,0xf5,0x4f,0xa3, - 0xb8,0x0e,0x6a,0x9f,0x3e,0x8e,0x88,0xeb,0x89,0x11,0x0a,0x66,0xa1,0x8b,0xe2,0x90,0xd3,0xbc,0x4a,0x84, - 0x54,0xd3,0x34,0x65,0xc4,0xcf,0xbe,0x28,0x6d,0x19,0x60,0xda,0x0d,0x4d,0x1f,0x47,0xe9,0x68,0x4a,0x15, - 0xaa,0x01,0x7b,0x59,0xe1,0x3f,0xec,0x6f,0x9d,0x25,0x13,0x18,0xff,0x48,0x17,0x8f,0xb0,0x80,0x29,0x77, - 0xbb,0x7b,0xc0,0xf9,0xcc,0x1d,0x79,0x27,0x05,0x28,0xbc,0x72,0xcc,0x84,0x55,0xc1,0x4e,0xeb,0xf9,0x07, - 0xcd,0x9f,0x96,0x7b,0x67,0x5f,0x3c,0x23,0x78,0x4b,0x2e,0xc5,0x71,0x70,0x3b,0xcb,0x1d,0x70,0xb9,0xd0, - 0x19,0x88,0xac,0x20,0x2d,0xaa,0x76,0x8e,0x00,0x4f,0x27,0xd8,0x44,0x28,0xa3,0xd7,0x52,0x19,0xda,0xb2, - 0x6a,0x50,0xd3,0x97,0x0c,0x6d,0x0b,0xbc,0x38,0x37,0xa8,0x4a,0xce,0x58,0xd1,0xa2,0x24,0x23,0x16,0xf2, - 0xa5,0x84,0xc0,0x89,0x25,0x79,0x93,0xfb,0xb9,0x51,0x67,0x83,0x5d,0x6a,0xde,0x78,0x13,0x5f,0x46,0x4f, - 0xf2,0xa3,0x19,0x42,0x44,0xf1,0x5f,0x47,0xfe,0x4d,0x04,0xdc,0x71,0x79,0x7c,0xfc,0x86,0x48,0xb7,0xc0, - 0x7f,0xb4,0xe7,0xf5,0x67,0x5a,0x10,0x1e,0xd0,0x89,0x4f,0xc1,0x4b,0xc3,0x3a,0x4b,0x8b,0xb6,0x97,0xb6, - 0x4c,0x9b,0xc1,0x43,0x43,0x9a,0xb1,0x84,0x0d,0x69,0x3c,0x33,0xe6,0xff,0x94,0xdf,0x49,0x2c,0x1c,0xc7, - 0x46,0x8e,0x6a,0x07,0x54,0x7b,0x10,0xa3,0x53,0xdf,0xa5,0xf4,0xbc,0xbb,0xfb,0x78,0xef,0x94,0x58,0x0c, - 0xba,0xf5,0xed,0x22,0xc7,0x47,0x4f,0x9f,0x3d,0x39,0x7c,0x72,0x7c,0x54,0x97,0x9c,0x4c,0x4c,0x49,0x08, - 0x95,0xfd,0x59,0x28,0x6e,0x97,0xa1,0xcf,0xa2,0x7c,0x36,0x71,0x18,0xbd,0xb3,0x58,0x2e,0x4a,0xfe,0x01, - 0x25,0x08,0x0f,0xf2,0x17,0x82,0x79,0xad,0xa3,0xb3,0x7b,0xa6,0xc7,0x9b,0x44,0x67,0x61,0x41,0x0d,0xad, - 0x76,0xe7,0x88,0x44,0x6d,0xec,0x90,0x2e,0x23,0x4b,0x19,0xe0,0x91,0xc8,0x00,0xa0,0x86,0x79,0xc9,0x8b, - 0xbf,0xca,0x75,0x44,0x2d,0x6d,0x41,0x66,0xab,0x0e,0xec,0x1e,0xbf,0x7b,0x90,0x48,0x95,0x0b,0x06,0xdf, - 0x4a,0x85,0x67,0x44,0xa4,0x0a,0xa5,0x82,0xa8,0xc2,0x23,0x28,0x87,0x25,0xf5,0x29,0x7c,0x18,0xc2,0xd6, - 0x36,0xf3,0x2f,0xfa,0x0f,0x88,0xc5,0x53,0xa8,0x7e,0x03,0xbd,0xae,0x79,0xa3,0xcf,0x53,0xbb,0xcf,0xc9, - 0x63,0xe9,0xef,0x94,0xfb,0xcb,0xfc,0xd3,0xfe,0x7d,0xbb,0x3a,0xca,0x43,0x43,0x9a,0xdd,0xd3,0xfa,0x0b, - 0x51,0x39,0x7c,0x8f,0x82,0xef,0xf1,0xb6,0xac,0x03,0x1a,0x9a,0x0a,0x28,0x7f,0x62,0xca,0x4f,0xa5,0xfc, - 0x89,0xf4,0xfb,0x36,0x5a,0x8d,0x32,0xff,0xc4,0xaa,0x47,0x0b,0x78,0x72,0x74,0x30,0x09,0xdf,0x32,0x5b, - 0x6a,0xb7,0x71,0xd5,0x8c,0x95,0x52,0x99,0x46,0x63,0x69,0xd4,0x44,0xfe,0xbb,0xd6,0x1e,0xff,0x2a,0x34, - 0xc5,0x9c,0xc7,0x10,0x87,0x05,0xa7,0x6c,0xb8,0xda,0x50,0x97,0x95,0x3d,0x54,0xeb,0x54,0x8d,0x76,0x70, - 0x18,0x54,0xb3,0x65,0xce,0xc6,0x1f,0xb9,0x49,0x28,0x28,0x61,0x14,0x64,0x7e,0xee,0x0c,0x58,0xf9,0x8f, - 0xd4,0x81,0x38,0x71,0x9e,0x6a,0x1b,0xcc,0x15,0xce,0xe2,0x1b,0xba,0xc5,0x09,0x6d,0x60,0x30,0x99,0x9f, - 0xba,0x95,0xe1,0xfb,0x7c,0x15,0x16,0x9b,0x8d,0x2f,0x56,0x53,0xc1,0x75,0x2b,0xd4,0x42,0x16,0x19,0x37, - 0x85,0x6c,0x75,0x51,0xb7,0xc9,0xdc,0xbf,0x60,0x14,0x3a,0xbf,0x99,0xb8,0x0e,0x2f,0x68,0x14,0xe1,0x82, - 0x7f,0xe6,0xe2,0x00,0xba,0xe0,0x07,0x72,0x3d,0xcd,0x55,0x34,0x65,0x6f,0x0d,0x3b,0x3b,0x29,0xfb,0xe0, - 0x91,0xe1,0x2b,0x18,0x9e,0xf1,0xa1,0x16,0xc9,0xd4,0x1c,0x27,0x7e,0x7f,0xb4,0x7c,0x34,0x1f,0x2d,0xb5, - 0x92,0xdf,0x99,0xae,0x70,0xb4,0x9c,0x8c,0x96,0xd4,0xe9,0x2e,0xac,0xe5,0xce,0x30,0x27,0x0d,0x40,0xf7, - 0x3c,0xef,0x1e,0xd6,0x8d,0xdf,0xa8,0xce,0x8e,0x1e,0x4c,0xee,0xde,0x55,0x0a,0x9d,0xf8,0x08,0x55,0xf2, - 0x43,0x3b,0xf9,0xa1,0x49,0xfe,0xd4,0x4e,0xfe,0x54,0x59,0x13,0x5e,0x72,0x33,0xeb,0x35,0x0a,0xe2,0xdf, - 0x4f,0xe9,0x5f,0xcf,0x0b,0x2f,0x22,0x2f,0xd6,0x2e,0xae,0xe1,0xbe,0x59,0x5a,0x38,0x98,0x8c,0xf5,0x19, - 0x79,0x96,0xc0,0xa5,0xee,0xcb,0xe4,0x0a,0x2e,0x51,0xcb,0xaf,0xf3,0xe2,0x5b,0x2a,0x35,0xec,0xce,0x1d, - 0xcd,0x68,0x46,0x4a,0x77,0x1d,0x8d,0x84,0x4c,0x62,0x0f,0xff,0x5d,0xf9,0x97,0x74,0x8c,0x36,0x9b,0x15, - 0xab,0x3e,0xf3,0x26,0xb3,0x02,0x2b,0x61,0x56,0xfb,0xc6,0x19,0x66,0x0d,0x5c,0x29,0x50,0x37,0x83,0x47, - 0xfa,0x88,0xe3,0x22,0x34,0x90,0x7d,0x06,0x5b,0x32,0x7e,0xf2,0xa6,0x2f,0x78,0xb4,0xc9,0x66,0xc1,0x86, - 0xb6,0x1f,0xb8,0x28,0x0f,0x13,0x76,0xbd,0x70,0xd0,0x3c,0x77,0x4f,0xb5,0xc9,0xf8,0xa1,0xfe,0x71,0xae, - 0x7e,0x00,0x76,0x2e,0xcd,0xfd,0x76,0x68,0x1c,0x3b,0x5f,0x06,0x04,0xd2,0x53,0x75,0xdc,0x0f,0xe1,0xc6, - 0xd5,0xfa,0xbd,0xb2,0x7e,0xcf,0xad,0xdf,0xfe,0x79,0x74,0x68,0x63,0xac,0x90,0x70,0xe1,0xa3,0x7d,0x02, - 0xfd,0xcb,0x7e,0x74,0x1e,0x3a,0x8d,0x3f,0x75,0xee,0xfd,0xfd,0xf0,0x12,0x08,0xe7,0x32,0xd8,0x5c,0xb2, - 0x38,0x92,0x72,0x09,0x2b,0xc2,0x72,0xdc,0x60,0xd2,0xa7,0x35,0x32,0x7d,0xca,0x3a,0xa6,0x89,0xa8,0x29, - 0xb7,0x50,0x6d,0xa2,0x4d,0x64,0x37,0x85,0xcf,0x32,0x22,0x89,0x12,0x72,0x96,0x87,0xd6,0x33,0x84,0x73, - 0xfb,0x59,0x92,0x15,0xfb,0x1a,0xec,0x10,0xaa,0xb4,0x6e,0xc4,0xb0,0x0b,0x24,0xb6,0x40,0x4a,0x67,0xd9, - 0x9b,0x81,0x4b,0xe5,0x86,0x2d,0xd4,0x3d,0x34,0x98,0xbb,0x54,0xe8,0xc9,0xba,0x16,0x63,0x58,0xbf,0xca, - 0x89,0x15,0x01,0x69,0xb9,0x5e,0x5f,0xe1,0x8d,0x73,0xf4,0x12,0x20,0x0f,0x97,0xd9,0xb4,0x76,0x2b,0xa8, - 0xc2,0x3b,0xdc,0x4b,0xad,0xec,0x4c,0x48,0x4f,0x48,0xdb,0xc4,0xa6,0x6c,0xb5,0xf0,0x12,0xf1,0x51,0x7f, - 0xc9,0xb5,0xee,0x64,0xa6,0x74,0x26,0xe5,0x57,0x24,0x7f,0xcc,0x25,0xfa,0x53,0x1e,0xca,0x36,0xf2,0x09, - 0x00,0x2d,0x62,0x62,0xe8,0x41,0xb9,0x5c,0xc9,0x13,0xbf,0xab,0x78,0xd8,0x29,0x5d,0x90,0x90,0x28,0xd2, - 0x88,0x41,0xcf,0xed,0x28,0x07,0xfa,0xec,0x51,0x71,0x16,0xcd,0x03,0x51,0x66,0xd6,0xcf,0xd1,0x48,0x9e, - 0x89,0xf2,0xf5,0xcc,0x95,0xa7,0xd2,0x24,0x21,0xb6,0xdb,0xfb,0x3d,0xbe,0x8c,0xed,0xb2,0x4e,0x21,0x1a, - 0x33,0x62,0xd4,0x06,0xdc,0x21,0x4d,0xfd,0x84,0x3d,0xc1,0x73,0x20,0x4a,0xbd,0x10,0x33,0x85,0xc7,0x4e, - 0x0d,0x81,0x0f,0x7c,0x36,0x8f,0x4e,0x73,0x3a,0xf3,0xfe,0x9c,0x48,0x5a,0x82,0x7f,0x56,0x0c,0xa4,0xf9, - 0x5f,0x44,0xf3,0xd0,0x3c,0x34,0x5e,0xe0,0x51,0x0d,0xb2,0x3b,0x34,0x7f,0x01,0x52,0x99,0x4d,0x0d,0xe6, - 0x35,0x5f,0xb1,0x1f,0x30,0x63,0x31,0xb7,0x18,0x0b,0xbc,0x48,0x76,0x46,0x2f,0x36,0xc2,0x32,0xe3,0xee, - 0xd2,0x8e,0xd2,0x68,0x5e,0x55,0x2d,0x14,0x5c,0x69,0x3f,0x34,0x15,0x47,0xf0,0x84,0x97,0x1e,0x85,0xa3, - 0xac,0xd6,0x28,0x51,0xe2,0x92,0x08,0xca,0x6a,0x28,0xf9,0x34,0x0a,0x4a,0x58,0xd2,0x8d,0xf6,0xa8,0x49, - 0xf3,0x60,0x5d,0x3b,0x16,0xda,0x49,0x54,0xec,0x79,0x30,0x9c,0xd7,0x6f,0xa1,0x94,0xfb,0x4f,0x18,0xf3, - 0x77,0x44,0x2a,0xb5,0xde,0x6c,0xd5,0xfd,0x9b,0xe0,0xd1,0xb4,0xc2,0x23,0x63,0x22,0x8f,0x8c,0x95,0x7a, - 0x64,0x4c,0x36,0xca,0xc8,0xba,0xe3,0x09,0x57,0x74,0x99,0xd5,0xf3,0xa3,0x8e,0x9d,0xd8,0x7c,0xd0,0xd5, - 0xda,0x4c,0xea,0x5d,0x12,0x0e,0x75,0x31,0xa8,0x4b,0x7b,0xb3,0x2e,0x51,0x01,0x4c,0x3a,0x37,0x79,0xc9, - 0xfc,0x3a,0xef,0xc6,0x37,0x15,0x6f,0x32,0xad,0xe5,0x58,0x43,0xc0,0x7a,0x5d,0xd0,0x58,0x19,0x66,0xa4, - 0x49,0x82,0x00,0xfe,0x45,0x55,0x69,0xf8,0x85,0x0c,0x5f,0x67,0xaa,0x59,0xcc,0x37,0xc1,0xb0,0xa0,0x1e, - 0xe9,0x34,0xee,0x58,0xb0,0x06,0x13,0xa1,0x56,0x33,0x3b,0x37,0xf3,0xaa,0xf6,0x29,0x35,0x87,0x93,0xe3, - 0xeb,0x69,0x0b,0xf4,0x84,0x43,0xeb,0x01,0xc0,0xb5,0xe4,0x96,0x12,0x10,0x14,0x36,0x5f,0xc2,0xf4,0xd7, - 0xaf,0x9d,0xdc,0xf0,0xda,0x64,0x3c,0x9d,0xdf,0x70,0xb1,0xf0,0xd0,0x13,0x77,0xe8,0xb0,0xc8,0xa0,0x05, - 0x33,0x32,0xf6,0xf9,0x00,0x16,0x0a,0xec,0xf4,0x8b,0xa3,0x88,0xcb,0xf6,0x1f,0x88,0x3e,0x49,0x24,0xb9, - 0x22,0x17,0x5c,0xaf,0xef,0x79,0x4a,0x7e,0xe0,0xdd,0x1b,0x51,0xb7,0x4e,0xb0,0x37,0xf7,0x9b,0xcd,0x08, - 0x8e,0xce,0x26,0xd1,0x5c,0x8c,0xad,0xeb,0x31,0x0a,0xde,0x98,0xf3,0xd1,0x91,0xb0,0x6c,0xa9,0x5c,0xed, - 0xe1,0xc5,0x68,0x31,0xce,0x00,0x74,0x44,0x79,0xcd,0xc3,0x5c,0x17,0x44,0x9c,0xb1,0xac,0x43,0xaf,0x3e, - 0x3f,0xca,0x0d,0xdb,0x36,0x09,0x2b,0xcb,0x3d,0xd6,0x51,0xcb,0x27,0x16,0x95,0x40,0xf0,0xe5,0x07,0xd0, - 0x06,0xd1,0x08,0xa5,0xe7,0xc9,0x17,0xbb,0x53,0xd8,0x99,0x42,0xd3,0xba,0x1e,0x23,0x96,0x36,0x34,0xed, - 0x47,0x07,0x44,0x6e,0xb9,0xfd,0x65,0xe2,0x70,0x1b,0x17,0x94,0x23,0xe5,0xd7,0xc1,0xc5,0x5e,0x66,0xf6, - 0xd3,0x91,0x78,0x34,0x01,0x62,0x4b,0x6b,0x9c,0xb5,0xac,0xdd,0x71,0xc0,0xb4,0x3b,0x30,0xa7,0xc9,0x71, - 0xfe,0x91,0x44,0x53,0x04,0x7e,0x94,0x27,0x9c,0xb1,0x8f,0x50,0x9b,0x5e,0xcd,0x05,0x15,0xda,0x56,0x85, - 0xd1,0xaa,0x4e,0x18,0x27,0xc3,0x9f,0x73,0x76,0xeb,0xc7,0x2e,0xcf,0x65,0xd4,0x63,0x9a,0x31,0xc4,0x79, - 0xca,0xe3,0xdb,0x4e,0xc9,0x6b,0xb0,0xc3,0xbe,0xfb,0xfc,0xa6,0xf4,0x44,0xa0,0xf4,0x32,0x1f,0xff,0x96, - 0xfa,0x97,0x79,0x30,0xfc,0x26,0x65,0x6e,0xbd,0x66,0x16,0x8c,0xf3,0xb7,0xd0,0x62,0x41,0xe9,0x9f,0x29, - 0x5c,0xf8,0xc6,0x65,0xf5,0x1c,0x44,0x03,0x10,0x16,0xc7,0xf3,0x49,0xa6,0xb8,0xac,0x82,0x6b,0xda,0xd9, - 0x42,0xe8,0x89,0xe0,0x31,0x9e,0x9a,0x34,0xb1,0x6c,0x08,0x89,0x29,0xac,0x74,0x43,0x45,0x5e,0x35,0xf0, - 0x57,0xae,0x35,0x14,0x17,0xd1,0x3f,0x13,0xdf,0x76,0x87,0x3c,0x52,0x15,0xe4,0x31,0x66,0x21,0x8f,0x50, - 0xaa,0xed,0x6b,0xef,0x1f,0x27,0xa2,0x29,0xe8,0x41,0x67,0x82,0x06,0x98,0xf6,0x8b,0x9a,0xf2,0xd6,0xb7, - 0xd7,0xf4,0x51,0x6d,0x6a,0xd1,0x31,0xac,0x1b,0x07,0xc5,0xe7,0x0c,0x1a,0x7d,0x30,0x48,0x8a,0x95,0x48, - 0xab,0xcf,0xea,0x82,0xe7,0x49,0x56,0x0e,0xcb,0x0d,0x47,0x06,0x0a,0xc6,0x95,0x26,0x1b,0x61,0x05,0x7a, - 0x3f,0xb4,0x6a,0x61,0x91,0xf4,0x87,0xae,0x06,0x42,0x12,0x3f,0xe4,0x4d,0x8b,0xce,0xed,0x50,0x60,0x36, - 0xa9,0xf7,0xd4,0x80,0xf1,0x51,0x55,0xc3,0x26,0x83,0x34,0x94,0xc6,0xad,0xce,0x1e,0x98,0x46,0x84,0x7e, - 0x2c,0xd8,0x20,0xbc,0xe5,0x26,0xbe,0x79,0x4c,0xdd,0xca,0xa1,0xb1,0x75,0x1b,0xee,0xec,0xb3,0x79,0x04, - 0xb1,0x2b,0xbe,0x86,0x4d,0xc4,0x31,0x56,0x82,0x24,0x48,0x83,0x2f,0xd2,0x3f,0x12,0x96,0xe3,0xb0,0x29, - 0x54,0x08,0x99,0xce,0xd3,0x3c,0xfa,0x3e,0x07,0x9e,0xb0,0x9e,0x9b,0x40,0x4b,0x1c,0xe2,0x95,0xb4,0x25, - 0x9b,0x35,0xf7,0x0c,0x4c,0x78,0xc4,0x95,0x8c,0xaa,0x19,0xd1,0xdd,0x5a,0x85,0xf7,0xa9,0xab,0xa9,0x3a, - 0xcc,0x3e,0x4e,0xb6,0x7c,0x10,0x3b,0xe3,0xef,0x4c,0xd5,0xb5,0x3c,0x85,0x65,0x82,0x52,0x14,0xa5,0xce, - 0xa0,0xa2,0x83,0x7f,0xe7,0x88,0xfc,0x75,0x9a,0xf9,0x6c,0x4c,0x05,0x06,0xe8,0x30,0x37,0xbf,0xdb,0x26, - 0xa0,0xc6,0x00,0x94,0xd5,0xa0,0x74,0x5c,0x08,0xe5,0x15,0xda,0xb8,0x0e,0xe2,0xea,0x8e,0x25,0x01,0xba, - 0xa9,0xed,0x43,0x8d,0xcf,0x18,0x02,0x26,0xea,0x51,0x19,0x95,0x21,0x8c,0x20,0x25,0x0c,0x10,0x28,0xe6, - 0x3d,0x2d,0x50,0x80,0xff,0x85,0x07,0x06,0x4f,0x89,0xd5,0x02,0x0d,0xaf,0x52,0x64,0x85,0x07,0x7c,0xcc, - 0x51,0x81,0x6a,0x43,0x30,0x7c,0x68,0xac,0x72,0xe4,0xa5,0x19,0x28,0xcd,0x5d,0x33,0x4e,0x6d,0xb5,0x60, - 0xcb,0x38,0x39,0x7e,0x68,0xd3,0x6f,0xa0,0x0e,0x4f,0xad,0xed,0x63,0x6b,0x7c,0x4a,0xe4,0x21,0xfc,0xae, - 0x84,0x7a,0xeb,0x60,0xb0,0xa4,0xf7,0x62,0xe7,0x80,0x89,0x77,0xa2,0xb3,0xe7,0x4f,0x73,0x5a,0x68,0x7e, - 0x07,0xa8,0x03,0x4e,0x13,0xea,0x8c,0x23,0x37,0x53,0xf7,0x97,0x3f,0x8a,0x6b,0xcf,0x5a,0x65,0xa3,0x10, - 0x3c,0x29,0xf1,0x85,0x45,0x3d,0xc3,0x2a,0x6e,0x4b,0xcf,0x0c,0xcc,0xd3,0x0d,0xd1,0xa1,0x0e,0xb8,0x28, - 0x7f,0x06,0x8d,0x75,0x34,0x55,0x71,0x38,0x72,0xf1,0xfe,0x67,0xd2,0x9e,0x67,0x44,0x9b,0x1b,0x06,0x8d, - 0x12,0x84,0x01,0x71,0x96,0x88,0x8a,0x0b,0x80,0x37,0xd2,0xd7,0xeb,0x07,0x4e,0x32,0xbb,0x6d,0x67,0x97, - 0x11,0x0a,0xbb,0x80,0x35,0x33,0x3d,0xc1,0x1f,0x31,0x13,0x38,0x16,0x48,0x4b,0xda,0x41,0x58,0xb7,0xd1, - 0x88,0xe1,0xde,0xde,0x2e,0x1d,0xcc,0x1d,0xc2,0x5f,0xcb,0xd5,0x63,0x98,0x81,0xa1,0xaf,0x18,0xf8,0x46, - 0x7f,0x6d,0x63,0x12,0x7f,0xcb,0x9e,0x70,0x18,0x03,0xb8,0x85,0x3a,0x30,0x4a,0xe3,0x2c,0x4c,0xce,0x32, - 0x36,0x3c,0x52,0xb2,0xe2,0x6b,0xba,0x06,0x88,0x3b,0x56,0x46,0x98,0xb9,0x0e,0x5d,0xdb,0x78,0x2e,0xa1, - 0x8c,0x46,0xca,0xc6,0x0d,0xf6,0x67,0xf6,0xb5,0xf2,0x2d,0x85,0x0b,0xd7,0x28,0x33,0x81,0xe6,0x20,0x9b, - 0x56,0x8a,0x3b,0xa0,0x42,0x5e,0xa0,0xdc,0x3b,0xcd,0xaf,0xc6,0xf9,0x30,0x0d,0xb4,0x23,0xd4,0x0d,0x1a, - 0xcb,0xb4,0xdc,0x9c,0x1d,0xf9,0xa8,0xdf,0x51,0xfd,0xdc,0xc4,0xef,0xe1,0xfa,0xa1,0xdc,0x14,0x86,0x30, - 0xcd,0x31,0x5f,0x86,0xcf,0x48,0xfb,0x1d,0xaa,0x31,0x3a,0x2b,0x73,0xbd,0x16,0x03,0x52,0xbb,0xbe,0x25, - 0x92,0x41,0x14,0xdb,0x5e,0x16,0x78,0xaa,0x23,0x1c,0x74,0xba,0xc2,0xeb,0x88,0x6e,0x3a,0x85,0xae,0xbf, - 0x18,0x1e,0xf1,0xe3,0x89,0xb8,0x02,0x2a,0xa3,0x77,0x39,0x87,0x3f,0xd7,0x72,0xfa,0x72,0x90,0x14,0x45, - 0x4e,0x2c,0x44,0x4a,0x67,0xa7,0x4a,0x97,0x65,0x94,0x87,0xa5,0x42,0x42,0xd7,0xd0,0xe6,0x48,0x17,0xc9, - 0xb0,0x0a,0xd5,0xaf,0xc3,0xfc,0x6b,0xb5,0x54,0x65,0x87,0x36,0x7f,0x87,0x01,0x6c,0xeb,0x39,0x40,0xf9, - 0x50,0x20,0x7c,0xcf,0x6f,0x70,0xc4,0x17,0xf2,0x16,0xa8,0x37,0xa9,0x5e,0x51,0x1b,0x27,0xe4,0x70,0x73, - 0x66,0x9e,0x22,0xc6,0xca,0x28,0xc9,0x4e,0x0b,0xfa,0x74,0x21,0x32,0xec,0xc2,0x73,0x9a,0x66,0x2f,0xe1, - 0x78,0x4f,0xac,0xe9,0xe1,0x16,0xaf,0x80,0xb2,0x27,0xac,0xaa,0xb1,0xe3,0x66,0xce,0xca,0x3e,0x68,0x89, - 0xa8,0x8b,0x0a,0xdc,0xa6,0x35,0xf2,0xa8,0x9f,0xe8,0xe2,0x66,0x8a,0xab,0xaf,0x57,0x6b,0x38,0x2c,0x01, - 0x3b,0x53,0xe8,0x27,0xa0,0xff,0x88,0x60,0x13,0x4f,0x1a,0x9b,0xc0,0xff,0x23,0x0f,0x06,0xed,0xc5,0xa3, - 0x62,0x71,0xb4,0xb3,0x03,0x4f,0xf6,0x67,0x99,0x8f,0xa7,0xa6,0xcc,0xfe,0x86,0xc7,0xa7,0xb8,0xd3,0x1a, - 0x87,0x4d,0x86,0x8c,0xd5,0x1d,0x50,0x8f,0xd1,0x31,0xa1,0xbe,0xd3,0x38,0xea,0xb0,0xac,0xd2,0xc5,0x6f, - 0x37,0xba,0x02,0xee,0x63,0xe3,0x24,0xee,0x06,0xea,0xa4,0x8e,0xed,0x27,0xd1,0x97,0x76,0x92,0xfe,0xa1, - 0xa3,0x30,0xb7,0x23,0x8b,0x3a,0x21,0xc7,0xd9,0xad,0x41,0xa6,0x96,0x5b,0x1f,0x4f,0x50,0x8a,0x72,0xff, - 0xf0,0x71,0x0c,0x58,0x39,0x93,0x77,0xba,0x8e,0x41,0x58,0x04,0xde,0xdf,0x84,0x64,0x35,0x51,0x13,0x98, - 0x60,0x28,0x62,0x88,0x15,0x8c,0x2b,0xae,0x1d,0xcb,0x73,0x97,0x3d,0x94,0x82,0x49,0x49,0xbd,0x48,0xc2, - 0xc5,0x72,0xfd,0x96,0xc9,0x6a,0xbe,0xaa,0x1c,0x8f,0x71,0x3d,0x2b,0xe9,0x66,0x2b,0x3e,0xd1,0xb2,0x36, - 0xfb,0xd2,0x70,0x27,0x5d,0x1b,0x6f,0x32,0xf3,0x6f,0xef,0x19,0x96,0x59,0x66,0xae,0x6e,0xd3,0x04,0x6e, - 0xf4,0xae,0xbb,0x85,0x4b,0xf1,0x8d,0x82,0xa4,0x0c,0x71,0xac,0xf4,0xd1,0x18,0x66,0xd6,0x39,0xd1,0x24, - 0x1c,0x52,0xf5,0xcf,0x8d,0x8a,0xf4,0x0e,0x92,0x4a,0x9d,0x00,0xa8,0x9e,0x35,0xc0,0x7d,0xa4,0xf7,0x8b, - 0xb0,0x42,0xd6,0x3e,0x1d,0xc6,0x64,0x3f,0x8d,0x45,0x07,0x56,0xcc,0xdb,0xb4,0x2d,0x9b,0x82,0x7b,0x9a, - 0x13,0x7d,0x6d,0x82,0x86,0x51,0x82,0x27,0xf1,0xc3,0xac,0xe0,0xb0,0xfc,0x1e,0x0d,0x76,0x63,0x95,0x49, - 0x74,0xc7,0x19,0x61,0x31,0x95,0x29,0x88,0x6e,0x2c,0x7f,0x06,0xaa,0x68,0x54,0xf9,0x9d,0x61,0x66,0xa5, - 0x36,0xe4,0xc2,0xf8,0x3b,0x88,0x2f,0x66,0x63,0xf9,0x49,0x87,0x92,0xf8,0xdc,0x9f,0x57,0xc9,0xf3,0x83, - 0xcf,0x33,0xd4,0xde,0x34,0x82,0x50,0xd3,0xb0,0x56,0x04,0x20,0x00,0x41,0x1a,0xda,0xc8,0xa2,0x15,0x64, - 0xcc,0x1d,0x23,0xc3,0x5b,0x7b,0xce,0x36,0x4b,0xea,0x17,0xa3,0x30,0xdf,0x3b,0xba,0x5c,0x25,0xbb,0x29, - 0xf5,0x33,0xe9,0x79,0x7d,0xb8,0xd9,0xbe,0x7b,0xd7,0x29,0xc0,0x57,0xfa,0xf4,0xdc,0x76,0xb4,0x5d,0x35, - 0x02,0xe2,0x09,0xd3,0xd5,0x5e,0xa8,0xba,0x86,0x8d,0x83,0x2e,0x95,0x33,0x25,0x9c,0xdb,0x0b,0xe7,0x39, - 0xb5,0x11,0x65,0x0f,0x61,0xf6,0x4c,0x6c,0x09,0xab,0xb1,0xd4,0x8e,0x0f,0x2e,0xa2,0x40,0xf3,0xa8,0x6f, - 0x88,0x3f,0x48,0x1c,0x20,0x08,0xac,0xb3,0x40,0xf6,0xa9,0xd3,0x0c,0x35,0xbe,0x94,0xff,0xe8,0xb3,0xc0, - 0x82,0x09,0xcd,0x59,0x56,0x6c,0x90,0x4e,0x64,0xad,0xab,0xd0,0xca,0x89,0xe3,0x94,0x4d,0x0d,0x87,0xad, - 0xe3,0x9f,0x70,0xa8,0x79,0x38,0x4c,0x46,0xb1,0xe1,0x7d,0xab,0x41,0x16,0x09,0xde,0x58,0x3c,0xf4,0xd1, - 0xe7,0x41,0x57,0x9f,0x94,0x08,0x3c,0x92,0x46,0xf2,0x33,0xbc,0x26,0x8a,0x25,0xa6,0xcb,0xae,0x10,0xfb, - 0xa4,0x72,0x98,0x5a,0xde,0x40,0xf3,0xda,0x88,0x1b,0x3b,0xa2,0x3a,0x35,0x30,0x90,0x38,0x2a,0x59,0x5a, - 0x36,0xa7,0xd4,0x17,0xd6,0x96,0x4d,0xe4,0xd1,0x16,0x3b,0xd7,0x24,0x42,0xa0,0xc2,0x41,0x7c,0x02,0x31, - 0x76,0x88,0x39,0x56,0x63,0xb8,0xf2,0x0e,0xc6,0xd9,0xe3,0x83,0xf1,0xc1,0x70,0x7f,0x78,0x30,0x4c,0xc6, - 0x5c,0xe6,0x22,0x45,0xd5,0xfb,0xc1,0x70,0x5f,0x87,0x53,0x85,0xdf,0x2d,0xf5,0x3e,0x34,0x19,0x67,0x2c, - 0x05,0x62,0x4e,0x6b,0x68,0xed,0x6d,0x6c,0x41,0x01,0xb3,0xa6,0x1c,0xf6,0xbb,0xc9,0xa5,0x3a,0x6e,0xdf, - 0x4b,0x5b,0xe8,0x64,0x81,0x42,0xa8,0xa9,0x2a,0x21,0xa7,0x88,0x89,0x79,0xd4,0x02,0x93,0x54,0xd3,0xeb, - 0xb9,0x84,0xe3,0xc1,0x63,0x83,0x8e,0x56,0x92,0x6b,0xb7,0x14,0x91,0x89,0xa9,0xa1,0x9e,0x24,0xd0,0x19, - 0x53,0x36,0x79,0x30,0x25,0x8c,0xb3,0x88,0xe2,0xf0,0x54,0x80,0x1a,0x7e,0x1a,0xd9,0xfb,0x68,0x0e,0x52, - 0x66,0xcc,0x54,0x4d,0xc9,0xc4,0x4d,0xc8,0x29,0x43,0x4e,0xe1,0x9f,0x8a,0xd6,0x0f,0x0d,0x08,0x16,0x6e, - 0x88,0x02,0x26,0x0e,0x57,0xec,0x60,0x1b,0x4e,0x9e,0x95,0x3b,0x38,0x53,0x64,0x51,0xbb,0xf7,0x5d,0xb1, - 0xba,0x2f,0x44,0x7e,0x1d,0x32,0x8f,0x4a,0xbb,0x3a,0xab,0x2d,0x18,0xdf,0x0a,0x04,0xb1,0x57,0xb4,0x3b, - 0x38,0xf9,0x03,0x49,0xd8,0xa8,0x76,0x2c,0x6c,0xc2,0x0f,0xd8,0x90,0x94,0xe0,0x5e,0xab,0x4d,0xcd,0x15, - 0x47,0xe5,0xb3,0x63,0x48,0x78,0x0a,0xe4,0x4b,0x33,0x25,0x4a,0x3d,0xd7,0x85,0x20,0x4a,0xc4,0xd3,0xbb, - 0x90,0x43,0x59,0x50,0x7b,0xe7,0xa1,0xd2,0x55,0xf1,0x5e,0xad,0x68,0x33,0x7e,0x12,0x51,0x41,0x6e,0x92, - 0xb4,0x4d,0x24,0x62,0x69,0x60,0x57,0xab,0x2b,0x44,0xe6,0x45,0x1d,0x52,0x42,0x61,0x39,0xcd,0x12,0xd8, - 0xd1,0x88,0xc1,0x41,0x15,0x1c,0x99,0x59,0x1a,0x5b,0xaf,0xcb,0x9a,0xb5,0x15,0x95,0x09,0x9b,0x7f,0xcd, - 0xe0,0xeb,0xc7,0x4e,0xa8,0xc9,0xd0,0x69,0xdd,0xf7,0xc2,0xf4,0x3d,0x6d,0xf5,0x6d,0xf5,0x0c,0x38,0xd7, - 0xae,0xe0,0x36,0xac,0xfb,0x54,0xab,0xc1,0x11,0xf7,0xbc,0x21,0x2a,0x5c,0x4c,0x47,0x32,0xe3,0x9b,0x0c, - 0x5c,0x7b,0xad,0x19,0xa1,0x37,0x63,0x65,0xb3,0x0b,0x59,0x73,0x57,0x8b,0xf1,0x0e,0x11,0x16,0xbc,0x9b, - 0x10,0x7b,0xfb,0x5e,0x96,0x57,0x74,0x53,0xa5,0x65,0xd5,0x53,0xd7,0x48,0x2f,0x55,0x9e,0x7e,0x00,0xb8, - 0x94,0x66,0xbe,0x3d,0xa8,0x1c,0xb3,0x87,0x69,0xb7,0x92,0x5b,0x01,0x74,0x41,0x4f,0x75,0x2a,0x35,0xec, - 0xc0,0x12,0x95,0x40,0xa2,0x9c,0xa4,0x16,0x39,0x88,0x4c,0x13,0xc8,0xb0,0x89,0x07,0xc7,0x55,0x94,0x20, - 0x68,0x09,0x9f,0x1b,0x96,0x3f,0x54,0x67,0x21,0x34,0xd0,0x05,0x28,0xf9,0x61,0x98,0xce,0x2d,0xd1,0x00, - 0xd7,0xc8,0x22,0x22,0xdf,0x20,0x40,0x24,0x03,0xfd,0x11,0xb5,0x2d,0xd2,0x7f,0xa2,0x0d,0x72,0x69,0x80, - 0xf8,0x03,0xdd,0x00,0x1d,0x51,0x6e,0x40,0x6f,0xfd,0x7a,0x3d,0xe5,0xc8,0x32,0x3a,0x6a,0x4b,0x6a,0xd6, - 0xb2,0x1a,0xbc,0xbd,0xac,0x94,0x0c,0x55,0x87,0xc4,0xf3,0x57,0xb4,0xd3,0xbc,0xae,0xc1,0xa0,0x52,0x01, - 0x4c,0x56,0x21,0x1d,0x60,0xcd,0x45,0xb5,0x0f,0x5d,0x61,0xd1,0xf0,0xec,0x65,0xd5,0x44,0x8e,0xa7,0x29, - 0x36,0xe3,0x82,0xc0,0xb7,0x7c,0x05,0x0c,0xaf,0x8a,0x55,0x2c,0x84,0x22,0x5a,0x28,0x60,0x12,0x4c,0x9f, - 0xd5,0x85,0x73,0x52,0xc5,0x52,0x4a,0x11,0x89,0xbe,0xa7,0x03,0xf4,0xf6,0xfe,0x13,0x73,0xff,0x4f,0xec, - 0xd7,0xe5,0x6e,0xd5,0xab,0xe3,0x66,0x2b,0xf1,0xb8,0xda,0xe1,0x72,0xb5,0x04,0x59,0xd2,0x13,0x33,0x1d, - 0xb1,0x54,0x73,0x02,0x7a,0xf0,0x91,0xaf,0x6f,0x5e,0xe1,0xf1,0xf0,0x4b,0x9d,0x1a,0x8f,0x36,0xce,0x33, - 0x5a,0x88,0xa0,0x76,0xa1,0xe9,0xc8,0x14,0xef,0x48,0x14,0xf3,0x70,0x04,0xa0,0x03,0xd8,0xfb,0xe2,0x60, - 0x28,0x7f,0x1f,0xc8,0xdf,0x87,0x9f,0xc9,0xdf,0x07,0x0f,0xd5,0xdf,0x2f,0x54,0xfa,0xe7,0x43,0x13,0x80, - 0x4c,0x2a,0x7c,0xaa,0x0a,0xa8,0x0a,0x0f,0x3f,0x1d,0x6a,0xf5,0xe2,0x19,0x54,0xdd,0xa5,0xd4,0x83,0xfb, - 0xaa,0x79,0xf9,0x73,0xb0,0xaf,0xfe,0xaa,0xde,0x0e,0x3e,0x53,0x09,0x9f,0x7d,0x7a,0xff,0xef,0xaa,0xcc, - 0xe7,0xf7,0x75,0x25,0xfa,0xf5,0x40,0x37,0x7a,0x55,0x7a,0xe6,0xe1,0xef,0x71,0xf4,0xc5,0xdf,0x89,0x65, - 0x79,0x14,0x1d,0xdc,0xbf,0xbf,0x5e,0xd3,0xe7,0x67,0x9f,0xf2,0xe7,0x17,0xfb,0x63,0xd5,0xf9,0x90,0x12, - 0x1f,0x7e,0xc1,0x89,0x9f,0xfe,0x7d,0xec,0x89,0x21,0x84,0x37,0xf4,0xf8,0xd9,0xa7,0x23,0x20,0x09,0x96, - 0x49,0xee,0x3a,0x05,0x17,0xbe,0xb7,0xef,0xed,0x58,0xc1,0x8b,0xf7,0x21,0x43,0x4b,0xcb,0x97,0xf1,0x4b, - 0x09,0xca,0x46,0x08,0xb7,0x0a,0xbf,0xd6,0xd1,0xea,0x3a,0xdf,0xdc,0xdc,0x65,0xd7,0x63,0x37,0x8d,0xaa, - 0x2c,0xa3,0xcc,0x73,0x40,0x3d,0x3c,0x78,0x08,0xb1,0xce,0xdd,0xbb,0x0f,0xbe,0xc0,0xdf,0x31,0xde,0xda, - 0x94,0x4a,0x50,0x48,0xf9,0x60,0x05,0x87,0xde,0x27,0x5e,0xbf,0xd2,0x01,0xd0,0xc5,0xbf,0xd5,0xa5,0xc6, - 0x85,0x35,0x57,0xa6,0x7d,0x6f,0x40,0x53,0xe1,0x48,0xc8,0xbe,0x9e,0xf2,0x94,0xe7,0x85,0xa7,0xed,0xf2, - 0x67,0x71,0xf9,0xea,0x2a,0xd3,0x81,0xf6,0xc2,0xf7,0x51,0x17,0x81,0xfa,0x3c,0xab,0x16,0x56,0xb0,0x30, - 0x7c,0x0e,0x9e,0x21,0xb2,0x4d,0x7a,0x91,0x10,0xf3,0x70,0x11,0x57,0xe1,0xc9,0x07,0x57,0x14,0x2f,0x7e, - 0xaa,0xda,0xdb,0xe8,0x5a,0x1c,0x6b,0x3c,0x6d,0x04,0xa9,0x74,0x7c,0x1a,0xd9,0x0c,0x60,0x32,0xc0,0x69, - 0x8b,0xe4,0x0f,0xbf,0x23,0xbe,0x7d,0x8b,0x9f,0xe3,0xeb,0xcd,0x50,0x47,0x24,0x62,0x9c,0x70,0x6d,0x0a, - 0x1b,0x74,0x49,0x23,0x7a,0xa1,0xd2,0xa5,0x52,0xa0,0xaf,0x3b,0x04,0x5a,0x1c,0xe9,0xd4,0x4e,0xa7,0x37, - 0x15,0x51,0x0b,0x55,0x68,0x11,0x3e,0x09,0x1b,0x13,0xd8,0x97,0x51,0xd5,0x11,0x81,0x51,0x42,0x9a,0xa2, - 0x51,0xf6,0x1d,0xfc,0x03,0x23,0x89,0x17,0x49,0x59,0xc6,0xa7,0xb8,0xc3,0x2b,0xb9,0xfb,0xd4,0xf5,0x43, - 0xdd,0x88,0xc7,0xa9,0xb7,0xd6,0x1c,0xc3,0x3a,0xe5,0x17,0x94,0x4a,0x94,0x47,0x30,0x19,0xea,0x15,0x92, - 0x70,0x89,0x40,0x53,0xd9,0x0f,0xac,0xc2,0xac,0x23,0x31,0x2d,0xd2,0x93,0x04,0x59,0x4f,0x61,0xea,0xc3, - 0x7a,0x92,0xcc,0xb4,0x49,0x31,0x5d,0x42,0x9c,0xc1,0x6d,0xea,0x78,0x1c,0x6a,0x09,0x45,0x16,0xce,0x3b, - 0x50,0xe4,0x79,0xa5,0x83,0xdc,0xe3,0xb7,0x20,0xbd,0x76,0x8a,0xb3,0xd6,0xfc,0x7c,0xca,0x63,0x41,0x81, - 0xa8,0x59,0x56,0xed,0xd4,0x60,0x4e,0xf4,0xd9,0x09,0x31,0x32,0xb2,0x38,0xad,0x62,0x8d,0x7c,0x5d,0xab, - 0x24,0xc6,0x30,0x13,0xfd,0xd3,0x05,0x1b,0x29,0xfc,0x02,0x41,0x5c,0xab,0x72,0x67,0x31,0x76,0xd4,0xeb, - 0x42,0x40,0x71,0x2b,0x04,0x14,0xa0,0x17,0xdb,0x10,0x60,0xb6,0x97,0xf7,0xb4,0x8c,0x8a,0xee,0xcd,0xc4, - 0x03,0xfb,0x0b,0xbd,0xb0,0xff,0x6d,0x7b,0x1a,0x5a,0x97,0x85,0x5a,0xb6,0xf7,0x19,0x3f,0xf3,0x99,0x0f, - 0xbe,0xdd,0xc5,0x2f,0x20,0xaf,0xaf,0x33,0xa0,0x3b,0xf5,0x80,0x64,0xf5,0x7d,0x6d,0x99,0xd7,0xfb,0x0b, - 0x70,0x31,0xf6,0xad,0x85,0x69,0x41,0xc5,0x5f,0x98,0x2e,0x78,0x73,0x79,0x25,0xc1,0x23,0xab,0x0a,0xb0, - 0xa0,0x46,0xe4,0x7e,0x37,0xe1,0xd4,0x39,0x76,0x76,0xc1,0xbf,0x34,0x1c,0xed,0x07,0xee,0x59,0x33,0x4c, - 0xad,0x76,0x04,0x27,0x43,0xf3,0x5b,0x95,0x9d,0x11,0x0d,0x56,0xd9,0x4d,0x3d,0x2b,0xc1,0x67,0xab,0x8d, - 0x0e,0x28,0x73,0x9a,0x55,0x69,0x7e,0xa3,0x05,0x2b,0x4b,0xb7,0xe0,0x00,0x46,0x37,0xb8,0x34,0x5b,0x71, - 0x32,0xed,0x91,0x48,0xd8,0xb8,0xcd,0x26,0xbc,0xd2,0x5e,0x5b,0x91,0x5a,0x7b,0x73,0x8c,0x17,0x30,0xf4, - 0x16,0xc7,0x8a,0xac,0xf5,0x76,0x6d,0x7b,0xb2,0x55,0x5a,0x01,0x43,0x71,0x99,0xb8,0xe1,0x88,0xe4,0x6e, - 0x09,0x4d,0x71,0xe1,0xe1,0x50,0xd3,0xa3,0x76,0x81,0x4d,0xc8,0xaf,0xe1,0xa5,0x4a,0x3c,0x62,0x6a,0xcf, - 0x38,0x93,0xdd,0xb4,0x3c,0x39,0x3a,0xa4,0x3d,0x0f,0x0b,0xf2,0x09,0x09,0x9f,0x81,0x28,0xb2,0xb5,0xb5, - 0x19,0xf2,0x2d,0xc0,0x91,0x78,0x1a,0x7e,0x2e,0x82,0xfd,0x5b,0x5d,0xc7,0xaa,0xb0,0x70,0x91,0xfc,0x31, - 0xe1,0x77,0x89,0x9e,0xb7,0x1c,0xb9,0x8a,0x00,0xbe,0x10,0x42,0x1a,0xd1,0x3c,0x14,0x21,0xbd,0x80,0x80, - 0x7a,0x85,0x0c,0x9e,0x1b,0x1b,0x84,0xce,0x1b,0xec,0xda,0x2a,0x18,0xaf,0x74,0xd0,0xdf,0xfd,0xa1,0x7d, - 0x6f,0xad,0x02,0x93,0xce,0x1a,0xd8,0x0d,0x9e,0xc9,0xf6,0xc7,0x87,0x63,0x54,0x07,0x30,0xaf,0x49,0x1e, - 0x2b,0xa8,0x39,0x0f,0x41,0x53,0x3d,0x75,0xdc,0xf3,0xbb,0x77,0x3d,0x7e,0x4c,0xdc,0x6c,0x6a,0x91,0xfe, - 0xdd,0xbb,0xb9,0xe9,0x99,0x98,0xd2,0x19,0xb5,0xee,0x7b,0xcf,0xe7,0x3d,0x99,0x45,0x0f,0xab,0xdd,0x4b, - 0xcb,0x1e,0x9c,0xcc,0xf4,0xe8,0x0e,0xe8,0xf1,0x5a,0xf7,0x12,0x11,0x99,0x96,0x3d,0x98,0x3f,0xf4,0xce, - 0xe2,0xcb,0x44,0x2a,0x48,0x79,0x2a,0x3c,0x20,0x2e,0xa8,0x63,0xee,0x6d,0x9c,0x0e,0xb6,0x60,0x41,0x0c, - 0x20,0x9c,0x87,0x36,0x57,0xa4,0xeb,0x06,0x58,0xc0,0xf3,0xd9,0x8a,0xfe,0x81,0x8a,0xe5,0x96,0xf6,0x84, - 0xb7,0x9f,0x8d,0x3d,0x98,0x4f,0x35,0x97,0x65,0x48,0xa9,0xd5,0x68,0x01,0xe1,0x17,0xc4,0x99,0xca,0xeb, - 0x7f,0x98,0x86,0xf1,0x20,0xf5,0x25,0xf6,0x04,0x8e,0xc6,0xd3,0xa8,0x85,0x28,0xa6,0xd4,0x13,0x5d,0x2e, - 0x1d,0x0f,0x24,0x9b,0xd1,0x53,0x8b,0x9e,0x4b,0x61,0x37,0xb8,0xcc,0x21,0x0f,0xb7,0xe5,0x44,0xb5,0x3b, - 0x04,0xab,0x35,0xb8,0x96,0xd3,0x4c,0x2a,0xb4,0xf0,0x6e,0xd4,0xe8,0x23,0xc6,0xcf,0xf3,0x6c,0xb5,0x3e, - 0x23,0x6f,0x3e,0xca,0xfa,0x7d,0x96,0xcf,0x78,0xd7,0xca,0xff,0x6b,0x81,0x67,0x05,0xeb,0x59,0x9f,0xd5, - 0x53,0x3c,0xa5,0x2b,0x56,0xe0,0x31,0x1f,0x6d,0x09,0x4b,0x4a,0x3f,0xc4,0xc6,0x42,0xb5,0xe3,0x6d,0x58, - 0x87,0x65,0x14,0xe4,0xfd,0x28,0x0d,0x4d,0xb2,0xc8,0x24,0x0e,0x85,0xee,0xce,0x83,0xb1,0xc7,0xce,0x46, - 0x87,0xe7,0x75,0x02,0x90,0xc9,0x8c,0x28,0xfd,0x95,0x38,0xa5,0xf3,0x46,0x7a,0x08,0xd2,0x6d,0x2e,0x1e, - 0xb1,0xe3,0x8d,0x68,0xc9,0x7b,0xff,0x83,0xc7,0x3a,0xa6,0x31,0x83,0x30,0xa7,0x1d,0x81,0xc8,0x8f,0xba, - 0x0c,0x86,0xf8,0x57,0x73,0x1c,0xb7,0xce,0xa4,0xda,0x30,0xfb,0xe8,0xae,0x6a,0x54,0x38,0xa2,0xea,0xac, - 0x66,0x3e,0x43,0x09,0x3e,0xdd,0x94,0xad,0xe8,0xe9,0x30,0x4b,0xd1,0x9e,0x09,0xd6,0x56,0x7f,0xb0,0x6d, - 0xb8,0x1e,0x1d,0x2f,0xdd,0x28,0x6d,0x6e,0x4a,0x4c,0x13,0x4a,0x27,0x9a,0xe1,0x8b,0xd5,0xbb,0x34,0x38, - 0x2b,0x19,0xff,0x50,0x71,0xb4,0xb1,0x62,0xce,0x45,0xeb,0x95,0xf9,0x36,0x35,0x10,0x55,0x20,0x3b,0x62, - 0x4a,0x87,0xe8,0x76,0x5d,0x36,0x3c,0xd8,0x0f,0x26,0x4e,0x05,0x3d,0x5a,0xf9,0x2b,0x6a,0xe1,0xa6,0xba, - 0xaa,0x45,0x34,0x6e,0xda,0xef,0x9b,0x45,0xdd,0x70,0xb8,0xbb,0x0d,0x6f,0xea,0x61,0xb4,0xf7,0x2f,0xff, - 0x78,0x16,0xf4,0xf7,0xc2,0x73,0xfe,0x79,0x85,0x9f,0xef,0x68,0x99,0xde,0x44,0x07,0xe1,0x93,0xe8,0x7e, - 0x78,0x27,0x7a,0x10,0xbe,0xa2,0xef,0xaf,0xa2,0x87,0xe1,0xeb,0xe8,0xd3,0xf0,0x59,0xf4,0x59,0xf8,0x7b, - 0xf4,0xf7,0xf0,0x79,0xf4,0x79,0xf8,0x03,0x18,0xfa,0x1f,0x8e,0x5e,0x4d,0xa2,0xeb,0xab,0x72,0x48,0x7f, - 0x43,0x66,0x03,0x87,0x47,0x0f,0xc2,0x77,0x93,0xd0,0x3b,0xf2,0x86,0x47,0x5f,0x4d,0x42,0xba,0xe4,0x87, - 0x47,0xbf,0x4f,0x36,0xe1,0x0f,0x47,0x07,0xaa,0xe4,0x01,0xe5,0x0e,0x28,0xf7,0x7e,0x67,0xa9,0xfb,0xaa, - 0xd4,0x7d,0xb7,0xbd,0x7d,0xf5,0x57,0xb8,0x4a,0xf9,0x40,0xf1,0x07,0x54,0xfc,0xb6,0x72,0x21,0xf7,0x1a, - 0xbe,0xd1,0xfd,0xf2,0x2f,0xee,0x19,0xbf,0xa4,0x6f,0xfa,0x85,0xe6,0xbe,0xa2,0xe6,0xbc,0x7b,0x94,0xf5, - 0x1a,0xf5,0xee,0x79,0xf7,0x86,0x47,0xcf,0xea,0xe9,0x84,0x4f,0xe8,0xd7,0xc4,0x43,0x63,0x77,0xa4,0xe2, - 0x73,0xb6,0xe7,0x43,0x96,0x0c,0xe7,0xb5,0xae,0x8f,0x04,0xa7,0xc4,0x6b,0x55,0xe2,0x19,0x95,0xe0,0x76, - 0x5b,0x25,0xd0,0x91,0x6c,0xcc,0xd7,0x6c,0xf3,0x4c,0xa4,0x5a,0xb1,0x4a,0xd6,0x6c,0xcb,0xb9,0xde,0x1d, - 0x1f,0x1d,0xcf,0x06,0x93,0xfe,0xfa,0x1e,0xfb,0xc0,0xba,0xb7,0xf6,0xd8,0x2d,0x96,0x17,0x50,0x39,0x38, - 0x26,0xda,0x82,0xb6,0xba,0xb1,0xd6,0x4b,0x0b,0x6b,0x31,0x94,0xbd,0xa6,0x4b,0xad,0x2d,0xa1,0xb2,0x31, - 0x96,0x85,0xb0,0x2a,0xe8,0x67,0x74,0xc8,0xb3,0x74,0xd8,0xbb,0x18,0xa1,0x7c,0x70,0xe0,0x16,0xd1,0xee, - 0x01,0x5d,0x8d,0xaf,0x38,0xee,0xdd,0x19,0xc0,0x05,0x67,0xe6,0xec,0xe8,0xcd,0xc4,0x31,0xee,0xd0,0xf7, - 0x54,0xc6,0xba,0x3c,0x02,0xbd,0x70,0x51,0x28,0x19,0xb0,0xd5,0x3f,0x7a,0xd7,0x51,0x03,0x92,0xda,0x71, - 0x16,0x15,0xc3,0xac,0x4f,0x84,0x3f,0x15,0x7a,0xe2,0x14,0x42,0x25,0xa2,0x8c,0xe6,0x04,0xfb,0x94,0x77, - 0xc7,0xc9,0x83,0x46,0xe4,0xe3,0xfd,0x60,0xbe,0xbb,0x4b,0xc3,0xfb,0x2a,0x94,0xa2,0xe6,0x2d,0x12,0xa3, - 0xdd,0xc1,0xd3,0x87,0x9f,0x45,0x4b,0x76,0x99,0x67,0xc4,0xa2,0x18,0x3b,0xd4,0x31,0x47,0x4a,0x06,0xbe, - 0x62,0x87,0xf1,0x8b,0x7e,0x1f,0xfe,0x13,0x59,0x59,0x08,0x3e,0x17,0x17,0x78,0xb1,0xd8,0x69,0xf0,0xd3, - 0x9c,0xd1,0x3f,0x60,0x6c,0xbd,0xa2,0xc6,0x5f,0xd3,0xad,0x7c,0x8f,0xd5,0xba,0xd6,0x6b,0x7c,0x3f,0xbb, - 0x7b,0x97,0xc0,0x02,0xdf,0xc6,0x77,0x37,0x35,0x4b,0xd8,0x9a,0x1a,0xee,0x57,0x6a,0x8c,0x88,0xb0,0xec, - 0x07,0xca,0x8a,0x6b,0x06,0xb1,0x18,0xe8,0x9c,0x32,0xfa,0xe1,0x68,0x35,0x09,0x08,0xef,0xac,0xd7,0x25, - 0x2b,0x82,0xae,0xd7,0xcf,0x21,0x5b,0x7e,0xae,0xb5,0x82,0xb8,0x4f,0xd8,0xb1,0x84,0x7e,0x1c,0x9d,0x1d, - 0xe5,0x74,0x06,0x27,0xf2,0x0e,0x9b,0xe3,0xa0,0x15,0x91,0x59,0xd2,0x62,0x5c,0x0d,0x0b,0x99,0x3e,0xf1, - 0x3f,0x81,0xd3,0x40,0x14,0xfd,0x6e,0x9c,0xa3,0x8a,0xb2,0x9b,0x21,0x48,0x35,0x8c,0x44,0xf0,0x3f,0x0c, - 0xb2,0x6b,0x13,0xda,0x40,0x76,0x9a,0x54,0x00,0x31,0x16,0xe4,0x36,0xee,0x46,0xc8,0xc8,0xab,0xda,0x41, - 0x6b,0xfd,0x08,0xa3,0xbd,0x6f,0x6b,0xf8,0x84,0xc7,0x5a,0x9e,0x77,0xd1,0xa0,0x30,0x10,0xde,0x0d,0x43, - 0xd7,0xee,0xb4,0x9d,0x96,0x2c,0x6b,0x9f,0xda,0xd4,0x8c,0x90,0xb4,0x72,0xc1,0x9d,0x8f,0xb4,0xe3,0xed, - 0xf8,0xa8,0x38,0x2a,0x27,0xd6,0x63,0x07,0x94,0xcd,0x82,0x6b,0x71,0x43,0xa5,0x6c,0x13,0xe2,0x68,0x1a, - 0x96,0x35,0x32,0x8d,0xe5,0xb4,0xbe,0xd8,0x72,0x72,0x46,0x35,0xff,0x07,0x6e,0x1c,0xda,0xb2,0xe6,0x75, - 0x49,0x88,0xc7,0xf5,0xda,0x4b,0xb2,0xdd,0x9f,0xde,0x78,0x2c,0xcf,0x75,0x79,0xed,0x3a,0x8f,0x2d,0x92, - 0x14,0x8b,0xcb,0xe4,0xa5,0x0a,0x63,0x6e,0xc9,0x80,0x24,0x1d,0x56,0x94,0x99,0x25,0xe2,0xe1,0xd4,0x91, - 0x72,0x65,0x7d,0x21,0x0f,0x7c,0xf2,0x35,0xe7,0x7c,0x22,0x57,0x22,0x56,0x60,0x93,0xdf,0xeb,0x35,0x18, - 0xe5,0xa7,0xaa,0xc8,0x45,0x5a,0xc2,0x15,0x08,0xfa,0x96,0x5f,0x22,0xf0,0xd4,0xde,0xa5,0x21,0x54,0x48, - 0x58,0xb6,0xe0,0xa4,0x83,0xab,0x8d,0x2c,0xbe,0x57,0x58,0xde,0x9d,0x1d,0xf9,0xa5,0x7b,0x57,0x13,0x65, - 0x7d,0x28,0xab,0xb0,0x9d,0x2e,0x95,0xec,0x14,0xdd,0x43,0xa7,0xec,0xc1,0x20,0x91,0xa4,0x5b,0xea,0x40, - 0x24,0xee,0xce,0x96,0x2c,0xd5,0xae,0xbb,0xa0,0x78,0x79,0x07,0x61,0x2f,0x79,0xf6,0xa2,0xba,0x39,0xe0, - 0x06,0x58,0xbe,0xf0,0xb2,0x6e,0x26,0xae,0xdd,0x05,0x10,0x12,0x94,0x64,0x7e,0x3f,0x68,0x40,0xbe,0xc2, - 0x2a,0xfe,0x0e,0xd4,0x19,0xb3,0xf5,0xba,0xf0,0x2b,0x69,0xd0,0x39,0x2e,0x12,0x4e,0x5b,0x1b,0xa5,0xbf, - 0x85,0xd3,0xd8,0x9f,0x5f,0xf8,0xfa,0xbd,0x33,0x0b,0x5d,0xa8,0x19,0xc2,0x7d,0xa3,0x80,0x0a,0x91,0x5d, - 0x0d,0x20,0x19,0xc6,0xa1,0x03,0x1e,0xc3,0x92,0x28,0xb2,0xf0,0xc7,0xe8,0xfa,0xf2,0x62,0x78,0xbd,0xa9, - 0x2b,0xd2,0xef,0x66,0x4d,0x4a,0x72,0xab,0x5e,0xd7,0x1c,0xde,0xa6,0x39,0x06,0xb4,0x25,0x30,0xc3,0x99, - 0x7a,0xd9,0xf0,0xd1,0xb9,0x03,0x94,0xb1,0xd1,0x97,0xcb,0x0b,0xdb,0xf5,0xb0,0x4c,0xb6,0xe3,0x78,0x9d, - 0x69,0x5f,0xd0,0xd2,0xde,0xa8,0xf1,0x0d,0xe9,0x4b,0x0d,0xf6,0xb4,0x3b,0x44,0x43,0x62,0x63,0xa0,0x1a, - 0x1b,0x36,0xcb,0x56,0x9b,0xd0,0xee,0xb4,0x93,0xdd,0x6f,0xfb,0x42,0x70,0x37,0xba,0x56,0x37,0xb3,0x9b, - 0xda,0x22,0x3b,0x70,0x1a,0x6b,0x18,0x0e,0x30,0xb7,0x67,0x87,0x30,0xc9,0x2c,0x5b,0xcd,0x8a,0x11,0x60, - 0xf6,0x78,0xf7,0x20,0x90,0xf7,0xe9,0x29,0xe4,0x98,0x50,0x90,0xf4,0x3b,0xc6,0x14,0x36,0x87,0xe3,0xc8, - 0xb6,0x9a,0xe6,0x95,0x22,0xfb,0x73,0x5c,0x82,0xd3,0xe2,0x0d,0xee,0x70,0x25,0xdf,0xbb,0x83,0xa6,0x9d, - 0x10,0x15,0xb6,0x41,0x43,0x63,0x31,0x6c,0xfb,0x86,0xb3,0x4e,0xa7,0xc8,0xcd,0x2a,0xc4,0x08,0xb2,0x13, - 0xf4,0x66,0x62,0x2b,0xf0,0xc5,0x26,0xbc,0x9e,0x25,0xc9,0x52,0x54,0x93,0xdb,0xb3,0x53,0x62,0x4c,0xf7, - 0xaa,0xdf,0xa9,0x51,0x13,0x1d,0xb4,0x1a,0x7f,0xb5,0x6e,0x9c,0x44,0xc7,0x32,0xb9,0x70,0xd7,0x81,0x05, - 0x64,0xd6,0x62,0x08,0xe0,0x5b,0xab,0xc1,0x9e,0x3d,0xee,0x10,0xfb,0x0b,0x2b,0x16,0x9d,0xcb,0x7e,0xf9, - 0x1b,0xe3,0x0f,0xaf,0xd3,0x0b,0x22,0xd5,0x53,0xc8,0xdb,0x65,0x0a,0x3f,0xa2,0x61,0x3a,0xef,0xf6,0x98, - 0x1b,0x9b,0x80,0x42,0xfa,0x6c,0x6e,0x29,0x1a,0x2b,0x00,0xa0,0x5c,0x25,0xe0,0x2e,0xd9,0x03,0xf8,0x8f, - 0xcd,0x7b,0xe2,0xf6,0xfa,0xee,0xe3,0x82,0x6e,0xc6,0x39,0xfc,0xb7,0x37,0x62,0x3f,0x34,0xe8,0x26,0x64, - 0x5d,0x6e,0x99,0xab,0x7e,0x74,0xaf,0xcb,0x97,0x49,0xd5,0x71,0xfa,0xb0,0x1b,0x58,0x6f,0xfd,0x55,0x2f, - 0x7b,0xc2,0x9d,0xb9,0x18,0xe9,0xb6,0x4e,0xdd,0xd2,0x1d,0xf5,0x3f,0x74,0x10,0x6e,0x35,0x3d,0x18,0x85, - 0x0c,0x6f,0x1c,0x85,0x2a,0x63,0x17,0xef,0xee,0xd4,0xdc,0xcb,0x3c,0x4c,0x8d,0x5b,0x6f,0x6c,0xdb,0x94, - 0x72,0xab,0x74,0xb7,0x6f,0x91,0x06,0x28,0xde,0x89,0xb0,0x6f,0xec,0xad,0xb3,0xc6,0xf6,0xa6,0xba,0x47, - 0xd1,0x7d,0xcb,0x27,0xee,0x91,0xb7,0xc1,0xfd,0xa6,0xed,0xd5,0x87,0xa7,0x5d,0xbb,0x01,0xec,0x37,0x35, - 0xd2,0x38,0x48,0xed,0xb6,0x1c,0x98,0xbf,0xa9,0x25,0xe7,0x2c,0x35,0xda,0x81,0x72,0x99,0xf2,0xea,0xe4, - 0xe8,0x1a,0x11,0x73,0x95,0x9a,0x96,0x60,0xe0,0xad,0xe4,0xf8,0x0a,0x1a,0x94,0xd0,0x5f,0x43,0x8e,0x3c, - 0xc8,0x33,0x59,0x76,0x84,0xca,0xe9,0x04,0x86,0x1b,0xc3,0xac,0xd1,0x59,0x5a,0x7e,0x6d,0x53,0x62,0x1d, - 0x2e,0x71,0x12,0x44,0x6c,0xf4,0x2d,0x94,0xa9,0x3a,0x72,0x48,0xb8,0x66,0xab,0xdd,0x62,0xb0,0x4a,0xf3, - 0x86,0x0a,0x27,0xb7,0xb0,0xef,0x34,0xaa,0x49,0x2a,0x97,0x02,0xaa,0x54,0xdc,0x5d,0x97,0xec,0x9f,0x1a, - 0x96,0x61,0x2a,0x06,0x43,0xac,0x8a,0xa9,0x23,0x12,0xef,0xb0,0x02,0x81,0xdd,0x87,0xa5,0x9d,0xaa,0x1f, - 0x49,0x11,0x29,0x9c,0xb8,0x26,0xa7,0xdc,0x46,0xb3,0x81,0x2d,0x3d,0xb1,0xa9,0xd3,0xdc,0x22,0x9a,0x6a, - 0x3e,0x60,0x51,0x5b,0x4f,0xff,0x63,0xe8,0x05,0xec,0xa5,0xc4,0xd7,0x81,0xb1,0xe0,0x70,0x9c,0xa7,0xbf, - 0x50,0xd3,0x87,0xb9,0xa8,0x0e,0xd1,0xc2,0x11,0x0a,0x16,0x9c,0x3c,0x5c,0x34,0xd6,0x11,0x15,0x9b,0x30, - 0x60,0x87,0x94,0x8e,0xb2,0x10,0x3a,0xce,0xe2,0xab,0x60,0xcf,0xff,0xc7,0xf0,0xe8,0xf8,0xea,0x78,0xf7, - 0xed,0x7a,0x30,0xe9,0x07,0x7b,0xa7,0xb5,0xb6,0xf9,0x14,0x9a,0x0f,0x25,0xf8,0xd4,0xb2,0xf1,0xe4,0xcc, - 0x6b,0x25,0xea,0x1e,0xe5,0xd1,0x14,0xf1,0x7e,0x16,0xca,0xba,0xdb,0xbf,0x4f,0x9c,0xb3,0x7e,0x17,0xab, - 0xf7,0x93,0x47,0xb1,0xa2,0x51,0x78,0x45,0x7c,0xa5,0x84,0x78,0x6a,0x95,0x88,0xf0,0xac,0x13,0x85,0x1a, - 0x1f,0x2a,0x3f,0x0d,0xd2,0x8a,0x03,0x6b,0xb0,0xf8,0xb3,0xae,0x66,0x06,0x2d,0x76,0x75,0xd4,0xfb,0x0a, - 0x0a,0xed,0x10,0xb9,0x89,0xa5,0x77,0x32,0xeb,0xb1,0x8a,0xbb,0xf2,0x61,0x38,0x8b,0xea,0x0a,0xa3,0x79, - 0x34,0x53,0x61,0x53,0x78,0x6c,0xb3,0xc6,0xf5,0x87,0xa8,0xe4,0x22,0xa2,0x9f,0x35,0x9f,0x31,0x57,0x6a, - 0x21,0x89,0xa1,0xf3,0xf5,0x34,0xad,0x93,0xe7,0xa3,0xc4,0x1c,0x8a,0x46,0xe3,0xd8,0x98,0x44,0x2f,0xc2, - 0x79,0x30,0x8c,0x6b,0xd6,0xcf,0xdd,0x2c,0xa5,0x68,0xeb,0x6e,0x97,0x2b,0xf8,0xad,0x11,0xaf,0xbb,0xa2, - 0x26,0x10,0x4b,0xad,0x05,0x14,0x55,0xe3,0x42,0x59,0x98,0x21,0x5e,0x7a,0xa3,0x2f,0x33,0xe5,0x16,0x86, - 0xd0,0x07,0xcc,0x3e,0x4e,0x76,0x67,0x55,0x08,0xab,0x52,0x53,0xce,0x48,0xa0,0x09,0x10,0xc6,0x85,0xdf, - 0x55,0x23,0x0b,0x21,0x9f,0x35,0x35,0x54,0xc0,0xf9,0xe9,0x70,0xda,0x1c,0x53,0x0b,0x52,0x6b,0x0a,0x51, - 0xf9,0x1f,0x6a,0xaa,0x19,0xee,0x3e,0x1c,0xc5,0xbb,0xbb,0xbd,0xc7,0xfb,0xa3,0x00,0xaa,0x7f,0x96,0x4a, - 0x6a,0xdc,0x7f,0xc8,0x7c,0xf8,0x8e,0x51,0xad,0xf1,0xd4,0xf3,0x4b,0xaa,0x50,0x9b,0x72,0x87,0x90,0xc3, - 0xd2,0xaf,0x34,0xcc,0x74,0x65,0xa2,0xd1,0xd5,0x50,0x91,0x85,0x8a,0xeb,0x6c,0xbe,0x64,0x03,0x8a,0xd5, - 0x82,0x87,0x2c,0x65,0x88,0x2f,0xca,0xed,0xf0,0xba,0xf8,0x78,0x78,0x55,0x3a,0x2d,0x2b,0x0b,0x64,0x1d, - 0x65,0xa9,0xc4,0x28,0x4b,0xe5,0x96,0x7d,0x7d,0x0b,0x16,0xa7,0x21,0xbc,0x6c,0x16,0xca,0x0f,0xb4,0xbb, - 0xec,0x2e,0xce,0x6e,0x3c,0x1b,0xb4,0xd6,0xfb,0x00,0xfa,0xbf,0xbc,0xde,0x55,0x43,0x05,0x18,0x62,0x29, - 0x35,0x5c,0x81,0xd6,0x80,0x96,0x50,0x8d,0xb4,0xe0,0x2b,0x04,0xc3,0x52,0xa7,0xa9,0x83,0xd2,0x64,0xa3, - 0x6c,0x33,0x9d,0x4a,0x9b,0x0b,0x35,0x2f,0x86,0x0e,0x6c,0xa6,0xb5,0xe3,0xda,0xdb,0x56,0x6d,0xdf,0x36, - 0xe0,0x19,0x1d,0x8a,0xbd,0x6b,0xb3,0xf2,0x3f,0xbb,0x59,0x36,0xbd,0x9f,0xca,0x9d,0x75,0xc3,0xce,0xd0, - 0x69,0xa2,0x63,0x51,0x34,0xf8,0x90,0xe6,0x2c,0xeb,0xc7,0xc6,0x71,0xfb,0x4a,0xa9,0x58,0xbd,0xcf,0x5a, - 0x5d,0xf3,0x5c,0xcb,0x95,0xb7,0x2d,0x35,0x24,0x02,0x43,0xcf,0x6b,0x9e,0xc1,0x69,0xe7,0x02,0x1b,0xab, - 0x23,0x31,0xdf,0x6d,0x81,0xc5,0xa7,0xa3,0x52,0x81,0x45,0x7c,0x54,0xda,0x60,0x51,0xf6,0x3f,0xad,0x35, - 0xf6,0xc6,0xb5,0x54,0x2c,0x65,0xc5,0xeb,0x83,0x20,0xcc,0x7d,0x85,0x33,0x2c,0x70,0x99,0x0a,0xc5,0x41, - 0x7d,0x1b,0x78,0x88,0xe9,0xca,0x4b,0x79,0xc0,0x72,0xcf,0x37,0x60,0xd8,0x1d,0xb5,0xad,0xb4,0x7c,0x04, - 0xc9,0x64,0x6b,0xbc,0xf7,0x47,0x85,0x1a,0x2f,0xfb,0x47,0xa8,0xc7,0x5b,0xf4,0xef,0x1b,0x30,0x4e,0xcd, - 0xb8,0xa6,0x6a,0x60,0xe9,0x87,0xc2,0x71,0x58,0x99,0x91,0xeb,0x40,0x33,0x69,0x73,0xa5,0x9b,0xa8,0xd7, - 0x32,0x95,0x16,0x0b,0xb5,0xd6,0xa8,0x1f,0x8c,0x72,0x35,0xea,0x02,0x36,0x46,0xf5,0xa8,0xf3,0xfe,0x03, - 0xfd,0xc4,0xd6,0xc0,0x6e,0x45,0x50,0x63,0x36,0x17,0x40,0x59,0x9a,0x84,0x27,0x9e,0x49,0x8b,0xc9,0x6f, - 0x0c,0xad,0x41,0x7d,0xca,0x15,0x7e,0xcb,0x22,0x54,0x8d,0x26,0x29,0xd7,0xd1,0x9d,0xea,0x20,0x14,0x0d, - 0xef,0x67,0x51,0xdb,0x84,0xe0,0x20,0x7f,0x6c,0x34,0x56,0x6e,0x6f,0x8c,0x7d,0xf0,0x76,0xb4,0xd2,0x94, - 0xd0,0xb4,0xb5,0xb9,0x3e,0xa4,0x91,0xb3,0xc1,0xaa,0x4a,0x17,0x03,0xf1,0x89,0xb8,0x75,0xb4,0x5d,0x93, - 0x77,0x99,0x84,0x5b,0x66,0xdf,0x60,0x13,0xb6,0x2e,0xc2,0xd6,0x46,0x9d,0x09,0xb4,0x5b,0xeb,0x5c,0x8c, - 0x3f,0xdd,0xd8,0x96,0x45,0xe9,0x9e,0x44,0x6b,0x6d,0x44,0xd3,0x24,0xfd,0xc3,0xf4,0xdf,0x41,0x90,0x68, - 0x62,0xb5,0x82,0x47,0x6c,0x02,0x58,0x20,0x6d,0xa2,0xd2,0xcb,0x00,0xf2,0x4e,0x18,0x9b,0xf2,0x23,0x82, - 0x10,0xb3,0xc8,0x87,0x4b,0x30,0x3b,0xb3,0xcd,0x25,0x20,0x1d,0xd6,0x05,0x7d,0xef,0xed,0x5b,0x44,0x4a, - 0xd0,0x17,0x6c,0x5b,0x80,0x7b,0xb4,0x30,0xf8,0x0b,0xfe,0x9c,0x6e,0x2c,0xc8,0x62,0xc2,0x0e,0xed,0x4a, - 0x3f,0x86,0xd2,0x71,0xb8,0x52,0x7c,0x73,0x4b,0xc6,0xf7,0x76,0xd6,0x42,0x05,0xcc,0x7d,0x98,0x81,0x6f, - 0x69,0x56,0x14,0x16,0xa5,0x45,0xfb,0xb9,0xa3,0xb5,0xa6,0xf5,0x45,0xd0,0xb8,0x0a,0xb7,0x4b,0x6c,0xc2, - 0x6c,0xfb,0xdd,0x58,0xfc,0xaf,0xb8,0x1b,0xc5,0x45,0x61,0x65,0xee,0xc6,0x02,0x26,0xfe,0xee,0xba,0xcc, - 0x3a,0x49,0x93,0x6d,0x38,0xfd,0x60,0x3b,0x4e,0x3f,0x98,0x68,0xc3,0x0a,0x0b,0x6d,0xe5,0x2d,0x33,0x25, - 0x6d,0xff,0x30,0x6e,0xe9,0xd2,0xc3,0x50,0x7b,0x2c,0xd1,0x9f,0xf1,0xc8,0x0f,0xc3,0x22,0x8e,0x5a,0x02, - 0xef,0x10,0xdc,0x1a,0x5f,0x67,0xd6,0x37,0xe2,0x92,0xd2,0x07,0x47,0x5d,0xf5,0xa5,0x22,0x07,0x5c,0x15, - 0xf3,0xa5,0xec,0x06,0xf3,0xa5,0x4c,0xcc,0x97,0xa4,0x4e,0x10,0x76,0xe4,0x1f,0x4c,0x54,0x6f,0x6c,0xb5, - 0xa4,0xe0,0x11,0xc1,0xed,0x39,0x72,0x69,0x03,0xf1,0xd8,0x12,0x85,0x5b,0xd0,0x8e,0x23,0x53,0xd8,0x8a, - 0x74,0xb6,0x34,0xe8,0x60,0x89,0x66,0x4b,0x9d,0x08,0xe7,0x4f,0x35,0xb4,0x05,0xd9,0x74,0x0d,0x7d,0x3b, - 0xaa,0x91,0x9e,0xff,0x7f,0x45,0x34,0xcd,0xd7,0xa0,0x2d,0x68,0xa6,0xa3,0x58,0x8d,0x64,0xec,0x05,0xbc, - 0x15,0xc5,0x64,0x1f,0x88,0x62,0x9c,0x46,0x6f,0x45,0x30,0x52,0xfa,0x76,0xf4,0xd2,0x90,0xe5,0xfe,0x97, - 0x23,0x97,0xec,0x76,0xe4,0xd2,0xed,0x5a,0xe9,0xff,0x22,0x97,0x0e,0xe4,0x92,0x19,0xe4,0xa2,0x34,0x41, - 0xc4,0x50,0x40,0x89,0x80,0x52,0x22,0xf8,0xac,0x85,0x0d,0x7f,0x0c,0x68,0x9d,0xe3,0xcb,0x38,0x5d,0xc4, - 0x27,0xe9,0x22,0x45,0x7e,0x74,0xed,0xde,0x97,0xc3,0xf7,0xce,0x4b,0xe0,0xf0,0x04,0x5b,0xc3,0x1a,0xbd, - 0x8b,0x85,0x1d,0xb7,0x17,0xbe,0x18,0xce,0x22,0x82,0xc2,0x4b,0x82,0x7d,0x4a,0xba,0x7b,0x57,0x01,0xdc, - 0x99,0x4e,0xd1,0x26,0x96,0x03,0x2f,0xe0,0x19,0x25,0xba,0x19,0x09,0xc9,0xd4,0x35,0xde,0xf7,0x54,0xbb, - 0x1e,0xad,0x77,0x47,0xf4,0x57,0xaf,0x09,0x4a,0x87,0xdb,0x04,0xae,0x28,0x02,0x27,0x36,0x59,0x74,0xb6, - 0xa5,0xc9,0xcc,0x69,0xb2,0x6a,0xb7,0xd7,0x7e,0x1f,0xb3,0x5f,0x7e,0xfe,0x57,0x80,0x5f,0xa2,0xf4,0x56, - 0xb5,0x45,0x76,0xcd,0x4f,0x11,0xdb,0x42,0x5c,0xa8,0x31,0xfb,0x6a,0xd2,0xea,0x89,0xcd,0xab,0x6c,0x36, - 0xb5,0x55,0xc4,0xcd,0x73,0x9c,0x7e,0xdc,0x24,0x5b,0x0c,0x4e,0xda,0xc5,0x96,0xa5,0x86,0xc1,0x49,0xed, - 0x69,0xa6,0x60,0xcb,0x84,0xcb,0x6f,0x4c,0x33,0xb7,0xd8,0xb3,0x1c,0xf3,0x34,0xd6,0x69,0x79,0x6b,0x9e, - 0x61,0x66,0x66,0x5a,0x7c,0xcc,0x4c,0x93,0x8f,0x9f,0xa9,0xf2,0x97,0xe8,0x8e,0xb5,0x60,0xe6,0xa9,0x0a, - 0x8d,0xde,0x6f,0xd1,0xe2,0x1d,0x3f,0x7c,0x54,0xb3,0xff,0x5e,0x18,0x33,0x3c,0x71,0xa2,0x6d,0xf6,0x66, - 0x16,0x74,0x75,0x70,0xbb,0x1f,0x3a,0x8f,0x8e,0xb3,0xf7,0xdf,0x3b,0x8f,0xec,0xf6,0x79,0xc0,0xe6,0xfa, - 0x5d,0x9a,0xf9,0x6f,0xf1,0xd3,0x18,0xff,0xf9,0x1e,0xce,0x39,0x47,0x68,0x98,0xaa,0xa8,0xee,0xec,0x38, - 0xec,0xac,0x8e,0x3f,0xe6,0x5f,0x89,0x9b,0xc5,0x2b,0xa5,0xb5,0x43,0xe3,0x35,0xaa,0x03,0x62,0x14,0xf5, - 0x02,0xa4,0xd0,0x9b,0xaa,0xa0,0xca,0xa7,0x84,0x29,0x47,0x85,0xd8,0x47,0x15,0x03,0x15,0x4d,0x1c,0x98, - 0x51,0xe1,0xba,0xc8,0xfb,0xfb,0xe0,0xc1,0xe0,0x81,0x17,0x76,0x99,0x6a,0x49,0xa4,0xe7,0xbb,0x77,0x55, - 0xc4,0xe7,0x9f,0x11,0x83,0xa6,0xfe,0x3d,0x58,0x95,0x89,0xff,0x82,0x10,0xb3,0x52,0x1f,0x32,0xd6,0x2e, - 0xd7,0x49,0x36,0xbc,0xe6,0xa8,0x9a,0x43,0xef,0x4d,0x15,0xa7,0x45,0xe9,0x85,0xe5,0xfb,0xb2,0x4a,0x2e, - 0x9e,0x3f,0xa3,0x14,0xfe,0xd5,0x7b,0xfe,0xcc,0x0b,0xe7,0x69,0x71,0x71,0x15,0x17,0xc9,0xcf,0x32,0x96, - 0xa1,0xf7,0xb5,0x4a,0xe8,0xa9,0xd1,0x0d,0x7b,0x5e,0x38,0xcd,0x97,0xef,0x25,0x72,0x86,0xf7,0x54,0xff, - 0xec,0xfd,0xcf,0xff,0xa7,0x77,0x7f,0xff,0xe0,0xef,0xbd,0x17,0x71,0x71,0xde,0xbb,0x8c,0xb3,0xde,0x8f, - 0x49,0x56,0x5e,0xe5,0xab,0x19,0x1d,0xab,0x45,0x1e,0xc3,0xe3,0xd6,0xd0,0x7b,0xbd,0x48,0x60,0x38,0xc8, - 0xd1,0x0c,0x7a,0x2a,0xb5,0x27,0x0b,0xa5,0x42,0xbe,0x0f,0x06,0x03,0x2f,0x2c,0x92,0x13,0xba,0xde,0x5f, - 0x27,0x99,0xd4,0x3a,0x3c,0x4b,0x7a,0x32,0x5a,0x9a,0xff,0x62,0xd1,0x3b,0x49,0x7a,0x52,0x22,0x99,0x85, - 0xbd,0xa5,0x34,0x59,0x24,0xf3,0x22,0x29,0xcf,0x18,0x93,0xf7,0x96,0x34,0xe9,0x5e,0x3c,0x27,0x52,0x8a, - 0x86,0x3e,0xa3,0xb9,0xf2,0xd6,0x7f,0xc9,0x51,0x3c,0x86,0xde,0x13,0x7c,0x38,0x69,0x6f,0xe2,0x4b,0xee, - 0x48,0xfe,0xf2,0x10,0xae,0xd2,0x79,0x4a,0x2b,0x55,0xad,0xca,0xe1,0x75,0x3c,0x85,0xc7,0xcb,0x65,0x9e, - 0x66,0x95,0x59,0xc5,0x27,0xaf,0xb1,0x12,0xb3,0xb4,0x8c,0x4f,0xe8,0x12,0x1a,0x7a,0xcf,0xd4,0x2f,0x22, - 0x3f,0xd8,0x7d,0x46,0x9e,0x21,0xdc,0x9d,0x29,0xfe,0x4b,0xfa,0x75,0xba,0xa5,0x42,0x98,0x22,0x72,0x89, - 0xf7,0x7c,0x86,0x57,0xe0,0x2c,0x7f,0xf3,0x86,0xb7,0x84,0xfe,0xed,0xc1,0xd6,0x74,0x9e,0x13,0x14,0xd0, - 0x66,0x4d,0xe3,0x0c,0x11,0x29,0x60,0xbb,0x41,0x95,0xdf,0xd0,0x67,0x6f,0xaa,0xbf,0xb1,0x23,0x59,0x46, - 0xd0,0xfa,0x35,0xdd,0xc6,0xc8,0x96,0xbf,0xbd,0x2a,0xef,0xa9,0x0c,0x53,0x82,0xc6,0xf5,0x43,0x5e,0xf2, - 0xc6,0xe9,0x6f,0xda,0x87,0xb2,0xe2,0x91,0xa9,0x32,0x6a,0x74,0xe6,0x0b,0xc1,0x3e,0x4a,0xb5,0x14,0x55, - 0x7c,0x72,0x68,0xc0,0x88,0x52,0xbc,0x50,0x4d,0xf0,0xa9,0x44,0x8c,0xe9,0x95,0x2a,0x99,0xee,0xe6,0x37, - 0x55,0xb2,0x2c,0x0f,0x8b,0x15,0x0a,0x27,0x55,0x0f,0x6f,0x05,0x08,0x5b,0xff,0x9e,0xe6,0x54,0xb0,0xa1, - 0x40,0x89,0x02,0x75,0xd1,0xaf,0xa1,0xbd,0xda,0x2c,0x0b,0x5f,0x6d,0x97,0xe9,0x6c,0x85,0xa8,0x14,0xb4, - 0xb6,0x44,0xc8,0x20,0x1a,0x85,0x33,0x92,0x43,0x95,0x86,0xb1,0x5c,0x24,0x3a,0x91,0x7e,0x4a,0xc2,0x73, - 0xbc,0x51,0x64,0x84,0x7a,0x34,0xf4,0xd1,0xb2,0xc2,0xfe,0x25,0xae,0x7a,0xc8,0xee,0xe9,0x26,0x7b,0xca, - 0x26,0xa5,0x17,0x67,0xdc,0x3f,0xea,0xf4,0xea,0x65,0x1b,0x48,0x6b,0x2f,0x73,0x0e,0x71,0xec,0xbd,0xcc, - 0x1b,0xb5,0xd5,0x51,0xed,0xbd,0x4f,0x2a,0x29,0xf9,0x55,0xa6,0x76,0x5a,0x7e,0xb8,0xc5,0xd5,0x58,0x21, - 0xc4,0x66,0x5f,0x5a,0x18,0x2e,0x66,0xa2,0xbf,0xa5,0x74,0x9a,0xf5,0x2e,0x08,0xe0,0xd3,0x32,0xa1,0x71, - 0xcc,0x54,0xa5,0x27,0x33,0x6a,0x93,0xfe,0x91,0xaf,0x67,0x12,0x50,0xc8,0x93,0xbf,0xba,0x59,0xee,0xa4, - 0x31,0x00,0x55,0xe1,0xeb,0xf4,0x5d,0x32,0x93,0xee,0xf8,0x27,0xf7,0x24,0x59,0x6f,0x56,0x59,0x91,0xf2, - 0x16,0xc8,0x0f,0x93,0x5a,0x62,0xf5,0xe4,0xaf,0x5e,0xe4,0x0b,0xb5,0xc6,0x32,0xc6,0x6c,0x55,0x25,0x6a, - 0x78,0x2f,0x68,0xa4,0xf1,0xfb,0xa1,0x27,0x7f,0x55,0xf1,0x55,0x52,0x72,0xa2,0xfa,0x21,0xa9,0xbf,0x24, - 0xb3,0x4c,0xa5,0x9b,0x9f,0xaa,0xfc,0xd9,0xaa,0x50,0x15,0xd4,0x2f,0x35,0xf6,0x22,0xe5,0x54,0xf9,0xab, - 0x86,0x47,0xf0,0x56,0x70,0xaa,0xfe,0x65,0x86,0x2d,0xa9,0x2b,0x19,0xc7,0x45,0x2e,0xeb,0xcc,0xd0,0xf1, - 0x82,0x3f,0x74,0xa2,0xb5,0xa7,0x92,0xb0,0x65,0x57,0x25,0xb3,0xb9,0xaf,0x8d,0x2a,0x8d,0x62,0xcf,0x56, - 0x20,0xbd,0x0f,0xeb,0x5d,0xa1,0xbd,0xc3,0xb5,0x42,0x17,0x41,0x0f,0xc1,0x85,0x7a,0xe9,0xbc,0x17,0x3b, - 0xb0,0x01,0x5b,0x9a,0x78,0x51,0x24,0xf1,0xec,0x7d,0x2f,0x16,0xf3,0x73,0x3d,0xf8,0x8f,0x05,0x17,0x5d, - 0x6d,0x0b,0x38,0x48,0x76,0x0d,0x4f,0xf2,0xdd,0x84,0x28,0x49,0x7d,0x9d,0x12,0xe6,0xfc,0xe6,0xf5,0xf3, - 0x57,0xbd,0x25,0x75,0xe3,0xcb,0xc0,0x7a,0x67,0x84,0xfa,0x03,0x53,0x51,0x6e,0x4c,0xa0,0xd8,0x37,0x57, - 0x49,0xb2,0xa4,0x83,0x94,0x5e,0xc4,0xf6,0x42,0x9b,0x12,0x2f,0xad,0xdf,0xf1,0x02,0x2b,0x9f,0x25,0xd4, - 0xa8,0xc6,0x09,0x3d,0x9c,0x4d,0x20,0xfd,0xf8,0x42,0xce,0x4d,0xbb,0x8f,0xc3,0x7c,0xf9,0x0c,0x31,0xb5, - 0x3c,0xfa,0xd1,0x43,0x74,0xad,0x56,0x89,0x2f,0x73,0x42,0xed,0x17,0x3f,0x2d,0x87,0x9e,0xfc,0xea,0xad, - 0x96,0xde,0xc6,0xc2,0x83,0x36,0x0a,0xa9,0xb1,0x61,0x8d,0xd0,0x6a,0x04,0xc9,0x2f,0x7e,0x49,0xc5,0x9b, - 0x6b,0xdf,0x05,0x1a,0x02,0x24,0xad,0xc7,0x89,0x4e,0x89,0x6f,0xb9,0xd4,0x93,0xc5,0x22,0xbf,0x2a,0x05, - 0xeb,0x29,0x9f,0x02,0x16,0x5e,0xe9,0xcd,0x0b,0x1a,0xdb,0xfb,0x7c,0x55,0x10,0xb0,0x5d,0xa6,0xd3,0x04, - 0x68,0x9b,0x6f,0x31,0xb9,0xa8,0x95,0x47,0x24,0xae,0xee,0xdc,0x94,0xbd,0xe5,0xaa,0x58,0xe6,0x65,0x52, - 0x0e,0x7a,0xb8,0x20,0x55,0x69,0xb7,0x08,0x40,0x49,0x58,0x34,0x6a,0x81,0xbe,0xcf,0xaa,0x6a,0x39,0xdc, - 0xdb,0x3b,0xf8,0xe2,0xfe,0xe0,0xe0,0xb3,0xcf,0x07,0x07,0x83,0x87,0x7b,0xbd,0xab,0x33,0x82,0x42,0xea, - 0xbf,0x87,0x5b,0xde,0x20,0x7d,0x8c,0x22,0xad,0xa8,0x69,0x66,0x32,0xaa,0x5e,0x3e,0x27,0x38,0x2d,0x7b, - 0x65,0x0e,0x1f,0x33,0x65,0x4f,0xdd,0x71,0x18,0x5c,0x82,0x5e,0x74,0xb7,0xb8,0x91,0x29,0x9b,0x2a,0x50, - 0x22,0xfb,0x4a,0x48,0xa6,0x48,0x05,0x6c,0xc6,0xd9,0x7b,0xba,0xf9,0xdf,0x0f,0x7a,0xbf,0x52,0x67,0xb8, - 0xc0,0xe2,0x05,0x7d,0x96,0x3d,0xc3,0x81,0xf5,0x84,0x56,0xea,0x41,0x48,0x80,0xd1,0x9e,0xbc,0xef,0x41, - 0x59,0x12,0x34,0x02,0xa0,0xc1,0x5e,0xe6,0x9e,0x0a,0xc9,0xb5,0xca,0xaa,0x74,0xc1,0xb9,0x3f,0x7c,0xf5, - 0xac,0xb7,0x00,0x25,0x52,0xd2,0x46,0x13,0xb2,0xb6,0x6f,0x61,0xbd,0x51,0xf6,0xa8,0x9d,0x12,0xb2,0x51, - 0x6a,0xcb,0xbb,0x56,0x9f,0x56,0x83,0xb7,0x88,0x00,0xad,0x87,0xbb,0xbc,0x57,0xb0,0xc7,0xb0,0x41,0x4f, - 0xdd,0x29,0x1c,0x08,0x8e,0xc7,0x81,0x9b,0x9b,0xa8,0x92,0xb8,0x24,0xe2,0xa7,0x98,0xd1,0xa4,0x67,0x44, - 0xd6,0x16,0x94,0xd3,0xdc,0xbe,0x93,0x84,0xc0,0x02,0x03,0x2d,0xd3,0x99,0x5c,0xf8,0x5e,0xa8,0xab,0xd1, - 0x5d,0xa5,0x7e,0xd1,0xc5,0x7c,0x36,0x25,0x18,0xfe,0x89,0x3a,0x79,0xf6,0xed,0xd3,0xd7,0xf2,0xad,0x00, - 0x6b,0x45,0x60,0x0d,0x57,0x5d,0xb8,0x1c,0x69,0xd9,0xcb,0xf4,0x34,0x2b,0x71,0x7d,0x3d,0x7f,0xdd,0x53, - 0x31,0xe5,0xbb,0x81,0x49,0xb6,0x80,0xc8,0xf3,0x13,0x5a,0x16,0x6c,0x0a,0x2d,0x28,0x15,0x3c,0xc7,0xa1, - 0x95,0x8d,0xc0,0xca,0x2e,0x50,0x1f,0x80,0x01,0x93,0x26,0x02,0x13,0x3a,0x94,0xf4,0x75,0x8f,0xa0,0x64, - 0x96,0x83,0x4c,0x22,0xca,0x65,0xa9,0xba,0x21,0xf2,0xc5,0x74,0x49,0x33,0x5a,0x9d,0xd0,0xdd,0x79,0x11, - 0x97,0xe7,0x40,0xbf,0xf8,0xdd,0xc3,0x87,0x17,0x9e,0x12,0xd6,0xbb,0x02,0x52,0xfe,0x46,0x7e,0x78,0xe1, - 0x19,0xd1,0x1e,0x62,0x5f,0xfa,0xad,0xfa,0x55,0xa7,0xbd,0xae,0xfd,0x21,0x03,0x1b,0x89,0x49,0x29,0xb5, - 0x34,0x35,0x3d,0x6d,0x14,0x11,0xeb,0xd0,0x25,0x9c,0x42,0x94,0x54,0xb5,0xb4,0x48,0x81,0x1e,0x54,0x3a, - 0xcf,0x8a,0x3c,0x23,0xaa,0x8b,0x57,0xdf,0x7f,0x79,0xf8,0x9a,0xb0,0x0a,0x21,0xb3,0x52,0x15,0xfb,0x96, - 0x48,0x45,0xa6,0x74,0x29,0x2d,0x47,0x60,0xcd,0x8b,0x78,0xa9,0xf3,0xbe,0xc9,0xf3,0x53,0x82,0x82,0x17, - 0x94,0xd2,0x7b,0xf2,0xfa,0x79,0x4d,0x27,0xab,0x7c,0x43,0x25,0x0b,0x7f,0x40,0xe4,0x56,0xbc,0x48,0x4f, - 0x0a,0x96,0x86,0x08,0x36,0xd1,0xdf,0x56,0x96,0xa6,0x47,0x4d,0x9e,0x26,0x88,0x4c,0x09,0xd9,0xe6,0x9f, - 0xd8,0x8c,0x3b,0xd1,0x20,0xcf,0x70,0xa3,0x68,0x3b,0x39,0x73,0x9c,0x2b,0x92,0x16,0x3a,0xa7,0xd2,0x4a, - 0xc8,0x90,0x47,0xa5,0xe2,0xd9,0xef,0x30,0xc0,0xe4,0x06,0x98,0x52,0xcf,0xb0,0xad,0x70,0x1c,0x13,0x4f, - 0xcf,0x2c,0xf2,0x8a,0xab,0xf1,0xb2,0xbd,0x81,0xd7,0x5d,0x5a,0x72,0x5a,0xa1,0x1e,0x7b,0xe0,0x2d,0x38, - 0x99,0xe9,0xa8,0x4b,0x60,0xeb,0x1f,0x15,0xad,0x9d,0xaa,0x94,0x9e,0x5f,0x13,0x01,0x01,0x97,0xfd,0x21, - 0xa6,0x71,0xd3,0x3f,0x69,0xc5,0xf4,0x3f,0x52,0x40,0x5f,0xff,0x90,0x67,0xa7,0x56,0x12,0x71,0xc7,0x72, - 0x5d,0x7c,0x43,0x10,0xb2,0x50,0xa5,0x7b,0x7b,0x44,0x90,0xaa,0x62,0x82,0x1b,0x17,0xaa,0x9c,0x53,0xe9, - 0x4d,0x12,0x17,0xd3,0x33,0x50,0x8b,0xf8,0xcb,0x1b,0x49,0x18,0x80,0xa8,0x72,0xba,0x5e,0x19,0x4d,0xbc, - 0x66,0x34,0x21,0xe4,0x28,0x23,0x07,0xbe,0xb7,0xfa,0xc4,0x59,0x5d,0x06,0xba,0xf8,0x9b,0xc3,0x27,0x42, - 0xc8,0x02,0x22,0x5e,0x00,0x95,0xdd,0x50,0xfe,0xc9,0x6b,0xbd,0x61,0x0a,0x9b,0x38,0x1d,0xa9,0xcd,0xb1, - 0x2f,0x47,0xda,0x26,0xa9,0xf9,0xfa,0x97,0x17,0xcf,0x0a,0x4a,0x29,0xde,0x3c,0xa3,0xfe,0x5e,0x3f,0x7d, - 0xf2,0xc5,0x67,0x9f,0x7f,0xda,0xa3,0xd4,0xde,0x8c,0x93,0x7b,0x94,0x2e,0x35,0xa1,0xd4,0xdc,0xac,0xf3, - 0xf4,0x87,0xee,0x3a,0x4f,0x7f,0x90,0x3a,0x53,0x78,0x60,0x45,0xa5,0xab,0x8b,0x27,0xfa,0x34,0x76,0x94, - 0x7f,0xfe,0x3f,0xff,0xdf,0xa7,0xf5,0x11,0xa5,0xc2,0x5f,0x83,0xde,0x4d,0xb2,0xe9,0xfb,0xce,0xe2,0x73, - 0x9d,0x2b,0xe7,0x80,0x80,0xfe,0xfb,0xe4,0x7d,0xeb,0x20,0x10,0xca,0x70,0x0a,0x9c,0x31,0xc0,0xfe,0x98, - 0x88,0xf7,0xc1,0x19,0xf0,0xfe,0xbc,0xb7,0x2a,0x19,0x83,0xdb,0xe4,0xef,0xa0,0x47,0x40,0x3d,0xe3,0x3b, - 0x6d,0x91,0xe7,0xe7,0xc8,0x5f,0x2d,0x19,0x46,0x55,0xe4,0x49,0x2e,0xfe,0x07,0x51,0x05,0x03,0x42,0xb7, - 0x44,0x16,0x10,0x2a,0x3c,0xef,0x21,0x14,0x1e,0x9d,0x4c,0x60,0x38,0xd5,0x77,0x88,0x75,0xef,0xa9,0x41, - 0x5d,0x30,0x1f,0x0a,0x29,0x72,0x45,0x67,0x4e,0xf0,0x35,0xcf,0xa2,0xa4,0x7b,0xec,0x47,0xe2,0xbb,0x4b, - 0xe0,0x68,0xb9,0x86,0x69,0x7a,0x89,0x6e,0x04,0xd4,0x86,0xba,0x18,0xb5,0xe3,0x3e,0xba,0x89,0xe9,0x94, - 0x2d,0x31,0xd2,0x53,0x6e,0x1c,0xbc,0xfe,0x1e,0x1f,0xa9,0x58,0x53,0x6f,0x69,0x75,0x8f,0xae,0x9a,0x52, - 0x6e,0x66,0x0c,0x5d,0x2f,0xca,0x80,0xf0,0x12,0xcb,0xac,0x87,0xd7,0x60,0x71,0x0d,0x2b,0xfd,0x14,0x3e, - 0x1d,0xf9,0x52,0x44,0x32,0x9d,0x1e,0x11,0xba,0x03,0xf6,0xe2,0x13,0xcc,0xab,0x32,0x7c,0xae,0xb0,0xcc, - 0x35,0x09,0xd2,0xaa,0x6c,0xd1,0x0f,0x44,0x94,0x57,0x70,0x67,0x2d,0x75,0x04,0xfd,0xb5,0xca,0x2b,0xf6, - 0xd9,0x2d,0x6b,0x51,0xa5,0x65,0xab,0x86,0x43,0x92,0xba,0xf5,0x5e,0xd8,0x64,0x65,0xbb,0xa6,0x4b,0x10, - 0x5b,0x75,0x99,0xe3,0xee,0x9e,0x54,0x09,0xfb,0xf0,0xce,0x49,0x71,0xa5,0xf6,0xac,0xb8,0x42,0x6b,0x56, - 0x82,0x7e,0x71,0x41,0x2b,0xde,0xdd,0xaa,0x51,0x24,0x34,0x22,0xda,0x57,0xb9,0xbf,0x35,0x9f,0xba,0x5a, - 0x62,0xcc,0x1a,0x7f,0xd3,0xd9,0xc6,0xc6,0xf5,0x38,0x8a,0x62,0x4f,0xf2,0x00,0x9c,0x1a,0xdd,0xeb,0x1e, - 0x98,0x5f,0xb5,0x1b,0xe7,0x51,0xf2,0xf3,0x0a,0xd0,0xa8,0x78,0x86,0xc2,0x4d,0xc8,0xd8,0xa9,0x46,0x74, - 0xf6,0x4a,0xe5,0xe7,0x80,0x79,0x8d,0xdc,0x68,0xf2,0x74,0xdb,0xa7,0x59,0xcc,0x8c,0x14,0x37,0xb7,0x6d, - 0x7b,0x78,0xea,0x5b,0xb6,0x87,0x2b,0x6e,0xdf,0x1f,0xae,0xba,0x75,0x7f,0x18,0x7e,0x9a,0x33,0x13,0x70, - 0x53,0x37,0x92,0xbb,0x35,0xb2,0x16,0x4f,0xeb,0xbc,0xf6,0x8e,0x76,0xd5,0xdb,0x84,0x56,0xb2,0x91,0x90, - 0x58,0xcd,0xd0,0x41,0xff,0x23,0x06,0xe9,0x03,0x42,0x50,0x23,0xdd,0x2f,0xe9,0x37,0xc4,0x18,0x2b,0x60, - 0x98,0x97,0xee,0x65,0x47,0x37,0x43,0xf2,0xae,0xd2,0x25,0x5f,0xb2,0xf1,0xb7,0x23,0xf2,0xd1,0xa2,0x93, - 0x5a,0xd8,0xc0,0xea,0xc2,0x44,0xb6,0x6c,0x13,0x4a,0x70,0xac,0x6d,0x5a,0x88,0x17,0x84,0x62,0xf7,0x88, - 0xe8,0x78,0xa7,0xf6,0xb4,0xb7,0xc4,0x92,0xf1,0x55,0x49,0x67,0xff,0xe9,0x8a,0xae,0x47,0xb9,0xa1,0x17, - 0xf9,0x69,0x5c,0x10,0x82,0xba,0x48,0xa7,0x40,0x62,0x97,0x82,0x17,0x6a,0x41,0x86,0x5f,0x58,0x58,0x11, - 0x59,0x74,0xc7,0x94,0x1c,0x48,0x35,0x5b,0x98,0x45,0x20,0x8e,0x6e,0xd9,0x92,0xcc,0x7d,0x98,0x68,0x2e, - 0xf9,0x6b,0x92,0xb9,0xaf,0x88,0x09,0xc8,0x4f,0x93,0xec,0x64,0x91,0x9e,0xf7,0x4e,0x13,0xa2,0x12,0x89, - 0x92,0x3f,0x49,0xfe,0x48,0x4f,0x7b,0x17,0x7c,0x3b,0xcf,0xa8,0xc0,0x25,0x4b,0x9d,0x0c,0x11,0x9b,0x74, - 0x09,0xeb,0xbe,0xa5,0xd2,0xa5,0x1a,0x36,0x08,0x58,0x62,0x1d,0x96,0x59,0x9a,0xac,0xae,0xe8,0x2f,0xad, - 0x28,0x07,0xb5,0xc2,0x88,0x31,0x68,0xa2,0x24,0x93,0x3f,0x12,0x88,0xeb,0x08,0xf0,0x7b,0x19,0x0d,0x25, - 0xc9,0x1a,0x3b,0x77,0x98,0x27,0x20,0x8a,0x1b,0xe9,0x5a,0x60,0xf7,0xa5,0x19,0x60,0xbe,0x2c,0x17,0x71, - 0x9c,0xfd,0x29,0xd9,0xdd,0x4f,0x69,0x45,0x23,0x9b,0x9e,0xc5,0xe7,0xc9,0xe2,0xc3,0x05,0x78,0x6e,0x2d, - 0x25,0xc5,0x7b,0x43,0x83,0x58,0xc2,0x65,0xcd,0xac,0x29,0xcb,0x4b,0x69,0x90,0xa7,0xc9,0x25,0x31,0xe6, - 0x98,0x4b,0x97,0x3c,0x2f,0x9e,0xd3,0x71,0xcc,0xb3,0xb6,0x38,0xef,0x7b,0xca,0x3c,0x4d,0xb0,0xfe,0x49, - 0xa1,0x62,0x57,0x10,0x44,0x9e,0xa3,0x9d,0xa6,0x58,0xef,0xe7,0xba,0x04,0x15,0x5e,0xe4,0x05,0x0a,0xb9, - 0xa2,0xbd,0x97,0x18,0x09,0x5a,0x92,0xa1,0x7c,0x88,0x70,0xef,0xdb,0x55,0x3a,0x4b,0x4f,0x93,0x2d,0xc2, - 0x3d,0xe2,0x6f,0x81,0x8a,0x12,0x40,0x08,0xf6,0x73,0x31,0x07,0x4f,0xa8,0x00,0x3f,0x49,0xab,0x96,0x84, - 0xef,0x50,0xca,0x6a,0xda,0x33,0x49,0x16,0xec,0xe7,0x27,0xa1,0x76,0xb2,0x8f,0x93,0xf1,0xfd,0x3e,0x6b, - 0xca,0xf8,0x7e,0x60,0x58,0xe8,0x11,0x62,0xea,0x5d,0xe6,0xb8,0x98,0xa9,0x4c,0x2d,0xce,0x49,0x92,0x5a, - 0xb6,0x77,0xe9,0x2c,0x55,0x02,0xa7,0x8d,0x69,0xd9,0x92,0xf2,0x9d,0xca,0xca,0xbb,0xcd,0x9c,0x26,0x86, - 0xf6,0x4e,0x8a,0x59,0x43,0xdc,0x77,0xe8,0x14,0xa5,0x89,0x09,0x88,0x24,0xd9,0xcd,0x32,0xbf,0x44,0xfa, - 0x70,0x65,0x38,0xba,0x12,0xcb,0x68,0xe8,0x28,0x5c,0xe6,0xc9,0xa9,0x4e,0xd3,0x72,0x1a,0xda,0xf2,0x2b, - 0xaa,0x99,0x14,0x75,0x0f,0xae,0xbc,0x07,0xf2,0xa6,0x64,0xde,0x92,0xfe,0xfd,0x1c,0x97,0x95,0x74,0xda, - 0x90,0xfe,0xfd,0x06,0x22,0x68,0x79,0x9e,0x5f,0x94,0x95,0x2b,0x01,0xe4,0x0c,0x28,0xaf,0x9f,0xc6,0x50, - 0x85,0xb6,0x05,0x81,0x7a,0xe4,0xe0,0x01,0xb2,0x86,0x20,0x90,0x8e,0xe5,0x2c,0x3e,0x6d,0x48,0x02,0x9f, - 0xd1,0xc2,0x98,0x54,0x5b,0x12,0x98,0x27,0x56,0x46,0x2d,0x08,0x7c,0xc6,0x1d,0x9b,0x0c,0x2d,0x09,0xfc, - 0xb9,0xa0,0xae,0x75,0x62,0x2d,0x0a,0xfc,0x8d,0xee,0xa5,0xba,0xb0,0x16,0x05,0xfe,0x96,0xcb,0x40,0x1c, - 0x51,0xe0,0x97,0xc9,0x55,0x72,0xca,0xaa,0xdd,0x4d,0x61,0xa0,0xda,0xfa,0x13,0x55,0x60,0xfb,0xf6,0x37, - 0xe4,0x82,0x5f,0xb6,0x2a,0x38,0x40,0x70,0x9b,0x78,0xf0,0x15,0x11,0x06,0x56,0x05,0xba,0x94,0x08,0x6e, - 0x71,0x37,0xf5,0x9a,0x80,0xc8,0xb4,0x68,0x32,0x27,0xb0,0xbd,0x4d,0x42,0xb8,0x15,0xb8,0xba,0x25,0x84, - 0x1a,0x62,0x2c,0x01,0xa1,0x05,0x7c,0xae,0x98,0xd0,0x01,0xbf,0xad,0xb2,0x42,0x1a,0xe5,0x19,0x11,0xd2, - 0x5d,0xb2,0xc2,0x27,0x22,0x25,0x4c,0x6e,0x15,0x12,0x7e,0x83,0xf9,0x43,0x48,0x68,0xb0,0xcd,0x69,0xb2, - 0x48,0x7f,0x3f,0xc7,0xd4,0xd2,0x8e,0xa6,0x8d,0x88,0xf0,0xcb,0x1c,0x82,0xd6,0x2c,0x8e,0x0b,0xda,0xcc, - 0x2c,0xb1,0x26,0xde,0x25,0x2c,0x94,0x12,0xaa,0x38,0x6a,0x6e,0x95,0x1a,0xd6,0xc8,0xd6,0x60,0x4a,0x0b, - 0xff,0xda,0x17,0x65,0x43,0x6e,0xf8,0xc4,0x96,0x64,0x39,0xc0,0xd1,0x12,0x1e,0xd2,0xe9,0x39,0x27,0xf6, - 0x04,0x22,0x94,0x5c,0xa6,0xdb,0x23,0x96,0x18,0x2b,0x21,0x92,0xc4,0x9a,0x6a,0x4e,0x70,0x3d,0xc7,0x73, - 0xce,0xa3,0xab,0x32,0x2e,0x62,0xc2,0x81,0x3c,0x0b,0xbe,0x64,0x41,0x5a,0x18,0x69,0x56,0x22,0xf7,0x07, - 0x9a,0x9a,0x25,0x56,0xaa,0x81,0x6b,0xc4,0x15,0xe9,0x3d,0x73,0x6b,0xa5,0x25,0x8a,0xd0,0x0a,0xc6,0xbc, - 0xdb,0xbd,0xcb,0x34,0xee,0x14,0x28,0x52,0x3e,0xf5,0xfc,0xbb,0x3d,0xb2,0xb3,0xe4,0x04,0xb7,0xdf,0x05, - 0x26,0x33,0xe8,0xbd,0x91,0xf9,0xca,0xb8,0x20,0xf3,0x23,0x52,0x3b,0xc5,0x58,0x79,0x9e,0xf6,0x18,0xc2, - 0x5e,0x0c,0x3a,0xec,0x8f,0x54,0x5d,0x2d,0x72,0x8d,0x9e,0x10,0x15,0x9f,0x2e,0xd2,0xd3,0x19,0x10,0x76, - 0xef,0xbb,0xa4,0x77,0x4e,0x44,0xa1,0xdd,0x5a,0xde,0x38,0x42,0x33,0xdc,0x04,0xb8,0x15,0x0c,0xd3,0x2e, - 0x4b,0x7f,0x9e,0x51,0x22,0xcd,0x69,0x56,0xac,0xce,0xb1,0x1c,0x55,0x5e,0x61,0xe8,0x33,0x91,0x26,0xc6, - 0xb8,0x76,0x69,0x11,0x9b,0xc2,0x44,0x6b,0x8f,0x41,0x79,0x30,0x3b,0xa1,0xae,0xe3,0x96,0x48,0x51,0x95, - 0x6d,0x6f,0x01,0x1a,0xa7,0x25,0x4a,0xe8,0x5a,0x6d,0x48,0x14,0x7f,0x5e,0x2d,0x7a,0x67,0x29,0x53,0x02, - 0x74,0xc4,0xb1,0x22,0x4c,0x40,0x50,0xb1,0xab,0x78,0x7a,0x56,0x5d,0x81,0x4f,0xa0,0xd9,0x85,0x48,0xb1, - 0xf0,0x10,0xbf,0x26,0x54,0x2b,0x5e,0xd6,0x1e,0x81,0x6d,0x81,0x0b,0x9b,0x97,0xa3,0xdc,0x2a,0x64,0xfc, - 0xc5,0x34,0xa8,0xc5,0x8c,0xdf,0x24,0x27,0xc5,0x8a,0x28,0xc0,0x6d,0xa2,0x46,0x5a,0x53,0x06,0x30,0x16, - 0xf7,0x15,0x09,0xe4,0x8b,0x09,0x1d,0xff,0x3f,0x00,0x73,0x71,0xd6,0x9a,0x26,0x71,0xef,0x04,0x80,0x54, - 0x29,0xfd,0x3d,0x63,0xd8,0xbd,0x4a,0x17,0x98,0xb6,0xb5,0x57,0xa8,0x06,0x3b,0x0e,0x9a,0x10,0xfd,0xf3, - 0x47,0xfa,0x3b,0xf2,0xaf,0x12,0x9a,0xf6,0x15,0x60,0x97,0x3e,0x2e,0x92,0x44,0x51,0xa2,0x27,0x70,0xdb, - 0xd6,0x16,0x3b,0x16,0xc9,0x76,0xa1,0x23,0x84,0x57,0xb7,0x8b,0x1d,0xe3,0x8b,0x2d,0x62,0xc7,0x37,0x20, - 0xe5,0x68,0x1c,0x33,0x2d,0x78,0x44,0x5f,0x5b,0xc5,0x8e,0x4d,0xb9,0xe3,0xef,0x33,0x57,0xee,0x98,0xdc, - 0x24,0x76,0x8c,0x61,0xd0,0x42,0xe7,0x80,0xe0,0x8a,0x11,0xd4,0x9f,0x90,0x3e,0x9e,0xa4,0xbf,0x5f,0x25, - 0x85,0x10,0x86,0x0d,0x01,0xe4,0xf7,0x9a,0xbd,0xea,0x92,0x40,0x4a,0x26,0x80,0x48,0x10,0x6b,0x4b,0x04, - 0xa9,0xc1,0x82,0x61,0x92,0x80,0x9c,0x16,0x25,0x91,0xd3,0x43,0x18,0x04,0x20,0x4a,0x29,0x15,0xdd,0x50, - 0x95,0xa6,0xec,0x7a,0x22,0xcd,0x04,0x45,0xc7,0x80,0x2a,0x88,0xe6,0x2c,0xc1,0xaa,0x9e,0x25,0xe9,0x8c, - 0x59,0x89,0x64,0x71,0xae,0x50,0x39,0x43,0x41,0x95,0xf4,0x34,0xa9,0xff,0x21,0x52,0xc8,0x9f,0x85,0x87, - 0xe8,0x92,0x42,0x66,0x96,0x14,0xf2,0x4b,0x9a,0xd7,0xac,0x4a,0x4e,0x09,0x1d,0xce,0x2c,0x49,0x24,0x94, - 0x48,0xec,0x44,0xc3,0xa2,0xdb,0xe5,0x21,0x8b,0xac,0x0b,0x12,0xc0,0x9e,0xc5,0x40,0x27,0x34,0xed,0x93, - 0xb8,0x24,0x74,0x88,0x49,0x08,0x03,0x9f,0x74,0x0a,0x27,0x7f,0xcb,0x13,0xde,0x8c,0x3f,0x2f,0x9c,0xb4, - 0x64,0x15,0xb7,0x08,0x25,0x9d,0x96,0x6d,0xe4,0xc7,0xdb,0x64,0x5f,0xc4,0xc4,0xa2,0x9c,0xfe,0x77,0x08, - 0x26,0xcf,0x17,0xf9,0xff,0x5e,0x72,0xc9,0x27,0xb8,0x4b,0x0a,0xe6,0x64,0xe9,0xa4,0xd0,0x7d,0x24,0x40, - 0x7d,0xc9,0x88,0xcb,0x25,0xf1,0x09,0x71,0x31,0xef,0xaa,0xca,0x54,0x1a,0x80,0x15,0x23,0x84,0xb2,0x90, - 0x4e,0xca,0x85,0xb8,0x04,0x54,0x50,0x0d,0x3a,0x7a,0x15,0xdf,0x3d,0x7f,0x08,0xee,0x36,0x42,0xca,0x0b, - 0x60,0x32,0x35,0x44,0x2a,0xce,0xe5,0x66,0xd4,0x2b,0x04,0x92,0xe7,0x68,0x57,0x89,0x29,0x4b,0x2d,0xa7, - 0x14,0x84,0x0e,0x0a,0x07,0x47,0xd6,0x4c,0x09,0x90,0xf7,0x61,0x92,0x4a,0xe0,0x63,0x96,0x42,0xab,0x2b, - 0x84,0x79,0x21,0x3d,0x61,0xdc,0x5a,0xb3,0xdb,0xe5,0x95,0x60,0x3b,0x15,0x27,0x6f,0x64,0x95,0xea,0x06, - 0x56,0x27,0xa1,0x2d,0xa6,0x44,0x1d,0x8b,0xb1,0x52,0x6c,0x1d,0xa3,0xb4,0x8e,0x9a,0x5a,0xac,0x67,0xf5, - 0x74,0x5b,0x15,0x57,0x28,0x86,0x8a,0x0e,0x45,0x7c,0x4b,0xed,0xa6,0x64,0x0c,0xf5,0x9b,0xf4,0xfd,0x4d, - 0x6d,0xb4,0x24,0x98,0x1f,0x30,0x5f,0x96,0x4b,0x34,0xe4,0x98,0xb7,0x4d,0x58,0xd5,0x69,0x8b,0x33,0x51, - 0xd1,0xc6,0x09,0xee,0xf0,0x9a,0xc2,0xcc,0xaf,0x59,0xaa,0x0c,0xea,0x3c,0x2b,0xeb,0xcb,0x81,0x01,0x7e, - 0x8b,0x44,0x93,0x17,0x14,0xf7,0xf7,0x0d,0xa3,0x6a,0x0a,0x35,0xbf,0xaf,0xb1,0xa0,0x25,0xc5,0xcc,0x34, - 0xad,0xb6,0xb4,0x96,0xee,0x4f,0xec,0x9e,0xbd,0x7c,0x7f,0x7a,0xfb,0x54,0x23,0x96,0x80,0x13,0x55,0xcf, - 0xcd,0x9d,0x78,0xd3,0x9e,0x77,0x48,0x39,0x3f,0xa0,0xb2,0xf4,0xd8,0x2d,0xea,0xac,0xef,0xe2,0x4e,0x49, - 0xe7,0x61,0x52,0xac,0x4e,0x8d,0xa8,0xf3,0x89,0x7d,0xb3,0xba,0x82,0xce,0x9f,0xf3,0xc5,0x29,0xe4,0x89, - 0x0d,0x91,0x19,0x25,0x57,0x79,0x2e,0xa2,0xb4,0x6e,0x69,0x67,0x92,0x2a,0x8c,0x60,0x31,0x53,0x5d,0x22, - 0x4f,0x50,0x60,0xc0,0x96,0x4b,0x4d,0x19,0xd8,0x42,0x4f,0x4d,0x13,0x28,0xc1,0xe7,0x05,0x68,0xc3,0x44, - 0x89,0x3e,0xb9,0x71,0x4b,0x04,0x44,0x77,0x4f,0x8d,0x7b,0x39,0x53,0x4b,0x3f,0x37,0x75,0xec,0x25,0x96, - 0x0d,0x3e,0x59,0x2e,0xfd,0xe0,0x1a,0xba,0x8c,0xb5,0x76,0xa5,0x47,0x0d,0x43,0xf8,0x7b,0xad,0x63,0x88, - 0x0d,0xef,0x3d,0x9a,0xa5,0x97,0xbd,0xe9,0x82,0xc8,0x85,0x48,0xe5,0xf6,0x86,0xea,0xf3,0xba,0xc7,0x09, - 0xc4,0xc7,0x8a,0xc8,0x36,0xec,0x19,0x99,0x9d,0xf9,0xd5,0xdb,0x78,0xbd,0x7f,0x10,0x42,0x85,0xe2,0x48, - 0xe4,0x9d,0x11,0x39,0xb3,0x48,0xe8,0x9a,0x00,0xbb,0x48,0x19,0xd3,0x45,0x3a,0x3d,0xd7,0xc9,0x4f,0xf1, - 0xe1,0xf5,0x88,0xd2,0x63,0xcf,0x0d,0x91,0xb7,0xef,0x3d,0x76,0x7a,0xcf,0xb3,0xaa,0xc8,0x17,0x6e,0x22, - 0x07,0xfe,0xa2,0xa4,0x3d,0x4a,0xd3,0xff,0x5a,0xd9,0x8b,0xf8,0x24,0xa1,0x1a,0xd7,0xd7,0x3d,0x86,0x88, - 0xde,0x66,0x63,0x97,0xbc,0x67,0xfc,0x2a,0x33,0xb8,0x28,0x8f,0xc9,0xe2,0xcc,0x54,0xfc,0x9b,0x7e,0x99, - 0x13,0xea,0x8f,0x33,0xe3,0x67,0x79,0xe7,0x60,0x53,0x0b,0x26,0xb7,0x16,0x81,0xdb,0x2e,0x56,0x36,0x1d, - 0x5e,0x5b,0x53,0x6b,0x79,0xbb,0xd6,0x0d,0xc1,0x75,0x23,0xbe,0xb9,0xe3,0x68,0xa7,0xfe,0x2d,0xe6,0x02, - 0x77,0xe8,0x56,0xa0,0xad,0x49,0xb3,0x25,0xde,0xca,0xeb,0x5c,0x78,0xf0,0x71,0x16,0xd4,0x09,0x20,0xf8, - 0xe0,0x3e,0xfc,0xae,0xd1,0xca,0x23,0xbc,0x82,0x76,0x09,0x68,0x8d,0x06,0xfa,0xdb,0x88,0xd5,0x0a,0x5e, - 0x46,0x1b,0x4f,0x2b,0x1d,0xee,0x06,0x4c,0x10,0x2c,0xa5,0xf9,0x56,0x98,0x90,0xdc,0xad,0x30,0xd1,0x8b, - 0xa2,0x5e,0x3a,0xfb,0x3f,0x0a,0x32,0x24,0x26,0xd7,0x4c,0xfe,0xfe,0x17,0x03,0x03,0xff,0xa4,0xf5,0xfb, - 0xdf,0x04,0x10,0x08,0xb3,0xb4,0x00,0xc1,0x59,0x55,0xc6,0x2c,0xb4,0xe8,0x70,0x47,0xae,0xd3,0x78,0x8c, - 0xbc,0xd2,0xfc,0x6b,0xc0,0x65,0x78,0xbd,0x51,0xca,0xad,0xbe,0x48,0x89,0x9c,0xc3,0x76,0xc6,0xa9,0xec, - 0x1e,0x4f,0x96,0x23,0xbf,0x44,0xaa,0x7f,0x70,0x1e,0x80,0x00,0xe0,0xcd,0xc8,0x7b,0xb8,0xff,0xc5,0x43, - 0xcf,0xad,0xee,0xf5,0x2e,0x77,0x21,0x17,0x58,0x28,0x2b,0x36,0x35,0x82,0x81,0x1e,0xdb,0x16,0x80,0x20, - 0xfc,0x7e,0xcb,0xc0,0xa9,0xc4,0x5f,0x1d,0xf6,0x41,0x3d,0xec,0x4f,0x3f,0x70,0xd8,0x32,0x2e,0x7b,0xd0, - 0x0e,0x84,0x1e,0xa9,0x61,0x4e,0x42,0x8e,0x3f,0x99,0xcc,0x5a,0x90,0xa5,0x83,0x35,0x45,0xd7,0xbc,0x02, - 0xc3,0x1a,0x70,0x64,0x49,0x38,0xc8,0xbb,0x95,0x48,0x9f,0x70,0x47,0x0f,0x17,0x36,0x43,0xe5,0x2c,0x5a, - 0x41,0x6e,0xe1,0x00,0x96,0xaa,0xbe,0x13,0x39,0xbd,0x48,0xe2,0x58,0xfd,0x7d,0xcc,0xcd,0x71,0xdc,0x0b, - 0xfa,0x1b,0xa9,0xd4,0xfe,0x41,0x17,0x40,0x23,0x6a,0x3a,0x17,0x6b,0xb6,0xc8,0x2d,0xf0,0x9f,0x47,0xaa, - 0x01,0x6e,0x90,0x7f,0x45,0x9c,0xbe,0xbb,0xad,0xc1,0xb0,0x63,0x6c,0x7a,0x14,0x61,0xab,0x17,0x69,0x8c, - 0x30,0xbc,0xf2,0x66,0xb7,0x51,0xda,0xfd,0x09,0xdb,0x08,0xaa,0xe8,0x54,0xb5,0x9b,0xc7,0xf8,0x32,0x3d, - 0x8d,0xab,0xbc,0x18,0x2c,0x68,0x87,0x57,0xf1,0x69,0xd2,0xf4,0xb9,0xe8,0xb1,0x78,0x41,0x7b,0x70,0x34, - 0x1e,0xaf,0x82,0x91,0x6a,0xce,0xbf,0x4e,0x88,0xbd,0xfe,0x1b,0xd1,0x14,0x5e,0x08,0x2b,0x85,0x61,0x12, - 0xb2,0x47,0xc4,0xeb,0x8c,0xc8,0xaf,0x79,0xaa,0xc8,0x3e,0xc6,0x33,0xfa,0xf9,0x70,0x67,0x3f,0x2c,0xe5, - 0x49,0x6e,0xe7,0x40,0xfd,0x12,0x3a,0x8b,0x3e,0x55,0x99,0xe7,0x44,0x21,0x4f,0x31,0xae,0xa1,0xb7,0xd6, - 0x94,0xea,0xeb,0x22,0x3f,0x65,0xc6,0xd0,0xd4,0xb2,0xc9,0x2c,0x4a,0x14,0x1e,0xe6,0x30,0x3e,0x41,0xb8, - 0x40,0x79,0x7b,0xd2,0x76,0x08,0xd7,0xf5,0x2b,0xa9,0xea,0x81,0xdf,0xfe,0x74,0xb6,0x9d,0xb8,0x71,0x5f, - 0x04,0x97,0xc3,0xeb,0x44,0x49,0xba,0xa9,0x8b,0x74,0x39,0xf4,0xf6,0x07,0xfc,0x5f,0xfd,0xf4,0xe7,0x94, - 0x50,0xcf,0x63,0xfb,0x6e,0xd1,0x8d,0xa2,0x83,0xa9,0x0f,0x43,0x0a,0x23,0x60,0x73,0xfd,0x78,0x05,0x09, - 0xbc,0xdd,0x4e,0xe5,0x0a,0xe7,0xc5,0x81,0x84,0x2e,0x0e,0x37,0xb8,0x22,0x93,0x76,0xea,0x24,0xdb,0x9e, - 0x09,0xb6,0xb4,0x47,0x07,0x35,0x7e,0xdf,0x6e,0xda,0x95,0x60,0x1b,0xe9,0x17,0x97,0xb3,0x25,0xd3,0xd8, - 0xc7,0xca,0xcc,0x85,0x85,0x86,0x5c,0xc6,0x88,0x0c,0xa5,0x13,0x88,0x0a,0x77,0x78,0x3d,0xf8,0xdb,0x12, - 0xbd,0xf1,0xb7,0x96,0xb7,0xb1,0x8f,0x2c,0x23,0x2b,0xab,0x65,0x3a,0xe2,0x97,0xc4,0x92,0xe5,0x7c,0x1a, - 0x12,0xe2,0x56,0x10,0x45,0x30,0x24,0x5d,0x12,0x55,0x4d,0x0c,0x69,0x32,0x7b,0xf2,0x5a,0xe5,0x24,0x33, - 0x88,0x44,0x64,0xcc,0x4b,0x45,0xec,0x4a,0xd1,0xab,0x0b,0x08,0x30,0xcc,0xef,0xa7,0x3f,0xa8,0xae,0x2d, - 0xd1,0x83,0xce,0xac,0xa5,0x0b,0x9c,0x62,0xcb,0x10,0x68,0xfb,0x35,0xbd,0x8c,0xd9,0xb9,0xb4,0x33,0x16, - 0x06,0x19,0xf0,0x55,0x6d,0x38,0x1f,0x48,0xe2,0xd4,0x7b,0x1a,0xe7,0x14,0x09,0xb4,0xd8,0x2e,0x13,0x93, - 0x60,0x53,0xff,0x32,0x24,0xf1,0xae,0x3d,0x6b,0xda,0x41,0x29,0x37,0xc0,0xd5,0xc0,0x3e,0x63,0x68,0x46, - 0x05,0xdb,0x34,0xf1,0x68,0xf9,0xe6,0x47,0xf8,0x09,0xdf,0xe3,0x9f,0x9e,0x76,0x14,0xac,0xac,0x80,0xf4, - 0xe0,0xe0,0xbf,0xeb,0x4c,0xbb,0xe8,0x3a,0xa0,0xb3,0xcd,0xa1,0xcd,0xcd,0x79,0x32,0x81,0xcd,0x8b,0xea, - 0x87,0xc6,0xf9,0x84,0x5b,0x8f,0x41,0x93,0xf3,0xe4,0x44,0x45,0x0c,0xf0,0xaa,0xb0,0x87,0x52,0x58,0x5f, - 0x22,0x46,0xb9,0x75,0xe2,0x65,0xcc,0x56,0xaa,0x75,0xa2,0x75,0xde,0xa8,0x61,0x20,0xc8,0x6e,0x50,0xf6, - 0x47,0xf9,0xa3,0x83,0x87,0x0f,0xe9,0x4f,0x3f,0x3a,0xf8,0x34,0x50,0xbe,0xe9,0x73,0x71,0x4e,0x96,0x47, - 0xbb,0xf7,0x91,0xf5,0x28,0xba,0x6f,0x4a,0xa4,0xa6,0x44,0x35,0xa8,0xb7,0x21,0x2a,0xa8,0x67,0x67,0x1f, - 0xa2,0x94,0x52,0x2c,0xc1,0x86,0x1f,0x0c,0xaa,0xb3,0x24,0xb3,0x7d,0x8c,0x4a,0x7e,0xcd,0xd7,0x6f,0x2d, - 0x22,0xfc,0xfb,0xd6,0x6c,0x9b,0xbd,0xdd,0x5a,0xc8,0x65,0x62,0xb7,0x77,0x85,0xd5,0xec,0xcc,0x2d,0xab, - 0x7c,0xd9,0xb9,0x69,0x0a,0xe5,0xd1,0x0a,0x6f,0x02,0xeb,0xbf,0x9a,0xd2,0x2b,0xcf,0xf2,0xab,0x97,0x36, - 0x12,0xef,0x0c,0x78,0x09,0x40,0xcc,0x1c,0x40,0x8c,0xae,0xd5,0x2d,0x41,0x57,0x81,0x48,0x8a,0xaa,0x4d, - 0x28,0x7e,0xcd,0xb3,0x36,0xc4,0xde,0xbd,0x3b,0x25,0x6a,0xb3,0xc0,0xef,0x7c,0x85,0x28,0xe9,0xad,0x12, - 0x08,0x77,0xde,0x06,0xf4,0x32,0xa9,0x74,0x1d,0x6b,0xbe,0x8d,0x91,0x08,0xee,0xd8,0x72,0x4c,0x36,0xe1, - 0xa7,0xc9,0x03,0x90,0x9d,0x44,0xb9,0x74,0xcf,0x53,0x11,0x1f,0x1d,0x4d,0xf2,0x6c,0x5a,0x99,0x6a,0x42, - 0xbe,0x33,0xa3,0xee,0x52,0xea,0x56,0xef,0x1e,0x99,0xa1,0x85,0x09,0xd9,0xb0,0x8a,0x59,0x23,0x74,0x8d, - 0x16,0xe7,0x11,0x33,0x0d,0xe7,0xe5,0x72,0x38,0x3c,0x6f,0x84,0x70,0x36,0x84,0xbf,0x88,0xd6,0x2d,0x93, - 0xb1,0xf7,0xed,0xe1,0xe1,0xeb,0x9e,0xfe,0xec,0x21,0x38,0x74,0xcf,0xeb,0xd7,0x05,0x06,0xea,0xa6,0x42, - 0x0a,0xcb,0x13,0xc7,0x30,0x69,0xd1,0xb9,0xde,0xd0,0x84,0xbf,0x92,0x91,0x36,0xa1,0x01,0xb1,0x6d,0xfc, - 0x2a,0xe8,0x7b,0xc7,0xd9,0x71,0xe6,0xf5,0x8b,0x90,0x43,0x23,0xd9,0x22,0xc1,0x1b,0x8d,0x37,0xe3,0x77, - 0x69,0xce,0xfe,0x5e,0x7d,0x6f,0x2f,0x5e,0xa6,0x7b,0xea,0x26,0xf6,0x9a,0x20,0xdc,0x15,0x12,0xba,0x52, - 0x61,0x6b,0x68,0x08,0xda,0x0a,0x52,0x92,0x08,0x7e,0x07,0x2a,0x50,0xd7,0xc0,0x5d,0xc0,0x01,0xb8,0x2e, - 0x38,0xd1,0x65,0x80,0xb4,0x0f,0xb8,0x17,0xa8,0x61,0x5b,0x82,0xba,0x8f,0x1a,0x79,0x7d,0x57,0x7e,0xec, - 0xe0,0xeb,0x9a,0x7f,0x66,0xfc,0x96,0x15,0x8a,0x9e,0x82,0x12,0x18,0x7e,0xd4,0xf0,0x95,0x0a,0xe9,0x47, - 0x0e,0x5d,0x6a,0xfd,0x99,0x61,0x2b,0x8d,0x7b,0x3d,0x64,0x47,0xc6,0xf7,0x51,0x03,0xd7,0x14,0xcb,0x1e, - 0x9b,0xa4,0x75,0x8c,0x1f,0xae,0x36,0xbb,0xa7,0xa0,0x91,0x97,0xa1,0x9d,0x24,0x79,0xa0,0x3e,0xd7,0xeb, - 0x36,0xbd,0xa4,0x4a,0xb8,0xa9,0xeb,0xf5,0xbe,0x43,0x38,0xb5,0x7d,0x89,0x9a,0x6a,0x52,0x28,0x08,0xea, - 0xcb,0x6c,0x7f,0x54,0x3c,0x6a,0x64,0x6b,0x07,0xd7,0x85,0x8e,0x93,0x9c,0x46,0x8d,0x12,0x47,0xc5,0x84, - 0xb0,0xad,0x29,0x2f,0x51,0x6c,0x6a,0x4d,0xfd,0x61,0x3a,0xa8,0x3f,0xac,0xd1,0x1d,0x82,0xaf,0x4f,0x07, - 0xd6,0x17,0x32,0xf5,0xec,0x53,0x67,0xe2,0xe6,0x76,0x74,0x2b,0x3c,0xde,0x1f,0xef,0x23,0x45,0x4d,0xdb, - 0xbe,0x34,0x5b,0x05,0x4d,0x31,0x22,0x84,0x2e,0x44,0xb1,0xc7,0x3f,0xb8,0x9b,0xd2,0x54,0xde,0x97,0xaf, - 0xe6,0xbf,0x24,0xc9,0x79,0xf0,0x98,0xc6,0xa6,0xb4,0x7b,0xfc,0xfb,0xad,0xac,0x2b,0xa3,0xe2,0xe3,0x3f, - 0x6c,0xd7,0xd3,0x6a,0x3e,0xfe,0xe7,0xad,0xbc,0xb9,0x68,0xfa,0xf8,0x07,0x9f,0xb5,0xb2,0x4a,0xad,0xef, - 0xe3,0x3f,0x68,0x77,0x58,0x8a,0xd2,0x8f,0xff,0x59,0xab,0x3b,0xc4,0x16,0xaa,0x17,0x1c,0xf3,0x8a,0xe0, - 0xf6,0xe1,0xc3,0x01,0xde,0x86,0x70,0x03,0xf6,0x0d,0xd9,0xf4,0x9f,0x03,0x7c,0xe1,0x00,0x3e,0xf6,0xe8, - 0x9a,0xb9,0x48,0xf5,0x3f,0x73,0x86,0xdd,0xd1,0xd7,0xe8,0x87,0x69,0xde,0x8f,0xc3,0x3e,0xa8,0xb2,0xa7, - 0x14,0xa0,0xbb,0xcf,0x70,0xd7,0x81,0x0a,0x6c,0x8b,0xff,0x1d,0xc4,0xb1,0x02,0x6f,0xc6,0x61,0x98,0xd8, - 0x25,0xe8,0xfe,0x28,0xd6,0x67,0x4b,0x1d,0xa9,0x58,0x1f,0xa9,0x52,0x4d,0x18,0x9e,0x7c,0x38,0x1a,0x49, - 0x31,0x26,0x62,0x62,0x58,0xee,0xd0,0x2f,0x8e,0x04,0xbb,0x03,0x07,0x84,0x4e,0x98,0x29,0xe2,0x76,0xc3, - 0xb4,0x1f,0x95,0x1b,0xdc,0x99,0x34,0xde,0x28,0x0f,0x93,0x81,0x43,0xf0,0x4b,0x9c,0xf6,0xf9,0x22,0x47, - 0xd4,0xab,0x3d,0x1d,0x00,0x2d,0xb0,0x8a,0x31,0xd0,0x6c,0x5a,0x4f,0x42,0xdd,0x8b,0x95,0x28,0x6a,0x98, - 0x23,0xc8,0xc9,0x4f,0xcc,0x52,0x16,0x6f,0x49,0xfc,0x58,0xfb,0xea,0x09,0x6b,0x3e,0xcd,0xbe,0x58,0x06, - 0x3a,0xd5,0x61,0xdc,0x9c,0x12,0x56,0x86,0x61,0xe7,0x9c,0x02,0x2a,0x51,0x18,0x3c,0x37,0x87,0x52,0x6a, - 0x6e,0xcf,0xc9,0xd2,0xa9,0xc2,0xfe,0x39,0x59,0x48,0x01,0x37,0xe8,0x24,0xa6,0x4b,0x9b,0x31,0x74,0x7b, - 0x31,0xe9,0x86,0x57,0x74,0xf2,0x55,0xe2,0xa6,0x09,0x3e,0x08,0xd6,0xf9,0x81,0x40,0xdd,0xd8,0x16,0x82, - 0xe8,0x16,0x25,0x5d,0x6f,0x04,0xd1,0xcb,0x7a,0x27,0xbb,0x2f,0x5c,0xc3,0x9e,0x99,0x5d,0xac,0x6e,0xda, - 0x45,0x6d,0xc4,0x51,0xa9,0x5b,0xb5,0xd9,0x77,0xc6,0x64,0x7c,0x17,0xf9,0xe5,0x39,0xda,0xd4,0x38,0x87, - 0x7a,0xbe,0x55,0xe7,0x7c,0x2b,0x67,0xbe,0xe6,0x26,0xee,0xe2,0x1a,0x9c,0xb9,0x76,0x72,0x7e,0x5b,0x61, - 0x57,0x31,0x16,0xc4,0x0a,0x9e,0x26,0x74,0x24,0x4d,0x82,0xa1,0xdb,0x35,0x27,0x6f,0x77,0xa9,0xe2,0x9a, - 0xb9,0xb5,0xfb,0xfd,0xd0,0x4d,0x50,0x61,0xae,0x0f,0x86,0x26,0xd9,0x0c,0x27,0xf2,0xf6,0x3c,0x2b,0x84, - 0x59,0xef,0x7e,0x67,0x99,0x5d,0xa7,0xcc,0x83,0xce,0x32,0xc7,0xc7,0x4e,0xa1,0x87,0x9d,0x85,0xd6,0x5e, - 0xd8,0x9c,0xe9,0x66,0x13,0xde,0xff,0x74,0x9f,0x97,0xab,0xcd,0x72,0xd9,0xab,0xc5,0xec,0x81,0x59,0x04, - 0xe5,0x21,0xaa,0x5e,0x22,0x6a,0x81,0x10,0xa4,0xe6,0xa6,0xa1,0x20,0x22,0x84,0x7a,0x57,0xf0,0x89,0x5a, - 0x54,0xa5,0x8f,0xa9,0xbe,0xcb,0xb5,0x87,0x63,0x5b,0x9d,0xdb,0x33,0xf1,0xc2,0xb7,0xd4,0x15,0x96,0x40, - 0xad,0xb2,0x0a,0xe6,0x7d,0x5f,0x07,0xed,0xd6,0x47,0x8e,0x20,0x6d,0xa4,0xb6,0x41,0x2d,0x10,0xff,0x31, - 0x11,0xc3,0xc5,0x03,0x97,0x5e,0x61,0xb7,0x32,0xc6,0x20,0x21,0xc2,0x87,0xfa,0x79,0xa1,0x6b,0x9c,0x9b, - 0xee,0x25,0x38,0x4c,0xde,0x55,0x7f,0x6e,0x19,0x7a,0x7c,0x5c,0xda,0xc5,0x20,0xac,0x36,0xcf,0x16,0x5e, - 0xf0,0x91,0xeb,0xf3,0x01,0x6d,0x43,0xd1,0x9f,0xda,0x55,0xeb,0xf5,0x01,0x15,0xc4,0x0e,0x40,0x57,0xb9, - 0xff,0x21,0x55,0x1c,0xf3,0x00,0x5d,0x53,0xaf,0x7c,0x6f,0xdb,0x5c,0xd2,0xa5,0x86,0xef,0x0f,0xe8,0xc2, - 0xb1,0x31,0xd0,0x5d,0x7c,0xfa,0x11,0x35,0x53,0xb1,0x39,0xd0,0x55,0x9b,0xdb,0x7f,0xdb,0xfe,0xd4,0xa0, - 0x81,0x58,0x9a,0x2d,0x4d,0x87,0x9b,0xaf,0xd1,0xb1,0x25,0x2b,0x48,0x5a,0xc2,0x2a,0x96,0x02,0x0c,0xb7, - 0x73,0x75,0x7b,0x4a,0x96,0xfc,0x91,0x64,0x56,0x3d,0x97,0x8f,0xa5,0xb0,0x9a,0x03,0xec,0xc2,0xd0,0xb7, - 0xcf,0x08,0xd4,0x46,0x43,0xc3,0xa3,0xfb,0x9a,0xe2,0x43,0xa4,0x56,0xca,0x46,0xfd,0xfb,0x2c,0xd8,0xb3, - 0x05,0xef,0x44,0x56,0x09,0xc5,0x05,0xd1,0x3f,0xbc,0xb4,0x41,0xf7,0x7d,0xc4,0xae,0x92,0xe0,0x78,0xd1, - 0x9b,0xa7,0x70,0x4a,0x63,0x84,0x8f,0xb4,0x98,0x5f,0x49,0x58,0xd7,0x2f,0xdf,0x3f,0xe7,0x6c,0x19,0xc7, - 0xd7,0x28,0xc6,0xd1,0x73,0x93,0x12,0xfe,0xd9,0x94,0xfc,0x82,0x45,0xe0,0x34,0xa1,0xe1,0x83,0xcf,0x92, - 0x87,0x61,0x9e,0xfd,0xe4,0x0a,0xfd,0x9d,0x50,0x1e,0xcd,0x81,0x31,0xf9,0x55,0xc0,0xf9,0x8d,0x7f,0xb0, - 0xbf,0xff,0x89,0x60,0xe6,0x64,0xb6,0x47,0x50,0x95,0x57,0x31,0x42,0x13,0x8f,0x5a,0xd7,0x6e,0xad,0xd3, - 0x02,0xa7,0xf2,0xff,0xf5,0x77,0xae,0xbb,0x19,0xdd,0xd7,0x6e,0x63,0x5a,0x96,0x60,0x14,0xbf,0x6f,0x5d, - 0x59,0x5a,0x55,0xaa,0x47,0x30,0x8c,0xdd,0xdf,0x88,0x0c,0x5a,0x89,0x5e,0x6f,0xbb,0xad,0x11,0x3e,0xbc, - 0x43,0x62,0x0b,0x8e,0x50,0xe2,0xad,0x35,0x84,0xb6,0x22,0x05,0x68,0x4a,0x72,0xbb,0x85,0x72,0x1a,0x42, - 0x95,0x90,0x92,0xae,0xc9,0xfd,0xfd,0x20,0xd8,0x38,0xba,0x44,0xdd,0xc3,0xe3,0xa8,0x55,0x56,0x2f,0x7f, - 0xbd,0xd7,0xd0,0xa9,0x0f,0x28,0xef,0x68,0x10,0x4f,0x29,0xdd,0xf2,0xeb,0x7d,0x8b,0xa4,0x6f,0xc7,0xd3, - 0xe5,0x50,0xba,0xbc,0xea,0x9a,0xed,0xc8,0x88,0xed,0x70,0x63,0xd6,0x36,0x38,0x87,0x4d,0x30,0xd2,0x5c, - 0x45,0x25,0x11,0x42,0xb4,0x74,0x00,0x8d,0x6f,0x6d,0xb3,0xe8,0x47,0x2a,0xf5,0x28,0x9b,0xc8,0x9b,0xe7, - 0xe8,0x06,0x9e,0xa4,0xd8,0x73,0xdb,0x08,0x36,0x22,0x5d,0x50,0x91,0x33,0xb7,0x76,0xa3,0xa4,0xe6,0xcd, - 0xae,0x30,0xe6,0x2d,0xe2,0xfd,0x36,0x75,0x6b,0x73,0x78,0xe1,0x75,0x43,0xac,0x72,0x90,0x3c,0x10,0x8d, - 0x84,0x72,0x98,0xfe,0x15,0x02,0xde,0xda,0xea,0x9b,0x88,0x77,0xb5,0xe9,0x90,0x78,0x37,0x15,0xd3,0xb6, - 0x9f,0x0f,0x29,0x20,0xa0,0xd7,0x7c,0xc4,0xab,0x09,0x7a,0xbe,0x3a,0xa0,0x6e,0x59,0x0e,0xf7,0xf6,0xf0, - 0x50,0xa4,0x34,0x2c,0x69,0x0d,0x4a,0xd6,0xb2,0x44,0x1a,0xaf,0xc8,0x69,0x92,0x43,0x18,0xbb,0xf7,0x7b, - 0xc9,0x7c,0x9b,0x44,0x88,0x18,0x5e,0x6b,0x2d,0xf5,0xba,0xcb,0xf0,0x3c,0x01,0xab,0x23,0x5c,0xc1,0xa0, - 0x7e,0x7c,0xda,0xb4,0x56,0x6a,0x3b,0xa7,0x0c,0x84,0x40,0xd7,0x6c,0x89,0x00,0x3b,0x4e,0x82,0x09,0xd2, - 0x6d,0x24,0xf9,0x4e,0x36,0xdc,0x87,0xd2,0x40,0x2f,0x92,0xaa,0x78,0x6f,0x06,0x34,0x32,0x83,0x59,0xc4, - 0x15,0x7c,0x8a,0xc6,0x55,0x58,0x27,0x11,0x92,0xca,0xf0,0xef,0x07,0x4b,0x47,0xdc,0x1d,0xd8,0xb2,0x6f, - 0xed,0x15,0xb7,0xf8,0xaf,0x0f,0x90,0x1e,0x72,0xb8,0x0f,0x73,0xbd,0x59,0xec,0xf4,0xa8,0x3e,0xbd,0x46, - 0x0e,0xd8,0x90,0xf4,0x68,0x22,0xb2,0x29,0x0c,0x6c,0x16,0x73,0xb3,0xdd,0x67,0x5a,0x7d,0xb6,0x9a,0x35, - 0x5c,0x89,0x5f,0xa6,0xc5,0x13,0xf0,0x0f,0xd9,0x5d,0x94,0x4e,0xdf,0xa8,0xba,0x41,0xf4,0x57,0x58,0xa2, - 0x3f,0x47,0xee,0x57,0xd8,0xd2,0x39,0x23,0xf4,0x2b,0xea,0xc9,0x61,0x4a,0x45,0x43,0x84,0x57,0x38,0xcf, - 0x62,0x94,0x6d,0xc4,0x82,0x61,0x2d,0x1e,0x1b,0xfa,0xc5,0x40,0xe4,0x7b,0xe3,0x83,0xe1,0x7e,0xb0,0x46, - 0xe8,0x73,0x11,0xea,0x8d,0xef,0xab,0x6f,0x23,0xc9,0x1b,0x3f,0xd4,0x25,0x94,0xf8,0x6e,0xfc,0xb9,0x4a, - 0x10,0x99,0xdd,0xf8,0xe0,0x33,0xf5,0xad,0x05,0x75,0xe3,0x07,0xba,0x11,0x91,0xce,0x8d,0x3f,0x43,0x13, - 0x74,0x74,0x5b,0x38,0xc6,0x15,0x05,0x87,0xd5,0x5f,0x95,0x04,0x34,0x44,0x76,0x37,0xcb,0x02,0xe8,0xa2, - 0xa5,0xa3,0x6b,0xbf,0xb6,0x37,0xdf,0x8f,0xb6,0x6c,0x7d,0x6b,0x07,0x5d,0x71,0x6d,0x2d,0x9f,0x25,0x1c, - 0x53,0x0b,0x65,0x3f,0x7d,0xd8,0x10,0xbe,0x1a,0x11,0xeb,0x4e,0x2d,0x52,0xdd,0xb1,0x45,0xa8,0x3b,0x96, - 0xc8,0x74,0xc7,0x88,0x48,0x77,0x2c,0x89,0xe8,0x8e,0x11,0x80,0x4a,0xec,0xc0,0x19,0x5b,0xeb,0x75,0x4e, - 0x29,0xb9,0x79,0x4e,0x2a,0x78,0x64,0x82,0xe0,0x91,0x9d,0x5a,0xb8,0x7f,0x4d,0xe0,0xd5,0x14,0x7d,0x86, - 0x2d,0x71,0xe6,0x5f,0xdd,0xfa,0x96,0x68,0xf3,0x76,0x41,0xd0,0xcc,0x95,0x87,0x6e,0xdf,0x7e,0x19,0xe1, - 0x8d,0x00,0x60,0x6d,0xf9,0x32,0xcd,0x86,0xf7,0xc3,0x99,0x31,0x7d,0xb4,0x76,0x66,0x4b,0x7f,0xad,0xbd, - 0x69,0x76,0xe8,0xec,0x0e,0x1c,0xfc,0xa7,0x94,0x12,0x33,0xb8,0x77,0x3e,0xee,0x7a,0xde,0x08,0x6a,0x4a, - 0x19,0x11,0x1b,0x8f,0xa3,0xfd,0xb1,0xd7,0xf7,0x86,0xde,0xae,0xa7,0x09,0x76,0x5f,0x91,0x18,0xf1,0x49, - 0x89,0x30,0xcb,0xff,0xe3,0xb3,0x7d,0x2d,0xe5,0xa5,0x0a,0x16,0xf1,0x91,0xec,0x7d,0xb6,0x1f,0xa0,0x6a, - 0x58,0x3c,0x3a,0xd8,0x97,0xf6,0xbc,0x7d,0x2f,0x08,0x25,0xbe,0x36,0x0b,0x97,0x6c,0x4d,0x9e,0x6e,0x10, - 0xe9,0x94,0x1c,0x7f,0xf4,0x8b,0x5b,0xdd,0x4d,0x74,0x2d,0xda,0xd4,0x20,0x09,0x68,0xe1,0x45,0x7f,0x5a, - 0xdd,0x81,0xfc,0x51,0x2b,0x2f,0xab,0x54,0xfd,0xad,0x55,0x9f,0xf5,0x85,0xc9,0x5f,0x9b,0x8f,0x7b,0x04, - 0x53,0x84,0x8a,0xc8,0x8a,0xb6,0x4c,0x9e,0xf7,0xd2,0x1e,0xb1,0x3c,0x5a,0x8b,0xac,0xf2,0x86,0x2a,0x8d, - 0x26,0x7d,0x7e,0x4d,0x2e,0xe1,0xe7,0xc2,0x4a,0xe5,0x69,0x6f,0x71,0x6d,0x6d,0xf5,0x39,0xa8,0x17,0xe9, - 0xd1,0xc1,0x86,0xf5,0xc9,0x6f,0x68,0x84,0xee,0xda,0xfd,0x28,0xba,0xa1,0x8d,0x40,0x3b,0x78,0xb7,0xb3, - 0x79,0xb5,0x1f,0x1d,0x8c,0xbb,0x33,0xa2,0x83,0x61,0x77,0xc6,0xe3,0x83,0xcf,0xb4,0x26,0x68,0x47,0xa5, - 0xcf,0xd4,0x03,0xbb,0x9d,0x25,0x3b,0xa5,0x09,0x9f,0xee,0x9a,0xc1,0xb6,0x5a,0xea,0xec,0x6c,0xa9,0xc5, - 0x31,0xde,0xe1,0xa8,0xc3,0x1f,0xdd,0xdc,0xed,0xa3,0xee,0x06,0x46,0x5b,0xfb,0x15,0x24,0x21,0x5a,0x8f, - 0xfb,0xac,0xe6,0x08,0xbd,0x4b,0x62,0x1b,0x6e,0x58,0xe6,0x7e,0x3f,0xbc,0x7f,0xe3,0x3e,0xa8,0x68,0x8b, - 0x4d,0x50,0x02,0xa8,0x58,0x15,0x3e,0x90,0x75,0xb4,0x1a,0x90,0x90,0xdd,0xcc,0x30,0x4e,0xed,0x54,0x87, - 0x89,0x6c,0xea,0xf8,0x58,0x4c,0x5d,0x4b,0xfd,0xe7,0x66,0xd6,0xae,0x31,0x74,0x87,0xad,0xbc,0x1d,0xa3, - 0x88,0x12,0x87,0x3b,0xd4,0xee,0xb1,0xfc,0x19,0xb6,0xb3,0x6b,0x6c,0x61,0x47,0xdb,0x36,0x0b,0xda,0xa1, - 0xfd,0xb4,0x85,0xa1,0x22,0xbe,0x41,0x30,0x56,0xd2,0x86,0xa5,0x1a,0x71,0xb9,0x99,0x4d,0xfc,0x95,0x74, - 0x80,0xdb,0x5f,0xe7,0xc1,0xac,0x39,0xdc,0x74,0x7b,0x3a,0x2b,0xc0,0x17,0xa9,0x51,0xd7,0x35,0x6a,0x75, - 0x6d,0x8d,0x5d,0x83,0xe1,0x6a,0xa6,0x13,0x8b,0x0b,0xb3,0x59,0x90,0x2e,0x0d,0x2d,0xbc,0x8f,0xaf,0x5f, - 0x7e,0x5c,0xbf,0x4a,0xc7,0xd6,0xea,0xdf,0x68,0xa0,0xda,0x0b,0xd8,0xa5,0x6c,0x17,0x79,0x7f,0xf3,0xfa, - 0x49,0xc3,0xe2,0x67,0x5b,0xbf,0xed,0x33,0x69,0xf5,0x0e,0x0d,0xdf,0xcd,0xff,0x07,0xdb,0x20,0xdf,0xb3, - 0x3e,0x1d,0x02,0x00}; + 0x8b,0x35,0x16,0x1e,0x52,0xff,0x92,0xcb,0x12,0x27,0x0d,0x65,0x87,0xc4,0xb0,0xc1,0x42,0x03,0x76,0x0b, + 0xb8,0xbe,0x68,0x56,0x74,0xae,0xba,0x2c,0xb7,0xae,0xba,0xec,0x59,0xd1,0x6c,0xd1,0xe1,0x7f,0x9d,0xbc, + 0x9e,0x39,0x9e,0xf6,0x58,0x0a,0x38,0x90,0x99,0x43,0xef,0x9b,0xc3,0x31,0x20,0x2a,0x2e,0x3c,0xbe,0x9e, + 0x48,0x19,0xb3,0x2e,0xd4,0x3a,0x01,0xf1,0x01,0x7b,0xbc,0x1a,0x0c,0xfd,0x28,0x65,0x2c,0xcd,0xb7,0x74, + 0x11,0x8a,0x36,0x76,0x64,0xc0,0xce,0xd6,0xc1,0xe7,0x49,0x48,0x64,0x9f,0xba,0xcf,0xed,0xee,0x5c,0x8a, + 0xfb,0x00,0x4b,0xf7,0xe1,0x24,0x2d,0x72,0x7c,0xa7,0x64,0x93,0x4d,0x18,0xbe,0xaa,0x12,0xfa,0xf5,0xf9, + 0xfa,0xae,0xea,0x46,0x08,0x08,0xcd,0xcc,0x6b,0x96,0x67,0x30,0xe8,0x50,0xb8,0xda,0xff,0xc2,0xc4,0x39, + 0x94,0x05,0xcf,0xe6,0x4a,0xeb,0xa3,0x85,0xdf,0xa0,0x41,0x5d,0x57,0xa3,0xeb,0xca,0x67,0x21,0x85,0xa7, + 0x20,0x36,0x62,0x6c,0xbe,0x31,0x26,0x71,0x2c,0x09,0x3d,0x3b,0xa3,0x5d,0x90,0x45,0x5a,0x0f,0xdc,0x93, + 0x6b,0x5b,0xe2,0x98,0x1c,0x87,0x9d,0x53,0xc2,0xe3,0xed,0x3b,0x19,0xc2,0xdd,0x77,0x4f,0x15,0x5f,0x30, + 0xd0,0x57,0xde,0xc4,0xd0,0xae,0x92,0x9c,0x6f,0x47,0x24,0x7e,0xfd,0xec,0x6a,0x95,0x9d,0x9d,0x25,0x6e, + 0x87,0xa0,0x37,0x06,0x43,0xd0,0xa3,0x2d,0xe1,0xf1,0xd3,0xf7,0xb4,0x9c,0x54,0x5e,0xa4,0x4d,0xf3,0x26, + 0x13,0xa2,0x55,0x43,0x3a,0xcf,0x09,0x56,0x5b,0xa9,0x76,0x3a,0xee,0xf1,0x79,0xf7,0xca,0xd7,0x72,0xf8, + 0xd2,0xbe,0x2d,0x2d,0x8c,0xa1,0xf4,0x75,0x9b,0xe6,0xd5,0xb3,0x13,0x6e,0xd7,0xa5,0xe5,0x44,0x1d,0x8d, + 0xc9,0xae,0x01,0x8a,0x36,0x97,0x1b,0xdd,0x76,0x60,0xc3,0xb8,0xe0,0x44,0xaa,0xff,0x03,0x77,0x33,0xa5, + 0x3f,0xba,0xd1,0x2e,0xeb,0x1e,0x7a,0x34,0x30,0xed,0x95,0x31,0xe2,0x02,0x68,0x66,0x3c,0x2e,0xbf,0x25, + 0xbe,0xb8,0x63,0xb8,0xee,0x4c,0x1a,0x39,0x4b,0xba,0x56,0x11,0x2b,0x05,0x6e,0xac,0x02,0xc7,0x66,0xc1, + 0xb0,0xda,0xab,0xc1,0x11,0x10,0xda,0x9c,0xd3,0xb4,0xe6,0x25,0x19,0xe3,0xc7,0xfd,0x7d,0x3b,0x15,0xfe, + 0x2c,0xa8,0x3e,0xd8,0xd6,0x5b,0x47,0xe0,0xcb,0xce,0xac,0x73,0x66,0xb2,0x20,0x4c,0xd8,0xf5,0xf3,0x00, + 0xe8,0x83,0x68,0x1b,0x9e,0x5a,0xb2,0x7a,0x31,0xb7,0xdf,0xa8,0xf7,0x59,0x18,0xbe,0xee,0x60,0x87,0x48, + 0xbd,0x6e,0x01,0x46,0x41,0x2c,0xff,0x71,0x3e,0x69,0x9b,0x3e,0x6a,0x14,0xf3,0x9d,0x56,0x36,0x12,0x34, + 0xb5,0x3e,0xd2,0x32,0x01,0x1f,0x98,0xdc,0xea,0xab,0x2d,0xc1,0x91,0x16,0x73,0x6d,0x09,0xfa,0x58,0x2b, + 0xe1,0x30,0x52,0xd4,0x22,0xd4,0x8d,0x14,0xc2,0x39,0x33,0xcb,0x3b,0xd8,0x0b,0xdc,0xc2,0x62,0x5c,0xd3, + 0x08,0xfb,0x9f,0x1c,0x9c,0x0e,0x06,0xf8,0x0b,0x05,0x4e,0xe4,0x89,0xd0,0x41,0xba,0x7f,0x22,0xa6,0x12, + 0x92,0xe2,0x4d,0x47,0x6a,0x51,0x59,0x0d,0x45,0x4b,0x7d,0x22,0x7a,0x0a,0xad,0x0f,0x11,0xbe,0x94,0x0d, + 0x30,0x10,0xb0,0x40,0x68,0xdc,0x96,0x28,0x6d,0x4b,0x92,0xe1,0x99,0x64,0x3c,0xe1,0xcb,0x51,0x03,0x29, + 0xcd,0x37,0x13,0x19,0xa9,0x8d,0x41,0xe1,0x25,0x0d,0x54,0x44,0xd2,0x88,0xa6,0x0f,0x6e,0x83,0x9a,0xa9, + 0x42,0x8e,0xf3,0x69,0xd4,0x2e,0xaa,0x14,0x6a,0xf6,0x75,0x45,0x3b,0x5a,0xbd,0xab,0x92,0x13,0xed,0x2b, + 0xf9,0x2e,0xbb,0x78,0xf6,0x69,0x29,0xf6,0xb6,0xa7,0xea,0x49,0x95,0xdc,0xfe,0x60,0xc4,0xd7,0xb1,0x0e, + 0x73,0xe2,0x47,0xb3,0x36,0x9b,0x8c,0x15,0x76,0x12,0xe9,0x22,0x2f,0x26,0xf3,0xd5,0x34,0x8b,0xdf,0x11, + 0x7e,0xfe,0x64,0x1f,0x17,0xe9,0xa7,0xd8,0xb4,0x21,0xf7,0xef,0x9c,0xc2,0xa8,0x90,0x69,0xf8,0xb8,0x8b, + 0x86,0x26,0x29,0x6d,0xa4,0x3b,0x29,0x0d,0xe6,0x29,0xe1,0xbd,0xa1,0x2c,0xb0,0xb7,0x5c,0x5b,0x8c,0xb6, + 0x95,0x39,0x1f,0x5b,0x5d,0xf4,0xd2,0x48,0x34,0xf1,0xa6,0x32,0x57,0x15,0xc1,0x21,0x6f,0x5d,0xd7,0x75, + 0x1f,0x68,0x5f,0xe8,0x9d,0xe5,0x64,0x49,0x16,0x90,0x3f,0x68,0x49,0x1a,0x44,0x4f,0x9f,0xfe,0xca,0x97, + 0xbb,0xee,0xcb,0x8d,0xda,0x8e,0x38,0xe0,0xe3,0x3c,0x86,0xb8,0xa1,0x8e,0x05,0x46,0x9b,0xe0,0x9f,0x62, + 0x2a,0xcc,0x1e,0x0d,0x5b,0x92,0x67,0x3f,0x20,0xe7,0x5b,0x5c,0x94,0xa0,0x34,0xf9,0xa4,0x07,0x06,0x43, + 0x73,0x51,0xe2,0xf3,0x2b,0xdf,0x95,0x49,0x80,0xbd,0x4b,0x30,0x82,0x2e,0xe5,0x08,0x06,0x41,0x90,0x4f, + 0x30,0x3c,0x18,0x7c,0xc0,0xc5,0xde,0x2e,0xb2,0x7f,0x63,0x82,0x04,0xb9,0x29,0xd4,0xc6,0x20,0x98,0x42, + 0x35,0x31,0x62,0x0c,0xbe,0x5e,0xb9,0x90,0xe8,0xee,0x93,0x7c,0xba,0x17,0x4a,0xc4,0x8a,0x20,0x8e,0x11, + 0x6b,0x83,0x03,0xb3,0x04,0x50,0x31,0x20,0xc4,0x52,0x79,0x32,0x39,0x1d,0xf7,0x6a,0x9b,0x90,0xd3,0xa3, + 0x70,0x5a,0xc9,0xed,0x59,0xda,0x42,0x67,0x82,0x28,0xcb,0x28,0x49,0xb4,0xae,0x4d,0x92,0x65,0x25,0x68, + 0x1b,0x0c,0x0c,0x8e,0xfe,0xc6,0x06,0x0c,0x34,0x79,0xb4,0x9b,0x5f,0x82,0x98,0xc3,0xbd,0xaa,0xaa,0x45, + 0x70,0x44,0x46,0xd4,0xe2,0xb4,0x36,0x90,0xf6,0x98,0x49,0xa0,0x83,0x67,0x30,0xc8,0xe8,0x2b,0xe2,0x55, + 0x7a,0x22,0x16,0x7f,0x8e,0x8f,0x7c,0x56,0xdc,0xc9,0x11,0x12,0x33,0xcb,0xda,0x7b,0x66,0x04,0xb3,0xe1, + 0xaa,0xc9,0xe7,0xc9,0x2d,0x3c,0x3d,0xe3,0x5f,0x08,0x6f,0x7c,0x6a,0x08,0x40,0x10,0x4d,0x16,0xb6,0xd9, + 0x7a,0xa5,0xe3,0x97,0x4a,0x2a,0x79,0x27,0x1a,0x9c,0x2c,0xbe,0x07,0x22,0xd4,0x70,0x82,0x1e,0xfb,0x67, + 0x11,0xf1,0x77,0xca,0x5e,0xfa,0xd0,0xbb,0xb3,0xfa,0xac,0xaf,0x59,0x84,0x65,0x6e,0x8a,0x68,0xc4,0x08, + 0xbb,0xcf,0x05,0x2b,0x72,0x75,0x0f,0xcf,0xce,0xd3,0x1a,0x74,0x1b,0xae,0x3d,0x35,0x69,0x76,0x25,0x6b, + 0xc2,0x28,0x3c,0xc4,0x3a,0xbb,0x83,0x42,0x86,0x90,0x9d,0x56,0x1b,0x17,0x8e,0xbc,0x9d,0xaf,0x2e,0x72, + 0x8e,0xbf,0xda,0x9f,0xc1,0x77,0xee,0x71,0x68,0x50,0xe3,0x11,0x99,0xe1,0xf6,0x8a,0x16,0x6b,0x20,0x54, + 0x67,0x9b,0x84,0x76,0x6c,0x92,0xf6,0x9e,0xd0,0xa2,0x85,0x1e,0x19,0x04,0x62,0x90,0x70,0xa3,0x63,0xfb, + 0xa4,0x09,0x6c,0x8e,0xae,0xd5,0xf7,0x05,0xb4,0x59,0xde,0x95,0x65,0xcc,0xb5,0xf9,0x06,0x65,0x58,0xa7, + 0x45,0xfe,0x29,0xef,0x75,0x96,0xe6,0x81,0x3a,0x25,0x8c,0xff,0xaa,0xec,0xf7,0x6d,0xe1,0x2c,0x6d,0xb2, + 0xe4,0x40,0x4b,0x65,0x0f,0x89,0x41,0x16,0x78,0x69,0x55,0x9e,0x25,0xac,0xb8,0xf1,0x48,0x70,0x08,0xe7, + 0xf1,0xa5,0x5c,0xbc,0x8b,0xcd,0x2a,0xf7,0x1a,0xe2,0x89,0xe5,0x78,0xc0,0x0c,0x50,0x14,0x1a,0x03,0x74, + 0xe3,0xab,0x82,0x13,0x53,0xae,0x63,0xb4,0xa1,0x54,0x24,0xca,0x76,0xd9,0xa3,0xf1,0x83,0x22,0x90,0x3d, + 0x22,0x74,0xc0,0x80,0xd2,0x1d,0xf6,0x5d,0x30,0xf2,0x28,0x89,0xc8,0xd7,0x39,0x25,0x25,0xe2,0x55,0xd3, + 0x10,0x71,0x43,0x7c,0xe9,0x4d,0x4d,0xe1,0xcf,0x4b,0x39,0xac,0x57,0x4b,0xe8,0x69,0x5c,0x91,0x6d,0xa1, + 0xb4,0x93,0x46,0x7d,0x56,0x26,0x0b,0x99,0xa2,0x2f,0x75,0x39,0xb3,0x52,0x97,0x0d,0xee,0x3a,0x29,0x5b, + 0x40,0xdd,0x95,0x26,0x6e,0xb7,0x61,0x4a,0x75,0x9b,0x99,0xb5,0x9b,0x31,0x62,0x79,0x69,0x42,0xaf,0x61, + 0xa1,0x1f,0x28,0x45,0x20,0xa6,0x90,0x5f,0x7a,0xc7,0x06,0x2a,0xf0,0xf7,0x2e,0xaf,0x89,0x92,0x79,0x5f, + 0x8e,0x39,0xab,0xe4,0x06,0x97,0xed,0xcd,0xc8,0x6e,0x08,0x76,0xf6,0x8c,0x37,0x9c,0x9b,0x59,0xd3,0x11, + 0x93,0x93,0xf1,0xc5,0x30,0x29,0xed,0x40,0xeb,0x7e,0x87,0x4b,0x79,0x4b,0xa7,0x75,0x05,0x9c,0x60,0xc9, + 0x24,0xd2,0x7c,0x91,0xdc,0xd9,0x3d,0xf4,0xac,0x13,0xc9,0xc7,0xfa,0x94,0x84,0x5e,0x44,0x00,0xf1,0x13, + 0x43,0xfc,0x1a,0x66,0xaa,0x00,0x6a,0x49,0xa1,0x21,0xd0,0x5a,0xb3,0xb6,0x50,0x8f,0xee,0x33,0x47,0xb2, + 0xf1,0xc2,0x09,0x48,0x45,0x3d,0x1b,0x96,0xb9,0xb5,0xe4,0x16,0xd1,0x2d,0xe3,0x42,0xe9,0xd8,0xe7,0xc5, + 0xc6,0xb8,0xfa,0x68,0xe4,0x27,0x1e,0x28,0xb0,0x28,0x2c,0xd8,0xdb,0xa5,0x37,0x6f,0xa3,0x5d,0xa6,0x0a, + 0x61,0xa1,0xfb,0xb1,0xfd,0xd3,0xb6,0x4c,0x2f,0xaf,0xdf,0x8b,0xaf,0xb1,0x38,0x46,0xff,0x86,0x96,0xff, + 0xd4,0x87,0x75,0x5d,0x69,0xd7,0xc8,0x6d,0x9f,0x6a,0x1f,0x9b,0xb4,0x59,0x4a,0x21,0xe8,0xdd,0xb7,0xb0, + 0x7c,0xa7,0x8a,0xe1,0xf7,0x96,0xc3,0xf6,0xfa,0xe1,0xf0,0xab,0xe1,0xe1,0x17,0x12,0xa6,0xe5,0xe7,0x4a, + 0xfd,0x54,0xa9,0x1f,0x2b,0xf5,0x5d,0xa5,0x7e,0xaf,0xd4,0x0f,0x95,0xfa,0xad,0x52,0xdf,0x57,0xea,0xdb, + 0x8a,0xc3,0x69,0xf0,0xbd,0xcf,0xfa,0xce,0x57,0xf5,0x0b,0xa7,0xf1,0xdd,0x36,0x0a,0xf5,0x12,0x99,0x99, + 0x2a,0x99,0x20,0x25,0xf7,0xfb,0x80,0x3c,0xbc,0x80,0xe9,0x20,0x95,0xfe,0x77,0xd7,0x76,0xde,0x86,0x48, + 0xb2,0xf7,0x9b,0xd3,0xb2,0xfc,0x52,0xb1,0x48,0x2d,0x90,0x88,0xc6,0x70,0xbc,0x68,0x10,0xb4,0x45,0xdf, + 0x16,0xa4,0x0b,0x05,0xd2,0x08,0xaf,0x2f,0xe5,0x12,0x5d,0x32,0xf9,0xe8,0x32,0xe5,0xb2,0x1d,0x9d,0x67, + 0xe3,0xa8,0x23,0x07,0x62,0xe7,0x92,0x73,0x36,0xea,0x5f,0xdc,0xf9,0x89,0x5c,0xf6,0x9e,0x4d,0xf3,0x06, + 0x46,0x74,0x6a,0x5a,0xa5,0x17,0x17,0xfc,0x54,0x2f,0xb3,0xf9,0x9c,0x6b,0xa6,0xbe,0xff,0x93,0x0b,0xd3, + 0x41,0x50,0x5e,0xcf,0x08,0xc1,0xd7,0x84,0xc1,0x88,0xa9,0x64,0x97,0x4c,0x95,0xae,0x9a,0x72,0x56,0x4e, + 0x56,0x35,0x3f,0x2d,0xe7,0xe9,0x8d,0xd2,0x1d,0xe2,0xc0,0x23,0x74,0x54,0xc3,0x4e,0x8f,0x48,0xd6,0x79, + 0x4d,0xe7,0x37,0xcd,0x5d,0x95,0x29,0x43,0xda,0xe9,0x5f,0x53,0x5e,0xbf,0x72,0x9f,0xcd,0x8b,0x19,0x3a, + 0xde,0x89,0xf3,0x99,0xe6,0x35,0xba,0x37,0x55,0x59,0x21,0xbf,0x88,0x60,0x50,0x94,0x34,0x85,0x39,0x80, + 0x58,0x5d,0xe6,0xd3,0x29,0x75,0x0d,0x87,0x63,0x93,0x55,0x8b,0xbc,0x40,0x22,0x41,0x54,0xd5,0xa8,0xbc, + 0x5e,0xa4,0x4b,0x95,0x37,0xd9,0x42,0x22,0x9d,0xcc,0xcb,0x72,0xa9,0xcc,0x35,0x53,0x4a,0x1a,0x2d,0x4a, + 0x84,0x6a,0x51,0x08,0x2f,0x51,0xe7,0xbf,0x13,0x8a,0x2a,0xeb,0xcb,0x14,0x0c,0xa7,0x6b,0xa1,0x28,0x11, + 0x3d,0x8a,0xd6,0x99,0x9a,0x59,0xa6,0x84,0x8d,0x68,0xd3,0x7e,0xca,0x1b,0x22,0x69,0xd3,0x69,0x59,0xcc, + 0x11,0x55,0xe5,0xb7,0x15,0x6d,0xc1,0xa9,0xd2,0xae,0x95,0x53,0x25,0x6c,0x11,0xc1,0x44,0xba,0x98,0x13, + 0x30,0x28,0x3b,0x26,0xf8,0x60,0xf2,0x6c,0xdb,0x8b,0x5d,0x38,0x36,0x28,0xcd,0x3d,0x65,0x02,0xe6,0x11, + 0x58,0x82,0x63,0xc5,0xab,0xab,0xbc,0xce,0xa9,0x24,0x62,0x84,0xe5,0x49,0x70,0xd9,0x34,0xcb,0xf8,0xc1, + 0x83,0xeb,0xeb,0xeb,0xe1,0xf5,0x17,0xc3,0xb2,0xba,0x78,0x70,0xf8,0xf5,0xd7,0x5f,0x3f,0xf8,0x34,0xcf, + 0x8b,0x8f,0x44,0x51,0xe5,0x3d,0xe7,0x6c,0x10,0xb7,0x5c,0x50,0xbe,0x02,0x94,0x49,0x79,0x4e,0x36,0x21, + 0x7a,0xbe,0x22,0xc2,0xbe,0xe8,0xfb,0x7e,0xa7,0x81,0x4d,0xae,0xf5,0x2e,0xf9,0xbb,0x32,0x82,0x4d,0x8e, + 0xd9,0xa2,0xaa,0xde,0x6f,0x84,0x40,0x26,0x40,0xdc,0x3d,0x14,0xb0,0xcb,0xf3,0xe4,0xb6,0xbe,0x22,0x82, + 0x78,0x7b,0x04,0x0f,0x0f,0x0e,0x0e,0x1e,0x50,0x5e,0x40,0x7c,0x53,0x73,0xd9,0x57,0x82,0xc6,0xf8,0x8f, + 0x07,0xb8,0x23,0x95,0xff,0xbc,0x7a,0x49,0xcd,0xa6,0x39,0x20,0xf3,0xb2,0x59,0xcc,0xd5,0x79,0x39,0xbd, + 0x51,0xc0,0x86,0xea,0x92,0x96,0x42,0x61,0x68,0x0a,0x11,0xca,0x95,0xec,0xda,0x26,0x6f,0xe8,0x6f,0x3a, + 0x9d,0x62,0x3f,0xaa,0xb4,0x6a,0xf2,0x09,0xde,0x6b,0xda,0x13,0x04,0x44,0x25,0x6e,0xf1,0xc4,0x77,0xf8, + 0x39,0x54,0x97,0x0f,0xd5,0xe5,0x17,0xea,0xf2,0x4b,0x75,0xf9,0x95,0xba,0xfc,0xbb,0xba,0xbc,0xa8,0xca, + 0xd5,0x52,0x15,0xe9,0x15,0xad,0x1d,0x8f,0x91,0x00,0xf1,0x4a,0x4d,0x09,0x2a,0xe7,0x6a,0xda,0x28,0xa2, + 0x63,0xe1,0x61,0x83,0x74,0x36,0x48,0xcd,0xd4,0x32,0x9f,0xc0,0xe1,0x46,0x5d,0x56,0x2a,0x5f,0x5c,0x50, + 0x67,0x68,0x50,0x38,0xc4,0xe6,0x6a,0x09,0xc3,0x46,0xb5,0x9a,0xab,0x54,0x9d,0x13,0x2b,0x79,0x5e,0xa9, + 0xf3,0x69,0x4e,0xff,0x4b,0x45,0x8f,0x13,0x02,0x4f,0x8e,0x42,0xa4,0xf8,0x32,0xfb,0xe9,0x8c,0x68,0xe1, + 0x85,0xca,0xd5,0xc7,0xf3,0x29,0x55,0x50,0x7d,0x54,0xbf,0xa9,0x6a,0xa9,0x08,0x98,0xab,0x66,0xa2,0xaa, + 0xd5,0xf9,0x0d,0x51,0xf2,0x75,0xba,0x58,0x2a,0x82,0x6d,0x22,0xbc,0xea,0x65,0x4a,0xa8,0x87,0xf6,0x1a, + 0x31,0x9c,0xf5,0xea,0x9c,0xfe,0x2f,0xf9,0x5e,0x5b,0xb5,0x52,0x84,0xdc,0xd4,0xf5,0x39,0x84,0xe8,0x84, + 0xa4,0xd2,0xd5,0x34,0x2f,0x15,0xb6,0x03,0x18,0xd9,0x8f,0x8a,0x11,0x03,0xb5,0x74,0x4e,0x60,0x27,0xde, + 0x60,0xb0,0x44,0x4d,0x17,0x04,0xa0,0xab,0x8a,0x78,0x90,0x49,0x5a,0x5c,0xa5,0xd4,0xd2,0xa4,0xca,0x97, + 0x0d,0x36,0x85,0x3c,0x10,0xc9,0x0d,0x43,0x37,0x65,0xc6,0x3e,0xa1,0xe1,0xd1,0x7f,0x99,0x2c,0x0d,0xd8, + 0xbc,0x16,0x0d,0xaf,0x4d,0x43,0x0f,0x97,0xd4,0xa2,0x12,0xe4,0xc6,0x43,0x84,0x29,0x01,0xcd,0x59,0x36, + 0x9f,0x12,0x1d,0xcf,0x9b,0x59,0x09,0x42,0x9d,0xa7,0xe7,0x54,0xfb,0x3c,0xbb,0x00,0x2d,0xb0,0xc0,0x66, + 0x06,0x6a,0x95,0xaa,0x35,0x8e,0x2d,0x57,0x0d,0x4a,0x1a,0x1c,0x6b,0x70,0xae,0x45,0xc5,0x84,0x02,0xd2, + 0x1c,0x58,0x27,0x4f,0xe7,0xe5,0x05,0x55,0x52,0xac,0xf8,0x0f,0x50,0x00,0x4d,0xcd,0x82,0x26,0xf4,0x46, + 0x69,0x0c,0xa8,0x32,0x11,0x3a,0x28,0xec,0xf7,0xf2,0x5a,0x99,0xd0,0x59,0x8a,0x83,0x93,0xfd,0xb6,0x2a, + 0x81,0x46,0x66,0x15,0xa8,0xbe,0x06,0xd0,0x02,0x21,0x04,0x83,0x1e,0x01,0xac,0x4a,0x8b,0x7c,0x81,0xb2, + 0x93,0xbc,0x9a,0xf0,0xf9,0x90,0x2f,0x97,0x04,0xa0,0x6a,0xb2,0xaa,0x68,0x87,0x03,0x73,0x01,0xf5,0xd5, + 0x13,0x6a,0x84,0xb2,0x08,0x40,0x25,0xca,0x0f,0x0d,0xb7,0x68,0xf6,0x67,0xe9,0x04,0x00,0x58,0x65,0xf9, + 0x45,0x21,0x87,0xa0,0xba,0x50,0x17,0xf3,0x9b,0xe5,0x25,0x41,0x4e,0x7a,0x91,0x01,0x90,0x33,0x5e,0xfc, + 0x0c,0x12,0x85,0x9a,0x80,0x3a,0xaf,0x71,0xcb,0xda,0xbe,0x14,0xe2,0x96,0xe8,0x0f,0x55,0x48,0x08,0xa9, + 0x9c,0xdf,0x5c,0x94,0xf2,0xcb,0xdf,0x81,0x14,0x50,0xe2,0x4a,0xad,0x6a,0x0e,0xb5,0xc1,0xf3,0xc3,0x7f, + 0xf8,0xcb,0x86,0x61,0x06,0x44,0xd5,0x55,0x9e,0x5d,0x4b,0x84,0xa8,0xba,0x77,0x2f,0xa7,0x62,0x93,0x5f, + 0xf2,0xfd,0xe1,0x34,0xd6,0x5e,0x8e,0x6a,0xce,0x93,0x22,0xf6,0x8d,0x2c,0xf1,0x60,0x87,0xb3,0xeb,0xb2, + 0x62,0xf4,0x57,0x51,0x2f,0x32,0xda,0x08,0xe8,0xc4,0x5c,0xad,0x2a,0x44,0xcf,0x5e,0xe5,0xdd,0xd0,0x56, + 0x2d,0x29,0x50,0xaf,0xf5,0xef,0x1d,0xe1,0xb7,0xec,0x45,0xca,0xfa,0xc0,0xe4,0x08,0xe5,0xe3,0x22,0x0e, + 0x1b,0x6d,0x48,0xdb,0x78,0x86,0xb4,0x83,0x81,0x8d,0x97,0xe6,0x27,0xdb,0x8b,0x07,0x61,0x15,0xd3,0xbe, + 0x08,0xde,0xe4,0x20,0xe2,0x92,0x79,0x8c,0xf8,0x52,0xc3,0x56,0x37,0x5e,0xbf,0xef,0xf4,0x59,0xcf,0x5f, + 0x7f,0xa7,0x5f,0xbf,0x0f,0xf3,0x1c,0x21,0x28,0x1b,0x5b,0xcf,0x31,0xcd,0x1e,0xee,0xac,0x8c,0x7b,0x16, + 0xa1,0x53,0x89,0x29,0x2a,0x4b,0xc2,0x49,0x3a,0x6e,0xc0,0x9f,0xf8,0x58,0x97,0xe4,0x6f,0xc5,0x5e,0xf5, + 0x09,0x8b,0xa8,0xb7,0x7c,0xc8,0x99,0x0f,0xb4,0xd9,0xa1,0x5c,0xe4,0x28,0x36,0xfb,0x6c,0xcc,0xd4,0x19, + 0xaf,0x89,0x10,0xc2,0x79,0xb8,0x20,0x44,0xe1,0x6e,0xe3,0x62,0xda,0x5f,0xd6,0xcb,0xe3,0xb2,0xee,0xce, + 0xce,0xbe,0x21,0x64,0xde,0x9d,0x9e,0x74,0x50,0xd1,0xf0,0xdf,0xd3,0xb1,0x48,0xbb,0xa1,0xbf,0xb0,0x57, + 0x60,0x83,0x8b,0xc9,0x38,0x60,0x53,0x6f,0x49,0x9d,0xb9,0x81,0xfb,0x00,0x66,0xf5,0x48,0xf0,0xc2,0x56, + 0x77,0x1b,0x97,0x97,0x34,0x5c,0xda,0x42,0x48,0xcf,0xbc,0xb5,0x00,0x88,0xe7,0x0d,0x97,0xe2,0xfc,0x7f, + 0xed,0xbd,0xfb,0x7a,0xdb,0x46,0xb2,0x2f,0xfa,0x2a,0x14,0xc6,0xdb,0x06,0xc2,0x16,0x25,0xf9,0x92,0x49, + 0x40,0xc3,0x1c,0x5f,0x72,0x71,0x12,0x5f,0x56,0xac,0x38,0x93,0x48,0x1a,0x2f,0x88,0x04,0x25,0x58,0x14, + 0xc0,0x01,0x41,0xc9,0x8e,0xc8,0x07,0x3a,0xff,0x9e,0x47,0xd8,0x4f,0x76,0xea,0x57,0xd5,0xdd,0x68,0x5c, + 0x28,0xd9,0xc9,0x5e,0xeb,0xec,0x6f,0x7f,0x7b,0xe6,0x8b,0x05,0xf6,0xfd,0x52,0x5d,0x5d,0x55,0x5d,0x17, + 0xba,0x03,0x65,0x07,0x1a,0xad,0xff,0x9a,0xf0,0x0a,0x68,0x7a,0xbc,0xd9,0x33,0xc3,0x28,0x51,0x27,0x15, + 0xc0,0x8a,0x67,0xe1,0x5f,0x21,0x57,0xc3,0xb1,0xe5,0xea,0x41,0xb7,0x06,0xaf,0x29,0xb4,0xa6,0xec,0x54, + 0xbb,0x9d,0xf0,0x3d,0xa2,0xa2,0xd7,0x0a,0x91,0x5d,0xe6,0x29,0x7c,0x92,0x19,0x3f,0x63,0x46,0x41,0xd6, + 0x7a,0x10,0x63,0x3f,0x11,0xd8,0xd2,0xca,0x73,0x98,0x77,0x44,0xb4,0x96,0x9d,0xc7,0xf7,0x89,0x19,0xf5, + 0xf7,0x49,0x67,0xff,0xdf,0xa3,0xff,0x49,0x8a,0xfe,0x2f,0xba,0x31,0xc7,0x39,0x0d,0x61,0x9a,0x52,0xa3, + 0x47,0xea,0xa4,0x6a,0xf8,0xdf,0xb6,0xe1,0x7f,0xd3,0xde,0x7c,0xac,0x32,0xbe,0xb3,0x19,0xdf,0x51,0xc6, + 0x71,0x1a,0xed,0x1c,0x1c,0x5e,0x06,0x83,0xfe,0xe1,0xf6,0xbb,0x5b,0x87,0x47,0x47,0x3b,0xea,0x1d,0xe2, + 0x06,0xbc,0x23,0x1e,0xe3,0x92,0x3f,0xc6,0x9e,0xda,0xaf,0x6a,0xd3,0xe5,0xa5,0x6b,0xcf,0x69,0x13,0xcf, + 0xaa,0x8c,0x53,0x9b,0x71,0x4a,0x19,0x4f,0xd3,0x4e,0x6b,0x5e,0x0e,0x58,0xb7,0x13,0xfa,0x83,0x7e,0xb0, + 0x53,0x85,0x63,0x10,0x63,0xcb,0x9d,0xa1,0x3f,0xda,0x3a,0xf8,0x97,0x7f,0xf4,0xc5,0x61,0x10,0xec,0x9c, + 0x74,0x28,0xa5,0x89,0xbd,0x66,0x52,0xb9,0x71,0x95,0x8a,0x50,0x26,0xb0,0x2f,0xa2,0x78,0x8c,0x38,0x40, + 0xec,0x56,0x1d,0xcc,0xe7,0x28,0x2a,0xaa,0xc0,0x3f,0x0c,0x44,0x25,0x3c,0xd3,0xd1,0xac,0xff,0xb5,0xbd, + 0xbd,0xa3,0x3e,0xd0,0xc7,0xe1,0xe2,0x8b,0xad,0xf4,0x1c,0xf6,0xd3,0x71,0x56,0xde,0xda,0x51,0x8f,0xd3, + 0x2e,0xad,0x87,0x37,0x3a,0x74,0x3d,0x01,0x4a,0x22,0x31,0x07,0x01,0xa3,0x96,0xdf,0x2a,0x5d,0x6b,0x8d, + 0x0f,0xba,0x6c,0xb6,0xb1,0xac,0xf5,0x9e,0xf7,0x21,0xe5,0x48,0x45,0x9e,0x1d,0x80,0x57,0x0b,0x2a,0xf0, + 0x2a,0xf5,0xc5,0x3b,0x7d,0xfd,0xb1,0x3c,0xab,0xe9,0xe0,0x74,0xbd,0xf0,0xea,0x7e,0xc1,0x61,0xb3,0x36, + 0x94,0x04,0x91,0x72,0x12,0x09,0x9e,0x6e,0x01,0x76,0x25,0x54,0x22,0x81,0xe7,0x8b,0xfc,0x0f,0xe0,0xe7, + 0x05,0x5c,0xe8,0x35,0x77,0x8f,0x06,0xf0,0x43,0x11,0xfd,0x50,0xdc,0xe0,0xbf,0x51,0x9a,0xb7,0xbe,0xf8, + 0xb6,0xd8,0xfe,0x1a,0x01,0x24,0xe0,0xa1,0x94,0x25,0xec,0x3f,0x98,0xb8,0x7c,0xbd,0xc4,0x79,0x2c,0xfb, + 0x14,0xdf,0x84,0xda,0xe3,0xc5,0xad,0xb4,0xc3,0xad,0xe6,0xad,0xf4,0x20,0x3b,0xea,0xb3,0x5a,0x70,0x51, + 0xef,0xa5,0xc0,0x8e,0x7f,0x53,0x41,0xe9,0x89,0x85,0xd2,0x13,0x82,0xd2,0x67,0xcd,0x79,0x6a,0x8b,0xf0, + 0x84,0x43,0x61,0x82,0x59,0x0d,0x89,0x5d,0xdf,0xe6,0x9f,0x9e,0xe2,0x3f,0x3a,0xf2,0x73,0x95,0xbe,0x5d, + 0xe6,0x3a,0xcb,0x89,0x01,0xed,0x64,0x8b,0xc4,0xd5,0x53,0x55,0x18,0x69,0xce,0xe4,0x9f,0x3a,0xd5,0x6d, + 0x93,0x13,0xb8,0xcd,0x66,0x5c,0x69,0x27,0x5b,0xb7,0x89,0xb9,0xbd,0x4e,0xd9,0xa3,0x18,0x22,0x42,0xbf, + 0x4f,0x75,0x9c,0x4b,0xf6,0x1c,0xeb,0xa9,0xe7,0xf4,0x5b,0x08,0x2c,0xfe,0xf9,0x53,0x23,0xfb,0xdb,0xda, + 0x6f,0xba,0x49,0x3c,0xf5,0xb2,0x5e,0xe3,0x85,0xfb,0x13,0x05,0x86,0xaf,0xf1,0x00,0x60,0xbd,0x35,0x68, + 0x37,0x66,0xe0,0x51,0x9d,0x66,0x1c,0xf2,0xc0,0x16,0xb8,0x64,0x20,0x6b,0x14,0xf3,0x31,0x22,0x27,0x52, + 0xa7,0x33,0xae,0xcb,0x46,0xea,0x37,0x19,0x5e,0x28,0xdb,0x1d,0xbb,0xa3,0xdb,0xdc,0x6f,0xbd,0x94,0xff, + 0xd2,0x76,0xfb,0xb8,0x3e,0xd7,0xcb,0x7a,0x22,0x77,0x2a,0x32,0x9a,0x9f,0xb1,0xca,0x23,0xdd,0x2c,0xd8, + 0x54,0x3a,0xdd,0xb6,0xdc,0xb7,0x20,0x6e,0xaf,0xcd,0x1c,0x40,0x5e,0xe4,0x4b,0x09,0x18,0x8e,0x18,0xa7, + 0x08,0x9d,0x17,0x2a,0xde,0xcd,0x9f,0x00,0x2d,0x1d,0xfb,0x36,0x7a,0xc7,0x8a,0x78,0x94,0xc0,0x57,0xab, + 0x5b,0xc1,0x8e,0xfa,0xd5,0x41,0x4f,0xad,0x00,0x0f,0x42,0xe5,0xbd,0x71,0xee,0x7a,0xd0,0x76,0x25,0x4b, + 0xc4,0xde,0xd4,0xa8,0x0b,0xa8,0xb8,0x3a,0x11,0x34,0x38,0x16,0x5c,0x2a,0x26,0x76,0x12,0xd2,0xa6,0xe6, + 0x91,0x2a,0x57,0xae,0x91,0x18,0x97,0x34,0xca,0x96,0x72,0xbf,0xb2,0x68,0x1d,0x11,0xa1,0xb5,0x91,0x53, + 0x67,0x14,0xe0,0x00,0xbe,0x84,0xec,0x53,0x89,0xae,0x12,0xe5,0x03,0xe8,0x6b,0x51,0x9e,0xfc,0x80,0x1c, + 0x18,0x05,0x71,0xed,0xee,0x71,0x47,0xaa,0xbb,0x31,0x1b,0xc3,0x03,0x23,0x22,0xfc,0xe0,0xc3,0x29,0x47, + 0xdb,0x22,0xd1,0xd5,0xe1,0x49,0x86,0x79,0x87,0x29,0x8e,0x44,0xb9,0xee,0xc8,0x31,0xaf,0xe6,0xa5,0x1f, + 0x53,0x36,0xa6,0xc9,0xa3,0x8c,0xa3,0x5a,0xc0,0x79,0xe9,0x42,0x62,0xb1,0x9c,0x0d,0x0c,0x09,0x60,0xd0, + 0x54,0xbf,0x1f,0x07,0x55,0x2a,0xa2,0xb0,0x10,0xd3,0x9a,0x23,0x2c,0x33,0xcb,0xf9,0x73,0xa3,0x21,0x34, + 0x86,0x86,0x0a,0x1e,0x8f,0x69,0xcc,0x6b,0xbb,0xc6,0x6a,0x4b,0x42,0x27,0xc8,0x2f,0xb3,0xb8,0xb2,0xe4, + 0x6a,0xea,0x78,0xd7,0x56,0xa7,0xe2,0x98,0x98,0xf6,0xfa,0x34,0x18,0xf9,0xdc,0x12,0xa4,0xef,0x8b,0xd1, + 0x9b,0x16,0xd9,0x8c,0x64,0x75,0x1a,0x84,0x8d,0x1c,0xff,0x14,0xd2,0xf1,0x39,0x64,0xb1,0x4b,0xea,0x72, + 0x8a,0x45,0x2d,0x79,0x51,0x27,0xb2,0xc2,0x63,0x78,0x7a,0xe1,0x21,0xd2,0x50,0xc2,0xcc,0x77,0x7c,0x42, + 0xdb,0x2e,0xdf,0x34,0x49,0x64,0xf1,0xe7,0xdc,0xa8,0xdb,0x28,0x5c,0x11,0xe3,0x5d,0xa5,0x1d,0x8f,0xc2, + 0x0b,0x51,0xdd,0x2b,0x8d,0xb1,0x94,0x0e,0x4d,0x2f,0x50,0x2a,0x42,0x5f,0xac,0xaa,0x79,0x52,0x51,0x9d, + 0xc5,0x3a,0x53,0x23,0x63,0x26,0x21,0xeb,0xd6,0x06,0x05,0x28,0x07,0x4d,0xd9,0x97,0xd4,0x44,0xb4,0xe4, + 0xe6,0xec,0xcc,0x89,0x89,0xc8,0x40,0x59,0x13,0x12,0x37,0x56,0x89,0xd6,0x7b,0xbd,0x32,0xca,0x7e,0x1c, + 0x56,0xde,0x39,0x9a,0x22,0x65,0x7e,0x53,0xe7,0x11,0xa4,0x0e,0xed,0x8d,0x4b,0xde,0x27,0x1c,0x90,0xd5, + 0xb6,0xbc,0x74,0xe8,0x92,0x56,0x8c,0xbd,0x66,0xec,0x0a,0x0b,0x87,0x69,0x90,0xfb,0xac,0x71,0x9c,0xe9, + 0xb5,0xe5,0x27,0x27,0xe8,0x1b,0x32,0x71,0x50,0x98,0xd5,0xc7,0x90,0x6a,0x9d,0x73,0xe1,0xd6,0x5e,0x69, + 0x37,0x36,0x89,0x71,0xd8,0xed,0xb8,0xc4,0x36,0x3e,0x32,0x86,0x5d,0x86,0x6f,0x41,0xa7,0x79,0xa0,0x3e, + 0x6a,0x95,0xc9,0xad,0xc4,0xbf,0x72,0x9c,0x5e,0xcb,0xd6,0xd7,0x2d,0xd8,0xce,0xf4,0xa0,0xaa,0x49,0x16, + 0x81,0x49,0x23,0x2a,0x07,0x47,0x8d,0xd1,0xdf,0xa5,0x31,0xf0,0xd5,0x98,0x86,0xf6,0xe2,0x52,0x17,0xa3, + 0x5f,0xe6,0x53,0x8a,0x2b,0xe4,0xa5,0x06,0xa2,0xba,0x36,0x76,0x6e,0x31,0xad,0xa0,0x30,0x68,0x83,0x5b, + 0x77,0x82,0x41,0xf0,0xa6,0xce,0xbc,0xe8,0xb5,0x06,0x99,0x27,0x0b,0x5d,0x4d,0x21,0x41,0x34,0x21,0xd4, + 0xaf,0x2c,0x2c,0x81,0x5f,0xd8,0x4a,0xc9,0x3e,0x53,0x2c,0x74,0xbb,0xd8,0x96,0x4d,0x0d,0xab,0x2a,0xf2, + 0x10,0x90,0x7d,0x74,0x89,0x00,0x9f,0x19,0x3b,0x34,0xd7,0x0d,0x9b,0x9f,0xd6,0x45,0xe2,0x9f,0xeb,0xc8, + 0x71,0xee,0xed,0xfa,0x77,0xd4,0xdb,0x5d,0x3c,0x8c,0x52,0xde,0x83,0xdc,0xe7,0x68,0x39,0xb1,0xaa,0x07, + 0x31,0xba,0xb0,0x0b,0x87,0x6a,0xb5,0x9b,0x23,0x15,0xc0,0xc5,0x98,0xd2,0xea,0x3e,0xc0,0x00,0x35,0x53, + 0x84,0x09,0x55,0x8e,0xcf,0xce,0x4c,0x72,0xb5,0xf3,0x59,0x60,0x13,0x39,0x52,0x70,0x50,0x6d,0x4e,0x15, + 0x20,0x5e,0x87,0xf8,0x61,0xff,0xff,0x4d,0xdb,0x47,0x0c,0x1c,0xef,0xd0,0xae,0xe9,0x63,0x35,0xf6,0xf3, + 0xfa,0x8d,0x52,0xcd,0xd5,0xda,0x1c,0x14,0x47,0xc3,0x52,0x3c,0x77,0xd1,0x1f,0x86,0xde,0x91,0x7f,0x82, + 0x27,0xba,0x0b,0xdc,0x8b,0x21,0xa2,0x1d,0x41,0x37,0xc8,0xc5,0x67,0x27,0x56,0x15,0x19,0x57,0xf4,0x6a, + 0x65,0x10,0x5b,0x60,0xc3,0x15,0x45,0x67,0xfa,0xd6,0xb6,0xa1,0x68,0x87,0x7a,0x9d,0x82,0x91,0x63,0x45, + 0xdb,0x8f,0xd2,0x30,0xbb,0x4e,0x31,0x98,0xc8,0xa6,0xed,0x6d,0xa7,0x02,0x9e,0xc9,0x12,0xeb,0x2c,0xc5, + 0xc9,0x88,0x68,0x53,0xd7,0xbe,0xb9,0x89,0xe8,0x30,0x14,0x5d,0xc7,0x95,0x77,0x07,0x40,0xa7,0x15,0x21, + 0xf8,0xa7,0xb9,0x21,0x4f,0x10,0x3b,0x23,0x50,0xe6,0x88,0xd6,0xc6,0xaf,0x8f,0xa8,0xa4,0xe1,0x88,0x72, + 0x4c,0x32,0xe9,0xc5,0x3d,0xa1,0xa5,0x0e,0xdb,0x8b,0x62,0x81,0x09,0x57,0x05,0xb5,0x6f,0x3e,0x42,0xb1, + 0x0c,0xd0,0xd9,0x1e,0xa8,0x39,0x83,0x7c,0x59,0x48,0x74,0x2e,0x82,0xf5,0xd4,0x44,0xe5,0x4c,0x19,0xa7, + 0x17,0xf8,0x97,0x75,0x5e,0x10,0xf7,0xb5,0xe5,0xfd,0x32,0xa0,0x73,0x98,0xd6,0xfc,0x67,0x1a,0x1f,0x57, + 0x93,0x60,0xf4,0xce,0x2f,0x64,0x3d,0x10,0x99,0x38,0xed,0xf4,0x9d,0xb9,0x6b,0x99,0x3f,0xa2,0xca,0xac, + 0x7f,0x4f,0x06,0xda,0xc2,0xfd,0x99,0xb2,0x8b,0xd1,0x48,0xc2,0x86,0xe1,0xc2,0xe2,0xd2,0xe2,0xd5,0x93, + 0x00,0x40,0x7e,0xbe,0x62,0xf2,0x26,0x48,0x3b,0x74,0x5d,0x8a,0x0e,0x8c,0x5a,0x05,0x3b,0x56,0x4b,0x9a, + 0x2d,0x1f,0xaa,0xd2,0x5f,0xf2,0x2a,0xce,0xa2,0x65,0xb5,0xa4,0xb3,0x68,0x66,0x9d,0x05,0x50,0xc2,0x0c, + 0x6b,0x26,0x04,0xee,0x24,0x2a,0x2a,0x52,0x62,0xee,0xd8,0x92,0xca,0x21,0x42,0x5b,0x53,0x9c,0x51,0x86, + 0xfd,0x19,0x6d,0xec,0x8c,0x36,0x56,0x38,0xa9,0x6a,0x63,0x67,0x81,0x49,0x3b,0x98,0x1d,0x49,0xdb,0x1d, + 0x03,0x90,0x12,0xb6,0xfb,0x75,0xe2,0xa7,0x72,0x85,0x8c,0x4a,0x7f,0xc2,0xa5,0xe6,0xc1,0x68,0x42,0x1b, + 0x38,0x77,0xa8,0x39,0xe3,0x47,0x76,0x51,0xdd,0x00,0x63,0x45,0xd3,0x25,0x1a,0x68,0x57,0x4d,0xe8,0xbf, + 0x79,0x54,0xb9,0x6a,0x51,0x17,0x11,0x24,0x00,0xea,0x84,0xfe,0xcc,0x8f,0xd4,0xb1,0x55,0xdd,0xa6,0xac, + 0x77,0x51,0x8a,0xac,0x4b,0xfa,0x73,0x7c,0xa4,0xf6,0xa3,0xad,0xc5,0x70,0xfa,0x10,0x5d,0x4d,0x1e,0x46, + 0xc7,0x74,0x37,0xf9,0x17,0xc1,0x08,0xd5,0xfb,0xfd,0xe9,0x51,0x98,0xf8,0x74,0x86,0xd1,0xca,0xf6,0xf6, + 0xfc,0x28,0x7c,0x4b,0x99,0xea,0x1d,0x1d,0xea,0x8f,0xf8,0x0b,0xe2,0xcc,0x14,0xe4,0x56,0xfb,0xfd,0xc9, + 0x51,0x80,0x42,0x27,0xea,0x92,0x0b,0xd1,0x5f,0x14,0x32,0xf5,0xb9,0xcf,0xed,0xed,0x63,0x29,0x74,0xa1, + 0x0b,0x5d,0x48,0xa1,0xfd,0x16,0x1d,0x90,0xa9,0x0b,0x7d,0xef,0x3a,0xa2,0x38,0xff,0x44,0x50,0x48,0xd5, + 0x73,0xad,0xd1,0x13,0x3d,0xbc,0x13,0x19,0x5e,0x57,0xa3,0xdc,0x80,0x34,0xed,0x0c,0xad,0x1a,0xbf,0x9f, + 0x88,0xb3,0x8b,0x71,0xf4,0x4b,0x42,0xfb,0x33,0x55,0x73,0x98,0xca,0xfb,0x20,0xe8,0xdf,0x71,0x0c,0xd3, + 0xd1,0xf8,0x80,0x3f,0x8e,0x3a,0x9c,0x7f,0x54,0x71,0x09,0xa7,0x44,0x0b,0xa7,0x1c,0x85,0xd0,0xa2,0xc7, + 0xf8,0xc8,0xf0,0x08,0xb7,0x6f,0xbf,0x05,0x9d,0x93,0x5b,0x0a,0x3e,0x26,0x1a,0xf7,0x1d,0x35,0xb1,0x8b, + 0xde,0x46,0x39,0x7d,0xc7,0x4a,0xcf,0x9f,0xe7,0xb5,0xa4,0x71,0xce,0x8e,0xf4,0xe4,0x96,0x32,0x39,0xa4, + 0x18,0x8f,0xb6,0x5d,0x13,0x5d,0x3a,0x13,0x0d,0xc2,0x7a,0x9b,0xd5,0x7c,0x87,0xd3,0x47,0x73,0x28,0xd1, + 0xd3,0x14,0x09,0x20,0xfa,0x7b,0x47,0x81,0x44,0x67,0x94,0x1f,0xfa,0xd0,0x4f,0xf0,0xde,0x14,0x84,0x93, + 0x47,0xc7,0xb7,0x6f,0x9f,0xfb,0xbb,0x4a,0x96,0x65,0xed,0x8f,0x39,0x5c,0x36,0x80,0x32,0x64,0xa0,0x05, + 0x85,0x57,0x91,0x50,0x75,0x71,0x28,0x15,0xc6,0x3d,0x7d,0x4a,0x7f,0x99,0xec,0x9a,0x63,0xb2,0x15,0x58, + 0x82,0x28,0x06,0xf8,0x8f,0xd0,0xfe,0x84,0xf2,0x26,0x55,0x18,0xc4,0xf0,0xc6,0x66,0x43,0xc9,0xdf,0xe2, + 0xa8,0x35,0x7c,0xb7,0x77,0x94,0xd3,0xa7,0x4c,0x6d,0xc6,0x0c,0xf9,0xa2,0xac,0xa3,0x86,0xb5,0x73,0x55, + 0x1d,0x0b,0x17,0xc2,0xe8,0x15,0x8c,0x27,0x6a,0xd9,0x60,0xd4,0x81,0xf9,0xea,0xa2,0xac,0x8b,0x3a,0xd9, + 0x23,0x8c,0x52,0xe1,0xf2,0x47,0x05,0x01,0x47,0x85,0xfd,0xf5,0x4e,0xfa,0x05,0xfb,0x53,0xb5,0x03,0x78, + 0xd7,0x60,0x3c,0xd5,0x18,0x31,0x9b,0xe2,0x13,0x35,0xd3,0xee,0x3e,0x08,0x17,0x14,0xf5,0x68,0x43,0x51, + 0xbc,0x5a,0x21,0xba,0x3b,0x90,0x9e,0x2a,0x84,0xb4,0x57,0x82,0x90,0x0d,0xdf,0x22,0x17,0x97,0x8b,0xf7, + 0x2d,0x54,0x76,0x5d,0x13,0x50,0xaf,0x26,0x5c,0xcf,0x80,0x3c,0xd3,0x57,0x3d,0x2d,0x5d,0x37,0x03,0x5b, + 0x88,0x25,0x21,0x25,0x76,0x60,0xed,0xc0,0xe1,0x5f,0xb1,0xae,0xb6,0xd9,0x71,0xa0,0x09,0x82,0x69,0x10, + 0x30,0x27,0x7e,0x1a,0x2f,0x98,0x10,0x07,0xd5,0xbd,0xf0,0x39,0x91,0x7b,0xb5,0x1d,0x9a,0xb8,0x71,0xce, + 0x08,0x74,0x54,0x14,0x69,0x2a,0x67,0xca,0xaf,0x4a,0xb4,0x41,0x38,0xf8,0xe2,0x30,0xfb,0x32,0xc7,0xdc, + 0xc0,0x45,0x4e,0xd3,0x62,0x51,0x72,0x8f,0x84,0x66,0x76,0x87,0x17,0x0f,0xa7,0x66,0xaf,0x2e,0x8c,0x83, + 0xbb,0xd3,0xd5,0x6a,0xeb,0x1d,0xf1,0x8b,0xd3,0x83,0x8b,0x23,0xcd,0x99,0xce,0x61,0x52,0x2e,0xac,0xec, + 0x69,0x74,0x5a,0x7b,0x3f,0x40,0x8d,0xf9,0x6a,0x75,0x5a,0xef,0x98,0xb8,0x18,0x1c,0xa4,0x34,0x30,0xab, + 0x29,0xfb,0x7a,0xee,0xba,0x5a,0x39,0x81,0x34,0x6f,0x86,0x19,0x6f,0x7d,0x20,0x5c,0x1c,0x5c,0x9d,0x63, + 0x90,0x13,0xb9,0x5b,0xa4,0xb3,0xad,0x73,0x6c,0x30,0x6b,0x96,0xc0,0x4d,0x9c,0xfe,0x34,0xce,0x26,0x85, + 0xa8,0xd8,0xe2,0xf0,0x5e,0x7c,0x30,0x34,0x81,0xa5,0x7f,0x9b,0x67,0xaf,0x2d,0x09,0x16,0x73,0xa9,0xf6, + 0xd5,0x19,0x84,0xd4,0x4f,0x11,0x69,0x3e,0x9f,0x2c,0x67,0xc9,0x42,0xbd,0xa1,0x6f,0xd0,0x38,0xaf,0xb4, + 0xf6,0xd7,0x25,0xad,0xc9,0xe5,0xc3,0x79,0x5a,0x01,0xf0,0x25,0x93,0x95,0x67,0x07,0xf3,0xf4,0xe0,0xf2, + 0x08,0xd6,0x5e,0x74,0xaf,0xec,0x0e,0xf7,0x1f,0x3e,0xad,0x8a,0xec,0x13,0x79,0xf1,0xf4,0x60,0xff,0x48, + 0x97,0xa1,0x9d,0x32,0xc5,0x85,0xbf,0x70,0xf3,0xf8,0x42,0xfe,0xc0,0x7a,0x23,0x78,0x57,0x13,0xad,0x19, + 0x1d,0x4a,0xec,0xa9,0xf3,0xfd,0x86,0x85,0xad,0x84,0x8a,0x3b,0x9c,0x14,0xea,0xdb,0x52,0xd1,0x25,0xa9, + 0x7d,0x32,0xf1,0xed,0x2d,0x5e,0x62,0x10,0x46,0x04,0xc6,0xd9,0x80,0x2e,0x98,0x73,0x2e,0xd9,0x7f,0x88, + 0x0f,0x44,0x87,0xf2,0x15,0x3d,0x31,0x8f,0x70,0x38,0x30,0xf9,0x7d,0xf6,0xfd,0xc4,0x1b,0xc9,0xd8,0x1b, + 0x1b,0x10,0x08,0xcd,0x35,0x51,0x3a,0x28,0x3a,0xfa,0x99,0x73,0x6f,0x12,0x4f,0xcd,0xd4,0x83,0x92,0x3b, + 0xc1,0x70,0xc5,0x4f,0x3c,0x66,0xfd,0x2c,0x43,0xdd,0xd5,0xd2,0x61,0xc1,0x0d,0x1f,0x9f,0x3e,0xe8,0xc8, + 0x77,0xd2,0xbe,0x3d,0x28,0xc7,0x3c,0x44,0xe4,0x17,0xc3,0x57,0x11,0x94,0xf9,0xf5,0x73,0xcc,0x1b,0xf3, + 0x08,0xe5,0xbf,0x6a,0x44,0xa1,0x91,0x67,0x1a,0x2d,0x39,0x54,0xaf,0xc4,0xfe,0xed,0x54,0x88,0x41,0xba, + 0xfe,0x6a,0x82,0xb2,0x53,0x9e,0xa0,0xac,0xc3,0xe9,0xe0,0x9d,0x08,0x6c,0x8f,0xe5,0x3e,0x38,0x69,0xdc, + 0xc3,0xa7,0x50,0xfd,0x25,0xc2,0xc5,0xe0,0x3f,0x03,0xb0,0x97,0x91,0x49,0x23,0x18,0x00,0xc5,0x34,0xbc, + 0x1c,0x56,0xf7,0xe2,0x53,0x02,0x8b,0xa7,0x5d,0xbc,0xcb,0x53,0x87,0x77,0x79,0x7a,0xe4,0x5f,0xf2,0x48, + 0x2e,0xc5,0xf1,0x3d,0x0f,0x75,0xbf,0x6a,0xe4,0x03,0x35,0xf2,0xa1,0x83,0xf3,0xfd,0x50,0x71,0xbe,0x1f, + 0x98,0xf3,0xbd,0x14,0x48,0x7a,0x1c,0x5d,0xb6,0x70,0x2b,0xbf,0x28,0x0c,0x58,0x47,0xb8,0x32,0x79,0xb8, + 0x15,0xed,0x0d,0x6f,0x3d,0x7c,0x4c,0x2c,0xa2,0xb5,0x57,0xb9,0x05,0xf7,0xcf,0x48,0x38,0xb8,0x75,0x64, + 0x68,0xef,0x5f,0x13,0x8c,0xef,0x92,0x5a,0xd5,0xa1,0x6e,0xe1,0xdb,0x95,0xef,0x2d,0xb0,0x7c,0xbb,0x6a, + 0x57,0x5f,0x58,0xc4,0xff,0xc0,0x25,0x70,0x51,0x59,0x8b,0xc9,0xfe,0x2d,0x03,0xc5,0x73,0xe2,0xad,0x78, + 0x05,0xd2,0xdf,0x96,0xf3,0xaf,0xf4,0x41,0x0b,0x97,0xa9,0xd2,0xe7,0x2f,0x3c,0x38,0x49,0xd5,0xc7,0x54, + 0xed,0xa7,0xea,0x2c,0x55,0xdf,0xa4,0xea,0x7d,0x36,0x32,0xd2,0xfc,0xd7,0xa5,0x32,0x82,0x35,0x7c,0x0b, + 0x3c,0x35,0x9e,0xff,0xb6,0x24,0xae,0x97,0x58,0x59,0x9c,0xe6,0x97,0xa3,0x57,0xa5,0x44,0x37,0x83,0xdb, + 0xcc,0x75,0x78,0xb5,0x3e,0x32,0x8e,0x95,0xcf,0x53,0x78,0x31,0x7f,0x91,0x11,0x2d,0x68,0x1e,0x39,0xda, + 0xe1,0x45,0xe4,0x7d,0x9c,0x5a,0x1f,0x9f,0xc6,0xd9,0x49,0xe2,0xb9,0xe6,0xa9,0xa2,0x89,0x5f,0x55,0x66, + 0x29,0xbd,0x16,0xae,0x0d,0x59,0xd5,0xf7,0x42,0x47,0x45,0xfc,0x19,0x63,0xd0,0xfa,0x66,0xc6,0x75,0xfa, + 0xdb,0x14,0x4e,0xd5,0xb0,0x3b,0xc9,0xa4,0xf1,0x20,0x0a,0x21,0x92,0x79,0x99,0xb7,0x61,0x1d,0x85,0x27, + 0xb9,0x7d,0x7b,0x8b,0xff,0x12,0x23,0xa6,0xd5,0x2c,0x47,0x3f,0xc0,0xd1,0x91,0xbd,0xcc,0x6b,0x23,0x7c, + 0xeb,0xb0,0x14,0x62,0xd4,0x35,0xd1,0xa2,0xa4,0x75,0x10,0xbe,0x2f,0xe5,0xdb,0xf5,0xf6,0x64,0x5b,0x25, + 0x7c,0x81,0xc0,0x6b,0xc6,0xfe,0xc4,0x28,0x7d,0x7e,0x5b,0x42,0x06,0xe6,0x19,0xcd,0x11,0x3b,0x3a,0xba, + 0x77,0x53,0x5f,0x62,0xc7,0x05,0x81,0xf6,0xe4,0xf5,0xc2,0x44,0x8e,0x8d,0xca,0x2a,0x8a,0xac,0x72,0xbe, + 0xd9,0xaf,0x23,0xab,0x16,0xb7,0xd7,0xdd,0x2c,0xf7,0x0b,0x1a,0xd6,0x93,0x6c,0x53,0x21,0xcc,0x4d,0xa4, + 0xb2,0x84,0x22,0xe1,0xa5,0xff,0x25,0xcf,0xe2,0xda,0x92,0xfc,0xf2,0x41,0xcd,0x22,0xe2,0x0e,0x8f,0x54, + 0x36,0x09,0x78,0x08,0x6f,0xc2,0xcd,0xf5,0x6a,0xbd,0x55,0x73,0xd0,0xf6,0xfa,0xde,0x04,0x57,0xad,0xb5, + 0x1c,0x9a,0x37,0x4b,0xbb,0xa2,0xa2,0x4d,0x7d,0xf3,0xfa,0x0e,0xd3,0x66,0x0c,0xc0,0x4a,0x35,0x62,0x0b, + 0xaa,0xe5,0xec,0xc4,0x72,0x2d,0xab,0x6c,0xd4,0x2b,0x46,0xa5,0x98,0x4f,0x6f,0x0c,0x1f,0xf8,0x13,0x06, + 0x08,0x80,0x0f,0x75,0x49,0x7e,0x1c,0x27,0x1a,0xe7,0x2d,0x7e,0xdc,0xbe,0x4d,0xf9,0x3a,0x03,0x98,0xde, + 0x40,0xac,0xde,0x05,0xf6,0xd4,0xf8,0x0b,0xc1,0xab,0x04,0xf6,0x7c,0x9b,0x2a,0x9c,0xac,0x50,0xd4,0x62, + 0x9b,0xeb,0xa3,0x2d,0x8e,0x4d,0x63,0x88,0x05,0xf8,0x84,0x9f,0x46,0xb5,0x6a,0x89,0xb8,0x50,0x71,0x04, + 0xea,0x1c,0xa0,0xfe,0x1d,0xad,0x4c,0x91,0x9e,0xc0,0x13,0xec,0xb3,0x74,0x01,0xe5,0xc8,0xc8,0xcb,0x68, + 0x1f,0xb4,0xce,0x1d,0xbf,0xa9,0x4e,0x24,0x03,0xe1,0xe2,0x1b,0x49,0x70,0xfe,0x90,0x8e,0xfc,0xac,0x3a, + 0xf6,0xb8,0xe2,0x6e,0x51,0xb7,0xee,0x69,0x68,0x54,0x8a,0xe2,0x75,0x10,0x34,0x5b,0x8a,0x8a,0x51,0x1c, + 0x4a,0xcf,0x9d,0xfa,0x05,0xad,0x19,0x0e,0x8b,0xc6,0x4a,0xfa,0x37,0x4e,0xb8,0x35,0xd0,0x62,0x74,0xd3, + 0x50,0xbb,0x16,0x88,0xf6,0xf2,0xd5,0x0d,0xd5,0xf4,0x44,0x3a,0xa7,0xd9,0xd5,0xa4,0x9e,0x39,0x54,0x2b, + 0xb2,0x8e,0xcd,0xd5,0x0c,0x01,0x9f,0xc6,0x9b,0xc7,0xc7,0x50,0xf3,0x3d,0x41,0x0d,0x1b,0x86,0x69,0xeb, + 0x2e,0x08,0x9a,0xe3,0x22,0x7c,0x92,0xe7,0x70,0x86,0xab,0xc6,0x8b,0x85,0xfd,0x06,0x70,0x99,0x62,0x40, + 0x24,0xe6,0xdb,0x79,0x9d,0xd5,0x29,0xce,0xdb,0xaa,0x5b,0xc6,0xbc,0xab,0xba,0xa5,0x1a,0x69,0xad,0x87, + 0x5b,0xb7,0x6c,0x47,0xba,0x0c,0xb7,0x23,0x69,0x63,0xd9,0x46,0x87,0x93,0x65,0xc1,0xef,0x82,0xe1,0x81, + 0xd8,0xb5,0x29,0x9d,0x2e,0x8a,0x1d,0x47,0x6b,0xf5,0x87,0x59,0xa0,0xda,0x63,0xad,0x58,0xcb,0x7d,0x9f, + 0xd6,0x4c,0xe8,0x9a,0xb6,0x60,0x2d,0xe3,0xf1,0xb6,0x4d,0x98,0xf6,0x9c,0xc5,0x82,0x55,0x79,0xa5,0xef, + 0x0e,0xee,0xc7,0x28,0xfc,0x37,0x48,0x08,0x09,0x6c,0xdd,0x98,0xad,0xda,0x44,0x0c,0x7b,0x03,0xb5,0x03, + 0x1d,0xbf,0xd5,0x6d,0x43,0x04,0xff,0x91,0xe1,0x08,0x87,0x41,0xe5,0xbe,0xd2,0x79,0x34,0xb3,0x74,0xb7, + 0x6b,0x3b,0x5a,0x09,0x04,0xb4,0xfd,0xd8,0xaf,0x25,0x3c,0xf3,0x80,0xec,0xcc,0xab,0x2c,0xe3,0x65,0x95, + 0x29,0x34,0x5a,0x3b,0x93,0xf3,0x0b,0x50,0x54,0x6c,0x22,0xc0,0x7a,0xef,0xde,0x55,0xdd,0x6d,0x7b,0x7d, + 0xeb,0x56,0xae,0xef,0x6d,0x7b,0xc3,0x9c,0xc5,0x70,0xa2,0x64,0xcb,0xdf,0xa3,0xdc,0x09,0x70,0xba,0xe8, + 0xe3,0x82,0xc0,0xa7,0x17,0x2e,0xfa,0x2c,0xcb,0x0d,0x0b,0x3f,0x17,0xf9,0x07,0x1e,0xa0,0xf5,0xdb,0x87, + 0xa4,0x58,0x83,0xa2,0x45,0x30,0xe2,0x14,0xae,0x83,0xbf,0xfc,0xaf,0x84,0xcd,0x88,0x7c,0x79,0x40,0x84, + 0x7d,0xe5,0x40,0x3b,0x9a,0xa1,0xa5,0xad,0x86,0x18,0xbd,0x35,0x96,0x45,0xb3,0x9a,0xb1,0xfb,0x12,0x8b, + 0x20,0x51,0x26,0xa4,0xa2,0x13,0x76,0x1e,0xcf,0xa9,0x8d,0xa4,0x4d,0x08,0xdf,0x03,0x6e,0x11,0xe4,0x09, + 0xe8,0xe2,0xeb,0x22,0xaf,0x61,0x9d,0x40,0x2d,0x6f,0xdf,0x5e,0x6a,0x1c,0xe5,0x9f,0x46,0xb9,0x3a,0x8f, + 0x96,0xea,0x1c,0x53,0x20,0x8c,0x76,0x8a,0xbf,0xab,0xd5,0x39,0xd6,0x82,0x7f,0x0a,0x7d,0xb7,0xf5,0x1b, + 0x4b,0x13,0xfc,0xad,0x65,0x97,0xcf,0xd7,0xae,0x54,0xe3,0xd2,0xb3,0x62,0xc1,0x05,0xb0,0xa6,0xd1,0xb2, + 0x09,0x24,0x62,0x30,0x32,0xe6,0xb9,0x7b,0xf9,0xb2,0xdc,0x4e,0x59,0x73,0x3f,0xad,0x3b,0x6f,0xd0,0x50, + 0x00,0xbc,0xf9,0x83,0x3f,0x55,0x5e,0x3c,0x25,0xa8,0xfe,0x49,0xd4,0x2b,0x5c,0x53,0x51,0xa7,0x24,0xe2, + 0xa5,0xd7,0xfd,0x58,0xae,0x03,0x65,0xc0,0x07,0x9d,0xa5,0xd9,0x76,0x2e,0xa6,0x00,0x22,0xf0,0xf8,0xcd, + 0xaf,0x84,0x55,0xe2,0xd6,0x6c,0xa2,0xe6,0xae,0xd9,0x1e,0xfc,0x03,0x0f,0x7f,0x80,0x34,0x86,0xbb,0xff, + 0x46,0x34,0x46,0xe6,0x81,0xe2,0x34,0xc1,0x58,0x98,0x3d,0x0c,0xd2,0x74,0xfa,0x14,0x1a,0x61,0x84,0x16, + 0x9b,0x43,0xa5,0x2d,0x9b,0x44,0xc9,0xba,0x22,0x9b,0x63,0x61,0x5a,0xd4,0x39,0xa1,0xcf,0x1f,0x53,0x2c, + 0x0a,0xe0,0x51,0xe3,0x0d,0x7e,0xd0,0x77,0x10,0x0c,0x30,0x6c,0x30,0x14,0x93,0xbe,0xde,0x8f,0xcc,0xc5, + 0x8a,0x3f,0xf7,0x7f,0x13,0x5e,0xa9,0x14,0x2a,0xc2,0x3f,0x88,0xa2,0xb6,0xbf,0xbe,0x83,0x72,0x70,0x78, + 0x25,0x48,0xe6,0xc7,0xb4,0x0b,0xb1,0x34,0x2c,0xdb,0x19,0x3f,0xb8,0x46,0x22,0xb2,0x75,0x12,0x28,0x77, + 0x1e,0x67,0x08,0x82,0xdb,0xed,0x0e,0x89,0x2b,0xcd,0x8b,0xe4,0xc2,0x3a,0x2e,0x14,0x23,0x51,0x23,0x7c, + 0x4e,0xbb,0xd0,0x16,0x7b,0x54,0x8d,0xeb,0x25,0xc1,0x67,0xe7,0xd5,0xa9,0x59,0x10,0x5b,0xb4,0x78,0x68, + 0xb9,0xf2,0x85,0x11,0x3d,0x8e,0xa3,0xf4,0x60,0x71,0x34,0x1c,0x4b,0xfc,0x68,0x8c,0x62,0x2b,0x1a,0x8b, + 0xf0,0x1d,0x9c,0x81,0x3e,0xc9,0xe3,0xfa,0x49,0x26,0xe4,0x71,0x81,0x17,0x11,0x0f,0xb0,0x1d,0x5b,0x6b, + 0xd1,0xec,0x80,0xcb,0x1d,0x45,0x63,0x45,0x35,0xf4,0x71,0x1e,0x77,0x1f,0xe7,0x3c,0x80,0xdc,0xc3,0xf1, + 0x26,0x3e,0xc3,0x80,0x97,0xf8,0x67,0x4a,0x43,0x9d,0x56,0x12,0xb0,0xa9,0x19,0xea,0x24,0x2a,0x0e,0xa6, + 0x47,0xc3,0x49,0xeb,0x1c,0xe4,0x4a,0xa7,0x11,0xcd,0x1a,0x4d,0x98,0xdc,0x3f,0x49,0xca,0x27,0xf9,0x92, + 0xc5,0x6c,0x4f,0x67,0x29,0x01,0xd8,0xcf,0xb4,0xd6,0xf0,0xc3,0x7e,0x30,0xe1,0x21,0x8e,0x66,0x32,0xea, + 0x49,0x10,0x2e,0xcd,0xd7,0x5a,0x5b,0xe0,0xce,0xcb,0x88,0x75,0x2a,0x21,0x87,0x34,0x56,0xd2,0xc2,0x3b, + 0x4d,0xa2,0xa5,0x8d,0x54,0x60,0x4a,0xc4,0x74,0xfb,0xbb,0xde,0x39,0x5a,0xf6,0xd7,0xdd,0x9e,0x06,0x6c, + 0x5f,0xd0,0xe2,0x60,0x39,0x98,0xe3,0xa8,0xc3,0x66,0x1a,0x9a,0x6a,0xb2,0xc1,0xa2,0xd9,0x05,0x14,0x55, + 0x9a,0xbb,0x47,0x83,0xbc,0xf5,0xcf,0xcf,0x06,0x5e,0xde,0x05,0x22,0x3e,0x6f,0xb3,0xb2,0xe5,0xd0,0xf0, + 0xc5,0xda,0x92,0xe9,0x34,0x5e,0xbc,0xa0,0x74,0x3f,0xd1,0x06,0xfa,0xaa,0x14,0x72,0xd9,0xa8,0x18,0x7e, + 0xcf,0x6c,0x82,0xf9,0xf5,0x47,0xed,0xd7,0x8f,0xc6,0xe1,0x3f,0x9c,0x77,0xcc,0x08,0x55,0x5a,0x06,0x0f, + 0xba,0xf9,0x83,0x7c,0x3a,0x5d,0x24,0xe5,0xf7,0x49,0x7a,0x72,0x5a,0x3a,0xb5,0x9a,0x4a,0x8b,0xb2,0x7f, + 0xbc,0xc6,0x95,0x0b,0x31,0x8c,0x04,0xb6,0x95,0x4c,0x3b,0x0d,0xf7,0x41,0xbc,0xc1,0xf9,0xd9,0xc0,0xea, + 0xfd,0x44,0xc5,0xc0,0x51,0x90,0xd2,0x29,0x15,0x60,0x3c,0xd3,0xc4,0x04,0x07,0x9d,0x6e,0x73,0x39,0xdf, + 0xa6,0xf0,0x04,0xca,0xcb,0x55,0x45,0x1c,0xec,0x41,0xe4,0x73,0x45,0xf4,0xf1,0xd6,0x8e,0xed,0xe6,0x96, + 0x0e,0xdc,0x29,0x51,0x83,0x4c,0xbc,0xae,0x80,0xbd,0xe8,0x0a,0x60,0xb4,0x1a,0x66,0x9d,0x07,0xd3,0x36, + 0xc3,0xc9,0x99,0x0c,0x9f,0xcd,0xd4,0xc1,0x38,0x69,0x17,0x6d,0xe1,0x95,0x5e,0xfc,0x06,0x5f,0x8e,0x4b, + 0xfd,0x75,0x6a,0x45,0x82,0xd5,0xad,0xae,0x8b,0xd7,0x91,0xbc,0x4e,0x1c,0x9a,0x95,0x1b,0xe3,0xc1,0x8c, + 0xa5,0x36,0x01,0xed,0xb5,0x73,0xd3,0x33,0x60,0xe0,0x66,0xec,0x4a,0xed,0xdc,0x9d,0xe3,0x52,0x74,0xa1, + 0x02,0xf5,0x51,0x6f,0x40,0xd6,0x49,0x35,0x5b,0xa7,0x18,0x35,0xe5,0x88,0xcc,0x70,0x76,0x6f,0x44,0x11, + 0xd5,0xb5,0xa5,0xa3,0xa2,0x35,0x8d,0x2b,0x03,0x47,0x7a,0x32,0x11,0x8b,0xc5,0xec,0xce,0xae,0x61,0x25, + 0xfe,0x8c,0x1f,0xec,0xa7,0xe9,0xc9,0xc0,0x89,0x8c,0x1b,0xfd,0x5e,0xa8,0x2a,0xa3,0x16,0x93,0x37,0x5a, + 0xa4,0x9d,0x59,0x10,0xaa,0x45,0xdf,0xb9,0xd5,0x1a,0x31,0x79,0xa3,0x9f,0x93,0x5a,0xc5,0x7a,0x10,0xdf, + 0x56,0x8c,0x94,0xf7,0x15,0xc5,0x86,0x9d,0x5a,0xc0,0x94,0xa1,0xb6,0x77,0x20,0xf8,0xea,0x92,0x37,0x8d, + 0x6a,0xa1,0xa2,0x6f,0xf6,0x92,0x7f,0x68,0xeb,0xe3,0x9b,0x2c,0x11,0xd8,0x9a,0x5a,0x63,0xe3,0x6d,0x0f, + 0xa6,0xda,0x23,0xae,0xce,0x0e,0xcc,0x2b,0x8b,0x5f,0xab,0xec,0x07,0xc9,0x76,0x7d,0x12,0xf0,0x85,0xbc, + 0xb1,0xa8,0x31,0x92,0x90,0x36,0x77,0xda,0xb5,0xf5,0x91,0x28,0xdd,0x80,0x4d,0x6b,0x75,0x01,0xc3,0x4a, + 0xeb,0x42,0xd1,0x52,0x5d,0xc4,0x0c,0x07,0xf5,0x3c,0xc7,0x88,0xfd,0xdf,0x29,0x5b,0x4d,0x3a,0xae,0x4b, + 0x0c,0xc2,0x84,0x52,0xe1,0xaf,0x69,0x78,0x52,0xcf,0x16,0x57,0x74,0xdd,0x91,0xb2,0xda,0x8a,0xf2,0xec, + 0xbd,0xc7,0xf5,0x0d,0x2e,0x97,0x37,0xf3,0x64,0x8d,0xb4,0x28,0x2b,0xd8,0xf7,0x4b,0x52,0x0f,0x83,0x5d, + 0x99,0xb8,0x1b,0x0f,0x83,0x35,0x0e,0x52,0x7b,0x72,0xaa,0x9c,0x8e,0xf8,0x62,0xba,0x71,0x62,0xf5,0x87, + 0x14,0x22,0xfc,0x2a,0x6d,0xb1,0x56,0x39,0x85,0x49,0xda,0x1e,0xb8,0x93,0xba,0x07,0x6e,0xe3,0x50,0x18, + 0x6a,0x50,0xb4,0x14,0x4f,0xa0,0x4a,0x65,0x9c,0xdf,0x43,0x9f,0xff,0x59,0xe5,0x91,0xc0,0x77,0xc6,0xf4, + 0x0d,0x94,0x42,0x24,0x0c,0xf6,0xed,0xdb,0x3f,0x64,0xf8,0x6f,0x00,0x37,0x5a,0xa0,0xdb,0xa0,0xca,0xfc, + 0x0c,0x76,0x19,0xbb,0x72,0x30,0x7f,0x48,0xd5,0x77,0x50,0xa6,0xbc,0x3a,0xbc,0xf2,0xfd,0x51,0x38,0x58, + 0x1d,0x66,0x41,0x7f,0x14,0x1c,0xae,0x0f,0xd7,0x3b,0x27,0xea,0x9f,0xd0,0x7e,0xdf,0x1e,0x7c,0xd1,0x1f, + 0xfd,0xeb,0xd6,0xd5,0xda,0x0f,0x56,0x07,0x87,0x47,0x87,0x3b,0x87,0x87,0x47,0x94,0xf7,0x7b,0xb7,0x0a, + 0x3b,0x5f,0x21,0x46,0x7b,0xfb,0x9f,0xa9,0xf2,0x0e,0x0f,0x6f,0xdd,0xf6,0xd8,0x7c,0x19,0x8a,0xe6,0xed, + 0x1c,0x77,0x75,0xc5,0x5f,0x8a,0x5f,0xf6,0x3d,0x3d,0x18,0x19,0x8d,0xd7,0xcf,0x94,0x77,0x02,0x49,0xa0, + 0xfa,0x0d,0x66,0x7e,0x2c,0xde,0x87,0x4f,0xd3,0xf0,0xc0,0x73,0xe4,0xfe,0xde,0x91,0xb2,0x28,0xbb,0x61, + 0xe6,0xc1,0xce,0xb5,0x06,0xf0,0x02,0xa1,0x51,0x64,0x2a,0xf2,0x1a,0x31,0xb8,0x1d,0x8a,0x60,0xcb,0x69, + 0x2a,0xfa,0xe1,0xcd,0xab,0x97,0x94,0x00,0xc0,0x46,0x0c,0xc7,0xcc,0xb8,0x31,0x8f,0x0a,0xa7,0x22,0x1c, + 0xe5,0x42,0x94,0x02,0xa5,0x18,0x24,0x3c,0x49,0x99,0xe0,0x88,0x0a,0x6c,0x7f,0x92,0xc1,0x3d,0x6b,0x07, + 0xf7,0xe9,0x79,0x8e,0x6a,0x7f,0xd5,0x25,0x1e,0xcb,0xfa,0x91,0x3b,0x9f,0xd0,0xeb,0xd7,0x4a,0xf4,0x3d, + 0x05,0x2b,0xcd,0x5a,0x5f,0xba,0xd6,0xd8,0x96,0x77,0x33,0xa5,0x42,0x49,0x74,0xf1,0x7f,0x74,0x2f,0x1b, + 0x3f,0x91,0x7c,0xfe,0xb2,0x31,0xfa,0x6f,0x2c,0x1b,0x37,0xd5,0x5c,0xb6,0xa7,0x29,0x56,0xae,0xbe,0x74, + 0x52,0xd9,0x59,0x3a,0x4e,0xf8,0xb3,0x4b,0xc7,0xdd,0xd6,0x96,0x8e,0x53,0x9c,0xa5,0xe3,0xdf,0x66,0xe9, + 0xdc,0xbe,0x6c,0x2d,0x94,0xf7,0xa5,0x42,0x95,0xdb,0x87,0xd5,0x81,0x2c,0x5e,0x12,0xf3,0x63,0x13,0x2c, + 0xff,0xd8,0x0a,0x14,0xe6,0x94,0xf9,0x4c,0x5b,0x35,0x8a,0xe9,0x9e,0xb6,0xc6,0x14,0x0b,0xc3,0x74,0xc1, + 0x98,0x19,0x4f,0x4f,0x34,0x15,0xc7,0x5e,0xb4,0x66,0xfa,0x28,0x06,0x92,0x97,0xc7,0x70,0x3b,0x54,0xc6, + 0x62,0x33,0xad,0x2d,0x1c,0x61,0xfe,0x59,0xc2,0xb4,0xd3,0x88,0x39,0xe7,0x6c,0xe2,0x08,0xf3,0x40,0x36, + 0x74,0x14,0xd3,0xc7,0x42,0xb7,0x84,0xc3,0x25,0x23,0xec,0x34,0x41,0x95,0x21,0x57,0xc6,0x86,0x6c,0x31, + 0xd9,0x69,0x58,0x89,0x6e,0xeb,0x96,0x8d,0x6c,0x8b,0xaa,0x0d,0x51,0x8d,0x25,0x65,0xcb,0x22,0x55,0xdb, + 0xb8,0xb2,0x89,0x65,0x87,0x85,0x2b,0xc6,0x6a,0xec,0x5f,0xa5,0x1f,0x5a,0x2c,0xb6,0xab,0xd5,0x36,0x98, + 0x30,0x61,0x35,0xc6,0x93,0xbc,0x4c,0x4d,0x73,0x4c,0x59,0x36,0x31,0x4f,0xd5,0x8b,0x27,0x86,0x14,0xc6, + 0xd4,0xb2,0xb2,0x02,0x6d,0x2c,0x11,0x5b,0xe6,0xd2,0x42,0xf1,0x5a,0x43,0x0d,0x30,0x8e,0x76,0xfe,0x75, + 0xb8,0xf8,0xc2,0x3f,0xa0,0x7f,0xbd,0x3b,0x0f,0x1f,0x1d,0xee,0x44,0x47,0xfd,0x80,0x70,0x0d,0x12,0xa3, + 0x00,0xff,0x8e,0x42,0x8f,0xb2,0xbd,0xa3,0x2f,0x08,0xed,0xac,0xee,0xd0,0xe7,0x1d,0xfa,0xbc,0xd3,0x5f, + 0xe9,0x3a,0xd1,0xc3,0x47,0xff,0x49,0x55,0x82,0x60,0xb4,0xa3,0xd2,0x38,0xf2,0x0e,0xe2,0xed,0x3f,0x1e, + 0x6f,0xff,0xfe,0xee,0xe8,0xe0,0xf0,0xf0,0xf2,0xf0,0x70,0xfb,0xf0,0x70,0x70,0xf4,0x85,0xa7,0x62,0xca, + 0x02,0x0e,0xf3,0xfa,0x69,0xdc,0x27,0x4c,0x17,0x06,0x23,0xf9,0x0c,0x3c,0x95,0xc7,0x91,0x83,0xec,0xbc, + 0x7f,0x3d,0xf4,0xfa,0x71,0x4c,0x1c,0x9a,0x19,0xdc,0xe1,0xce,0x28,0x78,0xb4,0x43,0x7b,0xd4,0x28,0x76, + 0x78,0xb8,0x83,0x92,0x7d,0xef,0xe0,0x5f,0x8f,0x8e,0xbe,0x78,0x44,0xf3,0x99,0xa1,0xca,0xc3,0xad,0x67, + 0xaf,0x9e,0xee,0xff,0xf6,0xfa,0x9b,0x1e,0xd2,0xfb,0x8f,0x76,0x52,0xb5,0x94,0x74,0x58,0xf0,0x4c,0xe5, + 0xf3,0xf0,0x60,0x47,0x4d,0x62,0xbc,0x1d,0x7b,0x1f,0x3c,0x8b,0x85,0x77,0x3e,0xf8,0x03,0x9a,0xc8,0x89, + 0xaa,0x1f,0x79,0x2a,0xe8,0x81,0xb9,0x2f,0xf5,0xd3,0xcb,0x3c,0x56,0xa7,0xb1,0xba,0x88,0xd5,0x79,0xac, + 0x4e,0x62,0xf5,0x11,0xe7,0x40,0xbd,0x8b,0xd5,0x65,0xac,0xf6,0x63,0x75,0x16,0xab,0xa7,0xb1,0x7a,0xc3, + 0x20,0xa8,0xed,0x77,0xb5,0x61,0xb4,0x79,0xf5,0xe0,0x4b,0xf0,0x03,0xfb,0x0e,0x7e,0x4c,0xff,0x7a,0xb7, + 0x67,0xe5,0xd0,0x0b,0xbd,0x87,0x74,0x28,0x6f,0x9f,0xf0,0xe7,0x23,0x7c,0x02,0x3e,0xe9,0xc7,0x1d,0xef, + 0x0e,0xfd,0x88,0xcf,0xe7,0xc8,0xb8,0x8d,0x8c,0xbf,0xed,0xed,0xe2,0xfb,0x30,0xe3,0x1f,0x5f,0xf3,0x77, + 0xe9,0xad,0xd5,0x2d,0x9a,0xdb,0x6d,0x5a,0x64,0x62,0x80,0x4f,0xca,0x15,0xaa,0xaf,0xa8,0x5a,0x30,0xa4, + 0x09,0xbd,0xea,0xcc,0x5a,0x51,0x4b,0xab,0xbf,0x7d,0xcd,0x25,0xbe,0xe1,0x01,0x43,0xf3,0xa1,0x3e,0xce, + 0x67,0x71,0x37,0x69,0x41,0x58,0xe6,0x9b,0x58,0x7c,0x28,0x1c,0xb2,0x9c,0xa5,0x84,0xe7,0x22,0xf5,0x1a, + 0xeb,0xfb,0x8f,0xd5,0xbf,0x2e,0xb6,0xf3,0x2c,0xdc,0x51,0xef,0xf1,0xf3,0x62,0x7b,0x85,0x24,0xfa,0xf9, + 0x9c,0x7e,0xfa,0x83,0x2f,0xe8,0x42,0x5d,0xf4,0x69,0x34,0x69,0xb6,0xca,0xa7,0xfc,0x3d,0xf8,0x22,0xd8, + 0x51,0x3f,0x51,0xae,0x22,0xb8,0x52,0x74,0xdd,0x1e,0x11,0x94,0x51,0x09,0xf7,0x67,0x30,0xba,0xb5,0xa3, + 0xbe,0x65,0xa8,0xf0,0x57,0x87,0xc1,0x2d,0x1a,0xf4,0xcb,0x98,0xcd,0xc3,0xbe,0xa0,0x1f,0xea,0x05,0x72, + 0x42,0xf4,0xcc,0xa2,0xe7,0x1d,0xf5,0x33,0x25,0x1c,0x0e,0x0e,0xfe,0x35,0x38,0xea,0x53,0xd1,0x27,0x71, + 0xa7,0xf1,0x8e,0xff,0x43,0x1a,0xfd,0x90,0xde,0x60,0xa8,0x14,0x54,0xda,0x10,0x51,0xa2,0x7e,0x48,0x5d, + 0xe3,0x44,0xba,0x84,0x7f,0x45,0xcf,0x1f,0xce,0x67,0xd9,0x22,0x7c,0xf9,0xe6,0x70,0xd2,0xdf,0x51,0x6f, + 0x91,0xc2,0xdf,0x34,0x8e,0x5f,0xe2,0xe8,0xe0,0xb7,0x94,0xee,0x1c,0x75,0x45,0xcb,0xbb,0x7f,0xcd,0xdd, + 0x22,0xb2,0x24,0xe3,0x55,0x42,0x9e,0x86,0x0c,0x0b,0xc3,0x8f,0xfb,0x2f,0xe2,0x39,0x8b,0x64,0x0f,0xbc, + 0x8b,0x6d,0x7e,0x4c,0xf1,0x8e,0x20,0x9d,0xc5,0x4f,0x9e,0x34,0x08,0x42,0xef,0x68,0xb5,0xa2,0x14,0xfd, + 0x6d,0x54,0x43,0xf5,0x6d,0xc3,0x89,0xf0,0xdc,0x25,0x37,0xd7,0xc5,0x76,0x3a,0x95,0x6d,0x8e,0xa3,0x74, + 0xe4,0x51,0x5b,0x74,0x2a,0x71,0x28,0x43,0x62,0x11,0xf3,0x48,0x68,0x72,0x53,0x14,0xcf,0xb9,0xda,0x6e, + 0xb9,0x96,0x66,0xdb,0x18,0x47,0xbf,0x31,0x45,0xfe,0xcf,0x92,0x7d,0x65,0xb1,0xb6,0x11,0x77,0xa8,0xc4, + 0x75,0xc6,0x71,0xfe,0x81,0xfa,0xfe,0x0e,0xe9,0x50,0xda,0x07,0x0d,0x3b,0x26,0x04,0xad,0xc9,0xbd,0x41, + 0x3a,0x25,0x1c,0xe1,0xf5,0x0b,0xea,0x9f,0xa6,0x7f,0xc7,0x54,0xb9,0x43,0x87,0x5c,0xfd,0x8e,0x4a,0x57, + 0xc9,0x87,0x79,0x88,0x72,0x82,0xbf,0xc3,0xb1,0x3e,0x8f,0x33,0xdd,0x2f,0x0d,0x6a,0x86,0x41,0xd1,0xea, + 0xca,0x80,0x4a,0x4e,0xd0,0x43,0x28,0xe2,0x49,0x9a,0x4b,0xff,0x33,0xf4,0x5f,0x35,0xe9,0xf6,0xca,0xa5, + 0xb8,0x4b,0xe9,0x63,0xa6,0xfb,0x58,0xea,0x3e,0x8c,0xcf,0xa2,0xd2,0x5f,0x36,0xbb,0xa2,0x04,0x59,0x74, + 0x18,0x3f,0x7c,0x87,0xdf,0xb5,0x5e,0x52,0xdd,0xe2,0x12,0xee,0xf1,0x47,0xe3,0x01,0x96,0x0e,0xa1,0xe8, + 0x40,0xe9,0xc8,0x2f,0x5a,0x00,0x38,0xa1,0x06,0x67,0x77,0xa4,0xbe,0x27,0xcc,0x40,0xd5,0x88,0x63,0x00, + 0xd8,0x41,0x7e,0x6f,0x5e,0xb8,0x7f,0x89,0x55,0xc5,0x4a,0x84,0xfa,0x51,0xed,0xa6,0x67,0x34,0xf7,0x0d, + 0x35,0x16,0xd8,0x62,0xef,0x7e,0x06,0xac,0xf8,0xed,0x55,0xdc,0x1b,0x5a,0x5e,0xc4,0xca,0xd0,0x4b,0xad, + 0xcc,0xa5,0x74,0x68,0xdd,0xea,0xfd,0x32,0x0e,0xb6,0xba,0x7b,0xbe,0xc3,0x2a,0x02,0xb7,0x8c,0x07,0x8e, + 0xb7,0xf1,0xac,0x17,0xf5,0x1a,0x91,0xd5,0xf5,0x93,0x82,0x3c,0x62,0xde,0x62,0x07,0xb2,0x3a,0x62,0xa3, + 0x7d,0xd0,0xb4,0x8d,0xe7,0x16,0xf1,0xc0,0x4d,0x90,0x34,0xba,0x0e,0xf0,0x06,0xea,0xbb,0x65,0xd0,0xeb, + 0x05,0xf7,0xe5,0xbd,0x13,0x77,0x2f,0x50,0x09,0xca,0x7b,0x23,0xaa,0x26,0x09,0xbd,0x90,0x3e,0xf5,0xd3, + 0x9b,0x34,0x78,0xa7,0xef,0x73,0x0c,0x06,0xb1,0xa3,0x1f,0x79,0xef,0x32,0x9f,0xf2,0x71,0x06,0xe8,0x0f, + 0x84,0x44,0x04,0x02,0xde,0x30,0x73,0x5f,0x34,0xa1,0x40,0xdf,0xf7,0x7a,0x5e,0x3f,0x2f,0x11,0xea,0xa6, + 0x3e,0x76,0xf3,0xa8,0x4a,0x9d,0xd6,0x17,0x20,0xac,0xff,0x26,0x7c,0xe9,0x05,0x96,0x2b,0x62,0xb3,0x9d, + 0xca,0x26,0xb4,0xc2,0x03,0x31,0x61,0x58,0x7b,0x7c,0xe8,0x77,0xbe,0x69,0xc9,0x9d,0x49,0xd0,0x16,0xcb, + 0x79,0x97,0x35,0x08,0x56,0x2b,0x0f,0xfd,0xe0,0x4c,0x6b,0x3c,0x50,0x2c,0x93,0xed,0x2a,0x13,0x3f,0x3d, + 0x3a,0xd6,0x92,0x39,0x8d,0x71,0xaa,0xab,0x5c,0xfe,0xed,0x0d,0xff,0x23,0x91,0x15,0x10,0x27,0x38,0xca, + 0xab,0x9b,0x92,0x78,0x7d,0x62,0x53,0x82,0xd1,0xbb,0x54,0xbe,0x14,0x1d,0xa1,0x3e,0xf3,0xe1,0x5e,0xdf, + 0x97,0xf6,0x31,0xf6,0x91,0x17,0xea,0x92,0xb4,0xbc,0xe1,0xbb,0x7f,0xdb,0xc2,0x39,0x92,0x88,0xc9,0xab, + 0x2f,0xb3,0x27,0x50,0x44,0xf7,0x2f,0x17,0xbb,0x05,0xee,0xb5,0xb6,0xd8,0x94,0x34,0x8e,0x90,0x3c,0xd0, + 0xe3,0x1a,0xf9,0xd2,0x16,0xba,0x21,0x0e,0xa1,0xc3,0x18,0x96,0x9a,0xd3,0x48,0xf1,0xd6,0xad,0x0b,0x6a, + 0xd8,0x97,0x2d,0x97,0xf1,0x7a,0x61,0x1c,0x70,0x47,0x69,0x44,0x33,0xa1,0xa2,0xf4,0x79,0xc1,0x8d,0xb8, + 0x9d,0x04,0x57,0x54,0xe0,0xe1,0x2e,0xa3,0x4b,0x1a,0x17,0x0d,0x20,0x36,0x5a,0x21,0x07,0x54,0xfe,0x28, + 0x10,0xdd,0x17,0x94,0xa2,0x05,0xa8,0x15,0x33,0xee,0x5f,0x28,0x2b,0x30,0x75,0xaa,0x74,0x4a,0xed,0xef, + 0x41,0x8f,0x40,0xea,0x5b,0xf8,0xba,0x35,0x66,0x38,0xf4,0x3e,0x0d,0x5a,0x04,0xd3,0xfd,0x45,0x50,0x69, + 0x6d,0xb7,0xb3,0x59,0x3e,0xd5,0x69,0x2d,0x1a,0x42,0x37,0xd4,0x77,0x8f,0x07,0x1f,0x7f,0x0a,0x88,0x03, + 0x04,0x1d,0x9d,0x90,0x8d,0x58,0xa5,0x81,0xaf,0x08,0xaf,0xb1,0xff,0x78,0xdc,0x5e,0x12,0x35,0x18,0x7e, + 0xb7,0xf5,0xbc,0x10,0x00,0x09,0x76,0xdc,0x74,0x2d,0x6d,0xc9,0xaa,0x60,0x50,0xd0,0xed,0x53,0xb3,0x28, + 0x1e,0x99,0x51,0x86,0x3a,0x03,0x3a,0x68,0x04,0xbd,0xa1,0x1e,0x95,0x5a,0x46,0x8d,0x63,0x2d,0xeb,0x33, + 0x04,0xba,0xee,0xce,0xd3,0x56,0xe3,0xf0,0x58,0x22,0x65,0x78,0x81,0x96,0xbc,0x32,0x43,0x79,0xb3,0xe2, + 0x15,0x59,0x06,0xc3,0x31,0x15,0xa0,0xdb,0x0e,0x60,0x55,0x6b,0x47,0xeb,0x99,0xd8,0x47,0xca,0xa1,0xd7, + 0x9f,0x06,0x4a,0x76,0x42,0xfa,0x57,0x9e,0x39,0x3f,0x7a,0xb5,0x67,0x6a,0x5a,0x49,0x56,0xfc,0xc5,0x6a, + 0x05,0x85,0x69,0xd9,0x87,0xe3,0xd9,0x92,0x6e,0x27,0xaf,0xfe,0x74,0xe5,0x19,0x73,0xc1,0x6a,0x23,0xb6, + 0xbe,0xc9,0xea,0x62,0x42,0x3f,0x0e,0x3a,0x71,0xbf,0x7d,0x85,0x65,0x1a,0xb1,0xc5,0x18,0x5f,0x88,0x06, + 0x83,0x0c,0xd7,0x21,0x91,0x00,0x3c,0x0b,0x0c,0x5b,0x4a,0xf0,0xe0,0xd7,0xcc,0xf3,0x5c,0xdf,0x84,0x25, + 0xba,0x3a,0x1b,0x58,0x13,0x63,0xf9,0x9a,0xe8,0xa9,0xb8,0xcb,0x25,0x05,0x08,0x59,0xed,0x80,0x0b,0xc2, + 0x4a,0xe2,0x8a,0x50,0x8e,0x38,0x56,0x47,0x4e,0x1a,0xfe,0x5e,0xc0,0xe1,0xce,0x93,0xe4,0xa7,0x64,0x5a, + 0xbe,0x9a,0x27,0x19,0x8a,0x10,0xbf,0x55,0x5b,0x8a,0x70,0x91,0xaa,0x86,0x2c,0x34,0xfc,0x39,0x51,0x8e, + 0xf0,0xe0,0x17,0xf8,0x87,0x98,0x2c,0xc7,0xdd,0x2a,0x37,0x1c,0xcb,0x91,0x4f,0xb9,0x09,0x90,0x65,0x42, + 0xfe,0x05,0xec,0x11,0x62,0xf0,0x3e,0x4f,0x09,0x4c,0x14,0x56,0xe4,0x8f,0x6e,0x12,0xb5,0x07,0x47,0x2f, + 0x80,0x76,0xdc,0xd9,0x0c,0xff,0x90,0xac,0x2b,0x73,0x12,0x14,0xf1,0x2e,0x69,0xa6,0xdd,0x79,0x28,0xfb, + 0x30,0x26,0xd1,0x85,0xfa,0x7e,0x32,0xc2,0x89,0x4d,0xe0,0x19,0x15,0x02,0xa3,0x1f,0x2d,0xcb,0x77,0x78, + 0x79,0xeb,0xdd,0x51,0x7f,0x75,0x48,0x14,0x76,0x70,0xf4,0xc5,0xe8,0x30,0x00,0xbb,0x17,0x3d,0x5a,0xfd, + 0xcb,0x8c,0x80,0x7e,0x1e,0xfa,0x3b,0xea,0xdf,0xba,0xc6,0x01,0xb1,0x75,0xc4,0xdc,0xbd,0xbb,0x75,0x84, + 0xaa,0x47,0xe0,0x0c,0x89,0xba,0x6e,0x24,0xae,0x0e,0x0f,0xee,0x10,0x7d,0x7f,0xe7,0x88,0x3e,0x3c,0xfa, + 0xf0,0xf0,0x41,0x64,0x30,0xfe,0x34,0xcb,0x1e,0x05,0x5f,0x50,0xb3,0x44,0xb9,0xff,0x00,0x52,0x67,0x31, + 0x0e,0xef,0xfe,0x1d,0xce,0x8c,0xc2,0xaf,0x45,0xcd,0x22,0xdc,0xbb,0xa7,0x64,0xbd,0xef,0xdd,0x55,0xcb, + 0x79,0x78,0xef,0x2b,0xe2,0x90,0xa7,0x65,0x78,0xef,0xef,0xaa,0xc0,0xeb,0x49,0x78,0xef,0x6b,0x05,0x2f, + 0xd8,0xe1,0xfd,0x5d,0x25,0x0f,0x98,0xe1,0xc1,0x57,0xea,0xfe,0x97,0xc4,0x84,0x7c,0x17,0x77,0xf9,0xe5, + 0x02,0xca,0xe9,0x03,0x78,0x1c,0x9f,0x59,0x43,0x62,0x9b,0xfe,0x19,0x43,0x18,0x44,0xf0,0x60,0x0e,0x35, + 0x7e,0x00,0x40,0xe2,0x93,0x58,0x44,0x88,0x43,0x68,0x54,0x70,0x9e,0x2d,0xa3,0x7f,0x3f,0x93,0x07,0x47, + 0x2e,0x82,0xb8,0x64,0xe1,0x77,0xb1,0x5f,0xc7,0x0d,0x3d,0xc2,0x38,0x3d,0x9d,0x32,0x5e,0x16,0xd8,0xa4, + 0x7d,0xce,0xa0,0x03,0x3c,0x2e,0x8b,0x19,0xd7,0xd8,0x32,0x05,0x28,0xe1,0x47,0x68,0xe8,0x2a,0xf6,0x1d, + 0x5a,0xcb,0xe3,0x14,0xc9,0x8c,0x67,0xf5,0x2c,0xfa,0x2d,0x19,0x90,0x17,0xd4,0x72,0x90,0x20,0x59,0xbc, + 0x76,0xc8,0xba,0x23,0x5e,0xa1,0xee,0x80,0x30,0x92,0x52,0xbd,0xdb,0xb7,0xcd,0x08,0x25,0x8f,0xc7,0xbc, + 0x8b,0xf6,0xd2,0xc9,0x64,0x96,0x7c,0x56,0xb5,0x3d,0xc8,0x15,0x78,0x7f,0x3e,0xa7,0xd6,0x5d,0xc0,0xff, + 0xef,0xb4,0x11,0xc4,0x35,0x36,0xfd,0xb1,0xc0,0x0d,0x5c,0x15,0xd5,0xae,0x63,0x63,0xdf,0x9d,0xc8,0xc6, + 0xaa,0x1a,0x86,0x58,0xc3,0x5b,0x49,0xd6,0xf6,0x83,0x83,0xe6,0x38,0x7c,0x5e,0x65,0x2d,0x54,0xb5,0x74, + 0x4c,0x2d,0x65,0xd4,0xd2,0x1d,0xc8,0xbf,0xe8,0xbc,0xf5,0xc1,0x7c,0x57,0xad,0xe2,0xee,0x73,0x28,0x69, + 0x38,0x3a,0xaa,0xd4,0x11,0xf1,0x18,0x36,0x12,0x52,0x27,0xd4,0x34,0x53,0x70,0x4d,0x71,0x8e,0x3e,0xed, + 0x29,0x5d,0xde,0x0b,0xf4,0x98,0xc7,0xb3,0x3c,0x3e,0x43,0x5c,0xdd,0xdf,0xe2,0xb6,0xd7,0xd3,0xdc,0x3a, + 0xcb,0xe4,0x9f,0x90,0x44,0xd2,0x9d,0x88,0x3f,0xab,0xd5,0xef,0x3a,0xd1,0x0a,0x2f,0x17,0xd1,0x6f,0x10, + 0xc3,0x1b,0xc5,0x74,0xcf,0x66,0x3c,0x25,0x8e,0xc1,0x78,0x70,0xc7,0x3b,0xe3,0x77,0x49,0x86,0x08,0x7e, + 0xf5,0xd2,0x5a,0xea,0x68,0xcb,0x59,0x8e,0x23,0xba,0xf0,0x59,0xd1,0xe2,0xf7,0x98,0x4d,0xa3,0x6d,0x7a, + 0x60,0xa3,0x77,0xd5,0x10,0xe8,0x6a,0xf5,0x26,0x1b,0x6a,0xdf,0xc8,0x1f,0x8f,0x13,0x1b,0x88,0xb1,0x63, + 0x23,0xb7,0xac,0x19,0xaf,0xf6,0x8f,0x99,0x8d,0x93,0xe7,0xb0,0xd6,0xe2,0x5f,0xcd,0x80,0x83,0xf0,0xd1, + 0xfd,0x1f,0x71,0xe4,0xbb,0x42,0xa1,0xc3,0xc3,0x63,0xaf,0xef,0x4d,0x72,0x45,0x3c,0x22,0xcd,0x94,0x80, + 0xbe,0x44,0x40,0x5d,0x5a,0xe4,0x8f,0xec,0x98,0x6d,0x0c,0xe1,0x1f,0xae,0x3d,0x75,0x99,0x96,0xa7,0x2a, + 0xbe,0x8c,0xd3,0x52,0xb1,0x61,0x80,0x62,0x1f,0xe8,0x5a,0x79,0x9e,0x9f,0x81,0x14,0x3b,0x2e,0x55,0x1c, + 0x97,0x5e,0x5d,0x12,0x5a,0x4d,0xd4,0x47,0x48,0xfd,0x34,0xb2,0x51,0xc4,0x9c,0xe5,0xf0,0x76,0xc8,0x9e, + 0x58,0x94,0xcc,0xc0,0x78,0x00,0x33,0x7e,0x17,0xc5,0x5d,0x28,0xb1,0x31,0x12,0xa2,0x9e,0x9d,0xa0,0xa5, + 0xd9,0x12,0xae,0x7b,0x8e,0x97,0x27,0x27,0x10,0x13,0xea,0x55,0xa8,0x82,0xae,0x78,0xda,0x4f,0x0d,0xee, + 0x04,0x7d,0x3b,0xd0,0xb4,0x56,0x98,0x5a,0xd0,0xe7,0x19,0x4a,0x90,0xe0,0xc6,0x9c,0x65,0x50,0xe2,0x77, + 0x94,0x15,0xd8,0x3b,0xdb,0x21,0x94,0x0e,0x84,0x7f,0x78,0x48,0x28,0x9f,0xfe,0xa9,0x5a,0x6d,0x64,0x50, + 0x1f,0xfe,0xd3,0xa6,0xe4,0x47,0x44,0x11,0x1b,0xad,0x46,0xd9,0x63,0x30,0xe1,0x45,0xc4,0x3e,0x8e,0xb6, + 0xf6,0x02,0xf5,0x31,0xd6,0xfb,0xc9,0x06,0x62,0x90,0x70,0x3b,0x11,0x5b,0x86,0xd9,0xc3,0x93,0xd8,0x75, + 0xce,0x72,0x12,0xb3,0x1d,0x2e,0x5e,0x72,0xe6,0x71,0x54,0x56,0x50,0xfd,0x11,0xbf,0xcc,0x5d,0x0f,0x70, + 0x52,0xc7,0x48,0x71,0x6e,0x72,0x4e,0x7c,0x87,0xc4,0xc6,0x55,0xcd,0x19,0x17,0x31,0x40,0xbb,0xec,0x38, + 0x08,0x2f,0xe5,0x20,0x9c,0x37,0x0b,0x34,0xc5,0x34,0x54,0xe6,0xa4,0x55,0x26,0x5f,0x94,0xcd,0x42,0xa7, + 0x18,0x02,0xed,0x44,0x7a,0x9e,0x96,0x08,0x88,0xa8,0x8d,0x72,0x89,0x3c,0x65,0xe5,0x93,0xad,0x3d,0xd6, + 0xf5,0x44,0x8c,0x73,0x9c,0x8e,0x5f,0x4f,0xa9,0x14,0x0f,0x53,0x61,0xbd,0x40,0xa7,0xee,0xb5,0x2c,0x33, + 0x9a,0x8b,0x4c,0xbf,0x96,0x7d,0xbc,0xe0,0x41,0xad,0x75,0x79,0x2c,0x6f,0x0b,0xbe,0x6b,0x35,0x5d,0x18, + 0x3f,0x02,0xac,0x7f,0xa7,0x16,0x55,0xfc,0x7a,0xd1,0xe4,0x5b,0x06,0xfa,0xed,0x0d,0xcf,0x0d,0x05,0x7e, + 0xca,0x8e,0x35,0x1e,0x64,0x29,0x99,0x55,0xfd,0xd3,0x28,0xaf,0x82,0xda,0xa7,0x8f,0x22,0xe2,0x7a,0x72, + 0x84,0x82,0x99,0x99,0xa2,0x38,0xe4,0x34,0xaf,0x05,0x42,0xaa,0x19,0x9a,0x32,0xe2,0x67,0x5f,0x94,0x76, + 0x0c,0x30,0xdd,0x86,0xc6,0x8f,0xa2,0x74,0x38,0xa6,0x0a,0xe5,0x80,0xbd,0xac,0xf0,0x1f,0xf6,0xb7,0xce, + 0x92,0x09,0x8c,0x7f,0x68,0x8a,0x47,0x58,0xc0,0x94,0xbb,0xdd,0xde,0xe3,0x7c,0xe6,0x8e,0xbc,0xe3,0x02, + 0x14,0xde,0x62,0xc4,0x84,0x55,0xc1,0x4e,0xeb,0xf9,0x83,0xe6,0x4f,0xcb,0xbd,0xb5,0x2b,0x9e,0x11,0xbc, + 0x39,0x97,0xe2,0x38,0xb8,0x9d,0xe5,0xf6,0xb8,0x9c,0xaa,0x0d,0x44,0x56,0x90,0x16,0xd5,0x38,0x47,0x80, + 0xa7,0x13,0x6c,0x22,0x94,0xd1,0x2b,0xa9,0x0c,0x6d,0x59,0x39,0xa8,0xe8,0x4b,0x86,0xb6,0x19,0x5e,0x9c, + 0x1b,0x54,0x25,0x67,0x2c,0x69,0x51,0x92,0x21,0x0b,0xf9,0x52,0x42,0xe0,0xc4,0x92,0xbc,0x89,0xfd,0xd8, + 0xaa,0xb3,0xc1,0x2e,0x35,0x6e,0xbc,0x89,0xcf,0xa3,0x0f,0xf1,0xc1,0x04,0x21,0xa2,0xf8,0x6f,0x4d,0xfe, + 0x4d,0x04,0xdc,0xe1,0xe2,0xf0,0xf0,0x0d,0x91,0x6e,0x81,0xff,0x70,0xc7,0xeb,0x4f,0x8c,0x20,0x3c,0xa0, + 0x13,0x9f,0x82,0x97,0x86,0x75,0x96,0x11,0x6d,0xcf,0x5d,0x99,0x36,0x83,0x87,0x81,0x34,0x6b,0x09,0xab, + 0x68,0x3c,0x13,0xe6,0xff,0xb4,0xdf,0x49,0x2c,0x1c,0xc7,0x46,0x8e,0x2a,0x07,0x54,0x3b,0x10,0xa3,0x53, + 0xdf,0x0b,0xe9,0x79,0x7b,0xfb,0xd1,0xce,0x09,0xb1,0x18,0x74,0xeb,0xbb,0x45,0x0e,0x0f,0x9e,0x3e,0x7b, + 0xbc,0xff,0xf8,0xf0,0xa0,0x2a,0x79,0x74,0x64,0x4b,0x42,0xa8,0xec,0x4f,0x94,0xb8,0x5d,0x86,0x3e,0x8b, + 0xf6,0xd9,0xc4,0x61,0xf4,0x4e,0x63,0xb9,0x28,0xf9,0x03,0x4a,0x10,0x1e,0xe4,0x2f,0x04,0xf3,0x46,0x47, + 0x67,0xfb,0xd4,0x8c,0x37,0x89,0x4e,0x55,0x41,0x0d,0x2d,0xb7,0xa7,0x88,0x44,0x6d,0xed,0x90,0x2e,0x22, + 0x47,0x19,0xe0,0xa1,0xc8,0x00,0xa0,0x86,0x79,0xc1,0x8b,0xbf,0x8c,0x4d,0x44,0x2d,0x63,0x41,0xe6,0xaa, + 0x0e,0x6c,0x1f,0x7e,0xb8,0x97,0x48,0x95,0x73,0x06,0xdf,0x52,0x87,0x67,0x44,0xa4,0x0a,0xad,0x82,0xa8, + 0xc3,0x23,0x68,0x87,0x25,0xd5,0x29,0xbc,0xaf,0x60,0x6b,0x9b,0xf9,0xe7,0xfd,0x7b,0xc4,0xe2,0x69,0x54, + 0xbf,0x86,0x5e,0xd7,0xb4,0xd1,0xe7,0x89,0xdb,0xe7,0xd1,0x23,0xe9,0xef,0x84,0xfb,0xcb,0xfc,0x93,0xfe, + 0x5d,0xb7,0x3a,0xca,0x43,0x43,0x9a,0xdd,0xd3,0xfa,0x33,0x51,0x39,0xfc,0x88,0x82,0x1f,0xf1,0xb6,0x6c, + 0x02,0x1a,0xda,0x0a,0x28,0x7f,0x6c,0xcb,0x8f,0xa5,0xfc,0xb1,0xf4,0xfb,0x2e,0x5a,0x0e,0x33,0xff,0xd8, + 0xa9,0x47,0x0b,0x78,0x7c,0xb0,0x77,0xa4,0xde,0x31,0x5b,0xea,0xb6,0x71,0xd9,0x8c,0x95,0x52,0xda,0x46, + 0x73,0x69,0xd4,0x46,0xfe,0xbb,0x32,0x1e,0xff,0x4a,0x34,0xc5,0x9c,0x47,0x88,0xc3,0x82,0x53,0x16,0x2e, + 0xd7,0xd4,0x65,0xe9,0x0e,0xd5,0x39,0x55,0xc3,0x2d,0x1c,0x06,0xdd,0xec,0x22,0x66,0xe3,0x8f,0xd8,0x26, + 0x14,0x94,0x30,0x0c,0x32,0x3f,0xae,0x0d,0x58,0xfb,0x8f,0x34,0x81,0x38,0x71,0x9e,0x2a,0x1b,0xcc,0x25, + 0xce,0xe2,0x1b,0xba,0xc5,0x09,0x6d,0x60,0x30,0x99,0x9f,0xd6,0x2b,0xc3,0xf7,0xf9,0x52,0x15,0xeb,0xb5, + 0x2f,0x56,0x53,0xc1,0x55,0x2b,0xd4,0x42,0x16,0x59,0x37,0x85,0x6c,0x75,0x51,0xb5,0xc9,0xdc,0xbf,0x60, + 0x14,0x68,0xe6,0x8b,0xeb,0xf0,0x82,0x46,0xa1,0x66,0xfc,0x19,0x8b,0x03,0xe8,0x82,0x1f,0xc8,0xcd,0x34, + 0x97,0xd1,0x98,0xbd,0x35,0x6c,0x6d,0xa5,0xec,0x83,0x47,0x86,0xaf,0x61,0x78,0xc2,0x87,0x5a,0x24,0x53, + 0x53,0x9c,0xf8,0xdd,0xe1,0xfc,0xe1,0x74,0x38,0x37,0x4a,0x7e,0xa7,0xa6,0xc2,0xc1,0xfc,0x68,0x38,0xa1, + 0x4e,0xb7,0x61,0x2d,0x77,0x8a,0x39,0x19,0x00,0xba,0xe3,0x79,0x77,0xb0,0x6e,0xfc,0x46,0x75,0x7a,0x70, + 0xef,0xe8,0xf6,0x6d,0xad,0xd0,0x89,0x1f,0x4a,0x27,0xdf,0x77,0x93,0xef,0xdb,0xe4,0x07,0x6e,0xf2,0x03, + 0x6d,0x4d,0x78,0xc1,0xcd,0xac,0x56,0x28,0x88,0x7f,0x1f,0xd0,0xbf,0x9e,0xa7,0xce,0x23,0x2f,0x36,0x2e, + 0xae,0xe1,0xbe,0x59,0x5a,0xd8,0x3b,0x1a,0x99,0x33,0xf2,0x2c,0x81,0x4b,0xdd,0x97,0xc9,0x25,0x5c,0xa2, + 0x2e,0xbe,0xcd,0x8b,0xef,0xa9,0x54,0xd8,0x9d,0x3b,0x9c,0xd0,0x8c,0xb4,0xee,0x3a,0x1a,0x51,0x4c,0x62, + 0x87,0xff,0x2e,0xfd,0x0b,0x3a,0x46,0xeb,0xf5,0x92,0x55,0x9f,0x79,0x93,0x59,0x81,0x95,0x30,0xab,0x7b, + 0xe3,0x84,0x59,0x03,0x57,0x0a,0xd4,0x4d,0xe0,0x91,0x3e,0xe2,0xb8,0x08,0x0d,0x64,0x9f,0xc1,0x96,0x8c, + 0x9f,0xbc,0xe9,0x17,0x3c,0xda,0x64,0x93,0x60,0x4d,0xdb,0x0f,0x5c,0x14,0xab,0x84,0x5d,0x2f,0xec,0x35, + 0xcf,0xdd,0xbe,0x31,0x19,0x3f,0x33,0x1f,0x4f,0xf5,0x07,0x60,0xe7,0xc2,0xde,0x6f,0x67,0xd6,0xb1,0xf3, + 0x45,0x40,0x20,0x3d,0xd6,0xc7,0xfd,0x0c,0x6e,0x5c,0x9d,0xef,0xa5,0xf3,0x3d,0x75,0xbe,0xfd,0xa7,0xd1, + 0x99,0x8b,0xb1,0x14,0xe1,0xc2,0x87,0xbb,0x04,0xfa,0x17,0xfd,0xe8,0xa9,0xaa,0x35,0xbe,0x5f,0xbb,0xf7, + 0x77,0xd5,0x05,0x10,0xce,0x45,0xb0,0xbe,0x60,0x71,0x24,0xe5,0x12,0x56,0x84,0xe5,0xb8,0xc5,0xa4,0xfb, + 0x15,0x32,0xdd,0x67,0x1d,0xd3,0x44,0xd4,0x94,0x5b,0xa8,0x36,0x31,0x26,0xb2,0xeb,0xc2,0x67,0x19,0x91, + 0x44,0x09,0x99,0xc7,0xca,0x79,0x86,0xa8,0xdd,0x7e,0x8e,0x64,0xc5,0xbd,0x06,0x3b,0x84,0x2a,0xad,0x1b, + 0x51,0x75,0x81,0xc4,0x06,0x48,0xe9,0x2c,0x7b,0x3d,0x70,0xe9,0x5c,0xd5,0x42,0xdd,0xa1,0xc5,0xdc,0x0b, + 0x8d,0x9e,0x9c,0x6b,0x31,0x87,0xf5,0xab,0x9c,0x58,0x11,0x90,0x2e,0x56,0xab,0x77,0x78,0xe3,0x1c,0xbe, + 0x04,0xc8,0xc3,0x65,0x36,0xad,0xdd,0x12,0xaa,0xf0,0x35,0xee,0xa5,0x52,0x76,0x26,0xa4,0x27,0xa4,0x6d, + 0xe2,0x52,0xb6,0x46,0x78,0x89,0xf8,0xa8,0xbf,0xc6,0x46,0x77,0x32,0xd3,0x3a,0x93,0xf2,0x15,0xc9,0x1f, + 0x7b,0x89,0xbe,0x8d,0x95,0x6c,0x23,0x9f,0x00,0xd0,0x22,0x36,0x86,0x1e,0x94,0xcb,0xb5,0x3c,0xf1,0x87, + 0x92,0x87,0x9d,0xd2,0x05,0x09,0x89,0x22,0x8d,0x18,0xf4,0xdc,0x96,0x76,0xa0,0xcf,0x1e,0x15,0x27,0xd1, + 0x34,0x10,0x65,0x66,0xf3,0x1c,0x8d,0xe4,0x89,0x28,0x5f,0x4f,0xea,0xf2,0x54,0x9a,0x24,0xc4,0x76,0x3b, + 0xef,0xe3,0x8b,0xd8,0x2d,0x5b,0x2b,0x44,0x63,0x46,0x8c,0xda,0x80,0x3b,0xa4,0xa9,0x1f,0xb3,0x27,0x78, + 0x0e,0x44,0x69,0x16,0x62,0xa2,0xf1,0xd8,0xb9,0x25,0xf0,0x81,0xcf,0xa6,0xd1,0x79,0x4c,0x67,0xde,0x9f, + 0x12,0x49,0x4b,0xf0,0xcf,0x8a,0x81,0x34,0xff,0xf3,0x68,0xaa,0xec,0x43,0xe3,0x39,0x1e,0xd5,0x20,0xbb, + 0x43,0xf3,0xe7,0x20,0x95,0xd9,0xd4,0x60,0x5a,0xf1,0x15,0xbb,0x01,0x33,0x16,0x53,0x87,0xb1,0xc0,0x8b, + 0x64,0x67,0xf4,0x62,0x2b,0x2c,0xb3,0xee,0x2e,0xdd,0x28,0x8d,0xf6,0x55,0xd5,0x41,0xc1,0xa5,0xf1,0x43, + 0x53,0x72,0x04,0x4f,0x78,0xe9,0xd1,0x38,0xca,0x69,0x8d,0x12,0x25,0x2e,0x89,0xa0,0xac,0x86,0x92,0x4f, + 0xa3,0xa0,0x84,0x25,0x5d,0x1b,0x8f,0x9a,0x34,0x0f,0xd6,0xb5,0x63,0xa1,0x9d,0x44,0xc5,0x9e,0x06,0xe1, + 0xb4,0x7a,0x0b,0xa5,0xdc,0x7f,0xc2,0x98,0xbf,0x23,0x52,0xa9,0xf3,0x66,0xab,0xef,0xdf,0x04,0x8f,0xa6, + 0x25,0x1e,0x19,0x13,0x79,0x64,0x2c,0xf5,0x23,0x63,0xb2,0xd6,0x46,0xd6,0x1d,0x4f,0xb8,0xa2,0xcb,0xac, + 0x9f,0x1f,0x4d,0xec,0xc4,0xe6,0x83,0xae,0xd1,0x66,0xd2,0xef,0x92,0x70,0xa8,0x8b,0x41,0x5d,0xb8,0x9b, + 0x75,0x81,0x0a,0x60,0xd2,0xb9,0xc9,0x0b,0xe6,0xd7,0x79,0x37,0xbe,0x2b,0x79,0x93,0x69,0x2d,0x47,0x06, + 0x02,0x56,0xab,0x82,0xc6,0xca,0x30,0x23,0x4d,0x12,0x04,0xf0,0x17,0x55,0xa5,0xe1,0x17,0x32,0x7c,0x93, + 0xa9,0x67,0x31,0x5d,0x07,0x61,0x41,0x3d,0xd2,0x69,0xdc,0x72,0x60,0x0d,0x26,0x42,0xad,0x66,0xb6,0xae, + 0xe7,0x55,0xdd,0x53,0x6a,0x0f,0x27,0xc7,0xd7,0x33,0x16,0xe8,0x09,0x87,0xd6,0x03,0x80,0x1b,0xc9,0x2d, + 0x25,0x20,0x28,0x6c,0x3e,0x87,0xe9,0xaf,0x5f,0x39,0xb9,0xe1,0xb5,0xc9,0x78,0x3a,0xbf,0xe3,0x62,0xe1, + 0xa1,0x27,0xf5,0xa1,0xc3,0x22,0x83,0x16,0xcc,0xca,0xd8,0xa7,0x03,0x58,0x28,0xb0,0xd3,0x2f,0x8e,0x22, + 0x2e,0xdb,0xbf,0x37,0x94,0x3b,0x5e,0x72,0x45,0x2e,0xb8,0x5a,0xdd,0xf1,0xb4,0xfc,0xc0,0xbb,0x33,0xa4, + 0x6e,0x6b,0xc1,0xde,0xea,0xbf,0xd9,0x8c,0xe0,0xe0,0xf4,0x28,0x9a,0x8a,0xb1,0x75,0x35,0x46,0xc1,0x1b, + 0x53,0x3e,0x3a,0x12,0x96,0x2d,0x95,0xab,0x5d,0x9d,0x0f,0x67,0xa3,0x0c,0x40,0x47,0x94,0xd7,0x54,0xc5, + 0xa6,0x20,0xe2,0x8c,0x65,0x1d,0x7a,0xf5,0xf1,0x41,0x6c,0xd9,0xb6,0x23,0x55,0x3a,0xee,0xb1,0x0e,0x5a, + 0x3e,0xb1,0xa8,0x04,0x82,0x2f,0xdf,0x83,0x36,0x88,0x41,0x28,0x3d,0x4f,0x7e,0xb1,0x3b,0x85,0xad,0x31, + 0x34,0xad,0xab,0x31,0x62,0x69,0x95,0x6d,0x3f,0xda,0x23,0x72,0xab,0xde,0x5f,0x26,0x0e,0xb7,0x71,0x41, + 0xd5,0xa4,0xfc,0x26,0xb8,0xd8,0xcb,0xcc,0x7d,0x3a,0x12,0x8f,0x26,0x40,0x6c,0x69,0x85,0xb3,0xe6,0x95, + 0x3b,0x0e,0x98,0x76,0x07,0xf6,0x34,0xd5,0x9c,0x7f,0x24,0xd1,0x18,0x81,0x1f,0xe5,0x09,0x67,0xe4,0x23, + 0xd4,0xa6,0x57,0x71,0x41,0x85,0xb1,0x55,0x61,0xb4,0x6a,0x12,0x46,0x49,0xf8,0x24,0x66,0xb7,0x7e,0x39, + 0xae,0x51,0x19,0xf5,0x88,0x66,0x0c,0x71,0x9e,0xf6,0xf8,0xb6,0xb5,0xe0,0x35,0xd8,0x62,0xdf,0x7d,0x7e, + 0x53,0x7a,0x22,0x50,0x7a,0x1a,0x8f,0x7e,0x4f,0xfd,0xd3,0x38,0x08,0xbf,0x4b,0x99,0x5b,0xaf,0x98,0x05, + 0xeb,0xfc,0x4d,0x39,0x2c,0x28,0xfd,0x33,0x86,0x0b,0xdf,0x78,0x51,0x3e,0x07,0xd1,0x00,0x84,0xc5,0xf1, + 0x7c,0x92,0x31,0x2e,0xab,0xe0,0x8a,0x76,0xb6,0x10,0x7a,0x22,0x78,0x84,0xa7,0x26,0x43,0x2c,0x5b,0x42, + 0x62,0x0c,0x2b,0x5d,0xa5,0xc9,0xab,0x06,0xfe,0x8a,0x8d,0x86,0xe2,0x2c,0xfa,0x67,0xe2,0xbb,0xee,0x90, + 0x87,0xba,0x82,0x3c,0xc6,0xcc,0xe4,0x11,0x4a,0xb7,0x7d,0xe5,0xfd,0xe3,0x58,0x34,0x05,0x3d,0xe8,0x4c, + 0xd0,0x00,0xd3,0x7e,0x51,0x51,0xde,0xe6,0xf6,0x1a,0x3f,0xac,0x4c,0x2d,0x3a,0x86,0x75,0xed,0xa0,0xf8, + 0x9c,0x41,0xa3,0x0f,0x06,0x49,0xb9,0x16,0x69,0x41,0x2f,0xb1,0xcc,0xcf,0x92,0x6c,0x11,0x2e,0xd6,0x1c, + 0x19,0x28,0x18,0x95,0x86,0x6c,0x84,0x15,0xe8,0x5d,0xe5,0xd4,0xc2,0x22,0x99,0x1f,0xa6,0x1a,0x08,0x49, + 0x7c,0xc8,0x9b,0x16,0x9d,0xdb,0x50,0x60,0x36,0xa9,0xf6,0xd4,0x82,0xf1,0x41,0x59,0xc1,0x26,0x83,0x34, + 0x94,0xc6,0x9d,0xce,0xee,0xd9,0x46,0x84,0x7e,0x2c,0xd8,0x20,0xbc,0xe5,0x26,0xbe,0x79,0x4c,0xeb,0x95, + 0x95,0xb5,0x75,0x0b,0xb7,0x76,0xd9,0x3c,0x82,0xd8,0x15,0xdf,0xc0,0x26,0xe2,0x18,0x6b,0x41,0x12,0xa4, + 0xc1,0xe7,0xe9,0x1f,0x09,0xcb,0x71,0xd8,0x14,0x4a,0x41,0xa6,0x73,0x19,0x47,0x7f,0xc4,0xc0,0x13,0xce, + 0x73,0x13,0x68,0x89,0x7d,0xbc,0x92,0xb6,0x64,0xb3,0xf6,0x9e,0x81,0x09,0x8f,0xb8,0x92,0xd1,0x35,0x23, + 0xba,0x5b,0x4b,0x75,0x97,0xba,0x1a,0xeb,0xc3,0xec,0xe3,0x64,0xcb,0x0f,0x62,0x67,0xfc,0xad,0xb1,0xbe, + 0x96,0xc7,0xb0,0x4c,0xd0,0x8a,0xa2,0xd4,0x19,0x54,0x74,0xf0,0xef,0x14,0x91,0xbf,0x4e,0x32,0x9f,0x8d, + 0xa9,0xc0,0x00,0xed,0xc7,0xf6,0xbb,0x6d,0x02,0x6a,0x0d,0x40,0x59,0x0d,0xca,0xc4,0x85,0xd0,0x5e,0xa1, + 0xad,0xeb,0x20,0xae,0x5e,0xb3,0x24,0x40,0x37,0x95,0x7d,0xa8,0xf5,0x19,0x43,0xc0,0x44,0x3d,0x6a,0xa3, + 0x32,0x84,0x11,0xa4,0x84,0x01,0x02,0xc5,0x7c,0xa4,0x05,0x0a,0xf0,0x3f,0xb5,0x67,0xf1,0x94,0x58,0x2d, + 0xd0,0xf0,0x4a,0x4d,0x56,0x78,0xc0,0xc7,0x1c,0x15,0xa8,0x32,0x04,0xc3,0x0f,0x83,0x55,0x0e,0xbc,0x34, + 0x03,0xa5,0xb9,0x6d,0xc7,0x69,0xac,0x16,0x5c,0x19,0x27,0xc7,0x0f,0x6d,0xfa,0x0d,0x34,0xe1,0xa9,0x8d, + 0x7d,0x6c,0x85,0x4f,0x89,0x3c,0x84,0xdf,0x15,0x65,0xb6,0x0e,0x06,0x4b,0x66,0x2f,0xb6,0xf6,0x98,0x78, + 0x27,0x3a,0x7b,0xfa,0x34,0xa7,0x85,0xe6,0x77,0x80,0x2a,0xe0,0x34,0xa1,0xce,0x3c,0xaa,0x67,0x9a,0xfe, + 0xe2,0x87,0x79,0xe5,0x59,0x6b,0xd1,0x28,0x04,0x4f,0x4a,0x7c,0x61,0x51,0xcf,0xb0,0x8a,0xdb,0xd0,0x33, + 0x03,0xf3,0x78,0x4d,0x74,0x68,0x0d,0x5c,0xb4,0x3f,0x83,0xc6,0x3a,0xda,0xaa,0x38,0x1c,0xb9,0x78,0xff, + 0xb3,0x69,0xcf,0x33,0xa2,0xcd,0x2d,0x83,0x46,0x09,0xc2,0x80,0xd4,0x96,0x88,0x8a,0x0b,0x80,0x37,0xd2, + 0x57,0xab,0x7b,0xb5,0x64,0x76,0xdb,0xce,0x2e,0x23,0x34,0x76,0x01,0x6b,0x66,0x7b,0x82,0x3f,0x62,0x26, + 0x70,0x1c,0x90,0x96,0xb4,0x3d,0x55,0xb5,0xd1,0x88,0xe1,0xde,0xde,0x2e,0x13,0xcc,0x1d,0xc2,0x5f,0xc7, + 0xd5,0xa3,0xca,0xc0,0xd0,0x97,0x0c,0x7c,0xc3,0xbf,0xb6,0x31,0x89,0xbf,0x61,0x4f,0x38,0x8c,0x01,0xdc, + 0x42,0xed,0x59,0xa5,0x71,0x16,0x26,0x67,0x19,0x1b,0x1e,0x69,0x59,0xf1,0x15,0x5d,0x03,0xc4,0x1d,0x6b, + 0x23,0xcc,0xd8,0x84,0xae,0x6d,0x3c,0x97,0x50,0x46,0x23,0x65,0x5d,0x0f,0xf6,0x67,0xf7,0xb5,0xf4,0x1d, + 0x85,0x8b,0xba,0x51,0x66,0x02,0xcd,0x41,0x36,0xad,0x14,0x77,0x40,0x85,0xbc,0x40,0xd5,0xef,0x34,0xbf, + 0x1c,0xc5,0x61,0x1a,0x18,0x47,0xa8,0x6b,0x34,0x96,0x19,0xb9,0x39,0x3b,0xf2,0xd1,0xdf,0x51,0xf5,0xdc, + 0xc4,0xef,0xe1,0xe6,0xa1,0xdc,0x16,0x86,0x30,0xad,0x66,0xbe,0x0c,0x9f,0x91,0xee,0x3b,0x54,0x63,0x74, + 0x4e,0xe6,0x6a,0x25,0x06,0xa4,0x6e,0x7d,0x47,0x24,0x83,0x28,0xb6,0xbd,0x2c,0xf0,0x74,0x47,0x38,0xe8, + 0x74,0x85,0x57,0x11,0xdd,0x4c,0x0a,0x5d,0x7f,0x39,0x3c,0xe2,0xe7,0x47,0xe2,0x0a,0x68,0x11,0x3d,0x8d, + 0x39,0xfc,0xb9,0x91,0xd3,0x2f,0x06,0x49,0x51,0xe4,0xc4,0x42,0xa4,0x74,0x76,0xca,0x74,0xbe,0x88,0x62, + 0xb5,0xd0,0x48,0xe8,0x0a,0xda,0x1c,0xe9,0x2c,0x09,0x4b,0xa5,0xbf,0xf6,0xf3,0x6f,0xf5,0x52,0x2d,0x3a, + 0xb4,0xf9,0x3b,0x0c,0x60,0x5b,0xcf,0x01,0xda,0x87,0x02,0xe1,0x7b,0x7e,0x83,0x23,0xbe,0x90,0xb7,0x40, + 0xbf,0x49,0xf5,0x8a,0xca,0x38,0x01,0x3e,0xab,0xaa,0xa7,0x88,0x91,0x36,0x4a,0x72,0xd3,0x82,0x3e,0x5d, + 0x88,0x0c,0xbb,0xf0,0x9c,0x66,0xd8,0x4b,0x38,0xde,0x13,0x6b,0x7a,0xb8,0xc5,0x2b,0xa0,0xec,0x09,0xab, + 0x6a,0xec,0xb8,0x9d,0xb3,0xb6,0x0f,0x9a,0x23,0xea,0xa2,0x06,0xb7,0x71,0x85,0x3c,0xaa,0x27,0xba,0xbc, + 0x99,0x52,0xd7,0xd7,0xab,0x34,0x1c,0xe6,0x80,0x9d,0x31,0xf4,0x13,0xd0,0x7f,0x44,0xb0,0x89,0x27,0x8d, + 0x75,0xe0,0x7f,0x1f,0x07,0x83,0xf6,0xe2,0x05,0x2a,0xc9,0xa3,0xad,0x2d,0x78,0xb2,0x3f,0xcd,0x7c,0x3c, + 0x35,0x95,0xee,0x6f,0x98,0x18,0xe5,0x9d,0xd6,0x38,0x6c,0x32,0x64,0xad,0xee,0x80,0x7a,0xac,0x8e,0x09, + 0x6e,0xd9,0x3c,0xea,0xb0,0xac,0x32,0xc5,0x6f,0x36,0xba,0x02,0xee,0x63,0xe3,0x24,0xee,0x06,0xea,0xa4, + 0x35,0xdb,0x4f,0xa2,0x2f,0xdd,0x24,0xf3,0x61,0xa2,0x30,0xb7,0x23,0x8b,0xd6,0x42,0x8e,0xb3,0x5b,0x83, + 0x4c,0x2f,0xb7,0x39,0x9e,0xa0,0x14,0xe5,0xfe,0xe1,0xe3,0x18,0xb0,0x72,0x26,0xef,0x74,0x15,0x83,0xb0, + 0x08,0xbc,0xbf,0x09,0xc9,0x6a,0xa3,0x26,0x08,0xc1,0x90,0x43,0xac,0x60,0x5d,0x71,0x6d,0x39,0x9e,0xbb, + 0xdc,0xa1,0x14,0x4c,0x4a,0x9a,0x45,0x12,0x2e,0x96,0xeb,0xb7,0x4c,0x56,0xf3,0x65,0x59,0xf3,0x18,0xd7, + 0x73,0x92,0xae,0xb7,0xe2,0x13,0x2d,0x6b,0xbb,0x2f,0x0d,0x77,0xd2,0x95,0xf1,0x26,0x33,0xff,0xee,0x9e, + 0x61,0x99,0x65,0xe6,0xfa,0x36,0xfd,0x8f,0x18,0xac,0x64,0xa7,0x70,0x29,0xc9,0xaf,0x17,0x24,0xe5,0xaa, + 0x3a,0x1a,0x61,0xe6,0x9c,0x13,0x43,0xc2,0x21,0xd5,0x7c,0xae,0x75,0xa4,0x77,0x90,0x54,0xfa,0x04,0x40, + 0xf5,0xac,0x01,0xee,0x43,0xb3,0x5f,0x84,0x15,0xb2,0xf6,0xe9,0xb0,0x26,0xfb,0x45,0x2e,0x3a,0xb0,0x62, + 0xde,0x66,0x6c,0xd9,0x34,0xdc,0xd3,0x9c,0xe8,0xd7,0x3a,0x68,0x18,0x25,0x78,0x12,0x3f,0xcc,0x09,0x0e, + 0xcb,0xef,0xd1,0x60,0x37,0x96,0x99,0x44,0x77,0x9c,0x10,0x16,0xd3,0x99,0x82,0xe8,0x46,0xf2,0x67,0xa0, + 0x8b,0x46,0xa5,0xdf,0x19,0x66,0x56,0x6a,0x43,0x2e,0x8c,0xbf,0x83,0xf8,0x7c,0x32,0x92,0x4f,0x3a,0x94, + 0xc4,0xe7,0xbe,0x5d,0x26,0xcf,0xf7,0xbe,0xca,0x50,0x7b,0xdd,0x08,0x42,0x4d,0xc3,0x5a,0x12,0x80,0x00, + 0x04,0x69,0x68,0x43,0x87,0x56,0x90,0x31,0x77,0x8c,0x0c,0x6f,0xed,0x39,0xdb,0x2c,0xe9,0x2f,0x46,0x61, + 0xbe,0x77,0x70,0xb1,0x4c,0xb6,0x53,0xea,0xe7,0xa8,0xe7,0xf5,0xe1,0x66,0xfb,0xf6,0xed,0x5a,0x01,0xbe, + 0xd2,0xc7,0x67,0xae,0xa3,0xed,0xb2,0x11,0x10,0x4f,0x98,0xae,0xf6,0x42,0x55,0x35,0x5c,0x1c,0x74,0xa1, + 0x9d,0x29,0xe1,0xdc,0x9e,0xd7,0x9e,0x53,0x1b,0x51,0xf6,0x10,0x66,0xcf,0xc6,0x96,0x70,0x1a,0x4b,0xdd, + 0xf8,0xe0,0x22,0x0a,0xb4,0x8f,0xfa,0x96,0xf8,0x83,0xc4,0x01,0x82,0xc0,0x2a,0x0b,0x64,0x9f,0x3e,0xcd, + 0x50,0xe3,0x4b,0xf9,0x8f,0x39,0x0b,0x2c,0x98,0x30,0x9c,0x65,0xc9,0x06,0xe9,0x44,0xd6,0xd6,0x15,0x5a, + 0x39,0x71,0x94,0xb2,0xa9,0x61,0xd8,0x3a,0xfe,0x09,0x87,0x9a,0x87,0xc3,0x64,0x14,0x0b,0xef,0x3a,0x0d, + 0xb2,0x48,0xf0,0xda,0xe2,0xca,0x47,0x9f,0x7b,0x5d,0x7d,0x52,0x22,0xf0,0x48,0x1a,0xc9,0xa7,0xba,0x22, + 0x8a,0x25,0xa6,0xcb,0xae,0x10,0xfb,0xa4,0x45,0x98,0x3a,0xde,0x40,0xe3,0xca,0x88,0x1b,0x3b,0xa2,0x3b, + 0xb5,0x30,0x90,0xd4,0x54,0xb2,0x8c,0x6c,0x4e,0xab,0x2f,0xac,0x1c,0x9b,0xc8,0x83,0x0d,0x76,0xae,0x49, + 0x84,0x40,0x85,0x83,0xf8,0x18,0x62,0x6c,0x85,0x39,0x96,0x23,0xb8,0xf2,0x0e,0x46,0xd9,0xa3,0xbd,0xd1, + 0x5e,0xb8,0x1b,0xee,0x85,0xc9,0x88,0xcb,0x9c,0xa7,0xa8,0x7a,0x37,0x08,0x77,0x4d,0x38,0x55,0xf8,0xdd, + 0xd2,0xef,0x43,0x47,0xa3,0x8c,0xa5,0x40,0xcc,0x69,0x85,0xce,0xde,0xe6,0x0e,0x14,0x30,0x6b,0xca,0x61, + 0xbf,0x9b,0x5c,0x6a,0xcd,0xed,0xfb,0xc2,0x15,0x3a,0x39,0xa0,0xa0,0x0c,0x55,0x25,0xe4,0xd4,0x1e,0x62, + 0xf0,0x34,0xc1,0x24,0x35,0xf4,0x7a,0x2c,0xe1,0x78,0xf0,0xd8,0x60,0xa2,0x95,0xc4,0xc6,0x2d,0x45,0x64, + 0x63,0x6a,0xe8,0x27,0x09,0x74,0xc6,0x94,0x4d,0x1c,0x8c,0x09,0xe3,0xcc,0xa2,0x5c,0x9d,0x08,0x50,0xc3, + 0x4f,0x23,0x7b,0x1f,0x8d,0x41,0xca,0x8c,0x98,0xaa,0x59,0x30,0x71,0xa3,0x38,0x25,0xe4,0x14,0xfe,0xd4, + 0xb4,0xbe,0xb2,0x20,0x58,0xd4,0x43,0x14,0x30,0x71,0xb8,0x64,0x07,0xdb,0x70,0xf2,0xac,0xdd,0xc1,0xd9, + 0x22,0xb3,0xca,0xbd,0xef,0x92,0xd5,0x7d,0x21,0xf2,0xeb,0x90,0x79,0x94,0xc6,0xd5,0x59,0x65,0xc1,0xf8, + 0x4e,0x20,0x88,0xbd,0xa2,0xdd,0xc2,0xc9,0x1f,0x48,0xc2,0x5a,0xb7,0xe3,0x60,0x13,0x7e,0xc0,0x86,0xa4, + 0x04,0xf7,0x5a,0x65,0x6a,0xae,0x39,0x2a,0x9f,0x1d,0x43,0xc2,0x53,0x20,0x5f,0x9a,0x29,0x51,0xea,0xb1, + 0x29,0x04,0x51,0x22,0x9e,0xde,0x85,0x1c,0xca,0x82,0xca,0x3b,0x0f,0x95,0x2e,0x8b,0x8f,0x7a,0x45,0x9b, + 0xf1,0x93,0x88,0x0a,0xaa,0x27,0x49,0xdb,0x44,0x22,0x2e,0x2c,0xec,0x1a,0x75,0x85,0xc8,0xbe,0xa8,0x43, + 0x4a,0x28,0x2c,0xa7,0x5d,0x02,0x37,0x1a,0x31,0x38,0xa8,0x82,0x23,0x33,0x4b,0x63,0xab,0xd5,0xa2,0x62, + 0x6d,0x45,0x65,0xc2,0xe5,0x5f,0x33,0xf8,0xfa,0x71,0x13,0x2a,0x32,0x74,0x5c,0xf5,0x3d,0xb3,0x7d,0x8f, + 0x5b,0x7d,0x3b,0x3d,0x03,0xce,0x8d,0x2b,0xb8,0x35,0xeb,0x3e,0x55,0x6a,0x70,0xc4,0x3d,0xaf,0x89,0x0a, + 0x17,0xd3,0x91,0xcc,0xfa,0x26,0x03,0xd7,0x5e,0x69,0x46,0x98,0xcd,0x58,0xba,0xec,0x42,0xd6,0xdc,0xd5, + 0x62,0xb4,0x45,0x84,0x05,0xef,0x26,0xc4,0xde,0xbe,0x97,0xe5,0x25,0xdd,0x54,0xe9,0xa2,0xec,0xe9,0x6b, + 0xa4,0x97,0x6a,0x4f,0x3f,0x00,0x5c,0x4a,0xb3,0xbf,0x3d,0xa8,0x1c,0xb3,0x87,0xe9,0x7a,0xa5,0x7a,0x05, + 0xd0,0x05,0x3d,0xdd,0xa9,0xd4,0x70,0x03,0x4b,0x94,0x02,0x89,0x72,0x92,0x5a,0xe4,0x20,0x32,0x6d,0x20, + 0xc3,0x26,0x1e,0x1c,0x95,0x51,0x82,0xa0,0x25,0x7c,0x6e,0x58,0xfe,0x50,0x9e,0x2a,0x68,0xa0,0x0b,0x50, + 0xf2,0xc3,0x30,0x9d,0x5b,0xa2,0x01,0xae,0x90,0x45,0x44,0xbe,0x45,0x80,0x48,0x06,0xfa,0x23,0x6a,0x5b, + 0xa4,0xff,0x44,0x1b,0xc4,0xd2,0x00,0xf1,0x07,0xa6,0x01,0x3a,0xa2,0xdc,0x80,0xd9,0xfa,0xd5,0x6a,0xcc, + 0x91,0x65,0x4c,0xd4,0x96,0xd4,0xae,0x65,0x39,0x78,0x77,0x51,0x6a,0x19,0xaa,0x09,0x89,0xe7,0x2f,0x69, + 0xa7,0x79,0x5d,0x83,0x41,0xa9,0x03,0x98,0x2c,0x15,0x1d,0x60,0xc3,0x45,0xb5,0x0f,0x5d,0xe1,0xd0,0xf0, + 0xec,0x65,0xd5,0x46,0x8e,0xa7,0x29,0x36,0xe3,0x82,0xc0,0xb7,0x7c,0x09,0x0c,0xaf,0x8b,0x95,0x2c,0x84, + 0x22,0x5a,0x28,0x60,0x12,0xcc,0x9c,0xd5,0x59,0xed,0xa4,0x8a,0xa5,0x94,0x26,0x12,0x7d,0xcf,0x04,0xe8, + 0xed,0xfd,0x27,0xe6,0xfe,0x9f,0xd8,0xaf,0x8b,0xed,0xb2,0x57,0xc5,0xcd,0xd6,0xe2,0x71,0xbd,0xc3,0x8b, + 0xe5,0x1c,0x64,0x49,0x4f,0xcc,0x74,0xc4,0x52,0xad,0x16,0xd0,0x83,0x8f,0x7c,0x75,0xf3,0x0a,0x8f,0x87, + 0x2f,0x7d,0x6a,0x3c,0xda,0x38,0xcf,0x6a,0x21,0x82,0xda,0x85,0xa6,0x23,0x53,0xbc,0x43,0x51,0xcc,0xc3, + 0x11,0x80,0x0e,0x60,0xef,0xeb,0xbd,0x50,0xfe,0xde,0x93,0xbf,0xf7,0xbf,0x94,0xbf,0xf7,0xee,0xeb,0xbf, + 0x5f,0xeb,0xf4,0xaf,0x42,0x1b,0x80,0x4c,0x2a,0x3c,0xd0,0x05,0x74,0x85,0xfb,0x0f,0x42,0xa3,0x5e,0x3c, + 0x81,0xaa,0xbb,0x94,0xba,0x77,0x57,0x37,0x2f,0x7f,0xf6,0x76,0xf5,0x5f,0xdd,0xdb,0xde,0x97,0x3a,0xe1, + 0xcb,0x07,0x77,0xff,0xae,0xcb,0x7c,0x75,0xd7,0x54,0xa2,0xaf,0x7b,0xa6,0xd1,0xcb,0x85,0x67,0x1f,0xfe, + 0x1e,0x45,0x5f,0xff,0x9d,0x58,0x96,0x87,0xd1,0xde,0xdd,0xbb,0xab,0x15,0xfd,0xfc,0xf2,0x01,0xff,0xfc, + 0x7a,0x77,0xa4,0x3b,0x0f,0x29,0xf1,0xfe,0xd7,0x9c,0xf8,0xe0,0xef,0x23,0x4f,0x0c,0x21,0xbc,0xd0,0xe3, + 0x67,0x9f,0x8e,0x80,0x24,0x58,0x26,0xb9,0xeb,0x34,0x5c,0xf8,0xde,0xae,0xb7,0xe5,0x04,0x2f,0xde,0x85, + 0x0c,0x2d,0x5d,0xbc,0x8c,0x5f,0x4a,0x50,0x36,0x42,0xb8,0xa5,0xfa,0xd6,0x44,0xab,0xeb,0x7c,0x73,0xab, + 0x2f,0xbb,0x19,0xbb,0x6d,0x54,0x67,0x59,0x65,0x9e,0x3d,0xea,0xe1,0xde,0x7d,0x88,0x75,0x6e,0xdf,0xbe, + 0xf7,0x35,0xfe,0x8e,0xf0,0xd6,0xa6,0x55,0x82,0x14,0xe5,0x83,0x15,0x0c,0xbd,0x2f,0xbc,0x7e,0x69,0x02, + 0xa0,0x8b,0x7f,0xab,0x0b,0x83,0x0b,0x2b,0xae,0xcc,0xf8,0xde,0x80,0xa6,0xc2,0x81,0x90,0x7d,0x3d,0xed, + 0x29,0xcf,0x53,0x27,0xed,0xf2,0xa7,0xf1,0xe2,0xd5,0x65,0x66,0x02,0xed,0xa9,0x8f,0x51,0x17,0x81,0xfa, + 0x3c,0x2b,0x67,0x4e,0xb0,0x30,0xfc,0x1c,0x3c,0x43,0x64,0x9b,0xf4,0x3c,0x21,0xe6,0xe1,0x3c,0x2e,0xd5, + 0xf1,0x27,0x57,0x14,0x2f,0x7e,0xba,0xda,0xbb,0xe8,0x4a,0x1c,0x6b,0x3c,0x6d,0x04,0xa9,0xac,0xf9,0x34, + 0x72,0x19,0xc0,0x64,0x80,0xd3,0x16,0xc9,0x1f,0x7e,0x47,0x7c,0xf7,0x0e,0x9f,0xa3,0xab,0x75,0x68,0x22, + 0x12,0x31,0x4e,0xb8,0xb2,0x85,0x2d,0xba,0xa4,0x11,0xbd,0xd0,0xe9,0x52,0x29,0x30,0xd7,0x1d,0x02,0x2d, + 0x0e,0x4d,0x6a,0xa7,0xd3,0x9b,0x92,0xa8,0x85,0x52,0x39,0x84,0x4f,0xc2,0xc6,0x04,0xee,0x65,0x54,0x76, + 0x44,0x60,0x94,0x90,0xa6,0x68,0x94,0x7d,0x07,0xff,0xc4,0x48,0xe2,0x45,0xb2,0x58,0xc4,0x27,0xb8,0xc3, + 0x4b,0xb9,0xfb,0xf4,0xf5,0x43,0xdd,0x88,0xc7,0xa9,0x77,0xce,0x1c,0x55,0x95,0xf2,0x2b,0x4a,0x25,0xda, + 0x23,0x98,0x0c,0xf5,0x12,0x49,0xb8,0x44,0xa0,0xa9,0xec,0x07,0x4e,0x61,0xd6,0x91,0x18,0x17,0xe9,0x71, + 0x82,0xac,0xa7,0x30,0xf5,0x61,0x3d,0x49,0x66,0xda,0xa4,0x98,0x29,0x21,0xce,0xe0,0xd6,0x55,0x3c,0x0e, + 0xbd,0x84,0x22,0x0b,0xe7,0x1d,0x28,0xf2,0xbc,0x34,0x41,0xee,0xf1,0x2d,0x48,0xaf,0x9d,0x52,0x5b,0x6b, + 0x7e,0x3e,0xe5,0xb1,0xa0,0x40,0xd4,0x2c,0xab,0x77,0x6a,0x30,0x25,0xfa,0xec,0x98,0x18,0x19,0x59,0x9c, + 0x56,0xb1,0x46,0xbe,0xa9,0xb5,0x20,0xc6,0x30,0x13,0xfd,0xd3,0x19,0x1b,0x29,0xfc,0x0a,0x41,0x5c,0xab, + 0x72,0x67,0x31,0x76,0xd4,0x5b,0x87,0x80,0xe2,0x46,0x08,0x28,0x40,0x2f,0xb6,0x21,0xc0,0x6e,0x2f,0xef, + 0xe9,0x22,0x2a,0xba,0x37,0x13,0x0f,0xec,0x2f,0xcc,0xc2,0xfe,0xb7,0xed,0xa9,0x72,0x2e,0x0b,0xbd,0x6c, + 0x1f,0x33,0x7e,0xe6,0xb3,0x3f,0xf8,0x76,0x17,0xbf,0x80,0xbc,0xbe,0xb5,0x01,0xdd,0xaa,0x06,0x24,0xab, + 0xef,0x1b,0xcb,0xbc,0xde,0x5f,0x80,0x8b,0x91,0xef,0x2c,0x4c,0x0b,0x2a,0xfe,0xc2,0x74,0xc1,0x9b,0xcb, + 0x2b,0x09,0x1e,0x59,0x75,0x80,0x05,0x3d,0xa2,0xfa,0xef,0x26,0x9c,0xd6,0x8e,0x9d,0x5b,0xf0,0x2f,0x0d, + 0xc7,0xf8,0x81,0x7b,0xd6,0x0c,0x53,0x6b,0x1c,0xc1,0xc9,0xd0,0xfc,0x56,0xe5,0xda,0x88,0x06,0xcb,0xec, + 0xba,0x9e,0xb5,0xe0,0xb3,0xd5,0x46,0x07,0x94,0xd5,0x9a,0xd5,0x69,0x7e,0xa3,0x05,0x27,0xcb,0xb4,0x50, + 0x03,0x8c,0x6e,0x70,0x69,0xb6,0x52,0xcb,0x74,0x47,0x22,0x61,0xe3,0xd6,0x6b,0x75,0x69,0xbc,0xb6,0x22, + 0xb5,0xf2,0xe6,0x18,0xcf,0x60,0xe8,0x2d,0x8e,0x15,0x59,0xeb,0xed,0xca,0xf5,0x64,0xab,0xb5,0x02,0x42, + 0x71,0x99,0xb8,0xe6,0x88,0xe4,0xf5,0x12,0x86,0xe2,0xc2,0xc3,0xa1,0xa1,0x47,0xdd,0x02,0x6b,0xc5,0xaf, + 0xe1,0x0b,0x9d,0x78,0xc0,0xd4,0x9e,0x75,0x26,0xbb,0x6e,0x79,0x72,0xac,0x91,0xf6,0x3c,0x2c,0xc8,0x27, + 0x24,0x7c,0x06,0xa2,0xc8,0x5a,0x6b,0xb3,0x1c,0xf9,0x0e,0xe0,0x48,0x3c,0x0d,0x3f,0x16,0xc1,0xfe,0x8d, + 0xae,0x63,0x75,0x58,0xb8,0x48,0xfe,0xd8,0xf0,0xbb,0x44,0xcf,0x3b,0x8e,0x5c,0x45,0x00,0x5f,0x08,0x21, + 0x8d,0x68,0x1e,0x9a,0x90,0x9e,0x41,0x40,0xbd,0x44,0x06,0xcf,0x8d,0x0d,0x42,0xa7,0x0d,0x76,0x6d,0x19, + 0x8c,0x96,0x26,0xe8,0xef,0x6e,0xe8,0xde,0x5b,0xcb,0xc0,0xa6,0xb3,0x06,0x76,0x83,0x67,0x72,0xfd,0xf1, + 0xe1,0x18,0x55,0x01,0xcc,0x2b,0x92,0xc7,0x09,0x6a,0xce,0x43,0x30,0x54,0x4f,0x15,0xf7,0xfc,0xf6,0x6d, + 0x8f,0x1f,0x13,0xd7,0xeb,0x4a,0xa4,0x7f,0xfb,0x76,0x6c,0x7b,0x26,0xa6,0x74,0x42,0xad,0xfb,0xde,0xf3, + 0x69,0x4f,0x66,0xd1,0xc3,0x6a,0xf7,0xd2,0x45,0x0f,0x4e,0x66,0x7a,0x74,0x07,0xf4,0x78,0xad,0x7b,0x89, + 0x88,0x4c,0x17,0x3d,0x98,0x3f,0xf4,0x4e,0xe3,0x8b,0x44,0x2a,0x48,0x79,0x2a,0x3c,0x20,0x2e,0xa8,0x63, + 0xee,0x6d,0x9c,0x0e,0xb6,0x60,0x46,0x0c,0x20,0x9c,0x87,0x36,0x57,0xa4,0xeb,0x06,0x98,0xc1,0xf3,0xd9, + 0x92,0xfe,0x81,0x8a,0xe5,0x86,0xf6,0x84,0xb7,0x9f,0x8c,0x3c,0x98,0x4f,0x35,0x97,0x25,0xa4,0xd4,0x72, + 0x38,0x83,0xf0,0x0b,0xe2,0x4c,0xed,0xf5,0x5f,0xa5,0x2a,0x1f,0xa4,0xbe,0xc4,0x9e,0xc0,0xd1,0xd8,0x8f, + 0x5a,0x88,0x62,0x4c,0x3d,0xd1,0xe5,0xd2,0xf1,0x40,0xb2,0x1e,0xee,0x3b,0xf4,0x5c,0x0a,0xbb,0xc1,0x79, + 0x0e,0x79,0xb8,0x2b,0x27,0xaa,0xdc,0x21,0x38,0xad,0xc1,0xb5,0x9c,0x61,0x52,0xa1,0x85,0x77,0xad,0x46, + 0x1f,0x31,0x7e,0x9e,0xe7,0xaa,0xf5,0x19,0x79,0x73,0x72,0x90,0xf5,0xfb,0x2c,0x9f,0xf1,0xae,0xb4,0xff, + 0xd7,0x02,0xcf,0x0a,0xce,0xb3,0x3e,0xab,0xa7,0x78,0x5a,0x57,0xac,0xc0,0x33,0x03,0xda,0x12,0x96,0x94, + 0x3e,0xc4,0xc6,0x42,0xb7,0xe3,0xad,0x59,0x87,0x65,0x18,0xc4,0xfd,0x28,0x55,0x36,0x59,0x64,0x12,0x67, + 0x42,0x77,0xc7,0xc1,0xc8,0x63,0x67,0xa3,0xe1,0xd3,0x2a,0x01,0xc8,0x64,0x42,0x94,0xfe,0x52,0x9c,0xd2, + 0x79,0x43,0x33,0x04,0xe9,0x36,0x16,0x8f,0xd8,0xf9,0x5a,0xb4,0xe4,0xbd,0xff,0xc1,0x63,0x1d,0xd1,0x98, + 0x41,0x98,0xd3,0x8e,0x40,0xe4,0x47,0x5d,0x06,0x21,0xfe,0xb5,0x62,0xe9,0x9b,0x66,0x52,0xae,0x99,0x7d, + 0xac,0xaf,0x6a,0x54,0xd4,0x44,0xd5,0x59,0xc5,0x7c,0x2a,0x09,0x3e,0xdd,0x94,0xad,0x98,0xe9,0x30,0x4b, + 0xd1,0x9e,0x09,0xd6,0xd6,0xfc,0x60,0xdb,0x70,0x33,0x3a,0x5e,0xba,0x61,0xda,0xdc,0x94,0x9c,0x26,0x94, + 0x1e,0x19,0x86,0x2f,0xd7,0xef,0xd2,0xe0,0xac,0x64,0xfc,0xa1,0xe6,0x68,0xb5,0x17,0x08,0xad,0xf5,0xca, + 0x7c,0x9b,0x1e,0x88,0x2e,0x90,0x1d,0x30,0xa5,0x43,0x74,0xbb,0x29,0xab,0xf6,0x76,0x83,0xa3,0x5a,0x05, + 0x33,0x5a,0xf9,0x2b,0x6a,0xe1,0xb6,0xba,0xae,0x45,0x34,0x6e,0xda,0xef,0xdb,0x45,0x5d,0x73,0xb8,0xbb, + 0x35,0x6f,0xea,0x59,0xb4,0xf3,0x2f,0xff,0x70,0x12,0xf4,0x77,0xd4,0x53,0xfe,0xbc,0xc4,0xe7,0x1b,0x5a, + 0xa6,0x0f,0xd1,0x9e,0x7a,0x1c,0xdd,0x55,0xb7,0xa2,0x7b,0xea,0x15,0xfd,0xfe,0x26,0xba,0xaf,0x9e,0x45, + 0x0f,0xd4,0xeb,0xe8,0x4b,0xf5,0x3e,0xfa,0xbb,0x7a,0x1e,0x7d,0xa5,0x7e,0x02,0x43,0xff,0xd3,0xc1,0xab, + 0xa3,0xe8,0xea,0x72,0x11,0xd2,0x5f,0xc5,0x6c,0x60,0x78,0x70,0x4f,0xbd,0x39,0x52,0xde,0x81,0x17,0x1e, + 0x7c,0x73,0xa4,0xe8,0x92,0x0f,0x0f,0xde,0x1f,0xad,0xd5,0x4f,0x07,0x7b,0xba,0xe4,0x1e,0xe5,0x0e,0x28, + 0xf7,0x6e,0x67,0xa9,0xbb,0xba,0xd4,0xdd,0x7a,0x7b,0xbb,0xfa,0xaf,0x70,0x95,0xf2,0x03,0xc5,0xef,0x51, + 0xf1,0x9b,0xca,0x29,0xee,0x55,0x7d,0x30,0xfd,0xf2,0x17,0xf7,0x8c,0x2f,0xe9,0x9b,0xbe,0xd0,0xdc,0x37, + 0xd4,0x9c,0x77,0x87,0xb2,0x9e,0xa1,0xde,0x1d,0xef,0x4e,0x78,0xf0,0xba,0x9a,0x8e,0x7a,0x4c,0x5f,0x47, + 0x1e,0x1a,0xbb,0x25,0x15,0x9f,0xb3,0x3d,0x1f,0xb2,0x64,0x38,0xcf,0x4c,0x7d,0x24,0xd4,0x4a,0x3c,0xd3, + 0x25,0x5e,0x53,0x09,0x6e,0xb7,0x55,0x02,0x1d,0xc9,0xc6,0x7c,0xcb,0x36,0xcf,0x44,0xaa,0x15,0xcb,0x64, + 0xc5,0xb6,0x9c,0xab,0xed,0xd1,0xc1,0xe1,0x64,0x70,0xd4,0x5f,0xdd,0x61,0x1f,0x58,0x77,0x56,0x1e,0xbb, + 0xc5,0xf2,0x02,0x2a,0x77,0x6b,0x47,0xbd,0xdc,0x80,0xb6,0xba,0xb1,0xd6,0x4b,0x07,0x6b,0x31,0x94,0xbd, + 0xa6,0x4b,0xad,0x2d,0xa1,0x72,0x31,0x96,0x83,0xb0,0x4a,0xe8,0x67,0x74,0xc8,0xb3,0x4c,0xd8,0xbb,0x1c, + 0xa1,0x7c,0x70,0xe0,0x66,0xd1,0xf6,0x1e,0x5d,0x8d,0xaf,0x38,0xee,0xdd,0x29,0xc0,0x05,0x67,0xe6,0xf4, + 0xe0,0xc3,0x51,0xcd,0xb8,0xc3,0xdc,0x53,0x19,0xeb,0xf2,0x08,0xf4,0xc2,0x45,0xa1,0x64,0xc0,0x56,0xff, + 0xe0,0x4d,0x47,0x0d,0x48,0x6a,0x47,0x59,0x54,0x84,0x59,0x9f,0x08,0x7f,0x2a,0xf4,0xb8,0x56,0x08,0x95, + 0x88,0x32,0x9a,0x12,0xec,0x53,0xde,0xad,0x5a,0x1e,0x34,0x22,0x1f,0xed,0x06,0xd3,0xed,0x6d,0x1a,0xde, + 0x37,0x4a,0x8a,0xda,0xb7,0x48,0x8c,0x76,0x0b,0x4f,0x1f,0x7e,0x16,0xcd,0xd9,0x65,0x9e,0x15,0x8b,0x62, + 0xec,0x50,0xc7,0x1c,0x6a,0x19,0xf8,0x92,0x1d,0xc6,0xcf,0xfa,0x7d,0xf8,0x4f,0x64,0x65,0x21,0xf8,0x5c, + 0x9c,0xe1,0xc5,0x62,0xab,0xc1,0x4f,0x73,0x46,0x7f,0x8f,0xb1,0xf5,0x92,0x1a,0x7f,0x46,0xb7,0xf2,0x1d, + 0x56,0xeb,0x5a,0xad,0xf0,0xfb,0xf5,0xed,0xdb,0x04,0x16,0xf8,0x6d,0x7d,0x77,0x53,0xb3,0x84,0xad,0xa9, + 0xe1,0x7e,0xa9,0xc7,0x88,0x08,0xcb,0x7e,0xa0,0xad,0xb8,0x26,0x10,0x8b,0x81,0xce,0x59,0x44,0x3f,0x1d, + 0x2c,0x8f,0x02,0xc2,0x3b,0xab,0xd5,0x82,0x15,0x41,0x57,0xab,0xe7,0x90,0x2d,0x3f,0x37,0x5a,0x41,0xdc, + 0x27,0xec,0x58,0x94,0x9f,0x47,0xa7,0x07,0x31,0x9d,0xc1,0x23,0x79,0x87,0x8d,0x71,0xd0,0x8a,0xc8,0x2e, + 0x69,0x31,0x2a,0xc3,0x42,0xa6,0x9f,0xfb,0x76,0xea,0x66,0xd0,0xef,0xad,0x73,0x54,0x51,0x76,0xb3,0x04, + 0xa9,0x81,0x91,0x08,0xfe,0x87,0x41,0x76,0xad,0x95,0x0b,0x64,0x27,0x49,0x09,0x10,0x63,0x41,0x6e,0xe3, + 0x6e,0x84,0x8c,0xbc,0xac,0x1c,0xb4,0x56,0x8f,0x30,0xc6,0xfb,0xb6,0x81,0x4f,0x78,0xac,0xe5,0x79,0x17, + 0x0d,0x0a,0x03,0xe1,0xdd,0x30,0x74,0xe3,0x4e,0xbb,0xd6,0x92,0x63,0xed,0x53,0x99,0x9a,0x11,0x92,0xd6, + 0x2e,0xb8,0xe3,0xa1,0x71,0xbc,0x9d,0x1f,0x14,0x07,0x8b,0x23,0xe7,0xb1,0x03,0xca,0x66,0xc1,0x95,0xb8, + 0xa1,0xd2,0xb6,0x09,0x79,0x34,0x56,0x8b,0x0a,0x99,0xe6,0x72,0x5a,0x5f,0x6c,0x38,0x39,0xc3,0x8a,0xff, + 0x03,0x37,0x0e,0x6d,0x59,0xfb,0xba,0x24,0xc4,0xe3,0x6a,0xe5,0x25,0xd9,0xf6,0x2f,0x6f,0x3c,0x96,0xe7, + 0xd6,0x79,0xed,0x2a,0x8f,0x2d,0x92,0x34,0x8b,0xcb,0xe4,0xa5,0x0e,0x63,0xee,0xc8,0x80,0x24,0x1d,0x56, + 0x94,0x99,0x23,0xe2,0xe1,0xd4,0xa1,0x76,0x65,0x7d,0x2e,0x0f,0x7c,0xf2,0x6b,0xca,0xf9,0x44,0xae,0x44, + 0xac,0xc0,0x26,0xdf,0xab,0x15,0x18,0xe5,0x7d,0x5d,0xe4,0x3c,0x5d,0xc0,0x15,0x08,0xfa,0x96,0x2f,0x11, + 0x78,0x1a,0xef,0xd2,0x10,0x2a,0x24,0x2c,0x5b,0xa8,0xa5,0x83,0xab,0x8d,0x1c,0xbe,0x57,0x58,0xde,0xad, + 0x2d,0xf9,0x32,0xbd,0xeb,0x89,0xb2,0x3e,0x94,0x53,0xd8,0x4d,0x97,0x4a,0x6e,0x8a,0xe9,0xa1,0x53,0xf6, + 0x60,0x91,0x48,0xd2,0x2d,0x75,0x20,0x12,0x77,0x6b,0x43,0x96,0x6e,0xb7,0xbe,0xa0,0x78,0x79,0x07,0x61, + 0x2f,0x79,0xee,0xa2,0xd6,0x73,0xc0,0x0d,0xb0,0x7c,0xe1,0x65,0xd5,0x4c,0x5c,0xb9,0x0b,0x20,0x24,0x28, + 0xc9,0xfc,0x7e,0xd0,0x80,0x7c,0x8d,0x55,0xfc,0x2d,0xa8,0x33,0x66,0xab,0x55,0xe1,0x97,0xd2,0x60,0xed, + 0xb8,0x48,0x38,0x6d,0x63,0x94,0xfe,0x0e,0x4e,0x63,0xdf,0xbe,0xf0,0xcd,0x7b,0x67,0xa6,0xea,0x50,0x13, + 0xc2,0x7d,0xa3,0x80,0x0a,0x91,0x5d,0x0d,0x20,0x09,0x73,0x55,0x03,0x8f,0x70,0x41,0x14,0x99,0xfa,0x39, + 0xba,0xba,0x38,0x0f,0xaf,0xd6,0x55,0x45,0xfa,0x6e,0xd6,0xa4,0xa4,0x7a,0xd5,0xab,0x8a,0xc3,0x5b,0x37, + 0xc7,0x80,0xb6,0x04,0x66,0x38,0xd3,0x2c,0x1b,0x7e,0x74,0xee,0x00,0x65,0xac,0xcd,0xe5,0xf2,0xc2,0x75, + 0x3d,0x2c,0x93,0xed,0x38,0x5e,0xa7,0xc6,0x17,0xb4,0xb4,0x37,0x6c,0xfc,0x86,0xf4,0xa5,0x02,0x7b,0xda, + 0x1d,0xa2,0x21,0xb1,0x31,0x50,0x8d,0x55,0xcd,0xb2,0xe5,0x5a,0xb9,0x9d,0x76,0xb2,0xfb,0x6d,0x5f,0x08, + 0xf5,0x8d,0xae,0xd4,0xcd,0xdc,0xa6,0x36,0xc8,0x0e,0x6a,0x8d,0x35,0x0c,0x07,0x98,0xdb,0x73,0x43,0x98, + 0x64,0x8e,0xad,0x66,0xc9,0x08,0x30,0x7b,0xb4,0xbd,0x17,0xc8,0xfb,0xf4,0x18,0x72,0x4c,0x28,0x48,0xfa, + 0x1d,0x63,0x52,0xcd,0xe1,0xd4,0x64,0x5b,0x4d,0xf3,0x4a,0x91,0xfd,0xd5,0x5c,0x82,0xd3,0xe2,0x0d,0x6e, + 0x71,0x25,0xdf,0xbb,0x85,0xa6,0x6b,0x21,0x2a,0x5c,0x83,0x86,0xc6,0x62,0xb8,0xf6,0x0d,0xa7,0x9d,0x4e, + 0x91,0x9b,0x55,0x88,0x11,0x64,0x27,0xe8,0xcd,0xc4,0x56,0xe0,0x8b,0xb5,0xba,0x9a,0x24,0xc9,0x5c,0x54, + 0x93,0xdb,0xb3,0xd3,0x62,0xcc,0xfa,0x55,0xbf,0x55,0xa1,0x26,0x3a,0x68,0x15,0xfe,0x6a,0xdd,0x38,0x89, + 0x89,0x65,0x72,0x5e,0x5f,0x07,0x16,0x90,0x39,0x8b,0x21,0x80,0xef,0xac,0x06,0x7b,0xf6,0xb8,0x45,0xec, + 0x2f,0xac,0x58,0x4c,0x2e,0xfb,0xe5,0x6f,0x8c,0x5f,0x5d,0xa5,0xe7,0x44,0xaa,0xa7,0x90,0xb7,0xcb,0x14, + 0x7e,0x46,0xc3,0x74,0xde,0xdd,0x31,0x37,0x36,0x01,0x85,0xcc,0xd9,0xdc,0x50,0x34,0xd7,0x00,0x40,0xb9, + 0x5a,0xc0,0xbd,0x60,0x0f,0xe0,0x3f,0x37,0xef,0x89,0x9b,0xeb,0xd7,0x1f,0x17,0x4c,0x33,0xb5,0xc3,0x7f, + 0x73,0x23,0xee,0x43,0x83,0x69,0x42,0xd6,0xe5,0x86,0xb9,0x9a,0x47,0xf7,0xaa,0xfc,0x22,0x29,0x3b,0x4e, + 0x1f,0x76,0x03,0xeb,0x6d,0x7e,0x55,0xcb,0x9e,0x70,0x67,0x75,0x8c,0x74,0x53,0xa7,0xf5,0xd2,0x1d,0xf5, + 0x3f,0x75,0x10,0xf5,0x6a,0x66,0x30,0x1a,0x19,0x5e,0x3b,0x0a,0x5d,0xc6,0x2d,0xde,0xdd,0xa9,0xbd,0x97, + 0x79,0x98,0x06,0xb7,0x5e,0xdb,0xb6,0x2d,0x55,0xaf,0xd2,0xdd,0xbe,0x43,0x1a,0xa0,0x78,0x27,0xc2,0xbe, + 0xb6,0xb7,0xce,0x1a,0x9b,0x9b,0xea,0x1e,0x45,0xf7,0x2d,0x9f,0xd4,0x8f,0xbc,0x0b,0xee,0xd7,0x6d,0xaf, + 0x39,0x3c,0xed,0xda,0x0d,0x60,0xbf,0xae,0x91,0xc6,0x41,0x6a,0xb7,0x55,0x83,0xf9,0xeb,0x5a,0xaa,0x9d, + 0xa5,0x46,0x3b,0x50,0x2e,0xd3,0x5e,0x9d,0x6a,0xba,0x46,0xc4,0x5c,0xa5,0xb6,0x25,0x18,0x78,0x6b,0x39, + 0xbe,0x86,0x06,0x2d,0xf4,0x37,0x90,0x23,0x0f,0xf2,0x4c,0x96,0x1d,0xa0,0x72,0x7a,0x04,0xc3,0x8d,0x30, + 0x6b,0x74,0x96,0x2e,0xbe,0x75,0x29,0xb1,0x0e,0x97,0x38,0x09,0x22,0x36,0xfa,0x0e,0xca,0xd4,0x1d,0xd5, + 0x48,0xb8,0x66,0xab,0xdd,0x62,0xb0,0xd2,0xf0,0x86,0x1a,0x27,0xb7,0xb0,0xef,0x38,0xaa,0x48,0xaa,0x3a, + 0x05,0x54,0xea,0xb8,0xbb,0x75,0xb2,0x7f,0x6c,0x59,0x86,0xb1,0x18,0x0c,0xb1,0x2a,0xa6,0x89,0x48,0xbc, + 0xc5,0x0a,0x04,0x6e,0x1f,0x8e,0x76,0xaa,0x79,0x24,0x45,0xa4,0x70,0xe2,0x9a,0x6a,0xe5,0xd6,0x86,0x0d, + 0x6c,0xe9,0x89,0x8d,0x6b,0xcd,0xcd,0xa2,0xb1,0xe1,0x03,0x66,0x95,0xf5,0xf4,0x3f,0x42,0x2f,0x60,0x2f, + 0x25,0xbe,0x09,0x8c,0x05,0x87,0xe3,0x3c,0xfd,0x99,0x9e,0x3e,0xcc,0x45,0x4d,0x88,0x16,0x8e,0x50,0x30, + 0xe3,0xe4,0x70,0xd6,0x58,0x47,0x54,0x6c,0xc2,0x80,0x1b,0x52,0x3a,0xca,0x14,0x74,0x9c,0xc5,0x57,0xc1, + 0x8e,0xff,0x8f,0xf0,0xe0,0xf0,0xf2,0x70,0xfb,0xdd,0x6a,0x70,0xd4,0x0f,0x76,0x4e,0x2a,0x6d,0xf3,0x31, + 0x34,0x1f,0x16,0xe0,0x53,0x17,0x8d,0x27,0x67,0x5e,0x2b,0x51,0xf7,0x58,0x1c,0x8c,0x11,0xef,0x67,0xa6, + 0xad,0xbb,0xfd,0xbb,0xc4,0x39,0x9b,0x77,0xb1,0x6a,0x3f,0x79,0x14,0x4b,0x1a,0x85,0x57,0xc4,0x97,0x5a, + 0x88,0xa7,0x57,0x89,0x08,0xcf,0x2a,0x51,0xa8,0xf1,0x50,0xfb,0x69,0x90,0x56,0x6a,0xb0,0x06,0x8b,0x3f, + 0xe7,0x6a,0x66,0xd0,0x62,0x57,0x47,0xbd,0x6f,0xa0,0xd0,0x0e,0x91,0x9b,0x58,0x7a,0x27,0x93,0x1e,0xab, + 0xb8,0x6b,0x1f,0x86,0x93,0xa8,0xaa,0x30,0x9c,0x46,0x13,0x1d,0x36,0x85,0xc7,0x36,0x69,0x5c,0x7f,0x88, + 0x4a,0x2e,0x22,0xfa,0x49,0xf3,0x19,0x73,0xa9,0x17,0x92,0x18,0x3a,0xdf,0x4c,0xd3,0x39,0x79,0x3e,0x4a, + 0x4c,0xa1,0x68,0x34,0xca,0xad,0x49,0xf4,0x4c,0x4d,0x83,0x30,0xaf,0x58,0xbf,0xfa,0x66,0x69,0x45,0xdb, + 0xfa,0x76,0xd5,0x05,0xbf,0x15,0xe2,0xad,0xaf,0xa8,0x0d,0xc4,0x52,0x69,0x01,0x45,0xe5,0xa8,0xd0,0x16, + 0x66,0x88,0x97,0xde,0xe8,0xcb,0x4e,0xb9,0x85,0x21,0xcc,0x01,0x73,0x8f,0x93,0xdb,0x59,0xa9,0x60,0x55, + 0x6a,0xcb,0x59,0x09,0x34,0x01,0xc2,0xa8,0xf0,0xbb,0x6a,0x64,0x0a,0xf2,0x59,0x5b,0x43,0x07,0x9c,0x1f, + 0x87,0xe3,0xe6,0x98,0x5a,0x90,0x5a,0x51,0x88,0xda,0xff,0x50,0x53,0xcd,0x70,0xfb,0xfe,0x30,0xdf,0xde, + 0xee,0x3d,0xda,0x1d,0x06,0x31,0xeb,0xff,0x59,0x95,0xd4,0xbc,0x7f,0x9f,0xf9,0xf0,0x2d,0xab,0x5a,0xe3, + 0xe9,0xe7,0x97,0x54,0xa3,0x36,0xed,0x0e,0x21,0x86,0xa5,0xdf,0xc2,0x32,0xd3,0xa5,0x8d,0x46,0x57,0x41, + 0x45,0xa6,0x34,0xd7,0xd9,0x7c,0xc9,0x06,0x14,0xeb,0x05,0x57,0x2c,0x65,0x88,0xcf,0x17,0x9b,0xe1,0x75, + 0xf6,0xf9,0xf0,0xaa,0x75,0x5a,0x96,0x0e,0xc8,0xd6,0x94,0xa5,0x12,0xab,0x2c,0x15,0x3b,0xf6,0xf5,0x2d, + 0x58,0x1c,0x2b,0x78,0xd9,0x2c,0xb4,0x1f,0xe8,0xfa,0xb2,0xd7,0x71,0x76,0xe3,0xd9,0xa0,0xb5,0xde,0x7b, + 0xd0,0xff,0xe5,0xf5,0x2e,0x1b,0x2a,0xc0,0x10,0x4b,0xe9,0xe1,0x0a,0xb4,0x06,0xb4,0x84,0x7a,0xa4,0x05, + 0x5f,0x21,0x18,0x96,0x3e,0x4d,0x1d,0x94,0x26,0x1b,0x65,0xdb,0xe9,0x94,0xc6,0x5c,0xa8,0x79,0x31,0x74, + 0x60,0x33,0xa3,0x1d,0xd7,0xde,0xb6,0x72,0xf3,0xb6,0x01,0xcf,0x98,0x50,0xec,0x5d,0x9b,0x15,0xff,0xd9, + 0xcd,0x72,0xe9,0xfd,0x54,0xee,0xac,0x6b,0x76,0x86,0x4e,0x13,0x1d,0x8b,0xa2,0xc1,0x87,0x34,0x67,0x59, + 0x3d,0x36,0x8e,0xda,0x57,0x4a,0xc9,0xea,0x7d,0xce,0xea,0xda,0xe7,0x5a,0xae,0xbc,0x69,0xa9,0x21,0x11, + 0x08,0x3d,0xaf,0x79,0x06,0xc7,0x9d,0x0b,0x6c,0xad,0x8e,0xc4,0x7c,0xb7,0x05,0x16,0x0f,0x86,0x0b,0x0d, + 0x16,0xf9,0xc1,0xc2,0x05,0x8b,0x45,0xff,0x41,0xa5,0xb1,0x37,0xaa,0xa4,0x62,0x29,0x2b,0x5e,0xef,0x05, + 0x2a,0xf6,0x35,0xce,0x70,0xc0,0x65,0x2c,0x14,0x07,0xf5,0x6d,0xe1,0x21,0xa7,0x2b,0x2f,0xe5,0x01,0xcb, + 0x3d,0xdf,0x80,0xe1,0xfa,0xa8,0x5d,0xa5,0xe5,0x03,0x48,0x26,0x5b,0xe3,0xbd,0x3b,0x2c,0xf4,0x78,0xd9, + 0x3f,0x42,0x35,0xde,0xa2,0x7f,0xd7,0x82,0x71,0x6a,0xc7,0x35,0xd6,0x03,0x4b,0x3f,0x15,0x8e,0x55,0x69, + 0x47,0x6e,0x02,0xcd,0xa4,0xcd,0x95,0x6e,0xa2,0x5e,0xc7,0x54,0x5a,0x2c,0xd4,0x5a,0xa3,0xbe,0x37,0x8c, + 0xf5,0xa8,0x0b,0xd8,0x18,0x55,0xa3,0x8e,0xfb,0xf7,0xcc,0x13,0x5b,0x03,0xbb,0x15,0x41,0x85,0xd9,0xea, + 0x00,0xca,0xd2,0x24,0x3c,0xf1,0x1c,0xb5,0x98,0xfc,0xc6,0xd0,0x1a,0xd4,0xa7,0x5c,0xe1,0x37,0x2c,0x42, + 0xd9,0x68,0x92,0x72,0x6b,0xba,0x53,0x1d,0x84,0xa2,0xe5,0xfd,0x1c,0x6a,0x9b,0x10,0x1c,0xe4,0x8f,0x8d, + 0xc6,0x16,0x9b,0x1b,0x63,0x1f,0xbc,0x1d,0xad,0x34,0x25,0x34,0x6d,0x6d,0xae,0x4f,0x69,0xe4,0x74,0xb0, + 0x2c,0xd3,0xd9,0x40,0x7c,0x22,0x6e,0x1c,0x6d,0xd7,0xe4,0xeb,0x4c,0xc2,0x0d,0xb3,0x6f,0xb0,0x09,0x1b, + 0x17,0x61,0x63,0xa3,0xb5,0x09,0xb4,0x5b,0xeb,0x5c,0x8c,0x3f,0xdd,0xd8,0x86,0x45,0xe9,0x9e,0x44,0x6b, + 0x6d,0x44,0xd3,0x24,0xfd,0xc3,0xf6,0xdf,0x41,0x90,0x18,0x62,0xb5,0x84,0x47,0x6c,0x02,0x58,0x20,0x6d, + 0xa2,0xd2,0x17,0x01,0xe4,0x9d,0x30,0x36,0xe5,0x47,0x04,0x21,0x66,0x91,0x0f,0x97,0x60,0x6e,0x66,0x9b, + 0x4b,0x40,0x3a,0xac,0x0b,0xfa,0xde,0xbb,0x77,0x88,0x94,0x60,0x2e,0xd8,0xb6,0x00,0xf7,0x60,0x66,0xf1, + 0x17,0xfc,0x39,0x5d,0x5b,0x90,0xc5,0x84,0x1d,0xda,0x95,0x7e,0x0e,0xa5,0x63,0xb5,0xd4,0x7c,0x73,0x4b, + 0xc6,0xf7,0x6e,0xd2,0x42,0x05,0xcc,0x7d,0xd8,0x81,0x6f,0x68,0x56,0x14,0x16,0xa5,0x45,0xf7,0xb9,0xa3, + 0xb5,0xa6,0xd5,0x45,0xd0,0xb8,0x0a,0x37,0x4b,0x6c,0x54,0xb6,0xf9,0x6e,0x2c,0xfe,0x57,0xdc,0x8d,0xe2, + 0xa2,0xb0,0xb4,0x77,0x63,0x01,0x13,0xff,0xfa,0xba,0x4c,0x3a,0x49,0x93,0x4d,0x38,0x7d,0x6f,0x33,0x4e, + 0xdf,0x3b,0x32,0x86,0x15,0x0e,0xda,0x8a,0x5b,0x66,0x4a,0xc6,0xfe,0x61,0xd4,0xd2,0xa5,0x87,0xa1,0xf6, + 0x48,0xa2,0x3f,0xe3,0x91,0x1f,0x86,0x45,0x1c,0xb5,0x04,0xde,0x21,0xb8,0x35,0xbe,0xce,0x9c,0xdf,0x88, + 0x4b,0x4a,0x3f,0x38,0xea,0xaa,0x2f,0x15,0x39,0xe0,0xaa,0x98,0x2f,0x65,0xd7,0x98,0x2f,0x65,0x62,0xbe, + 0x24,0x75,0x02,0xd5,0x91,0xbf,0x77,0xa4,0x7b,0x63,0xab,0x25,0x0d,0x8f,0x08,0x6e,0xcf,0x91,0x4b,0x1b, + 0x88,0xc7,0x95,0x28,0xdc,0x80,0x76,0x6a,0x32,0x85,0x8d,0x48,0x67,0x43,0x83,0x35,0x2c,0xd1,0x6c,0xa9, + 0x13,0xe1,0xfc,0xa9,0x86,0x36,0x20,0x9b,0xae,0xa1,0x6f,0x46,0x35,0xd2,0xf3,0xff,0xaf,0x88,0xa6,0xf9, + 0x1a,0xb4,0x01,0xcd,0x74,0x14,0xab,0x90,0x8c,0xbb,0x80,0x37,0xa2,0x98,0xec,0x13,0x51,0x4c,0xad,0xd1, + 0x1b,0x11,0x8c,0x94,0xbe,0x19,0xbd,0x34,0x64,0xb9,0xff,0xe5,0xc8,0x25,0xbb,0x19,0xb9,0x74,0xbb,0x56, + 0xfa,0xbf,0xc8,0xa5,0x03,0xb9,0x64,0x16,0xb9,0x68,0x4d,0x10,0x31,0x14,0xd0,0x22,0xa0,0x94,0x08,0x3e, + 0x67,0x61,0xd5,0xcf,0x01,0xad,0x73,0x7c,0x11,0xa7,0xb3,0xf8,0x38,0x9d,0xa5,0xc8,0x8f,0xae,0xea,0xf7, + 0x65,0xf8,0xb1,0xf6,0x12,0x18,0x1e,0x63,0x6b,0x58,0xa3,0x77,0x36,0x73,0xe3,0xf6,0xc2,0x17,0xc3,0x69, + 0x44,0x50,0x78,0x41,0xb0,0x4f,0x49,0xb7,0x6f,0x6b,0x80,0x3b,0x35,0x29,0xc6,0xc4,0x72,0xe0,0x05,0x3c, + 0xa3,0xc4,0x34,0x23,0x21,0x99,0xba,0xc6,0xfb,0x91,0x6a,0x57,0xa3,0xf5,0x6e,0x89,0xfe,0xea,0x15,0x41, + 0x69,0xb8,0x49,0xe0,0x8a,0x22,0x70,0x62,0x93,0x45,0xa7,0x1b,0x9a,0xcc,0x6a,0x4d,0x96,0xed,0xf6,0xda, + 0xef,0x63,0xee,0xcb,0xcf,0xff,0x0a,0xf0,0x4b,0xb4,0xde,0xaa,0x6e,0x3e,0xad,0xf8,0x29,0x62,0x5b,0x88, + 0x0b,0xb5,0x66,0x5f,0x4d,0x5a,0x3d,0x71,0x79,0x95,0xf5,0xba,0xb2,0x8a,0xb8,0x7e,0x8e,0xe3,0xcf,0x9b, + 0x64,0x8b,0xc1,0x49,0xbb,0xd8,0xb2,0xd4,0x32,0x38,0xa9,0x3b,0xcd,0x14,0x6c,0x99,0x70,0xf9,0x8d,0x69, + 0xc6,0x0e,0x7b,0x16,0x63,0x9e,0xd6,0x3a,0x2d,0x6e,0xcd,0x53,0x65,0x76,0xa6,0xc5,0xe7,0xcc,0x34,0xf9, + 0xfc,0x99,0x6a,0x7f,0x89,0xf5,0xb1,0x16,0xcc,0x3c,0x95,0xca,0xea,0xfd,0x16,0x2d,0xde,0xf1,0xd3,0x47, + 0x35,0xf9,0xef,0x85,0x31,0xcb,0x13,0x27,0xc6,0x66,0x6f,0xe2,0x40,0x57,0x07,0xb7,0xfb,0xa9,0xf3,0xe8, + 0x38,0x7b,0xff,0xbd,0xf3,0xc8,0x6e,0x9e,0x07,0x6c,0xae,0x3f,0xa4,0x99,0xff,0x0e,0x9f,0xd6,0xf8,0xcf, + 0xf7,0x70,0xce,0x39,0x42,0xc3,0x58,0x47,0x75,0x67,0xc7,0x61,0xa7,0x55,0xfc,0x31,0xff,0x52,0xdc,0x2c, + 0x5e,0x6a,0xad,0x1d,0x1a,0xaf,0x55,0x1d,0x10,0xa3,0xa8,0x17,0x20,0x85,0xde,0x94,0x05,0x55,0x3e,0x21, + 0x4c,0x39,0x2c,0xc4,0x3e,0xaa,0x18,0xe8,0x68,0xe2,0xc0,0x8c,0x1a,0xd7,0x45,0xde,0xdf,0x07,0xf7,0x06, + 0xf7,0x3c,0xd5,0x65,0xaa,0x25,0x91,0x9e,0x6f,0xdf,0xd6,0x11,0x9f,0xdf,0x22,0x06,0x4d,0xf5,0x3d,0x58, + 0x2e,0x12,0xff,0x05,0x21,0x66,0xad,0x3e,0x64,0xad,0x5d,0xae,0x92,0x2c,0xbc,0xe2,0xa8,0x9a,0xa1,0xf7, + 0xa6,0x8c,0xd3,0x62,0xe1,0xa9,0xc5,0xc7,0x45,0x99,0x9c,0x3f,0x7f,0x46,0x29,0xfc,0xd5,0x7b,0xfe,0xcc, + 0x53,0xd3,0xb4,0x38,0xbf,0x8c,0x8b,0xe4,0xad,0x8c,0x25,0xf4,0xbe,0xd5,0x09,0x3d,0x3d,0xba,0xb0,0xe7, + 0xa9,0x71,0x3e,0xff,0x28,0x91,0x33,0xbc,0xa7,0xe6,0xb3,0xf7,0x3f,0xff,0x9f,0xde,0xdd,0xdd,0xbd,0xbf, + 0xf7,0x5e,0xc4,0xc5,0x59,0xef,0x22,0xce,0x7a,0x3f,0x27,0xd9,0xe2,0x32,0x5f,0x4e,0xe8,0x58,0xcd,0xf2, + 0x18,0x1e,0xb7,0x42,0xef,0xf5,0x2c,0x81,0xe1,0x20,0x47,0x33,0xe8,0xe9,0xd4,0x9e,0x2c,0x94,0x0e,0xf9, + 0x3e,0x18,0x0c,0x3c,0x55,0x24,0xc7,0x74,0xbd,0xbf,0x4e,0x32,0xa9,0xb5,0x7f,0x9a,0xf4,0x64,0xb4,0x34, + 0xff,0xd9,0xac,0x77,0x9c,0xf4,0xa4,0x44,0x32,0x51,0xbd,0xb9,0x34,0x59,0x24,0xd3,0x22,0x59,0x9c,0x32, + 0x26,0xef,0xcd,0x69,0xd2,0xbd,0x78,0x4a,0xa4,0x14,0x0d,0x7d,0x42,0x73,0xe5,0xad,0x7f,0xc2,0x51,0x3c, + 0x42,0xef,0x31,0x7e,0xd4,0xd2,0xde,0xc4,0x17,0xdc,0x91,0xfc,0xe5,0x21,0x4c,0x92,0x8b,0x74,0xcc,0x77, + 0x19,0xf5,0x8f,0x7f,0x69,0xde,0x97,0xe9,0x34,0xa5,0xd5,0x2b,0x97,0x8b,0xf0,0x2a,0x1e,0xc3,0x0b,0xe6, + 0x3c,0x4f,0xb3,0xd2,0xae,0xec,0xe3,0xd7,0x28,0x35,0x49,0x17,0xf1,0x31,0x5d,0x4c,0xa1,0xf7,0x4c,0x7f, + 0x11,0x49,0xc2,0x2e,0x35,0xf2,0x0c,0x21,0xf0,0x6c,0xf1,0x5f,0xd3,0x6f,0xd3,0x0d,0x15,0x54,0x8a,0x68, + 0x26,0xde,0xf3,0x09,0x5e,0x86,0xb3,0xfc,0xcd,0x1b,0xde,0x26,0xfa,0xb7,0x07,0xfb,0xd3,0x69,0x4e,0x90, + 0x41,0x1b,0x38,0x8e,0x33,0x44,0xa9,0x80,0x3d,0x07,0x55,0x7e,0x43,0x3f,0x7b,0x63,0xf3,0x1b,0xbb,0x94, + 0x65,0x04,0xc1,0xdf,0xd2,0x0d,0x8d,0x6c,0xf9,0xdb,0x2b,0xf3,0x9e,0xce,0xb0,0x25,0x68,0x5c,0x3f,0xe5, + 0x0b,0xde,0x4c,0xf3,0x9b,0xf6,0x66,0x51,0xf2,0xc8,0x74,0x19,0x3d,0x3a,0xfb,0x0b,0x01,0x40,0x16,0x7a, + 0x29,0xca,0xf8,0x78,0xdf,0x82,0x16,0xa5,0x78,0x4a,0x4f,0xf0,0xa9,0x44,0x91,0xe9,0x2d,0x74,0x32,0xdd, + 0xd7,0x6f,0xca,0x64,0xbe,0xd8,0x2f,0x96,0x28,0x9c,0x94,0x3d,0xbc,0x1f,0x20,0x94,0xfd,0x47,0x9a,0x53, + 0xc1,0xc6,0x03,0x0b,0x14,0xa8,0x8a,0x7e,0x0b,0x8d,0xd6,0x66,0x59,0xf8,0x6f,0xbb,0x48,0x27,0x4b,0x44, + 0xaa,0xa0,0xb5,0x25,0xe2,0x06,0x11,0x2a,0x6a,0x23,0xd9,0xd7,0x69,0x18,0xcb,0x79,0x62,0x12,0xe9,0x53, + 0x12,0x9e,0xe3,0xdd,0x22,0x23,0x74,0x64,0x20,0x92,0x96,0x15,0x36,0x31,0x71,0xd9,0x43,0x76,0xcf,0x34, + 0xd9,0xd3,0x76,0x2a,0xbd,0x38,0xe3,0xfe,0x51,0xa7,0x57,0x2d,0xdb,0x40,0x5a,0x7b,0x99,0x73,0xd8,0x63, + 0xef,0x65,0xde,0xa8,0xad,0x8f,0x6f,0xef,0x63,0x52,0x4a,0xc9,0x6f,0x32,0xbd,0xd3,0xf2,0x51,0x2f,0xae, + 0xc7,0x0a,0xc1,0x36,0xfb,0xd7,0xd2,0xc0,0x67,0x7f,0x4b,0xe9,0x34,0xeb,0x9d,0xd3,0x21,0x48,0x17,0x09, + 0x8d,0x63,0xa2,0x2b,0x3d,0x9e,0x50,0x9b,0xf4,0x8f,0xfc,0x7a,0x26,0x41,0x86,0x3c,0xf9,0x6b,0x9a,0xe5, + 0x4e,0x1a,0x03,0xd0,0x15,0xbe,0x4d,0x3f,0x24,0x13,0xe9,0x8e,0x3f,0xb9,0x27,0xc9,0x7a,0xb3,0xcc,0x8a, + 0x94,0xb7,0x40,0x3e,0x6c,0xea,0x02,0xab,0x27,0x7f,0xcd,0x22,0x9b,0xb3,0x22,0x63,0xcc,0x96,0x65,0xa2, + 0x87,0xf7,0x82,0x46,0x1a,0x7f,0x0c,0x3d,0xf9,0xab,0x8b,0x2f,0x93,0x05,0x27,0xea,0x0f,0x49,0xfd,0x35, + 0x99,0x64,0x3a,0xdd,0x7e,0xea,0xf2,0xa7,0xcb,0x42,0x57,0xd0,0x5f,0x7a,0xec,0x45,0xca,0xa9,0xf2,0x57, + 0x0f,0x8f,0xe0,0xad,0xe0,0x54,0xf3,0x65,0x87,0x2d,0xa9,0x4b,0x19,0xc7,0x79,0x2e,0xeb,0xcc,0xd0,0xf1, + 0x82,0x7f,0x98,0x44,0x67,0x4f,0x25,0x61,0xc3,0xae,0x4a,0x66,0x73,0x5f,0x1b,0x55,0x1a,0xc5,0x9e,0x2d, + 0x41,0x8e,0xef,0x57,0xbb,0x42,0x7b,0x87,0xab,0x86,0x2e,0x87,0x1e,0x02,0x0e,0xf5,0xd2,0x69,0x2f,0xae, + 0xc1,0x06,0xec,0x6b,0xe2,0x59,0x91,0xc4,0x93,0x8f,0xbd,0x58,0x4c,0xd2,0xcd,0xe0,0x3f,0x17,0x5c,0x4c, + 0xb5,0x0d,0xe0,0x20,0xd9,0x15,0x3c,0xc9,0xef,0x26,0x44,0x49,0xea,0xeb,0x94,0xb0,0xe9,0x77,0xaf,0x9f, + 0xbf,0xea,0xcd,0xa9,0x1b,0x5f,0x06,0xd6,0x3b,0xa5,0xeb,0x20,0xb0,0x15,0xe5,0x16,0x05,0xda,0x7d,0x73, + 0x99,0x24,0x73,0x3a,0x48,0xe9,0x79,0xec,0x2e,0xb4,0x2d,0xf1,0xd2,0xf9,0x8e,0x67,0x58,0xf9,0x2c,0xa1, + 0x46,0x0d,0x4e,0xe8,0xe1,0x6c,0xe2,0x22,0x88,0xcf,0xe5,0xdc,0xb4,0xfb,0xd8,0xcf,0xe7,0xcf,0x10,0x67, + 0xcb,0xa3,0x8f,0x1e,0x22,0x6e,0xb5,0x4a,0x3c,0xc9,0x09,0xdd,0x9f,0xff,0x32,0x0f,0x3d,0xf9,0xea,0x2d, + 0xe7,0xde,0xda,0xc1,0x83,0x2e,0x0a,0xa9,0xb0,0x61,0x85,0xd0,0x2a,0x04,0xc9,0xaf,0x80,0x49,0xc9,0x9b, + 0xeb,0xde,0x05,0x06,0x02,0x24,0xad,0xc7,0x89,0xb5,0x12,0xdf,0x73,0xa9,0xc7,0xb3,0x59,0x7e,0xb9,0x10, + 0xac,0xa7,0xfd,0x0c,0x38,0x78,0xa5,0x37,0x2d,0x68,0x6c,0x1f,0xf3,0x65,0xd1,0x93,0x7b,0x08,0x68,0x9b, + 0x6f,0x36,0xb9,0xbc,0xb5,0x97,0x24,0xae,0x5e,0xbb,0x3d,0x7b,0xf3,0x65,0x31,0xcf,0x17,0xc9,0x62,0xd0, + 0xc3,0xa5,0xa9,0x4b,0xd7,0x8b,0x00,0x94,0x84,0x6d,0xa3,0x16,0xe8,0xf7,0x69,0x59,0xce,0xc3,0x9d,0x9d, + 0xbd,0xaf,0xef,0x0e,0xf6,0xbe,0xfc,0x6a,0xb0,0x37,0xb8,0xbf,0xd3,0xbb,0x3c,0x25,0x28,0xa4,0xfe,0x7b, + 0xb8,0xf9,0x2d,0xd2,0xc7,0x28,0xd2,0x92,0x9a,0x66,0xc6,0xa3,0xec,0xe5,0x53,0x82,0xd3,0x45,0x6f,0x91, + 0xc3,0x71,0xce,0xa2,0xa7,0xef,0x38,0x0c,0x2e,0x41,0x2f,0xa6,0x5b,0xdc,0xd2,0x94,0x4d,0x15,0x28,0x91, + 0xfd,0x27,0x24,0x63,0xa4,0xb2,0x03,0x98,0xec,0x23,0x51,0x03,0x1f,0x07,0xbd,0xdf,0xa8,0x33,0x5c,0x60, + 0xf1,0x8c,0x7e,0x2e,0x7a,0x96,0x2b,0xeb,0x09,0xfd,0xd4,0x83,0xe0,0x00,0xa3,0x3d,0xfe,0xd8,0x83,0x02, + 0x25,0xe8,0x06,0x40,0x83,0xbb,0xcc,0x3d,0x1d,0xa6,0x6b,0x99,0x95,0xe9,0x8c,0x73,0x7f,0xfa,0xe6,0x59, + 0x6f,0x06,0xea,0x64,0x41,0x1b,0x4d,0xc8,0xda,0xbd,0x85,0xcd,0x46,0xb9,0xa3,0xae,0x95,0x90,0x8d,0xd2, + 0x5b,0xde,0xb5,0xfa,0xb4,0x1a,0xbc,0x45,0x04,0x68,0x3d,0xdc,0xe5,0xbd,0x82,0xbd,0x88,0x0d,0x7a,0xfa, + 0x4e,0xe1,0xe0,0x70,0x3c,0x0e,0xdc,0xdc,0x44,0xa9,0xc4,0x0b,0x22,0x88,0x8a,0x09,0x4d,0x7a,0x42,0xa4, + 0x6e,0x41,0x39,0xcd,0xed,0x3b,0x4e,0x08,0x2c,0x30,0xd0,0x45,0x3a,0x91,0x0b,0xdf,0x53,0xa6,0x1a,0xdd, + 0x55,0xfa,0x8b,0x2e,0xe6,0xd3,0x31,0xc1,0xf0,0x2f,0xd4,0xc9,0xb3,0xef,0x9f,0xbe,0x96,0xdf,0x1a,0xb0, + 0x96,0x04,0xd6,0x70,0xdf,0x85,0xcb,0x91,0x96,0x7d,0x91,0x9e,0x64,0x0b,0x5c,0x5f,0xcf,0x5f,0xf7,0x74, + 0x9c,0xf9,0x6e,0x60,0x92,0x2d,0x20,0x92,0xfd,0x98,0x96,0x05,0x9b,0x42,0x0b,0x4a,0x05,0xcf,0x70,0x68, + 0x65,0x23,0xb0,0xb2,0x33,0xd4,0x07,0x60,0xc0,0xcc,0x89,0xc0,0x84,0x0e,0x25,0xfd,0xba,0x43,0x50,0x32, + 0xc9,0x41,0x3a,0x11,0xe5,0x32,0xd7,0xdd,0x10,0xf9,0x62,0xbb,0xa4,0x19,0x2d,0x8f,0xe9,0xee,0x3c,0x8f, + 0x17,0x67,0x40,0xbf,0xf8,0xee,0xe1,0x87,0xa7,0x4e,0x08,0xeb,0x5d,0x02,0x29,0x7f,0x27,0x1f,0x9e,0x3a, + 0x25,0xda,0x43,0x6c,0x4e,0xbf,0xd7,0x5f,0x55,0xda,0xeb,0xca,0x47,0x32,0xb0,0x91,0x98,0x99,0x52,0x4b, + 0x63,0xdb,0xd3,0x5a,0x13,0xb6,0x35,0xba,0x84,0x53,0x88,0x92,0x2a,0xe7,0x0e,0x29,0xd0,0x83,0x9a,0xe7, + 0x69,0x91,0x67,0x44,0x75,0xf1,0xea,0xfb,0x2f,0xf7,0x5f,0x13,0x56,0x21,0x64,0xb6,0xd0,0xc5,0xbe,0x27, + 0xf2,0x91,0xa9,0x5f,0x4a,0xcb,0x11,0x6c,0xf3,0x3c,0x9e,0x9b,0xbc,0xef,0xf2,0xfc,0x84,0xa0,0xe0,0x05, + 0xa5,0xf4,0x1e,0xbf,0x7e,0x5e,0xd1,0xce,0x3a,0xdf,0x52,0xce,0xc2,0x33,0x10,0xb9,0x15,0xcf,0xd2,0xe3, + 0x82,0x25,0x24,0x82,0x4d,0xcc,0x6f,0x27,0xcb,0xd0,0xa8,0x36,0xcf,0x10,0x44,0xb6,0x84,0x6c,0xf3,0x2f, + 0x6c,0xda,0x9d,0x18,0x90,0x67,0xb8,0xd1,0xb4,0x9d,0x9c,0x39,0xce,0x15,0xe9,0x0b,0x9d,0x53,0x69,0x45, + 0x31,0xe4,0x51,0xa9,0x78,0xf2,0x1e,0x46,0x99,0xdc,0x00,0x53,0xef,0x19,0xb6,0x15,0xce,0x64,0xe2,0xf1, + 0xa9,0x43,0x5e,0x71,0x35,0x5e,0xb6,0x37,0xf0,0xc4,0x4b,0x4b,0x4e,0x2b,0xd4,0x63,0xaf,0xbc,0x05,0x27, + 0x33,0x1d,0x75,0x01,0x6c,0xfd,0xb3,0xa6,0xbf,0x53,0x9d,0xd2,0xf3,0x2b,0x22,0x20,0xe0,0xb2,0x3f,0xc5, + 0x34,0x6e,0xfa,0x27,0x2d,0x99,0x27,0x40,0x0a,0x68,0xee,0x9f,0xf2,0xec,0xc4,0x49,0x22,0x8e,0x59,0xae, + 0x8b,0xef,0x08,0x42,0x66,0xba,0x74,0x6f,0x87,0x08,0x52,0x5d,0x4c,0x70,0xe3,0x4c,0x97,0xab,0x55,0x7a, + 0x93,0xc4,0xc5,0xf8,0x14,0xd4,0x22,0xfe,0xf2,0x46,0x12,0x06,0x20,0xaa,0x9c,0xae,0x57,0x46,0x13,0xaf, + 0x19,0x4d,0x08,0x39,0xca,0xc8,0x81,0xef,0xad,0x3e,0x71,0x5b,0x17,0x81,0x29,0xfe,0x66,0xff,0xb1,0x10, + 0xb2,0x80,0x88,0x17,0x40,0x65,0xd7,0x94,0x7f,0xfc,0xda,0x6c,0x98,0xc6,0x26,0xb5,0x8e,0xf4,0xe6,0xb8, + 0x97,0x23,0x6d,0x93,0xd4,0x7c,0xfd,0xeb,0x8b,0x67,0x05,0xa5,0x14,0x6f,0x9e,0x51,0x7f,0xaf,0x9f,0x3e, + 0xfe,0xfa,0xcb,0xaf,0x1e,0xf4,0x28,0xb5,0x37,0xe1,0xe4,0x1e,0xa5,0x4b,0x4d,0x28,0x3a,0x37,0xeb,0x3c, + 0xfd,0xa9,0xbb,0xce,0xd3,0x9f,0xa4,0xce,0x18,0x5e,0x59,0x51,0xe9,0xf2,0xfc,0xb1,0x39,0x8d,0x1d,0xe5, + 0x9f,0xff,0xcf,0xff,0xf7,0x69,0x75,0x44,0xa9,0xf0,0xb7,0xa0,0x77,0x93,0x6c,0xfc,0xb1,0xb3,0xf8,0xd4, + 0xe4,0xca,0x39,0x20,0xa0,0xff,0x31,0xf9,0xd8,0x3a,0x08,0x84,0x32,0x6a,0x05,0x4e,0x19,0x60,0x7f,0x4e, + 0xc4,0x23,0xe1,0x04,0x78,0x7f,0xda,0x5b,0x2e,0x18,0x83,0xbb,0xe4,0xef,0xa0,0x47,0x40,0x3d,0xe1,0x3b, + 0x6d,0x96,0xe7,0x67,0xc8,0x5f,0xce,0x19,0x46,0x75,0x34,0x4a,0x2e,0xfe,0x07,0x51,0x05,0x03,0x42,0xb7, + 0x44,0x16,0x10,0x2a,0x3c,0xeb,0x21,0x3c,0x1e,0x9d,0x4c,0x60,0x38,0xdd,0xb7,0xc2,0xba,0xf7,0xf4,0xa0, + 0xce,0x99,0x37,0x85,0x64,0xb9,0xa4,0x33,0x27,0xf8,0x9a,0x67,0xb1,0xa0,0x7b,0xec,0x67,0xe2,0xc5,0x17, + 0xc0,0xd1,0x72,0x0d,0xd3,0xf4,0x12,0xd3,0x08,0xa8,0x0d,0x7d,0x31,0x1a,0x67,0x7e,0x74,0x13,0xd3,0x29, + 0x9b,0x63,0xa4,0x27,0xdc,0x38,0xf8,0xff,0x1d,0x3e,0x52,0xb1,0xa1,0xde,0xd2,0xf2,0x0e,0x5d,0x35,0x0b, + 0xb9,0x99,0x31,0x74,0xb3,0x28,0x03,0xc2,0x4b,0x2c,0xc7,0x0e,0xaf,0xc0,0xf6,0x6a,0x2e,0x92,0x6e,0x97, + 0xe5,0x6c,0xc2,0x77,0x22,0x52,0x0d,0x93,0x6b,0xf8,0x25,0xa4,0x55,0x24,0x47,0xab,0xb4,0x43,0x2f,0x10, + 0x11,0x5e,0xc2,0xa5,0xb5,0xd4,0x11,0x74,0xb7,0xb1,0xf5,0x5a,0x59,0x87,0x0a,0x6d,0x8f,0xa7,0x46,0x82, + 0xd6,0xeb,0xbd,0x70,0xc9,0xc8,0x76,0xcd,0x3a,0x01,0xec,0xd4,0x65,0xae,0xbb,0x7b,0x52,0x0b,0xd8,0x88, + 0x77,0x4e,0x8a,0x2b,0xb5,0x67,0xc5,0x15,0x5a,0xb3,0x12,0x74,0x8b,0x0b,0xb9,0xbd,0xca,0x45,0x42,0x23, + 0xa2,0x7d,0x94,0xfb,0xda,0xac,0xf3,0x72,0x8e,0x31,0x1b,0x7c,0x4d,0x67,0x19,0x1b,0xd5,0xe3,0x48,0x8a, + 0x3d,0xc9,0x03,0x30,0x1a,0xf4,0x6e,0x7a,0x60,0xfe,0xd4,0x6d,0x9c,0x47,0xc9,0x4f,0x2c,0x40,0x9b,0xe2, + 0x1d,0x0a,0x37,0x1f,0x63,0xa3,0x0a,0xb1,0xb9,0x2b,0x95,0x9f,0x01,0xc6,0x0d,0x32,0xa3,0xc9,0xd3,0xed, + 0x9e,0x66,0x31,0x33,0x4e,0xdc,0xdc,0xa6,0xed,0xe1,0xa9,0x6f,0xd8,0x1e,0xae,0xb8,0x79,0x7f,0xb8,0xea, + 0xc6,0xfd,0x11,0xe8,0x6c,0xcc,0x4c,0xc0,0x4d,0xdf,0x40,0xf5,0xad,0x91,0xb5,0x78,0x5a,0xe5,0xb5,0x77, + 0xb4,0xb3,0x1e,0x42,0x0b,0x96,0xbc,0xd0,0x35,0xf9,0x4e,0x91,0xb0,0xc3,0x4f,0x61,0xc5,0x53,0xf8,0x0d, + 0x58,0xd0,0xe5,0x46,0xc4,0x28,0x97,0xef,0x55,0xaf,0x42,0xb3,0x8f,0x42,0xe2,0x22,0xb6,0x00,0x91,0x7f, + 0x97,0x34,0x09,0x5a,0x49,0x8d,0xaa,0x53,0x1a,0xbd,0xf4,0xf0,0x33,0x51,0x62,0x20,0xeb,0x77,0xc1,0x4f, + 0x14,0xe7,0x7c,0xa5,0xc5,0x45,0x49,0x64,0xbf,0xda,0xa3,0x5b,0x34,0xa3,0x42,0x73,0x3a,0xdf,0x84,0xde, + 0x94,0xee,0x82,0x08,0xcc,0x53,0x73,0xeb,0xb3,0x11,0xc7,0x24,0x3f,0xf1,0xd4,0x5d,0x14,0x3e,0xa5,0xb3, + 0x0e,0x19,0x4a,0xf2,0x61,0x9c,0xcc,0xe5,0xf6,0xb9,0xb7,0xb1,0x91,0x45,0x3e,0x2d,0x1b,0x8d,0xdc,0xb7, + 0xa2,0x36,0x2a,0x85,0x61,0x18,0x54,0x04,0xc6,0xeb,0x01,0x71,0xbc,0xf1,0x19,0x00,0x4e,0x6e,0x38,0xd8, + 0xae,0xf4,0x16,0xb3,0x04,0x17,0xf0,0x97,0x6e,0x45,0xe2,0x3a,0x59,0xf6,0x32,0x3e,0x23,0x5e,0x0f,0xce, + 0x0a,0x1e,0xf7,0xf8,0x17,0x6d,0x26,0xdc,0x2b,0xb8,0xe4,0xbd,0x25,0x45,0x17,0x84,0x78,0xb1,0x9c,0x86, + 0x64,0xcd,0x08,0x26,0xa9,0xdf,0x9e,0xc5,0x69,0x40,0x63,0x3b,0x39,0xd8,0x0d,0xf6,0x0e,0x42,0x45,0x79, + 0x10,0x2e,0x99,0x58,0x71,0x22,0x45,0x72,0x9e,0x5f,0x88,0x0b,0x11,0x23,0x62,0x14,0xe2,0x5a,0x0f,0x09, + 0x4c,0x18,0x40,0x86,0x28,0x34,0xfd,0x55,0xcb,0xd5,0xbc,0xe4,0xcf,0xdc,0x0a,0xd8,0x2f,0x07,0x78,0x8c, + 0x6c,0xcc,0x01,0x28,0x42,0xf1,0x7f,0xc4,0x20,0x7a,0xc1,0x02,0x98,0xeb,0xf6,0x09,0x7d,0x43,0x80,0xb5, + 0xc4,0xdd,0xf2,0xb2,0x4e,0xe6,0x10,0x4d,0x90,0x7c,0x28,0x4d,0xc9,0x97,0xec,0x0a,0xa0,0x26,0x00,0x34, + 0x42,0xb3,0x4a,0xcc,0xc4,0xca,0xe3,0x44,0xb0,0x6e,0x12,0x47,0x71,0xe4,0x75,0x02,0xaa,0x17,0x74,0xb9, + 0xee,0x10,0xb9,0xf9,0x41,0x9f,0xee,0x1e,0x96,0x4e,0x88,0x24,0xc2,0xfa,0x4f,0x97,0x44,0x18,0x09,0x6d, + 0x36,0xcb,0x4f,0xe2,0x82,0xae,0xa6,0xf3,0x74,0x8c,0xeb,0xeb,0x42,0x6e,0x84,0x4a,0x84,0xe5,0x17,0xce, + 0x7d,0x88,0x2c,0xa2,0x2e,0x16,0x1c,0x56,0x37,0x9b,0xd9,0x45,0xa0,0xe5,0x9a,0xb7,0xe4,0xb4,0x9f,0x26, + 0xa8,0x4d,0xfe,0x9a,0x9c,0xf6,0x1b,0x3a,0x71,0xf9,0x49,0x92,0x1d,0xcf,0xd2,0xb3,0xde,0x49,0x42,0xfc, + 0x01,0xf1,0x70,0xc7,0xc9,0x1f,0xe9,0x09,0x6d,0x38,0xe8,0xb2,0x09,0x15,0xb8,0x60,0x79,0xa3,0x65,0x5f, + 0x92,0x2e,0xd1,0xed,0xf7,0x54,0x7a,0xa1,0x87,0x0d,0xd6,0x85,0x98,0xc6,0x79,0x96,0x26,0xcb,0x4b,0xfa, + 0x7b,0x22,0x87,0x40,0x61,0xc4,0x18,0x34,0xf1,0x10,0xc9,0x1f,0x09,0x84,0xb7,0x84,0x02,0x7b,0x19,0x0d, + 0x25,0xc9,0x1a,0x3b,0xb7,0x9f,0x27,0x60,0x87,0x1a,0xe9,0x46,0x7c,0xfb,0xc4,0x0e,0x30,0x9f,0x2f,0x66, + 0x71,0x9c,0x75,0x48,0x72,0xdf,0x4f,0xfe,0x8c,0x24,0xf7,0x97,0xb4,0xa4,0xd1,0x8e,0x4f,0xe9,0x80,0xce, + 0x3e,0x5d,0x9c,0x5b,0xaf,0xa5,0x65,0xba,0x6f,0x68,0x60,0x73,0x38,0x35,0x9a,0x34,0x25,0xbb,0x29,0x0d, + 0xfc,0x24,0xb9,0xc8,0x09,0x26,0xb2,0x6e,0xe9,0x6e,0x3c,0x25,0x64,0x9d,0x67,0x6d,0xe1,0xee,0x8f,0x94, + 0x79,0x02,0x34,0x49,0xeb,0xa8,0xa3,0x9b,0x10,0x94,0x9e,0xa1,0x9d,0xa6,0x90,0xf7,0x6d,0x55,0x82,0x0a, + 0xcf,0xf2,0x02,0x85,0xea,0x82,0xde,0x97,0x18,0x09,0x5a,0x92,0xa1,0x7c,0x8a,0xa8,0xf7,0xfb,0x65,0x3a, + 0x49,0x4f,0x92,0x0d,0xa2,0xde,0xc7,0x33,0xb0,0xcb,0xc4,0xf2,0xd3,0x08,0xb1,0xc7,0xb3,0x29,0x24,0x04, + 0xfa,0x30,0x24,0x69,0xd9,0x92,0xf7,0xee,0x4b,0x59,0xc3,0x89,0x24,0xc9,0x8c,0x3d,0x41,0x25,0xd4,0x4e, + 0xf6,0x79,0x12,0xdf,0xf7,0x93,0xa6,0xc4,0xf7,0x27,0x86,0x8f,0x1e,0x5d,0x5b,0xbd,0x8b,0x1c,0x64,0x1a, + 0x95,0xa9,0x84,0x7b,0x49,0x52,0x49,0x7a,0x2f,0x6a,0x4b,0x95,0xc0,0xad,0x67,0xba,0x68,0xc9,0x7c,0x4f, + 0x64,0xe5,0xeb,0xcd,0x9c,0x24,0x96,0x13,0x4b,0x8a,0x49,0x43,0xf8,0xbb,0x5f,0x2b,0x4a,0x13,0x13,0x10, + 0x49,0xb2,0xeb,0x25,0xc0,0x89,0xf4,0x51,0x97,0xe8,0x99,0x4a,0x2c,0xb1,0xa3,0xe3,0x71,0x91,0x27,0x27, + 0x26,0xcd,0x60,0x5a,0xda,0xf2,0x4b,0xaa,0x99,0x14,0x55,0x0f,0x75,0xe9,0x1f,0xa4,0x8f,0xc9,0xb4,0x25, + 0x0b,0x7e,0x4b,0x77,0xab,0x74,0xda,0x90,0x05,0xff,0x0e,0x92,0x78,0x7e,0x96,0x9f,0x2f,0xca,0xba,0x3c, + 0x98,0x33,0x60,0xde,0x70,0x12,0x43,0x59,0xde,0x15,0x0b,0x9b,0x91,0x83,0x23,0xcc,0x1a,0x62,0x61,0x3a, + 0xaa,0x93,0xf8,0xa4,0x21,0x17,0x7e,0x46,0x0b,0x63,0x53,0x5d,0xb9,0x70,0x9e,0x38,0x19,0x95,0x58,0xf8, + 0x19,0x77,0x6c,0x33,0x8c,0x5c,0xf8,0x6d,0x41,0x5d,0x9b,0xc4,0x4a,0x30,0xfc,0x3b,0x51,0x2d,0x55,0x61, + 0x23,0x18,0xfe,0x3d,0x97,0x81,0xd4,0x04,0xc3,0x4f,0x92,0xcb,0xe4,0x84,0x95,0xff,0x9b,0xa2,0x61,0xbd, + 0xf5,0xc7,0xba,0xc0,0xe6,0xed,0x6f,0x48,0x89,0x9f,0xb4,0x2a,0xd4,0x80,0xe0,0x26,0x61,0xf1,0x2b,0x22, + 0x1b,0x9d,0x0a,0x74,0x51,0x11,0xdc,0xe2,0xbe,0xea,0x35,0x01,0x91,0x39,0x93,0x64,0x4a,0x60,0x7b,0x93, + 0xbc,0x78,0x23,0x70,0x75,0xcb,0x8b,0x0d,0xc4,0x38,0xe2,0x62,0x07,0xf8,0xea,0x42,0xe3,0x1a,0xf8,0x6d, + 0x94,0x1c,0xd3,0x28,0x4f,0x89,0xad,0xea,0x92,0x1c,0x3f,0x16,0x99,0x71,0x72,0xa3,0xc8,0xf8,0x3b,0xcc, + 0x1f,0x22,0x63,0x8b,0x6d,0x4e,0x92,0x59,0xfa,0xfe,0x0c,0x53,0x4b,0x3b,0x9a,0xb6,0x02,0xe3,0x27,0x39, + 0xc4,0xee,0x59,0x1c,0x17,0xb4,0x99,0x59,0xe2,0x4c,0xbc,0x4b,0x74,0x2c,0x25,0x74,0x71,0xd4,0xdc,0x28, + 0x43,0xae,0x90,0xad,0xc5,0x94,0x0e,0xfe,0x75,0x2f,0xcf,0x86,0x14,0xf9,0xb1,0x2b,0xd7,0xac,0x01,0x47, + 0x4b,0x94,0x4c,0xa7,0xe7,0x8c,0x08,0x65,0x08,0xd4,0x72,0x99,0x6e,0x8f,0x28,0x37,0xac,0x84,0xc8,0x95, + 0x2b,0x9e,0x2a,0xc1,0x95,0x1d,0x4f,0x39,0x8f,0xae,0xcf,0xb8,0x88,0x09,0x07,0xf2,0x2c,0xf8,0xe2,0x05, + 0xb9,0x61,0x65,0x9b,0x89,0xdc,0x1f,0x3d,0xa6,0x44,0x9d,0x54,0x0b,0xd7,0x88,0x3c,0xd3,0x7b,0x56,0xaf, + 0x45,0xf4,0x20,0x15,0xa1,0x15,0x8c,0x79,0xb7,0x7b,0x17,0x69,0xdc,0x29,0x5e,0xa6,0x7c,0xea,0xf9,0xbd, + 0x3b,0xb2,0xd3,0xe4,0x18,0xb7,0xdf,0x39,0x26,0x33,0xe8,0xbd,0x91,0xf9,0xca,0xb8,0x20,0x01,0x26,0xba, + 0x38,0xc5,0x58,0x79,0x9e,0xee,0x18,0x54,0x2f,0x06,0x6d,0xf6,0x47,0xaa,0xaf,0x16,0xb9,0x46,0x8f,0x89, + 0xae,0x4d,0x67,0xe9,0xc9,0x04,0x08,0xbb,0xf7,0x43,0xd2,0x3b,0x23,0x42,0xd1,0x6d,0x2d,0x6f,0x1c,0xa1, + 0x09,0x6e,0x02,0xdc,0x0a,0x56,0x84,0x23,0x4b,0x7f,0x96,0x51,0x22,0xcd,0x69,0x52,0x2c,0xcf,0xb0,0x1c, + 0x65,0x5e,0x62,0xe8,0x13,0x91,0x2d,0xc7,0xb8,0x76,0x69,0x11,0x9b,0xa2,0x65,0x67,0x8f,0x41,0x8d,0x30, + 0xb3,0xa9,0xaf,0xe3,0x96,0x80,0x59,0x97,0x6d,0x6f,0x01,0x1a,0xa7,0x25,0x4a,0xe8,0x5a,0x6d,0xc8,0x97, + 0xdf,0x2e,0x67,0xbd,0xd3,0x94,0x29,0x01,0x3a,0xe2,0x58,0x11,0x26,0x20,0xa8,0xd8,0x65,0x3c,0x3e,0x2d, + 0x2f,0xc1,0x45,0xd2,0xec,0x14,0x52,0x1c,0x3c,0xc4,0x6f,0x4b,0xe5,0x92,0x97,0xb5,0x47,0x60,0x5b,0xe0, + 0xc2,0xe6,0xe5,0x58,0x6c,0x14,0x39,0xff,0x6a,0x1b,0x34,0x42,0xe7,0xef,0x92,0xe3,0x62,0x49,0x54,0xe1, + 0x26,0xc1,0x33,0xad,0x29,0x03,0x18,0x0b,0x7f,0x89,0xc9,0xa0,0x25,0x4b,0xe8,0xf8,0xff,0x01,0x98,0x8b, + 0xb3,0xd6,0x34,0x07,0xbd,0x5f,0x09,0x00,0xa9,0x52,0xfa,0x3e,0x63,0xd8,0xbd,0x4c,0x67,0x98,0xb6,0xb3, + 0x57,0xa8,0x06,0x4b,0x1f,0x9a,0x10,0xfd,0xf3,0x47,0xfa,0x1e,0xf9,0x97,0x09,0x4d,0xfb,0x12,0xb0,0x4b, + 0x3f,0xce,0x93,0x44,0x53,0xa7,0xc7,0x70,0xec,0xd7,0x16,0x42,0x17,0xc9,0x66,0x11,0x34,0x44,0x99,0x37, + 0x0b,0xa1,0xe3,0xf3,0x0d,0x42,0xe8,0x37,0x20,0xe5,0x68,0x1c,0x13,0x23,0x86,0x46,0x5f,0x1b,0x85,0xd0, + 0x4d,0x29,0xf4,0xfb,0x49,0x5d,0x0a,0x9d,0x5c,0x27,0x84,0x8e,0x61,0xf2,0x44,0xe7,0x80,0xe0,0x8a,0x11, + 0xd4,0x9f,0x90,0x45,0x1f,0xa7,0xef,0x89,0x55,0x16,0xc2,0xb0,0x21,0x8e,0xfe,0xd1,0xb0,0x5c,0x5d,0xf2, + 0x68,0xc9,0x04,0x10,0x09,0x62,0x6d,0x09,0xa4,0x0d,0x58,0x30,0x4c,0x12,0x90,0xd3,0xa2,0x24,0x72,0x7a, + 0x08,0x83,0x00,0x44,0x29,0xa5,0xa4,0x1b,0xaa,0x34,0x94,0x5d,0x4f,0x64,0xdb,0xa0,0xe8,0x18,0x50,0x05, + 0xd1,0x9c,0x26,0x58,0xd5,0xd3,0x24,0x9d,0x30,0x7b,0x91,0xcc,0xce,0x34,0x2a,0x67,0x28,0x28,0x93,0x9e, + 0x21,0xff,0x3f,0x45,0x26,0xfd,0x56,0xf8,0x8a,0x2e,0x99,0x74,0xe6,0xc8,0xa4,0x9f,0xd0,0xbc,0x26,0x65, + 0x72,0x42,0xe8,0x70,0xe2,0xc8,0xa5,0xa1,0x66,0xe4,0x26,0x5a,0x01,0x8e,0x5b,0x1e,0x92,0xe9,0xaa,0x20, + 0x01,0xec,0x69,0x0c,0x74,0x42,0xd3,0x3e,0x8e,0x17,0x84,0x0e,0x31,0x09,0x11,0xef,0x24,0x9d,0xa2,0xea, + 0xdf,0xf3,0x84,0x37,0xe3,0xcf,0x8b,0xaa,0x1d,0x49,0xd6,0x0d,0x22,0xea,0x5a,0xcb,0x2e,0xf2,0xe3,0x6d, + 0x72,0x2f,0x62,0x62,0x51,0x4e,0xfe,0x3b,0xc4,0xd4,0x67,0xb3,0xfc,0x7f,0x2f,0x29,0xf5,0x63,0xdc,0x25, + 0x05,0x73,0xb7,0x74,0x52,0xe8,0x3e,0x12,0xa0,0xbe,0x60,0xc4,0x55,0x27,0xf1,0x09,0x71,0x31,0x3f,0xab, + 0xcb,0x94,0x06,0x80,0x35,0x23,0x84,0xb2,0x90,0x55,0xcb,0x85,0x38,0x07,0x54,0x50,0x0d,0x3a,0x7a,0x25, + 0xdf,0x3d,0x7f,0x08,0xee,0xb6,0x22,0xeb,0x73,0x60,0x32,0x3d,0x44,0x2a,0xce,0xe5,0x26,0xd4,0x2b,0xc4, + 0xd3,0x67,0x68,0x57,0x4b,0x8a,0x16,0x46,0x6a,0x2d,0x08,0x1d,0x14,0x0e,0x8e,0xac,0x9d,0x12,0x20,0xef, + 0xd3,0xe4,0xd6,0xc0,0xc7,0xfc,0x26,0xa1,0xaf,0x10,0xe6,0x85,0xcc,0x84,0x71,0x6b,0x4d,0x6e,0x94,0x5e, + 0x83,0xeb,0xd4,0xcc,0xbd,0x06,0x40,0xbe,0x7c,0xf5,0x21,0x68,0xcb,0xaf,0x51,0xde,0xe1,0xa9,0x34,0x47, + 0xc7,0xd8,0xac,0xa3,0xa6,0x91,0xf7,0x3a,0xbd,0xdc,0x54,0xa5,0x2e,0x2d,0x45,0xc5,0x1a,0x31,0x7c,0x43, + 0xed,0xa6,0xc8,0x14,0xf5,0x9b,0xa4,0xfd,0x75,0x6d,0xb4,0x44,0xdb,0x9f,0x30,0x5f,0x16,0x53,0x34,0x04, + 0xdc,0x37,0x4d,0x58,0xd7,0x69,0xcb,0xb9,0x51,0xd1,0x45,0x07,0xf5,0xe1,0x35,0xa5,0xdc,0xdf,0xe2,0xd9, + 0x04,0xeb,0x43,0xec,0x54,0x75,0x2f,0x30,0xac,0x6f,0x10,0x75,0xf3,0x82,0xe2,0xea,0xbe,0x66,0x54,0x4d, + 0x69,0xf7,0x8f,0x15,0x02,0x74,0xc4,0xdb,0x99,0x21,0xd3,0xe6,0xce,0xd2,0xfd,0x89,0xdd,0x73,0x97,0xef, + 0x4f,0x6f,0x9f,0x6e,0xc4,0x91,0x7c,0xa3,0xea,0x99,0xbd,0x0e,0xaf,0xdb,0xf3,0x0e,0xf1,0xf7,0x27,0x54, + 0xd6,0x3d,0xba,0x32,0x70,0x57,0x50,0xc6,0x8f,0xed,0x17,0x50,0x5e,0x1c,0x43,0x75,0xe1,0x94,0x2f,0xd4, + 0xa2,0x64,0x72,0x9b,0x6a,0x96,0x8b,0x32,0xb9,0x59,0xd2,0x4d,0xd7,0x9d,0x15,0xb1,0xb1,0xb0,0x9b,0x0a, + 0x10,0xb7,0x5a,0x94,0x3c,0x08,0x65,0x5b,0x15,0xd2,0xb7,0x5b,0xe4,0xfd,0x2a,0x83,0xc4,0x09,0x62,0x6f, + 0x5c,0xcb,0xd0,0x3b,0x2c,0x59,0xe4,0x7d,0x6d,0x53,0xdd,0x82,0xef,0xef,0x4d,0x19,0x9a,0xd7,0x1f,0x74, + 0xe9,0xe9,0xb2,0x86,0x26,0x12,0xe9,0x37,0xd1,0x62,0x84,0x82,0x40,0x79,0xd2,0x5a,0x81,0xe0,0x9f,0xa4, + 0x84,0x0b,0x7b,0x58,0x2e,0x47,0x0a,0x4e,0x2b,0x44,0x5b,0xd9,0x21,0x08,0x87,0xd4,0xb2,0x21,0x0a,0x3f, + 0x86,0xfc,0x2d,0x3d,0x3b,0x26,0xf4,0x4a,0x5c,0x45,0xb9,0x5c,0x0a,0xb2,0xd3,0x4c,0x0f,0xb5,0x8f,0x15, + 0x26,0xe0,0x27,0xaa,0x12,0x04,0x4b,0x9e,0x95,0x97,0x29,0x0d,0x63,0x86,0xfc,0x24,0xdb,0xc9,0xa7,0x18, + 0xaf,0x70,0xaf,0x82,0x25,0x3b,0x48,0x58,0xc6,0xfc,0x29,0xa0,0xb9,0x40,0x73,0xc0,0xf8,0x38,0xf5,0xd0, + 0xf8,0xcd,0x6e,0x90,0x8b,0x6b,0x8e,0xa0,0x21,0x19,0x77,0x19,0xe6,0x6e,0xf1,0x78,0x45,0xab,0x75,0x4a, + 0xc7,0xf7,0x93,0x62,0x79,0x62,0xc5,0xe3,0x8f,0x5d,0xca,0xab,0x2e,0x1c,0x7f,0x9b,0xcf,0x4e,0x20,0x83, + 0x6e,0x88,0x59,0x29,0xb9,0xcc,0x73,0x11,0xbf,0x76,0x4b,0xc8,0x93,0x54,0xdf,0x18,0x0e,0xb3,0xdd,0x25, + 0x26,0x07,0x85,0x8e,0xcd,0x9c,0x1b,0xca,0xd1,0x15,0x94,0x1b,0x9a,0x51,0x0b,0xcb,0xcf,0xc1,0x3b,0x24, + 0x5a,0x5c,0xce,0x8d,0x3b,0x22,0x42,0xa2,0x4d,0xaa,0xbb,0x99,0x33,0x8d,0xc4,0x7c,0x5d,0x45,0x6f,0x63, + 0x08,0x7b,0x3c,0x9f,0xfb,0xc1,0x15,0xb4,0xa1,0x2b,0xfd,0x6c,0x8f,0x1a,0xc6,0x83,0xc1,0x95,0x89,0x42, + 0x18,0xde,0x79,0x38,0x49,0x2f,0x7a,0xe3,0x19,0x91,0x93,0x91,0xce,0xed,0x85,0xfa,0xe7,0x55,0x8f,0x13, + 0x12,0x22,0xe9,0xc5,0x9b,0x6e,0xcf,0xca,0x74,0xed,0x57,0x6f,0xed,0xf5,0xfe,0x41,0x17,0x2e,0xd4,0xcc, + 0x22,0x4f,0x5e,0x86,0x88,0x8c,0xc0,0xc6,0x52,0xc6,0x78,0x96,0x8e,0xcf,0x4c,0xf2,0x53,0xfc,0xf0,0x7a, + 0xc4,0x09,0xb0,0xef,0x97,0xc8,0xdb,0xf5,0x1e,0xd5,0x7a,0x27,0xa8,0x2b,0xf2,0x59,0x3d,0x91,0x43,0x07, + 0x52,0xd2,0x0e,0xa5,0x99,0x7f,0x9d,0xec,0x59,0x7c,0x9c,0x50,0x8d,0xab,0xab,0x1e,0x43,0x44,0x6f,0xbd, + 0x76,0x4b,0xde,0xb1,0x9e,0xd9,0x19,0x5c,0xb4,0xcf,0x75,0x71,0x87,0x2c,0x1e,0x92,0x9f,0xe4,0x44,0x1a, + 0xc4,0x99,0xf5,0xd4,0xbe,0xb5,0xb7,0xae,0x04,0xd7,0x1b,0x8b,0xc0,0xf1,0x1f,0xab,0xab,0x87,0x57,0xce, + 0xd4,0x5a,0xfe,0xf2,0x4d,0x43,0x70,0xfe,0x8a,0xdf,0xdc,0x71,0xb4,0x55,0x7d,0x8b,0xc1,0xd1,0xad,0xe4, + 0x1c,0x36,0x3d,0x69,0x36,0x07,0x5a,0xa9,0x72,0xe1,0x03,0xac,0xb6,0xa0,0xb5,0x10,0xa4,0xf7,0xee,0xc2, + 0x73,0x23,0xad,0x3c,0x02,0xb4,0x18,0xa7,0xa2,0xce,0x68,0x60,0x01,0x82,0x68,0xcf,0xe0,0x75,0x8d,0xfb, + 0x05,0x6d,0x05,0xd2,0x80,0x09,0x82,0xa5,0x34,0xdf,0x08,0x13,0x92,0xbb,0x11,0x26,0x7a,0x51,0xd4,0x4b, + 0x27,0xff,0x47,0x41,0x86,0x44,0xf5,0x9b,0xc8,0xdf,0xff,0x62,0x60,0xe0,0x4f,0x5a,0xbf,0xff,0x4d,0x00, + 0x81,0x30,0x4b,0x0b,0x10,0x6a,0xab,0x2a,0xd7,0xe8,0xa3,0x87,0x08,0x68,0x60,0xd2,0x78,0x8c,0xbc,0xd2, + 0xfc,0x35,0x90,0xfb,0x0d,0xeb,0x8d,0x52,0xf5,0xea,0xb3,0x94,0xd0,0x39,0xb6,0x33,0x4e,0x65,0xf7,0x78, + 0xb2,0x1c,0x3b,0x2a,0xd2,0xfd,0x83,0x33,0x05,0x04,0x00,0x6f,0x46,0xde,0xfd,0xdd,0xaf,0xef,0x7b,0xf5, + 0xea,0x5e,0xef,0x62,0x1b,0x72,0xa3,0x99,0xb6,0x83,0xd5,0x23,0x18,0x98,0xb1,0x6d,0x00,0x08,0xc2,0xef, + 0x37,0x0c,0x1c,0x8f,0xc3,0x7f,0x71,0xd8,0x7b,0xd5,0xb0,0x1f,0x7c,0xe2,0xb0,0x65,0x5c,0xee,0xa0,0x6b, + 0x10,0x7a,0xa0,0x87,0x79,0xa4,0x38,0x82,0x2d,0x41,0x62,0x13,0xb2,0x4c,0xb8,0xb7,0xe8,0x8a,0x57,0x20, + 0xac,0x00,0x47,0x96,0x44,0x51,0x0f,0x6e,0x22,0xfd,0x44,0x40,0x0b,0x50,0x25,0xa1,0x76,0x37,0xaf,0x21, + 0xb7,0xa8,0x01,0x96,0xae,0xbe,0x15,0xd5,0x7a,0x91,0xc4,0x91,0xfe,0xfb,0x88,0x9b,0xe3,0xc8,0x39,0xf4, + 0x37,0xd2,0xa9,0xfd,0xbd,0x2e,0x80,0x26,0x38,0x0e,0xb9,0x58,0xb3,0x45,0x6e,0x81,0xff,0x3c,0xd4,0x0d, + 0x70,0x83,0xfc,0x15,0x71,0xfa,0xf6,0xa6,0x06,0x55,0xc7,0xd8,0xcc,0x28,0x54,0xab,0x17,0x69,0x8c,0x30, + 0xbc,0xf6,0x87,0xb9,0xd6,0xf6,0x41,0x09,0x5b,0x19,0xeb,0xf8,0x76,0x95,0xa3,0xd8,0xf8,0x22,0x3d,0x89, + 0xcb,0xbc,0x18,0xcc,0x68,0x87,0x97,0x44,0xea,0x35,0xbd,0xb6,0x7a,0x2c,0x7e,0x32,0x3e,0x60,0xad,0xcf, + 0xbc,0x60,0xa8,0x9b,0xf3,0xaf,0x92,0x59,0xe8,0xfd,0x8d,0x68,0x0a,0x4f,0xc1,0xce,0x29,0x4c,0x14,0xfb, + 0x54,0xbd,0xca,0x88,0x46,0x9f,0xa6,0x9a,0x37,0x60,0x3c,0x63,0x9e,0x9c,0xb7,0x76,0xd5,0x42,0x9e,0x71, + 0xb7,0xf6,0xf4,0x97,0x10,0xe3,0xf4,0x53,0x97,0x79,0x4e,0x6c,0xd4,0x18,0xe3,0x0a,0xbd,0x95,0x61,0x67, + 0x5e,0x17,0xf9,0x09,0x0b,0x0e,0x6c,0x2d,0x97,0x16,0xa7,0x44,0xe1,0x71,0xf7,0xe3,0x63,0x04,0x1c,0x95, + 0xb7,0x49,0xf3,0x98,0x59,0x3d,0xac,0xeb,0x0e,0xf8,0xb9,0xd8,0xd8,0x39,0xd5,0x12,0xf1,0x46,0x24,0xe3, + 0xc5,0xd7,0xab,0xe9,0x14,0xaf,0x5d,0xbb,0x35,0xc2,0x9b,0x73,0x1d,0x6a,0x14,0x37,0x6a,0xed,0x99,0x79, + 0x1e,0x5e,0x25,0xfa,0xf9,0x84,0xc6,0x95,0xce,0x43,0x6f,0x77,0xc0,0xff,0xaf,0xde,0x93,0x6b,0x25,0xf4, + 0x30,0x77,0xeb,0x45,0xd7,0x9a,0xc3,0xa2,0x91,0x59,0x26,0x0b,0x71,0xe2,0xab,0x17,0x51,0x0c,0xd5,0x6d, + 0xa7,0xac,0xbf,0xf8,0xc8,0x2c,0x4c,0x71,0x78,0xdf,0x96,0x87,0x8e,0x5a,0x9d,0x64,0xd3,0xdb,0xd3,0x86, + 0xf6,0xe8,0x74,0xc7,0x1f,0xdb,0x4d,0xd7,0x9f,0x45,0xac,0x48,0x95,0xcb,0xb9,0xcf,0x1d,0xd8,0xfc,0xd2, + 0xce,0x85,0x25,0xd1,0x5c,0xc6,0xca,0xa1,0xa5,0x13,0xc8,0x9f,0xb7,0x78,0x3d,0x64,0xb1,0x2b,0x79,0x2e, + 0xff,0x36,0x42,0x5c,0x76,0xcd,0x67,0x05,0xb0,0x95,0xa0,0x50,0xdc,0x21,0x39,0x02,0xc2,0x07,0x8a,0xb0, + 0xbd,0x06,0x43,0x02,0x3c,0xe9,0x92,0xf8,0xb5,0xf0,0x8a,0xe6,0xfe,0xf8,0xb5,0xce,0x49,0x26,0x90,0xb3, + 0xc9,0x98,0xe7,0x9a,0x42,0x96,0xa2,0x97,0xe7,0x90,0x8a,0xd9,0xef,0xa7,0x3f,0xe9,0xae,0x1d,0x79,0x96, + 0xc9,0xac,0x44,0x56,0x9c,0xe2,0x0a,0xa6,0x68,0xfb,0x0d,0x91,0x8d,0xd9,0xd5,0x09,0x6e,0x2c,0x0c,0x32, + 0xe0,0x22,0xdf,0xf2,0xd4,0x10,0xef,0xea,0x47,0x5a,0xce,0x29,0x12,0x28,0xca,0x5e,0x24,0x36,0xc1,0x65, + 0x19,0x64,0x48,0xe2,0xd4,0x7f,0xd2,0x34,0xbf,0xd4,0xde,0xc7,0xcb,0x81,0x7b,0x30,0xd1,0x8c,0x8e,0xf1, + 0x6b,0xc3,0x60,0x33,0xb9,0x80,0xa8,0x37,0xbe,0xc7,0x9f,0x9e,0xf1,0x4f,0xae,0x8d,0x0f,0xcd,0xe0,0xe0, + 0x36,0xf0,0xd4,0x78,0x06,0xdc,0x23,0x84,0x80,0x8b,0x79,0x60,0x0f,0x61,0x84,0xa0,0x5a,0x82,0xa5,0x7e, + 0x6a,0x1c,0x6a,0x78,0x13,0x1a,0x34,0x65,0x1a,0x9c,0xa8,0x29,0x08,0x5e,0x15,0x76,0x8c,0x0c,0xa3,0xef, + 0x3d,0xb4,0x53,0xa1,0x09,0x19,0xb3,0x93,0xea,0xa0,0x01,0x93,0x37,0x6c,0xd8,0x25,0xb3,0xf7,0xa5,0xdd, + 0x61,0xfc,0x70,0xef,0xfe,0x7d,0xfa,0xd3,0x8f,0xf6,0x1e,0x04,0x3a,0x24,0x46,0x2c,0x3e,0x11,0xe3,0x68, + 0xfb,0x2e,0xb2,0x1e,0x46,0x77,0x6d,0x89,0xd4,0x96,0x28,0x07,0xd5,0x36,0x44,0x05,0xf5,0x5c,0xdb,0x87, + 0x28,0xa5,0x94,0x4a,0x5a,0xe6,0x07,0x83,0xf2,0x34,0xc9,0x5c,0xcf,0xc6,0x92,0x5d,0x09,0x8c,0x36,0x16, + 0x11,0xc1,0xd0,0xc6,0x6c,0x57,0x6e,0xb2,0xb1,0x50,0x5d,0x3a,0xb2,0xb9,0x2b,0x2c,0x66,0x67,0xee,0xa2, + 0xcc,0xe7,0x9d,0x7b,0xa6,0xf1,0x24,0x2d,0xf0,0x3a,0x70,0xfe,0x5f,0x51,0x87,0x8b,0xd3,0xfc,0xf2,0xa5, + 0x8b,0xf8,0x3b,0xc3,0xec,0x02,0x0e,0xb3,0x1a,0x1c,0x46,0x57,0xfa,0x66,0xa1,0xeb,0x43,0xa4,0x8f,0xe5, + 0x5a,0x49,0x34,0x85,0xac,0x0d,0xb0,0xb7,0x6f,0x8f,0x89,0x42,0x2d,0xf0,0x9d,0x2f,0x4b,0xbf,0xa3,0x44, + 0xa0,0x3a,0x12,0x23,0xc2,0xe0,0xa6,0x8e,0x33,0xdf,0xc6,0x48,0x04,0x75,0x6c,0x38,0x25,0x6b,0xf5,0x20, + 0xb9,0x07,0x52,0x95,0xa8,0x9d,0xee,0x79,0x6a,0x82,0xa5,0xa3,0x49,0x9e,0x4d,0x2b,0x53,0x4f,0xc8,0xaf, + 0xcd,0xa8,0xbb,0x94,0xa6,0x04,0xba,0x47,0x66,0xe9,0x67,0xc2,0x35,0x22,0x67,0xaa,0x9b,0xaf,0x1b,0x11, + 0x31,0x31,0xe0,0x08,0x99,0x20,0x67,0xc3,0xf3,0x86,0x08,0xa2,0xa5,0x95,0x1a,0x93,0x91,0xf7,0xfd,0xfe, + 0xfe,0xeb,0x9e,0xf9,0xd9,0x43,0x48,0xfa,0x9e,0xd7,0xaf,0x0a,0x0c,0xf4,0x45,0x85,0x14,0x96,0x51,0x8f, + 0x60,0x34,0x67,0x72,0xbd,0xd0,0x06,0xdd,0x93,0x91,0x36,0xa1,0x01,0x11,0xb5,0xfc,0x32,0xe8,0x7b,0x87, + 0xd9,0x61,0xe6,0xf5,0x0b,0xc5,0x01,0xd9,0x1c,0x31,0xf3,0xb5,0x16,0xe3,0xf1,0x87,0x34,0x67,0x27,0xd3, + 0xbe,0xb7,0x13,0xcf,0xd3,0x1d,0x7d,0xc7,0x37,0x01,0xb8,0x2b,0x0c,0x7d,0xa9,0x43,0x65,0xf9,0x66,0x06, + 0x91,0xa4,0x10,0xf0,0x0e,0x74,0x6c,0xc0,0x41,0x7d,0xf5,0x06,0x60,0xd3,0xe0,0xb7,0x9b,0xa1,0xd1,0x39, + 0xdc,0x5e,0xa0,0x87,0xec,0x48,0x7f,0x3f,0x6b,0xd8,0xd5,0x35,0xf9,0xb9,0x43,0xaf,0x6a,0xfe,0x99,0xe1, + 0x3b,0x36,0x6e,0x66,0x0a,0x5a,0x0a,0xfd,0x79,0xab,0x2e,0xf6,0x35,0x9f,0xbb,0xea,0x5c,0xeb,0x4f,0xad, + 0xba,0xee,0x4f,0x0f,0xb9,0x26,0x38,0xfe,0xac,0x81,0x1b,0x62,0x65,0x87,0x0d,0x5e,0x3b,0xc6,0x0f,0xe7, + 0xbe,0xdd,0x53,0x30,0x88,0xcb,0x92,0x4d,0x92,0x3c,0xd0,0x3f,0x57,0xab,0x36,0xa9,0xa4,0x4b,0xd4,0x53, + 0x57,0xab,0xdd,0x1a,0xcd,0xd4,0xf6,0x5e,0x6c,0xab,0x49,0xa1,0x20,0xa8,0xee,0xb1,0xdd,0x61,0xf1,0xb0, + 0x91,0x6d,0x5c,0xea,0x17,0x26,0x32,0x7b,0x1a,0x35,0x4a,0x1c,0x14,0x47,0x84,0x69,0x6d,0x79,0x89,0x9b, + 0x55,0xd9,0x01,0x85,0xe9,0xa0,0xfa,0xe1,0x8c,0x6e,0x1f,0x72,0x80,0x74,0xe0,0xfc,0x42,0xa6,0x99,0x7d, + 0x5a,0x9b,0xb8,0xbd,0x18,0xeb,0x15,0x1e,0xed,0x8e,0x76,0x91,0xa2,0xa7,0xed,0xde,0x97,0xad,0x82,0xb6, + 0x18,0xd1,0x40,0xe7,0xa2,0x28,0xe6,0xef,0xdd,0x4e,0x69,0x2a,0x1f,0x17,0xaf,0xa6,0xbf,0x26,0xc9,0x59, + 0xf0,0x88,0xc6,0xa6,0xb5,0xc5,0xfc,0xbb,0xad,0xac,0x4b,0xab,0x32,0xe6,0xdf,0x6f,0xd7,0x33,0x6a,0x63, + 0xfe,0x57,0xad,0xbc,0xa9,0x68,0x8e,0xf9,0x7b,0x5f,0xb6,0xb2,0x16,0x46,0x7f,0xcc,0xbf,0xd7,0xee,0x70, + 0x21,0x4a,0x64,0xfe,0x97,0xad,0xee,0x10,0xcd,0xac,0x5a,0x70,0xcc,0x2b,0x82,0xa3,0x99,0x4f,0x07,0x78, + 0x17,0xc2,0x2d,0xd8,0x37,0x1e,0x3c,0xfe,0x1c,0xe0,0x0b,0xf1,0xff,0xb9,0x47,0xd7,0xce,0x45,0xaa,0xff, + 0x99,0x33,0x5c,0x1f,0x7d,0x85,0x7e,0x98,0xdc,0xfd,0x4c,0x9c,0x4f,0x55,0x76,0xb4,0xb9,0x45,0xf7,0x19, + 0xee,0x3a,0x50,0x81,0xeb,0x63,0x64,0x0b,0x91,0xf3,0xc0,0x96,0x71,0xe0,0x37,0x76,0x42,0xbc,0x3b,0xcc, + 0xcd,0xd9,0xd2,0x47,0x2a,0x37,0x47,0xca,0x5c,0x15,0xf0,0x1d,0xc6,0xf1,0x8f,0x8a,0x11,0x11,0x12,0xe1, + 0x62,0x8b,0xbe,0x38,0xf6,0xf4,0x16,0x5c,0x9e,0xd6,0x02,0xdb,0x11,0x77,0xac,0xd2,0x7e,0xb4,0x58,0xe3, + 0xb6,0xa1,0xf1,0x46,0xb1,0x4a,0x06,0x35,0x5a,0x3f,0x7a,0x01,0x6f,0xe6,0xd3,0x59,0x8e,0x38,0x7b,0x3b, + 0xa6,0xd3,0xc0,0x29,0xc6,0x40,0xb3,0x6e,0xbd,0x33,0x76,0x2f,0x56,0xa2,0x09,0x61,0x8e,0x59,0x29,0x9f, + 0x98,0xa5,0x2c,0xde,0x9c,0x58,0xb1,0xf6,0xd5,0xa3,0x2a,0x16,0xcd,0xbd,0x58,0x06,0x26,0xb5,0xc6,0xb3, + 0xd5,0x4a,0x38,0x19,0x96,0x93,0xab,0x15,0xd0,0x89,0xc2,0xdb,0xd5,0x73,0x28,0xa5,0x62,0xf4,0x6a,0x59, + 0x26,0x55,0x38,0xbf,0x5a,0x16,0x52,0xc0,0x08,0xd6,0x12,0xd3,0xb9,0xcb,0x13,0xd6,0x7b,0xb1,0xe9,0x96, + 0x4d,0xac,0xe5,0xeb,0xc4,0x75,0x13,0x7c,0x10,0x1e,0xf8,0x13,0x81,0xba,0xb1,0x2d,0x04,0xd1,0x2d,0x2a, + 0xba,0xda,0x08,0xa2,0x95,0xcd,0x4e,0x76,0x5f,0xb8,0x96,0x33,0xb3,0xbb,0x58,0x5e,0xb7,0x8b,0xfa,0x06, + 0x06,0xfb,0xc3,0x5f,0xcd,0xbe,0x33,0x26,0xe1,0xbb,0x48,0x2f,0xaf,0xa6,0xb1,0x8f,0x73,0x68,0xe6,0x5b, + 0x76,0xce,0xb7,0xac,0xcd,0xd7,0xde,0xc4,0x5d,0x1c,0x43,0x6d,0xae,0x9d,0x4c,0xdf,0x46,0xd8,0xd5,0x4c, + 0x05,0x91,0x57,0x27,0x09,0x1d,0x49,0x9b,0x60,0x69,0x76,0xc3,0xc4,0xbb,0x5d,0xea,0x48,0x8a,0xf5,0xda, + 0xfd,0xbe,0xaa,0x27,0x48,0x88,0xc5,0xde,0x5e,0x68,0x93,0xed,0x70,0x22,0x6f,0xc7,0x73,0x82,0x26,0xf6, + 0xee,0x76,0x96,0xd9,0xae,0x95,0xb9,0xd7,0x59,0xe6,0xf0,0xb0,0x56,0xe8,0x7e,0x67,0xa1,0x95,0xa7,0x9a, + 0x33,0x5d,0xaf,0xd5,0xdd,0x07,0xbb,0xbc,0x5c,0x6d,0x76,0xcb,0x5d,0x2d,0x66,0x0d,0xec,0x22,0x68,0x9f, + 0x74,0xd5,0x12,0x51,0x0b,0x84,0x20,0x0d,0x23,0x0d,0x85,0xa3,0x16,0x31,0x6d,0xbd,0xef,0x55,0x52,0x2a, + 0x73,0x4c,0xcd,0x5d,0x6e,0x7c,0xaa,0xbb,0xe6,0x01,0x9e,0x09,0x58,0xb9,0xa9,0xae,0x10,0xd3,0x7a,0x95, + 0x77,0x43,0xbd,0x90,0xba,0x25,0x73,0xe4,0x08,0xd2,0x86,0x7a,0x1b,0xf4,0x02,0xf1,0x9f,0x07,0xa6,0x9c, + 0xf8,0xfc,0x33,0x2b,0x5c,0xaf,0x8c,0x31,0x70,0xc6,0x97,0xa1,0x79,0x8e,0xe8,0x1a,0xe7,0xba,0x7b,0x09, + 0xf6,0x93,0x0f,0xe5,0x9f,0x5b,0x86,0x1e,0x1f,0x97,0x76,0x31,0x08,0xb7,0xed,0x33,0x87,0x17,0x7c,0xe6, + 0xfa,0x7c,0x42,0xdb,0x30,0x1c,0xa1,0x76,0xf5,0x7a,0x7d,0x42,0x05,0xb1,0x2b,0x31,0x55,0xee,0x7e,0x4a, + 0x95,0x9a,0xb9,0x89,0xa9,0x69,0x56,0xbe,0xb7,0x69,0x2e,0xe9,0xdc,0xc0,0xf7,0x27,0x74,0x51,0xb3,0x59, + 0x31,0x5d,0x3c,0xf8,0x8c,0x9a,0xa9,0xd8,0xb0,0x98,0xaa,0xcd,0xed,0xbf,0x69,0x7f,0x2a,0xd0,0x40,0xf4, + 0xde,0x96,0xfa,0xcc,0xf5,0xd7,0xe8,0xc8,0x91,0x13,0x24,0x2d,0x39,0x15,0x4b,0x00,0xc2,0xcd,0x5c,0xdd, + 0x9f,0xe4,0x4b,0xab,0xb9,0x7c,0x2e,0x85,0xd5,0x1c,0x60,0x17,0x86,0xbe,0x79,0x46,0xa0,0x36,0x1a,0x6a, + 0x43,0xdd,0xd7,0x14,0x1f,0x22,0xbd,0x52,0x2e,0xea,0xdf,0x65,0x99,0x9e,0x2b,0xa8,0x27,0xb2,0x4a,0x28, + 0x2e,0x3c,0x15,0xc0,0x2f,0x24,0x6c,0x29,0x86,0xec,0x9c,0x0d,0xae,0x5e,0xbd,0x69,0x0a,0x97,0x57,0x56, + 0xee,0x48,0x8b,0xf9,0x8d,0x04,0x92,0x7e,0xf2,0xf1,0x39,0x67,0xcb,0x38,0xbe,0x45,0x31,0x8e,0xd7,0x9d, + 0x2c,0xe0,0x11,0x52,0xcb,0x2e,0x58,0xfa,0x4d,0x13,0x0a,0xef,0x7d,0x99,0xdc,0x57,0x79,0xf6,0x4b,0xfd, + 0x91,0xa0,0x16,0x3c,0xa8,0x39,0x30,0x26,0xbf,0x0a,0xb8,0xd6,0xf2,0xf7,0x76,0x77,0xbf,0x10,0xcc,0x9c, + 0x4c,0x76,0x08,0xaa,0xf2,0x32,0x46,0x30,0xf4,0x61,0xeb,0xda,0xad,0x14,0xa5,0x10,0xc6,0xe2,0xbf,0xfe, + 0xce,0xad,0x6f,0x46,0xf7,0xb5,0xdb,0x98,0x96,0x23,0x13,0xc5,0xf7,0x8d,0x2b,0x4b,0xab,0xca,0xcf,0x1a, + 0x1c,0x42,0x6d,0x2d,0xe2,0x67,0x2d,0x75,0xbd,0xe9,0xb6,0x5e,0xad,0x92,0x2e,0x61,0x2d,0x38,0x42,0x89, + 0xf0,0xd8,0x90,0xd7,0x8a,0x14,0xa0,0x29,0xc4,0xed,0x16,0xc8,0x19,0x08,0xd5,0x02,0x4a,0xba,0x26,0x77, + 0x77,0x83,0x60,0x5d,0x53,0x50,0xeb,0x1e,0x1e,0xc7,0xc9,0x73,0x7a,0xf9,0xeb,0xbd,0xaa,0x5a,0x7d,0x40, + 0x79,0x47,0x83,0x78,0x45,0xe9,0x16,0x5d,0xef,0x3a,0x24,0x7d,0x3b,0x82,0x37,0x07,0xef,0xe6,0x55,0x37, + 0x6c,0x47,0x46,0x6c,0x47,0x3d,0x4a,0x76,0x83,0x73,0x58,0x07,0x43,0xc3,0x55,0x94,0x12,0x93,0xc8,0x48, + 0x07,0xd0,0xf8,0xc6,0x36,0x8b,0x7e,0xa4,0x53,0x0f,0xb2,0x23,0x79,0x23,0x1d,0x5e,0xc3,0x93,0x14,0x3b, + 0xf5,0x36,0x82,0xb5,0x48,0x17,0x74,0xac,0xde,0x8d,0xdd,0x68,0x81,0x79,0xb3,0x2b,0x8c,0x79,0x83,0x64, + 0xbf,0x4d,0xdd,0xba,0x1c,0x9e,0xba,0x6a,0x88,0x55,0xf6,0x92,0x7b,0xa2,0xc1,0xb0,0x08,0xd3,0xbf,0x42, + 0xc0,0x3b,0x5b,0x7d,0x1d,0xf1,0xae,0x37,0x1d,0xd2,0xee,0xa6,0xb6,0xe3,0xe6,0xf3,0x21,0x05,0x04,0xf4, + 0x9a,0xef,0x77,0x15,0x41,0xcf,0x57,0x07,0xd4,0x77,0x17,0xe1,0xce,0x0e,0xde,0x88,0xb4,0xc6,0x2e,0xad, + 0xc1,0x82,0xb5,0x76,0x91,0xc6,0x2b,0x72,0x92,0xe4,0x10,0xc4,0xee,0xbc,0x5f,0x30,0xdf,0x26,0x31,0x69, + 0xc2,0x2b,0x63,0xf5,0x50,0x75,0xa9,0xce,0x12,0xb0,0x3a,0xc2,0x15,0x0c,0xaa,0x77,0xa7,0x75,0x6b,0xa5, + 0x36,0x73,0xca,0x40,0x08,0x74,0xcd,0x2e,0x10,0xd2,0xab,0x96,0xa0,0xb7,0xf9,0xd1,0xae,0x95,0xe2,0xd7, + 0xb2,0xe1,0xb0,0x98,0x06,0x7a,0x9e,0x94,0xc5,0x47,0x3b,0xa0,0xa1,0x1d,0xcc,0x2c,0x2e,0xe1,0xc5,0x38, + 0x2e,0x55,0x95,0x44,0x48,0x2a,0xc3,0xbf,0x9f,0x2c,0x1d,0xa9,0xef,0xc0,0x86,0x7d,0x6b,0xaf,0xb8,0xc3, + 0x7f,0x7d,0x82,0xf4,0x90,0x03,0x0c,0xd9,0xeb,0xcd,0x61,0xa7,0x87,0xd5,0xe9,0xb5,0x72,0xc0,0x86,0xa4, + 0xc7,0x10,0x91,0x4d,0x61,0x60,0xb3,0x58,0x3d,0xbb,0xfe,0x42,0x6b,0xce,0x56,0xb3,0x46,0x5d,0xe2,0x97, + 0x19,0xf1,0x04,0x3c,0xd2,0x76,0x17,0xa5,0xd3,0x47,0x2c,0xe5,0x66,0xd1,0x5f,0xe1,0x88,0xfe,0x6a,0x72, + 0xbf,0xc2,0x95,0xce,0x59,0xa1,0x5f,0x51,0x4d,0x0e,0x53,0x2a,0x1a,0x22,0xbc,0xa2,0xf6,0x22,0x46,0xd9, + 0x56,0x2c,0xa8,0x2a,0xf1,0x58,0xe8,0x17,0x03,0x91,0xef,0x8d,0xf6,0xc2,0xdd,0x60,0x45,0x3f,0xb5,0x50, + 0x6f,0x74,0x57,0xff,0xb6,0x92,0xbc,0xd1,0x7d,0x53,0x42,0x8b,0xef,0x46,0x5f,0xe9,0x04,0x91,0xd9,0x8d, + 0xf6,0xbe,0xd4,0xbf,0x8d,0xa0,0x6e,0x74,0xcf,0x34,0x22,0xd2,0xb9,0xd1,0x97,0x68,0x82,0x8e,0x6e,0x0b, + 0xc7,0xd4,0x45,0xc1,0xaa,0xfc,0xab,0x92,0x80,0x86,0xc8,0xee,0x7a,0x59,0x00,0x5d,0xb4,0x74,0x74,0xdd, + 0x87,0xf6,0xe6,0xdb,0xd1,0x86,0xad,0x6f,0xed,0x60,0x5d,0x5c,0x5b,0xc9,0x67,0x09,0xc7,0x54,0x42,0xd9, + 0x07,0xf7,0x1b,0xc2,0x57,0x2b,0x62,0xdd,0xaa,0x44,0xaa,0x5b,0xae,0x08,0x75,0xcb,0x11,0x99,0x6e,0x59, + 0x11,0xe9,0x96,0x23,0x11,0xdd,0xb2,0x02,0x50,0x89,0x56,0x2a,0x9e,0x24,0x3a,0xa7,0x94,0x5c,0x3f,0x27, + 0x1d,0xae,0x36,0x41,0xb8,0xda,0x4e,0xd5,0xee,0xbf,0x26,0xf0,0x6a,0x8a,0x3e,0x55,0x4b,0x9c,0xf9,0x57, + 0xb7,0xbe,0x25,0xda,0xbc,0x59,0x10,0x34,0xa9,0xcb,0x43,0x37,0x6f,0xbf,0x8c,0xf0,0x5a,0x00,0x70,0xb6, + 0x7c,0x9e,0x66,0xe1,0x5d,0x35,0xb1,0xa6,0xb4,0xce,0xce,0x6c,0xe8,0xaf,0xb5,0x37,0xcd,0x0e,0x6b,0xbb, + 0x83,0x90,0x22,0x29,0xa5,0xc4,0x0c,0xee,0x9d,0x0f,0xbb,0x9e,0x37,0x84,0x5a,0x53,0x46,0xc4,0xc6,0xa3, + 0x68,0x77,0xe4,0xf5,0xbd,0xd0,0xdb,0xf6,0x0c,0xc1,0xee,0x6b,0x12,0x23,0x3e,0x5e,0x20,0xb0,0xfb,0xff, + 0xf8,0x72,0xd7,0x48,0x79,0xa9,0x82,0x43,0x7c,0x24,0x3b,0x5f,0xee,0x06,0xa8,0xaa,0x8a,0x87,0x7b,0xbb, + 0xd2,0x9e,0xb7,0xeb,0x05,0x8a,0xfe,0x16,0x5a,0xb8,0xe4,0x6a,0xfe,0x74,0x83,0x48,0xa7,0xe4,0xf8,0xb3, + 0x5f,0xdc,0xaa,0x6e,0xa2,0x2b,0xd1,0xbe,0x06,0x49,0x40,0x0b,0x2f,0xfa,0xd6,0xfa,0x0e,0xe4,0x1f,0x95, + 0xb2,0xb3,0x4e,0x35,0xbf,0x8d,0xaa,0xb4,0xb9,0x30,0xf9,0xd7,0xfa,0x33,0x9f,0x1e,0x85,0x50,0x11,0x59, + 0xd1,0x86,0xc9,0xf3,0x5e,0xba,0x23,0x96,0x07,0x6b,0x91,0x55,0x5e,0x53,0xa5,0xd1,0xa4,0xcf,0x2f,0xc9, + 0x0b,0xf8,0x52,0x71,0x52,0x79,0xda,0x1b,0x9c,0xe9,0x3b,0x7d,0x0e,0xaa,0x45,0x7a,0xb8,0xb7,0x66,0xfd, + 0xf3,0x6b,0x1a,0xa1,0xbb,0x76,0x37,0x8a,0xae,0x69,0x23,0x30,0x21,0x25,0xdc,0x6c,0x5e,0xed,0x87,0x7b, + 0xa3,0xee,0x8c,0x68,0x2f,0xec,0xce,0x78,0xb4,0xf7,0xa5,0xd1,0x1c,0xed,0xa8,0xf4,0xa5,0x7e,0x5c,0x77, + 0xb3,0x64,0xa7,0x0c,0xe1,0xd3,0x5d,0x33,0xd8,0x54,0x4b,0x9f,0x9d,0x0d,0xb5,0x86,0x20,0xdd,0xe1,0x0c, + 0xc6,0x1f,0x5e,0xdf,0xed,0xc3,0xee,0x06,0x86,0x1b,0xfb,0x15,0x24,0x21,0x5a,0x92,0xbb,0xac,0x16,0x09, + 0x3d,0x4d,0x62,0x1b,0xae,0x59,0xe6,0x7e,0x5f,0xdd,0xbd,0x76,0x1f,0x74,0x7c,0xd7,0x26,0x28,0x01,0x54, + 0x9c,0x0a,0x9f,0xc8,0x3a,0x3a,0x0d,0xac,0x56,0x80,0x51,0x66,0x18,0xc7,0x6e,0x6a,0x8d,0x89,0x6c,0xaa, + 0xf7,0x38,0x4c,0x5d,0x4b,0xf3,0xe7,0x7a,0xd6,0xae,0x31,0xf4,0x1a,0x5b,0x79,0x33,0x46,0x11,0x05,0x8e, + 0xfa,0x50,0xbb,0xc7,0xf2,0x67,0xd8,0xce,0xae,0xb1,0xa9,0x8e,0xb6,0x5d,0x16,0xb4,0x43,0xf1,0x69,0x03, + 0x43,0x45,0x7c,0x83,0x60,0xac,0xa4,0x0d,0x4b,0x15,0xe2,0xaa,0x67,0x36,0xf1,0x57,0xd2,0x01,0x6e,0x7f, + 0x9d,0x07,0x73,0xe6,0x70,0xdd,0xed,0x59,0x5b,0x01,0xb9,0x48,0xe5,0x6e,0x7b,0x53,0xa9,0x61,0xb6,0x11, + 0x1b,0x8b,0x06,0x1d,0xcd,0xcd,0x68,0x57,0xb9,0x39,0x95,0x0a,0x67,0xc4,0x4a,0xee,0xd0,0x13,0x5f,0x42, + 0x75,0xee,0x8a,0x10,0xe0,0xcf,0x95,0xc5,0x56,0x1b,0xef,0x01,0x3e,0x37,0xf4,0xb1,0x5a,0xdd,0xbd,0x2e, + 0xf3,0xde,0x75,0x99,0xdd,0x83,0x93,0xbb,0xb7,0x72,0x6d,0xd4,0x90,0x68,0x37,0xc7,0xc2,0x0e,0x93,0x6b, + 0x11,0x52,0x45,0xf7,0x17,0x01,0xc1,0x7c,0x62,0xa0,0xbf,0x68,0x15,0x56,0xd0,0x27,0xa6,0x3e,0xbe,0xcf, + 0x97,0x05,0xc7,0xac,0xc0,0x7d,0xdb,0xe7,0xa4,0x17,0xe2,0xd6,0x93,0x12,0x0b,0x4e,0x74,0xee,0x69,0x7b, + 0x99,0x37,0xdb,0x13,0x9d,0x59,0xdc,0xe2,0xf8,0x4f,0xa5,0x55,0xc5,0xeb,0x4b,0x13,0x45,0xa0,0xe2,0x68, + 0x43,0x01,0x97,0xa0,0xe8,0x17,0x46,0xed,0x70,0xfb,0x2e,0x53,0x0a,0xfd,0xd4,0x49,0xb0,0xc1,0x83,0x38, + 0x27,0xab,0x15,0xed,0xf9,0x5e,0x3f,0xee,0x7b,0xec,0x7d,0x4b,0x6b,0x87,0x5b,0x85,0xcc,0xb6,0x82,0xb8, + 0x85,0xa3,0x4a,0x66,0x81,0xb3,0x09,0x2b,0x7e,0x50,0xbe,0x0d,0xfd,0xcd,0xcf,0xaf,0xbf,0xf8,0xbc,0x7e, + 0xb5,0x4a,0xb7,0xd3,0xbf,0x55,0x78,0x76,0xcf,0x5f,0x97,0x9a,0x66,0xe4,0xfd,0x8d,0x36,0xb4,0x61,0x60, + 0xb6,0xa9,0xdf,0x36,0x4a,0x77,0x7a,0x87,0x42,0xf9,0xfa,0xff,0x03,0x4f,0xd9,0xea,0x2c,0xef,0x23,0x02, + 0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 4699f6c..4f56cfb 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 39; +const uint8_t VersionMetadata = 40; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+39"; +const char VersionFullSemVer[] = "2.0.0-beta.1+40"; const char VersionCommitDate[] = "2018-02-12"; #endif diff --git a/src/server/settings.cpp b/src/server/settings.cpp index cf3ce35..53a20b9 100644 --- a/src/server/settings.cpp +++ b/src/server/settings.cpp @@ -15,16 +15,30 @@ #include "../settings/connection.h" -void handleVersion(AsyncWebServerRequest *request) +void handleStatus(AsyncWebServerRequest *request) { - _dln("API :: version"); + _dln("API :: status"); - DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(2)); + DynamicJsonBuffer jsonBuffer(JSON_OBJECT_SIZE(6)); JsonObject& root = jsonBuffer.createObject(); root["systemID"] = String(ESP.getChipId(), HEX); root["version"] = String(VersionFullSemVer); + if (ntpClient != nullptr && hasTimezone) + { + root["time"] = ntpClient->getEpochTime(); + root["timeOffset"] = timezoneOffset; + } + else + { + root["time"] = false; + root["timeOffset"] = 0; + } + + root["resetReason"] = ESP.getResetReason(); + root["stackTrace"] = false; // TODO implement as part of #19 + AsyncResponseStream *response = request->beginResponseStream("application/json"); root.printTo(*response); @@ -147,7 +161,7 @@ void handlePostSteps(AsyncWebServerRequest *request, uint8_t *data, size_t len, void registerSettingsRoutes(AsyncWebServer* server) { - server->on("/api/version", HTTP_GET, handleVersion); + server->on("/api/status", HTTP_GET, handleStatus); server->on("/api/connection/status", HTTP_GET, handleConnectionStatus); diff --git a/web/app.js b/web/app.js index c3a5157..d081d10 100644 --- a/web/app.js +++ b/web/app.js @@ -141,9 +141,13 @@ function startApp() activeTab: 'status', - version: { + status: { systemID: 'loading...', version: 'loading...', + time: null, + timeOffset: 0, + resetReason: null, + stackTrace: false }, wifiStatus: { @@ -254,7 +258,7 @@ function startApp() // This is a horrible way to implement it, but I don't feel like // including a big library or working out a clean short solution // at the moment, and it works :) - self.loadVersion().then(function() + self.loadStatus().then(function() { self.loadConnection().then(function() { @@ -330,16 +334,16 @@ function startApp() self.showNotification(i18n.t(messageId) + '\n\n' + errorMessage, true); }, - loadVersion: function() + loadStatus: function() { var self = this; - return axios.get('/api/version') + return axios.get('/api/status') .then(function(response) { if (typeof response.data == 'object') - self.version = response.data; + self.status = response.data; }) - .catch(self.handleAPIError.bind(self, 'error.loadVersion')); + .catch(self.handleAPIError.bind(self, 'error.loadStatus')); }, loadConnection: function() @@ -950,6 +954,54 @@ function startApp() self.savingCalibration = false; }); }, + + deleteStackTrace: function() + { + var self = this; + + // TODO call /api/stacktrace/delete + + self.status.resetReason = 0; + self.status.stackTrace = false; + } + }, + + computed: { + hasResetError: function() + { + var self = this; + + /* + REASON_DEFAULT_RST = 0 normal startup by power on + REASON_WDT_RST = 1 hardware watch dog reset + REASON_EXCEPTION_RST = 2 exception reset, GPIO status won’t change + REASON_SOFT_WDT_RST = 3 software watch dog reset, GPIO status won’t change + REASON_SOFT_RESTART = 4 software restart ,system_restart , GPIO status won’t change + REASON_DEEP_SLEEP_AWAKE = 5 wake up from deep-sleep + REASON_EXT_SYS_RST = 6 system reset + */ + return (self.status.resetReason === 1 || + self.status.resetReason === 2 || + self.status.resetReason === 3 || + self.status.stackTrace); + }, + + getDeviceTime: function() + { + var self = this; + if (self.status.time === false) + return ''; + + var date = new Date(self.status.time * 1000); + var hours = date.getHours(); + var minutes = '0' + date.getMinutes(); + + var offsetHours = '0' + Math.floor(Math.abs(self.status.timeOffset / 60) / 60); + var offsetMinutes = '0' + Math.abs(self.status.timeOffset / 60) % 60; + var offset = (self.status.timeOffset >= 0 ? '+' : '-') + offsetHours.substr(-2) + ':' + offsetMinutes.substr(-2); + + return hours + ':' + minutes.substr(-2) + ' (' + offset + ')'; + } }, watch: { diff --git a/web/dist/bundle.css b/web/dist/bundle.css index a2ca75e..8c8dcca 100644 --- a/web/dist/bundle.css +++ b/web/dist/bundle.css @@ -1 +1 @@ -html{box-sizing:border-box;font-size:62.5%}*,:after,:before{box-sizing:inherit}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,button,h3,input[type=submit],select{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active,button.active,button:active,input[type=number],input[type=password],input[type=submit].active,input[type=submit]:active,input[type=text],textarea{border:1px solid #111;border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}button,input{font-family:Verdana,Arial,sans-serif}.button,button,input[type=submit]{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer;line-height:3rem}.button.focus,.button:focus,.button:hover,button.focus,button:focus,button:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active,button.active,button:active,input[type=submit].active,input[type=submit]:active{color:#ccc;background:#282828}.button-primary,input[type=submit]{background:#2265a1}.button-primary.focus,.button-primary:focus,.button-primary:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{background:#2672b6}a.button{text-decoration:none}.navigation{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.check.disabled,.radio.disabled{cursor:not-allowed}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:4px;left:4px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}.form-control{margin-top:1em}input[type=number],input[type=password],input[type=text],textarea{background:#404040;color:#fff;padding:.5em;width:100%}select{background:#404040;color:#fff;padding:.5em}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background:#282828;font-size:1.2rem;padding:.5rem}h4{font-size:1.4rem}input[disabled]{cursor:not-allowed;color:grey;background:#262626}label{display:block;margin-top:.5em;margin-bottom:.5em}.label-inline{margin-right:2rem}@media screen and (min-width:768px){.horizontal{clear:both}.horizontal label{display:inline-block}.horizontal input[type=number],.horizontal input[type=password],.horizontal input[type=text],.horizontal textarea{display:inline-block;float:right;width:50%}.horizontal:after{clear:both}}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{clear:both;text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slidercontainer{margin-top:1rem}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background:#404040;color:#fff}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header .label,.panel .panel-header a{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background:#303030;padding:2rem}.panel.active .panel-header{background:#3b4a58;color:#fff}.inline{display:inline-block;width:auto}.weekdays{margin-top:1rem}.weekdays .label{width:8em}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0}.range{clear:both}.range .start{position:relative;display:inline-block;width:49%}.range .start .slidercontainer{margin-right:4em}.range .start .value{position:absolute;right:0;top:1.5rem;color:grey}.range .end{position:relative;display:inline-block;float:right;width:50%}.range .end .slidercontainer{margin-left:4em}.range .end .value{position:absolute;left:0;top:1.5rem;color:grey}.range:after{clear:both} \ No newline at end of file +html{box-sizing:border-box;font-size:62.5%}*,:after,:before{box-sizing:inherit}body{background-color:#000;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,button,h3,input[type=submit],select{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active,button.active,button:active,input[type=number],input[type=password],input[type=submit].active,input[type=submit]:active,input[type=text],textarea{border:1px solid #111;border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}button,input{font-family:Verdana,Arial,sans-serif}.button,button,input[type=submit]{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer;line-height:3rem}.button.focus,.button:focus,.button:hover,button.focus,button:focus,button:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active,button.active,button:active,input[type=submit].active,input[type=submit]:active{color:#ccc;background:#282828}.button-primary,input[type=submit]{background:#2265a1}.button-primary.focus,.button-primary:focus,.button-primary:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{background:#2672b6}a.button{text-decoration:none}.navigation{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.check.disabled,.radio.disabled{cursor:not-allowed}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:4px;left:4px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}.form-control{margin-top:1em}input[type=number],input[type=password],input[type=text],textarea{background:#404040;color:#fff;padding:.5em;width:100%}select{background:#404040;color:#fff;padding:.5em}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background:#282828;font-size:1.2rem;padding:.5rem}h4{font-size:1.4rem}input[disabled]{cursor:not-allowed;color:grey;background:#262626}label{display:block;margin-top:.5em;margin-bottom:.5em}.label-inline{margin-right:2rem}@media screen and (min-width:768px){.horizontal{clear:both}.horizontal label{display:inline-block}.horizontal input[type=number],.horizontal input[type=password],.horizontal input[type=text],.horizontal textarea{display:inline-block;float:right;width:50%}.horizontal:after{clear:both}}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{clear:both;text-align:center}.sliders{margin-top:2rem}.step{margin-left:3rem;margin-right:3rem;position:relative}.step .slidercontainer{margin-right:4em}.step .value{position:absolute;right:0;top:.1rem;color:grey}.slidercontainer{margin-top:1rem}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background:#404040;color:#fff}.panel .panel-header label{font-size:1em}@media screen and (min-width:768px){.panel .panel-header .actions{float:right}}.panel .panel-header .label,.panel .panel-header a{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background:#303030;padding:2rem}.panel.active .panel-header{background:#3b4a58;color:#fff}.inline{display:inline-block;width:auto}.weekdays{margin-top:1rem}.weekdays .label{width:8em}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0}.range{clear:both}.range .start{position:relative;display:inline-block;width:49%}.range .start .slidercontainer{margin-right:4em}.range .start .value{position:absolute;right:0;top:1.5rem;color:grey}.range .end{position:relative;display:inline-block;float:right;width:50%}.range .end .slidercontainer{margin-left:4em}.range .end .value{position:absolute;left:0;top:1.5rem;color:grey}.range:after{clear:both}.resetReason{margin-left:2em} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js index 9e0967a..c4fbc8d 100644 --- a/web/dist/bundle.js +++ b/web/dist/bundle.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(5),s=n(6),c=r(s);c.Axios=a,c.create=function(e){return r(i.merge(s,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(20),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===l.call(e)}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Function]"===l.call(e)}function a(e,t){if(null!==e&&void 0!==e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,i=e.length;n=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(a)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),o=n(12),a=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))}))}),o=a.join("&")}return o&&(e+=(-1===e.indexOf("?")?"?":"&")+o),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,o=String(e),a="",s=0,c=r;o.charAt(0|s)||(c="=",s%1);a+=c.charAt(63&t>>8-s%1*8)){if((i=o.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return a}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),o=n(19),a=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return a(t)||(r(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function o(e){return"[object Object]"===mn.call(e)}function a(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(a||"")+"_"+s))[0])&&X(u)&&(f[l]=k(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=k(u.text+c):""!==c&&f.push(k(c)):X(c)&&X(u)?f[l]=k(u.text+c.text):(n(o._isVList)&&t(c.tag)&&e(c.key)&&t(a)&&(c.key="__vlist"+a+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[o],r[o],i[o]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Pe(e){this._init(e)}function De(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=De(a.componentOptions);s&&!t(s)&&Le(n,o,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,o=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===o?(h=i+1,o=e.slice(0,i).trim()):t();if(void 0===o?o=e.slice(0,i).trim():0!==h&&t(),a)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Wr=e,Hr=zr=Kr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Wr.charCodeAt(++Hr)}function ct(){return Hr>=Vr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(o=t)._withTask||(o._withTask=function(){hr=!0;var e=o.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var o}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},o=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,o,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,o,a=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(a[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i){a._value=o;var u=e(o)?"":String(o);d=u,!(f=a).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(a.value=u)}else a[i]=o}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?ki(e):e}function gt(n,r){var i=r.data,o=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(o.staticStyle)&&e(o.style))){var a,s,c=r.elm,l=o.staticStyle,u=o.normalizedStyle||o.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var o=e;o=o.parent;)o.data&&(n=vt(o.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(a=p[s])!==f[s]&&Ai(c,s,null==a?"":a)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Pi(e.name||"v")),v(t,e),t}return"string"==typeof e?Pi(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Ct(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function Tt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function kt(e,t,n){var r=xt(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===ji?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c0&&(n=ji,u=a,f=o.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?ji:Ii:null)?n===ji?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===ji&&Bi.test(r[Li+"Property"])}}function St(e,t){for(;e.length1}function Dt(e,t){!0!==t.data.show&&$t(t)}function jt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(y(Ft(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Vt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Vt(Q(t.children)):e}function Wt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[wn(o)]=i[o];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}function qt(e,t){var n=t?Eo:Oo;return e.replace(n,function(e){return $o[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',ko.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Cn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),Tn=/\B([A-Z])/g,kn=d(function(e){return e.replace(Tn,"-$1").toLowerCase()}),xn=function(e,t,n){return!1},Sn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:xn,isReservedAttr:xn,isUnknownElement:xn,getTagNamespace:g,parsePlatformTagName:Sn,mustUseProp:xn,_lifecycleHooks:On},Pn=/[^\w.$]/,Dn="__proto__"in{},jn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=jn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Vn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Wn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(jn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!jn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=jn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&T(Symbol)&&"undefined"!=typeof Reflect&&T(Reflect.ownKeys);Kn="undefined"!=typeof Set&&T(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Cr[n].id>e.id;)n--;Cr.splice(n+1,0,e)}else Cr.push(e);xr||(xr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Pr={lazy:!0};xe(Se.prototype);var Dr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,o,a){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var o=e;Dr.prepatch(o,o)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){ar.shouldConvert=!1;for(var a=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,o=n.length;iparseInt(this.max)&&Le(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name,a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=L(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$n.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=v({},a.options),i[r]=a,a}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&o(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(Pe),Object.defineProperty(Pe.prototype,"$isServer",{get:qn}),Object.defineProperty(Pe.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Pe.version="2.5.13";var Vr,Wr,Ur,Hr,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},oi=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),ai=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return oi(e)||ai(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){Ve(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Ve(e,!0),Ve(t))},destroy:function(e){Ve(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ci={create:pt,update:pt},Ti={create:ht,update:ht},ki=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),xi=/^--/,Si=/\s*!important$/,Ai=function(e,t,n){if(xi.test(t))e.style.setProperty(t,n);else if(Si.test(n))e.style.setProperty(t,n.replace(Si,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,o=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,o):d>b&&m(0,r,f,p)}(c,d,p,o,s):t(p)?(t(r.text)&&x.setTextContent(c,""),h(c,null,p,0,p.length-1,o)):t(d)?m(0,d,0,d.length-1):t(r.text)&&x.setTextContent(c,""):r.text!==i.text&&x.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var o=0;o-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(Pe.options.directives,Ui),v(Pe.options.components,qi),Pe.prototype.__patch__=jn?Vi:g,Pe.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&jn?Be(e):void 0,t)},Pe.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",Pe)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(ki(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},eo=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),to=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),no=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ro=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,io="[a-zA-Z_][\\w\\-\\.]*",oo="((?:"+io+"\\:)?"+io+")",ao=new RegExp("^<"+oo),so=/^\s*(\/?)>/,co=new RegExp("^<\\/"+oo+"[^>]*>"),lo=/^]+>/i,uo=/^/g,"$1").replace(//g,"$1")),Do(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(uo.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fo.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(lo);if(y){n(y[0].length);continue}var b=e.match(co);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(ao);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,o;!(i=e.match(so))&&(o=e.match(ro));)n(o[0].length),r.attrs.push(o);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===o&&no(n)&&r(o),l(n)&&o===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(T=e.slice(v);!(co.test(T)||ao.test(T)||uo.test(T)||fo.test(T)||(k=T.indexOf("<",1))<0);)v+=k,T=e.slice(v);C=e.substring(0,v),n(v)}v<0&&(C=e,e=""),t.chars&&C&&t.chars(C)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:ho,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,a,l){var u=i&&i.ns||wo(e);Nn&&"svg"===u&&(a=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=Xe(r[1].trim());a.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function a(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,o=n.children,a=n.parent.$i18n;if(o=(o||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!a)return o;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=o.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&o.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),o.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,a.i(s,c,l))}},C=function(){this._caches=Object.create(null)};C.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[x]();else{if(f=0,!1===(n=p(n)))return!1;h[S]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===P&&"'"===t||u===D&&'"'===t)return l++,r="\\"+t,h[x](),!0}()){if(i=d(t),(o=(s=L[u])[i]||s.else||I)===I)return;if(u=o[0],(a=h[o[1]])&&(r=o[2],r=void 0===r?t:r,!1===a()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,o=r.length,a=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return a(this._getMessages())},R.dateTimeFormats.get=function(){return a(this._getDateTimeFormats())},R.numberFormats.get=function(){return a(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,o,a,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,o,a,s)),s?this._render(l,a,s):l},M.prototype._link=function(e,t,n,r,i,o){var a=n,s=a.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:o);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,o)}a=(f=this._warnDefault(e,u,f,r))?a.replace(l,f):a}return a},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,o,a,s){var c=this._interpolate(t,e[t],i,o,a,s);return r(c)?r(c=this._interpolate(n,e[n],i,o,a,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var o=[],a=arguments.length-4;a-- >0;)o[a]=arguments[a+4];if(!e)return"";var s=i.apply(void 0,o),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(o))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var o=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,o,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var a=[],s=arguments.length-5;s-- >0;)a[s]=arguments[s+5];return e?(void 0===i&&(i=1),o((c=this)._t.apply(c,[e,t,n,r].concat(a)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],o=arguments.length-3;o-- >0;)r[o]=arguments[o+3];var a=i.apply(void 0,r).locale||t;return this._exist(n[a],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return a(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return a(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(a,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,o)},M.prototype.getNumberFormat=function(e){return a(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,o){var a=t,s=i[a];if((r(s)||r(s[o]))&&(a=n,s=i[a]),r(s)||r(s[o]))return null;var c=s[o],l=a+"__"+o,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(a,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,o=null;return 1===n.length?"string"==typeof n[0]?o=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(o=n[0].key)):2===n.length&&("string"==typeof n[0]&&(o=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,o)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var o=e.$i18n;return o._tc.apply(o,[t,o.locale,o._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadVersion:"Could not load information about the system",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings",loadSteps:"Could not load calibration settings",updateCalibration:"Could not save calibration settings"},calibration:{title:"Calibration wizard",backButton:"Back",count:"Number of steps",nextButton:"Next",applyButton:"Complete",allStepsValue:"Intensity for all steps",ranges:"Min / max values per step",useCurve:"Use logarithmic curve for intensity (recommended for LEDs)"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadVersion:"Kan systeeminformatie niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan",loadSteps:"Kan kalibratie instellingen niet ophalen",updateCalibration:"Kan kalibratie instellingen niet opslaan"},calibration:{title:"Kalibratie wizard",backButton:"Terug",count:"Aantal treden",nextButton:"Volgende",applyButton:"Voltooien",allStepsValue:"Intensiteit voor alle treden",ranges:"Min / max waarden per trede",useCurve:"Gebruik logaritmische curve voor intensiteit (aangeraden voor LEDs)"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("range",{template:'
{{ value.start }}
{{ value.end }}
',props:["value"],mounted:function(){this.oldValue={start:this.value.start,end:this.value.end}},watch:{value:{handler:function(e){e.start!=this.oldValue.start?e.start>e.end&&(e.end=e.start+1,this.$emit("input",e)):e.end!=this.oldValue.end&&e.end0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,o=[],a=0;a0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&(n+=e>=0?"+":"-");var r=(e=Math.abs(e))%60;return n+=Math.floor(e/60)+":",r<10&&(n+="0"),n+=r},startCalibration:function(){var e=this;axios.get("/api/steps").then(function(t){"object"==typeof t.data&&(e.calibration={wizardStep:0,count:t.data.count,useCurve:t.data.useCurve,ranges:t.data.ranges})}).catch(e.handleAPIError.bind(e,"error.loadSteps"))},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){if(0==this.calibration.wizardStep)if(this.calibration.count<1?this.calibration.count=1:this.calibration.count>16&&(this.calibration.count=16),this.calibration.ranges.length>this.calibration.count)this.calibration.ranges.splice(this.calibration.count);else for(;this.calibration.ranges.length=200&&e<300}};s.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],function(e){s.headers[e]={}}),i.forEach(["post","put","patch"],function(e){s.headers[e]=i.merge(o)}),e.exports=s},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),i=n(9),a=n(12),o=n(13),s=n(14),c=n(10),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(15);e.exports=function(e){return new Promise(function(t,u){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in p||s(e.url)||(p=new window.XDomainRequest,h="onload",v=!0,p.onprogress=function(){},p.ontimeout=function(){}),e.auth){var m=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(m+":"+g)}if(p.open(e.method.toUpperCase(),a(e.url,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p[h]=function(){if(p&&(4===p.readyState||v)&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?o(p.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:1223===p.status?204:p.status,statusText:1223===p.status?"No Content":p.statusText,headers:n,config:e,request:p};i(t,u,r),p=null}},p.onerror=function(){u(c("Network Error",e,null,p)),p=null},p.ontimeout=function(){u(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var y=n(16),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;b&&(d[e.xsrfHeaderName]=b)}if("setRequestHeader"in p&&r.forEach(d,function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)}),e.withCredentials&&(p.withCredentials=!0),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){p&&(p.abort(),u(e),p=null)}),void 0===f&&(f=null),p.send(f)})}},function(e,t,n){"use strict";var r=n(10);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var r=n(11);e.exports=function(e,t,n,i,a){var o=new Error(e);return r(o,t,n,i,a)}},function(e,t){"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e}},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=n(2);e.exports=function(e,t,n){if(!t)return e;var a;if(n)a=n(t);else if(i.isURLSearchParams(t))a=t.toString();else{var o=[];i.forEach(t,function(e,t){null!==e&&void 0!==e&&(i.isArray(e)&&(t+="[]"),i.isArray(e)||(e=[e]),i.forEach(e,function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),o.push(r(t)+"="+r(e))}))}),a=o.join("&")}return a&&(e+=(-1===e.indexOf("?")?"?":"&")+a),e}},function(e,t,n){"use strict";var r=n(2),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,a,o={};return e?(r.forEach(e.split("\n"),function(e){if(a=e.indexOf(":"),t=r.trim(e.substr(0,a)).toLowerCase(),n=r.trim(e.substr(a+1)),t){if(o[t]&&i.indexOf(t)>=0)return;o[t]="set-cookie"===t?(o[t]?o[t]:[]).concat([n]):o[t]?o[t]+", "+n:n}}),o):o}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(i.setAttribute("href",t),t=i.href),i.setAttribute("href",t),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:"/"===i.pathname.charAt(0)?i.pathname:"/"+i.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a");return t=e(window.location.href),function(n){var i=r.isString(n)?e(n):n;return i.protocol===t.protocol&&i.host===t.host}}():function(){return!0}},function(e,t){"use strict";function n(){this.message="String contains an invalid character"}var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.prototype=new Error,n.prototype.code=5,n.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,i,a=String(e),o="",s=0,c=r;a.charAt(0|s)||(c="=",s%1);o+=c.charAt(63&t>>8-s%1*8)){if((i=a.charCodeAt(s+=.75))>255)throw new n;t=t<<8|i}return o}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,a,o){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(a)&&s.push("domain="+a),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";function r(){this.handlers=[]}var i=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var i=n(2),a=n(19),o=n(20),s=n(6),c=n(21),l=n(22);e.exports=function(e){r(e),e.baseURL&&!c(e.url)&&(e.url=l(e.baseURL,e.url)),e.headers=e.headers||{},e.data=a(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),i.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});return(e.adapter||s.adapter)(e).then(function(t){return r(e),t.data=a(t.data,t.headers,e.transformResponse),t},function(t){return o(t)||(r(e),t&&t.response&&(t.response.data=a(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new i(e),t(n.reason))})}var i=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r(function(t){e=t}),cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])}),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){"use strict";function e(e){return void 0===e||null===e}function t(e){return void 0!==e&&null!==e}function n(e){return!0===e}function r(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function i(e){return null!==e&&"object"==typeof e}function a(e){return"[object Object]"===mn.call(e)}function o(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function s(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function c(e){var t=parseFloat(e);return isNaN(t)?e:t}function l(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}function f(e,t){return bn.call(e,t)}function d(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function p(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function v(e,t){for(var n in t)e[n]=t[n];return e}function m(e){for(var t={},n=0;n0&&(X((c=i(c,(o||"")+"_"+s))[0])&&X(u)&&(f[l]=C(u.text+c[0].text),c.shift()),f.push.apply(f,c)):r(c)?X(u)?f[l]=C(u.text+c):""!==c&&f.push(C(c)):X(c)&&X(u)?f[l]=C(u.text+c.text):(n(a._isVList)&&t(c.tag)&&e(c.key)&&t(o)&&(c.key="__vlist"+o+"_"+s+"__"),f.push(c)));return f}(l):void 0:c===Ir&&(s=function(e){for(var t=0;t=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}(n[a],r[a],i[a]));return t}(e);r&&v(e.extendOptions,r),(t=e.options=L(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function De(e){this._init(e)}function Pe(e){return e&&(e.Ctor.options.name||e.tag)}function je(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==mn.call(n))&&e.test(t));var n}function Ie(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var a in n){var o=n[a];if(o){var s=Pe(o.componentOptions);s&&!t(s)&&Le(n,a,r,i)}}}function Le(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,u(n,t)}function Fe(e,n){return{staticClass:Ne(e.staticClass,n.staticClass),class:t(e.class)?[e.class,n.class]:n.class}}function Ne(e,t){return e?t?e+" "+t:e:t||""}function Me(e){return Array.isArray(e)?function(e){for(var n,r="",i=0,a=e.length;i=0&&" "===(m=e.charAt(v));v--);m&&bi.test(m)||(u=!0)}}else void 0===a?(h=i+1,a=e.slice(0,i).trim()):t();if(void 0===a?a=e.slice(0,i).trim():0!==h&&t(),o)for(i=0;i-1?{exp:e.slice(0,Hr),key:'"'+e.slice(Hr+1)+'"'}:{exp:e,key:null};for(Vr=e,Hr=zr=Kr=0;!ct();)lt(Ur=st())?ut(Ur):91===Ur&&function(e){var t=1;for(zr=Hr;!ct();)if(e=st(),lt(e))ut(e);else if(91===e&&t++,93===e&&t--,0===t){Kr=Hr;break}}(Ur);return{exp:e.slice(0,zr),key:e.slice(zr+1,Kr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function st(){return Vr.charCodeAt(++Hr)}function ct(){return Hr>=Wr}function lt(e){return 34===e||39===e}function ut(e){for(var t=e;!ct()&&(e=st())!==t;);}function ft(e,t,n,r,i){t=(a=t)._withTask||(a._withTask=function(){hr=!0;var e=a.apply(null,arguments);return hr=!1,e}),n&&(t=function(e,t,n){var r=qr;return function i(){null!==e.apply(null,arguments)&&dt(t,i,n,r)}}(t,e,r)),qr.addEventListener(e,t,Un?{capture:r,passive:i}:r);var a}function dt(e,t,n,r){(r||qr).removeEventListener(e,t._withTask||t,n)}function pt(n,r){if(!e(n.data.on)||!e(r.data.on)){var i=r.data.on||{},a=n.data.on||{};qr=r.elm,function(e){if(t(e[_i])){var n=Nn?"change":"input";e[n]=[].concat(e[_i],e[n]||[]),delete e[_i]}t(e[wi])&&(e.change=[].concat(e[wi],e.change||[]),delete e[wi])}(i),q(i,a,ft,dt,r.context),qr=void 0}}function ht(n,r){if(!e(n.data.domProps)||!e(r.data.domProps)){var i,a,o=r.elm,s=n.data.domProps||{},l=r.data.domProps||{};t(l.__ob__)&&(l=r.data.domProps=v({},l));for(i in s)e(l[i])&&(o[i]="");for(i in l){if(a=l[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),a===s[i])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===i){o._value=a;var u=e(a)?"":String(a);d=u,!(f=o).composing&&("OPTION"===f.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(f,d)||function(e,n){var r=e.value,i=e._vModifiers;if(t(i)){if(i.lazy)return!1;if(i.number)return c(r)!==c(n);if(i.trim)return r.trim()!==n.trim()}return r!==n}(f,d))&&(o.value=u)}else o[i]=a}}var f,d}function vt(e){var t=mt(e.style);return e.staticStyle?v(e.staticStyle,t):t}function mt(e){return Array.isArray(e)?m(e):"string"==typeof e?Ci(e):e}function gt(n,r){var i=r.data,a=n.data;if(!(e(i.staticStyle)&&e(i.style)&&e(a.staticStyle)&&e(a.style))){var o,s,c=r.elm,l=a.staticStyle,u=a.normalizedStyle||a.style||{},f=l||u,d=mt(r.data.style)||{};r.data.normalizedStyle=t(d.__ob__)?v({},d):d;var p=function(e,t){for(var n,r={},i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vt(i.data))&&v(r,n);(n=vt(e.data))&&v(r,n);for(var a=e;a=a.parent;)a.data&&(n=vt(a.data))&&v(r,n);return r}(r);for(s in f)e(p[s])&&Ai(c,s,"");for(s in p)(o=p[s])!==f[s]&&Ai(c,s,null==o?"":o)}}function yt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function bt(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function _t(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&v(t,Di(e.name||"v")),v(t,e),t}return"string"==typeof e?Di(e):void 0}}function wt(e){Ri(function(){Ri(e)})}function Tt(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yt(e,t))}function kt(e,t){e._transitionClasses&&u(e._transitionClasses,t),bt(e,t)}function Ct(e,t,n){var r=St(e,t),i=r.type,a=r.timeout,o=r.propCount;if(!i)return n();var s=i===ji?Fi:Mi,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=o&&l()};setTimeout(function(){c0&&(n=ji,u=o,f=a.length):t===Ii?l>0&&(n=Ii,u=l,f=c.length):f=(n=(u=Math.max(o,l))>0?o>l?ji:Ii:null)?n===ji?a.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===ji&&Bi.test(r[Li+"Property"])}}function xt(e,t){for(;e.length1}function Pt(e,t){!0!==t.data.show&&$t(t)}function jt(e,t,n){It(e,t,n),(Nn||Rn)&&setTimeout(function(){It(e,t,n)},0)}function It(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var a,o,s=0,c=e.options.length;s-1,o.selected!==a&&(o.selected=a);else if(y(Ft(o),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Lt(e,t){return t.every(function(t){return!y(t,e)})}function Ft(e){return"_value"in e?e._value:e.value}function Nt(e){e.target.composing=!0}function Mt(e){e.target.composing&&(e.target.composing=!1,Rt(e.target,"input"))}function Rt(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Bt(e){return!e.componentInstance||e.data&&e.data.transition?e:Bt(e.componentInstance._vnode)}function Wt(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Wt(Q(t.children)):e}function Vt(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var a in i)t[wn(a)]=i[a];return t}function Ut(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function Ht(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function zt(e){e.data.newPos=e.elm.getBoundingClientRect()}function Kt(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var a=e.elm.style;a.transform=a.WebkitTransform="translate("+r+"px,"+i+"px)",a.transitionDuration="0s"}}function qt(e,t){var n=t?Oa:$a;return e.replace(n,function(e){return Aa[e]})}function Jt(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n':'
',ka.innerHTML.indexOf(" ")>0}var vn=Object.freeze({}),mn=Object.prototype.toString,gn=l("slot,component",!0),yn=l("key,ref,slot,slot-scope,is"),bn=Object.prototype.hasOwnProperty,_n=/-(\w)/g,wn=d(function(e){return e.replace(_n,function(e,t){return t?t.toUpperCase():""})}),Tn=d(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),kn=/\B([A-Z])/g,Cn=d(function(e){return e.replace(kn,"-$1").toLowerCase()}),Sn=function(e,t,n){return!1},xn=function(e){return e},An="data-server-rendered",$n=["component","directive","filter"],On=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],En={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Sn,isReservedAttr:Sn,isUnknownElement:Sn,getTagNamespace:g,parsePlatformTagName:xn,mustUseProp:Sn,_lifecycleHooks:On},Dn=/[^\w.$]/,Pn="__proto__"in{},jn="undefined"!=typeof window,In="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Ln=In&&WXEnvironment.platform.toLowerCase(),Fn=jn&&window.navigator.userAgent.toLowerCase(),Nn=Fn&&/msie|trident/.test(Fn),Mn=Fn&&Fn.indexOf("msie 9.0")>0,Rn=Fn&&Fn.indexOf("edge/")>0,Bn=Fn&&Fn.indexOf("android")>0||"android"===Ln,Wn=Fn&&/iphone|ipad|ipod|ios/.test(Fn)||"ios"===Ln,Vn=(Fn&&/chrome\/\d+/.test(Fn),{}.watch),Un=!1;if(jn)try{var Hn={};Object.defineProperty(Hn,"passive",{get:function(){Un=!0}}),window.addEventListener("test-passive",null,Hn)}catch(e){}var zn,Kn,qn=function(){return void 0===zn&&(zn=!jn&&"undefined"!=typeof global&&"server"===global.process.env.VUE_ENV),zn},Jn=jn&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Gn="undefined"!=typeof Symbol&&k(Symbol)&&"undefined"!=typeof Reflect&&k(Reflect.ownKeys);Kn="undefined"!=typeof Set&&k(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var Xn=g,Zn=0,Yn=function(){this.id=Zn++,this.subs=[]};Yn.prototype.addSub=function(e){this.subs.push(e)},Yn.prototype.removeSub=function(e){u(this.subs,e)},Yn.prototype.depend=function(){Yn.target&&Yn.target.addDep(this)},Yn.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;tAr&&Tr[n].id>e.id;)n--;Tr.splice(n+1,0,e)}else Tr.push(e);Sr||(Sr=!0,H(le))}}(this)},Or.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||i(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){B(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Or.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Or.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},Or.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||u(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Er={enumerable:!0,configurable:!0,get:g,set:g},Dr={lazy:!0};Se(xe.prototype);var Pr={init:function(e,n,r,i){if(!e.componentInstance||e.componentInstance._isDestroyed)(e.componentInstance=function(e,n,a,o){var s={_isComponent:!0,parent:wr,_parentVnode:e,_parentElm:r||null,_refElm:i||null},c=e.data.inlineTemplate;return t(c)&&(s.render=c.render,s.staticRenderFns=c.staticRenderFns),new e.componentOptions.Ctor(s)}(e)).$mount(n?e.elm:void 0,n);else if(e.data.keepAlive){var a=e;Pr.prepatch(a,a)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var a=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==vn);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data&&r.data.attrs||vn,e.$listeners=n||vn,t&&e.$options.props){or.shouldConvert=!1;for(var o=e._props,s=e.$options._propKeys||[],c=0;c1?h(n):n;for(var r=h(arguments,1),i=0,a=n.length;iparseInt(this.max)&&Le(o,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={};t.get=function(){return En},Object.defineProperty(e,"config",t),e.util={warn:Xn,extend:v,mergeOptions:L,defineReactive:$},e.set=O,e.delete=E,e.nextTick=H,e.options=Object.create(null),$n.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,v(e.options.components,Br),e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=h(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this},e.mixin=function(e){return this.options=L(this.options,e),this},function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var a=e.name||n.options.name,o=function(e){this._init(e)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=t++,o.options=L(n.options,e),o.super=n,o.options.props&&function(e){var t=e.options.props;for(var n in t)ue(e.prototype,"_props",n)}(o),o.options.computed&&function(e){var t=e.options.computed;for(var n in t)fe(e.prototype,n,t[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,$n.forEach(function(e){o[e]=n[e]}),a&&(o.options.components[a]=o),o.superOptions=n.options,o.extendOptions=e,o.sealedOptions=v({},o.options),i[r]=o,o}}(e),n=e,$n.forEach(function(e){n[e]=function(t,n){return n?("component"===e&&a(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}});var n}(De),Object.defineProperty(De.prototype,"$isServer",{get:qn}),Object.defineProperty(De.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),De.version="2.5.13";var Wr,Vr,Ur,Hr,zr,Kr,qr,Jr,Gr=l("style,class"),Xr=l("input,textarea,option,select,progress"),Zr=function(e,t,n){return"value"===n&&Xr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Yr=l("contenteditable,draggable,spellcheck"),Qr=l("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ei="http://www.w3.org/1999/xlink",ti=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},ni=function(e){return ti(e)?e.slice(6,e.length):""},ri=function(e){return null==e||!1===e},ii={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ai=l("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),oi=l("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),si=function(e){return ai(e)||oi(e)},ci=Object.create(null),li=l("text,number,password,search,email,tel,url"),ui=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(ii[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setAttribute:function(e,t,n){e.setAttribute(t,n)}}),fi={create:function(e,t){We(t)},update:function(e,t){e.data.ref!==t.data.ref&&(We(e,!0),We(t))},destroy:function(e){We(e,!0)}},di=new er("",{},[]),pi=["create","activate","update","remove","destroy"],hi={create:He,update:He,destroy:function(e){He(e,di)}},vi=Object.create(null),mi=[fi,hi],gi={create:qe,update:qe},yi={create:Ge,update:Ge},bi=/[\w).+\-_$\]]/,_i="__r",wi="__c",Ti={create:pt,update:pt},ki={create:ht,update:ht},Ci=d(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}),Si=/^--/,xi=/\s*!important$/,Ai=function(e,t,n){if(Si.test(t))e.style.setProperty(t,n);else if(xi.test(n))e.style.setProperty(t,n.replace(xi,""),"important");else{var r=Oi(t);if(Array.isArray(n))for(var i=0,a=n.length;ip?h(n,e(i[b+1])?null:i[b+1].elm,i,d,b,a):d>b&&m(0,r,f,p)}(c,d,p,a,s):t(p)?(t(r.text)&&S.setTextContent(c,""),h(c,null,p,0,p.length-1,a)):t(d)?m(0,d,0,d.length-1):t(r.text)&&S.setTextContent(c,""):r.text!==i.text&&S.setTextContent(c,i.text),t(u)&&t(l=u.hook)&&t(l=l.postpatch)&&l(r,i)}}}function b(e,r,i){if(n(i)&&t(e.parent))e.parent.data.pendingInsert=r;else for(var a=0;a-1?ci[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ci[e]=/HTMLUnknownElement/.test(t.toString())},v(De.options.directives,Ui),v(De.options.components,qi),De.prototype.__patch__=jn?Wi:g,De.prototype.$mount=function(e,t){return function(e,t,n){e.$el=t,e.$options.render||(e.$options.render=nr),ce(e,"beforeMount");return new Or(e,function(){e._update(e._render(),n)},g,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,ce(e,"mounted")),e}(this,e=e&&jn?Be(e):void 0,t)},De.nextTick(function(){En.devtools&&Jn&&Jn.emit("init",De)},0);var Ji,Gi=/\{\{((?:.|\n)+?)\}\}/g,Xi=/[-.*+?^${}()|[\]\/\\]/g,Zi=d(function(e){var t=e[0].replace(Xi,"\\$&"),n=e[1].replace(Xi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),Yi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=it(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=rt(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},Qi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=it(e,"style");n&&(e.staticStyle=JSON.stringify(Ci(n)));var r=rt(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},ea=l("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),ta=l("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),na=l("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ra=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ia="[a-zA-Z_][\\w\\-\\.]*",aa="((?:"+ia+"\\:)?"+ia+")",oa=new RegExp("^<"+aa),sa=/^\s*(\/?)>/,ca=new RegExp("^<\\/"+aa+"[^>]*>"),la=/^]+>/i,ua=/^/g,"$1").replace(//g,"$1")),Da(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});u+=e.length-h.length,e=h,r(d,u-f,u)}else{var v=e.indexOf("<");if(0===v){if(ua.test(e)){var m=e.indexOf("--\x3e");if(m>=0){t.shouldKeepComment&&t.comment(e.substring(4,m)),n(m+3);continue}}if(fa.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var y=e.match(la);if(y){n(y[0].length);continue}var b=e.match(ca);if(b){var _=u;n(b[0].length),r(b[1],_,u);continue}var w=function(){var t=e.match(oa);if(t){var r={tagName:t[1],attrs:[],start:u};n(t[0].length);for(var i,a;!(i=e.match(sa))&&(a=e.match(ra));)n(a[0].length),r.attrs.push(a);if(i)return r.unarySlash=i[1],n(i[0].length),r.end=u,r}}();if(w){!function(e){var n=e.tagName,i=e.unarySlash;s&&("p"===a&&na(n)&&r(a),l(n)&&a===n&&r(n));for(var u=c(n)||!!i,f=e.attrs.length,d=new Array(f),p=0;p=0){for(k=e.slice(v);!(ca.test(k)||oa.test(k)||ua.test(k)||fa.test(k)||(C=k.indexOf("<",1))<0);)v+=C,k=e.slice(v);T=e.substring(0,v),n(v)}v<0&&(T=e,e=""),t.chars&&T&&t.chars(T)}if(e===i){t.chars&&t.chars(e);break}}r()}(e,{warn:pa,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,o,l){var u=i&&i.ns||_a(e);Nn&&"svg"===u&&(o=function(e){for(var t=[],n=0;nc&&(s.push(a=e.slice(c,i)),o.push(JSON.stringify(a)));var l=Xe(r[1].trim());o.push("_s("+l+")"),s.push({"@binding":l}),c=i+r[0].length}return c1?1:0:1:e?Math.min(e,2):0;var n}(t,n.length)]?n[t].trim():e}function o(e){return JSON.parse(JSON.stringify(e))}function s(e){for(var n=arguments,r=Object(e),i=1;i=97&&t<=122||t>=65&&t<=90?"ident":t>=49&&t<=57?"number":"else"}function p(e){var t=e.trim();return("0"!==e.charAt(0)||!isNaN(e))&&(n=t,F.test(n)?function(e){var t=e.charCodeAt(0);return t!==e.charCodeAt(e.length-1)||34!==t&&39!==t?e:e.slice(1,-1)}(t):"*"+t);var n}var h,v=Object.prototype.toString,m="[object Object]",g=Object.prototype.hasOwnProperty,y="undefined"!=typeof Intl&&void 0!==Intl.DateTimeFormat,b="undefined"!=typeof Intl&&void 0!==Intl.NumberFormat,_={beforeCreate:function(){var e=this.$options;if(e.i18n=e.i18n||(e.__i18n?{}:null),e.i18n){if(e.i18n instanceof M){if(e.__i18n)try{var t={};e.__i18n.forEach(function(e){t=s(t,JSON.parse(e))}),Object.keys(t).forEach(function(n){e.i18n.mergeLocaleMessage(n,t[n])})}catch(e){}this._i18n=e.i18n,this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0}else if(n(e.i18n)){if(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M&&(e.i18n.root=this.$root.$i18n,e.i18n.fallbackLocale=this.$root.$i18n.fallbackLocale,e.i18n.silentTranslationWarn=this.$root.$i18n.silentTranslationWarn),e.__i18n)try{var r={};e.__i18n.forEach(function(e){r=s(r,JSON.parse(e))}),e.i18n.messages=r}catch(e){}this._i18n=new M(e.i18n),this._i18nWatcher=this._i18n.watchI18nData(),this._i18n.subscribeDataChanging(this),this._subscribing=!0,(void 0===e.i18n.sync||e.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale())}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof M?(this._i18n=this.$root.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0):e.parent&&e.parent.$i18n&&e.parent.$i18n instanceof M&&(this._i18n=e.parent.$i18n,this._i18n.subscribeDataChanging(this),this._subscribing=!0)},beforeDestroy:function(){this._i18n&&(this._subscribing&&(this._i18n.unsubscribeDataChanging(this),delete this._subscribing),this._i18nWatcher&&(this._i18nWatcher(),delete this._i18nWatcher),this._localeWatcher&&(this._localeWatcher(),delete this._localeWatcher),this._i18n=null)}},w={name:"i18n",functional:!0,props:{tag:{type:String,default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,n){var r=n.props,i=n.data,a=n.children,o=n.parent.$i18n;if(a=(a||[]).filter(function(e){return e.tag||(e.text=e.text.trim())}),!o)return a;var s=r.path,c=r.locale,l={},u=r.places||{},f=Array.isArray(u)?u.length>0:Object.keys(u).length>0,d=a.every(function(e){if(e.data&&e.data.attrs){var t=e.data.attrs.place;return void 0!==t&&""!==t}});return f&&a.length>0&&!d&&e("If places prop is set, all child elements must have place prop set."),Array.isArray(u)?u.forEach(function(e,t){l[t]=e}):Object.keys(u).forEach(function(e){l[e]=u[e]}),a.forEach(function(e,t){var n=d?""+e.data.attrs.place:""+t;l[n]=e}),t(r.tag,i,o.i(s,c,l))}},T=function(){this._caches=Object.create(null)};T.prototype.interpolate=function(e,n){var r=this._caches[e];return r||(r=function(e){for(var t=[],n=0,r="";n0)f--,u=E,h[S]();else{if(f=0,!1===(n=p(n)))return!1;h[x]()}};null!==u;)if(l++,"\\"!==(t=e[l])||!function(){var t=e[l+1];if(u===D&&"'"===t||u===P&&'"'===t)return l++,r="\\"+t,h[S](),!0}()){if(i=d(t),(a=(s=L[u])[i]||s.else||I)===I)return;if(u=a[0],(o=h[a[1]])&&(r=a[2],r=void 0===r?t:r,!1===o()))return;if(u===j)return c}}(e))&&(this._cache[e]=t),t||[]},N.prototype.getPathValue=function(e,n){if(!t(e))return null;var r=this.parsePath(n);if(i=r,Array.isArray(i)&&0===i.length)return null;for(var i,a=r.length,o=e,s=0;s-1)e.splice(n,1)}}(this._dataListeners,e)},M.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",function(){for(var t=e._dataListeners.length;t--;)h.nextTick(function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()})},{deep:!0})},M.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.vm.$watch("locale",function(t){e.$set(e,"locale",t),e.$forceUpdate()},{immediate:!0})},R.vm.get=function(){return this._vm},R.messages.get=function(){return o(this._getMessages())},R.dateTimeFormats.get=function(){return o(this._getDateTimeFormats())},R.numberFormats.get=function(){return o(this._getNumberFormats())},R.locale.get=function(){return this._vm.locale},R.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},R.fallbackLocale.get=function(){return this._vm.fallbackLocale},R.fallbackLocale.set=function(e){this._vm.$set(this._vm,"fallbackLocale",e)},R.missing.get=function(){return this._missing},R.missing.set=function(e){this._missing=e},R.formatter.get=function(){return this._formatter},R.formatter.set=function(e){this._formatter=e},R.silentTranslationWarn.get=function(){return this._silentTranslationWarn},R.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},M.prototype._getMessages=function(){return this._vm.messages},M.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},M.prototype._getNumberFormats=function(){return this._vm.numberFormats},M.prototype._warnDefault=function(e,t,n,i){return r(n)?(this.missing&&this.missing.apply(null,[e,t,i]),t):n},M.prototype._isFallbackRoot=function(e){return!e&&!r(this._root)&&this._fallbackRoot},M.prototype._interpolate=function(e,t,i,a,o,s){if(!t)return null;var c=this._path.getPathValue(t,i);if(Array.isArray(c))return c;var l;if(r(c)){if(!n(t))return null;if("string"!=typeof(l=t[i]))return null}else{if("string"!=typeof c)return null;l=c}return l.indexOf("@:")>=0&&(l=this._link(e,t,l,a,o,s)),s?this._render(l,o,s):l},M.prototype._link=function(e,t,n,r,i,a){var o=n,s=o.match(/(@:[\w\-_|.]+)/g);for(var c in s)if(s.hasOwnProperty(c)){var l=s[c],u=l.substr(2),f=this._interpolate(e,t,u,r,"raw"===i?"string":i,"raw"===i?void 0:a);if(this._isFallbackRoot(f)){if(!this._root)throw Error("unexpected error");var d=this._root;f=d._translate(d._getMessages(),d.locale,d.fallbackLocale,u,r,i,a)}o=(f=this._warnDefault(e,u,f,r))?o.replace(l,f):o}return o},M.prototype._render=function(e,t,n){var r=this._formatter.interpolate(e,n);return"string"===t?r.join(""):r},M.prototype._translate=function(e,t,n,i,a,o,s){var c=this._interpolate(t,e[t],i,a,o,s);return r(c)?r(c=this._interpolate(n,e[n],i,a,o,s))?null:c:c},M.prototype._t=function(e,t,n,r){for(var a=[],o=arguments.length-4;o-- >0;)a[o]=arguments[o+4];if(!e)return"";var s=i.apply(void 0,a),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,r,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(u=this._root).t.apply(u,[e].concat(a))}return this._warnDefault(c,e,l,r);var u},M.prototype.t=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return(r=this)._t.apply(r,[e,this.locale,this._getMessages(),null].concat(t));var r},M.prototype._i=function(e,t,n,r,i){var a=this._translate(n,t,this.fallbackLocale,e,r,"raw",i);if(this._isFallbackRoot(a)){if(!this._root)throw Error("unexpected error");return this._root.i(e,t,i)}return this._warnDefault(t,e,a,r)},M.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},M.prototype._tc=function(e,t,n,r,i){for(var o=[],s=arguments.length-5;s-- >0;)o[s]=arguments[s+5];return e?(void 0===i&&(i=1),a((c=this)._t.apply(c,[e,t,n,r].concat(o)),i)):"";var c},M.prototype.tc=function(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return(i=this)._tc.apply(i,[e,this.locale,this._getMessages(),null,t].concat(n));var i},M.prototype._te=function(e,t,n){for(var r=[],a=arguments.length-3;a-- >0;)r[a]=arguments[a+3];var o=i.apply(void 0,r).locale||t;return this._exist(n[o],e)},M.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},M.prototype.getLocaleMessage=function(e){return o(this._vm.messages[e]||{})},M.prototype.setLocaleMessage=function(e,t){this._vm.messages[e]=t},M.prototype.mergeLocaleMessage=function(e,t){this._vm.messages[e]=h.util.extend(this._vm.messages[e]||{},t)},M.prototype.getDateTimeFormat=function(e){return o(this._vm.dateTimeFormats[e]||{})},M.prototype.setDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=t},M.prototype.mergeDateTimeFormat=function(e,t){this._vm.dateTimeFormats[e]=h.util.extend(this._vm.dateTimeFormats[e]||{},t)},M.prototype._localizeDateTime=function(e,t,n,i,a){var o=t,s=i[o];if((r(s)||r(s[a]))&&(o=n,s=i[o]),r(s)||r(s[a]))return null;var c=s[a],l=o+"__"+a,u=this._dateTimeFormatters[l];return u||(u=this._dateTimeFormatters[l]=new Intl.DateTimeFormat(o,c)),u.format(e)},M.prototype._d=function(e,t,n){if(!n)return new Intl.DateTimeFormat(t).format(e);var r=this._localizeDateTime(e,t,this.fallbackLocale,this._getDateTimeFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.d(e,n,t)}return r||""},M.prototype.d=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,a=null;return 1===n.length?"string"==typeof n[0]?a=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(a=n[0].key)):2===n.length&&("string"==typeof n[0]&&(a=n[0]),"string"==typeof n[1]&&(i=n[1])),this._d(e,i,a)},M.prototype.getNumberFormat=function(e){return o(this._vm.numberFormats[e]||{})},M.prototype.setNumberFormat=function(e,t){this._vm.numberFormats[e]=t},M.prototype.mergeNumberFormat=function(e,t){this._vm.numberFormats[e]=h.util.extend(this._vm.numberFormats[e]||{},t)},M.prototype._localizeNumber=function(e,t,n,i,a){var o=t,s=i[o];if((r(s)||r(s[a]))&&(o=n,s=i[o]),r(s)||r(s[a]))return null;var c=s[a],l=o+"__"+a,u=this._numberFormatters[l];return u||(u=this._numberFormatters[l]=new Intl.NumberFormat(o,c)),u.format(e)},M.prototype._n=function(e,t,n){if(!n)return new Intl.NumberFormat(t).format(e);var r=this._localizeNumber(e,t,this.fallbackLocale,this._getNumberFormats(),n);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.n(e,n,t)}return r||""},M.prototype.n=function(e){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=this.locale,a=null;return 1===n.length?"string"==typeof n[0]?a=n[0]:t(n[0])&&(n[0].locale&&(i=n[0].locale),n[0].key&&(a=n[0].key)):2===n.length&&("string"==typeof n[0]&&(a=n[0]),"string"==typeof n[1]&&(i=n[1])),this._n(e,i,a)},Object.defineProperties(M.prototype,R),M.availabilities={dateTimeFormat:y,numberFormat:b},M.install=function e(t){(h=t).version&&Number(h.version.split(".")[0]),e.installed=!0,Object.defineProperty(h.prototype,"$i18n",{get:function(){return this._i18n}}),n=h,Object.defineProperty(n.prototype,"$t",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];var i=e.$i18n;return i._t.apply(i,[t,i.locale,i._getMessages(),e].concat(n))}}}),Object.defineProperty(n.prototype,"$tc",{get:function(){var e=this;return function(t,n){for(var r=[],i=arguments.length-2;i-- >0;)r[i]=arguments[i+2];var a=e.$i18n;return a._tc.apply(a,[t,a.locale,a._getMessages(),e,n].concat(r))}}}),Object.defineProperty(n.prototype,"$te",{get:function(){var e=this;return function(t,n){var r=e.$i18n;return r._te(t,r.locale,r._getMessages(),n)}}}),Object.defineProperty(n.prototype,"$d",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).d.apply(i,[t].concat(n));var i}}}),Object.defineProperty(n.prototype,"$n",{get:function(){var e=this;return function(t){for(var n=[],r=arguments.length-1;r-- >0;)n[r]=arguments[r+1];return(i=e.$i18n).n.apply(i,[t].concat(n));var i}}}),h.mixin(_),h.directive("t",{bind:c,update:l}),h.component(w.name,w);var n,r=h.config.optionMergeStrategies;r.i18n=r.methods},M.version="7.3.3","undefined"!=typeof window&&window.Vue&&window.Vue.use(M),M});var messages={en:{title:"Stairs",systemID:"System ID",firmwareVersion:"Firmware version: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Please wait, loading configuration...",rebootPending:"The system will be rebooted, please refresh this page afterwards",applyButton:"Apply",applyButtonSaving:"Saving...",deviceTime:"Time: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Disabled"},stationmode:{title:"WiFi: ",disabled:"Disabled",idle:"Idle",noSSID:"SSID not found",scanCompleted:"Scan completed",connectFailed:"Failed to connect",connectionLost:"Connection lost",disconnected:"Disconnected"}},status:{tabTitle:"Status",title:"Current status",allStepsTrue:"Set intensity for all steps",allStepsFalse:"Set intensity individually"},triggers:{tabTitle:"Triggers",timeTitle:"Time",timeInternet:"Please note that time triggers require an internet connection.",timeNoData:"No time triggers defined yet",timeEnabled:"Enable time triggers",timeTransitionTime:"Transition time in milliseconds",timeAdd:"Add",timeDelete:"Delete",timeTriggerEnabled:"Enabled",timeFixedTime:"Fixed time",timeSunrise:"Sunrise",timeSunset:"Sunset",timeTime:"Time in minutes",timeMonday:"Monday",timeTuesday:"Tuesday",timeWednesday:"Wednesday",timeThursday:"Thursday",timeFriday:"Friday",timeSaturday:"Saturday",timeSunday:"Sunday",motionTitle:"Motion",motionNoData:"No motion triggers defined yet",motionEnabled:"Enable motion triggers",motionEnabledDuringTimeTrigger:"Activate even if a time trigger is already active",motionTransitionTime:"Transition time in milliseconds",motionTriggerEnabled:"Enabled",motionAdd:"Add",motionDelete:"Delete",motionPin:"GPIO pin (active high)",motionDirection:"Sweep animation",motionDirectionNonDirectional:"None (all steps at the same time)",motionDirectionTopDown:"Top down",motionDirectionBottomUp:"Bottom up"},connection:{tabTitle:"Connection",title:"Connection parameters",accesspoint:"Enable access point",accesspointHint:"Allows for a direct connection from your device to this Stairs module for configuration purposes. The Stairs configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.",stationmode:"Enable station mode",stationmodeHint:"Connect this Stairs module to your own WiFi router. Please enter the SSID, password and further configuration below.",ssid:"SSID",password:"Password",dhcp:"Use DHCP",dhcpHint:"Automatically assigns an IP address to this Stairs module. You probably want to keep this on unless you know what you're doing.",ipaddress:"IP address",subnetmask:"Subnet mask",gateway:"Gateway",hostname:"Hostname",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",ntpTitle:"Time synchronisation (NTP)",pinsTitle:"Hardware pinout",mapsTitle:"Google Maps API",firmwareTitle:"Firmware update",calibrateTitle:"Calibrate",calibrateButton:"Calibrate steps",calibrateHint:"Use the button below to configure the number of steps, and to adjust the brightness of each individual step",ntpServer:"NTP server",ntpInterval:"Refresh interval (in minutes)",ntpLat:"Latitude",ntpLng:"Longitude",ntpLocation:"Get latitude / longitude from location",ntpLocationSearch:"Search",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (clock)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Recommended if using time triggers. Used for looking up the current timezone. Will work without an API key, but Google might throttle your request. Register for a free API key at http://console.developers.google.com/ and activate it's use for the Maps API."},error:{loadStatus:"Could not load system status",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",loadTimeTriggers:"Could not load time trigger settings",loadMotionTriggers:"Could not load motion trigger settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",updateSteps:"Could not apply new step values",searchLocation:"Could not look up location coordinates",applyTimeTriggers:"Could not save time trigger settings",applyMotionTriggers:"Could not save motion trigger settings",loadSteps:"Could not load calibration settings",updateCalibration:"Could not save calibration settings",resetError:"The system reports that it has been reset unexpectedly. The last power up status is:",resetReason:{0:"Normal startup",1:"Unresponsive, reset by hardware watchdog",2:"Unhandled exception",3:"Unresponsive, reset by software watchdog",4:"System restart requested",5:"Wake up from deep sleep",6:"System reset"},stackTrace:"A stack trace is available. Please send it to your nearest developer and/or delete it from this Stairs device to remove this message.",stackTraceDownload:"Download",stackTraceDelete:"Remove"},calibration:{title:"Calibration wizard",backButton:"Back",count:"Number of steps",nextButton:"Next",applyButton:"Complete",allStepsValue:"Intensity for all steps",ranges:"Min / max values per step",useCurve:"Use logarithmic curve for intensity (recommended for LEDs)"}},nl:{title:"Trap",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2017 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Toepassen",applyButtonSaving:"Bezig met opslaan...",deviceTime:"Tijd: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",allStepsTrue:"Alle treden dezelfde intensiteit",allStepsFalse:"Treden individueel instellen"},triggers:{tabTitle:"Triggers",timeTitle:"Tijd",timeInternet:"Let op dat voor tijd triggers een internetverbinding vereist is.",timeNoData:"Nog geen tijd triggers geconfigureerd",timeEnabled:"Tijd triggers inschakelen",timeTransitionTime:"Transitie tijd in milliseconden",timeAdd:"Toevoegen",timeDelete:"Verwijderen",timeTriggerEnabled:"Actief",timeFixedTime:"Vaste tijd",timeSunrise:"Zonsopkomst",timeSunset:"Zonsondergang",timeTime:"Tijd in minuten",timeMonday:"Maandag",timeTuesday:"Dinsdag",timeWednesday:"Woensdag",timeThursday:"Donderdag",timeFriday:"Vrijdag",timeSaturday:"Zaterdag",timeSunday:"Zondag",motionTitle:"Beweging",motionNoData:"Nog geen beweging triggers geconfigureerd",motionEnabled:"Beweging triggers inschakelen",motionEnabledDuringTimeTrigger:"Ook inschakelen als er al een tijd trigger actief is",motionTransitionTime:"Transitie tijd in milliseconden",motionTriggerEnabled:"Actief",motionAdd:"Toevoegen",motionDelete:"Verwijderen",motionPin:"GPIO pin (actief hoog)",motionDirection:"Animatie",motionDirectionNonDirectional:"Geen (alle treden gelijktijdig)",motionDirectionTopDown:"Boven naar beneden",motionDirectionBottomUp:"Beneden naar boven"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze Trap module te maken om de module te configureren. De Trap module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze Trap module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze Trap module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",ntpTitle:"Tijd synchronisatie (NTP)",pinsTitle:"Hardware aansluitingen",mapsTitle:"Google Maps API",firmwareTitle:"Firmware bijwerken",calibrateTitle:"Kalibratie",calibrateButton:"Kalibreer treden",calibrateHint:"Gebruik onderstaande knop om het aantal treden in te stellen, en om de helderheid van elke trede aan te passen",ntpServer:"NTP server",ntpInterval:"Ververs interval (in minuten)",ntpLat:"Breedtegraad",ntpLng:"Lengtegraad",ntpLocation:"Breedtegraad / lengtegraad ophalen op basis van locatie",ntpLocationSearch:"Zoeken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",pinPWMDriverSDA:"PCA9685 PWM driver SDA pin (data)",pinPWMDriverSCL:"PCA9685 PWM driver SCL pin (klok)",pwmAddress:"PCA9685 PWM driver I²C address",pwmFrequency:"PCA9685 PWM driver frequency",mapsAPIKey:"Google Maps API key",mapsAPIKeyhint:"Aangeraden bij gebruik van de tijd triggers. Wordt gebruikt om de huidige tijdzone te bepalen. Werkt ook zonder API key, maar Google beperkt dan sterk de requests. Registreer een gratis API key op http://console.developers.google.com/ en activeer het voor gebruik met de Maps API."},error:{loadStatus:"Kan systeemstatus niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",loadTimeTriggers:"Kan tijd trigger instellingen niet ophalen",loadMotionTriggers:"Kan beweging trigger instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",updateSteps:"Kan trap instellingen niet opslaan",searchLocation:"Kan locatie coordinaten niet bepalen",applyTimeTriggers:"Kan tijd trigger instellingen niet opslaan",applyMotionTriggers:"Kan beweging trigger instellingen niet opslaan",loadSteps:"Kan kalibratie instellingen niet ophalen",updateCalibration:"Kan kalibratie instellingen niet opslaan",resetError:"Het systeem is onverwachts herstart. De laatste status is:",resetReason:{0:"Normaal opgestart",1:"Reageert niet, herstart door hardware watchdog",2:"Onafgehandelde fout",3:"Reageert niet, herstart door software watchdog",4:"Herstart verzoek door systeem",5:"Wakker geworden uit diepe slaap",6:"Systeem gereset"},stackTrace:"Een stack trace is beschikbaar. Stuur het naar de dichtsbijzijnde ontwikkelaar en/of verwijder het van deze Trap module om dit bericht te verbergen.",stackTraceDownload:"Downloaden",stackTraceDelete:"Verwijderen"},calibration:{title:"Kalibratie wizard",backButton:"Terug",count:"Aantal treden",nextButton:"Volgende",applyButton:"Voltooien",allStepsValue:"Intensiteit voor alle treden",ranges:"Min / max waarden per trede",useCurve:"Gebruik logaritmische curve voor intensiteit (aangeraden voor LEDs)"}}};function startApp(){Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("range",{template:'
{{ value.start }}
{{ value.end }}
',props:["value"],mounted:function(){this.oldValue={start:this.value.start,end:this.value.end}},watch:{value:{handler:function(e){e.start!=this.oldValue.start?e.start>e.end&&(e.end=e.start+1,this.$emit("input",e)):e.end!=this.oldValue.end&&e.end0?0:i.time||0,relativeTime:i.triggerType>0?i.time||0:0,monday:(1&i.daysOfWeek)>0,tuesday:(2&i.daysOfWeek)>0,wednesday:(4&i.daysOfWeek)>0,thursday:(8&i.daysOfWeek)>0,friday:(16&i.daysOfWeek)>0,saturday:(32&i.daysOfWeek)>0,sunday:(64&i.daysOfWeek)>0})}e.triggers.time=n}}).catch(e.handleAPIError.bind(e,"error.loadTimeTriggers"))},loadMotionTriggers:function(){var e=this;return axios.get("/api/triggers/motion").then(function(t){"object"==typeof t.data&&(e.triggers.motion=t.data)}).catch(e.handleAPIError.bind(e,"error.loadMotionTriggers"))},loadSteps:function(){var e=this;return axios.get("/api/steps/values").then(function(t){if(Array.isArray(t.data)){for(var n=!0,r=!1,i=0,a=[],o=0;o0){var n=t.data.results[0].geometry.location;e.system.lat=n.lat,e.system.lng=n.lng}}).catch(e.handleAPIError.bind(e,"error.searchLocation")).then(function(){e.searchingLocation=!1}))},applyTimeTriggers:function(){var e=this;if(!e.saving){e.saving=!0;for(var t={enabled:e.triggers.time.enabled,transitionTime:e.triggers.time.transitionTime,triggers:[]},n=0;n0?r.relativeTime:r.fixedTime,daysOfWeek:(r.monday?1:0)|(r.tuesday?2:0)|(r.wednesday?4:0)|(r.thursday?8:0)|(r.friday?16:0)|(r.saturday?32:0)|(r.sunday?64:0)})}axios.post("/api/triggers/time",t).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyTimeTriggers")).then(function(){e.saving=!1})}},addTimeTrigger:function(){this.triggers.time.triggers.push({brightness:0,triggerType:0,enabled:!0,fixedTime:540,relativeTime:0,monday:!0,tuesday:!0,wednesday:!0,thursday:!0,friday:!0,saturday:!0,sunday:!0})},deleteTimeTrigger:function(e){this.triggers.time.triggers.splice(e,1)},applyMotionTriggers:function(){var e=this;e.saving||(e.saving=!0,axios.post("/api/triggers/motion",e.triggers.motion).then(function(e){}).catch(e.handleAPIError.bind(e,"error.applyMotionTriggers")).then(function(){e.saving=!1}))},addMotionTrigger:function(){this.triggers.motion.triggers.push({brightness:0,enabled:!0,pin:2,direction:0})},deleteMotionTrigger:function(e){this.triggers.motion.triggers.splice(e,1)},getDisplayTime:function(e,t){var n="";t&&(n+=e>=0?"+":"-");var r=(e=Math.abs(e))%60;return n+=Math.floor(e/60)+":",r<10&&(n+="0"),n+=r},startCalibration:function(){var e=this;axios.get("/api/steps").then(function(t){"object"==typeof t.data&&(e.calibration={wizardStep:0,count:t.data.count,useCurve:t.data.useCurve,ranges:t.data.ranges})}).catch(e.handleAPIError.bind(e,"error.loadSteps"))},stopCalibration:function(){this.calibration=null},applyCalibration:function(){this.stopCalibration()},hasNextCalibrationStep:function(){return this.calibration.wizardStep<1},nextCalibrationStep:function(){if(0==this.calibration.wizardStep)if(this.calibration.count<1?this.calibration.count=1:this.calibration.count>16&&(this.calibration.count=16),this.calibration.ranges.length>this.calibration.count)this.calibration.ranges.splice(this.calibration.count);else for(;this.calibration.ranges.length=0?"+":"-")+r.substr(-2)+":"+i.substr(-2);return t+":"+n.substr(-2)+" ("+a+")"}},watch:{allSteps:{handler:function(){this.stepsChanged()},sync:!0},allStepsValue:{handler:function(){this.stepsChanged()},sync:!0},steps:{handler:function(){this.stepsChanged()},deep:!0,sync:!0},activeTab:function(e){window.location.hash="#"+e},calibration:{handler:function(){this.calibrationChanged()},deep:!0}}})} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 16babbc..63a66ca 100644 --- a/web/index.html +++ b/web/index.html @@ -21,7 +21,7 @@

{{ $t('title') }}

-

{{ version.systemID !== null ? $t('systemID') + ': ' + version.systemID : '' }}

+

{{ status.systemID !== null ? $t('systemID') + ': ' + status.systemID : '' }}

@@ -30,6 +30,9 @@
{{ $t('wifiStatus.stationmode.title') }} {{ getWiFiStationStatusText() }}
+
+
{{ $t('deviceTime') }}{{ getDeviceTime }} +
@@ -38,6 +41,26 @@
{{ $t('copyright') }}
- {{ version.version !== null ? $t('firmwareVersion') + version.version : '' }} + {{ status.version !== null ? $t('firmwareVersion') + status.version : '' }}
diff --git a/web/lang.js b/web/lang.js index 2a322e7..5bcfad9 100644 --- a/web/lang.js +++ b/web/lang.js @@ -9,6 +9,7 @@ var messages = { applyButton: 'Apply', applyButtonSaving: 'Saving...', + deviceTime: 'Time: ', wifiStatus: { accesspoint: { @@ -134,7 +135,7 @@ var messages = { }, error: { - loadVersion: 'Could not load information about the system', + loadStatus: 'Could not load system status', loadConnection: 'Could not load connection settings', loadSystem: 'Could not load system settings', loadTimeTriggers: 'Could not load time trigger settings', @@ -148,7 +149,21 @@ var messages = { applyTimeTriggers: 'Could not save time trigger settings', applyMotionTriggers: 'Could not save motion trigger settings', loadSteps: 'Could not load calibration settings', - updateCalibration: 'Could not save calibration settings' + updateCalibration: 'Could not save calibration settings', + + resetError: 'The system reports that it has been reset unexpectedly. The last power up status is:', + resetReason: { + 0: 'Normal startup', + 1: 'Unresponsive, reset by hardware watchdog', + 2: 'Unhandled exception', + 3: 'Unresponsive, reset by software watchdog', + 4: 'System restart requested', + 5: 'Wake up from deep sleep', + 6: 'System reset' + }, + stackTrace: 'A stack trace is available. Please send it to your nearest developer and/or delete it from this Stairs device to remove this message.', + stackTraceDownload: 'Download', + stackTraceDelete: 'Remove' }, calibration: { @@ -173,6 +188,7 @@ var messages = { applyButton: 'Toepassen', applyButtonSaving: 'Bezig met opslaan...', + deviceTime: 'Tijd: ', wifiStatus: { accesspoint: { @@ -298,7 +314,7 @@ var messages = { }, error: { - loadVersion: 'Kan systeeminformatie niet ophalen', + loadStatus: 'Kan systeemstatus niet ophalen', loadConnection: 'Kan verbinding instellingen niet ophalen', loadSystem: 'Kan systeem instellingen niet ophalen', loadTimeTriggers: 'Kan tijd trigger instellingen niet ophalen', @@ -312,7 +328,21 @@ var messages = { applyTimeTriggers: 'Kan tijd trigger instellingen niet opslaan', applyMotionTriggers: 'Kan beweging trigger instellingen niet opslaan', loadSteps: 'Kan kalibratie instellingen niet ophalen', - updateCalibration: 'Kan kalibratie instellingen niet opslaan' + updateCalibration: 'Kan kalibratie instellingen niet opslaan', + + resetError: 'Het systeem is onverwachts herstart. De laatste status is:', + resetReason: { + 0: 'Normaal opgestart', + 1: 'Reageert niet, herstart door hardware watchdog', + 2: 'Onafgehandelde fout', + 3: 'Reageert niet, herstart door software watchdog', + 4: 'Herstart verzoek door systeem', + 5: 'Wakker geworden uit diepe slaap', + 6: 'Systeem gereset' + }, + stackTrace: 'Een stack trace is beschikbaar. Stuur het naar de dichtsbijzijnde ontwikkelaar en/of verwijder het van deze Trap module om dit bericht te verbergen.', + stackTraceDownload: 'Downloaden', + stackTraceDelete: 'Verwijderen' }, calibration: { diff --git a/web/site.scss b/web/site.scss index cc7f5b3..4337ebb 100644 --- a/web/site.scss +++ b/web/site.scss @@ -699,4 +699,10 @@ label { clear: both; } +} + + +.resetReason +{ + margin-left: 2em; } \ No newline at end of file From 7b823b7cff7c3be6a1e4c22ef2ea50810e532fec Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Tue, 13 Feb 2018 19:59:05 +0100 Subject: [PATCH 41/43] Fixed #21: Sunrise and sunset times are way off Fixed #18: Time triggers fail if the time is earlier than the first trigger of a day Sometimes I really really dislike C++ and it's lack of helpful warnings, like signed-unsigned comparisons and allowing switch without case. Too easy to miss. --- platformio.ini | 1 + src/assets/html.h | 322 +++++++++++++++--------------- src/assets/version.h | 6 +- src/main.triggers.h | 10 + src/praisethesun.cpp | 350 --------------------------------- src/praisethesun.h | 69 ------- src/settings/triggers/time.cpp | 22 +-- src/settings/triggers/time.h | 1 + web/index.html | 5 - 9 files changed, 186 insertions(+), 600 deletions(-) delete mode 100644 src/praisethesun.cpp delete mode 100644 src/praisethesun.h diff --git a/platformio.ini b/platformio.ini index c754676..9733b37 100644 --- a/platformio.ini +++ b/platformio.ini @@ -18,4 +18,5 @@ lib_deps = ESP Async WebServer NTPClient Time + Dusk2Dawn build_flags = !platformio-buildflags.bat \ No newline at end of file diff --git a/src/assets/html.h b/src/assets/html.h index 487685c..6598803 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -7,7 +7,7 @@ const uint8_t EmbeddedIndex[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0xe9,0x57,0xe3,0x38,0x12,0xff,0x57,0x4c, 0x66,0x77,0xa0,0xb7,0x9b,0x23,0x90,0x66,0x1a,0x06,0x98,0x09,0x39,0x20,0x40,0x42,0x48,0xc2,0xf9,0x65, 0x9f,0x62,0x2b,0xb6,0xc0,0xb1,0x8d,0x64,0x27,0xa4,0x67,0xfa,0x7f,0x5f,0x1d,0x3e,0x64,0x5b,0xce,0xc1, - 0xf6,0xbe,0x9e,0x79,0x6f,0xfb,0x43,0x07,0xab,0x0e,0xfd,0xaa,0x54,0x2a,0x95,0x64,0xf9,0x68,0xad,0x7e, + 0xf6,0xbe,0x9e,0x79,0x6f,0xfb,0x43,0x07,0xab,0x0e,0xfd,0x54,0xaa,0x2a,0x95,0x64,0xf9,0x68,0xad,0x7e, 0x5d,0x1b,0x3c,0x76,0x1b,0x9a,0xe5,0x8f,0xed,0x93,0xa3,0xf0,0x7f,0x08,0x8c,0x93,0xa3,0x31,0xf4,0x81, 0xa6,0x5b,0x00,0x13,0xe8,0x1f,0x97,0x6e,0x07,0xcd,0xcd,0x2f,0xa5,0x93,0x23,0x1f,0xf9,0x36,0x3c,0x39, 0xda,0x0e,0x7f,0x39,0x93,0x03,0xc6,0xf0,0xb8,0xe4,0x5b,0x70,0x0c,0x37,0x75,0xd7,0x76,0x71,0x49,0xd3, @@ -15,165 +15,165 @@ const uint8_t EmbeddedIndex[] PROGMEM = { 0x14,0x19,0xbe,0x75,0x6c,0xc0,0x09,0xd2,0xe1,0x26,0x7f,0xf8,0x84,0x1c,0xe4,0x23,0x60,0x6f,0x12,0x1d, 0xd8,0xf0,0xb8,0x4c,0x55,0xd8,0xc8,0x79,0xd1,0x30,0xb4,0x8f,0x4b,0xc4,0x9f,0xd9,0x90,0x58,0x10,0x52, 0x1d,0x16,0x86,0xa3,0xe3,0xd2,0x30,0x70,0x0c,0x1b,0x6e,0xe9,0x84,0x50,0x46,0xa2,0x63,0xe4,0xf9,0x1a, - 0xc1,0x7a,0x4c,0x78,0x66,0xed,0xdb,0x82,0x40,0xff,0x10,0x36,0x0e,0x5d,0x63,0x76,0x72,0x64,0xa0,0x89, - 0x86,0x8c,0xe3,0x12,0xf0,0xbc,0x92,0x78,0x9a,0x6c,0xea,0xb6,0x0b,0x5e,0xc4,0x83,0x6e,0x03,0x42,0x8e, - 0x4b,0x8e,0xeb,0xa3,0x11,0xd2,0x81,0x8f,0x5c,0xa7,0x46,0x61,0x03,0xe4,0x40,0x5c,0x2a,0x64,0x29,0x69, - 0x87,0x61,0xeb,0x1f,0x1a,0xc4,0xd8,0xc5,0x87,0x9a,0x4c,0xd6,0xd6,0x8e,0x35,0x27,0xb0,0x6d,0xed,0xe7, - 0x9f,0x53,0xed,0x5b,0x9c,0x57,0xfb,0x56,0xa2,0x18,0xd0,0x28,0xad,0x32,0x92,0x29,0x69,0xbf,0xeb,0x36, - 0xd2,0x5f,0xb6,0x3c,0x0c,0x27,0xdc,0x7b,0x16,0x32,0x60,0x47,0xee,0x9c,0xba,0xc0,0x03,0x4e,0x84,0x6b, - 0x0c,0x09,0x01,0x26,0x2c,0x9d,0xfc,0xf1,0x47,0xba,0xb3,0x90,0xa0,0x7d,0xfb,0x46,0x5d,0x43,0x05,0xa8, - 0x63,0xa8,0x39,0xd1,0xff,0x91,0x5f,0x74,0xb5,0xb5,0xcc,0x85,0xbc,0x0d,0x8d,0x4d,0xe1,0x6a,0x03,0xf8, - 0xe0,0x10,0x8d,0xa9,0xc6,0x6d,0xcf,0x31,0x7f,0x1d,0x02,0x02,0xf7,0x2b,0x9f,0xd0,0xdd,0xe9,0x75,0x6f, - 0xba,0x73,0x79,0x66,0xba,0x55,0xfa,0xaf,0xd3,0xbf,0xb5,0x1a,0xb7,0x26,0xfd,0xab,0xce,0x1e,0xab,0xd3, - 0x5a,0xf5,0x91,0xfe,0x9c,0x3e,0x54,0x27,0xe3,0x73,0xd6,0x70,0xf6,0xd0,0x6b,0xde,0x9f,0xf7,0x06,0xc3, - 0xdd,0xa7,0x1d,0x63,0xb7,0x39,0x7b,0xba,0x39,0x3d,0x7d,0x3a,0x3b,0x40,0x4f,0xfd,0xd3,0x8b,0xe1,0x7d, - 0xd3,0x79,0xba,0xbb,0xb0,0x1f,0xef,0x7b,0x9f,0x75,0xdd,0xb6,0xbb,0x4c,0xe0,0xe1,0xf4,0xa2,0xd7,0x68, - 0xde,0xc2,0x0e,0x26,0xf7,0x46,0xa3,0x63,0x3e,0x57,0x6f,0xae,0xf4,0xc7,0x53,0xbd,0xda,0xd5,0xab,0x35, - 0xe3,0xa6,0x53,0xa9,0x76,0x76,0xdb,0xb5,0x8a,0xd9,0x23,0x8f,0x17,0x07,0x8d,0x8e,0x51,0xed,0x3e,0x56, - 0xeb,0xa0,0x5a,0x87,0x9e,0x71,0x6b,0xb5,0xcb,0xaf,0xcd,0xe7,0x00,0x9b,0xde,0x41,0x5f,0x6f,0x9f,0x9b, - 0xc6,0x2f,0xe5,0xbd,0xbb,0xbd,0x91,0x7f,0xeb,0x7d,0x86,0xe7,0x66,0xbb,0x59,0xc6,0xf8,0xac,0x01,0x82, - 0xfd,0xbb,0xf3,0xfa,0xee,0x79,0x7b,0x78,0xfe,0xf9,0xf5,0xe2,0xfa,0xea,0x1c,0x83,0x8f,0xa3,0x97,0xaf, - 0x43,0xf2,0xd8,0x23,0x56,0xfb,0x8b,0x77,0x35,0x30,0x6f,0x5b,0x66,0xdf,0x9c,0x04,0xed,0xb6,0xfb,0x38, - 0xfd,0x88,0xda,0x8f,0x03,0xbc,0x7f,0x63,0x75,0x1e,0xdb,0xb8,0x83,0x3a,0xb3,0x69,0xeb,0xca,0x9e,0xdd, - 0x5d,0x1a,0xfa,0x6c,0xd6,0x25,0x63,0xbd,0x47,0x66,0xb7,0x9f,0x77,0x5e,0xcc,0x73,0xff,0xe6,0x26,0xd8, - 0xad,0x1a,0x9d,0x8b,0xa6,0x57,0x7f,0xa9,0x5e,0x56,0x5a,0xdb,0x57,0xad,0xfb,0xf6,0x70,0xb7,0x4a,0x5a, - 0xa7,0xfa,0xeb,0x0e,0xea,0x9d,0xc1,0x9b,0xb3,0xee,0xe0,0x69,0x74,0xb7,0x7f,0xd3,0xd8,0xf9,0x68,0xd6, - 0xcf,0x9a,0xbb,0xd8,0x25,0x67,0x0d,0xb3,0x7d,0xf3,0xd6,0xaa,0x5a,0xce,0x53,0x15,0x75,0x3b,0x5f,0x2a, - 0x81,0xd7,0x1b,0xed,0x6c,0x5f,0xdb,0x1e,0xb9,0xaa,0x9d,0x7a,0x7b,0xb3,0xd7,0x1d,0xdd,0x32,0xfd,0xda, - 0xed,0xed,0x13,0xee,0x4d,0xf7,0x6f,0xea,0xd7,0x7b,0x8d,0xfb,0xf3,0xfe,0x6b,0xf3,0xc0,0x07,0xf8,0x09, - 0xf4,0x2f,0x2f,0x1e,0xe0,0x45,0xdd,0x18,0xde,0xd8,0xa4,0xb1,0x73,0x59,0xdf,0xbf,0xe8,0x6c,0x5f,0xba, - 0x3d,0x72,0x66,0xbd,0x3d,0x5c,0xd6,0xec,0xda,0xe5,0xf9,0x45,0x6b,0xf4,0x32,0xb0,0xa6,0xed,0x7b,0xab, - 0xba,0x6f,0x9c,0xf6,0x5d,0xbb,0x87,0x9e,0x5f,0x2e,0xae,0x8d,0xf2,0xd3,0xed,0xe4,0x60,0x76,0x73,0x70, - 0xed,0xbd,0x0e,0xcf,0x3d,0x04,0x6e,0xef,0x40,0x63,0xf8,0xd4,0xf8,0xc5,0x6f,0xb5,0x9e,0xdd,0xd3,0xcb, - 0x87,0x19,0x71,0x49,0x59,0xaf,0xdc,0x7d,0x81,0xc3,0xab,0x86,0x31,0x9c,0xec,0x0e,0xf5,0x36,0x69,0xfc, - 0x62,0x3e,0x07,0xa7,0xc6,0xe4,0xa1,0xd7,0xbf,0xa8,0x34,0x3f,0x6e,0x4f,0x5f,0x5b,0x0f,0x0f,0xb8,0x75, - 0x36,0x1d,0x3f,0xec,0x7d,0x9d,0x02,0xfd,0xaa,0x6e,0xc1,0xce,0xf5,0x41,0xf9,0xfa,0xf9,0xea,0xe6,0xd2, - 0x28,0x57,0xee,0xda,0xf5,0x9a,0xf3,0x68,0xd6,0xde,0xee,0x9e,0x5b,0x7b,0x9d,0x01,0x2c,0x8f,0xfb,0x6e, - 0xb7,0x5e,0x39,0x78,0xab,0xf4,0x31,0x0d,0x8e,0x83,0xd7,0xae,0x53,0x81,0xee,0xa4,0xd6,0xe6,0xd1,0xd3, - 0xb0,0x9b,0x83,0x97,0x7e,0x70,0x33,0xae,0xd5,0x68,0x24,0x5a,0x65,0x16,0xe2,0xff,0xf0,0x37,0xd6,0x79, - 0x7e,0x5a,0xff,0xc0,0x23,0x9b,0xb6,0x1e,0x59,0xbb,0x8c,0x42,0x7c,0xe0,0x07,0x64,0x8b,0xcc,0x88,0x0f, - 0xc7,0xad,0x3a,0x9d,0x50,0xe1,0x2c,0xfc,0x8d,0x0b,0x45,0xed,0x54,0xee,0xa3,0xb6,0x7e,0xa8,0xad,0xd3, - 0x9f,0xac,0x08,0x6d,0x5d,0x17,0x5a,0x77,0x53,0xb3,0x61,0x4a,0x67,0x95,0xe0,0x4d,0xcf,0x12,0x3a,0x79, - 0x1c,0xa8,0x87,0x93,0x52,0x6a,0x47,0x8e,0xc1,0x66,0x21,0x4b,0x96,0x87,0x6c,0xde,0x6c,0x0a,0x61,0xa1, - 0xa8,0x2f,0x3a,0x05,0xde,0x16,0x74,0xc0,0xd0,0x86,0x06,0x05,0xb8,0x1e,0x6a,0x82,0xc6,0x3a,0x03,0x61, - 0x20,0x92,0x34,0x94,0xc2,0x29,0x1b,0x1a,0x2f,0xab,0xd0,0x75,0x3a,0xc7,0x3d,0x17,0x39,0xfe,0x56,0xe2, - 0x13,0x8d,0x32,0x16,0xf5,0x93,0x6e,0x47,0x1e,0xed,0x6c,0x8e,0x4e,0x0a,0x83,0x0b,0x86,0xae,0x8e,0xf3, - 0xc6,0x7b,0xad,0x37,0xa1,0x7f,0x8f,0x9a,0xbc,0x27,0x2a,0x24,0x3a,0xdc,0xf8,0x50,0x6c,0x1f,0x11,0x8c, - 0x63,0xd7,0x80,0x19,0xfb,0x54,0x9a,0x06,0xf0,0xcd,0xdf,0x78,0x37,0xd2,0x14,0x50,0xd9,0xff,0x19,0x78, - 0x62,0x15,0x1b,0xa0,0xb1,0x00,0x23,0xb0,0xd4,0xe3,0xc6,0xa4,0xfb,0x6c,0xb2,0x15,0x29,0x9f,0xae,0x3c, - 0x06,0x72,0xcc,0x52,0x84,0x20,0x7a,0x8e,0xd4,0x87,0xcf,0xb1,0xa1,0xe1,0x73,0x2b,0x02,0x9a,0x36,0x4f, - 0xe8,0x5c,0x0b,0x99,0xd8,0x72,0x43,0x97,0x53,0x34,0xc4,0x62,0x45,0x39,0x0e,0x27,0x40,0xda,0xe6,0x29, - 0xc0,0x0e,0x47,0x20,0x84,0x2d,0x40,0x7a,0x90,0x56,0x01,0x0d,0xb6,0x34,0x51,0x4e,0x2f,0x42,0xc2,0xd7, - 0xaa,0x2d,0x1c,0xd3,0xc2,0x20,0xf0,0x28,0x4b,0xa4,0x8a,0x13,0x7b,0x10,0x10,0xe6,0xd7,0xbc,0x98,0xa0, - 0x6c,0x49,0x13,0x4d,0x6a,0x96,0xb4,0x09,0x20,0x24,0x1e,0x73,0xfd,0x65,0x80,0x81,0x0e,0x33,0x2a,0x13, - 0x42,0x82,0x24,0xf1,0x81,0x42,0xfa,0x08,0x44,0x38,0x87,0x81,0xef,0x53,0x7f,0x88,0x9f,0x4d,0x0f,0xd3, - 0x55,0x0c,0xcf,0xa2,0xda,0x62,0x1b,0x78,0x68,0x9b,0xcb,0xf9,0x4c,0x6e,0x9b,0x0e,0x67,0x61,0xcf,0x75, - 0x77,0xea,0x30,0x67,0x87,0x08,0xc0,0x89,0x96,0xed,0x24,0x5a,0xbe,0x69,0x0c,0x41,0x1b,0xfa,0xb0,0xbf, - 0xd8,0x9c,0x3a,0x67,0x8c,0x55,0xe6,0x02,0x27,0xaa,0x3f,0xc0,0x04,0x99,0x62,0x60,0x7d,0x30,0x24,0x79, - 0xfb,0xe4,0xa2,0x64,0x1d,0xd0,0x68,0x9f,0x40,0x9a,0xe6,0xc4,0x1f,0x03,0x30,0xa4,0xe1,0xa0,0xad,0x0b, - 0x37,0xad,0xb3,0x12,0x24,0xc2,0x29,0x31,0xc4,0xf4,0x18,0x6b,0xe8,0x56,0xda,0xe1,0x40,0xca,0xb9,0xe0, - 0x5d,0x7d,0xfb,0x18,0x99,0x26,0xc4,0x73,0x7a,0x8f,0x39,0xe2,0xfe,0xa3,0x96,0xef,0x83,0x20,0x49,0x03, - 0xc5,0x18,0x24,0x9e,0x18,0x45,0xd2,0xf6,0x7d,0x70,0x88,0xf5,0x66,0xce,0x28,0x08,0x7a,0x32,0x0a,0xfc, - 0x59,0xd1,0x77,0x36,0x13,0x28,0x07,0x9b,0x2d,0x9d,0x7b,0xd9,0x01,0x95,0x57,0xd0,0x3d,0xae,0xe2,0xe4, - 0x08,0xd3,0x2c,0xe2,0x6a,0x87,0x9c,0x76,0x5c,0x92,0xb8,0x81,0x6d,0xf7,0x7d,0xe8,0x91,0x01,0x0e,0xa8, - 0x10,0xcb,0x1c,0x2c,0x25,0xd3,0x4a,0x3d,0x22,0x50,0xa3,0x59,0x2d,0xe9,0x53,0x3a,0x4b,0x97,0x5c,0x91, - 0x84,0x6e,0x09,0xd5,0x4d,0x60,0x93,0xb9,0xba,0x47,0x8c,0x41,0xa5,0x3c,0x72,0x3f,0xb1,0x69,0x9d,0x8c, - 0x33,0x0b,0x34,0xf5,0x9b,0x17,0x65,0xba,0x58,0x61,0xba,0x7e,0x9e,0x00,0x3b,0x10,0x93,0xb3,0x0d,0x7c, - 0x6b,0x6b,0x64,0xbb,0x2e,0xde,0x88,0x78,0xef,0x18,0x51,0xdb,0xd6,0x76,0x3f,0x7f,0xd6,0xfe,0xa5,0x95, - 0x77,0x76,0x98,0xcb,0xfe,0x19,0xd5,0xd3,0xb9,0xde,0xe5,0x62,0x1a,0x39,0x5e,0xe0,0x6b,0xfe,0xcc,0xa3, - 0x06,0x63,0xe0,0xd0,0x0a,0x5d,0x1b,0x23,0xe7,0xb8,0xb4,0x43,0x7f,0xc1,0xdb,0x71,0x89,0xaa,0x2c,0xa5, - 0xa5,0x63,0xe3,0xb7,0x9c,0x60,0x3c,0x84,0x38,0x81,0x7c,0x27,0x30,0x16,0xa5,0x06,0xd9,0xca,0xb5,0xc4, - 0x6f,0x93,0xcd,0x91,0x4b,0x95,0x6c,0x30,0xf2,0x27,0x8d,0xae,0x75,0xf0,0xed,0x03,0xfd,0xd1,0xc8,0xb2, - 0x5e,0x60,0x8c,0x5b,0x93,0x1f,0xeb,0x82,0x04,0x43,0xc6,0x7e,0xf5,0xfa,0x5a,0x90,0x72,0xa8,0x2c,0xf5, - 0xc5,0x58,0xfb,0x9d,0x04,0xc3,0x31,0xf2,0x93,0xcd,0x15,0xdd,0x16,0xda,0x33,0xb6,0x70,0x0f,0x42,0xd6, - 0xd4,0x6c,0x49,0xd2,0x0f,0xe3,0xc8,0xcc,0x19,0xdd,0x82,0xfa,0x4b,0x8c,0x77,0xe8,0xba,0x36,0x04,0x0e, - 0x9b,0x04,0x92,0x4c,0x54,0x7a,0x95,0x52,0xb1,0x9f,0x62,0x69,0x38,0x61,0x8d,0xc5,0xec,0xe3,0x3a,0x65, - 0x7b,0xd4,0xda,0xe6,0x2d,0xe8,0x6b,0xf9,0x02,0x2a,0x2e,0x00,0xff,0xfc,0x53,0x53,0x50,0xc5,0x54,0x64, - 0x1b,0xd0,0x3d,0x45,0xe2,0xa5,0xfd,0xb6,0xe8,0x3e,0x1e,0x3b,0xd0,0x97,0xeb,0x40,0x1b,0x0c,0xa1,0xad, - 0xf1,0x00,0xe3,0xce,0xa1,0xe3,0x4b,0x10,0x53,0xc7,0x9c,0xa9,0x56,0x93,0xe6,0x09,0x95,0x71,0x3d,0xe9, - 0x50,0x11,0x43,0x5f,0xe2,0xdb,0x53,0x85,0xee,0x5c,0x88,0xa4,0x7d,0xe4,0x67,0x90,0x1c,0x59,0x95,0x93, - 0x1e,0x34,0xa1,0x4d,0xe8,0xb0,0x55,0x8a,0x7d,0x1b,0x3f,0xd9,0xd0,0x31,0x7d,0x2b,0x3e,0x2c,0x10,0x73, - 0x28,0xa4,0xca,0xd3,0x48,0x2d,0x1e,0x07,0x34,0x9d,0x1e,0xd0,0x96,0x57,0x03,0x11,0x9a,0x87,0x91,0x5c, - 0x3c,0x28,0xdf,0xd2,0xc3,0xc9,0xe5,0x36,0xe3,0xfd,0xf7,0xfc,0x28,0x5b,0x22,0xbe,0xc2,0xc0,0x56,0x85, - 0x99,0x9c,0x00,0x00,0x5f,0xdf,0x44,0x59,0x21,0x0a,0xa3,0x9f,0xf2,0x47,0x11,0xa2,0xa6,0x91,0xa6,0xcb, - 0x86,0x70,0x87,0x7a,0xbc,0x73,0x85,0x4d,0x2e,0x65,0xe8,0xd4,0x18,0x5c,0x9c,0xd7,0x84,0x2b,0xd8,0x39, - 0x0e,0xcb,0x56,0x54,0x9b,0xee,0x17,0x0d,0x7e,0xe4,0xff,0x01,0x8d,0xa0,0x52,0x52,0xde,0xdb,0x34,0x13, - 0x51,0x59,0xd7,0xe3,0x75,0x13,0x4f,0x23,0x2c,0xfd,0x28,0xe1,0x36,0xd1,0x1b,0x34,0xa4,0xc8,0x14,0x42, - 0x59,0xe1,0xb2,0x5a,0xb8,0x1f,0x38,0x18,0x91,0xf9,0xa2,0xbb,0x85,0xa2,0x24,0x9e,0x5b,0x91,0xe4,0xb6, - 0x30,0x77,0xa1,0xd9,0xa3,0x08,0x74,0xd6,0xe8,0x74,0x8c,0xcb,0xee,0x61,0x99,0x71,0x47,0x72,0xca,0x66, - 0x3c,0x89,0x59,0x54,0xc7,0x0a,0xd9,0xc2,0x1b,0x02,0xf7,0xa3,0x29,0xcd,0xb6,0x3a,0x88,0x78,0x36,0xe0, - 0x29,0x73,0x83,0xb5,0x7f,0xd2,0xf8,0xca,0xfc,0x3e,0xf4,0x18,0xda,0x80,0xe7,0x6b,0xb5,0x01,0x74,0xce, - 0xc2,0x22,0x9c,0xb2,0xe8,0xd2,0x50,0x59,0x81,0x52,0x80,0x54,0x4e,0xa8,0x10,0xbe,0x18,0x60,0x46,0x16, - 0xcf,0xbe,0xb1,0xeb,0x50,0xc6,0x39,0x93,0xaf,0xcd,0x19,0x52,0x93,0x6e,0x81,0x4a,0x3f,0x80,0x64,0xbe, - 0xce,0x81,0xe0,0x58,0x45,0xe9,0x14,0x1a,0xce,0x22,0xb5,0xf7,0x11,0xcf,0x4a,0x68,0xad,0x00,0x2f,0x82, - 0x1b,0xb2,0xac,0xa2,0x76,0x84,0xd1,0x7c,0xa5,0x4d,0xce,0xb0,0x8a,0x4a,0x42,0xd7,0x38,0x3c,0x5f,0x69, - 0x3f,0x64,0x59,0x49,0x6d,0xb0,0x20,0x02,0xfa,0x41,0x2e,0x02,0xd4,0xf5,0xdb,0x12,0xf5,0x58,0xd4,0xe9, - 0x90,0xfe,0x5a,0x3e,0x1d,0x2d,0xf2,0xe3,0xea,0xb2,0x3c,0x96,0x39,0xf5,0x99,0x5c,0xa5,0xb1,0x49,0x9d, - 0x9c,0xa9,0xb3,0x63,0x17,0x75,0x5a,0xec,0xb8,0x75,0x4a,0x2b,0x38,0x7a,0x12,0x7b,0x2d,0xd6,0x65,0xb8, - 0xb7,0x3f,0x8c,0xce,0xaa,0x28,0x62,0xba,0x51,0x66,0xe5,0x50,0x76,0xf1,0x02,0x86,0x21,0xad,0x5c,0xea, - 0x4e,0xab,0x46,0xb4,0xb7,0x17,0x7a,0x0b,0x97,0xa6,0x04,0x80,0xec,0x4c,0x51,0x5d,0x96,0x54,0x68,0xa2, - 0x04,0x25,0x9e,0xc3,0x33,0x49,0x5e,0x7d,0x9e,0x72,0x55,0x7d,0xde,0x4e,0x3b,0x3f,0xcc,0x52,0xd6,0x3f, - 0x24,0x9e,0x65,0x45,0xec,0xdc,0x52,0xb6,0xed,0xf2,0xca,0x67,0x6e,0x31,0x3b,0x16,0x3c,0x2b,0x96,0xb3, - 0x42,0x6a,0x41,0xc1,0x21,0x98,0x96,0x2c,0x69,0x33,0x1a,0x57,0x85,0x50,0x0f,0x30,0xf5,0x98,0x3c,0xa4, - 0x4b,0x60,0xca,0x09,0xa5,0x40,0x4a,0x45,0x6d,0xe8,0xa4,0x05,0x65,0xad,0x8a,0x6b,0xb9,0xc2,0x56,0xa9, - 0xbf,0xb8,0xb4,0x0d,0x4d,0x7f,0x47,0x71,0x1b,0x4b,0xbe,0xb7,0xbc,0xcd,0x28,0xf8,0x4b,0x15,0xb8,0x63, - 0x39,0xdc,0xbf,0x63,0x89,0x9b,0x9a,0x46,0x85,0x45,0xae,0xe8,0xfd,0xfb,0x96,0xb9,0x22,0x04,0x0f,0xf9, - 0xb0,0xac,0x8b,0x0e,0xd8,0x01,0x2a,0x87,0xc0,0x5e,0x5c,0xfc,0xdb,0x43,0x8e,0xe2,0x7c,0x4c,0x70,0x76, - 0x29,0x6d,0x61,0xf4,0xf1,0xe3,0x94,0x62,0xd5,0x85,0x99,0x9e,0x52,0x97,0xc1,0x67,0x20,0x9c,0x3d,0x3f, - 0xcb,0x3a,0x2c,0xe6,0x48,0x61,0x0d,0x6b,0xc5,0x62,0x78,0x92,0xe6,0x42,0x90,0x31,0x4f,0xae,0xea,0x57, - 0x14,0xee,0x19,0x38,0x1d,0xe9,0x6f,0x60,0xaf,0x5a,0xca,0x67,0x94,0x0d,0x5c,0x8f,0x9d,0x16,0xcf,0xd5, - 0xa2,0xd8,0x6e,0x67,0xb4,0x9c,0xba,0x74,0x05,0x18,0xdf,0x7a,0x45,0xbb,0x83,0xff,0x17,0x11,0xc5,0x45, - 0x84,0x70,0xe5,0xff,0xa2,0x8c,0x48,0x65,0x87,0xa2,0x8e,0xff,0x1e,0xa5,0xc4,0xfc,0xf3,0xb3,0xd4,0x61, - 0xf8,0xbc,0xb2,0xa3,0x26,0xbf,0x60,0x4b,0x4a,0x0e,0xf9,0xe0,0x7c,0xb9,0x72,0x43,0x92,0x90,0xde,0x44, - 0xa6,0xb3,0xbf,0x9a,0xa7,0x30,0xed,0x5b,0x4c,0x81,0x02,0x91,0x24,0x7b,0xce,0xe5,0xa5,0x9b,0x12,0x8b, - 0xd1,0x85,0x87,0x67,0x85,0xc8,0xa4,0x77,0x97,0x2b,0x23,0x93,0x64,0x73,0xc8,0xa4,0x12,0x85,0x10,0x64, - 0x28,0xc5,0x69,0x7b,0xf1,0x32,0xe0,0xc3,0x37,0x5f,0x94,0x20,0x5c,0x3e,0x39,0x70,0xcf,0x68,0x48,0x85, - 0xde,0x9a,0xc2,0xf2,0x14,0x16,0x8f,0x1a,0x34,0x75,0xb1,0x12,0x4f,0x44,0x2b,0xc6,0x14,0x4b,0x73,0x5c, - 0xc9,0x93,0x0a,0x5b,0x42,0x5d,0x88,0x6f,0xf1,0x28,0x1a,0x96,0xee,0x2d,0x54,0x54,0x34,0xc4,0x4c,0x98, - 0xbd,0xb2,0x08,0x47,0x93,0x4d,0x8f,0x4d,0x96,0x21,0xb1,0x6b,0xaf,0x38,0xe0,0x4c,0x53,0x6e,0xa4,0xe5, - 0xec,0x1b,0x0c,0x45,0xea,0x27,0x69,0xaf,0x23,0x4f,0xa5,0x0d,0x79,0x34,0x47,0x61,0x1a,0xdb,0xcb,0x04, - 0x01,0xf2,0xd4,0x6e,0x46,0x0b,0xfd,0xc2,0x4e,0x93,0xb3,0xae,0x4c,0xc7,0x67,0x30,0x74,0xa0,0x3f,0x06, - 0xe4,0x45,0x19,0xa5,0x31,0x75,0xa9,0x58,0x4d,0x74,0xa9,0x23,0x56,0xa2,0xff,0x97,0xb0,0x4d,0xe0,0xc3, - 0x29,0xdd,0xd3,0x2b,0x30,0x87,0xa4,0x65,0x00,0x47,0x5a,0x94,0x68,0x63,0xe2,0x7b,0xa0,0xe6,0xce,0xdf, - 0x2d,0x97,0xf8,0xec,0xee,0x9d,0x0a,0x71,0x44,0x5b,0x04,0xf9,0xd0,0xb3,0x81,0x0e,0x2d,0xd7,0x36,0xd8, - 0xba,0x5c,0xa0,0xa4,0x9b,0xf0,0xb0,0xb8,0x67,0x66,0xc6,0x7d,0x2b,0xed,0x4c,0xa8,0x0b,0xe7,0xea,0xdf, - 0x63,0x41,0x8c,0xdf,0xcc,0x16,0x2c,0x86,0x81,0xc7,0xae,0x07,0x34,0x11,0x1e,0x4f,0x01,0x86,0xe9,0x37, - 0xaf,0xe2,0x25,0xee,0x28,0xa4,0x65,0xb7,0xdf,0xb2,0xa9,0x23,0x64,0x43,0xe1,0xde,0x88,0xbb,0xc9,0x5a, - 0xfe,0x02,0x4e,0x4a,0xfc,0x22,0x2c,0xed,0x62,0xd7,0x64,0x99,0x86,0x5f,0xb6,0x0a,0x5f,0xd1,0x52,0x7b, - 0x33,0x44,0x5e,0x52,0xca,0x4e,0xce,0x79,0x25,0xba,0xb6,0x92,0x73,0x4b,0x61,0xf6,0xcc,0x0a,0xce,0x4b, - 0x9f,0x89,0xaf,0x16,0x5d,0x09,0xc9,0x16,0x7b,0x34,0x3e,0xb1,0x5f,0x4b,0xee,0xd4,0x14,0x76,0x1f,0x79, - 0x2a,0xfd,0x66,0x7e,0x4e,0xc5,0xd4,0xe7,0x0a,0x54,0x11,0xe2,0xf8,0x5e,0xd6,0x0b,0x3f,0xfc,0x6d,0x9f, - 0x7c,0x33,0xd4,0xc5,0xe8,0x2b,0xdb,0x07,0xd8,0xe9,0xb4,0x49,0x61,0xf7,0x21,0x9e,0x48,0x05,0x71,0x62, - 0x8f,0x20,0x2c,0x93,0x36,0x13,0x2d,0x49,0x42,0xc9,0xea,0x29,0x29,0x8a,0xe8,0x39,0xa8,0xb8,0x3d,0x13, - 0x46,0xc8,0xe1,0x8a,0x48,0xcb,0x1d,0xd9,0xc8,0xba,0x54,0xe8,0x92,0x8e,0x96,0xc7,0x67,0x83,0x5c,0x48, - 0x53,0x4d,0x57,0xc0,0x5f,0xc6,0x59,0x4c,0x38,0x07,0x84,0x6b,0xfc,0x3b,0x01,0x90,0x6e,0xbf,0x49,0x00, - 0xc2,0x3b,0x70,0x8b,0x00,0x88,0x99,0x90,0x01,0xc0,0x34,0x2a,0x4e,0xd9,0x0b,0x8a,0x28,0xdb,0x8d,0x2e, - 0x75,0x47,0x77,0xf2,0x18,0x6d,0x33,0x7a,0x79,0x98,0x87,0x16,0xf2,0x2f,0x85,0x2f,0xd6,0x1d,0x83,0x8c, - 0x9b,0x4e,0xb4,0x68,0xd7,0x99,0xcb,0x3a,0x10,0x60,0xdd,0xba,0x8a,0x65,0xe5,0x6c,0xce,0x49,0x34,0x01, - 0xc4,0xd4,0x62,0x80,0x7d,0xce,0xab,0xdc,0x84,0xe6,0x92,0x8e,0x87,0x1c,0x32,0x27,0xeb,0x14,0x0d,0x1e, - 0x15,0xbb,0x6a,0xd4,0xab,0xdd,0x2c,0x8a,0xa8,0x7d,0xb9,0x89,0x15,0x6b,0xc9,0xdf,0xfe,0x48,0xd0,0x6d, - 0x51,0xfb,0x59,0x47,0xcb,0x47,0x96,0x50,0xdb,0x1f,0x54,0xd5,0xe8,0x28,0x61,0x15,0x78,0x4c,0xcf,0x22, - 0x7c,0xbc,0xaf,0x95,0x00,0x56,0xbb,0x62,0xe5,0x50,0x40,0x8c,0x48,0x4b,0x83,0x8c,0x75,0xcd,0x85,0x09, - 0xbc,0xa8,0xc7,0x95,0x80,0x76,0xef,0xdb,0x75,0x4c,0x2b,0x21,0xdc,0xaf,0xab,0xfc,0x29,0x93,0x97,0x06, - 0x9c,0xd2,0x39,0x17,0xb4,0x37,0x1d,0xf3,0x7e,0xdf,0x09,0xb9,0x76,0x35,0x17,0x72,0xed,0xea,0x1d,0x90, - 0xa9,0xce,0x85,0x90,0x59,0xbf,0x2b,0x40,0x9e,0x8e,0xab,0x62,0xe3,0x96,0x43,0x1b,0x53,0x96,0x04,0x9a, - 0x68,0x2a,0xc4,0x28,0x75,0xb6,0x12,0xc4,0x26,0x86,0xaf,0x01,0x74,0xf4,0x99,0x02,0x64,0x4c,0x5b,0x1a, - 0x66,0xa2,0x6d,0x0e,0x50,0xa9,0xcb,0xa2,0xfc,0x35,0x06,0x5e,0x2e,0x7f,0xc9,0x6f,0x73,0x28,0xb9,0xda, - 0x6d,0x5d,0xc2,0x1c,0xea,0x84,0xb2,0x4c,0x3e,0x97,0xf4,0x14,0xe1,0x95,0xbb,0xd2,0x16,0xd6,0xaf,0x09, - 0xb7,0xb5,0x54,0x01,0xfb,0xc3,0x76,0x44,0xcb,0x5e,0x3a,0x5f,0x53,0x5e,0x3a,0x4f,0x2e,0x2f,0xab,0xee, - 0x2d,0xe7,0xab,0x6e,0xd7,0x4b,0x15,0xdd,0x3f,0xdb,0xe0,0x35,0x70,0x7f,0xd5,0xa2,0xfd,0x6d,0x42,0xdb, - 0x1a,0x02,0xfd,0x45,0x5d,0x7c,0x4b,0xc7,0x90,0x12,0xbf,0xe2,0xe6,0xeb,0xa2,0xa0,0x67,0x27,0xeb,0x35, - 0x37,0x90,0x8f,0x6e,0x24,0x85,0x3a,0xa3,0x2c,0x17,0xef,0x89,0xa2,0x5c,0xf0,0xe4,0x34,0x86,0xa7,0xe9, - 0xe5,0xf0,0x34,0xbd,0xbc,0x9f,0x1a,0x67,0x99,0x7d,0x8a,0xbe,0x02,0x6c,0xb0,0x3b,0x9f,0xda,0xc9,0xb1, - 0x56,0x56,0xec,0xd5,0xe6,0x73,0x5b,0x15,0x95,0x59,0xa9,0xab,0xa7,0x91,0xbf,0x2a,0x3f,0xec,0xce,0x6b, - 0xd1,0x51,0x9e,0x84,0x38,0x20,0xb0,0x16,0xd0,0xfd,0x41,0xe6,0xbc,0x4e,0xc1,0xb1,0xf8,0xd0,0x4e,0xed, - 0x13,0x6e,0x12,0x51,0x3b,0x23,0x34,0xb7,0xe8,0xce,0x6d,0x5e,0x4d,0x89,0xdd,0x8a,0xa6,0x7f,0x48,0xe5, - 0xab,0x78,0x83,0xb3,0xcd,0x9b,0x97,0x78,0x5d,0xb0,0xea,0x66,0xd6,0xa1,0x69,0x4c,0x9a,0x56,0x7d,0xde, - 0x9d,0x30,0xd3,0x02,0xa4,0x93,0xa7,0x6e,0x7c,0xe0,0x9f,0x26,0x49,0xd0,0x99,0x8a,0x70,0xb6,0xb1,0xef, - 0x94,0x52,0x01,0x23,0xe7,0x90,0x05,0xdf,0x32,0xf0,0x17,0xa2,0x23,0xf4,0x56,0xfc,0x4e,0x94,0xae,0xb0, - 0x44,0xae,0x6e,0x75,0xd7,0x9b,0xf1,0x97,0x44,0x42,0xf7,0x10,0x4b,0x5f,0x7c,0x85,0xbc,0xd9,0x0f,0xbe, - 0xa2,0xb3,0x93,0x3b,0x41,0xe6,0xdf,0x7d,0x65,0x24,0xe2,0xef,0xbd,0x72,0xaf,0x99,0xc2,0x8f,0x4c,0x6d, - 0x3a,0x14,0x01,0x30,0x69,0x2c,0x3d,0x83,0x09,0x10,0x8d,0xa5,0x13,0x7e,0x2a,0x50,0xf5,0xa8,0x7f,0xa4, - 0x8f,0x4e,0xc5,0xe7,0xa6,0xdb,0xfc,0x2b,0xdb,0xff,0x00,0xdf,0xd5,0x86,0xbe,0x7b,0x3b,0x00,0x00}; + 0xc1,0x7a,0x4c,0x78,0x66,0xed,0xdb,0x82,0x40,0xff,0x10,0x63,0x1c,0xba,0xc6,0xec,0xe4,0xc8,0x40,0x13, + 0x0d,0x19,0xc7,0x25,0xe0,0x79,0x25,0xf1,0x34,0xd9,0xd4,0x6d,0x17,0xbc,0x88,0x07,0xdd,0x06,0x84,0x1c, + 0x97,0x1c,0xd7,0x47,0x23,0xa4,0x03,0x1f,0xb9,0x4e,0x8d,0xc2,0x06,0xc8,0x81,0xb8,0x54,0xc8,0x52,0xd2, + 0x0e,0xc3,0xd6,0x3f,0x34,0x88,0xb1,0x8b,0x0f,0x35,0x99,0xac,0xad,0x1d,0x6b,0x4e,0x60,0xdb,0xda,0xcf, + 0x3f,0xa7,0xda,0xb7,0x38,0xaf,0xf6,0xad,0x44,0x31,0xa0,0x51,0x5a,0x65,0x24,0x53,0xd2,0x7e,0xd7,0x6d, + 0xa4,0xbf,0x6c,0x79,0x18,0x4e,0xb8,0xf5,0x2c,0x64,0xc0,0x8e,0xdc,0x39,0x35,0x81,0x07,0x9c,0x08,0xd7, + 0x18,0x12,0x02,0x4c,0x58,0x3a,0xf9,0xe3,0x8f,0x74,0x67,0x21,0x41,0xfb,0xf6,0x8d,0x9a,0x86,0x0a,0x50, + 0xc3,0xd0,0xe1,0x44,0xff,0x47,0x76,0xd1,0xd5,0xa3,0x65,0x26,0xe4,0x6d,0x68,0x6c,0x0a,0x53,0x1b,0xc0, + 0x07,0x87,0x68,0x4c,0x35,0x6e,0x7b,0x8e,0xf9,0xeb,0x10,0x10,0xb8,0x5f,0xf9,0x84,0xee,0x4e,0xaf,0x7b, + 0xd3,0x9d,0xcb,0x33,0xd3,0xad,0xd2,0x7f,0x9d,0xfe,0xad,0xd5,0xb8,0x35,0xe9,0x5f,0x75,0xf6,0x58,0x9d, + 0xd6,0xaa,0x8f,0xf4,0xe7,0xf4,0xa1,0x3a,0x19,0x9f,0xb3,0x86,0xb3,0x87,0x5e,0xf3,0xfe,0xbc,0x37,0x18, + 0xee,0x3e,0xed,0x18,0xbb,0xcd,0xd9,0xd3,0xcd,0xe9,0xe9,0xd3,0xd9,0x01,0x7a,0xea,0x9f,0x5e,0x0c,0xef, + 0x9b,0xce,0xd3,0xdd,0x85,0xfd,0x78,0xdf,0xfb,0xac,0xeb,0xb6,0xdd,0x65,0x02,0x0f,0xa7,0x17,0xbd,0x46, + 0xf3,0x16,0x76,0x30,0xb9,0x37,0x1a,0x1d,0xf3,0xb9,0x7a,0x73,0xa5,0x3f,0x9e,0xea,0xd5,0xae,0x5e,0xad, + 0x19,0x37,0x9d,0x4a,0xb5,0xb3,0xdb,0xae,0x55,0xcc,0x1e,0x79,0xbc,0x38,0x68,0x74,0x8c,0x6a,0xf7,0xb1, + 0x5a,0x07,0xd5,0x3a,0xf4,0x8c,0x5b,0xab,0x5d,0x7e,0x6d,0x3e,0x07,0xd8,0xf4,0x0e,0xfa,0x7a,0xfb,0xdc, + 0x34,0x7e,0x29,0xef,0xdd,0xed,0x8d,0xfc,0x5b,0xef,0x33,0x3c,0x37,0xdb,0xcd,0x32,0xc6,0x67,0x0d,0x10, + 0xec,0xdf,0x9d,0xd7,0x77,0xcf,0xdb,0xc3,0xf3,0xcf,0xaf,0x17,0xd7,0x57,0xe7,0x18,0x7c,0x1c,0xbd,0x7c, + 0x1d,0x92,0xc7,0x1e,0xb1,0xda,0x5f,0xbc,0xab,0x81,0x79,0xdb,0x32,0xfb,0xe6,0x24,0x68,0xb7,0xdd,0xc7, + 0xe9,0x47,0xd4,0x7e,0x1c,0xe0,0xfd,0x1b,0xab,0xf3,0xd8,0xc6,0x1d,0xd4,0x99,0x4d,0x5b,0x57,0xf6,0xec, + 0xee,0xd2,0xd0,0x67,0xb3,0x2e,0x19,0xeb,0x3d,0x32,0xbb,0xfd,0xbc,0xf3,0x62,0x9e,0xfb,0x37,0x37,0xc1, + 0x6e,0xd5,0xe8,0x5c,0x34,0xbd,0xfa,0x4b,0xf5,0xb2,0xd2,0xda,0xbe,0x6a,0xdd,0xb7,0x87,0xbb,0x55,0xd2, + 0x3a,0xd5,0x5f,0x77,0x50,0xef,0x0c,0xde,0x9c,0x75,0x07,0x4f,0xa3,0xbb,0xfd,0x9b,0xc6,0xce,0x47,0xb3, + 0x7e,0xd6,0xdc,0xc5,0x2e,0x39,0x6b,0x98,0xed,0x9b,0xb7,0x56,0xd5,0x72,0x9e,0xaa,0xa8,0xdb,0xf9,0x52, + 0x09,0xbc,0xde,0x68,0x67,0xfb,0xda,0xf6,0xc8,0x55,0xed,0xd4,0xdb,0x9b,0xbd,0xee,0xe8,0x96,0xe9,0xd7, + 0x6e,0x6f,0x9f,0x70,0x6f,0xba,0x7f,0x53,0xbf,0xde,0x6b,0xdc,0x9f,0xf7,0x5f,0x9b,0x07,0x3e,0xc0,0x4f, + 0xa0,0x7f,0x79,0xf1,0x00,0x2f,0xea,0xc6,0xf0,0xc6,0x26,0x8d,0x9d,0xcb,0xfa,0xfe,0x45,0x67,0xfb,0xd2, + 0xed,0x91,0x33,0xeb,0xed,0xe1,0xb2,0x66,0xd7,0x2e,0xcf,0x2f,0x5a,0xa3,0x97,0x81,0x35,0x6d,0xdf,0x5b, + 0xd5,0x7d,0xe3,0xb4,0xef,0xda,0x3d,0xf4,0xfc,0x72,0x71,0x6d,0x94,0x9f,0x6e,0x27,0x07,0xb3,0x9b,0x83, + 0x6b,0xef,0x75,0x78,0xee,0x21,0x70,0x7b,0x07,0x1a,0xc3,0xa7,0xc6,0x2f,0x7e,0xab,0xf5,0xec,0x9e,0x5e, + 0x3e,0xcc,0x88,0x4b,0xca,0x7a,0xe5,0xee,0x0b,0x1c,0x5e,0x35,0x8c,0xe1,0x64,0x77,0xa8,0xb7,0x49,0xe3, + 0x17,0xf3,0x39,0x38,0x35,0x26,0x0f,0xbd,0xfe,0x45,0xa5,0xf9,0x71,0x7b,0xfa,0xda,0x7a,0x78,0xc0,0xad, + 0xb3,0xe9,0xf8,0x61,0xef,0xeb,0x14,0xe8,0x57,0x75,0x0b,0x76,0xae,0x0f,0xca,0xd7,0xcf,0x57,0x37,0x97, + 0x46,0xb9,0x72,0xd7,0xae,0xd7,0x9c,0x47,0xb3,0xf6,0x76,0xf7,0xdc,0xda,0xeb,0x0c,0x60,0x79,0xdc,0x77, + 0xbb,0xf5,0xca,0xc1,0x5b,0xa5,0x8f,0xa9,0x73,0x1c,0xbc,0x76,0x9d,0x0a,0x74,0x27,0xb5,0x36,0xf7,0x9e, + 0x86,0xdd,0x1c,0xbc,0xf4,0x83,0x9b,0x71,0xad,0x46,0x3d,0xd1,0x2a,0x33,0x17,0xff,0x87,0xbf,0xb1,0xce, + 0xf3,0xd3,0xfa,0x07,0xee,0xd9,0xb4,0xf5,0xc8,0xda,0x65,0x14,0xe2,0x03,0x3f,0x20,0x5b,0x64,0x46,0x7c, + 0x38,0x6e,0xd5,0x69,0x40,0x85,0x51,0xf8,0x1b,0x17,0x8a,0xda,0xa9,0xdc,0x47,0x6d,0xfd,0x50,0x5b,0xa7, + 0x3f,0x59,0x11,0xda,0xba,0x2e,0xb4,0xee,0xa6,0xa2,0x61,0x4a,0xa3,0x4a,0xf0,0xa6,0xa3,0x84,0x06,0x8f, + 0x03,0xf5,0x30,0x28,0xa5,0x76,0xe4,0x18,0x2c,0x0a,0x59,0xb2,0x3c,0x64,0x71,0xb3,0x29,0x84,0x85,0xa2, + 0xbe,0xe8,0x14,0x78,0x5b,0xd0,0x01,0x43,0x1b,0x1a,0x14,0xe0,0x7a,0xa8,0x09,0x1a,0xeb,0x0c,0x84,0x81, + 0x48,0xd2,0x50,0x0a,0x43,0x36,0x1c,0xbc,0xac,0x42,0xd7,0x69,0x8c,0x7b,0x2e,0x72,0xfc,0xad,0xc4,0x26, + 0x1a,0x65,0x2c,0xea,0x27,0xdd,0x8e,0x3c,0xda,0xd9,0x1c,0x9d,0x14,0x06,0x17,0x0c,0x4d,0x1d,0xe7,0x8d, + 0xf7,0x8e,0xde,0x84,0xfe,0x3d,0x6a,0xf2,0x9e,0xa8,0x90,0xe8,0x70,0xe3,0x43,0xf1,0xf8,0x88,0x60,0x1c, + 0xbb,0x06,0xcc,0x8c,0x4f,0xa5,0x69,0x00,0xdf,0xfc,0x8d,0x77,0x23,0x4d,0x01,0x95,0xed,0x9f,0x81,0x27, + 0x56,0xb1,0x01,0x1a,0x0b,0x30,0x02,0x4b,0x3d,0x6e,0x4c,0xba,0xcf,0x26,0x5b,0x91,0xf2,0xe9,0xca,0x63, + 0x20,0xc7,0x2c,0x45,0x08,0xa2,0xe7,0x48,0x7d,0xf8,0x1c,0x0f,0x34,0x7c,0x6e,0x45,0x40,0xd3,0xc3,0x13, + 0x3a,0xd7,0x42,0x26,0xb6,0xdc,0xd0,0xe5,0x14,0x0d,0xb1,0x58,0x51,0x8e,0xc3,0x00,0x48,0x8f,0x79,0x0a, + 0xb0,0xc3,0x11,0x08,0x61,0x0b,0x90,0x1e,0xa4,0x55,0x40,0x83,0x2d,0x4d,0x94,0xd3,0x8b,0x90,0xf0,0xb5, + 0x6a,0x0b,0xc7,0xb4,0xd0,0x09,0x3c,0xca,0x12,0xa9,0xe2,0xc4,0x1e,0x04,0x84,0xd9,0x35,0x2f,0x26,0x28, + 0x5b,0x52,0xa0,0x49,0xcd,0x92,0x36,0x01,0x84,0xc4,0x73,0xae,0xbf,0x0c,0x30,0xd0,0x61,0x46,0x65,0x42, + 0x48,0x90,0x24,0x36,0x50,0x48,0x1f,0x81,0x08,0xe7,0x30,0xf0,0x7d,0x6a,0x0f,0xf1,0xb3,0xe9,0x61,0xba, + 0x8a,0xe1,0x59,0x54,0x5b,0x6c,0x03,0x0f,0x6d,0x73,0x39,0x9f,0xc9,0x6d,0xd3,0xe9,0x2c,0xec,0xb9,0xee, + 0x4e,0x1d,0x66,0xec,0x10,0x01,0x38,0xd1,0xb2,0x9d,0x44,0xcb,0x37,0xf5,0x21,0x68,0x43,0x1f,0xf6,0x17, + 0x0f,0xa7,0xce,0x19,0x63,0x95,0x39,0xc7,0x89,0xea,0x0f,0x30,0x41,0xa6,0x98,0x58,0x1f,0x0c,0x49,0x7e, + 0x7c,0x72,0x51,0xb2,0x0e,0xa8,0xb7,0x4f,0x20,0x4d,0x73,0xe2,0x8f,0x01,0x18,0x52,0x77,0xd0,0xd6,0x85, + 0x99,0xd6,0x59,0x09,0x12,0xe1,0x94,0x18,0x62,0x7a,0x8c,0x35,0x34,0x2b,0xed,0x70,0x20,0xe5,0x5c,0xf0, + 0xae,0xbe,0x7d,0x8c,0x4c,0x13,0xe2,0x39,0xbd,0xc7,0x1c,0x71,0xff,0x51,0xcb,0xf7,0x41,0x90,0xa4,0x81, + 0x62,0x0c,0x12,0x4f,0x8c,0x22,0x69,0xfb,0x3e,0x38,0xc4,0x7a,0x33,0x67,0x16,0x04,0x3d,0x99,0x05,0xfe, + 0xac,0xe8,0x3b,0x9b,0x09,0x94,0x93,0xcd,0x96,0xce,0xbd,0xec,0x84,0xca,0x2b,0xe8,0x1e,0x57,0x71,0x72, + 0x84,0x69,0x16,0x71,0xb5,0x43,0x4e,0x3b,0x2e,0x49,0xdc,0xc0,0xb6,0xfb,0x3e,0xf4,0xc8,0x00,0x07,0x54, + 0x88,0x65,0x0e,0x96,0x92,0x69,0xa5,0x1e,0x11,0xe8,0xa0,0x59,0x2d,0xe9,0x53,0x3a,0x4b,0x97,0x5c,0x91, + 0x84,0x6e,0x09,0xd5,0x4d,0x60,0x93,0xb9,0xba,0x47,0x8c,0x41,0xa5,0x3c,0x32,0x3f,0xb1,0x69,0x9d,0x8c, + 0x33,0x0b,0x34,0xb5,0x9b,0x17,0x65,0xba,0x58,0x61,0xba,0x7e,0x9e,0x00,0x3b,0x10,0xc1,0xd9,0x06,0xbe, + 0xb5,0x35,0xb2,0x5d,0x17,0x6f,0x44,0xbc,0x77,0x8c,0xa8,0x6d,0x6b,0xbb,0x9f,0x3f,0x6b,0xff,0xd2,0xca, + 0x3b,0x3b,0xcc,0x64,0xff,0x8c,0xea,0xe9,0x5c,0xef,0x72,0x31,0x8d,0x1c,0x2f,0xf0,0x35,0x7f,0xe6,0xd1, + 0x01,0x63,0xe0,0xd0,0x0a,0x5d,0x1b,0x23,0xe7,0xb8,0xb4,0x43,0x7f,0xc1,0xdb,0x71,0x89,0xaa,0x2c,0xa5, + 0xa5,0xe3,0xc1,0x6f,0x39,0xc1,0x78,0x08,0x71,0x02,0xf9,0x4e,0x60,0x2c,0x4a,0x0d,0xf2,0x28,0xd7,0x12, + 0xbb,0x4d,0x36,0x47,0x2e,0x55,0xb2,0xc1,0xc8,0x9f,0x34,0xba,0xd6,0xc1,0xb7,0x0f,0xf4,0x47,0x23,0xcb, + 0x5a,0x81,0x31,0x6e,0x4d,0x7e,0xac,0x09,0x12,0x0c,0x99,0xf1,0xab,0xd7,0xd7,0x82,0x94,0x43,0x65,0xa9, + 0x2d,0xc6,0xda,0xef,0x24,0x18,0x8e,0x91,0x9f,0x6c,0xae,0xe8,0xb6,0xd0,0x9e,0xb1,0x85,0x7b,0x10,0xb2, + 0xa6,0xa2,0x25,0x49,0x3f,0x8c,0x23,0x13,0x33,0xba,0x05,0xf5,0x97,0x18,0xef,0xd0,0x75,0x6d,0x08,0x1c, + 0x16,0x04,0x92,0x4c,0x54,0x7a,0x95,0x52,0xbe,0x9f,0x62,0x69,0x38,0x61,0x8d,0xc5,0xc6,0xc7,0x75,0xca, + 0xe3,0x51,0x6b,0x9b,0xb7,0xa0,0xaf,0xe5,0x0b,0xa8,0xb8,0x00,0xfc,0xf3,0x4f,0x4d,0x41,0x15,0xa1,0xc8, + 0x36,0xa0,0x7b,0x8a,0xc4,0x4b,0xfb,0x6d,0xd1,0x7d,0x3c,0x76,0xa0,0x2f,0xd7,0x81,0x36,0x18,0x42,0x5b, + 0xe3,0x0e,0xc6,0x8d,0x43,0xe7,0x97,0x20,0xa6,0x8e,0x19,0x53,0xad,0x26,0xcd,0x13,0x2a,0xe3,0x7a,0xd2, + 0xae,0x22,0xa6,0xbe,0xc4,0xb7,0xa7,0x0a,0xdd,0x39,0x17,0x49,0xdb,0xc8,0xcf,0x20,0x39,0xb2,0x2a,0x27, + 0x3d,0x68,0x42,0x9b,0xd0,0x69,0xab,0x14,0xdb,0x36,0x7e,0xb2,0xa1,0x63,0xfa,0x56,0x7c,0x58,0x20,0x62, + 0x28,0xa4,0xca,0x61,0xa4,0x16,0x8f,0x1d,0x9a,0x86,0x07,0xb4,0xe5,0xd5,0x40,0xb8,0xe6,0x61,0x24,0x17, + 0x4f,0xca,0xb7,0xf4,0x74,0x72,0xb9,0xcd,0x78,0xff,0x3d,0xdf,0xcb,0x96,0xf0,0xaf,0xd0,0xb1,0x55,0x6e, + 0x26,0x27,0x00,0xc0,0xd7,0x37,0x51,0x56,0x88,0xc2,0xe8,0xa7,0xfc,0x51,0x84,0xa8,0x69,0xa4,0x70,0xd9, + 0x10,0xe6,0x50,0xcf,0x77,0xae,0xb0,0xc9,0xa5,0x0c,0x9d,0x0e,0x06,0x17,0xe7,0x35,0x61,0x0a,0x76,0x8e, + 0xc3,0xb2,0x15,0xd5,0xa6,0xfb,0x45,0x93,0x1f,0xd9,0x7f,0x40,0x3d,0xa8,0x94,0x94,0xf7,0x36,0xcd,0x44, + 0x54,0xd6,0xf5,0x78,0xdd,0xc4,0xd3,0x08,0x4b,0x3f,0x4a,0xb8,0x4d,0xf4,0x06,0x0d,0xc9,0x33,0x85,0x50, + 0x56,0xb8,0xac,0x16,0xee,0x07,0x0e,0x46,0x64,0xbe,0xe8,0x6e,0xa1,0x28,0x89,0x63,0x2b,0x92,0xdc,0x16, + 0xc3,0x5d,0x38,0xec,0x51,0x04,0x3a,0x3b,0xe8,0xb4,0x8f,0xcb,0xe6,0x61,0x99,0x71,0x47,0x32,0xca,0x66, + 0x1c,0xc4,0xcc,0xab,0x63,0x85,0x6c,0xe1,0x0d,0x81,0xfb,0x51,0x48,0xb3,0xad,0x0e,0x22,0x9e,0x0d,0x78, + 0xca,0xdc,0x60,0xed,0x9f,0x34,0xbe,0x32,0xbf,0x0f,0x3d,0x86,0x36,0xe0,0xf9,0x5a,0x3d,0x00,0x1a,0xb3, + 0xb0,0x08,0xa7,0x2c,0xba,0x34,0x54,0x56,0xa0,0x14,0x20,0x95,0x13,0x2a,0x84,0x2f,0x06,0x98,0x91,0xc5, + 0xd1,0x37,0x76,0x1d,0xca,0x38,0x27,0xf8,0xda,0x9c,0x21,0x15,0x74,0x0b,0x54,0xfa,0x01,0x24,0xf3,0x75, + 0x0e,0x04,0xc7,0x2a,0x4a,0xa7,0xd0,0x70,0x16,0xa9,0xbd,0x8f,0x78,0x56,0x42,0x6b,0x05,0x78,0x11,0xdc, + 0x90,0x65,0x15,0xb5,0x23,0x8c,0xe6,0x2b,0x6d,0x72,0x86,0x55,0x54,0x12,0xba,0xc6,0xe1,0xf9,0x4a,0xfb, + 0x21,0xcb,0x4a,0x6a,0x83,0x05,0x1e,0xd0,0x0f,0x72,0x1e,0xa0,0xae,0xdf,0x96,0xa8,0xc7,0xa2,0x4e,0x87, + 0xf4,0xd7,0xf2,0xe9,0x6c,0x91,0x1f,0x57,0x97,0xe5,0xb1,0xcc,0xa9,0xcf,0xe4,0x2a,0x8d,0x05,0x75,0x72, + 0xa6,0xce,0x8e,0x5d,0xd4,0x69,0xb1,0xe3,0xd6,0x29,0xad,0xe0,0xe8,0x49,0xec,0xb5,0x58,0x97,0xe1,0xde, + 0xfe,0x30,0x3a,0xab,0xa2,0x88,0xe9,0x46,0x99,0x95,0x43,0xd9,0xc5,0x0b,0x18,0x86,0xb4,0x72,0xa9,0x3b, + 0xad,0x1a,0xd1,0xde,0x5e,0xe8,0x2d,0x5c,0x9a,0x12,0x00,0xb2,0x31,0x45,0x75,0x59,0x52,0xa1,0x89,0x12, + 0x94,0x78,0x0e,0xcf,0x24,0x79,0xf5,0x79,0xca,0x55,0xf5,0x79,0x3b,0xed,0xfc,0x30,0x4b,0x59,0xff,0x90, + 0x58,0x96,0x15,0xb1,0x73,0x4b,0xd9,0xb6,0xcb,0x2b,0x9f,0xb9,0xc5,0xec,0x58,0xf0,0xac,0x58,0xce,0x0a, + 0xa9,0x05,0x05,0x87,0x60,0x5a,0xb2,0xa4,0xcd,0x68,0x5c,0x15,0x42,0x3d,0xc0,0xd4,0x62,0xf2,0x94,0x2e, + 0x81,0x29,0x27,0x94,0x02,0x29,0x15,0xb5,0xa1,0x91,0x16,0x94,0xb5,0x2a,0xae,0xe5,0x0a,0x5b,0xa5,0xfe, + 0xe2,0xd2,0x36,0x1c,0xfa,0x3b,0x8a,0xdb,0x58,0xf2,0xbd,0xe5,0x6d,0x46,0xc1,0x5f,0xaa,0xc0,0x1d,0xcb, + 0xee,0xfe,0x1d,0x4b,0xdc,0x54,0x18,0x15,0x16,0xb9,0xa2,0xf7,0xef,0x5b,0xe6,0x0a,0x17,0x3c,0xe4,0xd3, + 0xb2,0x2e,0x3a,0x60,0x07,0xa8,0x1c,0x02,0x7b,0x71,0xf1,0x6f,0x0f,0x39,0x8a,0xf3,0x31,0xc1,0xd9,0xa5, + 0xb4,0x85,0xde,0xc7,0x8f,0x53,0x8a,0x55,0x17,0x66,0x7a,0x4a,0x5d,0x06,0x9f,0x81,0x70,0xf6,0xfc,0x2c, + 0x6b,0xb0,0x98,0x23,0x85,0x35,0xac,0x15,0x8b,0xe1,0x49,0x9a,0x0b,0x41,0xc6,0x3c,0xb9,0xaa,0x5f,0x51, + 0xb8,0x67,0xe0,0x74,0xa4,0xbf,0x81,0xbd,0x6a,0x29,0x9f,0x51,0x36,0x70,0x3d,0x76,0x5a,0x3c,0x57,0x8b, + 0x62,0xbb,0x9d,0xd1,0x72,0xea,0xd2,0x15,0x60,0x7c,0xeb,0x15,0xed,0x0e,0xfe,0x5f,0x44,0x14,0x17,0x11, + 0xc2,0x94,0xff,0x8b,0x32,0x22,0x95,0x1d,0x8a,0x3a,0xfe,0x7b,0x94,0x12,0xf3,0xcf,0xcf,0x52,0x87,0xe1, + 0xf3,0xca,0x8e,0x9a,0xfc,0x82,0x2d,0x29,0x39,0xe4,0x83,0xf3,0xe5,0xca,0x0d,0x49,0x42,0x7a,0x13,0x99, + 0xce,0xfe,0x6a,0x9e,0xc2,0xb4,0x6f,0x31,0x05,0x0a,0x44,0x92,0xec,0x39,0x97,0x97,0x6e,0x4a,0x2c,0x46, + 0x17,0x1e,0x9e,0x15,0x22,0x93,0xde,0x5d,0xae,0x8c,0x4c,0x92,0xcd,0x21,0x93,0x4a,0x14,0x42,0x90,0xa1, + 0x14,0xa7,0xed,0xc5,0xcb,0x80,0x0f,0xdf,0x7c,0x51,0x82,0x70,0xf9,0xe4,0xc0,0x3d,0xa3,0x21,0xe5,0x7a, + 0x6b,0x8a,0x91,0xa7,0xb0,0x78,0x74,0x40,0x53,0x17,0x2b,0xf1,0x44,0xb4,0x62,0x4c,0xb1,0x34,0xc7,0x95, + 0x3c,0xa9,0xb0,0x25,0xd4,0x85,0xf8,0x16,0xcf,0xa2,0x61,0xe9,0xde,0x42,0x45,0x45,0x53,0xcc,0x84,0xd9, + 0x2b,0x8b,0x70,0x36,0x59,0x78,0x6c,0xb2,0x0c,0x89,0x5d,0x7b,0xc5,0x09,0x67,0x9a,0x72,0x33,0x2d,0x67, + 0xdf,0x60,0x28,0x52,0x3f,0x49,0x5b,0x1d,0x79,0x2a,0x6d,0xc8,0xa3,0x39,0x0a,0x53,0xdf,0x5e,0xc6,0x09, + 0x90,0xa7,0x36,0x33,0x5a,0x68,0x17,0x76,0x9a,0x9c,0x35,0x65,0xda,0x3f,0x83,0xa1,0x03,0xfd,0x31,0x20, + 0x2f,0x4a,0x2f,0x8d,0xa9,0x4b,0xf9,0x6a,0xa2,0x4b,0xed,0xb1,0x12,0xfd,0xbf,0x84,0x6d,0x02,0x1f,0x4e, + 0xe9,0x9e,0x5e,0x81,0x39,0x24,0x2d,0x03,0x38,0xd2,0xa2,0x44,0x1b,0x13,0xdf,0x03,0x35,0x77,0xfe,0x6e, + 0xb9,0xc4,0x67,0x77,0xef,0x54,0x88,0x23,0xda,0x22,0xc8,0x87,0x9e,0x0d,0x74,0x68,0xb9,0xb6,0xc1,0xd6, + 0xe5,0x02,0x25,0xdd,0x84,0x87,0xf9,0x3d,0x1b,0x66,0xdc,0xb7,0x72,0x9c,0x09,0x75,0x61,0xac,0xfe,0x3d, + 0x16,0xc4,0xf8,0xcd,0x6c,0xc1,0x62,0x18,0x78,0xec,0x7a,0x40,0x13,0xe1,0xf1,0x14,0x60,0x98,0x7e,0xf3, + 0x2a,0x5e,0xe2,0x8e,0x42,0x5a,0x76,0xfb,0x2d,0x0f,0x75,0x84,0x6c,0x28,0xcc,0x1b,0x71,0x37,0x59,0xcb, + 0x5f,0xc0,0x48,0x89,0x5d,0xc4,0x48,0xbb,0xd8,0x35,0x59,0xa6,0xe1,0x97,0xad,0xc2,0x57,0xb4,0x74,0xbc, + 0x19,0x22,0x2f,0x29,0x65,0x23,0xe7,0xac,0x12,0x5d,0x5b,0xc9,0x99,0xa5,0x30,0x7b,0x66,0x05,0xe7,0xa5, + 0xcf,0xc4,0x56,0x8b,0xae,0x84,0x64,0x8b,0x3d,0xea,0x9f,0xd8,0xaf,0x25,0x77,0x6a,0x0a,0xbb,0x8f,0x2c, + 0x95,0x7e,0x33,0x3f,0xa7,0x62,0xea,0x73,0x05,0x2a,0x0f,0x71,0x7c,0x2f,0x6b,0x85,0x1f,0xfe,0xb6,0x4f, + 0xbe,0x19,0xea,0x62,0xf4,0x95,0xed,0x03,0xec,0x74,0xda,0xa4,0xb0,0xfb,0x10,0x4f,0xa4,0x82,0x38,0x19, + 0x8f,0x20,0x2c,0x93,0x36,0x13,0x2d,0x49,0x42,0xc9,0xea,0x29,0x29,0x8a,0xe8,0x39,0xa8,0xf8,0x78,0x26, + 0x8c,0x90,0xc3,0x15,0x91,0x96,0x3b,0xb2,0x91,0x75,0xa9,0xd0,0x25,0x1d,0x2d,0x8f,0xcf,0x06,0x39,0x97, + 0xa6,0x9a,0xae,0x80,0xbf,0x8c,0xb1,0x98,0x70,0x0e,0x08,0xd7,0xb8,0x02,0x00,0xe9,0xf2,0x99,0x04,0x20, + 0xbc,0x82,0xb6,0x08,0x80,0x70,0xc4,0x0c,0x00,0xa6,0x51,0x71,0xc8,0x5d,0x50,0xc3,0xd8,0x6e,0x74,0xa7, + 0x3a,0xba,0x12,0xc7,0x68,0x9b,0xd1,0xbb,0xbb,0x3c,0xb4,0x90,0x7f,0x29,0x7c,0xb1,0xee,0x18,0x64,0xdc, + 0x74,0xa2,0x45,0x9b,0xbe,0x5c,0xd0,0x43,0x80,0x75,0xeb,0x2a,0x96,0x95,0x93,0x29,0x27,0xd1,0xf8,0x8b, + 0xa9,0xc5,0x00,0xfb,0x9c,0x57,0xb9,0x07,0xcc,0xc5,0xbc,0x87,0x1c,0x32,0x27,0xe8,0x8b,0x26,0x8f,0x8a, + 0x5d,0x35,0xea,0xd5,0x6e,0x16,0x45,0xd4,0xbe,0x9c,0x5f,0xc7,0x5a,0xf2,0x97,0x2f,0x12,0x74,0x5b,0x74, + 0xfc,0xac,0xa3,0xe5,0x3d,0x4b,0xa8,0xed,0x0f,0xaa,0x6a,0x74,0x94,0xb0,0x0a,0x3c,0xa6,0x67,0x11,0x3e, + 0xde,0xd7,0x4a,0x00,0xab,0x5d,0x91,0xb8,0x15,0x10,0x23,0xd2,0xd2,0x20,0x63,0x5d,0x73,0x61,0x02,0x2f, + 0xea,0x71,0x25,0xa0,0xdd,0xfb,0x76,0x1d,0xd3,0x42,0x04,0xf7,0xeb,0x2a,0x7b,0xca,0xe4,0xa5,0x01,0xa7, + 0x74,0xce,0x05,0xed,0x4d,0xc7,0xbc,0xdf,0x77,0x42,0xae,0x5d,0xcd,0x85,0x5c,0xbb,0x7a,0x07,0x64,0xaa, + 0x73,0x21,0x64,0xd6,0xef,0x0a,0x90,0xa7,0xe3,0xaa,0xd8,0x37,0xe5,0xd0,0xc6,0x94,0x25,0x81,0x26,0x9a, + 0x0a,0x31,0x4a,0x9d,0xad,0x04,0xb1,0x89,0xe1,0x6b,0x00,0x1d,0x7d,0xa6,0x00,0x19,0xd3,0x96,0x86,0x99, + 0x68,0x9b,0x03,0x54,0xea,0xb2,0x28,0x7f,0x8d,0x81,0x97,0xcb,0x5f,0xf2,0xcb,0x14,0x4a,0xae,0x76,0x5b, + 0x97,0x30,0x87,0x3a,0xa1,0x2c,0x93,0xcf,0x25,0x3d,0x45,0x78,0xe5,0xae,0xb4,0x85,0xe5,0x63,0xc2,0x6d, + 0x2d,0x55,0x3f,0xfe,0xb0,0x0d,0xc9,0xb2,0x77,0xbe,0xd7,0x94,0x77,0xbe,0x93,0xbb,0xc3,0xaa,0x6b,0xc3, + 0xf9,0xa2,0xd7,0xf5,0x52,0x35,0xef,0xcf,0x36,0x78,0x0d,0xdc,0x5f,0xb5,0x68,0x7b,0x99,0xd0,0xb6,0x86, + 0x40,0x7f,0x51,0xd7,0xbe,0xd2,0x29,0xa0,0xc4,0xaf,0xb8,0x78,0xba,0xc8,0xe9,0xd9,0xc1,0x76,0xcd,0x0d, + 0xe4,0x93,0x13,0x49,0xa1,0xce,0x28,0xcb,0xf9,0x7b,0xa2,0x28,0xe7,0x3c,0x39,0x8d,0xe1,0x61,0x76,0x39, + 0x3c,0xcc,0x2e,0xef,0xa7,0xe6,0x59,0x66,0x9f,0xa2,0xaf,0x00,0x1b,0xec,0xca,0xa5,0x76,0x72,0xac,0x95, + 0x15,0x5b,0xa5,0xf9,0xdc,0x56,0x45,0x35,0xac,0xd4,0xcd,0xcf,0xc8,0x5e,0x95,0x1f,0x76,0xe5,0xb4,0xe8, + 0x24,0x4d,0x42,0x1c,0x10,0x58,0x0b,0x68,0x79,0x9e,0x39,0x2e,0x53,0x70,0x2c,0x3e,0x33,0x53,0xdb,0x84, + 0x0f,0x89,0xa8,0x8d,0x11,0x0e,0xb7,0xe8,0xca,0x6b,0x5e,0x4d,0x89,0x5d,0x4a,0xa6,0x7f,0x48,0xe5,0xab, + 0x78,0x81,0xb2,0xcd,0x9b,0x97,0x38,0xad,0x5f,0x75,0x2f,0xe9,0xd0,0x34,0x26,0x85,0x55,0x9f,0x77,0x27, + 0x86,0x69,0x01,0xd2,0xc9,0x53,0x37,0x3e,0xf0,0x2f,0x83,0x24,0xe8,0x4c,0x45,0x18,0x6d,0xec,0x33,0xa1, + 0x94,0xc3,0xc8,0x39,0x64,0xc1,0xa7,0x04,0xfc,0x7d,0xe4,0x08,0xbd,0x15,0xbf,0x92,0xa4,0x2b,0x2c,0x91, + 0xab,0x5b,0xdd,0xf5,0x66,0xfc,0x1d,0x8d,0xd0,0x3d,0xc4,0xd2,0x07,0x57,0x21,0x6f,0xf6,0x7b,0xab,0xe8, + 0xe8,0xe2,0x4e,0x90,0xf9,0x67,0x57,0x19,0x89,0xf8,0x73,0xab,0xdc,0x5b,0x9e,0xf0,0x1b,0x4f,0x9b,0x4e, + 0x45,0x00,0x4c,0xea,0x4b,0xcf,0x60,0x02,0x44,0x63,0xe9,0x84,0x6f,0xca,0xab,0x1e,0xb5,0x8f,0xf4,0xcd, + 0xa7,0xf8,0xda,0x73,0x9b,0x7f,0xe4,0xfa,0x1f,0x6e,0xdd,0xfc,0xe9,0xfa,0x3a,0x00,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 4f56cfb..bcfeee0 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 40; +const uint8_t VersionMetadata = 41; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+40"; -const char VersionCommitDate[] = "2018-02-12"; +const char VersionFullSemVer[] = "2.0.0-beta.1+41"; +const char VersionCommitDate[] = "2018-02-13"; #endif diff --git a/src/main.triggers.h b/src/main.triggers.h index f8ed8b8..cc13065 100644 --- a/src/main.triggers.h +++ b/src/main.triggers.h @@ -239,7 +239,17 @@ void updateTimeTrigger() #ifdef SerialDebug _d("Triggers:: active time trigger: "); if (activeTimeTrigger != nullptr) + { + _d(activeTimeTrigger->brightness); + _d(" @ "); + + switch (activeTimeTrigger->triggerType) + { + case RelativeToSunrise: _d("sunrise "); break; + case RelativeToSunset: _d("sunset "); break; + } _dln(activeTimeTrigger->time); + } else _dln("null"); #endif diff --git a/src/praisethesun.cpp b/src/praisethesun.cpp deleted file mode 100644 index 8c32def..0000000 --- a/src/praisethesun.cpp +++ /dev/null @@ -1,350 +0,0 @@ -/* - * Stairs lighting - * Copyright 2017 (c) Mark van Renswoude - * - * https://git.x2software.net/pub/Stairs - * - * This code was ported over from Domoticz' SunRiseSet.cpp - * https://github.com/domoticz/domoticz/ -*/ -#include "./praisethesun.h" -#include - - -#ifndef PI -#define PI 3.1415926535897932384 -#endif - -/* A macro to compute the number of days elapsed since 2000 Jan 0.0 */ -/* (which is equal to 1999 Dec 31, 0h UT) */ - -#define days_since_2000_Jan_0(y,m,d) \ - (367L*(y)-((7*((y)+(((m)+9)/12)))/4)+((275*(m))/9)+(d)-730530L) - -/* Some conversion factors between radians and degrees */ - -#ifndef PI - #define PI 3.1415926535897932384 -#endif - -#define RADEG ( 180.0 / PI ) -#define DEGRAD ( PI / 180.0 ) - -/* The trigonometric functions in degrees */ - -#define sind(x) sin((x)*DEGRAD) -#define cosd(x) cos((x)*DEGRAD) -#define tand(x) tan((x)*DEGRAD) - -#define atand(x) (RADEG*atan(x)) -#define asind(x) (RADEG*asin(x)) -#define acosd(x) (RADEG*acos(x)) -#define atan2d(y,x) (RADEG*atan2(y,x)) - - - -double GMST0(double d); -double revolution( double x ); -void sun_RA_dec( double d, double *RA, double *dec, double *r ); -double rev180( double x ); -void sunpos( double d, double *lon, double *r ); - - - - - -int sunriset( int year, int month, int day, double lon, double lat, - double altit, int upper_limb, double *trise, double *tset ) -/***************************************************************************/ -/* Note: year,month,date = calendar date, 1801-2099 only. */ -/* Eastern longitude positive, Western longitude negative */ -/* Northern latitude positive, Southern latitude negative */ -/* The longitude value IS critical in this function! */ -/* altit = the altitude which the Sun should cross */ -/* Set to -35/60 degrees for rise/set, -6 degrees */ -/* for civil, -12 degrees for nautical and -18 */ -/* degrees for astronomical twilight. */ -/* upper_limb: non-zero -> upper limb, zero -> center */ -/* Set to non-zero (e.g. 1) when computing rise/set */ -/* times, and to zero when computing start/end of */ -/* twilight. */ -/* *rise = where to store the rise time */ -/* *set = where to store the set time */ -/* Both times are relative to the specified altitude, */ -/* and thus this function can be used to compute */ -/* various twilight times, as well as rise/set times */ -/* Return value: 0 = sun rises/sets this day, times stored at */ -/* *trise and *tset. */ -/* +1 = sun above the specified "horizon" 24 hours. */ -/* *trise set to time when the sun is at south, */ -/* minus 12 hours while *tset is set to the south */ -/* time plus 12 hours. "Day" length = 24 hours */ -/* -1 = sun is below the specified "horizon" 24 hours */ -/* "Day" length = 0 hours, *trise and *tset are */ -/* both set to the time when the sun is at south. */ -/* */ -/**********************************************************************/ -{ - double d, /* Days since 2000 Jan 0.0 (negative before) */ - sr, /* Solar distance, astronomical units */ - sRA, /* Sun's Right Ascension */ - sdec, /* Sun's declination */ - sradius, /* Sun's apparent radius */ - t, /* Diurnal arc */ - tsouth, /* Time when Sun is at south */ - sidtime; /* Local sidereal time */ - - int rc = 0; /* Return cde from function - usually 0 */ - - /* Compute d of 12h local mean solar time */ - d = days_since_2000_Jan_0(year,month,day) + 0.5 - lon/360.0; - - /* Compute the local sidereal time of this moment */ - sidtime = revolution(GMST0(d) + 180.0 + lon); - - /* Compute Sun's RA, Decl and distance at this moment */ - sun_RA_dec( d, &sRA, &sdec, &sr ); - - /* Compute time when Sun is at south - in hours UT */ - tsouth = 12.0 - rev180(sidtime - sRA)/15.0; - - /* Compute the Sun's apparent radius in degrees */ - sradius = 0.2666 / sr; - - /* Do correction to upper limb, if necessary */ - if ( upper_limb ) - altit -= sradius; - - /* Compute the diurnal arc that the Sun traverses to reach */ - /* the specified altitude altit: */ - { - double cost; - cost = ( sind(altit) - sind(lat) * sind(sdec) ) / - ( cosd(lat) * cosd(sdec) ); - if ( cost >= 1.0 ) - rc = -1, t = 0.0; /* Sun always below altit */ - else if ( cost <= -1.0 ) - rc = +1, t = 12.0; /* Sun always above altit */ - else - t = acosd(cost)/15.0; /* The diurnal arc, hours */ - } - - /* Store rise and set times - in hours UT */ - *trise = tsouth - t; - *tset = tsouth + t; - - return rc; -} - - - -double daylen( int year, int month, int day, double lon, double lat, double altit, int upper_limb ) -/**********************************************************************/ -/* Note: year,month,date = calendar date, 1801-2099 only. */ -/* Eastern longitude positive, Western longitude negative */ -/* Northern latitude positive, Southern latitude negative */ -/* The longitude value is not critical. Set it to the correct */ -/* longitude if you're picky, otherwise set to to, say, 0.0 */ -/* The latitude however IS critical - be sure to get it correct */ -/* altit = the altitude which the Sun should cross */ -/* Set to -35/60 degrees for rise/set, -6 degrees */ -/* for civil, -12 degrees for nautical and -18 */ -/* degrees for astronomical twilight. */ -/* upper_limb: non-zero -> upper limb, zero -> center */ -/* Set to non-zero (e.g. 1) when computing day length */ -/* and to zero when computing day+twilight length. */ -/**********************************************************************/ -{ - double d, /* Days since 2000 Jan 0.0 (negative before) */ - obl_ecl, /* Obliquity (inclination) of Earth's axis */ - sr, /* Solar distance, astronomical units */ - slon, /* True solar longitude */ - sin_sdecl, /* Sine of Sun's declination */ - cos_sdecl, /* Cosine of Sun's declination */ - sradius, /* Sun's apparent radius */ - t; /* Diurnal arc */ - - /* Compute d of 12h local mean solar time */ - d = days_since_2000_Jan_0(year,month,day) + 0.5 - lon/360.0; - - /* Compute obliquity of ecliptic (inclination of Earth's axis) */ - obl_ecl = 23.4393 - 3.563E-7 * d; - - /* Compute Sun's ecliptic longitude and distance */ - sunpos( d, &slon, &sr ); - - /* Compute sine and cosine of Sun's declination */ - sin_sdecl = sind(obl_ecl) * sind(slon); - cos_sdecl = sqrt( 1.0 - sin_sdecl * sin_sdecl ); - - /* Compute the Sun's apparent radius, degrees */ - sradius = 0.2666 / sr; - - /* Do correction to upper limb, if necessary */ - if ( upper_limb ) - altit -= sradius; - - /* Compute the diurnal arc that the Sun traverses to reach */ - /* the specified altitude altit: */ - { - double cost; - cost = ( sind(altit) - sind(lat) * sin_sdecl ) / - ( cosd(lat) * cos_sdecl ); - if ( cost >= 1.0 ) - t = 0.0; /* Sun always below altit */ - else if ( cost <= -1.0 ) - t = 24.0; /* Sun always above altit */ - else t = (2.0/15.0) * acosd(cost); /* The diurnal arc, hours */ - } - return t; -} - - -/* This function computes the Sun's position at any instant */ - -void sunpos( double d, double *lon, double *r ) -/******************************************************/ -/* Computes the Sun's ecliptic longitude and distance */ -/* at an instant given in d, number of days since */ -/* 2000 Jan 0.0. The Sun's ecliptic latitude is not */ -/* computed, since it's always very near 0. */ -/******************************************************/ -{ - double M, /* Mean anomaly of the Sun */ - w, /* Mean longitude of perihelion */ - /* Note: Sun's mean longitude = M + w */ - e, /* Eccentricity of Earth's orbit */ - E, /* Eccentric anomaly */ - x, y, /* x, y coordinates in orbit */ - v; /* True anomaly */ - - /* Compute mean elements */ - M = revolution(356.0470 + 0.9856002585 * d); - w = 282.9404 + 4.70935E-5 * d; - e = 0.016709 - 1.151E-9 * d; - - /* Compute true longitude and radius vector */ - E = M + e * RADEG * sind(M) * ( 1.0 + e * cosd(M) ); - x = cosd(E) - e; - y = sqrt( 1.0 - e*e ) * sind(E); - *r = sqrt( x*x + y*y ); /* Solar distance */ - v = atan2d( y, x ); /* True anomaly */ - *lon = v + w; /* True solar longitude */ - if ( *lon >= 360.0 ) - *lon -= 360.0; /* Make it 0..360 degrees */ -} - - -void sun_RA_dec( double d, double *RA, double *dec, double *r ) -/******************************************************/ -/* Computes the Sun's equatorial coordinates RA, Decl */ -/* and also its distance, at an instant given in d, */ -/* the number of days since 2000 Jan 0.0. */ -/******************************************************/ -{ - double lon, obl_ecl, x, y, z; - - /* Compute Sun's ecliptical coordinates */ - sunpos( d, &lon, r ); - - /* Compute ecliptic rectangular coordinates (z=0) */ - x = *r * cosd(lon); - y = *r * sind(lon); - - /* Compute obliquity of ecliptic (inclination of Earth's axis) */ - obl_ecl = 23.4393 - 3.563E-7 * d; - - /* Convert to equatorial rectangular coordinates - x is unchanged */ - z = y * sind(obl_ecl); - y = y * cosd(obl_ecl); - - /* Convert to spherical coordinates */ - *RA = atan2d( y, x ); - *dec = atan2d( z, sqrt(x*x + y*y) ); - -} - - -/******************************************************************/ -/* This function reduces any angle to within the first revolution */ -/* by subtracting or adding even multiples of 360.0 until the */ -/* result is >= 0.0 and < 360.0 */ -/******************************************************************/ - -#define INV360 ( 1.0 / 360.0 ) - -double revolution( double x ) -/*****************************************/ -/* Reduce angle to within 0..360 degrees */ -/*****************************************/ -{ - return( x - 360.0 * floor( x * INV360 ) ); -} - -double UtcToLocal(double time, double tz) -/*********************************************/ -/* Add Time Zone difference to time */ -/*********************************************/ -{ - time += tz; - return((time > 24.0) ? time-24.0 : (time < 0.0) ? time+24.0 : time); -} - -double rev180( double x ) -/*********************************************/ -/* Reduce angle to within +180..+180 degrees */ -/*********************************************/ -{ - return( x - 360.0 * floor( x * INV360 + 0.5 ) ); -} - -/*******************************************************************/ -/* This function computes GMST0, the Greenwich Mean Sidereal Time */ -/* at 0h UT (i.e. the sidereal time at the Greenwhich meridian at */ -/* 0h UT). GMST is then the sidereal time at Greenwich at any */ -/* time of the day. I've generalized GMST0 as well, and define it */ -/* as: GMST0 = GMST - UT -- this allows GMST0 to be computed at */ -/* other times than 0h UT as well. While this sounds somewhat */ -/* contradictory, it is very practical: instead of computing */ -/* GMST like: */ -/* */ -/* GMST = (GMST0) + UT * (366.2422/365.2422) */ -/* */ -/* where (GMST0) is the GMST last time UT was 0 hours, one simply */ -/* computes: */ -/* */ -/* GMST = GMST0 + UT */ -/* */ -/* where GMST0 is the GMST "at 0h UT" but at the current moment! */ -/* Defined in this way, GMST0 will increase with about 4 min a */ -/* day. It also happens that GMST0 (in degrees, 1 hr = 15 degr) */ -/* is equal to the Sun's mean longitude plus/minus 180 degrees! */ -/* (if we neglect aberration, which amounts to 20 seconds of arc */ -/* or 1.33 seconds of time) */ -/* */ -/*******************************************************************/ - -double GMST0(double d) -{ - double sidtim0; - /* Sidtime at 0h UT = L (Sun's mean longitude) + 180.0 degr */ - /* L = M + w, as defined in sunpos(). Since I'm too lazy to */ - /* add these numbers, I'll let the C compiler do it for me. */ - /* Any decent C compiler will add the constants at compile */ - /* time, imposing no runtime or code overhead. */ - sidtim0 = revolution( ( 180.0 + 356.0470 + 282.9404 ) + - ( 0.9856002585 + 4.70935E-5 ) * d ); - return sidtim0; -} - -/* - * Part of this code was provided by Paul Schlyter - * Here is the original copyright information - * Written as DAYLEN.C, 1989-08-16 - * Modified to SUNRISET.C, 1992-12-01 - * (c) Paul Schlyter, 1989, 1992 - * Released to the public domain by Paul Schlyter, December 1992 - * 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 AUTHOR 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. - */ \ No newline at end of file diff --git a/src/praisethesun.h b/src/praisethesun.h deleted file mode 100644 index 3a01783..0000000 --- a/src/praisethesun.h +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Stairs lighting - * Copyright 2017 (c) Mark van Renswoude - * - * https://git.x2software.net/pub/Stairs - * - * This code was ported over from Domoticz' SunRiseSet.cpp - * https://github.com/domoticz/domoticz/ -*/ -#ifndef __praisethesun -#define __praisethesun - -double daylen( int year, int month, int day, double lon, double lat, double altit, int upper_limb ); - -int sunriset( int year, int month, int day, double lon, double lat, - double altit, int upper_limb, double *trise, double *tset ); - - -/* This macro computes the length of the day, from sunrise to sunset. */ -/* Sunrise/set is considered to occur when the Sun's upper limb is */ -/* 35 arc minutes below the horizon (this accounts for the refraction */ -/* of the Earth's atmosphere). */ -#define day_length(year,month,day,lon,lat) \ - daylen(year, month, day, lon, lat, -35.0/60.0, 1) - -/* This macro computes the length of the day, including civil twilight. */ -/* Civil twilight starts/ends when the Sun's center is 6 degrees below */ -/* the horizon. */ -#define day_civil_twilight_length(year,month,day,lon,lat) \ - daylen(year, month, day, lon, lat, -6.0, 0) - -/* This macro computes the length of the day, incl. nautical twilight. */ -/* Nautical twilight starts/ends when the Sun's center is 12 degrees */ -/* below the horizon. */ -#define day_nautical_twilight_length(year,month,day,lon,lat) \ - daylen(year, month, day, lon, lat, -12.0, 0) - -/* This macro computes the length of the day, incl. astronomical twilight. */ -/* Astronomical twilight starts/ends when the Sun's center is 18 degrees */ -/* below the horizon. */ -#define day_astronomical_twilight_length(year,month,day,lon,lat) \ - daylen(year, month, day, lon, lat, -18.0, 0) - -/* This macro computes times for sunrise/sunset. */ -/* Sunrise/set is considered to occur when the Sun's upper limb is */ -/* 35 arc minutes below the horizon (this accounts for the refraction */ -/* of the Earth's atmosphere). */ -#define sun_rise_set(year,month,day,lon,lat,rise,set) \ - sunriset( year, month, day, lon, lat, -35.0/60.0, 1, rise, set ) - -/* This macro computes the start and end times of civil twilight. */ -/* Civil twilight starts/ends when the Sun's center is 6 degrees below */ -/* the horizon. */ -#define civil_twilight(year,month,day,lon,lat,start,end) \ - sunriset( year, month, day, lon, lat, -6.0, 0, start, end ) - -/* This macro computes the start and end times of nautical twilight. */ -/* Nautical twilight starts/ends when the Sun's center is 12 degrees */ -/* below the horizon. */ -#define nautical_twilight(year,month,day,lon,lat,start,end) \ - sunriset( year, month, day, lon, lat, -12.0, 0, start, end ) - -/* This macro computes the start and end times of astronomical twilight. */ -/* Astronomical twilight starts/ends when the Sun's center is 18 degrees */ -/* below the horizon. */ -#define astronomical_twilight(year,month,day,lon,lat,start,end) \ - sunriset( year, month, day, lon, lat, -18.0, 0, start, end ) - -#endif \ No newline at end of file diff --git a/src/settings/triggers/time.cpp b/src/settings/triggers/time.cpp index 7d90d1c..fce1b15 100644 --- a/src/settings/triggers/time.cpp +++ b/src/settings/triggers/time.cpp @@ -9,7 +9,6 @@ #include #include "../../debug.h" #include "../../global.h" -#include "../../praisethesun.h" timeDayOfWeek_t toTimeDayOfWeek(DayOfWeek day) @@ -131,16 +130,15 @@ TimeTrigger* TimeTriggerSettings::getActiveTrigger(tmElements_t &time) TimeTrigger* activeTrigger = nullptr; int16_t activeTriggerTime = 0; - double sunrise = 0; - double sunset = 0; - sun_rise_set(tmYearToCalendar(time.Year), time.Month, time.Day, - systemSettings->latitude(), systemSettings->longitude(), - &sunrise, &sunset); + Dusk2Dawn location(systemSettings->latitude(), systemSettings->longitude(), timezoneOffset / 3600.0f); - uint16_t sunriseMinutes = floor(sunrise * 60); - uint16_t sunsetMinutes = floor(sunset * 60); - uint16_t dayTime = (time.Hour * 60) + time.Minute; + // Praise the sun \o/ + // DST is always hardcoded as false, since it is already included in timezoneOffset + int16_t sunriseMinutes = location.sunrise(time.Year, time.Month, time.Day, false); + int16_t sunsetMinutes = location.sunset(time.Year, time.Month, time.Day, false); + + int16_t dayTime = (time.Hour * 60) + time.Minute; _d("TimeTrigger :: sunrise: "); _dln(sunriseMinutes); _d("TimeTrigger :: sunset: "); _dln(sunsetMinutes); @@ -158,16 +156,15 @@ TimeTrigger* TimeTriggerSettings::getActiveTrigger(tmElements_t &time) switch (trigger->triggerType) { - RelativeToSunrise: + case RelativeToSunrise: triggerTime += sunriseMinutes; break; - RelativeToSunset: + case RelativeToSunset: triggerTime += sunsetMinutes; break; } - // Check if the current time is after the time set in the trigger, and // if this trigger is later than any previously found trigger, so that // we'll always get the most recent match @@ -182,6 +179,7 @@ TimeTrigger* TimeTriggerSettings::getActiveTrigger(tmElements_t &time) if (activeTrigger != nullptr) return activeTrigger; + // If there are no active triggers on this day, go back // one weekday and try again until we've come around completely if (dayOfWeek == Monday) diff --git a/src/settings/triggers/time.h b/src/settings/triggers/time.h index 2db059d..fb98184 100644 --- a/src/settings/triggers/time.h +++ b/src/settings/triggers/time.h @@ -9,6 +9,7 @@ #include #include +#include #include "../../config.h" #include "../abstractjson.h" diff --git a/web/index.html b/web/index.html index 63a66ca..147f2d1 100644 --- a/web/index.html +++ b/web/index.html @@ -326,11 +326,6 @@

JM%faRH-sRL1D>E@N-JMW+t z3orJoj%!rE$<52%dbW}NSte=sxzUr5T0}PC`JJQRY58+`+~i3CS-?VfBr|y$;@?)a zR}{JD{}_h3*6oYck~aVEJTtLhJn8Mp`Do+CRwj3arwHfv2D#mtIqb4OpQ+dlgp+VT zjr;S5X?qU=xo;Yb`!pvG)jEX!#v^}>+25YDAbqHtZg7u1YPMyJQwTa+TIT)UKuS3Z(Zy!=ySP{tDvTj!^-oFUMIzCO1n?O#Jv+?G zqmYSO|CHPTSOiJ|MqjX01aPav=n? z`KSeBCRiz78obU>(%N?0o~o{sR9JUjD!UBDRV{l%PBd>NnXB8wC-bNy4qJi@z2eW#Ssb{Vf0HVPvv z=oRV=bDPu|oyvd5R+By3-wRPt!VZW9bd|dsPVTV#US4JDeq(!Xhi7{Zcs%}KG$gK( zXonVIRlX4No~c3O_EuGOA@pOL;0tF&RT+N4C9rcJXw=fCpWacq80eIGDa*-W0XlOg zjt{2LQF3yk#%JUohXu7cDl+F}IhiDVgwn-uHPFy8lqMU(E0H3&!N2nrVM!8!o#Ke>Zk8 zANvOcVhPN>1@_3qh_yD^_0q?Oy5mvrUXPqVOyXa4dxu16|B z8SR64Y*}lOJqqhcLx!B3h49?i@8PF$!2zpZlZ$)nTQ;cLyEICUL>PYYAEp}UVvuV( z2#Y3TYXco7ZSZLnD0aj6rN)RP2`S|zpVEvdJ-3vC`t4gwHUljrN@dQXi$6pHJQl2L-W%kh?4=< zjd6Kd!n!XZOGhKxxl2_ZKZiS>mc#6xGkpfA+4s&m8|nrcq)58-Au=T46~kvI9Z)o0 z0WtpBO@N)uA(=%8UYhnr13d(#=-Itrq>8gDYJpO-FkcGO{on_I0CerdHXmhb;9XD% zqOLIKccLY|Y68jEe`MZ~y%^&R*33@+sRqvdnNVOzTTNy#BUgBpbL(wUFn=x7QrF|} zFGx}So*uHI?!xdtiqQ{!OJGlE^*wg}UcnPF^<~IwZvcn?bGG)O=cUu@goGoaa9oqk z=^l{nUbxixZQw6%!^y1jTdtPT9$_0X3J+j7jl#fyhm;8=eI%wHi$m19wL3d+q)zZbt4srjuY&-dNdH?4 zBYI<3D)s)C1vBmCZkXXmm&EGL(I4|FIXzB7=yM{KFC55P1)9ytethUmz?pt1V-KL& z*j|(s@3$oD9BR-kyql|{P)$> zwH4T_gYGR~`GiCiWW@t?F?@fVeIFc-#ZFMB0z1 z5P#SYHm#w}DVCu24rjf{q08+xRhSnuus@D>M$x`z6}~2p2D8Sy8>PAD>sSAstXlH~ zivBCtdj|s2n#xH_#WEGoYCj(^TpP24Yr7*=nrXYUS7GGMkv+M&2_AL-(j%Mq=o z({7pKA^ahKe`!Jf82!XGWW~TvRfTaRS{lTKs3QIDK{2S)`SRLCZ=h0jDTeiw1DM|( zCR#NWUbsstvGhomfzdgCE8BC+nT!4cKx<*!42IUib46B89oNIzMHbd~mwKXhgYwJy z3fZF1bs&3jJ`WJvVRznUz&$w|qKewHQhV<-AO$n=){=eocKHdOjXNg-t}=lvmUj%x zV?tLp!qhkuwv{~)r+ukvVAmC9p7yK3xuwU%(a~65|BB~wVd~D`HJ>WVzj_YS5Lie= zz2ZgF-6z=p^#bgyG*s$-ysQ)rK_e(Wy;7f!G?>U>_PQ$;tG?Te1e=#Mv!zvDOg3>J zSl)5Pga{l=yAO|cain2yOxE`k$UF7W2nH!BJ2A*A=cbIWXBA62qw&6lSPtHLGP^LwFGlXa9GHNfYAlv*}&9h4Nt7616Jd+r^3z!QF3IN9TO7%+kqVsN6@ z&xt?BiZv_+jfJ&>LRMGP1=o>FHi;*gT%^_II`-_Z8x`oAbFxtm+7o6CJ!I7#94RyPiEgK5KM+?XQyxKjh1 z`1PH_g7w3%tZnVmYK7-NBnAG}A&5{E21wV-!8wckazOLZd;e@$yCez`rDnw#xFl9F z@GWLetL6`^!*5&u0+U_x(ANPt#f(uy$(F5QkbsVtxQO$q^Bx1m`ogC*sc)_-U!pv&pjSZ#_tX9cZO$VLxVSy%L7* zYtkSGIN7nssmN2|GEQUgK!U1pDCE5UK+p=w zxlQ4lNNu8r91zlgBYCaK=-C6&k4`##^<$pM>3n>sm;Di^p7T#mL(H+~Lnkm`noMMQ zV`LuqoeYc~p&@^ZEVw<|xZ3(HNN)oeu3GQ0aUZQ--L+rFO&HD|)jW9!3wjbvku;I^ z=JL2u%eX7JqzAecW4~-H?Pr}BRjuRiX*D|&3t|7>f;RYA!5ZPg1Yq9Sl&Il<`WCOq zP5Ewg{zYb5lmE}2>cYWZ8OrwT_Bx}+iHOAfshgF-kA)=m92=A;RU-b2#fmdS|4Sus zBp`>ZoTabDk;Ex4gaw2Oj1-->SG2XW;G$fH{csj50AgmW?ZkeIwDm5_^3lppJj89K zO%U1{)lXZ)OJI-{v`97d5ml}2)N$%m69l&ND~am{BxGm=JPubQZ@~$amKGQ{z94k2ZnX zF1WC|XA9=BJBb?Wo=W!t3|q&}OU_xZVTGT1Twh98UI(du0%k8;%6?D9zC(jKezX_s z6W~rD#%cAf{XPZcrlY$kjkS705I_KM+KcA6PsD#P|C-x#^+yLD1LFW50yOr)zK6-~Qi00$N5qq! zg3uN-;Qfs^92yWBeCn$3{ALCWgy~JD$qwz}PCV^?C+MxU_Ee-~b1)>PR4(j77-Ua% zIMO&Zu^RvAnrNDT#=;M>1Hq(hCU7CoL`Gc$Kg6#!F@P39Ud;smUp)@2TJKy>Mx&1T z^Sp4C12mw`U2jO$lB%dhV7zI*2&T1wmSZ0si?vM7CNF_w4iP$z%tgH4`B#1ov2IN+KmWjz`)DZ)g z{?KLC{EzwwrH8$2y_;WT@2@tBm<-q{q55tOB-2@}6K^KS?{`i(0y|KSb9HEtyg? zd2z9$+N4E6oOsZ!wpV}WiEuQ3K<@XuNM3Zt2iRi$cLBS<4qMBy&-n;N<6$V7%T4zs zYguI+Q7o`8&GEit8QYbmLoP*a|SOl_>;tw*UEe! z`Yb68t0>dTDbn^C^M@4ygbd0`{Qp0k}C z;`|6Ay0Q?CtC-$Fy!;o8W7Bys0OL6G?Y2bo=De?DCmY);^D5924Q>F1U$bOvWZn}) zYCCmI<+?!5%DHj7#cnw79Y2sHdgkb+6i@U3UDUme^3wKGeUc%Me>2hmOariLZr@*{ zIiy9YxTtxZ4dB$T%I`6xWVy9^M zWp~p_-ZSGO2k?E`A1sQlYxU5ylTQMB7so<5wxJr5V7DsI-G^_ z^uHt0BKbLLjJtIV13`zP)_ze^zoG4Ena!Q|`NnJ9db`_%6H&#D#VYm{r3BaopKHgw z9QGNXHRi>QD8;455A5TwOe@5UYM74>QujQZG>lS^Wl*#&nm<5Z8b|igt>zY~L=9?T zKpRehl_|=@JCiK4uYUC5@IFQv%k~tXAI<8Qqfx;Jfo!jyx4Uk;7mp$7GEey#Pf5ByP;zC5>>jE zmE*tH+uhnlZZimKNm;x{uG*4s5TCee*isLL_I^@K{Jkm%y$7O3dL40n?b*Dfgat@a zmH`RC_wYRhxmC;r){u}3VuxWh$7%k3!_`eSwr><1x7g*%1fE4c0a6j&c?9*yI@MkP z#ZPv>klZXU&yz<}&h>KljBnGfXWFdWGt5G*+>Sl|6=Fbt*I^h2@bo8qg6P``I!a#d zzZ5r%0AZ{as4rBRK_E>u7Jv&bX*d)4jM-Cg88}br$B0UY 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 literal 0 HcmV?d00001 From de9bf9ceca1c6ed9d5645a552d8ae96cc80b6fb5 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Mon, 22 Jan 2018 23:01:49 +0100 Subject: [PATCH 27/43] Removed milligram dependency Started restyling using custom CSS, nowhere near finished yet --- package.json | 5 +- src/assets/css.h | 227 +-- src/assets/html.h | 313 ++- src/assets/js.h | 4506 +++++++++++++++++++++--------------------- src/assets/version.h | 6 +- web/app.js | 47 + web/dist/bundle.css | 2 +- web/dist/bundle.js | 2 +- web/index.html | 383 ++-- web/site.scss | 429 ++-- 10 files changed, 3012 insertions(+), 2908 deletions(-) diff --git a/package.json b/package.json index 8d529f5..6015d3f 100644 --- a/package.json +++ b/package.json @@ -29,14 +29,11 @@ "gulp-sass": "^3.1.0", "gulp-uglify": "^3.0.0", "lodash": "^4.17.4", - "milligram": "^1.3.0", "path": "^0.12.7", "through2": "^2.0.3", "vinyl": "^2.1.0", "vue": "^2.5.13", + "vue-i18n": "^7.3.3", "yargs": "^10.0.3" - }, - "dependencies": { - "vue-i18n": "^7.3.3" } } diff --git a/src/assets/css.h b/src/assets/css.h index 62da77c..a437d31 100644 --- a/src/assets/css.h +++ b/src/assets/css.h @@ -4,152 +4,85 @@ #include const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc5,0x1a,0x4d,0x93,0xa3,0xba,0xf1,0xaf,0x90,0x99, - 0xda,0x9a,0xb7,0x79,0xc0,0xf2,0x61,0xe3,0x31,0xde,0xd9,0x4a,0x5e,0x2e,0x39,0x24,0x39,0xe4,0x90,0xcb, - 0xd6,0x1e,0x64,0x10,0x86,0x1a,0x0c,0x04,0xc4,0x78,0x66,0x29,0xfe,0x7b,0x5a,0x1f,0x18,0x09,0x04,0x9e, - 0xc9,0x4b,0x55,0xd6,0xb5,0x63,0xd3,0xea,0x6e,0xb5,0xba,0x5b,0xad,0xee,0x16,0x7f,0x34,0x43,0x94,0x10, - 0x5c,0x9b,0xe1,0x11,0x27,0x65,0x8d,0xbb,0x63,0xf9,0x6a,0x35,0xd9,0xcf,0xac,0x38,0x85,0x59,0x91,0xe2, - 0x3a,0x23,0x7d,0x4a,0xce,0xb9,0x0c,0x3f,0x96,0x75,0x8c,0x6b,0x0b,0x20,0x87,0xa4,0x2c,0x08,0x05,0xe3, - 0x30,0xf0,0xec,0xed,0xa7,0xfe,0x58,0xc6,0x6f,0x5d,0x54,0xe6,0x65,0x1d,0xde,0x07,0x4e,0x10,0xed,0x02, - 0x8e,0x92,0xa0,0x73,0x96,0xbf,0x85,0xff,0x2c,0x8f,0x25,0x29,0xcd,0x87,0xbf,0xe2,0xfc,0x05,0x93,0x2c, - 0x42,0xc6,0x3f,0x70,0x8b,0x1f,0xcc,0xeb,0xb3,0xf9,0xe7,0x3a,0x43,0xb9,0xd9,0xa0,0xa2,0xb1,0x1a,0x98, - 0x3c,0x91,0x66,0x70,0xed,0x00,0x9f,0xf9,0xf3,0x05,0x67,0xa7,0x94,0x84,0xbe,0xe3,0x1c,0x72,0x4c,0x40, - 0x7c,0xab,0xa9,0x50,0x44,0x65,0xb3,0x1d,0x17,0x90,0xf2,0xac,0xc0,0x56,0xca,0x91,0x80,0xac,0x3f,0xe6, - 0x65,0xf4,0xfc,0xef,0xb6,0x24,0x74,0x7d,0x4c,0xf8,0x1c,0x27,0x24,0xb4,0xfd,0x1a,0x9f,0x8d,0xa6,0xcc, - 0xb3,0xd8,0xb8,0xdf,0x38,0xf4,0x73,0x38,0xa3,0xfa,0x94,0x15,0x7c,0xfc,0xfa,0x54,0x33,0x4e,0xce,0xa1, - 0x42,0x71,0x4c,0x67,0x71,0x29,0x9d,0x6b,0x6f,0xe1,0x4b,0xe2,0x6d,0x84,0x39,0x6a,0x88,0x15,0xa5,0x59, - 0x1e,0x77,0x82,0x12,0xd6,0x4b,0xca,0x73,0xe8,0xf4,0xf6,0xb1,0x85,0x5f,0x85,0x29,0xbe,0xb2,0xa2,0x6a, - 0xc9,0x77,0xf2,0x56,0xe1,0x27,0x0e,0xf9,0x21,0x83,0x6a,0xdc,0x60,0xa2,0x40,0x9a,0xf6,0x78,0xce,0xc8, - 0x8f,0xee,0x88,0xa2,0xe7,0x53,0x5d,0xb6,0x45,0x6c,0x09,0x35,0x3b,0x41,0x72,0xe0,0x8b,0x0a,0x6d,0x57, - 0x5a,0xcf,0x08,0xb7,0x6a,0x14,0x67,0x6d,0x13,0xda,0x1b,0x18,0x3e,0x08,0xb2,0x24,0x49,0x0e,0x51,0x5b, - 0x37,0xf0,0xbb,0x2a,0xb3,0x02,0x74,0x78,0x88,0xb3,0xa6,0xca,0xd1,0x1b,0xd8,0x9d,0xe9,0x8f,0x2d,0x4c, - 0xd1,0x3f,0x65,0xaf,0x18,0x60,0x07,0x06,0x10,0x6a,0xf6,0xed,0x47,0x3a,0x3a,0x35,0x07,0x23,0x91,0xcd, - 0x21,0xf0,0x06,0x4d,0x3a,0x06,0xb5,0xc1,0x81,0xe0,0x57,0x62,0xa1,0x3c,0x3b,0x15,0x61,0x84,0x99,0x30, - 0x0c,0x12,0xe3,0xa8,0xac,0x11,0xc9,0xca,0x22,0x2c,0xca,0x02,0x73,0x20,0xa9,0xc1,0x3b,0xc0,0x57,0xcf, - 0x61,0x5b,0x55,0xb8,0x8e,0x50,0x83,0x0f,0x97,0x34,0x23,0x98,0xcd,0x8a,0x01,0xf3,0x52,0xa3,0x6a,0x50, - 0x78,0x98,0x94,0x51,0xdb,0x98,0xc3,0x53,0x5a,0xbe,0x80,0xb3,0x2b,0x43,0xca,0xc8,0xdc,0x2e,0x02,0x4b, - 0x33,0x30,0xa3,0xe0,0x66,0x9b,0x13,0x08,0xf8,0x0c,0x5f,0x18,0x75,0x4e,0x30,0x0c,0x30,0x0a,0x8d,0xcd, - 0xc5,0xd6,0x12,0xe6,0x55,0x81,0x92,0x7d,0xcb,0x96,0x50,0xd5,0x8f,0xde,0xf7,0x1d,0x4c,0x8c,0x8e,0x39, - 0x8e,0x7f,0x98,0x33,0xc0,0x7c,0x81,0xfa,0x41,0xbe,0x18,0xfd,0x98,0x90,0x7b,0x1c,0xec,0x84,0x8b,0xc5, - 0x38,0x41,0x6d,0x4e,0x0e,0x25,0xf5,0x0b,0xf2,0x16,0xda,0xdb,0xb9,0x48,0xaa,0xa5,0x24,0xb8,0x6c,0xb3, - 0x19,0xfa,0x02,0xf6,0xda,0x6a,0x16,0x2d,0xba,0xc6,0x65,0xba,0xec,0x25,0x2b,0xaf,0xf1,0x98,0xa9,0x67, - 0xd1,0xf2,0x53,0x2e,0xab,0xfb,0x5e,0x82,0x0c,0x5a,0x15,0x5f,0x96,0xf0,0x00,0x53,0x0f,0x9d,0x6b,0x60, - 0x05,0x83,0x2f,0x6f,0x05,0x41,0x88,0x3e,0xc1,0x98,0x4b,0xce,0xf6,0x6f,0x85,0x6a,0xd8,0xe7,0x87,0x9b, - 0x92,0xab,0x4e,0x31,0x1d,0x94,0x3d,0x43,0x4f,0xb8,0x46,0x77,0x73,0xf9,0x8b,0x8e,0x72,0x93,0x9f,0x56, - 0x59,0x4b,0x2e,0x73,0x93,0x9b,0x5e,0xb3,0x8b,0xce,0xa3,0xe5,0xb7,0x6e,0x87,0xb5,0x48,0xc2,0x9f,0x16, - 0xec,0xb3,0xb4,0x7d,0x97,0xd1,0x56,0x6c,0xb6,0xb0,0xb9,0x6f,0xf1,0xba,0x69,0x9f,0x77,0x6c,0xfd,0x0f, - 0xcc,0xa1,0x35,0xda,0xed,0xc0,0xf0,0x81,0x19,0xf4,0x76,0x7c,0x47,0xd8,0xb8,0x31,0x47,0xa7,0x98,0x59, - 0xa4,0x77,0x2b,0x7b,0x30,0xca,0x31,0x9a,0x9a,0x8a,0xc3,0x96,0x15,0x38,0x1b,0x57,0x57,0x3f,0x1b,0x9e, - 0x48,0xce,0xc6,0x3f,0xe0,0xab,0xef,0x0b,0x26,0x8c,0xab,0xde,0x41,0xf9,0x90,0xce,0x29,0x65,0xa2,0x65, - 0x9a,0x1b,0x9a,0xb8,0xe9,0x70,0x0b,0xbc,0x34,0x5a,0xbb,0xe5,0x58,0x0b,0x9c,0x74,0x0a,0xbe,0xe9,0x40, - 0x12,0xaf,0xdf,0x67,0x0c,0x7d,0xf0,0x60,0xec,0x6f,0x85,0x8e,0x29,0xd2,0xa2,0x8d,0x6e,0x84,0x0d,0x3d, - 0x9f,0x1b,0x16,0xf9,0x40,0xc8,0xb8,0xc9,0x5f,0x63,0xa6,0xf7,0x87,0x8b,0x9b,0xdc,0x75,0x96,0xfb,0x40, - 0xa8,0xd0,0xf2,0xef,0xa4,0xad,0x14,0x95,0xb1,0x7c,0x88,0x43,0x66,0xb9,0x49,0xb6,0x49,0xa0,0xad,0x2d, - 0xc6,0x62,0xe1,0x31,0xf8,0x24,0x8a,0x27,0x48,0xf1,0x6d,0x4f,0x4e,0xf9,0xd9,0x93,0xc1,0x8a,0x27,0x5d, - 0xde,0x5e,0xd5,0x6b,0xd3,0xcd,0xeb,0x36,0x9a,0x07,0x51,0x99,0x93,0xbc,0xbc,0x58,0x6f,0x61,0x9a,0xc5, - 0x31,0x2e,0x28,0x97,0x6f,0x5c,0x72,0x45,0x4c,0xe7,0x5a,0xe4,0xf0,0xea,0x46,0x53,0xd0,0x29,0x32,0x01, - 0x9b,0x3e,0x1d,0xe2,0x26,0x50,0x0b,0x6e,0xa4,0xac,0xd4,0x62,0x4b,0x08,0x29,0x56,0xcc,0xc4,0x73,0x7a, - 0x49,0xe9,0xf8,0x8c,0xb2,0x5c,0x49,0x95,0x8b,0xf6,0x7c,0xc4,0xb5,0x02,0xaa,0x50,0xd3,0x5c,0x60,0x02, - 0x35,0xa5,0x06,0xf3,0x44,0xa9,0x02,0x22,0x38,0x9f,0x3c,0xbf,0xaa,0xc5,0x62,0x5b,0x03,0x42,0x83,0x73, - 0x1c,0x11,0x93,0x0e,0xc2,0x8e,0x44,0x1d,0x82,0x62,0x09,0xc1,0x06,0x65,0x9a,0x86,0x5a,0xea,0x1d,0xdb, - 0x5a,0x5d,0xa3,0x28,0x90,0x75,0x76,0x67,0xcd,0x81,0x14,0xc5,0xe5,0x45,0xf0,0x9e,0x35,0x11,0x0e,0xfa, - 0xf2,0xcf,0x0e,0x98,0xe2,0x99,0xda,0xb3,0x98,0xa4,0xa1,0xeb,0x38,0x9f,0xe6,0x8a,0x9b,0x7b,0xb1,0x50, - 0xdf,0x7c,0xe0,0xaa,0x44,0x8d,0xe7,0x73,0x55,0xce,0x07,0xa8,0x42,0x75,0xd0,0x57,0x5d,0x6d,0x46,0x95, - 0x2b,0xa0,0x5c,0xc5,0xe2,0x61,0x50,0x34,0x7f,0xec,0x66,0xa9,0xb9,0x54,0x8d,0x71,0x3a,0xd9,0xcb,0x81, - 0xe9,0x2f,0x0f,0x31,0x22,0x28,0xcc,0xce,0xe8,0x84,0xbf,0x34,0x2f,0xa7,0x5f,0x5f,0xcf,0xf9,0xa1,0x25, - 0xc9,0xa3,0xf9,0x15,0x9e,0x0c,0x78,0x2a,0x9a,0xa7,0xbb,0x94,0x90,0x2a,0xfc,0xf2,0xe5,0x72,0xb9,0xd8, - 0x17,0xdf,0x2e,0xeb,0xd3,0x17,0xcf,0x71,0x1c,0x8a,0x7f,0x67,0x70,0x15,0x3f,0xdd,0xb9,0x9b,0x3b,0xe3, - 0x25,0xc3,0x97,0xdf,0xca,0xd7,0xa7,0x3b,0xc7,0x70,0x0c,0x6f,0x6f,0x50,0x18,0xd3,0xf0,0xd3,0x9d,0xb7, - 0xbf,0xfb,0xf6,0xb5,0x42,0x24,0x35,0x92,0x2c,0xcf,0x9f,0xee,0xee,0x63,0x97,0x7e,0xee,0x8c,0xf8,0xe9, - 0xee,0xef,0x7b,0xdb,0xdf,0xed,0xbc,0x9d,0xe1,0xdb,0x81,0xb7,0xcd,0xb7,0xb6,0xf3,0xe8,0x6e,0x37,0x46, - 0x60,0xef,0xfd,0xad,0xe7,0xff,0xcd,0xdd,0xdb,0xdb,0x8d,0xe3,0x07,0x7c,0xf8,0xee,0xcb,0xb7,0xaf,0x74, - 0xe6,0x6f,0x0f,0x9f,0x0d,0x5e,0xb5,0x1b,0xac,0x51,0x62,0x14,0xa5,0x55,0x63,0xf0,0x36,0x32,0xd8,0x59, - 0x34,0x50,0xe8,0xbe,0xe8,0x65,0xa5,0xc9,0x67,0x0b,0x5b,0xf8,0xff,0x57,0x11,0xfb,0xe3,0x26,0x8e,0xd0, - 0xef,0x52,0x44,0x7f,0xdd,0x6f,0xe7,0xac,0x18,0x7a,0x1e,0x01,0xef,0x14,0xe5,0xe8,0x88,0x73,0x33,0xc7, - 0x27,0x5c,0xc4,0x9d,0x1a,0x87,0x94,0x2e,0x97,0xae,0xcb,0xa2,0xb6,0x93,0x38,0xbf,0x24,0xc3,0x79,0x0c, - 0x67,0xc5,0xe0,0x6b,0x7c,0x07,0x8d,0x5d,0x2a,0x25,0x02,0x45,0x29,0x8e,0x9e,0x61,0x5f,0xaa,0xb5,0x3c, - 0x6c,0xe2,0xf2,0xc7,0x55,0x16,0xde,0xf8,0xe9,0x6d,0x26,0xa8,0xc5,0x9f,0x26,0x83,0x72,0x57,0x48,0x88, - 0xb7,0x71,0xd4,0xae,0x19,0x17,0xce,0x8e,0x00,0x05,0x01,0x45,0xdd,0x5d,0xcf,0x01,0xd4,0x92,0x12,0x50, - 0x5f,0x85,0xa4,0xae,0xeb,0xa9,0xad,0x20,0xfe,0x58,0x36,0x19,0xeb,0xf8,0xd4,0x38,0x47,0x24,0x7b,0xc1, - 0x72,0x64,0xb0,0xeb,0xf2,0x72,0x95,0x28,0xc9,0xf1,0xeb,0x81,0xfe,0xb1,0xe2,0xac,0x06,0x9f,0xa2,0x44, - 0xb0,0xdf,0xda,0x73,0x31,0xf2,0x9c,0x12,0xd3,0xff,0x16,0xf8,0xa7,0x40,0xe8,0x46,0x5d,0x69,0x46,0xbf, - 0xd9,0x9c,0x9d,0x0e,0x8b,0x9e,0x55,0x1d,0x9b,0x9c,0xfe,0x0a,0x79,0xcb,0x69,0x18,0x84,0xf3,0xa1,0x63, - 0xdd,0x2c,0x0b,0x8e,0x92,0x73,0xc3,0x24,0xb5,0x1a,0xf0,0x0b,0x32,0xe2,0x70,0x53,0xce,0xd1,0xc0,0x39, - 0x46,0x24,0xbe,0xad,0x14,0x24,0x0e,0x1a,0x51,0x1a,0x52,0x63,0x12,0xa5,0x0a,0x8e,0x80,0x49,0x93,0x21, - 0xd8,0x76,0xd4,0x9a,0x32,0xd6,0x00,0x64,0x68,0xc6,0xb0,0xd6,0x89,0x63,0x82,0x48,0xa1,0x6b,0xb8,0x83, - 0xed,0xd4,0xe6,0xe8,0xd5,0x92,0xa0,0xde,0xa9,0xa6,0x07,0x86,0xe2,0xcb,0x2a,0x93,0x04,0x7c,0xd5,0x72, - 0x9d,0x4e,0xe6,0xe2,0xae,0x63,0x7b,0x2a,0xb6,0x77,0x03,0x7b,0xab,0x62,0x6f,0x57,0xb1,0x7d,0xdf,0x5c, - 0x1b,0xdd,0x28,0xbc,0x7c,0xdf,0xf6,0xe1,0xdf,0x2a,0xc3,0xad,0x2a,0xec,0x76,0x5d,0xd8,0x20,0x58,0x9b, - 0x3e,0xd8,0x29,0xbc,0x82,0xc0,0x0e,0xe0,0xdf,0x2a,0xc3,0x9d,0xba,0xfa,0xdd,0xfa,0xea,0x1f,0x55,0x61, - 0x1f,0xd7,0x85,0xdd,0xab,0xd8,0xfb,0x05,0x6c,0x30,0x2e,0x73,0x18,0x1a,0x6b,0xc1,0xb2,0x8a,0x87,0xe8, - 0x29,0x3c,0x89,0xc2,0x53,0x28,0x96,0x6c,0x0d,0x46,0x1e,0x29,0xb6,0x0a,0xc5,0xc2,0x8a,0x17,0x0c,0x0d, - 0x16,0xbe,0x32,0x1a,0xcc,0x2b,0x71,0x5b,0xb5,0xf8,0x46,0x12,0x7b,0xa3,0x88,0xbd,0x59,0x10,0x7b,0x2b, - 0x51,0x6c,0x15,0x8a,0x25,0x3f,0x09,0x24,0x8a,0x40,0xa1,0x08,0x96,0x28,0xf4,0x2e,0x05,0xbe,0x34,0x32, - 0x12,0x8e,0x24,0x73,0x5b,0xf3,0xad,0x9d,0xa4,0xed,0x9d,0xa2,0xed,0x25,0xff,0x7a,0x94,0xc4,0x7e,0x54, - 0xc4,0x5e,0xf2,0xb1,0xbd,0x44,0xb1,0x57,0x28,0xa6,0x7e,0x36,0x7c,0x4b,0x01,0x16,0x42,0x58,0x32,0x8d, - 0xaf,0x33,0x74,0x25,0xd6,0x8e,0x14,0x43,0xa8,0x9d,0xe1,0x2b,0x61,0x97,0xe1,0x8b,0xa8,0xfb,0xa7,0x33, - 0x8e,0x33,0x64,0xfc,0x42,0x0f,0xf7,0xc1,0xde,0x70,0x68,0x7d,0xee,0xd8,0xc1,0x34,0x39,0x8b,0x00,0xa4, - 0x44,0x4c,0x4b,0xca,0x73,0x23,0x94,0x47,0xbf,0xd0,0x58,0x69,0xfc,0xca,0x8e,0xbd,0xcf,0x6a,0x10,0x56, - 0x8f,0xfb,0x21,0x87,0x1e,0x4f,0x4a,0xca,0xa9,0xef,0x91,0x54,0xa7,0x69,0x2f,0x4c,0x7a,0x91,0x8d,0x9a, - 0x48,0xad,0xeb,0x44,0x55,0x1e,0xe7,0x66,0x99,0x9b,0x6d,0xde,0xe5,0x59,0x03,0xe9,0x07,0x79,0xcb,0x45, - 0x6d,0x20,0xa6,0xa7,0x65,0xce,0x35,0x9d,0x10,0x51,0x1f,0x88,0x0c,0xa0,0x83,0xbf,0x25,0xfb,0xdb,0x52, - 0x1e,0x06,0xe3,0x44,0x21,0x25,0x83,0xb4,0x0c,0xd2,0x32,0x48,0x4b,0x21,0xdd,0x98,0xe0,0x70,0x0b,0xb3, - 0x8c,0x80,0x17,0x5c,0x34,0x56,0xf0,0x1f,0x2c,0x3f,0x2c,0x15,0x71,0x60,0x41,0x90,0x08,0xe6,0x46,0x56, - 0x34,0x59,0x8c,0x7b,0x55,0xd6,0x28,0xab,0xa1,0x7c,0x1d,0xc6,0x26,0x37,0x6c,0x71,0x6c,0xc6,0xc4,0xcc, - 0xb3,0x89,0x2e,0x5d,0x39,0x73,0xe2,0xb9,0xd0,0xac,0x54,0x9a,0x50,0x4c,0xef,0xf9,0x60,0xd9,0x66,0x92, - 0x9d,0xda,0x1a,0x9b,0xf4,0x1a,0x8a,0xea,0xb0,0x32,0xa1,0x52,0x34,0x09,0xad,0xa1,0xa9,0x3e,0x55,0x06, - 0x1e,0x67,0xc0,0x46,0x87,0x5c,0x6d,0xb8,0x20,0x53,0x12,0x14,0x12,0x9b,0x24,0xed,0xae,0xd7,0xab,0x3c, - 0xd5,0x93,0x4b,0x30,0xec,0xd2,0xcf,0x58,0xb5,0xf2,0x52,0x5a,0xd4,0xad,0xd2,0x1d,0x1a,0x35,0x15,0x70, - 0x0b,0x93,0xac,0x1e,0x2e,0x24,0x81,0xb3,0xfc,0xd8,0x4d,0xac,0x0a,0xc8,0xe3,0xe5,0x25,0xc5,0x95,0xae, - 0x32,0xd5,0x24,0xde,0xe9,0x8f,0x26,0xe4,0x17,0x25,0x24,0x4f,0x93,0x24,0xb5,0xaf,0x3a,0xd9,0x71,0xfa, - 0xd4,0x35,0x53,0xcf,0x4c,0x7d,0x33,0xdd,0x98,0xe9,0xd6,0x4c,0x83,0xee,0xc6,0xe5,0xad,0xc5,0xaf,0x0b, - 0x27,0xda,0x93,0x40,0x03,0x5f,0xc9,0x9d,0x36,0x3c,0x5f,0x56,0x6f,0x7c,0xbd,0x3e,0xf5,0x24,0x1c,0x5f, - 0x8b,0xb3,0xed,0x53,0x5f,0x42,0xf2,0xc4,0x05,0xa6,0x82,0xe4,0xf7,0xe9,0x46,0xc1,0xf1,0x34,0x97,0x9c, - 0x16,0x14,0x07,0x1a,0x52,0xe0,0xbf,0xed,0xe4,0xc4,0x5e,0x77,0x41,0x0a,0xb4,0xdb,0x39,0x2d,0x90,0x06, - 0xdd,0xac,0x26,0x98,0x90,0x3a,0x13,0xa2,0x4d,0x9f,0x9d,0x4f,0x9d,0x9a,0x94,0x41,0x1a,0x4e,0xfb,0x3b, - 0x49,0xf6,0xca,0xaf,0xf9,0x3b,0xde,0xd8,0x03,0xd5,0xa6,0x07,0x9a,0xa0,0x43,0x54,0x0b,0x1f,0x8c,0x87, - 0x6b,0x57,0x84,0xf9,0x68,0x6f,0x27,0x79,0x89,0x08,0x73,0x8d,0x8e,0xfd,0xe4,0x0e,0x25,0xc0,0xcc,0x0d, - 0x04,0x9c,0xfd,0xee,0xbf,0xbf,0x58,0x11,0x3c,0x3e,0x8f,0x95,0x04,0x0b,0x3e,0xec,0x65,0x00,0xcd,0xc5, - 0x15,0x18,0x5e,0xba,0xa4,0x94,0xdf,0x0f,0xf8,0x17,0xae,0x63,0x54,0xac,0xbf,0x05,0xe0,0x54,0x63,0x59, - 0x29,0x5c,0x84,0xc5,0x0d,0x11,0x9a,0x9b,0xa8,0xc6,0xb8,0x30,0x50,0x11,0xcb,0x51,0x7a,0x17,0x3c,0x56, - 0xaf,0x9f,0x3b,0x26,0xd1,0x40,0x4c,0x9d,0x89,0x51,0xf2,0x32,0x69,0xdc,0xfe,0xa3,0x70,0xfd,0xfd,0x58, - 0xc5,0xcc,0x17,0xe2,0x39,0xf4,0x23,0xfb,0xa6,0x52,0xcf,0xb8,0x93,0xce,0x08,0x3f,0xf9,0xab,0x57,0xe3, - 0x3e,0x89,0x92,0x20,0xba,0xde,0xda,0xf3,0xbd,0xed,0xd2,0x01,0x50,0xcd,0xbb,0xd6,0x21,0x89,0x25,0xc1, - 0x95,0xc3,0x46,0xce,0xd7,0xf9,0xc6,0xa5,0x90,0xbe,0xb7,0x53,0x8c,0x60,0xd6,0x6e,0x56,0x66,0x0d,0x23, - 0x06,0xf5,0xa2,0xd1,0xea,0x2a,0x0f,0x77,0x49,0xd3,0x63,0x5a,0x10,0xec,0xa8,0x84,0x03,0x33,0xfb,0x92, - 0x25,0x10,0xb0,0x11,0x81,0x62,0x5f,0xf2,0x3d,0x49,0x67,0xdc,0x04,0xef,0x59,0xb5,0x8e,0xe7,0x75,0x19, - 0xe8,0x08,0x7a,0x6c,0x09,0x3e,0x0c,0xef,0x6a,0xf0,0x58,0xd1,0x6b,0x88,0x0c,0x3b,0x2b,0xe2,0x2c,0x42, - 0xa4,0xac,0xf5,0xd5,0xad,0xd8,0x3f,0xd4,0x7e,0xc3,0xee,0xe2,0xb6,0x94,0x3b,0x5f,0xdb,0xeb,0x39,0x26, - 0x74,0x23,0xea,0xde,0xd5,0xf9,0xbe,0xd3,0xd6,0x86,0xc5,0xc1,0x4f,0x60,0xc4,0x02,0xce,0x1d,0x7a,0x4d, - 0x3e,0x77,0x2e,0x7f,0x1f,0x7c,0x84,0x17,0xac,0x43,0x66,0x37,0xf5,0xac,0x53,0x8d,0xdf,0xfe,0x0b,0xd1, - 0xc0,0x8d,0x75,0xb2,0x25,0x7b,0xff,0x23,0xcc,0x70,0x5d,0x97,0xb5,0x8e,0x4f,0xe4,0x4c,0x82,0xb9,0x1b, - 0x54,0x83,0xc3,0xd1,0x38,0xef,0x89,0xad,0xd8,0x64,0x39,0x24,0x2f,0xd3,0x20,0x30,0xe2,0xf9,0x02,0x8f, - 0xae,0x72,0xde,0xd7,0xbc,0xf7,0x1e,0xe9,0x47,0x26,0xdf,0x54,0xd7,0x9b,0x0b,0x11,0x42,0xa6,0xaa,0x82, - 0xf9,0x1a,0x70,0x2b,0x99,0xb1,0xd4,0xdc,0x06,0xf2,0xf9,0x1b,0x2b,0x93,0x38,0xd0,0xdb,0x10,0x4c,0x57, - 0x9d,0x9e,0x21,0x18,0x22,0x6d,0xd1,0xa8,0x47,0x34,0x5c,0xc7,0x70,0xf4,0x87,0xec,0x5c,0x95,0x35,0x41, - 0xd3,0x7b,0x17,0x2e,0xb2,0xcc,0xed,0x23,0x97,0xf0,0xef,0xdb,0xcf,0x8a,0xac,0xd2,0x01,0x23,0x7a,0x4c, - 0xb3,0x37,0x3e,0x8a,0x92,0xaa,0x27,0x2f,0x2f,0x38,0x3e,0xac,0x5b,0x27,0xa0,0x9f,0x49,0xd3,0x49,0xd9, - 0x58,0x5c,0x9b,0x69,0x56,0x90,0xc5,0xae,0x19,0xb5,0x88,0x34,0x8b,0x36,0x81,0xb3,0x21,0xa6,0xb1,0x9e, - 0xcf,0xc4,0x0e,0x73,0x53,0xf6,0x76,0xd3,0x1e,0xcb,0x8a,0xc6,0x95,0x46,0x2d,0xe9,0x19,0x1f,0xae,0x84, - 0xa6,0xd3,0xd1,0x81,0x17,0x81,0xe7,0x74,0x33,0x5f,0x68,0x08,0xae,0x14,0x56,0xbe,0x94,0xd6,0x8c,0xdd, - 0xd1,0x79,0xf7,0x8b,0x93,0x1a,0x82,0xf3,0xb4,0xa9,0x26,0x48,0x37,0xc3,0x14,0x86,0xfd,0x82,0xf2,0x16, - 0xdf,0x08,0x8b,0x3c,0xcd,0x92,0x7d,0x87,0x73,0xef,0x20,0x37,0x3b,0x3e,0x67,0xb0,0xa8,0xc9,0x5d,0x81, - 0xd4,0xe5,0x11,0x01,0x91,0xa7,0x9c,0x93,0xbb,0x00,0x8f,0x03,0xa5,0xcb,0x1b,0xe1,0xc2,0xd2,0x8b,0x48, - 0x7c,0xa6,0x30,0x1c,0xa6,0xe2,0xcf,0x16,0x49,0xdb,0xf3,0x71,0x71,0x7e,0xbd,0x3c,0x9e,0x14,0xa0,0x3d, - 0x7d,0x80,0x56,0x2e,0x92,0xf8,0xa9,0xab,0xbe,0xf4,0x26,0x09,0x74,0x2e,0x7f,0x02,0x69,0x71,0xc2,0x42, - 0x98,0xff,0xe5,0x24,0x17,0x54,0x17,0xd4,0xf5,0x64,0x54,0xdf,0xf1,0x12,0x08,0x4b,0xda,0x2c,0x60,0xbc, - 0x20,0xd9,0x6a,0x13,0xe2,0xde,0x86,0xfd,0x05,0x81,0x37,0x62,0xb5,0xde,0x5f,0xae,0x5e,0x71,0xb5,0x3b, - 0x64,0x7c,0xb0,0xf1,0xae,0x39,0xc9,0x4f,0xd8,0x58,0x31,0x94,0xd8,0x50,0xe7,0xbf,0xef,0xa8,0xd5,0xb3, - 0x17,0x0d,0x0b,0xd7,0x83,0x64,0xe3,0xda,0xe3,0x52,0x65,0xd1,0x1d,0x17,0x49,0xb4,0xb0,0xca,0x49,0x76, - 0xe4,0x3a,0xc3,0x80,0x9c,0x2a,0xaa,0x2f,0x29,0xde,0x50,0x8c,0x66,0x03,0x7d,0x78,0xbd,0x1d,0xaf,0xd6, - 0xe7,0x6b,0x33,0xec,0x33,0x6e,0x1a,0x74,0xc2,0xdd,0xf4,0x8e,0x50,0x41,0xb3,0xd9,0x81,0xa7,0x57,0x44, - 0x70,0xf4,0x17,0x74,0x31,0x2e,0x99,0x72,0xa3,0xe7,0xa7,0x7c,0xf8,0x68,0x62,0x0d,0x7f,0x55,0x62,0x3c, - 0x5f,0x7a,0xbb,0x42,0x05,0xce,0xe7,0x87,0xff,0xe4,0xd5,0x56,0x45,0x5b,0x63,0x63,0x9b,0x11,0x1b,0xfc, - 0xcb,0x12,0x49,0xa2,0x26,0x2d,0xe1,0x4e,0x2b,0xc7,0x0e,0x0d,0xa1,0xa1,0xbb,0x78,0x50,0xc2,0x9f,0x6c, - 0x3e,0x16,0x92,0xe6,0xe6,0xa4,0x20,0x3d,0x77,0x76,0x54,0xc8,0x69,0xc3,0x3b,0xd3,0x7f,0x2d,0x33,0x1b, - 0x45,0x3c,0xd0,0xcb,0x15,0x8d,0x7e,0x5e,0x64,0xae,0x88,0x23,0x55,0x0d,0x2a,0xd6,0x42,0x19,0xe4,0x6d, - 0xe0,0xe3,0x5d,0x2d,0xe0,0x8d,0x77,0x63,0x4a,0x94,0x10,0x45,0x86,0xc4,0x7d,0xfd,0x02,0x8d,0x55,0x5e, - 0xf6,0xda,0xdd,0x0d,0x57,0x09,0xab,0x06,0xec,0xc1,0x38,0x9d,0xee,0x05,0xda,0x0b,0xc6,0xcf,0x31,0x7a, - 0x13,0xeb,0x13,0x7b,0x1f,0xa4,0xfc,0x0f,0x98,0xb1,0x01,0x7f,0x34,0x2e,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xad,0x58,0xeb,0x6e,0xa3,0x38,0x14,0x7e,0x15,0xa4, + 0x6a,0xa4,0xa9,0x14,0x10,0x90,0x26,0x4d,0x41,0xb3,0xda,0xd5,0xbe,0xc3,0xfe,0x19,0xf5,0x87,0x01,0x13, + 0xac,0x02,0x46,0xc6,0x34,0xe9,0x20,0xde,0x7d,0x8f,0x6d,0x4c,0x6c,0x70,0x2f,0xb3,0x5a,0xa1,0x99,0x06, + 0x5f,0xce,0xcd,0xe7,0x7c,0xe7,0x33,0x15,0x6f,0xea,0x31,0xa3,0x57,0xbf,0x27,0xbf,0x48,0x7b,0x4e,0x32, + 0xca,0x0a,0xcc,0x7c,0x18,0x49,0x4b,0xda,0x72,0x31,0x8c,0x93,0x63,0x1c,0x1c,0xbe,0x4d,0x19,0x2d,0xde, + 0xc6,0x0c,0xe5,0x2f,0x67,0x46,0x87,0xb6,0xf0,0x73,0x5a,0x53,0x96,0xdc,0x85,0x61,0x98,0xce,0x3f,0xcb, + 0xb2,0x54,0xbb,0x4a,0xd4,0x90,0xfa,0x2d,0xf9,0x07,0xb3,0x02,0xb5,0x68,0xf7,0x17,0x23,0xa8,0xde,0xf5, + 0xa8,0xed,0xfd,0x1e,0x33,0x52,0x1a,0xa2,0xa3,0x60,0x8f,0x1b,0xf5,0x7e,0xc1,0xe4,0x5c,0xf1,0x64,0x0f, + 0xf2,0x6a,0xcc,0x39,0x58,0xd1,0x77,0x28,0x17,0x46,0x05,0x61,0x04,0x8b,0x6a,0xd2,0x62,0xbf,0x52,0x8b, + 0x60,0x5b,0xda,0xa1,0xa2,0x80,0x59,0xb0,0x95,0x73,0xda,0x24,0x7b,0x86,0x9b,0xe9,0xcf,0x06,0x17,0x04, + 0x79,0x7d,0xce,0x30,0x6e,0x3d,0xd4,0x16,0xde,0xf7,0x86,0xb4,0xfe,0x85,0x14,0xbc,0x4a,0x1e,0x8f,0xa7, + 0xee,0x7a,0x3f,0x4a,0x3f,0xf4,0x66,0x4e,0x3b,0xb5,0x73,0x42,0x23,0xc7,0x57,0xee,0x17,0x38,0xa7,0x0c, + 0x71,0x42,0xdb,0xa4,0xa5,0x2d,0x9e,0x7e,0xbe,0xfa,0x79,0x4d,0xd1,0xcb,0xf3,0x58,0x90,0xbe,0xab,0xd1, + 0x9b,0x1a,0xbe,0xcb,0xc1,0x64,0x04,0x16,0x31,0x23,0x24,0xc9,0x5d,0x1c,0x8a,0x27,0x6d,0x10,0x3b,0x83, + 0x5a,0x21,0x3c,0x06,0xe1,0xda,0xd4,0x24,0x12,0x2f,0x32,0xda,0x15,0x2a,0xe8,0x25,0x09,0xbd,0xd0,0x3b, + 0x84,0xdd,0xd5,0xbb,0x2b,0xf3,0xf2,0x98,0x97,0xa9,0x0a,0x7f,0xd2,0xd3,0x9a,0x14,0x5e,0x24,0x26,0x20, + 0xbc,0x5f,0xf2,0xca,0x30,0xc8,0x18,0xd7,0x96,0xd4,0xb8,0xe4,0x09,0x1a,0x38,0xd5,0x03,0x4c,0x86,0x51, + 0x8c,0x4c,0x53,0x50,0x61,0x04,0x5a,0xc7,0x8e,0xf6,0x44,0x3a,0xce,0x70,0x0d,0x11,0x78,0xc5,0x7a,0xc6, + 0x23,0xcd,0x79,0x2c,0x21,0x0a,0x3c,0x11,0x82,0x6c,0x19,0xd1,0x7b,0x71,0x47,0xd7,0xc5,0xc2,0x47,0x61, + 0xa1,0x16,0x16,0x5c,0x48,0x49,0x7a,0x8e,0xf8,0xd0,0x8f,0x79,0x8d,0x11,0x83,0xa4,0xe3,0x95,0x19,0x33, + 0x75,0x20,0x5f,0xf1,0xda,0x25,0x73,0x71,0x03,0x65,0x10,0xc7,0x81,0xe3,0x54,0x19,0x1a,0xa6,0x42,0x76, + 0xb8,0xf8,0x6b,0x6e,0xf2,0x02,0xd2,0x16,0x24,0x47,0x9c,0xb2,0xe5,0x9c,0x49,0x2b,0x33,0x2e,0xab,0x69, + 0xfe,0x92,0x2a,0xad,0xf2,0xfc,0x74,0x0a,0xaa,0xb3,0x94,0xe5,0xc2,0x50,0x41,0x86,0x3e,0x39,0x84,0xdf, + 0xec,0xd8,0x04,0x07,0xe1,0xc9,0xc7,0xfa,0x7e,0x16,0x88,0x23,0x5f,0x0d,0xff,0x80,0x43,0x6c,0x71,0xce, + 0x71,0xf1,0xec,0xa8,0xb4,0xfd,0xd3,0xf1,0x77,0x64,0x81,0x1f,0xa6,0xb8,0x75,0x66,0x9d,0x19,0x7e,0xfb, + 0x0f,0xa6,0x41,0x1a,0xbb,0x6c,0x2b,0x9f,0xf6,0xbf,0x23,0x0c,0x33,0x46,0x99,0x4b,0x4e,0x0e,0xe9,0x1e, + 0x64,0x03,0x54,0x74,0xbb,0x0b,0xf2,0x0a,0xe7,0x2f,0x5e,0x20,0x32,0x9b,0xd1,0x7a,0x17,0xb4,0x94,0x83, + 0xe4,0x5c,0x56,0xe7,0x2e,0xe8,0x50,0x8b,0x6b,0x4f,0xfd,0xf1,0x45,0x51,0xaf,0x86,0x94,0x35,0xbb,0x40, + 0x1c,0x0e,0x35,0xa4,0x5c,0x10,0x6b,0xc1,0x8b,0x5d,0xb5,0xd7,0x41,0x11,0xe1,0x50,0x81,0xb9,0x8b,0xa2, + 0x68,0x75,0xa8,0x7b,0xa8,0x22,0xa3,0x64,0x49,0xdb,0x63,0x0e,0x65,0x2b,0xf6,0xb0,0x73,0x86,0xbe,0xc7, + 0x87,0xc3,0x4e,0xff,0x0b,0xa2,0xfb,0x9d,0x5e,0xe0,0x8b,0x15,0x7b,0xbd,0x2a,0xdc,0x89,0x27,0xd8,0xdf, + 0xe6,0xc3,0x77,0x85,0x84,0xa7,0xfb,0x9d,0x9a,0x8b,0x57,0xdb,0xa3,0xc3,0xbd,0x8e,0x4e,0x80,0x72,0x51, + 0xa2,0xbb,0xf9,0x35,0x51,0xaf,0xb3,0x47,0x06,0x36,0x4b,0x97,0xb4,0x5f,0x4e,0x2f,0xd6,0x4a,0xe2,0x83, + 0x56,0xef,0x34,0x4d,0x1b,0xe0,0xae,0x13,0x8d,0x74,0x20,0x00,0xe4,0xea,0xc6,0x50,0x14,0x45,0x6a,0xc2, + 0xe4,0x43,0x28,0x9e,0x34,0x1f,0x58,0x0f,0xd3,0x1d,0x25,0x2d,0xc0,0xfd,0xe2,0x59,0x49,0xf3,0xa1,0x5f, + 0x1c,0xb3,0xdf,0x2a,0xfa,0x0a,0x48,0xf5,0x8e,0xd8,0x43,0x28,0x9e,0x94,0x0e,0x5c,0x58,0x94,0x84,0x9f, + 0xc4,0x4a,0xa7,0x5c,0x9e,0x5b,0x52,0xe2,0x93,0x78,0x26,0xa4,0xfd,0x34,0xfb,0x8e,0x40,0xa6,0xd4,0xd9, + 0x27,0x02,0x0e,0x70,0xf3,0x11,0x9e,0xc9,0x05,0x7f,0x68,0xa1,0x26,0x2e,0x8b,0x4c,0x59,0x25,0x5d,0x68, + 0x2f,0x4f,0x4a,0xc2,0x7a,0xee,0xe7,0x15,0xa9,0x0b,0x6b,0x6b,0xb8,0x4d,0x56,0x99,0x58,0xf0,0x77,0x25, + 0xa1,0x46,0x8b,0x80,0x95,0x2a,0x99,0xa4,0x72,0xe3,0x5a,0xa9,0x88,0xfc,0xb6,0x2b,0xa4,0xbf,0x7c,0x28, + 0x6a,0x7c,0x4d,0xa2,0x29,0x80,0xc3,0xe8,0x61,0x6e,0x0e,0xa5,0x80,0x14,0xa3,0xb7,0x9f,0x3a,0xae,0x62, + 0x85,0x6a,0x72,0x6e,0x93,0x1c,0x8b,0x53,0x5e,0xf7,0xc6,0xc9,0xaa,0xea,0xbf,0x97,0x26,0xb6,0xa8,0x2d, + 0xc9,0x15,0x17,0xe9,0xd2,0x4a,0xb5,0xf2,0xe3,0xf1,0xf8,0xb5,0x0e,0xe1,0x16,0xaf,0xd6,0x1c,0x64,0x92, + 0xca,0x48,0x02,0x76,0x4f,0xb6,0x2d,0x76,0x63,0x7f,0x7a,0x44,0xd9,0x69,0xdd,0xbb,0xa3,0x70,0x6e,0xd1, + 0x26,0x03,0xb2,0xb3,0x7a,0xa9,0x88,0xe0,0x00,0xd6,0xcf,0xce,0xcf,0x94,0x45,0x71,0x83,0x4d,0xd7,0xfd, + 0x6d,0xb7,0x46,0x95,0x46,0x5b,0x17,0xbc,0xa0,0xc1,0x7d,0x8f,0xce,0x78,0xbc,0x54,0x84,0x63,0x49,0xa8, + 0x70,0xd2,0x31,0x6c,0x2f,0x0b,0x24,0x1c,0x5b,0xfe,0x3e,0x3d,0xee,0xd1,0xfe,0x34,0x29,0x08,0x9e,0x31, + 0xd4,0x5d,0xf1,0x2b,0x77,0x87,0x5e,0x10,0x37,0x5c,0x43,0xab,0x90,0x85,0x91,0x9a,0x9a,0x5b,0x7a,0x61, + 0xa8,0x9b,0x36,0xc0,0x6e,0x43,0xf4,0xe8,0x80,0x8a,0x8f,0x9a,0xf2,0x11,0xce,0x50,0x37,0x65,0xf1,0xdb, + 0xc1,0x63,0x66,0x85,0x35,0xca,0xf0,0x4d,0x9d,0x7c,0x73,0x3b,0x65,0xd6,0x98,0x3c,0x38,0x48,0x74,0x0e, + 0xd1,0xaa,0xe7,0x5c,0x86,0x74,0x9c,0x85,0xaa,0xff,0x71,0xb1,0xf6,0x66,0x33,0x6e,0x79,0x75,0x0c,0xc5, + 0x33,0x6d,0x7a,0x93,0xfd,0x2e,0xba,0xa7,0x64,0x98,0x6b,0x96,0xb1,0xde,0xa8,0x17,0x1a,0x94,0x7c,0xcb, + 0x82,0x44,0x09,0x1d,0x96,0x74,0x87,0x1f,0x2a,0x7c,0x46,0xf4,0x8e,0x02,0x35,0xdc,0xd6,0x2f,0xa6,0x18, + 0x4e,0x48,0xe0,0x34,0x0b,0x22,0x5a,0x75,0x12,0xd1,0xad,0xec,0xa3,0xd6,0x62,0x3e,0xb1,0xee,0xc1,0x65, + 0x9d,0xc4,0x34,0x77,0xcc,0xed,0x40,0xcd,0x24,0x67,0xdb,0xbd,0x4e,0xf7,0x1a,0x2e,0x95,0x70,0x51,0xc2, + 0xb1,0xea,0x80,0x29,0x67,0x70,0x3d,0x29,0x29,0x6b,0x12,0x46,0x81,0xa3,0xe0,0xef,0xfe,0xc3,0xa1,0xc0, + 0xe7,0x7b,0xd3,0x43,0xd9,0xd2,0x43,0xbb,0x59,0x5a,0xbd,0xf2,0xe6,0x37,0x69,0xbb,0x81,0xef,0x04,0xfa, + 0x21,0x86,0xd1,0x78,0x83,0x07,0x35,0xf3,0x93,0xbf,0x75,0xf8,0x07,0xa8,0x3c,0xe3,0xe7,0xd1,0x40,0x44, + 0x49,0x2a,0x6d,0x90,0x90,0xfc,0xba,0x8a,0xc6,0x1b,0xae,0xc6,0xb7,0x45,0xd0,0x28,0xaa,0x78,0x96,0xde, + 0x93,0x1a,0xb2,0xd4,0xba,0x5b,0xad,0x56,0xee,0x4d,0x9c,0xde,0x72,0x2f,0xd5,0xf8,0xb6,0x02,0x6e,0x08, + 0x26,0x4c,0x51,0xf6,0x43,0xd5,0xa0,0xac,0x16,0xc4,0x72,0xae,0x7f,0xc0,0x13,0xa8,0x8d,0x9a,0x5e,0x00, + 0xac,0x3f,0xd6,0x72,0x14,0xcf,0xa4,0xaa,0xcf,0x57,0x55,0x37,0x5a,0xac,0x59,0xb5,0x85,0x0a,0xf0,0x64, + 0x29,0x4e,0x55,0x95,0x76,0x6b,0x31,0xb4,0xac,0x22,0x36,0xd3,0x6e,0xb8,0xb0,0x08,0xbb,0xc7,0x55,0x27, + 0xde,0xf6,0xa4,0x29,0xe8,0x87,0x8c,0x76,0x22,0x21,0x7b,0xab,0xbd,0x2a,0x39,0xaa,0x1d,0xf6,0xa3,0x6b, + 0x1f,0x24,0x1a,0xb4,0xc0,0x71,0xd3,0xd4,0x7a,0x8e,0x3b,0x4b,0xd4,0xde,0x38,0x59,0x76,0xe3,0x12,0x0e, + 0xac,0x12,0x5b,0xbd,0x59,0xf2,0xed,0x52,0x67,0x6d,0x7d,0xd0,0x2a,0xbc,0xe0,0x15,0xd5,0x03,0xfe,0xe4, + 0xce,0x13,0xc8,0xb4,0xba,0xc5,0x4b,0xdb,0x3d,0xc2,0x9d,0x3b,0x7b,0x21,0xe0,0x54,0xd7,0x01,0x6f,0x41, + 0xad,0x84,0x68,0x81,0xd9,0x0a,0x58,0x43,0xb8,0xcf,0xcc,0xc5,0x27,0x43,0xba,0x22,0x1b,0xc0,0x14,0xe5, + 0xe0,0x16,0xad,0x0d,0x06,0xa6,0x34,0x25,0x89,0x56,0xa5,0xde,0x7d,0x5e,0x0d,0x4d,0xf6,0xae,0x7e,0xb7, + 0x3d,0xb1,0x71,0xfb,0x8a,0xdd,0xb7,0x2f,0xd3,0x96,0xf9,0x4a,0xbd,0x26,0x99,0x8b,0x41,0x0d,0xfd,0xe5, + 0xcb,0x0a,0x9c,0x8d,0xf9,0x3f,0x95,0xcc,0x77,0x0c,0x47,0x4b,0xfd,0x94,0x0f,0xac,0xd0,0x40,0x74,0x6a, + 0x71,0x73,0x32,0x4b,0xd7,0x91,0x88,0x92,0x78,0x1a,0xf4,0x73,0x52,0x97,0xa0,0xd1,0x45,0x38,0x34,0x45, + 0x9f,0x5c,0xf7,0xa5,0x71,0x4b,0x28,0x67,0x52,0x99,0x2e,0xdf,0x86,0x84,0x2c,0x0d,0xa1,0xb6,0x3f,0x8e, + 0x4b,0x6b,0x18,0x97,0x00,0x2a,0x06,0x00,0xba,0xb4,0x7a,0x06,0x2a,0x4a,0x70,0x07,0xd4,0x7d,0x1e,0x37, + 0x5d,0xd8,0x88,0x8d,0x23,0x7c,0x62,0xc8,0x2d,0x5d,0x75,0x7a,0x03,0xd8,0xbe,0xf8,0xa9,0xc8,0x29,0x4c, + 0xde,0x26,0x04,0x1e,0xa8,0x2f,0x22,0xb2,0xd0,0x26,0xb7,0x5e,0xe4,0xbc,0x92,0xce,0xe6,0xbc,0x1b,0x12, + 0xf5,0xa1,0x6d,0x45,0xd2,0x17,0x9a,0xee,0x82,0xd4,0x07,0x78,0xe2,0xe5,0x24,0x24,0x02,0x29,0x0a,0xe6, + 0xfa,0x38,0x65,0xe8,0x9d,0x79,0x9a,0x22,0xfa,0x86,0x5c,0xd2,0x00,0x67,0x9c,0xef,0x35,0x33,0x42,0x7f, + 0x40,0xc0,0xe4,0x57,0xa4,0xe0,0x82,0xf1,0x4b,0x81,0xde,0x7a,0xcd,0xab,0xd4,0xdc,0x09,0x4c,0xf9,0x17, + 0xe1,0xb4,0xa0,0x28,0x64,0x14,0x00,0x00}; #endif diff --git a/src/assets/html.h b/src/assets/html.h index 1f43601..e66db66 100644 --- a/src/assets/html.h +++ b/src/assets/html.h @@ -4,166 +4,157 @@ #include const uint8_t EmbeddedIndex[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0x79,0x77,0xdb,0x36,0x12,0xff,0x2a,0x0c, - 0xbb,0x5b,0x39,0x9b,0x58,0x96,0x8f,0xb8,0xb1,0xd7,0xf6,0x56,0xa7,0x2d,0x5b,0x92,0x75,0xf9,0xdc,0xb7, - 0x6f,0x1f,0x44,0x42,0x24,0x6c,0x5e,0xe6,0x21,0x59,0x69,0xfb,0xdd,0x17,0x07,0x0f,0x90,0x04,0x25,0x3a, - 0x6d,0xda,0xbe,0xbe,0xcd,0x1f,0x91,0x81,0x19,0xcc,0xfc,0x66,0x80,0x01,0x66,0x40,0xf2,0xe4,0x5d,0xeb, - 0xba,0x39,0x7d,0x18,0xb6,0x25,0xdd,0x37,0x8d,0xb3,0x93,0xf0,0x7f,0x08,0xd4,0xb3,0x13,0x13,0xfa,0x40, - 0x52,0x74,0xe0,0x7a,0xd0,0x3f,0x95,0x6f,0xa6,0x9d,0xed,0xcf,0xf2,0xd9,0x89,0x8f,0x7c,0x03,0x9e,0x9d, - 0xec,0x84,0xbf,0x94,0xc9,0x02,0x26,0x3c,0x95,0x7d,0x1d,0x9a,0x70,0x5b,0xb1,0x0d,0xdb,0x95,0x25,0xc5, - 0xb6,0x7c,0x68,0xe1,0x71,0xdf,0xd5,0xe8,0x3f,0x39,0xc5,0xba,0x40,0x70,0xe9,0xd8,0xae,0xcf,0xf1,0x2d, - 0x91,0xea,0xeb,0xa7,0x2a,0x5c,0x20,0x05,0x6e,0xd3,0xc6,0x47,0x64,0x21,0x1f,0x01,0x63,0xdb,0x53,0x80, - 0x01,0x4f,0x77,0xb1,0x08,0x03,0x59,0xcf,0x92,0x0b,0x8d,0x53,0xd9,0xf3,0x57,0x06,0xf4,0x74,0x08,0xb1, - 0x0c,0xdd,0x85,0xf3,0x53,0x79,0x16,0x58,0xaa,0x01,0xab,0x8a,0xe7,0x61,0x46,0x4f,0x71,0x91,0xe3,0x4b, - 0x9e,0xab,0xc4,0x84,0x27,0xd2,0xbf,0xc3,0x08,0xf8,0x0f,0x66,0xe3,0xcc,0x56,0x57,0x67,0x27,0x2a,0x5a, - 0x48,0x48,0x3d,0x95,0x81,0xe3,0xc8,0xac,0xb5,0xd8,0x56,0x0c,0x1b,0x3c,0xb3,0x86,0x62,0x00,0xcf,0x3b, - 0x95,0x2d,0xdb,0x47,0x73,0xa4,0x00,0x1f,0xd9,0x56,0x13,0xc3,0x06,0xc8,0x82,0xae,0x5c,0xc8,0x22,0x4b, - 0xc7,0x61,0xef,0x4f,0x12,0x74,0x5d,0xdb,0x3d,0x96,0x78,0xb2,0xf4,0xee,0x54,0xb2,0x02,0xc3,0x90,0xbe, - 0xff,0x3e,0xd5,0x5f,0xa5,0xbc,0xd2,0x2f,0x32,0xc6,0x80,0xe6,0x69,0x91,0xd1,0x18,0x59,0xfa,0x51,0x31, - 0x90,0xf2,0x5c,0x75,0x5c,0xb8,0xa0,0xde,0xd3,0x91,0x0a,0x07,0xbc,0x72,0xec,0x02,0x07,0x58,0x11,0x2e, - 0x13,0x7a,0x1e,0xd0,0xa0,0x7c,0xf6,0xd3,0x4f,0x69,0x65,0x21,0x41,0xfa,0xe5,0x17,0xec,0x1a,0x3c,0x00, - 0x3b,0x06,0x9b,0x13,0xfd,0x1f,0xf9,0x45,0x11,0x5b,0x4b,0x5c,0x48,0xfb,0x90,0xa9,0x31,0x57,0xab,0xc0, - 0x07,0xc7,0xc8,0xc4,0x12,0x77,0x1c,0x4b,0xfb,0xe7,0x0c,0x78,0xf0,0xf0,0xe0,0x23,0xba,0x6d,0x5c,0x8f, - 0x97,0xb5,0xab,0x73,0xcd,0xae,0xe3,0x7f,0x83,0xc9,0x8d,0xde,0xbe,0xd1,0xf0,0x5f,0x2d,0xd2,0xac,0x2f, - 0x9b,0xf5,0x07,0xfc,0xd3,0xb8,0xaf,0x2f,0xcc,0x0b,0xd2,0x71,0x7e,0x3f,0xee,0xdc,0x5d,0x8c,0xa7,0xb3, - 0xbd,0xc7,0x9a,0xba,0xd7,0x59,0x3d,0x8e,0x1a,0x8d,0xc7,0xf3,0x23,0xf4,0x38,0x69,0x5c,0xce,0xee,0x3a, - 0xd6,0xe3,0xed,0xa5,0xf1,0x70,0x37,0xfe,0xa4,0x28,0x86,0x31,0x24,0x03,0xee,0x1b,0x97,0xe3,0x76,0xe7, - 0x06,0x0e,0x5c,0xef,0x4e,0x6d,0x0f,0xb4,0xa7,0xfa,0xa8,0xa7,0x3c,0x34,0x94,0xfa,0x50,0xa9,0x37,0xd5, - 0xd1,0xe0,0xa0,0x3e,0xd8,0xeb,0x37,0x0f,0xb4,0xb1,0xf7,0x70,0x79,0xd4,0x1e,0xa8,0xf5,0xe1,0x43,0xbd, - 0x05,0xea,0x2d,0xe8,0xa8,0x37,0x7a,0x7f,0xf7,0xa5,0xf3,0x14,0xb8,0x9a,0x73,0x34,0x51,0xfa,0x17,0x9a, - 0xfa,0xc3,0xee,0xfe,0xed,0xfe,0xdc,0xbf,0x71,0x3e,0xc1,0x0b,0xad,0xdf,0xd9,0x75,0xdd,0xf3,0x36,0x08, - 0x0e,0x6f,0x2f,0x5a,0x7b,0x17,0xfd,0xd9,0xc5,0xa7,0x97,0xcb,0xeb,0xde,0x85,0x0b,0x3e,0xcc,0x9f,0xbf, - 0xcc,0xbc,0x87,0xb1,0xa7,0xf7,0x3f,0x3b,0xbd,0xa9,0x76,0xd3,0xd5,0x26,0xda,0x22,0xe8,0xf7,0xed,0x87, - 0xe5,0x07,0xd4,0x7f,0x98,0xba,0x87,0x23,0x7d,0xf0,0xd0,0x77,0x07,0x68,0xb0,0x5a,0x76,0x7b,0xc6,0xea, - 0xf6,0x4a,0x55,0x56,0xab,0xa1,0x67,0x2a,0x63,0x6f,0x75,0xf3,0xa9,0xf6,0xac,0x5d,0xf8,0xa3,0x51,0xb0, - 0x57,0x57,0x07,0x97,0x1d,0xa7,0xf5,0x5c,0xbf,0x3a,0xe8,0xee,0xf4,0xba,0x77,0xfd,0xd9,0x5e,0xdd,0xeb, - 0x36,0x94,0x97,0x1a,0x1a,0x9f,0xc3,0xd1,0xf9,0x70,0xfa,0x38,0xbf,0x3d,0x1c,0xb5,0x6b,0x1f,0xb4,0xd6, - 0x79,0x67,0xcf,0xb5,0xbd,0xf3,0xb6,0xd6,0x1f,0xbd,0x76,0xeb,0xba,0xf5,0x58,0x47,0xc3,0xc1,0xe7,0x83, - 0xc0,0x19,0xcf,0x6b,0x3b,0xd7,0x86,0xe3,0xf5,0x9a,0x0d,0x67,0x7f,0xf5,0x52,0x53,0x74,0xcd,0x6f,0xde, - 0xdc,0x3c,0xba,0xe3,0xe5,0xe1,0xa8,0x75,0xbd,0xdf,0xbe,0xbb,0x98,0xbc,0x74,0x8e,0x7c,0xe0,0x3e,0x82, - 0xc9,0xd5,0xe5,0x3d,0xbc,0x6c,0xa9,0xb3,0x91,0xe1,0xb5,0x6b,0x57,0xad,0xc3,0xcb,0xc1,0xce,0x95,0x3d, - 0xf6,0xce,0xf5,0xd7,0xfb,0xab,0xa6,0xd1,0xbc,0xba,0xb8,0xec,0xce,0x9f,0xa7,0xfa,0xb2,0x7f,0xa7,0xd7, - 0x0f,0xd5,0xc6,0xc4,0x36,0xc6,0xe8,0xe9,0xf9,0xf2,0x5a,0xdd,0x7d,0xbc,0x59,0x1c,0xad,0x46,0x47,0xd7, - 0xce,0xcb,0xec,0xc2,0x41,0xe0,0xe6,0x16,0xb4,0x67,0x8f,0xed,0x1f,0xfc,0x6e,0xf7,0xc9,0x6e,0x5c,0xdd, - 0xaf,0x3c,0xdb,0xdb,0x55,0x0e,0x6e,0x3f,0xc3,0x59,0xaf,0xad,0xce,0x16,0x7b,0x33,0xa5,0xef,0xb5,0x7f, - 0xd0,0x9e,0x82,0x86,0xba,0xb8,0x1f,0x4f,0x2e,0x0f,0x3a,0x1f,0x76,0x96,0x2f,0xdd,0xfb,0x7b,0xb7,0x7b, - 0xbe,0x34,0xef,0xf7,0xbf,0x2c,0x81,0xd2,0x6b,0xe9,0x70,0x70,0x7d,0xb4,0x7b,0xfd,0xd4,0x1b,0x5d,0xa9, - 0xbb,0x07,0xb7,0xfd,0x56,0xd3,0x7a,0xd0,0x9a,0xaf,0xb7,0x4f,0xdd,0xfd,0xc1,0x14,0xee,0x9a,0x13,0x7b, - 0xd8,0x3a,0x38,0x7a,0x3d,0x98,0xb8,0x78,0x71,0x1c,0xbd,0x0c,0xad,0x03,0x68,0x2f,0x9a,0x7d,0xba,0x7a, - 0xda,0x46,0x67,0xfa,0x3c,0x09,0x46,0x66,0xb3,0x89,0x57,0xa2,0xbe,0x4b,0x96,0xf8,0xdf,0xfc,0xad,0x0a, - 0xdd,0x9f,0x2a,0xef,0xe9,0xca,0xc6,0xbd,0x27,0xfa,0x1e,0xa1,0x2c,0xa0,0xeb,0x91,0x75,0xef,0xad,0x3c, - 0x1f,0x9a,0xdd,0x16,0x8e,0xa8,0x30,0x0c,0xff,0x45,0x47,0x45,0xfd,0x78,0xe0,0x07,0xa9,0x72,0x2c,0x55, - 0xf0,0x4f,0x6e,0x0c,0xee,0xae,0x30,0xb9,0x7b,0xa9,0x78,0x58,0xe2,0xb8,0xf2,0x7c,0xe0,0x07,0x5e,0x3a, - 0x4e,0x70,0xf8,0x58,0x50,0x09,0xc3,0x92,0xeb,0x47,0x96,0x4a,0xe2,0x90,0x6c,0x97,0xc7,0x24,0x72,0xb6, - 0xd9,0x60,0x26,0x68,0x42,0xff,0xae,0x02,0xa7,0x0a,0x2d,0x30,0x33,0xa0,0x8a,0x11,0x56,0x42,0x49,0x50, - 0xad,0x10,0x10,0x2a,0xf2,0x92,0x0e,0x39,0x0c,0xda,0xd0,0x7c,0x5e,0x84,0xa2,0xe0,0x28,0x77,0x6c,0x64, - 0xf9,0xd5,0xc4,0x2b,0x12,0x66,0x2c,0xd2,0x93,0xee,0x47,0x0e,0x56,0xb6,0x46,0x26,0x86,0x41,0x07,0x86, - 0xce,0x8e,0x77,0x8e,0xaf,0xb5,0x5e,0x83,0xfe,0x1d,0xea,0x50,0x4d,0x78,0x10,0x53,0xb8,0xf5,0xbe,0xd8, - 0x3e,0x8f,0x31,0x9a,0xb6,0x0a,0x33,0xf6,0x89,0x24,0x4d,0xe1,0xab,0xbf,0xc5,0x21,0xcd,0xee,0x77,0x6c, - 0xd7,0xc5,0x9b,0xbf,0x8a,0x2c,0x4d,0x8e,0xc0,0x46,0xed,0x48,0x7d,0xd8,0x8e,0x35,0x85,0xed,0x6e,0x64, - 0x53,0xda,0x13,0x4c,0xe6,0xbb,0x58,0x08,0xef,0x06,0x1f,0xcc,0xc8,0x72,0x99,0x05,0xbe,0x6f,0xc7,0xfb, - 0x35,0x6b,0xf1,0x27,0x48,0x85,0x75,0x6d,0xdb,0x81,0x8f,0x0f,0x41,0x88,0x97,0x26,0xc0,0x3e,0x5d,0xc0, - 0x29,0x98,0x91,0x53,0xa1,0xc2,0x9c,0x57,0x21,0xe7,0x06,0x3b,0x1b,0xf0,0x69,0x16,0x33,0x24,0xf4,0xd8, - 0x00,0xd6,0xae,0x62,0xed,0x53,0x2e,0x50,0x98,0x92,0x33,0xe9,0x57,0xc3,0xf1,0x5d,0xa4,0x69,0x38,0x6e, - 0x8a,0x01,0xc5,0x1c,0x31,0xa4,0xa8,0xe7,0x9b,0x81,0x4a,0x56,0x62,0x31,0x2c,0x8e,0x27,0x06,0x96,0xf4, - 0x7d,0x33,0x68,0x6c,0x6f,0x59,0x33,0x7d,0x8c,0x9e,0x4c,0x1f,0x6d,0x17,0xc0,0xc9,0xad,0x3c,0x4e,0x14, - 0xbf,0x14,0x4e,0xf4,0xfd,0xec,0x72,0xe0,0x37,0xcd,0x7d,0x2a,0x02,0x9f,0xee,0x96,0x13,0xf8,0x92,0xbf, - 0x72,0x70,0xe2,0xe6,0xe2,0x15,0x6c,0xcb,0x61,0x16,0x07,0x0c,0x63,0xe2,0x43,0xc7,0xc3,0x86,0x2e,0x80, - 0x11,0x90,0x14,0xd0,0x0d,0x20,0x49,0x5c,0x48,0x2c,0x1a,0x3c,0x03,0xcd,0xae,0xc2,0xd6,0x94,0x30,0xe1, - 0x5c,0x0e,0xcc,0xa0,0x11,0xc7,0x17,0x69,0x6c,0x23,0x8b,0x38,0x47,0x96,0xe6,0xb6,0x9b,0x65,0x4f,0xe3, - 0xe4,0x69,0x21,0x5c,0x2a,0x81,0x33,0xfd,0x4d,0xb8,0xe7,0xc0,0xf0,0x36,0x03,0xef,0x50,0xae,0xf2,0xc8, - 0x43,0x7e,0x31,0x74,0x4a,0x2c,0xc0,0x1e,0xc9,0xf6,0x0c,0x9c,0xd6,0xb9,0x99,0xd3,0x04,0x4f,0xbc,0x13, - 0x25,0x87,0x31,0xce,0x74,0xba,0x47,0xad,0xa2,0x8a,0xfb,0xc0,0xd7,0xab,0x73,0xc3,0xb6,0xdd,0xad,0x88, - 0xf7,0x96,0x10,0xa5,0x1d,0x69,0xef,0xd3,0x27,0xe9,0x1f,0xd2,0x6e,0xad,0x46,0x30,0xfc,0x3d,0x4a,0xff, - 0x72,0xda,0xf9,0xdc,0x2f,0xed,0x51,0x0b,0x27,0x94,0x92,0x89,0xac,0x53,0xb9,0x86,0x7f,0xc1,0xeb,0xa9, - 0x8c,0x45,0xca,0xe9,0xd1,0xb1,0x4f,0xab,0x56,0x60,0xce,0x20,0xe7,0x9c,0x5b,0x86,0x31,0xb7,0xff,0x0a, - 0xac,0x7c,0x97,0x4c,0xc7,0x62,0x9b,0x7a,0x78,0x8b,0x90,0x3f,0x4a,0xf8,0x08,0x81,0xaf,0xef,0xf1,0x8f, - 0xe4,0x95,0xf5,0x02,0x61,0xac,0x2e,0xfe,0x58,0x17,0x24,0x18,0x32,0xf6,0x8b,0xcf,0xa2,0x74,0xf4,0x72, - 0xfb,0xe6,0x09,0xf6,0x85,0x29,0xfd,0xe8,0x05,0x33,0x13,0xf9,0x49,0x2d,0x80,0xab,0x18,0x63,0x35,0x45, - 0x26,0x9c,0x86,0xac,0x84,0x13,0x41,0x43,0xc5,0x75,0x1c,0x1f,0xf3,0xc9,0x7e,0x4b,0x78,0x33,0x91,0xcf, - 0xdb,0xa9,0xe8,0x50,0x79,0x9e,0xd9,0xaf,0x2c,0x1a,0x08,0x77,0x9b,0xa5,0x0a,0x89,0x69,0x33,0xdb,0x36, - 0x20,0xb0,0xc8,0x0e,0xc0,0x09,0x8d,0x52,0x8a,0x38,0x66,0xe8,0xe4,0xa5,0x04,0x88,0xa2,0x48,0x08,0x30, - 0x1c,0x91,0x8e,0x98,0xc4,0x49,0x45,0x7a,0xf9,0xf4,0x0c,0xb8,0x16,0x3d,0xd3,0xc3,0x55,0x95,0x4f,0x21, - 0xe2,0x14,0xe8,0xe7,0x9f,0x25,0x01,0x95,0x45,0x30,0xd9,0xaf,0xf7,0xc5,0x18,0xbb,0xb8,0x96,0x75,0x2d, - 0xe8,0xf3,0x99,0x50,0xc6,0xf0,0x29,0x5e,0x34,0x1e,0x22,0xe2,0xc8,0x0c,0x89,0xc5,0xa4,0x79,0xd2,0x16, - 0xf3,0xf3,0xc2,0xd6,0x53,0x32,0x2b,0x19,0xd9,0xb9,0x75,0x97,0xf6,0x91,0x9f,0x41,0xc2,0x90,0x9e,0x8d, - 0xa1,0x06,0x0d,0x6f,0xa3,0x87,0xe3,0x96,0x01,0x2d,0xcd,0xd7,0xe3,0xb2,0x99,0x85,0x67,0x48,0xe5,0x23, - 0x54,0x3c,0x3c,0x5e,0x00,0x38,0xf2,0xa0,0x91,0x9e,0x2f,0xda,0xb5,0x9d,0x14,0x99,0xc2,0x15,0x79,0x4c, - 0x8c,0xaf,0x10,0x99,0x24,0x55,0xa7,0xea,0x48,0xe6,0xfe,0xdf,0x70,0x26,0x2b,0xc5,0x4b,0x34,0xb7,0x38, - 0x85,0x1b,0xfa,0x31,0x35,0x68,0x9d,0x82,0x82,0x29,0xa4,0x0d,0xe1,0xa2,0xe5,0xf7,0x28,0x40,0xd3,0x0a, - 0x1c,0xa1,0xff,0x96,0x4e,0x40,0x78,0x91,0xf1,0x5d,0xbe,0xbc,0xc7,0xf8,0xa1,0x0f,0xb9,0x98,0xde,0x62, - 0x8e,0x15,0x2b,0x6f,0x51,0xee,0x50,0x29,0x38,0x93,0xfe,0x23,0xd8,0xd9,0x14,0xec,0x0b,0xb7,0x78,0xfb, - 0x65,0xbe,0x27,0xb7,0x23,0x64,0x53,0xc5,0xf2,0x14,0xbf,0x68,0x39,0x45,0x73,0x39,0xc5,0x33,0x23,0x27, - 0xc9,0x3d,0x8b,0xe4,0x13,0xdb,0xa1,0x17,0x17,0xe1,0x39,0x5b,0x13,0x03,0xee,0xa0,0x57,0xa8,0x72,0x6b, - 0x9d,0x0d,0xca,0x0e,0xde,0x15,0x0f,0x9e,0x04,0x96,0x8b,0xbc,0xf5,0x43,0xf7,0x0a,0x87,0x7a,0x71,0xb4, - 0x46,0x23,0x77,0x98,0xb9,0x1b,0xcd,0x9e,0x47,0xa0,0xb3,0x46,0xa7,0xe3,0x85,0x77,0x0f,0xd9,0xc0,0x6b, - 0x9c,0x53,0xb6,0xe3,0x6d,0x81,0x44,0x48,0x2c,0x90,0x4f,0xa8,0xa2,0x4d,0x02,0x97,0x32,0x2d,0xe4,0x39, - 0x06,0xa0,0x3b,0xfb,0x16,0xe9,0xff,0x28,0xd1,0xb4,0xe5,0xeb,0xd0,0xbb,0xd0,0x00,0xf4,0x58,0x11,0x1b, - 0x80,0xb7,0x00,0x58,0x84,0x93,0x1f,0x5a,0x1a,0x2a,0xc9,0x0c,0x0b,0x90,0xd2,0xb5,0xc7,0x07,0x45,0x14, - 0xdd,0xd2,0x12,0xc2,0x67,0x15,0xac,0x0a,0x83,0xbf,0x30,0xb4,0x4d,0xdb,0x22,0xe3,0xd8,0xee,0x90,0xc4, - 0x2c,0xeb,0xae,0xc4,0x11,0xcf,0x82,0x3b,0x4f,0x2f,0x7f,0x2a,0xf5,0xd9,0x88,0x74,0x1a,0xc7,0x82,0xed, - 0xb7,0xb5,0xc8,0x0f,0xa0,0x27,0x32,0x29,0xec,0x2f,0xb6,0x29,0x66,0x28,0x6f,0xd4,0x34,0x1c,0xf2,0xed, - 0xad,0x5a,0x42,0xd5,0x12,0xdb,0x15,0x53,0x8a,0x2d,0xe3,0x58,0xca,0xdb,0x76,0x17,0x0f,0xfa,0x1d,0xe6, - 0x4c,0x0f,0x5c,0xf1,0xa4,0x85,0x84,0x35,0xb3,0x16,0x73,0xbc,0x61,0xda,0xa2,0x31,0xdf,0xde,0xb2,0xb9, - 0x8b,0x44,0x76,0xb1,0xee,0x62,0xab,0x22,0x7a,0x79,0x9b,0x3a,0x6c,0xc4,0xb7,0xb7,0xc8,0xc3,0xa9,0x9d, - 0x2b,0xb2,0x29,0x22,0x14,0x5b,0x95,0x70,0x94,0xb7,0x6b,0x12,0x8d,0xf9,0x1d,0x2c,0x0b,0x84,0x7b,0x21, - 0xeb,0x5e,0x63,0x55,0xf0,0xd6,0xbd,0x70,0x12,0x14,0xee,0x85,0xe2,0xf2,0xae,0x44,0xb9,0x16,0x19,0x31, - 0xc3,0xbf,0xba,0x8f,0x23,0xd7,0xfb,0xe3,0xca,0xb6,0x3c,0x96,0x35,0xe5,0x1b,0x5f,0xc4,0x91,0xc3,0x34, - 0x79,0x42,0x44,0xee,0x3a,0xc5,0x0e,0x1c,0xd8,0x2d,0x4c,0x2b,0xb8,0x46,0x65,0x77,0x3b,0x45,0x57,0x85, - 0xdb,0x8e,0x8b,0x4c,0xe0,0xae,0xa4,0xf4,0x3d,0x13,0xb9,0x5a,0x0d,0x6f,0x67,0xb1,0x5d,0x60,0x41,0xcb, - 0x9f,0x6c,0x72,0x09,0x54,0x95,0xcb,0x2c,0xc5,0xd0,0xea,0xaa,0x2a,0xbc,0x63,0x5a,0x03,0x93,0xb9,0x5c, - 0x88,0x52,0x0e,0x67,0x82,0x55,0xae,0x42,0x90,0x51,0x56,0xc1,0xda,0xe1,0xed,0x3c,0xad,0x6c,0x1b,0x54, - 0xd4,0x84,0xf6,0x63,0x4c,0xc7,0x59,0x4a,0xe5,0x7d,0x32,0x2d,0x49,0xd9,0xbb,0x43,0x6a,0xe5,0xb5,0x15, - 0x73,0xdf,0xa6,0xb5,0x50,0xc9,0x9a,0xd9,0x64,0xdc,0xa5,0xab,0x66,0xc6,0x5f,0xa2,0x6e,0x66,0x8c,0xe2, - 0xca,0x39,0x23,0xa4,0x54,0x64,0xa6,0xc6,0x6c,0xac,0x9e,0x73,0xda,0x4b,0x5a,0xd4,0x0a,0x5c,0x3c,0x1d, - 0xfc,0x32,0x2a,0x6d,0x62,0x7e,0x68,0xb1,0xcd,0x02,0x35,0x6f,0x77,0x42,0x4e,0x48,0xda,0x2b,0x39,0xdd, - 0x9b,0x4a,0x76,0x11,0x57,0xb9,0xa2,0x5d,0x28,0xbf,0xb8,0x6c,0x0f,0xfd,0xf6,0xd5,0x85,0x7b,0x3c,0xfe, - 0x6b,0x4b,0xf7,0x8c,0x80,0xdf,0xa8,0x78,0x67,0x52,0xbf,0x69,0xf9,0xbe,0x56,0x45,0xe1,0x84,0x7e,0x83, - 0x12,0x3e,0xb5,0xc9,0x14,0x16,0xf1,0x0c,0xc0,0x6f,0x5d,0xc6,0xf3,0xe7,0xbc,0xd0,0x23,0x0e,0xb2,0x0a, - 0xbd,0x31,0xc4,0xb4,0x8d,0x6b,0xba,0x78,0x3e,0xa9,0xe8,0xc2,0x13,0x15,0x53,0xcb,0xe0,0x53,0x91,0x9b, - 0x7d,0x34,0x93,0x75,0x59,0xcc,0x91,0x9e,0x2e,0x56,0x0b,0x17,0xc3,0xe3,0x24,0x17,0x82,0x8c,0x79,0x72, - 0xb7,0x1a,0x82,0x8b,0x89,0x0c,0x9c,0x01,0xf7,0x37,0x30,0xde,0x7a,0x55,0x91,0x11,0x36,0xb5,0x9d,0x96, - 0xbd,0xb4,0xd6,0x4a,0x11,0x5c,0x50,0x66,0xa4,0x34,0x6c,0x7c,0x58,0x9a,0x37,0x4e,0xd1,0xed,0xc7,0xff, - 0x93,0xb5,0xe2,0x64,0x8d,0xb9,0xf2,0x8f,0x4b,0xd7,0x52,0xbb,0x48,0x11,0xbc,0xbf,0x4a,0xca,0xb6,0xfe, - 0x71,0x48,0xea,0x79,0xed,0xba,0xf4,0xae,0xc9,0xbf,0x86,0x20,0x4a,0xed,0xf8,0xa7,0xbc,0xa5,0xd3,0x3a, - 0xee,0x3d,0x08,0xee,0xf1,0x21,0x27,0x8a,0x67,0x28,0xf1,0xe4,0x90,0xe7,0xce,0xe3,0xe2,0xc8,0xc5,0xe7, - 0x91,0xbe,0x79,0xf0,0x45,0x22,0x80,0x86,0xa3,0xb4,0xc6,0xc2,0xf0,0xe1,0x87,0xd8,0xba,0x88,0xb8,0xd9, - 0xb2,0x98,0x33,0x0f,0x8c,0x7b,0x7f,0xe3,0xed,0x56,0x71,0x83,0xb3,0x56,0xf1,0x99,0x9c,0xe7,0x21,0x55, - 0x38,0x1c,0xf7,0x17,0x9f,0x6b,0x3e,0x7c,0xf5,0x43,0x2f,0x90,0xf1,0x62,0x17,0x50,0x0a,0x17,0x0e,0xef, - 0xd6,0xf8,0x87,0x62,0x71,0xb0,0x41,0x4b,0xdb,0x15,0xe2,0x89,0x68,0xc5,0x98,0xe2,0xd1,0x14,0x57,0xd2, - 0x12,0x61,0x4b,0xa8,0x9b,0xf0,0xad,0x5b,0x01,0xaa,0xae,0x38,0x62,0xf9,0x8c,0x52,0xd2,0xf6,0xe2,0xb5, - 0x41,0xc5,0x08,0x9c,0x41,0xfa,0xdf,0xbe,0x22,0xc8,0xa8,0xdc,0x52,0xe0,0xcf,0x9b,0x60,0xc6,0x0e,0x3b, - 0x2f,0x3d,0x2d,0x48,0x88,0x01,0x39,0x78,0xbf,0x75,0x71,0xe0,0x94,0x59,0x25,0xa8,0xc0,0x4f,0x68,0xa3, - 0x97,0xc8,0x13,0xc7,0xac,0x63,0xd3,0x0b,0x38,0x98,0x59,0xd0,0x37,0x81,0xf7,0x2c,0x5c,0xc6,0x31,0xb5, - 0xd4,0x62,0x4e,0x64,0x89,0x97,0x34,0x47,0xff,0x95,0xb0,0x35,0xe0,0xc3,0x25,0xb9,0xb5,0xca,0x63,0x0e, - 0x49,0x65,0x00,0x47,0x52,0x84,0x68,0x63,0xe2,0xd7,0x40,0xcd,0x3d,0xa3,0xd5,0x6d,0xcf,0x27,0x6f,0x89, - 0x88,0x10,0x47,0xb4,0x4d,0x90,0x8f,0x1d,0x03,0x28,0x50,0xb7,0x0d,0x95,0x64,0x22,0x05,0x42,0x86,0x09, - 0x0f,0x3e,0xfe,0xa8,0x99,0xb1,0x6e,0xa1,0x9d,0x09,0x75,0x63,0xc0,0xfd,0x55,0x0e,0xf7,0xf8,0xad,0xa7, - 0x82,0x83,0x3d,0x70,0xc8,0x2b,0x75,0x1d,0xe4,0x9a,0x4b,0xe0,0xc2,0x70,0x71,0xd3,0x31,0x05,0x67,0x7c, - 0xf8,0xda,0xd4,0x3c,0x1c,0xb1,0xee,0xfa,0x66,0x8e,0x8c,0x50,0x62,0xc4,0xdd,0x21,0x3d,0x7f,0x5e,0xe7, - 0x26,0x4e,0x64,0x6e,0x19,0xba,0xb6,0x46,0x36,0x2e,0xfa,0x8a,0xeb,0x3c,0x7e,0x15,0x29,0x43,0xa4,0x39, - 0xf9,0xdb,0x2f,0xcb,0x26,0xcc,0xcb,0xa5,0x3d,0x6e,0xf9,0x4e,0xd6,0xd9,0x7f,0xa6,0x37,0x33,0x30,0xbc, - 0x09,0x74,0x17,0x5c,0x32,0x9d,0xe0,0x66,0x84,0x32,0xdb,0x54,0x22,0x25,0x09,0xe0,0xac,0x1c,0x39,0xab, - 0x97,0x22,0xc3,0xf3,0x2f,0xd0,0x1c,0x91,0xca,0x5d,0x26,0xf1,0xb2,0x44,0xfa,0x13,0x45,0x3c,0x02,0x03, - 0xf8,0x02,0xcd,0x3d,0xe0,0x97,0x31,0x98,0x0c,0xce,0xa9,0xa2,0x12,0x7f,0x6f,0x15,0xdc,0xab,0xb9,0x9c, - 0x8a,0xf0,0x05,0xdd,0x4d,0x2a,0xd8,0xca,0xcb,0xa8,0xc8,0xbe,0xa7,0x5b,0x94,0x36,0x18,0x76,0xf4,0xb9, - 0xc7,0xba,0x9b,0x48,0x0e,0x54,0xc8,0x5f,0x0a,0x59,0x2c,0x3b,0x86,0x17,0x77,0x15,0xbc,0x74,0x9a,0xab, - 0x28,0xb3,0xe5,0xa3,0x07,0x81,0xab,0xe8,0xbd,0x58,0x32,0xbf,0x1d,0x51,0x12,0x0e,0xc4,0x98,0x5a,0x0c, - 0x7f,0x42,0x79,0x85,0x05,0x66,0x2e,0xf8,0x1d,0x64,0x79,0xd9,0xe8,0xe7,0xf3,0x61,0x64,0xf5,0xda,0xad, - 0xfa,0x30,0xab,0x2d,0xea,0x2f,0xb7,0xfc,0x63,0x29,0xf9,0xd7,0xed,0x12,0x14,0x55,0x6c,0x27,0x51,0x94, - 0x57,0x3f,0x99,0xd6,0xc5,0xfa,0x31,0xe1,0x2d,0x00,0x88,0x9c,0x4d,0x08,0xa8,0xae,0x0c,0x84,0xfa,0x90, - 0x6d,0xe8,0x02,0x10,0x11,0xa9,0x34,0x8c,0x58,0xd6,0x5a,0x20,0xc0,0x89,0x34,0x66,0xa0,0x0c,0xef,0xfa, - 0x2d,0x17,0x9f,0xc2,0xee,0xa4,0x25,0xf2,0x09,0x4f,0x2e,0x0d,0x29,0x25,0x73,0x2d,0x2c,0x67,0x69,0x52, - 0xbd,0x85,0xa0,0x9a,0xbd,0xb5,0xa0,0x9a,0xbd,0xaf,0x00,0x85,0x65,0x6e,0x04,0x45,0xf4,0xa6,0x40,0x2d, - 0xcd,0x3a,0x2b,0x0d,0x72,0x78,0x62,0x4a,0x49,0x28,0x89,0xa4,0x42,0x14,0x9c,0xb2,0x0c,0x88,0x8e,0x0b, - 0x5f,0x02,0x68,0x29,0x2b,0x01,0x8c,0x98,0x56,0x1a,0x48,0x22,0x6d,0x0d,0x14,0x4e,0x65,0x3e,0xda,0x4d, - 0xe0,0xac,0x8b,0x76,0x42,0xae,0x0f,0xbb,0x57,0x30,0x87,0x37,0xa1,0x94,0xd9,0x1b,0x39,0x39,0x45,0x48, - 0x79,0x55,0x52,0x71,0xed,0x98,0xe3,0xd6,0xd7,0x54,0x8f,0x7f,0xaa,0x94,0xaf,0x28,0x9f,0xce,0x7f,0x83, - 0x43,0x1e,0x13,0xcc,0xd1,0x6b,0xf1,0x93,0x82,0xf0,0x23,0x27,0xae,0xec,0x71,0x56,0xf4,0xea,0x94,0x39, - 0x62,0xe6,0xf2,0x5f,0x4f,0x85,0xbf,0xd9,0x8f,0xa7,0xa2,0x44,0xf9,0x96,0x91,0xe9,0x37,0x54,0xd9,0x21, - 0xf1,0xb7,0x53,0xb9,0xeb,0xd7,0xf0,0x93,0x4d,0x03,0x58,0x5a,0x00,0x34,0xec,0x9a,0x27,0xb0,0x00,0xac, - 0x53,0x3e,0xc3,0x65,0x8e,0x67,0x1b,0xb0,0x6a,0xd8,0xda,0x96,0xdc,0x65,0xdf,0x85,0xa2,0x2f,0xd8,0x43, - 0xd5,0x6a,0x55,0x7e,0xff,0x11,0xe7,0x7f,0xae,0x5f,0x77,0x9c,0xad,0xf7,0xdc,0x17,0x9e,0xec,0xdb,0xce, - 0x1d,0xfa,0x49,0xeb,0xff,0x00,0xe0,0x9d,0xad,0xd8,0xe8,0x3a,0x00,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xed,0x5b,0x59,0x57,0xe3,0x3a,0x12,0xfe,0x2b,0x6e, + 0xdf,0x99,0x81,0x9e,0x6e,0xc2,0xda,0xdc,0x86,0x01,0xe6,0x66,0x85,0x40,0x12,0x42,0x12,0xd6,0x97,0x39, + 0x8a,0xad,0xd8,0x02,0x6f,0x48,0x72,0x42,0xee,0xf2,0xdf,0x47,0x8b,0x17,0xd9,0xb1,0x93,0xd0,0xd3,0xe7, + 0x2e,0xe7,0x0c,0x0f,0x24,0x56,0x6d,0x9f,0xca,0x55,0xa5,0x92,0xec,0x9c,0x7c,0x68,0x5c,0xd7,0x47,0x8f, + 0xfd,0xa6,0x66,0x53,0xd7,0x39,0x3b,0x89,0xfe,0x43,0x60,0x9e,0x9d,0xb8,0x90,0x02,0xcd,0xb0,0x01,0x26, + 0x90,0x9e,0xea,0xb7,0xa3,0xd6,0xd6,0x57,0xfd,0xec,0x84,0x22,0xea,0xc0,0xb3,0x93,0xed,0xe8,0x53,0x30, + 0x79,0xc0,0x85,0xa7,0x3a,0xb5,0xa1,0x0b,0xb7,0x0c,0xdf,0xf1,0xb1,0xae,0x19,0xbe,0x47,0xa1,0xc7,0xe4, + 0x7e,0xd8,0x11,0x7f,0x7a,0x86,0x75,0x8a,0xe0,0x2c,0xf0,0x31,0x55,0xf8,0x66,0xc8,0xa4,0xf6,0xa9,0x09, + 0xa7,0xc8,0x80,0x5b,0xe2,0xe2,0x33,0xf2,0x10,0x45,0xc0,0xd9,0x22,0x06,0x70,0xe0,0xe9,0x2e,0x53,0xe1, + 0x20,0xef,0x45,0xc3,0xd0,0x39,0xd5,0x09,0x9d,0x3b,0x90,0xd8,0x10,0x32,0x1d,0x36,0x86,0x93,0x53,0x7d, + 0x1c,0x7a,0xa6,0x03,0x2b,0x06,0x21,0x8c,0x91,0x18,0x18,0x05,0x54,0x23,0xd8,0x48,0x08,0xcf,0x7c,0x7c, + 0x5b,0x12,0xd8,0x17,0x39,0xc7,0xb1,0x6f,0xce,0xcf,0x4e,0x4c,0x34,0xd5,0x90,0x79,0xaa,0x83,0x20,0xd0, + 0xe5,0xd5,0x74,0xcb,0x70,0x7c,0xf0,0x22,0x2f,0x0c,0x07,0x10,0x72,0xaa,0x7b,0x3e,0x45,0x13,0x64,0x00, + 0x8a,0x7c,0xaf,0xce,0x60,0x03,0xe4,0x41,0xac,0x97,0xb2,0xe8,0xda,0x71,0x34,0xfa,0x8b,0x06,0x31,0xf6, + 0xf1,0xb1,0xa6,0x92,0xb5,0x0f,0xa7,0x9a,0x17,0x3a,0x8e,0xf6,0x8f,0x7f,0x64,0xc6,0x2b,0x82,0x57,0xfb, + 0x4d,0x67,0x18,0xd0,0x24,0xab,0x32,0x96,0xd1,0xb5,0x9f,0x0c,0x07,0x19,0x2f,0x95,0x00,0xc3,0xa9,0xf0, + 0x9e,0x8d,0x4c,0xd8,0x53,0x8d,0x33,0x17,0x04,0xc0,0x8b,0x71,0xb9,0x90,0x10,0x60,0x41,0xfd,0xec,0x97, + 0x5f,0xb2,0xc6,0x22,0x82,0xf6,0xdb,0x6f,0xcc,0x35,0x4c,0x80,0x39,0x86,0x4d,0x27,0xfe,0x1f,0xfb,0xc5, + 0x28,0x9e,0x2d,0x77,0xa1,0x18,0x43,0xae,0x25,0x5d,0x6d,0x02,0x0a,0x8e,0x91,0xcb,0x34,0x6e,0x07,0x9e, + 0xf5,0xaf,0x31,0x20,0xf0,0xf0,0xe0,0x33,0xba,0xab,0x5d,0x0f,0x66,0x3b,0x57,0xe7,0x96,0x5f,0x65,0x7f, + 0xbd,0xe1,0xad,0xdd,0xbc,0xb5,0xd8,0xb7,0x06,0xbf,0xac,0xce,0xea,0xd5,0x47,0xf6,0x51,0x7b,0xa8,0x4e, + 0xdd,0x0b,0x3e,0x70,0xfe,0x30,0x68,0xdd,0x5f,0x0c,0x46,0xe3,0xbd,0xa7,0x1d,0x73,0xaf,0x35,0x7f,0xba, + 0xa9,0xd5,0x9e,0xce,0x8f,0xd0,0xd3,0xb0,0x76,0x39,0xbe,0x6f,0x79,0x4f,0x77,0x97,0xce,0xe3,0xfd,0xe0, + 0x8b,0x61,0x38,0x4e,0x9f,0x0b,0x3c,0xd4,0x2e,0x07,0xcd,0xd6,0x2d,0xec,0x61,0x72,0x6f,0x36,0x7b,0xd6, + 0x73,0xf5,0xa6,0x63,0x3c,0xd6,0x8c,0x6a,0xdf,0xa8,0xd6,0xcd,0x9b,0xde,0x41,0xb5,0xb7,0xd7,0xad,0x1f, + 0x58,0x03,0xf2,0x78,0x79,0xd4,0xec,0x99,0xd5,0xfe,0x63,0xb5,0x01,0xaa,0x0d,0x18,0x98,0xb7,0x76,0x77, + 0xf7,0xb5,0xf5,0x1c,0x62,0x2b,0x38,0x1a,0x1a,0xdd,0x0b,0xcb,0xfc,0x71,0x77,0xff,0x6e,0x7f,0x42,0x6f, + 0x83,0x2f,0xf0,0xc2,0xea,0xb6,0x76,0x31,0x3e,0x6f,0x82,0xf0,0xf0,0xee,0xa2,0xb1,0x77,0xd1,0x1d,0x5f, + 0x7c,0x79,0xbd,0xbc,0xee,0x5c,0x60,0xf0,0x69,0xf2,0xf2,0xf3,0x98,0x3c,0x0e,0x88,0xdd,0xfd,0x1a,0x74, + 0x46,0xd6,0x6d,0xdb,0x1a,0x5a,0xd3,0xb0,0xdb,0xf5,0x1f,0x67,0x9f,0x50,0xf7,0x71,0x84,0x0f,0x6f,0xec, + 0xde,0x63,0x17,0xf7,0x50,0x6f,0x3e,0x6b,0x77,0x9c,0xf9,0xdd,0x95,0x69,0xcc,0xe7,0x7d,0xe2,0x1a,0x03, + 0x32,0xbf,0xfd,0xb2,0xf3,0x62,0x5d,0xd0,0x9b,0x9b,0x70,0xaf,0x6a,0xf6,0x2e,0x5b,0x41,0xe3,0xa5,0x7a, + 0x75,0xd0,0xde,0xee,0xb4,0xef,0xbb,0xe3,0xbd,0x2a,0x69,0xd7,0x8c,0xd7,0x1d,0x34,0x38,0x87,0x37,0xe7, + 0xfd,0xd1,0xd3,0xe4,0xee,0xf0,0xa6,0xb9,0xf3,0xc9,0x6a,0x9c,0xb7,0xf6,0xb0,0x4f,0xce,0x9b,0x56,0xf7, + 0xe6,0xad,0x5d,0xb5,0xbd,0xa7,0x2a,0xea,0xf7,0xbe,0x1e,0x84,0xc1,0x60,0xb2,0xb3,0x7d,0xed,0x04,0xa4, + 0x53,0xaf,0x05,0xfb,0xf3,0xd7,0x1d,0xc3,0xb6,0x68,0xfd,0xf6,0xf6,0x09,0x0f,0x66,0x87,0x37,0x8d,0xeb, + 0xfd,0xe6,0xfd,0xc5,0xf0,0xb5,0x75,0x44,0x01,0x7e,0x02,0xc3,0xab,0xcb,0x07,0x78,0xd9,0x30,0xc7,0x37, + 0x0e,0x69,0xee,0x5c,0x35,0x0e,0x2f,0x7b,0xdb,0x57,0xfe,0x80,0x9c,0xdb,0x6f,0x0f,0x57,0x75,0xa7,0x7e, + 0x75,0x71,0xd9,0x9e,0xbc,0x8c,0xec,0x59,0xf7,0xde,0xae,0x1e,0x9a,0xb5,0xa1,0xef,0x0c,0xd0,0xf3,0xcb, + 0xe5,0xb5,0xb9,0xfb,0x74,0x3b,0x3d,0x9a,0xdf,0x1c,0x5d,0x07,0xaf,0xe3,0x8b,0x00,0x81,0xdb,0x3b,0xd0, + 0x1c,0x3f,0x35,0x7f,0xa4,0xed,0xf6,0xb3,0x5f,0xbb,0x7a,0x98,0x13,0x9f,0xec,0x1a,0x07,0x77,0x5f,0xe1, + 0xb8,0xd3,0x34,0xc7,0xd3,0xbd,0xb1,0xd1,0x25,0xcd,0x1f,0xad,0xe7,0xb0,0x66,0x4e,0x1f,0x06,0xc3,0xcb, + 0x83,0xd6,0xa7,0xed,0xd9,0x6b,0xfb,0xe1,0x01,0xb7,0xcf,0x67,0xee,0xc3,0xfe,0xcf,0x33,0x60,0x74,0x1a, + 0x36,0xec,0x5d,0x1f,0xed,0x5e,0x3f,0x77,0x6e,0xae,0xcc,0xdd,0x83,0xbb,0x6e,0xa3,0xee,0x3d,0x5a,0xf5, + 0xb7,0xbb,0xe7,0xf6,0x7e,0x6f,0x04,0x77,0xdd,0xa1,0xdf,0x6f,0x1c,0x1c,0xbd,0x1d,0x0c,0x31,0x0b,0x8e, + 0xa3,0xd7,0xbe,0x77,0x00,0xfd,0x69,0xbd,0x2b,0xa2,0xa7,0xe9,0xb4,0x46,0x2f,0xc3,0xf0,0xc6,0xad,0xd7, + 0x59,0x24,0xda,0xbb,0x3c,0xc4,0xff,0x46,0x37,0x37,0x44,0x7d,0xda,0xf8,0x28,0x22,0x9b,0x8d,0x9e,0xd8, + 0x7b,0x9c,0x32,0x85,0x98,0xf0,0xb8,0x27,0x73,0x42,0xa1,0xdb,0x6e,0xb0,0x8c,0x8a,0xd2,0xf0,0xdf,0x42, + 0x2a,0x1e,0x67,0x82,0x9f,0xb4,0x8d,0x63,0x6d,0x83,0x7d,0x2c,0xc8,0xb0,0xe1,0x0d,0xa9,0x77,0x2f,0x93, + 0x0f,0x33,0x96,0x57,0x84,0x02,0x1a,0x92,0x6c,0x9e,0xb0,0xf4,0xf1,0xa0,0x11,0xa5,0xa5,0x32,0x8e,0x3c, + 0x93,0xe7,0x21,0x2f,0x97,0xc7,0x3c,0x73,0xb6,0xa4,0xb0,0x54,0x34,0x14,0xdf,0x2b,0x20,0xa8,0x40,0x0f, + 0x8c,0x1d,0x68,0x32,0x84,0x1b,0x91,0x26,0x68,0x6e,0x70,0x10,0x26,0x22,0xe9,0x80,0x1e,0x25,0x6d,0x34, + 0x7d,0x55,0x85,0x61,0xb0,0x2c,0x0f,0x7c,0xe4,0xd1,0x4a,0xea,0x15,0x8d,0x31,0x96,0xd9,0xc9,0x8e,0xa3, + 0x80,0x19,0x5b,0xa2,0x93,0xc1,0x10,0x82,0x91,0xb3,0x93,0xca,0xf1,0xad,0xb3,0xb7,0x20,0xbd,0x47,0x2d, + 0x61,0x89,0x09,0x49,0x83,0x9b,0x1f,0xcb,0xe7,0x47,0x24,0xa3,0xeb,0x9b,0x30,0x37,0xbf,0x22,0x4d,0x23, + 0xf8,0x46,0x37,0x15,0xa4,0xf9,0x7a,0x27,0xab,0x2e,0x2b,0xfe,0x26,0xf2,0x2c,0x3d,0x06,0x1b,0x5f,0xc7, + 0xe6,0xa3,0xeb,0xc4,0x52,0x74,0xdd,0x8e,0xe7,0x94,0xf5,0x84,0xd4,0xf9,0x21,0x51,0xa2,0xba,0x81,0x82, + 0x31,0x0f,0x17,0x10,0x5f,0x8f,0x43,0x4a,0xb3,0x8b,0xc7,0x06,0x60,0xde,0x9b,0x42,0x16,0x8d,0xf2,0xcb, + 0x08,0x8c,0x35,0x16,0xb5,0x1b,0xd2,0x5f,0x1b,0x7c,0xa9,0x90,0xcb,0x01,0x5b,0xc0,0x52,0x86,0x84,0x9e, + 0x60,0x96,0xd7,0x15,0x66,0x70,0xa4,0xe4,0x06,0xf8,0x26,0xdb,0x14,0x23,0xcb,0x62,0x79,0x51,0x6e,0x3d, + 0xe1,0x48,0xec,0xc7,0x23,0xdf,0x07,0x41,0x1a,0x56,0xe5,0x18,0x14,0x9e,0x04,0x45,0x3a,0xf6,0x7d,0x70, + 0xc8,0xaa,0xb0,0xe4,0x2e,0x48,0x7a,0x7a,0x17,0xc4,0x75,0x81,0xed,0x7c,0xb8,0x14,0xde,0x6c,0x5e,0xe2, + 0xf6,0xf3,0x37,0x54,0xad,0x74,0xfb,0x67,0x27,0x98,0x45,0x99,0xaf,0x1d,0x8b,0xe1,0x53,0x5d,0x61,0x04, + 0x8e,0x33,0xa4,0x30,0x20,0x23,0x1c,0x32,0x7e,0xde,0x60,0xf0,0x9c,0x61,0xcd,0x54,0x4c,0x60,0xf3,0xe5, + 0xcb,0x3d,0x65,0x74,0x9e,0x6e,0x42,0xd1,0x1a,0xfa,0x5a,0xc0,0x21,0x4b,0x15,0x4e,0x38,0x83,0xa2,0x51, + 0x09,0x7f,0xe2,0xb0,0xce,0x05,0xe7,0x0a,0x26,0xf3,0x50,0x10,0xf7,0x3f,0x89,0xaa,0x6c,0x47,0x33,0x05, + 0x4e,0x28,0xfb,0x99,0x2e,0xa0,0x76,0x65,0xe2,0xf8,0x3e,0xde,0x8c,0x79,0xef,0x38,0x51,0xdb,0xd6,0xf6, + 0xbe,0x7c,0xd1,0xfe,0xa9,0xed,0xee,0xec,0x70,0xe7,0xfc,0x3d,0xee,0x70,0x16,0xac,0xab,0xed,0x0d,0xf2, + 0x82,0x90,0x6a,0x74,0x1e,0xb0,0xa9,0x62,0xe0,0xb1,0x9e,0x49,0x73,0x91,0x77,0xaa,0xef,0xb0,0x4f,0xf0, + 0x76,0xaa,0x33,0x95,0x7a,0x56,0x3a,0x99,0x76,0xc5,0x0b,0xdd,0x31,0xc4,0x29,0xe4,0x3b,0x89,0x71,0xa1, + 0xc4,0x14,0xcc,0xf2,0x43,0xea,0xb1,0xe9,0xd6,0xc4,0x67,0x4a,0x36,0x39,0xf9,0xb3,0xc6,0xaa,0x24,0x7c, + 0xfb,0xc8,0x3e,0x34,0xb2,0xae,0x17,0x38,0x63,0x65,0xfa,0xc7,0xba,0x20,0xc5,0x90,0x9b,0x7f,0x71,0xb9, + 0x2d,0x29,0x2e,0x4c,0x96,0xf9,0xc2,0xd5,0x7e,0x22,0xe1,0xd8,0x45,0x34,0x6d,0x77,0x59,0xa3,0xee,0xcc, + 0x47,0xc8,0x85,0xa3,0x88,0x35,0x93,0x17,0x69,0xa1,0xe1,0x1c,0xb9,0xec,0x30,0x6c,0x68,0xbc,0x24,0x78, + 0xc7,0xbe,0xef,0x40,0xe0,0xf1,0x98,0x57,0x64,0xe2,0xa5,0x50,0xcf,0x44,0x7d,0x86,0xa5,0xe9,0x45,0x6b, + 0x1e,0x9f,0x9f,0xd0,0xa9,0xce,0xa7,0x58,0x5b,0xb6,0x59,0x00,0xd8,0x13,0x2b,0x4c,0x14,0x00,0x8b,0x0b, + 0x5a,0xb2,0x20,0xff,0xfa,0xab,0x56,0x40,0x95,0x49,0xc8,0xb7,0x04,0xfb,0x05,0x25,0x96,0xd9,0x6d,0xb3, + 0x9d,0x15,0xf6,0x20,0x55,0xd7,0x65,0x07,0x8c,0xa1,0xa3,0x89,0x00,0x13,0xce,0x61,0xf7,0x97,0x20,0xae, + 0x8e,0x3b,0xb3,0x58,0x4d,0x96,0x27,0x52,0x26,0xf4,0x64,0x43,0x45,0xde,0x7a,0x5d,0x6c,0x18,0x0a,0x74, + 0x2f,0x84,0x48,0xd6,0x47,0x34,0x87,0x44,0x22,0x3d,0x1b,0x40,0x0b,0x3a,0x24,0xb1,0x57,0xe6,0xe1,0xe4, + 0xca,0x81,0x9e,0x45,0xed,0x64,0x13,0x27,0x33,0x29,0xa2,0xaa,0xc9,0x54,0x2c,0x9e,0x84,0x35,0x4b,0x12, + 0xe8,0x64,0xef,0x97,0x18,0xda,0x4a,0xb6,0x3c,0xcb,0xc3,0x68,0x8d,0x00,0x8a,0x22,0xb7,0x28,0x8e,0xd4, + 0x0c,0x07,0x62,0xa9,0x92,0x1d,0x82,0xdc,0xe7,0xfe,0xb0,0xb8,0xfb,0x63,0x10,0x20,0x85,0x4a,0x3e,0x6c, + 0xca,0x99,0x16,0xdf,0xd0,0x86,0xe0,0x56,0x16,0x9e,0x85,0x9a,0x60,0xb0,0xc9,0xe0,0xf2,0xc2,0x25,0x5d, + 0xc1,0xb7,0xce,0xbc,0x1c,0x31,0x6d,0x06,0x2d,0xbb,0xbb,0xb1,0x6b,0x47,0x2c,0x44,0xf4,0xb4,0xf3,0x63, + 0xfb,0x78,0x7e,0x8f,0xfd,0x40,0xec,0x6a,0x45,0x9d,0xe0,0xf5,0xa5,0x10,0x6e,0x0b,0xbd,0x41,0x53,0x09, + 0x3d,0x29,0x94,0x17,0xde,0x2d,0x16,0x1e,0x86,0x1e,0x46,0x64,0xb9,0xe8,0x5e,0xa9,0x28,0x49,0x92,0x27, + 0x96,0xdc,0x96,0xd3,0x5d,0x39,0xed,0x49,0x0c,0x3a,0x3f,0xe9,0x6c,0xf8,0xaa,0xee,0xe1,0xa5,0x6f,0x47, + 0x71,0xca,0x56,0x92,0xa5,0x3c,0x60,0x13,0x85,0x7c,0x4d,0x8d,0x80,0xd3,0x38,0x67,0x59,0x9f,0xdb,0x40, + 0x24,0x70,0x80,0xa8,0x89,0x9b,0x7c,0xfc,0xb3,0x26,0x16,0xdd,0x6f,0x43,0x8f,0xa1,0x03,0x44,0x41,0x2e, + 0x9e,0x00,0xcb,0x48,0x58,0x86,0x53,0x15,0x5d,0x1b,0x2a,0x6f,0x38,0x4a,0x90,0xaa,0x15,0x13,0xc2,0x17, + 0x13,0xcc,0xc9,0xea,0xec,0x73,0x7d,0x8f,0x31,0x2e,0x49,0xbe,0xae,0x60,0xc8,0x24,0xdd,0x0a,0x95,0x34, + 0x84,0x64,0xb9,0xce,0x91,0xe4,0x78,0x8f,0xd2,0x19,0x34,0xbd,0x55,0x6a,0xef,0x63,0x9e,0x77,0xa1,0xb5, + 0x43,0xbc,0x0a,0x6e,0xc4,0xf2,0x1e,0xb5,0x13,0x8c,0x96,0x2b,0x6d,0x09,0x86,0xf7,0xa8,0x24,0x6c,0x11, + 0xc3,0xcb,0x95,0x0e,0x23,0x96,0x77,0xa9,0x0d,0x57,0x44,0xc0,0x30,0x5c,0x88,0x80,0xe2,0x06,0x6d,0x8d, + 0x86,0x2b,0x36,0x3a,0x66,0x9f,0x36,0x65,0x77,0x8b,0xfc,0x71,0x8d,0xd7,0x22,0x96,0x25,0x0d,0x98,0xda, + 0x86,0xf1,0xa4,0x4e,0x8f,0x31,0xf9,0x86,0xbc,0xb8,0x2c,0xf6,0xfc,0x06,0xa3,0x95,0xec,0xf5,0xe5,0xb6, + 0x89,0x9b,0x94,0xdf,0xb2,0xe3,0x5b,0x01,0x46,0x2e,0xc0,0x73,0x2d,0xba,0xf4,0x43,0x2a,0x4b,0xca,0x71, + 0x7c,0x84,0xc0,0xe6,0x05,0xa6,0xa2,0x2b,0xca,0x2f,0x71,0xc0,0x34,0x95,0xf5,0xad,0x18,0x5a,0xd5,0x8c, + 0xcf,0x20,0xa4,0x81,0xd2,0x05,0x2c,0x85,0x29,0x5d,0x5e,0x88,0x52,0x8f,0xee,0x84,0xec,0x3d,0x0b,0x41, + 0xc6,0xd5,0x4d,0x5e,0x47,0x47,0x48,0xa2,0x37,0xad,0x09,0x55,0x43,0x31,0xce,0x30,0x1d,0xe7,0x29,0x1b, + 0x1f,0xd3,0xdb,0xc2,0x5b,0xdc,0xa5,0x8d,0x6e,0xd7,0x17,0x7d,0xd1,0xd2,0x56,0xd7,0x95,0x3c,0xef,0x6c, + 0x76,0xa5,0xd4,0x8a,0x6e,0x45,0x32,0xad,0xd9,0xf0,0xe6,0x34,0xbe,0x17,0x42,0x23,0xc4,0xcc,0x63,0xea, + 0x9d,0x5e,0x03,0xd3,0x82,0x50,0x06,0xa4,0xd2,0xf2,0x46,0x4e,0x5a,0xd1,0xf4,0x16,0x71,0xad,0xd7,0xf6, + 0x16,0xea,0x2f,0x6f,0x7c,0xa3,0xa9,0x7f,0x73,0xeb,0x9b,0xc8,0x7f,0x6b,0xf3,0x9b,0x53,0xf0,0x7b,0xb5, + 0xbf,0xae,0x1a,0xcf,0xdf,0xb1,0x01,0xce,0xe4,0x49,0x69,0x0b,0x2c,0xad,0x7f,0xdf,0x26,0x58,0xc6,0xd8, + 0xb1,0xf0,0xf8,0x86,0x34,0xc0,0x4f,0x8e,0x05,0x04,0x7e,0x90,0xfc,0x9f,0x00,0x79,0x05,0x07,0x61,0x92, + 0xb3,0xcf,0x68,0x2b,0xc3,0x4b,0x9c,0xa3,0x94,0xab,0x2e,0x5d,0x07,0x18,0x75,0x1d,0x7c,0x26,0xc2,0xf9, + 0x83,0xb2,0xbc,0xc3,0x12,0x8e,0x0c,0xd6,0xa8,0x93,0x2c,0x87,0xa7,0x68,0x2e,0x05,0x99,0xf0,0x2c,0xec, + 0x09,0x0a,0xda,0xfa,0x1c,0x9c,0x9e,0xf2,0x1d,0x38,0xef,0x6d,0xf4,0x73,0xca,0x46,0x7e,0xd0,0xf0,0x67, + 0xde,0x52,0x2d,0x05,0xbb,0xed,0x9c,0x96,0x9a,0xcf,0x4a,0xbc,0x7b,0x1b,0x94,0xed,0x1d,0xfe,0xdf,0x62, + 0x94,0xb7,0x18,0xd2,0x95,0x7f,0x5c,0x93,0x91,0xa9,0x21,0x65,0xf0,0xfe,0xd2,0x8d,0xc6,0xf2,0xb3,0xb7, + 0xcc,0x91,0xf9,0xb2,0xa6,0xa4,0xae,0x3e,0xd6,0x49,0x1b,0x12,0xf5,0x78,0x7d,0xbd,0x66,0x44,0x91,0x50, + 0x9e,0x2a,0x65,0x97,0x8e,0x62,0x9e,0xd2,0x35,0xc3,0xe6,0x0a,0x0a,0x10,0x29,0xb2,0x17,0x42,0x5e,0x79, + 0xee,0xbd,0x1a,0x5d,0x74,0xf0,0x56,0x8a,0x4c,0x79,0x0e,0xf5,0x6e,0x64,0x8a,0xec,0x02,0x32,0xa5,0x81, + 0x21,0x04,0x99,0x85,0xe2,0x6c,0xbc,0x7c,0x0d,0xa1,0xf0,0x8d,0xca,0x06,0x45,0xc8,0xa7,0xc7,0xf4,0x39, + 0x0d,0x99,0xd0,0xfb,0x50,0x30,0xf3,0x0c,0x96,0x80,0x4d,0x68,0xe6,0xe3,0x42,0x3c,0x31,0xad,0x1c,0x53, + 0x22,0x2d,0x70,0xa5,0x57,0x45,0xd8,0x52,0xea,0x4a,0x7c,0xab,0xef,0xa2,0x69,0x1b,0xc1,0x4a,0x45,0x65, + 0xb7,0x98,0x0b,0xbf,0xfb,0xde,0x72,0xa1,0x85,0x9b,0xaa,0x56,0xe9,0x70,0x2c,0x97,0x08,0x92,0x75,0x30, + 0x0a,0x8a,0xb4,0xa1,0x80,0x55,0x29,0xcc,0xc2,0x78,0x9d,0xfb,0x8d,0x82,0x62,0x8f,0xa2,0x95,0x2e,0xe0, + 0x87,0xce,0x79,0xaf,0x65,0x43,0x31,0x1c,0x7b,0x90,0xba,0x80,0xbc,0x14,0x06,0x64,0x42,0x5d,0x2b,0x2c, + 0x53,0x5d,0xc5,0xc1,0xa9,0xd0,0xff,0x47,0xd8,0x16,0xa0,0x70,0x06,0xe6,0x45,0x98,0x23,0xd2,0x3a,0x80, + 0x63,0x2d,0x85,0x68,0x13,0xe2,0xb7,0x40,0x5d,0x38,0xa6,0xb7,0x7d,0x42,0xf9,0x4b,0x53,0x45,0x88,0x63, + 0xda,0x2a,0xc8,0xc7,0x81,0x03,0x0c,0x68,0xfb,0x8e,0xc9,0xd7,0xef,0x12,0x25,0xfd,0x94,0x87,0x3f,0xcb, + 0xe3,0xd3,0x4c,0x6c,0x17,0xce,0x33,0xa5,0xae,0x4c,0xcb,0xbf,0xf4,0x92,0x98,0x3c,0xc1,0x2d,0x59,0x0e, + 0xc3,0x80,0x3f,0xd8,0x6f,0x21,0xec,0xce,0x00,0x86,0x51,0x44,0x0b,0x99,0xec,0xd3,0x5a,0xf9,0xe0,0x77, + 0x12,0xf1,0xe5,0xb7,0xea,0xea,0x5d,0x9b,0x20,0x27,0xd2,0x13,0x73,0xb7,0xf8,0xc8,0x9f,0xd7,0x8f,0xa9, + 0xeb,0xa4,0x33,0xfa,0xd8,0xb7,0x78,0x8d,0x12,0xaf,0xd7,0x44,0x4f,0x7f,0x99,0x1b,0x72,0x44,0xd1,0xb4, + 0xae,0x79,0x06,0x32,0x94,0x0e,0x5d,0xe1,0x5c,0x8f,0x06,0x79,0xbf,0xfe,0x99,0x1e,0xb9,0x31,0x78,0x43, + 0x88,0xa7,0x4a,0x63,0x99,0xe2,0x96,0x84,0x75,0x8a,0x4f,0xaa,0x25,0x4d,0xcb,0xbc,0x1e,0x3d,0x6f,0x57, + 0x20,0x63,0xb7,0xba,0xc0,0x72,0x4c,0x5a,0xef,0x8c,0x43,0xd5,0x55,0x64,0x3f,0x35,0xa4,0x22,0x70,0x00, + 0x2d,0xb0,0xdc,0x01,0x74,0x9d,0x09,0x73,0xe1,0x05,0x53,0x42,0xe3,0xef,0x6d,0x42,0x79,0x03,0x48,0x31, + 0x11,0xbd,0x07,0xb4,0xca,0x84,0x8c,0xbc,0x9c,0x89,0xfc,0xeb,0x40,0x65,0xcd,0x80,0xe3,0xc7,0x6f,0x95, + 0xc6,0x6f,0x24,0x71,0xda,0x56,0xfc,0x28,0x6d,0x11,0x54,0xc4,0xbf,0x16,0xb2,0x44,0x77,0x02,0x2f,0x19, + 0x3a,0xd3,0x0a,0x77,0x59,0x0b,0xbb,0xab,0xfc,0x56,0x8a,0x40,0x80,0x0d,0xbb,0x93,0x68,0x56,0x2b,0x8f, + 0x20,0xb1,0x44,0x4c,0xa8,0xe5,0xf0,0x87,0x82,0xb7,0x70,0xb3,0xb5,0x90,0xfc,0x01,0xf2,0x48,0x3e,0xfb, + 0xd5,0x7e,0x15,0x79,0x9d,0x66,0xa3,0xda,0xcf,0x5b,0x8b,0xc7,0xd7,0x0b,0xff,0x44,0xcb,0xe2,0x2b,0x0f, + 0x29,0x8a,0x0a,0x9b,0x27,0x37,0xb4,0x68,0x7e,0x38,0xaa,0x16,0xdb,0x67,0x84,0xf7,0x00,0xe0,0x7a,0x56, + 0x21,0x10,0xb6,0x72,0x10,0xaa,0x7d,0x59,0xbb,0x0b,0x40,0xc4,0xa4,0xb5,0x61,0x24,0xba,0x96,0x02,0x01, + 0x41,0x6c,0x31,0x07,0xa5,0x7f,0xdf,0x6d,0x60,0xb6,0xcc,0xe2,0x61,0xa3,0xc8,0x27,0x2a,0x79,0x6d,0x48, + 0x19,0x9d,0x4b,0x61,0x05,0x33,0x57,0xd8,0x2d,0x05,0x55,0xef,0x2c,0x05,0x55,0xef,0x7c,0x03,0x28,0xa6, + 0x73,0x25,0x28,0x6e,0x37,0x03,0x6a,0xe6,0x56,0x65,0xc3,0xbf,0x80,0x27,0xa1,0xac,0x09,0x25,0xd5,0x54, + 0x8a,0x42,0x31,0x96,0x03,0xd1,0xc2,0xf0,0x35,0x84,0x9e,0x31,0x2f,0x80,0x91,0xd0,0xd6,0x06,0x92,0x6a, + 0x5b,0x02,0x45,0x31,0xb9,0x98,0xed,0x2e,0x08,0x96,0x65,0x3b,0x27,0x57,0xfb,0xed,0x2b,0xb8,0x80,0x37, + 0xa5,0xac,0x53,0x1b,0x15,0x3d,0x65,0x48,0x55,0x53,0x5a,0xf9,0x8e,0x70,0x81,0xdb,0x5e,0xb2,0x27,0xfc, + 0x53,0x75,0x77,0x99,0x2e,0x79,0xf1,0xfd,0x5e,0x7e,0x4e,0x3e,0x41,0x6f,0xe5,0x47,0xe5,0xd1,0x0b,0xd4, + 0xca,0x0e,0x26,0x98,0x8b,0xb3,0x43,0x39,0xfb,0x31,0x56,0xdf,0xcc,0x8e,0x3e,0xf3,0x2f,0x66,0xc7,0x8d, + 0xf0,0x9d,0x24,0x8b,0xf7,0xb3,0xf3,0x22,0xc9,0x7b,0xd9,0x0b,0xe7,0x8f,0xd1,0xcf,0x41,0x1c,0xe0,0x59, + 0x21,0xb0,0x98,0x3f,0x9e,0xc1,0x14,0xc8,0x41,0xfd,0x8c,0xed,0x58,0x88,0xef,0xc0,0x8a,0xe3,0x5b,0x9b, + 0x7a,0x5b,0xfe,0xe6,0x04,0xfd,0xcc,0xdc,0x52,0xa9,0x54,0xf4,0x8f,0x9f,0x59,0xd3,0x87,0x69,0x35,0x08, + 0x36,0x3f,0x2a,0xbf,0x1e,0x91,0xbf,0x1b,0xd9,0x16,0x3f,0x97,0xf9,0x2f,0x83,0x55,0x73,0xdc,0x44,0x33, + 0x00,0x00}; #endif diff --git a/src/assets/js.h b/src/assets/js.h index c3116d1..b3b98e4 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,1148 +4,1148 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x09,0x77,0xdb,0x46,0xb2,0x36,0xfc,0x57, - 0x24,0xbc,0xbe,0x34,0x30,0x6a,0xd1,0x92,0x93,0xcc,0x9d,0x80,0x46,0xf8,0x7a,0x8d,0x9d,0x78,0x1b,0x5b, - 0x59,0x66,0x14,0x5d,0x1d,0x88,0x04,0x25,0xc4,0x24,0xc0,0x00,0xa0,0x96,0x88,0x7c,0x7f,0xfb,0x57,0x4f, - 0x55,0x6f,0x00,0x21,0x27,0x99,0x73,0xcf,0x77,0x7c,0x2c,0x02,0xdd,0x8d,0x5e,0xab,0xab,0x6b,0xef,0xdd, - 0xd9,0xaa,0x98,0x34,0x79,0x59,0x84,0x99,0x6a,0xa2,0xdb,0xa0,0x3c,0xfb,0x35,0x9b,0x34,0x41,0x92,0x34, - 0x37,0xcb,0xac,0x9c,0xed,0x64,0xd7,0xcb,0xb2,0x6a,0xea,0xc1,0x60,0x2b,0x67,0x51,0x4e,0x57,0xf3,0x6c, - 0x2c,0x3f,0x43,0x5d,0x2e,0x69,0xc2,0x28,0x0e,0x4c,0x9d,0xae,0xf0,0x34,0x9b,0xe5,0x45,0x36,0x18,0xc8, - 0xef,0x30,0x5d,0x4c,0xc7,0xf2,0x18,0x1e,0x9f,0x50,0xbb,0xf1,0x5d,0xed,0x8e,0xf5,0xef,0x30,0xbd,0xce, - 0x4b,0xa9,0x3d,0x73,0xcf,0x9b,0xb0,0xb9,0xc8,0x6b,0x65,0x87,0x10,0xdd,0x56,0x59,0xb3,0xaa,0x8a,0x1d, - 0x37,0xa8,0xe8,0xd6,0x3c,0xef,0x34,0x61,0x15,0xdd,0xe6,0xb3,0xb0,0x38,0xae,0x4e,0x22,0x5d,0x10,0xcf, - 0xa6,0xef,0xa3,0xcb,0xb4,0xda,0xc9,0x13,0x24,0x25,0xb7,0x3a,0x2d,0xbe,0xdd,0xa8,0x7c,0x1a,0x57,0x6a, - 0x5e,0xa6,0xd3,0x6c,0x1a,0xef,0x1e,0x6e,0x46,0xfa,0xd3,0x0c,0x9f,0x4e,0xd2,0xf9,0x3c,0xcc,0x4d,0x0d, - 0x2a,0x57,0xee,0xb9,0x89,0xe8,0x45,0x3e,0x4b,0x76,0x0f,0x5c,0xc6,0x06,0xcd,0x14,0xc9,0xad,0xad,0xa8, - 0x19,0x2e,0x12,0x9a,0xfc,0xe1,0x24,0x29,0xe8,0xef,0x32,0x09,0x02,0xd5,0x84,0x07,0x34,0xb8,0x63,0x7f, - 0x6d,0x54,0x11,0xdd,0xba,0x69,0x2e,0xc2,0xc3,0x68,0xa3,0xba,0xf9,0xc1,0xaa,0xce,0x76,0xea,0xa6,0xca, - 0x69,0x26,0x47,0x76,0xdc,0x15,0x66,0x01,0x8d,0x36,0x49,0x91,0x5d,0xed,0xa4,0xf4,0xaa,0x8a,0xa4,0x0c, - 0xd3,0xe1,0xb2,0x2a,0x9b,0x12,0x13,0x3e,0xac,0xb2,0xdf,0x56,0x59,0xdd,0x50,0xa7,0x4d,0xaf,0xd0,0xdf, - 0x26,0x2b,0xa6,0x61,0xa1,0xbc,0x82,0x32,0x2a,0x9b,0x43,0x6f,0xc5,0x46,0x4f,0x5b,0xf8,0x30,0x52,0x25, - 0xfd,0x7c,0x11,0xa9,0x94,0x7e,0xbe,0x8a,0x14,0xba,0xf9,0xf7,0x48,0x4d,0x92,0x2a,0xac,0xa3,0xd1,0x64, - 0xf8,0x98,0xd7,0x2d,0x55,0x93,0xe1,0xa4,0xca,0xd2,0x26,0x4b,0xfc,0x65,0xd2,0xcd,0x56,0x34,0x9b,0x8b, - 0xac,0x3a,0xcf,0xc2,0x5a,0x65,0x11,0x8d,0x71,0x32,0x7c,0x9a,0x16,0x93,0x6c,0x8e,0x06,0xa8,0x6a,0xf3, - 0x7a,0x54,0x7e,0xca,0x0a,0xa4,0x7d,0x89,0xb4,0xbc,0x76,0x85,0x0e,0x90,0x40,0xcb,0xd2,0x57,0xfb,0xfb, - 0xaa,0x5c,0xe4,0x75,0x86,0x6c,0x4a,0x45,0xe5,0xf5,0x92,0xba,0x32,0xc5,0x77,0xd4,0x61,0x37,0xbf,0x13, - 0xf7,0x3c,0x24,0x40,0x4d,0x57,0xf3,0x26,0x99,0xfc,0xa5,0x09,0x97,0x16,0x83,0x63,0x01,0xec,0x9d,0xc7, - 0x55,0x95,0xde,0x9c,0x10,0x7c,0x27,0x2b,0x01,0x1a,0x6a,0xde,0x7e,0x90,0x7b,0x5d,0x2c,0x56,0xf3,0xf9, - 0x6e,0x92,0x64,0x3d,0x3b,0x2e,0x73,0x5f,0x94,0x3d,0x4d,0xbc,0xd0,0x99,0x77,0xb5,0x92,0xca,0x16,0xc7, - 0x0e,0xb0,0x6d,0x5c,0x96,0xf9,0x74,0xe7,0x00,0xcf,0x11,0xa5,0x9b,0x16,0x77,0x6d,0x8b,0x83,0x41,0x98, - 0x25,0xc7,0xd9,0x49,0xa4,0x30,0xa8,0x68,0x56,0x56,0xa1,0x80,0x2f,0x01,0x74,0x92,0x0d,0xe7,0x59,0x71, - 0xde,0x5c,0x8c,0x8a,0x47,0xf9,0xa8,0xd8,0xdb,0x8b,0x1a,0x69,0x14,0xd5,0xab,0xec,0xb8,0x38,0x51,0x05, - 0xad,0xe1,0x28,0x9b,0xd3,0x24,0x99,0x2f,0xcb,0x9d,0x9c,0xb6,0x4e,0xf4,0x8e,0x1b,0xf2,0x00,0xf0,0x22, - 0xad,0xdf,0x5d,0x15,0xb4,0x3e,0xcb,0xac,0x6a,0x6e,0x74,0xe7,0x55,0x19,0x0d,0x06,0xed,0x4a,0xcb,0x13, - 0x55,0x52,0xa5,0x0c,0x74,0xb5,0x40,0x1b,0xed,0x9b,0x90,0xa0,0x60,0x95,0x6c,0x55,0xda,0x94,0x1f,0x69, - 0x6d,0x8a,0xf3,0x91,0x5b,0xd8,0xdb,0xbc,0xe6,0xa5,0xa0,0x2d,0xad,0x9f,0x9e,0xac,0x66,0xb3,0xac,0x8a, - 0xb7,0xa1,0xa5,0xbd,0x76,0x52,0xac,0x33,0xb7,0x54,0x87,0xfe,0x7c,0x42,0x8f,0x2f,0xca,0x6a,0xf1,0x2c, - 0x6d,0xd2,0xbe,0xba,0x56,0x85,0xe0,0xbb,0xa9,0x9b,0x5c,0x53,0x7c,0x30,0xc8,0x68,0x52,0xea,0x06,0x10, - 0xec,0x25,0x6f,0xda,0x1d,0xfc,0x31,0xcf,0xae,0xfe,0x64,0xc5,0xde,0x57,0x83,0x81,0xf7,0x42,0xdb,0x04, - 0xb5,0x8c,0xb7,0x93,0xa8,0xbe,0x98,0xd6,0x3a,0x1b,0x9e,0xe9,0xaf,0xcc,0x93,0xdf,0x31,0xef,0x33,0xf4, - 0x4d,0xa6,0xb6,0xaf,0x4b,0x35,0xe7,0xf8,0x70,0x4b,0xc5,0xdf,0xae,0x16,0x67,0xfd,0xd3,0x5c,0x70,0x4e, - 0xa7,0xb8,0xac,0x65,0x4c,0x08,0xb5,0xfe,0xc1,0x8c,0xb0,0xe7,0xe3,0x1d,0x01,0x60,0x5a,0x14,0xfe,0x8a, - 0xe6,0x2d,0xfb,0xdc,0x4a,0x22,0x7f,0x7b,0x09,0x5f,0xe4,0xf3,0xcf,0x7e,0x85,0xfc,0x9e,0x85,0x9f,0x97, - 0x67,0x9f,0xfb,0x0a,0xf9,0x3d,0x6d,0xe9,0x0f,0xe2,0x52,0xa6,0x30,0x4b,0x17,0x7d,0xc3,0x02,0x46,0x18, - 0x0c,0x68,0x97,0x0f,0x97,0xf9,0x52,0xbe,0xfc,0xe1,0xc3,0xeb,0x8f,0x59,0x5a,0x4d,0x2e,0xde,0xa7,0x55, - 0xba,0xa8,0xff,0x24,0x2c,0x74,0xbe,0xea,0xc0,0x5a,0x27,0x57,0x96,0x35,0x2d,0xa6,0x69,0x35,0x7d,0x52, - 0x95,0x57,0x75,0x56,0x3d,0x2f,0x2e,0xe3,0xad,0xf3,0x35,0xf4,0x5a,0xb2,0xcb,0x56,0xa4,0x97,0xf9,0x79, - 0xda,0x94,0xd5,0x7a,0x1d,0x7c,0xc8,0xd2,0x49,0xf3,0x36,0x6d,0xf2,0xcb,0x8c,0xba,0x92,0xd8,0x2c,0xec, - 0xcd,0xe9,0x6a,0xd2,0xd0,0xd8,0xfa,0x3a,0x7b,0x95,0x17,0xd3,0xf2,0xaa,0x3f,0x6f,0x5a,0x4e,0x56,0x8b, - 0xac,0x68,0x08,0x09,0x97,0xd5,0xf3,0x74,0x72,0x11,0xa7,0x8a,0x0f,0x0a,0xdb,0xbd,0x9d,0x2c,0x6c,0x9d, - 0xf6,0x8d,0xaa,0x7a,0x08,0x1a,0x1c,0xef,0x3d,0xb8,0xb5,0x19,0xf3,0xb9,0x9f,0x31,0x75,0x00,0x8a,0x84, - 0x5f,0x9b,0x8d,0xc3,0x78,0x44,0x09,0x54,0x8c,0xf6,0xd2,0xea,0x9c,0x7b,0x52,0x1b,0xf4,0x57,0x11,0xfa, - 0xab,0x08,0xfd,0xa5,0xa1,0xcd,0x92,0x4a,0xcc,0x59,0x5a,0x6c,0x94,0x1c,0x99,0x71,0xf7,0x00,0xd1,0x05, - 0x52,0xea,0xac,0xcd,0xe2,0x7e,0x83,0xba,0x48,0x0a,0xea,0xe8,0x36,0x2d,0xd5,0x8c,0xeb,0x10,0x1f,0xc7, - 0xcd,0x86,0x8e,0xac,0x8d,0xa2,0xdd,0xd6,0x0b,0x43,0x38,0xd5,0x97,0xf3,0x74,0x92,0x85,0x0f,0xfe,0xe7, - 0x97,0xfa,0x6f,0x0f,0x54,0x10,0x44,0x2e,0x89,0x52,0xee,0x71,0xd2,0x66,0xd3,0x3e,0xd7,0x3a,0xa7,0x9a, - 0x43,0x9d,0xed,0x42,0x5d,0x4a,0x8b,0xa6,0xde,0x4e,0x15,0xc8,0x0c,0xc6,0x16,0x61,0x77,0xae,0x22,0xcc, - 0x21,0x4d,0x58,0x61,0xe7,0x8e,0xe6,0x8d,0xa7,0xda,0x9f,0x3a,0x4b,0x62,0x0d,0xd3,0xe5,0x72,0x7e,0xc3, - 0xa3,0xdd,0xee,0xa6,0x5d,0x6a,0x6f,0xd0,0xbb,0xbb,0xd9,0x70,0x52,0x12,0x80,0x57,0x04,0x65,0x65,0xd5, - 0x3b,0x7f,0xad,0x12,0x43,0x83,0xc1,0x81,0xf3,0xfa,0xd2,0xb1,0x6f,0xfb,0xe6,0xa0,0x73,0x60,0xe3,0xa4, - 0x44,0xea,0x7a,0x1d,0x36,0x44,0xcd,0xf5,0x2d,0xdb,0x10,0x94,0xc6,0x0b,0xa2,0x08,0x9b,0xd7,0xcf,0xfb, - 0x17,0x76,0x58,0xcf,0xf3,0x09,0xd5,0x44,0x30,0x20,0x8f,0xe1,0x81,0x3a,0x88,0x22,0xaa,0x14,0xe3,0x3a, - 0x35,0x5d,0x8a,0x98,0x52,0x6d,0x36,0x7f,0x89,0x1e,0x01,0xa5,0x6c,0x48,0x99,0x1a,0xf4,0x26,0xde,0xf3, - 0xa2,0xc9,0xaa,0x49,0xb6,0xa4,0x01,0xd3,0xd1,0xa8,0x89,0xc0,0x98,0xa9,0x44,0x55,0x65,0xf5,0x92,0xe6, - 0x23,0x93,0xd7,0x8d,0x25,0xf3,0xfe,0x2e,0x64,0xde,0x43,0x21,0xf3,0x0e,0xff,0x5b,0xe8,0xbc,0xc3,0x7f, - 0x10,0xb4,0x6f,0x13,0x94,0xad,0x09,0xdb,0x3e,0x18,0x98,0xbc,0x28,0x35,0xc1,0x77,0xbb,0xaa,0xe6,0xb1, - 0x03,0x83,0x83,0x93,0x8d,0x72,0x6f,0x87,0x27,0x51,0xa4,0xbc,0xc2,0xb9,0x6a,0x0d,0x48,0xdd,0x2e,0xb2, - 0xe6,0xa2,0x9c,0xc6,0xc1,0x79,0xd6,0x04,0x1b,0x90,0x8e,0x43,0x49,0x21,0x2a,0x45,0x1e,0x88,0x1a,0x78, - 0x5d,0x5e,0x65,0xd5,0xd3,0xb4,0x26,0x44,0x21,0x53,0x98,0x1c,0xd7,0x4a,0x4e,0x10,0xa2,0x55,0x12,0x43, - 0x1d,0xd2,0xc8,0xcb,0xf9,0x65,0x46,0x5d,0x1e,0x01,0xa6,0xb7,0x66,0xca,0x0c,0x6e,0xa8,0x31,0x51,0xe8, - 0x0f,0xb2,0x19,0xae,0x8a,0xfa,0x22,0x9f,0x35,0x84,0xbb,0x67,0xab,0xf9,0x2c,0x9f,0xcf,0xb3,0xa9,0x42, - 0xa5,0x40,0x38,0xd9,0x34,0xa2,0x4d,0xdb,0x57,0xa3,0x4c,0xf6,0x1d,0x55,0x2e,0x57,0xf5,0xc5,0xdd,0xf5, - 0x8d,0x1a,0xb3,0x9b,0x22,0xda,0x7b,0xc3,0xe6,0x22,0x63,0x00,0xe2,0x4e,0x50,0x63,0xe6,0xc9,0x47,0x47, - 0xa5,0x6d,0xe8,0x38,0x98,0x66,0xf3,0xac,0xc9,0x02,0xc5,0x53,0xa7,0x82,0x0b,0x82,0x52,0xfa,0x29,0x97, - 0x68,0xbe,0x0e,0x4e,0x54,0x0b,0xe6,0xdd,0x12,0x13,0x55,0x98,0x78,0x38,0xcb,0x21,0x33,0x1e,0x9d,0x9e, - 0xa2,0xd0,0xac,0x57,0xb1,0x5e,0x13,0x02,0x35,0xab,0x94,0x29,0xac,0x35,0xe1,0x2f,0xda,0xd6,0x51,0xab, - 0x33,0xcb,0xb2,0x46,0x27,0x96,0x2b,0xfe,0x9b,0x36,0x93,0x8b,0x3f,0xdf,0x03,0xe0,0xcd,0xcf,0xf5,0xa1, - 0xea,0xeb,0x83,0x9a,0x82,0x62,0x2b,0x74,0x57,0xdc,0x4e,0xaf,0xfe,0xc2,0xee,0x02,0x36,0xda,0xcd,0x87, - 0x1e,0xa9,0xc2,0xc7,0x77,0x27,0xe5,0x38,0x78,0x5a,0xd2,0x9a,0x17,0xcd,0xfe,0x11,0x75,0x3e,0x38,0x89, - 0x00,0xfd,0xdd,0xc4,0xa4,0x89,0xba,0x0c,0xd5,0x7f,0x63,0xa7,0xdd,0xb6,0xcb,0xc5,0x01,0x30,0x63,0x3e, - 0x49,0xd1,0x85,0x07,0xd7,0xfb,0x57,0x57,0x57,0xfb,0x34,0x89,0x8b,0x7d,0x1a,0x53,0x56,0x4c,0x4a,0x62, - 0x3a,0x69,0x17,0xd0,0x9e,0x4e,0xa7,0xe9,0xb2,0xf1,0xe9,0x2e,0x61,0x05,0xb3,0xd1,0xdd,0x24,0xc3,0xcf, - 0x6f,0x5e,0xbf,0x6c,0x9a,0xe5,0x07,0x99,0xbd,0x71,0x46,0x5d,0xf8,0x07,0x71,0xe8,0x3d,0x25,0x69,0x25, - 0x26,0x59,0x5d,0xf3,0x2e,0x46,0x21,0x1c,0x47,0x80,0xb8,0x2a,0x2d,0x6a,0xf4,0x46,0x57,0x11,0x1f,0xf7, - 0x1e,0x1d,0x25,0xad,0x59,0x7b,0x54,0xe0,0x2d,0x1d,0x19,0xcd,0xd8,0x14,0x09,0x1e,0xe1,0x69,0xd3,0x3a, - 0xaf,0x42,0x49,0xd9,0x57,0x50,0x6c,0xae,0x28,0x11,0x62,0xf4,0x32,0xce,0xe2,0x4e,0x65,0x9a,0xf2,0x1d, - 0x1b,0x62,0x97,0xf3,0x3b,0x24,0x11,0xf2,0xc3,0x0a,0x3d,0xfd,0xc3,0x09,0x1f,0x4d,0x2e,0xd2,0xaa,0xce, - 0x9a,0x64,0xd5,0xcc,0xf6,0xff,0x11,0x00,0x98,0x0c,0x03,0x42,0x9b,0x8f,0x2b,0x17,0xaa,0xb6,0xbf,0xce, - 0x5f,0xeb,0xb2,0xd8,0xaa,0xe2,0xbb,0x8f,0xef,0xde,0x0e,0x05,0x6d,0xe6,0xb3,0x1b,0xb0,0x60,0x71,0xb6, - 0x39,0xf1,0x67,0x58,0x23,0xe9,0x63,0x7f,0x8f,0x80,0x95,0xdb,0xc2,0xb5,0x51,0x53,0xdd,0xdc,0x66,0x09, - 0xd7,0xb8,0x44,0x2b,0x38,0xd9,0x26,0xd8,0x61,0xf8,0x64,0x63,0x8e,0x5c,0xd4,0x9e,0x2f,0xb2,0x72,0xd5, - 0xc4,0x07,0xea,0xba,0xae,0x66,0x4f,0xcb,0xf2,0x53,0x9e,0xbd,0x4d,0x17,0x59,0x1c,0xfc,0xfc,0xf1,0xc3, - 0x8b,0xfd,0xa3,0x77,0xdf,0x3f,0x7f,0x1b,0x70,0xde,0x4b,0xc2,0x15,0x59,0xa5,0xf3,0xf6,0xfd,0xdc,0x45, - 0x7a,0xad,0x97,0xf6,0x35,0xa3,0xa6,0x78,0xff,0x50,0x5d,0xa6,0xf3,0x9c,0x76,0x5b,0x46,0x24,0x66,0xb3, - 0xea,0x23,0x60,0x77,0xb2,0x6f,0x92,0x87,0x07,0x07,0x74,0x14,0x3f,0xfa,0xe2,0xe0,0x60,0xb3,0x19,0xd5, - 0xc3,0x0b,0x6e,0x81,0x00,0x79,0x52,0x2e,0x16,0x44,0x36,0xdf,0x3e,0x9e,0x00,0x67,0xc6,0x5b,0x53,0xa7, - 0x76,0x1a,0xa2,0xb1,0x1e,0x10,0x75,0x93,0xd3,0xf3,0xdf,0x1e,0xfc,0x2d,0xa0,0xf3,0x31,0xff,0x03,0x34, - 0xd7,0x46,0x2d,0xb6,0x35,0x20,0x96,0x5b,0xa0,0x83,0xfc,0xaf,0x60,0xa6,0xd6,0xe7,0x46,0x8a,0x91,0x46, - 0x2d,0xac,0x52,0xff,0x01,0x56,0xc1,0xde,0xac,0x78,0xeb,0xdf,0x4d,0x78,0xd9,0x3e,0x65,0xae,0x2e,0xc1, - 0x7d,0x44,0x6a,0x37,0x83,0x41,0x45,0x60,0xf7,0xc3,0x72,0x69,0x4e,0x3a,0xe2,0x40,0x9a,0x76,0x0a,0xe3, - 0x9d,0x86,0xc8,0x4b,0x25,0x73,0xc2,0xa2,0x2c,0xea,0xe7,0x1f,0x11,0x14,0xae,0x73,0x0a,0xe8,0xe9,0x6b, - 0x41,0x4f,0x87,0x86,0x12,0xf8,0x42,0x53,0x02,0x5f,0x0a,0x4b,0x7e,0x78,0x00,0x9e,0xfc,0x73,0x64,0xbe, - 0xfc,0x0e,0xcf,0x9a,0x32,0x6d,0xbd,0x0c,0xcf,0xe8,0x39,0x94,0x04,0xda,0xc3,0x54,0xd5,0x57,0xfd,0xd3, - 0xe1,0x68,0x30,0x22,0x51,0xf4,0xe9,0x1d,0x7a,0x27,0xc2,0x5c,0x90,0xdd,0x8c,0x68,0x00,0x60,0x79,0x05, - 0x62,0x40,0xaf,0xd1,0xa8,0xf2,0x31,0xcd,0x2c,0x82,0x68,0x92,0xe7,0x62,0xda,0xc5,0xc8,0x3c,0xec,0x25, - 0xd3,0xb4,0x6d,0xcc,0xa8,0x2e,0x92,0xa0,0x2c,0x40,0xd4,0xdd,0x10,0x43,0xd5,0x64,0xb4,0x77,0x8b,0x73, - 0x02,0xb0,0xcb,0x64,0xf7,0x70,0x84,0x2d,0xd8,0xc3,0x24,0xc9,0xa0,0x88,0x9e,0xd3,0xc3,0xfd,0xf9,0x59, - 0xb9,0x20,0x80,0xd5,0x35,0x12,0xe7,0x74,0x95,0x37,0x17,0x4f,0xab,0x6c,0x4a,0xed,0xe7,0xe9,0xbc,0x0e, - 0xf2,0x62,0x67,0xb9,0x5e,0x13,0x1a,0x1a,0x12,0xa2,0x01,0x75,0x29,0x3d,0xe9,0xfd,0x5c,0x3a,0x04,0x91, - 0x23,0x77,0xe2,0x40,0x2d,0x87,0x65,0x41,0x38,0xfa,0x9c,0xa8,0x0b,0x6f,0xda,0x68,0xb3,0x73,0x8e,0xde, - 0xe6,0xad,0x0c,0xc0,0x6a,0xba,0x22,0x3a,0x9d,0x27,0x6e,0x91,0xc8,0xdb,0x90,0xa0,0xa0,0x2a,0x68,0x97, - 0x53,0x07,0x03,0x75,0x6e,0x52,0x97,0x69,0x5d,0x5f,0x95,0xd5,0x14,0xa9,0xa3,0xe9,0xf0,0x31,0xa5,0x95, - 0x55,0xfe,0x3b,0xef,0xc9,0x24,0x78,0x92,0xd6,0xf9,0x64,0x27,0xd8,0x5b,0x85,0x8b,0x3d,0x3a,0xaf,0xf6, - 0xce,0xa3,0x0d,0x4d,0x0a,0x35,0xbc,0x24,0xf2,0xc4,0x23,0xca,0x3c,0xc0,0x54,0xa5,0x8c,0x93,0x3a,0xb1, - 0x64,0xec,0x6b,0x1f,0x3e,0x66,0x15,0x4d,0x47,0xfe,0x3b,0x11,0xbf,0x6a,0x97,0x00,0x6b,0x39,0x34,0xbd, - 0xcf,0xcc,0x93,0x5a,0x1e,0x5f,0x9c,0xf8,0x83,0x41,0x6b,0x04,0xea,0x5f,0xd2,0x06,0x58,0x32,0xed,0x7d, - 0x03,0xc4,0x43,0x63,0xb8,0xc4,0x0e,0x80,0xd0,0x6b,0x39,0xac,0x19,0x15,0xad,0xd7,0x4b,0x4b,0x81,0x11, - 0xfe,0x1f,0x0c,0x0e,0xf4,0x37,0x36,0x89,0xa8,0xb5,0x69,0x76,0xfd,0x8e,0x16,0x75,0x06,0x61,0x41,0x40, - 0x44,0xf9,0xad,0xf0,0x3a,0x40,0x27,0x8f,0xe7,0x73,0x83,0x88,0x05,0x23,0xca,0xba,0x8d,0x53,0x1a,0x6e, - 0x6f,0x36,0xce,0x03,0x16,0x68,0x55,0xc9,0x2d,0xd3,0x1f,0x99,0x6d,0x0c,0x40,0x47,0xdc,0x01,0x90,0x19, - 0x58,0xe7,0x76,0xc6,0xd8,0x75,0x2a,0x76,0x8f,0x47,0x54,0x56,0xc9,0x48,0xe2,0xc3,0x87,0x0f,0xbf,0x48, - 0xdc,0xc8,0xc6,0x0f,0x0f,0xbe,0x8c,0xcd,0x8b,0x2e,0x83,0xe2,0x5b,0xe5,0x82,0xb7,0xe5,0x8e,0x86,0xfb, - 0xc0,0x7e,0xc0,0x15,0xeb,0x0d,0x13,0x17,0x8a,0xd8,0xa3,0x59,0x7e,0x4e,0x84,0x93,0x61,0x14,0x96,0x9b, - 0x51,0x8e,0x6d,0x46,0xc8,0x47,0x11,0x5c,0xd2,0x80,0x36,0x02,0x5a,0x59,0x55,0x95,0x95,0xbf,0x16,0xf3, - 0x70,0x12,0x06,0x6f,0xb3,0x86,0xc0,0xe5,0xd3,0xce,0x73,0xe4,0x06,0x2a,0x53,0x3c,0x05,0xcb,0xc8,0x7e, - 0x7c,0x17,0x58,0xf2,0xd7,0x3a,0x7d,0x87,0x76,0x51,0xb0,0x67,0x57,0x7d,0x2f,0x58,0xd4,0x3b,0xd9,0xf5, - 0x24,0xcb,0x40,0xf2,0x50,0x9d,0xc1,0xf3,0xa7,0xef,0xde,0xbe,0x7d,0xfc,0xe4,0xdd,0x87,0xa3,0xe7,0xcf, - 0x82,0x56,0xed,0xd5,0xb0,0x4f,0xbc,0x11,0xea,0xa5,0xbc,0x01,0xce,0x22,0xe6,0xe6,0x2c,0x21,0x20,0xec, - 0x6c,0x43,0xb7,0x03,0x23,0xf0,0x89,0xed,0x63,0x71,0x7c,0xc3,0xd0,0x15,0x76,0xd3,0xa3,0x58,0x58,0x8b, - 0xd1,0x19,0x81,0xdb,0xf4,0x58,0xb2,0xdd,0x89,0x79,0x92,0x9c,0xf1,0x8e,0x08,0xe8,0xbc,0xd7,0x1b,0x58, - 0x32,0x19,0x76,0x80,0xc6,0x0d,0x9e,0x9f,0x76,0x18,0x5f,0x2b,0xf3,0x9a,0x11,0xa0,0x4c,0x34,0xb2,0x02, - 0x82,0x09,0x34,0xae,0xf7,0xf8,0x9c,0xb1,0x45,0x6b,0xcd,0x09,0xd6,0xb5,0xd3,0x16,0xad,0x5e,0x26,0x27, - 0x54,0x67,0xc4,0xd4,0xe5,0x65,0x37,0x2d,0xc1,0xce,0x6b,0x03,0x24,0x13,0x15,0xcb,0x56,0x52,0x07,0x64, - 0x35,0x89,0x21,0x82,0xe7,0x00,0x27,0xf5,0x36,0x58,0x47,0xcd,0x05,0x2d,0x07,0x71,0xb4,0xbd,0xdc,0x7a, - 0x59,0x3c,0x2b,0xaf,0x18,0xad,0xbd,0xd7,0xb8,0x6c,0x30,0x58,0x0e,0xd3,0xe9,0xf4,0xf9,0x25,0xc8,0x8b, - 0xbc,0xa6,0xf1,0xd3,0x48,0x02,0x83,0xe9,0x08,0x0a,0x7a,0xbe,0x89,0xfa,0x78,0x72,0x14,0xfc,0x61,0xd9, - 0xad,0x7a,0xc5,0x29,0xee,0xe9,0x0f,0xdb,0x6a,0x57,0x81,0x39,0x9a,0x38,0x25,0x05,0x0b,0x16,0xdc,0x2b, - 0xd8,0x17,0xe6,0x32,0x99,0x4d,0xf3,0xcf,0xb2,0x25,0xcf,0x79,0x7a,0x46,0x87,0x1c,0xa1,0x42,0x08,0x0c, - 0x35,0xe4,0x62,0x81,0xfc,0x35,0x0f,0x67,0x92,0xac,0xb0,0x9e,0x74,0x52,0xce,0xfe,0xc2,0xd9,0x4d,0xa7, - 0xf2,0x1d,0x94,0x05,0x3e,0xd1,0x9c,0xc7,0x50,0x76,0xfa,0xb0,0x4d,0xb0,0x8d,0x0a,0x8d,0x16,0x88,0xb3, - 0x19,0x0c,0x76,0xf3,0xd0,0xbc,0x47,0xe3,0x86,0xc8,0xd9,0x40,0x03,0xd6,0xce,0x2c,0x25,0x14,0x39,0xdd, - 0x01,0xf0,0xec,0x48,0x81,0x1d,0xd0,0xc7,0xb4,0x6b,0xcd,0x07,0xca,0xb4,0x20,0x18,0xa0,0xb0,0xea,0xa7, - 0x02,0xf4,0x6d,0x58,0xfc,0xf9,0xd1,0x1c,0xde,0x3d,0x1a,0x95,0xab,0x52,0x46,0x94,0xf2,0x91,0xc9,0x58, - 0x07,0x3c,0xbd,0xd5,0x34,0xa5,0xb6,0xd8,0x7f,0x22,0x02,0x03,0xbf,0xa9,0x72,0x4f,0xda,0x26,0x43,0x4a, - 0x28,0x03,0x04,0xd6,0x10,0x63,0x4e,0x0a,0xd9,0x30,0x22,0x0b,0xa9,0xbc,0xcd,0x93,0xe4,0xc4,0x2b,0xfd, - 0x07,0x0a,0xa5,0x1d,0x61,0x36,0x7e,0xf8,0xf0,0xea,0x69,0xb9,0xa0,0x9a,0x08,0x2a,0x29,0xd3,0x89,0xf5, - 0xfe,0xeb,0xcb,0x83,0x07,0xe7,0xb9,0x0a,0xfe,0xaf,0x2f,0xeb,0xfb,0xaf,0x2f,0x1e,0x73,0x62,0xdc,0x4a, - 0x7c,0xf8,0xe5,0x83,0x73,0x15,0xdc,0x6b,0xa7,0x3d,0xe5,0x82,0xaa,0x9d,0x78,0x80,0x82,0x7b,0xad,0xb4, - 0xaf,0x9e,0x70,0xc1,0xe3,0x76,0xe2,0x33,0x4e,0x3c,0x09,0x7c,0x1e,0xf6,0x33,0xe0,0x46,0x18,0x61,0xb7, - 0x31,0xaa,0xd8,0x8c,0x57,0xb5,0x04,0xe5,0x54,0x44,0x20,0x2c,0x1b,0xad,0x3a,0xa2,0x84,0x3e,0xc6,0xac, - 0x89,0xa8,0x54,0xe3,0xb1,0x58,0x5c,0x5a,0x2f,0xf8,0xf1,0xc9,0xc8,0xd1,0xee,0x4d,0x67,0x71,0xfb,0xd4, - 0x5f,0xb4,0x64,0x96,0x3b,0x64,0xe6,0x3d,0x6c,0xf6,0x92,0xe0,0xf8,0x44,0xf3,0xa4,0x26,0x9d,0x08,0x30, - 0xad,0x0f,0xcb,0xfb,0xc8,0x70,0xf0,0x5e,0x43,0x51,0x43,0x30,0x63,0x09,0xea,0xa4,0x7c,0xf5,0xf1,0x9d, - 0xe9,0x62,0x9b,0x09,0x64,0xbe,0x79,0x9b,0xc3,0x83,0xbe,0x15,0xf2,0x1e,0x42,0xce,0xd1,0x5e,0x90,0x04, - 0x7b,0xac,0x7a,0x83,0x80,0x02,0x04,0x77,0x3a,0xfc,0xb5,0xcc,0x8b,0x30,0x18,0xd0,0x24,0x1b,0x46,0x1a, - 0x15,0xed,0x25,0xe1,0xfe,0x21,0xf4,0x20,0x8e,0x54,0x19,0x07,0xd1,0x98,0xfe,0xc4,0x28,0xbb,0x57,0x46, - 0x7f,0x0c,0x70,0x2d,0x02,0xff,0x38,0x48,0x41,0xcd,0x06,0xa9,0x4f,0xd6,0xd1,0xbb,0x39,0x70,0x44,0xe4, - 0xe4,0x25,0xf0,0x09,0xa4,0x82,0xac,0x49,0xcf,0xf1,0x73,0xbd,0xcc,0x09,0xd8,0xe9,0x69,0x46,0x08,0x0f, - 0x0c,0x97,0xf0,0x4f,0xf9,0x6c,0x7f,0x51,0x4e,0xf3,0x59,0x9e,0x4d,0xf7,0xeb,0x9c,0xd0,0xa2,0xa4,0xad, - 0x8a,0xad,0xd4,0x79,0x5a,0x37,0xb6,0x2c,0xde,0xcb,0x89,0xe9,0x03,0x71,0x97,0xe0,0xbe,0xaf,0xe8,0x20, - 0x47,0x0b,0x84,0x52,0xaf,0x6f,0xf6,0xbb,0x1d,0xad,0x32,0xe2,0xe9,0xe9,0x38,0xc5,0x13,0x1d,0x53,0xfb, - 0xe9,0xac,0xe1,0x37,0x10,0xb3,0xfb,0x34,0x36,0xa2,0x74,0x4e,0xee,0x60,0x2b,0x58,0x38,0x48,0x1b,0xbc, - 0x84,0xe4,0xc5,0x69,0xfc,0x89,0x6b,0x77,0xab,0x3e,0xac,0x89,0x01,0x6d,0xc2,0xe0,0x97,0x82,0x60,0xa4, - 0xc3,0x7d,0x97,0xfe,0x32,0xd0,0xae,0x53,0xb4,0xf9,0x87,0x90,0xd3,0xe3,0xb3,0xd5,0x19,0xcd,0x77,0x78, - 0x40,0x68,0x27,0x6a,0x9f,0xd5,0xaa,0xd8,0x2a,0x55,0xee,0x1d,0x12,0x40,0xc8,0xe1,0x99,0xd2,0x11,0xce, - 0x42,0x25,0x5d,0x71,0x13,0x7d,0x93,0x1c,0xe8,0xdd,0x33,0x42,0x66,0x02,0x52,0x62,0x7f,0xc2,0x04,0x08, - 0x93,0x02,0x63,0xfe,0x66,0x8c,0x3f,0xf1,0xf1,0x49,0x04,0x0c,0x45,0x53,0x18,0x1e,0x17,0x27,0x51,0x6c, - 0x73,0xf6,0x02,0x05,0xd4,0x1c,0x17,0x60,0x78,0x53,0xca,0xf8,0xf3,0x50,0xe2,0xcd,0xde,0x5d,0xb4,0xd5, - 0xd8,0x57,0x10,0x38,0x45,0x8d,0xb5,0x48,0xc8,0xac,0x50,0x92,0x77,0x20,0x0d,0xe0,0x71,0x43,0xed,0x9c, - 0xad,0x68,0x07,0x05,0x17,0xb4,0x84,0x01,0x8c,0x0c,0x1a,0xe2,0xa7,0xf1,0x82,0x6d,0x77,0x47,0x91,0x5b, - 0x3c,0xc5,0x52,0x4c,0xb1,0x88,0x70,0x52,0xce,0xe9,0xdd,0x3c,0x8e,0xdd,0xa3,0xc3,0x58,0xb1,0xa8,0x40, - 0x62,0xe2,0x6a,0x00,0x9e,0xf8,0x9c,0x7e,0x54,0xcd,0x78,0x26,0x46,0x5b,0x78,0x18,0x9b,0x07,0x5f,0xa1, - 0x32,0x76,0x5f,0xa6,0x35,0xca,0xe2,0x67,0x2c,0x3f,0x5e,0xb9,0xff,0xd3,0x6a,0x00,0x3c,0x94,0x6e,0x04, - 0x8f,0x0a,0x73,0x87,0x3e,0xd2,0x8f,0x5a,0xa6,0xcd,0x05,0xe7,0x07,0x0f,0xb0,0x78,0x94,0xaa,0x13,0x86, - 0x10,0x0a,0x3d,0x86,0x49,0xc8,0xd8,0x25,0xa2,0xd4,0x9e,0x7b,0x15,0xf1,0x3c,0xad,0x55,0xf2,0x20,0x5c, - 0xd4,0x79,0xb6,0xa6,0x09,0x02,0xd9,0x16,0x3d,0xc8,0x87,0x0d,0x64,0xa0,0x4e,0x05,0x07,0xf0,0x7f,0x0c, - 0xe8,0xc7,0x26,0x37,0x5a,0x35,0x6d,0x91,0xf1,0x7c,0x9e,0xe1,0x2d,0x0c,0xd2,0xc0,0x9e,0x93,0xb4,0x46, - 0x9a,0x17,0x1f,0x9a,0x1d,0xa8,0xd7,0xc2,0x49,0x1f,0x0c,0xe5,0x20,0x50,0xc0,0xb8,0xae,0x20,0xf4,0x47, - 0x7f,0xe2,0xc2,0x19,0x94,0x98,0xf9,0x67,0x2a,0xd5,0xbc,0x00,0xa2,0x31,0x1f,0x9c,0x88,0x87,0xcd,0x86, - 0xf0,0xe4,0x96,0xca,0x71,0xf7,0xe0,0xf3,0x67,0xb4,0xa7,0x0c,0xd2,0xba,0x8e,0x05,0x91,0x62,0xb4,0xcb, - 0x93,0x40,0x3a,0xb4,0x03,0x34,0x45,0xbc,0x72,0xbd,0x93,0x52,0x5f,0x0a,0x26,0x6d,0x76,0x30,0xb3,0xe9, - 0x04,0x68,0x61,0x23,0x50,0x1d,0x3c,0x7e,0xf2,0xf4,0xd9,0xf3,0x17,0xdf,0xbe,0x7c,0xf5,0xdd,0xf7,0xaf, - 0xdf,0xbc,0x7d,0xf7,0xfe,0x9f,0x1f,0x3e,0x1e,0xfd,0xf0,0xe3,0x4f,0x3f,0xff,0xeb,0xdf,0xe9,0xd9,0x84, - 0xd8,0xf9,0xf3,0x8b,0xfc,0xd7,0x4f,0xf3,0x45,0x51,0x2e,0x7f,0xab,0xea,0x66,0x75,0x79,0x75,0x7d,0xf3, - 0xfb,0xc1,0xe1,0xc3,0x2f,0xbe,0xfc,0xea,0xef,0xff,0xfd,0x8f,0xaf,0xf7,0x1e,0x24,0xc1,0xa8,0x70,0x12, - 0x6a,0x47,0x78,0x28,0x2f,0x55,0x48,0x83,0xaf,0x5a,0x49,0x58,0xc4,0x24,0x78,0x25,0xfd,0x7a,0x6a,0xba, - 0x65,0x38,0xa5,0x5e,0x24,0x65,0xf4,0x6d,0x0d,0x48,0x98,0x44,0x4f,0x7b,0x06,0x61,0x0c,0x41,0x5b,0x9d, - 0x1c,0xc0,0xf0,0x66,0x54,0x5a,0xe8,0x59,0xd7,0x38,0xbd,0x26,0x09,0x9d,0x28,0xaa,0xfe,0x2f,0x22,0x9c, - 0xd2,0xbd,0x64,0x62,0x72,0xff,0xfe,0xc5,0xa0,0xf9,0xe6,0x9b,0x7f,0xec,0x53,0xc6,0xdf,0xfe,0x11,0x31, - 0xba,0x09,0xf3,0x44,0x3e,0x7e,0x4a,0xbd,0xa5,0x22,0xf5,0x5e,0x32,0xfc,0xef,0xaf,0xa2,0xe8,0x9b,0x87, - 0x5f,0x7d,0xa5,0x09,0x76,0x8c,0xae,0x18,0x35,0x49,0xf3,0xe8,0xd1,0x3f,0xd6,0xb9,0x39,0x8e,0xfe,0x97, - 0x11,0xc8,0xed,0x55,0x95,0xb7,0xb4,0xfa,0x86,0x6a,0x23,0x64,0x75,0x2b,0x66,0x20,0x74,0xda,0xd7,0x5a, - 0x47,0xc2,0x07,0x66,0x0f,0x8d,0x44,0xd4,0x02,0xf3,0x7f,0x62,0x86,0x40,0x80,0x39,0x18,0xe8,0x4f,0xcc, - 0x49,0x45,0xdf,0x61,0x3c,0x7c,0x76,0x17,0xc0,0xcc,0xdf,0xbe,0x39,0xb2,0xd2,0x5b,0xe5,0x41,0x76,0xee, - 0x7d,0x8b,0xfd,0x47,0x1f,0xe6,0xad,0x02,0xa5,0x57,0x60,0xca,0x02,0x1a,0x2a,0x52,0x42,0x70,0x41,0x40, - 0x9e,0xba,0xbc,0x3a,0x9b,0xac,0x2a,0x48,0xbd,0xdd,0x2e,0x64,0xdc,0x9d,0xd4,0xfa,0x8c,0x1f,0xed,0xd0, - 0x21,0xaf,0xc0,0x5c,0xc6,0x5b,0xa7,0x53,0xd2,0xf9,0x68,0xb8,0x60,0x3e,0x0b,0x43,0xf8,0x90,0x9d,0x3f, - 0xbf,0x5e,0x86,0x41,0xf8,0x3f,0xeb,0xd1,0x2f,0xbf,0xd4,0x7f,0x8b,0x42,0x9a,0x12,0x22,0xdf,0x92,0xf0, - 0xf8,0x7f,0x46,0x27,0x7f,0x8b,0x02,0xa7,0x0a,0x6a,0x88,0x3f,0xdc,0x9e,0xab,0xe3,0x2f,0x4e,0x44,0x3e, - 0x81,0xc6,0x17,0xe5,0x65,0xdb,0x3a,0x82,0x77,0x17,0x2f,0x0a,0xad,0x05,0x81,0x1a,0x66,0x6c,0x58,0x94, - 0x57,0x61,0xb4,0xff,0x8f,0xbf,0x7f,0x99,0x7d,0x45,0xd4,0x74,0xdc,0x5d,0x34,0xc8,0x9c,0xda,0xe3,0x68, - 0xe9,0x4f,0xb7,0xdb,0xa1,0x0f,0xfe,0x02,0x79,0xac,0x3b,0x75,0x41,0xe0,0x33,0x87,0xb4,0xf8,0xf8,0xc4, - 0x27,0x40,0x7d,0xbd,0x24,0x55,0xd0,0xaf,0xc8,0x6e,0x55,0x20,0x0b,0x74,0x6b,0xf5,0x6d,0x2c,0xf3,0x10, - 0x7d,0x1b,0x6b,0xdd,0xdb,0x85,0x85,0x12,0xda,0x3f,0x84,0x84,0xc1,0xb5,0xc4,0xe5,0x93,0xad,0x89,0x33, - 0x5f,0x11,0x11,0x09,0x22,0xb3,0x93,0xa4,0xf9,0xbd,0x56,0x45,0x9a,0xe2,0x48,0xda,0x54,0xa6,0x25,0x6e, - 0xfd,0x1a,0x3c,0x23,0x02,0x4b,0xe6,0x36,0xc4,0x80,0xd2,0x2b,0xb1,0x88,0xff,0xa1,0x76,0x0b,0x76,0x87, - 0x9f,0xe1,0x67,0x19,0x15,0xbc,0x9a,0x69,0xee,0x2f,0x9b,0x86,0x5b,0x0a,0xac,0xc3,0xaf,0x45,0x42,0x0c, - 0xd3,0x3c,0x6b,0x13,0x48,0xaf,0x87,0x10,0x10,0xd3,0xef,0x1d,0x3c,0x02,0x2d,0x0d,0xd0,0x59,0x36,0x3c, - 0x4b,0xb5,0x58,0x6e,0x77,0xa2,0xa5,0x30,0xcc,0x60,0xd1,0x43,0xb2,0x0a,0x6d,0xb6,0xd2,0x02,0x1a,0x65, - 0x65,0xbc,0x4e,0xda,0xcb,0x8a,0x3f,0x11,0x02,0x27,0x90,0x31,0xb2,0x34,0xd8,0xe6,0x42,0x51,0xd3,0x51, - 0x59,0xf9,0xb5,0x18,0x51,0xbe,0x4d,0x19,0x8a,0x2e,0x42,0x57,0x6a,0x85,0xfe,0x5a,0xa4,0x79,0xd2,0x4e, - 0xc7,0x5b,0xf4,0x87,0x8a,0x08,0xd5,0xa7,0x5e,0x00,0x69,0x8d,0x86,0x7c,0x3d,0x03,0xad,0xab,0x11,0xda, - 0xdb,0x96,0x9b,0x93,0x8d,0xd9,0xd0,0xd4,0x49,0xad,0xf1,0x5b,0xaf,0x6b,0xf3,0x18,0x81,0x43,0x6c,0x8b, - 0x1b,0x1c,0xdc,0xf3,0x1c,0x37,0x66,0x6a,0xe4,0x81,0xde,0x7b,0xa7,0x46,0x58,0x57,0x2a,0xbe,0x51,0x3d, - 0x35,0xa5,0xf4,0x4c,0x27,0x8c,0x54,0x08,0xbb,0x3d,0xc3,0xeb,0x02,0xce,0x9d,0x86,0xdb,0xb6,0xd4,0x4a, - 0x51,0xde,0xfb,0xe7,0xda,0xa6,0xf5,0x75,0x6a,0x7a,0xe6,0xa3,0x9a,0xbf,0xa4,0xb9,0xf8,0x0c,0x37,0x6a, - 0x26,0xc4,0x2e,0x55,0xd1,0xa2,0x70,0xa0,0xe2,0x04,0xc2,0xd8,0x6c,0x33,0x52,0x7f,0x42,0x5e,0x60,0xe9, - 0x98,0x70,0x37,0x5b,0xaf,0x61,0xcd,0x71,0xfa,0xf4,0xf1,0xdb,0xa7,0xcf,0x5f,0x9f,0x9e,0xfe,0x07,0xd2, - 0x07,0x53,0xdb,0x83,0xff,0x09,0x8f,0xd3,0xfd,0xdf,0x4f,0xf0,0xe7,0x97,0xe9,0x2f,0x7b,0xbf,0xec,0xff, - 0x32,0x3c,0xf9,0x5b,0x1c,0x8d,0x7f,0x79,0xf0,0xcb,0x03,0x43,0xfa,0x65,0xff,0x91,0x78,0xc3,0x21,0xc6, - 0xb1,0x67,0x48,0xf4,0xcb,0x83,0x3d,0x21,0x99,0xf7,0x40,0x7f,0x36,0x3e,0x41,0xfc,0x60,0x4f,0x48,0xdd, - 0x3f,0x98,0x9c,0xb6,0xd5,0x4e,0x8b,0x52,0xcb,0x36,0x45,0x8f,0xf1,0x66,0xb2,0x75,0x64,0x04,0x62,0xec, - 0x1b,0xec,0x85,0xfe,0xe7,0xc4,0xe8,0x12,0x1f,0xe3,0xa7,0xc4,0xb0,0x6e,0x6a,0x51,0x59,0x6e,0xd2,0xa1, - 0x1e,0xf1,0xcc,0xa9,0xff,0x12,0x3a,0x84,0x20,0xd3,0xca,0x12,0x77,0x3d,0x05,0xab,0x25,0x8a,0x20,0xd4, - 0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb3,0x58,0xd5,0xcd,0xce,0x59,0xb6,0x93,0x5a,0x9b, - 0xa9,0x61,0xa0,0xcd,0x50,0x46,0xdc,0x6b,0x2d,0x18,0x4c,0x7a,0x95,0x59,0x98,0x2b,0x9a,0x20,0xf9,0xa0, - 0x48,0xf0,0xc1,0xa8,0x9d,0x0d,0x29,0x5a,0x5a,0x03,0x2d,0x85,0xe6,0x91,0xab,0xca,0x79,0x3f,0xda,0x34, - 0x88,0x11,0x1c,0x82,0xfe,0xa2,0x7d,0x3a,0x76,0x71,0x79,0x47,0x9d,0xa2,0xad,0x2a,0xb8,0x1a,0x2d,0xb2, - 0x75,0x29,0x38,0xb4,0xea,0x72,0x55,0x4d,0x32,0xff,0x2b,0xdf,0xd8,0xe0,0xb6,0xc1,0x81,0xc1,0xf6,0x44, - 0x55,0x0b,0x15,0x65,0x09,0x0e,0x55,0x39,0x54,0x18,0x7e,0xee,0x3c,0xa8,0xfe,0xc2,0xde,0xd8,0xe9,0x41, - 0x51,0xc6,0xa0,0x8c,0xc5,0x8e,0x0d,0x6c,0xca,0xa0,0xf7,0xec,0xb6,0x70,0xb7,0x0f,0x44,0x8f,0x32,0xf3, - 0x7f,0xc9,0x0d,0xa2,0x81,0x63,0xc3,0x8f,0xab,0xac,0xdf,0xad,0xa1,0x1f,0x18,0xb3,0x5e,0x3b,0xd8,0xf5, - 0x1a,0xa3,0x63,0x8b,0x58,0xcf,0x18,0xb2,0x5b,0x52,0x64,0x5e,0x46,0x12,0xb6,0x69,0xef,0x4a,0xc3,0x72, - 0xb5,0x2b,0xf1,0xcd,0xda,0xb7,0xac,0x0b,0xd6,0xeb,0x6d,0x3b,0x5e,0x4a,0xab,0x6f,0x16,0x67,0xe5,0xbc, - 0x9d,0x76,0x56,0x96,0xf3,0x2c,0x2d,0x7a,0xed,0xda,0xff,0x77,0x2c,0xe1,0x45,0xc2,0xc6,0xc6,0xb7,0x8b, - 0xa2,0xd7,0x10,0xde,0x10,0xd1,0x6c,0x08,0xc1,0x36,0x79,0xa1,0x65,0xa0,0x1c,0x71,0xfc,0x4d,0x72,0x30, - 0x18,0xbc,0x21,0x12,0x7f,0x38,0x9b,0x97,0xb0,0x04,0x63,0x65,0x3a,0x71,0xac,0xf5,0x8b,0xbc,0x60,0xfa, - 0xd7,0xab,0xb5,0xee,0x74,0x9d,0x7a,0x3e,0x0e,0x82,0x1e,0xcf,0x96,0x71,0x57,0xe4,0x27,0x52,0xf0,0x87, - 0x51,0x6c,0xbb,0xe0,0x6a,0x9d,0xf4,0xf6,0xd5,0x49,0xb1,0x89,0xa3,0x49,0xdf,0x52,0xc7,0xc6,0x19,0x11, - 0xa6,0xf6,0xab,0x95,0xb6,0x90,0xb4,0x16,0x99,0xda,0x34,0x5e,0xb8,0xfc,0x50,0xb4,0x07,0x55,0x62,0x65, - 0x58,0x0a,0x62,0xce,0xe4,0x60,0x94,0x3f,0xaa,0x8c,0x29,0x59,0x2e,0x86,0x99,0xc7,0xf9,0xc9,0x09,0xe1, - 0x4a,0xc7,0x2f,0xf4,0x69,0xdf,0x8f,0xb3,0xb6,0x20,0xeb,0x64,0xd3,0x67,0xdc,0x41,0xc5,0x4e,0x36,0xae, - 0x8f,0x73,0xeb,0x8e,0x60,0xfc,0x08,0x8c,0x4a,0x35,0xf3,0x44,0x5c,0x2c,0x0e,0xfe,0x66,0xff,0xd0,0x4a, - 0x89,0xb9,0xcb,0x74,0xe2,0x14,0xea,0x30,0xf2,0x6a,0x9b,0xb5,0xce,0xac,0x33,0xb3,0xea,0xd8,0xe4,0xb6, - 0xcc,0xd4,0xcd,0x65,0xcf,0x7c,0x8c,0xba,0x68,0xc3,0xb3,0x68,0x3b,0x2e,0x4e,0x60,0xd8,0x49,0x3f,0xb0, - 0x10,0x8e,0xfc,0x86,0x97,0x5b,0xc6,0xa8,0x5a,0x1a,0x52,0xf5,0x18,0x0a,0x6b,0x0a,0x63,0x5c,0x7d,0x73, - 0x38,0x76,0xc6,0xad,0xb6,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xcd,0xb3,0x95,0xf3,0x16,0xc3,0x53,0xa9, - 0xc8,0x7a,0x5e,0xa8,0xc2,0x75,0xe4,0x42,0x3a,0x42,0xdc,0xf8,0x7a,0x7d,0x30,0x72,0x4b,0x6f,0xca,0xee, - 0x37,0xb4,0xe2,0xce,0x32,0xb7,0x88,0x46,0xc5,0xfe,0xfe,0x28,0xaa,0x78,0x50,0xc7,0xc5,0x5e,0x63,0xcd, - 0x6e,0x2b,0x57,0xe9,0x65,0x07,0x90,0xe0,0xbd,0xd1,0x44,0xf0,0xed,0x48,0x30,0x1b,0x56,0x32,0xea,0xbe, - 0x58,0xb4,0x44,0x13,0xb0,0x9a,0x2e,0x08,0xb0,0x8a,0x47,0xce,0x59,0x84,0x00,0x0b,0x15,0x0c,0x06,0x97, - 0xd0,0x3e,0x42,0x18,0x69,0xa1,0xcb,0x55,0x73,0x6e,0xce,0x61,0x97,0x74,0xe3,0x00,0x06,0xdb,0x30,0x32, - 0x58,0x4a,0x1f,0x89,0x7c,0xce,0x55,0xf4,0x23,0x40,0xb3,0x4b,0x07,0xe1,0x6e,0x65,0x0a,0x11,0xd7,0xb2, - 0x5b,0x0d,0x06,0x76,0x83,0x51,0x05,0xfa,0x99,0x4a,0x43,0x87,0xc9,0xba,0x87,0x84,0xa7,0xc6,0x13,0xf7, - 0x13,0xdb,0xd2,0x4e,0x92,0xba,0xcb,0xc1,0x20,0x75,0x00,0xa9,0xd7,0x04,0xf2,0x2b,0x79,0x04,0x87,0x94, - 0x5d,0x66,0xd5,0x8d,0x77,0x3e,0x7b,0x04,0x26,0x8f,0x03,0xc3,0xde,0x48,0x65,0xeb,0xb5,0xa9,0x6c,0xf7, - 0x70,0x24,0x02,0x0d,0x0d,0x9e,0x9f,0xb2,0x1b,0x60,0x15,0xe2,0x96,0xfc,0x04,0x67,0x57,0x5e,0xbb,0xb6, - 0x27,0xb6,0xed,0xba,0xdb,0x76,0xab,0x65,0x78,0xe5,0xe8,0xc6,0x9d,0xf1,0x97,0x69,0xdd,0x03,0xeb,0xb3, - 0x2e,0x06,0xd9,0x5a,0x43,0xea,0xba,0xa9,0x2f,0xb2,0xee,0x74,0xba,0x67,0xc4,0x0b,0xdb,0x9a,0x4e,0xdd, - 0xae,0xa3,0xf1,0x6d,0x9b,0x8d,0x37,0x6c,0x32,0xcd,0xe4,0x98,0xde,0x10,0x38,0xfc,0xdc,0x9e,0xf0,0x37, - 0xdb,0x95,0xab,0x0b,0xa2,0x9e,0x20,0xf2,0x05,0x54,0x07,0x76,0x5e,0xbe,0xf8,0x3b,0x56,0x63,0xbd,0xfe, - 0xfa,0x2b,0xfc,0xba,0xcf,0x8f,0x8c,0xde,0x2e,0xba,0xd5,0x13,0x2a,0xa7,0xaf,0x71,0x3b,0xe2,0x6c,0xaa, - 0x7f,0xbe,0xca,0xe2,0x42,0x65,0x74,0xa0,0x65,0x55,0x7a,0x36,0xcf,0xe2,0xdd,0xdd,0x4a,0x41,0xa2,0x21, - 0x2f,0x07,0xda,0x12,0x62,0xa5,0x33,0x0f,0x36,0x1e,0x92,0xf9,0xe4,0x9d,0x47,0x3d,0x0a,0xe7,0xc1,0xe0, - 0x41,0xc1,0x7e,0x11,0xac,0x13,0x7d,0xa0,0x29,0x74,0xdf,0x50,0xd0,0x55,0x75,0xdd,0xb1,0x70,0xca,0x68, - 0x2d,0xf8,0xf0,0x56,0xed,0x1f,0x77,0x72,0xb9,0x6f,0x9f,0x6a,0x53,0x01,0x8d,0x02,0x26,0x46,0xb8,0xf3, - 0x4e,0xcc,0x7a,0x35,0x2a,0x80,0x05,0xe5,0xb0,0x49,0xcf,0x95,0x65,0x89,0x27,0x17,0xf9,0x7c,0x5a,0x65, - 0x05,0x98,0x2f,0x58,0x7f,0x10,0x24,0xcf,0x17,0x8a,0x95,0x9b,0xfc,0x8e,0x8c,0xb4,0xbe,0x29,0x26,0x2f, - 0x52,0x98,0xc9,0xdf,0x38,0x75,0xea,0xb0,0x00,0xc3,0x8d,0xaa,0x45,0x92,0xd7,0xe4,0x13,0x60,0x72,0xfd, - 0x48,0xa9,0x04,0xbc,0x94,0x40,0x7f,0xb9,0xc4,0x53,0x62,0x6d,0xa9,0x3f,0x5c,0x44,0x3f,0x53,0xfa,0xac, - 0x78,0x2a,0x0d,0x51,0xba,0x7d,0xe6,0x74,0xdd,0x71,0x4e,0xb7,0x83,0xa0,0xe7,0x8f,0x13,0x5a,0xbb,0x57, - 0x53,0x4e,0xd7,0xcf,0x52,0xff,0x9c,0xc6,0xcb,0x9e,0x97,0x8d,0xa8,0x63,0xf5,0xc0,0xe8,0xa5,0xb2,0x2f, - 0xc9,0x63,0x2f,0x07,0x86,0x45,0x11,0x94,0xb7,0x85,0x5f,0xb8,0xf0,0x0b,0x17,0xed,0xc2,0x84,0x6f,0xdc, - 0x8c,0x3f,0xee,0xee,0x18,0x8b,0xa4,0xdb,0x68,0x57,0x1f,0xb4,0x05,0x9f,0xb0,0x38,0x5f,0x13,0x5a,0x2b, - 0xfa,0xf1,0xfc,0x45,0xbc,0x5a,0x3f,0x5a,0xa4,0x27,0x2e,0x41,0xbb,0x61,0xcb,0x81,0x87,0x98,0x7b,0xbd, - 0xc8,0x76,0x67,0x41,0x28,0x77,0x7a,0x5a,0x9e,0x9d,0x9e,0x06,0x6c,0xac,0x22,0xcf,0xfe,0x47,0x75,0x35, - 0x46,0xef,0x24,0x23,0x4e,0x89,0x6c,0xbf,0x28,0x57,0xf3,0x29,0xcd,0x36,0x21,0x0e,0x9a,0xad,0xdd,0xef, - 0x0b,0x36,0x12,0xec,0x62,0xc3,0xf5,0x1a,0xc4,0x16,0xe5,0xe8,0xcd,0x93,0xd7,0xcf,0xe1,0xd5,0x52,0xe7, - 0x67,0x6c,0x6d,0x4b,0x1f,0xb2,0x93,0x02,0x51,0xb1,0x98,0x37,0x1e,0x74,0xcd,0xba,0x4b,0x2c,0x01,0xcf, - 0xeb,0xe5,0xe2,0x69,0xb9,0x2a,0x9a,0xbd,0x3d,0x3a,0xb8,0xdc,0x18,0xef,0xf9,0xea,0x74,0x41,0xc4,0xf8, - 0xf6,0x5f,0x05,0xa1,0x5f,0xdd,0xd4,0x79,0xd6,0x78,0xee,0x81,0xcf,0xb2,0x7a,0x52,0xe5,0xb0,0x9c,0xe7, - 0xd9,0x61,0x74,0x9f,0x12,0xba,0x3f,0x24,0x72,0x31,0x1d,0xfa,0x9b,0xd3,0x48,0x88,0x53,0xc2,0xd8,0xa8, - 0x84,0x50,0x29,0x3f,0xd6,0xf4,0xb8,0x4a,0x76,0x73,0x3a,0x12,0x70,0x12,0x7e,0x06,0x1b,0xf8,0x58,0x60, - 0x6b,0xe3,0x2b,0xaa,0xb2,0x6b,0x5a,0xdd,0x24,0xf5,0xb8,0x36,0x44,0xa7,0x53,0x7f,0xfc,0xab,0xa0,0x8d, - 0x56,0x51,0x79,0x9a,0x9b,0x92,0x5a,0x5a,0xc2,0x72,0x23,0x52,0x2b,0x7a,0x5d,0xe1,0xd5,0x25,0x75,0x4f, - 0x9c,0xc1,0xc0,0xa3,0xf8,0x5b,0x10,0xa6,0xf7,0xbf,0xb8,0x25,0x35,0x5d,0x77,0x24,0x5a,0x82,0x06,0x86, - 0x9d,0x98,0x78,0x59,0x6b,0xf7,0xf4,0xb9,0x16,0x21,0x1b,0x67,0x23,0x0c,0x08,0xcd,0x59,0xd8,0x53,0xfb, - 0xa3,0x6c,0x0c,0x79,0xd3,0x1e,0x26,0x14,0x38,0xd5,0x7a,0xdd,0xec,0xb2,0x09,0xea,0x2e,0x9e,0xc3,0xc9, - 0x78,0xe2,0xe8,0xb0,0x98,0xba,0x63,0xe7,0xbc,0x81,0xd5,0x7f,0x51,0x36,0xa0,0x7f,0xd9,0xf2,0xde,0x03, - 0x87,0x77,0x9e,0x79,0x40,0x17,0x04,0x69,0xed,0x42,0x77,0xdc,0xd8,0xb3,0x97,0x69,0xf4,0x45,0x7a,0x6d, - 0x49,0x49,0xc5,0x12,0x3c,0x4d,0x2a,0x36,0xea,0x90,0xaa,0x53,0x05,0xe0,0xa4,0x61,0xff,0x53,0xec,0x23, - 0x7e,0xea,0xba,0x8c,0xba,0xaa,0xc5,0x40,0xb6,0xd0,0xa2,0x23,0xb3,0x5b,0x9c,0x67,0x92,0x00,0xfa,0x7a, - 0x5d,0xc1,0x52,0x4b,0xc3,0xf5,0xb8,0x88,0xab,0x71,0x78,0x8f,0x10,0x0c,0x9f,0x21,0x3c,0x0a,0x42,0x46, - 0x98,0x6b,0x33,0x56,0x10,0x76,0xc6,0xfa,0xb6,0xf0,0xf0,0xf5,0x73,0xbb,0xcf,0xef,0x18,0xb2,0x3f,0x1a, - 0xcf,0xd4,0xc1,0x6d,0xe4,0x91,0xeb,0x93,0xbf,0xd7,0xd6,0x6b,0x21,0x8d,0x61,0x83,0x66,0xac,0x7d,0x9b, - 0x13,0x41,0x73,0x7e,0xc7,0xfc,0x15,0x78,0x6f,0x3b,0xe3,0x9b,0x67,0x58,0xb8,0xc3,0x46,0x75,0x5b,0x53, - 0xd3,0x24,0xd0,0x38,0x8d,0xea,0x47,0xa9,0x81,0xc2,0x1a,0xd8,0x0d,0x84,0x65,0x92,0x1e,0xd7,0x27,0x27, - 0x00,0x50,0xd0,0x0a,0x33,0x26,0x85,0xc6,0x65,0x58,0xb1,0x7f,0x23,0x74,0x29,0xef,0x43,0x6c,0xfc,0x18, - 0xcb,0x5e,0xd0,0x43,0x0f,0x4d,0xf9,0x6b,0x47,0x44,0x57,0x8c,0x3b,0x7b,0xae,0x4a,0x7a,0xfd,0xe4,0x8c, - 0xeb,0x30,0x3b,0xcb,0x51,0x0f,0xfa,0x0e,0xe4,0x71,0xe6,0x15,0xca,0x1c,0x89,0xae,0x7b,0x95,0x6f,0xe2, - 0x66,0x9c,0xf9,0xed,0x19,0x57,0xf2,0xf0,0x73,0x4d,0x32,0x0d,0x83,0x3f,0x68,0xf8,0x73,0xcd,0x7a,0x05, - 0x89,0xed,0x8b,0x9b,0xd8,0x1b,0xf6,0xb3,0xae,0x1c,0x6e,0x9c,0x19,0x15,0x3e,0x6d,0xa7,0x2e,0x9a,0x18, - 0x37,0x31,0xf4,0xfc,0xde,0xf7,0xaf,0x1c,0xb9,0x23,0x02,0x9f,0x36,0xd7,0xa3,0x25,0x05,0x9e,0x2e,0xe8, - 0x12,0x6e,0x55,0x18,0xb3,0xad,0xe2,0xb5,0x99,0x79,0x4f,0x0a,0x60,0xab,0x9b,0x54,0x84,0x5e,0x08,0xbe, - 0xaa,0xd1,0x0a,0x1e,0x7c,0x74,0x40,0xb1,0xdb,0x23,0xfe,0xa0,0xd1,0x3e,0x6b,0x3e,0x60,0x3f,0xe2,0x50, - 0x86,0xda,0xbb,0xa8,0x2b,0x7a,0x31,0x10,0x4d,0xfb,0x71,0x59,0x8b,0x25,0x90,0xac,0x2f,0x03,0xdc,0xed, - 0x66,0xb4,0xb5,0x3f,0x0a,0x71,0x4a,0xa7,0x23,0xd6,0xa2,0x3f,0x70,0x35,0x5d,0x01,0x45,0x28,0x71,0x1d, - 0xb0,0x0b,0xd2,0xe3,0xab,0x82,0xe0,0xee,0x24,0xb9,0x45,0x96,0xa8,0xb9,0x9c,0xa5,0x51,0x69,0x6a,0xe4, - 0x73,0x03,0x28,0xa2,0x88,0xf0,0x6d,0x7d,0xa2,0xf8,0xc3,0x9a,0x3e,0x04,0xd8,0x8e,0xf3,0x58,0xbe,0xcf, - 0x37,0x23,0xdd,0xdf,0x24,0xdd,0x00,0x65,0xde,0x31,0xa4,0xbc,0xc0,0xdc,0xfb,0x63,0xb2,0x89,0x9f,0x1b, - 0x98,0xcc,0x34,0x13,0x0c,0x3e,0x67,0x4e,0x5c,0x1b,0x73,0xe6,0xb7,0x30,0xae,0x89,0xf1,0xbc,0xe9,0x1f, - 0x42,0x2a,0x43,0xd0,0xc7,0x60,0x71,0x9c,0x12,0xcf,0x46,0x7f,0x68,0x0c,0x75,0x44,0xeb,0x2d,0xdf,0xa7, - 0x84,0xe2,0xa3,0x58,0x9e,0xeb,0xcd,0xa6,0x3b,0x0c,0x33,0x08,0x3a,0x20,0xf3,0x8a,0xfa,0x4b,0xd4,0xab, - 0x5e,0x1c,0xd3,0x4a,0xe5,0xb5,0x22,0x33,0x3d,0xea,0x59,0xfc,0x1c,0x64,0x01,0x47,0xd7,0x80,0x81,0x7f, - 0x9c,0xab,0xd5,0x12,0xd6,0x85,0x34,0x85,0x11,0x94,0xfe,0x3a,0xfe,0x46,0xa3,0xc3,0x4b,0x70,0x13,0x39, - 0xdb,0x48,0x01,0x0a,0x73,0x18,0x07,0xaa,0x66,0xb8,0xc8,0xaf,0x89,0x94,0x71,0xe3,0xa3,0xb3,0xaf,0x4e, - 0x4c,0xb2,0x99,0xa2,0xf4,0x51,0x3d,0x4a,0xc1,0x67,0xf2,0xa7,0x26,0x97,0xc6,0x4d,0x95,0x70,0x33,0x13, - 0x3a,0x89,0x68,0xd6,0x51,0xcb,0x44,0x22,0x12,0xd0,0x43,0xe4,0xde,0x9b,0x08,0x88,0x6a,0x42,0x24,0x0f, - 0xa7,0xeb,0x1d,0xb2,0x72,0x1b,0xe3,0x85,0xdb,0x5b,0x7d,0xde,0x36,0x76,0x2e,0x80,0x6c,0x31,0x10,0x1a, - 0x0a,0x06,0x60,0xa4,0x36,0xe0,0x9d,0x85,0xd2,0xb9,0x02,0x83,0x66,0x4a,0x94,0x5e,0x89,0x52,0x4a,0xa4, - 0xc9,0x51,0x11,0x96,0x4e,0x3a,0x41,0xa5,0x52,0x82,0x3e,0x1a,0x4b,0x9c,0xb3,0x58,0x02,0x25,0xf1,0x37, - 0xf5,0x85,0x2b,0x6f,0xbb,0x5b,0xbf,0x39,0xce,0x4e,0x54,0x99,0xec,0xd2,0xaa,0x29,0xe6,0x6b,0x21,0x8d, - 0x41,0xb3,0x1f,0xc2,0x27,0x22,0x8f,0x53,0xf9,0x90,0x4f,0x40,0xd0,0x27,0x74,0x3e,0xa2,0xa1,0x40,0xbb, - 0x57,0x06,0xd1,0x38,0x25,0xe6,0x2d,0xfe,0xa0,0x85,0x64,0xa6,0x28,0x0c,0xff,0x77,0x59,0xa5,0x9d,0xd2, - 0xcf,0xb5,0xf6,0x7f,0x4d,0x13,0x26,0xa4,0xad,0x44,0x32,0x8d,0x6e,0xd3,0x3e,0xd3,0xbf,0x19,0x3c,0xa0, - 0x6c,0x0b,0x66,0x53,0x34,0xc6,0xa7,0xd3,0x9e,0x03,0x20,0x62,0xef,0x69,0x84,0x21,0x3b,0x4d,0xa2,0x26, - 0x38,0x91,0x67,0x4f,0xb6,0x08,0x18,0xac,0xa8,0x73,0x78,0xca,0x39,0x94,0x3a,0xf6,0x9e,0xfb,0x44,0xb4, - 0xf0,0x19,0x7e,0xe1,0x84,0xfb,0xc9,0x9b,0xb0,0x91,0xc1,0x8e,0x2b,0x4b,0xed,0x54,0x04,0xae,0x40,0x49, - 0x59,0xa4,0xf9,0xf5,0x2e,0x0d,0x3d,0xea,0x26,0x80,0x0f,0xf9,0x18,0xa6,0x34,0xf1,0xdd,0x8c,0xda,0x99, - 0x4d,0xd8,0xd5,0x7b,0xe3,0xd9,0x47,0x61,0xf4,0x8e,0x3b,0xd4,0x5a,0x7e,0x76,0xe8,0xb6,0xc5,0xc3,0x5f, - 0xae,0xf6,0xa2,0x07,0x1e,0x1e,0x6f,0x8e,0x0f,0x69,0x6c,0x81,0xab,0xf0,0x83,0x3b,0xd0,0xbb,0xc7,0x86, - 0x01,0xb8,0x37,0x22,0xdd,0x7c,0x63,0xbc,0x5e,0x4d,0x98,0x8f,0xca,0x11,0x96,0xc5,0xa3,0xca,0x70,0xfe, - 0x6f,0x58,0x18,0x66,0x3e,0x70,0xa2,0x18,0x2b,0x49,0xb0,0x4d,0xff,0xe4,0xad,0x78,0xe3,0x10,0x46,0x42, - 0xeb,0x9b,0x54,0xc3,0x7b,0xcb,0x94,0x98,0xa9,0x66,0xe4,0x0c,0x88,0xec,0x52,0xb2,0x0f,0xc1,0xd3,0x74, - 0x49,0x15,0x66,0x53,0xc6,0x05,0xf6,0xeb,0x92,0x10,0x62,0xf9,0x28,0x37,0xfd,0x2a,0x11,0x7a,0xa4,0xba, - 0xe1,0xe1,0xc1,0x04,0x12,0x3b,0x42,0xd6,0xaa,0x52,0xd2,0xb8,0xee,0xa0,0x93,0x78,0x3c,0xa1,0x5e,0x55, - 0x2a,0x68,0xb5,0xb1,0x73,0x51,0x96,0x9f,0xe0,0x0f,0xff,0x44,0x77,0xd9,0x0d,0xe2,0x89,0x37,0x88,0xe7, - 0x85,0x74,0xed,0xa5,0xe8,0xdc,0xb9,0x65,0x3d,0x87,0x9d,0x2c,0x3f,0x70,0x89,0x54,0x68,0xdb,0xff,0xd1, - 0x48,0x7d,0x03,0x6d,0x6a,0xed,0x7f,0x47,0x7d,0xf8,0x71,0xab,0x0b,0x3f,0x7a,0x5d,0xd8,0x7d,0x06,0x79, - 0xd6,0xab,0x82,0xf6,0x5f,0x8f,0x8f,0x11,0xbc,0xd8,0x69,0x47,0x6b,0x0d,0x4d,0x36,0xd2,0xef,0xd2,0x44, - 0x4b,0xb8,0xfc,0x03,0x91,0x33,0xcb,0x2a,0xd1,0x62,0xa7,0x2c,0x99,0x56,0xc6,0xed,0x3c,0x1a,0x4d,0x8d, - 0x24,0x38,0x71,0xc2,0xc4,0x86,0x9e,0x1b,0x27,0x05,0x6a,0x58,0x92,0xd7,0x9c,0x84,0x5e,0x95,0x2f,0xbd, - 0x53,0x0f,0x8b,0x46,0xd5,0xb0,0x2d,0x45,0x5b,0x91,0xa4,0x9d,0x11,0xad,0x80,0xd3,0xce,0x8b,0x40,0x4b, - 0x50,0xd0,0x11,0x70,0x94,0x4f,0xb0,0x1a,0x7c,0xaa,0x15,0xec,0x13,0x0f,0x55,0xcd,0x12,0x7c,0x05,0xfa, - 0x7c,0xa0,0x2e,0xaa,0xf1,0xbc,0x0a,0xa3,0x78,0x55,0xc1,0x40,0x67,0x37,0xeb,0xd7,0xcf,0x68,0x4d,0x5a, - 0xe4,0xc9,0x51,0xfa,0x94,0x6b,0x05,0x94,0x6b,0x6e,0x18,0xbf,0x23,0xcd,0x16,0x00,0xdf,0xa5,0x2c,0x29, - 0x52,0xde,0x21,0x15,0x0c,0x89,0x05,0x85,0xf4,0x11,0x8c,0xb0,0xe5,0x90,0x5f,0x54,0xe5,0xef,0x70,0xc7, - 0x16,0x9b,0xaa,0x46,0xd3,0xea,0xe6,0x3c,0x6e,0x7c,0x76,0x2c,0x67,0x28,0x2f,0x60,0x41,0x48,0x87,0xb3, - 0x31,0xec,0x2c,0xe0,0x7d,0x40,0xef,0x70,0x15,0x49,0x35,0xad,0xd3,0xb4,0x68,0x1d,0xea,0x1c,0x93,0x5c, - 0x5e,0xa4,0x9d,0x2a,0x09,0xcb,0x0e,0x7d,0x1e,0x6d,0x7d,0x53,0xd2,0x57,0x27,0x1c,0x59,0x21,0xa2,0x59, - 0x3f,0xab,0x22,0xfa,0x3f,0x9c,0xd0,0x51,0x50,0xf9,0x0b,0xfa,0x5b,0xd8,0x8e,0xa1,0xa5,0x55,0x7a,0x4e, - 0xb8,0xad,0x40,0x18,0xcc,0x0a,0x3e,0xae,0x77,0xb7,0x68,0x18,0x2b,0xba,0xf6,0x14,0x6f,0x4e,0xb6,0x37, - 0x72,0xf8,0xa0,0xd0,0xa0,0xd7,0xab,0x88,0x80,0x98,0xc4,0xaf,0x21,0xb3,0x32,0x71,0x6e,0x1a,0xe1,0x0c, - 0x5c,0x8f,0xbf,0x0f,0xb5,0x30,0xc1,0xda,0xff,0xab,0x5a,0xd1,0x81,0xcf,0x8d,0xa5,0x72,0xba,0xd3,0xd4, - 0x83,0x1a,0x98,0x30,0x45,0x44,0xb4,0xc0,0x69,0x05,0xe4,0x9c,0x85,0x6c,0x23,0x97,0xd1,0x91,0x3f,0xa6, - 0xbf,0x35,0xea,0xc6,0x79,0x28,0xa5,0x93,0xdf,0xb0,0x2c,0xaa,0x22,0x7e,0x9d,0x8d,0x37,0x6b,0xb5,0x1a, - 0x12,0x35,0x9e,0x29,0x04,0x78,0x61,0x14,0x42,0x4f,0xf0,0x89,0x23,0xfa,0x88,0x9f,0x60,0xa6,0x1e,0x45, - 0x71,0x4d,0xa7,0xc8,0x84,0x6a,0x99,0x70,0x57,0x89,0xda,0x47,0x5d,0x93,0x28,0x72,0xfd,0x29,0x78,0x3d, - 0x52,0x90,0xa7,0x79,0x18,0xea,0xde,0x44,0xd2,0x8a,0x74,0xd0,0xb4,0xe0,0x2d,0xcc,0x77,0xa1,0x1e,0xa2, - 0xa7,0xd7,0x8a,0x6e,0xcb,0x7e,0x21,0xaa,0x9a,0xcb,0x68,0x88,0x76,0xd8,0x54,0x6d,0x01,0x12,0x04,0x62, - 0x84,0x77,0x21,0xff,0x1b,0x02,0x03,0xc2,0x84,0xc3,0xbd,0x11,0x95,0x14,0xe9,0x53,0x0e,0xf6,0x84,0xb4, - 0x0e,0x23,0x9e,0x9e,0x9a,0x66,0x03,0x3d,0x8e,0x1b,0x19,0x17,0xa4,0x0c,0xf4,0xc4,0x96,0x32,0x53,0x9a, - 0xbd,0x9a,0x46,0x88,0x74,0xd9,0xfd,0x29,0xcd,0x02,0x3e,0x98,0x28,0xfa,0x44,0xd5,0xba,0x18,0x36,0x31, - 0x0b,0xc0,0x6a,0x37,0xaa,0x6f,0x99,0x0b,0xd4,0x23,0xc3,0x8e,0x01,0x10,0x09,0xb5,0x00,0x6a,0xc6,0xb1, - 0xe7,0x08,0x8f,0x02,0xb0,0x2f,0xd7,0x6b,0xcd,0xd7,0xf2,0x2b,0x9d,0x41,0xba,0x70,0xde,0x2d,0x9c,0xb7, - 0x0b,0xe7,0x28,0xbc,0xd9,0x3e,0xb0,0x7e,0xf6,0xa4,0xae,0x62,0xa5,0xcf,0x02,0x5a,0xc2,0x48,0xd8,0xd8, - 0xda,0xc4,0xde,0x88,0x2c,0xdd,0x67,0xff,0xf6,0x99,0xb5,0x10,0x4c,0x79,0x56,0xbf,0x61,0xa5,0xf0,0x7a, - 0xfd,0x2d,0x02,0xb9,0xc8,0x0b,0x74,0x92,0xd9,0xf1,0x47,0x56,0x8b,0xda,0x73,0xfd,0x28,0x3d,0x97,0x68, - 0x00,0x70,0x54,0x15,0xea,0x87,0xb6,0x01,0x3c,0x08,0x0c,0x31,0x0c,0xaa,0xc3,0xe3,0xec,0xfe,0xd5,0x0a, - 0xf3,0x62,0x7b,0x03,0x5a,0xc1,0x17,0xce,0xba,0x0f,0xfe,0xa9,0xed,0x16,0xba,0xc2,0x85,0xe8,0x33,0x02, - 0x7e,0xc3,0xa5,0x80,0x56,0xe5,0x95,0xa8,0xd8,0x2d,0x02,0xe2,0xd3,0x8e,0x34,0x99,0x36,0xcd,0xbf,0x28, - 0xd7,0x4e,0x78,0xe5,0x51,0xa2,0x59,0x66,0x0e,0xae,0x62,0x7c,0x83,0xe3,0x9d,0xe0,0x4e,0xe4,0x41,0xf2, - 0xd6,0xd1,0xd1,0x35,0x92,0x79,0xcb,0x99,0xb3,0x59,0x27,0xb7,0xb0,0x95,0xdd,0x50,0xc7,0x14,0xef,0x74, - 0x31,0xb7,0xa2,0x64,0x22,0x6b,0x29,0x55,0x68,0x3e,0x4f,0x6b,0x9d,0xf9,0x7c,0x98,0x70,0x5a,0xbb,0xee, - 0x38,0xf0,0x30,0x50,0x2b,0xa4,0x99,0x11,0xa2,0x69,0x79,0x24,0x73,0xb6,0x69,0x52,0xf2,0xc6,0x40,0x15, - 0x2c,0x45,0x4c,0x9b,0xa6,0xaa,0xed,0x03,0x21,0xb0,0xb2,0xb1,0x7e,0xc4,0x7e,0xa2,0x2a,0x8d,0xfc,0x5c, - 0xec,0xf1,0x4a,0x27,0xdb,0xde,0x65,0x45,0x05,0xa4,0x97,0xa2,0x33,0x4e,0xf9,0x83,0x28,0x2c,0x0c,0x20, - 0xb0,0x39,0x87,0x09,0x41,0x77,0x7c,0x42,0x68,0x81,0x77,0x54,0xe9,0xc9,0x80,0x6a,0xfd,0x15,0xa3,0xb3, - 0x1a,0x9a,0x4a,0xfc,0xa0,0xf0,0x28,0x68,0xb2,0xc5,0x72,0x4e,0x4c,0x16,0xe0,0xae,0x84,0xa8,0x7f,0x3c, - 0xe1,0x0a,0x34,0x9a,0x98,0xa0,0x6b,0x5a,0xa4,0xbd,0x5e,0xd3,0x17,0xf1,0xc4,0xd4,0xbf,0xb1,0xb1,0x8f, - 0x56,0x82,0xa3,0x8a,0xe3,0xd5,0x89,0xd6,0x2d,0xe5,0x99,0x73,0x98,0x46,0xb2,0x8b,0x2c,0xe2,0x34,0xf9, - 0xd9,0x5d,0x30,0xba,0xdb,0x06,0x52,0x22,0x62,0x76,0x78,0x57,0xf0,0x1e,0xf3,0x14,0xfb,0x99,0xa7,0xd0, - 0xd4,0xbc,0xda,0x1d,0x90,0xda,0x81,0x6a,0x50,0xa6,0x63,0x7c,0x2e,0xca,0xa9,0x98,0x78,0x1f,0x7a,0xc2, - 0x41,0xc8,0x9a,0xce,0x13,0x9a,0xfd,0x1e,0x8d,0x63,0x9a,0x19,0xcd,0xe5,0x28,0xd3,0x7b,0x51,0x53,0xa7, - 0xd1,0x28,0x62,0x2d,0xf5,0x69,0x5e,0xa4,0xcc,0xfd,0x7e,0x8e,0xde,0xad,0x33,0x4b,0x6b,0x1b,0xed,0xf6, - 0xa9,0xb0,0xcd,0xaf,0xf4,0xd7,0x44,0x6f,0x29,0x6e,0xcc,0x50,0xa5,0x86,0x71,0xdf,0x2a,0x69,0x68,0x80, - 0x76,0xeb,0xce,0xc0,0xc3,0xeb,0xd1,0xad,0xf7,0x02,0x82,0xae,0x3b,0x5b,0xf7,0xcc,0x2a,0xfb,0xf3,0x86, - 0xbe,0xba,0x1c,0xd6,0xc4,0xf2,0xe6,0x0c,0xb8,0x1e,0x82,0x9a,0x69,0xe0,0x8b,0x05,0x27,0x59,0x5b,0xa4, - 0x61,0x48,0x75,0xcd,0xe2,0x7a,0xe2,0x00,0xde,0x4b,0x45,0x77,0x2f,0x81,0xe6,0x2b,0x6c,0xd4,0x4c,0x1b, - 0x7d,0xa2,0x00,0xd9,0x57,0x80,0x44,0xde,0x0b,0x0c,0x0d,0x4e,0xa3,0x21,0x32,0xe8,0x25,0xbd,0xb0,0xe3, - 0x25,0xb3,0x80,0xd9,0x02,0xa6,0x0a,0x28,0x10,0x07,0x7b,0x3e,0x56,0x58,0x21,0xf0,0xd7,0x63,0xd0,0x84, - 0x42,0xc7,0xaa,0x86,0x87,0x7f,0x04,0x7b,0xa4,0xaa,0xf1,0x95,0xb0,0xbe,0x25,0x50,0x3e,0xdd,0x27,0x02, - 0x6d,0x4a,0x34,0xe5,0x47,0xc4,0xa4,0xfa,0x58,0x3d,0x3a,0xb2,0x34,0xc7,0x47,0xee,0x6e,0x42,0x40,0x70, - 0x54,0x1d,0x7f,0xac,0x4e,0x22,0x2a,0xa8,0xae,0x2b,0x16,0xdb,0x32,0xfd,0x31,0xac,0x56,0x45,0x68,0x8c, - 0xb1,0x3e,0x55,0x96,0x76,0xa9,0x92,0x23,0xfb,0x42,0xb5,0x24,0xb6,0x4a,0x14,0x32,0xf4,0x34,0xd5,0x04, - 0xbd,0xf8,0xd3,0x2a,0x41,0xa7,0x0f,0x5b,0x92,0x96,0x3f,0x20,0xb5,0xfd,0x45,0x3e,0x50,0x58,0x3f,0x08, - 0x73,0x77,0x11,0x2d,0xb4,0x88,0xee,0xa8,0xc8,0x55,0x02,0xca,0xcf,0xac,0x1e,0xbe,0x03,0xd5,0x75,0xb9, - 0x18,0x55,0xc3,0xd3,0x2b,0xac,0x44,0x56,0x11,0x50,0x15,0x90,0x67,0x9f,0xe6,0x74,0x76,0xad,0x08,0x41, - 0x4d,0x07,0x03,0x1a,0x0a,0x71,0x4a,0x22,0xaa,0x61,0x78,0x20,0x4c,0xaf,0xbe,0xa3,0x62,0xcf,0x81,0x97, - 0x2e,0x9b,0xb2,0x84,0xb7,0xf0,0x77,0xc4,0xfa,0xf0,0xfa,0xcc,0xe6,0x84,0x3e,0x02,0x6f,0x75,0xe6,0x16, - 0x67,0x3f,0xaf,0xa0,0x82,0xd9,0xb6,0xe7,0x63,0x2b,0x32,0xea,0x0f,0x01,0xe0,0x46,0x51,0xa1,0x3a,0xdb, - 0xb6,0x9b,0x96,0x6c,0x44,0xf9,0xbb,0x4b,0x57,0x53,0xd0,0xa7,0x5e,0xb3,0x33,0xdb,0xac,0x40,0x24,0x2b, - 0xb5,0xfa,0xa4,0x52,0xc5,0x38,0xd4,0x1d,0xab,0xc6,0x53,0x36,0xc4,0x2a,0x4c,0x27,0xce,0xa3,0xd8,0xe4, - 0x15,0xf8,0x3b,0xae,0x40,0x01,0x20,0xa0,0x1d,0x81,0x30,0xcd,0x97,0x29,0x8f,0xbc,0xf8,0xdc,0x7c,0x55, - 0xe0,0xef,0x98,0xff,0xc6,0xe7,0xd1,0x9d,0xfd,0x6d,0xda,0xfd,0x9d,0xfa,0xf8,0x72,0x4b,0xa5,0xc4,0x76, - 0x76,0xa7,0x38,0x77,0x57,0xb4,0x0a,0x3f,0xc9,0x6a,0xd1,0xb4,0xf7,0xa7,0x6b,0xd1,0x8e,0x95,0xdd,0xb3, - 0xe0,0xae,0xb9,0x81,0x4d,0x6e,0x06,0xcd,0x04,0xa4,0xbf,0x91,0xf2,0x34,0x52,0x8d,0xd3,0x05,0x35,0xa2, - 0xbb,0xf0,0x2d,0x5c,0x32,0x27,0x4c,0xb2,0xa1,0x7b,0xa0,0x24,0x82,0xd4,0x55,0x21,0xe2,0x94,0x36,0x3f, - 0x8f,0xd4,0xb6,0x1c,0x8c,0x35,0x81,0x8c,0x91,0x69,0xd3,0xdc,0xbb,0x12,0x5f,0x70,0x11,0x0f,0x3b,0xcb, - 0x15,0x87,0x32,0xb3,0x3f,0x36,0x5a,0xfa,0xb6,0x18,0x7f,0xc8,0x66,0x73,0xe4,0x94,0x57,0xc5,0xf7,0x62, - 0x22,0x31,0x9c,0xe5,0xf3,0x26,0xab,0xfa,0x0c,0x9c,0xff,0x8c,0x06,0x71,0xe8,0xb4,0x7c,0x9b,0x28,0xee, - 0x58,0x5f,0xf4,0xf0,0x23,0xb7,0x4e,0x12,0x01,0x02,0x96,0x28,0x03,0x44,0x26,0x1d,0x42,0x80,0x0a,0x69, - 0xe4,0xa8,0x1e,0xf1,0x68,0x6a,0x16,0x35,0x5d,0xe6,0x53,0xec,0x23,0xa6,0xf4,0xbd,0x14,0x22,0x88,0xe8, - 0x9b,0xc4,0x4b,0x81,0x70,0xf6,0x8c,0x06,0xfb,0x69,0x43,0x6c,0x82,0x39,0x7c,0xc0,0xf7,0xed,0xc2,0xf6, - 0xd0,0x48,0xca,0x20,0xad,0xa4,0x0f,0x05,0x32,0x26,0xd2,0xb0,0x11,0x99,0x71,0x8d,0x3d,0x30,0x6e,0x15, - 0x71,0x04,0xad,0x93,0x8d,0xb5,0x27,0xf2,0x16,0x19,0xe1,0xce,0x5a,0x2c,0x2e,0x78,0xa6,0x6d,0xa9,0x34, - 0xcb,0xfc,0xb6,0x43,0x0b,0x69,0x11,0xbc,0xd5,0x72,0x5b,0x8b,0x2e,0x55,0x12,0xba,0x4b,0x1d,0x0a,0x2a, - 0x1f,0xa5,0x2c,0xae,0xa9,0xd0,0x51,0xda,0xdc,0x1c,0xcf,0xd5,0x49,0xdf,0xb7,0x6d,0x08,0xb7,0xab,0xe6, - 0x3a,0xa9,0xa2,0xcc,0xaf,0xa8,0xdc,0x3b,0xf4,0xeb,0xc9,0x0d,0x69,0xbb,0x65,0x4a,0xe3,0x57,0x55,0x77, - 0x7a,0x59,0x77,0x7b,0x39,0x49,0x6a,0x74,0xd0,0x76,0x76,0x42,0x1c,0xa3,0x72,0xb2,0x58,0x4d,0x11,0x33, - 0xba,0xfc,0x11,0xb1,0x01,0x38,0x40,0x82,0xa7,0xbc,0x5f,0x78,0x3b,0x87,0xe5,0x5b,0xd4,0x10,0xef,0xd8, - 0x7b,0x35,0x2c,0x15,0xa6,0x1f,0x89,0x68,0x33,0x9b,0xb5,0x44,0xec,0x36,0xa6,0x65,0x2b,0xde,0x33,0x97, - 0xe1,0x65,0x88,0x97,0x88,0xe5,0xde,0x79,0x82,0x2d,0xb7,0x5e,0x37,0xbe,0x93,0xb3,0xae,0xca,0x54,0x92, - 0x42,0xb9,0x31,0x3c,0x25,0xa0,0x99,0x66,0x15,0x73,0x57,0xf8,0x8e,0x28,0xcb,0xc6,0x44,0xcb,0x85,0xce, - 0x0f,0xc5,0xad,0xfd,0xd0,0x58,0xaa,0xe8,0x38,0xff,0x59,0x9a,0x51,0xdd,0xa2,0x74,0x8c,0xb8,0xa0,0x2d, - 0xad,0xd0,0xb9,0x8f,0xab,0x5e,0x88,0x59,0xb0,0x21,0x06,0x54,0x20,0x5b,0x11,0xa1,0x11,0xa8,0xc3,0x8f, - 0x3d,0x92,0xf0,0xa6,0x3b,0x1d,0x09,0x1d,0x21,0xb4,0x30,0xb0,0xdf,0x01,0x82,0x27,0xc2,0xc6,0x9a,0x35, - 0x8e,0xdb,0x70,0x97,0x47,0x63,0xf6,0x6e,0x76,0xde,0xaf,0xc4,0x10,0xe5,0x90,0xec,0xc6,0xd5,0xf8,0xba, - 0xa0,0x85,0x00,0x21,0x1d,0x77,0x89,0xff,0x33,0xdb,0xa2,0x66,0x27,0x0b,0x70,0xd8,0xe0,0x28,0xb7,0x55, - 0xde,0x34,0xe7,0x0b,0x64,0x8d,0xb4,0xc8,0xc0,0x1d,0x41,0xb9,0xc8,0xf8,0x27,0x73,0xe2,0xed,0xd9,0x35, - 0x93,0xf7,0xc0,0x8d,0x30,0x73,0xf4,0x72,0x83,0x22,0x11,0x41,0xb9,0x4f,0x92,0x67,0x86,0x3b,0xd0,0x0f, - 0x2c,0x44,0x1e,0xa5,0xd0,0x8b,0xd3,0xa8,0x61,0x0c,0xfe,0x43,0xcd,0xc7,0x01,0xa1,0xc3,0x9a,0xe6,0x77, - 0x4c,0xac,0x5f,0xb9,0x40,0x42,0x0d,0x11,0x84,0x7d,0x01,0x03,0x1e,0xeb,0x3a,0x38,0x83,0x9f,0x90,0xba, - 0xc9,0x81,0x51,0x52,0x48,0xdc,0xc1,0x44,0x0b,0x47,0x5b,0x42,0x80,0x11,0x22,0x28,0x05,0x17,0x2e,0x0b, - 0x66,0xe0,0x8f,0xf5,0xf9,0x4d,0x84,0x53,0x7e,0xd2,0x3a,0x5b,0xf1,0x15,0x8b,0xbe,0x2c,0xc5,0x38,0x11, - 0x6a,0xbf,0x26,0x2e,0xdf,0x05,0x05,0x73,0xd6,0x5c,0x2d,0x1a,0x50,0x8e,0x9f,0x9a,0x2d,0x7c,0x8e,0xaa, - 0x2c,0x43,0x0f,0xb7,0xd2,0xc0,0x88,0x60,0xdf,0x01,0x46,0x0d,0x83,0x48,0xe7,0x68,0xd3,0x59,0xe2,0x2a, - 0x1a,0x3f,0xa6,0x3f,0xf1,0x53,0xfc,0x09,0x8f,0xb2,0x50,0x3e,0x49,0x5a,0xd0,0x35,0x94,0x7a,0x3f,0x30, - 0x8c,0xbf,0x28,0x00,0xf7,0x4e,0x8f,0x6a,0x60,0xff,0x3d,0xdc,0xc1,0x45,0xbc,0xca,0x9a,0x55,0xd8,0xc3, - 0xc8,0x77,0xa7,0xa7,0xc1,0x5e,0xa6,0x76,0x0f,0xa3,0xd6,0xf9,0x73,0x65,0x49,0x05,0xdd,0xbd,0xa3,0x4c, - 0x1b,0xd1,0x10,0xaf,0x8a,0x4f,0x9a,0xbd,0xb0,0x18,0x07,0xa7,0xf0,0x92,0x0e,0x02,0x09,0x40,0xe4,0x4d, - 0xc9,0x51,0xe6,0x89,0x66,0xef,0x64,0xb0,0x25,0xee,0xa9,0xe3,0x2f,0x99,0xa0,0xe3,0x50,0xb4,0x1a,0x9d, - 0x3a,0x47,0x02,0x4e,0xfe,0x94,0x69,0x75,0xea,0x1e,0x1a,0xae,0xac,0x78,0xef,0x93,0x69,0xcd,0x33,0x39, - 0xb3,0x1d,0x70,0xf6,0x56,0x62,0x50,0x07,0x93,0x2b,0xd8,0x70,0xe5,0xf5,0x3b,0x1a,0x4a,0xe2,0xed,0xc5, - 0x6b,0x8f,0x4d,0x81,0x22,0xbe,0x89,0x1c,0x5d,0x5f,0xca,0x9f,0x31,0x23,0x20,0x3c,0x45,0xb1,0xc7,0x7f, - 0x55,0x22,0x41,0xf3,0x74,0x7d,0x84,0x3a,0x21,0x81,0x1c,0xb1,0x6e,0x2f,0x1f,0x1f,0x9f,0x18,0x2d,0x75, - 0xae,0xfd,0xc9,0xb7,0xc1,0xe8,0x69,0x26,0x7e,0x65,0xa7,0x65,0x72,0x95,0x51,0x1b,0xa7,0x05,0x87,0x5c, - 0x3f,0x85,0x7c,0x8c,0x7e,0xe6,0xc9,0x25,0xa7,0x36,0xc9,0x82,0x7f,0x7f,0x4b,0x6e,0xf0,0x93,0x27,0x67, - 0xf8,0x59,0x24,0xa7,0x9c,0x3a,0x4b,0xce,0xf9,0xf7,0x53,0x72,0xc3,0xbf,0x67,0xc9,0x19,0xff,0x5e,0x26, - 0xd7,0xf8,0xa1,0xf1,0x22,0xe2,0xc6,0xe9,0x2a,0x29,0x39,0xf9,0x3c,0xb9,0xf6,0x7a,0xf0,0x58,0x26,0xcd, - 0x17,0x13,0x12,0x83,0xac,0xc1,0x4c,0x1c,0x32,0xd8,0x53,0x49,0x47,0x4a,0x15,0x0d,0x6f,0x23,0x2f,0xd6, - 0x22,0xac,0xd2,0x99,0x7c,0x52,0x27,0x3a,0x26,0xe9,0x5c,0x47,0x89,0xa9,0x13,0xd9,0x86,0x97,0x85,0x09, - 0xf8,0x89,0x93,0x88,0x8d,0xd8,0x88,0xe2,0x49,0xf5,0x3b,0x6d,0x7d,0xc9,0x66,0x3c,0xde,0x43,0x1c,0x57, - 0x19,0x5b,0x22,0x6c,0xda,0xa6,0xa1,0x9a,0x28,0xca,0xc5,0x95,0x2e,0x15,0x1a,0x10,0x71,0x57,0xe0,0x53, - 0xb7,0x3b,0x19,0x4d,0x8c,0x73,0xa1,0xd9,0x39,0x49,0xaa,0xbc,0xf3,0x22,0x71,0x4d,0x86,0x91,0xda,0x3a, - 0x93,0x60,0x19,0xee,0xde,0x30,0x04,0x44,0xa5,0x38,0xad,0xc5,0xbe,0x6e,0xac,0xa9,0xce,0xad,0x70,0x28, - 0x46,0x5a,0xf2,0x8e,0xa3,0xf7,0x6b,0xc4,0xbb,0xb2,0xe7,0x65,0xc9,0xa6,0x4f,0xce,0x64,0xcf,0xd5,0xa8, - 0x3c,0x89,0x48,0x42,0x63,0x2a,0x37,0xf1,0xdd,0x6d,0x18,0xba,0xae,0xdd,0x88,0x47,0xcb,0x7c,0xcc,0xee, - 0xb0,0x5a,0x66,0x5d,0xab,0x58,0x2e,0x7b,0xd6,0x67,0x98,0x5f,0x4d,0xf0,0x88,0x76,0x25,0x0b,0x8d,0x55, - 0xdd,0x8a,0xfa,0x68,0x51,0xcf,0x29,0x1c,0x0d,0x59,0x11,0xa5,0xcf,0xfd,0x64,0x65,0xa4,0x73,0x54,0xbe, - 0xcf,0xca,0x43,0x4f,0xc8,0x9c,0x19,0x78,0xc8,0xcd,0xf2,0x29,0x3e,0x9c,0x13,0xdc,0x58,0xe5,0x65,0xe8, - 0xc5,0xc9,0xaa,0xc4,0xa9,0x19,0xe7,0x14,0x95,0x66,0x7d,0x0d,0x8b,0x1f,0xf5,0x33,0x3c,0x74,0x9d,0x8c, - 0xcd,0xa5,0x69,0xe9,0x9c,0x89,0x5b,0x3b,0xf5,0xca,0x98,0xa4,0x91,0xae,0x13,0x71,0x8a,0x08,0xd9,0xe8, - 0x5a,0xf5,0x5b,0xa7,0x5e,0x2f,0x95,0x85,0x65,0x22,0xf1,0xe3,0xb5,0xa9,0x23,0xa3,0xb9,0x70,0x49,0x89, - 0x08,0xd2,0x09,0xdf,0xac,0x7c,0xe8,0x35,0x93,0x9f,0x11,0x69,0xd5,0x38,0xd2,0x2a,0x7b,0x44,0x24,0x0c, - 0x44,0x0f,0xc0,0xdc,0xf7,0xa8,0xd0,0x24,0xfb,0x81,0x8f,0xa6,0x30,0xda,0xa8,0x79,0x72,0xda,0x52,0xca, - 0xb8,0xfe,0x27,0x10,0xaf,0x96,0x04,0xec,0xeb,0xf5,0x2a,0x64,0x97,0x9d,0x4e,0xd1,0xf6,0x24,0x31,0x55, - 0x26,0x41,0xc8,0xd0,0xaf,0x90,0x63,0xa7,0x4c,0x93,0x2a,0x9c,0xab,0x99,0x73,0x9d,0x08,0x79,0x35,0xfa, - 0xdc,0x74,0xd8,0x5b,0x72,0x9c,0xf9,0x73,0x3a,0x18,0x48,0x2a,0x57,0x11,0x37,0xe1,0xd4,0x49,0x41,0xa3, - 0xde,0x68,0xce,0x5e,0x01,0xfe,0x10,0x06,0x58,0x9d,0x24,0xae,0x4b,0xa1,0x2e,0xb3,0xd6,0xfe,0x28,0x68, - 0xcc,0x3a,0x03,0x76,0x01,0x5c,0xcc,0x2d,0x5f,0x7b,0xf5,0xb8,0xa8,0x7e,0xc7,0x34,0x01,0xb0,0xa6,0xc4, - 0x15,0xcc,0xd3,0x9b,0xb1,0x2d,0x48,0x53,0x11,0x13,0x4f,0x7a,0x24,0x81,0xd3,0x7c,0x8d,0x5c,0x67,0xa0, - 0x99,0x07,0x7c,0xa1,0xff,0xb9,0xcc,0xa4,0xd2,0x35,0xaf,0xd7,0x0f,0x0f,0x0e,0x74,0xc7,0x74,0x34,0x36, - 0x38,0xbe,0xff,0x99,0x16,0xe4,0x0a,0x0a,0xae,0xca,0x7c,0x19,0x01,0x93,0xed,0x1e,0x2a,0xdb,0xde,0xb8, - 0x35,0xc2,0xd8,0x7d,0xbf,0x71,0xb0,0x67,0xb4,0x0b,0x1b,0x9a,0xc9,0x15,0x6d,0x1d,0x27,0x82,0xee,0xa2, - 0x0d,0xcf,0xb4,0xb4,0x0a,0x1d,0x46,0x6a,0x49,0x22,0x09,0xd7,0xeb,0x84,0x37,0x19,0x61,0x7e,0x89,0xcc, - 0xd7,0x28,0xdd,0x18,0x02,0xe0,0x69,0xbc,0x1f,0x13,0xde,0x4f,0xcf,0x89,0x22,0x26,0x44,0x45,0x2d,0x1b, - 0xe4,0x31,0x2a,0x93,0x92,0x29,0xf8,0xe7,0xc0,0x20,0x8a,0x03,0x0f,0x13,0x69,0x3b,0xf7,0x2c,0x38,0x3d, - 0x26,0x0b,0x81,0xa9,0x91,0x0b,0x0a,0x91,0x1f,0xf8,0x8c,0x21,0xd2,0x92,0xf9,0xef,0x80,0x85,0xd1,0x9d, - 0x02,0x19,0x64,0x61,0x54,0x22,0x2f,0xe0,0x26,0x3c,0x0a,0x0b,0x39,0x96,0x58,0x44,0xbc,0x34,0xc4,0x62, - 0xc4,0xda,0x0e,0xfd,0x05,0xd7,0xa5,0x2d,0x4d,0x8a,0xa1,0x76,0x0e,0x14,0xa2,0x70,0x44,0xfd,0x23,0xe2, - 0x2f,0x1a,0xe3,0x6f,0x72,0x6c,0xbe,0x00,0x35,0x75,0x96,0x4e,0x3e,0xd9,0x43,0x9c,0x0b,0xc5,0x5c,0xa8, - 0x5b,0x66,0x43,0xab,0x6a,0xc8,0xfe,0x52,0x08,0xe7,0x99,0xc3,0x01,0xad,0x08,0x5c,0xb6,0xa0,0xb3,0xed, - 0xda,0x45,0x74,0x54,0x83,0x4f,0x68,0xd6,0xe8,0x20,0x13,0xe2,0x16,0x5e,0xe1,0xae,0x58,0x13,0xc2,0x0c, - 0xa7,0x09,0x57,0x8e,0x96,0x9a,0x33,0xe1,0x6b,0x82,0x7b,0x12,0xf9,0x3f,0x8f,0x46,0xdf,0xd2,0x69,0xb0, - 0x52,0xb4,0xa1,0x40,0x9e,0xad,0xd7,0x78,0x9d,0xc8,0xeb,0xa1,0xa5,0x63,0xeb,0xcd,0x06,0x82,0x73,0x8d, - 0x0b,0x4d,0x87,0x4c,0x87,0xd3,0x79,0x1f,0xf4,0xb4,0x35,0x89,0x38,0xd2,0xf5,0x80,0x75,0x9f,0xd3,0x76, - 0x4f,0xa3,0x96,0xd0,0x7c,0x42,0x78,0x6e,0x75,0x92,0xbc,0x0d,0x57,0xd4,0x19,0x26,0x05,0x34,0x15,0x07, - 0x74,0xc5,0x63,0x25,0xd8,0xf8,0x88,0x83,0xcc,0xbc,0x2a,0xe4,0x70,0x8d,0x2e,0x47,0x5e,0x79,0x7a,0xe7, - 0xc2,0xbe,0xe2,0xc8,0xa2,0x29,0x67,0x13,0x14,0x42,0x85,0xe9,0x50,0x08,0x5f,0xcf,0xe0,0x60,0x4e,0x67, - 0xa7,0xf2,0x9c,0x9a,0xb6,0x74,0x7e,0x33,0xff,0xc4,0x55,0x33,0xcf,0xc2,0x3e,0x85,0x23,0x27,0xab,0x32, - 0x42,0x2a,0x85,0x4d,0x40,0x50,0x23,0x0f,0x0c,0x5f,0x9c,0x99,0x48,0x19,0xda,0xb5,0x33,0xd8,0xc2,0xcc, - 0x64,0x13,0x48,0x27,0xa7,0x20,0xa4,0x58,0x6a,0x8d,0x5f,0x7a,0x11,0x8f,0x87,0x77,0x85,0xf2,0xa7,0x3d, - 0x45,0x80,0x23,0xda,0x78,0x1a,0x04,0x96,0x54,0x8e,0x79,0xd3,0x12,0xf3,0xba,0x64,0x52,0x81,0x1b,0x5a, - 0x46,0x9b,0x5d,0x1f,0xd3,0x67,0x46,0x4b,0x99,0x59,0x05,0x65,0xc7,0x40,0xe1,0x59,0xe5,0x8b,0x4d,0x35, - 0x59,0xfb,0xac,0x12,0x89,0xa7,0x7c,0x05,0xcd,0x40,0x9e,0xfc,0x0a,0xe7,0xa7,0x91,0x4d,0x49,0xaa,0xb1, - 0x8f,0x36,0xb6,0xa5,0x71,0x16,0x16,0x32,0xfb,0x08,0xcf,0x5a,0xfd,0x48,0xc0,0x95,0x13,0x7d,0x42,0x68, - 0x81,0xa1,0x0c,0xcd,0x5e,0x78,0x70,0x2f,0xf1,0x53,0x27,0x56,0x55,0x22,0xee,0x17,0xc1,0xe5,0x2a,0xdb, - 0xb7,0xa7,0xc2,0x3e,0x51,0xfa,0xa0,0x12,0xf6,0xc2,0x8b,0x71,0x40,0x2f,0x17,0xcc,0x6f,0x94,0xaa,0xd7, - 0xed,0x23,0x55,0xb7,0x4f,0x09,0x6d,0x11,0x32,0xb2,0x56,0x4f,0xf1,0x4c,0x59,0xea,0x33,0x9e,0x32,0x92, - 0x9a,0x38,0xac,0x45,0x7c,0xfc,0x1c,0x3e,0xaf,0xce,0xd2,0x1a,0x71,0xf4,0x35,0xf6,0x22,0x12,0xca,0x28, - 0x2f,0xdb,0x3c,0x4c,0xca,0x46,0x70,0x29,0xcc,0x1a,0xc2,0x49,0x02,0xb8,0x4f,0x89,0xe0,0x97,0x3e,0x44, - 0xb4,0xa2,0x2b,0xc9,0x78,0x5d,0x79,0xf2,0xe7,0xbc,0x45,0x50,0x35,0xf4,0x35,0x08,0x8e,0xd4,0x58,0x3f, - 0x58,0xed,0x1b,0x50,0x71,0xab,0x40,0xce,0xfa,0x76,0x44,0x39,0x03,0xdf,0x46,0xdc,0xac,0x5f,0xb2,0xdd, - 0xaf,0xba,0xff,0xd8,0xc5,0xc5,0x01,0x80,0xdc,0x14,0x92,0x0f,0x82,0x0d,0x9f,0x90,0x25,0x94,0x2e,0x82, - 0xb2,0x58,0xae,0x17,0xb0,0xfe,0x53,0xb8,0x33,0x8a,0x8e,0xcc,0xd7,0xd5,0x98,0x28,0x9b,0x70,0x95,0xd4, - 0xd1,0xf8,0xf8,0x9a,0x46,0x76,0xd2,0xb1,0xb2,0x5d,0xb9,0x78,0x56,0x44,0x3e,0xb8,0x08,0x34,0x98,0x3e, - 0x20,0x1b,0x44,0xa2,0x11,0xb1,0x13,0x6c,0xa1,0x4b,0xdf,0x16,0x3a,0xa3,0x39,0x2a,0x8f,0xeb,0x93,0xa8, - 0xcf,0x03,0x96,0xc8,0x1a,0xa2,0x0a,0x67,0xc7,0x44,0x41,0xd9,0x68,0x22,0x27,0x1d,0xb3,0xfc,0x49,0x34, - 0x36,0x4e,0x5e,0xdf,0x1c,0xd0,0x08,0x7f,0x0e,0xa9,0xc6,0x3c,0x9c,0x28,0xd8,0x9d,0xb0,0x47,0x3e,0xf1, - 0x89,0x44,0xa0,0xd1,0xc8,0x68,0x66,0x7e,0x0e,0x39,0x4a,0xc6,0x0c,0xe8,0xe7,0x3a,0x9c,0xb3,0x6e,0x6d, - 0x6f,0x42,0x79,0xa2,0xc9,0xc6,0xcd,0x57,0xfa,0x56,0x00,0xda,0xfb,0x9e,0x42,0x70,0x46,0x6b,0x16,0xc5, - 0x30,0x7a,0x1c,0xa3,0x8a,0x71,0xa7,0x02,0x44,0xb2,0x12,0x73,0x06,0xf9,0x2a,0xbc,0x06,0xce,0x8b,0x7f, - 0xa6,0xbf,0xd2,0x66,0xf7,0x03,0x69,0x2e,0x26,0x84,0x5b,0x5a,0x31,0x19,0xaf,0xf5,0x04,0xca,0x48,0x26, - 0x36,0x26,0x60,0x53,0x65,0xfd,0x19,0x94,0x98,0x6b,0x25,0xee,0xfb,0x12,0xa0,0x1c,0xec,0xa5,0x32,0x30, - 0xfa,0x7b,0x1a,0x98,0xce,0xa2,0x51,0x87,0xdb,0x36,0xb4,0x2e,0x5a,0xf4,0x13,0x63,0x19,0x5f,0x55,0x6c, - 0xb3,0xf1,0x27,0xd5,0x2a,0xdb,0x4c,0x3b,0x21,0x0a,0x0b,0xa2,0x92,0xe5,0x87,0x6e,0xc2,0xa1,0xa8,0x27, - 0xeb,0xf8,0x44,0x65,0x9e,0xbd,0x3a,0xcc,0x43,0x78,0xdb,0x33,0x2c,0x8c,0xfa,0xec,0x42,0xf5,0x39,0x32, - 0x1d,0xcd,0x92,0x7c,0x78,0xef,0xb2,0xa0,0xe3,0x14,0x01,0xb0,0xe4,0x69,0x58,0xd4,0x2c,0x1c,0x3a,0x27, - 0x12,0x2a,0x3d,0x47,0x8c,0xd8,0x7a,0x89,0xe0,0x0a,0x84,0x65,0xe6,0x10,0x95,0xe5,0xf5,0x87,0xac,0xce, - 0x2a,0x22,0x81,0x28,0x9b,0x52,0xc7,0x1a,0x87,0x50,0x16,0xfb,0x06,0xbf,0x9f,0xa7,0x0d,0x82,0x65,0xe8, - 0x8f,0xf1,0x1d,0x36,0x61,0x1b,0x6b,0xe4,0x4c,0xbc,0x26,0x2f,0xc2,0xdc,0x13,0xd9,0x59,0x04,0x54,0x07, - 0xa0,0x35,0xc7,0xc4,0x13,0x4d,0xe9,0xdb,0x1c,0x87,0x4c,0x14,0xeb,0x66,0xca,0xde,0xda,0x44,0x7b,0x39, - 0x4f,0xe8,0x93,0x52,0x3e,0xf1,0xe4,0xa3,0x04,0x0f,0xe1,0xcc,0xf3,0x5f,0xa9,0xc2,0xdc,0xb2,0x38,0x39, - 0x1c,0xc6,0x4a,0x62,0x9b,0xca,0x2a,0xcb,0xcf,0x8b,0x77,0xc6,0x4d,0x9a,0x26,0x86,0x20,0x83,0xb1,0x80, - 0x41,0x74,0x2c,0xca,0x6c,0xe8,0x0b,0x83,0xca,0x3c,0x13,0x6d,0x8e,0x73,0xe5,0x72,0xec,0x96,0x7b,0x34, - 0xe1,0x6d,0xa7,0xd9,0x38,0x57,0x80,0xb6,0x20,0x51,0x3e,0x2b,0x0d,0x7d,0xc4,0x96,0xad,0x86,0x6c,0xc0, - 0x50,0x08,0x8a,0xa3,0xdd,0xcf,0x3d,0xdc,0x6c,0x84,0x38,0x9f,0xd3,0xf0,0x61,0x0f,0xe5,0xa1,0x34,0xcf, - 0x69,0xc3,0x0f,0x64,0x67,0x65,0x07,0xac,0xad,0xad,0x57,0xcb,0xac,0x32,0x67,0x0f,0xca,0xe9,0x14,0x26, - 0x3e,0xd8,0x22,0x95,0xdf,0x8d,0x01,0xc5,0x6d,0xfb,0x3d,0x31,0x7e,0x27,0x5d,0x23,0x6c,0x44,0x78,0x73, - 0x24,0x08,0x4e,0x33,0xe1,0x40,0x8d,0x47,0x1c,0x88,0xc6,0x3a,0x4b,0xe7,0x99,0x49,0xb1,0x47,0x63,0x69, - 0x94,0xf8,0xe5,0xc9,0xae,0x98,0x48,0x42,0x42,0xc0,0xbe,0x97,0x08,0x50,0xd3,0x40,0xc6,0xdd,0x63,0xa4, - 0xbb,0x25,0xcf,0xd2,0xc4,0x2b,0x21,0xba,0x22,0xe9,0x0a,0x51,0xc7,0x45,0xcc,0x2a,0xf7,0x2d,0xf3,0x38, - 0xf1,0x4d,0xb0,0x7d,0x11,0x8d,0x4a,0xe6,0x6b,0x54,0xc2,0xc6,0x49,0x76,0x41,0x70,0x7e,0x93,0x1c,0xd0, - 0x9a,0xb4,0xd3,0x1e,0x1d,0x60,0x81,0x74,0xa0,0x2f,0x24,0x38,0x7f,0x39,0xb7,0x07,0x0b,0x23,0xb1,0x57, - 0x18,0xa3,0xe7,0xcc,0xbf,0x61,0xaf,0x79,0x78,0x1d,0x77,0x27,0x8d,0x4e,0xae,0xd0,0x5b,0xc0,0xe4,0x35, - 0xb4,0xd1,0xed,0x32,0xda,0x1a,0x8b,0x23,0xd9,0xb8,0xcd,0x72,0xdc,0x70,0xea,0x49,0x82,0x10,0x2b,0xdb, - 0x16,0x05,0xef,0x33,0x1b,0xe2,0xe4,0x14,0xf1,0x02,0x5a,0xb6,0x97,0xbf,0xb6,0xec,0x23,0xd8,0x45,0x11, - 0xa7,0x79,0x87,0x5c,0x60,0xef,0x4c,0xef,0xab,0x67,0x59,0x8b,0x32,0xe9,0xae,0xce,0xd8,0x77,0x9d,0xff, - 0x66,0xff,0x30,0xde,0xd6,0xd5,0x8c,0x7d,0xa7,0xff,0x4e,0x69,0xa8,0xea,0xd4,0x6e,0x68,0xe3,0x28,0x48, - 0x20,0xb1,0x13,0x60,0x7c,0x13,0x47,0xa1,0x90,0x08,0xd8,0xec,0xb6,0xda,0x68,0x74,0xe7,0x89,0x15,0x5f, - 0x75,0x4c,0x04,0x58,0x4d,0xca,0x70,0x0a,0x05,0x0c,0x83,0xe7,0x29,0xe3,0xba,0x2e,0x5c,0x9a,0x40,0xbd, - 0x30,0x7b,0x67,0x4b,0x47,0xcd,0x17,0xfc,0x0a,0x49,0xd9,0x96,0xbd,0xd1,0xa8,0x86,0x00,0x99,0x49,0x80, - 0xd7,0xa0,0xc5,0x4a,0x66,0xf0,0x7c,0xd2,0xe6,0xf5,0x96,0xae,0x81,0x2d,0xf1,0x77,0x73,0xf6,0xd8,0x62, - 0x14,0x03,0x87,0x35,0xfc,0xe2,0x96,0x10,0xdb,0xc2,0x2b,0x4d,0x26,0x0f,0xef,0x4d,0x69,0x88,0x55,0x09, - 0x97,0xad,0xcc,0xea,0xfd,0xe7,0x7c,0xe7,0xa5,0xe7,0x05,0x90,0xf9,0x9e,0xdd,0xb7,0x22,0x64,0x7e,0x0a, - 0x3d,0x41,0xfc,0x96,0xf7,0xbc,0x4b,0x50,0x85,0xff,0x46,0x07,0x30,0x97,0x82,0x69,0x19,0x3f,0x11,0xc1, - 0xa1,0x9f,0x10,0x1c,0x19,0xbf,0x27,0xb1,0x7e,0xf0,0xcd,0xfa,0xdb,0xcb,0x9f,0x8d,0x9b,0x71,0xb6,0x17, - 0x20,0xec,0x4d,0x9c,0xc5,0xe0,0x0c,0x3d,0x9b,0xef,0x37,0x3e,0x80,0x6d,0x01,0x4a,0xdf,0xe1,0x48,0x93, - 0x85,0xd0,0x81,0xb4,0x3b,0x55,0xe9,0x54,0x76,0xf9,0xa3,0x92,0x77,0x28,0x11,0xba,0x09,0xea,0xc4,0xc6, - 0x03,0xe9,0xc5,0x17,0xbb,0x41,0x40,0x80,0xff,0x7b,0x09,0xf5,0x22,0x52,0xf4,0x5b,0x78,0xbb,0x92,0x95, - 0x34,0xdd,0xd6,0x04,0x5d,0x06,0xc1,0xa8,0x25,0x9e,0xcb,0x74,0x4c,0x80,0xb0,0xd1,0xa1,0x77,0x51,0x5d, - 0xe3,0x57,0xc7,0x1b,0xb8,0x17,0xa0,0xdb,0xa6,0xee,0xfe,0xb0,0x53,0x6e,0x3d,0xa8,0x2f,0xcf,0x83,0x38, - 0x58,0xa4,0xcd,0x05,0x1b,0x1a,0x8d,0xe5,0x71,0x4b,0x5b,0xf4,0x53,0x66,0xa2,0xfb,0x6c,0x6b,0x38,0x4d, - 0x8d,0x36,0xea,0xde,0x6f,0xab,0xac,0xba,0xf9,0x98,0x41,0x0f,0x5d,0xca,0x3d,0x34,0x77,0xc5,0xd2,0x9c, - 0xe6,0x97,0x41,0x9f,0x2a,0xe5,0x49,0x67,0xaf,0xb0,0xcd,0x65,0x95,0xcd,0x3a,0x3e,0x42,0xc6,0xf3,0x3a, - 0xf7,0xdd,0xb8,0x0d,0x98,0x02,0x43,0xc0,0x41,0xbb,0x84,0xe5,0x3c,0x7d,0x5b,0x8f,0xba,0x6a,0x95,0x92, - 0xad,0xa1,0xe6,0xfc,0x8b,0xc3,0x1f,0xbf,0x38,0x64,0x71,0xc0,0xe2,0x51,0x13,0xf2,0xb1,0x6b,0xff,0x55, - 0xf1,0xa2,0xac,0x7a,0x6b,0xc1,0x5f,0x8b,0x32,0x72,0xc2,0xc7,0x83,0x01,0x27,0x31,0x46,0x36,0x75,0x13, - 0x7c,0xc8,0x43,0xee,0x01,0xee,0x8f,0x22,0xc4,0x76,0x31,0xb6,0x40,0xe3,0xe1,0xa8,0xa7,0x5f,0x16,0x32, - 0xc9,0x7e,0xd4,0x47,0xbf,0xef,0x1f,0xce,0x3a,0x3f,0x67,0x3c,0xd6,0x68,0xe3,0x54,0x8e,0xc4,0x42,0x14, - 0x01,0x3f,0x77,0xe5,0x2b,0x58,0x42,0x91,0x91,0xf0,0x49,0x0b,0x14,0xda,0x0a,0x16,0x51,0xc1,0x1b,0x31, - 0xac,0xf4,0x9c,0x8b,0x30,0x34,0x71,0x0c,0x79,0xc5,0xba,0x3a,0xe8,0x6a,0xd9,0xaf,0xec,0x33,0x65,0xac, - 0x28,0x11,0xd6,0x75,0xeb,0xf5,0x2a,0x67,0x87,0x46,0xfa,0x21,0x6e,0x90,0x07,0x0c,0xba,0x02,0xa3,0x79, - 0x0c,0xa9,0xd2,0x7b,0x84,0xca,0xba,0x28,0xe7,0xc4,0xa9,0x73,0x0d,0x2d,0xd9,0x13,0xc6,0xe9,0x27,0x80, - 0x32,0x6e,0xa7,0x68,0x99,0x9c,0x6f,0xbf,0x9f,0x89,0x80,0xc2,0x6a,0x97,0xc5,0x49,0x0e,0x1b,0x2b,0x27, - 0x12,0x22,0x7f,0x94,0x54,0xa3,0xbd,0xbd,0x9c,0xb6,0x2e,0x2c,0x18,0xf3,0x13,0x4d,0x68,0x87,0x29,0x0e, - 0x7b,0xe7,0x69,0xe9,0x79,0x9e,0xbc,0xd4,0x30,0xa9,0x63,0xe4,0x79,0x0e,0x5f,0xeb,0x75,0xd3,0x4d,0x6a, - 0xcf,0xbb,0x81,0x64,0xe1,0x86,0x13,0xc4,0xe8,0x98,0xc2,0x6b,0xaf,0x91,0x87,0x3a,0xf9,0x3d,0xdb,0xae, - 0xd5,0x45,0x16,0x00,0x07,0x46,0x25,0xb6,0x1a,0xc1,0xc5,0xc8,0xa6,0xc4,0x8a,0xc8,0x0e,0x22,0x85,0x35, - 0x93,0x55,0x88,0x84,0xa5,0x4a,0x6a,0xe1,0xe6,0x27,0xf8,0xa9,0xc6,0x34,0x6b,0x34,0xc5,0x3f,0x42,0xf0, - 0x95,0x18,0x47,0xdc,0xdf,0xc0,0xe8,0x6a,0x1d,0x68,0xa0,0x70,0xe7,0x81,0xca,0x61,0x34,0x81,0x93,0x80, - 0x7e,0xdc,0xbe,0x12,0x59,0xf4,0x74,0x30,0x98,0x1b,0xa0,0x26,0xde,0x45,0xbe,0x86,0xcf,0x5a,0xdf,0xb7, - 0x79,0x41,0x34,0x39,0x7f,0xb3,0xb2,0xdf,0x60,0x0b,0xaf,0x5a,0x51,0x6d,0x66,0x7d,0xb2,0x71,0x31,0xce, - 0x5b,0xf9,0x26,0x79,0xd4,0xd6,0x0a,0xe3,0x08,0x4c,0xb5,0xd2,0xe4,0x66,0x54,0x8e,0xbf,0x83,0xbf,0x94, - 0x24,0x07,0x90,0x41,0xcf,0x42,0x76,0x0a,0x98,0xdb,0xc8,0x1f,0x5c,0x00,0x71,0x04,0x75,0xf8,0xc0,0x3b, - 0x5b,0x9c,0x77,0x5a,0x9c,0x73,0x8b,0xdd,0x49,0xd0,0x2d,0x33,0x1b,0x6e,0xe7,0xbb,0x8e,0x26,0xec,0x75, - 0x46,0x5f,0xf1,0xb4,0x07,0xab,0x42,0x26,0x26,0xa3,0x7f,0x10,0xc4,0xb6,0x0d,0x76,0x7f,0x6f,0xe1,0xb8, - 0xbe,0xa8,0x3b,0x1d,0x73,0x5c,0xbd,0x3d,0x47,0x62,0xf6,0xb1,0xa5,0x32,0x0d,0x73,0x36,0xc5,0x8d,0x86, - 0x3a,0x2e,0x38,0xeb,0xc4,0x73,0xf7,0x96,0x5c,0xe6,0x91,0x2a,0x8e,0x09,0xde,0x09,0x06,0x87,0x55,0x7a, - 0xf5,0x96,0xc9,0xa8,0x92,0xc9,0xa9,0xbd,0x60,0x18,0xec,0xf9,0xf6,0x20,0xa5,0x5f,0x0d,0x64,0x05,0x12, - 0x76,0x75,0x18,0x44,0x11,0xed,0x0f,0x59,0x66,0xe2,0x94,0x1a,0x8f,0x53,0x72,0x80,0x49,0x07,0x25,0xd7, - 0x1a,0xe9,0xb8,0xf5,0xdb,0x26,0xb0,0xbf,0x65,0xdb,0xd2,0xe7,0x4c,0x40,0x87,0x7f,0xb4,0xdd,0x64,0xc9, - 0x86,0x91,0x65,0x58,0x48,0xa8,0x0d,0x5d,0x5e,0x1b,0x47,0x56,0x30,0x8e,0xac,0xe4,0xc2,0x04,0x3e,0x06, - 0x5c,0x0f,0xf8,0x1a,0x14,0x19,0x17,0x28,0x00,0x67,0x3c,0xe9,0xb9,0x42,0x64,0xa1,0x47,0x01,0x6d,0x1b, - 0x6e,0xf3,0xec,0x87,0x0d,0x63,0x2d,0x71,0x9d,0x6a,0x13,0xa1,0x79,0x71,0x91,0x55,0x39,0xc7,0xdb,0xa6, - 0x19,0xca,0x42,0x41,0x86,0x16,0x09,0x66,0xc6,0x53,0x40,0x12,0x34,0x73,0xc0,0x7c,0x12,0x35,0x86,0xd1, - 0x4c,0x12,0xff,0x13,0x16,0x8e,0xaf,0x92,0xaa,0x93,0xc4,0xfc,0x98,0x16,0x0d,0x21,0x1c,0x42,0xab,0x40, - 0xc2,0x5a,0xe8,0x95,0x76,0x97,0x60,0x6a,0x71,0x15,0xa5,0xc9,0x0a,0x14,0xfe,0x44,0x98,0x99,0x94,0x40, - 0x1f,0x92,0x52,0xf0,0x6d,0xa3,0xf0,0x6d,0xb1,0x5e,0x7f,0x80,0x41,0xc7,0x4a,0x36,0x3f,0xc4,0x15,0xf2, - 0xa4,0x8b,0x19,0x01,0xbb,0xce,0xf7,0x2a,0x9e,0x44,0xd8,0x7d,0x25,0xdb,0xe2,0x37,0x40,0xe2,0x63,0x04, - 0xb7,0x43,0x60,0x5a,0x1b,0x71,0xfc,0xed,0xc7,0x30,0xcb,0x55,0x81,0xcc,0x28,0xfe,0x17,0x7d,0x17,0x21, - 0xd0,0x66,0xa7,0x10,0x32,0xbd,0x55,0xf8,0xce,0x37,0x10,0xf8,0x67,0xc5,0x4e,0x77,0x39,0x07,0xc8,0xde, - 0xfa,0x90,0x45,0x25,0x49,0x40,0x94,0x76,0x79,0x35,0xa3,0xfd,0x51,0xd3,0x5e,0xc9,0x8a,0x40,0xc2,0x8e, - 0x05,0xcf,0xdf,0x3c,0x79,0xfe,0x4c,0xdb,0x4a,0x0b,0x8f,0x3f,0x0e,0x9a,0x8a,0xc6,0x12,0x43,0xc9,0xdf, - 0x0a,0x8c,0xce,0x5e,0x6f,0xd6,0x1e,0xea,0x5f,0x95,0x0e,0x21,0xd0,0x2e,0xc2,0xbd,0x20,0xaa,0x71,0x96, - 0x52,0x39,0xd4,0x5b,0x8c,0xf5,0x73,0x2c,0xf5,0xba,0x1a,0x9a,0xfc,0x33,0xdd,0xb6,0x93,0xd2,0xe0,0xfe, - 0x8e,0x56,0x2b,0x92,0xd5,0x58,0xf3,0x05,0xaa,0x8a,0x2b,0x89,0xfa,0xc6,0x2e,0xf6,0x33,0x54,0xe4,0x2d, - 0xfc,0xdb,0xde,0xc0,0x6b,0xe2,0xe8,0xf9,0xcf,0x47,0x8f,0x3f,0x3c,0x7f,0xdc,0x1a,0x35,0xa5,0x2f,0xdd, - 0x59,0xaa,0x67,0x87,0x63,0x6a,0xe6,0xd9,0xf2,0xc2,0x90,0x4e,0xbe,0x2d,0x60,0x43,0xc4,0x77,0xb9,0x7c, - 0x45,0x44,0xc4,0x34,0x27,0xdc,0x03,0xcb,0x9a,0xf4,0x3c,0x15,0xe4,0xa8,0x4c,0x57,0x3a,0x77,0xbc,0x08, - 0x05,0x01,0x4b,0x91,0x51,0xd6,0x73,0x05,0x8c,0xcd,0x56,0xa6,0xe1,0x64,0xf7,0x60,0xd3,0xb3,0x0c,0x1e, - 0x24,0x7c,0xdb,0xd9,0x8f,0x86,0x74,0xe3,0xe0,0x3b,0xa9,0xde,0x2b,0xb2,0x29,0x33,0xc8,0xbf,0x3d,0x86, - 0x01,0xbb,0xad,0xd4,0xbc,0x02,0xcb,0x2d,0x20,0x97,0x05,0x73,0xd4,0x2d,0x94,0xea,0x42,0x91,0xd5,0xad, - 0xf4,0xd2,0xfa,0xe6,0x4e,0x34,0xf8,0x51,0x10,0x52,0x1d,0xb1,0x78,0xa5,0x4b,0x5e,0x46,0x23,0x60,0xdc, - 0x3e,0xf6,0x48,0xb8,0x38,0xbe,0xe4,0x72,0xca,0xde,0xb8,0x04,0xb6,0x2f,0x32,0x4d,0x90,0x31,0xec,0xb1, - 0x25,0xbd,0x10,0x4d,0xd6,0x8c,0x9e,0x83,0x65,0xf8,0xe5,0x0b,0xa5,0xc9,0x39,0xa7,0x92,0x4b,0x5a,0x8c, - 0x12,0xcf,0x8a,0xf0,0x45,0x0d,0x6f,0x36,0x48,0x09,0xc7,0x6f,0x21,0x6c,0x7a,0xc3,0xfa,0x23,0x22,0xfe, - 0x47,0x1a,0xeb,0xb0,0x65,0x32,0x84,0x41,0xa7,0x1c,0x37,0x36,0xc7,0x98,0xb9,0x92,0x8c,0xc8,0x62,0x96, - 0x50,0x86,0x75,0xf2,0x16,0x28,0xe0,0x4d,0xc6,0x12,0x44,0x05,0xd7,0xac,0x1c,0x06,0x98,0xd9,0x25,0x17, - 0xec,0xb9,0x83,0x40,0xac,0xbe,0x54,0x8d,0x53,0xdf,0x15,0x4c,0x6a,0x7f,0x59,0x7f,0xce,0xb6,0x9c,0xe4, - 0x42,0xb6,0xcb,0xf2,0x1c,0x36,0x32,0x6d,0x16,0x7e,0x41,0xb8,0x5d,0x2e,0x79,0xa0,0xf6,0x2f,0x92,0x7c, - 0xef,0x70,0xe3,0x91,0x4d,0x8c,0x3a,0x77,0x0f,0x45,0x15,0xba,0xc2,0x9f,0x39,0x5b,0x88,0x13,0x4b,0x36, - 0xa5,0xff,0x4b,0xfa,0x6f,0x1c,0x32,0x7b,0x84,0x28,0xd8,0x5c,0x6c,0x92,0x9b,0xf9,0x71,0xb1,0xe8,0x44, - 0xac,0xa3,0x2f,0xbe,0x16,0xdb,0xee,0xaf,0x1f,0xd2,0x90,0x45,0x3e,0xba,0x7b,0xe8,0xf6,0xe4,0x24,0xfa, - 0xe2,0xcb,0x4e,0x81,0x49,0xab,0xc0,0x2a,0xfa,0xfa,0xef,0x9d,0x02,0xab,0x56,0x81,0x79,0xf4,0xe5,0x7f, - 0x77,0x0a,0xcc,0x5b,0x05,0x0e,0x1f,0x7e,0x09,0x8e,0x71,0xbd,0xa6,0x07,0xde,0xcc,0x7e,0x17,0xf7,0x0e, - 0xa3,0xfe,0x8c,0x7d,0x64,0xcc,0x88,0xb9,0x5a,0xaf,0x97,0xd1,0x6d,0x7d,0x95,0x6b,0x8f,0x81,0x49,0x4a, - 0xb5,0x7e,0xf1,0x65,0x0c,0xc3,0x03,0x31,0x9a,0x1d,0x49,0xd2,0xd7,0x71,0xdd,0x49,0xfa,0xfa,0xef,0xf1, - 0xaa,0x93,0xf4,0xe5,0x41,0xbc,0xdc,0xdb,0x6b,0xa5,0x1c,0xc6,0xcb,0xfd,0xfd,0xd6,0x67,0x87,0xf1,0xb4, - 0x5d,0xe6,0xeb,0x2f,0xe2,0x69,0xbb,0xcc,0xe1,0xc3,0x2f,0xe2,0x59,0xbb,0xd0,0xe1,0xc3,0xaf,0xe2,0xd9, - 0xfe,0x3e,0x28,0x33,0x99,0x10,0xb7,0xe7,0x2e,0x13,0x1a,0x8e,0x5a,0x68,0x96,0x6b,0x74,0xc9,0xe1,0x25, - 0xc5,0xf9,0x25,0x5c,0x24,0xf6,0x9e,0x87,0x4b,0x88,0x55,0xf6,0xf7,0xa3,0xd1,0x62,0x30,0x38,0xd3,0x31, - 0x7c,0x17,0x11,0x6b,0x08,0x60,0xe8,0x2f,0x02,0x57,0x6b,0x3f,0x52,0x8e,0x43,0x86,0x22,0x66,0xd9,0xcd, - 0xa5,0xd1,0x0e,0xc4,0xe2,0x46,0x54,0x2c,0x5e,0xf9,0xde,0x82,0x31,0xdc,0xe4,0x2f,0xc0,0xe5,0xe0,0x12, - 0x10,0x07,0x5f,0xa9,0x0f,0x5f,0x65,0xd2,0x43,0xef,0x27,0x4e,0x72,0x17,0x84,0x81,0x08,0x38,0x1f,0x99, - 0x7b,0x49,0xee,0x9f,0x52,0xea,0x7d,0x22,0x4e,0xee,0x07,0x51,0x78,0x9f,0xa3,0xd0,0x07,0xa3,0x76,0x96, - 0xed,0x4b,0x11,0xb9,0x52,0x2a,0xb0,0x19,0x05,0xc1,0xc6,0x06,0xb2,0x65,0x5f,0xe2,0x57,0x7a,0x8e,0x77, - 0xbc,0xf9,0xda,0x4e,0xce,0xc1,0xf1,0x8f,0x2b,0x44,0x58,0x63,0x93,0xa8,0xea,0x04,0x81,0x81,0x7d,0xd9, - 0xdb,0xbf,0xba,0x62,0x14,0x44,0xcf,0x5f,0xb6,0x4d,0x4f,0x5c,0x18,0xa0,0xcd,0xb6,0x75,0xb9,0x57,0x60, - 0x13,0xc5,0xc7,0x9e,0x35,0xd1,0x3f,0xed,0x59,0x1f,0x66,0x56,0x3b,0x6f,0x02,0x84,0x38,0x6c,0x70,0xcb, - 0x77,0x78,0x34,0x4a,0xc7,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0xc4,0xf7,0x25,0xca,0x1a,0xaf,0xb2,0xae, - 0x05,0xe8,0x5f,0xad,0xac,0x69,0x9c,0x95,0x20,0xd7,0xf0,0x26,0x5d,0x4a,0x1c,0x22,0xfd,0x8e,0xa3,0xed, - 0x8e,0x0a,0x3d,0x0f,0xbc,0xc6,0xd1,0xb4,0xd0,0x84,0x02,0xbf,0xb3,0x5e,0xdb,0x78,0xa8,0xba,0x38,0x43, - 0x95,0x75,0x8b,0x6d,0x92,0x60,0x17,0x2e,0x3b,0x84,0xec,0x61,0x52,0xe9,0x17,0x61,0x07,0x5a,0xca,0xff, - 0x7f,0x3a,0x5f,0xfb,0xcf,0xfa,0x45,0x8c,0x4b,0x2d,0x95,0x1a,0x70,0x29,0xc2,0xc9,0xf0,0x0d,0x97,0x63, - 0x1f,0x86,0x25,0xf9,0xf9,0x45,0x33,0x0e,0x29,0x5f,0x13,0xc9,0x8b,0xac,0x58,0x05,0xca,0x56,0xc0,0xf9, - 0x51,0x5c,0x0d,0x17,0xf9,0x74,0x3a,0x67,0x21,0x6e,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96,0x81,0x31,0xf8, - 0x1d,0x55,0x5a,0x4d,0x3d,0x76,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x7e,0x02,0xab, - 0xc5,0x63,0x14,0xcb,0x5c,0x81,0xcc,0x66,0x69,0xcb,0x3d,0x13,0x58,0x70,0x33,0xc2,0x45,0xad,0x97,0x90, - 0x9d,0xd5,0x1e,0xe7,0xa2,0xaf,0x75,0x9f,0x24,0xb8,0x94,0x67,0xb4,0xa5,0xfb,0xcb,0xc7,0x13,0x7b,0xb3, - 0x78,0x6d,0xdd,0xf4,0x6a,0xb9,0xc8,0x27,0x99,0x50,0xfe,0x71,0xad,0x26,0x27,0xf1,0xf1,0x44,0xd5,0x27, - 0x71,0xdd,0x0b,0x02,0x95,0x05,0x01,0xa1,0x90,0x20,0x92,0xc6,0xad,0x60,0x7b,0x08,0xdc,0x2e,0x2f,0x97, - 0xfb,0x1c,0x9b,0x05,0x49,0xbc,0x93,0x39,0x06,0xaf,0x09,0xa3,0x89,0x83,0x4e,0x54,0x18,0xe2,0x05,0x63, - 0x08,0x19,0xfe,0xd4,0xff,0x20,0x37,0x1f,0x74,0x42,0xdd,0xe6,0xfe,0xa9,0x99,0xb7,0x7b,0xe3,0xbe,0x66, - 0xc9,0x8c,0x07,0xa2,0x7e,0x24,0x1c,0x0f,0x56,0xb5,0xd5,0x7e,0xde,0xb5,0xda,0x87,0x6e,0x09,0x4e,0x11, - 0x7c,0xa5,0x0a,0x02,0x85,0xde,0xe6,0x26,0x76,0x56,0x89,0xd8,0x59,0xe2,0x62,0x61,0xd8,0x35,0xeb,0xc7, - 0xd8,0x6a,0xd2,0xb7,0xe2,0x2f,0x3b,0xb3,0x26,0x56,0xfa,0x79,0x12,0xdc,0xbb,0x77,0x49,0xc8,0x8c,0x11, - 0x28,0x08,0x87,0x24,0x08,0xb5,0xb8,0x90,0x32,0x76,0xa8,0xe5,0x9d,0xfb,0x32,0xf2,0xfb,0x63,0xa4,0x18, - 0x44,0x8b,0xe7,0x08,0xb2,0xd2,0xa1,0x38,0x3b,0xc8,0xa7,0xa7,0xc4,0x77,0xee,0xe5,0x40,0x8f,0x9a,0x9f, - 0x4c,0x10,0xe5,0x09,0xe1,0xb0,0xb4,0xf1,0x8f,0x01,0x1f,0xc2,0xb1,0xe0,0xf5,0x22,0xe2,0xb8,0xaf,0x97, - 0xb8,0x6e,0x90,0xba,0x18,0xdf,0xd7,0x38,0xf6,0xbe,0x32,0xa6,0x39,0x2e,0xb4,0xc9,0x4e,0x88,0x06,0x77, - 0x6e,0x83,0xbd,0x72,0x2f,0xd8,0x04,0xde,0x02,0xa4,0x8d,0x8f,0xc6,0x7d,0xe4,0x46,0x53,0xf8,0xa4,0x72, - 0x01,0x0c,0xbd,0xcb,0xac,0x8e,0x83,0xe8,0xd1,0x01,0xa4,0x8e,0xb8,0x9d,0xeb,0x95,0x49,0x3d,0xa1,0xd4, - 0x27,0x95,0x8d,0xd2,0x1b,0xbe,0xe4,0x8f,0xfd,0x12,0xe0,0xa9,0xbf,0xd9,0x3f,0x1c,0xdf,0x52,0xaf,0x63, - 0x77,0xfe,0xbc,0x24,0x8a,0x8d,0x58,0x71,0x1e,0x80,0x49,0x7d,0x59,0x11,0xc6,0xc7,0x60,0x36,0xb1,0x94, - 0xe6,0x12,0x1c,0xa7,0x89,0x09,0x9f,0x1f,0x41,0xb2,0x52,0x0b,0xbf,0x57,0xc9,0x6f,0x10,0x11,0xec,0x4e, - 0x70,0xc6,0x45,0xab,0x26,0xfc,0xa1,0x4a,0x6a,0xa8,0xb4,0xc7,0x73,0x3c,0x47,0xf1,0xd7,0x60,0x69,0x7f, - 0xa8,0x7c,0x31,0x95,0x91,0x3f,0x8b,0x87,0x24,0x55,0xf1,0xb2,0x32,0x15,0x70,0x60,0x59,0x7c,0xaf,0x56, - 0x50,0xd5,0x44,0x73,0x8e,0xb3,0x6c,0xc8,0x17,0xae,0x8b,0x70,0x07,0x82,0x17,0x7e,0xfd,0x85,0x7e,0xde, - 0xdf,0x67,0x53,0x3b,0x9a,0xc3,0xdf,0xb8,0x26,0x01,0xad,0x0d,0x1a,0x37,0x31,0xcf,0xdb,0xe3,0xfd,0x5d, - 0x8f,0xd7,0xa4,0xfc,0x4e,0x63,0x55,0xbf,0x55,0x50,0x37,0x3a,0x4d,0xb2,0x76,0xef,0x64,0xdf,0x88,0xb1, - 0xdc,0x68,0xd3,0xc4,0xc1,0x3d,0xa2,0x4b,0x43,0xdc,0xa1,0x48,0x35,0xea,0x3b,0xbb,0x50,0x40,0x1e,0x19, - 0x22,0x3c,0x27,0xd4,0xc6,0xd9,0x0f,0xff,0x58,0xf9,0x04,0xd5,0xde,0xde,0x4b,0xdf,0xf4,0x7d,0xe2,0x15, - 0x7c,0x59,0x7d,0x93,0x3c,0xf1,0xe0,0x7e,0xe5,0x47,0x0d,0x67,0xf2,0x30,0x5b,0xaf,0x99,0x8e,0xf4,0x84, - 0xd8,0x3c,0x49,0xbe,0xb3,0xa1,0xcc,0x26,0x3b,0xd0,0xf2,0x5a,0xc0,0x2f,0x63,0x14,0x8d,0x3c,0xc7,0xbc, - 0xc6,0x97,0x8a,0x34,0x88,0x54,0xd1,0x44,0xc3,0x53,0x5c,0x17,0x79,0x94,0xd6,0x30,0xec,0x29,0xdd,0x9b, - 0x2f,0x35,0xbb,0x70,0x1e,0x9e,0x49,0x79,0x47,0x3c,0x09,0xdd,0xdb,0x0b,0xf6,0xab,0xa4,0xb3,0x99,0xef, - 0x62,0x6c,0x5a,0x64,0x8b,0xdb,0xc8,0xdf,0x57,0xdd,0x70,0xb4,0x3b,0x79,0xe8,0xae,0x07,0xec,0x6f,0x82, - 0xf0,0x05,0x6f,0x4c,0xf1,0x61,0xdb,0x20,0x84,0x31,0xe2,0x12,0xa8,0xef,0xab,0x6d,0x1e,0x11,0xad,0xfd, - 0x50,0x8c,0x6f,0xf5,0x39,0x08,0x4b,0x1d,0x39,0xcb,0x10,0x56,0x4e,0xe3,0x7b,0x8f,0x92,0x99,0x36,0x4e, - 0x67,0x15,0xd2,0xa9,0xfa,0x7d,0x15,0xf5,0x72,0xa6,0x88,0x68,0xe5,0xcd,0x57,0xdb,0x19,0x60,0xd9,0x84, - 0x26,0x2a,0xd5,0xae,0x15,0xd8,0x94,0x60,0xf3,0x77,0xad,0xb8,0x06,0xb7,0x00,0x58,0x1e,0x54,0xa7,0x30, - 0x52,0x2b,0x93,0xc2,0x7f,0x1f,0x7d,0x5f,0x69,0x26,0xb5,0x83,0x1c,0xa8,0xa3,0xc7,0xa7,0xd0,0x03,0x69, - 0xdc,0xf1,0xb6,0x18,0x07,0xfa,0xfa,0xeb,0xd8,0x58,0x27,0x72,0x90,0x68,0xe7,0x0b,0xc0,0x1f,0x70,0xb8, - 0x67,0xf6,0x33,0x77,0x57,0x8f,0x53,0xf2,0x06,0xd9,0x57,0xb9,0xc4,0x40,0x18,0x4a,0x45,0xad,0x4f,0xaf, - 0xf0,0xa9,0xce,0xe8,0x7c,0x8e,0xcf,0x36,0xe0,0x71,0xbe,0x67,0x15,0xfd,0xac,0x51,0x53,0x04,0x8c,0xb5, - 0x32,0xe3,0xef,0x6d,0x48,0x00,0xcf,0xe1,0xb0,0x6f,0x8e,0x8c,0xc3,0x4d,0x6b,0xa6,0x6c,0xa2,0x2f,0x62, - 0x97,0x29,0xa9,0x93,0xce,0x87,0x6d,0xe9,0x96,0x9f,0x7a,0x97,0x80,0xcb,0xfa,0xf8,0xb4,0x64,0x5c,0xb9, - 0xc8,0x59,0x21,0x8a,0xca,0x75,0xc4,0xba,0xfc,0x24,0x09,0x02,0x2f,0x77,0xa5,0x6f,0x19,0x44,0x09,0xc5, - 0x77,0x45,0x9b,0xbb,0x9b,0xb5,0x7b,0x52,0x5e,0x10,0xa0,0xbc,0x3c,0x7a,0xf3,0x9a,0x13,0xb8,0x74,0xd5, - 0x1f,0x02,0xd7,0x33,0x81,0x2a,0xa9,0x6c,0x8d,0x36,0x31,0x79,0x79,0xb1,0xca,0x46,0xc0,0x79,0xa9,0x14, - 0x7d,0x0b,0x27,0x2d,0x2b,0x6a,0x4e,0x35,0x60,0x3e,0x45,0x56,0xe8,0x17,0x81,0xf9,0x11,0x5f,0x6b,0x2c, - 0x52,0x36,0x69,0x3e,0x1d,0x9e,0xf2,0x6b,0x52,0x6a,0x2b,0x46,0x88,0xc8,0x10,0x1d,0xdf,0xde,0x98,0x35, - 0x9a,0x26,0x73,0xb5,0x1b,0xce,0x92,0x34,0x12,0x69,0x43,0x4d,0xe9,0xb0,0xce,0x7e,0xf7,0xfe,0xe8,0xd5, - 0xbb,0xb7,0xa8,0x67,0x66,0xc4,0x3f,0xc4,0x10,0xf6,0xb0,0x21,0x84,0x1b,0xd8,0xc1,0xdc,0x5d,0x8c,0x25, - 0x8e,0xd2,0x5a,0x0f,0xc7,0xd7,0x1c,0xd8,0x38,0x43,0xde,0xf1,0x9f,0x59,0x31,0x61,0xb3,0x09,0x67,0x6a, - 0x1a,0xb5,0xaa,0xf7,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x1b,0x43,0xb6,0x89,0xf9,0x5a,0x1e,0x69,0x93, - 0x96,0x79,0xfa,0xfb,0x8d,0x0b,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x1b,0x82,0x68,0x22,0xae,0x6a,0x13,0x1d, - 0xf4,0x2d,0x67,0xaa,0xc0,0xd9,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68,0x3a,0x0a,0x92,0xb1,0x90,0xfe, - 0x31,0x48,0x48,0x6f,0x92,0xb9,0xb6,0xbf,0x61,0x10,0x29,0xe5,0x16,0x40,0x2a,0xe3,0xf9,0x75,0x36,0xee, - 0xcc,0x5b,0x34,0xac,0x92,0xbe,0x99,0x7b,0x46,0x4b,0x5a,0xd6,0xf2,0x11,0xa9,0xe3,0xcb,0xb0,0xf5,0xce, - 0xb1,0x13,0x3c,0x6f,0xc6,0xe6,0x73,0x0a,0xe5,0xc5,0x1d,0xda,0xd9,0xeb,0xbc,0x13,0xbb,0xe4,0xbc,0x69, - 0xcb,0xc0,0x58,0x60,0x54,0x76,0x64,0x5f,0xb9,0xdf,0x8f,0x48,0x74,0x61,0xb5,0x7d,0x2e,0xb7,0x72,0x4b, - 0x9d,0x1b,0x79,0x11,0x7f,0xf4,0x3e,0x5d,0x25,0xad,0xe2,0x6a,0x0e,0x83,0xd4,0xb2,0x5a,0xf0,0x75,0xf2, - 0x53,0x4e,0x83,0x82,0xa0,0x96,0x07,0xda,0x87,0xb3,0x64,0xb5,0x5e,0xcf,0xd5,0x14,0xf3,0xa5,0x37,0xaa, - 0x54,0xce,0x5b,0x59,0xa7,0x74,0x6a,0x48,0x60,0x04,0xaf,0x77,0xb8,0xf8,0x4d,0x4d,0xa3,0x78,0x3a,0x12, - 0xc3,0xd6,0x36,0xb4,0xfa,0xda,0x76,0xa6,0x23,0xb3,0x51,0x8f,0x80,0xed,0x2f,0x09,0xde,0x2e,0xad,0x26, - 0x34,0x82,0x7d,0x0b,0x3b,0x8b,0x49,0x72,0xd6,0x4d,0x76,0x8e,0xcb,0x19,0xcc,0xd5,0x87,0x26,0xfe,0x5a, - 0xd9,0xaa,0xad,0xec,0x7e,0xe6,0x54,0xfa,0x95,0xd4,0xc1,0xa1,0x31,0x67,0x84,0xa4,0x96,0xb0,0x69,0x1c, - 0x0c,0x3e,0xc2,0x12,0xb1,0x56,0x06,0x4b,0x71,0xf6,0x32,0x0a,0xd3,0x84,0xf3,0x09,0x78,0x67,0xf4,0x6b, - 0x8b,0xe9,0x58,0x27,0xc0,0x00,0xa9,0xcf,0x12,0xdc,0x34,0xbe,0x57,0x1a,0x47,0x0a,0xd5,0x72,0x0c,0x89, - 0xc0,0xc1,0xc2,0x38,0x36,0x21,0xf4,0x84,0x0e,0x3b,0x01,0x53,0x96,0x8d,0xb6,0x6b,0x79,0xf0,0x4b,0xbd, - 0xf7,0x20,0xb2,0x97,0x38,0xf5,0x78,0x84,0x7b,0xf5,0x70,0x70,0x2d,0x04,0x16,0x8b,0xb7,0x13,0xfd,0x20, - 0xbb,0xd0,0xb0,0x50,0xfb,0xe7,0x3d,0xa2,0xc1,0x48,0x5b,0x5f,0xee,0xe0,0xe6,0x47,0xaf,0x53,0xac,0x91, - 0x09,0x58,0x49,0x9e,0xf5,0xcb,0x14,0xc3,0x82,0xb8,0x2c,0x33,0x40,0x3f,0xf6,0xfe,0xff,0xef,0xb3,0x20, - 0xc8,0x7c,0x7b,0x22,0x6c,0xba,0xf2,0x53,0xe5,0x10,0x00,0x13,0xd0,0x15,0xe1,0x9b,0x29,0x91,0xa9,0x73, - 0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0x31,0xd3,0xe6,0x4d,0x65,0x05,0x5b,0xb0,0x11,0xbc,0xa3,0xed,0x6d, - 0x53,0x95,0xc2,0x70,0x01,0xe2,0x06,0x4d,0x42,0x29,0xd1,0x3b,0xc7,0x7c,0x8f,0xc6,0x5d,0xdd,0xf4,0xe6, - 0xfc,0xb4,0xd1,0xa4,0x8d,0xb6,0x00,0xd9,0xba,0xb5,0xc5,0x20,0x51,0x7b,0x1d,0x30,0xb3,0xc0,0x34,0x2d, - 0x90,0x1a,0xe3,0x26,0x8b,0xf7,0x79,0x98,0x69,0xab,0xad,0xe0,0x32,0x40,0x00,0xcc,0x90,0x95,0xc5,0x8d, - 0x46,0xe1,0x3d,0xb8,0xf1,0x3d,0xe3,0xc6,0x2d,0xf2,0xe4,0x8a,0xfb,0xf2,0x21,0xf7,0x1d,0x68,0x3e,0xa0, - 0xa8,0x2f,0x88,0x39,0x6a,0xda,0xd6,0x23,0xdb,0x32,0x6f,0x96,0x42,0x6c,0x27,0x73,0x5c,0xa0,0xc2,0xb3, - 0xfc,0x02,0x84,0xc2,0x81,0x04,0xf2,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xff,0x52,0xdd,0x54,0x5f,0x6d,0x83, - 0xc1,0xbc,0xb7,0x15,0x04,0xe0,0xd6,0x70,0xec,0x39,0x9d,0x76,0x38,0xe9,0xa7,0x52,0x40,0xe1,0x18,0xd0, - 0x26,0x17,0x95,0x71,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7,0x82,0x95,0x2a,0x98,0xd0,0x2b, - 0x75,0x02,0xc3,0x8b,0x67,0xf9,0xf8,0x45,0x1e,0xbf,0xc9,0x09,0xe3,0x77,0x7c,0xd0,0xfa,0x15,0x3b,0xb5, - 0x9a,0xc3,0x6e,0x9d,0xfd,0xcd,0xda,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd,0xde,0xde,0xe4,0x1b,0x68,0x16, - 0xe1,0x6e,0x36,0xea,0x77,0x6a,0x9a,0x3c,0xd2,0xf9,0x0a,0xd7,0x34,0xab,0x1e,0x25,0x11,0x9a,0xf2,0x9c, - 0x5e,0xfd,0x25,0x23,0x68,0xd7,0xb7,0xea,0x52,0x93,0x4f,0x75,0x00,0x0f,0x3e,0x4b,0x24,0xe6,0x44,0x75, - 0xfc,0x3a,0xdf,0x0b,0x9e,0xc1,0xd1,0x2a,0x38,0xb1,0x26,0x7b,0xb0,0x8a,0x2a,0x4d,0xde,0xaa,0x92,0xab, - 0xae,0xdb,0xd9,0x69,0x02,0xb9,0x39,0x5c,0x13,0x6a,0x2a,0xf8,0xf6,0x8e,0x4a,0x26,0x26,0xaf,0xbf,0x92, - 0x15,0x2a,0x81,0xb1,0x2b,0xcd,0xd1,0x01,0xd4,0x0f,0xee,0x36,0x60,0x9e,0xf0,0x94,0x4d,0xd0,0x0b,0x7a, - 0xa4,0x02,0x29,0x15,0x30,0xb6,0xee,0x44,0x31,0xc0,0x02,0x3b,0x1f,0xaf,0x74,0x89,0x57,0x28,0xb1,0xa2, - 0x12,0x13,0x5b,0x62,0x96,0x50,0x7a,0x38,0x77,0x51,0xdb,0x53,0xd0,0xbe,0xdf,0x1c,0x50,0xad,0xab,0xf1, - 0xb3,0x3c,0x7e,0x95,0x33,0xb7,0x1f,0x8d,0x0b,0x69,0xcc,0xd4,0x1d,0x9b,0x2a,0xe2,0x03,0xa5,0x83,0x37, - 0x2b,0x0d,0x2d,0xf1,0x5c,0x59,0x58,0x89,0x67,0xb8,0x92,0xf9,0xc8,0x5c,0x1d,0x18,0x4b,0x2d,0x83,0xc1, - 0x4f,0x5a,0x96,0x2e,0xb3,0x67,0x22,0x81,0x04,0x27,0x3e,0x1a,0x78,0xdc,0xb8,0x43,0x7a,0x64,0xe4,0x1f, - 0x8f,0x6c,0xbc,0xc5,0x28,0x4b,0x6c,0x08,0x6e,0x47,0x44,0x99,0x71,0xb4,0x2e,0x17,0x6b,0x4b,0x94,0x7d, - 0xef,0xf2,0x8f,0xb0,0x9c,0xdc,0xfb,0xd8,0x48,0xa0,0xaa,0x8d,0xbf,0xd3,0x3e,0xfa,0x24,0xd6,0x61,0xf6, - 0xc5,0xdf,0xf4,0x75,0xb5,0x4e,0x80,0xb0,0x7f,0xe8,0x97,0xbf,0xe7,0xd1,0x52,0x20,0xa1,0x88,0xde,0x81, - 0x5b,0x17,0xee,0x09,0x4a,0x89,0x38,0x3f,0x63,0x67,0x0a,0xfb,0xa6,0xaf,0xed,0x9c,0x4b,0xe4,0x3d,0x97, - 0x1e,0x1a,0x19,0x68,0x72,0xda,0x18,0x6e,0xc8,0x6d,0xe8,0xc8,0xfa,0x6a,0xb1,0xcd,0x25,0x7d,0x46,0x10, - 0x9e,0x55,0x5c,0xf9,0x21,0x47,0x15,0x03,0x41,0x82,0x1b,0xef,0x1c,0x6d,0x83,0x88,0x64,0x84,0x18,0x15, - 0xfc,0x67,0x79,0x63,0x13,0x90,0x0c,0xe5,0x33,0x56,0xe5,0xcd,0xcc,0xeb,0x51,0x29,0x09,0x53,0x93,0xf0, - 0x98,0x69,0x76,0x49,0x5c,0x52,0x22,0x4d,0x69,0x96,0xea,0xaf,0x2e,0xec,0xbb,0xf9,0xec,0xd2,0xa6,0xf8, - 0xdf,0x2d,0x28,0xf5,0x2c,0x83,0x5d,0xf9,0x73,0x54,0xa9,0xce,0x4d,0xe5,0xea,0x06,0xe5,0x71,0x0d,0xbc, - 0x64,0x9c,0xd9,0x5e,0x99,0x89,0x51,0x57,0xf6,0xdb,0xc7,0x5c,0xaf,0x3a,0xb2,0x4d,0xa8,0x4f,0xe6,0x6b, - 0x9d,0x75,0xed,0xfa,0x67,0xbf,0x7f,0x4a,0x69,0x53,0xbd,0xa7,0xd4,0xe3,0xe4,0xaa,0x52,0x1f,0xe9,0x8f, - 0x36,0xf0,0x1f,0x7d,0x24,0x0a,0xc8,0x92,0x5c,0x8f,0x93,0xf0,0x63,0x62,0x5e,0x23,0xc3,0xb1,0xf2,0x4a, - 0xdc,0x4b,0x76,0x1f,0x7b,0x41,0x98,0x88,0x23,0x65,0xeb,0xff,0xb2,0x04,0x1d,0x88,0xf8,0xc2,0x58,0x92, - 0x7b,0xeb,0xf5,0x11,0x0e,0x4f,0x5a,0x83,0x23,0x01,0x81,0x77,0xc9,0xbd,0xc1,0x60,0x39,0x5e,0xd2,0x6e, - 0x78,0x8e,0xc7,0xcb,0xf1,0x65,0x3c,0x55,0xef,0xf1,0x78,0x31,0xbe,0xa0,0x7d,0xf1,0x6b,0x72,0x6f,0x7c, - 0xb5,0x5e,0x2f,0xe2,0x85,0x7a,0x86,0xd4,0x1e,0xff,0x99,0xa3,0xf1,0x51,0x7c,0xae,0x5e,0x51,0xc1,0x4f, - 0xeb,0xf5,0x4d,0x7c,0xa3,0x5e,0xd3,0xe3,0xf5,0x7a,0x7d,0x16,0x9f,0xa9,0x17,0xc4,0xb7,0xe4,0xe1,0xd3, - 0x68,0xfc,0x54,0xa6,0x2d,0x7e,0x1a,0xa9,0xb7,0x09,0x1f,0x84,0x35,0x2b,0xec,0xd5,0x9b,0xe4,0x7d,0x13, - 0x3e,0x8b,0xd4,0x87,0xc4,0xc1,0x89,0xef,0xa9,0x1b,0xdd,0xbe,0x25,0x90,0xa4,0x03,0xa5,0x54,0xef,0x23, - 0xc5,0xbf,0xcf,0xe9,0xa8,0xfc,0xe0,0x40,0x73,0x1c,0x52,0x09,0xce,0x78,0x17,0xa9,0xd7,0x83,0xc1,0x6b, - 0xb6,0xb4,0x78,0x35,0x18,0xbc,0x82,0x3f,0x83,0x57,0xab,0x0e,0xdc,0xae,0xe1,0xb5,0xbe,0x28,0x69,0x60, - 0xdf,0xd1,0x76,0x70,0x26,0x52,0xae,0x51,0x23,0x34,0x92,0xb9,0x06,0x9f,0xaa,0x74,0x68,0xe5,0x53,0x84, - 0x3d,0x62,0x56,0xd3,0x3d,0x1f,0xb3,0x60,0xed,0x64,0xc4,0x81,0x91,0xc4,0x30,0xb1,0x10,0xc3,0xc4,0x06, - 0x3b,0xcc,0xee,0x9b,0xee,0x7b,0x18,0xa9,0x67,0x83,0xc1,0x33,0xea,0xfa,0x07,0x98,0x4d,0xfd,0x3a,0x18, - 0xfc,0x8a,0x3e,0x63,0xc4,0x47,0x7a,0x40,0x47,0x32,0x62,0x75,0xd5,0x3a,0x48,0x8e,0xfc,0xf9,0x78,0xd7, - 0x9a,0x8e,0xf5,0xfa,0x0d,0x9d,0xe3,0xcf,0x9b,0xf0,0x45,0x34,0xf6,0x4e,0xa1,0x0f,0xea,0x45,0x14,0x5f, - 0xa3,0xf8,0x8a,0x1a,0x03,0x12,0x51,0xde,0x44,0x88,0x55,0x6e,0xe5,0xf7,0x87,0xba,0xc1,0x55,0x7d,0x08, - 0xdb,0x1e,0x60,0x1a,0x81,0x38,0x61,0x37,0x75,0xe7,0xda,0x6f,0x3e,0x6c,0x4d,0x70,0x48,0x9c,0xa7,0x9b, - 0x44,0x3b,0x63,0xd0,0x75,0xf7,0xa5,0x8b,0x3f,0xaa,0x4c,0x67,0x52,0x44,0xea,0x82,0x00,0x11,0x81,0x56, - 0xaf,0x64,0x4a,0x52,0x78,0x58,0xf0,0xef,0xb2,0x67,0x4a,0x52,0xe2,0xa1,0x30,0x25,0x5c,0xaa,0xd5,0xa7, - 0x23,0x99,0x92,0x4f,0xad,0x29,0xb9,0x56,0x9f,0x78,0x4a,0x52,0x35,0x57,0xd7,0x32,0x25,0x97,0xa0,0xcc, - 0x52,0x7a,0x53,0x57,0xfc,0xd1,0x35,0xe8,0x6c,0x6d,0x68,0xae,0x71,0x65,0xea,0xa3,0x33,0xef,0xad,0x8d, - 0x2b,0x5d,0xba,0xc1,0x95,0xf5,0xdd,0xb8,0x52,0xa2,0xc8,0xca,0x5d,0x34,0x16,0x35,0x1a,0x06,0x4a,0xb4, - 0xb1,0xbb,0xdc,0xb0,0x41,0xd2,0xc6,0x49,0xa5,0x66,0x9c,0x39,0x4f,0x24,0x56,0x0c,0x21,0x49,0xc8,0x5b, - 0x52,0x83,0xd5,0xa6,0xe6,0xd5,0x20,0xbf,0xa5,0x49,0xf0,0x71,0xdf,0x05,0x25,0x0a,0xfe,0x7a,0x8d,0x2c, - 0xc2,0x90,0xba,0x10,0x61,0xc5,0x5a,0xb0,0x97,0x64,0x9c,0xdb,0xda,0x2d,0xee,0xba,0xa1,0x24,0xf6,0xec, - 0x96,0x12,0x67,0x78,0x35,0xa8,0xec,0x4a,0xb6,0xf9,0x4a,0xb6,0xf9,0x11,0xb6,0xf9,0x25,0xad,0x0e,0x23, - 0x84,0xb3,0x68,0x7c,0x26,0x75,0xc5,0x67,0x11,0x63,0x45,0x33,0xb4,0xf6,0xd6,0xf7,0x41,0x04,0x22,0xa4, - 0x1e,0x80,0xe1,0x35,0xe8,0x49,0xb7,0x30,0xc4,0x41,0xc0,0xae,0x04,0x87,0x38,0x00,0x59,0x46,0x2d,0x08, - 0x19,0x87,0x57,0x8c,0x43,0x18,0x72,0xa8,0xce,0x73,0x36,0x14,0x09,0xb1,0x21,0x16,0x83,0xc1,0x02,0x6f, - 0xca,0xeb,0xa4,0xc6,0x24,0x37,0xe3,0x1b,0xda,0xae,0x71,0x19,0xfa,0x04,0xc1,0x73,0xef,0x44,0xde,0x8e, - 0x4e,0x45,0xb3,0x21,0x17,0x30,0xfa,0xda,0xe5,0xf7,0x88,0x59,0xcb,0xac,0x84,0x0b,0x80,0xac,0x43,0x6c, - 0xc3,0x9c,0x18,0xa1,0x92,0xbd,0x00,0x52,0x63,0x2a,0xbe,0x15,0x08,0xa7,0x3a,0x3e,0x38,0x89,0x11,0x06, - 0xc7,0x5e,0xf9,0x07,0x67,0x18,0x4d,0x3f,0x7d,0xe3,0x69,0xf4,0x7e,0xd5,0xf4,0xca,0x2e,0xd4,0xf7,0x8d, - 0x8f,0x01,0xee,0xf1,0xcd,0xc8,0xce,0x71,0xc4,0x92,0xde,0xaf,0xcc,0x93,0x72,0xa6,0x72,0xfd,0xf4,0xad, - 0x2d,0xb9,0x51,0x07,0x5e,0x55,0xaf,0x3a,0x54,0x7c,0xe3,0x49,0xc6,0x16,0xab,0x79,0x93,0x2f,0xe7,0x99, - 0xd0,0xeb,0xeb,0x75,0x77,0x64,0x5e,0xe4,0x34,0x36,0x75,0x81,0xf3,0x96,0x75,0xbc,0xe9,0xfa,0x6e,0xc1, - 0x0f,0xc4,0xe5,0xe2,0x0a,0x8e,0x3c,0x2a,0x93,0x33,0x62,0xff,0x5e,0xc0,0x0a,0x08,0xfc,0xae,0xc2,0x55, - 0x4e,0x73,0xbe,0x98,0x9d,0x26,0xa0,0x64,0xf0,0x31,0x09,0x89,0x17,0x10,0xec,0x26,0xe4,0x4f,0xbc,0x08, - 0xc2,0xe0,0xba,0x40,0x57,0xe9,0xc2,0xac,0xa8,0x92,0x73,0xac,0x9b,0x9a,0xc0,0xad,0x2f,0x67,0x6e,0xaa, - 0x9d,0xbe,0xdf,0xba,0x81,0xf2,0x75,0xd3,0xbe,0xae,0xa5,0x7b,0x0d,0x9f,0xcd,0xda,0xbd,0x09,0xc5,0xb0, - 0xd6,0xf3,0x23,0xf1,0xa1,0x4c,0x44,0xa5,0x1c,0xe7,0x0d,0x97,0x15,0x88,0xda,0x4f,0x8b,0x1f,0x3d,0x57, - 0x90,0x46,0x9c,0xa1,0x85,0x67,0x71,0x32,0x53,0x18,0xa1,0x39,0x1f,0x90,0x3b,0x0a,0xf1,0x20,0xb7,0xbf, - 0x3c,0x54,0x1f,0x1a,0x9b,0xa1,0xb4,0x20,0xdf,0xa7,0x37,0x3f,0xb4,0x98,0xce,0xae,0xc3,0xc3,0x25,0xbb, - 0x3b,0x40,0xea,0x2c,0x6a,0xf1,0x40,0xf8,0xcc,0xbc,0x91,0x9c,0x46,0x11,0x26,0xe5,0xd8,0x49,0xc3,0x69, - 0x5e,0xb3,0x8d,0xb2,0x64,0xf8,0xea,0x8b,0x9f,0xbc,0x99,0xd8,0xbd,0xc3,0xe1,0x41,0x24,0x55,0x59,0x17, - 0xf9,0x8e,0xb3,0xf8,0x27,0xf6,0xa7,0xb9,0x4b,0x66,0xe6,0xb9,0x5e,0x78,0x52,0x51,0x26,0x03,0xb6,0x0c, - 0x63,0xcd,0x2a,0xe2,0x8c,0x6f,0x99,0xc4,0x1a,0xb7,0xf5,0x31,0xd5,0xf1,0x4f,0x78,0x83,0x59,0x97,0x44, - 0x5f,0xc8,0xf9,0xa3,0xd7,0x00,0x5f,0x81,0xe9,0xa2,0xa5,0xb6,0x03,0x29,0x15,0xee,0xca,0x8a,0x08,0x41, - 0x94,0xd8,0xbc,0x79,0xa4,0x63,0x2b,0x11,0xfa,0x63,0x54,0x68,0xf8,0xc9,0x8e,0x37,0x5f,0x4e,0x5f,0x5c, - 0xe1,0x72,0x90,0x13,0xf6,0xe7,0xeb,0x89,0x69,0xfb,0x83,0x93,0x24,0x3d,0xf8,0x65,0xba,0xff,0x29,0xcb, - 0x96,0xfb,0xe9,0x9c,0x0e,0x8b,0x7b,0xfa,0xe6,0x41,0xa6,0x6f,0x5c,0xa0,0xec,0x30,0x70,0x45,0x02,0x75, - 0xcb,0x5d,0x8b,0x9b,0xad,0xd9,0x71,0x7d,0xf6,0x81,0xf8,0xa5,0x06,0x36,0x26,0x89,0x58,0x39,0x70,0xc6, - 0x37,0x61,0xba,0x57,0xb6,0xb5,0xe4,0x77,0x7d,0x9a,0xda,0x7c,0x7b,0xba,0x7a,0xa6,0xe3,0xba,0x3a,0x11, - 0xb7,0x66,0x57,0xef,0x4b,0x84,0x25,0x42,0x69,0x02,0xce,0x27,0x44,0x18,0x73,0x68,0x90,0x79,0x4e,0x9f, - 0x7e,0xc0,0x3d,0xf0,0x7e,0xcc,0x7a,0x7f,0x79,0xa5,0x02,0x02,0x71,0x65,0x9d,0x6c,0xa4,0x36,0x7d,0xb5, - 0xc5,0xac,0xd9,0x2f,0xf8,0x87,0xef,0x50,0x6b,0xca,0x25,0xbd,0xd2,0x5f,0x60,0xb0,0x6a,0xbd,0xce,0x6d, - 0x17,0x30,0x84,0xa9,0xd1,0x40,0x96,0xba,0x2b,0x2c,0x18,0x1e,0x95,0xee,0xa2,0x7a,0x22,0x32,0x7f,0xca, - 0xce,0x3e,0xe5,0x8d,0xe5,0x3f,0x93,0x80,0x33,0x11,0x50,0x2f,0x0c,0xf6,0xaa,0xbd,0x60,0x79,0xad,0x58, - 0xd5,0xbf,0xbc,0x8e,0x02,0x55,0x7a,0x00,0x6c,0x78,0xf1,0x24,0x38,0xa8,0x7d,0x3d,0xfd,0xf7,0xad,0x5d, - 0xd7,0x8c,0x9f,0x97,0xf1,0xbb,0xd2,0x49,0xf0,0x8d,0x54,0xac,0x68,0x69,0xe9,0x74,0xf6,0xbd,0x12,0xb7, - 0xee,0xfa,0x61,0xe3,0x2d,0xf6,0xd6,0x0a,0x6a,0x66,0xa4,0x0f,0x39,0x56,0x40,0xa6,0xac,0x71,0x45,0xdc, - 0x28,0x63,0x0e,0xd1,0xba,0xcb,0xb7,0x7b,0xb3,0xab,0x72,0x66,0x02,0xf6,0x7e,0x10,0x1d,0x6f,0x59,0xbb, - 0x46,0xe2,0x51,0xc2,0x90,0x38,0x47,0xae,0x26,0x52,0x02,0xd9,0x7e,0x50,0x95,0x63,0xff,0x02,0x9b,0x6f, - 0xcd,0xc1,0xb6,0xad,0xba,0x67,0x2b,0x16,0x02,0xd4,0x1b,0xc2,0x2f,0x72,0xb7,0x23,0x87,0x39,0x83,0xef, - 0x81,0x67,0xf9,0x94,0x89,0x6b,0xd1,0xae,0x6f,0xdc,0xa4,0xcd,0x19,0xee,0xaa,0xb2,0xca,0x66,0xb6,0x4a, - 0x7a,0xe6,0xc8,0x69,0xc6,0x1f,0xaa,0x25,0x29,0xf2,0x8c,0x68,0x47,0x85,0x84,0xfa,0xb4,0x57,0xcd,0x14, - 0x90,0xb9,0x3a,0x77,0x23,0x88,0x28,0x75,0x20,0x4f,0x1b,0x2b,0x1a,0x54,0x28,0xfa,0xda,0x51,0xaa,0x06, - 0x08,0x77,0x61,0xed,0x9c,0x61,0xad,0x4d,0xef,0xd0,0x77,0xe9,0xee,0x61,0x3e,0x03,0x4f,0x2a,0xdd,0xb4, - 0xa3,0x7b,0xf3,0x57,0xb0,0x82,0x12,0x43,0x1e,0x0e,0x7b,0x10,0xf0,0x2d,0x78,0x54,0x0d,0x87,0xdc,0x42, - 0x20,0x6d,0x9d,0x49,0x49,0xfb,0xba,0x04,0x51,0x19,0xf6,0x1b,0x3f,0x59,0x0e,0x42,0xf7,0xad,0x89,0x76, - 0x5c,0xd9,0xa2,0xc0,0xef,0xb6,0xd4,0x91,0xc8,0xce,0xee,0x07,0xc1,0x7d,0x36,0x24,0xbf,0x6f,0x03,0x96, - 0xde,0xa7,0x45,0xde,0xee,0x29,0x10,0xb9,0xad,0x9d,0x5e,0x5c,0xad,0x8a,0x2f,0x58,0xee,0x4e,0x90,0x8c, - 0x38,0x34,0x6b,0x95,0xd7,0xa6,0x8b,0x16,0x39,0x51,0x17,0x95,0x36,0x3f,0x92,0x22,0xc5,0x3c,0x2f,0xb2, - 0x7d,0xdb,0xb2,0x14,0x97,0xd4,0x23,0x9d,0xc8,0x16,0x95,0x9d,0x2b,0x6f,0x08,0x8e,0x17,0xa5,0xef,0x21, - 0x93,0x25,0x0b,0x38,0xb4,0x31,0x40,0x52,0x4f,0x47,0xdb,0x30,0xa9,0x3c,0xf3,0x5d,0xa6,0x68,0x2c,0xcc, - 0x71,0xc5,0x0d,0xed,0x93,0xc2,0x0a,0xc0,0x46,0xcd,0xa3,0xc2,0x44,0x1e,0xa8,0x12,0xf8,0x2d,0x35,0xb2, - 0x59,0x54,0x29,0xcf,0x42,0x4e,0xbd,0x2a,0xb5,0xb8,0x4a,0x4b,0xfd,0x2f,0xd2,0xfa,0x49,0xce,0x48,0x0f, - 0x06,0xae,0x2a,0xf4,0xef,0x54,0xb2,0x70,0xac,0xef,0x07,0xfa,0x49,0xa2,0xdc,0xf8,0x61,0xef,0xdd,0x7d, - 0x19,0x5d,0x95,0x00,0x47,0x81,0x34,0x12,0xa6,0xc3,0x08,0xd7,0x7d,0xc3,0x70,0x02,0x57,0x72,0x45,0xfa, - 0x72,0x08,0x83,0x62,0x7e,0x2a,0xa1,0xe1,0x21,0x06,0xd5,0xf5,0xcd,0xcf,0xfe,0xc0,0xd9,0x34,0x8c,0x9f, - 0x39,0xf8,0x00,0x5b,0x32,0x4b,0x54,0x52,0x1c,0x18,0x62,0x74,0x7c,0xa0,0xb4,0x72,0xba,0x59,0xcc,0x03, - 0x89,0x7f,0x76,0x85,0xf8,0x9d,0xd2,0x94,0xa7,0xb8,0x66,0x1a,0x7d,0x42,0xd3,0x32,0xe7,0x1c,0x29,0x04, - 0x7a,0xef,0xa6,0x98,0x0c,0x06,0x6c,0x87,0xe8,0xa2,0x5a,0x72,0xae,0x42,0xb4,0x22,0x15,0xdc,0x63,0xcb, - 0xbb,0x80,0xed,0xbb,0xa1,0xcb,0x77,0x10,0x32,0x18,0x9c,0x96,0xf6,0xc2,0x5b,0x83,0xde,0x84,0xd9,0x22, - 0xa2,0x9b,0x4d,0x37,0x11,0x6b,0x2b,0x66,0x60,0xac,0xfc,0x80,0xb2,0xcf,0xfa,0x07,0xfc,0x4c,0x06,0x5c, - 0xe8,0xf2,0xb4,0xfc,0xbb,0xfe,0xe5,0x8c,0xab,0xa4,0x35,0x7b,0xaf,0x64,0xf6,0xf4,0x1a,0xbd,0xe1,0xb0, - 0x0e,0xc4,0x50,0xad,0x8e,0x0f,0x4f,0x46,0x73,0x3d,0xd3,0x56,0xce,0x67,0xfd,0xba,0xf6,0x0e,0x31,0x92, - 0x69,0x52,0x11,0xc3,0x97,0x13,0x7f,0x57,0x12,0x4f,0x37,0x87,0x8c,0x4b,0x85,0xe1,0x2c,0xc9,0xa2,0x96, - 0x8f,0x1e,0xe2,0xf4,0xd8,0xd7,0x2d,0x13,0xd1,0xa9,0xd2,0x1e,0x51,0xf1,0x52,0xdb,0x76,0x5e,0xc0,0xb2, - 0x25,0xbe,0x54,0xd6,0x0c,0x31,0x5e,0x6c,0x38,0xc8,0x86,0xb1,0x1d,0xe4,0x09,0xd0,0xf3,0xd1,0x31,0xe6, - 0x2b,0xf9,0xd6,0x1d,0x7f,0x76,0x83,0x05,0x84,0xd8,0x58,0xd5,0xea,0xb3,0x53,0x3d,0x18,0xe8,0xb9,0x36, - 0x5e,0x26,0x5a,0x6d,0xad,0x96,0xea,0x42,0x51,0x67,0x36,0x2d,0x7e,0xea,0x67,0x77,0x9a,0x33,0x50,0x27, - 0xc6,0x52,0x91,0x20,0x39,0x88,0xfa,0xcc,0xd7,0x8c,0x5d,0xb2,0x4c,0xf4,0x6b,0x1d,0xf2,0xc9,0xf0,0x2b, - 0xac,0xc4,0xa5,0x6f,0x93,0xe2,0xf8,0xe1,0x89,0xd6,0x1f,0x19,0x8a,0x8b,0x96,0x42,0xa7,0xd8,0x55,0x7b, - 0x6b,0x80,0x3a,0xd7,0xf5,0xbd,0x70,0x11,0x80,0xcb,0x31,0xe2,0x38,0xcd,0xf3,0xb4,0xa6,0x5c,0xf3,0xc1, - 0x0b,0xf9,0xa0,0x1a,0xe6,0x44,0xd3,0xa4,0x44,0x3b,0x1e,0x26,0xa5,0xab,0x57,0x95,0xd4,0x2a,0x5b,0x60, - 0x98,0xec,0x87,0x49,0xe9,0x3a,0x82,0xe0,0x2b,0xa6,0x46,0x55,0xf1,0xb5,0x78,0x05,0xc7,0x2c,0x68,0x3b, - 0x92,0xfc,0xdb,0xaa,0x64,0xf2,0xd9,0xd3,0x92,0xb0,0x02,0xd3,0x65,0xcc,0xa3,0xf8,0x09,0x1c,0x7a,0xb5, - 0x9d,0x64,0xf4,0x3c,0x9e,0x35,0xb4,0x2f,0x74,0xfe,0xae,0x69,0xaf,0x1a,0x9f,0x9b,0x26,0xba,0x7d,0x66, - 0x84,0x95,0x9e,0xbd,0x73,0x97,0x19,0x1c,0x07,0x26,0xda,0x53,0x7c,0x1b,0xc4,0x41,0x89,0x1f,0x17,0xf8, - 0x41,0xdf,0xb5,0xb7,0x97,0xc0,0xe0,0x2f,0xdf,0xbb,0x1f,0xc4,0xf7,0xf7,0x32,0xc4,0x0b,0x62,0xb7,0x72, - 0xd8,0x7d,0xbb,0xfb,0xa4,0x3d,0x91,0x37,0x1b,0x2e,0x3a,0xb3,0xe8,0xc2,0x52,0xb5,0xf6,0x7e,0x52,0x2b, - 0xc9,0x24,0xbe,0x75,0x13,0x6c,0x07,0xae,0xb6,0x17,0x9d,0x05,0xc7,0x30,0x2d,0x6f,0x0b,0xe7,0x9d,0x4e, - 0x54,0x5f,0x47,0x62,0x3c,0x01,0x15,0x34,0x93,0x27,0x81,0x3e,0xf9,0xbe,0x2b,0x0d,0xd1,0x2c,0x8e,0x63, - 0x44,0xfb,0x7c,0xdf,0x49,0x62,0x00,0x75,0x46,0xbd,0xc6,0xca,0x21,0x20,0x42,0x0f,0x7f,0x52,0xe3,0xbb, - 0xca,0x22,0x24,0x0e,0x4b,0xe9,0x15,0xa6,0x6f,0xff,0xcd,0x21,0x82,0xca,0xbd,0x84,0x1f,0xd4,0xb7,0x25, - 0x6b,0xcd,0x53,0x63,0xec,0xeb,0x02,0x65,0x67,0xd7,0xa9,0x44,0x4b,0xa9,0x4d,0x20,0x70,0xaf,0xa6,0x11, - 0x55,0xf0,0x73,0x19,0x1e,0x07,0x93,0xa6,0x9a,0xd3,0x20,0xd8,0x6a,0x98,0x7e,0xd3,0x39,0xfe,0x2e,0xb2, - 0x26,0x0d,0x4e,0xee,0xb6,0x69,0xdf,0x9d,0x30,0xc9,0x78,0x87,0x49,0xbc,0x46,0xaf,0xc3,0x00,0x66,0xfa, - 0xdf,0x13,0x11,0x66,0x27,0x6b,0xbd,0x06,0xaf,0x28,0xe6,0x28,0xb6,0xc3,0xc6,0xc5,0xd8,0x5a,0x0e,0x85, - 0xf9,0x1e,0x61,0x79,0x58,0x79,0xdc,0x3f,0x5b,0x35,0x4d,0x59,0xdc,0xc7,0x34,0x48,0xa5,0x08,0x2b,0xb0, - 0x97,0x72,0xc3,0x4d,0x61,0xaa,0xa5,0x34,0x5a,0x04,0xab,0xfa,0xa3,0x03,0x7e,0x84,0xed,0x28,0x35,0x95, - 0x5e,0xdc,0xcd,0x50,0x57,0x72,0x0b,0xea,0x3a,0x2c,0xc6,0x7a,0x4d,0xf6,0x02,0x93,0x11,0xc4,0xd5,0x98, - 0xcd,0x67,0x4d,0x46,0xe4,0x72,0xcc,0x02,0x32,0xa4,0x99,0xb6,0xd6,0xeb,0xca,0xd4,0x12,0xf7,0x35,0x63, - 0x2b,0xf2,0xa1,0xb3,0xf1,0xce,0x63,0x0e,0xcb,0xf3,0x8a,0x8f,0x87,0xc3,0x83,0xc8,0x8f,0xc9,0x6f,0xa6, - 0x51,0x87,0xbf,0x26,0xc2,0x91,0xaa,0xd3,0x70,0xf6,0x6d,0xe9,0x42,0x25,0x07,0xa7,0x9f,0xc2,0x76,0x51, - 0x62,0x1e,0x3a,0x88,0x38,0xe3,0x8d,0xd3,0x4d,0x2d,0x90,0xea,0x3e,0xf5,0xcd,0x43,0x8b,0x96,0xe1,0x14, - 0xc2,0xfb,0xfc,0x13,0x11,0x80,0x8d,0xc9,0xaa,0x04,0x93,0x8b,0x03,0x98,0x18,0x72,0x10,0x59,0xbb,0x3f, - 0xa0,0xc5,0x1f,0x57,0x62,0x17,0x15,0xdf,0x3f,0x9d,0xe8,0xe0,0x06,0xf7,0x79,0xda,0x54,0x27,0x36,0x73, - 0x5c,0x74,0xa3,0x35,0x7b,0x08,0xac,0x72,0x7b,0xd8,0xd8,0x1c,0x41,0xbd,0xc1,0x04,0xbb,0xbc,0xbe,0xaf, - 0xca,0x49,0x56,0xd7,0xd9,0xd4,0x2c,0xbd,0x36,0xa0,0x91,0xf8,0x3a,0xe2,0x47,0xb0,0x2b,0x0f,0x5b,0x45, - 0x53,0xbf,0x28,0xed,0x37,0x2e,0x49,0xbf,0x5b,0x05,0xdb,0x86,0xa1,0x5e,0xb0,0x10,0x94,0x66,0x97,0x1a, - 0xc6,0xc5,0xec,0x02,0x60,0xd1,0xf9,0x18,0xb3,0xed,0xbd,0xc7,0xb4,0xb3,0x6b,0xaf,0xc0,0xc3,0x4e,0x81, - 0x87,0xf0,0x51,0xb3,0xec,0x9a,0xdf,0x0d,0x26,0x87,0x4e,0xe7,0xa1,0xb6,0xfd,0x76,0x04,0x2f,0x8c,0xb5, - 0x53,0x04,0xbd,0xf2,0xa6,0x5e,0x4f,0x19,0x4d,0x35,0xad,0xa5,0x37,0xbe,0x7c,0xc6,0xc3,0xcb,0x67,0x5b, - 0xa3,0xab,0xdd,0x34,0x38,0x02,0x7c,0xb7,0x43,0x80,0x0b,0xe1,0xde,0xc7,0x81,0xf4,0xcc,0x91,0xb3,0x37, - 0x30,0xcc,0xc9,0x7a,0xed,0x51,0xfa,0x84,0x11,0x57,0x85,0xd1,0xe9,0x07,0xa7,0x6c,0xaf,0xbc,0x17,0x56, - 0x3c,0x1f,0x95,0xc4,0xb2,0x73,0x81,0xd1,0x83,0x5b,0x4c,0x92,0x04,0x47,0xbf,0xc3,0xfd,0xe6,0xaa,0xd0, - 0x36,0x15,0x34,0xea,0x18,0xa5,0x45,0x08,0xd6,0x42,0xcf,0x9b,0x80,0x57,0xc7,0x1a,0xef,0x6b,0x17,0x86, - 0xc0,0xec,0xa0,0x5d,0xdc,0x66,0x9a,0xd2,0x56,0x86,0xa7,0x38,0xe1,0x1e,0xe6,0x11,0x1c,0x06,0x41,0xd7, - 0x10,0x28,0x4b,0xde,0xc2,0x12,0x36,0x49,0xa6,0x0c,0x6f,0xab,0x94,0xc6,0xc2,0xd6,0xd5,0x32,0x97,0x3c, - 0x7e,0x99,0x78,0x17,0x00,0xd6,0x27,0x3f,0xda,0xa2,0xd1,0x36,0xbb,0x31,0x46,0xbd,0xf1,0x8a,0xf5,0xc1, - 0x10,0x85,0xd9,0x4d,0x4e,0x3b,0x49,0xbb,0x3d,0x4d,0x44,0x59,0xdc,0x9a,0x35,0xdd,0xbc,0x6b,0x50,0x71, - 0x57,0x2c,0x9d,0x09,0x1e,0x9c,0x29,0xb6,0xb1,0x89,0x82,0x66,0x17,0xa1,0xcb,0xf0,0xd8,0x1e,0xa0,0x9f, - 0xe8,0x41,0x91,0xa0,0xf5,0xfb,0x98,0x5c,0x5a,0xf3,0xbd,0x80,0x9e,0x5a,0x4d,0x87,0x39,0xbf,0xe4,0xb6, - 0x1f,0xed,0x4b,0x38,0x1b,0x27,0xfa,0x70,0xd7,0x27,0x10,0x6f,0x53,0x24,0x7e,0xce,0x71,0x79,0xc2,0x38, - 0xc3,0x39,0xc9,0xeb,0x07,0x0d,0x2d,0x30,0x99,0xe1,0x9e,0x7b,0x48,0x6a,0xeb,0xc2,0x9e,0x0e,0x5a,0xc0, - 0xde,0x69,0xba,0x18,0x46,0xce,0x9d,0x5e,0xcc,0xe5,0xb6,0x4f,0x80,0x88,0xf0,0x0b,0x9a,0xf1,0x70,0xfb, - 0x7b,0x13,0x7d,0x2f,0xda,0xb3,0x78,0x49,0xe2,0xa1,0x04,0x4a,0x3c,0xad,0xed,0x34,0x58,0x2f,0x0a,0x1f, - 0x93,0xb5,0xb0,0x91,0xc4,0x60,0xff,0x53,0xdb,0xb3,0xd5,0x96,0x2f,0x60,0x08,0x02,0x96,0xb0,0x68,0x9d, - 0x71,0x35,0xd2,0xa6,0xbc,0x90,0x31,0xdc,0x12,0x2f,0x0e,0xcc,0x6e,0x1c,0x5a,0xac,0xa3,0xad,0x3d,0xbf, - 0xc6,0x01,0x11,0xe1,0xde,0xc8,0xd9,0xab,0x0e,0x5d,0x7c,0x35,0xdd,0xdb,0xe3,0xd7,0x02,0x63,0x89,0x75, - 0x81,0x4d,0x1b,0xd1,0x7a,0xee,0x04,0xdb,0xd1,0xb7,0x5b,0x03,0xc2,0x40,0x1d,0x75,0x16,0x5a,0xe3,0x7e, - 0x4f,0xab,0xe8,0xf6,0x74,0x35,0xae,0xe4,0xfc,0x90,0xd9,0x1a,0xa7,0xfa,0x38,0xd1,0xc7,0x0a,0xdf,0x77, - 0x62,0x44,0x35,0xf6,0x36,0x64,0x02,0x90,0x53,0xa2,0x40,0x03,0x6d,0xa7,0xd0,0x98,0xe8,0x85,0x8e,0xbe, - 0xc8,0xae,0x97,0x7c,0xb8,0xa7,0xe2,0x1f,0x11,0x8d,0x69,0x5b,0x13,0xe3,0x79,0x36,0x2f,0x27,0x9f,0x34, - 0xf6,0xb0,0x1d,0xa3,0x45,0xf4,0x32,0x37,0x1d,0xa2,0xd9,0x92,0xbb,0xdd,0x7b,0x6a,0x26,0x2d,0x14,0x48, - 0xe8,0x4b,0x55,0x49,0x3f,0x72,0xec,0xde,0x93,0x7d,0xab,0xc3,0x5a,0x68,0x07,0x5f,0x2f,0x8a,0x44,0x7c, - 0x1c,0xb0,0xb3,0xaf,0x09,0x78,0xd1,0x77,0x6f,0xd6,0x6d,0x69,0xc2,0xec,0x6b,0xe9,0xe3,0xaa,0x75,0x15, - 0xf7,0xb1,0x44,0xb7,0x38,0x19,0xad,0xc0,0x6a,0x27,0xbb,0xbb,0x2b,0xc4,0xca,0xa6,0xbd,0x71,0x95,0x56, - 0xb8,0x3b,0x24,0x15,0x67,0xde,0x03,0x55,0x13,0xd9,0x2d,0x8c,0x20,0x11,0xdf,0x3a,0x24,0xc6,0xfd,0xc0, - 0xf2,0x84,0x9c,0xa8,0x5f,0xe0,0x7e,0xb3,0x17,0x96,0x82,0x6f,0x09,0xf6,0x85,0x06,0xc2,0xb1,0x64,0x69, - 0x27,0xdf,0xff,0x68,0x8b,0xf8,0xd0,0xc5,0x22,0x41,0x21,0xe5,0x90,0xce,0x98,0xf1,0x7d,0xe6,0x35,0xb9, - 0x15,0x7a,0x40,0x0b,0x26,0xd7,0x12,0xae,0xd4,0x92,0xe3,0x44,0x7b,0x2a,0x75,0xb4,0xb2,0xec,0xc3,0x8d, - 0x72,0x91,0x95,0x26,0xe3,0xba,0xcd,0x32,0x9c,0xd8,0x08,0x4f,0x1a,0x75,0xf3,0xc5,0x2a,0x7b,0x49,0x05, - 0xc8,0x8f,0x94,0x16,0x10,0x22,0x05,0xc2,0x44,0x3e,0x5e,0xc4,0x9f,0x26,0x90,0x90,0x00,0x33,0x9d,0x49, - 0x4f,0x9c,0x49,0xbf,0x5e,0x26,0xef,0x54,0x57,0x82,0x5f,0x63,0xa0,0x08,0x29,0xb1,0x64,0x4f,0x48,0x64, - 0xd2,0x93,0x97,0xee,0x71,0xcb,0xc8,0xbd,0x0f,0xb1,0x2b,0xfb,0x3e,0x01,0xf9,0xd2,0x62,0xdc,0x77,0xa2, - 0x28,0x71,0xc0,0x15,0xa5,0xde,0xb7,0x59,0xe1,0xb0,0x13,0xfb,0xe2,0xd2,0xc7,0x7e,0x16,0xb1,0x4f,0x61, - 0xa6,0x51,0x89,0x3e,0x5f,0xb9,0x75,0x7e,0x26,0x16,0x6c,0x6f,0x56,0x98,0x1c,0x3d,0x6f,0x4a,0x7b,0xa5, - 0xea,0x82,0xc6,0x17,0xc1,0x96,0x95,0xa8,0xc3,0xb6,0xac,0xb8,0x33,0x4a,0x61,0x30,0x7d,0x3a,0x41,0xed, - 0x1e,0x1a,0x48,0x33,0x93,0xe3,0x7b,0x46,0x7a,0xe5,0xfd,0x64,0xc5,0xb8,0xbb,0xf5,0x95,0x23,0x45,0x84, - 0x06,0x34,0xa2,0x41,0xdd,0x3d,0xbe,0x88,0x26,0xd8,0xf3,0xcb,0xd9,0x2f,0x5d,0x80,0x57,0x29,0xcc,0x5a, - 0x43,0x2f,0x15,0x57,0x32,0x69,0x81,0xa8,0x24,0xc4,0xa7,0x2b,0x62,0x8e,0x5a,0xa1,0x60,0xd2,0xbb,0xf8, - 0x9d,0x9d,0x2e,0x62,0xb3,0x19,0x85,0xa6,0x2c,0x8b,0x16,0x49,0xe7,0x62,0x9d,0xb5,0x08,0xca,0x42,0x13, - 0x94,0x85,0x25,0x28,0x8b,0x0e,0x41,0x59,0x74,0x09,0xca,0xa2,0x43,0x50,0x16,0xbd,0x04,0x65,0xf1,0x9f, - 0x13,0x94,0x66,0x40,0x9a,0xa2,0x94,0x97,0x38,0xb8,0x95,0xdd,0x80,0xf9,0x9d,0x15,0xb1,0x57,0x83,0x76, - 0xd6,0x28,0xdc,0xe2,0x44,0xad,0xfa,0xc2,0x96,0x94,0x97,0x4d,0x66,0xc6,0xd4,0xe9,0x19,0xff,0xd9,0x0b, - 0x08,0x23,0x87,0x2b,0x0e,0xa2,0x1c,0xb5,0x2e,0xae,0x06,0x76,0x76,0x6f,0x71,0x5f,0x11,0x1c,0x0e,0x7c, - 0xfd,0x2b,0x75,0x75,0xc3,0x94,0x58,0x8a,0xfb,0xec,0xeb,0x2e,0xa7,0x4e,0x07,0x7b,0x04,0x90,0xd0,0x71, - 0xd3,0x19,0x72,0xf8,0x39,0x36,0xde,0x93,0x7b,0x99,0x1f,0x19,0x9d,0x86,0xe8,0x1c,0x26,0x6d,0x96,0x49, - 0xda,0x0b,0xda,0x38,0xce,0x86,0x61,0xb7,0x89,0x76,0x77,0xb4,0x89,0x2c,0x63,0x90,0xd7,0x36,0xff,0xb3, - 0x01,0xdd,0x4c,0x24,0xd2,0x03,0x0e,0xff,0x73,0x28,0x71,0x08,0xd9,0x7e,0x4e,0xc3,0x4a,0xc1,0x11,0x7f, - 0x4a,0x13,0xec,0x50,0x13,0x89,0xed,0x36,0x62,0xc3,0xa6,0x79,0x82,0x0f,0x5a,0x74,0x1d,0x09,0x1c,0x1d, - 0xeb,0xb2,0x63,0xc7,0xc8,0xee,0xd2,0x3b,0x77,0x30,0xf9,0xad,0x4a,0x85,0xc1,0x6d,0xcf,0x34,0x1c,0x49, - 0x09,0xd1,0x12,0x56,0x2d,0x65,0x9e,0x4b,0xde,0x8e,0x1b,0xed,0x7d,0x61,0xa1,0xd3,0xb3,0xda,0x7e,0xa0, - 0xee,0x3d,0x50,0x81,0x26,0xd9,0xb3,0xe1,0x55,0x95,0x2e,0x9f,0x19,0x9f,0x03,0xf7,0x0a,0x9b,0x09,0x9d, - 0x6b,0xd5,0x9e,0x5e,0x11,0x9b,0xc6,0xe5,0xbc,0x60,0x4b,0xab,0x9e,0x50,0xff,0x6e,0xae,0x25,0x18,0xb9, - 0x1f,0x90,0x2b,0x4d,0x4a,0x6f,0x01,0x4a,0xcf,0xb3,0x89,0x77,0x75,0x8b,0x5f,0x4a,0xc5,0xfa,0x4b,0xd8, - 0x23,0xf3,0x6e,0x7c,0x5d,0x89,0xaf,0x20,0x34,0x16,0xa6,0x86,0x39,0xa0,0x8d,0xdb,0x09,0x23,0xee,0xe9, - 0x16,0x54,0x4f,0x4c,0x2b,0x1b,0x9f,0xb2,0xb2,0xdd,0xc9,0x35,0x3c,0x20,0xae,0x06,0x2e,0x97,0x42,0x88, - 0x4a,0x9f,0x44,0x81,0xf7,0x47,0x9b,0x64,0x29,0x17,0x59,0x1f,0xf2,0x9a,0x03,0x93,0x6b,0x32,0x27,0x02, - 0xc5,0xf8,0x50,0x53,0x8b,0xec,0xb4,0xf4,0x1f,0x57,0xdb,0xf8,0xb5,0xf2,0xea,0x1c,0x46,0xde,0xb5,0x72, - 0x61,0xc9,0xf6,0xaf,0x37,0x67,0xd9,0x53,0xcb,0x22,0xc5,0x1c,0xa7,0xb7,0xeb,0xba,0x65,0x4c,0x5d,0x85, - 0xe7,0xa4,0x31,0x8f,0x35,0x2d,0x1a,0x7f,0x61,0x93,0xa0,0x24,0xb6,0x11,0x00,0xc7,0x70,0x0e,0x57,0x20, - 0x06,0xb7,0xc8,0x83,0x4a,0x62,0x4d,0xb3,0x0f,0x75,0x1c,0x9c,0x5e,0x82,0xc0,0x7f,0x08,0x0d,0x43,0x01, - 0x29,0x39,0x57,0x5e,0x78,0x7b,0x37,0x9e,0x16,0x61,0x57,0x64,0x22,0x35,0x44,0x5c,0xc7,0x48,0x9b,0x69, - 0x1b,0xd5,0x09,0x04,0x87,0xe5,0x5d,0x87,0xc4,0xa4,0x57,0x6e,0xb8,0x17,0xd6,0x8c,0xb9,0x6b,0x50,0x2b, - 0x9e,0xf0,0x63,0xee,0x7f,0x6a,0x35,0x87,0x2c,0x1a,0x20,0xb4,0xd7,0xa3,0x2a,0x6b,0x33,0xe6,0x9e,0x2f, - 0x6d,0x47,0x27,0x4b,0xe7,0xc6,0x1f,0x5c,0xe4,0xdc,0x88,0xe8,0xb5,0x32,0xd4,0x5f,0x7c,0x7f,0x6f,0x8a, - 0x10,0x85,0x46,0xfa,0xa5,0x02,0x77,0xb3,0xba,0x47,0x4d,0x79,0x4e,0xaa,0xad,0xe8,0x17,0x6e,0x73,0xff, - 0xb2,0x7a,0x78,0xf0,0xf0,0x1f,0x0f,0xce,0x55,0xf0,0x8b,0x3c,0x06,0x51,0x27,0xf3,0x6b,0x97,0xf9,0xb5, - 0x7f,0x41,0xe8,0x52,0xc3,0x02,0xbc,0xf7,0x0c,0x08,0x65,0x57,0x3b,0x2f,0xdc,0x2c,0xbb,0x8b,0x62,0x6d, - 0xdf,0x44,0xab,0x91,0x55,0x15,0x34,0xc8,0x84,0x95,0x63,0x38,0xfb,0x9e,0xfb,0x3e,0x9e,0x5e,0x3f,0xc3, - 0xeb,0x32,0xb9,0x2e,0xff,0x20,0x42,0x27,0x82,0xe1,0x6a,0xdd,0x53,0x92,0x8d,0xef,0x3f,0x4a,0x77,0x2e, - 0xa0,0x04,0x0e,0x7e,0x29,0x82,0x07,0xdf,0xdc,0x8f,0xef,0x3f,0xa2,0x52,0x84,0x35,0xf4,0xbb,0xba,0x2e, - 0x5d,0x79,0xe7,0x85,0x33,0xf8,0x3f,0x87,0x07,0xa3,0x20,0xfa,0xe6,0x80,0x11,0xe1,0xa5,0x0d,0x79,0x37, - 0xab,0xb2,0xec,0xf7,0x2c,0x44,0xa4,0xe5,0x85,0x4d,0x74,0x51,0xc5,0xcd,0x45,0xe0,0xea,0xbc,0x48,0x56, - 0x22,0x86,0x51,0x96,0x52,0x0c,0xd8,0x68,0xe6,0x86,0x73,0xe8,0x68,0x56,0xd4,0x2b,0xc5,0x25,0x9c,0xba, - 0x56,0x41,0x1d,0xaa,0xce,0x7a,0x6a,0xbe,0x48,0x6b,0xef,0xda,0x4b,0x75,0x5a,0x24,0x0f,0xf6,0xc3,0x5f, - 0xae,0x22,0x5a,0x8b,0xab,0x22,0x99,0xf6,0x86,0x34,0xb1,0xeb,0x76,0xea,0x9b,0x14,0xf8,0xb6,0x4d,0x63, - 0x18,0x4a,0xfc,0xb0,0x5c,0xc2,0x72,0xba,0x26,0x56,0x09,0x11,0x58,0x61,0xf2,0x7a,0x74,0x67,0x95,0x3a, - 0xb6,0xcd,0x41,0xd4,0xfe,0x70,0xcf,0xe9,0x1d,0xe9,0xf3,0x4f,0xd4,0xbb,0x5f,0x9e,0x84,0xc7,0x8f,0xf7, - 0xff,0x7d,0x82,0x1e,0x5e,0xff,0x61,0x0f,0x3f,0x15,0x2a,0xd8,0xbf,0x77,0x18,0xa0,0xda,0xd7,0xe5,0x95, - 0xa9,0x96,0xea,0x7a,0xba,0x2d,0x93,0xb1,0x0a,0x78,0xf5,0xb8,0xad,0x2f,0xb2,0xb1,0x5c,0xd4,0x47,0xe2, - 0xeb,0x40,0x54,0xef,0x73,0x9c,0xf5,0x6a,0xdf,0x5c,0xa6,0x18,0xa8,0x7b,0x45,0x72,0x1c,0x78,0x6b,0xe2, - 0x78,0xb8,0xc0,0x5c,0x79,0x18,0x9c,0xa8,0x77,0x28,0x25,0xf6,0x97,0x4f,0x19,0xc6,0x28,0x53,0x80,0x8d, - 0xaa,0xd0,0x19,0x6c,0xd4,0x0d,0x39,0xbc,0x18,0x77,0xdb,0xf4,0x1f,0x74,0x78,0x4a,0x7b,0xd7,0xae,0xc9, - 0x78,0x26,0x91,0x88,0xd1,0xa6,0x3c,0x71,0x9e,0xbb,0xa3,0x19,0xe9,0xfe,0x9b,0xdc,0x20,0x24,0x3e,0xe7, - 0x53,0xea,0xd4,0xf3,0x22,0xb9,0x15,0x62,0xe2,0x4d,0x46,0x84,0x33,0x81,0x1a,0x15,0x3c,0xcf,0x89,0xf9, - 0xec,0xbb,0x61,0xb5,0xce,0xe7,0x30,0xcc,0x20,0xba,0x9e,0xa0,0x68,0xba,0xe2,0x49,0x3a,0xca,0x97,0x48, - 0x30,0xd7,0xfd,0x72,0x66,0x56,0x41,0xb4,0x03,0xfb,0x2a,0xbc,0x72,0x9b,0x2f,0xe5,0x1e,0x58,0xf6,0xde, - 0x50,0xa0,0xee,0x5b,0x09,0xf9,0x79,0x41,0x83,0x99,0xea,0x5d,0x47,0xf4,0xc8,0x89,0x32,0x97,0x3f,0xf6, - 0x76,0xa4,0x15,0xee,0x3e,0x7e,0x5a,0x78,0x09,0x70,0xe5,0x92,0x94,0x1f,0x8a,0x4f,0x45,0x79,0x55,0xe8, - 0x4a,0x91,0xd6,0x89,0x9e,0x1f,0x9f,0xab,0xbe,0xe0,0xf8,0xf1,0xe3,0x42,0x79,0x97,0x30,0xe2,0xc3,0xd3, - 0x79,0x3e,0xcb,0x26,0x37,0x93,0x79,0x86,0x7b,0xa7,0xa9,0x4f,0xc5,0x46,0xbd,0x27,0x88,0x3c,0xfe,0x9f, - 0x5f,0xae,0x86,0xf7,0x4e,0x1e,0xa8,0x5f,0x21,0x2b,0x3b,0xe5,0xbd,0x75,0x7a,0x4a,0xe4,0xd8,0xed,0x46, - 0x3d,0xa3,0x24,0x47,0xa6,0xda,0x2b,0xfc,0xc4,0xb3,0x47,0xbd,0xea,0xcf,0xfd,0xe9,0xe7,0xe7,0xc5,0x65, - 0x5e,0x95,0x85,0xbe,0x0f,0x7d,0xb7,0x95,0x00,0x49,0x1e,0xf7,0x54,0xbd,0x2e,0x92,0x57,0xc5,0x60,0xd0, - 0x9f,0xdb,0x06,0x78,0xf5,0xa2,0x48,0x9e,0x51,0x59,0xed,0x52,0x54,0xa4,0x97,0xf9,0x39,0x38,0x85,0xe1, - 0x8a,0x26,0xec,0xf1,0x39,0x5f,0x38,0xd5,0x2a,0xff,0xb6,0x48,0x5e,0x50,0xf9,0x07,0x8b,0x3a,0xcf,0xd6, - 0x84,0x7b,0xa6,0x54,0x44,0xdb,0x84,0xbd,0x28,0x22,0xf5,0x46,0xb2,0x5f,0x78,0x1e,0x8d,0x28,0xb9,0xf3, - 0xf5,0xf0,0x00,0xd8,0x4d,0x7d,0xd8,0xce,0xcf,0xa6,0xe7,0xd9,0x03,0xce,0xfc,0x69,0x3b,0x93,0xe0,0xa0, - 0xa2,0x73,0x0e,0xd9,0x74,0x9a,0x99,0x37,0x5c,0xb9,0x51,0xa8,0x27,0xba,0x2b,0xf9,0xf2,0x82,0xf6,0xd6, - 0x3a,0x5f,0xa6,0x53,0xfa,0x53,0xd2,0x9f,0xb2,0x76,0x5d,0x82,0x53,0x7b,0x59,0xeb,0x4f,0x7e,0x2c,0x92, - 0x90,0xbf,0x99,0x5c,0x54,0x44,0xa2,0xfc,0xf2,0xe0,0x97,0xe9,0x9e,0xd7,0xfb,0xdb,0xcd,0x90,0x6f,0x1a, - 0x8e,0xd4,0x0f,0x50,0x62,0x83,0xaa,0x7a,0x56,0x70,0x94,0x4d,0x60,0xe5,0x97,0x6c,0x0f,0xd1,0x7f,0x2d, - 0xf3,0x4b,0xc2,0x27,0x3a,0x46,0x43,0xa0,0x6e,0x71,0xad,0xb3,0x47,0x09,0xa3,0xb2,0x83,0x0d,0xe1,0x16, - 0x3d,0xcb,0xdb,0x31,0x01,0xd1,0x83,0x7d,0xfb,0x3d,0x43,0xfd,0xcb,0x22,0xf2,0xdc,0xce,0xd1,0xfe,0xef, - 0x85,0xfa,0xad,0x50,0xdf,0x7b,0x28,0xa8,0x43,0x0b,0xd0,0x18,0x7f,0x87,0x61,0xcd,0xef,0xd4,0x1e,0x16, - 0xb5,0x0f,0x86,0xce,0xe7,0xe5,0x59,0x3a,0x07,0x4d,0xca,0x88,0x0a,0xf3,0x22,0x49,0xc0,0xfd,0xe0,0x05, - 0x87,0x59,0x71,0x39,0xfc,0xf1,0x87,0xe7,0xa7,0xcf,0xdf,0xfe,0x18,0xa9,0xdf,0x09,0x96,0xbf,0x6b,0x81, - 0xc8,0xe9,0x29,0x32,0x9f,0x3d,0xff,0xf1,0xe8,0xdd,0xbb,0xd7,0x1f,0x4f,0xbf,0x7d,0xfd,0xee,0xc9,0xe3, - 0xd7,0xa7,0x2f,0xdf,0xbd,0xfb,0xfe,0xf4,0x54,0x7d,0xdb,0x0f,0xb8,0x1f,0x6f,0x16,0x67,0x25,0x35,0xfa, - 0x29,0x94,0xa7,0xa8,0xbf,0x6f,0xfa,0x7a,0x66,0x94,0xeb,0xdc,0xd4,0x1c,0x8d,0x7e,0xbb,0xa3,0xe6,0x8c, - 0x8b,0xd3,0x4f,0x34,0xfe,0xd8,0x9e,0x75,0x8f,0xff,0xd6,0xc1,0xf4,0x71,0xc9,0x76,0x0f,0xc2,0xb0,0x21, - 0xb6,0xdb,0xc7,0x5f,0x0f,0xa6,0xdf,0xe5,0xa0,0x2d,0xba,0x2a,0x28,0x3b,0x95,0xff,0x0d,0x2d,0x6b,0xeb, - 0x1b,0xaf,0x20,0xd6,0xbf,0x55,0x96,0x90,0x45,0x5a,0xf9,0x0b,0xf9,0xd9,0x0e,0xaa,0x6c,0xa3,0x4d,0x0d, - 0x7e,0x2e,0x92,0x73,0xf5,0x6f,0x30,0x04,0xff,0x2a,0xb6,0x3e,0xcf,0xa7,0xc9,0xbf,0x89,0x6e,0xd3,0xd7, - 0x42,0xae,0xce,0xa0,0xc6,0xdf,0x8c,0xfe,0x55,0xb4,0xfb,0xf8,0x71,0x75,0xd6,0xd3,0x4d,0x2a,0xad,0xe3, - 0x0d,0x52,0x73,0xad,0x4f,0xc4,0x15,0xb2,0xfb,0x95,0xbe,0x39,0x15,0xdf,0xa9,0xad,0x4f,0xe4,0x52,0x70, - 0xbf,0x7f,0xde,0x9d,0xe1,0xf6,0x11,0x9d,0x79,0x96,0x2d,0x45,0xde,0xde,0xa9,0xa1,0x28,0x1b,0x22,0xac, - 0xfb,0xef,0x05,0x74,0x1d,0xb6,0x02,0x57,0xb6,0x93,0xca,0xba,0x76,0x52,0x7c,0xf1,0xfd,0xca,0xde,0x12, - 0x68,0x1b,0x66,0xc3,0x7d,0x9e,0xce,0x7f,0x16,0x88,0x0c,0x9d,0x55,0x9d,0x23,0xdf,0x19,0x65,0xe9,0xe9, - 0x81,0x33,0x8f,0xbe,0xd0,0x93,0xaf,0xb3,0xea,0xde,0xe7,0xa9,0x6f,0xea,0xe4,0x4b,0xb1,0xf4,0xdd,0x9e, - 0xd9,0x7c,0x61,0x2e,0xf6,0x2c,0x6a,0x73,0x23,0x89,0x7c,0xa5,0x6f,0xcf,0x2a,0xe5,0xd5,0x5d,0xa7,0xe5, - 0x17,0x72,0xd7,0x6a,0xb5,0x53,0xcd,0x1d,0x98,0x7e,0x2a,0x9b,0x31,0xc2,0xe0,0x18,0x54,0x9e,0x6e,0xa2, - 0x6d,0x78,0x6b,0x2e,0xf1,0xdc,0x32,0x71,0x6e,0xd5,0xa3,0xaf,0x23,0xf5,0x93,0xaa,0x14,0x0e,0x1c,0xfa, - 0x1e,0x52,0x7b,0x45,0xac,0x4d,0x70,0x9e,0x65,0xac,0x55,0x91,0x44,0x13,0x81,0xdd,0x15,0x7b,0x3a,0xa7, - 0x46,0xa7,0x5e,0x02,0xdf,0x2a,0x6b,0x5e,0x5b,0xe1,0xcc,0x6b,0x2f,0x8d,0x6f,0xd3,0xf3,0x7b,0xb3,0x1d, - 0x0f,0x1d,0xa6,0x46,0xaa,0xa9,0x92,0x5b,0x5e,0x8a,0x18,0xe1,0xfc,0x66,0xf9,0xf9,0x8a,0x6f,0x64,0x8f, - 0x81,0x74,0x47,0x8d,0x0e,0x59,0x02,0xeb,0xdf,0x1e,0xcc,0xd9,0x3f,0x2d,0x1b,0xd5,0x87,0xe6,0x89,0xf2, - 0x09,0xb3,0xca,0x41,0x29,0x35,0xac,0xf5,0x7a,0x9d,0x0b,0x57,0x0c,0x36,0xe6,0xeb,0x39,0x38,0x02,0x8b, - 0xb0,0x59,0x72,0x21,0x8e,0x33,0xa9,0xe3,0x55,0x47,0x54,0x1e,0x6f,0xd2,0x68,0xa8,0x1b,0x55,0x55,0x49, - 0xe7,0x02,0x21,0x95,0x57,0x1d,0xd4,0x50,0x51,0xe3,0xc7,0x01,0xf6,0x6c,0x80,0xe8,0xdd,0x4b,0xcf,0x5e, - 0x43,0xc7,0x7b,0x43,0x0a,0xc7,0x2f,0xc3,0x43,0x09,0xd7,0xb6,0xa0,0x82,0x73,0x41,0x9d,0xc1,0x8c,0xa3, - 0xc7,0x9c,0x4f,0x1b,0x03,0x56,0x30,0x23,0x38,0x0a,0xf3,0x4a,0x65,0xfd,0xb1,0xc0,0x8f,0x71,0x21,0x9a, - 0x0d,0x6d,0x64,0x65,0x12,0xfb,0xfb,0xa3,0x88,0xef,0xf2,0xb5,0x59,0xd6,0x26,0x1d,0x41,0xf1,0xb5,0x9b, - 0x2b,0x66,0x1c,0x5e,0x24,0xfa,0x1e,0x72,0x09,0x7e,0x31,0xd2,0x11,0x3a,0x33,0x89,0xd0,0x29,0xc3,0x8a, - 0xf9,0xd1,0x0c,0x26,0x46,0x68,0x7a,0x17,0x30,0xd3,0x0c,0x0d,0xc9,0x1a,0x11,0x3c,0xb4,0xa8,0x3c,0x87, - 0x3c,0xa6,0x3c,0xe3,0x33,0xce,0x5c,0x04,0xae,0x52,0xe0,0x25,0x8d,0x59,0x60,0x4f,0x05,0xce,0x43,0x8c, - 0xb2,0xed,0xd4,0x12,0x8c,0x78,0x5c,0x0f,0xd3,0x82,0x34,0x0d,0xf4,0x29,0x41,0x58,0x7d,0x51,0xae,0xe6, - 0x53,0xda,0xab,0x34,0x83,0x0d,0x60,0x4b,0xd5,0xd5,0x36,0x22,0x95,0xf0,0x2a,0x06,0x57,0x64,0x4b,0x5e, - 0xf3,0x7f,0x69,0xfc,0x70,0xb9,0x60,0x47,0x63,0xc2,0x56,0x47,0xa1,0x5c,0x14,0x4d,0x43,0x0f,0xf4,0x65, - 0xd3,0x5b,0x91,0x51,0xc2,0xf0,0xd7,0xb6,0x44,0x48,0x62,0x30,0x5a,0x4a,0x32,0x69,0x36,0x71,0x37,0xdb, - 0xbb,0x35,0xba,0x57,0x23,0xa4,0x1d,0x7e,0xb1,0x2e,0x47,0xa2,0xed,0x41,0xd8,0x6a,0xa2,0x4d,0x42,0x40, - 0x98,0x2a,0x2b,0x7d,0xa9,0x6f,0x6b,0xee,0x32,0x84,0x03,0x45,0xea,0x55,0x3a,0xff,0x84,0x03,0x62,0x54, - 0x7b,0xbb,0x80,0x53,0xef,0xb8,0x34,0xcb,0x97,0x94,0x67,0x91,0x96,0x31,0x34,0xbe,0x8c,0xe1,0x1e,0x7a, - 0x8e,0x80,0xf0,0x84,0xac,0xe9,0x87,0xfa,0xa2,0x5a,0x95,0xfb,0x1d,0xb9,0xeb,0x66,0xae,0x3e,0xdc,0xff, - 0x51,0xae,0xe3,0x92,0xdb,0x8f,0x27,0x15,0xae,0xc1,0xea,0x65,0x65,0x46,0x13,0x09,0xcc,0x72,0x07,0xd3, - 0xb7,0x53,0x8c,0x7f,0xd5,0x29,0x71,0xe3,0xfb,0xbd,0x5a,0x0a,0xa4,0x19,0x67,0xf1,0xaf,0x22,0xc5,0x21, - 0x2e,0xae,0x77,0x5b,0x4d,0xb0,0xa1,0x92,0x67,0x44,0x00,0xde,0xbb,0xbb,0xc0,0x5e,0x50,0x07,0x27,0xc9, - 0x2b,0x2a,0x44,0x3d,0x62,0x2a,0x74,0xeb,0x50,0x12,0x5d,0x31,0xe1,0x95,0x1f,0xd9,0x7c,0xda,0xde,0xa5, - 0xd7,0x98,0xa4,0xc6,0x26,0x59,0xfb,0xb6,0x9d,0x36,0xd2,0xc8,0xd6,0xeb,0x9e,0xf0,0xf9,0x8d,0x36,0x63, - 0x24,0xf2,0xf6,0x12,0x36,0x75,0x51,0xdb,0x5f,0xa4,0x31,0x92,0x4f,0x78,0x8b,0x40,0x29,0x02,0xa7,0x91, - 0x94,0x18,0x90,0xee,0x85,0x7f,0xac,0x47,0x3c,0x4e,0x4f,0x22,0xbe,0x43,0x29,0x49,0xc7,0xa9,0x71,0x7a, - 0xaf,0xa3,0xce,0x8d,0x78,0x75,0x34,0x26,0x4e,0xae,0x3e,0xb1,0x3b,0x76,0x83,0x71,0x4b,0xb8,0x53,0x7a, - 0x58,0x64,0xcd,0x45,0x39,0xe5,0x47,0xb9,0xee,0x1a,0x4f,0x13,0x1d,0xed,0xa0,0x7f,0x62,0xb6,0x87,0xd3, - 0x77,0x6d,0x80,0x21,0x98,0x79,0x98,0xaa,0x81,0x89,0x64,0xce,0x16,0x0f,0xa6,0xfd,0x4b,0x62,0x69,0x92, - 0x5f,0x45,0x5d,0x5a,0xa9,0x79,0xa5,0x66,0x5d,0x65,0x6d,0x97,0xe6,0x06,0x04,0x10,0xce,0x9e,0xe2,0x72, - 0x2b,0xe2,0x7d,0x71,0xae,0x71,0x1c,0x39,0x36,0x9f,0xe9,0xa1,0x59,0x89,0xca,0xb3,0x01,0xc5,0x41,0xbc, - 0xfa,0xef,0x51,0x34,0x6f,0x91,0x85,0x7e,0x5e,0xf8,0x03,0x22,0x8a,0x1b,0x43,0x3e,0x57,0xb1,0x75,0x2b, - 0x7c,0x43,0xe4,0x7b,0x7a,0x9e,0x3d,0xbd,0x48,0x8b,0x22,0x9b,0xaf,0xd7,0xbb,0x9f,0xc2,0x76,0x12,0xe8, - 0x6e,0x73,0x47,0x53,0x3b,0x87,0xd0,0x5a,0xdd,0x54,0x2b,0x9c,0xc1,0x7c,0x6d,0x53,0x3b,0xd7,0xca,0x99, - 0xc2,0x9e,0xfe,0x19,0x07,0xc0,0x1f,0xe0,0xec,0xe7,0x6c,0x4b,0x2e,0x2b,0x46,0x7d,0xed,0x8a,0xd4,0xa2, - 0x4a,0x2e,0x69,0x9a,0xe9,0x30,0x7a,0x38,0xd2,0x0f,0x87,0x43,0x70,0xa8,0x5c,0x2a,0xf9,0x41,0xb5,0xab, - 0x5f,0xa0,0x48,0xdd,0xe8,0x4a,0x20,0xec,0xd9,0xdc,0x31,0xa9,0x84,0xb3,0x17,0x79,0xcd,0xf3,0xa9,0x1f, - 0xb5,0x85,0xef,0x79,0x95,0xe8,0x04,0x73,0x11,0x30,0x91,0xd2,0xab,0x56,0x2b,0xe7,0x95,0xdc,0xaa,0xfc, - 0x43,0x44,0x3c,0x65,0xcb,0xa9,0xf1,0xdc,0x84,0x4d,0xa6,0x0f,0xe6,0x15,0x03,0xc5,0x4d,0xa5,0xce,0x64, - 0x68,0xc4,0x8c,0x9d,0x56,0x1d,0x41,0x93,0x16,0xa7,0x0e,0x02,0x1b,0x90,0x9a,0x85,0x57,0x84,0xa1,0x82, - 0xff,0xc7,0x56,0xeb,0x19,0xc0,0xc5,0xca,0xae,0xe2,0x2c,0xf2,0x0a,0x55,0x08,0x77,0x2b,0x85,0x8a,0xbb, - 0x0a,0x19,0x5b,0x3b,0x56,0xc7,0x67,0x49,0xd5,0x2a,0xa7,0x60,0x18,0x01,0xc1,0xe6,0x56,0xdc,0xc0,0x86, - 0xd9,0xcf,0x4a,0x6e,0xa3,0x3a,0x62,0x48,0xfd,0xc4,0x7f,0xaf,0x39,0x98,0xd4,0x53,0x86,0xda,0xc7,0xfc, - 0xf7,0x23,0xce,0x8e,0x7b,0xf8,0xf3,0xae,0x8f,0x2e,0x36,0xe7,0xdc,0x02,0xf1,0xdf,0xd9,0x33,0xe2,0x94, - 0xb1,0x15,0xd1,0x62,0x72,0x8e,0xb9,0x04,0x63,0x33,0xcc,0xc9,0xd5,0x38,0xd4,0x67,0x22,0x1d,0x8a,0xbb, - 0xbb,0x15,0x3f,0xc8,0x61,0x03,0x59,0x03,0x27,0xe1,0x41,0x92,0x10,0x0f,0x8d,0x93,0xf0,0xa0,0x19,0x1a, - 0xa2,0xfc,0x38,0x09,0x0f,0xfa,0x40,0xe2,0xca,0x5c,0x1d,0xee,0x53,0xef,0x0b,0x4d,0x65,0x4e,0xce,0x0c, - 0x95,0x4e,0x6c,0xd2,0xde,0xde,0x3d,0xdd,0x90,0xc4,0x7a,0xb3,0xd4,0xeb,0x34,0xa7,0x73,0xdf,0xd5,0x63, - 0x8f,0x71,0xb0,0x52,0x9a,0x98,0xcf,0xae,0x9e,0xf9,0xef,0x94,0xf9,0x8a,0x10,0x95,0x06,0x08,0xaf,0x48, - 0x37,0xd5,0x69,0x10,0x20,0x6e,0xef,0x89,0xa0,0xd0,0x8c,0xb9,0x1c,0xd1,0x20,0x0d,0xc6,0x12,0x87,0xfe, - 0x6b,0xc7,0xe7,0x67,0xf7,0x7d,0x21,0x62,0x0b,0x03,0xe6,0x70,0x58,0xd3,0x81,0x58,0x86,0x81,0xbb,0xe2, - 0xb2,0xe7,0xc0,0xec,0x39,0x84,0x5b,0xe8,0x73,0x94,0x25,0xfa,0x2c,0x76,0x77,0x4f,0x6d,0xd8,0xf5,0xca, - 0xeb,0x0f,0xee,0xff,0xeb,0xeb,0x5d,0x04,0xc7,0x7d,0xe5,0x51,0x42,0x76,0x2a,0x8d,0x89,0x99,0xf9,0x0c, - 0xe1,0x71,0xde,0xf9,0x27,0x7d,0x87,0x3e,0x97,0x4f,0x95,0xc7,0x38,0xfe,0x53,0xc7,0x1a,0xb2,0x49,0x91, - 0xc7,0xd2,0xc9,0x65,0xd5,0x0c,0xa5,0x89,0x06,0x50,0x0e,0xeb,0xd7,0x24,0x5e,0x3f,0xf5,0x55,0x74,0xca, - 0x8a,0x56,0x8c,0x31,0xb8,0x81,0xa0,0xa8,0xb9,0xa8,0xca,0x2b,0x3a,0x40,0x7e,0x62,0xad,0xf6,0x7d,0xf9, - 0x6c,0x87,0xa6,0x6e,0x47,0xc3,0xf4,0x0e,0x22,0xe6,0xb6,0x97,0x13,0x16,0x29,0xd1,0x86,0xf0,0x11,0x55, - 0x7e,0x73,0x6b,0xe1,0x72,0x30,0xf8,0x3d,0x6c,0x75,0x11,0xfd,0x2f,0x97,0xa1,0x9e,0x1e,0x48,0x00,0x8a, - 0xd5,0x12,0xb0,0xe4,0xa2,0xf5,0xd1,0x31,0xd2,0x9a,0x13,0xe1,0x90,0x7b,0x1c,0x76,0x32,0x82,0xe2,0x51, - 0x1b,0xd8,0x20,0xb3,0x08,0x61,0x12,0x17,0x76,0xd2,0x25,0x2a,0x59,0x0b,0x7a,0x0d,0xab,0xef,0x83,0xb0, - 0xfd,0xde,0x48,0x09,0x64,0xe3,0x46,0x9d,0x2e,0x79,0xfd,0xfe,0x0c,0x7b,0x8e,0x2d,0x63,0x20,0x2c,0x03, - 0x5f,0xa0,0xfb,0x6d,0x33,0xc1,0x62,0xf4,0xf5,0x9f,0xc6,0x85,0xcb,0x1a,0x9c,0xd4,0x41,0x8b,0x07,0xb4, - 0x6b,0x86,0xeb,0xee,0xc8,0xdf,0x7d,0xed,0x9a,0xb6,0x76,0x61,0x27,0x41,0xa4,0x2f,0x61,0xa4,0x5c,0x85, - 0xb5,0xb7,0xd3,0xfd,0x89,0x6a,0xef,0xf9,0xa2,0x3d,0x89,0x26,0x02,0x66,0x67,0x86,0x44,0xe2,0xb0,0x25, - 0x9d,0xe1,0x4d,0xe0,0x21,0x99,0x5d,0xbd,0x17,0x80,0xa5,0x24,0xbd,0x5a,0x51,0xe1,0xf8,0x8e,0xc5,0xd6, - 0x51,0xae,0x93,0xe4,0x1a,0x17,0x52,0x33,0xdc,0xf2,0x13,0x50,0xd7,0xe3,0x96,0xe9,0xdf,0x51,0x65,0xad, - 0x11,0x47,0xc5,0x37,0x1f,0xab,0xc1,0xe0,0xa8,0xe2,0x0b,0xd8,0xa6,0xdf,0x70,0x4d,0x51,0x41,0x0b,0x42, - 0x85,0x74,0x6c,0xeb,0x62,0xef,0x50,0x1d,0x40,0x86,0xc3,0x07,0xdd,0x91,0xb9,0x27,0x33,0x1a,0x3d,0xc5, - 0x2e,0xc7,0xc9,0x70,0xa0,0x5e,0x86,0xab,0x8c,0x9d,0xeb,0xb4,0xac,0xa6,0x35,0x5e,0xea,0xb6,0x3f,0x58, - 0x18,0xab,0x3b,0xcc,0x6a,0x62,0xa8,0xb8,0x6d,0xcf,0xb6,0x46,0xbb,0x5a,0x8e,0xc6,0x48,0x62,0xbd,0xce, - 0xf9,0x22,0x3c,0xbb,0x75,0x5a,0xd0,0x22,0x3e,0xa0,0xa6,0xd6,0x16,0x7f,0x25,0x5b,0xb6,0xd2,0x9b,0x6e, - 0x72,0x26,0xfb,0x5b,0x6f,0x7f,0xb6,0x75,0x75,0x22,0xd4,0x9f,0xc2,0xcc,0x30,0x61,0xea,0xbe,0xb1,0xd4, - 0xf8,0x53,0x3b,0x5b,0x2e,0x5e,0xbf,0xb3,0x85,0x4d,0x67,0x3a,0x32,0x74,0xb1,0x0f,0x00,0x3c,0x84,0xc8, - 0x13,0xe1,0x9f,0x38,0x10,0x63,0xb4,0x6a,0xd9,0x16,0xa1,0xfd,0xd1,0x0e,0xf3,0xb7,0x96,0xfe,0x3c,0xec, - 0x2e,0x55,0x43,0x70,0x3f,0x2d,0xaf,0x3e,0xbb,0x5e,0x7a,0x70,0x08,0x23,0xf4,0x24,0x23,0x9a,0xef,0x99, - 0xd1,0x1d,0xad,0xd7,0x76,0xe4,0xee,0x88,0x17,0xe6,0x75,0xf4,0x97,0x3a,0xd7,0xd9,0xdb,0xa3,0xd6,0x41, - 0x7c,0xb8,0x11,0x9e,0xed,0x39,0x11,0x26,0x59,0xb1,0x5a,0x64,0x46,0x96,0xa3,0x3a,0xb2,0x1d,0x28,0x6c, - 0xe2,0x73,0x55,0xe3,0xef,0x46,0xbd,0xa7,0xe2,0xd8,0x61,0x60,0xcc,0x47,0x4f,0xb3,0xf0,0xb1,0x27,0x6d, - 0x15,0x2e,0xff,0x57,0x2a,0x81,0xa0,0x02,0x3e,0xcf,0xac,0x29,0x1a,0x3e,0xfe,0xfa,0x63,0x06,0xf4,0x04, - 0x05,0xc8,0x6b,0x3b,0x25,0x51,0x5f,0xd8,0x80,0xa4,0xd5,0x80,0xbb,0xec,0x3b,0xb9,0x3d,0x65,0x39,0x8f, - 0x94,0xc6,0x08,0xb4,0x2f,0xf3,0x55,0xa5,0xb4,0xc3,0xfe,0x8f,0x05,0xab,0xa4,0xcd,0xeb,0xf3,0xf9,0x22, - 0xae,0x84,0x63,0x23,0x52,0x33,0x9b,0xe1,0x3d,0x97,0xf7,0x0d,0xbb,0x8b,0xb2,0x83,0x79,0xdb,0xbe,0xc7, - 0xc5,0x08,0x91,0x8b,0x6b,0xb4,0x61,0x4f,0x32,0xd1,0x0f,0xaa,0xee,0xda,0xf2,0x50,0x56,0x27,0x85,0x30, - 0x23,0x24,0x55,0xdb,0xfe,0xfb,0x88,0x68,0x40,0xac,0x1b,0xfc,0xec,0xa2,0xe1,0x3d,0x56,0x44,0x86,0x20, - 0x55,0x33,0xea,0x98,0x16,0xd4,0x79,0x17,0x36,0xe9,0xfe,0x21,0x34,0xc0,0xe3,0xb9,0xc5,0x05,0x88,0x20, - 0xfa,0x2b,0x80,0x32,0xe3,0x50,0x0e,0x61,0xa9,0x4a,0xda,0x44,0xca,0xbc,0xc7,0x6d,0x66,0xcb,0xb8,0xe4, - 0x6d,0x05,0x5a,0xd8,0xed,0x23,0x4d,0xa5,0xfe,0xdd,0xdd,0x30,0xc7,0xda,0x99,0xc8,0x09,0xc3,0x53,0x19, - 0xfa,0x53,0x2d,0xae,0x5d,0xaf,0x4d,0x78,0x56,0x67,0xda,0xc7,0xe5,0xbd,0x77,0xbe,0x69,0x41,0xdb,0x45, - 0xba,0x7a,0xbc,0x55,0x4a,0x2a,0xa2,0x74,0x25,0x3c,0x17,0x3f,0x9e,0xea,0x4b,0xb9,0x43,0xf3,0x68,0xc4, - 0xa9,0x7c,0xd1,0xd3,0x5d,0x5d,0x49,0x72,0x64,0xca,0xc5,0x1c,0xe6,0x86,0xa3,0xf6,0x35,0x67,0x97,0xb8, - 0x67,0xe3,0xde,0xdc,0x98,0x2f,0xe1,0x16,0x01,0x4a,0x6a,0x60,0xdc,0x62,0x2b,0x15,0x93,0xcb,0xdb,0xb4, - 0x1a,0xb6,0x84,0x54,0xc6,0x3c,0x58,0x98,0x77,0x04,0xc5,0x41,0x39,0x76,0x39,0xf1,0x86,0x44,0x69,0x50, - 0xb1,0x20,0x3c,0x36,0x22,0x21,0x8e,0x26,0x8f,0xec,0xd6,0x9d,0xb8,0x8b,0xb0,0xeb,0xe3,0x09,0xf1,0xfc, - 0xb8,0xa3,0xfd,0x6d,0xb8,0x52,0xdd,0xb6,0xe5,0xc6,0xbf,0xed,0xf6,0x0f,0xb6,0x4a,0x3e,0x63,0xf1,0xf9, - 0xc6,0x59,0x37,0xcf,0x93,0xed,0x09,0x76,0x71,0x2b,0x3e,0x93,0x87,0x0b,0x8b,0xe4,0x1e,0xcb,0x79,0xb4, - 0x29,0x79,0xe2,0xef,0xc1,0xb2,0x81,0x26,0x12,0xf7,0x2e,0x7a,0xa1,0xbc,0x29,0x83,0xa6,0x61,0xa2,0x15, - 0xe5,0xec,0x45,0xdf,0xf4,0x6c,0xdb,0x9e,0xad,0xac,0xbc,0x30,0x1b,0xf4,0x6c,0x57,0x01,0x10,0xe7,0x22, - 0x78,0x6c,0x94,0x84,0x0e,0xeb,0x3d,0xba,0xcd,0xfd,0x7b,0x45,0x5f,0xfd,0xa3,0xa2,0x15,0xad,0x2d,0xf4, - 0x5f,0x31,0x7b,0x1c,0x9d,0xc1,0x2a,0xfc,0xd9,0xc0,0xad,0xbd,0xa5,0xf8,0x62,0x69,0xf7,0xcd,0x98,0xef, - 0x71,0xaa,0x70,0x6d,0xb4,0xc5,0xa7,0xc4,0xe8,0xc9,0x91,0x5e,0x45,0x51,0x5c,0xa3,0xc2,0xdd,0x03,0x1d, - 0x8c,0xaa,0xda,0x28,0x6d,0x19,0x70,0x47,0xd7,0xbb,0xdd,0x6d,0x5a,0xd8,0x8f,0xdd,0x46,0xdb,0xfd,0xb1, - 0xf2,0x4a,0xb1,0x7a,0x15,0xd4,0x1a,0x16,0xd2,0x4d,0xb1,0x7c,0x78,0x55,0x38,0x9e,0x2b,0x45,0x8c,0x58, - 0xa6,0xf7,0x6c,0x8f,0x23,0x04,0xd4,0xf4,0xfa,0x7f,0x30,0xf2,0x64,0x9a,0xa3,0x8a,0x18,0x97,0x7b,0xdd, - 0x3b,0xdb,0x21,0xd9,0xc4,0x0d,0xa0,0x36,0x03,0x37,0x3d,0x8e,0x26,0xe8,0x41,0xcb,0xc2,0x41,0xc2,0xee, - 0xd3,0xe8,0xe3,0xc6,0xbb,0xa6,0x19,0xc8,0xe7,0x59,0xd5,0x12,0x55,0xfe,0x4a,0x7b,0xf6,0x55,0x95,0x1c, - 0xaa,0xd7,0x55,0xf2,0x50,0xbd,0x40,0xc3,0xef,0x7d,0xed,0x1d,0xdf,0xca,0xbd,0x2d,0xfb,0x3d,0x5d,0x11, - 0x6b,0xf9,0xa2,0x32,0x1a,0x38,0x9a,0xaa,0x1f,0x57,0x3c,0x4c,0x89,0x18,0xe7,0x21,0xff,0x71,0x1f,0x92, - 0x73,0xb0,0xde,0x91,0x5c,0x31,0x10,0x19,0xf1,0x8c,0x35,0xef,0xe4,0x30,0x24,0x3e,0x46,0x1a,0x99,0x88, - 0x11,0x94,0x2e,0x0f,0xaa,0xe8,0xa2,0x2c,0x9b,0x40,0x47,0x89,0xfb,0x9c,0x5e,0x90,0x23,0x27,0x0c,0x92, - 0xe5,0x49,0x8b,0xd1,0x7a,0xae,0x7f,0xf4,0xb6,0x45,0x92,0xb7,0xb6,0xc8,0xd6,0x2e,0xcd,0xbd,0x5d,0x53, - 0x6c,0xa3,0x3f,0xbb,0x8b,0x90,0x69,0xdb,0x39,0x4a,0xcf,0xe5,0x4e,0x5f,0xd5,0xe8,0x63,0x8b,0x43,0xcd, - 0xea,0xa3,0xcc,0xa4,0xa9,0x2d,0x47,0xc1,0x64,0xcb,0x31,0x27,0x12,0x9a,0x95,0xd0,0x93,0x50,0xdb,0xf7, - 0xdc,0x65,0xed,0xcf,0xb3,0xd0,0xe8,0xe3,0xcc,0xe4,0xd2,0x06,0xe3,0x50,0xde,0x22,0xb2,0x90,0x55,0x94, - 0xb6,0xde,0x57,0xe5,0xb5,0x08,0x06,0x74,0x72,0x9d,0xcd,0x67,0xf2,0xde,0xb7,0x75,0xec,0xc5,0x9f,0x85, - 0x5d,0x0c,0xa6,0xe0,0x11,0x0a,0xd3,0x86,0x02,0xd2,0xe1,0x42,0x0b,0x87,0xe3,0x4c,0xce,0x60,0x40,0x89, - 0x26,0xde,0x23,0x6c,0x61,0xcd,0x4b,0xe1,0x41,0xbf,0x51,0xd7,0x66,0x26,0x97,0xaf,0x64,0xba,0x57,0x95, - 0x25,0x3d,0x8d,0x0b,0x79,0x22,0x62,0x22,0x73,0xdf,0xb0,0xb6,0x53,0x2e,0x7c,0x86,0xd8,0xc7,0x93,0xdd, - 0x30,0x8d,0x91,0x79,0x1b,0xcf,0x24,0x74,0x37,0xed,0x21,0x97,0x72,0x48,0x4a,0xbf,0x5b,0xa4,0x60,0x53, - 0xda,0xc4,0x23,0x08,0x3b,0x2d,0x09,0xf2,0xe7,0x8b,0x4a,0xea,0xfb,0x8e,0xfa,0x2c,0x79,0x28,0x97,0x98, - 0x42,0x58,0xd5,0xb0,0xbd,0x44,0xa2,0xa3,0xa1,0x35,0x9f,0x3d,0x32,0x30,0x79,0x72,0x4f,0xd7,0x1d,0x0d, - 0xca,0x99,0x6d,0xc6,0x27,0xf0,0x72,0x54,0x65,0x59,0xed,0xf4,0xc2,0x9d,0x25,0xb4,0x07,0x7d,0x7b,0xc3, - 0xd1,0x0e,0x2c,0xb0,0x52,0x26,0x02,0xa7,0x7f,0x00,0x35,0x5d,0x50,0x97,0x0b,0x1f,0x7d,0x12,0x23,0xe1, - 0xa3,0xfd,0x74,0xd2,0x32,0xf7,0x56,0xfe,0x75,0xd7,0xef,0xbc,0x8b,0x60,0x11,0x21,0x62,0xc3,0x6b,0xe9, - 0xdb,0x20,0xfe,0xd9,0x6f,0x0f,0xb4,0x26,0x24,0x97,0x1e,0x73,0xc8,0x7c,0xa8,0x5e,0x02,0xa1,0x3d,0x02, - 0x88,0xf2,0x72,0x8f,0xe4,0x90,0x80,0x5b,0x52,0xc2,0xee,0xdf,0x40,0x35,0x5b,0xd3,0xed,0x4a,0x9b,0xd9, - 0x9e,0xc8,0xb6,0x52,0x6d,0x73,0xb6,0x9e,0xa0,0x2c,0xc9,0x45,0xe6,0x13,0x57,0x22,0xe7,0x87,0xf2,0x01, - 0x3e,0x2e,0x3d,0xb4,0x8c,0xf2,0x51,0x74,0xd3,0x13,0xa3,0x9c,0x8e,0x9b,0x7b,0x4c,0x10,0x34,0x12,0x20, - 0x57,0xf5,0x10,0x24,0x77,0x01,0x85,0xe1,0x67,0xe0,0x68,0xdf,0x85,0x80,0x51,0x63,0x3c,0x5e,0x3e,0x8f, - 0xb6,0x1d,0x22,0x64,0x24,0x52,0x59,0x92,0x4b,0xc7,0xeb,0xef,0xa1,0xba,0xb0,0x21,0x4b,0x04,0x1d,0x32, - 0x1b,0x7c,0xab,0xcb,0xa5,0x76,0x5d,0xb3,0x4d,0x97,0xb8,0x97,0x8a,0xf7,0x7e,0x69,0xc2,0xef,0xbe,0x85, - 0xe1,0x34,0x8d,0x9b,0xe6,0xee,0x5e,0xc8,0xf1,0x44,0x22,0xc5,0x9a,0x1b,0xc2,0x66,0x88,0x0b,0xad,0x02, - 0xe9,0x47,0x00,0x52,0xbb,0x13,0x47,0x20,0x4a,0xe1,0x6e,0xdf,0x33,0x53,0xec,0xfc,0xa4,0x49,0x4b,0x98, + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xbc,0xbd,0x0b,0x77,0xdb,0x46,0xb2,0x2e,0xfa,0x57, + 0x24,0x1c,0x6f,0x1a,0x18,0xb5,0x68,0xc9,0x49,0x66,0x4f,0x40,0x23,0x3c,0xb6,0x6c,0xc7,0x4e,0xfc,0x1a, + 0x5b,0x79,0xcc,0x28,0xda,0x5a,0x10,0x09,0x4a,0x88,0x49,0x80,0x01,0x40,0xc9,0x8a,0xc8,0xf3,0xdb,0x6f, + 0x7d,0x55,0xfd,0x02,0x08,0x39,0xc9,0xac,0xbd,0xee,0xf2,0xb2,0x08,0x74,0x37,0xfa,0x59,0x5d,0x5d,0xef, + 0xde,0x9d,0xad,0x8a,0x49,0x93,0x97,0x45,0x98,0xa9,0x26,0xba,0x0d,0xca,0xf3,0x5f,0xb3,0x49,0x13,0x24, + 0x49,0x73,0xb3,0xcc,0xca,0xd9,0x4e,0xf6,0x69,0x59,0x56,0x4d,0x3d,0x18,0x6c,0xe5,0x2c,0xca,0xe9,0x6a, + 0x9e,0x8d,0xe5,0x67,0xa8,0xcb,0x25,0x4d,0x18,0xc5,0x81,0xa9,0xd3,0x15,0x9e,0x66,0xb3,0xbc,0xc8,0x06, + 0x03,0xf9,0x1d,0xa6,0x8b,0xe9,0x58,0x1e,0xc3,0x93,0x53,0x6a,0x37,0xbe,0xab,0xdd,0xb1,0xfe,0x1d,0xa6, + 0x9f,0xf2,0x52,0x6a,0xcf,0xdc,0xf3,0x26,0x6c,0x2e,0xf3,0x5a,0xd9,0x21,0x44,0xb7,0x55,0xd6,0xac,0xaa, + 0x62,0xc7,0x0d,0x2a,0xba,0x35,0xcf,0x3b,0x4d,0x58,0x45,0xb7,0xf9,0x2c,0x2c,0x4e,0xaa,0xd3,0x48,0x17, + 0xc4,0xb3,0xe9,0xfb,0xe8,0x2a,0xad,0x76,0xf2,0x04,0x49,0xc9,0xad,0x4e,0x8b,0x6f,0x37,0x2a,0x9f,0xc6, + 0x95,0x9a,0x97,0xe9,0x34,0x9b,0xc6,0xbb,0x87,0x9b,0x91,0xfe,0x34,0xc3,0xa7,0x93,0x74,0x3e,0x0f,0x73, + 0x53,0x83,0xca,0x95,0x7b,0x6e,0x22,0x7a,0x91,0xcf,0x92,0xdd,0x03,0x97,0xb1,0x41,0x33,0x45,0x72,0x6b, + 0x2b,0x6a,0x86,0x8b,0x84,0x26,0x7f,0x38,0x49,0x0a,0xfa,0xbb,0x4c,0x82,0x40,0x35,0xe1,0x01,0x0d,0xee, + 0xc4,0x5f,0x1b,0x55,0x44,0xb7,0x6e,0x9a,0x8b,0xf0,0x30,0xda,0xa8,0x6e,0x7e,0xb0,0xaa,0xb3,0x9d,0xba, + 0xa9,0x72,0x9a,0xc9,0x91,0x1d,0x77,0x85,0x59,0x40,0xa3,0x4d,0x52,0x64,0xd7,0x3b,0x29,0xbd,0xaa,0x22, + 0x29,0xc3,0x74,0xb8,0xac,0xca,0xa6,0xc4,0x84,0x0f,0xab,0xec,0xb7,0x55,0x56,0x37,0xd4,0x69,0xd3,0x2b, + 0xf4,0xb7,0xc9,0x8a,0x69,0x58,0x28,0xaf,0xa0,0x8c,0xca,0xe6,0xd0,0x5b,0xb1,0xd1,0xd3,0x16,0x3e,0x8c, + 0x54,0x49,0x3f,0x5f,0x44,0x2a,0xa5,0x9f,0xaf,0x22,0x85,0x6e,0xfe,0x3d,0x52,0x93,0xa4,0x0a,0xeb,0x68, + 0x34,0x19,0x3e,0xe6,0x75,0x4b,0xd5,0x64,0x38,0xa9,0xb2,0xb4,0xc9,0x12,0x7f,0x99,0x74,0xb3,0x15,0xcd, + 0xe6,0x22,0xab,0x2e,0xb2,0xb0,0x56,0x59,0x44,0x63,0x9c,0x0c,0x8f,0xd2,0x62,0x92,0xcd,0xd1,0x00,0x55, + 0x6d,0x5e,0x8f,0xcb,0x8f,0x59,0x81,0xb4,0x2f,0x91,0x96,0xd7,0xae,0xd0,0x01,0x12,0x68,0x59,0xfa,0x6a, + 0x7f,0x57,0x95,0x8b,0xbc,0xce,0x90,0x4d,0xa9,0xa8,0xbc,0x5e,0x52,0x57,0xa6,0xf8,0x8e,0x3a,0xec,0xe6, + 0x77,0xe2,0x9e,0x87,0x04,0xa8,0xe9,0x6a,0xde,0x24,0x93,0xbf,0x34,0xe1,0xd2,0x62,0x70,0x22,0x80,0xbd, + 0xf3,0xb8,0xaa,0xd2,0x9b,0x53,0x82,0xef,0x64,0x2e,0x40,0x43,0xcd,0xdb,0x0f,0x72,0xaf,0x8b,0xc5,0x6a, + 0x3e,0xdf,0x4d,0x92,0xac,0x67,0xc7,0x65,0xee,0x8b,0xb2,0xa7,0x89,0xe7,0x3a,0xf3,0xae,0x56,0x52,0xd9, + 0xe2,0xd8,0x01,0xb6,0x8d,0xab,0x32,0x9f,0xee,0x1c,0xe0,0x39,0xa2,0x74,0xd3,0xe2,0xae,0x6d,0x71,0x30, + 0x08,0xb3,0xe4,0x24,0x3b,0x8d,0x14,0x06,0x15,0xcd,0xca,0x2a,0x14,0xf0,0x25,0x80,0x4e,0xb2,0xe1,0x3c, + 0x2b,0x2e,0x9a,0xcb,0x51,0xf1,0x28,0x1f,0x15,0x7b,0x7b,0x51,0x23,0x8d,0xa2,0x7a,0x95,0x9d,0x14,0xa7, + 0xaa,0xa0,0x35,0x1c,0x65,0x73,0x9a,0x24,0xf3,0x65,0xb9,0x93,0xd3,0xd6,0x89,0xde,0x72,0x43,0x1e,0x00, + 0x5e,0xa6,0xf5,0xdb,0xeb,0x82,0xd6,0x67,0x99,0x55,0xcd,0x8d,0xee,0xbc,0x2a,0xa3,0xc1,0xa0,0x5d,0x69, + 0x79,0xaa,0x4a,0xaa,0x94,0x81,0xae,0x16,0x68,0xa3,0x7d,0x13,0x12,0x14,0xcc,0x93,0xad,0x4a,0x9b,0xf2, + 0x03,0xad,0x4d,0x71,0x31,0x72,0x0b,0x7b,0x9b,0xd7,0xbc,0x14,0xb4,0xa5,0xf5,0xd3,0x93,0xd5,0x6c,0x96, + 0x55,0xf1,0x36,0xb4,0xb4,0xd7,0x4e,0x8a,0x75,0xe6,0x96,0xea,0xd0,0x9f,0x4f,0xe8,0xf1,0x79,0x59,0x2d, + 0x9e,0xa6,0x4d,0xda,0x57,0xd7,0xaa,0x10,0x7c,0x37,0x75,0x93,0x6b,0x8a,0x0f,0x06,0x19,0x4d,0x4a,0xdd, + 0x00,0x82,0xbd,0xe4,0x4d,0xbb,0x83,0x3f,0xe6,0xd9,0xf5,0x9f,0xac,0xd8,0xfb,0x6a,0x30,0xf0,0x5e,0x68, + 0x9b,0xa0,0x96,0xf1,0x76,0x12,0xd5,0x17,0xd3,0x5a,0x67,0xc3,0x73,0xfd,0x95,0x79,0xf2,0x3b,0xe6,0x7d, + 0x86,0xbe,0xc9,0xd4,0xf6,0x75,0xa9,0xe6,0x1c,0x1f,0x6e,0xa9,0xf8,0x9b,0xd5,0xe2,0xbc,0x7f,0x9a,0x0b, + 0xce,0xe9,0x14,0x97,0xb5,0x8c,0x09,0xa1,0xd6,0x3f,0x98,0x11,0xf6,0x7c,0xbc,0x23,0x00,0x4c,0x8b,0xc2, + 0x5f,0xd1,0xbc,0x65,0x9f,0x5b,0x49,0xe4,0x6f,0x2f,0xe1,0xf3,0x7c,0xfe,0xd9,0xaf,0x90,0xdf,0xb3,0xf0, + 0xf3,0xf2,0xfc,0x73,0x5f,0x21,0xbf,0xa7,0x2d,0xfd,0x41,0x5c,0xca,0x14,0x66,0xe9,0xa2,0x6f,0x58,0xc0, + 0x08,0x83,0x01,0xed,0xf2,0xe1,0x32,0x5f,0xca,0x97,0x3f,0xbc,0x7f,0xf5,0x21,0x4b,0xab,0xc9,0xe5,0xbb, + 0xb4,0x4a,0x17,0xf5,0x9f,0x84,0x85,0xce,0x57,0x1d,0x58,0xeb,0xe4,0xca,0xb2,0xa6,0xc5,0x34,0xad,0xa6, + 0x4f,0xaa,0xf2,0xba,0xce,0xaa,0x67,0xc5,0x55,0xbc,0x75,0xbe,0x86,0x5e,0x4b,0x76,0xd9,0x8a,0xf4,0x2a, + 0xbf,0x48,0x9b,0xb2,0x5a,0xaf,0x83,0xf7,0x59,0x3a,0x69,0xde,0xa4,0x4d,0x7e,0x95,0x51,0x57,0x12,0x9b, + 0x85,0xbd,0x39,0x5d,0x4d,0x1a,0x1a,0x5b,0x5f,0x67,0xaf,0xf3,0x62,0x5a,0x5e,0xf7,0xe7,0x4d,0xcb,0xc9, + 0x6a,0x91,0x15,0x0d,0x21,0xe1,0xb2,0x7a,0x96,0x4e,0x2e,0xe3,0x54,0xf1,0x41,0x61,0xbb,0xb7,0x93,0x85, + 0xad,0xd3,0xbe,0x51,0x55,0x0f,0x41,0x83,0xe3,0xbd,0x07,0xb7,0x36,0x63,0x3e,0xf7,0x33,0xa6,0x0e,0x40, + 0x91,0xf0,0x6b,0xb3,0x71,0x18,0x8f,0x28,0x81,0x8a,0xd1,0x5e,0x5a,0x5d,0x70,0x4f,0x6a,0x83,0xfe,0x2a, + 0x42,0x7f,0x15,0xa1,0xbf,0x34,0xb4,0x59,0x52,0x89,0x39,0x4b,0x8b,0x8d,0x92,0x23,0x33,0xee,0x1e,0x20, + 0xba,0x40,0x4a,0x9d,0xb5,0x59,0xdc,0x6f,0x50,0x17,0x49,0x41,0x1d,0xdd,0xa6,0xa5,0x9a,0x71,0x1d,0xe2, + 0xe3,0xb8,0xd9,0xd0,0x91,0xb5,0x51,0xb4,0xdb,0x7a,0x61,0x08,0xa7,0xfa,0x72,0x9e,0x4e,0xb2,0xf0,0xc1, + 0xff,0xfc,0x52,0xff,0xed,0x81,0x0a,0x82,0xc8,0x25,0x51,0xca,0x3d,0x4e,0xda,0x6c,0xda,0xe7,0x5a,0xe7, + 0x54,0x73,0xa8,0xb3,0x5d,0xa8,0x4b,0x69,0xd1,0xd4,0xdb,0xa9,0x02,0x99,0xc1,0xd8,0x22,0xec,0xce,0x55, + 0x84,0x39,0xa4,0x09,0x2b,0xec,0xdc,0xd1,0xbc,0xf1,0x54,0xfb,0x53,0x67,0x49,0xac,0x61,0xba,0x5c,0xce, + 0x6f,0x78,0xb4,0xdb,0xdd,0xb4,0x4b,0xed,0x0d,0x7a,0x77,0x37,0x1b,0x4e,0x4a,0x02,0xf0,0x8a,0xa0,0xac, + 0xac,0x7a,0xe7,0xaf,0x55,0x62,0x68,0x30,0x38,0x70,0x5e,0x5f,0x3a,0xf6,0x6d,0xdf,0x1c,0x74,0x0e,0x6c, + 0x9c,0x94,0x48,0x5d,0xaf,0xc3,0x86,0xa8,0xb9,0xbe,0x65,0x1b,0x82,0xd2,0x78,0x4e,0x14,0x61,0xf3,0xea, + 0x59,0xff,0xc2,0x0e,0xeb,0x79,0x3e,0xa1,0x9a,0x08,0x06,0xe4,0x31,0x3c,0x50,0x07,0x51,0x44,0x95,0x62, + 0x5c,0x67,0xa6,0x4b,0x11,0x53,0xaa,0xcd,0xe6,0x2f,0xd1,0x23,0xa0,0x94,0x0d,0x29,0x53,0x83,0xde,0xc4, + 0x7b,0x5e,0x34,0x59,0x35,0xc9,0x96,0x34,0x60,0x3a,0x1a,0x35,0x11,0x18,0x33,0x95,0xa8,0xaa,0xac,0x5e, + 0xd2,0x7c,0x64,0xf2,0xba,0xb1,0x64,0xde,0xdf,0x85,0xcc,0x7b,0x28,0x64,0xde,0xe1,0x7f,0x0b,0x9d,0x77, + 0xf8,0x0f,0x82,0xf6,0x6d,0x82,0xb2,0x35,0x61,0xdb,0x07,0x03,0x93,0x17,0xa5,0x26,0xf8,0x6e,0x57,0xd5, + 0x3c,0x76,0x60,0x70,0x70,0xba,0x51,0xee,0xed,0xf0,0x34,0x8a,0x94,0x57,0x38,0x57,0xad,0x01,0xa9,0xdb, + 0x45,0xd6,0x5c,0x96,0xd3,0x38,0xb8,0xc8,0x9a,0x60,0x03,0xd2,0x71,0x28,0x29,0x44,0xa5,0xc8,0x03,0x51, + 0x03,0xaf,0xca,0xeb,0xac,0x3a,0x4a,0x6b,0x42,0x14,0x32,0x85,0xc9,0x49,0xad,0xe4,0x04,0x21,0x5a,0x25, + 0x31,0xd4,0x21,0x8d,0xbc,0x9c,0x5f,0x65,0xd4,0xe5,0x11,0x60,0x7a,0x6b,0xa6,0xcc,0xe0,0x86,0x1a,0x13, + 0x85,0xfe,0x20,0x9b,0xe1,0xaa,0xa8,0x2f,0xf3,0x59,0x43,0xb8,0x7b,0xb6,0x9a,0xcf,0xf2,0xf9,0x3c,0x9b, + 0x2a,0x54,0x0a,0x84,0x93,0x4d,0x23,0xda,0xb4,0x7d,0x35,0xca,0x64,0xdf,0x51,0xe5,0x72,0x55,0x5f,0xde, + 0x5d,0xdf,0xa8,0x31,0xbb,0x29,0xa2,0xbd,0x37,0x6c,0x2e,0x33,0x06,0x20,0xee,0x04,0x35,0x66,0x9e,0x7c, + 0x74,0x54,0xda,0x86,0x4e,0x82,0x69,0x36,0xcf,0x9a,0x2c,0x50,0x3c,0x75,0x2a,0xb8,0x24,0x28,0xa5,0x9f, + 0x72,0x89,0xe6,0xeb,0xe0,0x54,0xb5,0x60,0xde,0x2d,0x31,0x51,0x85,0x89,0x87,0xb3,0x1c,0x32,0xe3,0xd1, + 0xe9,0x29,0x0a,0xcd,0x7a,0x15,0xeb,0x35,0x21,0x50,0xb3,0x4a,0x99,0xc2,0x5a,0x13,0xfe,0xa2,0x6d,0x1d, + 0xb5,0x3a,0xb3,0x2c,0x6b,0x74,0x62,0xb9,0xe2,0xbf,0x69,0x33,0xb9,0xfc,0xf3,0x3d,0x00,0xde,0xfc,0x5c, + 0x1f,0xaa,0xbe,0x3e,0xa8,0x29,0x28,0xb6,0x42,0x77,0xc5,0xed,0xf4,0xea,0x2f,0xec,0x2e,0x60,0xa3,0xdd, + 0x7c,0xe8,0x91,0x2a,0x7c,0x7c,0x77,0x52,0x4e,0x82,0xa3,0x92,0xd6,0xbc,0x68,0xf6,0x8f,0xa9,0xf3,0xc1, + 0x69,0x04,0xe8,0xef,0x26,0x26,0x4d,0xd4,0x65,0xa8,0xfe,0x1b,0x3b,0xed,0xb6,0x5d,0x2e,0x0e,0x80,0x19, + 0xf3,0x49,0x8a,0x2e,0x3c,0xf8,0xb4,0x7f,0x7d,0x7d,0xbd,0x4f,0x93,0xb8,0xd8,0xa7,0x31,0x65,0xc5,0xa4, + 0x24,0xa6,0x93,0x76,0x01,0xed,0xe9,0x74,0x9a,0x2e,0x1b,0x9f,0xee,0x12,0x56,0x30,0x1b,0xdd,0x4d,0x32, + 0xfc,0xfc,0xfa,0xd5,0x8b,0xa6,0x59,0xbe,0x97,0xd9,0x1b,0x67,0xd4,0x85,0x7f,0x10,0x87,0xde,0x53,0x92, + 0x56,0x62,0x92,0xd5,0x35,0xef,0x62,0x14,0xc2,0x71,0x04,0x88,0xab,0xd2,0xa2,0x46,0x6f,0x74,0x15,0xf1, + 0x49,0xef,0xd1,0x51,0xd2,0x9a,0xb5,0x47,0x05,0xde,0xd2,0x91,0xd1,0x8c,0x4d,0x91,0xe0,0x11,0x9e,0x36, + 0xad,0xf3,0x2a,0x94,0x94,0x7d,0x05,0xc5,0xe6,0x8a,0x12,0x21,0x46,0x2f,0xe3,0x2c,0xee,0x54,0xa6,0x29, + 0xdf,0xb1,0x21,0x76,0x39,0xbf,0x43,0x12,0x21,0x3f,0xac,0xd0,0xd3,0x3f,0x9c,0xf0,0xd1,0xe4,0x32,0xad, + 0xea,0xac,0x49,0x56,0xcd,0x6c,0xff,0x1f,0x01,0x80,0xc9,0x30,0x20,0xb4,0xf9,0xb8,0x72,0xa1,0x6a,0xfb, + 0xeb,0xfc,0xb5,0x2e,0x8b,0xad,0x2a,0xbe,0xfb,0xf0,0xf6,0xcd,0x50,0xd0,0x66,0x3e,0xbb,0x01,0x0b,0x16, + 0x67,0x9b,0x53,0x7f,0x86,0x35,0x92,0x3e,0xf1,0xf7,0x08,0x58,0xb9,0x2d,0x5c,0x1b,0x35,0xd5,0xcd,0x6d, + 0x96,0x70,0x8d,0x4b,0xb4,0x82,0x93,0x6d,0x82,0x1d,0x86,0x4f,0x36,0xe6,0xc8,0x45,0xed,0xf9,0x22,0x2b, + 0x57,0x4d,0x7c,0xa0,0x3e,0xd5,0xd5,0xec,0xa8,0x2c,0x3f,0xe6,0xd9,0x9b,0x74,0x91,0xc5,0xc1,0xcf,0x1f, + 0xde,0x3f,0xdf,0x3f,0x7e,0xfb,0xfd,0xb3,0x37,0x01,0xe7,0xbd,0x20,0x5c,0x91,0x55,0x3a,0x6f,0xdf,0xcf, + 0x5d,0xa4,0x9f,0xf4,0xd2,0xbe,0x62,0xd4,0x14,0xef,0x1f,0xaa,0xab,0x74,0x9e,0xd3,0x6e,0xcb,0x88,0xc4, + 0x6c,0x56,0x7d,0x04,0xec,0x4e,0xf6,0x4d,0xf2,0xf0,0xe0,0x80,0x8e,0xe2,0x47,0x5f,0x1c,0x1c,0x6c,0x36, + 0xa3,0x7a,0x78,0xc9,0x2d,0x10,0x20,0x4f,0xca,0xc5,0x82,0xc8,0xe6,0xdb,0xc7,0x13,0xe0,0xcc,0x78,0x6b, + 0xea,0xd4,0x4e,0x43,0x34,0xd6,0x03,0xa2,0x6e,0x72,0x7a,0xfe,0xdb,0x83,0xbf,0x05,0x74,0x3e,0xe6,0x7f, + 0x80,0xe6,0xda,0xa8,0xc5,0xb6,0x06,0xc4,0x72,0x0b,0x74,0x90,0xff,0x15,0xcc,0xd4,0xfa,0xdc,0x48,0x31, + 0xd2,0xa8,0x85,0x55,0xea,0x3f,0xc0,0x2a,0xd8,0x9b,0x15,0x6f,0xfd,0xbb,0x09,0x2f,0xdb,0xa7,0xcc,0xd5, + 0x25,0xb8,0x8f,0x48,0xed,0x66,0x30,0xa8,0x08,0xec,0x7e,0x58,0x2e,0xcd,0x49,0x47,0x1c,0x48,0xd3,0x4e, + 0x61,0xbc,0xd3,0x10,0x79,0xa9,0x64,0x4e,0x58,0x94,0x45,0xfd,0xfc,0x23,0x82,0xc2,0x75,0x4e,0x01,0x3d, + 0x7d,0x2d,0xe8,0xe9,0xd0,0x50,0x02,0x5f,0x68,0x4a,0xe0,0x4b,0x61,0xc9,0x0f,0x0f,0xc0,0x93,0x7f,0x8e, + 0xcc,0x97,0xdf,0xe1,0x79,0x53,0xa6,0xad,0x97,0xe1,0x39,0x3d,0x87,0x92,0x40,0x7b,0x98,0xaa,0xfa,0xaa, + 0x7f,0x3a,0x1c,0x0d,0x46,0x24,0x8a,0x3e,0xbd,0x43,0xef,0x44,0x58,0x09,0xb2,0x9b,0x11,0x0d,0x00,0x2c, + 0xaf,0x40,0x0c,0xe8,0x35,0x1a,0x55,0x3e,0xa6,0x99,0x45,0x10,0x4d,0xf2,0x5c,0x4c,0xbb,0x18,0x99,0x87, + 0xbd,0x64,0x9a,0xb6,0x8d,0x19,0xd5,0x65,0x12,0x94,0x05,0x88,0xba,0x1b,0x62,0xa8,0x9a,0x8c,0xf6,0x6e, + 0x71,0x41,0x00,0x76,0x95,0xec,0x1e,0x8e,0xb0,0x05,0x7b,0x98,0x24,0x19,0x14,0xd1,0x73,0x7a,0xb8,0x3f, + 0x3f,0x2d,0x17,0x04,0xb0,0xba,0x46,0xe2,0x9c,0xae,0xf3,0xe6,0xf2,0xa8,0xca,0xa6,0xd4,0x7e,0x9e,0xce, + 0xeb,0x20,0x2f,0x76,0x96,0xeb,0x35,0xa1,0xa1,0x21,0x21,0x1a,0x50,0x97,0xd2,0x93,0xde,0xcf,0xa5,0x43, + 0x10,0x39,0x72,0x27,0x0e,0xd4,0x72,0x58,0x16,0x84,0xa3,0x2f,0x88,0xba,0xf0,0xa6,0x8d,0x36,0x3b,0xe7, + 0xe8,0x6d,0xde,0xca,0x00,0xac,0xa6,0x2b,0xa2,0xd3,0x79,0xe2,0x16,0x89,0xbc,0x0d,0x09,0x0a,0xaa,0x82, + 0x76,0x39,0x75,0x30,0x50,0x17,0x26,0x75,0x99,0xd6,0xf5,0x75,0x59,0x4d,0x91,0x3a,0x9a,0x0e,0x1f,0x53, + 0x5a,0x59,0xe5,0xbf,0xf3,0x9e,0x4c,0x82,0x27,0x69,0x9d,0x4f,0x76,0x82,0xbd,0x79,0xb8,0xd8,0xa3,0xf3, + 0x6a,0xef,0x22,0xda,0xd0,0xa4,0x50,0xc3,0x4b,0x22,0x4f,0x3c,0xa2,0xcc,0x03,0x4c,0x55,0xca,0x38,0xa9, + 0x13,0x4b,0xc6,0xbe,0xf6,0xe1,0x43,0x56,0xd1,0x74,0xe4,0xbf,0x13,0xf1,0xab,0x76,0x09,0xb0,0x96,0x43, + 0xd3,0xfb,0xcc,0x3c,0xa9,0xe5,0xc9,0xe5,0xa9,0x3f,0x18,0xb4,0x46,0xa0,0xfe,0x25,0x6d,0x80,0x25,0xd3, + 0xde,0x37,0x40,0x3c,0x34,0x86,0x2b,0xec,0x00,0x08,0xbd,0x96,0xc3,0x9a,0x51,0xd1,0x7a,0xbd,0xb4,0x14, + 0x18,0xe1,0xff,0xc1,0xe0,0x40,0x7f,0x63,0x93,0x88,0x5a,0x9b,0x66,0x9f,0xde,0xd2,0xa2,0xce,0x20,0x2c, + 0x08,0x88,0x28,0xbf,0x15,0x5e,0x07,0xe8,0xe4,0xf1,0x7c,0x6e,0x10,0xb1,0x60,0x44,0x59,0xb7,0x71,0x4a, + 0xc3,0xed,0xcd,0xc6,0x79,0xc0,0x02,0xad,0x2a,0xb9,0x65,0xfa,0x23,0xb3,0x8d,0x01,0xe8,0x88,0x3b,0x00, + 0x32,0x03,0xeb,0xdc,0xce,0x18,0xbb,0x4e,0xc5,0xee,0xf1,0x98,0xca,0x2a,0x19,0x49,0x7c,0xf8,0xf0,0xe1, + 0x17,0x89,0x1b,0xd9,0xf8,0xe1,0xc1,0x97,0xb1,0x79,0xd1,0x65,0x50,0x7c,0xab,0x5c,0xf0,0xa6,0xdc,0xd1, + 0x70,0x1f,0xd8,0x0f,0xb8,0x62,0xbd,0x61,0xe2,0x42,0x11,0x7b,0x34,0xcb,0x2f,0x88,0x70,0x32,0x8c,0xc2, + 0x72,0x33,0xca,0xb1,0xcd,0x08,0xf9,0x28,0x82,0x4b,0x1a,0xd0,0x46,0x40,0x2b,0xab,0xaa,0xb2,0xf2,0xd7, + 0x62,0x15,0x4e,0xc2,0xe0,0x4d,0xd6,0x10,0xb8,0x7c,0xdc,0x79,0x86,0xdc,0x40,0x65,0x8a,0xa7,0x60,0x19, + 0xd9,0x8f,0xef,0x02,0x4b,0xfe,0x5a,0xa7,0xef,0xd0,0x2e,0x0a,0xf6,0xec,0xaa,0xef,0x05,0x8b,0x7a,0x27, + 0xfb,0x34,0xc9,0x32,0x90,0x3c,0x54,0x67,0xf0,0xec,0xe8,0xed,0x9b,0x37,0x8f,0x9f,0xbc,0x7d,0x7f,0xfc, + 0xec,0x69,0xd0,0xaa,0xbd,0x1a,0xf6,0x89,0x37,0x42,0xbd,0x94,0x37,0xc0,0x59,0xc4,0xdc,0x9c,0x27,0x04, + 0x84,0x9d,0x6d,0xe8,0x76,0x60,0x04,0x3e,0xb1,0x7d,0x2c,0x8e,0x6f,0x18,0xba,0xc2,0x6e,0x7a,0x14,0x0b, + 0x6b,0x31,0x3a,0x27,0x70,0x9b,0x9e,0x48,0xb6,0x3b,0x31,0x4f,0x93,0x73,0xde,0x11,0x01,0x9d,0xf7,0x7a, + 0x03,0x4b,0x26,0xc3,0x0e,0xd0,0xb8,0xc1,0xf3,0xd3,0x0e,0xe3,0x6b,0x65,0x5e,0x33,0x02,0x94,0x89,0x46, + 0x56,0x40,0x30,0x81,0xc6,0xf5,0x1e,0x9f,0x33,0xb6,0x68,0xad,0x39,0xc5,0xba,0x76,0xda,0xa2,0xd5,0xcb, + 0xe4,0x84,0xea,0x8c,0x98,0xba,0xbc,0xec,0xa6,0x25,0xd8,0x79,0x6d,0x80,0x64,0xa2,0x62,0xd9,0x4a,0xea, + 0x80,0xac,0x26,0x31,0x44,0xf0,0x1c,0xe0,0xa4,0xde,0x06,0xeb,0xa8,0xb9,0xa4,0xe5,0x20,0x8e,0xb6,0x97, + 0x5b,0x2f,0x8b,0xa7,0xe5,0x35,0xa3,0xb5,0x77,0x1a,0x97,0x0d,0x06,0xcb,0x61,0x3a,0x9d,0x3e,0xbb,0x02, + 0x79,0x91,0xd7,0x34,0x7e,0x1a,0x49,0x60,0x30,0x1d,0x41,0x41,0xcf,0x37,0x51,0x1f,0x4f,0x8e,0x82,0x3f, + 0x2c,0xbb,0x55,0xaf,0x38,0xc5,0x3d,0xfd,0x61,0x5b,0xed,0x2a,0x30,0x47,0x13,0xa7,0xa4,0x60,0xc1,0x82, + 0x7b,0x05,0xfb,0xc2,0x5c,0x26,0xb3,0x69,0xfe,0x59,0xb6,0xe4,0x39,0x4f,0xcf,0xe9,0x90,0x23,0x54,0xb8, + 0x82,0x9a,0x46,0x20,0x17,0x0b,0xe4,0xaf,0x79,0x38,0x93,0x64,0x85,0xf5,0xa4,0x93,0x72,0xf6,0x17,0xce, + 0x6e,0x3a,0x95,0xef,0xa0,0x2c,0xf0,0x89,0xe6,0x3c,0x86,0xb2,0xd3,0x87,0x6d,0x82,0x6d,0x54,0x68,0xb4, + 0x40,0x9c,0xcd,0x60,0xb0,0x9b,0x87,0xe6,0x3d,0x1a,0x37,0x44,0xce,0x06,0x1a,0xb0,0x76,0x66,0x29,0xa1, + 0xc8,0xe9,0x0e,0x80,0x67,0x47,0x0a,0xec,0x80,0x3e,0xa6,0x5d,0x6b,0x3e,0x50,0xa6,0x05,0xc1,0x00,0x85, + 0x55,0x3f,0x15,0xa0,0x6f,0xc3,0xe2,0xcf,0x8f,0xe6,0xf0,0xee,0xd1,0xa8,0x5c,0x95,0x32,0xa2,0x94,0x8f, + 0x4c,0xc6,0x3a,0xe0,0xe9,0xad,0xa6,0x29,0xb5,0xc5,0xfe,0x13,0x11,0x18,0xf8,0x4d,0x95,0x7b,0xd2,0x36, + 0x19,0x52,0x42,0x19,0x20,0xb0,0x86,0x18,0x73,0x52,0xc8,0x86,0x11,0x59,0x48,0xe5,0x6d,0x9e,0x24,0x27, + 0x5e,0xe9,0x3f,0x50,0x28,0xed,0x08,0xb3,0xf1,0xc3,0xfb,0x97,0x47,0xe5,0x82,0x6a,0x22,0xa8,0xa4,0x4c, + 0x27,0xd6,0xfb,0xaf,0x2f,0x0f,0x1e,0x5c,0xe4,0x2a,0xf8,0xbf,0xbe,0xac,0xef,0xbf,0xbe,0x78,0xcc,0x89, + 0x71,0x2b,0xf1,0xe1,0x97,0x0f,0x2e,0x54,0x70,0xaf,0x9d,0x76,0xc4,0x05,0x55,0x3b,0xf1,0x00,0x05,0xf7, + 0x5a,0x69,0x5f,0x3d,0xe1,0x82,0x27,0xed,0xc4,0xa7,0x9c,0x78,0x1a,0xf8,0x3c,0xec,0x67,0xc0,0x8d,0x30, + 0xc2,0x6e,0x63,0x54,0xb1,0x19,0xaf,0x6a,0x09,0xca,0xa9,0x88,0x40,0x58,0x36,0x5a,0x75,0x44,0x09,0x7d, + 0x8c,0x59,0x13,0x51,0xa9,0xc6,0x63,0xb1,0xb8,0xb4,0x5e,0xf0,0x93,0xd3,0x91,0xa3,0xdd,0x9b,0xce,0xe2, + 0xf6,0xa9,0xbf,0x68,0xc9,0x2c,0x77,0xc8,0xcc,0x7b,0xd8,0xec,0x25,0xc1,0xc9,0xa9,0xe6,0x49,0x4d,0x3a, + 0x11,0x60,0x5a,0x1f,0x96,0xf7,0x91,0xe1,0xe0,0xbd,0x86,0xa2,0x86,0x60,0xc6,0x12,0xd4,0x49,0xf9,0xf2, + 0xc3,0x5b,0xd3,0xc5,0x36,0x13,0xc8,0x7c,0xf3,0x36,0x87,0x07,0x7d,0x2b,0xe4,0x3d,0x84,0x9c,0xa3,0xbd, + 0x20,0x09,0xf6,0x58,0xf5,0x06,0x01,0x05,0x08,0xee,0x74,0xf8,0x6b,0x99,0x17,0x61,0x30,0xa0,0x49,0x36, + 0x8c,0x34,0x2a,0xda,0x4b,0xc2,0xfd,0x43,0xe8,0x41,0x1c,0xa9,0x32,0x0e,0xa2,0x31,0xfd,0x89,0x51,0x76, + 0xaf,0x8c,0xfe,0x18,0xe0,0x5a,0x04,0xfe,0x49,0x90,0x82,0x9a,0x0d,0x52,0x9f,0xac,0xa3,0x77,0x73,0xe0, + 0x88,0xc8,0xc9,0x4b,0xe0,0x13,0x48,0x05,0x59,0x93,0x5e,0xe0,0xe7,0xd3,0x32,0x27,0x60,0xa7,0xa7,0x19, + 0x21,0x3c,0x30,0x5c,0xc2,0x3f,0xe5,0xb3,0xfd,0x45,0x39,0xcd,0x67,0x79,0x36,0xdd,0xaf,0x73,0x42,0x8b, + 0x92,0xb6,0x2a,0xb6,0x52,0xe7,0x69,0xdd,0xd8,0xb2,0x78,0x2f,0x27,0xa6,0x0f,0xc4,0x5d,0x82,0xfb,0xbe, + 0xa6,0x83,0x1c,0x2d,0x10,0x4a,0xfd,0x74,0xb3,0xdf,0xed,0x68,0x95,0x11,0x4f,0x4f,0xc7,0x29,0x9e,0xe8, + 0x98,0xda,0x4f,0x67,0x0d,0xbf,0x81,0x98,0xdd,0xa7,0xb1,0x11,0xa5,0x73,0x7a,0x07,0x5b,0xc1,0xc2,0x41, + 0xda,0xe0,0x25,0x24,0x2f,0x4e,0xe3,0x4f,0x5c,0xbb,0x5b,0xf5,0x61,0x4d,0x0c,0x68,0x13,0x06,0xbf,0x14, + 0x04,0x23,0x1d,0xee,0xbb,0xf4,0x97,0x81,0x76,0x9d,0xa2,0xcd,0x3f,0x84,0x9c,0x1e,0x9f,0xad,0xce,0x69, + 0xbe,0xc3,0x03,0x42,0x3b,0x51,0xfb,0xac,0x56,0xc5,0x56,0xa9,0x72,0xef,0x90,0x00,0x42,0x0e,0xcf,0x94, + 0x8e,0x70,0x16,0x2a,0xe9,0x8a,0x9b,0xe8,0x9b,0xe4,0x40,0xef,0x9e,0x11,0x32,0x13,0x90,0x12,0xfb,0x13, + 0x26,0x40,0x98,0x14,0x18,0xf3,0x37,0x63,0xfc,0x89,0x4f,0x4e,0x23,0x60,0x28,0x9a,0xc2,0xf0,0xa4,0x38, + 0x8d,0x62,0x9b,0xb3,0x17,0x28,0xa0,0xe6,0xb8,0x00,0xc3,0x9b,0x52,0xc6,0x9f,0x87,0x12,0x6f,0xf6,0xee, + 0xa2,0xad,0xc6,0xbe,0x82,0xc0,0x29,0x6a,0xac,0x45,0x42,0x66,0x85,0x92,0xbc,0x03,0x69,0x00,0x8f,0x1b, + 0x6a,0xe7,0x7c,0x45,0x3b,0x28,0xb8,0xa4,0x25,0x0c,0x60,0x64,0xd0,0x10,0x3f,0x8d,0x17,0x6c,0xbb,0x3b, + 0x8a,0xdc,0xe2,0x29,0x96,0x62,0x8a,0x45,0x84,0x93,0x72,0x4e,0xef,0xe6,0x71,0xec,0x1e,0x1d,0xc6,0x8a, + 0x45,0x05,0x12,0x13,0x57,0x03,0xf0,0xc4,0xe7,0xf4,0xa3,0x6a,0xc6,0x33,0x31,0xda,0xc2,0xc3,0xd8,0x3c, + 0xf8,0x0a,0x95,0xb1,0xfb,0x32,0xad,0x51,0x16,0x3f,0x63,0xf9,0xf1,0xca,0xfd,0x9f,0x56,0x03,0xe0,0xa1, + 0x74,0x23,0x78,0x54,0x98,0x3b,0xf4,0x91,0x7e,0xd4,0x32,0x6d,0x2e,0x39,0x3f,0x78,0x80,0xc5,0xa3,0x54, + 0x9d,0x30,0x84,0x50,0xe8,0x31,0x4c,0x42,0xc6,0x2e,0x11,0xa5,0xf6,0xdc,0xab,0x88,0xe7,0x69,0xad,0x92, + 0x07,0xe1,0xa2,0xce,0xb3,0x35,0x4d,0x10,0xc8,0xb6,0xe8,0x41,0x3e,0x6c,0x20,0x03,0x75,0x2a,0x38,0x80, + 0xff,0x63,0x40,0x3f,0x36,0xb9,0xd1,0xaa,0x69,0x8b,0x8c,0x67,0xf3,0x0c,0x6f,0x61,0x90,0x06,0xf6,0x9c, + 0xa4,0x35,0xd2,0xbc,0xf8,0xd0,0xec,0x40,0xbd,0x16,0x4e,0xfa,0x60,0x28,0x07,0x81,0x02,0xc6,0x75,0x05, + 0xa1,0x3f,0xfa,0x13,0x17,0xce,0xa0,0xc4,0xcc,0x3f,0x53,0xa9,0xe6,0x05,0x10,0x8d,0xf9,0xe0,0x44,0x3c, + 0x6c,0x36,0x84,0x27,0xb7,0x54,0x8e,0xbb,0x07,0x9f,0x3f,0xa3,0x3d,0x65,0x90,0xd6,0x75,0x2c,0x88,0x14, + 0xa3,0x5d,0x9e,0x04,0xd2,0xa1,0x1d,0xa0,0x29,0xe2,0x95,0xeb,0x9d,0x94,0xfa,0x52,0x30,0x69,0xb3,0x83, + 0x99,0x4d,0x27,0x40,0x0b,0x1b,0x81,0xea,0xe0,0xf1,0x93,0xa3,0xa7,0xcf,0x9e,0x7f,0xfb,0xe2,0xe5,0x77, + 0xdf,0xbf,0x7a,0xfd,0xe6,0xed,0xbb,0x7f,0xbe,0xff,0x70,0xfc,0xc3,0x8f,0x3f,0xfd,0xfc,0xaf,0x7f,0xa7, + 0xe7,0x13,0x62,0xe7,0x2f,0x2e,0xf3,0x5f,0x3f,0xce,0x17,0x45,0xb9,0xfc,0xad,0xaa,0x9b,0xd5,0xd5,0xf5, + 0xa7,0x9b,0xdf,0x0f,0x0e,0x1f,0x7e,0xf1,0xe5,0x57,0x7f,0xff,0xef,0x7f,0x7c,0xbd,0xf7,0x20,0x09,0x46, + 0x85,0x93,0x50,0x3b,0xc2,0x43,0x79,0xa9,0x42,0x1a,0x7c,0xd5,0x4a,0xc2,0x22,0x26,0xc1,0x4b,0xe9,0xd7, + 0x91,0xe9,0x96,0xe1,0x94,0x7a,0x91,0x94,0xd1,0xb7,0x35,0x20,0x61,0x12,0x3d,0xed,0x19,0x84,0x31,0x04, + 0x6d,0x75,0x72,0x00,0xc3,0x9b,0x51,0x69,0xa1,0x67,0x5d,0xe3,0xf4,0x9a,0x24,0x74,0xa2,0xa8,0xfa,0xbf, + 0x88,0x70,0x4a,0xf7,0x92,0x89,0xc9,0xfd,0xfb,0x17,0x83,0xe6,0x9b,0x6f,0xfe,0xb1,0x4f,0x19,0x7f,0xfb, + 0x47,0xc4,0xe8,0x26,0xcc,0x13,0xf9,0xf8,0x88,0x7a,0x4b,0x45,0xea,0xbd,0x64,0xf8,0xdf,0x5f,0x45,0xd1, + 0x37,0x0f,0xbf,0xfa,0x4a,0x13,0xec,0x18,0x5d,0x31,0x6a,0x92,0xe6,0xd1,0xa3,0x7f,0xac,0x73,0x73,0x1c, + 0xfd,0x2f,0x23,0x90,0xdb,0xeb,0x2a,0x6f,0x69,0xf5,0x0d,0xd5,0x46,0xc8,0xea,0x56,0xcc,0x40,0xe8,0xb4, + 0xaf,0xb5,0x8e,0x84,0x0f,0xcc,0x1e,0x1a,0x89,0xa8,0x05,0xe6,0xff,0xc4,0x0c,0x81,0x00,0x73,0x30,0xd0, + 0x9f,0x98,0x93,0x8a,0xbe,0xc3,0x78,0xf8,0xec,0x2e,0x80,0x99,0xbf,0x7d,0x7d,0x6c,0xa5,0xb7,0xca,0x83, + 0xec,0xdc,0xfb,0x16,0xfb,0x8f,0x3e,0xcc,0x5b,0x05,0x4a,0xaf,0xc0,0x94,0x05,0x34,0x54,0xa4,0x84,0xe0, + 0x82,0x80,0x3c,0x75,0x79,0x75,0x36,0x59,0x55,0x90,0x7a,0xbb,0x5d,0xc8,0xb8,0x3b,0xa9,0xf5,0x19,0x3f, + 0xda,0xa1,0x43,0x5e,0x81,0xb9,0x8c,0xb7,0x4e,0xa7,0xa4,0xf3,0xd1,0x70,0xc1,0x7c,0x16,0x86,0xf0,0x3e, + 0xbb,0x78,0xf6,0x69,0x19,0x06,0xe1,0xff,0xac,0x47,0xbf,0xfc,0x52,0xff,0x2d,0x0a,0x69,0x4a,0x88,0x7c, + 0x4b,0xc2,0x93,0xff,0x19,0x9d,0xfe,0x2d,0x0a,0x9c,0x2a,0xa8,0x21,0xfe,0x70,0x7b,0xae,0x4e,0xbe,0x38, + 0x15,0xf9,0x04,0x1a,0x5f,0x94,0x57,0x6d,0xeb,0x08,0xde,0x5d,0xbc,0x28,0xb4,0x16,0x04,0x6a,0x98,0xb1, + 0x61,0x51,0x5e,0x87,0xd1,0xfe,0x3f,0xfe,0xfe,0x65,0xf6,0x15,0x51,0xd3,0x71,0x77,0xd1,0x20,0x73,0x6a, + 0x8f,0xa3,0xa5,0x3f,0xdd,0x6e,0x87,0x3e,0xf8,0x0b,0xe4,0xb1,0xee,0xd4,0x25,0x81,0xcf,0x1c,0xd2,0xe2, + 0x93,0x53,0x9f,0x00,0xf5,0xf5,0x92,0x54,0x41,0xbf,0x22,0xbb,0x55,0x81,0x2c,0xd0,0xad,0xd5,0xb7,0xb1, + 0xcc,0x43,0xf4,0x6d,0xac,0x75,0x6f,0x17,0x16,0x4a,0x68,0xff,0x10,0x12,0x06,0xd7,0x12,0x97,0x4f,0xb6, + 0x26,0xce,0x7c,0x45,0x44,0x24,0x88,0xcc,0x4e,0x92,0xe6,0xf7,0x5a,0x15,0x69,0x8a,0x23,0x69,0x53,0x99, + 0x96,0xb8,0xf5,0x6b,0xf0,0x8c,0x08,0x2c,0x99,0xdb,0x10,0x03,0x4a,0xaf,0xc4,0x22,0xfe,0x87,0xda,0x2d, + 0xd8,0x1d,0x7e,0x86,0x9f,0x65,0x54,0xf0,0x72,0xa6,0xb9,0xbf,0x6c,0x1a,0x6e,0x29,0xb0,0x0e,0xbf,0x16, + 0x09,0x31,0x4c,0xf3,0xac,0x4d,0x20,0xbd,0x1e,0x42,0x40,0x4c,0xbf,0x77,0xf0,0x08,0xb4,0x34,0x40,0x67, + 0xd9,0xf0,0x3c,0xd5,0x62,0xb9,0xdd,0x89,0x96,0xc2,0x30,0x83,0x45,0x0f,0xc9,0x3c,0xb4,0xd9,0x4a,0x0b, + 0x68,0x94,0x95,0xf1,0x3a,0x69,0x2f,0x2b,0xfe,0x44,0x08,0x9c,0x40,0xc6,0xc8,0xd2,0x60,0x9b,0x0b,0x45, + 0x4d,0x47,0x65,0xe5,0xd7,0x62,0x44,0xf9,0x36,0x65,0x28,0xba,0x08,0x5d,0xa9,0x15,0xfa,0x6b,0x91,0xe6, + 0x69,0x3b,0x1d,0x6f,0xd1,0x1f,0x2a,0x22,0x54,0x9f,0x7a,0x01,0xa4,0x35,0x1a,0xf2,0xf5,0x0c,0xb4,0xae, + 0x46,0x68,0x6f,0x5b,0x6e,0x4e,0x37,0x66,0x43,0x53,0x27,0xb5,0xc6,0x6f,0xbd,0xae,0xcd,0x63,0x04,0x0e, + 0xb1,0x2d,0x6e,0x70,0x70,0xcf,0x73,0xdc,0x98,0xa9,0x91,0x07,0x7a,0xef,0x9d,0x1a,0x61,0x5d,0xa9,0xf8, + 0x46,0xf5,0xd4,0x94,0xd2,0x33,0x9d,0x30,0x52,0x21,0xec,0xf6,0x0c,0xaf,0x0b,0x38,0x77,0x1a,0x6e,0xdb, + 0x52,0x2b,0x45,0x79,0xef,0x9f,0x6b,0x9b,0xd6,0xd7,0xa9,0xe9,0x99,0x8f,0x6a,0xfe,0x92,0xe6,0xe2,0x33, + 0xdc,0xa8,0x99,0x10,0xbb,0x54,0x45,0x8b,0xc2,0x81,0x8a,0x13,0x08,0x63,0xb3,0xcd,0x48,0xfd,0x09,0x79, + 0x81,0xa5,0x63,0xc2,0xdd,0x6c,0xbd,0x86,0x35,0xc7,0xd9,0xd1,0xe3,0x37,0x47,0xcf,0x5e,0x9d,0x9d,0xfd, + 0x07,0xd2,0x07,0x53,0xdb,0x83,0xff,0x09,0x4f,0xd2,0xfd,0xdf,0x4f,0xf1,0xe7,0x97,0xe9,0x2f,0x7b,0xbf, + 0xec,0xff,0x32,0x3c,0xfd,0x5b,0x1c,0x8d,0x7f,0x79,0xf0,0xcb,0x03,0x43,0xfa,0x65,0xff,0x91,0x78,0xc3, + 0x21,0xc6,0xb1,0x67,0x48,0xf4,0xcb,0x83,0x3d,0x21,0x99,0xf7,0x40,0x7f,0x36,0x3e,0x41,0xfc,0x60,0x4f, + 0x48,0xdd,0x3f,0x98,0x9c,0xb6,0xd5,0x4e,0x8b,0x52,0xcb,0x36,0x45,0x8f,0xf1,0x66,0xb2,0x75,0x64,0x04, + 0x62,0xec,0x1b,0xec,0x85,0xfe,0xe7,0xc4,0xe8,0x12,0x1f,0xe3,0xa7,0xc4,0xb0,0x6e,0x6a,0x51,0x59,0x6e, + 0xd2,0xa1,0x1e,0xf1,0xcc,0xa9,0xff,0x12,0x3a,0x84,0x20,0xd3,0xca,0x12,0x77,0x3d,0x05,0xab,0x25,0x8a, + 0x20,0xd4,0x14,0x79,0x13,0x51,0x17,0x74,0xca,0x13,0xdd,0xbd,0xb3,0x58,0xd5,0xcd,0xce,0x79,0xb6,0x93, + 0x5a,0x9b,0xa9,0x61,0xa0,0xcd,0x50,0x46,0xdc,0x6b,0x2d,0x18,0x4c,0x7a,0x95,0x59,0x98,0x2b,0x9a,0x20, + 0xf9,0xa0,0x48,0xf0,0xc1,0xa8,0x9d,0x0d,0x29,0x5a,0x5a,0x03,0x2d,0x85,0xe6,0x91,0xab,0xca,0x79,0x3f, + 0xda,0x34,0x88,0x11,0x1c,0x82,0xfe,0xa2,0x7d,0x3a,0x76,0x71,0x79,0x47,0x9d,0xa2,0xad,0x2a,0xb8,0x1a, + 0x2d,0xb2,0x75,0x29,0x38,0xb4,0xea,0x72,0x55,0x4d,0x32,0xff,0x2b,0xdf,0xd8,0xe0,0xb6,0xc1,0x81,0xc1, + 0xf6,0x44,0x55,0x0b,0x15,0x65,0x09,0x0e,0x55,0x39,0x54,0x18,0x7e,0xee,0x3c,0xa8,0xfe,0xc2,0xde,0xd8, + 0xe9,0x41,0x51,0xc6,0xa0,0x8c,0xc5,0x8e,0x0d,0x6c,0xca,0xa0,0xf7,0xec,0xb6,0x70,0xb7,0x0f,0x44,0x8f, + 0x32,0xf3,0x7f,0xc9,0x0d,0xa2,0x81,0x63,0xc3,0x8f,0xab,0xac,0xdf,0xad,0xa1,0x1f,0x18,0xb3,0x5e,0x3b, + 0xd8,0xf5,0x1a,0xa3,0x63,0x8b,0x58,0xcf,0x18,0xb2,0x5b,0x52,0x64,0x5e,0x46,0x12,0xb6,0x69,0xef,0x4a, + 0xc3,0x72,0xb5,0x2b,0xf1,0xcd,0xda,0xb7,0xac,0x0b,0xd6,0xeb,0x6d,0x3b,0x5e,0x4a,0xab,0x6f,0x16,0xe7, + 0xe5,0xbc,0x9d,0x76,0x5e,0x96,0xf3,0x2c,0x2d,0x7a,0xed,0xda,0xff,0x77,0x2c,0xe1,0x45,0xc2,0xc6,0xc6, + 0xb7,0x8b,0xa2,0xd7,0x10,0xde,0x10,0xd1,0x6c,0x08,0xc1,0x36,0x79,0xa1,0x65,0xa0,0x1c,0x71,0xfc,0x4d, + 0x72,0x30,0x18,0xbc,0x26,0x12,0x7f,0x38,0x9b,0x97,0xb0,0x04,0x63,0x65,0x3a,0x71,0xac,0xf5,0xf3,0xbc, + 0x60,0xfa,0xd7,0xab,0xb5,0xee,0x74,0x9d,0x7a,0x3e,0x0e,0x82,0x1e,0xcf,0x96,0x71,0x57,0xe4,0x27,0x52, + 0xf0,0x87,0x51,0x6c,0xbb,0xe0,0x6a,0x9d,0xf4,0xf6,0xd5,0x49,0xb1,0x89,0xa3,0x49,0xdf,0x50,0xc7,0xc6, + 0x19,0x11,0xa6,0xf6,0xab,0xb9,0xb6,0x90,0xb4,0x16,0x99,0xda,0x34,0x5e,0xb8,0xfc,0x50,0xb4,0x07,0x55, + 0x62,0x65,0x58,0x0a,0x62,0xce,0xe4,0x60,0x94,0x3f,0xaa,0x8c,0x29,0x59,0x2e,0x86,0x99,0x27,0xf9,0xe9, + 0x29,0xe1,0x4a,0xc7,0x2f,0xf4,0x69,0xdf,0x4f,0xb2,0xb6,0x20,0xeb,0x74,0xd3,0x67,0xdc,0x41,0xc5,0x4e, + 0x37,0xae,0x8f,0x2b,0xeb,0x8e,0x60,0xfc,0x08,0x8c,0x4a,0x35,0xf3,0x44,0x5c,0x2c,0x0e,0xfe,0x66,0xff, + 0xd0,0x4a,0x89,0xb9,0xcb,0x74,0xe2,0x14,0xea,0x30,0xf2,0x6a,0x9b,0xb5,0xce,0xac,0x73,0xb3,0xea,0xd8, + 0xe4,0xb6,0xcc,0xd4,0xcd,0x65,0xcf,0x7c,0x8c,0xba,0x68,0xc3,0xb3,0x68,0x3b,0x29,0x4e,0x61,0xd8,0x49, + 0x3f,0xb0,0x10,0x8e,0xfc,0x86,0x97,0x5b,0xc6,0xa8,0x5a,0x1a,0x52,0xf5,0x18,0x0a,0x6b,0x0a,0x63,0x5c, + 0x7d,0x73,0x38,0x76,0xc6,0xad,0xb6,0x1c,0x70,0x00,0xf7,0x9b,0xcd,0x7b,0xcd,0xb3,0x95,0xf3,0x16,0xc3, + 0x33,0xa9,0xc8,0x7a,0x5e,0xa8,0xc2,0x75,0xe4,0x52,0x3a,0x42,0xdc,0xf8,0x7a,0x7d,0x30,0x72,0x4b,0x6f, + 0xca,0xee,0x37,0xb4,0xe2,0xce,0x32,0xb7,0x88,0x46,0xc5,0xfe,0xfe,0x28,0xaa,0x78,0x50,0x27,0xc5,0x5e, + 0x63,0xcd,0x6e,0x2b,0x57,0xe9,0x55,0x07,0x90,0xe0,0xbd,0xd1,0x44,0xf0,0xed,0x48,0x30,0x1b,0x56,0x32, + 0xea,0xbe,0x58,0xb4,0x44,0x13,0xb0,0x9a,0x2e,0x08,0xb0,0x8a,0x47,0xce,0x59,0x84,0x00,0x0b,0x15,0x0c, + 0x06,0x57,0xd0,0x3e,0x42,0x18,0x69,0xa1,0xcb,0x55,0x73,0x61,0xce,0x61,0x97,0x74,0xe3,0x00,0x06,0xdb, + 0x30,0x32,0x58,0x4a,0x1f,0x89,0x7c,0xce,0x55,0xf4,0x23,0x40,0xb3,0x4b,0x07,0xe1,0x6e,0x65,0x0a,0x11, + 0xd7,0xb2,0x5b,0x0d,0x06,0x76,0x83,0x51,0x05,0xfa,0x99,0x4a,0x43,0x87,0xc9,0xba,0x87,0x84,0xa7,0xc6, + 0x13,0xf7,0x13,0xdb,0xd2,0x4e,0x92,0xba,0xcb,0xc1,0x20,0x75,0x00,0xa9,0xd7,0x04,0xf2,0x2b,0x79,0x04, + 0x87,0x94,0x5d,0x65,0xd5,0x8d,0x77,0x3e,0x7b,0x04,0x26,0x8f,0x03,0xc3,0xde,0x48,0x65,0xeb,0xb5,0xa9, + 0x6c,0xf7,0x70,0x24,0x02,0x0d,0x0d,0x9e,0x1f,0xb3,0x1b,0x60,0x15,0xe2,0x96,0xfc,0x04,0x67,0x57,0x5e, + 0xbb,0xb6,0x27,0xb6,0xed,0xba,0xdb,0x76,0xab,0x65,0x78,0xe5,0xe8,0xc6,0x9d,0xf1,0x97,0x69,0xdd,0x03, + 0xeb,0xf3,0x2e,0x06,0xd9,0x5a,0x43,0xea,0xba,0xa9,0x2f,0xb2,0xee,0x74,0xba,0x67,0xc4,0x0b,0xdb,0x9a, + 0xce,0xdc,0xae,0xa3,0xf1,0x6d,0x9b,0x8d,0x37,0x6c,0x32,0xcd,0xe4,0x98,0xde,0x10,0x38,0xfc,0xdc,0x9e, + 0xf0,0x37,0xdb,0xb5,0xab,0x0b,0xa2,0x9e,0x20,0xf2,0x05,0x54,0x07,0x76,0x5e,0xbe,0xf8,0x3b,0x56,0x63, + 0xbd,0xfe,0xfa,0x2b,0xfc,0xba,0xcf,0x8f,0x8d,0xde,0x2e,0xba,0xd5,0x13,0x2a,0xa7,0xaf,0x71,0x3b,0xe2, + 0x6c,0xaa,0x7f,0xbe,0xca,0xe2,0x42,0x65,0x74,0xa0,0x65,0x55,0x7a,0x3e,0xcf,0xe2,0xdd,0xdd,0x4a,0x41, + 0xa2,0x21,0x2f,0x07,0xda,0x12,0x62,0xa5,0x33,0x0f,0x36,0x1e,0x92,0xf9,0xe8,0x9d,0x47,0x3d,0x0a,0xe7, + 0xc1,0xe0,0x41,0xc1,0x7e,0x11,0xac,0x13,0x7d,0xa0,0x29,0x74,0xdf,0x50,0xd0,0x55,0x75,0xd4,0xb1,0x70, + 0xca,0x68,0x2d,0xf8,0xf0,0x56,0xed,0x1f,0x77,0x72,0xb9,0x6f,0x3f,0x69,0x53,0x01,0x8d,0x02,0x26,0x46, + 0xb8,0xf3,0x56,0xcc,0x7a,0x35,0x2a,0x80,0x05,0xe5,0xb0,0x49,0x2f,0x94,0x65,0x89,0x27,0x97,0xf9,0x7c, + 0x5a,0x65,0x05,0x98,0x2f,0x58,0x7f,0x10,0x24,0xcf,0x17,0x8a,0x95,0x9b,0xfc,0x8e,0x8c,0xb4,0xbe,0x29, + 0x26,0xcf,0x53,0x98,0xc9,0xdf,0x38,0x75,0xea,0xb0,0x00,0xc3,0x8d,0xaa,0x45,0x92,0xd7,0xe4,0x13,0x60, + 0x72,0xfd,0x48,0xa9,0x04,0xbc,0x94,0x40,0x7f,0xb9,0xc4,0x11,0xb1,0xb6,0xd4,0x1f,0x2e,0xa2,0x9f,0x29, + 0x7d,0x56,0x1c,0x49,0x43,0x94,0x6e,0x9f,0x39,0x5d,0x77,0x9c,0xd3,0xed,0x20,0xe8,0xf9,0xc3,0x84,0xd6, + 0xee,0xe5,0x94,0xd3,0xf5,0xb3,0xd4,0x3f,0xa7,0xf1,0xb2,0xe7,0x65,0x23,0xea,0x58,0x3d,0x30,0x7a,0xa9, + 0xec,0x4b,0xf2,0xd8,0xcb,0x81,0x61,0x51,0x04,0xe5,0x6d,0xe1,0x17,0x2e,0xfc,0xc2,0x45,0xbb,0x30,0xe1, + 0x1b,0x37,0xe3,0x8f,0xbb,0x3b,0xc6,0x22,0xe9,0x36,0xda,0xd5,0x07,0x6d,0xc1,0x27,0x2c,0xce,0xd7,0x84, + 0xd6,0x8a,0x7e,0x3c,0x7f,0x11,0xaf,0xd6,0x0f,0x16,0xe9,0x89,0x4b,0xd0,0x6e,0xd8,0x72,0xe0,0x21,0xe6, + 0x5e,0x2f,0xb2,0xdd,0x59,0x10,0xca,0x9d,0x9d,0x95,0xe7,0x67,0x67,0x01,0x1b,0xab,0xc8,0xb3,0xff,0x51, + 0x5d,0x8d,0xd1,0x3b,0xc9,0x88,0x53,0x22,0xdb,0x2f,0xcb,0xd5,0x7c,0x4a,0xb3,0x4d,0x88,0x83,0x66,0x6b, + 0xf7,0xfb,0x82,0x8d,0x04,0xbb,0xd8,0x70,0xbd,0x06,0xb1,0x45,0x39,0x7a,0xf3,0xe4,0xf5,0x33,0x78,0xb5, + 0xd4,0xf9,0x39,0x5b,0xdb,0xd2,0x87,0xec,0xa4,0x40,0x54,0x2c,0xe6,0x8d,0x07,0x5d,0xb3,0xee,0x12,0x4b, + 0xc0,0xf3,0x7a,0xb5,0x38,0x2a,0x57,0x45,0xb3,0xb7,0x47,0x07,0x97,0x1b,0xe3,0x3d,0x5f,0x9d,0x2e,0x88, + 0x18,0xdf,0xfe,0xab,0x20,0xf4,0xab,0x9b,0xba,0xc8,0x1a,0xcf,0x3d,0xf0,0x69,0x56,0x4f,0xaa,0x1c,0x96, + 0xf3,0x3c,0x3b,0x8c,0xee,0x53,0x42,0xf7,0x87,0x44,0x2e,0xa6,0x43,0x7f,0x73,0x1a,0x09,0x71,0x4a,0x18, + 0x1b,0x95,0x10,0x2a,0xe5,0xc7,0x9a,0x1e,0xe7,0xc9,0x6e,0x4e,0x47,0x02,0x4e,0xc2,0xcf,0x60,0x03,0x1f, + 0x0b,0x6c,0x6d,0x7c,0x45,0x55,0x76,0x4d,0xab,0x9b,0xa4,0x1e,0xd7,0x86,0xe8,0x74,0xea,0x8f,0x7f,0x15, + 0xb4,0xd1,0x2a,0x2a,0x4f,0x73,0x53,0x52,0x4b,0x4b,0x58,0x6e,0x44,0x6a,0x4e,0xaf,0x73,0xbc,0xba,0xa4, + 0xee,0x89,0x33,0x18,0x78,0x14,0x7f,0x0b,0xc2,0xf4,0xfe,0x17,0xb7,0xa4,0xa6,0xeb,0x8e,0x44,0x4b,0xd0, + 0xc0,0xb0,0x13,0x13,0x2f,0x6b,0xed,0x9e,0x3e,0xd7,0x22,0x64,0xe3,0x6c,0x84,0x01,0xa1,0x39,0x0b,0x7b, + 0x6a,0x7f,0x94,0x8d,0x21,0x6f,0xda,0xc3,0x84,0x02,0xa7,0x5a,0xaf,0x9b,0x5d,0x36,0x41,0xdd,0xc5,0x73, + 0x38,0x19,0x4f,0x1c,0x1d,0x16,0x53,0x77,0xec,0x9c,0x37,0xb0,0xfa,0x2f,0xca,0x06,0xf4,0x2f,0x5b,0xde, + 0x7b,0xe0,0xf0,0xd6,0x33,0x0f,0xe8,0x82,0x20,0xad,0x5d,0xe8,0x8e,0x1b,0x7b,0xf6,0x32,0x8d,0xbe,0x48, + 0x3f,0x59,0x52,0x52,0xb1,0x04,0x4f,0x93,0x8a,0x8d,0x3a,0xa4,0xea,0x54,0x01,0x38,0x69,0xd8,0xff,0x14, + 0xfb,0x88,0x9f,0xba,0x2e,0xa3,0xae,0x6a,0x31,0x90,0x2d,0xb4,0xe8,0xc8,0xec,0x16,0xe7,0x99,0x24,0x80, + 0xbe,0x5e,0x57,0xb0,0xd4,0xd2,0x70,0x3d,0x2e,0xe2,0x6a,0x1c,0xde,0x23,0x04,0xc3,0x67,0x08,0x8f,0x82, + 0x90,0x11,0xe6,0xda,0x8c,0x15,0x84,0x9d,0xb1,0xbe,0x2d,0x3c,0x7c,0xfd,0xcc,0xee,0xf3,0x3b,0x86,0xec, + 0x8f,0xc6,0x33,0x75,0x70,0x1b,0x79,0xe4,0xfa,0xe4,0xef,0xb5,0xf5,0x5a,0x48,0x63,0xd8,0xa0,0x19,0x6b, + 0xdf,0xe6,0x54,0xd0,0x9c,0xdf,0x31,0x7f,0x05,0xde,0xd9,0xce,0xf8,0xe6,0x19,0x16,0xee,0xb0,0x51,0xdd, + 0xd6,0xd4,0x34,0x09,0x34,0x4e,0xa3,0xfa,0x51,0x6a,0xa0,0xb0,0x06,0x76,0x03,0x61,0x99,0xa4,0x27,0xf5, + 0xe9,0x29,0x00,0x14,0xb4,0xc2,0x8c,0x49,0xa1,0x71,0x19,0x56,0xec,0xdf,0x08,0x5d,0xca,0xbb,0x10,0x1b, + 0x3f,0xc6,0xb2,0x17,0xf4,0xd0,0x43,0x53,0xfe,0xda,0x11,0xd1,0x15,0xe3,0xce,0x9e,0xab,0x92,0x5e,0x3f, + 0x39,0xe3,0x3a,0xcc,0xce,0x72,0xd4,0x83,0xbe,0x03,0x79,0x9c,0x79,0x85,0x32,0x47,0xa2,0xeb,0x5e,0xe5, + 0x9b,0xb8,0x19,0x67,0x7e,0x7b,0xc6,0x95,0x3c,0xfc,0x5c,0x93,0x4c,0xc3,0xe0,0x0f,0x1a,0xfe,0x5c,0xb3, + 0x5e,0x41,0x62,0xfb,0xe2,0x26,0xf6,0x86,0xfd,0xb4,0x2b,0x87,0x1b,0x67,0x46,0x85,0x4f,0xdb,0xa9,0x8b, + 0x26,0xc6,0x4d,0x0c,0x3d,0xbf,0xf7,0xfd,0x4b,0x47,0xee,0x88,0xc0,0xa7,0xcd,0xf5,0x68,0x49,0x81,0xa7, + 0x0b,0xba,0x82,0x5b,0x15,0xc6,0x6c,0xab,0x78,0x65,0x66,0xde,0x93,0x02,0xd8,0xea,0x26,0x15,0xa1,0x17, + 0x82,0xaf,0x6a,0x34,0x87,0x07,0x1f,0x1d,0x50,0xec,0xf6,0x88,0x3f,0x68,0xb4,0xcf,0x9a,0x0f,0xd8,0x8f, + 0x38,0x94,0xa1,0xf6,0x2e,0xea,0x8a,0x5e,0x0c,0x44,0xd3,0x7e,0x5c,0xd6,0x62,0x09,0x24,0xeb,0xcb,0x00, + 0x77,0xbb,0x19,0x6d,0xed,0x8f,0x42,0x9c,0xd2,0xe9,0x88,0xb5,0xe8,0x0f,0x5c,0x4d,0x57,0x40,0x11,0x4a, + 0x5c,0x07,0xec,0x82,0xf4,0xe4,0xba,0x20,0xb8,0x3b,0x4d,0x6e,0x91,0x25,0x6a,0x2e,0x67,0x69,0x54,0x9a, + 0x1a,0xf9,0xdc,0x00,0x8a,0x28,0x22,0x7c,0x5b,0x9f,0x2a,0xfe,0xb0,0xa6,0x0f,0x01,0xb6,0xe3,0x3c,0x96, + 0xef,0xf3,0xcd,0x48,0xf7,0x37,0x49,0x37,0x40,0x99,0x77,0x0c,0x29,0x2f,0x30,0xf7,0xfe,0x98,0x6c,0xe2, + 0xe7,0x06,0x26,0x33,0xcd,0x04,0x83,0xcf,0x99,0x13,0xd7,0xc6,0x9c,0xf9,0x2d,0x8c,0x6b,0x62,0x3c,0x6f, + 0xfa,0x87,0x90,0xca,0x10,0xf4,0x31,0x58,0x9c,0xa4,0xc4,0xb3,0xd1,0x1f,0x1a,0x43,0x1d,0xd1,0x7a,0xcb, + 0xf7,0x29,0xa1,0xf8,0x28,0x96,0xe7,0x7a,0xb3,0xe9,0x0e,0xc3,0x0c,0x82,0x0e,0xc8,0xbc,0xa2,0xfe,0x12, + 0xf5,0xaa,0x17,0xc7,0xb4,0x52,0x79,0xad,0xc8,0x4c,0x8f,0x7a,0x16,0x3f,0x07,0x59,0xc0,0xd1,0x35,0x60, + 0xe0,0x1f,0xe7,0x6a,0xb5,0x84,0x75,0x21,0x4d,0x61,0x04,0xa5,0xbf,0x8e,0xbf,0xd1,0xe8,0xf0,0x12,0xdc, + 0x44,0xce,0x36,0x52,0x80,0xc2,0x1c,0xc6,0x81,0xaa,0x19,0x2e,0xf2,0x4f,0x44,0xca,0xb8,0xf1,0xd1,0xd9, + 0x57,0x27,0x26,0xd9,0x4c,0x51,0xfa,0xa8,0x1e,0xa5,0xe0,0x33,0xf9,0x53,0x93,0x4b,0xe3,0xa6,0x4a,0xb8, + 0x99,0x09,0x9d,0x44,0x34,0xeb,0xa8,0x65,0x22,0x11,0x09,0xe8,0x21,0x72,0xef,0x4d,0x04,0x44,0x35,0x21, + 0x92,0x87,0xd3,0xf5,0x0e,0x99,0xbb,0x8d,0xf1,0xdc,0xed,0xad,0x3e,0x6f,0x1b,0x3b,0x17,0x40,0xb6,0x18, + 0x08,0x0d,0x05,0x03,0x30,0x52,0x1b,0xf0,0xce,0x42,0xe9,0x5c,0x83,0x41,0x33,0x25,0x4a,0xaf,0x44,0x29, + 0x25,0xd2,0xe4,0xb8,0x08,0x4b,0x27,0x9d,0xa0,0x52,0x29,0x41,0x1f,0x8d,0x25,0xce,0x59,0x2c,0x81,0x92, + 0xf8,0x9b,0xfa,0xc2,0x95,0x37,0xdd,0xad,0xdf,0x9c,0x64,0xa7,0xaa,0x4c,0x76,0x69,0xd5,0x14,0xf3,0xb5, + 0x90,0xc6,0xa0,0xd9,0xf7,0xe1,0x13,0x91,0xc7,0xa9,0x7c,0xc8,0x27,0x20,0xe8,0x13,0x3a,0x1f,0xd1,0x50, + 0xa0,0xdd,0x2b,0x83,0x68,0x9c,0x12,0xf3,0x16,0xbf,0xd7,0x42,0x32,0x53,0x14,0x86,0xff,0xbb,0xac,0xd2, + 0x4e,0xe9,0xe7,0x48,0xfb,0xbf,0xa6,0x09,0x13,0xd2,0x56,0x22,0x99,0x46,0xb7,0x69,0x9f,0xe9,0xdf,0x0c, + 0x1e,0x50,0xb6,0x05,0xb3,0x29,0x1a,0xe3,0xd3,0x69,0xcf,0x01,0x10,0xb1,0xf7,0x34,0xc2,0x90,0x9d,0x26, + 0x51,0x13,0x9c,0xc8,0xb3,0x27,0x5b,0x04,0x0c,0x56,0xd4,0x39,0x3c,0xe3,0x1c,0x4a,0x1d,0x7b,0xcf,0x7d, + 0x22,0x5a,0xf8,0x0c,0x3f,0x77,0xc2,0xfd,0xe4,0x75,0xd8,0xc8,0x60,0xc7,0x95,0xa5,0x76,0x2a,0x02,0x57, + 0xa0,0xa4,0x2c,0xd2,0xfc,0x7a,0x97,0x86,0x1e,0x75,0x13,0xc0,0x87,0x7c,0x08,0x53,0x9a,0xf8,0x6e,0x46, + 0xed,0xcc,0x26,0xec,0xea,0xbd,0xf6,0xec,0xa3,0x30,0x7a,0xc7,0x1d,0x6a,0x2d,0x3f,0x3b,0x74,0xdb,0xe2, + 0xe1,0x2f,0xd7,0x7b,0xd1,0x03,0x0f,0x8f,0x37,0x27,0x87,0x34,0xb6,0xc0,0x55,0xf8,0xde,0x1d,0xe8,0xdd, + 0x63,0xc3,0x00,0xdc,0x6b,0x91,0x6e,0xbe,0x36,0x5e,0xaf,0x26,0xcc,0x47,0xe5,0x08,0xcb,0xe2,0x51,0x65, + 0x38,0xff,0xd7,0x2c,0x0c,0x33,0x1f,0x38,0x51,0x8c,0x95,0x24,0xd8,0xa6,0x7f,0xf2,0x56,0xbc,0x71,0x08, + 0x23,0xa1,0xf5,0x4d,0xaa,0xe1,0xbd,0x65,0x4a,0xcc,0x54,0x33,0x72,0x06,0x44,0x76,0x29,0xd9,0x87,0xe0, + 0x28,0x5d,0x52,0x85,0xd9,0x94,0x71,0x81,0xfd,0xba,0x24,0x84,0x58,0x3e,0xca,0x4d,0xbf,0x4a,0x84,0x1e, + 0xa9,0x6e,0x78,0x78,0x30,0x81,0xc4,0x8e,0x90,0xb5,0xaa,0x94,0x34,0xae,0x3b,0xe8,0x24,0x1e,0x4f,0xa8, + 0x57,0x95,0x0a,0x5a,0x6d,0xec,0x5c,0x96,0xe5,0x47,0xf8,0xc3,0x3f,0xd1,0x5d,0x76,0x83,0x78,0xe2,0x0d, + 0xe2,0x59,0x21,0x5d,0x7b,0x21,0x3a,0x77,0x6e,0x59,0xcf,0x61,0x27,0xcb,0x0f,0x5c,0x22,0x15,0xda,0xf6, + 0x7f,0x34,0x52,0xdf,0x40,0x9b,0x5a,0xfb,0xdf,0x51,0x1f,0x7e,0xdc,0xea,0xc2,0x8f,0x5e,0x17,0x76,0x9f, + 0x42,0x9e,0xf5,0xb2,0xa0,0xfd,0xd7,0xe3,0x63,0x04,0x2f,0x76,0xda,0xd1,0x5a,0x43,0x93,0x8d,0xf4,0xbb, + 0x34,0xd1,0x12,0x2e,0xff,0x40,0xe4,0xcc,0xb2,0x4a,0xb4,0xd8,0x29,0x4b,0xa6,0x95,0x71,0x3b,0x8f,0x46, + 0x53,0x23,0x09,0x4e,0x9c,0x30,0xb1,0xa1,0xe7,0xc6,0x49,0x81,0x1a,0x96,0xe4,0x35,0xa7,0xa1,0x57,0xe5, + 0x0b,0xef,0xd4,0xc3,0xa2,0x51,0x35,0x6c,0x4b,0xd1,0x56,0x24,0x69,0x67,0x44,0x2b,0xe0,0xb4,0xf3,0x22, + 0xd0,0x12,0x14,0x74,0x04,0x1c,0xe7,0x13,0xac,0x06,0x9f,0x6a,0x05,0xfb,0xc4,0x43,0x55,0xb3,0x04,0x5f, + 0x81,0x3e,0x1f,0xa8,0xcb,0x6a,0xbc,0xaa,0xc2,0x28,0x9e,0x57,0x30,0xd0,0xd9,0xcd,0xfa,0xf5,0x33,0x5a, + 0x93,0x16,0x79,0x72,0x94,0x3e,0xe5,0x5a,0x01,0xe5,0x9a,0x1b,0xc6,0xef,0x48,0xb3,0x05,0xc0,0x77,0x29, + 0x4b,0x8a,0x94,0x77,0x48,0x05,0x43,0x62,0x41,0x21,0x7d,0x04,0x23,0x6c,0x39,0xe4,0xe7,0x55,0xf9,0x3b, + 0xdc,0xb1,0xc5,0xa6,0xaa,0xd1,0xb4,0xba,0x39,0x8f,0x1b,0x9f,0x1d,0xcb,0x19,0xca,0x0b,0x58,0x10,0xd2, + 0xe1,0x6c,0x0c,0x3b,0x0b,0x78,0x1f,0xd0,0x3b,0x5c,0x45,0x52,0x4d,0xeb,0x34,0x2d,0x5a,0x87,0x3a,0xc7, + 0x24,0x97,0x17,0x69,0xa7,0x4a,0xc2,0xb2,0x43,0x9f,0x47,0x5b,0xdf,0x94,0xf4,0xd5,0x29,0x47,0x56,0x88, + 0x68,0xd6,0xcf,0xab,0x88,0xfe,0x0f,0x27,0x74,0x14,0x54,0xfe,0x82,0xfe,0x16,0xb6,0x63,0x68,0x69,0x95, + 0x9e,0x13,0x6e,0x2b,0x10,0x06,0xb3,0x82,0x8f,0xeb,0xdd,0x2d,0x1a,0xc6,0x8a,0xae,0x3d,0xc5,0x9b,0x93, + 0xed,0x8d,0x1c,0x3e,0x28,0x34,0xe8,0xf5,0x2a,0x22,0x20,0x26,0xf1,0x6b,0xc8,0xac,0x4c,0x9c,0x9b,0x46, + 0x38,0x03,0xd7,0xe3,0xef,0x43,0x2d,0x4c,0xb0,0xf6,0xff,0xaa,0x56,0x74,0xe0,0x73,0x63,0xa9,0x9c,0xee, + 0x34,0xf5,0xa0,0x06,0x26,0x4c,0x11,0x11,0x2d,0x70,0x56,0x01,0x39,0x67,0x21,0xdb,0xc8,0x65,0x74,0xe4, + 0x8f,0xe9,0x6f,0x8d,0xba,0x71,0x1e,0x4a,0xe9,0xe4,0x37,0x2c,0x8b,0xaa,0x88,0x5f,0x67,0xe3,0xcd,0x5a, + 0xcd,0x87,0x44,0x8d,0x67,0x0a,0x01,0x5e,0x18,0x85,0xd0,0x13,0x7c,0xe2,0x88,0x3e,0xe2,0x27,0x98,0xa9, + 0x47,0x51,0x5c,0xd3,0x29,0x32,0xa1,0x5a,0x26,0xdc,0x55,0xa2,0xf6,0x51,0xd7,0x24,0x8a,0x5c,0x7f,0x0a, + 0x5e,0x8f,0x14,0xe4,0x69,0x1e,0x86,0xba,0x37,0x91,0xb4,0x22,0x1d,0x34,0x2d,0x78,0x0b,0xf3,0x5d,0xa8, + 0x87,0xe8,0xe9,0xb5,0xa2,0xdb,0xb2,0x5f,0x88,0xaa,0x56,0x32,0x1a,0xa2,0x1d,0x36,0x55,0x5b,0x80,0x04, + 0x81,0x18,0xe1,0x5d,0xc8,0xff,0x86,0xc0,0x80,0x30,0xe1,0x70,0x6f,0x44,0x25,0x45,0xfa,0x94,0x83,0x3d, + 0x21,0xad,0xc3,0x88,0xa7,0xa7,0xa6,0xd9,0x40,0x8f,0xe3,0x46,0xc6,0x05,0x29,0x03,0x3d,0xb1,0xa5,0xcc, + 0x94,0x66,0xaf,0xa6,0x11,0x22,0x5d,0x76,0x7f,0x4a,0xb3,0x80,0x0f,0x26,0x8a,0x3e,0x51,0xb5,0x2e,0x86, + 0x4d,0xcc,0x02,0xb0,0xda,0x8d,0xea,0x5b,0xe6,0x02,0xf5,0xc8,0xb0,0x63,0x00,0x44,0x42,0x2d,0x80,0x9a, + 0x71,0xec,0x39,0xc2,0xa3,0x00,0xec,0xcb,0xf5,0x5a,0xf3,0xb5,0xfc,0x4a,0x67,0x90,0x2e,0x9c,0x77,0x0b, + 0xe7,0xed,0xc2,0x39,0x0a,0x6f,0xb6,0x0f,0xac,0x9f,0x3d,0xa9,0xab,0x58,0xe9,0xb3,0x80,0x96,0x30,0x12, + 0x36,0xb6,0x36,0xb1,0x37,0x22,0x4b,0xf7,0xd9,0xbf,0x7d,0x66,0x2d,0x04,0x53,0x9e,0xd5,0xaf,0x59,0x29, + 0xbc,0x5e,0x7f,0x8b,0x40,0x2e,0xf2,0x02,0x9d,0x64,0x76,0xf2,0x81,0xd5,0xa2,0xf6,0x5c,0x3f,0x4e,0x2f, + 0x24,0x1a,0x00,0x1c,0x55,0x85,0xfa,0xa1,0x6d,0x00,0x0f,0x02,0x43,0x0c,0x83,0xea,0xf0,0x38,0xbb,0x7f, + 0xb5,0xc2,0xbc,0xd8,0xde,0x80,0x56,0xf0,0x85,0xb3,0xee,0x83,0x7f,0x6a,0xbb,0x85,0xae,0x70,0x21,0xfa, + 0x8c,0x80,0xdf,0x70,0x29,0xa0,0x55,0x79,0x25,0x2a,0x76,0x8b,0x80,0xf8,0xb4,0x23,0x4d,0xa6,0x4d,0xf3, + 0x2f,0xca,0xb5,0x13,0x5e,0x79,0x94,0x68,0x96,0x99,0x83,0xab,0x18,0xdf,0xe0,0x78,0x27,0xb8,0x13,0x79, + 0x90,0xbc,0x75,0x74,0x74,0x8d,0x64,0xde,0x72,0xe6,0x6c,0xd6,0xc9,0x2d,0x6c,0x65,0x37,0xd4,0x31,0xc5, + 0x3b,0x5d,0xcc,0xad,0x28,0x99,0xc8,0x5a,0x4a,0x15,0x9a,0xcf,0xd3,0x5a,0x67,0x3e,0x1f,0x26,0x9c,0xd6, + 0xae,0x3b,0x0e,0x3c,0x0c,0xd4,0x0a,0x69,0x66,0x84,0x68,0x5a,0x1e,0xc9,0x9c,0x6d,0x9a,0x94,0xbc,0x31, + 0x50,0x05,0x4b,0x11,0xd3,0xa6,0xa9,0x6a,0xfb,0x40,0x08,0xac,0x6c,0xac,0x1f,0xb1,0x9f,0xa8,0x4a,0x23, + 0x3f,0x17,0x7b,0xbc,0xd2,0xc9,0xb6,0x77,0x59,0x51,0x01,0xe9,0xa5,0xe8,0x8c,0x53,0xfe,0x20,0x0a,0x0b, + 0x03,0x08,0x6c,0xce,0x61,0x42,0xd0,0x9d,0x9c,0x12,0x5a,0xe0,0x1d,0x55,0x7a,0x32,0xa0,0x5a,0x7f,0xc5, + 0xe8,0xac,0x86,0xa6,0x12,0x3f,0x28,0x3c,0x0a,0x9a,0x6c,0xb1,0x9c,0x13,0x93,0x05,0xb8,0x2b,0x21,0xea, + 0x1f,0x4f,0xb8,0x02,0x8d,0x26,0x26,0xe8,0x9a,0x16,0x69,0xaf,0xd7,0xf4,0x45,0x3c,0x31,0xf5,0x6f,0x6c, + 0xec,0xa3,0xb9,0xe0,0xa8,0xe2,0x64,0x7e,0xaa,0x75,0x4b,0x79,0xe6,0x1c,0xa6,0x91,0xec,0x22,0x8b,0x38, + 0x4d,0x7e,0x76,0x17,0x8c,0xee,0xb6,0x81,0x94,0x88,0x98,0x1d,0xde,0x15,0xbc,0xc7,0x3c,0xc5,0x7e,0xe6, + 0x29,0x34,0x35,0xaf,0x76,0x07,0xa4,0x76,0xa0,0x1a,0x94,0xe9,0x18,0x9f,0x8b,0x72,0x2a,0x26,0xde,0x87, + 0x9e,0x70,0x10,0xb2,0xa6,0xf3,0x94,0x66,0xbf,0x47,0xe3,0x98,0x66,0x46,0x73,0x39,0xca,0xf4,0x5e,0xd4, + 0xd4,0x69,0x34,0x8a,0x58,0x4b,0x7d,0x96,0x17,0x29,0x73,0xbf,0x9f,0xa3,0x77,0xeb,0xcc,0xd2,0xda,0x46, + 0xbb,0x7d,0x26,0x6c,0xf3,0x4b,0xfd,0x35,0xd1,0x5b,0x8a,0x1b,0x33,0x54,0xa9,0x61,0xdc,0xb7,0x4a,0x1a, + 0x1a,0xa0,0xdd,0xba,0x33,0xf0,0xf0,0x7a,0x74,0xeb,0xbd,0x80,0xa0,0xeb,0xce,0xd6,0x3d,0xb3,0xca,0xfe, + 0xbc,0xa1,0xaf,0x2e,0x87,0x35,0xb1,0xbc,0x39,0x03,0xae,0x87,0xa0,0x66,0x1a,0xf8,0x62,0xc1,0x49,0xd6, + 0x16,0x69,0x18,0x52,0x5d,0xb3,0xb8,0x9e,0x38,0x80,0xf7,0x52,0xd1,0xdd,0x4b,0xa0,0xf9,0x0a,0x1b,0x35, + 0xd3,0x46,0x9f,0x28,0x40,0xf6,0x15,0x20,0x91,0xf7,0x02,0x43,0x83,0xd3,0x68,0x88,0x0c,0x7a,0x41,0x2f, + 0xec,0x78,0xc9,0x2c,0x60,0xb6,0x80,0xa9,0x02,0x0a,0xc4,0xc1,0x9e,0x8f,0x15,0xe6,0x08,0xfc,0xf5,0x18, + 0x34,0xa1,0xd0,0xb1,0xaa,0xe1,0xe1,0x1f,0xc3,0x1e,0xa9,0x6a,0x7c,0x25,0xac,0x6f,0x09,0x94,0x4f,0xf7, + 0x89,0x40,0x9b,0x12,0x4d,0xf9,0x01,0x31,0xa9,0x3e,0x54,0x8f,0x8e,0x2d,0xcd,0xf1,0x81,0xbb,0x9b,0x10, + 0x10,0x1c,0x57,0x27,0x1f,0xaa,0xd3,0x88,0x0a,0xaa,0xa3,0x8a,0xc5,0xb6,0x4c,0x7f,0x0c,0xab,0x55,0x11, + 0x1a,0x63,0xac,0x8f,0x95,0xa5,0x5d,0xaa,0xe4,0xd8,0xbe,0x50,0x2d,0x89,0xad,0x12,0x85,0x0c,0x3d,0x4d, + 0x35,0x41,0x2f,0xfe,0xa9,0x4a,0xd0,0xe9,0xc3,0x96,0xa4,0xe5,0x0f,0x48,0x6d,0x7f,0x91,0x0f,0x14,0xd6, + 0x0f,0xc2,0xdc,0x5d,0x44,0x0b,0x2d,0xa2,0x3b,0x2a,0x72,0x95,0x80,0xf2,0x33,0xab,0x87,0xef,0x40,0x75, + 0x5d,0x2d,0x46,0xd5,0xf0,0xec,0x1a,0x2b,0x91,0x55,0x04,0x54,0x05,0xe4,0xd9,0x67,0x39,0x9d,0x5d,0x2b, + 0x42,0x50,0xd3,0xc1,0x80,0x86,0x42,0x9c,0x92,0x88,0x6a,0x18,0x1e,0x08,0xd3,0xab,0xef,0xa8,0xd8,0x33, + 0xe0,0xa5,0xab,0xa6,0x2c,0xe1,0x2d,0xfc,0x1d,0xb1,0x3e,0xbc,0x3e,0xb3,0x39,0xa1,0x8f,0xc0,0x5b,0x9d, + 0x95,0xc5,0xd9,0xcf,0x2a,0xa8,0x60,0xb6,0xed,0xf9,0xd8,0x8a,0x8c,0xfa,0x43,0x00,0xb8,0x51,0x54,0xa8, + 0xce,0xb6,0xed,0xa6,0x25,0x1b,0x51,0xfe,0xee,0xd2,0xd5,0x14,0xf4,0xa9,0xd7,0xec,0xcc,0x36,0x2b,0x10, + 0xc9,0x4a,0xad,0x3e,0xa9,0x54,0x31,0x0e,0x75,0xc7,0xaa,0xf1,0x94,0x0d,0xb1,0x0a,0xd3,0x89,0x8b,0x28, + 0x36,0x79,0x05,0xfe,0x8e,0x2b,0x50,0x00,0x08,0x68,0x47,0x20,0x4c,0xf3,0x65,0xca,0x23,0x2f,0xbe,0x30, + 0x5f,0x15,0xf8,0x3b,0xe6,0xbf,0xf1,0x45,0x74,0x67,0x7f,0x9b,0x76,0x7f,0xa7,0x3e,0xbe,0xdc,0x52,0x29, + 0xb1,0x9d,0xdd,0x19,0xce,0xdd,0x15,0xad,0xc2,0x4f,0xb2,0x5a,0x34,0xed,0xfd,0xe9,0x5a,0xb4,0x63,0x65, + 0xf7,0x2c,0xb8,0x6b,0x6e,0x60,0x93,0x9b,0x41,0x33,0x01,0xe9,0x6f,0xa4,0x3c,0x8d,0x54,0xe3,0x74,0x41, + 0x8d,0xe8,0x2e,0x7c,0x0b,0x97,0xcc,0x09,0x93,0x6c,0xe8,0x1e,0x28,0x89,0x20,0x75,0x55,0x88,0x38,0xa5, + 0xcd,0xcf,0x23,0xb5,0x2d,0x07,0x63,0x4d,0x20,0x63,0x64,0xda,0x34,0xf7,0xae,0xc5,0x17,0x5c,0xc4,0xc3, + 0xce,0x72,0xc5,0xa1,0xcc,0xec,0x8f,0x8d,0x96,0xbe,0x2d,0xc6,0xef,0xb3,0xd9,0x1c,0x39,0xe5,0x75,0xf1, + 0xbd,0x98,0x48,0x0c,0x67,0xf9,0xbc,0xc9,0xaa,0x3e,0x03,0xe7,0x3f,0xa3,0x41,0x1c,0x3a,0x2d,0xdf,0x26, + 0x8a,0x3b,0xd6,0x17,0x3d,0xfc,0xc8,0xad,0x93,0x44,0x80,0x80,0x25,0xca,0x00,0x91,0x49,0x87,0x10,0xa0, + 0x42,0x1a,0x39,0xaa,0x47,0x3c,0x9a,0x9a,0x45,0x4d,0x57,0xf9,0x14,0xfb,0x88,0x29,0x7d,0x2f,0x85,0x08, + 0x22,0xfa,0x26,0xf1,0x52,0x20,0x9c,0x3d,0xa7,0xc1,0x7e,0xdc,0x10,0x9b,0x60,0x0e,0x1f,0xf0,0x7d,0xbb, + 0xb0,0x3d,0x34,0x92,0x32,0x48,0x2b,0xe9,0x43,0x81,0x8c,0x89,0x34,0x6c,0x44,0x66,0x5c,0x63,0x0f,0x8c, + 0x5b,0x45,0x1c,0x41,0xeb,0x64,0x63,0xed,0x89,0xbc,0x45,0x46,0xb8,0xb3,0x16,0x8b,0x0b,0x9e,0x69,0x5b, + 0x2a,0xcd,0x32,0xbf,0xed,0xd0,0x42,0x5a,0x04,0x6f,0xb5,0xdc,0xd6,0xa2,0x4b,0x95,0x84,0xee,0x52,0x87, + 0x82,0xca,0x47,0x29,0x8b,0x6b,0x2a,0x74,0x94,0x36,0x37,0xc7,0x73,0x75,0xd2,0xf7,0x6d,0x1b,0xc2,0xed, + 0xaa,0xb9,0x4e,0xaa,0x28,0xf3,0x2b,0x2a,0xf7,0x0e,0xfd,0x7a,0x72,0x43,0xda,0x6e,0x99,0xd2,0xf8,0x55, + 0xd5,0x9d,0x5e,0xd6,0xdd,0x5e,0x4e,0x92,0x1a,0x1d,0xb4,0x9d,0x9d,0x10,0xc7,0xa8,0x9c,0x2c,0x56,0x53, + 0xc4,0x8c,0x2e,0x7f,0x44,0x6c,0x00,0x0e,0x90,0xe0,0x29,0xef,0x17,0xde,0xce,0x61,0xf9,0x16,0x35,0xc4, + 0x3b,0xf6,0x5e,0x0d,0x4b,0x85,0xe9,0x07,0x22,0xda,0xcc,0x66,0x2d,0x11,0xbb,0x8d,0x69,0xd9,0x8a,0xf7, + 0xcc,0x55,0x78,0x15,0xe2,0x25,0x62,0xb9,0x77,0x9e,0x60,0xcb,0xad,0xd7,0x8d,0xef,0xe4,0xac,0xab,0x32, + 0x95,0xa4,0x50,0x6e,0x0c,0xcf,0x08,0x68,0xa6,0x59,0xc5,0xdc,0x15,0xbe,0x23,0xca,0xb2,0x31,0xd1,0x72, + 0xa1,0xf3,0x43,0x71,0x6b,0x3f,0x34,0x96,0x2a,0x3a,0xce,0x7f,0x96,0x66,0x54,0xb7,0x28,0x1d,0x23,0x2e, + 0x68,0x4b,0x2b,0x74,0xe1,0xe3,0xaa,0xe7,0x62,0x16,0x6c,0x88,0x01,0x15,0xc8,0x56,0x44,0x68,0x04,0xea, + 0xf0,0x63,0x8f,0x24,0xbc,0xe9,0x4e,0x47,0x42,0x47,0x08,0x2d,0x0c,0xec,0x77,0x80,0xe0,0x89,0xb0,0xb1, + 0x66,0x8d,0xe3,0x36,0xdc,0xe5,0xd1,0x98,0xbd,0x9b,0x9d,0xf7,0x2b,0x31,0x44,0x39,0x24,0xbb,0x71,0x35, + 0x3e,0x2a,0x68,0x21,0x40,0x48,0xc7,0x5d,0xe2,0xff,0xdc,0xb6,0xa8,0xd9,0xc9,0x02,0x1c,0x36,0x38,0xca, + 0x6d,0x95,0x37,0xcd,0xf9,0x02,0x59,0x23,0x2d,0x32,0x70,0x47,0x50,0x2e,0x32,0xfe,0xc9,0x9c,0x78,0x7b, + 0x76,0xcd,0xe4,0x3d,0x70,0x23,0xcc,0x1c,0xbd,0xdc,0xa0,0x48,0x44,0x50,0xee,0x93,0xe4,0x99,0xe1,0x0e, + 0xf4,0x03,0x0b,0x91,0x47,0x29,0xf4,0xe2,0x34,0x6a,0x18,0x83,0xff,0x50,0xf3,0x71,0x40,0xe8,0xb0,0xa6, + 0xf9,0x1d,0x13,0xeb,0x57,0x2e,0x90,0x50,0x43,0x04,0x61,0x5f,0xc0,0x80,0xc7,0xba,0x0e,0xce,0xe0,0x27, + 0xa4,0x6e,0x72,0x60,0x94,0x14,0x12,0x77,0x30,0xd1,0xc2,0xd1,0x96,0x10,0x60,0x84,0x08,0x4a,0xc1,0x85, + 0xcb,0x82,0x19,0xf8,0x13,0x7d,0x7e,0x13,0xe1,0x94,0x9f,0xb6,0xce,0x56,0x7c,0xc5,0xa2,0x2f,0x4b,0x31, + 0x4e,0x84,0xda,0xaf,0x89,0xcb,0x77,0x41,0xc1,0x9c,0x35,0x57,0x8b,0x06,0x94,0xe3,0xa7,0x66,0x0b,0x9f, + 0xe3,0x2a,0xcb,0xd0,0xc3,0xad,0x34,0x30,0x22,0xd8,0x77,0x80,0x51,0xc3,0x20,0xd2,0x39,0xda,0x74,0x96, + 0xb8,0x8a,0xc6,0x8f,0xe9,0x4f,0xfc,0x09,0x7f,0xc2,0xe3,0x2c,0x94,0x4f,0x92,0x16,0x74,0x0d,0xa5,0xde, + 0xf7,0x0c,0xe3,0xcf,0x0b,0xc0,0xbd,0xd3,0xa3,0x1a,0xd8,0x7f,0x07,0x77,0x70,0x11,0xaf,0xb2,0x66,0x15, + 0xf6,0x30,0xf2,0xdd,0xd9,0x59,0xb0,0x97,0xa9,0xdd,0xc3,0xa8,0x75,0xfe,0x5c,0x5b,0x52,0x41,0x77,0xef, + 0x38,0xd3,0x46,0x34,0xc4,0xab,0xe2,0x93,0x66,0x2f,0x2c,0xc6,0xc1,0x19,0xbc,0xa4,0x83,0x40,0x02,0x10, + 0x79,0x53,0x72,0x9c,0x79,0xa2,0xd9,0x3b,0x19,0x6c,0x89,0x7b,0xea,0xf8,0x4b,0x26,0xe8,0x38,0x14,0xad, + 0x46,0xa7,0xce,0x91,0x80,0x93,0x3f,0x66,0x5a,0x9d,0xba,0x87,0x86,0x2b,0x2b,0xde,0xfb,0x68,0x5a,0xf3, + 0x4c,0xce,0x6c,0x07,0x9c,0xbd,0x95,0x18,0xd4,0xc1,0xe4,0x0a,0x36,0x5c,0x79,0xfd,0x96,0x86,0x92,0x78, + 0x7b,0xf1,0xc8,0x63,0x53,0xa0,0x88,0x6f,0x22,0x47,0xd7,0x97,0xf2,0x67,0xcc,0x08,0x08,0x4f,0x51,0xec, + 0xf1,0x5f,0x95,0x48,0xd0,0x3c,0x5d,0x1f,0xa1,0x4e,0x48,0x20,0x47,0xac,0xdb,0xcb,0xc7,0x27,0xa7,0x46, + 0x4b,0x9d,0x6b,0x7f,0xf2,0x6d,0x30,0xfa,0x94,0x89,0x5f,0xd9,0x59,0x99,0x5c,0x67,0xd4,0xc6,0x59,0xc1, + 0x21,0xd7,0xcf,0x20,0x1f,0xa3,0x9f,0x79,0x72,0xc5,0xa9,0x4d,0xb2,0xe0,0xdf,0xdf,0x92,0x1b,0xfc,0xe4, + 0xc9,0x39,0x7e,0x16,0xc9,0x19,0xa7,0xce,0x92,0x0b,0xfe,0xfd,0x98,0xdc,0xf0,0xef,0x79,0x72,0xce,0xbf, + 0x57,0xc9,0x11,0x7e,0x68,0xbc,0x88,0xb8,0x71,0xb6,0x4a,0x4a,0x4e,0xbe,0x48,0x8e,0xbc,0x1e,0x3c,0x96, + 0x49,0xf3,0xc5,0x84,0xc4,0x20,0x6b,0x30,0x13,0x87,0x0c,0xf6,0x54,0xd2,0x91,0x52,0x45,0xc3,0xdb,0xc8, + 0x8b,0xb5,0x08,0xab,0x74,0x26,0x9f,0xd4,0x89,0x8e,0x49,0x3a,0xd7,0x51,0x62,0xea,0x44,0xb6,0xe1,0x55, + 0x61,0x02,0x7e,0xe2,0x24,0x62,0x23,0x36,0xa2,0x78,0x52,0xfd,0x4e,0x5b,0x5f,0xb2,0x19,0x8f,0xf7,0x10, + 0xc7,0x55,0xc6,0x96,0x08,0x9b,0xb6,0x69,0xa8,0x26,0x8a,0x72,0x71,0xa5,0x4b,0x85,0x06,0x44,0xdc,0x15, + 0xf8,0xd4,0xed,0x4e,0x46,0x13,0xe3,0x5c,0x68,0x76,0x4e,0x92,0x2a,0xef,0xbc,0x48,0x5c,0x93,0x61,0xa4, + 0xb6,0xce,0x24,0x58,0x86,0xbb,0x37,0x0c,0x01,0x51,0x29,0xce,0x6a,0xb1,0xaf,0x1b,0x6b,0xaa,0x73,0x2b, + 0x1c,0x8a,0x91,0x96,0xbc,0xe5,0xe8,0xfd,0x1a,0xf1,0x3a,0x03,0x83,0x92,0x4d,0x9f,0x9c,0xc9,0x9e,0xab, + 0x51,0x79,0x12,0x91,0x84,0xc6,0x54,0x6e,0xe2,0xbb,0xdb,0x30,0x74,0x5d,0xbb,0x11,0x8f,0x96,0xf9,0x90, + 0xdd,0x61,0xb5,0xcc,0xba,0x56,0xb1,0x5c,0xf6,0xac,0xcf,0x30,0xbf,0x9a,0xe0,0x11,0xed,0x4a,0x16,0x1a, + 0xab,0xba,0x39,0xf5,0xd1,0xa2,0x9e,0x33,0x38,0x1a,0xb2,0x22,0x4a,0x9f,0xfb,0xc9,0xdc,0x48,0xe7,0xa8, + 0x7c,0x9f,0x95,0x87,0x9e,0x90,0x15,0x33,0xf0,0x90,0x9b,0xe5,0x53,0x7c,0xb8,0x22,0xb8,0xb1,0xca,0xcb, + 0xd0,0x8b,0x93,0x55,0x89,0x53,0x33,0xce,0x29,0x2a,0xcd,0xfa,0x1a,0x16,0x3f,0xea,0x67,0x78,0xe8,0x3a, + 0x19,0x9b,0x4b,0xd3,0xd2,0x39,0x13,0xb7,0x76,0xea,0x95,0x31,0x49,0x23,0x5d,0x27,0xe2,0x14,0x11,0xb2, + 0xd1,0xb5,0xea,0xb7,0x4e,0xbd,0x5e,0x2a,0x0b,0xcb,0x44,0xe2,0xc7,0x6b,0x53,0x47,0x46,0x73,0xe1,0x92, + 0x12,0x11,0xa4,0x13,0xbe,0x99,0xfb,0xd0,0x6b,0x26,0x3f,0x23,0xd2,0xaa,0x71,0xa4,0x55,0xf6,0x88,0x48, + 0x18,0x88,0x1e,0x80,0xb9,0xef,0x51,0xa1,0x49,0xf6,0x03,0x1f,0x4d,0x61,0xb4,0x51,0xab,0xe4,0xac,0xa5, + 0x94,0x71,0xfd,0x4f,0x20,0x5e,0x2d,0x09,0xd8,0xd7,0xeb,0x79,0xc8,0x2e,0x3b,0x9d,0xa2,0xed,0x49,0x62, + 0xaa,0x4c,0x82,0x90,0xa1,0x5f,0x21,0xc7,0x4e,0x99,0x26,0x55,0xb8,0x52,0x33,0xe7,0x3a,0x11,0xf2,0x6a, + 0xf4,0xb9,0xe9,0xb0,0xb7,0xe4,0x38,0xf3,0xe7,0x74,0x30,0x90,0x54,0xae,0x22,0x6e,0xc2,0xa9,0x93,0x82, + 0x46,0xbd,0xd1,0x9c,0xbd,0x02,0xfc,0x21,0x0c,0xb0,0x3a,0x49,0x5c,0x97,0x42,0x5d,0x66,0xad,0xfd,0x51, + 0xd0,0x98,0x75,0x06,0xec,0x02,0xb8,0x98,0x5b,0xbe,0xf6,0xea,0x71,0x51,0xfd,0x8e,0x69,0x02,0x60,0x4d, + 0x89,0x2b,0x98,0xa7,0x37,0x63,0x5b,0x90,0xa6,0x22,0x26,0x9e,0xf4,0x58,0x02,0xa7,0xf9,0x1a,0xb9,0xce, + 0x40,0x33,0x0f,0xf8,0x42,0xff,0x73,0x99,0x49,0xa5,0x6b,0x5e,0xaf,0x1f,0x1e,0x1c,0xe8,0x8e,0xe9,0x68, + 0x6c,0x70,0x7c,0xff,0x33,0x2d,0xc8,0x15,0x14,0x5c,0x95,0xf9,0x32,0x02,0x26,0xdb,0x3d,0x54,0xb6,0xbd, + 0x71,0x6b,0x84,0xb1,0xfb,0x7e,0xe3,0x60,0xcf,0x68,0x17,0x36,0x34,0x93,0x73,0xda,0x3a,0x4e,0x04,0xdd, + 0x45,0x1b,0x9e,0x69,0x69,0x15,0x3a,0x8c,0xd4,0x92,0x44,0x12,0xae,0xd7,0x09,0xaf,0x33,0xc2,0xfc,0x12, + 0x99,0xaf,0x51,0xba,0x31,0x04,0xc0,0xd3,0x78,0x3f,0x26,0xbc,0x9f,0x5e,0x10,0x45,0x4c,0x88,0x8a,0x5a, + 0x36,0xc8,0x63,0x54,0x26,0x25,0x53,0xf0,0xcf,0x80,0x41,0x14,0x07,0x1e,0x26,0xd2,0x76,0xee,0x59,0x70, + 0x7a,0x4c,0x16,0x02,0x53,0x23,0x17,0x14,0x22,0x3f,0xf0,0x19,0x43,0xa4,0x25,0xf3,0xdf,0x01,0x0b,0xa3, + 0x3b,0x05,0x32,0xc8,0xc2,0xa8,0x44,0x5e,0xc0,0x4d,0x78,0x14,0x16,0x72,0x2c,0xb1,0x88,0x78,0x69,0x88, + 0xc5,0x88,0xb5,0x1d,0xfa,0x0b,0xae,0x4b,0x5b,0x9a,0x14,0x43,0xed,0x1c,0x28,0x44,0xe1,0x88,0xfa,0x47, + 0xc4,0x5f,0x34,0xc6,0xdf,0xe4,0xc4,0x7c,0x01,0x6a,0xea,0x3c,0x9d,0x7c,0xb4,0x87,0x38,0x17,0x8a,0xb9, + 0x50,0xb7,0xcc,0x86,0x56,0xd5,0x90,0xfd,0xa5,0x10,0xce,0x33,0x87,0x03,0x5a,0x11,0xb8,0x6c,0x41,0x67, + 0xdb,0xb5,0x8b,0xe8,0xa8,0x06,0x9f,0xd0,0xac,0xd1,0x41,0x26,0xc4,0x2d,0xbc,0xc2,0x5d,0xb1,0x26,0x84, + 0x19,0x4e,0x13,0xce,0x1d,0x2d,0xb5,0x62,0xc2,0xd7,0x04,0xf7,0x24,0xf2,0x7f,0x15,0x8d,0xbe,0xa5,0xd3, + 0x60,0xae,0x68,0x43,0x81,0x3c,0x5b,0xaf,0xf1,0x3a,0x91,0xd7,0x43,0x4b,0xc7,0xd6,0x9b,0x0d,0x04,0xe7, + 0x1a,0x17,0x9a,0x0e,0x99,0x0e,0xa7,0xf3,0x3e,0xe8,0x69,0x6b,0x12,0x71,0xa4,0xeb,0x01,0xeb,0x3e,0xa7, + 0xed,0x9e,0x46,0x2d,0xa1,0xf9,0x84,0xf0,0xdc,0xfc,0x34,0x79,0x13,0xce,0xa9,0x33,0x4c,0x0a,0x68,0x2a, + 0x0e,0xe8,0x8a,0xc7,0x4a,0xb0,0xf1,0x01,0x07,0x99,0x79,0x55,0xc8,0xe1,0x1a,0x5d,0x8e,0xbc,0xf2,0xf4, + 0xae,0x84,0x7d,0xc5,0x91,0x45,0x53,0xce,0x26,0x28,0x84,0x0a,0xd3,0xa1,0x10,0xbe,0x9e,0xc1,0xc1,0x8a, + 0xce,0x4e,0xb5,0x72,0x66,0x43,0x5b,0x3a,0xbf,0x99,0x7f,0xe2,0xaa,0x99,0x67,0x61,0x9f,0xc2,0x91,0x93, + 0x55,0x19,0x21,0x95,0xc2,0x26,0x20,0xa8,0x91,0x07,0x86,0x2f,0xce,0x4c,0xa4,0x0c,0xed,0xda,0x19,0x6c, + 0x61,0x66,0xb2,0x09,0xa4,0x93,0x53,0x10,0x52,0x2c,0xb5,0xc6,0x2f,0xbd,0x88,0xc7,0xc3,0xdb,0x42,0xf9, + 0xd3,0x9e,0x22,0xc0,0x11,0x6d,0x3c,0x0d,0x02,0x4b,0x2a,0xc7,0xbc,0x69,0x89,0x79,0x5d,0x32,0xa9,0xc0, + 0x0d,0x2d,0xa3,0xcd,0xae,0x8f,0xe9,0x33,0xa3,0xa5,0xcc,0xac,0x82,0xb2,0x63,0xa0,0xf0,0xb4,0xf2,0xc5, + 0xa6,0x9a,0xac,0x7d,0x5a,0x89,0xc4,0x53,0xbe,0x82,0x66,0x20,0x4f,0x7e,0x85,0xf3,0xd3,0xc8,0xa6,0x24, + 0xd5,0xd8,0x47,0x1b,0xdb,0xd2,0x38,0x0b,0x0b,0x99,0x7d,0x84,0x67,0xad,0x7e,0x24,0xe0,0xca,0x89,0x3e, + 0x21,0xb4,0xc0,0x50,0x86,0x66,0x2f,0x3d,0xb8,0x97,0xf8,0xa9,0x13,0xab,0x2a,0x11,0xf7,0x8b,0xe0,0x6a, + 0x95,0xed,0xdb,0x53,0x61,0x9f,0x28,0x7d,0x50,0x09,0x7b,0xe1,0xe5,0x38,0xa0,0x97,0x4b,0xe6,0x37,0x4a, + 0xd5,0xeb,0xf6,0x91,0xaa,0xdb,0x23,0x42,0x5b,0x84,0x8c,0xac,0xd5,0x53,0x3c,0x53,0x96,0xfa,0x8c,0xa7, + 0x8c,0xa4,0x26,0x0e,0x6b,0x11,0x1f,0xbf,0x82,0xcf,0xab,0xb3,0xb4,0x46,0x1c,0x7d,0x8d,0xbd,0x88,0x84, + 0x32,0xca,0xcb,0x36,0x0f,0x93,0xb2,0x11,0x5c,0x0a,0xb3,0x86,0x70,0x92,0x00,0xee,0x53,0x22,0xf8,0xa5, + 0x0f,0x11,0xad,0xe8,0x5c,0x32,0x5e,0x55,0x9e,0xfc,0x39,0x6f,0x11,0x54,0x0d,0x7d,0x0d,0x82,0x23,0x35, + 0xd6,0x0f,0x56,0xfb,0x06,0x54,0xdc,0x2a,0x90,0xb3,0xbe,0x1d,0x51,0xce,0xc0,0xb7,0x11,0x37,0xeb,0x97, + 0x6c,0xf7,0xab,0xee,0x3f,0x76,0x71,0x71,0x00,0x20,0x37,0x85,0xe4,0x83,0x60,0xc3,0x27,0x64,0x09,0xa5, + 0x8b,0xa0,0x2c,0x96,0xeb,0x05,0xac,0xff,0x14,0xee,0x8c,0xa2,0x23,0xf3,0x55,0x35,0x26,0xca,0x26,0x9c, + 0x27,0x75,0x34,0x3e,0x39,0xa2,0x91,0x9d,0x76,0xac,0x6c,0xe7,0x2e,0x9e,0x15,0x91,0x0f,0x2e,0x02,0x0d, + 0xa6,0x0f,0xc8,0x06,0x91,0x68,0x44,0xec,0x04,0x5b,0xe8,0xd2,0xb7,0x85,0xce,0x68,0x8e,0xca,0x93,0xfa, + 0x34,0xea,0xf3,0x80,0x25,0xb2,0x86,0xa8,0xc2,0xd9,0x09,0x51,0x50,0x36,0x9a,0xc8,0x69,0xc7,0x2c,0x7f, + 0x12,0x8d,0x8d,0x93,0xd7,0x37,0x07,0x34,0xc2,0x9f,0x43,0xaa,0x31,0x0f,0x27,0x0a,0x76,0x27,0xec,0x91, + 0x4f,0x7c,0x22,0x11,0x68,0x34,0x32,0x9a,0x99,0x9f,0x09,0x27,0x62,0x97,0x03,0xfd,0x1c,0x85,0x2b,0xd6, + 0xad,0xed,0x4d,0x28,0x4f,0x34,0xd9,0xb8,0xf9,0x4a,0xdf,0x0a,0x40,0x7b,0xdf,0x53,0x08,0xce,0x68,0xcd, + 0xa2,0x18,0x46,0x8f,0x63,0x54,0x31,0xee,0x54,0x80,0x48,0x56,0x62,0xce,0x20,0x5f,0x85,0x47,0xc0,0x79, + 0xf1,0xcf,0xf4,0x57,0xda,0xec,0x7e,0x20,0xcd,0xc5,0x84,0x70,0x4b,0x2b,0x26,0xe3,0xb5,0x9e,0x40,0x19, + 0xc9,0xc4,0xc6,0x04,0x6c,0xaa,0xac,0x3f,0x83,0x12,0x73,0xad,0xc4,0x7d,0x5f,0x01,0x94,0x83,0xbd,0x54, + 0x06,0x46,0x7f,0xcf,0x02,0xd3,0x59,0x34,0xea,0x70,0xdb,0x86,0xd6,0x45,0x8b,0x7e,0x62,0x2c,0xe3,0xcb, + 0x8a,0x6d,0x36,0xfe,0xa4,0x5a,0x65,0x9b,0x69,0x27,0x44,0x61,0x41,0x54,0xb2,0xfc,0xd0,0x4d,0x38,0x14, + 0xf5,0x64,0x9d,0x9c,0xaa,0xcc,0xb3,0x57,0x87,0x79,0x08,0x6f,0x7b,0x86,0x85,0x51,0x9f,0x5d,0xa8,0x3e, + 0x47,0xa6,0xa3,0x59,0x92,0x0f,0xef,0x5d,0x15,0x74,0x9c,0x22,0x00,0x96,0x3c,0x0d,0x8b,0x9a,0x85,0x43, + 0x17,0x44,0x42,0xa5,0x17,0x88,0x11,0x5b,0x2f,0x11,0x5c,0x81,0xb0,0xcc,0x0a,0xa2,0xb2,0xbc,0x7e,0x9f, + 0xd5,0x59,0x45,0x24,0x10,0x65,0x53,0xea,0x58,0xe3,0x10,0xca,0x62,0xdf,0xe0,0x77,0xf3,0xb4,0x41,0xb0, + 0x0c,0xfd,0x31,0xbe,0xc3,0x26,0x6c,0x63,0x8d,0x9c,0x89,0xd7,0xe4,0x79,0x98,0x7b,0x22,0x3b,0x8b,0x80, + 0xea,0x00,0xb4,0xe6,0x98,0x78,0xa2,0x29,0x7d,0x9b,0xe3,0x90,0x89,0x62,0xdd,0x4c,0xd9,0x5b,0x9b,0x68, + 0x2f,0x57,0x09,0x7d,0x52,0xca,0x27,0x9e,0x7c,0x94,0xe0,0x21,0x9c,0x79,0xfe,0x2b,0x55,0x98,0x5b,0x16, + 0x27,0x87,0xc3,0x58,0x49,0x6c,0x53,0x59,0x65,0xf9,0x45,0xf1,0xd6,0xb8,0x49,0xd3,0xc4,0x10,0x64,0x30, + 0x16,0x30,0x88,0x8e,0x45,0x99,0x0d,0x7d,0x61,0x50,0x99,0x67,0xa2,0xcd,0x71,0xae,0x5c,0x8e,0xdd,0x72, + 0x8f,0x26,0xbc,0xed,0x34,0x1b,0xe7,0x0a,0xd0,0x16,0x24,0xca,0x67,0xae,0xa1,0x8f,0xd8,0xb2,0xf9,0x90, + 0x0d,0x18,0x0a,0x41,0x71,0xb4,0xfb,0xb9,0x87,0x9b,0x8d,0x10,0xe7,0x2b,0x1a,0x3e,0xec,0xa1,0x3c,0x94, + 0xe6,0x39,0x6d,0xf8,0x81,0xec,0xac,0xec,0x80,0xb5,0xb5,0xf5,0x6a,0x99,0x55,0xe6,0xec,0x41,0x39,0x9d, + 0xc2,0xc4,0x07,0x5b,0xa4,0xf2,0xbb,0x31,0xa0,0xb8,0x6d,0xbf,0x27,0xc6,0xef,0xa4,0x6b,0x84,0x8d,0x08, + 0x6f,0x8e,0x04,0xc1,0x69,0x26,0x1c,0xa8,0xf1,0x88,0x03,0xd1,0x58,0x67,0xe9,0x3c,0x33,0x29,0xf6,0x68, + 0x2c,0x8d,0x12,0xbf,0x3c,0xdd,0x15,0x13,0x49,0x48,0x08,0xd8,0xf7,0x12,0x01,0x6a,0x1a,0xc8,0xb8,0x7b, + 0x8c,0x74,0xb7,0xe4,0x59,0x9a,0x78,0x25,0x44,0x57,0x24,0x5d,0x21,0xea,0xb8,0x88,0x59,0xe5,0xbe,0x65, + 0x1e,0x27,0xbe,0x09,0xb6,0x2f,0xa2,0x51,0xc9,0x7c,0x8d,0x4a,0xd8,0x38,0xc9,0x2e,0x08,0xce,0x6f,0x92, + 0x03,0x5a,0x93,0x76,0xda,0xa3,0x03,0x2c,0x90,0x0e,0xf4,0x85,0x04,0xe7,0x2f,0xe7,0xf6,0x60,0x61,0x24, + 0xf6,0x0a,0x63,0xf4,0x9c,0xf9,0x37,0xec,0x35,0x0f,0xaf,0xe3,0xee,0xa4,0xd1,0xc9,0x15,0x7a,0x0b,0x98, + 0xbc,0x82,0x36,0xba,0x5d,0x46,0x5b,0x63,0x71,0x24,0x1b,0xb7,0x59,0x4e,0x1a,0x4e,0x3d,0x4d,0x10,0x62, + 0x65,0xdb,0xa2,0xe0,0x5d,0x66,0x43,0x9c,0x9c,0x21,0x5e,0x40,0xcb,0xf6,0xf2,0xd7,0x96,0x7d,0x04,0xbb, + 0x28,0xe2,0x34,0xef,0x90,0x0b,0xec,0x9d,0xe9,0x7d,0xf5,0x34,0x6b,0x51,0x26,0xdd,0xd5,0x19,0xfb,0xae, + 0xf3,0xdf,0xec,0x1f,0xc6,0xdb,0xba,0x9a,0xb1,0xef,0xf4,0xdf,0x29,0x0d,0x55,0x9d,0xda,0x0d,0x6d,0x1c, + 0x05,0x09,0x24,0x76,0x0a,0x8c,0x6f,0xe2,0x28,0x14,0x12,0x01,0x9b,0xdd,0x56,0x1b,0x8d,0xee,0x3c,0xb1, + 0xe2,0xcb,0x8e,0x89,0x00,0xab,0x49,0x19,0x4e,0xa1,0x80,0x61,0xf0,0x3c,0x63,0x5c,0xd7,0x85,0x4b,0x13, + 0xa8,0x17,0x66,0xef,0x6c,0xe9,0xa8,0xf9,0x82,0x5f,0x21,0x29,0xdb,0xb2,0x37,0x1a,0xd5,0x10,0x20,0x33, + 0x09,0xf0,0x0a,0xb4,0x58,0xc9,0x0c,0x9e,0x4f,0xda,0xbc,0xda,0xd2,0x35,0xb0,0x25,0xfe,0x6e,0xce,0x1e, + 0x5b,0x8c,0x62,0xe0,0xb0,0x86,0x5f,0xdc,0x12,0x62,0x5b,0x78,0xa9,0xc9,0xe4,0xe1,0xbd,0x29,0x0d,0xb1, + 0x2a,0xe1,0xb2,0x95,0x59,0xbd,0xff,0x8a,0xef,0xbc,0xf4,0xbc,0x00,0x32,0xdf,0xb3,0xfb,0x56,0x84,0xcc, + 0x47,0xd0,0x13,0xc4,0x6f,0x78,0xcf,0xbb,0x04,0x55,0xf8,0x6f,0x74,0x00,0x73,0x29,0x98,0x96,0xf1,0x13, + 0x11,0x1c,0xfa,0x09,0xc1,0x91,0xf1,0x7b,0x1a,0xeb,0x07,0xdf,0xac,0xbf,0xbd,0xfc,0xd9,0xb8,0x19,0x67, + 0x7b,0x01,0xc2,0xde,0xc4,0x59,0x0c,0xce,0xd0,0xb3,0xf9,0x7e,0xed,0x03,0xd8,0x16,0xa0,0xf4,0x1d,0x8e, + 0x34,0x59,0x08,0x1d,0x48,0xbb,0x53,0x95,0x4e,0x65,0x97,0x3f,0x2a,0x79,0x87,0x12,0xa1,0x9b,0xa0,0x4e, + 0x6c,0x3c,0x90,0x5e,0x7c,0xb1,0x1b,0x04,0x04,0xf8,0xbf,0x97,0x50,0x2f,0x22,0x45,0xbf,0x85,0xb7,0x2b, + 0x59,0x49,0xd3,0x6d,0x4d,0xd0,0x65,0x10,0x8c,0x5a,0xe2,0xb9,0x4c,0xc7,0x04,0x08,0x1b,0x1d,0x7a,0x17, + 0xd5,0x35,0x7e,0x75,0xbc,0x81,0x7b,0x01,0xba,0x6d,0xea,0xee,0x0f,0x3b,0xe5,0xd6,0x83,0xfa,0xea,0x22, + 0x88,0x83,0x45,0xda,0x5c,0xb2,0xa1,0xd1,0x58,0x1e,0xb7,0xb4,0x45,0x3f,0x65,0x26,0xba,0xcf,0xb6,0x86, + 0xd3,0xd4,0x68,0xa3,0xee,0xfd,0xb6,0xca,0xaa,0x9b,0x0f,0x19,0xf4,0xd0,0xa5,0xdc,0x43,0x73,0x57,0x2c, + 0xcd,0x69,0x7e,0x15,0xf4,0xa9,0x52,0x9e,0x74,0xf6,0x0a,0xdb,0x5c,0x56,0xd9,0xac,0xe3,0x23,0x64,0x3c, + 0xaf,0x73,0xdf,0x8d,0xdb,0x80,0x29,0x30,0x04,0x1c,0xb4,0x4b,0x58,0xce,0xd3,0xb7,0xf5,0xa8,0xab,0x56, + 0x29,0xd9,0x1a,0x6a,0xc5,0xbf,0x38,0xfc,0xf1,0x8b,0x43,0x16,0x07,0x2c,0x1e,0x35,0x21,0x1f,0xbb,0xf6, + 0x5f,0x16,0xcf,0xcb,0xaa,0xb7,0x16,0xfc,0xb5,0x28,0x23,0x27,0x7c,0x3c,0x18,0x70,0x12,0x63,0x64,0x53, + 0x37,0xc1,0x87,0x3c,0xe4,0x1e,0xe0,0xfe,0x28,0x42,0x6c,0x17,0x63,0x0b,0x34,0x1e,0x8e,0x7a,0xfa,0x65, + 0x21,0x93,0xec,0x47,0x7d,0xf4,0xfb,0xfe,0xe1,0xac,0xf3,0x73,0xc6,0x63,0x8d,0x36,0x4e,0xe5,0x48,0x2c, + 0x44,0x11,0xf0,0x73,0x57,0xbe,0x82,0x25,0x14,0x19,0x09,0x9f,0xb4,0x40,0xa1,0xad,0x60,0x11,0x15,0xbc, + 0x11,0xc3,0x4a,0xcf,0xb9,0x08,0x43,0x13,0xc7,0x90,0x57,0xac,0xab,0x83,0xae,0x96,0xfd,0xca,0x3e,0x53, + 0xc6,0x8a,0x12,0x61,0x5d,0xb7,0x5e,0xcf,0x73,0x76,0x68,0xa4,0x1f,0xe2,0x06,0x79,0xc0,0xa0,0x2b,0x30, + 0x9a,0xc7,0x90,0x2a,0xbd,0x43,0xa8,0xac,0xcb,0x72,0x4e,0x9c,0x3a,0xd7,0xd0,0x92,0x3d,0x61,0x9c,0x7e, + 0x02,0x28,0xe3,0x76,0x8a,0x96,0xc9,0xf9,0xf6,0xfb,0x99,0x08,0x28,0xac,0x76,0x59,0x9c,0xe4,0xb0,0xb1, + 0x72,0x22,0x21,0xf2,0x47,0x49,0x35,0xda,0xdb,0xcb,0x69,0xeb,0xc2,0x82,0x31,0x3f,0xd5,0x84,0x76,0x98, + 0xe2,0xb0,0x77,0x9e,0x96,0x9e,0xe7,0xc9,0x0b,0x0d,0x93,0x3a,0x46,0x9e,0xe7,0xf0,0xb5,0x5e,0x37,0xdd, + 0xa4,0xf6,0xbc,0x1b,0x48,0x16,0x6e,0x38,0x41,0x8c,0x8e,0x29,0xbc,0xf6,0x1a,0x79,0xa8,0x93,0xdf,0xb3, + 0xed,0x5a,0x5d,0x64,0x01,0x70,0x60,0x54,0x62,0xab,0x11,0x5c,0x8c,0x6c,0x4a,0xcc,0x89,0xec,0x20,0x52, + 0x58,0x33,0x59,0x85,0x48,0x58,0xaa,0xa4,0x16,0x6e,0x7e,0x82,0x9f,0x6a,0x4c,0xb3,0x46,0x53,0xfc,0x23, + 0x04,0x5f,0x89,0x71,0xc4,0xfd,0x0d,0x8c,0xae,0xd6,0x81,0x06,0x0a,0x77,0x1e,0xa8,0x1c,0x46,0x13,0x38, + 0x09,0xe8,0xc7,0xed,0x2b,0x91,0x45,0x4f,0x07,0x83,0x95,0x01,0x6a,0xe2,0x5d,0xe4,0x6b,0xf8,0xac,0xf5, + 0x7d,0x9b,0x17,0x44,0x93,0xf3,0x37,0x73,0xfb,0x0d,0xb6,0xf0,0xbc,0x15,0xd5,0x66,0xd6,0x27,0x1b,0x17, + 0xe3,0xbc,0xb9,0x6f,0x92,0x47,0x6d,0xcd,0x31,0x8e,0xc0,0x54,0x2b,0x4d,0x6e,0x46,0xe5,0xf8,0x3b,0xf8, + 0x4b,0x49,0x72,0x00,0x19,0xf4,0x2c,0x64,0xa7,0x80,0x95,0x8d,0xfc,0xc1,0x05,0x10,0x47,0x50,0x87,0x0f, + 0xbc,0xb3,0xc5,0x55,0xa7,0xc5,0x15,0xb7,0xd8,0x9d,0x04,0xdd,0x32,0xb3,0xe1,0x76,0xbe,0xeb,0x68,0xc2, + 0x5e,0x67,0xf4,0x15,0x4f,0x7b,0xb0,0x2a,0x64,0x62,0x32,0xfa,0x07,0x41,0x6c,0xdb,0x60,0xf7,0xf7,0x16, + 0x8e,0xeb,0x8b,0xba,0xd3,0x31,0xc7,0xd5,0xdb,0x73,0x24,0x66,0x1f,0x5b,0x2a,0xd3,0x30,0x67,0x53,0xdc, + 0x68,0xa8,0xe3,0x82,0xb3,0x4e,0x3c,0x77,0x6f,0xc9,0x55,0x1e,0xa9,0xe2,0x84,0xe0,0x9d,0x60,0x70,0x58, + 0xa5,0xd7,0x6f,0x98,0x8c,0x2a,0x99,0x9c,0xda,0x0b,0x86,0xc1,0x9e,0x6f,0x0f,0x52,0xfa,0xd5,0x40,0x56, + 0x20,0x61,0x57,0x87,0x41,0x14,0xd1,0xfe,0x90,0x65,0x26,0x4e,0xa9,0xf1,0x38,0x25,0x07,0x98,0x74,0x50, + 0x72,0xad,0x91,0x8e,0x5b,0xbf,0x6d,0x02,0xfb,0x5b,0xb6,0x2d,0x7d,0xce,0x04,0x74,0xf8,0x47,0xdb,0x4d, + 0x96,0x6c,0x18,0x59,0x86,0x85,0x84,0xda,0xd0,0xe5,0xb5,0x71,0x64,0x05,0xe3,0xc8,0x4a,0x2e,0x4c,0xe0, + 0x63,0xc0,0xf5,0x80,0xaf,0x41,0x91,0x71,0x81,0x02,0x70,0xc6,0x93,0x9e,0x2b,0x44,0x16,0x7a,0x14,0xd0, + 0xb6,0xe1,0x36,0xcf,0x7e,0xd8,0x30,0xd6,0x12,0xd7,0xa9,0x36,0x11,0x9a,0x17,0x97,0x59,0x95,0x73,0xbc, + 0x6d,0x9a,0xa1,0x2c,0x14,0x64,0x68,0x91,0x60,0x66,0x3c,0x05,0x24,0x41,0x33,0x07,0xcc,0x27,0x51,0x63, + 0x18,0xcd,0x24,0xf1,0x3f,0x61,0xe1,0xf8,0x3c,0xa9,0x3a,0x49,0xcc,0x8f,0x69,0xd1,0x10,0xc2,0x21,0xb4, + 0x0a,0x24,0xac,0x85,0x9e,0x6b,0x77,0x09,0xa6,0x16,0xe7,0x51,0x9a,0xcc,0x41,0xe1,0x4f,0x84,0x99,0x49, + 0x09,0xf4,0x21,0x29,0x05,0xdf,0x36,0x0a,0xdf,0x14,0xeb,0xf5,0x7b,0x18,0x74,0x68,0xe9,0x37,0xc4,0x15, + 0xf2,0xa4,0x8b,0x19,0x01,0xbb,0xce,0xf7,0x2a,0x9e,0x44,0xd8,0x7d,0x25,0xdb,0xe2,0x37,0x40,0xe2,0x63, + 0x04,0xb7,0x43,0x60,0x5a,0x1b,0x71,0xfc,0xcd,0x87,0x30,0xcb,0x55,0x81,0xcc,0x28,0xfe,0x17,0x7d,0x17, + 0x21,0xd0,0x66,0xa7,0x10,0x32,0xbd,0x55,0xf8,0xce,0x37,0x10,0xf8,0x67,0xc5,0x4e,0x77,0x39,0x07,0xc8, + 0xde,0xfa,0x90,0x45,0x25,0x49,0x40,0x94,0x76,0x79,0x3d,0xa3,0xfd,0x51,0xd3,0x5e,0xc9,0x8a,0x40,0xc2, + 0x8e,0x05,0xcf,0x5e,0x3f,0x79,0xf6,0x54,0xdb,0x4a,0x0b,0x8f,0x3f,0x0e,0x9a,0x8a,0xc6,0x12,0x43,0xc9, + 0xdf,0x0a,0x8c,0xce,0x5e,0x6f,0xd6,0x1e,0xea,0x5f,0x95,0x0e,0x21,0xd0,0x2e,0xc2,0xbd,0x20,0xaa,0x71, + 0x96,0x52,0x39,0xd4,0x5b,0x8c,0xf5,0x73,0x2c,0xf5,0xba,0x1a,0x9a,0xfc,0x33,0xdd,0xb6,0x93,0xd2,0xe0, + 0xfe,0x8e,0x56,0x2b,0x92,0xd5,0x58,0xf3,0x05,0xaa,0x8a,0x2b,0x89,0xfa,0xc6,0x2e,0xf6,0x33,0x54,0xe4, + 0x0d,0xfc,0xdb,0x5e,0xc3,0x6b,0xe2,0xf8,0xd9,0xcf,0xc7,0x8f,0xdf,0x3f,0x7b,0xdc,0x1a,0x35,0xa5,0x2f, + 0xdd,0x59,0xaa,0x67,0x87,0x63,0x6a,0xe6,0xd9,0xf2,0xd2,0x90,0x4e,0xbe,0x2d,0x60,0x43,0xc4,0x77,0xb9, + 0x7c,0x49,0x44,0xc4,0x34,0x27,0xdc,0x03,0xcb,0x9a,0xf4,0x22,0x15,0xe4,0xa8,0x4c,0x57,0x3a,0x77,0xbc, + 0x08,0x05,0x01,0x4b,0x91,0x51,0xd6,0x73,0x05,0x8c,0xcd,0x56,0xa6,0xe1,0x64,0xf7,0x60,0xd3,0xb3,0x0c, + 0x1e,0x24,0x7c,0xdb,0xd9,0x8f,0x86,0x74,0xe3,0xe0,0x3b,0xa9,0xde,0x2b,0xb2,0x29,0x33,0xc8,0xbf,0x3d, + 0x86,0x01,0xbb,0xad,0xd4,0xbc,0x02,0xcb,0x2d,0x20,0x97,0x05,0x73,0xd4,0x2d,0x94,0xea,0x42,0x91,0xd5, + 0xad,0xf4,0xd2,0xfa,0xe6,0x4e,0x34,0xf8,0x51,0x10,0x52,0x1d,0xb1,0x78,0xa5,0x4b,0x5e,0x46,0x23,0x60, + 0xdc,0x3e,0xf6,0x48,0xb8,0x38,0xbe,0xe4,0x72,0xca,0xde,0xb8,0x04,0xb6,0xcf,0x33,0x4d,0x90,0x31,0xec, + 0xb1,0x25,0xbd,0x10,0x4d,0xd6,0x8c,0x9e,0x83,0x65,0xf8,0xe5,0x0b,0xa5,0xc9,0x39,0xa7,0x92,0x4b,0x5a, + 0x8c,0x12,0xcf,0x8a,0xf0,0x45,0x0d,0x6f,0x36,0x48,0x09,0xc7,0x6f,0x20,0x6c,0x7a,0xcd,0xfa,0x23,0x22, + 0xfe,0x47,0x1a,0xeb,0xb0,0x65,0x32,0x84,0x41,0x67,0x1c,0x37,0x36,0xc7,0x98,0xb9,0x92,0x8c,0xc8,0x62, + 0x96,0x50,0x86,0x75,0xf2,0x06,0x28,0xe0,0x75,0xc6,0x12,0x44,0x05,0xd7,0xac,0x1c,0x06,0x98,0xd9,0x15, + 0x17,0xec,0xb9,0x83,0x40,0xac,0xbe,0x54,0x8d,0x53,0xdf,0x15,0x4c,0x6a,0x7f,0x59,0x7f,0xce,0xb6,0x9c, + 0xe4,0x42,0xb6,0xcb,0xf2,0x1c,0x36,0x32,0x6d,0x16,0x7e,0x49,0xb8,0x5d,0x2e,0x79,0xa0,0xf6,0x2f,0x93, + 0x7c,0xef,0x70,0xe3,0x91,0x4d,0x8c,0x3a,0x77,0x0f,0x45,0x15,0x3a,0xc7,0x9f,0x15,0x5b,0x88,0x13,0x4b, + 0x36,0xa5,0xff,0x4b,0xfa,0x6f,0x1c,0x32,0x7b,0x84,0x28,0xd8,0x5c,0x6c,0x92,0x9b,0xf9,0x71,0xb1,0xe8, + 0x44,0xac,0xa3,0x2f,0xbe,0x16,0xdb,0xee,0xaf,0x1f,0xd2,0x90,0x45,0x3e,0xba,0x7b,0xe8,0xf6,0xe4,0x24, + 0xfa,0xe2,0xcb,0x4e,0x81,0x49,0xab,0xc0,0x3c,0xfa,0xfa,0xef,0x9d,0x02,0xf3,0x56,0x81,0x55,0xf4,0xe5, + 0x7f,0x77,0x0a,0xac,0x5a,0x05,0x0e,0x1f,0x7e,0x09,0x8e,0x71,0xbd,0xa6,0x07,0xde,0xcc,0x7e,0x17,0xf7, + 0x0e,0xa3,0xfe,0x8c,0x7d,0x64,0xcc,0x88,0xb9,0x5a,0xaf,0x97,0xd1,0x6d,0x7d,0x9d,0x6b,0x8f,0x81,0x49, + 0x4a,0xb5,0x7e,0xf1,0x65,0x0c,0xc3,0x03,0x31,0x9a,0x1d,0x49,0xd2,0xd7,0x71,0xdd,0x49,0xfa,0xfa,0xef, + 0xf1,0xbc,0x93,0xf4,0xe5,0x41,0xbc,0xdc,0xdb,0x6b,0xa5,0x1c,0xc6,0xcb,0xfd,0xfd,0xd6,0x67,0x87,0xf1, + 0xb4,0x5d,0xe6,0xeb,0x2f,0xe2,0x69,0xbb,0xcc,0xe1,0xc3,0x2f,0xe2,0x59,0xbb,0xd0,0xe1,0xc3,0xaf,0xe2, + 0xd9,0xfe,0x3e,0x28,0x33,0x99,0x10,0xb7,0xe7,0xae,0x12,0x1a,0x8e,0x5a,0x68,0x96,0x6b,0x74,0xc5,0xe1, + 0x25,0xc5,0xf9,0x25,0x5c,0x24,0xf6,0x9e,0x87,0x2b,0x88,0x55,0xf6,0xf7,0xa3,0xd1,0x62,0x30,0x38,0xd7, + 0x31,0x7c,0x17,0x11,0x6b,0x08,0x60,0xe8,0x2f,0x02,0x57,0x6b,0x3f,0x52,0x8e,0x43,0x86,0x22,0x66,0xd9, + 0xcd,0xa5,0xd1,0x0e,0xc4,0xe2,0x46,0x54,0x2c,0x5e,0xf9,0xde,0x82,0x31,0xdc,0xe4,0x2f,0xc1,0xe5,0xe0, + 0x12,0x10,0x07,0x5f,0xa9,0x0f,0x5f,0x65,0xd2,0x43,0xef,0x27,0x4e,0x72,0x17,0x84,0x81,0x08,0x38,0x1f, + 0x99,0x7b,0x49,0xee,0x9f,0x51,0xea,0x7d,0x22,0x4e,0xee,0x07,0x51,0x78,0x9f,0xa3,0xd0,0x07,0xa3,0x76, + 0x96,0xed,0x4b,0x11,0xb9,0x52,0x2a,0xb0,0x19,0x05,0xc1,0xc6,0x06,0xb2,0x65,0x5f,0xe2,0x57,0x7a,0x8e, + 0x77,0xbc,0xf9,0xda,0x4e,0xce,0xc1,0xc9,0x8f,0x2b,0x44,0x58,0x63,0x93,0xa8,0xea,0x14,0x81,0x81,0x7d, + 0xd9,0xdb,0xbf,0xba,0x62,0x14,0x44,0xcf,0x5f,0xb6,0x4d,0x4f,0x5c,0x18,0xa0,0xcd,0xb6,0x75,0xb9,0x57, + 0x60,0x13,0xc5,0x27,0x9e,0x35,0xd1,0x3f,0xed,0x59,0x1f,0x66,0x56,0x3b,0x6f,0x02,0x84,0x38,0x6c,0x70, + 0xcb,0x77,0x78,0x34,0x4a,0xc7,0x9a,0xe3,0x1b,0xd8,0xf8,0xea,0xd2,0xc4,0xf7,0x25,0xca,0x1a,0xaf,0xb2, + 0xae,0x05,0xe8,0x5f,0xad,0xac,0x69,0x9c,0x95,0x20,0xd7,0xf0,0x3a,0x5d,0x4a,0x1c,0x22,0xfd,0x8e,0xa3, + 0xed,0x8e,0x0a,0x3d,0x0f,0xbc,0xc6,0xd1,0xb4,0xd0,0x84,0x02,0xbf,0xb3,0x5e,0xdb,0x78,0xa8,0xba,0x38, + 0x43,0x95,0x75,0x8b,0x6d,0x92,0x60,0x17,0x2e,0x3b,0x84,0xec,0x61,0x52,0xe9,0x17,0x61,0x07,0x5a,0xca, + 0xff,0x7f,0x3a,0x5f,0xfb,0xcf,0xfa,0x45,0x8c,0x4b,0x2d,0x95,0x1a,0x70,0x29,0xc2,0xc9,0xf0,0x0d,0x97, + 0x63,0x1f,0x86,0x25,0xf9,0xc5,0x65,0x33,0x0e,0x29,0x5f,0x13,0xc9,0x8b,0xac,0x58,0x05,0xca,0x56,0xc0, + 0xf9,0x51,0x5c,0x0d,0x17,0xf9,0x74,0x3a,0x67,0x21,0x6e,0x12,0x2c,0xca,0x55,0x9d,0xad,0x96,0x81,0x31, + 0xf8,0x1d,0x55,0x5a,0x4d,0x3d,0x76,0x2d,0x4b,0x02,0xdb,0xaf,0xcb,0x23,0x93,0x00,0xb2,0x08,0x7e,0x02, + 0xab,0xc5,0x63,0x14,0xcb,0x5c,0x81,0xcc,0x66,0x69,0xcb,0x3d,0x13,0x58,0x70,0x33,0xc2,0x45,0xad,0x57, + 0x90,0x9d,0xd5,0x1e,0xe7,0xa2,0xaf,0x75,0x9f,0x24,0xb8,0x94,0x67,0xb4,0xa5,0xfb,0xcb,0xc7,0x13,0x7b, + 0xb3,0x78,0x6d,0xdd,0xf4,0x6a,0xb9,0xc8,0x27,0x99,0x50,0xfe,0x49,0xad,0x26,0xa7,0xf1,0xc9,0x44,0xd5, + 0xa7,0x71,0xdd,0x0b,0x02,0x95,0x05,0x01,0xa1,0x90,0x20,0x92,0xc6,0xad,0x60,0x7b,0x08,0xdc,0x2e,0x2f, + 0x57,0xfb,0x1c,0x9b,0x05,0x49,0xbc,0x93,0x39,0x06,0xaf,0x09,0xa3,0x89,0x83,0x4e,0x54,0x18,0xe2,0x05, + 0x63,0x08,0x19,0xfe,0xd4,0xff,0x20,0x37,0x1f,0x74,0x42,0xdd,0xe6,0xfe,0xa9,0x99,0xb7,0x7b,0xe3,0xbe, + 0x66,0xc9,0x8c,0x07,0xa2,0x7e,0x24,0x1c,0x0f,0x56,0xb5,0xd5,0x7e,0xde,0xb5,0xda,0x87,0x6e,0x09,0x4e, + 0x11,0x7c,0xa5,0x0a,0x02,0x85,0xde,0xe6,0x26,0x76,0x56,0x89,0xd8,0x59,0xe2,0x62,0x61,0xd8,0x35,0xeb, + 0xc7,0xd8,0x6a,0xd2,0xb7,0xe2,0x2f,0x3b,0xb3,0x26,0x56,0xfa,0x79,0x12,0xdc,0xbb,0x77,0x45,0xc8,0x8c, + 0x11,0x28,0x08,0x87,0x24,0x08,0xb5,0xb8,0x90,0x32,0x76,0xa8,0xe5,0x9d,0xfb,0x32,0xf2,0xfb,0x63,0xa4, + 0x18,0x44,0x8b,0xe7,0x08,0xb2,0xd2,0xa1,0x38,0x3b,0xc8,0xa7,0x67,0xc4,0x77,0xee,0xe5,0x40,0x8f,0x9a, + 0x9f,0x4c,0x10,0xe5,0x09,0xe1,0xb0,0xb4,0xf1,0x8f,0x01,0x1f,0xc2,0xb1,0xe0,0xf5,0x22,0xe2,0xb8,0x3f, + 0x2d,0x71,0xdd,0x20,0x75,0x31,0xbe,0xaf,0x71,0xec,0x7d,0x65,0x4c,0x73,0x5c,0x68,0x93,0x9d,0x10,0x0d, + 0xee,0xdc,0x06,0x7b,0xe5,0x5e,0xb0,0x09,0xbc,0x05,0x48,0x1b,0x1f,0x8d,0xfb,0xc8,0x8d,0xa6,0xf0,0x49, + 0xe5,0x02,0x18,0x7a,0x97,0x59,0x9d,0x04,0xd1,0xa3,0x03,0x48,0x1d,0x71,0x3b,0xd7,0x4b,0x93,0x7a,0x4a, + 0xa9,0x4f,0x2a,0x1b,0xa5,0x37,0x7c,0xc1,0x1f,0xfb,0x25,0xc0,0x53,0x7f,0xb3,0x7f,0x38,0xbe,0xa5,0x5e, + 0xc7,0xee,0xfc,0x79,0x41,0x14,0x1b,0xb1,0xe2,0x3c,0x00,0x93,0xfa,0xa2,0x22,0x8c,0x8f,0xc1,0x6c,0x62, + 0x29,0xcd,0x25,0x38,0x4e,0x13,0x13,0x3e,0x3f,0x82,0x64,0xa5,0x16,0x7e,0xaf,0x92,0xdf,0x20,0x22,0xd8, + 0x9d,0xe0,0x8c,0x8b,0xe6,0x4d,0xf8,0x43,0x95,0xd4,0x50,0x69,0x8f,0x57,0x78,0x8e,0xe2,0xaf,0xc1,0xd2, + 0xfe,0x50,0xf9,0x62,0x2a,0x23,0x7f,0x16,0x0f,0x49,0xaa,0xe2,0x45,0x65,0x2a,0xe0,0xc0,0xb2,0xf8,0x5e, + 0xcd,0xa1,0xaa,0x89,0x56,0x1c,0x67,0xd9,0x90,0x2f,0x5c,0x17,0xe1,0x0e,0x04,0x2f,0xfc,0xfa,0x0b,0xfd, + 0xbc,0xbf,0xcf,0xa6,0x76,0x34,0x87,0xbf,0x71,0x4d,0x02,0x5a,0x1b,0x34,0x6e,0x62,0x9e,0xb7,0xc7,0xfb, + 0xbb,0x1e,0xaf,0x49,0xf9,0x9d,0xc6,0xaa,0x7e,0xab,0xa0,0x6e,0x74,0x9a,0x64,0xed,0xde,0xc9,0xbe,0x11, + 0x63,0xb9,0xd1,0xa6,0x89,0x83,0x7b,0x44,0x97,0x86,0xb8,0x43,0x91,0x6a,0xd4,0x77,0x76,0xa1,0x80,0x3c, + 0x32,0x44,0x78,0x4e,0xa8,0x8d,0xb3,0x1f,0xfe,0xb1,0xf2,0x09,0xaa,0xbd,0xbd,0x17,0xbe,0xe9,0xfb,0xc4, + 0x2b,0xf8,0xa2,0xfa,0x26,0x79,0xe2,0xc1,0xfd,0xdc,0x8f,0x1a,0xce,0xe4,0x61,0xb6,0x5e,0x33,0x1d,0xe9, + 0x09,0xb1,0x79,0x92,0x7c,0x67,0x43,0x99,0x4d,0x76,0xa0,0xe5,0xb5,0x80,0x5f,0xc6,0x28,0x1a,0x79,0x8e, + 0x79,0x8d,0x2f,0x15,0x69,0x10,0xa9,0xa2,0x89,0x86,0x67,0xb8,0x2e,0xf2,0x38,0xad,0x61,0xd8,0x53,0xba, + 0x37,0x5f,0x6a,0x76,0xe9,0x3c,0x3c,0x93,0xf2,0x8e,0x78,0x12,0xba,0xb7,0x97,0xec,0x57,0x49,0x67,0x33, + 0xdf,0xc5,0xd8,0xb4,0xc8,0x16,0xb7,0x91,0xbf,0xaf,0xba,0xe1,0x68,0x77,0xf2,0xd0,0x5d,0x0f,0xd8,0xdf, + 0x04,0xe1,0x0b,0xde,0x98,0xe2,0xc3,0xb6,0x41,0x08,0x63,0xc4,0x25,0x50,0xdf,0x57,0xdb,0x3c,0x22,0x5a, + 0xfb,0xa1,0x18,0xdf,0xea,0x73,0x10,0x96,0x3a,0x72,0x96,0x21,0xac,0x9c,0xc6,0xf7,0x1e,0x25,0x33,0x6d, + 0x9c,0xce,0x2a,0xa4,0x53,0xf5,0xfb,0x2a,0xea,0xe5,0x4c,0x11,0xd1,0xca,0x9b,0xaf,0xb6,0x33,0xc0,0xb2, + 0x09,0x4d,0x54,0xaa,0x5d,0x2b,0xb0,0x29,0xc1,0xe6,0xef,0x5a,0x71,0x0d,0x6e,0x01,0xb0,0x3c,0xa8,0x4e, + 0x61,0xa4,0x56,0x26,0x85,0xff,0x3e,0xfa,0xbe,0xd2,0x4c,0x6a,0x07,0x39,0x50,0x47,0x4f,0xce,0xa0,0x07, + 0xd2,0xb8,0xe3,0x4d,0x31,0x0e,0xf4,0xf5,0xd7,0xb1,0xb1,0x4e,0xe4,0x20,0xd1,0xce,0x17,0x80,0x3f,0xe0, + 0x70,0xcf,0xec,0x67,0xee,0xae,0x1e,0xa7,0xe4,0x0d,0xb2,0xaf,0x73,0x89,0x81,0x30,0x94,0x8a,0x5a,0x9f, + 0x5e,0xe3,0x53,0x9d,0xd1,0xf9,0x1c,0x9f,0x6d,0xc0,0xe3,0x7c,0xcf,0x2a,0xfa,0x59,0xa3,0xa6,0x08,0x18, + 0x6b,0x65,0xc6,0xdf,0xdb,0x90,0x00,0x9e,0xc3,0x61,0xdf,0x1c,0x19,0x87,0x9b,0xd6,0x4c,0xd9,0x44,0x5f, + 0xc4,0x2e,0x53,0x52,0x27,0x9d,0x0f,0xdb,0xd2,0x2d,0x3f,0xf5,0x2e,0x01,0x97,0xf5,0xf1,0x69,0xc9,0xb8, + 0x72,0x91,0xb3,0x42,0x14,0x95,0xeb,0x88,0x75,0xf9,0x69,0x12,0x04,0x5e,0xee,0x5c,0xdf,0x32,0x88,0x12, + 0x8a,0xef,0x8a,0x36,0x77,0x37,0x6b,0xf7,0xa4,0xbc,0x20,0x40,0x79,0x71,0xfc,0xfa,0x15,0x27,0x70,0xe9, + 0xaa,0x3f,0x04,0xae,0x67,0x02,0x55,0x52,0xd9,0x1a,0x6d,0x62,0xf2,0xf2,0x62,0x95,0x8d,0x80,0xf3,0x52, + 0x29,0xfa,0x06,0x4e,0x5a,0x56,0xd4,0x9c,0x6a,0xc0,0x3c,0x42,0x56,0xe8,0x17,0x81,0xf9,0x11,0x5f,0x6b, + 0x2c,0x52,0x36,0x69,0x3e,0x1d,0x9e,0xf1,0x6b,0x52,0x6a,0x2b,0x46,0x88,0xc8,0x10,0x1d,0xdf,0xde,0x98, + 0x35,0x9a,0x26,0x2b,0xb5,0x1b,0xce,0x92,0x34,0x12,0x69,0x43,0x4d,0xe9,0xb0,0xce,0x7e,0xfb,0xee,0xf8, + 0xe5,0xdb,0x37,0xa8,0x67,0x66,0xc4,0x3f,0xc4,0x10,0xf6,0xb0,0x21,0x84,0x1b,0xd8,0xc1,0xdc,0x5d,0x8c, + 0x25,0x8e,0xd2,0x5a,0x0f,0xc7,0xd7,0x1c,0xd8,0x38,0x43,0xde,0xf1,0x9f,0x59,0x31,0x61,0xb3,0x09,0x67, + 0x6a,0x1a,0xb5,0xaa,0xf7,0x14,0x71,0xa2,0x4a,0x10,0x15,0xf6,0x6b,0x43,0xb6,0x89,0xf9,0x5a,0x1e,0x69, + 0x93,0x96,0x79,0xfa,0xfb,0x8d,0x0b,0xe6,0x2d,0x56,0x2e,0x7c,0xca,0x1b,0x82,0x68,0x22,0xae,0x6a,0x13, + 0x1d,0xf4,0x2d,0x67,0xaa,0xc0,0xd9,0xde,0x0b,0x8d,0xc0,0x1e,0xc6,0xf2,0x68,0x3a,0x0a,0x92,0xb1,0x90, + 0xfe,0x31,0x48,0x48,0x6f,0x92,0x95,0xb6,0xbf,0x61,0x10,0x29,0xe5,0x16,0x40,0x2a,0xe3,0xf9,0x75,0x36, + 0xee,0xcc,0x5b,0x34,0xac,0x92,0xbe,0x99,0x7b,0x46,0x4b,0x5a,0xd6,0xf2,0x01,0xa9,0xe3,0xab,0xb0,0xf5, + 0xce,0xb1,0x13,0x3c,0x6f,0xc6,0xe6,0x73,0x0a,0xe5,0xc5,0x1d,0xda,0xd9,0xa3,0xbc,0x13,0xbb,0xe4,0xa2, + 0x69,0xcb,0xc0,0x58,0x60,0x54,0x76,0x64,0x5f,0xb9,0xdf,0x8f,0x48,0x74,0x61,0xb5,0x7d,0x2e,0xb7,0x72, + 0x4b,0x9d,0x1b,0x79,0x11,0x7f,0xf4,0x3e,0x9d,0x27,0xad,0xe2,0x6a,0x05,0x83,0xd4,0xb2,0x5a,0xf0,0x75, + 0xf2,0x53,0x4e,0x83,0x82,0xa0,0x96,0x07,0xda,0x87,0xb3,0x64,0xbe,0x5e,0xaf,0xd4,0x14,0xf3,0xa5,0x37, + 0xaa,0x54,0xce,0x5b,0x59,0xa7,0x74,0x6a,0x48,0x60,0x04,0xaf,0x77,0xb8,0xf8,0x4d,0x4d,0xa3,0x78,0x3a, + 0x12,0xc3,0xd6,0x36,0xb4,0xfa,0xda,0x76,0xa6,0x23,0xb3,0x51,0x8f,0x80,0xed,0x2f,0x09,0xde,0xae,0xac, + 0x26,0x34,0x82,0x7d,0x0b,0x3b,0x8b,0x49,0x72,0xd6,0x4d,0x76,0x8e,0xcb,0x19,0xcc,0xd5,0x87,0x26,0xfe, + 0x5a,0xd9,0xaa,0xad,0xec,0x7e,0xe6,0x54,0xfa,0x95,0xd4,0xc1,0xa1,0x31,0x67,0x84,0xa4,0x96,0xb0,0x69, + 0x1c,0x0c,0x3e,0xc0,0x12,0xb1,0x56,0x06,0x4b,0x71,0xf6,0x32,0x0a,0xd3,0x84,0xf3,0x09,0x78,0x67,0xf4, + 0x6b,0x8b,0xe9,0x58,0x27,0xc0,0x00,0xa9,0xcf,0x12,0xdc,0x34,0xbe,0x57,0x1a,0x47,0x0a,0xd5,0x72,0x0c, + 0x89,0xc0,0xc1,0xc2,0x38,0x36,0x21,0xf4,0x84,0x0e,0x3b,0x01,0x53,0x96,0x8d,0xb6,0x6b,0x79,0xf0,0x4b, + 0xbd,0xf7,0x20,0xb2,0x97,0x38,0xf5,0x78,0x84,0x7b,0xf5,0x70,0x70,0x2d,0x04,0x16,0x8b,0xb7,0x13,0xfd, + 0x20,0xbb,0xd0,0xb0,0x50,0xfb,0x17,0x3d,0xa2,0xc1,0x48,0x5b,0x5f,0xee,0xe0,0xe6,0x47,0xaf,0x53,0xac, + 0x91,0x09,0x58,0x49,0x9e,0xf5,0xcb,0x14,0xc3,0x82,0xb8,0x2c,0x33,0x40,0x3f,0xf6,0xfe,0xff,0xef,0xb3, + 0x20,0xc8,0x7c,0x7b,0x22,0x6c,0xba,0xf2,0x53,0xe5,0x10,0x00,0x13,0xd0,0x15,0xe1,0x9b,0x29,0x91,0xa9, + 0x73,0xb2,0xe6,0x3f,0x35,0x7d,0xb0,0x3e,0x31,0xd3,0xe6,0x4d,0x65,0x05,0x5b,0xb0,0x11,0xbc,0xa3,0xed, + 0x6d,0x53,0x95,0xc2,0x70,0x01,0xe2,0x06,0x4d,0x42,0x29,0xd1,0x3b,0xc7,0x7c,0x8f,0xc6,0x5d,0xdd,0xf4, + 0xe6,0xfc,0xac,0xd1,0xa4,0x8d,0xb6,0x00,0xd9,0xba,0xb5,0xc5,0x20,0x51,0x7b,0x1d,0x30,0xb3,0xc0,0x34, + 0x2d,0x90,0x1a,0xe3,0x26,0x8b,0x77,0x79,0x98,0x69,0xab,0xad,0xe0,0x2a,0x40,0x00,0xcc,0x90,0x95,0xc5, + 0x8d,0x46,0xe1,0x3d,0xb8,0xf1,0x1d,0xe3,0xc6,0x2d,0xf2,0xe4,0x9a,0xfb,0xf2,0x3e,0xf7,0x1d,0x68,0xde, + 0xa3,0xa8,0x2f,0x88,0x39,0x6e,0xda,0xd6,0x23,0xdb,0x32,0x6f,0x96,0x42,0x6c,0x27,0x73,0x5c,0xa0,0xc2, + 0xb3,0xfc,0x02,0x84,0xc2,0x81,0x04,0xf2,0x04,0x5a,0x69,0xbd,0x07,0x7d,0xff,0x52,0xdd,0x54,0x5f,0x6d, + 0x83,0xc1,0xaa,0xb7,0x15,0x04,0xe0,0xd6,0x70,0xec,0x39,0x9d,0x76,0x38,0xe9,0x4f,0x52,0x40,0xe1,0x18, + 0xd0,0x26,0x17,0x95,0x71,0x08,0x62,0x3a,0x0b,0x62,0x33,0x8e,0x62,0xcd,0xe7,0x82,0x95,0x2a,0x98,0xd0, + 0x2b,0x75,0x02,0xc3,0x8b,0xa7,0xf9,0xf8,0x79,0x1e,0xbf,0xce,0x09,0xe3,0x77,0x7c,0xd0,0xfa,0x15,0x3b, + 0xb5,0x5a,0xc1,0x6e,0x9d,0xfd,0xcd,0xda,0x3a,0x22,0x09,0x87,0x21,0xbc,0xdd,0xde,0xde,0xe4,0x1b,0x68, + 0x16,0xe1,0x6e,0x36,0xea,0x77,0x6a,0x9a,0x3c,0xd2,0xf9,0x0a,0xd7,0x34,0xab,0x1e,0x25,0x11,0x9a,0xf2, + 0x9c,0x5e,0xfd,0x25,0x23,0x68,0xd7,0xb7,0xea,0x52,0x93,0x47,0x3a,0x80,0x07,0x9f,0x25,0x12,0x73,0xa2, + 0x3a,0x79,0x95,0xef,0x05,0x4f,0xe1,0x68,0x15,0x9c,0x5a,0x93,0x3d,0x58,0x45,0x95,0x26,0x6f,0x55,0xc9, + 0x55,0xd7,0xed,0xec,0x34,0x81,0xdc,0x1c,0xae,0x09,0x35,0x15,0x7c,0x73,0x47,0x25,0x13,0x93,0xd7,0x5f, + 0xc9,0x1c,0x95,0xc0,0xd8,0x95,0xe6,0xe8,0x00,0xea,0x07,0x77,0x1b,0x30,0x4f,0x78,0xca,0x26,0xe8,0x05, + 0x3d,0x52,0x81,0x94,0x0a,0x18,0x5b,0x77,0xa2,0x18,0x60,0x81,0x9d,0x8f,0xe7,0xba,0xc4,0x4b,0x94,0x98, + 0x53,0x89,0x89,0x2d,0x31,0x4b,0x28,0x3d,0x5c,0xb9,0xa8,0xed,0x29,0x68,0xdf,0x6f,0x0e,0xa8,0xd6,0xf9, + 0xf8,0x69,0x1e,0xbf,0xcc,0x99,0xdb,0x8f,0xc6,0x85,0x34,0x66,0xea,0x8e,0x4d,0x15,0xf1,0x81,0xd2,0xc1, + 0x9b,0x95,0x86,0x96,0x78,0xa5,0x2c,0xac,0xc4,0x33,0x5c,0xc9,0x7c,0x6c,0xae,0x0e,0x8c,0xa5,0x96,0xc1, + 0xe0,0x27,0x2d,0x4b,0x97,0xd9,0x33,0x91,0x40,0x82,0x53,0x1f,0x0d,0x3c,0x6e,0xdc,0x21,0x3d,0x32,0xf2, + 0x8f,0x47,0x36,0xde,0x62,0x94,0x25,0x36,0x04,0xb7,0x23,0xa2,0xcc,0x38,0x5a,0x97,0x8b,0xb5,0x25,0xca, + 0xbe,0x77,0xf9,0x07,0x58,0x4e,0xee,0x7d,0x68,0x24,0x50,0xd5,0xc6,0xdf,0x69,0x1f,0x7c,0x12,0xeb,0x30, + 0xfb,0xe2,0x6f,0xfa,0xba,0x5a,0x27,0x40,0xd8,0x3f,0xf4,0xcb,0xdf,0xf3,0x68,0x29,0x90,0x50,0x44,0xef, + 0xc0,0xad,0x0b,0xf7,0x04,0xa5,0x44,0x9c,0x9f,0xb3,0x33,0x85,0x7d,0xd3,0xd7,0x76,0xce,0x25,0xf2,0x9e, + 0x4b,0x0f,0x8d,0x0c,0x34,0x39,0x6b,0x0c,0x37,0xe4,0x36,0x74,0x64,0x7d,0xb5,0xd8,0xe6,0x92,0x3e,0x23, + 0x08,0xcf,0x2a,0xae,0xfc,0x90,0xa3,0x8a,0x81,0x20,0xc1,0x8d,0x77,0x8e,0xb6,0x41,0x44,0x32,0x42,0x8c, + 0x0a,0xfe,0xb3,0xbc,0xb1,0x09,0x48,0x86,0xf2,0x19,0xab,0xf2,0x66,0xe6,0xf5,0xb8,0x94,0x84,0xa9,0x49, + 0x78,0xcc,0x34,0xbb,0x24,0x2e,0x29,0x91,0xa6,0x34,0x4b,0xf5,0x57,0x97,0xf6,0xdd,0x7c,0x76,0x65,0x53, + 0xfc,0xef,0x16,0x94,0x7a,0x9e,0xc1,0xae,0xfc,0x19,0xaa,0x54,0x17,0xa6,0x72,0x75,0x83,0xf2,0xb8,0x06, + 0x5e,0x32,0xce,0x6d,0xaf,0xcc,0xc4,0xa8,0x6b,0xfb,0xed,0x63,0xae,0x57,0x1d,0xdb,0x26,0xd4,0x47,0xf3, + 0xb5,0xce,0x3a,0x72,0xfd,0xb3,0xdf,0x7f,0xa2,0xb4,0xa9,0xde,0x53,0xea,0x71,0x72,0x5d,0xa9,0x0f,0xf4, + 0x47,0x1b,0xf8,0x8f,0x3e,0x10,0x05,0x64,0x49,0xae,0xc7,0x49,0xf8,0x21,0x31,0xaf,0x91,0xe1,0x58,0x79, + 0x25,0xee,0x25,0xbb,0x8f,0xbd,0x20,0x4c,0xc4,0x91,0xb2,0xf5,0x7f,0x59,0x82,0x0e,0x44,0x7c,0x61,0x2c, + 0xc9,0xbd,0xf5,0xfa,0x18,0x87,0x27,0xad,0xc1,0xb1,0x80,0xc0,0xdb,0xe4,0xde,0x60,0xb0,0x1c,0x2f,0x69, + 0x37,0x3c,0xc3,0xe3,0xd5,0xf8,0x2a,0x9e,0xaa,0x77,0x78,0xbc,0x1c,0x5f,0xd2,0xbe,0xf8,0x35,0xb9,0x37, + 0xbe,0x5e,0xaf,0x17,0xf1,0x42,0x3d,0x45,0x6a,0x8f,0xff,0xcc,0xf1,0xf8,0x38,0xbe,0x50,0x2f,0xa9,0xe0, + 0xc7,0xf5,0xfa,0x26,0xbe,0x51,0xaf,0xe8,0xf1,0x68,0xbd,0x3e,0x8f,0xcf,0xd5,0x73,0xe2,0x5b,0xf2,0xf0, + 0x53,0x34,0xfe,0x24,0xd3,0x16,0x7f,0x8a,0xd4,0x9b,0x84,0x0f,0xc2,0x9a,0x15,0xf6,0xea,0x75,0xf2,0xae, + 0x09,0x9f,0x46,0xea,0x7d,0xe2,0xe0,0xc4,0xf7,0xd4,0x8d,0x6e,0xdf,0x10,0x48,0xd2,0x81,0x52,0xaa,0x77, + 0x91,0xe2,0xdf,0x67,0x74,0x54,0xbe,0x77,0xa0,0x39,0x0e,0xa9,0x04,0x67,0xbc,0x8d,0xd4,0xab,0xc1,0xe0, + 0x15,0x5b,0x5a,0xbc,0x1c,0x0c,0x5e,0xc2,0x9f,0xc1,0xab,0x55,0x07,0x6e,0xd7,0xf0,0x5a,0x5f,0x96,0x34, + 0xb0,0xef,0x68,0x3b,0x38,0x13,0x29,0xd7,0xa8,0x11,0x1a,0xc9,0x5c,0x83,0x4f,0x55,0x3a,0xb4,0xf2,0x19, + 0xc2,0x1e,0x31,0xab,0xe9,0x9e,0x4f,0x58,0xb0,0x76,0x3a,0xe2,0xc0,0x48,0x62,0x98,0x58,0x88,0x61,0x62, + 0x83,0x1d,0x66,0xf7,0x4d,0xf7,0x3d,0x8c,0xd4,0xd3,0xc1,0xe0,0x29,0x75,0xfd,0x3d,0xcc,0xa6,0x7e,0x1d, + 0x0c,0x7e,0x45,0x9f,0x31,0xe2,0x63,0x3d,0xa0,0x63,0x19,0xb1,0xba,0x6e,0x1d,0x24,0xc7,0xfe,0x7c,0xbc, + 0x6d,0x4d,0xc7,0x7a,0xfd,0x9a,0xce,0xf1,0x67,0x4d,0xf8,0x3c,0x1a,0x7b,0xa7,0xd0,0x7b,0xf5,0x3c,0x8a, + 0x8f,0x50,0x7c,0x4e,0x8d,0x01,0x89,0x28,0x6f,0x22,0xc4,0x2a,0xb7,0xf2,0xfb,0x43,0xdd,0xe0,0xaa,0xde, + 0x87,0x6d,0x0f,0x30,0x8d,0x40,0x9c,0xb0,0x9b,0xba,0x73,0xe4,0x37,0x1f,0xb6,0x26,0x38,0x24,0xce,0xd3, + 0x4d,0xa2,0x9d,0x31,0xe8,0xba,0xfb,0xd2,0xc5,0x1f,0x55,0xa6,0x33,0x29,0x22,0x75,0x49,0x80,0x88,0x40, + 0xab,0xd7,0x32,0x25,0x29,0x3c,0x2c,0xf8,0x77,0xd9,0x33,0x25,0x29,0xf1,0x50,0x98,0x12,0x2e,0xd5,0xea, + 0xd3,0xb1,0x4c,0xc9,0xc7,0xd6,0x94,0x1c,0xa9,0x8f,0x3c,0x25,0xa9,0x5a,0xa9,0x23,0x99,0x92,0x2b,0x50, + 0x66,0x29,0xbd,0xa9,0x6b,0xfe,0xe8,0x08,0x74,0xb6,0x36,0x34,0xd7,0xb8,0x32,0xf5,0xd1,0x99,0xf7,0xd6, + 0xc6,0x95,0x2e,0xdd,0xe0,0xca,0xfa,0x6e,0x5c,0x29,0x51,0x64,0xe5,0x2e,0x1a,0x8b,0x1a,0x0d,0x03,0x25, + 0xda,0xd8,0x5d,0x6e,0xd8,0x20,0x69,0xe3,0xa4,0x52,0x33,0xce,0x5c,0x25,0x12,0x2b,0x86,0x90,0x24,0xe4, + 0x2d,0xa9,0xc1,0x6a,0x53,0xf3,0x6a,0x90,0xdf,0xd2,0x24,0xf8,0xb8,0xef,0x92,0x12,0x05,0x7f,0xbd,0x42, + 0x16,0x61,0x48,0x5d,0x88,0xb0,0x62,0x2d,0xd8,0x4b,0x32,0x2e,0x6c,0xed,0x16,0x77,0xdd,0x50,0x12,0x7b, + 0x76,0x4b,0x89,0x73,0xbc,0x1a,0x54,0x76,0x2d,0xdb,0x7c,0x2e,0xdb,0xfc,0x18,0xdb,0xfc,0x8a,0x56,0x87, + 0x11,0xc2,0x79,0x34,0x3e,0x97,0xba,0xe2,0xf3,0x88,0xb1,0xa2,0x19,0x5a,0x7b,0xeb,0xfb,0x20,0x02,0x11, + 0x52,0x0f,0xc0,0xf0,0x1a,0xf4,0xa4,0x5b,0x18,0xe2,0x20,0x60,0xd7,0x82,0x43,0x1c,0x80,0x2c,0xa3,0x16, + 0x84,0x8c,0xc3,0x6b,0xc6,0x21,0x0c,0x39,0x54,0xe7,0x05,0x1b,0x8a,0x84,0xd8,0x10,0x8b,0xc1,0x60,0x81, + 0x37,0xe5,0x75,0x52,0x63,0x92,0x9b,0xf1,0x0d,0x6d,0xd7,0xb8,0x0c,0x7d,0x82,0xe0,0x99,0x77,0x22,0x6f, + 0x47,0xa7,0xa2,0xd9,0x90,0x0b,0x18,0x7d,0xed,0xf2,0x3b,0xc4,0xac,0x65,0x56,0xc2,0x05,0x40,0xd6,0x21, + 0xb6,0x61,0x4e,0x8c,0x50,0xc9,0x5e,0x00,0xa9,0x31,0x15,0xdf,0x0a,0x84,0x53,0x9d,0x1c,0x9c,0xc6,0x08, + 0x83,0x63,0xaf,0xfc,0x83,0x33,0x8c,0xa6,0x9f,0xbe,0xf1,0x34,0x7a,0xbf,0x6a,0x7a,0x65,0x17,0xea,0xfb, + 0xc6,0xc7,0x00,0xf7,0xf8,0x66,0x64,0xe7,0x38,0x62,0x49,0xef,0x97,0xe6,0x49,0x39,0x53,0xb9,0x7e,0xfa, + 0xd6,0x96,0xdc,0xa8,0x03,0xaf,0xaa,0x97,0x1d,0x2a,0xbe,0xf1,0x24,0x63,0x8b,0xd5,0xbc,0xc9,0x97,0xf3, + 0x4c,0xe8,0xf5,0xf5,0xba,0x3b,0x32,0x2f,0x72,0x1a,0x9b,0xba,0xc0,0x79,0xcb,0x3a,0xde,0x74,0x7d,0xb7, + 0xe0,0x07,0xe2,0x72,0x71,0x05,0x47,0x1e,0x95,0xc9,0x39,0xb1,0x7f,0xcf,0x61,0x05,0x04,0x7e,0x57,0xe1, + 0x2a,0xa7,0x39,0x5f,0xcc,0x4e,0x13,0x50,0x32,0xf8,0x98,0x84,0xc4,0x0b,0x08,0x76,0x13,0xf2,0x27,0x5e, + 0x04,0x61,0x70,0x5d,0xa0,0xab,0x74,0x61,0x56,0x54,0xc9,0x39,0xd6,0x4d,0x4d,0xe0,0xd6,0x97,0x33,0x37, + 0xd5,0x4e,0xdf,0x6f,0xdd,0x40,0xf9,0xaa,0x69,0x5f,0xd7,0xd2,0xbd,0x86,0xcf,0x66,0xed,0xde,0x84,0x62, + 0x58,0xeb,0xf9,0x91,0xf8,0x50,0x26,0xa2,0x52,0x8e,0xf3,0x86,0xcb,0x0a,0x44,0xed,0xa7,0xc5,0x8f,0x9e, + 0x2b,0x48,0x23,0xce,0xd0,0xc2,0xb3,0x38,0x99,0x29,0x8c,0xd0,0x9c,0x0f,0xc8,0x1d,0x85,0x78,0x90,0xdb, + 0x5f,0x1e,0xaa,0xf7,0x8d,0xcd,0x50,0x5a,0x90,0xef,0xd3,0x9b,0xef,0x5b,0x4c,0x67,0xd7,0xe1,0xe1,0x8a, + 0xdd,0x1d,0x20,0x75,0x16,0xb5,0x78,0x20,0x7c,0x66,0xde,0x48,0x4e,0xa3,0x08,0x93,0x72,0xec,0xa4,0xe1, + 0x34,0xaf,0xd9,0x46,0x59,0x32,0x7c,0xf5,0xc5,0x4f,0xde,0x4c,0xec,0xde,0xe1,0xf0,0x20,0x92,0xaa,0xac, + 0x8b,0x7c,0xc7,0x59,0xfc,0x13,0xfb,0xd3,0xdc,0x25,0x33,0xf3,0x5c,0x2f,0x3c,0xa9,0x28,0x93,0x01,0x5b, + 0x86,0xb1,0x66,0x15,0x71,0xc6,0xb7,0x4c,0x62,0x8d,0xdb,0xfa,0x98,0xea,0xf8,0x27,0xbc,0xc1,0xac,0x4b, + 0xa2,0x2f,0xe4,0xfc,0xd1,0x6b,0x80,0xaf,0xc0,0x74,0xd1,0x52,0xdb,0x81,0x94,0x0a,0x77,0x65,0x45,0x84, + 0x20,0x4a,0x6c,0xde,0x3c,0xd2,0xb1,0x95,0x08,0xfd,0x31,0x2a,0x34,0xfc,0x64,0xc7,0x9b,0x2f,0xa7,0x2f, + 0xae,0x71,0x39,0xc8,0x29,0xfb,0xf3,0xf5,0xc4,0xb4,0xfd,0xc1,0x49,0x92,0x1e,0xfc,0x32,0xdd,0xff,0x98, + 0x65,0xcb,0xfd,0x74,0x4e,0x87,0xc5,0x3d,0x7d,0xf3,0x20,0xd3,0x37,0x2e,0x50,0x76,0x18,0xb8,0x22,0x81, + 0xba,0xe5,0xae,0xc5,0xcd,0xd6,0xec,0xb8,0x3e,0xfb,0x40,0xfc,0x42,0x03,0x1b,0x93,0x44,0xac,0x1c,0x38, + 0xe7,0x9b,0x30,0xdd,0x2b,0xdb,0x5a,0xf2,0xbb,0x3e,0x4d,0x6d,0xbe,0x3d,0x5d,0x3d,0xd3,0x71,0x5d,0x9d, + 0x88,0x5b,0xb3,0xeb,0x77,0x25,0xc2,0x12,0xa1,0x34,0x01,0xe7,0x13,0x22,0x8c,0x39,0x34,0xc8,0x3c,0xa7, + 0x4f,0xdf,0xe3,0x1e,0x78,0x3f,0x66,0xbd,0xbf,0xbc,0x52,0x01,0x81,0xb8,0xb2,0x4e,0x36,0x52,0x9b,0xbe, + 0xda,0x62,0xd6,0xec,0x17,0xfc,0xc3,0x77,0xa8,0x35,0xe5,0x92,0x5e,0xe9,0x2f,0x30,0x58,0xb5,0x5e,0xe7, + 0xb6,0x0b,0x18,0xc2,0xd4,0x68,0x20,0x4b,0xdd,0x15,0x16,0x0c,0x8f,0x4a,0x77,0x51,0x3d,0x11,0x99,0x3f, + 0x65,0xe7,0x1f,0xf3,0xc6,0xf2,0x9f,0x49,0xc0,0x99,0x08,0xa8,0x17,0x06,0x7b,0xd5,0x5e,0xb0,0xfc,0xa4, + 0x58,0xd5,0xbf,0xfc,0x14,0x05,0xaa,0xf4,0x00,0xd8,0xf0,0xe2,0x49,0x70,0x50,0xfb,0x7a,0xfa,0xef,0x5b, + 0xbb,0xae,0x19,0x3f,0x2b,0xe3,0xb7,0xa5,0x93,0xe0,0x1b,0xa9,0x58,0xd1,0xd2,0xd2,0xe9,0xec,0x7b,0x25, + 0x6e,0xdd,0xf5,0xc3,0xc6,0x5b,0xec,0xad,0x15,0xd4,0xcc,0x48,0x1f,0x72,0xac,0x80,0x4c,0x59,0xe3,0x8a, + 0xb8,0x51,0xc6,0x1c,0xa2,0x75,0x97,0x6f,0xf7,0x66,0x57,0xe5,0xcc,0x04,0xec,0xfd,0x20,0x3a,0xde,0xb2, + 0x76,0x8d,0xc4,0xa3,0x84,0x21,0x71,0x8e,0x5c,0x4d,0xa4,0x04,0xb2,0xfd,0xa0,0x2a,0x27,0xfe,0x05,0x36, + 0xdf,0x9a,0x83,0x6d,0x5b,0x75,0xcf,0x56,0x2c,0x04,0xa8,0x37,0x84,0x5f,0xe4,0x6e,0x47,0x0e,0x73,0x06, + 0xdf,0x03,0xcf,0xf2,0x29,0x13,0xd7,0xa2,0x5d,0xdf,0xb8,0x49,0x9b,0x33,0xdc,0x55,0x65,0x95,0xcd,0x6c, + 0x95,0xf4,0xcc,0x91,0xd3,0x8c,0x3f,0x54,0x4b,0x52,0xe4,0x19,0xd1,0x8e,0x0a,0x09,0xf5,0x69,0xaf,0x9a, + 0x29,0x20,0x73,0x75,0xee,0x46,0x10,0x51,0xea,0x40,0x9e,0x36,0x56,0x34,0xa8,0x50,0xf4,0xb5,0xa3,0x54, + 0x0d,0x10,0xee,0xc2,0xda,0x39,0xc3,0x5a,0x9b,0xde,0xa1,0xef,0xd2,0xdd,0xc3,0x7c,0x06,0x9e,0x54,0xba, + 0x69,0x47,0xf7,0xe6,0xaf,0x60,0x05,0x25,0x86,0x3c,0x1c,0xf6,0x20,0xe0,0x5b,0xf0,0xa8,0x1a,0x0e,0xb9, + 0x85,0x40,0xda,0x3a,0x93,0x92,0xf6,0x75,0x09,0xa2,0x32,0xec,0x37,0x7e,0xb2,0x1c,0x84,0xee,0x5b,0x13, + 0xed,0xb8,0xb2,0x45,0x81,0xdf,0x6d,0xa9,0x63,0x91,0x9d,0xdd,0x0f,0x82,0xfb,0x6c,0x48,0x7e,0xdf,0x06, + 0x2c,0xbd,0x4f,0x8b,0xbc,0xdd,0x53,0x20,0x72,0x5b,0x3b,0xbd,0xb8,0x5a,0x15,0x5f,0xb0,0xdc,0x9d,0x20, + 0x19,0x71,0x68,0xd6,0x2a,0xaf,0x4d,0x17,0x2d,0x72,0xa2,0x2e,0x2a,0x6d,0x7e,0x24,0x45,0x8a,0x79,0x5e, + 0x64,0xfb,0xb6,0x65,0x29,0x2e,0xa9,0xc7,0x3a,0x91,0x2d,0x2a,0x3b,0x57,0xde,0x10,0x1c,0x2f,0x4a,0xdf, + 0x43,0x26,0x4b,0x16,0x70,0x68,0x63,0x80,0xa4,0x9e,0x8e,0xb6,0x61,0x52,0x79,0xe6,0xbb,0x4c,0xd1,0x58, + 0x98,0xe3,0x8a,0x1b,0xda,0x27,0x85,0x15,0x80,0x8d,0x9a,0x47,0x85,0x89,0x3c,0x50,0x25,0xf0,0x5b,0x6a, + 0x64,0xb3,0xa8,0x52,0x9e,0x85,0x9c,0x7a,0x59,0x6a,0x71,0x95,0x96,0xfa,0x5f,0xa6,0xf5,0x93,0x9c,0x91, + 0x1e,0x0c,0x5c,0x55,0xe8,0xdf,0xa9,0x64,0xe1,0x58,0xdf,0x0f,0xf4,0x93,0x44,0xb9,0xf1,0xc3,0xde,0xbb, + 0xfb,0x32,0xba,0x2a,0x01,0x8e,0x02,0x69,0x24,0x4c,0x87,0x11,0xae,0xfb,0x86,0xe1,0x04,0xae,0xe4,0x8a, + 0xf4,0xe5,0x10,0x06,0xc5,0xfc,0x54,0x42,0xc3,0x43,0x0c,0xaa,0xeb,0x9b,0x9f,0xfd,0x9e,0xb3,0x69,0x18, + 0x3f,0x73,0xf0,0x01,0xb6,0x64,0x96,0xa8,0xa4,0x38,0x30,0xc4,0xe8,0xf8,0x40,0x69,0xe5,0x74,0xb3,0x98, + 0x07,0x12,0xff,0xec,0x1a,0xf1,0x3b,0xa5,0x29,0x4f,0x71,0xcd,0x34,0xfa,0x84,0xa6,0x65,0xce,0x39,0x52, + 0x08,0xf4,0xde,0x4d,0x31,0x19,0x0c,0xd8,0x0e,0xd1,0x45,0xb5,0xe4,0x5c,0x85,0x68,0x45,0x2a,0xb8,0xc7, + 0x96,0x77,0x01,0xdb,0x77,0x43,0x97,0xef,0x20,0x64,0x30,0x38,0x2b,0xed,0x85,0xb7,0x06,0xbd,0x09,0xb3, + 0x45,0x44,0x37,0x9b,0x6e,0x22,0xd6,0x56,0xcc,0xc0,0x58,0xf9,0x01,0x65,0x9f,0xf6,0x0f,0xf8,0xa9,0x0c, + 0xb8,0xd0,0xe5,0x69,0xf9,0x77,0xfd,0xcb,0x19,0xe7,0x49,0x6b,0xf6,0x5e,0xca,0xec,0xe9,0x35,0x7a,0xcd, + 0x61,0x1d,0x68,0x70,0xf3,0x93,0xc3,0xd3,0xd1,0x4a,0xcf,0xb4,0x95,0xf3,0x59,0xbf,0xae,0xbd,0x43,0x8c, + 0x64,0x9a,0x54,0xc4,0xf0,0xe5,0xc4,0xdf,0x95,0xc4,0xd3,0xad,0x20,0xe3,0x52,0x61,0x38,0x4b,0xb2,0xa8, + 0xe5,0xa3,0x87,0x38,0x3d,0xf6,0x75,0xcb,0x44,0x74,0xaa,0xb4,0x47,0x54,0xbc,0xd4,0xb6,0x9d,0x97,0xb0, + 0x6c,0x89,0xaf,0x94,0x35,0x43,0x8c,0x17,0x1b,0x0e,0xb2,0x61,0x6c,0x07,0x79,0x02,0xf4,0x7c,0x74,0x8c, + 0xf9,0x4a,0xbe,0x75,0xc7,0x9f,0xdd,0x60,0x01,0x21,0x36,0x56,0xb5,0xfa,0xec,0x54,0x0f,0x06,0x7a,0xae, + 0x8d,0x97,0x89,0x56,0x5b,0xab,0xa5,0xba,0x54,0xd4,0x99,0x4d,0x8b,0x9f,0xfa,0xd9,0x9d,0xe6,0x0c,0xd4, + 0x89,0xb1,0x54,0x24,0x48,0x0e,0xa2,0x3e,0xf3,0x35,0x63,0x97,0x2c,0x13,0xfd,0x4a,0x87,0x7c,0x32,0xfc, + 0x0a,0x2b,0x71,0xe9,0xdb,0xa4,0x38,0x79,0x78,0xaa,0xf5,0x47,0x86,0xe2,0xa2,0xa5,0xd0,0x29,0x76,0xd5, + 0xde,0x18,0xa0,0xce,0x75,0x7d,0xcf,0x5d,0x04,0xe0,0x72,0x8c,0x38,0x4e,0xf3,0x3c,0xad,0x29,0xd7,0x7c, + 0xf0,0x5c,0x3e,0xa8,0x86,0x39,0xd1,0x34,0x29,0xd1,0x8e,0x87,0x49,0xe9,0xea,0x55,0x25,0xb5,0xca,0x16, + 0x18,0x26,0xfb,0x61,0x52,0xba,0x8e,0x20,0xf8,0x8a,0xa9,0x51,0x55,0x7c,0x2d,0x5e,0xc1,0x31,0x0b,0xda, + 0x8e,0x24,0xff,0xb6,0x2a,0x99,0x7c,0x76,0x54,0x12,0x56,0x60,0xba,0x8c,0x79,0x14,0x3f,0x81,0x43,0xaf, + 0xb6,0x93,0x8c,0x9e,0xc7,0xb3,0x86,0xf6,0x85,0xce,0xdf,0x35,0xed,0x55,0xe3,0x73,0xd3,0x44,0xb7,0xcf, + 0x8c,0xb0,0xd2,0xb3,0x77,0xee,0x32,0x83,0xe3,0xc0,0x44,0x7b,0x8a,0x6f,0x83,0x38,0x28,0xf1,0xe3,0x02, + 0x3f,0xe8,0xbb,0xf6,0xf6,0x12,0x18,0xfc,0xe5,0x7b,0xf7,0x83,0xf8,0xfe,0x5e,0x86,0x78,0x41,0xec,0x56, + 0x0e,0xbb,0x6f,0x77,0x9f,0xb4,0x27,0xf2,0x66,0xc3,0x45,0x67,0x16,0x5d,0x58,0xaa,0xd6,0xde,0x4f,0x6a, + 0x25,0x99,0xc4,0xb7,0x6e,0x82,0xed,0xc0,0xd5,0xf6,0xa2,0xb3,0xe0,0x04,0xa6,0xe5,0x6d,0xe1,0xbc,0xd3, + 0x89,0xea,0xeb,0x48,0x8c,0x27,0xa0,0x82,0x66,0xf2,0x34,0xd0,0x27,0xdf,0x77,0xa5,0x21,0x9a,0xc5,0x71, + 0x8c,0x68,0x9f,0xef,0x3b,0x49,0x0c,0xa0,0xce,0xa8,0xd7,0x58,0x39,0x04,0x44,0xe8,0xe1,0x4f,0x6a,0x7c, + 0x57,0x59,0x84,0xc4,0x61,0x29,0xbd,0xc2,0xf4,0xed,0xbf,0x39,0x44,0x50,0xb9,0x97,0xf0,0x83,0xfa,0xb6, + 0x64,0xad,0x79,0x6a,0x8c,0x7d,0x5d,0xa0,0xec,0xec,0x53,0x2a,0xd1,0x52,0x6a,0x13,0x08,0xdc,0xab,0x69, + 0x44,0x15,0xfc,0x5c,0x86,0x27,0xc1,0xa4,0xa9,0xe6,0x34,0x08,0xb6,0x1a,0xa6,0xdf,0x74,0x8e,0xbf,0x8b, + 0xac,0x49,0x83,0xd3,0xbb,0x6d,0xda,0x77,0x27,0x4c,0x32,0xde,0x61,0x12,0xaf,0xd1,0xeb,0x30,0x80,0x99, + 0xfe,0xf7,0x44,0x84,0xd9,0xc9,0x5a,0xaf,0xc1,0x2b,0x8a,0x39,0x8a,0xed,0xb0,0x71,0x31,0xb6,0x96,0x43, + 0x61,0xbe,0x47,0x58,0x1e,0x56,0x1e,0xf7,0xcf,0x57,0x4d,0x53,0x16,0xf7,0x31,0x0d,0x52,0x29,0xc2,0x0a, + 0xec,0xa5,0xdc,0x70,0x53,0x98,0x6a,0x29,0x8d,0x16,0xc1,0xaa,0xfe,0xe8,0x80,0x1f,0x61,0x3b,0x4a,0x4d, + 0xa5,0x17,0x77,0x33,0xd4,0x95,0xdc,0x82,0xba,0x0e,0x8b,0xb1,0x5e,0x93,0xbd,0xc0,0x64,0x04,0x71,0x35, + 0x66,0xf3,0x59,0x93,0x11,0xb9,0x1c,0xb3,0x80,0x0c,0x69,0xa6,0xad,0xf5,0xba,0x32,0xb5,0xc4,0x7d,0xcd, + 0xd8,0x8a,0x7c,0xe8,0x6c,0xbc,0xf3,0x98,0xc3,0xf2,0xbc,0xe4,0xe3,0xe1,0xf0,0x20,0xf2,0x63,0xf2,0x9b, + 0x69,0xd4,0xe1,0xaf,0x89,0x70,0xa4,0xea,0x34,0x9c,0x7d,0x5b,0xba,0x50,0xc9,0xc1,0xd9,0xc7,0xb0,0x5d, + 0x94,0x98,0x87,0x0e,0x22,0xce,0x78,0xe3,0x74,0x53,0x0b,0xa4,0xba,0x4f,0x7d,0xf3,0xd0,0xa2,0x65,0x38, + 0x85,0xf0,0x3e,0xff,0x44,0x04,0x60,0x63,0xb2,0x2a,0xc1,0xe4,0xe2,0x00,0x26,0x86,0x1c,0x44,0xd6,0xee, + 0x0f,0x68,0xf1,0xc7,0x95,0xd8,0x45,0xc5,0xf7,0xcf,0x26,0x3a,0xb8,0xc1,0x7d,0x9e,0x36,0xd5,0x89,0xcd, + 0x1c,0x17,0xdd,0x68,0xcd,0x1e,0x02,0xab,0xdc,0x1e,0x36,0x36,0x47,0x50,0x6f,0x30,0xc1,0x2e,0xaf,0xef, + 0xaa,0x72,0x92,0xd5,0x75,0x36,0x35,0x4b,0xaf,0x0d,0x68,0x24,0xbe,0x8e,0xf8,0x11,0xec,0xca,0xc3,0x56, + 0xd1,0xd4,0x2f,0x4a,0xfb,0x8d,0x4b,0xd2,0xef,0x56,0xc1,0xb6,0x61,0xa8,0x17,0x2c,0x04,0xa5,0xd9,0xa5, + 0x86,0x71,0x31,0xbb,0x00,0x58,0x74,0x3e,0xc6,0x6c,0x7b,0xef,0x31,0xed,0xec,0xda,0x2b,0xf0,0xb0,0x53, + 0xe0,0x21,0x7c,0xd4,0x2c,0xbb,0xe6,0x77,0x83,0xc9,0xa1,0xb3,0x79,0xa8,0x6d,0xbf,0x1d,0xc1,0x0b,0x63, + 0xed,0x14,0x41,0xaf,0xbc,0xa9,0xd7,0x53,0x46,0x53,0x4d,0x6b,0xe9,0x8d,0x2f,0x9f,0xf1,0xf0,0xf2,0xd9, + 0xd6,0xe8,0x6a,0x37,0x0d,0x8e,0x00,0xdf,0xed,0x10,0xe0,0x42,0xb8,0xf7,0x71,0x20,0x3d,0x73,0xe4,0xec, + 0x0d,0x0c,0x73,0xb2,0x5e,0x7b,0x94,0x3e,0x61,0xc4,0x79,0x61,0x74,0xfa,0xc1,0x19,0xdb,0x2b,0xef,0x85, + 0x15,0xcf,0x47,0x25,0xb1,0xec,0x5c,0x60,0xf4,0xe0,0x16,0x93,0x24,0xc1,0xd1,0xef,0x70,0xbf,0xb9,0x2e, + 0xb4,0x4d,0x05,0x8d,0x3a,0x46,0x69,0x11,0x82,0xb5,0xd0,0xf3,0x26,0xe0,0xd5,0xb1,0xc6,0xfb,0xda,0x85, + 0x21,0x30,0x3b,0x68,0x17,0xb7,0x99,0xa6,0xb4,0x95,0xe1,0x29,0x4e,0xb8,0x87,0x79,0x04,0x87,0x41,0xd0, + 0x35,0x04,0xca,0x92,0xb7,0xb0,0x84,0x4d,0x92,0x29,0xc3,0xdb,0x2a,0xa5,0xb1,0xb0,0x75,0xb5,0xcc,0x25, + 0x8f,0x5f,0x26,0xde,0x05,0x80,0xf5,0xc9,0x8f,0xb6,0x68,0xb4,0xcd,0x6e,0x8c,0x51,0x6f,0x3c,0x67,0x7d, + 0x30,0x44,0x61,0x76,0x93,0xd3,0x4e,0xd2,0x6e,0x4f,0x13,0x51,0x16,0xb7,0x66,0x4d,0x37,0xef,0x1a,0x54, + 0xdc,0x15,0x4b,0x67,0x82,0x07,0x67,0x8a,0x6d,0x6c,0xa2,0xa0,0xd9,0x45,0xe8,0x32,0x3c,0xb6,0x07,0xe8, + 0x27,0x7a,0x50,0x24,0x68,0xfd,0x3e,0x26,0x97,0xd6,0x7c,0x2f,0xa0,0xa7,0x56,0xd3,0x61,0xce,0x2f,0xb9, + 0xed,0x47,0xfb,0x12,0xce,0xc6,0x89,0x3e,0xdc,0xf5,0x09,0xc4,0xdb,0x14,0x89,0x9f,0x73,0x52,0x9e,0x32, + 0xce,0x70,0x4e,0xf2,0xfa,0x41,0x43,0x0b,0x4c,0x66,0xb8,0xe7,0x1e,0x92,0xda,0xba,0xb0,0xa7,0x83,0x16, + 0xb0,0x77,0x9a,0x2e,0x86,0x91,0x73,0xa7,0x17,0x73,0xb9,0xed,0x13,0x20,0x22,0xfc,0x82,0x66,0x3c,0xdc, + 0xfe,0xde,0x44,0xdf,0x8b,0xf6,0x2c,0x5e,0x92,0x78,0x28,0x81,0x12,0x4f,0x6b,0x3b,0x0d,0xd6,0x8b,0xc2, + 0xc7,0x64,0x2d,0x6c,0x24,0x31,0xd8,0xff,0xd4,0xf6,0x6c,0xb5,0xe5,0x0b,0x18,0x82,0x80,0x25,0x2c,0x5a, + 0x67,0x5c,0x8d,0xb4,0x29,0x2f,0x64,0x0c,0xb7,0xc4,0x8b,0x03,0xb3,0x1b,0x87,0x16,0xeb,0x68,0x6b,0xcf, + 0xaf,0x71,0x40,0x44,0xb8,0x37,0x72,0xf6,0xaa,0x43,0x17,0x5f,0x4e,0xf7,0xf6,0xf8,0xb5,0xc0,0x58,0x62, + 0x5d,0x60,0xd3,0x46,0xb4,0x9e,0x3b,0xc1,0x76,0xf4,0xed,0xd6,0x80,0x30,0x50,0x47,0x9d,0x85,0xd6,0xb8, + 0xdf,0xd3,0x2a,0xba,0x3d,0x5d,0x8d,0x2b,0x39,0x3f,0x64,0xb6,0xc6,0xa9,0x3e,0x4e,0xf4,0xb1,0xc2,0xf7, + 0x9d,0x18,0x51,0x8d,0xbd,0x0d,0x99,0x00,0xe4,0x8c,0x28,0xd0,0x40,0xdb,0x29,0x34,0x26,0x7a,0xa1,0xa3, + 0x2f,0xb2,0x4f,0x4b,0x3e,0xdc,0x53,0xf1,0x8f,0x88,0xc6,0xb4,0xad,0x89,0xf1,0x3c,0x9f,0x97,0x93,0x8f, + 0x1a,0x7b,0xd8,0x8e,0xd1,0x22,0x7a,0x99,0x9b,0x0e,0xd1,0x6c,0xc9,0xdd,0xee,0x3d,0x35,0x93,0x16,0x0a, + 0x24,0xf4,0xa5,0xaa,0xa4,0x1f,0x39,0x76,0xef,0xc9,0xbe,0xd5,0x61,0x2d,0xb4,0x83,0xaf,0x17,0x45,0x22, + 0x3e,0x09,0xd8,0xd9,0xd7,0x04,0xbc,0xe8,0xbb,0x37,0xeb,0xb6,0x34,0x61,0xf6,0xb5,0xf4,0x71,0xde,0xba, + 0x8a,0xfb,0x44,0xa2,0x5b,0x9c,0x8e,0xc0,0x28,0x53,0x99,0xdd,0x39,0x62,0x65,0xd3,0xde,0xb8,0x4e,0x2b, + 0xdc,0x1d,0x92,0x8a,0x33,0xef,0x81,0xaa,0x89,0xec,0x16,0x46,0x90,0x88,0x6f,0x1d,0x12,0xe3,0x7e,0x60, + 0x79,0x42,0x4e,0xd4,0x2f,0x70,0xbf,0xd9,0x0b,0x4b,0xc1,0xb7,0x04,0xfb,0x42,0x03,0xe1,0x58,0xb2,0xb4, + 0x93,0xef,0x7f,0xb4,0x45,0x7c,0xe8,0x62,0x91,0xa0,0x90,0x72,0x48,0x67,0xcc,0xf8,0x3e,0xf3,0x9a,0xdc, + 0x0a,0x3d,0xa0,0x05,0x93,0x6b,0x09,0x57,0x6a,0xc9,0x71,0xa2,0x3d,0x95,0x3a,0x5a,0x59,0xf6,0xe1,0x46, + 0xb9,0xc8,0x4a,0x93,0x71,0xdd,0x66,0x19,0x4e,0x6d,0x84,0x27,0x8d,0xba,0xf9,0x62,0x95,0xbd,0xa4,0x02, + 0xe4,0x47,0x4a,0x0b,0x08,0x91,0x02,0x61,0x22,0x1f,0x2f,0xe2,0x4f,0x13,0x48,0x48,0x80,0x99,0xce,0xa4, + 0x27,0xce,0xa4,0x5f,0x2f,0x93,0x77,0xaa,0x2b,0xc1,0xaf,0x31,0x50,0x84,0x94,0x58,0xb2,0x27,0x24,0x32, + 0xe9,0xc9,0x4b,0xf7,0xb8,0x65,0xe4,0xde,0x87,0xd8,0x95,0x7d,0x9f,0x80,0x7c,0x69,0x31,0xee,0x3b,0x51, + 0x94,0x38,0xe0,0x8a,0x52,0xef,0xdb,0xac,0x70,0xd8,0x89,0x7d,0x71,0xe9,0x63,0x3f,0x8b,0xd8,0xa7,0x30, + 0xd3,0xa8,0x44,0x9f,0xaf,0xdc,0x3a,0x3f,0x13,0x0b,0xb6,0x37,0x2b,0x4c,0x8e,0x9e,0x37,0xa5,0xbd,0x52, + 0x75,0x41,0xe3,0x8b,0x60,0xcb,0x4a,0xd4,0x61,0x5b,0x56,0xdc,0x19,0xa5,0x30,0x98,0x3e,0x9d,0xa0,0x76, + 0x0f,0x0d,0xa4,0x99,0xc9,0xf1,0x3d,0x23,0xbd,0xf2,0x7e,0xb2,0x62,0xdc,0xdd,0xfa,0xca,0x91,0x22,0x42, + 0x03,0x1a,0xd1,0xa0,0xee,0x1e,0x5f,0x44,0x13,0xec,0xf9,0xe5,0xec,0x97,0x2e,0xc0,0xab,0x14,0x66,0xad, + 0xa1,0x97,0x8a,0x2b,0x99,0xb4,0x40,0x54,0x12,0xe2,0xb3,0x15,0x31,0x47,0xad,0x50,0x30,0xe9,0x5d,0xfc, + 0xce,0x4e,0x17,0xb1,0xd9,0x8c,0x42,0x53,0x96,0x45,0x8b,0xa4,0x73,0xb1,0xce,0x5a,0x04,0x65,0xa1,0x09, + 0xca,0xc2,0x12,0x94,0x45,0x87,0xa0,0x2c,0xba,0x04,0x65,0xd1,0x21,0x28,0x8b,0x5e,0x82,0xb2,0xf8,0xcf, + 0x09,0x4a,0x33,0x20,0x4d,0x51,0xca,0x4b,0x1c,0xdc,0xca,0x6e,0xc0,0xfc,0xce,0x8a,0xd8,0xab,0x41,0x3b, + 0x6b,0x14,0x6e,0x71,0xa2,0x56,0x7d,0x61,0x4b,0xca,0xcb,0x26,0x33,0x63,0xea,0xf4,0x8c,0xff,0xec,0x05, + 0x84,0x91,0xc3,0x39,0x07,0x51,0x8e,0x5a,0x17,0x57,0x03,0x3b,0xbb,0xb7,0xb8,0xaf,0x08,0x0e,0x07,0xbe, + 0xfe,0x95,0xba,0xba,0x61,0x4a,0x2c,0xc5,0x7d,0xf6,0x75,0x97,0x53,0xa7,0x83,0x3d,0x02,0x48,0xe8,0xb8, + 0xe9,0x0c,0x39,0xfc,0x1c,0x1b,0xef,0xc9,0xbd,0xcc,0x8f,0x8c,0x4e,0x43,0x74,0x0e,0x93,0x36,0xcb,0x24, + 0xed,0x05,0x6d,0x1c,0x67,0xc3,0xb0,0xdb,0x44,0xbb,0x3b,0xda,0x44,0x96,0x31,0xc8,0x6b,0x9b,0xff,0xd9, + 0x80,0x6e,0x26,0x12,0xe9,0x01,0x87,0xff,0x39,0x94,0x38,0x84,0x6c,0x3f,0xa7,0x61,0xa5,0xe0,0x88,0x3f, + 0xa5,0x09,0x76,0xa8,0x89,0xc4,0x76,0x1b,0xb1,0x61,0xd3,0x3c,0xc1,0x07,0x2d,0xba,0x8e,0x04,0x8e,0x8e, + 0x75,0xd9,0xb1,0x13,0x64,0x77,0xe9,0x9d,0x3b,0x98,0xfc,0x56,0xa5,0xc2,0xe0,0xb6,0x67,0x1a,0x8e,0xa4, + 0x84,0x68,0x09,0xab,0x96,0x32,0xcf,0x25,0x6f,0xc7,0x8d,0xf6,0xbe,0xb0,0xd0,0xe9,0x59,0x6d,0x3f,0x50, + 0xf7,0x1e,0xa8,0x40,0x93,0xec,0xd9,0xf0,0xba,0x4a,0x97,0x4f,0x8d,0xcf,0x81,0x7b,0x85,0xcd,0x84,0xce, + 0xb5,0x6a,0x4f,0xaf,0x88,0x4d,0xe3,0x72,0x5e,0xb0,0xa5,0x79,0x4f,0xa8,0x7f,0x37,0xd7,0x12,0x8c,0xdc, + 0x0f,0xc8,0x95,0x26,0xa5,0xb7,0x00,0xa5,0xe7,0xd9,0xc4,0xbb,0xba,0xc5,0x2f,0xa5,0x62,0xfd,0x25,0xec, + 0x91,0x79,0x37,0xbe,0xae,0xc4,0x57,0x10,0x1a,0x0b,0x53,0xc3,0x1c,0xd0,0xc6,0xed,0x84,0x11,0xf7,0x74, + 0x0b,0xaa,0x27,0xa6,0x95,0x8d,0x4f,0x59,0xd9,0xee,0xe4,0x1a,0x1e,0x10,0x57,0x03,0x97,0x4b,0x21,0x44, + 0xa5,0x4f,0xa2,0xc0,0xfb,0xa3,0x4d,0xb2,0x94,0x8b,0xac,0x0f,0x79,0xad,0x80,0xc9,0x35,0x99,0x13,0x81, + 0x62,0x7c,0xa8,0xa9,0x45,0x76,0x5a,0xfa,0x8f,0xab,0x6d,0xfc,0x5a,0x79,0x75,0x0e,0x23,0xef,0x5a,0xb9, + 0xb0,0x64,0xfb,0xd7,0x9b,0xf3,0xec,0xc8,0xb2,0x48,0x31,0xc7,0xe9,0xed,0xba,0x6e,0x19,0x53,0x57,0xe1, + 0x39,0x69,0xcc,0x63,0x4d,0x8b,0xc6,0x5f,0xd8,0x24,0x28,0x89,0x6d,0x04,0xc0,0x31,0x9c,0xc3,0x15,0x88, + 0xc1,0x2d,0xf2,0xa0,0x92,0x58,0xd3,0xec,0x43,0x1d,0x07,0x67,0x57,0x20,0xf0,0x1f,0x42,0xc3,0x50,0x40, + 0x4a,0xce,0x95,0x17,0xde,0xde,0x8d,0xa7,0x45,0xd8,0x15,0x99,0x48,0x0d,0x11,0xd7,0x31,0xd2,0x66,0xda, + 0x46,0x75,0x02,0xc1,0x61,0x79,0xd7,0x21,0x31,0xe9,0x95,0x1b,0xee,0x85,0x35,0x63,0xee,0x1a,0xd4,0x8a, + 0x27,0xfc,0x58,0xf9,0x9f,0x5a,0xcd,0x21,0x8b,0x06,0x08,0xed,0xf5,0xa8,0xca,0xda,0x8c,0xb9,0xe7,0x4b, + 0xdb,0xd1,0xc9,0xd2,0xb9,0xf1,0x07,0x17,0x39,0x37,0x22,0x7a,0xad,0x0c,0xf5,0x17,0xdf,0xdf,0x9b,0x22, + 0x44,0xa1,0x91,0x7e,0xa9,0xc0,0xdd,0xac,0xee,0x51,0x53,0x9e,0x93,0x6a,0x2b,0xfa,0x85,0xdb,0xdc,0xbf, + 0xac,0x1e,0x1e,0x3c,0xfc,0xc7,0x83,0x0b,0x15,0xfc,0x22,0x8f,0x41,0xd4,0xc9,0xfc,0xda,0x65,0x7e,0xed, + 0x5f,0x10,0xba,0xd4,0xb0,0x00,0xef,0x3d,0x03,0x42,0xd9,0xf5,0xce,0x73,0x37,0xcb,0xee,0xa2,0x58,0xdb, + 0x37,0xd1,0x6a,0x64,0x55,0x05,0x0d,0x32,0x61,0xe5,0x18,0xce,0xbe,0x17,0xbe,0x8f,0xa7,0xd7,0xcf,0xf0, + 0xa8,0x4c,0x8e,0xca,0x3f,0x88,0xd0,0x89,0x60,0xb8,0x5a,0xf7,0x94,0x64,0xe3,0xfb,0x8f,0xd2,0x9d,0x4b, + 0x28,0x81,0x83,0x5f,0x8a,0xe0,0xc1,0x37,0xf7,0xe3,0xfb,0x8f,0xa8,0x14,0x61,0x0d,0xfd,0xae,0x8e,0x4a, + 0x57,0xde,0x79,0xe1,0x0c,0xfe,0xcf,0xe1,0xc1,0x28,0x88,0xbe,0x39,0x60,0x44,0x78,0x65,0x43,0xde,0xcd, + 0xaa,0x2c,0xfb,0x3d,0x0b,0x11,0x69,0x79,0x61,0x13,0x5d,0x54,0x71,0x73,0x11,0xb8,0xba,0x28,0x92,0xb9, + 0x88,0x61,0x94,0xa5,0x14,0x03,0x36,0x9a,0xb9,0xe1,0x1c,0x3a,0x9a,0x15,0xf5,0x4a,0x71,0x09,0xa7,0xae, + 0x55,0x50,0x87,0xaa,0xf3,0x9e,0x9a,0x2f,0xd3,0xda,0xbb,0xf6,0x52,0x9d,0x15,0xc9,0x83,0xfd,0xf0,0x97, + 0xeb,0x88,0xd6,0xe2,0xba,0x48,0xa6,0xbd,0x21,0x4d,0xec,0xba,0x9d,0xf9,0x26,0x05,0xbe,0x6d,0xd3,0x18, + 0x86,0x12,0x3f,0x2c,0x97,0xb0,0x9c,0xae,0x89,0x55,0x42,0x04,0x56,0x98,0xbc,0x1e,0xdf,0x59,0xa5,0x8e, + 0x6d,0x73,0x10,0xb5,0x3f,0xdc,0x73,0x7a,0x47,0xfa,0xfc,0x23,0xf5,0xee,0x97,0x27,0xe1,0xc9,0xe3,0xfd, + 0x7f,0x9f,0xa2,0x87,0x47,0x7f,0xd8,0xc3,0x8f,0x85,0x0a,0xf6,0xef,0x1d,0x06,0xa8,0xf6,0x55,0x79,0x6d, + 0xaa,0xa5,0xba,0x3e,0x6d,0xcb,0x64,0xac,0x02,0x5e,0x3d,0x6e,0xeb,0x8b,0x6c,0x2c,0x17,0xf5,0x81,0xf8, + 0x3a,0x10,0xd5,0xfb,0x1c,0x67,0xbd,0xda,0x37,0x97,0x29,0x06,0xea,0x5e,0x91,0x9c,0x04,0xde,0x9a,0x38, + 0x1e,0x2e,0x30,0x57,0x1e,0x06,0xa7,0xea,0x2d,0x4a,0x89,0xfd,0xe5,0x11,0xc3,0x18,0x65,0x0a,0xb0,0x51, + 0x15,0x3a,0x83,0x8d,0xba,0x21,0x87,0x17,0xe3,0x6e,0x9b,0xfe,0x83,0x0e,0x4f,0x69,0xef,0xda,0x35,0x19, + 0x4f,0x25,0x12,0x31,0xda,0x94,0x27,0xce,0x73,0x77,0x34,0x23,0xdd,0x7f,0x93,0x1b,0x84,0xc4,0xe7,0x7c, + 0x4a,0x9d,0x7a,0x56,0x24,0xb7,0x42,0x4c,0xbc,0xce,0x88,0x70,0x26,0x50,0xa3,0x82,0x17,0x39,0x31,0x9f, + 0x7d,0x37,0xac,0xd6,0xf9,0x1c,0x86,0x19,0x44,0xd7,0x13,0x14,0x4d,0x57,0x3c,0x49,0xc7,0xf9,0x12,0x09, + 0xe6,0xba,0x5f,0xce,0xcc,0x2a,0x88,0x76,0x60,0x5f,0x85,0x57,0x6e,0xf3,0x85,0xdc,0x03,0xcb,0xde,0x1b, + 0x0a,0xd4,0x7d,0x2b,0x21,0xbf,0x28,0x68,0x30,0x53,0xbd,0xeb,0x88,0x1e,0x39,0x55,0xe6,0xf2,0xc7,0xde, + 0x8e,0xb4,0xc2,0xdd,0xc7,0x9f,0x0a,0x2f,0x01,0xae,0x5c,0x92,0xf2,0x43,0xf1,0xb1,0x28,0xaf,0x0b,0x5d, + 0x29,0xd2,0x3a,0xd1,0xf3,0xe3,0x0b,0xd5,0x17,0x1c,0x3f,0x7e,0x5c,0x28,0xef,0x12,0x46,0x7c,0x78,0x36, + 0xcf,0x67,0xd9,0xe4,0x66,0x32,0xcf,0x70,0xef,0x34,0xf5,0xa9,0xd8,0xa8,0x77,0x04,0x91,0x27,0xff,0xf3, + 0xcb,0xf5,0xf0,0xde,0xe9,0x03,0xf5,0x2b,0x64,0x65,0x67,0xbc,0xb7,0xce,0xce,0x88,0x1c,0xbb,0xdd,0xa8, + 0xa7,0x94,0xe4,0xc8,0x54,0x7b,0x85,0x9f,0x78,0xf6,0xa8,0x97,0xfd,0xb9,0x3f,0xfd,0xfc,0xac,0xb8,0xca, + 0xab,0xb2,0xd0,0xf7,0xa1,0xef,0xb6,0x12,0x20,0xc9,0xe3,0x9e,0xaa,0x57,0x45,0xf2,0xb2,0x18,0x0c,0xfa, + 0x73,0xdb,0x00,0xaf,0x9e,0x17,0xc9,0x53,0x2a,0xab,0x5d,0x8a,0x8a,0xf4,0x2a,0xbf,0x00,0xa7,0x30,0x5c, + 0xd1,0x84,0x3d,0xbe,0xe0,0x0b,0xa7,0x5a,0xe5,0xdf,0x14,0xc9,0x73,0x2a,0xff,0x60,0x51,0xe7,0xd9,0x9a, + 0x70,0xcf,0x94,0x8a,0x68,0x9b,0xb0,0xe7,0x45,0xa4,0x5e,0x4b,0xf6,0x73,0xcf,0xa3,0x11,0x25,0x77,0xbe, + 0x1e,0x1e,0x00,0xbb,0xa9,0xf7,0xdb,0xf9,0xd9,0xf4,0x22,0x7b,0xc0,0x99,0x3f,0x6d,0x67,0x12,0x1c,0x54, + 0x74,0xce,0x21,0x9b,0x4e,0x33,0xf3,0x86,0x2b,0x37,0x0a,0xf5,0x44,0x77,0x25,0x5f,0x5e,0xd2,0xde,0x5a, + 0xe7,0xcb,0x74,0x4a,0x7f,0x4a,0xfa,0x53,0xd6,0xae,0x4b,0x70,0x6a,0x2f,0x6b,0xfd,0xc9,0x8f,0x45,0x12, + 0xf2,0x37,0x93,0xcb,0x8a,0x48,0x94,0x5f,0x1e,0xfc,0x32,0xdd,0xf3,0x7a,0x7f,0xbb,0x19,0xf2,0x4d,0xc3, + 0x91,0xfa,0x01,0x4a,0x6c,0x50,0x55,0x4f,0x0b,0x8e,0xb2,0x09,0xac,0xfc,0x82,0xed,0x21,0xfa,0xaf,0x65, + 0x7e,0x41,0xf8,0x44,0xc7,0x68,0x08,0xd4,0x2d,0xae,0x75,0xf6,0x28,0x61,0x54,0x76,0xb0,0x21,0xdc,0xa2, + 0x67,0x79,0x3b,0x26,0x20,0x7a,0xb0,0x6f,0xbf,0x67,0xa8,0x7f,0x51,0x44,0x9e,0xdb,0x39,0xda,0xff,0xbd, + 0x50,0xbf,0x15,0xea,0x7b,0x0f,0x05,0x75,0x68,0x01,0x1a,0xe3,0xef,0x30,0xac,0xf9,0x9d,0xda,0xc3,0xa2, + 0xf6,0xc1,0xd0,0xc5,0xbc,0x3c,0x4f,0xe7,0xa0,0x49,0x19,0x51,0x61,0x5e,0x24,0x09,0xb8,0x1f,0xbc,0xe0, + 0x30,0x2b,0xae,0x86,0x3f,0xfe,0xf0,0xec,0xec,0xd9,0x9b,0x1f,0x23,0xf5,0x3b,0xc1,0xf2,0x77,0x2d,0x10, + 0x39,0x3b,0x43,0xe6,0xd3,0x67,0x3f,0x1e,0xbf,0x7d,0xfb,0xea,0xc3,0xd9,0xb7,0xaf,0xde,0x3e,0x79,0xfc, + 0xea,0xec,0xc5,0xdb,0xb7,0xdf,0x9f,0x9d,0xa9,0x6f,0xfb,0x01,0xf7,0xc3,0xcd,0xe2,0xbc,0xa4,0x46,0x3f, + 0x86,0xf2,0x14,0xf5,0xf7,0x4d,0x5f,0xcf,0x8c,0x72,0x9d,0x9b,0x9a,0xa3,0xd1,0x6f,0x77,0xd4,0x9c,0x71, + 0x71,0xfa,0x89,0xc6,0x1f,0xda,0xb3,0xee,0xf1,0xdf,0x3a,0x98,0x3e,0x2e,0xd9,0xee,0x41,0x18,0x36,0xc4, + 0x76,0xfb,0xf8,0xeb,0xc1,0xf4,0xbb,0x1c,0xb4,0x45,0x57,0x05,0x65,0xa7,0xf2,0xbf,0xa1,0x65,0x6d,0x7d, + 0xe3,0x15,0xc4,0xfa,0xb7,0xca,0x12,0xb2,0x48,0x2b,0x7f,0x21,0x3f,0xdb,0x41,0x95,0x6d,0xb4,0xa9,0xc1, + 0xcf,0x45,0x72,0xa1,0xfe,0x0d,0x86,0xe0,0x5f,0xc5,0xd6,0xe7,0xf9,0x34,0xf9,0x37,0xd1,0x6d,0xfa,0x5a, + 0xc8,0xd5,0x39,0xd4,0xf8,0x9b,0xd1,0xbf,0x8a,0x76,0x1f,0x3f,0xac,0xce,0x7b,0xba,0x49,0xa5,0x75,0xbc, + 0x41,0x6a,0xae,0xf5,0x89,0xb8,0x42,0x76,0xbf,0x5a,0x85,0xf6,0x3b,0xb5,0xf5,0x89,0x5c,0x0a,0xee,0xf7, + 0xcf,0xbb,0x33,0xdc,0x3e,0xa2,0x33,0x4f,0xb3,0xa5,0xc8,0xdb,0x3b,0x35,0x14,0x65,0x43,0x84,0x75,0xff, + 0xbd,0x80,0xae,0xc3,0x56,0xe0,0xca,0x76,0x52,0x59,0xd7,0x4e,0x8a,0x2f,0xbe,0x5f,0xd9,0x5b,0x02,0x6d, + 0xc3,0x6c,0xb8,0xcf,0xd3,0xf9,0xcf,0x02,0x91,0xa1,0xb3,0xaa,0x73,0xe4,0x3b,0xa3,0x2c,0x3d,0x3d,0x70, + 0xe6,0xd1,0x17,0x7a,0xf2,0x75,0x56,0xdd,0xfb,0x3c,0xf5,0x4d,0x9d,0x7c,0x29,0x96,0xbe,0xdb,0x33,0x9b, + 0x2f,0xcc,0xc5,0x9e,0x45,0x6d,0x6e,0x24,0x91,0xaf,0xf4,0xed,0x59,0xa5,0xbc,0xba,0xeb,0xb4,0xfc,0x42, + 0xee,0x5a,0xad,0x76,0xaa,0xb9,0x03,0xd3,0x4f,0x65,0x33,0x46,0x18,0x1c,0x83,0xca,0xd3,0x4d,0xb4,0x0d, + 0x6f,0xcd,0x25,0x9e,0x5b,0x26,0xce,0xad,0x7a,0xf4,0x75,0xa4,0x7e,0x52,0x95,0xc2,0x81,0x43,0xdf,0x43, + 0x6a,0xaf,0x88,0xb5,0x09,0xce,0xb3,0x8c,0xb5,0x2a,0x92,0x68,0x22,0xb0,0xbb,0x62,0x47,0x73,0x6a,0x74, + 0xea,0x25,0xf0,0xad,0xb2,0xe6,0xb5,0x15,0xce,0xbc,0xf6,0xd2,0xf8,0x36,0x3d,0xbf,0x37,0xdb,0xf1,0xd0, + 0x61,0x6a,0xa4,0x9a,0x2a,0xb9,0xe5,0xa5,0x88,0x11,0xce,0x6f,0x96,0x5f,0xac,0xf8,0x46,0xf6,0x18,0x48, + 0x77,0xd4,0xe8,0x90,0x25,0xb0,0xfe,0xed,0xc1,0x9c,0xfd,0xd3,0xb2,0x51,0x7d,0x68,0x9e,0x28,0x9f,0x30, + 0xab,0x1c,0x94,0x52,0xc3,0x5a,0xaf,0xd7,0xb9,0x70,0xc5,0x60,0x63,0xbe,0x9e,0x83,0x23,0xb0,0x08,0x9b, + 0x25,0x17,0xe2,0x38,0x93,0x3a,0x5e,0x75,0x44,0xe5,0xf1,0x26,0x8d,0x86,0xba,0x51,0x55,0x95,0x74,0x2e, + 0x10,0x52,0x79,0xd5,0x41,0x0d,0x15,0x35,0x7e,0x12,0x60,0xcf,0x06,0x88,0xde,0xbd,0xf4,0xec,0x35,0x74, + 0xbc,0x37,0xa4,0x70,0xfc,0x32,0x3c,0x94,0x70,0x6d,0x0b,0x2a,0x38,0x17,0xd4,0x19,0xcc,0x38,0x7a,0xcc, + 0xf9,0xb4,0x31,0x60,0x05,0x33,0x82,0xe3,0x30,0xaf,0x54,0xd6,0x1f,0x0b,0xfc,0x04,0x17,0xa2,0xd9,0xd0, + 0x46,0x56,0x26,0xb1,0xbf,0x3f,0x8a,0xf8,0x2e,0x5f,0x9b,0x65,0x6d,0xd2,0x11,0x14,0x5f,0xbb,0xb9,0x62, + 0xc6,0xe1,0x45,0xa2,0xef,0x21,0x97,0xe0,0x17,0x23,0x1d,0xa1,0x33,0x93,0x08,0x9d,0x32,0xac,0x98,0x1f, + 0xcd,0x60,0x62,0x84,0xa6,0x77,0x01,0x33,0xcd,0xd0,0x90,0xac,0x11,0xc1,0x43,0x8b,0xca,0x73,0xc8,0x63, + 0xca,0x73,0x3e,0xe3,0xcc,0x45,0xe0,0x2a,0x05,0x5e,0xd2,0x98,0x05,0xf6,0x54,0xe0,0x3c,0xc4,0x28,0xdb, + 0x4e,0x2d,0xc1,0x88,0xc7,0xf5,0x30,0x2d,0x48,0xd3,0x40,0x9f,0x12,0x84,0xd5,0x97,0xe5,0x6a,0x3e,0xa5, + 0xbd,0x4a,0x33,0xd8,0x00,0xb6,0x54,0x5d,0x6d,0x23,0x52,0x09,0xaf,0x62,0x70,0x45,0xb6,0xe4,0x35,0xff, + 0x97,0xc6,0x0f,0x57,0x0b,0x76,0x34,0x26,0x6c,0x75,0x1c,0xca,0x45,0xd1,0x34,0xf4,0x40,0x5f,0x36,0xbd, + 0x15,0x19,0x25,0x0c,0x7f,0x6d,0x4b,0x84,0x24,0x06,0xa3,0xa5,0x24,0x93,0x66,0x13,0x77,0xb3,0xbd,0x5b, + 0xa3,0x7b,0x35,0x42,0xda,0xe1,0x17,0xeb,0x72,0x2c,0xda,0x1e,0x84,0xad,0x26,0xda,0x24,0x04,0x84,0xa9, + 0xb2,0xd2,0x97,0xfa,0xb6,0xe6,0x2e,0x43,0x38,0x50,0xa4,0x5e,0xa7,0xf3,0x8f,0x38,0x20,0x46,0xb5,0xb7, + 0x0b,0x38,0xf5,0x8e,0x4b,0xb3,0x7c,0x49,0x79,0x16,0x69,0x19,0x43,0xe3,0xcb,0x18,0xee,0xa1,0xe7,0x08, + 0x08,0x4f,0xc8,0x9a,0x7e,0xa8,0x2f,0xaa,0x55,0xb9,0xdf,0x91,0xbb,0x6e,0xe6,0xea,0xc3,0xfd,0x1f,0xe4, + 0x3a,0x2e,0xb9,0xfd,0x78,0x52,0xe1,0x1a,0xac,0x5e,0x56,0x66,0x34,0x91,0xc0,0x2c,0x77,0x30,0x7d,0x3b, + 0xc5,0xf8,0x57,0x9d,0x12,0x37,0xbe,0xdf,0xab,0xa5,0x40,0x9a,0x71,0x16,0xff,0x2a,0x52,0x1c,0xe2,0xe2, + 0x7a,0xb7,0xd5,0x04,0x1b,0x2a,0x79,0x4a,0x04,0xe0,0xbd,0xbb,0x0b,0xec,0x05,0x75,0x70,0x9a,0xbc,0xa4, + 0x42,0xd4,0x23,0xa6,0x42,0xb7,0x0e,0x25,0xd1,0x15,0x13,0x5e,0xf9,0x91,0xcd,0xa7,0xed,0x5d,0x7a,0x8d, + 0x49,0x6a,0x6c,0x92,0xb5,0x6f,0xdb,0x69,0x23,0x8d,0x6c,0xbd,0xee,0x09,0x9f,0xdf,0x68,0x33,0x46,0x22, + 0x6f,0xaf,0x60,0x53,0x17,0xb5,0xfd,0x45,0x1a,0x23,0xf9,0x84,0xb7,0x08,0x94,0x22,0x70,0x1a,0x49,0x89, + 0x01,0xe9,0x5e,0xf8,0xc7,0x7a,0xc4,0x93,0xf4,0x34,0xe2,0x3b,0x94,0x92,0x74,0x9c,0x1a,0xa7,0xf7,0x3a, + 0xea,0xdc,0x88,0x57,0x47,0x63,0xe2,0xe4,0xea,0x53,0xbb,0x63,0x37,0x18,0xb7,0x84,0x3b,0xa5,0x87,0x45, + 0xd6,0x5c,0x96,0x53,0x7e,0x94,0xeb,0xae,0xf1,0x34,0xd1,0xd1,0x0e,0xfa,0x27,0x66,0x7b,0x38,0x7d,0xd7, + 0x06,0x18,0x82,0x99,0x87,0xa9,0x1a,0x98,0x48,0xe6,0x6c,0xf1,0x60,0xda,0xbf,0x22,0x96,0x26,0xf9,0x55, + 0xd4,0xa5,0x95,0x5a,0x55,0x6a,0xd6,0x55,0xd6,0x76,0x69,0x6e,0x40,0x00,0xe1,0xec,0x29,0x2e,0xb7,0x22, + 0xde,0x17,0xe7,0x1a,0xc7,0x91,0x63,0xf3,0x99,0x1e,0x9a,0x95,0xa8,0x3c,0x1b,0x50,0x1c,0xc4,0xab,0xff, + 0x1e,0x45,0xab,0x16,0x59,0xe8,0xe7,0x85,0x3f,0x20,0xa2,0xb8,0x31,0xe4,0x73,0x15,0x5b,0xb7,0xc2,0xd7, + 0x44,0xbe,0xa7,0x17,0xd9,0xd1,0x65,0x5a,0x14,0xd9,0x7c,0xbd,0xde,0xfd,0x18,0xb6,0x93,0x40,0x77,0x9b, + 0x3b,0x9a,0xda,0x39,0x84,0xd6,0xea,0xa6,0x5a,0xe1,0x0c,0xe6,0x6b,0x9b,0xda,0xb9,0x56,0xce,0x14,0xf6, + 0xf4,0xcf,0x38,0x00,0xfe,0x00,0x67,0x3f,0x67,0x5b,0x72,0x55,0x31,0xea,0x6b,0x57,0xa4,0x16,0x55,0x72, + 0x45,0xd3,0x4c,0x87,0xd1,0xc3,0x91,0x7e,0x38,0x1c,0x82,0x43,0xe5,0x52,0xc9,0x0f,0xaa,0x5d,0xfd,0x02, + 0x45,0xea,0x46,0x57,0x02,0x61,0xcf,0xe6,0x8e,0x49,0x25,0x9c,0xbd,0xc8,0x6b,0x9e,0x4f,0xfd,0xa8,0x2d, + 0x7c,0x2f,0xaa,0x44,0x27,0x98,0x8b,0x80,0x89,0x94,0x9e,0xb7,0x5a,0xb9,0xa8,0xe4,0x56,0xe5,0x1f,0x22, + 0xe2,0x29,0x5b,0x4e,0x8d,0x17,0x26,0x6c,0x32,0x7d,0xb0,0xaa,0x18,0x28,0x6e,0x2a,0x75,0x2e,0x43,0x23, + 0x66,0xec,0xac,0xea,0x08,0x9a,0xb4,0x38,0x75,0x10,0xd8,0x80,0xd4,0x2c,0xbc,0x22,0x0c,0x15,0xfc,0x3f, + 0xb6,0x5a,0xcf,0x00,0x2e,0x56,0x76,0x15,0x67,0x91,0x57,0xa8,0x42,0xb8,0x5b,0x29,0x54,0xdc,0x55,0xc8, + 0xd8,0xda,0xb1,0x3a,0x3e,0x4b,0xaa,0x56,0x39,0x05,0xc3,0x08,0x08,0x36,0xb7,0xe2,0x06,0x36,0xcc,0x7e, + 0x56,0x72,0x1b,0xd5,0x31,0x43,0xea,0x47,0xfe,0x7b,0xc4,0xc1,0xa4,0x3e,0x31,0xd4,0x3e,0xe6,0xbf,0x1f, + 0x70,0x76,0xdc,0xc3,0x9f,0xb7,0x7d,0x74,0xb1,0x39,0xe7,0x16,0x88,0xff,0xce,0x9e,0x11,0x67,0x8c,0xad, + 0x88,0x16,0x93,0x73,0xcc,0x25,0x18,0x9b,0x61,0x4e,0xae,0xc6,0xa1,0x3e,0x13,0xe9,0x50,0xdc,0xdd,0xad, + 0xf8,0x41,0x0e,0x1b,0xc8,0x1a,0x38,0x09,0x0f,0x92,0x84,0x78,0x68,0x9c,0x84,0x07,0xcd,0xd0,0x10,0xe5, + 0xc7,0x49,0x78,0xd0,0x07,0x12,0x57,0xe6,0xea,0x70,0x9f,0x7a,0x5f,0x68,0x2a,0x73,0x72,0x6e,0xa8,0x74, + 0x62,0x93,0xf6,0xf6,0xee,0xe9,0x86,0x24,0xd6,0x9b,0xa5,0x5e,0xa7,0x39,0x9d,0xfb,0xae,0x1e,0x7b,0x8c, + 0x83,0x95,0xd2,0xc4,0x7c,0x76,0xfd,0xd4,0x7f,0xa7,0xcc,0x97,0x84,0xa8,0x34,0x40,0x78,0x45,0xba,0xa9, + 0x4e,0x83,0x00,0x71,0x7b,0x4f,0x04,0x85,0x66,0xcc,0xe5,0x88,0x06,0x69,0x30,0x96,0x38,0xf4,0x5f,0x3b, + 0x3e,0x3f,0xbb,0xef,0x0a,0x11,0x5b,0x18,0x30,0x87,0xc3,0x9a,0x0e,0xc4,0x32,0x0c,0xdc,0x15,0x97,0x3d, + 0x07,0x66,0xcf,0x21,0xdc,0x42,0x9f,0xa3,0x2c,0xd1,0x67,0xb1,0xbb,0x7b,0x6a,0xc3,0xae,0x57,0x5e,0x7f, + 0x70,0xff,0x5f,0x5f,0xef,0x22,0x38,0xee,0x2b,0x8f,0x12,0xb2,0x53,0x69,0x4c,0xcc,0xcc,0x67,0x08,0x8f, + 0xf3,0xd6,0x3f,0xe9,0x3b,0xf4,0xb9,0x7c,0xaa,0x3c,0xc6,0xf1,0x9f,0x3a,0xd6,0x90,0x4d,0x8a,0x3c,0x96, + 0x4e,0x2e,0xab,0x66,0x28,0x4d,0x34,0x80,0x72,0x58,0xbf,0x26,0xf1,0xfa,0xa9,0xaf,0xa2,0x53,0x56,0xb4, + 0x62,0x8c,0xc1,0x0d,0x04,0x45,0xcd,0x65,0x55,0x5e,0xd3,0x01,0xf2,0x13,0x6b,0xb5,0xef,0xcb,0x67,0x3b, + 0x34,0x75,0x3b,0x1a,0xa6,0x77,0x10,0x31,0xb7,0xbd,0x9c,0xb0,0x48,0x89,0x36,0x84,0x8f,0xa8,0xf2,0x9b, + 0x5b,0x0b,0x97,0x83,0xc1,0xef,0x61,0xab,0x8b,0xe8,0x7f,0xb9,0x0c,0xf5,0xf4,0x40,0x02,0x50,0xac,0x96, + 0x80,0x25,0x17,0xad,0x8f,0x8e,0x91,0xd6,0x9c,0x08,0x87,0xdc,0xe3,0xb0,0x93,0x11,0x14,0x8f,0xda,0xc0, + 0x06,0x99,0x45,0x08,0x93,0xb8,0xb0,0x93,0x2e,0x51,0xc9,0x5a,0xd0,0x6b,0x58,0x7d,0x1f,0x84,0xed,0xf7, + 0x46,0x4a,0x20,0x1b,0x37,0xea,0x74,0xc9,0xeb,0xf7,0x67,0xd8,0x73,0x6c,0x19,0x03,0x61,0x19,0xf8,0x02, + 0xdd,0x6f,0x9b,0x09,0x16,0xa3,0xaf,0xff,0x34,0x2e,0x5c,0xd6,0xe0,0xa4,0x0e,0x5a,0x3c,0xa0,0x5d,0x33, + 0x5c,0x77,0x47,0xfe,0xee,0x6b,0xd7,0xb4,0xb5,0x0b,0x3b,0x09,0x22,0x7d,0x09,0x23,0xe5,0x2a,0xac,0xbd, + 0x9d,0xee,0x4f,0x54,0x7b,0xcf,0x17,0xed,0x49,0x34,0x11,0x30,0x3b,0x33,0x24,0x12,0x87,0x2d,0xe9,0x0c, + 0x6f,0x02,0x0f,0xc9,0xec,0xea,0xbd,0x00,0x2c,0x25,0xe9,0xd5,0x8a,0x0a,0xc7,0x77,0x2c,0xb6,0x8e,0x72, + 0x9d,0x24,0x47,0xb8,0x90,0x9a,0xe1,0x96,0x9f,0x80,0xba,0x1e,0xb7,0x4c,0xff,0x8e,0x2b,0x6b,0x8d,0x38, + 0x2a,0xbe,0xf9,0x50,0x0d,0x06,0xc7,0x15,0x5f,0xc0,0x36,0xfd,0x86,0x6b,0x8a,0x0a,0x5a,0x10,0x2a,0xa4, + 0x63,0x5b,0x17,0x7b,0x87,0xea,0x00,0x32,0x1c,0x3e,0xe8,0x8e,0xcd,0x3d,0x99,0xd1,0xe8,0x13,0x76,0x39, + 0x4e,0x86,0x03,0xf5,0x22,0x44,0x8c,0x44,0x60,0x01,0x91,0xd5,0xb4,0xc6,0x4b,0xdd,0xf6,0x07,0x0b,0x63, + 0x75,0x87,0x59,0x4d,0x0c,0x15,0xb7,0xed,0xd9,0xd6,0x68,0x57,0xcb,0xd1,0x18,0x49,0xac,0xd7,0x39,0x5f, + 0x84,0x67,0xb7,0x4e,0x0b,0x5a,0xc4,0x07,0xd4,0xd4,0xda,0xe2,0xaf,0x64,0xcb,0x56,0x7a,0xd3,0x4d,0xce, + 0x65,0x7f,0xeb,0xed,0xcf,0xb6,0xae,0x4e,0x84,0xfa,0x53,0x98,0x19,0x26,0x4c,0xdd,0x37,0x96,0x1a,0x7f, + 0x6a,0x67,0xcb,0xc5,0xeb,0x77,0xb6,0xb0,0xe9,0x4c,0x47,0x86,0x2e,0xf6,0x01,0x80,0x87,0x10,0x79,0x22, + 0xfc,0x13,0x07,0x62,0x8c,0x56,0x2d,0xdb,0x22,0xb4,0x3f,0xda,0x61,0xfe,0xd6,0xd2,0x9f,0x87,0xdd,0xa5, + 0x6a,0x08,0xee,0xa7,0xe5,0xf5,0x67,0xd7,0x4b,0x0f,0x0e,0x61,0x84,0x9e,0x64,0x44,0xf3,0x3d,0x35,0xba, + 0xa3,0xf5,0x7a,0x15,0xda,0x4c,0x73,0xc4,0x0b,0xf3,0x3a,0xfa,0x4b,0x9d,0xeb,0xec,0xed,0x51,0xeb,0x20, + 0x3e,0xdc,0x08,0xcf,0xf6,0x8c,0x08,0x93,0xac,0x58,0x2d,0x32,0x23,0xcb,0x51,0x1d,0xd9,0x0e,0x14,0x36, + 0xf1,0x85,0xaa,0xf1,0x77,0xa3,0xde,0x51,0x71,0xec,0x30,0x30,0xe6,0xa3,0x4f,0x59,0xf8,0xd8,0x93,0xb6, + 0x0a,0x97,0xff,0x2b,0x95,0x40,0x50,0x01,0x9f,0x67,0xd6,0x14,0x0d,0x1f,0x7f,0xfd,0x31,0x03,0x7a,0x82, + 0x02,0xe4,0xb5,0x9d,0x92,0xa8,0x2f,0x6c,0x40,0xd2,0x6a,0xc0,0x5d,0xf6,0x9d,0xdc,0x9e,0xb1,0x9c,0x47, + 0x4a,0x63,0x04,0xda,0x97,0xf9,0xba,0x52,0xda,0x61,0xff,0xc7,0x82,0x55,0xd2,0xe6,0xf5,0xd9,0x7c,0x11, + 0x57,0xc2,0xb1,0x11,0xa9,0x99,0xcd,0xf0,0x9e,0xcb,0xfb,0x86,0xdd,0x45,0xd9,0xc1,0xbc,0x6d,0xdf,0xe3, + 0x62,0x84,0xc8,0xc5,0x35,0xda,0xb0,0x27,0x99,0xe8,0x07,0x55,0x77,0x6d,0x79,0x28,0xab,0x93,0x42,0x98, + 0x11,0x92,0xaa,0x6d,0xff,0x7d,0x44,0x34,0x20,0xd6,0x0d,0x7e,0x76,0xd1,0xf0,0x1e,0x2b,0x22,0x43,0x90, + 0xaa,0x19,0x75,0x4c,0x0b,0xea,0xbc,0x0b,0x9b,0x74,0xff,0x10,0x1a,0xe0,0xf1,0xdc,0xe2,0x02,0x44,0x10, + 0xfd,0x15,0x40,0x99,0x71,0x28,0x87,0xb0,0x54,0x25,0x6d,0x22,0x65,0xde,0xe3,0x36,0xb3,0x65,0x5c,0xf2, + 0xb6,0x02,0x2d,0xec,0xf6,0x91,0xa6,0x52,0xff,0xee,0x6e,0x98,0x63,0xed,0x4c,0xe4,0x84,0xe1,0x99,0x0c, + 0xfd,0x48,0x8b,0x6b,0xd7,0x6b,0x13,0x9e,0xd5,0x99,0xf6,0x71,0x79,0xef,0x9d,0x6f,0x5a,0xd0,0x76,0x91, + 0xae,0x1e,0x6f,0x95,0x92,0x8a,0x28,0x5d,0x09,0xcf,0xc5,0x8f,0x67,0xfa,0x52,0xee,0xd0,0x3c,0x1a,0x71, + 0x2a,0x5f,0xf4,0x74,0x57,0x57,0x92,0x1c,0x99,0x72,0x31,0x87,0xb9,0xe1,0xa8,0x7d,0xcd,0xd9,0x15,0xee, + 0xd9,0xb8,0x37,0x37,0xe6,0x4b,0xb8,0x45,0x80,0x92,0x1a,0x18,0xb7,0xd8,0x4a,0xc5,0xe4,0xf2,0x36,0xad, + 0x86,0x2d,0x21,0x95,0x31,0x0f,0x16,0xe6,0x1d,0x41,0x71,0x50,0x8e,0x5d,0x4e,0xbc,0x21,0x51,0x1a,0x54, + 0x2c,0x08,0x8f,0x8d,0x48,0x88,0xa3,0xc9,0x23,0xbb,0x75,0x27,0xee,0x22,0xec,0xfa,0x64,0x42,0x3c,0x3f, + 0xee,0x68,0x7f,0x13,0xce,0x55,0xb7,0x6d,0xb9,0xf1,0x6f,0xbb,0xfd,0x83,0xad,0x92,0x4f,0x59,0x7c,0xbe, + 0x71,0xd6,0xcd,0xab,0x64,0x7b,0x82,0x5d,0xdc,0x8a,0xcf,0xe4,0xe1,0xc2,0x22,0xb9,0xc7,0x72,0x15,0x6d, + 0x4a,0x9e,0xf8,0x7b,0xb0,0x6c,0xa0,0x89,0xc4,0xbd,0x8b,0x5e,0x28,0x6f,0xca,0xa0,0x69,0x98,0x68,0x45, + 0x39,0x7b,0xd1,0x37,0x3d,0xdb,0xb6,0x67,0x2b,0x2b,0x2f,0xcc,0x06,0x3d,0xdb,0x55,0x00,0xc4,0xb9,0x08, + 0x1e,0x1b,0x25,0xa1,0xc3,0x7a,0x8f,0x6e,0x73,0xff,0x5e,0xd1,0x57,0xff,0xa8,0x68,0x45,0x6b,0x0b,0xfd, + 0x57,0xcc,0x1e,0x47,0x67,0xb0,0x0a,0x7f,0x36,0x70,0x6b,0x6f,0x29,0xbe,0x58,0xda,0x7d,0x33,0xe6,0x7b, + 0x9c,0x2a,0x5c,0x1b,0x6d,0xf1,0x29,0x31,0x7a,0x72,0xa4,0x57,0x51,0x14,0xd7,0xa8,0x70,0xf7,0x40,0x07, + 0xa3,0xaa,0x36,0x4a,0x5b,0x06,0xdc,0xd1,0xf5,0x6e,0x77,0x9b,0x16,0xf6,0x63,0xb7,0xd1,0x76,0x7f,0xac, + 0xbc,0x52,0xac,0x5e,0x05,0xb5,0x86,0x85,0x74,0x53,0x2c,0x1f,0x5e,0x16,0x8e,0xe7,0x4a,0x11,0x23,0x96, + 0xe9,0x3d,0xdb,0xe3,0x08,0x01,0x35,0xbd,0xfe,0x1f,0x8c,0x3c,0x99,0xe6,0xa8,0x22,0xc6,0xe5,0x5e,0xf7, + 0xce,0x76,0x48,0x36,0x71,0x03,0xa8,0xcd,0xc0,0x4d,0x8f,0xa3,0x09,0x7a,0xd0,0xb2,0x70,0x90,0xb0,0xfb, + 0x34,0xfa,0xb8,0xf1,0xae,0x69,0x06,0xf2,0x79,0x5a,0xb5,0x44,0x95,0xbf,0xd2,0x9e,0x7d,0x59,0x25,0x87, + 0xea,0x55,0x95,0x3c,0x54,0xcf,0xd1,0xf0,0x3b,0x5f,0x7b,0xc7,0xb7,0x72,0x6f,0xcb,0x7e,0xcf,0x56,0xc4, + 0x5a,0x3e,0xaf,0x8c,0x06,0x8e,0xa6,0xea,0xc7,0x15,0x0f,0x53,0x22,0xc6,0x79,0xc8,0x7f,0xdc,0x87,0xe4, + 0x1c,0xac,0x77,0x24,0x57,0x0c,0x44,0x46,0x3c,0x63,0xcd,0x3b,0x39,0x0c,0x89,0x8f,0x91,0x46,0x26,0x62, + 0x04,0xa5,0xcb,0x83,0x2a,0xba,0x28,0xcb,0x26,0xd0,0x51,0xe2,0x3e,0xa7,0x17,0xe4,0xc8,0x09,0x83,0x64, + 0x79,0xd2,0x62,0xb4,0x9e,0xeb,0x1f,0xbd,0x6d,0x91,0xe4,0xad,0x2d,0xb2,0xb5,0x4b,0x73,0x6f,0xd7,0x14, + 0xdb,0xe8,0xcf,0xee,0x22,0x64,0xda,0x76,0x8e,0xd3,0x0b,0xb9,0xd3,0x57,0x35,0xfa,0xd8,0xe2,0x50,0xb3, + 0xfa,0x28,0x33,0x69,0x6a,0xcb,0x51,0x30,0xd9,0x72,0xcc,0x89,0x84,0x66,0x25,0xf4,0x24,0xd4,0xf6,0x3d, + 0x77,0x59,0xfb,0xb3,0x2c,0x34,0xfa,0x38,0x33,0xb9,0xb4,0xc1,0x38,0x94,0xb7,0x88,0x2c,0x64,0x15,0xa5, + 0xad,0x77,0x55,0xf9,0x49,0x04,0x03,0x3a,0xb9,0xce,0xe6,0x33,0x79,0xef,0xdb,0x3a,0xf6,0xe2,0xcf,0xc2, + 0x2e,0x06,0x53,0xf0,0x08,0x85,0x69,0x43,0x01,0xe9,0x70,0xa1,0x85,0xc3,0x71,0x26,0x67,0x30,0xa0,0x44, + 0x13,0xef,0x11,0xb6,0xb0,0xe6,0xa5,0xf0,0xa0,0xdf,0xa8,0x6b,0x33,0x93,0xcb,0x57,0x32,0xdd,0xab,0xca, + 0x92,0x9e,0xc6,0x85,0x3c,0x11,0x31,0x91,0xb9,0x6f,0x58,0xdb,0x29,0x17,0x3e,0x43,0xec,0xe3,0xc9,0x6e, + 0x98,0xc6,0xc8,0xbc,0x8d,0x67,0x12,0xba,0x9b,0xf6,0x90,0x4b,0x39,0x24,0xa5,0xdf,0x2d,0x52,0xb0,0x29, + 0x6d,0xe2,0x11,0x84,0x9d,0x96,0x04,0xf9,0xf3,0x45,0x25,0xf5,0x7d,0x47,0x7d,0x96,0x3c,0x94,0x4b,0x4c, + 0x21,0xac,0x6a,0xd8,0x5e,0x22,0xd1,0xd1,0xd0,0x9a,0xcf,0x1e,0x19,0x98,0x3c,0xb9,0xa7,0xeb,0x8e,0x06, + 0xe5,0xcc,0x36,0xe3,0x13,0x78,0x39,0xae,0xb2,0xac,0x76,0x7a,0xe1,0xce,0x12,0xda,0x83,0xbe,0xbd,0xe1, + 0x68,0x07,0x16,0x58,0x29,0x13,0x81,0xd3,0x3f,0x80,0x9a,0x2e,0xa8,0xcb,0x85,0x8f,0x3e,0x89,0x91,0xf0, + 0xd1,0x7e,0x36,0x69,0x99,0x7b,0x2b,0xff,0xba,0xeb,0xb7,0xde,0x45,0xb0,0x88,0x10,0xb1,0xe1,0xb5,0xf4, + 0x6d,0x10,0xff,0xec,0xb7,0x07,0x5a,0x13,0x92,0x4b,0x8f,0x39,0x64,0x3e,0x54,0x2f,0x81,0xd0,0x1e,0x01, + 0x44,0x79,0xb9,0x47,0x72,0x48,0xc0,0x2d,0x29,0x61,0xf7,0x6f,0xa0,0x9a,0xad,0xe9,0x76,0xa5,0xcd,0x6c, + 0x4f,0x64,0x5b,0xa9,0xb6,0x39,0x5b,0x4f,0x50,0x96,0xe4,0x32,0xf3,0x89,0x2b,0x91,0xf3,0x43,0xf9,0x00, + 0x1f,0x97,0x1e,0x5a,0x46,0xf9,0x28,0xba,0xe9,0x89,0x51,0x4e,0xc7,0xcd,0x3d,0x26,0x08,0x1a,0x09,0x90, + 0xab,0x7a,0x08,0x92,0xbb,0x80,0xc2,0xf0,0x33,0x70,0xb4,0xef,0x42,0xc0,0xa8,0x31,0x1e,0x2f,0x9f,0x47, + 0xdb,0x0e,0x11,0x32,0x12,0xa9,0x2c,0xc9,0xa5,0xe3,0xf5,0xf7,0x50,0x5d,0xd8,0x90,0x25,0x82,0x0e,0x99, + 0x0d,0xbe,0xd5,0xe5,0x52,0xbb,0xae,0xd9,0xa6,0x4b,0xdc,0x4b,0xc5,0x7b,0xbf,0x34,0xe1,0x77,0xdf,0xc0, + 0x70,0x9a,0xc6,0x4d,0x73,0x77,0x2f,0xe4,0x78,0x22,0x91,0x62,0xcd,0x0d,0x61,0xb3,0x55,0xc6,0xaa,0x46, + 0xee,0x47,0x00,0x52,0xbb,0x13,0x47,0x20,0x4a,0xe1,0x6e,0xdf,0x33,0x53,0xec,0xfc,0xa4,0x49,0x4b,0x98, 0x65,0x8b,0x46,0xa6,0x3b,0x07,0xdd,0xd1,0xbb,0x80,0x38,0x52,0x3b,0xdf,0xe6,0x22,0x82,0x0b,0xac,0xca, - 0xf8,0x3c,0x5e,0x86,0xa2,0xef,0x93,0x3b,0x9f,0x4d,0xbd,0x68,0x02,0x50,0x39,0xfe,0x1c,0x36,0x15,0xb8, - 0x2d,0x43,0xa4,0x9d,0xb2,0xd6,0xae,0x57,0x8c,0xda,0xee,0xa1,0x67,0x1e,0x9c,0x69,0xf6,0xbd,0x25,0x18, + 0xf8,0x22,0x5e,0x86,0xa2,0xef,0x93,0x3b,0x9f,0x4d,0xbd,0x68,0x02,0x50,0x39,0xfe,0x1c,0x36,0x15,0xb8, + 0x2d,0x43,0xa4,0x9d,0xb1,0xd6,0xae,0x57,0x8c,0xda,0xee,0xa1,0x67,0x1e,0x9c,0x69,0xf6,0xbd,0x25,0x18, 0xd0,0x79,0x2c,0x1f,0x50,0x6c,0xc4,0x19,0xe2,0x9a,0xad,0xdb,0x8d,0x5c,0xd2,0x43,0xe7,0x06,0xdf,0xf1, 0x0c,0xb9,0x1a,0x5f,0xca,0xe6,0x04,0x2d,0x6d,0x78,0xe4,0xf5,0xee,0x90,0xc5,0x79,0xe2,0x43,0xb8,0x1e, - 0xaa,0xb2,0x11,0x19,0x47,0xb9,0x15,0x8d,0xa5,0x49,0x71,0x9c,0x9f,0xc0,0xd5,0x6c,0x46,0x2b,0x88,0x3b, - 0x5a,0xaf,0xf8,0xa6,0x56,0xbd,0x7c,0xe8,0x56,0x80,0x7b,0xb2,0x3f,0x0a,0x05,0x03,0x0e,0x2c,0xfe,0x18, - 0x9a,0x69,0x20,0xf8,0xc2,0x7e,0x6d,0xac,0x8a,0xec,0x2e,0x50,0x3d,0x35,0x05,0x7e,0x32,0xf0,0xde,0x87, + 0xaa,0xb2,0x11,0x19,0x47,0xb9,0x15,0x8d,0xa5,0x49,0x71,0x92,0x9f,0xc2,0xd5,0x6c,0x46,0x2b,0x88,0x3b, + 0x5a,0xaf,0xf9,0xa6,0x56,0xbd,0x7c,0xe8,0x56,0x80,0x7b,0xb2,0x3f,0x08,0x05,0x03,0x0e,0x2c,0xfe,0x10, + 0x9a,0x69,0x20,0xf8,0xc2,0x7e,0x6d,0xac,0x8a,0xec,0x2e,0x50,0x3d,0x33,0x05,0x7e,0x32,0xf0,0xde,0x87, 0x77,0xab,0xe4,0x7b,0x84,0x4a,0x6f,0x45,0xdf,0x68,0x0c,0x77,0xd5,0xe0,0xee,0x98,0xde,0x99,0x2f,0xc7, - 0x65,0x5c,0x42,0xb6,0x31,0x82,0xe4,0x08,0xe3,0x61,0x01,0xf8,0x3b,0xf8,0x6d,0xd2,0x96,0x38,0x57,0xe7, + 0x65,0x5c,0x42,0xb6,0x31,0x82,0xe4,0x08,0xe3,0x61,0x01,0xf8,0x5b,0xf8,0x6d,0xd2,0x96,0xb8,0x50,0x17, 0xc4,0xa6,0x13,0x11,0x9b,0x6b,0xd0,0x9c,0x61,0x6c,0x39,0xb3,0x7f,0x0c,0x0a,0xa6,0x6f,0x11,0xfb,0x78, 0x51,0xff,0x60,0xd3,0xc2,0x0f,0xbb,0xa2,0xe0,0xbc,0xc3,0x3d,0xc2,0xeb,0x5e,0xc5,0x50,0xb6,0x1d,0xc6, 0xa3,0xf2,0xef,0x82,0x83,0x7b,0x5c,0xe5,0xfb,0xc4,0x2d,0x85,0x8f,0xa8,0xf8,0xa6,0x48,0xe6,0x5e,0x4d, - 0x8a,0xe9,0x9a,0x98,0x05,0xf6,0xe1,0x8e,0x2d,0x18,0xd5,0x3a,0x44,0x1d,0x0f,0xec,0x54,0xbf,0x4e,0xfb, + 0x8a,0xe9,0x9a,0x98,0x05,0xf6,0xe1,0x8e,0x2d,0x18,0xd5,0x3a,0x44,0x1d,0x0f,0xec,0x4c,0xbf,0x4e,0xfb, 0x41,0xb5,0x11,0x88,0x04,0x94,0x6d,0x23,0x50,0x63,0x00,0xac,0x29,0x11,0xdb,0x02,0x5c,0x94,0x24,0x45, 0x38,0xf0,0x6e,0x2e,0x9d,0x13,0xdb,0x3d,0xc4,0x6d,0x42,0x9f,0xb3,0x81,0x61,0x40,0xda,0x8c,0x6c,0xdc, 0xa7,0xe2,0xb3,0x85,0x19,0xbc,0xfb,0xad,0x64,0x6e,0x42,0x8f,0x54,0xa6,0xe3,0x43,0x40,0x97,0xf6,0xc7, - 0x9f,0x29,0xac,0xd1,0x54,0x11,0xb5,0xac,0xe5,0xee,0xb1,0x61,0x5c,0x3b,0x49,0x2e,0x72,0x4a,0x9e,0xb7, + 0x9f,0x29,0xac,0xd1,0x54,0x11,0xb5,0xac,0xe5,0xee,0xb1,0x61,0x5c,0x3b,0x49,0x2e,0x72,0x4a,0x9e,0xb5, 0x53,0xfb,0x14,0xe7,0x72,0xe7,0x91,0x8b,0xe4,0x82,0xc5,0x15,0x9a,0x50,0xee,0x97,0xc6,0x75,0x10,0x72, 0x8d,0xbb,0x28,0xa2,0x0e,0x4c,0xc8,0x55,0x81,0x5d,0xbf,0xa8,0xf5,0x9d,0xcb,0x9d,0x02,0xb7,0x71,0x32, - 0x41,0x65,0xfc,0x21,0x7c,0xb3,0x99,0xca,0x4a,0xdd,0x38,0x84,0x72,0xf8,0xbe,0x2f,0x40,0x59,0xf2,0xe0, + 0x41,0x65,0xfc,0x21,0x7c,0xb3,0x99,0xca,0x4a,0xdd,0x38,0x84,0x72,0xf8,0xae,0x2f,0x40,0x59,0xf2,0xe0, 0x7f,0x70,0x09,0x7b,0xfc,0x60,0xd4,0x1a,0x4e,0xd9,0x32,0x46,0x97,0x91,0x74,0xed,0x44,0xa2,0xb6,0xcd, - 0x47,0xd6,0xb5,0xf9,0xd0,0xd0,0x41,0x15,0xc0,0x17,0x58,0x8b,0x67,0x04,0x66,0x34,0xed,0x75,0x9c,0x9d, - 0x18,0xad,0x81,0x4b,0xf1,0x82,0x40,0x15,0xd8,0x90,0x5a,0xdb,0x04,0x4e,0x8e,0x0b,0xb6,0x09,0x33,0xab, + 0x47,0xd6,0xb5,0xf9,0xd0,0xd0,0x41,0x15,0xc0,0x17,0x58,0x8b,0x67,0x04,0x66,0x34,0xed,0x75,0x92,0x9d, + 0x1a,0xad,0x81,0x4b,0xf1,0x82,0x40,0x15,0xd8,0x90,0x5a,0xdb,0x04,0x4e,0x8e,0x0b,0xb6,0x09,0x33,0xab, 0x98,0x64,0xf8,0x68,0xdb,0x3a,0xde,0x2b,0x3b,0x42,0xb1,0xc6,0x33,0xce,0x94,0x19,0xba,0x57,0xce,0x66, 0x3c,0x40,0x65,0xac,0x84,0x2a,0xef,0xea,0xb4,0x8d,0xde,0xd9,0x54,0xb3,0xe7,0xbd,0x48,0x94,0xb5,0xaa, 0x64,0x60,0xf8,0xb0,0xea,0x36,0x3a,0x9b,0x75,0xda,0x04,0x2b,0xda,0x35,0x5a,0x8a,0x5a,0x50,0xfd,0x19, @@ -1153,1138 +1153,1150 @@ const uint8_t EmbeddedBundleJS[] PROGMEM = { 0x28,0x41,0x48,0x9d,0xa9,0x6f,0x5f,0x5a,0x61,0x5a,0x76,0x26,0x1d,0xdd,0x95,0x92,0x8b,0x03,0x74,0xb1, 0xc6,0xc2,0x43,0xe9,0x5f,0x72,0x99,0xe2,0xa4,0xa1,0xec,0xb0,0x4c,0x72,0x58,0x68,0xc0,0x6e,0x01,0xd7, 0x17,0xcd,0x8a,0xce,0x55,0x97,0xe9,0xd6,0x55,0x97,0x3d,0x2b,0x9a,0x2d,0x3a,0xfc,0xaf,0x93,0xd7,0x33, - 0xc7,0xd3,0x1e,0x4b,0x01,0x07,0x32,0x73,0xe8,0x7d,0x73,0x38,0x06,0x44,0xc5,0x85,0xc7,0xd7,0x5f,0x84, + 0xc7,0xd3,0x1e,0x4b,0x01,0x07,0x32,0x73,0xe8,0x7d,0x73,0x38,0x06,0x44,0xc5,0x85,0xc7,0xd7,0x5f,0x86, 0x76,0x5d,0xa8,0x75,0x02,0xe2,0x03,0xf6,0x78,0x35,0x18,0xfa,0x51,0xc9,0x58,0x9a,0x6f,0xe9,0x22,0x14, - 0x6d,0xec,0xc8,0x80,0x9d,0xad,0x83,0xcf,0x4f,0x21,0x91,0x7d,0xea,0x3e,0xb7,0xbb,0x73,0x21,0xee,0x03, - 0x2c,0xdd,0x87,0x93,0xb4,0xc8,0xf1,0x9d,0x92,0x4d,0x36,0x61,0xf8,0xa6,0x4a,0xe8,0xd7,0xe7,0xeb,0xbb, + 0x6d,0xec,0xc8,0x80,0x9d,0xad,0x83,0xcf,0x4f,0x21,0x91,0x7d,0xea,0x3e,0xb7,0xbb,0x73,0x29,0xee,0x03, + 0x2c,0xdd,0x87,0x93,0xb4,0xc8,0xf1,0x9d,0x92,0x4d,0x36,0x61,0xf8,0xba,0x4a,0xe8,0xd7,0xe7,0xeb,0xbb, 0xaa,0x1b,0x21,0x20,0x34,0x33,0xaf,0x59,0x9e,0xc1,0xa0,0x43,0xe1,0x6a,0xff,0x0b,0x13,0xe7,0x50,0x16, - 0x3c,0x9b,0x2b,0xad,0x8f,0x16,0x7e,0x83,0x06,0x75,0x55,0x8d,0xae,0x2a,0x9f,0x85,0x14,0x9e,0x82,0xd8, - 0x88,0xb1,0xf9,0xc6,0x98,0xc4,0xb1,0x24,0xf4,0xf4,0x94,0x76,0x41,0x16,0x69,0x3d,0x70,0x4f,0xae,0x6d, + 0x3c,0x9b,0x2b,0xad,0x8f,0x16,0x7e,0x83,0x06,0x75,0x5d,0x8d,0xae,0x2b,0x9f,0x85,0x14,0x9e,0x82,0xd8, + 0x88,0xb1,0xf9,0xc6,0x98,0xc4,0xb1,0x24,0xf4,0xec,0x8c,0x76,0x41,0x16,0x69,0x3d,0x70,0x4f,0xae,0x6d, 0x89,0x63,0x72,0x1c,0x76,0x4e,0x09,0x8f,0xb7,0xef,0x64,0x08,0x77,0xdf,0x3d,0x55,0x7c,0xc1,0x40,0x5f, - 0x79,0x13,0x43,0xbb,0x4a,0x72,0xbe,0x1d,0x91,0xf8,0xf5,0xd3,0xcb,0x55,0x76,0x7a,0x9a,0xb8,0x1d,0x82, + 0x79,0x13,0x43,0xbb,0x4a,0x72,0xbe,0x1d,0x91,0xf8,0xf5,0xb3,0xab,0x55,0x76,0x76,0x96,0xb8,0x1d,0x82, 0xde,0x18,0x0c,0x41,0x8f,0xb6,0x84,0xc7,0x4f,0xdf,0xd3,0x72,0x52,0x79,0x91,0x36,0xcd,0x9b,0x4c,0x88, - 0x56,0x0d,0xe9,0x3c,0x27,0x58,0x6d,0xa5,0xda,0xe9,0xb8,0xc7,0xe7,0xdd,0x1b,0x5f,0xcb,0xe1,0x4b,0xfb, + 0x56,0x0d,0xe9,0x3c,0x27,0x58,0x6d,0xa5,0xda,0xe9,0xb8,0xc7,0xe7,0xdd,0x6b,0x5f,0xcb,0xe1,0x4b,0xfb, 0xb6,0xb4,0x30,0x86,0xd2,0xd7,0x6d,0x9a,0x57,0xcf,0x4e,0xb8,0x5d,0x97,0x96,0x13,0x75,0x34,0x26,0xbb, 0x06,0x28,0xda,0x5c,0x6e,0x74,0xdb,0x81,0x0d,0xe3,0x82,0x13,0xa9,0xfe,0x0f,0xdc,0xcd,0x94,0xfe,0xe8, 0x46,0xbb,0xac,0x7b,0xe8,0xd1,0xc0,0xb4,0x57,0xc6,0x88,0x0b,0xa0,0x99,0xf1,0xb8,0xfc,0x96,0xf8,0xe2, 0x8e,0xe1,0xba,0x33,0x69,0xe4,0x2c,0xe9,0x5a,0x45,0xac,0x14,0xb8,0xb1,0x0a,0x1c,0x9b,0x05,0xc3,0x6a, 0xaf,0x06,0x47,0x40,0x68,0x73,0x4e,0xd3,0x9a,0x97,0x64,0x8c,0x1f,0xf7,0xf7,0xed,0x54,0xf8,0xb3,0xa0, 0xfa,0x60,0x5b,0x6f,0x1d,0x81,0x2f,0x3b,0xb3,0xce,0x99,0xc9,0x82,0x30,0x61,0xd7,0xcf,0x03,0xa0,0x0f, - 0xa2,0x6d,0x78,0x6a,0xc9,0xea,0xc5,0xdc,0x7e,0xa3,0x9e,0x66,0x61,0xf8,0xb6,0x83,0x1d,0x22,0xf5,0xb6, - 0x05,0x18,0x05,0xb1,0xfc,0x47,0xf9,0xa4,0x6d,0xfa,0xa8,0x51,0xcc,0x4b,0xad,0x6c,0x24,0x68,0x6a,0x7d, + 0xa2,0x6d,0x78,0x6a,0xc9,0xea,0xc5,0xdc,0x7e,0xa3,0x3e,0x65,0x61,0xf8,0xa6,0x83,0x1d,0x22,0xf5,0xa6, + 0x05,0x18,0x05,0xb1,0xfc,0xc7,0xf9,0xa4,0x6d,0xfa,0xa8,0x51,0xcc,0x0b,0xad,0x6c,0x24,0x68,0x6a,0x7d, 0xa4,0x65,0x02,0x3e,0x30,0xb9,0xd5,0x57,0x5b,0x82,0x23,0x2d,0xe6,0xda,0x12,0xf4,0xb1,0x56,0xc2,0x61, 0xa4,0xa8,0x45,0xa8,0x1b,0x29,0x84,0x73,0x66,0x96,0x77,0xb0,0x17,0xb8,0x85,0xc5,0xb8,0xa6,0x11,0xf6, - 0x3f,0x3e,0x38,0x19,0x0c,0xf0,0x17,0x0a,0x9c,0xc8,0x13,0xa1,0x83,0x74,0x7f,0x4c,0x4c,0x25,0x24,0xc5, + 0x3f,0x39,0x38,0x1d,0x0c,0xf0,0x17,0x0a,0x9c,0xc8,0x13,0xa1,0x83,0x74,0x7f,0x4c,0x4c,0x25,0x24,0xc5, 0x9b,0x8e,0xd4,0xa2,0xb2,0x1a,0x8a,0x96,0xfa,0x44,0xf4,0x14,0x5a,0x1f,0x22,0x7c,0x29,0x1b,0x60,0x20, 0x60,0x81,0xd0,0xb8,0x2d,0x51,0xda,0x96,0x24,0xc3,0x33,0xc9,0xf8,0x89,0x2f,0x47,0x0d,0xa4,0x34,0xdf, 0x4c,0x64,0xa4,0x36,0x06,0x85,0xa7,0x34,0x50,0x11,0x49,0x23,0x9a,0x3e,0xb8,0x0d,0x6a,0xa6,0x0a,0x39, - 0xce,0xa7,0x51,0xbb,0x28,0x4d,0xcd,0xbe,0xad,0x68,0x47,0xab,0x0f,0x55,0x72,0xac,0x7d,0x25,0x3f,0x64, - 0xe7,0xcf,0xaf,0x97,0x62,0x6f,0x7b,0xa2,0x7e,0xaa,0x92,0xdb,0xef,0x8d,0xf8,0x3a,0xd6,0x61,0x4e,0xfc, - 0x68,0xd6,0x66,0x93,0xb1,0xc2,0x4e,0x22,0x5d,0xe4,0xc5,0x64,0xbe,0x9a,0x66,0xf1,0x07,0xc2,0xcf,0xd7, - 0xf6,0x71,0x91,0x5e,0xc7,0xa6,0x0d,0xb9,0x7f,0xe7,0x04,0x46,0x85,0x4c,0xc3,0xc7,0x5d,0x34,0x34,0x49, - 0x69,0x23,0xdd,0x49,0x69,0x30,0x4f,0x09,0xef,0x0d,0x65,0x81,0xbd,0xe5,0xda,0x62,0xb4,0xad,0xcc,0xf9, - 0xd8,0xea,0xa2,0xd7,0x46,0xa2,0x89,0x37,0x95,0xb9,0xaa,0x08,0x0e,0x79,0xeb,0xba,0xae,0xfb,0x40,0xfb, - 0x4a,0xef,0x2c,0x27,0x4b,0xb2,0x80,0xfc,0x4c,0x4b,0xd2,0x20,0x7a,0xba,0xfe,0x2b,0x5f,0xee,0xba,0x2f, - 0x37,0x6a,0x3b,0xe2,0x80,0x8f,0xf3,0x18,0xe2,0x86,0x3a,0x16,0x18,0x6d,0x82,0x7f,0x8a,0xa9,0x30,0x7b, - 0x34,0x6c,0x49,0x9e,0xfd,0x80,0x9c,0xbf,0xe2,0xa2,0x04,0xa5,0xc9,0x27,0x3d,0x30,0x18,0x9a,0x8b,0x12, - 0x9f,0x5f,0xf9,0xae,0x4c,0x02,0xec,0x5d,0x82,0x11,0x74,0x29,0x47,0x30,0x08,0x82,0x7c,0x82,0xe1,0xc1, - 0xe0,0x19,0x2e,0xf6,0x76,0x91,0xfd,0x1b,0x13,0x24,0xc8,0x4d,0xa1,0x36,0x06,0xc1,0x14,0xaa,0x89,0x11, - 0x63,0xf0,0xf5,0xca,0x85,0x44,0x77,0x9f,0xe4,0xd3,0xbd,0x50,0x22,0x56,0x04,0x71,0x8c,0x58,0x1b,0x1c, - 0x98,0x25,0x80,0x8a,0x01,0x21,0x96,0xd2,0xe3,0xc9,0xc9,0xb8,0x57,0xdb,0x84,0x9c,0x1e,0x85,0xd3,0x5c, - 0x6e,0xcf,0xd2,0x16,0x3a,0x13,0x44,0x59,0x46,0x49,0xa2,0x75,0x6d,0x92,0x2c,0x2b,0x41,0xdb,0x60,0x60, - 0x70,0xf4,0x37,0x36,0x60,0xa0,0xc9,0xa3,0xdd,0xfc,0x1a,0xc4,0x1c,0xee,0x55,0x55,0x2d,0x82,0x23,0x32, - 0xa2,0x16,0xa7,0xb5,0x81,0xb4,0xc7,0x4c,0x02,0x1d,0x3c,0x83,0x41,0x46,0x5f,0x11,0xaf,0xd2,0x13,0xb1, - 0xf8,0x73,0x7c,0xe4,0xf3,0xe2,0x4e,0x8e,0x90,0x98,0x59,0xd6,0xde,0x33,0x23,0x98,0x0d,0x57,0x4d,0x3e, - 0x4f,0x6e,0xe1,0xe9,0x19,0xff,0x4c,0x78,0xe3,0xba,0x21,0x00,0x41,0x34,0x59,0xd8,0x66,0xeb,0x95,0x8e, - 0x5f,0x2b,0xa9,0xe4,0x83,0x68,0x70,0xb2,0xf8,0x1e,0x88,0x50,0xc3,0x09,0x7a,0xec,0x9f,0x45,0xc4,0x2f, - 0x95,0xbd,0xf4,0xa1,0x77,0x67,0xf5,0x59,0x5f,0xb3,0x08,0xcb,0xdc,0x14,0xd1,0x88,0x11,0x76,0x9f,0x0b, - 0x56,0xe4,0xea,0x1e,0x9e,0x9e,0xa5,0x35,0xe8,0x36,0x5c,0x7b,0x6a,0xd2,0xec,0x4a,0xd6,0x84,0x51,0x78, - 0x88,0x75,0x76,0x07,0x85,0x0c,0x21,0x3b,0xad,0x36,0x2e,0x1c,0x79,0x3f,0x5f,0x9d,0xe7,0x1c,0x7f,0xb5, - 0x3f,0x83,0xef,0xdc,0xe3,0xd0,0xa0,0xc6,0x23,0x32,0xc3,0xed,0x15,0x2d,0xd6,0x40,0xa8,0xce,0x36,0x09, - 0xed,0xd8,0x24,0xed,0x3d,0xa1,0x45,0x0b,0x3d,0x32,0x08,0xc4,0x20,0xe1,0x46,0xc7,0xf6,0x49,0x13,0xd8, - 0x1c,0x5d,0xab,0xef,0x0b,0x68,0xb3,0xbc,0x2b,0xcb,0x98,0x6b,0xf3,0x0d,0xca,0xb0,0x4e,0x8b,0xfc,0x3a, - 0xef,0x75,0x96,0xe6,0x81,0x3a,0x25,0x8c,0xff,0xaa,0xec,0xf7,0x6d,0xe1,0x2c,0x6d,0xb2,0xe4,0x40,0x4b, - 0x65,0x0f,0x89,0x41,0x16,0x78,0x69,0x55,0x9e,0x25,0xac,0xb8,0xf1,0x48,0x70,0x08,0xe7,0xf1,0xa5,0x5c, - 0xbc,0x8b,0xcd,0x2a,0xf7,0x1a,0xe2,0x89,0xe5,0x78,0xc0,0x0c,0x50,0x14,0x1a,0x03,0x74,0xe3,0xab,0x82, - 0x13,0x53,0xae,0x63,0xb4,0xa1,0x54,0x24,0xca,0x76,0xda,0xa3,0xf1,0x83,0x22,0x90,0x3d,0x22,0x74,0xc0, - 0x80,0xd4,0x1d,0xf6,0x5d,0x30,0xf2,0x28,0x89,0xc8,0xd7,0x39,0x25,0x29,0xe2,0x55,0xd3,0x10,0x71,0x43, - 0x7c,0xea,0x4d,0x4d,0xe1,0xcf,0x0b,0x9d,0xb6,0xab,0x25,0xf4,0x34,0xae,0xc8,0xb6,0x50,0xda,0x49,0xa3, - 0x3e,0x2b,0x93,0x85,0x4c,0xd1,0x97,0xba,0x9c,0x5a,0xa9,0xcb,0x06,0x77,0x9d,0xa4,0x2d,0xa0,0xee,0x4a, - 0x13,0xb7,0xdb,0x30,0xa5,0xba,0xcd,0xcc,0xda,0xcd,0x18,0xb1,0xbc,0x34,0xa1,0xd7,0xb0,0xd0,0x0f,0x94, - 0x22,0x10,0x53,0xc8,0x2f,0xbd,0x63,0x03,0x15,0xf8,0x7b,0x97,0xd7,0x44,0xca,0xbc,0x2f,0xc7,0x9c,0x55, - 0x72,0x83,0xcb,0xf6,0x66,0x64,0x37,0x04,0x3b,0x7b,0xc6,0x1b,0xce,0xcd,0xac,0xe9,0x88,0xc9,0xc9,0xf8, - 0x62,0x98,0x94,0x76,0xa0,0x75,0xbf,0xc3,0xa5,0xbc,0xa9,0xd3,0xba,0xe6,0xec,0xe0,0x44,0xc4,0xc5,0x46, - 0x8e,0xa9,0x3b,0xbb,0x87,0x9e,0x75,0x22,0xf9,0x58,0x9f,0x92,0xd0,0x8b,0x08,0x20,0x7e,0x62,0x65,0x58, - 0x70,0x40,0x14,0x06,0xb5,0xa4,0xd0,0x10,0x68,0xad,0x59,0x5b,0xa8,0x47,0xf7,0x99,0x23,0xd9,0x78,0xe1, - 0x04,0xa4,0xa2,0x9e,0x0d,0xcb,0xdc,0x5a,0x72,0x8b,0xe8,0x96,0x71,0xa1,0x74,0xec,0xf3,0x62,0x63,0x5c, - 0x7d,0x34,0xf2,0x13,0x0f,0x14,0x58,0x14,0x16,0xec,0xed,0xd2,0x9b,0xb7,0xd1,0x2e,0x53,0x85,0xb0,0xd0, - 0xfd,0xd8,0xfe,0x7d,0x5b,0xa6,0x97,0xd7,0x1f,0xc5,0xd7,0x58,0x1c,0xa3,0xbf,0x47,0xcb,0x7f,0xea,0xc3, - 0xba,0xae,0xb4,0x6b,0xe4,0xb6,0x4f,0xb5,0x8f,0x4d,0xda,0x2c,0xa5,0x10,0xf4,0xee,0x5b,0x58,0xbe,0x53, - 0xc5,0xf0,0x7b,0xcb,0x61,0x7b,0xfd,0x70,0xf8,0xd5,0xf0,0xf0,0x0b,0x09,0xd3,0xf2,0xa4,0x52,0x3f,0x56, - 0xea,0x87,0x4a,0xbd,0xac,0xd4,0xef,0x95,0xfa,0xad,0x52,0xdf,0x57,0xea,0xbb,0x4a,0x7d,0x5b,0x71,0x38, - 0x0d,0xbe,0xf7,0x59,0xdf,0xf9,0xaa,0x7e,0xe6,0x34,0xbe,0xdb,0x46,0xa1,0x5e,0x22,0x33,0x53,0x25,0x13, - 0xa4,0xe4,0x7e,0x1f,0x90,0x87,0xe7,0x30,0x1d,0xa4,0xd2,0xff,0xee,0xda,0xce,0xdb,0x10,0x49,0xf6,0x7e, - 0x73,0x5a,0x96,0x9f,0x2b,0x16,0xa9,0x05,0x12,0xd1,0x18,0x8e,0x17,0x0d,0x82,0xb6,0xe8,0xdb,0x82,0x74, - 0xa1,0x40,0x1a,0xe1,0xf5,0xa5,0x5c,0xa2,0x4b,0x26,0x9f,0x5c,0xa6,0x5c,0xb6,0xa3,0xf3,0x6c,0x1c,0x75, - 0xe4,0x40,0xec,0x5c,0x72,0xce,0x46,0xfd,0x8b,0x3b,0x3f,0x91,0xcb,0xde,0xb3,0x69,0xde,0xc0,0x88,0x4e, - 0x4d,0xab,0xf4,0xfc,0x9c,0x9f,0xea,0x65,0x36,0x9f,0x73,0xcd,0xd4,0xf7,0x7f,0x72,0x61,0x3a,0x08,0xca, - 0xab,0x19,0x21,0xf8,0x9a,0x30,0x18,0x31,0x95,0xec,0x92,0xa9,0xd2,0x55,0x53,0xce,0xca,0xc9,0xaa,0xe6, - 0xa7,0xe5,0x3c,0xbd,0x51,0xba,0x43,0x1c,0x78,0x84,0x8e,0x6a,0xd8,0xe9,0x11,0xc9,0x3a,0xaf,0xe9,0xfc, - 0xa6,0xb9,0xab,0x32,0x65,0x48,0x3b,0xfd,0x6b,0xca,0xeb,0x57,0xee,0xb3,0x79,0x31,0x43,0xc7,0x3b,0x71, - 0x3e,0xd3,0xbc,0x46,0xf7,0xa6,0x2a,0x2b,0xe4,0x17,0x11,0x0c,0x8a,0x92,0xa6,0x30,0x07,0x10,0xab,0x8b, - 0x7c,0x3a,0xa5,0xae,0xe1,0x70,0x6c,0xb2,0x6a,0x91,0x17,0x48,0x24,0x88,0xaa,0x1a,0x95,0xd7,0x8b,0x74, - 0xa9,0xf2,0x26,0x5b,0x48,0xa4,0x93,0x79,0x59,0x2e,0x95,0xb9,0x66,0x4a,0x49,0xa3,0x45,0x89,0x50,0x2d, - 0x0a,0xe1,0x25,0xea,0xfc,0x77,0x42,0x51,0x65,0x7d,0x91,0x82,0xe1,0x74,0x2d,0x14,0x25,0xa2,0x47,0xd1, - 0x3a,0x53,0x33,0xcb,0x94,0xb0,0x11,0x6d,0xda,0xeb,0xbc,0x21,0x92,0x36,0x9d,0x96,0xc5,0x1c,0x51,0x55, - 0x7e,0x5b,0xd1,0x16,0x9c,0x2a,0xed,0x5a,0x39,0x55,0xc2,0x16,0x11,0x4c,0xa4,0x8b,0x39,0x01,0x83,0xb2, - 0x63,0x82,0x0f,0x26,0xcf,0xb6,0xbd,0xd8,0x85,0x63,0x83,0xd2,0xdc,0x53,0x26,0x60,0x1e,0x81,0x25,0x38, - 0x56,0xbc,0xba,0xcc,0xeb,0x9c,0x4a,0x22,0x46,0x58,0x9e,0x04,0x17,0x4d,0xb3,0x8c,0x1f,0x3c,0xb8,0xba, - 0xba,0x1a,0x5e,0x7d,0x31,0x2c,0xab,0xf3,0x07,0x87,0x5f,0x7f,0xfd,0xf5,0x83,0xeb,0x79,0x5e,0x7c,0x22, - 0x8a,0x2a,0xef,0x39,0x67,0x83,0xb8,0xe5,0x82,0xf2,0x15,0xa0,0x4c,0xca,0x73,0xb2,0x09,0xd1,0xf3,0x15, - 0x11,0xf6,0x45,0xdf,0xf7,0x3b,0x0d,0x6c,0x72,0xad,0x77,0xc9,0xdf,0x95,0x11,0x6c,0x72,0xcc,0x16,0x55, - 0xf5,0x7e,0x23,0x04,0x32,0x01,0xe2,0xee,0xa1,0x80,0x5d,0x9e,0x27,0xb7,0xf5,0x25,0x11,0xc4,0xdb,0x23, - 0x78,0x78,0x70,0x70,0xf0,0x80,0xf2,0x02,0xe2,0x9b,0x9a,0x8b,0xbe,0x12,0x34,0xc6,0x7f,0x3c,0xc0,0x1d, - 0xa9,0xfc,0xe7,0xcd,0x6b,0x6a,0xb6,0xcc,0x01,0x99,0x17,0xcd,0x62,0xae,0xce,0xca,0xe9,0x8d,0x02,0x36, - 0x54,0x17,0xb4,0x14,0x0a,0x43,0x53,0x88,0x50,0xae,0x64,0xd7,0x36,0x79,0x43,0x7f,0xd3,0xe9,0x14,0xfb, - 0x51,0xa5,0x55,0x93,0x4f,0xf0,0x5e,0xd3,0x9e,0x20,0x20,0x2a,0x71,0x8b,0x27,0xbe,0xc3,0xcf,0xa1,0xba, - 0x78,0xa8,0x2e,0xbe,0x50,0x17,0x5f,0xaa,0x8b,0xaf,0xd4,0xc5,0xdf,0xd5,0xc5,0x79,0x55,0xae,0x96,0xaa, - 0x48,0x2f,0x69,0xed,0x78,0x8c,0x04,0x88,0x97,0x6a,0x4a,0x50,0x39,0x57,0xd3,0x46,0x11,0x1d,0x0b,0x0f, - 0x1b,0xa4,0xb3,0x41,0x6a,0xa6,0x96,0xf9,0x04,0x0e,0x37,0xea,0xa2,0x52,0xf9,0xe2,0x9c,0x3a,0x43,0x83, - 0xa2,0x43,0xac,0x9c,0xab,0x25,0x0c,0x1b,0xd5,0x6a,0xae,0x52,0x75,0x46,0xac,0xe4,0x59,0xa5,0xce,0xa6, - 0x39,0xfd,0x2f,0x15,0x3d,0x4e,0x08,0x3c,0x39,0x0a,0x91,0xe2,0xcb,0xec,0xa7,0x33,0xa2,0x85,0x17,0x2a, - 0x57,0x9f,0xce,0xa6,0x54,0x41,0xf5,0x49,0xfd,0xa6,0xaa,0xa5,0x22,0x60,0xae,0x9a,0x89,0xaa,0x56,0x67, - 0x37,0x44,0xc9,0xd7,0xe9,0x62,0xa9,0x08,0xb6,0x89,0xf0,0xaa,0x97,0x29,0xa1,0x1e,0xda,0x6b,0xc4,0x70, - 0xd6,0xab,0x33,0xfa,0xbf,0xe4,0x7b,0x6d,0xd5,0x4a,0x11,0x72,0x53,0x57,0x67,0x10,0xa2,0x13,0x92,0x4a, - 0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x64,0x3f,0x29,0x46,0x0c,0xd4,0xd2,0x19,0x81,0x9d,0x78,0x83,0xc1, - 0x12,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x41,0x26,0x69,0x71,0x99,0x52,0x4b,0x93,0x2a,0x5f,0x36,0xd8, - 0x14,0xf2,0x40,0x24,0x37,0x0c,0xdd,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65,0xb2,0x34,0x60,0xf3,0x5a, - 0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x50,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xa6,0x04,0x34,0x67,0xd9,0x7c,0x4a, - 0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x51,0xed,0xf3,0xec,0x1c,0xb4,0xc0,0x02,0x9b,0x19,0xa8, - 0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15,0x13,0x0a,0x48,0x73,0x60, - 0x9d,0x3c,0x9d,0x97,0xe7,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b,0x9a,0xd0,0x1b,0xa5,0x31, - 0xa0,0xca,0x44,0xe8,0xa0,0xb0,0xdf,0xcb,0x2b,0x65,0x42,0x67,0x29,0x0e,0x4e,0xf6,0xdb,0xaa,0x04,0x1a, - 0x99,0x55,0xa0,0xfa,0x1a,0x40,0x0b,0x84,0x10,0x0c,0x7a,0x04,0xb0,0x2a,0x2d,0xf2,0x05,0xca,0x4e,0xf2, - 0x6a,0xc2,0xe7,0x43,0xbe,0x5c,0x12,0x80,0xaa,0xc9,0xaa,0xa2,0x1d,0x0e,0xcc,0x05,0xd4,0x57,0x4f,0xa8, - 0x11,0xca,0x22,0x00,0x95,0x28,0x3f,0x34,0xdc,0xa2,0xd9,0x9f,0xa5,0x13,0x00,0x60,0x95,0xe5,0xe7,0x85, - 0x1c,0x82,0xea,0x5c,0x9d,0xcf,0x6f,0x96,0x17,0x04,0x39,0xe9,0x79,0x06,0x40,0xce,0x78,0xf1,0x33,0x48, - 0x14,0x6a,0x02,0xea,0xbc,0xc6,0x2d,0x6b,0xfb,0x52,0x88,0x5b,0xa2,0x3f,0x54,0x21,0x21,0xa4,0x72,0x7e, - 0x73,0x5e,0xca,0x2f,0x7f,0x07,0x52,0x40,0x89,0x2b,0xb5,0xaa,0x39,0xd4,0x06,0xcf,0x0f,0xff,0xe1,0x2f, - 0x1b,0x86,0x19,0x10,0x55,0x97,0x79,0x76,0x25,0x11,0xa2,0xea,0xde,0xbd,0x5c,0x8a,0x4d,0x7e,0xca,0xf7, - 0x87,0xd3,0x58,0x7b,0x39,0xaa,0x15,0x4f,0x8a,0xd8,0x37,0xb2,0xc4,0x83,0x1d,0xce,0xae,0xca,0x8a,0xd1, - 0x5f,0x45,0xbd,0xc8,0x68,0x23,0xa0,0x13,0x73,0xb5,0xaa,0x10,0x3d,0x7b,0x9e,0x77,0x43,0x5b,0xb5,0xa4, - 0x40,0xbd,0xd6,0xbf,0x77,0x84,0xdf,0xb2,0x17,0x29,0xeb,0x03,0x93,0x23,0x94,0x8f,0x8b,0x38,0x6c,0xb4, - 0x21,0x6d,0xe3,0x19,0xd2,0x0e,0x06,0x36,0x5e,0x9a,0x9f,0x6c,0x2f,0x1e,0x84,0x55,0x4c,0xfb,0x22,0x78, - 0x93,0x83,0x88,0x4b,0xe6,0x31,0xe2,0x4b,0x0d,0x5b,0xdd,0x78,0xfb,0xb1,0xd3,0x67,0x3d,0x7f,0xfd,0x9d, - 0x7e,0xfb,0x31,0xcc,0x73,0x84,0xa0,0x6c,0x6c,0x3d,0x47,0x34,0x7b,0xb8,0xb3,0x32,0xee,0x59,0x84,0x4e, - 0x25,0xa6,0xa8,0x2c,0x09,0x27,0xe9,0xb8,0x01,0x7f,0xe2,0x63,0x5d,0x92,0xbf,0x15,0x7b,0xd5,0x27,0x2c, - 0xa2,0xde,0xf2,0x21,0x67,0x3e,0xd0,0x66,0x87,0x72,0x91,0xa3,0xd8,0xec,0xb3,0x31,0x53,0x67,0xbc,0x26, - 0x42,0x08,0xe7,0xe1,0x82,0x10,0x85,0xbb,0x8d,0x8b,0x69,0x7f,0x59,0x2f,0x8f,0xcb,0xba,0x3b,0x3b,0xfb, - 0x86,0x90,0x79,0x77,0x7a,0xd2,0x41,0x45,0xc3,0xff,0x48,0xc7,0x22,0xed,0x86,0xfe,0xc2,0x5e,0x81,0x0d, - 0x2e,0x26,0xe3,0x80,0x4d,0xbd,0x25,0x75,0xe6,0x06,0xee,0x03,0x98,0xd5,0xa7,0x82,0x17,0xb6,0xba,0xdb, - 0xb8,0xbc,0xa4,0xe1,0xd2,0x16,0x42,0x7a,0xe6,0xad,0x05,0x40,0x3c,0x6f,0xb8,0x14,0x87,0xce,0x40,0x59, - 0x81,0x4e,0xed,0x4f,0x32,0x9e,0x01,0x4d,0x8f,0x77,0x5b,0x66,0x18,0x25,0xea,0xe4,0xff,0x6b,0xef,0x4d, - 0xf7,0xdb,0x36,0x96,0x7d,0xd1,0x57,0xa1,0xb0,0x7c,0x6c,0x20,0x84,0x28,0xc9,0x76,0xb2,0x12,0xd0,0x30, - 0xb7,0x87,0x0c,0x4e,0xe2,0x61,0xc7,0x4a,0xb2,0x12,0x89,0xd1,0x86,0x48,0x90,0x82,0x45,0x01,0x5c,0x00, - 0x28,0xd9,0x11,0xf9,0x40,0xf7,0xeb,0x7d,0x84,0xf3,0x64,0xb7,0xfe,0x55,0xdd,0x8d,0xc6,0x40,0xc9,0x4e, - 0xce,0xd9,0xf7,0x7c,0x38,0x2b,0xbf,0x65,0x81,0x3d,0x0f,0xd5,0xd5,0x55,0xd5,0x35,0x54,0x00,0x2b,0x9e, - 0x85,0x9f,0x42,0xae,0x86,0x63,0xcb,0xd5,0xbd,0x6e,0x0d,0x5e,0x5d,0x68,0x43,0xd9,0x89,0x72,0x3b,0xe1, - 0x3a,0x44,0x45,0x6f,0x7c,0x44,0x76,0x59,0x26,0xf0,0x49,0xa6,0xfd,0x8c,0x69,0x05,0x59,0xe3,0x41,0x8c, - 0xfd,0x44,0x60,0x4b,0x2b,0xcf,0x61,0xce,0x98,0x68,0x2d,0x33,0x8f,0xef,0x62,0x3d,0xea,0xef,0xe2,0xce, - 0xfe,0xbf,0x43,0xff,0xd3,0x04,0xfd,0x5f,0x76,0x63,0x8e,0x0b,0x1a,0xc2,0x2c,0xa1,0x46,0xc7,0xfe,0xbc, - 0x6a,0xf8,0x07,0xd3,0xf0,0x0f,0xb4,0x37,0x1f,0xaa,0x8c,0x6f,0x4d,0xc6,0xb7,0x94,0x71,0x9a,0x84,0x7b, - 0x47,0xc7,0x57,0xde,0xa0,0x7f,0xbc,0x7b,0x72,0xe7,0x78,0x3c,0xde,0xf3,0x4f,0x10,0x37,0xe0,0x84,0x78, - 0x8c,0x2b,0xfe,0x98,0x38,0xfe,0x61,0x55,0x9b,0x2e,0x2f,0x55,0x7b,0x49,0x9b,0x78,0x5e,0x65,0x9c,0x99, - 0x8c,0x33,0xca,0x78,0x9f,0x74,0x5a,0xf3,0x72,0xc0,0xba,0xbd,0xc0,0x1d,0xf4,0xbd,0xbd,0x2a,0x1c,0x83, - 0x18,0x5b,0xee,0x0d,0xdd,0xd1,0xce,0xd1,0x1f,0xee,0xf8,0xb3,0x63,0xcf,0xdb,0x9b,0x77,0x28,0xa5,0x89, - 0xbd,0x66,0x5c,0xb9,0x71,0x95,0x8a,0x50,0x26,0x30,0x2f,0xa2,0x78,0x8c,0x38,0x42,0xec,0x56,0x15,0xcc, - 0x67,0x1c,0xe6,0x55,0xe0,0x1f,0x06,0xa2,0x12,0x9e,0xe9,0x68,0xd6,0x7f,0xec,0xee,0xee,0xf9,0x4f,0xe8, - 0xe3,0xb8,0xf8,0x6c,0x27,0xb9,0x80,0xfd,0x74,0x94,0x96,0x77,0xf6,0xfc,0xb7,0x49,0x97,0xd6,0xc3,0x33, - 0x15,0xba,0x9e,0x00,0x25,0x96,0x98,0x83,0x80,0x51,0xc3,0x6f,0x95,0xb6,0xb5,0xc6,0x13,0x55,0x36,0xdd, - 0x5a,0xd6,0x78,0xcf,0x7b,0x92,0x70,0xa4,0x22,0xc7,0x0c,0xc0,0xa9,0x05,0x15,0x78,0x9d,0xb8,0xe2,0x9d, - 0xbe,0xfe,0x58,0x9e,0xd6,0x74,0x70,0xba,0x5e,0x78,0x55,0xbf,0xe0,0xb0,0x59,0x1b,0x4a,0x82,0x48,0x59, - 0x89,0x04,0x4f,0x77,0x00,0xbb,0x12,0x2a,0x91,0xc0,0xf3,0x65,0xf6,0x27,0xf0,0x73,0x01,0x17,0x7a,0xcd, - 0xdd,0xa3,0x01,0x7c,0x9f,0x87,0xdf,0xe7,0xb7,0xf8,0x6f,0x94,0xe6,0x8d,0x2f,0xbe,0x1d,0xb6,0xbf,0x46, - 0x00,0x09,0x78,0x28,0x65,0x09,0xfb,0xf7,0x3a,0x2e,0x5f,0x2f,0xb6,0x1e,0xcb,0x3e,0xc6,0x37,0xa1,0xf2, - 0x78,0x71,0x27,0xe9,0x70,0xab,0x79,0x27,0x39,0x4a,0xc7,0x7d,0x56,0x0b,0xce,0xeb,0xbd,0xe4,0xd8,0xf1, - 0xaf,0x2b,0x28,0x9d,0x1b,0x28,0x9d,0x13,0x94,0xbe,0x69,0xce,0x53,0x59,0x84,0xc7,0x1c,0x0a,0x13,0xcc, - 0x6a,0x40,0xec,0xfa,0x2e,0xff,0x74,0x7c,0xfe,0xa3,0x22,0x3f,0x57,0xe9,0xbb,0x65,0xa6,0xb2,0xac,0x18, - 0xd0,0x56,0xb6,0x48,0x5c,0x1d,0xbf,0x0a,0x23,0xcd,0x99,0xfc,0x53,0xa5,0xda,0x6d,0x72,0x02,0xb7,0xd9, - 0x8c,0x2b,0x6d,0x65,0xab,0x36,0x31,0xb7,0x77,0x09,0x7b,0x14,0x43,0x44,0xe8,0xe7,0x89,0x8a,0x73,0xc9, - 0x9e,0x63,0x1d,0xff,0x05,0xfd,0x16,0x02,0x8b,0x7f,0xfe,0xd8,0xc8,0xfe,0xa6,0xf6,0x9b,0x6e,0x12,0xc7, - 0x7f,0x55,0xaf,0xf1,0xd2,0xfe,0x89,0x02,0xc3,0x77,0x78,0x00,0x30,0xde,0x1a,0x94,0x1b,0x33,0xf0,0xa8, - 0x56,0x33,0x16,0x79,0x60,0x0a,0x5c,0x31,0x90,0x35,0x8a,0xb9,0x18,0x91,0x15,0xa9,0xd3,0x1a,0xd7,0x55, - 0x23,0xf5,0xeb,0x14,0x2f,0x94,0xed,0x8e,0xed,0xd1,0x6d,0xef,0xb7,0x5e,0xca,0x7d,0x65,0xba,0x7d,0x52, - 0x9f,0xeb,0x55,0x3d,0x91,0x3b,0x15,0x19,0xcd,0x4f,0x58,0xe5,0x91,0x6a,0x16,0x6c,0x2a,0x9d,0x6e,0x53, - 0xee,0x1b,0x10,0xb7,0x37,0x66,0x0e,0x20,0x2f,0x72,0xa5,0x04,0x0c,0x47,0xb4,0x53,0x84,0xce,0x0b,0x15, - 0xef,0xe6,0xbf,0x02,0x2d,0x9d,0xba,0x26,0x7a,0xc7,0x9a,0x78,0x14,0xcf,0xf5,0xd7,0x77,0xbc,0x3d,0xff, - 0xa9,0x85,0x9e,0x5a,0x01,0x1e,0x84,0xca,0x7b,0x66,0xdd,0xf5,0xa0,0xed,0x4a,0x96,0x88,0x3d,0xab,0x51, - 0x17,0x50,0x71,0xb5,0x22,0x68,0x70,0x2c,0xb8,0x44,0x4c,0xec,0x24,0xa4,0x4d,0xcd,0x23,0x55,0xe4,0xdb, - 0x46,0x62,0x5c,0x52,0x2b,0x5b,0xca,0xfd,0xca,0xa2,0x75,0x44,0x84,0x56,0x46,0x4e,0x9d,0x51,0x80,0x3d, - 0xf8,0x12,0x32,0x4f,0x25,0xaa,0x4a,0x18,0x0d,0xa0,0xaf,0x45,0x79,0xf2,0x03,0x72,0x60,0x14,0xc4,0xb5, - 0x7b,0xc0,0x1d,0xf9,0xdd,0x8d,0x99,0x18,0x1e,0x18,0x11,0xe1,0x07,0x77,0xe5,0xd5,0xf4,0x1a,0x75,0x04, - 0x0c,0x4b,0x87,0x27,0x1e,0x46,0x1d,0xa6,0x38,0x12,0xe5,0xba,0x23,0x47,0xbf,0x9a,0x97,0x6e,0x46,0xd9, - 0x98,0x26,0x8f,0x32,0x0b,0xed,0x90,0xb1,0x4a,0x6f,0x49,0x62,0xb1,0x9c,0x0f,0x34,0x09,0xa0,0xd1,0x54, - 0xbf,0x9f,0x79,0x55,0x2a,0xa2,0xb0,0x10,0xd3,0x1a,0x21,0x2c,0x33,0xcb,0xf9,0x23,0xad,0x21,0x34,0x81, - 0x86,0x0a,0x1e,0x8f,0x69,0xcc,0x1b,0xb3,0xc6,0xfe,0x8e,0x84,0x4e,0x90,0x5f,0x7a,0x71,0x65,0xc9,0xfd, - 0x99,0xe5,0x5d,0xdb,0x3f,0x13,0xc7,0xc4,0xb4,0xd7,0x67,0xde,0xc8,0xe5,0x96,0x20,0x7d,0x2f,0x46,0xcf, - 0x5a,0x64,0x33,0x92,0xfd,0x33,0x2f,0x68,0xe4,0xb8,0x67,0x90,0x8e,0x2f,0x21,0x8b,0x5d,0x50,0x97,0x33, - 0x2c,0x6a,0xc9,0x8b,0x3a,0x95,0x15,0x9e,0xc0,0xd3,0x0b,0x0f,0x91,0x86,0x12,0xa4,0xae,0xe5,0x13,0xda, - 0x74,0xf9,0xac,0x49,0x22,0x8b,0x3f,0xe7,0x46,0xdd,0x46,0xe1,0x8a,0x18,0xef,0x2a,0x6d,0x79,0x14,0x2e, - 0x44,0x75,0xaf,0xd4,0xc6,0x52,0x2a,0x34,0xbd,0x40,0xa9,0x08,0x7d,0xb1,0xaa,0xfa,0x49,0xc5,0xef,0x2c, - 0xd6,0x99,0x1a,0x6a,0x33,0x09,0x59,0xb7,0x36,0x28,0x40,0x39,0x68,0xc6,0xbe,0xa4,0xa6,0xa2,0x25,0xb7, - 0x64,0x67,0x4e,0x4c,0x44,0x7a,0xbe,0x31,0x21,0xb1,0x63,0x95,0x28,0xbd,0xd7,0x6b,0xad,0xec,0xc7,0x61, - 0xe5,0xad,0xa3,0x29,0x52,0xe6,0x67,0x75,0x1e,0x41,0xea,0xd0,0xde,0xd8,0xe4,0x7d,0xcc,0x01,0x59,0x4d, - 0xcb,0x0b,0x8b,0x2e,0x69,0xc5,0xd8,0x6b,0xc6,0xae,0x30,0x70,0x98,0x78,0x91,0xcb,0x1a,0xc7,0xa9,0x5a, - 0x5b,0x7e,0x72,0x82,0xbe,0x21,0x13,0x07,0xb9,0x5e,0x7d,0x0c,0xa9,0xd6,0x39,0x17,0x6e,0xed,0x95,0x72, - 0x63,0x13,0x6b,0x87,0xdd,0x96,0x4b,0x6c,0xed,0x23,0x63,0xd8,0x65,0xf8,0xe6,0x75,0x9a,0x07,0xaa,0xa3, - 0x56,0x99,0xdc,0x4a,0xfc,0x2b,0xcb,0xe9,0xb5,0x6c,0x7d,0xdd,0x82,0xed,0x5c,0x0d,0xaa,0x9a,0x64,0xee, - 0xe9,0x34,0xa2,0x72,0x70,0xd4,0x18,0xfd,0x5d,0x69,0x03,0x5f,0x85,0x69,0x68,0x2f,0xae,0x54,0x31,0xfa, - 0xa5,0x3f,0xa5,0xb8,0x8f,0xbc,0x44,0x43,0x54,0xd7,0xc6,0x2e,0x0d,0xa6,0x15,0x14,0x06,0x6d,0x70,0xe3, - 0x4e,0xd0,0xf3,0x9e,0xd5,0x99,0x17,0xb5,0xd6,0x20,0xf3,0x64,0xa1,0xab,0x29,0xc4,0x88,0x26,0x84,0xfa, - 0x95,0x85,0x25,0xf0,0x0b,0x5b,0x29,0x99,0x67,0x8a,0x42,0xb5,0x8b,0x6d,0xd9,0xd6,0xb0,0x5f,0x45,0x1e, - 0x02,0xb2,0x0f,0xaf,0x10,0xe0,0x33,0x65,0x87,0xe6,0xaa,0x61,0xfd,0xd3,0xb8,0x48,0xfc,0x6b,0x1d,0x59, - 0xce,0xbd,0x6d,0xff,0x8e,0x6a,0xbb,0xf3,0x47,0x61,0xc2,0x7b,0x10,0xb9,0x1c,0x2d,0x27,0xf3,0xeb,0x41, - 0x8c,0x2e,0xcd,0xc2,0xa1,0x5a,0xed,0xe6,0x48,0x04,0x70,0x31,0xa6,0xa4,0xba,0x0f,0x30,0x40,0xc5,0x14, - 0x61,0x42,0x95,0xe3,0xb3,0x73,0x9d,0x5c,0xed,0x7c,0xea,0x99,0x44,0x8e,0x14,0xec,0x55,0x9b,0x53,0x05, - 0x88,0x57,0x21,0x7e,0xd8,0xff,0x7f,0xd3,0xf6,0x11,0x03,0xc7,0x3b,0xb4,0x6d,0xfa,0x58,0x8d,0xfd,0xa2, - 0x7e,0xa3,0x54,0x73,0x35,0x36,0x07,0xf9,0x78,0x58,0x8a,0xe7,0x2e,0xfa,0xc3,0xd0,0x3b,0x72,0xe7,0x78, - 0xa2,0xbb,0xc4,0xbd,0x18,0x20,0xda,0x11,0x74,0x83,0x6c,0x7c,0x36,0x37,0xaa,0xc8,0xb8,0xa2,0xd7,0x6b, - 0x8d,0xd8,0x3c,0x13,0xae,0x28,0x3c,0x57,0xb7,0xb6,0x09,0x45,0x3b,0x54,0xeb,0xe4,0x8d,0x2c,0x2b,0xda, - 0x7e,0x98,0x04,0xe9,0x4d,0x8a,0xc1,0x44,0x36,0xed,0xee,0x5a,0x15,0xf0,0x4c,0x16,0x1b,0x67,0x29,0x56, - 0x46,0x48,0x9b,0xba,0x71,0xf5,0x4d,0x44,0x87,0x21,0xef,0x3a,0xae,0xbc,0x3b,0x00,0x3a,0xa5,0x08,0xc1, - 0x3f,0xf5,0x0d,0x39,0x47,0xec,0x0c,0xcf,0xd7,0x47,0xb4,0x36,0x7e,0x75,0x44,0x25,0x0d,0x47,0x94,0x63, - 0x92,0x49,0x2f,0xf6,0x09,0x2d,0x55,0xd8,0x5e,0x14,0xf3,0x74,0xb8,0x2a,0xa8,0x7d,0xf3,0x11,0xca,0x64, - 0x80,0xd6,0xf6,0x40,0xcd,0x19,0xe4,0x4b,0x21,0xd1,0xb9,0x08,0xd6,0x13,0x1d,0x95,0x33,0x61,0x9c,0x9e, - 0xe3,0x5f,0xd6,0x79,0x41,0xdc,0xd7,0x96,0xf7,0x4b,0x8f,0xce,0x61,0x52,0xf3,0x9f,0xa9,0x7d,0x5c,0x4d, - 0xbd,0xd1,0x89,0x9b,0xcb,0x7a,0x20,0x32,0x71,0xd2,0xe9,0x3b,0x73,0xdf,0x30,0x7f,0x44,0x95,0x19,0xff, - 0x9e,0x0c,0xb4,0xb9,0xfd,0x33,0x61,0x17,0xa3,0xa1,0x84,0x0d,0xc3,0x85,0xc5,0xa5,0xc5,0xab,0x27,0x01, - 0x80,0xfc,0x7c,0xcd,0xe4,0x8d,0x97,0x74,0xe8,0xba,0xe4,0x1d,0x18,0xb5,0x0a,0x76,0xec,0x2f,0x68,0xb6, - 0x7c,0xa8,0x4a,0x77,0xc1,0xab,0xb8,0x0a,0x17,0xd5,0x92,0xae,0xc2,0x95,0x71,0x16,0x40,0x09,0x2b,0xac, - 0x99,0x10,0xb8,0xd3,0x30,0xaf,0x48,0x89,0xa5,0x65,0x4b,0x2a,0x87,0x08,0x6d,0xcd,0x70,0x46,0x19,0xf6, - 0x57,0xb4,0xb1,0x2b,0xda,0x58,0xe1,0xa4,0xaa,0x8d,0x5d,0x79,0x3a,0xed,0x68,0x35,0x96,0xb6,0x3b,0x06, - 0x20,0x25,0x4c,0xf7,0x9b,0xd8,0x4d,0xe4,0x0a,0x19,0x95,0xee,0x94,0x4b,0x2d,0xbd,0xd1,0x94,0x36,0x70, - 0x69,0x51,0x73,0xda,0x8f,0x6c,0x51,0xdd,0x00,0x13,0x9f,0xa6,0x4b,0x34,0xd0,0xbe,0x3f,0xa5,0xff,0x2f, - 0xc3,0xca,0x55,0x8b,0x7f,0x19,0x42,0x02,0xe0,0xcf,0xe9,0xcf,0x72,0xec,0x9f,0x1a,0xd5,0x6d,0xca,0x3a, - 0x09,0x13,0x64,0x5d,0xd1,0x9f,0xd3,0xb1,0x7f,0x18,0xee,0x14,0xc3,0xd9,0x23,0x74,0x35,0x7d,0x14,0x9e, - 0xd2,0xdd,0xe4,0x5e,0x7a,0x23,0x54,0xef,0xf7,0x67,0xe3,0x20,0x76,0xe9,0x0c,0xa3,0x95,0xdd,0xdd,0xe5, - 0x38,0xf8,0x85,0x32,0xfd,0x13,0x3a,0xd4,0x1f,0xf0,0x17,0xc4,0x99,0x2e,0xc8,0xad,0xf6,0xfb,0xd3,0xb1, - 0x87,0x42,0x73,0xff,0x8a,0x0b,0xd1,0x5f,0x14,0xd2,0xf5,0xb9,0xcf,0xdd,0xdd,0x53,0x29,0x74,0xa9,0x0a, - 0x5d,0x4a,0xa1,0xc3,0x16,0x1d,0x90,0xfa,0x97,0xea,0xde,0xb5,0x44,0x71,0xee,0x5c,0x50,0x48,0xd5,0x73, - 0xad,0xd1,0xb9,0x1a,0xde,0x5c,0x86,0xd7,0xd5,0x28,0x37,0x20,0x4d,0x5b,0x43,0xab,0xc6,0xef,0xc6,0xe2, - 0xec,0x62,0x12,0xfe,0x1c,0xd3,0xfe,0xcc,0xfc,0x25,0x4c,0xe5,0x5d,0x10,0xf4,0x27,0x1c,0xc3,0x74,0x34, - 0x39,0xe2,0x8f,0x71,0x87,0xf3,0x8f,0x2a,0x2e,0xe1,0x8c,0x68,0xe1,0x84,0xa3,0x10,0x1a,0xf4,0x98,0x8d, - 0x35,0x8f,0x70,0xf7,0xee,0x2f,0xa0,0x73,0x22,0x43,0xc1,0x67,0x44,0xe3,0x9e,0x50,0x13,0xfb,0xe8,0x6d, - 0x14,0xd1,0x77,0xe6,0xab,0xf9,0xf3,0xbc,0x16,0x34,0xce,0xd5,0x58,0x4d,0x6e,0x21,0x93,0x43,0x8a,0xf6, - 0x68,0xdb,0x35,0xd1,0x85,0x35,0x51,0x2f,0xa8,0xb7,0x59,0xcd,0x77,0x38,0x7b,0xbc,0x84,0x12,0x3d,0x4d, - 0x91,0x00,0xa2,0x7f,0x30,0xf6,0x24,0x3a,0xa3,0xfc,0x50,0x87,0x7e,0xea,0x9f,0xe2,0xe0,0x4f,0x1f,0x9f, - 0xde,0xbd,0x7b,0xe1,0xee,0xfb,0xb2,0x2c,0x1b,0x77,0xc2,0xe1,0xb2,0x01,0x94,0x01,0x03,0x2d,0x28,0xbc, - 0x8a,0x84,0xaa,0x8b,0x43,0xa9,0x30,0xee,0xe9,0x33,0xfa,0xcb,0x64,0xd7,0x12,0x93,0xad,0xc0,0x12,0x44, - 0x31,0xc0,0x7f,0x84,0xf6,0xa7,0x94,0x37,0xad,0xc2,0x20,0x06,0xb7,0x36,0x1b,0x48,0xfe,0x0e,0x47,0xad, - 0xe1,0xbb,0xbd,0xa3,0x9c,0x3a,0x65,0xfe,0x76,0xcc,0x90,0x15,0x65,0x1d,0x35,0x6c,0xac,0xab,0xea,0x54, - 0xb8,0x10,0x46,0xaf,0x60,0x3c,0x51,0xcb,0x04,0xa3,0xf6,0xf4,0x57,0x17,0x65,0x9d,0xd7,0xc9,0x1e,0x61, - 0x94,0x72,0x9b,0x3f,0xca,0x09,0x38,0x2a,0xec,0xaf,0x76,0xd2,0xcd,0xd9,0x9f,0xaa,0x19,0xc0,0x49,0x83, - 0xf1,0xf4,0x27,0x88,0xd9,0x14,0xcd,0xfd,0x95,0x72,0xf7,0x41,0xb8,0x20,0xaf,0x47,0x1b,0x0a,0xb3,0xf5, - 0x1a,0xd1,0xdd,0x81,0xf4,0xfc,0x5c,0x48,0x7b,0x5f,0x10,0xb2,0xe6,0x5b,0xe4,0xe2,0xb2,0xf1,0xbe,0x81, - 0xca,0xae,0x6b,0x02,0xea,0xd5,0x84,0xeb,0x19,0x90,0x57,0xea,0xaa,0xa7,0xa5,0xeb,0x66,0x60,0x73,0xb1, - 0x24,0xa4,0xc4,0x0e,0xac,0xed,0x59,0xfc,0x2b,0xd6,0xd5,0x34,0x3b,0xf1,0x14,0x41,0x30,0xf3,0x3c,0xe6, - 0xc4,0xcf,0xa2,0x82,0x09,0x71,0x50,0xdd,0x85,0xcb,0x89,0xdc,0xab,0xe9,0x50,0xc7,0x8d,0xb3,0x46,0xa0, - 0xa2,0xa2,0x48,0x53,0x11,0x53,0x7e,0x55,0xa2,0x09,0xc2,0xc1,0x17,0x87,0xde,0x97,0x25,0xe6,0x06,0x2e, - 0x72,0x96,0xe4,0x45,0xc9,0x3d,0x12,0x9a,0xd9,0x1f,0x5e,0x3e,0x9a,0xe9,0xbd,0xba,0xd4,0x0e,0xee,0xce, - 0xd6,0xeb,0x9d,0x13,0xe2,0x17,0x67,0x47,0x97,0x63,0xc5,0x99,0x2e,0x61,0x52,0x2e,0xac,0xec,0x59,0x78, - 0x56,0x7b,0x3f,0x40,0x8d,0xe5,0x7a,0x7d,0x56,0xef,0x98,0xb8,0x18,0x1c,0xa4,0xc4,0xd3,0xab,0x29,0xfb, - 0x7a,0x61,0xbb,0x5a,0x99,0x43,0x9a,0xb7,0xc2,0x8c,0x77,0x9e,0x10,0x2e,0xf6,0xae,0x2f,0x30,0xc8,0xa9, - 0xdc,0x2d,0xd2,0xd9,0xce,0x05,0x36,0x98,0x35,0x4b,0xe0,0x26,0x4e,0x7d,0x6a,0x67,0x93,0x42,0x54,0xec, - 0x70,0x78,0x2f,0x3e,0x18,0x8a,0xc0,0x52,0xbf,0xf5,0xb3,0xd7,0x8e,0x04,0x8b,0xb9,0xf2,0x0f,0xfd,0x73, - 0x08,0xa9,0xdf,0x23,0xd2,0x7c,0x36,0x5d,0x2d,0xe2,0xc2,0x7f,0x46,0xdf,0xa0,0x71,0x5e,0x2b,0xed,0xaf, - 0x2b,0x5a,0x93,0xab,0x47,0xcb,0xa4,0x02,0xe0,0x2b,0x26,0x2b,0xcf,0x8f,0x96,0xc9,0xd1,0xd5,0x18,0xd6, - 0x5e,0x74,0xaf,0xec,0x0f,0x0f,0x1f,0xbd,0xaf,0x8a,0x1c,0x12,0x79,0xf1,0xfe,0xe8,0x70,0xac,0xca,0xd0, - 0x4e,0xe9,0xe2,0xc2,0x5f,0xd8,0x79,0x7c,0x21,0x3f,0x61,0xbd,0x11,0xbc,0xab,0x89,0xd6,0x8c,0x0a,0x25, - 0xf6,0xcc,0xfa,0x7e,0xcb,0xc2,0x56,0x42,0xc5,0x1d,0x4e,0x0a,0xd5,0x6d,0xe9,0xd3,0x25,0xa9,0x7c,0x32, - 0xf1,0xed,0x2d,0x5e,0x62,0x10,0x46,0x04,0xc6,0xd9,0x80,0x2e,0x98,0x73,0x2e,0xd8,0x7f,0x88,0x0b,0x44, - 0x87,0xf2,0x15,0x3d,0xb1,0x0c,0x71,0x38,0x30,0xf9,0x43,0xf6,0xfd,0xc4,0x1b,0xc9,0xd8,0x1b,0x1b,0xe0, - 0x09,0xcd,0x35,0xf5,0x55,0x50,0x74,0xf4,0xb3,0xe4,0xde,0x24,0x9e,0x9a,0xae,0x07,0x25,0x77,0x82,0xe1, - 0x8a,0x9f,0x78,0xcb,0xfa,0x59,0x9a,0xba,0xab,0xa5,0xc3,0x82,0x1b,0x3e,0x3e,0xdd,0x8c,0x8a,0x9c,0x48, - 0xfb,0xe6,0xa0,0x9c,0xf2,0x10,0x91,0x9f,0x0f,0x5f,0x87,0x50,0xe6,0x57,0xcf,0x31,0xcf,0xf4,0x23,0x94, - 0xfb,0xba,0x11,0x85,0x46,0x9e,0x69,0x94,0xe4,0xd0,0x7f,0x2d,0xf6,0x6f,0x67,0x42,0x0c,0xd2,0xf5,0x57, - 0x13,0x94,0x9d,0xf1,0x04,0x65,0x1d,0xce,0x06,0x27,0x22,0xb0,0x3d,0x95,0xfb,0x60,0xde,0xb8,0x87,0xcf, - 0xa0,0xfa,0x4b,0x84,0x8b,0xc6,0x7f,0x1a,0x60,0xaf,0x42,0x9d,0x46,0x30,0x00,0x8a,0x69,0x78,0x35,0xac, - 0xee,0xc5,0xf7,0x04,0x16,0xef,0xbb,0x78,0x97,0xf7,0x16,0xef,0xf2,0x7e,0xec,0x5e,0xf1,0x48,0xae,0xc4, - 0xf1,0x3d,0x0f,0xf5,0xb0,0x6a,0xe4,0x09,0x35,0xf2,0xa4,0x83,0xf3,0x7d,0x52,0x71,0xbe,0x4f,0x98,0xf3, - 0xbd,0x12,0x48,0x7a,0x1b,0x5e,0xb5,0x70,0x2b,0x9a,0x7f,0x3b,0x60,0x1d,0xe1,0xca,0xe4,0xe1,0x4e,0x78, - 0x30,0xbc,0xf3,0xe8,0x2d,0xb1,0x88,0xc6,0x5e,0xe5,0x0e,0xdc,0x3f,0x23,0xe1,0xe8,0xce,0x58,0xd3,0xde, - 0x4f,0x63,0x8c,0xef,0x8a,0x5a,0x55,0xa1,0x6e,0xe1,0xdb,0x95,0xef,0x2d,0xb0,0x7c,0xfb,0xfe,0xbe,0xba, - 0xb0,0x88,0xff,0x81,0x4b,0xe0,0xbc,0xb2,0x16,0x93,0xfd,0x43,0x58,0x19,0xcc,0x89,0xb7,0xe2,0x35,0x48, - 0x7f,0x53,0xce,0xbd,0x56,0x07,0x2d,0x80,0xda,0x87,0x9c,0xbf,0xe0,0x68,0x9e,0xf8,0x1f,0x12,0xff,0x30, - 0xf1,0xcf,0x13,0xff,0xeb,0xc4,0x7f,0x9e,0x8e,0xb4,0x34,0xff,0x5d,0xe9,0x6b,0xc1,0x1a,0xbe,0x05,0x9e, - 0x1a,0xcf,0x7f,0x3b,0x12,0xd7,0x4b,0xac,0x2c,0xce,0xb2,0xab,0xd1,0xeb,0x52,0xa2,0x9b,0xc1,0x6d,0xe6, - 0x26,0xb8,0xde,0x8c,0xb5,0x63,0xe5,0x8b,0x04,0x5e,0xcc,0x5f,0xa6,0x44,0x0b,0xea,0x47,0x8e,0x76,0x78, - 0x11,0x79,0x1f,0xa7,0xd6,0x27,0x67,0x51,0x3a,0x8f,0x1d,0xdb,0x3c,0x55,0x34,0xf1,0xab,0xca,0x2c,0xa5, - 0x57,0xc2,0xb5,0x21,0xab,0xfa,0x5e,0xaa,0xa8,0x88,0x3f,0x61,0x0c,0x4a,0xdf,0x4c,0xbb,0x4e,0xff,0x25, - 0x81,0x53,0x35,0xec,0x4e,0x3c,0x6d,0x3c,0x88,0x42,0x88,0xa4,0x5f,0xe6,0x4d,0x58,0x47,0xe1,0x49,0xee, - 0xde,0xdd,0xe1,0xbf,0xc4,0x88,0x29,0x35,0xcb,0xd1,0xf7,0x70,0x74,0x64,0x2e,0xf3,0xda,0x08,0x7f,0xb1, - 0x58,0x0a,0x31,0xea,0x9a,0x2a,0x51,0xd2,0xc6,0x0b,0x9e,0x97,0xf2,0x6d,0x7b,0x7b,0x32,0xad,0x12,0xbe, - 0x40,0xe0,0x35,0x6d,0x7f,0xa2,0x95,0x3e,0xbf,0x29,0x21,0x03,0x73,0xb4,0xe6,0x88,0x19,0x1d,0xdd,0xbb, - 0x89,0x2b,0xb1,0xe3,0x3c,0x4f,0x79,0xf2,0x7a,0xa9,0x23,0xc7,0x86,0x65,0x15,0x45,0xd6,0xb7,0xbe,0xd9, - 0xaf,0x23,0xab,0x16,0xb7,0xd7,0x5d,0x2f,0xf7,0x4b,0x1a,0xd6,0xaf,0xe9,0xb6,0x42,0x98,0x9b,0x48,0x65, - 0x09,0x45,0xc2,0x4b,0xff,0x2b,0x9e,0xc5,0x8d,0x25,0xf9,0xe5,0x83,0x9a,0x45,0xc4,0x1d,0x1e,0xa9,0x6c, - 0x12,0xf0,0x10,0xde,0x84,0x9b,0xeb,0xd5,0x7a,0xab,0xe6,0xa0,0xed,0xf5,0xbd,0xf1,0xae,0x5b,0x6b,0x39, - 0xd4,0x6f,0x96,0x66,0x45,0x45,0x9b,0xfa,0xf6,0xf5,0x1d,0x26,0xcd,0x18,0x80,0x95,0x6a,0xc4,0x0e,0x54, - 0xcb,0xd9,0x89,0xe5,0x46,0x56,0x59,0xab,0x57,0x8c,0x4a,0x31,0x9f,0xde,0x1a,0x3e,0xf0,0x47,0x0c,0x10, - 0x00,0x1f,0xa8,0x92,0xfc,0x38,0x4e,0x34,0xce,0x2f,0xf8,0x71,0xf7,0x2e,0xe5,0xab,0x0c,0x60,0x7a,0x0d, - 0xb1,0x6a,0x17,0xd8,0x53,0xe3,0xcf,0x04,0xaf,0x12,0xd8,0xf3,0x97,0xc4,0xc7,0xc9,0x0a,0x44,0x2d,0xb6, - 0xb9,0x3e,0xca,0xe2,0x58,0x37,0x86,0x58,0x80,0xbf,0xf2,0xd3,0xa8,0x52,0x2d,0x11,0x17,0x2a,0x96,0x40, - 0x9d,0x03,0xd4,0x9f,0xd0,0xca,0xe4,0xc9,0x1c,0x9e,0x60,0x9f,0x27,0x05,0x94,0x23,0x43,0x27,0xa5,0x7d, - 0x50,0x3a,0x77,0xfc,0xa6,0x3a,0x95,0x0c,0x84,0x8b,0x6f,0x24,0xc1,0xf9,0x43,0x32,0x72,0xd3,0xea,0xd8, - 0xe3,0x8a,0xbb,0x43,0xdd,0xda,0xa7,0xa1,0x51,0x29,0xcc,0x36,0x9e,0xd7,0x6c,0x29,0xcc,0x47,0x59,0x20, - 0x3d,0x77,0xea,0x17,0xb4,0x66,0x38,0xcc,0x1b,0x2b,0xe9,0xde,0x3a,0xe1,0xd6,0x40,0xf3,0xd1,0x6d,0x43, - 0xed,0x5a,0x20,0xda,0xcb,0xd7,0xb7,0x54,0x53,0x13,0xe9,0x9c,0x66,0x57,0x93,0x6a,0xe6,0x50,0xad,0x48, - 0x3b,0x36,0x57,0x31,0x04,0x7c,0x1a,0x6f,0x1f,0x1f,0x43,0xcd,0x77,0x04,0x35,0x6c,0x18,0xa6,0xac,0xbb, - 0x20,0x68,0x8e,0xf2,0xe0,0x69,0x96,0xc1,0x19,0xae,0x3f,0x29,0x0a,0xf3,0x0d,0xe0,0xd2,0xc5,0x80,0x48, - 0xf4,0xb7,0xf5,0x3a,0xab,0x52,0xac,0xb7,0x55,0xbb,0x8c,0x7e,0x57,0xb5,0x4b,0x35,0xd2,0x5a,0x0f,0xb7, - 0x76,0xd9,0x8e,0x74,0x19,0x6e,0x47,0xd2,0xd6,0xb2,0x8d,0x0e,0xa7,0xab,0x9c,0xdf,0x05,0x83,0x23,0xb1, - 0x6b,0xf3,0x55,0xba,0x28,0x76,0x8c,0x37,0xfe,0x9f,0x7a,0x81,0x6a,0x8f,0xb5,0x62,0x2d,0xf7,0x5d,0x52, - 0x33,0xa1,0x6b,0xda,0x82,0xb5,0x8c,0xc7,0xdb,0x36,0x61,0xca,0x73,0x16,0x0b,0x56,0xe5,0x95,0xbe,0x3b, - 0xb8,0x1f,0xa3,0xf0,0xdf,0x20,0x21,0x24,0xb0,0xb5,0x63,0xb6,0x2a,0x13,0x31,0xec,0x0d,0xd4,0x0e,0x54, - 0xfc,0x56,0xbb,0x0d,0x11,0xfc,0x87,0x9a,0x23,0x1c,0x7a,0x95,0xfb,0x4a,0xeb,0xd1,0xcc,0xd0,0xdd,0xb6, - 0xed,0x68,0x25,0x10,0x50,0xf6,0x63,0x4f,0x4b,0x78,0xe6,0x61,0x6f,0x03,0x55,0x96,0xf6,0xb2,0xca,0x14, - 0x1a,0xad,0x9d,0xce,0xf9,0x19,0x28,0x2a,0xd3,0x11,0x60,0x9d,0x93,0x93,0xaa,0xbb,0x5d,0xa7,0x6f,0xdc, - 0xca,0xf5,0x9d,0x5d,0x67,0x18,0xb1,0x18,0x4e,0x94,0x6c,0xf9,0x7b,0x14,0x59,0x01,0x4e,0x8b,0x3e,0x2e, - 0x08,0x7c,0x3a,0x41,0xd1,0x67,0x59,0x6e,0x90,0xbb,0x91,0xc8,0x3f,0xf0,0x00,0xad,0xde,0x3e,0x24,0xc5, - 0x18,0x14,0x15,0xde,0x88,0x53,0xb8,0x0e,0xfe,0xf2,0xbf,0x12,0x36,0x23,0x74,0xe5,0x01,0x11,0xf6,0x95, - 0x03,0xe5,0x68,0x86,0x96,0xb6,0x1a,0x62,0xf8,0x8b,0xb6,0x2c,0x5a,0xd5,0x8c,0xdd,0x17,0x58,0x84,0x95, - 0x90,0xa6,0xb2,0x8a,0x55,0xd8,0x79,0x3c,0xa7,0x36,0x92,0xb6,0x21,0x7c,0x07,0xb8,0x45,0x90,0x27,0xa0, - 0x8b,0xaf,0x8b,0xa8,0x86,0x75,0x3c,0x9f,0x08,0x93,0x85,0xc2,0x51,0xee,0x59,0x18,0xf9,0x17,0xe1,0xc2, - 0xbf,0xc0,0x14,0x08,0xa3,0x9d,0xe1,0xef,0x7a,0x7d,0x81,0xb5,0xe0,0x9f,0x42,0xdf,0xed,0xfc,0xc6,0xd2, - 0x04,0x77,0x67,0xd1,0xe5,0xf3,0xb5,0x2b,0x55,0xbb,0xf4,0xac,0x58,0x70,0x01,0xac,0x59,0xb8,0x68,0x02, - 0x89,0x18,0x8c,0x4c,0x78,0xee,0x4e,0xb6,0x2a,0x77,0x13,0xd6,0xdc,0x4f,0xea,0xce,0x1b,0x14,0x14,0x00, - 0x6f,0x7e,0xef,0xce,0x7c,0x27,0x9a,0x11,0x54,0xff,0x28,0xea,0x15,0xb6,0xa9,0xa8,0x55,0x12,0xf1,0xd2, - 0xeb,0x7e,0x2c,0x37,0x9e,0xaf,0xc1,0x07,0x9d,0x25,0xe9,0x6e,0x26,0xa6,0x00,0x22,0xf0,0xf8,0xcd,0xad, - 0x84,0x55,0x2b,0x11,0x98,0xfa,0x4b,0xdb,0x6c,0x0f,0xfe,0x81,0x87,0xdf,0x43,0x1a,0xc3,0xdd,0x7f,0x2d, - 0x1a,0x23,0x4b,0xcf,0xe7,0x34,0xc1,0x58,0x98,0x3d,0x0c,0xd2,0x54,0xfa,0x0c,0x1a,0x61,0x84,0x16,0x9b, - 0x43,0xa5,0x2d,0x9b,0x86,0xf1,0xa6,0x22,0x9b,0x33,0x61,0x5a,0xfc,0x0b,0x42,0x9f,0xff,0x4e,0xb0,0x28, - 0x80,0x47,0x85,0x37,0xf8,0x41,0xdf,0x42,0x30,0xc0,0xb0,0xde,0x50,0x4c,0xfa,0x7a,0xff,0x66,0x2e,0x56, - 0xfc,0xb9,0xff,0x40,0x78,0xa5,0x52,0xa8,0x08,0xfe,0x24,0x8a,0xda,0xfc,0xfa,0x16,0xca,0xc1,0xc1,0xb5, - 0x20,0x99,0x7f,0x27,0x5d,0x88,0xa5,0x61,0xd9,0xce,0xf8,0xc1,0x36,0x12,0x91,0xad,0x93,0x40,0xb9,0xcb, - 0x28,0x45,0x10,0xdc,0x6e,0x77,0x48,0x5c,0x69,0x99,0xc7,0x97,0xc6,0x71,0xa1,0x18,0x89,0x6a,0xe1,0x73, - 0xd2,0x85,0xb6,0xd8,0xa3,0x6a,0x56,0x2f,0x09,0x3e,0x3b,0xaa,0x4e,0x4d,0x41,0x6c,0x51,0xf1,0xc8,0x70, - 0xe5,0x85,0x16,0x3d,0x4e,0xc2,0xe4,0xa8,0x18,0x0f,0x27,0x12,0x3f,0x1a,0xa3,0xd8,0x09,0x27,0x22,0x7c, - 0x07,0x67,0xa0,0x4e,0xf2,0xa4,0x7e,0x92,0x09,0x79,0x5c,0xe2,0x45,0xc4,0x01,0x6c,0x67,0xc6,0x5a,0x34, - 0x3d,0xe2,0x72,0xe3,0x70,0xe2,0x53,0x0d,0x75,0x9c,0x27,0xdd,0xc7,0x39,0xf2,0x20,0xf7,0xb0,0xbc,0x89, - 0xaf,0x30,0xe0,0x05,0xfe,0x99,0xd1,0x50,0x67,0x95,0x04,0x6c,0xa6,0x87,0x3a,0x0d,0xf3,0xa3,0xd9,0x78, - 0x38,0x6d,0x9d,0x83,0xc8,0x57,0x69,0x44,0xb3,0x86,0x53,0x26,0xf7,0xe7,0x71,0xf9,0x34,0x5b,0xb1,0x98, - 0xed,0xd9,0x22,0x21,0x00,0xfb,0x89,0xd6,0x1a,0x7e,0xd8,0x8f,0xa6,0x3c,0xc4,0xd1,0x4a,0x46,0x3d,0xf5, - 0x82,0x85,0xfe,0xda,0x28,0x0b,0xdc,0x65,0x19,0xb2,0x4e,0x25,0xe4,0x90,0x2b,0x65,0xba,0x24,0xbc,0xd3, - 0x34,0x5c,0x98,0x48,0x05,0xba,0x44,0x46,0xb7,0xbf,0xed,0x9d,0xa3,0x65,0x7f,0xdd,0xed,0x69,0xc0,0xf4, - 0x05,0x2d,0x0e,0x96,0x83,0x59,0x8e,0x3a,0x4c,0xa6,0xa6,0xa9,0xa6,0x5b,0x2c,0x9a,0x6d,0x40,0xf1,0x4b, - 0x7d,0xf7,0x28,0x90,0x37,0xfe,0xf9,0xd9,0xc0,0xcb,0xb9,0x44,0xc4,0xe7,0x5d,0x56,0xb6,0x1c,0x6a,0xbe, - 0x58,0x59,0x32,0x9d,0x45,0xc5,0x4b,0x4a,0x77,0x63,0x65,0xa0,0xef,0x97,0x42,0x2e,0x6b,0x15,0xc3,0xef, - 0x98,0x4d,0xd0,0xbf,0xfe,0xac,0xfd,0xfa,0xb7,0x76,0xf8,0x0f,0xe7,0x1d,0x0b,0x42,0x95,0x86,0xc1,0x83, - 0x6e,0xfe,0x20,0x9b,0xcd,0x8a,0xb8,0xfc,0x2e,0x4e,0xe6,0x67,0xa5,0x55,0xab,0xa9,0xb4,0x28,0xfb,0xc7, - 0x6b,0x5c,0xb9,0x10,0xc3,0x48,0x60,0x5b,0xc9,0xb4,0xd3,0xf0,0x10,0xc4,0x1b,0x9c,0x9f,0x0d,0x8c,0xde, - 0x4f,0x98,0x0f,0x2c,0x05,0x29,0x95,0x52,0x01,0xc6,0x73,0x45,0x4c,0x70,0xd0,0xe9,0x36,0x97,0xf3,0x4d, - 0x02,0x4f,0xa0,0xbc,0x5c,0x55,0xc4,0xc1,0x1e,0x44,0x3e,0xd7,0x44,0x1f,0xef,0xec,0x99,0x6e,0xee,0xa8, - 0xc0,0x9d,0x12,0x35,0x48,0xc7,0xeb,0xf2,0xd8,0x8b,0xae,0x00,0x46,0xab,0x61,0xd6,0x79,0xd0,0x6d,0x33, - 0x9c,0x9c,0xcb,0xf0,0xd9,0x4c,0x1d,0x8c,0x93,0x72,0xd1,0x16,0x5c,0xab,0xc5,0x6f,0xf0,0xe5,0xb8,0xd4, - 0xdf,0x25,0x46,0x24,0x58,0xdd,0xea,0xaa,0x78,0x1d,0xc9,0xab,0xc4,0xa1,0x5e,0xb9,0x09,0x1e,0xcc,0x58, - 0x6a,0xe3,0xd1,0x5e,0x5b,0x37,0x3d,0x03,0x06,0x6e,0xc6,0xae,0xd4,0xce,0xdd,0x39,0x2d,0x45,0x17,0xca, - 0xf3,0x3f,0xa8,0x0d,0x48,0x3b,0xa9,0x66,0xe3,0x14,0xa3,0xa6,0x1c,0x91,0x6a,0xce,0xee,0x99,0x28,0xa2, - 0xda,0xb6,0x74,0x54,0xb4,0xa6,0x71,0xa5,0xe1,0x48,0x4d,0x26,0x64,0xb1,0x98,0xd9,0xd9,0x0d,0xac,0xc4, - 0xdf,0xf0,0x83,0xfd,0x2c,0x99,0x0f,0xac,0xc8,0xb8,0xe1,0xef,0xb9,0x5f,0x65,0xd4,0x62,0xf2,0x86,0x45, - 0xd2,0x99,0x05,0xa1,0x5a,0xf8,0xad,0x5d,0xad,0x11,0x93,0x37,0xfc,0x29,0xae,0x55,0xac,0x07,0xf1,0x6d, - 0xc5,0x48,0x79,0x5e,0x51,0x6c,0xd8,0xa9,0x02,0xa6,0x0c,0xb5,0xbd,0x03,0xc1,0x57,0x97,0xbc,0x29,0x54, - 0x0b,0x15,0x7d,0xbd,0x97,0xfc,0x43,0x59,0x1f,0xdf,0x66,0x89,0xc0,0xd6,0xd4,0x0a,0x1b,0xef,0x3a,0x30, - 0xd5,0x1e,0x71,0x75,0x76,0x60,0x5e,0x59,0xfc,0x1a,0x65,0x3f,0x48,0xb6,0xeb,0x93,0x80,0x2f,0xe4,0xad, - 0x45,0xb5,0x91,0x84,0xb4,0xb9,0xd7,0xae,0xad,0x8e,0x44,0x69,0x07,0x6c,0xda,0xf8,0x97,0x30,0xac,0x34, - 0x2e,0x14,0x0d,0xd5,0x45,0xcc,0xb0,0x57,0xcf,0xb3,0x8c,0xd8,0x7f,0x48,0xd8,0x6a,0xd2,0x72,0x5d,0xa2, - 0x11,0x26,0x94,0x0a,0x9f,0x26,0xc1,0xbc,0x9e,0x2d,0xae,0xe8,0xba,0x23,0x65,0xb5,0x15,0xe5,0xd9,0x7b, - 0x8f,0xed,0x1b,0x5c,0x2e,0x6f,0xe6,0xc9,0x1a,0x69,0x61,0x9a,0xb3,0xef,0x97,0xb8,0x1e,0x06,0xbb,0x32, - 0x71,0xd7,0x1e,0x06,0x6b,0x1c,0xa4,0xf2,0xe4,0x54,0x39,0x1d,0x71,0xc5,0x74,0x63,0x6e,0xf4,0x87,0x7c, - 0x44,0xf8,0xf5,0x95,0xc5,0x5a,0xe5,0x14,0x26,0x6e,0x7b,0xe0,0x8e,0xeb,0x1e,0xb8,0xb5,0x43,0x61,0xa8, - 0x41,0xd1,0x52,0xfc,0x0a,0x55,0x2a,0xed,0xfc,0x1e,0xfa,0xfc,0x6f,0x2a,0x8f,0x04,0xae,0x35,0xa6,0xaf, - 0xa1,0x14,0x22,0x61,0xb0,0xef,0xde,0xfd,0x3e,0xc5,0xff,0x07,0x70,0xa3,0x05,0xba,0x0d,0xaa,0xcc,0x6f, - 0x60,0x97,0xb1,0x2f,0x07,0xf3,0xfb,0xc4,0xff,0x16,0xca,0x94,0xd7,0xc7,0xd7,0xae,0x3b,0x0a,0x06,0xeb, - 0xe3,0xd4,0xeb,0x8f,0xbc,0xe3,0xcd,0xf1,0x66,0x6f,0xee,0xff,0x0b,0xda,0xef,0xbb,0x83,0xcf,0xfa,0xa3, - 0x3f,0xee,0x5c,0x6f,0x5c,0x6f,0x7d,0x74,0x3c,0x3e,0xde,0x3b,0x3e,0x1e,0x53,0xde,0xef,0xdd,0x2a,0xec, - 0x7c,0x85,0x68,0xed,0xed,0x7f,0x25,0xbe,0x73,0x7c,0x7c,0xe7,0xae,0xc3,0xe6,0xcb,0x50,0x34,0x6f,0xe7, - 0xd8,0xab,0x2b,0xfe,0x52,0xdc,0xb2,0xef,0xa8,0xc1,0xc8,0x68,0x9c,0x7e,0xea,0x3b,0x73,0x48,0x02,0xfd, - 0xdf,0x60,0xe6,0xc7,0xe2,0x7d,0xf8,0x34,0x0d,0x8e,0x1c,0x4b,0xee,0xef,0x8c,0x7d,0x83,0xb2,0x1b,0x66, - 0x1e,0xec,0x5c,0x6b,0x00,0x2f,0x10,0x0a,0x45,0x26,0x22,0xaf,0x11,0x83,0xdb,0xa1,0x08,0xb6,0xac,0xa6, - 0xc2,0xef,0xdf,0xbe,0x7e,0x45,0x09,0x00,0x6c,0xc4,0x70,0x4c,0xb5,0x1b,0xf3,0x30,0xb7,0x2a,0xc2,0x51, - 0x2e,0x44,0x29,0x50,0x8a,0x41,0xc2,0xd3,0x84,0x09,0x8e,0x30,0xc7,0xf6,0xc7,0x29,0xdc,0xb3,0x76,0x70, - 0x9f,0x8e,0x63,0xa9,0xf6,0x57,0x5d,0xe2,0xb1,0xac,0x1f,0xda,0xf3,0x09,0x9c,0x7e,0xad,0x44,0xdf,0xf1, - 0x61,0xa5,0x59,0xeb,0x4b,0xd5,0x9a,0x98,0xf2,0x76,0xa6,0x54,0x28,0x89,0x2e,0xfe,0xcf,0xee,0x65,0xe3, - 0x27,0x92,0x4f,0x5f,0x36,0x46,0xff,0x8d,0x65,0xe3,0xa6,0x9a,0xcb,0xf6,0x3e,0xc1,0xca,0xd5,0x97,0x4e, - 0x2a,0x5b,0x4b,0xc7,0x09,0x7f,0x75,0xe9,0xb8,0xdb,0xda,0xd2,0x71,0x8a,0xb5,0x74,0xfc,0x5b,0x2f,0x9d, - 0xdd,0x97,0xa9,0x85,0xf2,0xae,0x54,0xa8,0x72,0xfb,0xb0,0x3a,0x90,0xc5,0x8b,0x33,0x7e,0x6c,0x82,0xe5, - 0x1f,0x5b,0x81,0xc2,0x9c,0x32,0x5b,0x28,0xab,0x46,0x31,0xdd,0x53,0xd6,0x98,0x62,0x61,0x98,0x14,0x8c, - 0x99,0xf1,0xf4,0x44,0x53,0xb1,0xec,0x45,0x6b,0xa6,0x8f,0x62,0x20,0x79,0x75,0x0a,0xb7,0x43,0x65,0x26, - 0x36,0xd3,0xca,0xc2,0x11,0xe6,0x9f,0x25,0x4c,0x3b,0xb5,0x98,0x73,0xc9,0x26,0x8e,0x30,0x0f,0x64,0x43, - 0x47,0x31,0x7d,0xcc,0x55,0x4b,0x38,0x5c,0x32,0xc2,0x4e,0x13,0x54,0x19,0x72,0x65,0x6c,0xc8,0x16,0x93, - 0x9d,0x86,0x95,0xe8,0xb6,0x6e,0xd9,0xc8,0xb6,0xa8,0xca,0x10,0x55,0x5b,0x52,0xb6,0x2c,0x52,0x95,0x8d, - 0x2b,0x9b,0x58,0x76,0x58,0xb8,0x62,0xac,0xda,0xfe,0x55,0xfa,0xa1,0xc5,0x62,0xbb,0x5a,0x65,0x83,0x89, - 0xb7,0x0c,0x6d,0x3c,0xc9,0xcb,0xd4,0x34,0xc7,0x94,0x65,0x13,0xf3,0x54,0xb5,0x78,0x62,0x48,0xa1,0x4d, - 0x2d,0x2b,0x2b,0xd0,0xc6,0x12,0xb1,0x65,0x2e,0x2d,0x14,0xaf,0x35,0xd4,0x00,0xb3,0x70,0xef,0x8f,0xe3, - 0xe2,0x33,0xf7,0x88,0xfe,0x75,0xee,0x3d,0x7a,0x7c,0xbc,0x17,0x8e,0xfb,0x1e,0xe1,0x1a,0x24,0x86,0x1e, - 0xfe,0x1d,0x05,0x0e,0x65,0x3b,0xe3,0xcf,0x08,0xed,0xac,0xef,0xd1,0xe7,0x3d,0xfa,0xbc,0xd7,0x5f,0xab, - 0x3a,0xe1,0xa3,0xc7,0xff,0x45,0x55,0x3c,0x6f,0xb4,0xe7,0x27,0x59,0xe8,0x1c,0x45,0xbb,0x7f,0x3e,0xd9, - 0xfd,0xfd,0x64,0x7c,0x74,0x7c,0x7c,0x75,0x7c,0xbc,0x7b,0x7c,0x3c,0x18,0x7f,0xe6,0xf8,0x19,0x65,0x01, - 0x87,0x39,0xfd,0x24,0xeb,0x13,0xa6,0x0b,0xbc,0x91,0x7c,0x7a,0x8e,0x1f,0x65,0xa1,0x85,0xec,0x9c,0x3f, - 0x1e,0x39,0xfd,0x2c,0x23,0x0e,0x4d,0x0f,0xee,0x78,0x6f,0xe4,0x3d,0xde,0xa3,0x7d,0x69,0x14,0x3b,0x3e, - 0xde,0x43,0xc9,0xbe,0x73,0xf4,0xc7,0xe3,0xf1,0x67,0x8f,0x69,0x3e,0x2b,0x54,0x79,0xb4,0xf3,0xfc,0xf5, - 0xb3,0xc3,0xdf,0xde,0x7c,0xdd,0x43,0x7a,0xff,0xf1,0x5e,0xe2,0x2f,0x24,0x1d,0x16,0x3c,0x33,0xf9,0x3c, - 0x3e,0xda,0xf3,0x97,0x19,0xde,0x8e,0x9d,0xf7,0x8e,0xc1,0xc2,0x7b,0xef,0xdd,0x01,0x4d,0x64,0xee,0xd7, - 0x8f,0x3c,0x15,0x74,0xc0,0xdc,0x97,0xea,0xe9,0xe5,0x2c,0xf3,0x2f,0x33,0x62,0xa5,0xfd,0x79,0xe6,0x7f, - 0xc8,0x08,0x82,0xfc,0x93,0xcc,0xbf,0xca,0xfc,0xc3,0xcc,0x3f,0xcf,0xfc,0xf7,0x99,0xff,0x2c,0xf3,0x9f, - 0x30,0x08,0x2a,0xfb,0x5d,0x65,0x18,0xad,0x5f,0x3d,0xf8,0x12,0x7c,0x9b,0xe1,0xe5,0xf8,0x0e,0xfd,0xeb, - 0xdc,0x5d,0x94,0x43,0x27,0x70,0x1e,0xd1,0xa1,0xbc,0x3b,0xe7,0xcf,0xc7,0xf8,0x04,0x7c,0xd2,0x8f,0x7b, - 0xce,0x3d,0xfa,0x11,0x5d,0x2c,0x91,0x71,0x17,0x19,0xff,0x38,0xd8,0xc7,0xf7,0x71,0xca,0x3f,0xbe,0xe2, - 0xef,0xd2,0xd9,0xf8,0xaf,0x69,0x6e,0x77,0x69,0x91,0x89,0x01,0x9e,0x97,0x6b,0x54,0x5f,0x53,0x35,0x6f, - 0x48,0x13,0xfa,0xba,0x33,0x6b,0x4d,0x2d,0xad,0xff,0xf1,0x15,0x97,0x78,0xc3,0x03,0x86,0xe6,0x43,0x7d, - 0x9c,0xef,0xb2,0x6e,0xd2,0x82,0xb0,0xcc,0x9b,0x4c,0x7c,0x28,0x1c,0xb3,0x9c,0xa5,0x84,0xe7,0x22,0xff, - 0x39,0xd6,0xf7,0x3f,0xd6,0x7f,0x5c,0xee,0x66,0x69,0xb0,0xe7,0xbf,0xc0,0xcf,0xcb,0xdd,0x35,0x92,0xe8, - 0xe7,0x8f,0xf4,0xd3,0x1d,0x7c,0x46,0x17,0x6a,0xd1,0xa7,0xd1,0x24,0xe9,0x3a,0x9b,0xf1,0xf7,0xe0,0x33, - 0x6f,0xcf,0xff,0x86,0x72,0x7d,0x82,0x2b,0x9f,0xae,0xdb,0x31,0x41,0x19,0x95,0xb0,0x7f,0x7a,0xa3,0x3b, - 0x7b,0xfe,0x2b,0x86,0x0a,0x77,0x7d,0xec,0xdd,0xa1,0x41,0xbf,0xcc,0xd8,0x3c,0xec,0x33,0xfa,0xe1,0xff, - 0x84,0x9c,0x00,0x3d,0xb3,0xe8,0x79,0xcf,0xff,0x95,0x12,0x8e,0x07,0x47,0x7f,0x0c,0xc6,0x7d,0x2a,0xfa, - 0x34,0xeb,0x34,0xde,0x71,0xbf,0x4f,0xc2,0xef,0x93,0x5b,0x0c,0x95,0xbc,0x4a,0x1b,0x22,0x8c,0xfd,0xef, - 0x13,0xdb,0x38,0x91,0x2e,0xe1,0x5f,0xd0,0xf3,0xfb,0x8b,0x45,0x5a,0x04,0xaf,0xde,0x1e,0x4f,0xfb,0x7b, - 0xfe,0xcf,0x48,0xe1,0x6f,0x1a,0xc7,0x77,0x59,0x78,0xf4,0x5b,0x42,0x77,0x8e,0x7f,0x4d,0xcb,0x7b,0x78, - 0xc3,0xdd,0x22,0xb2,0x24,0xed,0x55,0x42,0x9e,0x86,0x34,0x0b,0xc3,0x8f,0xfb,0x2f,0xa3,0x25,0x8b,0x64, - 0x8f,0x9c,0xcb,0x5d,0x7e,0x4c,0x71,0xc6,0x90,0xce,0xe2,0x27,0x4f,0x1a,0x04,0xa1,0x33,0x5e,0xaf,0x29, - 0x45,0x7d,0x6b,0xd5,0x50,0x75,0xdb,0x70,0x22,0x3c,0x77,0xc9,0xcd,0x75,0xb9,0x9b,0xcc,0x64,0x9b,0xb3, - 0x30,0x19,0x39,0xd4,0x16,0x9d,0x4a,0x1c,0xca,0x80,0x58,0xc4,0x28,0x14,0x9a,0x5c,0x17,0xc5,0x73,0xae, - 0xb2,0x5b,0xae,0xa5,0x99,0x36,0x26,0xe1,0x6f,0x4c,0x91,0xff,0xab,0x64,0x5f,0x59,0xac,0x6d,0xc4,0x1d, - 0xfa,0xe2,0x3a,0xe3,0x34,0x7b,0x4f,0x7d,0x7f,0x8b,0x74,0x28,0xed,0x83,0x86,0x9d,0x10,0x82,0x56,0xe4, - 0xde,0x20,0x99,0x11,0x8e,0x70,0xfa,0x39,0xf5,0x4f,0xd3,0xbf,0xa7,0xab,0xdc,0xa3,0x43,0xee,0xff,0x8e, - 0x4a,0xd7,0xf1,0xfb,0x65,0x80,0x72,0x82,0xbf,0x83,0x89,0x3a,0x8f,0x2b,0xd5,0x2f,0x0d,0x6a,0x85,0x41, - 0xd1,0xea,0xca,0x80,0x4a,0x4e,0x50,0x43,0xc8,0xa3,0x69,0x92,0x49,0xff,0x2b,0xf4,0x5f,0x35,0x69,0xf7, - 0xca,0xa5,0xb8,0x4b,0xe9,0x63,0xa5,0xfa,0x58,0xa8,0x3e,0xb4,0xcf,0xa2,0xd2,0x5d,0x34,0xbb,0xa2,0x04, - 0x59,0x74,0x18,0x3f,0x7c,0x8b,0xdf,0xb5,0x5e,0x12,0xd5,0xe2,0x02,0xee,0xf1,0x47,0x93,0x01,0x96,0x0e, - 0xa1,0xe8,0x40,0xe9,0xc8,0x2f,0x5a,0x00,0x38,0xa1,0x06,0x67,0x37,0xf6,0xff,0x24,0xcc,0x40,0xd5,0x88, - 0x63,0x00,0xd8,0x41,0x7e,0xaf,0x5f,0xb8,0xbf,0xcb,0xfc,0x8a,0x95,0x08,0xd4,0xa3,0xda,0x6d,0xcf,0x68, - 0xf6,0x1b,0x6a,0x26,0xb0,0xc5,0xde,0xfd,0x34,0x58,0xf1,0xdb,0xab,0xb8,0x37,0x34,0xbc,0x88,0x91,0xa1, - 0x97,0x4a,0x99,0xcb,0x57,0xa1,0x75,0xab,0xf7,0xcb,0xcc,0xdb,0xe9,0xee,0xf9,0x1e,0xab,0x08,0xdc,0xd1, - 0x1e,0x38,0x7e,0x89,0x16,0xbd,0xb0,0xd7,0x88,0xac,0xae,0x9e,0x14,0xe4,0x11,0xf3,0x0e,0x3b,0x90,0x55, - 0x11,0x1b,0xcd,0x83,0xa6,0x69,0x3c,0xab,0xcc,0xe3,0x07,0xba,0xd1,0x8d,0x87,0x37,0x50,0xd7,0x2e,0x83, - 0x5e,0x2f,0xb9,0x2f,0xe7,0x44,0xdc,0xbd,0x40,0x25,0x28,0xeb,0x8d,0xa8,0x9a,0x24,0xf4,0x02,0xfa,0x54, - 0x4f,0x6f,0xd2,0xe0,0xbd,0xbe,0xcb,0x31,0x18,0xc4,0x8e,0x7e,0xe4,0x9c,0xa4,0x2e,0xe5,0xe3,0x0c,0xd0, - 0x1f,0x08,0x89,0x08,0x04,0x9c,0x61,0x6a,0xbf,0x68,0x42,0x81,0xbe,0xef,0xf4,0x9c,0x7e,0x54,0x22,0xd4, - 0x4d,0x7d,0xec,0xfa,0x51,0x95,0x3a,0xad,0x2f,0x40,0x50,0xff,0x4d,0xf8,0xd2,0xf1,0x0c,0x57,0xc4,0x66, - 0x3b,0x95,0x4d,0x68,0x85,0x07,0x32,0xc2,0xb0,0xe6,0xf8,0xd0,0xef,0x68,0xdb,0x92,0x5b,0x93,0xa0,0x2d, - 0x96,0xf3,0x2e,0x6b,0xe0,0xad,0xd7,0x0e,0xfa,0xc1,0x99,0x56,0x78,0x20,0x5f,0xc5,0xbb,0x55,0x26,0x7e, - 0x3a,0x74,0xac,0x25,0x73,0x16,0xe1,0x54,0x57,0xb9,0xfc,0xdb,0x19,0xfe,0x67,0x2c,0x2b,0x20,0x4e,0x70, - 0x7c,0xa7,0x6e,0x4a,0xe2,0xf4,0x89,0x4d,0xf1,0x46,0x27,0x89,0x7c,0xf9,0x74,0x84,0xfa,0xcc,0x87,0x3b, - 0x7d,0x57,0xda,0xc7,0xd8,0x47,0x4e,0xa0,0x4a,0xd2,0xf2,0x06,0x27,0xff,0x36,0x85,0x23,0x24,0x11,0x93, - 0x57,0x5f,0x66,0x47,0xa0,0x28,0x0a,0xa5,0xd8,0x1d,0x70,0xaf,0xb5,0xc5,0xa6,0xa4,0x49,0x88,0xe4,0x81, - 0x1a,0xd7,0xc8,0x95,0xb6,0xd0,0x0d,0x71,0x08,0x1d,0xc6,0xb0,0xd4,0x9c,0x42,0x8a,0x77,0xee,0x5c,0x52, - 0xc3,0xae,0x6c,0xb9,0x8c,0xd7,0x09,0x32,0x8f,0x3b,0x4a,0x42,0x9a,0x09,0x15,0xa5,0xcf,0x4b,0x6e,0xc4, - 0xee,0xc4,0xbb,0xa6,0x02,0x8f,0xf6,0x19,0x5d,0xd2,0xb8,0x68,0x00,0x26,0xdc,0xf6,0x11,0x95,0x1f,0x7b, - 0xa2,0xfb,0x82,0x52,0xb4,0x00,0xb5,0x62,0xda,0xfd,0x0b,0x65,0x79,0xba,0x4e,0x95,0x4e,0xa9,0xfd,0x03, - 0xe8,0x11,0x48,0x7d,0x03,0x5f,0x77,0x26,0x0c,0x87,0xce,0xc7,0x41,0x8b,0x60,0xba,0xbf,0x09,0x2a,0xad, - 0xed,0xb6,0x36,0xcb,0xa5,0x3a,0xad,0x45,0x43,0xe8,0x86,0xfa,0xee,0xf1,0xe0,0xb3,0x8f,0x01,0x71,0x80, - 0xa0,0xa5,0x13,0xb2,0x15,0xab,0x34,0xf0,0x15,0xe1,0x35,0xf6,0x1f,0x8f,0xdb,0x4b,0xa2,0x06,0xc3,0xef, - 0xb6,0x9a,0x17,0x02,0x20,0xc1,0x8e,0x9b,0xae,0xa5,0x1d,0x59,0x15,0x0c,0x0a,0xba,0x7d,0xfe,0x2a,0xcc, - 0x46,0x7a,0x94,0x81,0xca,0x80,0x0e,0x1a,0x41,0x6f,0xa0,0x46,0xe5,0x2f,0xc2,0xc6,0xb1,0x96,0xf5,0x19, - 0x02,0x5d,0x77,0xe7,0x29,0xab,0x71,0x78,0x2c,0x91,0x32,0xbc,0x40,0x0b,0x5e,0x99,0xa1,0xbc,0x59,0xf1, - 0x8a,0x2c,0xbc,0xe1,0x84,0x0a,0xd0,0x6d,0x07,0xb0,0xaa,0xb5,0xa3,0xf4,0x4c,0xcc,0x23,0xe5,0xd0,0xe9, - 0xcf,0x3c,0x5f,0x76,0x42,0xfa,0xf7,0x1d,0x7d,0x7e,0xd4,0x6a,0xaf,0xfc,0x59,0x25,0x59,0x71,0x8b,0xf5, - 0x1a,0x0a,0xd3,0xb2,0x0f,0xa7,0x8b,0x15,0xdd,0x4e,0x4e,0xfd,0xe9,0xca,0xd1,0xe6,0x82,0xd5,0x46,0xec, - 0x7c,0x9d,0xd6,0xc5,0x84,0x84,0x49,0x3b,0x71,0xbf,0x79,0x85,0x65,0x1a,0xb1,0xc5,0x18,0x5f,0x8a,0x06, - 0x83,0x0c,0xd7,0x22,0x91,0x00,0x3c,0x05,0x86,0x2d,0x25,0x78,0xf0,0x1b,0xe6,0x79,0x6e,0x6e,0xc2,0x10, - 0x5d,0x9d,0x0d,0x6c,0x88,0xb1,0x7c,0x43,0xf4,0x54,0xd4,0xe5,0x92,0x02,0x84,0xac,0x72,0xc0,0x05,0x61, - 0x25,0x71,0x45,0x28,0x17,0x13,0xd5,0x5e,0xc9,0x49,0x83,0xdf,0x73,0x38,0xdc,0x79,0x1a,0xff,0x18,0xcf, - 0xca,0xd7,0xcb,0x38,0x45,0x91,0x32,0xf3,0x6b,0x4b,0x11,0x14,0x89,0xdf,0x90,0x85,0x06,0x3f,0xc5,0xbe, - 0x25,0x3c,0xf8,0x2e,0x23,0xfe,0x61,0xba,0x9a,0x74,0xab,0xdc,0x70,0x2c,0x47,0x3e,0xe5,0x3a,0x40,0x96, - 0x0e,0xf9,0xe7,0xb1,0x47,0x88,0xc1,0xbb,0x2c,0x21,0x30,0xf1,0xb1,0x22,0xff,0xee,0x26,0x51,0x7b,0x70, - 0xf4,0x02,0x68,0xe7,0x3b,0x1b,0xf0,0x0f,0xc9,0xba,0xaf,0x4f,0x82,0x4f,0xbc,0x4b,0x92,0x2a,0x77,0x1e, - 0xbe,0x79,0x18,0x93,0xe8,0x42,0x7d,0x37,0x1e,0xe1,0xc4,0xc6,0xf0,0x8c,0x0a,0x81,0xd1,0x0f,0x86,0xe5, - 0x3b,0xbe,0xba,0x73,0x32,0xee,0xaf,0x8f,0x89,0xc2,0xf6,0xc6,0x9f,0x8d,0x8e,0x3d,0xb0,0x7b,0xe1,0xe3, - 0xf5,0x1f,0x7a,0x04,0xf4,0xf3,0xd8,0xdd,0xf3,0xbf,0x57,0x35,0x8e,0x88,0xad,0x23,0xe6,0xee,0xe4,0xce, - 0x18,0x55,0xc7,0xe0,0x0c,0x89,0xba,0x6e,0x24,0xae,0x8f,0x8f,0xee,0x11,0x7d,0x7f,0x6f,0x4c,0x1f,0x0e, - 0x7d,0x38,0xf8,0x20,0x32,0x18,0x7f,0x9a,0x65,0xc7,0xde,0x67,0xd4,0x2c,0x51,0xee,0xdf,0x82,0xd4,0x29, - 0x26,0xc1,0xfd,0x7f,0xc2,0x99,0x51,0xf0,0x95,0xa8,0x59,0x04,0x07,0x0f,0x7c,0x59,0xef,0x07,0xf7,0xfd, - 0xd5,0x32,0x78,0xf0,0x25,0x71,0xc8,0xb3,0x32,0x78,0xf0,0x4f,0x3f,0xc7,0xeb,0x49,0xf0,0xe0,0x2b,0x1f, - 0x5e,0xb0,0x83,0x87,0xfb,0xbe,0x3c,0x60,0x06,0x47,0x5f,0xfa,0x0f,0xbf,0x20,0x26,0xe4,0x5f,0x59,0x97, - 0x5f,0x2e,0xa0,0x9c,0x3e,0x80,0xc7,0xf2,0x99,0x35,0x24,0xb6,0xe9,0xf7,0x0c,0xc2,0x20,0x82,0x07,0x7d, - 0xa8,0xf1,0x03,0x00,0x12,0xcd,0x23,0x11,0x21,0x0e,0xa1,0x51,0xc1,0x79,0xa6,0x8c,0xfa,0xfd,0x5c,0x1e, - 0x1c,0xb9,0x08,0xe2,0x92,0x05,0xff,0xca,0xdc,0x3a,0x6e,0xe8,0x11,0xc6,0xe9,0xa9,0x94,0xc9,0x2a,0xc7, - 0x26,0x1d,0x72,0x06,0x1d,0xe0,0x49,0x99,0x2f,0xb8,0xc6,0x8e,0x2e,0x40,0x09,0x3f,0x40,0x43,0xd7,0x67, - 0xdf,0xa1,0xb5,0x3c,0x4e,0x91,0xcc,0x68,0x51,0xcf,0xa2,0xdf,0x92,0x01,0x79,0x41,0x2d,0x07,0x09,0x92, - 0xc5,0x6b,0x87,0xac,0x7b,0xe2,0x15,0xea,0x1e,0x08,0x23,0x29,0xd5,0xbb,0x7b,0x57,0x8f,0x50,0xf2,0x78, - 0xcc,0xfb,0x68,0x2f,0x99,0x4e,0x17,0xf1,0x27,0x55,0x3b,0x80,0x5c,0x81,0xf7,0xe7,0x53,0x6a,0xdd,0x07, - 0xfc,0xff,0x46,0x1b,0x41,0x5c,0x63,0xd3,0x1f,0x0b,0xdc,0xc0,0x55,0x51,0xed,0x3a,0x36,0xf6,0x64,0x2e, - 0x1b,0xeb,0xd7,0x30,0xc4,0x06,0xde,0x4a,0xd2,0xb6,0x1f,0x1c,0x34,0xc7,0xe1,0xf3,0x2a,0x6b,0xa1,0xaa, - 0xa5,0x53,0x6a,0x29,0xa5,0x96,0xee,0x41,0xfe,0x45,0xe7,0xad,0x0f,0xe6,0xbb,0x6a,0x15,0x77,0x9f,0x45, - 0x49,0xc3,0xd1,0x51,0xa5,0x8e,0x88,0xc7,0xb0,0x91,0x90,0x3a,0x81,0xa2,0x99,0xbc,0x1b,0x8a,0x73,0xf4, - 0x69,0xc7,0x57,0xe5,0x1d,0x4f,0x8d,0x79,0xb2,0xc8,0xa2,0x73,0xc4,0xd5,0xfd,0xcf,0xac,0xed,0xf5,0x34, - 0x33,0xce,0x32,0xf9,0x27,0x24,0x91,0x74,0x27,0xe2,0xcf,0x7a,0xfd,0xbb,0x4a,0x34,0xc2,0xcb,0x22,0xfc, - 0x0d,0x62,0x78,0xad,0x98,0xee,0x98,0x8c,0x67,0xc4,0x31,0x68,0x0f,0xee,0x78,0x67,0xfc,0x36,0x4e,0x11, - 0xc1,0xaf,0x5e,0x5a,0x49,0x1d,0x4d,0x39,0xc3,0x71,0x84,0x97,0x2e,0x2b,0x5a,0xfc,0x96,0xb1,0x69,0xb4, - 0x49,0xf7,0x4c,0xf4,0xae,0x1a,0x02,0x5d,0xaf,0x9f,0xa5,0x43,0xe5,0x1b,0xf9,0xc3,0x69,0x6c,0x02,0x31, - 0x76,0x6c,0xe4,0x8e,0x31,0xe3,0x55,0xfe,0x31,0xd3,0x49,0xfc,0x02,0xd6,0x5a,0xfc,0xab,0x19,0x70,0x10, - 0x3e,0xba,0xe3,0x28,0x74,0x6d,0xa1,0xd0,0xf1,0xf1,0xa9,0xd3,0x77,0xa6,0x84,0xc3,0x67,0x10,0xc0,0x11, - 0xd0,0x97,0x08,0xa8,0x4b,0x8b,0xfc,0x81,0x1d,0xb3,0x4d,0x20,0xfc,0xc3,0xb5,0xe7,0x5f,0x25,0xe5,0x99, - 0x1f,0x5d,0x45,0x49,0xe9,0xb3,0x61,0x80,0xcf,0x3e,0xd0,0x95,0xf2,0x3c,0x3f,0x03,0xf9,0xec,0xb8,0xd4, - 0xe7,0xb8,0xf4,0xfe,0x15,0xa1,0xd5,0xd8,0xff,0x00,0xa9,0x9f,0x42,0x36,0x3e,0x31,0x67,0x19,0xbc,0x1d, - 0xb2,0x27,0x16,0x5f,0x66,0xa0,0x3d,0x80,0x69,0xbf,0x8b,0xe2,0x2e,0x94,0xd8,0x18,0x09,0x51,0xcf,0x4e, - 0xd0,0x92,0x74,0x05,0xd7,0x3d,0xa7,0xab,0xf9,0x1c,0x62,0x42,0xb5,0x0a,0x55,0xd0,0x15,0x47,0xf9,0xa9, - 0xc1,0x9d,0xa0,0x6e,0x07,0x9a,0xd6,0x1a,0x53,0xf3,0xfa,0x3c,0x43,0x09,0x12,0xdc,0x98,0xb3,0x0c,0x4a, - 0xfc,0x8e,0xb2,0x02,0x7b,0x67,0x3b,0x84,0xd2,0x81,0xf0,0x8f,0x8f,0x09,0xe5,0xd3,0x3f,0x55,0xab,0x8d, - 0x0c,0xea,0xc3,0x7d,0xd6,0x94,0xfc,0x88,0x28,0x62,0xab,0xd5,0x28,0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7, - 0xe1,0xce,0x81,0xe7,0x9f,0x66,0x6a,0x3f,0xd9,0x40,0x0c,0x12,0x6e,0x2b,0x62,0xcb,0x30,0x7d,0xf4,0x21, - 0xb3,0x9d,0xb3,0x7c,0xc8,0xd8,0x0e,0x17,0x2f,0x39,0x67,0x59,0x58,0x56,0x50,0x7d,0x8a,0x5f,0xfa,0xae, - 0x07,0x38,0xf9,0x27,0x48,0xb1,0x6e,0x72,0x4e,0xbc,0x42,0x62,0xe3,0xaa,0xe6,0x8c,0x8b,0x0c,0xa0,0x5d, - 0x76,0x1c,0x84,0x57,0x72,0x10,0xe6,0xcd,0x02,0x4d,0x31,0x0d,0x95,0xf9,0xd0,0x2a,0x93,0x15,0x65,0xb3, - 0xd0,0x25,0x86,0x40,0x3b,0x91,0x5c,0x24,0x25,0x02,0x22,0x2a,0xa3,0x5c,0x22,0x4f,0x59,0xf9,0x64,0xe7, - 0x80,0x75,0x3d,0x11,0xe3,0x1c,0xa7,0xe3,0xd7,0x33,0x2a,0xc5,0xc3,0xf4,0xb1,0x5e,0xa0,0x53,0x0f,0x5a, - 0x96,0x19,0xcd,0x45,0xa6,0x5f,0x8b,0x3e,0x5e,0xf0,0xa0,0xd6,0xba,0x3a,0x95,0xb7,0x05,0xd7,0xb6,0x9a, - 0xce,0xb5,0x1f,0x01,0xd6,0xbf,0xf3,0x8b,0x2a,0x7e,0xbd,0x68,0xf2,0x2d,0x3c,0xf5,0xf6,0x86,0xe7,0x86, - 0x1c,0x3f,0x65,0xc7,0x1a,0x0f,0xb2,0x94,0xcc,0xaa,0xfe,0x49,0x18,0x55,0x41,0xed,0x93,0xc7,0x21,0x71, - 0x3d,0x11,0x42,0xc1,0x2c,0x74,0x51,0x1c,0x72,0x9a,0x57,0x81,0x90,0x6a,0x9a,0xa6,0x0c,0xf9,0xd9,0x17, - 0xa5,0x2d,0x03,0x4c,0xbb,0xa1,0xc9,0xe3,0x30,0x19,0x4e,0xa8,0x42,0x39,0x60,0x2f,0x2b,0xfc,0x87,0xfd, - 0xad,0xb3,0x64,0x02,0xe3,0x1f,0xea,0xe2,0x21,0x16,0x30,0xe1,0x6e,0x77,0x0f,0x38,0x9f,0xb9,0x23,0xe7, - 0x34,0x07,0x85,0x57,0x8c,0x98,0xb0,0xca,0xd9,0x69,0x3d,0x7f,0xd0,0xfc,0x69,0xb9,0x77,0xf6,0xc5,0x33, - 0x82,0xb3,0xe4,0x52,0x1c,0x07,0xb7,0xb3,0xdc,0x01,0x97,0xf3,0x6b,0x03,0x91,0x15,0xa4,0x45,0xd5,0xce, - 0x11,0xe0,0xe9,0x04,0x9b,0x08,0x65,0xf4,0x4a,0x2a,0x43,0x5b,0x56,0x0e,0x2a,0xfa,0x92,0xa1,0x6d,0x85, - 0x17,0xe7,0x06,0x55,0xc9,0x19,0x0b,0x5a,0x94,0x78,0xc8,0x42,0xbe,0x84,0x10,0x38,0xb1,0x24,0x4f,0x32, - 0x37,0x33,0xea,0x6c,0xb0,0x4b,0xcd,0x1a,0x6f,0xe2,0xcb,0xf0,0x6d,0x76,0x34,0x45,0x88,0x28,0xfe,0x5b, - 0x93,0x7f,0x13,0x01,0x77,0x5c,0x1c,0x1f,0xbf,0x25,0xd2,0xcd,0x73,0x1f,0xed,0x39,0xfd,0xa9,0x16,0x84, - 0x7b,0x74,0xe2,0x13,0xf0,0xd2,0xb0,0xce,0xd2,0xa2,0xed,0xa5,0x2d,0xd3,0x66,0xf0,0xd0,0x90,0x66,0x2c, - 0x61,0x7d,0x1a,0xcf,0x94,0xf9,0x3f,0xe5,0x77,0x12,0x0b,0xc7,0xb1,0x91,0xc3,0xca,0x01,0xd5,0x1e,0xc4, - 0xe8,0xd4,0x77,0x21,0x3d,0xef,0xee,0x3e,0xde,0x9b,0x13,0x8b,0x41,0xb7,0xbe,0x5d,0xe4,0xf8,0xe8,0xd9, - 0xf3,0x27,0x87,0x4f,0x8e,0x8f,0xaa,0x92,0xe3,0xb1,0x29,0x09,0xa1,0xb2,0x3b,0xf5,0xc5,0xed,0x32,0xf4, - 0x59,0x94,0xcf,0x26,0x0e,0xa3,0x77,0x16,0xc9,0x45,0xc9,0x1f,0x50,0x82,0x70,0x20,0x7f,0x21,0x98,0xd7, - 0x3a,0x3a,0xbb,0x67,0x7a,0xbc,0x71,0x78,0xe6,0xe7,0xd4,0xd0,0x62,0x77,0x86,0x48,0xd4,0xc6,0x0e,0xe9, - 0x32,0xb4,0x94,0x01,0x1e,0x89,0x0c,0x00,0x6a,0x98,0x97,0xbc,0xf8,0x8b,0x4c,0x47,0xd4,0xd2,0x16,0x64, - 0xb6,0xea,0xc0,0xee,0xf1,0xfb,0x07,0xb1,0x54,0xb9,0x60,0xf0,0x2d,0x55,0x78,0x46,0x44,0xaa,0x50,0x2a, - 0x88,0x2a,0x3c,0x82,0x72,0x58,0x52,0x9d,0xc2,0x87,0x3e,0x6c,0x6d,0x53,0xf7,0xa2,0xff,0x80,0x58,0x3c, - 0x85,0xea,0x37,0xd0,0xeb,0x9a,0x35,0xfa,0x9c,0xdb,0x7d,0x8e,0x1f,0x4b,0x7f,0x73,0xee,0x2f,0x75,0xe7, - 0xfd,0xfb,0x76,0x75,0x94,0x87,0x86,0x34,0xbb,0xa7,0x75,0x57,0xa2,0x72,0xf8,0x01,0x05,0x3f,0xe0,0x6d, - 0x59,0x07,0x34,0x34,0x15,0x50,0xfe,0xd4,0x94,0x9f,0x48,0xf9,0x53,0xe9,0xf7,0x24,0x5c,0x0c,0x53,0xf7, - 0xd4,0xaa,0x47,0x0b,0x78,0x7a,0x74,0x30,0xf6,0x4f,0x98,0x2d,0xb5,0xdb,0xb8,0x6a,0xc6,0x4a,0x29,0x4d, - 0xa3,0x91,0x34,0x6a,0x22,0xff,0x5d,0x6b,0x8f,0x7f,0x25,0x9a,0x62,0xce,0x23,0xc0,0x61,0xc1,0x29,0x0b, - 0x16,0x1b,0xea,0xb2,0xb4,0x87,0x6a,0x9d,0xaa,0xe1,0x0e,0x0e,0x83,0x6a,0xb6,0xc8,0xd8,0xf8,0x23,0x33, - 0x09,0x39,0x25,0x0c,0xbd,0xd4,0xcd,0x6a,0x03,0x56,0xfe,0x23,0x75,0x20,0x4e,0x9c,0xa7,0xca,0x06,0x73, - 0x85,0xb3,0xf8,0x96,0x6e,0x71,0x42,0x1b,0x18,0x4c,0xea,0x26,0xf5,0xca,0xf0,0x7d,0xbe,0xf0,0xf3,0xcd, - 0xc6,0x15,0xab,0x29,0xef,0xba,0x15,0x6a,0x21,0x0d,0x8d,0x9b,0x42,0xb6,0xba,0xa8,0xda,0x64,0xee,0x5f, - 0x30,0x0a,0x9d,0xdf,0x54,0x5c,0x87,0xe7,0x34,0x0a,0x7f,0xc5,0x9f,0x99,0x38,0x80,0xce,0xf9,0x81,0x5c, - 0x4f,0x73,0x11,0x4e,0xd8,0x5b,0xc3,0xce,0x4e,0xc2,0x3e,0x78,0x64,0xf8,0x0a,0x86,0xa7,0x7c,0xa8,0x45, - 0x32,0x35,0xc3,0x89,0xdf,0x1f,0x2e,0x1f,0xcd,0x86,0x4b,0xad,0xe4,0x77,0xa6,0x2b,0x1c,0x2d,0xc7,0xc3, - 0x25,0x75,0xba,0x0b,0x6b,0xb9,0x33,0xcc,0x49,0x03,0xd0,0x3d,0xc7,0xb9,0x87,0x75,0xe3,0x37,0xaa,0xb3, - 0xa3,0x07,0xe3,0xbb,0x77,0x95,0x42,0x27,0x7e,0xf8,0x2a,0xf9,0xa1,0x9d,0xfc,0xd0,0x24,0x7f,0x6e,0x27, - 0x7f,0xae,0xac,0x09,0x2f,0xb9,0x99,0xf5,0x1a,0x05,0xf1,0xef,0xe7,0xf4,0xaf,0xe3,0xf8,0x17,0xa1,0x13, - 0x69,0x17,0xd7,0x70,0xdf,0x2c,0x2d,0x1c,0x8c,0x47,0xfa,0x8c,0x3c,0x8f,0xe1,0x52,0xf7,0x55,0x7c,0x05, - 0x97,0xa8,0xc5,0x37,0x59,0xfe,0x1d,0x95,0x0a,0xba,0x73,0x87,0x53,0x9a,0x91,0xd2,0x5d,0x47,0x23,0x3e, - 0x93,0xd8,0xc1,0x0f,0xa5,0x7b,0x49,0xc7,0x68,0xb3,0x59,0xb0,0xea,0x33,0x6f,0x32,0x2b,0xb0,0x12,0x02, - 0xb5,0x6f,0x9c,0x20,0x6d,0xe0,0x4a,0x81,0xba,0x29,0x3c,0xd2,0x87,0x1c,0x17,0xa1,0x81,0xec,0x53,0xd8, - 0x92,0xf1,0x93,0x37,0xfd,0x82,0x47,0x9b,0x74,0xea,0x6d,0x68,0xfb,0x81,0x8b,0x32,0x3f,0x66,0xd7,0x0b, - 0x07,0xcd,0x73,0x77,0xa8,0x4d,0xc6,0xcf,0xf5,0xc7,0x7b,0xf5,0x01,0xd8,0xb9,0x34,0xf7,0xdb,0xb9,0x71, - 0xec,0x7c,0xe9,0x11,0x48,0x4f,0xd4,0x71,0x3f,0x87,0x1b,0x57,0xeb,0x7b,0x61,0x7d,0xcf,0xac,0x6f,0xf7, - 0x7d,0x78,0x6e,0x63,0x2c,0x9f,0x70,0xe1,0xa3,0x7d,0x02,0xfd,0xcb,0x7e,0xf8,0xde,0xaf,0x35,0x7e,0x58, - 0xbb,0xf7,0xf7,0xfd,0x4b,0x20,0x9c,0x4b,0x6f,0x73,0xc9,0xe2,0x48,0xca,0x25,0xac,0x08,0xcb,0x71,0x83, - 0x49,0x0f,0x2b,0x64,0x7a,0xc8,0x3a,0xa6,0xb1,0xa8,0x29,0xb7,0x50,0x6d,0xac,0x4d,0x64,0x37,0xb9,0xcb, - 0x32,0x22,0x89,0x12,0x72,0x96,0xf9,0xd6,0x33,0x44,0xed,0xf6,0xb3,0x24,0x2b,0xf6,0x35,0xd8,0x21,0x54, - 0x69,0xdd,0x88,0x7e,0x17,0x48,0x6c,0x81,0x94,0xce,0xb2,0x37,0x03,0x97,0xca,0xf5,0x5b,0xa8,0x3b,0x30, - 0x98,0xbb,0x50,0xe8,0xc9,0xba,0x16,0x23,0x58,0xbf,0xca,0x89,0x15,0x01,0x69,0xb1,0x5e,0x5f,0xe1,0x8d, - 0x73,0xf8,0x0a,0x20,0x0f,0x97,0xd9,0xb4,0x76,0x88,0x72,0x55,0x0f,0x48,0x51,0x29,0x3b,0x13,0xd2,0x13, - 0xd2,0x36,0xb6,0x29,0x5b,0x2d,0xbc,0x44,0x7c,0xd4,0x5f,0x32,0xad,0x3b,0x99,0x2a,0x9d,0x49,0xf9,0x0a, - 0xe5,0x8f,0xb9,0x44,0x7f,0xce,0x7c,0xd9,0x46,0x3e,0x01,0xa0,0x45,0x4c,0x0c,0x3d,0x28,0x97,0x2b,0x79, - 0xe2,0xf7,0x25,0x0f,0x3b,0xa1,0x0b,0x12,0x12,0x45,0x1a,0x31,0xe8,0xb9,0x1d,0xe5,0x40,0x9f,0x3d,0x2a, - 0x4e,0xc3,0x99,0x27,0xca,0xcc,0xfa,0x39,0x1a,0xc9,0x53,0x51,0xbe,0x9e,0xd6,0xe5,0xa9,0x34,0x49,0x88, - 0xed,0xf6,0xde,0x45,0x97,0x91,0x5d,0xb6,0x56,0x88,0xc6,0x8c,0x18,0xb5,0x1e,0x77,0x48,0x53,0x3f,0x65, - 0x4f,0xf0,0x1c,0x88,0x52,0x2f,0xc4,0x54,0xe1,0xb1,0xb9,0x21,0xf0,0x81,0xcf,0x66,0xe1,0x3c,0xa3,0x33, - 0xef,0xce,0x88,0xa4,0x25,0xf8,0x67,0xc5,0x40,0x9a,0xff,0x45,0x38,0xf3,0xcd,0x43,0xe3,0x05,0x1e,0xd5, - 0x20,0xbb,0x43,0xf3,0x17,0x20,0x95,0xd9,0xd4,0x60,0x56,0xf1,0x15,0xfb,0x1e,0x33,0x16,0x33,0x8b,0xb1, - 0xc0,0x8b,0x64,0x67,0xf4,0x62,0x23,0x2c,0x33,0xee,0x2e,0xed,0x28,0x8d,0xe6,0x55,0xd5,0x42,0xc1,0xa5, - 0xf6,0x43,0x53,0x72,0x04,0x4f,0x78,0xe9,0x51,0x38,0xca,0x6a,0x8d,0x12,0x25,0x2e,0x89,0xa0,0xac,0x86, - 0x92,0x4f,0xa3,0xa0,0x84,0x25,0xdd,0x68,0x8f,0x9a,0x34,0x0f,0xd6,0xb5,0x63,0xa1,0x9d,0x44,0xc5,0x9e, - 0x79,0xc1,0xac,0x7a,0x0b,0xa5,0xdc,0x7f,0xc1,0x98,0xbf,0x23,0x52,0xa9,0xf5,0x66,0xab,0xee,0xdf,0x18, - 0x8f,0xa6,0x25,0x1e,0x19,0x63,0x79,0x64,0x2c,0xd5,0x23,0x63,0xbc,0x51,0x46,0xd6,0x1d,0x4f,0xb8,0xa2, - 0xcb,0xac,0x9e,0x1f,0x75,0xec,0xc4,0xe6,0x83,0xae,0xd6,0x66,0x52,0xef,0x92,0x70,0xa8,0x8b,0x41,0x5d, - 0xda,0x9b,0x75,0x89,0x0a,0x60,0xd2,0xb9,0xc9,0x4b,0xe6,0xd7,0x79,0x37,0xbe,0x2d,0x79,0x93,0x69,0x2d, - 0x47,0x1a,0x02,0xd6,0xeb,0x9c,0xc6,0xca,0x30,0x23,0x4d,0x12,0x04,0xf0,0x17,0x55,0xa5,0xe1,0xe7,0x32, - 0x7c,0x9d,0xa9,0x66,0x31,0xdb,0x78,0x41,0x4e,0x3d,0xd2,0x69,0xdc,0xb1,0x60,0x0d,0x26,0x42,0xad,0x66, - 0x76,0x6e,0xe6,0x55,0xed,0x53,0x6a,0x0e,0x27,0xc7,0xd7,0xd3,0x16,0xe8,0x31,0x87,0xd6,0x03,0x80,0x6b, - 0xc9,0x2d,0x25,0x20,0x28,0x6c,0xb6,0x84,0xe9,0xaf,0x5b,0x39,0xb9,0xe1,0xb5,0x49,0x79,0x3a,0xbf,0xe3, - 0x62,0xe1,0xa1,0xc7,0xf5,0xa1,0xc3,0x22,0x83,0x16,0xcc,0xc8,0xd8,0x67,0x03,0x58,0x28,0xb0,0xd3,0x2f, - 0x8e,0x22,0x2e,0xdb,0x7f,0x20,0xfa,0x24,0xa1,0xe4,0x8a,0x5c,0x70,0xbd,0xbe,0xe7,0x28,0xf9,0x81,0x73, - 0x6f,0x48,0xdd,0xd6,0x82,0xbd,0xd5,0x7f,0xb3,0x19,0xc1,0xd1,0xd9,0x38,0x9c,0x89,0xb1,0x75,0x35,0x46, - 0xc1,0x1b,0x33,0x3e,0x3a,0x12,0x96,0x2d,0x91,0xab,0xdd,0xbf,0x18,0xae,0x46,0x29,0x80,0x8e,0x28,0xaf, - 0x99,0x9f,0xe9,0x82,0x88,0x33,0x96,0x76,0xe8,0xd5,0x67,0x47,0x99,0x61,0xdb,0xc6,0x7e,0x69,0xb9,0xc7, - 0x3a,0x6a,0xf9,0xc4,0xa2,0x12,0x08,0xbe,0xfc,0x00,0xda,0x20,0x1a,0xa1,0xf4,0x1c,0xf9,0xc5,0xee,0x14, - 0x76,0x26,0xd0,0xb4,0xae,0xc6,0x88,0xa5,0xf5,0x4d,0xfb,0xe1,0x01,0x91,0x5b,0xf5,0xfe,0x52,0x71,0xb8, - 0x8d,0x0b,0xaa,0x26,0xe5,0xd7,0xc1,0xc5,0x5e,0xa5,0xf6,0xd3,0x91,0x78,0x34,0x01,0x62,0x4b,0x2a,0x9c, - 0xb5,0xac,0xdc,0x71,0xc0,0xb4,0xdb,0x33,0xa7,0xa9,0xe6,0xfc,0x23,0x0e,0x27,0x08,0xfc,0x28,0x4f,0x38, - 0x23,0x17,0xa1,0x36,0x9d,0x8a,0x0b,0xca,0xb5,0xad,0x0a,0xa3,0x55,0x9d,0x30,0x8a,0x83,0xa7,0x19,0xbb, - 0xf5,0x63,0x97,0xe7,0x32,0xea,0x11,0xcd,0x18,0xe2,0x3c,0xe5,0xf1,0x6d,0xa7,0xe0,0x35,0xd8,0x61,0xdf, - 0x7d,0x6e,0x53,0x7a,0x22,0x50,0x7a,0x99,0x8d,0x7e,0x4f,0xdc,0xcb,0xcc,0x0b,0xbe,0x4d,0x98,0x5b,0xaf, - 0x98,0x05,0xe3,0xfc,0xcd,0xb7,0x58,0x50,0xfa,0x67,0x02,0x17,0xbe,0x51,0x51,0xbe,0x00,0xd1,0x00,0x84, - 0xc5,0xf1,0x7c,0xe2,0x09,0x2e,0x2b,0xef,0x9a,0x76,0x36,0x17,0x7a,0xc2,0x7b,0x8c,0xa7,0x26,0x4d,0x2c, - 0x1b,0x42,0x62,0x02,0x2b,0x5d,0x5f,0x91,0x57,0x0d,0xfc,0x95,0x69,0x0d,0xc5,0x55,0xf8,0xaf,0xd8,0xb5, - 0xdd,0x21,0x0f,0x55,0x05,0x79,0x8c,0x59,0xc9,0x23,0x94,0x6a,0xfb,0xda,0xf9,0x8f,0x53,0xd1,0x14,0x74, - 0xa0,0x33,0x41,0x03,0x4c,0xfa,0x79,0x45,0x79,0xeb,0xdb,0x6b,0xf2,0xa8,0x32,0xb5,0xe8,0x18,0xd6,0x8d, - 0x83,0xe2,0x73,0x06,0x8d,0x3e,0x18,0x24,0x45,0x4a,0xa4,0xd5,0x67,0x75,0xc1,0xf3,0x38,0x2d,0x82,0x62, - 0xc3,0x91,0x81,0xbc,0x51,0xa9,0xc9,0x46,0x58,0x81,0xde,0xf7,0xad,0x5a,0x58,0x24,0xfd,0x43,0x57,0x03, - 0x21,0x89,0x0f,0x79,0xd3,0xa2,0x73,0x1b,0x08,0xcc,0xc6,0xd5,0x9e,0x1a,0x30,0x3e,0x2a,0x2b,0xd8,0x64, - 0x90,0x86,0xd2,0xb8,0xd5,0xd9,0x03,0xd3,0x88,0xd0,0x8f,0x39,0x1b,0x84,0xb7,0xdc,0xc4,0x37,0x8f,0x69, - 0xbd,0xb2,0x6f,0x6c,0xdd,0x82,0x9d,0x7d,0x36,0x8f,0x20,0x76,0xc5,0xd5,0xb0,0x89,0x38,0xc6,0x4a,0x90, - 0x04,0x69,0xf0,0x45,0xf2,0x67,0xcc,0x72,0x1c,0x36,0x85,0xf2,0x21,0xd3,0x39,0xcc,0xc2,0x7f,0x67,0xc0, - 0x13,0xd6,0x73,0x13,0x68,0x89,0x73,0xbc,0x92,0xb6,0x64,0xb3,0xe6,0x9e,0x81,0x09,0x8f,0xb8,0x92,0x51, - 0x35,0x43,0xba,0x5b,0x4b,0xff,0x3e,0x75,0x35,0x51,0x87,0xd9,0xc5,0xc9,0x96,0x1f,0xc4,0xce,0xb8,0x3b, - 0x13,0x75,0x2d,0x4f,0x60,0x99,0xa0,0x14,0x45,0xa9,0x33,0xa8,0xe8,0xe0,0xdf,0x19,0x22,0x7f,0xcd,0x53, - 0x97,0x8d,0xa9,0xc0,0x00,0x9d,0x67,0xe6,0xbb,0x6d,0x02,0x6a,0x0c,0x40,0x59,0x0d,0x4a,0xc7,0x85,0x50, - 0x5e,0xa1,0x8d,0xeb,0x20,0xae,0x5e,0xb3,0x24,0x40,0x37,0x95,0x7d,0xa8,0xf1,0x19,0x43,0xc0,0x44,0x3d, - 0x2a,0xa3,0x32,0x84,0x11,0xa4,0x84,0x01,0x02,0xc5,0x7c,0xa0,0x05,0xf2,0xf0,0x3f,0xff,0xc0,0xe0,0x29, - 0xb1,0x5a,0xa0,0xe1,0x95,0x8a,0xac,0x70,0x80,0x8f,0x39,0x2a,0x50,0x65,0x08,0x86,0x1f,0x1a,0xab,0x1c, - 0x39,0x49,0x0a,0x4a,0x73,0xd7,0x8c,0x53,0x5b,0x2d,0xd8,0x32,0x4e,0x8e,0x1f,0xda,0xf4,0x1b,0xa8,0xc3, - 0x53,0x6b,0xfb,0xd8,0x0a,0x9f,0x12,0x79,0x08,0xbf,0x2b,0xbe,0xde,0x3a,0x18,0x2c,0xe9,0xbd,0xd8,0x39, - 0x60,0xe2,0x9d,0xe8,0xec,0xd9,0xb3,0x8c,0x16,0x9a,0xdf,0x01,0xaa,0x80,0xd3,0x84,0x3a,0xa3,0xb0,0x9e, - 0xa9,0xfb,0xcb,0x1e,0x45,0x95,0x67,0xad,0xa2,0x51,0x08,0x9e,0x94,0xf8,0xc2,0xa2,0x9e,0x61,0x15,0xb7, - 0xa5,0x67,0x06,0xe6,0xc9,0x86,0xe8,0xd0,0x1a,0xb8,0x28,0x7f,0x06,0x8d,0x75,0x34,0x55,0x71,0x38,0x32, - 0xf1,0xfe,0x67,0xd2,0x5e,0xa4,0x44,0x9b,0x1b,0x06,0x8d,0x12,0x84,0x01,0xa9,0x2d,0x11,0x15,0x17,0x00, - 0x6f,0xa4,0xaf,0xd7,0x0f,0x6a,0xc9,0xec,0xb6,0x9d,0x5d,0x46,0x28,0xec,0x02,0xd6,0xcc,0xf4,0x04,0x7f, - 0xc4,0x4c,0xe0,0x58,0x20,0x2d,0x69,0x07,0x7e,0xd5,0x46,0x23,0x86,0x7b,0x7b,0xbb,0x74,0x30,0x77,0x08, - 0x7f,0x2d,0x57,0x8f,0x7e,0x0a,0x86,0xbe,0x64,0xe0,0x1b,0xfe,0xbd,0x8d,0x89,0xdd,0x2d,0x7b,0xc2,0x61, - 0x0c,0xe0,0x16,0xea,0xc0,0x28,0x8d,0xb3,0x30,0x39,0x4d,0xd9,0xf0,0x48,0xc9,0x8a,0xaf,0xe9,0x1a,0x20, - 0xee,0x58,0x19,0x61,0x66,0x3a,0x74,0x6d,0xe3,0xb9,0x84,0x32,0x1a,0x29,0x9b,0x7a,0xb0,0x3f,0xb3,0xaf, - 0xa5,0x6b,0x29,0x5c,0xd4,0x8d,0x32,0x63,0x68,0x0e,0xb2,0x69,0xa5,0xb8,0x03,0xca,0xe5,0x05,0xaa,0x7e, - 0xa7,0xb9,0xe5,0x28,0x0b,0x12,0x4f,0x3b,0x42,0xdd,0xa0,0xb1,0x54,0xcb,0xcd,0xd9,0x91,0x8f,0xfa,0x0e, - 0xab,0xe7,0x26,0x7e,0x0f,0xd7,0x0f,0xe5,0xa6,0x30,0x84,0x69,0x35,0xf3,0x65,0xf8,0x8c,0xb4,0xdf,0xa1, - 0x1a,0xa3,0xb3,0x32,0xd7,0x6b,0x31,0x20,0xb5,0xeb,0x5b,0x22,0x19,0x44,0xb1,0xed,0xa5,0x9e,0xa3,0x3a, - 0xc2,0x41,0xa7,0x2b,0xbc,0x8a,0xe8,0xa6,0x53,0xe8,0xfa,0x8b,0xe0,0x11,0x3f,0x1a,0x8b,0x2b,0xa0,0x22, - 0x7c,0x96,0x71,0xf8,0x73,0x2d,0xa7,0x2f,0x06,0x71,0x9e,0x67,0xc4,0x42,0x24,0x74,0x76,0xca,0x64,0x59, - 0x84,0x99,0x5f,0x28,0x24,0x74,0x0d,0x6d,0x8e,0x64,0x11,0x07,0xa5,0xaf,0xbe,0x0e,0xb3,0x6f,0xd4,0x52, - 0x15,0x1d,0xda,0xfc,0x1d,0x06,0xb0,0xad,0xe7,0x00,0xe5,0x43,0x81,0xf0,0x3d,0xbf,0xc1,0x11,0x5f,0xc8, - 0x5b,0xa0,0xde,0xa4,0x7a,0x79,0x65,0x9c,0x90,0xc1,0xcd,0x99,0x79,0x8a,0x18,0x29,0xa3,0x24,0x3b,0xcd, - 0xeb,0xd3,0x85,0xc8,0xb0,0x0b,0xcf,0x69,0x9a,0xbd,0x84,0xe3,0x3d,0xb1,0xa6,0x87,0x5b,0xbc,0x1c,0xca, - 0x9e,0xb0,0xaa,0xc6,0x8e,0x9b,0x39,0x2b,0xfb,0xa0,0x25,0xa2,0x2e,0x2a,0x70,0x9b,0x54,0xc8,0xa3,0x7a, - 0xa2,0x8b,0x9a,0x29,0x75,0x7d,0xbd,0x4a,0xc3,0x61,0x09,0xd8,0x99,0x40,0x3f,0x01,0xfd,0x87,0x04,0x9b, - 0x78,0xd2,0xd8,0x78,0xee,0x9f,0x99,0x37,0x68,0x2f,0x1e,0x15,0x8b,0xc2,0x9d,0x1d,0x78,0xb2,0x3f,0x4b, - 0x5d,0x3c,0x35,0xa5,0xf6,0x6f,0x78,0x7c,0x8a,0x3a,0xad,0x71,0xd8,0x64,0xc8,0x58,0xdd,0x01,0xf5,0x18, - 0x1d,0x13,0xea,0x3b,0x89,0xc2,0x0e,0xcb,0x2a,0x5d,0xfc,0x76,0xa3,0x2b,0xe0,0x3e,0x36,0x4e,0xe2,0x6e, - 0xa0,0x4e,0x5a,0xb3,0xfd,0x24,0xfa,0xd2,0x4e,0xd2,0x1f,0x3a,0x0a,0x73,0x3b,0xb2,0x68,0x2d,0xe4,0x38, - 0xbb,0x35,0x48,0xd5,0x72,0xeb,0xe3,0x09,0x4a,0x51,0xee,0x1f,0x3e,0x8e,0x1e,0x2b,0x67,0xf2,0x4e,0x57, - 0x31,0x08,0x73,0xcf,0xf9,0x87,0x90,0xac,0x26,0x6a,0x02,0x13,0x0c,0x79,0x04,0xb1,0x82,0x71,0xc5,0xb5, - 0x63,0x79,0xee,0xb2,0x87,0x92,0x33,0x29,0xa9,0x17,0x49,0xb8,0x58,0xae,0xdf,0x32,0x59,0xcd,0x56,0x65, - 0xcd,0x63,0x5c,0xcf,0x4a,0xba,0xd9,0x8a,0x4f,0xb4,0xac,0xcd,0xbe,0x34,0xdc,0x49,0x57,0xc6,0x9b,0xcc, - 0xfc,0xdb,0x7b,0x86,0x65,0x96,0x99,0xab,0xdb,0x34,0x86,0x1b,0xbd,0xeb,0x6e,0xe1,0x52,0x74,0xa3,0x20, - 0x29,0x45,0x1c,0x2b,0x7d,0x34,0x82,0xd4,0x3a,0x27,0x9a,0x84,0x43,0xaa,0xfe,0xdc,0xa8,0x48,0xef,0x20, - 0xa9,0xd4,0x09,0x80,0xea,0x59,0x03,0xdc,0x87,0x7a,0xbf,0x08,0x2b,0xa4,0xed,0xd3,0x61,0x4c,0xf6,0x93, - 0x48,0x74,0x60,0xc5,0xbc,0x4d,0xdb,0xb2,0x29,0xb8,0xa7,0x39,0xd1,0xaf,0x8d,0xd7,0x30,0x4a,0x70,0x24, - 0x7e,0x98,0x15,0x1c,0x96,0xdf,0xa3,0xc1,0x6e,0xac,0x52,0x89,0xee,0x38,0x25,0x2c,0xa6,0x32,0x05,0xd1, - 0x8d,0xe4,0xcf,0x40,0x15,0x0d,0x4b,0xb7,0x33,0xcc,0xac,0xd4,0x86,0x5c,0x18,0x7f,0x07,0xd1,0xc5,0x74, - 0x24,0x9f,0x74,0x28,0x89,0xcf,0xfd,0x65,0x15,0xbf,0x38,0xf8,0x32,0x45,0xed,0x4d,0x23,0x08,0x35,0x0d, - 0x6b,0x45,0x00,0x02,0x10,0xa4,0xa1,0x0d,0x2d,0x5a,0x41,0xc6,0xdc,0x31,0x32,0xbc,0xb5,0x67,0x6c,0xb3, - 0xa4,0xbe,0x18,0x85,0xb9,0xce,0xd1,0xe5,0x2a,0xde,0x4d,0xa8,0x9f,0x71,0xcf,0xe9,0xc3,0xcd,0xf6,0xdd, - 0xbb,0xb5,0x02,0x7c,0xa5,0x4f,0xce,0x6d,0x47,0xdb,0x65,0x23,0x20,0x9e,0x30,0x5d,0xed,0x85,0xaa,0x6a, - 0xd8,0x38,0xe8,0x52,0x39,0x53,0xc2,0xb9,0xbd,0xa8,0x3d,0xa7,0x36,0xa2,0xec,0x21,0xcc,0x9e,0x89,0x2d, - 0x61,0x35,0x96,0xd8,0xf1,0xc1,0x45,0x14,0x68,0x1e,0xf5,0x0d,0xf1,0x07,0x89,0x03,0x04,0x81,0x55,0x16, - 0xc8,0x3e,0x75,0x9a,0xa1,0xc6,0x97,0xf0,0x1f,0x7d,0x16,0x58,0x30,0xa1,0x39,0xcb,0x92,0x0d,0xd2,0x89, - 0xac,0xad,0x2b,0xb4,0x72,0xe2,0x28,0x61,0x53,0xc3,0xa0,0x75,0xfc,0x63,0x0e,0x35,0x0f,0x87,0xc9,0x28, - 0x16,0xdc,0xb7,0x1a,0x64,0x91,0xe0,0x8d,0xc5,0x7d,0x17,0x7d,0x1e,0x74,0xf5,0x49,0x89,0xc0,0x23,0x49, - 0x28,0x9f,0xfe,0x35,0x51,0x2c,0x11,0x5d,0x76,0xb9,0xd8,0x27,0x15,0x41,0x62,0x79,0x03,0xcd,0x2a,0x23, - 0x6e,0xec,0x88,0xea,0xd4,0xc0,0x40,0x5c,0x53,0xc9,0xd2,0xb2,0x39,0xa5,0xbe,0xb0,0xb6,0x6c,0x22,0x8f, - 0xb6,0xd8,0xb9,0xc6,0x21,0x02,0x15,0x0e,0xa2,0x53,0x88,0xb1,0x7d,0xcc,0xb1,0x1c,0xc1,0x95,0xb7,0x37, - 0x4a,0x1f,0x1f,0x8c,0x0e,0x82,0xfd,0xe0,0x20,0x88,0x47,0x5c,0xe6,0x22,0x41,0xd5,0xfb,0x5e,0xb0,0xaf, - 0xc3,0xa9,0xc2,0xef,0x96,0x7a,0x1f,0x1a,0x8f,0x52,0x96,0x02,0x31,0xa7,0x15,0x58,0x7b,0x1b,0x59,0x50, - 0xc0,0xac,0x29,0x87,0xfd,0x6e,0x72,0xa9,0x35,0xb7,0xef,0x85,0x2d,0x74,0xb2,0x40,0xc1,0xd7,0x54,0x95, - 0x90,0x53,0xc4,0xc4,0x3c,0x6a,0x81,0x49,0xa2,0xe9,0xf5,0x4c,0xc2,0xf1,0xe0,0xb1,0x41,0x47,0x2b,0xc9, - 0xb4,0x5b,0x8a,0xd0,0xc4,0xd4,0x50,0x4f,0x12,0xe8,0x8c,0x29,0x9b,0xcc,0x9b,0x10,0xc6,0x59,0x85,0x91, - 0x3f,0x17,0xa0,0x86,0x9f,0x46,0xf6,0x3e,0x9a,0x81,0x94,0x19,0x31,0x55,0x53,0x30,0x71,0xe3,0x73,0x4a, - 0xc0,0x29,0xfc,0xa9,0x68,0x7d,0x7f,0xa5,0x17,0x3d,0xaf,0x87,0x28,0x60,0xe2,0x70,0xc1,0x0e,0xb6,0xe1, - 0xe4,0x59,0xb9,0x83,0x33,0x45,0x56,0x95,0x7b,0xdf,0x05,0xab,0xfb,0x42,0xe4,0xd7,0x21,0xf3,0x28,0xb5, - 0xab,0xb3,0xca,0x82,0xf1,0x44,0x20,0x88,0xbd,0xa2,0xdd,0xc1,0xc9,0x1f,0x48,0xc2,0x46,0xb5,0x63,0x61, - 0x13,0x7e,0xc0,0x86,0xa4,0x04,0xf7,0x5a,0x65,0x6a,0xae,0x38,0x2a,0x97,0x1d,0x43,0xc2,0x53,0x20,0x5f, - 0x9a,0x09,0x51,0xea,0x99,0x2e,0x04,0x51,0x22,0xad,0xa0,0x22,0x87,0x52,0xaf,0xf2,0xce,0x43,0xa5,0xcb, - 0xfc,0x83,0x5a,0xd1,0x66,0xfc,0x24,0xa2,0x82,0xea,0x49,0xd2,0x36,0x91,0x88,0x85,0x81,0x5d,0xad,0xae, - 0x10,0x9a,0x17,0x75,0x48,0x09,0x85,0xe5,0x34,0x4b,0x60,0x47,0x23,0x06,0x07,0x95,0x73,0x64,0x66,0x69, - 0x6c,0xbd,0x2e,0x2a,0xd6,0x56,0x54,0x26,0x6c,0xfe,0x35,0x85,0xaf,0x1f,0x3b,0xa1,0x22,0x43,0x27,0x55, - 0xdf,0x2b,0xd3,0xf7,0xa4,0xd5,0xb7,0xd5,0x33,0xe0,0x5c,0xbb,0x82,0xdb,0xb0,0xee,0x53,0xa5,0x06,0x47, - 0xdc,0xf3,0x86,0xa8,0x70,0x31,0x1d,0x49,0x8d,0x6f,0x32,0x70,0xed,0x95,0x66,0x84,0xde,0x8c,0x85,0xcd, - 0x2e,0xa4,0xcd,0x5d,0xcd,0x47,0x3b,0x44,0x58,0xf0,0x6e,0x42,0xec,0xed,0x3a,0x69,0x56,0xd2,0x4d,0x95, - 0x14,0x65,0x4f,0x5d,0x23,0xbd,0x44,0x79,0xfa,0x01,0xe0,0x52,0x9a,0xf9,0xed,0x40,0xe5,0x98,0x3d,0x4c, - 0xd7,0x2b,0xd5,0x2b,0x80,0x2e,0xe8,0xa9,0x4e,0xa5,0x86,0x1d,0x58,0xa2,0x14,0x48,0x94,0x93,0xd4,0x22, - 0x07,0x91,0x69,0x02,0x19,0x36,0xf1,0xe0,0xa8,0x0c,0x63,0x04,0x2d,0xe1,0x73,0xc3,0xf2,0x87,0xf2,0xcc, - 0x87,0x06,0xba,0x00,0x25,0x3f,0x0c,0xd3,0xb9,0x25,0x1a,0xe0,0x1a,0x59,0x44,0xe4,0x1b,0x04,0x88,0x64, - 0xa0,0x3f,0xa2,0xb6,0x45,0xfa,0x4f,0xb4,0x41,0x26,0x0d,0x10,0x7f,0xa0,0x1b,0xa0,0x23,0xca,0x0d,0xe8, - 0xad,0x5f,0xaf,0x27,0x1c,0x59,0x46,0x47,0x6d,0x49,0xcc,0x5a,0x96,0x83,0x93,0xcb,0x52,0xc9,0x50,0x75, - 0x48,0x3c,0x77,0x41,0x3b,0xcd,0xeb,0xea,0x0d,0x4a,0x15,0xc0,0x64,0xe1,0xd3,0x01,0xd6,0x5c,0x54,0xfb, - 0xd0,0xe5,0x16,0x0d,0xcf,0x5e,0x56,0x4d,0xe4,0x78,0x9a,0x62,0x33,0x2e,0x08,0x7c,0xcb,0x97,0xc0,0xf0, - 0xaa,0x58,0xc9,0x42,0x28,0xa2,0x85,0x3c,0x26,0xc1,0xf4,0x59,0x5d,0xd5,0x4e,0xaa,0x58,0x4a,0x29,0x22, - 0xd1,0x75,0x74,0x80,0xde,0xde,0x7f,0x61,0xee,0xff,0x85,0xfd,0xba,0xdc,0x2d,0x7b,0x55,0xdc,0x6c,0x25, - 0x1e,0x57,0x3b,0x5c,0xac,0x96,0x20,0x4b,0x7a,0x62,0xa6,0x23,0x96,0x6a,0xb5,0x80,0x1e,0x7c,0xe4,0xab, - 0x9b,0x57,0x78,0x3c,0x7c,0xa9,0x53,0xe3,0xd0,0xc6,0x39,0x46,0x0b,0x11,0xd4,0x2e,0x34,0x1d,0x99,0xe2, - 0x1d,0x8a,0x62,0x1e,0x8e,0x00,0x74,0x00,0x7b,0x5f,0x1d,0x04,0xf2,0xf7,0x81,0xfc,0x7d,0xf8,0x85,0xfc, - 0x7d,0xf0,0x50,0xfd,0xfd,0x4a,0xa5,0x7f,0x19,0x98,0x00,0x64,0x52,0xe1,0x73,0x55,0x40,0x55,0x78,0xf8, - 0x79,0xa0,0xd5,0x8b,0xa7,0x50,0x75,0x97,0x52,0x0f,0xee,0xab,0xe6,0xe5,0xcf,0xc1,0xbe,0xfa,0xab,0x7a, - 0x3b,0xf8,0x42,0x25,0x7c,0xf1,0xf9,0xfd,0x7f,0xaa,0x32,0x5f,0xde,0xd7,0x95,0xe8,0xeb,0x81,0x6e,0xf4, - 0xaa,0x70,0xcc,0xc3,0xdf,0xe3,0xf0,0xab,0x7f,0x12,0xcb,0xf2,0x28,0x3c,0xb8,0x7f,0x7f,0xbd,0xa6,0x9f, - 0x5f,0x7c,0xce,0x3f,0xbf,0xda,0x1f,0xa9,0xce,0x03,0x4a,0x7c,0xf8,0x15,0x27,0x7e,0xfe,0xcf,0x91,0x23, - 0x86,0x10,0x4e,0xe0,0xf0,0xb3,0x4f,0x47,0x40,0x12,0x2c,0x93,0xdc,0x75,0x0a,0x2e,0x5c,0x67,0xdf,0xd9, - 0xb1,0x82,0x17,0xef,0x43,0x86,0x96,0x14,0xaf,0xa2,0x57,0x12,0x94,0x8d,0x10,0x6e,0xe9,0x7f,0xa3,0xa3, - 0xd5,0x75,0xbe,0xb9,0xd5,0x97,0x5d,0x8f,0xdd,0x34,0xaa,0xb2,0x8c,0x32,0xcf,0x01,0xf5,0xf0,0xe0,0x21, - 0xc4,0x3a,0x77,0xef,0x3e,0xf8,0x0a,0x7f,0x47,0x78,0x6b,0x53,0x2a,0x41,0x3e,0xe5,0x83,0x15,0x0c,0x9c, - 0xcf,0x9c,0x7e,0xa9,0x03,0xa0,0x8b,0x7f,0xab,0x4b,0x8d,0x0b,0x2b,0xae,0x4c,0xfb,0xde,0x80,0xa6,0xc2, - 0x91,0x90,0x7d,0x3d,0xe5,0x29,0xcf,0xf1,0xe7,0xed,0xf2,0x67,0x51,0xf1,0xfa,0x2a,0xd5,0x81,0xf6,0xfc, - 0x0f,0x61,0x17,0x81,0xfa,0x22,0x2d,0x17,0x56,0xb0,0x30,0xfc,0x1c,0x3c,0x47,0x64,0x9b,0xe4,0x22,0x26, - 0xe6,0xe1,0x22,0x2a,0xfd,0xd3,0x8f,0xae,0x28,0x5e,0xfc,0x54,0xb5,0x93,0xf0,0x5a,0x1c,0x6b,0x3c,0x6b, - 0x04,0xa9,0xac,0xf9,0x34,0xb2,0x19,0xc0,0x78,0x80,0xd3,0x16,0xca,0x1f,0x7e,0x47,0x3c,0x39,0xc1,0xe7, - 0xe8,0x7a,0x13,0xe8,0x88,0x44,0x8c,0x13,0xae,0x4d,0x61,0x83,0x2e,0x69,0x44,0x2f,0x55,0xba,0x54,0xf2, - 0xf4,0x75,0x87,0x40,0x8b,0x43,0x9d,0xda,0xe9,0xf4,0xa6,0x24,0x6a,0xa1,0xf4,0x2d,0xc2,0x27,0x66,0x63, - 0x02,0xfb,0x32,0x2a,0x3b,0x22,0x30,0x4a,0x48,0x53,0x34,0xca,0xbe,0x83,0x7f,0x64,0x24,0xf1,0x32,0x2e, - 0x8a,0x68,0x8e,0x3b,0xbc,0x94,0xbb,0x4f,0x5d,0x3f,0xd4,0x8d,0x78,0x9c,0x3a,0xb1,0xe6,0xe8,0x57,0x29, - 0xbf,0xa2,0x54,0xac,0x3c,0x82,0xc9,0x50,0xaf,0x90,0x84,0x4b,0x04,0x9a,0xca,0xae,0x67,0x15,0x66,0x1d, - 0x89,0x49,0x9e,0x9c,0xc6,0xc8,0x7a,0x06,0x53,0x1f,0xd6,0x93,0x64,0xa6,0x4d,0x8a,0xe9,0x12,0xe2,0x0c, - 0x6e,0x53,0xc5,0xe3,0x50,0x4b,0x28,0xb2,0x70,0xde,0x81,0x3c,0xcb,0x4a,0x1d,0xe4,0x1e,0xdf,0x82,0xf4, - 0xda,0x29,0xb5,0xb5,0xe6,0xe7,0x53,0x1e,0x0b,0x0a,0x84,0xcd,0xb2,0x6a,0xa7,0x06,0x33,0xa2,0xcf,0x4e, - 0x89,0x91,0x91,0xc5,0x69,0x15,0x6b,0xe4,0xeb,0x5a,0x05,0x31,0x86,0xa9,0xe8,0x9f,0x2e,0xd8,0x48,0xe1, - 0x57,0x08,0xe2,0x5a,0x95,0x3b,0x8b,0xb1,0xa3,0xde,0x3a,0x04,0xe4,0xb7,0x42,0x40,0x0e,0x7a,0xb1,0x0d, - 0x01,0x66,0x7b,0x79,0x4f,0x8b,0x30,0xef,0xde,0x4c,0x3c,0xb0,0xbf,0xd4,0x0b,0xfb,0xdf,0xb6,0xa7,0xbe, - 0x75,0x59,0xa8,0x65,0xfb,0x90,0xf2,0x33,0x9f,0xf9,0xc1,0xb7,0xbb,0xf8,0x05,0xe4,0xf5,0xad,0x0d,0xe8, - 0x4e,0x35,0x20,0x59,0x7d,0x57,0x5b,0xe6,0xf5,0xfe,0x06,0x5c,0x8c,0x5c,0x6b,0x61,0x5a,0x50,0xf1,0x37, - 0xa6,0x0b,0xde,0x5c,0x5e,0x49,0xf0,0xc8,0xaa,0x02,0x2c,0xa8,0x11,0xd5,0x7f,0x37,0xe1,0xb4,0x76,0xec, - 0xec,0x82,0x7f,0x6b,0x38,0xda,0x0f,0xdc,0xf3,0x66,0x98,0x5a,0xed,0x08,0x4e,0x86,0xe6,0xb6,0x2a,0xd7, - 0x46,0x34,0x58,0xa5,0x37,0xf5,0xac,0x04,0x9f,0xad,0x36,0x3a,0xa0,0xac,0xd6,0xac,0x4a,0x73,0x1b,0x2d, - 0x58,0x59,0xba,0x85,0x1a,0x60,0x74,0x83,0x4b,0xb3,0x95,0x5a,0xa6,0x3d,0x12,0x09,0x1b,0xb7,0xd9,0xf8, - 0x57,0xda,0x6b,0x2b,0x52,0x2b,0x6f,0x8e,0xd1,0x02,0x86,0xde,0xe2,0x58,0x91,0xb5,0xde,0xae,0x6d,0x4f, - 0xb6,0x4a,0x2b,0x20,0x10,0x97,0x89,0x1b,0x8e,0x48,0x5e,0x2f,0xa1,0x29,0x2e,0x3c,0x1c,0x6a,0x7a,0xd4, - 0x2e,0xb0,0xf1,0xf9,0x35,0xbc,0x50,0x89,0x47,0x4c,0xed,0x19,0x67,0xb2,0x9b,0x96,0x27,0xc7,0x1a,0x69, - 0xcf,0xc3,0x82,0x7c,0x42,0xc2,0x67,0x20,0x8a,0x6c,0x65,0x6d,0x86,0x7c,0x0b,0x70,0x24,0x9e,0x86,0x9b, - 0x89,0x60,0xff,0x56,0xd7,0xb1,0x2a,0x2c,0x5c,0x28,0x7f,0x4c,0xf8,0x5d,0xa2,0xe7,0x2d,0x47,0xae,0x22, - 0x80,0xcf,0x85,0x90,0x46,0x34,0x0f,0x45,0x48,0xaf,0x20,0xa0,0x5e,0x20,0x83,0xe7,0xc6,0x06,0xa1,0xb3, - 0x06,0xbb,0xb6,0xf0,0x46,0x0b,0x1d,0xf4,0x77,0x3f,0xb0,0xef,0xad,0x85,0x67,0xd2,0x59,0x03,0xbb,0xc1, - 0x33,0xd9,0xfe,0xf8,0x70,0x8c,0xaa,0x00,0xe6,0x15,0xc9,0x63,0x05,0x35,0xe7,0x21,0x68,0xaa,0xa7,0x8a, - 0x7b,0x7e,0xf7,0xae,0xc3,0x8f,0x89,0x9b,0x4d,0x25,0xd2,0xbf,0x7b,0x37,0x33,0x3d,0x13,0x53,0x3a,0xa5, - 0xd6,0x5d,0xe7,0xc5,0xac,0x27,0xb3,0xe8,0x61,0xb5,0x7b,0x49,0xd1,0x83,0x93,0x99,0x1e,0xdd,0x01,0x3d, - 0x5e,0xeb,0x5e,0x2c,0x22,0xd3,0xa2,0x07,0xf3,0x87,0xde,0x59,0x74,0x19,0x4b,0x05,0x29,0x4f,0x85,0x07, - 0xc4,0x05,0x75,0xcc,0xbd,0x8d,0xd3,0xc1,0x16,0xac,0x88,0x01,0x84,0xf3,0xd0,0xe6,0x8a,0x74,0xdd,0x00, - 0x2b,0x78,0x3e,0x5b,0xd0,0x3f,0x50,0xb1,0xdc,0xd2,0x9e,0xf0,0xf6,0xd3,0x91,0x03,0xf3,0xa9,0xe6,0xb2, - 0x04,0x94,0x5a,0x0e,0x57,0x10,0x7e,0x41,0x9c,0xa9,0xbc,0xfe,0xfb,0x89,0x1f,0x0d,0x12,0x57,0x62,0x4f, - 0xe0,0x68,0x1c,0x86,0x2d,0x44,0x31,0xa1,0x9e,0xe8,0x72,0xe9,0x78,0x20,0xd9,0x0c,0x0f,0x2d,0x7a,0x2e, - 0x81,0xdd,0xe0,0x32,0x83,0x3c,0xdc,0x96,0x13,0x55,0xee,0x10,0xac,0xd6,0xe0,0x5a,0x4e,0x33,0xa9,0xd0, - 0xc2,0xbb,0x51,0xa3,0x8f,0x18,0x3f,0xc7,0xb1,0xd5,0xfa,0x8c,0xbc,0xf9,0x28,0xed,0xf7,0x59,0x3e,0xe3, - 0x5c,0x2b,0xff,0xaf,0x39,0x9e,0x15,0xac,0x67,0x7d,0x56,0x4f,0x71,0x94,0xae,0x58,0x8e,0xc7,0x7c,0xb4, - 0x25,0x2c,0x29,0x7d,0x88,0x8d,0x85,0x6a,0xc7,0xd9,0xb0,0x0e,0xcb,0xd0,0xcb,0xfa,0x61,0xe2,0x9b,0x64, - 0x91,0x49,0x9c,0x0b,0xdd,0x9d,0x79,0x23,0x87,0x9d,0x8d,0x06,0xef,0xab,0x04,0x20,0x93,0x29,0x51,0xfa, - 0x2b,0x71,0x4a,0xe7,0x0c,0xf5,0x10,0xa4,0xdb,0x4c,0x3c,0x62,0x47,0x1b,0xd1,0x92,0x77,0xfe,0x07,0x8f, - 0x75,0x44,0x63,0x06,0x61,0x4e,0x3b,0x02,0x91,0x1f,0x75,0xe9,0x05,0xf8,0x57,0x73,0x1c,0xb7,0xce,0xa4, - 0xdc,0x30,0xfb,0x58,0x5f,0xd5,0x30,0xaf,0x89,0xaa,0xd3,0x8a,0xf9,0xf4,0x25,0xf8,0x74,0x53,0xb6,0xa2, - 0xa7,0xc3,0x2c,0x45,0x7b,0x26,0x58,0x5b,0xfd,0x83,0x6d,0xc3,0xf5,0xe8,0x78,0xe9,0x86,0x49,0x73,0x53, - 0x22,0x9a,0x50,0x32,0xd6,0x0c,0x5f,0xa4,0xde,0xa5,0xc1,0x59,0xc9,0xf8,0x03,0xc5,0xd1,0x46,0x8a,0x39, - 0x17,0xad,0x57,0xe6,0xdb,0xd4,0x40,0x54,0x81,0xf4,0x88,0x29,0x1d,0xa2,0xdb,0x75,0x59,0xff,0x60,0xdf, - 0x1b,0xd7,0x2a,0xe8,0xd1,0xca,0x5f,0x51,0x0b,0x37,0xd5,0x55,0x2d,0xa2,0x71,0x93,0x7e,0xdf,0x2c,0xea, - 0x86,0xc3,0xdd,0x6d,0x78,0x53,0xcf,0xc3,0xbd,0x3f,0xdc,0xe3,0xa9,0xd7,0xdf,0xf3,0xdf,0xf3,0xe7,0x15, - 0x3e,0x9f,0xd1,0x32,0x3d,0x09,0x0f,0xfc,0xb7,0xe1,0x7d,0xff,0x4e,0xf8,0xc0,0x7f,0x4d,0xbf,0xbf,0x0e, - 0x1f,0xfa,0x6f,0xc2,0xcf,0xfd,0x77,0xe1,0x17,0xfe,0xf3,0xf0,0x9f,0xfe,0x8b,0xf0,0x4b,0xff,0x47,0x30, - 0xf4,0x3f,0x1e,0xbd,0x1e,0x87,0xd7,0x57,0x45,0x40,0x7f,0x7d,0x66,0x03,0x83,0xa3,0x07,0xfe,0xb3,0xb1, - 0xef,0x1c,0x39,0xc1,0xd1,0xd7,0x63,0x9f,0x2e,0xf9,0xe0,0xe8,0xf9,0x78,0xe3,0xff,0x78,0x74,0xa0,0x4a, - 0x1e,0x50,0xee,0x80,0x72,0xef,0x77,0x96,0xba,0xaf,0x4a,0xdd,0xaf,0xb7,0xb7,0xaf,0xfe,0x0a,0x57,0x29, - 0x3f,0x50,0xfc,0x01,0x15,0xbf,0xad,0x9c,0xcf,0xbd,0xfa,0x4f,0x74,0xbf,0xfc,0xc5,0x3d,0xe3,0x4b,0xfa, - 0xa6,0x2f,0x34,0xf7,0x35,0x35,0xe7,0xdc,0xa3,0xac,0x37,0xa8,0x77,0xcf,0xb9,0x17,0x1c,0xbd,0xab,0xa6, - 0xe3,0xbf,0xa5,0xaf,0xb1,0x83,0xc6,0xee,0x48,0xc5,0x17,0x6c,0xcf,0x87,0x2c,0x19,0xce,0x1b,0x5d,0x1f, - 0x09,0xb5,0x12,0x6f,0x54,0x89,0x77,0x54,0x82,0xdb,0x6d,0x95,0x40,0x47,0xb2,0x31,0xdf,0xb0,0xcd,0x33, - 0x91,0x6a,0xf9,0x2a,0x5e,0xb3,0x2d,0xe7,0x7a,0x77,0x74,0x74,0x3c,0x1d,0x8c,0xfb,0xeb,0x7b,0xec,0x03, - 0xeb,0xde,0xda,0x61,0xb7,0x58,0x8e,0x47,0xe5,0xe0,0x98,0x68,0x0b,0xda,0xea,0xc6,0x5a,0xaf,0x2c,0xac, - 0xc5,0x50,0xf6,0x86,0x2e,0xb5,0xb6,0x84,0xca,0xc6,0x58,0x16,0xc2,0x2a,0xa1,0x9f,0xd1,0x21,0xcf,0xd2, - 0x61,0xef,0x22,0x84,0xf2,0xc1,0x81,0x5b,0x85,0xbb,0x07,0x74,0x35,0xbe,0xe6,0xb8,0x77,0x67,0x00,0x17, - 0x9c,0x99,0xb3,0xa3,0x27,0xe3,0x9a,0x71,0x87,0xbe,0xa7,0x52,0xd6,0xe5,0x11,0xe8,0x85,0x8b,0x42,0xc9, - 0x80,0xad,0xfe,0xd1,0xb3,0x8e,0x1a,0x90,0xd4,0x8e,0xd2,0x30,0x0f,0xd2,0x3e,0x11,0xfe,0x54,0xe8,0x6d, - 0xad,0x10,0x2a,0x11,0x65,0x34,0x23,0xd8,0xa7,0xbc,0x3b,0xb5,0x3c,0x68,0x44,0x3e,0xde,0xf7,0x66,0xbb, - 0xbb,0x34,0xbc,0xaf,0x7d,0x29,0x6a,0xde,0x22,0x31,0xda,0x1d,0x3c,0x7d,0xb8,0x69,0xb8,0x64,0x97,0x79, - 0x46,0x2c,0x8a,0xb1,0x43,0x1d,0x73,0xa8,0x64,0xe0,0x0b,0x76,0x18,0xbf,0xea,0xf7,0xe1,0x3f,0x91,0x95, - 0x85,0xe0,0x73,0x71,0x85,0x17,0x8b,0x9d,0x06,0x3f,0xcd,0x19,0xfd,0x03,0xc6,0xd6,0x10,0x1b,0xbd,0xa1, - 0x5b,0xf9,0x1e,0xab,0x75,0xad,0xd7,0xf8,0xfd,0xee,0xee,0x5d,0x02,0x0b,0xfc,0x36,0xbe,0xbb,0xa9,0x59, - 0xc2,0xd6,0xd4,0x70,0xbf,0x54,0x63,0x44,0x84,0x65,0xd7,0x53,0x56,0x5c,0x53,0x88,0xc5,0x40,0xe7,0x14, - 0xe1,0x8f,0x47,0x8b,0xb1,0x47,0x78,0x67,0xbd,0x2e,0x58,0x11,0x74,0xbd,0x7e,0x01,0xd9,0xf2,0x0b,0xad, - 0x15,0xc4,0x7d,0xc2,0x8e,0xc5,0x77,0xa3,0xf0,0xec,0x28,0xa3,0x33,0x38,0x96,0x77,0xd8,0x0c,0x07,0x2d, - 0x0f,0xcd,0x92,0xe6,0xa3,0x32,0xc8,0x65,0xfa,0xc4,0xff,0x78,0xb5,0x06,0xc2,0xf0,0xb9,0x71,0x8e,0x2a, - 0xca,0x6e,0x86,0x20,0xd5,0x30,0x12,0xc2,0xff,0x30,0xc8,0xae,0x8d,0x6f,0x03,0xd9,0x3c,0x2e,0x01,0x62, - 0x2c,0xc8,0x6d,0xdc,0x8d,0x90,0x91,0x97,0x95,0x83,0xd6,0xea,0x11,0x46,0x7b,0xdf,0xd6,0xf0,0x09,0x8f, - 0xb5,0x3c,0xef,0xbc,0x41,0x61,0x20,0xbc,0x1b,0x86,0xae,0xdd,0x69,0xd7,0x5a,0xb2,0xac,0x7d,0x2a,0x53, - 0x33,0x42,0xd2,0xca,0x05,0x77,0x36,0xd4,0x8e,0xb7,0xa3,0xa3,0xfc,0xa8,0x18,0x5b,0x8f,0x1d,0x50,0x36, - 0xf3,0xae,0xc5,0x0d,0x95,0xb2,0x4d,0x88,0xc2,0x89,0x5f,0x54,0xc8,0x34,0x92,0xd3,0xfa,0x72,0xcb,0xc9, - 0x19,0x56,0xfc,0x1f,0xb8,0x71,0x68,0xcb,0x9a,0xd7,0x25,0x21,0x1e,0xd7,0x6b,0x27,0x4e,0x77,0x7f,0x7e, - 0xeb,0xb0,0x3c,0xb7,0xce,0x6b,0x57,0x79,0x6c,0x91,0xa4,0x58,0x5c,0x26,0x2f,0x55,0x18,0x73,0x4b,0x06, - 0x24,0xe9,0xb0,0xa2,0x4c,0x2d,0x11,0x0f,0xa7,0x0e,0x95,0x2b,0xeb,0x0b,0x79,0xe0,0x93,0x5f,0x33,0xce, - 0x27,0x72,0x25,0x64,0x05,0x36,0xf9,0x5e,0xaf,0xc1,0x28,0x1f,0xaa,0x22,0x17,0x49,0x01,0x57,0x20,0xe8, - 0x5b,0xbe,0x44,0xe0,0xa9,0xbd,0x4b,0x43,0xa8,0x10,0xb3,0x6c,0xa1,0x96,0x0e,0xae,0x36,0xb4,0xf8,0x5e, - 0x61,0x79,0x77,0x76,0xe4,0x4b,0xf7,0xae,0x26,0xca,0xfa,0x50,0x56,0x61,0x3b,0x5d,0x2a,0xd9,0x29,0xba, - 0x87,0x4e,0xd9,0x83,0x41,0x22,0x71,0xb7,0xd4,0x81,0x48,0xdc,0x9d,0x2d,0x59,0xaa,0xdd,0xfa,0x82,0xe2, - 0xe5,0x1d,0x84,0xbd,0xe4,0xd9,0x8b,0x5a,0xcf,0x01,0x37,0xc0,0xf2,0x85,0x57,0x55,0x33,0x51,0xe5,0x2e, - 0x80,0x90,0xa0,0x24,0xf3,0xfb,0x41,0x03,0xf2,0x15,0x56,0x71,0x77,0xa0,0xce,0x98,0xae,0xd7,0xb9,0x5b, - 0x4a,0x83,0xb5,0xe3,0x22,0xe1,0xb4,0xb5,0x51,0xfa,0x09,0x9c,0xc6,0xfe,0xf2,0xd2,0xd5,0xef,0x9d,0xa9, - 0x5f,0x87,0x9a,0x00,0xee,0x1b,0x05,0x54,0x88,0xec,0x6a,0x00,0x49,0x10,0xf9,0x35,0xf0,0x08,0x0a,0xa2, - 0xc8,0xfc,0x9f,0xc2,0xeb,0xcb,0x8b,0xe0,0x7a,0x53,0x55,0xa4,0xef,0x66,0x4d,0x4a,0xaa,0x57,0xbd,0xae, - 0x38,0xbc,0x4d,0x73,0x0c,0x68,0x4b,0x60,0x86,0x33,0xf5,0xb2,0xe1,0x47,0xe7,0x0e,0x50,0xc6,0x46,0x5f, - 0x2e,0x2f,0x6d,0xd7,0xc3,0x32,0xd9,0x8e,0xe3,0x75,0xa6,0x7d,0x41,0x4b,0x7b,0xc3,0xc6,0x6f,0x48,0x5f, - 0x2a,0xb0,0xa7,0xdd,0x21,0x1a,0x12,0x1b,0x03,0xd5,0x58,0xbf,0x59,0xb6,0xdc,0xf8,0x76,0xa7,0x9d,0xec, - 0x7e,0xdb,0x17,0x42,0x7d,0xa3,0x2b,0x75,0x33,0xbb,0xa9,0x2d,0xb2,0x83,0x5a,0x63,0x0d,0xc3,0x01,0xe6, - 0xf6,0xec,0x10,0x26,0xa9,0x65,0xab,0x59,0x32,0x02,0x4c,0x1f,0xef,0x1e,0x78,0xf2,0x3e,0x3d,0x81,0x1c, - 0x13,0x0a,0x92,0x6e,0xc7,0x98,0xfc,0xe6,0x70,0x6a,0xb2,0xad,0xa6,0x79,0xa5,0xc8,0xfe,0x6a,0x2e,0xc1, - 0x69,0xf1,0x06,0x77,0xb8,0x92,0xeb,0xdc,0x41,0xd3,0xb5,0x10,0x15,0xb6,0x41,0x43,0x63,0x31,0x6c,0xfb, - 0x86,0xb3,0x4e,0xa7,0xc8,0xcd,0x2a,0xc4,0x08,0xb2,0x13,0xf4,0x66,0x62,0x2b,0xf0,0xc5,0xc6,0xbf,0x9e, - 0xc6,0xf1,0x52,0x54,0x93,0xdb,0xb3,0x53,0x62,0xcc,0xfa,0x55,0xbf,0x53,0xa1,0x26,0x3a,0x68,0x15,0xfe, - 0x6a,0xdd,0x38,0xb1,0x8e,0x65,0x72,0x51,0x5f,0x07,0x16,0x90,0x59,0x8b,0x21,0x80,0x6f,0xad,0x06,0x7b, - 0xf6,0xb8,0x43,0xec,0x2f,0xac,0x58,0x74,0x2e,0xfb,0xe5,0x6f,0x8c,0xdf,0xbf,0x4e,0x2e,0x88,0x54,0x4f, - 0x20,0x6f,0x97,0x29,0xfc,0x84,0x86,0xe9,0xbc,0xdb,0x63,0x6e,0x6c,0x02,0x0a,0xe9,0xb3,0xb9,0xa5,0x68, - 0xa4,0x00,0x80,0x72,0x95,0x80,0xbb,0x60,0x0f,0xe0,0x3f,0x35,0xef,0x89,0xdb,0xeb,0xd7,0x1f,0x17,0x74, - 0x33,0xb5,0xc3,0x7f,0x7b,0x23,0xf6,0x43,0x83,0x6e,0x42,0xd6,0xe5,0x96,0xb9,0xea,0x47,0xf7,0xaa,0x7c, - 0x11,0x97,0x1d,0xa7,0x0f,0xbb,0x81,0xf5,0xd6,0xbf,0xaa,0x65,0x8f,0xb9,0xb3,0x3a,0x46,0xba,0xad,0xd3, - 0x7a,0xe9,0x8e,0xfa,0x1f,0x3b,0x88,0x7a,0x35,0x3d,0x18,0x85,0x0c,0x6f,0x1c,0x85,0x2a,0x63,0x17,0xef, - 0xee,0xd4,0xdc,0xcb,0x3c,0x4c,0x8d,0x5b,0x6f,0x6c,0xdb,0x94,0xaa,0x57,0xe9,0x6e,0xdf,0x22,0x0d,0x50, - 0xbc,0x13,0x61,0xdf,0xd8,0x5b,0x67,0x8d,0xed,0x4d,0x75,0x8f,0xa2,0xfb,0x96,0x8f,0xeb,0x47,0xde,0x06, - 0xf7,0x9b,0xb6,0x57,0x1f,0x9e,0x76,0xed,0x06,0xb0,0xdf,0xd4,0x48,0xe3,0x20,0xb5,0xdb,0xaa,0xc1,0xfc, - 0x4d,0x2d,0xd5,0xce,0x52,0xa3,0x1d,0x28,0x97,0x29,0xaf,0x4e,0x35,0x5d,0x23,0x62,0xae,0x12,0xd3,0x12, - 0x0c,0xbc,0x95,0x1c,0x5f,0x41,0x83,0x12,0xfa,0x6b,0xc8,0x91,0x07,0x79,0x26,0xcb,0x8e,0x50,0x39,0x19, - 0xc3,0x70,0x23,0x48,0x1b,0x9d,0x25,0xc5,0x37,0x36,0x25,0xd6,0xe1,0x12,0x27,0x46,0xc4,0x46,0xd7,0x42, - 0x99,0xaa,0xa3,0x1a,0x09,0xd7,0x6c,0xb5,0x5b,0x0c,0x56,0x6a,0xde,0x50,0xe1,0xe4,0x16,0xf6,0x9d,0x84, - 0x15,0x49,0x55,0xa7,0x80,0x4a,0x15,0x77,0xb7,0x4e,0xf6,0x4f,0x0c,0xcb,0x30,0x11,0x83,0x21,0x56,0xc5, - 0xd4,0x11,0x89,0x77,0x58,0x81,0xc0,0xee,0xc3,0xd2,0x4e,0xd5,0x8f,0xa4,0x88,0x14,0x4e,0x5c,0x53,0xad, - 0xdc,0x46,0xb3,0x81,0x2d,0x3d,0xb1,0x49,0xad,0xb9,0x55,0x38,0xd1,0x7c,0xc0,0xaa,0xb2,0x9e,0xfe,0x8f, - 0xc0,0xf1,0xd8,0x4b,0x89,0xab,0x03,0x63,0xc1,0xe1,0x38,0x4f,0x7f,0xa5,0xa6,0x0f,0x73,0x51,0x1d,0xa2, - 0x85,0x23,0x14,0xac,0x38,0x39,0x58,0x35,0xd6,0x11,0x15,0x9b,0x30,0x60,0x87,0x94,0x0e,0x53,0x1f,0x3a, - 0xce,0xe2,0xab,0x60,0xcf,0xfd,0x8f,0xe0,0xe8,0xf8,0xea,0x78,0xf7,0x64,0x3d,0x18,0xf7,0xbd,0xbd,0x79, - 0xa5,0x6d,0x3e,0x81,0xe6,0x43,0x01,0x3e,0xb5,0x68,0x3c,0x39,0xf3,0x5a,0x89,0xba,0x47,0x71,0x34,0x41, - 0xbc,0x9f,0x95,0xb2,0xee,0x76,0xef,0x13,0xe7,0xac,0xdf,0xc5,0xaa,0xfd,0xe4,0x51,0x2c,0x68,0x14,0x4e, - 0x1e,0x5d,0x29,0x21,0x9e,0x5a,0x25,0x22,0x3c,0xab,0x44,0xa1,0xc6,0x03,0xe5,0xa7,0x41,0x5a,0xa9,0xc1, - 0x1a,0x2c,0xfe,0xac,0xab,0x99,0x41,0x8b,0x5d,0x1d,0xf5,0xbe,0x86,0x42,0x3b,0x44,0x6e,0x62,0xe9,0x1d, - 0x4f,0x7b,0xac,0xe2,0xae,0x7c,0x18,0x4e,0xc3,0xaa,0xc2,0x70,0x16,0x4e,0x55,0xd8,0x14,0x1e,0xdb,0xb4, - 0x71,0xfd,0x21,0x2a,0xb9,0x88,0xe8,0xa7,0xcd,0x67,0xcc,0x85,0x5a,0x48,0x62,0xe8,0x5c,0x3d,0x4d,0xeb, - 0xe4,0xb9,0x28,0x31,0x83,0xa2,0xd1,0x28,0x32,0x26,0xd1,0x2b,0x7f,0xe6,0x05,0x51,0xc5,0xfa,0xd5,0x37, - 0x4b,0x29,0xda,0xd6,0xb7,0xab,0x2e,0xf8,0xad,0x10,0x6f,0x7d,0x45,0x4d,0x20,0x96,0x4a,0x0b,0x28,0x2c, - 0x47,0xb9,0xb2,0x30,0x43,0xbc,0xf4,0x46,0x5f,0x66,0xca,0x2d,0x0c,0xa1,0x0f,0x98,0x7d,0x9c,0xec,0xce, - 0x4a,0x1f,0x56,0xa5,0xa6,0x9c,0x91,0x40,0x13,0x20,0x8c,0x72,0xb7,0xab,0x46,0xea,0x43,0x3e,0x6b,0x6a, - 0xa8,0x80,0xf3,0x93,0x60,0xd2,0x1c,0x53,0x0b,0x52,0x2b,0x0a,0x51,0xf9,0x1f,0x6a,0xaa,0x19,0xee,0x3e, - 0x1c,0x46,0xbb,0xbb,0xbd,0xc7,0xfb,0x43,0x0f,0xaa,0x7f,0x96,0x4a,0x6a,0xd4,0x7f,0xc8,0x7c,0xf8,0x8e, - 0x51,0xad,0x71,0xd4,0xf3,0x4b,0xa2,0x50,0x9b,0x72,0x87,0x90,0xc1,0xd2,0xaf,0x30,0xcc,0x74,0x69,0xa2, - 0xd1,0x55,0x50,0x91,0xfa,0x8a,0xeb,0x6c,0xbe,0x64,0x03,0x8a,0xd5,0x82,0xfb,0x2c,0x65,0x88,0x2e,0x8a, - 0xed,0xf0,0xba,0xfa,0x74,0x78,0x55,0x3a,0x2d,0x0b,0x0b,0x64,0x6b,0xca,0x52,0xb1,0x51,0x96,0xca,0x2c, - 0xfb,0xfa,0x16,0x2c,0x4e,0x7c,0x78,0xd9,0xcc,0x95,0x1f,0xe8,0xfa,0xb2,0xd7,0x71,0x76,0xe3,0xd9,0xa0, - 0xb5,0xde,0x07,0xd0,0xff,0xe5,0xf5,0x2e,0x1b,0x2a,0xc0,0x10,0x4b,0xa9,0xe1,0x0a,0xb4,0x7a,0xb4,0x84, - 0x6a,0xa4,0x39,0x5f,0x21,0x18,0x96,0x3a,0x4d,0x1d,0x94,0x26,0x1b,0x65,0x9b,0xe9,0x94,0xda,0x5c,0xa8, - 0x79,0x31,0x74,0x60,0x33,0xad,0x1d,0xd7,0xde,0xb6,0x72,0xfb,0xb6,0x01,0xcf,0xe8,0x50,0xec,0x5d,0x9b, - 0x95,0xfd,0xd5,0xcd,0xb2,0xe9,0xfd,0x44,0xee,0xac,0x1b,0x76,0x86,0x4e,0x13,0x1d,0x8b,0xbc,0xc1,0x87, - 0x34,0x67,0x59,0x3d,0x36,0x8e,0xda,0x57,0x4a,0xc9,0xea,0x7d,0xd6,0xea,0x9a,0xe7,0x5a,0xae,0xbc,0x6d, - 0xa9,0x21,0x11,0x08,0x1c,0xa7,0x79,0x06,0x27,0x9d,0x0b,0x6c,0xac,0x8e,0xc4,0x7c,0xb7,0x05,0x16,0x9f, - 0x0f,0x0b,0x05,0x16,0xd1,0x51,0x61,0x83,0x45,0xd1,0xff,0xbc,0xd2,0xd8,0x1b,0x55,0x52,0xb1,0x84,0x15, - 0xaf,0x0f,0x3c,0x3f,0x73,0x15,0xce,0xb0,0xc0,0x65,0x22,0x14,0x07,0xf5,0x6d,0xe0,0x21,0xa2,0x2b,0x2f, - 0xe1,0x01,0xcb,0x3d,0xdf,0x80,0xe1,0xfa,0xa8,0x6d,0xa5,0xe5,0x23,0x48,0x26,0x5b,0xe3,0xbd,0x3f,0xcc, - 0xd5,0x78,0xd9,0x3f,0x42,0x35,0xde,0xbc,0x7f,0xdf,0x80,0x71,0x62,0xc6,0x35,0x51,0x03,0x4b,0x3e,0x16, - 0x8e,0xfd,0xd2,0x8c,0x5c,0x07,0x9a,0x49,0x9a,0x2b,0xdd,0x44,0xbd,0x96,0xa9,0xb4,0x58,0xa8,0xb5,0x46, - 0xfd,0x60,0x98,0xa9,0x51,0xe7,0xb0,0x31,0xaa,0x46,0x9d,0xf5,0x1f,0xe8,0x27,0xb6,0x06,0x76,0xcb,0xbd, - 0x0a,0xb3,0xd5,0x01,0x94,0xa5,0x49,0x78,0xe2,0x19,0xb7,0x98,0xfc,0xc6,0xd0,0x1a,0xd4,0xa7,0x5c,0xe1, - 0xb7,0x2c,0x42,0xd9,0x68,0x92,0x72,0x6b,0xba,0x53,0x1d,0x84,0xa2,0xe1,0xfd,0x2c,0x6a,0x9b,0x10,0x1c, - 0xe4,0x8f,0x8d,0xc6,0x8a,0xed,0x8d,0xb1,0x0f,0xde,0x8e,0x56,0x9a,0x12,0x9a,0xb6,0x36,0xd7,0xc7,0x34, - 0x72,0x36,0x58,0x95,0xc9,0x62,0x20,0x3e,0x11,0xb7,0x8e,0xb6,0x6b,0xf2,0x75,0x26,0xe1,0x96,0xd9,0x37, - 0xd8,0x84,0xad,0x8b,0xb0,0xb5,0xd1,0xda,0x04,0xda,0xad,0x75,0x2e,0xc6,0x5f,0x6e,0x6c,0xcb,0xa2,0x74, - 0x4f,0xa2,0xb5,0x36,0xa2,0x69,0x92,0xfc,0x69,0xfa,0xef,0x20,0x48,0x34,0xb1,0x5a,0xc2,0x23,0x36,0x01, - 0x2c,0x90,0x36,0x51,0xe9,0x85,0x07,0x79,0x27,0x8c,0x4d,0xf9,0x11,0x41,0x88,0x59,0xe4,0xc3,0x25,0x98, - 0x9d,0xd9,0xe6,0x12,0x90,0x0e,0xeb,0x82,0xbe,0x73,0x72,0x82,0x48,0x09,0xfa,0x82,0x6d,0x0b,0x70,0x8f, - 0x56,0x06,0x7f,0xc1,0x9f,0xd3,0x8d,0x05,0x59,0x4c,0xd8,0xa1,0x5d,0xe9,0x46,0x50,0x3a,0xf6,0x17,0x8a, - 0x6f,0x6e,0xc9,0xf8,0x4e,0xa6,0x2d,0x54,0xc0,0xdc,0x87,0x19,0xf8,0x96,0x66,0x45,0x61,0x51,0x5a,0xb4, - 0x9f,0x3b,0x5a,0x6b,0x5a,0x5d,0x04,0x8d,0xab,0x70,0xbb,0xc4,0xc6,0x4f,0xb7,0xdf,0x8d,0xf9,0xff,0x8a, - 0xbb,0x51,0x5c,0x14,0x96,0xe6,0x6e,0xcc,0x61,0xe2,0x5f,0x5f,0x97,0x69,0x27,0x69,0xb2,0x0d,0xa7,0x1f, - 0x6c,0xc7,0xe9,0x07,0x63,0x6d,0x58,0x61,0xa1,0xad,0xac,0x65,0xa6,0xa4,0xed,0x1f,0x46,0x2d,0x5d,0x7a, - 0x18,0x6a,0x8f,0x24,0xfa,0x33,0x1e,0xf9,0x61,0x58,0xc4,0x51,0x4b,0xe0,0x1d,0x82,0x5b,0xe3,0xeb,0xcc, - 0xfa,0x8d,0xb8,0xa4,0xf4,0x83,0xa3,0xae,0xba,0x52,0x91,0x03,0xae,0x8a,0xf9,0x52,0x7a,0x83,0xf9,0x52, - 0x2a,0xe6,0x4b,0x52,0xc7,0xf3,0x3b,0xf2,0x0f,0xc6,0xaa,0x37,0xb6,0x5a,0x52,0xf0,0x88,0xe0,0xf6,0x1c, - 0xb9,0xb4,0x81,0x78,0x6c,0x89,0xc2,0x2d,0x68,0xa7,0x26,0x53,0xd8,0x8a,0x74,0xb6,0x34,0x58,0xc3,0x12, - 0xcd,0x96,0x3a,0x11,0xce,0x5f,0x6a,0x68,0x0b,0xb2,0xe9,0x1a,0xfa,0x76,0x54,0x23,0x3d,0xff,0xff,0x8a, - 0x68,0x9a,0xaf,0x41,0x5b,0xd0,0x4c,0x47,0xb1,0x0a,0xc9,0xd8,0x0b,0x78,0x2b,0x8a,0x49,0x3f,0x12,0xc5, - 0xd4,0x1a,0xbd,0x15,0xc1,0x48,0xe9,0xdb,0xd1,0x4b,0x43,0x96,0xfb,0xbf,0x1d,0xb9,0xa4,0xb7,0x23,0x97, - 0x6e,0xd7,0x4a,0xff,0x17,0xb9,0x74,0x20,0x97,0xd4,0x20,0x17,0xa5,0x09,0x22,0x86,0x02,0x4a,0x04,0x94, - 0x10,0xc1,0x67,0x2d,0xac,0xff,0x93,0x47,0xeb,0x1c,0x5d,0x46,0xc9,0x22,0x3a,0x4d,0x16,0x09,0xf2,0xc3, - 0xeb,0xfa,0x7d,0x19,0x7c,0xa8,0xbd,0x04,0x06,0xa7,0xd8,0x1a,0xd6,0xe8,0x5d,0x2c,0xec,0xb8,0xbd,0xf0, - 0xc5,0x70,0x16,0x12,0x14,0x5e,0x12,0xec,0x53,0xd2,0xdd,0xbb,0x0a,0xe0,0xce,0x74,0x8a,0x36,0xb1,0x1c, - 0x38,0x1e,0xcf,0x28,0xd6,0xcd,0x48,0x48,0xa6,0xae,0xf1,0x7e,0xa0,0xda,0xd5,0x68,0x9d,0x3b,0xa2,0xbf, - 0x7a,0x4d,0x50,0x1a,0x6c,0x13,0xb8,0xa2,0x08,0x9c,0xd8,0xa4,0xe1,0xd9,0x96,0x26,0xd3,0x5a,0x93,0x65, - 0xbb,0xbd,0xf6,0xfb,0x98,0xfd,0xf2,0xf3,0xbf,0x02,0xfc,0x62,0xa5,0xb7,0xaa,0x2d,0xb2,0x2b,0x7e,0x8a, - 0xd8,0x16,0xe2,0x42,0x8d,0xd9,0x57,0x93,0x56,0x8f,0x6d,0x5e,0x65,0xb3,0xa9,0xac,0x22,0x6e,0x9e,0xe3, - 0xe4,0xd3,0x26,0xd9,0x62,0x70,0x92,0x2e,0xb6,0x2c,0x31,0x0c,0x4e,0x62,0x4f,0x33,0x01,0x5b,0x26,0x5c, - 0x7e,0x63,0x9a,0x99,0xc5,0x9e,0x65,0x98,0xa7,0xb1,0x4e,0xcb,0x5a,0xf3,0xf4,0x53,0x33,0xd3,0xfc,0x53, - 0x66,0x1a,0x7f,0xfa,0x4c,0x95,0xbf,0xc4,0xfa,0x58,0x73,0x66,0x9e,0x4a,0xdf,0xe8,0xfd,0xe6,0x2d,0xde, - 0xf1,0xe3,0x47,0x35,0xfd,0xef,0x85,0x31,0xc3,0x13,0xc7,0xda,0x66,0x6f,0x6a,0x41,0x57,0x07,0xb7,0xfb, - 0xb1,0xf3,0xe8,0x38,0x7b,0xff,0xbd,0xf3,0x48,0x6f,0x9f,0x07,0x6c,0xae,0xdf,0x27,0xa9,0x7b,0x82,0x4f, - 0x63,0xfc,0xe7,0x3a,0x38,0xe7,0x1c,0xa1,0x61,0xa2,0xa2,0xba,0xb3,0xe3,0xb0,0xb3,0x2a,0xfe,0x98,0x7b, - 0x25,0x6e,0x16,0xaf,0x94,0xd6,0x0e,0x8d,0xd7,0xa8,0x0e,0x88,0x51,0xd4,0x4b,0x90,0x42,0x6f,0xcb,0x9c, - 0x2a,0xcf,0x09,0x53,0x0e,0x73,0xb1,0x8f,0xca,0x07,0x2a,0x9a,0x38,0x30,0xa3,0xc2,0x75,0xa1,0xf3,0xcf, - 0xc1,0x83,0xc1,0x03,0xc7,0xef,0x32,0xd5,0x92,0x48,0xcf,0x77,0xef,0xaa,0x88,0xcf,0xbf,0x20,0x06,0x4d, - 0xf5,0x3d,0x58,0x15,0xb1,0xfb,0x92,0x10,0xb3,0x52,0x1f,0x32,0xd6,0x2e,0xd7,0x71,0x1a,0x5c,0x73,0x54, - 0xcd,0xc0,0x79,0x5b,0x46,0x49,0x5e,0x38,0x7e,0xf1,0xa1,0x28,0xe3,0x8b,0x17,0xcf,0x29,0x85,0xbf,0x7a, - 0x2f,0x9e,0x3b,0xfe,0x2c,0xc9,0x2f,0xae,0xa2,0x3c,0xfe,0x45,0xc6,0x12,0x38,0xdf,0xa8,0x84,0x9e,0x1a, - 0x5d,0xd0,0x73,0xfc,0x49,0xb6,0xfc,0x20,0x91,0x33,0x9c,0x67,0xfa,0xb3,0xf7,0x3f,0xff,0x9f,0xde,0xfd, - 0xfd,0x83,0x7f,0xf6,0x5e,0x46,0xf9,0x79,0xef,0x32,0x4a,0x7b,0x3f,0xc5,0x69,0x71,0x95,0xad,0xa6,0x74, - 0xac,0x16,0x59,0x04,0x8f,0x5b,0x81,0xf3,0x66,0x11,0xc3,0x70,0x90,0xa3,0x19,0xf4,0x54,0x6a,0x4f,0x16, - 0x4a,0x85,0x7c,0x1f,0x0c,0x06,0x8e,0x9f,0xc7,0xa7,0x74,0xbd,0xbf,0x89,0x53,0xa9,0x75,0x78,0x16,0xf7, - 0x64,0xb4,0x34,0xff,0xc5,0xa2,0x77,0x1a,0xf7,0xa4,0x44,0x3c,0xf5,0x7b,0x4b,0x69,0x32,0x8f,0x67,0x79, - 0x5c,0x9c,0x31,0x26,0xef,0x2d,0x69,0xd2,0xbd,0x68,0x46,0xa4,0x14,0x0d,0x7d,0x4a,0x73,0xe5,0xad,0x7f, - 0xca,0x51,0x3c,0x02,0xe7,0x09,0x7e,0xd4,0xd2,0xde,0x46,0x97,0xdc,0x91,0xfc,0xe5,0x21,0x5c,0x25,0xb3, - 0x84,0x56,0xaa,0x5c,0x15,0xc1,0x75,0x34,0x81,0xc7,0xcb,0x65,0x96,0xa4,0xa5,0x59,0xc5,0x27,0x6f,0xb0, - 0x12,0xd3,0xa4,0x88,0x4e,0xe9,0x12,0x0a,0x9c,0xe7,0xea,0x8b,0xc8,0x0f,0x76,0x9f,0x91,0xa5,0x08,0x77, - 0x67,0x8a,0xff,0x9a,0x7c,0x93,0x6c,0xa9,0xe0,0x27,0x88,0x5c,0xe2,0xbc,0x98,0xe2,0x15,0x38,0xcd,0xde, - 0xbe,0xe5,0x2d,0xa1,0x7f,0x7b,0xb0,0x35,0x9d,0x65,0x04,0x05,0xb4,0x59,0x93,0x28,0x45,0x44,0x0a,0xd8, - 0x6e,0x50,0xe5,0xb7,0xf4,0xb3,0x37,0xd1,0xbf,0xb1,0x23,0x69,0x4a,0xd0,0xfa,0x0d,0xdd,0xc6,0xc8,0x96, - 0xbf,0xbd,0x32,0xeb,0xa9,0x0c,0x53,0x82,0xc6,0xf5,0x63,0x56,0xf0,0xc6,0xe9,0xdf,0xb4,0x0f,0x45,0xc9, - 0x23,0x53,0x65,0xd4,0xe8,0xcc,0x2f,0x04,0xfb,0x28,0xd4,0x52,0x94,0xd1,0xe9,0xa1,0x01,0x23,0x4a,0x71, - 0x7c,0x35,0xc1,0x67,0x12,0x31,0xa6,0x57,0xa8,0x64,0xba,0x9b,0xdf,0x96,0xf1,0xb2,0x38,0xcc,0x57,0x28, - 0x1c,0x97,0x3d,0xbc,0x15,0x20,0x6c,0xfd,0x07,0x9a,0x53,0xce,0x86,0x02,0x05,0x0a,0x54,0x45,0xbf,0x81, - 0xf6,0x6a,0xb3,0x2c,0x7c,0xb5,0x5d,0x26,0xd3,0x15,0xa2,0x52,0xd0,0xda,0x12,0x21,0x83,0x68,0x14,0xb5, - 0x91,0x1c,0xaa,0x34,0x8c,0xe5,0x22,0xd6,0x89,0xf4,0x29,0x09,0x2f,0xf0,0x46,0x91,0x12,0xea,0xd1,0xd0, - 0x47,0xcb,0x0a,0xfb,0x97,0xa8,0xec,0x21,0xbb,0xa7,0x9b,0xec,0x29,0x9b,0x94,0x5e,0x94,0x72,0xff,0xa8, - 0xd3,0xab,0x96,0x6d,0x20,0xad,0xbd,0xca,0x38,0xc4,0xb1,0xf3,0x2a,0x6b,0xd4,0x56,0x47,0xb5,0xf7,0x21, - 0x2e,0xa5,0xe4,0xd7,0xa9,0xda,0x69,0xf9,0xa8,0x17,0x57,0x63,0x85,0x10,0x9b,0x7d,0x69,0x61,0xb8,0x98, - 0x89,0xfe,0x2d,0xa5,0x93,0xb4,0x77,0x41,0x00,0x9f,0x14,0x31,0x8d,0x63,0xaa,0x2a,0x3d,0x99,0x52,0x9b, - 0xf4,0x8f,0xfc,0x7a,0x2e,0x01,0x85,0x1c,0xf9,0xab,0x9b,0xe5,0x4e,0x1a,0x03,0x50,0x15,0xbe,0x49,0xde, - 0xc7,0x53,0xe9,0x8e,0x3f,0xb9,0x27,0xc9,0x7a,0xbb,0x4a,0xf3,0x84,0xb7,0x40,0x3e,0x4c,0x6a,0x81,0xd5, - 0x93,0xbf,0x7a,0x91,0x2f,0xd4,0x1a,0xcb,0x18,0xd3,0x55,0x19,0xab,0xe1,0xbd,0xa4,0x91,0x46,0x1f,0x02, - 0x47,0xfe,0xaa,0xe2,0xab,0xb8,0xe0,0x44,0xf5,0x21,0xa9,0xbf,0xc6,0xd3,0x54,0xa5,0x9b,0x4f,0x55,0xfe, - 0x6c,0x95,0xab,0x0a,0xea,0x4b,0x8d,0x3d,0x4f,0x38,0x55,0xfe,0xaa,0xe1,0x11,0xbc,0xe5,0x9c,0xaa,0xbf, - 0xcc,0xb0,0x25,0x75,0x25,0xe3,0xb8,0xc8,0x64,0x9d,0x19,0x3a,0x5e,0xf2,0x0f,0x9d,0x68,0xed,0xa9,0x24, - 0x6c,0xd9,0x55,0xc9,0x6c,0xee,0x6b,0xa3,0x4a,0xa3,0xd8,0xf3,0x15,0x48,0xef,0xc3,0x6a,0x57,0x68,0xef, - 0x70,0xad,0xd0,0x45,0xd0,0x43,0x70,0xa1,0x5e,0x32,0xeb,0x45,0x35,0xd8,0x80,0x2d,0x4d,0xb4,0xc8,0xe3, - 0x68,0xfa,0xa1,0x17,0x89,0xf9,0xb9,0x1e,0xfc,0xa7,0x82,0x8b,0xae,0xb6,0x05,0x1c,0x24,0xbb,0x82,0x27, - 0xf9,0xdd,0x84,0x28,0x49,0x7d,0x93,0x10,0xe6,0xfc,0xf6,0xcd,0x8b,0xd7,0xbd,0x25,0x75,0xe3,0xca,0xc0, - 0x7a,0x67,0x84,0xfa,0x3d,0x53,0x51,0x6e,0x4c,0xa0,0xd8,0xb7,0x57,0x71,0xbc,0xa4,0x83,0x94,0x5c,0x44, - 0xf6,0x42,0x9b,0x12,0xaf,0xac,0xef,0x68,0x81,0x95,0x4f,0x63,0x6a,0x54,0xe3,0x84,0x1e,0xce,0x26,0x90, - 0x7e,0x74,0x21,0xe7,0xa6,0xdd,0xc7,0x61,0xb6,0x7c,0x8e,0x98,0x5a,0x0e,0x7d,0xf4,0x10,0x5d,0xab,0x55, - 0xe2,0x69,0x46,0xa8,0xfd,0xe2,0xe7,0x65,0xe0,0xc8,0x57,0x6f,0xb5,0x74,0x36,0x16,0x1e,0xb4,0x51,0x48, - 0x85,0x0d,0x2b,0x84,0x56,0x21,0x48,0x7e,0xf1,0x8b,0x4b,0xde,0x5c,0xfb,0x2e,0xd0,0x10,0x20,0x69,0x3d, - 0x4e,0xac,0x95,0xf8,0x8e,0x4b,0x3d,0x59,0x2c,0xb2,0xab,0x42,0xb0,0x9e,0xf2,0x29,0x60,0xe1,0x95,0xde, - 0x2c,0xa7,0xb1,0x7d,0xc8,0x56,0x39,0x01,0xdb,0x65,0x32,0x89,0x81,0xb6,0xf9,0x16,0x93,0x8b,0x5a,0x79, - 0x44,0xe2,0xea,0xb5,0x9b,0xb2,0xb7,0x5c,0xe5,0xcb,0xac,0x88,0x8b,0x41,0x0f,0x17,0xa4,0x2a,0x5d,0x2f, - 0x02,0x50,0x12,0x16,0x8d,0x5a,0xa0,0xdf,0x67,0x65,0xb9,0x0c,0xf6,0xf6,0x0e,0xbe,0xba,0x3f,0x38,0xf8, - 0xe2,0xcb,0xc1,0xc1,0xe0,0xe1,0x5e,0xef,0xea,0x8c,0xa0,0x90,0xfa,0xef,0xe1,0x96,0x37,0x48,0x1f,0xa3, - 0x48,0x4a,0x6a,0x9a,0x99,0x8c,0xb2,0x97,0xcd,0x08,0x4e,0x8b,0x5e,0x91,0xc1,0xc7,0x4c,0xd1,0x53,0x77, - 0x1c,0x06,0x17,0xa3,0x17,0xdd,0x2d,0x6e,0x64,0xca,0xa6,0x0a,0x94,0xc8,0xbe,0x12,0xe2,0x09,0x52,0x01, - 0x9b,0x51,0xfa,0x81,0x6e,0xfe,0x0f,0x83,0xde,0x6f,0xd4,0x19,0x2e,0xb0,0x68,0x41,0x3f,0x8b,0x9e,0xe1, - 0xc0,0x7a,0x42,0x2b,0xf5,0x20,0x24,0xc0,0x68,0x4f,0x3f,0xf4,0xa0,0x2c,0x09,0x1a,0x01,0xd0,0x60,0x2f, - 0x73,0x4f,0x85,0xe4,0x5a,0xa5,0x65,0xb2,0xe0,0xdc,0x1f,0xbf,0x7e,0xde,0x5b,0x80,0x12,0x29,0x68,0xa3, - 0x09,0x59,0xdb,0xb7,0xb0,0xde,0x28,0x7b,0xd4,0xb5,0x12,0xb2,0x51,0x6a,0xcb,0xbb,0x56,0x9f,0x56,0x83, - 0xb7,0x88,0x00,0xad,0x87,0xbb,0xbc,0x97,0xb3,0xc7,0xb0,0x41,0x4f,0xdd,0x29,0x1c,0x08,0x8e,0xc7,0x81, - 0x9b,0x9b,0xa8,0x92,0xa8,0x20,0xe2,0x27,0x9f,0xd2,0xa4,0xa7,0x44,0xd6,0xe6,0x94,0xd3,0xdc,0xbe,0xd3, - 0x98,0xc0,0x02,0x03,0x2d,0x92,0xa9,0x5c,0xf8,0x8e,0xaf,0xab,0xd1,0x5d,0xa5,0xbe,0xe8,0x62,0x3e,0x9b, - 0x10,0x0c,0xff,0x4c,0x9d,0x3c,0xff,0xee,0xd9,0x1b,0xf9,0xad,0x00,0x6b,0x45,0x60,0x0d,0x57,0x5d,0xb8, - 0x1c,0x69,0xd9,0x8b,0x64,0x9e,0x16,0xb8,0xbe,0x5e,0xbc,0xe9,0xa9,0x98,0xf2,0xdd,0xc0,0x24,0x5b,0x40, - 0xe4,0xf9,0x29,0x2d,0x0b,0x36,0x85,0x16,0x94,0x0a,0x9e,0xe3,0xd0,0xca,0x46,0x60,0x65,0x17,0xa8,0x0f, - 0xc0,0x80,0x49,0x13,0x81,0x09,0x1d,0x4a,0xfa,0x75,0x8f,0xa0,0x64,0x9a,0x81,0x4c,0x22,0xca,0x65,0xa9, - 0xba,0x21,0xf2,0xc5,0x74,0x49,0x33,0x5a,0x9d,0xd2,0xdd,0x79,0x11,0x15,0xe7,0x40,0xbf,0xf8,0xee,0xe1, - 0x87,0xe3,0xcf,0x09,0xeb,0x5d,0x01,0x29,0x7f,0x2b,0x1f,0x8e,0x7f,0x46,0xb4,0x87,0xd8,0x97,0x7e,0xa7, - 0xbe,0xaa,0xb4,0x37,0x95,0x3f,0x64,0x60,0x23,0x31,0x29,0xa5,0x96,0x26,0xa6,0xa7,0x8d,0x22,0x62,0x6b, - 0x74,0x09,0xa7,0x10,0x25,0x55,0x2e,0x2d,0x52,0xa0,0x07,0x95,0xce,0xb3,0x3c,0x4b,0x89,0xea,0xe2,0xd5, - 0x77,0x5f,0x1d,0xbe,0x21,0xac,0x42,0xc8,0xac,0x50,0xc5,0xbe,0x23,0x52,0x91,0x29,0x5d,0x4a,0xcb,0x10, - 0x58,0xf3,0x22,0x5a,0xea,0xbc,0x6f,0xb3,0x6c,0x4e,0x50,0xf0,0x92,0x52,0x7a,0x4f,0xde,0xbc,0xa8,0xe8, - 0x64,0x95,0x6f,0xa8,0x64,0xe1,0x0f,0xb8,0xf7,0xb7,0x70,0x5e,0x4b,0x23,0xa7,0x8e,0x7a,0xec,0xc8,0x36, - 0xe7,0x64,0x26,0x47,0x2e,0x81,0xf4,0x7e,0x52,0x24,0x6b,0xa2,0x52,0x7a,0x6e,0x75,0x97,0x7a,0x5c,0xf6, - 0xc7,0x88,0x76,0x99,0xfe,0x49,0x4a,0x26,0xa3,0x91,0x02,0x32,0xf5,0xc7,0x2c,0x9d,0x5b,0x49,0xc4,0x64, - 0x0a,0xd6,0xfd,0x96,0x16,0x7a,0xa1,0x4a,0xf7,0xf6,0x88,0xae,0x53,0xc5,0x04,0xc5,0x2c,0x54,0xb9,0x5a, - 0xa5,0xb7,0x71,0x94,0x4f,0xce,0x40,0x74,0xe1,0x2f,0xaf,0x07,0x1d,0x24,0x22,0x6e,0xe9,0x96,0xe2,0xd3, - 0xf6,0x86,0x4f,0x9b,0x50,0x75,0x7c,0xc6,0x18,0xfd,0xf7,0x89,0x41,0xb9,0xf4,0x74,0xf1,0xb7,0x87,0x4f, - 0x84,0x1e,0xc4,0xc2,0xbe,0x04,0x46,0xb8,0xa1,0xfc,0x93,0x37,0x9a,0x0e,0x57,0x87,0xb2,0xd6,0x91,0x3a, - 0xd6,0xf6,0x1d,0x43,0xa7,0x44,0x6a,0xbe,0xf9,0xf5,0xe5,0xf3,0x9c,0x52,0xf2,0xb7,0xcf,0xa9,0xbf,0x37, - 0xcf,0x9e,0x7c,0xf5,0xc5,0x97,0x9f,0xf7,0x28,0xb5,0x37,0xe5,0xe4,0x1e,0xa5,0x4b,0x4d,0xe8,0x06,0x37, - 0xeb,0x3c,0xfb,0xb1,0xbb,0xce,0xb3,0x1f,0xa5,0xce,0x04,0x8e,0x4c,0x51,0xe9,0xea,0xe2,0x89,0x06,0xea, - 0x8e,0xf2,0x2f,0xfe,0xe7,0xff,0xfb,0xac,0x82,0x74,0x2a,0xfc,0x0d,0xc8,0xc6,0x38,0x9d,0x7c,0xe8,0x2c, - 0x3e,0xd3,0xb9,0x02,0x4e,0x04,0x3b,0x3f,0xc4,0x1f,0x5a,0xf0,0x44,0x27,0xaf,0x56,0xe0,0x8c,0x8f,0xf7, - 0x4f,0xb1,0x38,0xf1,0x9b,0x02,0x7d,0xce,0x7a,0xab,0x82,0x11,0xa1,0x4d,0x45,0x0e,0x7a,0x84,0x16,0xa6, - 0x7c,0x35,0x2c,0xb2,0xec,0x1c,0xf9,0xab,0x25,0x63,0x21,0x15,0xc0,0x91,0x8b,0xff,0x49,0x97,0xeb,0x80, - 0xb0,0x16,0xdd,0xae,0x84,0x51,0xce,0x7b,0x88,0x28,0x47,0x00,0x0e,0x44,0xa1,0xfa,0xf6,0xb1,0xee,0x3d, - 0x35,0xa8,0x0b,0x66,0xe7,0x20,0x8c,0x2d,0x09,0xb6,0x05,0xed,0xf1,0x2c,0x0a,0xba,0x0e,0x7e,0x22,0xf6, - 0xb5,0x00,0xaa,0x93,0xdb,0x8c,0xa6,0x17,0xeb,0x46,0x70,0x69,0xab,0xfb,0x45,0xfb,0xbf,0xa3,0x0b,0x8d, - 0x90,0xdc,0x12,0x23,0x9d,0x73,0xe3,0x60,0x99,0xf7,0x18,0x27,0x46,0x9a,0x08,0x4a,0xca,0x7b,0x84,0xb1, - 0x0b,0xb9,0xe0,0x30,0x74,0xbd,0x28,0x03,0x3a,0xde,0x2c,0xfa,0x0d,0xae,0xc1,0x29,0x1a,0x8e,0xf4,0x19, - 0x5c,0x23,0xf2,0xdd,0x82,0x64,0x3a,0x3d,0x22,0xbb,0x06,0xec,0x45,0xa7,0x98,0x57,0x69,0xd8,0x45,0xe1, - 0x3c,0xab,0x9b,0xbc,0x55,0xd9,0xba,0x86,0x89,0xb6,0x2d,0xe1,0x15,0x5a,0xea,0x08,0x16,0x69,0x95,0x57, - 0x5c,0x68,0xbd,0xac,0x45,0xdc,0x15,0xad,0x1a,0x35,0xca,0xae,0x5e,0xef,0xa5,0x4d,0x9d,0xb5,0x6b,0xd6, - 0xe9,0x4a,0xab,0x2e,0x33,0xae,0xdd,0x93,0x2a,0x60,0x66,0xdd,0x39,0x29,0xae,0xd4,0x9e,0x15,0x57,0x68, - 0xcd,0x4a,0xb0,0x18,0xee,0x39,0xc5,0x02,0x5b,0x35,0xf2,0x98,0x46,0x44,0xfb,0x2a,0xd7,0xa0,0x66,0xf7, - 0x56,0x4b,0x8c,0x59,0xa3,0x41,0x3a,0xdb,0xd8,0xb8,0x1e,0x07,0x23,0xec,0x49,0x1e,0x80,0x53,0x63,0x4d, - 0xdd,0x03,0xb3,0x7d,0x76,0xe3,0x3c,0x4a,0x7e,0xa5,0x00,0x1d,0x28,0x0e,0x96,0x70,0xa1,0x30,0x76,0xaa, - 0x10,0x9d,0xbd,0x52,0xd9,0x39,0x60,0x5e,0x23,0x37,0x9a,0x3c,0x5d,0x9a,0x49,0x1a,0x31,0x3f,0xc2,0xcd, - 0x6d,0xdb,0x1e,0x9e,0xfa,0x96,0xed,0xe1,0x8a,0xdb,0xf7,0x87,0xab,0x6e,0xdb,0x1f,0xe2,0x96,0xd3,0x85, - 0x61,0xfc,0x89,0x46,0x5f,0xb6,0x64,0x2d,0x1f,0x27,0x6c,0x89,0xff,0x9e,0xac,0xe5,0x6b,0x22,0xeb,0xb2, - 0x79,0x9c,0x9e,0x2e,0x92,0xf3,0xde,0x3c,0xa6,0x7b,0x9f,0x68,0xb3,0xd3,0xf8,0xcf,0x64,0xde,0xbb,0xe0, - 0x8b,0x62,0x4a,0x05,0x2e,0x59,0x8e,0x60,0xc8,0x92,0xb8,0x4b,0xfc,0xf2,0x1d,0x95,0x2e,0xd4,0xb0,0x41, - 0x92,0x10,0x31,0xb8,0x4c,0x93,0x78,0x75,0x45,0x7f,0xe7,0xb1,0x84,0x29,0xc2,0x88,0x31,0x68,0xa2,0x0d, - 0xe2,0x3f,0x63,0x08,0x60,0x68,0x0f,0x7a,0x29,0x0d,0x25,0x4e,0x1b,0xe2,0x97,0xc3,0x2c,0x06,0x99,0xd3, - 0x48,0xd7,0x22,0x98,0xa7,0x66,0x80,0xd9,0xb2,0x58,0x44,0x51,0xfa,0x97,0xa4,0x31,0x3f,0x27,0x25,0x8d, - 0x6c,0x72,0x16,0x9d,0xc7,0x8b,0x8f,0x17,0xc9,0xd4,0x6b,0x29,0xb9,0xcc,0x5b,0x1a,0xc4,0x12,0x4e,0x48, - 0xa6,0x4d,0xe9,0x4c,0x42,0x83,0x9c,0xc7,0x97,0xc4,0x6a,0x61,0x2e,0x5d,0x12,0x9a,0x68,0x46,0x90,0x91, - 0xa5,0x6d,0x01,0xcd,0x0f,0x94,0x39,0x8f,0xb1,0xfe,0x71,0xae,0xa2,0x11,0x10,0x61,0x73,0x8e,0x76,0x9a, - 0x82,0x9a,0x5f,0xaa,0x12,0x54,0x78,0x91,0xe5,0x28,0x54,0x17,0xd6,0xbc,0xc2,0x48,0xd0,0x92,0x0c,0xe5, - 0x63,0xc4,0x35,0xdf,0xad,0x92,0x69,0x32,0x8f,0xb7,0x88,0x6b,0x88,0x63,0xc1,0xa9,0x88,0x01,0x21,0xd8, - 0xcf,0xc5,0x0c,0x54,0xbe,0x92,0xc9,0xc4,0x49,0xd9,0x92,0xd9,0x1c,0x4a,0x59,0x2d,0xac,0x89,0xe3,0x05, - 0x7b,0x6e,0x89,0xa9,0x9d,0xf4,0xd3,0xa4,0x36,0xef,0xa6,0x4d,0xa9,0xcd,0x8f,0x0c,0x0b,0x3d,0xc2,0x17, - 0xbd,0xcb,0x0c,0x77,0x04,0x95,0xa9,0x18,0xf4,0x38,0xae,0xa4,0x35,0x97,0xb5,0xa5,0x8a,0xe1,0x86,0x2f, - 0x29,0x5a,0x72,0x9b,0xb9,0xac,0x7c,0xbd,0x99,0x79,0x6c,0x38,0x98,0x38,0x9f,0x36,0x04,0x38,0x87,0xb5, - 0xa2,0x34,0x31,0x01,0x91,0x38,0xbd,0x59,0x8a,0x13,0x4b,0x1f,0x75,0xae,0x5c,0x57,0x62,0xae,0x9b,0x8e, - 0xc2,0x65,0x16,0xcf,0x75,0x9a,0xe6,0xbc,0x69,0xcb,0xaf,0xa8,0x66,0x9c,0x57,0x3d,0xd4,0x39,0x78,0x48, - 0x10,0xe2,0x59,0x4b,0x9e,0xf3,0x4b,0x54,0x94,0xd2,0x69,0x43,0x9e,0xf3,0x3b,0xee,0xe3,0xe5,0x79,0x76, - 0x51,0x94,0x75,0x99,0x0e,0x67,0x40,0x1d,0x79,0x1e,0x41,0xb9,0xd5,0x16,0xed,0xe8,0x91,0x83,0x1c,0x4d, - 0x1b,0xa2,0x1d,0x3a,0x96,0xd3,0x68,0xde,0x90,0xed,0x3c,0xa7,0x85,0x31,0xa9,0xb6,0x6c,0x27,0x8b,0xad, - 0x8c,0x4a,0xb4,0xf3,0x9c,0x3b,0x36,0x19,0x5a,0xb6,0xf3,0x4b,0x4e,0x5d,0xeb,0xc4,0x4a,0xb8,0xf3,0x3b, - 0x61,0xf4,0xaa,0xb0,0x16,0xee,0xfc,0x9e,0xc9,0x40,0x6a,0xc2,0x9d,0xa7,0xf1,0x55,0x3c,0x67,0x65,0xdd, - 0xa6,0x78,0x47,0x6d,0xfd,0xa9,0x2a,0xb0,0x7d,0xfb,0x1b,0x92,0x9e,0xa7,0xad,0x0a,0x35,0x20,0xb8,0x4d, - 0xe0,0xf3,0x9a,0xee,0x28,0xab,0x02,0xf1,0xbd,0x04,0xb7,0x10,0x81,0xf6,0x9a,0x80,0xc8,0x64,0x51,0x3c, - 0x23,0xb0,0xbd,0x4d,0xe6,0xb3,0x15,0xb8,0xba,0x65,0x3e,0x1a,0x62,0x2c,0x91,0x8f,0x05,0x7c,0x75,0xc1, - 0x4f,0x0d,0xfc,0xb6,0x4a,0x7f,0x68,0x94,0x67,0x44,0xd3,0x75,0x49,0x7f,0x9e,0x88,0xdc,0x27,0xbe,0x55, - 0xec,0xf3,0x2d,0xe6,0x0f,0xb1,0x8f,0xc1,0x36,0xf3,0x78,0x91,0xbc,0x3b,0xc7,0xd4,0x92,0x8e,0xa6,0x8d, - 0xd0,0xe7,0x69,0x06,0xd1,0x59,0x1a,0x45,0x39,0x6d,0x66,0x1a,0x5b,0x13,0xef,0x12,0xff,0x48,0x09,0x55, - 0x1c,0x35,0xb7,0xca,0x81,0x2a,0x64,0x6b,0x30,0xa5,0x85,0x7f,0xed,0x8b,0xb2,0x21,0x09,0x7a,0x62,0xcb, - 0x26,0x6a,0xc0,0x61,0x15,0x13,0xb2,0x9e,0x4e,0xcf,0x39,0x51,0xca,0x60,0x8a,0x33,0x99,0x6e,0x8f,0xb8, - 0x33,0xac,0x84,0xc8,0x86,0x2a,0x02,0x2e,0xc6,0xf5,0x1c,0xcd,0x38,0x8f,0xae,0xca,0x28,0x8f,0x08,0x07, - 0xf2,0x2c,0xf8,0x92,0x05,0x69,0x61,0xe4,0x13,0xb1,0xdc,0x1f,0x68,0x6a,0x1a,0x5b,0xa9,0x06,0xae,0x11, - 0x29,0xa2,0xf7,0xbc,0x5e,0x8b,0x38,0x7d,0x2a,0x42,0x2b,0x18,0xf1,0x6e,0xf7,0x2e,0x93,0xa8,0x53,0x44, - 0x44,0xf9,0xd4,0xf3,0x3b,0x7b,0x64,0x67,0xf1,0x29,0x6e,0xbf,0x0b,0x4c,0x66,0xd0,0x7b,0x2b,0xf3,0x95, - 0x71,0x41,0x8a,0x43,0x54,0x5f,0x82,0xb1,0xf2,0x3c,0xed,0x31,0xf8,0x3d,0x42,0x1e,0x73,0xba,0xe4,0xd5, - 0xd5,0x22,0xd7,0xe8,0x29,0x11,0x94,0xc9,0x22,0x99,0x4f,0x81,0xb0,0x7b,0xdf,0xc7,0xbd,0xf3,0x15,0xad, - 0xa3,0xd5,0x5a,0xd6,0x38,0x42,0x53,0xdc,0x04,0xb8,0x15,0x0c,0xff,0x28,0x4b,0x7f,0x9e,0x52,0x22,0xcd, - 0x69,0x9a,0xaf,0xce,0xb1,0x1c,0x65,0x56,0x62,0xe8,0x53,0x91,0x0f,0x45,0xb8,0x76,0x69,0x11,0x9b,0xe2, - 0x21,0x6b,0x8f,0x41,0x79,0x30,0x65,0xab,0xae,0x63,0xab,0x9c,0x6c,0x9f,0x2a,0xdb,0xde,0x02,0x34,0x4e, - 0x4b,0x14,0xd3,0xb5,0xda,0x90,0x11,0xfd,0xb2,0x5a,0xf4,0xce,0x12,0xa6,0x04,0xe8,0x88,0x63,0x45,0x98, - 0x80,0xa0,0x62,0x57,0xd1,0xe4,0xac,0xbc,0x02,0xc9,0x4a,0xb3,0xf3,0x91,0x62,0xe1,0x21,0x96,0x0f,0x97, - 0x2b,0x5e,0xd6,0x1e,0x81,0x6d,0x8e,0x0b,0x9b,0x97,0xa3,0xd8,0x2a,0x36,0xfa,0xd5,0x34,0xa8,0x05,0x47, - 0xdf,0xc6,0xa7,0xf9,0x8a,0x28,0xc0,0x4a,0x78,0x74,0x56,0x13,0x1e,0xd1,0x9a,0x32,0x80,0xb1,0x00,0x87, - 0xb8,0x5a,0x5a,0xb2,0x98,0x8e,0xff,0x9f,0x80,0xb9,0x28,0x6d,0x4d,0x93,0x18,0x49,0x02,0x40,0xaa,0x94, - 0xbc,0x4b,0x19,0x76,0xaf,0x92,0x05,0xa6,0x6d,0xed,0x15,0xaa,0x41,0x33,0x9f,0x26,0x44,0xff,0xfc,0x99, - 0xbc,0x43,0xfe,0x55,0x4c,0xd3,0xbe,0x02,0xec,0xd2,0x8f,0x8b,0x38,0x56,0x94,0xe8,0x29,0x1c,0x71,0xb5, - 0x05,0x49,0x79,0xbc,0x5d,0x8c,0x04,0x39,0xca,0xed,0x82,0xa4,0xe8,0x62,0x8b,0x20,0xe9,0x2d,0x48,0x39, - 0x1a,0xc7,0x54,0x8b,0x92,0xd0,0xd7,0x56,0x41,0x52,0x53,0x92,0xf4,0x6e,0x5a,0x97,0x24,0xc5,0x37,0x09, - 0x92,0x22,0x98,0x28,0xd0,0x39,0x20,0xb8,0x62,0x04,0xf5,0x17,0xe4,0x49,0xa7,0xc9,0xbb,0xab,0x38,0x67, - 0x48,0xfc,0x18,0x91,0xd2,0x2f,0x42,0x85,0x77,0x89,0x94,0x52,0x4b,0xa4,0xf4,0x94,0xc0,0x6b,0x5a,0xc6, - 0x73,0x42,0x28,0x53,0x4b,0xac,0x84,0x87,0x75,0x3b,0xd1,0xf0,0x5b,0x76,0x79,0x08,0x96,0xaa,0x82,0xb4, - 0xe5,0x67,0x11,0x0e,0x24,0x1d,0xbb,0xd3,0xa8,0x20,0x84,0x02,0x8e,0x42,0xb8,0xb1,0xb8,0x53,0xd2,0xf4, - 0x7b,0x16,0xf3,0x74,0xfe,0xba,0xa4,0xc9,0x62,0x3c,0x6f,0x91,0x30,0xd5,0x5a,0xb6,0xd1,0x07,0xa3,0x09, - 0xfb,0x2a,0x23,0x22,0x7f,0xfe,0xdf,0x21,0x65,0x3a,0x5f,0x64,0xff,0x67,0x09,0x99,0x9e,0x00,0x1b,0xe7, - 0xcc,0x0b,0x12,0xac,0x11,0x46,0x17,0x6c,0x71,0xc9,0x47,0xbf,0x4e,0x24,0xd3,0xd1,0x67,0xee,0x4f,0x95, - 0x29,0xd5,0x5d,0x73,0xa6,0x58,0x09,0x94,0x85,0xa8,0x49,0xae,0x94,0x25,0xa0,0x82,0x6a,0x10,0xf0,0x96, - 0x8c,0xbd,0xff,0x14,0xec,0x67,0x24,0x4e,0x17,0xc0,0x05,0x6a,0x88,0x54,0x9c,0xcb,0x4d,0xa9,0x57,0x48, - 0x97,0xce,0xd1,0xae,0x92,0x39,0x15,0x5a,0xe8,0x24,0x28,0x11,0x34,0x02,0x2e,0x60,0x33,0x25,0x40,0xde, - 0xc7,0x89,0x9d,0x80,0xd1,0x58,0xa4,0xa8,0x90,0x30,0x73,0x13,0x7a,0xc2,0xc0,0xfb,0xd3,0xdb,0x85,0x4f, - 0x60,0xdc,0x14,0x2f,0x6c,0x04,0x4f,0xea,0x0e,0x53,0x27,0xa1,0x2d,0x73,0x42,0x1d,0x8b,0x35,0x51,0x8c, - 0x11,0x23,0x85,0x8e,0x9a,0x5a,0x46,0x63,0xf5,0x74,0x5b,0x95,0xba,0x84,0x03,0x15,0x6b,0x34,0xe5,0x2d, - 0xb5,0x9b,0x62,0x0e,0xd4,0x6f,0x52,0xc8,0x37,0xb5,0xd1,0x12,0x47,0x7d,0xc4,0x7c,0x99,0xb3,0x6f,0x08, - 0xa5,0x6e,0x9b,0xb0,0xaa,0xd3,0x96,0x4d,0xa1,0xa2,0x8d,0x13,0xea,0xc3,0x6b,0x4a,0xa6,0xbe,0x61,0x11, - 0x21,0xe8,0xdb,0xb4,0xa8,0xd0,0x2b,0x03,0xfc,0x16,0xf1,0x14,0x2f,0x28,0x6e,0xc0,0x1b,0x46,0xd5,0x94, - 0x50,0xfd,0x50,0x61,0x41,0x4b,0x24,0x95,0x6a,0x6a,0x67,0x69,0x2d,0xdd,0x5f,0xd8,0x3d,0x7b,0xf9,0xfe, - 0xf2,0xf6,0x49,0x23,0x9b,0xcd,0xa6,0x8a,0x7e,0xc2,0xb2,0x9c,0x27,0xcb,0xa5,0x51,0xce,0x82,0x24,0x4e, - 0xb9,0xbf,0xaf,0xfc,0xc8,0x44,0x97,0x09,0xdd,0xbf,0x59,0x3e,0x58,0x10,0xee,0x58,0x45,0xf3,0xb8,0xe9, - 0xd4,0xc5,0xe1,0xdb,0x4e,0xbb,0x88,0x31,0x26,0xf5,0xde,0x50,0x35,0xe7,0x5e,0xc7,0x74,0x57,0xfd,0x83, - 0x86,0x4f,0x37,0x3f,0x35,0x1d,0xc4,0x3e,0xbb,0x5c,0xb9,0x4e,0x69,0x2e,0xb3,0x44,0xad,0x21,0x1b,0x58, - 0x69,0x69,0xd6,0xce,0xbe,0x5f,0x88,0x84,0x68,0xe7,0x40,0x7d,0xc9,0xee,0xd0,0x4f,0x55,0xe6,0x05,0x81, - 0xdb,0x04,0xe3,0x0a,0x9c,0xb5,0xde,0xf6,0x37,0x79,0x36,0x67,0x2c,0x4b,0xc5,0xe4,0xec,0x1f,0x46,0xa7, - 0x08,0x3d,0x22,0x52,0x0f,0xad,0xd3,0x74,0x5d,0xc9,0xe7,0x54,0x63,0x2c,0x75,0xd2,0xd9,0x76,0xe2,0xa6, - 0x2e,0x8b,0x5a,0x06,0xd7,0xb1,0xe2,0xb1,0xa8,0x8b,0x84,0xe8,0xad,0xfd,0x01,0xff,0x57,0x09,0x9d,0x6a, - 0x25,0x94,0x60,0x66,0xbf,0x5e,0x74,0xa3,0xe0,0x87,0xfa,0x30,0x20,0x84,0xe0,0x6f,0x95,0xd8,0x04,0xbc, - 0x9f,0xdd,0x4e,0x59,0x67,0x0b,0xc5,0x18,0x4d,0x17,0x87,0x4b,0x2d,0xe1,0x86,0x6a,0x75,0xe2,0x6d,0x0c, - 0xea,0x96,0xf6,0xa6,0xf1,0x82,0x48,0xac,0x56,0xd3,0x75,0xde,0xc9,0xd0,0x5d,0x5c,0xce,0xe6,0x89,0xb0, - 0x65,0xa5,0x99,0x0b,0x93,0xab,0x5c,0xc6,0x10,0xab,0xd2,0x09,0x88,0xd4,0x1d,0x5e,0x0f,0xfe,0x6d,0x11, - 0x7d,0xfc,0x5b,0x53,0x7a,0x6c,0x6f,0x6f,0xa8,0xb4,0x8a,0x16,0x12,0x1b,0x47,0x8b,0x06,0xfa,0xdc,0x27, - 0xda,0x53,0x01,0x0f,0x81,0x8b,0x74,0x49,0xf0,0x4f,0x88,0x3c,0x9e,0x12,0xb9,0x21,0x39,0xf1,0x14,0xa4, - 0x84,0x8c,0x79,0xa9,0xc8,0x05,0x29,0x7a,0x75,0x81,0x8b,0xdf,0x7c,0xd3,0x85,0x2e,0x5d,0x5b,0x57,0xb6, - 0xce,0xac,0x6e,0x65,0x4e,0xb1,0xef,0x5e,0xda,0x7e,0x2d,0x22,0xc3,0xec,0xf4,0x37,0x3b,0x29,0x08,0xb0, - 0x30,0xc8,0x38,0x1a,0xfb,0x0b,0x83,0x31,0x40,0x03,0x2a,0x49,0x0e,0xe7,0xe4,0x31,0x9e,0xf2,0x2e,0x63, - 0x9d,0x40,0xcb,0xce,0x8e,0xf9,0x5a,0x91,0x6f,0x95,0x07,0xb1,0x72,0x60,0x9f,0x1e,0xd4,0x52,0x71,0x7a, - 0x4c,0x28,0x2b,0x66,0x68,0xe1,0xb9,0xd6,0x75,0xf8,0xd3,0xd1,0x3e,0xc6,0x94,0x02,0xa1,0x1e,0x0b,0x4c, - 0xff,0xcf,0xb4,0x75,0xff,0x81,0xc4,0x57,0x2e,0x07,0xe6,0xf8,0x58,0x41,0xeb,0x7f,0x6c,0x9c,0x3c,0x58, - 0x04,0x0e,0x9a,0x08,0x9a,0x13,0x95,0x90,0x95,0x17,0x81,0x9d,0x1b,0x41,0x71,0x1b,0xe1,0x0d,0xad,0xb3, - 0x2c,0x63,0xde,0x39,0x18,0x36,0xf4,0x87,0xd9,0x4a,0x72,0x7f,0x98,0x3d,0x3a,0x78,0xf8,0x90,0xfe,0xf4, - 0xc3,0x83,0xcf,0x3d,0xe5,0xba,0x32,0x13,0xdf,0x05,0x59,0xb8,0x7b,0x1f,0x59,0x8f,0xc2,0xfb,0xa6,0x44, - 0x62,0x4a,0x94,0x83,0x6a,0x65,0xc3,0x9c,0xfa,0xac,0x2d,0x6d,0x98,0x50,0x8a,0x75,0xc7,0xbb,0xde,0xa0, - 0x3c,0x8b,0x53,0xdb,0x05,0x91,0xe4,0x57,0x57,0xdc,0xd6,0x22,0x72,0x95,0x6d,0xcd,0xb6,0x31,0xfd,0xd6, - 0x42,0x75,0x7c,0xbe,0xbd,0x2b,0xac,0x58,0x67,0x6e,0x51,0x66,0xcb,0xce,0x8d,0x51,0x58,0x8c,0x56,0x78, - 0xe3,0x59,0xff,0xf9,0x4a,0x05,0x35,0x40,0x34,0xb2,0xab,0x57,0x36,0x0a,0xee,0x8c,0x87,0x03,0x60,0x4b, - 0x6b,0xc0,0x16,0x5e,0x2b,0x1c,0x4f,0x88,0x5c,0x88,0xa6,0x72,0xa3,0x82,0x6f,0xa7,0x6d,0xa8,0xbc,0x7b, - 0x77,0xb2,0x20,0x6c,0x87,0x6f,0xba,0x8a,0xdd,0x8e,0x12,0x88,0x86,0xd8,0x06,0xe6,0x22,0x2e,0x75,0x1d, - 0x6b,0xbe,0x8d,0x91,0x08,0x3a,0xd8,0x72,0x14,0x36,0xfe,0xe7,0xf1,0x03,0x38,0x89,0x4c,0xa6,0x71,0xf7, - 0x3c,0x95,0x4d,0x52,0x47,0x93,0x3c,0x9b,0x56,0xa6,0x9a,0x90,0x5b,0x9b,0x51,0x77,0x29,0x65,0x65,0xd1, - 0x3d,0x32,0x0c,0x8a,0xd8,0xd2,0x45,0x4c,0xf8,0x83,0x9f,0xce,0x1a,0x9e,0xad,0x35,0x65,0xbb,0xc8,0x10, - 0x0a,0x48,0xd9,0xe8,0x38,0x0e,0x47,0x53,0x26,0x94,0xb4,0xa4,0xec,0x78,0xe4,0x7c,0x77,0x48,0x7c,0xa1, - 0xfe,0xd9,0x43,0xec,0xb8,0x9e,0xd3,0xaf,0x0a,0x0c,0xd4,0xe5,0x83,0x14,0x26,0xad,0x47,0xd0,0x78,0xd3, - 0xb9,0x4e,0x60,0xbc,0xe3,0xcb,0x48,0x9b,0xd0,0x00,0xd7,0xd7,0x6e,0xe9,0xf5,0x9d,0xe3,0xf4,0x38,0x75, - 0xfa,0xb9,0xcf,0x9e,0xd3,0x6d,0xea,0xf8,0x46,0xdd,0xee,0xe8,0x7d,0x92,0xb1,0x3b,0x28,0xd7,0xd9,0x8b, - 0x96,0xc9,0x9e,0xba,0x5c,0x9d,0x26,0x08,0x77,0x45,0x8c,0x2b,0x95,0x57,0x6b,0x1a,0x82,0x56,0x92,0x96, - 0x24,0x82,0xdf,0x81,0xf2,0xe3,0x3f,0xa8,0x2f,0xe0,0x00,0xe4,0x27,0x7c,0x6c,0x31,0x40,0xda,0x07,0xdc, - 0xf1,0xd4,0xb0,0x2d,0x9a,0xf5,0x93,0x46,0x5e,0x5d,0x7f,0x9f,0x3a,0xf8,0xaa,0xe6,0x5f,0x19,0xbf,0xa5, - 0xa4,0xa6,0xa7,0xa0,0x68,0xe7,0x4f,0x1a,0xbe,0x7a,0x1a,0xff,0xc4,0xa1,0x4b,0xad,0xbf,0x32,0x6c,0xa5, - 0x90,0xa3,0x87,0x5c,0x23,0x77,0x3f,0x69,0xe0,0x9a,0x08,0xd9,0x63,0x8d,0xd5,0x8e,0xf1,0xc3,0x13,0x4f, - 0xf7,0x14,0x34,0xf2,0x32,0xe4,0x90,0x24,0x0f,0xd4,0xcf,0xf5,0xba,0x4d,0x02,0xa9,0x12,0xf5,0xd4,0xf5, - 0x7a,0xbf,0x46,0x0b,0xb5,0x5d,0x0d,0x99,0x6a,0x52,0xc8,0xb3,0xc3,0xf6,0x0e,0xf3,0x47,0x8d,0x6c,0x13, - 0xbb,0xd7,0x0e,0xb3,0x5c,0x2b,0x71,0x94,0x8f,0x09,0xdb,0x9a,0xf2,0xe2,0xe4,0xfa,0x94,0x9f,0x81,0x53, - 0xd0,0x22,0xc9,0xa0,0xfa,0x61,0x8d,0x0e,0xd1,0x31,0x29,0xcf,0xfa,0x85,0x4c,0x3d,0xfb,0xa4,0x36,0x71, - 0x73,0x3b,0xd6,0x2b,0x3c,0xde,0x1f,0xed,0x23,0x45,0x4d,0xdb,0xbe,0x34,0x5b,0x05,0x4d,0x31,0xa2,0x6d, - 0x2e,0xe4,0x95,0xc8,0x3d,0xb8,0x9b,0xd0,0x54,0x3e,0x14,0xaf,0x67,0xbf,0xc6,0xf1,0xb9,0xf7,0x98,0xc6, - 0xa6,0x9e,0x8a,0xdc,0xfb,0xad,0xac,0x2b,0xf3,0x5e,0xe4,0x3e,0x6c,0xd7,0xd3,0x6f,0x46,0xee,0x97,0xad, - 0xbc,0x99,0x3c,0x1b,0xb9,0x07,0x5f,0xb4,0xb2,0x0a,0xfd,0x78,0xe4,0x3e,0x68,0x77,0x58,0xc8,0x0b,0x92, - 0xfb,0x45,0xab,0x3b,0xb8,0x1e,0xaf,0x16,0x1c,0xf3,0x0a,0x61,0x15,0xf6,0xf1,0x00,0x6f,0x43,0xb8,0x01, - 0xfb,0x06,0x9b,0xf6,0xd7,0x00,0x5f,0x88,0xfa,0x4f,0x3d,0xba,0x66,0x2e,0x52,0xfd,0xaf,0x9c,0xe1,0xfa, - 0xe8,0x2b,0xf4,0xc3,0x64,0xec,0xa7,0x61,0x1f,0xd6,0xf9,0xef,0x3e,0xbc,0x5d,0x27,0xc9,0xb3,0x2d,0x81, - 0x76,0xe0,0xdf,0x1e,0x7c,0x16,0xbb,0x67,0x67,0x57,0x41,0xfb,0xc3,0x48,0x1f,0x2a,0x75,0x96,0x22,0x3b, - 0x84,0x38,0x32,0x60,0xe1,0xcb,0x5e,0x8a,0xf3,0x11,0x51,0x11,0x41,0xb1,0x43,0x5f,0x1c,0x21,0x0a,0xf1, - 0x78,0xb3,0x9a,0xfb,0xf9,0x02,0xc1,0x75,0xfb,0x61,0xb1,0xc1,0x65,0x19,0x73,0x90,0xe4,0x78,0x50,0x23, - 0xde,0x25,0x7e,0xe3,0x6c,0x91,0xc1,0x1b,0xfe,0x9e,0x0e,0x8c,0xe0,0x59,0xc5,0x18,0x5a,0x36,0x2d,0xb1, - 0x48,0xf7,0x2a,0xc5,0x8a,0x00,0xe6,0xc8,0x12,0xf2,0x89,0x59,0xca,0xaa,0x2d,0x89,0xb7,0x6a,0xdf,0x39, - 0x7e,0xc5,0x73,0xd9,0x37,0xca,0x40,0xa7,0xd6,0x98,0xb0,0x5a,0x09,0x2b,0xc3,0xb0,0x66,0xb5,0x02,0x2a, - 0x51,0x98,0xb5,0x7a,0x0e,0xa5,0x54,0x9c,0x5b,0x2d,0x4b,0xa7,0x0a,0x2b,0x57,0xcb,0x42,0x0a,0x38,0xbb, - 0x5a,0x62,0xb2,0xb4,0x99,0xbc,0x7a,0x2f,0x26,0xdd,0xf0,0x7d,0xb5,0x7c,0x95,0xb8,0x69,0x82,0x0f,0x82, - 0xf8,0x7c,0x24,0x34,0x37,0xb6,0x85,0x40,0xb9,0x45,0x42,0x57,0x1b,0x41,0x84,0xb2,0xde,0xc9,0xee,0x9b, - 0xd6,0xf0,0x5e,0x66,0x17,0xcb,0x9b,0x76,0x51,0x6b,0xa5,0x95,0xea,0x3a,0x6d,0xf6,0x9d,0x32,0xfd,0xde, - 0x45,0x77,0x39,0x35,0x9d,0x1c,0x1c,0x40,0x3d,0xdf,0xb2,0x73,0xbe,0x65,0x6d,0xbe,0xe6,0x0a,0xee,0x62, - 0x17,0x6a,0x73,0xed,0x64,0xeb,0xb6,0xc2,0xae,0xe2,0x28,0x88,0xcf,0x9b,0xc7,0x74,0x24,0x4d,0x82,0x21, - 0xd8,0x35,0x57,0x6e,0x77,0xa9,0xe2,0x1d,0xd4,0x6b,0xf7,0xfb,0x7e,0x3d,0x41,0x85,0xbf,0x3b,0x08,0x4c, - 0xb2,0x19,0x4e,0xe8,0xec,0x39,0x56,0x68,0x83,0xde,0xfd,0xce,0x32,0xbb,0xb5,0x32,0x0f,0x3a,0xcb,0x1c, - 0x1f,0xd7,0x0a,0x3d,0xec,0x2c,0xb4,0x76,0xfc,0xe6,0x4c,0x37,0x1b,0xff,0xfe,0xe7,0xfb,0xbc,0x5c,0x6d, - 0x5e,0xcb,0x5e,0x2d,0xe6,0x0b,0xcc,0x22,0x28,0xcb,0xf1,0x6a,0x89,0xa8,0x05,0xc2,0x8c,0x9a,0x55,0xc6, - 0x23,0x89,0x50,0xe8,0x5d,0x4e,0x69,0x2b,0xb1,0x93,0x3e,0xa6,0xfa,0x12,0xd7,0x9e,0xcf,0x6c,0xa5,0x20, - 0xc7,0xc4,0x11,0xdc,0x52,0x57,0x78,0x01,0xb5,0xca,0x2a,0xc8,0xdf,0x7d,0x1d,0xcc,0x4f,0x1f,0x39,0x82, - 0xb4,0xa1,0xda,0x06,0xb5,0x40,0xfc,0xc7,0x44,0x12,0x14,0xcb,0x7c,0xbd,0xc2,0xf5,0xca,0x18,0x83,0x84, - 0x0e,0x0c,0x74,0x38,0xa0,0xae,0x71,0x6e,0xba,0x97,0xe0,0x30,0x7e,0x5f,0xfe,0xb5,0x65,0xe8,0xf1,0x71, - 0x69,0x17,0xc3,0x0b,0xae,0x16,0x43,0x4c,0x1d,0xef,0x13,0xd7,0xe7,0x23,0xda,0x86,0xba,0x18,0xb5,0xab, - 0xd6,0xeb,0x23,0x2a,0x88,0x36,0x99,0xae,0x72,0xff,0x63,0xaa,0xd4,0x94,0xcc,0x74,0x4d,0xbd,0xf2,0xbd, - 0x6d,0x73,0x49,0x96,0x1a,0xbe,0x3f,0xa2,0x8b,0x9a,0xa6,0x9a,0xee,0xe2,0xf3,0x4f,0xa8,0x99,0x88,0xe6, - 0x9a,0xae,0xda,0xdc,0xfe,0xdb,0xf6,0xa7,0x02,0x0d,0xc4,0xd8,0x69,0x49,0xfb,0x6f,0xbe,0x46,0x47,0x96, - 0x90,0x20,0x6e,0x49,0xa2,0x98,0xfd,0x0f,0xb6,0xb3,0x73,0x7b,0x4a,0x2e,0xfc,0x89,0xf4,0x55,0x35,0x97, - 0x4f,0x25,0xad,0x9a,0x03,0xec,0xc2,0xd0,0xb7,0xcf,0x08,0xd4,0x46,0xe3,0x95,0xa3,0xfb,0x9a,0xe2,0x43, - 0xa4,0x56,0xca,0x46,0xfd,0xfb,0x2c,0xb5,0xb3,0xe5,0xe5,0xa1,0x8a,0x39,0xcd,0x0f,0x00,0xf0,0xde,0x00, - 0x0d,0xaa,0x61,0xaa,0xe2,0xdd,0xbb,0xce,0x2c,0x81,0xb1,0xaa,0x91,0x2c,0xd2,0x62,0x7e,0x2d,0xe1,0x9e, - 0x9e,0x7e,0x78,0xc1,0xd9,0x32,0x8e,0x6f,0x50,0x8c,0xa3,0x6a,0xc5,0x05,0xfc,0x36,0x28,0xc1,0x05,0x8b, - 0xb3,0x69,0x42,0xc1,0x83,0x2f,0xe2,0x87,0x7e,0x96,0xfe,0x5c,0x97,0xd5,0xd7,0x5c,0xfc,0x36,0x07,0xc6, - 0xe4,0x57,0x0e,0xa3,0x58,0xf7,0x60,0x7f,0xff,0x33,0xc1,0xcc,0xf1,0x74,0x0f,0x31,0x35,0xcb,0x08,0x21, - 0xcb,0x86,0xad,0x6b,0xb7,0x7a,0xd7,0x81,0xb3,0xc9,0xff,0xfd,0x77,0x6e,0x7d,0x33,0xba,0xaf,0xdd,0xc6, - 0xb4,0x2c,0x59,0x28,0xbe,0x6f,0x5d,0x59,0x5a,0x55,0xaa,0x17,0x97,0xec,0xe8,0x7c,0x23,0xf2,0x64,0x25, - 0x57,0xbd,0xed,0xb6,0x46,0x58,0xc1,0x0e,0x71,0x2c,0x58,0x41,0x89,0xc3,0xd0,0x90,0xc8,0x0a,0xfb,0xdf, - 0x14,0xd3,0x76,0x4b,0xe3,0x34,0x84,0x2a,0xe9,0x24,0x5d,0x93,0xfb,0xfb,0x9e,0xb7,0xa9,0xbd,0xa7,0x75, - 0x0f,0x8f,0xbd,0xd9,0x5b,0xbd,0x00,0x2a,0x3b,0xba,0xc5,0x33,0x46,0xb7,0x30,0x79,0xdf,0x22,0xc1,0xdb, - 0x71,0xb1,0x38,0x24,0x16,0xaf,0x92,0x09,0x70,0x4f,0x6c,0x42,0x3d,0xf6,0x54,0x83,0xd2,0xdf,0x78,0x43, - 0xcd,0x05,0x94,0xe2,0xe9,0x57,0xb3,0xf1,0x68,0x7c,0x6b,0x9b,0x79,0x3f,0x54,0xa9,0x47,0xe9,0x58,0xe2, - 0x2a,0x0d,0x6f,0xe0,0x21,0xf2,0xbd,0x7a,0x1b,0xde,0x46,0xc4,0x00,0x2a,0x02,0xce,0xd6,0x6e,0x94,0x78, - 0xbb,0xd9,0x15,0xc6,0xbc,0x45,0xd6,0xde,0xa6,0x46,0xc5,0xfc,0xfa,0xba,0x21,0xf8,0x38,0x88,0x1f,0x48, - 0xe4,0x2c,0x84,0x86,0xfe,0x1b,0x94,0xb6,0xb5,0xe7,0x37,0x51,0xd9,0x6a,0xb7,0x21,0x93,0x6e,0xbe,0xa2, - 0x6e,0x07,0x64,0x29,0x20,0x90,0xd9,0x7c,0x39,0xab,0x28,0x6f,0xc6,0xf1,0xd0,0x0d,0x28,0x82,0xbd,0x3d, - 0xbc,0xce,0x28,0x75,0x00,0x9a,0x7c,0xc1,0x2a,0x01,0x48,0xe3,0xa5,0x98,0xc7,0x19,0xc4,0xa5,0x7b,0xef, - 0x0a,0x66,0xb0,0xc4,0xc5,0x6b,0x70,0xad,0x95,0x92,0xaa,0x2e,0xfd,0xf3,0x18,0x3c,0x89,0x90,0xef,0x83, - 0xea,0xc5,0x67,0xd3,0x5a,0xa9,0xed,0x2c,0x2d,0x4e,0x2e,0xdd,0x87,0x05,0x3c,0x64,0xd7,0x12,0x4c,0x94, - 0xbd,0x2a,0xf6,0xbc,0x9d,0x0d,0xff,0x3f,0x34,0xd0,0x8b,0xb8,0xcc,0x3f,0x98,0x01,0x0d,0xcd,0x60,0x16, - 0x51,0x09,0xa7,0x40,0x51,0xe9,0x57,0x49,0x84,0x4d,0x52,0xfc,0xfb,0xd1,0xf2,0x8b,0xfa,0x0e,0x6c,0xd9, - 0xb7,0xf6,0x8a,0x5b,0x8c,0xd2,0x47,0xc8,0xf7,0xd8,0x5f,0xaf,0xb9,0x87,0x2c,0xbe,0x77,0x58,0x1d,0x5b, - 0x23,0xa9,0x6b,0xc8,0x62,0x34,0xb5,0xd7,0x14,0xd7,0x35,0x8b,0xd5,0xb3,0xeb,0x6f,0xa3,0xfa,0x50,0x35, - 0x6b,0xd4,0x65,0x72,0xa9,0x96,0x23,0xe4,0xe1,0xb6,0xa2,0x74,0xec,0x86,0xe5,0x0d,0xc2,0xb9,0xdc,0x12, - 0xce,0xd5,0x24,0x73,0xb9,0x2d,0x3f,0x33,0x62,0xb9,0xbc,0x9a,0x1c,0xa6,0x94,0x37,0x84,0x6c,0x79,0xed, - 0xe1,0x8a,0xb2,0x8d,0xe0,0xce,0xaf,0x04,0x58,0x81,0x9b,0x0f,0x44,0x02,0x37,0x3a,0x08,0xf6,0xbd,0x35, - 0x62,0x17,0x8a,0xd8,0x6d,0x74,0x5f,0xfd,0x36,0xb2,0xb6,0xd1,0x43,0x5d,0x42,0x09,0xd8,0x46,0x5f,0xaa, - 0x04,0x91,0xaa,0x8d,0x0e,0xbe,0x50,0xbf,0xb5,0x28,0x6d,0xf4,0x40,0x37,0x22,0xf2,0xb3,0xd1,0x17,0x68, - 0x82,0x8e,0x6e,0x0b,0xb9,0xd4,0x85,0xb5,0x7e,0xf9,0x77,0x59,0xf6,0x86,0x50,0xed,0x66,0xa6,0x9d,0x6e, - 0x44,0x3a,0xba,0xf6,0x13,0x77,0xf3,0x85,0x67,0xcb,0xd6,0xb7,0x76,0xb0,0x2e,0x50,0xad,0x24,0xa8,0x84, - 0x63,0x2a,0xb1,0xe9,0xe7,0x0f,0x1b,0xe2,0x51,0x23,0x04,0xdd,0xa9,0x84,0x9e,0x3b,0xb6,0x90,0x73,0xc7, - 0x12,0x6a,0xee,0x18,0x21,0xe6,0x8e,0x25,0xb3,0xdc,0x31,0x22,0x4a,0x09,0xfe,0x21,0x61,0x5b,0x3b,0xa7, - 0x14,0xdf,0x3c,0x27,0x15,0xfd,0x25,0x46,0xf4,0x97,0x4e,0x95,0x91,0xbf,0x27,0x99,0x6a,0x0a,0x27,0xfd, - 0x96,0xc0,0xf1,0xef,0x6e,0x7d,0x4b,0xf8,0x78,0xbb,0xc4,0x66,0x5a,0x97,0x58,0x6e,0xdf,0x7e,0x19,0xe1, - 0x8d,0x00,0x60,0x6d,0xf9,0x32,0x49,0x83,0xfb,0xfe,0xd4,0x68,0xba,0x5b,0x3b,0xb3,0xa5,0xbf,0xd6,0xde, - 0x34,0x3b,0xac,0xed,0x0e,0x3c,0x74,0x26,0x94,0x12,0x31,0xb8,0x77,0x3e,0xbf,0x3a,0xce,0x10,0x51,0x93, - 0x25,0x70,0x40,0xda,0x0f,0x9d,0xbe,0xa3,0xc9,0x6a,0x8b,0xaa,0x88,0xf7,0xbe,0xd8,0xf7,0xfc,0x44,0x92, - 0xa2,0xd3,0x82,0xc6,0xf1,0x3f,0xbe,0xd8,0xd7,0x32,0x59,0x44,0xc1,0xeb,0x3b,0x81,0xe3,0x27,0x8f,0x0e, - 0x74,0x33,0xfb,0x8e,0xe7,0xa7,0x08,0xa9,0xb9,0xf1,0x39,0x74,0x0d,0x5d,0x7e,0x5a,0x7f,0xe1,0x5a,0xb6, - 0xa8,0xbd,0x8a,0x36,0xd5,0x09,0x62,0x0f,0x9a,0xb1,0x1c,0xd0,0xb7,0xae,0xee,0xf0,0xe9,0xf5,0x8b,0x4f, - 0xeb,0x57,0x85,0xf9,0xb1,0xfa,0x37,0xaa,0x3e,0xf6,0x46,0x74,0xa9,0x39,0x84,0xce,0x3f,0x9c,0x7e,0x0c, - 0xef,0x4f,0x9b,0xff,0x0f,0x0c,0xb6,0x23,0x4c,0xaf,0x0a,0x02,0x00}; + 0xce,0xa7,0x51,0xbb,0x28,0x4d,0xcd,0xbe,0xa9,0x68,0x47,0xab,0xf7,0x55,0x72,0xa2,0x7d,0x25,0xdf,0x67, + 0x17,0xcf,0x3e,0x2d,0xc5,0xde,0xf6,0x54,0xfd,0x54,0x25,0xb7,0xdf,0x1b,0xf1,0x75,0xac,0xc3,0x9c,0xf8, + 0xd1,0xac,0xcd,0x26,0x63,0x85,0x9d,0x44,0xba,0xc8,0x8b,0xc9,0x7c,0x35,0xcd,0xe2,0xf7,0x84,0x9f,0x3f, + 0xd9,0xc7,0x45,0xfa,0x29,0x36,0x6d,0xc8,0xfd,0x3b,0xa7,0x30,0x2a,0x64,0x1a,0x3e,0xee,0xa2,0xa1,0x49, + 0x4a,0x1b,0xe9,0x4e,0x4a,0x83,0x79,0x4a,0x78,0x6f,0x28,0x0b,0xec,0x2d,0xd7,0x16,0xa3,0x6d,0x65,0xce, + 0xc7,0x56,0x17,0xbd,0x32,0x12,0x4d,0xbc,0xa9,0xcc,0x55,0x45,0x70,0xc8,0x5b,0xd7,0x75,0xdd,0x07,0xda, + 0x97,0x7a,0x67,0x39,0x59,0x92,0x05,0xe4,0xa7,0x5a,0x92,0x06,0xd1,0xd3,0xa7,0xbf,0xf2,0xe5,0xae,0xfb, + 0x72,0xa3,0xb6,0x23,0x0e,0xf8,0x38,0x8f,0x21,0x6e,0xa8,0x63,0x81,0xd1,0x26,0xf8,0xa7,0x98,0x0a,0xb3, + 0x47,0xc3,0x96,0xe4,0xd9,0x0f,0xc8,0xf9,0x2b,0x2e,0x4a,0x50,0x9a,0x7c,0xd2,0x03,0x83,0xa1,0xb9,0x28, + 0xf1,0xf9,0x95,0xef,0xca,0x24,0xc0,0xde,0x25,0x18,0x41,0x97,0x72,0x04,0x83,0x20,0xc8,0x27,0x18,0x1e, + 0x0c,0x9e,0xe2,0x62,0x6f,0x17,0xd9,0xbf,0x31,0x41,0x82,0xdc,0x14,0x6a,0x63,0x10,0x4c,0xa1,0x9a,0x18, + 0x31,0x06,0x5f,0xaf,0x5c,0x48,0x74,0xf7,0x49,0x3e,0xdd,0x0b,0x25,0x62,0x45,0x10,0xc7,0x88,0xb5,0xc1, + 0x81,0x59,0x02,0xa8,0x18,0x10,0x62,0x29,0x3d,0x99,0x9c,0x8e,0x7b,0xb5,0x4d,0xc8,0xe9,0x51,0x38,0xad, + 0xe4,0xf6,0x2c,0x6d,0xa1,0x33,0x41,0x94,0x65,0x94,0x24,0x5a,0xd7,0x26,0xc9,0xb2,0x12,0xb4,0x0d,0x06, + 0x06,0x47,0x7f,0x63,0x03,0x06,0x9a,0x3c,0xda,0xcd,0xaf,0x40,0xcc,0xe1,0x5e,0x55,0xd5,0x22,0x38,0x22, + 0x23,0x6a,0x71,0x5a,0x1b,0x48,0x7b,0xcc,0x24,0xd0,0xc1,0x33,0x18,0x64,0xf4,0x15,0xf1,0x2a,0x3d,0x11, + 0x8b,0x3f,0xc7,0x47,0x3e,0x2b,0xee,0xe4,0x08,0x89,0x99,0x65,0xed,0x3d,0x33,0x82,0xd9,0x70,0xd5,0xe4, + 0xf3,0xe4,0x16,0x9e,0x9e,0xf1,0xcf,0x84,0x37,0x3e,0x35,0x04,0x20,0x88,0x26,0x0b,0xdb,0x6c,0xbd,0xd2, + 0xf1,0x2b,0x25,0x95,0xbc,0x17,0x0d,0x4e,0x16,0xdf,0x03,0x11,0x6a,0x38,0x41,0x8f,0xfd,0xb3,0x88,0xf8, + 0x85,0xb2,0x97,0x3e,0xf4,0xee,0xac,0x3e,0xeb,0x6b,0x16,0x61,0x99,0x9b,0x22,0x1a,0x31,0xc2,0xee,0x73, + 0xc1,0x8a,0x5c,0xdd,0xc3,0xb3,0xf3,0xb4,0x06,0xdd,0x86,0x6b,0x4f,0x4d,0x9a,0x5d,0xc9,0x9a,0x30,0x0a, + 0x0f,0xb1,0xce,0xee,0xa0,0x90,0x21,0x64,0xa7,0xd5,0xc6,0x85,0x23,0xef,0xe6,0xab,0x8b,0x9c,0xe3,0xaf, + 0xf6,0x67,0xf0,0x9d,0x7b,0x1c,0x1a,0xd4,0x78,0x44,0x66,0xb8,0xbd,0xa2,0xc5,0x1a,0x08,0xd5,0xd9,0x26, + 0xa1,0x1d,0x9b,0xa4,0xbd,0x27,0xb4,0x68,0xa1,0x47,0x06,0x81,0x18,0x24,0xdc,0xe8,0xd8,0x3e,0x69,0x02, + 0x9b,0xa3,0x6b,0xf5,0x7d,0x01,0x6d,0x96,0x77,0x65,0x19,0x73,0x6d,0xbe,0x41,0x19,0xd6,0x69,0x91,0x7f, + 0xca,0x7b,0x9d,0xa5,0x79,0xa0,0x4e,0x09,0xe3,0xbf,0x2a,0xfb,0x7d,0x5b,0x38,0x4b,0x9b,0x2c,0x39,0xd0, + 0x52,0xd9,0x43,0x62,0x90,0x05,0x5e,0x5a,0x95,0x67,0x09,0x2b,0x6e,0x3c,0x12,0x1c,0xc2,0x79,0x7c,0x29, + 0x17,0xef,0x62,0xb3,0xca,0xbd,0x86,0x78,0x62,0x39,0x1e,0x30,0x03,0x14,0x85,0xc6,0x00,0xdd,0xf8,0xaa, + 0xe0,0xc4,0x94,0xeb,0x18,0x6d,0x28,0x15,0x89,0xb2,0x9d,0xf6,0x68,0xfc,0xa0,0x08,0x64,0x8f,0x08,0x1d, + 0x30,0x20,0x75,0x87,0x7d,0x17,0x8c,0x3c,0x4a,0x22,0xf2,0x75,0x4e,0x49,0x8a,0x78,0xd5,0x34,0x44,0xdc, + 0x10,0x9f,0x7a,0x53,0x53,0xf8,0xf3,0x42,0xa7,0xed,0x6a,0x09,0x3d,0x8d,0x2b,0xb2,0x2d,0x94,0x76,0xd2, + 0xa8,0xcf,0xca,0x64,0x21,0x53,0xf4,0xa5,0x2e,0x67,0x56,0xea,0xb2,0xc1,0x5d,0x27,0x69,0x0b,0xa8,0xbb, + 0xd2,0xc4,0xed,0x36,0x4c,0xa9,0x6e,0x33,0xb3,0x76,0x33,0x46,0x2c,0x2f,0x4d,0xe8,0x35,0x2c,0xf4,0x03, + 0xa5,0x08,0xc4,0x14,0xf2,0x4b,0xef,0xd8,0x40,0x05,0xfe,0xde,0xe5,0x35,0x91,0x32,0xef,0xcb,0x31,0x67, + 0x95,0xdc,0xe0,0xb2,0xbd,0x19,0xd9,0x0d,0xc1,0xce,0x9e,0xf1,0x86,0x73,0x33,0x6b,0x3a,0x62,0x72,0x32, + 0xbe,0x18,0x26,0xa5,0x1d,0x68,0xdd,0xef,0x70,0x29,0x6f,0xea,0xb4,0xae,0x39,0x3b,0x38,0x11,0x71,0xb1, + 0x91,0x63,0xea,0xce,0xee,0xa1,0x67,0x9d,0x48,0x3e,0xd6,0xa7,0x24,0xf4,0x22,0x02,0x88,0x9f,0x58,0x19, + 0x16,0x1c,0x10,0x85,0x41,0x2d,0x29,0x34,0x04,0x5a,0x6b,0xd6,0x16,0xea,0xd1,0x7d,0xe6,0x48,0x36,0x5e, + 0x38,0x01,0xa9,0xa8,0x67,0xc3,0x32,0xb7,0x96,0xdc,0x22,0xba,0x65,0x5c,0x28,0x1d,0xfb,0xbc,0xd8,0x18, + 0x57,0x1f,0x8d,0xfc,0xc4,0x03,0x05,0x16,0x85,0x05,0x7b,0xbb,0xf4,0xe6,0x6d,0xb4,0xcb,0x54,0x21,0x2c, + 0x74,0x3f,0xb6,0x7f,0xd7,0x96,0xe9,0xe5,0xf5,0x07,0xf1,0x35,0x16,0xc7,0xe8,0xef,0xd1,0xf2,0x9f,0xfa, + 0xb0,0xae,0x2b,0xed,0x1a,0xb9,0xed,0x53,0xed,0x63,0x93,0x36,0x4b,0x29,0x04,0xbd,0xfb,0x16,0x96,0xef, + 0x54,0x31,0xfc,0xde,0x72,0xd8,0x5e,0x3f,0x1c,0x7e,0x35,0x3c,0xfc,0x42,0xc2,0xb4,0x3c,0xa9,0xd4,0x8f, + 0x95,0xfa,0xa1,0x52,0x2f,0x2a,0xf5,0x7b,0xa5,0x7e,0xab,0xd4,0xf7,0x95,0xfa,0xae,0x52,0xdf,0x56,0x1c, + 0x4e,0x83,0xef,0x7d,0xd6,0x77,0xbe,0xaa,0x9f,0x39,0x8d,0xef,0xb6,0x51,0xa8,0x97,0xc8,0xcc,0x54,0xc9, + 0x04,0x29,0xb9,0xdf,0x07,0xe4,0xe1,0x05,0x4c,0x07,0xa9,0xf4,0xbf,0xbb,0xb6,0xf3,0x36,0x44,0x92,0xbd, + 0xdf,0x9c,0x96,0xe5,0xe7,0x8a,0x45,0x6a,0x81,0x44,0x34,0x86,0xe3,0x45,0x83,0xa0,0x2d,0xfa,0xb6,0x20, + 0x5d,0x28,0x90,0x46,0x78,0x7d,0x29,0x97,0xe8,0x92,0xc9,0x47,0x97,0x29,0x97,0xed,0xe8,0x3c,0x1b,0x47, + 0x1d,0x39,0x10,0x3b,0x97,0x9c,0xb3,0x51,0xff,0xe2,0xce,0x4f,0xe4,0xb2,0xf7,0x6c,0x9a,0x37,0x30,0xa2, + 0x53,0xd3,0x2a,0xbd,0xb8,0xe0,0xa7,0x7a,0x99,0xcd,0xe7,0x5c,0x33,0xf5,0xfd,0x9f,0x5c,0x98,0x0e,0x82, + 0xf2,0x7a,0x46,0x08,0xbe,0x26,0x0c,0x46,0x4c,0x25,0xbb,0x64,0xaa,0x74,0xd5,0x94,0xb3,0x72,0xb2,0xaa, + 0xf9,0x69,0x39,0x4f,0x6f,0x94,0xee,0x10,0x07,0x1e,0xa1,0xa3,0x1a,0x76,0x7a,0x44,0xb2,0xce,0x6b,0x3a, + 0xbf,0x69,0xee,0xaa,0x4c,0x19,0xd2,0x4e,0xff,0x9a,0xf2,0xfa,0x95,0xfb,0x6c,0x5e,0xcc,0xd0,0xf1,0x4e, + 0x9c,0xcf,0x34,0xaf,0xd1,0xbd,0xa9,0xca,0x0a,0xf9,0x45,0x04,0x83,0xa2,0xa4,0x29,0xcc,0x01,0xc4,0xea, + 0x32,0x9f,0x4e,0xa9,0x6b,0x38,0x1c,0x9b,0xac,0x5a,0xe4,0x05,0x12,0x09,0xa2,0xaa,0x46,0xe5,0xf5,0x22, + 0x5d,0xaa,0xbc,0xc9,0x16,0x12,0xe9,0x64,0x5e,0x96,0x4b,0x65,0xae,0x99,0x52,0xd2,0x68,0x51,0x22,0x54, + 0x8b,0x42,0x78,0x89,0x3a,0xff,0x9d,0x50,0x54,0x59,0x5f,0xa6,0x60,0x38,0x5d,0x0b,0x45,0x89,0xe8,0x51, + 0xb4,0xce,0xd4,0xcc,0x32,0x25,0x6c,0x44,0x9b,0xf6,0x53,0xde,0x10,0x49,0x9b,0x4e,0xcb,0x62,0x8e,0xa8, + 0x2a,0xbf,0xad,0x68,0x0b,0x4e,0x95,0x76,0xad,0x9c,0x2a,0x61,0x8b,0x08,0x26,0xd2,0xc5,0x9c,0x80,0x41, + 0xd9,0x31,0xc1,0x07,0x93,0x67,0xdb,0x5e,0xec,0xc2,0xb1,0x41,0x69,0xee,0x29,0x13,0x30,0x8f,0xc0,0x12, + 0x1c,0x2b,0x5e,0x5d,0xe5,0x75,0x4e,0x25,0x11,0x23,0x2c,0x4f,0x82,0xcb,0xa6,0x59,0xc6,0x0f,0x1e,0x5c, + 0x5f,0x5f,0x0f,0xaf,0xbf,0x18,0x96,0xd5,0xc5,0x83,0xc3,0xaf,0xbf,0xfe,0xfa,0xc1,0xa7,0x79,0x5e,0x7c, + 0x24,0x8a,0x2a,0xef,0x39,0x67,0x83,0xb8,0xe5,0x82,0xf2,0x15,0xa0,0x4c,0xca,0x73,0xb2,0x09,0xd1,0xf3, + 0x15,0x11,0xf6,0x45,0xdf,0xf7,0x3b,0x0d,0x6c,0x72,0xad,0x77,0xc9,0xdf,0x95,0x11,0x6c,0x72,0xcc,0x16, + 0x55,0xf5,0x7e,0x23,0x04,0x32,0x01,0xe2,0xee,0xa1,0x80,0x5d,0x9e,0x27,0xb7,0xf5,0x15,0x11,0xc4,0xdb, + 0x23,0x78,0x78,0x70,0x70,0xf0,0x80,0xf2,0x02,0xe2,0x9b,0x9a,0xcb,0xbe,0x12,0x34,0xc6,0x7f,0x3c,0xc0, + 0x1d,0xa9,0xfc,0xe7,0xf5,0x2b,0x6a,0xb6,0xcc,0x01,0x99,0x97,0xcd,0x62,0xae,0xce,0xcb,0xe9,0x8d,0x02, + 0x36,0x54,0x97,0xb4,0x14,0x0a,0x43,0x53,0x88,0x50,0xae,0x64,0xd7,0x36,0x79,0x43,0x7f,0xd3,0xe9,0x14, + 0xfb,0x51,0xa5,0x55,0x93,0x4f,0xf0,0x5e,0xd3,0x9e,0x20,0x20,0x2a,0x71,0x8b,0x27,0xbe,0xc3,0xcf,0xa1, + 0xba,0x7c,0xa8,0x2e,0xbf,0x50,0x97,0x5f,0xaa,0xcb,0xaf,0xd4,0xe5,0xdf,0xd5,0xe5,0x45,0x55,0xae,0x96, + 0xaa,0x48,0xaf,0x68,0xed,0x78,0x8c,0x04,0x88,0x57,0x6a,0x4a,0x50,0x39,0x57,0xd3,0x46,0x11,0x1d,0x0b, + 0x0f,0x1b,0xa4,0xb3,0x41,0x6a,0xa6,0x96,0xf9,0x04,0x0e,0x37,0xea,0xb2,0x52,0xf9,0xe2,0x82,0x3a,0x43, + 0x83,0xa2,0x43,0xac,0x9c,0xab,0x25,0x0c,0x1b,0xd5,0x6a,0xae,0x52,0x75,0x4e,0xac,0xe4,0x79,0xa5,0xce, + 0xa7,0x39,0xfd,0x2f,0x15,0x3d,0x4e,0x08,0x3c,0x39,0x0a,0x91,0xe2,0xcb,0xec,0xa7,0x33,0xa2,0x85,0x17, + 0x2a,0x57,0x1f,0xcf,0xa7,0x54,0x41,0xf5,0x51,0xfd,0xa6,0xaa,0xa5,0x22,0x60,0xae,0x9a,0x89,0xaa,0x56, + 0xe7,0x37,0x44,0xc9,0xd7,0xe9,0x62,0xa9,0x08,0xb6,0x89,0xf0,0xaa,0x97,0x29,0xa1,0x1e,0xda,0x6b,0xc4, + 0x70,0xd6,0xab,0x73,0xfa,0xbf,0xe4,0x7b,0x6d,0xd5,0x4a,0x11,0x72,0x53,0xd7,0xe7,0x10,0xa2,0x13,0x92, + 0x4a,0x57,0xd3,0xbc,0x54,0xd8,0x0e,0x60,0x64,0x3f,0x2a,0x46,0x0c,0xd4,0xd2,0x39,0x81,0x9d,0x78,0x83, + 0xc1,0x12,0x35,0x5d,0x10,0x80,0xae,0x2a,0xe2,0x41,0x26,0x69,0x71,0x95,0x52,0x4b,0x93,0x2a,0x5f,0x36, + 0xd8,0x14,0xf2,0x40,0x24,0x37,0x0c,0xdd,0x94,0x19,0xfb,0x84,0x86,0x47,0xff,0x65,0xb2,0x34,0x60,0xf3, + 0x5a,0x34,0xbc,0x36,0x0d,0x3d,0x5c,0x52,0x8b,0x4a,0x90,0x1b,0x0f,0x11,0xa6,0x04,0x34,0x67,0xd9,0x7c, + 0x4a,0x74,0x3c,0x6f,0x66,0x25,0x08,0x75,0x9e,0x9e,0x53,0xed,0xf3,0xec,0x02,0xb4,0xc0,0x02,0x9b,0x19, + 0xa8,0x55,0xaa,0xd6,0x38,0xb6,0x5c,0x35,0x28,0x69,0x70,0xac,0xc1,0xb9,0x16,0x15,0x13,0x0a,0x48,0x73, + 0x60,0x9d,0x3c,0x9d,0x97,0x17,0x54,0x49,0xb1,0xe2,0x3f,0x40,0x01,0x34,0x35,0x0b,0x9a,0xd0,0x1b,0xa5, + 0x31,0xa0,0xca,0x44,0xe8,0xa0,0xb0,0xdf,0xcb,0x6b,0x65,0x42,0x67,0x29,0x0e,0x4e,0xf6,0xdb,0xaa,0x04, + 0x1a,0x99,0x55,0xa0,0xfa,0x1a,0x40,0x0b,0x84,0x10,0x0c,0x7a,0x04,0xb0,0x2a,0x2d,0xf2,0x05,0xca,0x4e, + 0xf2,0x6a,0xc2,0xe7,0x43,0xbe,0x5c,0x12,0x80,0xaa,0xc9,0xaa,0xa2,0x1d,0x0e,0xcc,0x05,0xd4,0x57,0x4f, + 0xa8,0x11,0xca,0x22,0x00,0x95,0x28,0x3f,0x34,0xdc,0xa2,0xd9,0x9f,0xa5,0x13,0x00,0x60,0x95,0xe5,0x17, + 0x85,0x1c,0x82,0xea,0x42,0x5d,0xcc,0x6f,0x96,0x97,0x04,0x39,0xe9,0x45,0x06,0x40,0xce,0x78,0xf1,0x33, + 0x48,0x14,0x6a,0x02,0xea,0xbc,0xc6,0x2d,0x6b,0xfb,0x52,0x88,0x5b,0xa2,0x3f,0x54,0x21,0x21,0xa4,0x72, + 0x7e,0x73,0x51,0xca,0x2f,0x7f,0x07,0x52,0x40,0x89,0x2b,0xb5,0xaa,0x39,0xd4,0x06,0xcf,0x0f,0xff,0xe1, + 0x2f,0x1b,0x86,0x19,0x10,0x55,0x57,0x79,0x76,0x2d,0x11,0xa2,0xea,0xde,0xbd,0x5c,0x8a,0x4d,0x7e,0xca, + 0xf7,0x87,0xd3,0x58,0x7b,0x39,0xaa,0x39,0x4f,0x8a,0xd8,0x37,0xb2,0xc4,0x83,0x1d,0xce,0xae,0xcb,0x8a, + 0xd1,0x5f,0x45,0xbd,0xc8,0x68,0x23,0xa0,0x13,0x73,0xb5,0xaa,0x10,0x3d,0x7b,0x95,0x77,0x43,0x5b,0xb5, + 0xa4,0x40,0xbd,0xd6,0xbf,0x77,0x84,0xdf,0xb2,0x17,0x29,0xeb,0x03,0x93,0x23,0x94,0x8f,0x8b,0x38,0x6c, + 0xb4,0x21,0x6d,0xe3,0x19,0xd2,0x0e,0x06,0x36,0x5e,0x9a,0x9f,0x6c,0x2f,0x1e,0x84,0x55,0x4c,0xfb,0x22, + 0x78,0x93,0x83,0x88,0x4b,0xe6,0x31,0xe2,0x4b,0x0d,0x5b,0xdd,0x78,0xf3,0xa1,0xd3,0x67,0x3d,0x7f,0xfd, + 0x9d,0x7e,0xf3,0x21,0xcc,0x73,0x84,0xa0,0x6c,0x6c,0x3d,0xc7,0x34,0x7b,0xb8,0xb3,0x32,0xee,0x59,0x84, + 0x4e,0x25,0xa6,0xa8,0x2c,0x09,0x27,0xe9,0xb8,0x01,0x7f,0xe2,0x63,0x5d,0x92,0xbf,0x15,0x7b,0xd5,0x27, + 0x2c,0xa2,0xde,0xf2,0x21,0x67,0x3e,0xd0,0x66,0x87,0x72,0x91,0xa3,0xd8,0xec,0xb3,0x31,0x53,0x67,0xbc, + 0x26,0x42,0x08,0xe7,0xe1,0x82,0x10,0x85,0xbb,0x8d,0x8b,0x69,0x7f,0x59,0x2f,0x8f,0xcb,0xba,0x3b,0x3b, + 0xfb,0x86,0x90,0x79,0x77,0x7a,0xd2,0x41,0x45,0xc3,0xff,0x40,0xc7,0x22,0xed,0x86,0xfe,0xc2,0x5e,0x81, + 0x0d,0x2e,0x26,0xe3,0x80,0x4d,0xbd,0x25,0x75,0xe6,0x06,0xee,0x03,0x98,0xd5,0x23,0xc1,0x0b,0x5b,0xdd, + 0x6d,0x5c,0x5e,0xd2,0x70,0x69,0x0b,0x21,0x3d,0xf3,0xd6,0x02,0x20,0x9e,0x37,0x5c,0x8a,0x43,0x67,0xa0, + 0xac,0x40,0xa7,0xf6,0x27,0x19,0xcf,0x80,0xa6,0xc7,0xbb,0x2d,0x33,0x8c,0x12,0x75,0xe2,0x00,0xf6,0xff, + 0x6b,0xef,0xdd,0xd7,0xdb,0x36,0x96,0x7d,0xc1,0x57,0xa1,0xb0,0x7d,0x64,0x20,0x84,0x28,0xc9,0x76,0xb2, + 0x12,0xd0,0x30,0x97,0x2f,0x71,0xe2,0x24,0xbe,0xec,0x58,0x71,0x56,0x22,0x31,0xda,0x10,0x09,0x4a,0xb0, + 0x28,0x80,0x0b,0x00,0x25,0x3b,0x22,0x1f,0xe8,0xfc,0x3b,0x8f,0x70,0x9e,0x6c,0xea,0x57,0xd5,0xdd,0x68, + 0x5c,0x28,0xd9,0xc9,0x39,0x7b,0x66,0xbe,0x6f,0xe2,0x2f,0x22,0xd0,0xe8,0x7b,0x57,0x57,0x57,0x55,0xd7, + 0x45,0x3c,0x0b,0x3f,0x81,0x5c,0x0d,0xdb,0x96,0x8b,0x7b,0xdd,0x1a,0xbc,0x3a,0xd3,0x9a,0x3e,0x27,0xca, + 0xed,0x84,0xeb,0x10,0x15,0xbd,0xf6,0x11,0xd9,0x65,0x91,0xc0,0x27,0x99,0xf6,0x33,0xa6,0x15,0x64,0x8d, + 0x07,0x31,0xf6,0x13,0x81,0x25,0xad,0x3c,0x87,0x39,0x63,0xa2,0xb5,0xcc,0x38,0xbe,0x8f,0x75,0xaf,0xbf, + 0x8f,0x3b,0xdb,0xff,0x1e,0xed,0x4f,0x13,0xb4,0x7f,0xd9,0x8d,0x39,0x2e,0xa8,0x0b,0xb3,0x84,0x2a,0x1d, + 0xfb,0xa7,0x55,0xc5,0x3f,0x9a,0x8a,0x7f,0xa4,0xb5,0xf9,0x58,0x7d,0xf8,0xce,0x7c,0xf8,0x8e,0x3e,0x9c, + 0x24,0xe1,0xee,0xe1,0xd1,0x95,0x37,0xe8,0x1f,0xed,0x1c,0xdf,0x39,0x1a,0x8f,0x77,0xfd,0x63,0xc4,0x0d, + 0x38,0x26,0x1e,0xe3,0x8a,0x1f,0x26,0x8e,0x7f,0x50,0x95,0xa6,0xc3,0x4b,0x95,0x5e,0xd0,0x22,0x9e,0x57, + 0x1f,0xce,0xcc,0x87,0x33,0xfa,0xf0,0x34,0xe9,0xb4,0xe6,0xe5,0x80,0x75,0xbb,0x81,0x3b,0xe8,0x7b,0xbb, + 0x55,0x38,0x06,0x31,0xb6,0xdc,0x1d,0xba,0xa3,0xad,0xc3,0x3f,0xdc,0xf1,0x17,0x47,0x9e,0xb7,0x7b,0xda, + 0xa1,0x94,0x26,0xf6,0x9a,0x71,0xe5,0xc6,0x55,0x0a,0x42,0x99,0xc0,0xdc,0x88,0xe2,0x32,0xe2,0x10,0xb1, + 0x5b,0x55,0x30,0x9f,0x71,0x98,0x57,0x81,0x7f,0x18,0x88,0x4a,0x78,0xa6,0xa3,0x51,0xff,0xb1,0xb3,0xb3, + 0xeb,0x3f,0xa6,0x87,0xa3,0xe2,0x8b,0xad,0xe4,0x02,0xf6,0xd3,0x51,0x5a,0xde,0xd9,0xf5,0xdf,0x26,0x5d, + 0x5a,0x0f,0x1f,0x54,0xe8,0x7a,0x02,0x94,0x58,0x62,0x0e,0x02,0x46,0x0d,0xbf,0x55,0xda,0xd6,0x1a,0x8f, + 0x55,0xde,0x74,0x63,0x5e,0xe3,0x3d,0xef,0x71,0xc2,0x91,0x8a,0x1c,0xd3,0x01,0xa7,0x16,0x54,0xe0,0x75, + 0xe2,0x8a,0x77,0xfa,0xfa,0x65,0x79,0x5a,0xd3,0xc1,0xe9,0xba,0xe1,0x55,0xed,0x82,0xc3,0x66,0x6d,0x28, + 0x09,0x22,0x65,0x25,0x12,0x3c,0xdd,0x01,0xec,0x4a,0xa8,0x44,0x02,0xcf,0x97,0xd9,0x9f,0xc0,0xcf,0x05, + 0x5c,0xe8,0x35,0x57,0x8f,0x3a,0xf0,0x43,0x1e,0xfe,0x90,0xdf,0xe2,0xbf,0x51,0xaa,0x37,0xbe,0xf8,0xb6, + 0xd8,0xfe,0x1a,0x01,0x24,0xe0,0xa1,0x94,0x25,0xec,0x3f,0xe8,0xb8,0x7c,0xbd,0xd8,0xba,0x2c,0xfb,0x14, + 0xdf,0x84,0xca,0xe3,0xc5,0x9d,0xa4,0xc3,0xad,0xe6,0x9d,0xe4,0x30,0x1d,0xf7,0x59,0x2d,0x38,0xaf,0xb7, + 0x92,0x63,0xc5,0xbf,0xad,0xa0,0xf4,0xd4,0x40,0xe9,0x29,0x41,0xe9,0x9b,0xe6,0x38,0x95,0x45,0x78,0xcc, + 0xa1,0x30,0xc1,0xac,0x06,0xc4,0xae,0xef,0xf0,0xab,0xe3,0xf3,0x8f,0x8a,0xfc,0x5c,0xa5,0xef,0x94,0x99, + 0xfa,0x64,0xc5,0x80,0xb6,0x3e,0x8b,0xc4,0xd5,0xf1,0xab,0x30,0xd2,0xfc,0x91,0x5f,0x55,0xaa,0x5d,0x27, + 0x27,0x70,0x9d,0xcd,0xb8,0xd2,0xd6,0x67,0x55,0x27,0xc6,0xf6,0x3e,0x61,0x8f,0x62,0x88,0x08,0xfd,0x2c, + 0x51,0x71,0x2e,0xd9,0x73,0xac,0xe3,0xbf,0xa0,0x77,0x21,0xb0,0xf8,0xf5,0xa7,0xc6,0xe7,0xe7,0xb5,0x77, + 0x3a,0x49,0x1c,0xff,0x55,0xbd,0xc4,0x4b,0xfb,0x15,0x19,0x86,0xef,0x71,0x01,0x60,0xbc,0x35,0x28,0x37, + 0x66,0xe0,0x51,0xad,0x6a,0x2c,0xf2,0xc0,0x64,0xb8,0x62,0x20,0x6b,0x64,0x73,0xd1,0x23,0x2b,0x52,0xa7, + 0xd5,0xaf,0xab,0x46,0xea,0xb7,0x29,0x6e,0x28,0xdb,0x0d,0xdb,0xbd,0xdb,0xdc,0x6e,0x3d,0x97,0xfb,0xca, + 0x34,0xfb,0xb8,0x3e,0xd6,0xab,0x7a,0x22,0x37,0x2a,0x32,0x9a,0x9f,0x31,0xcb,0x23,0x55,0x2d,0xd8,0x54, + 0xda,0xdd,0x26,0xdf,0x73,0x10,0xb7,0x37,0x7e,0x1c,0x40,0x5e,0xe4,0x4a,0x0e,0x18,0x8e,0x68,0xa7,0x08, + 0x9d,0x07,0x2a,0xee,0xcd,0x7f,0x05,0x5a,0x3a,0x71,0x4d,0xf4,0x8e,0x15,0xf1,0x28,0x9e,0xeb,0xaf,0xee, + 0x78,0xbb,0xfe,0x13,0x0b,0x3d,0xb5,0x02,0x3c,0x08,0x95,0xf7,0xc1,0x3a,0xeb,0x41,0xdb,0x95,0x2c,0x11, + 0xfb,0x50,0xa3,0x2e,0xa0,0xe2,0x6a,0x45,0xd0,0xe0,0x58,0x70,0x89,0x98,0xd8,0x49,0x48,0x9b,0x9a,0x47, + 0xaa,0xc8,0xb7,0x8d,0xc4,0x38,0xa7,0x56,0xb6,0x94,0xf3,0x95,0x45,0xeb,0x88,0x08,0xad,0x8c,0x9c,0x3a, + 0xa3,0x00,0x7b,0xf0,0x25,0x64,0xae,0x4a,0x54,0x91,0x30,0x1a,0x40,0x5f,0x8b,0xbe,0xc9,0x0b,0xe4,0xc0, + 0xc8,0x88,0x63,0x77,0x9f,0x1b,0xf2,0xbb,0x2b,0x33,0x31,0x3c,0xd0,0x23,0xc2,0x0f,0x2e,0x9c,0x72,0xb4, + 0x2d,0x12,0x6d,0x1d,0x9e,0x78,0x18,0x75,0x98,0xe2,0x48,0x94,0xeb,0x8e,0x2f,0xfa,0xd6,0xbc,0x74,0x33, + 0xfa,0x8c,0x61,0x72,0x2f,0xb3,0xd0,0x0e,0x19,0xab,0xf4,0x96,0x24,0x16,0xcb,0xf9,0x40,0x93,0x00,0x1a, + 0x4d,0xf5,0xfb,0x99,0x57,0xa5,0x22,0x0a,0x0b,0x31,0xad,0x11,0xc2,0x32,0xb3,0x9c,0x3f,0xd2,0x1a,0x42, + 0x13,0x68,0xa8,0xe0,0xf2,0x98,0xfa,0xbc,0x36,0x73,0xec,0x6f,0x49,0xe8,0x04,0x79,0xd3,0x93,0x2b,0x53, + 0xee,0xcf,0x2c,0xef,0xda,0xfe,0x99,0x38,0x26,0xa6,0xb5,0x3e,0xf3,0x46,0x2e,0xd7,0x04,0xe9,0x7b,0x31, + 0xfa,0xd0,0x22,0x9b,0x91,0xec,0x9f,0x79,0x41,0xe3,0x8b,0x7b,0x06,0xe9,0xf8,0x02,0xb2,0xd8,0x25,0x35, + 0x39,0xc3,0xa4,0x96,0x3c,0xa9,0x53,0x99,0xe1,0x09,0x3c,0xbd,0x70,0x17,0xa9,0x2b,0x41,0xea,0x5a,0x3e, + 0xa1,0x4d,0x93,0x1f,0x9a,0x24,0xb2,0xf8,0x73,0x6e,0x94,0x6d,0x64,0xae,0x88,0xf1,0xae,0xdc,0x96,0x47, + 0xe1,0x42,0x54,0xf7,0x4a,0x6d,0x2c,0xa5,0x42,0xd3,0x0b,0x94,0x8a,0xd0,0x17,0xb3,0xaa,0xaf,0x54,0xfc, + 0xce,0x6c,0x9d,0xa9,0xa1,0x36,0x93,0x90,0x79,0x6b,0x83,0x02,0x94,0x83,0x66,0xec,0x4b,0x6a,0x2a,0x5a, + 0x72,0x0b,0x76,0xe6,0xc4,0x44,0xa4,0xe7,0x1b,0x13,0x12,0x3b,0x56,0x89,0xd2,0x7b,0xbd,0xd6,0xca,0x7e, + 0x1c,0x56,0xde,0xda,0x9a,0x22,0x65,0xfe,0x50,0xe7,0x11,0xa4,0x0c,0xad,0x8d,0x4d,0xde,0xc7,0x1c,0x90, + 0xd5,0xd4,0xbc,0xb4,0xe8,0x92,0x56,0x8c,0xbd,0x66,0xec,0x0a,0x03,0x87,0x89,0x17,0xb9,0xac,0x71,0x9c, + 0xaa,0xb9,0xe5,0x2b,0x27,0xe8,0x1b,0x32,0x71,0x90,0xeb,0xd9,0x47,0x97,0x6a,0x8d,0x73,0xe6,0xd6,0x5a, + 0x29,0x37,0x36,0xb1,0x76,0xd8,0x6d,0xb9,0xc4,0xd6,0x3e,0x32,0x86,0x5d,0x86,0x6f,0x5e,0xa7,0x79,0xa0, + 0xda,0x6a,0x95,0xc9,0xad,0xc4,0xbf,0xb2,0x9c,0x5e,0xcb,0xd2,0xd7,0x2d,0xd8,0xce,0x55,0xa7,0xaa,0x41, + 0xe6,0x9e,0x4e,0x23,0x2a,0x07,0x5b,0x8d,0xd1,0xdf,0x95,0x36,0xf0,0x55,0x98,0x86,0xd6,0xe2,0x4a,0x65, + 0xa3,0x37,0xfd,0x28,0xd9,0x7d,0x7c,0x4b,0x34,0x44,0x75,0x2d,0xec,0xc2,0x60,0x5a,0x41,0x61,0xd0,0x06, + 0x37,0xee,0x04,0x3d,0xef,0x43,0x9d,0x79,0x51,0x73,0x0d,0x32,0x4f,0x26,0xba,0x1a,0x42,0x8c,0x68,0x42, + 0x28,0x5f,0x59,0x58,0x02,0xbf,0xb0,0x95,0x92,0xb9,0xa6,0x28,0x54,0xbd,0x58,0x96,0x4d,0x15,0xfb,0x55, + 0xe4,0x21,0x20,0xfb,0xf0,0x0a,0x01,0x3e,0x53,0x76,0x68,0xae,0x2a,0xd6,0xaf,0xc6,0x45,0xe2,0x5f,0x6b, + 0xc8,0x72,0xee,0x6d,0xfb,0x77,0x54,0xcb,0x9d,0x3f,0x0c,0x13,0x5e,0x83,0xc8,0xe5,0x68,0x39,0x99,0x5f, + 0x0f,0x62,0x74,0x69,0x26,0x0e,0xc5,0x6a,0x27,0x47,0x22,0x80,0x8b,0x3e,0x25,0xd5,0x79,0x80,0x0e,0x2a, + 0xa6,0x08,0x03,0xaa,0x1c,0x9f,0x9d,0xeb,0xe4,0x6a,0xe5,0x53,0xcf,0x24,0x72,0xa4,0x60,0xaf,0x5a,0x9c, + 0x2a,0x40,0xbc,0x0a,0xf1,0xc3,0xfe,0xff,0x9b,0xb6,0x8f,0xe8,0x38,0xee,0xa1,0x6d,0xd3,0xc7,0xaa,0xef, + 0x17,0xf5,0x13,0xa5,0x1a,0xab,0xb1,0x39,0xc8,0xc7,0xc3,0x52,0x3c,0x77,0xd1,0x0f,0x43,0xef,0xc8,0x3d, + 0xc5,0x15,0xdd,0x25,0xce,0xc5,0x00,0xd1,0x8e,0xa0,0x1b,0x64,0xe3,0xb3,0x53,0xa3,0x8a,0x8c,0x23,0x7a, + 0xb5,0xd2,0x88,0xcd,0x33,0xe1,0x8a,0xc2,0x73,0x75,0x6a,0x9b,0x50,0xb4,0x43,0x35,0x4f,0xde,0xc8,0xb2, + 0xa2,0xed,0x87,0x49,0x90,0xde,0xa4,0x18,0x4c,0x64,0xd3,0xce,0x8e,0x55,0x00,0xd7,0x64,0xb1,0x71,0x96, + 0x62,0x7d,0x08,0x69,0x51,0xd7,0xae,0x3e,0x89,0x68,0x33,0xe4,0x5d,0xdb,0x95,0x57,0x07,0x40,0xa7,0x14, + 0x21,0xf8,0x55,0x9f,0x90,0xa7,0x88,0x9d,0xe1,0xf9,0x7a,0x8b,0xd6,0xfa,0xaf,0xb6,0xa8,0xa4,0x61,0x8b, + 0x72,0x4c,0x32,0x69,0xc5,0xde,0xa1,0xa5,0x0a,0xdb,0x8b,0x6c,0x9e,0x0e,0x57,0x05,0xb5,0x6f,0xde,0x42, + 0x99,0x74,0xd0,0x5a,0x1e,0xa8,0x39,0x83,0x7c,0x29,0x24,0x3a,0x17,0xc1,0x7a,0xa2,0xa3,0x72,0x26,0x8c, + 0xd3,0x73,0xfc,0x65,0x9d,0x17,0xc4,0x7d,0x6d,0x79,0xbf,0xf4,0x68,0x1f,0x26,0x35,0xff,0x99,0xda,0xc7, + 0xd5,0xd4,0x1b,0x1d,0xbb,0xb9,0xcc,0x07,0x22,0x13,0x27,0x9d,0xbe,0x33,0xf7,0x0c,0xf3,0x47,0x54,0x99, + 0xf1,0xef,0xc9,0x40,0x9b,0xdb,0xaf,0x09,0xbb,0x18,0x0d,0x25,0x6c,0x18,0x0e,0x2c,0xce,0x2d,0x5e,0x3d, + 0x09,0x00,0xe4,0xf5,0x35,0x93,0x37,0x5e,0xd2,0xa1,0xeb,0x92,0x77,0x60,0xd4,0x2a,0xd8,0xb1,0xbf,0xa4, + 0xd1,0xf2,0xa6,0x2a,0xdd,0x25,0xcf,0xe2,0x3c,0x5c,0x56,0x53,0x3a,0x0f,0xe7,0xc6,0x59,0x00,0x25,0xcc, + 0x31,0x67,0x42,0xe0,0x4e,0xc3,0xbc,0x22,0x25,0x16,0x96,0x2d,0xa9,0x6c,0x22,0xd4,0x35,0xc3,0x1e,0x65, + 0xd8,0x9f,0xd3,0xc2,0xce,0x69,0x61,0x85,0x93,0xaa,0x16,0x76,0xee,0xe9,0xb4,0xc3,0xf9,0x58,0xea,0xee, + 0xe8,0x80,0xe4,0x30,0xcd,0xaf,0x63,0x37,0x91,0x23,0x64,0x54,0xba,0x53,0xce,0xb5,0xf0,0x46,0x53,0x5a, + 0xc0,0x85,0x45,0xcd,0x69,0x3f,0xb2,0x45,0x75,0x02,0x4c,0x7c,0x1a,0x2e,0xd1,0x40,0x7b,0xfe,0x94,0xfe, + 0x5f,0x84,0x95,0xab,0x16,0xff,0x32,0x84,0x04,0xc0,0x3f,0xa5,0x9f,0xc5,0xd8,0x3f,0x31,0xaa,0xdb,0xf4, + 0xe9,0x38,0x4c,0xf0,0xe9,0x8a,0x7e,0x4e,0xc6,0xfe,0x41,0xb8,0x55,0x0c,0x67,0x0f,0xd1,0xd4,0xf4,0x61, + 0x78,0x42,0x67,0x93,0x7b,0xe9,0x8d,0x50,0xbc,0xdf,0x9f,0x8d,0x83,0xd8,0xa5,0x3d,0x8c,0x5a,0x76,0x76, + 0x16,0xe3,0xe0,0x1d,0x7d,0xf4,0x8f,0x69,0x53,0x7f,0xc4,0x2f,0x88,0x33,0x9d,0x91,0x6b,0xed,0xf7,0xa7, + 0x63,0x0f,0x99,0x4e,0xfd,0x2b,0xce,0x44,0xbf,0xc8,0xa4,0xcb,0x73,0x9b,0x3b,0x3b,0x27,0x92,0xe9,0x52, + 0x65,0xba,0x94,0x4c,0x07,0x2d,0x3a,0x20,0xf5,0x2f,0xd5,0xb9,0x6b,0x89,0xe2,0xdc,0x53,0x41,0x21,0x55, + 0xcb,0xb5,0x4a,0x4f,0x55,0xf7,0x4e,0xa5,0x7b,0x5d,0x95,0x72,0x05,0x52,0xb5,0xd5,0xb5,0xaa,0xff,0x6e, + 0x2c,0xce,0x2e,0x26,0xe1,0x2f,0x31,0xad,0xcf,0xcc,0x5f,0xc0,0x54,0xde,0x05,0x41,0x7f,0xcc,0x31,0x4c, + 0x47,0x93,0x43,0x7e,0x18,0x77,0x38,0xff,0xa8,0xe2,0x12,0xce,0x88,0x16,0x4e,0x38,0x0a,0xa1,0x41,0x8f, + 0xd9,0x58,0xf3,0x08,0xdb,0xdb,0xef,0x40,0xe7,0x44,0x86,0x82,0xcf,0x88,0xc6,0x3d,0xa6,0x2a,0xf6,0xd0, + 0xda,0x28,0xa2,0xe7,0xcc,0x57,0xe3,0xe7,0x71,0x2d,0xa9,0x9f,0xf3,0xb1,0x1a,0xdc,0x52,0x06,0x87,0x14, + 0xed,0xd1,0xb6,0x6b,0xa0,0x4b,0x6b,0xa0,0x5e,0x50,0xaf,0xb3,0x1a,0xef,0x70,0xf6,0x68,0x01,0x25,0x7a, + 0x1a,0x22,0x01,0x44,0x7f,0x7f,0xec,0x49,0x74,0x46,0x79,0x51,0x9b,0x7e,0xea,0x9f,0x60,0xe3,0x4f,0x1f, + 0x9d,0x6c,0x6f,0x5f,0xb8,0x7b,0xbe,0x4c,0xcb,0xda,0x9d,0x70,0xb8,0x6c,0x00,0x65,0xc0,0x40,0x0b,0x0a, + 0xaf,0x22,0xa1,0xea,0xe2,0x50,0xca,0x8c,0x73,0xfa,0x8c,0x7e,0x99,0xec,0x5a,0x60,0xb0,0x15,0x58,0x82, + 0x28,0x06,0xf8,0x8f,0x50,0xff,0x94,0xbe,0x4d,0xab,0x30,0x88,0xc1,0xad,0xd5,0x06,0xf2,0x7d,0x8b,0xa3, + 0xd6,0xf0,0xd9,0xde,0x91,0x4f,0xed,0x32,0x7f,0x33,0x66,0xc8,0x8a,0xb2,0x8e,0x1a,0xd6,0xd6,0x51,0x75, + 0x22,0x5c,0x08,0xa3,0x57,0x30,0x9e,0x28,0x65,0x82,0x51,0x7b,0xfa,0xa9,0x8b,0xb2,0xce,0xeb,0x64,0x8f, + 0x30,0x4a,0xb9,0xcd,0x1f,0xe5,0x04,0x1c,0x15,0xf6,0x57,0x2b,0xe9,0xe6,0xec,0x4f,0xd5,0x74,0xe0,0xb8, + 0xc1,0x78,0xfa,0x13,0xc4,0x6c,0x8a,0x4e,0xfd,0xb9,0x72,0xf7,0x41,0xb8,0x20,0xaf,0x47,0x1b,0x0a,0xb3, + 0xd5,0x0a,0xd1,0xdd,0x81,0xf4,0xfc,0x5c,0x48,0x7b,0x5f,0x10,0xb2,0xe6,0x5b,0xe4,0xe0,0xb2,0xf1,0xbe, + 0x81,0xca,0xae,0x63,0x02,0xea,0xd5,0x84,0xeb,0x19,0x90,0xe7,0xea,0xa8,0xa7,0xa9,0xeb,0x66,0x60,0x73, + 0xb1,0x24,0xa4,0xc4,0x0e,0xac,0xed,0x59,0xfc,0x2b,0xe6,0xd5,0x54,0x3b,0xf1,0x14,0x41,0x30,0xf3,0x3c, + 0xe6,0xc4,0xcf,0xa2,0x82,0x09,0x71,0x50,0xdd,0x85,0xcb,0x89,0xdc,0xaa,0x69,0x50,0xc7,0x8d,0xb3,0x7a, + 0xa0,0xa2,0xa2,0x48,0x55,0x11,0x53,0x7e,0x55,0xa2,0x09,0xc2,0xc1,0x07,0x87,0x5e,0x97,0x05,0xc6,0x06, + 0x2e,0x72,0x96,0xe4,0x45,0xc9,0x2d,0x12,0x9a,0xd9,0x1b,0x5e,0x3e,0x9c,0xe9,0xb5,0xba,0xd4,0x0e,0xee, + 0xce,0x56,0xab,0xad,0x63,0xe2,0x17,0x67,0x87,0x97,0x63,0xc5,0x99,0x2e,0x60,0x52,0x2e,0xac,0xec,0x59, + 0x78,0x56,0xbb,0x3f,0x40,0x89,0xc5,0x6a,0x75,0x56,0x6f,0x98,0xb8,0x18,0x6c,0xa4,0xc4,0xd3,0xb3,0x29, + 0xeb,0x7a,0x61,0xbb,0x5a,0x39,0x85,0x34,0x6f,0x8e,0x11,0x6f,0x3d,0x26,0x5c,0xec,0x5d,0x5f,0xa0,0x93, + 0x53,0x39,0x5b,0xa4,0xb1,0xad,0x0b,0x2c,0x30,0x6b,0x96,0xc0,0x4d,0x9c,0x7a,0xd4,0xce,0x26,0x85,0xa8, + 0xd8,0xe2,0xf0,0x5e,0xbc,0x31,0x14,0x81,0xa5,0xde,0xf5,0xb5,0xd7,0x96,0x04,0x8b,0xb9,0xf2,0x0f,0xfc, + 0x73,0x08,0xa9,0x9f,0x22,0xd2,0x7c,0x36,0x5d,0xce,0xe3,0xc2,0xff,0x40,0xcf,0xa0,0x71,0x5e,0x2b,0xed, + 0xaf,0x2b,0x9a,0x93,0xab,0x87,0x8b,0xa4,0x02,0xe0,0x2b,0x26,0x2b,0xcf,0x0f,0x17,0xc9,0xe1,0xd5,0x18, + 0xd6,0x5e,0x74,0xae,0xec,0x0d,0x0f,0x1e,0x3e,0xad,0xb2,0x1c,0x10,0x79,0xf1,0xf4,0xf0,0x60,0xac,0xf2, + 0xd0,0x4a,0xe9,0xec,0xc2,0x5f,0xd8,0xdf,0xf8,0x40,0x7e,0xcc,0x7a,0x23,0xb8,0x57,0x13,0xad,0x19,0x15, + 0x4a,0xec,0xa9,0xf5,0xfc,0x96,0x85,0xad,0x84,0x8a,0x3b,0x9c,0x14,0xaa,0xd3,0xd2,0xa7,0x43,0x52,0xf9, + 0x64,0xe2,0xd3,0x5b,0xbc,0xc4,0x20,0x8c,0x08,0x8c,0xb3,0x01,0x5d,0x30,0xe7,0x5c,0xb2,0xff,0x10,0x17, + 0x88,0x0e,0xf9,0x2b,0x7a,0x62,0x11,0x62,0x73,0x60,0xf0,0x07,0xec,0xfb,0x89,0x17,0x92,0xb1,0x37,0x16, + 0xc0,0x13,0x9a,0x6b,0xea,0xab,0xa0,0xe8,0x68,0x67,0xc1,0xad,0x49,0x3c,0x35,0x5d,0x0e,0x4a,0xee,0x04, + 0xc3,0x15,0x3f,0xf1,0x96,0xf5,0xb3,0x34,0x75,0x57,0x4b,0x87,0x05,0x37,0x7c,0x7c,0xba,0x19,0x65,0x39, + 0x96,0xfa,0xcd,0x46,0x39,0xe1,0x2e,0xe2,0x7b,0x3e,0x7c,0x1d,0x42,0x99,0x5f,0x5d,0xc7,0x7c,0xd0,0x97, + 0x50,0xee,0xeb,0x46,0x14,0x1a,0xb9,0xa6,0x51,0x92,0x43,0xff,0xb5,0xd8,0xbf,0x9d,0x09,0x31,0x48,0xc7, + 0x5f,0x4d,0x50,0x76,0xc6,0x03,0x94,0x79,0x38,0x1b,0x1c,0x8b,0xc0,0xf6,0x44,0xce,0x83,0xd3,0xc6,0x39, + 0x7c,0x06,0xd5,0x5f,0x22,0x5c,0x34,0xfe,0xd3,0x00,0x7b,0x15,0xea,0x34,0x82,0x01,0x50,0x4c,0xc3,0xab, + 0x61,0x75,0x2e,0x3e,0x25,0xb0,0x78,0xda,0xc5,0xbb,0x3c,0xb5,0x78,0x97,0xa7,0x63,0xf7,0x8a,0x7b,0x72, + 0x25,0x8e,0xef,0xb9,0xab,0x07,0x55,0x25,0x8f,0xa9,0x92,0xc7,0x1d,0x9c,0xef,0xe3,0x8a,0xf3,0x7d,0xcc, + 0x9c,0xef,0x95,0x40,0xd2,0xdb,0xf0,0xaa,0x85,0x5b,0x51,0xfd,0xdb,0x01,0xeb,0x08,0x57,0x26,0x0f,0x77, + 0xc2,0xfd,0xe1,0x9d,0x87,0x6f,0x89,0x45,0x34,0xf6,0x2a,0x77,0xe0,0xfe,0x19,0x09,0x87,0x77,0xc6,0x9a, + 0xf6,0x7e,0x12,0xa3,0x7f,0x57,0x54,0xab,0x0a,0x75,0x0b,0xdf,0xae,0x7c,0x6e,0x81,0xe5,0xdb,0xf3,0xf7, + 0xd4,0x81,0x45,0xfc,0x0f,0x5c,0x02,0xe7,0x95,0xb5,0x98,0xac,0xdf,0xd2,0xf3,0x79,0x4c,0xbc,0x14,0xaf, + 0x41,0xfa,0x9b,0x7c,0xee,0xb5,0xda,0x68,0xc1,0x32,0xf1,0xd5,0xfe,0x0b,0x0e,0x4f,0x13,0xff,0x63,0xe2, + 0x1f,0x24,0xfe,0x79,0xe2,0x7f,0x9b,0xf8,0xcf,0xd2,0x91,0x96,0xe6,0xbf,0x2f,0x7d,0x2d,0x58,0xc3,0xb3, + 0xc0,0x53,0xe3,0xfa,0x6f,0x4b,0xe2,0x7a,0x89,0x95,0xc5,0x59,0x76,0x35,0x7a,0x5d,0x4a,0x74,0x33,0xb8, + 0xcd,0x5c,0x07,0xd7,0xeb,0xb1,0x76,0xac,0x7c,0x91,0xc0,0x8b,0xf9,0xcb,0x94,0x68,0x41,0x7d,0xc9,0xd1, + 0x0e,0x2f,0x22,0xf7,0xe3,0x54,0xfb,0xe4,0x2c,0x4a,0x4f,0x63,0xc7,0x36,0x4f,0x15,0x4d,0xfc,0xaa,0x30, + 0x4b,0xe9,0x95,0x70,0x6d,0xc8,0xaa,0xbe,0x97,0x2a,0x2a,0xe2,0xcf,0xe8,0x83,0xd2,0x37,0xd3,0xae,0xd3, + 0xdf,0x25,0x70,0xaa,0x86,0xd5,0x89,0xa7,0x8d,0x0b,0x51,0x08,0x91,0xf4,0xcd,0xbc,0x09,0xeb,0x28,0x3c, + 0xc9,0xf6,0xf6,0x16,0xff,0x12,0x23,0xa6,0xd4,0x2c,0x47,0x3f,0xc0,0xd1,0x91,0x39,0xcc,0x6b,0x3d,0x7c, + 0x67,0xb1,0x14,0x62,0xd4,0x35,0x55,0xa2,0xa4,0xb5,0x17,0x3c,0x2b,0xe5,0xd9,0xf6,0xf6,0x64,0x6a,0x25, + 0x7c,0x81,0xc0,0x6b,0xda,0xfe,0x44,0x2b,0x7d,0x3e,0x2f,0x21,0x03,0x73,0xb4,0xe6,0x88,0xe9,0x1d,0x9d, + 0xbb,0x89,0x2b,0xb1,0xe3,0x3c,0x4f,0x79,0xf2,0x7a,0xa9,0x23,0xc7,0x86,0x65,0x15,0x45,0xd6,0xb7,0x9e, + 0xd9,0xaf,0x23,0xab,0x16,0xb7,0xe7,0x5d,0x4f,0xf7,0x4b,0xea,0xd6,0xaf,0xe9,0xa6,0x4c,0x18,0x9b,0x48, + 0x65,0x09,0x45,0xc2,0x4b,0xff,0x2b,0x1e,0xc5,0x8d,0x39,0xf9,0xe6,0x83,0xaa,0x45,0xc4,0x1d,0xee,0xa9, + 0x2c,0x12,0xf0,0x10,0xee,0x84,0x9b,0xf3,0xd5,0xba,0xab,0xe6,0xa0,0xed,0xf5,0xb5,0xf1,0xae,0x5b,0x73, + 0x39,0xd4,0x77,0x96,0x66,0x46,0x45,0x9b,0xfa,0xf6,0xf9,0x1d,0x26,0xcd,0x18,0x80,0x95,0x6a,0xc4,0x16, + 0x54,0xcb,0xd9,0x89,0xe5,0x5a,0x66,0x59,0xab,0x57,0x8c,0x4a,0x31,0x9f,0xde,0x18,0x3e,0xf0,0x27,0x74, + 0x10,0x00,0x1f,0xa8,0x9c,0x7c,0x39,0x4e,0x34,0xce,0x3b,0xbc,0x6c,0x6f,0xd3,0x77,0xf5,0x01,0x98,0x5e, + 0x43,0xac,0x5a,0x05,0xf6,0xd4,0xf8,0x0b,0xc1,0xab,0x04,0xf6,0x7c,0x97,0xf8,0xd8,0x59,0x81,0xa8,0xc5, + 0x36,0xe7,0x47,0x59,0x1c,0xeb,0xca,0x10,0x0b,0xf0,0x57,0xbe,0x1a,0x55,0xaa,0x25,0xe2,0x42,0xc5,0x12, + 0xa8,0x73,0x80,0xfa,0x63,0x9a,0x99,0x3c,0x39,0x85,0x27,0xd8,0x67,0x49,0x01,0xe5,0xc8,0xd0,0x49,0x69, + 0x1d,0x94,0xce,0x1d,0xdf,0xa9,0x4e,0xe5,0x03,0xc2,0xc5,0x37,0x92,0xe0,0xfc,0x21,0x19,0xb9,0x69,0xb5, + 0xed,0x71,0xc4,0xdd,0xa1,0x66,0xed,0xdd,0xd0,0x28,0x14,0x66,0x6b,0xcf,0x6b,0xd6,0x14,0xe6,0xa3,0x2c, + 0x90,0x96,0x3b,0xf5,0x0b,0x5a,0x23,0x1c,0xe6,0x8d,0x99,0x74,0x6f,0x1d,0x70,0xab,0xa3,0xf9,0xe8,0xb6, + 0xae,0x76,0x4d,0x10,0xad,0xe5,0xeb,0x5b,0x8a,0xa9,0x81,0x74,0x0e,0xb3,0xab,0x4a,0x35,0x72,0xa8,0x56, + 0xa4,0x1d,0x8b,0xab,0x18,0x02,0xde,0x8d,0xb7,0xf7,0x8f,0xa1,0xe6,0x7b,0x82,0x1a,0x36,0x0c,0x53,0xd6, + 0x5d,0x10,0x34,0x47,0x79,0xf0,0x24,0xcb,0xe0,0x0c,0xd7,0x9f,0x14,0x85,0x79,0x06,0x70,0xe9,0x6c,0x40, + 0x24,0xfa,0xd9,0xba,0x9d,0x55,0x29,0xd6,0xdd,0xaa,0x9d,0x47,0xdf,0xab,0xda,0xb9,0x1a,0x69,0xad,0x8b, + 0x5b,0x3b,0x6f,0x47,0xba,0x74,0xb7,0x23,0x69,0x63,0xde,0x46,0x83,0xd3,0x65,0xce,0xf7,0x82,0xc1,0xa1, + 0xd8,0xb5,0xf9,0x2a,0x5d,0x14,0x3b,0xc6,0x6b,0xff,0x4f,0x3d,0x41,0xb5,0xcb,0x5a,0xb1,0x96,0xfb,0x3e, + 0xa9,0x99,0xd0,0x35,0x6d,0xc1,0x5a,0xc6,0xe3,0x6d,0x9b,0x30,0xe5,0x39,0x8b,0x05,0xab,0x72,0x4b,0xdf, + 0x1d,0xdc,0x8f,0x51,0xf8,0x6f,0x90,0x10,0x12,0xd8,0xda,0x31,0x5b,0x95,0x89,0x18,0xd6,0x06,0x6a,0x07, + 0x2a,0x7e,0xab,0x5d,0x87,0x08,0xfe,0x43,0xcd,0x11,0x0e,0xbd,0xca,0x7d,0xa5,0x75,0x69,0x66,0xe8,0x6e, + 0xdb,0x76,0xb4,0x12,0x08,0x28,0xfb,0xb1,0x27,0x25,0x3c,0xf3,0xb0,0xb7,0x81,0xea,0x93,0xf6,0xb2,0xca, + 0x14,0x1a,0xcd,0x9d,0xfe,0xf2,0x0b,0x50,0x54,0xa6,0x23,0xc0,0x3a,0xc7,0xc7,0x55,0x73,0x3b,0x4e,0xdf, + 0xb8,0x95,0xeb,0x3b,0x3b,0xce,0x30,0x62,0x31,0x9c,0x28,0xd9,0xf2,0xf3,0x28,0xb2,0x02,0x9c,0x16,0x7d, + 0x1c,0x10,0x78,0x74,0x82,0xa2,0xcf,0xb2,0xdc,0x20,0x77,0x23,0x91,0x7f,0xe0,0x02,0x5a,0xdd,0x7d,0x48, + 0x8a,0x31,0x28,0x2a,0xbc,0x11,0xa7,0x70,0x19,0xfc,0xf2,0x5f,0x09,0x9b,0x11,0xba,0x72,0x81,0x08,0xfb, + 0xca,0x81,0x72,0x34,0x43,0x53,0x5b,0x75,0x31,0x7c,0xa7,0x2d,0x8b,0xe6,0x35,0x63,0xf7,0x25,0x26,0x41, + 0xa2,0x4c,0x48,0x41,0x2b,0xec,0x3c,0xae,0x53,0x1b,0x49,0x9b,0x10,0xbe,0x03,0xdc,0x22,0xc8,0x13,0xd0, + 0xc5,0xc7,0x45,0x54,0xc3,0x3a,0x9e,0xbf,0xdc,0xde,0x5e,0x2a,0x1c,0xe5,0x9e,0x85,0x91,0x7f,0x11,0x2e, + 0xfd,0x0b,0x0c,0x81,0x30,0xda,0x19,0x7e,0x57,0xab,0x0b,0xcc,0x05,0xbf,0x0a,0x7d,0xb7,0xf5,0x1b,0x4b, + 0x13,0xdc,0xad,0x65,0x97,0xcf,0xd7,0xae,0x54,0xed,0xd2,0xb3,0x62,0xc1,0x05,0xb0,0x66,0xe1,0xb2,0x09, + 0x24,0x62,0x30,0x32,0xe1,0xb1,0x3b,0xd9,0xb2,0xdc,0x49,0x58,0x73,0x3f,0xa9,0x3b,0x6f,0x50,0x50,0x00, + 0xbc,0xf9,0x83,0x3b,0xf3,0x9d,0x68,0x46,0x50,0xfd,0x93,0xa8,0x57,0xd8,0xa6,0xa2,0x56,0x4e,0xc4,0x4b, + 0xaf,0xfb,0xb1,0x5c,0x7b,0xbe,0x06,0x1f,0x34,0x96,0xa4,0x3b,0x99,0x98,0x02,0x88,0xc0,0xe3,0x37,0xb7, + 0x12,0x56,0x89,0x5b,0xb3,0xa9,0xbf,0xb0,0xcd,0xf6,0xe0,0x1f,0x78,0xf8,0x03,0xa4,0x31,0xdc,0xfc,0xb7, + 0xa2,0x31,0xb2,0xf0,0x7c,0x4e,0x13,0x8c,0x85,0xd1,0xc3,0x20,0x4d,0xa5,0xcf,0xa0,0x11,0x46,0x68,0xb1, + 0xd9,0x55,0x5a,0xb2,0x69,0x18,0xaf,0x2b,0xb2,0x39,0x13,0xa6,0xc5,0xbf,0x20,0xf4,0xf9,0xef,0x04,0x93, + 0x02,0x78,0x54,0x78,0x83,0x2f,0xf4,0x2d,0x04,0x03,0x0c,0xeb,0x0d,0xc5,0xa4,0xaf,0xf7,0x6f,0xe6,0x62, + 0xc5,0x9f,0xfb,0x8f,0x84,0x57,0x2a,0x85,0x8a,0xe0,0x4f,0xa2,0xa8,0xcd,0xdb,0x77,0x50,0x0e,0x0e,0xae, + 0x05,0xc9,0xfc,0x3b,0xe9,0x42,0x2c,0x0d,0xcb,0x76,0xc6,0x0f,0xb6,0x91,0x88,0x2c,0x9d,0x04,0xca,0x5d, + 0x44,0x29,0x82,0xe0,0x76,0xbb,0x43,0xe2,0x42,0x8b,0x3c,0xbe,0x34,0x8e,0x0b,0xc5,0x48,0x54,0x0b,0x9f, + 0x93,0x2e,0xb4,0xc5,0x1e,0x55,0xb3,0x7a,0x4e,0xf0,0xd9,0x51,0xb5,0x6b,0x0a,0x62,0x8b,0x8a,0x87,0x86, + 0x2b,0x2f,0xb4,0xe8,0x71,0x12,0x26,0x87,0xc5,0x78,0x38,0x91,0xf8,0xd1,0xe8,0xc5,0x56,0x38,0x11,0xe1, + 0x3b,0x38,0x03,0xb5,0x93,0x27,0xf5,0x9d,0x4c,0xc8,0xe3,0x12,0x37,0x22,0x0e,0x60,0x3b,0x33,0xd6,0xa2, + 0xe9,0x21,0xe7,0x1b,0x87,0x13,0x9f,0x4a,0xa8,0xed,0x3c,0xe9,0xde,0xce,0x91,0x07,0xb9,0x87,0xe5,0x4d, + 0x7c,0x8e,0x0e,0x2f,0xf1,0x67,0x46,0x5d,0x9d,0x55,0x12,0xb0,0x99,0xee,0xea,0x34,0xcc,0x0f,0x67,0xe3, + 0xe1,0xb4,0xb5,0x0f,0x22,0x5f,0xa5,0x11,0xcd,0x1a,0x4e,0x99,0xdc,0x3f,0x8d,0xcb,0x27,0xd9,0x92,0xc5, + 0x6c,0x4f,0xe7,0x09,0x01,0xd8,0xcf,0x34,0xd7,0xf0,0xc3,0x7e,0x38,0xe5,0x2e,0x8e,0xe6,0xd2,0xeb,0xa9, + 0x17,0x2c,0xf5,0xd3,0x5a,0x59,0xe0,0x2e,0xca,0x90,0x75,0x2a,0x21,0x87,0xd4,0x56,0xd2,0xc2,0x3b,0x4d, + 0xc3,0xa5,0x89,0x54,0xa0,0x73,0x64,0x74,0xfa,0xdb,0xde,0x39,0x5a,0xf6,0xd7,0xdd,0x9e,0x06,0x4c,0x5b, + 0xd0,0xe2,0x60,0x39,0x98,0xe5,0xa8,0xc3,0x7c,0xd4,0x34,0xd5,0x74,0x83,0x45,0xb3,0x0d,0x28,0x7e,0xa9, + 0xcf,0x1e,0x05,0xf2,0xc6,0x3f,0x3f,0x1b,0x78,0x39,0x97,0x88,0xf8,0xbc,0xc3,0xca,0x96,0x43,0xcd,0x17, + 0x2b,0x4b,0xa6,0xb3,0xa8,0x78,0x49,0xe9,0x6e,0xac,0x0c,0xf4,0xfd,0x52,0xc8,0x65,0xad,0x62,0xf8,0x3d, + 0xb3,0x09,0xfa,0xed,0xcf,0xda,0xdb,0xbf,0xb5,0xc3,0x7f,0x38,0xef,0x98,0x13,0xaa,0x34,0x0c,0x1e,0x74, + 0xf3,0x07,0xd9,0x6c,0x56,0xc4,0xe5,0xf7,0x71,0x72,0x7a,0x56,0x5a,0xa5,0x9a,0x4a,0x8b,0xb2,0x7e,0x3c, + 0xc7,0x95,0x0b,0x31,0xf4,0x04,0xb6,0x95,0x4c,0x3b,0x0d,0x0f,0x40,0xbc,0xc1,0xf9,0xd9,0xc0,0xe8,0xfd, + 0x84,0xf9,0xc0,0x52,0x90,0x52,0x29,0x15,0x60,0x3c,0x53,0xc4,0x04,0x07,0x9d,0x6e,0x73,0x39,0xcf,0x13, + 0x78,0x02,0xe5,0xe9,0xaa,0x22,0x0e,0xf6,0x20,0xf2,0xb9,0x26,0xfa,0x78,0x6b,0xd7,0x34,0x73,0x47,0x05, + 0xee,0x94,0xa8,0x41,0x3a,0x5e,0x97,0xc7,0x5e,0x74,0x05,0x30,0x5a,0x15,0xb3,0xce,0x83,0xae,0x9b,0xe1, + 0xe4,0x5c,0xba,0xcf,0x66,0xea,0x60,0x9c,0x94,0x8b,0xb6,0xe0,0x5a,0x4d,0x7e,0x83,0x2f,0xc7,0xa1,0xfe, + 0x3e,0x31,0x22,0xc1,0xea,0x54,0x57,0xd9,0xeb,0x48,0x5e,0x25,0x0e,0xf5,0xcc,0x4d,0x70,0x61,0xc6,0x52, + 0x1b,0x8f,0xd6,0xda,0x3a,0xe9,0x19,0x30,0x70,0x32,0x76,0xa5,0x76,0xae,0xce,0x49,0x29,0xba,0x50,0x9e, + 0xff,0x51,0x2d,0x40,0xda,0x49,0x35,0x1b,0xa7,0x18,0x35,0xe5,0x88,0x54,0x73,0x76,0x1f,0x44,0x11,0xd5, + 0xb6,0xa5,0xa3,0xac,0x35,0x8d,0x2b,0x0d,0x47,0x6a,0x30,0x21,0x8b,0xc5,0xcc,0xca,0xae,0x61,0x25,0xfe, + 0x86,0x2f,0xec,0x67,0xc9,0xe9,0xc0,0x8a,0x8c,0x1b,0xfe,0x9e,0xfb,0xd5,0x87,0x5a,0x4c,0xde,0xb0,0x48, + 0x3a,0x3f,0x41,0xa8,0x16,0x7e,0x67,0x17,0x6b,0xc4,0xe4,0x0d,0x7f,0x8e,0x6b,0x05,0xeb,0x41,0x7c,0x5b, + 0x31,0x52,0x9e,0x55,0x14,0x1b,0x56,0xaa,0x80,0x29,0x43,0x6d,0xed,0x40,0xf0,0xd5,0x25,0x6f,0x0a,0xd5, + 0x42,0x45,0x5f,0xaf,0x25,0xbf,0x28,0xeb,0xe3,0xdb,0x2c,0x11,0xd8,0x9a,0x5a,0x61,0xe3,0x1d,0x07,0xa6, + 0xda,0x23,0x2e,0xce,0x0e,0xcc,0x2b,0x8b,0x5f,0xa3,0xec,0x07,0xc9,0x76,0x7d,0x10,0xf0,0x85,0xbc,0x31, + 0xab,0x36,0x92,0x90,0x3a,0x77,0xdb,0xa5,0xd5,0x96,0x28,0xed,0x80,0x4d,0x6b,0xff,0x12,0x86,0x95,0xc6, + 0x85,0xa2,0xa1,0xba,0x88,0x19,0xf6,0xea,0xdf,0x2c,0x23,0xf6,0x1f,0x13,0xb6,0x9a,0xb4,0x5c,0x97,0x68, + 0x84,0x09,0xa5,0xc2,0x27,0x49,0x70,0x5a,0xff,0x2c,0xae,0xe8,0xba,0x23,0x65,0xb5,0x15,0xe5,0xd9,0x7b, + 0x8f,0xed,0x1b,0x5c,0x0e,0x6f,0xe6,0xc9,0x1a,0x69,0x61,0x9a,0xb3,0xef,0x97,0xb8,0x1e,0x06,0xbb,0x32, + 0x71,0xd7,0x1e,0x06,0x6b,0x1c,0xa4,0xf2,0xe4,0x54,0x39,0x1d,0x71,0xc5,0x74,0xe3,0xd4,0xe8,0x0f,0xf9, + 0x88,0xf0,0xeb,0x2b,0x8b,0xb5,0xca,0x29,0x4c,0xdc,0xf6,0xc0,0x1d,0xd7,0x3d,0x70,0x6b,0x87,0xc2,0x50, + 0x83,0xa2,0xa9,0xf8,0x15,0xaa,0x54,0xda,0xf9,0x3d,0xf4,0xf9,0xdf,0x54,0x1e,0x09,0x5c,0xab,0x4f,0xdf, + 0x42,0x29,0x44,0xc2,0x60,0x6f,0x6f,0xff,0x90,0xe2,0xff,0x01,0xdc,0x68,0x81,0x6e,0x83,0x2a,0xf3,0x1b, + 0xd8,0x65,0xec,0xc9,0xc6,0xfc,0x21,0xf1,0xbf,0x83,0x32,0xe5,0xf5,0xd1,0xb5,0xeb,0x8e,0x82,0xc1,0xea, + 0x28,0xf5,0xfa,0x23,0xef,0x68,0x7d,0xb4,0xde,0x3d,0xf5,0xff,0x05,0xed,0xf7,0x9d,0xc1,0x17,0xfd,0xd1, + 0x1f,0x77,0xae,0xd7,0xae,0xb7,0x3a,0x3c,0x1a,0x1f,0xed,0x1e,0x1d,0x8d,0xe9,0xdb,0xef,0xdd,0x2a,0xec, + 0x7c,0x84,0x68,0xed,0xed,0x7f,0x25,0xbe,0x73,0x74,0x74,0x67,0xdb,0x61,0xf3,0x65,0x28,0x9a,0xb7,0xbf, + 0xd8,0xb3,0x2b,0xfe,0x52,0xdc,0xb2,0xef,0xa8,0xce,0x48,0x6f,0x9c,0x7e,0xea,0x3b,0xa7,0x90,0x04,0xfa, + 0xbf,0xc1,0xcc,0x8f,0xc5,0xfb,0xf0,0x69,0x1a,0x1c,0x3a,0x96,0xdc,0xdf,0x19,0xfb,0x06,0x65,0x37,0xcc, + 0x3c,0xd8,0xb9,0xd6,0x00,0x5e,0x20,0x14,0x8a,0x4c,0x44,0x5e,0x23,0x06,0xb7,0x43,0x11,0x6c,0x59,0x55, + 0x85,0x3f,0xbc,0x7d,0xfd,0x8a,0x12,0x00,0xd8,0x88,0xe1,0x98,0x6a,0x37,0xe6,0x61,0x6e,0x15,0x84,0xa3, + 0x5c,0x88,0x52,0xa0,0x14,0x83,0x84,0x27,0x09,0x13,0x1c,0x61,0x8e,0xe5,0x8f,0x53,0xb8,0x67,0xed,0xe0, + 0x3e,0x1d,0xc7,0x52,0xed,0xaf,0x9a,0xc4,0x65,0x59,0x3f,0xb4,0xc7,0x13,0x38,0xfd,0x5a,0x8e,0xbe,0xe3, + 0xc3,0x4a,0xb3,0xd6,0x96,0x2a,0x35,0x31,0xf9,0xed,0x8f,0x52,0xa0,0x24,0xba,0xf8,0x3f,0xbb,0xa7,0x8d, + 0xaf,0x48,0x3e,0x7f,0xda,0x18,0xfd,0x37,0xa6,0x8d,0xab,0x6a,0x4e,0xdb,0xd3,0x04,0x33,0x57,0x9f,0x3a, + 0x29,0x6c,0x4d,0x1d,0x27,0xfc,0xd5,0xa9,0xe3,0x66,0x6b,0x53,0xc7,0x29,0xd6,0xd4,0xf1,0xbb,0x9e,0x3a, + 0xbb,0x2d,0x53,0x0a,0xf9,0x5d,0x29,0x50,0x7d,0xed,0xc3,0xea,0x40,0x26,0x2f,0xce,0xf8,0xb2,0x09,0x96, + 0x7f,0x6c,0x05,0x0a,0x73,0xca,0x6c,0xae,0xac,0x1a,0xc5,0x74,0x4f,0x59,0x63,0x8a,0x85,0x61,0x52,0x30, + 0x66,0xc6,0xd5,0x13,0x0d,0xc5,0xb2,0x17,0xad,0x99,0x3e,0x8a,0x81,0xe4,0xd5,0x09,0xdc,0x0e,0x95,0x99, + 0xd8,0x4c,0x2b,0x0b,0x47,0x98,0x7f,0x96,0x30,0xed,0xd4,0x62,0xce,0x05,0x9b,0x38,0xc2,0x3c,0x90,0x0d, + 0x1d,0xc5,0xf4,0x31,0x57,0x35,0x61,0x73,0x49,0x0f,0x3b,0x4d,0x50,0xa5,0xcb,0x95,0xb1,0x21,0x5b,0x4c, + 0x76,0x1a,0x56,0xa2,0xd9,0xba,0x65,0x23,0xdb,0xa2,0x2a,0x43,0x54,0x6d,0x49,0xd9,0xb2,0x48,0x55,0x36, + 0xae,0x6c,0x62,0xd9,0x61,0xe1,0x8a,0xbe,0x6a,0xfb,0x57,0x69,0x87,0x26,0x8b,0xed,0x6a,0x95,0x0d,0x26, + 0x4c,0x58,0xb5,0xf1,0x24,0x4f,0x53,0xd3,0x1c,0x53,0xa6,0x4d,0xcc,0x53,0xd5,0xe4,0x89,0x21,0x85,0x36, + 0xb5,0xac,0xac,0x40,0x1b,0x53,0xc4,0x96,0xb9,0x34,0x51,0x3c,0xd7,0x50,0x03,0xcc,0xc2,0xdd,0x3f,0x8e, + 0x8a,0x2f,0xdc,0x43,0xfa,0xeb,0xdc,0x7d,0xf8,0xe8,0x68,0x37,0x1c,0xf7,0x3d,0xc2,0x35,0x48,0x0c,0x3d, + 0xfc,0x1d,0x05,0x0e,0x7d,0x76,0xc6,0x5f,0x10,0xda,0x59,0xdd,0xa5,0xc7,0xbb,0xf4,0x78,0xb7,0xbf,0x52, + 0x65,0xc2,0x87,0x8f,0xfe,0x8b,0x8a,0x78,0xde,0x68,0xd7,0x4f,0xb2,0xd0,0x39,0x8c,0x76,0xfe,0x7c,0xbc, + 0xf3,0xfb,0xf1,0xf8,0xf0,0xe8,0xe8,0xea,0xe8,0x68,0xe7,0xe8,0x68,0x30,0xfe,0xc2,0xf1,0x33,0xfa,0x04, + 0x1c,0xe6,0xf4,0x93,0xac,0x4f,0x98,0x2e,0xf0,0x46,0xf2,0xe8,0x39,0x7e,0x94,0x85,0x16,0xb2,0x73,0xfe, + 0x78,0xe8,0xf4,0xb3,0x8c,0x38,0x34,0xdd,0xb9,0xa3,0xdd,0x91,0xf7,0x68,0x97,0xd6,0xa5,0x91,0xed,0xe8, + 0x68,0x17,0x39,0xfb,0xce,0xe1,0x1f,0x8f,0xc6,0x5f,0x3c,0xa2,0xf1,0xcc,0x51,0xe4,0xe1,0xd6,0xb3,0xd7, + 0x4f,0x0f,0x7e,0x7b,0xf3,0x6d,0x0f,0xe9,0xfd,0x47,0xbb,0x89,0xbf,0x94,0x74,0x58,0xf0,0xcc,0xe4,0xf1, + 0xe8,0x70,0xd7,0x5f,0x64,0xb8,0x3b,0x76,0x3e,0x38,0x06,0x0b,0xef,0x7e,0x70,0x07,0x34,0x90,0x53,0xbf, + 0xbe,0xe5,0x29,0xa3,0x03,0xe6,0xbe,0x54,0x57,0x2f,0x67,0x99,0x7f,0x99,0x11,0x2b,0xed,0x9f,0x66,0xfe, + 0xc7,0x8c,0x20,0xc8,0x3f,0xce,0xfc,0xab,0xcc,0x3f,0xc8,0xfc,0xf3,0xcc,0x7f,0x9a,0xf9,0x1f,0x32,0xff, + 0x31,0x83,0xa0,0xb2,0xdf,0x55,0x86,0xd1,0xfa,0xd6,0x83,0x0f,0xc1,0xb7,0x19,0x6e,0x8e,0xef,0xd0,0x5f, + 0x67,0x7b,0x5e,0x0e,0x9d,0xc0,0x79,0x48,0x9b,0x72,0xfb,0x94,0x1f,0x1f,0xe1,0x11,0xf0,0x49,0x2f,0x77, + 0x9d,0xbb,0xf4,0x12,0x5d,0x2c,0xf0,0x61,0x1b,0x1f,0xfe,0x63,0x7f,0x0f,0xcf,0x47,0x29,0xbf,0x7c,0xc3, + 0xcf,0xa5,0xb3,0xf6,0x5f,0xd3,0xd8,0xb6,0x69,0x92,0x89,0x01,0x3e,0x2d,0x57,0x28,0xbe,0xa2,0x62,0xde, + 0x90,0x06,0xf4,0x6d,0xe7,0xa7,0x15,0xd5,0xb4,0xfa,0x8f,0x6f,0x38,0xc7,0x1b,0xee,0x30,0x34,0x1f,0xea, + 0xfd,0x7c,0x9f,0x75,0x93,0x16,0x84,0x65,0xde,0x64,0xe2,0x43,0xe1,0x88,0xe5,0x2c,0x25,0x3c,0x17,0xf9, + 0xcf,0x30,0xbf,0xff,0x5c,0xfd,0x71,0xb9,0x93,0xa5,0xc1,0xae,0xff,0x02,0xaf,0x97,0x3b,0x2b,0x24,0xd1, + 0xeb,0x4f,0xf4,0xea,0x0e,0xbe,0xa0,0x03,0xb5,0xe8,0x53,0x6f,0x92,0x74,0x95,0xcd,0xf8,0x79,0xf0,0x85, + 0xb7,0xeb,0x3f,0xa7,0xaf,0x3e,0xc1,0x95,0x4f,0xc7,0xed,0x98,0xa0,0x8c,0x72,0xd8,0xaf,0xde,0xe8,0xce, + 0xae,0xff,0x8a,0xa1,0xc2,0x5d,0x1d,0x79,0x77,0xa8,0xd3,0x2f,0x33,0x36,0x0f,0xfb,0x82,0x5e,0xfc,0x9f, + 0xf1,0x25,0x40,0xcb,0x2c,0x7a,0xde,0xf5,0x7f,0xa5,0x84,0xa3,0xc1,0xe1,0x1f,0x83,0x71,0x9f,0xb2,0x3e, + 0xc9,0x3a,0x8d,0x77,0xdc,0x1f,0x92,0xf0,0x87,0xe4,0x16,0x43,0x25,0xaf,0xd2,0x86,0x08,0x63,0xff,0x87, + 0xc4,0x36,0x4e,0xa4,0x43,0xf8,0x1d,0x5a,0xfe,0x70,0x31,0x4f,0x8b,0xe0,0xd5,0xdb,0xa3,0x69,0x7f,0xd7, + 0xff,0x05,0x29,0xfc,0x4c,0xfd,0xf8,0x3e,0x0b,0x0f,0x7f,0x4b,0xe8,0xcc,0xf1,0xaf,0x69,0x7a,0x0f,0x6e, + 0x38,0x5b,0x44,0x96,0xa4,0xbd,0x4a,0xc8,0xd5,0x90,0x66,0x61,0xf8,0x72,0xff,0x65,0xb4,0x60,0x91,0xec, + 0xa1,0x73,0xb9,0xc3,0x97,0x29,0xce,0x18,0xd2,0x59,0xbc,0xf2,0xa0,0x41,0x10,0x3a,0xe3,0xd5,0x8a,0x52, + 0xd4,0xb3,0x56,0x0d,0x55,0xa7,0x0d,0x27,0xc2,0x73,0x97,0x9c,0x5c,0x97,0x3b,0xc9,0x4c,0x96,0x39,0x0b, + 0x93,0x91,0x43,0x75,0xd1,0xae,0xc4,0xa6,0x0c,0x88,0x45,0x8c,0x42,0xa1,0xc9,0x75,0x56,0x5c,0xe7,0x2a, + 0xbb,0xe5,0x5a,0x9a,0xa9,0x63,0x12,0xfe,0xc6,0x14,0xf9,0xbf,0x4a,0xf6,0x95,0xc5,0xda,0x46,0xdc,0xa0, + 0x2f,0xae,0x33,0x4e,0xb2,0x0f,0xd4,0xf6,0x77,0x48,0x87,0xd2,0x3e,0x68,0xd8,0x09,0x21,0x68,0x45,0xee, + 0x0d,0x92,0x19,0xe1,0x08,0xa7,0x9f,0x53,0xfb,0x34,0xfc,0xbb,0xba,0xc8,0x5d,0xda,0xe4,0xfe,0xef,0x28, + 0x74,0x1d,0x7f,0x58,0x04,0xc8,0x27,0xf8,0x3b,0x98,0xa8,0xfd,0x38,0x57,0xed,0x52,0xa7,0xe6,0xe8,0x14, + 0xcd,0xae,0x74,0xa8,0xe4,0x04,0xd5,0x85,0x3c,0x9a,0x26,0x99,0xb4,0x3f,0x47,0xfb,0x55,0x95,0x76,0xab, + 0x9c,0x8b,0x9b,0x94,0x36,0xe6,0xaa,0x8d,0xa5,0x6a,0x43,0xfb,0x2c,0x2a,0xdd,0x65,0xb3,0x29,0x4a,0x90, + 0x49,0x87,0xf1,0xc3,0x77,0x78,0xaf,0xb5,0x92,0xa8,0x1a,0x97,0x70,0x8f,0x3f,0x9a,0x0c,0x30,0x75,0x08, + 0x45,0x07,0x4a,0x47,0xde,0x68,0x02,0xe0,0x84,0x1a,0x9c,0xdd,0xd8,0xff,0x93,0x30,0x03,0x15,0x23,0x8e, + 0x01,0x60,0x07,0xf9,0xbd,0xbe,0xe1,0xfe,0x3e,0xf3,0x2b,0x56,0x22,0x50,0x97,0x6a,0xb7,0x5d,0xa3,0xd9, + 0x77,0xa8,0x99,0xc0,0x16,0x7b,0xf7,0xd3,0x60,0xc5,0x77,0xaf,0xe2,0xde,0xd0,0xf0,0x22,0x46,0x86,0x5e, + 0x2a,0x65,0x2e,0x5f,0x85,0xd6,0xad,0xee,0x2f,0x33,0x6f,0xab,0xbb,0xe5,0xbb,0xac,0x22,0x70,0x47,0x7b, + 0xe0,0x78,0x17,0xcd,0x7b,0x61,0xaf,0x11,0x59,0x5d,0x5d,0x29,0xc8,0x25,0xe6,0x1d,0x76,0x20,0xab,0x22, + 0x36,0x9a,0x0b,0x4d,0x53,0x79,0x56,0x99,0xc7,0x0f,0x74,0xa5,0x6b,0x0f,0x77,0xa0,0xae,0x9d,0x07,0xad, + 0x5e,0x72,0x5b,0xce,0xb1,0xb8,0x7b,0x81,0x4a,0x50,0xd6,0x1b,0x51,0x31,0x49,0xe8,0x05,0xf4,0xa8,0xae, + 0xde,0xa4,0xc2,0xbb,0x7d,0x97,0x63,0x30,0x88,0x1d,0xfd,0xc8,0x39,0x4e,0x5d,0xfa,0x8e,0x3d,0x40,0x3f, + 0x10,0x12,0x11,0x08,0x38,0xc3,0xd4,0xbe,0xd1,0x84,0x02,0x7d,0xdf,0xe9,0x39,0xfd,0xa8,0x44,0xa8,0x9b, + 0x7a,0xdf,0xf5,0xa5,0x2a,0x35,0x5a,0x9f,0x80,0xa0,0xfe,0x4e,0xf8,0xd2,0xf1,0x0c,0x57,0xc4,0x66,0x3b, + 0x95,0x4d,0x68,0x85,0x07,0x32,0xc2,0xb0,0x66,0xfb,0xd0,0x7b,0xb4,0x69,0xca,0xad,0x41,0xd0,0x12,0xcb, + 0x7e,0x97,0x39,0xf0,0x56,0x2b,0x07,0xed,0x60,0x4f,0x2b,0x3c,0x90,0x2f,0xe3,0x9d,0xea,0x23,0x5e,0x1d, + 0xda,0xd6,0xf2,0x71,0x16,0x61,0x57,0x57,0x5f,0xf9,0xdd,0x19,0xfe,0x67,0x2c,0x33,0x20,0x4e,0x70,0x7c, + 0xa7,0x6e,0x4a,0xe2,0xf4,0x89,0x4d,0xf1,0x46,0xc7,0x89,0x3c,0xf9,0xb4,0x85,0xfa,0xcc,0x87,0x3b,0x7d, + 0x57,0xea,0x47,0xdf,0x47,0x4e,0xa0,0x72,0xd2,0xf4,0x06,0xc7,0xff,0x36,0x99,0x23,0x24,0x11,0x93,0x57, + 0x9f,0x66,0x47,0xa0,0x28,0x0a,0x25,0xdb,0x1d,0x70,0xaf,0xb5,0xc9,0xa6,0xa4,0x49,0x88,0xe4,0x81,0xea, + 0xd7,0xc8,0x95,0xba,0xd0,0x0c,0x71,0x08,0x1d,0xc6,0xb0,0x54,0x9d,0x42,0x8a,0x77,0xee,0x5c,0x52,0xc5, + 0xae,0x2c,0xb9,0xf4,0xd7,0x09,0x32,0x8f,0x1b,0x4a,0x42,0x1a,0x09,0x65,0xa5,0xc7,0x4b,0xae,0xc4,0x6e, + 0xc4,0xbb,0xa6,0x0c,0x0f,0xf7,0x18,0x5d,0x52,0xbf,0xa8,0x03,0x26,0xdc,0xf6,0x21,0xe5,0x1f,0x7b,0xa2, + 0xfb,0x82,0x5c,0x34,0x01,0xb5,0x6c,0xda,0xfd,0x0b,0x7d,0xf2,0x74,0x99,0x2a,0x9d,0x52,0xfb,0xfb,0xd0, + 0x23,0x90,0xf2,0x06,0xbe,0xee,0x4c,0x18,0x0e,0x9d,0x4f,0x83,0x16,0xc1,0x74,0x7f,0x13,0x54,0x5a,0xcb, + 0x6d,0x2d,0x96,0x4b,0x65,0x5a,0x93,0x86,0xd0,0x0d,0xf5,0xd5,0xe3,0xce,0x67,0x9f,0x02,0xe2,0x00,0x41, + 0x4b,0x27,0x64,0x23,0x56,0x69,0xe0,0x2b,0xc2,0x6b,0xec,0x3f,0x1e,0xa7,0x97,0x44,0x0d,0x86,0xdf,0x6d, + 0x35,0x2e,0x04,0x40,0x82,0x1d,0x37,0x1d,0x4b,0x5b,0x32,0x2b,0xe8,0x14,0x74,0xfb,0xfc,0x79,0x98,0x8d, + 0x74,0x2f,0x03,0xf5,0x01,0x3a,0x68,0x04,0xbd,0x81,0xea,0x95,0xbf,0x0c,0x1b,0xdb,0x5a,0xe6,0x67,0x08, + 0x74,0xdd,0xfd,0x4d,0x59,0x8d,0xc3,0x63,0x89,0xe4,0xe1,0x09,0x5a,0xf2,0xcc,0x0c,0xe5,0xce,0x8a,0x67, + 0x64,0xe9,0x0d,0x27,0x94,0x81,0x4e,0x3b,0x80,0x55,0xad,0x1e,0xa5,0x67,0x62,0x2e,0x29,0x87,0x4e,0x7f, + 0xe6,0xf9,0xb2,0x12,0xd2,0xbe,0xef,0xe8,0xfd,0xa3,0x66,0x7b,0xee,0xcf,0x2a,0xc9,0x8a,0x5b,0xac,0x56, + 0x50,0x98,0x96,0x75,0x38,0x99,0x2f,0xe9,0x74,0x72,0xea,0x57,0x57,0x8e,0x36,0x17,0xac,0x16,0x62,0xeb, + 0xdb,0xb4,0x2e,0x26,0x24,0x4c,0xda,0x89,0xfb,0xcd,0x2d,0x2c,0xd3,0x88,0x2d,0xc6,0xf8,0x52,0x34,0x18, + 0xa4,0xbb,0x16,0x89,0x04,0xe0,0x29,0xd0,0x6d,0xc9,0xc1,0x9d,0x5f,0x33,0xcf,0x73,0x73,0x15,0x86,0xe8, + 0xea,0xac,0x60,0x4d,0x8c,0xe5,0x1b,0xa2,0xa7,0xa2,0x2e,0x97,0x14,0x20,0x64,0x95,0x03,0x2e,0x08,0x2b, + 0x89,0x2b,0x42,0xbe,0x98,0xa8,0xf6,0x4a,0x4e,0x1a,0xfc,0x9e,0xc3,0xe1,0xce,0x93,0xf8,0xa7,0x78,0x56, + 0xbe,0x5e,0xc4,0x29,0xb2,0x94,0x99,0x5f,0x9b,0x8a,0xa0,0x48,0xfc,0x86,0x2c,0x34,0xf8,0x39,0xf6,0x2d, + 0xe1,0xc1,0xf7,0x19,0xf1,0x0f,0xd3,0xe5,0xa4,0x5b,0xe5,0x86,0x63,0x39,0xf2,0x2e,0xd7,0x01,0xb2,0x74, + 0xc8,0x3f,0x8f,0x3d,0x42,0x0c,0xde,0x67,0x09,0x81,0x89,0x8f,0x19,0xf9,0x77,0x37,0x89,0xda,0x83,0xa3, + 0x17,0x40,0x3b,0x9f,0xd9,0x80,0x7f,0x48,0xd6,0x7d,0xbd,0x13,0x7c,0xe2,0x5d,0x92,0x54,0xb9,0xf3,0xf0, + 0xcd,0xc5,0x98,0x44,0x17,0xea,0xbb,0xf1,0x08,0x3b,0x36,0x86,0x67,0x54,0x08,0x8c,0x7e,0x34,0x2c,0xdf, + 0xd1,0xd5,0x9d,0xe3,0x71,0x7f,0x75,0x44,0x14,0xb6,0x37,0xfe,0x62,0x74,0xe4,0x81,0xdd,0x0b,0x1f,0xad, + 0xfe,0xd0,0x3d,0xa0,0xd7,0x23,0x77,0xd7,0xff,0x41,0x95,0x38,0x24,0xb6,0x8e,0x98,0xbb,0xe3,0x3b,0x63, + 0x14,0x1d,0x83,0x33,0x24,0xea,0xba,0x91,0xb8,0x3a,0x3a,0xbc,0x4b,0xf4,0xfd,0xdd,0x31,0x3d,0x38,0xf4, + 0xe0,0xe0,0x81,0xc8,0x60,0xfc,0x34,0xf3,0x8e,0xbd,0x2f,0xa8,0x5a,0xa2,0xdc,0xbf,0x03,0xa9,0x53,0x4c, + 0x82,0x7b,0xff,0x80,0x33,0xa3,0xe0,0x1b,0x51,0xb3,0x08,0xf6,0xef,0xfb,0x32,0xdf,0xf7,0xef,0xf9,0xcb, + 0x45,0x70,0xff,0x6b,0xe2,0x90,0x67,0x65,0x70,0xff,0x1f,0x7e,0x8e,0xdb,0x93,0xe0,0xfe,0x37,0x3e,0xbc, + 0x60,0x07,0x0f,0xf6,0x7c,0xb9,0xc0,0x0c,0x0e,0xbf,0xf6,0x1f,0x7c,0x45,0x4c,0xc8,0xbf,0xb2,0x2e,0xbf, + 0x5c,0x40,0x39,0x7d,0x00,0x8f,0xe5,0x33,0x6b,0x48,0x6c,0xd3,0xef,0x19,0x84,0x41,0x04,0x0f,0x7a,0x53, + 0xe3,0x05,0x00,0x12,0x9d,0x46,0x22,0x42,0x1c,0x42,0xa3,0x82,0xbf,0x99,0x3c,0xea,0xfd,0x99,0x5c,0x38, + 0x72,0x16,0xc4,0x25,0x0b,0xfe,0x95,0xb9,0x75,0xdc,0xd0,0x23,0x8c,0xd3,0x53,0x29,0x93,0x65,0x8e,0x45, + 0x3a,0xe0,0x0f,0xb4,0x81,0x27,0x65,0x3e,0xe7,0x12,0x5b,0x3a,0x03,0x25,0xfc,0x08,0x0d,0x5d,0x9f,0x7d, + 0x87,0xd6,0xbe,0x71,0x8a,0x7c,0x8c,0xe6,0xf5,0x4f,0xf4,0x2e,0x1f,0x20,0x2f,0xa8,0x7d,0x41,0x82,0x7c, + 0xe2,0xb9,0xc3,0xa7,0xbb,0xe2,0x15,0xea,0x2e,0x08,0x23,0xc9,0xd5,0xdb,0xde,0xd6,0x3d,0x94,0x6f,0xdc, + 0xe7,0x3d,0xd4,0x97,0x4c,0xa7,0xf3,0xf8,0xb3,0x8a,0xed,0x43,0xae,0xc0,0xeb,0xf3,0x39,0xa5,0xee,0x01, + 0xfe,0x7f,0xa3,0x85,0x20,0xae,0xb1,0xe9,0x8f,0x05,0x6e,0xe0,0xaa,0xa8,0x76,0x1d,0x0b,0x7b,0x7c,0x2a, + 0x0b,0xeb,0xd7,0x30,0xc4,0x1a,0xde,0x4a,0xd2,0xb6,0x1f,0x1c,0x54,0xc7,0xe1,0xf3,0x2a,0x6b,0xa1,0xaa, + 0xa6,0x13,0xaa,0x29,0xa5,0x9a,0xee,0x42,0xfe,0x45,0xfb,0xad,0x0f,0xe6,0xbb,0xaa,0x15,0x67,0x9f,0x45, + 0x49,0xc3,0xd1,0x51,0xa5,0x8e,0x88,0xcb,0xb0,0x91,0x90,0x3a,0x81,0xa2,0x99,0xbc,0x1b,0xb2,0x73,0xf4, + 0x69,0xc7,0x57,0xf9,0x1d,0x4f,0xf5,0x79,0x32,0xcf,0xa2,0x73,0xc4,0xd5,0xfd,0xcf,0xac,0xed,0xf5,0x34, + 0x33,0xce,0x32,0xf9,0x15,0x92,0x48,0x3a,0x13,0xf1,0xb3,0x5a,0xfd,0xae,0x12,0x8d,0xf0,0xb2,0x08,0x7f, + 0x83,0x18,0x5e,0x2b,0xa6,0x3b,0xe6,0xc3,0x53,0xe2,0x18,0xb4,0x07,0x77,0xdc,0x33,0x7e,0x17,0xa7,0x88, + 0xe0,0x57,0xcf,0xad,0xa4,0x8e,0x26,0x9f,0xe1,0x38,0xc2,0x4b,0x97,0x15,0x2d,0x7e,0xcb,0xd8,0x34,0xda, + 0xa4,0x7b,0x26,0x7a,0x57,0x0d,0x81,0xae,0x56,0x1f,0xd2,0xa1,0xf2,0x8d,0xfc,0xf1,0x24,0x36,0x81,0x18, + 0x3b,0x16,0x72,0xcb,0x98,0xf1,0x2a,0xff,0x98,0xe9,0x24,0x7e,0x01,0x6b,0x2d,0x7e,0x6b,0x06,0x1c,0x84, + 0x8f,0xee,0x38,0x0a,0x5d,0x5b,0x28,0x74,0x74,0x74,0xe2,0xf4,0x9d,0x29,0xe1,0xf0,0x19,0x04,0x70,0x04, + 0xf4,0x25,0x02,0xea,0xd2,0x24,0x7f,0x64,0xc7,0x6c,0x13,0x08,0xff,0x70,0xec,0xf9,0x57,0x49,0x79,0xe6, + 0x47,0x57,0x51,0x52,0xfa,0x6c,0x18,0xe0,0xb3,0x0f,0x74,0xa5,0x3c,0xcf,0xd7,0x40,0x3e,0x3b,0x2e,0xf5, + 0x39,0x2e,0xbd,0x7f,0x45,0x68,0x35,0xf6,0x3f,0x42,0xea,0xa7,0x90,0x8d,0x4f,0xcc,0x59,0x06,0x6f,0x87, + 0xec,0x89,0xc5,0x97,0x11,0x68,0x0f,0x60,0xda,0xef,0xa2,0xb8,0x0b,0x25,0x36,0x46,0x42,0xd4,0xb3,0x13, + 0xb4,0x24,0x5d,0xc2,0x75,0xcf,0xc9,0xf2,0xf4,0x14,0x62,0x42,0x35,0x0b,0x55,0xd0,0x15,0x47,0xf9,0xa9, + 0xc1,0x99,0xa0,0x4e,0x07,0x1a,0xd6,0x0a,0x43,0xf3,0xfa,0x3c,0x42,0x09,0x12,0xdc,0x18,0xb3,0x74,0x4a, + 0xfc,0x8e,0xb2,0x02,0x7b,0x67,0x3d,0x84,0xd2,0x81,0xf0,0x8f,0x8e,0x08,0xe5,0xd3,0x9f,0xaa,0xd6,0xc6, + 0x07,0x6a,0xc3,0xfd,0xd0,0x94,0xfc,0x88,0x28,0x62,0xa3,0xd5,0x28,0x7b,0x0c,0x26,0xbc,0x88,0xd8,0xc7, + 0xe1,0xd6,0xbe,0xe7,0x9f,0x64,0x6a,0x3d,0xd9,0x40,0x0c,0x12,0x6e,0x2b,0x62,0xcb,0x30,0x7d,0xf8,0x31, + 0xb3,0x9d,0xb3,0x7c,0xcc,0xd8,0x0e,0x17,0x37,0x39,0x67,0x59,0x58,0x56,0x50,0x7d,0x82,0x37,0x7d,0xd6, + 0x03,0x9c,0xfc,0x63,0xa4,0x58,0x27,0x39,0x27,0x5e,0x21,0xb1,0x71,0x54,0xf3,0x87,0x8b,0x0c,0xa0,0x5d, + 0x76,0x6c,0x84,0x57,0xb2,0x11,0x4e,0x9b,0x19,0x9a,0x62,0x1a,0xca,0xf3,0xb1,0x95,0x27,0x2b,0xca,0x66, + 0xa6,0x4b,0x74,0x81,0x56,0x22,0xb9,0x48,0x4a,0x04,0x44,0x54,0x46,0xb9,0x44,0x9e,0xb2,0xf2,0xc9,0xd6, + 0x3e,0xeb,0x7a,0x22,0xc6,0x39,0x76,0xc7,0xaf,0x67,0x94,0x8b,0xbb,0xe9,0x63,0xbe,0x40,0xa7,0xee,0xb7, + 0x2c,0x33,0x9a,0x93,0x4c,0x6f,0xcb,0x3e,0x6e,0xf0,0xa0,0xd6,0xba,0x3c,0x91,0xbb,0x05,0xd7,0xb6,0x9a, + 0xce,0xb5,0x1f,0x01,0xd6,0xbf,0xf3,0x8b,0x2a,0x7e,0xbd,0x68,0xf2,0x2d,0x3d,0x75,0xf7,0x86,0xeb,0x86, + 0x1c,0xaf,0xb2,0x62,0x8d,0x0b,0x59,0x4a,0x66,0x55,0xff,0x24,0x8c,0xaa,0xa0,0xf6,0xc9,0xa3,0x90,0xb8, + 0x9e,0x08,0xa1,0x60,0xe6,0x3a,0x2b,0x36,0x39,0x8d,0xab,0x40,0x48,0x35,0x4d,0x53,0x86,0x7c,0xed,0x8b, + 0xdc,0x96,0x01,0xa6,0x5d,0xd1,0xe4,0x51,0x98,0x0c,0x27,0x54,0xa0,0x1c,0xb0,0x97,0x15,0xfe,0x61,0x7f, + 0xeb,0x2c,0x99,0x40,0xff,0x87,0x3a,0x7b,0x88,0x09,0x4c,0xb8,0xd9,0x9d,0x7d,0xfe,0xce,0xdc,0x91,0x73, + 0x92,0x83,0xc2,0x2b,0x46,0x4c,0x58,0xe5,0xec,0xb4,0x9e,0x1f,0x68,0xfc,0x34,0xdd,0x5b,0x7b,0xe2,0x19, + 0xc1,0x59,0x70,0x2e,0x8e,0x83,0xdb,0x99,0x6f,0x9f,0xf3,0xf9,0xb5,0x8e,0xc8,0x0c,0xd2,0xa4,0x6a,0xe7, + 0x08,0xf0,0x74,0x82,0x45,0x84,0x32,0x7a,0x25,0x95,0xa1,0x25,0x2b,0x07,0x15,0x7d,0xc9,0xd0,0x36,0xc7, + 0x8d,0x73,0x83,0xaa,0xe4,0x0f,0x4b,0x9a,0x94,0x78,0xc8,0x42,0xbe,0x84,0x10,0x38,0xb1,0x24,0x8f,0x33, + 0x37,0x33,0xea,0x6c,0xb0,0x4b,0xcd,0x1a,0x77,0xe2,0x8b,0xf0,0x6d,0x76,0x38,0x45,0x88,0x28,0xfe,0xad, + 0xc9,0xbf,0x89,0x80,0x3b,0x2a,0x8e,0x8e,0xde,0x12,0xe9,0xe6,0xb9,0x0f,0x77,0x9d,0xfe,0x54,0x0b,0xc2, + 0x3d,0xda,0xf1,0x09,0x78,0x69,0x58,0x67,0x69,0xd1,0xf6,0xc2,0x96,0x69,0x33,0x78,0x68,0x48,0x33,0x96, + 0xb0,0x3e,0xf5,0x67,0xca,0xfc,0x9f,0xf2,0x3b,0x89,0x89,0xe3,0xd8,0xc8,0x61,0xe5,0x80,0x6a,0x17,0x62, + 0x74,0x6a,0xbb,0x90,0x96,0x77,0x76,0x1e,0xed,0x9e,0x12,0x8b,0x41,0xa7,0xbe,0x9d,0xe5,0xe8,0xf0,0xe9, + 0xb3,0xc7,0x07,0x8f,0x8f,0x0e,0xab,0x9c,0xe3,0xb1,0xc9,0x09,0xa1,0xb2,0x3b,0xf5,0xc5,0xed,0x32,0xf4, + 0x59,0x94,0xcf,0x26,0x0e,0xa3,0x77,0x16,0xc9,0x41,0xc9,0x0f,0x50,0x82,0x70,0x20,0x7f,0x21,0x98,0xd7, + 0x3a,0x3a,0x3b,0x67,0xba,0xbf,0x71,0x78,0xe6,0xe7,0x54,0xd1,0x72,0x67,0x86,0x48,0xd4,0xc6,0x0e,0xe9, + 0x32,0xb4,0x94,0x01,0x1e,0x8a,0x0c,0x00,0x6a,0x98,0x97,0x3c,0xf9,0xcb,0x4c,0x47,0xd4,0xd2,0x16,0x64, + 0xb6,0xea,0xc0,0xce,0xd1,0x87,0xfb,0xb1,0x14,0xb9,0x60,0xf0,0x2d,0x55,0x78,0x46,0x44,0xaa,0x50,0x2a, + 0x88,0x2a,0x3c,0x82,0x72,0x58,0x52,0xed,0xc2,0x07,0x3e,0x6c,0x6d,0x53,0xf7,0xa2,0x7f,0x9f,0x58,0x3c, + 0x85,0xea,0xd7,0xd0,0xeb,0x9a,0x35,0xda,0x3c,0xb5,0xdb,0x1c,0x3f,0x92,0xf6,0x4e,0xb9,0xbd,0xd4,0x3d, + 0xed,0xdf,0xb3,0x8b,0x23,0x3f,0x34,0xa4,0xd9,0x3d,0xad,0x3b,0x17,0x95,0xc3,0x8f,0xc8,0xf8,0x11,0x77, + 0xcb,0x3a,0xa0,0xa1,0x29,0x80,0xfc,0x27,0x26,0xff,0x44,0xf2,0x9f,0x48,0xbb,0xc7,0xe1,0x72,0x98,0xba, + 0x27,0x56,0x39,0x9a,0xc0,0x93,0xc3,0xfd,0xb1,0x7f,0xcc,0x6c,0xa9,0x5d,0xc7,0x55,0x33,0x56,0x4a,0x69, + 0x2a,0x8d,0xa4,0x52,0x13,0xf9,0xef,0x5a,0x7b,0xfc,0x2b,0x51,0x15,0x73,0x1e,0x01,0x36,0x0b,0x76,0x59, + 0xb0,0x5c,0x53,0x93,0xa5,0xdd,0x55,0x6b,0x57,0x0d,0xb7,0xb0,0x19,0x54,0xb5,0x45,0xc6,0xc6,0x1f,0x99, + 0x49,0xc8,0x29,0x61,0xe8,0xa5,0x6e,0x56,0xeb,0xb0,0xf2,0x1f,0xa9,0x03,0x71,0x62,0x3f,0x55,0x36,0x98, + 0x4b,0xec,0xc5,0xb7,0x74,0x8a,0x13,0xda,0x40,0x67,0x52,0x37,0xa9,0x17,0x86,0xef,0xf3,0xa5,0x9f,0xaf, + 0xd7,0xae,0x58,0x4d,0x79,0xd7,0xad,0x50,0x0b,0x69,0x68,0xdc,0x14,0xb2,0xd5,0x45,0x55,0x27,0x73,0xff, + 0x82,0x51,0x68,0xff,0xa6,0xe2,0x3a,0x3c,0xa7,0x5e,0xf8,0x73,0x7e,0xcc,0xc4,0x01,0x74,0xce,0x17,0xe4, + 0x7a,0x98,0xcb,0x70,0xc2,0xde,0x1a,0xb6,0xb6,0x12,0xf6,0xc1,0x23,0xdd,0x57,0x30,0x3c,0xe5,0x4d,0x2d, + 0x92,0xa9,0x19,0x76,0xfc,0xde,0x70,0xf1,0x70,0x36,0x5c,0x68,0x25,0xbf,0x33,0x5d,0xe0,0x70,0x31,0x1e, + 0x2e,0xa8,0xd1,0x1d,0x58,0xcb,0x9d,0x61,0x4c,0x1a,0x80,0xee,0x3a,0xce,0x5d,0xcc,0x1b,0xdf,0x51,0x9d, + 0x1d,0xde,0x1f,0x6f,0x6f,0x2b,0x85,0x4e,0xbc,0xf8,0x2a,0xf9,0x81,0x9d,0xfc,0xc0,0x24,0x7f,0x69,0x27, + 0x7f,0xa9,0xac,0x09,0x2f,0xb9,0x9a,0xd5,0x0a,0x19,0xf1,0xf7,0x4b,0xfa,0xeb,0x38,0xfe,0x45,0xe8,0x44, + 0xda,0xc5,0x35,0xdc,0x37,0x4b,0x0d,0xfb,0xe3,0x91,0xde,0x23,0xcf,0x62,0xb8,0xd4,0x7d,0x15,0x5f,0xc1, + 0x25,0x6a,0xf1,0x3c,0xcb,0xbf,0xa7,0x5c,0x41,0xf7,0xd7,0xe1,0x94,0x46,0xa4,0x74,0xd7,0x51,0x89,0xcf, + 0x24,0x76,0xf0,0x63,0xe9,0x5e,0xd2,0x36,0x5a,0xaf,0x97,0xac,0xfa,0xcc,0x8b,0xcc,0x0a,0xac,0x84,0x59, + 0xed,0x13,0x27,0x48,0x1b,0xb8,0x52,0xa0,0x6e,0x0a,0x8f,0xf4,0x21,0xc7,0x45,0x68,0x20,0xfb,0x14,0xb6, + 0x64,0x7c,0xe5,0x4d,0x6f,0xf0,0x68,0x93,0x4e,0xbd,0x35,0x2d,0x3f,0x70,0x51,0xe6,0xc7,0xec,0x7a,0x61, + 0xbf,0xb9,0xef,0x0e,0xb4,0xc9,0xf8,0xb9,0x7e,0x78,0xaa,0x1e,0x00,0x3b,0x97,0xe6,0x7c,0x3b,0x37,0x8e, + 0x9d,0x2f,0x3d,0x02,0xe9,0x89,0xda,0xee,0xe7,0x70,0xe3,0x6a,0x3d,0x2f,0xad,0xe7,0x99,0xf5,0xec,0x3e, + 0x0d,0xcf,0x6d,0x8c,0xe5,0x13,0x2e,0x7c,0xb8,0x47,0xa0,0x7f,0xd9,0x0f,0x9f,0xfa,0xb5,0xca,0x0f,0x6a, + 0xe7,0xfe,0x9e,0x7f,0x09,0x84,0x73,0xe9,0xad,0x2f,0x59,0x1c,0x49,0x5f,0x09,0x2b,0xc2,0x72,0xdc,0x60, + 0xd2,0x83,0x0a,0x99,0x1e,0xb0,0x8e,0x69,0x2c,0x6a,0xca,0x2d,0x54,0x1b,0x6b,0x13,0xd9,0x75,0xee,0xb2, + 0x8c,0x48,0xa2,0x84,0x9c,0x65,0xbe,0x75,0x0d,0x51,0x3b,0xfd,0x2c,0xc9,0x8a,0x7d,0x0c,0x76,0x08,0x55, + 0x5a,0x27,0xa2,0xdf,0x05,0x12,0x1b,0x20,0xa5,0x33,0xef,0xcd,0xc0,0xa5,0xbe,0xfa,0x2d,0xd4,0x1d,0x18, + 0xcc,0x5d,0x28,0xf4,0x64,0x1d,0x8b,0x11,0xac,0x5f,0x65,0xc7,0x8a,0x80,0xb4,0x58,0xad,0xae,0x70,0xc7, + 0x39,0x7c,0x05,0x90,0x87,0xcb,0x6c,0x9a,0xbb,0x25,0x54,0xe1,0x6b,0xdc,0x4b,0xa5,0xec,0x4c,0x48,0x4f, + 0x48,0xdb,0xd8,0xa6,0x6c,0xb5,0xf0,0x12,0xf1,0x51,0xdf,0x65,0x5a,0x77,0x32,0x55,0x3a,0x93,0xf2,0x14, + 0xca,0x8f,0x39,0x44,0x7f,0xc9,0x7c,0x59,0x46,0xde,0x01,0xa0,0x45,0x4c,0x0c,0x3d,0x28,0x97,0x2b,0x79, + 0xe2,0x0f,0x25,0x77,0x3b,0xa1,0x03,0x12,0x12,0x45,0xea,0x31,0xe8,0xb9,0x2d,0xe5,0x40,0x9f,0x3d,0x2a, + 0x4e,0xc3,0x99,0x27,0xca,0xcc,0xfa,0x3a,0x1a,0xc9,0x53,0x51,0xbe,0x9e,0xd6,0xe5,0xa9,0x34,0x48,0x88, + 0xed,0x76,0xdf,0x47,0x97,0x91,0x9d,0xb7,0x96,0x89,0xfa,0x8c,0x18,0xb5,0x1e,0x37,0x48,0x43,0x3f,0x61, + 0x4f,0xf0,0x1c,0x88,0x52,0x4f,0xc4,0x54,0xe1,0xb1,0x53,0x43,0xe0,0x03,0x9f,0xcd,0xc2,0xd3,0x8c,0xf6, + 0xbc,0x3b,0x23,0x92,0x96,0xe0,0x9f,0x15,0x03,0x69,0xfc,0x17,0xe1,0xcc,0x37,0x17,0x8d,0x17,0xb8,0x54, + 0x83,0xec,0x0e,0xd5,0x5f,0x80,0x54,0x66,0x53,0x83,0x59,0xc5,0x57,0xec,0x79,0xcc,0x58,0xcc,0x2c,0xc6, + 0x02,0x37,0x92,0x9d,0xd1,0x8b,0x8d,0xb0,0xcc,0xb8,0xbb,0xb4,0xa3,0x34,0x9a,0x5b,0x55,0x0b,0x05,0x97, + 0xda,0x0f,0x4d,0xc9,0x11,0x3c,0xe1,0xa5,0x47,0xe1,0x28,0xab,0x36,0x4a,0x94,0xb8,0x24,0x82,0xb2,0x1a, + 0x4a,0x3e,0x8d,0x8c,0x12,0x96,0x74,0xad,0x3d,0x6a,0xd2,0x38,0x58,0xd7,0x8e,0x85,0x76,0x12,0x15,0x7b, + 0xe6,0x05,0xb3,0xea,0x2e,0x94,0xbe,0xfe,0x0b,0xc6,0xfc,0x1d,0x91,0x4a,0xad,0x3b,0x5b,0x75,0xfe,0xc6, + 0xb8,0x34,0x2d,0x71,0xc9,0x18,0xcb,0x25,0x63,0xa9,0x2e,0x19,0xe3,0xb5,0x32,0xb2,0xee,0xb8,0xc2,0x15, + 0x5d,0x66,0x75,0xfd,0xa8,0x63,0x27,0x36,0x2f,0x74,0xb5,0x36,0x93,0xba,0x97,0x84,0x43,0x5d,0x74,0xea, + 0xd2,0x5e,0xac,0x4b,0x14,0x00,0x93,0xce,0x55,0x5e,0x32,0xbf,0xce,0xab,0xf1,0x5d,0xc9,0x8b,0x4c,0x73, + 0x39,0xd2,0x10,0xb0,0x5a,0xe5,0xd4,0x57,0x86,0x19,0xa9,0x92,0x20,0x80,0x9f,0xa8,0x28,0x75,0x3f,0x97, + 0xee,0xeb,0x8f,0x6a,0x14,0xb3,0xb5,0x17,0xe4,0xd4,0x22,0xed,0xc6,0x2d,0x0b,0xd6,0x60,0x22,0xd4,0xaa, + 0x66,0xeb,0x66,0x5e,0xd5,0xde,0xa5,0x66,0x73,0x72,0x7c,0x3d,0x6d,0x81,0x1e,0x73,0x68,0x3d,0x00,0xb8, + 0x96,0xdc,0x52,0x02,0x82,0xc2,0x66,0x0b,0x98,0xfe,0xba,0x95,0x93,0x1b,0x9e,0x9b,0x94,0x87,0xf3,0x3b, + 0x0e,0x16,0xee,0x7a,0x5c,0xef,0x3a,0x2c,0x32,0x68,0xc2,0x8c,0x8c,0x7d,0x36,0x80,0x85,0x02,0x3b,0xfd, + 0xe2,0x28,0xe2,0xb2,0xfc,0xfb,0xa2,0x4f,0x12,0xca,0x57,0x91,0x0b,0xae,0x56,0x77,0x1d,0x25,0x3f,0x70, + 0xee,0x0e,0xa9,0xd9,0x5a,0xb0,0xb7,0xfa,0x3b,0x9b,0x11,0x1c,0x9e,0x8d,0xc3,0x99,0x18,0x5b,0x57,0x7d, + 0x14,0xbc,0x31,0xe3,0xad,0x23,0x61,0xd9,0x12,0x39,0xda,0xfd,0x8b,0xe1,0x7c,0x94,0x02,0xe8,0x88,0xf2, + 0x9a,0xf9,0x99,0xce,0x88,0x38,0x63,0x69,0x87,0x5e,0x7d,0x76,0x98,0x19,0xb6,0x6d,0xec,0x97,0x96,0x7b, + 0xac,0xc3,0x96,0x4f,0x2c,0xca,0x81,0xe0,0xcb,0xf7,0xa1,0x0d,0xa2,0x11,0x4a,0xcf,0x91,0x37,0x76,0xa7, + 0xb0,0x35,0x81,0xa6,0x75,0xd5,0x47,0x4c,0xad,0x6f,0xea,0x0f,0xf7,0x89,0xdc,0xaa,0xb7,0x97,0x8a,0xc3, + 0x6d,0x1c,0x50,0x35,0x29,0xbf,0x0e,0x2e,0xf6,0x2a,0xb5,0xaf,0x8e,0xc4,0xa3,0x09,0x10,0x5b,0x52,0xe1, + 0xac,0x45,0xe5,0x8e,0x03,0xa6,0xdd,0x9e,0xd9,0x4d,0x35,0xe7,0x1f,0x71,0x38,0x41,0xe0,0x47,0xb9,0xc2, + 0x19,0xb9,0x08,0xb5,0xe9,0x54,0x5c,0x50,0xae,0x6d,0x55,0x18,0xad,0xea,0x84,0x51,0x1c,0x3c,0xc9,0xd8, + 0xad,0x1f,0xbb,0x3c,0x97,0x5e,0x8f,0x68,0xc4,0x10,0xe7,0x29,0x8f,0x6f,0x5b,0x05,0xcf,0xc1,0x16,0xfb, + 0xee,0x73,0x9b,0xd2,0x13,0x81,0xd2,0xcb,0x6c,0xf4,0x7b,0xe2,0x5e,0x66,0x5e,0xf0,0x5d,0xc2,0xdc,0x7a, + 0xc5,0x2c,0x18,0xe7,0x6f,0xbe,0xc5,0x82,0xd2,0x9f,0x09,0x5c,0xf8,0x46,0x45,0xf9,0x02,0x44,0x03,0x10, + 0x16,0xc7,0xf3,0x89,0x27,0x38,0xac,0xbc,0x6b,0x5a,0xd9,0x5c,0xe8,0x09,0xef,0x11,0xae,0x9a,0x34,0xb1, + 0x6c,0x08,0x89,0x09,0xac,0x74,0x7d,0x45,0x5e,0x35,0xf0,0x57,0xa6,0x35,0x14,0xe7,0xe1,0xbf,0x62,0xd7, + 0x76,0x87,0x3c,0x54,0x05,0xe4,0x32,0x66,0x2e,0x97,0x50,0xaa,0xee,0x6b,0xe7,0x9f,0x27,0xa2,0x29,0xe8, + 0x40,0x67,0x82,0x3a,0x98,0xf4,0xf3,0x8a,0xf2,0xd6,0xa7,0xd7,0xe4,0x61,0x65,0x6a,0xd1,0xd1,0xad,0x1b, + 0x3b,0xc5,0xfb,0x0c,0x1a,0x7d,0x30,0x48,0x8a,0x94,0x48,0xab,0xcf,0xea,0x82,0xe7,0x71,0x5a,0x04,0xc5, + 0x9a,0x23,0x03,0x79,0xa3,0x52,0x93,0x8d,0xb0,0x02,0xbd,0xe7,0x5b,0xa5,0x30,0x49,0xfa,0x45,0x17,0x03, + 0x21,0x89,0x07,0xb9,0xd3,0xa2,0x7d,0x1b,0x08,0xcc,0xc6,0xd5,0x9a,0x1a,0x30,0x3e,0x2c,0x2b,0xd8,0x64, + 0x90,0x86,0xd2,0xb8,0xd5,0xd8,0x7d,0x53,0x89,0xd0,0x8f,0x39,0x1b,0x84,0xb7,0xdc,0xc4,0x37,0xb7,0x69, + 0xbd,0xb0,0x6f,0x6c,0xdd,0x82,0xad,0x3d,0x36,0x8f,0x20,0x76,0xc5,0xd5,0xb0,0x89,0x38,0xc6,0x4a,0x90, + 0x04,0x69,0xf0,0x45,0xf2,0x67,0xcc,0x72,0x1c,0x36,0x85,0xf2,0x21,0xd3,0x39,0xc8,0xc2,0x7f,0x67,0xc0, + 0x13,0xd6,0x75,0x13,0x68,0x89,0x73,0xdc,0x92,0xb6,0x64,0xb3,0xe6,0x9c,0x81,0x09,0x8f,0xb8,0x92,0x51, + 0x25,0x43,0x3a,0x5b,0x4b,0xff,0x1e,0x35,0x35,0x51,0x9b,0xd9,0xc5,0xce,0x96,0x17,0x62,0x67,0xdc,0xad, + 0x89,0x3a,0x96,0x27,0xb0,0x4c,0x50,0x8a,0xa2,0xd4,0x18,0x54,0x74,0xf0,0x77,0x86,0xc8,0x5f,0xa7,0xa9, + 0xcb,0xc6,0x54,0x60,0x80,0xce,0x33,0xf3,0xdc,0x36,0x01,0x35,0x06,0xa0,0xac,0x06,0xa5,0xe3,0x42,0x28, + 0xaf,0xd0,0xc6,0x75,0x10,0x17,0xaf,0x59,0x12,0xa0,0x99,0xca,0x3e,0xd4,0xf8,0x8c,0x21,0x60,0xa2,0x16, + 0x95,0x51,0x19,0xc2,0x08,0x52,0xc2,0x00,0x81,0x62,0x3e,0xd2,0x04,0x79,0xf8,0xcf,0xdf,0x37,0x78,0x4a, + 0xac,0x16,0xa8,0x7b,0xa5,0x22,0x2b,0x1c,0xe0,0x63,0x8e,0x0a,0x54,0x19,0x82,0xe1,0x45,0x63,0x95,0x43, + 0x27,0x49,0x41,0x69,0xee,0x98,0x7e,0x6a,0xab,0x05,0x5b,0xc6,0xc9,0xf1,0x43,0x9b,0x7e,0x03,0x75,0x78, + 0x6a,0x6d,0x1f,0x5b,0xe1,0x53,0x22,0x0f,0xe1,0x77,0xc5,0xd7,0x4b,0x07,0x83,0x25,0xbd,0x16,0x5b,0xfb, + 0x4c,0xbc,0x13,0x9d,0x3d,0x7b,0x9a,0xd1,0x44,0xf3,0x3d,0x40,0x15,0x70,0x9a,0x50,0x67,0x14,0xd6,0x3f, + 0xea,0xf6,0xb2,0x87,0x51,0xe5,0x59,0xab,0x68,0x64,0x82,0x27,0x25,0x3e,0xb0,0xa8,0x65,0x58,0xc5,0x6d, + 0x68,0x99,0x81,0x79,0xb2,0x26,0x3a,0xb4,0x06,0x2e,0xca,0x9f,0x41,0x63,0x1e,0x4d,0x51,0x6c,0x8e,0x4c, + 0xbc,0xff,0x99,0xb4,0x17,0x29,0xd1,0xe6,0x86,0x41,0xa3,0x04,0x61,0x40,0x6a,0x53,0x44,0xd9,0x05,0xc0, + 0x1b,0xe9,0xab,0xd5,0xfd,0x5a,0x32,0xbb,0x6d,0x67,0x97,0x11,0x0a,0xbb,0x80,0x35,0x33,0x2d,0xc1,0x1f, + 0x31,0x13,0x38,0x16,0x48,0x4b,0xda,0xbe,0x5f,0xd5,0xd1,0x88,0xe1,0xde,0x5e,0x2e,0x1d,0xcc,0x1d,0xc2, + 0x5f,0xcb,0xd5,0xa3,0x9f,0x82,0xa1,0x2f,0x19,0xf8,0x86,0x7f,0x6f,0x61,0x62,0x77,0xc3,0x9a,0x70,0x18, + 0x03,0xb8,0x85,0xda,0x37,0x4a,0xe3,0x2c,0x4c,0x4e,0x53,0x36,0x3c,0x52,0xb2,0xe2,0x6b,0x3a,0x06,0x88, + 0x3b,0x56,0x46,0x98,0x99,0x0e,0x5d,0xdb,0xb8,0x2e,0xa1,0x0f,0x8d,0x94,0x75,0x3d,0xd8,0x9f,0x59,0xd7, + 0xd2,0xb5,0x14,0x2e,0xea,0x46,0x99,0x31,0x34,0x07,0xd9,0xb4,0x52,0xdc,0x01,0xe5,0x72,0x03,0x55,0x3f, + 0xd3,0xdc,0x72,0x94,0x05,0x89,0xa7,0x1d,0xa1,0xae,0x51,0x59,0xaa,0xe5,0xe6,0xec,0xc8,0x47,0x3d,0x87, + 0xd5,0x75,0x13,0xdf,0x87,0xeb,0x8b,0x72,0x93,0x19,0xc2,0xb4,0x9a,0xf9,0x32,0x7c,0x46,0xda,0xf7,0x50, + 0x8d,0xde,0x59,0x1f,0x57,0x2b,0x31,0x20,0xb5,0xcb,0x5b,0x22,0x19,0x44,0xb1,0xed,0xa5,0x9e,0xa3,0x1a, + 0xc2,0x46,0xa7,0x23,0xbc,0x8a,0xe8,0xa6,0x53,0xe8,0xf8,0x8b,0xe0,0x11,0x3f,0x1a,0x8b,0x2b,0xa0,0x22, + 0xfc,0x90,0x71,0xf8,0x73,0x2d,0xa7,0x2f,0x06,0x71,0x9e,0x67,0xc4,0x42,0x24,0xb4,0x77,0xca,0x64,0x51, + 0x84,0x99,0x5f,0x28,0x24,0x74,0x0d,0x6d,0x8e,0x64,0x1e,0x07,0xa5,0xaf,0x9e,0x0e,0xb2,0xe7,0x6a,0xaa, + 0x8a,0x0e,0x6d,0xfe,0x0e,0x03,0xd8,0xd6,0x75,0x80,0xf2,0xa1,0x40,0xf8,0x9e,0xef,0xe0,0x88,0x2f,0xe4, + 0x25,0x50,0x77,0x52,0xbd,0xbc,0x32,0x4e,0xc8,0xe0,0xe6,0xcc,0x5c,0x45,0x8c,0x94,0x51,0x92,0x9d,0xe6, + 0xf5,0xe9,0x40,0x64,0xd8,0x85,0xe7,0x34,0xcd,0x5e,0xc2,0xf1,0x9e,0x58,0xd3,0xc3,0x2d,0x5e,0x0e,0x65, + 0x4f,0x58,0x55,0x63,0xc5,0xcd,0x98,0x95,0x7d,0xd0,0x02,0x51,0x17,0x15,0xb8,0x4d,0x2a,0xe4,0x51,0x5d, + 0xd1,0x45,0xcd,0x94,0xba,0xbe,0x5e,0xa5,0xe1,0xb0,0x00,0xec,0x4c,0xa0,0x9f,0x80,0xf6,0x43,0x82,0x4d, + 0x5c,0x69,0xac,0x3d,0xf7,0xcf,0xcc,0x1b,0xb4,0x27,0x8f,0xb2,0x45,0xe1,0xd6,0x16,0x3c,0xd9,0x9f,0xa5, + 0x2e,0xae,0x9a,0x52,0xfb,0x1d,0x1e,0x9f,0xa2,0x4e,0x6b,0x1c,0x36,0x19,0x32,0x56,0x77,0x40,0x3d,0x46, + 0xc7,0x84,0xda,0x4e,0xa2,0xb0,0xc3,0xb2,0x4a,0x67,0xbf,0xdd,0xe8,0x0a,0xb8,0x8f,0x8d,0x93,0xb8,0x19, + 0xa8,0x93,0xd6,0x6c,0x3f,0x89,0xbe,0xb4,0x93,0xf4,0x83,0x8e,0xc2,0xdc,0x8e,0x2c,0x5a,0x0b,0x39,0xce, + 0x6e,0x0d,0x52,0x35,0xdd,0x7a,0x7b,0x82,0x52,0x94,0xf3,0x87,0xb7,0xa3,0xc7,0xca,0x99,0xbc,0xd2,0x55, + 0x0c,0xc2,0xdc,0x73,0xfe,0x43,0x48,0x56,0x13,0x35,0x81,0x09,0x86,0x3c,0x82,0x58,0xc1,0xb8,0xe2,0xda, + 0xb2,0x3c,0x77,0xd9,0x5d,0xc9,0x99,0x94,0xd4,0x93,0x24,0x5c,0x2c,0x97,0x6f,0x99,0xac,0x66,0xcb,0xb2, + 0xe6,0x31,0xae,0x67,0x25,0xdd,0x6c,0xc5,0x27,0x5a,0xd6,0x66,0x5d,0x1a,0xee,0xa4,0x2b,0xe3,0x4d,0x66, + 0xfe,0xed,0x35,0xc3,0x34,0xcb,0xc8,0xd5,0x69,0x1a,0xc3,0x8d,0xde,0x75,0xb7,0x70,0x29,0xba,0x51,0x90, + 0x94,0x22,0x8e,0x95,0xde,0x1a,0x41,0x6a,0xed,0x13,0x4d,0xc2,0x21,0x55,0x3f,0xae,0x55,0xa4,0x77,0x90, + 0x54,0x6a,0x07,0x40,0xf5,0xac,0x01,0xee,0x43,0xbd,0x5e,0x84,0x15,0xd2,0xf6,0xee,0x30,0x26,0xfb,0x49, + 0x24,0x3a,0xb0,0x62,0xde,0xa6,0x6d,0xd9,0x14,0xdc,0xd3,0x98,0xe8,0x6d,0xed,0x35,0x8c,0x12,0x1c,0x89, + 0x1f,0x66,0x05,0x87,0xe5,0xfb,0x68,0xb0,0x1b,0xcb,0x54,0xa2,0x3b,0x4e,0x09,0x8b,0xa9,0x8f,0x82,0xe8, + 0x46,0xf2,0x33,0x50,0x59,0xc3,0xd2,0xed,0x0c,0x33,0x2b,0xa5,0x21,0x17,0xc6,0xef,0x20,0xba,0x98,0x8e, + 0xe4,0x91,0x36,0x25,0xf1,0xb9,0xef,0x96,0xf1,0x8b,0xfd,0xaf,0x53,0x94,0x5e,0x37,0x82,0x50,0x53,0xb7, + 0x96,0x04,0x20,0x00,0x41,0xea,0xda,0xd0,0xa2,0x15,0xa4,0xcf,0x1d,0x3d,0xc3,0x5d,0x7b,0xc6,0x36,0x4b, + 0xea,0x89,0x51,0x98,0xeb,0x1c,0x5e,0x2e,0xe3,0x9d,0x84,0xda,0x19,0xf7,0x9c,0x3e,0xdc,0x6c,0x6f,0x6f, + 0xd7,0x32,0xf0,0x91,0x3e,0x39,0xb7,0x1d,0x6d,0x97,0x8d,0x80,0x78,0xc2,0x74,0xb5,0x27,0xaa,0x2a,0x61, + 0xe3,0xa0,0x4b,0xe5,0x4c,0x09,0xfb,0xf6,0xa2,0x76,0x9d,0xda,0x88,0xb2,0x87,0x30,0x7b,0x26,0xb6,0x84, + 0x55,0x59,0x62,0xc7,0x07,0x17,0x51,0xa0,0xb9,0xd4,0x37,0xc4,0x1f,0x24,0x0e,0x10,0x04,0x56,0x9f,0x40, + 0xf6,0xa9,0xdd,0x0c,0x35,0xbe,0x84,0x7f,0xf4,0x5e,0x60,0xc1,0x84,0xe6,0x2c,0x4b,0x36,0x48,0x27,0xb2, + 0xb6,0xae,0xd0,0xca,0x89,0xa3,0x84,0x4d,0x0d,0x83,0xd6,0xf6,0x8f,0x39,0xd4,0x3c,0x1c,0x26,0x23,0x5b, + 0x70,0xcf,0xaa,0x90,0x45,0x82,0x37,0x66,0xf7,0x5d,0xb4,0xb9,0xdf,0xd5,0x26,0x25,0x02,0x8f,0x24,0xa1, + 0x3c,0xfa,0xd7,0x44,0xb1,0x44,0x74,0xd8,0xe5,0x62,0x9f,0x54,0x04,0x89,0xe5,0x0d,0x34,0xab,0x8c,0xb8, + 0xb1,0x22,0xaa,0x51,0x03,0x03,0x71,0x4d,0x25,0x4b,0xcb,0xe6,0x94,0xfa,0xc2,0xca,0xb2,0x89,0x3c,0xdc, + 0x60,0xe7,0x1a,0x87,0x08,0x54,0x38,0x88,0x4e,0x20,0xc6,0xf6,0x31,0xc6,0x72,0x04,0x57,0xde,0xde,0x28, + 0x7d,0xb4,0x3f,0xda,0x0f,0xf6,0x82,0xfd,0x20,0x1e,0x71,0x9e,0x8b,0x04,0x45,0xef,0x79,0xc1,0x9e,0x0e, + 0xa7,0x0a,0xbf,0x5b,0xea,0x7e,0x68,0x3c,0x4a,0x59,0x0a,0xc4,0x9c,0x56,0x60,0xad,0x6d,0x64,0x41,0x01, + 0xb3,0xa6,0x1c,0xf6,0xbb,0xc9,0xa5,0xd6,0xdc,0xbe,0x17,0xb6,0xd0,0xc9,0x02,0x05,0x5f,0x53,0x55,0x42, + 0x4e,0x11,0x13,0xf3,0xb0,0x05,0x26,0x89,0xa6,0xd7,0x33,0x09,0xc7,0x83,0xcb,0x06,0x1d,0xad,0x24,0xd3, + 0x6e,0x29,0x42,0x13,0x53,0x43,0x5d,0x49,0xa0,0x31,0xa6,0x6c,0x32,0x6f,0x42,0x18,0x67,0x1e,0x46,0xfe, + 0xa9,0x00,0x35,0xfc,0x34,0xb2,0xf7,0xd1,0x0c,0xa4,0xcc,0x88,0xa9,0x9a,0x82,0x89,0x1b,0x9f,0x53,0x02, + 0x4e,0xe1,0x47,0x45,0xeb,0xfb,0x06,0x04,0xf3,0x7a,0x88,0x02,0x26,0x0e,0x97,0xec,0x60,0x1b,0x4e,0x9e, + 0x95,0x3b,0x38,0x93,0x65,0x5e,0xb9,0xf7,0x5d,0xb2,0xba,0x2f,0x44,0x7e,0x1d,0x32,0x8f,0x52,0xbb,0x3a, + 0xab,0x2c,0x18,0x8f,0x05,0x82,0xd8,0x2b,0xda,0x1d,0xec,0xfc,0x81,0x24,0xac,0x55,0x3d,0x16,0x36,0xe1, + 0x0b,0x6c,0x48,0x4a,0x70,0xae,0x55,0xa6,0xe6,0x8a,0xa3,0x72,0xd9,0x31,0x24,0x3c,0x05,0xf2,0xa1,0x99, + 0x10,0xa5,0x9e,0xe9,0x4c,0x10,0x25,0xd2,0x0c,0x2a,0x72,0x28,0xf5,0x2a,0xef,0x3c,0x94,0xbb,0xcc,0x3f, + 0xaa,0x19,0x6d,0xc6,0x4f,0x22,0x2a,0xa8,0x9e,0x24,0x75,0x13,0x89,0x58,0x18,0xd8,0xd5,0xea,0x0a,0xa1, + 0xb9,0x51,0x87,0x94,0x50,0x58,0x4e,0x33,0x05,0x76,0x34,0x62,0x70,0x50,0x39,0x47,0x66,0x96,0xca,0x56, + 0xab,0xa2,0x62,0x6d,0x45,0x65,0xc2,0xe6,0x5f,0x53,0xf8,0xfa,0xb1,0x13,0x2a,0x32,0x74,0x52,0xb5,0x3d, + 0x37,0x6d,0x4f,0x5a,0x6d,0x5b,0x2d,0x03,0xce,0xb5,0x2b,0xb8,0x35,0xeb,0x3e,0x55,0x6a,0x70,0xc4,0x3d, + 0xaf,0x89,0x0a,0x17,0xd3,0x91,0xd4,0xf8,0x26,0x03,0xd7,0x5e,0x69,0x46,0xe8,0xc5,0x58,0xda,0xec,0x42, + 0xda,0x5c,0xd5,0x7c,0xb4,0x45,0x84,0x05,0xaf,0x26,0xc4,0xde,0xae,0x93,0x66,0x25,0x9d,0x54,0x49,0x51, + 0xf6,0xd4,0x31,0xd2,0x4b,0x94,0xa7,0x1f,0x00,0x2e,0xa5,0x99,0x77,0x07,0x2a,0xc7,0xec,0x61,0xba,0x5e, + 0xa8,0x5e,0x00,0x74,0x41,0x4f,0x35,0x2a,0x25,0xec,0xc0,0x12,0xa5,0x40,0xa2,0xec,0xa4,0x16,0x39,0x88, + 0x8f,0x26,0x90,0x61,0x13,0x0f,0x8e,0xca,0x30,0x46,0xd0,0x12,0xde,0x37,0x2c,0x7f,0x28,0xcf,0x7c,0x68, + 0xa0,0x0b,0x50,0xf2,0xc5,0x30,0xed,0x5b,0xa2,0x01,0xae,0xf1,0x89,0x88,0x7c,0x83,0x00,0x91,0x0c,0xf4, + 0x47,0xd4,0xb6,0x48,0xff,0x89,0x36,0xc8,0xa4,0x02,0xe2,0x0f,0x74,0x05,0xb4,0x45,0xb9,0x02,0xbd,0xf4, + 0xab,0xd5,0x84,0x23,0xcb,0xe8,0xa8,0x2d,0x89,0x99,0xcb,0x72,0x70,0x7c,0x59,0x2a,0x19,0xaa,0x0e,0x89, + 0xe7,0x2e,0x69,0xa5,0x79,0x5e,0xbd,0x41,0xa9,0x02,0x98,0x2c,0x7d,0xda,0xc0,0x9a,0x8b,0x6a,0x6f,0xba, + 0xdc,0xa2,0xe1,0xd9,0xcb,0xaa,0x89,0x1c,0x4f,0x43,0x6c,0xc6,0x05,0x81,0x6f,0xf9,0x12,0x18,0x5e,0x65, + 0x2b,0x59,0x08,0x45,0xb4,0x90,0xc7,0x24,0x98,0xde,0xab,0xf3,0xda,0x4e,0x15,0x4b,0x29,0x45,0x24,0xba, + 0x8e,0x0e,0xd0,0xdb,0xfb,0x2f,0x8c,0xfd,0xbf,0xb0,0x5e,0x97,0x3b,0x65,0xaf,0x8a,0x9b,0xad,0xc4,0xe3, + 0x6a,0x85,0x8b,0xe5,0x02,0x64,0x49,0x4f,0xcc,0x74,0xc4,0x52,0xad,0x16,0xd0,0x83,0xb7,0x7c,0x75,0xf2, + 0x0a,0x8f,0x87,0x27,0xb5,0x6b,0x1c,0x5a,0x38,0xc7,0x68,0x21,0x82,0xda,0x85,0xa6,0x23,0x53,0xbc,0x43, + 0x51,0xcc,0xc3,0x16,0x80,0x0e,0x60,0xef,0x9b,0xfd,0x40,0x7e,0xef,0xcb,0xef,0x83,0xaf,0xe4,0xf7,0xfe, + 0x03,0xf5,0xfb,0x8d,0x4a,0xff,0x3a,0x30,0x01,0xc8,0xa4,0xc0,0x97,0x2a,0x83,0x2a,0xf0,0xe0,0xcb,0x40, + 0xab,0x17,0x4f,0xa1,0xea,0x2e,0xb9,0xee,0xdf,0x53,0xd5,0xcb,0xcf,0xfe,0x9e,0xfa,0x55,0xad,0xed,0x7f, + 0xa5,0x12,0xbe,0xfa,0xf2,0xde,0x3f,0x54,0x9e,0xaf,0xef,0xe9,0x42,0xf4,0x74,0x5f,0x57,0x7a,0x55,0x38, + 0xe6,0xe2,0xef,0x51,0xf8,0xcd,0x3f,0x88,0x65,0x79,0x18,0xee,0xdf,0xbb,0xb7,0x5a,0xd1,0xeb,0x57,0x5f, + 0xf2,0xeb,0x37,0x7b,0x23,0xd5,0x78,0x40,0x89,0x0f,0xbe,0xe1,0xc4,0x2f,0xff,0x31,0x72,0xc4,0x10,0xc2, + 0x09,0x1c,0xbe,0xf6,0xe9,0x08,0x48,0x82,0x69,0x92,0xb3,0x4e,0xc1,0x85,0xeb,0xec,0x39,0x5b,0x56,0xf0, + 0xe2,0x3d,0xc8,0xd0,0x92,0xe2,0x55,0xf4,0x4a,0x82,0xb2,0x11,0xc2,0x2d,0xfd,0xe7,0x3a,0x5a,0x5d,0xe7, + 0x9d,0x5b,0x7d,0xda,0x75,0xdf,0x4d,0xa5,0xea,0x93,0x51,0xe6,0xd9,0xa7,0x16,0xee,0x3f,0x80,0x58,0x67, + 0x7b,0xfb,0xfe,0x37,0xf8,0x1d,0xe1,0xae,0x4d,0xa9,0x04,0xf9,0xf4,0x1d,0xac,0x60,0xe0,0x7c,0xe1,0xf4, + 0x4b,0x1d,0x00,0x5d,0xfc,0x5b,0x5d,0x6a,0x5c,0x58,0x71,0x65,0xda,0xf7,0x06,0x34,0x15,0x0e,0x85,0xec, + 0xeb,0x29,0x4f,0x79,0x8e,0x7f,0xda,0xce,0x7f,0x16,0x15,0xaf,0xaf,0x52,0x1d,0x68,0xcf,0xff,0x18,0x76, + 0x11,0xa8,0x2f,0xd2,0x72,0x6e,0x05,0x0b,0xc3,0xeb,0xe0,0x19,0x22,0xdb,0x24,0x17,0x31,0x31,0x0f,0x17, + 0x51,0xe9,0x9f,0x7c,0x72,0x41,0xf1,0xe2,0xa7,0x8a,0x1d,0x87,0xd7,0xe2,0x58,0xe3,0x69,0x23,0x48,0x65, + 0xcd,0xa7,0x91,0xcd,0x00,0xc6,0x03,0xec,0xb6,0x50,0x7e,0xf8,0x1e,0xf1,0xf8,0x18,0x8f,0xa3,0xeb,0x75, + 0xa0,0x23,0x12,0x31,0x4e,0xb8,0x36,0x99,0x0d,0xba,0xa4,0x1e,0xbd,0x54,0xe9,0x52,0xc8,0xd3,0xc7,0x1d, + 0x02,0x2d,0x0e,0x75,0x6a,0xa7,0xd3,0x9b,0x92,0xa8,0x85,0xd2,0xb7,0x08,0x9f,0x98,0x8d,0x09,0xec,0xc3, + 0xa8,0xec,0x88,0xc0,0x28,0x21,0x4d,0x51,0x29,0xfb,0x0e,0xfe,0x89,0x91,0xc4,0xcb,0xb8,0x28,0xa2,0x53, + 0x9c,0xe1,0xa5,0x9c,0x7d,0xea,0xf8,0xa1,0x66,0xc4,0xe3,0xd4,0xb1,0x35,0x46,0xbf,0x4a,0xf9,0x15,0xb9, + 0x62,0xe5,0x11,0x4c,0xba,0x7a,0x85,0x24,0x1c,0x22,0xd0,0x54,0x76,0x3d,0x2b,0x33,0xeb,0x48,0x4c,0xf2, + 0xe4,0x24,0xc6,0xa7,0xa7,0x30,0xf5,0x61,0x3d,0x49,0x66,0xda,0x24,0x9b,0xce,0x21,0xce,0xe0,0xd6,0x55, + 0x3c,0x0e,0x35,0x85,0x22,0x0b,0xe7,0x15,0xc8,0xb3,0xac,0xd4,0x41,0xee,0xf1,0x2c,0x48,0xaf,0x9d,0x52, + 0x9b,0x6b,0xbe,0x3e,0xe5,0xbe,0x20,0x43,0xd8,0xcc,0xab,0x56,0x6a,0x30,0x23,0xfa,0xec,0x84,0x18,0x19, + 0x99,0x9c,0x56,0xb6,0xc6,0x77,0x5d,0xaa,0x20,0xc6,0x30,0x15,0xfd,0xd3,0x39,0x1b,0x29,0xfc,0x0a,0x41, + 0x5c,0xab,0x70,0x67,0x36,0x76,0xd4,0x5b,0x87,0x80,0xfc,0x56,0x08,0xc8,0x41,0x2f,0xb6,0x21,0xc0,0x2c, + 0x2f,0xaf,0x69,0x11,0xe6,0xdd,0x8b,0x89,0x0b,0xf6,0x97,0x7a,0x62,0xff,0xdb,0xd6,0xd4,0xb7,0x0e,0x0b, + 0x35,0x6d,0x1f,0x53,0xbe,0xe6,0x33,0x2f,0x7c,0xba,0x8b,0x5f,0x40,0x9e,0xdf,0x5a,0x87,0xee,0x54,0x1d, + 0x92,0xd9,0x77,0xb5,0x65,0x5e,0xef,0x6f,0xc0,0xc5,0xc8,0xb5,0x26,0xa6,0x05,0x15,0x7f,0x63,0xb8,0xe0, + 0xcd,0xe5,0x96,0x04,0x97,0xac,0x2a,0xc0,0x82,0xea,0x51,0xfd,0xbd,0x09,0xa7,0xb5,0x6d,0x67,0x67,0xfc, + 0x5b,0xdd,0xd1,0x7e,0xe0,0x9e,0x35,0xc3,0xd4,0x6a,0x47,0x70,0xd2,0x35,0xb7,0x55,0xb8,0xd6,0xa3,0xc1, + 0x32,0xbd,0xa9,0x65,0x25,0xf8,0x6c,0xd5,0xd1,0x01,0x65,0xb5,0x6a,0x55,0x9a,0xdb,0xa8,0xc1,0xfa,0xa4, + 0x6b,0xa8,0x01,0x46,0x37,0xb8,0x34,0x6b,0xa9,0x7d,0xb4,0x7b,0x22,0x61,0xe3,0xd6,0x6b,0xff,0x4a,0x7b, + 0x6d,0x45,0x6a,0xe5,0xcd,0x31,0x9a,0xc3,0xd0,0x5b,0x1c,0x2b,0xb2,0xd6,0xdb,0xb5,0xed,0xc9,0x56,0x69, + 0x05,0x04,0xe2,0x32,0x71,0xcd,0x11,0xc9,0xeb,0x39,0x34,0xc5,0x85,0x8b,0x43,0x4d,0x8f,0xda,0x19,0xd6, + 0x3e,0xdf,0x86,0x17,0x2a,0xf1,0x90,0xa9,0x3d,0xe3,0x4c,0x76,0xdd,0xf2,0xe4,0x58,0x23,0xed,0xb9,0x5b, + 0x90,0x4f,0x48,0xf8,0x0c,0x44,0x91,0xad,0xac,0xcd,0xf0,0xdd,0x02,0x1c,0x89,0xa7,0xe1,0x66,0x22,0xd8, + 0xbf,0xd5,0x75,0xac,0x0a,0x0b,0x17,0xca,0x8f,0x09,0xbf,0x4b,0xf4,0xbc,0xe5,0xc8,0x55,0x04,0xf0,0xb9, + 0x10,0xd2,0x88,0xe6,0xa1,0x08,0xe9,0x39,0x04,0xd4,0x4b,0x7c,0xe0,0xb1,0xb1,0x41,0xe8,0xac,0xc1,0xae, + 0x2d,0xbd,0xd1,0x52,0x07,0xfd,0xdd,0x0b,0xec,0x73,0x6b,0xe9,0x99,0x74,0xd6,0xc0,0x6e,0xf0,0x4c,0xb6, + 0x3f,0x3e,0x6c,0xa3,0x2a,0x80,0x79,0x45,0xf2,0x58,0x41,0xcd,0xb9,0x0b,0x9a,0xea,0xa9,0xe2,0x9e,0x6f, + 0x6f,0x3b,0x7c,0x99,0xb8,0x5e,0x57,0x22,0xfd,0xed,0xed,0xcc,0xb4,0x4c,0x4c,0xe9,0x94,0x6a,0x77,0x9d, + 0x17,0xb3,0x9e,0x8c,0xa2,0x87,0xd9,0xee,0x25,0x45,0x0f,0x4e,0x66,0x7a,0x74,0x06,0xf4,0x78,0xae,0x7b, + 0xb1,0x88,0x4c,0x8b,0x1e,0xcc,0x1f,0x7a,0x67,0xd1,0x65,0x2c,0x05,0x24,0x3f,0x65,0x1e,0x10,0x17,0xd4, + 0x31,0xf6,0x36,0x4e,0x07,0x5b,0x30,0x27,0x06,0x10,0xce,0x43,0x9b,0x33,0xd2,0x75,0x02,0xcc,0xe1,0xf9, + 0x6c,0x49,0x7f,0xa0,0x62,0xb9,0xa1,0x3e,0xe1,0xed,0xa7,0x23,0x07,0xe6,0x53,0xcd,0x69,0x09,0x28,0xb5, + 0x1c,0xce,0x21,0xfc,0x82,0x38,0x53,0x79,0xfd,0xf7,0x13,0x3f,0x1a,0x24,0xae,0xc4,0x9e,0xc0,0xd6,0x38, + 0x08,0x5b,0x88,0x62,0x42,0x2d,0xd1,0xe1,0xd2,0x71,0x41,0xb2,0x1e,0x1e,0x58,0xf4,0x5c,0x02,0xbb,0xc1, + 0x45,0x06,0x79,0xb8,0x2d,0x27,0xaa,0xdc,0x21,0x58,0xb5,0xc1,0xb5,0x9c,0x66,0x52,0xa1,0x85,0x77,0xa3, + 0x46,0x1f,0x31,0x7e,0x8e,0x63,0xab,0xf5,0x19,0x79,0xf3,0x61,0xda,0xef,0xb3,0x7c,0xc6,0xb9,0x56,0xfe, + 0x5f,0x73,0x5c,0x2b,0x58,0xd7,0xfa,0xac,0x9e,0xe2,0x28,0x5d,0xb1,0x1c,0x97,0xf9,0xa8,0x4b,0x58,0x52, + 0x7a,0x10,0x1b,0x0b,0x55,0x8f,0xb3,0x66,0x1d,0x96,0xa1,0x97,0xf5,0xc3,0xc4,0x37,0xc9,0x22,0x93,0x38, + 0x17,0xba,0x3b,0xf3,0x46,0x0e,0x3b,0x1b,0x0d,0x9e,0x56,0x09,0x40,0x26,0x53,0xa2,0xf4,0x97,0xe2,0x94, + 0xce,0x19,0xea,0x2e,0x48,0xb3,0x99,0x78,0xc4,0x8e,0xd6,0xa2,0x25,0xef,0xfc,0x0f,0xee,0xeb,0x88,0xfa, + 0x0c,0xc2,0x9c,0x56,0x04,0x22,0x3f,0x6a,0xd2,0x0b,0xf0,0x57,0x73,0x1c,0xb7,0x8e,0xa4,0x5c,0x33,0xfb, + 0x58,0x9f,0xd5,0x30,0xaf,0x89,0xaa,0xd3,0x8a,0xf9,0xf4,0x25,0xf8,0x74,0x53,0xb6,0xa2,0x87,0xc3,0x2c, + 0x45,0x7b,0x24,0x98,0x5b,0xfd,0xc2,0xb6,0xe1,0xba,0x77,0x3c,0x75,0xc3,0xa4,0xb9,0x28,0x11,0x0d,0x28, + 0x19,0x6b,0x86,0x2f,0x52,0xf7,0xd2,0xe0,0xac,0xa4,0xff,0x81,0xe2,0x68,0x23,0xc5,0x9c,0x8b,0xd6,0x2b, + 0xf3,0x6d,0xaa,0x23,0x2a,0x43,0x7a,0xc8,0x94,0x0e,0xd1,0xed,0x3a,0xaf,0xbf,0xbf,0xe7,0x8d,0x6b,0x05, + 0x74,0x6f,0xe5,0x57,0xd4,0xc2,0x4d,0x71,0x55,0x8a,0x68,0xdc,0xa4,0xdf,0x37,0x93,0xba,0xe6,0x70,0x77, + 0x6b,0x5e,0xd4,0xf3,0x70,0xf7,0x0f,0xf7,0x68,0xea,0xf5,0x77,0xfd,0xa7,0xfc,0x78,0x85,0xc7,0x0f,0x34, + 0x4d,0x8f,0xc3,0x7d,0xff,0x6d,0x78,0xcf,0xbf,0x13,0xde,0xf7,0x5f,0xd3,0xfb,0xb7,0xe1,0x03,0xff,0x4d, + 0xf8,0xa5,0xff,0x3e,0xfc,0xca,0x7f,0x16,0xfe,0xc3,0x7f,0x11,0x7e,0xed,0xff,0x04,0x86,0xfe,0xa7,0xc3, + 0xd7,0xe3,0xf0,0xfa,0xaa,0x08,0xe8,0xd7,0x67,0x36,0x30,0x38,0xbc,0xef,0x7f,0x18,0xfb,0xce,0xa1,0x13, + 0x1c,0x7e,0x3b,0xf6,0xe9,0x90,0x0f,0x0e,0x9f,0x8d,0xd7,0xfe,0x4f,0x87,0xfb,0x2a,0xe7,0x3e,0x7d,0x1d, + 0xd0,0xd7,0x7b,0x9d,0xb9,0xee,0xa9,0x5c,0xf7,0xea,0xf5,0xed,0xa9,0x5f,0xe1,0x2a,0xe5,0x05,0xd9,0xef, + 0x53,0xf6,0xdb,0xf2,0xf9,0xdc,0xaa,0xff,0x58,0xb7,0xcb,0x4f,0xdc,0x32,0x9e,0xa4,0x6d,0x7a,0x42,0x75, + 0xdf,0x52,0x75,0xce,0x5d,0xfa,0xf4,0x06,0xe5,0xee,0x3a,0x77,0x83,0xc3,0xf7,0xd5,0x70,0xfc,0xb7,0xf4, + 0x34,0x76,0x50,0xd9,0x1d,0x29,0xf8,0x82,0xed,0xf9,0xf0,0x49,0xba,0xf3,0x46,0x97,0x47,0x42,0x2d,0xc7, + 0x1b,0x95,0xe3,0x3d,0xe5,0xe0,0x7a,0x5b,0x39,0xd0,0x90,0x2c,0xcc,0x73,0xb6,0x79,0x26,0x52,0x2d,0x5f, + 0xc6,0x2b,0xb6,0xe5,0x5c,0xed,0x8c,0x0e,0x8f,0xa6,0x83,0x71,0x7f,0x75,0x97,0x7d,0x60,0xdd,0x5d,0x39, + 0xec,0x16,0xcb,0xf1,0x28,0x1f,0x1c,0x13,0x6d,0x40,0x5b,0xdd,0x58,0xeb,0x95,0x85,0xb5,0x18,0xca,0xde, + 0xd0,0xa1,0xd6,0x96,0x50,0xd9,0x18,0xcb,0x42,0x58,0x25,0xf4,0x33,0x3a,0xe4,0x59,0x3a,0xec,0x5d,0x84, + 0x50,0x3e,0xd8,0x70,0xf3,0x70,0x67,0x9f,0x8e,0xc6,0xd7,0x1c,0xf7,0xee,0x0c,0xe0,0x82,0x3d,0x73,0x76, + 0xf8,0x78,0x5c,0x33,0xee,0xd0,0xe7,0x54,0xca,0xba,0x3c,0x02,0xbd,0x70,0x51,0x28,0x1f,0x60,0xab,0x7f, + 0xf8,0xa1,0xa3,0x04,0x24,0xb5,0xa3,0x34,0xcc,0x83,0xb4,0x4f,0x84,0x3f,0x65,0x7a,0x5b,0xcb,0x84,0x42, + 0x44,0x19,0xcd,0x08,0xf6,0xe9,0xdb,0x9d,0xda,0x37,0x68,0x44,0x3e,0xda,0xf3,0x66,0x3b,0x3b,0xd4,0xbd, + 0x6f,0x7d,0xc9,0x6a,0xee,0x22,0xd1,0xdb,0x2d,0x5c,0x7d,0xb8,0x69,0xb8,0x60,0x97,0x79,0x46,0x2c,0x8a, + 0xbe,0x43,0x1d,0x73,0xa8,0x64,0xe0,0x4b,0x76,0x18,0x3f,0xef,0xf7,0xe1,0x3f,0x91,0x95,0x85,0xe0,0x73, + 0x71,0x8e,0x1b,0x8b,0xad,0x06,0x3f,0xcd,0x1f,0xfa,0xfb,0x8c,0xad,0x97,0x54,0xf9,0x1b,0x3a,0x95,0xef, + 0xb2,0x5a,0xd7,0x6a,0x85,0xf7,0xf7,0xdb,0xdb,0x04,0x16,0x78,0x37,0xbe,0xbb,0xa9,0x5a,0xc2,0xd6,0x54, + 0x71,0xbf,0x54,0x7d,0x44,0x84,0x65,0xd7,0x53,0x56,0x5c,0x53,0x88,0xc5,0x40,0xe7,0x14,0xe1,0x4f,0x87, + 0xcb,0xb1,0x47,0x78,0x67,0xb5,0x2a,0x58,0x11,0x74,0xb5,0x7a,0x01,0xd9,0xf2,0x0b,0xad,0x15,0xc4,0x6d, + 0xc2,0x8e,0xc5,0x77,0xa3,0xf0,0xec,0x30,0xa3,0x3d,0x38,0x96,0x7b,0xd8,0x0c,0x1b,0x2d,0x0f,0xcd,0x94, + 0xe6,0xa3,0x32,0xc8,0x65,0xf8,0xc4,0xff,0x78,0xb5,0x0a,0xc2,0xf0,0x99,0x71,0x8e,0x2a,0xca,0x6e,0x86, + 0x20,0xd5,0x30,0x12,0xc2,0xff,0x30,0xc8,0xae,0xb5,0x6f,0x03,0xd9,0x69,0x5c,0x02,0xc4,0x58,0x90,0xdb, + 0x38,0x1b,0x21,0x23,0x2f,0x2b,0x07,0xad,0xd5,0x25,0x8c,0xf6,0xbe,0xad,0xe1,0x13,0x1e,0x6b,0x79,0xdc, + 0x79,0x83,0xc2,0x40,0x78,0x37,0x74,0x5d,0xbb,0xd3,0xae,0xd5,0x64,0x59,0xfb,0x54,0xa6,0x66,0x84,0xa4, + 0x95,0x0b,0xee,0x6c,0xa8,0x1d,0x6f,0x47,0x87,0xf9,0x61,0x31,0xb6,0x2e,0x3b,0xa0,0x6c,0xe6,0x5d,0x8b, + 0x1b,0x2a,0x65,0x9b,0x10,0x85,0x13,0xbf,0xa8,0x90,0x69,0x24,0xbb,0xf5,0xe5,0x86,0x9d,0x33,0xac,0xf8, + 0x3f,0x70,0xe3,0xd0,0x96,0x35,0xb7,0x4b,0x42,0x3c,0xae,0x56,0x4e,0x9c,0xee,0xfc,0xf2,0xd6,0x61,0x79, + 0x6e,0x9d,0xd7,0xae,0xbe,0xb1,0x45,0x92,0x62,0x71,0x99,0xbc,0x54,0x61,0xcc,0x2d,0x19,0x90,0xa4,0xc3, + 0x8a,0x32,0xb5,0x44,0x3c,0x9c,0x3a,0x54,0xae,0xac,0x2f,0xe4,0x82,0x4f,0xde,0x66,0xfc,0x9d,0xc8,0x95, + 0x90,0x15,0xd8,0xe4,0x79,0xb5,0x02,0xa3,0x7c,0xa0,0xb2,0x5c,0x24,0x05,0x5c,0x81,0xa0,0x6d,0x79,0x12, + 0x81,0xa7,0xf6,0x2e,0x0d,0xa1,0x42,0xcc,0xb2,0x85,0x5a,0x3a,0xb8,0xda,0xd0,0xe2,0x7b,0x85,0xe5,0xdd, + 0xda,0x92,0x27,0xdd,0xba,0x1a,0x28,0xeb,0x43,0x59,0x99,0xed,0x74,0x29,0x64,0xa7,0xe8,0x16,0x3a,0x65, + 0x0f,0x06,0x89,0xc4,0xdd,0x52,0x07,0x22,0x71,0xb7,0x36,0x7c,0x52,0xf5,0xd6,0x27,0x14,0x37,0xef,0x20, + 0xec,0xe5,0x9b,0x3d,0xa9,0xf5,0x2f,0xe0,0x06,0x58,0xbe,0xf0,0xaa,0xaa,0x26,0xaa,0xdc,0x05,0x10,0x12, + 0x94,0x64,0xbe,0x3f,0x68,0x40,0xbe,0xc2,0x2a,0xee,0x16,0xd4,0x19,0xd3,0xd5,0x2a,0x77,0x4b,0xa9,0xb0, + 0xb6,0x5d,0x24,0x9c,0xb6,0x36,0x4a,0x3f,0x86,0xd3,0xd8,0x77,0x2f,0x5d,0x7d,0xdf,0x99,0xfa,0x75,0xa8, + 0x09,0xe0,0xbe,0x51,0x40,0x85,0xc8,0xae,0x06,0x90,0x04,0x91,0x5f,0x03,0x8f,0xa0,0x20,0x8a,0xcc,0xff, + 0x39,0xbc,0xbe,0xbc,0x08,0xae,0xd7,0x55,0x41,0x7a,0x6e,0x96,0xa4,0xa4,0x7a,0xd1,0xeb,0x8a,0xc3,0x5b, + 0x37,0xfb,0x80,0xba,0x04,0x66,0xf8,0xa3,0x9e,0x36,0xbc,0x74,0xae,0x00,0x7d,0x58,0xeb,0xc3,0xe5,0xa5, + 0xed,0x7a,0x58,0x06,0xdb,0xb1,0xbd,0xce,0xb4,0x2f,0x68,0xa9,0x6f,0xd8,0x78,0x87,0xf4,0xa5,0x02,0x7b, + 0x5a,0x1d,0xa2,0x21,0xb1,0x30,0x50,0x8d,0xf5,0x9b,0x79,0xcb,0xb5,0x6f,0x37,0xda,0xc9,0xee,0xb7,0x7d, + 0x21,0xd4,0x17,0xba,0x52,0x37,0xb3,0xab,0xda,0x20,0x3b,0xa8,0x55,0xd6,0x30,0x1c,0x60,0x6e,0xcf,0x0e, + 0x61,0x92,0x5a,0xb6,0x9a,0x25,0x23,0xc0,0xf4,0xd1,0xce,0xbe,0x27,0xf7,0xd3,0x13,0xc8,0x31,0xa1,0x20, + 0xe9,0x76,0xf4,0xc9,0x6f,0x76,0xa7,0x26,0xdb,0x6a,0x9a,0x57,0x8a,0xec,0xaf,0xe6,0x12,0x9c,0x26,0x6f, + 0x70,0x87,0x0b,0xb9,0xce,0x1d,0x54,0x5d,0x0b,0x51,0x61,0x1b,0x34,0x34,0x26,0xc3,0xb6,0x6f,0x38,0xeb, + 0x74,0x8a,0xdc,0x2c,0x42,0x8c,0x20,0x3b,0x41,0x6f,0x26,0xb6,0x02,0x5f,0xac,0xfd,0xeb,0x69,0x1c,0x2f, + 0x44,0x35,0xb9,0x3d,0x3a,0x25,0xc6,0xac,0x1f,0xf5,0x5b,0x15,0x6a,0xa2,0x8d,0x56,0xe1,0xaf,0xd6,0x89, + 0x13,0xeb,0x58,0x26,0x17,0xf5,0x79,0x60,0x01,0x99,0x35,0x19,0x02,0xf8,0xd6,0x6c,0xb0,0x67,0x8f,0x3b, + 0xc4,0xfe,0xc2,0x8a,0x45,0x7f,0x65,0xbf,0xfc,0x8d,0xfe,0xfb,0xd7,0xc9,0x05,0x91,0xea,0x09,0xe4,0xed, + 0x32,0x84,0x9f,0x51,0x31,0xed,0x77,0xbb,0xcf,0x8d,0x45,0x40,0x26,0xbd,0x37,0x37,0x64,0x8d,0x14,0x00, + 0xd0,0x57,0x25,0xe0,0x2e,0xd8,0x03,0xf8,0xcf,0xcd,0x73,0xe2,0xf6,0xf2,0xf5,0xcb,0x05,0x5d,0x4d,0x6d, + 0xf3,0xdf,0x5e,0x89,0x7d,0xd1,0xa0,0xab,0x90,0x79,0xb9,0x65,0xac,0xfa,0xd2,0xbd,0xca,0x5f,0xc4,0x65, + 0xc7,0xee,0xc3,0x6a,0x60,0xbe,0xf5,0x5b,0x35,0xed,0x31,0x37,0x56,0xc7,0x48,0xb7,0x35,0x5a,0xcf,0xdd, + 0x51,0xfe,0x53,0x3b,0x51,0x2f,0xa6,0x3b,0xa3,0x90,0xe1,0x8d,0xbd,0x50,0x79,0xec,0xec,0xdd,0x8d,0x9a, + 0x73,0x99,0xbb,0xa9,0x71,0xeb,0x8d,0x75,0x9b,0x5c,0xf5,0x22,0xdd,0xf5,0x5b,0xa4,0x01,0xb2,0x77,0x22, + 0xec,0x1b,0x5b,0xeb,0x2c,0xb1,0xb9,0xaa,0xee,0x5e,0x74,0x9f,0xf2,0x71,0x7d,0xcb,0xdb,0xe0,0x7e,0xd3, + 0xf2,0xea,0xcd,0xd3,0x2e,0xdd,0x00,0xf6,0x9b,0x2a,0x69,0x6c,0xa4,0x76,0x5d,0x35,0x98,0xbf,0xa9,0xa6, + 0xda,0x5e,0x6a,0xd4,0x03,0xe5,0x32,0xe5,0xd5,0xa9,0xa6,0x6b,0x44,0xcc,0x55,0x62,0x6a,0x82,0x81,0xb7, + 0x92,0xe3,0x2b,0x68,0x50,0x42,0x7f,0x0d,0x39,0x72,0x21,0xcf,0x64,0xd9,0x21,0x0a,0x27,0x63,0x18,0x6e, + 0x04,0x69,0xa3,0xb1,0xa4,0x78,0x6e,0x53,0x62,0x1d,0x2e,0x71,0x62,0x44,0x6c,0x74,0x2d,0x94,0xa9,0x1a, + 0xaa,0x91,0x70,0xcd,0x5a,0xbb,0xc5,0x60,0xa5,0xe6,0x0d,0x15,0x4e,0x6e,0x61,0xdf,0x49,0x58,0x91,0x54, + 0x75,0x0a,0xa8,0x54,0x71,0x77,0xeb,0x64,0xff,0xc4,0xb0,0x0c,0x13,0x31,0x18,0x62,0x55,0x4c,0x1d,0x91, + 0x78,0x8b,0x15,0x08,0xec,0x36,0x2c,0xed,0x54,0x7d,0x49,0x8a,0x48,0xe1,0xc4,0x35,0xd5,0xf2,0xad,0x35, + 0x1b,0xd8,0xd2,0x13,0x9b,0xd4,0xaa,0x9b,0x87,0x13,0xcd,0x07,0xcc,0x2b,0xeb,0xe9,0x7f,0x06,0x8e,0xc7, + 0x5e,0x4a,0x5c,0x1d,0x18,0x0b,0x0e,0xc7,0x79,0xf8,0x73,0x35,0x7c,0x98,0x8b,0xea,0x10,0x2d,0x1c,0xa1, + 0x60,0xce,0xc9,0xc1,0xbc,0x31,0x8f,0x28,0xd8,0x84,0x01,0x3b,0xa4,0x74,0x98,0xfa,0xd0,0x71,0x16,0x5f, + 0x05,0xbb,0xee,0x3f,0x83,0xc3,0xa3,0xab,0xa3,0x9d,0xe3,0xd5,0x60,0xdc,0xf7,0x76,0x4f,0x2b,0x6d,0xf3, + 0x09,0x34,0x1f,0x0a,0xf0,0xa9,0x45,0xe3,0xca,0x99,0xe7,0x4a,0xd4,0x3d,0x8a,0xc3,0x09,0xe2,0xfd,0xcc, + 0x95,0x75,0xb7,0x7b,0x8f,0x38,0x67,0x7d,0x2f,0x56,0xad,0x27,0xf7,0x62,0x49,0xbd,0x70,0xf2,0xe8,0x4a, + 0x09,0xf1,0xd4,0x2c,0x11,0xe1,0x59,0x25,0x0a,0x35,0x1e,0x28,0x3f,0x0d,0x52,0x4b,0x0d,0xd6,0x60,0xf1, + 0x67,0x1d,0xcd,0x0c,0x5a,0xec,0xea,0xa8,0xf7,0x2d,0x14,0xda,0x21,0x72,0x13,0x4b,0xef,0x78,0xda,0x63, + 0x15,0x77,0xe5,0xc3,0x70,0x1a,0x56,0x05,0x86,0xb3,0x70,0xaa,0xc2,0xa6,0x70,0xdf,0xa6,0x8d,0xe3,0x0f, + 0x51,0xc9,0x45,0x44,0x3f,0x6d,0x5e,0x63,0x2e,0xd5,0x44,0x12,0x43,0xe7,0xea,0x61,0x5a,0x3b,0xcf,0x45, + 0x8e,0x19,0x14,0x8d,0x46,0x91,0x31,0x89,0x9e,0xfb,0x33,0x2f,0x88,0x2a,0xd6,0xaf,0xbe,0x58,0x4a,0xd1, + 0xb6,0xbe,0x5c,0x75,0xc1,0x6f,0x85,0x78,0xeb,0x33,0x6a,0x02,0xb1,0x54,0x5a,0x40,0x61,0x39,0xca,0x95, + 0x85,0x19,0xe2,0xa5,0x37,0xda,0x32,0x43,0x6e,0x61,0x08,0xbd,0xc1,0xec,0xed,0x64,0x37,0x56,0xfa,0xb0, + 0x2a,0x35,0xf9,0x8c,0x04,0x9a,0x00,0x61,0x94,0xbb,0x5d,0x25,0x52,0x1f,0xf2,0x59,0x53,0x42,0x05,0x9c, + 0x9f,0x04,0x93,0x66,0x9f,0x5a,0x90,0x5a,0x51,0x88,0xca,0xff,0x50,0x53,0xcd,0x70,0xe7,0xc1,0x30,0xda, + 0xd9,0xe9,0x3d,0xda,0x1b,0x7a,0x50,0xfd,0xb3,0x54,0x52,0xa3,0xfe,0x03,0xe6,0xc3,0xb7,0x8c,0x6a,0x8d, + 0xa3,0xae,0x5f,0x12,0x85,0xda,0x94,0x3b,0x84,0x0c,0x96,0x7e,0x85,0x61,0xa6,0x4b,0x13,0x8d,0xae,0x82, + 0x8a,0xd4,0x57,0x5c,0x67,0xf3,0x26,0x1b,0x50,0xac,0x26,0xdc,0x67,0x29,0x43,0x74,0x51,0x6c,0x86,0xd7, + 0xf9,0xe7,0xc3,0xab,0xd2,0x69,0x59,0x5a,0x20,0x5b,0x53,0x96,0x8a,0x8d,0xb2,0x54,0x66,0xd9,0xd7,0xb7, + 0x60,0x71,0xe2,0xc3,0xcb,0x66,0xae,0xfc,0x40,0xd7,0xa7,0xbd,0x8e,0xb3,0x1b,0xd7,0x06,0xad,0xf9,0xde, + 0x87,0xfe,0x2f,0xcf,0x77,0xd9,0x50,0x01,0x86,0x58,0x4a,0x75,0x57,0xa0,0xd5,0xa3,0x29,0x54,0x3d,0xcd, + 0xf9,0x08,0x41,0xb7,0xd4,0x6e,0xea,0xa0,0x34,0xd9,0x28,0xdb,0x0c,0xa7,0xd4,0xe6,0x42,0xcd,0x83,0xa1, + 0x03,0x9b,0x69,0xed,0xb8,0xf6,0xb2,0x95,0x9b,0x97,0x0d,0x78,0x46,0x87,0x62,0xef,0x5a,0xac,0xec,0xaf, + 0x2e,0x96,0x4d,0xef,0x27,0x72,0x66,0xdd,0xb0,0x32,0xb4,0x9b,0x68,0x5b,0xe4,0x0d,0x3e,0xa4,0x39,0xca, + 0xea,0xb2,0x71,0xd4,0x3e,0x52,0x4a,0x56,0xef,0xb3,0x66,0xd7,0x5c,0xd7,0x72,0xe1,0x4d,0x53,0x0d,0x89, + 0x40,0xe0,0x38,0xcd,0x3d,0x38,0xe9,0x9c,0x60,0x63,0x75,0x24,0xe6,0xbb,0x2d,0xb0,0xf8,0x72,0x58,0x28, + 0xb0,0x88,0x0e,0x0b,0x1b,0x2c,0x8a,0xfe,0x97,0x95,0xc6,0xde,0xa8,0x92,0x8a,0x25,0xac,0x78,0xbd,0xef, + 0xf9,0x99,0xab,0x70,0x86,0x05,0x2e,0x13,0xa1,0x38,0xa8,0x6d,0x03,0x0f,0x11,0x1d,0x79,0x09,0x77,0x58, + 0xce,0xf9,0x06,0x0c,0xd7,0x7b,0x6d,0x2b,0x2d,0x1f,0x42,0x32,0xd9,0xea,0xef,0xbd,0x61,0xae,0xfa,0xcb, + 0xfe,0x11,0xaa,0xfe,0xe6,0xfd,0x7b,0x06,0x8c,0x13,0xd3,0xaf,0x89,0xea,0x58,0xf2,0xa9,0x70,0xec,0x97, + 0xa6,0xe7,0x3a,0xd0,0x4c,0xd2,0x9c,0xe9,0x26,0xea,0xb5,0x4c,0xa5,0xc5,0x42,0xad,0xd5,0xeb,0xfb,0xc3, + 0x4c,0xf5,0x3a,0x87,0x8d,0x51,0xd5,0xeb,0xac,0x7f,0x5f,0x5f,0xb1,0x35,0xb0,0x5b,0xee,0x55,0x98,0xad, + 0x0e,0xa0,0x2c,0x4d,0xc2,0x15,0xcf,0xb8,0xc5,0xe4,0x37,0xba,0xd6,0xa0,0x3e,0xe5,0x08,0xbf,0x65,0x12, + 0xca,0x46,0x95,0xf4,0xb5,0xa6,0x3b,0xd5,0x41,0x28,0x1a,0xde,0xcf,0xa2,0xb6,0x09,0xc1,0x41,0xfe,0xd8, + 0xa8,0xac,0xd8,0x5c,0x19,0xfb,0xe0,0xed,0xa8,0xa5,0x29,0xa1,0x69,0x6b,0x73,0x7d,0x4a,0x25,0x67,0x83, + 0x65,0x99,0xcc,0x07,0xe2,0x13,0x71,0x63,0x6f,0xbb,0x06,0x5f,0x67,0x12,0x6e,0x19,0x7d,0x83,0x4d,0xd8, + 0x38,0x09,0x1b,0x2b,0xad,0x0d,0xa0,0x5d,0x5b,0xe7,0x64,0xfc,0xe5,0xca,0x36,0x4c,0x4a,0xf7,0x20,0x5a, + 0x73,0x23,0x9a,0x26,0xc9,0x9f,0xa6,0xfd,0x0e,0x82,0x44,0x13,0xab,0x25,0x3c,0x62,0x13,0xc0,0x02,0x69, + 0x13,0x95,0x5e,0x78,0x90,0x77,0xc2,0xd8,0x94,0x2f,0x11,0x84,0x98,0xc5,0x77,0xb8,0x04,0xb3,0x3f,0xb6, + 0xb9,0x04,0xa4,0xc3,0xba,0xa0,0xef,0x1c,0x1f,0x23,0x52,0x82,0x3e,0x60,0xdb,0x02,0xdc,0xc3,0xb9,0xc1, + 0x5f,0xf0,0xe7,0x74,0x63,0x46,0x16,0x13,0x76,0x68,0x57,0xba,0x11,0x94,0x8e,0xfd,0xa5,0xe2,0x9b,0x5b, + 0x32,0xbe,0xe3,0x69,0x0b,0x15,0x30,0xf7,0x61,0x3a,0xbe,0xa1,0x5a,0x51,0x58,0x94,0x1a,0xed,0xeb,0x8e, + 0xd6,0x9c,0x56,0x07,0x41,0xe3,0x28,0xdc,0x2c,0xb1,0xf1,0xd3,0xcd,0x67,0x63,0xfe,0xbf,0xe3,0x6c,0x14, + 0x17,0x85,0xa5,0x39,0x1b,0x73,0x98,0xf8,0xd7,0xe7,0x65,0xda,0x49,0x9a,0x6c,0xc2,0xe9,0xfb,0x9b,0x71, + 0xfa,0xfe,0x58,0x1b,0x56,0x58,0x68,0x2b,0x6b,0x99,0x29,0x69,0xfb,0x87,0x51,0x4b,0x97,0x1e,0x86,0xda, + 0x23,0x89,0xfe,0x8c,0x4b,0x7e,0x18,0x16,0x71,0xd4,0x12,0x78,0x87,0xe0,0xda,0xf8,0x38,0xb3,0xde,0x11, + 0x97,0x94,0x5e,0x38,0xea,0xaa,0x2b,0x05,0x39,0xe0,0xaa,0x98,0x2f,0xa5,0x37,0x98,0x2f,0xa5,0x62,0xbe, + 0x24,0x65,0x3c,0xbf,0xe3,0xfb,0xfe,0x58,0xb5,0xc6,0x56,0x4b,0x0a,0x1e,0x11,0xdc,0x9e,0x23,0x97,0x36, + 0x10,0x8f,0x2d,0x51,0xb8,0x05,0xed,0xd4,0x64,0x0a,0x1b,0x91,0xce,0x86,0x0a,0x6b,0x58,0xa2,0x59,0x53, + 0x27,0xc2,0xf9,0x4b,0x15,0x6d,0x40,0x36,0x5d,0x5d,0xdf,0x8c,0x6a,0xa4,0xe5,0xff,0x47,0x11,0x4d,0xf3, + 0x36,0x68,0x03,0x9a,0xe9,0xc8,0x56,0x21,0x19,0x7b,0x02,0x6f,0x45,0x31,0xe9,0x27,0xa2,0x98,0x5a,0xa5, + 0xb7,0x22,0x18,0xc9,0x7d,0x3b,0x7a,0x69,0xc8,0x72,0xff,0x8f,0x23,0x97,0xf4,0x76,0xe4,0xd2,0xed,0x5a, + 0xe9,0xff,0x47,0x2e,0x1d,0xc8,0x25,0x35,0xc8,0x45,0x69,0x82,0x88,0xa1,0x80,0x12,0x01,0x25,0x44,0xf0, + 0x59,0x13,0xeb,0xff,0xec,0xd1,0x3c,0x47,0x97,0x51,0x32,0x8f,0x4e,0x92,0x79,0x82,0xef,0xe1,0x75,0xfd, + 0xbc,0x0c,0x3e,0xd6,0x6e,0x02,0x83,0x13,0x2c,0x0d,0x6b,0xf4,0xce,0xe7,0x76,0xdc,0x5e,0xf8,0x62,0x38, + 0x0b,0x09,0x0a,0x2f,0x09,0xf6,0x29,0x69,0x7b,0x5b,0x01,0xdc,0x99,0x4e,0xd1,0x26,0x96,0x03,0xc7,0xe3, + 0x11,0xc5,0xba,0x1a,0x09,0xc9,0xd4,0xd5,0xdf,0x8f,0x54,0xba,0xea,0xad,0x73,0x47,0xf4,0x57,0xaf,0x09, + 0x4a,0x83,0x4d,0x02,0x57,0x64,0x81,0x13,0x9b,0x34,0x3c,0xdb,0x50,0x65,0x5a,0xab,0xb2,0x6c,0xd7,0xd7, + 0xbe,0x1f,0xb3,0x6f,0x7e,0xfe,0x77,0x80,0x5f,0xac,0xf4,0x56,0xb5,0x45,0x76,0xc5,0x4f,0x11,0xdb,0x42, + 0x5c,0xa8,0x31,0xfb,0x6a,0xd2,0xea,0xb1,0xcd,0xab,0xac,0xd7,0x95,0x55,0xc4,0xcd,0x63,0x9c,0x7c,0xde, + 0x20,0x5b,0x0c,0x4e,0xd2,0xc5,0x96,0x25,0x86,0xc1,0x49,0xec,0x61,0x26,0x60,0xcb,0x84,0xcb,0x6f,0x0c, + 0x33,0xb3,0xd8,0xb3,0x0c,0xe3,0x34,0xd6,0x69,0x59,0x6b,0x9c,0x7e,0x6a,0x46,0x9a,0x7f,0xce,0x48,0xe3, + 0xcf,0x1f,0xa9,0xf2,0x97,0x58,0xef,0x6b,0xce,0xcc,0x53,0xe9,0x1b,0xbd,0xdf,0xbc,0xc5,0x3b,0x7e,0x7a, + 0xaf,0xa6,0xff,0xbd,0x30,0x66,0x78,0xe2,0x58,0xdb,0xec,0x4d,0x2d,0xe8,0xea,0xe0,0x76,0x3f,0x75,0x1c, + 0x1d,0x7b,0xef,0xbf,0x77,0x1c,0xe9,0xed,0xe3,0x80,0xcd,0xf5,0x87,0x24,0x75,0x8f,0xf1,0x68,0x8c,0xff, + 0x5c,0x07,0xfb,0x9c,0x23,0x34,0x4c,0x54,0x54,0x77,0x76,0x1c,0x76,0x56,0xc5,0x1f,0x73,0xaf,0xc4,0xcd, + 0xe2,0x95,0xd2,0xda,0xa1,0xfe,0x1a,0xd5,0x01,0x31,0x8a,0x7a,0x09,0x52,0xe8,0x6d,0x99,0x53,0xe1,0x53, + 0xc2,0x94,0xc3,0x5c,0xec,0xa3,0xf2,0x81,0x8a,0x26,0x0e,0xcc,0xa8,0x70,0x5d,0xe8,0xfc,0x63,0x70,0x7f, + 0x70,0xdf,0xf1,0xbb,0x4c,0xb5,0x24,0xd2,0xf3,0xf6,0xb6,0x8a,0xf8,0xfc,0x0e,0x31,0x68,0xaa,0xe7,0xc1, + 0xb2,0x88,0xdd,0x97,0x84,0x98,0x95,0xfa,0x90,0xb1,0x76,0xb9,0x8e,0xd3,0xe0,0x9a,0xa3,0x6a,0x06,0xce, + 0xdb,0x32,0x4a,0xf2,0xc2,0xf1,0x8b,0x8f,0x45,0x19,0x5f,0xbc,0x78,0x46,0x29,0xfc,0xd4,0x7b,0xf1,0xcc, + 0xf1,0x67,0x49,0x7e,0x71,0x15,0xe5,0xf1,0x3b,0xe9,0x4b,0xe0,0x3c,0x57,0x09,0x3d,0xd5,0xbb,0xa0,0xe7, + 0xf8,0x93,0x6c,0xf1,0x51,0x22,0x67,0x38,0x4f,0xf5,0x63,0xef,0x7f,0xfd,0xcf,0xde,0xbd,0xbd,0xfd,0x7f, + 0xf4,0x5e,0x46,0xf9,0x79,0xef,0x32,0x4a,0x7b,0x3f,0xc7,0x69,0x71,0x95,0x2d,0xa7,0xb4,0xad,0xe6,0x59, + 0x04,0x8f,0x5b,0x81,0xf3,0x66,0x1e,0xc3,0x70,0x90,0xa3,0x19,0xf4,0x54,0x6a,0x4f,0x26,0x4a,0x85,0x7c, + 0x1f,0x0c,0x06,0x8e,0x9f,0xc7,0x27,0x74,0xbc,0xbf,0x89,0x53,0x29,0x75,0x70,0x16,0xf7,0xa4,0xb7,0x34, + 0xfe,0xf9,0xbc,0x77,0x12,0xf7,0x24,0x47,0x3c,0xf5,0x7b,0x0b,0xa9,0x32,0x8f,0x67,0x79,0x5c,0x9c,0x31, + 0x26,0xef,0x2d,0x68,0xd0,0xbd,0x68,0x46,0xa4,0x14,0x75,0x7d,0x4a,0x63,0xe5,0xa5,0x7f,0xc2,0x51,0x3c, + 0x02,0xe7,0x31,0x5e,0x6a,0x69,0x6f,0xa3,0x4b,0x6e,0x48,0x7e,0xb9,0x0b,0x57,0xc9,0x2c,0xa1,0x99,0x2a, + 0x97,0x45,0x70,0x1d,0x4d,0xe0,0xf1,0x72,0x91,0x25,0x69,0x69,0x66,0xf1,0xf1,0x1b,0xcc,0xc4,0x34,0x29, + 0xa2,0x13,0x3a,0x84,0x02,0xe7,0x99,0x7a,0x22,0xf2,0x83,0xdd,0x67,0x64,0x29,0xc2,0xdd,0x99,0xec,0xbf, + 0x26,0xcf,0x93,0x0d,0x05,0xfc,0x04,0x91,0x4b,0x9c,0x17,0x53,0xdc,0x02,0xa7,0xd9,0xdb,0xb7,0xbc,0x24, + 0xf4,0xb7,0x07,0x5b,0xd3,0x59,0x46,0x50,0x40,0x8b,0x35,0x89,0x52,0x44,0xa4,0x80,0xed,0x06,0x15,0x7e, + 0x4b,0xaf,0xbd,0x89,0x7e,0xc7,0x8a,0xa4,0x29,0x41,0xeb,0x73,0x3a,0x8d,0xf1,0x59,0x7e,0x7b,0x65,0xd6, + 0x53,0x1f,0x4c,0x0e,0xea,0xd7,0x4f,0x59,0xc1,0x0b,0xa7,0xdf,0x69,0x1d,0x8a,0x92,0x7b,0xa6,0xf2,0xa8, + 0xde,0x99,0x37,0x04,0xfb,0x28,0xd4,0x54,0x94,0xd1,0xc9,0x81,0x01,0x23,0x4a,0x71,0x7c,0x35,0xc0,0xa7, + 0x12,0x31,0xa6,0x57,0xa8,0x64,0x3a,0x9b,0xdf,0x96,0xf1,0xa2,0x38,0xc8,0x97,0xc8,0x1c,0x97,0x3d,0xdc, + 0x15,0x20,0x6c,0xfd,0x47,0x1a,0x53,0xce,0x86,0x02,0x05,0x32,0x54,0x59,0x9f,0x43,0x7b,0xb5,0x99,0x17, + 0xbe,0xda,0x2e,0x93,0xe9,0x12,0x51,0x29,0x68,0x6e,0x89,0x90,0x41,0x34,0x8a,0x5a,0x4f,0x0e,0x54,0x1a, + 0xfa,0x72,0x11,0xeb,0x44,0x7a,0x94,0x84,0x17,0xb8,0xa3,0x48,0x09,0xf5,0x68,0xe8,0xa3,0x69,0x85,0xfd, + 0x4b,0x54,0xf6,0xf0,0xb9,0xa7,0xab,0xec,0x29,0x9b,0x94,0x5e,0x94,0x72,0xfb,0x28,0xd3,0xab,0xa6,0x6d, + 0x20,0xb5,0xbd,0xca,0x38,0xc4,0xb1,0xf3,0x2a,0x6b,0x94,0x56,0x5b,0xb5,0xf7,0x31,0x2e,0x25,0xe7,0xb7, + 0xa9,0x5a,0x69,0x79,0xa8,0x67,0x57,0x7d,0x85,0x10,0x9b,0x7d,0x69,0xa1,0xbb,0x18,0x89,0x7e,0x97,0xdc, + 0x49,0xda,0xbb,0x20,0x80,0x4f,0x8a,0x98,0xfa,0x31,0x55,0x85,0x1e,0x4f,0xa9,0x4e,0xfa,0x23,0x6f,0xcf, + 0x24,0xa0,0x90,0x23,0xbf,0xba,0x5a,0x6e,0xa4,0xd1,0x01,0x55,0xe0,0x79,0xf2,0x21,0x9e,0x4a,0x73,0xfc, + 0xc8,0x2d,0xc9,0xa7,0xb7,0xcb,0x34,0x4f,0x78,0x09,0xe4,0xc1,0xa4,0x16,0x98,0x3d,0xf9,0xd5,0x93,0x7c, + 0xa1,0xe6,0x58,0xfa,0x98,0x2e,0xcb,0x58,0x75,0xef,0x25,0xf5,0x34,0xfa,0x18,0x38,0xf2,0xab,0xb2,0x2f, + 0xe3,0x82,0x13,0xd5,0x83,0xa4,0xfe,0x1a,0x4f,0x53,0x95,0x6e,0x1e,0x55,0xfe,0xb3,0x65,0xae,0x0a,0xa8, + 0x27,0xd5,0xf7,0x3c,0xe1,0x54,0xf9,0x55,0xdd,0x23,0x78,0xcb,0x39,0x55,0x3f,0x99,0x6e,0x4b,0xea,0x52, + 0xfa,0x71,0x91,0xc9,0x3c,0x33,0x74,0xbc,0xe4,0x17,0x9d,0x68,0xad,0xa9,0x24,0x6c,0x58,0x55,0xf9,0xd8, + 0x5c,0xd7,0x46,0x91,0x46,0xb6,0x67,0x4b,0x90,0xde,0x07,0xd5,0xaa,0xd0,0xda,0xe1,0x58,0xa1,0x83,0xa0, + 0x87,0xe0,0x42,0xbd,0x64,0xd6,0x8b,0x6a,0xb0,0x01,0x5b,0x9a,0x68,0x9e,0xc7,0xd1,0xf4,0x63,0x2f,0x12, + 0xf3,0x73,0xdd,0xf9,0xcf,0x05,0x17,0x5d,0x6c,0x03,0x38,0xc8,0xe7,0x0a,0x9e,0xe4,0xbd,0x09,0x51,0x92, + 0xfa,0x26,0x21,0xcc,0xf9,0xdd,0x9b,0x17,0xaf,0x7b,0x0b,0x6a,0xc6,0x95,0x8e,0xf5,0xce,0x08,0xf5,0x7b, + 0xa6,0xa0,0x9c,0x98,0x40,0xb1,0x6f,0xaf,0xe2,0x78,0x41,0x1b,0x29,0xb9,0x88,0xec,0x89,0x36,0x39,0x5e, + 0x59,0xcf,0xd1,0x1c,0x33,0x9f,0xc6,0x54,0xa9,0xc6,0x09,0x3d,0xec,0x4d,0x20,0xfd,0xe8,0x42,0xf6,0x4d, + 0xbb,0x8d,0x83,0x6c,0xf1,0x0c,0x31,0xb5,0x1c,0x7a,0xe8,0x21,0xba,0x56,0x2b,0xc7,0x93,0x8c,0x50,0xfb, + 0xc5,0x2f,0x8b,0xc0,0x91,0xa7,0xde,0x72,0xe1,0xac,0x2d,0x3c,0x68,0xa3,0x90,0x0a,0x1b,0x56,0x08,0xad, + 0x42,0x90,0x7c,0xe3,0x17,0x97,0xbc,0xb8,0xf6,0x59,0xa0,0x21,0x40,0xd2,0x7a,0x9c,0x58,0xcb,0xf1,0x3d, + 0xe7,0x7a,0x3c,0x9f,0x67,0x57,0x85,0x60,0x3d,0xe5,0x53,0xc0,0xc2,0x2b,0xbd,0x59,0x4e,0x7d,0xfb,0x98, + 0x2d,0x73,0x02,0xb6,0xcb,0x64,0x12,0x03,0x6d,0xf3,0x29,0x26,0x07,0xb5,0xf2,0x88,0xc4,0xc5,0x6b,0x27, + 0x65,0x6f,0xb1,0xcc,0x17,0x59,0x11,0x17,0x83,0x1e,0x0e,0x48,0x95,0xbb,0x9e,0x05,0xa0,0x24,0x2c,0x1a, + 0xd5,0x40,0xef,0x67,0x65,0xb9,0x08,0x76,0x77,0xf7,0xbf,0xb9,0x37,0xd8,0xff,0xea,0xeb,0xc1,0xfe,0xe0, + 0xc1,0x6e,0xef,0xea,0x8c,0xa0,0x90,0xda,0xef,0xe1,0x94,0x37,0x48,0x1f,0xbd,0x48,0x4a,0xaa,0x9a,0x99, + 0x8c,0xb2,0x97,0xcd,0x08,0x4e,0x8b,0x5e,0x91,0xc1,0xc7,0x4c,0xd1,0x53,0x67,0x1c,0x3a,0x17,0xa3,0x15, + 0xdd,0x2c,0x4e,0x64,0xfa,0x4c,0x05,0x28,0x91,0x7d,0x25,0xc4,0x13,0xa4,0x02,0x36,0xa3,0xf4,0x23,0x9d, + 0xfc,0x1f,0x07,0xbd,0xdf,0xa8,0x31,0x1c,0x60,0xd1,0x9c,0x5e,0x8b,0x9e,0xe1,0xc0,0x7a,0x42,0x2b,0xf5, + 0x20,0x24,0x40,0x6f,0x4f,0x3e,0xf6,0xa0,0x2c,0x09,0x1a,0x01,0xd0,0x60,0x4f,0x73,0x4f,0x85,0xe4,0x5a, + 0xa6,0x65,0x32,0xe7,0xaf,0x3f,0x7d,0xfb,0xac,0x37,0x07,0x25,0x52,0xd0,0x42,0x13,0xb2,0xb6,0x4f,0x61, + 0xbd,0x50,0x76,0xaf,0x6b,0x39,0x64,0xa1,0xd4,0x92,0x77,0xcd,0x3e,0xcd,0x06,0x2f,0x11,0x01,0x5a,0x0f, + 0x67,0x79,0x2f,0x67,0x8f,0x61,0x83,0x9e,0x3a,0x53,0x38,0x10,0x1c,0xf7,0x03,0x27,0x37,0x51,0x25,0x51, + 0x41,0xc4,0x4f,0x3e,0xa5,0x41,0x4f,0x89,0xac,0xcd,0xe9,0x4b,0x73,0xf9,0x4e,0x62,0x02,0x0b,0x74,0xb4, + 0x48,0xa6,0x72,0xe0,0x3b,0xbe,0x2e,0x46,0x67,0x95,0x7a,0xa2,0x83,0xf9,0x6c,0x42,0x30,0xfc,0x0b,0x35, + 0xf2,0xec,0xfb,0xa7,0x6f,0xe4,0x5d,0x01,0xd6,0x92,0xc0,0x1a,0xae,0xba,0x70,0x38,0xd2,0xb4,0x17,0xc9, + 0x69,0x5a,0xe0,0xf8,0x7a,0xf1,0xa6,0xa7,0x62,0xca,0x77,0x03,0x93,0x2c,0x01,0x91,0xe7,0x27,0x34,0x2d, + 0x58,0x14,0x9a,0x50,0xca,0x78,0x8e,0x4d,0x2b,0x0b,0x81,0x99,0x9d,0xa3,0x3c,0x00,0x03,0x26,0x4d,0x04, + 0x26,0xb4,0x29,0xe9,0xed,0x2e,0x41,0xc9,0x34,0x03,0x99,0x44,0x94,0xcb,0x42,0x35,0x43,0xe4,0x8b,0x69, + 0x92,0x46,0xb4,0x3c,0xa1,0xb3,0xf3,0x22,0x2a,0xce,0x81,0x7e,0xf1,0xdc,0xc3,0x8b,0xe3,0x9f,0x12,0xd6, + 0xbb,0x02,0x52,0xfe,0x4e,0x1e,0x1c,0xff,0x8c,0x68,0x0f,0xb1,0x2f,0xfd,0x5e,0x3d,0x55,0x69,0x6f,0x2a, + 0x7f,0xc8,0xc0,0x46,0x62,0x52,0x4a,0x35,0x4d,0x4c,0x4b,0x6b,0x45,0xc4,0xd6,0xe8,0x12,0x4e,0x21,0x4a, + 0xaa,0x5c,0x58,0xa4,0x40,0x0f,0x2a,0x9d,0x67,0x79,0x96,0x12,0xd5,0xc5,0xb3,0xef,0xbe,0x3a,0x78,0x43, + 0x58,0x85,0x90,0x59,0xa1,0xb2,0x7d,0x4f,0xa4,0x22,0x53,0xba,0x94,0x96,0x21,0xb0,0xe6,0x45,0xb4,0xd0, + 0xdf,0xbe,0xcb,0xb2,0x53,0x82,0x82,0x97,0x94,0xd2,0x7b,0xfc,0xe6,0x45,0x45,0x27,0xab,0xef,0x86,0x4a, + 0x16,0xfe,0x80,0x5b,0x7f,0x0b,0xe7,0xb5,0xd4,0x73,0x6a,0xa8,0xc7,0x8e,0x6c,0x73,0x4e,0x66,0x72,0xe4, + 0x12,0x48,0xef,0x67,0x45,0xb2,0x26,0x2a,0xa5,0xe7,0x56,0x67,0xa9,0xc7,0x79,0x7f,0x8a,0x68,0x95,0xe9, + 0x4f,0x52,0x32,0x19,0x8d,0x14,0x90,0xa9,0x3f,0x65,0xe9,0xa9,0x95,0x44,0x4c,0xa6,0x60,0xdd,0xef,0x68, + 0xa2,0xe7,0x2a,0x77,0x6f,0x97,0xe8,0x3a,0x95,0x4d,0x50,0xcc,0x5c,0xe5,0xab,0x15,0x7a,0x1b,0x47,0xf9, + 0xe4,0x0c,0x44,0x17,0x7e,0x79,0x3e,0x68,0x23,0x11,0x71,0x4b,0xa7,0x14,0xef,0xb6,0x37,0xbc,0xdb,0x84, + 0xaa,0xe3,0x3d,0xc6,0xe8,0xbf,0x4f,0x0c,0xca,0xa5,0xa7,0xb3,0xbf,0x3d,0x78,0x2c,0xf4,0x20,0x26,0xf6, + 0x25,0x30,0xc2,0x0d,0xf9,0x1f,0xbf,0xd1,0x74,0xb8,0xda,0x94,0xb5,0x86,0xd4,0xb6,0xb6,0xcf,0x18,0xda, + 0x25,0x52,0xf2,0xcd,0xaf,0x2f,0x9f,0xe5,0x94,0x92,0xbf,0x7d,0x46,0xed,0xbd,0x79,0xfa,0xf8,0x9b,0xaf, + 0xbe,0xfe,0xb2,0x47,0xa9,0xbd,0x29,0x27,0xf7,0x28,0x5d,0x4a,0x42,0x37,0xb8,0x59,0xe6,0xe9,0x4f,0xdd, + 0x65,0x9e,0xfe,0x24,0x65,0x26,0x70,0x64,0x8a,0x42,0x57,0x17,0x8f,0x35,0x50,0x77,0xe4,0x7f,0xf1,0xbf, + 0xfe,0xaf,0xa7,0x15,0xa4,0x53,0xe6,0xe7,0x20,0x1b,0xe3,0x74,0xf2,0xb1,0x33,0xfb,0x4c,0x7f,0x15,0x70, + 0x22,0xd8,0xf9,0x31,0xfe,0xd8,0x82,0x27,0xda,0x79,0xb5,0x0c,0x67,0xbc,0xbd,0x7f,0x8e,0xc5,0x89,0xdf, + 0x14,0xe8,0x73,0xd6,0x5b,0x16,0x8c,0x08,0x6d,0x2a,0x72,0xd0,0x23,0xb4,0x30,0xe5,0xa3,0x61,0x9e,0x65, + 0xe7,0xf8,0xbe,0x5c,0x30,0x16,0x52,0x01,0x1c,0x39,0xfb,0x9f,0x74,0xb8,0x0e,0x08,0x6b,0xd1,0xe9,0x4a, + 0x18,0xe5,0xbc,0x87,0x88,0x72,0x04,0xe0,0x40,0x14,0xaa,0x6d,0x1f,0xf3,0xde,0x53,0x9d,0xba,0x60,0x76, + 0x0e,0xc2,0xd8,0x92,0x60,0x5b,0xd0,0x1e,0x8f,0xa2,0xa0,0xe3,0xe0,0x67,0x62,0x5f,0x0b,0xa0,0x3a,0x39, + 0xcd,0x68,0x78,0xb1,0xae,0x04,0x87,0xb6,0x3a,0x5f,0xb4,0xff,0x3b,0x3a,0xd0,0x08,0xc9,0x2d,0xd0,0xd3, + 0x53,0xae,0x1c,0x2c,0xf3,0x2e,0xe3,0xc4,0x48,0x13,0x41,0x49,0x79,0x97,0x30,0x76,0x21,0x07,0x1c,0xba, + 0xae,0x27,0x65,0x40,0xdb,0x9b,0x45,0xbf,0xc1,0x35,0x38,0x45,0xc3,0x91,0x3e,0x85,0x6b,0x44,0x3e,0x5b, + 0x90,0x4c,0xbb,0x47,0x64,0xd7,0x80,0xbd,0xe8,0x04,0xe3,0x2a,0x0d,0xbb,0x28,0x9c,0x67,0x75,0x92,0xb7, + 0x0a,0x5b,0xc7,0x30,0xd1,0xb6,0x25,0xbc,0x42,0x4b,0x19,0xc1,0x22,0xad,0xfc,0x8a,0x0b,0xad,0xe7,0xb5, + 0x88,0xbb,0xa2,0x55,0xa2,0x46,0xd9,0xd5,0xcb,0xbd,0xb4,0xa9,0xb3,0x76,0xc9,0x3a,0x5d,0x69,0x95,0x65, + 0xc6,0xb5,0x7b,0x50,0x05,0xcc,0xac,0x3b,0x07,0xc5,0x85,0xda,0xa3,0xe2,0x02,0xad,0x51,0x09,0x16,0xc3, + 0x39,0xa7,0x58,0x60,0xab,0x44,0x1e,0x53,0x8f,0x68,0x5d,0xe5,0x18,0xd4,0xec,0xde,0x72,0x81,0x3e,0x6b, + 0x34,0x48,0x7b,0x1b,0x0b,0xd7,0xe3,0x60,0x84,0x3d,0xf9,0x06,0xe0,0xd4,0x58,0x53,0xb7,0xc0,0x6c,0x9f, + 0x5d,0x39,0xf7,0x92,0x6f,0x29,0x40,0x07,0x8a,0x83,0x25,0x1c,0x28,0x8c,0x9d,0x2a,0x44,0x67,0xcf,0x54, + 0x76,0x0e,0x98,0xd7,0xc8,0x8d,0x06,0x4f,0x87,0x66,0x92,0x46,0xcc,0x8f,0x70,0x75,0x9b,0x96,0x87,0x87, + 0xbe,0x61,0x79,0xb8,0xe0,0xe6,0xf5,0xe1,0xa2,0x9b,0xd6,0x87,0xb8,0xe5,0x74,0x6e,0x18,0x7f,0xa2,0xd1, + 0x17,0x2d,0x59,0xcb,0xa7,0x09,0x5b,0xe2,0xbf,0x27,0x6b,0xf9,0x96,0xc8,0xba,0xec,0x34,0x4e,0x4f,0xe6, + 0xc9,0x79,0xef,0x34,0xa6,0x73,0x9f,0x68,0xb3,0x93,0xf8,0xcf,0xe4,0xb4,0x77,0xc1,0x07,0xc5,0x94,0x32, + 0x5c,0xb2,0x1c,0xc1,0x90,0x25,0x71,0x97,0xf8,0xe5,0x7b,0xca,0x5d,0xa8,0x6e,0x83,0x24,0x21,0x62,0x70, + 0x91,0x26,0xf1,0xf2,0x8a,0x7e,0x4f,0x63,0x09,0x53,0x84,0x1e,0xa3,0xd3,0x44,0x1b,0xc4,0x7f,0xc6,0x10, + 0xc0,0xd0,0x1a,0xf4,0x52,0xea,0x4a,0x9c,0x36,0xc4,0x2f,0x07,0x59,0x0c,0x32,0xa7,0x91,0xae,0x45,0x30, + 0x4f,0x4c,0x07,0xb3,0x45,0x31,0x8f,0xa2,0xf4,0x2f,0x49,0x63,0x7e,0x49,0x4a,0xea,0xd9,0xe4,0x2c,0x3a, + 0x8f,0xe7,0x9f,0x2e,0x92,0xa9,0x97,0x52,0x72,0x99,0xb7,0xd4,0x89,0x05,0x9c,0x90,0x4c,0x9b,0xd2,0x99, + 0x84,0x3a,0x79,0x1a,0x5f,0x12,0xab,0x85,0xb1,0x74,0x49,0x68,0xa2,0x19,0x41,0x46,0x96,0xb6,0x05,0x34, + 0x3f,0xd2,0xc7,0xd3,0x18,0xf3,0x1f,0xe7,0x2a,0x1a,0x01,0x11,0x36,0xe7,0xa8,0xa7,0x29,0xa8,0x79,0x57, + 0xe5,0xa0,0xcc,0xf3,0x2c,0x47,0xa6,0xba,0xb0,0xe6,0x15,0x7a,0x82,0x9a,0xa4,0x2b,0x9f,0x22,0xae,0xf9, + 0x7e,0x99,0x4c,0x93,0xd3,0x78,0x83,0xb8,0x86,0x38,0x16,0xec,0x8a,0x18,0x10,0x82,0xf5,0x9c,0xcf,0x40, + 0xe5,0x2b,0x99,0x4c,0x9c,0x94,0x2d,0x99,0xcd,0x81,0xe4,0xd5,0xc2,0x9a,0x38,0x9e,0xb3,0xe7,0x96,0x98, + 0xea,0x49,0x3f,0x4f,0x6a,0xf3,0x7e,0xda,0x94,0xda,0xfc,0xc4,0xb0,0xd0,0x23,0x7c,0xd1,0xbb,0xcc,0x70, + 0x46,0x50,0x9e,0x8a,0x41,0x8f,0xe3,0x4a,0x5a,0x73,0x59,0x9b,0xaa,0x18,0x6e,0xf8,0x92,0xa2,0x25,0xb7, + 0x39,0x95,0x99,0xaf,0x57,0x73,0x1a,0x1b,0x0e,0x26,0xce,0xa7,0x0d,0x01,0xce,0x41,0x2d,0x2b,0x0d,0x4c, + 0x40,0x24,0x4e,0x6f,0x96,0xe2,0xc4,0xd2,0x46,0x9d,0x2b,0xd7,0x85,0x98,0xeb,0xa6,0xad,0x70,0x99,0xc5, + 0xa7,0x3a,0x4d,0x73,0xde,0xb4,0xe4,0x57,0x54,0x32,0xce,0xab,0x16,0xea,0x1c,0x3c,0x24,0x08,0xf1,0xac, + 0x25,0xcf,0x79,0x17,0x15,0xa5,0x34,0xda,0x90,0xe7,0xfc,0x8e,0xf3,0x78,0x71,0x9e,0x5d,0x14,0x65,0x5d, + 0xa6,0xc3,0x1f,0xa0,0x8e,0x7c,0x1a,0x41,0xb9,0xd5,0x16,0xed,0xe8,0x9e,0x83,0x1c,0x4d,0x1b,0xa2,0x1d, + 0xda,0x96,0xd3,0xe8,0xb4,0x21,0xdb,0x79,0x46,0x13,0x63,0x52,0x6d,0xd9,0x4e,0x16,0x5b,0x1f,0x2a,0xd1, + 0xce,0x33,0x6e,0xd8,0x7c,0xd0,0xb2,0x9d,0x77,0x39,0x35,0xad,0x13,0x2b,0xe1,0xce,0xef,0x84,0xd1,0xab, + 0xcc,0x5a,0xb8,0xf3,0x7b,0x26,0x1d,0xa9,0x09,0x77,0x9e,0xc4,0x57,0xf1,0x29,0x2b,0xeb,0x36,0xc5,0x3b, + 0x6a,0xe9,0x4f,0x54,0x86,0xcd,0xcb,0xdf,0x90,0xf4,0x3c,0x69,0x15,0xa8,0x01,0xc1,0x6d,0x02,0x9f,0xd7, + 0x74,0x46,0x59,0x05,0x88,0xef,0x25,0xb8,0x85,0x08,0xb4,0xd7,0x04,0x44,0x26,0x8b,0xe2,0x19,0x81,0xed, + 0x6d,0x32,0x9f,0x8d,0xc0,0xd5,0x2d,0xf3,0xd1,0x10,0x63,0x89,0x7c,0x2c,0xe0,0xab,0x0b,0x7e,0x6a,0xe0, + 0xb7,0x51,0xfa,0x43,0xbd,0x3c,0x23,0x9a,0xae,0x4b,0xfa,0xf3,0x58,0xe4,0x3e,0xf1,0xad,0x62,0x9f,0xef, + 0x30,0x7e,0x88,0x7d,0x0c,0xb6,0x39,0x8d,0xe7,0xc9,0xfb,0x73,0x0c,0x2d,0xe9,0xa8,0xda,0x08,0x7d,0x9e, + 0x64,0x10,0x9d,0xa5,0x51,0x94,0xd3,0x62,0xa6,0xb1,0x35,0xf0,0x2e,0xf1,0x8f,0xe4,0x50,0xd9,0x51,0x72, + 0xa3,0x1c,0xa8,0x42,0xb6,0x06,0x53,0x5a,0xf8,0xd7,0x3e,0x28,0x1b,0x92,0xa0,0xc7,0xb6,0x6c,0xa2,0x06, + 0x1c,0x56,0x36,0x21,0xeb,0x69,0xf7,0x9c,0x13,0xa5,0x0c,0xa6,0x38,0x93,0xe1,0xf6,0x88,0x3b,0xc3,0x4c, + 0x88,0x6c,0xa8,0x22,0xe0,0x62,0x1c,0xcf,0xd1,0x8c,0xbf,0xd1,0x51,0x19,0xe5,0x11,0xe1,0x40,0x1e,0x05, + 0x1f,0xb2,0x20,0x2d,0x8c,0x7c,0x22,0x96,0xf3,0x03,0x55,0x4d,0x63,0x2b,0xd5,0xc0,0x35,0x22,0x45,0xf4, + 0x9e,0xd5,0x4b,0x11,0xa7,0x4f,0x59,0x68,0x06,0x23,0x5e,0xed,0xde,0x65,0x12,0x75,0x8a,0x88,0xe8,0x3b, + 0xb5,0xfc,0xde,0xee,0xd9,0x59,0x7c,0x82,0xd3,0xef,0x02,0x83,0x19,0xf4,0xde,0xca,0x78,0xa5,0x5f,0x90, + 0xe2,0x10,0xd5,0x97,0xa0,0xaf,0x3c,0x4e,0xbb,0x0f,0x7e,0x8f,0x90,0xc7,0x29,0x1d,0xf2,0xea,0x68,0x91, + 0x63,0xf4,0x84,0x08,0xca,0x64,0x9e,0x9c,0x4e,0x81,0xb0,0x7b,0x3f,0xc4,0xbd,0xf3,0x25,0xcd,0xa3,0x55, + 0x5b,0xd6,0xd8,0x42,0x53,0x9c,0x04,0x38,0x15,0x0c,0xff,0x28,0x53,0x7f,0x9e,0x52,0x22,0x8d,0x69,0x9a, + 0x2f,0xcf,0x31,0x1d,0x65,0x56,0xa2,0xeb,0x53,0x91,0x0f,0x45,0x38,0x76,0x69,0x12,0x9b,0xe2,0x21,0x6b, + 0x8d,0x41,0x79,0x30,0x65,0xab,0x8e,0x63,0x2b,0x9f,0x2c,0x9f,0xca,0xdb,0x5e,0x02,0x54,0x4e,0x53,0x14, + 0xd3,0xb1,0xda,0x90,0x11,0xbd,0x5b,0xce,0x7b,0x67,0x09,0x53,0x02,0xb4,0xc5,0x31,0x23,0x4c,0x40,0x50, + 0xb6,0xab,0x68,0x72,0x56,0x5e,0x81,0x64,0xa5,0xd1,0xf9,0x48,0xb1,0xf0,0x10,0xcb,0x87,0xcb,0x25,0x4f, + 0x6b,0x8f,0xc0,0x36,0xc7,0x81,0xcd,0xd3,0x51,0x6c,0x14,0x1b,0xfd,0x6a,0x2a,0xd4,0x82,0xa3,0xef,0xe2, + 0x93,0x7c,0x49,0x14,0x60,0x25,0x3c,0x3a,0xab,0x09,0x8f,0x68,0x4e,0x19,0xc0,0x58,0x80,0x43,0x5c,0x2d, + 0x4d,0x59,0x4c,0xdb,0xff,0x4f,0xc0,0x5c,0x94,0xb6,0x86,0x49,0x8c,0x24,0x01,0x20,0x15,0x4a,0xde,0xa7, + 0x0c,0xbb,0x57,0xc9,0x1c,0xc3,0xb6,0xd6,0x0a,0xc5,0xa0,0x99,0x4f,0x03,0xa2,0x3f,0x7f,0x26,0xef,0xf1, + 0xfd,0x2a,0xa6,0x61,0x5f,0x01,0x76,0xe9,0xe5,0x22,0x8e,0x15,0x25,0x7a,0x02,0x47,0x5c,0x6d,0x41,0x52, + 0x1e,0x6f,0x16,0x23,0x41,0x8e,0x72,0xbb,0x20,0x29,0xba,0xd8,0x20,0x48,0x7a,0x0b,0x52,0x8e,0xfa,0x31, + 0xd5,0xa2,0x24,0xb4,0xb5,0x51,0x90,0xd4,0x94,0x24,0xbd,0x9f,0xd6,0x25,0x49,0xf1,0x4d,0x82,0xa4,0x08, + 0x26,0x0a,0xb4,0x0f,0x08,0xae,0x18,0x41,0xfd,0x05,0x79,0xd2,0x49,0xf2,0xfe,0x2a,0xce,0x19,0x12,0x3f, + 0x45,0xa4,0xf4,0x4e,0xa8,0xf0,0x2e,0x91,0x52,0x6a,0x89,0x94,0x9e,0x10,0x78,0x4d,0xcb,0xf8,0x94,0x10, + 0xca,0xd4,0x12,0x2b,0xe1,0x62,0xdd,0x4e,0x34,0xfc,0x96,0x9d,0x1f,0x82,0xa5,0x2a,0x23,0x2d,0xf9,0x59, + 0x84,0x0d,0x49,0xdb,0xee,0x24,0x2a,0x08,0xa1,0x80,0xa3,0x10,0x6e,0x2c,0xee,0x94,0x34,0xfd,0x9e,0xc5, + 0x3c,0x9c,0xbf,0x2e,0x69,0xb2,0x18,0xcf,0x5b,0x24,0x4c,0xb5,0x9a,0x6d,0xf4,0xc1,0x68,0xc2,0x3e,0xca, + 0x88,0xc8,0x3f,0xfd,0xef,0x90,0x32,0x9d,0xcf,0xb3,0xff,0x77,0x09,0x99,0x1e,0x03,0x1b,0xe7,0xcc,0x0b, + 0x12,0xac,0x11,0x46,0x17,0x6c,0x71,0xc9,0x5b,0xbf,0x4e,0x24,0xd3,0xd6,0x67,0xee,0x4f,0xe5,0x29,0xd5, + 0x59,0x73,0xa6,0x58,0x09,0xe4,0x85,0xa8,0x49,0x8e,0x94,0x05,0xa0,0x82,0x4a,0x10,0xf0,0x96,0x8c,0xbd, + 0xff,0x14,0xec,0x67,0x24,0x4e,0x17,0xc0,0x05,0xaa,0x8b,0x94,0x9d,0xf3,0x4d,0xa9,0x55,0x48,0x97,0xce, + 0x51,0xaf,0x92,0x39,0x15,0x5a,0xe8,0x24,0x28,0x11,0x34,0x02,0x0e,0x60,0x33,0x24,0x40,0xde,0xa7,0x89, + 0x9d,0x80,0xd1,0x58,0xa4,0xa8,0x90,0x30,0x73,0x13,0x7a,0xc0,0xc0,0xfb,0xd3,0xdb,0x85,0x4f,0x60,0xdc, + 0x14,0x2f,0x6c,0x04,0x4f,0xea,0x0c,0x53,0x3b,0xa1,0x2d,0x73,0x42,0x19,0x8b,0x35,0x51,0x8c,0x11,0x23, + 0x85,0x8e,0x92,0x5a,0x46,0x63,0xb5,0x74,0x5b,0x91,0xba,0x84,0x03,0x05,0x6b,0x34,0xe5,0x2d,0xa5,0x9b, + 0x62,0x0e,0x94,0x6f,0x52,0xc8,0x37,0xd5,0xd1,0x12,0x47,0x7d,0xc2,0x78,0x99,0xb3,0x6f,0x08,0xa5,0x6e, + 0x1b,0xb0,0x2a,0xd3,0x96,0x4d,0xa1,0xa0,0x8d,0x13,0xea,0xdd,0x6b,0x4a,0xa6,0x9e,0xb3,0x88,0x10,0xf4, + 0x6d,0x5a,0x54,0xe8,0x95,0x01,0x7e,0x83,0x78,0x8a,0x27,0x14,0x27,0xe0,0x0d,0xbd,0x6a,0x4a,0xa8,0x7e, + 0xac,0xb0,0xa0,0x25,0x92,0x4a,0x35,0xb5,0xb3,0xb0,0xa6,0xee,0x2f,0xac,0x9e,0x3d,0x7d,0x7f,0x79,0xf9, + 0xa4,0x92,0xf5,0x7a,0x5d,0x45,0x3f,0x61,0x59,0xce,0xe3,0xc5,0xc2,0xf5,0xae,0xa1,0x4d,0x54,0xe9,0x37, + 0x39,0x93,0xb3,0x78,0x72,0xee,0xf8,0xd7,0x3a,0x8a,0x4f,0x70,0xf7,0x21,0xb1,0xfa,0xbd,0xc9,0x9c,0x28, + 0x8f,0x50,0x7d,0xed,0x05,0xea,0xf5,0xba,0xc7,0x09,0xc4,0x77,0x28,0x17,0xe9,0x6b,0xa7,0xf7,0x4f,0xda, + 0xaa,0xb8,0xa6,0x0d,0x9d,0x33,0x3a,0x7f,0xe7,0x31,0x21,0x20,0x90,0xf2,0xf4,0x61,0x32,0x4f,0x26,0xe7, + 0x3a,0xf9,0x29,0x5e,0x9c,0x1e,0x9d,0xc2,0x6c,0x27,0x1d,0x3a,0x7b,0xce,0xa3,0x5a,0x4b,0x59,0x5a,0xe6, + 0xd9,0xbc,0x9e,0xc8,0x61,0x76,0x28,0x69,0x97,0xd2,0xf4,0x5f,0xeb,0xf3,0x3c,0x3a,0x89,0xa9,0xc4,0xf5, + 0x75,0x8f,0x49,0xfa,0xde,0x7a,0x6d,0xe7,0xbc,0x6b,0xbc,0x98,0xf2,0xd1,0xab,0xfc,0x93,0x8a,0xeb,0x40, + 0xf1,0x26,0xf8,0x24,0x23,0xa4,0x12,0xa5,0xc6,0xab,0x29,0xa2,0x0e,0xf8,0x4a,0x6f,0x2b,0xb8,0xb6,0xfa, + 0xdd,0x72,0x1c,0xcb,0xb5,0x84,0x5b,0xd5,0xb3,0x68,0xda,0xde,0x21,0xe4,0x41,0x73,0x9a,0xa4,0x0b,0x5c, + 0x33,0x55,0x5f,0xe1,0xbf,0xcc,0x9e,0x9c,0x5a,0xe8,0xad,0xfb,0xf7,0xe0,0xb1,0x88,0x66,0x11,0x8e,0xc9, + 0xb5,0x33,0x2d,0xab,0x71,0x68,0x3e,0x22,0xca,0x21,0x68,0x46,0x6d,0x76,0xa8,0xb4,0x1f,0x1b,0x6b,0x49, + 0xd8,0x3e,0xc9,0x36,0xae,0xa5,0x7c,0xdd,0xbc,0x96,0x61,0xd8,0x4b,0xa6,0xff,0x9f,0x5d,0x51,0x89,0x5c, + 0x33,0xe5,0xdf,0xcf,0x5a,0x44,0x7e,0x4c,0xa6,0xb7,0x2d,0xe0,0x5a,0x69,0xde,0xc5,0xac,0xbf,0xaf,0x22, + 0x47,0x54,0x2e,0x98,0xa2,0xcb,0x84,0x48,0xd7,0x2c,0x1f,0xcc,0xe9,0xd8,0x5d,0x46,0xa7,0x71,0xd3,0x1f, + 0x92,0xc3,0x84,0xa2,0xf6,0xae,0x64,0xbc,0x51,0x78,0x43,0x55,0x9d,0x7b,0x1d,0x13,0x99,0xf7,0x1f,0xb4, + 0xf3,0x89,0x68,0xa6,0xaa,0x83,0xd8,0x67,0x6f,0x45,0xd7,0x29,0xa1,0x81,0x59,0xa2,0xd0,0x0f,0x8f,0x52, + 0x0b,0x82,0xb7,0xf6,0xfc,0x42,0x84,0xab,0x5b,0xfb,0xea,0x49,0x10,0x1b,0xbd,0xaa,0x3c,0x2f,0x08,0x53, + 0x4f,0xd0,0xaf,0xc0,0x59,0x69,0x8c,0xf9,0x26,0xcf,0x4e,0x99,0x40,0xa1,0x6c,0x72,0x6c,0x1e,0x44,0x27, + 0x88,0xda,0x23,0x02,0x43,0xad,0x0e,0x78,0x5d,0x89,0xb6,0x55,0x65,0x2c,0xb0,0xd5,0x9f,0xed,0xc4,0x75, + 0x5d,0x8c,0xbb,0x08,0xae,0x63,0x25,0x9e,0xa0,0x26,0x12,0x62,0x55,0xf6,0x06,0xfc,0xaf,0x92,0xd7,0xd6, + 0x72,0x28,0x99,0xe6,0x5e,0x3d,0xeb,0x5a,0xa1,0x5e,0x6a,0xc3,0x60,0x5f,0xc4,0x4d,0xac,0x24,0x8e,0x10, + 0x9b,0xd8,0xf5,0x94,0x75,0x89,0x8a,0xd8,0x71,0xea,0xec,0xf0,0x46,0x27,0x82,0x84,0x5a,0x99,0x78,0x93, + 0x6c,0x67,0x43,0x7d,0xd3,0x78,0x4e,0xdc,0x49,0xab,0xea,0xba,0xd8,0xc1,0xb0,0x2c,0x9c,0xcf,0x16,0x27, + 0x60,0xc9,0x4a,0x33,0x16,0xe6,0xf4,0x38,0x8f,0xe1,0xf3,0xa4,0x11,0xf0,0x77,0x5b,0x3c,0x1f,0xfc,0x6e, + 0xf1,0x4b,0xfc,0xae,0x99,0x24,0x81,0x75,0xcd,0xe0,0x54,0x6c,0x84,0x98,0x07,0x5b,0xec,0xc3,0x97,0x3e, + 0xa1,0x03,0x05,0x3c,0x04,0x2e,0xd2,0x24,0x1d,0x1d,0x44,0x03,0xc5,0x53,0xa2,0xd4,0xe5,0x4b,0x3c,0x05, + 0x15,0x2e,0x7d,0x5e,0x28,0x4a,0x5b,0xb2,0x5e,0x5d,0x80,0x66,0x36,0xcf,0x44,0x0b,0x4b,0xd3,0x16,0xb5, + 0xab,0x3f,0x56,0x04,0x2d,0xa7,0xd8,0x64,0x2b,0x2d,0xbf,0x96,0x2e,0x63,0x74,0xfa,0x99,0xfd,0x7b,0x04, + 0x98,0x18,0x7c,0x80,0xcb,0x48,0x73,0xd8,0x82,0x7d,0x52,0x42,0x50,0xfe,0x92,0xc7,0xb8,0x05,0xbf,0x8c, + 0x75,0x02,0x4d,0x3b,0xfb,0xb4,0x6c,0x05,0x8d,0x56,0xce,0xf7,0xca,0x81,0xbd,0x7b,0x50,0x4a,0x85,0xb8, + 0x32,0x51,0xe0,0x18,0x93,0xc0,0xe9,0xb3,0xeb,0xf0,0xa3,0xa3,0xdd,0xf3,0x29,0xdd,0x5b,0xdd,0x17,0x78, + 0xcd,0x38,0xd3,0x8e,0x31,0xf6,0x25,0x34,0x79,0x39,0x30,0xdb,0xc7,0x84,0x13,0xcd,0xcb,0x9f,0x1a,0x3b, + 0x0f,0xc6,0xb4,0x83,0x26,0x6d,0xc3,0x89,0xea,0x7e,0x82,0x27,0x81,0xfd,0x82,0xc1,0xe6,0x01,0x91,0x41, + 0xad,0xbd,0x2c,0x7d,0xde,0xda,0x1f,0x36,0x54,0xef,0xd9,0xc0,0x78,0x6f,0x98,0x3d,0xdc,0x7f,0xf0,0x80, + 0x7e,0xfa,0xe1,0xfe,0x97,0x9e,0xf2,0xfa,0x9a,0x89,0xdb,0x8f,0x2c,0xdc,0xb9,0x87,0x4f,0x0f,0xc3,0x7b, + 0x26,0x47,0x62,0x72,0x94,0x83,0x6a,0x66,0xc3,0x9c,0xda,0xac,0x4d,0x6d,0x98,0x50,0x8a,0x45,0x1e,0xbb, + 0xde,0xa0,0x3c,0x8b,0x53,0xdb,0x7b,0x97,0x7c,0xaf,0xa8,0xc3,0x8d,0x59,0x84,0x0a,0xdc,0xf8,0xd9,0x26, + 0x92,0x36,0x66,0xaa,0x93,0x42,0x9b,0x9b,0xc2,0x8c,0x75,0x7e,0x2d,0xca,0x6c,0xd1,0xb9,0x30,0x0a,0x8b, + 0xd1,0x0c,0xaf,0x3d,0xeb,0x5f,0x75,0x80,0x14,0x67,0xd9,0xd5,0x2b,0x1b,0x05,0x77,0x86,0x92,0x02,0xb0, + 0xa5,0x35,0x60,0x0b,0xaf,0x15,0x8e,0x27,0x44,0x2e,0xfc,0x46,0xb9,0x56,0x71,0xeb,0xd3,0x36,0x54,0x6e, + 0x6f,0x4f,0x88,0x12,0xc9,0xf1,0x4c,0x54,0xac,0xdb,0x91,0x03,0x81,0x44,0xdb,0xc0,0x5c,0xc4,0xa5,0x2e, + 0x63,0x8d,0xb7,0xd1,0x13,0x41,0x07,0x1b,0xb6,0xc2,0xda,0xff,0x32,0xbe,0x0f,0xfa,0x24,0x99,0xc6,0xdd, + 0xe3,0x54,0xa7,0x65,0x47,0x95,0x3c,0x9a,0xd6,0x47,0x35,0x20,0xb7,0x36,0xa2,0xee,0x5c,0xca,0x40,0xa9, + 0xbb,0x67,0x86,0x68,0x22,0xfc,0xc1,0xb7,0xce,0x0d,0xa7,0xf0,0x9a,0x29,0x9c,0x67,0x88,0xa2,0xa5,0xcc, + 0xdb,0x1c,0x87,0x03,0x91,0x13,0x4a,0x22,0xa2,0xa8,0x88,0x47,0xce,0xf7,0x07,0x07,0x6f,0x7a,0xfa,0xb5, + 0x87,0xb0,0x8b,0x3d,0xa7,0x5f,0x65,0x18,0xa8,0xc3,0x07,0x29,0xcc,0x95,0x8e,0xa0,0x2c,0xaa,0xbf,0x3a, + 0x81,0x09,0x2c,0x21,0x3d,0x6d,0x42,0x03,0xbc,0xc6,0xbb,0xa5,0xd7,0x77,0x8e,0xd2,0xa3,0xd4,0xe9,0xe7, + 0x3e,0x07,0x1d,0xb0,0x19,0xcb,0x1b,0xcd,0x22,0xa2,0x0f,0x49,0xc6,0x9e,0xd4,0x5c,0x67,0x37,0x5a,0x24, + 0xbb,0xea,0x70,0x75,0x9a,0x20,0xdc,0x15,0x6c,0xb1,0x54,0x0e,0xe1,0xa9,0x0b,0xda,0xbe,0x40,0x92,0x08, + 0x7e,0x07,0x2a,0x04,0xc6,0xa0,0x3e,0x81,0x03,0x50,0x6a,0x70,0x4f,0xc7,0x00,0x69,0x6f,0x70,0xc7,0x53, + 0xdd,0xb6,0xd8,0xbd,0xcf,0xea,0x79,0x75,0xfc,0x7d,0x6e,0xe7,0xab,0x92,0x7f,0xa5,0xff,0x96,0x7e,0xa7, + 0x1e,0x82,0x62,0x3b,0x3f,0xab,0xfb,0x4a,0xab,0xe4,0x33,0xbb,0x2e,0xa5,0xfe,0x4a,0xb7,0x95,0x2e,0x9b, + 0xee,0x72,0x8d,0x53,0xfc,0xac,0x8e,0x6b,0x22,0x64,0x97,0x95,0xbd,0x3b,0xfa,0x0f,0x27,0x56,0xdd,0x43, + 0xd0,0xc8,0xcb,0x90,0x43,0x92,0x3c,0x50,0xaf,0xab,0x55,0x9b,0x04,0x52,0x39,0xea,0xa9,0xab,0xd5,0x5e, + 0x8d,0x16,0x6a,0x7b,0xe9,0x32,0xc5,0x24,0x93,0x67,0x47,0xbc,0x1e,0xe6,0x0f,0x1b,0x9f,0x4d,0xd8,0x6b, + 0x3b,0x42,0x79,0x2d,0xc7,0x61,0x3e,0x26,0x6c,0x6b,0xf2,0x8b,0x7f,0xf8,0x13,0xd6,0xa0,0x48,0x41,0x8b, + 0x24,0x83,0xea,0xc5,0xea,0x1d,0x02,0xcb,0xd2,0x37,0xeb,0x0d,0x1f,0xf5,0xe8,0x93,0xda,0xc0,0xcd,0xe9, + 0x58,0x2f,0xf0,0x68,0x6f,0xb4,0x87,0x14,0x35,0x6c,0xfb,0xd0,0x6c,0x65,0x34,0xd9,0x88,0xb6,0xb9,0x90, + 0x0b,0x56,0x77,0x7f,0x3b,0xa1,0xa1,0x7c,0x2c,0x5e,0xcf,0x7e,0x8d,0xe3,0x73,0xef,0x11,0xf5,0x4d,0xdd, + 0xb2,0xba,0xf7,0x5a,0x9f,0xae,0xcc,0x55,0xab,0xfb,0xa0,0x5d,0x4e,0x5f,0xb7,0xba,0x5f,0xb7,0xbe,0xcd, + 0xe4,0xc6,0xd5,0xdd,0xff,0xaa,0xf5,0xa9,0xd0,0xf7,0xae,0xee,0xfd,0x76,0x83,0x85,0x5c,0xbe,0xba,0x5f, + 0xb5,0x9a,0x83,0xd7,0xfe,0x6a,0xc2,0x31,0xae,0x10,0x06,0x95,0x9f,0x0e,0xf0,0x36,0x84,0x1b,0xb0,0x6f, + 0x48,0x38,0xfe,0x1a,0xe0,0x0b,0x51,0xff,0xb9,0x5b,0xd7,0x8c,0x45,0x8a,0xff,0x95,0x3d,0x5c,0xef,0x7d, + 0x85,0x7e,0x98,0x8c,0xfd,0x3c,0xec,0xc3,0xe6,0x32,0xdd,0x9b,0xb7,0x6b,0x27,0x79,0xb6,0x11,0xdd,0x16, + 0x42,0x43,0x80,0xcf,0xe2,0xc8,0x06,0xec,0x65,0x6b,0x6f,0x18,0xe9,0x4d,0xa5,0xf6,0x52,0xa4,0xf7,0x52, + 0xa1,0x46,0x0a,0xe3,0x78,0x76,0xf0,0x9d,0x8f,0x88,0x8a,0x08,0x8a,0x2d,0x7a,0xe2,0xe0,0x6a,0x08,0x65, + 0x9d,0xd5,0x22,0x37,0x14,0x88,0x4b,0xdd,0x0f,0x8b,0x35,0x0e,0xcb,0x98,0xe3,0x8b,0xc7,0x83,0x1a,0xf1, + 0x2e,0xa1,0x4f,0x67,0xf3,0x0c,0x81,0x24,0x76,0x75,0x4c,0x11,0xcf,0xca,0xc6,0xd0,0xb2,0x6e,0x49,0x14, + 0xbb,0x67,0x29,0x56,0x04,0x30,0x07,0x65,0x91,0x47,0x8c,0x52,0x66,0x6d,0x41,0xbc,0x55,0xfb,0xcc,0xf1, + 0x2b,0x9e,0xcb,0x3e,0x51,0x06,0x3a,0xb5,0xc6,0x84,0xd5,0x72,0x58,0x1f,0x0c,0x6b,0x56,0xcb,0xa0,0x12, + 0x85,0x59,0xab,0x7f,0xa1,0x94,0x8a,0x73,0xab,0x7d,0xd2,0xa9,0xc2,0xca,0xd5,0x3e,0x21,0x05,0x9c,0x5d, + 0x2d,0x31,0x59,0xd8,0x4c,0x5e,0xbd,0x15,0x93,0x6e,0xf8,0xbe,0xda,0x77,0x95,0xb8,0x6e,0x82,0x0f,0xe2, + 0x5f,0x7d,0x22,0x34,0x37,0x96,0x85,0x40,0xb9,0x45,0x42,0x57,0x0b,0x41,0x84,0xb2,0x5e,0xc9,0xee,0x93, + 0xd6,0xf0,0x5e,0x66,0x15,0xcb,0x9b,0x56,0x51,0x2b,0x74,0x96,0xea,0x38,0x6d,0xb6,0x9d,0x32,0xfd,0xde, + 0x45,0x77,0x39,0x35,0x75,0x36,0x6c,0x40,0x3d,0xde,0xb2,0x73,0xbc,0x65,0x6d,0xbc,0xe6,0x08,0xee,0x62, + 0x17,0x6a,0x63,0xed,0x64,0xeb,0x36,0xc2,0xae,0xe2,0x28,0x88,0xcf,0x3b,0x8d,0x69,0x4b,0x9a,0x04,0x43, + 0xb0,0x6b,0xae,0xdc,0x6e,0x52,0x85,0x0a,0xa9,0x97,0xee,0xf7,0xfd,0x7a,0x82,0x8a,0x1c,0xb9,0x1f,0x98, + 0x64,0xd3,0x9d,0xd0,0xd9,0x75,0xac,0xa8,0x20,0xbd,0x7b,0x9d,0x79,0x76,0x6a,0x79,0xee,0x77,0xe6,0x39, + 0x3a,0xaa,0x65,0x7a,0xd0,0x99,0x69,0xe5,0xf8,0xcd,0x91,0xae,0xd7,0xfe,0xbd,0x2f,0xf7,0x78,0xba,0xda, + 0xbc,0x96,0x3d,0x5b,0xcc,0x17,0x98,0x49,0x50,0x4e,0x17,0xaa,0x29,0xa2,0x1a,0x08,0x33,0x6a,0x56,0x19, + 0xf7,0x8b,0x42,0xa1,0x77,0xf9,0x73,0xae,0xc4,0x4e,0x7a,0x9b,0xea,0x43,0x5c,0x3b,0x0d,0xb4,0xf5,0xe9, + 0x1c,0x13,0x82,0x73,0x43,0x59,0xe1,0x05,0xd4,0x2c,0xab,0xf8,0x98,0xf7,0x74,0x1c,0x4c,0xbd,0xe5,0x08, + 0xd2,0x86,0x6a,0x19,0xd4,0x04,0xf1,0x8f,0x09,0xc2,0x29,0x4e,0x2d,0xf4,0x0c,0xd7,0x0b,0xa3,0x0f,0x12, + 0x75,0x33,0xd0,0x32,0xe7,0xae,0x7e,0xae,0xbb,0xa7,0xe0,0x20,0xfe,0x50,0xfe,0xb5,0x69,0xe8,0xf1,0x76, + 0x69,0x67,0x83,0xf2,0x83,0x16,0x43,0x4c,0x1d,0xef,0x33,0xe7,0xe7,0x13,0xea,0x86,0xa6,0x25,0xd5,0xab, + 0xe6,0xeb,0x13,0x0a,0x88,0x22,0xa6,0x2e,0x72,0xef,0x53,0x8a,0xd4,0xf4,0x33,0x75,0x49,0x3d,0xf3,0xbd, + 0x4d,0x63,0x49,0x16,0x1a,0xbe,0x3f,0xa1,0x89,0x9a,0x92,0xa7,0x6e,0xe2,0xcb,0xcf,0x28,0x99,0x88,0xd2, + 0xa7,0x2e,0xda,0x5c,0xfe,0xdb,0xd6,0xa7,0x02,0x0d,0x84,0xa7,0x6a,0x5d,0x94,0xdd,0x7c,0x8c,0x8e,0x2c, + 0x21,0x41,0xdc,0x92,0x44,0x31,0xfb,0x1f,0x6c,0x66,0xe7,0x76,0x95,0x5c,0xf8,0x33,0xe9,0xab,0x6a,0x2c, + 0x9f,0x4b,0x5a,0x35,0x3b,0xd8,0x85,0xa1,0x6f,0x1f,0x11,0xa8,0x8d,0xc6,0x05,0x61,0xf7,0x31,0xc5,0x9b, + 0x48,0xcd,0x94,0x8d,0xfa,0xf7,0x58,0x6a,0x67,0xcb,0xcb,0x43,0x15,0xae,0x9d,0x2f,0x00,0xe0,0xf8,0x04, + 0xca,0x87,0x43,0xf6,0x3e,0x00,0x5f,0x46,0xce,0x2c,0x81,0x9d,0xb7,0x91,0x2c,0xd2,0x64,0x7e,0x2b,0x91, + 0xd2,0x9e,0x7c,0x7c,0xc1,0x9f,0xa5,0x1f,0xcf,0x91,0x8d,0x03,0xd2,0xc5,0x05,0x5c,0x9e,0x28,0xc1,0x05, + 0x8b,0xb3,0x69,0x40,0xc1,0xfd,0xaf,0xe2,0x07,0x7e,0x96,0xfe,0x52,0x97,0xd5,0xd7,0xbc,0x63,0x37,0x3b, + 0xc6,0xe4,0x57,0x0e,0x7b,0x72,0x77,0x7f,0x6f,0xef,0x0b,0xc1,0xcc,0xf1,0x74,0x17,0xe1,0x68,0xcb,0x08, + 0xd1,0xfe,0x86,0xad,0x63,0xb7,0xba,0x12,0x85,0x9f,0xd6,0xff,0xf3,0x67,0x6e,0x7d,0x31,0xba,0x8f,0xdd, + 0xc6,0xb0,0x2c,0x59,0x28,0x9e,0x6f,0x9d,0x59,0x9a,0x55,0x2a,0x47,0x30,0x8c,0xd5,0x5f,0x8b,0x3c,0x59, + 0xc9,0x55,0x6f,0x3b,0xad,0x11,0x91,0xb3,0x43,0x1c,0x0b,0x56,0x50,0x42,0x98,0x34,0x24,0xb2,0xc2,0xfe, + 0x37,0xc5,0xb4,0xdd,0xd2,0x38,0x0d,0xa1,0x4a,0x3a,0x49,0xc7,0xe4,0xde,0x9e,0xe7,0xad,0x6b,0x57,0xd1, + 0xdd,0xdd,0xe3,0x40,0x10,0x56,0x2b,0x80,0xca,0x8e,0x66,0x71,0x8d,0xd1,0x2d,0x4c,0xde,0xb3,0x48,0xf0, + 0x76,0x48,0x39,0x8e,0x26,0xc7,0xb3,0xa4,0xd9,0x84,0x94,0xd8,0x84,0x7a,0xd8,0xb6,0x06,0xa5,0xbf,0xf6, + 0x86,0x9a,0x0b,0x28,0xc5,0x49,0xb6,0x66,0xe3,0x51,0xf9,0xc6,0x3a,0xf3,0x7e,0xa8,0x52,0x0f,0xd3,0xb1, + 0xdc,0xa8,0x0d,0x6f,0xe0,0x21,0xf2,0xdd,0x7a,0x1d,0xde,0x5a,0xc4,0x00,0x2a,0x78,0xd4,0xc6,0x66,0x94, + 0x78,0xbb,0xd9,0x14,0xfa,0xbc,0x41,0xd6,0xde,0xa6,0x46,0xc5,0x73,0xc1,0x75,0x43,0xf0,0xb1,0x1f,0xdf, + 0x97,0x7b,0x46,0x44,0x55,0xff,0x1b,0x94,0xb6,0xb5,0xe6,0x37,0x51,0xd9,0x6a,0xb5,0x21,0x93,0x6e,0x2a, + 0x20,0x6c,0x06,0x64,0xc9,0x20,0x90,0xd9,0xbc,0x39,0xab,0x28,0x6f,0xc6,0xf1,0x50,0xab,0x29,0x82,0xdd, + 0x5d,0xdc,0xce,0x28,0x4d,0x1a,0x1a,0x7c,0xc1,0xda,0x34,0x48,0xe3,0xa9,0x38,0x8d,0x33,0x88,0x4b,0x77, + 0xdf,0x17,0xcc,0x60,0x89,0x77,0xe4,0xe0,0x5a,0xeb,0xf3,0x55,0x4d,0xfa,0xe7,0x31,0x78,0x12,0x21,0xdf, + 0x07,0xd5,0x8d,0xcf,0xba,0x35,0x53,0x9b,0x59,0x5a,0xec,0x5c,0x3a,0x0f,0x0b,0x38,0x97,0xaf,0x25,0x98, + 0x00,0x95,0x46,0xd6,0x5e,0xfb,0x0c,0xd7,0x59,0xd4,0xd1,0x8b,0xb8,0xcc,0x3f,0x9a,0x0e,0x0d,0x4d,0x67, + 0xe6,0x51,0x09,0x7f,0x5a,0x51,0xe9,0x57,0x49,0x84,0x4d,0x52,0xfc,0xfd,0x64,0xf9,0x45,0x7d,0x05,0x36, + 0xac,0x5b,0x7b,0xc6,0x2d,0x46,0xe9,0x13,0xe4,0x7b,0xec,0xea,0xda,0x9c,0x43,0x16,0xdf,0x3b,0xac,0xb6, + 0xad,0x91,0xd4,0x35,0x64,0x31,0x9a,0xda,0x6b,0x8a,0xeb,0x9a,0xd9,0xea,0x9f,0xeb,0x77,0xa3,0x7a,0x53, + 0x35,0x4b,0xd4,0x65,0x72,0xa9,0x96,0x23,0xe4,0xe1,0xa6,0xac,0xb4,0xed,0x86,0xe5,0x0d,0xc2,0xb9,0xdc, + 0x12,0xce,0xd5,0x24,0x73,0xb9,0x2d,0x3f,0x33,0x62,0xb9,0xbc,0x1a,0x1c,0x86,0x94,0x37,0x84,0x6c,0x79, + 0xed,0xe2,0x8a,0x3e,0x1b,0xc1,0x9d,0x5f,0x09,0xb0,0x02,0x37,0x1f,0x88,0x04,0x6e,0xb4,0x1f,0xec,0x79, + 0x2b,0x84,0xfd,0x14,0xb1,0xdb,0xe8,0x9e,0x7a,0x37,0xb2,0xb6,0xd1,0x03,0x9d,0x43,0x09,0xd8,0x46,0x5f, + 0xab,0x04,0x91,0xaa,0x8d,0xf6,0xbf,0x52,0xef,0x5a,0x94,0x36,0xba,0xaf,0x2b,0x11,0xf9,0xd9,0xe8,0x2b, + 0x54,0x41,0x5b,0xb7,0x85,0x5c,0xea,0xc2,0x5a,0xbf,0xfc,0xbb,0x2c,0x7b,0x43,0xa8,0x76,0x33,0xd3,0x4e, + 0x27,0x22,0x6d,0x5d,0xfb,0x8a,0xbb,0x79,0xc3,0xb3,0x61,0xe9,0x5b,0x2b,0x58,0x17,0xa8,0x56,0x12,0x54, + 0xc2,0x31,0x95,0xd8,0xf4,0xcb,0x07,0x0d,0xf1,0xa8,0x11,0x82,0x6e,0x55,0x42,0xcf,0x2d,0x5b,0xc8,0xb9, + 0x65,0x09,0x35,0xb7,0x8c,0x10,0x73,0xcb,0x92,0x59,0x6e,0x19,0x11,0xa5,0xc4,0xcd,0x91,0x88,0xc7,0x9d, + 0x43,0x8a,0x6f,0x1e,0x93,0x0a,0x9c,0x14,0x23,0x70,0x52,0xa7,0xb6,0xd5,0xdf,0x93,0x4c,0x35,0x85,0x93, + 0x7e,0x4b,0xe0,0xf8,0x77,0x97,0xbe,0x25,0x7c,0xbc,0x5d,0x62,0x33,0xad,0x4b,0x2c,0x37,0x2f,0xbf,0xf4, + 0xf0,0x46,0x00,0xb0,0x96,0x7c,0x91,0xa4,0xc1,0x3d,0x7f,0x6a,0x8c,0x44,0xac,0x95,0xd9,0xd0,0x5e,0x6b, + 0x6d,0x9a,0x0d,0xd6,0x56,0x07,0xce,0x6d,0x13,0x4a,0x89,0x18,0xdc,0x3b,0xaf,0x5f,0x1d,0x67,0x88,0x80, + 0xe3,0x12,0x73,0x23,0xed,0x87,0x4e,0xdf,0xd1,0x64,0xb5,0x45,0x55,0xc4,0xbb,0x5f,0xed,0x79,0x7e,0x22, + 0x49,0xd1,0x49,0x41,0xfd,0xf8,0x1f,0x5f,0xed,0x69,0x99,0x2c,0x02,0x48,0xf6,0x9d,0xc0,0xf1,0x93,0x87, + 0xfb,0xba,0x9a,0x3d,0xc7,0xf3,0x53,0x44,0xa3,0x5d,0xfb,0x1c,0xf5,0x89,0x0e,0x3f,0xad,0xbf,0xa0,0x14, + 0x8b,0xda,0xb3,0x68,0x53,0x9d,0x20,0xf6,0xa0,0x54,0xce,0xb1,0xb0,0xeb,0xea,0x0e,0x9f,0x5f,0xbe,0xf8, + 0xbc,0x76,0x55,0x84,0x2c,0xab,0x7d,0xa3,0xea,0x63,0x2f,0x44,0x97,0x9a,0x43,0xe8,0xfc,0x87,0xd3,0x8f, + 0xa1,0xf1,0xb4,0xfe,0xbf,0x01,0x67,0x4f,0x1e,0x0e,0xea,0x0d,0x02,0x00}; #endif diff --git a/src/assets/version.h b/src/assets/version.h index 646e0cd..05738ef 100644 --- a/src/assets/version.h +++ b/src/assets/version.h @@ -4,10 +4,10 @@ const uint8_t VersionMajor = 2; const uint8_t VersionMinor = 0; const uint8_t VersionPatch = 0; -const uint8_t VersionMetadata = 25; +const uint8_t VersionMetadata = 27; const char VersionBranch[] = "release/2.0"; const char VersionSemVer[] = "2.0.0-beta.1"; -const char VersionFullSemVer[] = "2.0.0-beta.1+25"; -const char VersionCommitDate[] = "2018-01-21"; +const char VersionFullSemVer[] = "2.0.0-beta.1+27"; +const char VersionCommitDate[] = "2018-01-22"; #endif diff --git a/web/app.js b/web/app.js index 4e9ec5f..2ee05e4 100644 --- a/web/app.js +++ b/web/app.js @@ -1,5 +1,52 @@ function startApp() { + // TODO support for disable checkboxes + Vue.component('check', { + template: '